From 112931f5a96fe162af76425e15bf441daf14d94c Mon Sep 17 00:00:00 2001 From: Giancarlo Panichi Date: Thu, 12 May 2016 17:20:39 +0000 Subject: [PATCH] 2521: Explore the possibility to port the StatMan interface onto Dataminer https://support.d4science.org/issues/2521 Added Show Image to Computations Viewer git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/data-miner-manager@128580 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../client/DataMinerManager.java | 10 +- .../client/DataMinerManagerController.java | 5 +- .../dataminermanager/client/HomePanel.java | 3 + .../ComputationValueFilePanel.java | 66 + .../ComputationValueImagePanel.java | 75 + .../computations/ComputationsPanel.java | 45 +- .../computations/ComputationsProperties.java | 2 +- .../computations/ComputationsViewerPanel.java | 377 +- ...ancelComputationExecutionRequestEvent.java | 2 +- .../client/events/ComputationDataEvent.java | 2 +- .../client/events/OutputDataRequestEvent.java | 2 +- .../ResubmitComputationExecutionEvent.java | 2 +- .../StartComputationExecutionEvent.java | 2 +- .../experiments/ComputationOutputPanel.java | 48 +- .../experiments/ComputationStatusPanel.java | 2 +- .../client/experiments/OperatorsPanel.java | 2 +- .../client/experiments/WorkflowPanel.java | 4 +- .../client/rpc/DataMinerPortletService.java | 4 +- .../rpc/DataMinerPortletServiceAsync.java | 4 +- .../client/widgets/FileViewer.java | 67 + .../{ImagesViewer.java => ImageViewer.java} | 16 +- .../server/DataMinerManagerServiceImpl.java | 5 +- .../server/{util => }/SessionUtil.java | 20 +- .../server/news/OperatorsNewsProducer.java | 2 +- .../server/smservice/SClient.java | 4 +- .../server/smservice/SClient4WPS.java | 30 +- .../ComputationValueBuilder.java | 143 + .../dataminermanager/shared/Constants.java | 2 +- .../shared/data/OutputData.java | 1 + .../{ => computations}/ComputationData.java | 18 +- .../{ => computations}/ComputationId.java | 2 +- .../data/computations/ComputationValue.java | 56 + .../computations/ComputationValueFile.java | 49 + .../computations/ComputationValueImage.java | 47 + .../computations/ComputationValueType.java | 11 + ...ImagesResource.java => ImageResource.java} | 10 +- .../shared/data/output/Resource.java | 4 +- .../dataminermanager/dataminermanager.gwt.xml | 9 +- test.log.1 | 317663 --------------- test.log.2 | 231708 ----------- 40 files changed, 807 insertions(+), 549717 deletions(-) create mode 100644 src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationValueFilePanel.java create mode 100644 src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationValueImagePanel.java create mode 100644 src/main/java/org/gcube/portlets/user/dataminermanager/client/widgets/FileViewer.java rename src/main/java/org/gcube/portlets/user/dataminermanager/client/widgets/{ImagesViewer.java => ImageViewer.java} (90%) rename src/main/java/org/gcube/portlets/user/dataminermanager/server/{util => }/SessionUtil.java (84%) create mode 100644 src/main/java/org/gcube/portlets/user/dataminermanager/server/smservice/wps/computationsvalue/ComputationValueBuilder.java rename src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/{ => computations}/ComputationData.java (80%) rename src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/{ => computations}/ComputationId.java (94%) create mode 100644 src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValue.java create mode 100644 src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValueFile.java create mode 100644 src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValueImage.java create mode 100644 src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValueType.java rename src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/output/{ImagesResource.java => ImageResource.java} (80%) delete mode 100644 test.log.1 delete mode 100644 test.log.2 diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/DataMinerManager.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/DataMinerManager.java index 70f38b0..69b9e50 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/DataMinerManager.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/DataMinerManager.java @@ -39,7 +39,7 @@ public class DataMinerManager implements EntryPoint { private DataMinerManagerController dataMinerManagerController; private Header header; - private HomePanel homeMenu; + private HomePanel homePanel; private DataSpacePanel dataSpacePanel; private ExperimentPanel experimentPanel; private ComputationsPanel computationsPanel; @@ -95,7 +95,7 @@ public class DataMinerManager implements EntryPoint { private void loadMainPanel() { dataMinerManagerController = new DataMinerManagerController(); - homeMenu = new HomePanel(); + homePanel = new HomePanel(); dataSpacePanel = new DataSpacePanel(); experimentPanel = new ExperimentPanel(); computationsPanel = new ComputationsPanel(); @@ -126,8 +126,8 @@ public class DataMinerManager implements EntryPoint { mainPanelLayout.setNorthWidget(header, menuData); // - centerPanel.add(homeMenu); - previousPanel = homeMenu; + centerPanel.add(homePanel); + previousPanel = homePanel; bindWindow(mainPanelLayout); mainPanelLayout.forceLayout(); @@ -207,7 +207,7 @@ public class DataMinerManager implements EntryPoint { switchPanel(experimentPanel); break; case HOME: - switchPanel(homeMenu); + switchPanel(homePanel); break; default: break; diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/DataMinerManagerController.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/DataMinerManagerController.java index 6f229be..03f81f8 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/DataMinerManagerController.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/DataMinerManagerController.java @@ -29,9 +29,9 @@ import org.gcube.portlets.user.dataminermanager.client.type.DataMinerWorkAreaEve import org.gcube.portlets.user.dataminermanager.client.type.MenuType; import org.gcube.portlets.user.dataminermanager.client.util.UtilsGXT3; import org.gcube.portlets.user.dataminermanager.shared.Constants; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationData; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationId; import org.gcube.portlets.user.dataminermanager.shared.data.OutputData; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationData; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationId; import org.gcube.portlets.user.dataminermanager.shared.exception.ExpiredSessionServiceException; import org.gcube.portlets.user.dataminermanager.shared.session.UserInfo; import org.gcube.portlets.user.dataminermanager.shared.workspace.DataMinerWorkArea; @@ -644,6 +644,7 @@ public class DataMinerManagerController { monitor.hide(); Log.error("Error in getComputationData: " + caught.getLocalizedMessage()); + caught.printStackTrace(); UtilsGXT3 .alert("Error", "Impossible to retrieve computation info. " diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/HomePanel.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/HomePanel.java index ce33470..b5f7bf0 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/HomePanel.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/HomePanel.java @@ -9,6 +9,7 @@ import com.google.gwt.event.dom.client.MouseDownHandler; import com.google.gwt.resources.client.ImageResource; import com.google.gwt.user.client.ui.HTML; import com.google.gwt.user.client.ui.Image; +import com.sencha.gxt.core.client.dom.ScrollSupport.ScrollMode; import com.sencha.gxt.core.client.util.Margins; import com.sencha.gxt.widget.core.client.container.HorizontalLayoutContainer; import com.sencha.gxt.widget.core.client.container.HorizontalLayoutContainer.HorizontalLayoutData; @@ -31,6 +32,7 @@ public class HomePanel extends SimpleContainer { } private void init() { + setItemId("HomePanel"); setStylePrimaryName("smMenu"); //setBodyStyle("backgroundColor:white;"); addStyleName("smLayoutContainer"); @@ -42,6 +44,7 @@ public class HomePanel extends SimpleContainer { private void create() { VerticalLayoutContainer lc = new VerticalLayoutContainer(); + lc.setScrollMode(ScrollMode.AUTO); VerticalLayoutData layoutTop = new VerticalLayoutData(-1, -1, new Margins(20, 90, 10, 90)); VerticalLayoutData layoutNext = new VerticalLayoutData(-1, -1, diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationValueFilePanel.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationValueFilePanel.java new file mode 100644 index 0000000..442c795 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationValueFilePanel.java @@ -0,0 +1,66 @@ +package org.gcube.portlets.user.dataminermanager.client.computations; + +import org.gcube.portlets.user.dataminermanager.client.DataMinerManager; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationValueFile; + +import com.google.gwt.safehtml.shared.SafeHtmlBuilder; +import com.sencha.gxt.core.client.util.Margins; +import com.sencha.gxt.widget.core.client.button.TextButton; +import com.sencha.gxt.widget.core.client.container.HtmlLayoutContainer; +import com.sencha.gxt.widget.core.client.container.SimpleContainer; +import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer; +import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer.VerticalLayoutData; +import com.sencha.gxt.widget.core.client.event.SelectEvent; + +/** + * + * @author Giancarlo Panichi email: g.panichi@isti.cnr.it + * + */ +public class ComputationValueFilePanel extends SimpleContainer { + private ComputationValueFile computationValueFile; + + public ComputationValueFilePanel(ComputationValueFile computationValueFile) { + this.computationValueFile = computationValueFile; + init(); + create(); + } + + private void init(){ + setBorders(false); + } + + private void create() { + VerticalLayoutContainer lc = new VerticalLayoutContainer(); + final String fileName = computationValueFile.getFileName(); + final String fileUrl = computationValueFile.getValue(); + HtmlLayoutContainer fileNameHtml; + if (fileName != null) { + fileNameHtml = new HtmlLayoutContainer( + "

" + + new SafeHtmlBuilder().appendEscaped(fileName) + .toSafeHtml().asString() + "

"); + } else { + fileNameHtml = new HtmlLayoutContainer( + "

" + + new SafeHtmlBuilder().appendEscaped("NoName") + .toSafeHtml().asString() + "

"); + } + + lc.add(fileNameHtml, new VerticalLayoutData(-1, -1, new Margins(0))); + TextButton downloadBtn = new TextButton("Download File"); + downloadBtn.setIcon(DataMinerManager.resources.fileDownload()); + downloadBtn.addSelectHandler(new SelectEvent.SelectHandler() { + @Override + public void onSelect(SelectEvent event) { + com.google.gwt.user.client.Window.open(fileUrl, fileName, ""); + + } + }); + + lc.add(downloadBtn, new VerticalLayoutData(-1, -1, new Margins(0))); + add(lc); + } + +} diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationValueImagePanel.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationValueImagePanel.java new file mode 100644 index 0000000..98d427e --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationValueImagePanel.java @@ -0,0 +1,75 @@ +package org.gcube.portlets.user.dataminermanager.client.computations; + +import org.gcube.portlets.user.dataminermanager.client.DataMinerManager; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationValueImage; + +import com.google.gwt.user.client.ui.Image; +import com.sencha.gxt.core.client.util.Margins; +import com.sencha.gxt.widget.core.client.button.TextButton; +import com.sencha.gxt.widget.core.client.container.HtmlLayoutContainer; +import com.sencha.gxt.widget.core.client.container.SimpleContainer; +import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer; +import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer.VerticalLayoutData; +import com.sencha.gxt.widget.core.client.event.SelectEvent; + +/** + * + * @author Giancarlo Panichi email: g.panichi@isti.cnr.it + * + */ +public class ComputationValueImagePanel extends SimpleContainer { + private ComputationValueImage computationValueImage; + + public ComputationValueImagePanel( + ComputationValueImage computationValueImage) { + this.computationValueImage = computationValueImage; + init(); + create(); + } + + private void init() { + setBorders(false); + } + + private void create() { + VerticalLayoutContainer v = new VerticalLayoutContainer(); + add(v); + if (computationValueImage == null + || computationValueImage.getValue() == null + || computationValueImage.getValue().isEmpty()) + v.add(new HtmlLayoutContainer("No image found."), + new VerticalLayoutData(-1, -1, new Margins(0))); + else { + HtmlLayoutContainer imageName; + if (computationValueImage.getFileName() == null + || computationValueImage.getFileName().isEmpty()) { + imageName = new HtmlLayoutContainer(""); + } else { + imageName = new HtmlLayoutContainer( + computationValueImage.getFileName()); + } + + v.add(imageName, new VerticalLayoutData(-1, -1, new Margins(0))); + TextButton saveImageBtn = new TextButton("Download Image"); + saveImageBtn.setIcon(DataMinerManager.resources.save()); + saveImageBtn.addSelectHandler(new SelectEvent.SelectHandler() { + + @Override + public void onSelect(SelectEvent event) { + com.google.gwt.user.client.Window.open( + computationValueImage.getValue(), + computationValueImage.getFileName(), ""); + } + }); + + v.add(saveImageBtn, new VerticalLayoutData(-1, -1, new Margins(0))); + final Image img = new Image(computationValueImage.getValue()); + v.add(img, new VerticalLayoutData(1, -1, new Margins(0))); + } + + forceLayout(); + + } + +} diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationsPanel.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationsPanel.java index 135de65..04ba108 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationsPanel.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationsPanel.java @@ -5,6 +5,7 @@ package org.gcube.portlets.user.dataminermanager.client.computations; import org.gcube.portlets.user.dataminermanager.client.common.EventBusProvider; import org.gcube.portlets.user.dataminermanager.client.events.ComputationDataEvent; +import org.gcube.portlets.user.dataminermanager.client.events.RefreshDataMinerWorkAreaEvent; import com.allen_sauer.gwt.log.client.Log; import com.sencha.gxt.core.client.util.Margins; @@ -45,19 +46,57 @@ public class ComputationsPanel extends FramedPanel { @Override public void onComputationData(ComputationDataEvent event) { Log.debug("Catch ComputationDataEvent: " + event); - showComputationsViewer(event); + expandsComputationsViewer(); } }); + EventBusProvider.INSTANCE + .addHandler( + RefreshDataMinerWorkAreaEvent.TYPE, + new RefreshDataMinerWorkAreaEvent.RefreshDataMinerWorkAreaEventHandler() { + + @Override + public void onRefresh( + RefreshDataMinerWorkAreaEvent event) { + Log.debug("Catch RefreshDataMinerWorkAreaEvent: " + + event); + manageRefreshDataMinerWorkAreaEvents(event); + } + + }); } + private void manageRefreshDataMinerWorkAreaEvents( + RefreshDataMinerWorkAreaEvent event) { + switch (event.getDataMinerWorkAreaElementType()) { + case Computations: + collapseComputationsViewer(); + break; + case InputDataSets: + break; + case OutputDataSets: + break; + default: + break; + } - private void showComputationsViewer(ComputationDataEvent event) { + } + + private void collapseComputationsViewer() { + if(computationsViewerPanel.isExpanded()){ + computationsViewerPanel.collapse(); + } + forceLayout(); + } + + + private void expandsComputationsViewer() { if(computationsViewerPanel.isCollapsed()){ computationsViewerPanel.expand(); } + forceLayout(); } private void create() { @@ -78,7 +117,7 @@ public class ComputationsPanel extends FramedPanel { add(borderLayoutContainer, new MarginData(new Margins(0))); - + forceLayout(); } diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationsProperties.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationsProperties.java index 5f17fd5..a74f825 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationsProperties.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationsProperties.java @@ -8,7 +8,7 @@ package org.gcube.portlets.user.dataminermanager.client.computations; */ public enum ComputationsProperties { OPERATOR_DESCRIPTION("operator_description"), OPERATOR_NAME( - "operator_name:"), END_DATE("end_date"), ERROR("error"), COMPUTATION_ID( + "operator_name"), END_DATE("end_date"), ERROR("error"), COMPUTATION_ID( "computation_id"), STATUS("status"), VRE("VRE"), EXECUTION_TYPE( "execution_type"), START_DATE("start_date"); diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationsViewerPanel.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationsViewerPanel.java index 3d2f94e..900d275 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationsViewerPanel.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/computations/ComputationsViewerPanel.java @@ -1,6 +1,5 @@ package org.gcube.portlets.user.dataminermanager.client.computations; -import java.util.ArrayList; import java.util.LinkedHashMap; import org.gcube.portlets.user.dataminermanager.client.common.EventBusProvider; @@ -9,16 +8,13 @@ import org.gcube.portlets.user.dataminermanager.client.events.DataMinerWorkAreaE import org.gcube.portlets.user.dataminermanager.client.events.RefreshDataMinerWorkAreaEvent; import org.gcube.portlets.user.dataminermanager.client.events.UIStateEvent; import org.gcube.portlets.user.dataminermanager.client.util.UtilsGXT3; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationData; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationData; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationValue; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationValueFile; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationValueImage; import com.allen_sauer.gwt.log.client.Log; import com.google.gwt.dom.client.Style.Unit; -import com.google.gwt.http.client.Request; -import com.google.gwt.http.client.RequestBuilder; -import com.google.gwt.http.client.RequestCallback; -import com.google.gwt.http.client.RequestException; -import com.google.gwt.http.client.Response; -import com.google.gwt.http.client.URL; import com.sencha.gxt.core.client.dom.ScrollSupport.ScrollMode; import com.sencha.gxt.core.client.util.Margins; import com.sencha.gxt.widget.core.client.FramedPanel; @@ -42,8 +38,6 @@ public class ComputationsViewerPanel extends FramedPanel { private VerticalLayoutContainer v; private ComputationData computationData; - private ArrayList urlList; - private LinkedHashMap urlFileNameMap; public ComputationsViewerPanel() { super(); @@ -179,26 +173,19 @@ public class ComputationsViewerPanel extends FramedPanel { sectionTitle.add(title); v.add(sectionTitle, new VerticalLayoutData(-1, -1, new Margins(20))); computationData = null; + v.forceLayout(); forceLayout(); } private void showOutput(ComputationDataEvent event) { v.clear(); computationData = event.getComputationData(); - addComputationData(); + createView(); + v.forceLayout(); + forceLayout(); } - - - private void addComputationData() { - - - - - } - - - private void createView(){ + private void createView() { if (computationData == null) { Log.error("ComputationData is null!"); UtilsGXT3.alert("Error", @@ -209,7 +196,7 @@ public class ComputationsViewerPanel extends FramedPanel { SimpleContainer sectionTitle = new SimpleContainer(); // title HtmlLayoutContainer title = new HtmlLayoutContainer( - "
.: Computation Report of " + "
Computation Report of " + computationData.getComputationId().getId() + "
"); sectionTitle.add(title, new MarginData()); @@ -219,98 +206,29 @@ public class ComputationsViewerPanel extends FramedPanel { if (computationData.getOutputParameters() != null && !computationData.getOutputParameters().isEmpty()) { - VerticalLayoutContainer outputVBox = new VerticalLayoutContainer(); - LinkedHashMap output = computationData - .getOutputParameters(); - for (String key : output.keySet()) { - TextField textField = new TextField(); - textField.setValue(output.get(key)); - textField.setReadOnly(true); - FieldLabel fieldLabel = new FieldLabel(textField, key); - fieldLabel.setLabelWidth(200); - fieldLabel.setLabelWordWrap(true); - outputVBox.add(fieldLabel, new VerticalLayoutData(1, -1, - new Margins(4))); - } - - FieldSet outputFieldSet = new FieldSet(); - outputFieldSet.setHeadingText("Output Result"); - outputFieldSet.setCollapsible(true); - outputFieldSet.add(outputVBox); - outputFieldSet.getElement().getStyle().setMarginRight(20, Unit.PX); + FieldSet outputFieldSet = outputView(); v.add(outputFieldSet, new VerticalLayoutData(-1, -1, new Margins(10))); } if (computationData.getInputParameters() != null && !computationData.getInputParameters().isEmpty()) { - VerticalLayoutContainer inputVBox = new VerticalLayoutContainer(); - LinkedHashMap input = computationData - .getInputParameters(); - for (String key : input.keySet()) { - TextField textField = new TextField(); - textField.setValue(input.get(key)); - textField.setReadOnly(true); - FieldLabel fieldLabel = new FieldLabel(textField, key); - fieldLabel.setLabelWidth(200); - fieldLabel.setLabelWordWrap(true); - inputVBox.add(fieldLabel, new VerticalLayoutData(1, -1, - new Margins(4))); - } - - FieldSet inputFieldSet = new FieldSet(); - inputFieldSet.setHeadingText("Input Parameters"); - inputFieldSet.setCollapsible(true); - inputFieldSet.add(inputVBox); - inputFieldSet.getElement().getStyle().setMarginRight(20, Unit.PX); + FieldSet inputFieldSet = inputView(); v.add(inputFieldSet, new VerticalLayoutData(-1, -1, new Margins(10))); } - VerticalLayoutContainer detailsVBox = new VerticalLayoutContainer(); - TextField startDateField = new TextField(); - startDateField.setValue(computationData.getStartDate()); - startDateField.setReadOnly(true); - FieldLabel startDateLabel = new FieldLabel(startDateField, "Start Date"); - startDateLabel.setLabelWidth(200); - startDateLabel.setLabelWordWrap(true); - detailsVBox.add(startDateLabel, new VerticalLayoutData(1, -1, - new Margins(4))); - - TextField endDateField = new TextField(); - endDateField.setValue(computationData.getEndDate()); - endDateField.setReadOnly(true); - FieldLabel endDateLabel = new FieldLabel(endDateField, "End Date"); - endDateLabel.setLabelWidth(200); - endDateLabel.setLabelWordWrap(true); - detailsVBox.add(endDateLabel, new VerticalLayoutData(1, -1, - new Margins(4))); - - TextField statusField = new TextField(); - statusField.setValue(computationData.getStatus()); - statusField.setReadOnly(true); - FieldLabel statusLabel = new FieldLabel(statusField, "Status"); - statusLabel.setLabelWidth(200); - statusLabel.setLabelWordWrap(true); - detailsVBox.add(statusLabel, new VerticalLayoutData(1, -1, new Margins( - 4))); - - TextField vreField = new TextField(); - vreField.setValue(computationData.getVre()); - vreField.setReadOnly(true); - FieldLabel vreLabel = new FieldLabel(vreField, "VRE"); - vreLabel.setLabelWidth(200); - vreLabel.setLabelWordWrap(true); - detailsVBox - .add(vreLabel, new VerticalLayoutData(1, -1, new Margins(4))); - - FieldSet detailsFieldSet = new FieldSet(); - detailsFieldSet.setHeadingText("Computation Details"); - detailsFieldSet.setCollapsible(true); - detailsFieldSet.add(detailsVBox); - detailsFieldSet.getElement().getStyle().setMarginRight(20, Unit.PX); + FieldSet detailsFieldSet = detailsView(); v.add(detailsFieldSet, new VerticalLayoutData(-1, -1, new Margins(10))); + FieldSet operatorFieldSet = operatorView(); + v.add(operatorFieldSet, new VerticalLayoutData(-1, -1, new Margins(10))); + + + + } + + private FieldSet operatorView() { VerticalLayoutContainer operatorVBox = new VerticalLayoutContainer(); TextField operatorNameField = new TextField(); operatorNameField.setValue(computationData.getComputationId() @@ -321,7 +239,7 @@ public class ComputationsViewerPanel extends FramedPanel { operatorNameLabel.setLabelWidth(200); operatorNameLabel.setLabelWordWrap(true); operatorVBox.add(operatorNameLabel, new VerticalLayoutData(1, -1, - new Margins(4))); + new Margins(0,4,0,4))); TextArea operatorDescriptionField = new TextArea(); operatorDescriptionField.setHeight(40); @@ -332,9 +250,9 @@ public class ComputationsViewerPanel extends FramedPanel { operatorDescriptionField, "Operator Description"); operatorDescriptionLabel.setLabelWidth(200); operatorDescriptionLabel.setLabelWordWrap(true); - operatorDescriptionLabel.setHeight(50); + operatorDescriptionLabel.setHeight(65); operatorVBox.add(operatorDescriptionLabel, new VerticalLayoutData(1, - -1, new Margins(5))); + -1, new Margins(0,5,0,5))); FieldSet operatorFieldSet = new FieldSet(); operatorFieldSet.setHeadingText("Operator Details"); @@ -343,132 +261,145 @@ public class ComputationsViewerPanel extends FramedPanel { operatorFieldSet.add(operatorVBox); operatorFieldSet.getElement().getStyle().setMarginBottom(120, Unit.PX); operatorFieldSet.getElement().getStyle().setMarginRight(20, Unit.PX); - v.add(operatorFieldSet, new VerticalLayoutData(-1, -1, new Margins(10))); - - forceLayout(); - - } - - /** - * - */ - private void createUrlList() { - urlList = new ArrayList(); - urlFileNameMap = new LinkedHashMap(); - - if (computationData.getOutputParameters() != null - && !computationData.getOutputParameters().isEmpty()) { - LinkedHashMap output = computationData - .getOutputParameters(); - for (String key : output.keySet()) { - String value = output.get(key); - if (value != null && !value.isEmpty() && value.startsWith("http")) { - urlList.add(value); - } - } - } - if (computationData.getInputParameters() != null - && !computationData.getInputParameters().isEmpty()) { - LinkedHashMap input = computationData - .getInputParameters(); - for (String key : input.keySet()) { - String value = input.get(key); - if (value != null && !value.isEmpty()&& value.startsWith("http")) { - urlList.add(value); - } - } - } - - if (!urlList.isEmpty()) { - retrieveUrlInformation(null); - } else { - - } - + return operatorFieldSet; } - private void retrieveUrlInformation(String url) { - if (url == null) { - if (urlList != null && !urlList.isEmpty()) { - retrieveFileName(urlList.get(0)); - } else { + private FieldSet detailsView() { + VerticalLayoutContainer detailsVBox = new VerticalLayoutContainer(); + TextField startDateField = new TextField(); + startDateField.setValue(computationData.getStartDate()); + startDateField.setReadOnly(true); + FieldLabel startDateLabel = new FieldLabel(startDateField, "Start Date"); + startDateLabel.setLabelWidth(200); + startDateLabel.setLabelWordWrap(true); + detailsVBox.add(startDateLabel, new VerticalLayoutData(1, -1, + new Margins(0,4,0,4))); + + TextField endDateField = new TextField(); + endDateField.setValue(computationData.getEndDate()); + endDateField.setReadOnly(true); + FieldLabel endDateLabel = new FieldLabel(endDateField, "End Date"); + endDateLabel.setLabelWidth(200); + endDateLabel.setLabelWordWrap(true); + detailsVBox.add(endDateLabel, new VerticalLayoutData(1, -1, + new Margins(0,4,0,4))); + + TextField statusField = new TextField(); + statusField.setValue(computationData.getStatus()); + statusField.setReadOnly(true); + FieldLabel statusLabel = new FieldLabel(statusField, "Status"); + statusLabel.setLabelWidth(200); + statusLabel.setLabelWordWrap(true); + detailsVBox.add(statusLabel, new VerticalLayoutData(1, -1, new Margins( + 0,4,0,4))); + + TextField vreField = new TextField(); + vreField.setValue(computationData.getVre()); + vreField.setReadOnly(true); + FieldLabel vreLabel = new FieldLabel(vreField, "VRE"); + vreLabel.setLabelWidth(200); + vreLabel.setLabelWordWrap(true); + detailsVBox + .add(vreLabel, new VerticalLayoutData(1, -1, new Margins(0,4,0,4))); + + FieldSet detailsFieldSet = new FieldSet(); + detailsFieldSet.setHeadingText("Computation Details"); + detailsFieldSet.setCollapsible(true); + detailsFieldSet.add(detailsVBox); + detailsFieldSet.getElement().getStyle().setMarginRight(20, Unit.PX); + return detailsFieldSet; + } + + private FieldSet inputView() { + VerticalLayoutContainer inputVBox = new VerticalLayoutContainer(); + LinkedHashMap input = computationData + .getInputParameters(); + for (String key : input.keySet()) { + ComputationValue computationValue = input.get(key); + FieldLabel fieldLabel = null; + SimpleContainer simpleContainer; + switch (computationValue.getType()) { + case File: + ComputationValueFile computationValueFile=(ComputationValueFile) computationValue; + simpleContainer=new ComputationValueFilePanel(computationValueFile); + fieldLabel = new FieldLabel(simpleContainer, key); + fieldLabel.setLabelWidth(200); + fieldLabel.setLabelWordWrap(true); + break; + case Image: + ComputationValueImage computationValueImage=(ComputationValueImage) computationValue; + simpleContainer=new ComputationValueImagePanel(computationValueImage); + fieldLabel = new FieldLabel(simpleContainer, key); + fieldLabel.setLabelWidth(200); + fieldLabel.setLabelWordWrap(true); + break; + case String: + default: + TextField textField = new TextField(); + textField.setValue(computationValue.getValue()); + textField.setReadOnly(true); + fieldLabel = new FieldLabel(textField, key); + fieldLabel.setLabelWidth(200); + fieldLabel.setLabelWordWrap(true); + break; } - } else { - int index=urlList.indexOf(url); - if(index==-1){ - - } else { - if(index==urlList.size()-1){ - - } else { - retrieveFileName(urlList.get(index++)); - } - } + inputVBox.add(fieldLabel, new VerticalLayoutData(1, -1, + new Margins(0,4,0,4))); } + + FieldSet inputFieldSet = new FieldSet(); + inputFieldSet.setHeadingText("Input Parameters"); + inputFieldSet.setCollapsible(true); + inputFieldSet.add(inputVBox); + inputFieldSet.getElement().getStyle().setMarginRight(20, Unit.PX); + return inputFieldSet; } - private void retrieveFileName(final String url) { + private FieldSet outputView() { + VerticalLayoutContainer outputVBox = new VerticalLayoutContainer(); + LinkedHashMap output = computationData + .getOutputParameters(); + for (String key : output.keySet()) { + ComputationValue computationValue = output.get(key); + FieldLabel fieldLabel = null; + SimpleContainer simpleContainer; + switch (computationValue.getType()) { + case File: + ComputationValueFile computationValueFile=(ComputationValueFile) computationValue; + simpleContainer=new ComputationValueFilePanel(computationValueFile); + fieldLabel = new FieldLabel(simpleContainer, key); + fieldLabel.setLabelWidth(200); + fieldLabel.setLabelWordWrap(true); + break; + case Image: + ComputationValueImage computationValueImage=(ComputationValueImage) computationValue; + simpleContainer=new ComputationValueImagePanel(computationValueImage); + fieldLabel = new FieldLabel(simpleContainer, key); + fieldLabel.setLabelWidth(200); + fieldLabel.setLabelWordWrap(true); + break; + case String: + default: + TextField textField = new TextField(); + textField.setValue(computationValue.getValue()); + textField.setReadOnly(true); + fieldLabel = new FieldLabel(textField, key); + fieldLabel.setLabelWidth(200); + fieldLabel.setLabelWordWrap(true); + break; - try { - RequestBuilder builder = new RequestBuilder(RequestBuilder.HEAD, - URL.encode(url)); + } + outputVBox.add(fieldLabel, new VerticalLayoutData(1, -1, + new Margins(0,4,0,4))); + } - builder.sendRequest(null, new RequestCallback() { - - @Override - public void onResponseReceived(Request request, - Response response) { - if (200 == response.getStatusCode()) { - String contentDisposition = response - .getHeader("Content-Disposition"); - // ContentDisposition = "attachment; filename=abc.jpg" - if (contentDisposition != null - && contentDisposition.indexOf("=") != -1) { - String fileName = contentDisposition.split("=")[1]; // getting - // value - // after - // '=' - urlFileNameMap.put(url, fileName); - retrieveUrlInformation(url); - } else { - urlFileNameMap.put(url, null); - retrieveUrlInformation(url); - } - } else { - urlFileNameMap.put(url, null); - retrieveUrlInformation(url); - } - } - - @Override - public void onError(Request request, Throwable exception) { - Log.error(exception.getLocalizedMessage()); - exception.printStackTrace(); - urlFileNameMap.put(url, null); - retrieveUrlInformation(url); - - } - }); - } catch (RequestException e) { - Log.error(e.getLocalizedMessage()); - e.printStackTrace(); - UtilsGXT3.alert("Error", "Error retrieving file name from public url!"); - } - - /* - * URL url = new URL("http://somesite/getFile?id=12345"); - * HttpURLConnection conn = (HttpURLConnection) url.openConnection(); - * conn.setRequestMethod("GET"); conn.setAllowUserInteraction(false); - * conn.setDoInput(true); conn.setDoOutput(true); conn.connect(); - * - * String raw = conn.getHeaderField("Content-Disposition"); // raw = - * "attachment; filename=abc.jpg" if (raw != null && raw.indexOf("=") != - * -1) { String fileName = raw.split("=")[1]; // getting value after '=' - * } else { // fall back to random generated file name? } - */ + FieldSet outputFieldSet = new FieldSet(); + outputFieldSet.setHeadingText("Output Result"); + outputFieldSet.setCollapsible(true); + outputFieldSet.add(outputVBox); + outputFieldSet.getElement().getStyle().setMarginRight(20, Unit.PX); + return outputFieldSet; } - - } diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/CancelComputationExecutionRequestEvent.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/CancelComputationExecutionRequestEvent.java index 06d6444..ba010a0 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/CancelComputationExecutionRequestEvent.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/CancelComputationExecutionRequestEvent.java @@ -1,6 +1,6 @@ package org.gcube.portlets.user.dataminermanager.client.events; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationId; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationId; import com.google.gwt.event.shared.EventHandler; import com.google.gwt.event.shared.GwtEvent; diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/ComputationDataEvent.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/ComputationDataEvent.java index bacb75c..031cb63 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/ComputationDataEvent.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/ComputationDataEvent.java @@ -1,6 +1,6 @@ package org.gcube.portlets.user.dataminermanager.client.events; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationData; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationData; import com.google.gwt.event.shared.EventHandler; import com.google.gwt.event.shared.GwtEvent; diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/OutputDataRequestEvent.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/OutputDataRequestEvent.java index 9d4f484..8fff633 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/OutputDataRequestEvent.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/OutputDataRequestEvent.java @@ -1,6 +1,6 @@ package org.gcube.portlets.user.dataminermanager.client.events; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationId; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationId; import com.google.gwt.event.shared.EventHandler; import com.google.gwt.event.shared.GwtEvent; diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/ResubmitComputationExecutionEvent.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/ResubmitComputationExecutionEvent.java index 3890d00..006b984 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/ResubmitComputationExecutionEvent.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/ResubmitComputationExecutionEvent.java @@ -1,6 +1,6 @@ package org.gcube.portlets.user.dataminermanager.client.events; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationId; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationId; import com.google.gwt.event.shared.EventHandler; import com.google.gwt.event.shared.GwtEvent; diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/StartComputationExecutionEvent.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/StartComputationExecutionEvent.java index cfd978a..4cb157c 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/StartComputationExecutionEvent.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/events/StartComputationExecutionEvent.java @@ -1,6 +1,6 @@ package org.gcube.portlets.user.dataminermanager.client.events; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationId; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationId; import com.google.gwt.event.shared.EventHandler; import com.google.gwt.event.shared.GwtEvent; diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/ComputationOutputPanel.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/ComputationOutputPanel.java index dba9c2d..977a684 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/ComputationOutputPanel.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/ComputationOutputPanel.java @@ -6,16 +6,16 @@ package org.gcube.portlets.user.dataminermanager.client.experiments; import java.util.LinkedHashMap; import java.util.Map; -import org.gcube.portlets.user.dataminermanager.client.DataMinerManager; import org.gcube.portlets.user.dataminermanager.client.common.EventBusProvider; import org.gcube.portlets.user.dataminermanager.client.events.OutputDataEvent; import org.gcube.portlets.user.dataminermanager.client.events.OutputDataRequestEvent; import org.gcube.portlets.user.dataminermanager.client.util.UtilsGXT3; -import org.gcube.portlets.user.dataminermanager.client.widgets.ImagesViewer; +import org.gcube.portlets.user.dataminermanager.client.widgets.FileViewer; +import org.gcube.portlets.user.dataminermanager.client.widgets.ImageViewer; import org.gcube.portlets.user.dataminermanager.client.widgets.ResourceViewer; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationId; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationId; import org.gcube.portlets.user.dataminermanager.shared.data.output.FileResource; -import org.gcube.portlets.user.dataminermanager.shared.data.output.ImagesResource; +import org.gcube.portlets.user.dataminermanager.shared.data.output.ImageResource; import org.gcube.portlets.user.dataminermanager.shared.data.output.MapResource; import org.gcube.portlets.user.dataminermanager.shared.data.output.ObjectResource; import org.gcube.portlets.user.dataminermanager.shared.data.output.Resource; @@ -25,15 +25,12 @@ import org.gcube.portlets.user.dataminermanager.shared.data.output.TableResource import com.allen_sauer.gwt.log.client.Log; import com.google.gwt.core.client.GWT; import com.google.gwt.safehtml.shared.SafeHtml; -import com.google.gwt.safehtml.shared.SafeHtmlBuilder; import com.sencha.gxt.core.client.XTemplates; import com.sencha.gxt.core.client.util.Margins; -import com.sencha.gxt.widget.core.client.button.TextButton; import com.sencha.gxt.widget.core.client.container.HtmlLayoutContainer; import com.sencha.gxt.widget.core.client.container.SimpleContainer; import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer; import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer.VerticalLayoutData; -import com.sencha.gxt.widget.core.client.event.SelectEvent; /** * @@ -128,10 +125,10 @@ public class ComputationOutputPanel extends SimpleContainer { // new VerticalLayoutData(1, -1, new Margins(0))); break; - case IMAGES: + case IMAGE: v.add(getHtmlTitle("The algorithm produced an", "Set of Images"), new VerticalLayoutData(1, -1, new Margins(0))); - final ImagesResource imagesResource = (ImagesResource) resource; + final ImageResource imagesResource = (ImageResource) resource; v.add(getImagesResourceOutput(imagesResource), new VerticalLayoutData(1, -1, new Margins(0))); break; @@ -184,8 +181,8 @@ public class ComputationOutputPanel extends SimpleContainer { * @return */ private SimpleContainer getImagesResourceOutput( - ImagesResource imagesResource) { - return new ImagesViewer(computationId, imagesResource); + ImageResource imagesResource) { + return new ImageViewer(computationId, imagesResource); } /** @@ -194,28 +191,7 @@ public class ComputationOutputPanel extends SimpleContainer { * @return */ private SimpleContainer getFileResourceOutput(FileResource fileResource) { - VerticalLayoutContainer lc = new VerticalLayoutContainer(); - SimpleContainer container = new SimpleContainer(); - final String fileName = fileResource.getName(); - final String fileUrl = fileResource.getUrl(); - HtmlLayoutContainer fileNameHtml = new HtmlLayoutContainer( - "

" - + new SafeHtmlBuilder().appendEscaped(fileName) - .toSafeHtml().asString() + "

"); - lc.add(fileNameHtml, new VerticalLayoutData(-1, -1, new Margins(0))); - TextButton downloadBtn = new TextButton("Download File"); - downloadBtn.setIcon(DataMinerManager.resources.fileDownload()); - downloadBtn.addSelectHandler(new SelectEvent.SelectHandler() { - @Override - public void onSelect(SelectEvent event) { - com.google.gwt.user.client.Window.open(fileUrl, fileName, ""); - - } - }); - - lc.add(downloadBtn, new VerticalLayoutData(-1, -1, new Margins(0))); - container.add(lc); - return container; + return new FileViewer(computationId, fileResource); } /** @@ -230,7 +206,7 @@ public class ComputationOutputPanel extends SimpleContainer { Map mapValues = new LinkedHashMap<>(); Map mapFiles = new LinkedHashMap<>(); Map mapTabs = new LinkedHashMap<>(); - Map mapImages = new LinkedHashMap<>(); + Map mapImages = new LinkedHashMap<>(); for (String key : map.keySet()) { Resource resource = map.get(key); @@ -246,8 +222,8 @@ public class ComputationOutputPanel extends SimpleContainer { case TABULAR: mapTabs.put(key, (TableResource) resource); break; - case IMAGES: - mapImages.put(key, (ImagesResource) resource); + case IMAGE: + mapImages.put(key, (ImageResource) resource); break; case MAP: break; diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/ComputationStatusPanel.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/ComputationStatusPanel.java index 77cb40f..f5a8342 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/ComputationStatusPanel.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/ComputationStatusPanel.java @@ -12,7 +12,7 @@ import org.gcube.portlets.user.dataminermanager.client.events.CancelComputationE import org.gcube.portlets.user.dataminermanager.client.rpc.DataMinerPortletServiceAsync; import org.gcube.portlets.user.dataminermanager.client.util.UtilsGXT3; import org.gcube.portlets.user.dataminermanager.shared.Constants; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationId; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationId; import com.allen_sauer.gwt.log.client.Log; import com.google.gwt.dom.client.Style.Unit; diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/OperatorsPanel.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/OperatorsPanel.java index 1022e8f..cfb34f5 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/OperatorsPanel.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/OperatorsPanel.java @@ -84,7 +84,7 @@ public class OperatorsPanel extends FramedPanel { } private void init() { - setHeadingText(".: Operators"); + setHeadingText("Operators"); setBodyStyle("backgroundColor:white;"); } diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/WorkflowPanel.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/WorkflowPanel.java index d2dbd71..3b22d9f 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/WorkflowPanel.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/experiments/WorkflowPanel.java @@ -43,7 +43,7 @@ public class WorkflowPanel extends TabPanel { private void create() { - TabItemConfig tabWorkFlowLcItemConf = new TabItemConfig(".: Operator", + TabItemConfig tabWorkFlowLcItemConf = new TabItemConfig("Operator", false); tabWorkFlowLcItemConf.setIcon(DataMinerManager.resources .folderExplore()); @@ -61,7 +61,7 @@ public class WorkflowPanel extends TabPanel { add(computationPanel, tabWorkFlowLcItemConf); TabItemConfig tabComputationPanelItemConf = new TabItemConfig( - ".: Computations Execution", false); + "Computations Execution", false); tabComputationPanelItemConf.setIcon(DataMinerManager.resources .folderExplore()); computationExecutionPanel = new ComputationExecutionPanel(); diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/rpc/DataMinerPortletService.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/rpc/DataMinerPortletService.java index 9c8b88b..d1a1241 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/rpc/DataMinerPortletService.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/rpc/DataMinerPortletService.java @@ -5,10 +5,10 @@ import java.util.List; import org.gcube.portlets.user.dataminermanager.client.bean.ComputationStatus; import org.gcube.portlets.user.dataminermanager.client.bean.Operator; import org.gcube.portlets.user.dataminermanager.client.bean.OperatorsClassification; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationData; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationId; import org.gcube.portlets.user.dataminermanager.shared.data.OutputData; import org.gcube.portlets.user.dataminermanager.shared.data.TableItemSimple; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationData; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationId; import org.gcube.portlets.user.dataminermanager.shared.exception.ServiceException; import org.gcube.portlets.user.dataminermanager.shared.parameters.Parameter; import org.gcube.portlets.user.dataminermanager.shared.session.UserInfo; diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/rpc/DataMinerPortletServiceAsync.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/rpc/DataMinerPortletServiceAsync.java index f404f8a..fce0c05 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/rpc/DataMinerPortletServiceAsync.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/rpc/DataMinerPortletServiceAsync.java @@ -5,10 +5,10 @@ import java.util.List; import org.gcube.portlets.user.dataminermanager.client.bean.ComputationStatus; import org.gcube.portlets.user.dataminermanager.client.bean.Operator; import org.gcube.portlets.user.dataminermanager.client.bean.OperatorsClassification; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationData; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationId; import org.gcube.portlets.user.dataminermanager.shared.data.OutputData; import org.gcube.portlets.user.dataminermanager.shared.data.TableItemSimple; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationData; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationId; import org.gcube.portlets.user.dataminermanager.shared.parameters.Parameter; import org.gcube.portlets.user.dataminermanager.shared.session.UserInfo; import org.gcube.portlets.user.dataminermanager.shared.workspace.DataMinerWorkArea; diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/widgets/FileViewer.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/widgets/FileViewer.java new file mode 100644 index 0000000..ea75970 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/widgets/FileViewer.java @@ -0,0 +1,67 @@ +package org.gcube.portlets.user.dataminermanager.client.widgets; + +import org.gcube.portlets.user.dataminermanager.client.DataMinerManager; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationId; +import org.gcube.portlets.user.dataminermanager.shared.data.output.FileResource; + +import com.google.gwt.safehtml.shared.SafeHtmlBuilder; +import com.sencha.gxt.core.client.util.Margins; +import com.sencha.gxt.widget.core.client.button.TextButton; +import com.sencha.gxt.widget.core.client.container.HtmlLayoutContainer; +import com.sencha.gxt.widget.core.client.container.SimpleContainer; +import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer; +import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer.VerticalLayoutData; +import com.sencha.gxt.widget.core.client.event.SelectEvent; + +/** + * + * @author Giancarlo Panichi + * email: g.panichi@isti.cnr.it + * + */ +public class FileViewer extends SimpleContainer { + + private FileResource fileResource; + + + /** + * @param mapImages + */ + public FileViewer(ComputationId computationId, + FileResource fileResource) { + super(); + this.fileResource = fileResource; + //this.computationId = computationId; + init(); + create(); + } + + private void init(){ + setHeight(56); + } + + private void create() { + VerticalLayoutContainer lc = new VerticalLayoutContainer(); + final String fileName = fileResource.getName(); + final String fileUrl = fileResource.getUrl(); + HtmlLayoutContainer fileNameHtml = new HtmlLayoutContainer( + "

" + + new SafeHtmlBuilder().appendEscaped(fileName) + .toSafeHtml().asString() + "

"); + lc.add(fileNameHtml, new VerticalLayoutData(-1, -1, new Margins(0))); + TextButton downloadBtn = new TextButton("Download File"); + downloadBtn.setIcon(DataMinerManager.resources.fileDownload()); + downloadBtn.addSelectHandler(new SelectEvent.SelectHandler() { + @Override + public void onSelect(SelectEvent event) { + com.google.gwt.user.client.Window.open(fileUrl, fileName, ""); + + } + }); + + lc.add(downloadBtn, new VerticalLayoutData(-1, -1, new Margins(0))); + add(lc); + } + + +} diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/client/widgets/ImagesViewer.java b/src/main/java/org/gcube/portlets/user/dataminermanager/client/widgets/ImageViewer.java similarity index 90% rename from src/main/java/org/gcube/portlets/user/dataminermanager/client/widgets/ImagesViewer.java rename to src/main/java/org/gcube/portlets/user/dataminermanager/client/widgets/ImageViewer.java index 69cadb1..de5582d 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/client/widgets/ImagesViewer.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/client/widgets/ImageViewer.java @@ -1,8 +1,8 @@ package org.gcube.portlets.user.dataminermanager.client.widgets; import org.gcube.portlets.user.dataminermanager.client.DataMinerManager; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationId; -import org.gcube.portlets.user.dataminermanager.shared.data.output.ImagesResource; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationId; +import org.gcube.portlets.user.dataminermanager.shared.data.output.ImageResource; import com.google.gwt.user.client.ui.Image; import com.sencha.gxt.core.client.util.Margins; @@ -19,28 +19,28 @@ import com.sencha.gxt.widget.core.client.event.SelectEvent; * email: g.panichi@isti.cnr.it * */ -public class ImagesViewer extends SimpleContainer { +public class ImageViewer extends SimpleContainer { protected static final String SAVE_OK_MESSAGE = "The images have been saved on the Workspace in the folder "; protected static final String SAVE_OK_TITLE = "Saving operation was successful"; protected static final String SAVE_FAIL_TITLE = "Error"; protected static final String SAVE_FAIL_MESSAGE = "Error in saving images."; - private ImagesResource imagesResource; + private ImageResource imagesResource; //private ComputationId computationId; /** * @param mapImages */ - public ImagesViewer(ComputationId computationId, - ImagesResource imagesResource) { + public ImageViewer(ComputationId computationId, + ImageResource imagesResource) { super(); this.imagesResource = imagesResource; //this.computationId = computationId; - init(); + create(); } - private void init() { + private void create() { VerticalLayoutContainer v = new VerticalLayoutContainer(); add(v); if (imagesResource == null || imagesResource.getLink() == null diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/server/DataMinerManagerServiceImpl.java b/src/main/java/org/gcube/portlets/user/dataminermanager/server/DataMinerManagerServiceImpl.java index 069b930..f23a575 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/server/DataMinerManagerServiceImpl.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/server/DataMinerManagerServiceImpl.java @@ -15,12 +15,11 @@ import org.gcube.portlets.user.dataminermanager.client.rpc.DataMinerPortletServi import org.gcube.portlets.user.dataminermanager.server.smservice.SClient; import org.gcube.portlets.user.dataminermanager.server.storage.StorageUtil; import org.gcube.portlets.user.dataminermanager.server.util.DataMinerWorkAreaManager; -import org.gcube.portlets.user.dataminermanager.server.util.SessionUtil; import org.gcube.portlets.user.dataminermanager.server.util.TableReader; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationData; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationId; import org.gcube.portlets.user.dataminermanager.shared.data.OutputData; import org.gcube.portlets.user.dataminermanager.shared.data.TableItemSimple; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationData; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationId; import org.gcube.portlets.user.dataminermanager.shared.exception.ServiceException; import org.gcube.portlets.user.dataminermanager.shared.parameters.Parameter; import org.gcube.portlets.user.dataminermanager.shared.session.UserInfo; diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/server/util/SessionUtil.java b/src/main/java/org/gcube/portlets/user/dataminermanager/server/SessionUtil.java similarity index 84% rename from src/main/java/org/gcube/portlets/user/dataminermanager/server/util/SessionUtil.java rename to src/main/java/org/gcube/portlets/user/dataminermanager/server/SessionUtil.java index 16ed544..9ef09cf 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/server/util/SessionUtil.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/server/SessionUtil.java @@ -1,14 +1,13 @@ /** * */ -package org.gcube.portlets.user.dataminermanager.server.util; +package org.gcube.portlets.user.dataminermanager.server; import static org.gcube.common.authorization.client.Constants.authorizationService; import java.util.ArrayList; import java.util.List; -import javax.activation.DataSource; import javax.servlet.http.HttpSession; import org.apache.log4j.Logger; @@ -19,6 +18,7 @@ import org.gcube.portlets.user.dataminermanager.server.smservice.SClient; import org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPSBuilder; import org.gcube.portlets.user.dataminermanager.server.smservice.SClientBuilder; import org.gcube.portlets.user.dataminermanager.server.smservice.SClientDirector; +import org.gcube.portlets.user.dataminermanager.server.util.ServiceCredential; import org.gcube.portlets.user.dataminermanager.shared.Constants; import org.gcube.portlets.user.dataminermanager.shared.exception.ExpiredSessionServiceException; import org.gcube.portlets.user.dataminermanager.shared.exception.ServiceException; @@ -32,13 +32,7 @@ import org.gcube.portlets.user.dataminermanager.shared.exception.ServiceExceptio public class SessionUtil { private static final Logger logger = Logger.getLogger(SessionUtil.class); - // private final static String hostUrl = - // "http://pc-angela.isti.cnr.it:9090"; - // private static URI host = URI.create(hostUrl); - // private final static String SCOPE = "/gcube"; - - public static final String DATASOURCE_ATTRIBUTE_NAME = "TDW.DATASOURCE"; - + public static ASLSession getASLSession(HttpSession httpSession) throws ServiceException { String username = (String) httpSession @@ -61,7 +55,7 @@ public class SessionUtil { httpSession.getId(), username); aslSession.setScope(scope); } else { - logger.info("no user found in session, use test user"); + logger.info("no user found in session!"); throw new ExpiredSessionServiceException("Session Expired!"); } @@ -96,12 +90,6 @@ public class SessionUtil { } - public static DataSource getDataSource(HttpSession httpSession) - throws ServiceException { - ASLSession session = getASLSession(httpSession); - return (DataSource) session.getAttribute(DATASOURCE_ATTRIBUTE_NAME); - } - public static SClient getSClient(HttpSession session, ASLSession aslSession) throws Exception { diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/server/news/OperatorsNewsProducer.java b/src/main/java/org/gcube/portlets/user/dataminermanager/server/news/OperatorsNewsProducer.java index 2433f06..ea1b6c8 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/server/news/OperatorsNewsProducer.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/server/news/OperatorsNewsProducer.java @@ -29,7 +29,7 @@ import org.gcube.informationsystem.publisher.ScopedPublisher; import org.gcube.portlets.user.dataminermanager.client.bean.Operator; import org.gcube.portlets.user.dataminermanager.client.bean.OperatorCategory; import org.gcube.portlets.user.dataminermanager.server.DescriptionRepository; -import org.gcube.portlets.user.dataminermanager.server.util.SessionUtil; +import org.gcube.portlets.user.dataminermanager.server.SessionUtil; import org.gcube.portlets.user.dataminermanager.shared.Constants; import org.gcube.resources.discovery.client.api.DiscoveryClient; import org.gcube.resources.discovery.client.queries.api.Query; diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/server/smservice/SClient.java b/src/main/java/org/gcube/portlets/user/dataminermanager/server/smservice/SClient.java index 8fc2448..5ae31cb 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/server/smservice/SClient.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/server/smservice/SClient.java @@ -6,9 +6,9 @@ import java.util.Map; import org.gcube.portlets.user.dataminermanager.client.bean.ComputationStatus; import org.gcube.portlets.user.dataminermanager.client.bean.Operator; import org.gcube.portlets.user.dataminermanager.client.bean.OperatorsClassification; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationData; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationId; import org.gcube.portlets.user.dataminermanager.shared.data.OutputData; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationData; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationId; import org.gcube.portlets.user.dataminermanager.shared.parameters.Parameter; /** diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/server/smservice/SClient4WPS.java b/src/main/java/org/gcube/portlets/user/dataminermanager/server/smservice/SClient4WPS.java index ea9ecd0..b3bb968 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/server/smservice/SClient4WPS.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/server/smservice/SClient4WPS.java @@ -40,14 +40,16 @@ import org.gcube.portlets.user.dataminermanager.server.smservice.wps.ProcessInfo import org.gcube.portlets.user.dataminermanager.server.smservice.wps.ResponseWPS; import org.gcube.portlets.user.dataminermanager.server.smservice.wps.StatWPSClientSession; import org.gcube.portlets.user.dataminermanager.server.smservice.wps.WPS2SM; +import org.gcube.portlets.user.dataminermanager.server.smservice.wps.computationsvalue.ComputationValueBuilder; import org.gcube.portlets.user.dataminermanager.server.storage.StorageUtil; import org.gcube.portlets.user.dataminermanager.server.util.ServiceCredential; import org.gcube.portlets.user.dataminermanager.shared.Constants; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationData; -import org.gcube.portlets.user.dataminermanager.shared.data.ComputationId; import org.gcube.portlets.user.dataminermanager.shared.data.OutputData; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationData; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationId; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationValue; import org.gcube.portlets.user.dataminermanager.shared.data.output.FileResource; -import org.gcube.portlets.user.dataminermanager.shared.data.output.ImagesResource; +import org.gcube.portlets.user.dataminermanager.shared.data.output.ImageResource; import org.gcube.portlets.user.dataminermanager.shared.data.output.MapResource; import org.gcube.portlets.user.dataminermanager.shared.data.output.ObjectResource; import org.gcube.portlets.user.dataminermanager.shared.data.output.Resource; @@ -1043,7 +1045,7 @@ public class SClient4WPS extends SClient { case "image/gif": case "image/jpeg": case "image/png": - resource = new ImagesResource(key, + resource = new ImageResource(key, responseWPS.getDescription(), responseWPS.getDescription(), responseWPS.getData(), @@ -1250,8 +1252,8 @@ public class SClient4WPS extends SClient { computationId.setOperatorId(operatorId); computationId.setOperatorName(operatorName); - LinkedHashMap inputParameters = new LinkedHashMap<>(); - LinkedHashMap outputParameters = new LinkedHashMap<>(); + LinkedHashMap inputValueParameters = new LinkedHashMap<>(); + LinkedHashMap outputValueParameters = new LinkedHashMap<>(); for (String key : computationProperties.keySet()) { if (key != null) { @@ -1260,7 +1262,7 @@ public class SClient4WPS extends SClient { String inputKey = key.substring(inputSeparatorIndex + 1); if (inputKey.compareToIgnoreCase("user.name") != 0 && inputKey.compareToIgnoreCase("scope") != 0) { - inputParameters.put(inputKey, + inputValueParameters.put(inputKey, computationProperties.get(key)); } @@ -1270,7 +1272,7 @@ public class SClient4WPS extends SClient { int outputSeparatorIndex = key.indexOf("_"); String outputKey = key .substring(outputSeparatorIndex + 1); - outputParameters.put(outputKey, + outputValueParameters.put(outputKey, computationProperties.get(key)); } @@ -1279,12 +1281,18 @@ public class SClient4WPS extends SClient { } } - + + ComputationValueBuilder computationValueBuilder=new ComputationValueBuilder(inputValueParameters); + LinkedHashMap inputParameters = computationValueBuilder.create(); + computationValueBuilder=new ComputationValueBuilder(outputValueParameters); + LinkedHashMap outputParameters = computationValueBuilder.create(); + ComputationData computationData = new ComputationData(computationId, inputParameters, outputParameters, operatorDescritpion, startDate, endDate, status, executionType, vre); - + + logger.debug("ComputationData: "+computationData); return computationData; - } + } } diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/server/smservice/wps/computationsvalue/ComputationValueBuilder.java b/src/main/java/org/gcube/portlets/user/dataminermanager/server/smservice/wps/computationsvalue/ComputationValueBuilder.java new file mode 100644 index 0000000..8c1c432 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/server/smservice/wps/computationsvalue/ComputationValueBuilder.java @@ -0,0 +1,143 @@ +package org.gcube.portlets.user.dataminermanager.server.smservice.wps.computationsvalue; + +import java.io.IOException; +import java.net.HttpURLConnection; +import java.net.URL; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; + +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationValue; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationValueFile; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationValueImage; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +public class ComputationValueBuilder { + private static Logger logger = LoggerFactory + .getLogger(ComputationValueBuilder.class); + + private LinkedHashMap valueParameters; + private LinkedHashMap computationsValueParameters; + + public ComputationValueBuilder(LinkedHashMap valueParameters) { + this.valueParameters = valueParameters; + } + + /** + * + */ + public LinkedHashMap create() { + computationsValueParameters = new LinkedHashMap(); + if (valueParameters != null && !valueParameters.isEmpty()) { + for (String key : valueParameters.keySet()) { + String value = valueParameters.get(key); + if (value != null && !value.isEmpty() + && value.startsWith("http")) { + ComputationValue computationValue = retrieveFileName(value); + computationsValueParameters.put(key, computationValue); + } else { + ComputationValue valueString = new ComputationValue(value); + computationsValueParameters.put(key, valueString); + } + } + } + logger.debug("CompuatationsValues: " + computationsValueParameters); + return computationsValueParameters; + + } + + private ComputationValue retrieveFileName(final String value) { + HttpURLConnection conn = null; + + try { + URL url = new URL(value); + int attempts = 0; + do { + conn = (HttpURLConnection) url.openConnection(); + conn.setConnectTimeout(30000); + conn.setReadTimeout(30000); + conn.setRequestMethod("HEAD"); + conn.setAllowUserInteraction(false); + conn.setDoInput(true); + conn.setDoOutput(true); + conn.connect(); + if (conn.getResponseCode() != 200) { + logger.error("Response Code: "+conn.getResponseCode()); + try { + Thread.sleep(5000); + } catch (InterruptedException e) { + + } + } + attempts++; + } while (attempts <= 5 || conn.getResponseCode() != 200); + + if (conn.getResponseCode() == 200) { + return extractFileName(conn, value); + } else { + return new ComputationValueFile(value, null, null); + } + + } catch (IOException e) { + logger.error(e.getLocalizedMessage()); + e.printStackTrace(); + return new ComputationValueFile(value, null, null); + } + } + + private ComputationValue extractFileName(HttpURLConnection conn, + String value) { + ComputationValue computationValue = null; + String fileName = null; + String mimeType = null; + + logger.debug("Connection-Header: " + conn.getHeaderFields()); + + String contentDisposition = conn.getHeaderField("Content-Disposition"); + if (contentDisposition == null) { + Map> headerFields = conn.getHeaderFields(); + boolean found = false; + for (String key : headerFields.keySet()) { + List headerField = headerFields.get(key); + for (String fieldValue : headerField) { + if (fieldValue.toLowerCase().contains("filename=")) { + contentDisposition = fieldValue; + found = true; + break; + } + } + if (found) { + break; + } + } + } + + logger.debug("Content-Disposition: " + contentDisposition); + // Content-Disposition="attachment; filename=abc.png" + if (contentDisposition != null && contentDisposition.indexOf("=") != -1) { + fileName = contentDisposition.split("=")[1]; // getting value + // after '=' + if (fileName != null && !fileName.isEmpty()) { + if (fileName.startsWith("\"")) { + fileName = fileName.substring(1); + } + if (fileName.endsWith("\"")) { + fileName = fileName.substring(0, fileName.length() - 1); + } + } + } else { // fall back to random generated file name? } + } + mimeType = conn.getContentType(); + if ((mimeType != null && mimeType.compareToIgnoreCase("image/png") == 0) + || fileName != null && fileName.endsWith(".png")) { + computationValue = new ComputationValueImage(value, fileName, + mimeType); + } else { + computationValue = new ComputationValueFile(value, fileName, + mimeType); + } + + return computationValue; + } +} diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/Constants.java b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/Constants.java index ddf319b..f5ff1dd 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/Constants.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/Constants.java @@ -12,7 +12,7 @@ public class Constants { public static final String DEFAULT_USER = "giancarlo.panichi"; //public static final String DEFAULT_USER = "statistical.manager@gmail.com"; public static final String DEFAULT_ROLE = "OrganizationMember"; - public final static String DEFAULT_SCOPE = "/gcube/devsec/devVRE"; + public static final String DEFAULT_SCOPE = "/gcube/devsec/devVRE"; // public final static String DEFAULT_USER = "test.user"; // public final static String DEFAULT_SCOPE = "/gcube/devNext"; // public final static String DEFAULT_SCOPE = "/gcube/devNext/NextNext"; diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/OutputData.java b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/OutputData.java index e821b03..f83316d 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/OutputData.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/OutputData.java @@ -2,6 +2,7 @@ package org.gcube.portlets.user.dataminermanager.shared.data; import java.io.Serializable; +import org.gcube.portlets.user.dataminermanager.shared.data.computations.ComputationId; import org.gcube.portlets.user.dataminermanager.shared.data.output.Resource; /** diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/ComputationData.java b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationData.java similarity index 80% rename from src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/ComputationData.java rename to src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationData.java index 1befe77..40588bb 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/ComputationData.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationData.java @@ -1,4 +1,4 @@ -package org.gcube.portlets.user.dataminermanager.shared.data; +package org.gcube.portlets.user.dataminermanager.shared.data.computations; import java.io.Serializable; import java.util.LinkedHashMap; @@ -13,8 +13,8 @@ public class ComputationData implements Serializable { private static final long serialVersionUID = -3039151542008171640L; private ComputationId computationId; - private LinkedHashMap inputParameters; - private LinkedHashMap outputParameters; + private LinkedHashMap inputParameters; + private LinkedHashMap outputParameters; private String operatorDescription; private String startDate; private String endDate; @@ -27,8 +27,8 @@ public class ComputationData implements Serializable { } public ComputationData(ComputationId computationId, - LinkedHashMap inputParameters, - LinkedHashMap outputParameters, + LinkedHashMap inputParameters, + LinkedHashMap outputParameters, String operatorDescription, String startDate, String endDate, String status, String executionType, String vre) { super(); @@ -51,20 +51,20 @@ public class ComputationData implements Serializable { this.computationId = computationId; } - public LinkedHashMap getInputParameters() { + public LinkedHashMap getInputParameters() { return inputParameters; } - public void setInputParameters(LinkedHashMap inputParameters) { + public void setInputParameters(LinkedHashMap inputParameters) { this.inputParameters = inputParameters; } - public LinkedHashMap getOutputParameters() { + public LinkedHashMap getOutputParameters() { return outputParameters; } public void setOutputParameters( - LinkedHashMap outputParameters) { + LinkedHashMap outputParameters) { this.outputParameters = outputParameters; } diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/ComputationId.java b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationId.java similarity index 94% rename from src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/ComputationId.java rename to src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationId.java index 329bc67..66d7d53 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/ComputationId.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationId.java @@ -1,4 +1,4 @@ -package org.gcube.portlets.user.dataminermanager.shared.data; +package org.gcube.portlets.user.dataminermanager.shared.data.computations; import java.io.Serializable; diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValue.java b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValue.java new file mode 100644 index 0000000..b9adbf0 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValue.java @@ -0,0 +1,56 @@ +package org.gcube.portlets.user.dataminermanager.shared.data.computations; + +import java.io.Serializable; + +/** + * + * @author Giancarlo Panichi email: g.panichi@isti.cnr.it + * + */ +public class ComputationValue implements Serializable { + + private static final long serialVersionUID = -2047623108851748745L; + protected ComputationValueType type; + protected String value; + + public ComputationValue() { + super(); + } + + + public ComputationValue(String value) { + super(); + this.type = ComputationValueType.String; + this.value = value; + } + + + public ComputationValue(ComputationValueType type, String value) { + super(); + this.type = type; + this.value = value; + } + + public ComputationValueType getType() { + return type; + } + + public void setType(ComputationValueType type) { + this.type = type; + } + + public String getValue() { + return value; + } + + public void setValue(String value) { + this.value = value; + } + + @Override + public String toString() { + return "ComputationValue [type=" + type + ", value=" + value + "]"; + } + +} diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValueFile.java b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValueFile.java new file mode 100644 index 0000000..f2d7415 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValueFile.java @@ -0,0 +1,49 @@ +package org.gcube.portlets.user.dataminermanager.shared.data.computations; + +/** + * + * @author Giancarlo Panichi email: g.panichi@isti.cnr.it + * + */ +public class ComputationValueFile extends ComputationValue { + private static final long serialVersionUID = -5845606225432949795L; + + private String fileName; + private String mimeType; + + public ComputationValueFile() { + super(); + } + + public ComputationValueFile(String url, String fileName, String mimeType) { + super(ComputationValueType.File, url); + this.fileName = fileName; + this.mimeType = mimeType; + } + + public String getFileName() { + return fileName; + } + + public void setFileName(String fileName) { + this.fileName = fileName; + } + + public String getMimeType() { + return mimeType; + } + + public void setMimeType(String mimeType) { + this.mimeType = mimeType; + } + + @Override + public String toString() { + return "ComputationValueFile [fileName=" + fileName + ", mimeType=" + + mimeType + ", type=" + type + ", value=" + value + "]"; + } + + + +} diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValueImage.java b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValueImage.java new file mode 100644 index 0000000..430b2f1 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValueImage.java @@ -0,0 +1,47 @@ +package org.gcube.portlets.user.dataminermanager.shared.data.computations; + +/** + * + * @author Giancarlo Panichi email: g.panichi@isti.cnr.it + * + */ +public class ComputationValueImage extends ComputationValue { + private static final long serialVersionUID = -5845606225432949795L; + + private String fileName; + private String mimeType; + + public ComputationValueImage(){ + super(); + } + + public ComputationValueImage(String url, String fileName, String mimeType) { + super(ComputationValueType.Image, url); + this.fileName = fileName; + this.mimeType = mimeType; + } + + public String getFileName() { + return fileName; + } + + public void setFileName(String fileName) { + this.fileName = fileName; + } + + public String getMimeType() { + return mimeType; + } + + public void setMimeType(String mimeType) { + this.mimeType = mimeType; + } + + @Override + public String toString() { + return "ComputationValueImage [fileName=" + fileName + ", mimeType=" + + mimeType + "]"; + } + +} diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValueType.java b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValueType.java new file mode 100644 index 0000000..f1517e7 --- /dev/null +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/computations/ComputationValueType.java @@ -0,0 +1,11 @@ +package org.gcube.portlets.user.dataminermanager.shared.data.computations; + +/** + * + * @author Giancarlo Panichi + * email: g.panichi@isti.cnr.it + * + */ +public enum ComputationValueType { + File, Image, String; +} diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/output/ImagesResource.java b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/output/ImageResource.java similarity index 80% rename from src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/output/ImagesResource.java rename to src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/output/ImageResource.java index aeac780..c17c228 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/output/ImagesResource.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/output/ImageResource.java @@ -11,7 +11,7 @@ import java.io.Serializable; * email: g.panichi@isti.cnr.it * */ -public class ImagesResource extends Resource implements Serializable { +public class ImageResource extends Resource implements Serializable { /** * @@ -23,9 +23,9 @@ public class ImagesResource extends Resource implements Serializable { /** * */ - public ImagesResource() { + public ImageResource() { super(); - this.setResourceType(ResourceType.IMAGES); + this.setResourceType(ResourceType.IMAGE); } /** @@ -35,9 +35,9 @@ public class ImagesResource extends Resource implements Serializable { * @param description * @param link */ - public ImagesResource(String resourceId, String name, String description, + public ImageResource(String resourceId, String name, String description, String link, String mimeType) { - super(resourceId, name, description, ResourceType.IMAGES); + super(resourceId, name, description, ResourceType.IMAGE); this.link = link; this.mimeType = mimeType; } diff --git a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/output/Resource.java b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/output/Resource.java index eee983c..7c0aef6 100644 --- a/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/output/Resource.java +++ b/src/main/java/org/gcube/portlets/user/dataminermanager/shared/data/output/Resource.java @@ -19,7 +19,7 @@ public class Resource implements Serializable { private static final long serialVersionUID = 1417885805472591661L; public enum ResourceType { - OBJECT, FILE, TABULAR, MAP, IMAGES, ERROR + OBJECT, FILE, TABULAR, MAP, IMAGE, ERROR }; private String resourceId, name, description; @@ -125,7 +125,7 @@ public class Resource implements Serializable { } public boolean isImages() { - return this.resourceType == ResourceType.IMAGES; + return this.resourceType == ResourceType.IMAGE; } public boolean isError() { diff --git a/src/main/resources/org/gcube/portlets/user/dataminermanager/dataminermanager.gwt.xml b/src/main/resources/org/gcube/portlets/user/dataminermanager/dataminermanager.gwt.xml index ba12527..bb75e47 100644 --- a/src/main/resources/org/gcube/portlets/user/dataminermanager/dataminermanager.gwt.xml +++ b/src/main/resources/org/gcube/portlets/user/dataminermanager/dataminermanager.gwt.xml @@ -40,19 +40,20 @@ - + + - + diff --git a/test.log.1 b/test.log.1 deleted file mode 100644 index 21a8232..0000000 --- a/test.log.1 +++ /dev/null @@ -1,317663 +0,0 @@ -2016-05-03 10:14:53 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:14:53 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:14:53 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:14:54 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:14:54 INFO WorkspaceExplorerServiceImpl:188 - end time - 66 msc 0 sec -2016-05-03 10:14:54 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:14:54 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:255172}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1865929}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=5644212, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:54 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:14:54 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1655745, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:54 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:54 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:54 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:14:54 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:14:54 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2137693}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=974427, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:54 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1551477}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1564934, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:14:54 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1865930}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG command:56 - Command execution completed -2016-05-03 10:14:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG command:56 - Command execution completed -2016-05-03 10:14:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG command:56 - Command execution completed -2016-05-03 10:14:54 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:14:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG command:56 - Command execution completed -2016-05-03 10:14:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG command:56 - Command execution completed -2016-05-03 10:14:54 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1865930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:14:54 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:14:54 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:14:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:14:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:14:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:14:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:54 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:14:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:14:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:14:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:14:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:54 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:14:54 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:14:54 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:14:54 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:14:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:14:54 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:14:54 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 10:14:54 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:14:54 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:14:54 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:14:54 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:14:54 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:14:54 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:14:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:14:54 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:14:54 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:14:54 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:14:54 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:14:54 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:14:54 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:54 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:54 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:54 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7e38b5a6, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@1b826b53, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@f542441, socketFactory=javax.net.DefaultSocketFactory@5ec70774, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:14:54 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:14:54 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:14:54 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1865931}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1365240, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:54 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:14:54 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:54 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:54 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:54 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:255173}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2166491, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:54 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2137694}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1231892, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:54 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1551478}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1354530, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:14:54 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1865932}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865932}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG command:56 - Command execution completed -2016-05-03 10:14:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865932}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG command:56 - Command execution completed -2016-05-03 10:14:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865932}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG command:56 - Command execution completed -2016-05-03 10:14:54 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:14:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865932}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG command:56 - Command execution completed -2016-05-03 10:14:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865932}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG command:56 - Command execution completed -2016-05-03 10:14:54 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1865932}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:14:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:14:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:14:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:14:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:54 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:14:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:14:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:54 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:14:54 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:14:54 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:14:54 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:14:55 INFO WorkspaceExplorerServiceImpl:188 - end time - 49 msc 0 sec -2016-05-03 10:14:55 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:14:55 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:14:55 DEBUG query:56 - Query completed -2016-05-03 10:14:55 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 10:14:55 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2137693} -2016-05-03 10:14:55 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:255172} -2016-05-03 10:14:55 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1551477} -2016-05-03 10:14:55 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1865930}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:14:55 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1865930} -2016-05-03 10:14:55 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1865929} -2016-05-03 10:14:55 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:14:55 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:14:55 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:14:55 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 10:14:55 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:14:55 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:14:55 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:14:55 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:14:55 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:14:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:14:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:14:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:14:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:55 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:14:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:14:55 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:14:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:14:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:55 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:14:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:14:55 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:14:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:14:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:55 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:14:55 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:14:55 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:14:55 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 10:14:56 DEBUG query:56 - Query completed -2016-05-03 10:14:56 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 10:14:56 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2137694} -2016-05-03 10:14:56 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:255173} -2016-05-03 10:14:56 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1865932}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:14:56 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1551478} -2016-05-03 10:14:56 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1865932} -2016-05-03 10:14:56 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:14:56 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1865931} -2016-05-03 10:14:56 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:14:56 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:14:56 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 10:14:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:14:56 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:14:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:14:56 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 10:14:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:56 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:14:56 DEBUG ServiceEngine:193 - get() - start -2016-05-03 10:14:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:14:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:14:56 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:14:56 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:14:56 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:14:56 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:14:56 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 10:14:56 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:14:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:14:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:14:56 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:14:56 DEBUG Operation:173 - get(String) - start -2016-05-03 10:14:56 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:14:56 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:14:56 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:14:56 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:14:56 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:56 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:56 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:56 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7e38b5a6, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@1b826b53, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@f542441, socketFactory=javax.net.DefaultSocketFactory@5ec70774, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:14:56 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:14:56 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:14:56 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:1865933}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:255174}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1513559, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:56 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:14:56 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1557855, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:56 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:56 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:56 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2137696}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=873245, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:56 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1551479}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1433704, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:14:56 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1865934}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG command:56 - Command execution completed -2016-05-03 10:14:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG command:56 - Command execution completed -2016-05-03 10:14:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG command:56 - Command execution completed -2016-05-03 10:14:56 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:14:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG command:56 - Command execution completed -2016-05-03 10:14:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG command:56 - Command execution completed -2016-05-03 10:14:56 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:14:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG command:56 - Command execution completed -2016-05-03 10:14:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG command:56 - Command execution completed -2016-05-03 10:14:56 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:14:56 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG query:56 - Query completed -2016-05-03 10:14:56 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:14:56 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:14:56 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 10:14:56 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG update:56 - Update completed -2016-05-03 10:14:56 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1865934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG query:56 - Query completed -2016-05-03 10:14:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:56 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:14:56 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 10:14:56 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 10:14:56 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 10:14:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:14:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:14:56 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:14:56 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:14:56 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 10:14:56 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:14:56 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 10:14:56 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 10:14:56 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:14:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:14:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:14:56 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:14:56 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:14:56 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:14:56 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:14:56 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:56 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:56 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:56 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7e38b5a6, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@1b826b53, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@f542441, socketFactory=javax.net.DefaultSocketFactory@5ec70774, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:14:56 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:14:56 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:14:56 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:255175}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1514540, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:56 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:14:56 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:56 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:56 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2137697}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1194075, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:56 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1865935}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1922774, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:56 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:56 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1551480}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1355261, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:14:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:14:56 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1865936}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG command:56 - Command execution completed -2016-05-03 10:14:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG command:56 - Command execution completed -2016-05-03 10:14:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG command:56 - Command execution completed -2016-05-03 10:14:56 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:14:56 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:14:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG command:56 - Command execution completed -2016-05-03 10:14:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG command:56 - Command execution completed -2016-05-03 10:14:56 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:14:56 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1865936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:56 DEBUG query:56 - Query completed -2016-05-03 10:14:56 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:14:56 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2137697} -2016-05-03 10:14:56 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:255175} -2016-05-03 10:14:56 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1551480} -2016-05-03 10:14:56 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1865936}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:14:56 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1865936} -2016-05-03 10:14:56 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:14:56 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1865935} -2016-05-03 10:14:56 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:14:56 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:14:56 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:14:56 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:14:56 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 10:14:56 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:14:56 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:14:56 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:15:06 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:15:06 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:15:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:15:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:15:06 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:15:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:15:06 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:15:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:15:16 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:15:16 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:15:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:15:16 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:15:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:15:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:15:16 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:15:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:15:26 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:15:26 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:15:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:15:26 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:15:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:15:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:15:26 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:15:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:15:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:15:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:15:36 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:15:36 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:15:36 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:15:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:15:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:15:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:15:36 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:15:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:15:46 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:15:46 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:15:46 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:15:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:15:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:15:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:15:46 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:15:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:15:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:15:56 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:15:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:15:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:15:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:15:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:15:56 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:15:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:16:06 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:16:06 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:16:06 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:16:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:16:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:16:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:16:06 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:16:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:16:16 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:16:16 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:16:16 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:16:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:16:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:16:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:16:16 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:16:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=42.2 ms, state=CONNECTED}] -2016-05-03 10:16:26 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:16:26 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:16:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=42.2 ms, state=CONNECTED}] -2016-05-03 10:16:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=42.2 ms, state=CONNECTED}] -2016-05-03 10:16:26 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:16:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=42.2 ms, state=CONNECTED}] -2016-05-03 10:16:26 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:16:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=34.2 ms, state=CONNECTED}] -2016-05-03 10:16:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:16:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:16:36 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:16:36 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:16:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=34.2 ms, state=CONNECTED}] -2016-05-03 10:16:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=34.2 ms, state=CONNECTED}] -2016-05-03 10:16:36 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:16:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=34.2 ms, state=CONNECTED}] -2016-05-03 10:16:36 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:16:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=27.7 ms, state=CONNECTED}] -2016-05-03 10:16:46 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:16:46 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:16:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=27.7 ms, state=CONNECTED}] -2016-05-03 10:16:46 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:16:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=8.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=27.7 ms, state=CONNECTED}] -2016-05-03 10:16:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=8.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=12.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=27.7 ms, state=CONNECTED}] -2016-05-03 10:16:46 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:16:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=8.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=12.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=22.5 ms, state=CONNECTED}] -2016-05-03 10:16:56 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:16:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=8.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=12.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=22.5 ms, state=CONNECTED}] -2016-05-03 10:16:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:16:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=7.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=12.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=22.5 ms, state=CONNECTED}] -2016-05-03 10:16:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:16:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=7.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=10.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=22.5 ms, state=CONNECTED}] -2016-05-03 10:16:56 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:16:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=7.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=10.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=18.4 ms, state=CONNECTED}] -2016-05-03 10:17:06 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:17:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=7.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=10.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=18.4 ms, state=CONNECTED}] -2016-05-03 10:17:06 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:17:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=10.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=18.4 ms, state=CONNECTED}] -2016-05-03 10:17:06 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:17:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=11.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=18.4 ms, state=CONNECTED}] -2016-05-03 10:17:06 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:17:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=11.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=15.1 ms, state=CONNECTED}] -2016-05-03 10:17:16 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:17:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=11.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=15.1 ms, state=CONNECTED}] -2016-05-03 10:17:16 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:17:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=11.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=15.1 ms, state=CONNECTED}] -2016-05-03 10:17:16 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:17:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=9.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=15.1 ms, state=CONNECTED}] -2016-05-03 10:17:16 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:17:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=9.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=12.4 ms, state=CONNECTED}] -2016-05-03 10:17:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:17:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:17:26 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:17:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=9.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=12.4 ms, state=CONNECTED}] -2016-05-03 10:17:26 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:17:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=9.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=12.4 ms, state=CONNECTED}] -2016-05-03 10:17:26 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:17:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=8.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=12.4 ms, state=CONNECTED}] -2016-05-03 10:17:26 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:17:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=8.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=10.3 ms, state=CONNECTED}] -2016-05-03 10:17:36 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:17:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=8.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=10.3 ms, state=CONNECTED}] -2016-05-03 10:17:36 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:17:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=8.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=10.3 ms, state=CONNECTED}] -2016-05-03 10:17:36 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:17:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=10.3 ms, state=CONNECTED}] -2016-05-03 10:17:36 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:17:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=8.6 ms, state=CONNECTED}] -2016-05-03 10:17:46 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:17:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=8.6 ms, state=CONNECTED}] -2016-05-03 10:17:46 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:17:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=8.6 ms, state=CONNECTED}] -2016-05-03 10:17:46 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:17:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=8.6 ms, state=CONNECTED}] -2016-05-03 10:17:46 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:17:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=7.7 ms, state=CONNECTED}] -2016-05-03 10:17:46 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2137696} -2016-05-03 10:17:46 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:255174} -2016-05-03 10:17:46 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1551479} -2016-05-03 10:17:46 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1865934}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:17:46 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1865934} -2016-05-03 10:17:46 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:1865933} -2016-05-03 10:18:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:18:17 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:19:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:19:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:20:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:20:07 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:21:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:21:02 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:21:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:21:57 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:22:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:22:52 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:23:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:23:32 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:23:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:23:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:23:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:23:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:23:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:23:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:23:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:23:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:23:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:23:32 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:23:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:23:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:23:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:23:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:23:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:23:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:23:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:23:32 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:23:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:23:32 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:23:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:23:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:23:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:23:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:23:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:23:32 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:23:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:23:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:23:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:23:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:23:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:23:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:23:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:23:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:23:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:23:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:23:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:23:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:23:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:23:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:23:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:23:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:23:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:23:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:23:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:23:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:23:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:23:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:23:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:23:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:23:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:23:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:23:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:23:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:23:33 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:23:33 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:23:33 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:23:33 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:23:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:23:33 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:23:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:23:33 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:23:33 INFO WorkspaceExplorerServiceImpl:142 - end time - 160 msc 0 sec -2016-05-03 10:23:33 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:23:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:23:36 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:23:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:23:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:23:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:23:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:23:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:23:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:23:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:23:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:23:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:23:36 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:23:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:23:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:23:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:23:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:23:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:23:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:23:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:23:36 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:23:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:23:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:23:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:23:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:23:36 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:23:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:23:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:23:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:23:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:23:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:23:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:23:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:23:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:23:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:23:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:23:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:23:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:23:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:23:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:23:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:23:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:23:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:23:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:23:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:23:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:23:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:23:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:23:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:23:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:23:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:23:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:23:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:23:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:23:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:23:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:23:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:23:36 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:23:37 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:23:37 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:23:37 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:23:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:23:37 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:23:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:23:37 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:23:37 INFO WorkspaceExplorerServiceImpl:142 - end time - 162 msc 0 sec -2016-05-03 10:23:37 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:23:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:23:47 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:24:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:24:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:25:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:25:37 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:26:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:26:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:27:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:27:27 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:28:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:28:22 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:29:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:29:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:30:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:30:12 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:31:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:31:07 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:32:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:32:02 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:32:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:32:57 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:33:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:33:52 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:34:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:34:47 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:35:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:35:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:36:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:36:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:37:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:37:32 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:38:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:38:27 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:39:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:39:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:40:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:40:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:42:15 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 10:42:15 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 10:42:15 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 10:42:15 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:42:15 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:42:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:42:15 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:42:15 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@32a07412 -2016-05-03 10:42:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:42:15 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:42:15 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:42:15 DEBUG TemplateModel:83 - 2016-05-03 10:42:15, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:42:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:42:15 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 10:42:17 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:42:17 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:42:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:42:17 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:42:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:42:17 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:42:17 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:42:17 DEBUG TemplateModel:83 - 2016-05-03 10:42:17, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:42:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:42:17 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:42:17 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 119 ms -2016-05-03 10:42:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 10:42:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 10:42:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 10:42:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 10:42:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 10:42:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 10:42:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 10:42:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 10:42:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 10:42:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 10:42:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 10:42:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 10:42:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 10:42:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 10:42:17 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 10:42:17 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:42:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:42:17 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@13ea6a3e -2016-05-03 10:42:17 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@1b80606f -2016-05-03 10:42:17 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@2350bd77 -2016-05-03 10:42:17 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@347d2992 -2016-05-03 10:42:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 100 ms -2016-05-03 10:42:17 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 10:42:17 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 10:42:17 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 10:42:17 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 10:42:17 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 10:42:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:42:17 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:42:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 10:42:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 27 ms -2016-05-03 10:42:17 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 10:42:17 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:42:17 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 10:42:17 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:42:18 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:42:18 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:42:18 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:42:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:42:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:42:18 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:42:18 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 10:42:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:42:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:42:18 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 10:42:18 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 10:42:18 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 10:42:18 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 10:42:18 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 10:42:18 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 10:42:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 10:42:18 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:42:18 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 10:42:18 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 83 ms -2016-05-03 10:42:18 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 10:42:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:42:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:42:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:42:18 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 10:42:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:18 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 10:42:18 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:42:19 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:42:19 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 10:42:19 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:42:19 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:42:19 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 10:42:19 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 10:42:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:42:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:19 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:42:19 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 10:42:19 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:42:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 10:42:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:42:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:42:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:42:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:42:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:42:19 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:42:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 10:42:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:42:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:42:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:42:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:42:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:42:19 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:42:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 10:42:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:42:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:42:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:42:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:42:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:42:19 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:42:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 10:42:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:20 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:42:20 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:42:20 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:42:20 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:42:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:42:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:42:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:42:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:42:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:42:20 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 10:42:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:42:20 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:42:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:42:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:42:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:42:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:42:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:42:20 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 10:42:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:20 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 10:42:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:20 INFO WorkspaceExplorerServiceImpl:188 - end time - 132 msc 0 sec -2016-05-03 10:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:42:20 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 10:42:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:42:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:42:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:42:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:42:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:42:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:42:20 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 10:42:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:20 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 10:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 10:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:42:20 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:42:20 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:42:20 INFO WorkspaceExplorerServiceImpl:188 - end time - 114 msc 0 sec -2016-05-03 10:42:20 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 33 ms -2016-05-03 10:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 10:42:20 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:42:20 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 10:42:20 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 10:42:20 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 10:42:20 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 10:42:20 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 10:42:20 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 10:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 10:42:20 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 10:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 10:42:20 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:42:20 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:42:20 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 10:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 10:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 10:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 10:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:42:20 INFO WorkspaceExplorerServiceImpl:188 - end time - 334 msc 0 sec -2016-05-03 10:42:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:42:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:42:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:42:25 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 10:42:25 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:42:25 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:42:26 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 10:42:26 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 10:42:26 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 10:42:26 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 10:42:26 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 10:42:26 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 10:42:26 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:42:26 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 10:42:26 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-03 10:42:26 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-03 10:42:26 DEBUG WPS2SM:204 - Schema: null -2016-05-03 10:42:26 DEBUG WPS2SM:205 - Encoding: null -2016-05-03 10:42:26 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:42:26 DEBUG WPS2SM:227 - Machter find: true -2016-05-03 10:42:26 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 10:42:26 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-03 10:42:26 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-03 10:42:26 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-03 10:42:26 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-03 10:42:26 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 10:42:26 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 10:42:26 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:42:26 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-03 10:42:26 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 10:42:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 10:42:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 10:42:26 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 10:42:26 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:42:26 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 10:42:26 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 10:42:26 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 10:42:26 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 10:42:26 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 10:42:26 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 10:42:26 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 10:42:26 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 10:42:26 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:42:26 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 10:42:26 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 10:42:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:42:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:42:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:42:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:42:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:42:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:42:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:42:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:42:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:42:26 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:42:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:42:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:42:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:42:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:42:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:42:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:42:26 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:42:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:42:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:42:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:42:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:42:26 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:42:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:42:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:42:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:42:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:42:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:42:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:42:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:42:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:42:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:42:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:42:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:42:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:42:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:42:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:42:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:42:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:42:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:26 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:42:26 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:42:26 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:42:26 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:42:26 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:42:26 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:42:26 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:42:26 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:42:26 INFO WorkspaceExplorerServiceImpl:142 - end time - 202 msc 0 sec -2016-05-03 10:42:26 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:42:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:42:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:42:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:42:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:42:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:42:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:42:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:42:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:42:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:42:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:42:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:42:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:42:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:42:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:42:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:42:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:42:34 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:42:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:42:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:42:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:42:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:42:34 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:42:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:42:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:42:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:42:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:42:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:42:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:42:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:42:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:42:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:42:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:42:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:42:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:42:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:42:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:42:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:42:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:42:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:42:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:42:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:42:34 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:42:34 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:42:34 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:42:34 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:42:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:42:34 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:42:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:42:34 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:42:34 INFO WorkspaceExplorerServiceImpl:142 - end time - 201 msc 0 sec -2016-05-03 10:42:34 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:43:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:43:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:43:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:43:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:43:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:43:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:43:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:43:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:43:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:43:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:43:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:43:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:43:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:43:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:43:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:43:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:43:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:43:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:43:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:43:06 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:43:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:43:06 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:43:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:43:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:43:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:43:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:43:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:43:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:43:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:43:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:43:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:43:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:43:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:43:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:43:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:43:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:43:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:43:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:43:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:43:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:43:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:43:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:43:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:43:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:43:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:43:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:43:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:43:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:43:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:43:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:43:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:43:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:43:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:43:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:43:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:43:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:43:06 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:43:06 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:43:06 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:43:06 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:43:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:43:06 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:43:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:43:06 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:43:06 INFO WorkspaceExplorerServiceImpl:142 - end time - 164 msc 0 sec -2016-05-03 10:43:06 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:43:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:43:07 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:43:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:43:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:43:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:43:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:43:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:43:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:43:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:43:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:43:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:43:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:43:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:43:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:43:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:43:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:43:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:43:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:43:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:43:07 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:43:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:43:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:43:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:43:07 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:43:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:43:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:43:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:43:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:43:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:43:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:43:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:43:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:43:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:43:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:43:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:43:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:43:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:43:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:43:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:43:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:43:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:43:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:43:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:43:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:43:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:43:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:43:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:43:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:43:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:43:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:43:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:43:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:43:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:43:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:43:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:43:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:43:07 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:43:07 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:43:07 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:43:07 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:43:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:43:07 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:43:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:43:07 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:43:07 INFO WorkspaceExplorerServiceImpl:142 - end time - 156 msc 0 sec -2016-05-03 10:43:07 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:43:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:43:10 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:44:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:44:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:45:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:45:00 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:45:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:45:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:46:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:46:50 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:47:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:47:45 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:48:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:48:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:48:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:09 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:10 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:48:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:10 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:48:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:10 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:48:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:10 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:48:10 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:48:10 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:48:10 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:48:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:48:10 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:48:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:48:10 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:48:10 INFO WorkspaceExplorerServiceImpl:142 - end time - 154 msc 0 sec -2016-05-03 10:48:10 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:11 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:48:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:48:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:48:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:48:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:11 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:48:11 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:48:11 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:48:11 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:48:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:48:11 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:48:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:48:11 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:48:11 INFO WorkspaceExplorerServiceImpl:142 - end time - 164 msc 0 sec -2016-05-03 10:48:11 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:11 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:48:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:48:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:12 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:48:12 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:48:12 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:48:12 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:48:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:48:12 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:48:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:48:12 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:48:12 INFO WorkspaceExplorerServiceImpl:142 - end time - 171 msc 0 sec -2016-05-03 10:48:12 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:12 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:12 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:48:12 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:48:12 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:48:12 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:48:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:48:12 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:48:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:48:13 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:48:13 INFO WorkspaceExplorerServiceImpl:142 - end time - 147 msc 0 sec -2016-05-03 10:48:13 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:13 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:48:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:13 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:13 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:48:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:48:13 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:48:13 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:48:13 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:48:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:48:13 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:48:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:48:13 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:48:13 INFO WorkspaceExplorerServiceImpl:142 - end time - 136 msc 0 sec -2016-05-03 10:48:13 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:48:13 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:48:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:13 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:48:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:48:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:48:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:48:13 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:48:13 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:48:13 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:48:13 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:48:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:48:13 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:48:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:48:13 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:48:13 INFO WorkspaceExplorerServiceImpl:142 - end time - 170 msc 0 sec -2016-05-03 10:48:13 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:48:25 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:25 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:48:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:25 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:25 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:48:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:25 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:25 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:25 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:48:25 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:48:25 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:25 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:25 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 10:48:25 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 10:48:25 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:48:25 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:48:25 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:48:25 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:48:25 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:48:25 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:25 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:25 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:48:25 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:48:25 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:48:25 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:48:25 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:25 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:25 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:48:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:48:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:48:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:25 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6c62ff5d, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@514af691, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1081d349, socketFactory=javax.net.DefaultSocketFactory@3b566616, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:48:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:25 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:48:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:25 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:48:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:25 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:25 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:48:25 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:25 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:48:25 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:48:25 INFO WorkspaceExplorerServiceImpl:188 - end time - 56 msc 0 sec -2016-05-03 10:48:25 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:48:25 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:48:25 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:48:25 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:255511}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1660220, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:25 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:48:25 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:25 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:25 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1551815}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1353389, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:48:25 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1866272}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1286472, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:25 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:48:25 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2138032}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=999698, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:48:25 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1866273}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1866273}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 DEBUG command:56 - Command execution completed -2016-05-03 10:48:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1866273}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 DEBUG command:56 - Command execution completed -2016-05-03 10:48:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1866273}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 DEBUG command:56 - Command execution completed -2016-05-03 10:48:25 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:48:25 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1866273}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 DEBUG command:56 - Command execution completed -2016-05-03 10:48:25 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1866273}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 DEBUG command:56 - Command execution completed -2016-05-03 10:48:25 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1866273}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:48:26 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:48:26 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:48:26 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:48:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:48:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:26 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:48:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:48:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:26 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:48:26 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:48:26 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:48:26 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:48:26 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:26 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:26 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 10:48:26 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:48:26 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:48:26 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:48:26 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:48:26 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:48:26 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:48:26 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:26 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:26 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:48:26 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:48:26 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:48:26 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:48:26 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:26 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:26 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:26 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6c62ff5d, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@514af691, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1081d349, socketFactory=javax.net.DefaultSocketFactory@3b566616, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:48:26 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:48:26 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:48:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:26 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:48:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:48:26 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:48:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:48:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:26 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:48:26 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:48:26 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:255512}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1866274}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1617427, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:26 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:48:26 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:26 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=3380499, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:26 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:26 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2138033}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=992690, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:26 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:48:26 DEBUG query:56 - Query completed -2016-05-03 10:48:26 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 10:48:26 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2138032} -2016-05-03 10:48:26 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:255511} -2016-05-03 10:48:26 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1551815} -2016-05-03 10:48:26 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1866273}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:48:26 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1866273} -2016-05-03 10:48:26 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1551816}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1866272} -2016-05-03 10:48:26 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:48:26 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:48:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1509765, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 10:48:26 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:48:26 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 10:48:26 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:48:26 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1866275}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1866275}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 DEBUG command:56 - Command execution completed -2016-05-03 10:48:26 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1866275}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 DEBUG command:56 - Command execution completed -2016-05-03 10:48:26 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1866275}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 DEBUG command:56 - Command execution completed -2016-05-03 10:48:26 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:48:26 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1866275}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 INFO WorkspaceExplorerServiceImpl:188 - end time - 44 msc 0 sec -2016-05-03 10:48:26 DEBUG command:56 - Command execution completed -2016-05-03 10:48:26 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1866275}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 DEBUG command:56 - Command execution completed -2016-05-03 10:48:26 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1866275}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:26 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:48:26 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:48:26 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:48:26 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:48:26 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 10:48:27 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:48:27 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:48:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:48:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:27 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:48:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:27 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:48:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:27 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:48:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:48:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:48:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:48:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:27 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:48:27 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:48:27 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:48:27 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 10:48:27 DEBUG query:56 - Query completed -2016-05-03 10:48:27 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 10:48:27 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2138033} -2016-05-03 10:48:27 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:255512} -2016-05-03 10:48:27 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1866275}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:48:27 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1551816} -2016-05-03 10:48:27 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1866275} -2016-05-03 10:48:27 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:48:27 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:48:27 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:48:27 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 10:48:27 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1866274} -2016-05-03 10:48:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:27 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:48:27 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:48:27 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 10:48:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:27 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:48:27 DEBUG ServiceEngine:193 - get() - start -2016-05-03 10:48:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:28 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:28 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:48:28 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:48:28 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:48:28 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:48:28 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 10:48:28 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:48:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:28 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:28 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:48:28 DEBUG Operation:173 - get(String) - start -2016-05-03 10:48:28 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:48:28 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:48:28 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:48:28 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:48:28 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:28 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:28 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:28 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6c62ff5d, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@514af691, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1081d349, socketFactory=javax.net.DefaultSocketFactory@3b566616, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:48:28 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:48:28 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:48:28 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:255513}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1247514, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:28 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:48:28 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:28 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:28 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2138034}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=878712, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:28 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1866276}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1452941, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:28 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:28 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1551818}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1357905, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:48:28 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1866277}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1866277}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG command:56 - Command execution completed -2016-05-03 10:48:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1866277}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG command:56 - Command execution completed -2016-05-03 10:48:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1866277}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG command:56 - Command execution completed -2016-05-03 10:48:28 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:48:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1866277}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG command:56 - Command execution completed -2016-05-03 10:48:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1866277}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG command:56 - Command execution completed -2016-05-03 10:48:28 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:48:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1866277}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG command:56 - Command execution completed -2016-05-03 10:48:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1866277}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG command:56 - Command execution completed -2016-05-03 10:48:28 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:48:28 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1866277}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG query:56 - Query completed -2016-05-03 10:48:28 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:48:28 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:48:28 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 10:48:28 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1866277}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG update:56 - Update completed -2016-05-03 10:48:28 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1866277}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG query:56 - Query completed -2016-05-03 10:48:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:28 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:48:28 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 10:48:28 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 10:48:28 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 10:48:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:28 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:28 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:48:28 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:48:28 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 10:48:28 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:48:28 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 10:48:28 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 10:48:28 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:48:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:28 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:28 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:48:28 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:48:28 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:48:28 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:48:28 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:28 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:28 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:28 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6c62ff5d, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@514af691, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1081d349, socketFactory=javax.net.DefaultSocketFactory@3b566616, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:48:28 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:48:28 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:48:28 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1866278}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1140308, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:28 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:48:28 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:28 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:28 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:28 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:255514}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1842245, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:28 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2138035}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=924928, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:28 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1551819}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1373294, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:48:28 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1866279}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1866279}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG command:56 - Command execution completed -2016-05-03 10:48:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1866279}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG command:56 - Command execution completed -2016-05-03 10:48:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1866279}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG command:56 - Command execution completed -2016-05-03 10:48:28 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:48:28 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:48:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1866279}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG command:56 - Command execution completed -2016-05-03 10:48:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1866279}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG command:56 - Command execution completed -2016-05-03 10:48:28 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:48:28 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1866279}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG query:56 - Query completed -2016-05-03 10:48:28 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:48:28 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2138035} -2016-05-03 10:48:28 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:255514} -2016-05-03 10:48:28 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1866279}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:48:28 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1866279} -2016-05-03 10:48:28 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1551819} -2016-05-03 10:48:28 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:48:28 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1866278} -2016-05-03 10:48:28 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:48:28 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:48:28 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:48:28 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:48:28 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 10:48:28 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:48:28 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:48:28 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:48:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:48:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:48:35 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:35 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:35 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:48:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:35 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:48:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:48:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:48:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:35 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:35 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:35 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:48:35 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:48:35 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:35 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:35 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 10:48:35 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 10:48:35 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:48:35 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:48:35 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:48:35 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:48:35 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:48:35 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:35 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:35 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:48:35 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:48:35 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:48:35 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:48:35 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:35 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:35 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:35 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6c62ff5d, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@514af691, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1081d349, socketFactory=javax.net.DefaultSocketFactory@3b566616, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:48:35 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:48:35 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:48:35 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1866280}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:255518}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1588359, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:35 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:48:35 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:35 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1232137, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:35 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:35 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2138037}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1164146, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:35 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1551821}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1431553, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:48:35 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1866281}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1866281}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 DEBUG command:56 - Command execution completed -2016-05-03 10:48:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:35 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1866281}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:48:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:48:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:35 DEBUG command:56 - Command execution completed -2016-05-03 10:48:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:35 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1866281}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 DEBUG command:56 - Command execution completed -2016-05-03 10:48:35 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:48:35 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1866281}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 DEBUG command:56 - Command execution completed -2016-05-03 10:48:35 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1866281}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 DEBUG command:56 - Command execution completed -2016-05-03 10:48:35 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1866281}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:35 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:35 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:35 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:48:35 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:48:35 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2138034} -2016-05-03 10:48:35 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:255513} -2016-05-03 10:48:35 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1551818} -2016-05-03 10:48:35 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1866277}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:48:35 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1866277} -2016-05-03 10:48:35 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1866276} -2016-05-03 10:48:35 INFO WorkspaceExplorerServiceImpl:188 - end time - 47 msc 0 sec -2016-05-03 10:48:35 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:48:35 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:48:35 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:48:35 DEBUG query:56 - Query completed -2016-05-03 10:48:35 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 10:48:35 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2138037} -2016-05-03 10:48:35 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:255518} -2016-05-03 10:48:35 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1866281}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:48:35 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1866281} -2016-05-03 10:48:35 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1551821} -2016-05-03 10:48:35 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:48:35 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:48:35 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:48:35 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 10:48:35 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1866280} -2016-05-03 10:48:36 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:48:36 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:48:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:48:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:48:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:36 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:48:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:36 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:48:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:36 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:48:36 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:48:36 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:48:36 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:48:36 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:36 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:36 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 10:48:36 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:48:36 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:48:36 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:48:36 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:48:36 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:48:36 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:48:36 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:36 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:36 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:48:36 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:48:36 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:48:36 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:48:36 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:36 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:36 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:36 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6c62ff5d, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@514af691, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1081d349, socketFactory=javax.net.DefaultSocketFactory@3b566616, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:48:36 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:48:36 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:48:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:48:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:36 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:48:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:36 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:48:36 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:48:37 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:48:37 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:48:37 INFO WorkspaceExplorerServiceImpl:188 - end time - 39 msc 0 sec -2016-05-03 10:48:37 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:48:37 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:48:37 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:48:37 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:48:37 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:48:37 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:48:37 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:48:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:37 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:37 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:48:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:37 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:48:37 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:48:37 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:48:37 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 10:48:37 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:255519}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:37 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1866282}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1634437, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1762304, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:37 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:48:37 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:37 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:37 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:37 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2138039}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=814822, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:37 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1551822}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1788437, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:48:38 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1866283}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1866283}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG command:56 - Command execution completed -2016-05-03 10:48:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1866283}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG command:56 - Command execution completed -2016-05-03 10:48:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1866283}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG command:56 - Command execution completed -2016-05-03 10:48:38 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:48:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1866283}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG command:56 - Command execution completed -2016-05-03 10:48:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1866283}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG command:56 - Command execution completed -2016-05-03 10:48:38 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1866283}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:48:38 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:48:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:48:38 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-03 10:48:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:38 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:48:38 DEBUG ServiceEngine:193 - get() - start -2016-05-03 10:48:38 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:38 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:38 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 10:48:38 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:48:38 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:48:38 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:48:38 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 10:48:38 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:48:38 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:38 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:38 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:48:38 DEBUG Operation:173 - get(String) - start -2016-05-03 10:48:38 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:48:38 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:48:38 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:48:38 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:48:38 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:38 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:38 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:38 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6c62ff5d, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@514af691, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1081d349, socketFactory=javax.net.DefaultSocketFactory@3b566616, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:48:38 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:48:38 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:48:38 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1866284}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1358566, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:38 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:48:38 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:38 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:255520}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=937734, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:38 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2138040}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=813627, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:38 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1551823}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1407689, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:48:38 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1866285}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1866285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG command:56 - Command execution completed -2016-05-03 10:48:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1866285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG command:56 - Command execution completed -2016-05-03 10:48:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1866285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG command:56 - Command execution completed -2016-05-03 10:48:38 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:48:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1866285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG command:56 - Command execution completed -2016-05-03 10:48:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1866285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG command:56 - Command execution completed -2016-05-03 10:48:38 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:48:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1866285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG command:56 - Command execution completed -2016-05-03 10:48:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1866285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG command:56 - Command execution completed -2016-05-03 10:48:38 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:48:38 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1866285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG query:56 - Query completed -2016-05-03 10:48:38 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 10:48:38 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:48:38 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 10:48:38 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1866285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG update:56 - Update completed -2016-05-03 10:48:38 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1866285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:38 DEBUG query:56 - Query completed -2016-05-03 10:48:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:48:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:48:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:48:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:48:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:48:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:48:39 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:48:39 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-03 10:48:39 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 10:48:39 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 10:48:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:39 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:39 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 10:48:39 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:48:39 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 10:48:39 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:48:39 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 10:48:39 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 10:48:39 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:48:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:48:39 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:48:39 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:48:39 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:48:39 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:48:39 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:48:39 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:39 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:39 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:39 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6c62ff5d, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@514af691, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1081d349, socketFactory=javax.net.DefaultSocketFactory@3b566616, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:48:39 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:48:39 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:48:39 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:255521}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1283443, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:39 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:48:39 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:39 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:48:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:39 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2138041}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=881637, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:39 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1866286}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1455344, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:39 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:48:39 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1551824}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1943646, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:48:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 10:48:39 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1866287}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1866287}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 DEBUG command:56 - Command execution completed -2016-05-03 10:48:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1866287}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 DEBUG command:56 - Command execution completed -2016-05-03 10:48:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1866287}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 DEBUG query:56 - Query completed -2016-05-03 10:48:39 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 10:48:39 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2138039} -2016-05-03 10:48:39 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:255519} -2016-05-03 10:48:39 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1551822} -2016-05-03 10:48:39 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1866283}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:48:39 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1866283} -2016-05-03 10:48:39 DEBUG command:56 - Command execution completed -2016-05-03 10:48:39 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1866282} -2016-05-03 10:48:39 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:48:39 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:48:39 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:48:39 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:48:39 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:48:39 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 10:48:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1866287}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 DEBUG command:56 - Command execution completed -2016-05-03 10:48:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1866287}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 DEBUG command:56 - Command execution completed -2016-05-03 10:48:39 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:48:39 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1866287}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:39 DEBUG query:56 - Query completed -2016-05-03 10:48:39 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 10:48:39 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:255521} -2016-05-03 10:48:39 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1551824} -2016-05-03 10:48:39 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1866287}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:48:39 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2138041} -2016-05-03 10:48:39 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1866287} -2016-05-03 10:48:39 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:48:39 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1866286} -2016-05-03 10:48:39 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:48:39 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 10:48:39 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 10:48:39 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 10:48:39 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 10:48:39 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 10:48:39 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 10:48:39 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 10:48:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:40 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:48:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:48:47 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:48:47 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:48:47 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[TabularListParameter [value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=h1|h2, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]], hasImage=false]] -2016-05-03 10:48:47 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 10:48:47 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-03 10:48:47 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-03 10:48:47 DEBUG WPS2SM:204 - Schema: null -2016-05-03 10:48:47 DEBUG WPS2SM:205 - Encoding: null -2016-05-03 10:48:47 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:48:47 DEBUG WPS2SM:227 - Machter find: true -2016-05-03 10:48:47 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 10:48:47 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-03 10:48:47 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-03 10:48:47 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-03 10:48:47 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-03 10:48:47 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 10:48:47 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 10:48:47 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:48:47 DEBUG SClient4WPS:687 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-03 10:48:47 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 10:48:47 DEBUG WPS2SM:92 - WPS type: -2016-05-03 10:48:47 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 10:48:47 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 10:48:47 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:48:47 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 10:48:47 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 10:48:47 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 10:48:47 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 10:48:47 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 10:48:47 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 10:48:47 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 10:48:47 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 10:48:47 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:48:47 DEBUG SClient4WPS:687 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 10:48:47 DEBUG SClient4WPS:695 - UserInputs= key:HCAF_Table_List, value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 10:48:47 DEBUG SClient4WPS:695 - UserInputs= key:HCAF_Table_Names, value=h1|h2 -2016-05-03 10:48:47 DEBUG SClient4WPS:754 - Configuring Complex: HCAF_Table_List to: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 10:48:47 DEBUG SClient4WPS:737 - Configuring Literal: HCAF_Table_Names to: h1|h2 -2016-05-03 10:48:47 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:48:48 DEBUG SClient4WPS:385 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - - - HCAF_Table_List - - - - HCAF_Table_Names - - h1|h2 - - - - - - - non_deterministic_output - - - - -2016-05-03 10:48:48 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-03 10:48:48 DEBUG SClient4WPS:404 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=d1c475a4-24f3-4fd0-90d6-00c4ec2e27d9 -2016-05-03 10:48:48 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:48:48 DEBUG SClient4WPS:774 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=d1c475a4-24f3-4fd0-90d6-00c4ec2e27d9 -2016-05-03 10:48:48 DEBUG SClient4WPS:700 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=d1c475a4-24f3-4fd0-90d6-00c4ec2e27d9 -2016-05-03 10:48:48 DEBUG SClient4WPS:711 - ComputationId: ComputationId [id=d1c475a4-24f3-4fd0-90d6-00c4ec2e27d9, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=d1c475a4-24f3-4fd0-90d6-00c4ec2e27d9] -2016-05-03 10:48:48 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:48:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:48:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:48:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:48:48 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:48:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:48:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:48:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:48:48 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:255520} -2016-05-03 10:48:48 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1866285}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:48:48 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1866285} -2016-05-03 10:48:48 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2138040} -2016-05-03 10:48:48 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1551823} -2016-05-03 10:48:48 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1866284} -2016-05-03 10:48:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:48:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:48:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:48:59 DEBUG SClient4WPS:790 - GetComputationStatus(): ComputationId=ComputationId [id=d1c475a4-24f3-4fd0-90d6-00c4ec2e27d9, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=d1c475a4-24f3-4fd0-90d6-00c4ec2e27d9] -2016-05-03 10:48:59 INFO StatWPSClientSession:114 - CONNECT -2016-05-03 10:48:59 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-03 10:48:59 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=d1c475a4-24f3-4fd0-90d6-00c4ec2e27d9 -2016-05-03 10:48:59 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 10:48:59 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-03 10:48:59 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-03 10:48:59 DEBUG SClient4WPS:806 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - - org.n52.wps.server.ExceptionReport: Error occured while parsing XML - - - - - -2016-05-03 10:48:59 DEBUG SClient4WPS:851 - WPS FAILURE: - - org.n52.wps.server.ExceptionReport: Error occured while parsing XML - - OR PAUSED: null -2016-05-03 10:48:59 DEBUG SClient4WPS:889 - ComputationStatus: ComputationStatus [percentage=100.0, status=FAILED, endDate=null, message=null, errResource=null] -2016-05-03 10:49:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:49:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:50:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:50:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:51:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:51:25 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:52:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:52:20 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:53:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:53:15 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:54:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:54:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:55:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:55:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:56:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:56:00 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:56:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:56:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:57:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:57:50 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:59:17 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 10:59:17 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 10:59:17 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 10:59:17 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:59:17 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:59:17 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:59:17 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:59:17 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@491f9d86 -2016-05-03 10:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:59:17 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:59:17 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:59:17 DEBUG TemplateModel:83 - 2016-05-03 10:59:17, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:59:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:59:17 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 10:59:19 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:59:19 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:59:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:59:19 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:59:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:59:19 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:59:19 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:59:19 DEBUG TemplateModel:83 - 2016-05-03 10:59:19, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:59:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:59:19 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:59:19 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 114 ms -2016-05-03 10:59:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 10:59:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 10:59:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 10:59:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 10:59:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 10:59:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 10:59:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 10:59:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 10:59:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 10:59:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 10:59:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 10:59:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 10:59:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 10:59:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 10:59:19 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 10:59:19 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:59:19 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:59:20 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@74ad46ce -2016-05-03 10:59:20 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@58401db8 -2016-05-03 10:59:20 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@a54749c -2016-05-03 10:59:20 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@2ed143e3 -2016-05-03 10:59:20 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 117 ms -2016-05-03 10:59:20 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 10:59:20 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 10:59:20 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 10:59:20 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 10:59:20 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 10:59:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:59:20 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:59:20 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 10:59:20 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 22 ms -2016-05-03 10:59:20 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 10:59:20 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:59:20 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 10:59:20 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:59:20 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:59:20 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:59:20 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:59:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:59:20 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 10:59:20 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:59:20 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 10:59:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:59:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:59:20 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 10:59:20 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 10:59:20 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 10:59:20 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 10:59:20 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 10:59:20 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 10:59:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 10:59:20 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:59:20 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 10:59:20 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-03 10:59:20 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 10:59:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 10:59:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:59:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:59:20 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 10:59:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:59:20 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 10:59:21 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:59:21 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:59:21 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 10:59:21 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:59:21 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:59:21 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 10:59:21 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 10:59:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:59:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:59:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:59:21 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 10:59:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:59:21 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:59:21 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 10:59:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:59:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:59:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:59:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:59:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:59:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:59:21 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 10:59:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:59:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:59:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:59:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:59:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:59:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:59:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:59:21 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 10:59:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:59:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:59:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:59:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:59:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:59:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:59:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:59:21 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 10:59:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:59:22 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:59:22 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:59:22 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:59:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:59:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:59:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:59:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:59:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:59:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:59:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:59:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:59:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:59:22 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 10:59:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:59:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:59:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:59:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:59:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:59:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:59:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:59:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:59:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:59:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:59:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:59:23 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 10:59:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:59:23 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 10:59:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:59:23 INFO WorkspaceExplorerServiceImpl:188 - end time - 139 msc 0 sec -2016-05-03 10:59:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-03 10:59:23 DEBUG ASLSession:458 - Getting security token: null in thread 27 -2016-05-03 10:59:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-03 10:59:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:59:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:59:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:59:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:59:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:59:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:59:23 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 10:59:23 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 10:59:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:59:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:59:23 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 10:59:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:59:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:59:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:59:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:59:23 INFO WorkspaceExplorerServiceImpl:188 - end time - 118 msc 0 sec -2016-05-03 10:59:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-05-03 10:59:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:59:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:59:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 10:59:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 10:59:23 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 10:59:23 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 10:59:23 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 10:59:23 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 10:59:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:59:23 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 10:59:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:59:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:59:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:59:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 10:59:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:59:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:59:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:59:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:59:23 INFO WorkspaceExplorerServiceImpl:188 - end time - 335 msc 0 sec -2016-05-03 10:59:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:59:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:59:28 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:59:28 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 10:59:28 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:59:28 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:59:29 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 10:59:29 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 10:59:29 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 10:59:29 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 10:59:29 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 10:59:29 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 10:59:29 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:59:29 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 10:59:29 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-03 10:59:29 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-03 10:59:29 DEBUG WPS2SM:204 - Schema: null -2016-05-03 10:59:29 DEBUG WPS2SM:205 - Encoding: null -2016-05-03 10:59:29 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:59:29 DEBUG WPS2SM:227 - Machter find: true -2016-05-03 10:59:29 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 10:59:29 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-03 10:59:29 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-03 10:59:29 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-03 10:59:29 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-03 10:59:29 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 10:59:29 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 10:59:29 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:59:29 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-03 10:59:29 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 10:59:29 DEBUG WPS2SM:92 - WPS type: -2016-05-03 10:59:29 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 10:59:29 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 10:59:29 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:59:29 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 10:59:29 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 10:59:29 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 10:59:29 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 10:59:29 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 10:59:29 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 10:59:29 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 10:59:29 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 10:59:29 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:59:29 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 10:59:29 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 10:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-03 10:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 27 -2016-05-03 10:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-03 10:59:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:59:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:59:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:59:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:59:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:59:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:59:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:59:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:59:29 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:59:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:59:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:59:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:59:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:59:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-03 10:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 27 -2016-05-03 10:59:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:59:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:59:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:59:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:59:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:59:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:59:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:59:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:59:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:59:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:59:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:59:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:59:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:59:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:59:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:59:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:59:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:59:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:59:29 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:59:29 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:59:29 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:59:29 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:59:29 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:59:29 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:59:29 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:59:29 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:59:29 INFO WorkspaceExplorerServiceImpl:142 - end time - 184 msc 0 sec -2016-05-03 10:59:29 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:00:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:00:12 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:01:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:01:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:02:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:02:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:02:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:02:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:03:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:03:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:04:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 11:04:47 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 11:05:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:05:42 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:06:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 11:06:37 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 11:07:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-03 11:07:32 DEBUG ASLSession:458 - Getting security token: null in thread 27 -2016-05-03 11:08:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:08:27 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:09:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:09:22 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:10:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 11:10:17 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 11:11:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:11:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:12:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-03 11:12:07 DEBUG ASLSession:458 - Getting security token: null in thread 27 -2016-05-03 11:13:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:13:02 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:13:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:13:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 11:14:52 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 11:15:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:15:47 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:16:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:16:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:17:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:17:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:18:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-03 11:18:32 DEBUG ASLSession:458 - Getting security token: null in thread 27 -2016-05-03 11:19:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:19:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:20:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 11:20:22 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 11:21:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:21:17 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 11:21:19 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 11:21:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:21:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:21:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:21:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:21:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:21:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:21:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:21:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:21:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:21:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:21:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:21:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:21:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:21:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:21:19 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:21:19 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:21:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:21:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:21:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:21:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:21:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:21:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:21:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:21:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:21:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:21:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:21:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:21:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:21:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:21:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:21:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 11:21:19 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 11:21:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:21:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:21:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:21:20 INFO WorkspaceExplorerServiceImpl:142 - end time - 162 msc 0 sec -2016-05-03 11:21:20 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:21:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:21:20 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:21:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:21:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:21:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:21:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:21:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:21:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:21:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:21:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:21:20 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:21:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:21:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:21:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:21:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:21:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:21:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:21:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:21:20 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:21:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:21:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:21:20 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:21:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:21:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:21:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:21:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:21:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:21:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:21:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:21:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:21:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:21:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:21:20 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:21:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:21:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:21:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:21:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:21:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:21:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:21:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:21:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:21:20 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:21:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:20 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:21:20 INFO WorkspaceExplorerServiceImpl:142 - end time - 251 msc 0 sec -2016-05-03 11:21:20 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:21:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-03 11:21:21 DEBUG ASLSession:458 - Getting security token: null in thread 27 -2016-05-03 11:21:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-03 11:21:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:21:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:21:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:21:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:21:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:21:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:21:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:21:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:21:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:21:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:21:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:21:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:21:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:21:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:21:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:21:21 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:21:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:21:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-03 11:21:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:21 DEBUG ASLSession:458 - Getting security token: null in thread 27 -2016-05-03 11:21:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:21:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:21:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:21:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:21:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:21:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:21:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:21:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:21:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:21:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:21:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:21:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:21:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:21:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:21:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:21:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:21:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:21:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:21:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:21:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:21:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:21:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:21:21 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:21:21 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:21:21 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:21:21 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:21:21 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:21:21 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:21:21 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:21:21 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:21:21 INFO WorkspaceExplorerServiceImpl:142 - end time - 161 msc 0 sec -2016-05-03 11:21:21 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:22:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:22:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:23:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:23:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:24:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:24:02 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:24:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:24:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:25:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:25:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:26:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-03 11:26:47 DEBUG ASLSession:458 - Getting security token: null in thread 27 -2016-05-03 11:27:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:27:42 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:28:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:28:37 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:29:32 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 11:29:32 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 11:29:32 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 11:29:32 WARN SessionCheckerServiceImpl:80 - Scope is null at Tue May 03 11:29:32 CEST 2016 -2016-05-03 11:29:32 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 11:38:42 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 11:38:42 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 11:38:42 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 11:38:42 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 11:38:42 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 11:38:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:38:42 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 11:38:42 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@2e5ca4de -2016-05-03 11:38:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:38:42 INFO ASLSession:352 - Logging the entrance -2016-05-03 11:38:42 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 11:38:42 DEBUG TemplateModel:83 - 2016-05-03 11:38:42, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 11:38:42 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:38:42 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 11:38:44 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 11:38:44 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 11:38:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:38:44 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 11:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:38:44 INFO ASLSession:352 - Logging the entrance -2016-05-03 11:38:44 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 11:38:44 DEBUG TemplateModel:83 - 2016-05-03 11:38:44, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 11:38:44 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:38:44 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 11:38:44 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 123 ms -2016-05-03 11:38:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 11:38:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 11:38:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 11:38:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 11:38:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 11:38:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 11:38:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 11:38:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 11:38:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 11:38:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 11:38:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 11:38:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 11:38:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 11:38:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 11:38:44 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 11:38:44 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:38:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 11:38:44 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@51598f1d -2016-05-03 11:38:44 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@53ca0041 -2016-05-03 11:38:44 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@6831add -2016-05-03 11:38:44 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@7884c3a4 -2016-05-03 11:38:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 101 ms -2016-05-03 11:38:45 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 11:38:45 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 11:38:45 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 11:38:45 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 11:38:45 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 11:38:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:38:45 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:38:45 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 11:38:45 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 24 ms -2016-05-03 11:38:45 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 11:38:45 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:38:45 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 11:38:45 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 11:38:45 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 11:38:45 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 11:38:45 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 11:38:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:38:45 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:38:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:38:45 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 11:38:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:38:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:38:45 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 11:38:45 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 11:38:45 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 11:38:45 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 11:38:45 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 11:38:45 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 11:38:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 11:38:45 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:38:45 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 11:38:45 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-03 11:38:45 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 11:38:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:38:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:38:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:38:45 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 11:38:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:38:45 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 11:38:45 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:38:45 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 11:38:46 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 11:38:46 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 11:38:46 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 11:38:46 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 11:38:46 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 11:38:46 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 11:38:46 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 11:38:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:38:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:38:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:38:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:38:46 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 11:38:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 11:38:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:38:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:38:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:38:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:38:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:38:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:38:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:38:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:38:46 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:38:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 11:38:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:38:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:38:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:38:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:38:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:38:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:38:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:38:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:38:46 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:38:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 11:38:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:38:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:38:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:38:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:38:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:38:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:38:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:38:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:38:46 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:38:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 11:38:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:38:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:38:47 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 11:38:47 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 11:38:47 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 11:38:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:38:47 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:38:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:38:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:38:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:38:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:38:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:38:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:38:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:38:47 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 11:38:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:38:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:38:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:38:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:38:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:38:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:38:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:38:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:38:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:38:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:38:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:38:48 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 11:38:48 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 11:38:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:38:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:38:48 INFO WorkspaceExplorerServiceImpl:188 - end time - 118 msc 0 sec -2016-05-03 11:38:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:38:48 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:38:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:38:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:38:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:38:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:38:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:38:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:38:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:38:48 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 11:38:48 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 11:38:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:38:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:38:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 11:38:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:38:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:38:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 11:38:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 11:38:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 11:38:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:38:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 11:38:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 11:38:48 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 11:38:48 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 11:38:48 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 11:38:48 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 11:38:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 11:38:48 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 11:38:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 11:38:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:38:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 11:38:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-03 11:38:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 11:38:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 11:38:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 11:38:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:38:48 INFO WorkspaceExplorerServiceImpl:188 - end time - 318 msc 0 sec -2016-05-03 11:38:49 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 11:38:49 INFO WorkspaceExplorerServiceImpl:188 - end time - 1117 msc 1 sec -2016-05-03 11:38:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:38:51 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:38:51 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:38:51 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 11:38:51 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:38:51 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 11:38:52 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 11:38:52 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 11:38:52 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 11:38:52 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 11:38:52 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 11:38:52 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 11:38:52 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:38:52 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 11:38:52 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 11:38:52 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 11:38:52 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 11:38:52 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 11:38:52 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 11:38:52 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 11:38:52 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 11:38:52 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 11:38:52 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 11:38:52 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 11:38:52 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 11:38:52 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 11:38:52 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 11:38:52 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 11:38:52 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 11:38:52 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 11:38:52 DEBUG WPS2SM:92 - WPS type: -2016-05-03 11:38:52 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 11:38:52 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 11:38:52 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 11:38:52 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 11:38:52 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 11:38:52 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 11:38:52 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 11:38:52 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 11:38:52 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 11:38:52 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 11:38:52 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 11:38:52 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 11:38:52 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 11:38:52 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 11:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:38:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:38:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:38:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:38:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:38:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:38:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:38:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:38:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:38:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:38:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:38:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:38:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:38:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:38:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:38:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:38:52 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:38:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:38:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:38:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:38:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:38:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:38:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:38:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:38:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:38:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:38:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:38:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:38:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:38:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:38:52 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:38:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:38:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:38:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:38:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:38:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:38:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:38:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:38:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:38:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:38:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:38:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:38:52 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:38:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:38:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:38:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:38:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:38:52 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:38:52 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:38:52 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:38:52 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:38:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:38:52 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:38:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:38:52 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:38:52 INFO WorkspaceExplorerServiceImpl:142 - end time - 200 msc 0 sec -2016-05-03 11:38:52 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:39:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:39:37 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:40:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:40:32 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:41:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:41:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:42:26 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 11:42:26 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 11:42:26 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 11:42:26 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 11:42:26 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 11:42:26 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:42:26 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 11:42:26 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@2d3acd4d -2016-05-03 11:42:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:42:26 INFO ASLSession:352 - Logging the entrance -2016-05-03 11:42:26 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 11:42:26 DEBUG TemplateModel:83 - 2016-05-03 11:42:26, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 11:42:26 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:42:26 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 11:42:28 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 11:42:28 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 11:42:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:42:28 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 11:42:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:42:28 INFO ASLSession:352 - Logging the entrance -2016-05-03 11:42:28 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 11:42:28 DEBUG TemplateModel:83 - 2016-05-03 11:42:28, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 11:42:28 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:42:28 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 11:42:28 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 143 ms -2016-05-03 11:42:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 11:42:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 11:42:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 11:42:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 11:42:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 11:42:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 11:42:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 11:42:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 11:42:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 11:42:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 11:42:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 11:42:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 11:42:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 11:42:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 11:42:28 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 11:42:28 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:42:28 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 11:42:28 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@2a37f818 -2016-05-03 11:42:28 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@323b34b0 -2016-05-03 11:42:28 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@48550177 -2016-05-03 11:42:28 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@12ed2889 -2016-05-03 11:42:28 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 108 ms -2016-05-03 11:42:28 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 11:42:28 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 11:42:28 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 11:42:28 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 11:42:28 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 11:42:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:42:28 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:42:28 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 11:42:28 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 16 ms -2016-05-03 11:42:28 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 11:42:28 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:42:28 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 11:42:28 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 11:42:29 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 11:42:29 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 11:42:29 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 11:42:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:42:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:42:29 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:42:29 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 11:42:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:42:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:42:29 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 11:42:29 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 11:42:29 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 11:42:29 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 11:42:29 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 11:42:29 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 11:42:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 11:42:29 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:42:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 11:42:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-03 11:42:29 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 11:42:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:42:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:42:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:42:29 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 11:42:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:42:29 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 11:42:29 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 11:42:29 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:42:29 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 11:42:29 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 11:42:29 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 11:42:30 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 11:42:30 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 11:42:30 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 11:42:30 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 11:42:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:42:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:42:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:42:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:42:30 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 11:42:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 11:42:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:42:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:42:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:42:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:42:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:42:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:42:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:42:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:42:30 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:42:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 11:42:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:42:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:42:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:42:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:42:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:42:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:42:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:42:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:42:30 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:42:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 11:42:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:42:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:42:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:42:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:42:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:42:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:42:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:42:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:42:30 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:42:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 11:42:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:42:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:42:31 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 11:42:31 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 11:42:31 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 11:42:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:42:31 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:42:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:42:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:42:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:42:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:42:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:42:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:42:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:42:31 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 11:42:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:42:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:42:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:42:31 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:42:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:42:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:42:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:42:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:42:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:42:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:42:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:42:31 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 11:42:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:42:31 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 11:42:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:42:31 INFO WorkspaceExplorerServiceImpl:188 - end time - 122 msc 0 sec -2016-05-03 11:42:31 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 11:42:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:42:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:42:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:42:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:42:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:42:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:42:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:42:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:42:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:42:31 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 11:42:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:42:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:42:31 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 11:42:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 11:42:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:42:32 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:42:32 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 11:42:32 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-05-03 11:42:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 11:42:32 INFO WorkspaceExplorerServiceImpl:188 - end time - 122 msc 0 sec -2016-05-03 11:42:32 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:42:32 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 11:42:32 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 11:42:32 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 11:42:32 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 11:42:32 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 11:42:32 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 11:42:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 11:42:32 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 11:42:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 11:42:32 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:42:32 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 11:42:32 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 22 ms -2016-05-03 11:42:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 11:42:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 11:42:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 11:42:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:42:32 INFO WorkspaceExplorerServiceImpl:188 - end time - 327 msc 0 sec -2016-05-03 11:42:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:42:35 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:42:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:42:35 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 11:42:35 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:42:35 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 11:42:36 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 11:42:36 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 11:42:36 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 11:42:36 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 11:42:36 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 11:42:36 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 11:42:36 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:42:36 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 11:42:36 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 11:42:36 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 11:42:36 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 11:42:36 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 11:42:36 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 11:42:36 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 11:42:36 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 11:42:36 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 11:42:36 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 11:42:36 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 11:42:36 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 11:42:36 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 11:42:36 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 11:42:36 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 11:42:36 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 11:42:36 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 11:42:36 DEBUG WPS2SM:92 - WPS type: -2016-05-03 11:42:36 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 11:42:36 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 11:42:36 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 11:42:36 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 11:42:36 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 11:42:36 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 11:42:36 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 11:42:36 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 11:42:36 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 11:42:36 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 11:42:36 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 11:42:36 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 11:42:36 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 11:42:36 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 11:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:42:36 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:42:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:42:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:42:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:42:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:42:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:42:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:42:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:42:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:42:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:42:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:42:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:42:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:42:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:42:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:42:36 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:42:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:42:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:42:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:42:36 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:42:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:42:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:42:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:42:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:42:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:42:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:42:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:42:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:42:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:42:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 11:42:36 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 11:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 11:42:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:42:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:42:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:42:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:42:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:42:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:42:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:42:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:42:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:42:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 11:42:36 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 11:42:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:42:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:42:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:42:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:42:36 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:42:36 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:42:36 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:42:36 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:42:36 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:42:36 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:42:36 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:42:36 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:42:36 INFO WorkspaceExplorerServiceImpl:142 - end time - 203 msc 0 sec -2016-05-03 11:42:36 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:43:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:43:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:45:11 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 11:45:11 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 11:45:11 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 11:45:11 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 11:45:11 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 11:45:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:45:11 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 11:45:11 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@124473c4 -2016-05-03 11:45:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:45:11 INFO ASLSession:352 - Logging the entrance -2016-05-03 11:45:11 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 11:45:11 DEBUG TemplateModel:83 - 2016-05-03 11:45:11, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 11:45:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:45:11 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 11:45:13 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 11:45:13 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 11:45:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:45:13 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 11:45:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:45:13 INFO ASLSession:352 - Logging the entrance -2016-05-03 11:45:13 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 11:45:13 DEBUG TemplateModel:83 - 2016-05-03 11:45:13, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 11:45:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:45:13 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 11:45:13 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 130 ms -2016-05-03 11:45:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 11:45:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 11:45:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 11:45:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 11:45:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 11:45:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 11:45:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 11:45:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 11:45:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 11:45:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 11:45:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 11:45:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 11:45:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 11:45:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 11:45:13 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 11:45:13 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:45:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 11:45:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@64358f1d -2016-05-03 11:45:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@196b2c4 -2016-05-03 11:45:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@44ff1df8 -2016-05-03 11:45:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@78917aa4 -2016-05-03 11:45:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 101 ms -2016-05-03 11:45:13 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 11:45:13 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 11:45:13 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 11:45:13 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 11:45:13 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 11:45:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:45:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:45:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 11:45:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 24 ms -2016-05-03 11:45:13 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 11:45:13 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:45:13 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 11:45:13 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 11:45:13 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 11:45:13 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 11:45:13 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 11:45:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:45:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:45:14 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:45:14 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 11:45:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:45:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:45:14 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 11:45:14 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 11:45:14 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 11:45:14 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 11:45:14 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 11:45:14 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 11:45:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 11:45:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:45:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 11:45:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 23 ms -2016-05-03 11:45:14 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 11:45:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:45:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:45:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:45:14 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 11:45:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:45:14 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 11:45:14 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 11:45:14 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 11:45:14 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 11:45:14 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 11:45:14 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 11:45:14 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 11:45:14 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 11:45:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:45:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:45:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:45:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:45:14 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:45:14 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 11:45:14 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 11:45:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 11:45:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:45:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:45:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:45:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:45:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:45:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:45:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:45:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:45:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:45:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 11:45:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:45:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:45:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:45:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:45:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:45:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:45:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:45:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:45:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:45:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 11:45:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:45:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:45:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:45:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:45:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:45:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:45:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:45:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:45:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:45:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 11:45:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:45:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:45:16 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 11:45:16 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 11:45:16 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 11:45:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:45:16 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:45:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:45:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:45:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:45:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:45:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:45:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:45:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:45:16 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 11:45:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:45:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:45:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:45:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:45:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:45:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:45:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:45:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:45:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:45:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:45:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:45:16 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 11:45:16 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 11:45:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:45:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 138 msc 0 sec -2016-05-03 11:45:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:45:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:45:16 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:45:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:45:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:45:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:45:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:45:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:45:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:45:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:45:16 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 11:45:16 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 11:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:45:17 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 11:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 11:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:45:17 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:45:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 11:45:17 INFO WorkspaceExplorerServiceImpl:188 - end time - 134 msc 0 sec -2016-05-03 11:45:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-03 11:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 11:45:17 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:45:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 11:45:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 22 ms -2016-05-03 11:45:17 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 11:45:17 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 11:45:17 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 11:45:17 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 11:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 11:45:17 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 11:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 11:45:17 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:45:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 11:45:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-03 11:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 11:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 11:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 11:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:45:17 INFO WorkspaceExplorerServiceImpl:188 - end time - 369 msc 0 sec -2016-05-03 11:45:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:45:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:45:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:45:23 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 11:45:23 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:45:23 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 11:45:23 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 11:45:23 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 11:45:23 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 11:45:23 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 11:45:23 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 11:45:23 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 11:45:23 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:45:23 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 11:45:23 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 11:45:23 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 11:45:23 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 11:45:23 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 11:45:23 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 11:45:23 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 11:45:23 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 11:45:23 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 11:45:23 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 11:45:23 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 11:45:23 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 11:45:23 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 11:45:23 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 11:45:23 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 11:45:23 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 11:45:23 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 11:45:23 DEBUG WPS2SM:92 - WPS type: -2016-05-03 11:45:23 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 11:45:23 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 11:45:23 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 11:45:23 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 11:45:23 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 11:45:23 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 11:45:23 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 11:45:23 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 11:45:23 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 11:45:23 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 11:45:23 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 11:45:23 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 11:45:23 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 11:45:23 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 11:45:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:45:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:45:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:45:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:45:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:45:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:45:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:45:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:45:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:45:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:45:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:45:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:45:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:45:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:45:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:45:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:45:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:45:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:45:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:45:23 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:45:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:45:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:45:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:45:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:45:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:45:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:45:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:45:23 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:45:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:45:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:45:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:45:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:45:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:45:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:45:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:45:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:45:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:45:23 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:45:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:45:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:45:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:45:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:45:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:45:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:45:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:45:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:45:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:45:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:45:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:45:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:45:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:45:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:45:24 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:45:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:45:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:45:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:45:24 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:45:24 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:45:24 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:45:24 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:45:24 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:45:24 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:45:24 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:45:24 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:45:24 INFO WorkspaceExplorerServiceImpl:142 - end time - 205 msc 0 sec -2016-05-03 11:45:24 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:46:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:46:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:47:02 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 11:47:02 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 11:47:02 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 11:47:02 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 11:47:02 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 11:47:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:47:02 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 11:47:02 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@6090bb0f -2016-05-03 11:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:47:02 INFO ASLSession:352 - Logging the entrance -2016-05-03 11:47:02 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 11:47:02 DEBUG TemplateModel:83 - 2016-05-03 11:47:02, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 11:47:02 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:47:02 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 11:47:03 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 11:47:03 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 11:47:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:47:03 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 11:47:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:47:03 INFO ASLSession:352 - Logging the entrance -2016-05-03 11:47:03 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 11:47:03 DEBUG TemplateModel:83 - 2016-05-03 11:47:03, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 11:47:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:47:03 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 11:47:04 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 125 ms -2016-05-03 11:47:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 11:47:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 11:47:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 11:47:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 11:47:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 11:47:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 11:47:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 11:47:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 11:47:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 11:47:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 11:47:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 11:47:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 11:47:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 11:47:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 11:47:04 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 11:47:04 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:47:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 11:47:04 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@228b0809 -2016-05-03 11:47:04 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@4ff1379 -2016-05-03 11:47:04 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@3a364a7b -2016-05-03 11:47:04 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@754c0d46 -2016-05-03 11:47:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 90 ms -2016-05-03 11:47:04 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 11:47:04 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 11:47:04 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 11:47:04 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 11:47:04 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 11:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:47:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:47:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 11:47:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 26 ms -2016-05-03 11:47:04 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 11:47:04 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:47:04 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 11:47:04 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 11:47:04 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 11:47:04 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 11:47:04 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 11:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:47:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:47:04 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 11:47:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:47:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:47:04 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 11:47:04 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 11:47:04 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 11:47:04 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 11:47:04 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 11:47:04 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 11:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 11:47:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:47:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 11:47:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 24 ms -2016-05-03 11:47:05 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 11:47:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:47:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:47:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:47:05 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 11:47:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:47:05 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 11:47:05 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 11:47:05 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:47:05 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 11:47:05 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 11:47:05 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 11:47:05 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 11:47:05 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 11:47:05 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 11:47:05 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 11:47:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:47:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:47:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:47:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:47:05 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 11:47:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 11:47:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:47:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:47:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:47:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:47:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:47:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:47:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:47:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:47:05 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:47:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 11:47:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:47:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:47:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:47:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:47:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:47:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:47:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:47:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:47:05 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:47:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 11:47:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:47:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:47:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:47:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:47:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:47:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:47:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:47:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:47:06 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:47:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 11:47:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:47:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:47:07 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 11:47:07 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 11:47:07 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 11:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:47:07 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:47:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:47:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:47:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:47:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:47:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:47:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:47:07 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 11:47:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:47:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:47:07 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:47:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:47:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:47:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:47:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:47:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:47:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:47:07 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 11:47:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:47:07 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 11:47:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:47:07 INFO WorkspaceExplorerServiceImpl:188 - end time - 122 msc 0 sec -2016-05-03 11:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:47:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:47:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:47:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:47:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:47:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:47:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:47:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:47:07 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 11:47:07 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 11:47:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:47:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:47:07 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 11:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 11:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:47:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:47:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 11:47:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-05-03 11:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 11:47:07 INFO WorkspaceExplorerServiceImpl:188 - end time - 155 msc 0 sec -2016-05-03 11:47:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:47:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 11:47:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 11:47:07 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 11:47:07 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 11:47:07 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 11:47:07 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 11:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 11:47:07 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 11:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 11:47:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:47:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 11:47:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-03 11:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 11:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 11:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 11:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:47:07 INFO WorkspaceExplorerServiceImpl:188 - end time - 341 msc 0 sec -2016-05-03 11:47:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:47:10 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:47:10 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:47:10 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 11:47:10 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:47:10 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 11:47:11 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 11:47:11 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 11:47:11 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 11:47:11 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 11:47:11 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 11:47:11 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 11:47:11 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:47:11 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 11:47:11 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 11:47:11 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 11:47:11 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 11:47:11 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 11:47:11 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 11:47:11 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 11:47:11 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 11:47:11 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 11:47:11 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 11:47:11 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 11:47:11 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 11:47:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 11:47:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 11:47:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 11:47:11 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 11:47:11 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 11:47:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 11:47:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 11:47:11 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 11:47:11 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 11:47:11 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 11:47:11 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 11:47:11 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 11:47:11 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 11:47:11 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 11:47:11 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 11:47:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 11:47:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 11:47:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 11:47:11 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 11:47:11 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 11:47:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:47:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:47:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:47:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:47:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:47:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:47:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:47:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:47:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:47:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:47:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:47:11 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:47:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:47:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:47:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:47:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:47:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:47:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:47:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:47:11 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:47:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:47:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:47:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:47:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:47:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:47:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:47:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:47:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:47:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:47:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:47:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:47:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:47:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:47:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:47:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:47:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:47:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:47:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:47:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:47:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:47:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:47:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:47:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:47:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:47:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:47:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:47:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:47:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:47:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:47:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:47:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:47:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:47:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:47:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:47:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:47:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:47:11 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:47:11 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:47:11 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:47:11 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:47:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:47:11 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:47:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:47:11 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:47:11 INFO WorkspaceExplorerServiceImpl:142 - end time - 186 msc 0 sec -2016-05-03 11:47:11 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:47:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:47:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:48:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:48:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:03 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:48:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:03 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:48:03 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:48:03 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:48:03 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:48:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:48:03 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:48:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:48:03 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:48:03 INFO WorkspaceExplorerServiceImpl:142 - end time - 183 msc 0 sec -2016-05-03 11:48:03 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:48:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:48:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:48:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:48:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:48:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:48:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:48:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:48:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:48:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:48:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:48:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:48:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:48:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:48:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:48:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:48:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:48:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:48:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:48:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:48:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 173 msc 0 sec -2016-05-03 11:48:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:48:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:48:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:48:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:48:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:48:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:48:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:48:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:48:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:48:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:48:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:48:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:48:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:48:05 INFO WorkspaceExplorerServiceImpl:142 - end time - 163 msc 0 sec -2016-05-03 11:48:05 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:48:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:48:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:05 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:48:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:48:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:48:05 INFO WorkspaceExplorerServiceImpl:142 - end time - 150 msc 0 sec -2016-05-03 11:48:05 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:48:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:48:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:05 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:48:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:48:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:48:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:05 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:48:05 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:48:05 INFO WorkspaceExplorerServiceImpl:142 - end time - 157 msc 0 sec -2016-05-03 11:48:05 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:48:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:48:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:48:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:48:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:48:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:48:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:48:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:06 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:48:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:48:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:48:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:48:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:48:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:48:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:48:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:48:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:48:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:48:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:48:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:48:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:48:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:48:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:48:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:48:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:48:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:48:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:48:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:48:06 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:48:06 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:48:06 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:48:06 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:48:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:48:06 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:48:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:48:06 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:48:06 INFO WorkspaceExplorerServiceImpl:142 - end time - 163 msc 0 sec -2016-05-03 11:48:06 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:48:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:48:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:50:02 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 11:50:02 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 11:50:02 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 11:50:02 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 11:50:02 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 11:50:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:50:02 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 11:50:02 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@19f176f4 -2016-05-03 11:50:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:02 INFO ASLSession:352 - Logging the entrance -2016-05-03 11:50:02 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 11:50:02 DEBUG TemplateModel:83 - 2016-05-03 11:50:02, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 11:50:02 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:50:02 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 11:50:04 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 11:50:04 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 11:50:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:50:04 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 11:50:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:04 INFO ASLSession:352 - Logging the entrance -2016-05-03 11:50:04 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 11:50:04 DEBUG TemplateModel:83 - 2016-05-03 11:50:04, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 11:50:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:50:04 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 11:50:04 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 119 ms -2016-05-03 11:50:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 11:50:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 11:50:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 11:50:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 11:50:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 11:50:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 11:50:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 11:50:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 11:50:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 11:50:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 11:50:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 11:50:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 11:50:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 11:50:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 11:50:04 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 11:50:04 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:50:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 11:50:04 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@721d1834 -2016-05-03 11:50:04 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@5f1a5d41 -2016-05-03 11:50:04 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@769d8db5 -2016-05-03 11:50:04 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@7d6ceb09 -2016-05-03 11:50:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 111 ms -2016-05-03 11:50:04 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 11:50:04 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 11:50:04 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 11:50:04 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 11:50:04 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 11:50:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:50:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 11:50:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 24 ms -2016-05-03 11:50:04 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 11:50:04 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:50:04 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 11:50:04 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 11:50:05 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 11:50:05 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 11:50:05 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 11:50:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:50:05 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:50:05 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 11:50:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:05 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 11:50:05 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 11:50:05 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 11:50:05 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 11:50:05 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 11:50:05 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 11:50:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 11:50:05 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:50:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 11:50:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 19 ms -2016-05-03 11:50:05 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 11:50:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:05 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 11:50:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:05 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 11:50:05 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:50:05 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 11:50:05 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 11:50:05 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 11:50:05 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 11:50:05 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 11:50:05 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 11:50:05 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 11:50:05 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 11:50:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:05 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 11:50:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 11:50:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:06 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:50:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 11:50:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:06 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:50:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 11:50:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:06 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:50:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 11:50:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:07 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 11:50:07 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 11:50:07 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 11:50:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:07 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:50:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:07 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 11:50:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:07 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:50:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:07 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 11:50:07 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 11:50:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:07 INFO WorkspaceExplorerServiceImpl:188 - end time - 125 msc 0 sec -2016-05-03 11:50:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:50:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:07 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 11:50:07 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 11:50:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:07 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 11:50:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 11:50:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:50:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 11:50:07 INFO WorkspaceExplorerServiceImpl:188 - end time - 145 msc 0 sec -2016-05-03 11:50:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-03 11:50:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 11:50:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:50:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 11:50:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 11:50:07 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 11:50:07 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 11:50:07 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 11:50:07 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 11:50:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 11:50:07 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 11:50:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 11:50:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:50:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 11:50:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 11:50:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 11:50:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 11:50:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 11:50:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:07 INFO WorkspaceExplorerServiceImpl:188 - end time - 387 msc 0 sec -2016-05-03 11:50:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:11 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:50:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:50:11 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 11:50:11 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:50:11 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 11:50:11 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 11:50:11 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 11:50:11 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 11:50:11 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 11:50:11 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 11:50:11 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 11:50:11 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:50:11 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 11:50:11 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 11:50:11 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 11:50:11 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 11:50:11 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 11:50:11 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 11:50:11 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 11:50:11 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 11:50:11 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 11:50:11 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 11:50:11 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 11:50:11 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 11:50:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 11:50:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 11:50:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 11:50:11 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 11:50:11 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 11:50:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 11:50:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 11:50:11 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 11:50:11 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 11:50:11 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 11:50:11 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 11:50:11 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 11:50:11 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 11:50:11 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 11:50:11 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 11:50:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 11:50:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 11:50:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 11:50:11 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 11:50:11 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 11:50:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:50:11 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:50:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:50:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:11 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:50:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:11 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:50:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:50:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:50:11 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:50:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:50:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:50:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:50:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:12 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:50:12 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:50:12 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:50:12 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:50:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:12 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:50:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:12 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:50:12 INFO WorkspaceExplorerServiceImpl:142 - end time - 199 msc 0 sec -2016-05-03 11:50:12 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:50:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:50:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:50:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:53 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:50:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:54 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:54 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:50:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:50:54 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:50:54 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:50:54 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:50:54 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:54 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:50:54 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:54 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:50:54 INFO WorkspaceExplorerServiceImpl:142 - end time - 164 msc 0 sec -2016-05-03 11:50:54 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:54 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:54 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:50:54 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:50:54 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:50:54 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:50:54 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:54 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:50:54 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:54 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:50:54 INFO WorkspaceExplorerServiceImpl:142 - end time - 173 msc 0 sec -2016-05-03 11:50:54 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:54 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:50:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:50:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:54 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:50:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:54 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:55 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:55 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:55 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:50:55 INFO WorkspaceExplorerServiceImpl:142 - end time - 155 msc 0 sec -2016-05-03 11:50:55 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:55 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:50:55 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:50:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:50:55 INFO WorkspaceExplorerServiceImpl:142 - end time - 176 msc 0 sec -2016-05-03 11:50:55 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:55 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:55 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:55 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:50:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:50:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:55 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:55 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:50:55 INFO WorkspaceExplorerServiceImpl:142 - end time - 166 msc 0 sec -2016-05-03 11:50:55 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:50:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:50:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:50:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:58 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:50:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:50:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:50:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:58 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:50:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:50:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:58 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:50:58 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:50:58 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:50:58 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:58 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:58 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:50:58 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:50:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:58 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:50:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:50:58 INFO WorkspaceExplorerServiceImpl:142 - end time - 162 msc 0 sec -2016-05-03 11:50:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:58 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:50:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:50:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:50:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:50:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:50:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:50:59 INFO WorkspaceExplorerServiceImpl:142 - end time - 162 msc 0 sec -2016-05-03 11:50:59 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:50:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:50:59 INFO WorkspaceExplorerServiceImpl:142 - end time - 157 msc 0 sec -2016-05-03 11:50:59 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:50:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:50:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:50:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:50:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:50:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:50:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:50:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:50:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:50:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:50:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:50:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:50:59 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:50:59 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:50:59 INFO WorkspaceExplorerServiceImpl:142 - end time - 149 msc 0 sec -2016-05-03 11:50:59 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:02 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:02 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:51:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:51:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:02 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:02 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:51:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:02 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:51:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:02 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:02 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:02 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:51:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:51:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:02 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:51:02 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:51:02 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:51:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:51:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:02 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:51:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:02 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:51:02 INFO WorkspaceExplorerServiceImpl:142 - end time - 172 msc 0 sec -2016-05-03 11:51:02 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:02 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:02 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:51:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:02 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:51:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:03 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:51:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:51:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:51:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:51:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:51:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:03 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:51:03 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:51:03 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:51:03 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:51:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:51:03 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:51:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:03 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:51:03 INFO WorkspaceExplorerServiceImpl:142 - end time - 238 msc 0 sec -2016-05-03 11:51:03 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:51:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:51:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:03 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:51:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:51:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:51:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:03 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:51:03 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:51:03 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:51:03 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:51:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:03 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:51:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:03 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:51:03 INFO WorkspaceExplorerServiceImpl:142 - end time - 147 msc 0 sec -2016-05-03 11:51:03 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:51:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:51:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:51:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:51:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:51:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:51:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:51:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:51:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:51:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:51:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 151 msc 0 sec -2016-05-03 11:51:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:51:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:51:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:51:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:51:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:51:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:51:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:51:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:51:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:51:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:51:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:51:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 142 msc 0 sec -2016-05-03 11:51:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:05 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:05 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:51:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:51:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:51:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:05 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:05 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:05 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:51:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:05 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:51:05 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:51:05 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:51:05 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:51:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:05 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:51:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:05 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:51:05 INFO WorkspaceExplorerServiceImpl:142 - end time - 139 msc 0 sec -2016-05-03 11:51:05 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:51:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:51:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:51:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:06 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:51:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:51:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:51:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:06 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:51:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:06 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:51:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:06 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:51:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:06 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:51:06 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:51:06 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:51:06 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:51:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:06 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:51:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:06 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:51:06 INFO WorkspaceExplorerServiceImpl:142 - end time - 138 msc 0 sec -2016-05-03 11:51:06 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:51:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:34 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:51:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:34 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:51:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:34 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:51:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:51:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:34 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:51:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:51:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:51:34 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:51:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:51:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:51:35 INFO WorkspaceExplorerServiceImpl:142 - end time - 141 msc 0 sec -2016-05-03 11:51:35 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:35 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:51:35 INFO WorkspaceExplorerServiceImpl:142 - end time - 135 msc 0 sec -2016-05-03 11:51:35 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:35 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:51:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:51:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:51:35 INFO WorkspaceExplorerServiceImpl:142 - end time - 139 msc 0 sec -2016-05-03 11:51:35 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:51:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:35 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:51:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:51:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:51:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:51:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:51:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:51:35 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:51:35 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:51:35 INFO WorkspaceExplorerServiceImpl:142 - end time - 128 msc 0 sec -2016-05-03 11:51:35 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:51:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:51:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:52:46 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 11:52:46 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 11:52:46 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 11:52:46 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 11:52:46 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 11:52:46 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:52:46 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 11:52:46 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@a84bf1b -2016-05-03 11:52:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:52:46 INFO ASLSession:352 - Logging the entrance -2016-05-03 11:52:46 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 11:52:46 DEBUG TemplateModel:83 - 2016-05-03 11:52:46, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 11:52:46 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:52:46 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 11:52:47 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 11:52:47 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 11:52:47 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:52:47 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 11:52:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:52:47 INFO ASLSession:352 - Logging the entrance -2016-05-03 11:52:47 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 11:52:47 DEBUG TemplateModel:83 - 2016-05-03 11:52:47, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 11:52:47 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:52:47 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 11:52:48 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 118 ms -2016-05-03 11:52:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 11:52:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 11:52:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 11:52:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 11:52:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 11:52:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 11:52:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 11:52:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 11:52:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 11:52:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 11:52:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 11:52:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 11:52:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 11:52:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 11:52:48 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 11:52:48 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:52:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 11:52:48 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@501a5f7 -2016-05-03 11:52:48 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3000b9de -2016-05-03 11:52:48 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@25595c1 -2016-05-03 11:52:48 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@32e79e02 -2016-05-03 11:52:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 105 ms -2016-05-03 11:52:48 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 11:52:48 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 11:52:48 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 11:52:48 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 11:52:48 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 11:52:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:52:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:52:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 11:52:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-03 11:52:48 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 11:52:48 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:52:48 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 11:52:48 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 11:52:48 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 11:52:48 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 11:52:48 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 11:52:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:52:48 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:52:48 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:52:48 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 11:52:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:52:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:52:48 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 11:52:48 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 11:52:48 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 11:52:48 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 11:52:48 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 11:52:48 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 11:52:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 11:52:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:52:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 11:52:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-03 11:52:49 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 11:52:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:52:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:52:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:52:49 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 11:52:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:52:49 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 11:52:49 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 11:52:49 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 11:52:49 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 11:52:49 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 11:52:49 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 11:52:49 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 11:52:49 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 11:52:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:52:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:52:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:52:49 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:52:49 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 11:52:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:52:49 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 11:52:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 11:52:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:52:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:52:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:52:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:52:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:52:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:52:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:52:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:52:49 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:52:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 11:52:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:52:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:52:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:52:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:52:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:52:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:52:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:52:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:52:49 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:52:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 11:52:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:52:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:52:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:52:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:52:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:52:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:52:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:52:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:52:49 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 11:52:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 11:52:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:52:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:52:50 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 11:52:50 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 11:52:50 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 11:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:52:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:52:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:52:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:52:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:52:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:52:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:52:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:52:50 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 11:52:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:52:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:52:50 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:52:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:52:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:52:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:52:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:52:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:52:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:52:50 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 11:52:50 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 11:52:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:52:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 107 msc 0 sec -2016-05-03 11:52:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:52:50 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 11:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:52:50 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:52:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:52:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:52:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:52:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:52:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:52:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:52:50 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 11:52:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 11:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:52:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:52:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:52:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 11:52:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-05-03 11:52:50 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 11:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 11:52:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:52:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 11:52:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 11:52:50 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 11:52:50 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 11:52:50 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 11:52:50 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 11:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 11:52:50 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 11:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 11:52:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 11:52:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 11:52:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 11:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 11:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 11:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 11:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:52:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 188 msc 0 sec -2016-05-03 11:52:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 336 msc 0 sec -2016-05-03 11:53:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:00 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:00 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:53:00 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 11:53:00 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:53:00 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 11:53:01 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 11:53:01 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 11:53:01 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 11:53:01 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 11:53:01 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 11:53:01 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 11:53:01 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:53:01 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 11:53:01 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 11:53:01 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 11:53:01 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 11:53:01 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 11:53:01 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 11:53:01 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 11:53:01 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 11:53:01 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 11:53:01 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 11:53:01 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 11:53:01 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 11:53:01 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 11:53:01 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 11:53:01 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 11:53:01 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 11:53:01 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 11:53:01 DEBUG WPS2SM:92 - WPS type: -2016-05-03 11:53:01 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 11:53:01 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 11:53:01 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 11:53:01 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 11:53:01 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 11:53:01 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 11:53:01 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 11:53:01 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 11:53:01 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 11:53:01 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 11:53:01 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 11:53:01 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 11:53:01 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 11:53:01 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 11:53:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:01 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:01 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:01 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:01 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:01 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:01 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:01 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:01 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:01 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:01 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:01 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:01 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:01 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:01 INFO WorkspaceExplorerServiceImpl:142 - end time - 205 msc 0 sec -2016-05-03 11:53:01 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:05 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:05 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:05 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:05 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:05 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:05 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:05 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:05 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:05 INFO WorkspaceExplorerServiceImpl:142 - end time - 170 msc 0 sec -2016-05-03 11:53:05 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:06 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:06 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:06 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:06 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:06 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:06 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:06 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:06 INFO WorkspaceExplorerServiceImpl:142 - end time - 160 msc 0 sec -2016-05-03 11:53:06 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:06 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:06 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:06 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:07 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:07 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:07 INFO WorkspaceExplorerServiceImpl:142 - end time - 170 msc 0 sec -2016-05-03 11:53:07 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:07 INFO WorkspaceExplorerServiceImpl:142 - end time - 154 msc 0 sec -2016-05-03 11:53:07 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:07 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:07 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:07 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:07 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:07 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:07 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:07 INFO WorkspaceExplorerServiceImpl:142 - end time - 157 msc 0 sec -2016-05-03 11:53:07 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:31 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:31 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:31 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:31 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:32 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:32 INFO WorkspaceExplorerServiceImpl:142 - end time - 170 msc 0 sec -2016-05-03 11:53:32 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:32 INFO WorkspaceExplorerServiceImpl:142 - end time - 152 msc 0 sec -2016-05-03 11:53:32 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:32 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:32 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:32 INFO WorkspaceExplorerServiceImpl:142 - end time - 169 msc 0 sec -2016-05-03 11:53:32 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:32 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:33 INFO WorkspaceExplorerServiceImpl:142 - end time - 161 msc 0 sec -2016-05-03 11:53:33 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:33 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:33 INFO WorkspaceExplorerServiceImpl:142 - end time - 157 msc 0 sec -2016-05-03 11:53:33 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:33 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:33 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:33 INFO WorkspaceExplorerServiceImpl:142 - end time - 152 msc 0 sec -2016-05-03 11:53:33 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:33 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:34 INFO WorkspaceExplorerServiceImpl:142 - end time - 131 msc 0 sec -2016-05-03 11:53:34 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:34 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:34 INFO WorkspaceExplorerServiceImpl:142 - end time - 131 msc 0 sec -2016-05-03 11:53:34 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:34 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:34 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:34 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:34 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:34 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:34 INFO WorkspaceExplorerServiceImpl:142 - end time - 154 msc 0 sec -2016-05-03 11:53:34 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:35 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:35 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:35 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:35 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:35 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:35 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:35 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:35 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:35 INFO WorkspaceExplorerServiceImpl:142 - end time - 145 msc 0 sec -2016-05-03 11:53:35 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:40 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:40 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:40 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:40 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:40 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:40 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:40 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:40 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:40 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:40 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:40 INFO WorkspaceExplorerServiceImpl:142 - end time - 139 msc 0 sec -2016-05-03 11:53:40 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:41 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:41 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:41 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:41 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:41 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:41 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:41 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:41 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:41 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:41 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:41 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:41 INFO WorkspaceExplorerServiceImpl:142 - end time - 132 msc 0 sec -2016-05-03 11:53:41 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:41 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:41 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:41 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:41 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:41 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:41 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:41 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:41 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:41 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:41 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:41 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:41 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:41 INFO WorkspaceExplorerServiceImpl:142 - end time - 127 msc 0 sec -2016-05-03 11:53:41 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:42 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:42 INFO WorkspaceExplorerServiceImpl:142 - end time - 147 msc 0 sec -2016-05-03 11:53:42 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:42 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:42 INFO WorkspaceExplorerServiceImpl:142 - end time - 129 msc 0 sec -2016-05-03 11:53:42 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:42 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:42 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:42 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:42 INFO WorkspaceExplorerServiceImpl:142 - end time - 127 msc 0 sec -2016-05-03 11:53:42 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:43 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:43 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:43 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:43 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:43 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:43 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:43 INFO WorkspaceExplorerServiceImpl:142 - end time - 145 msc 0 sec -2016-05-03 11:53:43 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:43 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:43 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:43 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:43 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:43 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:43 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:43 INFO WorkspaceExplorerServiceImpl:142 - end time - 123 msc 0 sec -2016-05-03 11:53:43 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:43 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:43 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:44 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:44 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:44 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:44 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:44 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:44 INFO WorkspaceExplorerServiceImpl:142 - end time - 158 msc 0 sec -2016-05-03 11:53:44 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:44 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:44 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:44 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:44 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:44 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:44 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:44 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:44 INFO WorkspaceExplorerServiceImpl:142 - end time - 125 msc 0 sec -2016-05-03 11:53:44 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:45 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:45 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:45 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:45 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:45 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:45 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:53:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:45 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:53:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:45 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:45 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:45 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:45 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:45 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:45 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:45 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:45 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:45 INFO WorkspaceExplorerServiceImpl:142 - end time - 130 msc 0 sec -2016-05-03 11:53:45 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:53:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:53:55 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:53:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 11:53:55 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 11:53:55 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:53:55 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 11:53:56 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN - BIOCLIMATE_HSPEN - A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes - - - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 11:53:56 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 11:53:56 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 11:53:56 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 11:53:56 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 11:53:56 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 11:53:56 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 11:53:56 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 11:53:56 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 11:53:56 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 11:53:56 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 11:53:56 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 11:53:56 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 11:53:56 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 11:53:56 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 11:53:56 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 11:53:56 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 11:53:56 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 11:53:56 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 11:53:56 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 11:53:56 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 11:53:56 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 11:53:56 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 11:53:56 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 11:53:56 DEBUG WPS2SM:92 - WPS type: -2016-05-03 11:53:56 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 11:53:56 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 11:53:56 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 11:53:56 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 11:53:56 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 11:53:56 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 11:53:56 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 11:53:56 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 11:53:56 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 11:53:56 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 11:53:56 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 11:53:56 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 11:53:56 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 11:53:56 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 11:53:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:56 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:53:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:53:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:56 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:53:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:53:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:53:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:53:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:56 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:53:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:53:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:53:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:53:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:53:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:53:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:53:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:53:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:53:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:53:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:53:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:53:56 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:53:56 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:53:56 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:53:56 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:53:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:56 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:53:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:53:56 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:53:56 INFO WorkspaceExplorerServiceImpl:142 - end time - 128 msc 0 sec -2016-05-03 11:53:56 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:54:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:54:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:54:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:54:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:54:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:54:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:54:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:21 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:54:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:54:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:54:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:54:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:54:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:54:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:54:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:21 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:54:21 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:54:21 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:54:21 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:54:21 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:21 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:54:21 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:21 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:54:21 INFO WorkspaceExplorerServiceImpl:142 - end time - 139 msc 0 sec -2016-05-03 11:54:21 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:54:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:54:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:41 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:54:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:54:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:41 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:54:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:54:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:41 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:54:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:54:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:54:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:54:42 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:54:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:54:42 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:54:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:42 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:54:42 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:54:42 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:54:42 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:54:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:42 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:54:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:42 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:54:42 INFO WorkspaceExplorerServiceImpl:142 - end time - 122 msc 0 sec -2016-05-03 11:54:42 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:42 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:42 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:54:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:54:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:54:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:54:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:54:42 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:54:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:54:42 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:54:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:42 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:54:42 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:54:42 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:54:42 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:54:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:42 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:54:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:42 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:54:42 INFO WorkspaceExplorerServiceImpl:142 - end time - 132 msc 0 sec -2016-05-03 11:54:42 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:54:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:43 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:54:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:54:43 INFO WorkspaceExplorerServiceImpl:142 - end time - 152 msc 0 sec -2016-05-03 11:54:43 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:54:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:54:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:43 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:54:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:54:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:54:43 INFO WorkspaceExplorerServiceImpl:142 - end time - 128 msc 0 sec -2016-05-03 11:54:43 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:43 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:54:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:54:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:54:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:54:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:54:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:43 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:43 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:54:43 INFO WorkspaceExplorerServiceImpl:142 - end time - 124 msc 0 sec -2016-05-03 11:54:43 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:54:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:54:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:54:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:54:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:54:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:44 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:54:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:54:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:54:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:54:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:54:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:54:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:44 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:54:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:54:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:54:44 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:54:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:44 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:54:44 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:54:44 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:54:44 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:54:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:44 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:54:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:44 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:54:44 INFO WorkspaceExplorerServiceImpl:142 - end time - 129 msc 0 sec -2016-05-03 11:54:44 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:54:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:54 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 11:54:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:54:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:54 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:54:54 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:54:54 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:54:54 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:54:54 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:54 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:54:54 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:54 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:54:54 INFO WorkspaceExplorerServiceImpl:142 - end time - 238 msc 0 sec -2016-05-03 11:54:54 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:54:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 11:54:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:54 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 11:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 11:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 11:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:54:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 11:54:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 11:54:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 11:54:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 11:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 11:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 11:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 11:54:55 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 11:54:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 11:54:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 11:54:55 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 11:54:55 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 11:54:55 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 11:54:55 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 11:54:55 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:55 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 11:54:55 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 11:54:55 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 11:54:55 INFO WorkspaceExplorerServiceImpl:142 - end time - 141 msc 0 sec -2016-05-03 11:54:55 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 11:55:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:55:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 11:56:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 11:56:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:06:48 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 12:06:48 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 12:06:48 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 12:06:48 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 12:06:48 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 12:06:48 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:06:48 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 12:06:48 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@1bcb781e -2016-05-03 12:06:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:06:48 INFO ASLSession:352 - Logging the entrance -2016-05-03 12:06:48 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 12:06:48 DEBUG TemplateModel:83 - 2016-05-03 12:06:48, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 12:06:48 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:06:48 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 12:06:50 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 12:06:50 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 12:06:50 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:06:50 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 12:06:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:06:50 INFO ASLSession:352 - Logging the entrance -2016-05-03 12:06:50 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 12:06:50 DEBUG TemplateModel:83 - 2016-05-03 12:06:50, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 12:06:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:06:50 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 12:06:50 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 122 ms -2016-05-03 12:06:50 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 12:06:50 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 12:06:50 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 12:06:50 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 12:06:50 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 12:06:50 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 12:06:50 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 12:06:50 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 12:06:50 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 12:06:50 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 12:06:50 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 12:06:50 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 12:06:50 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 12:06:50 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 12:06:50 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 12:06:50 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:06:51 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 12:06:51 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@4ac096f3 -2016-05-03 12:06:51 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@6cd408b1 -2016-05-03 12:06:51 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@394cebd2 -2016-05-03 12:06:51 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@55e925e2 -2016-05-03 12:06:51 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 112 ms -2016-05-03 12:06:51 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 12:06:51 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 12:06:51 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 12:06:51 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 12:06:51 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 12:06:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:06:51 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:06:51 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 12:06:51 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 24 ms -2016-05-03 12:06:51 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 12:06:51 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:06:51 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 12:06:51 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:06:51 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 12:06:51 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 12:06:51 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 12:06:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:06:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:06:51 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:06:51 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 12:06:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:06:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:06:51 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 12:06:51 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 12:06:51 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 12:06:51 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 12:06:51 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 12:06:51 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 12:06:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 12:06:51 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:06:51 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 12:06:51 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 31 ms -2016-05-03 12:06:51 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 12:06:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:06:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:06:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:06:51 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 12:06:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:06:51 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 12:06:52 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 12:06:52 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 12:06:52 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 12:06:52 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:06:52 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 12:06:52 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 12:06:52 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 12:06:52 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 12:06:52 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 12:06:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:06:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:06:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:06:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:06:52 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 12:06:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 12:06:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:06:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:06:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:06:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:06:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:06:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:06:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:06:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:06:52 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:06:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 12:06:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:06:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:06:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:06:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:06:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:06:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:06:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:06:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:06:52 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:06:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 12:06:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:06:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:06:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:06:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:06:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:06:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:06:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:06:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:06:52 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:06:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 12:06:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:06:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:06:54 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 12:06:54 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 12:06:54 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 12:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:06:54 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:06:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:06:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:06:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:06:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:06:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:06:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:06:54 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 12:06:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:06:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:06:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:06:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:06:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:06:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:06:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:06:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:06:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:06:54 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 12:06:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:06:54 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 12:06:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:06:54 INFO WorkspaceExplorerServiceImpl:188 - end time - 121 msc 0 sec -2016-05-03 12:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:06:54 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:06:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:06:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:06:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:06:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:06:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:06:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:06:54 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 12:06:54 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 12:06:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:06:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:06:54 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 12:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 12:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:06:54 INFO WorkspaceExplorerServiceImpl:188 - end time - 118 msc 0 sec -2016-05-03 12:06:54 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:06:54 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 12:06:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 22 ms -2016-05-03 12:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 12:06:54 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:06:54 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 12:06:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 12:06:54 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 12:06:54 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 12:06:54 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 12:06:54 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 12:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 12:06:54 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 12:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 12:06:54 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:06:54 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 12:06:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-03 12:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 12:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 12:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 12:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:06:54 INFO WorkspaceExplorerServiceImpl:188 - end time - 352 msc 0 sec -2016-05-03 12:06:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:06:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:06:57 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:06:57 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 12:06:57 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:06:57 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:06:58 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 12:06:58 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 12:06:58 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 12:06:58 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 12:06:58 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 12:06:58 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 12:06:58 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:06:58 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 12:06:58 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:06:58 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:06:58 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:06:58 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:06:58 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:06:58 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:06:58 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:06:58 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 12:06:58 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 12:06:58 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:06:58 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:06:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 12:06:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 12:06:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:06:58 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:06:58 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 12:06:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:06:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:06:58 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:06:58 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:06:58 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:06:58 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:06:58 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 12:06:58 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 12:06:58 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:06:58 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:06:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:06:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 12:06:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:06:58 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:06:58 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:06:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:06:58 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:06:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:06:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:06:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:06:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:06:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:06:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:06:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:06:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:06:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:06:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:06:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:06:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:06:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:06:58 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:06:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:06:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:06:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:06:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:06:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:06:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:06:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:06:58 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:06:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:06:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:06:58 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:06:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:06:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:06:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:06:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:06:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:06:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:06:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:06:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:06:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:06:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:06:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:06:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:06:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:06:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:06:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:06:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:06:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:06:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:06:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:06:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:06:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:06:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:06:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:06:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:06:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:06:58 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:06:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:06:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:06:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:06:58 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:06:58 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:06:58 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:06:58 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:06:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:06:58 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:06:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:06:58 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:06:58 INFO WorkspaceExplorerServiceImpl:142 - end time - 209 msc 0 sec -2016-05-03 12:06:58 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:10 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:10 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:10 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:10 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:10 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:07:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:10 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:10 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:10 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:10 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:07:10 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:07:10 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:07:10 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:07:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:10 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:07:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:10 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:07:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:10 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:10 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:07:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:10 INFO WorkspaceExplorerServiceImpl:142 - end time - 195 msc 0 sec -2016-05-03 12:07:10 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:10 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:10 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:07:10 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:07:10 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:07:10 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:07:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:10 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:07:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:10 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:07:10 INFO WorkspaceExplorerServiceImpl:142 - end time - 166 msc 0 sec -2016-05-03 12:07:10 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:11 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:07:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:07:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:11 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:07:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:11 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:07:11 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:07:11 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:07:11 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:07:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:11 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:07:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:11 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:11 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:07:11 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:07:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:07:11 INFO WorkspaceExplorerServiceImpl:142 - end time - 206 msc 0 sec -2016-05-03 12:07:11 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:07:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:11 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:07:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:12 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:07:12 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:07:12 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:07:12 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:07:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:12 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:07:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:12 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:07:12 INFO WorkspaceExplorerServiceImpl:142 - end time - 198 msc 0 sec -2016-05-03 12:07:12 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:07:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:12 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:12 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:07:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:07:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:12 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:12 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:07:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:12 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:07:12 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:07:12 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:07:12 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:07:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:12 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:07:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:12 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:07:12 INFO WorkspaceExplorerServiceImpl:142 - end time - 162 msc 0 sec -2016-05-03 12:07:12 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:07:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:07:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:17 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:07:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:07:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:07:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:07:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:07:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:07:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 156 msc 0 sec -2016-05-03 12:07:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:07:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:07:18 INFO WorkspaceExplorerServiceImpl:142 - end time - 151 msc 0 sec -2016-05-03 12:07:18 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:18 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:18 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:07:18 INFO WorkspaceExplorerServiceImpl:142 - end time - 144 msc 0 sec -2016-05-03 12:07:18 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:18 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:18 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:18 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:18 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:07:18 INFO WorkspaceExplorerServiceImpl:142 - end time - 178 msc 0 sec -2016-05-03 12:07:18 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:19 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:07:19 INFO WorkspaceExplorerServiceImpl:142 - end time - 149 msc 0 sec -2016-05-03 12:07:19 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:19 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:07:19 INFO WorkspaceExplorerServiceImpl:142 - end time - 1136 msc 1 sec -2016-05-03 12:07:19 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:07:19 INFO WorkspaceExplorerServiceImpl:142 - end time - 137 msc 0 sec -2016-05-03 12:07:19 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:19 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:07:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:19 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:07:19 INFO WorkspaceExplorerServiceImpl:142 - end time - 154 msc 0 sec -2016-05-03 12:07:19 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:07:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:07:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:20 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:07:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:20 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:07:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:07:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:07:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:07:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:20 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:07:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:07:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:07:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:07:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:07:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:07:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:07:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:07:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:07:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:07:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:07:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:07:20 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:07:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:07:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:07:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:07:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:07:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:07:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:07:20 INFO WorkspaceExplorerServiceImpl:142 - end time - 148 msc 0 sec -2016-05-03 12:07:20 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:07:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:07:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:08:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:08:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:09:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:09:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:10:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:10:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:11:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:11:23 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:12:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:12:18 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:13:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:13:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:14:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:14:08 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:14:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:14:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:14:19 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:14:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:19 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:14:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:14:19 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:14:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:14:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:14:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:14:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:14:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:14:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:14:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:14:19 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:14:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:19 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:14:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:14:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:14:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:14:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:14:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:14:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:14:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:14:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:14:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:19 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:14:19 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:14:19 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:14:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:19 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:14:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:14:19 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:14:19 INFO WorkspaceExplorerServiceImpl:142 - end time - 150 msc 0 sec -2016-05-03 12:14:19 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:14:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:14:19 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:14:19 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:14:19 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:14:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:14:19 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:14:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:14:19 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:14:19 INFO WorkspaceExplorerServiceImpl:142 - end time - 138 msc 0 sec -2016-05-03 12:14:19 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:14:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:14:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:20 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:14:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:14:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:14:20 INFO WorkspaceExplorerServiceImpl:142 - end time - 137 msc 0 sec -2016-05-03 12:14:20 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:14:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:14:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:20 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:14:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:14:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:14:20 INFO WorkspaceExplorerServiceImpl:142 - end time - 135 msc 0 sec -2016-05-03 12:14:20 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:14:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:14:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:20 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:14:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:14:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:14:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:14:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:14:20 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:14:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:14:20 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:14:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:14:20 INFO WorkspaceExplorerServiceImpl:142 - end time - 145 msc 0 sec -2016-05-03 12:14:20 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:17:05 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 12:17:05 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 12:17:05 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 12:17:05 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 12:17:05 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 12:17:05 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:17:05 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 12:17:05 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@5e16065e -2016-05-03 12:17:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:17:05 INFO ASLSession:352 - Logging the entrance -2016-05-03 12:17:05 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 12:17:05 DEBUG TemplateModel:83 - 2016-05-03 12:17:05, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 12:17:05 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:17:05 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 12:17:07 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 12:17:07 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 12:17:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:17:07 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 12:17:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:17:07 INFO ASLSession:352 - Logging the entrance -2016-05-03 12:17:07 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 12:17:07 DEBUG TemplateModel:83 - 2016-05-03 12:17:07, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 12:17:07 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:17:07 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 12:17:07 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 130 ms -2016-05-03 12:17:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 12:17:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 12:17:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 12:17:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 12:17:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 12:17:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 12:17:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 12:17:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 12:17:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 12:17:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 12:17:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 12:17:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 12:17:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 12:17:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 12:17:07 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 12:17:07 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:17:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 12:17:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@73a26d7c -2016-05-03 12:17:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@5160c15 -2016-05-03 12:17:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@6506f9f7 -2016-05-03 12:17:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@4d1da123 -2016-05-03 12:17:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 101 ms -2016-05-03 12:17:08 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 12:17:08 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 12:17:08 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 12:17:08 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 12:17:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:17:08 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:17:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:17:08 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 12:17:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:17:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:17:08 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 12:17:08 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 12:17:08 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 12:17:08 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 12:17:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:17:08 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:17:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 12:17:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 23 ms -2016-05-03 12:17:08 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 12:17:08 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 12:17:08 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:17:08 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 12:17:08 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 12:17:08 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 12:17:08 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 12:17:08 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:17:08 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 12:17:08 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 12:17:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 12:17:08 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:17:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 12:17:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 78 ms -2016-05-03 12:17:08 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 12:17:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:17:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:17:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:17:08 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 12:17:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:17:08 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 12:17:08 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 12:17:09 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 12:17:09 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 12:17:09 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 12:17:09 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 12:17:09 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 12:17:09 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 12:17:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:17:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:17:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:17:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:17:09 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 12:17:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 12:17:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:17:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:17:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:17:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:17:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:17:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:17:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:17:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:17:09 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:17:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 12:17:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:17:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:17:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:17:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:17:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:17:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:17:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:17:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:17:09 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:17:09 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 12:17:09 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:17:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 12:17:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:17:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:17:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:17:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:17:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:17:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:17:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:17:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:17:09 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:17:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 12:17:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:17:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:17:10 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 12:17:10 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 12:17:10 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 12:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:17:10 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:17:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:17:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:17:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:17:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:17:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:17:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:17:10 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 12:17:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:17:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:17:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:17:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:17:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:17:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:17:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:17:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:17:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:17:10 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 12:17:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:17:10 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 12:17:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:17:10 INFO WorkspaceExplorerServiceImpl:188 - end time - 123 msc 0 sec -2016-05-03 12:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:17:10 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:17:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:17:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:17:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:17:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:17:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:17:10 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 12:17:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:17:10 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 12:17:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:17:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:17:10 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 12:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 12:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:17:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:17:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 12:17:10 INFO WorkspaceExplorerServiceImpl:188 - end time - 118 msc 0 sec -2016-05-03 12:17:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-03 12:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 12:17:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:17:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 12:17:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 12:17:10 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 12:17:10 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 12:17:10 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 12:17:10 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 12:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 12:17:10 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 12:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 12:17:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:17:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 12:17:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 17 ms -2016-05-03 12:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 12:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 12:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 12:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:17:10 INFO WorkspaceExplorerServiceImpl:188 - end time - 346 msc 0 sec -2016-05-03 12:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:17:15 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:17:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:17:15 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 12:17:15 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:17:15 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:17:16 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 12:17:16 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 12:17:16 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 12:17:16 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 12:17:16 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 12:17:16 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 12:17:16 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:17:16 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 12:17:16 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:17:16 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:17:16 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:17:16 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:17:16 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:17:16 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:17:16 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:17:16 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 12:17:16 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 12:17:16 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:17:16 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:17:16 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 12:17:16 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 12:17:16 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:17:16 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:17:16 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 12:17:16 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:17:16 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:17:16 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:17:16 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:17:16 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:17:16 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:17:16 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 12:17:16 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 12:17:16 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:17:16 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:17:16 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:17:16 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 12:17:16 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:17:16 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:17:16 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:17:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:17:16 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:17:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:17:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:17:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:17:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:17:16 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:17:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:17:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:17:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:17:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:17:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:17:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:17:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:17:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:17:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:17:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:17:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:17:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:17:16 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:17:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:17:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:17:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:17:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:17:16 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:17:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:17:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:17:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:17:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:17:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:17:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:17:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:17:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:17:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:17:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:17:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:17:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:17:16 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:17:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:17:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:17:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:17:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:17:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:17:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:17:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:17:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:17:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:17:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:17:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:17:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:17:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:17:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:17:16 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:17:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:17:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:17:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:17:16 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:17:16 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:17:16 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:17:16 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:17:16 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:17:16 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:17:16 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:17:16 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:17:16 INFO WorkspaceExplorerServiceImpl:142 - end time - 195 msc 0 sec -2016-05-03 12:17:16 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:18:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:18:00 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:18:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:18:55 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:19:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:19:50 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:20:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:20:45 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:21:28 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 12:21:28 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 12:21:28 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 12:21:28 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 12:21:28 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 12:21:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:21:28 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 12:21:28 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@32fb8afb -2016-05-03 12:21:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:21:28 INFO ASLSession:352 - Logging the entrance -2016-05-03 12:21:28 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 12:21:28 DEBUG TemplateModel:83 - 2016-05-03 12:21:28, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 12:21:28 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:21:28 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 12:21:30 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 12:21:30 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 12:21:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:21:30 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 12:21:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:21:30 INFO ASLSession:352 - Logging the entrance -2016-05-03 12:21:30 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 12:21:30 DEBUG TemplateModel:83 - 2016-05-03 12:21:30, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 12:21:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:21:30 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 12:21:30 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 127 ms -2016-05-03 12:21:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 12:21:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 12:21:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 12:21:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 12:21:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 12:21:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 12:21:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 12:21:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 12:21:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 12:21:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 12:21:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 12:21:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 12:21:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 12:21:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 12:21:30 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 12:21:30 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:21:30 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 12:21:30 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@42318130 -2016-05-03 12:21:30 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@7f877331 -2016-05-03 12:21:30 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@321c0aa -2016-05-03 12:21:30 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@41756abf -2016-05-03 12:21:30 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 113 ms -2016-05-03 12:21:30 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 12:21:30 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 12:21:30 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 12:21:30 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 12:21:30 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 12:21:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:21:30 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:21:30 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 12:21:31 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 19 ms -2016-05-03 12:21:31 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 12:21:31 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:21:31 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 12:21:31 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:21:31 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 12:21:31 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 12:21:31 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 12:21:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:21:31 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:21:31 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:21:31 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 12:21:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:21:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:21:31 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 12:21:31 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 12:21:31 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 12:21:31 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 12:21:31 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 12:21:31 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 12:21:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 12:21:31 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:21:31 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 12:21:31 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 71 ms -2016-05-03 12:21:31 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 12:21:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:21:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:21:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:21:31 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 12:21:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:21:31 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 12:21:31 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 12:21:31 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 12:21:31 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 12:21:31 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 12:21:31 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 12:21:31 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 12:21:31 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 12:21:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:21:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:21:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:21:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:21:31 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 12:21:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 12:21:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:21:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:21:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:21:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:21:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:21:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:21:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:21:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:21:32 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:21:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 12:21:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:21:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:21:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:21:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:21:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:21:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:21:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:21:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:21:32 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:21:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 12:21:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:21:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:21:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:21:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:21:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:21:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:21:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:21:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:21:32 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:21:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 12:21:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:21:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:21:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:21:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:21:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:21:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:21:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:21:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:21:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:21:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:21:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:21:32 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 12:21:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:21:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:21:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:21:32 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:21:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:21:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:21:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:21:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:21:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:21:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:21:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:21:32 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 12:21:32 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 12:21:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:21:33 INFO WorkspaceExplorerServiceImpl:188 - end time - 162 msc 0 sec -2016-05-03 12:21:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:21:33 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 12:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:21:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:21:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:21:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:21:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:21:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:21:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:21:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:21:33 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:21:33 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 12:21:33 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 12:21:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:21:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 12:21:33 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 12:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:21:33 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:21:33 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 12:21:33 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 36 ms -2016-05-03 12:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 12:21:33 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:21:33 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 12:21:33 INFO WorkspaceExplorerServiceImpl:188 - end time - 150 msc 0 sec -2016-05-03 12:21:33 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 12:21:33 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 12:21:33 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 12:21:33 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 12:21:33 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 12:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 12:21:33 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 12:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 12:21:33 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:21:33 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 12:21:33 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-03 12:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 12:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 12:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 12:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:21:33 INFO WorkspaceExplorerServiceImpl:188 - end time - 352 msc 0 sec -2016-05-03 12:21:39 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 12:21:39 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 12:21:39 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 12:21:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:21:39 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:21:39 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:21:39 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 12:21:39 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:21:39 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:21:40 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 12:21:40 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 12:21:40 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 12:21:40 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 12:21:40 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 12:21:40 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 12:21:40 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:21:40 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 12:21:40 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:21:40 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:21:40 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:21:40 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:21:40 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:21:40 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:21:40 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:21:40 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 12:21:40 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 12:21:40 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:21:40 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:21:40 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 12:21:40 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 12:21:40 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:21:40 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:21:40 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 12:21:40 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:21:40 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:21:40 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:21:40 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:21:40 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:21:40 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:21:40 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 12:21:40 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 12:21:40 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:21:40 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:21:40 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:21:40 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 12:21:40 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:21:40 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:21:40 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:21:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:21:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:21:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:21:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:21:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:21:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:21:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:21:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:21:40 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:21:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:21:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:21:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:21:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:21:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:21:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:21:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:21:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:21:40 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:21:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:21:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:21:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:21:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:21:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:21:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:21:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:21:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:21:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:21:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:21:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:21:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:21:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:21:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:21:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:21:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:21:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:21:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:21:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:21:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:21:40 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:21:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:21:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:21:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:21:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:21:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:21:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:21:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:21:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:21:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:21:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:21:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:21:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:21:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:21:40 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:21:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:21:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:21:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:21:40 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:21:40 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:21:40 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:21:40 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:21:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:21:40 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:21:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:21:40 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:21:40 INFO WorkspaceExplorerServiceImpl:142 - end time - 193 msc 0 sec -2016-05-03 12:21:40 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:22:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:22:08 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:22:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:22:08 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 12:22:08 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:22:08 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:22:09 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN - BIOCLIMATE_HSPEN - A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes - - - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 12:22:09 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 12:22:09 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 12:22:09 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 12:22:09 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 12:22:09 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 12:22:09 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:22:09 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 12:22:09 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:22:09 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:22:09 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:22:09 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:22:09 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:22:09 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:22:09 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:22:09 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 12:22:09 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 12:22:09 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:22:09 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:22:09 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 12:22:09 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 12:22:09 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:22:09 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:22:09 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 12:22:09 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:22:09 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:22:09 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:22:09 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:22:09 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:22:09 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:22:09 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 12:22:09 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 12:22:09 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:22:09 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:22:09 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:22:09 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 12:22:09 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:22:09 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:22:09 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:22:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:22:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:22:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:22:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:22:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:22:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:22:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:22:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:22:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:22:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:22:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:22:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:22:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:22:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:22:09 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:22:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:22:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:22:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:22:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:22:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:22:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:22:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:22:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:22:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:22:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:22:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:22:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:22:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:22:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:22:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:22:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:22:09 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:22:09 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:22:09 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:22:09 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:22:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:22:10 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:22:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:22:10 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:22:10 INFO WorkspaceExplorerServiceImpl:142 - end time - 194 msc 0 sec -2016-05-03 12:22:10 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:22:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:22:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:23:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:23:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:23:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:23:36 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:23:36 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:23:36 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 12:23:36 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 12:23:36 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:23:36 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:23:36 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:23:36 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:23:36 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:23:36 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:23:36 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:23:36 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 12:23:36 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 12:23:36 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:23:36 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:23:36 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 12:23:36 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 12:23:36 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:36 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:23:36 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 12:23:36 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:36 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:23:36 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:23:36 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:23:36 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:23:36 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:23:36 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 12:23:36 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 12:23:36 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:23:36 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:23:36 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:23:36 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 12:23:36 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:36 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:23:36 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:23:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:23:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:23:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:23:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:23:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:23:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:23:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:23:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:23:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:23:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:23:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:23:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:23:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:23:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:23:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:23:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:23:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:23:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:23:37 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:23:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:23:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:23:37 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:23:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:23:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:23:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:23:37 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:23:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:23:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:23:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:23:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:23:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:23:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:23:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:23:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:23:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:23:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:23:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:23:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:23:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:23:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:23:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:23:37 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:23:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:37 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:23:37 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:23:37 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:23:37 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:23:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:23:37 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:23:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:23:37 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:23:37 INFO WorkspaceExplorerServiceImpl:142 - end time - 189 msc 0 sec -2016-05-03 12:23:37 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:23:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:23:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:23:42 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:23:42 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 12:23:42 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 12:23:42 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:23:42 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:23:42 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:23:42 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:23:42 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:23:42 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:23:42 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:23:42 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 12:23:42 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 12:23:42 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:23:42 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:23:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 12:23:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 12:23:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:42 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:23:42 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 12:23:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:23:42 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:23:42 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:23:42 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:23:42 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:23:42 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 12:23:42 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 12:23:42 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:23:42 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:23:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:23:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 12:23:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:42 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:23:42 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:23:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:23:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:23:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:23:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:23:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:23:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:23:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:23:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:23:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:23:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:23:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:23:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:23:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:23:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:23:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:23:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:23:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:23:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:23:43 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:23:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:23:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:23:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:23:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:23:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:23:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:23:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:23:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:23:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:23:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:23:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:23:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:23:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:23:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:23:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:23:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:23:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:23:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:23:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:23:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:23:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:23:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:23:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:23:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:43 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:23:43 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:23:43 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:23:43 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:23:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:23:43 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:23:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:23:43 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:23:43 INFO WorkspaceExplorerServiceImpl:142 - end time - 154 msc 0 sec -2016-05-03 12:23:43 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:23:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:23:57 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:23:57 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM -2016-05-03 12:23:57 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:23:57 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:23:58 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM - BIONYM - An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication. - - - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - - - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - - - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - - - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - - - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - - - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - - - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - - - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - - - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - - - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - - - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - - - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - - - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - - - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - - - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - - - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - - - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - - - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - - - - - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 12:23:58 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - -2016-05-03 12:23:58 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - -2016-05-03 12:23:58 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 12:23:58 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-03 12:23:58 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 12:23:58 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:23:58 DEBUG WPS2SM:324 - Conversion to SM Type->RawTaxaNamesTable is a Complex Input -2016-05-03 12:23:58 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:23:58 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:23:58 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:23:58 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawTaxaNamesTable -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->RawNamesColumn is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: rawnames -2016-05-03 12:23:58 DEBUG WPS2SM:129 - Machter title: The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames] -2016-05-03 12:23:58 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 12:23:58 DEBUG WPS2SM:131 - Machter group: the name of a column from RawTaxaNamesTable -2016-05-03 12:23:58 DEBUG WPS2SM:132 - Machter start: 80 -2016-05-03 12:23:58 DEBUG WPS2SM:133 - Machter end: 123 -2016-05-03 12:23:58 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 12:23:58 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: RawTaxaNamesTable -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawNamesColumn -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: bionout -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Name of the table which will contain the matches -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OutputTableLabel -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-03 12:23:58 DEBUG WPS2SM:310 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The reference dataset to use -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-03 12:23:58 DEBUG WPS2SM:310 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Parser_Name -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-03 12:23:58 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-03 12:23:58 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-03 12:23:58 DEBUG WPS2SM:310 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-03 12:23:58 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_1 -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_1 -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_1 -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-03 12:23:58 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_2 -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_2 -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_2 -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-03 12:23:58 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_3 -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_3 -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_3 -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-03 12:23:58 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_4 -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_4 -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_4 -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-03 12:23:58 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_5 -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_5 -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-03 12:23:58 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-03 12:23:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:23:58 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:23:58 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-03 12:23:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:23:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_5 -2016-05-03 12:23:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:23:58 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-03 12:23:58 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-03 12:23:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:23:58 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:23:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:23:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:23:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:23:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:23:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:23:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:23:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:23:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:23:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:23:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:23:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:23:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:23:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:23:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:23:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:23:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:23:58 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:23:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:23:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:23:58 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:23:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:23:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:23:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:23:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:23:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:23:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:23:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:23:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:23:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:23:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:23:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:23:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:23:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:23:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:23:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:23:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:23:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:23:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:23:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:23:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:23:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:23:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:23:58 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:23:58 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:23:58 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:23:58 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:23:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:23:58 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:23:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:23:58 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:23:58 INFO WorkspaceExplorerServiceImpl:142 - end time - 177 msc 0 sec -2016-05-03 12:23:58 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:24:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:24:13 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:24:28 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:24:28 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 12:24:28 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 12:24:28 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:24:28 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:24:28 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:24:28 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:24:28 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:24:28 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:24:28 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:24:28 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 12:24:28 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 12:24:28 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:24:28 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:24:28 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 12:24:28 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 12:24:28 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:24:28 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:24:28 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 12:24:28 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:24:28 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:24:28 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:24:28 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:24:28 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:24:28 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:24:28 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 12:24:28 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 12:24:28 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:24:28 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:24:28 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:24:28 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 12:24:28 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:24:28 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:24:28 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:24:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:24:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:24:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:24:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:24:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:24:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:24:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:24:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:24:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:24:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:24:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:24:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:24:28 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:24:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:24:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:24:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:24:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:24:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:24:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:24:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:24:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:24:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:24:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:24:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:24:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:24:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:24:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:24:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:24:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:24:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:24:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:24:29 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:24:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:24:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:24:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:24:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:24:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:24:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:24:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:24:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:24:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:24:29 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:24:29 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:24:29 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:24:29 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:24:29 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:24:29 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:24:29 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:24:29 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:24:29 INFO WorkspaceExplorerServiceImpl:142 - end time - 174 msc 0 sec -2016-05-03 12:24:29 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:25:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:25:08 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:26:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:26:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:26:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:26:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:27:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:27:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:28:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:28:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:29:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:29:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:30:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:30:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:31:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:32:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:32:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:34:22 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 12:34:22 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 12:34:22 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 12:34:22 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 12:34:22 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 12:34:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:34:22 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 12:34:22 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@3b4f5092 -2016-05-03 12:34:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:22 INFO ASLSession:352 - Logging the entrance -2016-05-03 12:34:22 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 12:34:22 DEBUG TemplateModel:83 - 2016-05-03 12:34:22, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 12:34:22 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:34:22 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 12:34:23 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 12:34:23 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 12:34:23 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:34:23 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 12:34:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:34:23 INFO ASLSession:352 - Logging the entrance -2016-05-03 12:34:23 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 12:34:23 DEBUG TemplateModel:83 - 2016-05-03 12:34:23, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 12:34:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:34:23 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 12:34:24 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 141 ms -2016-05-03 12:34:24 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 12:34:24 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 12:34:24 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 12:34:24 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 12:34:24 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 12:34:24 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 12:34:24 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 12:34:24 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 12:34:24 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 12:34:24 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 12:34:24 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 12:34:24 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 12:34:24 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 12:34:24 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 12:34:24 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 12:34:24 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:34:24 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 12:34:24 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@6fb639dd -2016-05-03 12:34:24 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@a1e03ac -2016-05-03 12:34:24 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@3a905060 -2016-05-03 12:34:24 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@4afa5fc2 -2016-05-03 12:34:24 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 198 ms -2016-05-03 12:34:24 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 12:34:24 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 12:34:24 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 12:34:24 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 12:34:24 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 12:34:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:34:24 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:34:24 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 12:34:24 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-03 12:34:24 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 12:34:24 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:34:24 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 12:34:24 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:34:24 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 12:34:24 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 12:34:24 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 12:34:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:34:24 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:34:24 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:34:24 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 12:34:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:24 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 12:34:24 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 12:34:24 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 12:34:24 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 12:34:24 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 12:34:24 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 12:34:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 12:34:24 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:34:24 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 12:34:24 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-03 12:34:25 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 12:34:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:34:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:25 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 12:34:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:25 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 12:34:25 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:34:25 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 12:34:25 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 12:34:25 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 12:34:25 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 12:34:25 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 12:34:25 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 12:34:25 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 12:34:25 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 12:34:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:25 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 12:34:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 12:34:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:25 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:34:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 12:34:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:25 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:34:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 12:34:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:26 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:34:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 12:34:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:27 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 12:34:27 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 12:34:27 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 12:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:34:27 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:34:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:27 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 12:34:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:34:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:34:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:27 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 12:34:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:27 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 12:34:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:27 INFO WorkspaceExplorerServiceImpl:188 - end time - 107 msc 0 sec -2016-05-03 12:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:34:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:34:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:27 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 12:34:27 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 12:34:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:27 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 12:34:27 INFO WorkspaceExplorerServiceImpl:188 - end time - 113 msc 0 sec -2016-05-03 12:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:34:27 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:34:27 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 12:34:27 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-03 12:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:34:27 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:34:27 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 12:34:27 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 12:34:27 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 12:34:27 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 12:34:27 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 12:34:27 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 12:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:34:27 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 12:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:34:27 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:34:27 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 12:34:27 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 12:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:34:27 INFO WorkspaceExplorerServiceImpl:188 - end time - 372 msc 0 sec -2016-05-03 12:34:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:34:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:34:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:34:30 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 12:34:30 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:34:30 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:34:31 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 12:34:31 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 12:34:31 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 12:34:31 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 12:34:31 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 12:34:31 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 12:34:31 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:34:31 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 12:34:31 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:34:31 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:34:31 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:34:31 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:34:31 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:34:31 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:34:31 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:34:31 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 12:34:31 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 12:34:31 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:34:31 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:34:31 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 12:34:31 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 12:34:31 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:34:31 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:34:31 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 12:34:31 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:34:31 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:34:31 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:34:31 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:34:31 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:34:31 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:34:31 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 12:34:31 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 12:34:31 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:34:31 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:34:31 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:34:31 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 12:34:31 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:34:31 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:34:31 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:34:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:34:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:34:31 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:34:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:34:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:31 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:34:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:34:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:34:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:34:31 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:34:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:34:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:34:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:34:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:34:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:34:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:31 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:34:31 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:34:31 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:34:31 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:34:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:34:31 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:34:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:34:31 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:34:31 INFO WorkspaceExplorerServiceImpl:142 - end time - 182 msc 0 sec -2016-05-03 12:34:31 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:34:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:34:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:34:46 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:34:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:34:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:34:46 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:34:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:34:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:46 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:34:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:34:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:34:46 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:34:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:34:46 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:34:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:34:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:46 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:34:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:46 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:34:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:34:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:34:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:34:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:34:47 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:34:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:34:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:47 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:34:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:34:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:34:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:34:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:34:47 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:34:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:34:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:47 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:34:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:47 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:34:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:47 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:34:47 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:34:47 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:34:47 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:34:47 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:34:47 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:34:47 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:34:47 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:34:47 INFO WorkspaceExplorerServiceImpl:142 - end time - 164 msc 0 sec -2016-05-03 12:34:47 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:34:47 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:34:47 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:34:47 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:34:47 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:34:47 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:34:47 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:34:47 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:34:47 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:34:47 INFO WorkspaceExplorerServiceImpl:142 - end time - 1165 msc 1 sec -2016-05-03 12:34:47 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:34:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:34:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:34:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:34:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:47 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:34:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:47 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:34:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:34:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:34:48 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:34:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:34:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:34:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:34:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:34:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:34:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:34:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:48 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:34:48 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:34:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:34:48 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:34:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:48 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:34:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:34:48 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:34:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:34:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:34:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:34:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:34:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:48 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:34:48 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:34:48 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:34:48 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:34:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:34:48 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:34:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:34:48 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:34:48 INFO WorkspaceExplorerServiceImpl:142 - end time - 167 msc 0 sec -2016-05-03 12:34:48 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:34:49 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:34:49 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:34:49 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:34:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:34:49 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:34:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:34:49 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:34:49 INFO WorkspaceExplorerServiceImpl:142 - end time - 1141 msc 1 sec -2016-05-03 12:34:49 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:34:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:34:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:34:57 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:34:57 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 12:34:57 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:34:57 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:34:58 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN - BIOCLIMATE_HSPEN - A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes - - - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 12:34:58 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 12:34:58 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 12:34:58 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 12:34:58 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 12:34:58 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 12:34:58 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:34:58 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 12:34:58 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:34:58 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:34:58 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:34:58 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:34:58 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:34:58 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:34:58 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:34:58 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 12:34:58 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 12:34:58 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:34:58 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:34:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 12:34:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 12:34:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:34:58 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:34:58 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 12:34:58 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:34:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:34:58 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:34:58 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:34:58 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:34:58 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:34:58 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 12:34:58 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 12:34:58 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:34:58 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:34:58 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:34:58 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 12:34:58 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:34:58 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:34:58 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:34:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:34:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:34:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:34:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:34:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:34:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:58 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:34:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:34:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:34:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:34:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:34:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:34:58 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:34:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:34:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:34:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:34:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:34:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:34:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:34:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:34:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:34:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:34:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:34:58 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:34:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:34:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:34:58 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:34:58 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:34:58 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:34:58 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:34:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:34:58 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:34:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:34:58 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:34:58 INFO WorkspaceExplorerServiceImpl:142 - end time - 150 msc 0 sec -2016-05-03 12:34:58 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:35:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:35:02 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:35:02 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:35:02 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 12:35:02 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 12:35:02 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:35:02 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:35:02 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:35:02 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:35:02 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:35:02 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:35:02 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:35:02 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 12:35:02 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 12:35:02 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:35:02 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:35:02 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 12:35:02 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 12:35:02 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:02 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:35:02 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 12:35:02 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:02 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:35:02 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:35:02 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:35:02 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:35:02 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:35:02 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 12:35:02 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 12:35:02 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:35:02 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:35:02 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:35:02 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 12:35:02 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:02 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:35:02 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:35:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:35:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:35:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:35:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:35:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:35:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:35:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:35:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:35:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:35:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:35:02 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:35:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:35:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:35:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:35:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:35:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:35:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:35:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:35:02 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:35:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:35:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:35:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:35:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:35:02 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:35:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:35:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:35:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:35:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:35:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:35:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:35:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:35:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:35:02 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:35:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:35:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:35:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:35:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:35:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:35:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:35:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:35:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:35:02 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:35:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:02 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:35:02 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:35:02 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:35:02 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:35:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:35:02 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:35:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:35:02 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:35:02 INFO WorkspaceExplorerServiceImpl:142 - end time - 190 msc 0 sec -2016-05-03 12:35:02 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:35:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:35:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:35:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:35:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:35:18 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:35:18 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 12:35:18 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 12:35:18 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:35:18 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:35:18 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:35:18 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:35:18 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:35:18 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:35:18 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:35:18 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 12:35:18 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 12:35:18 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:35:18 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:35:18 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 12:35:18 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 12:35:18 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:18 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:35:18 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 12:35:18 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:35:18 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:35:18 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:35:18 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:35:18 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:35:18 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 12:35:18 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 12:35:18 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:35:18 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:35:18 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:35:18 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 12:35:18 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:18 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:35:18 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:35:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:35:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:35:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:35:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:35:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:35:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:35:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:35:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:35:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:35:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:35:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:35:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:35:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:35:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:35:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:35:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:35:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:35:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:35:18 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:35:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:35:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:35:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:35:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:35:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:35:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:35:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:35:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:35:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:35:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:35:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:35:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:35:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:35:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:35:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:35:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:35:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:35:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:35:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:35:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:35:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:35:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:35:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:35:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:18 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:35:18 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:35:18 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:35:18 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:35:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:35:18 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:35:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:35:18 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:35:18 INFO WorkspaceExplorerServiceImpl:142 - end time - 133 msc 0 sec -2016-05-03 12:35:18 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:35:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:35:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:35:21 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:35:21 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM -2016-05-03 12:35:21 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:35:21 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:35:22 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM - BIONYM - An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication. - - - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - - - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - - - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - - - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - - - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - - - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - - - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - - - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - - - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - - - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - - - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - - - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - - - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - - - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - - - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - - - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - - - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - - - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - - - - - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 12:35:22 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - -2016-05-03 12:35:22 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - -2016-05-03 12:35:22 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 12:35:22 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-03 12:35:22 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 12:35:22 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:35:22 DEBUG WPS2SM:324 - Conversion to SM Type->RawTaxaNamesTable is a Complex Input -2016-05-03 12:35:22 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:35:22 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:35:22 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:35:22 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawTaxaNamesTable -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->RawNamesColumn is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: rawnames -2016-05-03 12:35:22 DEBUG WPS2SM:129 - Machter title: The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames] -2016-05-03 12:35:22 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 12:35:22 DEBUG WPS2SM:131 - Machter group: the name of a column from RawTaxaNamesTable -2016-05-03 12:35:22 DEBUG WPS2SM:132 - Machter start: 80 -2016-05-03 12:35:22 DEBUG WPS2SM:133 - Machter end: 123 -2016-05-03 12:35:22 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 12:35:22 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: RawTaxaNamesTable -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawNamesColumn -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: bionout -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Name of the table which will contain the matches -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OutputTableLabel -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-03 12:35:22 DEBUG WPS2SM:310 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The reference dataset to use -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-03 12:35:22 DEBUG WPS2SM:310 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Parser_Name -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-03 12:35:22 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-03 12:35:22 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-03 12:35:22 DEBUG WPS2SM:310 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-03 12:35:22 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_1 -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_1 -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_1 -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-03 12:35:22 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_2 -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_2 -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_2 -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-03 12:35:22 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_3 -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_3 -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_3 -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-03 12:35:22 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_4 -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_4 -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_4 -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-03 12:35:22 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_5 -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_5 -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-03 12:35:22 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-03 12:35:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:35:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:35:22 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-03 12:35:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:35:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_5 -2016-05-03 12:35:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:35:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-03 12:35:22 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-03 12:35:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:35:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:35:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:35:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:35:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:35:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:35:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:35:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:35:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:35:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:35:22 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:35:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:35:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:35:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:35:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:35:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:35:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:35:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:35:22 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:35:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:35:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:35:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:35:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:35:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:35:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:35:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:35:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:35:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:35:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:35:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:35:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:35:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:35:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:35:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:35:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:35:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:35:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:35:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:35:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:35:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:35:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:35:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:35:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:35:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:35:22 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:35:22 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:35:22 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:35:22 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:35:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:35:22 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:35:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:35:22 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:35:22 INFO WorkspaceExplorerServiceImpl:142 - end time - 179 msc 0 sec -2016-05-03 12:35:22 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:35:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:35:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:35:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:35:59 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL -2016-05-03 12:35:59 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:35:59 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:36:00 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL - BIONYM_LOCAL - A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication. - - - SpeciesAuthorName - The scientific name of the species, possibly with authorship - Name of the parameter: SpeciesAuthorName. The scientific name of the species, possibly with authorship - - - - Gadus morhua (Linnaeus, 1758) - - - - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - - - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - - - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - - - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - - - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - - - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - - - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - - - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - - - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - - - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - - - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - - - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - - - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - - - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - - - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - - - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 12:36:00 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - SpeciesAuthorName - The scientific name of the species, possibly with authorship - Name of the parameter: SpeciesAuthorName. The scientific name of the species, possibly with authorship - - - - Gadus morhua (Linnaeus, 1758) - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - -2016-05-03 12:36:00 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - -2016-05-03 12:36:00 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 12:36:00 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 12:36:00 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->SpeciesAuthorName is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: Gadus morhua (Linnaeus, 1758) -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The scientific name of the species, possibly with authorship -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:SpeciesAuthorName -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=Gadus morhua (Linnaeus, 1758), value=null, name=SpeciesAuthorName, description=The scientific name of the species, possibly with authorship [Min N. of Entries:1; Max N. of Entries:1; default:Gadus morhua (Linnaeus, 1758)], typology=OBJECT] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-03 12:36:00 DEBUG WPS2SM:310 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The reference dataset to use -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-03 12:36:00 DEBUG WPS2SM:310 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Parser_Name -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-03 12:36:00 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-03 12:36:00 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-03 12:36:00 DEBUG WPS2SM:310 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-03 12:36:00 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_1 -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_1 -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_1 -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-03 12:36:00 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_2 -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_2 -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_2 -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-03 12:36:00 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_3 -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_3 -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_3 -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-03 12:36:00 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_4 -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_4 -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_4 -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-03 12:36:00 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_5 -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_5 -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-03 12:36:00 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-03 12:36:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:36:00 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:36:00 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-03 12:36:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:36:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_5 -2016-05-03 12:36:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:36:00 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-03 12:36:00 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue=Gadus morhua (Linnaeus, 1758), value=null, name=SpeciesAuthorName, description=The scientific name of the species, possibly with authorship [Min N. of Entries:1; Max N. of Entries:1; default:Gadus morhua (Linnaeus, 1758)], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-03 12:36:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:36:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:37:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:37:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:37:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:37:03 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 12:37:03 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 12:37:03 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:37:03 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:37:03 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:37:03 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:37:03 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:37:03 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:37:03 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:37:03 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 12:37:03 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 12:37:03 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:37:03 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:37:03 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 12:37:03 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 12:37:03 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:37:03 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:37:03 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 12:37:03 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:37:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:37:03 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:37:03 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:37:03 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:37:03 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:37:03 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 12:37:03 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 12:37:03 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:37:03 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:37:03 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:37:03 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 12:37:03 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:37:03 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:37:03 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:37:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:37:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:37:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:37:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:37:03 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:37:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:37:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:03 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:37:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:37:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:37:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:37:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:37:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:37:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:37:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:37:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:37:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:37:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:37:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:37:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:37:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:37:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:37:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 157 msc 0 sec -2016-05-03 12:37:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:37:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:37:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:37:13 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:37:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:37:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:37:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:37:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:37:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:13 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:37:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:37:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:37:13 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:37:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:37:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:37:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:37:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:13 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:37:13 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:37:13 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:37:13 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:37:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:13 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:37:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:13 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:37:13 INFO WorkspaceExplorerServiceImpl:142 - end time - 129 msc 0 sec -2016-05-03 12:37:13 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:37:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:37:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:37:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:37:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:37:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:37:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:37:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:14 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:37:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:37:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:37:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:37:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:14 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:37:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:37:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:37:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:14 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:37:14 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:37:14 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:37:14 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:37:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:14 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:37:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:14 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:37:14 INFO WorkspaceExplorerServiceImpl:142 - end time - 138 msc 0 sec -2016-05-03 12:37:14 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:37:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:37:15 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:37:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:37:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:37:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:37:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:37:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:15 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:37:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:37:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:37:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:15 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:37:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:37:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:37:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:37:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:37:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:37:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:15 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:37:15 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:37:15 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:37:15 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:37:15 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:15 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:37:15 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:15 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:37:15 INFO WorkspaceExplorerServiceImpl:142 - end time - 150 msc 0 sec -2016-05-03 12:37:15 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:37:57 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:37:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:57 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:37:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:37:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:37:57 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:37:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:37:57 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:37:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:57 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:37:57 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:37:57 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:37:57 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:37:57 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:57 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:37:57 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:57 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:37:57 INFO WorkspaceExplorerServiceImpl:142 - end time - 150 msc 0 sec -2016-05-03 12:37:57 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:37:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:37:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:37:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:37:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:57 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:37:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:37:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:37:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:37:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:37:57 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:37:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:37:58 INFO WorkspaceExplorerServiceImpl:142 - end time - 130 msc 0 sec -2016-05-03 12:37:58 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:37:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:37:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:58 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:37:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:37:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:37:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:37:58 INFO WorkspaceExplorerServiceImpl:142 - end time - 135 msc 0 sec -2016-05-03 12:37:58 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:37:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:37:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:37:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:58 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:37:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:37:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:37:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:37:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:37:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:37:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:37:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:37:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:37:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:37:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:37:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:58 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:37:58 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:37:58 INFO WorkspaceExplorerServiceImpl:142 - end time - 136 msc 0 sec -2016-05-03 12:37:58 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:37:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:37:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:37:59 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:37:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:37:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:38:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:38:02 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:38:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:38:08 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:38:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:38:08 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 12:38:08 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 12:38:08 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:38:08 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:38:08 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:38:08 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:38:08 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:38:08 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:38:08 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:38:08 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 12:38:08 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 12:38:08 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:38:08 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:38:08 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 12:38:08 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 12:38:08 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:08 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:38:08 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 12:38:08 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:08 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:38:08 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:38:08 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:38:08 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:38:08 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:38:08 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 12:38:08 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 12:38:08 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:38:08 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:38:08 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:38:08 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 12:38:08 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:08 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:38:08 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:38:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:38:08 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:38:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:38:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:38:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:38:08 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:38:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:38:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:08 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:38:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:38:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:38:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:38:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:38:09 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:38:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:38:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:38:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:38:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:38:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:38:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:38:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:38:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:38:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:38:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:38:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:38:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:38:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:38:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:38:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:38:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:38:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:38:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:38:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:38:09 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:38:09 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:38:09 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:38:09 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:38:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:38:09 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:38:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:38:09 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:38:09 INFO WorkspaceExplorerServiceImpl:142 - end time - 141 msc 0 sec -2016-05-03 12:38:09 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:38:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:38:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:38:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:38:11 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM -2016-05-03 12:38:11 DEBUG WPS2SM:324 - Conversion to SM Type->RawTaxaNamesTable is a Complex Input -2016-05-03 12:38:11 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:38:11 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:38:11 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:38:11 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawTaxaNamesTable -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->RawNamesColumn is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: rawnames -2016-05-03 12:38:11 DEBUG WPS2SM:129 - Machter title: The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames] -2016-05-03 12:38:11 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 12:38:11 DEBUG WPS2SM:131 - Machter group: the name of a column from RawTaxaNamesTable -2016-05-03 12:38:11 DEBUG WPS2SM:132 - Machter start: 80 -2016-05-03 12:38:11 DEBUG WPS2SM:133 - Machter end: 123 -2016-05-03 12:38:11 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 12:38:11 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: RawTaxaNamesTable -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawNamesColumn -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: bionout -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Name of the table which will contain the matches -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OutputTableLabel -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-03 12:38:11 DEBUG WPS2SM:310 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The reference dataset to use -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-03 12:38:11 DEBUG WPS2SM:310 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Parser_Name -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-03 12:38:11 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-03 12:38:11 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-03 12:38:11 DEBUG WPS2SM:310 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-03 12:38:11 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_1 -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_1 -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_1 -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-03 12:38:11 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_2 -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_2 -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_2 -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-03 12:38:11 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_3 -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_3 -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_3 -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-03 12:38:11 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_4 -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_4 -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_4 -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-03 12:38:11 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_5 -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_5 -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-03 12:38:11 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-03 12:38:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:38:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:38:11 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-03 12:38:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:38:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_5 -2016-05-03 12:38:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:38:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-03 12:38:11 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-03 12:38:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:38:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:38:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:38:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:38:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:38:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:38:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:38:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:11 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:38:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:38:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:38:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:38:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:38:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:38:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:38:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:38:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:38:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:38:12 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:38:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:38:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:38:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:38:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:38:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:38:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:38:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:38:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:38:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:38:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:38:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:38:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:38:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:38:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:38:12 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:38:12 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:38:12 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:38:12 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:38:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:38:12 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:38:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:38:12 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:38:12 INFO WorkspaceExplorerServiceImpl:142 - end time - 122 msc 0 sec -2016-05-03 12:38:12 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:38:22 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:38:22 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:38:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:38:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:22 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:38:22 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:38:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:22 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:38:22 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:38:22 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 12:38:22 DEBUG ServiceEngine:306 - get() - start -2016-05-03 12:38:22 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:38:22 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:38:22 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 12:38:22 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 12:38:22 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 12:38:22 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 12:38:22 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 12:38:22 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 12:38:22 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 12:38:22 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:38:22 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:38:22 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 12:38:22 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 12:38:22 DEBUG MongoIO:77 - open mongo connection -2016-05-03 12:38:22 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 12:38:22 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:22 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:22 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:22 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fc10b54e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@77734daf, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@32f1596d, socketFactory=javax.net.DefaultSocketFactory@3b494fc1, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 12:38:22 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 12:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:38:22 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:38:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:38:22 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:38:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:22 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:38:22 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:38:22 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 12:38:22 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 12:38:22 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 12:38:22 INFO WorkspaceExplorerServiceImpl:188 - end time - 43 msc 0 sec -2016-05-03 12:38:22 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 12:38:22 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1867431}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:22 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=7011940, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:22 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 12:38:22 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:22 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:22 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:256647}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:38:22 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:22 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:38:22 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 12:38:22 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 12:38:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1650963, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:22 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2139161}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:38:22 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:38:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=948904, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:22 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1552944}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:38:22 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:38:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1485214, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 12:38:22 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1867432}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:22 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1867432}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:22 DEBUG command:56 - Command execution completed -2016-05-03 12:38:22 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1867432}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:22 DEBUG command:56 - Command execution completed -2016-05-03 12:38:22 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1867432}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:22 DEBUG command:56 - Command execution completed -2016-05-03 12:38:22 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 12:38:22 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1867432}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:22 DEBUG command:56 - Command execution completed -2016-05-03 12:38:22 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1867432}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:22 DEBUG command:56 - Command execution completed -2016-05-03 12:38:22 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1867432}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:23 DEBUG query:56 - Query completed -2016-05-03 12:38:23 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 12:38:23 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2139161} -2016-05-03 12:38:23 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1552944} -2016-05-03 12:38:23 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:256647} -2016-05-03 12:38:23 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1867432}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 12:38:23 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1867432} -2016-05-03 12:38:23 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1867431} -2016-05-03 12:38:23 INFO MongoIO:508 - Mongo has been closed -2016-05-03 12:38:23 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 12:38:23 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 12:38:23 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 12:38:23 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 12:38:23 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 12:38:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:38:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:38:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:38:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:23 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 12:38:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:38:23 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:38:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:38:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:23 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 12:38:23 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 12:38:24 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 12:38:24 DEBUG ServiceEngine:306 - get() - start -2016-05-03 12:38:24 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:38:24 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:38:24 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 12:38:24 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 12:38:24 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 12:38:24 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 12:38:24 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 12:38:24 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 12:38:24 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 12:38:24 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:38:24 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:38:24 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 12:38:24 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 12:38:24 DEBUG MongoIO:77 - open mongo connection -2016-05-03 12:38:24 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 12:38:24 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:24 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:24 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:24 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fc10b54e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@77734daf, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@32f1596d, socketFactory=javax.net.DefaultSocketFactory@3b494fc1, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 12:38:24 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 12:38:24 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 12:38:24 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1867433}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1891365, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:24 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 12:38:24 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:24 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:24 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:24 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2139162}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:38:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:38:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1001717, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:24 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:256648}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:38:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:38:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1368611, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:24 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1552946}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:38:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:38:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1382268, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 12:38:24 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1867434}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1867434}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:24 DEBUG command:56 - Command execution completed -2016-05-03 12:38:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1867434}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:24 DEBUG command:56 - Command execution completed -2016-05-03 12:38:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1867434}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:24 DEBUG command:56 - Command execution completed -2016-05-03 12:38:24 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 12:38:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1867434}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:24 DEBUG command:56 - Command execution completed -2016-05-03 12:38:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1867434}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:24 DEBUG command:56 - Command execution completed -2016-05-03 12:38:24 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1867434}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:38:25 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:38:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:38:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:38:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:38:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:38:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:25 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 12:38:25 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 12:38:25 DEBUG query:56 - Query completed -2016-05-03 12:38:25 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 12:38:25 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2139162} -2016-05-03 12:38:25 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:256648} -2016-05-03 12:38:25 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1552946} -2016-05-03 12:38:25 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1867434}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 12:38:25 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1867434} -2016-05-03 12:38:25 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1867433} -2016-05-03 12:38:25 INFO MongoIO:508 - Mongo has been closed -2016-05-03 12:38:25 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 12:38:25 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 12:38:25 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 12:38:25 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 12:38:25 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 12:38:25 INFO WorkspaceExplorerServiceImpl:188 - end time - 40 msc 0 sec -2016-05-03 12:38:25 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:38:25 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 12:38:25 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 12:38:25 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 12:38:25 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 12:38:25 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:38:25 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:38:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:38:25 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:38:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:38:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:25 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:38:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:38:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:38:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:38:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:25 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:38:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:38:25 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:38:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:38:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:25 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:38:25 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:38:25 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:38:25 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 12:38:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:38:26 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:38:26 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:38:26 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 12:38:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:26 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:38:26 DEBUG ServiceEngine:193 - get() - start -2016-05-03 12:38:26 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:38:26 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:38:26 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 12:38:26 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 12:38:26 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 12:38:26 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 12:38:26 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 12:38:26 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 12:38:26 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:38:26 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:38:26 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:38:26 DEBUG Operation:173 - get(String) - start -2016-05-03 12:38:26 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 12:38:26 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 12:38:26 DEBUG MongoIO:77 - open mongo connection -2016-05-03 12:38:26 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 12:38:26 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:26 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:26 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:26 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fc10b54e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@77734daf, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@32f1596d, socketFactory=javax.net.DefaultSocketFactory@3b494fc1, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 12:38:26 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 12:38:26 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 12:38:26 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:256650}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1575780, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:26 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 12:38:26 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:26 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:26 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1867435}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2139164}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1171658, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=21124622, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:26 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=21.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:26 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1552947}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1569991, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=21.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 12:38:26 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1867436}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1867436}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 DEBUG command:56 - Command execution completed -2016-05-03 12:38:26 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1867436}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 DEBUG command:56 - Command execution completed -2016-05-03 12:38:26 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1867436}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 DEBUG command:56 - Command execution completed -2016-05-03 12:38:26 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 12:38:26 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1867436}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 DEBUG command:56 - Command execution completed -2016-05-03 12:38:26 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1867436}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 DEBUG command:56 - Command execution completed -2016-05-03 12:38:26 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:38:26 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1867436}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 DEBUG command:56 - Command execution completed -2016-05-03 12:38:26 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1867436}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:26 DEBUG command:56 - Command execution completed -2016-05-03 12:38:26 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:38:26 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1867436}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG query:56 - Query completed -2016-05-03 12:38:27 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 12:38:27 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 12:38:27 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 12:38:27 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1867436}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG update:56 - Update completed -2016-05-03 12:38:27 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1867436}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG query:56 - Query completed -2016-05-03 12:38:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:38:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:38:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:38:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:38:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:38:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:38:27 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:38:27 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 12:38:27 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 12:38:27 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 12:38:27 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:38:27 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:38:27 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 12:38:27 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 12:38:27 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 12:38:27 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 12:38:27 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 12:38:27 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 12:38:27 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 12:38:27 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:38:27 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:38:27 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 12:38:27 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 12:38:27 DEBUG MongoIO:77 - open mongo connection -2016-05-03 12:38:27 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 12:38:27 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:27 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:27 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:27 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fc10b54e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@77734daf, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@32f1596d, socketFactory=javax.net.DefaultSocketFactory@3b494fc1, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 12:38:27 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 12:38:27 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 12:38:27 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:256651}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1177895, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:27 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 12:38:27 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:27 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:38:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:27 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1867437}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2139165}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1185941, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1482164, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:27 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:38:27 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1552948}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1174467, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:38:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 12:38:27 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1867438}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1867438}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG command:56 - Command execution completed -2016-05-03 12:38:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1867438}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG command:56 - Command execution completed -2016-05-03 12:38:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1867438}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG command:56 - Command execution completed -2016-05-03 12:38:27 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:38:27 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:38:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1867438}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG command:56 - Command execution completed -2016-05-03 12:38:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1867438}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG command:56 - Command execution completed -2016-05-03 12:38:27 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:38:27 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1867438}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG query:56 - Query completed -2016-05-03 12:38:27 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 12:38:27 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2139165} -2016-05-03 12:38:27 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1552948} -2016-05-03 12:38:27 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:256651} -2016-05-03 12:38:27 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1867438}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 12:38:27 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1867438} -2016-05-03 12:38:27 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1867437} -2016-05-03 12:38:27 INFO MongoIO:508 - Mongo has been closed -2016-05-03 12:38:27 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:38:27 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 12:38:27 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 12:38:27 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 12:38:27 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 12:38:27 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 12:38:27 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 12:38:27 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 12:38:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=21.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 12:38:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:38:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=21.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 12:38:36 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:38:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=17.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 12:38:36 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:38:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=17.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 12:38:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:38:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=17.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 12:38:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:38:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=17.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 12:38:37 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2139164} -2016-05-03 12:38:37 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1867436}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 12:38:37 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1867436} -2016-05-03 12:38:37 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:256650} -2016-05-03 12:38:37 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1552947} -2016-05-03 12:38:37 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1867435} -2016-05-03 12:38:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:38:57 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:39:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 12:39:19 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 12:39:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:39:19 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 12:39:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:39:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:39:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:39:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:39:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:39:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:39:19 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:39:19 DEBUG ServiceEngine:193 - get() - start -2016-05-03 12:39:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:39:19 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:39:19 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 12:39:19 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 12:39:19 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 12:39:19 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 12:39:19 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 12:39:19 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 12:39:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:39:19 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:39:19 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:39:19 DEBUG Operation:173 - get(String) - start -2016-05-03 12:39:19 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 12:39:19 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 12:39:19 DEBUG MongoIO:77 - open mongo connection -2016-05-03 12:39:19 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 12:39:19 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:39:19 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:39:19 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:39:19 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fc10b54e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@77734daf, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@32f1596d, socketFactory=javax.net.DefaultSocketFactory@3b494fc1, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 12:39:19 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 12:39:19 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 12:39:19 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:256661}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1867446}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1298260, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:39:19 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 12:39:19 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1176968, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:39:19 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:39:19 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:39:19 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2139174}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=883484, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:39:19 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1552958}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1203956, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 12:39:19 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1867447}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1867447}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG command:56 - Command execution completed -2016-05-03 12:39:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1867447}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG command:56 - Command execution completed -2016-05-03 12:39:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1867447}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG command:56 - Command execution completed -2016-05-03 12:39:19 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 12:39:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1867447}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG command:56 - Command execution completed -2016-05-03 12:39:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1867447}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG command:56 - Command execution completed -2016-05-03 12:39:19 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:39:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1867447}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG command:56 - Command execution completed -2016-05-03 12:39:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1867447}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG command:56 - Command execution completed -2016-05-03 12:39:19 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:39:19 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1867447}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG query:56 - Query completed -2016-05-03 12:39:19 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 12:39:19 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 12:39:19 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 12:39:19 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1867447}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG update:56 - Update completed -2016-05-03 12:39:19 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:25, serverValue:1867447}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG query:56 - Query completed -2016-05-03 12:39:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:39:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:39:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:39:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:39:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:39:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:39:19 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:39:19 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 12:39:19 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 12:39:19 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 12:39:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:39:19 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:39:19 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 12:39:19 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 12:39:19 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 12:39:19 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 12:39:19 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 12:39:19 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 12:39:19 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 12:39:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:39:19 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:39:19 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 12:39:19 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 12:39:19 DEBUG MongoIO:77 - open mongo connection -2016-05-03 12:39:19 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 12:39:19 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:39:19 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:39:19 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:39:19 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fc10b54e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@77734daf, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@32f1596d, socketFactory=javax.net.DefaultSocketFactory@3b494fc1, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 12:39:19 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 12:39:19 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 12:39:19 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1867449}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1307722, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:39:19 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 12:39:19 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:39:19 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:39:19 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:39:19 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:256662}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2139175}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1110629, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1420574, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:39:19 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1552959}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1200113, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 12:39:19 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1867450}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1867450}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG command:56 - Command execution completed -2016-05-03 12:39:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1867450}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG command:56 - Command execution completed -2016-05-03 12:39:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1867450}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG command:56 - Command execution completed -2016-05-03 12:39:19 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:39:19 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:39:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1867450}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG command:56 - Command execution completed -2016-05-03 12:39:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1867450}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG command:56 - Command execution completed -2016-05-03 12:39:19 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:39:19 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1867450}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:39:19 DEBUG query:56 - Query completed -2016-05-03 12:39:19 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 12:39:19 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2139175} -2016-05-03 12:39:19 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:256662} -2016-05-03 12:39:19 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1552959} -2016-05-03 12:39:19 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1867450}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 12:39:19 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1867450} -2016-05-03 12:39:19 INFO MongoIO:508 - Mongo has been closed -2016-05-03 12:39:19 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1867449} -2016-05-03 12:39:19 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:39:19 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 12:39:19 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 12:39:19 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 12:39:19 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 12:39:19 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 12:39:19 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 12:39:19 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 12:39:19 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2139174} -2016-05-03 12:39:19 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1867447}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 12:39:19 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1552958} -2016-05-03 12:39:19 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:256661} -2016-05-03 12:39:19 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1867447} -2016-05-03 12:39:19 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1867446} -2016-05-03 12:39:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:39:52 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:46:08 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 12:46:08 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 12:46:08 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 12:46:08 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 12:46:08 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 12:46:08 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:46:08 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 12:46:08 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@333d3266 -2016-05-03 12:46:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:46:08 INFO ASLSession:352 - Logging the entrance -2016-05-03 12:46:08 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 12:46:08 DEBUG TemplateModel:83 - 2016-05-03 12:46:08, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 12:46:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:46:08 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 12:46:10 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 12:46:10 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 12:46:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:46:10 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 12:46:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:46:10 INFO ASLSession:352 - Logging the entrance -2016-05-03 12:46:10 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 12:46:10 DEBUG TemplateModel:83 - 2016-05-03 12:46:10, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 12:46:10 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:46:10 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 12:46:10 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 139 ms -2016-05-03 12:46:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 12:46:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 12:46:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 12:46:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 12:46:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 12:46:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 12:46:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 12:46:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 12:46:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 12:46:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 12:46:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 12:46:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 12:46:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 12:46:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 12:46:10 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 12:46:10 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:46:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 12:46:10 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@317813f -2016-05-03 12:46:10 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@6456ac53 -2016-05-03 12:46:10 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@62647dc3 -2016-05-03 12:46:10 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@3c1460a2 -2016-05-03 12:46:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 100 ms -2016-05-03 12:46:10 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 12:46:10 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 12:46:10 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 12:46:10 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 12:46:10 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 12:46:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:46:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:46:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 12:46:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 17 ms -2016-05-03 12:46:10 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 12:46:10 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:46:10 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 12:46:10 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:46:11 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 12:46:11 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 12:46:11 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 12:46:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:46:11 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:46:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:46:11 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 12:46:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:11 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 12:46:11 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 12:46:11 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 12:46:11 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 12:46:11 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 12:46:11 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 12:46:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 12:46:11 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:46:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 12:46:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 20 ms -2016-05-03 12:46:11 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 12:46:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:46:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:11 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 12:46:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:11 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 12:46:11 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 12:46:11 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 12:46:11 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 12:46:11 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 12:46:11 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 12:46:11 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 12:46:11 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 12:46:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:11 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:46:11 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 12:46:11 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 12:46:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 12:46:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:12 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:46:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 12:46:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:12 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:46:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 12:46:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:12 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:46:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 12:46:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:13 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 12:46:13 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 12:46:13 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 12:46:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:46:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:46:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:46:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:13 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 12:46:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:46:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:46:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:46:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:13 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 12:46:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:13 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 12:46:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:13 INFO WorkspaceExplorerServiceImpl:188 - end time - 114 msc 0 sec -2016-05-03 12:46:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:46:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:46:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:46:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:13 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 12:46:13 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 12:46:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:13 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 12:46:14 INFO WorkspaceExplorerServiceImpl:188 - end time - 113 msc 0 sec -2016-05-03 12:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:46:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:46:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 12:46:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 41 ms -2016-05-03 12:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:46:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:46:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 12:46:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 12:46:14 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 12:46:14 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 12:46:14 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 12:46:14 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 12:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:46:14 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 12:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:46:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:46:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 12:46:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 12:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:46:14 INFO WorkspaceExplorerServiceImpl:188 - end time - 377 msc 0 sec -2016-05-03 12:46:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:46:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:46:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:46:17 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 12:46:17 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:46:17 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:46:17 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 12:46:17 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 12:46:17 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 12:46:17 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 12:46:17 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 12:46:17 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 12:46:17 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:46:17 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 12:46:17 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:46:17 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:46:17 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:46:17 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:46:17 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:46:17 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:46:17 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:46:17 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 12:46:17 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 12:46:17 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:46:17 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:46:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 12:46:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 12:46:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:17 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:46:17 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 12:46:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:46:17 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:46:17 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:46:17 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:46:17 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:46:17 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 12:46:17 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 12:46:17 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:46:17 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:46:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:46:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 12:46:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:17 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:46:17 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:46:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:46:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:46:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:46:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:46:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:46:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:46:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:18 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:46:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:46:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:46:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:46:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:46:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:46:18 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:46:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:46:18 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:46:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:18 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:46:18 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:46:18 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:46:18 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:46:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:46:18 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:46:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:46:18 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:46:18 INFO WorkspaceExplorerServiceImpl:142 - end time - 207 msc 0 sec -2016-05-03 12:46:18 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:46:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:46:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:46:21 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:46:21 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM -2016-05-03 12:46:21 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:46:21 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:46:22 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM - BIONYM - An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication. - - - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - - - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - - - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - - - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - - - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - - - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - - - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - - - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - - - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - - - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - - - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - - - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - - - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - - - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - - - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - - - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - - - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - - - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - - - - - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 12:46:22 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - -2016-05-03 12:46:22 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - -2016-05-03 12:46:22 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 12:46:22 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-03 12:46:22 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 12:46:22 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:46:22 DEBUG WPS2SM:324 - Conversion to SM Type->RawTaxaNamesTable is a Complex Input -2016-05-03 12:46:22 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:46:22 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:46:22 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:46:22 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawTaxaNamesTable -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->RawNamesColumn is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: rawnames -2016-05-03 12:46:22 DEBUG WPS2SM:129 - Machter title: The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames] -2016-05-03 12:46:22 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 12:46:22 DEBUG WPS2SM:131 - Machter group: the name of a column from RawTaxaNamesTable -2016-05-03 12:46:22 DEBUG WPS2SM:132 - Machter start: 80 -2016-05-03 12:46:22 DEBUG WPS2SM:133 - Machter end: 123 -2016-05-03 12:46:22 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 12:46:22 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: RawTaxaNamesTable -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawNamesColumn -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: bionout -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Name of the table which will contain the matches -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OutputTableLabel -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-03 12:46:22 DEBUG WPS2SM:310 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The reference dataset to use -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-03 12:46:22 DEBUG WPS2SM:310 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Parser_Name -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-03 12:46:22 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-03 12:46:22 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-03 12:46:22 DEBUG WPS2SM:310 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-03 12:46:22 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_1 -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_1 -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_1 -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-03 12:46:22 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_2 -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_2 -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_2 -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-03 12:46:22 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_3 -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_3 -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_3 -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-03 12:46:22 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_4 -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_4 -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_4 -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-03 12:46:22 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_5 -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_5 -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-03 12:46:22 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-03 12:46:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:46:22 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:46:22 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-03 12:46:22 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:46:22 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_5 -2016-05-03 12:46:22 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:46:22 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-03 12:46:22 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-03 12:46:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:46:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:46:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:46:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:46:22 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:46:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:46:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:22 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:46:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:46:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:46:22 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:46:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:46:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:46:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:46:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:46:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:46:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:46:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:46:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:46:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:46:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:46:22 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:46:22 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:46:22 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:46:22 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:46:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:46:22 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:46:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:46:22 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:46:22 INFO WorkspaceExplorerServiceImpl:142 - end time - 171 msc 0 sec -2016-05-03 12:46:22 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:46:51 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:46:51 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:46:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:46:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:46:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:46:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:51 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:46:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:46:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:46:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:46:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:51 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:46:51 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:46:51 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 12:46:51 DEBUG ServiceEngine:306 - get() - start -2016-05-03 12:46:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:46:51 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:46:51 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 12:46:51 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 12:46:51 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 12:46:51 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 12:46:51 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 12:46:51 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 12:46:51 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 12:46:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:46:51 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:46:51 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 12:46:51 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 12:46:51 DEBUG MongoIO:77 - open mongo connection -2016-05-03 12:46:51 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 12:46:51 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:46:51 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:46:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:46:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:51 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:46:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:46:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:46:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:46:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:51 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:51 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:51 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@768f43c9, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6a9106a6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@574bb2f2, socketFactory=javax.net.DefaultSocketFactory@2ad15aa4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 12:46:51 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 12:46:51 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:46:51 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 12:46:51 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 12:46:51 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 12:46:51 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 12:46:51 INFO WorkspaceExplorerServiceImpl:188 - end time - 72 msc 0 sec -2016-05-03 12:46:51 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 12:46:51 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 12:46:51 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:256761}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:46:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:46:51 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1867558}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:51 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=3328683, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:51 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 12:46:51 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1469776, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:51 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:51 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:51 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2139268}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:46:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:46:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=967205, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:51 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1867559}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:51 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1553051}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:46:51 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:46:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=6321998, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.3 ms, state=CONNECTED}] -2016-05-03 12:46:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1867559}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:51 DEBUG command:56 - Command execution completed -2016-05-03 12:46:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1867559}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:51 DEBUG command:56 - Command execution completed -2016-05-03 12:46:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1867559}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:51 DEBUG command:56 - Command execution completed -2016-05-03 12:46:51 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 12:46:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1867559}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:51 DEBUG command:56 - Command execution completed -2016-05-03 12:46:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1867559}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:51 DEBUG command:56 - Command execution completed -2016-05-03 12:46:51 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1867559}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:52 DEBUG query:56 - Query completed -2016-05-03 12:46:52 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 12:46:52 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2139268} -2016-05-03 12:46:52 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1553051} -2016-05-03 12:46:52 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1867559}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 12:46:52 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:256761} -2016-05-03 12:46:52 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1867559} -2016-05-03 12:46:52 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1867558} -2016-05-03 12:46:52 INFO MongoIO:508 - Mongo has been closed -2016-05-03 12:46:52 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 12:46:52 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 12:46:52 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 12:46:53 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 12:46:53 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 12:46:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:46:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:46:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:46:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:53 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 12:46:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:46:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:46:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:46:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:53 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 12:46:53 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 12:46:53 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 12:46:53 DEBUG ServiceEngine:306 - get() - start -2016-05-03 12:46:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:46:53 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:46:53 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 12:46:53 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 12:46:53 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 12:46:53 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 12:46:53 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 12:46:53 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 12:46:53 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 12:46:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:46:53 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:46:53 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 12:46:53 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 12:46:53 DEBUG MongoIO:77 - open mongo connection -2016-05-03 12:46:53 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 12:46:53 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:53 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:53 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:53 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@768f43c9, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6a9106a6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@574bb2f2, socketFactory=javax.net.DefaultSocketFactory@2ad15aa4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 12:46:53 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 12:46:53 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 12:46:53 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1867562}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1414191, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:53 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 12:46:53 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:53 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:53 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:53 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:256762}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2139269}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1802738, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1293840, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:53 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1553052}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1376118, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 12:46:53 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1867563}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1867563}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 DEBUG command:56 - Command execution completed -2016-05-03 12:46:53 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1867563}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:46:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:46:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:46:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:46:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:46:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:46:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:53 DEBUG command:56 - Command execution completed -2016-05-03 12:46:53 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1867563}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 DEBUG command:56 - Command execution completed -2016-05-03 12:46:53 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 12:46:53 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1867563}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 DEBUG command:56 - Command execution completed -2016-05-03 12:46:53 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1867563}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 DEBUG command:56 - Command execution completed -2016-05-03 12:46:53 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1867563}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:53 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 12:46:53 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 12:46:53 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 12:46:53 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 12:46:53 INFO WorkspaceExplorerServiceImpl:188 - end time - 42 msc 0 sec -2016-05-03 12:46:53 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 12:46:53 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 12:46:53 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 12:46:53 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 12:46:53 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 12:46:54 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:46:54 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:46:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:46:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:46:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:46:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:54 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:46:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:46:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:46:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:46:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:54 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:46:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:46:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:46:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:46:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:54 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:46:54 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:46:54 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:46:54 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 12:46:54 DEBUG query:56 - Query completed -2016-05-03 12:46:54 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 12:46:54 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2139269} -2016-05-03 12:46:54 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:256762} -2016-05-03 12:46:54 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1867563}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 12:46:54 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1553052} -2016-05-03 12:46:54 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1867563} -2016-05-03 12:46:54 INFO MongoIO:508 - Mongo has been closed -2016-05-03 12:46:54 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 12:46:54 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1867562} -2016-05-03 12:46:54 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 12:46:54 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 12:46:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:46:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:46:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:46:55 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 12:46:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:55 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:46:55 DEBUG ServiceEngine:193 - get() - start -2016-05-03 12:46:55 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:46:55 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:46:55 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 12:46:55 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 12:46:55 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 12:46:55 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 12:46:55 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 12:46:55 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 12:46:55 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:46:55 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:46:55 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:46:55 DEBUG Operation:173 - get(String) - start -2016-05-03 12:46:55 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 12:46:55 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 12:46:55 DEBUG MongoIO:77 - open mongo connection -2016-05-03 12:46:55 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 12:46:55 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:55 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:55 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:55 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@768f43c9, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6a9106a6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@574bb2f2, socketFactory=javax.net.DefaultSocketFactory@2ad15aa4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 12:46:55 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 12:46:55 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 12:46:55 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:256763}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1292455, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:55 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 12:46:55 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:55 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:55 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1867564}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1440531, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:55 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2139270}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=931505, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:55 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1553054}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1502947, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 12:46:55 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1867565}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1867565}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 DEBUG command:56 - Command execution completed -2016-05-03 12:46:55 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1867565}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 DEBUG command:56 - Command execution completed -2016-05-03 12:46:55 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1867565}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 DEBUG command:56 - Command execution completed -2016-05-03 12:46:55 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 12:46:55 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1867565}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 DEBUG command:56 - Command execution completed -2016-05-03 12:46:55 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1867565}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 DEBUG command:56 - Command execution completed -2016-05-03 12:46:55 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:46:55 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1867565}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 DEBUG command:56 - Command execution completed -2016-05-03 12:46:55 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1867565}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 DEBUG command:56 - Command execution completed -2016-05-03 12:46:55 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:46:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1867565}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 DEBUG query:56 - Query completed -2016-05-03 12:46:55 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 12:46:55 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 12:46:55 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 12:46:55 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1867565}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:55 DEBUG update:56 - Update completed -2016-05-03 12:46:55 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1867565}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 DEBUG query:56 - Query completed -2016-05-03 12:46:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:46:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:46:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:46:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:46:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:46:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:46:56 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 12:46:56 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 12:46:56 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 12:46:56 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 12:46:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:46:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:46:56 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 12:46:56 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 12:46:56 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 12:46:56 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 12:46:56 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 12:46:56 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 12:46:56 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 12:46:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 12:46:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 12:46:56 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 12:46:56 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 12:46:56 DEBUG MongoIO:77 - open mongo connection -2016-05-03 12:46:56 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 12:46:56 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:56 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:56 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:56 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@768f43c9, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6a9106a6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@574bb2f2, socketFactory=javax.net.DefaultSocketFactory@2ad15aa4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 12:46:56 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 12:46:56 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 12:46:56 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:256764}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1324420, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:56 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 12:46:56 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:56 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 12:46:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:56 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1867566}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2139271}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2317475, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:56 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=3319255, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 12:46:56 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1553055}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1162090, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 12:46:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 12:46:56 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1867567}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1867567}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 DEBUG command:56 - Command execution completed -2016-05-03 12:46:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1867567}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 DEBUG command:56 - Command execution completed -2016-05-03 12:46:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1867567}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 DEBUG command:56 - Command execution completed -2016-05-03 12:46:56 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:46:56 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:46:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1867567}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 DEBUG command:56 - Command execution completed -2016-05-03 12:46:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1867567}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 DEBUG command:56 - Command execution completed -2016-05-03 12:46:56 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:46:56 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1867567}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:46:56 DEBUG query:56 - Query completed -2016-05-03 12:46:56 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 12:46:56 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2139271} -2016-05-03 12:46:56 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1867567}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 12:46:56 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1553055} -2016-05-03 12:46:56 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:256764} -2016-05-03 12:46:56 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1867567} -2016-05-03 12:46:56 INFO MongoIO:508 - Mongo has been closed -2016-05-03 12:46:56 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1867566} -2016-05-03 12:46:56 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 12:46:56 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 12:46:56 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 12:46:56 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 12:46:56 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 12:46:56 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 12:46:56 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 12:46:56 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 12:47:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:47:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:47:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:47:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 12:47:05 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:47:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:47:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 12:47:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 12:47:05 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:47:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 12:47:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:47:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 12:47:15 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:47:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:47:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 12:47:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 12:47:15 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:47:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 12:47:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:47:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 12:47:25 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:47:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:47:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 12:47:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 12:47:25 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:47:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 12:47:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:47:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 12:47:35 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:47:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:47:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 12:47:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 12:47:35 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:47:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 12:47:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 12:47:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 12:47:45 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 12:47:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 12:47:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 12:47:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 12:47:45 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 12:47:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 12:47:49 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2139270} -2016-05-03 12:47:49 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1867565}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 12:47:49 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:256763} -2016-05-03 12:47:49 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1553054} -2016-05-03 12:47:49 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1867565} -2016-05-03 12:47:49 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1867564} -2016-05-03 12:49:24 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 12:49:24 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 12:49:24 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 12:49:24 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 12:49:24 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 12:49:24 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:49:24 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 12:49:24 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@79a174f8 -2016-05-03 12:49:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:49:24 INFO ASLSession:352 - Logging the entrance -2016-05-03 12:49:24 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 12:49:24 DEBUG TemplateModel:83 - 2016-05-03 12:49:24, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 12:49:24 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:49:24 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 12:49:25 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 12:49:25 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 12:49:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:49:25 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 12:49:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:49:25 INFO ASLSession:352 - Logging the entrance -2016-05-03 12:49:25 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 12:49:25 DEBUG TemplateModel:83 - 2016-05-03 12:49:25, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 12:49:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:49:26 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 12:49:26 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 129 ms -2016-05-03 12:49:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 12:49:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 12:49:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 12:49:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 12:49:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 12:49:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 12:49:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 12:49:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 12:49:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 12:49:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 12:49:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 12:49:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 12:49:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 12:49:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 12:49:26 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 12:49:26 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:49:26 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 12:49:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@8fa7ade -2016-05-03 12:49:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@ddecc3b -2016-05-03 12:49:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@7c9ffb44 -2016-05-03 12:49:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@36ff2e3c -2016-05-03 12:49:26 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 101 ms -2016-05-03 12:49:26 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 12:49:26 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 12:49:26 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 12:49:26 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 12:49:26 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 12:49:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:49:26 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:49:26 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 12:49:26 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 12:49:26 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 12:49:26 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 12:49:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:49:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:49:26 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:49:26 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 12:49:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:26 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 12:49:26 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 12:49:26 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 12:49:26 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 12:49:26 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 12:49:26 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 12:49:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 12:49:26 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:49:26 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 12:49:27 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 46 ms -2016-05-03 12:49:27 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 12:49:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:49:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:27 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 12:49:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:27 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 12:49:27 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 12:49:27 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 12:49:27 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 12:49:27 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 12:49:27 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 12:49:27 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 12:49:27 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 12:49:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:27 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 12:49:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 12:49:27 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 1016 ms -2016-05-03 12:49:27 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 12:49:27 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:49:27 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 12:49:27 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:49:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:27 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:49:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 12:49:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:28 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:49:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 12:49:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:28 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 12:49:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 12:49:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:49:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:49:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:49:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:28 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 12:49:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:28 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:49:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:49:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:49:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:49:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:28 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 12:49:28 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 12:49:28 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 12:49:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 176 msc 0 sec -2016-05-03 12:49:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:29 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 12:49:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:49:29 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:49:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:49:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:29 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 12:49:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:49:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:49:29 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:49:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 12:49:29 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 12:49:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-05-03 12:49:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:49:29 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:49:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 12:49:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 140 msc 0 sec -2016-05-03 12:49:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 12:49:29 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 12:49:29 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 12:49:29 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 12:49:29 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 12:49:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:49:29 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 12:49:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:49:29 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 12:49:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 12:49:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 17 ms -2016-05-03 12:49:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:49:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:49:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 12:49:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:49:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 347 msc 0 sec -2016-05-03 12:49:34 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 12:49:34 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 12:49:34 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 12:49:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:49:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:49:34 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:49:34 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 12:49:34 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:49:34 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:49:35 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 12:49:35 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 12:49:35 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 12:49:35 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 12:49:35 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 12:49:35 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 12:49:35 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:49:35 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 12:49:35 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:49:35 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:49:35 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:49:35 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:49:35 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:49:35 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:49:35 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:49:35 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 12:49:35 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 12:49:35 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:49:35 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:49:35 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 12:49:35 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 12:49:35 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:35 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:49:35 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 12:49:35 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:35 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:35 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:49:35 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:49:35 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:49:35 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:49:35 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 12:49:35 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 12:49:35 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:49:35 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:49:35 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:49:35 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 12:49:35 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:35 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:49:35 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:49:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:49:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:49:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:49:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:49:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:49:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:49:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:35 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:49:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:49:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:49:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:49:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:49:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:49:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:49:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:49:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:49:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:49:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:49:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:35 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:49:35 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:49:35 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:49:35 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:49:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:49:35 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:49:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:49:35 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:49:35 INFO WorkspaceExplorerServiceImpl:142 - end time - 188 msc 0 sec -2016-05-03 12:49:35 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:49:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:49:38 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:49:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:49:38 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 12:49:38 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:49:38 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:49:39 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN - BIOCLIMATE_HSPEN - A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes - - - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 12:49:39 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 12:49:39 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 12:49:39 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 12:49:39 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 12:49:39 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 12:49:39 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:49:39 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 12:49:39 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:49:39 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:49:39 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:49:39 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:49:39 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:49:39 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 12:49:39 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 12:49:39 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 12:49:39 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 12:49:39 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 12:49:39 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 12:49:39 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 12:49:39 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 12:49:39 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:39 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:49:39 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 12:49:39 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:39 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:39 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 12:49:39 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 12:49:39 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 12:49:39 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 12:49:39 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 12:49:39 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 12:49:39 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 12:49:39 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 12:49:39 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 12:49:39 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 12:49:39 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:39 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 12:49:39 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 12:49:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:49:39 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:49:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:49:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:49:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:49:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:49:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:39 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:49:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:49:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:49:39 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:49:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:49:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:49:39 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:49:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:49:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:49:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:49:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 12:49:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 12:49:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:39 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:49:39 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:49:39 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:49:39 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:49:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:49:39 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:49:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:49:39 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:49:39 INFO WorkspaceExplorerServiceImpl:142 - end time - 187 msc 0 sec -2016-05-03 12:49:39 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:49:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:49:41 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 12:49:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:49:41 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM -2016-05-03 12:49:41 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:49:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:49:41 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM - BIONYM - An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication. - - - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - - - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - - - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - - - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - - - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - - - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - - - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - - - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - - - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - - - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - - - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - - - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - - - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - - - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - - - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - - - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - - - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - - - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - - - - - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 12:49:41 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 12:49:41 DEBUG SClient4WPS:300 - WPSClient->Input: - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 12:49:41 DEBUG SClient4WPS:300 - WPSClient->Input: - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - -2016-05-03 12:49:41 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - -2016-05-03 12:49:41 DEBUG SClient4WPS:300 - WPSClient->Input: - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - -2016-05-03 12:49:41 DEBUG SClient4WPS:300 - WPSClient->Input: - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - -2016-05-03 12:49:41 DEBUG SClient4WPS:300 - WPSClient->Input: - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - -2016-05-03 12:49:41 DEBUG SClient4WPS:300 - WPSClient->Input: - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - -2016-05-03 12:49:41 DEBUG SClient4WPS:300 - WPSClient->Input: - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - -2016-05-03 12:49:41 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - -2016-05-03 12:49:41 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - -2016-05-03 12:49:42 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 12:49:42 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - -2016-05-03 12:49:42 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - -2016-05-03 12:49:42 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 12:49:42 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - -2016-05-03 12:49:42 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - -2016-05-03 12:49:42 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 12:49:42 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - -2016-05-03 12:49:42 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - -2016-05-03 12:49:42 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 12:49:42 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - -2016-05-03 12:49:42 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - -2016-05-03 12:49:42 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - -2016-05-03 12:49:42 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 12:49:42 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-03 12:49:42 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 12:49:42 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:49:42 DEBUG WPS2SM:324 - Conversion to SM Type->RawTaxaNamesTable is a Complex Input -2016-05-03 12:49:42 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 12:49:42 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 12:49:42 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 12:49:42 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawTaxaNamesTable -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->RawNamesColumn is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: rawnames -2016-05-03 12:49:42 DEBUG WPS2SM:129 - Machter title: The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames] -2016-05-03 12:49:42 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 12:49:42 DEBUG WPS2SM:131 - Machter group: the name of a column from RawTaxaNamesTable -2016-05-03 12:49:42 DEBUG WPS2SM:132 - Machter start: 80 -2016-05-03 12:49:42 DEBUG WPS2SM:133 - Machter end: 123 -2016-05-03 12:49:42 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 12:49:42 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: RawTaxaNamesTable -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawNamesColumn -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: bionout -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Name of the table which will contain the matches -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OutputTableLabel -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-03 12:49:42 DEBUG WPS2SM:310 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The reference dataset to use -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-03 12:49:42 DEBUG WPS2SM:310 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Parser_Name -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-03 12:49:42 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-03 12:49:42 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-03 12:49:42 DEBUG WPS2SM:310 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-03 12:49:42 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_1 -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_1 -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_1 -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-03 12:49:42 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_2 -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_2 -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_2 -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-03 12:49:42 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_3 -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_3 -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_3 -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-03 12:49:42 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_4 -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_4 -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_4 -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-03 12:49:42 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_5 -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_5 -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-03 12:49:42 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-03 12:49:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:49:42 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-03 12:49:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:49:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_5 -2016-05-03 12:49:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:42 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-03 12:49:42 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-03 12:49:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:49:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:49:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:49:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:49:42 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 12:49:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 12:49:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:42 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 12:49:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 12:49:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:49:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:49:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:49:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:49:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:49:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:49:42 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:49:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:49:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 12:49:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 12:49:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 12:49:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 12:49:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 12:49:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 12:49:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 12:49:42 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 12:49:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 12:49:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 12:49:42 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 12:49:42 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 12:49:42 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 12:49:42 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 12:49:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:49:42 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 12:49:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 12:49:42 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 12:49:42 INFO WorkspaceExplorerServiceImpl:142 - end time - 175 msc 0 sec -2016-05-03 12:49:42 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 12:49:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 12:49:50 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 12:49:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 12:49:50 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL -2016-05-03 12:49:50 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:49:50 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 12:49:51 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL - BIONYM_LOCAL - A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication. - - - SpeciesAuthorName - The scientific name of the species, possibly with authorship - Name of the parameter: SpeciesAuthorName. The scientific name of the species, possibly with authorship - - - - Gadus morhua (Linnaeus, 1758) - - - - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - - - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - - - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - - - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - - - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - - - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - - - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - - - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - - - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - - - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - - - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - - - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - - - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - - - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - - - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - - - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 12:49:51 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - SpeciesAuthorName - The scientific name of the species, possibly with authorship - Name of the parameter: SpeciesAuthorName. The scientific name of the species, possibly with authorship - - - - Gadus morhua (Linnaeus, 1758) - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - -2016-05-03 12:49:51 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - -2016-05-03 12:49:51 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 12:49:51 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 12:49:51 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->SpeciesAuthorName is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: Gadus morhua (Linnaeus, 1758) -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The scientific name of the species, possibly with authorship -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:SpeciesAuthorName -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=Gadus morhua (Linnaeus, 1758), value=null, name=SpeciesAuthorName, description=The scientific name of the species, possibly with authorship [Min N. of Entries:1; Max N. of Entries:1; default:Gadus morhua (Linnaeus, 1758)], typology=OBJECT] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-03 12:49:51 DEBUG WPS2SM:310 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The reference dataset to use -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-03 12:49:51 DEBUG WPS2SM:310 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Parser_Name -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-03 12:49:51 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-03 12:49:51 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-03 12:49:51 DEBUG WPS2SM:310 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-03 12:49:51 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_1 -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_1 -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_1 -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-03 12:49:51 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_2 -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_2 -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_2 -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-03 12:49:51 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_3 -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_3 -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_3 -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-03 12:49:51 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_4 -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_4 -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_4 -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-03 12:49:51 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_5 -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_5 -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-03 12:49:51 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-03 12:49:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 12:49:51 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 12:49:51 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-03 12:49:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 12:49:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_5 -2016-05-03 12:49:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 12:49:51 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-03 12:49:51 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue=Gadus morhua (Linnaeus, 1758), value=null, name=SpeciesAuthorName, description=The scientific name of the species, possibly with authorship [Min N. of Entries:1; Max N. of Entries:1; default:Gadus morhua (Linnaeus, 1758)], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-03 12:50:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 12:50:19 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 12:51:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 12:51:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 13:00:08 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 13:00:08 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 13:00:08 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 13:00:08 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 13:00:08 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 13:00:08 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 13:00:08 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 13:00:08 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@75156aa6 -2016-05-03 13:00:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:00:08 INFO ASLSession:352 - Logging the entrance -2016-05-03 13:00:08 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 13:00:08 DEBUG TemplateModel:83 - 2016-05-03 13:00:08, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 13:00:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 13:00:08 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 13:00:10 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 13:00:10 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 13:00:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:00:10 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 13:00:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:10 INFO ASLSession:352 - Logging the entrance -2016-05-03 13:00:10 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 13:00:10 DEBUG TemplateModel:83 - 2016-05-03 13:00:10, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 13:00:10 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 13:00:10 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 13:00:10 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 125 ms -2016-05-03 13:00:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 13:00:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 13:00:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 13:00:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 13:00:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 13:00:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 13:00:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 13:00:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 13:00:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 13:00:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 13:00:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 13:00:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 13:00:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 13:00:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 13:00:10 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 13:00:10 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 13:00:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 13:00:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@2fa6805b -2016-05-03 13:00:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@22ebe1a2 -2016-05-03 13:00:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@2ae570e4 -2016-05-03 13:00:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@37560ef0 -2016-05-03 13:00:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 96 ms -2016-05-03 13:00:11 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 13:00:11 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 13:00:11 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 13:00:11 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 13:00:11 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 13:00:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:11 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 13:00:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 13:00:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 19 ms -2016-05-03 13:00:11 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 13:00:11 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 13:00:11 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 13:00:11 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 13:00:11 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 13:00:11 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 13:00:11 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 13:00:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:00:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 13:00:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 13:00:11 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 13:00:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:11 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 13:00:11 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 13:00:11 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 13:00:11 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 13:00:11 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 13:00:11 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 13:00:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 13:00:11 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 13:00:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 13:00:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 80 ms -2016-05-03 13:00:11 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 13:00:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:00:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:11 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 13:00:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:11 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 13:00:12 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 13:00:12 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 13:00:12 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 13:00:12 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 13:00:12 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 13:00:12 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 13:00:12 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 13:00:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:12 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 13:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 13:00:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:12 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 13:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 13:00:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:12 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 13:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 13:00:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:12 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 13:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 13:00:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:00:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:00:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:13 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 13:00:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:00:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:00:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:13 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 13:00:13 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 13:00:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:13 INFO WorkspaceExplorerServiceImpl:188 - end time - 124 msc 0 sec -2016-05-03 13:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:00:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:00:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:13 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 13:00:13 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 13:00:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:13 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 13:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 13:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:00:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 13:00:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 13:00:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-03 13:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 13:00:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 13:00:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 13:00:13 INFO WorkspaceExplorerServiceImpl:188 - end time - 202 msc 0 sec -2016-05-03 13:00:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 13:00:13 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 13:00:13 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 13:00:13 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 13:00:13 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 13:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 13:00:13 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 13:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 13:00:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 13:00:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 13:00:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-03 13:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 13:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 13:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 13:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:00:13 INFO WorkspaceExplorerServiceImpl:188 - end time - 371 msc 0 sec -2016-05-03 13:00:18 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 13:00:18 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 13:00:23 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 13:00:23 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 13:00:23 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 13:00:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:00:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:00:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 13:00:23 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 13:00:23 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 13:00:23 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 13:00:23 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 13:00:23 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 13:00:23 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 13:00:23 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 13:00:23 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 13:00:23 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 13:00:23 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 13:00:23 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 13:00:23 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 13:00:23 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 13:00:23 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 13:00:23 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 13:00:23 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 13:00:23 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 13:00:23 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 13:00:23 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 13:00:23 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 13:00:23 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 13:00:23 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 13:00:23 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 13:00:23 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 13:00:23 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 13:00:23 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 13:00:23 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 13:00:23 DEBUG WPS2SM:92 - WPS type: -2016-05-03 13:00:23 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 13:00:23 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 13:00:23 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 13:00:23 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 13:00:23 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 13:00:23 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 13:00:23 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 13:00:23 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 13:00:23 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 13:00:23 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 13:00:23 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 13:00:23 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 13:00:23 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 13:00:23 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 13:00:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:00:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:00:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:00:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:00:23 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:00:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:00:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:23 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 13:00:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 13:00:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:00:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:00:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:23 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:00:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:00:23 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:00:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:00:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:23 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:00:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:24 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 13:00:24 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 13:00:24 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 13:00:24 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 13:00:24 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:00:24 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 13:00:24 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:00:24 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 13:00:24 INFO WorkspaceExplorerServiceImpl:142 - end time - 189 msc 0 sec -2016-05-03 13:00:24 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 13:00:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:00:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:00:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 13:00:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:00:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:43 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 13:00:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:00:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:00:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:00:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:00:43 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:00:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:00:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 13:00:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:44 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 13:00:44 INFO WorkspaceExplorerServiceImpl:142 - end time - 224 msc 0 sec -2016-05-03 13:00:44 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 13:00:44 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:44 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 13:00:44 INFO WorkspaceExplorerServiceImpl:142 - end time - 164 msc 0 sec -2016-05-03 13:00:44 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 13:00:44 INFO WorkspaceExplorerServiceImpl:142 - end time - 146 msc 0 sec -2016-05-03 13:00:44 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:44 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:00:44 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 13:00:44 INFO WorkspaceExplorerServiceImpl:142 - end time - 160 msc 0 sec -2016-05-03 13:00:44 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:44 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:45 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:00:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:00:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:00:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:00:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:00:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:00:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:00:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:00:45 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:00:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:00:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:00:45 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 13:00:45 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 13:00:45 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 13:00:45 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 13:00:45 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:00:45 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 13:00:45 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:00:45 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 13:00:45 INFO WorkspaceExplorerServiceImpl:142 - end time - 161 msc 0 sec -2016-05-03 13:00:45 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:01:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:01:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:02 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:01:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:01:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:01:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:01:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:02 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 13:01:02 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 13:01:02 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 13:01:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:01:02 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 13:01:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:01:02 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 INFO WorkspaceExplorerServiceImpl:142 - end time - 183 msc 0 sec -2016-05-03 13:01:02 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:01:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 13:01:02 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 13:01:02 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 13:01:02 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 13:01:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:01:02 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 13:01:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:01:02 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 13:01:02 INFO WorkspaceExplorerServiceImpl:142 - end time - 161 msc 0 sec -2016-05-03 13:01:02 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:01:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:01:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:02 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:01:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:01:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:01:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:02 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 13:01:03 INFO WorkspaceExplorerServiceImpl:142 - end time - 148 msc 0 sec -2016-05-03 13:01:03 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:01:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:01:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:03 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:01:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:01:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 13:01:03 INFO WorkspaceExplorerServiceImpl:142 - end time - 164 msc 0 sec -2016-05-03 13:01:03 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:01:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:01:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:03 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:01:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:01:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 13:01:03 INFO WorkspaceExplorerServiceImpl:142 - end time - 142 msc 0 sec -2016-05-03 13:01:03 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:01:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:01:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:03 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:01:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:01:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 13:01:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 13:01:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 13:01:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:01:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:01:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 13:01:03 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 13:01:03 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 13:01:03 INFO WorkspaceExplorerServiceImpl:142 - end time - 135 msc 0 sec -2016-05-03 13:01:03 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 13:01:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:01:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:01:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:01:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:02:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:02:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:03:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:03:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 13:04:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:04:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:05:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:05:38 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:06:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:07:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:07:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:08:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:08:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:09:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:10:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:10:13 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:11:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:11:08 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:12:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:12:03 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:12:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:12:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 13:13:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:13:53 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:14:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:14:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:15:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:15:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:16:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:16:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:17:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:17:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:18:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:18:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:19:23 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:20:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:20:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:21:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:21:13 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:22:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 13:22:08 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 13:23:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:23:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:23:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:23:58 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:24:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 13:24:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 13:25:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:25:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:26:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 13:26:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 13:27:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 13:27:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:28:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 13:28:33 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 13:29:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 13:29:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 13:30:23 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 13:30:23 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 13:30:23 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 13:30:23 WARN SessionCheckerServiceImpl:80 - Scope is null at Tue May 03 13:30:23 CEST 2016 -2016-05-03 13:30:23 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 14:19:57 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 14:19:57 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 14:19:57 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 14:19:57 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 14:19:57 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 14:19:57 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:19:57 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 14:19:57 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@f1126aa -2016-05-03 14:19:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:19:57 INFO ASLSession:352 - Logging the entrance -2016-05-03 14:19:57 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 14:19:57 DEBUG TemplateModel:83 - 2016-05-03 14:19:57, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 14:19:57 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:19:57 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 14:19:59 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 14:19:59 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 14:19:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:19:59 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 14:19:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:19:59 INFO ASLSession:352 - Logging the entrance -2016-05-03 14:19:59 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 14:19:59 DEBUG TemplateModel:83 - 2016-05-03 14:19:59, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 14:19:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:19:59 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 14:19:59 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 126 ms -2016-05-03 14:19:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 14:19:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 14:19:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 14:19:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 14:19:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 14:19:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 14:19:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 14:19:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 14:19:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 14:19:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 14:19:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 14:19:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 14:19:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 14:19:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 14:19:59 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 14:19:59 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:19:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 14:19:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@22ebe1a2 -2016-05-03 14:19:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@2ae570e4 -2016-05-03 14:19:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@72eecaf1 -2016-05-03 14:19:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@102a1872 -2016-05-03 14:19:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 102 ms -2016-05-03 14:19:59 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 14:20:00 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 14:20:00 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 14:20:00 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 14:20:00 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 14:20:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:20:00 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:20:00 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 14:20:00 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 27 ms -2016-05-03 14:20:00 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 14:20:00 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:20:00 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 14:20:00 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:20:00 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 14:20:00 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 14:20:00 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 14:20:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:20:00 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:20:00 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:20:00 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 14:20:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:00 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 14:20:00 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 14:20:00 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 14:20:00 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 14:20:00 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 14:20:00 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 14:20:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 14:20:00 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:20:00 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 14:20:00 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 76 ms -2016-05-03 14:20:00 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 14:20:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:20:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:00 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 14:20:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:00 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 14:20:01 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:20:01 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 14:20:01 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 14:20:01 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 14:20:01 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 14:20:01 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 14:20:01 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 14:20:01 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 14:20:01 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 14:20:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:02 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 14:20:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 14:20:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:02 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 14:20:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 14:20:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:02 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 14:20:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 14:20:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:02 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 14:20:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 14:20:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:03 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 14:20:03 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 14:20:03 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 14:20:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:20:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:20:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:20:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:03 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 14:20:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:20:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:20:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:20:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:03 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 14:20:03 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 14:20:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:03 INFO WorkspaceExplorerServiceImpl:188 - end time - 118 msc 0 sec -2016-05-03 14:20:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:03 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 14:20:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:20:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:20:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:20:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:03 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 14:20:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:04 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 14:20:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 14:20:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:20:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:20:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 14:20:04 INFO WorkspaceExplorerServiceImpl:188 - end time - 116 msc 0 sec -2016-05-03 14:20:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 37 ms -2016-05-03 14:20:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 14:20:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:20:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 14:20:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 14:20:04 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 14:20:04 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 14:20:04 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 14:20:04 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 14:20:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 14:20:04 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 14:20:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 14:20:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:20:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 14:20:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 17 ms -2016-05-03 14:20:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 14:20:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 14:20:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 14:20:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:20:04 INFO WorkspaceExplorerServiceImpl:188 - end time - 342 msc 0 sec -2016-05-03 14:20:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:20:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:20:06 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:20:06 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-03 14:20:06 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:20:06 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:20:06 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 14:20:06 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 14:20:06 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 14:20:06 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-03 14:20:06 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-03 14:20:06 DEBUG SClient4WPS:300 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-03 14:20:07 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-03 14:20:07 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 14:20:07 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-03 14:20:07 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 14:20:07 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:20:07 DEBUG WPS2SM:324 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-03 14:20:07 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:20:07 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:20:07 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:20:07 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:20:07 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 14:20:07 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-03 14:20:07 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:07 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:20:07 DEBUG WPS2SM:299 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-03 14:20:07 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:07 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:20:07 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:20:07 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:20:07 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:20:07 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-03 14:20:07 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-03 14:20:07 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-03 14:20:07 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:20:07 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-03 14:20:07 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:20:07 DEBUG WPS2SM:338 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-03 14:20:07 DEBUG WPS2SM:339 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-03 14:20:07 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:07 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:20:07 DEBUG WPS2SM:299 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-03 14:20:07 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:07 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:20:07 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-03 14:20:07 DEBUG WPS2SM:338 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-03 14:20:07 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-03 14:20:07 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:07 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-03 14:20:07 DEBUG WPS2SM:299 - Conversion to SM Type->epsilon is a Literal Input -2016-05-03 14:20:07 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:07 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:20:07 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 14:20:07 DEBUG WPS2SM:338 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-03 14:20:07 DEBUG WPS2SM:339 - Conversion to SM Type->Name:epsilon -2016-05-03 14:20:07 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:07 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 14:20:07 DEBUG WPS2SM:299 - Conversion to SM Type->min_points is a Literal Input -2016-05-03 14:20:07 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:07 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:20:07 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-03 14:20:07 DEBUG WPS2SM:338 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-03 14:20:07 DEBUG WPS2SM:339 - Conversion to SM Type->Name:min_points -2016-05-03 14:20:07 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:07 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-03 14:20:07 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-03 14:20:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:20:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:20:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:20:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:20:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:07 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:20:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:20:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:07 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:20:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:20:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:20:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:20:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:20:07 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:20:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:20:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:20:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:20:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:20:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:20:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:20:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:07 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:20:07 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:20:07 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:20:07 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:20:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:20:07 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:20:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:20:07 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:20:07 INFO WorkspaceExplorerServiceImpl:142 - end time - 210 msc 0 sec -2016-05-03 14:20:07 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:20:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:20:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:20:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:20:12 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS -2016-05-03 14:20:12 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:20:12 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:20:13 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS - KMEANS - A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - k - expected Number of Clusters - Name of the parameter: k. expected Number of Clusters - - - - 3 - - - - max_runs - max runs of the clustering procedure - Name of the parameter: max_runs. max runs of the clustering procedure - - - - 10 - - - - max_optimization_steps - max number of internal optimization steps - Name of the parameter: max_optimization_steps. max number of internal optimization steps - - - - 5 - - - - min_points - number of points which define an outlier set - Name of the parameter: min_points. number of points which define an outlier set - - - - 2 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 14:20:13 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 14:20:13 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 14:20:13 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-03 14:20:13 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-03 14:20:13 DEBUG SClient4WPS:300 - WPSClient->Input: - k - expected Number of Clusters - Name of the parameter: k. expected Number of Clusters - - - - 3 - - -2016-05-03 14:20:13 DEBUG SClient4WPS:300 - WPSClient->Input: - max_runs - max runs of the clustering procedure - Name of the parameter: max_runs. max runs of the clustering procedure - - - - 10 - - -2016-05-03 14:20:13 DEBUG SClient4WPS:300 - WPSClient->Input: - max_optimization_steps - max number of internal optimization steps - Name of the parameter: max_optimization_steps. max number of internal optimization steps - - - - 5 - - -2016-05-03 14:20:13 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - number of points which define an outlier set - Name of the parameter: min_points. number of points which define an outlier set - - - - 2 - - -2016-05-03 14:20:13 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 14:20:13 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-03 14:20:13 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 14:20:13 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:20:13 DEBUG WPS2SM:324 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-03 14:20:13 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:20:13 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:20:13 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:20:13 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:20:13 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 14:20:13 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-03 14:20:13 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:13 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:20:13 DEBUG WPS2SM:299 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-03 14:20:13 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:13 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:20:13 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:20:13 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:20:13 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:20:13 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-03 14:20:13 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-03 14:20:13 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-03 14:20:13 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:20:13 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-03 14:20:13 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:20:13 DEBUG WPS2SM:338 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-03 14:20:13 DEBUG WPS2SM:339 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-03 14:20:13 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:13 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:20:13 DEBUG WPS2SM:299 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-03 14:20:13 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:13 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:20:13 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-03 14:20:13 DEBUG WPS2SM:338 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-03 14:20:13 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-03 14:20:13 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:13 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-03 14:20:13 DEBUG WPS2SM:299 - Conversion to SM Type->k is a Literal Input -2016-05-03 14:20:13 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:20:13 DEBUG WPS2SM:100 - Guessed default value: 3 -2016-05-03 14:20:13 DEBUG WPS2SM:338 - Conversion to SM Type->Title:expected Number of Clusters -2016-05-03 14:20:13 DEBUG WPS2SM:339 - Conversion to SM Type->Name:k -2016-05-03 14:20:13 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:13 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=3, value=null, name=k, description=expected Number of Clusters [Min N. of Entries:1; Max N. of Entries:1; default:3], typology=OBJECT] -2016-05-03 14:20:13 DEBUG WPS2SM:299 - Conversion to SM Type->max_runs is a Literal Input -2016-05-03 14:20:13 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:20:13 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 14:20:13 DEBUG WPS2SM:338 - Conversion to SM Type->Title:max runs of the clustering procedure -2016-05-03 14:20:13 DEBUG WPS2SM:339 - Conversion to SM Type->Name:max_runs -2016-05-03 14:20:13 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:13 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=max_runs, description=max runs of the clustering procedure [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 14:20:13 DEBUG WPS2SM:299 - Conversion to SM Type->max_optimization_steps is a Literal Input -2016-05-03 14:20:13 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:20:13 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 14:20:13 DEBUG WPS2SM:338 - Conversion to SM Type->Title:max number of internal optimization steps -2016-05-03 14:20:13 DEBUG WPS2SM:339 - Conversion to SM Type->Name:max_optimization_steps -2016-05-03 14:20:13 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:13 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=max_optimization_steps, description=max number of internal optimization steps [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 14:20:13 DEBUG WPS2SM:299 - Conversion to SM Type->min_points is a Literal Input -2016-05-03 14:20:13 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:20:13 DEBUG WPS2SM:100 - Guessed default value: 2 -2016-05-03 14:20:13 DEBUG WPS2SM:338 - Conversion to SM Type->Title:number of points which define an outlier set -2016-05-03 14:20:13 DEBUG WPS2SM:339 - Conversion to SM Type->Name:min_points -2016-05-03 14:20:13 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:13 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=2, value=null, name=min_points, description=number of points which define an outlier set [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT] -2016-05-03 14:20:13 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=3, value=null, name=k, description=expected Number of Clusters [Min N. of Entries:1; Max N. of Entries:1; default:3], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=max_runs, description=max runs of the clustering procedure [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=max_optimization_steps, description=max number of internal optimization steps [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=2, value=null, name=min_points, description=number of points which define an outlier set [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT]] -2016-05-03 14:20:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:20:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:20:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:20:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:20:13 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:20:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:20:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:13 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:20:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:20:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:20:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:20:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:20:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:20:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:20:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:20:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:20:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:20:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:20:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:20:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:13 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:20:13 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:20:13 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:20:13 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:20:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:20:13 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:20:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:20:13 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:20:13 INFO WorkspaceExplorerServiceImpl:142 - end time - 158 msc 0 sec -2016-05-03 14:20:13 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:20:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:20:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:20:18 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:20:18 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS -2016-05-03 14:20:18 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:20:18 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:20:18 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS - GENERIC_CHARTS - An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities. - - - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - TopElementsNumber - Max number of elements, with highest values, to visualize - Name of the parameter: TopElementsNumber. Max number of elements, with highest values, to visualize - - - - 10 - - - - Attributes - The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Attributes. The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - - - - - - - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 14:20:18 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 14:20:18 DEBUG SClient4WPS:300 - WPSClient->Input: - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 14:20:18 DEBUG SClient4WPS:300 - WPSClient->Input: - TopElementsNumber - Max number of elements, with highest values, to visualize - Name of the parameter: TopElementsNumber. Max number of elements, with highest values, to visualize - - - - 10 - - -2016-05-03 14:20:18 DEBUG SClient4WPS:300 - WPSClient->Input: - Attributes - The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Attributes. The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - - - - - -2016-05-03 14:20:18 DEBUG SClient4WPS:300 - WPSClient->Input: - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - -2016-05-03 14:20:18 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 14:20:18 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 14:20:18 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:20:18 DEBUG WPS2SM:324 - Conversion to SM Type->InputTable is a Complex Input -2016-05-03 14:20:18 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:20:18 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:20:18 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:20:18 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:20:18 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 14:20:18 DEBUG WPS2SM:339 - Conversion to SM Type->Name:InputTable -2016-05-03 14:20:18 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:18 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:20:18 DEBUG WPS2SM:299 - Conversion to SM Type->TopElementsNumber is a Literal Input -2016-05-03 14:20:18 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:20:18 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 14:20:18 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Max number of elements, with highest values, to visualize -2016-05-03 14:20:18 DEBUG WPS2SM:339 - Conversion to SM Type->Name:TopElementsNumber -2016-05-03 14:20:18 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=TopElementsNumber, description=Max number of elements, with highest values, to visualize [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 14:20:18 DEBUG WPS2SM:299 - Conversion to SM Type->Attributes is a Literal Input -2016-05-03 14:20:18 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:20:18 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:20:18 DEBUG WPS2SM:110 - Machter title: The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:20:18 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:20:18 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-03 14:20:18 DEBUG WPS2SM:113 - Machter start: 42 -2016-05-03 14:20:18 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-03 14:20:18 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:20:18 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:20:18 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:20:18 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] -2016-05-03 14:20:18 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Attributes -2016-05-03 14:20:18 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:18 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:20:18 DEBUG WPS2SM:299 - Conversion to SM Type->Quantities is a Literal Input -2016-05-03 14:20:18 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:20:18 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:20:18 DEBUG WPS2SM:110 - Machter title: The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:20:18 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:20:18 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-03 14:20:18 DEBUG WPS2SM:113 - Machter start: 38 -2016-05-03 14:20:18 DEBUG WPS2SM:114 - Machter end: 99 -2016-05-03 14:20:18 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:20:18 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:20:18 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:20:18 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] -2016-05-03 14:20:18 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Quantities -2016-05-03 14:20:18 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:18 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:20:18 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=TopElementsNumber, description=Max number of elements, with highest values, to visualize [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST]] -2016-05-03 14:20:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:20:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:20:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:20:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:20:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:20:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:20:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:18 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:20:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:20:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:20:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:20:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:20:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:20:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:20:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:20:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:20:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:20:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:20:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:20:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:18 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:20:18 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:20:18 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:20:18 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:20:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:20:18 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:20:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:20:18 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:20:18 INFO WorkspaceExplorerServiceImpl:142 - end time - 162 msc 0 sec -2016-05-03 14:20:18 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:20:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:20:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:20:28 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:20:28 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART -2016-05-03 14:20:28 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:20:28 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:20:28 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART - GEO_CHART - An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country. - - - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - Longitude - The column containing longitude decimal values [the name of a column from InputTable] - Name of the parameter: Longitude. The column containing longitude decimal values [the name of a column from InputTable] - - - - long - - - - Latitude - The column containing latitude decimal values [the name of a column from InputTable] - Name of the parameter: Latitude. The column containing latitude decimal values [the name of a column from InputTable] - - - - lat - - - - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 14:20:28 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 14:20:28 DEBUG SClient4WPS:300 - WPSClient->Input: - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 14:20:28 DEBUG SClient4WPS:300 - WPSClient->Input: - Longitude - The column containing longitude decimal values [the name of a column from InputTable] - Name of the parameter: Longitude. The column containing longitude decimal values [the name of a column from InputTable] - - - - long - - -2016-05-03 14:20:28 DEBUG SClient4WPS:300 - WPSClient->Input: - Latitude - The column containing latitude decimal values [the name of a column from InputTable] - Name of the parameter: Latitude. The column containing latitude decimal values [the name of a column from InputTable] - - - - lat - - -2016-05-03 14:20:28 DEBUG SClient4WPS:300 - WPSClient->Input: - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - -2016-05-03 14:20:28 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 14:20:28 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 14:20:28 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:20:28 DEBUG WPS2SM:324 - Conversion to SM Type->InputTable is a Complex Input -2016-05-03 14:20:28 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:20:28 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:20:28 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:20:28 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:20:28 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 14:20:28 DEBUG WPS2SM:339 - Conversion to SM Type->Name:InputTable -2016-05-03 14:20:28 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:28 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:20:28 DEBUG WPS2SM:299 - Conversion to SM Type->Longitude is a Literal Input -2016-05-03 14:20:28 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:28 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:20:28 DEBUG WPS2SM:100 - Guessed default value: long -2016-05-03 14:20:28 DEBUG WPS2SM:129 - Machter title: The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long] -2016-05-03 14:20:28 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:20:28 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-03 14:20:28 DEBUG WPS2SM:132 - Machter start: 48 -2016-05-03 14:20:28 DEBUG WPS2SM:133 - Machter end: 84 -2016-05-03 14:20:28 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:20:28 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:20:28 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing longitude decimal values [the name of a column from InputTable] -2016-05-03 14:20:28 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Longitude -2016-05-03 14:20:28 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:28 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Longitude, description=The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long], typology=COLUMN] -2016-05-03 14:20:28 DEBUG WPS2SM:299 - Conversion to SM Type->Latitude is a Literal Input -2016-05-03 14:20:28 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:28 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:20:28 DEBUG WPS2SM:100 - Guessed default value: lat -2016-05-03 14:20:28 DEBUG WPS2SM:129 - Machter title: The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat] -2016-05-03 14:20:28 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:20:28 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-03 14:20:28 DEBUG WPS2SM:132 - Machter start: 47 -2016-05-03 14:20:28 DEBUG WPS2SM:133 - Machter end: 83 -2016-05-03 14:20:28 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:20:28 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:20:28 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing latitude decimal values [the name of a column from InputTable] -2016-05-03 14:20:28 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Latitude -2016-05-03 14:20:28 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:28 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Latitude, description=The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat], typology=COLUMN] -2016-05-03 14:20:28 DEBUG WPS2SM:299 - Conversion to SM Type->Quantities is a Literal Input -2016-05-03 14:20:28 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:28 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:20:28 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:20:28 DEBUG WPS2SM:110 - Machter title: The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:20:28 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:20:28 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-03 14:20:28 DEBUG WPS2SM:113 - Machter start: 38 -2016-05-03 14:20:28 DEBUG WPS2SM:114 - Machter end: 99 -2016-05-03 14:20:28 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:20:28 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:20:28 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:20:28 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] -2016-05-03 14:20:28 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Quantities -2016-05-03 14:20:28 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:28 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:20:28 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=Longitude, description=The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long], typology=COLUMN], Parameter [name=Latitude, description=The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat], typology=COLUMN], Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST]] -2016-05-03 14:20:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:20:28 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:20:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:20:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:20:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:20:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:20:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:28 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:20:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:20:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:20:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:28 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:20:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:20:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:20:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:20:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:20:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:20:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:20:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:20:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:20:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:28 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:20:28 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:20:28 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:20:28 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:20:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:20:28 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:20:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:20:28 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:20:28 INFO WorkspaceExplorerServiceImpl:142 - end time - 167 msc 0 sec -2016-05-03 14:20:28 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:20:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:20:32 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:20:32 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:20:32 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART -2016-05-03 14:20:32 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:20:32 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:20:32 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART - TIME_GEO_CHART - An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country. - - - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - Longitude - The column containing longitude decimal values [the name of a column from InputTable] - Name of the parameter: Longitude. The column containing longitude decimal values [the name of a column from InputTable] - - - - long - - - - Latitude - The column containing latitude decimal values [the name of a column from InputTable] - Name of the parameter: Latitude. The column containing latitude decimal values [the name of a column from InputTable] - - - - lat - - - - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - - - Time - The column containing time information [the name of a column from InputTable] - Name of the parameter: Time. The column containing time information [the name of a column from InputTable] - - - - year - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 14:20:32 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 14:20:32 DEBUG SClient4WPS:300 - WPSClient->Input: - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 14:20:32 DEBUG SClient4WPS:300 - WPSClient->Input: - Longitude - The column containing longitude decimal values [the name of a column from InputTable] - Name of the parameter: Longitude. The column containing longitude decimal values [the name of a column from InputTable] - - - - long - - -2016-05-03 14:20:32 DEBUG SClient4WPS:300 - WPSClient->Input: - Latitude - The column containing latitude decimal values [the name of a column from InputTable] - Name of the parameter: Latitude. The column containing latitude decimal values [the name of a column from InputTable] - - - - lat - - -2016-05-03 14:20:32 DEBUG SClient4WPS:300 - WPSClient->Input: - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - -2016-05-03 14:20:32 DEBUG SClient4WPS:300 - WPSClient->Input: - Time - The column containing time information [the name of a column from InputTable] - Name of the parameter: Time. The column containing time information [the name of a column from InputTable] - - - - year - - -2016-05-03 14:20:32 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 14:20:32 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 14:20:32 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:20:32 DEBUG WPS2SM:324 - Conversion to SM Type->InputTable is a Complex Input -2016-05-03 14:20:32 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:20:32 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:20:32 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:20:32 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:20:32 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 14:20:32 DEBUG WPS2SM:339 - Conversion to SM Type->Name:InputTable -2016-05-03 14:20:32 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:32 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:20:32 DEBUG WPS2SM:299 - Conversion to SM Type->Longitude is a Literal Input -2016-05-03 14:20:32 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:32 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:20:32 DEBUG WPS2SM:100 - Guessed default value: long -2016-05-03 14:20:32 DEBUG WPS2SM:129 - Machter title: The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long] -2016-05-03 14:20:32 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:20:32 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-03 14:20:32 DEBUG WPS2SM:132 - Machter start: 48 -2016-05-03 14:20:32 DEBUG WPS2SM:133 - Machter end: 84 -2016-05-03 14:20:32 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:20:32 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:20:32 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing longitude decimal values [the name of a column from InputTable] -2016-05-03 14:20:32 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Longitude -2016-05-03 14:20:32 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:32 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Longitude, description=The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long], typology=COLUMN] -2016-05-03 14:20:32 DEBUG WPS2SM:299 - Conversion to SM Type->Latitude is a Literal Input -2016-05-03 14:20:32 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:32 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:20:32 DEBUG WPS2SM:100 - Guessed default value: lat -2016-05-03 14:20:32 DEBUG WPS2SM:129 - Machter title: The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat] -2016-05-03 14:20:32 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:20:32 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-03 14:20:32 DEBUG WPS2SM:132 - Machter start: 47 -2016-05-03 14:20:32 DEBUG WPS2SM:133 - Machter end: 83 -2016-05-03 14:20:32 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:20:32 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:20:32 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing latitude decimal values [the name of a column from InputTable] -2016-05-03 14:20:32 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Latitude -2016-05-03 14:20:32 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:32 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Latitude, description=The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat], typology=COLUMN] -2016-05-03 14:20:32 DEBUG WPS2SM:299 - Conversion to SM Type->Quantities is a Literal Input -2016-05-03 14:20:32 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:32 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:20:32 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:20:32 DEBUG WPS2SM:110 - Machter title: The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:20:32 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:20:32 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-03 14:20:32 DEBUG WPS2SM:113 - Machter start: 38 -2016-05-03 14:20:32 DEBUG WPS2SM:114 - Machter end: 99 -2016-05-03 14:20:32 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:20:32 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:20:32 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:20:32 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] -2016-05-03 14:20:32 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Quantities -2016-05-03 14:20:32 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:32 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:20:32 DEBUG WPS2SM:299 - Conversion to SM Type->Time is a Literal Input -2016-05-03 14:20:32 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:20:32 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:20:32 DEBUG WPS2SM:100 - Guessed default value: year -2016-05-03 14:20:32 DEBUG WPS2SM:129 - Machter title: The column containing time information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:year] -2016-05-03 14:20:32 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:20:32 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-03 14:20:32 DEBUG WPS2SM:132 - Machter start: 40 -2016-05-03 14:20:32 DEBUG WPS2SM:133 - Machter end: 76 -2016-05-03 14:20:32 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:20:32 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:20:32 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing time information [the name of a column from InputTable] -2016-05-03 14:20:32 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Time -2016-05-03 14:20:32 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:20:32 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Time, description=The column containing time information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:year], typology=COLUMN] -2016-05-03 14:20:32 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=Longitude, description=The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long], typology=COLUMN], Parameter [name=Latitude, description=The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat], typology=COLUMN], Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], Parameter [name=Time, description=The column containing time information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:year], typology=COLUMN]] -2016-05-03 14:20:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:20:32 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:20:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:20:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:20:32 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:20:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:20:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:32 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:20:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:20:32 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:20:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:20:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:20:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:20:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:20:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:20:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:20:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:20:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:20:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:20:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:20:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:20:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:20:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:20:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:20:32 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:20:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:20:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:20:33 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:20:33 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:20:33 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:20:33 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:20:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:20:33 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:20:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:20:33 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:20:33 INFO WorkspaceExplorerServiceImpl:142 - end time - 160 msc 0 sec -2016-05-03 14:20:33 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:20:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:20:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:23:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:23:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:23:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:23:03 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS -2016-05-03 14:23:03 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:23:03 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:23:04 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS - TIME_SERIES_CHARTS - An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed. - - - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - Attributes - The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Attributes. The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - - - - - - - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - - - Time - The column containing time information [the name of a column from InputTable] - Name of the parameter: Time. The column containing time information [the name of a column from InputTable] - - - - year - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 14:23:04 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 14:23:04 DEBUG SClient4WPS:300 - WPSClient->Input: - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 14:23:04 DEBUG SClient4WPS:300 - WPSClient->Input: - Attributes - The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Attributes. The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - - - - - -2016-05-03 14:23:04 DEBUG SClient4WPS:300 - WPSClient->Input: - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - -2016-05-03 14:23:04 DEBUG SClient4WPS:300 - WPSClient->Input: - Time - The column containing time information [the name of a column from InputTable] - Name of the parameter: Time. The column containing time information [the name of a column from InputTable] - - - - year - - -2016-05-03 14:23:04 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 14:23:04 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 14:23:04 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:23:04 DEBUG WPS2SM:324 - Conversion to SM Type->InputTable is a Complex Input -2016-05-03 14:23:04 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:23:04 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:23:04 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:23:04 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:23:04 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 14:23:04 DEBUG WPS2SM:339 - Conversion to SM Type->Name:InputTable -2016-05-03 14:23:04 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:04 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:23:04 DEBUG WPS2SM:299 - Conversion to SM Type->Attributes is a Literal Input -2016-05-03 14:23:04 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:04 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:04 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:23:04 DEBUG WPS2SM:110 - Machter title: The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:23:04 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:23:04 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-03 14:23:04 DEBUG WPS2SM:113 - Machter start: 42 -2016-05-03 14:23:04 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-03 14:23:04 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:23:04 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:04 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:23:04 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] -2016-05-03 14:23:04 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Attributes -2016-05-03 14:23:04 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:04 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:23:04 DEBUG WPS2SM:299 - Conversion to SM Type->Quantities is a Literal Input -2016-05-03 14:23:04 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:04 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:04 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:23:04 DEBUG WPS2SM:110 - Machter title: The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:23:04 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:23:04 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-03 14:23:04 DEBUG WPS2SM:113 - Machter start: 38 -2016-05-03 14:23:04 DEBUG WPS2SM:114 - Machter end: 99 -2016-05-03 14:23:04 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:23:04 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:04 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:23:04 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] -2016-05-03 14:23:04 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Quantities -2016-05-03 14:23:04 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:04 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:23:04 DEBUG WPS2SM:299 - Conversion to SM Type->Time is a Literal Input -2016-05-03 14:23:04 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:04 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:04 DEBUG WPS2SM:100 - Guessed default value: year -2016-05-03 14:23:04 DEBUG WPS2SM:129 - Machter title: The column containing time information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:year] -2016-05-03 14:23:04 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:23:04 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-03 14:23:04 DEBUG WPS2SM:132 - Machter start: 40 -2016-05-03 14:23:04 DEBUG WPS2SM:133 - Machter end: 76 -2016-05-03 14:23:04 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:23:04 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:04 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing time information [the name of a column from InputTable] -2016-05-03 14:23:04 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Time -2016-05-03 14:23:04 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:04 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Time, description=The column containing time information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:year], typology=COLUMN] -2016-05-03 14:23:04 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], Parameter [name=Time, description=The column containing time information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:year], typology=COLUMN]] -2016-05-03 14:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:23:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:23:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:23:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:23:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:23:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:23:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:23:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:23:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:23:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:23:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:23:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:23:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:23:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:23:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:23:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:23:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:23:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 143 msc 0 sec -2016-05-03 14:23:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:23:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:23:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:23:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:23:12 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART -2016-05-03 14:23:12 DEBUG WPS2SM:324 - Conversion to SM Type->InputTable is a Complex Input -2016-05-03 14:23:12 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:23:12 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:23:12 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:23:12 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:23:12 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 14:23:12 DEBUG WPS2SM:339 - Conversion to SM Type->Name:InputTable -2016-05-03 14:23:12 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:12 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:23:12 DEBUG WPS2SM:299 - Conversion to SM Type->Longitude is a Literal Input -2016-05-03 14:23:12 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:12 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:12 DEBUG WPS2SM:100 - Guessed default value: long -2016-05-03 14:23:12 DEBUG WPS2SM:129 - Machter title: The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long] -2016-05-03 14:23:12 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:23:12 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-03 14:23:12 DEBUG WPS2SM:132 - Machter start: 48 -2016-05-03 14:23:12 DEBUG WPS2SM:133 - Machter end: 84 -2016-05-03 14:23:12 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:23:12 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:12 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing longitude decimal values [the name of a column from InputTable] -2016-05-03 14:23:12 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Longitude -2016-05-03 14:23:12 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:12 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Longitude, description=The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long], typology=COLUMN] -2016-05-03 14:23:12 DEBUG WPS2SM:299 - Conversion to SM Type->Latitude is a Literal Input -2016-05-03 14:23:12 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:12 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:12 DEBUG WPS2SM:100 - Guessed default value: lat -2016-05-03 14:23:12 DEBUG WPS2SM:129 - Machter title: The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat] -2016-05-03 14:23:12 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:23:12 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-03 14:23:12 DEBUG WPS2SM:132 - Machter start: 47 -2016-05-03 14:23:12 DEBUG WPS2SM:133 - Machter end: 83 -2016-05-03 14:23:12 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:23:12 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:12 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing latitude decimal values [the name of a column from InputTable] -2016-05-03 14:23:12 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Latitude -2016-05-03 14:23:12 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:12 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Latitude, description=The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat], typology=COLUMN] -2016-05-03 14:23:12 DEBUG WPS2SM:299 - Conversion to SM Type->Quantities is a Literal Input -2016-05-03 14:23:12 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:12 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:12 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:23:12 DEBUG WPS2SM:110 - Machter title: The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:23:12 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:23:12 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-03 14:23:12 DEBUG WPS2SM:113 - Machter start: 38 -2016-05-03 14:23:12 DEBUG WPS2SM:114 - Machter end: 99 -2016-05-03 14:23:12 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:23:12 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:12 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:23:12 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] -2016-05-03 14:23:12 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Quantities -2016-05-03 14:23:12 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:12 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:23:12 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=Longitude, description=The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long], typology=COLUMN], Parameter [name=Latitude, description=The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat], typology=COLUMN], Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST]] -2016-05-03 14:23:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:23:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:23:13 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:23:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:23:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:13 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:23:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:23:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:23:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:13 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:23:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:23:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:23:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:23:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:23:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:23:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:13 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:23:13 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:23:13 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:23:13 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:23:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:13 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:23:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:13 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:23:13 INFO WorkspaceExplorerServiceImpl:142 - end time - 155 msc 0 sec -2016-05-03 14:23:13 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:23:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:23:15 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:23:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:23:15 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS -2016-05-03 14:23:15 DEBUG WPS2SM:324 - Conversion to SM Type->InputTable is a Complex Input -2016-05-03 14:23:15 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:23:15 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:23:15 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:23:15 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:23:15 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 14:23:15 DEBUG WPS2SM:339 - Conversion to SM Type->Name:InputTable -2016-05-03 14:23:15 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:15 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:23:15 DEBUG WPS2SM:299 - Conversion to SM Type->TopElementsNumber is a Literal Input -2016-05-03 14:23:15 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:15 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:23:15 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 14:23:15 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Max number of elements, with highest values, to visualize -2016-05-03 14:23:15 DEBUG WPS2SM:339 - Conversion to SM Type->Name:TopElementsNumber -2016-05-03 14:23:15 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:15 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=TopElementsNumber, description=Max number of elements, with highest values, to visualize [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 14:23:15 DEBUG WPS2SM:299 - Conversion to SM Type->Attributes is a Literal Input -2016-05-03 14:23:15 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:15 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:15 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:23:15 DEBUG WPS2SM:110 - Machter title: The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:23:15 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:23:15 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-03 14:23:15 DEBUG WPS2SM:113 - Machter start: 42 -2016-05-03 14:23:15 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-03 14:23:15 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:23:15 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:15 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:23:15 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] -2016-05-03 14:23:15 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Attributes -2016-05-03 14:23:15 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:15 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:23:15 DEBUG WPS2SM:299 - Conversion to SM Type->Quantities is a Literal Input -2016-05-03 14:23:15 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:15 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:15 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:23:15 DEBUG WPS2SM:110 - Machter title: The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:23:15 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:23:15 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-03 14:23:15 DEBUG WPS2SM:113 - Machter start: 38 -2016-05-03 14:23:15 DEBUG WPS2SM:114 - Machter end: 99 -2016-05-03 14:23:15 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:23:15 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:15 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:23:15 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] -2016-05-03 14:23:15 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Quantities -2016-05-03 14:23:15 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:15 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:23:15 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=TopElementsNumber, description=Max number of elements, with highest values, to visualize [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST]] -2016-05-03 14:23:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:23:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:23:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:23:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:23:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:15 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:23:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:23:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:23:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:23:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:23:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:23:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:23:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:23:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:15 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:23:15 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:23:15 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:23:15 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:23:15 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:15 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:23:15 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:15 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:23:15 INFO WorkspaceExplorerServiceImpl:142 - end time - 144 msc 0 sec -2016-05-03 14:23:15 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:23:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:23:20 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:23:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:23:24 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:23:24 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:23:24 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART -2016-05-03 14:23:24 DEBUG WPS2SM:324 - Conversion to SM Type->InputTable is a Complex Input -2016-05-03 14:23:24 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:23:24 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:23:24 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:23:24 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:23:24 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 14:23:24 DEBUG WPS2SM:339 - Conversion to SM Type->Name:InputTable -2016-05-03 14:23:24 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:24 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:23:24 DEBUG WPS2SM:299 - Conversion to SM Type->Longitude is a Literal Input -2016-05-03 14:23:24 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:24 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:24 DEBUG WPS2SM:100 - Guessed default value: long -2016-05-03 14:23:24 DEBUG WPS2SM:129 - Machter title: The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long] -2016-05-03 14:23:24 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:23:24 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-03 14:23:24 DEBUG WPS2SM:132 - Machter start: 48 -2016-05-03 14:23:24 DEBUG WPS2SM:133 - Machter end: 84 -2016-05-03 14:23:24 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:23:24 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:24 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing longitude decimal values [the name of a column from InputTable] -2016-05-03 14:23:24 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Longitude -2016-05-03 14:23:24 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:24 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Longitude, description=The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long], typology=COLUMN] -2016-05-03 14:23:24 DEBUG WPS2SM:299 - Conversion to SM Type->Latitude is a Literal Input -2016-05-03 14:23:24 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:24 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:24 DEBUG WPS2SM:100 - Guessed default value: lat -2016-05-03 14:23:24 DEBUG WPS2SM:129 - Machter title: The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat] -2016-05-03 14:23:24 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:23:24 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-03 14:23:24 DEBUG WPS2SM:132 - Machter start: 47 -2016-05-03 14:23:24 DEBUG WPS2SM:133 - Machter end: 83 -2016-05-03 14:23:24 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:23:24 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:24 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing latitude decimal values [the name of a column from InputTable] -2016-05-03 14:23:24 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Latitude -2016-05-03 14:23:24 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:24 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Latitude, description=The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat], typology=COLUMN] -2016-05-03 14:23:24 DEBUG WPS2SM:299 - Conversion to SM Type->Quantities is a Literal Input -2016-05-03 14:23:24 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:24 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:24 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:23:24 DEBUG WPS2SM:110 - Machter title: The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:23:24 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:23:24 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-03 14:23:24 DEBUG WPS2SM:113 - Machter start: 38 -2016-05-03 14:23:24 DEBUG WPS2SM:114 - Machter end: 99 -2016-05-03 14:23:24 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:23:24 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:24 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:23:24 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] -2016-05-03 14:23:24 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Quantities -2016-05-03 14:23:24 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:24 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:23:24 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=Longitude, description=The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long], typology=COLUMN], Parameter [name=Latitude, description=The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat], typology=COLUMN], Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST]] -2016-05-03 14:23:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:23:25 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:23:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:23:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:23:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:25 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:23:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:23:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:23:25 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:23:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:23:25 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:23:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:23:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:23:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:23:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:25 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:23:25 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:23:25 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:23:25 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:23:25 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:25 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:23:25 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:25 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:23:25 INFO WorkspaceExplorerServiceImpl:142 - end time - 146 msc 0 sec -2016-05-03 14:23:25 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:23:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:23:37 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:23:37 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:23:37 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART -2016-05-03 14:23:37 DEBUG WPS2SM:324 - Conversion to SM Type->InputTable is a Complex Input -2016-05-03 14:23:37 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:23:37 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:23:37 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:23:37 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:23:37 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 14:23:37 DEBUG WPS2SM:339 - Conversion to SM Type->Name:InputTable -2016-05-03 14:23:37 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:37 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:23:37 DEBUG WPS2SM:299 - Conversion to SM Type->Longitude is a Literal Input -2016-05-03 14:23:37 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:37 DEBUG WPS2SM:100 - Guessed default value: long -2016-05-03 14:23:37 DEBUG WPS2SM:129 - Machter title: The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long] -2016-05-03 14:23:37 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:23:37 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-03 14:23:37 DEBUG WPS2SM:132 - Machter start: 48 -2016-05-03 14:23:37 DEBUG WPS2SM:133 - Machter end: 84 -2016-05-03 14:23:37 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:23:37 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:37 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing longitude decimal values [the name of a column from InputTable] -2016-05-03 14:23:37 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Longitude -2016-05-03 14:23:37 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:37 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Longitude, description=The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long], typology=COLUMN] -2016-05-03 14:23:37 DEBUG WPS2SM:299 - Conversion to SM Type->Latitude is a Literal Input -2016-05-03 14:23:37 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:37 DEBUG WPS2SM:100 - Guessed default value: lat -2016-05-03 14:23:37 DEBUG WPS2SM:129 - Machter title: The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat] -2016-05-03 14:23:37 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:23:37 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-03 14:23:37 DEBUG WPS2SM:132 - Machter start: 47 -2016-05-03 14:23:37 DEBUG WPS2SM:133 - Machter end: 83 -2016-05-03 14:23:37 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:23:37 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:37 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing latitude decimal values [the name of a column from InputTable] -2016-05-03 14:23:37 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Latitude -2016-05-03 14:23:37 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:37 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Latitude, description=The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat], typology=COLUMN] -2016-05-03 14:23:37 DEBUG WPS2SM:299 - Conversion to SM Type->Quantities is a Literal Input -2016-05-03 14:23:37 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:37 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:23:37 DEBUG WPS2SM:110 - Machter title: The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:23:37 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:23:37 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-03 14:23:37 DEBUG WPS2SM:113 - Machter start: 38 -2016-05-03 14:23:37 DEBUG WPS2SM:114 - Machter end: 99 -2016-05-03 14:23:37 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:23:37 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:37 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:23:37 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] -2016-05-03 14:23:37 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Quantities -2016-05-03 14:23:37 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:37 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:23:37 DEBUG WPS2SM:299 - Conversion to SM Type->Time is a Literal Input -2016-05-03 14:23:37 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:37 DEBUG WPS2SM:100 - Guessed default value: year -2016-05-03 14:23:37 DEBUG WPS2SM:129 - Machter title: The column containing time information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:year] -2016-05-03 14:23:37 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:23:37 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-03 14:23:37 DEBUG WPS2SM:132 - Machter start: 40 -2016-05-03 14:23:37 DEBUG WPS2SM:133 - Machter end: 76 -2016-05-03 14:23:37 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:23:37 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:37 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing time information [the name of a column from InputTable] -2016-05-03 14:23:37 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Time -2016-05-03 14:23:37 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:37 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Time, description=The column containing time information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:year], typology=COLUMN] -2016-05-03 14:23:37 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=Longitude, description=The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long], typology=COLUMN], Parameter [name=Latitude, description=The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat], typology=COLUMN], Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], Parameter [name=Time, description=The column containing time information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:year], typology=COLUMN]] -2016-05-03 14:23:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:23:38 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:23:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:23:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:23:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:23:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:23:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:38 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:23:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:23:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:23:38 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:23:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:23:38 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:23:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:23:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:23:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:23:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:38 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:23:38 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:23:38 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:23:38 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:23:38 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:38 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:23:38 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:38 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:23:38 INFO WorkspaceExplorerServiceImpl:142 - end time - 177 msc 0 sec -2016-05-03 14:23:38 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:23:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:41 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:23:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:23:41 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS -2016-05-03 14:23:41 DEBUG WPS2SM:324 - Conversion to SM Type->InputTable is a Complex Input -2016-05-03 14:23:41 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:23:41 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:23:41 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:23:41 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:23:41 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 14:23:41 DEBUG WPS2SM:339 - Conversion to SM Type->Name:InputTable -2016-05-03 14:23:41 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:41 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:23:41 DEBUG WPS2SM:299 - Conversion to SM Type->Attributes is a Literal Input -2016-05-03 14:23:41 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:41 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:41 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:23:41 DEBUG WPS2SM:110 - Machter title: The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:23:41 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:23:41 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-03 14:23:41 DEBUG WPS2SM:113 - Machter start: 42 -2016-05-03 14:23:41 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-03 14:23:41 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:23:41 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:41 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:23:41 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] -2016-05-03 14:23:41 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Attributes -2016-05-03 14:23:41 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:41 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:23:41 DEBUG WPS2SM:299 - Conversion to SM Type->Quantities is a Literal Input -2016-05-03 14:23:41 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:41 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:41 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:23:41 DEBUG WPS2SM:110 - Machter title: The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:23:41 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:23:41 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-03 14:23:41 DEBUG WPS2SM:113 - Machter start: 38 -2016-05-03 14:23:41 DEBUG WPS2SM:114 - Machter end: 99 -2016-05-03 14:23:41 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:23:41 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:41 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:23:41 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] -2016-05-03 14:23:41 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Quantities -2016-05-03 14:23:41 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:41 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:23:41 DEBUG WPS2SM:299 - Conversion to SM Type->Time is a Literal Input -2016-05-03 14:23:41 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:41 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:41 DEBUG WPS2SM:100 - Guessed default value: year -2016-05-03 14:23:41 DEBUG WPS2SM:129 - Machter title: The column containing time information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:year] -2016-05-03 14:23:41 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:23:41 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-03 14:23:41 DEBUG WPS2SM:132 - Machter start: 40 -2016-05-03 14:23:41 DEBUG WPS2SM:133 - Machter end: 76 -2016-05-03 14:23:41 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:23:41 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:41 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing time information [the name of a column from InputTable] -2016-05-03 14:23:41 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Time -2016-05-03 14:23:41 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:41 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Time, description=The column containing time information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:year], typology=COLUMN] -2016-05-03 14:23:41 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], Parameter [name=Time, description=The column containing time information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:year], typology=COLUMN]] -2016-05-03 14:23:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:23:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:23:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:23:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:23:41 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:23:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:23:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:41 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:23:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:23:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:23:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:23:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:41 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:23:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:23:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:23:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:23:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:23:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:23:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:41 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:23:41 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:23:41 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:23:41 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:23:41 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:41 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:23:41 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:41 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:23:41 INFO WorkspaceExplorerServiceImpl:142 - end time - 129 msc 0 sec -2016-05-03 14:23:41 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:23:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:23:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:23:54 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:23:54 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS -2016-05-03 14:23:54 DEBUG WPS2SM:324 - Conversion to SM Type->InputTable is a Complex Input -2016-05-03 14:23:54 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:23:54 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:23:54 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:23:54 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:23:54 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 14:23:54 DEBUG WPS2SM:339 - Conversion to SM Type->Name:InputTable -2016-05-03 14:23:54 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:54 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:23:54 DEBUG WPS2SM:299 - Conversion to SM Type->Attributes is a Literal Input -2016-05-03 14:23:54 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:54 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:54 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:23:54 DEBUG WPS2SM:110 - Machter title: The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:23:54 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:23:54 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-03 14:23:54 DEBUG WPS2SM:113 - Machter start: 42 -2016-05-03 14:23:54 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-03 14:23:54 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:23:54 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:54 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:23:54 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] -2016-05-03 14:23:54 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Attributes -2016-05-03 14:23:54 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:54 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:23:54 DEBUG WPS2SM:299 - Conversion to SM Type->Quantities is a Literal Input -2016-05-03 14:23:54 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:54 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:54 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:23:54 DEBUG WPS2SM:110 - Machter title: The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:23:54 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 14:23:54 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-03 14:23:54 DEBUG WPS2SM:113 - Machter start: 38 -2016-05-03 14:23:54 DEBUG WPS2SM:114 - Machter end: 99 -2016-05-03 14:23:54 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 14:23:54 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:54 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 14:23:54 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] -2016-05-03 14:23:54 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Quantities -2016-05-03 14:23:54 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:54 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 14:23:54 DEBUG WPS2SM:299 - Conversion to SM Type->Time is a Literal Input -2016-05-03 14:23:54 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:54 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:54 DEBUG WPS2SM:100 - Guessed default value: year -2016-05-03 14:23:54 DEBUG WPS2SM:129 - Machter title: The column containing time information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:year] -2016-05-03 14:23:54 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:23:54 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-03 14:23:54 DEBUG WPS2SM:132 - Machter start: 40 -2016-05-03 14:23:54 DEBUG WPS2SM:133 - Machter end: 76 -2016-05-03 14:23:54 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:23:54 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-03 14:23:54 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing time information [the name of a column from InputTable] -2016-05-03 14:23:54 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Time -2016-05-03 14:23:54 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:54 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Time, description=The column containing time information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:year], typology=COLUMN] -2016-05-03 14:23:54 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], Parameter [name=Time, description=The column containing time information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:year], typology=COLUMN]] -2016-05-03 14:23:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:23:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:23:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:23:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:23:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:54 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:23:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:23:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:23:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:23:54 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:23:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:23:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:23:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:23:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:23:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:54 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:23:54 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:23:54 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:23:54 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:23:54 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:54 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:23:54 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:54 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:23:54 INFO WorkspaceExplorerServiceImpl:142 - end time - 158 msc 0 sec -2016-05-03 14:23:54 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:23:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:23:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:23:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:23:56 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 14:23:56 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:23:56 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:23:57 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 14:23:57 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 14:23:57 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 14:23:57 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 14:23:57 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 14:23:57 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 14:23:57 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:23:57 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 14:23:57 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:23:57 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:23:57 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:23:57 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:23:57 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:23:57 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 14:23:57 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 14:23:57 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 14:23:57 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 14:23:57 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 14:23:57 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 14:23:57 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 14:23:57 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 14:23:57 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:57 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:23:57 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 14:23:57 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:23:57 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:23:57 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:23:57 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:23:57 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 14:23:57 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 14:23:57 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 14:23:57 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 14:23:57 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 14:23:57 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 14:23:57 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 14:23:57 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 14:23:57 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:23:57 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 14:23:57 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 14:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:23:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:23:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:23:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:23:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:57 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:23:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:23:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:23:57 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:23:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:23:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:23:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:23:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:23:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:23:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:23:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:23:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:23:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:23:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:23:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:23:57 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:23:57 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:23:57 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:23:57 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:23:57 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:57 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:23:57 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:23:57 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:23:57 INFO WorkspaceExplorerServiceImpl:142 - end time - 137 msc 0 sec -2016-05-03 14:23:57 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:24:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:09 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:24:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:09 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:24:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:09 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:24:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:24:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:24:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:24:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:24:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:24:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:24:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:24:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:09 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:24:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:24:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:24:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:09 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:24:09 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:24:09 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:24:09 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:24:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:09 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:24:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:09 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:24:09 INFO WorkspaceExplorerServiceImpl:142 - end time - 134 msc 0 sec -2016-05-03 14:24:09 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:10 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:24:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:24:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:24:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:24:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:24:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:24:10 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:24:10 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:24:10 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:24:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:10 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:24:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:10 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:24:10 INFO WorkspaceExplorerServiceImpl:142 - end time - 136 msc 0 sec -2016-05-03 14:24:10 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:24:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:10 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:24:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:24:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:24:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:10 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:24:10 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:24:10 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:24:10 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:24:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:10 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:24:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:10 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:24:10 INFO WorkspaceExplorerServiceImpl:142 - end time - 133 msc 0 sec -2016-05-03 14:24:10 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:11 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:24:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:24:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:11 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:24:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:11 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:24:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:24:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:11 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:24:11 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:24:11 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:24:11 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:24:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:11 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:24:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:11 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:24:11 INFO WorkspaceExplorerServiceImpl:142 - end time - 146 msc 0 sec -2016-05-03 14:24:11 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:24:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:15 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:24:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:24:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:26 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:24:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:26 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:24:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:24:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:24:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:24:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:24:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:24:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:26 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:24:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:26 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:24:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:26 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:24:26 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:24:26 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:24:26 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:24:26 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:26 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:24:26 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:26 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:24:26 INFO WorkspaceExplorerServiceImpl:142 - end time - 138 msc 0 sec -2016-05-03 14:24:26 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:27 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:24:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:27 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:24:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:24:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:24:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:24:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:24:27 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:24:27 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:24:27 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:24:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:27 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:24:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:27 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:24:27 INFO WorkspaceExplorerServiceImpl:142 - end time - 149 msc 0 sec -2016-05-03 14:24:27 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:24:27 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:24:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:27 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:24:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:24:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:27 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:24:27 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:24:27 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:24:27 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:24:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:27 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:24:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:27 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:24:28 INFO WorkspaceExplorerServiceImpl:142 - end time - 127 msc 0 sec -2016-05-03 14:24:28 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:24:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:28 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:24:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:28 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:24:28 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:24:28 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:24:28 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:24:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:28 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:24:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:28 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:24:28 INFO WorkspaceExplorerServiceImpl:142 - end time - 152 msc 0 sec -2016-05-03 14:24:28 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:24:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:28 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:24:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:24:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:24:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:24:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:24:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:24:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:24:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:24:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:28 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:24:28 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:24:28 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:24:28 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:24:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:28 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:24:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:24:28 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:24:28 INFO WorkspaceExplorerServiceImpl:142 - end time - 143 msc 0 sec -2016-05-03 14:24:28 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:24:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:24:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:25:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:25:10 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:26:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:26:05 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:27:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:27:00 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:27:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:27:55 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:28:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:28:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:29:52 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 14:29:52 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 14:29:52 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 14:29:52 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 14:29:52 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 14:29:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:29:52 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 14:29:52 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@4b545f8e -2016-05-03 14:29:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:29:52 INFO ASLSession:352 - Logging the entrance -2016-05-03 14:29:52 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 14:29:52 DEBUG TemplateModel:83 - 2016-05-03 14:29:52, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 14:29:52 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:29:52 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 14:29:54 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 14:29:54 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 14:29:54 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:29:54 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 14:29:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:29:54 INFO ASLSession:352 - Logging the entrance -2016-05-03 14:29:54 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 14:29:54 DEBUG TemplateModel:83 - 2016-05-03 14:29:54, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 14:29:54 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:29:54 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 14:29:54 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 116 ms -2016-05-03 14:29:54 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 14:29:54 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 14:29:54 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 14:29:54 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 14:29:54 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 14:29:54 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 14:29:54 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 14:29:54 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 14:29:54 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 14:29:54 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 14:29:54 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 14:29:54 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 14:29:54 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 14:29:54 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 14:29:54 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 14:29:54 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:29:54 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 14:29:54 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@7bae93c5 -2016-05-03 14:29:54 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@2ec15efd -2016-05-03 14:29:54 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@366d35bc -2016-05-03 14:29:54 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@7c069e8b -2016-05-03 14:29:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 102 ms -2016-05-03 14:29:54 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 14:29:55 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 14:29:55 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 14:29:55 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 14:29:55 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 14:29:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:29:55 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:29:55 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 14:29:55 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 27 ms -2016-05-03 14:29:55 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 14:29:55 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:29:55 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 14:29:55 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:29:55 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 14:29:55 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 14:29:55 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 14:29:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:29:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:29:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:29:55 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 14:29:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:29:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:29:55 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 14:29:55 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 14:29:55 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 14:29:55 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 14:29:55 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 14:29:55 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 14:29:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 14:29:55 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:29:55 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 14:29:55 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 90 ms -2016-05-03 14:29:55 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 14:29:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:29:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:29:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:29:55 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 14:29:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:29:55 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 14:29:56 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 14:29:56 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:29:56 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 14:29:56 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 14:29:56 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 14:29:56 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 14:29:56 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 14:29:56 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 14:29:56 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 14:29:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:29:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:29:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:29:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:29:56 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 14:29:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 14:29:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:29:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:29:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:29:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:29:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:29:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:29:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:29:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:29:56 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 14:29:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 14:29:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:29:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:29:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:29:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:29:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:29:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:29:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:29:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:29:56 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 14:29:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 14:29:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:29:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:29:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:29:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:29:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:29:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:29:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:29:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:29:56 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 14:29:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 14:29:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:29:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:29:57 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 14:29:57 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 14:29:57 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 14:29:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:29:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:29:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:29:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:29:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:29:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:29:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:29:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:29:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:29:57 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 14:29:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:29:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:29:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:29:58 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:29:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:29:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:29:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:29:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:29:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:29:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:29:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:29:58 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 14:29:58 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 14:29:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:29:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:29:58 INFO WorkspaceExplorerServiceImpl:188 - end time - 115 msc 0 sec -2016-05-03 14:29:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:29:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:29:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:29:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:29:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:29:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:29:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:29:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:29:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:29:58 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 14:29:58 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 14:29:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:29:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:29:58 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 14:29:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 14:29:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:29:58 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:29:58 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 14:29:58 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 30 ms -2016-05-03 14:29:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 14:29:58 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:29:58 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 14:29:58 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 14:29:58 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 14:29:58 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 14:29:58 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 14:29:58 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 14:29:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 14:29:58 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 14:29:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 14:29:58 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:29:58 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 14:29:58 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 14:29:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 14:29:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 14:29:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 14:29:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:29:58 INFO WorkspaceExplorerServiceImpl:188 - end time - 358 msc 0 sec -2016-05-03 14:29:58 INFO WorkspaceExplorerServiceImpl:188 - end time - 302 msc 0 sec -2016-05-03 14:30:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:30:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:30:02 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:30:02 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 14:30:02 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:30:02 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:30:02 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 14:30:02 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 14:30:02 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 14:30:02 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 14:30:02 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 14:30:02 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 14:30:02 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:30:02 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 14:30:02 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:30:02 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:30:02 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:30:02 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:30:02 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:30:02 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 14:30:02 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 14:30:02 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 14:30:02 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 14:30:02 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 14:30:02 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 14:30:02 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 14:30:02 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 14:30:02 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:30:02 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:30:02 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 14:30:02 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:30:02 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:30:02 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:30:02 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:30:02 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 14:30:02 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 14:30:02 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 14:30:02 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 14:30:02 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 14:30:02 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 14:30:02 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 14:30:02 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 14:30:02 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:30:02 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 14:30:02 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 14:30:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:30:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:30:02 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:30:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:30:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:02 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:30:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:30:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:02 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:30:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:30:02 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:30:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:30:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:02 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:30:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:02 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:30:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:02 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:30:02 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:30:02 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:30:02 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:30:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:02 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:30:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:02 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:30:02 INFO WorkspaceExplorerServiceImpl:142 - end time - 179 msc 0 sec -2016-05-03 14:30:02 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:30:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:09 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:30:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:30:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:09 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:30:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:30:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:09 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:30:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:30:09 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:30:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:30:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:30:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:30:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:30:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:30:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:30:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:09 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:30:10 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:30:10 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:30:10 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:30:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:10 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:30:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:10 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:30:10 INFO WorkspaceExplorerServiceImpl:142 - end time - 180 msc 0 sec -2016-05-03 14:30:10 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:30:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:30:13 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:30:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:30:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:30:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:30:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:30:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:13 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:30:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:30:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:30:13 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:30:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:30:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:30:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:30:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:30:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:30:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:13 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:30:13 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:30:13 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:30:13 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:30:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:13 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:30:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:13 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:30:13 INFO WorkspaceExplorerServiceImpl:142 - end time - 183 msc 0 sec -2016-05-03 14:30:13 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:30:14 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:30:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:14 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:30:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:30:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:30:14 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:30:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:14 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:30:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:14 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:30:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:14 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:30:14 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:30:14 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:30:14 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:30:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:30:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:30:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:14 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:30:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:14 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:30:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:30:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:14 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:14 INFO WorkspaceExplorerServiceImpl:142 - end time - 161 msc 0 sec -2016-05-03 14:30:14 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:30:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:30:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:30:14 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:30:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:30:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:14 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:30:14 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:30:14 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:30:14 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:30:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:14 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:30:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:14 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:30:14 INFO WorkspaceExplorerServiceImpl:142 - end time - 158 msc 0 sec -2016-05-03 14:30:14 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:30:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:30:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:15 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:15 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:30:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:30:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:30:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:30:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:30:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:15 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:30:15 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:30:15 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:30:15 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:30:15 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:15 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:30:15 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:15 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:30:15 INFO WorkspaceExplorerServiceImpl:142 - end time - 151 msc 0 sec -2016-05-03 14:30:15 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:30:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:30:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:30:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:30:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:15 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:30:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:30:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:15 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:30:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:15 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:30:16 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:30:16 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:30:16 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:30:16 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:16 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:30:16 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:16 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:30:16 INFO WorkspaceExplorerServiceImpl:142 - end time - 169 msc 0 sec -2016-05-03 14:30:16 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:30:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:30:16 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:30:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:30:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:30:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:30:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:30:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:16 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:30:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:30:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:30:16 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:30:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:30:16 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:30:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:30:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:16 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:30:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:30:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:30:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:30:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:30:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:30:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:30:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:30:16 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:30:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:30:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:30:16 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:30:16 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:30:16 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:30:16 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:30:16 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:16 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:30:16 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:30:16 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:30:16 INFO WorkspaceExplorerServiceImpl:142 - end time - 145 msc 0 sec -2016-05-03 14:30:16 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:30:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:30:47 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:31:28 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 14:31:28 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 14:31:28 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 14:31:28 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 14:31:28 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 14:31:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:31:28 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 14:31:28 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@2a2a3de9 -2016-05-03 14:31:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:28 INFO ASLSession:352 - Logging the entrance -2016-05-03 14:31:28 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 14:31:28 DEBUG TemplateModel:83 - 2016-05-03 14:31:28, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 14:31:28 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:31:28 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 14:31:29 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 14:31:29 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 14:31:29 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:31:29 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 14:31:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:29 INFO ASLSession:352 - Logging the entrance -2016-05-03 14:31:29 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 14:31:29 DEBUG TemplateModel:83 - 2016-05-03 14:31:29, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 14:31:29 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:31:30 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 14:31:30 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 128 ms -2016-05-03 14:31:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 14:31:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 14:31:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 14:31:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 14:31:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 14:31:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 14:31:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 14:31:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 14:31:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 14:31:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 14:31:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 14:31:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 14:31:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 14:31:30 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 14:31:30 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 14:31:30 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:31:30 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 14:31:30 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@59ac3dd4 -2016-05-03 14:31:30 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@e519ebe -2016-05-03 14:31:30 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@74b82cbd -2016-05-03 14:31:30 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@77654903 -2016-05-03 14:31:30 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 100 ms -2016-05-03 14:31:30 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 14:31:30 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 14:31:30 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 14:31:30 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 14:31:30 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 14:31:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:30 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:31:30 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 14:31:30 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 19 ms -2016-05-03 14:31:30 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 14:31:30 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:31:30 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 14:31:30 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:31:30 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 14:31:30 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 14:31:30 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 14:31:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:31:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:31:30 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 14:31:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:30 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 14:31:30 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 14:31:30 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 14:31:30 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 14:31:30 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 14:31:30 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 14:31:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 14:31:31 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:31:31 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 14:31:31 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-03 14:31:31 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 14:31:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:31 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 14:31:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:31 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 14:31:31 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:31:31 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 14:31:31 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 14:31:31 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 14:31:31 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 14:31:31 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 14:31:31 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 14:31:31 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 14:31:31 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 14:31:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:31 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 14:31:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 14:31:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:31 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 14:31:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 14:31:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:32 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 14:31:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 14:31:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:32 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 14:31:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 14:31:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:33 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 14:31:33 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 14:31:33 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 14:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:33 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 14:31:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:33 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 14:31:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:33 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 14:31:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:33 INFO WorkspaceExplorerServiceImpl:188 - end time - 104 msc 0 sec -2016-05-03 14:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:33 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 14:31:33 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 14:31:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:33 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 14:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 14:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:33 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:31:33 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 14:31:33 INFO WorkspaceExplorerServiceImpl:188 - end time - 134 msc 0 sec -2016-05-03 14:31:33 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 29 ms -2016-05-03 14:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 14:31:33 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:31:33 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 14:31:33 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 14:31:33 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 14:31:33 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 14:31:33 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 14:31:33 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 14:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 14:31:33 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 14:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 14:31:33 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:31:33 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 14:31:33 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-03 14:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 14:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 14:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 14:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:33 INFO WorkspaceExplorerServiceImpl:188 - end time - 347 msc 0 sec -2016-05-03 14:31:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:38 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:31:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:31:38 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 14:31:38 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:31:38 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:31:39 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 14:31:39 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 14:31:39 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 14:31:39 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 14:31:39 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 14:31:39 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 14:31:39 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:31:39 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 14:31:39 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:31:39 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:31:39 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:31:39 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:31:39 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:31:39 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 14:31:39 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 14:31:39 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 14:31:39 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 14:31:39 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 14:31:39 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 14:31:39 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 14:31:39 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 14:31:39 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:31:39 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:31:39 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 14:31:39 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:31:39 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:31:39 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:31:39 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:31:39 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 14:31:39 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 14:31:39 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 14:31:39 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 14:31:39 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 14:31:39 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 14:31:39 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 14:31:39 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 14:31:39 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:31:39 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 14:31:39 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 14:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:39 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:31:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:31:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:39 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:31:39 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:31:39 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:31:39 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:31:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:39 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:31:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:39 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:31:39 INFO WorkspaceExplorerServiceImpl:142 - end time - 185 msc 0 sec -2016-05-03 14:31:39 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:44 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:44 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:31:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:44 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:31:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:44 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:44 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:31:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:31:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:44 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:31:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:44 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:31:44 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:31:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:44 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:31:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:44 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:31:44 INFO WorkspaceExplorerServiceImpl:142 - end time - 217 msc 0 sec -2016-05-03 14:31:44 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:31:44 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:31:44 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:31:44 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:31:44 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:31:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:44 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:31:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:44 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:31:44 INFO WorkspaceExplorerServiceImpl:142 - end time - 183 msc 0 sec -2016-05-03 14:31:44 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:45 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:45 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:45 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:31:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:45 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:45 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:45 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:45 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:31:45 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:31:45 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:31:45 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:31:45 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:45 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:31:45 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:45 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:31:45 INFO WorkspaceExplorerServiceImpl:142 - end time - 176 msc 0 sec -2016-05-03 14:31:45 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:45 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:45 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:45 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:45 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:31:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:45 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:45 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:45 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:31:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:45 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:31:45 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:31:45 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:31:45 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:31:45 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:45 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:31:45 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:45 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:31:45 INFO WorkspaceExplorerServiceImpl:142 - end time - 169 msc 0 sec -2016-05-03 14:31:45 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:31:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:31:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:48 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:31:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:31:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:48 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:31:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:48 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:31:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:48 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:31:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:48 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:49 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:31:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:31:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 INFO WorkspaceExplorerServiceImpl:142 - end time - 443 msc 0 sec -2016-05-03 14:31:49 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:49 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:31:49 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:31:49 INFO WorkspaceExplorerServiceImpl:142 - end time - 155 msc 0 sec -2016-05-03 14:31:49 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:49 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:31:49 INFO WorkspaceExplorerServiceImpl:142 - end time - 184 msc 0 sec -2016-05-03 14:31:49 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:49 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:49 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:31:49 INFO WorkspaceExplorerServiceImpl:142 - end time - 158 msc 0 sec -2016-05-03 14:31:49 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:50 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:31:50 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:31:50 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:31:50 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:31:50 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:50 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:31:50 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:50 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:31:50 INFO WorkspaceExplorerServiceImpl:142 - end time - 146 msc 0 sec -2016-05-03 14:31:50 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:50 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:31:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:31:50 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:31:50 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:31:50 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:31:50 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:50 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:31:50 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:50 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:31:50 INFO WorkspaceExplorerServiceImpl:142 - end time - 214 msc 0 sec -2016-05-03 14:31:50 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:50 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:50 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:31:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:31:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:51 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:31:51 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:31:51 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:31:51 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:31:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:51 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:31:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:51 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:31:51 INFO WorkspaceExplorerServiceImpl:142 - end time - 135 msc 0 sec -2016-05-03 14:31:51 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:31:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:51 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:31:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:31:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:51 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:31:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:31:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:31:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:31:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:31:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:31:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:31:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:31:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:31:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:31:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:31:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:31:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:31:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:31:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:31:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:31:51 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:31:51 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:31:51 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:31:51 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:31:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:51 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:31:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:31:51 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:31:51 INFO WorkspaceExplorerServiceImpl:142 - end time - 161 msc 0 sec -2016-05-03 14:31:51 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:32:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:32:01 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:32:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:32:01 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 14:32:01 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:32:01 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:32:01 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN - BIOCLIMATE_HSPEN - A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes - - - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 14:32:01 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 14:32:01 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 14:32:01 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 14:32:01 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 14:32:01 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 14:32:01 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:32:01 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 14:32:01 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:32:01 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:32:01 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:32:01 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:32:01 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:32:01 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 14:32:01 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 14:32:01 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 14:32:01 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 14:32:01 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 14:32:01 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 14:32:01 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 14:32:01 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 14:32:01 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:01 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:32:01 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 14:32:01 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:01 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:32:01 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:32:01 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:32:01 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 14:32:01 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 14:32:01 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 14:32:01 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 14:32:01 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 14:32:01 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 14:32:01 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 14:32:01 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 14:32:01 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:01 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 14:32:01 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 14:32:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:32:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:32:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:32:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:32:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:32:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:32:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:32:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:32:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:32:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:32:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:32:01 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:32:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:32:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:32:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:32:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:32:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:32:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:32:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:32:01 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:32:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:32:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:32:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:32:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:32:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:32:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:32:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:32:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:32:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:32:01 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:32:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:32:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:32:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:32:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:32:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:32:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:32:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:32:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:32:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:32:01 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:32:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:32:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:32:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:32:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:32:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:32:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:32:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:32:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:32:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:32:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:32:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:32:01 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:32:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:32:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:32:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:32:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:32:02 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:32:02 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:32:02 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:32:02 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:32:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:32:02 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:32:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:32:02 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:32:02 INFO WorkspaceExplorerServiceImpl:142 - end time - 215 msc 0 sec -2016-05-03 14:32:02 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:32:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:32:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:32:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:32:11 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM -2016-05-03 14:32:11 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:32:11 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:32:11 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM - BIONYM - An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication. - - - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - - - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - - - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - - - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - - - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - - - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - - - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - - - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - - - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - - - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - - - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - - - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - - - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - - - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - - - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - - - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - - - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - - - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - - - - - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 14:32:11 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - -2016-05-03 14:32:11 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - -2016-05-03 14:32:11 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 14:32:11 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-03 14:32:11 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 14:32:11 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:32:11 DEBUG WPS2SM:324 - Conversion to SM Type->RawTaxaNamesTable is a Complex Input -2016-05-03 14:32:11 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:32:11 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:32:11 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:32:11 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawTaxaNamesTable -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->RawNamesColumn is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: rawnames -2016-05-03 14:32:11 DEBUG WPS2SM:129 - Machter title: The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames] -2016-05-03 14:32:11 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:32:11 DEBUG WPS2SM:131 - Machter group: the name of a column from RawTaxaNamesTable -2016-05-03 14:32:11 DEBUG WPS2SM:132 - Machter start: 80 -2016-05-03 14:32:11 DEBUG WPS2SM:133 - Machter end: 123 -2016-05-03 14:32:11 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:32:11 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: RawTaxaNamesTable -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawNamesColumn -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: bionout -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Name of the table which will contain the matches -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OutputTableLabel -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-03 14:32:11 DEBUG WPS2SM:310 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The reference dataset to use -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-03 14:32:11 DEBUG WPS2SM:310 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Parser_Name -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-03 14:32:11 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-03 14:32:11 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-03 14:32:11 DEBUG WPS2SM:310 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-03 14:32:11 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_1 -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_1 -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_1 -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-03 14:32:11 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_2 -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_2 -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_2 -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-03 14:32:11 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_3 -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_3 -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_3 -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-03 14:32:11 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_4 -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_4 -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_4 -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-03 14:32:11 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_5 -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_5 -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-03 14:32:11 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-03 14:32:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:32:11 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:32:11 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-03 14:32:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 14:32:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_5 -2016-05-03 14:32:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:32:11 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-03 14:32:11 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-03 14:32:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:32:11 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:32:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:32:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:32:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:32:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:32:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:32:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:32:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:32:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:32:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:32:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:32:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:32:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:32:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:32:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:32:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:32:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:32:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:32:11 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:32:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:32:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:32:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:32:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:32:11 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:32:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:32:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:32:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:32:11 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:32:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:32:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:32:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:32:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:32:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:32:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:32:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:32:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:32:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:32:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:32:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:32:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:32:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:32:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:32:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:32:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:32:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:32:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:32:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:32:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:32:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:32:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:32:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:32:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:32:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:32:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:32:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:32:11 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:32:11 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:32:11 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:32:11 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:32:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:32:11 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:32:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:32:11 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:32:11 INFO WorkspaceExplorerServiceImpl:142 - end time - 129 msc 0 sec -2016-05-03 14:32:11 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:32:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:32:23 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:33:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:33:18 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:34:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:34:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:35:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:35:08 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:36:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:36:03 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:36:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:36:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:38:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:38:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:39:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:39:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:40:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:40:38 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:41:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:41:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:42:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:42:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:43:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:43:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:44:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:44:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:55:44 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 14:55:44 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 14:55:44 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 14:55:44 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 14:55:44 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 14:55:44 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:55:44 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 14:55:44 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@2b1cb49c -2016-05-03 14:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:55:44 INFO ASLSession:352 - Logging the entrance -2016-05-03 14:55:44 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 14:55:44 DEBUG TemplateModel:83 - 2016-05-03 14:55:44, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 14:55:44 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:55:44 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 14:55:45 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 14:55:45 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 14:55:45 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:55:45 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 14:55:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:55:45 INFO ASLSession:352 - Logging the entrance -2016-05-03 14:55:45 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 14:55:45 DEBUG TemplateModel:83 - 2016-05-03 14:55:45, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 14:55:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:55:46 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 14:55:46 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 113 ms -2016-05-03 14:55:46 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 14:55:46 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 14:55:46 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 14:55:46 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 14:55:46 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 14:55:46 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 14:55:46 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 14:55:46 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 14:55:46 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 14:55:46 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 14:55:46 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 14:55:46 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 14:55:46 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 14:55:46 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 14:55:46 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 14:55:46 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:55:46 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 14:55:46 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@25ebb7f8 -2016-05-03 14:55:46 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@1e692eb7 -2016-05-03 14:55:46 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@5e8ea197 -2016-05-03 14:55:46 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@398aba92 -2016-05-03 14:55:46 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 14:55:46 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 14:55:46 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 14:55:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:55:46 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 14:55:46 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:55:46 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 14:55:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:55:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:55:46 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 14:55:46 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 14:55:46 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 14:55:46 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 14:55:47 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 14:55:47 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 14:55:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 14:55:47 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:55:47 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 14:55:47 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 108 ms -2016-05-03 14:55:47 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 14:55:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 14:55:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:55:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:55:47 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 14:55:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:55:47 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 14:55:47 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 14:55:47 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 14:55:47 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 14:55:47 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 14:55:47 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 14:55:47 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 14:55:47 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 14:55:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:55:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:55:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:55:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:55:47 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 14:55:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 14:55:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:55:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:55:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:55:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:55:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:55:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:55:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:55:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:55:48 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 14:55:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 14:55:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:55:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:55:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:55:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:55:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:55:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:55:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:55:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:55:49 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 14:55:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 14:55:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:55:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:55:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:55:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:55:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:55:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:55:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:55:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:55:49 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 14:55:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 14:55:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:55:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:55:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:55:49 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:55:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:55:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:55:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:55:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:55:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:55:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:55:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:55:49 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 14:55:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:55:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:55:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:55:50 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:55:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:55:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:55:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:55:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:55:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:55:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:55:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:55:50 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 14:55:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:55:50 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 14:55:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:55:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 123 msc 0 sec -2016-05-03 14:55:50 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 14:55:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:55:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:55:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:55:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:55:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:55:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:55:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:55:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:55:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:55:50 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 14:55:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:55:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:55:50 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 14:55:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 14:55:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:55:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:55:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 14:55:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 122 msc 0 sec -2016-05-03 14:56:56 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 14:56:56 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 14:56:56 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 14:56:56 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 14:56:56 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 14:56:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:56:56 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 14:56:56 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@3c6de7c3 -2016-05-03 14:56:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:56:56 INFO ASLSession:352 - Logging the entrance -2016-05-03 14:56:56 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 14:56:56 DEBUG TemplateModel:83 - 2016-05-03 14:56:56, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 14:56:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:56:56 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 14:56:57 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 14:56:57 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 14:56:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:56:57 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 14:56:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:56:57 INFO ASLSession:352 - Logging the entrance -2016-05-03 14:56:57 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 14:56:57 DEBUG TemplateModel:83 - 2016-05-03 14:56:57, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 14:56:57 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:56:57 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 14:56:57 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 129 ms -2016-05-03 14:56:57 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 14:56:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 14:56:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 14:56:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 14:56:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 14:56:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 14:56:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 14:56:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 14:56:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 14:56:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 14:56:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 14:56:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 14:56:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 14:56:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 14:56:58 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 14:56:58 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:56:58 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 14:56:58 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@54fdd75b -2016-05-03 14:56:58 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3c00136c -2016-05-03 14:56:58 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@69987ba7 -2016-05-03 14:56:58 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@5f7adf1b -2016-05-03 14:56:58 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 14:56:58 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 14:56:58 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 14:56:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:56:58 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:56:58 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:56:58 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 14:56:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:56:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:56:58 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 14:56:58 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 14:56:58 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 14:56:58 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 14:56:58 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 14:56:58 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 14:56:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 14:56:58 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:56:58 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 14:56:58 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 79 ms -2016-05-03 14:56:59 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 14:56:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:56:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:56:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:56:59 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 14:56:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:56:59 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 14:56:59 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 14:56:59 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 14:56:59 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 14:56:59 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 14:56:59 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 14:56:59 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 14:56:59 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 14:56:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:56:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:56:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:56:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:56:59 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 14:56:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 14:56:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:56:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:56:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:56:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:56:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:56:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:56:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:56:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:56:59 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 14:56:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 14:56:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:56:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:56:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:56:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:56:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:56:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:56:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:56:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:56:59 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 14:57:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 14:57:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:00 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 14:57:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 14:57:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:57:00 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:57:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:00 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 14:57:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:00 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:00 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 14:57:00 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 14:57:00 INFO WorkspaceExplorerServiceImpl:188 - end time - 106 msc 0 sec -2016-05-03 14:57:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:00 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 14:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:57:00 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:57:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:00 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 14:57:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:00 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 14:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 14:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:00 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:57:01 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 14:57:01 INFO WorkspaceExplorerServiceImpl:188 - end time - 143 msc 0 sec -2016-05-03 14:57:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 6645 ms -2016-05-03 14:57:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 3857 ms -2016-05-03 14:57:04 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 14:57:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 14:57:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:57:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 14:57:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 20 ms -2016-05-03 14:57:04 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 14:57:04 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 14:57:04 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 14:57:04 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 14:57:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 14:57:04 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 14:57:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 14:57:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:57:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 14:57:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-03 14:57:04 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 14:57:04 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 14:57:04 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 14:57:04 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 14:57:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:57:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 14:57:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 14:57:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 14:57:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 14:57:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 14:57:04 INFO WorkspaceExplorerServiceImpl:188 - end time - 4202 msc 4 sec -2016-05-03 14:57:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-03 14:57:05 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 14:57:05 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:57:05 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 14:57:05 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:57:05 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:57:05 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 14:57:14 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 14:57:14 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 14:57:14 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 14:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:57:14 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:57:14 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:57:14 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 14:57:14 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:57:14 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:57:14 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 14:57:14 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 14:57:14 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 14:57:14 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 14:57:14 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 14:57:14 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 14:57:14 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:57:14 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 14:57:14 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:57:14 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:57:14 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:57:14 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:57:14 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:57:14 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 14:57:14 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 14:57:14 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 14:57:14 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 14:57:14 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 14:57:14 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 14:57:14 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 14:57:14 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 14:57:14 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:14 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:57:14 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 14:57:14 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:14 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:57:14 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:57:14 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:57:14 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 14:57:14 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 14:57:14 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 14:57:14 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 14:57:14 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 14:57:14 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 14:57:14 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 14:57:14 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 14:57:14 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:14 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 14:57:14 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 14:57:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:57:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:57:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:57:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:57:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:15 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:57:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:57:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:57:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:57:15 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:57:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:57:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:57:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:57:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:57:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:57:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:57:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:57:22 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:57:22 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 14:57:22 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:57:22 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:57:23 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN - BIOCLIMATE_HSPEN - A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes - - - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 14:57:23 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 14:57:23 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 14:57:23 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 14:57:23 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 14:57:23 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 14:57:23 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:57:23 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 14:57:23 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:57:23 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:57:23 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:57:23 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:57:23 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:57:23 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 14:57:23 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 14:57:23 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 14:57:23 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 14:57:23 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 14:57:23 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 14:57:23 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 14:57:23 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 14:57:23 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:23 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:57:23 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 14:57:23 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:23 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:57:23 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:57:23 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:57:23 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 14:57:23 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 14:57:23 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 14:57:23 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 14:57:23 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 14:57:23 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 14:57:23 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 14:57:23 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 14:57:23 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:23 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 14:57:23 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 14:57:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:57:23 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:57:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:57:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:57:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:57:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:57:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:23 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:57:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:57:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:57:23 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:57:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:57:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:57:23 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:57:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:57:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:23 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:57:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:57:25 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:57:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:57:25 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM -2016-05-03 14:57:25 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:57:25 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 14:57:26 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM - BIONYM - An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication. - - - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - - - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - - - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - - - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - - - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - - - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - - - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - - - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - - - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - - - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - - - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - - - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - - - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - - - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - - - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - - - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - - - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - - - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - - - - - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 14:57:26 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - -2016-05-03 14:57:26 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - -2016-05-03 14:57:26 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 14:57:26 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-03 14:57:26 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 14:57:26 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 14:57:26 DEBUG WPS2SM:324 - Conversion to SM Type->RawTaxaNamesTable is a Complex Input -2016-05-03 14:57:26 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:57:26 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:57:26 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:57:26 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawTaxaNamesTable -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->RawNamesColumn is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: rawnames -2016-05-03 14:57:26 DEBUG WPS2SM:129 - Machter title: The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames] -2016-05-03 14:57:26 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:57:26 DEBUG WPS2SM:131 - Machter group: the name of a column from RawTaxaNamesTable -2016-05-03 14:57:26 DEBUG WPS2SM:132 - Machter start: 80 -2016-05-03 14:57:26 DEBUG WPS2SM:133 - Machter end: 123 -2016-05-03 14:57:26 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:57:26 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: RawTaxaNamesTable -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawNamesColumn -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: bionout -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Name of the table which will contain the matches -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OutputTableLabel -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-03 14:57:26 DEBUG WPS2SM:310 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The reference dataset to use -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-03 14:57:26 DEBUG WPS2SM:310 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Parser_Name -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-03 14:57:26 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-03 14:57:26 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-03 14:57:26 DEBUG WPS2SM:310 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-03 14:57:26 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_1 -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_1 -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_1 -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-03 14:57:26 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_2 -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_2 -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_2 -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-03 14:57:26 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_3 -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_3 -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_3 -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-03 14:57:26 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_4 -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_4 -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_4 -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-03 14:57:26 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_5 -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_5 -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-03 14:57:26 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-03 14:57:26 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:57:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:57:26 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-03 14:57:26 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 14:57:26 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_5 -2016-05-03 14:57:26 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:57:26 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-03 14:57:26 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-03 14:57:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:57:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:57:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:57:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:27 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:57:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:57:27 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:57:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:57:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:27 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:57:27 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:57:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:57:27 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:57:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:57:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:57:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:57:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:57:27 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:57:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:57:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:57:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:27 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:57:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:57:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:27 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:57:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:27 INFO WorkspaceExplorerServiceImpl:142 - end time - 11979 msc 11 sec -2016-05-03 14:57:27 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:57:27 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:57:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:57:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:57:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:57:27 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:57:28 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:57:28 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:57:28 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:57:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:57:28 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:57:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:57:28 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:57:28 INFO WorkspaceExplorerServiceImpl:142 - end time - 524 msc 0 sec -2016-05-03 14:57:28 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:57:28 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:57:28 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:57:28 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:57:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:57:28 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:57:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:57:28 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:57:28 INFO WorkspaceExplorerServiceImpl:142 - end time - 497 msc 0 sec -2016-05-03 14:57:28 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:57:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:57:51 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:57:55 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 14:57:55 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 14:57:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:57:55 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:57:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:57:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:55 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 14:57:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:57:55 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:57:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:57:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:55 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 14:57:55 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 14:57:55 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 14:57:55 DEBUG ServiceEngine:306 - get() - start -2016-05-03 14:57:55 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 14:57:55 DEBUG BucketCoding:42 - coding name done -2016-05-03 14:57:55 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 14:57:55 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 14:57:55 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 14:57:55 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 14:57:55 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 14:57:55 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 14:57:55 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 14:57:55 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 14:57:55 DEBUG BucketCoding:42 - coding name done -2016-05-03 14:57:55 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 14:57:55 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 14:57:55 DEBUG MongoIO:77 - open mongo connection -2016-05-03 14:57:55 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 14:57:55 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:55 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:55 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:55 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bedc5f4b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@66e4aeb8, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f8ae6ce, socketFactory=javax.net.DefaultSocketFactory@4836f6c4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 14:57:55 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 14:57:55 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 14:57:55 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1869158}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:258273}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1466443, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1617225, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:55 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 14:57:55 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:55 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:55 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:55 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1869159}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1869159}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 DEBUG command:56 - Command execution completed -2016-05-03 14:57:55 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1869159}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 DEBUG command:56 - Command execution completed -2016-05-03 14:57:55 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1869159}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 DEBUG command:56 - Command execution completed -2016-05-03 14:57:55 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 14:57:55 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1869159}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 DEBUG command:56 - Command execution completed -2016-05-03 14:57:55 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1869159}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2140721}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 DEBUG command:56 - Command execution completed -2016-05-03 14:57:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=934003, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1869159}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1554505}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 14:57:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1515038, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 14:57:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 14:57:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 14:57:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:57:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:57:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:57:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:57:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:56 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 14:57:56 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 14:57:56 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 14:57:56 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 14:57:56 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 14:57:56 INFO WorkspaceExplorerServiceImpl:188 - end time - 63 msc 0 sec -2016-05-03 14:57:56 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 14:57:56 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 14:57:56 DEBUG query:56 - Query completed -2016-05-03 14:57:56 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 14:57:56 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2140721} -2016-05-03 14:57:56 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:258273} -2016-05-03 14:57:56 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1869159}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 14:57:56 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1869159} -2016-05-03 14:57:56 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1554505} -2016-05-03 14:57:56 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1869158} -2016-05-03 14:57:56 INFO MongoIO:508 - Mongo has been closed -2016-05-03 14:57:56 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 14:57:56 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 14:57:56 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 14:57:57 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 14:57:57 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 14:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:57:57 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:57:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:57 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 14:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:57:57 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:57:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:57 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 14:57:57 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 14:57:57 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 14:57:57 DEBUG ServiceEngine:306 - get() - start -2016-05-03 14:57:57 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 14:57:57 DEBUG BucketCoding:42 - coding name done -2016-05-03 14:57:57 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 14:57:57 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 14:57:57 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 14:57:57 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 14:57:57 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 14:57:57 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 14:57:57 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 14:57:57 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 14:57:57 DEBUG BucketCoding:42 - coding name done -2016-05-03 14:57:57 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 14:57:57 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 14:57:57 DEBUG MongoIO:77 - open mongo connection -2016-05-03 14:57:57 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 14:57:57 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:57 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:57 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:57 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bedc5f4b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@66e4aeb8, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f8ae6ce, socketFactory=javax.net.DefaultSocketFactory@4836f6c4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 14:57:57 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 14:57:57 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 14:57:57 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:258274}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1869161}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1437392, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:57 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 14:57:57 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1523759, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:57 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:57 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:57 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2140722}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1070092, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:57:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:57:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:57 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1554508}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1586204, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 14:57:57 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 14:57:57 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 14:57:57 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1869162}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1869162}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 DEBUG command:56 - Command execution completed -2016-05-03 14:57:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1869162}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 DEBUG command:56 - Command execution completed -2016-05-03 14:57:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1869162}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 DEBUG command:56 - Command execution completed -2016-05-03 14:57:57 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 14:57:57 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1869162}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 DEBUG command:56 - Command execution completed -2016-05-03 14:57:57 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1869162}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 DEBUG command:56 - Command execution completed -2016-05-03 14:57:57 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1869162}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 14:57:57 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 14:57:57 INFO WorkspaceExplorerServiceImpl:188 - end time - 43 msc 0 sec -2016-05-03 14:57:57 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 14:57:57 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 14:57:57 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 14:57:57 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 14:57:57 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 14:57:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 14:57:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 14:57:58 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 14:57:58 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 14:57:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:57:58 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:57:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:57:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:58 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 14:57:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:57:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:57:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:57:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:58 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 14:57:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:57:58 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:57:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:57:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:58 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 14:57:58 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 14:57:58 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 14:57:58 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 14:57:58 DEBUG query:56 - Query completed -2016-05-03 14:57:58 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 14:57:58 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2140722} -2016-05-03 14:57:58 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:258274} -2016-05-03 14:57:58 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1554508} -2016-05-03 14:57:58 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1869162}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 14:57:58 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1869162} -2016-05-03 14:57:58 INFO MongoIO:508 - Mongo has been closed -2016-05-03 14:57:58 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 14:57:58 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 14:57:58 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 14:57:58 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1869161} -2016-05-03 14:57:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 144 -2016-05-03 14:57:59 DEBUG ASLSession:458 - Getting security token: null in thread 144 -2016-05-03 14:57:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:57:59 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 14:57:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:59 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 14:57:59 DEBUG ServiceEngine:193 - get() - start -2016-05-03 14:57:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 14:57:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 14:57:59 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 14:57:59 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 14:57:59 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 14:57:59 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 14:57:59 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 14:57:59 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 14:57:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 14:57:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 14:57:59 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 14:57:59 DEBUG Operation:173 - get(String) - start -2016-05-03 14:57:59 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 14:57:59 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 14:57:59 DEBUG MongoIO:77 - open mongo connection -2016-05-03 14:57:59 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 14:57:59 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:59 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:59 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:59 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bedc5f4b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@66e4aeb8, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f8ae6ce, socketFactory=javax.net.DefaultSocketFactory@4836f6c4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 14:57:59 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 14:57:59 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 14:57:59 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:258275}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1222291, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:59 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 14:57:59 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:59 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:59 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2140723}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=931319, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:59 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1869163}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1382929, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:59 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:59 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1554509}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1231251, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 14:57:59 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1869164}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1869164}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG command:56 - Command execution completed -2016-05-03 14:57:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1869164}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG command:56 - Command execution completed -2016-05-03 14:57:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1869164}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG command:56 - Command execution completed -2016-05-03 14:57:59 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 14:57:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1869164}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG command:56 - Command execution completed -2016-05-03 14:57:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1869164}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG command:56 - Command execution completed -2016-05-03 14:57:59 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 14:57:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1869164}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG command:56 - Command execution completed -2016-05-03 14:57:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1869164}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG command:56 - Command execution completed -2016-05-03 14:57:59 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 14:57:59 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1869164}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG query:56 - Query completed -2016-05-03 14:57:59 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 14:57:59 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 14:57:59 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 14:57:59 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1869164}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG update:56 - Update completed -2016-05-03 14:57:59 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1869164}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG query:56 - Query completed -2016-05-03 14:57:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:57:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:57:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:57:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:57:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:57:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:57:59 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 14:57:59 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 14:57:59 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 14:57:59 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 14:57:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 14:57:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 14:57:59 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 14:57:59 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 14:57:59 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 14:57:59 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 14:57:59 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 14:57:59 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 14:57:59 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 14:57:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 14:57:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 14:57:59 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 14:57:59 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 14:57:59 DEBUG MongoIO:77 - open mongo connection -2016-05-03 14:57:59 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 14:57:59 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:59 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:59 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:59 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bedc5f4b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@66e4aeb8, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f8ae6ce, socketFactory=javax.net.DefaultSocketFactory@4836f6c4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 14:57:59 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 14:57:59 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 14:57:59 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:258276}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1079607, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:59 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 14:57:59 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:59 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 14:57:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:59 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1869165}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2140724}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1103862, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1386396, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:59 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 14:57:59 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1554510}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1295247, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 14:57:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 14:57:59 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1869166}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1869166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG command:56 - Command execution completed -2016-05-03 14:57:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1869166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG command:56 - Command execution completed -2016-05-03 14:57:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1869166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG command:56 - Command execution completed -2016-05-03 14:57:59 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 14:57:59 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 14:57:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1869166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG command:56 - Command execution completed -2016-05-03 14:57:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1869166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG command:56 - Command execution completed -2016-05-03 14:57:59 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 14:57:59 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1869166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG query:56 - Query completed -2016-05-03 14:57:59 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 14:57:59 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2140724} -2016-05-03 14:57:59 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:258276} -2016-05-03 14:57:59 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1554510} -2016-05-03 14:57:59 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1869166}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 14:57:59 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1869166} -2016-05-03 14:57:59 INFO MongoIO:508 - Mongo has been closed -2016-05-03 14:57:59 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1869165} -2016-05-03 14:57:59 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 14:57:59 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 14:57:59 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 14:57:59 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 14:57:59 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 14:57:59 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 14:57:59 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 14:57:59 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 14:57:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 14:57:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 14:57:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 14:58:08 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2140723} -2016-05-03 14:58:08 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1869164}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 14:58:08 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1554509} -2016-05-03 14:58:08 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:258275} -2016-05-03 14:58:08 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1869164} -2016-05-03 14:58:08 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1869163} -2016-05-03 14:58:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:08 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:58:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:58:08 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 14:58:08 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 14:58:08 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:58:08 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:58:08 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:58:08 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:58:08 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:58:08 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 14:58:08 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 14:58:08 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 14:58:08 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 14:58:08 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 14:58:08 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 14:58:08 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 14:58:08 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 14:58:08 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:58:08 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:58:08 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 14:58:08 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:58:08 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:58:08 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 14:58:08 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 14:58:08 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 14:58:08 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 14:58:08 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 14:58:08 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 14:58:08 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 14:58:08 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 14:58:08 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 14:58:08 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 14:58:08 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:58:08 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 14:58:08 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 14:58:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:08 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:58:08 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:58:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:58:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:08 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:58:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:58:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:08 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:58:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:08 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:58:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:08 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:58:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:14 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:58:14 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:58:14 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:58:14 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:58:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:14 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:58:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:14 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:58:14 INFO WorkspaceExplorerServiceImpl:142 - end time - 1375 msc 1 sec -2016-05-03 14:58:14 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:58:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:58:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:17 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:58:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:58:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:58:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:58:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:58:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:17 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:17 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:58:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:58:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:58:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:58:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:58:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:58:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 175 msc 0 sec -2016-05-03 14:58:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:58:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:20 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:58:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:20 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:58:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:58:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:20 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:58:20 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:58:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:58:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:20 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:58:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:20 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:58:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:20 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:58:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:58:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:58:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:58:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:58:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:58:20 INFO WorkspaceExplorerServiceImpl:142 - end time - 170 msc 0 sec -2016-05-03 14:58:20 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:58:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:26 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:58:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:26 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:26 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:58:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:58:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:26 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:58:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:58:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:58:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:58:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:27 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:58:27 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:58:27 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:58:27 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:58:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:27 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:58:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:27 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:58:27 INFO WorkspaceExplorerServiceImpl:142 - end time - 176 msc 0 sec -2016-05-03 14:58:27 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:58:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:27 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:58:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:58:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:27 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:58:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:58:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:27 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:58:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:58:27 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:27 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:27 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:58:27 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:58:27 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:58:27 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:58:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:27 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:58:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:27 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:58:27 INFO WorkspaceExplorerServiceImpl:142 - end time - 181 msc 0 sec -2016-05-03 14:58:27 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:58:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:58:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:58:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:58:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:28 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:58:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:28 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:58:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:58:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:29 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:58:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:58:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:29 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:58:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:58:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:58:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:29 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:29 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:58:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:58:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:58:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 14:58:30 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 14:58:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 14:58:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:30 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:30 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:58:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:30 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:58:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:58:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:30 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:58:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:30 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:58:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:58:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:30 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:31 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:58:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:58:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:31 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:58:31 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:58:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:31 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:58:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:31 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:58:31 INFO WorkspaceExplorerServiceImpl:142 - end time - 2846 msc 2 sec -2016-05-03 14:58:31 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:58:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:31 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:58:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:31 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:58:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:31 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:58:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:31 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:58:31 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:58:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:58:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:58:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:34 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:58:34 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:58:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:34 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:34 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:58:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:58:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:34 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:58:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:34 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:58:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:34 INFO WorkspaceExplorerServiceImpl:142 - end time - 3000 msc 3 sec -2016-05-03 14:58:34 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:58:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:34 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:58:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:58:34 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:34 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:58:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:35 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:58:35 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:58:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:35 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:58:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:58:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:58:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:58:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:58:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:35 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:58:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:35 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:58:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:35 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:58:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:35 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:58:35 INFO WorkspaceExplorerServiceImpl:142 - end time - 4134 msc 4 sec -2016-05-03 14:58:35 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:58:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 14:58:35 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 14:58:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 14:58:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:58:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:58:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:38 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:58:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:39 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:58:39 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:58:39 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:58:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:39 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:58:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:39 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:58:39 INFO WorkspaceExplorerServiceImpl:142 - end time - 5491 msc 5 sec -2016-05-03 14:58:39 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:58:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:58:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:39 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:58:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 14:58:39 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 14:58:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:58:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:39 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:58:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:58:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 14:58:39 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 14:58:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 14:58:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:39 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:58:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:39 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:58:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:58:40 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:58:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:58:40 INFO WorkspaceExplorerServiceImpl:142 - end time - 1921 msc 1 sec -2016-05-03 14:58:40 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:58:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:58:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:58:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:58:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:40 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:58:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 14:58:40 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 14:58:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:40 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:58:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:58:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:58:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:58:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:58:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:58:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:58:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:58:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:58:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:40 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:58:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 14:58:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 14:58:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:58:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:58:40 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:58:40 INFO WorkspaceExplorerServiceImpl:142 - end time - 1131 msc 1 sec -2016-05-03 14:58:40 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:58:40 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:58:40 INFO WorkspaceExplorerServiceImpl:142 - end time - 130 msc 0 sec -2016-05-03 14:58:40 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:58:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 14:58:46 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 14:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 14:59:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 14:59:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 14:59:25 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM -2016-05-03 14:59:25 DEBUG WPS2SM:324 - Conversion to SM Type->RawTaxaNamesTable is a Complex Input -2016-05-03 14:59:25 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 14:59:25 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 14:59:25 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 14:59:25 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawTaxaNamesTable -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->RawNamesColumn is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: rawnames -2016-05-03 14:59:25 DEBUG WPS2SM:129 - Machter title: The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames] -2016-05-03 14:59:25 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 14:59:25 DEBUG WPS2SM:131 - Machter group: the name of a column from RawTaxaNamesTable -2016-05-03 14:59:25 DEBUG WPS2SM:132 - Machter start: 80 -2016-05-03 14:59:25 DEBUG WPS2SM:133 - Machter end: 123 -2016-05-03 14:59:25 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 14:59:25 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: RawTaxaNamesTable -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawNamesColumn -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: bionout -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Name of the table which will contain the matches -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OutputTableLabel -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-03 14:59:25 DEBUG WPS2SM:310 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The reference dataset to use -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-03 14:59:25 DEBUG WPS2SM:310 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Parser_Name -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-03 14:59:25 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-03 14:59:25 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-03 14:59:25 DEBUG WPS2SM:310 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-03 14:59:25 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_1 -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_1 -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_1 -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-03 14:59:25 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_2 -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_2 -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_2 -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-03 14:59:25 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_3 -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_3 -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_3 -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-03 14:59:25 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_4 -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_4 -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_4 -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-03 14:59:25 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_5 -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_5 -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-03 14:59:25 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-03 14:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 14:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 14:59:25 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-03 14:59:25 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 14:59:25 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_5 -2016-05-03 14:59:25 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 14:59:25 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-03 14:59:25 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-03 14:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:59:25 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:59:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:59:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:59:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:59:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:59:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:59:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:59:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:59:25 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 14:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:59:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:59:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:59:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:59:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:59:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:59:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:59:25 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 14:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 14:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 14:59:25 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 14:59:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:59:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 14:59:25 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 14:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 14:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:59:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:59:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:59:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:59:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:59:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:59:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:59:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 14:59:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 14:59:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:59:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 14:59:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:59:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 14:59:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 14:59:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 14:59:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:59:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 14:59:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 14:59:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 14:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 14:59:25 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 14:59:26 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 14:59:26 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 14:59:26 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 14:59:26 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:59:26 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 14:59:26 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 14:59:26 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 14:59:26 INFO WorkspaceExplorerServiceImpl:142 - end time - 146 msc 0 sec -2016-05-03 14:59:26 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 14:59:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 14:59:41 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:00:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:00:11 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:00:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:00:11 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 15:00:11 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 15:00:11 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 15:00:11 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 15:00:11 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 15:00:11 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 15:00:11 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:00:11 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 15:00:11 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 15:00:11 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 15:00:11 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 15:00:11 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 15:00:11 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 15:00:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 15:00:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 15:00:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:11 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 15:00:11 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 15:00:11 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:11 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 15:00:11 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:00:11 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 15:00:11 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 15:00:11 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 15:00:11 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 15:00:11 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 15:00:11 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 15:00:11 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 15:00:11 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 15:00:11 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:11 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 15:00:11 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 15:00:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:00:12 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 15:00:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:00:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:00:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:00:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:00:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:12 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:00:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:00:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:00:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:00:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:12 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 15:00:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:00:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:12 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:00:12 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:00:12 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:00:12 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:00:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:00:12 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:00:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:00:12 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:00:12 INFO WorkspaceExplorerServiceImpl:142 - end time - 138 msc 0 sec -2016-05-03 15:00:12 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:00:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:00:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:00:17 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 15:00:17 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 15:00:17 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 15:00:17 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 15:00:17 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 15:00:17 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 15:00:17 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:00:17 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 15:00:17 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 15:00:17 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 15:00:17 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 15:00:17 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 15:00:17 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 15:00:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 15:00:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 15:00:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:17 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 15:00:17 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 15:00:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:17 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 15:00:17 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:00:17 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 15:00:17 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 15:00:17 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 15:00:17 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 15:00:17 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 15:00:17 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 15:00:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 15:00:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 15:00:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:17 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 15:00:17 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 15:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:00:17 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 15:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:00:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:00:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:00:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:00:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:00:17 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 15:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:00:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:00:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:00:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:00:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:00:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:00:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:00:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:00:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 139 msc 0 sec -2016-05-03 15:00:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:00:19 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:00:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:00:19 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM -2016-05-03 15:00:19 DEBUG WPS2SM:324 - Conversion to SM Type->RawTaxaNamesTable is a Complex Input -2016-05-03 15:00:19 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 15:00:19 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 15:00:19 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 15:00:19 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawTaxaNamesTable -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->RawNamesColumn is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: rawnames -2016-05-03 15:00:19 DEBUG WPS2SM:129 - Machter title: The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames] -2016-05-03 15:00:19 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 15:00:19 DEBUG WPS2SM:131 - Machter group: the name of a column from RawTaxaNamesTable -2016-05-03 15:00:19 DEBUG WPS2SM:132 - Machter start: 80 -2016-05-03 15:00:19 DEBUG WPS2SM:133 - Machter end: 123 -2016-05-03 15:00:19 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 15:00:19 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: RawTaxaNamesTable -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawNamesColumn -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: bionout -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Name of the table which will contain the matches -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OutputTableLabel -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-03 15:00:19 DEBUG WPS2SM:310 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The reference dataset to use -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-03 15:00:19 DEBUG WPS2SM:310 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Parser_Name -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-03 15:00:19 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-03 15:00:19 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-03 15:00:19 DEBUG WPS2SM:310 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-03 15:00:19 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_1 -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_1 -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_1 -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-03 15:00:19 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_2 -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_2 -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_2 -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-03 15:00:19 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_3 -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_3 -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_3 -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-03 15:00:19 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_4 -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_4 -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_4 -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-03 15:00:19 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_5 -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_5 -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-03 15:00:19 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-03 15:00:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:19 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:00:19 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-03 15:00:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 15:00:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_5 -2016-05-03 15:00:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:19 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-03 15:00:19 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-03 15:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:00:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:00:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:19 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:00:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:00:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:00:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:00:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:19 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:00:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:20 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:00:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:00:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:00:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:00:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:00:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:00:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:00:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:00:20 INFO WorkspaceExplorerServiceImpl:142 - end time - 148 msc 0 sec -2016-05-03 15:00:20 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:00:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:00:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:00:29 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:00:29 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION -2016-05-03 15:00:29 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:00:29 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:00:30 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION - SGVM_INTERPOLATION - An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare - - - InputFile - Input file in TACSAT format. E.g. http://goo.gl/i16kPw - Name of the parameter: InputFile. Input file in TACSAT format. E.g. http://goo.gl/i16kPw - - - - text/xml - - - - - text/xml - - - application/d4science - - - - - - npoints - The number of pings or positions required between each real or actual vessel position or ping - Name of the parameter: npoints. The number of pings or positions required between each real or actual vessel position or ping - - - - 10 - - - - interval - Average time in minutes between two adjacent datapoints - Name of the parameter: interval. Average time in minutes between two adjacent datapoints - - - - 120 - - - - margin - Maximum deviation from specified interval to find adjacent datapoints (tolerance) - Name of the parameter: margin. Maximum deviation from specified interval to find adjacent datapoints (tolerance) - - - - 10 - - - - res - Number of points to use to create interpolation (including start and end point) - Name of the parameter: res. Number of points to use to create interpolation (including start and end point) - - - - 100 - - - - method - Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - Name of the parameter: method. Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - - - - cHs - SL - - cHs - - - - fm - The FM parameter in cubic interpolation - Name of the parameter: fm. The FM parameter in cubic interpolation - - - - 0.5 - - - - distscale - The DistScale parameter for cubic interpolation - Name of the parameter: distscale. The DistScale parameter for cubic interpolation - - - - 20 - - - - sigline - The Sigline parameter in cubic interpolation - Name of the parameter: sigline. The Sigline parameter in cubic interpolation - - - - 0.2 - - - - minspeedThr - A filter on the minimum speed to take into account for interpolation - Name of the parameter: minspeedThr. A filter on the minimum speed to take into account for interpolation - - - - 2 - - - - maxspeedThr - A filter on the maximum speed to take into account for interpolation - Name of the parameter: maxspeedThr. A filter on the maximum speed to take into account for interpolation - - - - 6 - - - - headingAdjustment - Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - Name of the parameter: headingAdjustment. Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - - - - 0 - - - - equalDist - Whether the number of positions returned should be equally spaced or not - Name of the parameter: equalDist. Whether the number of positions returned should be equally spaced or not - - - - true - false - - true - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 15:00:30 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 15:00:30 DEBUG SClient4WPS:300 - WPSClient->Input: - InputFile - Input file in TACSAT format. E.g. http://goo.gl/i16kPw - Name of the parameter: InputFile. Input file in TACSAT format. E.g. http://goo.gl/i16kPw - - - - text/xml - - - - - text/xml - - - application/d4science - - - - -2016-05-03 15:00:30 DEBUG SClient4WPS:300 - WPSClient->Input: - npoints - The number of pings or positions required between each real or actual vessel position or ping - Name of the parameter: npoints. The number of pings or positions required between each real or actual vessel position or ping - - - - 10 - - -2016-05-03 15:00:30 DEBUG SClient4WPS:300 - WPSClient->Input: - interval - Average time in minutes between two adjacent datapoints - Name of the parameter: interval. Average time in minutes between two adjacent datapoints - - - - 120 - - -2016-05-03 15:00:30 DEBUG SClient4WPS:300 - WPSClient->Input: - margin - Maximum deviation from specified interval to find adjacent datapoints (tolerance) - Name of the parameter: margin. Maximum deviation from specified interval to find adjacent datapoints (tolerance) - - - - 10 - - -2016-05-03 15:00:30 DEBUG SClient4WPS:300 - WPSClient->Input: - res - Number of points to use to create interpolation (including start and end point) - Name of the parameter: res. Number of points to use to create interpolation (including start and end point) - - - - 100 - - -2016-05-03 15:00:30 DEBUG SClient4WPS:300 - WPSClient->Input: - method - Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - Name of the parameter: method. Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - - - - cHs - SL - - cHs - - -2016-05-03 15:00:30 DEBUG SClient4WPS:300 - WPSClient->Input: - fm - The FM parameter in cubic interpolation - Name of the parameter: fm. The FM parameter in cubic interpolation - - - - 0.5 - - -2016-05-03 15:00:30 DEBUG SClient4WPS:300 - WPSClient->Input: - distscale - The DistScale parameter for cubic interpolation - Name of the parameter: distscale. The DistScale parameter for cubic interpolation - - - - 20 - - -2016-05-03 15:00:30 DEBUG SClient4WPS:300 - WPSClient->Input: - sigline - The Sigline parameter in cubic interpolation - Name of the parameter: sigline. The Sigline parameter in cubic interpolation - - - - 0.2 - - -2016-05-03 15:00:30 DEBUG SClient4WPS:300 - WPSClient->Input: - minspeedThr - A filter on the minimum speed to take into account for interpolation - Name of the parameter: minspeedThr. A filter on the minimum speed to take into account for interpolation - - - - 2 - - -2016-05-03 15:00:30 DEBUG SClient4WPS:300 - WPSClient->Input: - maxspeedThr - A filter on the maximum speed to take into account for interpolation - Name of the parameter: maxspeedThr. A filter on the maximum speed to take into account for interpolation - - - - 6 - - -2016-05-03 15:00:30 DEBUG SClient4WPS:300 - WPSClient->Input: - headingAdjustment - Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - Name of the parameter: headingAdjustment. Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - - - - 0 - - -2016-05-03 15:00:30 DEBUG SClient4WPS:300 - WPSClient->Input: - equalDist - Whether the number of positions returned should be equally spaced or not - Name of the parameter: equalDist. Whether the number of positions returned should be equally spaced or not - - - - true - false - - true - - -2016-05-03 15:00:30 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 15:00:30 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 15:00:30 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:00:30 DEBUG WPS2SM:324 - Conversion to SM Type->InputFile is a Complex Input -2016-05-03 15:00:30 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 15:00:30 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 15:00:30 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 15:00:30 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 15:00:30 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Input file in TACSAT format. E.g. http://goo.gl/i16kPw -2016-05-03 15:00:30 DEBUG WPS2SM:339 - Conversion to SM Type->Name:InputFile -2016-05-03 15:00:30 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:30 DEBUG SClient4WPS:653 - InputParameter: FileParameter [value=null, defaultMimeType=text/xml, supportedMimeTypes=[text/xml, application/d4science]] -2016-05-03 15:00:30 DEBUG WPS2SM:299 - Conversion to SM Type->npoints is a Literal Input -2016-05-03 15:00:30 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:30 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:00:30 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 15:00:30 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The number of pings or positions required between each real or actual vessel position or ping -2016-05-03 15:00:30 DEBUG WPS2SM:339 - Conversion to SM Type->Name:npoints -2016-05-03 15:00:30 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:30 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=npoints, description=The number of pings or positions required between each real or actual vessel position or ping [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 15:00:30 DEBUG WPS2SM:299 - Conversion to SM Type->interval is a Literal Input -2016-05-03 15:00:30 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:30 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:00:30 DEBUG WPS2SM:100 - Guessed default value: 120 -2016-05-03 15:00:30 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Average time in minutes between two adjacent datapoints -2016-05-03 15:00:30 DEBUG WPS2SM:339 - Conversion to SM Type->Name:interval -2016-05-03 15:00:30 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:30 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=120, value=null, name=interval, description=Average time in minutes between two adjacent datapoints [Min N. of Entries:1; Max N. of Entries:1; default:120], typology=OBJECT] -2016-05-03 15:00:30 DEBUG WPS2SM:299 - Conversion to SM Type->margin is a Literal Input -2016-05-03 15:00:30 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:30 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:00:30 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 15:00:30 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Maximum deviation from specified interval to find adjacent datapoints (tolerance) -2016-05-03 15:00:30 DEBUG WPS2SM:339 - Conversion to SM Type->Name:margin -2016-05-03 15:00:30 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:30 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=margin, description=Maximum deviation from specified interval to find adjacent datapoints (tolerance) [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 15:00:30 DEBUG WPS2SM:299 - Conversion to SM Type->res is a Literal Input -2016-05-03 15:00:30 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:30 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:00:30 DEBUG WPS2SM:100 - Guessed default value: 100 -2016-05-03 15:00:30 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Number of points to use to create interpolation (including start and end point) -2016-05-03 15:00:30 DEBUG WPS2SM:339 - Conversion to SM Type->Name:res -2016-05-03 15:00:30 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:30 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=100, value=null, name=res, description=Number of points to use to create interpolation (including start and end point) [Min N. of Entries:1; Max N. of Entries:1; default:100], typology=OBJECT] -2016-05-03 15:00:30 DEBUG WPS2SM:299 - Conversion to SM Type->method is a Literal Input -2016-05-03 15:00:30 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:30 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:30 DEBUG WPS2SM:100 - Guessed default value: cHs -2016-05-03 15:00:30 DEBUG WPS2SM:310 - ValueType[]:[cHs, SL] -2016-05-03 15:00:30 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Set to cHs for cubic Hermite spline or SL for Straight Line interpolation -2016-05-03 15:00:30 DEBUG WPS2SM:339 - Conversion to SM Type->Name:method -2016-05-03 15:00:30 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:30 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=method, description=Set to cHs for cubic Hermite spline or SL for Straight Line interpolation [Min N. of Entries:1; Max N. of Entries:1; default:cHs], typology=ENUM] -2016-05-03 15:00:30 DEBUG WPS2SM:299 - Conversion to SM Type->fm is a Literal Input -2016-05-03 15:00:30 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:30 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 15:00:30 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-03 15:00:30 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The FM parameter in cubic interpolation -2016-05-03 15:00:30 DEBUG WPS2SM:339 - Conversion to SM Type->Name:fm -2016-05-03 15:00:30 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:30 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=fm, description=The FM parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-03 15:00:30 DEBUG WPS2SM:299 - Conversion to SM Type->distscale is a Literal Input -2016-05-03 15:00:30 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:30 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:00:30 DEBUG WPS2SM:100 - Guessed default value: 20 -2016-05-03 15:00:30 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The DistScale parameter for cubic interpolation -2016-05-03 15:00:30 DEBUG WPS2SM:339 - Conversion to SM Type->Name:distscale -2016-05-03 15:00:30 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:30 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=distscale, description=The DistScale parameter for cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT] -2016-05-03 15:00:30 DEBUG WPS2SM:299 - Conversion to SM Type->sigline is a Literal Input -2016-05-03 15:00:30 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:30 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 15:00:30 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-03 15:00:30 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The Sigline parameter in cubic interpolation -2016-05-03 15:00:30 DEBUG WPS2SM:339 - Conversion to SM Type->Name:sigline -2016-05-03 15:00:30 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:30 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=sigline, description=The Sigline parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-03 15:00:30 DEBUG WPS2SM:299 - Conversion to SM Type->minspeedThr is a Literal Input -2016-05-03 15:00:30 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:30 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 15:00:30 DEBUG WPS2SM:100 - Guessed default value: 2 -2016-05-03 15:00:30 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A filter on the minimum speed to take into account for interpolation -2016-05-03 15:00:30 DEBUG WPS2SM:339 - Conversion to SM Type->Name:minspeedThr -2016-05-03 15:00:30 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:30 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=2, value=null, name=minspeedThr, description=A filter on the minimum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT] -2016-05-03 15:00:30 DEBUG WPS2SM:299 - Conversion to SM Type->maxspeedThr is a Literal Input -2016-05-03 15:00:30 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:30 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 15:00:30 DEBUG WPS2SM:100 - Guessed default value: 6 -2016-05-03 15:00:30 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A filter on the maximum speed to take into account for interpolation -2016-05-03 15:00:30 DEBUG WPS2SM:339 - Conversion to SM Type->Name:maxspeedThr -2016-05-03 15:00:30 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:30 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=6, value=null, name=maxspeedThr, description=A filter on the maximum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:6], typology=OBJECT] -2016-05-03 15:00:30 DEBUG WPS2SM:299 - Conversion to SM Type->headingAdjustment is a Literal Input -2016-05-03 15:00:30 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:30 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:00:30 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-03 15:00:30 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. -2016-05-03 15:00:30 DEBUG WPS2SM:339 - Conversion to SM Type->Name:headingAdjustment -2016-05-03 15:00:30 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:30 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=headingAdjustment, description=Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-03 15:00:30 DEBUG WPS2SM:299 - Conversion to SM Type->equalDist is a Literal Input -2016-05-03 15:00:30 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:00:30 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:00:30 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-03 15:00:30 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 15:00:30 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Whether the number of positions returned should be equally spaced or not -2016-05-03 15:00:30 DEBUG WPS2SM:339 - Conversion to SM Type->Name:equalDist -2016-05-03 15:00:30 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:00:30 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=equalDist, description=Whether the number of positions returned should be equally spaced or not [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-03 15:00:30 DEBUG SClient4WPS:657 - Parameters: [FileParameter [value=null, defaultMimeType=text/xml, supportedMimeTypes=[text/xml, application/d4science]], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=npoints, description=The number of pings or positions required between each real or actual vessel position or ping [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=120, value=null, name=interval, description=Average time in minutes between two adjacent datapoints [Min N. of Entries:1; Max N. of Entries:1; default:120], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=margin, description=Maximum deviation from specified interval to find adjacent datapoints (tolerance) [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=100, value=null, name=res, description=Number of points to use to create interpolation (including start and end point) [Min N. of Entries:1; Max N. of Entries:1; default:100], typology=OBJECT], Parameter [name=method, description=Set to cHs for cubic Hermite spline or SL for Straight Line interpolation [Min N. of Entries:1; Max N. of Entries:1; default:cHs], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=fm, description=The FM parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=distscale, description=The DistScale parameter for cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=sigline, description=The Sigline parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=2, value=null, name=minspeedThr, description=A filter on the minimum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=6, value=null, name=maxspeedThr, description=A filter on the maximum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=headingAdjustment, description=Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], Parameter [name=equalDist, description=Whether the number of positions returned should be equally spaced or not [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM]] -2016-05-03 15:00:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:00:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:00:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:00:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:00:30 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:00:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:00:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:30 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:00:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:00:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:00:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:00:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:31 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:00:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:00:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:00:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:31 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:00:31 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:00:31 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:00:31 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:00:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:00:31 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:00:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:00:31 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:00:31 INFO WorkspaceExplorerServiceImpl:142 - end time - 154 msc 0 sec -2016-05-03 15:00:31 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:00:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:00:36 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 15:00:37 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:00:37 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:00:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:37 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:00:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:37 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:00:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:00:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:00:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:00:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:37 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:00:37 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:00:37 INFO JCRServlets:142 - Calling servlet getChildrenById 9bb0fe87-356b-4b9d-a213-04293559dc20 by giancarlo.panichi -2016-05-03 15:00:37 INFO WorkspaceExplorerServiceImpl:503 - returning size: 0 -2016-05-03 15:00:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:00:38 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:00:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:00:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:00:38 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:00:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:00:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:38 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:00:38 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:00:38 INFO JCRServlets:697 - Calling Servlet get Parents By Id 9bb0fe87-356b-4b9d-a213-04293559dc20 by giancarlo.panichi -2016-05-03 15:00:38 INFO JCRServlets:142 - Calling servlet getChildrenById 9bb0fe87-356b-4b9d-a213-04293559dc20 by giancarlo.panichi -2016-05-03 15:00:38 INFO WorkspaceExplorerServiceImpl:188 - end time - 54 msc 0 sec -2016-05-03 15:00:38 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:00:38 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=9bb0fe87-356b-4b9d-a213-04293559dc20, name=DataMiner, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 15:00:38 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 15:00:39 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 15:00:39 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 15:00:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:39 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:00:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:39 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 15:00:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:00:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:00:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:00:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:39 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 15:00:39 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 15:00:39 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 15:00:39 ERROR JCRWorkspaceItem:478 - Impossible to get total size of Computations -2016-05-03 15:00:39 INFO WorkspaceExplorerServiceImpl:503 - returning size: 0 -2016-05-03 15:00:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:00:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:00:39 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:00:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:00:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:39 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 15:00:39 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 15:00:39 INFO JCRServlets:697 - Calling Servlet get Parents By Id f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 15:00:39 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 15:00:39 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:00:39 INFO WorkspaceExplorerServiceImpl:188 - end time - 55 msc 0 sec -2016-05-03 15:00:39 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 15:00:39 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:00:39 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=9bb0fe87-356b-4b9d-a213-04293559dc20, name=DataMiner, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 15:00:39 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 15:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 15:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:44 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:00:44 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:00:44 INFO JCRServlets:697 - Calling Servlet get Parents By Id efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:00:44 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 15:00:44 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:00:44 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:00:44 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:00:44 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:00:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:00:44 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:00:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:00:44 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:00:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 154 msc 0 sec -2016-05-03 15:00:58 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:00:58 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:00:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:00:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:00:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:00:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:58 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:00:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:00:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:00:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:58 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:00:58 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:00:58 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 15:00:58 DEBUG ServiceEngine:306 - get() - start -2016-05-03 15:00:58 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:00:58 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:00:58 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 15:00:58 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 15:00:58 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 15:00:58 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 15:00:58 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 15:00:58 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 15:00:58 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 15:00:58 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:00:58 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:00:58 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 15:00:58 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 15:00:58 DEBUG MongoIO:77 - open mongo connection -2016-05-03 15:00:58 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 15:00:58 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:00:58 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:00:58 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:00:58 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bedc5f4b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@66e4aeb8, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f8ae6ce, socketFactory=javax.net.DefaultSocketFactory@4836f6c4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 15:00:58 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 15:00:58 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 15:00:58 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1869385}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1070591, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:00:58 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 15:00:58 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:00:58 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:00:58 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:00:58 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:258427}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=978848, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:00:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:00:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:00:58 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 15:00:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:00:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:58 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1869386}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1869386}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:00:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:58 DEBUG command:56 - Command execution completed -2016-05-03 15:00:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1869386}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 DEBUG command:56 - Command execution completed -2016-05-03 15:00:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1869386}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 DEBUG command:56 - Command execution completed -2016-05-03 15:00:58 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 15:00:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1869386}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 DEBUG command:56 - Command execution completed -2016-05-03 15:00:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1869386}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:00:58 DEBUG command:56 - Command execution completed -2016-05-03 15:00:58 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1869386}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:00:58 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 15:00:58 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 15:00:58 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1554635}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2129829, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:00:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 15:00:58 INFO WorkspaceExplorerServiceImpl:188 - end time - 41 msc 0 sec -2016-05-03 15:00:58 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:00:58 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2140849}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:00:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=789286, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:00:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 15:00:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 15:00:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 15:00:59 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:00:59 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:00:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:00:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:00:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:00:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:59 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:00:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:00:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:00:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:59 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:00:59 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:00:59 DEBUG query:56 - Query completed -2016-05-03 15:00:59 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 15:00:59 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2140849} -2016-05-03 15:00:59 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:258427} -2016-05-03 15:00:59 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1869386}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 15:00:59 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1554635} -2016-05-03 15:00:59 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1869386} -2016-05-03 15:00:59 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1869385} -2016-05-03 15:00:59 INFO MongoIO:508 - Mongo has been closed -2016-05-03 15:00:59 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 15:00:59 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 15:00:59 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 15:00:59 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 15:00:59 DEBUG ServiceEngine:306 - get() - start -2016-05-03 15:00:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:00:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:00:59 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 15:00:59 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 15:00:59 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 15:00:59 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 15:00:59 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 15:00:59 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 15:00:59 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 15:00:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:00:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:00:59 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 15:00:59 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 15:00:59 DEBUG MongoIO:77 - open mongo connection -2016-05-03 15:00:59 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 15:00:59 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:00:59 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:00:59 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:00:59 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bedc5f4b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@66e4aeb8, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f8ae6ce, socketFactory=javax.net.DefaultSocketFactory@4836f6c4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 15:00:59 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 15:00:59 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 15:00:59 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:258428}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1361325, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:00:59 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 15:00:59 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:00:59 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:00:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:00:59 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2140850}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=946022, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:00:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:00:59 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1869387}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1030758, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:00:59 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:00:59 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1554636}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1330806, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:00:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 15:00:59 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1869388}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1869388}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 DEBUG command:56 - Command execution completed -2016-05-03 15:00:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1869388}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 DEBUG command:56 - Command execution completed -2016-05-03 15:00:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1869388}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 DEBUG command:56 - Command execution completed -2016-05-03 15:00:59 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 15:00:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1869388}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 DEBUG command:56 - Command execution completed -2016-05-03 15:00:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1869388}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 DEBUG command:56 - Command execution completed -2016-05-03 15:00:59 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1869388}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:00:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:00:59 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 15:00:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:00:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:00:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:00:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:00:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:00:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:00:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:00:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:00:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:00:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:00:59 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:00:59 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:00:59 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 15:00:59 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 15:00:59 INFO WorkspaceExplorerServiceImpl:188 - end time - 43 msc 0 sec -2016-05-03 15:00:59 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:00:59 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 15:00:59 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:00:59 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 15:00:59 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 15:01:00 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:01:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 15:01:00 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:01:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 15:01:00 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:01:00 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:01:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:01:00 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:01:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:01:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:01:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:01:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:01:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:01:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:01:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:01:00 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:01:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:01:00 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 15:01:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:01:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:01:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:01:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:01:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:01:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:01:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:01:00 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:01:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:01:00 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:01:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:01:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:01:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:01:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:01:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:01:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:01:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:01:00 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:01:00 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:01:00 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:01:00 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 15:01:00 DEBUG query:56 - Query completed -2016-05-03 15:01:00 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 15:01:00 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2140850} -2016-05-03 15:01:00 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:258428} -2016-05-03 15:01:00 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1869388}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 15:01:00 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1554636} -2016-05-03 15:01:00 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1869388} -2016-05-03 15:01:00 INFO MongoIO:508 - Mongo has been closed -2016-05-03 15:01:00 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 15:01:00 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 15:01:00 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 15:01:00 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1869387} -2016-05-03 15:01:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:01:01 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:01:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:01:01 DEBUG DataMinerManagerServiceImpl:407 - GetPublicLink(): ItemDescription [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, owner=giancarlo.panichi, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, type=EXTERNAL_FILE, publicLink=null] -2016-05-03 15:01:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:01:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:01:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:01:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:01:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:01:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:01:01 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:01:01 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 15:01:01 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 15:01:01 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 15:01:01 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:01:01 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:01:01 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 15:01:01 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 15:01:01 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 15:01:01 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 15:01:01 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 15:01:01 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 15:01:01 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 15:01:01 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:01:01 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:01:01 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 15:01:01 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 15:01:01 DEBUG MongoIO:77 - open mongo connection -2016-05-03 15:01:01 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 15:01:01 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:01:01 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:01:01 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:01:01 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bedc5f4b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@66e4aeb8, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f8ae6ce, socketFactory=javax.net.DefaultSocketFactory@4836f6c4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 15:01:01 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 15:01:01 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 15:01:01 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1869390}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1029897, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:01:01 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 15:01:01 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:01:01 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:01:01 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:01:01 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2140851}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1286873, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:01:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:01:01 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:258429}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1383892, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:01:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:01:01 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1554637}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=996565, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:01:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}] -2016-05-03 15:01:01 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1869391}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1869391}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 DEBUG command:56 - Command execution completed -2016-05-03 15:01:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1869391}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 DEBUG command:56 - Command execution completed -2016-05-03 15:01:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1869391}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 DEBUG command:56 - Command execution completed -2016-05-03 15:01:01 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:01:01 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:01:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1869391}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 DEBUG command:56 - Command execution completed -2016-05-03 15:01:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1869391}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 DEBUG command:56 - Command execution completed -2016-05-03 15:01:01 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:01:01 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1869391}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:01:01 DEBUG query:56 - Query completed -2016-05-03 15:01:01 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 15:01:01 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2140851} -2016-05-03 15:01:01 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:258429} -2016-05-03 15:01:01 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1869391}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 15:01:01 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1554637} -2016-05-03 15:01:01 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1869391} -2016-05-03 15:01:01 INFO MongoIO:508 - Mongo has been closed -2016-05-03 15:01:01 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1869390} -2016-05-03 15:01:01 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:01:01 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 15:01:01 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 15:01:01 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 15:01:01 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 15:01:01 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 15:01:01 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 15:01:01 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 15:01:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:01:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:02:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:02:26 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:03:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:03:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:04:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:04:16 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:05:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:05:11 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:06:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:06:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:07:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:07:01 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:07:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:07:56 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 15:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:08:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:09:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:09:46 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:10:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 166 -2016-05-03 15:10:41 DEBUG ASLSession:458 - Getting security token: null in thread 166 -2016-05-03 15:11:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:11:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:12:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:12:31 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:13:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:13:26 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:14:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:14:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:15:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:15:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:30:28 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 15:30:28 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 15:30:28 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 15:30:28 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 15:30:28 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 15:30:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:30:28 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 15:30:28 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@1fc1ca9e -2016-05-03 15:30:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:30:28 INFO ASLSession:352 - Logging the entrance -2016-05-03 15:30:28 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 15:30:28 DEBUG TemplateModel:83 - 2016-05-03 15:30:28, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 15:30:28 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:30:28 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 15:30:30 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 15:30:30 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 15:30:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:30:30 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 15:30:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:30:30 INFO ASLSession:352 - Logging the entrance -2016-05-03 15:30:30 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 15:30:30 DEBUG TemplateModel:83 - 2016-05-03 15:30:30, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 15:30:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:30:30 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 15:30:30 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 170 ms -2016-05-03 15:30:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 15:30:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 15:30:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 15:30:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 15:30:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 15:30:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 15:30:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 15:30:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 15:30:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 15:30:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 15:30:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 15:30:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 15:30:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 15:30:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 15:30:31 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 15:30:31 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:30:31 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 15:30:31 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@70b6c131 -2016-05-03 15:30:31 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@4616d072 -2016-05-03 15:30:31 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@7ffc8ef5 -2016-05-03 15:30:31 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@5b83560d -2016-05-03 15:30:31 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 120 ms -2016-05-03 15:30:31 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 15:30:31 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 15:30:31 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 15:30:31 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 15:30:31 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 15:30:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:30:31 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:30:31 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 15:30:31 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 20 ms -2016-05-03 15:30:31 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 15:30:31 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:30:31 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 15:30:31 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:30:32 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:30:32 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 15:30:32 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 15:30:32 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 15:30:32 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 15:30:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:30:32 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:30:32 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:30:32 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 15:30:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:33 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 15:30:33 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 15:30:33 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 15:30:33 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 15:30:33 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 15:30:33 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 15:30:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:30:33 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:30:33 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 15:30:33 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 70 ms -2016-05-03 15:30:33 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 15:30:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:30:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:33 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 15:30:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:33 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 15:30:33 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 15:30:33 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 15:30:33 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 15:30:33 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 15:30:33 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 15:30:33 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 15:30:33 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 15:30:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:33 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:30:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 15:30:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:34 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:30:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 15:30:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:34 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:30:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 15:30:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:34 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:30:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 15:30:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:35 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 15:30:35 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 15:30:35 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 15:30:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:30:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:30:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:30:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:35 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 15:30:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:30:35 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:30:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:30:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:35 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 15:30:35 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 15:30:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:35 INFO WorkspaceExplorerServiceImpl:188 - end time - 140 msc 0 sec -2016-05-03 15:30:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:30:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:30:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:30:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:35 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 15:30:35 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 15:30:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:35 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 15:30:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 15:30:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:30:35 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:30:35 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 15:30:35 INFO WorkspaceExplorerServiceImpl:188 - end time - 183 msc 0 sec -2016-05-03 15:30:35 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-05-03 15:30:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 15:30:35 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:30:35 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 15:30:35 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 15:30:35 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 15:30:35 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 15:30:35 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 15:30:35 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 15:30:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 15:30:35 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 15:30:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 15:30:35 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:30:35 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 15:30:35 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 15:30:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 15:30:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 15:30:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 15:30:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:30:35 INFO WorkspaceExplorerServiceImpl:188 - end time - 398 msc 0 sec -2016-05-03 15:30:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:30:39 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:30:39 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:30:39 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 15:30:39 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:30:39 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:30:39 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 15:30:39 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 15:30:39 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 15:30:39 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 15:30:39 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 15:30:39 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 15:30:39 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:30:39 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 15:30:39 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 15:30:39 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 15:30:39 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 15:30:39 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 15:30:39 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:30:39 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 15:30:39 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 15:30:39 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 15:30:39 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 15:30:39 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 15:30:39 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 15:30:39 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 15:30:39 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 15:30:39 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:39 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 15:30:39 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 15:30:39 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:39 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:30:39 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 15:30:39 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:30:39 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 15:30:39 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 15:30:39 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 15:30:39 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 15:30:39 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 15:30:39 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 15:30:39 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 15:30:39 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 15:30:39 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:39 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 15:30:39 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 15:30:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:30:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:30:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:30:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:30:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:30:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:30:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:39 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:30:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:30:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:30:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:30:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:30:39 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:30:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:30:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:30:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:30:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:30:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:30:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:30:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:39 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:30:39 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:30:39 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:30:39 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:30:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:30:39 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:30:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:30:39 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:30:39 INFO WorkspaceExplorerServiceImpl:142 - end time - 272 msc 0 sec -2016-05-03 15:30:39 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:30:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:30:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:30:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:30:50 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM -2016-05-03 15:30:50 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:30:50 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:30:50 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM - BIONYM - An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication. - - - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - - - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - - - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - - - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - - - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - - - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - - - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - - - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - - - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - - - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - - - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - - - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - - - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - - - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - - - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - - - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - - - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - - - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - - - - - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 15:30:50 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - -2016-05-03 15:30:50 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - -2016-05-03 15:30:50 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 15:30:50 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-03 15:30:50 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 15:30:50 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:30:50 DEBUG WPS2SM:324 - Conversion to SM Type->RawTaxaNamesTable is a Complex Input -2016-05-03 15:30:50 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 15:30:50 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 15:30:50 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 15:30:50 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawTaxaNamesTable -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->RawNamesColumn is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: rawnames -2016-05-03 15:30:50 DEBUG WPS2SM:129 - Machter title: The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames] -2016-05-03 15:30:50 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 15:30:50 DEBUG WPS2SM:131 - Machter group: the name of a column from RawTaxaNamesTable -2016-05-03 15:30:50 DEBUG WPS2SM:132 - Machter start: 80 -2016-05-03 15:30:50 DEBUG WPS2SM:133 - Machter end: 123 -2016-05-03 15:30:50 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 15:30:50 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: RawTaxaNamesTable -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawNamesColumn -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: bionout -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Name of the table which will contain the matches -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OutputTableLabel -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-03 15:30:50 DEBUG WPS2SM:310 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The reference dataset to use -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-03 15:30:50 DEBUG WPS2SM:310 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Parser_Name -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-03 15:30:50 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-03 15:30:50 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-03 15:30:50 DEBUG WPS2SM:310 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-03 15:30:50 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_1 -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_1 -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_1 -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-03 15:30:50 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_2 -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_2 -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_2 -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-03 15:30:50 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_3 -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_3 -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_3 -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-03 15:30:50 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_4 -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_4 -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_4 -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-03 15:30:50 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_5 -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_5 -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-03 15:30:50 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-03 15:30:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:50 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 15:30:50 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-03 15:30:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 15:30:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_5 -2016-05-03 15:30:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:50 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-03 15:30:50 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-03 15:30:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:30:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:30:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:30:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:30:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:30:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:30:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:50 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:30:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:30:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:30:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:30:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:30:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:30:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:30:50 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:30:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:30:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:30:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:30:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:30:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:51 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:30:51 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:30:51 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:30:51 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:30:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:30:51 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:30:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:30:51 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:30:51 INFO WorkspaceExplorerServiceImpl:142 - end time - 187 msc 0 sec -2016-05-03 15:30:51 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:30:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:30:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:30:58 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:30:58 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 15:30:58 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:30:58 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:30:59 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN - BIOCLIMATE_HSPEN - A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes - - - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 15:30:59 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 15:30:59 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 15:30:59 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 15:30:59 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 15:30:59 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 15:30:59 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:30:59 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 15:30:59 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 15:30:59 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 15:30:59 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 15:30:59 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 15:30:59 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:30:59 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 15:30:59 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 15:30:59 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 15:30:59 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 15:30:59 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 15:30:59 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 15:30:59 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 15:30:59 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 15:30:59 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:59 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 15:30:59 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 15:30:59 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:30:59 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:30:59 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 15:30:59 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:30:59 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 15:30:59 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 15:30:59 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 15:30:59 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 15:30:59 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 15:30:59 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 15:30:59 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 15:30:59 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 15:30:59 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:30:59 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 15:30:59 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 15:30:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:30:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:30:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:30:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:30:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:30:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:30:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:30:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:30:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:30:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:30:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:30:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:30:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:30:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:30:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:30:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:30:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:30:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:30:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:30:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:30:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:30:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:30:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:30:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:30:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:30:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:30:59 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:30:59 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:30:59 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:30:59 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:30:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:30:59 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:30:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:30:59 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:30:59 INFO WorkspaceExplorerServiceImpl:142 - end time - 184 msc 0 sec -2016-05-03 15:30:59 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:31:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:31:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:31:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:31:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:31:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:31:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:31:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:35 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:31:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:31:35 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:31:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:31:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:31:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:31:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:31:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:31:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:31:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:31:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:31:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:31:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:35 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:31:35 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:31:35 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:31:35 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:31:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:31:35 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:31:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:31:35 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:31:35 INFO WorkspaceExplorerServiceImpl:142 - end time - 167 msc 0 sec -2016-05-03 15:31:35 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:31:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:31:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:31:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:31:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:31:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:31:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:31:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:36 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:31:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:31:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:31:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:31:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:31:36 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:31:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:31:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:31:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:31:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:36 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:31:36 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:31:36 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:31:36 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:31:36 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:31:36 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:31:36 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:31:36 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:31:36 INFO WorkspaceExplorerServiceImpl:142 - end time - 189 msc 0 sec -2016-05-03 15:31:36 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:31:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:31:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:31:37 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:31:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:37 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:31:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:31:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:37 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:31:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:31:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:37 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:31:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:37 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:31:37 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:31:37 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:31:37 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:31:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:31:37 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:31:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:31:37 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:31:37 INFO WorkspaceExplorerServiceImpl:142 - end time - 169 msc 0 sec -2016-05-03 15:31:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:31:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:37 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:31:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:31:37 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:31:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:37 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:31:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:31:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:31:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:31:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:31:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:37 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:37 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:31:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:37 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:31:37 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:31:37 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:31:37 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:31:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:31:37 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:31:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:31:37 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:31:37 INFO WorkspaceExplorerServiceImpl:142 - end time - 157 msc 0 sec -2016-05-03 15:31:37 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:31:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:31:38 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:31:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:31:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:31:38 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:31:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:31:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:38 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:31:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:31:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:31:38 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:31:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:31:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:31:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:31:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:38 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:31:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:38 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:31:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:38 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:31:38 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:31:38 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:31:38 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:31:38 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:31:38 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:31:38 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:31:38 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:31:38 INFO WorkspaceExplorerServiceImpl:142 - end time - 162 msc 0 sec -2016-05-03 15:31:38 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:31:39 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:31:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:31:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:31:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:39 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:31:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:31:39 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:31:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:39 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:31:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:31:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:31:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:31:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:31:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:31:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:31:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:31:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:31:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:31:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:31:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:31:39 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:31:39 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:31:39 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:31:39 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:31:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:31:39 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:31:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:31:39 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:31:39 INFO WorkspaceExplorerServiceImpl:142 - end time - 178 msc 0 sec -2016-05-03 15:31:39 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:32:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:32:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:37:01 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 15:37:01 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 15:37:01 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 15:37:01 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 15:37:01 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 15:37:01 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:01 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 15:37:01 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@56dcb51c -2016-05-03 15:37:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:01 INFO ASLSession:352 - Logging the entrance -2016-05-03 15:37:01 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 15:37:01 DEBUG TemplateModel:83 - 2016-05-03 15:37:01, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 15:37:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:37:01 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 15:37:06 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 15:37:06 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 15:37:06 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:06 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 15:37:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:06 INFO ASLSession:352 - Logging the entrance -2016-05-03 15:37:06 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 15:37:06 DEBUG TemplateModel:83 - 2016-05-03 15:37:06, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 15:37:06 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:37:06 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 15:37:06 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 136 ms -2016-05-03 15:37:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 15:37:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 15:37:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 15:37:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 15:37:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 15:37:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 15:37:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 15:37:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 15:37:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 15:37:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 15:37:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 15:37:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 15:37:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 15:37:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 15:37:06 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 15:37:06 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:37:06 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 15:37:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@3e0ab304 -2016-05-03 15:37:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@18915a6d -2016-05-03 15:37:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@58ec83e9 -2016-05-03 15:37:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@46767d40 -2016-05-03 15:37:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 95 ms -2016-05-03 15:37:07 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 15:37:07 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 15:37:07 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 15:37:07 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 15:37:07 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 15:37:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:37:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 15:37:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 18 ms -2016-05-03 15:37:07 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 15:37:07 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:37:07 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 15:37:07 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:37:07 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 15:37:07 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 15:37:07 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 15:37:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:37:07 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:37:07 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 15:37:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:07 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 15:37:07 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 15:37:07 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 15:37:07 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 15:37:07 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 15:37:07 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 15:37:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 15:37:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:37:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 15:37:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 81 ms -2016-05-03 15:37:07 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 15:37:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:07 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 15:37:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:07 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 15:37:08 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 15:37:08 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 15:37:08 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 15:37:08 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 15:37:08 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 15:37:08 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 15:37:08 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 15:37:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:08 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:37:08 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 15:37:08 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:37:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 15:37:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:08 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:37:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 15:37:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:08 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:37:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 15:37:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:08 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:37:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 15:37:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:09 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 15:37:09 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 15:37:09 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 15:37:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:09 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 15:37:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:09 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 15:37:09 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 15:37:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:09 INFO WorkspaceExplorerServiceImpl:188 - end time - 114 msc 0 sec -2016-05-03 15:37:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:09 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:09 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 15:37:09 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 15:37:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:10 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 15:37:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:37:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:37:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 15:37:10 INFO WorkspaceExplorerServiceImpl:188 - end time - 167 msc 0 sec -2016-05-03 15:37:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-03 15:37:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:37:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:37:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 15:37:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 15:37:10 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 15:37:10 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 15:37:10 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 15:37:10 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 15:37:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:37:10 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 15:37:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:37:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:37:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 15:37:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 15:37:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:37:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:37:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:37:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:10 INFO WorkspaceExplorerServiceImpl:188 - end time - 398 msc 0 sec -2016-05-03 15:37:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:37:15 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 15:37:15 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:37:15 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:37:15 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 15:37:15 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 15:37:15 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 15:37:15 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 15:37:15 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 15:37:15 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 15:37:15 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:37:15 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 15:37:15 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 15:37:15 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 15:37:15 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 15:37:15 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 15:37:15 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:37:15 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 15:37:15 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 15:37:15 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 15:37:15 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 15:37:15 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 15:37:15 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 15:37:15 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 15:37:15 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 15:37:15 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:37:15 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 15:37:15 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 15:37:15 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:37:15 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:37:15 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 15:37:15 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:37:15 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 15:37:15 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 15:37:15 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 15:37:15 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 15:37:15 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 15:37:15 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 15:37:15 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 15:37:15 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 15:37:15 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:37:15 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 15:37:15 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 15:37:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:15 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:15 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:37:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:37:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:16 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:16 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:37:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:16 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:37:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:16 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:37:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:16 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:37:16 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:37:16 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:37:16 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:37:16 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:16 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:37:16 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:16 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:37:16 INFO WorkspaceExplorerServiceImpl:142 - end time - 222 msc 0 sec -2016-05-03 15:37:16 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:37:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:20 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:20 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:20 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:37:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:37:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:20 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:20 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:20 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:20 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:37:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:37:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:37:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:37:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:37:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:37:20 INFO WorkspaceExplorerServiceImpl:142 - end time - 183 msc 0 sec -2016-05-03 15:37:20 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:37:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:21 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:37:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:37:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:37:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:37:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:22 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:37:22 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:37:22 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:37:22 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:37:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:22 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:37:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:22 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:37:22 INFO WorkspaceExplorerServiceImpl:142 - end time - 204 msc 0 sec -2016-05-03 15:37:22 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:37:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:23 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:23 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:23 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:37:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:37:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:37:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:23 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:23 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:37:23 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:37:23 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:37:23 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:37:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:23 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:37:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:23 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:37:23 INFO WorkspaceExplorerServiceImpl:142 - end time - 176 msc 0 sec -2016-05-03 15:37:23 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:37:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:24 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:24 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:24 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:37:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:37:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:24 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:24 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:24 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:24 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:37:24 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:37:24 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:37:24 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:37:24 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:24 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:37:24 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:24 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:37:24 INFO WorkspaceExplorerServiceImpl:142 - end time - 251 msc 0 sec -2016-05-03 15:37:24 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:50 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:50 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:50 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:51 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:37:51 INFO WorkspaceExplorerServiceImpl:142 - end time - 200 msc 0 sec -2016-05-03 15:37:51 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:37:51 INFO WorkspaceExplorerServiceImpl:142 - end time - 183 msc 0 sec -2016-05-03 15:37:51 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:51 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:37:51 INFO WorkspaceExplorerServiceImpl:142 - end time - 159 msc 0 sec -2016-05-03 15:37:51 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:37:52 INFO WorkspaceExplorerServiceImpl:142 - end time - 161 msc 0 sec -2016-05-03 15:37:52 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:52 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:37:52 INFO WorkspaceExplorerServiceImpl:142 - end time - 161 msc 0 sec -2016-05-03 15:37:52 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:37:52 INFO WorkspaceExplorerServiceImpl:142 - end time - 161 msc 0 sec -2016-05-03 15:37:52 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:52 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:52 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:37:52 INFO WorkspaceExplorerServiceImpl:142 - end time - 148 msc 0 sec -2016-05-03 15:37:52 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:52 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:37:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:52 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:37:53 INFO WorkspaceExplorerServiceImpl:142 - end time - 170 msc 0 sec -2016-05-03 15:37:53 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:53 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:37:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:37:53 INFO WorkspaceExplorerServiceImpl:142 - end time - 156 msc 0 sec -2016-05-03 15:37:53 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:37:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:53 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:37:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:37:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:37:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:37:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:37:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:37:53 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:37:53 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:37:53 INFO WorkspaceExplorerServiceImpl:142 - end time - 162 msc 0 sec -2016-05-03 15:37:53 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:37:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:38:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:38:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:39:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:39:46 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:40:58 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 15:40:58 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 15:40:58 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 15:40:58 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 15:40:58 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 15:40:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:40:58 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 15:40:58 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@1dd6b13d -2016-05-03 15:40:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:40:58 INFO ASLSession:352 - Logging the entrance -2016-05-03 15:40:58 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 15:40:58 DEBUG TemplateModel:83 - 2016-05-03 15:40:58, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 15:40:58 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:40:58 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 15:41:00 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 15:41:00 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 15:41:00 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:41:00 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 15:41:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:41:00 INFO ASLSession:352 - Logging the entrance -2016-05-03 15:41:00 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 15:41:00 DEBUG TemplateModel:83 - 2016-05-03 15:41:00, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 15:41:00 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:41:00 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 15:41:00 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 143 ms -2016-05-03 15:41:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 15:41:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 15:41:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 15:41:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 15:41:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 15:41:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 15:41:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 15:41:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 15:41:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 15:41:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 15:41:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 15:41:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 15:41:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 15:41:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 15:41:00 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 15:41:00 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:41:00 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 15:41:00 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@1fc13a8d -2016-05-03 15:41:00 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3e415ae4 -2016-05-03 15:41:00 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@44b12076 -2016-05-03 15:41:00 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@6eed44d2 -2016-05-03 15:41:00 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 98 ms -2016-05-03 15:41:01 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 15:41:01 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 15:41:01 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 15:41:01 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 15:41:01 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 15:41:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:41:01 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:41:01 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 15:41:01 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 30 ms -2016-05-03 15:41:01 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 15:41:01 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:41:01 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 15:41:01 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:41:01 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 15:41:01 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 15:41:01 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 15:41:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:41:01 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:41:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:41:01 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 15:41:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:01 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 15:41:01 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 15:41:01 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 15:41:01 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 15:41:01 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 15:41:01 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 15:41:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 15:41:01 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:41:01 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 15:41:01 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 49 ms -2016-05-03 15:41:01 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 15:41:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:41:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:01 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 15:41:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:01 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 15:41:02 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:41:02 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 15:41:02 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 15:41:02 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 15:41:02 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 15:41:02 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 15:41:02 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 15:41:02 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 15:41:02 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 15:41:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:02 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:41:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 15:41:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:02 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:41:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 15:41:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:03 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:41:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 15:41:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:03 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:41:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 15:41:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:04 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 15:41:04 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 15:41:04 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 15:41:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:41:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:41:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:41:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:04 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 15:41:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:41:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:41:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:41:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:04 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 15:41:04 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 15:41:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:04 INFO WorkspaceExplorerServiceImpl:188 - end time - 131 msc 0 sec -2016-05-03 15:41:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:41:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:41:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:41:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:04 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 15:41:04 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 15:41:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:04 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 15:41:04 INFO WorkspaceExplorerServiceImpl:188 - end time - 125 msc 0 sec -2016-05-03 15:41:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:41:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:41:05 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:41:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 15:41:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-03 15:41:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:41:05 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:41:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 15:41:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 15:41:05 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 15:41:05 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 15:41:05 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 15:41:05 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 15:41:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:41:05 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 15:41:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:41:05 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:41:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 15:41:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-03 15:41:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:41:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:41:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:41:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:41:05 INFO WorkspaceExplorerServiceImpl:188 - end time - 389 msc 0 sec -2016-05-03 15:41:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:41:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:41:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:41:08 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 15:41:08 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:41:08 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:41:08 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 15:41:08 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 15:41:08 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 15:41:08 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 15:41:08 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 15:41:08 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 15:41:08 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:41:08 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 15:41:08 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 15:41:08 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 15:41:08 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 15:41:08 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 15:41:08 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:41:08 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 15:41:08 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 15:41:08 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 15:41:08 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 15:41:08 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 15:41:08 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 15:41:08 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 15:41:08 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 15:41:08 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:41:08 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 15:41:08 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 15:41:08 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:41:08 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:41:08 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 15:41:08 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:41:08 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 15:41:08 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 15:41:08 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 15:41:08 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 15:41:08 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 15:41:08 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 15:41:08 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 15:41:08 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 15:41:08 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:41:08 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 15:41:08 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 15:41:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:41:08 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:41:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:41:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:41:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:08 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:41:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:41:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:08 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:41:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:41:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:41:08 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:41:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:41:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:41:08 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:41:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:41:08 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:41:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:41:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:41:08 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:41:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:08 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:41:08 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:41:08 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:41:08 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:41:08 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:41:08 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:41:08 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:41:08 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:41:08 INFO WorkspaceExplorerServiceImpl:142 - end time - 208 msc 0 sec -2016-05-03 15:41:08 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:41:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:41:10 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:41:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:41:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:41:10 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:41:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:41:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:10 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:41:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:41:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:41:10 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:41:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:41:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:41:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:41:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:41:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:41:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:41:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:41:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:41:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:10 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:41:11 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:41:11 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:41:11 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:41:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:41:11 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:41:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:41:11 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:41:11 INFO WorkspaceExplorerServiceImpl:142 - end time - 203 msc 0 sec -2016-05-03 15:41:11 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:41:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:41:11 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:41:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:41:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:41:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:41:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:41:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:11 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:41:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:41:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:41:11 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:41:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:41:11 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:41:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:41:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:41:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:41:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:41:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:41:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:41:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:12 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:41:12 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:41:12 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:41:12 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:41:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:41:12 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:41:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:41:12 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:41:12 INFO WorkspaceExplorerServiceImpl:142 - end time - 185 msc 0 sec -2016-05-03 15:41:12 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:41:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:41:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:41:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:41:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:12 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:41:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:41:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:41:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:41:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:41:12 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:41:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:41:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:41:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:41:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:41:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:12 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:41:12 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:41:12 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:41:12 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:41:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:41:12 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:41:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:41:12 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:41:12 INFO WorkspaceExplorerServiceImpl:142 - end time - 171 msc 0 sec -2016-05-03 15:41:12 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:41:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:41:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:41:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:41:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:12 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:41:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:41:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:41:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:41:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:41:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:41:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:41:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:41:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:41:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:41:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:41:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:41:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:41:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:41:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:41:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:41:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:41:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:41:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:41:13 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:41:13 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:41:13 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:41:13 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:41:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:41:13 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:41:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:41:13 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:41:13 INFO WorkspaceExplorerServiceImpl:142 - end time - 183 msc 0 sec -2016-05-03 15:41:13 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:41:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:41:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:42:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:42:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:43:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:43:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:44:43 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 15:44:43 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 15:44:43 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 15:44:43 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 15:44:43 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 15:44:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:44:43 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 15:44:43 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@4c94cdb2 -2016-05-03 15:44:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:44:43 INFO ASLSession:352 - Logging the entrance -2016-05-03 15:44:43 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 15:44:43 DEBUG TemplateModel:83 - 2016-05-03 15:44:43, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 15:44:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:44:43 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 15:44:45 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 15:44:45 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 15:44:45 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:44:45 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 15:44:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:44:45 INFO ASLSession:352 - Logging the entrance -2016-05-03 15:44:45 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 15:44:45 DEBUG TemplateModel:83 - 2016-05-03 15:44:45, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 15:44:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:44:45 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 15:44:45 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 131 ms -2016-05-03 15:44:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 15:44:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 15:44:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 15:44:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 15:44:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 15:44:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 15:44:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 15:44:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 15:44:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 15:44:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 15:44:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 15:44:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 15:44:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 15:44:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 15:44:45 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 15:44:45 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:44:45 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 15:44:45 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@1a918edc -2016-05-03 15:44:45 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@4244b32a -2016-05-03 15:44:45 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@437e02db -2016-05-03 15:44:45 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@32d8f6eb -2016-05-03 15:44:46 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 104 ms -2016-05-03 15:44:46 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 15:44:46 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 15:44:46 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 15:44:46 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 15:44:46 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 15:44:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:44:46 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:44:46 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 15:44:46 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 28 ms -2016-05-03 15:44:46 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 15:44:46 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:44:46 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 15:44:46 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:44:46 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 15:44:46 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 15:44:46 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 15:44:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:44:46 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:44:46 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:44:46 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 15:44:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:44:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:44:46 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 15:44:46 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 15:44:46 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 15:44:46 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 15:44:46 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 15:44:46 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 15:44:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 15:44:46 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:44:46 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 15:44:46 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 45 ms -2016-05-03 15:44:46 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 15:44:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:44:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:44:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:44:46 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 15:44:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:46 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 15:44:47 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:44:47 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 15:44:48 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 15:44:48 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 15:44:48 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 15:44:48 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 15:44:48 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 15:44:48 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 15:44:48 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 15:44:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:44:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:48 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:44:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 15:44:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:44:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:44:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:44:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:44:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:44:48 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:44:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 15:44:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:44:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:44:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:44:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:44:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:44:48 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:44:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 15:44:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:44:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:44:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:44:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:44:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:44:48 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:44:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 15:44:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:49 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 15:44:49 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 15:44:49 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 15:44:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:44:49 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:44:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:44:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:44:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:44:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:44:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:44:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:44:49 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 15:44:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:44:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:44:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:44:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:44:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:44:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:44:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:44:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:44:49 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 15:44:49 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 15:44:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:49 INFO WorkspaceExplorerServiceImpl:188 - end time - 115 msc 0 sec -2016-05-03 15:44:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:44:49 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:44:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:44:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:44:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:44:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:44:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:44:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:44:49 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 15:44:49 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 15:44:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:50 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 15:44:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 15:44:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:44:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:44:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 15:44:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 155 msc 0 sec -2016-05-03 15:44:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 15:44:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 15:44:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:44:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 15:44:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 15:44:50 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 15:44:50 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 15:44:50 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 15:44:50 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 15:44:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 15:44:50 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 15:44:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 15:44:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:44:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 15:44:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-05-03 15:44:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 15:44:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 15:44:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 15:44:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:44:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 369 msc 0 sec -2016-05-03 15:44:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:44:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:44:52 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:44:52 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 15:44:52 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:44:52 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:44:53 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 15:44:53 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 15:44:53 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 15:44:53 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 15:44:53 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 15:44:53 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 15:44:53 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:44:53 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 15:44:53 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 15:44:53 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 15:44:53 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 15:44:53 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 15:44:53 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:44:53 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 15:44:53 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 15:44:53 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 15:44:53 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 15:44:53 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 15:44:53 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 15:44:53 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 15:44:53 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 15:44:53 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:44:53 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 15:44:53 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 15:44:53 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:44:53 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:44:53 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 15:44:53 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:44:53 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 15:44:53 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 15:44:53 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 15:44:53 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 15:44:53 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 15:44:53 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 15:44:53 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 15:44:53 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 15:44:53 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:44:53 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 15:44:53 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 15:44:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:44:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:44:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:44:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:44:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:44:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:44:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:44:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:44:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:44:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:44:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:44:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:44:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:44:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:44:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:44:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:44:53 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:44:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:44:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:44:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:44:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:44:53 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:44:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:44:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:44:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:44:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:44:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:44:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:44:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:44:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:44:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:44:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:44:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:44:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:44:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:44:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:44:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:44:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:44:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:53 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:44:53 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:44:53 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:44:53 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:44:53 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:44:53 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:44:53 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:44:53 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:44:53 INFO WorkspaceExplorerServiceImpl:142 - end time - 225 msc 0 sec -2016-05-03 15:44:53 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:44:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:44:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:44:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:44:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:44:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:44:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:44:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:44:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:44:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:44:55 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:44:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:44:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:44:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:44:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:44:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:44:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:44:55 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:44:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:44:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:44:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:44:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:44:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:44:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:44:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:44:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:44:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:44:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:44:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:44:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:44:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:55 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:44:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:44:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:44:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:44:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:44:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:44:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:44:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:44:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:44:56 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:44:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:44:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:44:56 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:44:56 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:44:56 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:44:56 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:44:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:44:56 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:44:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:44:56 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:44:56 INFO WorkspaceExplorerServiceImpl:142 - end time - 208 msc 0 sec -2016-05-03 15:44:56 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:45:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:45:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:45:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:45:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:45:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:45:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:45:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:45:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:45:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:45:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:45:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:45:05 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:45:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:45:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:45:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:45:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:45:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:45:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:45:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:45:05 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:45:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:45:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:45:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:45:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:45:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:45:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:45:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:45:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:45:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:45:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:45:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:45:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:45:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:45:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:45:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:45:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:45:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:45:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:45:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:45:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:45:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:45:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:45:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:45:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:45:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:45:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:45:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:45:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:45:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:45:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:45:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:45:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:45:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:45:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:45:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:45:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:45:05 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:45:05 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:45:05 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:45:05 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:45:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:45:05 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:45:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:45:05 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:45:05 INFO WorkspaceExplorerServiceImpl:142 - end time - 185 msc 0 sec -2016-05-03 15:45:05 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:45:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:45:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:45:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:45:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:45:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:45:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:45:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:45:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:45:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:45:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:45:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:45:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:45:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:45:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:45:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:45:12 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:45:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:45:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:45:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:45:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:45:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:45:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:45:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:45:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:45:12 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:45:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:45:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:45:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:45:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:45:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:45:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:45:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:45:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:45:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:45:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:45:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:45:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:45:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:45:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:45:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:45:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:45:12 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:45:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:45:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:45:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:45:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:45:12 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:45:12 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:45:12 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:45:12 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:45:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:45:12 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:45:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:45:12 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:45:12 INFO WorkspaceExplorerServiceImpl:142 - end time - 173 msc 0 sec -2016-05-03 15:45:12 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:45:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:45:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:46:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:46:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:47:17 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 15:47:17 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 15:47:17 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 15:47:17 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 15:47:17 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 15:47:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:47:17 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 15:47:17 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@46860ee0 -2016-05-03 15:47:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:47:17 INFO ASLSession:352 - Logging the entrance -2016-05-03 15:47:17 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 15:47:17 DEBUG TemplateModel:83 - 2016-05-03 15:47:17, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 15:47:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:47:17 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 15:47:18 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 15:47:18 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 15:47:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:47:18 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 15:47:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:47:18 INFO ASLSession:352 - Logging the entrance -2016-05-03 15:47:18 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 15:47:18 DEBUG TemplateModel:83 - 2016-05-03 15:47:18, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 15:47:18 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:47:19 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 15:47:19 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 122 ms -2016-05-03 15:47:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 15:47:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 15:47:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 15:47:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 15:47:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 15:47:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 15:47:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 15:47:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 15:47:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 15:47:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 15:47:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 15:47:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 15:47:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 15:47:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 15:47:19 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 15:47:19 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:47:19 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 15:47:19 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@47fb63dd -2016-05-03 15:47:19 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@c0870d4 -2016-05-03 15:47:19 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@1f5c83e1 -2016-05-03 15:47:19 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@2214c6a3 -2016-05-03 15:47:19 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 101 ms -2016-05-03 15:47:19 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 15:47:19 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 15:47:19 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 15:47:19 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 15:47:19 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 15:47:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:47:19 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:47:19 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 15:47:19 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 24 ms -2016-05-03 15:47:19 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 15:47:19 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:47:19 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 15:47:19 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:47:19 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 15:47:19 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 15:47:19 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 15:47:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:47:19 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:47:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:47:19 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 15:47:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:47:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:47:20 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 15:47:20 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 15:47:20 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 15:47:20 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 15:47:20 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 15:47:20 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 15:47:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:47:20 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:47:20 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 15:47:20 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 79 ms -2016-05-03 15:47:20 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 15:47:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:47:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:47:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:47:20 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 15:47:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:47:20 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 15:47:20 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:47:20 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 15:47:20 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 15:47:20 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 15:47:20 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 15:47:20 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 15:47:20 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 15:47:20 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 15:47:20 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 15:47:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:47:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:47:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:47:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:47:20 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:47:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 15:47:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:47:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:47:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:47:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:47:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:47:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:47:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:47:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:47:21 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:47:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 15:47:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:47:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:47:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:47:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:47:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:47:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:47:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:47:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:47:21 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:47:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 15:47:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:47:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:47:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:47:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:47:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:47:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:47:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:47:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:47:21 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:47:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 15:47:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:47:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:47:21 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 15:47:21 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 15:47:21 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 15:47:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:47:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:47:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:47:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:47:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:47:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:47:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:47:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:47:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:47:22 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 15:47:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:47:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:47:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:47:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:47:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:47:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:47:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:47:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:47:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:47:22 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 15:47:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:47:22 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 15:47:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:47:22 INFO WorkspaceExplorerServiceImpl:188 - end time - 122 msc 0 sec -2016-05-03 15:47:22 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 15:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:47:22 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:47:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:47:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:47:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:47:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:47:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:47:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:47:22 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 15:47:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:47:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:47:22 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 15:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 15:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:47:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:47:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 15:47:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 38 ms -2016-05-03 15:47:22 INFO WorkspaceExplorerServiceImpl:188 - end time - 132 msc 0 sec -2016-05-03 15:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 15:47:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:47:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 15:47:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 15:47:22 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 15:47:22 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 15:47:22 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 15:47:22 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 15:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 15:47:22 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 15:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 15:47:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:47:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 15:47:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 15:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 15:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 15:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 15:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:47:22 INFO WorkspaceExplorerServiceImpl:188 - end time - 375 msc 0 sec -2016-05-03 15:47:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:47:27 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:47:27 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:47:27 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 15:47:27 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:47:27 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:47:28 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 15:47:28 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 15:47:28 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 15:47:28 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 15:47:28 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 15:47:28 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 15:47:28 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:47:28 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 15:47:28 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 15:47:28 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 15:47:28 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 15:47:28 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 15:47:28 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:47:28 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 15:47:28 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 15:47:28 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 15:47:28 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 15:47:28 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 15:47:28 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 15:47:28 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 15:47:28 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 15:47:28 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:47:28 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 15:47:28 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 15:47:28 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:47:28 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:47:28 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 15:47:28 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:47:28 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 15:47:28 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 15:47:28 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 15:47:28 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 15:47:28 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 15:47:28 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 15:47:28 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 15:47:28 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 15:47:28 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:47:28 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 15:47:28 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 15:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:47:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:47:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:47:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:47:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:47:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:47:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:47:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:47:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:47:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:47:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:47:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:47:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:47:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:47:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:47:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:47:28 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:47:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:47:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:47:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:47:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:47:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:47:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:47:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:47:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:47:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:47:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:47:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:47:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:47:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:47:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:47:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:47:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:47:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:47:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:47:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:47:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:47:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:47:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:47:28 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:47:28 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:47:28 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:47:28 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:47:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:47:28 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:47:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:47:28 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:47:28 INFO WorkspaceExplorerServiceImpl:142 - end time - 209 msc 0 sec -2016-05-03 15:47:28 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:49:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:49:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:50:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:50:02 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:50:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:50:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:50:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:50:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:50:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:50:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:50:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:50:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:50:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:50:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:50:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:50:39 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:50:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:50:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:50:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:50:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:50:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:50:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:50:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:50:39 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:50:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:50:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:50:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:50:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:50:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:50:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:50:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:50:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:50:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:50:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:50:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:50:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:50:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:50:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:50:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:50:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:50:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:50:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:50:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:50:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:50:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:50:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:50:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:50:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:50:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:50:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:50:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:50:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:50:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:50:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:50:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:50:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:50:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:50:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:50:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:50:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:50:40 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:50:40 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:50:40 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:50:40 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:50:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:50:40 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:50:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:50:40 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:50:40 INFO WorkspaceExplorerServiceImpl:142 - end time - 192 msc 0 sec -2016-05-03 15:50:40 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:50:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:50:57 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:51:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:51:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:54:49 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 15:54:49 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 15:54:49 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 15:54:49 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 15:54:49 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 15:54:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:54:49 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 15:54:49 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@2bc7005b -2016-05-03 15:54:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:54:49 INFO ASLSession:352 - Logging the entrance -2016-05-03 15:54:49 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 15:54:49 DEBUG TemplateModel:83 - 2016-05-03 15:54:49, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 15:54:49 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:54:49 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 15:54:51 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 15:54:51 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 15:54:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:54:51 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 15:54:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:54:51 INFO ASLSession:352 - Logging the entrance -2016-05-03 15:54:51 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 15:54:51 DEBUG TemplateModel:83 - 2016-05-03 15:54:51, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 15:54:51 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:54:51 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 15:54:51 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 125 ms -2016-05-03 15:54:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 15:54:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 15:54:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 15:54:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 15:54:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 15:54:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 15:54:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 15:54:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 15:54:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 15:54:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 15:54:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 15:54:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 15:54:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 15:54:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 15:54:51 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 15:54:51 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:54:51 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 15:54:51 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@3000b9de -2016-05-03 15:54:51 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@64358f1d -2016-05-03 15:54:51 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@642885cf -2016-05-03 15:54:51 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@231b0d31 -2016-05-03 15:54:51 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 97 ms -2016-05-03 15:54:52 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 15:54:52 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 15:54:52 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 15:54:52 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 15:54:52 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 15:54:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:54:52 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:54:52 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 15:54:52 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-03 15:54:52 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 15:54:52 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:54:52 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 15:54:52 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:54:52 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 15:54:52 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 15:54:52 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 15:54:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:54:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:54:52 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:54:52 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 15:54:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:54:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:54:52 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 15:54:52 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 15:54:52 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 15:54:52 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 15:54:52 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 15:54:52 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 15:54:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 15:54:52 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:54:52 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 15:54:52 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 23 ms -2016-05-03 15:54:52 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 15:54:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:54:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:54:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:54:52 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 15:54:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:54:52 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 15:54:52 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 15:54:53 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:54:53 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 15:54:53 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 15:54:53 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 15:54:54 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 15:54:54 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 15:54:54 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 15:54:54 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 15:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:54:54 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 15:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:54:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:54:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:54:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:54:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:54:54 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 15:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:54:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:54:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:54:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:54:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:54:54 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 15:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:54:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:54:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:54:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:54:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:54:54 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 15:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:54:55 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 15:54:55 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 15:54:55 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:54:55 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:54:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:54:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:54:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:54:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:54:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:54:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:54:55 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 15:54:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:54:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:54:55 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:54:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:54:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:54:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:54:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:54:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:54:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:54:55 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 15:54:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:54:55 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 15:54:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:54:55 INFO WorkspaceExplorerServiceImpl:188 - end time - 121 msc 0 sec -2016-05-03 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:54:55 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:54:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:54:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:54:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:54:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:54:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:54:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:54:55 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 15:54:55 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 15:54:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:54:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:54:55 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:54:55 INFO WorkspaceExplorerServiceImpl:188 - end time - 151 msc 0 sec -2016-05-03 15:54:55 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:54:55 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 15:54:55 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-05-03 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 15:54:55 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:54:55 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 15:54:55 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 15:54:55 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 15:54:55 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 15:54:55 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 15:54:55 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 15:54:55 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 15:54:55 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:54:55 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 15:54:55 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 17 ms -2016-05-03 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:54:55 INFO WorkspaceExplorerServiceImpl:188 - end time - 396 msc 0 sec -2016-05-03 15:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:54:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:54:59 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 15:54:59 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:54:59 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:54:59 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 15:54:59 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 15:54:59 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 15:54:59 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 15:54:59 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 15:54:59 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 15:54:59 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:54:59 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 15:54:59 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 15:54:59 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 15:54:59 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 15:54:59 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 15:54:59 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:54:59 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 15:54:59 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 15:54:59 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 15:54:59 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 15:54:59 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 15:54:59 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 15:54:59 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 15:54:59 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 15:54:59 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:54:59 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 15:54:59 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 15:54:59 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:54:59 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:54:59 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 15:54:59 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:54:59 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 15:54:59 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 15:54:59 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 15:54:59 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 15:54:59 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 15:54:59 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 15:54:59 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 15:54:59 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 15:54:59 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:54:59 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 15:54:59 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 15:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:54:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:54:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:54:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:54:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:54:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:00 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:55:00 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:55:00 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:55:00 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:55:00 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:00 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:55:00 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:00 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:55:00 INFO WorkspaceExplorerServiceImpl:142 - end time - 261 msc 0 sec -2016-05-03 15:55:00 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:55:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:02 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:55:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:55:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:55:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:55:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:02 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:55:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:55:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:02 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:55:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:55:02 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:55:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:55:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:55:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:55:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:55:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:55:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:55:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:02 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:55:02 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:55:02 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:55:02 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:55:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:02 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:55:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:02 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:55:02 INFO WorkspaceExplorerServiceImpl:142 - end time - 178 msc 0 sec -2016-05-03 15:55:02 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:55:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:55:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:55:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:55:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:07 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:55:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:07 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:55:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:55:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:55:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:55:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:55:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:55:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:07 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:55:07 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:55:07 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:55:07 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:55:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:07 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:55:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:07 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:55:07 INFO WorkspaceExplorerServiceImpl:142 - end time - 173 msc 0 sec -2016-05-03 15:55:07 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:55:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:55:08 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:55:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:55:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:55:08 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:55:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:55:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:08 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:55:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:55:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:55:08 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:55:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:55:08 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:55:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:55:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:08 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:55:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:08 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:55:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:08 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:55:08 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:55:08 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:55:08 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:55:08 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:08 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:55:08 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:08 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:55:08 INFO WorkspaceExplorerServiceImpl:142 - end time - 222 msc 0 sec -2016-05-03 15:55:08 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:55:09 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:55:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:55:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:55:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:09 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:55:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:55:09 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:55:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:55:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:55:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:09 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:09 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:55:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:55:09 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:55:09 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:55:09 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:55:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:09 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:55:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:09 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:55:09 INFO WorkspaceExplorerServiceImpl:142 - end time - 187 msc 0 sec -2016-05-03 15:55:09 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:55:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:55:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:55:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:55:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:09 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:55:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:55:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:09 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:55:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:55:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:55:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:55:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:55:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:09 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:55:10 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:55:10 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:55:10 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:55:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:10 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:55:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:10 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:55:10 INFO WorkspaceExplorerServiceImpl:142 - end time - 156 msc 0 sec -2016-05-03 15:55:10 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:55:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:55:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:55:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:55:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:55:10 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:55:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:55:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:10 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:55:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:55:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:55:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:55:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:55:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:55:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:55:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:55:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:55:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:55:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:55:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:55:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:10 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:55:10 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:55:10 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:55:10 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:55:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:10 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:55:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:10 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:55:10 INFO WorkspaceExplorerServiceImpl:142 - end time - 186 msc 0 sec -2016-05-03 15:55:10 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:55:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:11 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:55:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:55:11 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:55:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:55:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:11 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:55:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:55:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 15:55:11 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 15:55:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:55:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:55:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:55:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:55:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:55:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:55:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:55:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:55:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:55:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:55:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:55:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:55:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:55:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:55:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:55:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:55:11 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:55:11 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:55:11 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:55:11 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:55:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:11 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:55:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:55:11 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:55:11 INFO WorkspaceExplorerServiceImpl:142 - end time - 165 msc 0 sec -2016-05-03 15:55:11 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 15:55:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 15:56:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:56:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:58:38 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 15:58:38 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 15:58:38 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 15:58:38 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 15:58:38 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 15:58:38 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:58:38 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 15:58:38 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@5e3b156a -2016-05-03 15:58:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:58:38 INFO ASLSession:352 - Logging the entrance -2016-05-03 15:58:38 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 15:58:38 DEBUG TemplateModel:83 - 2016-05-03 15:58:38, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 15:58:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:58:38 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 15:58:40 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 15:58:40 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 15:58:40 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:58:40 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 15:58:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:58:40 INFO ASLSession:352 - Logging the entrance -2016-05-03 15:58:40 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 15:58:40 DEBUG TemplateModel:83 - 2016-05-03 15:58:40, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 15:58:40 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:58:40 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 15:58:40 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 128 ms -2016-05-03 15:58:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 15:58:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 15:58:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 15:58:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 15:58:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 15:58:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 15:58:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 15:58:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 15:58:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 15:58:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 15:58:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 15:58:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 15:58:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 15:58:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 15:58:40 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 15:58:41 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:58:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 15:58:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@71d6c028 -2016-05-03 15:58:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@349ff1a7 -2016-05-03 15:58:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@750e6c96 -2016-05-03 15:58:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@7748fd65 -2016-05-03 15:58:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 104 ms -2016-05-03 15:58:41 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 15:58:41 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 15:58:41 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 15:58:41 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 15:58:41 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 15:58:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:58:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:58:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 15:58:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 21 ms -2016-05-03 15:58:41 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 15:58:41 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:58:41 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 15:58:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:58:41 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 15:58:41 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 15:58:41 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 15:58:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:58:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:58:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:58:41 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 15:58:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:58:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:58:41 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 15:58:41 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 15:58:41 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 15:58:41 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 15:58:41 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 15:58:41 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 15:58:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 15:58:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:58:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 15:58:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-03 15:58:41 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 15:58:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:58:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:58:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:58:41 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 15:58:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:41 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 15:58:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 15:58:42 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 15:58:42 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 15:58:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 15:58:42 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 15:58:42 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 15:58:42 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 15:58:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:58:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:42 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:58:42 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 15:58:42 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:58:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 15:58:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:58:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:58:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:58:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:58:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:58:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:58:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 15:58:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:58:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:58:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:58:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:58:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:58:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:58:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 15:58:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:58:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:58:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:58:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:58:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:58:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 15:58:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 15:58:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:43 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 15:58:43 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 15:58:43 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 15:58:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:58:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:58:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:58:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:58:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:58:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:58:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:58:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:58:43 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 15:58:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:58:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:58:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:58:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:58:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:58:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:58:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:58:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:58:43 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 15:58:43 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 15:58:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:43 INFO WorkspaceExplorerServiceImpl:188 - end time - 123 msc 0 sec -2016-05-03 15:58:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:58:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:58:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:58:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:58:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:58:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:58:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:58:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:58:43 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 15:58:43 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 15:58:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:43 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 15:58:43 INFO WorkspaceExplorerServiceImpl:188 - end time - 127 msc 0 sec -2016-05-03 15:58:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:58:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:58:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:58:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 15:58:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-05-03 15:58:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:58:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:58:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 15:58:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 15:58:44 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 15:58:44 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 15:58:44 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 15:58:44 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 15:58:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:58:44 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 15:58:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:58:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 15:58:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 15:58:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 15:58:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:58:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:58:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 15:58:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:58:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 1390 msc 1 sec -2016-05-03 15:58:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:58:50 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:58:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:58:50 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 15:58:50 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:58:50 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:58:51 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 15:58:51 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 15:58:51 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 15:58:51 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 15:58:51 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 15:58:51 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 15:58:51 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:58:51 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 15:58:51 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 15:58:51 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 15:58:51 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 15:58:51 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 15:58:51 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:58:51 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 15:58:51 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 15:58:51 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 15:58:51 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 15:58:51 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 15:58:51 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 15:58:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 15:58:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 15:58:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:58:51 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 15:58:51 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 15:58:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:58:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:58:51 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 15:58:51 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:58:51 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 15:58:51 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 15:58:51 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 15:58:51 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 15:58:51 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 15:58:51 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 15:58:51 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 15:58:51 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 15:58:51 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:58:51 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 15:58:51 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 15:58:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:58:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:58:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:58:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:58:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:58:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:58:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:58:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:58:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:58:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:58:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:58:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:58:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:58:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:58:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:58:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:58:51 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:58:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:58:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:58:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:58:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:58:51 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:58:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:58:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:58:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:58:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:58:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:58:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:58:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:58:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:58:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:58:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:58:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:58:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:58:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:58:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:58:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:58:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:58:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:51 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:58:51 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:58:51 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:58:51 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:58:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:58:51 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:58:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:58:51 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:58:51 INFO WorkspaceExplorerServiceImpl:142 - end time - 223 msc 0 sec -2016-05-03 15:58:51 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:58:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:58:55 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:58:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:58:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:58:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:58:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:58:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:58:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:58:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:58:55 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:58:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:58:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:58:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:58:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:58:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:58:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:58:55 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:58:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:58:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:58:55 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:58:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:58:55 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:58:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:58:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:58:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:58:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:58:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:58:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:58:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:58:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:58:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:58:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:58:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:58:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:58:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:58:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:58:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:58:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:58:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:58:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:58:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:58:55 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:58:55 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:58:55 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:58:55 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:58:55 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:58:55 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:58:55 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:58:55 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:58:55 INFO WorkspaceExplorerServiceImpl:142 - end time - 191 msc 0 sec -2016-05-03 15:58:55 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:59:02 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:02 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:02 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:59:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:02 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:02 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:59:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:02 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:02 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:02 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 15:59:02 DEBUG ServiceEngine:306 - get() - start -2016-05-03 15:59:02 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:02 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:02 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 15:59:02 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 15:59:02 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 15:59:02 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 15:59:02 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 15:59:02 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 15:59:02 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 15:59:02 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:02 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:02 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 15:59:02 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 15:59:02 DEBUG MongoIO:77 - open mongo connection -2016-05-03 15:59:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:02 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:59:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:02 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:59:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:02 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:02 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 15:59:02 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:02 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:02 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 15:59:02 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:02 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:02 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ab4e2563, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7726b320, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@dba36fd, socketFactory=javax.net.DefaultSocketFactory@3c702315, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 15:59:02 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 15:59:02 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 15:59:03 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 15:59:03 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:59:03 INFO WorkspaceExplorerServiceImpl:188 - end time - 65 msc 0 sec -2016-05-03 15:59:03 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 15:59:03 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 15:59:03 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:259648}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1405418, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:03 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 15:59:03 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1870891}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:03 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:03 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2141886}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=5986063, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:03 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=980505, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:03 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1555681}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1398543, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 15:59:03 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1870892}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1870892}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 DEBUG command:56 - Command execution completed -2016-05-03 15:59:03 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1870892}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 DEBUG command:56 - Command execution completed -2016-05-03 15:59:03 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1870892}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 DEBUG command:56 - Command execution completed -2016-05-03 15:59:03 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 15:59:03 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1870892}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 DEBUG command:56 - Command execution completed -2016-05-03 15:59:03 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1870892}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 DEBUG command:56 - Command execution completed -2016-05-03 15:59:03 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1870892}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:03 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:59:03 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:59:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:59:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:03 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:59:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:03 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:59:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:03 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:59:03 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:59:03 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 15:59:03 DEBUG ServiceEngine:306 - get() - start -2016-05-03 15:59:03 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:03 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:03 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 15:59:03 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 15:59:03 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 15:59:03 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 15:59:03 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 15:59:03 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 15:59:03 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 15:59:03 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:03 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:03 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 15:59:03 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 15:59:03 DEBUG MongoIO:77 - open mongo connection -2016-05-03 15:59:03 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 15:59:03 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:03 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:03 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:03 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ab4e2563, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7726b320, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@dba36fd, socketFactory=javax.net.DefaultSocketFactory@3c702315, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 15:59:03 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 15:59:03 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 15:59:04 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1870893}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1611888, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:04 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 15:59:04 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:04 DEBUG query:56 - Query completed -2016-05-03 15:59:04 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:04 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:04 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 15:59:04 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2141886} -2016-05-03 15:59:04 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:259648} -2016-05-03 15:59:04 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1555681} -2016-05-03 15:59:04 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1870892}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 15:59:04 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1870892} -2016-05-03 15:59:04 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1870891} -2016-05-03 15:59:04 INFO MongoIO:508 - Mongo has been closed -2016-05-03 15:59:04 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:2141887}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 15:59:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 15:59:04 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 15:59:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=935987, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:04 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:259650}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1398668, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:59:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:59:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:59:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:59:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:04 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:59:04 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:59:04 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1555682}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2724945, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-03 15:59:04 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:1870894}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:9, serverValue:1870894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 DEBUG command:56 - Command execution completed -2016-05-03 15:59:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:9, serverValue:1870894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 DEBUG command:56 - Command execution completed -2016-05-03 15:59:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:9, serverValue:1870894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 DEBUG command:56 - Command execution completed -2016-05-03 15:59:04 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 15:59:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:9, serverValue:1870894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 DEBUG command:56 - Command execution completed -2016-05-03 15:59:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:9, serverValue:1870894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 DEBUG command:56 - Command execution completed -2016-05-03 15:59:04 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:9, serverValue:1870894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:04 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 15:59:04 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 15:59:04 INFO WorkspaceExplorerServiceImpl:188 - end time - 64 msc 0 sec -2016-05-03 15:59:04 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:04 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 15:59:04 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:59:04 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 15:59:04 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 15:59:04 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:04 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:59:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:04 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:04 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:59:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:04 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:59:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:04 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:04 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:04 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:04 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 15:59:04 DEBUG query:56 - Query completed -2016-05-03 15:59:04 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 15:59:04 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:2141887} -2016-05-03 15:59:04 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:259650} -2016-05-03 15:59:04 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1555682} -2016-05-03 15:59:04 INFO connection:71 - Closed connection [connectionId{localValue:9, serverValue:1870894}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 15:59:04 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:1870894} -2016-05-03 15:59:04 INFO MongoIO:508 - Mongo has been closed -2016-05-03 15:59:04 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1870893} -2016-05-03 15:59:04 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 15:59:04 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 15:59:04 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 15:59:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:59:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:59:05 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:59:05 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 15:59:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:05 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:05 DEBUG ServiceEngine:193 - get() - start -2016-05-03 15:59:05 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:05 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:05 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 15:59:05 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 15:59:05 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 15:59:05 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 15:59:05 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 15:59:05 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 15:59:05 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:05 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:05 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:59:05 DEBUG Operation:173 - get(String) - start -2016-05-03 15:59:05 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 15:59:05 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 15:59:05 DEBUG MongoIO:77 - open mongo connection -2016-05-03 15:59:05 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 15:59:05 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:05 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:05 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:05 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ab4e2563, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7726b320, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@dba36fd, socketFactory=javax.net.DefaultSocketFactory@3c702315, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 15:59:05 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 15:59:05 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 15:59:05 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:259652}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1544290, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:05 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 15:59:05 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:05 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:05 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1870896}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1355715, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:05 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2141890}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1034793, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:05 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1555683}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1755242, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 15:59:05 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1870897}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1870897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 DEBUG command:56 - Command execution completed -2016-05-03 15:59:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1870897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 DEBUG command:56 - Command execution completed -2016-05-03 15:59:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1870897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 DEBUG command:56 - Command execution completed -2016-05-03 15:59:05 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 15:59:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1870897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 DEBUG command:56 - Command execution completed -2016-05-03 15:59:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1870897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 DEBUG command:56 - Command execution completed -2016-05-03 15:59:05 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:59:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1870897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 DEBUG command:56 - Command execution completed -2016-05-03 15:59:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1870897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 DEBUG command:56 - Command execution completed -2016-05-03 15:59:05 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:59:05 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1870897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 DEBUG query:56 - Query completed -2016-05-03 15:59:05 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 15:59:05 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 15:59:05 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 15:59:05 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1870897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 DEBUG update:56 - Update completed -2016-05-03 15:59:05 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1870897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:05 DEBUG query:56 - Query completed -2016-05-03 15:59:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:05 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:05 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 15:59:05 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 15:59:05 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 15:59:05 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:05 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:05 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 15:59:05 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 15:59:05 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 15:59:05 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 15:59:05 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 15:59:05 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 15:59:05 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 15:59:05 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:05 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:05 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 15:59:05 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 15:59:05 DEBUG MongoIO:77 - open mongo connection -2016-05-03 15:59:05 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 15:59:05 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:05 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:05 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:05 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ab4e2563, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7726b320, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@dba36fd, socketFactory=javax.net.DefaultSocketFactory@3c702315, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 15:59:05 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 15:59:05 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 15:59:06 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1870898}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1429680, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:06 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 15:59:06 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:06 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:06 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:06 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:259654}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1408872, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:06 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2141891}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:06 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=968310, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:06 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1555684}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1268326, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 15:59:06 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1870899}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1870899}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 DEBUG command:56 - Command execution completed -2016-05-03 15:59:06 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1870899}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 DEBUG command:56 - Command execution completed -2016-05-03 15:59:06 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1870899}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 DEBUG command:56 - Command execution completed -2016-05-03 15:59:06 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:59:06 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:59:06 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1870899}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 DEBUG command:56 - Command execution completed -2016-05-03 15:59:06 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1870899}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 DEBUG command:56 - Command execution completed -2016-05-03 15:59:06 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:59:06 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1870899}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 DEBUG query:56 - Query completed -2016-05-03 15:59:06 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 15:59:06 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2141891} -2016-05-03 15:59:06 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:259654} -2016-05-03 15:59:06 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1870899}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 15:59:06 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1555684} -2016-05-03 15:59:06 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1870899} -2016-05-03 15:59:06 INFO MongoIO:508 - Mongo has been closed -2016-05-03 15:59:06 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1870898} -2016-05-03 15:59:06 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:59:06 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 15:59:06 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 15:59:06 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 15:59:06 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 15:59:06 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 15:59:06 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 15:59:06 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 15:59:06 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 15:59:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:59:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:59:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:59:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:59:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:12 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2141890} -2016-05-03 15:59:12 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1870897}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 15:59:12 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1870897} -2016-05-03 15:59:12 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:59:12 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:259652} -2016-05-03 15:59:12 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1870896} -2016-05-03 15:59:12 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1555683} -2016-05-03 15:59:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:59:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:59:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:12 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:59:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:12 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:59:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:12 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:59:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:12 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:59:12 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:59:12 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:59:12 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:59:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:59:12 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:59:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:59:12 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:59:12 INFO WorkspaceExplorerServiceImpl:142 - end time - 171 msc 0 sec -2016-05-03 15:59:12 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:59:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:16 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:59:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:16 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:59:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:16 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:59:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:59:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:16 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:59:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:16 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:59:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:59:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:59:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:59:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:59:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:59:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:59:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:59:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:59:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:59:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:59:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:59:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 188 msc 0 sec -2016-05-03 15:59:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:59:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:59:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:59:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:59:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:59:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:59:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:59:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:21 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:59:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:59:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:59:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:59:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:21 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:59:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:21 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:59:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:21 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:59:21 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:59:21 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:59:21 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:59:21 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:59:21 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:59:21 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:59:21 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:59:21 INFO WorkspaceExplorerServiceImpl:142 - end time - 170 msc 0 sec -2016-05-03 15:59:21 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:59:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:59:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:59:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:22 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:59:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:59:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:59:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:22 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:59:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:22 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:59:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:22 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:59:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:22 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:59:22 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:59:22 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:59:22 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:59:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:59:22 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:59:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:59:22 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:59:22 INFO WorkspaceExplorerServiceImpl:142 - end time - 192 msc 0 sec -2016-05-03 15:59:22 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:59:28 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:28 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:59:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:28 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:59:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:28 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 15:59:28 DEBUG ServiceEngine:306 - get() - start -2016-05-03 15:59:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:28 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:28 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 15:59:28 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 15:59:28 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 15:59:28 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 15:59:28 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 15:59:28 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 15:59:28 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 15:59:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:28 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:28 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 15:59:28 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 15:59:28 DEBUG MongoIO:77 - open mongo connection -2016-05-03 15:59:28 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 15:59:28 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:28 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:28 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:28 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ab4e2563, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7726b320, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@dba36fd, socketFactory=javax.net.DefaultSocketFactory@3c702315, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 15:59:28 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 15:59:28 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 15:59:28 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1870904}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1729547, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:28 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 15:59:28 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:28 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:259655}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:28 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:28 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1342246, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:28 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:2141895}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=877385, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:59:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:29 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:1555689}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:29 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1870905}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1870905}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1441803, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:29 DEBUG command:56 - Command execution completed -2016-05-03 15:59:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 15:59:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1870905}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:29 DEBUG command:56 - Command execution completed -2016-05-03 15:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1870905}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:29 DEBUG command:56 - Command execution completed -2016-05-03 15:59:29 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 15:59:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1870905}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:29 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:29 DEBUG command:56 - Command execution completed -2016-05-03 15:59:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1870905}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:29 DEBUG command:56 - Command execution completed -2016-05-03 15:59:29 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1870905}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:29 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:29 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 15:59:29 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 15:59:29 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:59:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 49 msc 0 sec -2016-05-03 15:59:29 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 15:59:29 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 15:59:29 DEBUG query:56 - Query completed -2016-05-03 15:59:29 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 15:59:29 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:2141895} -2016-05-03 15:59:29 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:259655} -2016-05-03 15:59:29 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1870905}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 15:59:29 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1870905} -2016-05-03 15:59:29 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:1555689} -2016-05-03 15:59:29 INFO MongoIO:508 - Mongo has been closed -2016-05-03 15:59:29 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 15:59:29 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 15:59:29 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1870904} -2016-05-03 15:59:29 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 15:59:29 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:59:29 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:29 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:29 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:59:29 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:59:29 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 15:59:29 DEBUG ServiceEngine:306 - get() - start -2016-05-03 15:59:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:29 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:29 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 15:59:29 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 15:59:29 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 15:59:29 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 15:59:29 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 15:59:29 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 15:59:29 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 15:59:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:29 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:29 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 15:59:29 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 15:59:29 DEBUG MongoIO:77 - open mongo connection -2016-05-03 15:59:29 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 15:59:29 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:29 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:29 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:29 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ab4e2563, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7726b320, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@dba36fd, socketFactory=javax.net.DefaultSocketFactory@3c702315, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 15:59:29 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 15:59:29 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 15:59:30 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:259657}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1093475, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:30 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 15:59:30 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:30 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:30 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1870906}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2141896}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1284346, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:30 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=872205, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:59:30 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:59:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:30 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:30 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:59:30 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1555690}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 15:59:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2322250, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-03 15:59:30 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1870907}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1870907}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 DEBUG command:56 - Command execution completed -2016-05-03 15:59:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1870907}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 DEBUG command:56 - Command execution completed -2016-05-03 15:59:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1870907}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 DEBUG command:56 - Command execution completed -2016-05-03 15:59:30 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 15:59:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1870907}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 DEBUG command:56 - Command execution completed -2016-05-03 15:59:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1870907}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 DEBUG command:56 - Command execution completed -2016-05-03 15:59:30 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1870907}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 15:59:30 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 15:59:30 INFO WorkspaceExplorerServiceImpl:188 - end time - 47 msc 0 sec -2016-05-03 15:59:30 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 15:59:30 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 15:59:30 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 15:59:30 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 15:59:30 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 15:59:30 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-03 15:59:30 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:30 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:30 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:30 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:59:30 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:59:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:30 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:30 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:30 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:30 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:30 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:30 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 15:59:30 DEBUG query:56 - Query completed -2016-05-03 15:59:30 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 15:59:30 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2141896} -2016-05-03 15:59:30 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:259657} -2016-05-03 15:59:30 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1555690} -2016-05-03 15:59:30 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1870907}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 15:59:30 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1870907} -2016-05-03 15:59:30 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1870906} -2016-05-03 15:59:30 INFO MongoIO:508 - Mongo has been closed -2016-05-03 15:59:30 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 15:59:30 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 15:59:30 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 15:59:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:59:31 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:59:31 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 15:59:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:31 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:31 DEBUG ServiceEngine:193 - get() - start -2016-05-03 15:59:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:31 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:31 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 15:59:31 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 15:59:31 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 15:59:31 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 15:59:31 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 15:59:31 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 15:59:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:31 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:31 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:59:31 DEBUG Operation:173 - get(String) - start -2016-05-03 15:59:31 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 15:59:31 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 15:59:31 DEBUG MongoIO:77 - open mongo connection -2016-05-03 15:59:31 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 15:59:31 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:31 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:31 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:31 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ab4e2563, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7726b320, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@dba36fd, socketFactory=javax.net.DefaultSocketFactory@3c702315, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 15:59:31 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 15:59:31 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 15:59:31 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:259659}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1261526, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:31 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 15:59:31 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:31 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:31 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1870908}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1110171, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:31 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:31 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2141897}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=809857, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:31 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1555691}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1379478, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 15:59:31 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1870909}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1870909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG command:56 - Command execution completed -2016-05-03 15:59:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1870909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG command:56 - Command execution completed -2016-05-03 15:59:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1870909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG command:56 - Command execution completed -2016-05-03 15:59:31 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 15:59:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1870909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG command:56 - Command execution completed -2016-05-03 15:59:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1870909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG command:56 - Command execution completed -2016-05-03 15:59:31 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:59:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1870909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG command:56 - Command execution completed -2016-05-03 15:59:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1870909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG command:56 - Command execution completed -2016-05-03 15:59:31 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:59:31 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1870909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG query:56 - Query completed -2016-05-03 15:59:31 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 15:59:31 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 15:59:31 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 15:59:31 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1870909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG update:56 - Update completed -2016-05-03 15:59:31 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1870909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG query:56 - Query completed -2016-05-03 15:59:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:31 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 15:59:31 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 15:59:31 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 15:59:31 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 15:59:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:31 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:31 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 15:59:31 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 15:59:31 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 15:59:31 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 15:59:31 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 15:59:31 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 15:59:31 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 15:59:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 15:59:31 DEBUG BucketCoding:42 - coding name done -2016-05-03 15:59:31 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 15:59:31 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 15:59:31 DEBUG MongoIO:77 - open mongo connection -2016-05-03 15:59:31 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 15:59:31 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:31 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:31 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:31 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ab4e2563, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7726b320, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@dba36fd, socketFactory=javax.net.DefaultSocketFactory@3c702315, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 15:59:31 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 15:59:31 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 15:59:31 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:259660}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1241800, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:31 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 15:59:31 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:31 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 15:59:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:31 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2141898}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1157816, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:31 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1870910}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1885275, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:31 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 15:59:31 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1555692}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1785079, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 15:59:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 15:59:32 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1870911}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1870911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:32 DEBUG command:56 - Command execution completed -2016-05-03 15:59:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1870911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:32 DEBUG command:56 - Command execution completed -2016-05-03 15:59:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1870911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:32 DEBUG command:56 - Command execution completed -2016-05-03 15:59:32 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:59:32 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:59:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1870911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:32 DEBUG command:56 - Command execution completed -2016-05-03 15:59:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1870911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:32 DEBUG command:56 - Command execution completed -2016-05-03 15:59:32 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:59:32 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1870911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:32 DEBUG query:56 - Query completed -2016-05-03 15:59:32 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 15:59:32 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2141898} -2016-05-03 15:59:32 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:259660} -2016-05-03 15:59:32 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1870911}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 15:59:32 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1555692} -2016-05-03 15:59:32 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1870911} -2016-05-03 15:59:32 INFO MongoIO:508 - Mongo has been closed -2016-05-03 15:59:32 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1870910} -2016-05-03 15:59:32 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 15:59:32 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 15:59:32 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 15:59:32 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 15:59:32 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 15:59:32 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 15:59:32 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 15:59:32 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 15:59:32 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 15:59:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:59:41 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 15:59:41 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 15:59:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 15:59:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 15:59:41 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 15:59:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 15:59:42 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 15:59:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 15:59:45 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2141897} -2016-05-03 15:59:45 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:259659} -2016-05-03 15:59:45 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1555691} -2016-05-03 15:59:45 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1870909}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 15:59:45 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1870909} -2016-05-03 15:59:45 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1870908} -2016-05-03 15:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:48 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:59:48 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:59:48 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 15:59:48 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:59:48 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 15:59:48 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN - BIOCLIMATE_HSPEN - A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes - - - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 15:59:48 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 15:59:48 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 15:59:48 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 15:59:48 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 15:59:48 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 15:59:48 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 15:59:48 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 15:59:48 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 15:59:48 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 15:59:48 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 15:59:48 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 15:59:48 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:59:48 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 15:59:48 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 15:59:48 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 15:59:48 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 15:59:48 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 15:59:48 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 15:59:48 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 15:59:48 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 15:59:48 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:59:48 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 15:59:48 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 15:59:48 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:59:48 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:59:48 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 15:59:48 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:59:48 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 15:59:48 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 15:59:48 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 15:59:48 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 15:59:48 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 15:59:48 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 15:59:48 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 15:59:48 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 15:59:48 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:59:48 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 15:59:48 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 15:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:48 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:59:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:59:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:48 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:59:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 15:59:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:48 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 15:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:48 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:59:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:48 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:59:48 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:59:48 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:59:48 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:59:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:59:48 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:59:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:59:48 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:59:48 INFO WorkspaceExplorerServiceImpl:142 - end time - 200 msc 0 sec -2016-05-03 15:59:48 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 15:59:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 15:59:56 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 15:59:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 15:59:56 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 15:59:56 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 15:59:56 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 15:59:56 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 15:59:56 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 15:59:56 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 15:59:56 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:59:56 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 15:59:56 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 15:59:56 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 15:59:56 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 15:59:56 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 15:59:56 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 15:59:56 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 15:59:56 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 15:59:56 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:59:56 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 15:59:56 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 15:59:56 DEBUG WPS2SM:92 - WPS type: -2016-05-03 15:59:56 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 15:59:56 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 15:59:56 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 15:59:56 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 15:59:56 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 15:59:56 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 15:59:56 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 15:59:56 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 15:59:56 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 15:59:56 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 15:59:56 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 15:59:56 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 15:59:56 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 15:59:56 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 15:59:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:57 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:59:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:59:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 15:59:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 15:59:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:57 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 15:59:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 15:59:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 15:59:57 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 15:59:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:59:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 15:59:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 15:59:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:59:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 15:59:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 15:59:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 15:59:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 15:59:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 15:59:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 15:59:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 15:59:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 15:59:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 15:59:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 15:59:57 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 15:59:57 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 15:59:57 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 15:59:57 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 15:59:57 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:59:57 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 15:59:57 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 15:59:57 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 15:59:57 INFO WorkspaceExplorerServiceImpl:142 - end time - 185 msc 0 sec -2016-05-03 15:59:57 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 16:00:17 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 16:00:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:00:17 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 16:00:17 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 16:00:17 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 16:00:17 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 16:00:17 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 16:00:17 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 16:00:17 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:00:17 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 16:00:17 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 16:00:17 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 16:00:17 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 16:00:17 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 16:00:17 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 16:00:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 16:00:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 16:00:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:00:17 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 16:00:17 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 16:00:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:00:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:00:17 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 16:00:17 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:00:17 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 16:00:17 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 16:00:17 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 16:00:17 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 16:00:17 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 16:00:17 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 16:00:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 16:00:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 16:00:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:00:17 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 16:00:17 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 16:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:00:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:00:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:00:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:00:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:00:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:00:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:00:17 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:00:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:00:17 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:00:18 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:00:18 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:00:18 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:00:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:00:18 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:00:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:00:18 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:00:18 INFO WorkspaceExplorerServiceImpl:142 - end time - 171 msc 0 sec -2016-05-03 16:00:18 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:00:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:00:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:00:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:00:32 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:00:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:00:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:00:32 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:00:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:00:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:32 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:00:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:00:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:00:32 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:00:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 16:00:32 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 16:00:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 16:00:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:00:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:00:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:00:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:00:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:00:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:32 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:00:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:00:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:00:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:00:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:33 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:00:33 INFO WorkspaceExplorerServiceImpl:142 - end time - 168 msc 0 sec -2016-05-03 16:00:33 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:00:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:00:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:00:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:00:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:00:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:00:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:00:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:00:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:00:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:00:33 INFO WorkspaceExplorerServiceImpl:142 - end time - 167 msc 0 sec -2016-05-03 16:00:33 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:00:33 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:00:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:00:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:00:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:33 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:00:33 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:00:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:00:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:00:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:00:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:00:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:00:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:00:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:00:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:00:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:00:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:00:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:00:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:00:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:00:33 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:00:33 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:00:33 INFO WorkspaceExplorerServiceImpl:142 - end time - 169 msc 0 sec -2016-05-03 16:00:33 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:01:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:01:23 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:02:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 16:02:18 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 16:03:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:03:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:04:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:04:08 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:05:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 16:05:03 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 16:05:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:05:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:06:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:06:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:08:15 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 16:08:15 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 16:08:15 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 16:08:15 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 16:08:15 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 16:08:15 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:08:15 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 16:08:15 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@3fdd5e2 -2016-05-03 16:08:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:08:15 INFO ASLSession:352 - Logging the entrance -2016-05-03 16:08:15 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 16:08:15 DEBUG TemplateModel:83 - 2016-05-03 16:08:15, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 16:08:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:08:15 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 16:08:17 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 16:08:17 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 16:08:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:08:17 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 16:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:08:17 INFO ASLSession:352 - Logging the entrance -2016-05-03 16:08:17 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 16:08:17 DEBUG TemplateModel:83 - 2016-05-03 16:08:17, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 16:08:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:08:17 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 16:08:17 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 125 ms -2016-05-03 16:08:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 16:08:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 16:08:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 16:08:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 16:08:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 16:08:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 16:08:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 16:08:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 16:08:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 16:08:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 16:08:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 16:08:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 16:08:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 16:08:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 16:08:17 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 16:08:17 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:08:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 16:08:17 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@45012d66 -2016-05-03 16:08:17 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@41c59f17 -2016-05-03 16:08:17 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@65451970 -2016-05-03 16:08:17 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@e63cfbf -2016-05-03 16:08:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 114 ms -2016-05-03 16:08:18 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 16:08:18 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 16:08:18 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 16:08:18 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 16:08:18 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 16:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:08:18 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:08:18 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 16:08:18 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 17 ms -2016-05-03 16:08:18 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 16:08:18 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:08:18 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 16:08:18 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 16:08:18 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 16:08:18 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 16:08:18 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 16:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:08:18 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:08:18 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:08:18 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 16:08:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:18 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 16:08:18 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 16:08:18 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 16:08:18 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 16:08:18 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 16:08:18 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 16:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 16:08:18 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:08:18 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 16:08:18 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 26 ms -2016-05-03 16:08:18 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 16:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:08:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:18 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 16:08:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:18 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 16:08:18 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:08:18 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 16:08:18 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 16:08:19 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 16:08:19 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 16:08:19 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 16:08:19 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 16:08:19 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 16:08:19 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 16:08:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:19 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 16:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 16:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:19 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 16:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 16:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:19 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 16:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 16:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:19 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 16:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 16:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:20 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 16:08:20 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 16:08:20 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 16:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:08:20 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:08:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:20 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 16:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:08:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:08:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:20 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 16:08:20 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 16:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:20 INFO WorkspaceExplorerServiceImpl:188 - end time - 114 msc 0 sec -2016-05-03 16:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:08:20 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:08:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:20 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 16:08:20 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 16:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:20 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 16:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:08:20 INFO WorkspaceExplorerServiceImpl:188 - end time - 144 msc 0 sec -2016-05-03 16:08:20 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:08:20 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 16:08:20 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-05-03 16:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:08:20 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:08:20 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 16:08:20 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 16:08:20 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 16:08:20 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 16:08:20 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 16:08:20 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 16:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:08:20 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 16:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:08:20 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:08:20 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 16:08:20 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-03 16:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:08:20 INFO WorkspaceExplorerServiceImpl:188 - end time - 397 msc 0 sec -2016-05-03 16:08:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:08:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:08:27 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:08:27 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 16:08:27 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:08:27 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 16:08:27 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 16:08:27 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 16:08:27 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 16:08:27 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 16:08:27 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 16:08:27 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 16:08:27 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:08:27 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 16:08:27 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 16:08:27 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 16:08:27 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 16:08:27 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 16:08:27 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:08:27 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 16:08:27 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 16:08:27 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 16:08:27 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 16:08:27 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 16:08:27 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 16:08:27 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 16:08:27 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 16:08:27 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:08:27 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 16:08:27 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 16:08:27 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:08:27 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:08:27 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 16:08:27 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:08:27 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 16:08:27 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 16:08:27 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 16:08:27 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 16:08:27 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 16:08:27 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 16:08:27 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 16:08:27 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 16:08:27 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:08:27 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 16:08:27 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 16:08:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:08:27 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:08:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:08:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:08:27 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:08:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:08:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:27 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:08:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:08:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:08:27 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:08:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:08:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:08:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:08:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:08:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:08:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:08:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:08:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:08:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:27 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:08:28 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:08:28 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:08:28 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:08:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:08:28 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:08:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:08:28 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:08:28 INFO WorkspaceExplorerServiceImpl:142 - end time - 232 msc 0 sec -2016-05-03 16:08:28 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:08:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:08:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:39 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:08:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:08:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:39 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:08:39 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:08:39 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:08:39 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:08:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:08:39 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:08:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:08:39 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:08:39 INFO WorkspaceExplorerServiceImpl:142 - end time - 214 msc 0 sec -2016-05-03 16:08:39 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:08:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:08:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:40 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:08:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:08:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:08:40 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:08:40 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:08:40 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:08:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:08:40 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:08:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:08:40 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:08:40 INFO WorkspaceExplorerServiceImpl:142 - end time - 192 msc 0 sec -2016-05-03 16:08:40 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:08:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:08:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:40 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:08:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:08:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:08:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:08:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:08:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:08:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:08:40 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:08:40 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:08:40 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:08:40 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:08:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:08:40 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:08:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:08:40 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:08:40 INFO WorkspaceExplorerServiceImpl:142 - end time - 165 msc 0 sec -2016-05-03 16:08:40 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:09:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:09:00 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:09:00 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:09:00 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 16:09:00 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:09:00 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 16:09:00 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN - BIOCLIMATE_HSPEN - A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes - - - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 16:09:00 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 16:09:00 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_List - list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - Name of the parameter: HSPEN_Table_List. list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 16:09:00 DEBUG SClient4WPS:300 - WPSClient->Input: - HSPEN_Table_Names - list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HSPEN_Table_Names. list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 16:09:00 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 16:09:00 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 16:09:00 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:09:00 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 16:09:00 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 16:09:00 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 16:09:00 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 16:09:00 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 16:09:00 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:09:00 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 16:09:00 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 16:09:00 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 16:09:00 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 16:09:00 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 16:09:00 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 16:09:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 16:09:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 16:09:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:00 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 16:09:00 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 16:09:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:00 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:00 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 16:09:00 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:09:00 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 16:09:00 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 16:09:00 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 16:09:00 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 16:09:00 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 16:09:00 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 16:09:00 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 16:09:00 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 16:09:00 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:00 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 16:09:00 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 16:09:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:00 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:09:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:00 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:09:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:00 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:09:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:09:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:00 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:09:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:09:00 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:09:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:09:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:09:00 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:09:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:09:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:09:00 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:09:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:00 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:09:00 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:09:00 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:09:00 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:09:00 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:00 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:09:00 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:00 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:09:00 INFO WorkspaceExplorerServiceImpl:142 - end time - 196 msc 0 sec -2016-05-03 16:09:00 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:09:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:09:05 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:09:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:09:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:09:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:05 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:09:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:09:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:09:05 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:09:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:09:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:09:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:09:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:09:05 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:09:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:09:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:09:05 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:09:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:05 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:09:05 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:09:05 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:09:05 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:09:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:05 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:09:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:05 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:09:05 INFO WorkspaceExplorerServiceImpl:142 - end time - 171 msc 0 sec -2016-05-03 16:09:05 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:06 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:09:06 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:09:06 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:09:06 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:09:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:06 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:09:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:06 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:09:06 INFO WorkspaceExplorerServiceImpl:142 - end time - 167 msc 0 sec -2016-05-03 16:09:06 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:06 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:09:06 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:09:06 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:09:06 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:09:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:06 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:09:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:06 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:09:06 INFO WorkspaceExplorerServiceImpl:142 - end time - 186 msc 0 sec -2016-05-03 16:09:06 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:06 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:09:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:07 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:09:07 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:09:07 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:09:07 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:09:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:07 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:09:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:07 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:09:07 INFO WorkspaceExplorerServiceImpl:142 - end time - 181 msc 0 sec -2016-05-03 16:09:07 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:09:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:09:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:09:16 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:09:16 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:09:16 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM -2016-05-03 16:09:16 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:09:16 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 16:09:17 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM - BIONYM - An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication. - - - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - - - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - - - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - - - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - - - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - - - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - - - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - - - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - - - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - - - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - - - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - - - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - - - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - - - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - - - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - - - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - - - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - - - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - - - - - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 16:09:17 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - -2016-05-03 16:09:17 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - -2016-05-03 16:09:17 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 16:09:17 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-03 16:09:17 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 16:09:17 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:09:17 DEBUG WPS2SM:324 - Conversion to SM Type->RawTaxaNamesTable is a Complex Input -2016-05-03 16:09:17 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 16:09:17 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 16:09:17 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 16:09:17 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawTaxaNamesTable -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->RawNamesColumn is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: rawnames -2016-05-03 16:09:17 DEBUG WPS2SM:129 - Machter title: The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames] -2016-05-03 16:09:17 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 16:09:17 DEBUG WPS2SM:131 - Machter group: the name of a column from RawTaxaNamesTable -2016-05-03 16:09:17 DEBUG WPS2SM:132 - Machter start: 80 -2016-05-03 16:09:17 DEBUG WPS2SM:133 - Machter end: 123 -2016-05-03 16:09:17 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 16:09:17 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: RawTaxaNamesTable -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawNamesColumn -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: bionout -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Name of the table which will contain the matches -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OutputTableLabel -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-03 16:09:17 DEBUG WPS2SM:310 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The reference dataset to use -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-03 16:09:17 DEBUG WPS2SM:310 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Parser_Name -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-03 16:09:17 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-03 16:09:17 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-03 16:09:17 DEBUG WPS2SM:310 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-03 16:09:17 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_1 -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_1 -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_1 -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-03 16:09:17 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_2 -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_2 -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_2 -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-03 16:09:17 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_3 -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_3 -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_3 -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-03 16:09:17 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_4 -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_4 -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_4 -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-03 16:09:17 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_5 -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_5 -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-03 16:09:17 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-03 16:09:17 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:17 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 16:09:17 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-03 16:09:17 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 16:09:17 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_5 -2016-05-03 16:09:17 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:17 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-03 16:09:17 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-03 16:09:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:09:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:09:17 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:09:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:09:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:09:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:09:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:09:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:09:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:09:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:09:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:09:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:09:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:09:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:09:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:09:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:09:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:09:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:09:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 162 msc 0 sec -2016-05-03 16:09:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:09:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:09:42 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:09:42 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN -2016-05-03 16:09:42 DEBUG WPS2SM:324 - Conversion to SM Type->HSPEN_Table_List is a Complex Input -2016-05-03 16:09:42 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 16:09:42 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 16:09:42 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 16:09:42 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 16:09:42 DEBUG WPS2SM:234 - Machter title: list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:09:42 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 16:09:42 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 16:09:42 DEBUG WPS2SM:238 - Machter start: 84 -2016-05-03 16:09:42 DEBUG WPS2SM:240 - Machter end: 150 -2016-05-03 16:09:42 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 16:09:42 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 16:09:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN tables containing the species for which the salinity will be analyzed [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HSPEN) http://goo.gl/4zDiAK] -2016-05-03 16:09:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_List -2016-05-03 16:09:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:42 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 16:09:42 DEBUG WPS2SM:299 - Conversion to SM Type->HSPEN_Table_Names is a Literal Input -2016-05-03 16:09:42 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:42 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 16:09:42 DEBUG WPS2SM:148 - Machter title: list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:09:42 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 16:09:42 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 16:09:42 DEBUG WPS2SM:151 - Machter start: 48 -2016-05-03 16:09:42 DEBUG WPS2SM:152 - Machter end: 83 -2016-05-03 16:09:42 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 16:09:42 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 16:09:42 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 16:09:42 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HSPEN_Table_Names -2016-05-03 16:09:42 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:42 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 16:09:42 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HSPEN_Table_Names, description=list of HSPEN table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 16:09:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:09:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:09:42 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:09:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:09:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:42 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:09:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:09:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:09:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:09:42 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:09:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:09:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:09:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:09:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:09:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:09:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:09:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:42 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:09:42 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:09:42 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:09:42 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:09:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:42 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:09:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:42 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:09:42 INFO WorkspaceExplorerServiceImpl:142 - end time - 173 msc 0 sec -2016-05-03 16:09:42 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:09:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:09:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:09:44 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:09:44 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM -2016-05-03 16:09:44 DEBUG WPS2SM:324 - Conversion to SM Type->RawTaxaNamesTable is a Complex Input -2016-05-03 16:09:44 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 16:09:44 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 16:09:44 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 16:09:44 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawTaxaNamesTable -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->RawNamesColumn is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: rawnames -2016-05-03 16:09:44 DEBUG WPS2SM:129 - Machter title: The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames] -2016-05-03 16:09:44 DEBUG WPS2SM:130 - Machter find: true -2016-05-03 16:09:44 DEBUG WPS2SM:131 - Machter group: the name of a column from RawTaxaNamesTable -2016-05-03 16:09:44 DEBUG WPS2SM:132 - Machter start: 80 -2016-05-03 16:09:44 DEBUG WPS2SM:133 - Machter end: 123 -2016-05-03 16:09:44 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-03 16:09:44 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: RawTaxaNamesTable -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:RawNamesColumn -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: bionout -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Name of the table which will contain the matches -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:OutputTableLabel -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-03 16:09:44 DEBUG WPS2SM:310 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The reference dataset to use -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-03 16:09:44 DEBUG WPS2SM:310 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Parser_Name -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-03 16:09:44 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-03 16:09:44 DEBUG WPS2SM:310 - ValueType[]:[true, false] -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-03 16:09:44 DEBUG WPS2SM:310 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-03 16:09:44 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_1 -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_1 -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_1 -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-03 16:09:44 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_2 -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_2 -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_2 -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-03 16:09:44 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_3 -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_3 -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_3 -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-03 16:09:44 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_4 -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_4 -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_4 -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-03 16:09:44 DEBUG WPS2SM:310 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Matcher_5 -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:Threshold_5 -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-03 16:09:44 DEBUG WPS2SM:299 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-03 16:09:44 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:09:44 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 16:09:44 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-03 16:09:44 DEBUG WPS2SM:338 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-03 16:09:44 DEBUG WPS2SM:339 - Conversion to SM Type->Name:MaxResults_5 -2016-05-03 16:09:44 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:09:44 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-03 16:09:44 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-03 16:09:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:09:44 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:09:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:09:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:09:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:09:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:09:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:44 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:09:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:09:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:09:44 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:09:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:09:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:09:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:09:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:09:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:09:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:09:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:09:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:09:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:09:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:09:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:09:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:09:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:09:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:09:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:09:44 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:09:44 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:09:44 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:09:44 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:09:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:44 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:09:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:09:44 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:09:44 INFO WorkspaceExplorerServiceImpl:142 - end time - 181 msc 0 sec -2016-05-03 16:09:44 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:10:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:10:05 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:11:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:11:00 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:11:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:11:55 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:12:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:12:50 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:13:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:13:45 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:14:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:14:40 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:15:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:15:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:16:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:16:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:17:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:17:25 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:18:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:18:20 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:18:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:18:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:18:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:18:50 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 16:18:50 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 16:18:50 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 16:18:50 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 16:18:50 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 16:18:50 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 16:18:50 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:18:50 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 16:18:50 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 16:18:50 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 16:18:50 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 16:18:50 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 16:18:50 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 16:18:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 16:18:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 16:18:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:18:50 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 16:18:50 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 16:18:50 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:18:50 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:18:50 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 16:18:50 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:18:50 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 16:18:50 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 16:18:50 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 16:18:50 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 16:18:50 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 16:18:50 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 16:18:50 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 16:18:50 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 16:18:50 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:18:50 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 16:18:50 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 16:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:18:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:18:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:18:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:18:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:18:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:18:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:18:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:18:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:18:51 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:18:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:18:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:18:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:18:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:18:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:18:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:18:51 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:18:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:18:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:18:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:18:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:18:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:18:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:18:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:18:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:18:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:18:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:18:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:18:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:18:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:18:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:18:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:18:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:18:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:18:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:18:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:18:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:18:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:18:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:18:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:18:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:18:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:18:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:18:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:18:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:18:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:18:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:18:51 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:18:51 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:18:51 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:18:51 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:18:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:18:51 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:18:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:18:51 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:18:51 INFO WorkspaceExplorerServiceImpl:142 - end time - 171 msc 0 sec -2016-05-03 16:18:51 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:19:39 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 16:19:39 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 16:19:39 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 16:19:39 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 16:19:39 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 16:19:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:19:39 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 16:19:39 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@e1bef6a -2016-05-03 16:19:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:19:39 INFO ASLSession:352 - Logging the entrance -2016-05-03 16:19:39 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 16:19:39 DEBUG TemplateModel:83 - 2016-05-03 16:19:39, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 16:19:39 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:19:39 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 16:19:40 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 16:19:40 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 16:19:40 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:19:40 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 16:19:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:19:40 INFO ASLSession:352 - Logging the entrance -2016-05-03 16:19:40 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 16:19:40 DEBUG TemplateModel:83 - 2016-05-03 16:19:40, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 16:19:40 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:19:40 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 16:19:40 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 121 ms -2016-05-03 16:19:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 16:19:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 16:19:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 16:19:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 16:19:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 16:19:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 16:19:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 16:19:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 16:19:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 16:19:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 16:19:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 16:19:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 16:19:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 16:19:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 16:19:41 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 16:19:41 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:19:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 16:19:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@60c82b07 -2016-05-03 16:19:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@587528eb -2016-05-03 16:19:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@361b3fcf -2016-05-03 16:19:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@3c5f4488 -2016-05-03 16:19:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 106 ms -2016-05-03 16:19:41 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 16:19:41 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 16:19:41 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 16:19:41 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 16:19:41 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 16:19:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:19:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:19:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 16:19:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 24 ms -2016-05-03 16:19:41 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 16:19:41 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:19:41 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 16:19:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 16:19:41 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 16:19:41 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 16:19:41 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 16:19:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:19:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:19:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:19:41 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 16:19:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:19:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:19:41 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 16:19:41 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 16:19:41 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 16:19:41 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 16:19:41 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 16:19:41 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 16:19:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 16:19:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:19:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 16:19:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-03 16:19:41 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 16:19:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:19:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:19:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:19:41 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 16:19:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:19:41 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 16:19:42 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:19:42 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 16:19:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 16:19:42 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 16:19:42 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 16:19:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 16:19:42 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 16:19:42 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 16:19:42 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 16:19:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:19:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:19:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:19:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:19:42 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 16:19:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 16:19:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:19:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:19:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:19:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:19:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:19:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:19:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:19:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:19:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 16:19:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 16:19:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:19:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:19:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:19:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:19:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:19:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:19:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:19:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:19:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 16:19:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 16:19:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:19:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:19:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:19:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:19:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:19:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:19:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:19:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:19:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 16:19:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 16:19:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:19:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:19:44 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 16:19:44 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 16:19:44 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 16:19:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:19:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:19:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:19:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:19:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:19:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:19:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:19:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:19:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:19:44 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 16:19:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:19:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:19:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:19:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:19:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:19:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:19:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:19:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:19:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:19:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:19:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:19:44 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 16:19:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:19:44 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 16:19:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:19:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 112 msc 0 sec -2016-05-03 16:19:44 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 16:19:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:19:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:19:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:19:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:19:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:19:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:19:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:19:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:19:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:19:44 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 16:19:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:19:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:19:44 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 16:19:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:19:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:19:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:19:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 16:19:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 134 msc 0 sec -2016-05-03 16:19:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-03 16:19:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:19:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:19:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 16:19:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 19 ms -2016-05-03 16:19:44 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 16:19:44 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 16:19:44 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 16:19:44 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 16:19:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:19:44 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 16:19:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:19:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:19:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 16:19:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 17 ms -2016-05-03 16:19:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:19:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:19:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:19:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:19:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 367 msc 0 sec -2016-05-03 16:19:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:19:48 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:19:48 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:19:48 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 16:19:48 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:19:48 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 16:19:48 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 16:19:48 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 16:19:48 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 16:19:48 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 16:19:48 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 16:19:48 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 16:19:48 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:19:48 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 16:19:48 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 16:19:48 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 16:19:48 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 16:19:48 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 16:19:48 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:19:48 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 16:19:48 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 16:19:48 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 16:19:48 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 16:19:48 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 16:19:48 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 16:19:48 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 16:19:48 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 16:19:48 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:19:48 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 16:19:48 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 16:19:48 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:19:48 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:19:48 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 16:19:48 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:19:48 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 16:19:48 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 16:19:48 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 16:19:48 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 16:19:48 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 16:19:48 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 16:19:48 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 16:19:48 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 16:19:48 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:19:48 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 16:19:48 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 16:19:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:19:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:19:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:19:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:19:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:19:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:19:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:19:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:19:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:19:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:19:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:19:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:19:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:19:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:19:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:19:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:19:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:19:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:19:48 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:19:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:19:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:19:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:19:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:19:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:19:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:19:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:19:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:19:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:19:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:19:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:19:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:19:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:19:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:19:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:19:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:19:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:19:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:19:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:19:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:19:48 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:19:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:19:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:19:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:19:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:19:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:19:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:19:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:19:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:19:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:19:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:19:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:19:48 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:19:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:19:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:19:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:19:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:19:49 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:19:49 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:19:49 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:19:49 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:19:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:19:49 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:19:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:19:49 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:19:49 INFO WorkspaceExplorerServiceImpl:142 - end time - 189 msc 0 sec -2016-05-03 16:19:49 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:20:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:20:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:21:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:21:29 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:22:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:22:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:23:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:23:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:23:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:23:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:23:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:23:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:23:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:23:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:23:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:23:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:23:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:23:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:23:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:23:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:23:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:23:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:23:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:23:57 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:23:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:23:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:23:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 16:23:57 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 16:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 16:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:23:57 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:23:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:23:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:23:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:23:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:23:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:23:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:23:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:23:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:23:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:23:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:23:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:23:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:23:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:23:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:23:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:23:57 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:23:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:23:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:23:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:23:57 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:23:57 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:23:57 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:23:57 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:23:57 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:23:57 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:23:57 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:23:57 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:23:57 INFO WorkspaceExplorerServiceImpl:142 - end time - 153 msc 0 sec -2016-05-03 16:23:57 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:24:08 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:24:08 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:24:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:24:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:24:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:24:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:24:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:24:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:24:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:24:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:24:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:24:08 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:24:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:24:08 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:24:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:24:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:24:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:24:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:24:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:24:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:24:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:24:08 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:24:08 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:24:08 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 16:24:08 DEBUG ServiceEngine:306 - get() - start -2016-05-03 16:24:08 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:24:08 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:24:08 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 16:24:08 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 16:24:08 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:24:08 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 16:24:08 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 16:24:08 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:24:08 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 16:24:08 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:24:08 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:24:08 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:24:08 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:24:08 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:24:08 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:24:08 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:08 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 16:24:08 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 16:24:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 16:24:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:24:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:24:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:24:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:24:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:24:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:24:08 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:24:08 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bb5edd5e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4df0ccc9, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7c14c818, socketFactory=javax.net.DefaultSocketFactory@385cdf4c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:24:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:24:08 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:24:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:24:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:24:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:24:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:24:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:24:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:24:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:24:08 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:24:08 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:24:08 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:24:08 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:24:08 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 16:24:08 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 16:24:08 INFO WorkspaceExplorerServiceImpl:188 - end time - 114 msc 0 sec -2016-05-03 16:24:08 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 16:24:08 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:260209}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:24:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:24:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1563279, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:08 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:24:08 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:08 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:24:08 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2142353}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:24:08 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:24:08 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 16:24:08 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 16:24:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1009126, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:24:08 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1556147}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:24:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:24:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1388496, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 16:24:08 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1871574}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:08 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1263789, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:08 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 16:24:08 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1871575}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:08 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1871575}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:08 DEBUG command:56 - Command execution completed -2016-05-03 16:24:08 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1871575}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:08 DEBUG command:56 - Command execution completed -2016-05-03 16:24:08 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1871575}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:08 DEBUG command:56 - Command execution completed -2016-05-03 16:24:08 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 16:24:08 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1871575}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:08 DEBUG command:56 - Command execution completed -2016-05-03 16:24:08 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1871575}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:08 DEBUG command:56 - Command execution completed -2016-05-03 16:24:08 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1871575}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:24:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 16:24:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:24:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 16:24:09 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:24:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 16:24:09 DEBUG query:56 - Query completed -2016-05-03 16:24:09 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 16:24:09 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2142353} -2016-05-03 16:24:09 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:260209} -2016-05-03 16:24:09 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1556147} -2016-05-03 16:24:09 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1871575}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:24:09 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1871575} -2016-05-03 16:24:09 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1871574} -2016-05-03 16:24:09 INFO MongoIO:508 - Mongo has been closed -2016-05-03 16:24:09 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 16:24:09 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 16:24:09 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 16:24:10 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:24:10 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:24:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:24:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:24:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:24:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:24:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:24:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:24:10 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 16:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 16:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 16:24:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:24:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:24:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:24:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:24:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:24:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:24:10 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:24:10 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:24:10 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 16:24:10 DEBUG ServiceEngine:306 - get() - start -2016-05-03 16:24:10 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:24:10 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:24:10 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 16:24:10 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 16:24:10 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:24:10 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 16:24:10 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 16:24:10 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:24:10 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 16:24:10 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:24:10 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:24:10 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:24:10 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:24:10 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:24:10 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:24:10 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:10 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:10 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:24:10 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bb5edd5e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4df0ccc9, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7c14c818, socketFactory=javax.net.DefaultSocketFactory@385cdf4c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:24:10 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:24:10 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:24:10 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1871576}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1257145, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:10 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:24:10 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:10 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:10 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:24:10 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:260210}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2142355}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1135243, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:24:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=13444204, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=13.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:24:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:24:10 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:24:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:24:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:24:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:24:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:24:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:24:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:24:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:24:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:24:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:24:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:24:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:24:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:24:10 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1556148}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1797426, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=13.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 16:24:10 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:24:10 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:24:10 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1871577}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1871577}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 DEBUG command:56 - Command execution completed -2016-05-03 16:24:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1871577}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 DEBUG command:56 - Command execution completed -2016-05-03 16:24:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1871577}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 DEBUG command:56 - Command execution completed -2016-05-03 16:24:10 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 16:24:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1871577}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 DEBUG command:56 - Command execution completed -2016-05-03 16:24:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1871577}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 DEBUG command:56 - Command execution completed -2016-05-03 16:24:10 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1871577}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:10 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 16:24:10 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 16:24:10 INFO WorkspaceExplorerServiceImpl:188 - end time - 39 msc 0 sec -2016-05-03 16:24:10 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:24:10 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 16:24:10 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 16:24:10 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 16:24:10 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 16:24:11 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:24:11 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 16:24:11 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 16:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 16:24:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:24:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:24:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:24:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:24:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:24:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:24:11 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:24:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:24:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:24:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:24:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:24:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:24:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:24:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:24:11 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:24:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:24:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:24:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:24:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:24:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:24:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:24:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:24:11 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:24:11 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:24:11 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:24:11 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 16:24:11 DEBUG query:56 - Query completed -2016-05-03 16:24:11 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 16:24:11 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2142355} -2016-05-03 16:24:11 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:260210} -2016-05-03 16:24:11 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1871577}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:24:11 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1871577} -2016-05-03 16:24:11 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1556148} -2016-05-03 16:24:11 INFO MongoIO:508 - Mongo has been closed -2016-05-03 16:24:11 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 16:24:11 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 16:24:11 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1871576} -2016-05-03 16:24:11 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 16:24:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:24:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:24:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:24:12 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 16:24:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:24:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:24:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:24:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:24:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:24:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:24:12 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:24:12 DEBUG ServiceEngine:193 - get() - start -2016-05-03 16:24:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:24:12 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:24:12 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 16:24:12 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 16:24:12 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:24:12 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 16:24:12 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 16:24:12 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:24:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:24:12 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:24:12 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:24:12 DEBUG Operation:173 - get(String) - start -2016-05-03 16:24:12 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:24:12 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:24:12 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:24:12 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:24:12 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:12 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:12 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:24:12 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bb5edd5e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4df0ccc9, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7c14c818, socketFactory=javax.net.DefaultSocketFactory@385cdf4c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:24:12 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:24:12 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:24:12 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1871578}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1260984, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:12 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:24:12 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:12 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:260212}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:12 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:24:12 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2142356}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=901941, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:24:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=9732316, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=9.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:24:12 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1556149}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1301210, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=9.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 16:24:12 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1871579}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1871579}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG command:56 - Command execution completed -2016-05-03 16:24:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1871579}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG command:56 - Command execution completed -2016-05-03 16:24:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1871579}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG command:56 - Command execution completed -2016-05-03 16:24:12 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 16:24:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1871579}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG command:56 - Command execution completed -2016-05-03 16:24:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1871579}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG command:56 - Command execution completed -2016-05-03 16:24:12 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:24:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1871579}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG command:56 - Command execution completed -2016-05-03 16:24:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1871579}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG command:56 - Command execution completed -2016-05-03 16:24:12 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:24:12 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1871579}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG query:56 - Query completed -2016-05-03 16:24:12 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 16:24:12 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 16:24:12 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 16:24:12 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1871579}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG update:56 - Update completed -2016-05-03 16:24:12 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1871579}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG query:56 - Query completed -2016-05-03 16:24:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:24:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:24:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:24:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:24:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:24:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:24:12 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:24:12 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 16:24:12 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 16:24:12 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 16:24:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:24:12 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:24:12 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 16:24:12 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 16:24:12 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 16:24:12 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:24:12 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 16:24:12 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 16:24:12 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:24:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:24:12 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:24:12 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:24:12 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:24:12 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:24:12 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:24:12 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:12 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:12 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:24:12 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bb5edd5e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4df0ccc9, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7c14c818, socketFactory=javax.net.DefaultSocketFactory@385cdf4c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:24:12 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:24:12 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:24:12 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1871580}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1469089, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:12 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:24:12 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:12 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:24:12 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:24:12 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2142357}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1008410, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:24:12 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:260213}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1087462, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:24:12 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1556150}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1417473, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:24:12 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1871581}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 16:24:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1871581}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG command:56 - Command execution completed -2016-05-03 16:24:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1871581}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG command:56 - Command execution completed -2016-05-03 16:24:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1871581}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG command:56 - Command execution completed -2016-05-03 16:24:12 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:24:12 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:24:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1871581}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG command:56 - Command execution completed -2016-05-03 16:24:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1871581}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG command:56 - Command execution completed -2016-05-03 16:24:12 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:24:12 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1871581}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:24:12 DEBUG query:56 - Query completed -2016-05-03 16:24:12 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 16:24:12 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2142357} -2016-05-03 16:24:12 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:260213} -2016-05-03 16:24:12 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1871581}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:24:12 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1556150} -2016-05-03 16:24:12 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1871581} -2016-05-03 16:24:12 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1871580} -2016-05-03 16:24:12 INFO MongoIO:508 - Mongo has been closed -2016-05-03 16:24:12 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:24:12 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 16:24:12 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 16:24:12 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 16:24:12 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 16:24:12 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 16:24:12 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 16:24:12 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 16:24:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:24:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:24:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:24:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:24:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:24:19 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[TabularListParameter [value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=h1, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]], hasImage=false]] -2016-05-03 16:24:19 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 16:24:19 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 16:24:19 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 16:24:19 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 16:24:19 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 16:24:19 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:24:19 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 16:24:19 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 16:24:19 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 16:24:19 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 16:24:19 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 16:24:19 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 16:24:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 16:24:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 16:24:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:24:19 DEBUG SClient4WPS:687 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 16:24:19 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 16:24:19 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:24:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:24:19 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 16:24:19 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:24:19 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 16:24:19 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 16:24:19 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 16:24:19 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 16:24:19 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 16:24:19 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 16:24:19 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 16:24:19 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 16:24:19 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:24:19 DEBUG SClient4WPS:687 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 16:24:19 DEBUG SClient4WPS:695 - UserInputs= key:HCAF_Table_List, value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 16:24:19 DEBUG SClient4WPS:695 - UserInputs= key:HCAF_Table_Names, value=h1 -2016-05-03 16:24:19 DEBUG SClient4WPS:754 - Configuring Complex: HCAF_Table_List to: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 16:24:19 DEBUG SClient4WPS:737 - Configuring Literal: HCAF_Table_Names to: h1 -2016-05-03 16:24:19 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 16:24:19 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2142356} -2016-05-03 16:24:19 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1871579}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:24:19 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1871579} -2016-05-03 16:24:19 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:260212} -2016-05-03 16:24:19 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1556149} -2016-05-03 16:24:19 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1871578} -2016-05-03 16:24:19 DEBUG SClient4WPS:385 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - - - HCAF_Table_List - - - - HCAF_Table_Names - - h1 - - - - - - - non_deterministic_output - - - - -2016-05-03 16:24:19 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-03 16:24:19 DEBUG SClient4WPS:404 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=174ad7a0-9e3c-4a1f-b42f-fcf6287ca496 -2016-05-03 16:24:19 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:24:19 DEBUG SClient4WPS:774 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=174ad7a0-9e3c-4a1f-b42f-fcf6287ca496 -2016-05-03 16:24:19 DEBUG SClient4WPS:700 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=174ad7a0-9e3c-4a1f-b42f-fcf6287ca496 -2016-05-03 16:24:19 DEBUG SClient4WPS:711 - ComputationId: ComputationId [id=174ad7a0-9e3c-4a1f-b42f-fcf6287ca496, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=174ad7a0-9e3c-4a1f-b42f-fcf6287ca496] -2016-05-03 16:24:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 16:24:30 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 16:24:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:24:30 DEBUG SClient4WPS:790 - GetComputationStatus(): ComputationId=ComputationId [id=174ad7a0-9e3c-4a1f-b42f-fcf6287ca496, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=174ad7a0-9e3c-4a1f-b42f-fcf6287ca496] -2016-05-03 16:24:30 INFO StatWPSClientSession:114 - CONNECT -2016-05-03 16:24:30 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-03 16:24:30 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=174ad7a0-9e3c-4a1f-b42f-fcf6287ca496 -2016-05-03 16:24:30 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 16:24:30 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-03 16:24:30 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-03 16:24:30 DEBUG SClient4WPS:806 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - Process successful - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/aXdMb29OOVY3cEUxTGk5SGllRlE5YXh0bGVpWTl1NklHbWJQNStIS0N6Yz0 - Average_Ice_Concentration - image/png - - - http://data-d.d4science.org/Qm5Bd3BsR1BIWkkxTGk5SGllRlE5YTJ2L2EyTFMzcllHbWJQNStIS0N6Yz0 - Average_SST - image/png - - - http://data-d.d4science.org/Q08wdm1HZ0tkYWsxTGk5SGllRlE5UVgvbXZXSEFQVnpHbWJQNStIS0N6Yz0 - Average_Salinity - image/png - - - - - - - - -2016-05-03 16:24:30 DEBUG SClient4WPS:864 - WPS SUCCESS -2016-05-03 16:24:30 DEBUG SClient4WPS:889 - ComputationStatus: ComputationStatus [percentage=100.0, status=COMPLETE, endDate=null, message=null, errResource=null] -2016-05-03 16:24:30 DEBUG Log:91 - getResourceByComputationId: ComputationId [id=174ad7a0-9e3c-4a1f-b42f-fcf6287ca496, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=174ad7a0-9e3c-4a1f-b42f-fcf6287ca496] -2016-05-03 16:24:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:24:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:24:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:24:30 ERROR DataMinerManagerServiceImpl:242 - Error in getResourceByComputationId: null -2016-05-03 16:25:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:25:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:26:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:26:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:27:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:27:54 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:28:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:28:49 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:29:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:29:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:30:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:30:39 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:31:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:31:34 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:33:24 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 16:33:24 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 16:33:24 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 16:33:24 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 16:33:24 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 16:33:24 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:33:24 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 16:33:24 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@72ab00bc -2016-05-03 16:33:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:33:24 INFO ASLSession:352 - Logging the entrance -2016-05-03 16:33:24 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 16:33:24 DEBUG TemplateModel:83 - 2016-05-03 16:33:24, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 16:33:24 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:33:24 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 16:33:26 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 16:33:26 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 16:33:26 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:33:26 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 16:33:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:33:26 INFO ASLSession:352 - Logging the entrance -2016-05-03 16:33:26 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 16:33:26 DEBUG TemplateModel:83 - 2016-05-03 16:33:26, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 16:33:26 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:33:26 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 16:33:26 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 135 ms -2016-05-03 16:33:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 16:33:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 16:33:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 16:33:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 16:33:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 16:33:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 16:33:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 16:33:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 16:33:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 16:33:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 16:33:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 16:33:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 16:33:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 16:33:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 16:33:26 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 16:33:26 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:33:26 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 16:33:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@2160d362 -2016-05-03 16:33:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@148da147 -2016-05-03 16:33:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@4ad0a072 -2016-05-03 16:33:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@2d173b53 -2016-05-03 16:33:26 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 103 ms -2016-05-03 16:33:26 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 16:33:26 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 16:33:26 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 16:33:26 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 16:33:26 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 16:33:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:33:26 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:33:26 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 16:33:26 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 18 ms -2016-05-03 16:33:26 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 16:33:26 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:33:26 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 16:33:26 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 16:33:27 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 16:33:27 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 16:33:27 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 16:33:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:33:27 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:33:27 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:33:27 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 16:33:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:27 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 16:33:27 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 16:33:27 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 16:33:27 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 16:33:27 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 16:33:27 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 16:33:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 16:33:27 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:33:27 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 16:33:27 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 217 ms -2016-05-03 16:33:27 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 16:33:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:33:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:27 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 16:33:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:27 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 16:33:27 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 16:33:28 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 16:33:28 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 16:33:28 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 16:33:28 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 16:33:28 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 16:33:28 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 16:33:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:33:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:33:28 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:33:28 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 16:33:28 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 16:33:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 16:33:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:33:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:33:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:29 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 16:33:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 16:33:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:33:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:33:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:29 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 16:33:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 16:33:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:33:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:33:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:29 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 16:33:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 16:33:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:33:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:33:30 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 16:33:30 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 16:33:30 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 16:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:33:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:33:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:30 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 16:33:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:33:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:33:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:33:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:30 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 16:33:30 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 16:33:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 16:33:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:33:30 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:33:30 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 16:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:33:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:33:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:30 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 16:33:30 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 16:33:30 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-05-03 16:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 16:33:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:33:30 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:33:30 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 16:33:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:33:30 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 16:33:30 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 16:33:30 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 16:33:30 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 16:33:30 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 16:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 16:33:30 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 16:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 16:33:30 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:33:30 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 16:33:30 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 23 ms -2016-05-03 16:33:30 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 16:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 16:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 16:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 16:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:33:30 INFO WorkspaceExplorerServiceImpl:188 - end time - 269 msc 0 sec -2016-05-03 16:33:30 INFO WorkspaceExplorerServiceImpl:188 - end time - 219 msc 0 sec -2016-05-03 16:33:30 INFO WorkspaceExplorerServiceImpl:188 - end time - 160 msc 0 sec -2016-05-03 16:33:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:33:33 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:33:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:33:33 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 16:33:33 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:33:33 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 16:33:33 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 16:33:33 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 16:33:33 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 16:33:33 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 16:33:33 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 16:33:33 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 16:33:33 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:33:33 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 16:33:33 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 16:33:33 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 16:33:33 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 16:33:33 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 16:33:33 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:33:33 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 16:33:33 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 16:33:33 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 16:33:33 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 16:33:33 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 16:33:33 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 16:33:33 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 16:33:33 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 16:33:33 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:33:33 DEBUG SClient4WPS:652 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 16:33:33 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 16:33:33 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:33:33 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:33:33 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 16:33:33 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:33:33 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 16:33:33 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 16:33:33 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 16:33:33 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 16:33:33 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 16:33:33 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 16:33:33 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 16:33:33 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 16:33:33 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:33:33 DEBUG SClient4WPS:652 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 16:33:33 DEBUG SClient4WPS:656 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 16:33:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:33:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:33:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:33:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:33:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:33:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:33:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:33:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:33 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:33:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:33:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:33:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:33:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:33:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:33:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:33:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:33:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:33:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:33:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:33:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:33:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:33:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:33:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:33:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:33:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:33:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:33:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:33:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:33:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:33:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:33:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:33:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:33:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:33:33 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:33:33 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:33:33 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:33:33 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:33:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:33:33 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:33:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:33:33 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:33:33 INFO WorkspaceExplorerServiceImpl:142 - end time - 195 msc 0 sec -2016-05-03 16:33:33 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:33:39 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:33:39 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:33:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:33:39 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:33:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:33:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:39 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:33:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:33:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:33:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:33:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:39 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:33:39 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:33:39 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 16:33:39 DEBUG ServiceEngine:306 - get() - start -2016-05-03 16:33:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:33:39 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:33:39 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 16:33:39 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 16:33:39 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:33:39 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 16:33:39 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 16:33:39 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:33:39 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 16:33:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:33:39 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:33:39 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:33:39 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:33:39 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:33:39 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:33:39 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:33:39 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:33:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:33:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:33:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:33:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:33:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:39 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:33:39 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:33:39 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:39 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 16:33:39 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:39 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@774642df, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@45c52c78, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@13ea9e11, socketFactory=javax.net.DefaultSocketFactory@102f784e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:33:39 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 16:33:39 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:33:39 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:33:39 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 16:33:39 INFO WorkspaceExplorerServiceImpl:188 - end time - 48 msc 0 sec -2016-05-03 16:33:39 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 16:33:39 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 16:33:39 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:260507}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1871958}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1551638, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1693632, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:39 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:33:39 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:39 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:39 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:39 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1871959}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2142592}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=921894, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1871959}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 DEBUG command:56 - Command execution completed -2016-05-03 16:33:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1871959}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 DEBUG command:56 - Command execution completed -2016-05-03 16:33:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1871959}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 DEBUG command:56 - Command execution completed -2016-05-03 16:33:39 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 16:33:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1871959}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 DEBUG command:56 - Command execution completed -2016-05-03 16:33:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1871959}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 DEBUG command:56 - Command execution completed -2016-05-03 16:33:39 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1556387}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1474861, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:39 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1871959}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 16:33:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:33:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 16:33:40 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:33:40 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:33:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:33:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:33:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:33:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:40 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:33:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:33:40 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:33:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:33:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:40 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:33:40 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:33:40 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 16:33:40 DEBUG ServiceEngine:306 - get() - start -2016-05-03 16:33:40 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:33:40 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:33:40 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 16:33:40 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 16:33:40 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:33:40 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 16:33:40 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 16:33:40 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:33:40 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 16:33:40 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:33:40 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:33:40 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:33:40 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:33:40 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:33:40 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:33:40 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:40 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:40 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:40 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@774642df, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@45c52c78, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@13ea9e11, socketFactory=javax.net.DefaultSocketFactory@102f784e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:33:40 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:33:40 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:33:40 DEBUG query:56 - Query completed -2016-05-03 16:33:40 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 16:33:40 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2142592} -2016-05-03 16:33:40 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:260507} -2016-05-03 16:33:40 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1556387} -2016-05-03 16:33:40 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1871959}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:33:40 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1871959} -2016-05-03 16:33:40 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1871958} -2016-05-03 16:33:40 INFO MongoIO:508 - Mongo has been closed -2016-05-03 16:33:40 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 16:33:40 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 16:33:40 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 16:33:40 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:260508}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1367578, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:40 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:33:40 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:40 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:40 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2142594}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1047854, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:40 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1871961}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1555606, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:40 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:33:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:33:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:33:40 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:33:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:33:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:33:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:40 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1556388}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:40 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1530691, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 16:33:40 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:33:40 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:33:40 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1871962}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1871962}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 DEBUG command:56 - Command execution completed -2016-05-03 16:33:40 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1871962}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 DEBUG command:56 - Command execution completed -2016-05-03 16:33:40 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1871962}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 DEBUG command:56 - Command execution completed -2016-05-03 16:33:40 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 16:33:40 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1871962}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 DEBUG command:56 - Command execution completed -2016-05-03 16:33:40 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1871962}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 DEBUG command:56 - Command execution completed -2016-05-03 16:33:40 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1871962}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 16:33:40 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 16:33:40 INFO WorkspaceExplorerServiceImpl:188 - end time - 41 msc 0 sec -2016-05-03 16:33:40 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:33:40 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 16:33:40 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 16:33:40 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 16:33:40 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 16:33:40 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 16:33:40 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:33:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 16:33:41 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:33:41 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:33:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:33:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:33:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:33:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:41 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:33:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:33:41 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:33:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:33:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:41 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:33:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:33:41 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:33:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:33:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:41 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:33:41 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:33:41 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:33:41 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 16:33:41 DEBUG query:56 - Query completed -2016-05-03 16:33:41 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 16:33:41 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2142594} -2016-05-03 16:33:41 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:260508} -2016-05-03 16:33:41 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1556388} -2016-05-03 16:33:41 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1871962}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:33:41 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1871962} -2016-05-03 16:33:41 INFO MongoIO:508 - Mongo has been closed -2016-05-03 16:33:41 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1871961} -2016-05-03 16:33:41 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 16:33:41 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 16:33:41 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 16:33:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:33:42 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:33:42 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:33:42 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 16:33:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:42 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:33:42 DEBUG ServiceEngine:193 - get() - start -2016-05-03 16:33:42 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:33:42 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:33:42 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 16:33:42 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 16:33:42 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:33:42 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 16:33:42 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 16:33:42 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:33:42 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:33:42 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:33:42 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:33:42 DEBUG Operation:173 - get(String) - start -2016-05-03 16:33:42 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:33:42 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:33:42 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:33:42 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:33:42 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:42 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:42 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:42 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@774642df, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@45c52c78, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@13ea9e11, socketFactory=javax.net.DefaultSocketFactory@102f784e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:33:42 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:33:42 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:33:42 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1871963}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1265889, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:42 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:33:42 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:42 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:42 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:42 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2142596}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1235197, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:42 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:260509}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1247387, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:42 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1556389}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1440187, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 16:33:42 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1871964}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1871964}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG command:56 - Command execution completed -2016-05-03 16:33:42 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1871964}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG command:56 - Command execution completed -2016-05-03 16:33:42 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1871964}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG command:56 - Command execution completed -2016-05-03 16:33:42 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 16:33:42 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1871964}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG command:56 - Command execution completed -2016-05-03 16:33:42 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1871964}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG command:56 - Command execution completed -2016-05-03 16:33:42 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:33:42 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1871964}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG command:56 - Command execution completed -2016-05-03 16:33:42 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1871964}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG command:56 - Command execution completed -2016-05-03 16:33:42 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:33:42 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1871964}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG query:56 - Query completed -2016-05-03 16:33:42 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 16:33:42 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 16:33:42 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 16:33:42 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1871964}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG update:56 - Update completed -2016-05-03 16:33:42 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1871964}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG query:56 - Query completed -2016-05-03 16:33:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:33:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:33:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:33:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:33:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:33:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:33:42 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:33:42 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 16:33:42 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 16:33:42 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 16:33:42 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:33:42 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:33:42 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 16:33:42 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 16:33:42 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 16:33:42 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:33:42 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 16:33:42 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 16:33:42 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:33:42 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:33:42 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:33:42 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:33:42 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:33:42 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:33:42 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:33:42 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:42 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:42 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:42 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@774642df, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@45c52c78, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@13ea9e11, socketFactory=javax.net.DefaultSocketFactory@102f784e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:33:42 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:33:42 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:33:42 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:260510}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1321499, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:42 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:33:42 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:42 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:33:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:42 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2142597}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1871965}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=886706, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1438145, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:42 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:33:42 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1556390}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1385096, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:33:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 16:33:42 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1871966}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1871966}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG command:56 - Command execution completed -2016-05-03 16:33:42 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1871966}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG command:56 - Command execution completed -2016-05-03 16:33:42 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1871966}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG command:56 - Command execution completed -2016-05-03 16:33:42 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:33:42 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:33:42 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1871966}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG command:56 - Command execution completed -2016-05-03 16:33:42 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1871966}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG command:56 - Command execution completed -2016-05-03 16:33:42 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:33:42 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1871966}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:33:42 DEBUG query:56 - Query completed -2016-05-03 16:33:42 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 16:33:42 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2142597} -2016-05-03 16:33:42 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:260510} -2016-05-03 16:33:42 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1556390} -2016-05-03 16:33:42 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1871966}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:33:42 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1871966} -2016-05-03 16:33:42 INFO MongoIO:508 - Mongo has been closed -2016-05-03 16:33:42 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1871965} -2016-05-03 16:33:42 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:33:42 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 16:33:42 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 16:33:42 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 16:33:42 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 16:33:42 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 16:33:42 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 16:33:42 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 16:33:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:33:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:33:47 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:33:47 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[TabularListParameter [value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=h1, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]], hasImage=false]] -2016-05-03 16:33:47 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 16:33:47 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 16:33:47 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 16:33:47 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 16:33:47 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 16:33:47 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:33:47 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 16:33:47 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 16:33:47 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 16:33:47 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 16:33:47 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 16:33:47 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 16:33:47 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 16:33:47 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 16:33:47 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:33:47 DEBUG SClient4WPS:684 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 16:33:47 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 16:33:47 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:33:47 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:33:47 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 16:33:47 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:33:47 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 16:33:47 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 16:33:47 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 16:33:47 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 16:33:47 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 16:33:47 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 16:33:47 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 16:33:47 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 16:33:47 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:33:47 DEBUG SClient4WPS:684 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 16:33:47 DEBUG SClient4WPS:692 - UserInputs= key:HCAF_Table_List, value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 16:33:47 DEBUG SClient4WPS:692 - UserInputs= key:HCAF_Table_Names, value=h1 -2016-05-03 16:33:47 DEBUG SClient4WPS:753 - Configuring Complex: HCAF_Table_List to: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 16:33:47 DEBUG SClient4WPS:736 - Configuring Literal: HCAF_Table_Names to: h1 -2016-05-03 16:33:47 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 16:33:49 DEBUG SClient4WPS:384 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - - - HCAF_Table_List - - - - HCAF_Table_Names - - h1 - - - - - - - non_deterministic_output - - - - -2016-05-03 16:33:49 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-03 16:33:49 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2142596} -2016-05-03 16:33:49 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:260509} -2016-05-03 16:33:49 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1556389} -2016-05-03 16:33:49 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1871964}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:33:49 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1871964} -2016-05-03 16:33:49 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1871963} -2016-05-03 16:33:49 DEBUG SClient4WPS:403 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=122bae8a-65eb-428d-affd-609234589e08 -2016-05-03 16:33:49 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:33:49 DEBUG SClient4WPS:773 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=122bae8a-65eb-428d-affd-609234589e08 -2016-05-03 16:33:49 DEBUG SClient4WPS:698 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=122bae8a-65eb-428d-affd-609234589e08 -2016-05-03 16:33:49 DEBUG SClient4WPS:709 - ComputationId: ComputationId [id=122bae8a-65eb-428d-affd-609234589e08, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=122bae8a-65eb-428d-affd-609234589e08] -2016-05-03 16:33:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:33:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:33:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:33:59 DEBUG SClient4WPS:789 - GetComputationStatus(): ComputationId=ComputationId [id=122bae8a-65eb-428d-affd-609234589e08, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=122bae8a-65eb-428d-affd-609234589e08] -2016-05-03 16:33:59 INFO StatWPSClientSession:114 - CONNECT -2016-05-03 16:33:59 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-03 16:33:59 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=122bae8a-65eb-428d-affd-609234589e08 -2016-05-03 16:33:59 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 16:33:59 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-03 16:33:59 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-03 16:33:59 DEBUG SClient4WPS:805 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - Process successful - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/cjhubWdhV21Mc0UxTGk5SGllRlE5WDV2KzVnMi9JTmZHbWJQNStIS0N6Yz0 - Average_Ice_Concentration - image/png - - - http://data-d.d4science.org/T0JGN2pWYVd1UmsxTGk5SGllRlE5VHhjd210bFdSbHRHbWJQNStIS0N6Yz0 - Average_SST - image/png - - - http://data-d.d4science.org/UTNMdDVDVnowcTAxTGk5SGllRlE5WDRJOGJBTGwvN3JHbWJQNStIS0N6Yz0 - Average_Salinity - image/png - - - - - - - - -2016-05-03 16:33:59 DEBUG SClient4WPS:863 - WPS SUCCESS -2016-05-03 16:33:59 DEBUG SClient4WPS:888 - ComputationStatus: ComputationStatus [percentage=100.0, status=COMPLETE, endDate=null, message=null, errResource=null] -2016-05-03 16:33:59 DEBUG Log:91 - getResourceByComputationId: ComputationId [id=122bae8a-65eb-428d-affd-609234589e08, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=122bae8a-65eb-428d-affd-609234589e08] -2016-05-03 16:33:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:33:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:33:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:33:59 DEBUG SClient4WPS:423 - RetrieveProcessResult: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=122bae8a-65eb-428d-affd-609234589e08 -2016-05-03 16:33:59 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=122bae8a-65eb-428d-affd-609234589e08 -2016-05-03 16:33:59 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 16:33:59 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-03 16:33:59 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-03 16:33:59 DEBUG SClient4WPS:434 - Response: - - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - Process successful - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/cjhubWdhV21Mc0UxTGk5SGllRlE5WDV2KzVnMi9JTmZHbWJQNStIS0N6Yz0 - Average_Ice_Concentration - image/png - - - http://data-d.d4science.org/T0JGN2pWYVd1UmsxTGk5SGllRlE5VHhjd210bFdSbHRHbWJQNStIS0N6Yz0 - Average_SST - image/png - - - http://data-d.d4science.org/UTNMdDVDVnowcTAxTGk5SGllRlE5WDRJOGJBTGwvN3JHbWJQNStIS0N6Yz0 - Average_Salinity - image/png - - - - - - - - -2016-05-03 16:33:59 DEBUG SClient4WPS:958 - Process Executed -2016-05-03 16:33:59 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-03 16:33:59 DEBUG SClient4WPS:574 - Node Name: ogr:FeatureCollection -2016-05-03 16:33:59 DEBUG SClient4WPS:574 - Node Name: gml:featureMember -2016-05-03 16:33:59 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-03 16:33:59 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/cjhubWdhV21Mc0UxTGk5SGllRlE5WDV2KzVnMi9JTmZHbWJQNStIS0N6Yz0 -2016-05-03 16:33:59 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:Average_Ice_Concentration -2016-05-03 16:33:59 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:image/png -2016-05-03 16:33:59 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-03 16:33:59 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/T0JGN2pWYVd1UmsxTGk5SGllRlE5VHhjd210bFdSbHRHbWJQNStIS0N6Yz0 -2016-05-03 16:33:59 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:Average_SST -2016-05-03 16:33:59 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:image/png -2016-05-03 16:33:59 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-03 16:33:59 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/UTNMdDVDVnowcTAxTGk5SGllRlE5WDRJOGJBTGwvN3JHbWJQNStIS0N6Yz0 -2016-05-03 16:33:59 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:Average_Salinity -2016-05-03 16:33:59 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:image/png -2016-05-03 16:33:59 DEBUG SClient4WPS:503 - ResponseWPS Map: F0-->ResponseWPS [data=http://data-d.d4science.org/cjhubWdhV21Mc0UxTGk5SGllRlE5WDV2KzVnMi9JTmZHbWJQNStIS0N6Yz0, description=Average_Ice_Concentration, mimeType=image/png] -2016-05-03 16:33:59 DEBUG SClient4WPS:503 - ResponseWPS Map: F1-->ResponseWPS [data=http://data-d.d4science.org/T0JGN2pWYVd1UmsxTGk5SGllRlE5VHhjd210bFdSbHRHbWJQNStIS0N6Yz0, description=Average_SST, mimeType=image/png] -2016-05-03 16:33:59 DEBUG SClient4WPS:503 - ResponseWPS Map: F2-->ResponseWPS [data=http://data-d.d4science.org/UTNMdDVDVnowcTAxTGk5SGllRlE5WDRJOGJBTGwvN3JHbWJQNStIS0N6Yz0, description=Average_Salinity, mimeType=image/png] -2016-05-03 16:33:59 DEBUG SClient4WPS:1006 - Adding OBJ:F0 -2016-05-03 16:33:59 DEBUG SClient4WPS:1012 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/cjhubWdhV21Mc0UxTGk5SGllRlE5WDV2KzVnMi9JTmZHbWJQNStIS0N6Yz0, name=F0, description=Average_Ice_Concentration, typology=OBJECT] -2016-05-03 16:33:59 DEBUG SClient4WPS:1006 - Adding OBJ:F1 -2016-05-03 16:33:59 DEBUG SClient4WPS:1012 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/T0JGN2pWYVd1UmsxTGk5SGllRlE5VHhjd210bFdSbHRHbWJQNStIS0N6Yz0, name=F1, description=Average_SST, typology=OBJECT] -2016-05-03 16:33:59 DEBUG SClient4WPS:1006 - Adding OBJ:F2 -2016-05-03 16:33:59 DEBUG SClient4WPS:1012 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/UTNMdDVDVnowcTAxTGk5SGllRlE5WDRJOGJBTGwvN3JHbWJQNStIS0N6Yz0, name=F2, description=Average_Salinity, typology=OBJECT] -2016-05-03 16:33:59 DEBUG Log:91 - Resoure: MapResource [map={F0=ImagesResource [link=http://data-d.d4science.org/cjhubWdhV21Mc0UxTGk5SGllRlE5WDV2KzVnMi9JTmZHbWJQNStIS0N6Yz0, mimeType=image/png, getResourceId()=F0, getName()=Average_Ice_Concentration, getDescription()=Average_Ice_Concentration, getResourceType()=IMAGES], F1=ImagesResource [link=http://data-d.d4science.org/T0JGN2pWYVd1UmsxTGk5SGllRlE5VHhjd210bFdSbHRHbWJQNStIS0N6Yz0, mimeType=image/png, getResourceId()=F1, getName()=Average_SST, getDescription()=Average_SST, getResourceType()=IMAGES], F2=ImagesResource [link=http://data-d.d4science.org/UTNMdDVDVnowcTAxTGk5SGllRlE5WDRJOGJBTGwvN3JHbWJQNStIS0N6Yz0, mimeType=image/png, getResourceId()=F2, getName()=Average_Salinity, getDescription()=Average_Salinity, getResourceType()=IMAGES]}, getResourceId()=mapResource, getName()=Resources, getDescription()=Resources, getResourceType()=MAP] -2016-05-03 16:34:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:34:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:34:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:34:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:34:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:34:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:34:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:34:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:34:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:34:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:33 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:34:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:34:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:34:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:34:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:34:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:34:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:34:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:34:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:34:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:34:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:34:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:34:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:34:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:34:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:34:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:34:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:34:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:34:34 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:34:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:34:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:34:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:34:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:34:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:34:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:34:36 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:34:37 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:34:37 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:34:37 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:34:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:34:37 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:34:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:34:37 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:34:37 INFO WorkspaceExplorerServiceImpl:142 - end time - 2672 msc 2 sec -2016-05-03 16:34:37 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:34:40 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:34:40 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:34:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:34:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:34:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:34:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:40 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:34:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:34:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:34:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:34:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:40 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:34:40 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:34:40 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 16:34:40 DEBUG ServiceEngine:306 - get() - start -2016-05-03 16:34:40 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:34:40 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:34:40 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 16:34:40 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 16:34:40 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:34:40 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 16:34:40 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 16:34:40 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:34:40 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 16:34:40 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:34:40 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:34:40 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:34:40 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:34:40 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:34:40 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:34:40 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:40 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:40 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:40 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@774642df, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@45c52c78, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@13ea9e11, socketFactory=javax.net.DefaultSocketFactory@102f784e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:34:40 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:34:40 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:34:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:34:40 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:34:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:34:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:40 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:260728}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=3699536, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:40 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:34:40 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:40 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:34:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:34:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:34:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:40 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1872267}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:40 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:34:40 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=4791517, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:40 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:40 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:34:40 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 16:34:40 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 16:34:40 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1872268}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872268}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 DEBUG command:56 - Command execution completed -2016-05-03 16:34:40 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872268}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 DEBUG command:56 - Command execution completed -2016-05-03 16:34:40 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872268}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 DEBUG command:56 - Command execution completed -2016-05-03 16:34:40 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 16:34:40 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872268}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 DEBUG command:56 - Command execution completed -2016-05-03 16:34:40 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872268}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 16:34:40 DEBUG command:56 - Command execution completed -2016-05-03 16:34:40 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1872268}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2142752}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=851115, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:40 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1556546}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 INFO WorkspaceExplorerServiceImpl:188 - end time - 45 msc 0 sec -2016-05-03 16:34:40 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=4140404, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.1 ms, state=CONNECTED}] -2016-05-03 16:34:40 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 16:34:40 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 16:34:40 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:34:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.1 ms, state=CONNECTED}] -2016-05-03 16:34:41 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:34:41 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:34:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:34:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:34:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:34:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:41 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:34:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:34:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:34:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:34:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:41 DEBUG query:56 - Query completed -2016-05-03 16:34:41 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 16:34:41 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2142752} -2016-05-03 16:34:41 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:260728} -2016-05-03 16:34:41 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1872268}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:34:41 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1872268} -2016-05-03 16:34:41 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1556546} -2016-05-03 16:34:41 INFO MongoIO:508 - Mongo has been closed -2016-05-03 16:34:41 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 16:34:41 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1872267} -2016-05-03 16:34:41 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 16:34:41 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 16:34:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:34:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:34:41 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:34:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:34:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:34:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:34:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:42 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:34:42 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:34:42 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:34:42 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:34:43 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 16:34:43 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 16:34:43 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 16:34:43 DEBUG ServiceEngine:306 - get() - start -2016-05-03 16:34:43 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:34:43 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:34:43 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 16:34:43 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 16:34:43 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:34:43 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 16:34:43 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 16:34:43 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:34:43 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 16:34:43 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:34:43 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:34:43 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:34:43 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:34:43 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:34:43 INFO WorkspaceExplorerServiceImpl:188 - end time - 104 msc 0 sec -2016-05-03 16:34:43 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:34:43 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:43 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:43 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:43 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@774642df, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@45c52c78, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@13ea9e11, socketFactory=javax.net.DefaultSocketFactory@102f784e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:34:43 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:34:43 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:34:43 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:34:43 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 16:34:43 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 16:34:43 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:260729}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1872269}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1165429, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:43 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:34:43 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:43 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:43 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1356700, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:43 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:43 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2142756}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=896638, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:43 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 16:34:43 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 16:34:43 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1556549}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1149062, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 16:34:43 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1872271}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872271}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 DEBUG command:56 - Command execution completed -2016-05-03 16:34:43 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872271}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 DEBUG command:56 - Command execution completed -2016-05-03 16:34:43 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872271}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 DEBUG command:56 - Command execution completed -2016-05-03 16:34:43 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 16:34:43 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872271}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 DEBUG command:56 - Command execution completed -2016-05-03 16:34:43 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872271}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 DEBUG command:56 - Command execution completed -2016-05-03 16:34:43 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1872271}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:34:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 16:34:44 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:34:44 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:34:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:34:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:44 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:34:44 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:34:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:44 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:34:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:34:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:44 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:34:44 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:34:44 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:34:44 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 16:34:44 DEBUG query:56 - Query completed -2016-05-03 16:34:44 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 16:34:44 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2142756} -2016-05-03 16:34:44 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:260729} -2016-05-03 16:34:44 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1872271}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:34:44 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1872271} -2016-05-03 16:34:44 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1556549} -2016-05-03 16:34:44 INFO MongoIO:508 - Mongo has been closed -2016-05-03 16:34:44 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1872269} -2016-05-03 16:34:44 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 16:34:44 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 16:34:44 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:34:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:34:44 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:34:44 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-03 16:34:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:44 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:34:45 DEBUG ServiceEngine:193 - get() - start -2016-05-03 16:34:45 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:34:45 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:34:45 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 16:34:45 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 16:34:45 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:34:45 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 16:34:45 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 16:34:45 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:34:45 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:34:45 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:34:45 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 16:34:45 DEBUG Operation:173 - get(String) - start -2016-05-03 16:34:45 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:34:45 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:34:45 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:34:45 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:34:45 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:45 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:45 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:45 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@774642df, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@45c52c78, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@13ea9e11, socketFactory=javax.net.DefaultSocketFactory@102f784e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:34:45 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:34:45 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:34:45 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:260740}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1308658, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:45 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:34:45 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:45 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:45 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1872283}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2142763}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1312730, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:45 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=881242, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:45 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1556556}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1337722, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 16:34:45 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1872284}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872284}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG command:56 - Command execution completed -2016-05-03 16:34:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872284}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG command:56 - Command execution completed -2016-05-03 16:34:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872284}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG command:56 - Command execution completed -2016-05-03 16:34:45 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 16:34:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872284}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG command:56 - Command execution completed -2016-05-03 16:34:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872284}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG command:56 - Command execution completed -2016-05-03 16:34:45 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 16:34:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872284}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG command:56 - Command execution completed -2016-05-03 16:34:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872284}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG command:56 - Command execution completed -2016-05-03 16:34:45 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 16:34:45 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1872284}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG query:56 - Query completed -2016-05-03 16:34:45 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 16:34:45 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 16:34:45 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 16:34:45 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1872284}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG update:56 - Update completed -2016-05-03 16:34:45 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1872284}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG query:56 - Query completed -2016-05-03 16:34:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:34:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:34:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:34:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:34:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:34:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:34:45 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:34:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:34:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 16:34:51 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-03 16:34:51 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 16:34:51 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 16:34:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:34:51 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:34:51 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 16:34:51 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 16:34:51 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 16:34:51 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:34:51 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 16:34:51 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 16:34:51 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:34:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:34:51 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:34:51 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:34:51 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:34:51 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:34:51 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:34:51 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:51 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:51 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:51 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@774642df, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@45c52c78, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@13ea9e11, socketFactory=javax.net.DefaultSocketFactory@102f784e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:34:51 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:34:51 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:34:51 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1872287}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1555351, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:51 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:34:51 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:51 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:34:51 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:260741}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1295852, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:51 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2142765}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1139486, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:34:51 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1556558}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1243642, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:34:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 16:34:51 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1872288}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872288}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 DEBUG command:56 - Command execution completed -2016-05-03 16:34:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872288}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 DEBUG command:56 - Command execution completed -2016-05-03 16:34:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872288}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 DEBUG command:56 - Command execution completed -2016-05-03 16:34:51 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 16:34:51 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 16:34:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872288}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 DEBUG command:56 - Command execution completed -2016-05-03 16:34:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872288}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 DEBUG command:56 - Command execution completed -2016-05-03 16:34:51 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 16:34:51 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1872288}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:34:51 DEBUG query:56 - Query completed -2016-05-03 16:34:51 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 16:34:51 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2142765} -2016-05-03 16:34:51 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:260741} -2016-05-03 16:34:51 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1872288}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:34:51 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1872288} -2016-05-03 16:34:51 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1556558} -2016-05-03 16:34:51 INFO MongoIO:508 - Mongo has been closed -2016-05-03 16:34:51 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1872287} -2016-05-03 16:34:51 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 16:34:51 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 16:34:51 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 16:34:51 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 16:34:51 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 16:34:51 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 16:34:51 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 16:34:51 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 16:34:51 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2142763} -2016-05-03 16:34:51 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1556556} -2016-05-03 16:34:51 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1872284}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:34:51 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1872284} -2016-05-03 16:34:51 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:260740} -2016-05-03 16:34:51 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1872283} -2016-05-03 16:35:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:35:01 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:35:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:35:01 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[TabularListParameter [value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=h1|h2, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]], hasImage=false]] -2016-05-03 16:35:01 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 16:35:01 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 16:35:01 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 16:35:01 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 16:35:01 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 16:35:01 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:35:01 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 16:35:01 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 16:35:01 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 16:35:01 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 16:35:01 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 16:35:01 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 16:35:01 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 16:35:01 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 16:35:01 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:35:01 DEBUG SClient4WPS:684 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 16:35:01 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 16:35:01 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:35:01 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:35:01 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 16:35:01 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:35:01 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 16:35:01 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 16:35:01 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 16:35:01 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 16:35:01 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 16:35:01 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 16:35:01 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 16:35:01 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 16:35:01 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:35:01 DEBUG SClient4WPS:684 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 16:35:01 DEBUG SClient4WPS:692 - UserInputs= key:HCAF_Table_List, value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 16:35:01 DEBUG SClient4WPS:692 - UserInputs= key:HCAF_Table_Names, value=h1|h2 -2016-05-03 16:35:01 DEBUG SClient4WPS:753 - Configuring Complex: HCAF_Table_List to: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 16:35:01 DEBUG SClient4WPS:736 - Configuring Literal: HCAF_Table_Names to: h1|h2 -2016-05-03 16:35:01 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 16:35:01 DEBUG SClient4WPS:384 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - - - HCAF_Table_List - - - - HCAF_Table_Names - - h1|h2 - - - - - - - non_deterministic_output - - - - -2016-05-03 16:35:01 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-03 16:35:01 DEBUG SClient4WPS:403 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6f741251-a88b-49ed-98ea-1c85ce26358b -2016-05-03 16:35:01 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:35:01 DEBUG SClient4WPS:773 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6f741251-a88b-49ed-98ea-1c85ce26358b -2016-05-03 16:35:01 DEBUG SClient4WPS:698 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6f741251-a88b-49ed-98ea-1c85ce26358b -2016-05-03 16:35:01 DEBUG SClient4WPS:709 - ComputationId: ComputationId [id=6f741251-a88b-49ed-98ea-1c85ce26358b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6f741251-a88b-49ed-98ea-1c85ce26358b] -2016-05-03 16:35:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:35:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:35:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:35:11 DEBUG SClient4WPS:789 - GetComputationStatus(): ComputationId=ComputationId [id=6f741251-a88b-49ed-98ea-1c85ce26358b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6f741251-a88b-49ed-98ea-1c85ce26358b] -2016-05-03 16:35:11 INFO StatWPSClientSession:114 - CONNECT -2016-05-03 16:35:11 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-03 16:35:11 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6f741251-a88b-49ed-98ea-1c85ce26358b -2016-05-03 16:35:11 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 16:35:11 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-03 16:35:11 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-03 16:35:11 DEBUG SClient4WPS:805 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - - org.n52.wps.server.ExceptionReport: Error occured while parsing XML - - - - - -2016-05-03 16:35:11 DEBUG SClient4WPS:850 - WPS FAILURE: - - org.n52.wps.server.ExceptionReport: Error occured while parsing XML - - OR PAUSED: null -2016-05-03 16:35:11 DEBUG SClient4WPS:888 - ComputationStatus: ComputationStatus [percentage=100.0, status=FAILED, endDate=null, message=null, errResource=null] -2016-05-03 16:35:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:35:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:36:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:36:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:37:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:37:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:37:57 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 16:37:57 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 16:37:57 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 16:37:57 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 16:37:57 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 16:37:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:37:57 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 16:37:57 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@2b04d685 -2016-05-03 16:37:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:37:57 INFO ASLSession:352 - Logging the entrance -2016-05-03 16:37:57 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 16:37:57 DEBUG TemplateModel:83 - 2016-05-03 16:37:57, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 16:37:57 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:37:57 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 16:37:59 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 16:37:59 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 16:37:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:37:59 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 16:37:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:37:59 INFO ASLSession:352 - Logging the entrance -2016-05-03 16:37:59 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 16:37:59 DEBUG TemplateModel:83 - 2016-05-03 16:37:59, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 16:37:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:37:59 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 16:37:59 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 119 ms -2016-05-03 16:37:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 16:37:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 16:37:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 16:37:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 16:37:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 16:37:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 16:37:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 16:37:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 16:37:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 16:37:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 16:37:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 16:37:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 16:37:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 16:37:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 16:37:59 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 16:37:59 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:37:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 16:37:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@7ef58f23 -2016-05-03 16:37:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@742f937d -2016-05-03 16:37:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@344a6c94 -2016-05-03 16:37:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@5f773a -2016-05-03 16:37:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 104 ms -2016-05-03 16:37:59 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 16:37:59 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 16:37:59 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 16:37:59 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 16:37:59 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 16:37:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:37:59 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:37:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 16:37:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 22 ms -2016-05-03 16:37:59 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 16:37:59 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:37:59 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 16:37:59 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 16:38:00 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 16:38:00 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 16:38:00 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 16:38:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:38:00 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:38:00 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:38:00 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 16:38:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:00 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 16:38:00 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 16:38:00 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 16:38:00 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 16:38:00 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 16:38:00 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 16:38:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 16:38:00 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:38:00 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 16:38:00 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 174 ms -2016-05-03 16:38:00 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 16:38:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:38:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:00 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 16:38:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:00 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 16:38:00 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 16:38:00 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:38:00 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 16:38:01 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 16:38:01 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 16:38:01 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 16:38:01 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 16:38:01 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 16:38:01 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 16:38:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:01 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 16:38:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 16:38:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:01 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 16:38:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 16:38:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:01 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 16:38:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 16:38:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:01 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 16:38:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 16:38:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:02 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 16:38:02 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 16:38:02 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 16:38:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:38:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:02 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 16:38:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:02 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:38:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:02 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 16:38:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:02 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 16:38:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:38:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:38:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:38:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:02 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 16:38:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:38:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:02 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 16:38:02 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:38:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:02 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 16:38:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:02 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-05-03 16:38:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:38:02 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:38:02 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 16:38:02 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 16:38:02 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 16:38:02 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 16:38:02 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 16:38:02 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 16:38:02 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 16:38:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:38:02 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 16:38:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:38:02 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 16:38:02 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 16:38:02 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 23 ms -2016-05-03 16:38:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:38:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:38:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 16:38:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:03 INFO WorkspaceExplorerServiceImpl:188 - end time - 345 msc 0 sec -2016-05-03 16:38:03 INFO WorkspaceExplorerServiceImpl:188 - end time - 175 msc 0 sec -2016-05-03 16:38:03 INFO WorkspaceExplorerServiceImpl:188 - end time - 298 msc 0 sec -2016-05-03 16:38:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:38:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:38:13 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 16:38:13 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:38:13 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 16:38:13 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 16:38:13 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 16:38:13 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 16:38:13 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 16:38:13 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 16:38:13 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 16:38:13 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:38:13 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 16:38:13 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 16:38:13 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 16:38:13 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 16:38:13 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 16:38:13 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:38:13 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 16:38:13 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 16:38:13 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 16:38:13 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 16:38:13 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 16:38:13 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 16:38:13 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 16:38:13 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 16:38:13 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:38:13 DEBUG SClient4WPS:652 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 16:38:13 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 16:38:13 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:38:13 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:38:13 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 16:38:13 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:38:13 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 16:38:13 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 16:38:13 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 16:38:13 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 16:38:13 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 16:38:13 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 16:38:13 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 16:38:13 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 16:38:13 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:38:13 DEBUG SClient4WPS:652 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 16:38:13 DEBUG SClient4WPS:656 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 16:38:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:38:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:38:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:38:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:13 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:38:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:13 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:38:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:38:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:38:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:38:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:13 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:38:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:38:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:38:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:38:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:38:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:38:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:14 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:38:14 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:38:15 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:38:15 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:38:15 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:38:15 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:38:15 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:38:15 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:38:15 INFO WorkspaceExplorerServiceImpl:142 - end time - 1200 msc 1 sec -2016-05-03 16:38:15 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:38:26 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:26 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:38:26 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:38:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:38:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:26 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:38:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:38:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:38:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:26 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 16:38:26 DEBUG ServiceEngine:306 - get() - start -2016-05-03 16:38:26 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:26 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:26 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 16:38:26 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 16:38:26 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:38:26 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 16:38:26 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 16:38:26 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:38:26 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 16:38:26 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:26 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:26 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:38:26 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:38:26 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:38:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:38:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:38:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:38:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:26 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:38:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:26 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:38:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:26 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:26 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 16:38:26 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:26 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:26 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 16:38:26 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6f557141, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73b7dede, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2c88fc2c, socketFactory=javax.net.DefaultSocketFactory@5563c38b, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:38:26 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:38:26 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 16:38:26 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:38:26 INFO WorkspaceExplorerServiceImpl:188 - end time - 75 msc 0 sec -2016-05-03 16:38:26 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 16:38:26 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 16:38:26 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:260777}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1872326}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1581190, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1518459, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:26 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:38:26 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:26 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:26 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:26 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1872327}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1872327}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 DEBUG command:56 - Command execution completed -2016-05-03 16:38:26 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1872327}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 DEBUG command:56 - Command execution completed -2016-05-03 16:38:26 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1872327}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 DEBUG command:56 - Command execution completed -2016-05-03 16:38:26 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 16:38:26 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:1556594}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1872327}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1489293, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 16:38:26 DEBUG command:56 - Command execution completed -2016-05-03 16:38:26 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1872327}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 DEBUG command:56 - Command execution completed -2016-05-03 16:38:26 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1872327}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:2142801}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1218168, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 16:38:27 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:38:27 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:38:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:38:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:27 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:38:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:27 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:38:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:27 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:38:27 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:38:27 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 16:38:27 DEBUG ServiceEngine:306 - get() - start -2016-05-03 16:38:27 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:27 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:27 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 16:38:27 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 16:38:27 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:38:27 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 16:38:27 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 16:38:27 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:38:27 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 16:38:27 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:27 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:27 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:38:27 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:38:27 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:38:27 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:38:27 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:27 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:27 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:27 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6f557141, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73b7dede, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2c88fc2c, socketFactory=javax.net.DefaultSocketFactory@5563c38b, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:38:27 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:38:27 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:38:27 DEBUG query:56 - Query completed -2016-05-03 16:38:27 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 16:38:27 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:2142801} -2016-05-03 16:38:27 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:260777} -2016-05-03 16:38:27 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1872327}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:38:27 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1872327} -2016-05-03 16:38:27 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:1556594} -2016-05-03 16:38:27 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1872326} -2016-05-03 16:38:27 INFO MongoIO:508 - Mongo has been closed -2016-05-03 16:38:27 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 16:38:27 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 16:38:27 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 16:38:27 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1872328}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2183565, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:27 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:38:27 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:27 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:27 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:27 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:260778}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2142802}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1331369, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1110337, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:27 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1556595}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1464998, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 16:38:27 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1872329}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1872329}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:38:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:38:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:38:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:27 DEBUG command:56 - Command execution completed -2016-05-03 16:38:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:38:27 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:38:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1872329}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:38:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:27 DEBUG command:56 - Command execution completed -2016-05-03 16:38:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1872329}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 DEBUG command:56 - Command execution completed -2016-05-03 16:38:27 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 16:38:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1872329}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 DEBUG command:56 - Command execution completed -2016-05-03 16:38:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1872329}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 DEBUG command:56 - Command execution completed -2016-05-03 16:38:27 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1872329}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:27 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:38:27 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:38:27 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 16:38:27 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 16:38:27 INFO WorkspaceExplorerServiceImpl:188 - end time - 47 msc 0 sec -2016-05-03 16:38:27 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:27 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 16:38:27 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 16:38:27 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 16:38:27 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 16:38:28 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:38:28 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:38:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:38:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:28 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:38:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:38:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:28 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:38:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:38:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:28 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:38:28 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:38:28 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:38:28 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 16:38:28 DEBUG query:56 - Query completed -2016-05-03 16:38:28 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 16:38:28 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2142802} -2016-05-03 16:38:28 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:260778} -2016-05-03 16:38:28 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1556595} -2016-05-03 16:38:28 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1872329}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:38:28 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1872329} -2016-05-03 16:38:28 INFO MongoIO:508 - Mongo has been closed -2016-05-03 16:38:28 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1872328} -2016-05-03 16:38:28 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 16:38:28 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 16:38:28 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 16:38:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:29 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:38:29 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:38:29 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 16:38:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:29 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:38:29 DEBUG ServiceEngine:193 - get() - start -2016-05-03 16:38:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:29 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:29 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 16:38:29 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 16:38:29 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:38:29 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 16:38:29 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 16:38:29 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:38:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:29 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:29 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:38:29 DEBUG Operation:173 - get(String) - start -2016-05-03 16:38:29 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:38:29 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:38:29 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:38:29 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:38:29 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:29 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:29 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:29 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6f557141, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73b7dede, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2c88fc2c, socketFactory=javax.net.DefaultSocketFactory@5563c38b, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:38:29 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:38:29 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:38:29 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1872330}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1395662, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:29 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:38:29 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:29 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:29 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:29 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:260779}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2142803}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1230272, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1144252, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:29 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1556597}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1463457, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 16:38:29 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1872331}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1872331}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG command:56 - Command execution completed -2016-05-03 16:38:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1872331}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG command:56 - Command execution completed -2016-05-03 16:38:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1872331}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG command:56 - Command execution completed -2016-05-03 16:38:29 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 16:38:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1872331}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG command:56 - Command execution completed -2016-05-03 16:38:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1872331}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG command:56 - Command execution completed -2016-05-03 16:38:29 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:38:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1872331}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG command:56 - Command execution completed -2016-05-03 16:38:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1872331}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG command:56 - Command execution completed -2016-05-03 16:38:29 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:38:29 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1872331}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG query:56 - Query completed -2016-05-03 16:38:29 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 16:38:29 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 16:38:29 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 16:38:29 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1872331}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG update:56 - Update completed -2016-05-03 16:38:29 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1872331}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG query:56 - Query completed -2016-05-03 16:38:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:29 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 16:38:29 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 16:38:29 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 16:38:29 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 16:38:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:29 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:29 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 16:38:29 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 16:38:29 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 16:38:29 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:38:29 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 16:38:29 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 16:38:29 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:38:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:29 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:29 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:38:29 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:38:29 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:38:29 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:38:29 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:29 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:29 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:29 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6f557141, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73b7dede, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2c88fc2c, socketFactory=javax.net.DefaultSocketFactory@5563c38b, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:38:29 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:38:29 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:38:29 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1872332}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:260780}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=988175, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1138484, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:29 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:38:29 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:29 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:29 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:29 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2142804}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=848120, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:29 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1556598}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1458834, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 16:38:29 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1872333}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1872333}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG command:56 - Command execution completed -2016-05-03 16:38:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1872333}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG command:56 - Command execution completed -2016-05-03 16:38:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1872333}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG command:56 - Command execution completed -2016-05-03 16:38:29 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:38:29 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:38:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1872333}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG command:56 - Command execution completed -2016-05-03 16:38:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1872333}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG command:56 - Command execution completed -2016-05-03 16:38:29 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:38:29 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1872333}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:29 DEBUG query:56 - Query completed -2016-05-03 16:38:29 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 16:38:29 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2142804} -2016-05-03 16:38:29 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:260780} -2016-05-03 16:38:29 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1556598} -2016-05-03 16:38:29 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1872333}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:38:30 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1872333} -2016-05-03 16:38:30 INFO MongoIO:508 - Mongo has been closed -2016-05-03 16:38:30 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1872332} -2016-05-03 16:38:30 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 16:38:30 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 16:38:30 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 16:38:30 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 16:38:30 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 16:38:30 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 16:38:30 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 16:38:30 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 16:38:30 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2142803} -2016-05-03 16:38:30 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:260779} -2016-05-03 16:38:30 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1556597} -2016-05-03 16:38:30 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1872331}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:38:30 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1872331} -2016-05-03 16:38:30 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1872330} -2016-05-03 16:38:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:38:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:38:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:38:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:38:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:35 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:38:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:38:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:38:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:38:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:38:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:38:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:38:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:38:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:38:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:38:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:38:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:38:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:35 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:38:35 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:38:35 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:38:35 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:38:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:38:35 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:38:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:38:35 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:38:35 INFO WorkspaceExplorerServiceImpl:142 - end time - 161 msc 0 sec -2016-05-03 16:38:35 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:38:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:38:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:38:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:38:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:36 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:38:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:38:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:36 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:38:36 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:38:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:38:36 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:38:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 16:38:36 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 16:38:37 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 16:38:37 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 16:38:37 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 16:38:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:38:37 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 16:38:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 16:38:37 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 16:38:37 INFO WorkspaceExplorerServiceImpl:142 - end time - 158 msc 0 sec -2016-05-03 16:38:37 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 16:38:43 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:43 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:38:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:38:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:43 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:38:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:43 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:43 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:43 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 16:38:43 DEBUG ServiceEngine:306 - get() - start -2016-05-03 16:38:43 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:43 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:43 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 16:38:43 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 16:38:43 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:38:43 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 16:38:43 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 16:38:43 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:38:43 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 16:38:43 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:43 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:43 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:38:43 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:38:43 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:38:43 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:38:43 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:43 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:43 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:43 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6f557141, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73b7dede, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2c88fc2c, socketFactory=javax.net.DefaultSocketFactory@5563c38b, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:38:43 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:38:43 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:38:43 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:260785}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1100585, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:43 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:38:43 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:43 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:43 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2142809}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1165953, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:43 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1872335}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1512237, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:43 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:43 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1556602}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1403111, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 16:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:38:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:38:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:43 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:43 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1872336}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872336}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 DEBUG command:56 - Command execution completed -2016-05-03 16:38:43 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872336}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 DEBUG command:56 - Command execution completed -2016-05-03 16:38:43 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872336}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 DEBUG command:56 - Command execution completed -2016-05-03 16:38:43 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 16:38:43 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872336}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:43 DEBUG command:56 - Command execution completed -2016-05-03 16:38:43 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872336}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 DEBUG command:56 - Command execution completed -2016-05-03 16:38:43 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1872336}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 16:38:43 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 16:38:43 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 16:38:43 INFO WorkspaceExplorerServiceImpl:188 - end time - 52 msc 0 sec -2016-05-03 16:38:43 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 16:38:43 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 16:38:43 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 16:38:43 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 16:38:44 DEBUG query:56 - Query completed -2016-05-03 16:38:44 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 16:38:44 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2142809} -2016-05-03 16:38:44 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:260785} -2016-05-03 16:38:44 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1556602} -2016-05-03 16:38:44 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1872336}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:38:44 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1872336} -2016-05-03 16:38:44 INFO MongoIO:508 - Mongo has been closed -2016-05-03 16:38:44 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1872335} -2016-05-03 16:38:44 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 16:38:44 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 16:38:44 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 16:38:44 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:38:44 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:38:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:38:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:44 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:44 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:38:44 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:38:44 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 16:38:44 DEBUG ServiceEngine:306 - get() - start -2016-05-03 16:38:44 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:44 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:44 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 16:38:44 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 16:38:44 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:38:44 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 16:38:44 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 16:38:44 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:38:44 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 16:38:44 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:44 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:44 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:38:44 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:38:44 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:38:44 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:38:44 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:44 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:44 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:44 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6f557141, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73b7dede, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2c88fc2c, socketFactory=javax.net.DefaultSocketFactory@5563c38b, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:38:44 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:38:44 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:38:44 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:260786}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1158850, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:44 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1872337}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:38:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:44 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1256677, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:44 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:44 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2142810}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=742617, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:38:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:38:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:44 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:44 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:38:44 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 16:38:44 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1872338}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872338}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 DEBUG command:56 - Command execution completed -2016-05-03 16:38:44 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1556603}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872338}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 DEBUG command:56 - Command execution completed -2016-05-03 16:38:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1237512, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:44 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872338}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 16:38:44 DEBUG command:56 - Command execution completed -2016-05-03 16:38:44 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 16:38:44 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872338}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 DEBUG command:56 - Command execution completed -2016-05-03 16:38:44 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872338}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 DEBUG command:56 - Command execution completed -2016-05-03 16:38:44 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1872338}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 16:38:44 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 16:38:44 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 16:38:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 47 msc 0 sec -2016-05-03 16:38:44 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 16:38:44 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 16:38:44 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 16:38:44 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 16:38:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 16:38:45 DEBUG query:56 - Query completed -2016-05-03 16:38:45 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 16:38:45 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:260786} -2016-05-03 16:38:45 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1872338}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:38:45 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2142810} -2016-05-03 16:38:45 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1872338} -2016-05-03 16:38:45 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1556603} -2016-05-03 16:38:45 INFO MongoIO:508 - Mongo has been closed -2016-05-03 16:38:45 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1872337} -2016-05-03 16:38:45 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 16:38:45 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 16:38:45 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 16:38:45 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:38:45 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:38:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:45 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:38:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:45 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:38:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:38:45 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:38:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:38:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:45 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:38:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:45 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:38:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:38:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:45 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:38:45 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:38:45 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:38:45 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 16:38:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:38:46 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:38:46 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:38:46 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-03 16:38:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:46 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:38:46 DEBUG ServiceEngine:193 - get() - start -2016-05-03 16:38:46 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:46 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:46 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 16:38:46 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 16:38:46 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:38:46 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 16:38:46 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 16:38:46 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:38:46 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:46 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:46 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 16:38:46 DEBUG Operation:173 - get(String) - start -2016-05-03 16:38:46 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:38:46 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:38:46 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:38:46 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:38:46 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:46 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:46 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:46 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6f557141, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73b7dede, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2c88fc2c, socketFactory=javax.net.DefaultSocketFactory@5563c38b, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:38:46 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:38:46 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:38:46 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1872339}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:260788}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1493456, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:46 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:38:46 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:46 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1259287, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:46 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:46 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2142811}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=846645, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:46 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1556604}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1431820, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 16:38:46 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1872340}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872340}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG command:56 - Command execution completed -2016-05-03 16:38:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872340}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG command:56 - Command execution completed -2016-05-03 16:38:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872340}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG command:56 - Command execution completed -2016-05-03 16:38:46 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 16:38:46 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872340}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG command:56 - Command execution completed -2016-05-03 16:38:46 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872340}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG command:56 - Command execution completed -2016-05-03 16:38:46 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 16:38:46 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872340}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG command:56 - Command execution completed -2016-05-03 16:38:46 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872340}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG command:56 - Command execution completed -2016-05-03 16:38:46 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 16:38:46 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1872340}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG query:56 - Query completed -2016-05-03 16:38:46 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 16:38:46 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 16:38:46 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 16:38:46 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1872340}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG update:56 - Update completed -2016-05-03 16:38:46 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1872340}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG query:56 - Query completed -2016-05-03 16:38:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 16:38:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 16:38:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 16:38:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 16:38:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 16:38:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 16:38:46 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 16:38:46 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-03 16:38:46 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 16:38:46 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 16:38:46 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:46 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:46 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 16:38:46 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 16:38:46 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 16:38:46 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 16:38:46 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 16:38:46 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 16:38:46 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 16:38:46 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 16:38:46 DEBUG BucketCoding:42 - coding name done -2016-05-03 16:38:46 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 16:38:46 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 16:38:46 DEBUG MongoIO:77 - open mongo connection -2016-05-03 16:38:46 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 16:38:46 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:46 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:46 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:46 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@6f557141, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73b7dede, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2c88fc2c, socketFactory=javax.net.DefaultSocketFactory@5563c38b, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 16:38:46 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 16:38:46 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 16:38:46 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:260789}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1335288, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:46 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 16:38:46 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:46 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 16:38:46 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1872341}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1470615, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:46 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:46 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2142813}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=999707, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 16:38:46 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1556605}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1308885, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 16:38:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 16:38:46 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1872342}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872342}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG command:56 - Command execution completed -2016-05-03 16:38:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872342}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG command:56 - Command execution completed -2016-05-03 16:38:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872342}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG command:56 - Command execution completed -2016-05-03 16:38:46 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 16:38:46 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 16:38:46 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872342}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG command:56 - Command execution completed -2016-05-03 16:38:46 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872342}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG command:56 - Command execution completed -2016-05-03 16:38:46 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 16:38:46 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1872342}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 16:38:46 DEBUG query:56 - Query completed -2016-05-03 16:38:46 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 16:38:46 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2142813} -2016-05-03 16:38:46 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:260789} -2016-05-03 16:38:46 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1556605} -2016-05-03 16:38:46 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1872342}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:38:46 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1872342} -2016-05-03 16:38:46 INFO MongoIO:508 - Mongo has been closed -2016-05-03 16:38:46 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1872341} -2016-05-03 16:38:46 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 16:38:46 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 16:38:46 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 16:38:46 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 16:38:46 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 16:38:46 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 16:38:46 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 16:38:46 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 16:38:46 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2142811} -2016-05-03 16:38:46 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1872340}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 16:38:46 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1872340} -2016-05-03 16:38:46 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:260788} -2016-05-03 16:38:46 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1556604} -2016-05-03 16:38:46 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1872339} -2016-05-03 16:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:38:52 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:38:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 16:38:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 16:38:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:38:56 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[TabularListParameter [value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0$http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=h1|h2, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]], hasImage=false]] -2016-05-03 16:38:56 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 16:38:56 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 16:38:56 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 16:38:56 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 16:38:56 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 16:38:56 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:38:56 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 16:38:56 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 16:38:56 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 16:38:56 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 16:38:56 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 16:38:56 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 16:38:56 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 16:38:56 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 16:38:56 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:38:56 DEBUG SClient4WPS:684 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 16:38:56 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 16:38:56 DEBUG WPS2SM:92 - WPS type: -2016-05-03 16:38:56 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 16:38:56 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 16:38:56 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 16:38:56 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 16:38:56 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 16:38:56 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 16:38:56 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 16:38:56 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 16:38:56 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 16:38:56 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 16:38:56 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 16:38:56 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 16:38:56 DEBUG SClient4WPS:684 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 16:38:56 DEBUG SClient4WPS:692 - UserInputs= key:HCAF_Table_List, value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0$http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 16:38:56 DEBUG SClient4WPS:692 - UserInputs= key:HCAF_Table_Names, value=h1|h2 -2016-05-03 16:38:56 DEBUG SClient4WPS:753 - Configuring Complex: HCAF_Table_List to: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0$http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 16:38:56 DEBUG SClient4WPS:736 - Configuring Literal: HCAF_Table_Names to: h1|h2 -2016-05-03 16:38:56 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 16:38:57 DEBUG SClient4WPS:384 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - - - HCAF_Table_List - - - - HCAF_Table_Names - - h1|h2 - - - - - - - non_deterministic_output - - - - -2016-05-03 16:38:57 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-03 16:38:57 DEBUG SClient4WPS:403 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=bf9148da-f55b-4dae-94d2-dbe6e5613769 -2016-05-03 16:38:57 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 16:38:57 DEBUG SClient4WPS:773 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=bf9148da-f55b-4dae-94d2-dbe6e5613769 -2016-05-03 16:38:57 DEBUG SClient4WPS:698 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=bf9148da-f55b-4dae-94d2-dbe6e5613769 -2016-05-03 16:38:57 DEBUG SClient4WPS:709 - ComputationId: ComputationId [id=bf9148da-f55b-4dae-94d2-dbe6e5613769, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=bf9148da-f55b-4dae-94d2-dbe6e5613769] -2016-05-03 16:39:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:39:07 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:39:07 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 16:39:07 DEBUG SClient4WPS:789 - GetComputationStatus(): ComputationId=ComputationId [id=bf9148da-f55b-4dae-94d2-dbe6e5613769, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=bf9148da-f55b-4dae-94d2-dbe6e5613769] -2016-05-03 16:39:07 INFO StatWPSClientSession:114 - CONNECT -2016-05-03 16:39:07 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-03 16:39:07 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=bf9148da-f55b-4dae-94d2-dbe6e5613769 -2016-05-03 16:39:07 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 16:39:07 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-03 16:39:07 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-03 16:39:07 DEBUG SClient4WPS:805 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - - java.lang.RuntimeException: Error in creating the table for wps_0e34434d3f1c4a44aec857d10cde3b64: Input table is not compliant to the required structure - - - - - -2016-05-03 16:39:07 DEBUG SClient4WPS:850 - WPS FAILURE: - - java.lang.RuntimeException: Error in creating the table for wps_0e34434d3f1c4a44aec857d10cde3b64: Input table is not compliant to the required structure - - OR PAUSED: null -2016-05-03 16:39:07 DEBUG SClient4WPS:888 - ComputationStatus: ComputationStatus [percentage=100.0, status=FAILED, endDate=null, message=null, errResource=null] -2016-05-03 16:39:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:39:47 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:40:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:40:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:41:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:41:37 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:42:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:42:32 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:43:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:43:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:44:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:44:22 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:46:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:46:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:47:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:47:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:48:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:48:02 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:48:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:48:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:49:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:49:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:50:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:50:47 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:51:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:51:42 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:52:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:52:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:53:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:53:32 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:54:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 16:54:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 16:55:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 16:55:22 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 16:56:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 16:56:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 16:57:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 16:57:12 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 16:58:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:58:07 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:59:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:59:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 16:59:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 16:59:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:00:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:00:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:01:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:01:47 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:02:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:02:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:03:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:03:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:05:35 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 17:05:35 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 17:05:35 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 17:05:35 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 17:05:35 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 17:05:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:05:35 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 17:05:35 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@3ea9e7f -2016-05-03 17:05:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:05:35 INFO ASLSession:352 - Logging the entrance -2016-05-03 17:05:35 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 17:05:35 DEBUG TemplateModel:83 - 2016-05-03 17:05:35, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 17:05:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:05:35 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 17:05:37 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 17:05:37 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 17:05:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:05:37 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 17:05:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:05:37 INFO ASLSession:352 - Logging the entrance -2016-05-03 17:05:37 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 17:05:37 DEBUG TemplateModel:83 - 2016-05-03 17:05:37, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 17:05:37 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:05:37 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 17:05:37 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 116 ms -2016-05-03 17:05:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 17:05:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 17:05:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 17:05:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 17:05:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 17:05:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 17:05:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 17:05:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 17:05:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 17:05:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 17:05:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 17:05:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 17:05:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 17:05:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 17:05:37 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 17:05:38 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 17:05:38 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 17:05:38 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 17:05:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:05:38 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:05:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:05:38 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 17:05:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:05:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:05:38 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:05:38 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 17:05:38 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 17:05:38 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 17:05:38 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 17:05:38 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 17:05:38 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 17:05:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:05:38 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 17:05:38 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:05:38 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 17:05:38 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@8ce8cc1 -2016-05-03 17:05:38 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@49a104e7 -2016-05-03 17:05:38 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@735020d1 -2016-05-03 17:05:38 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@4d5161b2 -2016-05-03 17:05:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 105 ms -2016-05-03 17:05:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 78 ms -2016-05-03 17:05:38 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 17:05:38 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 17:05:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:05:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:05:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:05:38 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 17:05:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:05:38 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 17:05:38 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 17:05:38 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 17:05:38 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 17:05:38 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 17:05:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:05:38 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:05:38 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 17:05:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 16 ms -2016-05-03 17:05:38 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 17:05:38 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:05:38 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 17:05:38 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 17:05:39 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 17:05:39 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 17:05:39 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 17:05:39 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 17:05:39 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 17:05:39 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 17:05:39 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 17:05:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:05:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:05:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:05:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:05:39 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 17:05:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 17:05:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:05:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:05:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:05:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:05:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:05:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:05:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:05:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:05:39 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:05:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 17:05:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:05:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:05:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:05:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:05:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:05:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:05:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:05:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:05:39 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:05:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 17:05:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:05:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:05:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:05:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:05:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:05:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:05:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:05:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:05:39 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:05:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 17:05:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:05:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:05:39 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:05:39 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:05:40 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:05:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:05:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:05:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:05:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:05:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:05:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:05:40 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 17:05:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:05:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:05:40 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:05:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:05:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:05:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:05:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:05:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:05:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:05:40 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 17:05:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:05:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:05:40 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:05:40 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:05:40 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:05:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:05:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:05:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:05:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:05:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:05:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:05:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:05:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:05:40 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 17:05:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 29 ms -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 17:05:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:05:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:05:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 17:05:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:05:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 17:05:40 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 17:05:40 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 17:05:40 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 17:05:40 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 17:05:40 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 17:05:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:05:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:05:40 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 17:05:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 17:05:40 INFO WorkspaceExplorerServiceImpl:188 - end time - 165 msc 0 sec -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:05:40 INFO WorkspaceExplorerServiceImpl:188 - end time - 518 msc 0 sec -2016-05-03 17:05:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:05:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:05:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 16 ms -2016-05-03 17:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 17:05:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:05:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 17:05:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 17:05:41 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 17:05:41 INFO ISClientConnector:61 - ISCACHE: ELEMENT EXTRACTED -2016-05-03 17:05:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 17:05:41 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 17:05:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 17:05:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:05:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:05:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 17 ms -2016-05-03 17:05:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 17:05:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 17:05:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 17:05:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:05:41 INFO WorkspaceExplorerServiceImpl:188 - end time - 570 msc 0 sec -2016-05-03 17:06:30 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 17:06:30 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 17:06:30 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 17:06:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:06:30 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:07:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:07:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:08:42 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 17:08:42 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 17:08:42 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 17:08:42 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 17:08:42 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 17:08:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:08:42 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 17:08:42 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@3b72fd3c -2016-05-03 17:08:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:08:42 INFO ASLSession:352 - Logging the entrance -2016-05-03 17:08:42 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 17:08:42 DEBUG TemplateModel:83 - 2016-05-03 17:08:42, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 17:08:42 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:08:42 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 17:08:43 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 17:08:43 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 17:08:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:08:43 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 17:08:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:08:43 INFO ASLSession:352 - Logging the entrance -2016-05-03 17:08:43 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 17:08:43 DEBUG TemplateModel:83 - 2016-05-03 17:08:43, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 17:08:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:08:43 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 17:08:44 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 115 ms -2016-05-03 17:08:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 17:08:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 17:08:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 17:08:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 17:08:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 17:08:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 17:08:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 17:08:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 17:08:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 17:08:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 17:08:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 17:08:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 17:08:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 17:08:44 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 17:08:44 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 17:08:44 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 17:08:44 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 17:08:44 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 17:08:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:08:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:08:44 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:08:44 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 17:08:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:08:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:08:44 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 17:08:44 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 17:08:44 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 17:08:44 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 17:08:44 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 17:08:44 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 17:08:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 17:08:45 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:08:45 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:08:45 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 17:08:45 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 17:08:45 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@6e7ec3fe -2016-05-03 17:08:45 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@a733748 -2016-05-03 17:08:45 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@5d694205 -2016-05-03 17:08:45 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@1fec77ab -2016-05-03 17:08:45 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 101 ms -2016-05-03 17:08:45 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 17:08:45 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 258 ms -2016-05-03 17:08:45 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 17:08:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:08:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:08:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:08:45 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 17:08:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:08:45 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 17:08:49 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 17:08:49 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 17:08:49 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 17:08:49 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 17:08:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:08:49 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:08:49 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 17:08:49 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 20 ms -2016-05-03 17:08:49 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 17:08:49 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:08:49 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 17:08:49 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 17:08:50 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 17:08:50 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 17:08:50 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 17:08:50 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 17:08:50 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 17:08:50 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 17:08:50 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 17:08:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:08:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:08:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:08:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:08:50 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 17:08:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 17:08:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:08:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:08:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:08:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:08:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:08:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:08:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:08:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:08:50 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:08:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 17:08:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:08:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:08:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:08:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:08:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:08:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:08:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:08:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:08:50 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:08:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 17:08:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:08:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:08:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:08:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:08:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:08:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:08:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:08:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:08:50 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:08:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 17:08:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:08:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:08:51 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 17:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:08:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:08:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:08:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:08:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:08:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:08:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:08:51 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 17:08:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:08:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:08:51 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:08:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:08:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:08:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:08:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:08:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:08:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:08:51 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 17:08:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:08:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:08:51 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 17:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:08:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:08:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:08:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:08:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:08:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:08:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:08:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 17:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:08:51 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 17:08:51 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:08:51 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:08:51 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 17:08:51 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 17:08:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 17:08:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:08:51 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:08:51 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 17:08:51 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 17:08:51 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 17:08:51 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 17:08:51 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 17:08:51 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 17:08:51 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 17:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 17:08:51 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 17:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 17:08:51 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:08:51 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:08:51 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 36 ms -2016-05-03 17:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 17:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 17:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 17:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:08:51 INFO WorkspaceExplorerServiceImpl:188 - end time - 351 msc 0 sec -2016-05-03 17:08:51 INFO WorkspaceExplorerServiceImpl:188 - end time - 184 msc 0 sec -2016-05-03 17:08:51 INFO WorkspaceExplorerServiceImpl:188 - end time - 344 msc 0 sec -2016-05-03 17:08:51 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:08:51 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 17:08:58 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 17:08:58 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 17:08:58 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 17:08:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:08:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:08:58 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:08:58 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 17:08:58 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:08:58 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 17:08:59 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 17:08:59 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 17:08:59 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 17:08:59 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 17:08:59 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 17:08:59 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 17:08:59 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:08:59 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 17:08:59 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 17:08:59 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 17:08:59 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 17:08:59 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 17:08:59 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 17:08:59 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 17:08:59 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 17:08:59 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 17:08:59 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 17:08:59 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 17:08:59 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 17:08:59 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 17:08:59 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 17:08:59 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 17:08:59 DEBUG SClient4WPS:652 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 17:08:59 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 17:08:59 DEBUG WPS2SM:92 - WPS type: -2016-05-03 17:08:59 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 17:08:59 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 17:08:59 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 17:08:59 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 17:08:59 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 17:08:59 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 17:08:59 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 17:08:59 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 17:08:59 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 17:08:59 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 17:08:59 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 17:08:59 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 17:08:59 DEBUG SClient4WPS:652 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 17:08:59 DEBUG SClient4WPS:656 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 17:08:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:08:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:08:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:08:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:08:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:08:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:08:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:08:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:08:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:08:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:08:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:08:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:08:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:08:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:08:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:08:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:08:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:08:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:08:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:08:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 17:08:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 17:08:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:08:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:08:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:08:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:08:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:08:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:08:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:08:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:08:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:08:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:08:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:08:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:08:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:08:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:08:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:08:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:08:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:08:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:08:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:08:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:08:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:08:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:08:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:08:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:08:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:08:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:08:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:08:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:08:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:08:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:08:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:08:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:08:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:08:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:08:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:08:59 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 17:08:59 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 17:08:59 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 17:08:59 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 17:08:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 17:08:59 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 17:08:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 17:08:59 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 17:08:59 INFO WorkspaceExplorerServiceImpl:142 - end time - 192 msc 0 sec -2016-05-03 17:08:59 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 17:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:09:01 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 17:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:09:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:09:01 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:09:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:01 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 17:09:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:09:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 17:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:09:01 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:09:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:09:01 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:09:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:09:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:09:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:09:01 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 17:09:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:09:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:09:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:09:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:09:01 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:09:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:09:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:09:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:09:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:09:01 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 17:09:02 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 17:09:02 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 17:09:02 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 17:09:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 17:09:02 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 17:09:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 17:09:02 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 17:09:02 INFO WorkspaceExplorerServiceImpl:142 - end time - 170 msc 0 sec -2016-05-03 17:09:02 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 17:09:05 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:05 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:09:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:09:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:09:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:05 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:09:05 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:09:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:09:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:05 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:05 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:06 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 17:09:06 DEBUG ServiceEngine:306 - get() - start -2016-05-03 17:09:06 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:06 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:06 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 17:09:06 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 17:09:06 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:09:06 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 17:09:06 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 17:09:06 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:09:06 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 17:09:06 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:06 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:06 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:09:06 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:09:06 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 17:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:06 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:06 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:06 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:09:06 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:06 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 17:09:06 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 17:09:06 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:06 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:06 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@71a0d8cb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@937df75, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@332f7f0d, socketFactory=javax.net.DefaultSocketFactory@733e48bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:09:06 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:09:06 INFO WorkspaceExplorerServiceImpl:188 - end time - 50 msc 0 sec -2016-05-03 17:09:06 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 17:09:06 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:09:06 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 17:09:06 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 17:09:06 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1872723}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:06 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1500105, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:06 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:09:06 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:06 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:06 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:06 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1872724}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:06 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1872724}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:06 DEBUG command:56 - Command execution completed -2016-05-03 17:09:06 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1872724}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:06 DEBUG command:56 - Command execution completed -2016-05-03 17:09:06 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1872724}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:06 DEBUG command:56 - Command execution completed -2016-05-03 17:09:06 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 17:09:06 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1872724}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:06 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1556946}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:06 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:06 DEBUG command:56 - Command execution completed -2016-05-03 17:09:06 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1872724}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1554605, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 17:09:06 DEBUG command:56 - Command execution completed -2016-05-03 17:09:06 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1872724}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:06 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:09:06 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:06 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:09:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:09:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:09:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:06 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:09:06 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:09:06 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 17:09:06 DEBUG ServiceEngine:306 - get() - start -2016-05-03 17:09:06 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:06 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:06 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 17:09:06 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 17:09:06 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:09:06 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 17:09:06 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 17:09:06 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:09:06 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 17:09:06 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:06 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:06 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:09:06 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:09:06 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:09:07 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:09:07 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:07 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:07 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:07 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@71a0d8cb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@937df75, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@332f7f0d, socketFactory=javax.net.DefaultSocketFactory@733e48bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:09:07 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:09:07 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:09:07 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1872725}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1262007, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:07 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:09:07 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:07 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:07 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:07 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1556947}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1651765, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 17:09:07 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1872726}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1872726}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 DEBUG command:56 - Command execution completed -2016-05-03 17:09:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1872726}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 DEBUG command:56 - Command execution completed -2016-05-03 17:09:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1872726}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 DEBUG command:56 - Command execution completed -2016-05-03 17:09:07 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 17:09:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1872726}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 DEBUG command:56 - Command execution completed -2016-05-03 17:09:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1872726}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 DEBUG command:56 - Command execution completed -2016-05-03 17:09:07 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1872726}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:261148}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:261147}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1623098, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1412248, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 17:09:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 17:09:07 DEBUG query:56 - Query completed -2016-05-03 17:09:07 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 17:09:07 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:261147} -2016-05-03 17:09:07 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1872724}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:09:07 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1556946} -2016-05-03 17:09:07 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1872724} -2016-05-03 17:09:07 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1872723} -2016-05-03 17:09:07 INFO MongoIO:508 - Mongo has been closed -2016-05-03 17:09:07 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 17:09:07 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 17:09:07 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 17:09:07 DEBUG connection:56 - Closing connection connectionId{localValue:4} -2016-05-03 17:09:07 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2143153}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1060209, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 17:09:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:09:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:09:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:09:07 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:09:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:09:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:09:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:07 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:09:07 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:09:07 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 17:09:07 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 17:09:07 INFO WorkspaceExplorerServiceImpl:188 - end time - 40 msc 0 sec -2016-05-03 17:09:07 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:07 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 17:09:07 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 17:09:08 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 17:09:08 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 17:09:08 DEBUG query:56 - Query completed -2016-05-03 17:09:08 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 17:09:08 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2143153} -2016-05-03 17:09:08 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:261148} -2016-05-03 17:09:08 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1556947} -2016-05-03 17:09:08 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1872726}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:09:08 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1872726} -2016-05-03 17:09:08 INFO MongoIO:508 - Mongo has been closed -2016-05-03 17:09:08 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 17:09:08 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 17:09:08 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 17:09:08 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1872725} -2016-05-03 17:09:08 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:08 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:09:08 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:09:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:09:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:08 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:09:08 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:09:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:09:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:08 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:09:08 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:09:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:09:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:08 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:08 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:08 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:09 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 17:09:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:09:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:09:10 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:09:10 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 17:09:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:10 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:10 DEBUG ServiceEngine:193 - get() - start -2016-05-03 17:09:10 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:10 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:10 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 17:09:10 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 17:09:10 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:09:10 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 17:09:10 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 17:09:10 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:09:10 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:10 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:10 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 17:09:10 DEBUG Operation:173 - get(String) - start -2016-05-03 17:09:10 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:09:10 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:09:10 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:09:10 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:09:10 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:10 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:10 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:10 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@71a0d8cb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@937df75, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@332f7f0d, socketFactory=javax.net.DefaultSocketFactory@733e48bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:09:10 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:09:10 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:09:10 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1872727}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:261150}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1429716, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:10 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:09:10 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:10 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:10 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2457750, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:10 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:2143154}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=994531, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:10 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1556949}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1460898, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 17:09:10 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:1872728}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:14, serverValue:1872728}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG command:56 - Command execution completed -2016-05-03 17:09:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:14, serverValue:1872728}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG command:56 - Command execution completed -2016-05-03 17:09:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:14, serverValue:1872728}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG command:56 - Command execution completed -2016-05-03 17:09:10 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 17:09:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:14, serverValue:1872728}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG command:56 - Command execution completed -2016-05-03 17:09:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:14, serverValue:1872728}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG command:56 - Command execution completed -2016-05-03 17:09:10 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 17:09:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:14, serverValue:1872728}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG command:56 - Command execution completed -2016-05-03 17:09:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:14, serverValue:1872728}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG command:56 - Command execution completed -2016-05-03 17:09:10 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 17:09:10 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:14, serverValue:1872728}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG query:56 - Query completed -2016-05-03 17:09:10 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 17:09:10 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 17:09:10 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 17:09:10 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:14, serverValue:1872728}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG update:56 - Update completed -2016-05-03 17:09:10 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:14, serverValue:1872728}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG query:56 - Query completed -2016-05-03 17:09:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:10 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:10 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 17:09:10 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 17:09:10 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 17:09:10 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:10 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:10 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 17:09:10 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 17:09:10 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 17:09:10 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:09:10 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 17:09:10 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 17:09:10 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:09:10 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:10 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:10 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:09:10 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:09:10 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:09:10 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:09:10 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:10 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:10 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:10 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@71a0d8cb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@937df75, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@332f7f0d, socketFactory=javax.net.DefaultSocketFactory@733e48bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:09:10 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:09:10 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:09:10 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1872729}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1186286, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:10 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:09:10 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:10 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:10 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:10 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:261151}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2143155}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1387658, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1032241, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:10 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1556950}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1428928, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 17:09:10 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1872730}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1872730}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG command:56 - Command execution completed -2016-05-03 17:09:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1872730}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG command:56 - Command execution completed -2016-05-03 17:09:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1872730}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG command:56 - Command execution completed -2016-05-03 17:09:10 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 17:09:10 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 17:09:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1872730}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG command:56 - Command execution completed -2016-05-03 17:09:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1872730}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG command:56 - Command execution completed -2016-05-03 17:09:10 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 17:09:10 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1872730}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:10 DEBUG query:56 - Query completed -2016-05-03 17:09:10 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 17:09:10 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2143155} -2016-05-03 17:09:10 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:261151} -2016-05-03 17:09:10 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1872730}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:09:10 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1556950} -2016-05-03 17:09:10 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1872730} -2016-05-03 17:09:10 INFO MongoIO:508 - Mongo has been closed -2016-05-03 17:09:10 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1872729} -2016-05-03 17:09:10 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 17:09:10 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 17:09:10 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 17:09:10 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 17:09:10 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 17:09:10 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 17:09:10 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 17:09:10 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 17:09:20 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:20 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 17:09:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 17:09:20 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 17:09:20 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 17:09:21 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:21 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:09:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:09:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:09:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:21 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:09:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:09:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:09:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:21 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 17:09:21 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:2143154} -2016-05-03 17:09:21 INFO connection:71 - Closed connection [connectionId{localValue:14, serverValue:1872728}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:09:21 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:1872728} -2016-05-03 17:09:21 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1556949} -2016-05-03 17:09:21 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:261150} -2016-05-03 17:09:21 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1872727} -2016-05-03 17:09:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:09:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:09:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:09:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:09:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:09:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:09:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:21 DEBUG ServiceEngine:306 - get() - start -2016-05-03 17:09:21 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:21 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:21 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 17:09:21 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 17:09:21 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:09:21 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 17:09:21 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 17:09:21 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:09:21 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 17:09:21 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:21 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:21 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:09:21 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:09:21 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:09:21 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:09:21 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:21 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:21 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:21 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@71a0d8cb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@937df75, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@332f7f0d, socketFactory=javax.net.DefaultSocketFactory@733e48bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:09:21 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:09:21 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:09:21 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 17:09:21 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:261153}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:21 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=31673788, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:21 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:09:21 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:21 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=31.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:21 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2143161}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:21 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1243012, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=31.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:21 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 17:09:21 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1556953}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:21 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1624971, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=31.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 17:09:21 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 17:09:21 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 17:09:21 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1872732}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:21 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1516878, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:21 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=31.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 17:09:21 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1872733}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:21 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872733}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:21 DEBUG command:56 - Command execution completed -2016-05-03 17:09:21 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872733}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:21 DEBUG command:56 - Command execution completed -2016-05-03 17:09:21 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872733}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:21 DEBUG command:56 - Command execution completed -2016-05-03 17:09:21 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 17:09:21 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872733}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:21 DEBUG command:56 - Command execution completed -2016-05-03 17:09:21 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872733}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:21 DEBUG command:56 - Command execution completed -2016-05-03 17:09:21 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1872733}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:22 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=25.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 17:09:22 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=25.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 17:09:22 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=25.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 17:09:22 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 17:09:22 INFO WorkspaceExplorerServiceImpl:188 - end time - 54 msc 0 sec -2016-05-03 17:09:22 DEBUG query:56 - Query completed -2016-05-03 17:09:22 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 17:09:22 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2143161} -2016-05-03 17:09:22 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:261153} -2016-05-03 17:09:22 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1556953} -2016-05-03 17:09:22 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1872733}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:09:22 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1872733} -2016-05-03 17:09:22 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1872732} -2016-05-03 17:09:22 INFO MongoIO:508 - Mongo has been closed -2016-05-03 17:09:22 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 17:09:22 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 17:09:22 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 17:09:30 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:09:30 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:09:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:09:30 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:09:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:09:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:30 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:09:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:09:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:09:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:09:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:30 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:09:30 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:09:30 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 17:09:30 DEBUG ServiceEngine:306 - get() - start -2016-05-03 17:09:30 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:30 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:30 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 17:09:30 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 17:09:30 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:09:30 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 17:09:30 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 17:09:30 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:09:30 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 17:09:30 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:30 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:30 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:09:30 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:09:30 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:09:30 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:09:30 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:30 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:30 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:30 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@71a0d8cb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@937df75, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@332f7f0d, socketFactory=javax.net.DefaultSocketFactory@733e48bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:09:30 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:09:30 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:09:30 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:261155}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1275111, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:30 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:09:30 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:30 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:30 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2143162}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1872738}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=999542, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1210391, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:30 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:30 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1556955}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1069930, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 17:09:30 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1872739}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872739}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 DEBUG command:56 - Command execution completed -2016-05-03 17:09:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872739}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 DEBUG command:56 - Command execution completed -2016-05-03 17:09:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872739}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 DEBUG command:56 - Command execution completed -2016-05-03 17:09:30 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 17:09:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872739}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 DEBUG command:56 - Command execution completed -2016-05-03 17:09:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872739}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 DEBUG command:56 - Command execution completed -2016-05-03 17:09:30 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1872739}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:09:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:09:30 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:09:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:09:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:09:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:09:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:30 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:09:30 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:09:30 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 17:09:30 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 17:09:30 INFO WorkspaceExplorerServiceImpl:188 - end time - 45 msc 0 sec -2016-05-03 17:09:30 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:09:31 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 17:09:31 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 17:09:31 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 17:09:31 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 17:09:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 17:09:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 17:09:31 DEBUG query:56 - Query completed -2016-05-03 17:09:31 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 17:09:31 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2143162} -2016-05-03 17:09:31 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:261155} -2016-05-03 17:09:31 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1872739}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:09:31 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1556955} -2016-05-03 17:09:31 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1872739} -2016-05-03 17:09:31 INFO MongoIO:508 - Mongo has been closed -2016-05-03 17:09:31 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1872738} -2016-05-03 17:09:31 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 17:09:31 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 17:09:31 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 17:09:31 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:31 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:09:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:09:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:09:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:31 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:09:31 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:09:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:09:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:31 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:09:31 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:09:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:09:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:31 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:31 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:31 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:09:31 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 17:09:32 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:09:32 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:09:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:09:32 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:09:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:09:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:32 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:09:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:09:32 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:09:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:09:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:32 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:09:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:09:32 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:09:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:09:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:32 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:09:32 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:09:32 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:09:32 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 17:09:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:09:33 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 17:09:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:09:33 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-03 17:09:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:33 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:09:33 DEBUG ServiceEngine:193 - get() - start -2016-05-03 17:09:33 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:33 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:33 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 17:09:33 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 17:09:33 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:09:33 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 17:09:33 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 17:09:33 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:09:33 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:33 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:33 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 17:09:33 DEBUG Operation:173 - get(String) - start -2016-05-03 17:09:33 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:09:33 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:09:33 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:09:33 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:09:33 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:33 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:33 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:33 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@71a0d8cb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@937df75, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@332f7f0d, socketFactory=javax.net.DefaultSocketFactory@733e48bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:09:33 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:09:33 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:09:33 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1872740}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1152279, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:33 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:09:33 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:33 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:33 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:33 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:261156}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1393680, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:33 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2143163}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=800870, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:33 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1556956}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1258593, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 17:09:33 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1872741}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG command:56 - Command execution completed -2016-05-03 17:09:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG command:56 - Command execution completed -2016-05-03 17:09:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG command:56 - Command execution completed -2016-05-03 17:09:33 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 17:09:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG command:56 - Command execution completed -2016-05-03 17:09:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG command:56 - Command execution completed -2016-05-03 17:09:33 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 17:09:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG command:56 - Command execution completed -2016-05-03 17:09:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG command:56 - Command execution completed -2016-05-03 17:09:33 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 17:09:33 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1872741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG query:56 - Query completed -2016-05-03 17:09:33 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 17:09:33 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 17:09:33 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 17:09:33 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1872741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG update:56 - Update completed -2016-05-03 17:09:33 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1872741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG query:56 - Query completed -2016-05-03 17:09:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:09:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:09:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:09:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:09:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:09:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:09:33 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:09:33 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-03 17:09:33 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 17:09:33 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 17:09:33 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:33 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:33 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 17:09:33 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 17:09:33 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 17:09:33 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:09:33 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 17:09:33 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 17:09:33 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:09:33 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:09:33 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:09:33 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:09:33 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:09:33 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:09:33 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:09:33 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:33 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:33 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:33 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@71a0d8cb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@937df75, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@332f7f0d, socketFactory=javax.net.DefaultSocketFactory@733e48bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:09:33 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:09:33 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:09:33 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1872742}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1187583, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:33 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:09:33 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:33 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:09:33 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:33 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:261157}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=980510, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:33 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2143164}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1017331, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:09:33 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1556957}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1268801, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:09:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 17:09:33 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1872743}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG command:56 - Command execution completed -2016-05-03 17:09:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG command:56 - Command execution completed -2016-05-03 17:09:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG command:56 - Command execution completed -2016-05-03 17:09:33 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 17:09:33 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 17:09:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG command:56 - Command execution completed -2016-05-03 17:09:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG command:56 - Command execution completed -2016-05-03 17:09:33 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 17:09:33 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1872743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:09:33 DEBUG query:56 - Query completed -2016-05-03 17:09:33 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 17:09:33 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2143164} -2016-05-03 17:09:33 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:261157} -2016-05-03 17:09:33 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1556957} -2016-05-03 17:09:33 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1872743}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:09:33 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1872743} -2016-05-03 17:09:33 INFO MongoIO:508 - Mongo has been closed -2016-05-03 17:09:33 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 17:09:33 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 17:09:33 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 17:09:33 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 17:09:33 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 17:09:33 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 17:09:33 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 17:09:33 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 17:09:33 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1872742} -2016-05-03 17:09:36 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2143163} -2016-05-03 17:09:36 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1872741}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:09:36 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1556956} -2016-05-03 17:09:36 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:261156} -2016-05-03 17:09:36 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1872741} -2016-05-03 17:09:36 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1872740} -2016-05-03 17:09:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:09:37 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 17:09:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:09:41 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 17:09:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:09:41 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[TabularListParameter [value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=h1|h2, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]], hasImage=false]] -2016-05-03 17:09:41 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 17:09:41 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 17:09:41 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 17:09:41 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 17:09:41 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 17:09:41 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 17:09:41 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 17:09:41 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 17:09:41 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 17:09:41 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 17:09:41 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 17:09:41 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 17:09:41 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 17:09:41 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 17:09:41 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 17:09:41 DEBUG SClient4WPS:684 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 17:09:41 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 17:09:41 DEBUG WPS2SM:92 - WPS type: -2016-05-03 17:09:41 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 17:09:41 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 17:09:41 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 17:09:41 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 17:09:41 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 17:09:41 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 17:09:41 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 17:09:41 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 17:09:41 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 17:09:41 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 17:09:41 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 17:09:41 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 17:09:41 DEBUG SClient4WPS:684 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 17:09:41 DEBUG SClient4WPS:692 - UserInputs= key:HCAF_Table_List, value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 17:09:41 DEBUG SClient4WPS:692 - UserInputs= key:HCAF_Table_Names, value=h1|h2 -2016-05-03 17:09:41 DEBUG SClient4WPS:753 - Configuring Complex: HCAF_Table_List to: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 17:09:41 DEBUG SClient4WPS:736 - Configuring Literal: HCAF_Table_Names to: h1|h2 -2016-05-03 17:09:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 17:09:41 DEBUG SClient4WPS:384 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - - - HCAF_Table_List - - - - HCAF_Table_Names - - h1|h2 - - - - - - - non_deterministic_output - - - - -2016-05-03 17:09:41 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-03 17:09:41 DEBUG SClient4WPS:403 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=902b1c48-82d6-400f-91e9-56d1c0dfa429 -2016-05-03 17:09:41 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:09:41 DEBUG SClient4WPS:773 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=902b1c48-82d6-400f-91e9-56d1c0dfa429 -2016-05-03 17:09:41 DEBUG SClient4WPS:698 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=902b1c48-82d6-400f-91e9-56d1c0dfa429 -2016-05-03 17:09:41 DEBUG SClient4WPS:709 - ComputationId: ComputationId [id=902b1c48-82d6-400f-91e9-56d1c0dfa429, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=902b1c48-82d6-400f-91e9-56d1c0dfa429] -2016-05-03 17:09:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:09:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:09:51 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:09:51 DEBUG SClient4WPS:789 - GetComputationStatus(): ComputationId=ComputationId [id=902b1c48-82d6-400f-91e9-56d1c0dfa429, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=902b1c48-82d6-400f-91e9-56d1c0dfa429] -2016-05-03 17:09:51 INFO StatWPSClientSession:114 - CONNECT -2016-05-03 17:09:51 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-03 17:09:51 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=902b1c48-82d6-400f-91e9-56d1c0dfa429 -2016-05-03 17:09:51 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 17:09:51 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-03 17:09:51 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-03 17:09:51 DEBUG SClient4WPS:805 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - - java.lang.RuntimeException: Error in creating the table for wps_af0817245c9f491599958b7368ebfc8f: Input table is not compliant to the required structure - - - - - -2016-05-03 17:09:51 DEBUG SClient4WPS:850 - WPS FAILURE: - - java.lang.RuntimeException: Error in creating the table for wps_af0817245c9f491599958b7368ebfc8f: Input table is not compliant to the required structure - - OR PAUSED: null -2016-05-03 17:09:51 DEBUG SClient4WPS:888 - ComputationStatus: ComputationStatus [percentage=100.0, status=FAILED, endDate=null, message=null, errResource=null] -2016-05-03 17:10:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:10:32 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:11:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:11:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:12:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:12:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:13:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:13:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:14:19 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 17:14:19 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 17:14:19 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 17:14:19 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 17:14:19 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 17:14:19 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:14:19 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 17:14:19 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@272b3897 -2016-05-03 17:14:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:19 INFO ASLSession:352 - Logging the entrance -2016-05-03 17:14:19 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 17:14:19 DEBUG TemplateModel:83 - 2016-05-03 17:14:19, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 17:14:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:14:19 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 17:14:21 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 17:14:21 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 17:14:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:14:21 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 17:14:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:14:21 INFO ASLSession:352 - Logging the entrance -2016-05-03 17:14:21 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 17:14:21 DEBUG TemplateModel:83 - 2016-05-03 17:14:21, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 17:14:21 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:14:21 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 17:14:21 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 115 ms -2016-05-03 17:14:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 17:14:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 17:14:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 17:14:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 17:14:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 17:14:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 17:14:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 17:14:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 17:14:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 17:14:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 17:14:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 17:14:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 17:14:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 17:14:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 17:14:21 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 17:14:21 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:14:21 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 17:14:21 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@2fa6805b -2016-05-03 17:14:21 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@22ebe1a2 -2016-05-03 17:14:21 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@2ae570e4 -2016-05-03 17:14:21 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@4ae5680 -2016-05-03 17:14:21 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 107 ms -2016-05-03 17:14:21 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 17:14:22 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 17:14:22 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 17:14:22 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 17:14:22 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 17:14:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:14:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:14:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 17:14:22 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 17:14:22 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 17:14:22 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 17:14:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:22 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:14:22 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:14:22 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 17:14:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 22 ms -2016-05-03 17:14:22 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 17:14:22 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:14:22 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 17:14:22 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 17:14:22 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 17:14:22 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 17:14:22 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 17:14:22 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 17:14:22 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 17:14:22 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 17:14:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:14:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:14:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 17:14:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 72 ms -2016-05-03 17:14:22 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 17:14:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:22 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 17:14:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:22 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 17:14:22 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 17:14:22 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 17:14:22 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 17:14:22 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 17:14:22 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 17:14:22 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 17:14:22 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 17:14:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:23 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:14:23 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 17:14:23 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 17:14:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 17:14:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:24 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:14:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 17:14:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:24 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:14:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 17:14:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:24 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:14:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 17:14:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:25 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 17:14:25 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 17:14:25 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 17:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:14:25 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:14:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:25 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 17:14:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:14:25 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:14:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:25 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 17:14:25 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 17:14:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 17:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:14:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:14:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:14:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:14:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:25 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 17:14:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-03 17:14:25 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 17:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 17:14:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:14:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 17:14:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 17:14:25 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 17:14:25 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 17:14:25 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 17:14:25 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 17:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 17:14:25 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 17:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 17:14:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:14:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:14:25 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 17:14:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-03 17:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 17:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 17:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 17:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:14:25 INFO WorkspaceExplorerServiceImpl:188 - end time - 293 msc 0 sec -2016-05-03 17:14:25 INFO WorkspaceExplorerServiceImpl:188 - end time - 269 msc 0 sec -2016-05-03 17:14:25 INFO WorkspaceExplorerServiceImpl:188 - end time - 186 msc 0 sec -2016-05-03 17:14:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:14:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:14:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:14:41 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 17:14:41 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:14:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 17:14:41 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 17:14:41 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 17:14:41 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 17:14:41 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 17:14:41 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 17:14:41 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 17:14:41 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:14:41 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 17:14:41 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 17:14:41 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 17:14:41 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 17:14:41 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 17:14:41 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 17:14:41 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 17:14:41 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 17:14:41 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 17:14:41 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 17:14:41 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 17:14:41 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 17:14:41 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 17:14:41 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 17:14:41 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 17:14:41 DEBUG SClient4WPS:652 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 17:14:41 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 17:14:41 DEBUG WPS2SM:92 - WPS type: -2016-05-03 17:14:41 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 17:14:41 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 17:14:41 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 17:14:41 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 17:14:41 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 17:14:41 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 17:14:41 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 17:14:41 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 17:14:41 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 17:14:41 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 17:14:41 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 17:14:41 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 17:14:41 DEBUG SClient4WPS:652 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 17:14:41 DEBUG SClient4WPS:656 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 17:14:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:14:41 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:14:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:14:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:14:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:41 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 17:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 17:14:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:14:41 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:14:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:14:41 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:14:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:14:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:14:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:14:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:14:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:14:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:14:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:41 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 17:14:41 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 17:14:42 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 17:14:42 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 17:14:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 17:14:42 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 17:14:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 17:14:42 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 17:14:42 INFO WorkspaceExplorerServiceImpl:142 - end time - 190 msc 0 sec -2016-05-03 17:14:42 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 17:14:47 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:47 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:14:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:47 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:14:47 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:14:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:14:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:47 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:47 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:47 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 17:14:48 DEBUG ServiceEngine:306 - get() - start -2016-05-03 17:14:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:14:48 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:14:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:14:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:48 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:48 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:48 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 17:14:48 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 17:14:48 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:14:48 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 17:14:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:14:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:14:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:14:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:48 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 17:14:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:48 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:48 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:14:48 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 17:14:48 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:48 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:48 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:14:48 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:14:48 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:14:48 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:48 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 17:14:48 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 17:14:48 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:14:48 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:48 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 17:14:48 INFO WorkspaceExplorerServiceImpl:188 - end time - 58 msc 0 sec -2016-05-03 17:14:48 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 17:14:48 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 17:14:48 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:48 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:48 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c94b5f77, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5af2ee4d, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2fb2fe1, socketFactory=javax.net.DefaultSocketFactory@39045e4e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:14:48 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:14:48 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:14:48 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1872795}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:261212}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1589720, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:48 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1375846, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:48 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:14:48 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:48 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:48 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:48 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2143218}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1015658, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:48 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1872796}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1872796}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 DEBUG command:56 - Command execution completed -2016-05-03 17:14:48 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1872796}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 DEBUG command:56 - Command execution completed -2016-05-03 17:14:48 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1872796}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 DEBUG command:56 - Command execution completed -2016-05-03 17:14:48 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 17:14:48 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1872796}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 DEBUG command:56 - Command execution completed -2016-05-03 17:14:48 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1872796}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1557012}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 DEBUG command:56 - Command execution completed -2016-05-03 17:14:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2726164, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-03 17:14:48 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1872796}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-03 17:14:49 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:14:49 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:14:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:14:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:14:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:14:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:49 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:14:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:14:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:14:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:14:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:49 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:14:49 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:14:49 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 17:14:49 DEBUG ServiceEngine:306 - get() - start -2016-05-03 17:14:49 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:49 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:49 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 17:14:49 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 17:14:49 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:14:49 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 17:14:49 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 17:14:49 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:14:49 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 17:14:49 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:49 DEBUG query:56 - Query completed -2016-05-03 17:14:49 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:49 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:14:49 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:14:49 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:14:49 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 17:14:49 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:14:49 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:49 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:49 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:261212} -2016-05-03 17:14:49 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1557012} -2016-05-03 17:14:49 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2143218} -2016-05-03 17:14:49 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:49 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1872796}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:14:49 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c94b5f77, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5af2ee4d, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2fb2fe1, socketFactory=javax.net.DefaultSocketFactory@39045e4e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:14:49 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1872796} -2016-05-03 17:14:49 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:14:49 INFO MongoIO:508 - Mongo has been closed -2016-05-03 17:14:49 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 17:14:49 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1872795} -2016-05-03 17:14:49 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 17:14:49 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 17:14:49 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:14:49 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1872797}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=4414078, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:49 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:14:49 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:49 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:49 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:49 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2143219}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=986792, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:49 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:261213}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1519018, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:14:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:14:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:14:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:14:49 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:14:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:14:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:49 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1557013}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2636304, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}] -2016-05-03 17:14:49 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1872798}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1872798}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:14:49 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:14:49 DEBUG command:56 - Command execution completed -2016-05-03 17:14:49 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1872798}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 DEBUG command:56 - Command execution completed -2016-05-03 17:14:49 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1872798}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 DEBUG command:56 - Command execution completed -2016-05-03 17:14:49 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 17:14:49 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1872798}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 DEBUG command:56 - Command execution completed -2016-05-03 17:14:49 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1872798}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 DEBUG command:56 - Command execution completed -2016-05-03 17:14:49 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1872798}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:49 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 17:14:49 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 17:14:49 INFO WorkspaceExplorerServiceImpl:188 - end time - 48 msc 0 sec -2016-05-03 17:14:49 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:49 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 17:14:49 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 17:14:49 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 17:14:49 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 17:14:49 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:14:49 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:14:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:14:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:14:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:14:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:49 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:14:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:49 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:14:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:49 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:14:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:14:49 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:14:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:14:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:49 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:14:49 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:14:49 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:14:49 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 17:14:50 DEBUG query:56 - Query completed -2016-05-03 17:14:50 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 17:14:50 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2143219} -2016-05-03 17:14:50 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:261213} -2016-05-03 17:14:50 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1872798}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:14:50 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1872798} -2016-05-03 17:14:50 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1557013} -2016-05-03 17:14:50 INFO MongoIO:508 - Mongo has been closed -2016-05-03 17:14:50 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 17:14:50 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 17:14:50 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1872797} -2016-05-03 17:14:50 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 17:14:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:14:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:14:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:14:50 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 17:14:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:50 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:14:50 DEBUG ServiceEngine:193 - get() - start -2016-05-03 17:14:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:50 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:50 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 17:14:50 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 17:14:50 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:14:50 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 17:14:50 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 17:14:50 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:14:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:50 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:50 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 17:14:50 DEBUG Operation:173 - get(String) - start -2016-05-03 17:14:50 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:14:50 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:14:50 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:14:50 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:14:50 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:50 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:50 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:50 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c94b5f77, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5af2ee4d, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2fb2fe1, socketFactory=javax.net.DefaultSocketFactory@39045e4e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:14:50 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:14:50 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:14:50 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:261214}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1185677, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:50 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:14:50 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:50 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:50 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1872799}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2143222}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=952461, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=4767526, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:50 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:50 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1557014}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1182825, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 17:14:50 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1872800}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1872800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG command:56 - Command execution completed -2016-05-03 17:14:50 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1872800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG command:56 - Command execution completed -2016-05-03 17:14:50 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1872800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG command:56 - Command execution completed -2016-05-03 17:14:50 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 17:14:50 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1872800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG command:56 - Command execution completed -2016-05-03 17:14:50 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1872800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG command:56 - Command execution completed -2016-05-03 17:14:50 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 17:14:50 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1872800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG command:56 - Command execution completed -2016-05-03 17:14:50 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1872800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG command:56 - Command execution completed -2016-05-03 17:14:50 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 17:14:50 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1872800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG query:56 - Query completed -2016-05-03 17:14:50 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 17:14:50 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 17:14:50 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 17:14:50 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1872800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG update:56 - Update completed -2016-05-03 17:14:50 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1872800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:50 DEBUG query:56 - Query completed -2016-05-03 17:14:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:50 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 17:14:50 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 17:14:50 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 17:14:50 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 17:14:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:50 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:50 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 17:14:50 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 17:14:50 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 17:14:50 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:14:50 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 17:14:50 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 17:14:50 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:14:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:50 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:50 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:14:50 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:14:50 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:14:50 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:14:50 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:50 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:50 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:50 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c94b5f77, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5af2ee4d, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2fb2fe1, socketFactory=javax.net.DefaultSocketFactory@39045e4e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:14:50 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:14:50 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:14:51 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1872801}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1357217, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:51 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:14:51 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:51 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:261215}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:51 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1171572, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:51 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:2143223}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=809965, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:51 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:1557015}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1197044, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 17:14:51 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1872802}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1872802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 DEBUG command:56 - Command execution completed -2016-05-03 17:14:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1872802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 DEBUG command:56 - Command execution completed -2016-05-03 17:14:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1872802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 DEBUG command:56 - Command execution completed -2016-05-03 17:14:51 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 17:14:51 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 17:14:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1872802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 DEBUG command:56 - Command execution completed -2016-05-03 17:14:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1872802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 DEBUG command:56 - Command execution completed -2016-05-03 17:14:51 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 17:14:51 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1872802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 DEBUG query:56 - Query completed -2016-05-03 17:14:51 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 17:14:51 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:2143223} -2016-05-03 17:14:51 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:261215} -2016-05-03 17:14:51 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:1557015} -2016-05-03 17:14:51 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1872802}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:14:51 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1872802} -2016-05-03 17:14:51 INFO MongoIO:508 - Mongo has been closed -2016-05-03 17:14:51 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 17:14:51 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1872801} -2016-05-03 17:14:51 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 17:14:51 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 17:14:51 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 17:14:51 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 17:14:51 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 17:14:51 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 17:14:51 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 17:14:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 17:14:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 17:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:52 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:14:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:14:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:52 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 17:14:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 17:14:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:52 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:14:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:14:52 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:14:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:14:52 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:14:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:52 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1872800}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:14:52 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1872800} -2016-05-03 17:14:52 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2143222} -2016-05-03 17:14:52 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:261214} -2016-05-03 17:14:52 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1557014} -2016-05-03 17:14:52 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1872799} -2016-05-03 17:14:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:14:52 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:14:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:14:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:14:52 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 17:14:52 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 17:14:52 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 17:14:52 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 17:14:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 17:14:52 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 17:14:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 17:14:52 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 17:14:52 INFO WorkspaceExplorerServiceImpl:142 - end time - 185 msc 0 sec -2016-05-03 17:14:52 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 17:14:56 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:56 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:14:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:14:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:14:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:56 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:14:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:14:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:14:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:56 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:56 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:56 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 17:14:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:14:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:14:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:14:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:14:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:56 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:56 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:56 DEBUG ServiceEngine:306 - get() - start -2016-05-03 17:14:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:56 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 17:14:56 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 17:14:56 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:14:56 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 17:14:56 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 17:14:56 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:14:56 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 17:14:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:56 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:14:56 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:14:56 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:14:56 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:14:56 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:56 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:56 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:56 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c94b5f77, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5af2ee4d, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2fb2fe1, socketFactory=javax.net.DefaultSocketFactory@39045e4e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:14:56 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:14:56 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:14:56 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 17:14:56 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 17:14:56 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:261217}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1261901, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:56 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:14:56 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:56 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:56 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1872806}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1475081, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:56 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:56 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2143224}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:56 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=825552, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:56 INFO WorkspaceExplorerServiceImpl:188 - end time - 49 msc 0 sec -2016-05-03 17:14:56 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 17:14:56 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1557016}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:14:56 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:14:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1966943, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 17:14:56 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 17:14:56 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 17:14:56 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1872808}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872808}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:56 DEBUG command:56 - Command execution completed -2016-05-03 17:14:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872808}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:56 DEBUG command:56 - Command execution completed -2016-05-03 17:14:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872808}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:56 DEBUG command:56 - Command execution completed -2016-05-03 17:14:56 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 17:14:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872808}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:57 DEBUG command:56 - Command execution completed -2016-05-03 17:14:57 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1872808}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:57 DEBUG command:56 - Command execution completed -2016-05-03 17:14:57 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1872808}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 17:14:57 DEBUG query:56 - Query completed -2016-05-03 17:14:57 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 17:14:57 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2143224} -2016-05-03 17:14:57 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1872808}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:14:57 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:261217} -2016-05-03 17:14:57 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1872808} -2016-05-03 17:14:57 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1557016} -2016-05-03 17:14:57 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1872806} -2016-05-03 17:14:57 INFO MongoIO:508 - Mongo has been closed -2016-05-03 17:14:57 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 17:14:57 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 17:14:57 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 17:14:57 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:14:57 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:14:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:14:57 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:14:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:14:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:57 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:14:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:14:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:57 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:14:57 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:14:57 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 17:14:57 DEBUG ServiceEngine:306 - get() - start -2016-05-03 17:14:57 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:57 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:57 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 17:14:57 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 17:14:57 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:14:57 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 17:14:57 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 17:14:57 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:14:57 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 17:14:57 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:57 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:57 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:14:57 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:14:57 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:14:57 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:14:57 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:57 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:57 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:57 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c94b5f77, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5af2ee4d, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2fb2fe1, socketFactory=javax.net.DefaultSocketFactory@39045e4e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:14:57 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:14:57 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:14:58 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:261218}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1290743, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:58 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:14:58 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:58 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:58 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1872809}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2143225}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1136655, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2524102, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:58 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:14:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:14:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:14:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:14:58 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:14:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:14:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:58 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:14:58 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 17:14:58 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1557017}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1361005, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 17:14:58 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1872810}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872810}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 DEBUG command:56 - Command execution completed -2016-05-03 17:14:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872810}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 DEBUG command:56 - Command execution completed -2016-05-03 17:14:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872810}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 17:14:58 DEBUG command:56 - Command execution completed -2016-05-03 17:14:58 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 17:14:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872810}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 DEBUG command:56 - Command execution completed -2016-05-03 17:14:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1872810}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 DEBUG command:56 - Command execution completed -2016-05-03 17:14:58 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1872810}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 17:14:58 INFO WorkspaceExplorerServiceImpl:188 - end time - 41 msc 0 sec -2016-05-03 17:14:58 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 17:14:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 17:14:58 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 17:14:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 17:14:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 17:14:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 17:14:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 17:14:58 DEBUG query:56 - Query completed -2016-05-03 17:14:58 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 17:14:58 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2143225} -2016-05-03 17:14:58 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:261218} -2016-05-03 17:14:58 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1557017} -2016-05-03 17:14:58 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1872810}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:14:58 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1872810} -2016-05-03 17:14:58 INFO MongoIO:508 - Mongo has been closed -2016-05-03 17:14:58 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 17:14:58 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 17:14:58 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1872809} -2016-05-03 17:14:58 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 17:14:58 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:14:58 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:14:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:14:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:14:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:58 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:14:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:14:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:14:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:14:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:58 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:14:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:14:58 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:14:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:14:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:58 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:14:58 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:14:58 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:14:58 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 17:14:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:14:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:14:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:14:59 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-03 17:14:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:59 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:14:59 DEBUG ServiceEngine:193 - get() - start -2016-05-03 17:14:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:59 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 17:14:59 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 17:14:59 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:14:59 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 17:14:59 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 17:14:59 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:14:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:59 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 17:14:59 DEBUG Operation:173 - get(String) - start -2016-05-03 17:14:59 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:14:59 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:14:59 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:14:59 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:14:59 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:59 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:59 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:59 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c94b5f77, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5af2ee4d, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2fb2fe1, socketFactory=javax.net.DefaultSocketFactory@39045e4e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:14:59 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:14:59 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:14:59 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1872811}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1328955, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:59 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:14:59 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:59 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:59 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:59 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:261219}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2143226}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1229042, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2503631, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:59 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1557019}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1605079, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:14:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 17:14:59 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1872812}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872812}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG command:56 - Command execution completed -2016-05-03 17:14:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872812}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG command:56 - Command execution completed -2016-05-03 17:14:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872812}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG command:56 - Command execution completed -2016-05-03 17:14:59 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 17:14:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872812}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG command:56 - Command execution completed -2016-05-03 17:14:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872812}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG command:56 - Command execution completed -2016-05-03 17:14:59 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 17:14:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872812}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG command:56 - Command execution completed -2016-05-03 17:14:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1872812}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG command:56 - Command execution completed -2016-05-03 17:14:59 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 17:14:59 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1872812}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG query:56 - Query completed -2016-05-03 17:14:59 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 17:14:59 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 17:14:59 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 17:14:59 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1872812}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG update:56 - Update completed -2016-05-03 17:14:59 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1872812}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:14:59 DEBUG query:56 - Query completed -2016-05-03 17:14:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:14:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:14:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:14:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:14:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:14:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:14:59 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 17:14:59 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-03 17:14:59 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 17:14:59 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 17:14:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:59 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 17:14:59 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 17:14:59 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 17:14:59 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 17:14:59 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 17:14:59 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 17:14:59 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 17:14:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 17:14:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 17:14:59 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 17:14:59 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 17:14:59 DEBUG MongoIO:77 - open mongo connection -2016-05-03 17:14:59 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 17:14:59 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:59 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:14:59 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:14:59 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c94b5f77, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5af2ee4d, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2fb2fe1, socketFactory=javax.net.DefaultSocketFactory@39045e4e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 17:14:59 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 17:14:59 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 17:15:00 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:261220}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1000629, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:15:00 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 17:15:00 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:15:00 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 17:15:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:15:00 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1872813}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2143227}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1709989, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:15:00 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:15:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1026350, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:15:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 17:15:00 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1557020}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1143909, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 17:15:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 17:15:00 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1872814}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872814}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 DEBUG command:56 - Command execution completed -2016-05-03 17:15:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872814}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 DEBUG command:56 - Command execution completed -2016-05-03 17:15:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872814}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 DEBUG command:56 - Command execution completed -2016-05-03 17:15:00 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 17:15:00 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 17:15:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872814}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 DEBUG command:56 - Command execution completed -2016-05-03 17:15:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1872814}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 DEBUG command:56 - Command execution completed -2016-05-03 17:15:00 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 17:15:00 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1872814}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:15:00 DEBUG query:56 - Query completed -2016-05-03 17:15:00 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 17:15:00 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2143227} -2016-05-03 17:15:00 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:261220} -2016-05-03 17:15:00 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1872814}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:15:00 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1557020} -2016-05-03 17:15:00 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1872814} -2016-05-03 17:15:00 INFO MongoIO:508 - Mongo has been closed -2016-05-03 17:15:00 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1872813} -2016-05-03 17:15:00 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 17:15:00 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 17:15:00 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 17:15:00 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 17:15:00 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 17:15:00 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 17:15:00 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 17:15:00 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 17:15:09 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 17:15:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 17:15:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 17:15:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 17:15:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 17:15:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 17:15:09 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 17:15:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 17:15:14 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2143226} -2016-05-03 17:15:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:15:14 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:15:14 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:261219} -2016-05-03 17:15:14 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1872812}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 17:15:14 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1872812} -2016-05-03 17:15:14 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1557019} -2016-05-03 17:15:14 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1872811} -2016-05-03 17:15:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:15:18 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:15:18 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:15:18 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[TabularListParameter [value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=h1|h2, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]], hasImage=false]] -2016-05-03 17:15:18 DEBUG WPS2SM:324 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 17:15:18 DEBUG WPS2SM:330 - Max Megabytes: 1 -2016-05-03 17:15:18 DEBUG WPS2SM:206 - Default MimeType: text/xml -2016-05-03 17:15:18 DEBUG WPS2SM:207 - Default Schema: null -2016-05-03 17:15:18 DEBUG WPS2SM:208 - Default Encoding: null -2016-05-03 17:15:18 DEBUG WPS2SM:234 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 17:15:18 DEBUG WPS2SM:235 - Machter find: true -2016-05-03 17:15:18 DEBUG WPS2SM:236 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 17:15:18 DEBUG WPS2SM:238 - Machter start: 31 -2016-05-03 17:15:18 DEBUG WPS2SM:240 - Machter end: 97 -2016-05-03 17:15:18 DEBUG WPS2SM:241 - Machter Group Count: 1 -2016-05-03 17:15:18 DEBUG WPS2SM:244 - Matcher separator: | -2016-05-03 17:15:18 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 17:15:18 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 17:15:18 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 17:15:18 DEBUG SClient4WPS:684 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 17:15:18 DEBUG WPS2SM:299 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 17:15:18 DEBUG WPS2SM:92 - WPS type: -2016-05-03 17:15:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 17:15:18 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 17:15:18 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 17:15:18 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 17:15:18 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 17:15:18 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 17:15:18 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 17:15:18 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 17:15:18 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 17:15:18 DEBUG WPS2SM:338 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 17:15:18 DEBUG WPS2SM:339 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 17:15:18 DEBUG WPS2SM:340 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 17:15:18 DEBUG SClient4WPS:684 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 17:15:18 DEBUG SClient4WPS:692 - UserInputs= key:HCAF_Table_List, value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 17:15:18 DEBUG SClient4WPS:692 - UserInputs= key:HCAF_Table_Names, value=h1|h2 -2016-05-03 17:15:18 DEBUG SClient4WPS:753 - Configuring Complex: HCAF_Table_List to: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 17:15:18 DEBUG SClient4WPS:736 - Configuring Literal: HCAF_Table_Names to: h1|h2 -2016-05-03 17:15:18 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 17:15:19 DEBUG SClient4WPS:384 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - - - HCAF_Table_List - - - - HCAF_Table_Names - - h1|h2 - - - - - - - non_deterministic_output - - - - -2016-05-03 17:15:19 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-03 17:15:19 DEBUG SClient4WPS:403 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=e827dd9c-bc07-4f48-a668-024dfe8292b3 -2016-05-03 17:15:19 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:15:19 DEBUG SClient4WPS:773 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=e827dd9c-bc07-4f48-a668-024dfe8292b3 -2016-05-03 17:15:19 DEBUG SClient4WPS:698 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=e827dd9c-bc07-4f48-a668-024dfe8292b3 -2016-05-03 17:15:19 DEBUG SClient4WPS:709 - ComputationId: ComputationId [id=e827dd9c-bc07-4f48-a668-024dfe8292b3, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=e827dd9c-bc07-4f48-a668-024dfe8292b3] -2016-05-03 17:15:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:15:29 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:15:29 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:15:29 DEBUG SClient4WPS:789 - GetComputationStatus(): ComputationId=ComputationId [id=e827dd9c-bc07-4f48-a668-024dfe8292b3, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=e827dd9c-bc07-4f48-a668-024dfe8292b3] -2016-05-03 17:15:29 INFO StatWPSClientSession:114 - CONNECT -2016-05-03 17:15:29 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-03 17:15:29 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=e827dd9c-bc07-4f48-a668-024dfe8292b3 -2016-05-03 17:15:29 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 17:15:29 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-03 17:15:29 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-03 17:15:29 DEBUG SClient4WPS:805 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - - org.n52.wps.server.ExceptionReport: Error occured while parsing XML - - - - - -2016-05-03 17:15:29 DEBUG SClient4WPS:850 - WPS FAILURE: - - org.n52.wps.server.ExceptionReport: Error occured while parsing XML - - OR PAUSED: null -2016-05-03 17:15:29 DEBUG SClient4WPS:888 - ComputationStatus: ComputationStatus [percentage=100.0, status=FAILED, endDate=null, message=null, errResource=null] -2016-05-03 17:16:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:16:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:17:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:17:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:17:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:17:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:18:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:18:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:19:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:19:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:20:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:20:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:21:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:21:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:22:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:22:34 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:23:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:23:29 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:24:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:24:24 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:25:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:25:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:26:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:26:14 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:27:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:27:09 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:28:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:28:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:28:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:28:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:32:03 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 17:32:03 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 17:32:03 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 17:32:03 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 17:32:03 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 17:32:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:32:03 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 17:32:03 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@1039ea06 -2016-05-03 17:32:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:32:03 INFO ASLSession:352 - Logging the entrance -2016-05-03 17:32:03 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 17:32:03 DEBUG TemplateModel:83 - 2016-05-03 17:32:03, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 17:32:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:32:03 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 17:32:05 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 17:32:05 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 17:32:05 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:32:05 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 17:32:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:32:05 INFO ASLSession:352 - Logging the entrance -2016-05-03 17:32:05 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 17:32:05 DEBUG TemplateModel:83 - 2016-05-03 17:32:05, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 17:32:05 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:32:05 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 17:32:05 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 157 ms -2016-05-03 17:32:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 17:32:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 17:32:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 17:32:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 17:32:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 17:32:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 17:32:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 17:32:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 17:32:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 17:32:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 17:32:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 17:32:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 17:32:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 17:32:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 17:32:05 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 17:32:05 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:32:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 17:32:05 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@38815cb9 -2016-05-03 17:32:05 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@1eb0737e -2016-05-03 17:32:05 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@28481361 -2016-05-03 17:32:05 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@205a4885 -2016-05-03 17:32:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 96 ms -2016-05-03 17:32:05 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 17:32:05 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 17:32:05 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 17:32:05 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 17:32:05 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 17:32:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:32:05 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:32:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 17:32:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 24 ms -2016-05-03 17:32:05 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 17:32:05 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:32:05 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 17:32:05 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 17:32:06 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 17:32:06 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 17:32:06 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 17:32:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:32:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:32:06 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:32:06 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 17:32:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:32:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:32:06 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 17:32:06 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 17:32:06 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 17:32:06 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 17:32:06 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 17:32:06 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 17:32:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 17:32:06 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:32:06 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 17:32:06 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 60 ms -2016-05-03 17:32:06 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 17:32:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:32:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:32:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:32:06 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 17:32:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:32:06 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 17:32:06 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:32:06 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 17:32:07 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 17:32:07 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 17:32:07 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 17:32:07 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 17:32:07 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 17:32:07 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 17:32:07 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 17:32:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:32:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:32:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:32:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:32:07 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 17:32:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 17:32:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:32:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:32:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:32:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:32:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:32:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:32:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:32:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:32:08 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:32:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 17:32:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:32:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:32:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:32:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:32:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:32:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:32:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:32:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:32:09 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:32:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 17:32:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:32:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:32:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:32:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:32:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:32:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:32:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:32:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:32:09 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:32:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 17:32:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:32:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:32:10 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 17:32:10 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 17:32:10 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 17:32:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:32:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:32:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:32:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:32:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:32:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:32:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:32:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:32:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:32:10 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 17:32:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:32:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:32:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:32:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:32:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:32:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:32:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:32:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:32:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:32:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:32:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:32:10 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 17:32:10 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 17:32:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:32:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:32:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:32:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:32:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:32:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:32:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:32:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:32:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:32:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:32:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:32:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:32:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:32:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:32:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:32:10 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 17:32:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 30 ms -2016-05-03 17:32:10 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 17:32:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:32:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:32:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 17:32:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:32:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:32:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 17:32:10 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 17:32:10 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 17:32:10 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 17:32:10 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 17:32:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:32:10 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 17:32:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:32:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:32:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:32:10 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 17:32:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 22 ms -2016-05-03 17:32:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:32:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:32:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:32:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:32:10 INFO WorkspaceExplorerServiceImpl:188 - end time - 308 msc 0 sec -2016-05-03 17:32:10 INFO WorkspaceExplorerServiceImpl:188 - end time - 238 msc 0 sec -2016-05-03 17:32:10 INFO WorkspaceExplorerServiceImpl:188 - end time - 161 msc 0 sec -2016-05-03 17:32:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:32:12 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:32:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:32:12 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 17:32:12 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:32:12 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 17:32:12 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 17:32:12 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 17:32:12 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 17:32:12 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 17:32:12 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 17:32:12 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 17:32:12 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:32:12 DEBUG WPS2SM:353 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 17:32:12 DEBUG WPS2SM:359 - Max Megabytes: 1 -2016-05-03 17:32:12 DEBUG WPS2SM:235 - Default MimeType: text/xml -2016-05-03 17:32:12 DEBUG WPS2SM:236 - Default Schema: null -2016-05-03 17:32:12 DEBUG WPS2SM:237 - Default Encoding: null -2016-05-03 17:32:12 DEBUG WPS2SM:263 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 17:32:12 DEBUG WPS2SM:264 - Machter find: true -2016-05-03 17:32:12 DEBUG WPS2SM:265 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 17:32:12 DEBUG WPS2SM:267 - Machter start: 31 -2016-05-03 17:32:12 DEBUG WPS2SM:269 - Machter end: 97 -2016-05-03 17:32:12 DEBUG WPS2SM:270 - Machter Group Count: 1 -2016-05-03 17:32:12 DEBUG WPS2SM:273 - Matcher separator: | -2016-05-03 17:32:12 DEBUG WPS2SM:367 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 17:32:12 DEBUG WPS2SM:368 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 17:32:12 DEBUG WPS2SM:369 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 17:32:12 DEBUG SClient4WPS:652 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 17:32:12 DEBUG WPS2SM:328 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 17:32:12 DEBUG WPS2SM:92 - WPS type: -2016-05-03 17:32:12 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 17:32:12 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 17:32:12 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 17:32:12 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 17:32:12 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 17:32:12 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 17:32:12 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 17:32:12 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 17:32:12 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 17:32:12 DEBUG WPS2SM:367 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 17:32:12 DEBUG WPS2SM:368 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 17:32:12 DEBUG WPS2SM:369 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 17:32:12 DEBUG SClient4WPS:652 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 17:32:12 DEBUG SClient4WPS:656 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 17:32:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:32:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:32:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:32:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:32:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:32:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:32:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:32:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:32:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:32:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:32:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:32:12 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:32:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:32:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:32:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:32:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:32:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:32:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:32:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:32:12 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 17:32:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:32:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 17:32:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:32:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:32:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:32:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:32:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:32:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:32:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:32:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:32:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:32:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:32:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:32:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:32:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:32:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:32:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:32:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:32:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:32:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:32:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:32:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:32:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:32:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:32:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:32:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:32:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:32:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:32:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:32:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:32:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:32:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:32:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:32:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:32:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:32:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:32:13 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 17:32:13 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 17:32:13 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 17:32:13 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 17:32:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 17:32:13 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 17:32:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 17:32:13 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 17:32:13 INFO WorkspaceExplorerServiceImpl:142 - end time - 161 msc 0 sec -2016-05-03 17:32:13 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 17:32:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:32:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:33:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:33:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:34:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:34:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:35:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:35:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:36:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:36:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:37:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:37:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:38:10 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 17:38:10 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 17:38:10 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 17:38:10 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 17:38:10 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 17:38:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:38:10 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 17:38:10 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@122cd6a6 -2016-05-03 17:38:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:38:10 INFO ASLSession:352 - Logging the entrance -2016-05-03 17:38:10 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 17:38:10 DEBUG TemplateModel:83 - 2016-05-03 17:38:10, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 17:38:10 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:38:10 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 17:38:13 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 17:38:13 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 17:38:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:38:13 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 17:38:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:38:13 INFO ASLSession:352 - Logging the entrance -2016-05-03 17:38:13 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 17:38:13 DEBUG TemplateModel:83 - 2016-05-03 17:38:13, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 17:38:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:38:13 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 17:38:13 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 126 ms -2016-05-03 17:38:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 17:38:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 17:38:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 17:38:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 17:38:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 17:38:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 17:38:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 17:38:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 17:38:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 17:38:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 17:38:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 17:38:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 17:38:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 17:38:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 17:38:13 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 17:38:13 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:38:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 17:38:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@44b6a422 -2016-05-03 17:38:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3981bf23 -2016-05-03 17:38:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@402f5965 -2016-05-03 17:38:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@b8774e3 -2016-05-03 17:38:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 99 ms -2016-05-03 17:38:13 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 17:38:13 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 17:38:13 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 17:38:13 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 17:38:13 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 17:38:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:38:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:38:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 17:38:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 23 ms -2016-05-03 17:38:13 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 17:38:13 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:38:13 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 17:38:13 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 17:38:14 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 17:38:14 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 17:38:14 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 17:38:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 17:38:14 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 17:38:14 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:38:14 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 17:38:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:38:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:38:14 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 17:38:14 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 17:38:14 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 17:38:14 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 17:38:14 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 17:38:14 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 17:38:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 17:38:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:38:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 17:38:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 69 ms -2016-05-03 17:38:14 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 17:38:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 17:38:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:38:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:38:14 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 17:38:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:38:14 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 17:38:14 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 17:38:14 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 17:38:14 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 17:38:14 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 17:38:14 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 17:38:14 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 17:38:14 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 17:38:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:38:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:38:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:38:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:38:14 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 17:38:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 17:38:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:38:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:38:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:38:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:38:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:38:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:38:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:38:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:38:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:38:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 17:38:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:38:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:38:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:38:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:38:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:38:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:38:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:38:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:38:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:38:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 17:38:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:38:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:38:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:38:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:38:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:38:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:38:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:38:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:38:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:38:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 17:38:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:38:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:38:15 ERROR StatWPSClientSession:400 - Error occured while receiving data -2016-05-03 17:38:15 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:38:15 ERROR DataMinerManagerServiceImpl:114 - An error occurred getting the OperatorsClassifications list -org.gcube.portlets.user.dataminermanager.shared.exception.ServiceException: Error occured while receiving data - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:346) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.getOperatorsClassifications(SClient4WPS.java:162) - at org.gcube.portlets.user.dataminermanager.server.DataMinerManagerServiceImpl.getOperatorsClassifications(DataMinerManagerServiceImpl.java:111) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:606) - at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:561) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305) - at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:755) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:848) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) - at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) - at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428) - at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.Server.handle(Server.java:370) - at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) - at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960) - at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021) - at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865) - at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240) - at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) - at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) - at java.lang.Thread.run(Thread.java:745) -2016-05-03 17:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:38:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:38:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:38:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:38:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:38:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:38:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:38:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:38:16 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 17:38:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:38:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:38:16 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:38:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:38:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:38:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:38:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:38:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:38:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:38:16 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 17:38:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:38:16 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 17:38:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 17:38:16 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 17:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 17:38:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:38:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:38:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:38:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:38:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:38:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:38:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:38:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:38:16 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 17:38:16 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 17:38:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 30 ms -2016-05-03 17:38:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:38:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:38:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:38:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 17:38:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 17:38:16 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 17:38:16 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 17:38:16 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 17:38:16 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 17:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:38:16 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 17:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:38:16 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 17:38:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:38:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:38:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 17:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:38:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 325 msc 0 sec -2016-05-03 17:38:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 184 msc 0 sec -2016-05-03 17:38:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 296 msc 0 sec -2016-05-03 17:39:05 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 17:39:05 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 17:39:05 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 17:39:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:39:05 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:40:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:40:00 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:40:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:40:55 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:41:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:41:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:42:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:42:45 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:43:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:43:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:44:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:44:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:45:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:45:30 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:46:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:46:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:47:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:47:20 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:48:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:48:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:49:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:49:10 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:50:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 17:50:05 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 17:51:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:51:00 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:51:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:51:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:54:20 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 17:54:20 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 17:54:20 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 17:54:20 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 17:54:20 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 17:54:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:54:20 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 17:54:20 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@69057a5a -2016-05-03 17:54:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:54:20 INFO ASLSession:352 - Logging the entrance -2016-05-03 17:54:20 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 17:54:20 DEBUG TemplateModel:83 - 2016-05-03 17:54:20, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 17:54:20 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:54:20 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 17:54:22 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 17:54:22 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 17:54:22 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 17:54:22 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 17:54:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:54:22 INFO ASLSession:352 - Logging the entrance -2016-05-03 17:54:22 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 17:54:22 DEBUG TemplateModel:83 - 2016-05-03 17:54:22, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 17:54:22 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:54:22 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 17:54:22 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 122 ms -2016-05-03 17:54:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 17:54:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 17:54:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 17:54:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 17:54:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 17:54:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 17:54:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 17:54:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 17:54:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 17:54:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 17:54:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 17:54:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 17:54:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 17:54:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 17:54:22 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 17:54:23 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 17:54:23 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 17:54:23 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 17:54:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:54:23 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:54:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 17:54:23 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 17:54:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:54:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:54:23 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 17:54:23 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 17:54:23 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 17:54:23 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 17:54:23 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 17:54:23 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 17:54:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 17:54:23 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:54:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:54:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 17:54:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 17:54:23 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@5917feff -2016-05-03 17:54:23 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@24864764 -2016-05-03 17:54:23 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@6fb4acb8 -2016-05-03 17:54:23 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@2d191d10 -2016-05-03 17:54:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 98 ms -2016-05-03 17:54:23 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 17:54:23 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 17:54:23 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 17:54:23 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 17:54:23 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 17:54:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 17:54:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:54:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 17:54:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 20 ms -2016-05-03 17:54:23 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 17:54:23 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:54:23 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 17:54:23 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 17:54:24 ERROR StatWPSClientSession:400 - Error occured while receiving data -2016-05-03 17:54:24 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 17:54:24 ERROR DataMinerManagerServiceImpl:114 - An error occurred getting the OperatorsClassifications list -org.gcube.portlets.user.dataminermanager.shared.exception.ServiceException: Error occured while receiving data - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:346) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.getOperatorsClassifications(SClient4WPS.java:162) - at org.gcube.portlets.user.dataminermanager.server.DataMinerManagerServiceImpl.getOperatorsClassifications(DataMinerManagerServiceImpl.java:111) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:606) - at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:561) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305) - at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:755) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:848) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) - at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) - at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428) - at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.Server.handle(Server.java:370) - at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) - at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960) - at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021) - at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865) - at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240) - at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) - at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) - at java.lang.Thread.run(Thread.java:745) -2016-05-03 17:55:15 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 17:55:15 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 17:55:15 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 17:55:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:55:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:56:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 17:56:10 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 17:56:21 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 118174 ms -2016-05-03 17:56:21 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 17:56:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:56:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:56:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:56:21 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 17:56:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:56:21 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 17:56:22 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 17:56:22 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 17:56:22 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 17:56:22 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 17:56:22 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 17:56:22 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 17:56:22 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 17:56:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:56:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:56:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:56:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:56:23 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 17:56:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 17:56:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:56:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:56:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:56:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:56:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:56:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:56:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:56:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:56:23 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:56:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 17:56:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:56:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:56:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:56:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:56:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:56:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:56:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:56:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:56:23 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:56:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 17:56:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:56:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:56:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:56:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:56:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:56:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:56:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:56:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:56:23 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 17:56:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 17:56:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:56:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:56:24 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:56:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:56:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:56:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:56:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:56:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:56:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:56:24 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 17:56:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:56:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:56:24 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:56:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:56:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:56:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:56:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:56:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:56:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:56:24 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 17:56:24 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 17:56:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:56:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:56:24 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:56:24 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:56:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:56:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 17:56:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 17:56:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 17:56:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 17:56:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 17:56:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 17:56:24 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 17:56:24 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 17:56:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 17:56:24 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 50 ms -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 17:56:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 17:56:24 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:56:24 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 17:56:24 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:56:24 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:56:24 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:56:24 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 130 ms -2016-05-03 17:56:24 INFO WorkspaceExplorerServiceImpl:188 - end time - 166 msc 0 sec -2016-05-03 17:56:24 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 17:56:24 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 17:56:24 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 17:56:24 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 17:56:24 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 17:56:24 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 33 ms -2016-05-03 17:56:24 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:56:24 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:56:24 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:56:24 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 17:56:24 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 17:56:24 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 20 ms -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 17:56:24 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 17:56:24 INFO ISClientConnector:61 - ISCACHE: ELEMENT EXTRACTED -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:56:24 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:56:24 INFO WorkspaceExplorerServiceImpl:188 - end time - 411 msc 0 sec -2016-05-03 17:56:24 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 17:56:24 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 17:56:24 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 17:56:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:56:24 INFO WorkspaceExplorerServiceImpl:188 - end time - 403 msc 0 sec -2016-05-03 17:57:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 17:57:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 17:58:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 17:58:00 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 17:58:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:58:55 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 17:59:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 17:59:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 18:11:35 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 18:11:35 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 18:11:35 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 18:11:35 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 18:11:35 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 18:11:35 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 18:11:35 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 18:11:35 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@6a1e68fa -2016-05-03 18:11:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 18:11:35 INFO ASLSession:352 - Logging the entrance -2016-05-03 18:11:35 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 18:11:35 DEBUG TemplateModel:83 - 2016-05-03 18:11:35, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 18:11:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:11:35 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 18:11:36 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 18:11:36 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 18:11:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 18:11:36 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 18:11:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:11:36 INFO ASLSession:352 - Logging the entrance -2016-05-03 18:11:36 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 18:11:36 DEBUG TemplateModel:83 - 2016-05-03 18:11:36, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 18:11:36 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:11:36 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 18:11:37 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 135 ms -2016-05-03 18:11:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 18:11:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 18:11:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 18:11:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 18:11:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 18:11:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 18:11:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 18:11:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 18:11:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 18:11:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 18:11:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 18:11:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 18:11:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 18:11:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 18:11:37 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 18:11:37 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:11:37 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 18:11:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@52861279 -2016-05-03 18:11:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@4c43d61f -2016-05-03 18:11:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@12dd2a63 -2016-05-03 18:11:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@2339f182 -2016-05-03 18:11:37 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 102 ms -2016-05-03 18:11:37 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 18:11:37 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 18:11:37 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 18:11:37 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 18:11:37 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 18:11:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:11:37 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:11:37 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 18:11:37 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-03 18:11:37 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 18:11:37 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 18:11:37 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 18:11:37 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 18:11:37 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 18:11:37 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 18:11:37 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 18:11:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 18:11:37 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 18:11:37 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:11:37 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 18:11:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:11:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:11:37 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 18:11:37 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 18:11:37 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 18:11:37 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 18:11:37 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 18:11:37 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 18:11:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 18:11:37 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:11:37 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 18:11:37 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 19 ms -2016-05-03 18:11:38 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 18:11:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 18:11:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:11:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:11:38 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 18:11:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:11:38 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 18:11:38 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 18:11:38 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 18:11:38 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 18:11:38 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 18:11:38 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 18:11:38 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 18:11:38 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 18:11:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:11:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:11:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:38 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 18:11:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 18:11:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:11:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:11:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:11:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:11:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:11:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:11:38 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 18:11:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 18:11:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:11:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:11:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:11:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:11:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:11:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:11:38 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 18:11:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 18:11:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:39 ERROR StatWPSClientSession:400 - Error occured while receiving data -2016-05-03 18:11:39 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 18:11:39 ERROR DataMinerManagerServiceImpl:114 - An error occurred getting the OperatorsClassifications list -org.gcube.portlets.user.dataminermanager.shared.exception.ServiceException: Error occured while receiving data - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:346) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.getOperatorsClassifications(SClient4WPS.java:162) - at org.gcube.portlets.user.dataminermanager.server.DataMinerManagerServiceImpl.getOperatorsClassifications(DataMinerManagerServiceImpl.java:111) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:606) - at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:561) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305) - at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:755) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:848) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) - at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) - at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428) - at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.Server.handle(Server.java:370) - at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) - at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960) - at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021) - at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865) - at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240) - at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) - at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) - at java.lang.Thread.run(Thread.java:745) -2016-05-03 18:11:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:11:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:11:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:11:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:11:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:11:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:11:39 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 18:11:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 18:11:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:40 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 18:11:40 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 18:11:40 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 18:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:11:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:11:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:11:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:11:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:11:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:11:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:11:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:11:40 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 18:11:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:11:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 18:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:11:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:11:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:11:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:11:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:11:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:11:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:11:40 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 18:11:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:40 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 18:11:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:11:40 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 18:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:11:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:11:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:11:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:11:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:11:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:11:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 18:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:11:40 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 18:11:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:11:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 18:11:40 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 18:11:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 29 ms -2016-05-03 18:11:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 18:11:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:11:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 18:11:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 19 ms -2016-05-03 18:11:40 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 18:11:40 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 18:11:40 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 18:11:40 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 18:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 18:11:40 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 18:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 18:11:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:11:40 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 18:11:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 18:11:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-03 18:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 18:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 18:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 18:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:11:40 INFO WorkspaceExplorerServiceImpl:188 - end time - 310 msc 0 sec -2016-05-03 18:11:40 INFO WorkspaceExplorerServiceImpl:188 - end time - 187 msc 0 sec -2016-05-03 18:11:40 INFO WorkspaceExplorerServiceImpl:188 - end time - 394 msc 0 sec -2016-05-03 18:11:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:11:47 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 18:11:47 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:11:47 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 18:11:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 18:11:48 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 18:11:48 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:11:48 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 18:11:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:11:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:11:49 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:11:49 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 18:11:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:11:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:11:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:11:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:11:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:11:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:11:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:49 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 18:11:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 18:11:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:11:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:11:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:11:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:11:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:11:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:11:49 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 18:11:49 ERROR StatWPSClientSession:400 - Error occured while receiving data -2016-05-03 18:11:49 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 18:11:49 ERROR DataMinerManagerServiceImpl:114 - An error occurred getting the OperatorsClassifications list -org.gcube.portlets.user.dataminermanager.shared.exception.ServiceException: Error occured while receiving data - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:346) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.getOperatorsClassifications(SClient4WPS.java:162) - at org.gcube.portlets.user.dataminermanager.server.DataMinerManagerServiceImpl.getOperatorsClassifications(DataMinerManagerServiceImpl.java:111) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:606) - at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:561) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305) - at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:755) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:848) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) - at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) - at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428) - at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.Server.handle(Server.java:370) - at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) - at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960) - at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021) - at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865) - at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240) - at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) - at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) - at java.lang.Thread.run(Thread.java:745) -2016-05-03 18:11:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 18:11:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:11:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:11:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:11:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:11:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:11:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:11:49 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 18:11:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 18:11:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:11:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:11:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:11:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:11:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:11:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:11:49 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 18:11:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 18:11:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:11:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 18:11:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:11:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:11:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:11:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:11:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:11:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:11:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:11:50 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 18:11:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:11:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:11:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:11:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:11:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:11:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:11:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:11:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:11:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:11:50 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 18:11:50 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 18:11:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 97 msc 0 sec -2016-05-03 18:11:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 18:11:50 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 18:11:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 18:11:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:11:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:11:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:11:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:11:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:11:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:11:50 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 18:11:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:11:50 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 18:11:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:11:50 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 18:11:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 143 msc 0 sec -2016-05-03 18:11:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 251 msc 0 sec -2016-05-03 18:12:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:12:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 18:12:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:12:13 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 18:12:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:12:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 18:12:14 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:12:14 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 18:12:15 ERROR StatWPSClientSession:400 - Error occured while receiving data -2016-05-03 18:12:15 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 18:12:15 ERROR DataMinerManagerServiceImpl:114 - An error occurred getting the OperatorsClassifications list -org.gcube.portlets.user.dataminermanager.shared.exception.ServiceException: Error occured while receiving data - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:346) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.getOperatorsClassifications(SClient4WPS.java:162) - at org.gcube.portlets.user.dataminermanager.server.DataMinerManagerServiceImpl.getOperatorsClassifications(DataMinerManagerServiceImpl.java:111) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:606) - at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:561) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305) - at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:755) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:848) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) - at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) - at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428) - at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.Server.handle(Server.java:370) - at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) - at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960) - at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021) - at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865) - at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240) - at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) - at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) - at java.lang.Thread.run(Thread.java:745) -2016-05-03 18:12:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:12:15 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:12:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:12:15 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 18:12:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:12:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:12:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:12:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:12:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:12:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:12:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:12:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:12:17 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 18:12:19 DEBUG DataMinerWorkAreaManager:60 - DataMiner Folder is set to null -2016-05-03 18:12:41 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 18:12:41 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 18:12:41 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 18:12:41 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 18:12:41 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 18:12:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:12:41 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 18:12:41 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@6ec6151d -2016-05-03 18:12:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:12:41 INFO ASLSession:352 - Logging the entrance -2016-05-03 18:12:41 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 18:12:41 DEBUG TemplateModel:83 - 2016-05-03 18:12:41, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 18:12:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:12:41 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 18:12:43 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 18:12:43 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 18:12:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:12:43 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 18:12:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:12:43 INFO ASLSession:352 - Logging the entrance -2016-05-03 18:12:43 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 18:12:43 DEBUG TemplateModel:83 - 2016-05-03 18:12:43, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 18:12:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:12:43 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 18:12:43 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 131 ms -2016-05-03 18:12:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 18:12:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 18:12:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 18:12:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 18:12:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 18:12:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 18:12:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 18:12:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 18:12:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 18:12:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 18:12:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 18:12:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 18:12:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 18:12:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 18:12:43 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 18:12:43 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:12:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 18:12:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@554b9a7 -2016-05-03 18:12:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@25a0c90 -2016-05-03 18:12:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@1bbac272 -2016-05-03 18:12:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@76f7418a -2016-05-03 18:12:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 105 ms -2016-05-03 18:12:44 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 18:12:44 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 18:12:44 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 18:12:44 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 18:12:44 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 18:12:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:12:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:12:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 18:12:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-03 18:12:44 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 18:12:44 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 18:12:44 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 18:12:44 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 18:12:44 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 18:12:44 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 18:12:44 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 18:12:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:12:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:12:44 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:12:44 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 18:12:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:12:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:12:44 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 18:12:44 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 18:12:44 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 18:12:44 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 18:12:44 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 18:12:44 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 18:12:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 18:12:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:12:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 18:12:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-03 18:12:44 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 18:12:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:12:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:12:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:12:44 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 18:12:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:12:44 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 18:12:44 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 18:12:45 ERROR StatWPSClientSession:400 - Error occured while receiving data -2016-05-03 18:12:45 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 18:12:45 ERROR DataMinerManagerServiceImpl:114 - An error occurred getting the OperatorsClassifications list -org.gcube.portlets.user.dataminermanager.shared.exception.ServiceException: Error occured while receiving data - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:346) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.getOperatorsClassifications(SClient4WPS.java:162) - at org.gcube.portlets.user.dataminermanager.server.DataMinerManagerServiceImpl.getOperatorsClassifications(DataMinerManagerServiceImpl.java:111) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:606) - at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:561) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305) - at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:755) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:848) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) - at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) - at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428) - at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.Server.handle(Server.java:370) - at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) - at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960) - at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021) - at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865) - at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240) - at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) - at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) - at java.lang.Thread.run(Thread.java:745) -2016-05-03 18:12:45 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 18:12:45 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 18:12:45 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 18:12:45 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 18:12:45 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 18:12:45 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 18:12:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:12:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:12:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:12:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:12:45 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 18:12:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 18:12:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:12:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:12:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:12:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:12:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:12:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:12:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:12:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:12:45 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 18:12:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 18:12:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:12:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:12:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:12:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:12:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:12:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:12:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:12:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:12:45 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 18:12:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 18:12:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:12:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:12:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:12:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:12:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:12:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:12:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:12:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:12:45 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 18:12:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 18:12:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:12:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:12:46 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 18:12:46 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 18:12:46 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 18:12:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 18:12:46 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 18:12:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 18:12:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:12:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:12:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:12:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:12:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:12:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:12:46 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 18:12:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:12:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:12:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:12:46 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 18:12:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:12:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:12:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:12:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:12:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:12:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:12:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:12:46 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 18:12:46 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 18:12:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:12:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:12:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 18:12:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 18:12:46 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:12:46 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 18:12:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:12:46 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:12:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:12:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:12:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:12:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:12:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:12:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:12:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:12:46 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 18:12:46 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-03 18:12:46 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 18:12:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 18:12:46 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:12:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:12:46 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 18:12:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:12:46 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 21 ms -2016-05-03 18:12:46 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 18:12:46 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 18:12:46 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 18:12:46 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 18:12:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 18:12:46 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 18:12:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 18:12:46 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:12:46 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 18:12:46 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 18:12:46 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 18:12:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 18:12:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 18:12:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-03 18:12:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 18:12:46 INFO WorkspaceExplorerServiceImpl:188 - end time - 339 msc 0 sec -2016-05-03 18:12:46 INFO WorkspaceExplorerServiceImpl:188 - end time - 188 msc 0 sec -2016-05-03 18:12:46 INFO WorkspaceExplorerServiceImpl:188 - end time - 305 msc 0 sec -2016-05-03 18:13:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-03 18:13:36 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-03 18:14:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:14:31 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 18:15:23 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 18:15:23 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 18:15:23 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 18:15:23 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 18:15:23 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 18:15:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:15:23 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 18:15:23 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@44e7f8ce -2016-05-03 18:15:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:15:23 INFO ASLSession:352 - Logging the entrance -2016-05-03 18:15:23 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 18:15:23 DEBUG TemplateModel:83 - 2016-05-03 18:15:23, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 18:15:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:15:23 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 18:15:24 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 18:15:24 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 18:15:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 18:15:24 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 18:15:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:15:24 INFO ASLSession:352 - Logging the entrance -2016-05-03 18:15:24 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 18:15:24 DEBUG TemplateModel:83 - 2016-05-03 18:15:24, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 18:15:24 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:15:24 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 18:15:25 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 127 ms -2016-05-03 18:15:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 18:15:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 18:15:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 18:15:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 18:15:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 18:15:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 18:15:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 18:15:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 18:15:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 18:15:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 18:15:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 18:15:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 18:15:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 18:15:25 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 18:15:25 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 18:15:25 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:15:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 18:15:25 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@713ea44f -2016-05-03 18:15:25 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@6d453256 -2016-05-03 18:15:25 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@5f6c54d3 -2016-05-03 18:15:25 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@4c69f621 -2016-05-03 18:15:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 101 ms -2016-05-03 18:15:25 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 18:15:25 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 18:15:25 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 18:15:25 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 18:15:25 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 18:15:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:15:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:15:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 18:15:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 21 ms -2016-05-03 18:15:25 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 18:15:25 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 18:15:25 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 18:15:25 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 18:15:25 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 18:15:25 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 18:15:25 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 18:15:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:15:25 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:15:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:15:25 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 18:15:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:15:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:15:25 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 18:15:25 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 18:15:25 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 18:15:25 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 18:15:25 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 18:15:25 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 18:15:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 18:15:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:15:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 18:15:26 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 129 ms -2016-05-03 18:15:26 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 18:15:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:15:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:15:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:15:26 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 18:15:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:15:26 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 18:15:26 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 18:15:26 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 18:15:26 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 18:15:26 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 18:15:26 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 18:15:26 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 18:15:26 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 18:15:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:15:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:15:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:15:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:15:26 ERROR StatWPSClientSession:400 - Error occured while receiving data -2016-05-03 18:15:26 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 18:15:26 ERROR DataMinerManagerServiceImpl:114 - An error occurred getting the OperatorsClassifications list -org.gcube.portlets.user.dataminermanager.shared.exception.ServiceException: Error occured while receiving data - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:346) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.getOperatorsClassifications(SClient4WPS.java:162) - at org.gcube.portlets.user.dataminermanager.server.DataMinerManagerServiceImpl.getOperatorsClassifications(DataMinerManagerServiceImpl.java:111) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:606) - at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:561) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305) - at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:755) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:848) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) - at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) - at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428) - at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.Server.handle(Server.java:370) - at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) - at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960) - at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021) - at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865) - at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240) - at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) - at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) - at java.lang.Thread.run(Thread.java:745) -2016-05-03 18:15:26 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 18:15:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 18:15:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:15:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:15:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:15:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:15:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:15:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:15:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:15:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:15:26 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 18:15:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 18:15:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:15:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:15:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:15:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:15:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:15:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:15:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:15:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:15:28 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 18:15:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 18:15:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:15:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:15:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:15:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:15:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:15:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:15:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:15:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:15:28 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 18:15:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 18:15:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:15:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:15:28 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 18:15:28 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 18:15:28 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 18:15:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:15:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 18:15:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:15:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:15:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:15:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:15:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:15:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:15:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:15:28 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 18:15:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:15:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:15:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:15:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 18:15:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:15:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:15:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:15:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:15:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:15:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:15:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:15:28 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 18:15:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:15:28 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 18:15:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:15:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 18:15:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:15:29 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:15:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 18:15:29 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 18:15:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:15:29 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 18:15:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:15:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:15:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:15:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:15:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:15:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:15:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:15:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-03 18:15:29 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 18:15:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 18:15:29 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:15:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 18:15:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:15:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:15:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 21 ms -2016-05-03 18:15:29 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 18:15:29 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 18:15:29 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 18:15:29 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 18:15:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 18:15:29 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 18:15:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 18:15:29 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:15:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 18:15:29 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 18:15:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 24 ms -2016-05-03 18:15:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 18:15:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 18:15:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 18:15:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:15:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 337 msc 0 sec -2016-05-03 18:15:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 156 msc 0 sec -2016-05-03 18:15:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 298 msc 0 sec -2016-05-03 18:16:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:16:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:17:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:17:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:18:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:18:08 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:19:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:19:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:19:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:19:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:20:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:20:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:22:45 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 18:22:45 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 18:22:45 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 18:22:45 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 18:22:45 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 18:22:45 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 18:22:45 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 18:22:45 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@fad991f -2016-05-03 18:22:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:22:45 INFO ASLSession:352 - Logging the entrance -2016-05-03 18:22:45 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 18:22:45 DEBUG TemplateModel:83 - 2016-05-03 18:22:45, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 18:22:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:22:45 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 18:22:47 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 18:22:47 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 18:22:47 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:22:47 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 18:22:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:22:47 INFO ASLSession:352 - Logging the entrance -2016-05-03 18:22:47 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 18:22:47 DEBUG TemplateModel:83 - 2016-05-03 18:22:47, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 18:22:47 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:22:47 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 18:22:47 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 130 ms -2016-05-03 18:22:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 18:22:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 18:22:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 18:22:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 18:22:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 18:22:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 18:22:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 18:22:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 18:22:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 18:22:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 18:22:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 18:22:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 18:22:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 18:22:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 18:22:47 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 18:22:47 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:22:47 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 18:22:47 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@1e4da4c4 -2016-05-03 18:22:47 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@19d0a2a2 -2016-05-03 18:22:47 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@1c347e1b -2016-05-03 18:22:47 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@4181038 -2016-05-03 18:22:47 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 105 ms -2016-05-03 18:22:47 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 18:22:47 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 18:22:47 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 18:22:47 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 18:22:47 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 18:22:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:22:47 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:22:47 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 18:22:47 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-03 18:22:47 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 18:22:47 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 18:22:47 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 18:22:47 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 18:22:47 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 18:22:47 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 18:22:47 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 18:22:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:22:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 18:22:47 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:22:47 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 18:22:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:22:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:22:48 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 18:22:48 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 18:22:48 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 18:22:48 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 18:22:48 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 18:22:48 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 18:22:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 18:22:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:22:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 18:22:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 81 ms -2016-05-03 18:22:48 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 18:22:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:22:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:22:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:22:48 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 18:22:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:22:48 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 18:22:48 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 18:22:48 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 18:22:48 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 18:22:48 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 18:22:48 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 18:22:48 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 18:22:48 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 18:22:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:22:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:22:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:22:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:22:48 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 18:22:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 18:22:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:22:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:22:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:22:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:22:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:22:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:22:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:22:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:22:49 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 18:22:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 18:22:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:22:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:22:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:22:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:22:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:22:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:22:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:22:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:22:49 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 18:22:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 18:22:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:22:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:22:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:22:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:22:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:22:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:22:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:22:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:22:49 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 18:22:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 18:22:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:22:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:22:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:22:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 18:22:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:22:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:22:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:22:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:22:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:22:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:22:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:22:49 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 18:22:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:22:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:22:50 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 18:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:22:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:22:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:22:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:22:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:22:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:22:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:22:50 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 18:22:50 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 18:22:50 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 18:22:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:22:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:22:50 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 18:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 18:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:22:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:22:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:22:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:22:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:22:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:22:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:22:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:22:50 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 18:22:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:22:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 18:22:50 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 18:22:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 24 ms -2016-05-03 18:22:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 18:22:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:22:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 18:22:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:22:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 19 ms -2016-05-03 18:22:50 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 18:22:50 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 18:22:50 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 18:22:50 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 18:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 18:22:50 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 18:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 18:22:50 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 18:22:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 18:22:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 18:22:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-03 18:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 18:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 18:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 18:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:22:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 391 msc 0 sec -2016-05-03 18:22:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 172 msc 0 sec -2016-05-03 18:22:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 321 msc 0 sec -2016-05-03 18:22:54 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 18:22:54 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 18:22:54 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 18:22:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:22:54 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:22:54 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:22:54 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-03 18:22:54 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 18:22:54 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 18:22:55 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 18:22:55 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 18:22:55 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 18:22:55 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-03 18:22:55 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-03 18:22:55 DEBUG SClient4WPS:300 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-03 18:22:55 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-03 18:22:55 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 18:22:55 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-03 18:22:55 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 18:22:55 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 18:22:55 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-03 18:22:55 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-03 18:22:55 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-03 18:22:55 DEBUG WPS2SM:208 - Default Schema: null -2016-05-03 18:22:55 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-03 18:22:55 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 18:22:55 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-03 18:22:55 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:22:55 DEBUG SClient4WPS:652 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 18:22:55 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-03 18:22:55 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:22:55 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 18:22:55 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 18:22:55 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 18:22:55 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 18:22:55 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-03 18:22:55 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-03 18:22:55 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-03 18:22:55 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 18:22:55 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-03 18:22:55 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 18:22:55 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-03 18:22:55 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-03 18:22:55 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:22:55 DEBUG SClient4WPS:652 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 18:22:55 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-03 18:22:55 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:22:55 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 18:22:55 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-03 18:22:55 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-03 18:22:55 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-03 18:22:55 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:22:55 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-03 18:22:55 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-03 18:22:55 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:22:55 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 18:22:55 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 18:22:55 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-03 18:22:55 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-03 18:22:55 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:22:55 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 18:22:55 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-03 18:22:55 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:22:55 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 18:22:55 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-03 18:22:55 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-03 18:22:55 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-03 18:22:55 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:22:55 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-03 18:22:55 DEBUG SClient4WPS:656 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-03 18:22:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:22:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:22:55 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 18:22:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 18:22:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:22:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:22:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:22:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:22:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:22:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:22:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:22:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:22:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:22:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:22:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:22:55 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 18:22:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:22:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:22:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:22:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:22:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:22:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 18:22:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:22:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 18:22:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:22:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:22:55 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 18:22:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:22:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:22:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:22:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:22:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:22:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:22:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:22:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:22:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:22:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:22:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:22:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:22:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:22:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:22:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:22:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:22:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:22:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:22:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:22:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:22:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:22:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:22:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:22:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:22:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:22:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:22:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:22:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:22:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:22:55 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 18:22:56 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 18:22:56 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 18:22:56 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 18:22:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 18:22:56 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 18:22:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 18:22:56 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 18:22:56 INFO WorkspaceExplorerServiceImpl:142 - end time - 322 msc 0 sec -2016-05-03 18:22:56 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 18:23:04 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:23:04 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:23:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 18:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:23:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:23:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:23:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:23:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:23:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:23:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:23:04 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:23:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 18:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:23:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:23:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:23:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:23:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:23:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:23:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:23:04 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:23:04 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:23:04 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 18:23:04 DEBUG ServiceEngine:306 - get() - start -2016-05-03 18:23:04 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:23:04 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:23:04 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 18:23:04 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 18:23:04 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 18:23:04 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 18:23:04 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 18:23:04 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 18:23:04 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 18:23:04 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:23:04 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:23:04 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 18:23:04 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 18:23:04 DEBUG MongoIO:77 - open mongo connection -2016-05-03 18:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:23:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:23:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:23:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:23:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:23:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:23:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:23:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:23:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 18:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:23:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:23:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:23:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:23:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:23:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:23:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:23:04 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:23:04 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:23:04 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 18:23:04 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:04 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 18:23:04 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 18:23:04 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:04 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:04 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2b1dec72, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6912ab4a, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@48abbd2a, socketFactory=javax.net.DefaultSocketFactory@31035ac, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 18:23:04 INFO WorkspaceExplorerServiceImpl:188 - end time - 66 msc 0 sec -2016-05-03 18:23:04 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 18:23:04 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 18:23:04 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 18:23:04 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 18:23:04 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 18:23:04 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1874460}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:262601}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1221831, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1855851, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:04 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 18:23:04 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:04 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:04 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:04 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1874461}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2144390}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=954831, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1874461}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 DEBUG command:56 - Command execution completed -2016-05-03 18:23:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1874461}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 DEBUG command:56 - Command execution completed -2016-05-03 18:23:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1874461}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 DEBUG command:56 - Command execution completed -2016-05-03 18:23:04 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 18:23:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1874461}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 DEBUG command:56 - Command execution completed -2016-05-03 18:23:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1874461}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 DEBUG command:56 - Command execution completed -2016-05-03 18:23:04 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1558190}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1676033, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:04 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1874461}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 18:23:05 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-03 18:23:05 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-03 18:23:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:23:05 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 18:23:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:23:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:23:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:23:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:23:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:23:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:23:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:23:05 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-03 18:23:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:23:05 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 18:23:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:23:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:23:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:23:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:23:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:23:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:23:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:23:05 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-03 18:23:05 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-03 18:23:05 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-03 18:23:05 DEBUG ServiceEngine:306 - get() - start -2016-05-03 18:23:05 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:23:05 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:23:05 DEBUG ServiceEngine:62 - path(String) - name: DBScan -2016-05-03 18:23:05 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 18:23:05 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 18:23:05 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 18:23:05 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 18:23:05 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 18:23:05 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-03 18:23:05 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:23:05 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:23:05 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 18:23:05 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 18:23:05 DEBUG MongoIO:77 - open mongo connection -2016-05-03 18:23:05 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 18:23:05 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:05 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:05 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:05 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2b1dec72, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6912ab4a, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@48abbd2a, socketFactory=javax.net.DefaultSocketFactory@31035ac, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 18:23:05 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 18:23:05 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 18:23:05 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:262602}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1615036, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:05 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 18:23:05 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:05 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:05 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1874462}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2144392}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1050270, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1757118, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:05 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:23:05 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:23:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:23:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:23:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:23:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:23:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:23:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:23:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:23:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:23:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:23:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:23:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:23:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:23:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:23:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:23:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:23:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:23:05 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-03 18:23:05 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-03 18:23:05 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1558191}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2540499, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-03 18:23:05 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1874463}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1874463}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 DEBUG command:56 - Command execution completed -2016-05-03 18:23:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1874463}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 INFO JCRServlets:697 - Calling Servlet get Parents By Id 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-03 18:23:05 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-03 18:23:05 DEBUG command:56 - Command execution completed -2016-05-03 18:23:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1874463}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 DEBUG command:56 - Command execution completed -2016-05-03 18:23:05 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-03 18:23:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1874463}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 DEBUG command:56 - Command execution completed -2016-05-03 18:23:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1874463}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 DEBUG command:56 - Command execution completed -2016-05-03 18:23:05 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1874463}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:05 INFO WorkspaceExplorerServiceImpl:188 - end time - 58 msc 0 sec -2016-05-03 18:23:05 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:23:05 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=7ba62008-739a-4787-ae33-7938ad109a54, name=DBScan, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 18:23:05 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 18:23:05 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 18:23:05 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 18:23:05 DEBUG query:56 - Query completed -2016-05-03 18:23:05 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 18:23:05 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2144390} -2016-05-03 18:23:05 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:262601} -2016-05-03 18:23:05 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1558190} -2016-05-03 18:23:05 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1874461}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 18:23:05 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1874461} -2016-05-03 18:23:05 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1874460} -2016-05-03 18:23:05 INFO MongoIO:508 - Mongo has been closed -2016-05-03 18:23:05 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 18:23:05 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 18:23:05 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 18:23:06 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:23:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-03 18:23:06 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:23:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-03 18:23:06 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:23:06 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:23:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:23:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 18:23:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:23:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:23:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:23:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:23:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:23:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:23:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:23:06 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:23:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:23:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:23:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:23:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:23:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:23:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:23:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:23:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:23:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:23:06 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:23:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:23:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:23:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:23:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:23:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:23:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:23:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:23:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:23:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:23:06 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:23:06 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:23:06 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:23:06 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-03 18:23:06 DEBUG query:56 - Query completed -2016-05-03 18:23:06 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-05-03 18:23:06 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2144392} -2016-05-03 18:23:06 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:262602} -2016-05-03 18:23:06 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1874463}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 18:23:06 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1558191} -2016-05-03 18:23:06 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1874463} -2016-05-03 18:23:06 INFO MongoIO:508 - Mongo has been closed -2016-05-03 18:23:06 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1874462} -2016-05-03 18:23:06 INFO DefaultMongoClient:1329 - getFolderTotalVolume 849 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-03 18:23:06 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-03 18:23:06 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-03 18:23:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:23:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 18:23:07 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:23:07 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=13d0382e-8833-4df7-b4dc-61bbba61b3e5, name=hcaf_filtered.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 17:10:22 CET 2016] -2016-05-03 18:23:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:23:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:23:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:23:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:23:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:23:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:23:07 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:23:07 DEBUG ServiceEngine:193 - get() - start -2016-05-03 18:23:07 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:23:07 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:23:07 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-03 18:23:07 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-03 18:23:07 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 18:23:07 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 18:23:07 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 18:23:07 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 18:23:07 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:23:07 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:23:07 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-03 18:23:07 DEBUG Operation:173 - get(String) - start -2016-05-03 18:23:07 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 18:23:07 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 18:23:07 DEBUG MongoIO:77 - open mongo connection -2016-05-03 18:23:07 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 18:23:07 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:07 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:07 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:07 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2b1dec72, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6912ab4a, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@48abbd2a, socketFactory=javax.net.DefaultSocketFactory@31035ac, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 18:23:07 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 18:23:07 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 18:23:07 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:262603}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1874464}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1485450, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:07 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 18:23:07 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:07 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1678559, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:07 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:07 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2144393}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1247645, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:07 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1558192}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=3016999, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}] -2016-05-03 18:23:07 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1874465}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1874465}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 DEBUG command:56 - Command execution completed -2016-05-03 18:23:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1874465}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 DEBUG command:56 - Command execution completed -2016-05-03 18:23:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1874465}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 DEBUG command:56 - Command execution completed -2016-05-03 18:23:07 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 18:23:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1874465}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 DEBUG command:56 - Command execution completed -2016-05-03 18:23:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1874465}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 DEBUG command:56 - Command execution completed -2016-05-03 18:23:07 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-03 18:23:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1874465}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 DEBUG command:56 - Command execution completed -2016-05-03 18:23:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1874465}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 DEBUG command:56 - Command execution completed -2016-05-03 18:23:07 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-03 18:23:07 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1874465}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:07 DEBUG query:56 - Query completed -2016-05-03 18:23:07 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-03 18:23:07 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 18:23:07 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 18:23:07 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1874465}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 DEBUG update:56 - Update completed -2016-05-03 18:23:09 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1874465}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 DEBUG query:56 - Query completed -2016-05-03 18:23:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:23:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:23:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:23:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:23:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:23:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:23:09 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:23:09 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered.csv -2016-05-03 18:23:09 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 18:23:09 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 18:23:09 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:23:09 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:23:09 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-03 18:23:09 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-03 18:23:09 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 18:23:09 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 18:23:09 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 18:23:09 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 18:23:09 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 18:23:09 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:23:09 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:23:09 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 18:23:09 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 18:23:09 DEBUG MongoIO:77 - open mongo connection -2016-05-03 18:23:09 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 18:23:09 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:09 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:09 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:09 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2b1dec72, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6912ab4a, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@48abbd2a, socketFactory=javax.net.DefaultSocketFactory@31035ac, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 18:23:09 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 18:23:09 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 18:23:09 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:262604}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1092881, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:09 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 18:23:09 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:09 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:23:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:09 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2144394}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1257551, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:09 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1874468}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1442871, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:09 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:23:09 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1558193}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1302574, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:23:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 18:23:09 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1874469}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1874469}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 DEBUG command:56 - Command execution completed -2016-05-03 18:23:09 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1874469}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 DEBUG command:56 - Command execution completed -2016-05-03 18:23:09 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1874469}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 DEBUG command:56 - Command execution completed -2016-05-03 18:23:09 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-03 18:23:09 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-03 18:23:09 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1874469}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 DEBUG command:56 - Command execution completed -2016-05-03 18:23:09 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1874469}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 DEBUG command:56 - Command execution completed -2016-05-03 18:23:09 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-03 18:23:09 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1874469}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:23:09 DEBUG query:56 - Query completed -2016-05-03 18:23:09 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-03 18:23:09 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2144394} -2016-05-03 18:23:09 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:262604} -2016-05-03 18:23:09 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1558193} -2016-05-03 18:23:09 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1874469}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 18:23:09 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1874469} -2016-05-03 18:23:09 INFO MongoIO:508 - Mongo has been closed -2016-05-03 18:23:09 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1874468} -2016-05-03 18:23:09 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-03 18:23:09 INFO Operation:55 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-03 18:23:09 INFO Operation:57 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-03 18:23:09 DEBUG Operation:87 - translating: http://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-03 18:23:09 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 18:23:09 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-03 18:23:09 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-03 18:23:09 INFO Operation:65 - URL translated: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-03 18:23:09 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2144393} -2016-05-03 18:23:09 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:262603} -2016-05-03 18:23:09 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1558192} -2016-05-03 18:23:09 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1874465}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 18:23:09 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1874465} -2016-05-03 18:23:09 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1874464} -2016-05-03 18:23:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:23:27 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 18:23:27 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:23:27 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-05-03 18:23:27 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-03 18:23:27 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-03 18:23:27 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-03 18:23:27 DEBUG WPS2SM:208 - Default Schema: null -2016-05-03 18:23:27 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-03 18:23:27 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 18:23:27 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-03 18:23:27 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:23:27 DEBUG SClient4WPS:684 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 18:23:27 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-03 18:23:27 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:23:27 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 18:23:27 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 18:23:27 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 18:23:27 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 18:23:27 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-03 18:23:27 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-03 18:23:27 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-03 18:23:27 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 18:23:27 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-03 18:23:27 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 18:23:27 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-03 18:23:27 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-03 18:23:27 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:23:27 DEBUG SClient4WPS:684 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 18:23:27 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-03 18:23:27 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:23:27 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 18:23:27 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-03 18:23:27 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-03 18:23:27 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-03 18:23:27 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:23:27 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-03 18:23:27 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-03 18:23:27 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:23:27 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 18:23:27 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 18:23:27 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-03 18:23:27 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-03 18:23:27 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:23:27 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 18:23:27 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-03 18:23:27 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:23:27 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 18:23:27 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-03 18:23:27 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-03 18:23:27 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-03 18:23:27 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:23:27 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-03 18:23:27 DEBUG SClient4WPS:692 - UserInputs= key:OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-03 18:23:27 DEBUG SClient4WPS:692 - UserInputs= key:FeaturesColumnNames, value=depthmean|sstmnmax|salinitymean -2016-05-03 18:23:27 DEBUG SClient4WPS:692 - UserInputs= key:OccurrencePointsClusterLabel, value=test -2016-05-03 18:23:27 DEBUG SClient4WPS:692 - UserInputs= key:epsilon, value=10 -2016-05-03 18:23:27 DEBUG SClient4WPS:692 - UserInputs= key:min_points, value=1 -2016-05-03 18:23:27 DEBUG SClient4WPS:753 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-03 18:23:27 DEBUG SClient4WPS:736 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymean -2016-05-03 18:23:27 DEBUG SClient4WPS:736 - Configuring Literal: OccurrencePointsClusterLabel to: test -2016-05-03 18:23:27 DEBUG SClient4WPS:736 - Configuring Literal: epsilon to: 10 -2016-05-03 18:23:27 DEBUG SClient4WPS:736 - Configuring Literal: min_points to: 1 -2016-05-03 18:23:27 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 18:23:28 DEBUG SClient4WPS:384 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - - - OccurrencePointsTable - - - - FeaturesColumnNames - - depthmean|sstmnmax|salinitymean - - - - OccurrencePointsClusterLabel - - test - - - - epsilon - - 10 - - - - min_points - - 1 - - - - - - - OutputTable - - - non_deterministic_output - - - - -2016-05-03 18:23:28 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-03 18:23:28 DEBUG SClient4WPS:403 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9152db41-996a-4733-8840-73a84df9177d -2016-05-03 18:23:28 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 18:23:28 DEBUG SClient4WPS:773 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9152db41-996a-4733-8840-73a84df9177d -2016-05-03 18:23:28 DEBUG SClient4WPS:698 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9152db41-996a-4733-8840-73a84df9177d -2016-05-03 18:23:28 DEBUG SClient4WPS:709 - ComputationId: ComputationId [id=9152db41-996a-4733-8840-73a84df9177d, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9152db41-996a-4733-8840-73a84df9177d] -2016-05-03 18:23:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:23:38 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:23:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:23:38 DEBUG SClient4WPS:789 - GetComputationStatus(): ComputationId=ComputationId [id=9152db41-996a-4733-8840-73a84df9177d, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9152db41-996a-4733-8840-73a84df9177d] -2016-05-03 18:23:38 INFO StatWPSClientSession:114 - CONNECT -2016-05-03 18:23:38 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-03 18:23:38 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9152db41-996a-4733-8840-73a84df9177d -2016-05-03 18:23:38 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 18:23:38 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-03 18:23:38 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-03 18:23:38 DEBUG SClient4WPS:805 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - - - -2016-05-03 18:23:38 DEBUG SClient4WPS:877 - WPS STATUS:0.0 -2016-05-03 18:23:38 DEBUG SClient4WPS:888 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-03 18:23:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:23:40 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 18:23:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:23:48 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 18:23:48 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:23:48 DEBUG SClient4WPS:789 - GetComputationStatus(): ComputationId=ComputationId [id=9152db41-996a-4733-8840-73a84df9177d, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9152db41-996a-4733-8840-73a84df9177d] -2016-05-03 18:23:48 INFO StatWPSClientSession:114 - CONNECT -2016-05-03 18:23:48 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-03 18:23:48 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9152db41-996a-4733-8840-73a84df9177d -2016-05-03 18:23:48 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 18:23:48 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-03 18:23:48 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-03 18:23:48 DEBUG SClient4WPS:805 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - - - - java.lang.RuntimeException: org.n52.wps.server.ExceptionReport: Could not create Inline Complex Data from the process result - - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - -2016-05-03 18:23:48 DEBUG SClient4WPS:850 - WPS FAILURE: - - java.lang.RuntimeException: org.n52.wps.server.ExceptionReport: Could not create Inline Complex Data from the process result - - OR PAUSED: null -2016-05-03 18:23:48 DEBUG SClient4WPS:888 - ComputationStatus: ComputationStatus [percentage=100.0, status=FAILED, endDate=null, message=null, errResource=null] -2016-05-03 18:24:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:24:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:25:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:25:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:26:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:26:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 18:27:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:27:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 18:27:06 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:27:06 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-03 18:27:06 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-03 18:27:06 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-03 18:27:06 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-03 18:27:06 DEBUG WPS2SM:208 - Default Schema: null -2016-05-03 18:27:06 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-03 18:27:06 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 18:27:06 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-03 18:27:06 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:27:06 DEBUG SClient4WPS:652 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 18:27:06 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-03 18:27:06 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:27:06 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 18:27:06 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 18:27:06 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 18:27:06 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 18:27:06 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-03 18:27:06 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-03 18:27:06 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-03 18:27:06 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 18:27:06 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-03 18:27:06 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 18:27:06 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-03 18:27:06 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-03 18:27:06 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:27:06 DEBUG SClient4WPS:652 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 18:27:06 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-03 18:27:06 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:27:06 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 18:27:06 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-03 18:27:06 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-03 18:27:06 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-03 18:27:06 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:27:06 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-03 18:27:06 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-03 18:27:06 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:27:06 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 18:27:06 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 18:27:06 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-03 18:27:06 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-03 18:27:06 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:27:06 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 18:27:06 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-03 18:27:06 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:27:06 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 18:27:06 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-03 18:27:06 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-03 18:27:06 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-03 18:27:06 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:27:06 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-03 18:27:06 DEBUG SClient4WPS:656 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-03 18:27:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:27:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 18:27:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:27:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:27:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:27:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:27:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:27:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:06 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 18:27:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:27:06 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 18:27:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:27:06 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 18:27:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:27:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:27:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:27:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:27:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:27:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 18:27:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:27:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:27:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:27:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 18:27:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:27:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:27:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:27:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:27:06 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 18:27:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 18:27:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:27:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:27:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:27:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 18:27:06 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 18:27:07 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 18:27:07 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 18:27:07 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 18:27:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 18:27:07 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 18:27:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 18:27:07 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 18:27:07 INFO WorkspaceExplorerServiceImpl:142 - end time - 240 msc 0 sec -2016-05-03 18:27:07 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 18:27:14 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:27:14 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:27:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:27:14 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 18:27:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:27:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:14 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:27:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:27:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 18:27:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:27:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:14 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:27:14 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:27:14 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 18:27:14 DEBUG ServiceEngine:306 - get() - start -2016-05-03 18:27:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:27:14 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:27:14 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 18:27:14 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 18:27:14 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 18:27:14 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 18:27:14 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 18:27:14 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 18:27:14 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 18:27:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:27:14 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:27:14 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 18:27:14 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 18:27:14 DEBUG MongoIO:77 - open mongo connection -2016-05-03 18:27:14 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 18:27:14 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:14 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:14 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:27:14 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2b1dec72, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6912ab4a, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@48abbd2a, socketFactory=javax.net.DefaultSocketFactory@31035ac, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 18:27:14 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 18:27:14 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 18:27:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:27:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:27:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:27:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:27:14 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:27:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:27:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:14 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1874768}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=3437926, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:14 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 18:27:14 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:14 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:14 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:27:14 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:27:14 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:27:14 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 18:27:14 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1874769}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1874769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 18:27:14 DEBUG command:56 - Command execution completed -2016-05-03 18:27:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1874769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 DEBUG command:56 - Command execution completed -2016-05-03 18:27:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1874769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 DEBUG command:56 - Command execution completed -2016-05-03 18:27:14 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 18:27:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1874769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 DEBUG command:56 - Command execution completed -2016-05-03 18:27:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1874769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 DEBUG command:56 - Command execution completed -2016-05-03 18:27:14 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1874769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:262826}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1338391, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:27:14 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2144565}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=850461, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:27:14 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 18:27:14 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1558365}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:27:14 INFO WorkspaceExplorerServiceImpl:188 - end time - 62 msc 0 sec -2016-05-03 18:27:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1846303, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 18:27:15 DEBUG query:56 - Query completed -2016-05-03 18:27:15 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 18:27:15 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2144565} -2016-05-03 18:27:15 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:262826} -2016-05-03 18:27:15 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1558365} -2016-05-03 18:27:15 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1874769}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 18:27:15 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1874769} -2016-05-03 18:27:15 INFO MongoIO:508 - Mongo has been closed -2016-05-03 18:27:15 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 18:27:15 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 18:27:15 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 18:27:15 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1874768} -2016-05-03 18:27:15 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 18:27:15 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 18:27:16 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-03 18:27:16 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-03 18:27:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:27:16 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 18:27:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 18:27:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:16 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-03 18:27:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:27:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 18:27:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:27:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:16 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-03 18:27:16 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-03 18:27:16 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-03 18:27:16 DEBUG ServiceEngine:306 - get() - start -2016-05-03 18:27:16 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:27:16 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:27:16 DEBUG ServiceEngine:62 - path(String) - name: DBScan -2016-05-03 18:27:16 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 18:27:16 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 18:27:16 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 18:27:16 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 18:27:16 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 18:27:16 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-03 18:27:16 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:27:16 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:27:16 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 18:27:16 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 18:27:16 DEBUG MongoIO:77 - open mongo connection -2016-05-03 18:27:16 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 18:27:16 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:16 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:16 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:27:16 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2b1dec72, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6912ab4a, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@48abbd2a, socketFactory=javax.net.DefaultSocketFactory@31035ac, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 18:27:16 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 18:27:16 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 18:27:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:27:16 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 18:27:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:27:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:27:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:16 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 18:27:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:27:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:16 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-03 18:27:16 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-03 18:27:16 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:262827}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1769282, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:16 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 18:27:16 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:16 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:27:16 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1874770}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2144566}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=775262, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:27:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=6757522, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:16 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:27:16 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1558367}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1520954, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 18:27:16 INFO JCRServlets:697 - Calling Servlet get Parents By Id 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-03 18:27:16 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-03 18:27:16 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1874771}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1874771}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 DEBUG command:56 - Command execution completed -2016-05-03 18:27:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1874771}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 DEBUG command:56 - Command execution completed -2016-05-03 18:27:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1874771}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 DEBUG command:56 - Command execution completed -2016-05-03 18:27:16 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-03 18:27:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1874771}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 DEBUG command:56 - Command execution completed -2016-05-03 18:27:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1874771}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 DEBUG command:56 - Command execution completed -2016-05-03 18:27:16 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1874771}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 48 msc 0 sec -2016-05-03 18:27:16 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 18:27:16 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=7ba62008-739a-4787-ae33-7938ad109a54, name=DBScan, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 18:27:16 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 18:27:16 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 18:27:16 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 18:27:16 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 18:27:16 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:27:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 18:27:17 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:27:17 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:27:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:27:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:27:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:27:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:17 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:27:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:27:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 18:27:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:27:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:17 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:27:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:27:17 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 18:27:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:27:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:17 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:27:17 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:27:17 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:27:17 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-03 18:27:17 DEBUG query:56 - Query completed -2016-05-03 18:27:17 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-05-03 18:27:17 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2144566} -2016-05-03 18:27:17 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:262827} -2016-05-03 18:27:17 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1558367} -2016-05-03 18:27:17 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1874771}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 18:27:17 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1874771} -2016-05-03 18:27:17 INFO MongoIO:508 - Mongo has been closed -2016-05-03 18:27:17 INFO DefaultMongoClient:1329 - getFolderTotalVolume 849 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-03 18:27:17 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1874770} -2016-05-03 18:27:17 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-03 18:27:17 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-03 18:27:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:27:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 18:27:18 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:27:18 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=13d0382e-8833-4df7-b4dc-61bbba61b3e5, name=hcaf_filtered.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 17:10:22 CET 2016] -2016-05-03 18:27:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:18 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:27:18 DEBUG ServiceEngine:193 - get() - start -2016-05-03 18:27:18 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:27:18 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:27:18 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-03 18:27:18 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-03 18:27:18 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 18:27:18 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 18:27:18 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 18:27:18 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 18:27:18 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:27:18 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:27:18 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-03 18:27:18 DEBUG Operation:173 - get(String) - start -2016-05-03 18:27:18 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 18:27:18 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 18:27:18 DEBUG MongoIO:77 - open mongo connection -2016-05-03 18:27:18 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 18:27:18 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:18 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:18 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:27:18 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2b1dec72, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6912ab4a, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@48abbd2a, socketFactory=javax.net.DefaultSocketFactory@31035ac, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 18:27:18 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 18:27:18 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 18:27:18 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:262831}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1174072, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:18 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 18:27:18 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:18 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:27:18 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2144570}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=972102, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:27:18 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1558372}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1464766, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 18:27:18 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1874777}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1238976, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:18 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 18:27:18 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1874780}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1874780}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG command:56 - Command execution completed -2016-05-03 18:27:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1874780}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG command:56 - Command execution completed -2016-05-03 18:27:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1874780}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG command:56 - Command execution completed -2016-05-03 18:27:18 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 18:27:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1874780}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG command:56 - Command execution completed -2016-05-03 18:27:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1874780}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG command:56 - Command execution completed -2016-05-03 18:27:18 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-03 18:27:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1874780}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG command:56 - Command execution completed -2016-05-03 18:27:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1874780}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG command:56 - Command execution completed -2016-05-03 18:27:18 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-03 18:27:18 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1874780}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG query:56 - Query completed -2016-05-03 18:27:18 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-03 18:27:18 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 18:27:18 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 18:27:18 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1874780}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG update:56 - Update completed -2016-05-03 18:27:18 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1874780}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG query:56 - Query completed -2016-05-03 18:27:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 18:27:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 18:27:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 18:27:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 18:27:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 18:27:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 18:27:18 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-03 18:27:18 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered.csv -2016-05-03 18:27:18 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 18:27:18 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 18:27:18 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:27:18 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:27:18 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-03 18:27:18 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-03 18:27:18 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 18:27:18 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 18:27:18 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 18:27:18 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 18:27:18 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 18:27:18 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 18:27:18 DEBUG BucketCoding:42 - coding name done -2016-05-03 18:27:18 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 18:27:18 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 18:27:18 DEBUG MongoIO:77 - open mongo connection -2016-05-03 18:27:18 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 18:27:18 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:18 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:18 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:27:18 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2b1dec72, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6912ab4a, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@48abbd2a, socketFactory=javax.net.DefaultSocketFactory@31035ac, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 18:27:18 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 18:27:18 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 18:27:18 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1874783}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:262835}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1319839, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1198601, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:18 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 18:27:18 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:18 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 18:27:18 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:27:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:27:18 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2144574}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=776173, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 18:27:18 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1874785}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1874785}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG command:56 - Command execution completed -2016-05-03 18:27:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1874785}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG command:56 - Command execution completed -2016-05-03 18:27:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1874785}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG command:56 - Command execution completed -2016-05-03 18:27:18 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1558377}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-03 18:27:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-03 18:27:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1874785}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG command:56 - Command execution completed -2016-05-03 18:27:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1463719, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 18:27:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1874785}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 18:27:18 DEBUG command:56 - Command execution completed -2016-05-03 18:27:18 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-03 18:27:18 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1874785}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 18:27:18 DEBUG query:56 - Query completed -2016-05-03 18:27:18 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-03 18:27:18 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2144574} -2016-05-03 18:27:18 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:262835} -2016-05-03 18:27:18 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1558377} -2016-05-03 18:27:18 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1874785}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 18:27:18 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1874785} -2016-05-03 18:27:18 INFO MongoIO:508 - Mongo has been closed -2016-05-03 18:27:18 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1874783} -2016-05-03 18:27:18 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-03 18:27:18 INFO Operation:55 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-03 18:27:18 INFO Operation:57 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-03 18:27:18 DEBUG Operation:87 - translating: http://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-03 18:27:18 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 18:27:18 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-03 18:27:18 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-03 18:27:18 INFO Operation:65 - URL translated: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-03 18:27:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 18:27:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 18:27:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 18:27:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 18:27:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 18:27:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 18:27:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:27:20 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 18:27:20 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2144570} -2016-05-03 18:27:20 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:262831} -2016-05-03 18:27:20 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1558372} -2016-05-03 18:27:20 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1874780}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 18:27:20 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1874780} -2016-05-03 18:27:20 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1874777} -2016-05-03 18:27:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:27:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:27:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:27:33 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-05-03 18:27:33 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-03 18:27:33 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-03 18:27:33 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-03 18:27:33 DEBUG WPS2SM:208 - Default Schema: null -2016-05-03 18:27:33 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-03 18:27:33 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 18:27:33 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-03 18:27:33 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:27:33 DEBUG SClient4WPS:684 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 18:27:33 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-03 18:27:33 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:27:33 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 18:27:33 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 18:27:33 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 18:27:33 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 18:27:33 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-03 18:27:33 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-03 18:27:33 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-03 18:27:33 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 18:27:33 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-03 18:27:33 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 18:27:33 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-03 18:27:33 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-03 18:27:33 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:27:33 DEBUG SClient4WPS:684 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 18:27:33 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-03 18:27:33 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:27:33 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 18:27:33 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-03 18:27:33 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-03 18:27:33 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-03 18:27:33 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:27:33 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-03 18:27:33 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-03 18:27:33 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:27:33 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 18:27:33 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 18:27:33 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-03 18:27:33 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-03 18:27:33 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:27:33 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 18:27:33 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-03 18:27:33 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:27:33 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 18:27:33 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-03 18:27:33 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-03 18:27:33 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-03 18:27:33 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:27:33 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-03 18:27:33 DEBUG SClient4WPS:692 - UserInputs= key:OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-03 18:27:33 DEBUG SClient4WPS:692 - UserInputs= key:FeaturesColumnNames, value=depthmean|sstmnmax|salinitymean -2016-05-03 18:27:33 DEBUG SClient4WPS:692 - UserInputs= key:OccurrencePointsClusterLabel, value=test -2016-05-03 18:27:33 DEBUG SClient4WPS:692 - UserInputs= key:epsilon, value=10 -2016-05-03 18:27:33 DEBUG SClient4WPS:692 - UserInputs= key:min_points, value=1 -2016-05-03 18:27:33 DEBUG SClient4WPS:753 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-03 18:27:33 DEBUG SClient4WPS:736 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymean -2016-05-03 18:27:33 DEBUG SClient4WPS:736 - Configuring Literal: OccurrencePointsClusterLabel to: test -2016-05-03 18:27:33 DEBUG SClient4WPS:736 - Configuring Literal: epsilon to: 10 -2016-05-03 18:27:33 DEBUG SClient4WPS:736 - Configuring Literal: min_points to: 1 -2016-05-03 18:27:33 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 18:27:35 DEBUG SClient4WPS:384 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - - - OccurrencePointsTable - - - - FeaturesColumnNames - - depthmean|sstmnmax|salinitymean - - - - OccurrencePointsClusterLabel - - test - - - - epsilon - - 10 - - - - min_points - - 1 - - - - - - - OutputTable - - - non_deterministic_output - - - - -2016-05-03 18:27:35 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-03 18:27:35 DEBUG SClient4WPS:403 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=5052b312-1b81-4f1d-915d-e52a1e9bb6b0 -2016-05-03 18:27:35 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 18:27:35 DEBUG SClient4WPS:773 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=5052b312-1b81-4f1d-915d-e52a1e9bb6b0 -2016-05-03 18:27:35 DEBUG SClient4WPS:698 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=5052b312-1b81-4f1d-915d-e52a1e9bb6b0 -2016-05-03 18:27:35 DEBUG SClient4WPS:709 - ComputationId: ComputationId [id=5052b312-1b81-4f1d-915d-e52a1e9bb6b0, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=5052b312-1b81-4f1d-915d-e52a1e9bb6b0] -2016-05-03 18:27:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 18:27:45 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 18:27:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:27:45 DEBUG SClient4WPS:789 - GetComputationStatus(): ComputationId=ComputationId [id=5052b312-1b81-4f1d-915d-e52a1e9bb6b0, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=5052b312-1b81-4f1d-915d-e52a1e9bb6b0] -2016-05-03 18:27:45 INFO StatWPSClientSession:114 - CONNECT -2016-05-03 18:27:45 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-03 18:27:45 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=5052b312-1b81-4f1d-915d-e52a1e9bb6b0 -2016-05-03 18:27:45 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 18:27:45 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-03 18:27:45 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-03 18:27:45 DEBUG SClient4WPS:805 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymean,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/SXdoV0NFYzRuTWdMN21JNmxwWWp3QVUwbGp5QktOZnJHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-05-03 18:27:45 DEBUG SClient4WPS:863 - WPS SUCCESS -2016-05-03 18:27:45 DEBUG SClient4WPS:888 - ComputationStatus: ComputationStatus [percentage=100.0, status=COMPLETE, endDate=null, message=null, errResource=null] -2016-05-03 18:27:45 DEBUG Log:91 - getResourceByComputationId: ComputationId [id=5052b312-1b81-4f1d-915d-e52a1e9bb6b0, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=5052b312-1b81-4f1d-915d-e52a1e9bb6b0] -2016-05-03 18:27:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:27:45 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 18:27:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:27:45 DEBUG SClient4WPS:423 - RetrieveProcessResult: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=5052b312-1b81-4f1d-915d-e52a1e9bb6b0 -2016-05-03 18:27:45 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=5052b312-1b81-4f1d-915d-e52a1e9bb6b0 -2016-05-03 18:27:45 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 18:27:45 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-03 18:27:45 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-03 18:27:45 DEBUG SClient4WPS:434 - Response: - - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymean,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/SXdoV0NFYzRuTWdMN21JNmxwWWp3QVUwbGp5QktOZnJHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-05-03 18:27:45 DEBUG SClient4WPS:958 - Process Executed -2016-05-03 18:27:45 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-03 18:27:45 DEBUG SClient4WPS:574 - Node Name: #text -2016-05-03 18:27:45 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-03 18:27:45 DEBUG SClient4WPS:574 - Node Name: ogr:FeatureCollection -2016-05-03 18:27:45 DEBUG SClient4WPS:574 - Node Name: gml:featureMember -2016-05-03 18:27:45 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-03 18:27:45 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/SXdoV0NFYzRuTWdMN21JNmxwWWp3QVUwbGp5QktOZnJHbWJQNStIS0N6Yz0 -2016-05-03 18:27:45 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] -2016-05-03 18:27:45 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:text/csv -2016-05-03 18:27:45 DEBUG SClient4WPS:503 - ResponseWPS Map: F0-->ResponseWPS [data=http://data-d.d4science.org/SXdoV0NFYzRuTWdMN21JNmxwWWp3QVUwbGp5QktOZnJHbWJQNStIS0N6Yz0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], mimeType=text/csv] -2016-05-03 18:27:45 DEBUG SClient4WPS:1006 - Adding OBJ:F0 -2016-05-03 18:27:45 DEBUG SClient4WPS:1012 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/SXdoV0NFYzRuTWdMN21JNmxwWWp3QVUwbGp5QktOZnJHbWJQNStIS0N6Yz0, name=F0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], typology=OBJECT] -2016-05-03 18:27:45 DEBUG Log:91 - Resoure: MapResource [map={F0=FileResource [url=http://data-d.d4science.org/SXdoV0NFYzRuTWdMN21JNmxwWWp3QVUwbGp5QktOZnJHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F0, getName()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getDescription()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getResourceType()=FILE]}, getResourceId()=mapResource, getName()=Resources, getDescription()=Resources, getResourceType()=MAP] -2016-05-03 18:28:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 18:28:00 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 18:28:00 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:28:00 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-05-03 18:28:00 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-03 18:28:00 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-03 18:28:00 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-03 18:28:00 DEBUG WPS2SM:208 - Default Schema: null -2016-05-03 18:28:00 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-03 18:28:00 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 18:28:00 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-03 18:28:00 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:28:00 DEBUG SClient4WPS:684 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 18:28:00 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-03 18:28:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:28:00 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 18:28:00 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 18:28:00 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 18:28:00 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 18:28:00 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-03 18:28:00 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-03 18:28:00 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-03 18:28:00 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 18:28:00 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-03 18:28:00 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 18:28:00 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-03 18:28:00 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-03 18:28:00 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:28:00 DEBUG SClient4WPS:684 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 18:28:00 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-03 18:28:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:28:00 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 18:28:00 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-03 18:28:00 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-03 18:28:00 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-03 18:28:00 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:28:00 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-03 18:28:00 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-03 18:28:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:28:00 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 18:28:00 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 18:28:00 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-03 18:28:00 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-03 18:28:00 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:28:00 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 18:28:00 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-03 18:28:00 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:28:00 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 18:28:00 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-03 18:28:00 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-03 18:28:00 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-03 18:28:00 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:28:00 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-03 18:28:00 DEBUG SClient4WPS:692 - UserInputs= key:OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-03 18:28:00 DEBUG SClient4WPS:692 - UserInputs= key:FeaturesColumnNames, value=depthmean|sstmnmax|salinitymean -2016-05-03 18:28:00 DEBUG SClient4WPS:692 - UserInputs= key:OccurrencePointsClusterLabel, value=test -2016-05-03 18:28:00 DEBUG SClient4WPS:692 - UserInputs= key:epsilon, value=10 -2016-05-03 18:28:00 DEBUG SClient4WPS:692 - UserInputs= key:min_points, value=1 -2016-05-03 18:28:00 DEBUG SClient4WPS:753 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-03 18:28:00 DEBUG SClient4WPS:736 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymean -2016-05-03 18:28:00 DEBUG SClient4WPS:736 - Configuring Literal: OccurrencePointsClusterLabel to: test -2016-05-03 18:28:00 DEBUG SClient4WPS:736 - Configuring Literal: epsilon to: 10 -2016-05-03 18:28:00 DEBUG SClient4WPS:736 - Configuring Literal: min_points to: 1 -2016-05-03 18:28:00 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 18:28:01 DEBUG SClient4WPS:384 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - - - OccurrencePointsTable - - - - FeaturesColumnNames - - depthmean|sstmnmax|salinitymean - - - - OccurrencePointsClusterLabel - - test - - - - epsilon - - 10 - - - - min_points - - 1 - - - - - - - OutputTable - - - non_deterministic_output - - - - -2016-05-03 18:28:01 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-03 18:28:01 DEBUG SClient4WPS:403 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9b3ffdc8-08e2-44df-92a3-e429f8d6c94a -2016-05-03 18:28:01 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 18:28:01 DEBUG SClient4WPS:773 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9b3ffdc8-08e2-44df-92a3-e429f8d6c94a -2016-05-03 18:28:01 DEBUG SClient4WPS:698 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9b3ffdc8-08e2-44df-92a3-e429f8d6c94a -2016-05-03 18:28:01 DEBUG SClient4WPS:709 - ComputationId: ComputationId [id=9b3ffdc8-08e2-44df-92a3-e429f8d6c94a, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9b3ffdc8-08e2-44df-92a3-e429f8d6c94a] -2016-05-03 18:28:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:28:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 18:28:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:28:11 DEBUG SClient4WPS:789 - GetComputationStatus(): ComputationId=ComputationId [id=9b3ffdc8-08e2-44df-92a3-e429f8d6c94a, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9b3ffdc8-08e2-44df-92a3-e429f8d6c94a] -2016-05-03 18:28:11 INFO StatWPSClientSession:114 - CONNECT -2016-05-03 18:28:11 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-03 18:28:11 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9b3ffdc8-08e2-44df-92a3-e429f8d6c94a -2016-05-03 18:28:11 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 18:28:11 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-03 18:28:11 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-03 18:28:11 DEBUG SClient4WPS:805 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymean,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/aTExa3lsb1dLUm9MN21JNmxwWWp3Ry9IdUZiN2ZoVnVHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-05-03 18:28:11 DEBUG SClient4WPS:863 - WPS SUCCESS -2016-05-03 18:28:11 DEBUG SClient4WPS:888 - ComputationStatus: ComputationStatus [percentage=100.0, status=COMPLETE, endDate=null, message=null, errResource=null] -2016-05-03 18:28:11 DEBUG Log:91 - getResourceByComputationId: ComputationId [id=9b3ffdc8-08e2-44df-92a3-e429f8d6c94a, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9b3ffdc8-08e2-44df-92a3-e429f8d6c94a] -2016-05-03 18:28:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:28:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:28:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:28:11 DEBUG SClient4WPS:423 - RetrieveProcessResult: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9b3ffdc8-08e2-44df-92a3-e429f8d6c94a -2016-05-03 18:28:11 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=9b3ffdc8-08e2-44df-92a3-e429f8d6c94a -2016-05-03 18:28:11 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 18:28:11 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-03 18:28:11 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-03 18:28:11 DEBUG SClient4WPS:434 - Response: - - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymean,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/aTExa3lsb1dLUm9MN21JNmxwWWp3Ry9IdUZiN2ZoVnVHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-05-03 18:28:11 DEBUG SClient4WPS:958 - Process Executed -2016-05-03 18:28:11 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-03 18:28:11 DEBUG SClient4WPS:574 - Node Name: #text -2016-05-03 18:28:11 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-03 18:28:11 DEBUG SClient4WPS:574 - Node Name: ogr:FeatureCollection -2016-05-03 18:28:11 DEBUG SClient4WPS:574 - Node Name: gml:featureMember -2016-05-03 18:28:11 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-03 18:28:11 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/aTExa3lsb1dLUm9MN21JNmxwWWp3Ry9IdUZiN2ZoVnVHbWJQNStIS0N6Yz0 -2016-05-03 18:28:11 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] -2016-05-03 18:28:11 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:text/csv -2016-05-03 18:28:11 DEBUG SClient4WPS:503 - ResponseWPS Map: F0-->ResponseWPS [data=http://data-d.d4science.org/aTExa3lsb1dLUm9MN21JNmxwWWp3Ry9IdUZiN2ZoVnVHbWJQNStIS0N6Yz0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], mimeType=text/csv] -2016-05-03 18:28:11 DEBUG SClient4WPS:1006 - Adding OBJ:F0 -2016-05-03 18:28:11 DEBUG SClient4WPS:1012 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/aTExa3lsb1dLUm9MN21JNmxwWWp3Ry9IdUZiN2ZoVnVHbWJQNStIS0N6Yz0, name=F0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], typology=OBJECT] -2016-05-03 18:28:11 DEBUG Log:91 - Resoure: MapResource [map={F0=FileResource [url=http://data-d.d4science.org/aTExa3lsb1dLUm9MN21JNmxwWWp3Ry9IdUZiN2ZoVnVHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F0, getName()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getDescription()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getResourceType()=FILE]}, getResourceId()=mapResource, getName()=Resources, getDescription()=Resources, getResourceType()=MAP] -2016-05-03 18:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 18:28:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 18:28:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 18:28:51 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 18:28:51 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 18:28:51 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-05-03 18:28:51 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-03 18:28:51 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-03 18:28:51 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-03 18:28:51 DEBUG WPS2SM:208 - Default Schema: null -2016-05-03 18:28:51 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-03 18:28:51 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-03 18:28:51 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-03 18:28:51 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:28:51 DEBUG SClient4WPS:684 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-03 18:28:51 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-03 18:28:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:28:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 18:28:51 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 18:28:51 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 18:28:51 DEBUG WPS2SM:111 - Machter find: true -2016-05-03 18:28:51 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-03 18:28:51 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-03 18:28:51 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-03 18:28:51 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-03 18:28:51 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-03 18:28:51 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-03 18:28:51 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-03 18:28:51 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-03 18:28:51 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:28:51 DEBUG SClient4WPS:684 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-03 18:28:51 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-03 18:28:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:28:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 18:28:51 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-03 18:28:51 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-03 18:28:51 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-03 18:28:51 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:28:51 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-03 18:28:51 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-03 18:28:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:28:51 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 18:28:51 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-03 18:28:51 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-03 18:28:51 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-03 18:28:51 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:28:51 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-03 18:28:51 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-03 18:28:51 DEBUG WPS2SM:92 - WPS type: -2016-05-03 18:28:51 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-03 18:28:51 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-03 18:28:51 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-03 18:28:51 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-03 18:28:51 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 18:28:51 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-03 18:28:51 DEBUG SClient4WPS:692 - UserInputs= key:OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-03 18:28:51 DEBUG SClient4WPS:692 - UserInputs= key:FeaturesColumnNames, value=depthmean|sstmnmax|salinitymean -2016-05-03 18:28:51 DEBUG SClient4WPS:692 - UserInputs= key:OccurrencePointsClusterLabel, value=test -2016-05-03 18:28:51 DEBUG SClient4WPS:692 - UserInputs= key:epsilon, value=10 -2016-05-03 18:28:51 DEBUG SClient4WPS:692 - UserInputs= key:min_points, value=1 -2016-05-03 18:28:51 DEBUG SClient4WPS:753 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-03 18:28:51 DEBUG SClient4WPS:736 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymean -2016-05-03 18:28:51 DEBUG SClient4WPS:736 - Configuring Literal: OccurrencePointsClusterLabel to: test -2016-05-03 18:28:51 DEBUG SClient4WPS:736 - Configuring Literal: epsilon to: 10 -2016-05-03 18:28:51 DEBUG SClient4WPS:736 - Configuring Literal: min_points to: 1 -2016-05-03 18:28:51 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 18:28:51 DEBUG SClient4WPS:407 - ExecuteProcessAsync: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& -2016-05-03 18:28:51 DEBUG SClient4WPS:779 - WPSProcess->Returning Exception to the SM:Process error in WPS Execution -2016-05-03 18:28:51 ERROR DataMinerManagerServiceImpl:153 - Error in start computation: Process error in WPS Execution -2016-05-03 18:29:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 18:29:10 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 09:54:27 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-04 09:54:27 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-04 09:54:27 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-04 09:54:27 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 09:54:28 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 09:54:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 09:54:28 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 09:54:28 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@45dce2cc -2016-05-04 09:54:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 09:54:28 INFO ASLSession:352 - Logging the entrance -2016-05-04 09:54:28 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 09:54:28 DEBUG TemplateModel:83 - 2016-05-04 09:54:28, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 09:54:28 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 09:54:28 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 09:54:29 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 09:54:29 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 09:54:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 09:54:29 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 09:54:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 09:54:29 INFO ASLSession:352 - Logging the entrance -2016-05-04 09:54:29 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 09:54:29 DEBUG TemplateModel:83 - 2016-05-04 09:54:29, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 09:54:29 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 09:54:29 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 09:54:29 INFO DefaultScanner:63 - matched 28 resources from 113 urls in 103 ms -2016-05-04 09:54:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-04 09:54:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-04 09:54:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-04 09:54:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-04 09:54:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-04 09:54:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-04 09:54:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-04 09:54:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-04 09:54:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-04 09:54:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-04 09:54:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-04 09:54:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-04 09:54:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-04 09:54:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-04 09:54:29 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-04 09:54:30 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 09:54:30 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 09:54:30 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@7a0f1c31 -2016-05-04 09:54:30 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3b76b269 -2016-05-04 09:54:30 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@f55d987 -2016-05-04 09:54:30 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@35ffb1e2 -2016-05-04 09:54:30 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 161 ms -2016-05-04 09:54:30 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-04 09:54:30 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-04 09:54:30 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-04 09:54:30 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-04 09:54:30 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-04 09:54:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 09:54:30 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 09:54:30 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-04 09:54:30 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 09:54:30 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 09:54:30 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 09:54:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 09:54:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 09:54:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 09:54:30 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-04 09:54:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 09:54:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 09:54:30 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 32 ms -2016-05-04 09:54:30 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-04 09:54:30 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 09:54:30 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-04 09:54:30 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 09:54:30 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-04 09:54:30 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-04 09:54:30 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-04 09:54:30 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-04 09:54:30 DEBUG JCRRepository:271 - Initialize repository -2016-05-04 09:54:30 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-04 09:54:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-04 09:54:30 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 09:54:30 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-04 09:54:30 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 20 ms -2016-05-04 09:54:31 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-04 09:54:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 09:54:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 09:54:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 09:54:31 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-04 09:54:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 09:54:31 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-04 09:54:31 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 09:54:31 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 09:54:31 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-04 09:54:31 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 09:54:31 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 09:54:31 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-04 09:54:31 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-04 09:54:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 09:54:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 09:54:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 09:54:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 09:54:31 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 09:54:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 09:54:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 09:54:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 09:54:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 09:54:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 09:54:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 09:54:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 09:54:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 09:54:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 09:54:31 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 09:54:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 09:54:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 09:54:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 09:54:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 09:54:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 09:54:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 09:54:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 09:54:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 09:54:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 09:54:31 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 09:54:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 09:54:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 09:54:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 09:54:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 09:54:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 09:54:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 09:54:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 09:54:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 09:54:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 09:54:32 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 09:54:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 09:54:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 09:54:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 09:54:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 09:54:32 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 09:54:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 09:54:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 09:54:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 09:54:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 09:54:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 09:54:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 09:54:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 09:54:32 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 09:54:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 09:54:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 09:54:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 09:54:32 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 09:54:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 09:54:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 09:54:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 09:54:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 09:54:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 09:54:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 09:54:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 09:54:32 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 09:54:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 09:54:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 09:54:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 09:54:32 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 09:54:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 09:54:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 09:54:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 09:54:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 09:54:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 09:54:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 09:54:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 09:54:32 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 09:54:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 09:54:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 09:54:33 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 09:54:33 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-04 10:13:37 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-04 10:13:37 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-04 10:13:37 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-04 10:13:37 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 10:13:37 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 10:13:37 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-04 10:13:37 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 10:13:37 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@55a2d006 -2016-05-04 10:13:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-04 10:13:37 INFO ASLSession:352 - Logging the entrance -2016-05-04 10:13:37 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 10:13:37 DEBUG TemplateModel:83 - 2016-05-04 10:13:37, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 10:13:37 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:13:37 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 10:13:40 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 10:13:40 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 10:13:40 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:13:40 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 10:13:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:13:40 INFO ASLSession:352 - Logging the entrance -2016-05-04 10:13:40 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 10:13:40 DEBUG TemplateModel:83 - 2016-05-04 10:13:40, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 10:13:40 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:13:40 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 10:13:40 INFO DefaultScanner:63 - matched 28 resources from 113 urls in 122 ms -2016-05-04 10:13:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-04 10:13:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-04 10:13:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-04 10:13:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-04 10:13:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-04 10:13:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-04 10:13:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-04 10:13:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-04 10:13:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-04 10:13:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-04 10:13:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-04 10:13:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-04 10:13:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-04 10:13:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-04 10:13:40 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-04 10:13:40 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:13:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 10:13:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@65e544af -2016-05-04 10:13:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@73621baa -2016-05-04 10:13:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@44559b23 -2016-05-04 10:13:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@106ab05d -2016-05-04 10:13:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 98 ms -2016-05-04 10:13:41 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-04 10:13:41 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-04 10:13:41 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-04 10:13:41 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-04 10:13:41 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-04 10:13:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:13:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:13:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-04 10:13:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 21 ms -2016-05-04 10:13:41 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-04 10:13:41 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:13:41 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-04 10:13:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 10:13:41 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 10:13:41 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 10:13:41 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 10:13:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:13:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:13:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:13:41 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-04 10:13:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:13:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:13:41 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-04 10:13:41 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-04 10:13:41 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-04 10:13:41 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-04 10:13:41 DEBUG JCRRepository:271 - Initialize repository -2016-05-04 10:13:41 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-04 10:13:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 10:13:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:13:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-04 10:13:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-04 10:13:42 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-04 10:13:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:13:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:13:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:13:42 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-04 10:13:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:13:42 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-04 10:13:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 10:13:42 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 10:13:42 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-04 10:13:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 10:13:42 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 10:13:42 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-04 10:13:42 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-04 10:13:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:13:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:13:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:13:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:13:42 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 10:13:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 10:13:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:13:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:13:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:13:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:13:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:13:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:13:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:13:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:13:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:13:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 10:13:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:13:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:13:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:13:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:13:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:13:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:13:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:13:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:13:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:13:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 10:13:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:13:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:13:42 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:13:42 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-04 10:13:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:13:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:13:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:13:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:13:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:13:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:13:43 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:13:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 10:13:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:13:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:13:43 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 10:13:43 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 10:13:43 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 10:13:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:13:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:13:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:13:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:13:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:13:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:13:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:13:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:13:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:13:43 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 10:13:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:13:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:13:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:13:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:13:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:13:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:13:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:13:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:13:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:13:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:13:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:13:43 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 10:13:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:13:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:13:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:13:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:13:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:13:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:13:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:13:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:13:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:13:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:13:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:13:44 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 10:13:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:13:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:19 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-04 10:18:19 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-04 10:18:19 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-04 10:18:19 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 10:18:19 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 10:18:19 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:18:19 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 10:18:19 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@26865ddd -2016-05-04 10:18:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:18:19 INFO ASLSession:352 - Logging the entrance -2016-05-04 10:18:19 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 10:18:19 DEBUG TemplateModel:83 - 2016-05-04 10:18:19, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 10:18:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:18:19 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 10:18:22 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 10:18:22 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 10:18:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:18:22 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 10:18:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:18:22 INFO ASLSession:352 - Logging the entrance -2016-05-04 10:18:22 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 10:18:22 DEBUG TemplateModel:83 - 2016-05-04 10:18:22, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 10:18:22 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:18:22 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 10:18:22 INFO DefaultScanner:63 - matched 28 resources from 113 urls in 125 ms -2016-05-04 10:18:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-04 10:18:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-04 10:18:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-04 10:18:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-04 10:18:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-04 10:18:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-04 10:18:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-04 10:18:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-04 10:18:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-04 10:18:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-04 10:18:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-04 10:18:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-04 10:18:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-04 10:18:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-04 10:18:22 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-04 10:18:22 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:18:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 10:18:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@2329f795 -2016-05-04 10:18:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@34979264 -2016-05-04 10:18:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@5ad9a2a -2016-05-04 10:18:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@1513c1c8 -2016-05-04 10:18:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 103 ms -2016-05-04 10:18:22 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-04 10:18:22 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-04 10:18:22 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-04 10:18:22 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-04 10:18:22 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-04 10:18:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:18:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:18:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-04 10:18:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 26 ms -2016-05-04 10:18:22 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-04 10:18:22 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:18:22 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-04 10:18:22 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 10:18:23 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 10:18:23 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 10:18:23 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 10:18:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:18:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:18:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:18:23 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-04 10:18:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:18:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:18:23 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-04 10:18:23 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-04 10:18:23 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-04 10:18:23 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-04 10:18:23 DEBUG JCRRepository:271 - Initialize repository -2016-05-04 10:18:23 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-04 10:18:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 10:18:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:18:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-04 10:18:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 23 ms -2016-05-04 10:18:23 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-04 10:18:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:18:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:18:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:18:23 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-04 10:18:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:18:23 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-04 10:18:23 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 10:18:23 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 10:18:23 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-04 10:18:23 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 10:18:23 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 10:18:23 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-04 10:18:23 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-04 10:18:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:18:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:18:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:23 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 10:18:23 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:18:24 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-04 10:18:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 10:18:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:18:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:18:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:18:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:18:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:18:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:18:24 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:18:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 10:18:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:18:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:18:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:18:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:18:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:18:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:18:24 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:18:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 10:18:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:18:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:18:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:18:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:18:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:18:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:18:24 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:18:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 10:18:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:25 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 10:18:25 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 10:18:25 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 10:18:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:18:25 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:18:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:18:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:18:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:18:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:18:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:18:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:18:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:18:25 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 10:18:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:18:25 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:18:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:18:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:18:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:18:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:18:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:18:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:18:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:18:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:18:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:18:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:18:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:18:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:18:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:18:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:18:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:18:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:18:25 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 10:18:25 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 10:18:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:26 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-04 10:18:26 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-04 10:18:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 10:18:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:18:26 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-04 10:18:26 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:18:26 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 10:18:26 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-05-04 10:18:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 10:18:26 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:18:26 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-04 10:18:26 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-04 10:18:26 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-04 10:18:26 INFO ISClientConnector:82 - found only one RR, take it -2016-05-04 10:18:26 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-04 10:18:26 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-04 10:18:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 10:18:26 DEBUG StorageClient:517 - set scope: /gcube -2016-05-04 10:18:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 10:18:26 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:18:26 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 10:18:26 INFO WorkspaceExplorerServiceImpl:188 - end time - 159 msc 0 sec -2016-05-04 10:18:26 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-04 10:18:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 10:18:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 10:18:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 10:18:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:18:26 INFO WorkspaceExplorerServiceImpl:188 - end time - 850 msc 0 sec -2016-05-04 10:18:26 INFO WorkspaceExplorerServiceImpl:188 - end time - 391 msc 0 sec -2016-05-04 10:18:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:18:48 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:18:48 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:18:48 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 10:18:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:18:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:18:49 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:18:49 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 10:18:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:18:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:18:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:18:50 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-04 10:18:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:18:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:18:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:18:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:18:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:18:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:18:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:50 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 10:18:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 10:18:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:18:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:18:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:18:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:18:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:18:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:18:50 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:18:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 10:18:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:18:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:18:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:18:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:18:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:18:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:18:50 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:18:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 10:18:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:18:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:18:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:18:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:18:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:18:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:18:50 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:18:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 10:18:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:18:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:18:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:18:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:18:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:18:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:18:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:18:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:18:51 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:18:51 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-04 10:18:51 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 10:18:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:18:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:18:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:18:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:18:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:18:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:18:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:18:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:18:51 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-04 10:18:51 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 10:18:51 INFO WorkspaceExplorerServiceImpl:188 - end time - 92 msc 0 sec -2016-05-04 10:18:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:18:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:18:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:18:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:18:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:18:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:18:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:18:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:18:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:18:51 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 10:18:51 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-04 10:18:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:18:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:18:51 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-04 10:18:51 INFO WorkspaceExplorerServiceImpl:188 - end time - 144 msc 0 sec -2016-05-04 10:18:51 INFO WorkspaceExplorerServiceImpl:188 - end time - 202 msc 0 sec -2016-05-04 10:19:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:19:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:19:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:19:04 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-04 10:19:04 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:19:04 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 10:19:05 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-04 10:19:05 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-04 10:19:05 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-04 10:19:05 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-04 10:19:05 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-04 10:19:05 DEBUG SClient4WPS:300 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-04 10:19:05 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-04 10:19:05 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-04 10:19:05 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-04 10:19:05 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-04 10:19:05 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:19:05 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-04 10:19:05 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-04 10:19:05 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-04 10:19:05 DEBUG WPS2SM:208 - Default Schema: null -2016-05-04 10:19:05 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-04 10:19:05 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-04 10:19:05 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-04 10:19:05 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:19:05 DEBUG SClient4WPS:652 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-04 10:19:05 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-04 10:19:05 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:19:05 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:19:05 DEBUG WPS2SM:100 - Guessed default value: -2016-05-04 10:19:05 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-04 10:19:05 DEBUG WPS2SM:111 - Machter find: true -2016-05-04 10:19:05 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-04 10:19:05 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-04 10:19:05 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-04 10:19:05 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-04 10:19:05 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-04 10:19:05 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-04 10:19:05 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-04 10:19:05 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-04 10:19:05 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:19:05 DEBUG SClient4WPS:652 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-04 10:19:05 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-04 10:19:05 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:19:05 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:19:05 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-04 10:19:05 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-04 10:19:05 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-04 10:19:05 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:19:05 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-04 10:19:05 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-04 10:19:05 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:19:05 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:19:05 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-04 10:19:05 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-04 10:19:05 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-04 10:19:05 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:19:05 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-04 10:19:05 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-04 10:19:05 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:19:05 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:19:05 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-04 10:19:05 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-04 10:19:05 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-04 10:19:05 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:19:05 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-04 10:19:05 DEBUG SClient4WPS:656 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-04 10:19:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:19:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:19:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:19:05 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:19:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:19:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:05 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-04 10:19:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:19:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:19:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-04 10:19:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:19:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:19:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:19:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:19:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:19:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:19:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:19:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:19:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:19:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:19:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:19:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:19:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:19:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:19:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:19:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:19:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:19:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:19:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:19:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:19:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:19:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:19:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:19:06 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-04 10:19:06 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-04 10:19:06 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-04 10:19:06 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-04 10:19:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-04 10:19:06 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-04 10:19:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-04 10:19:06 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-04 10:19:06 INFO WorkspaceExplorerServiceImpl:142 - end time - 214 msc 0 sec -2016-05-04 10:19:06 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-04 10:19:17 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:19:17 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:19:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:19:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:19:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:19:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:17 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:19:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:19:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:19:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:19:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:17 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:19:17 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:19:17 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 10:19:17 DEBUG ServiceEngine:306 - get() - start -2016-05-04 10:19:17 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:19:17 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:19:17 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-04 10:19:17 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-04 10:19:17 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:19:17 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 10:19:17 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-04 10:19:17 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:19:17 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-04 10:19:17 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:19:17 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:19:17 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:19:17 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:19:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:19:17 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:19:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:19:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:19:17 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:19:17 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:19:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:19:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:19:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:17 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:19:17 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 10:19:17 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:19:17 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:17 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 10:19:17 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 10:19:18 INFO WorkspaceExplorerServiceImpl:188 - end time - 69 msc 0 sec -2016-05-04 10:19:18 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 10:19:18 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-04 10:19:18 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:18 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:18 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e8ca60a1, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6ba07958, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@747eb79b, socketFactory=javax.net.DefaultSocketFactory@2b485cdd, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:19:18 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:19:18 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:19:18 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:272986}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:19:18 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1885203}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:19:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1518617, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:18 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:19:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=4185491, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:18 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:18 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:18 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:18 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2154531}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:19:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:19:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1024723, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:18 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1568336}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:19:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:19:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1255709, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-04 10:19:18 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1885204}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885204}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:18 DEBUG command:56 - Command execution completed -2016-05-04 10:19:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885204}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:18 DEBUG command:56 - Command execution completed -2016-05-04 10:19:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885204}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:18 DEBUG command:56 - Command execution completed -2016-05-04 10:19:18 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 10:19:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885204}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:18 DEBUG command:56 - Command execution completed -2016-05-04 10:19:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885204}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:18 DEBUG command:56 - Command execution completed -2016-05-04 10:19:19 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1885204}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:19:20 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:19:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:19:20 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:19:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:19:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:20 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:19:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:19:20 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:19:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:19:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:20 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:19:20 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:19:20 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 10:19:20 DEBUG ServiceEngine:306 - get() - start -2016-05-04 10:19:20 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:19:20 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:19:20 DEBUG ServiceEngine:62 - path(String) - name: DBScan -2016-05-04 10:19:20 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-04 10:19:20 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:19:20 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 10:19:20 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-04 10:19:20 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:19:20 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 10:19:20 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:19:20 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:19:20 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:19:20 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:19:20 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:19:20 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:19:20 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:20 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:20 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:20 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e8ca60a1, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6ba07958, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@747eb79b, socketFactory=javax.net.DefaultSocketFactory@2b485cdd, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:19:20 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:19:20 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:19:20 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1885205}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:272987}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1432060, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:20 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:19:20 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1472316, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:20 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:20 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:20 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:20 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2154533}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=934437, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:20 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1568337}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1255898, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-04 10:19:20 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1885206}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 DEBUG command:56 - Command execution completed -2016-05-04 10:19:20 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 DEBUG command:56 - Command execution completed -2016-05-04 10:19:20 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 DEBUG command:56 - Command execution completed -2016-05-04 10:19:20 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 10:19:20 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 DEBUG command:56 - Command execution completed -2016-05-04 10:19:20 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 DEBUG command:56 - Command execution completed -2016-05-04 10:19:20 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1885206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 DEBUG query:56 - Query completed -2016-05-04 10:19:20 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-04 10:19:20 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2154531} -2016-05-04 10:19:20 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:272986} -2016-05-04 10:19:20 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1568336} -2016-05-04 10:19:20 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1885204}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:19:20 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1885204} -2016-05-04 10:19:20 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1885203} -2016-05-04 10:19:20 INFO MongoIO:508 - Mongo has been closed -2016-05-04 10:19:20 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 10:19:20 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 10:19:20 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-04 10:19:20 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:19:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-04 10:19:21 DEBUG query:56 - Query completed -2016-05-04 10:19:21 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-05-04 10:19:21 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2154533} -2016-05-04 10:19:21 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1568337} -2016-05-04 10:19:21 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1885206}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:19:21 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1885206} -2016-05-04 10:19:21 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:272987} -2016-05-04 10:19:21 INFO MongoIO:508 - Mongo has been closed -2016-05-04 10:19:21 INFO DefaultMongoClient:1329 - getFolderTotalVolume 849 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 10:19:21 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 10:19:21 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1885205} -2016-05-04 10:19:21 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-04 10:19:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:19:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:19:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:19:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:19:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:19:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:19:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:21 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:19:21 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:19:21 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 10:19:21 INFO JCRServlets:697 - Calling Servlet get Parents By Id 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 10:19:21 INFO WorkspaceExplorerServiceImpl:188 - end time - 46 msc 0 sec -2016-05-04 10:19:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:19:21 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=7ba62008-739a-4787-ae33-7938ad109a54, name=DBScan, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 10:19:21 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 10:19:21 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 10:19:21 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-04 10:19:21 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:19:21 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:19:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:19:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:19:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:19:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:21 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:19:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:19:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:19:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:19:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:21 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:19:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:19:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:19:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:19:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:22 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:19:22 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:19:22 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:19:22 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-04 10:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:19:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:19:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:19:23 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=13d0382e-8833-4df7-b4dc-61bbba61b3e5, name=hcaf_filtered.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 17:10:22 CET 2016] -2016-05-04 10:19:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:23 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:19:23 DEBUG ServiceEngine:193 - get() - start -2016-05-04 10:19:23 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:19:23 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:19:23 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-04 10:19:23 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 10:19:23 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:19:23 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 10:19:23 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-04 10:19:23 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:19:23 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:19:23 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:19:23 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:19:23 DEBUG Operation:173 - get(String) - start -2016-05-04 10:19:23 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:19:23 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:19:23 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:19:23 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:19:23 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:23 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:23 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:23 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e8ca60a1, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6ba07958, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@747eb79b, socketFactory=javax.net.DefaultSocketFactory@2b485cdd, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:19:23 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:19:23 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:19:23 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:272988}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1885209}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1296666, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:23 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:19:23 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:23 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1386609, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:23 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:23 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2154534}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1300279, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:23 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1568339}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2048066, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-04 10:19:23 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1885210}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885210}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG command:56 - Command execution completed -2016-05-04 10:19:23 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885210}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG command:56 - Command execution completed -2016-05-04 10:19:23 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885210}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG command:56 - Command execution completed -2016-05-04 10:19:23 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-04 10:19:23 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885210}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG command:56 - Command execution completed -2016-05-04 10:19:23 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885210}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG command:56 - Command execution completed -2016-05-04 10:19:23 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:19:23 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885210}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG command:56 - Command execution completed -2016-05-04 10:19:23 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885210}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG command:56 - Command execution completed -2016-05-04 10:19:23 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:19:23 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1885210}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG query:56 - Query completed -2016-05-04 10:19:23 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-04 10:19:23 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-04 10:19:23 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-04 10:19:23 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1885210}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG update:56 - Update completed -2016-05-04 10:19:23 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1885210}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG query:56 - Query completed -2016-05-04 10:19:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:19:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:19:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:19:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:19:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:19:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:19:23 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:19:23 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered.csv -2016-05-04 10:19:23 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-04 10:19:23 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-04 10:19:23 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:19:23 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:19:23 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-04 10:19:23 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 10:19:23 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-04 10:19:23 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:19:23 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-04 10:19:23 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-04 10:19:23 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:19:23 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:19:23 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:19:23 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:19:23 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:19:23 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:19:23 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:19:23 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:23 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:23 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:23 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e8ca60a1, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6ba07958, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@747eb79b, socketFactory=javax.net.DefaultSocketFactory@2b485cdd, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:19:23 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:19:23 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:19:23 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:272989}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1100528, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:23 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:19:23 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:23 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:19:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:23 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1885211}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1424809, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:23 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2154535}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=980906, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:19:23 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1568340}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1019054, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:19:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}] -2016-05-04 10:19:23 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1885212}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885212}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG command:56 - Command execution completed -2016-05-04 10:19:23 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885212}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG command:56 - Command execution completed -2016-05-04 10:19:23 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885212}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG command:56 - Command execution completed -2016-05-04 10:19:23 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:19:23 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:19:23 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885212}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG command:56 - Command execution completed -2016-05-04 10:19:23 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885212}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG command:56 - Command execution completed -2016-05-04 10:19:23 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:19:23 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1885212}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG query:56 - Query completed -2016-05-04 10:19:23 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-04 10:19:23 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2154535} -2016-05-04 10:19:23 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:272989} -2016-05-04 10:19:23 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1885212}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:19:23 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1568340} -2016-05-04 10:19:23 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1885212} -2016-05-04 10:19:23 INFO MongoIO:508 - Mongo has been closed -2016-05-04 10:19:23 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1885211} -2016-05-04 10:19:23 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:19:23 INFO Operation:55 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:19:23 INFO Operation:57 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:19:23 DEBUG Operation:87 - translating: http://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:19:23 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-04 10:19:23 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:19:23 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:19:23 INFO Operation:65 - URL translated: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:19:23 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:19:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-04 10:19:28 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2154534} -2016-05-04 10:19:28 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1885210}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:19:28 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:272988} -2016-05-04 10:19:28 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1885210} -2016-05-04 10:19:28 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1568339} -2016-05-04 10:19:28 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1885209} -2016-05-04 10:19:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:19:39 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:19:39 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:19:39 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=Test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-05-04 10:19:39 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-04 10:19:39 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-04 10:19:39 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-04 10:19:39 DEBUG WPS2SM:208 - Default Schema: null -2016-05-04 10:19:39 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-04 10:19:39 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-04 10:19:39 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-04 10:19:39 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:19:39 DEBUG SClient4WPS:684 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-04 10:19:39 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-04 10:19:39 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:19:39 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:19:39 DEBUG WPS2SM:100 - Guessed default value: -2016-05-04 10:19:39 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-04 10:19:39 DEBUG WPS2SM:111 - Machter find: true -2016-05-04 10:19:39 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-04 10:19:39 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-04 10:19:39 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-04 10:19:39 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-04 10:19:39 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-04 10:19:39 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-04 10:19:39 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-04 10:19:39 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-04 10:19:39 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:19:39 DEBUG SClient4WPS:684 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-04 10:19:39 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-04 10:19:39 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:19:39 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:19:39 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-04 10:19:39 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-04 10:19:39 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-04 10:19:39 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:19:39 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-04 10:19:39 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-04 10:19:39 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:19:39 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:19:39 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-04 10:19:39 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-04 10:19:39 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-04 10:19:39 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:19:39 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-04 10:19:39 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-04 10:19:39 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:19:39 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:19:39 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-04 10:19:39 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-04 10:19:39 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-04 10:19:39 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:19:39 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-04 10:19:39 DEBUG SClient4WPS:692 - UserInputs= key:OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:19:39 DEBUG SClient4WPS:692 - UserInputs= key:FeaturesColumnNames, value=depthmean|sstmnmax|salinitymean -2016-05-04 10:19:39 DEBUG SClient4WPS:692 - UserInputs= key:OccurrencePointsClusterLabel, value=Test -2016-05-04 10:19:39 DEBUG SClient4WPS:692 - UserInputs= key:epsilon, value=10 -2016-05-04 10:19:39 DEBUG SClient4WPS:692 - UserInputs= key:min_points, value=1 -2016-05-04 10:19:39 DEBUG SClient4WPS:753 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:19:39 DEBUG SClient4WPS:736 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymean -2016-05-04 10:19:39 DEBUG SClient4WPS:736 - Configuring Literal: OccurrencePointsClusterLabel to: Test -2016-05-04 10:19:39 DEBUG SClient4WPS:736 - Configuring Literal: epsilon to: 10 -2016-05-04 10:19:39 DEBUG SClient4WPS:736 - Configuring Literal: min_points to: 1 -2016-05-04 10:19:39 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 10:19:55 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:19:55 ERROR DataMinerManagerServiceImpl:153 - Error in start computation: PermGen space -2016-05-04 10:27:03 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-04 10:27:03 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-04 10:27:03 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-04 10:27:03 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 10:27:03 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 10:27:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:27:03 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 10:27:03 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@1417d084 -2016-05-04 10:27:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:27:03 INFO ASLSession:352 - Logging the entrance -2016-05-04 10:27:03 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 10:27:03 DEBUG TemplateModel:83 - 2016-05-04 10:27:03, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 10:27:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:27:03 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 10:27:05 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 10:27:05 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 10:27:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:27:05 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 10:27:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:27:05 INFO ASLSession:352 - Logging the entrance -2016-05-04 10:27:05 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 10:27:05 DEBUG TemplateModel:83 - 2016-05-04 10:27:05, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 10:27:05 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:27:06 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 10:27:06 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 144 ms -2016-05-04 10:27:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-04 10:27:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-04 10:27:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-04 10:27:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-04 10:27:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-04 10:27:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-04 10:27:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-04 10:27:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-04 10:27:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-04 10:27:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-04 10:27:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-04 10:27:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-04 10:27:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-04 10:27:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-04 10:27:06 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-04 10:27:06 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:27:06 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 10:27:06 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@59b9d77e -2016-05-04 10:27:06 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@6387be36 -2016-05-04 10:27:06 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@65888dd -2016-05-04 10:27:06 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@18a7671e -2016-05-04 10:27:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 247 ms -2016-05-04 10:27:07 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-04 10:27:07 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-04 10:27:07 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-04 10:27:07 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-04 10:27:07 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-04 10:27:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:27:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:27:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-04 10:27:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 16 ms -2016-05-04 10:27:07 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-04 10:27:07 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:27:07 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-04 10:27:07 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 10:27:07 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 10:27:07 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 10:27:07 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 10:27:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:27:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:27:07 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:27:07 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-04 10:27:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:07 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-04 10:27:07 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-04 10:27:07 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-04 10:27:07 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-04 10:27:07 DEBUG JCRRepository:271 - Initialize repository -2016-05-04 10:27:07 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-04 10:27:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 10:27:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:27:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-04 10:27:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-04 10:27:07 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-04 10:27:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:27:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:07 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-04 10:27:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:07 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-04 10:27:08 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 10:27:08 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 10:27:08 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-04 10:27:08 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 10:27:08 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 10:27:08 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-04 10:27:08 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-04 10:27:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:27:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:27:08 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 10:27:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 10:27:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:27:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:27:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:08 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:27:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 10:27:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:27:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:27:08 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:27:08 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-04 10:27:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:08 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:27:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 10:27:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:27:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:27:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:09 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:27:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 10:27:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:27:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:27:09 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 10:27:09 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 10:27:09 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 10:27:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:27:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:27:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:27:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:09 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 10:27:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:27:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:27:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:27:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:27:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:27:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:09 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 10:27:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:27:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:27:09 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-04 10:27:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:27:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:27:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:27:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:10 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 10:27:10 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-04 10:27:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 10:27:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:27:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:27:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:27:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 10:27:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:27:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-05-04 10:27:10 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-04 10:27:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 10:27:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:27:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-04 10:27:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-04 10:27:10 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-04 10:27:10 INFO ISClientConnector:82 - found only one RR, take it -2016-05-04 10:27:10 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-04 10:27:10 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-04 10:27:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 10:27:10 DEBUG StorageClient:517 - set scope: /gcube -2016-05-04 10:27:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 10:27:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:27:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 10:27:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-04 10:27:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 10:27:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 10:27:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 10:27:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:27:10 INFO WorkspaceExplorerServiceImpl:188 - end time - 424 msc 0 sec -2016-05-04 10:27:10 INFO WorkspaceExplorerServiceImpl:188 - end time - 392 msc 0 sec -2016-05-04 10:27:10 INFO WorkspaceExplorerServiceImpl:188 - end time - 250 msc 0 sec -2016-05-04 10:27:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 10:27:20 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 10:27:20 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:27:20 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-04 10:27:20 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:27:20 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 10:27:21 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-04 10:27:21 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-04 10:27:21 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-04 10:27:21 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-04 10:27:21 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-04 10:27:21 DEBUG SClient4WPS:300 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-04 10:27:21 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-04 10:27:21 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-04 10:27:21 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-04 10:27:21 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-04 10:27:21 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:27:21 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-04 10:27:21 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-04 10:27:21 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-04 10:27:21 DEBUG WPS2SM:208 - Default Schema: null -2016-05-04 10:27:21 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-04 10:27:21 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-04 10:27:21 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-04 10:27:21 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:27:21 DEBUG SClient4WPS:652 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-04 10:27:21 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-04 10:27:21 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:27:21 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:27:21 DEBUG WPS2SM:100 - Guessed default value: -2016-05-04 10:27:21 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-04 10:27:21 DEBUG WPS2SM:111 - Machter find: true -2016-05-04 10:27:21 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-04 10:27:21 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-04 10:27:21 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-04 10:27:21 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-04 10:27:21 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-04 10:27:21 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-04 10:27:21 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-04 10:27:21 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-04 10:27:21 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:27:21 DEBUG SClient4WPS:652 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-04 10:27:21 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-04 10:27:21 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:27:21 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:27:21 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-04 10:27:21 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-04 10:27:21 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-04 10:27:21 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:27:21 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-04 10:27:21 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-04 10:27:21 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:27:21 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:27:21 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-04 10:27:21 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-04 10:27:21 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-04 10:27:21 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:27:21 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-04 10:27:21 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-04 10:27:21 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:27:21 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:27:21 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-04 10:27:21 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-04 10:27:21 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-04 10:27:21 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:27:21 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-04 10:27:21 DEBUG SClient4WPS:656 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-04 10:27:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:27:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:27:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:27:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:27:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:27:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:27:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:21 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-04 10:27:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:27:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-04 10:27:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:27:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:27:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:27:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:27:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:27:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:27:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:27:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:27:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:27:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:27:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:27:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:27:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:27:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:27:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:27:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:27:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:27:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:27:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:27:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:27:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:27:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:27:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:27:21 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-04 10:27:21 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-04 10:27:21 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-04 10:27:21 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-04 10:27:21 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-04 10:27:21 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-04 10:27:21 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-04 10:27:21 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-04 10:27:21 INFO WorkspaceExplorerServiceImpl:142 - end time - 225 msc 0 sec -2016-05-04 10:27:21 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-04 10:27:28 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:27:28 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:27:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:27:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:27:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:27:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:28 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:27:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 10:27:28 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 10:27:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 10:27:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:27:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:27:28 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 10:27:28 DEBUG ServiceEngine:306 - get() - start -2016-05-04 10:27:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:27:28 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:27:28 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-04 10:27:28 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-04 10:27:28 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:27:28 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 10:27:28 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-04 10:27:28 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:27:28 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-04 10:27:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:27:28 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:27:28 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:27:28 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:27:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:27:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:27:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:27:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:28 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:27:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:27:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:27:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:27:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:27:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:27:28 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 10:27:28 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 10:27:28 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:27:28 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:28 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 10:27:28 INFO WorkspaceExplorerServiceImpl:188 - end time - 73 msc 0 sec -2016-05-04 10:27:28 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 10:27:28 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-04 10:27:28 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:28 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:28 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fc5b4231, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@63e66ba9, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2ca6577c, socketFactory=javax.net.DefaultSocketFactory@5cb9a4ca, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:27:29 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:27:29 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:27:29 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:273071}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1346719, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:29 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:27:29 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:29 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:29 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1885293}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1445722, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:29 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:29 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2154616}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=981779, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:29 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1568422}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1219628, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-04 10:27:29 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1885294}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885294}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 DEBUG command:56 - Command execution completed -2016-05-04 10:27:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885294}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 DEBUG command:56 - Command execution completed -2016-05-04 10:27:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885294}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 DEBUG command:56 - Command execution completed -2016-05-04 10:27:29 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 10:27:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885294}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 DEBUG command:56 - Command execution completed -2016-05-04 10:27:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885294}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 DEBUG command:56 - Command execution completed -2016-05-04 10:27:29 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1885294}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:27:29 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:27:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 10:27:29 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 10:27:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 10:27:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:29 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:27:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:27:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:27:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:27:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:29 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:27:29 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:27:29 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 10:27:29 DEBUG ServiceEngine:306 - get() - start -2016-05-04 10:27:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:27:29 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:27:29 DEBUG ServiceEngine:62 - path(String) - name: DBScan -2016-05-04 10:27:29 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-04 10:27:29 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:27:29 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 10:27:29 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-04 10:27:29 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:27:29 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 10:27:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:27:29 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:27:29 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:27:29 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:27:29 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:27:29 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:27:29 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:29 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:29 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:29 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fc5b4231, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@63e66ba9, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2ca6577c, socketFactory=javax.net.DefaultSocketFactory@5cb9a4ca, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:27:29 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:27:29 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:27:29 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:273072}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1403488, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:29 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1885295}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:27:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:27:29 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:27:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:27:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:27:29 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:29 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:27:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1609653, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:27:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:29 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:29 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:29 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:27:29 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2154617}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:27:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=927886, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:30 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:27:30 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1568423}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:27:30 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:27:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1209144, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-04 10:27:30 INFO JCRServlets:697 - Calling Servlet get Parents By Id 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 10:27:30 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 10:27:30 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1885296}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885296}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:30 DEBUG command:56 - Command execution completed -2016-05-04 10:27:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885296}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:30 DEBUG command:56 - Command execution completed -2016-05-04 10:27:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885296}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:30 DEBUG command:56 - Command execution completed -2016-05-04 10:27:30 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 10:27:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885296}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:30 DEBUG command:56 - Command execution completed -2016-05-04 10:27:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885296}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:30 DEBUG command:56 - Command execution completed -2016-05-04 10:27:30 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1885296}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:30 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:27:30 INFO WorkspaceExplorerServiceImpl:188 - end time - 41 msc 0 sec -2016-05-04 10:27:30 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=7ba62008-739a-4787-ae33-7938ad109a54, name=DBScan, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 10:27:30 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 10:27:30 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 10:27:30 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-04 10:27:30 DEBUG query:56 - Query completed -2016-05-04 10:27:30 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-04 10:27:30 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2154616} -2016-05-04 10:27:30 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:273071} -2016-05-04 10:27:30 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1568422} -2016-05-04 10:27:30 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1885294}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:27:30 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1885294} -2016-05-04 10:27:30 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1885293} -2016-05-04 10:27:30 INFO MongoIO:508 - Mongo has been closed -2016-05-04 10:27:30 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 10:27:30 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 10:27:30 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-04 10:27:30 DEBUG query:56 - Query completed -2016-05-04 10:27:30 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-05-04 10:27:30 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2154617} -2016-05-04 10:27:30 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:273072} -2016-05-04 10:27:30 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1885296}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:27:30 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1568423} -2016-05-04 10:27:30 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1885296} -2016-05-04 10:27:30 INFO MongoIO:508 - Mongo has been closed -2016-05-04 10:27:30 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1885295} -2016-05-04 10:27:30 INFO DefaultMongoClient:1329 - getFolderTotalVolume 849 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 10:27:30 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 10:27:30 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-04 10:27:30 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:27:30 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:27:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:27:30 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:27:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:27:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:30 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:27:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:27:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:27:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:27:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:30 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:27:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:27:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:27:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:27:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:30 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:27:30 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:27:30 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:27:30 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-04 10:27:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 10:27:31 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 10:27:31 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:27:31 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=13d0382e-8833-4df7-b4dc-61bbba61b3e5, name=hcaf_filtered.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 17:10:22 CET 2016] -2016-05-04 10:27:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:31 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:27:31 DEBUG ServiceEngine:193 - get() - start -2016-05-04 10:27:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:27:31 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:27:31 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-04 10:27:31 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 10:27:31 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:27:31 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 10:27:31 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-04 10:27:31 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:27:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:27:31 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:27:31 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:27:31 DEBUG Operation:173 - get(String) - start -2016-05-04 10:27:31 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:27:31 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:27:31 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:27:31 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:27:31 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:31 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:31 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:31 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fc5b4231, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@63e66ba9, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2ca6577c, socketFactory=javax.net.DefaultSocketFactory@5cb9a4ca, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:27:31 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:27:31 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:27:31 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:273073}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:27:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:27:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1323555, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:31 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:27:31 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:31 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:31 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1885297}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:31 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1347794, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:31 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:31 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2154618}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:27:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:27:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1001388, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:32 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1568424}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1320412, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-04 10:27:32 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1885298}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885298}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG command:56 - Command execution completed -2016-05-04 10:27:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885298}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG command:56 - Command execution completed -2016-05-04 10:27:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885298}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG command:56 - Command execution completed -2016-05-04 10:27:32 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-04 10:27:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885298}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG command:56 - Command execution completed -2016-05-04 10:27:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885298}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG command:56 - Command execution completed -2016-05-04 10:27:32 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:27:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885298}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG command:56 - Command execution completed -2016-05-04 10:27:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885298}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG command:56 - Command execution completed -2016-05-04 10:27:32 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:27:32 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1885298}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG query:56 - Query completed -2016-05-04 10:27:32 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-04 10:27:32 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-04 10:27:32 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-04 10:27:32 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1885298}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG update:56 - Update completed -2016-05-04 10:27:32 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1885298}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG query:56 - Query completed -2016-05-04 10:27:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:27:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:27:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:27:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:27:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:27:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:27:32 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:27:32 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered.csv -2016-05-04 10:27:32 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-04 10:27:32 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-04 10:27:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:27:32 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:27:32 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-04 10:27:32 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 10:27:32 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-04 10:27:32 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:27:32 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-04 10:27:32 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-04 10:27:32 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:27:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:27:32 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:27:32 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:27:32 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:27:32 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:27:32 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:27:32 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:32 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:32 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:32 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fc5b4231, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@63e66ba9, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2ca6577c, socketFactory=javax.net.DefaultSocketFactory@5cb9a4ca, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:27:32 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:27:32 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:27:32 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1885299}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1379808, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:32 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:27:32 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:32 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:27:32 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:32 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:273074}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2154619}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1099234, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=876655, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:27:32 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1568425}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2028850, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:27:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-04 10:27:32 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1885300}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885300}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG command:56 - Command execution completed -2016-05-04 10:27:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885300}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG command:56 - Command execution completed -2016-05-04 10:27:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885300}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG command:56 - Command execution completed -2016-05-04 10:27:32 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:27:32 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:27:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885300}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG command:56 - Command execution completed -2016-05-04 10:27:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885300}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG command:56 - Command execution completed -2016-05-04 10:27:32 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:27:32 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1885300}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG query:56 - Query completed -2016-05-04 10:27:32 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-04 10:27:32 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2154619} -2016-05-04 10:27:32 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:273074} -2016-05-04 10:27:32 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1885300}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:27:32 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1568425} -2016-05-04 10:27:32 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1885300} -2016-05-04 10:27:32 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1885299} -2016-05-04 10:27:32 INFO MongoIO:508 - Mongo has been closed -2016-05-04 10:27:32 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:27:32 INFO Operation:55 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:27:32 INFO Operation:57 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:27:32 DEBUG Operation:87 - translating: http://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:27:32 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-04 10:27:32 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:27:32 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:27:32 INFO Operation:65 - URL translated: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:27:32 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:27:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-04 10:27:37 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2154618} -2016-05-04 10:27:37 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1885298}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:27:37 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1885298} -2016-05-04 10:27:37 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1568424} -2016-05-04 10:27:37 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:273073} -2016-05-04 10:27:37 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1885297} -2016-05-04 10:27:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:27:46 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:27:46 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:27:46 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=Test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-05-04 10:27:46 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-04 10:27:46 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-04 10:27:46 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-04 10:27:46 DEBUG WPS2SM:208 - Default Schema: null -2016-05-04 10:27:46 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-04 10:27:46 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-04 10:27:46 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-04 10:27:46 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:27:46 DEBUG SClient4WPS:684 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-04 10:27:46 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-04 10:27:46 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:27:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:27:46 DEBUG WPS2SM:100 - Guessed default value: -2016-05-04 10:27:46 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-04 10:27:46 DEBUG WPS2SM:111 - Machter find: true -2016-05-04 10:27:46 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-04 10:27:46 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-04 10:27:46 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-04 10:27:46 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-04 10:27:46 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-04 10:27:46 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-04 10:27:46 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-04 10:27:46 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-04 10:27:46 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:27:46 DEBUG SClient4WPS:684 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-04 10:27:46 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-04 10:27:46 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:27:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:27:46 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-04 10:27:46 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-04 10:27:46 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-04 10:27:46 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:27:46 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-04 10:27:46 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-04 10:27:46 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:27:46 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:27:46 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-04 10:27:46 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-04 10:27:46 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-04 10:27:46 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:27:46 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-04 10:27:46 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-04 10:27:46 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:27:46 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:27:46 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-04 10:27:46 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-04 10:27:46 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-04 10:27:46 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:27:46 DEBUG SClient4WPS:684 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-04 10:27:46 DEBUG SClient4WPS:692 - UserInputs= key:OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:27:46 DEBUG SClient4WPS:692 - UserInputs= key:FeaturesColumnNames, value=depthmean|sstmnmax|salinitymean -2016-05-04 10:27:46 DEBUG SClient4WPS:692 - UserInputs= key:OccurrencePointsClusterLabel, value=Test -2016-05-04 10:27:46 DEBUG SClient4WPS:692 - UserInputs= key:epsilon, value=10 -2016-05-04 10:27:46 DEBUG SClient4WPS:692 - UserInputs= key:min_points, value=1 -2016-05-04 10:27:46 DEBUG SClient4WPS:753 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:27:46 DEBUG SClient4WPS:736 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymean -2016-05-04 10:27:46 DEBUG SClient4WPS:736 - Configuring Literal: OccurrencePointsClusterLabel to: Test -2016-05-04 10:27:46 DEBUG SClient4WPS:736 - Configuring Literal: epsilon to: 10 -2016-05-04 10:27:46 DEBUG SClient4WPS:736 - Configuring Literal: min_points to: 1 -2016-05-04 10:27:46 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 10:27:47 DEBUG SClient4WPS:384 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - - - OccurrencePointsTable - - - - FeaturesColumnNames - - depthmean|sstmnmax|salinitymean - - - - OccurrencePointsClusterLabel - - Test - - - - epsilon - - 10 - - - - min_points - - 1 - - - - - - - OutputTable - - - non_deterministic_output - - - - -2016-05-04 10:27:47 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-04 10:27:49 DEBUG SClient4WPS:407 - ExecuteProcessAsync: net.opengis.ows.x11.impl.ExceptionReportDocumentImpl cannot be cast to net.opengis.wps.x100.impl.ExecuteResponseDocumentImpl -2016-05-04 10:27:49 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:27:49 DEBUG SClient4WPS:779 - WPSProcess->Returning Exception to the SM:Process error in WPS Execution -2016-05-04 10:27:49 ERROR DataMinerManagerServiceImpl:153 - Error in start computation: Process error in WPS Execution -2016-05-04 10:27:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:27:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:28:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:28:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:29:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:29:48 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:30:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 10:30:43 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 10:31:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:31:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:32:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:32:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:33:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 10:33:28 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 10:34:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:34:23 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:35:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:35:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:36:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 10:36:13 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 10:37:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:37:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:38:12 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-04 10:38:12 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-04 10:38:12 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-04 10:38:12 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 10:38:12 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 10:38:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:38:12 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 10:38:12 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@4858fcfe -2016-05-04 10:38:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:38:12 INFO ASLSession:352 - Logging the entrance -2016-05-04 10:38:12 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 10:38:12 DEBUG TemplateModel:83 - 2016-05-04 10:38:12, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 10:38:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:38:12 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 10:38:14 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 10:38:14 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 10:38:14 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:38:14 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 10:38:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:38:14 INFO ASLSession:352 - Logging the entrance -2016-05-04 10:38:14 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 10:38:14 DEBUG TemplateModel:83 - 2016-05-04 10:38:14, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 10:38:14 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:38:14 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 10:38:14 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 109 ms -2016-05-04 10:38:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-04 10:38:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-04 10:38:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-04 10:38:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-04 10:38:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-04 10:38:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-04 10:38:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-04 10:38:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-04 10:38:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-04 10:38:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-04 10:38:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-04 10:38:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-04 10:38:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-04 10:38:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-04 10:38:15 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-04 10:38:15 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:38:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 10:38:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@d55cfaa -2016-05-04 10:38:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@47757de5 -2016-05-04 10:38:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@4b807cfc -2016-05-04 10:38:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@563689c2 -2016-05-04 10:38:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 94 ms -2016-05-04 10:38:15 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-04 10:38:15 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 10:38:15 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 10:38:15 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 10:38:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:38:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:38:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:38:15 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-04 10:38:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:16 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-04 10:38:16 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-04 10:38:16 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-04 10:38:16 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-04 10:38:16 DEBUG JCRRepository:271 - Initialize repository -2016-05-04 10:38:16 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-04 10:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 10:38:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:38:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-04 10:38:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 91 ms -2016-05-04 10:38:16 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-04 10:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:38:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:16 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-04 10:38:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:16 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-04 10:38:18 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-04 10:38:18 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-04 10:38:18 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-04 10:38:18 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-04 10:38:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:38:18 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:38:18 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-04 10:38:18 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 19 ms -2016-05-04 10:38:18 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-04 10:38:18 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:38:18 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-04 10:38:18 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 10:38:19 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:38:19 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-04 10:38:20 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 10:38:20 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 10:38:20 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-04 10:38:20 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 10:38:20 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 10:38:20 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-04 10:38:20 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-04 10:38:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:38:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:38:20 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 10:38:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 10:38:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:38:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:38:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:21 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:38:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 10:38:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:38:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:38:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:21 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:38:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 10:38:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:38:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:38:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:21 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:38:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 10:38:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:38:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:38:21 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 10:38:21 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 10:38:21 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 10:38:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:38:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:38:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:38:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:21 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 10:38:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:38:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:38:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:38:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:38:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:38:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:22 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 10:38:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:38:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:38:22 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:38:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:22 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-04 10:38:22 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-04 10:38:22 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 10:38:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-04 10:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:38:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:38:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:38:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 10:38:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-05-04 10:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-04 10:38:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:38:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-04 10:38:22 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-04 10:38:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-04 10:38:22 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-04 10:38:22 INFO ISClientConnector:82 - found only one RR, take it -2016-05-04 10:38:22 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-04 10:38:22 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-04 10:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-04 10:38:22 DEBUG StorageClient:517 - set scope: /gcube -2016-05-04 10:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-04 10:38:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:38:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 10:38:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 17 ms -2016-05-04 10:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-04 10:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-04 10:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-04 10:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:38:22 INFO WorkspaceExplorerServiceImpl:188 - end time - 401 msc 0 sec -2016-05-04 10:38:22 INFO WorkspaceExplorerServiceImpl:188 - end time - 346 msc 0 sec -2016-05-04 10:38:22 INFO WorkspaceExplorerServiceImpl:188 - end time - 274 msc 0 sec -2016-05-04 10:38:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:38:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:38:27 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:38:27 INFO SClient4WPS:643 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-04 10:38:27 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:38:27 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 10:38:28 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-04 10:38:28 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-04 10:38:28 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-04 10:38:28 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-04 10:38:28 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-04 10:38:28 DEBUG SClient4WPS:300 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-04 10:38:28 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-04 10:38:28 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-04 10:38:28 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-04 10:38:28 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-04 10:38:28 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:38:28 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-04 10:38:28 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-04 10:38:28 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-04 10:38:28 DEBUG WPS2SM:208 - Default Schema: null -2016-05-04 10:38:28 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-04 10:38:28 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-04 10:38:28 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-04 10:38:28 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:38:28 DEBUG SClient4WPS:660 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-04 10:38:28 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-04 10:38:28 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:38:28 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:38:28 DEBUG WPS2SM:100 - Guessed default value: -2016-05-04 10:38:28 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-04 10:38:28 DEBUG WPS2SM:111 - Machter find: true -2016-05-04 10:38:28 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-04 10:38:28 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-04 10:38:28 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-04 10:38:28 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-04 10:38:28 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-04 10:38:28 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-04 10:38:28 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-04 10:38:28 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-04 10:38:28 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:38:28 DEBUG SClient4WPS:660 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-04 10:38:28 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-04 10:38:28 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:38:28 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:38:28 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-04 10:38:28 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-04 10:38:28 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-04 10:38:28 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:38:28 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-04 10:38:28 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-04 10:38:28 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:38:28 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:38:28 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-04 10:38:28 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-04 10:38:28 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-04 10:38:28 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:38:28 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-04 10:38:28 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-04 10:38:28 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:38:28 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:38:28 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-04 10:38:28 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-04 10:38:28 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-04 10:38:28 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:38:28 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-04 10:38:28 DEBUG SClient4WPS:664 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-04 10:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:38:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:38:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:38:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:38:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:38:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:28 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-04 10:38:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-04 10:38:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:38:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:38:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:38:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:38:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:38:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-04 10:38:28 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-04 10:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-04 10:38:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:38:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:38:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:38:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:38:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:38:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:38:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:38:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:38:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:38:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:38:28 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-04 10:38:28 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-04 10:38:28 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-04 10:38:28 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-04 10:38:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-04 10:38:28 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-04 10:38:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-04 10:38:28 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-04 10:38:28 INFO WorkspaceExplorerServiceImpl:142 - end time - 210 msc 0 sec -2016-05-04 10:38:28 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-04 10:38:41 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:38:41 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:38:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:38:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:38:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:38:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:41 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:38:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:38:41 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:38:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:38:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:41 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:38:41 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:38:41 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 10:38:41 DEBUG ServiceEngine:306 - get() - start -2016-05-04 10:38:41 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:38:41 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:38:41 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-04 10:38:41 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-04 10:38:41 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:38:41 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 10:38:41 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-04 10:38:41 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:38:41 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-04 10:38:41 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:38:41 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:38:41 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:38:41 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:38:41 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:38:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:38:41 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:38:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:38:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:38:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:38:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:38:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:41 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:38:41 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:38:41 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:41 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:38:41 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 10:38:41 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:41 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:41 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 10:38:41 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5cd83f4e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@33bc26ac, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@58f00bd, socketFactory=javax.net.DefaultSocketFactory@6f797b24, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:38:41 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:38:41 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:38:41 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 10:38:41 INFO WorkspaceExplorerServiceImpl:188 - end time - 63 msc 0 sec -2016-05-04 10:38:41 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 10:38:41 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-04 10:38:42 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:273188}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:42 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1388914, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:42 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:38:42 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:42 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:42 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2154732}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:42 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1542639, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:42 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:42 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:43 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:43 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:38:43 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:38:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:38:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:43 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:38:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:38:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:43 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:38:43 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:38:43 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 10:38:43 DEBUG ServiceEngine:306 - get() - start -2016-05-04 10:38:43 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:38:43 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:38:43 DEBUG ServiceEngine:62 - path(String) - name: DBScan -2016-05-04 10:38:43 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-04 10:38:43 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:38:43 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 10:38:43 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-04 10:38:43 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:38:43 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 10:38:43 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:38:43 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:38:43 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:38:43 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:38:43 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:38:43 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:38:43 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:43 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:43 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:43 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:43 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5cd83f4e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@33bc26ac, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@58f00bd, socketFactory=javax.net.DefaultSocketFactory@6f797b24, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:38:43 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:38:43 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:38:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:43 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:273189}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:43 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:43 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1317356, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:43 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:38:43 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:43 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:43 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:2154734}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:43 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:43 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=915902, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-04 10:38:43 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-04 10:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-04 10:38:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:38:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:38:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:38:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:43 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:38:43 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:38:43 INFO JCRServlets:697 - Calling Servlet get Parents By Id 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 10:38:43 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 10:38:43 INFO WorkspaceExplorerServiceImpl:188 - end time - 46 msc 0 sec -2016-05-04 10:38:43 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:38:43 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=7ba62008-739a-4787-ae33-7938ad109a54, name=DBScan, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 10:38:43 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 10:38:43 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 10:38:43 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-04 10:38:43 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:43 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:43 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:43 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:44 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:38:44 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:38:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:38:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:44 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:38:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:38:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:44 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-04 10:38:44 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-04 10:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-04 10:38:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:44 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:38:44 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:38:44 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:38:44 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-04 10:38:44 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1568539}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1052029, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-04 10:38:44 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1568538}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2140500, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-04 10:38:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-04 10:38:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-04 10:38:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-04 10:38:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-04 10:38:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-04 10:38:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-04 10:38:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-04 10:38:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-04 10:38:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-04 10:38:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-04 10:38:44 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-04 10:38:44 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:38:44 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=13d0382e-8833-4df7-b4dc-61bbba61b3e5, name=hcaf_filtered.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 17:10:22 CET 2016] -2016-05-04 10:38:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:44 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:38:44 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:1885414}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1272567, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:44 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-04 10:38:44 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1885413}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=3149447, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:44 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-04 10:38:44 DEBUG ServiceEngine:193 - get() - start -2016-05-04 10:38:44 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:38:44 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:38:44 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-04 10:38:44 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 10:38:45 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:38:45 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 10:38:45 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-04 10:38:45 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:38:45 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:38:45 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:38:45 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:38:45 DEBUG Operation:173 - get(String) - start -2016-05-04 10:38:45 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:38:45 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:38:45 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:38:45 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:38:45 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:45 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:45 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5cd83f4e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@33bc26ac, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@58f00bd, socketFactory=javax.net.DefaultSocketFactory@6f797b24, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:38:45 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:38:45 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:38:45 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:1885415}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:273191}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:9, serverValue:1885415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1258463, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:45 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:38:45 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:45 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-04 10:38:45 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:2154736}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=849082, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:9, serverValue:1885415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:9, serverValue:1885415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1885416}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885416}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 10:38:45 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1885417}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885416}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1176379, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:45 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885416}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:9, serverValue:1885415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:9, serverValue:1885415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 10:38:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885416}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885416}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1885416}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:9, serverValue:1885415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:1568540}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1278049, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-04 10:38:45 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1885418}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885418}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885418}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885418}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-04 10:38:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885418}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885418}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:38:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885418}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885418}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:38:45 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1885418}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG query:56 - Query completed -2016-05-04 10:38:45 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-04 10:38:45 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-04 10:38:45 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-04 10:38:45 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1885418}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG update:56 - Update completed -2016-05-04 10:38:45 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1885418}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG query:56 - Query completed -2016-05-04 10:38:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:38:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:38:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:38:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:38:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:38:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-04 10:38:45 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered.csv -2016-05-04 10:38:45 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-04 10:38:45 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-04 10:38:45 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:38:45 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:38:45 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-04 10:38:45 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 10:38:45 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-04 10:38:45 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:38:45 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-04 10:38:45 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-04 10:38:45 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:38:45 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:38:45 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:38:45 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:38:45 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:38:45 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:38:45 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:38:45 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:45 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:45 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5cd83f4e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@33bc26ac, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@58f00bd, socketFactory=javax.net.DefaultSocketFactory@6f797b24, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:38:45 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:38:45 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:273192}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-04 10:38:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1006693, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:45 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:38:45 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1885419}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:45 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-04 10:38:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1120220, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:45 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:45 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2154737}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=812140, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:38:45 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1568541}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1197786, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-04 10:38:45 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1885420}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885420}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885420}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885420}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:38:45 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:38:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885420}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885420}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG command:56 - Command execution completed -2016-05-04 10:38:45 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:38:45 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1885420}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG query:56 - Query completed -2016-05-04 10:38:45 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-04 10:38:45 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2154737} -2016-05-04 10:38:45 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1568541} -2016-05-04 10:38:45 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:273192} -2016-05-04 10:38:45 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1885420}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:38:45 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1885420} -2016-05-04 10:38:45 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1885419} -2016-05-04 10:38:45 INFO MongoIO:508 - Mongo has been closed -2016-05-04 10:38:45 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:38:45 INFO Operation:55 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:38:45 INFO Operation:57 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:38:45 DEBUG Operation:87 - translating: http://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:38:45 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-04 10:38:45 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:38:45 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:38:45 INFO Operation:65 - URL translated: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-04 10:38:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:38:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-04 10:38:45 DEBUG query:56 - Query completed -2016-05-04 10:38:45 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-05-04 10:38:45 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:2154734} -2016-05-04 10:38:45 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:273189} -2016-05-04 10:38:45 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1568539} -2016-05-04 10:38:45 INFO connection:71 - Closed connection [connectionId{localValue:9, serverValue:1885415}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:38:45 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:1885415} -2016-05-04 10:38:45 INFO MongoIO:508 - Mongo has been closed -2016-05-04 10:38:45 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:1885414} -2016-05-04 10:38:45 INFO DefaultMongoClient:1329 - getFolderTotalVolume 849 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 10:38:45 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 10:38:45 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-04 10:38:46 DEBUG query:56 - Query completed -2016-05-04 10:38:46 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-04 10:38:46 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2154732} -2016-05-04 10:38:46 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1568538} -2016-05-04 10:38:46 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:273188} -2016-05-04 10:38:46 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1885416}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:38:46 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1885416} -2016-05-04 10:38:46 INFO MongoIO:508 - Mongo has been closed -2016-05-04 10:38:46 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 10:38:46 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1885413} -2016-05-04 10:38:46 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 10:38:46 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-04 10:38:50 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:2154736} -2016-05-04 10:38:50 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1885418}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:38:50 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:273191} -2016-05-04 10:38:50 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1885418} -2016-05-04 10:38:50 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:1568540} -2016-05-04 10:38:50 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1885417} -2016-05-04 10:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:38:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:38:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:38:55 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=Test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-05-04 10:38:55 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-04 10:38:55 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-04 10:38:55 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-04 10:38:55 DEBUG WPS2SM:208 - Default Schema: null -2016-05-04 10:38:55 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-04 10:38:55 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-04 10:38:55 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-04 10:38:55 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:38:55 DEBUG SClient4WPS:692 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-04 10:38:55 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-04 10:38:55 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:38:55 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:38:55 DEBUG WPS2SM:100 - Guessed default value: -2016-05-04 10:38:55 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-04 10:38:55 DEBUG WPS2SM:111 - Machter find: true -2016-05-04 10:38:55 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-04 10:38:55 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-04 10:38:55 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-04 10:38:55 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-04 10:38:55 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-04 10:38:55 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-04 10:38:55 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-04 10:38:55 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-04 10:38:55 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:38:55 DEBUG SClient4WPS:692 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-04 10:38:55 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-04 10:38:55 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:38:55 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:38:55 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-04 10:38:55 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-04 10:38:55 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-04 10:38:55 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:38:55 DEBUG SClient4WPS:692 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-04 10:38:55 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-04 10:38:55 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:38:55 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:38:55 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-04 10:38:55 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-04 10:38:55 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-04 10:38:55 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:38:55 DEBUG SClient4WPS:692 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-04 10:38:55 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-04 10:38:55 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:38:55 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:38:55 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-04 10:38:55 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-04 10:38:55 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-04 10:38:55 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:38:55 DEBUG SClient4WPS:692 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-04 10:38:55 DEBUG SClient4WPS:700 - UserInputs= key:OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:38:55 DEBUG SClient4WPS:700 - UserInputs= key:FeaturesColumnNames, value=depthmean|sstmnmax|salinitymean -2016-05-04 10:38:55 DEBUG SClient4WPS:700 - UserInputs= key:OccurrencePointsClusterLabel, value=Test -2016-05-04 10:38:55 DEBUG SClient4WPS:700 - UserInputs= key:epsilon, value=10 -2016-05-04 10:38:55 DEBUG SClient4WPS:700 - UserInputs= key:min_points, value=1 -2016-05-04 10:38:55 DEBUG SClient4WPS:761 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:38:55 DEBUG SClient4WPS:744 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymean -2016-05-04 10:38:55 DEBUG SClient4WPS:744 - Configuring Literal: OccurrencePointsClusterLabel to: Test -2016-05-04 10:38:55 DEBUG SClient4WPS:744 - Configuring Literal: epsilon to: 10 -2016-05-04 10:38:55 DEBUG SClient4WPS:744 - Configuring Literal: min_points to: 1 -2016-05-04 10:38:55 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 10:39:00 DEBUG SClient4WPS:384 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - - - OccurrencePointsTable - - - - FeaturesColumnNames - - depthmean|sstmnmax|salinitymean - - - - OccurrencePointsClusterLabel - - Test - - - - epsilon - - 10 - - - - min_points - - 1 - - - - - - - OutputTable - - - non_deterministic_output - - - - -2016-05-04 10:39:00 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-04 10:39:01 DEBUG SClient4WPS:415 - ExecuteProcessAsync: Invalid Response from service: Response isn't instance of ExecuteResponseDocumentImpl, class is class net.opengis.ows.x11.impl.ExceptionReportDocumentImpl -2016-05-04 10:39:01 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:39:01 DEBUG SClient4WPS:787 - WPSProcess->Returning Exception to the SM:Process error in WPS Execution -2016-05-04 10:39:01 ERROR DataMinerManagerServiceImpl:153 - Error in start computation: Process error in WPS Execution -2016-05-04 10:39:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:39:07 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:40:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:40:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:40:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:40:57 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:41:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:41:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:42:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-04 10:42:47 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-04 10:43:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:43:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:44:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:44:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:45:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:45:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:46:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:46:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:47:22 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:48:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:48:17 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:49:11 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-04 10:49:11 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-04 10:49:11 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-04 10:49:11 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 10:49:11 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 10:49:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:49:11 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 10:49:11 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@3d2a5d6e -2016-05-04 10:49:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:49:11 INFO ASLSession:352 - Logging the entrance -2016-05-04 10:49:11 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 10:49:11 DEBUG TemplateModel:83 - 2016-05-04 10:49:11, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 10:49:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:49:11 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 10:49:13 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 10:49:13 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 10:49:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:49:13 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 10:49:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:49:13 INFO ASLSession:352 - Logging the entrance -2016-05-04 10:49:13 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 10:49:13 DEBUG TemplateModel:83 - 2016-05-04 10:49:13, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 10:49:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:49:13 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 10:49:13 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 118 ms -2016-05-04 10:49:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-04 10:49:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-04 10:49:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-04 10:49:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-04 10:49:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-04 10:49:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-04 10:49:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-04 10:49:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-04 10:49:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-04 10:49:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-04 10:49:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-04 10:49:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-04 10:49:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-04 10:49:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-04 10:49:13 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-04 10:49:13 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:49:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 10:49:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@583c182d -2016-05-04 10:49:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@34c0e7f9 -2016-05-04 10:49:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@5b9db174 -2016-05-04 10:49:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@790f7097 -2016-05-04 10:49:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 99 ms -2016-05-04 10:49:14 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-04 10:49:14 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-04 10:49:14 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-04 10:49:14 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-04 10:49:14 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-04 10:49:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:49:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:49:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-04 10:49:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 26 ms -2016-05-04 10:49:14 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-04 10:49:14 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:49:14 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-04 10:49:14 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 10:49:14 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 10:49:14 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 10:49:14 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 10:49:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:49:14 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:49:14 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:49:14 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-04 10:49:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:14 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-04 10:49:14 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-04 10:49:14 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-04 10:49:14 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-04 10:49:14 DEBUG JCRRepository:271 - Initialize repository -2016-05-04 10:49:14 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-04 10:49:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-04 10:49:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:49:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-04 10:49:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 75 ms -2016-05-04 10:49:14 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-04 10:49:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:49:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:14 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-04 10:49:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:14 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-04 10:49:15 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 10:49:15 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 10:49:15 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-04 10:49:15 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 10:49:15 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 10:49:15 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-04 10:49:15 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-04 10:49:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:49:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:49:15 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 10:49:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 10:49:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:49:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:49:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:49:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 10:49:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:49:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:49:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:49:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 10:49:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:49:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:49:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 10:49:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 10:49:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:49:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:49:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:49:16 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:49:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:49:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:16 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 10:49:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:49:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:49:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:49:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:49:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:49:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:16 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 10:49:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:49:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:49:17 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:49:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:49:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:49:17 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 10:49:17 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-04 10:49:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:49:17 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-04 10:49:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-04 10:49:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:49:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:49:17 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:49:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 10:49:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-04 10:49:17 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-04 10:49:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-04 10:49:17 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:49:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-04 10:49:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 20 ms -2016-05-04 10:49:17 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-04 10:49:17 INFO ISClientConnector:82 - found only one RR, take it -2016-05-04 10:49:17 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-04 10:49:17 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-04 10:49:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-04 10:49:17 DEBUG StorageClient:517 - set scope: /gcube -2016-05-04 10:49:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-04 10:49:17 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 10:49:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 10:49:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 23 ms -2016-05-04 10:49:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-04 10:49:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-04 10:49:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-04 10:49:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:49:17 INFO WorkspaceExplorerServiceImpl:188 - end time - 386 msc 0 sec -2016-05-04 10:49:17 INFO WorkspaceExplorerServiceImpl:188 - end time - 227 msc 0 sec -2016-05-04 10:49:17 INFO WorkspaceExplorerServiceImpl:188 - end time - 393 msc 0 sec -2016-05-04 10:49:18 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:49:19 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-04 10:49:23 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 10:49:23 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 10:49:23 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 10:49:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:49:23 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:49:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:49:23 INFO SClient4WPS:643 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-04 10:49:23 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:49:23 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 10:49:24 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-04 10:49:24 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-04 10:49:24 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-04 10:49:24 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-04 10:49:24 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-04 10:49:24 DEBUG SClient4WPS:300 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-04 10:49:24 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-04 10:49:24 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-04 10:49:24 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-04 10:49:24 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-04 10:49:24 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:49:24 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-04 10:49:24 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-04 10:49:24 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-04 10:49:24 DEBUG WPS2SM:208 - Default Schema: null -2016-05-04 10:49:24 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-04 10:49:24 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-04 10:49:24 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-04 10:49:24 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:49:24 DEBUG SClient4WPS:660 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-04 10:49:24 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-04 10:49:24 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:49:24 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:49:24 DEBUG WPS2SM:100 - Guessed default value: -2016-05-04 10:49:24 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-04 10:49:24 DEBUG WPS2SM:111 - Machter find: true -2016-05-04 10:49:24 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-04 10:49:24 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-04 10:49:24 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-04 10:49:24 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-04 10:49:24 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-04 10:49:24 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-04 10:49:24 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-04 10:49:24 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-04 10:49:24 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:49:24 DEBUG SClient4WPS:660 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-04 10:49:24 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-04 10:49:24 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:49:24 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:49:24 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-04 10:49:24 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-04 10:49:24 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-04 10:49:24 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:49:24 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-04 10:49:24 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-04 10:49:24 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:49:24 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:49:24 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-04 10:49:24 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-04 10:49:24 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-04 10:49:24 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:49:24 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-04 10:49:24 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-04 10:49:24 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:49:24 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:49:24 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-04 10:49:24 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-04 10:49:24 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-04 10:49:24 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:49:24 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-04 10:49:24 DEBUG SClient4WPS:664 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-04 10:49:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:49:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:49:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:49:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:49:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:24 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:49:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:49:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:24 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-04 10:49:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:49:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:49:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-04 10:49:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:49:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:49:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:49:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:49:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:49:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:49:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:49:24 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:49:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:49:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:49:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:49:24 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:49:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:49:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:49:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:49:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:49:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:49:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:49:24 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:49:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 10:49:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:49:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 10:49:24 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-04 10:49:24 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-04 10:49:24 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-04 10:49:24 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-04 10:49:24 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-04 10:49:24 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-04 10:49:24 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-04 10:49:24 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-04 10:49:24 INFO WorkspaceExplorerServiceImpl:142 - end time - 225 msc 0 sec -2016-05-04 10:49:24 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-04 10:49:31 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:49:31 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:49:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:49:31 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:49:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:49:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:31 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:49:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:49:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:49:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:49:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:49:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:49:31 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 10:49:31 DEBUG ServiceEngine:306 - get() - start -2016-05-04 10:49:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:49:31 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:49:31 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-04 10:49:31 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-04 10:49:31 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:49:31 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 10:49:31 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-04 10:49:31 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:49:31 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-04 10:49:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:49:31 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:49:31 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:49:31 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:49:31 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:49:31 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:49:31 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:49:31 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:49:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:49:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:31 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:49:31 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:31 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c0054fd3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@564fd98d, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1453e440, socketFactory=javax.net.DefaultSocketFactory@74dce265, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:49:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:49:31 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:49:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:49:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:31 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:49:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:49:31 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:49:31 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 10:49:31 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 10:49:31 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 10:49:31 INFO WorkspaceExplorerServiceImpl:188 - end time - 69 msc 0 sec -2016-05-04 10:49:31 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 10:49:31 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-04 10:49:31 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:273336}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1885577}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1366490, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1562388, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:31 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:49:31 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:31 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:31 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:31 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1885578}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885578}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 DEBUG command:56 - Command execution completed -2016-05-04 10:49:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885578}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 DEBUG command:56 - Command execution completed -2016-05-04 10:49:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885578}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 DEBUG command:56 - Command execution completed -2016-05-04 10:49:31 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 10:49:31 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2154868}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=931237, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885578}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 DEBUG command:56 - Command execution completed -2016-05-04 10:49:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885578}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 DEBUG command:56 - Command execution completed -2016-05-04 10:49:31 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1568674}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1381822, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:31 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1885578}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-04 10:49:32 DEBUG query:56 - Query completed -2016-05-04 10:49:32 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-04 10:49:32 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2154868} -2016-05-04 10:49:32 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:273336} -2016-05-04 10:49:32 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1885578}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:49:32 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1568674} -2016-05-04 10:49:32 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1885578} -2016-05-04 10:49:32 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1885577} -2016-05-04 10:49:32 INFO MongoIO:508 - Mongo has been closed -2016-05-04 10:49:32 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 10:49:32 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 10:49:32 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-04 10:49:33 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:49:33 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:49:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:49:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:49:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:49:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:33 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:49:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:49:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:49:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:49:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:33 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:49:33 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:49:33 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 10:49:33 DEBUG ServiceEngine:306 - get() - start -2016-05-04 10:49:33 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:49:33 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:49:33 DEBUG ServiceEngine:62 - path(String) - name: DBScan -2016-05-04 10:49:33 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-04 10:49:33 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:49:33 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 10:49:33 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-04 10:49:33 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:49:33 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 10:49:33 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:49:33 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:49:33 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:49:33 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:49:33 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:49:33 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:49:33 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:33 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:33 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:33 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c0054fd3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@564fd98d, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1453e440, socketFactory=javax.net.DefaultSocketFactory@74dce265, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:49:33 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:49:33 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:49:33 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1885579}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1641948, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:33 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:49:33 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:33 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:33 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:33 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2154869}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1754878, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:33 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:273337}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1667088, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:49:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:49:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 10:49:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 10:49:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:33 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1568675}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:49:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:49:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1371145, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-04 10:49:33 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:49:33 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 10:49:33 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1885580}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885580}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 DEBUG command:56 - Command execution completed -2016-05-04 10:49:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885580}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 DEBUG command:56 - Command execution completed -2016-05-04 10:49:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885580}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 DEBUG command:56 - Command execution completed -2016-05-04 10:49:33 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 10:49:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885580}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 DEBUG command:56 - Command execution completed -2016-05-04 10:49:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885580}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 DEBUG command:56 - Command execution completed -2016-05-04 10:49:33 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1885580}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:33 INFO JCRServlets:697 - Calling Servlet get Parents By Id 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 10:49:33 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 10:49:33 INFO WorkspaceExplorerServiceImpl:188 - end time - 43 msc 0 sec -2016-05-04 10:49:33 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 10:49:33 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=7ba62008-739a-4787-ae33-7938ad109a54, name=DBScan, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 10:49:33 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 10:49:33 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 10:49:33 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-04 10:49:33 DEBUG query:56 - Query completed -2016-05-04 10:49:33 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-05-04 10:49:33 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2154869} -2016-05-04 10:49:33 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1568675} -2016-05-04 10:49:33 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:273337} -2016-05-04 10:49:33 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1885580}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:49:33 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1885580} -2016-05-04 10:49:33 INFO MongoIO:508 - Mongo has been closed -2016-05-04 10:49:33 INFO DefaultMongoClient:1329 - getFolderTotalVolume 849 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 10:49:33 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1885579} -2016-05-04 10:49:33 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 10:49:33 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-04 10:49:33 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:49:33 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:49:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:49:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:49:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:49:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:33 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:49:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:49:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:49:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:49:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:33 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:49:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:49:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:49:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:49:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:34 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:49:34 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:49:34 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:49:34 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-04 10:49:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:49:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:49:34 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:49:34 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=13d0382e-8833-4df7-b4dc-61bbba61b3e5, name=hcaf_filtered.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 17:10:22 CET 2016] -2016-05-04 10:49:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:34 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:49:34 DEBUG ServiceEngine:193 - get() - start -2016-05-04 10:49:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:49:34 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:49:34 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-04 10:49:34 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 10:49:34 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:49:34 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 10:49:34 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-04 10:49:34 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:49:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:49:34 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:49:34 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:49:34 DEBUG Operation:173 - get(String) - start -2016-05-04 10:49:34 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:49:34 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:49:34 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:49:34 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:49:34 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:34 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:34 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:34 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c0054fd3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@564fd98d, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1453e440, socketFactory=javax.net.DefaultSocketFactory@74dce265, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:49:34 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:49:34 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:49:34 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1885581}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1284975, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:34 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:49:34 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:34 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:34 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:273340}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1043655, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:34 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2154870}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=966653, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:34 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1885582}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885582}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 DEBUG command:56 - Command execution completed -2016-05-04 10:49:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885582}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1568676}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 DEBUG command:56 - Command execution completed -2016-05-04 10:49:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885582}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1899028, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-04 10:49:34 DEBUG command:56 - Command execution completed -2016-05-04 10:49:34 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-04 10:49:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885582}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 DEBUG command:56 - Command execution completed -2016-05-04 10:49:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885582}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 DEBUG command:56 - Command execution completed -2016-05-04 10:49:34 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:49:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885582}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 DEBUG command:56 - Command execution completed -2016-05-04 10:49:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885582}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 DEBUG command:56 - Command execution completed -2016-05-04 10:49:34 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:49:34 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1885582}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:34 DEBUG query:56 - Query completed -2016-05-04 10:49:34 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-04 10:49:34 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-04 10:49:35 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-04 10:49:35 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1885582}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 DEBUG update:56 - Update completed -2016-05-04 10:49:35 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1885582}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 DEBUG query:56 - Query completed -2016-05-04 10:49:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 10:49:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 10:49:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 10:49:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 10:49:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 10:49:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 10:49:35 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 10:49:35 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered.csv -2016-05-04 10:49:35 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-04 10:49:35 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-04 10:49:35 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:49:35 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:49:35 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-04 10:49:35 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 10:49:35 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-04 10:49:35 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 10:49:35 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-04 10:49:35 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-04 10:49:35 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 10:49:35 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 10:49:35 DEBUG BucketCoding:42 - coding name done -2016-05-04 10:49:35 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 10:49:35 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 10:49:35 DEBUG MongoIO:77 - open mongo connection -2016-05-04 10:49:35 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 10:49:35 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:35 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:35 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:35 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c0054fd3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@564fd98d, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1453e440, socketFactory=javax.net.DefaultSocketFactory@74dce265, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 10:49:35 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 10:49:35 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 10:49:35 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:273341}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1395566, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:35 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 10:49:35 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:35 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 10:49:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:35 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1885583}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1088712, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:35 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:35 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2154871}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1702045, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 10:49:35 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1568677}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2546422, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 10:49:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-04 10:49:35 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1885584}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885584}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 DEBUG command:56 - Command execution completed -2016-05-04 10:49:35 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885584}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 DEBUG command:56 - Command execution completed -2016-05-04 10:49:35 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885584}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 DEBUG command:56 - Command execution completed -2016-05-04 10:49:35 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:49:35 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:49:35 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885584}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 DEBUG command:56 - Command execution completed -2016-05-04 10:49:35 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885584}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 DEBUG command:56 - Command execution completed -2016-05-04 10:49:35 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:49:35 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1885584}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 10:49:35 DEBUG query:56 - Query completed -2016-05-04 10:49:35 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-04 10:49:35 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2154871} -2016-05-04 10:49:35 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:273341} -2016-05-04 10:49:35 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1568677} -2016-05-04 10:49:35 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1885584}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:49:35 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1885584} -2016-05-04 10:49:35 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1885583} -2016-05-04 10:49:35 INFO MongoIO:508 - Mongo has been closed -2016-05-04 10:49:35 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 10:49:35 INFO Operation:55 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:49:35 INFO Operation:57 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:49:35 DEBUG Operation:87 - translating: http://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:49:35 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-04 10:49:35 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 10:49:35 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:49:35 INFO Operation:65 - URL translated: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:49:41 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2154870} -2016-05-04 10:49:41 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1885582}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 10:49:41 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1568676} -2016-05-04 10:49:41 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:273340} -2016-05-04 10:49:41 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1885582} -2016-05-04 10:49:41 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1885581} -2016-05-04 10:49:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:49:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:49:54 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 10:49:54 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=Test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-05-04 10:49:54 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-04 10:49:54 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-04 10:49:54 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-04 10:49:54 DEBUG WPS2SM:208 - Default Schema: null -2016-05-04 10:49:54 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-04 10:49:54 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-04 10:49:54 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-04 10:49:54 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:49:54 DEBUG SClient4WPS:692 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-04 10:49:54 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-04 10:49:54 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:49:54 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:49:54 DEBUG WPS2SM:100 - Guessed default value: -2016-05-04 10:49:54 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-04 10:49:54 DEBUG WPS2SM:111 - Machter find: true -2016-05-04 10:49:54 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-04 10:49:54 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-04 10:49:54 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-04 10:49:54 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-04 10:49:54 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-04 10:49:54 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-04 10:49:54 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-04 10:49:54 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-04 10:49:54 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:49:54 DEBUG SClient4WPS:692 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-04 10:49:54 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-04 10:49:54 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:49:54 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 10:49:54 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-04 10:49:54 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-04 10:49:54 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-04 10:49:54 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:49:54 DEBUG SClient4WPS:692 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-04 10:49:54 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-04 10:49:54 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:49:54 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:49:54 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-04 10:49:54 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-04 10:49:54 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-04 10:49:54 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:49:54 DEBUG SClient4WPS:692 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-04 10:49:54 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-04 10:49:54 DEBUG WPS2SM:92 - WPS type: -2016-05-04 10:49:54 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 10:49:54 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-04 10:49:54 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-04 10:49:54 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-04 10:49:54 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 10:49:54 DEBUG SClient4WPS:692 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-04 10:49:54 DEBUG SClient4WPS:700 - UserInputs= key:OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:49:54 DEBUG SClient4WPS:700 - UserInputs= key:FeaturesColumnNames, value=depthmean|sstmnmax|salinitymean -2016-05-04 10:49:54 DEBUG SClient4WPS:700 - UserInputs= key:OccurrencePointsClusterLabel, value=Test -2016-05-04 10:49:54 DEBUG SClient4WPS:700 - UserInputs= key:epsilon, value=10 -2016-05-04 10:49:54 DEBUG SClient4WPS:700 - UserInputs= key:min_points, value=1 -2016-05-04 10:49:54 DEBUG SClient4WPS:761 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 10:49:54 DEBUG SClient4WPS:744 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymean -2016-05-04 10:49:54 DEBUG SClient4WPS:744 - Configuring Literal: OccurrencePointsClusterLabel to: Test -2016-05-04 10:49:54 DEBUG SClient4WPS:744 - Configuring Literal: epsilon to: 10 -2016-05-04 10:49:54 DEBUG SClient4WPS:744 - Configuring Literal: min_points to: 1 -2016-05-04 10:49:54 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 10:49:57 DEBUG SClient4WPS:384 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - - - OccurrencePointsTable - - - - FeaturesColumnNames - - depthmean|sstmnmax|salinitymean - - - - OccurrencePointsClusterLabel - - Test - - - - epsilon - - 10 - - - - min_points - - 1 - - - - - - - OutputTable - - - non_deterministic_output - - - - -2016-05-04 10:49:57 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-04 10:49:58 DEBUG SClient4WPS:415 - ExecuteProcessAsync: Invalid Response from service: Response isn't instance of ExecuteResponseDocumentImpl, class is class net.opengis.ows.x11.impl.ExceptionReportDocumentImpl -2016-05-04 10:49:58 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 10:49:58 DEBUG SClient4WPS:787 - WPSProcess->Returning Exception to the SM:Process error in WPS Execution -2016-05-04 10:49:58 ERROR DataMinerManagerServiceImpl:153 - Error in start computation: Process error in WPS Execution -2016-05-04 10:50:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 10:50:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 10:51:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 10:51:01 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 10:51:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:51:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:52:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:52:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:53:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:53:46 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:54:41 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:55:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 10:55:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 10:56:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:56:31 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 10:57:26 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 10:58:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:58:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 10:59:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 10:59:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:00:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:00:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:01:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:01:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:02:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:02:01 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 11:02:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:02:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:03:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:03:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:04:28 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-04 11:04:28 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-04 11:04:29 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-04 11:04:29 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 11:04:29 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 11:04:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:04:29 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 11:04:29 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@12799a08 -2016-05-04 11:04:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:04:29 INFO ASLSession:352 - Logging the entrance -2016-05-04 11:04:29 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 11:04:29 DEBUG TemplateModel:83 - 2016-05-04 11:04:29, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 11:04:29 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:04:29 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 11:04:31 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 11:04:31 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 11:04:31 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 11:04:31 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 11:04:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:04:31 INFO ASLSession:352 - Logging the entrance -2016-05-04 11:04:31 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 11:04:31 DEBUG TemplateModel:83 - 2016-05-04 11:04:31, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 11:04:31 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:04:31 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 11:04:31 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 118 ms -2016-05-04 11:04:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-04 11:04:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-04 11:04:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-04 11:04:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-04 11:04:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-04 11:04:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-04 11:04:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-04 11:04:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-04 11:04:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-04 11:04:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-04 11:04:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-04 11:04:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-04 11:04:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-04 11:04:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-04 11:04:31 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-04 11:04:31 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:04:31 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 11:04:31 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@347b17d0 -2016-05-04 11:04:31 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@4482985 -2016-05-04 11:04:31 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@1541ee2b -2016-05-04 11:04:31 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@75af274b -2016-05-04 11:04:31 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 105 ms -2016-05-04 11:04:31 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-04 11:04:31 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-04 11:04:31 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-04 11:04:31 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-04 11:04:31 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-04 11:04:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:04:31 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:04:31 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-04 11:04:31 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-04 11:04:31 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-04 11:04:31 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:04:31 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-04 11:04:31 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 11:04:32 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 11:04:32 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 11:04:32 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 11:04:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:04:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:04:32 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:04:32 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-04 11:04:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:32 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-04 11:04:32 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-04 11:04:32 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-04 11:04:32 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-04 11:04:32 DEBUG JCRRepository:271 - Initialize repository -2016-05-04 11:04:32 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-04 11:04:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 11:04:32 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:04:32 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-04 11:04:32 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 74 ms -2016-05-04 11:04:32 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-04 11:04:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:04:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:32 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-04 11:04:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:32 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-04 11:04:32 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 11:04:32 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 11:04:32 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-04 11:04:33 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 11:04:33 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 11:04:33 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-04 11:04:33 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-04 11:04:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:04:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:04:33 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 11:04:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 11:04:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:04:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:04:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:33 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 11:04:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 11:04:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:04:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:04:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:33 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 11:04:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 11:04:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:04:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:04:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:33 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 11:04:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 11:04:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:04:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:04:34 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:04:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:34 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 11:04:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:04:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:04:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 11:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:04:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:34 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:04:34 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-04 11:04:34 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 11:04:34 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-04 11:04:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:04:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 11:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:04:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:04:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:34 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:04:34 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 11:04:34 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 11:04:34 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 29 ms -2016-05-04 11:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 11:04:34 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-04 11:04:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:04:34 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:04:34 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-04 11:04:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:04:34 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 24 ms -2016-05-04 11:04:34 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-04 11:04:34 INFO ISClientConnector:82 - found only one RR, take it -2016-05-04 11:04:34 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-04 11:04:34 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-04 11:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 11:04:34 DEBUG StorageClient:517 - set scope: /gcube -2016-05-04 11:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 11:04:34 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-04 11:04:34 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:04:34 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 11:04:34 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-04 11:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 11:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 11:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 11:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:04:34 INFO WorkspaceExplorerServiceImpl:188 - end time - 407 msc 0 sec -2016-05-04 11:04:34 INFO WorkspaceExplorerServiceImpl:188 - end time - 168 msc 0 sec -2016-05-04 11:04:34 INFO WorkspaceExplorerServiceImpl:188 - end time - 342 msc 0 sec -2016-05-04 11:04:41 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 11:04:41 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 11:04:41 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 11:04:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:04:41 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 11:04:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:04:41 INFO SClient4WPS:643 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-04 11:04:41 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:04:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 11:04:42 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-04 11:04:42 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-04 11:04:42 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-04 11:04:42 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-04 11:04:42 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-04 11:04:42 DEBUG SClient4WPS:300 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-04 11:04:42 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-04 11:04:42 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-04 11:04:42 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-04 11:04:42 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-04 11:04:42 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:04:42 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-04 11:04:42 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-04 11:04:42 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-04 11:04:42 DEBUG WPS2SM:208 - Default Schema: null -2016-05-04 11:04:42 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-04 11:04:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-04 11:04:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-04 11:04:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:04:42 DEBUG SClient4WPS:660 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-04 11:04:42 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-04 11:04:42 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:04:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 11:04:42 DEBUG WPS2SM:100 - Guessed default value: -2016-05-04 11:04:42 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-04 11:04:42 DEBUG WPS2SM:111 - Machter find: true -2016-05-04 11:04:42 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-04 11:04:42 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-04 11:04:42 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-04 11:04:42 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-04 11:04:42 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-04 11:04:42 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-04 11:04:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-04 11:04:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-04 11:04:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:04:42 DEBUG SClient4WPS:660 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-04 11:04:42 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-04 11:04:42 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:04:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 11:04:42 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-04 11:04:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-04 11:04:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-04 11:04:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:04:42 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-04 11:04:42 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-04 11:04:42 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:04:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 11:04:42 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-04 11:04:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-04 11:04:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-04 11:04:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:04:42 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-04 11:04:42 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-04 11:04:42 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:04:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 11:04:42 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-04 11:04:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-04 11:04:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-04 11:04:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:04:42 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-04 11:04:42 DEBUG SClient4WPS:664 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-04 11:04:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:04:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 11:04:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:04:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:04:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:04:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:04:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:04:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:43 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-04 11:04:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:04:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-04 11:04:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:04:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 11:04:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:04:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:04:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:04:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:04:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:04:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:04:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:04:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:04:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:04:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:04:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:04:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:04:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:04:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:04:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:04:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:04:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:04:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:04:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:04:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:04:43 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-04 11:04:43 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-04 11:04:43 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-04 11:04:43 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-04 11:04:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-04 11:04:43 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-04 11:04:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-04 11:04:43 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-04 11:04:43 INFO WorkspaceExplorerServiceImpl:142 - end time - 183 msc 0 sec -2016-05-04 11:04:43 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-04 11:04:50 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:04:50 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:04:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:04:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 11:04:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:04:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:50 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:04:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:04:50 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 11:04:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:04:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:04:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:04:50 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 11:04:50 DEBUG ServiceEngine:306 - get() - start -2016-05-04 11:04:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:04:50 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:04:50 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-04 11:04:50 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-04 11:04:50 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 11:04:50 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 11:04:50 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-04 11:04:50 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 11:04:50 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-04 11:04:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:04:50 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:04:50 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 11:04:50 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 11:04:50 DEBUG MongoIO:77 - open mongo connection -2016-05-04 11:04:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:04:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:04:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:04:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:04:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:04:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:04:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:04:50 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 11:04:50 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:04:50 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 11:04:50 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 11:04:50 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:50 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:04:50 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e2238239, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@457ebdd, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@283dfc65, socketFactory=javax.net.DefaultSocketFactory@7d855f86, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 11:04:50 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 11:04:50 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 11:04:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 51 msc 0 sec -2016-05-04 11:04:50 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 11:04:50 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 11:04:50 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-04 11:04:51 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1885786}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:273531}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1555059, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1644856, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:51 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 11:04:51 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:51 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:04:51 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:04:51 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1885787}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885787}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 DEBUG command:56 - Command execution completed -2016-05-04 11:04:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885787}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 DEBUG command:56 - Command execution completed -2016-05-04 11:04:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885787}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 DEBUG command:56 - Command execution completed -2016-05-04 11:04:51 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 11:04:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885787}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 DEBUG command:56 - Command execution completed -2016-05-04 11:04:51 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1568854}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885787}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 DEBUG command:56 - Command execution completed -2016-05-04 11:04:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1771684, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-04 11:04:51 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1885787}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2155050}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1191478, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-04 11:04:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:04:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-04 11:04:51 DEBUG query:56 - Query completed -2016-05-04 11:04:51 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-04 11:04:51 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2155050} -2016-05-04 11:04:51 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1568854} -2016-05-04 11:04:51 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:273531} -2016-05-04 11:04:51 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1885787}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 11:04:51 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1885787} -2016-05-04 11:04:51 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1885786} -2016-05-04 11:04:51 INFO MongoIO:508 - Mongo has been closed -2016-05-04 11:04:51 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 11:04:51 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 11:04:51 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-04 11:04:52 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 11:04:52 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 11:04:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:04:52 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 11:04:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:04:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:52 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 11:04:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:04:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:04:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:04:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:52 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 11:04:52 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 11:04:52 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 11:04:52 DEBUG ServiceEngine:306 - get() - start -2016-05-04 11:04:52 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:04:52 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:04:52 DEBUG ServiceEngine:62 - path(String) - name: DBScan -2016-05-04 11:04:52 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-04 11:04:52 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 11:04:52 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 11:04:52 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-04 11:04:52 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 11:04:52 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 11:04:52 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:04:52 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:04:52 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 11:04:52 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 11:04:52 DEBUG MongoIO:77 - open mongo connection -2016-05-04 11:04:52 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 11:04:52 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:52 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:52 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:04:52 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e2238239, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@457ebdd, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@283dfc65, socketFactory=javax.net.DefaultSocketFactory@7d855f86, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 11:04:52 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 11:04:52 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 11:04:52 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1885788}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:273532}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1478705, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:52 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 11:04:52 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:52 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1408896, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:52 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:04:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:04:52 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2155051}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=890915, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:04:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:04:52 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:04:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:04:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:04:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 11:04:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:04:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:52 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1568855}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2117163, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-04 11:04:52 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1885789}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885789}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 11:04:52 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 11:04:52 DEBUG command:56 - Command execution completed -2016-05-04 11:04:52 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885789}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 DEBUG command:56 - Command execution completed -2016-05-04 11:04:52 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885789}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 DEBUG command:56 - Command execution completed -2016-05-04 11:04:52 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 11:04:52 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885789}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 DEBUG command:56 - Command execution completed -2016-05-04 11:04:52 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885789}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 DEBUG command:56 - Command execution completed -2016-05-04 11:04:52 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1885789}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:52 INFO JCRServlets:697 - Calling Servlet get Parents By Id 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 11:04:52 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 11:04:52 INFO WorkspaceExplorerServiceImpl:188 - end time - 39 msc 0 sec -2016-05-04 11:04:52 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:04:52 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=7ba62008-739a-4787-ae33-7938ad109a54, name=DBScan, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 11:04:52 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 11:04:52 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 11:04:52 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-04 11:04:53 DEBUG query:56 - Query completed -2016-05-04 11:04:53 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-05-04 11:04:53 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2155051} -2016-05-04 11:04:53 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:273532} -2016-05-04 11:04:53 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1885789}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 11:04:53 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1885789} -2016-05-04 11:04:53 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1568855} -2016-05-04 11:04:53 INFO MongoIO:508 - Mongo has been closed -2016-05-04 11:04:53 INFO DefaultMongoClient:1329 - getFolderTotalVolume 849 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 11:04:53 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 11:04:53 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1885788} -2016-05-04 11:04:53 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-04 11:04:53 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:04:53 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:04:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:04:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:04:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:04:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:53 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:04:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:04:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:04:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:04:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:53 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:04:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:04:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:04:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:04:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:53 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:04:53 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:04:53 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:04:53 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-04 11:04:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:04:54 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 11:04:54 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:04:54 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=13d0382e-8833-4df7-b4dc-61bbba61b3e5, name=hcaf_filtered.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 17:10:22 CET 2016] -2016-05-04 11:04:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:54 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:04:54 DEBUG ServiceEngine:193 - get() - start -2016-05-04 11:04:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:04:54 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:04:54 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-04 11:04:54 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 11:04:54 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 11:04:54 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 11:04:54 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-04 11:04:54 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 11:04:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:04:54 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:04:54 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 11:04:54 DEBUG Operation:173 - get(String) - start -2016-05-04 11:04:54 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 11:04:54 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 11:04:54 DEBUG MongoIO:77 - open mongo connection -2016-05-04 11:04:54 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 11:04:54 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:54 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:54 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:04:54 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e2238239, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@457ebdd, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@283dfc65, socketFactory=javax.net.DefaultSocketFactory@7d855f86, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 11:04:54 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 11:04:54 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 11:04:54 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:273533}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=6193219, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:54 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 11:04:54 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:54 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:04:54 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2155052}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1271002, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:04:54 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1885792}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1673006, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:54 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:04:54 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1568856}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2429672, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-04 11:04:54 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1885793}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885793}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG command:56 - Command execution completed -2016-05-04 11:04:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885793}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG command:56 - Command execution completed -2016-05-04 11:04:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885793}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG command:56 - Command execution completed -2016-05-04 11:04:54 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-04 11:04:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885793}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG command:56 - Command execution completed -2016-05-04 11:04:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885793}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG command:56 - Command execution completed -2016-05-04 11:04:54 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 11:04:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885793}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG command:56 - Command execution completed -2016-05-04 11:04:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885793}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG command:56 - Command execution completed -2016-05-04 11:04:54 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 11:04:54 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1885793}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG query:56 - Query completed -2016-05-04 11:04:54 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-04 11:04:54 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-04 11:04:54 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-04 11:04:54 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1885793}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG update:56 - Update completed -2016-05-04 11:04:54 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1885793}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG query:56 - Query completed -2016-05-04 11:04:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:04:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:04:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:04:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:04:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:04:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:04:54 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:04:54 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered.csv -2016-05-04 11:04:54 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-04 11:04:54 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-04 11:04:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:04:54 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:04:54 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-04 11:04:54 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 11:04:54 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-04 11:04:54 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 11:04:54 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-04 11:04:54 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-04 11:04:54 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 11:04:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:04:54 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:04:54 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 11:04:54 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 11:04:54 DEBUG MongoIO:77 - open mongo connection -2016-05-04 11:04:54 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 11:04:54 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:54 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:54 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:04:54 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e2238239, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@457ebdd, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@283dfc65, socketFactory=javax.net.DefaultSocketFactory@7d855f86, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 11:04:54 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 11:04:54 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 11:04:54 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:273534}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1885794}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1674064, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 11:04:54 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:54 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:04:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:04:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1346498, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:54 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:04:54 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2155053}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=840311, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:04:54 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1568857}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1283571, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:04:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-04 11:04:54 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1885795}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885795}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG command:56 - Command execution completed -2016-05-04 11:04:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885795}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG command:56 - Command execution completed -2016-05-04 11:04:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885795}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG command:56 - Command execution completed -2016-05-04 11:04:54 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 11:04:54 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 11:04:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885795}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG command:56 - Command execution completed -2016-05-04 11:04:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885795}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG command:56 - Command execution completed -2016-05-04 11:04:54 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 11:04:54 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1885795}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG query:56 - Query completed -2016-05-04 11:04:54 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-04 11:04:54 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2155053} -2016-05-04 11:04:54 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:273534} -2016-05-04 11:04:54 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1568857} -2016-05-04 11:04:54 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1885795}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 11:04:54 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1885795} -2016-05-04 11:04:54 INFO MongoIO:508 - Mongo has been closed -2016-05-04 11:04:54 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 11:04:54 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1885794} -2016-05-04 11:04:54 INFO Operation:55 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 11:04:54 INFO Operation:57 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 11:04:54 DEBUG Operation:87 - translating: http://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 11:04:54 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-04 11:04:54 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 11:04:54 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 11:04:54 INFO Operation:65 - URL translated: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 11:04:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-04 11:04:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:04:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-04 11:04:56 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2155052} -2016-05-04 11:04:56 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1885793}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 11:04:56 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1885793} -2016-05-04 11:04:56 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:273533} -2016-05-04 11:04:56 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1568856} -2016-05-04 11:04:56 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1885792} -2016-05-04 11:05:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:05:12 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 11:05:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:05:12 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=Test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-05-04 11:05:12 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-04 11:05:12 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-04 11:05:12 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-04 11:05:12 DEBUG WPS2SM:208 - Default Schema: null -2016-05-04 11:05:12 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-04 11:05:12 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-04 11:05:12 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-04 11:05:12 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:05:12 DEBUG SClient4WPS:692 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-04 11:05:12 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-04 11:05:12 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:05:12 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 11:05:12 DEBUG WPS2SM:100 - Guessed default value: -2016-05-04 11:05:12 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-04 11:05:12 DEBUG WPS2SM:111 - Machter find: true -2016-05-04 11:05:12 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-04 11:05:12 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-04 11:05:12 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-04 11:05:12 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-04 11:05:12 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-04 11:05:12 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-04 11:05:12 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-04 11:05:12 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-04 11:05:12 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:05:12 DEBUG SClient4WPS:692 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-04 11:05:12 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-04 11:05:12 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:05:12 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 11:05:12 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-04 11:05:12 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-04 11:05:12 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-04 11:05:12 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:05:12 DEBUG SClient4WPS:692 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-04 11:05:12 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-04 11:05:12 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:05:12 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 11:05:12 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-04 11:05:12 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-04 11:05:12 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-04 11:05:12 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:05:12 DEBUG SClient4WPS:692 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-04 11:05:12 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-04 11:05:12 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:05:12 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 11:05:12 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-04 11:05:12 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-04 11:05:12 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-04 11:05:12 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:05:12 DEBUG SClient4WPS:692 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-04 11:05:12 DEBUG SClient4WPS:700 - UserInputs= key:OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 11:05:12 DEBUG SClient4WPS:700 - UserInputs= key:FeaturesColumnNames, value=depthmean|sstmnmax|salinitymax -2016-05-04 11:05:12 DEBUG SClient4WPS:700 - UserInputs= key:OccurrencePointsClusterLabel, value=Test -2016-05-04 11:05:12 DEBUG SClient4WPS:700 - UserInputs= key:epsilon, value=10 -2016-05-04 11:05:12 DEBUG SClient4WPS:700 - UserInputs= key:min_points, value=1 -2016-05-04 11:05:12 DEBUG SClient4WPS:761 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 11:05:12 DEBUG SClient4WPS:744 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymax -2016-05-04 11:05:12 DEBUG SClient4WPS:744 - Configuring Literal: OccurrencePointsClusterLabel to: Test -2016-05-04 11:05:12 DEBUG SClient4WPS:744 - Configuring Literal: epsilon to: 10 -2016-05-04 11:05:12 DEBUG SClient4WPS:744 - Configuring Literal: min_points to: 1 -2016-05-04 11:05:12 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 11:05:14 DEBUG SClient4WPS:384 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - - - OccurrencePointsTable - - - - FeaturesColumnNames - - depthmean|sstmnmax|salinitymax - - - - OccurrencePointsClusterLabel - - Test - - - - epsilon - - 10 - - - - min_points - - 1 - - - - - - - OutputTable - - - non_deterministic_output - - - - -2016-05-04 11:05:14 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-04 11:05:15 DEBUG SClient4WPS:415 - ExecuteProcessAsync: Invalid Response from service: Response isn't instance of ExecuteResponseDocumentImpl, class is class net.opengis.ows.x11.impl.ExceptionReportDocumentImpl -2016-05-04 11:05:15 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:05:15 DEBUG SClient4WPS:787 - WPSProcess->Returning Exception to the SM:Process error in WPS Execution -2016-05-04 11:05:15 ERROR DataMinerManagerServiceImpl:153 - Error in start computation: Process error in WPS Execution -2016-05-04 11:05:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:05:24 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:06:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:06:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:07:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:07:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:08:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:08:09 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 11:09:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:09:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:09:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:09:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:11:05 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-04 11:11:05 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-04 11:11:05 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-04 11:11:05 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 11:11:05 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 11:11:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:11:05 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 11:11:05 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@6f8131c7 -2016-05-04 11:11:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:11:05 INFO ASLSession:352 - Logging the entrance -2016-05-04 11:11:05 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 11:11:05 DEBUG TemplateModel:83 - 2016-05-04 11:11:05, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 11:11:05 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:11:05 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 11:11:07 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 11:11:07 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 11:11:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:11:07 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 11:11:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:11:07 INFO ASLSession:352 - Logging the entrance -2016-05-04 11:11:07 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 11:11:07 DEBUG TemplateModel:83 - 2016-05-04 11:11:07, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 11:11:07 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:11:07 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 11:11:07 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 114 ms -2016-05-04 11:11:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-04 11:11:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-04 11:11:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-04 11:11:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-04 11:11:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-04 11:11:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-04 11:11:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-04 11:11:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-04 11:11:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-04 11:11:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-04 11:11:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-04 11:11:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-04 11:11:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-04 11:11:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-04 11:11:07 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-04 11:11:07 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:11:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 11:11:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@44a94cc -2016-05-04 11:11:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@1f74c765 -2016-05-04 11:11:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@16586d6f -2016-05-04 11:11:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@2588052d -2016-05-04 11:11:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 105 ms -2016-05-04 11:11:08 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-04 11:11:08 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-04 11:11:08 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-04 11:11:08 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-04 11:11:08 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-04 11:11:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:11:08 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:11:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-04 11:11:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-04 11:11:08 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-04 11:11:08 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:11:08 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-04 11:11:08 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 11:11:08 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 11:11:08 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 11:11:08 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 11:11:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:11:08 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 11:11:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:11:08 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-04 11:11:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:08 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-04 11:11:08 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-04 11:11:08 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-04 11:11:08 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-04 11:11:08 DEBUG JCRRepository:271 - Initialize repository -2016-05-04 11:11:08 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-04 11:11:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-04 11:11:08 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:11:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-04 11:11:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 74 ms -2016-05-04 11:11:08 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-04 11:11:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:11:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:08 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-04 11:11:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:08 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-04 11:11:09 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 11:11:09 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 11:11:09 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-04 11:11:09 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 11:11:09 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 11:11:09 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-04 11:11:09 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-04 11:11:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:09 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 11:11:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 11:11:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:09 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 11:11:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 11:11:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:09 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 11:11:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 11:11:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:09 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 11:11:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 11:11:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:09 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:11:09 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-04 11:11:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:11:10 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:11:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:11:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:10 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 11:11:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-04 11:11:10 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-04 11:11:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-04 11:11:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:10 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 11:11:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:10 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-04 11:11:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 11:11:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:11:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:11:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:11:10 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 11:11:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:11:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 11:11:10 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-04 11:11:10 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 11:11:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-04 11:11:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 11:11:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:11:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-04 11:11:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-04 11:11:10 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-04 11:11:10 INFO ISClientConnector:82 - found only one RR, take it -2016-05-04 11:11:10 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-04 11:11:10 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-04 11:11:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 11:11:10 DEBUG StorageClient:517 - set scope: /gcube -2016-05-04 11:11:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 11:11:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:11:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 11:11:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 22 ms -2016-05-04 11:11:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 11:11:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 11:11:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 11:11:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:11:10 INFO WorkspaceExplorerServiceImpl:188 - end time - 322 msc 0 sec -2016-05-04 11:11:10 INFO WorkspaceExplorerServiceImpl:188 - end time - 254 msc 0 sec -2016-05-04 11:11:11 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-04 11:11:11 INFO WorkspaceExplorerServiceImpl:188 - end time - 1149 msc 1 sec -2016-05-04 11:11:16 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 11:11:16 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 11:11:16 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 11:11:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:11:16 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:11:16 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:11:16 INFO SClient4WPS:643 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-04 11:11:16 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:11:16 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 11:11:18 ERROR StatWPSClientSession:411 - Error while parsing input. -2016-05-04 11:11:18 DEBUG SClient4WPS:278 - Retrying with WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:11:18 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 11:11:18 INFO StatWPSClientSession:86 - Service already registered: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:11:18 DEBUG SClient4WPS:278 - Retrying with WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:11:18 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 11:11:18 INFO StatWPSClientSession:86 - Service already registered: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:11:18 DEBUG SClient4WPS:278 - Retrying with WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:11:18 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 11:11:18 INFO StatWPSClientSession:86 - Service already registered: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:11:18 DEBUG SClient4WPS:278 - Retrying with WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:11:18 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:11:18 ERROR SClient4WPS:649 - GetParameters: null -2016-05-04 11:11:18 ERROR SClient4WPS:669 - -2016-05-04 11:11:18 ERROR DataMinerManagerServiceImpl:135 - Error retrieving parameters: null -2016-05-04 11:11:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:11:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:11:26 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:11:26 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 11:11:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:11:27 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:11:27 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:11:27 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 11:11:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:11:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:11:28 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:11:28 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-04 11:11:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:28 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 11:11:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 11:11:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:28 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 11:11:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 11:11:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:28 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 11:11:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 11:11:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:28 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 11:11:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 11:11:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:28 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:11:28 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-04 11:11:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:11:29 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 11:11:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:11:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:29 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 11:11:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:11:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:11:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:11:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:29 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 11:11:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:11:29 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:11:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:11:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:29 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-04 11:11:29 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 11:11:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:29 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-04 11:11:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 113 msc 0 sec -2016-05-04 11:11:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 207 msc 0 sec -2016-05-04 11:11:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:30 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-04 11:11:30 INFO WorkspaceExplorerServiceImpl:188 - end time - 89 msc 0 sec -2016-05-04 11:11:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-04 11:11:35 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-04 11:11:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:11:35 INFO SClient4WPS:643 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-04 11:11:35 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:11:35 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 11:11:36 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-04 11:11:36 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-04 11:11:36 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-04 11:11:36 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-04 11:11:36 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-04 11:11:36 DEBUG SClient4WPS:300 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-04 11:11:36 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-04 11:11:36 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-04 11:11:36 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-04 11:11:36 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-04 11:11:36 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:11:36 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-04 11:11:36 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-04 11:11:36 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-04 11:11:36 DEBUG WPS2SM:208 - Default Schema: null -2016-05-04 11:11:36 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-04 11:11:36 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-04 11:11:36 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-04 11:11:36 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:11:36 DEBUG SClient4WPS:660 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-04 11:11:36 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-04 11:11:36 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:11:36 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 11:11:36 DEBUG WPS2SM:100 - Guessed default value: -2016-05-04 11:11:36 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-04 11:11:36 DEBUG WPS2SM:111 - Machter find: true -2016-05-04 11:11:36 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-04 11:11:36 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-04 11:11:36 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-04 11:11:36 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-04 11:11:36 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-04 11:11:36 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-04 11:11:36 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-04 11:11:36 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-04 11:11:36 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:11:36 DEBUG SClient4WPS:660 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-04 11:11:36 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-04 11:11:36 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:11:36 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 11:11:36 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-04 11:11:36 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-04 11:11:36 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-04 11:11:36 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:11:36 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-04 11:11:36 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-04 11:11:36 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:11:36 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 11:11:36 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-04 11:11:36 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-04 11:11:36 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-04 11:11:36 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:11:36 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-04 11:11:36 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-04 11:11:36 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:11:36 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 11:11:36 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-04 11:11:36 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-04 11:11:36 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-04 11:11:36 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:11:36 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-04 11:11:36 DEBUG SClient4WPS:664 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-04 11:11:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:11:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:11:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:11:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:11:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:11:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:11:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:36 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-04 11:11:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-04 11:11:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:11:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:11:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:11:36 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:11:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:11:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:11:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:36 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:11:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:11:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:11:36 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:11:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:11:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:11:36 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-04 11:11:36 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-04 11:11:36 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-04 11:11:36 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-04 11:11:36 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-04 11:11:36 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-04 11:11:36 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-04 11:11:36 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-04 11:11:36 INFO WorkspaceExplorerServiceImpl:142 - end time - 174 msc 0 sec -2016-05-04 11:11:36 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-04 11:11:44 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:11:44 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:11:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:11:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:11:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:11:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:44 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:11:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:11:44 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 11:11:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 11:11:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:44 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:11:44 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:11:44 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 11:11:44 DEBUG ServiceEngine:306 - get() - start -2016-05-04 11:11:44 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:11:44 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:11:44 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-04 11:11:44 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-04 11:11:44 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 11:11:44 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 11:11:44 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-04 11:11:44 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 11:11:44 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-04 11:11:44 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:11:44 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:11:44 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 11:11:44 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 11:11:44 DEBUG MongoIO:77 - open mongo connection -2016-05-04 11:11:44 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 11:11:44 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:11:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:11:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:11:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:11:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:11:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:11:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:11:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:11:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:11:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:11:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:11:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:11:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:11:44 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:11:44 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:11:44 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:11:44 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 11:11:44 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:11:44 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@95deabdf, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@59e6160b, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@10b15a49, socketFactory=javax.net.DefaultSocketFactory@6b9e772e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 11:11:46 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 11:11:46 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 11:11:46 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 11:11:46 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 11:11:46 INFO WorkspaceExplorerServiceImpl:188 - end time - 66 msc 0 sec -2016-05-04 11:11:46 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 11:11:46 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-04 11:11:46 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1885893}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:11:46 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:11:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1580249, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:11:46 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 11:11:46 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:11:46 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:11:46 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:11:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:11:46 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:273628}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:11:46 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:11:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1402520, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:11:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:11:46 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2155140}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:11:46 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:11:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1021399, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:11:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:11:46 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1885894}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:11:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:11:46 DEBUG command:56 - Command execution completed -2016-05-04 11:11:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:11:46 DEBUG command:56 - Command execution completed -2016-05-04 11:11:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:11:46 DEBUG command:56 - Command execution completed -2016-05-04 11:11:46 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 11:11:46 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:11:46 DEBUG command:56 - Command execution completed -2016-05-04 11:11:46 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:11:46 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1568944}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:11:46 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:11:47 DEBUG command:56 - Command execution completed -2016-05-04 11:11:47 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=908293934, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:11:48 ERROR ServiceEngine:48 - get() -2016-05-04 11:11:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=908.3 ms, state=CONNECTED}] -2016-05-04 11:11:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:11:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:11:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:11:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:12:06 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1885893} -2016-05-04 11:13:11 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-04 11:13:11 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-04 11:13:11 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-04 11:13:11 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 11:13:11 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 11:13:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:13:11 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 11:13:11 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@5b3378a1 -2016-05-04 11:13:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:13:11 INFO ASLSession:352 - Logging the entrance -2016-05-04 11:13:11 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 11:13:11 DEBUG TemplateModel:83 - 2016-05-04 11:13:11, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 11:13:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:13:11 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 11:13:13 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 11:13:13 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 11:13:13 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 11:13:13 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 11:13:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:13:13 INFO ASLSession:352 - Logging the entrance -2016-05-04 11:13:13 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 11:13:13 DEBUG TemplateModel:83 - 2016-05-04 11:13:13, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 11:13:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:13:13 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 11:13:13 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 113 ms -2016-05-04 11:13:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-04 11:13:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-04 11:13:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-04 11:13:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-04 11:13:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-04 11:13:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-04 11:13:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-04 11:13:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-04 11:13:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-04 11:13:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-04 11:13:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-04 11:13:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-04 11:13:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-04 11:13:13 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-04 11:13:13 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-04 11:13:13 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:13:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 11:13:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@5d0925e -2016-05-04 11:13:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@7dacd9c6 -2016-05-04 11:13:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@2b454b5 -2016-05-04 11:13:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@62935a8b -2016-05-04 11:13:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 103 ms -2016-05-04 11:13:13 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-04 11:13:14 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-04 11:13:14 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-04 11:13:14 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-04 11:13:14 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-04 11:13:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:13:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:13:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-04 11:13:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 19 ms -2016-05-04 11:13:14 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-04 11:13:14 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:13:14 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-04 11:13:14 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 11:13:14 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 11:13:14 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 11:13:14 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 11:13:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:13:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:13:14 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:13:14 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-04 11:13:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:14 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-04 11:13:14 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-04 11:13:14 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-04 11:13:14 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-04 11:13:14 DEBUG JCRRepository:271 - Initialize repository -2016-05-04 11:13:14 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-04 11:13:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 11:13:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:13:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-04 11:13:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 47 ms -2016-05-04 11:13:14 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-04 11:13:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:13:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:14 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-04 11:13:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:14 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-04 11:13:14 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 11:13:14 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 11:13:14 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-04 11:13:14 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 11:13:14 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 11:13:14 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-04 11:13:14 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-04 11:13:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:13:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:13:15 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 11:13:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 11:13:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:13:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:13:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 11:13:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 11:13:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:13:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:13:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 11:13:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 11:13:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:13:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:13:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 11:13:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 11:13:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:13:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:13:16 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:13:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:13:16 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-04 11:13:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:13:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:13:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:16 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 11:13:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:13:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:13:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:13:16 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 11:13:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:13:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:16 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 11:13:16 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-04 11:13:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:13:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:13:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-04 11:13:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:13:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:13:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 11:13:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:13:16 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-04 11:13:16 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:13:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:13:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 31 ms -2016-05-04 11:13:16 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 11:13:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-04 11:13:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:13:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-04 11:13:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:13:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-04 11:13:16 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-04 11:13:16 INFO ISClientConnector:82 - found only one RR, take it -2016-05-04 11:13:16 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-04 11:13:16 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-04 11:13:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-04 11:13:16 DEBUG StorageClient:517 - set scope: /gcube -2016-05-04 11:13:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-04 11:13:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:13:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 11:13:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 11:13:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 17 ms -2016-05-04 11:13:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-04 11:13:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-04 11:13:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-04 11:13:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:13:16 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-04 11:13:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 328 msc 0 sec -2016-05-04 11:13:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 276 msc 0 sec -2016-05-04 11:13:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 178 msc 0 sec -2016-05-04 11:13:22 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 11:13:22 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 11:13:22 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 11:13:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:13:22 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 11:13:22 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:13:22 INFO SClient4WPS:643 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-04 11:13:22 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:13:22 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 11:13:23 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-04 11:13:23 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-04 11:13:23 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-04 11:13:23 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-04 11:13:23 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-04 11:13:23 DEBUG SClient4WPS:300 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-04 11:13:23 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-04 11:13:23 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-04 11:13:23 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-04 11:13:23 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-04 11:13:23 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:13:23 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-04 11:13:23 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-04 11:13:23 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-04 11:13:23 DEBUG WPS2SM:208 - Default Schema: null -2016-05-04 11:13:23 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-04 11:13:23 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-04 11:13:23 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-04 11:13:23 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:13:23 DEBUG SClient4WPS:660 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-04 11:13:23 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-04 11:13:23 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:13:23 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 11:13:23 DEBUG WPS2SM:100 - Guessed default value: -2016-05-04 11:13:23 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-04 11:13:23 DEBUG WPS2SM:111 - Machter find: true -2016-05-04 11:13:23 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-04 11:13:23 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-04 11:13:23 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-04 11:13:23 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-04 11:13:23 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-04 11:13:23 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-04 11:13:23 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-04 11:13:23 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-04 11:13:23 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:13:23 DEBUG SClient4WPS:660 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-04 11:13:23 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-04 11:13:23 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:13:23 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 11:13:23 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-04 11:13:23 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-04 11:13:23 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-04 11:13:23 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:13:23 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-04 11:13:23 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-04 11:13:23 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:13:23 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 11:13:23 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-04 11:13:23 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-04 11:13:23 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-04 11:13:23 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:13:23 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-04 11:13:23 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-04 11:13:23 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:13:23 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 11:13:23 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-04 11:13:23 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-04 11:13:23 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-04 11:13:23 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:13:23 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-04 11:13:23 DEBUG SClient4WPS:664 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-04 11:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:13:23 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:13:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:13:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:13:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:13:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:23 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-04 11:13:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:13:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-04 11:13:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:13:23 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:13:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:13:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:13:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:13:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:13:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:13:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:13:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:13:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:13:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:13:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:13:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:13:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 11:13:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:13:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 11:13:23 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-04 11:13:23 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-04 11:13:23 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-04 11:13:23 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-04 11:13:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-04 11:13:23 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-04 11:13:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-04 11:13:23 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-04 11:13:23 INFO WorkspaceExplorerServiceImpl:142 - end time - 205 msc 0 sec -2016-05-04 11:13:23 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-04 11:13:31 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:13:31 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:13:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:13:31 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:13:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:13:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:31 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:13:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:13:31 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:13:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:13:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:13:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:13:31 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 11:13:31 DEBUG ServiceEngine:306 - get() - start -2016-05-04 11:13:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:13:31 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:13:31 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-04 11:13:31 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-04 11:13:31 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 11:13:31 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 11:13:31 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-04 11:13:31 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 11:13:31 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-04 11:13:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:13:31 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:13:31 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 11:13:31 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 11:13:31 DEBUG MongoIO:77 - open mongo connection -2016-05-04 11:13:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:13:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:13:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:13:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:13:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:13:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:13:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:13:31 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 11:13:31 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:13:31 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 11:13:31 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:31 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:31 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@290ac7fd, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@53353e9f, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4ca26366, socketFactory=javax.net.DefaultSocketFactory@392be4d8, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 11:13:31 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-04 11:13:31 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 11:13:31 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 11:13:31 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 11:13:31 INFO WorkspaceExplorerServiceImpl:188 - end time - 61 msc 0 sec -2016-05-04 11:13:31 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 11:13:31 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-04 11:13:31 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1885931}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:31 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1478994, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:31 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 11:13:31 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:273659}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:13:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:13:31 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:31 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:31 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1814875, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:31 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1885932}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:31 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2155165}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:13:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:13:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1008567, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885932}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:31 DEBUG command:56 - Command execution completed -2016-05-04 11:13:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885932}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:31 DEBUG command:56 - Command execution completed -2016-05-04 11:13:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885932}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:31 DEBUG command:56 - Command execution completed -2016-05-04 11:13:31 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1568970}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:13:31 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:13:31 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 11:13:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1652683, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-04 11:13:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885932}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:31 DEBUG command:56 - Command execution completed -2016-05-04 11:13:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1885932}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:31 DEBUG command:56 - Command execution completed -2016-05-04 11:13:31 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1885932}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:32 DEBUG query:56 - Query completed -2016-05-04 11:13:32 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-04 11:13:32 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2155165} -2016-05-04 11:13:32 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1568970} -2016-05-04 11:13:32 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1885932}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 11:13:32 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:273659} -2016-05-04 11:13:32 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1885932} -2016-05-04 11:13:32 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1885931} -2016-05-04 11:13:32 INFO MongoIO:508 - Mongo has been closed -2016-05-04 11:13:32 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 11:13:32 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-04 11:13:32 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-04 11:13:32 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 11:13:32 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 11:13:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:13:32 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:13:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:13:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:32 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 11:13:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:13:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:13:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:13:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:32 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 11:13:32 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 11:13:32 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 11:13:32 DEBUG ServiceEngine:306 - get() - start -2016-05-04 11:13:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:13:32 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:13:32 DEBUG ServiceEngine:62 - path(String) - name: DBScan -2016-05-04 11:13:32 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-04 11:13:32 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 11:13:32 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 11:13:32 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-04 11:13:32 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 11:13:32 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 11:13:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:13:32 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:13:32 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 11:13:32 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 11:13:32 DEBUG MongoIO:77 - open mongo connection -2016-05-04 11:13:32 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 11:13:32 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:32 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:32 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:32 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@290ac7fd, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@53353e9f, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4ca26366, socketFactory=javax.net.DefaultSocketFactory@392be4d8, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 11:13:32 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 11:13:32 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 11:13:33 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1885933}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2511892, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:33 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 11:13:33 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:33 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:273660}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:33 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1559718, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:33 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2155166}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1037328, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:33 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1568971}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1409894, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-04 11:13:33 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1885934}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 DEBUG command:56 - Command execution completed -2016-05-04 11:13:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 DEBUG command:56 - Command execution completed -2016-05-04 11:13:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 DEBUG command:56 - Command execution completed -2016-05-04 11:13:33 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 11:13:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:13:33 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 11:13:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:13:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:33 DEBUG command:56 - Command execution completed -2016-05-04 11:13:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:13:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1885934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 11:13:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:13:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:33 DEBUG command:56 - Command execution completed -2016-05-04 11:13:33 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1885934}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:33 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 11:13:33 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-04 11:13:33 INFO JCRServlets:697 - Calling Servlet get Parents By Id 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 11:13:33 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-04 11:13:33 INFO WorkspaceExplorerServiceImpl:188 - end time - 47 msc 0 sec -2016-05-04 11:13:33 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-04 11:13:33 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=7ba62008-739a-4787-ae33-7938ad109a54, name=DBScan, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 11:13:33 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 11:13:33 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-04 11:13:33 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-04 11:13:33 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:13:33 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:13:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:13:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:13:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:13:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:33 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:13:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:13:33 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:13:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:13:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:33 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:13:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:13:33 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 11:13:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:13:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:33 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:13:33 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:13:33 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:13:33 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-04 11:13:34 DEBUG query:56 - Query completed -2016-05-04 11:13:34 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-05-04 11:13:34 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2155166} -2016-05-04 11:13:34 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:273660} -2016-05-04 11:13:34 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1568971} -2016-05-04 11:13:34 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1885934}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 11:13:34 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1885934} -2016-05-04 11:13:34 INFO MongoIO:508 - Mongo has been closed -2016-05-04 11:13:34 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1885933} -2016-05-04 11:13:34 INFO DefaultMongoClient:1329 - getFolderTotalVolume 849 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 11:13:34 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-04 11:13:34 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-05-04 11:13:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:13:34 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 11:13:34 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:13:34 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=13d0382e-8833-4df7-b4dc-61bbba61b3e5, name=hcaf_filtered.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 17:10:22 CET 2016] -2016-05-04 11:13:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:34 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:13:34 DEBUG ServiceEngine:193 - get() - start -2016-05-04 11:13:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:13:34 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:13:34 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-04 11:13:34 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 11:13:34 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 11:13:34 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-04 11:13:34 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-04 11:13:34 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 11:13:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:13:34 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:13:34 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 11:13:34 DEBUG Operation:173 - get(String) - start -2016-05-04 11:13:34 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 11:13:34 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 11:13:34 DEBUG MongoIO:77 - open mongo connection -2016-05-04 11:13:34 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 11:13:34 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:34 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:34 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:34 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@290ac7fd, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@53353e9f, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4ca26366, socketFactory=javax.net.DefaultSocketFactory@392be4d8, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 11:13:34 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 11:13:34 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 11:13:34 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:273664}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:13:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:13:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1583303, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:34 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 11:13:34 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:34 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:34 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1885935}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1199331, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:34 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:34 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2155167}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:13:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:13:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=971019, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:34 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1885936}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:34 DEBUG command:56 - Command execution completed -2016-05-04 11:13:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:34 DEBUG command:56 - Command execution completed -2016-05-04 11:13:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:34 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1568972}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:13:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:13:34 DEBUG command:56 - Command execution completed -2016-05-04 11:13:34 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-04 11:13:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG command:56 - Command execution completed -2016-05-04 11:13:35 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=3313551, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}] -2016-05-04 11:13:35 DEBUG command:56 - Command execution completed -2016-05-04 11:13:35 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 11:13:35 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG command:56 - Command execution completed -2016-05-04 11:13:35 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1885936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG command:56 - Command execution completed -2016-05-04 11:13:35 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 11:13:35 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1885936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG query:56 - Query completed -2016-05-04 11:13:35 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-04 11:13:35 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-04 11:13:35 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-04 11:13:35 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1885936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG update:56 - Update completed -2016-05-04 11:13:35 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1885936}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG query:56 - Query completed -2016-05-04 11:13:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 11:13:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 11:13:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 11:13:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 11:13:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 11:13:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 11:13:35 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-04 11:13:35 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered.csv -2016-05-04 11:13:35 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-04 11:13:35 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-04 11:13:35 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:13:35 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:13:35 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-04 11:13:35 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-04 11:13:35 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-04 11:13:35 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-04 11:13:35 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-04 11:13:35 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-04 11:13:35 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-04 11:13:35 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-04 11:13:35 DEBUG BucketCoding:42 - coding name done -2016-05-04 11:13:35 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-04 11:13:35 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-04 11:13:35 DEBUG MongoIO:77 - open mongo connection -2016-05-04 11:13:35 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-04 11:13:35 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:35 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:35 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:35 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@290ac7fd, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@53353e9f, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4ca26366, socketFactory=javax.net.DefaultSocketFactory@392be4d8, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-04 11:13:35 INFO MongoIO:106 - new mongo connection pool opened -2016-05-04 11:13:35 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-04 11:13:35 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:273665}] to mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1885937}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1685769, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:35 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-04 11:13:35 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1698027, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:35 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-04 11:13:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:35 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:35 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2155168}] to mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1252624, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-04 11:13:35 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1568973}] to mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1294301, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-04 11:13:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-04 11:13:35 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1885938}] to mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885938}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG command:56 - Command execution completed -2016-05-04 11:13:35 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885938}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG command:56 - Command execution completed -2016-05-04 11:13:35 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885938}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG command:56 - Command execution completed -2016-05-04 11:13:35 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 11:13:35 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 11:13:35 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885938}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG command:56 - Command execution completed -2016-05-04 11:13:35 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1885938}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG command:56 - Command execution completed -2016-05-04 11:13:35 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 11:13:35 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1885938}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG query:56 - Query completed -2016-05-04 11:13:35 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-04 11:13:35 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2155168} -2016-05-04 11:13:35 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:273665} -2016-05-04 11:13:35 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1568973} -2016-05-04 11:13:35 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1885938}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 11:13:35 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1885938} -2016-05-04 11:13:35 INFO MongoIO:508 - Mongo has been closed -2016-05-04 11:13:35 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1885937} -2016-05-04 11:13:35 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-04 11:13:35 INFO Operation:55 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 11:13:35 INFO Operation:57 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 11:13:35 DEBUG Operation:87 - translating: http://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 11:13:35 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-04 11:13:35 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-04 11:13:35 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 11:13:35 INFO Operation:65 - URL translated: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 11:13:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-04 11:13:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}] -2016-05-04 11:13:40 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2155167} -2016-05-04 11:13:40 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:273664} -2016-05-04 11:13:40 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1568972} -2016-05-04 11:13:40 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1885936}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-04 11:13:40 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1885936} -2016-05-04 11:13:40 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1885935} -2016-05-04 11:13:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:13:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 11:13:49 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 11:13:49 DEBUG DataMinerManagerServiceImpl:148 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=Test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-05-04 11:13:49 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-04 11:13:49 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-04 11:13:49 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-04 11:13:49 DEBUG WPS2SM:208 - Default Schema: null -2016-05-04 11:13:49 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-04 11:13:49 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-04 11:13:49 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-04 11:13:49 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:13:49 DEBUG SClient4WPS:692 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-04 11:13:49 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-04 11:13:49 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:13:49 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 11:13:49 DEBUG WPS2SM:100 - Guessed default value: -2016-05-04 11:13:49 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-04 11:13:49 DEBUG WPS2SM:111 - Machter find: true -2016-05-04 11:13:49 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-04 11:13:49 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-04 11:13:49 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-04 11:13:49 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-04 11:13:49 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-04 11:13:49 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-04 11:13:49 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-04 11:13:49 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-04 11:13:49 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:13:49 DEBUG SClient4WPS:692 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-04 11:13:49 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-04 11:13:49 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:13:49 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-04 11:13:49 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-04 11:13:49 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-04 11:13:49 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-04 11:13:49 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:13:49 DEBUG SClient4WPS:692 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-04 11:13:49 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-04 11:13:49 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:13:49 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 11:13:49 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-04 11:13:49 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-04 11:13:49 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-04 11:13:49 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:13:49 DEBUG SClient4WPS:692 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-04 11:13:49 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-04 11:13:49 DEBUG WPS2SM:92 - WPS type: -2016-05-04 11:13:49 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-04 11:13:49 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-04 11:13:49 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-04 11:13:49 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-04 11:13:49 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-04 11:13:49 DEBUG SClient4WPS:692 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-04 11:13:49 DEBUG SClient4WPS:700 - UserInputs= key:OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 11:13:49 DEBUG SClient4WPS:700 - UserInputs= key:FeaturesColumnNames, value=depthmean|sstmnmax|salinitymean -2016-05-04 11:13:49 DEBUG SClient4WPS:700 - UserInputs= key:OccurrencePointsClusterLabel, value=Test -2016-05-04 11:13:49 DEBUG SClient4WPS:700 - UserInputs= key:epsilon, value=10 -2016-05-04 11:13:49 DEBUG SClient4WPS:700 - UserInputs= key:min_points, value=1 -2016-05-04 11:13:49 DEBUG SClient4WPS:761 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-04 11:13:49 DEBUG SClient4WPS:744 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymean -2016-05-04 11:13:49 DEBUG SClient4WPS:744 - Configuring Literal: OccurrencePointsClusterLabel to: Test -2016-05-04 11:13:49 DEBUG SClient4WPS:744 - Configuring Literal: epsilon to: 10 -2016-05-04 11:13:49 DEBUG SClient4WPS:744 - Configuring Literal: min_points to: 1 -2016-05-04 11:13:49 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 11:13:51 DEBUG SClient4WPS:384 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - - - OccurrencePointsTable - - - - FeaturesColumnNames - - depthmean|sstmnmax|salinitymean - - - - OccurrencePointsClusterLabel - - Test - - - - epsilon - - 10 - - - - min_points - - 1 - - - - - - - OutputTable - - - non_deterministic_output - - - - -2016-05-04 11:13:51 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-04 11:13:52 DEBUG SClient4WPS:415 - ExecuteProcessAsync: Invalid Response from service: Response isn't instance of ExecuteResponseDocumentImpl, class is class net.opengis.ows.x11.impl.ExceptionReportDocumentImpl -2016-05-04 11:13:52 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 11:13:52 DEBUG SClient4WPS:787 - WPSProcess->Returning Exception to the SM:Process error in WPS Execution -2016-05-04 11:13:52 ERROR DataMinerManagerServiceImpl:153 - Error in start computation: Process error in WPS Execution -2016-05-04 11:14:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:14:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:15:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:15:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:15:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:15:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:16:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:16:51 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 11:17:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:17:46 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 11:18:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:18:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:19:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:19:36 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:20:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:20:31 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 11:21:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:21:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:22:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:22:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 11:23:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:23:16 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 11:24:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:24:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:25:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:25:06 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 11:26:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:26:01 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:26:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:26:56 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 11:27:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:27:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:28:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:28:46 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 11:29:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:29:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:30:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:30:36 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:31:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:31:31 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 11:32:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 11:32:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 11:33:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 11:33:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:34:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:34:16 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 11:35:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:35:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:36:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:36:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:37:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:37:01 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 11:37:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 11:38:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:38:51 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:39:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 11:39:46 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 11:40:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:40:41 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 11:41:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 11:41:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 11:42:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 11:42:31 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 11:43:26 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 11:43:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 11:43:26 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 11:43:26 WARN SessionCheckerServiceImpl:80 - Scope is null at Wed May 04 11:43:26 CEST 2016 -2016-05-04 11:43:26 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 12:06:20 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-04 12:06:20 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-04 12:06:20 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-04 12:06:20 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 12:06:20 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 12:06:20 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 12:06:20 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 12:06:20 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@780ab614 -2016-05-04 12:06:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 12:06:20 INFO ASLSession:352 - Logging the entrance -2016-05-04 12:06:20 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 12:06:20 DEBUG TemplateModel:83 - 2016-05-04 12:06:20, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 12:06:20 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 12:06:20 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 12:06:22 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 12:06:22 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 12:06:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 12:06:22 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 12:06:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 12:06:22 INFO ASLSession:352 - Logging the entrance -2016-05-04 12:06:22 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 12:06:22 DEBUG TemplateModel:83 - 2016-05-04 12:06:22, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 12:06:22 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 12:06:22 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 12:06:22 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 111 ms -2016-05-04 12:06:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-04 12:06:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-04 12:06:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-04 12:06:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-04 12:06:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-04 12:06:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-04 12:06:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-04 12:06:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-04 12:06:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-04 12:06:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-04 12:06:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-04 12:06:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-04 12:06:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-04 12:06:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-04 12:06:22 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-04 12:06:23 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 12:06:23 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 12:06:23 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 12:06:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 12:06:23 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 12:06:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 12:06:23 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-04 12:06:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 12:06:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 12:06:23 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-04 12:06:23 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-04 12:06:23 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-04 12:06:23 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-04 12:06:23 DEBUG JCRRepository:271 - Initialize repository -2016-05-04 12:06:23 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-04 12:06:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-04 12:06:24 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 12:06:24 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 12:06:24 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 12:06:24 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-04 12:06:24 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@1cef92b0 -2016-05-04 12:06:24 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3e3491cc -2016-05-04 12:06:24 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@7ceb9f59 -2016-05-04 12:06:24 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@51cf492c -2016-05-04 12:06:24 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 94 ms -2016-05-04 12:06:24 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-04 12:06:27 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 3109 ms -2016-05-04 12:06:27 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-04 12:06:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 12:06:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 12:06:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 12:06:27 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-04 12:06:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:06:27 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-04 12:06:27 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-04 12:06:27 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-04 12:06:27 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-04 12:06:27 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-04 12:06:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 12:06:27 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 12:06:27 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-04 12:06:28 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 1020 ms -2016-05-04 12:06:28 DEBUG SClient4WPS:114 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-04 12:06:28 INFO SClient4WPS:119 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 12:06:28 DEBUG SClient4WPS:130 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-04 12:06:28 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 12:06:28 ERROR DataMinerManagerServiceImpl:98 - An error occurred getting the OperatorsClassifications list: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& -java.lang.Exception: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:346) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.getOperatorsClassifications(SClient4WPS.java:161) - at org.gcube.portlets.user.dataminermanager.server.DataMinerManagerServiceImpl.getOperatorsClassifications(DataMinerManagerServiceImpl.java:93) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:606) - at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:561) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305) - at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:755) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:848) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) - at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) - at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428) - at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.Server.handle(Server.java:370) - at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) - at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960) - at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021) - at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865) - at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240) - at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) - at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) - at java.lang.Thread.run(Thread.java:745) -Caused by: org.n52.wps.client.WPSClientException: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& - at org.gcube.portlets.user.dataminermanager.server.smservice.wps.StatWPSClientSession.retrieveCapsViaGET(StatWPSClientSession.java:361) - at org.gcube.portlets.user.dataminermanager.server.smservice.wps.StatWPSClientSession.connect(StatWPSClientSession.java:89) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:332) - ... 37 more -2016-05-04 12:06:31 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 12:06:31 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 12:06:31 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-04 12:06:31 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 12:06:31 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 12:06:31 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-04 12:06:31 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-04 12:06:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:06:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 12:06:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:06:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:06:31 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 12:06:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 12:06:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:06:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:06:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 12:06:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 12:06:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 12:06:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 12:06:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:06:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 12:06:32 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 12:06:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 12:06:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:06:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:06:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 12:06:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 12:06:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 12:06:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 12:06:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:06:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 12:06:32 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 12:06:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 12:06:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:06:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:06:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 12:06:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 12:06:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 12:06:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 12:06:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:06:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 12:06:32 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 12:06:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 12:06:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:06:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:06:33 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 12:06:33 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 12:06:33 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 12:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 12:06:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 12:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 12:06:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 12:06:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 12:06:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 12:06:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 12:06:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:06:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 12:06:33 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 12:06:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:06:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 12:06:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 12:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 12:06:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 12:06:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 12:06:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 12:06:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 12:06:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:06:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 12:06:33 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 12:06:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:06:33 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-04 12:06:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 12:06:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 12:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 12:06:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 12:06:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 12:06:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 12:06:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 12:06:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:06:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 12:06:33 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-04 12:06:33 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 12:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 12:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 12:06:33 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 12:06:33 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 12:06:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:06:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:06:33 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-05-04 12:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 12:06:33 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 12:06:33 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-04 12:06:33 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-04 12:06:33 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 19 ms -2016-05-04 12:06:33 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-04 12:06:33 INFO ISClientConnector:82 - found only one RR, take it -2016-05-04 12:06:33 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-04 12:06:33 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-04 12:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 12:06:33 DEBUG StorageClient:517 - set scope: /gcube -2016-05-04 12:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 12:06:33 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 12:06:33 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 12:06:33 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 17 ms -2016-05-04 12:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 12:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 12:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 12:06:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 12:06:33 INFO WorkspaceExplorerServiceImpl:188 - end time - 348 msc 0 sec -2016-05-04 12:06:33 INFO WorkspaceExplorerServiceImpl:188 - end time - 254 msc 0 sec -2016-05-04 12:06:33 INFO WorkspaceExplorerServiceImpl:188 - end time - 421 msc 0 sec -2016-05-04 12:07:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 12:07:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 12:08:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 12:08:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 12:09:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 12:09:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 12:09:38 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-04 12:09:38 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-04 12:09:38 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-04 12:09:38 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 12:09:38 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 12:09:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 12:09:38 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 12:09:38 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@10d411d7 -2016-05-04 12:09:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 12:09:38 INFO ASLSession:352 - Logging the entrance -2016-05-04 12:09:38 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 12:09:38 DEBUG TemplateModel:83 - 2016-05-04 12:09:38, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 12:09:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 12:09:38 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 12:09:40 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 12:09:40 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 12:09:40 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 12:09:40 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 12:09:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 12:09:40 INFO ASLSession:352 - Logging the entrance -2016-05-04 12:09:40 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 12:09:40 DEBUG TemplateModel:83 - 2016-05-04 12:09:40, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 12:09:40 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 12:09:40 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 12:09:40 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 136 ms -2016-05-04 12:09:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-04 12:09:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-04 12:09:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-04 12:09:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-04 12:09:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-04 12:09:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-04 12:09:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-04 12:09:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-04 12:09:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-04 12:09:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-04 12:09:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-04 12:09:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-04 12:09:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-04 12:09:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-04 12:09:40 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-04 12:09:41 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 12:09:41 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 12:09:41 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 12:09:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 12:09:41 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 12:09:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 12:09:41 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-04 12:09:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 12:09:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 12:09:41 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-04 12:09:41 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-04 12:09:41 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-04 12:09:41 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-04 12:09:41 DEBUG JCRRepository:271 - Initialize repository -2016-05-04 12:09:41 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-04 12:09:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-04 12:09:43 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 12:09:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 12:09:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 12:09:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-04 12:09:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@3ca31717 -2016-05-04 12:09:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3c8e64fb -2016-05-04 12:09:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@6ce45db -2016-05-04 12:09:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@286361b5 -2016-05-04 12:09:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 91 ms -2016-05-04 12:09:43 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-04 12:09:43 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-04 12:09:43 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-04 12:09:43 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-04 12:09:43 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-04 12:09:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 12:09:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 12:09:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-04 12:09:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 23 ms -2016-05-04 12:09:43 DEBUG SClient4WPS:114 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-04 12:09:43 INFO SClient4WPS:119 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 12:09:43 DEBUG SClient4WPS:130 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-04 12:09:43 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 12:09:48 ERROR DataMinerManagerServiceImpl:98 - An error occurred getting the OperatorsClassifications list: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& -java.lang.Exception: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:346) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.getOperatorsClassifications(SClient4WPS.java:161) - at org.gcube.portlets.user.dataminermanager.server.DataMinerManagerServiceImpl.getOperatorsClassifications(DataMinerManagerServiceImpl.java:93) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:606) - at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:561) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305) - at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:755) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:848) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) - at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) - at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428) - at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.Server.handle(Server.java:370) - at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) - at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960) - at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021) - at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865) - at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240) - at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) - at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) - at java.lang.Thread.run(Thread.java:745) -Caused by: org.n52.wps.client.WPSClientException: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& - at org.gcube.portlets.user.dataminermanager.server.smservice.wps.StatWPSClientSession.retrieveCapsViaGET(StatWPSClientSession.java:361) - at org.gcube.portlets.user.dataminermanager.server.smservice.wps.StatWPSClientSession.connect(StatWPSClientSession.java:89) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:332) - ... 37 more -2016-05-04 12:09:49 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 6169 ms -2016-05-04 12:09:49 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-04 12:09:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 12:09:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 12:09:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 12:09:49 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-04 12:09:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:09:49 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-04 12:09:52 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 12:09:52 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 12:09:52 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-04 12:09:52 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 12:09:52 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 12:09:52 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-04 12:09:52 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-04 12:09:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:09:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 12:09:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:09:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:09:52 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 12:09:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 12:09:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:09:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:09:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 12:09:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 12:09:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 12:09:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 12:09:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:09:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 12:09:53 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 12:09:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 12:09:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:09:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:09:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 12:09:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 12:09:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 12:09:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 12:09:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:09:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 12:09:53 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 12:09:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 12:09:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:09:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:09:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 12:09:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 12:09:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 12:09:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 12:09:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:09:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 12:09:53 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 12:09:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 12:09:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:09:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:09:54 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 12:09:54 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 12:09:54 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 12:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 12:09:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 12:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 12:09:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 12:09:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 12:09:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 12:09:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 12:09:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:09:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 12:09:54 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 12:09:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:09:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 12:09:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 12:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 12:09:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 12:09:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 12:09:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 12:09:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 12:09:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:09:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 12:09:54 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 12:09:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:09:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:09:54 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-04 12:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 12:09:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 12:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 12:09:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 12:09:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 12:09:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 12:09:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 12:09:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 12:09:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 12:09:54 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 12:09:54 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-04 12:09:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 12:09:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 12:09:54 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-04 12:09:54 INFO WorkspaceExplorerServiceImpl:188 - end time - 209 msc 0 sec -2016-05-04 12:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 12:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 12:09:54 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 12:09:54 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 12:09:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-05-04 12:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 12:09:54 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 12:09:54 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-04 12:09:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-04 12:09:54 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-04 12:09:54 INFO ISClientConnector:82 - found only one RR, take it -2016-05-04 12:09:54 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-04 12:09:54 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-04 12:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 12:09:54 DEBUG StorageClient:517 - set scope: /gcube -2016-05-04 12:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 12:09:54 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 12:09:54 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 12:09:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-04 12:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 12:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 12:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-04 12:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 12:09:54 INFO WorkspaceExplorerServiceImpl:188 - end time - 596 msc 0 sec -2016-05-04 12:09:55 INFO WorkspaceExplorerServiceImpl:188 - end time - 1163 msc 1 sec -2016-05-04 12:10:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 12:10:33 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 12:11:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 12:11:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 12:12:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 12:12:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 12:13:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 12:13:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 12:14:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 12:14:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 12:15:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 12:15:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 12:16:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 12:16:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 12:16:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 12:16:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 12:17:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 12:17:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 12:18:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 12:18:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 12:19:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 12:19:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 12:20:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 12:20:38 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 12:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 12:21:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 12:22:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-04 12:22:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-04 12:23:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 12:23:23 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 14:02:30 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-04 14:02:30 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-04 14:02:30 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-04 14:02:30 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 14:02:30 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 14:02:30 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 14:02:30 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 14:02:30 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@52df42e2 -2016-05-04 14:02:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 14:02:30 INFO ASLSession:352 - Logging the entrance -2016-05-04 14:02:30 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 14:02:30 DEBUG TemplateModel:83 - 2016-05-04 14:02:30, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 14:02:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 14:02:30 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 14:02:32 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 14:02:32 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 14:02:32 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 14:02:32 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 14:02:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 14:02:32 INFO ASLSession:352 - Logging the entrance -2016-05-04 14:02:32 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 14:02:32 DEBUG TemplateModel:83 - 2016-05-04 14:02:32, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 14:02:32 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 14:02:32 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 14:02:32 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 129 ms -2016-05-04 14:02:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-04 14:02:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-04 14:02:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-04 14:02:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-04 14:02:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-04 14:02:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-04 14:02:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-04 14:02:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-04 14:02:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-04 14:02:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-04 14:02:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-04 14:02:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-04 14:02:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-04 14:02:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-04 14:02:32 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-04 14:02:32 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 14:02:32 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 14:02:32 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@1fa754a1 -2016-05-04 14:02:32 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@4e61188f -2016-05-04 14:02:32 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@157552e2 -2016-05-04 14:02:32 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@1a63b91a -2016-05-04 14:02:32 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 103 ms -2016-05-04 14:02:32 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-04 14:02:32 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-04 14:02:32 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-04 14:02:32 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-04 14:02:32 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-04 14:02:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 14:02:32 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 14:02:32 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-04 14:02:32 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-04 14:02:32 DEBUG SClient4WPS:114 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-04 14:02:32 INFO SClient4WPS:119 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 14:02:32 DEBUG SClient4WPS:130 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-04 14:02:32 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 14:02:33 ERROR DataMinerManagerServiceImpl:98 - An error occurred getting the OperatorsClassifications list: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& -java.lang.Exception: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:346) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.getOperatorsClassifications(SClient4WPS.java:161) - at org.gcube.portlets.user.dataminermanager.server.DataMinerManagerServiceImpl.getOperatorsClassifications(DataMinerManagerServiceImpl.java:93) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:606) - at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:561) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305) - at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:755) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:848) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) - at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) - at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428) - at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.Server.handle(Server.java:370) - at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) - at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960) - at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021) - at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865) - at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240) - at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) - at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) - at java.lang.Thread.run(Thread.java:745) -Caused by: org.n52.wps.client.WPSClientException: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& - at org.gcube.portlets.user.dataminermanager.server.smservice.wps.StatWPSClientSession.retrieveCapsViaGET(StatWPSClientSession.java:361) - at org.gcube.portlets.user.dataminermanager.server.smservice.wps.StatWPSClientSession.connect(StatWPSClientSession.java:89) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:332) - ... 37 more -2016-05-04 14:02:33 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 14:02:33 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 14:02:33 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 14:02:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 14:02:33 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 14:02:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 14:02:33 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-04 14:02:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 14:02:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 14:02:33 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-04 14:02:33 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-04 14:02:33 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-04 14:02:33 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-04 14:02:33 DEBUG JCRRepository:271 - Initialize repository -2016-05-04 14:02:33 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-04 14:02:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-04 14:02:33 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 14:02:33 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-04 14:02:33 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 56 ms -2016-05-04 14:02:33 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-04 14:02:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 14:02:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 14:02:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 14:02:33 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-04 14:02:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:02:33 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-04 14:02:33 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 14:02:33 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 14:02:33 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-04 14:02:33 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 14:02:33 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 14:02:33 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-04 14:02:33 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-04 14:02:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:02:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 14:02:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:02:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:02:34 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 14:02:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 14:02:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:02:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:02:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 14:02:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 14:02:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 14:02:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 14:02:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:02:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 14:02:34 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 14:02:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 14:02:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:02:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:02:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 14:02:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 14:02:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 14:02:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 14:02:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:02:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 14:02:34 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 14:02:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 14:02:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:02:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:02:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 14:02:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 14:02:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 14:02:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 14:02:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:02:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 14:02:34 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 14:02:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 14:02:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:02:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:02:35 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 14:02:35 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 14:02:35 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 14:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 14:02:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 14:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 14:02:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 14:02:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 14:02:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 14:02:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 14:02:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:02:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 14:02:35 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 14:02:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:02:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 14:02:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 14:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 14:02:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 14:02:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 14:02:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 14:02:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 14:02:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:02:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 14:02:35 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 14:02:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:02:35 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-04 14:02:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 14:02:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 14:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 14:02:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 14:02:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 14:02:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 14:02:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 14:02:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:02:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 14:02:35 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 14:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-04 14:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 14:02:35 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-04 14:02:35 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 14:02:35 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 14:02:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:02:35 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-04 14:02:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-04 14:02:35 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 14:02:35 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-04 14:02:35 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-04 14:02:35 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-04 14:02:35 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-04 14:02:35 INFO ISClientConnector:82 - found only one RR, take it -2016-05-04 14:02:35 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-04 14:02:35 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-04 14:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-04 14:02:35 DEBUG StorageClient:517 - set scope: /gcube -2016-05-04 14:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-04 14:02:35 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 14:02:35 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 14:02:35 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-04 14:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-04 14:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-04 14:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-04 14:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 14:02:35 INFO WorkspaceExplorerServiceImpl:188 - end time - 355 msc 0 sec -2016-05-04 14:02:35 INFO WorkspaceExplorerServiceImpl:188 - end time - 231 msc 0 sec -2016-05-04 14:02:35 INFO WorkspaceExplorerServiceImpl:188 - end time - 346 msc 0 sec -2016-05-04 14:03:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 14:03:25 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 14:04:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 14:04:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 14:05:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 14:05:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 14:06:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 14:06:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 14:07:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 14:07:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 14:08:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 14:08:00 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 14:08:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 14:08:55 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 14:09:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 14:09:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 14:10:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 14:10:45 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 14:11:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 14:11:40 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 14:12:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 14:12:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 14:13:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 14:13:30 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 14:14:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 14:14:25 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 14:15:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-04 14:15:20 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-04 14:16:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 14:16:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 14:17:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 14:17:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 14:18:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 14:18:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 14:19:18 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-04 14:19:18 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-04 14:19:18 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-04 14:19:18 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 14:19:18 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 14:19:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 14:19:18 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 14:19:18 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@66d85e40 -2016-05-04 14:19:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 14:19:18 INFO ASLSession:352 - Logging the entrance -2016-05-04 14:19:18 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 14:19:18 DEBUG TemplateModel:83 - 2016-05-04 14:19:18, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 14:19:18 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 14:19:18 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 14:19:20 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 14:19:20 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 14:19:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 14:19:20 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 14:19:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 14:19:20 INFO ASLSession:352 - Logging the entrance -2016-05-04 14:19:20 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 14:19:20 DEBUG TemplateModel:83 - 2016-05-04 14:19:20, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 14:19:20 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 14:19:20 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 14:19:20 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 131 ms -2016-05-04 14:19:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-04 14:19:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-04 14:19:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-04 14:19:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-04 14:19:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-04 14:19:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-04 14:19:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-04 14:19:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-04 14:19:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-04 14:19:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-04 14:19:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-04 14:19:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-04 14:19:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-04 14:19:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-04 14:19:20 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-04 14:19:20 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 14:19:20 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 14:19:21 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@46858a4b -2016-05-04 14:19:21 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@1e4367f -2016-05-04 14:19:21 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@169ef753 -2016-05-04 14:19:21 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@2b37ebf -2016-05-04 14:19:21 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 110 ms -2016-05-04 14:19:21 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-04 14:19:21 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-04 14:19:21 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-04 14:19:21 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-04 14:19:21 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-04 14:19:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 14:19:21 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 14:19:21 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-04 14:19:21 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 26 ms -2016-05-04 14:19:21 DEBUG SClient4WPS:114 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-04 14:19:21 INFO SClient4WPS:119 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 14:19:21 DEBUG SClient4WPS:130 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-04 14:19:21 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 14:19:21 ERROR DataMinerManagerServiceImpl:98 - An error occurred getting the OperatorsClassifications list: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& -java.lang.Exception: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:346) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.getOperatorsClassifications(SClient4WPS.java:161) - at org.gcube.portlets.user.dataminermanager.server.DataMinerManagerServiceImpl.getOperatorsClassifications(DataMinerManagerServiceImpl.java:93) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:606) - at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:561) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305) - at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:755) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:848) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) - at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) - at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428) - at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.Server.handle(Server.java:370) - at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) - at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960) - at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021) - at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865) - at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240) - at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) - at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) - at java.lang.Thread.run(Thread.java:745) -Caused by: org.n52.wps.client.WPSClientException: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& - at org.gcube.portlets.user.dataminermanager.server.smservice.wps.StatWPSClientSession.retrieveCapsViaGET(StatWPSClientSession.java:361) - at org.gcube.portlets.user.dataminermanager.server.smservice.wps.StatWPSClientSession.connect(StatWPSClientSession.java:89) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:332) - ... 37 more -2016-05-04 14:19:21 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 14:19:21 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 14:19:21 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 14:19:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 14:19:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 14:19:21 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 14:19:21 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-04 14:19:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 14:19:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 14:19:21 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-04 14:19:21 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-04 14:19:21 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-04 14:19:21 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-04 14:19:21 DEBUG JCRRepository:271 - Initialize repository -2016-05-04 14:19:21 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-04 14:19:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-04 14:19:21 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 14:19:21 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-04 14:19:21 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-04 14:19:21 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-04 14:19:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 14:19:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 14:19:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 14:19:21 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-04 14:19:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:19:21 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-04 14:19:22 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 14:19:22 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 14:19:22 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-04 14:19:22 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 14:19:22 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 14:19:22 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-04 14:19:22 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-04 14:19:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:19:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 14:19:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:19:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:19:22 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 14:19:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 14:19:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:19:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:19:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 14:19:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 14:19:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 14:19:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 14:19:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:19:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 14:19:22 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 14:19:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 14:19:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:19:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:19:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 14:19:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 14:19:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 14:19:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 14:19:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:19:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 14:19:22 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 14:19:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 14:19:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:19:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:19:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 14:19:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 14:19:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 14:19:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 14:19:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:19:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 14:19:22 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 14:19:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 14:19:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:19:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:19:23 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 14:19:23 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 14:19:23 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 14:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 14:19:23 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 14:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 14:19:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 14:19:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 14:19:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 14:19:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 14:19:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:19:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 14:19:23 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 14:19:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:19:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 14:19:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-04 14:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-04 14:19:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 14:19:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 14:19:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 14:19:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 14:19:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:19:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 14:19:23 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 14:19:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:19:23 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-04 14:19:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 14:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 14:19:23 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-04 14:19:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 14:19:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 14:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 14:19:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 14:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 14:19:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 14:19:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 14:19:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 14:19:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 14:19:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 14:19:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 14:19:23 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 14:19:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-05-04 14:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 14:19:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 14:19:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 14:19:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-04 14:19:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 14:19:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-04 14:19:23 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-04 14:19:23 INFO ISClientConnector:82 - found only one RR, take it -2016-05-04 14:19:23 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-04 14:19:23 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-04 14:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 14:19:23 DEBUG StorageClient:517 - set scope: /gcube -2016-05-04 14:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 14:19:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 14:19:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 14:19:23 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-04 14:19:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 21 ms -2016-05-04 14:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 14:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 14:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 14:19:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 14:19:23 INFO WorkspaceExplorerServiceImpl:188 - end time - 351 msc 0 sec -2016-05-04 14:19:23 INFO WorkspaceExplorerServiceImpl:188 - end time - 294 msc 0 sec -2016-05-04 14:19:23 INFO WorkspaceExplorerServiceImpl:188 - end time - 193 msc 0 sec -2016-05-04 14:20:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 14:20:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 20:22:32 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-04 20:22:32 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-04 20:22:32 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-04 20:22:32 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 20:22:32 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 20:22:32 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 20:22:32 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 20:22:32 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@14c4db24 -2016-05-04 20:22:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 20:22:32 INFO ASLSession:352 - Logging the entrance -2016-05-04 20:22:32 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 20:22:32 DEBUG TemplateModel:83 - 2016-05-04 20:22:32, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 20:22:32 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 20:22:32 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-04 20:22:35 INFO SessionUtil:49 - no user found in session, use test user -2016-05-04 20:22:35 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-04 20:22:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 20:22:35 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-04 20:22:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 20:22:35 INFO ASLSession:352 - Logging the entrance -2016-05-04 20:22:35 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-04 20:22:35 DEBUG TemplateModel:83 - 2016-05-04 20:22:35, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-04 20:22:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 20:22:36 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 20:22:36 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 113 ms -2016-05-04 20:22:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-04 20:22:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-04 20:22:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-04 20:22:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-04 20:22:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-04 20:22:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-04 20:22:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-04 20:22:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-04 20:22:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-04 20:22:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-04 20:22:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-04 20:22:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-04 20:22:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-04 20:22:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-04 20:22:36 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-04 20:22:36 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 20:22:37 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-04 20:22:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@4ac234c3 -2016-05-04 20:22:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@5221eb53 -2016-05-04 20:22:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@5ed1daf6 -2016-05-04 20:22:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@77c927d6 -2016-05-04 20:22:37 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 236 ms -2016-05-04 20:22:37 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-04 20:22:37 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-04 20:22:37 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-04 20:22:37 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-04 20:22:37 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-04 20:22:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 20:22:37 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 20:22:37 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 20:22:37 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 20:22:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 20:22:37 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-04 20:22:37 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-04 20:22:37 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-04 20:22:37 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 20:22:37 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-04 20:22:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 20:22:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 20:22:37 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 22 ms -2016-05-04 20:22:37 DEBUG SClient4WPS:114 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-04 20:22:37 INFO SClient4WPS:119 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-04 20:22:37 DEBUG SClient4WPS:130 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-04 20:22:37 INFO StatWPSClientSession:84 - CONNECT -2016-05-04 20:22:37 ERROR DataMinerManagerServiceImpl:98 - An error occurred getting the OperatorsClassifications list: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& -java.lang.Exception: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:346) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.getOperatorsClassifications(SClient4WPS.java:161) - at org.gcube.portlets.user.dataminermanager.server.DataMinerManagerServiceImpl.getOperatorsClassifications(DataMinerManagerServiceImpl.java:93) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:606) - at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:561) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305) - at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:755) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:848) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) - at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) - at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428) - at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.Server.handle(Server.java:370) - at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) - at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960) - at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021) - at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865) - at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240) - at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) - at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) - at java.lang.Thread.run(Thread.java:745) -Caused by: org.n52.wps.client.WPSClientException: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& - at org.gcube.portlets.user.dataminermanager.server.smservice.wps.StatWPSClientSession.retrieveCapsViaGET(StatWPSClientSession.java:361) - at org.gcube.portlets.user.dataminermanager.server.smservice.wps.StatWPSClientSession.connect(StatWPSClientSession.java:89) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:332) - ... 37 more -2016-05-04 20:22:38 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-04 20:22:38 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-04 20:22:38 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-04 20:22:38 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-04 20:22:38 DEBUG JCRRepository:271 - Initialize repository -2016-05-04 20:22:38 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-04 20:22:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-04 20:22:38 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 20:22:38 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-04 20:22:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 73 ms -2016-05-04 20:22:38 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-04 20:22:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-04 20:22:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 20:22:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 20:22:38 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-04 20:22:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 20:22:38 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-04 20:22:39 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 20:22:39 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 20:22:39 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-04 20:22:39 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-04 20:22:39 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-04 20:22:39 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-04 20:22:39 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-04 20:22:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 20:22:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 20:22:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 20:22:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 20:22:39 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-04 20:22:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-04 20:22:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 20:22:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 20:22:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 20:22:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 20:22:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 20:22:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 20:22:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 20:22:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 20:22:39 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 20:22:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-04 20:22:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 20:22:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 20:22:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 20:22:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 20:22:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 20:22:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 20:22:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 20:22:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 20:22:39 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 20:22:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-04 20:22:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 20:22:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 20:22:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 20:22:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 20:22:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 20:22:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 20:22:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 20:22:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 20:22:39 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-04 20:22:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-04 20:22:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 20:22:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 20:22:40 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-04 20:22:40 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-04 20:22:40 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-04 20:22:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 20:22:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-04 20:22:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 20:22:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 20:22:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 20:22:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 20:22:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 20:22:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 20:22:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 20:22:40 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-04 20:22:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 20:22:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 20:22:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 20:22:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-04 20:22:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-04 20:22:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 20:22:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 20:22:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 20:22:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 20:22:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 20:22:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 20:22:40 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-04 20:22:40 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-04 20:22:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 20:22:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 20:22:40 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-04 20:22:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-04 20:22:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-04 20:22:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-04 20:22:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-04 20:22:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-04 20:22:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-04 20:22:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-04 20:22:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 20:22:40 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-04 20:22:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 20:22:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 20:22:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-04 20:22:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 20:22:40 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-04 20:22:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 20:22:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-04 20:22:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-05-04 20:22:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 20:22:40 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-04 20:22:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 20:22:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-04 20:22:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 19 ms -2016-05-04 20:22:41 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-04 20:22:41 INFO ISClientConnector:82 - found only one RR, take it -2016-05-04 20:22:41 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-04 20:22:41 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-04 20:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 20:22:41 DEBUG StorageClient:517 - set scope: /gcube -2016-05-04 20:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 20:22:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-04 20:22:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-04 20:22:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-04 20:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 20:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 20:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-04 20:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-04 20:22:41 INFO WorkspaceExplorerServiceImpl:188 - end time - 360 msc 0 sec -2016-05-04 20:22:41 INFO WorkspaceExplorerServiceImpl:188 - end time - 211 msc 0 sec -2016-05-04 20:22:41 INFO WorkspaceExplorerServiceImpl:188 - end time - 417 msc 0 sec -2016-05-05 10:20:35 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-05 10:20:35 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-05 10:20:35 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-05 10:20:35 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 10:20:35 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 10:20:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 10:20:35 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 10:20:35 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@11fbfb0e -2016-05-05 10:20:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 10:20:35 INFO ASLSession:352 - Logging the entrance -2016-05-05 10:20:35 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 10:20:35 DEBUG TemplateModel:83 - 2016-05-05 10:20:35, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 10:20:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 10:20:35 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-05 10:20:38 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 10:20:38 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 10:20:38 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 10:20:38 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 10:20:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 10:20:38 INFO ASLSession:352 - Logging the entrance -2016-05-05 10:20:38 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 10:20:38 DEBUG TemplateModel:83 - 2016-05-05 10:20:38, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 10:20:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 10:20:38 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 10:20:38 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 133 ms -2016-05-05 10:20:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-05 10:20:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-05 10:20:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-05 10:20:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-05 10:20:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-05 10:20:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-05 10:20:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-05 10:20:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-05 10:20:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-05 10:20:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-05 10:20:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-05 10:20:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-05 10:20:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-05 10:20:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-05 10:20:38 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-05 10:20:39 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 10:20:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 10:20:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@7bec1569 -2016-05-05 10:20:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@70705b22 -2016-05-05 10:20:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@2c1879b0 -2016-05-05 10:20:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@4aa95c5e -2016-05-05 10:20:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 310 ms -2016-05-05 10:20:39 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-05 10:20:39 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 10:20:39 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 10:20:39 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 10:20:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 10:20:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 10:20:39 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 10:20:39 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-05 10:20:39 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-05 10:20:39 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 10:20:39 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-05 10:20:39 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-05 10:20:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 10:20:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 10:20:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 10:20:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 10:20:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-05 10:20:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 27 ms -2016-05-05 10:20:40 DEBUG SClient4WPS:114 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-05 10:20:40 INFO SClient4WPS:119 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 10:20:40 DEBUG SClient4WPS:130 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-05 10:20:40 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 10:20:40 ERROR DataMinerManagerServiceImpl:98 - An error occurred getting the OperatorsClassifications list: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& -java.lang.Exception: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:346) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.getOperatorsClassifications(SClient4WPS.java:161) - at org.gcube.portlets.user.dataminermanager.server.DataMinerManagerServiceImpl.getOperatorsClassifications(DataMinerManagerServiceImpl.java:93) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:606) - at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:561) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305) - at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:755) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:848) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) - at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) - at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428) - at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.Server.handle(Server.java:370) - at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) - at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960) - at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021) - at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865) - at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240) - at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) - at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) - at java.lang.Thread.run(Thread.java:745) -Caused by: org.n52.wps.client.WPSClientException: Error occured while retrieving capabilities from url: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService?Service=WPS&Request=GetCapabilities&version=1.0.0& - at org.gcube.portlets.user.dataminermanager.server.smservice.wps.StatWPSClientSession.retrieveCapsViaGET(StatWPSClientSession.java:361) - at org.gcube.portlets.user.dataminermanager.server.smservice.wps.StatWPSClientSession.connect(StatWPSClientSession.java:89) - at org.gcube.portlets.user.dataminermanager.server.smservice.SClient4WPS.requestCapability(SClient4WPS.java:332) - ... 37 more -2016-05-05 10:20:40 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-05 10:20:40 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-05 10:20:40 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-05 10:20:40 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-05 10:20:40 DEBUG JCRRepository:271 - Initialize repository -2016-05-05 10:20:40 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-05 10:20:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-05 10:20:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 10:20:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-05 10:20:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 19 ms -2016-05-05 10:20:40 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-05 10:20:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 10:20:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 10:20:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 10:20:40 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-05 10:20:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 10:20:40 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-05 10:20:41 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 10:20:41 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 10:20:41 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-05 10:20:41 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 10:20:41 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 10:20:41 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-05 10:20:41 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-05 10:20:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 10:20:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 10:20:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 10:20:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 10:20:41 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 10:20:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-05 10:20:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 10:20:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 10:20:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 10:20:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 10:20:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 10:20:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 10:20:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 10:20:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 10:20:41 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 10:20:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-05 10:20:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 10:20:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 10:20:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 10:20:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 10:20:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 10:20:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 10:20:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 10:20:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 10:20:41 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 10:20:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-05 10:20:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 10:20:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 10:20:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 10:20:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 10:20:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 10:20:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 10:20:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 10:20:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 10:20:41 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 10:20:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-05 10:20:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 10:20:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 10:20:42 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 10:20:42 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 10:20:42 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 10:20:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 10:20:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 10:20:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 10:20:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 10:20:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 10:20:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 10:20:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 10:20:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 10:20:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 10:20:42 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-05 10:20:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 10:20:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 10:20:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 10:20:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 10:20:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 10:20:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 10:20:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 10:20:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 10:20:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 10:20:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 10:20:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 10:20:42 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-05 10:20:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 10:20:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 10:20:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 10:20:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 10:20:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 10:20:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 10:20:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 10:20:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 10:20:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 10:20:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 10:20:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 10:20:42 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 10:20:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 10:20:43 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-05 10:20:43 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-05 10:20:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 10:20:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 10:20:43 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-05 10:20:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 10:20:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-05 10:20:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 10:20:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-05 10:20:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-05 10:20:43 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-05 10:20:43 INFO ISClientConnector:82 - found only one RR, take it -2016-05-05 10:20:43 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-05 10:20:43 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-05 10:20:43 DEBUG StorageClient:517 - set scope: /gcube -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-05 10:20:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 10:20:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 10:20:43 INFO WorkspaceExplorerServiceImpl:178 - end time - 235 msc 0 sec -2016-05-05 10:20:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 42 ms -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 10:20:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 10:20:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 10:20:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-05 10:20:43 INFO WorkspaceExplorerServiceImpl:178 - end time - 484 msc 0 sec -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 10:20:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 10:20:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-05 10:20:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 25 ms -2016-05-05 10:20:43 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-05 10:20:43 INFO ISClientConnector:61 - ISCACHE: ELEMENT EXTRACTED -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 10:20:43 DEBUG StorageClient:517 - set scope: /gcube -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 10:20:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 10:20:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 10:20:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 40 ms -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 10:20:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 10:20:43 INFO WorkspaceExplorerServiceImpl:178 - end time - 537 msc 0 sec -2016-05-05 10:21:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 10:21:30 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 10:22:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 10:22:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 10:23:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 10:23:20 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 10:24:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 10:24:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 10:25:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 10:25:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 10:26:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 10:26:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 15:44:57 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-05 15:44:57 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-05 15:44:57 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-05 15:44:57 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 15:44:57 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 15:44:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 15:44:57 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 15:44:57 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@c58816f -2016-05-05 15:44:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:44:57 INFO ASLSession:352 - Logging the entrance -2016-05-05 15:44:57 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 15:44:57 DEBUG TemplateModel:83 - 2016-05-05 15:44:57, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 15:44:57 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:44:57 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-05 15:44:59 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 15:44:59 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 15:44:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 15:44:59 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 15:44:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:44:59 INFO ASLSession:352 - Logging the entrance -2016-05-05 15:44:59 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 15:44:59 DEBUG TemplateModel:83 - 2016-05-05 15:44:59, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 15:44:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:44:59 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 15:44:59 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 126 ms -2016-05-05 15:45:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-05 15:45:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-05 15:45:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-05 15:45:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-05 15:45:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-05 15:45:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-05 15:45:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-05 15:45:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-05 15:45:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-05 15:45:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-05 15:45:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-05 15:45:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-05 15:45:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-05 15:45:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-05 15:45:00 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-05 15:45:00 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 15:45:00 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 15:45:00 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@5843e5a3 -2016-05-05 15:45:00 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@356b0945 -2016-05-05 15:45:00 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@5a78e098 -2016-05-05 15:45:00 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@5c9bc990 -2016-05-05 15:45:01 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 373 ms -2016-05-05 15:45:01 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-05 15:45:01 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 15:45:01 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 15:45:01 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 15:45:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 15:45:01 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 15:45:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:45:01 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-05 15:45:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:01 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-05 15:45:01 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 15:45:01 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-05 15:45:01 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-05 15:45:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:45:01 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 15:45:01 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-05 15:45:01 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 21 ms -2016-05-05 15:45:01 DEBUG SClient4WPS:114 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-05 15:45:01 INFO SClient4WPS:119 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 15:45:01 DEBUG SClient4WPS:130 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-05 15:45:01 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 15:45:01 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-05 15:45:01 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-05 15:45:01 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-05 15:45:01 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-05 15:45:01 DEBUG JCRRepository:271 - Initialize repository -2016-05-05 15:45:01 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-05 15:45:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 15:45:01 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 15:45:01 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-05 15:45:01 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 84 ms -2016-05-05 15:45:01 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-05 15:45:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 15:45:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:01 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-05 15:45:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:01 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-05 15:45:02 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 15:45:02 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 15:45:02 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-05 15:45:02 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 15:45:02 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 15:45:02 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-05 15:45:02 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-05 15:45:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:45:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:45:02 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 15:45:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-05 15:45:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:45:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:45:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:03 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 15:45:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-05 15:45:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:45:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:45:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:03 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 15:45:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-05 15:45:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:45:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:45:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:03 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 15:45:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-05 15:45:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:45:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:45:03 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 15:45:03 DEBUG SClient4WPS:251 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-05 15:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 15:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:45:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:04 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-05 15:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 15:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:45:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:04 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-05 15:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 15:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 15:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 15:45:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:45:04 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 15:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:45:04 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-05 15:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-05 15:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:45:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 15:45:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 15:45:04 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-05 15:45:04 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-05 15:45:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-05-05 15:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-05 15:45:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 15:45:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-05 15:45:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-05 15:45:04 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-05 15:45:04 INFO ISClientConnector:82 - found only one RR, take it -2016-05-05 15:45:04 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-05 15:45:04 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-05 15:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-05 15:45:04 DEBUG StorageClient:517 - set scope: /gcube -2016-05-05 15:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-05 15:45:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 15:45:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 15:45:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 21 ms -2016-05-05 15:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-05 15:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-05 15:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-05 15:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:45:04 INFO WorkspaceExplorerServiceImpl:178 - end time - 477 msc 0 sec -2016-05-05 15:45:04 INFO WorkspaceExplorerServiceImpl:178 - end time - 245 msc 0 sec -2016-05-05 15:45:04 INFO WorkspaceExplorerServiceImpl:178 - end time - 385 msc 0 sec -2016-05-05 15:45:11 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 15:45:11 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 15:45:11 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 15:45:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:45:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 15:45:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:45:11 INFO SClient4WPS:643 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-05 15:45:11 DEBUG SClient4WPS:270 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 15:45:11 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 15:45:12 DEBUG SClient4WPS:293 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-05 15:45:12 DEBUG SClient4WPS:297 - WPSClient->Fetching Inputs -2016-05-05 15:45:12 DEBUG SClient4WPS:299 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-05 15:45:12 DEBUG SClient4WPS:299 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-05 15:45:12 DEBUG SClient4WPS:299 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-05 15:45:12 DEBUG SClient4WPS:299 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-05 15:45:12 DEBUG SClient4WPS:299 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-05 15:45:12 DEBUG SClient4WPS:304 - WPSClient->Fetching Outputs -2016-05-05 15:45:12 DEBUG SClient4WPS:306 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-05 15:45:12 DEBUG SClient4WPS:306 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-05 15:45:12 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 15:45:12 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-05 15:45:12 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-05 15:45:12 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-05 15:45:12 DEBUG WPS2SM:208 - Default Schema: null -2016-05-05 15:45:12 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-05 15:45:12 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-05 15:45:12 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-05 15:45:12 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:45:12 DEBUG SClient4WPS:660 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-05 15:45:12 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-05 15:45:12 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:45:12 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-05 15:45:12 DEBUG WPS2SM:100 - Guessed default value: -2016-05-05 15:45:12 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-05 15:45:12 DEBUG WPS2SM:111 - Machter find: true -2016-05-05 15:45:12 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-05 15:45:12 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-05 15:45:12 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-05 15:45:12 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-05 15:45:12 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-05 15:45:12 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-05 15:45:12 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-05 15:45:12 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-05 15:45:12 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:45:12 DEBUG SClient4WPS:660 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-05 15:45:12 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-05 15:45:12 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:45:12 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-05 15:45:12 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-05 15:45:12 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-05 15:45:12 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-05 15:45:12 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:45:12 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-05 15:45:12 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-05 15:45:12 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:45:12 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-05 15:45:12 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-05 15:45:12 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-05 15:45:12 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-05 15:45:12 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:45:12 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-05 15:45:12 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-05 15:45:12 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:45:12 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-05 15:45:12 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-05 15:45:12 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-05 15:45:12 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-05 15:45:12 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:45:12 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-05 15:45:12 DEBUG SClient4WPS:664 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-05 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:45:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:45:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:45:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:45:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:45:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:12 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-05 15:45:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-05 15:45:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:45:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 15:45:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:45:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:45:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:45:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 15:45:12 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 15:45:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:45:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:45:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:45:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:45:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:45:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 15:45:12 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 15:45:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:45:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:45:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:45:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:45:13 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-05 15:45:13 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-05 15:45:13 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-05 15:45:13 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-05 15:45:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 15:45:13 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-05 15:45:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 15:45:13 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-05 15:45:13 INFO WorkspaceExplorerServiceImpl:138 - end time - 265 msc 0 sec -2016-05-05 15:45:13 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-05 15:45:28 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:45:28 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:45:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:45:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 15:45:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:45:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:28 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:45:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 15:45:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 15:45:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 15:45:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:45:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:45:28 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 15:45:28 DEBUG ServiceEngine:306 - get() - start -2016-05-05 15:45:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:45:28 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:45:28 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-05 15:45:28 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-05 15:45:28 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 15:45:28 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 15:45:28 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-05 15:45:28 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 15:45:28 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-05 15:45:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:45:28 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:45:28 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 15:45:28 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 15:45:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:45:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 15:45:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:45:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:45:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 15:45:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:45:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:45:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:45:28 DEBUG MongoIO:77 - open mongo connection -2016-05-05 15:45:28 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 15:45:28 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 15:45:28 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 15:45:28 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:28 INFO WorkspaceExplorerServiceImpl:178 - end time - 135 msc 0 sec -2016-05-05 15:45:28 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 15:45:28 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 15:45:28 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-05 15:45:28 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:28 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:45:28 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ef059f92, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5dd3d13e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7d4e6d91, socketFactory=javax.net.DefaultSocketFactory@27fb8adc, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 15:45:28 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 15:45:28 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 15:45:28 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1913520}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:28 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:298232}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:45:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:45:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=18583217, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:28 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 15:45:28 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:28 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=18.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:45:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=26329507, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:28 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=18.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=26.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:45:28 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1591363}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:45:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:45:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1499028, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=18.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=26.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 15:45:28 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1913521}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:28 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2177509}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:45:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:45:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=945620, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=18.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=26.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 15:45:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1913521}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:28 DEBUG command:56 - Command execution completed -2016-05-05 15:45:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1913521}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:28 DEBUG command:56 - Command execution completed -2016-05-05 15:45:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1913521}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:28 DEBUG command:56 - Command execution completed -2016-05-05 15:45:28 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 15:45:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1913521}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:28 DEBUG command:56 - Command execution completed -2016-05-05 15:45:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1913521}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:28 DEBUG command:56 - Command execution completed -2016-05-05 15:45:28 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1913521}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=15.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=26.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 15:45:29 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-05 15:45:29 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-05 15:45:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:45:29 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 15:45:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:45:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:29 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-05 15:45:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:45:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 15:45:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:45:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:29 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-05 15:45:29 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-05 15:45:29 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-05 15:45:29 DEBUG ServiceEngine:306 - get() - start -2016-05-05 15:45:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:45:29 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:45:29 DEBUG ServiceEngine:62 - path(String) - name: DBScan -2016-05-05 15:45:29 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-05 15:45:29 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 15:45:29 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 15:45:29 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-05 15:45:29 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 15:45:29 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-05 15:45:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:45:29 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:45:29 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 15:45:29 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 15:45:29 DEBUG MongoIO:77 - open mongo connection -2016-05-05 15:45:29 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 15:45:29 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:29 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:29 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:45:29 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ef059f92, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5dd3d13e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7d4e6d91, socketFactory=javax.net.DefaultSocketFactory@27fb8adc, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 15:45:29 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 15:45:29 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 15:45:29 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1913522}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:298233}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1152093, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:29 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 15:45:29 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2381438, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:29 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:45:29 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:45:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 15:45:29 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 15:45:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 15:45:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 15:45:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 15:45:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 15:45:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:29 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2177510}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1021195, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:45:29 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-05 15:45:29 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-05 15:45:29 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1591365}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1913523}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1913523}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 DEBUG command:56 - Command execution completed -2016-05-05 15:45:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1913523}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2005532, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-05 15:45:29 DEBUG command:56 - Command execution completed -2016-05-05 15:45:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1913523}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 DEBUG command:56 - Command execution completed -2016-05-05 15:45:29 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-05 15:45:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1913523}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 DEBUG command:56 - Command execution completed -2016-05-05 15:45:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1913523}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 DEBUG command:56 - Command execution completed -2016-05-05 15:45:29 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1913523}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:29 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-05 15:45:29 INFO JCRServlets:697 - Calling Servlet get Parents By Id 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-05 15:45:29 INFO WorkspaceExplorerServiceImpl:178 - end time - 63 msc 0 sec -2016-05-05 15:45:29 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:45:30 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=7ba62008-739a-4787-ae33-7938ad109a54, name=DBScan, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 15:45:30 DEBUG query:56 - Query completed -2016-05-05 15:45:30 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-05 15:45:30 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2177509} -2016-05-05 15:45:30 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1913521}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 15:45:30 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1913521} -2016-05-05 15:45:30 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:298232} -2016-05-05 15:45:30 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1913520} -2016-05-05 15:45:30 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1591363} -2016-05-05 15:45:30 INFO MongoIO:508 - Mongo has been closed -2016-05-05 15:45:30 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 15:45:30 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 15:45:30 INFO WorkspaceExplorerServiceImpl:491 - returning size: 4033313 -2016-05-05 15:45:30 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 15:45:30 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 15:45:30 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-05 15:45:30 DEBUG query:56 - Query completed -2016-05-05 15:45:30 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-05-05 15:45:30 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2177510} -2016-05-05 15:45:30 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:298233} -2016-05-05 15:45:30 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1591365} -2016-05-05 15:45:30 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1913523}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 15:45:30 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1913523} -2016-05-05 15:45:30 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1913522} -2016-05-05 15:45:30 INFO MongoIO:508 - Mongo has been closed -2016-05-05 15:45:30 INFO DefaultMongoClient:1329 - getFolderTotalVolume 849 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-05 15:45:30 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-05 15:45:30 INFO WorkspaceExplorerServiceImpl:491 - returning size: 849 -2016-05-05 15:45:30 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:45:30 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:45:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:45:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 15:45:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:45:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:30 INFO WorkspaceExplorerServiceImpl:506 - get MimeType By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:45:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 15:45:30 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 15:45:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 15:45:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:30 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:45:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:45:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 15:45:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:45:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:30 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:45:30 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:45:30 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:45:30 INFO WorkspaceExplorerServiceImpl:491 - returning size: 849 -2016-05-05 15:45:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:45:31 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 15:45:31 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:45:31 DEBUG DataMinerManagerServiceImpl:241 - retrieveTableInformation(): Item [id=13d0382e-8833-4df7-b4dc-61bbba61b3e5, name=hcaf_filtered.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 17:10:22 CET 2016] -2016-05-05 15:45:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:31 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:45:31 DEBUG ServiceEngine:193 - get() - start -2016-05-05 15:45:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:45:31 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:45:31 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-05 15:45:31 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-05 15:45:31 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 15:45:31 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 15:45:31 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-05 15:45:31 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 15:45:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:45:31 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:45:31 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:45:31 DEBUG Operation:173 - get(String) - start -2016-05-05 15:45:31 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 15:45:31 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 15:45:31 DEBUG MongoIO:77 - open mongo connection -2016-05-05 15:45:31 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 15:45:31 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:31 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:31 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:45:31 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ef059f92, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5dd3d13e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7d4e6d91, socketFactory=javax.net.DefaultSocketFactory@27fb8adc, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 15:45:31 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 15:45:31 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 15:45:31 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1913524}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:298234}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1336147, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:31 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 15:45:31 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:31 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2332958, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:31 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:45:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:45:31 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:2177512}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1061445, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:45:31 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:1591366}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1764891, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-05 15:45:31 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1913525}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1913525}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 DEBUG command:56 - Command execution completed -2016-05-05 15:45:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1913525}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 DEBUG command:56 - Command execution completed -2016-05-05 15:45:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1913525}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 DEBUG command:56 - Command execution completed -2016-05-05 15:45:31 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-05 15:45:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1913525}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 DEBUG command:56 - Command execution completed -2016-05-05 15:45:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1913525}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 DEBUG command:56 - Command execution completed -2016-05-05 15:45:31 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:45:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1913525}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 DEBUG command:56 - Command execution completed -2016-05-05 15:45:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1913525}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 DEBUG command:56 - Command execution completed -2016-05-05 15:45:31 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:45:31 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1913525}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:31 DEBUG query:56 - Query completed -2016-05-05 15:45:31 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-05 15:45:31 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-05 15:45:31 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-05 15:45:31 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1913525}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:32 DEBUG update:56 - Update completed -2016-05-05 15:45:32 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1913525}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:32 DEBUG query:56 - Query completed -2016-05-05 15:45:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:45:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:45:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:45:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:45:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:45:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:45:32 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:45:32 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered.csv -2016-05-05 15:45:32 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-05 15:45:32 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-05 15:45:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:45:32 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:45:32 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-05 15:45:32 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-05 15:45:32 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-05 15:45:32 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 15:45:32 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-05 15:45:32 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-05 15:45:32 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 15:45:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:45:32 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:45:32 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 15:45:32 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 15:45:32 DEBUG MongoIO:77 - open mongo connection -2016-05-05 15:45:32 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 15:45:32 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:32 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:32 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:45:32 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ef059f92, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5dd3d13e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7d4e6d91, socketFactory=javax.net.DefaultSocketFactory@27fb8adc, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 15:45:32 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 15:45:32 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 15:45:33 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1913526}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:298235}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1400073, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1504026, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:33 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 15:45:33 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:33 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:45:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:45:33 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:45:33 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2177514}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=927787, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:45:33 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1591367}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1918949, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:45:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-05 15:45:33 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1913527}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1913527}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 DEBUG command:56 - Command execution completed -2016-05-05 15:45:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1913527}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 DEBUG command:56 - Command execution completed -2016-05-05 15:45:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1913527}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 DEBUG command:56 - Command execution completed -2016-05-05 15:45:33 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:45:33 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:45:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1913527}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 DEBUG command:56 - Command execution completed -2016-05-05 15:45:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1913527}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 DEBUG command:56 - Command execution completed -2016-05-05 15:45:33 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:45:33 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1913527}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:45:33 DEBUG query:56 - Query completed -2016-05-05 15:45:33 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-05 15:45:33 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2177514} -2016-05-05 15:45:33 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:298235} -2016-05-05 15:45:33 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1591367} -2016-05-05 15:45:33 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1913527}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 15:45:33 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1913527} -2016-05-05 15:45:33 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1913526} -2016-05-05 15:45:33 INFO MongoIO:508 - Mongo has been closed -2016-05-05 15:45:33 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:45:33 INFO Operation:55 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-05 15:45:33 INFO Operation:57 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-05 15:45:33 DEBUG Operation:87 - translating: http://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-05 15:45:33 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-05 15:45:33 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-05 15:45:33 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-05 15:45:33 INFO Operation:65 - URL translated: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-05 15:45:39 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:2177512} -2016-05-05 15:45:39 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1913525}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 15:45:39 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:1591366} -2016-05-05 15:45:39 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:298234} -2016-05-05 15:45:39 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1913525} -2016-05-05 15:45:39 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1913524} -2016-05-05 15:45:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 15:45:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 15:45:52 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:45:52 DEBUG DataMinerManagerServiceImpl:134 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=Test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-05-05 15:45:52 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-05 15:45:52 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-05 15:45:52 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-05 15:45:52 DEBUG WPS2SM:208 - Default Schema: null -2016-05-05 15:45:52 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-05 15:45:52 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-05 15:45:52 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-05 15:45:52 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:45:52 DEBUG SClient4WPS:691 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-05 15:45:52 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-05 15:45:52 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:45:52 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-05 15:45:52 DEBUG WPS2SM:100 - Guessed default value: -2016-05-05 15:45:52 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-05 15:45:52 DEBUG WPS2SM:111 - Machter find: true -2016-05-05 15:45:52 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-05 15:45:52 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-05 15:45:52 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-05 15:45:52 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-05 15:45:52 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-05 15:45:52 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-05 15:45:52 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-05 15:45:52 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-05 15:45:52 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:45:52 DEBUG SClient4WPS:691 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-05 15:45:52 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-05 15:45:52 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:45:52 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-05 15:45:52 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-05 15:45:52 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-05 15:45:52 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-05 15:45:52 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:45:52 DEBUG SClient4WPS:691 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-05 15:45:52 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-05 15:45:52 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:45:52 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-05 15:45:52 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-05 15:45:52 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-05 15:45:52 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-05 15:45:52 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:45:52 DEBUG SClient4WPS:691 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-05 15:45:52 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-05 15:45:52 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:45:52 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-05 15:45:52 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-05 15:45:52 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-05 15:45:52 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-05 15:45:52 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:45:52 DEBUG SClient4WPS:691 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-05 15:45:52 DEBUG SClient4WPS:699 - UserInputs= key:OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-05 15:45:52 DEBUG SClient4WPS:699 - UserInputs= key:FeaturesColumnNames, value=depthmean|sstmnmax|salinitymean -2016-05-05 15:45:52 DEBUG SClient4WPS:699 - UserInputs= key:OccurrencePointsClusterLabel, value=Test -2016-05-05 15:45:52 DEBUG SClient4WPS:699 - UserInputs= key:epsilon, value=10 -2016-05-05 15:45:52 DEBUG SClient4WPS:699 - UserInputs= key:min_points, value=1 -2016-05-05 15:45:52 DEBUG SClient4WPS:760 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-05 15:45:52 DEBUG SClient4WPS:743 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymean -2016-05-05 15:45:52 DEBUG SClient4WPS:743 - Configuring Literal: OccurrencePointsClusterLabel to: Test -2016-05-05 15:45:52 DEBUG SClient4WPS:743 - Configuring Literal: epsilon to: 10 -2016-05-05 15:45:52 DEBUG SClient4WPS:743 - Configuring Literal: min_points to: 1 -2016-05-05 15:45:52 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 15:45:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:45:52 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 15:45:53 DEBUG SClient4WPS:384 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - - - OccurrencePointsTable - - - - FeaturesColumnNames - - depthmean|sstmnmax|salinitymean - - - - OccurrencePointsClusterLabel - - Test - - - - epsilon - - 10 - - - - min_points - - 1 - - - - - - - OutputTable - - - non_deterministic_output - - - - -2016-05-05 15:45:53 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-05 15:45:53 DEBUG SClient4WPS:411 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=adbcdb89-c7e4-4eaf-9e8f-7564223a8528 -2016-05-05 15:45:53 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 15:45:53 DEBUG SClient4WPS:780 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=adbcdb89-c7e4-4eaf-9e8f-7564223a8528 -2016-05-05 15:45:53 DEBUG SClient4WPS:705 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=adbcdb89-c7e4-4eaf-9e8f-7564223a8528 -2016-05-05 15:45:53 DEBUG SClient4WPS:716 - ComputationId: ComputationId [id=adbcdb89-c7e4-4eaf-9e8f-7564223a8528, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=adbcdb89-c7e4-4eaf-9e8f-7564223a8528] -2016-05-05 15:46:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:46:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 15:46:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:46:03 DEBUG SClient4WPS:794 - GetComputationStatus(): ComputationId=ComputationId [id=adbcdb89-c7e4-4eaf-9e8f-7564223a8528, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=adbcdb89-c7e4-4eaf-9e8f-7564223a8528] -2016-05-05 15:46:03 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 15:46:03 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 15:46:03 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=adbcdb89-c7e4-4eaf-9e8f-7564223a8528 -2016-05-05 15:46:03 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 15:46:03 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 15:46:03 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 15:46:03 DEBUG SClient4WPS:810 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - - - -2016-05-05 15:46:03 DEBUG SClient4WPS:882 - WPS STATUS:0.0 -2016-05-05 15:46:03 DEBUG SClient4WPS:893 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 15:46:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:46:13 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 15:46:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:46:13 DEBUG SClient4WPS:794 - GetComputationStatus(): ComputationId=ComputationId [id=adbcdb89-c7e4-4eaf-9e8f-7564223a8528, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=adbcdb89-c7e4-4eaf-9e8f-7564223a8528] -2016-05-05 15:46:13 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 15:46:13 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 15:46:13 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=adbcdb89-c7e4-4eaf-9e8f-7564223a8528 -2016-05-05 15:46:13 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 15:46:13 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 15:46:13 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 15:46:13 DEBUG SClient4WPS:810 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymean,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/MlVhZmJ4MllueEs3OW9hNzZSbXEyNU5FSUdhVmVocHdHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-05-05 15:46:13 DEBUG SClient4WPS:868 - WPS SUCCESS -2016-05-05 15:46:13 DEBUG SClient4WPS:893 - ComputationStatus: ComputationStatus [percentage=100.0, status=COMPLETE, endDate=null, message=null, errResource=null] -2016-05-05 15:46:13 DEBUG Log:91 - getResourceByComputationId: ComputationId [id=adbcdb89-c7e4-4eaf-9e8f-7564223a8528, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=adbcdb89-c7e4-4eaf-9e8f-7564223a8528] -2016-05-05 15:46:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 15:46:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 15:46:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:46:13 DEBUG SClient4WPS:431 - RetrieveProcessResult: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=adbcdb89-c7e4-4eaf-9e8f-7564223a8528 -2016-05-05 15:46:13 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=adbcdb89-c7e4-4eaf-9e8f-7564223a8528 -2016-05-05 15:46:13 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 15:46:13 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 15:46:13 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 15:46:13 DEBUG SClient4WPS:442 - Response: - - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymean,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/MlVhZmJ4MllueEs3OW9hNzZSbXEyNU5FSUdhVmVocHdHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-05-05 15:46:13 DEBUG SClient4WPS:963 - Process Executed -2016-05-05 15:46:13 DEBUG SClient4WPS:582 - Node Name: wps:ComplexData -2016-05-05 15:46:13 DEBUG SClient4WPS:582 - Node Name: #text -2016-05-05 15:46:13 DEBUG SClient4WPS:582 - Node Name: wps:ComplexData -2016-05-05 15:46:13 DEBUG SClient4WPS:582 - Node Name: ogr:FeatureCollection -2016-05-05 15:46:13 DEBUG SClient4WPS:582 - Node Name: gml:featureMember -2016-05-05 15:46:13 DEBUG SClient4WPS:582 - Node Name: ogr:Result -2016-05-05 15:46:13 DEBUG SClient4WPS:549 - Node Name: d4science:Data- Value:http://data-d.d4science.org/MlVhZmJ4MllueEs3OW9hNzZSbXEyNU5FSUdhVmVocHdHbWJQNStIS0N6Yz0 -2016-05-05 15:46:13 DEBUG SClient4WPS:549 - Node Name: d4science:Description- Value:Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] -2016-05-05 15:46:13 DEBUG SClient4WPS:549 - Node Name: d4science:MimeType- Value:text/csv -2016-05-05 15:46:13 DEBUG SClient4WPS:511 - ResponseWPS Map: F0-->ResponseWPS [data=http://data-d.d4science.org/MlVhZmJ4MllueEs3OW9hNzZSbXEyNU5FSUdhVmVocHdHbWJQNStIS0N6Yz0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], mimeType=text/csv] -2016-05-05 15:46:13 DEBUG SClient4WPS:1011 - Adding OBJ:F0 -2016-05-05 15:46:13 DEBUG SClient4WPS:1017 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/MlVhZmJ4MllueEs3OW9hNzZSbXEyNU5FSUdhVmVocHdHbWJQNStIS0N6Yz0, name=F0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], typology=OBJECT] -2016-05-05 15:46:13 DEBUG Log:91 - Resoure: MapResource [map={F0=FileResource [url=http://data-d.d4science.org/MlVhZmJ4MllueEs3OW9hNzZSbXEyNU5FSUdhVmVocHdHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F0, getName()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getDescription()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getResourceType()=FILE]}, getResourceId()=mapResource, getName()=Resources, getDescription()=Resources, getResourceType()=MAP] -2016-05-05 15:46:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:46:47 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 15:47:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 15:47:16 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 15:47:16 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:47:16 DEBUG DataMinerManagerServiceImpl:241 - retrieveTableInformation(): Item [id=13d0382e-8833-4df7-b4dc-61bbba61b3e5, name=hcaf_filtered.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 17:10:22 CET 2016] -2016-05-05 15:47:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:47:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:47:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:47:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:47:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:47:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:47:16 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:47:16 DEBUG ServiceEngine:193 - get() - start -2016-05-05 15:47:16 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:47:16 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:47:16 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-05 15:47:16 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-05 15:47:16 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 15:47:16 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 15:47:16 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-05 15:47:16 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 15:47:16 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:47:16 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:47:16 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:47:16 DEBUG Operation:173 - get(String) - start -2016-05-05 15:47:16 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 15:47:16 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 15:47:16 DEBUG MongoIO:77 - open mongo connection -2016-05-05 15:47:16 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 15:47:16 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:47:16 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:47:16 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:47:16 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ef059f92, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5dd3d13e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7d4e6d91, socketFactory=javax.net.DefaultSocketFactory@27fb8adc, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 15:47:16 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 15:47:16 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 15:47:16 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:298560}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1913966}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1095826, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:47:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1215317, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:47:16 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 15:47:16 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:47:16 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:47:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:47:16 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:47:16 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1913967}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1913967}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG command:56 - Command execution completed -2016-05-05 15:47:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1913967}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG command:56 - Command execution completed -2016-05-05 15:47:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1913967}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG command:56 - Command execution completed -2016-05-05 15:47:16 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-05 15:47:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1913967}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG command:56 - Command execution completed -2016-05-05 15:47:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1913967}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG command:56 - Command execution completed -2016-05-05 15:47:16 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:47:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1913967}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG command:56 - Command execution completed -2016-05-05 15:47:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1913967}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG command:56 - Command execution completed -2016-05-05 15:47:16 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:47:16 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1913967}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG query:56 - Query completed -2016-05-05 15:47:16 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-05 15:47:16 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-05 15:47:16 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-05 15:47:16 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2177744}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1913967}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=744559, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:47:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:47:16 DEBUG update:56 - Update completed -2016-05-05 15:47:16 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:25, serverValue:1913967}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG query:56 - Query completed -2016-05-05 15:47:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:47:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:47:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:47:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:47:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:47:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:47:16 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:47:16 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1591602}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2667634, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:47:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-05 15:47:16 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered.csv -2016-05-05 15:47:16 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-05 15:47:16 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-05 15:47:16 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:47:16 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:47:16 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-05 15:47:16 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-05 15:47:16 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-05 15:47:16 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 15:47:16 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-05 15:47:16 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-05 15:47:16 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 15:47:16 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:47:16 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:47:16 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 15:47:16 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 15:47:16 DEBUG MongoIO:77 - open mongo connection -2016-05-05 15:47:16 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 15:47:16 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:47:16 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:47:16 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:47:16 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ef059f92, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5dd3d13e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7d4e6d91, socketFactory=javax.net.DefaultSocketFactory@27fb8adc, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 15:47:16 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 15:47:16 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 15:47:16 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:298561}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1913968}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=994351, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:47:16 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 15:47:16 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:47:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1190118, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:47:16 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:47:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:47:16 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:47:16 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2177745}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1075553, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:47:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:47:16 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1591603}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1262583, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:47:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 15:47:16 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1913969}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1913969}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG command:56 - Command execution completed -2016-05-05 15:47:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1913969}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG command:56 - Command execution completed -2016-05-05 15:47:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1913969}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG command:56 - Command execution completed -2016-05-05 15:47:16 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:47:16 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:47:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1913969}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG command:56 - Command execution completed -2016-05-05 15:47:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1913969}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG command:56 - Command execution completed -2016-05-05 15:47:16 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:47:16 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1913969}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:47:16 DEBUG query:56 - Query completed -2016-05-05 15:47:16 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-05 15:47:16 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2177745} -2016-05-05 15:47:16 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:298561} -2016-05-05 15:47:16 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1591603} -2016-05-05 15:47:16 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1913969}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 15:47:16 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1913969} -2016-05-05 15:47:16 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1913968} -2016-05-05 15:47:16 INFO MongoIO:508 - Mongo has been closed -2016-05-05 15:47:16 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:47:16 INFO Operation:55 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-05 15:47:16 INFO Operation:57 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-05 15:47:16 DEBUG Operation:87 - translating: http://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-05 15:47:16 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-05 15:47:16 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-05 15:47:16 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-05 15:47:16 INFO Operation:65 - URL translated: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-05 15:47:17 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:47:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-05 15:47:17 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1913967}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 15:47:17 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1591602} -2016-05-05 15:47:17 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:298560} -2016-05-05 15:47:17 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2177744} -2016-05-05 15:47:17 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1913967} -2016-05-05 15:47:17 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1913966} -2016-05-05 15:47:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:47:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 15:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 15:48:37 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 15:49:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:49:32 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 15:50:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:50:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 15:51:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:51:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 15:52:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:52:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 15:53:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 15:53:12 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 15:54:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 15:54:07 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 15:55:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 15:55:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 15:57:19 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-05 15:57:19 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-05 15:57:19 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-05 15:57:19 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 15:57:19 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 15:57:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 15:57:19 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 15:57:19 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@6293de96 -2016-05-05 15:57:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:57:19 INFO ASLSession:352 - Logging the entrance -2016-05-05 15:57:19 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 15:57:19 DEBUG TemplateModel:83 - 2016-05-05 15:57:19, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 15:57:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:57:19 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-05 15:57:21 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 15:57:21 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 15:57:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 15:57:21 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 15:57:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:57:21 INFO ASLSession:352 - Logging the entrance -2016-05-05 15:57:21 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 15:57:21 DEBUG TemplateModel:83 - 2016-05-05 15:57:21, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 15:57:21 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:57:21 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 15:57:22 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 123 ms -2016-05-05 15:57:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-05 15:57:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-05 15:57:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-05 15:57:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-05 15:57:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-05 15:57:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-05 15:57:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-05 15:57:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-05 15:57:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-05 15:57:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-05 15:57:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-05 15:57:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-05 15:57:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-05 15:57:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-05 15:57:22 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-05 15:57:22 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 15:57:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 15:57:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@5ca841ee -2016-05-05 15:57:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@34b6b493 -2016-05-05 15:57:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@519bb520 -2016-05-05 15:57:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@2f714f42 -2016-05-05 15:57:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 97 ms -2016-05-05 15:57:22 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-05 15:57:22 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-05 15:57:22 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 15:57:22 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-05 15:57:22 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-05 15:57:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:57:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 15:57:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-05 15:57:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 23 ms -2016-05-05 15:57:22 DEBUG SClient4WPS:114 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-05 15:57:22 INFO SClient4WPS:119 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 15:57:22 DEBUG SClient4WPS:130 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-05 15:57:22 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 15:57:23 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 15:57:23 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 15:57:23 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 15:57:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:57:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 15:57:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:57:23 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-05 15:57:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:57:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:57:23 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-05 15:57:23 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-05 15:57:23 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-05 15:57:23 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-05 15:57:23 DEBUG JCRRepository:271 - Initialize repository -2016-05-05 15:57:23 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-05 15:57:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-05 15:57:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 15:57:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-05 15:57:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-05 15:57:23 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-05 15:57:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:57:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:57:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:57:23 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-05 15:57:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:23 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-05 15:57:23 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 15:57:23 DEBUG SClient4WPS:251 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-05 15:57:23 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 15:57:24 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 15:57:24 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-05 15:57:24 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 15:57:24 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 15:57:24 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-05 15:57:24 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-05 15:57:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:57:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:24 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 15:57:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-05 15:57:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:57:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:57:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:57:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:57:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:57:24 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 15:57:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-05 15:57:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:57:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:57:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:57:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:57:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:57:24 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 15:57:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-05 15:57:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:57:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:57:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:57:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:57:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:57:24 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 15:57:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-05 15:57:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:26 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 15:57:26 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 15:57:26 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 15:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:57:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 15:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:57:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:57:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:57:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:57:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:57:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:57:26 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-05 15:57:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 15:57:26 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 15:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 15:57:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:57:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:57:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:57:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:57:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:57:26 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-05 15:57:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:26 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-05 15:57:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:57:26 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 15:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:57:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:57:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:57:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:57:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:57:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:57:26 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 15:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-05 15:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:57:26 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-05 15:57:26 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 15:57:26 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 15:57:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:26 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-05 15:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-05 15:57:26 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 15:57:26 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-05 15:57:26 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-05 15:57:26 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-05 15:57:26 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-05 15:57:26 INFO ISClientConnector:82 - found only one RR, take it -2016-05-05 15:57:26 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-05 15:57:26 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-05 15:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-05 15:57:26 DEBUG StorageClient:517 - set scope: /gcube -2016-05-05 15:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-05 15:57:26 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 15:57:26 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 15:57:26 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-05 15:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-05 15:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-05 15:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-05 15:57:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:57:26 INFO WorkspaceExplorerServiceImpl:178 - end time - 332 msc 0 sec -2016-05-05 15:57:26 INFO WorkspaceExplorerServiceImpl:178 - end time - 186 msc 0 sec -2016-05-05 15:57:26 INFO WorkspaceExplorerServiceImpl:178 - end time - 315 msc 0 sec -2016-05-05 15:57:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 15:57:30 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 15:57:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:57:30 INFO SClient4WPS:643 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-05 15:57:30 DEBUG SClient4WPS:270 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 15:57:30 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 15:57:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:57:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 15:57:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:57:30 INFO SClient4WPS:643 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-05 15:57:30 DEBUG SClient4WPS:270 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 15:57:30 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 15:57:30 DEBUG SClient4WPS:293 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-05 15:57:30 DEBUG SClient4WPS:297 - WPSClient->Fetching Inputs -2016-05-05 15:57:30 DEBUG SClient4WPS:299 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-05 15:57:30 DEBUG SClient4WPS:299 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-05 15:57:30 DEBUG SClient4WPS:299 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-05 15:57:30 DEBUG SClient4WPS:299 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-05 15:57:30 DEBUG SClient4WPS:299 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-05 15:57:30 DEBUG SClient4WPS:304 - WPSClient->Fetching Outputs -2016-05-05 15:57:30 DEBUG SClient4WPS:306 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-05 15:57:30 DEBUG SClient4WPS:306 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-05 15:57:30 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 15:57:30 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-05 15:57:30 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-05 15:57:30 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-05 15:57:30 DEBUG WPS2SM:208 - Default Schema: null -2016-05-05 15:57:30 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-05 15:57:30 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-05 15:57:30 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-05 15:57:30 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:57:30 DEBUG SClient4WPS:660 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-05 15:57:30 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-05 15:57:30 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:57:30 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-05 15:57:30 DEBUG WPS2SM:100 - Guessed default value: -2016-05-05 15:57:30 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-05 15:57:30 DEBUG WPS2SM:111 - Machter find: true -2016-05-05 15:57:30 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-05 15:57:30 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-05 15:57:30 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-05 15:57:30 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-05 15:57:30 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-05 15:57:30 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-05 15:57:30 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-05 15:57:30 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-05 15:57:30 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:57:30 DEBUG SClient4WPS:660 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-05 15:57:30 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-05 15:57:30 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:57:30 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-05 15:57:30 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-05 15:57:30 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-05 15:57:30 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-05 15:57:30 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:57:30 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-05 15:57:30 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-05 15:57:30 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:57:30 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-05 15:57:30 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-05 15:57:30 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-05 15:57:30 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-05 15:57:30 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:57:30 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-05 15:57:30 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-05 15:57:30 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:57:30 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-05 15:57:30 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-05 15:57:30 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-05 15:57:30 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-05 15:57:30 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:57:30 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-05 15:57:30 DEBUG SClient4WPS:664 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-05 15:57:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:57:30 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 15:57:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:57:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:57:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:57:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:57:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:57:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:57:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:57:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 15:57:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:57:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:57:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:57:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:57:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:57:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:57:30 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-05 15:57:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:30 DEBUG SClient4WPS:293 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-05 15:57:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-05 15:57:30 DEBUG SClient4WPS:297 - WPSClient->Fetching Inputs -2016-05-05 15:57:31 DEBUG SClient4WPS:299 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-05 15:57:31 DEBUG SClient4WPS:299 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-05 15:57:31 DEBUG SClient4WPS:299 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-05 15:57:31 DEBUG SClient4WPS:299 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-05 15:57:31 DEBUG SClient4WPS:299 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-05 15:57:31 DEBUG SClient4WPS:304 - WPSClient->Fetching Outputs -2016-05-05 15:57:31 DEBUG SClient4WPS:306 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-05 15:57:31 DEBUG SClient4WPS:306 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-05 15:57:31 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 15:57:31 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-05 15:57:31 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-05 15:57:31 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-05 15:57:31 DEBUG WPS2SM:208 - Default Schema: null -2016-05-05 15:57:31 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-05 15:57:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-05 15:57:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-05 15:57:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:57:31 DEBUG SClient4WPS:660 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-05 15:57:31 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-05 15:57:31 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:57:31 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-05 15:57:31 DEBUG WPS2SM:100 - Guessed default value: -2016-05-05 15:57:31 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-05 15:57:31 DEBUG WPS2SM:111 - Machter find: true -2016-05-05 15:57:31 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-05 15:57:31 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-05 15:57:31 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-05 15:57:31 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-05 15:57:31 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-05 15:57:31 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-05 15:57:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-05 15:57:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-05 15:57:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:57:31 DEBUG SClient4WPS:660 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-05 15:57:31 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:57:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 15:57:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:31 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:57:31 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-05 15:57:31 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-05 15:57:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-05 15:57:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-05 15:57:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:57:31 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-05 15:57:31 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-05 15:57:31 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:57:31 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-05 15:57:31 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-05 15:57:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-05 15:57:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-05 15:57:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:57:31 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-05 15:57:31 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-05 15:57:31 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:57:31 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-05 15:57:31 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-05 15:57:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-05 15:57:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-05 15:57:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:57:31 DEBUG SClient4WPS:660 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-05 15:57:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:31 DEBUG SClient4WPS:664 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-05 15:57:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 15:57:31 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 15:57:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:57:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:57:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:57:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:57:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:57:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:57:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:57:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:57:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:57:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:57:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:57:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:57:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:57:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 15:57:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:31 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-05 15:57:31 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-05 15:57:31 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-05 15:57:31 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-05 15:57:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 15:57:31 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-05 15:57:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 15:57:31 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-05 15:57:31 INFO WorkspaceExplorerServiceImpl:138 - end time - 239 msc 0 sec -2016-05-05 15:57:31 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:57:31 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:57:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:57:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:57:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:57:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:57:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:57:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:57:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:57:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:57:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:57:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:57:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:57:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:57:31 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-05 15:57:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:57:31 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 15:57:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:57:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:57:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:57:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:57:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:57:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:57:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:57:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 15:57:31 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 15:57:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:57:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:57:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:57:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:57:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:57:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:57:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 15:57:31 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 15:57:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 15:57:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 15:57:32 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-05 15:57:32 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-05 15:57:32 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-05 15:57:32 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-05 15:57:32 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 15:57:32 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-05 15:57:32 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 15:57:32 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-05 15:57:32 INFO WorkspaceExplorerServiceImpl:138 - end time - 184 msc 0 sec -2016-05-05 15:57:32 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-05 15:58:10 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:58:10 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:58:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:58:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 15:58:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:58:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:58:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:58:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:58:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:58:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:58:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:58:10 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:58:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:58:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 15:58:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:58:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:58:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:58:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:58:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:58:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:58:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:58:10 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:58:10 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:58:10 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 15:58:10 DEBUG ServiceEngine:306 - get() - start -2016-05-05 15:58:10 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:58:10 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:58:10 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-05 15:58:10 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-05 15:58:10 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 15:58:10 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 15:58:10 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-05 15:58:10 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 15:58:10 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-05 15:58:10 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:58:10 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:58:10 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 15:58:10 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 15:58:10 DEBUG MongoIO:77 - open mongo connection -2016-05-05 15:58:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:58:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 15:58:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:58:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:58:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:58:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:58:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:58:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:58:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:58:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:58:10 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 15:58:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:58:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:58:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:58:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:58:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:58:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:58:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:58:10 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:58:10 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:58:10 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 15:58:10 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:10 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 15:58:10 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 15:58:10 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:10 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:10 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a49cc248, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@68f7c401, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@6265537d, socketFactory=javax.net.DefaultSocketFactory@6a4c6602, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 15:58:10 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 15:58:10 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 15:58:10 INFO WorkspaceExplorerServiceImpl:178 - end time - 54 msc 0 sec -2016-05-05 15:58:11 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 15:58:11 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 15:58:11 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-05 15:58:11 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:299209}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1618949, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:11 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 15:58:11 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:11 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:11 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1914837}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:11 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1851192, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:11 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:11 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2178237}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1176061, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:11 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1592103}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1312360, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 15:58:11 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1914838}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1914838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 DEBUG command:56 - Command execution completed -2016-05-05 15:58:11 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1914838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 DEBUG command:56 - Command execution completed -2016-05-05 15:58:11 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1914838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 DEBUG command:56 - Command execution completed -2016-05-05 15:58:11 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 15:58:11 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1914838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 DEBUG command:56 - Command execution completed -2016-05-05 15:58:11 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1914838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 DEBUG command:56 - Command execution completed -2016-05-05 15:58:11 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1914838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:58:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 15:58:12 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-05 15:58:12 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-05 15:58:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:58:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 15:58:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:58:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:58:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:58:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:58:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:58:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:58:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:58:12 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-05 15:58:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:58:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 15:58:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:58:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:58:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:58:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:58:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:58:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:58:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:58:12 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-05 15:58:12 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-05 15:58:12 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-05 15:58:12 DEBUG ServiceEngine:306 - get() - start -2016-05-05 15:58:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:58:12 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:58:12 DEBUG ServiceEngine:62 - path(String) - name: DBScan -2016-05-05 15:58:12 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-05 15:58:12 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 15:58:12 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 15:58:12 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-05 15:58:12 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 15:58:12 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-05 15:58:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:58:12 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:58:12 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 15:58:12 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 15:58:12 DEBUG MongoIO:77 - open mongo connection -2016-05-05 15:58:12 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 15:58:12 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:12 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:12 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:12 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a49cc248, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@68f7c401, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@6265537d, socketFactory=javax.net.DefaultSocketFactory@6a4c6602, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 15:58:12 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 15:58:12 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 15:58:12 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1914839}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1272260, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:12 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 15:58:12 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:12 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:12 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:12 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:299210}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1366328, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:12 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2178238}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=968252, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:58:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 15:58:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:58:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:58:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:58:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:58:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:58:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 15:58:12 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 15:58:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 15:58:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:58:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:58:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:58:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:58:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:58:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:58:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:58:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:58:12 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1592104}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1312962, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 15:58:12 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-05 15:58:12 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-05 15:58:12 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1914840}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1914840}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 DEBUG command:56 - Command execution completed -2016-05-05 15:58:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1914840}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 DEBUG query:56 - Query completed -2016-05-05 15:58:12 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-05 15:58:12 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2178237} -2016-05-05 15:58:12 DEBUG command:56 - Command execution completed -2016-05-05 15:58:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1914840}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1914838}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 15:58:12 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1592103} -2016-05-05 15:58:12 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:299209} -2016-05-05 15:58:12 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1914838} -2016-05-05 15:58:12 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1914837} -2016-05-05 15:58:12 DEBUG command:56 - Command execution completed -2016-05-05 15:58:12 INFO MongoIO:508 - Mongo has been closed -2016-05-05 15:58:12 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-05 15:58:12 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 15:58:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1914840}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 15:58:12 INFO WorkspaceExplorerServiceImpl:491 - returning size: 4033313 -2016-05-05 15:58:12 DEBUG command:56 - Command execution completed -2016-05-05 15:58:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1914840}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 DEBUG command:56 - Command execution completed -2016-05-05 15:58:12 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1914840}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:12 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-05 15:58:12 INFO JCRServlets:697 - Calling Servlet get Parents By Id 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-05 15:58:12 INFO WorkspaceExplorerServiceImpl:178 - end time - 46 msc 0 sec -2016-05-05 15:58:12 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 15:58:12 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=7ba62008-739a-4787-ae33-7938ad109a54, name=DBScan, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 15:58:12 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 15:58:12 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 15:58:12 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-05 15:58:13 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:58:13 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:58:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:58:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 15:58:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:58:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:58:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:58:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:58:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:58:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:58:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:58:13 INFO WorkspaceExplorerServiceImpl:506 - get MimeType By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:58:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:58:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 15:58:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 15:58:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:58:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:58:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:58:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:58:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:58:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:58:13 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:58:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:58:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 15:58:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:58:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:58:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:58:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:58:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:58:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:58:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:58:13 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:58:13 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:58:13 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:58:13 INFO WorkspaceExplorerServiceImpl:491 - returning size: 849 -2016-05-05 15:58:13 DEBUG query:56 - Query completed -2016-05-05 15:58:13 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-05-05 15:58:13 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2178238} -2016-05-05 15:58:13 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:299210} -2016-05-05 15:58:13 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1914840}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 15:58:13 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1592104} -2016-05-05 15:58:13 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1914840} -2016-05-05 15:58:13 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1914839} -2016-05-05 15:58:13 INFO MongoIO:508 - Mongo has been closed -2016-05-05 15:58:13 INFO DefaultMongoClient:1329 - getFolderTotalVolume 849 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-05 15:58:13 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-05 15:58:13 INFO WorkspaceExplorerServiceImpl:491 - returning size: 849 -2016-05-05 15:58:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 15:58:14 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 15:58:14 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:58:14 DEBUG DataMinerManagerServiceImpl:241 - retrieveTableInformation(): Item [id=13d0382e-8833-4df7-b4dc-61bbba61b3e5, name=hcaf_filtered.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 17:10:22 CET 2016] -2016-05-05 15:58:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:58:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:58:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:58:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:58:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:58:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:58:14 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:58:14 DEBUG ServiceEngine:193 - get() - start -2016-05-05 15:58:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:58:14 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:58:14 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-05 15:58:14 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-05 15:58:14 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 15:58:14 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 15:58:14 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-05 15:58:14 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 15:58:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:58:14 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:58:14 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:58:14 DEBUG Operation:173 - get(String) - start -2016-05-05 15:58:14 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 15:58:14 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 15:58:14 DEBUG MongoIO:77 - open mongo connection -2016-05-05 15:58:14 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 15:58:14 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:14 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:14 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:14 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a49cc248, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@68f7c401, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@6265537d, socketFactory=javax.net.DefaultSocketFactory@6a4c6602, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 15:58:14 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 15:58:14 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 15:58:14 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:299213}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1914841}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1354561, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:14 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 15:58:14 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:14 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1564063, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:14 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:14 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2178241}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=944678, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:14 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1592107}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2025060, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-05 15:58:14 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1914842}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1914842}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG command:56 - Command execution completed -2016-05-05 15:58:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1914842}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG command:56 - Command execution completed -2016-05-05 15:58:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1914842}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG command:56 - Command execution completed -2016-05-05 15:58:14 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-05 15:58:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1914842}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG command:56 - Command execution completed -2016-05-05 15:58:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1914842}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG command:56 - Command execution completed -2016-05-05 15:58:14 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:58:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1914842}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG command:56 - Command execution completed -2016-05-05 15:58:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1914842}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG command:56 - Command execution completed -2016-05-05 15:58:14 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:58:14 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1914842}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG query:56 - Query completed -2016-05-05 15:58:14 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-05 15:58:14 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-05 15:58:14 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-05 15:58:14 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1914842}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG update:56 - Update completed -2016-05-05 15:58:14 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1914842}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG query:56 - Query completed -2016-05-05 15:58:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 15:58:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 15:58:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 15:58:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 15:58:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 15:58:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 15:58:14 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-05 15:58:14 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered.csv -2016-05-05 15:58:14 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-05 15:58:14 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-05 15:58:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:58:14 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:58:14 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-05 15:58:14 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-05 15:58:14 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-05 15:58:14 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 15:58:14 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-05 15:58:14 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-05 15:58:14 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 15:58:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 15:58:14 DEBUG BucketCoding:42 - coding name done -2016-05-05 15:58:14 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 15:58:14 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 15:58:14 DEBUG MongoIO:77 - open mongo connection -2016-05-05 15:58:14 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 15:58:14 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:14 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:14 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:14 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a49cc248, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@68f7c401, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@6265537d, socketFactory=javax.net.DefaultSocketFactory@6a4c6602, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 15:58:14 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 15:58:14 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 15:58:14 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:299214}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1370082, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:14 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1914843}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 15:58:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:14 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 15:58:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1642866, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:14 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:14 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2178242}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=740436, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 15:58:14 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1592108}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1220246, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 15:58:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-05 15:58:14 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1914844}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1914844}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG command:56 - Command execution completed -2016-05-05 15:58:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1914844}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG command:56 - Command execution completed -2016-05-05 15:58:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1914844}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG command:56 - Command execution completed -2016-05-05 15:58:14 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:58:14 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:58:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1914844}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG command:56 - Command execution completed -2016-05-05 15:58:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1914844}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG command:56 - Command execution completed -2016-05-05 15:58:14 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:58:14 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1914844}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG query:56 - Query completed -2016-05-05 15:58:14 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-05 15:58:14 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2178242} -2016-05-05 15:58:14 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:299214} -2016-05-05 15:58:14 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1592108} -2016-05-05 15:58:14 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1914844}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 15:58:14 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1914844} -2016-05-05 15:58:14 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1914843} -2016-05-05 15:58:14 INFO MongoIO:508 - Mongo has been closed -2016-05-05 15:58:14 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-05 15:58:14 INFO Operation:55 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-05 15:58:14 INFO Operation:57 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-05 15:58:14 DEBUG Operation:87 - translating: http://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-05 15:58:14 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-05 15:58:14 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-05 15:58:14 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-05 15:58:14 INFO Operation:65 - URL translated: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-05 15:58:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 15:58:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-05 15:58:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 15:58:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 15:58:17 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2178241} -2016-05-05 15:58:17 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:299213} -2016-05-05 15:58:17 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1914842}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 15:58:17 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1592107} -2016-05-05 15:58:17 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1914842} -2016-05-05 15:58:17 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1914841} -2016-05-05 15:58:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 15:58:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 15:58:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:58:33 DEBUG DataMinerManagerServiceImpl:134 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=Test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-05-05 15:58:33 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-05 15:58:33 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-05 15:58:33 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-05 15:58:33 DEBUG WPS2SM:208 - Default Schema: null -2016-05-05 15:58:33 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-05 15:58:33 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-05 15:58:33 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-05 15:58:33 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:58:33 DEBUG SClient4WPS:691 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-05 15:58:33 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-05 15:58:33 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:58:33 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-05 15:58:33 DEBUG WPS2SM:100 - Guessed default value: -2016-05-05 15:58:33 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-05 15:58:33 DEBUG WPS2SM:111 - Machter find: true -2016-05-05 15:58:33 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-05 15:58:33 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-05 15:58:33 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-05 15:58:33 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-05 15:58:33 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-05 15:58:33 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-05 15:58:33 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-05 15:58:33 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-05 15:58:33 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:58:33 DEBUG SClient4WPS:691 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-05 15:58:33 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-05 15:58:33 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:58:33 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-05 15:58:33 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-05 15:58:33 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-05 15:58:33 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-05 15:58:33 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:58:33 DEBUG SClient4WPS:691 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-05 15:58:33 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-05 15:58:33 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:58:33 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-05 15:58:33 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-05 15:58:33 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-05 15:58:33 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-05 15:58:33 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:58:33 DEBUG SClient4WPS:691 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-05 15:58:33 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-05 15:58:33 DEBUG WPS2SM:92 - WPS type: -2016-05-05 15:58:33 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-05 15:58:33 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-05 15:58:33 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-05 15:58:33 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-05 15:58:33 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 15:58:33 DEBUG SClient4WPS:691 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-05 15:58:33 DEBUG SClient4WPS:699 - UserInputs= key:OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-05 15:58:33 DEBUG SClient4WPS:699 - UserInputs= key:FeaturesColumnNames, value=depthmean|sstmnmax|salinitymean -2016-05-05 15:58:33 DEBUG SClient4WPS:699 - UserInputs= key:OccurrencePointsClusterLabel, value=Test -2016-05-05 15:58:33 DEBUG SClient4WPS:699 - UserInputs= key:epsilon, value=10 -2016-05-05 15:58:33 DEBUG SClient4WPS:699 - UserInputs= key:min_points, value=1 -2016-05-05 15:58:33 DEBUG SClient4WPS:760 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-05 15:58:33 DEBUG SClient4WPS:743 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymean -2016-05-05 15:58:33 DEBUG SClient4WPS:743 - Configuring Literal: OccurrencePointsClusterLabel to: Test -2016-05-05 15:58:33 DEBUG SClient4WPS:743 - Configuring Literal: epsilon to: 10 -2016-05-05 15:58:33 DEBUG SClient4WPS:743 - Configuring Literal: min_points to: 1 -2016-05-05 15:58:33 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 15:58:33 DEBUG SClient4WPS:384 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - - - OccurrencePointsTable - - - - FeaturesColumnNames - - depthmean|sstmnmax|salinitymean - - - - OccurrencePointsClusterLabel - - Test - - - - epsilon - - 10 - - - - min_points - - 1 - - - - - - - OutputTable - - - non_deterministic_output - - - - -2016-05-05 15:58:33 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-05 15:58:34 DEBUG SClient4WPS:411 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=58008f17-3fae-4a30-b729-00be4021e5d0 -2016-05-05 15:58:34 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 15:58:34 DEBUG SClient4WPS:780 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=58008f17-3fae-4a30-b729-00be4021e5d0 -2016-05-05 15:58:34 DEBUG SClient4WPS:705 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=58008f17-3fae-4a30-b729-00be4021e5d0 -2016-05-05 15:58:34 DEBUG SClient4WPS:716 - ComputationId: ComputationId [id=58008f17-3fae-4a30-b729-00be4021e5d0, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=58008f17-3fae-4a30-b729-00be4021e5d0] -2016-05-05 15:58:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:58:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 15:58:44 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:58:44 DEBUG SClient4WPS:794 - GetComputationStatus(): ComputationId=ComputationId [id=58008f17-3fae-4a30-b729-00be4021e5d0, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=58008f17-3fae-4a30-b729-00be4021e5d0] -2016-05-05 15:58:44 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 15:58:44 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 15:58:44 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=58008f17-3fae-4a30-b729-00be4021e5d0 -2016-05-05 15:58:44 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 15:58:44 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 15:58:44 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 15:58:44 DEBUG SClient4WPS:810 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymean,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/TkVaUExPK1VONHU3OW9hNzZSbXEyendBcUljSUpFZVJHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-05-05 15:58:44 DEBUG SClient4WPS:868 - WPS SUCCESS -2016-05-05 15:58:44 DEBUG SClient4WPS:893 - ComputationStatus: ComputationStatus [percentage=100.0, status=COMPLETE, endDate=null, message=null, errResource=null] -2016-05-05 15:58:44 DEBUG Log:91 - getResourceByComputationId: ComputationId [id=58008f17-3fae-4a30-b729-00be4021e5d0, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=58008f17-3fae-4a30-b729-00be4021e5d0] -2016-05-05 15:58:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 15:58:44 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 15:58:44 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 15:58:44 DEBUG SClient4WPS:431 - RetrieveProcessResult: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=58008f17-3fae-4a30-b729-00be4021e5d0 -2016-05-05 15:58:44 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=58008f17-3fae-4a30-b729-00be4021e5d0 -2016-05-05 15:58:44 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 15:58:44 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 15:58:44 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 15:58:44 DEBUG SClient4WPS:442 - Response: - - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymean,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/TkVaUExPK1VONHU3OW9hNzZSbXEyendBcUljSUpFZVJHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-05-05 15:58:44 DEBUG SClient4WPS:963 - Process Executed -2016-05-05 15:58:44 DEBUG SClient4WPS:582 - Node Name: wps:ComplexData -2016-05-05 15:58:44 DEBUG SClient4WPS:582 - Node Name: #text -2016-05-05 15:58:44 DEBUG SClient4WPS:582 - Node Name: wps:ComplexData -2016-05-05 15:58:44 DEBUG SClient4WPS:582 - Node Name: ogr:FeatureCollection -2016-05-05 15:58:44 DEBUG SClient4WPS:582 - Node Name: gml:featureMember -2016-05-05 15:58:44 DEBUG SClient4WPS:582 - Node Name: ogr:Result -2016-05-05 15:58:44 DEBUG SClient4WPS:549 - Node Name: d4science:Data- Value:http://data-d.d4science.org/TkVaUExPK1VONHU3OW9hNzZSbXEyendBcUljSUpFZVJHbWJQNStIS0N6Yz0 -2016-05-05 15:58:44 DEBUG SClient4WPS:549 - Node Name: d4science:Description- Value:Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] -2016-05-05 15:58:44 DEBUG SClient4WPS:549 - Node Name: d4science:MimeType- Value:text/csv -2016-05-05 15:58:44 DEBUG SClient4WPS:511 - ResponseWPS Map: F0-->ResponseWPS [data=http://data-d.d4science.org/TkVaUExPK1VONHU3OW9hNzZSbXEyendBcUljSUpFZVJHbWJQNStIS0N6Yz0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], mimeType=text/csv] -2016-05-05 15:58:44 DEBUG SClient4WPS:1011 - Adding OBJ:F0 -2016-05-05 15:58:44 DEBUG SClient4WPS:1017 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/TkVaUExPK1VONHU3OW9hNzZSbXEyendBcUljSUpFZVJHbWJQNStIS0N6Yz0, name=F0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], typology=OBJECT] -2016-05-05 15:58:44 DEBUG Log:91 - Resoure: MapResource [map={F0=FileResource [url=http://data-d.d4science.org/TkVaUExPK1VONHU3OW9hNzZSbXEyendBcUljSUpFZVJHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F0, getName()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getDescription()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getResourceType()=FILE]}, getResourceId()=mapResource, getName()=Resources, getDescription()=Resources, getResourceType()=MAP] -2016-05-05 15:59:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 15:59:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 16:00:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 16:00:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 16:00:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 16:00:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 16:01:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 16:01:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 16:02:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 16:02:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 16:03:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 16:03:44 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 16:04:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 16:04:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 16:05:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 16:05:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 16:06:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 16:06:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 16:07:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 16:07:24 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 16:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 16:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 16:09:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 16:09:14 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 16:10:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 16:10:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 16:11:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 16:11:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 16:11:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 16:11:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 16:12:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 16:12:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 16:13:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 16:13:49 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 16:14:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 16:14:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 16:15:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 16:15:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 16:16:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 16:16:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 16:17:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 16:17:29 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 16:18:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 16:18:24 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 16:19:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 16:19:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 16:20:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 16:20:14 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 16:21:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 16:21:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 16:22:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 16:22:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 16:22:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 16:22:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 16:23:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 16:23:54 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 16:24:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 16:24:49 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 16:25:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 16:25:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 16:26:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 16:26:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 16:27:34 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 16:27:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 16:27:34 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 16:27:34 WARN SessionCheckerServiceImpl:80 - Scope is null at Thu May 05 16:27:34 CEST 2016 -2016-05-05 16:27:34 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 17:15:46 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-05 17:15:46 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-05 17:15:46 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-05 17:15:46 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 17:15:46 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 17:15:46 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:15:46 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 17:15:46 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@f79f0d4 -2016-05-05 17:15:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:15:46 INFO ASLSession:352 - Logging the entrance -2016-05-05 17:15:46 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 17:15:46 DEBUG TemplateModel:83 - 2016-05-05 17:15:46, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 17:15:46 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:15:46 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-05 17:15:48 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 17:15:48 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 17:15:48 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:15:48 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 17:15:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:15:48 INFO ASLSession:352 - Logging the entrance -2016-05-05 17:15:48 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 17:15:48 DEBUG TemplateModel:83 - 2016-05-05 17:15:48, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 17:15:48 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:15:48 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 17:15:48 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 125 ms -2016-05-05 17:15:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-05 17:15:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-05 17:15:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-05 17:15:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-05 17:15:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-05 17:15:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-05 17:15:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-05 17:15:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-05 17:15:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-05 17:15:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-05 17:15:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-05 17:15:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-05 17:15:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-05 17:15:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-05 17:15:49 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-05 17:15:49 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:15:49 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 17:15:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@7dedd370 -2016-05-05 17:15:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@114ad035 -2016-05-05 17:15:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@73df29f1 -2016-05-05 17:15:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@ab78f56 -2016-05-05 17:15:49 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 236 ms -2016-05-05 17:15:49 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-05 17:15:50 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-05 17:15:50 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:15:50 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 17:15:50 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 17:15:50 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 17:15:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:15:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:15:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:15:50 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-05 17:15:50 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-05 17:15:50 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-05 17:15:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:15:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:15:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:15:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:15:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-05 17:15:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 30 ms -2016-05-05 17:15:50 DEBUG SClient4WPS:118 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-05 17:15:50 INFO SClient4WPS:123 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 17:15:50 DEBUG SClient4WPS:134 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-05 17:15:50 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 17:15:50 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-05 17:15:50 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-05 17:15:50 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-05 17:15:50 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-05 17:15:50 DEBUG JCRRepository:271 - Initialize repository -2016-05-05 17:15:50 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-05 17:15:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 17:15:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:15:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-05 17:15:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 20 ms -2016-05-05 17:15:50 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-05 17:15:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:15:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:15:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:15:50 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-05 17:15:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:15:50 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-05 17:15:51 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 17:15:51 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 17:15:51 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-05 17:15:51 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 17:15:51 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 17:15:51 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-05 17:15:51 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-05 17:15:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:15:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:15:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:15:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:15:51 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 17:15:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-05 17:15:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:15:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:15:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:15:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:15:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:15:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:15:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:15:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:15:51 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 17:15:52 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 17:15:52 DEBUG SClient4WPS:255 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-05 17:15:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-05 17:15:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:15:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:15:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:15:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:15:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:15:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:15:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:15:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:15:52 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 17:15:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-05 17:15:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:15:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:15:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:15:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:15:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:15:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:15:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:15:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:15:52 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 17:15:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-05 17:15:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:15:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:15:53 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 17:15:53 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 17:15:53 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 17:15:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:15:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:15:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:15:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:15:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:15:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:15:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:15:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:15:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:15:53 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-05 17:15:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:15:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:15:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:15:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:15:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:15:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:15:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:15:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:15:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:15:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:15:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:15:53 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-05 17:15:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:15:53 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-05 17:15:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:15:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-05 17:15:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:15:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:15:53 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-05 17:15:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:15:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:15:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:15:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:15:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:15:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:15:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:15:53 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:15:53 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-05 17:15:53 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 17:15:53 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 17:15:53 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 33 ms -2016-05-05 17:15:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:15:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-05 17:15:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:15:53 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:15:53 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-05 17:15:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-05 17:15:54 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-05 17:15:54 INFO ISClientConnector:82 - found only one RR, take it -2016-05-05 17:15:54 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-05 17:15:54 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-05 17:15:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-05 17:15:54 DEBUG StorageClient:517 - set scope: /gcube -2016-05-05 17:15:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-05 17:15:54 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-05 17:15:54 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:15:54 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 17:15:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-05 17:15:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-05 17:15:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-05 17:15:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-05 17:15:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:15:54 INFO WorkspaceExplorerServiceImpl:178 - end time - 377 msc 0 sec -2016-05-05 17:15:54 INFO WorkspaceExplorerServiceImpl:178 - end time - 221 msc 0 sec -2016-05-05 17:15:54 INFO WorkspaceExplorerServiceImpl:178 - end time - 384 msc 0 sec -2016-05-05 17:16:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:16:01 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-05 17:16:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:16:01 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-05 17:16:01 DEBUG SClient4WPS:274 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 17:16:01 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 17:16:02 DEBUG SClient4WPS:297 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-05 17:16:02 DEBUG SClient4WPS:301 - WPSClient->Fetching Inputs -2016-05-05 17:16:02 DEBUG SClient4WPS:303 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-05 17:16:02 DEBUG SClient4WPS:303 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-05 17:16:02 DEBUG SClient4WPS:308 - WPSClient->Fetching Outputs -2016-05-05 17:16:02 DEBUG SClient4WPS:310 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-05 17:16:02 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 17:16:02 DEBUG WPS2SM:325 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-05 17:16:02 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-05 17:16:02 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-05 17:16:02 DEBUG WPS2SM:208 - Default Schema: null -2016-05-05 17:16:02 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-05 17:16:02 DEBUG WPS2SM:235 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-05 17:16:02 DEBUG WPS2SM:236 - Machter find: true -2016-05-05 17:16:02 DEBUG WPS2SM:237 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-05 17:16:02 DEBUG WPS2SM:239 - Machter start: 31 -2016-05-05 17:16:02 DEBUG WPS2SM:241 - Machter end: 97 -2016-05-05 17:16:02 DEBUG WPS2SM:242 - Machter Group Count: 1 -2016-05-05 17:16:02 DEBUG WPS2SM:245 - Matcher separator: | -2016-05-05 17:16:02 DEBUG WPS2SM:339 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-05 17:16:02 DEBUG WPS2SM:340 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-05 17:16:02 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 17:16:02 DEBUG SClient4WPS:652 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-05 17:16:02 DEBUG WPS2SM:300 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-05 17:16:02 DEBUG WPS2SM:92 - WPS type: -2016-05-05 17:16:02 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-05 17:16:02 DEBUG WPS2SM:100 - Guessed default value: -2016-05-05 17:16:02 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-05 17:16:02 DEBUG WPS2SM:149 - Machter find: true -2016-05-05 17:16:02 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-05 17:16:02 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-05 17:16:02 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-05 17:16:02 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-05 17:16:02 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-05 17:16:02 DEBUG WPS2SM:339 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-05 17:16:02 DEBUG WPS2SM:340 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-05 17:16:02 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 17:16:02 DEBUG SClient4WPS:652 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-05 17:16:02 DEBUG SClient4WPS:656 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-05 17:16:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:16:02 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:16:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:16:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:02 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:16:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:02 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-05 17:16:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-05 17:16:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:16:02 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:16:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:16:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:16:02 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:16:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:16:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:16:02 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:16:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:02 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-05 17:16:03 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-05 17:16:03 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-05 17:16:03 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-05 17:16:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 17:16:03 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-05 17:16:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 17:16:03 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-05 17:16:03 INFO WorkspaceExplorerServiceImpl:138 - end time - 224 msc 0 sec -2016-05-05 17:16:03 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-05 17:16:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:16:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:16:06 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-05 17:16:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:16:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:06 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-05 17:16:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-05 17:16:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:16:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:16:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:16:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:16:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:16:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:16:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:06 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-05 17:16:06 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-05 17:16:06 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-05 17:16:06 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-05 17:16:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 17:16:06 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-05 17:16:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 17:16:06 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-05 17:16:06 INFO WorkspaceExplorerServiceImpl:138 - end time - 170 msc 0 sec -2016-05-05 17:16:06 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-05 17:16:14 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:14 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:16:14 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:16:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:16:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:14 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:16:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:16:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:16:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:14 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:14 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:14 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 17:16:14 DEBUG ServiceEngine:306 - get() - start -2016-05-05 17:16:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:14 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:14 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-05 17:16:14 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-05 17:16:14 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:16:14 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 17:16:14 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-05 17:16:14 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:16:14 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-05 17:16:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:14 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:14 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:16:14 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:16:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:16:14 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-05 17:16:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:16:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:16:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:14 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:14 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:14 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:16:14 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 17:16:14 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 17:16:14 INFO WorkspaceExplorerServiceImpl:178 - end time - 59 msc 0 sec -2016-05-05 17:16:14 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 17:16:14 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:16:14 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:14 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 17:16:14 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-05 17:16:14 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:14 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:14 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c4d22eee, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2bc90535, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a74f108, socketFactory=javax.net.DefaultSocketFactory@737c51c9, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:16:14 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:16:15 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:16:15 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:306280}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1924799}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2939433, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2494359, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:15 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:16:15 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:15 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:15 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:15 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2183596}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=938161, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:15 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1597471}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1955379, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-05 17:16:15 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1924800}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1924800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 DEBUG command:56 - Command execution completed -2016-05-05 17:16:15 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1924800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 DEBUG command:56 - Command execution completed -2016-05-05 17:16:15 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1924800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 DEBUG command:56 - Command execution completed -2016-05-05 17:16:15 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 17:16:15 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1924800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 DEBUG command:56 - Command execution completed -2016-05-05 17:16:15 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1924800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 DEBUG command:56 - Command execution completed -2016-05-05 17:16:15 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1924800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:16:15 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:16:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:16:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:16:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:16:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:15 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:16:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:16:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:15 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:16:15 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:16:15 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-05 17:16:15 DEBUG ServiceEngine:306 - get() - start -2016-05-05 17:16:15 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:15 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:15 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-05 17:16:15 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-05 17:16:15 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:16:15 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 17:16:15 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-05 17:16:15 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:16:15 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-05 17:16:15 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:15 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:15 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:16:15 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:16:15 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:16:15 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:16:15 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:15 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:15 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:15 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c4d22eee, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2bc90535, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a74f108, socketFactory=javax.net.DefaultSocketFactory@737c51c9, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:16:15 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:16:15 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:16:15 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:306281}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1290956, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:15 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:16:15 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:15 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:15 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1924801}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=997495, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:15 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:15 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2183598}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1030897, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:16 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:16:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:16:16 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-05 17:16:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:16:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:16 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1924802}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1924802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:16 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1597472}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:16 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1215258, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-05 17:16:16 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:16:16 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:16:16 DEBUG command:56 - Command execution completed -2016-05-05 17:16:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1924802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:16 DEBUG command:56 - Command execution completed -2016-05-05 17:16:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1924802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:16 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-05 17:16:16 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-05 17:16:16 DEBUG command:56 - Command execution completed -2016-05-05 17:16:16 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-05 17:16:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1924802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:16 DEBUG command:56 - Command execution completed -2016-05-05 17:16:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1924802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:16 DEBUG command:56 - Command execution completed -2016-05-05 17:16:16 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1924802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:16 INFO WorkspaceExplorerServiceImpl:178 - end time - 40 msc 0 sec -2016-05-05 17:16:16 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:16 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 17:16:16 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 17:16:16 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 17:16:16 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-05 17:16:16 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-05 17:16:16 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:16:16 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:16:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:16 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:16:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:16 INFO WorkspaceExplorerServiceImpl:506 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:16:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:16:16 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-05 17:16:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:16:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:16 DEBUG query:56 - Query completed -2016-05-05 17:16:16 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:16:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:16 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:16:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:16 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-05 17:16:16 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2183596} -2016-05-05 17:16:16 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:306280} -2016-05-05 17:16:16 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1924800}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:16:16 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1597471} -2016-05-05 17:16:16 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1924800} -2016-05-05 17:16:16 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1924799} -2016-05-05 17:16:16 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:16:16 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 17:16:16 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 17:16:16 INFO WorkspaceExplorerServiceImpl:491 - returning size: 4033313 -2016-05-05 17:16:16 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:16:16 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:16:16 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:16:16 INFO WorkspaceExplorerServiceImpl:491 - returning size: 1951243 -2016-05-05 17:16:17 DEBUG query:56 - Query completed -2016-05-05 17:16:17 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-05 17:16:17 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2183598} -2016-05-05 17:16:17 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1924802}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:16:17 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1924802} -2016-05-05 17:16:17 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:306281} -2016-05-05 17:16:17 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1597472} -2016-05-05 17:16:17 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:16:17 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-05 17:16:17 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-05 17:16:17 INFO WorkspaceExplorerServiceImpl:491 - returning size: 3902486 -2016-05-05 17:16:17 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1924801} -2016-05-05 17:16:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:16:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:16:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:16:17 DEBUG DataMinerManagerServiceImpl:241 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-05 17:16:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:17 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:16:17 DEBUG ServiceEngine:193 - get() - start -2016-05-05 17:16:17 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:17 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:17 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-05 17:16:17 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-05 17:16:17 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:16:17 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 17:16:17 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-05 17:16:17 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:16:17 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:17 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:17 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-05 17:16:17 DEBUG Operation:173 - get(String) - start -2016-05-05 17:16:17 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:16:17 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:16:17 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:16:17 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:16:17 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:17 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:17 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:17 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c4d22eee, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2bc90535, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a74f108, socketFactory=javax.net.DefaultSocketFactory@737c51c9, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:16:17 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:16:17 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:16:17 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1924803}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:17 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:17 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1815361, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:17 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:16:17 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:17 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:17 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:17 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2183599}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:17 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:17 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=864788, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:17 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:306282}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:17 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:17 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2203705, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:17 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1597473}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:17 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:17 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1592729, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-05 17:16:17 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1924804}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:17 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1924804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:19 DEBUG command:56 - Command execution completed -2016-05-05 17:16:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1924804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:19 DEBUG command:56 - Command execution completed -2016-05-05 17:16:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1924804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:19 DEBUG command:56 - Command execution completed -2016-05-05 17:16:19 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-05 17:16:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1924804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:19 DEBUG command:56 - Command execution completed -2016-05-05 17:16:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1924804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:19 DEBUG command:56 - Command execution completed -2016-05-05 17:16:19 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-05 17:16:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1924804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:19 DEBUG command:56 - Command execution completed -2016-05-05 17:16:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1924804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:19 DEBUG command:56 - Command execution completed -2016-05-05 17:16:19 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-05 17:16:19 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1924804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 DEBUG query:56 - Query completed -2016-05-05 17:16:20 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-05 17:16:20 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-05 17:16:20 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-05 17:16:20 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1924804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 DEBUG update:56 - Update completed -2016-05-05 17:16:20 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1924804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 DEBUG query:56 - Query completed -2016-05-05 17:16:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:20 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:16:20 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-05 17:16:20 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-05 17:16:20 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-05 17:16:20 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:20 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:20 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-05 17:16:20 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-05 17:16:20 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-05 17:16:20 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:16:20 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-05 17:16:20 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-05 17:16:20 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:16:20 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:20 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:20 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:16:20 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:16:20 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:16:20 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:16:20 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:20 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:20 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:20 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c4d22eee, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2bc90535, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a74f108, socketFactory=javax.net.DefaultSocketFactory@737c51c9, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:16:20 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:16:20 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:16:20 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:306288}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1924811}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2942038, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:20 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:16:20 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:20 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=18533641, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:20 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:20 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=18.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:20 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:2183604}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1075379, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=18.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:20 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:1597478}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1924814}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1924814}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1245056, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=18.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-05 17:16:20 DEBUG command:56 - Command execution completed -2016-05-05 17:16:20 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1924814}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 DEBUG command:56 - Command execution completed -2016-05-05 17:16:20 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1924814}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 DEBUG command:56 - Command execution completed -2016-05-05 17:16:20 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-05 17:16:20 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-05 17:16:20 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1924814}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 DEBUG command:56 - Command execution completed -2016-05-05 17:16:20 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1924814}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 DEBUG command:56 - Command execution completed -2016-05-05 17:16:20 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-05 17:16:20 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1924814}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:20 DEBUG query:56 - Query completed -2016-05-05 17:16:20 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-05 17:16:20 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:2183604} -2016-05-05 17:16:20 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:306288} -2016-05-05 17:16:20 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:1597478} -2016-05-05 17:16:20 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1924814}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:16:20 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1924814} -2016-05-05 17:16:20 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:16:20 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1924811} -2016-05-05 17:16:20 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-05 17:16:20 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-05 17:16:20 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-05 17:16:20 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-05 17:16:20 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-05 17:16:20 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-05 17:16:20 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-05 17:16:20 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-05 17:16:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:16:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:16:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:16:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:16:23 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-05 17:16:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:16:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:23 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-05 17:16:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-05 17:16:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:16:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:16:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:16:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:23 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:16:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:23 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:16:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:16:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:16:23 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-05 17:16:23 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-05 17:16:23 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-05 17:16:23 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-05 17:16:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 17:16:23 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-05 17:16:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 17:16:23 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-05 17:16:23 INFO WorkspaceExplorerServiceImpl:138 - end time - 172 msc 0 sec -2016-05-05 17:16:23 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-05 17:16:26 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2183599} -2016-05-05 17:16:26 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1924804}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:16:26 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:306282} -2016-05-05 17:16:26 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1924804} -2016-05-05 17:16:26 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1597473} -2016-05-05 17:16:26 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1924803} -2016-05-05 17:16:32 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:32 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:16:32 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:16:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:16:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:32 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:16:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:16:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:16:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:33 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:33 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:33 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 17:16:33 DEBUG ServiceEngine:306 - get() - start -2016-05-05 17:16:33 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:33 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:33 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-05 17:16:33 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-05 17:16:33 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:16:33 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 17:16:33 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-05 17:16:33 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:16:33 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-05 17:16:33 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:33 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:33 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:16:33 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:16:33 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:16:33 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:16:33 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:33 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:33 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:33 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c4d22eee, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2bc90535, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a74f108, socketFactory=javax.net.DefaultSocketFactory@737c51c9, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:16:33 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:16:33 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:16:33 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:306298}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:33 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1262848, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:33 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:16:33 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:33 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1924827}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:33 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:33 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1398497, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:33 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:33 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2183611}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:33 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1054129, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:33 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1924828}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1924828}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:16:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:16:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:16:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:33 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1597485}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:33 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1374812, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-05 17:16:33 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:16:33 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-05 17:16:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:16:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:33 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:33 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 17:16:33 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 17:16:33 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 17:16:33 INFO WorkspaceExplorerServiceImpl:178 - end time - 53 msc 0 sec -2016-05-05 17:16:33 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 17:16:33 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-05 17:16:33 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-05 17:16:34 DEBUG command:56 - Command execution completed -2016-05-05 17:16:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1924828}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 DEBUG command:56 - Command execution completed -2016-05-05 17:16:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1924828}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 DEBUG command:56 - Command execution completed -2016-05-05 17:16:34 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 17:16:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1924828}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 DEBUG command:56 - Command execution completed -2016-05-05 17:16:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1924828}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 DEBUG command:56 - Command execution completed -2016-05-05 17:16:34 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1924828}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:16:34 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:16:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:16:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:16:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:16:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:34 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:16:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:16:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:34 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:16:34 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:16:34 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-05 17:16:34 DEBUG ServiceEngine:306 - get() - start -2016-05-05 17:16:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:34 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:34 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-05 17:16:34 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-05 17:16:34 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:16:34 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 17:16:34 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-05 17:16:34 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:16:34 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-05 17:16:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:34 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:34 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:16:34 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:16:34 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:16:34 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:16:34 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:34 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:34 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:34 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c4d22eee, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2bc90535, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a74f108, socketFactory=javax.net.DefaultSocketFactory@737c51c9, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:16:34 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:16:34 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:16:34 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:306305}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1099753, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:34 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:16:34 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:34 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1924835}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1454806, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:16:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:16:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:16:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:34 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:34 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2183615}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1012154, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:34 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:16:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:34 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:16:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:34 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:16:34 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1597489}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1318099, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 17:16:34 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-05 17:16:34 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1924836}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1924836}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-05 17:16:34 INFO WorkspaceExplorerServiceImpl:178 - end time - 62 msc 0 sec -2016-05-05 17:16:34 DEBUG command:56 - Command execution completed -2016-05-05 17:16:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1924836}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 DEBUG command:56 - Command execution completed -2016-05-05 17:16:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1924836}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:16:34 DEBUG command:56 - Command execution completed -2016-05-05 17:16:34 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-05 17:16:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1924836}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 17:16:34 DEBUG command:56 - Command execution completed -2016-05-05 17:16:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1924836}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 DEBUG command:56 - Command execution completed -2016-05-05 17:16:34 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1924836}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:34 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 17:16:34 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 17:16:34 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-05 17:16:35 DEBUG query:56 - Query completed -2016-05-05 17:16:35 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-05 17:16:35 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2183611} -2016-05-05 17:16:35 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:306298} -2016-05-05 17:16:35 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1597485} -2016-05-05 17:16:35 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1924828}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:16:35 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1924828} -2016-05-05 17:16:35 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:16:35 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 17:16:35 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 17:16:35 INFO WorkspaceExplorerServiceImpl:491 - returning size: 4033313 -2016-05-05 17:16:35 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1924827} -2016-05-05 17:16:35 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:16:35 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:16:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:16:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:16:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:35 INFO WorkspaceExplorerServiceImpl:506 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:16:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:16:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:16:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:16:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:35 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:16:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:16:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:16:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:35 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:16:35 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:16:35 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:16:35 INFO WorkspaceExplorerServiceImpl:491 - returning size: 1951243 -2016-05-05 17:16:35 DEBUG query:56 - Query completed -2016-05-05 17:16:35 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-05 17:16:35 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2183615} -2016-05-05 17:16:35 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:306305} -2016-05-05 17:16:35 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1597489} -2016-05-05 17:16:35 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1924836}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:16:35 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1924836} -2016-05-05 17:16:35 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:16:35 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1924835} -2016-05-05 17:16:35 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-05 17:16:35 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-05 17:16:35 INFO WorkspaceExplorerServiceImpl:491 - returning size: 3902486 -2016-05-05 17:16:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:16:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:16:36 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:16:36 DEBUG DataMinerManagerServiceImpl:241 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-05 17:16:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:36 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:16:36 DEBUG ServiceEngine:193 - get() - start -2016-05-05 17:16:36 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:36 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:36 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-05 17:16:36 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-05 17:16:36 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:16:36 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 17:16:36 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-05 17:16:36 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:16:36 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:36 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:36 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-05 17:16:36 DEBUG Operation:173 - get(String) - start -2016-05-05 17:16:36 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:16:36 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:16:36 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:16:36 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:16:36 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:36 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:36 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:36 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c4d22eee, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2bc90535, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a74f108, socketFactory=javax.net.DefaultSocketFactory@737c51c9, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:16:36 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:16:36 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:16:36 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1924837}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:36 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:36 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:306306}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:36 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1418257, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:36 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:16:36 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:36 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:36 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2335899, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:36 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2183616}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:36 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1027253, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:36 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1597491}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:36 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1858394, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-05 17:16:36 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1924838}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1924838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:37 DEBUG command:56 - Command execution completed -2016-05-05 17:16:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1924838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:37 DEBUG command:56 - Command execution completed -2016-05-05 17:16:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1924838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:37 DEBUG command:56 - Command execution completed -2016-05-05 17:16:37 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-05 17:16:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1924838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:37 DEBUG command:56 - Command execution completed -2016-05-05 17:16:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1924838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:37 DEBUG command:56 - Command execution completed -2016-05-05 17:16:37 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-05 17:16:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1924838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:37 DEBUG command:56 - Command execution completed -2016-05-05 17:16:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1924838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:37 DEBUG command:56 - Command execution completed -2016-05-05 17:16:37 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-05 17:16:37 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1924838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:37 DEBUG query:56 - Query completed -2016-05-05 17:16:37 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-05 17:16:37 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-05 17:16:37 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-05 17:16:37 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1924838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:37 DEBUG update:56 - Update completed -2016-05-05 17:16:37 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1924838}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:37 DEBUG query:56 - Query completed -2016-05-05 17:16:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:16:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:16:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:16:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:16:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:16:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:16:37 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:16:37 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-05 17:16:37 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-05 17:16:37 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-05 17:16:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:37 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:37 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-05 17:16:37 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-05 17:16:37 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-05 17:16:37 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:16:37 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-05 17:16:37 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-05 17:16:37 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:16:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:16:37 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:16:37 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:16:37 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:16:37 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:16:37 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:16:37 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:37 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:37 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:37 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c4d22eee, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2bc90535, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a74f108, socketFactory=javax.net.DefaultSocketFactory@737c51c9, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:16:37 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:16:37 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:16:38 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:306307}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1105816, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:38 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:16:38 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:38 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:16:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:38 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2183617}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1215364, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:38 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1924839}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1198560, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:38 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:16:38 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1597492}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1899105, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:16:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-05 17:16:38 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1924840}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1924840}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 DEBUG command:56 - Command execution completed -2016-05-05 17:16:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1924840}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 DEBUG command:56 - Command execution completed -2016-05-05 17:16:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1924840}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 DEBUG command:56 - Command execution completed -2016-05-05 17:16:38 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-05 17:16:38 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-05 17:16:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1924840}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 DEBUG command:56 - Command execution completed -2016-05-05 17:16:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1924840}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 DEBUG command:56 - Command execution completed -2016-05-05 17:16:38 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-05 17:16:38 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1924840}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:16:38 DEBUG query:56 - Query completed -2016-05-05 17:16:38 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-05 17:16:38 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2183617} -2016-05-05 17:16:38 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1597492} -2016-05-05 17:16:38 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:306307} -2016-05-05 17:16:38 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1924840}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:16:38 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1924840} -2016-05-05 17:16:38 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:16:38 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1924839} -2016-05-05 17:16:38 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-05 17:16:38 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-05 17:16:38 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-05 17:16:38 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-05 17:16:38 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-05 17:16:38 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-05 17:16:38 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-05 17:16:38 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-05 17:16:41 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:306306} -2016-05-05 17:16:41 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1924838}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:16:41 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1924838} -2016-05-05 17:16:41 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1597491} -2016-05-05 17:16:41 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2183616} -2016-05-05 17:16:41 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1924837} -2016-05-05 17:16:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:16:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:17:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:17:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:17:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:17:17 DEBUG DataMinerManagerServiceImpl:134 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[TabularListParameter [value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=h1|h2, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]], hasImage=false]] -2016-05-05 17:17:17 DEBUG WPS2SM:325 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-05 17:17:17 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-05 17:17:17 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-05 17:17:17 DEBUG WPS2SM:208 - Default Schema: null -2016-05-05 17:17:17 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-05 17:17:17 DEBUG WPS2SM:235 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-05 17:17:17 DEBUG WPS2SM:236 - Machter find: true -2016-05-05 17:17:17 DEBUG WPS2SM:237 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-05 17:17:17 DEBUG WPS2SM:239 - Machter start: 31 -2016-05-05 17:17:17 DEBUG WPS2SM:241 - Machter end: 97 -2016-05-05 17:17:17 DEBUG WPS2SM:242 - Machter Group Count: 1 -2016-05-05 17:17:17 DEBUG WPS2SM:245 - Matcher separator: | -2016-05-05 17:17:17 DEBUG WPS2SM:339 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-05 17:17:17 DEBUG WPS2SM:340 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-05 17:17:17 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 17:17:17 DEBUG SClient4WPS:683 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-05 17:17:17 DEBUG WPS2SM:300 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-05 17:17:17 DEBUG WPS2SM:92 - WPS type: -2016-05-05 17:17:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-05 17:17:17 DEBUG WPS2SM:100 - Guessed default value: -2016-05-05 17:17:17 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-05 17:17:17 DEBUG WPS2SM:149 - Machter find: true -2016-05-05 17:17:17 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-05 17:17:17 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-05 17:17:17 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-05 17:17:17 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-05 17:17:17 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-05 17:17:17 DEBUG WPS2SM:339 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-05 17:17:17 DEBUG WPS2SM:340 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-05 17:17:17 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 17:17:17 DEBUG SClient4WPS:683 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-05 17:17:17 DEBUG SClient4WPS:691 - UserInputs[key=HCAF_Table_List, value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0] -2016-05-05 17:17:17 DEBUG SClient4WPS:691 - UserInputs[key=HCAF_Table_Names, value=h1|h2] -2016-05-05 17:17:17 DEBUG SClient4WPS:744 - Configuring Complex: HCAF_Table_List to: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-05 17:17:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec in thread 32 -2016-05-05 17:17:17 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:17:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 17:17:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 24 ms -2016-05-05 17:17:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:17:17 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:17:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-05 17:17:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 16 ms -2016-05-05 17:17:17 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube/devsec/devVRE -2016-05-05 17:17:17 INFO ISClientConnector:61 - ISCACHE: ELEMENT EXTRACTED -2016-05-05 17:17:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:17:17 DEBUG StorageClient:517 - set scope: /gcube/devsec/devVRE -2016-05-05 17:17:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:17:17 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:17:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 17:17:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 22 ms -2016-05-05 17:17:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:17:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:17:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:17:17 DEBUG ServiceEngine:347 - put() - start -2016-05-05 17:17:17 INFO ServiceEngine:34 - file gCube parameter costructor: null null -2016-05-05 17:17:17 INFO ServiceEngine:44 - file gCube parameter before: null null -2016-05-05 17:17:17 DEBUG BucketCoding:32 - Coding name: path: /DataMiner/AlgoritmsParameters/P_20160505_171717_15.xml rootArea /VOLATILE/gcube/devsec/devVRE/public/ -2016-05-05 17:17:17 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:17:17 DEBUG ServiceEngine:62 - path(String) - name: P_20160505_171717_15.xml -2016-05-05 17:17:17 DEBUG ServiceEngine:72 - path(String) - path: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/ -2016-05-05 17:17:17 INFO ServiceEngine:52 - file gCube parameter after: null null -2016-05-05 17:17:17 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:17:17 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 17:17:17 INFO OperationFactory:39 - getOperation(String) - start upload -2016-05-05 17:17:17 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:17:17 DEBUG DirectoryBucket:35 - DirectoryBucket PATH: /DataMiner/AlgoritmsParameters/P_20160505_171717_15.xml -2016-05-05 17:17:17 DEBUG BucketCoding:32 - Coding name: path: /DataMiner/AlgoritmsParameters/P_20160505_171717_15.xml rootArea /VOLATILE/gcube/devsec/devVRE/public/ -2016-05-05 17:17:17 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:17:17 DEBUG Upload:45 - UPLOAD null author: DataMiner -2016-05-05 17:17:17 DEBUG Operation:98 - put(MyFile, boolean, boolean) - start -2016-05-05 17:17:17 DEBUG Operation:104 - file size: 1 -2016-05-05 17:17:17 DEBUG Operation:108 - PUT is chukn? false -2016-05-05 17:17:17 DEBUG Operation:122 - put(MyFile, boolean, boolean) - encode length: 1 -2016-05-05 17:17:17 DEBUG Operation:128 - len File: 1 len chunk: 1 -2016-05-05 17:17:17 DEBUG Operation:131 - put(MyFile, boolean, boolean) - number of chunks: 1 -2016-05-05 17:17:17 DEBUG Operation:139 - put(MyFile, boolean, boolean) - number of thread: 1 -2016-05-05 17:17:17 DEBUG Operation:143 - consumer have a bucket name: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_171717_15.xml -2016-05-05 17:17:17 DEBUG Operation:157 - NO THREAD POOL USED -2016-05-05 17:17:17 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:17:17 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:17:17 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:17:17 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:17:17 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:17:17 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:17:17 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:17:17 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c4d22eee, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2bc90535, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a74f108, socketFactory=javax.net.DefaultSocketFactory@737c51c9, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:17:17 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:17:17 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:17:18 INFO connection:71 - Opened connection [connectionId{localValue:41, serverValue:306339}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1290225, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:17:18 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:17:18 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:17:18 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:17:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:17:18 INFO connection:71 - Opened connection [connectionId{localValue:44, serverValue:2183649}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=813758, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:17:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:17:18 INFO connection:71 - Opened connection [connectionId{localValue:42, serverValue:1924893}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1119204, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:17:18 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:17:18 INFO connection:71 - Opened connection [connectionId{localValue:43, serverValue:1597523}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1269901, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:17:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 17:17:18 INFO connection:71 - Opened connection [connectionId{localValue:45, serverValue:1924894}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG command:56 - Command execution completed -2016-05-05 17:17:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG command:56 - Command execution completed -2016-05-05 17:17:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG command:56 - Command execution completed -2016-05-05 17:17:18 INFO DefaultMongoClient:165 - MongoClient put method: OperationDefinition [operation=UPLOAD, localResource=INPUT_STREAM, remoteResource=PATH] -2016-05-05 17:17:18 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_171717_15.xml -2016-05-05 17:17:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG command:56 - Command execution completed -2016-05-05 17:17:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG command:56 - Command execution completed -2016-05-05 17:17:18 INFO MongoIO:168 - remote object is not a validID : /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_171717_15.xml -2016-05-05 17:17:18 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG query:56 - Query completed -2016-05-05 17:17:18 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG query:56 - Query completed -2016-05-05 17:17:18 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG query:56 - Query completed -2016-05-05 17:17:18 INFO MongoIO:188 - object not found -2016-05-05 17:17:18 INFO DefaultMongoClient:189 - create new file /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_171717_15.xml -2016-05-05 17:17:18 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG query:56 - Query completed -2016-05-05 17:17:18 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG query:56 - Query completed -2016-05-05 17:17:18 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG query:56 - Query completed -2016-05-05 17:17:18 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG query:56 - Query completed -2016-05-05 17:17:18 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG query:56 - Query completed -2016-05-05 17:17:18 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG query:56 - Query completed -2016-05-05 17:17:18 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG update:56 - Update completed -2016-05-05 17:17:18 DEBUG MongoIO:438 - Create new object with name: DataMiner dir: /VOLATILE/gcube/devsec/devVRE/public/ type= dir -2016-05-05 17:17:18 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG query:56 - Query completed -2016-05-05 17:17:18 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1924894}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 17:17:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=7.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 17:17:18 DEBUG update:56 - Update completed -2016-05-05 17:17:18 DEBUG MongoIO:438 - Create new object with name: AlgoritmsParameters dir: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/ type= dir -2016-05-05 17:17:18 DEBUG connection:56 - Closing connection connectionId{localValue:44, serverValue:2183649} -2016-05-05 17:17:18 DEBUG connection:56 - Closing connection connectionId{localValue:41, serverValue:306339} -2016-05-05 17:17:18 INFO connection:71 - Closed connection [connectionId{localValue:45, serverValue:1924894}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:17:18 DEBUG connection:56 - Closing connection connectionId{localValue:45, serverValue:1924894} -2016-05-05 17:17:18 DEBUG connection:56 - Closing connection connectionId{localValue:43, serverValue:1597523} -2016-05-05 17:17:18 DEBUG connection:56 - Closing connection connectionId{localValue:42, serverValue:1924893} -2016-05-05 17:17:18 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:17:18 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:17:18 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:17:18 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:17:18 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:17:18 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c4d22eee, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2bc90535, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a74f108, socketFactory=javax.net.DefaultSocketFactory@737c51c9, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:17:18 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:17:18 INFO cluster:71 - No server chosen by ReadPreferenceServerSelector{readPreference=primaryPreferred} from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:17:18 INFO connection:71 - Opened connection [connectionId{localValue:46, serverValue:306341}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1343446, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:17:18 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:17:18 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:17:18 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:17:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:17:18 INFO connection:71 - Opened connection [connectionId{localValue:49, serverValue:2183651}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 INFO connection:71 - Opened connection [connectionId{localValue:47, serverValue:1924895}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1199023, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:17:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:17:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1574890, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:17:18 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:17:18 INFO connection:71 - Opened connection [connectionId{localValue:48, serverValue:1597525}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1270231, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:17:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 17:17:18 INFO connection:71 - Opened connection [connectionId{localValue:50, serverValue:306342}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:17:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:306342}] to server mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:17:21 DEBUG command:56 - Command execution completed -2016-05-05 17:17:21 INFO connection:71 - Opened connection [connectionId{localValue:51, serverValue:1924903}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:21 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:51, serverValue:1924903}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:21 DEBUG command:56 - Command execution completed -2016-05-05 17:17:21 INFO DefaultMongoClient:1491 - set last operation: UPLOAD -2016-05-05 17:17:21 DEBUG insert:56 - Inserting 1 documents into namespace remotefs.fs.chunks on connection [connectionId{localValue:51, serverValue:1924903}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 DEBUG insert:56 - Insert completed -2016-05-05 17:17:24 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:51, serverValue:1924903}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 DEBUG update:56 - Update completed -2016-05-05 17:17:24 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:51, serverValue:1924903}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 DEBUG update:56 - Update completed -2016-05-05 17:17:24 DEBUG DefaultMongoClient:957 - Directory: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/ -2016-05-05 17:17:24 DEBUG DefaultMongoClient:960 - ObjectId: 572b640148434a65d0d98b89 -2016-05-05 17:17:24 INFO connection:71 - Closed connection [connectionId{localValue:50, serverValue:306342}] to mongo2-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:17:24 DEBUG connection:56 - Closing connection connectionId{localValue:50, serverValue:306342} -2016-05-05 17:17:24 DEBUG connection:56 - Closing connection connectionId{localValue:49, serverValue:2183651} -2016-05-05 17:17:24 DEBUG connection:56 - Closing connection connectionId{localValue:46, serverValue:306341} -2016-05-05 17:17:24 INFO connection:71 - Closed connection [connectionId{localValue:51, serverValue:1924903}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:17:24 DEBUG connection:56 - Closing connection connectionId{localValue:51, serverValue:1924903} -2016-05-05 17:17:24 DEBUG connection:56 - Closing connection connectionId{localValue:48, serverValue:1597525} -2016-05-05 17:17:24 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:17:24 DEBUG connection:56 - Closing connection connectionId{localValue:47, serverValue:1924895} -2016-05-05 17:17:24 INFO DefaultMongoClient:863 - new file created with id: 572b640148434a65d0d98b89 -2016-05-05 17:17:24 INFO ServiceEngine:34 - file gCube parameter costructor: public /gcube/devsec/devVRE -2016-05-05 17:17:24 INFO ServiceEngine:44 - file gCube parameter before: public /gcube/devsec/devVRE -2016-05-05 17:17:24 DEBUG BucketCoding:32 - Coding name: path: /DataMiner/AlgoritmsParameters/P_20160505_171717_15.xml rootArea /VOLATILE/gcube/devsec/devVRE/public/ -2016-05-05 17:17:24 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:17:24 DEBUG ServiceEngine:62 - path(String) - name: P_20160505_171717_15.xml -2016-05-05 17:17:24 DEBUG ServiceEngine:72 - path(String) - path: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/ -2016-05-05 17:17:24 INFO ServiceEngine:52 - file gCube parameter after: public /gcube/devsec/devVRE -2016-05-05 17:17:24 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:17:24 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= public file..getGcubeAccessType() public -2016-05-05 17:17:24 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-05 17:17:24 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:17:24 DEBUG BucketCoding:32 - Coding name: path: /DataMiner/AlgoritmsParameters/P_20160505_171717_15.xml rootArea /VOLATILE/gcube/devsec/devVRE/public/ -2016-05-05 17:17:24 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:17:24 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:17:24 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:17:24 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:17:24 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:17:24 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:17:24 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:17:24 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:17:24 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c4d22eee, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2bc90535, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a74f108, socketFactory=javax.net.DefaultSocketFactory@737c51c9, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:17:24 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:17:24 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:17:24 INFO connection:71 - Opened connection [connectionId{localValue:52, serverValue:306348}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1204672, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:17:24 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:17:24 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:17:24 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:17:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:17:24 INFO connection:71 - Opened connection [connectionId{localValue:55, serverValue:2183657}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1031554, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:17:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:17:24 INFO connection:71 - Opened connection [connectionId{localValue:53, serverValue:1924908}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1195478, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:17:24 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:17:24 INFO connection:71 - Opened connection [connectionId{localValue:54, serverValue:1597531}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1515473, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:17:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 17:17:24 INFO connection:71 - Opened connection [connectionId{localValue:56, serverValue:1924911}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:56, serverValue:1924911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 DEBUG command:56 - Command execution completed -2016-05-05 17:17:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:56, serverValue:1924911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 DEBUG command:56 - Command execution completed -2016-05-05 17:17:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:56, serverValue:1924911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 DEBUG command:56 - Command execution completed -2016-05-05 17:17:24 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_171717_15.xml -2016-05-05 17:17:24 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_171717_15.xml -2016-05-05 17:17:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:56, serverValue:1924911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 DEBUG command:56 - Command execution completed -2016-05-05 17:17:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:56, serverValue:1924911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 DEBUG command:56 - Command execution completed -2016-05-05 17:17:24 INFO MongoIO:168 - remote object is not a validID : /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_171717_15.xml -2016-05-05 17:17:24 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:56, serverValue:1924911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:17:24 DEBUG query:56 - Query completed -2016-05-05 17:17:24 INFO MongoIO:186 - object found P_20160505_171717_15.xml -2016-05-05 17:17:24 DEBUG connection:56 - Closing connection connectionId{localValue:55, serverValue:2183657} -2016-05-05 17:17:24 DEBUG connection:56 - Closing connection connectionId{localValue:52, serverValue:306348} -2016-05-05 17:17:24 INFO connection:71 - Closed connection [connectionId{localValue:56, serverValue:1924911}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:17:24 DEBUG connection:56 - Closing connection connectionId{localValue:54, serverValue:1597531} -2016-05-05 17:17:24 DEBUG connection:56 - Closing connection connectionId{localValue:56, serverValue:1924911} -2016-05-05 17:17:24 DEBUG connection:56 - Closing connection connectionId{localValue:53, serverValue:1924908} -2016-05-05 17:17:24 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:17:24 DEBUG Operation:81 - PATH /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_171717_15.xml -2016-05-05 17:17:24 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Aq0xC7gH84j+fHM/VqjZi8o9o8CGXWl0GmbP5+HKCzc= -2016-05-05 17:17:24 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Aq0xC7gH84j+fHM/VqjZi8o9o8CGXWl0GmbP5+HKCzc= -2016-05-05 17:17:24 DEBUG Operation:87 - translating: http://data-d.d4science.org/Aq0xC7gH84j+fHM/VqjZi8o9o8CGXWl0GmbP5+HKCzc= -2016-05-05 17:17:24 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-05 17:17:24 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Aq0xC7gH84j+fHM/VqjZi8o9o8CGXWl0GmbP5+HKCzc= -2016-05-05 17:17:24 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/QXEweEM3Z0g4NGorZkhNL1ZxalppOG85bzhDR1hXbDBHbWJQNStIS0N6Yz0 -2016-05-05 17:17:24 INFO Operation:65 - URL translated: http://data-d.d4science.org/QXEweEM3Z0g4NGorZkhNL1ZxalppOG85bzhDR1hXbDBHbWJQNStIS0N6Yz0 -2016-05-05 17:17:24 DEBUG StorageUtil:300 - Storage public link: http://data-d.d4science.org/QXEweEM3Z0g4NGorZkhNL1ZxalppOG85bzhDR1hXbDBHbWJQNStIS0N6Yz0 -2016-05-05 17:17:24 DEBUG SClient4WPS:727 - Configuring Literal: HCAF_Table_Names to: h1|h2 -2016-05-05 17:17:24 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 17:17:25 DEBUG SClient4WPS:388 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - - - HCAF_Table_List - - - - HCAF_Table_Names - - h1|h2 - - - - - - - non_deterministic_output - - - - -2016-05-05 17:17:25 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-05 17:17:25 DEBUG SClient4WPS:415 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:17:25 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 17:17:25 DEBUG SClient4WPS:787 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:17:25 DEBUG SClient4WPS:697 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:17:25 DEBUG SClient4WPS:708 - ComputationId: ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:17:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:17:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:17:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:17:35 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:17:35 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:17:35 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:17:35 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:17:35 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:17:35 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:17:35 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:17:35 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:17:35 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:17:35 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:17:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:17:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:17:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:17:45 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:17:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:17:45 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:17:45 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:17:45 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:17:45 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:17:45 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:17:45 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:17:45 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:17:45 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:17:45 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:17:45 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:17:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:17:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:17:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:17:55 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:17:55 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:17:55 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:17:55 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:17:55 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:17:55 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:17:55 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:17:55 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:17:55 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:17:55 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:18:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:18:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:18:05 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:18:05 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:18:05 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:18:05 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:18:05 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:18:05 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:18:05 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:18:05 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:18:05 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:18:05 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:18:05 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:18:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:18:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:18:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:18:15 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:18:15 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:18:15 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:18:15 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:18:15 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:18:15 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:18:15 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:18:15 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:18:15 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:18:15 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:18:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:18:25 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:18:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:18:25 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:18:25 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:18:25 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:18:25 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:18:25 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:18:25 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:18:25 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:18:25 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:18:25 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:18:25 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:18:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:18:31 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:18:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:18:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:18:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:18:35 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:18:35 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:18:35 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:18:35 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:18:35 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:18:35 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:18:35 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:18:35 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:18:35 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:18:35 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:18:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:18:45 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:18:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:18:45 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:18:45 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:18:45 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:18:45 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:18:45 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:18:45 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:18:45 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:18:45 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:18:45 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:18:45 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:18:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:18:55 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-05 17:18:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:18:55 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:18:55 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:18:55 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:18:55 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:18:55 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:18:55 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:18:55 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:18:55 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:18:55 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:18:55 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:19:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:19:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:19:05 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:19:05 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:19:05 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:19:05 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:19:05 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:19:05 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:19:05 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:19:05 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:19:05 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:19:05 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:19:05 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:19:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:19:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:19:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:19:15 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:19:15 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:19:15 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:19:15 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:19:15 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:19:15 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:19:15 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:19:15 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:19:15 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:19:15 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:19:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:19:25 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-05 17:19:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:19:25 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:19:25 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:19:25 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:19:25 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:19:25 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:19:25 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:19:25 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:19:25 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:19:25 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:19:25 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:19:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:19:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:19:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:19:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:19:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:19:35 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:19:35 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:19:35 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:19:35 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:19:35 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:19:35 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:19:35 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:19:35 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:19:35 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:19:35 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:19:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:19:45 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:19:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:19:45 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:19:45 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:19:45 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:19:45 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:19:45 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:19:45 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:19:45 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:19:45 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:19:45 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:19:45 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:19:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:19:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:19:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:19:55 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:19:55 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:19:55 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:19:55 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:19:55 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:19:55 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:19:55 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:19:55 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:19:55 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:19:55 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:20:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:20:05 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:20:05 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:20:05 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:20:05 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:20:05 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:20:05 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:20:05 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:20:05 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:20:05 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:20:05 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:20:05 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:20:05 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:20:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:20:15 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:20:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:20:15 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:20:15 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:20:15 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:20:15 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:20:15 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:20:15 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:20:15 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:20:15 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:20:15 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:20:15 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:20:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:20:21 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-05 17:20:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:20:25 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:20:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:20:25 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:20:25 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:20:25 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:20:25 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:20:25 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:20:25 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:20:25 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:20:25 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:20:25 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:20:25 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:20:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:20:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:20:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:20:35 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:20:35 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:20:35 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:20:35 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:20:35 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:20:35 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:20:35 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:20:35 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:20:35 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:20:35 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:20:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:20:45 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:20:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:20:45 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:20:45 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:20:45 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:20:45 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:20:45 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:20:45 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:20:45 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:20:45 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:20:45 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:20:45 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:20:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:20:55 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:20:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:20:55 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:20:55 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:20:55 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:20:55 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:20:55 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:20:55 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:20:55 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:20:55 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:20:55 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:20:55 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:21:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:21:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:21:05 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:21:05 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:21:05 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:21:05 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:21:05 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:21:05 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:21:05 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:21:05 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:21:05 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:21:05 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:21:05 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:21:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:21:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:21:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:21:15 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:21:15 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:21:15 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:21:15 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:21:15 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:21:15 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:21:15 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:21:15 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:21:15 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:21:15 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:21:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 17:21:16 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 17:21:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:21:25 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:21:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:21:25 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:21:25 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:21:25 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:21:25 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:21:25 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:21:25 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:21:25 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:21:25 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:21:25 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:21:25 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:21:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:21:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:21:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:21:35 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:21:35 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:21:35 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:21:35 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:21:35 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:21:35 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:21:35 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:21:35 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:21:35 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:21:35 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:21:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-05 17:21:45 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-05 17:21:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:21:45 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:21:45 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:21:45 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:21:45 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:21:45 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:21:45 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:21:45 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:21:45 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:21:45 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:21:45 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:21:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:21:55 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:21:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:21:55 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce] -2016-05-05 17:21:55 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:21:55 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:21:55 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=0b06a4b0-90f5-4fe1-95be-aa432fddb7ce -2016-05-05 17:21:55 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:21:55 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:21:55 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:21:55 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:21:55 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:21:55 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:22:38 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-05 17:22:38 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-05 17:22:38 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-05 17:22:38 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 17:22:38 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 17:22:38 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:22:38 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 17:22:38 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@6d564de1 -2016-05-05 17:22:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:22:38 INFO ASLSession:352 - Logging the entrance -2016-05-05 17:22:38 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 17:22:38 DEBUG TemplateModel:83 - 2016-05-05 17:22:38, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 17:22:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:22:38 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-05 17:22:40 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 17:22:40 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 17:22:40 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:22:40 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 17:22:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:22:40 INFO ASLSession:352 - Logging the entrance -2016-05-05 17:22:40 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 17:22:40 DEBUG TemplateModel:83 - 2016-05-05 17:22:40, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 17:22:40 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:22:40 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 17:22:40 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 131 ms -2016-05-05 17:22:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-05 17:22:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-05 17:22:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-05 17:22:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-05 17:22:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-05 17:22:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-05 17:22:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-05 17:22:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-05 17:22:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-05 17:22:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-05 17:22:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-05 17:22:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-05 17:22:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-05 17:22:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-05 17:22:40 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-05 17:22:40 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:22:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 17:22:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@70e1e6ec -2016-05-05 17:22:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@770d014 -2016-05-05 17:22:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@2c4aa820 -2016-05-05 17:22:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@71143963 -2016-05-05 17:22:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 103 ms -2016-05-05 17:22:41 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-05 17:22:41 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-05 17:22:41 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:22:41 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-05 17:22:41 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-05 17:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:22:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:22:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-05 17:22:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 26 ms -2016-05-05 17:22:41 DEBUG SClient4WPS:118 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-05 17:22:41 INFO SClient4WPS:123 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 17:22:41 DEBUG SClient4WPS:134 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-05 17:22:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 17:22:41 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 17:22:41 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 17:22:41 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 17:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:22:41 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:22:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:22:41 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-05 17:22:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:41 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-05 17:22:41 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-05 17:22:41 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-05 17:22:41 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-05 17:22:41 DEBUG JCRRepository:271 - Initialize repository -2016-05-05 17:22:41 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-05 17:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-05 17:22:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:22:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-05 17:22:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 18 ms -2016-05-05 17:22:41 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-05 17:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:22:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:41 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-05 17:22:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:41 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-05 17:22:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 17:22:42 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 17:22:42 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-05 17:22:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 17:22:42 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 17:22:42 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-05 17:22:42 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-05 17:22:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:22:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:22:42 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 17:22:42 DEBUG SClient4WPS:255 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-05 17:22:42 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 17:22:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-05 17:22:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:22:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:22:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 17:22:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-05 17:22:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:22:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:22:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 17:22:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-05 17:22:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:22:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:22:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 17:22:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-05 17:22:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:22:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:22:43 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 17:22:43 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 17:22:43 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 17:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:22:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:22:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:43 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-05 17:22:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:22:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:22:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:22:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:43 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-05 17:22:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:22:43 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-05 17:22:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-05 17:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:22:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:22:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 17:22:44 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-05 17:22:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:22:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:22:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:22:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-05 17:22:44 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 17:22:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-05 17:22:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:22:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-05 17:22:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:22:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-05 17:22:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:22:44 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-05 17:22:44 INFO ISClientConnector:82 - found only one RR, take it -2016-05-05 17:22:44 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-05 17:22:44 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-05 17:22:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-05 17:22:44 DEBUG StorageClient:517 - set scope: /gcube -2016-05-05 17:22:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-05 17:22:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:22:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 17:22:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 22 ms -2016-05-05 17:22:44 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-05 17:22:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-05 17:22:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-05 17:22:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-05 17:22:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:22:44 INFO WorkspaceExplorerServiceImpl:178 - end time - 382 msc 0 sec -2016-05-05 17:22:44 INFO WorkspaceExplorerServiceImpl:178 - end time - 359 msc 0 sec -2016-05-05 17:22:44 INFO WorkspaceExplorerServiceImpl:178 - end time - 236 msc 0 sec -2016-05-05 17:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:22:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:22:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:22:50 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-05 17:22:50 DEBUG SClient4WPS:274 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 17:22:50 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 17:22:50 DEBUG SClient4WPS:297 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-05 17:22:50 DEBUG SClient4WPS:301 - WPSClient->Fetching Inputs -2016-05-05 17:22:50 DEBUG SClient4WPS:303 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-05 17:22:50 DEBUG SClient4WPS:303 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-05 17:22:51 DEBUG SClient4WPS:308 - WPSClient->Fetching Outputs -2016-05-05 17:22:51 DEBUG SClient4WPS:310 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-05 17:22:51 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 17:22:51 DEBUG WPS2SM:325 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-05 17:22:51 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-05 17:22:51 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-05 17:22:51 DEBUG WPS2SM:208 - Default Schema: null -2016-05-05 17:22:51 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-05 17:22:51 DEBUG WPS2SM:235 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-05 17:22:51 DEBUG WPS2SM:236 - Machter find: true -2016-05-05 17:22:51 DEBUG WPS2SM:237 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-05 17:22:51 DEBUG WPS2SM:239 - Machter start: 31 -2016-05-05 17:22:51 DEBUG WPS2SM:241 - Machter end: 97 -2016-05-05 17:22:51 DEBUG WPS2SM:242 - Machter Group Count: 1 -2016-05-05 17:22:51 DEBUG WPS2SM:245 - Matcher separator: | -2016-05-05 17:22:51 DEBUG WPS2SM:339 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-05 17:22:51 DEBUG WPS2SM:340 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-05 17:22:51 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 17:22:51 DEBUG SClient4WPS:652 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-05 17:22:51 DEBUG WPS2SM:300 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-05 17:22:51 DEBUG WPS2SM:92 - WPS type: -2016-05-05 17:22:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-05 17:22:51 DEBUG WPS2SM:100 - Guessed default value: -2016-05-05 17:22:51 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-05 17:22:51 DEBUG WPS2SM:149 - Machter find: true -2016-05-05 17:22:51 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-05 17:22:51 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-05 17:22:51 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-05 17:22:51 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-05 17:22:51 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-05 17:22:51 DEBUG WPS2SM:339 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-05 17:22:51 DEBUG WPS2SM:340 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-05 17:22:51 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 17:22:51 DEBUG SClient4WPS:652 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-05 17:22:51 DEBUG SClient4WPS:656 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-05 17:22:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:22:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:22:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:22:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:22:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:22:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:22:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:51 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-05 17:22:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:22:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-05 17:22:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:22:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:22:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:22:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:22:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:22:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:22:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:22:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:22:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:22:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:22:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:22:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:22:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:22:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:22:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:22:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:22:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:22:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:22:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:22:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:22:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:22:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:22:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:22:51 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-05 17:22:51 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-05 17:22:51 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-05 17:22:51 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-05 17:22:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 17:22:51 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-05 17:22:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 17:22:51 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-05 17:22:51 INFO WorkspaceExplorerServiceImpl:138 - end time - 181 msc 0 sec -2016-05-05 17:22:51 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-05 17:22:58 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:22:58 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:22:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:22:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:22:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:22:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:58 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:22:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:22:58 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:22:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:22:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:58 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:22:58 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:22:58 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 17:22:58 DEBUG ServiceEngine:306 - get() - start -2016-05-05 17:22:58 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:22:58 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:22:58 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-05 17:22:58 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-05 17:22:58 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:22:58 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 17:22:58 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-05 17:22:58 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:22:58 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-05 17:22:58 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:22:58 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:22:58 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:22:58 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:22:58 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:22:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:22:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:22:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:22:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:22:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:22:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:22:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:58 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:22:58 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:22:58 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:22:58 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:22:58 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 17:22:58 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 17:22:58 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:22:58 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:22:58 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5722c8c7, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5986b794, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1b7e8377, socketFactory=javax.net.DefaultSocketFactory@ee907bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:22:58 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:22:58 INFO WorkspaceExplorerServiceImpl:178 - end time - 62 msc 0 sec -2016-05-05 17:22:58 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:22:58 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 17:22:58 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 17:22:58 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-05 17:22:58 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:306540}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:22:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:22:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1924014, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:22:58 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:22:58 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:22:58 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:22:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:22:58 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2183815}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:22:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:22:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=892782, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:22:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:22:58 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1925160}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:22:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:22:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1878321, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:22:58 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:22:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:22:58 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1597689}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:22:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:22:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1504244, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:22:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 17:22:58 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1925161}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:22:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1925161}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:22:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:22:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 17:22:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:22:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 17:22:59 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:22:59 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:22:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:22:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:22:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:22:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:59 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:22:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:22:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:22:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:22:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:59 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:22:59 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:22:59 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-05 17:22:59 DEBUG ServiceEngine:306 - get() - start -2016-05-05 17:22:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:22:59 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:22:59 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-05 17:22:59 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-05 17:22:59 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:22:59 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 17:22:59 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-05 17:22:59 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:22:59 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-05 17:22:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:22:59 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:22:59 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:22:59 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:22:59 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:22:59 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:22:59 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:22:59 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:22:59 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:22:59 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5722c8c7, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5986b794, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1b7e8377, socketFactory=javax.net.DefaultSocketFactory@ee907bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:22:59 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:22:59 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:22:59 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1925162}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:22:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:22:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1616048, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:22:59 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:22:59 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:22:59 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:22:59 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:22:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:22:59 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2183816}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:22:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:22:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1132182, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:22:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:22:59 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:306541}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:22:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:22:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1531015, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:22:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:22:59 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1597690}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:22:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:22:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1451970, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:22:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 17:22:59 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1925163}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:22:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1925163}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:22:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:22:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:22:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:22:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:22:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:22:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:22:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:22:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:22:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:22:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:22:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:22:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:22:59 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:22:59 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:23:00 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-05 17:23:00 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-05 17:23:00 INFO WorkspaceExplorerServiceImpl:178 - end time - 66 msc 0 sec -2016-05-05 17:23:00 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:23:00 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 17:23:00 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 17:23:00 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 17:23:00 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-05 17:23:01 DEBUG command:56 - Command execution completed -2016-05-05 17:23:01 DEBUG command:56 - Command execution completed -2016-05-05 17:23:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1925163}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1925161}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:01 DEBUG command:56 - Command execution completed -2016-05-05 17:23:01 DEBUG command:56 - Command execution completed -2016-05-05 17:23:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1925161}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1925163}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:01 DEBUG command:56 - Command execution completed -2016-05-05 17:23:01 DEBUG command:56 - Command execution completed -2016-05-05 17:23:01 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 17:23:01 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-05 17:23:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1925163}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1925161}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:01 DEBUG command:56 - Command execution completed -2016-05-05 17:23:01 DEBUG command:56 - Command execution completed -2016-05-05 17:23:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1925161}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1925163}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:01 DEBUG command:56 - Command execution completed -2016-05-05 17:23:01 DEBUG command:56 - Command execution completed -2016-05-05 17:23:01 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1925161}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:01 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1925163}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:02 DEBUG query:56 - Query completed -2016-05-05 17:23:02 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-05 17:23:02 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2183815} -2016-05-05 17:23:02 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1597689} -2016-05-05 17:23:02 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:306540} -2016-05-05 17:23:02 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1925161}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:23:02 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1925161} -2016-05-05 17:23:02 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1925160} -2016-05-05 17:23:02 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:23:02 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 17:23:02 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 17:23:02 INFO WorkspaceExplorerServiceImpl:491 - returning size: 4033313 -2016-05-05 17:23:03 DEBUG query:56 - Query completed -2016-05-05 17:23:03 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-05 17:23:03 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2183816} -2016-05-05 17:23:03 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:306541} -2016-05-05 17:23:03 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1597690} -2016-05-05 17:23:03 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1925163}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:23:03 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1925163} -2016-05-05 17:23:03 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1925162} -2016-05-05 17:23:03 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:23:03 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-05 17:23:03 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-05 17:23:03 INFO WorkspaceExplorerServiceImpl:491 - returning size: 3902486 -2016-05-05 17:23:03 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:23:03 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:23:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:23:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:23:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:23:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:03 INFO WorkspaceExplorerServiceImpl:506 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:23:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:23:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:23:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:23:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:03 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:23:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:23:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:23:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:23:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:03 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:23:03 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:23:03 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:23:03 INFO WorkspaceExplorerServiceImpl:491 - returning size: 1951243 -2016-05-05 17:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:23:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:23:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:23:04 DEBUG DataMinerManagerServiceImpl:241 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-05 17:23:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:04 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:23:04 DEBUG ServiceEngine:193 - get() - start -2016-05-05 17:23:04 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:23:04 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:23:04 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-05 17:23:04 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-05 17:23:04 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:23:04 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 17:23:04 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-05 17:23:04 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:23:04 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:23:04 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:23:04 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-05 17:23:04 DEBUG Operation:173 - get(String) - start -2016-05-05 17:23:04 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:23:04 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:23:04 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:23:04 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:23:04 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:04 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:04 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:04 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5722c8c7, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5986b794, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1b7e8377, socketFactory=javax.net.DefaultSocketFactory@ee907bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:23:04 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:23:04 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:23:04 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:306543}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2114269, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:04 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:23:04 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:04 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1925165}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:04 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1567581, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:04 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:04 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2183817}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2015314, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:04 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1597691}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1622490, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-05 17:23:05 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1925166}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1925166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-05 17:23:07 DEBUG command:56 - Command execution completed -2016-05-05 17:23:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1925166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:07 DEBUG command:56 - Command execution completed -2016-05-05 17:23:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1925166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:07 DEBUG command:56 - Command execution completed -2016-05-05 17:23:07 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-05 17:23:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1925166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:07 DEBUG command:56 - Command execution completed -2016-05-05 17:23:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1925166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:07 DEBUG command:56 - Command execution completed -2016-05-05 17:23:07 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-05 17:23:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1925166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:07 DEBUG command:56 - Command execution completed -2016-05-05 17:23:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1925166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:07 DEBUG command:56 - Command execution completed -2016-05-05 17:23:07 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-05 17:23:07 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1925166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:07 DEBUG query:56 - Query completed -2016-05-05 17:23:07 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-05 17:23:07 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-05 17:23:07 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-05 17:23:07 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1925166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:23:14 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:23:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:23:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:23:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:23:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:23:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:23:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:14 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-05 17:23:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:23:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-05 17:23:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:23:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:23:14 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:23:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:23:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:23:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:23:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:23:14 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:23:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:23:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:23:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:23:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:23:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:23:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:23:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:23:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:23:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:23:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:23:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:23:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 17:23:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:23:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 17:23:14 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-05 17:23:14 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-05 17:23:14 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-05 17:23:14 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-05 17:23:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 17:23:14 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-05 17:23:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-05 17:23:14 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-05 17:23:14 INFO WorkspaceExplorerServiceImpl:138 - end time - 182 msc 0 sec -2016-05-05 17:23:14 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-05 17:23:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-05 17:23:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-05 17:23:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-05 17:23:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-05 17:23:19 DEBUG update:56 - Update completed -2016-05-05 17:23:19 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1925166}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 DEBUG query:56 - Query completed -2016-05-05 17:23:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:19 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-05 17:23:19 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-05 17:23:19 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-05 17:23:19 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-05 17:23:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:23:19 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:23:19 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-05 17:23:19 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-05 17:23:19 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-05 17:23:19 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:23:19 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-05 17:23:19 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-05 17:23:19 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:23:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:23:19 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:23:19 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:23:19 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:23:19 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:23:19 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:23:19 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:19 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:19 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:19 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5722c8c7, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5986b794, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1b7e8377, socketFactory=javax.net.DefaultSocketFactory@ee907bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:23:19 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:23:19 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:23:19 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:306546}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1354500, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:19 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:23:19 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:19 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:19 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1925168}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2183822}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1137835, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:19 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=887591, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:19 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1597696}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1315150, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 17:23:19 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1925169}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1925169}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 DEBUG command:56 - Command execution completed -2016-05-05 17:23:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1925169}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 DEBUG command:56 - Command execution completed -2016-05-05 17:23:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1925169}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 DEBUG command:56 - Command execution completed -2016-05-05 17:23:19 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-05 17:23:19 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-05 17:23:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1925169}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 DEBUG command:56 - Command execution completed -2016-05-05 17:23:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1925169}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 DEBUG command:56 - Command execution completed -2016-05-05 17:23:19 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-05 17:23:19 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1925169}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:19 DEBUG query:56 - Query completed -2016-05-05 17:23:19 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-05 17:23:19 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2183822} -2016-05-05 17:23:19 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:306546} -2016-05-05 17:23:19 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1597696} -2016-05-05 17:23:19 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1925169}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:23:19 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1925169} -2016-05-05 17:23:19 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1925168} -2016-05-05 17:23:19 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:23:19 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-05 17:23:19 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-05 17:23:19 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-05 17:23:19 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-05 17:23:19 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-05 17:23:19 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-05 17:23:19 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-05 17:23:19 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-05 17:23:21 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:23:21 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:23:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:23:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:23:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:23:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:21 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:23:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:23:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:23:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:23:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:23:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:23:21 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 17:23:21 DEBUG ServiceEngine:306 - get() - start -2016-05-05 17:23:21 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:23:21 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:23:21 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-05 17:23:21 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-05 17:23:21 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:23:21 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 17:23:21 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-05 17:23:21 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:23:21 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-05 17:23:21 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:23:21 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:23:21 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:23:21 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:23:21 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:23:21 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:23:21 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:21 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:21 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:21 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5722c8c7, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5986b794, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1b7e8377, socketFactory=javax.net.DefaultSocketFactory@ee907bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:23:21 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:23:21 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:23:21 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:306578}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:21 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=11479300, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:21 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:23:21 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:21 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=11.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:21 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:2183845}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:21 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:21 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1925218}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:21 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1035211, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=11.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=3370466, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:21 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=11.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:23:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:23:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:23:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:23:21 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:23:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:23:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:23:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:23:21 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:1597719}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:21 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1454183, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=11.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 17:23:21 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 17:23:21 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-05 17:23:21 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1925219}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:21 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1925219}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:21 INFO WorkspaceExplorerServiceImpl:178 - end time - 51 msc 0 sec -2016-05-05 17:23:21 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 17:23:21 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 17:23:21 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-05 17:23:21 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=9.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 17:23:21 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=9.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 17:23:22 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:23:22 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:23:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:23:22 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:23:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:23:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:22 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:23:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:23:22 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:23:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:23:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:22 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:23:22 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:23:22 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-05 17:23:22 DEBUG ServiceEngine:306 - get() - start -2016-05-05 17:23:22 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:23:22 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:23:22 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-05 17:23:22 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-05 17:23:22 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:23:22 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 17:23:22 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-05 17:23:22 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:23:22 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-05 17:23:22 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:23:22 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:23:22 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:23:22 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:23:22 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:23:22 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:23:22 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:22 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:22 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:23:22 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:23:22 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5722c8c7, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5986b794, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1b7e8377, socketFactory=javax.net.DefaultSocketFactory@ee907bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:23:22 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:23:22 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:23:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:23:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:23:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:23:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:23:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:22 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:23:22 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-05 17:23:22 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:306579}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:22 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:22 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1925220}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:22 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1241242, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:22 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:23:22 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1372029, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:22 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:22 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:22 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2183846}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:22 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:23 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1925166}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:23:23 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1925166} -2016-05-05 17:23:23 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:306543} -2016-05-05 17:23:23 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1597691} -2016-05-05 17:23:23 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2183817} -2016-05-05 17:23:23 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-05 17:23:23 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1925165} -2016-05-05 17:23:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=16653792, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=16.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:23 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-05 17:23:23 INFO WorkspaceExplorerServiceImpl:178 - end time - 64 msc 0 sec -2016-05-05 17:23:23 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1597720}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:23 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1442693, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=16.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-05 17:23:23 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-05 17:23:23 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1925221}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:23 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1925221}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:23 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 17:23:23 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 17:23:23 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 17:23:23 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-05 17:23:23 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=16.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-05 17:23:24 DEBUG command:56 - Command execution completed -2016-05-05 17:23:24 DEBUG command:56 - Command execution completed -2016-05-05 17:23:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1925219}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1925221}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:24 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:23:24 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:23:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:23:24 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:23:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:23:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:24 INFO WorkspaceExplorerServiceImpl:506 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:23:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:23:24 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:23:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:23:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:24 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:23:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:23:24 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:23:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:23:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:24 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:23:24 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:23:24 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:23:24 DEBUG command:56 - Command execution completed -2016-05-05 17:23:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1925221}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:24 DEBUG command:56 - Command execution completed -2016-05-05 17:23:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1925219}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:24 DEBUG command:56 - Command execution completed -2016-05-05 17:23:24 DEBUG command:56 - Command execution completed -2016-05-05 17:23:24 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-05 17:23:24 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 17:23:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1925221}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1925219}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:24 DEBUG command:56 - Command execution completed -2016-05-05 17:23:24 DEBUG command:56 - Command execution completed -2016-05-05 17:23:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1925219}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1925221}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:24 DEBUG command:56 - Command execution completed -2016-05-05 17:23:24 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1925219}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:24 DEBUG command:56 - Command execution completed -2016-05-05 17:23:24 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1925221}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:24 INFO WorkspaceExplorerServiceImpl:491 - returning size: 1951243 -2016-05-05 17:23:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:23:25 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:23:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:23:25 DEBUG DataMinerManagerServiceImpl:241 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-05 17:23:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:25 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:23:25 DEBUG ServiceEngine:193 - get() - start -2016-05-05 17:23:25 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:23:25 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:23:25 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-05 17:23:25 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-05 17:23:25 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:23:25 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 17:23:25 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-05 17:23:25 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:23:25 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:23:25 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:23:25 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-05 17:23:25 DEBUG Operation:173 - get(String) - start -2016-05-05 17:23:25 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:23:25 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:23:25 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:23:25 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:23:25 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:25 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:25 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:25 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5722c8c7, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5986b794, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1b7e8377, socketFactory=javax.net.DefaultSocketFactory@ee907bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:23:25 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:23:25 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:23:25 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1925224}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:25 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=884942, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:25 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:23:25 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:25 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:25 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:25 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2183848}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=870541, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:25 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:306581}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2827481, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:25 DEBUG query:56 - Query completed -2016-05-05 17:23:25 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-05 17:23:25 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:2183845} -2016-05-05 17:23:25 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:1597719} -2016-05-05 17:23:25 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1925219}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:23:25 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1925219} -2016-05-05 17:23:25 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:306578} -2016-05-05 17:23:25 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:23:25 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1925218} -2016-05-05 17:23:25 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 17:23:25 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-05 17:23:25 INFO WorkspaceExplorerServiceImpl:491 - returning size: 4033313 -2016-05-05 17:23:25 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1597721}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:25 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1327310, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 17:23:25 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1925225}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1925225}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:27 DEBUG command:56 - Command execution completed -2016-05-05 17:23:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1925225}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:27 DEBUG command:56 - Command execution completed -2016-05-05 17:23:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1925225}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:27 DEBUG command:56 - Command execution completed -2016-05-05 17:23:27 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-05 17:23:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1925225}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:27 DEBUG command:56 - Command execution completed -2016-05-05 17:23:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1925225}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:28 DEBUG command:56 - Command execution completed -2016-05-05 17:23:28 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-05 17:23:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1925225}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:28 DEBUG command:56 - Command execution completed -2016-05-05 17:23:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1925225}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:28 DEBUG command:56 - Command execution completed -2016-05-05 17:23:28 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-05 17:23:28 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1925225}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:28 DEBUG query:56 - Query completed -2016-05-05 17:23:28 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-05 17:23:28 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-05 17:23:28 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-05 17:23:28 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1925225}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:28 DEBUG query:56 - Query completed -2016-05-05 17:23:28 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-05 17:23:28 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2183846} -2016-05-05 17:23:28 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:306579} -2016-05-05 17:23:28 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1597720} -2016-05-05 17:23:28 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1925221}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:23:28 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1925221} -2016-05-05 17:23:28 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:23:28 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1925220} -2016-05-05 17:23:28 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-05 17:23:28 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-05 17:23:28 INFO WorkspaceExplorerServiceImpl:491 - returning size: 3902486 -2016-05-05 17:23:32 DEBUG update:56 - Update completed -2016-05-05 17:23:32 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1925225}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:32 DEBUG query:56 - Query completed -2016-05-05 17:23:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 17:23:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 17:23:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 17:23:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 17:23:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 17:23:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 17:23:32 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-05 17:23:32 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-05 17:23:32 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-05 17:23:32 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-05 17:23:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:23:32 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:23:32 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-05 17:23:32 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-05 17:23:32 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-05 17:23:32 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:23:32 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-05 17:23:32 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-05 17:23:32 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:23:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-05 17:23:32 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:23:32 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:23:32 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:23:32 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:23:32 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:23:32 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:32 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:32 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:32 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5722c8c7, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5986b794, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1b7e8377, socketFactory=javax.net.DefaultSocketFactory@ee907bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:23:32 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:23:32 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:23:32 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1925228}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:32 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1710133, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:32 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:23:32 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:32 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:32 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:32 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:306583}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:32 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1124857, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:32 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2183849}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:32 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=902010, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:32 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1597723}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:32 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1899054, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-05 17:23:32 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1925229}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1925229}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:32 DEBUG command:56 - Command execution completed -2016-05-05 17:23:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1925229}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:32 DEBUG command:56 - Command execution completed -2016-05-05 17:23:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1925229}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:23:33 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:23:35 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 17:23:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 17:23:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 17:23:35 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-05 17:23:35 DEBUG command:56 - Command execution completed -2016-05-05 17:23:35 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-05 17:23:35 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-05 17:23:35 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1925229}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:35 DEBUG command:56 - Command execution completed -2016-05-05 17:23:35 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1925229}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:35 DEBUG command:56 - Command execution completed -2016-05-05 17:23:35 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-05 17:23:35 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1925229}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:35 DEBUG query:56 - Query completed -2016-05-05 17:23:35 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-05 17:23:35 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2183849} -2016-05-05 17:23:35 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:306583} -2016-05-05 17:23:35 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1925229}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:23:35 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1925229} -2016-05-05 17:23:35 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1597723} -2016-05-05 17:23:35 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:23:35 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1925228} -2016-05-05 17:23:35 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-05 17:23:35 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-05 17:23:35 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-05 17:23:35 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-05 17:23:35 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-05 17:23:35 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-05 17:23:35 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-05 17:23:35 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-05 17:23:40 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2183848} -2016-05-05 17:23:40 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1597721} -2016-05-05 17:23:40 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:306581} -2016-05-05 17:23:40 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1925225}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:23:40 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1925225} -2016-05-05 17:23:40 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1925224} -2016-05-05 17:23:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:23:44 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:23:44 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:23:44 DEBUG DataMinerManagerServiceImpl:134 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[TabularListParameter [value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=h1|h2, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]], hasImage=false]] -2016-05-05 17:23:44 DEBUG WPS2SM:325 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-05 17:23:44 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-05 17:23:44 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-05 17:23:44 DEBUG WPS2SM:208 - Default Schema: null -2016-05-05 17:23:44 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-05 17:23:44 DEBUG WPS2SM:235 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-05 17:23:44 DEBUG WPS2SM:236 - Machter find: true -2016-05-05 17:23:44 DEBUG WPS2SM:237 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-05 17:23:44 DEBUG WPS2SM:239 - Machter start: 31 -2016-05-05 17:23:44 DEBUG WPS2SM:241 - Machter end: 97 -2016-05-05 17:23:44 DEBUG WPS2SM:242 - Machter Group Count: 1 -2016-05-05 17:23:44 DEBUG WPS2SM:245 - Matcher separator: | -2016-05-05 17:23:44 DEBUG WPS2SM:339 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-05 17:23:44 DEBUG WPS2SM:340 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-05 17:23:44 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 17:23:44 DEBUG SClient4WPS:683 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-05 17:23:44 DEBUG WPS2SM:300 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-05 17:23:44 DEBUG WPS2SM:92 - WPS type: -2016-05-05 17:23:44 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-05 17:23:44 DEBUG WPS2SM:100 - Guessed default value: -2016-05-05 17:23:44 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-05 17:23:44 DEBUG WPS2SM:149 - Machter find: true -2016-05-05 17:23:44 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-05 17:23:44 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-05 17:23:44 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-05 17:23:44 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-05 17:23:44 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-05 17:23:44 DEBUG WPS2SM:339 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-05 17:23:44 DEBUG WPS2SM:340 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-05 17:23:44 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-05 17:23:44 DEBUG SClient4WPS:683 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-05 17:23:44 DEBUG SClient4WPS:691 - UserInputs[key=HCAF_Table_List, value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0] -2016-05-05 17:23:44 DEBUG SClient4WPS:691 - UserInputs[key=HCAF_Table_Names, value=h1|h2] -2016-05-05 17:23:44 DEBUG SClient4WPS:744 - Configuring Complex: HCAF_Table_List to: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-05 17:23:44 DEBUG StorageUtil:291 - SaveOnStorageInTemporalFile() -2016-05-05 17:23:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec in thread 36 -2016-05-05 17:23:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:23:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 17:23:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 22 ms -2016-05-05 17:23:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:23:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:23:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-05 17:23:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 25 ms -2016-05-05 17:23:44 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube/devsec/devVRE -2016-05-05 17:23:44 INFO ISClientConnector:61 - ISCACHE: ELEMENT EXTRACTED -2016-05-05 17:23:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:23:44 DEBUG StorageClient:517 - set scope: /gcube/devsec/devVRE -2016-05-05 17:23:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:23:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 17:23:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 17:23:45 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-05 17:23:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:23:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:23:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:23:45 DEBUG ServiceEngine:347 - put() - start -2016-05-05 17:23:45 INFO ServiceEngine:34 - file gCube parameter costructor: null null -2016-05-05 17:23:45 INFO ServiceEngine:44 - file gCube parameter before: null null -2016-05-05 17:23:45 DEBUG BucketCoding:32 - Coding name: path: /DataMiner/AlgoritmsParameters/P_20160505_172344_74.xml rootArea /VOLATILE/gcube/devsec/devVRE/public/ -2016-05-05 17:23:45 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:23:45 DEBUG ServiceEngine:62 - path(String) - name: P_20160505_172344_74.xml -2016-05-05 17:23:45 DEBUG ServiceEngine:72 - path(String) - path: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/ -2016-05-05 17:23:45 INFO ServiceEngine:52 - file gCube parameter after: null null -2016-05-05 17:23:45 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:23:45 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-05 17:23:45 INFO OperationFactory:39 - getOperation(String) - start upload -2016-05-05 17:23:45 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:23:45 DEBUG DirectoryBucket:35 - DirectoryBucket PATH: /DataMiner/AlgoritmsParameters/P_20160505_172344_74.xml -2016-05-05 17:23:45 DEBUG BucketCoding:32 - Coding name: path: /DataMiner/AlgoritmsParameters/P_20160505_172344_74.xml rootArea /VOLATILE/gcube/devsec/devVRE/public/ -2016-05-05 17:23:45 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:23:45 DEBUG Upload:45 - UPLOAD null author: DataMiner -2016-05-05 17:23:45 DEBUG Operation:98 - put(MyFile, boolean, boolean) - start -2016-05-05 17:23:45 DEBUG Operation:104 - file size: 1 -2016-05-05 17:23:45 DEBUG Operation:108 - PUT is chukn? false -2016-05-05 17:23:45 DEBUG Operation:122 - put(MyFile, boolean, boolean) - encode length: 1 -2016-05-05 17:23:45 DEBUG Operation:128 - len File: 1 len chunk: 1 -2016-05-05 17:23:45 DEBUG Operation:131 - put(MyFile, boolean, boolean) - number of chunks: 1 -2016-05-05 17:23:45 DEBUG Operation:139 - put(MyFile, boolean, boolean) - number of thread: 1 -2016-05-05 17:23:45 DEBUG Operation:143 - consumer have a bucket name: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_172344_74.xml -2016-05-05 17:23:45 DEBUG Operation:157 - NO THREAD POOL USED -2016-05-05 17:23:45 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:23:45 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:23:45 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:23:45 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:23:45 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:45 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:45 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:45 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5722c8c7, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5986b794, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1b7e8377, socketFactory=javax.net.DefaultSocketFactory@ee907bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:23:45 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:23:45 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:23:45 INFO connection:71 - Opened connection [connectionId{localValue:41, serverValue:306590}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1062466, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:45 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:23:45 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:45 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:45 INFO connection:71 - Opened connection [connectionId{localValue:42, serverValue:1925238}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:45 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:45 INFO connection:71 - Opened connection [connectionId{localValue:44, serverValue:2183857}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=729926, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1270697, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:45 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:45 INFO connection:71 - Opened connection [connectionId{localValue:43, serverValue:1597732}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:45 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1792585, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-05 17:23:45 INFO connection:71 - Opened connection [connectionId{localValue:45, serverValue:1925239}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1925239}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-05 17:23:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-05 17:23:46 DEBUG command:56 - Command execution completed -2016-05-05 17:23:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1925239}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG command:56 - Command execution completed -2016-05-05 17:23:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1925239}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG command:56 - Command execution completed -2016-05-05 17:23:46 INFO DefaultMongoClient:165 - MongoClient put method: OperationDefinition [operation=UPLOAD, localResource=INPUT_STREAM, remoteResource=PATH] -2016-05-05 17:23:46 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_172344_74.xml -2016-05-05 17:23:46 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1925239}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG command:56 - Command execution completed -2016-05-05 17:23:46 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1925239}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG command:56 - Command execution completed -2016-05-05 17:23:46 INFO MongoIO:168 - remote object is not a validID : /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_172344_74.xml -2016-05-05 17:23:46 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1925239}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG query:56 - Query completed -2016-05-05 17:23:46 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1925239}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG query:56 - Query completed -2016-05-05 17:23:46 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1925239}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG query:56 - Query completed -2016-05-05 17:23:46 INFO MongoIO:188 - object not found -2016-05-05 17:23:46 INFO DefaultMongoClient:189 - create new file /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_172344_74.xml -2016-05-05 17:23:46 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1925239}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG query:56 - Query completed -2016-05-05 17:23:46 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1925239}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG query:56 - Query completed -2016-05-05 17:23:46 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1925239}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG query:56 - Query completed -2016-05-05 17:23:46 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1925239}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG query:56 - Query completed -2016-05-05 17:23:46 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1925239}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG query:56 - Query completed -2016-05-05 17:23:46 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1925239}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG query:56 - Query completed -2016-05-05 17:23:46 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1925239}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG query:56 - Query completed -2016-05-05 17:23:46 DEBUG connection:56 - Closing connection connectionId{localValue:44, serverValue:2183857} -2016-05-05 17:23:46 DEBUG connection:56 - Closing connection connectionId{localValue:41, serverValue:306590} -2016-05-05 17:23:46 INFO connection:71 - Closed connection [connectionId{localValue:45, serverValue:1925239}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:23:46 DEBUG connection:56 - Closing connection connectionId{localValue:45, serverValue:1925239} -2016-05-05 17:23:46 DEBUG connection:56 - Closing connection connectionId{localValue:43, serverValue:1597732} -2016-05-05 17:23:46 DEBUG connection:56 - Closing connection connectionId{localValue:42, serverValue:1925238} -2016-05-05 17:23:46 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:23:46 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:23:46 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:46 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:46 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:46 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5722c8c7, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5986b794, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1b7e8377, socketFactory=javax.net.DefaultSocketFactory@ee907bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:23:46 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:23:46 INFO cluster:71 - No server chosen by ReadPreferenceServerSelector{readPreference=primaryPreferred} from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:23:46 INFO connection:71 - Opened connection [connectionId{localValue:46, serverValue:306591}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=3353856, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:46 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:23:46 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:46 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:23:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:46 INFO connection:71 - Opened connection [connectionId{localValue:47, serverValue:1925241}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1497686, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:46 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:46 INFO connection:71 - Opened connection [connectionId{localValue:49, serverValue:2183859}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:46 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:47 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1101701, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:23:47 INFO connection:71 - Opened connection [connectionId{localValue:48, serverValue:1597733}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:47 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:47 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1113633, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:23:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-05 17:23:47 INFO connection:71 - Opened connection [connectionId{localValue:50, serverValue:306592}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:47 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:306592}] to server mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:23:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:23:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-05 17:23:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:23:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-05 17:23:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-05 17:23:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:23:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-05 17:24:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:24:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-05 17:24:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:24:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-05 17:24:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-05 17:24:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:24:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 17:24:17 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:24:17 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:17 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:24:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 17:24:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 17:24:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-05 17:24:17 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:24:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-05 17:24:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:24:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:24:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-05 17:24:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-05 17:24:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-05 17:24:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:24:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 17:24:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:24:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:24:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:24:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:24:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 17:24:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 17:24:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 17:24:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:24:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-05 17:24:37 DEBUG command:56 - Command execution completed -2016-05-05 17:24:37 INFO connection:71 - Opened connection [connectionId{localValue:51, serverValue:1925273}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:51, serverValue:1925273}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:37 DEBUG command:56 - Command execution completed -2016-05-05 17:24:37 INFO DefaultMongoClient:1491 - set last operation: UPLOAD -2016-05-05 17:24:37 DEBUG insert:56 - Inserting 1 documents into namespace remotefs.fs.chunks on connection [connectionId{localValue:51, serverValue:1925273}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:41 DEBUG insert:56 - Insert completed -2016-05-05 17:24:41 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:51, serverValue:1925273}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:41 DEBUG update:56 - Update completed -2016-05-05 17:24:41 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:51, serverValue:1925273}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:41 DEBUG update:56 - Update completed -2016-05-05 17:24:41 DEBUG DefaultMongoClient:957 - Directory: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/ -2016-05-05 17:24:41 DEBUG DefaultMongoClient:960 - ObjectId: 572b65b548434a672cb60b61 -2016-05-05 17:24:41 INFO connection:71 - Closed connection [connectionId{localValue:50, serverValue:306592}] to mongo2-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:24:41 DEBUG connection:56 - Closing connection connectionId{localValue:50, serverValue:306592} -2016-05-05 17:24:41 DEBUG connection:56 - Closing connection connectionId{localValue:49, serverValue:2183859} -2016-05-05 17:24:41 DEBUG connection:56 - Closing connection connectionId{localValue:46, serverValue:306591} -2016-05-05 17:24:41 INFO connection:71 - Closed connection [connectionId{localValue:51, serverValue:1925273}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:24:41 DEBUG connection:56 - Closing connection connectionId{localValue:48, serverValue:1597733} -2016-05-05 17:24:41 DEBUG connection:56 - Closing connection connectionId{localValue:51, serverValue:1925273} -2016-05-05 17:24:41 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:24:41 DEBUG connection:56 - Closing connection connectionId{localValue:47, serverValue:1925241} -2016-05-05 17:24:41 INFO DefaultMongoClient:863 - new file created with id: 572b65b548434a672cb60b61 -2016-05-05 17:24:41 DEBUG StorageUtil:300 - Storage id: 572b65b548434a672cb60b61 -2016-05-05 17:24:41 INFO ServiceEngine:34 - file gCube parameter costructor: public /gcube/devsec/devVRE -2016-05-05 17:24:41 INFO ServiceEngine:44 - file gCube parameter before: public /gcube/devsec/devVRE -2016-05-05 17:24:41 DEBUG BucketCoding:32 - Coding name: path: /DataMiner/AlgoritmsParameters/P_20160505_172344_74.xml rootArea /VOLATILE/gcube/devsec/devVRE/public/ -2016-05-05 17:24:41 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:24:41 DEBUG ServiceEngine:62 - path(String) - name: P_20160505_172344_74.xml -2016-05-05 17:24:41 DEBUG ServiceEngine:72 - path(String) - path: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/ -2016-05-05 17:24:41 INFO ServiceEngine:52 - file gCube parameter after: public /gcube/devsec/devVRE -2016-05-05 17:24:41 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-05 17:24:41 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= public file..getGcubeAccessType() public -2016-05-05 17:24:41 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-05 17:24:41 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-05 17:24:41 DEBUG BucketCoding:32 - Coding name: path: /DataMiner/AlgoritmsParameters/P_20160505_172344_74.xml rootArea /VOLATILE/gcube/devsec/devVRE/public/ -2016-05-05 17:24:41 DEBUG BucketCoding:42 - coding name done -2016-05-05 17:24:41 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-05 17:24:41 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-05 17:24:41 DEBUG MongoIO:77 - open mongo connection -2016-05-05 17:24:41 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-05 17:24:41 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:24:41 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:24:41 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:24:41 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5722c8c7, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5986b794, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1b7e8377, socketFactory=javax.net.DefaultSocketFactory@ee907bb, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-05 17:24:41 INFO MongoIO:106 - new mongo connection pool opened -2016-05-05 17:24:41 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-05 17:24:41 INFO connection:71 - Opened connection [connectionId{localValue:53, serverValue:1925305}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:41 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:41 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=5424709, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:24:41 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-05 17:24:41 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:24:41 INFO connection:71 - Opened connection [connectionId{localValue:52, serverValue:306636}] to mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:24:41 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-05 17:24:41 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-05 17:24:41 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:24:41 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2498176, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:24:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:24:41 INFO connection:71 - Opened connection [connectionId{localValue:55, serverValue:2183892}] to mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:24:41 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-05 17:24:41 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=818487, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:24:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-05 17:24:41 INFO connection:71 - Opened connection [connectionId{localValue:56, serverValue:1925307}] to mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:41 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:56, serverValue:1925307}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:41 INFO connection:71 - Opened connection [connectionId{localValue:54, serverValue:1597767}] to mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:24:41 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-05 17:24:41 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1553788, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-05 17:24:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-05 17:24:42 DEBUG command:56 - Command execution completed -2016-05-05 17:24:42 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:56, serverValue:1925307}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:42 DEBUG command:56 - Command execution completed -2016-05-05 17:24:42 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:56, serverValue:1925307}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:42 DEBUG command:56 - Command execution completed -2016-05-05 17:24:42 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_172344_74.xml -2016-05-05 17:24:42 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_172344_74.xml -2016-05-05 17:24:42 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:56, serverValue:1925307}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:42 DEBUG command:56 - Command execution completed -2016-05-05 17:24:42 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:56, serverValue:1925307}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:42 DEBUG command:56 - Command execution completed -2016-05-05 17:24:42 INFO MongoIO:168 - remote object is not a validID : /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_172344_74.xml -2016-05-05 17:24:42 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:56, serverValue:1925307}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-05 17:24:42 DEBUG query:56 - Query completed -2016-05-05 17:24:42 INFO MongoIO:186 - object found P_20160505_172344_74.xml -2016-05-05 17:24:42 DEBUG connection:56 - Closing connection connectionId{localValue:55, serverValue:2183892} -2016-05-05 17:24:42 DEBUG connection:56 - Closing connection connectionId{localValue:52, serverValue:306636} -2016-05-05 17:24:42 INFO connection:71 - Closed connection [connectionId{localValue:56, serverValue:1925307}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-05 17:24:42 DEBUG connection:56 - Closing connection connectionId{localValue:56, serverValue:1925307} -2016-05-05 17:24:42 DEBUG connection:56 - Closing connection connectionId{localValue:54, serverValue:1597767} -2016-05-05 17:24:42 INFO MongoIO:508 - Mongo has been closed -2016-05-05 17:24:42 DEBUG connection:56 - Closing connection connectionId{localValue:53, serverValue:1925305} -2016-05-05 17:24:42 DEBUG Operation:81 - PATH /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160505_172344_74.xml -2016-05-05 17:24:42 INFO Operation:55 - URL generated: smp://data-d.d4science.org/q0Rhfy1Dm1j5FYtpis6GFO31iRDxZag0GmbP5+HKCzc= -2016-05-05 17:24:42 INFO Operation:57 - URL generated: smp://data-d.d4science.org/q0Rhfy1Dm1j5FYtpis6GFO31iRDxZag0GmbP5+HKCzc= -2016-05-05 17:24:42 DEBUG Operation:87 - translating: http://data-d.d4science.org/q0Rhfy1Dm1j5FYtpis6GFO31iRDxZag0GmbP5+HKCzc= -2016-05-05 17:24:42 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-05 17:24:42 DEBUG Operation:93 - get params: http://data-d.d4science.org/ q0Rhfy1Dm1j5FYtpis6GFO31iRDxZag0GmbP5+HKCzc= -2016-05-05 17:24:42 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/cTBSaGZ5MURtMWo1Rll0cGlzNkdGTzMxaVJEeFphZzBHbWJQNStIS0N6Yz0 -2016-05-05 17:24:42 INFO Operation:65 - URL translated: http://data-d.d4science.org/cTBSaGZ5MURtMWo1Rll0cGlzNkdGTzMxaVJEeFphZzBHbWJQNStIS0N6Yz0 -2016-05-05 17:24:42 DEBUG StorageUtil:302 - Storage public link: http://data-d.d4science.org/cTBSaGZ5MURtMWo1Rll0cGlzNkdGTzMxaVJEeFphZzBHbWJQNStIS0N6Yz0 -2016-05-05 17:24:42 DEBUG SClient4WPS:727 - Configuring Literal: HCAF_Table_Names to: h1|h2 -2016-05-05 17:24:42 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 17:24:43 DEBUG SClient4WPS:388 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - - - HCAF_Table_List - - - - HCAF_Table_Names - - h1|h2 - - - - - - - non_deterministic_output - - - - -2016-05-05 17:24:43 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-05 17:24:43 DEBUG SClient4WPS:415 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:24:43 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 17:24:43 DEBUG SClient4WPS:787 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:24:43 DEBUG SClient4WPS:697 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:24:43 DEBUG SClient4WPS:708 - ComputationId: ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:24:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:24:53 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:24:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:24:53 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:24:53 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:24:53 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:24:53 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:24:53 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:24:53 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:24:53 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:24:53 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:24:53 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:24:53 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:25:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:25:03 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:25:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:25:03 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:25:03 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:25:03 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:25:03 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:25:03 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:25:03 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:25:03 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:25:03 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:25:03 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:25:03 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:25:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:25:13 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:25:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:25:13 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:25:13 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:25:13 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:25:13 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:25:13 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:25:13 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:25:13 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:25:13 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:25:13 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:25:13 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:25:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:25:23 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:25:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:25:23 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:25:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:25:23 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:25:23 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:25:23 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:25:23 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:25:23 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:25:23 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:25:23 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:25:23 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:25:23 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:25:23 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:25:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:25:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:25:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:25:33 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:25:33 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:25:33 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:25:33 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:25:33 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:25:33 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:25:33 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:25:33 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:25:33 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:25:33 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:25:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:25:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:25:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:25:43 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:25:43 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:25:43 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:25:43 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:25:43 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:25:43 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:25:43 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:25:43 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:25:43 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:25:43 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:25:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:25:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:25:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:25:53 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:25:53 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:25:53 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:25:53 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:25:53 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:25:53 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:25:53 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:25:53 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:25:53 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:25:53 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:26:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:26:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:26:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:26:03 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:26:03 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:26:03 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:26:03 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:26:03 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:26:03 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:26:03 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:26:03 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:26:03 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:26:03 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:26:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:26:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:26:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:26:13 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:26:13 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:26:13 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:26:13 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:26:13 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:26:13 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:26:13 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:26:13 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:26:13 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:26:13 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:26:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:26:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:26:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:26:23 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:26:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:26:23 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:26:23 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:26:23 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:26:23 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:26:23 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:26:23 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:26:23 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:26:23 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:26:23 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:26:23 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:26:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:26:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:26:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:26:33 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:26:33 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:26:33 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:26:33 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:26:33 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:26:33 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:26:33 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:26:33 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:26:33 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:26:33 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:26:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:26:43 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:26:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:26:43 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:26:43 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:26:43 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:26:43 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:26:43 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:26:43 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:26:43 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:26:43 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:26:43 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:26:43 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:26:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:26:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:26:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:26:53 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:26:53 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:26:53 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:26:53 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:26:53 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:26:53 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:26:53 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:26:53 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:26:53 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:26:53 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:27:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:27:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:27:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:27:03 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:27:03 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:27:03 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:27:03 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:27:03 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:27:03 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:27:03 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:27:03 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:27:03 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:27:03 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:27:13 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:27:13 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:27:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:27:13 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:27:13 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:27:13 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:27:13 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:27:13 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:27:13 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:27:13 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:27:13 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:27:13 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:27:13 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:27:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:27:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:27:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:27:23 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:27:23 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:27:23 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:27:23 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:27:23 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:27:23 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:27:23 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:27:23 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:27:23 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:27:23 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:27:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:27:33 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:27:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:27:33 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:27:33 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:27:33 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:27:33 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:27:33 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:27:33 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:27:33 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:27:33 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:27:33 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:27:33 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:27:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:27:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:27:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:27:43 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:27:43 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:27:43 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:27:43 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:27:43 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:27:43 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:27:43 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:27:43 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:27:43 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:27:43 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:27:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:27:53 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:27:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:27:53 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:27:53 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:27:53 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:27:53 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:27:53 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:27:53 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:27:53 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:27:53 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:27:53 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:27:53 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:28:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:28:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:28:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:28:03 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:28:03 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:28:03 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:28:03 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:28:03 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:28:03 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:28:03 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:28:03 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:28:03 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:28:03 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:28:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:28:08 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:28:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:28:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:28:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:28:13 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:28:13 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:28:13 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:28:13 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:28:13 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:28:13 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:28:13 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:28:13 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:28:13 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:28:13 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:28:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:28:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:28:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:28:23 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:28:23 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:28:23 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:28:23 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:28:23 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:28:23 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:28:23 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:28:23 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:28:23 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:28:23 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:28:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:28:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:28:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:28:33 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:28:33 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:28:33 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:28:33 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:28:33 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:28:33 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:28:33 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:28:33 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:28:33 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:28:33 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:28:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:28:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:28:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:28:43 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:28:43 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:28:43 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:28:43 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:28:43 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:28:43 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:28:43 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:28:43 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:28:43 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:28:43 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:28:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:28:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:28:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:28:53 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:28:53 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:28:53 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:28:53 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:28:53 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:28:53 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:28:53 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:28:53 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:28:53 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:28:53 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:29:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:29:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:29:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:29:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:29:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:29:03 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:29:03 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:29:03 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:29:03 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:29:03 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:29:03 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:29:03 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:29:03 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:29:03 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:29:03 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:29:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:29:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:29:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:29:13 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:29:13 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:29:13 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:29:13 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:29:13 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:29:13 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:29:13 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:29:13 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:29:13 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:29:13 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:29:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:29:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:29:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:29:23 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:29:23 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:29:23 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:29:23 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:29:23 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:29:23 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:29:23 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:29:23 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:29:23 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:29:23 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:29:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:29:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:29:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:29:33 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:29:33 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:29:33 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:29:33 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:29:33 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:29:33 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:29:33 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:29:33 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:29:33 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:29:33 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:29:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:29:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:29:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:29:43 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:29:43 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:29:43 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:29:43 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:29:43 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:29:43 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:29:43 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:29:43 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:29:43 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:29:43 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:29:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:29:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:29:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:29:53 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:29:53 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:29:53 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:29:53 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:29:53 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:29:53 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:29:53 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:29:53 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:29:53 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:29:53 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:29:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:29:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:30:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:30:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:30:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:30:03 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:30:03 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:30:03 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:30:03 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:30:03 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:30:03 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:30:03 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:30:03 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:30:03 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:30:03 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:30:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:30:13 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:30:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:30:13 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:30:13 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:30:13 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:30:13 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:30:13 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:30:13 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:30:13 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:30:13 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:30:13 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:30:13 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:30:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:30:23 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:30:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:30:23 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:30:23 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:30:23 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:30:23 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:30:23 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:30:23 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:30:23 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:30:23 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:30:23 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:30:23 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:30:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:30:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:30:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:30:33 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:30:33 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:30:33 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:30:33 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:30:33 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:30:33 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:30:33 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:30:33 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:30:33 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:30:33 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:30:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:30:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:30:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:30:43 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:30:43 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:30:43 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:30:43 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:30:43 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:30:43 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:30:43 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:30:43 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:30:43 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:30:43 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:30:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:30:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:30:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:30:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:30:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:30:53 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:30:53 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:30:53 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:30:53 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:30:53 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:30:53 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:30:53 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:30:53 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:30:53 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:30:53 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:31:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:31:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:31:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:31:03 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:31:03 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:31:03 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:31:03 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:31:03 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:31:03 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:31:03 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:31:03 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:31:03 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:31:03 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:31:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:31:13 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:31:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:31:13 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:31:13 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:31:13 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:31:13 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:31:13 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:31:13 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:31:13 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:31:13 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:31:13 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:31:13 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:31:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:31:23 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:31:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:31:23 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:31:23 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:31:23 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:31:23 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:31:23 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:31:23 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:31:23 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:31:23 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:31:23 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:31:23 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:31:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:31:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:31:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:31:33 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:31:33 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:31:33 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:31:33 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:31:33 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:31:33 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:31:33 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:31:33 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:31:33 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:31:33 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:31:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:31:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:31:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:31:43 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:31:43 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:31:43 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:31:43 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:31:43 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:31:43 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:31:43 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:31:43 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:31:43 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:31:43 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:31:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:31:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:31:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:31:53 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:31:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:31:53 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:31:53 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:31:53 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:31:53 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:31:53 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:31:53 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:31:53 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:31:53 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:31:53 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:31:53 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:32:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:32:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:32:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:32:03 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:32:03 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:32:03 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:32:03 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:32:03 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:32:03 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:32:03 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:32:03 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:32:03 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:32:03 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:32:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:32:13 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:32:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:32:13 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:32:13 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:32:13 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:32:13 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:32:13 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:32:13 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:32:13 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:32:13 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:32:13 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:32:13 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:32:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:32:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:32:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:32:23 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:32:23 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:32:23 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:32:23 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:32:23 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:32:23 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:32:23 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:32:23 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:32:23 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:32:23 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:32:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:32:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:32:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:32:33 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:32:33 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:32:33 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:32:33 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:32:33 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:32:33 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:32:33 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:32:33 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:32:33 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:32:33 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:32:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:32:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:32:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:32:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:32:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:32:43 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:32:43 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:32:43 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:32:43 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:32:43 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:32:43 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:32:43 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:32:43 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:32:43 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:32:43 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:32:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:32:53 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:32:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:32:53 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:32:53 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:32:53 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:32:53 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:32:53 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:32:53 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:32:53 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:32:53 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:32:53 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:32:53 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:33:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:33:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:33:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:33:03 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:33:03 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:33:03 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:33:03 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:33:03 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:33:03 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:33:03 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:33:03 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:33:03 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:33:03 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:33:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:33:13 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:33:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:33:13 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:33:13 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:33:13 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:33:13 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:33:13 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:33:13 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:33:13 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:33:13 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:33:13 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:33:13 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:33:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:33:23 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:33:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:33:23 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:33:23 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:33:23 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:33:23 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:33:23 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:33:23 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:33:23 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:33:23 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:33:23 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:33:23 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:33:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:33:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:33:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:33:33 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:33:33 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:33:33 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:33:33 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:33:33 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:33:33 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:33:33 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:33:33 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:33:33 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:33:33 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:33:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:33:38 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:33:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:33:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:33:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:33:43 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:33:43 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:33:43 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:33:43 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:33:43 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:33:43 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:33:43 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:33:43 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:33:43 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:33:43 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:33:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:33:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:33:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:33:53 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:33:53 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:33:53 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:33:53 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:33:53 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:33:53 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:33:53 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:33:53 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:33:53 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:33:53 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:34:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:34:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:34:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:34:03 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:34:03 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:34:03 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:34:03 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:34:03 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:34:03 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:34:03 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:34:03 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:34:03 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:34:03 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:34:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:34:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:34:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:34:13 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:34:13 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:34:13 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:34:13 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:34:13 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:34:13 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:34:13 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:34:13 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - -2016-05-05 17:34:13 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-05 17:34:13 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-05 17:34:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:34:23 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:34:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 17:34:23 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=fc97d7d8-198d-402c-bdf8-d2913da66f0b, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b] -2016-05-05 17:34:23 INFO StatWPSClientSession:114 - CONNECT -2016-05-05 17:34:23 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-05 17:34:23 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=fc97d7d8-198d-402c-bdf8-d2913da66f0b -2016-05-05 17:34:23 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 17:34:23 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-05 17:34:23 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-05 17:34:23 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - - - - java.lang.RuntimeException: Server returned HTTP response code: 502 for URL: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 - - - - - -2016-05-05 17:34:23 DEBUG SClient4WPS:862 - WPS FAILURE: - - java.lang.RuntimeException: Server returned HTTP response code: 502 for URL: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 - - OR PAUSED: null -2016-05-05 17:34:23 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=100.0, status=FAILED, endDate=null, message=null, errResource=null] -2016-05-05 17:34:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:34:33 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:35:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 17:35:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 17:36:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:36:23 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:37:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:37:18 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:38:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:38:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:39:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:39:08 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:40:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:40:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:40:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:40:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:41:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:41:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:42:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:42:48 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:43:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:43:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:44:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:44:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:45:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:45:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:46:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:46:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:47:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:47:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:48:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 17:48:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 17:49:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 17:49:13 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:50:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 17:50:08 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 17:51:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 17:51:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 17:51:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 17:51:58 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 17:52:53 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 17:52:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 17:52:53 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 17:52:53 WARN SessionCheckerServiceImpl:80 - Scope is null at Thu May 05 17:52:53 CEST 2016 -2016-05-05 17:52:53 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 18:24:38 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-05 18:24:38 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-05 18:24:38 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-05 18:24:38 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 18:24:38 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 18:24:38 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 18:24:38 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 18:24:38 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@6a010c1c -2016-05-05 18:24:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 18:24:38 INFO ASLSession:352 - Logging the entrance -2016-05-05 18:24:38 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 18:24:38 DEBUG TemplateModel:83 - 2016-05-05 18:24:38, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 18:24:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 18:24:38 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-05 18:24:40 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 18:24:40 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 18:24:40 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 18:24:40 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 18:24:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 18:24:40 INFO ASLSession:352 - Logging the entrance -2016-05-05 18:24:40 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 18:24:40 DEBUG TemplateModel:83 - 2016-05-05 18:24:40, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 18:24:40 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 18:24:41 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 18:24:41 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 141 ms -2016-05-05 18:24:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-05 18:24:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-05 18:24:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-05 18:24:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-05 18:24:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-05 18:24:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-05 18:24:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-05 18:24:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-05 18:24:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-05 18:24:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-05 18:24:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-05 18:24:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-05 18:24:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-05 18:24:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-05 18:24:41 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-05 18:24:41 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:24:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 18:24:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@57dbb243 -2016-05-05 18:24:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@86bb0b1 -2016-05-05 18:24:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@2e9d6095 -2016-05-05 18:24:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@3768a6a -2016-05-05 18:24:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 97 ms -2016-05-05 18:24:41 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-05 18:24:41 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-05 18:24:41 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 18:24:41 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-05 18:24:41 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-05 18:24:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 18:24:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:24:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-05 18:24:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 26 ms -2016-05-05 18:24:41 DEBUG SClient4WPS:118 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-05 18:24:41 INFO SClient4WPS:123 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 18:24:41 DEBUG SClient4WPS:134 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-05 18:24:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 18:24:42 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 18:24:42 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 18:24:42 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 18:24:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 18:24:42 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 18:24:42 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 18:24:42 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-05 18:24:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:24:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:24:42 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-05 18:24:42 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-05 18:24:42 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-05 18:24:42 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-05 18:24:42 DEBUG JCRRepository:271 - Initialize repository -2016-05-05 18:24:42 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-05 18:24:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-05 18:24:42 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:24:42 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-05 18:24:42 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 81 ms -2016-05-05 18:24:42 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-05 18:24:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 18:24:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:24:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:24:42 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-05 18:24:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:24:42 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-05 18:24:42 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 18:24:42 DEBUG SClient4WPS:255 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-05 18:24:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 18:24:43 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 18:24:43 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-05 18:24:43 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 18:24:43 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 18:24:43 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-05 18:24:43 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-05 18:24:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:24:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:24:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:24:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:24:43 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 18:24:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-05 18:24:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:24:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:24:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:24:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:24:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:24:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:24:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:24:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:24:43 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 18:24:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-05 18:24:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:24:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:24:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:24:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:24:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:24:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:24:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:24:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:24:43 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 18:24:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-05 18:24:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:24:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:24:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:24:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:24:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:24:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:24:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:24:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:24:43 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 18:24:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-05 18:24:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:24:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:24:44 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 18:24:44 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 18:24:44 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 18:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:24:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 18:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:24:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:24:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:24:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:24:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:24:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:24:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:24:44 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-05 18:24:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:24:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 18:24:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 18:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 18:24:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:24:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:24:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:24:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:24:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:24:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:24:44 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-05 18:24:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:24:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:24:44 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-05 18:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 18:24:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 18:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 18:24:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:24:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:24:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:24:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:24:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:24:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:24:44 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 18:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-05 18:24:44 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-05 18:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:24:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:24:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 18:24:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:24:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:24:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-05 18:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-05 18:24:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:24:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-05 18:24:44 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-05 18:24:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-05 18:24:44 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-05 18:24:44 INFO ISClientConnector:82 - found only one RR, take it -2016-05-05 18:24:44 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-05 18:24:44 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-05 18:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-05 18:24:44 DEBUG StorageClient:517 - set scope: /gcube -2016-05-05 18:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-05 18:24:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:24:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 18:24:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-05 18:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-05 18:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-05 18:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-05 18:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:24:44 INFO WorkspaceExplorerServiceImpl:178 - end time - 335 msc 0 sec -2016-05-05 18:24:44 INFO WorkspaceExplorerServiceImpl:178 - end time - 197 msc 0 sec -2016-05-05 18:24:44 INFO WorkspaceExplorerServiceImpl:178 - end time - 454 msc 0 sec -2016-05-05 18:25:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 18:25:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 18:26:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 18:26:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 18:27:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 18:27:23 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 18:28:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:28:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 18:29:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 18:29:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 18:30:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 18:30:08 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 18:31:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 18:31:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 18:31:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:31:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 18:32:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 18:32:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 18:33:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 18:33:48 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 18:34:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 18:34:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 18:35:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 18:35:38 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 18:36:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 18:36:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 18:37:37 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-05 18:37:37 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-05 18:37:37 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-05 18:37:37 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 18:37:37 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 18:37:37 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 18:37:37 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 18:37:37 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@6db8b71b -2016-05-05 18:37:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 18:37:37 INFO ASLSession:352 - Logging the entrance -2016-05-05 18:37:37 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 18:37:37 DEBUG TemplateModel:83 - 2016-05-05 18:37:37, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 18:37:37 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 18:37:37 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-05 18:37:39 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 18:37:39 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 18:37:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 18:37:39 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 18:37:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 18:37:39 INFO ASLSession:352 - Logging the entrance -2016-05-05 18:37:39 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 18:37:39 DEBUG TemplateModel:83 - 2016-05-05 18:37:39, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 18:37:39 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 18:37:39 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 18:37:39 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 110 ms -2016-05-05 18:37:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-05 18:37:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-05 18:37:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-05 18:37:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-05 18:37:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-05 18:37:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-05 18:37:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-05 18:37:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-05 18:37:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-05 18:37:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-05 18:37:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-05 18:37:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-05 18:37:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-05 18:37:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-05 18:37:40 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-05 18:37:40 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:37:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 18:37:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@4cbaaa25 -2016-05-05 18:37:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@79399d0d -2016-05-05 18:37:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@756b56cf -2016-05-05 18:37:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@2e4931f4 -2016-05-05 18:37:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 108 ms -2016-05-05 18:37:40 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-05 18:37:40 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-05 18:37:40 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 18:37:40 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-05 18:37:40 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-05 18:37:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 18:37:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:37:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-05 18:37:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 19 ms -2016-05-05 18:37:40 DEBUG SClient4WPS:118 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-05 18:37:40 INFO SClient4WPS:123 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 18:37:40 DEBUG SClient4WPS:134 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-05 18:37:40 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 18:37:40 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 18:37:40 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 18:37:40 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 18:37:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 18:37:40 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 18:37:40 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 18:37:40 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-05 18:37:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:37:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:37:40 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-05 18:37:40 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-05 18:37:40 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-05 18:37:40 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-05 18:37:40 DEBUG JCRRepository:271 - Initialize repository -2016-05-05 18:37:40 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-05 18:37:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-05 18:37:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:37:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-05 18:37:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 73 ms -2016-05-05 18:37:40 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-05 18:37:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 18:37:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:37:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:37:40 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-05 18:37:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:37:40 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-05 18:37:41 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 18:37:41 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 18:37:41 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-05 18:37:41 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 18:37:41 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 18:37:41 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-05 18:37:41 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-05 18:37:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:37:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:37:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:37:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:37:41 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 18:37:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-05 18:37:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:37:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:37:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:37:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:37:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:37:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:37:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:37:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:37:41 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 18:37:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-05 18:37:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:37:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:37:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:37:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:37:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:37:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:37:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:37:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:37:41 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 18:37:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-05 18:37:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:37:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:37:42 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 18:37:42 DEBUG SClient4WPS:255 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-05 18:37:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:37:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:37:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:37:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:37:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:37:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:37:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 18:37:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-05 18:37:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:37:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:37:42 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 18:37:42 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 18:37:42 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 18:37:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 18:37:42 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 18:37:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 18:37:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:37:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:37:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:37:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:37:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:37:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:37:42 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-05 18:37:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:37:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:37:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 18:37:42 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 18:37:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 18:37:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:37:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:37:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:37:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:37:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:37:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:37:42 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-05 18:37:42 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-05 18:37:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:37:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:37:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-05 18:37:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 18:37:42 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:37:42 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 18:37:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:37:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 18:37:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:37:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:37:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:37:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:37:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:37:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:37:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:37:42 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-05 18:37:42 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-05 18:37:42 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 18:37:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-05 18:37:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:37:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:37:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-05 18:37:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:37:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-05 18:37:43 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-05 18:37:43 INFO ISClientConnector:82 - found only one RR, take it -2016-05-05 18:37:43 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-05 18:37:43 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-05 18:37:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-05 18:37:43 DEBUG StorageClient:517 - set scope: /gcube -2016-05-05 18:37:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-05 18:37:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:37:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 18:37:43 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-05 18:37:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-05 18:37:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-05 18:37:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-05 18:37:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-05 18:37:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 18:37:43 INFO WorkspaceExplorerServiceImpl:178 - end time - 363 msc 0 sec -2016-05-05 18:37:43 INFO WorkspaceExplorerServiceImpl:178 - end time - 180 msc 0 sec -2016-05-05 18:37:43 INFO WorkspaceExplorerServiceImpl:178 - end time - 400 msc 0 sec -2016-05-05 18:38:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:38:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 18:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 18:38:52 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 18:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 18:38:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:38:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:38:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:38:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:38:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:38:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 18:38:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 18:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 18:38:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:38:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:38:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:38:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:38:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:38:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:38:52 INFO JCRServlets:267 - Servlet getItemById dc768934-81af-40a8-9f1d-62eb88b570ef -2016-05-05 18:38:52 INFO JCRServlets:267 - Servlet getItemById dc768934-81af-40a8-9f1d-62eb88b570ef -2016-05-05 18:38:52 INFO JCRServlets:697 - Calling Servlet get Parents By Id dc768934-81af-40a8-9f1d-62eb88b570ef by giancarlo.panichi -2016-05-05 18:38:52 INFO JCRServlets:142 - Calling servlet getChildrenById dc768934-81af-40a8-9f1d-62eb88b570ef by giancarlo.panichi -2016-05-05 18:38:52 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 18:38:52 INFO WorkspaceExplorerServiceImpl:178 - end time - 72 msc 0 sec -2016-05-05 18:38:52 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=dc768934-81af-40a8-9f1d-62eb88b570ef, name=BIOCLIMATE_HCAF_ID_0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 18:38:52 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 18:38:52 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 18:38:52 INFO WorkspaceExplorerServiceImpl:431 - reached parent limit f7245109-f1c3-4c5a-828d-3381919a5f5a, break -2016-05-05 18:39:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:39:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 18:39:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:39:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:39:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:39:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:39:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:39:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:39:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:39:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 18:39:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-05 18:39:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-05 18:39:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:39:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:39:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:39:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:39:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:39:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:39:04 INFO JCRServlets:267 - Servlet getItemById 11a03c4e-7215-4369-aa55-34c4340fc04b -2016-05-05 18:39:04 INFO JCRServlets:267 - Servlet getItemById 11a03c4e-7215-4369-aa55-34c4340fc04b -2016-05-05 18:39:04 INFO JCRServlets:697 - Calling Servlet get Parents By Id 11a03c4e-7215-4369-aa55-34c4340fc04b by giancarlo.panichi -2016-05-05 18:39:04 INFO JCRServlets:142 - Calling servlet getChildrenById 11a03c4e-7215-4369-aa55-34c4340fc04b by giancarlo.panichi -2016-05-05 18:39:04 INFO WorkspaceExplorerServiceImpl:178 - end time - 64 msc 0 sec -2016-05-05 18:39:04 INFO JCRServlets:267 - Servlet getItemById dc768934-81af-40a8-9f1d-62eb88b570ef -2016-05-05 18:39:04 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=11a03c4e-7215-4369-aa55-34c4340fc04b, name=Input Data Sets, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 18:39:04 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 18:39:04 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=dc768934-81af-40a8-9f1d-62eb88b570ef, name=BIOCLIMATE_HCAF_ID_0b06a4b0-90f5-4fe1-95be-aa432fddb7ce, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 18:39:04 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 18:39:04 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 18:39:04 INFO WorkspaceExplorerServiceImpl:431 - reached parent limit f7245109-f1c3-4c5a-828d-3381919a5f5a, break -2016-05-05 18:39:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:39:08 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 18:39:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:39:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:39:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:39:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:39:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:39:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:39:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:39:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 18:39:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 18:39:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 18:39:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:39:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:39:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:39:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:39:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:39:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:39:08 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 18:39:08 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 18:39:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:39:08 INFO JCRServlets:697 - Calling Servlet get Parents By Id f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-05 18:39:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:39:08 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-05 18:39:08 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 18:39:08 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 18:39:08 DEBUG WorkspaceExplorerServiceImpl:416 - item and parent limit are identical element, returning -2016-05-05 18:39:08 INFO WorkspaceExplorerServiceImpl:178 - end time - 152 msc 0 sec -2016-05-05 18:39:51 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-05 18:39:51 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-05 18:39:51 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-05 18:39:51 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 18:39:51 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 18:39:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 18:39:51 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 18:39:51 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@735c4b10 -2016-05-05 18:39:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 18:39:51 INFO ASLSession:352 - Logging the entrance -2016-05-05 18:39:51 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 18:39:51 DEBUG TemplateModel:83 - 2016-05-05 18:39:51, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 18:39:51 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 18:39:51 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-05 18:39:52 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 18:39:52 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 18:39:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 18:39:52 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 18:39:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 18:39:52 INFO ASLSession:352 - Logging the entrance -2016-05-05 18:39:52 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 18:39:52 DEBUG TemplateModel:83 - 2016-05-05 18:39:52, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 18:39:52 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 18:39:53 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 18:39:53 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 123 ms -2016-05-05 18:39:53 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-05 18:39:53 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-05 18:39:53 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-05 18:39:53 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-05 18:39:53 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-05 18:39:53 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-05 18:39:53 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-05 18:39:53 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-05 18:39:53 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-05 18:39:53 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-05 18:39:53 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-05 18:39:53 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-05 18:39:53 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-05 18:39:53 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-05 18:39:53 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-05 18:39:53 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:39:53 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 18:39:53 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@7499e550 -2016-05-05 18:39:53 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3fb3d313 -2016-05-05 18:39:53 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@4119977d -2016-05-05 18:39:53 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@6202e38 -2016-05-05 18:39:53 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 139 ms -2016-05-05 18:39:53 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-05 18:39:53 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-05 18:39:53 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 18:39:53 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-05 18:39:53 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-05 18:39:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 18:39:53 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:39:53 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-05 18:39:53 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 19 ms -2016-05-05 18:39:53 DEBUG SClient4WPS:118 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-05 18:39:53 INFO SClient4WPS:123 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 18:39:53 DEBUG SClient4WPS:134 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-05 18:39:53 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 18:39:53 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 18:39:53 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 18:39:53 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 18:39:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 18:39:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 18:39:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 18:39:53 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-05 18:39:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:39:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:39:54 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-05 18:39:54 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-05 18:39:54 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-05 18:39:54 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-05 18:39:54 DEBUG JCRRepository:271 - Initialize repository -2016-05-05 18:39:54 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-05 18:39:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-05 18:39:54 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:39:54 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-05 18:39:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 154 ms -2016-05-05 18:39:54 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-05 18:39:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 18:39:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:39:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:39:54 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-05 18:39:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:39:54 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-05 18:39:54 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 18:39:54 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 18:39:54 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-05 18:39:54 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 18:39:54 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 18:39:54 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-05 18:39:54 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-05 18:39:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:39:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:39:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:39:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:39:54 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 18:39:54 DEBUG SClient4WPS:255 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-05 18:39:54 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 18:39:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-05 18:39:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:39:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:39:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:39:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:39:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:39:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:39:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:39:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:39:55 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 18:39:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-05 18:39:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:39:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:39:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:39:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:39:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:39:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:39:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:39:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:39:55 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 18:39:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-05 18:39:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:39:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:39:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:39:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:39:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:39:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:39:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:39:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:39:55 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 18:39:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-05 18:39:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:39:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:39:56 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 18:39:56 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 18:39:56 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 18:39:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 18:39:56 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 18:39:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 18:39:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:39:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:39:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:39:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:39:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:39:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:39:56 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-05 18:39:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:39:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:39:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 18:39:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 18:39:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 18:39:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:39:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:39:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:39:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:39:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:39:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:39:56 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-05 18:39:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:39:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:39:56 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-05 18:39:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:39:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 18:39:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:39:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:39:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:39:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:39:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:39:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:39:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:39:56 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 18:39:56 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-05 18:39:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-05 18:39:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 18:39:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:39:56 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:39:56 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 18:39:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:39:56 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 23 ms -2016-05-05 18:39:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-05 18:39:56 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:39:56 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-05 18:39:57 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-05 18:39:57 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-05 18:39:57 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-05 18:39:57 INFO ISClientConnector:82 - found only one RR, take it -2016-05-05 18:39:57 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-05 18:39:57 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-05 18:39:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-05 18:39:57 DEBUG StorageClient:517 - set scope: /gcube -2016-05-05 18:39:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-05 18:39:57 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 18:39:57 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 18:39:57 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-05 18:39:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-05 18:39:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-05 18:39:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-05 18:39:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 18:39:57 INFO WorkspaceExplorerServiceImpl:178 - end time - 317 msc 0 sec -2016-05-05 18:39:57 INFO WorkspaceExplorerServiceImpl:178 - end time - 211 msc 0 sec -2016-05-05 18:39:57 INFO WorkspaceExplorerServiceImpl:178 - end time - 356 msc 0 sec -2016-05-05 18:40:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 18:40:46 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 18:41:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 18:41:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 18:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 18:42:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 18:43:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 18:43:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 18:44:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 18:44:26 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 18:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:45:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 18:46:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 18:46:16 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 18:47:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:47:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 18:48:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 18:48:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 18:49:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 18:49:01 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 18:49:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 18:49:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 18:50:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 18:50:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 18:51:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 18:51:46 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 18:52:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 18:52:16 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 18:52:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 18:52:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:52:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:52:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:52:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:52:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:52:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:52:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 18:52:16 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 18:52:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 18:52:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:52:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:52:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:52:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:52:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:52:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:52:16 INFO JCRServlets:267 - Servlet getItemById 85b62f64-c4c5-4e24-abe4-7f04eeeabf3c -2016-05-05 18:52:16 INFO JCRServlets:267 - Servlet getItemById 85b62f64-c4c5-4e24-abe4-7f04eeeabf3c -2016-05-05 18:52:16 INFO JCRServlets:142 - Calling servlet getChildrenById 85b62f64-c4c5-4e24-abe4-7f04eeeabf3c by giancarlo.panichi -2016-05-05 18:52:16 INFO JCRServlets:697 - Calling Servlet get Parents By Id 85b62f64-c4c5-4e24-abe4-7f04eeeabf3c by giancarlo.panichi -2016-05-05 18:52:16 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 18:52:16 INFO WorkspaceExplorerServiceImpl:178 - end time - 107 msc 0 sec -2016-05-05 18:52:16 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=85b62f64-c4c5-4e24-abe4-7f04eeeabf3c, name=DBSCAN_ID_2f102ace-6fec-447f-a2ba-47c46d30d0a3, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 18:52:16 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 18:52:16 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 18:52:16 INFO WorkspaceExplorerServiceImpl:431 - reached parent limit f7245109-f1c3-4c5a-828d-3381919a5f5a, break -2016-05-05 18:52:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 18:52:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 18:52:18 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 18:52:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 18:52:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 18:52:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 18:52:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:52:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:52:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:52:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:52:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:52:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:52:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 18:52:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 18:52:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 18:52:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 18:52:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 18:52:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 18:52:18 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 18:52:18 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 18:52:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 18:52:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 18:52:18 INFO JCRServlets:697 - Calling Servlet get Parents By Id f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-05 18:52:18 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-05 18:52:18 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 18:52:18 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-05 18:52:18 DEBUG WorkspaceExplorerServiceImpl:416 - item and parent limit are identical element, returning -2016-05-05 18:52:18 INFO WorkspaceExplorerServiceImpl:178 - end time - 170 msc 0 sec -2016-05-05 18:52:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:52:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 18:53:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 18:53:36 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 19:22:04 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-05 19:22:04 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-05 19:22:04 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-05 19:22:04 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 19:22:04 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 19:22:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 19:22:04 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 19:22:04 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@55c20da -2016-05-05 19:22:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 19:22:04 INFO ASLSession:352 - Logging the entrance -2016-05-05 19:22:04 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 19:22:04 DEBUG TemplateModel:83 - 2016-05-05 19:22:04, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 19:22:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 19:22:04 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-05 19:22:06 INFO SessionUtil:49 - no user found in session, use test user -2016-05-05 19:22:06 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-05 19:22:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-05 19:22:06 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-05 19:22:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 19:22:06 INFO ASLSession:352 - Logging the entrance -2016-05-05 19:22:06 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-05 19:22:06 DEBUG TemplateModel:83 - 2016-05-05 19:22:06, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-05 19:22:06 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 19:22:06 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 19:22:06 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 111 ms -2016-05-05 19:22:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-05 19:22:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-05 19:22:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-05 19:22:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-05 19:22:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-05 19:22:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-05 19:22:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-05 19:22:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-05 19:22:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-05 19:22:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-05 19:22:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-05 19:22:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-05 19:22:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-05 19:22:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-05 19:22:06 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-05 19:22:06 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 19:22:06 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-05 19:22:06 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@2cfeed4f -2016-05-05 19:22:06 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3c862c54 -2016-05-05 19:22:06 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@3be6a8b8 -2016-05-05 19:22:06 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@700c0742 -2016-05-05 19:22:06 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 124 ms -2016-05-05 19:22:06 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-05 19:22:07 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 19:22:07 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 19:22:07 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 19:22:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 19:22:07 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-05 19:22:07 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-05 19:22:07 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-05 19:22:07 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-05 19:22:07 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-05 19:22:07 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-05 19:22:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 19:22:07 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-05 19:22:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 19:22:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-05 19:22:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 19:22:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-05 19:22:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 23 ms -2016-05-05 19:22:07 DEBUG SClient4WPS:118 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-05 19:22:07 INFO SClient4WPS:123 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 19:22:07 DEBUG SClient4WPS:134 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-05 19:22:07 INFO StatWPSClientSession:84 - CONNECT -2016-05-05 19:22:07 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-05 19:22:07 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-05 19:22:07 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-05 19:22:07 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-05 19:22:07 DEBUG JCRRepository:271 - Initialize repository -2016-05-05 19:22:07 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-05 19:22:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-05 19:22:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 19:22:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-05 19:22:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 47 ms -2016-05-05 19:22:07 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-05 19:22:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-05 19:22:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 19:22:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 19:22:07 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-05 19:22:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 19:22:07 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-05 19:22:07 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 19:22:07 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 19:22:07 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-05 19:22:07 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-05 19:22:07 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-05 19:22:07 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-05 19:22:07 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-05 19:22:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 19:22:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 19:22:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 19:22:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 19:22:07 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-05 19:22:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-05 19:22:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 19:22:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 19:22:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 19:22:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 19:22:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 19:22:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 19:22:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 19:22:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 19:22:08 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 19:22:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-05 19:22:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 19:22:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 19:22:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 19:22:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 19:22:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 19:22:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 19:22:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 19:22:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 19:22:08 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 19:22:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-05 19:22:08 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-05 19:22:08 DEBUG SClient4WPS:255 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-05 19:22:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 19:22:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 19:22:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 19:22:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 19:22:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 19:22:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 19:22:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 19:22:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 19:22:08 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-05 19:22:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-05 19:22:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 19:22:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 19:22:08 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-05 19:22:08 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-05 19:22:08 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-05 19:22:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 19:22:08 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-05 19:22:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 19:22:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 19:22:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 19:22:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 19:22:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 19:22:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 19:22:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 19:22:08 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-05 19:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 19:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 19:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 19:22:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-05 19:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-05 19:22:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 19:22:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 19:22:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 19:22:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 19:22:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 19:22:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 19:22:09 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-05 19:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 19:22:09 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-05 19:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 19:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 19:22:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 19:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 19:22:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-05 19:22:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-05 19:22:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-05 19:22:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-05 19:22:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-05 19:22:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-05 19:22:09 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-05 19:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 19:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 19:22:09 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-05 19:22:09 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 19:22:09 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 19:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-05 19:22:09 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 32 ms -2016-05-05 19:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-05 19:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 19:22:09 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 19:22:09 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-05 19:22:09 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-05 19:22:09 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-05 19:22:09 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-05 19:22:09 INFO ISClientConnector:82 - found only one RR, take it -2016-05-05 19:22:09 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-05 19:22:09 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-05 19:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 19:22:09 DEBUG StorageClient:517 - set scope: /gcube -2016-05-05 19:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 19:22:09 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-05 19:22:09 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-05 19:22:09 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-05 19:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 19:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 19:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-05 19:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-05 19:22:09 INFO WorkspaceExplorerServiceImpl:178 - end time - 337 msc 0 sec -2016-05-05 19:22:09 INFO WorkspaceExplorerServiceImpl:178 - end time - 274 msc 0 sec -2016-05-05 19:22:09 INFO WorkspaceExplorerServiceImpl:178 - end time - 206 msc 0 sec -2016-05-05 19:22:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 19:22:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 19:23:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 19:23:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-05 19:24:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-05 19:24:49 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-05 19:25:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-05 19:25:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:14:29 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-06 11:14:29 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-06 11:14:29 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-06 11:14:29 INFO SessionUtil:49 - no user found in session, use test user -2016-05-06 11:14:29 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 11:14:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:14:29 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-06 11:14:29 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@18ce7e09 -2016-05-06 11:14:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:14:29 INFO ASLSession:352 - Logging the entrance -2016-05-06 11:14:29 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-06 11:14:29 DEBUG TemplateModel:83 - 2016-05-06 11:14:29, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-06 11:14:29 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:14:29 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-06 11:14:35 INFO SessionUtil:49 - no user found in session, use test user -2016-05-06 11:14:35 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 11:14:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:14:35 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-06 11:14:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:14:35 INFO ASLSession:352 - Logging the entrance -2016-05-06 11:14:35 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-06 11:14:35 DEBUG TemplateModel:83 - 2016-05-06 11:14:35, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-06 11:14:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:14:35 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-06 11:14:35 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 226 ms -2016-05-06 11:14:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-06 11:14:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-06 11:14:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-06 11:14:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-06 11:14:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-06 11:14:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-06 11:14:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-06 11:14:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-06 11:14:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-06 11:14:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-06 11:14:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-06 11:14:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-06 11:14:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-06 11:14:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-06 11:14:36 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-06 11:14:36 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:14:36 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-06 11:14:36 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@4e8324fb -2016-05-06 11:14:36 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@5134928b -2016-05-06 11:14:36 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@90d2e23 -2016-05-06 11:14:36 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@2bd25a4f -2016-05-06 11:14:36 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 254 ms -2016-05-06 11:14:37 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-06 11:14:37 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-06 11:14:37 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 11:14:37 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-06 11:14:37 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-06 11:14:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:14:37 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:14:37 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-06 11:14:37 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 21 ms -2016-05-06 11:14:37 DEBUG SClient4WPS:118 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-06 11:14:37 INFO SClient4WPS:123 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:14:37 DEBUG SClient4WPS:134 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-06 11:14:37 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 11:14:37 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-06 11:14:37 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-06 11:14:37 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-06 11:14:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:14:37 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:14:37 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:14:37 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-06 11:14:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:14:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:14:39 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-06 11:14:39 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-06 11:14:39 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-06 11:14:39 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-06 11:14:39 DEBUG JCRRepository:271 - Initialize repository -2016-05-06 11:14:39 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-06 11:14:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 37 -2016-05-06 11:14:39 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:14:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-06 11:14:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 25 ms -2016-05-06 11:14:40 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:14:40 DEBUG SClient4WPS:255 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-06 11:14:40 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-06 11:14:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:14:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:14:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:14:40 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-06 11:14:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:14:40 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-06 11:14:40 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-06 11:14:41 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-06 11:14:41 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-06 11:14:41 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-06 11:14:41 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-06 11:14:41 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-06 11:14:41 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-06 11:14:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:14:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:14:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:14:41 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 11:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-06 11:14:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:14:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:14:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:14:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:14:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:14:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:14:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:14:41 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 11:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-06 11:14:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:14:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:14:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:14:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:14:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:14:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:14:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:14:41 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 11:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-06 11:14:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:14:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:14:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:14:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:14:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:14:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:14:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:14:41 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 11:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-06 11:14:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:14:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:14:42 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-06 11:14:42 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-06 11:14:42 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-06 11:14:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:14:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:14:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:14:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:14:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:14:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:14:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:14:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:14:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:14:42 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-06 11:14:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:14:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:14:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:14:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:14:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:14:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:14:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:14:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:14:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:14:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:14:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:14:43 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-06 11:14:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:14:43 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:14:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:14:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:14:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:14:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:14:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:14:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:14:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:14:43 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-06 11:14:43 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 11:14:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:14:43 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-06 11:14:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:14:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:14:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 11:14:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 29 ms -2016-05-06 11:14:43 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-06 11:14:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:14:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-06 11:14:43 INFO WorkspaceExplorerServiceImpl:178 - end time - 127 msc 0 sec -2016-05-06 11:14:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 34 ms -2016-05-06 11:14:43 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-06 11:14:43 INFO ISClientConnector:82 - found only one RR, take it -2016-05-06 11:14:43 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-06 11:14:43 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-06 11:14:43 DEBUG StorageClient:517 - set scope: /gcube -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-06 11:14:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:14:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 11:14:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 42 ms -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:14:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:14:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 11:14:43 INFO WorkspaceExplorerServiceImpl:178 - end time - 466 msc 0 sec -2016-05-06 11:14:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-06 11:14:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:14:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-06 11:14:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 20 ms -2016-05-06 11:14:43 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-06 11:14:43 INFO ISClientConnector:61 - ISCACHE: ELEMENT EXTRACTED -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-06 11:14:43 DEBUG StorageClient:517 - set scope: /gcube -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-06 11:14:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:14:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 11:14:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 22 ms -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-06 11:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:14:43 INFO WorkspaceExplorerServiceImpl:178 - end time - 513 msc 0 sec -2016-05-06 11:15:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:15:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:16:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:16:19 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:17:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:17:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:18:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:18:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:19:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:19:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:19:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:19:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:20:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:20:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:21:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:21:18 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:21:18 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:21:18 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-06 11:21:18 DEBUG SClient4WPS:274 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:21:18 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 11:21:19 DEBUG SClient4WPS:297 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-06 11:21:19 DEBUG SClient4WPS:301 - WPSClient->Fetching Inputs -2016-05-06 11:21:19 DEBUG SClient4WPS:303 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-06 11:21:19 DEBUG SClient4WPS:303 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-06 11:21:19 DEBUG SClient4WPS:303 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-06 11:21:19 DEBUG SClient4WPS:303 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-06 11:21:19 DEBUG SClient4WPS:303 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-06 11:21:19 DEBUG SClient4WPS:308 - WPSClient->Fetching Outputs -2016-05-06 11:21:19 DEBUG SClient4WPS:310 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-06 11:21:19 DEBUG SClient4WPS:310 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-06 11:21:19 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:21:19 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-06 11:21:19 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-06 11:21:19 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-06 11:21:19 DEBUG WPS2SM:208 - Default Schema: null -2016-05-06 11:21:19 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-06 11:21:19 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-06 11:21:19 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-06 11:21:19 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:21:19 DEBUG SClient4WPS:652 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-06 11:21:19 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-06 11:21:19 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:21:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:21:19 DEBUG WPS2SM:100 - Guessed default value: -2016-05-06 11:21:19 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-06 11:21:19 DEBUG WPS2SM:111 - Machter find: true -2016-05-06 11:21:19 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-06 11:21:19 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-06 11:21:19 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-06 11:21:19 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-06 11:21:19 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-06 11:21:19 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-06 11:21:19 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-06 11:21:19 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-06 11:21:19 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:21:19 DEBUG SClient4WPS:652 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-06 11:21:19 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-06 11:21:19 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:21:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:21:19 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-06 11:21:19 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-06 11:21:19 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-06 11:21:19 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:21:19 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-06 11:21:19 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-06 11:21:19 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:21:19 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:21:19 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-06 11:21:19 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-06 11:21:19 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-06 11:21:19 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:21:19 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-06 11:21:19 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-06 11:21:19 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:21:19 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:21:19 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-06 11:21:19 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-06 11:21:19 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-06 11:21:19 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:21:19 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-06 11:21:19 DEBUG SClient4WPS:656 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-06 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:21:19 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:21:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:21:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:21:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:19 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-06 11:21:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:21:19 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:21:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-06 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:21:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:21:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:21:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:21:19 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:21:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:21:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:21:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:21:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:21:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:21:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:21:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-06 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-06 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-06 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-06 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-06 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 11:21:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-06 11:21:20 INFO WorkspaceExplorerServiceImpl:138 - end time - 260 msc 0 sec -2016-05-06 11:21:20 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-06 11:21:27 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:21:27 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:21:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:21:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:21:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:21:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:27 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:21:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:21:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:21:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:21:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:27 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:21:27 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:21:27 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 11:21:27 DEBUG ServiceEngine:306 - get() - start -2016-05-06 11:21:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:21:27 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:21:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:21:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:27 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:21:27 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:21:27 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-06 11:21:27 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-06 11:21:27 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:21:27 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 11:21:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:21:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:21:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:21:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:27 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:21:27 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-06 11:21:27 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:21:27 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-06 11:21:27 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:21:27 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:21:27 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:21:27 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:21:27 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:21:27 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:21:27 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 11:21:27 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 11:21:27 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 11:21:27 INFO WorkspaceExplorerServiceImpl:178 - end time - 74 msc 0 sec -2016-05-06 11:21:27 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:21:27 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:27 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:21:27 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-06 11:21:27 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:27 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:21:28 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:21:28 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:21:28 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:21:28 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1944589}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:323291}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1434450, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2233997, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:28 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:21:28 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:28 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:28 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:21:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:21:28 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2198921}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1126217, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:21:28 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1612832}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1426971, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-06 11:21:28 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1944590}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1944590}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 DEBUG command:56 - Command execution completed -2016-05-06 11:21:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1944590}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 DEBUG command:56 - Command execution completed -2016-05-06 11:21:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1944590}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 DEBUG command:56 - Command execution completed -2016-05-06 11:21:28 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 11:21:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1944590}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 DEBUG command:56 - Command execution completed -2016-05-06 11:21:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1944590}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 DEBUG command:56 - Command execution completed -2016-05-06 11:21:28 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1944590}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:28 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-06 11:21:28 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-06 11:21:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:21:28 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:21:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:21:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:28 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-06 11:21:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:21:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:21:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:21:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:28 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-06 11:21:28 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-06 11:21:29 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-06 11:21:29 DEBUG query:56 - Query completed -2016-05-06 11:21:29 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-06 11:21:29 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2198921} -2016-05-06 11:21:29 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:323291} -2016-05-06 11:21:29 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1944590}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:21:29 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1612832} -2016-05-06 11:21:29 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1944590} -2016-05-06 11:21:29 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1944589} -2016-05-06 11:21:29 INFO MongoIO:508 - Mongo has been closed -2016-05-06 11:21:29 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 11:21:29 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 11:21:29 INFO WorkspaceExplorerServiceImpl:491 - returning size: 4033313 -2016-05-06 11:21:29 DEBUG ServiceEngine:306 - get() - start -2016-05-06 11:21:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:21:29 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:21:29 DEBUG ServiceEngine:62 - path(String) - name: DBScan -2016-05-06 11:21:29 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-06 11:21:29 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:21:29 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 11:21:29 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-06 11:21:29 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:21:29 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-06 11:21:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:21:29 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:21:29 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:21:29 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:21:29 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:21:29 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:21:29 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:29 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:29 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:21:29 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:21:29 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:21:29 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:21:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:21:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:21:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:21:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:21:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:29 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:21:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:21:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:29 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-06 11:21:29 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-06 11:21:29 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1944591}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1678052, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:29 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:21:29 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:29 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:29 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:21:29 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2198923}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=974623, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:21:29 INFO JCRServlets:697 - Calling Servlet get Parents By Id 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-06 11:21:29 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-06 11:21:29 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1612833}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1380630, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-06 11:21:29 INFO WorkspaceExplorerServiceImpl:178 - end time - 48 msc 0 sec -2016-05-06 11:21:29 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1944592}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1944592}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 DEBUG command:56 - Command execution completed -2016-05-06 11:21:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1944592}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 DEBUG command:56 - Command execution completed -2016-05-06 11:21:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1944592}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 DEBUG command:56 - Command execution completed -2016-05-06 11:21:29 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:21:29 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-06 11:21:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1944592}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 DEBUG command:56 - Command execution completed -2016-05-06 11:21:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1944592}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 DEBUG command:56 - Command execution completed -2016-05-06 11:21:29 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1944592}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=7ba62008-739a-4787-ae33-7938ad109a54, name=DBScan, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:21:29 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 11:21:29 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:21:29 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-06 11:21:29 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:323292}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:21:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2022793, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-06 11:21:30 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 11:21:30 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 11:21:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:21:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:21:30 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 11:21:30 INFO WorkspaceExplorerServiceImpl:506 - get MimeType By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 11:21:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:21:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:21:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:21:30 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:21:30 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:21:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:21:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:21:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:30 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 11:21:30 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 11:21:30 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 11:21:30 INFO WorkspaceExplorerServiceImpl:491 - returning size: 849 -2016-05-06 11:21:30 DEBUG query:56 - Query completed -2016-05-06 11:21:30 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-05-06 11:21:30 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2198923} -2016-05-06 11:21:30 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:323292} -2016-05-06 11:21:30 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1612833} -2016-05-06 11:21:30 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1944592}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:21:30 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1944592} -2016-05-06 11:21:30 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1944591} -2016-05-06 11:21:30 INFO MongoIO:508 - Mongo has been closed -2016-05-06 11:21:30 INFO DefaultMongoClient:1329 - getFolderTotalVolume 849 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-06 11:21:30 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-06 11:21:30 INFO WorkspaceExplorerServiceImpl:491 - returning size: 849 -2016-05-06 11:21:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:21:31 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:21:31 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:21:31 DEBUG DataMinerManagerServiceImpl:241 - retrieveTableInformation(): Item [id=13d0382e-8833-4df7-b4dc-61bbba61b3e5, name=hcaf_filtered.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 17:10:22 CET 2016] -2016-05-06 11:21:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:31 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 11:21:31 DEBUG ServiceEngine:193 - get() - start -2016-05-06 11:21:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:21:31 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:21:31 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-06 11:21:31 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-06 11:21:31 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:21:31 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 11:21:31 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-06 11:21:31 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:21:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:21:31 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:21:31 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-06 11:21:31 DEBUG Operation:173 - get(String) - start -2016-05-06 11:21:31 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:21:31 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:21:31 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:21:31 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:21:31 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:31 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:31 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:21:31 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:21:31 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:21:31 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:21:31 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:323294}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1331529, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:31 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:21:31 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:31 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:21:31 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2198924}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=883902, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:21:31 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1944595}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1487568, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:31 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:21:31 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1612834}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1216802, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-06 11:21:31 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1944596}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1944596}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG command:56 - Command execution completed -2016-05-06 11:21:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1944596}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG command:56 - Command execution completed -2016-05-06 11:21:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1944596}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG command:56 - Command execution completed -2016-05-06 11:21:31 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-06 11:21:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1944596}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG command:56 - Command execution completed -2016-05-06 11:21:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1944596}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG command:56 - Command execution completed -2016-05-06 11:21:31 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-06 11:21:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1944596}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG command:56 - Command execution completed -2016-05-06 11:21:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1944596}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG command:56 - Command execution completed -2016-05-06 11:21:31 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-06 11:21:31 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1944596}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG query:56 - Query completed -2016-05-06 11:21:31 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-06 11:21:31 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-06 11:21:31 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-06 11:21:31 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1944596}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG update:56 - Update completed -2016-05-06 11:21:31 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1944596}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG query:56 - Query completed -2016-05-06 11:21:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:21:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:21:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:21:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:21:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:21:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:21:31 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 11:21:31 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered.csv -2016-05-06 11:21:31 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-06 11:21:31 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-06 11:21:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:21:31 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:21:31 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-06 11:21:31 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-06 11:21:31 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-06 11:21:31 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:21:31 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-06 11:21:31 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-06 11:21:31 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:21:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:21:31 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:21:31 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:21:31 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:21:31 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:21:31 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:21:31 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:31 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:31 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:21:31 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:21:31 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:21:31 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:21:31 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:323295}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1225594, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:31 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:21:31 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:31 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:21:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:21:31 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2198925}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1944597}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=931636, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:21:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1391755, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:31 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:21:31 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1612835}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1266418, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:21:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-06 11:21:31 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1944598}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1944598}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG command:56 - Command execution completed -2016-05-06 11:21:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1944598}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG command:56 - Command execution completed -2016-05-06 11:21:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1944598}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG command:56 - Command execution completed -2016-05-06 11:21:31 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-06 11:21:31 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-06 11:21:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1944598}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG command:56 - Command execution completed -2016-05-06 11:21:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1944598}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG command:56 - Command execution completed -2016-05-06 11:21:31 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-06 11:21:31 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1944598}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG query:56 - Query completed -2016-05-06 11:21:31 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-06 11:21:31 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2198925} -2016-05-06 11:21:31 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:323295} -2016-05-06 11:21:31 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1612835} -2016-05-06 11:21:31 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1944598}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:21:31 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1944598} -2016-05-06 11:21:31 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1944597} -2016-05-06 11:21:31 INFO MongoIO:508 - Mongo has been closed -2016-05-06 11:21:31 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-06 11:21:31 INFO Operation:55 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-06 11:21:31 INFO Operation:57 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-06 11:21:31 DEBUG Operation:87 - translating: http://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-06 11:21:31 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-06 11:21:31 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-06 11:21:31 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-06 11:21:31 INFO Operation:65 - URL translated: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-06 11:21:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-06 11:21:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:21:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-06 11:21:32 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2198924} -2016-05-06 11:21:32 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1612834} -2016-05-06 11:21:32 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1944596}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:21:32 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1944596} -2016-05-06 11:21:32 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:323294} -2016-05-06 11:21:32 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1944595} -2016-05-06 11:21:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:21:46 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:21:46 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:21:46 DEBUG DataMinerManagerServiceImpl:134 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=Test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-05-06 11:21:46 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-06 11:21:46 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-06 11:21:46 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-06 11:21:46 DEBUG WPS2SM:208 - Default Schema: null -2016-05-06 11:21:46 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-06 11:21:46 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-06 11:21:46 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-06 11:21:46 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:21:46 DEBUG SClient4WPS:683 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-06 11:21:46 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-06 11:21:46 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:21:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:21:46 DEBUG WPS2SM:100 - Guessed default value: -2016-05-06 11:21:46 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-06 11:21:46 DEBUG WPS2SM:111 - Machter find: true -2016-05-06 11:21:46 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-06 11:21:46 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-06 11:21:46 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-06 11:21:46 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-06 11:21:46 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-06 11:21:46 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-06 11:21:46 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-06 11:21:46 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-06 11:21:46 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:21:46 DEBUG SClient4WPS:683 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-06 11:21:46 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-06 11:21:46 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:21:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:21:46 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-06 11:21:46 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-06 11:21:46 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-06 11:21:46 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:21:46 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-06 11:21:46 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-06 11:21:46 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:21:46 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:21:46 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-06 11:21:46 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-06 11:21:46 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-06 11:21:46 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:21:46 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-06 11:21:46 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-06 11:21:46 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:21:46 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:21:46 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-06 11:21:46 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-06 11:21:46 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-06 11:21:46 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:21:46 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-06 11:21:46 DEBUG SClient4WPS:691 - UserInputs[key=OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0] -2016-05-06 11:21:46 DEBUG SClient4WPS:691 - UserInputs[key=FeaturesColumnNames, value=depthmean|sstmnmax|salinitymean] -2016-05-06 11:21:46 DEBUG SClient4WPS:691 - UserInputs[key=OccurrencePointsClusterLabel, value=Test] -2016-05-06 11:21:46 DEBUG SClient4WPS:691 - UserInputs[key=epsilon, value=10] -2016-05-06 11:21:46 DEBUG SClient4WPS:691 - UserInputs[key=min_points, value=1] -2016-05-06 11:21:46 DEBUG SClient4WPS:744 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-06 11:21:46 DEBUG SClient4WPS:727 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymean -2016-05-06 11:21:46 DEBUG SClient4WPS:727 - Configuring Literal: OccurrencePointsClusterLabel to: Test -2016-05-06 11:21:46 DEBUG SClient4WPS:727 - Configuring Literal: epsilon to: 10 -2016-05-06 11:21:46 DEBUG SClient4WPS:727 - Configuring Literal: min_points to: 1 -2016-05-06 11:21:46 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 11:21:46 DEBUG SClient4WPS:388 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - - - OccurrencePointsTable - - - - FeaturesColumnNames - - depthmean|sstmnmax|salinitymean - - - - OccurrencePointsClusterLabel - - Test - - - - epsilon - - 10 - - - - min_points - - 1 - - - - - - - OutputTable - - - non_deterministic_output - - - - -2016-05-06 11:21:46 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-06 11:21:46 DEBUG SClient4WPS:415 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b548e220-6a15-4914-8e7b-a7861fc280e1 -2016-05-06 11:21:46 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:21:46 DEBUG SClient4WPS:787 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b548e220-6a15-4914-8e7b-a7861fc280e1 -2016-05-06 11:21:46 DEBUG SClient4WPS:697 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b548e220-6a15-4914-8e7b-a7861fc280e1 -2016-05-06 11:21:46 DEBUG SClient4WPS:708 - ComputationId: ComputationId [id=b548e220-6a15-4914-8e7b-a7861fc280e1, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b548e220-6a15-4914-8e7b-a7861fc280e1] -2016-05-06 11:21:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:21:49 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:21:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:21:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:21:57 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:21:57 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=b548e220-6a15-4914-8e7b-a7861fc280e1, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b548e220-6a15-4914-8e7b-a7861fc280e1] -2016-05-06 11:21:57 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 11:21:57 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 11:21:57 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b548e220-6a15-4914-8e7b-a7861fc280e1 -2016-05-06 11:21:57 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 11:21:57 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 11:21:57 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 11:21:57 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymean,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/ZHQyTWx4bTRYaGR1OUtmNGlWNFVMS0owRTB4aGc4aENHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-05-06 11:21:57 DEBUG SClient4WPS:875 - WPS SUCCESS -2016-05-06 11:21:57 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=100.0, status=COMPLETE, endDate=null, message=null, errResource=null] -2016-05-06 11:21:57 DEBUG Log:91 - getResourceByComputationId: ComputationId [id=b548e220-6a15-4914-8e7b-a7861fc280e1, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b548e220-6a15-4914-8e7b-a7861fc280e1] -2016-05-06 11:21:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:21:57 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:21:57 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:21:57 DEBUG SClient4WPS:436 - RetrieveProcessResult: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b548e220-6a15-4914-8e7b-a7861fc280e1 -2016-05-06 11:21:57 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b548e220-6a15-4914-8e7b-a7861fc280e1 -2016-05-06 11:21:57 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 11:21:57 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 11:21:57 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 11:21:57 DEBUG SClient4WPS:447 - Response: - - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymean,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/ZHQyTWx4bTRYaGR1OUtmNGlWNFVMS0owRTB4aGc4aENHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-05-06 11:21:57 DEBUG SClient4WPS:970 - Process Executed -2016-05-06 11:21:57 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-06 11:21:57 DEBUG SClient4WPS:574 - Node Name: #text -2016-05-06 11:21:57 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-06 11:21:57 DEBUG SClient4WPS:574 - Node Name: ogr:FeatureCollection -2016-05-06 11:21:57 DEBUG SClient4WPS:574 - Node Name: gml:featureMember -2016-05-06 11:21:57 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 11:21:57 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/ZHQyTWx4bTRYaGR1OUtmNGlWNFVMS0owRTB4aGc4aENHbWJQNStIS0N6Yz0 -2016-05-06 11:21:57 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] -2016-05-06 11:21:57 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:text/csv -2016-05-06 11:21:57 DEBUG SClient4WPS:516 - ResponseWPS Map: F0-->ResponseWPS [data=http://data-d.d4science.org/ZHQyTWx4bTRYaGR1OUtmNGlWNFVMS0owRTB4aGc4aENHbWJQNStIS0N6Yz0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], mimeType=text/csv] -2016-05-06 11:21:57 DEBUG SClient4WPS:1018 - Adding OBJ:F0 -2016-05-06 11:21:57 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/ZHQyTWx4bTRYaGR1OUtmNGlWNFVMS0owRTB4aGc4aENHbWJQNStIS0N6Yz0, name=F0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], typology=OBJECT] -2016-05-06 11:21:57 DEBUG Log:91 - Resoure: MapResource [map={F0=FileResource [url=http://data-d.d4science.org/ZHQyTWx4bTRYaGR1OUtmNGlWNFVMS0owRTB4aGc4aENHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F0, getName()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getDescription()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getResourceType()=FILE]}, getResourceId()=mapResource, getName()=Resources, getDescription()=Resources, getResourceType()=MAP] -2016-05-06 11:22:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:22:12 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:22:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:22:12 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-06 11:22:12 DEBUG SClient4WPS:274 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:22:12 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 11:22:13 DEBUG SClient4WPS:297 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-06 11:22:13 DEBUG SClient4WPS:301 - WPSClient->Fetching Inputs -2016-05-06 11:22:13 DEBUG SClient4WPS:303 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-06 11:22:13 DEBUG SClient4WPS:303 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-06 11:22:13 DEBUG SClient4WPS:308 - WPSClient->Fetching Outputs -2016-05-06 11:22:13 DEBUG SClient4WPS:310 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-06 11:22:13 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:22:13 DEBUG WPS2SM:325 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-06 11:22:13 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-06 11:22:13 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-06 11:22:13 DEBUG WPS2SM:208 - Default Schema: null -2016-05-06 11:22:13 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-06 11:22:13 DEBUG WPS2SM:235 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-06 11:22:13 DEBUG WPS2SM:236 - Machter find: true -2016-05-06 11:22:13 DEBUG WPS2SM:237 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-06 11:22:13 DEBUG WPS2SM:239 - Machter start: 31 -2016-05-06 11:22:13 DEBUG WPS2SM:241 - Machter end: 97 -2016-05-06 11:22:13 DEBUG WPS2SM:242 - Machter Group Count: 1 -2016-05-06 11:22:13 DEBUG WPS2SM:245 - Matcher separator: | -2016-05-06 11:22:13 DEBUG WPS2SM:339 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-06 11:22:13 DEBUG WPS2SM:340 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-06 11:22:13 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:22:13 DEBUG SClient4WPS:652 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-06 11:22:13 DEBUG WPS2SM:300 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-06 11:22:13 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:22:13 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:22:13 DEBUG WPS2SM:100 - Guessed default value: -2016-05-06 11:22:13 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-06 11:22:13 DEBUG WPS2SM:149 - Machter find: true -2016-05-06 11:22:13 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-06 11:22:13 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-06 11:22:13 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-06 11:22:13 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-06 11:22:13 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-06 11:22:13 DEBUG WPS2SM:339 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-06 11:22:13 DEBUG WPS2SM:340 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-06 11:22:13 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:22:13 DEBUG SClient4WPS:652 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-06 11:22:13 DEBUG SClient4WPS:656 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-06 11:22:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:22:13 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:22:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:22:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:22:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:22:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:22:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:22:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:13 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-06 11:22:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-06 11:22:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:22:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:22:13 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:22:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:22:13 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:22:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:22:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:22:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:22:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:22:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:22:13 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:22:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:22:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:22:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:22:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:22:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:22:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:22:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:22:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:22:13 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:22:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:22:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:22:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:22:13 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-06 11:22:13 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-06 11:22:13 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-06 11:22:13 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-06 11:22:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 11:22:13 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-06 11:22:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 11:22:13 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-06 11:22:13 INFO WorkspaceExplorerServiceImpl:138 - end time - 221 msc 0 sec -2016-05-06 11:22:13 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-06 11:22:20 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:20 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:22:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:22:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:20 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:22:20 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:22:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:20 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:20 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:21 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 11:22:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:22:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:22:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:22:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:22:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:22:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:22:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:21 DEBUG ServiceEngine:306 - get() - start -2016-05-06 11:22:21 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:21 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:21 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-06 11:22:21 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-06 11:22:21 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:22:21 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 11:22:21 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-06 11:22:21 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:22:21 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-06 11:22:21 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:21 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:21 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:22:21 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:22:21 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:22:21 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:22:21 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:21 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:21 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:21 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:22:21 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:22:21 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:22:21 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 11:22:21 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 11:22:21 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:323393}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1248417, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:21 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:22:21 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:21 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 11:22:21 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1944731}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2757455, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:21 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:21 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2198998}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1056550, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:21 INFO WorkspaceExplorerServiceImpl:178 - end time - 64 msc 0 sec -2016-05-06 11:22:21 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:22:21 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-06 11:22:21 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1612907}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1017765, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}] -2016-05-06 11:22:21 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1944733}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1944733}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 DEBUG command:56 - Command execution completed -2016-05-06 11:22:21 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1944733}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 DEBUG command:56 - Command execution completed -2016-05-06 11:22:21 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1944733}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 DEBUG command:56 - Command execution completed -2016-05-06 11:22:21 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 11:22:21 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1944733}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 DEBUG command:56 - Command execution completed -2016-05-06 11:22:21 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1944733}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 DEBUG command:56 - Command execution completed -2016-05-06 11:22:21 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1944733}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}] -2016-05-06 11:22:22 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-06 11:22:22 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-06 11:22:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:22:22 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:22:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:22:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:22 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-06 11:22:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:22:22 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:22:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:22:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:22 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-06 11:22:22 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-06 11:22:22 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-06 11:22:22 DEBUG ServiceEngine:306 - get() - start -2016-05-06 11:22:22 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:22 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:22 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-06 11:22:22 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-06 11:22:22 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:22:22 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 11:22:22 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-06 11:22:22 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:22:22 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-06 11:22:22 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:22 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:22 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:22:22 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:22:22 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:22:22 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:22:22 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:22 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:22 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:22 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:22:22 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:22:22 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:22:22 DEBUG query:56 - Query completed -2016-05-06 11:22:22 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-06 11:22:22 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:323393} -2016-05-06 11:22:22 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1612907} -2016-05-06 11:22:22 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2198998} -2016-05-06 11:22:22 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1944733}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:22:22 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1944733} -2016-05-06 11:22:22 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1944731} -2016-05-06 11:22:22 INFO MongoIO:508 - Mongo has been closed -2016-05-06 11:22:22 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 11:22:22 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 11:22:22 INFO WorkspaceExplorerServiceImpl:491 - returning size: 4033313 -2016-05-06 11:22:22 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:323408}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1944751}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1120297, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1094926, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:22 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:22:22 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:22:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:22:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:22:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:22:22 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:22:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:22:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:22 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:22 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:22 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-06 11:22:22 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-06 11:22:22 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2199008}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1064479, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:22 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1612918}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1707556, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-06 11:22:22 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-06 11:22:22 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-06 11:22:22 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1944752}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1944752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 DEBUG command:56 - Command execution completed -2016-05-06 11:22:22 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1944752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 DEBUG command:56 - Command execution completed -2016-05-06 11:22:22 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1944752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 DEBUG command:56 - Command execution completed -2016-05-06 11:22:22 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-06 11:22:22 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1944752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 DEBUG command:56 - Command execution completed -2016-05-06 11:22:22 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1944752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 DEBUG command:56 - Command execution completed -2016-05-06 11:22:22 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1944752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:22 INFO WorkspaceExplorerServiceImpl:178 - end time - 57 msc 0 sec -2016-05-06 11:22:22 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:22 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:22:22 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 11:22:22 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:22:22 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-06 11:22:23 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-06 11:22:23 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-06 11:22:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:22:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:22:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:22:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:23 INFO WorkspaceExplorerServiceImpl:506 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-06 11:22:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:22:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:22:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:22:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:23 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-06 11:22:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:22:23 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:22:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:22:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:23 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-06 11:22:23 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-06 11:22:23 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-06 11:22:23 INFO WorkspaceExplorerServiceImpl:491 - returning size: 1951243 -2016-05-06 11:22:23 DEBUG query:56 - Query completed -2016-05-06 11:22:23 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-06 11:22:23 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2199008} -2016-05-06 11:22:23 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:323408} -2016-05-06 11:22:23 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1944752}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:22:23 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1944752} -2016-05-06 11:22:23 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1612918} -2016-05-06 11:22:23 INFO MongoIO:508 - Mongo has been closed -2016-05-06 11:22:23 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1944751} -2016-05-06 11:22:23 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-06 11:22:23 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-06 11:22:23 INFO WorkspaceExplorerServiceImpl:491 - returning size: 3902486 -2016-05-06 11:22:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:22:24 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:22:24 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:22:24 DEBUG DataMinerManagerServiceImpl:241 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-06 11:22:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:36 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-06 11:22:36 DEBUG ServiceEngine:193 - get() - start -2016-05-06 11:22:36 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:36 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:36 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-06 11:22:36 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-06 11:22:36 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:22:36 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 11:22:36 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-06 11:22:36 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:22:36 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:36 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:36 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-06 11:22:36 DEBUG Operation:173 - get(String) - start -2016-05-06 11:22:36 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:22:36 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:22:36 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:22:36 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:22:36 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:36 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:36 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:36 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:22:36 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:22:36 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:22:36 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1944760}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:323413}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1403803, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1513740, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:36 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:22:36 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:36 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:36 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:36 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2199013}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=980889, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:36 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1612921}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1072719, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-06 11:22:36 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1944761}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1944761}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG command:56 - Command execution completed -2016-05-06 11:22:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1944761}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG command:56 - Command execution completed -2016-05-06 11:22:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1944761}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG command:56 - Command execution completed -2016-05-06 11:22:36 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-06 11:22:36 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1944761}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG command:56 - Command execution completed -2016-05-06 11:22:36 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1944761}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG command:56 - Command execution completed -2016-05-06 11:22:36 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-06 11:22:36 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1944761}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG command:56 - Command execution completed -2016-05-06 11:22:36 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1944761}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG command:56 - Command execution completed -2016-05-06 11:22:36 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-06 11:22:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1944761}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG query:56 - Query completed -2016-05-06 11:22:36 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-06 11:22:36 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-06 11:22:36 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-06 11:22:36 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1944761}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG update:56 - Update completed -2016-05-06 11:22:36 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1944761}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG query:56 - Query completed -2016-05-06 11:22:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:36 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-06 11:22:36 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-06 11:22:36 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-06 11:22:36 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-06 11:22:36 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:36 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:36 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-06 11:22:36 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-06 11:22:36 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-06 11:22:36 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:22:36 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-06 11:22:36 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-06 11:22:36 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:22:36 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:36 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:36 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:22:36 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:22:36 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:22:36 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:22:36 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:36 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:36 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:36 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:22:36 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:22:36 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:22:36 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:323414}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1281768, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:36 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:22:36 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:36 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:36 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2199014}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1944762}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1074101, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1511278, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:36 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:36 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1612922}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1152888, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-06 11:22:36 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1944763}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1944763}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG command:56 - Command execution completed -2016-05-06 11:22:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1944763}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG command:56 - Command execution completed -2016-05-06 11:22:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1944763}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG command:56 - Command execution completed -2016-05-06 11:22:36 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-06 11:22:36 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-06 11:22:36 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1944763}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG command:56 - Command execution completed -2016-05-06 11:22:36 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1944763}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG command:56 - Command execution completed -2016-05-06 11:22:36 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-06 11:22:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1944763}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:36 DEBUG query:56 - Query completed -2016-05-06 11:22:36 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-06 11:22:36 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2199014} -2016-05-06 11:22:36 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1612922} -2016-05-06 11:22:36 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:323414} -2016-05-06 11:22:36 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1944763}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:22:36 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1944763} -2016-05-06 11:22:36 INFO MongoIO:508 - Mongo has been closed -2016-05-06 11:22:36 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1944762} -2016-05-06 11:22:36 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-06 11:22:36 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-06 11:22:36 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-06 11:22:36 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-06 11:22:36 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-06 11:22:36 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-06 11:22:36 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-06 11:22:36 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-06 11:22:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-06 11:22:42 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2199013} -2016-05-06 11:22:42 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1944761}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:22:42 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:323413} -2016-05-06 11:22:42 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1612921} -2016-05-06 11:22:42 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1944761} -2016-05-06 11:22:42 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1944760} -2016-05-06 11:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:22:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:22:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:22:43 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:22:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:43 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-06 11:22:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:22:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-06 11:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:22:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:22:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:22:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:22:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:22:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:22:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:22:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:22:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:22:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:22:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:22:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:22:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:22:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:22:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:22:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:22:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:22:43 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-06 11:22:44 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-06 11:22:44 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-06 11:22:44 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-06 11:22:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 11:22:44 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-06 11:22:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 11:22:44 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-06 11:22:44 INFO WorkspaceExplorerServiceImpl:138 - end time - 189 msc 0 sec -2016-05-06 11:22:44 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-06 11:22:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:22:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:22:50 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:50 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:22:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:22:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:50 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:22:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:22:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:50 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 11:22:50 DEBUG ServiceEngine:306 - get() - start -2016-05-06 11:22:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:50 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:50 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-06 11:22:50 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-06 11:22:50 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:22:50 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 11:22:50 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-06 11:22:50 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:22:50 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-06 11:22:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:50 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:50 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:22:50 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:22:50 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:22:50 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:22:50 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:50 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:50 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:50 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:22:50 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:22:50 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:22:50 INFO connection:71 - Opened connection [connectionId{localValue:41, serverValue:323425}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 INFO connection:71 - Opened connection [connectionId{localValue:42, serverValue:1944776}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1251821, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:50 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:22:50 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:50 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1453466, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:50 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:50 INFO connection:71 - Opened connection [connectionId{localValue:44, serverValue:2199023}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=830453, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:22:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:22:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:22:50 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:22:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:22:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:50 INFO connection:71 - Opened connection [connectionId{localValue:43, serverValue:1612932}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1257425, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-06 11:22:50 INFO connection:71 - Opened connection [connectionId{localValue:45, serverValue:1944777}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1944777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 DEBUG command:56 - Command execution completed -2016-05-06 11:22:50 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1944777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 DEBUG command:56 - Command execution completed -2016-05-06 11:22:50 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1944777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 DEBUG command:56 - Command execution completed -2016-05-06 11:22:50 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 11:22:50 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1944777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 DEBUG command:56 - Command execution completed -2016-05-06 11:22:50 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1944777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 DEBUG command:56 - Command execution completed -2016-05-06 11:22:50 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 11:22:50 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1944777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 11:22:50 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 11:22:50 INFO WorkspaceExplorerServiceImpl:178 - end time - 57 msc 0 sec -2016-05-06 11:22:50 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:22:50 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-06 11:22:50 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-06 11:22:50 DEBUG query:56 - Query completed -2016-05-06 11:22:50 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-06 11:22:50 DEBUG connection:56 - Closing connection connectionId{localValue:44, serverValue:2199023} -2016-05-06 11:22:50 DEBUG connection:56 - Closing connection connectionId{localValue:41, serverValue:323425} -2016-05-06 11:22:50 INFO connection:71 - Closed connection [connectionId{localValue:45, serverValue:1944777}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:22:50 DEBUG connection:56 - Closing connection connectionId{localValue:43, serverValue:1612932} -2016-05-06 11:22:50 DEBUG connection:56 - Closing connection connectionId{localValue:45, serverValue:1944777} -2016-05-06 11:22:50 INFO MongoIO:508 - Mongo has been closed -2016-05-06 11:22:50 DEBUG connection:56 - Closing connection connectionId{localValue:42, serverValue:1944776} -2016-05-06 11:22:50 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 11:22:50 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 11:22:50 INFO WorkspaceExplorerServiceImpl:491 - returning size: 4033313 -2016-05-06 11:22:51 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-06 11:22:51 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-06 11:22:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:22:51 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:22:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:22:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:51 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-06 11:22:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:22:51 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:22:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:22:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:51 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-06 11:22:51 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-06 11:22:51 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-06 11:22:51 DEBUG ServiceEngine:306 - get() - start -2016-05-06 11:22:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:51 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:51 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-06 11:22:51 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-06 11:22:51 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:22:51 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 11:22:51 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-06 11:22:51 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:22:51 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-06 11:22:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:51 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:51 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:22:51 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:22:51 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:22:51 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:22:51 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:51 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:51 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:51 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:22:51 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:22:51 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:22:51 INFO connection:71 - Opened connection [connectionId{localValue:46, serverValue:323426}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1126567, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:51 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:22:51 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:51 INFO connection:71 - Opened connection [connectionId{localValue:47, serverValue:1944778}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:51 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:51 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1463512, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:51 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:51 INFO connection:71 - Opened connection [connectionId{localValue:49, serverValue:2199024}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=915849, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:51 INFO connection:71 - Opened connection [connectionId{localValue:48, serverValue:1612933}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:51 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1213789, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-06 11:22:51 INFO connection:71 - Opened connection [connectionId{localValue:50, serverValue:1944779}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1944779}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:51 DEBUG command:56 - Command execution completed -2016-05-06 11:22:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1944779}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:51 DEBUG command:56 - Command execution completed -2016-05-06 11:22:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1944779}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:51 DEBUG command:56 - Command execution completed -2016-05-06 11:22:51 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-06 11:22:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1944779}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:51 DEBUG command:56 - Command execution completed -2016-05-06 11:22:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1944779}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:51 DEBUG command:56 - Command execution completed -2016-05-06 11:22:51 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:50, serverValue:1944779}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:22:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:22:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:22:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:22:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:22:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:22:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:52 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-06 11:22:52 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-06 11:22:52 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-06 11:22:52 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-06 11:22:52 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-06 11:22:52 INFO WorkspaceExplorerServiceImpl:178 - end time - 60 msc 0 sec -2016-05-06 11:22:52 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:22:52 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:22:52 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 11:22:52 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:22:52 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-06 11:22:52 DEBUG query:56 - Query completed -2016-05-06 11:22:52 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-06 11:22:52 DEBUG connection:56 - Closing connection connectionId{localValue:49, serverValue:2199024} -2016-05-06 11:22:52 DEBUG connection:56 - Closing connection connectionId{localValue:46, serverValue:323426} -2016-05-06 11:22:52 INFO connection:71 - Closed connection [connectionId{localValue:50, serverValue:1944779}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:22:52 DEBUG connection:56 - Closing connection connectionId{localValue:50, serverValue:1944779} -2016-05-06 11:22:52 DEBUG connection:56 - Closing connection connectionId{localValue:48, serverValue:1612933} -2016-05-06 11:22:52 DEBUG connection:56 - Closing connection connectionId{localValue:47, serverValue:1944778} -2016-05-06 11:22:52 INFO MongoIO:508 - Mongo has been closed -2016-05-06 11:22:52 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-06 11:22:52 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-06 11:22:52 INFO WorkspaceExplorerServiceImpl:491 - returning size: 3902486 -2016-05-06 11:22:53 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-06 11:22:53 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-06 11:22:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:22:53 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:22:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:22:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:53 INFO WorkspaceExplorerServiceImpl:506 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-06 11:22:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:22:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:22:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:22:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:53 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-06 11:22:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:22:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:22:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:22:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:53 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-06 11:22:53 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-06 11:22:53 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-06 11:22:53 INFO WorkspaceExplorerServiceImpl:491 - returning size: 1951243 -2016-05-06 11:22:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:22:54 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:22:54 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:22:54 DEBUG DataMinerManagerServiceImpl:241 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-06 11:22:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:54 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-06 11:22:54 DEBUG ServiceEngine:193 - get() - start -2016-05-06 11:22:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:54 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:54 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-06 11:22:54 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-06 11:22:54 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:22:54 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 11:22:54 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-06 11:22:54 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:22:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:54 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:54 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-06 11:22:54 DEBUG Operation:173 - get(String) - start -2016-05-06 11:22:54 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:22:54 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:22:54 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:22:54 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:22:54 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:54 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:54 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:54 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:22:54 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:22:54 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:22:54 INFO connection:71 - Opened connection [connectionId{localValue:51, serverValue:323428}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1359393, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:54 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:22:54 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:54 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:54 INFO connection:71 - Opened connection [connectionId{localValue:52, serverValue:1944782}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1134260, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:54 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:54 INFO connection:71 - Opened connection [connectionId{localValue:54, serverValue:2199025}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=763560, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:54 INFO connection:71 - Opened connection [connectionId{localValue:53, serverValue:1612936}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1153483, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-06 11:22:54 INFO connection:71 - Opened connection [connectionId{localValue:55, serverValue:1944783}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1944783}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG command:56 - Command execution completed -2016-05-06 11:22:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1944783}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG command:56 - Command execution completed -2016-05-06 11:22:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1944783}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG command:56 - Command execution completed -2016-05-06 11:22:54 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-06 11:22:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1944783}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG command:56 - Command execution completed -2016-05-06 11:22:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1944783}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG command:56 - Command execution completed -2016-05-06 11:22:54 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-06 11:22:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1944783}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG command:56 - Command execution completed -2016-05-06 11:22:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1944783}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG command:56 - Command execution completed -2016-05-06 11:22:54 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-06 11:22:54 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:55, serverValue:1944783}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG query:56 - Query completed -2016-05-06 11:22:54 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-06 11:22:54 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-06 11:22:54 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-06 11:22:54 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:55, serverValue:1944783}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG update:56 - Update completed -2016-05-06 11:22:54 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:55, serverValue:1944783}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG query:56 - Query completed -2016-05-06 11:22:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:22:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:22:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:22:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:22:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:22:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:22:54 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-06 11:22:54 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-06 11:22:54 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-06 11:22:54 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-06 11:22:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:54 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:54 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-06 11:22:54 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-06 11:22:54 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-06 11:22:54 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:22:54 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-06 11:22:54 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-06 11:22:54 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:22:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:22:54 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:22:54 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:22:54 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:22:54 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:22:54 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:22:54 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:54 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:54 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:54 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:22:54 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:22:54 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:22:54 INFO connection:71 - Opened connection [connectionId{localValue:57, serverValue:1944784}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 INFO connection:71 - Opened connection [connectionId{localValue:56, serverValue:323429}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1663367, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1770424, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:54 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:22:54 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:54 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:22:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:54 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:54 INFO connection:71 - Opened connection [connectionId{localValue:59, serverValue:2199026}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=835362, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:22:54 INFO connection:71 - Opened connection [connectionId{localValue:58, serverValue:1612937}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1336191, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:22:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-06 11:22:54 INFO connection:71 - Opened connection [connectionId{localValue:60, serverValue:1944785}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:60, serverValue:1944785}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG command:56 - Command execution completed -2016-05-06 11:22:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:60, serverValue:1944785}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG command:56 - Command execution completed -2016-05-06 11:22:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:60, serverValue:1944785}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG command:56 - Command execution completed -2016-05-06 11:22:54 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-06 11:22:54 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-06 11:22:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:60, serverValue:1944785}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG command:56 - Command execution completed -2016-05-06 11:22:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:60, serverValue:1944785}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG command:56 - Command execution completed -2016-05-06 11:22:54 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-06 11:22:54 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:60, serverValue:1944785}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG query:56 - Query completed -2016-05-06 11:22:54 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-06 11:22:54 DEBUG connection:56 - Closing connection connectionId{localValue:59, serverValue:2199026} -2016-05-06 11:22:54 DEBUG connection:56 - Closing connection connectionId{localValue:56, serverValue:323429} -2016-05-06 11:22:54 INFO connection:71 - Closed connection [connectionId{localValue:60, serverValue:1944785}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:22:54 DEBUG connection:56 - Closing connection connectionId{localValue:60, serverValue:1944785} -2016-05-06 11:22:54 DEBUG connection:56 - Closing connection connectionId{localValue:58, serverValue:1612937} -2016-05-06 11:22:54 DEBUG connection:56 - Closing connection connectionId{localValue:57, serverValue:1944784} -2016-05-06 11:22:54 INFO MongoIO:508 - Mongo has been closed -2016-05-06 11:22:54 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-06 11:22:54 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-06 11:22:54 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-06 11:22:54 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-06 11:22:54 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-06 11:22:54 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-06 11:22:54 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-06 11:22:54 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-06 11:22:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:22:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-06 11:22:55 DEBUG connection:56 - Closing connection connectionId{localValue:54, serverValue:2199025} -2016-05-06 11:22:55 DEBUG connection:56 - Closing connection connectionId{localValue:53, serverValue:1612936} -2016-05-06 11:22:55 INFO connection:71 - Closed connection [connectionId{localValue:55, serverValue:1944783}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:22:55 DEBUG connection:56 - Closing connection connectionId{localValue:51, serverValue:323428} -2016-05-06 11:22:55 DEBUG connection:56 - Closing connection connectionId{localValue:55, serverValue:1944783} -2016-05-06 11:22:55 DEBUG connection:56 - Closing connection connectionId{localValue:52, serverValue:1944782} -2016-05-06 11:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:23:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:23:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:23:04 DEBUG DataMinerManagerServiceImpl:134 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[TabularListParameter [value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], ListParameter [type=java.lang.String, value=h1|h2, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]], hasImage=false]] -2016-05-06 11:23:04 DEBUG WPS2SM:325 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-06 11:23:04 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-06 11:23:04 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-06 11:23:04 DEBUG WPS2SM:208 - Default Schema: null -2016-05-06 11:23:04 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-06 11:23:04 DEBUG WPS2SM:235 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-06 11:23:04 DEBUG WPS2SM:236 - Machter find: true -2016-05-06 11:23:04 DEBUG WPS2SM:237 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-06 11:23:04 DEBUG WPS2SM:239 - Machter start: 31 -2016-05-06 11:23:04 DEBUG WPS2SM:241 - Machter end: 97 -2016-05-06 11:23:04 DEBUG WPS2SM:242 - Machter Group Count: 1 -2016-05-06 11:23:04 DEBUG WPS2SM:245 - Matcher separator: | -2016-05-06 11:23:04 DEBUG WPS2SM:339 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-06 11:23:04 DEBUG WPS2SM:340 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-06 11:23:04 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:23:04 DEBUG SClient4WPS:683 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-06 11:23:04 DEBUG WPS2SM:300 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-06 11:23:04 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:23:04 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:23:04 DEBUG WPS2SM:100 - Guessed default value: -2016-05-06 11:23:04 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-06 11:23:04 DEBUG WPS2SM:149 - Machter find: true -2016-05-06 11:23:04 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-06 11:23:04 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-06 11:23:04 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-06 11:23:04 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-06 11:23:04 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-06 11:23:04 DEBUG WPS2SM:339 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-06 11:23:04 DEBUG WPS2SM:340 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-06 11:23:04 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:23:04 DEBUG SClient4WPS:683 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-06 11:23:04 DEBUG SClient4WPS:691 - UserInputs[key=HCAF_Table_List, value=http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0] -2016-05-06 11:23:04 DEBUG SClient4WPS:691 - UserInputs[key=HCAF_Table_Names, value=h1|h2] -2016-05-06 11:23:04 DEBUG SClient4WPS:744 - Configuring Complex: HCAF_Table_List to: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0|http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-06 11:23:04 DEBUG StorageUtil:291 - SaveOnStorageInTemporalFile() -2016-05-06 11:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec in thread 34 -2016-05-06 11:23:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:23:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 11:23:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 21 ms -2016-05-06 11:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:23:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:23:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-06 11:23:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 23 ms -2016-05-06 11:23:04 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube/devsec/devVRE -2016-05-06 11:23:04 INFO ISClientConnector:61 - ISCACHE: ELEMENT EXTRACTED -2016-05-06 11:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:23:04 DEBUG StorageClient:517 - set scope: /gcube/devsec/devVRE -2016-05-06 11:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:23:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:23:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 11:23:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 24 ms -2016-05-06 11:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:23:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:23:04 DEBUG ServiceEngine:347 - put() - start -2016-05-06 11:23:04 INFO ServiceEngine:34 - file gCube parameter costructor: null null -2016-05-06 11:23:04 INFO ServiceEngine:44 - file gCube parameter before: null null -2016-05-06 11:23:04 DEBUG BucketCoding:32 - Coding name: path: /DataMiner/AlgoritmsParameters/P_20160506_112304_4671.xml rootArea /VOLATILE/gcube/devsec/devVRE/public/ -2016-05-06 11:23:04 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:23:04 DEBUG ServiceEngine:62 - path(String) - name: P_20160506_112304_4671.xml -2016-05-06 11:23:04 DEBUG ServiceEngine:72 - path(String) - path: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/ -2016-05-06 11:23:04 INFO ServiceEngine:52 - file gCube parameter after: null null -2016-05-06 11:23:04 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:23:04 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 11:23:04 INFO OperationFactory:39 - getOperation(String) - start upload -2016-05-06 11:23:04 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:23:04 DEBUG DirectoryBucket:35 - DirectoryBucket PATH: /DataMiner/AlgoritmsParameters/P_20160506_112304_4671.xml -2016-05-06 11:23:04 DEBUG BucketCoding:32 - Coding name: path: /DataMiner/AlgoritmsParameters/P_20160506_112304_4671.xml rootArea /VOLATILE/gcube/devsec/devVRE/public/ -2016-05-06 11:23:04 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:23:04 DEBUG Upload:45 - UPLOAD null author: DataMiner -2016-05-06 11:23:04 DEBUG Operation:98 - put(MyFile, boolean, boolean) - start -2016-05-06 11:23:04 DEBUG Operation:104 - file size: 1 -2016-05-06 11:23:04 DEBUG Operation:108 - PUT is chukn? false -2016-05-06 11:23:04 DEBUG Operation:122 - put(MyFile, boolean, boolean) - encode length: 1 -2016-05-06 11:23:04 DEBUG Operation:128 - len File: 1 len chunk: 1 -2016-05-06 11:23:04 DEBUG Operation:131 - put(MyFile, boolean, boolean) - number of chunks: 1 -2016-05-06 11:23:04 DEBUG Operation:139 - put(MyFile, boolean, boolean) - number of thread: 1 -2016-05-06 11:23:04 DEBUG Operation:143 - consumer have a bucket name: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160506_112304_4671.xml -2016-05-06 11:23:04 DEBUG Operation:157 - NO THREAD POOL USED -2016-05-06 11:23:04 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:23:04 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:23:04 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:23:04 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:23:04 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:23:04 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:23:04 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:23:04 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:23:04 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:23:04 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:62, serverValue:1944791}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=3797465, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:23:04 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:23:04 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:23:04 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:23:04 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:61, serverValue:323433}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:65, serverValue:2199029}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=932327, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:23:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=913212, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:63, serverValue:1612939}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1221899, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:64, serverValue:1944792}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:64, serverValue:1944792}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Command execution completed -2016-05-06 11:23:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:64, serverValue:1944792}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Command execution completed -2016-05-06 11:23:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:64, serverValue:1944792}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Command execution completed -2016-05-06 11:23:04 INFO DefaultMongoClient:165 - MongoClient put method: OperationDefinition [operation=UPLOAD, localResource=INPUT_STREAM, remoteResource=PATH] -2016-05-06 11:23:04 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160506_112304_4671.xml -2016-05-06 11:23:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:64, serverValue:1944792}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Command execution completed -2016-05-06 11:23:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:64, serverValue:1944792}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Command execution completed -2016-05-06 11:23:04 INFO MongoIO:168 - remote object is not a validID : /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160506_112304_4671.xml -2016-05-06 11:23:04 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:64, serverValue:1944792}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG query:56 - Query completed -2016-05-06 11:23:04 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:64, serverValue:1944792}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG query:56 - Query completed -2016-05-06 11:23:04 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:64, serverValue:1944792}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG query:56 - Query completed -2016-05-06 11:23:04 INFO MongoIO:188 - object not found -2016-05-06 11:23:04 INFO DefaultMongoClient:189 - create new file /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160506_112304_4671.xml -2016-05-06 11:23:04 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:64, serverValue:1944792}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG query:56 - Query completed -2016-05-06 11:23:04 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:64, serverValue:1944792}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG query:56 - Query completed -2016-05-06 11:23:04 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:64, serverValue:1944792}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG query:56 - Query completed -2016-05-06 11:23:04 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:64, serverValue:1944792}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG query:56 - Query completed -2016-05-06 11:23:04 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:64, serverValue:1944792}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG query:56 - Query completed -2016-05-06 11:23:04 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:64, serverValue:1944792}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG query:56 - Query completed -2016-05-06 11:23:04 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:64, serverValue:1944792}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG query:56 - Query completed -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:65, serverValue:2199029} -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:61, serverValue:323433} -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:63, serverValue:1612939} -2016-05-06 11:23:04 INFO connection:71 - Closed connection [connectionId{localValue:64, serverValue:1944792}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:64, serverValue:1944792} -2016-05-06 11:23:04 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:62, serverValue:1944791} -2016-05-06 11:23:04 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:23:04 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:23:04 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:23:04 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:23:04 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:23:04 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:23:04 INFO cluster:71 - No server chosen by ReadPreferenceServerSelector{readPreference=primaryPreferred} from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:66, serverValue:323434}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1169979, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:23:04 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:23:04 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:23:04 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:67, serverValue:1944793}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1256037, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:23:04 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:69, serverValue:2199030}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=896296, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:68, serverValue:1612940}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1115874, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:70, serverValue:323435}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:70, serverValue:323435}] to server mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Command execution completed -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:71, serverValue:1944794}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:71, serverValue:1944794}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Command execution completed -2016-05-06 11:23:04 INFO DefaultMongoClient:1491 - set last operation: UPLOAD -2016-05-06 11:23:04 DEBUG insert:56 - Inserting 1 documents into namespace remotefs.fs.chunks on connection [connectionId{localValue:71, serverValue:1944794}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG insert:56 - Insert completed -2016-05-06 11:23:04 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:71, serverValue:1944794}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG update:56 - Update completed -2016-05-06 11:23:04 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:71, serverValue:1944794}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG update:56 - Update completed -2016-05-06 11:23:04 DEBUG DefaultMongoClient:957 - Directory: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/ -2016-05-06 11:23:04 DEBUG DefaultMongoClient:960 - ObjectId: 572c627848434a251745ab6a -2016-05-06 11:23:04 INFO connection:71 - Closed connection [connectionId{localValue:70, serverValue:323435}] to mongo2-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:69, serverValue:2199030} -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:70, serverValue:323435} -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:66, serverValue:323434} -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:68, serverValue:1612940} -2016-05-06 11:23:04 INFO connection:71 - Closed connection [connectionId{localValue:71, serverValue:1944794}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:71, serverValue:1944794} -2016-05-06 11:23:04 INFO MongoIO:508 - Mongo has been closed -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:67, serverValue:1944793} -2016-05-06 11:23:04 INFO DefaultMongoClient:863 - new file created with id: 572c627848434a251745ab6a -2016-05-06 11:23:04 DEBUG StorageUtil:300 - Storage id: 572c627848434a251745ab6a -2016-05-06 11:23:04 INFO ServiceEngine:34 - file gCube parameter costructor: public /gcube/devsec/devVRE -2016-05-06 11:23:04 INFO ServiceEngine:44 - file gCube parameter before: public /gcube/devsec/devVRE -2016-05-06 11:23:04 DEBUG BucketCoding:32 - Coding name: path: /DataMiner/AlgoritmsParameters/P_20160506_112304_4671.xml rootArea /VOLATILE/gcube/devsec/devVRE/public/ -2016-05-06 11:23:04 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:23:04 DEBUG ServiceEngine:62 - path(String) - name: P_20160506_112304_4671.xml -2016-05-06 11:23:04 DEBUG ServiceEngine:72 - path(String) - path: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/ -2016-05-06 11:23:04 INFO ServiceEngine:52 - file gCube parameter after: public /gcube/devsec/devVRE -2016-05-06 11:23:04 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:23:04 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= public file..getGcubeAccessType() public -2016-05-06 11:23:04 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-06 11:23:04 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:23:04 DEBUG BucketCoding:32 - Coding name: path: /DataMiner/AlgoritmsParameters/P_20160506_112304_4671.xml rootArea /VOLATILE/gcube/devsec/devVRE/public/ -2016-05-06 11:23:04 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:23:04 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:23:04 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:23:04 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:23:04 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:23:04 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:23:04 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:23:04 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:23:04 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:23:04 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:23:04 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:73, serverValue:323436}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:72, serverValue:1944795}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1502650, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:23:04 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:23:04 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1329100, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:23:04 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:23:04 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:75, serverValue:2199032}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=904185, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:74, serverValue:1612942}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1223053, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-06 11:23:04 INFO connection:71 - Opened connection [connectionId{localValue:76, serverValue:1944798}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:76, serverValue:1944798}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Command execution completed -2016-05-06 11:23:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:76, serverValue:1944798}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Command execution completed -2016-05-06 11:23:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:76, serverValue:1944798}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Command execution completed -2016-05-06 11:23:04 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160506_112304_4671.xml -2016-05-06 11:23:04 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160506_112304_4671.xml -2016-05-06 11:23:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:76, serverValue:1944798}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Command execution completed -2016-05-06 11:23:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:76, serverValue:1944798}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG command:56 - Command execution completed -2016-05-06 11:23:04 INFO MongoIO:168 - remote object is not a validID : /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160506_112304_4671.xml -2016-05-06 11:23:04 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:76, serverValue:1944798}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:23:04 DEBUG query:56 - Query completed -2016-05-06 11:23:04 INFO MongoIO:186 - object found P_20160506_112304_4671.xml -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:75, serverValue:2199032} -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:73, serverValue:323436} -2016-05-06 11:23:04 INFO connection:71 - Closed connection [connectionId{localValue:76, serverValue:1944798}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:74, serverValue:1612942} -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:76, serverValue:1944798} -2016-05-06 11:23:04 INFO MongoIO:508 - Mongo has been closed -2016-05-06 11:23:04 DEBUG connection:56 - Closing connection connectionId{localValue:72, serverValue:1944795} -2016-05-06 11:23:04 DEBUG Operation:81 - PATH /VOLATILE/gcube/devsec/devVRE/public/DataMiner/AlgoritmsParameters/P_20160506_112304_4671.xml -2016-05-06 11:23:04 INFO Operation:55 - URL generated: smp://data-d.d4science.org/dHAUlQkmMaYSwnxokFgOoAup5wOrXw/HGmbP5+HKCzc= -2016-05-06 11:23:04 INFO Operation:57 - URL generated: smp://data-d.d4science.org/dHAUlQkmMaYSwnxokFgOoAup5wOrXw/HGmbP5+HKCzc= -2016-05-06 11:23:04 DEBUG Operation:87 - translating: http://data-d.d4science.org/dHAUlQkmMaYSwnxokFgOoAup5wOrXw/HGmbP5+HKCzc= -2016-05-06 11:23:04 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-06 11:23:04 DEBUG Operation:93 - get params: http://data-d.d4science.org/ dHAUlQkmMaYSwnxokFgOoAup5wOrXw/HGmbP5+HKCzc= -2016-05-06 11:23:04 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/ZEhBVWxRa21NYVlTd254b2tGZ09vQXVwNXdPclh3L0hHbWJQNStIS0N6Yz0 -2016-05-06 11:23:04 INFO Operation:65 - URL translated: http://data-d.d4science.org/ZEhBVWxRa21NYVlTd254b2tGZ09vQXVwNXdPclh3L0hHbWJQNStIS0N6Yz0 -2016-05-06 11:23:04 DEBUG StorageUtil:302 - Storage public link: http://data-d.d4science.org/ZEhBVWxRa21NYVlTd254b2tGZ09vQXVwNXdPclh3L0hHbWJQNStIS0N6Yz0 -2016-05-06 11:23:04 DEBUG SClient4WPS:727 - Configuring Literal: HCAF_Table_Names to: h1|h2 -2016-05-06 11:23:04 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 11:23:05 DEBUG SClient4WPS:388 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - - - HCAF_Table_List - - - - HCAF_Table_Names - - h1|h2 - - - - - - - non_deterministic_output - - - - -2016-05-06 11:23:05 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-06 11:23:05 DEBUG SClient4WPS:415 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=24795f1e-4d07-4bb2-97e9-8d3e6b051219 -2016-05-06 11:23:05 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:23:05 DEBUG SClient4WPS:787 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=24795f1e-4d07-4bb2-97e9-8d3e6b051219 -2016-05-06 11:23:05 DEBUG SClient4WPS:697 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=24795f1e-4d07-4bb2-97e9-8d3e6b051219 -2016-05-06 11:23:05 DEBUG SClient4WPS:708 - ComputationId: ComputationId [id=24795f1e-4d07-4bb2-97e9-8d3e6b051219, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=24795f1e-4d07-4bb2-97e9-8d3e6b051219] -2016-05-06 11:23:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:23:15 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:23:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:23:15 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=24795f1e-4d07-4bb2-97e9-8d3e6b051219, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=24795f1e-4d07-4bb2-97e9-8d3e6b051219] -2016-05-06 11:23:15 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 11:23:15 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 11:23:15 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=24795f1e-4d07-4bb2-97e9-8d3e6b051219 -2016-05-06 11:23:15 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 11:23:15 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 11:23:15 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 11:23:15 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - Process successful - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/ZUg0MDBURzh2YnR1OUtmNGlWNFVMSndLVlBSMDVzalpHbWJQNStIS0N6Yz0 - Average_Ice_Concentration - image/png - - - http://data-d.d4science.org/MlJ4T1BKWU5TSE51OUtmNGlWNFVMUG9RWW1QQ3lPYnRHbWJQNStIS0N6Yz0 - Average_SST - image/png - - - http://data-d.d4science.org/MlJ4T1BKWU5TSE51OUtmNGlWNFVMR3ZUWUJGTlM2U1VHbWJQNStIS0N6Yz0 - Average_Salinity - image/png - - - - - - - - -2016-05-06 11:23:15 DEBUG SClient4WPS:875 - WPS SUCCESS -2016-05-06 11:23:15 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=100.0, status=COMPLETE, endDate=null, message=null, errResource=null] -2016-05-06 11:23:15 DEBUG Log:91 - getResourceByComputationId: ComputationId [id=24795f1e-4d07-4bb2-97e9-8d3e6b051219, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=24795f1e-4d07-4bb2-97e9-8d3e6b051219] -2016-05-06 11:23:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:23:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:23:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:23:15 DEBUG SClient4WPS:436 - RetrieveProcessResult: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=24795f1e-4d07-4bb2-97e9-8d3e6b051219 -2016-05-06 11:23:15 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=24795f1e-4d07-4bb2-97e9-8d3e6b051219 -2016-05-06 11:23:15 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 11:23:15 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 11:23:15 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 11:23:15 DEBUG SClient4WPS:447 - Response: - - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - - - Process successful - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/ZUg0MDBURzh2YnR1OUtmNGlWNFVMSndLVlBSMDVzalpHbWJQNStIS0N6Yz0 - Average_Ice_Concentration - image/png - - - http://data-d.d4science.org/MlJ4T1BKWU5TSE51OUtmNGlWNFVMUG9RWW1QQ3lPYnRHbWJQNStIS0N6Yz0 - Average_SST - image/png - - - http://data-d.d4science.org/MlJ4T1BKWU5TSE51OUtmNGlWNFVMR3ZUWUJGTlM2U1VHbWJQNStIS0N6Yz0 - Average_Salinity - image/png - - - - - - - - -2016-05-06 11:23:15 DEBUG SClient4WPS:970 - Process Executed -2016-05-06 11:23:15 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-06 11:23:15 DEBUG SClient4WPS:574 - Node Name: ogr:FeatureCollection -2016-05-06 11:23:15 DEBUG SClient4WPS:574 - Node Name: gml:featureMember -2016-05-06 11:23:15 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 11:23:15 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/ZUg0MDBURzh2YnR1OUtmNGlWNFVMSndLVlBSMDVzalpHbWJQNStIS0N6Yz0 -2016-05-06 11:23:15 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:Average_Ice_Concentration -2016-05-06 11:23:15 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:image/png -2016-05-06 11:23:15 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 11:23:15 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/MlJ4T1BKWU5TSE51OUtmNGlWNFVMUG9RWW1QQ3lPYnRHbWJQNStIS0N6Yz0 -2016-05-06 11:23:15 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:Average_SST -2016-05-06 11:23:15 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:image/png -2016-05-06 11:23:15 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 11:23:15 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/MlJ4T1BKWU5TSE51OUtmNGlWNFVMR3ZUWUJGTlM2U1VHbWJQNStIS0N6Yz0 -2016-05-06 11:23:15 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:Average_Salinity -2016-05-06 11:23:15 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:image/png -2016-05-06 11:23:15 DEBUG SClient4WPS:516 - ResponseWPS Map: F0-->ResponseWPS [data=http://data-d.d4science.org/ZUg0MDBURzh2YnR1OUtmNGlWNFVMSndLVlBSMDVzalpHbWJQNStIS0N6Yz0, description=Average_Ice_Concentration, mimeType=image/png] -2016-05-06 11:23:15 DEBUG SClient4WPS:516 - ResponseWPS Map: F1-->ResponseWPS [data=http://data-d.d4science.org/MlJ4T1BKWU5TSE51OUtmNGlWNFVMUG9RWW1QQ3lPYnRHbWJQNStIS0N6Yz0, description=Average_SST, mimeType=image/png] -2016-05-06 11:23:15 DEBUG SClient4WPS:516 - ResponseWPS Map: F2-->ResponseWPS [data=http://data-d.d4science.org/MlJ4T1BKWU5TSE51OUtmNGlWNFVMR3ZUWUJGTlM2U1VHbWJQNStIS0N6Yz0, description=Average_Salinity, mimeType=image/png] -2016-05-06 11:23:15 DEBUG SClient4WPS:1018 - Adding OBJ:F0 -2016-05-06 11:23:15 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/ZUg0MDBURzh2YnR1OUtmNGlWNFVMSndLVlBSMDVzalpHbWJQNStIS0N6Yz0, name=F0, description=Average_Ice_Concentration, typology=OBJECT] -2016-05-06 11:23:15 DEBUG SClient4WPS:1018 - Adding OBJ:F1 -2016-05-06 11:23:15 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/MlJ4T1BKWU5TSE51OUtmNGlWNFVMUG9RWW1QQ3lPYnRHbWJQNStIS0N6Yz0, name=F1, description=Average_SST, typology=OBJECT] -2016-05-06 11:23:15 DEBUG SClient4WPS:1018 - Adding OBJ:F2 -2016-05-06 11:23:15 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/MlJ4T1BKWU5TSE51OUtmNGlWNFVMR3ZUWUJGTlM2U1VHbWJQNStIS0N6Yz0, name=F2, description=Average_Salinity, typology=OBJECT] -2016-05-06 11:23:15 DEBUG Log:91 - Resoure: MapResource [map={F0=ImagesResource [link=http://data-d.d4science.org/ZUg0MDBURzh2YnR1OUtmNGlWNFVMSndLVlBSMDVzalpHbWJQNStIS0N6Yz0, mimeType=image/png, getResourceId()=F0, getName()=Average_Ice_Concentration, getDescription()=Average_Ice_Concentration, getResourceType()=IMAGES], F1=ImagesResource [link=http://data-d.d4science.org/MlJ4T1BKWU5TSE51OUtmNGlWNFVMUG9RWW1QQ3lPYnRHbWJQNStIS0N6Yz0, mimeType=image/png, getResourceId()=F1, getName()=Average_SST, getDescription()=Average_SST, getResourceType()=IMAGES], F2=ImagesResource [link=http://data-d.d4science.org/MlJ4T1BKWU5TSE51OUtmNGlWNFVMR3ZUWUJGTlM2U1VHbWJQNStIS0N6Yz0, mimeType=image/png, getResourceId()=F2, getName()=Average_Salinity, getDescription()=Average_Salinity, getResourceType()=IMAGES]}, getResourceId()=mapResource, getName()=Resources, getDescription()=Resources, getResourceType()=MAP] -2016-05-06 11:23:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:23:39 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:24:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:24:34 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:25:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:25:29 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:26:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:26:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:27:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:27:19 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:28:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:28:14 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:29:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:29:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:30:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:30:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:30:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:30:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:31:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:31:54 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:32:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:32:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:33:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:33:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:34:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:34:39 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:35:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:35:34 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:36:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:36:29 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:37:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:37:16 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:37:16 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:37:16 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY -2016-05-06 11:37:16 DEBUG SClient4WPS:274 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:37:16 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 11:37:17 DEBUG SClient4WPS:297 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY - CMSY - An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner. - - - IDsFile - Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - Name of the parameter: IDsFile. Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - - - - - - - StocksFile - Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - Name of the parameter: StocksFile. Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - - - - - - - SelectedStock - The stock on which the procedure has to focus e.g. HLH_M07 - Name of the parameter: SelectedStock. The stock on which the procedure has to focus e.g. HLH_M07 - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-06 11:37:17 DEBUG SClient4WPS:301 - WPSClient->Fetching Inputs -2016-05-06 11:37:17 DEBUG SClient4WPS:303 - WPSClient->Input: - IDsFile - Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - Name of the parameter: IDsFile. Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - - - - - -2016-05-06 11:37:17 DEBUG SClient4WPS:303 - WPSClient->Input: - StocksFile - Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - Name of the parameter: StocksFile. Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - - - - - -2016-05-06 11:37:17 DEBUG SClient4WPS:303 - WPSClient->Input: - SelectedStock - The stock on which the procedure has to focus e.g. HLH_M07 - Name of the parameter: SelectedStock. The stock on which the procedure has to focus e.g. HLH_M07 - - - - - -2016-05-06 11:37:17 DEBUG SClient4WPS:308 - WPSClient->Fetching Outputs -2016-05-06 11:37:17 DEBUG SClient4WPS:310 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-06 11:37:17 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:37:17 DEBUG WPS2SM:300 - Conversion to SM Type->IDsFile is a Literal Input -2016-05-06 11:37:17 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:37:17 DEBUG WPS2SM:100 - Guessed default value: -2016-05-06 11:37:17 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK -2016-05-06 11:37:17 DEBUG WPS2SM:340 - Conversion to SM Type->Name:IDsFile -2016-05-06 11:37:17 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:17 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=IDsFile, description=Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-06 11:37:17 DEBUG WPS2SM:300 - Conversion to SM Type->StocksFile is a Literal Input -2016-05-06 11:37:17 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:37:17 DEBUG WPS2SM:100 - Guessed default value: -2016-05-06 11:37:17 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY -2016-05-06 11:37:17 DEBUG WPS2SM:340 - Conversion to SM Type->Name:StocksFile -2016-05-06 11:37:17 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:17 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=StocksFile, description=Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-06 11:37:17 DEBUG WPS2SM:300 - Conversion to SM Type->SelectedStock is a Literal Input -2016-05-06 11:37:17 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:37:17 DEBUG WPS2SM:100 - Guessed default value: -2016-05-06 11:37:17 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The stock on which the procedure has to focus e.g. HLH_M07 -2016-05-06 11:37:17 DEBUG WPS2SM:340 - Conversion to SM Type->Name:SelectedStock -2016-05-06 11:37:17 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:17 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=SelectedStock, description=The stock on which the procedure has to focus e.g. HLH_M07 [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-06 11:37:17 DEBUG SClient4WPS:656 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=IDsFile, description=Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=StocksFile, description=Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=SelectedStock, description=The stock on which the procedure has to focus e.g. HLH_M07 [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT]] -2016-05-06 11:37:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:37:24 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:37:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:37:26 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:37:26 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:37:26 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION -2016-05-06 11:37:26 DEBUG SClient4WPS:274 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:37:26 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 11:37:26 DEBUG SClient4WPS:297 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION - SGVM_INTERPOLATION - An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare - - - InputFile - Input file in TACSAT format. E.g. http://goo.gl/i16kPw - Name of the parameter: InputFile. Input file in TACSAT format. E.g. http://goo.gl/i16kPw - - - - text/xml - - - - - text/xml - - - application/d4science - - - - - - npoints - The number of pings or positions required between each real or actual vessel position or ping - Name of the parameter: npoints. The number of pings or positions required between each real or actual vessel position or ping - - - - 10 - - - - interval - Average time in minutes between two adjacent datapoints - Name of the parameter: interval. Average time in minutes between two adjacent datapoints - - - - 120 - - - - margin - Maximum deviation from specified interval to find adjacent datapoints (tolerance) - Name of the parameter: margin. Maximum deviation from specified interval to find adjacent datapoints (tolerance) - - - - 10 - - - - res - Number of points to use to create interpolation (including start and end point) - Name of the parameter: res. Number of points to use to create interpolation (including start and end point) - - - - 100 - - - - method - Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - Name of the parameter: method. Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - - - - cHs - SL - - cHs - - - - fm - The FM parameter in cubic interpolation - Name of the parameter: fm. The FM parameter in cubic interpolation - - - - 0.5 - - - - distscale - The DistScale parameter for cubic interpolation - Name of the parameter: distscale. The DistScale parameter for cubic interpolation - - - - 20 - - - - sigline - The Sigline parameter in cubic interpolation - Name of the parameter: sigline. The Sigline parameter in cubic interpolation - - - - 0.2 - - - - minspeedThr - A filter on the minimum speed to take into account for interpolation - Name of the parameter: minspeedThr. A filter on the minimum speed to take into account for interpolation - - - - 2 - - - - maxspeedThr - A filter on the maximum speed to take into account for interpolation - Name of the parameter: maxspeedThr. A filter on the maximum speed to take into account for interpolation - - - - 6 - - - - headingAdjustment - Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - Name of the parameter: headingAdjustment. Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - - - - 0 - - - - equalDist - Whether the number of positions returned should be equally spaced or not - Name of the parameter: equalDist. Whether the number of positions returned should be equally spaced or not - - - - true - false - - true - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-06 11:37:26 DEBUG SClient4WPS:301 - WPSClient->Fetching Inputs -2016-05-06 11:37:26 DEBUG SClient4WPS:303 - WPSClient->Input: - InputFile - Input file in TACSAT format. E.g. http://goo.gl/i16kPw - Name of the parameter: InputFile. Input file in TACSAT format. E.g. http://goo.gl/i16kPw - - - - text/xml - - - - - text/xml - - - application/d4science - - - - -2016-05-06 11:37:26 DEBUG SClient4WPS:303 - WPSClient->Input: - npoints - The number of pings or positions required between each real or actual vessel position or ping - Name of the parameter: npoints. The number of pings or positions required between each real or actual vessel position or ping - - - - 10 - - -2016-05-06 11:37:26 DEBUG SClient4WPS:303 - WPSClient->Input: - interval - Average time in minutes between two adjacent datapoints - Name of the parameter: interval. Average time in minutes between two adjacent datapoints - - - - 120 - - -2016-05-06 11:37:26 DEBUG SClient4WPS:303 - WPSClient->Input: - margin - Maximum deviation from specified interval to find adjacent datapoints (tolerance) - Name of the parameter: margin. Maximum deviation from specified interval to find adjacent datapoints (tolerance) - - - - 10 - - -2016-05-06 11:37:26 DEBUG SClient4WPS:303 - WPSClient->Input: - res - Number of points to use to create interpolation (including start and end point) - Name of the parameter: res. Number of points to use to create interpolation (including start and end point) - - - - 100 - - -2016-05-06 11:37:26 DEBUG SClient4WPS:303 - WPSClient->Input: - method - Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - Name of the parameter: method. Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - - - - cHs - SL - - cHs - - -2016-05-06 11:37:26 DEBUG SClient4WPS:303 - WPSClient->Input: - fm - The FM parameter in cubic interpolation - Name of the parameter: fm. The FM parameter in cubic interpolation - - - - 0.5 - - -2016-05-06 11:37:26 DEBUG SClient4WPS:303 - WPSClient->Input: - distscale - The DistScale parameter for cubic interpolation - Name of the parameter: distscale. The DistScale parameter for cubic interpolation - - - - 20 - - -2016-05-06 11:37:26 DEBUG SClient4WPS:303 - WPSClient->Input: - sigline - The Sigline parameter in cubic interpolation - Name of the parameter: sigline. The Sigline parameter in cubic interpolation - - - - 0.2 - - -2016-05-06 11:37:26 DEBUG SClient4WPS:303 - WPSClient->Input: - minspeedThr - A filter on the minimum speed to take into account for interpolation - Name of the parameter: minspeedThr. A filter on the minimum speed to take into account for interpolation - - - - 2 - - -2016-05-06 11:37:26 DEBUG SClient4WPS:303 - WPSClient->Input: - maxspeedThr - A filter on the maximum speed to take into account for interpolation - Name of the parameter: maxspeedThr. A filter on the maximum speed to take into account for interpolation - - - - 6 - - -2016-05-06 11:37:26 DEBUG SClient4WPS:303 - WPSClient->Input: - headingAdjustment - Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - Name of the parameter: headingAdjustment. Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - - - - 0 - - -2016-05-06 11:37:26 DEBUG SClient4WPS:303 - WPSClient->Input: - equalDist - Whether the number of positions returned should be equally spaced or not - Name of the parameter: equalDist. Whether the number of positions returned should be equally spaced or not - - - - true - false - - true - - -2016-05-06 11:37:26 DEBUG SClient4WPS:308 - WPSClient->Fetching Outputs -2016-05-06 11:37:26 DEBUG SClient4WPS:310 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-06 11:37:26 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:37:26 DEBUG WPS2SM:325 - Conversion to SM Type->InputFile is a Complex Input -2016-05-06 11:37:26 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-06 11:37:26 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-06 11:37:26 DEBUG WPS2SM:208 - Default Schema: null -2016-05-06 11:37:26 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-06 11:37:26 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Input file in TACSAT format. E.g. http://goo.gl/i16kPw -2016-05-06 11:37:26 DEBUG WPS2SM:340 - Conversion to SM Type->Name:InputFile -2016-05-06 11:37:26 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:26 DEBUG SClient4WPS:652 - InputParameter: FileParameter [value=null, defaultMimeType=text/xml, supportedMimeTypes=[text/xml, application/d4science]] -2016-05-06 11:37:26 DEBUG WPS2SM:300 - Conversion to SM Type->npoints is a Literal Input -2016-05-06 11:37:26 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:37:26 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-06 11:37:26 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The number of pings or positions required between each real or actual vessel position or ping -2016-05-06 11:37:26 DEBUG WPS2SM:340 - Conversion to SM Type->Name:npoints -2016-05-06 11:37:26 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:26 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=npoints, description=The number of pings or positions required between each real or actual vessel position or ping [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-06 11:37:26 DEBUG WPS2SM:300 - Conversion to SM Type->interval is a Literal Input -2016-05-06 11:37:26 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:37:26 DEBUG WPS2SM:100 - Guessed default value: 120 -2016-05-06 11:37:26 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Average time in minutes between two adjacent datapoints -2016-05-06 11:37:26 DEBUG WPS2SM:340 - Conversion to SM Type->Name:interval -2016-05-06 11:37:26 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:26 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=120, value=null, name=interval, description=Average time in minutes between two adjacent datapoints [Min N. of Entries:1; Max N. of Entries:1; default:120], typology=OBJECT] -2016-05-06 11:37:26 DEBUG WPS2SM:300 - Conversion to SM Type->margin is a Literal Input -2016-05-06 11:37:26 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:37:26 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-06 11:37:26 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Maximum deviation from specified interval to find adjacent datapoints (tolerance) -2016-05-06 11:37:26 DEBUG WPS2SM:340 - Conversion to SM Type->Name:margin -2016-05-06 11:37:26 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:26 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=margin, description=Maximum deviation from specified interval to find adjacent datapoints (tolerance) [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-06 11:37:26 DEBUG WPS2SM:300 - Conversion to SM Type->res is a Literal Input -2016-05-06 11:37:26 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:37:26 DEBUG WPS2SM:100 - Guessed default value: 100 -2016-05-06 11:37:26 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Number of points to use to create interpolation (including start and end point) -2016-05-06 11:37:26 DEBUG WPS2SM:340 - Conversion to SM Type->Name:res -2016-05-06 11:37:26 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:26 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=100, value=null, name=res, description=Number of points to use to create interpolation (including start and end point) [Min N. of Entries:1; Max N. of Entries:1; default:100], typology=OBJECT] -2016-05-06 11:37:26 DEBUG WPS2SM:300 - Conversion to SM Type->method is a Literal Input -2016-05-06 11:37:26 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:37:26 DEBUG WPS2SM:100 - Guessed default value: cHs -2016-05-06 11:37:26 DEBUG WPS2SM:311 - ValueType[]:[cHs, SL] -2016-05-06 11:37:26 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Set to cHs for cubic Hermite spline or SL for Straight Line interpolation -2016-05-06 11:37:26 DEBUG WPS2SM:340 - Conversion to SM Type->Name:method -2016-05-06 11:37:26 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:26 DEBUG SClient4WPS:652 - InputParameter: Parameter [name=method, description=Set to cHs for cubic Hermite spline or SL for Straight Line interpolation [Min N. of Entries:1; Max N. of Entries:1; default:cHs], typology=ENUM] -2016-05-06 11:37:26 DEBUG WPS2SM:300 - Conversion to SM Type->fm is a Literal Input -2016-05-06 11:37:26 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:37:26 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-06 11:37:26 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The FM parameter in cubic interpolation -2016-05-06 11:37:26 DEBUG WPS2SM:340 - Conversion to SM Type->Name:fm -2016-05-06 11:37:26 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:26 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=fm, description=The FM parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-06 11:37:26 DEBUG WPS2SM:300 - Conversion to SM Type->distscale is a Literal Input -2016-05-06 11:37:26 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:37:26 DEBUG WPS2SM:100 - Guessed default value: 20 -2016-05-06 11:37:26 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The DistScale parameter for cubic interpolation -2016-05-06 11:37:26 DEBUG WPS2SM:340 - Conversion to SM Type->Name:distscale -2016-05-06 11:37:26 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:26 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=distscale, description=The DistScale parameter for cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT] -2016-05-06 11:37:26 DEBUG WPS2SM:300 - Conversion to SM Type->sigline is a Literal Input -2016-05-06 11:37:26 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:37:26 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-06 11:37:26 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The Sigline parameter in cubic interpolation -2016-05-06 11:37:26 DEBUG WPS2SM:340 - Conversion to SM Type->Name:sigline -2016-05-06 11:37:26 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:26 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=sigline, description=The Sigline parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-06 11:37:26 DEBUG WPS2SM:300 - Conversion to SM Type->minspeedThr is a Literal Input -2016-05-06 11:37:26 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:37:26 DEBUG WPS2SM:100 - Guessed default value: 2 -2016-05-06 11:37:26 DEBUG WPS2SM:339 - Conversion to SM Type->Title:A filter on the minimum speed to take into account for interpolation -2016-05-06 11:37:26 DEBUG WPS2SM:340 - Conversion to SM Type->Name:minspeedThr -2016-05-06 11:37:26 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:26 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=2, value=null, name=minspeedThr, description=A filter on the minimum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT] -2016-05-06 11:37:26 DEBUG WPS2SM:300 - Conversion to SM Type->maxspeedThr is a Literal Input -2016-05-06 11:37:26 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:37:26 DEBUG WPS2SM:100 - Guessed default value: 6 -2016-05-06 11:37:26 DEBUG WPS2SM:339 - Conversion to SM Type->Title:A filter on the maximum speed to take into account for interpolation -2016-05-06 11:37:26 DEBUG WPS2SM:340 - Conversion to SM Type->Name:maxspeedThr -2016-05-06 11:37:26 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:26 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=6, value=null, name=maxspeedThr, description=A filter on the maximum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:6], typology=OBJECT] -2016-05-06 11:37:26 DEBUG WPS2SM:300 - Conversion to SM Type->headingAdjustment is a Literal Input -2016-05-06 11:37:26 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:37:26 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-06 11:37:26 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. -2016-05-06 11:37:26 DEBUG WPS2SM:340 - Conversion to SM Type->Name:headingAdjustment -2016-05-06 11:37:26 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:26 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=headingAdjustment, description=Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-06 11:37:26 DEBUG WPS2SM:300 - Conversion to SM Type->equalDist is a Literal Input -2016-05-06 11:37:26 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:37:26 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-06 11:37:26 DEBUG WPS2SM:311 - ValueType[]:[true, false] -2016-05-06 11:37:26 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Whether the number of positions returned should be equally spaced or not -2016-05-06 11:37:26 DEBUG WPS2SM:340 - Conversion to SM Type->Name:equalDist -2016-05-06 11:37:26 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:26 DEBUG SClient4WPS:652 - InputParameter: Parameter [name=equalDist, description=Whether the number of positions returned should be equally spaced or not [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-06 11:37:26 DEBUG SClient4WPS:656 - Parameters: [FileParameter [value=null, defaultMimeType=text/xml, supportedMimeTypes=[text/xml, application/d4science]], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=npoints, description=The number of pings or positions required between each real or actual vessel position or ping [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=120, value=null, name=interval, description=Average time in minutes between two adjacent datapoints [Min N. of Entries:1; Max N. of Entries:1; default:120], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=margin, description=Maximum deviation from specified interval to find adjacent datapoints (tolerance) [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=100, value=null, name=res, description=Number of points to use to create interpolation (including start and end point) [Min N. of Entries:1; Max N. of Entries:1; default:100], typology=OBJECT], Parameter [name=method, description=Set to cHs for cubic Hermite spline or SL for Straight Line interpolation [Min N. of Entries:1; Max N. of Entries:1; default:cHs], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=fm, description=The FM parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=distscale, description=The DistScale parameter for cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=sigline, description=The Sigline parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=2, value=null, name=minspeedThr, description=A filter on the minimum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=6, value=null, name=maxspeedThr, description=A filter on the maximum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=headingAdjustment, description=Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], Parameter [name=equalDist, description=Whether the number of positions returned should be equally spaced or not [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM]] -2016-05-06 11:37:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:37:26 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:37:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:37:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:37:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:37:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:37:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:37:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:37:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:37:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:37:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:37:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:37:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:37:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:37:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:37:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:37:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:37:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:37:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:37:26 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-06 11:37:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-06 11:37:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:37:26 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:37:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:37:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:37:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:37:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:37:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:37:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:37:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:37:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:37:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:37:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:37:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:37:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:37:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:37:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:37:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:37:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:37:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:37:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:37:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:37:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:37:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:37:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:37:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:37:26 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:37:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:37:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:37:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:37:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:37:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:37:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:37:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:37:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:37:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:37:27 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-06 11:37:27 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-06 11:37:27 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-06 11:37:27 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-06 11:37:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 11:37:27 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-06 11:37:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 11:37:27 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-06 11:37:27 INFO WorkspaceExplorerServiceImpl:138 - end time - 177 msc 0 sec -2016-05-06 11:37:27 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-06 11:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:37:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:37:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:37:56 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION -2016-05-06 11:37:56 DEBUG WPS2SM:325 - Conversion to SM Type->InputFile is a Complex Input -2016-05-06 11:37:56 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-06 11:37:56 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-06 11:37:56 DEBUG WPS2SM:208 - Default Schema: null -2016-05-06 11:37:56 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-06 11:37:56 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Input file in TACSAT format. E.g. http://goo.gl/i16kPw -2016-05-06 11:37:56 DEBUG WPS2SM:340 - Conversion to SM Type->Name:InputFile -2016-05-06 11:37:56 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:56 DEBUG SClient4WPS:652 - InputParameter: FileParameter [value=null, defaultMimeType=text/xml, supportedMimeTypes=[text/xml, application/d4science]] -2016-05-06 11:37:56 DEBUG WPS2SM:300 - Conversion to SM Type->npoints is a Literal Input -2016-05-06 11:37:56 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:56 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:37:56 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-06 11:37:56 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The number of pings or positions required between each real or actual vessel position or ping -2016-05-06 11:37:56 DEBUG WPS2SM:340 - Conversion to SM Type->Name:npoints -2016-05-06 11:37:56 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:56 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=npoints, description=The number of pings or positions required between each real or actual vessel position or ping [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-06 11:37:56 DEBUG WPS2SM:300 - Conversion to SM Type->interval is a Literal Input -2016-05-06 11:37:56 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:56 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:37:56 DEBUG WPS2SM:100 - Guessed default value: 120 -2016-05-06 11:37:56 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Average time in minutes between two adjacent datapoints -2016-05-06 11:37:56 DEBUG WPS2SM:340 - Conversion to SM Type->Name:interval -2016-05-06 11:37:56 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:56 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=120, value=null, name=interval, description=Average time in minutes between two adjacent datapoints [Min N. of Entries:1; Max N. of Entries:1; default:120], typology=OBJECT] -2016-05-06 11:37:56 DEBUG WPS2SM:300 - Conversion to SM Type->margin is a Literal Input -2016-05-06 11:37:56 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:56 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:37:56 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-06 11:37:56 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Maximum deviation from specified interval to find adjacent datapoints (tolerance) -2016-05-06 11:37:56 DEBUG WPS2SM:340 - Conversion to SM Type->Name:margin -2016-05-06 11:37:56 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:56 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=margin, description=Maximum deviation from specified interval to find adjacent datapoints (tolerance) [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-06 11:37:56 DEBUG WPS2SM:300 - Conversion to SM Type->res is a Literal Input -2016-05-06 11:37:56 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:56 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:37:56 DEBUG WPS2SM:100 - Guessed default value: 100 -2016-05-06 11:37:56 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Number of points to use to create interpolation (including start and end point) -2016-05-06 11:37:56 DEBUG WPS2SM:340 - Conversion to SM Type->Name:res -2016-05-06 11:37:56 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:56 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=100, value=null, name=res, description=Number of points to use to create interpolation (including start and end point) [Min N. of Entries:1; Max N. of Entries:1; default:100], typology=OBJECT] -2016-05-06 11:37:56 DEBUG WPS2SM:300 - Conversion to SM Type->method is a Literal Input -2016-05-06 11:37:56 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:56 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:37:56 DEBUG WPS2SM:100 - Guessed default value: cHs -2016-05-06 11:37:56 DEBUG WPS2SM:311 - ValueType[]:[cHs, SL] -2016-05-06 11:37:56 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Set to cHs for cubic Hermite spline or SL for Straight Line interpolation -2016-05-06 11:37:56 DEBUG WPS2SM:340 - Conversion to SM Type->Name:method -2016-05-06 11:37:56 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:56 DEBUG SClient4WPS:652 - InputParameter: Parameter [name=method, description=Set to cHs for cubic Hermite spline or SL for Straight Line interpolation [Min N. of Entries:1; Max N. of Entries:1; default:cHs], typology=ENUM] -2016-05-06 11:37:56 DEBUG WPS2SM:300 - Conversion to SM Type->fm is a Literal Input -2016-05-06 11:37:56 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:56 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:37:56 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-06 11:37:56 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The FM parameter in cubic interpolation -2016-05-06 11:37:56 DEBUG WPS2SM:340 - Conversion to SM Type->Name:fm -2016-05-06 11:37:56 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:56 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=fm, description=The FM parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-06 11:37:56 DEBUG WPS2SM:300 - Conversion to SM Type->distscale is a Literal Input -2016-05-06 11:37:56 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:56 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:37:56 DEBUG WPS2SM:100 - Guessed default value: 20 -2016-05-06 11:37:56 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The DistScale parameter for cubic interpolation -2016-05-06 11:37:56 DEBUG WPS2SM:340 - Conversion to SM Type->Name:distscale -2016-05-06 11:37:56 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:56 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=distscale, description=The DistScale parameter for cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT] -2016-05-06 11:37:56 DEBUG WPS2SM:300 - Conversion to SM Type->sigline is a Literal Input -2016-05-06 11:37:56 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:56 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:37:56 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-06 11:37:56 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The Sigline parameter in cubic interpolation -2016-05-06 11:37:56 DEBUG WPS2SM:340 - Conversion to SM Type->Name:sigline -2016-05-06 11:37:56 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:56 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=sigline, description=The Sigline parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-06 11:37:56 DEBUG WPS2SM:300 - Conversion to SM Type->minspeedThr is a Literal Input -2016-05-06 11:37:56 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:56 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:37:56 DEBUG WPS2SM:100 - Guessed default value: 2 -2016-05-06 11:37:56 DEBUG WPS2SM:339 - Conversion to SM Type->Title:A filter on the minimum speed to take into account for interpolation -2016-05-06 11:37:56 DEBUG WPS2SM:340 - Conversion to SM Type->Name:minspeedThr -2016-05-06 11:37:56 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:56 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=2, value=null, name=minspeedThr, description=A filter on the minimum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT] -2016-05-06 11:37:56 DEBUG WPS2SM:300 - Conversion to SM Type->maxspeedThr is a Literal Input -2016-05-06 11:37:56 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:56 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:37:56 DEBUG WPS2SM:100 - Guessed default value: 6 -2016-05-06 11:37:56 DEBUG WPS2SM:339 - Conversion to SM Type->Title:A filter on the maximum speed to take into account for interpolation -2016-05-06 11:37:56 DEBUG WPS2SM:340 - Conversion to SM Type->Name:maxspeedThr -2016-05-06 11:37:56 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:56 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=6, value=null, name=maxspeedThr, description=A filter on the maximum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:6], typology=OBJECT] -2016-05-06 11:37:56 DEBUG WPS2SM:300 - Conversion to SM Type->headingAdjustment is a Literal Input -2016-05-06 11:37:56 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:56 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:37:56 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-06 11:37:56 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. -2016-05-06 11:37:56 DEBUG WPS2SM:340 - Conversion to SM Type->Name:headingAdjustment -2016-05-06 11:37:56 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:56 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=headingAdjustment, description=Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-06 11:37:56 DEBUG WPS2SM:300 - Conversion to SM Type->equalDist is a Literal Input -2016-05-06 11:37:56 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:37:56 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:37:56 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-06 11:37:56 DEBUG WPS2SM:311 - ValueType[]:[true, false] -2016-05-06 11:37:56 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Whether the number of positions returned should be equally spaced or not -2016-05-06 11:37:56 DEBUG WPS2SM:340 - Conversion to SM Type->Name:equalDist -2016-05-06 11:37:56 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:37:56 DEBUG SClient4WPS:652 - InputParameter: Parameter [name=equalDist, description=Whether the number of positions returned should be equally spaced or not [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-06 11:37:56 DEBUG SClient4WPS:656 - Parameters: [FileParameter [value=null, defaultMimeType=text/xml, supportedMimeTypes=[text/xml, application/d4science]], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=npoints, description=The number of pings or positions required between each real or actual vessel position or ping [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=120, value=null, name=interval, description=Average time in minutes between two adjacent datapoints [Min N. of Entries:1; Max N. of Entries:1; default:120], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=margin, description=Maximum deviation from specified interval to find adjacent datapoints (tolerance) [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=100, value=null, name=res, description=Number of points to use to create interpolation (including start and end point) [Min N. of Entries:1; Max N. of Entries:1; default:100], typology=OBJECT], Parameter [name=method, description=Set to cHs for cubic Hermite spline or SL for Straight Line interpolation [Min N. of Entries:1; Max N. of Entries:1; default:cHs], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=fm, description=The FM parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=distscale, description=The DistScale parameter for cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=sigline, description=The Sigline parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=2, value=null, name=minspeedThr, description=A filter on the minimum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=6, value=null, name=maxspeedThr, description=A filter on the maximum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=headingAdjustment, description=Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], Parameter [name=equalDist, description=Whether the number of positions returned should be equally spaced or not [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM]] -2016-05-06 11:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:37:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:37:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:37:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:37:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:37:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:37:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:37:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:37:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:37:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:37:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:37:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:37:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:37:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:37:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:37:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:37:56 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-06 11:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-06 11:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:37:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:37:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:37:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:37:56 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:37:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:37:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:37:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:37:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:37:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:37:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:37:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:37:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:37:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:37:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:37:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:37:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:37:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:37:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:37:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:37:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:37:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:37:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:37:56 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-06 11:37:56 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-06 11:37:56 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-06 11:37:56 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-06 11:37:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 11:37:56 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-06 11:37:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 11:37:56 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-06 11:37:56 INFO WorkspaceExplorerServiceImpl:138 - end time - 225 msc 0 sec -2016-05-06 11:37:56 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-06 11:38:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:38:19 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:38:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:38:41 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:38:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:38:41 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING -2016-05-06 11:38:41 DEBUG SClient4WPS:274 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:38:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 11:38:42 DEBUG SClient4WPS:297 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt - - - OutputTableLabel - The name of the table to produce - Name of the parameter: OutputTableLabel. The name of the table to produce - - - - maxent_ - - - - SpeciesName - The name of the species to model and the occurrence records refer to - Name of the parameter: SpeciesName. The name of the species to model and the occurrence records refer to - - - - generic_species - - - - MaxIterations - The number of learning iterations of the MaxEnt algorithm - Name of the parameter: MaxIterations. The number of learning iterations of the MaxEnt algorithm - - - - 1000 - - - - DefaultPrevalence - A priori probability of presence at ordinary occurrence points - Name of the parameter: DefaultPrevalence. A priori probability of presence at ordinary occurrence points - - - - 0.5 - - - - OccurrencesTable - A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - Name of the parameter: OccurrencesTable. A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - LongitudeColumn - The column containing longitude values [the name of a column from OccurrencesTable] - Name of the parameter: LongitudeColumn. The column containing longitude values [the name of a column from OccurrencesTable] - - - - decimallongitude - - - - LatitudeColumn - The column containing latitude values [the name of a column from OccurrencesTable] - Name of the parameter: LatitudeColumn. The column containing latitude values [the name of a column from OccurrencesTable] - - - - decimallatitude - - - - XResolution - Model projection resolution on the X axis in decimal degrees - Name of the parameter: XResolution. Model projection resolution on the X axis in decimal degrees - - - - 1 - - - - YResolution - Model projection resolution on the Y axis in decimal degrees - Name of the parameter: YResolution. Model projection resolution on the Y axis in decimal degrees - - - - 1 - - - - Layers - The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - Name of the parameter: Layers. The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - - - - - - - Z - Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - - - TimeIndex - Time Index. The default is the first time indexed in the input environmental datasets - Name of the parameter: TimeIndex. Time Index. The default is the first time indexed in the input environmental datasets - - - - 0 - - - - - - Best Threshold - Best threshold for transforming MaxEnt values into 0/1 probability assignments - Name of the parameter: Best Threshold. Best threshold for transforming MaxEnt values into 0/1 probability assignments - - - - - - Estimated Prevalence - The a posteriori estimated prevalence of the species - Name of the parameter: Estimated Prevalence. The a posteriori estimated prevalence of the species - - - - - - Variables contributions - The contribution of each variable to the MaxEnt values estimates - Name of the parameter: Variables contributions. The contribution of each variable to the MaxEnt values estimates - - - - - - Variables Permutations Importance - The importance of the permutations of the variables during the training - Name of the parameter: Variables Permutations Importance. The importance of the permutations of the variables during the training - - - - - - ASCII Maps of the environmental layers for checking features aligments - ASCII Maps of the environmental layers for checking features aligments - Name of the parameter: ASCII Maps of the environmental layers for checking features aligments. ASCII Maps of the environmental layers for checking features aligments - - - - application/d4science - - - - - application/d4science - - - - - - OutputTable7 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable7. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-06 11:38:42 DEBUG SClient4WPS:301 - WPSClient->Fetching Inputs -2016-05-06 11:38:42 DEBUG SClient4WPS:303 - WPSClient->Input: - OutputTableLabel - The name of the table to produce - Name of the parameter: OutputTableLabel. The name of the table to produce - - - - maxent_ - - -2016-05-06 11:38:42 DEBUG SClient4WPS:303 - WPSClient->Input: - SpeciesName - The name of the species to model and the occurrence records refer to - Name of the parameter: SpeciesName. The name of the species to model and the occurrence records refer to - - - - generic_species - - -2016-05-06 11:38:42 DEBUG SClient4WPS:303 - WPSClient->Input: - MaxIterations - The number of learning iterations of the MaxEnt algorithm - Name of the parameter: MaxIterations. The number of learning iterations of the MaxEnt algorithm - - - - 1000 - - -2016-05-06 11:38:42 DEBUG SClient4WPS:303 - WPSClient->Input: - DefaultPrevalence - A priori probability of presence at ordinary occurrence points - Name of the parameter: DefaultPrevalence. A priori probability of presence at ordinary occurrence points - - - - 0.5 - - -2016-05-06 11:38:42 DEBUG SClient4WPS:303 - WPSClient->Input: - OccurrencesTable - A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - Name of the parameter: OccurrencesTable. A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-06 11:38:42 DEBUG SClient4WPS:303 - WPSClient->Input: - LongitudeColumn - The column containing longitude values [the name of a column from OccurrencesTable] - Name of the parameter: LongitudeColumn. The column containing longitude values [the name of a column from OccurrencesTable] - - - - decimallongitude - - -2016-05-06 11:38:42 DEBUG SClient4WPS:303 - WPSClient->Input: - LatitudeColumn - The column containing latitude values [the name of a column from OccurrencesTable] - Name of the parameter: LatitudeColumn. The column containing latitude values [the name of a column from OccurrencesTable] - - - - decimallatitude - - -2016-05-06 11:38:42 DEBUG SClient4WPS:303 - WPSClient->Input: - XResolution - Model projection resolution on the X axis in decimal degrees - Name of the parameter: XResolution. Model projection resolution on the X axis in decimal degrees - - - - 1 - - -2016-05-06 11:38:42 DEBUG SClient4WPS:303 - WPSClient->Input: - YResolution - Model projection resolution on the Y axis in decimal degrees - Name of the parameter: YResolution. Model projection resolution on the Y axis in decimal degrees - - - - 1 - - -2016-05-06 11:38:42 DEBUG SClient4WPS:303 - WPSClient->Input: - Layers - The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - Name of the parameter: Layers. The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - - - - - -2016-05-06 11:38:42 DEBUG SClient4WPS:303 - WPSClient->Input: - Z - Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - -2016-05-06 11:38:42 DEBUG SClient4WPS:303 - WPSClient->Input: - TimeIndex - Time Index. The default is the first time indexed in the input environmental datasets - Name of the parameter: TimeIndex. Time Index. The default is the first time indexed in the input environmental datasets - - - - 0 - - -2016-05-06 11:38:42 DEBUG SClient4WPS:308 - WPSClient->Fetching Outputs -2016-05-06 11:38:42 DEBUG SClient4WPS:310 - WPSClient->Output: - Best Threshold - Best threshold for transforming MaxEnt values into 0/1 probability assignments - Name of the parameter: Best Threshold. Best threshold for transforming MaxEnt values into 0/1 probability assignments - - - - -2016-05-06 11:38:42 DEBUG SClient4WPS:310 - WPSClient->Output: - Estimated Prevalence - The a posteriori estimated prevalence of the species - Name of the parameter: Estimated Prevalence. The a posteriori estimated prevalence of the species - - - - -2016-05-06 11:38:42 DEBUG SClient4WPS:310 - WPSClient->Output: - Variables contributions - The contribution of each variable to the MaxEnt values estimates - Name of the parameter: Variables contributions. The contribution of each variable to the MaxEnt values estimates - - - - -2016-05-06 11:38:42 DEBUG SClient4WPS:310 - WPSClient->Output: - Variables Permutations Importance - The importance of the permutations of the variables during the training - Name of the parameter: Variables Permutations Importance. The importance of the permutations of the variables during the training - - - - -2016-05-06 11:38:42 DEBUG SClient4WPS:310 - WPSClient->Output: - ASCII Maps of the environmental layers for checking features aligments - ASCII Maps of the environmental layers for checking features aligments - Name of the parameter: ASCII Maps of the environmental layers for checking features aligments. ASCII Maps of the environmental layers for checking features aligments - - - - application/d4science - - - - - application/d4science - - - - -2016-05-06 11:38:42 DEBUG SClient4WPS:310 - WPSClient->Output: - OutputTable7 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable7. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-06 11:38:42 DEBUG SClient4WPS:310 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-06 11:38:42 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:38:42 DEBUG WPS2SM:300 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-06 11:38:42 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:38:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:38:42 DEBUG WPS2SM:100 - Guessed default value: maxent_ -2016-05-06 11:38:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The name of the table to produce -2016-05-06 11:38:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OutputTableLabel -2016-05-06 11:38:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:38:42 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=maxent_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:maxent_], typology=OBJECT] -2016-05-06 11:38:42 DEBUG WPS2SM:300 - Conversion to SM Type->SpeciesName is a Literal Input -2016-05-06 11:38:42 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:38:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:38:42 DEBUG WPS2SM:100 - Guessed default value: generic_species -2016-05-06 11:38:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The name of the species to model and the occurrence records refer to -2016-05-06 11:38:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:SpeciesName -2016-05-06 11:38:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:38:42 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=generic_species, value=null, name=SpeciesName, description=The name of the species to model and the occurrence records refer to [Min N. of Entries:1; Max N. of Entries:1; default:generic_species], typology=OBJECT] -2016-05-06 11:38:42 DEBUG WPS2SM:300 - Conversion to SM Type->MaxIterations is a Literal Input -2016-05-06 11:38:42 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:38:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:38:42 DEBUG WPS2SM:100 - Guessed default value: 1000 -2016-05-06 11:38:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The number of learning iterations of the MaxEnt algorithm -2016-05-06 11:38:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:MaxIterations -2016-05-06 11:38:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:38:42 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1000, value=null, name=MaxIterations, description=The number of learning iterations of the MaxEnt algorithm [Min N. of Entries:1; Max N. of Entries:1; default:1000], typology=OBJECT] -2016-05-06 11:38:42 DEBUG WPS2SM:300 - Conversion to SM Type->DefaultPrevalence is a Literal Input -2016-05-06 11:38:42 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:38:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:38:42 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-06 11:38:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:A priori probability of presence at ordinary occurrence points -2016-05-06 11:38:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:DefaultPrevalence -2016-05-06 11:38:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:38:42 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=DefaultPrevalence, description=A priori probability of presence at ordinary occurrence points [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-06 11:38:42 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencesTable is a Complex Input -2016-05-06 11:38:42 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-06 11:38:42 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-06 11:38:42 DEBUG WPS2SM:208 - Default Schema: null -2016-05-06 11:38:42 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-06 11:38:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] -2016-05-06 11:38:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencesTable -2016-05-06 11:38:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:38:42 DEBUG SClient4WPS:652 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-06 11:38:42 DEBUG WPS2SM:300 - Conversion to SM Type->LongitudeColumn is a Literal Input -2016-05-06 11:38:42 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:38:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:38:42 DEBUG WPS2SM:100 - Guessed default value: decimallongitude -2016-05-06 11:38:42 DEBUG WPS2SM:129 - Machter title: The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude] -2016-05-06 11:38:42 DEBUG WPS2SM:130 - Machter find: true -2016-05-06 11:38:42 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrencesTable -2016-05-06 11:38:42 DEBUG WPS2SM:132 - Machter start: 40 -2016-05-06 11:38:42 DEBUG WPS2SM:133 - Machter end: 82 -2016-05-06 11:38:42 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-06 11:38:42 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrencesTable -2016-05-06 11:38:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The column containing longitude values [the name of a column from OccurrencesTable] -2016-05-06 11:38:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:LongitudeColumn -2016-05-06 11:38:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:38:42 DEBUG SClient4WPS:652 - InputParameter: Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN] -2016-05-06 11:38:42 DEBUG WPS2SM:300 - Conversion to SM Type->LatitudeColumn is a Literal Input -2016-05-06 11:38:42 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:38:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:38:42 DEBUG WPS2SM:100 - Guessed default value: decimallatitude -2016-05-06 11:38:42 DEBUG WPS2SM:129 - Machter title: The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude] -2016-05-06 11:38:42 DEBUG WPS2SM:130 - Machter find: true -2016-05-06 11:38:42 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrencesTable -2016-05-06 11:38:42 DEBUG WPS2SM:132 - Machter start: 39 -2016-05-06 11:38:42 DEBUG WPS2SM:133 - Machter end: 81 -2016-05-06 11:38:42 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-06 11:38:42 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrencesTable -2016-05-06 11:38:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The column containing latitude values [the name of a column from OccurrencesTable] -2016-05-06 11:38:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:LatitudeColumn -2016-05-06 11:38:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:38:42 DEBUG SClient4WPS:652 - InputParameter: Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN] -2016-05-06 11:38:42 DEBUG WPS2SM:300 - Conversion to SM Type->XResolution is a Literal Input -2016-05-06 11:38:42 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:38:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:38:42 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-06 11:38:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Model projection resolution on the X axis in decimal degrees -2016-05-06 11:38:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:XResolution -2016-05-06 11:38:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:38:42 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=XResolution, description=Model projection resolution on the X axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-06 11:38:42 DEBUG WPS2SM:300 - Conversion to SM Type->YResolution is a Literal Input -2016-05-06 11:38:42 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:38:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:38:42 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-06 11:38:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Model projection resolution on the Y axis in decimal degrees -2016-05-06 11:38:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:YResolution -2016-05-06 11:38:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:38:42 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=YResolution, description=Model projection resolution on the Y axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-06 11:38:42 DEBUG WPS2SM:300 - Conversion to SM Type->Layers is a Literal Input -2016-05-06 11:38:42 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:38:42 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:38:42 DEBUG WPS2SM:100 - Guessed default value: -2016-05-06 11:38:42 DEBUG WPS2SM:148 - Machter title: The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-06 11:38:42 DEBUG WPS2SM:149 - Machter find: true -2016-05-06 11:38:42 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-06 11:38:42 DEBUG WPS2SM:151 - Machter start: 501 -2016-05-06 11:38:42 DEBUG WPS2SM:152 - Machter end: 536 -2016-05-06 11:38:42 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-06 11:38:42 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-06 11:38:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) -2016-05-06 11:38:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:Layers -2016-05-06 11:38:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:38:42 DEBUG SClient4WPS:652 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-06 11:38:42 DEBUG WPS2SM:300 - Conversion to SM Type->Z is a Literal Input -2016-05-06 11:38:42 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:38:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:38:42 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-06 11:38:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer -2016-05-06 11:38:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:Z -2016-05-06 11:38:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:38:42 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-06 11:38:42 DEBUG WPS2SM:300 - Conversion to SM Type->TimeIndex is a Literal Input -2016-05-06 11:38:42 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:38:42 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:38:42 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-06 11:38:42 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Time Index. The default is the first time indexed in the input environmental datasets -2016-05-06 11:38:42 DEBUG WPS2SM:340 - Conversion to SM Type->Name:TimeIndex -2016-05-06 11:38:42 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:38:42 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=TimeIndex, description=Time Index. The default is the first time indexed in the input environmental datasets [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-06 11:38:42 DEBUG SClient4WPS:656 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue=maxent_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:maxent_], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=generic_species, value=null, name=SpeciesName, description=The name of the species to model and the occurrence records refer to [Min N. of Entries:1; Max N. of Entries:1; default:generic_species], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1000, value=null, name=MaxIterations, description=The number of learning iterations of the MaxEnt algorithm [Min N. of Entries:1; Max N. of Entries:1; default:1000], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=DefaultPrevalence, description=A priori probability of presence at ordinary occurrence points [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN], Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN], ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=XResolution, description=Model projection resolution on the X axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=YResolution, description=Model projection resolution on the Y axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ListParameter [type=java.lang.String, value=null, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=TimeIndex, description=Time Index. The default is the first time indexed in the input environmental datasets [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-06 11:38:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:38:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:38:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:38:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:38:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:38:42 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:38:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:38:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:42 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-06 11:38:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:38:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-06 11:38:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:38:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:38:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:38:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:38:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:38:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:38:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:38:42 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:38:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:38:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:38:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:38:42 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:38:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:38:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:38:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:38:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:38:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:38:42 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:38:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:38:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:38:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:38:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:38:42 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-06 11:38:42 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-06 11:38:42 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-06 11:38:42 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-06 11:38:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 11:38:42 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-06 11:38:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 11:38:42 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-06 11:38:42 INFO WorkspaceExplorerServiceImpl:138 - end time - 236 msc 0 sec -2016-05-06 11:38:42 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-06 11:38:51 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:38:51 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:38:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:38:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:38:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:38:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:51 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:38:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:38:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:38:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:38:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:51 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:38:51 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:38:51 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 11:38:51 DEBUG ServiceEngine:306 - get() - start -2016-05-06 11:38:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:38:51 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:38:51 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-06 11:38:51 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-06 11:38:51 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:38:51 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 11:38:51 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-06 11:38:51 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:38:51 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-06 11:38:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:38:51 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:38:51 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:38:51 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:38:51 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:38:51 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:38:51 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:51 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:51 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:51 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:38:51 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:38:51 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:38:51 INFO connection:71 - Opened connection [connectionId{localValue:77, serverValue:324080}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1357206, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:51 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:38:51 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:51 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:51 INFO connection:71 - Opened connection [connectionId{localValue:78, serverValue:1945626}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1069500, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:51 INFO connection:71 - Opened connection [connectionId{localValue:80, serverValue:2199530}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=798986, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:38:51 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:38:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:38:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:38:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:38:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:38:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:51 INFO connection:71 - Opened connection [connectionId{localValue:79, serverValue:1613442}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1354285, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-06 11:38:51 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:38:51 INFO connection:71 - Opened connection [connectionId{localValue:81, serverValue:1945627}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:38:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:81, serverValue:1945627}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 DEBUG command:56 - Command execution completed -2016-05-06 11:38:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:81, serverValue:1945627}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 DEBUG command:56 - Command execution completed -2016-05-06 11:38:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:81, serverValue:1945627}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 DEBUG command:56 - Command execution completed -2016-05-06 11:38:51 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 11:38:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:81, serverValue:1945627}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 DEBUG command:56 - Command execution completed -2016-05-06 11:38:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:81, serverValue:1945627}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 DEBUG command:56 - Command execution completed -2016-05-06 11:38:51 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:81, serverValue:1945627}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:51 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 11:38:51 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 11:38:51 INFO WorkspaceExplorerServiceImpl:178 - end time - 53 msc 0 sec -2016-05-06 11:38:51 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 11:38:51 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:38:51 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-06 11:38:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:38:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-06 11:38:52 DEBUG query:56 - Query completed -2016-05-06 11:38:52 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-06 11:38:52 DEBUG connection:56 - Closing connection connectionId{localValue:80, serverValue:2199530} -2016-05-06 11:38:52 DEBUG connection:56 - Closing connection connectionId{localValue:77, serverValue:324080} -2016-05-06 11:38:52 DEBUG connection:56 - Closing connection connectionId{localValue:79, serverValue:1613442} -2016-05-06 11:38:52 INFO connection:71 - Closed connection [connectionId{localValue:81, serverValue:1945627}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:38:52 DEBUG connection:56 - Closing connection connectionId{localValue:81, serverValue:1945627} -2016-05-06 11:38:52 INFO MongoIO:508 - Mongo has been closed -2016-05-06 11:38:52 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 11:38:52 DEBUG connection:56 - Closing connection connectionId{localValue:78, serverValue:1945626} -2016-05-06 11:38:52 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 11:38:52 INFO WorkspaceExplorerServiceImpl:491 - returning size: 4033313 -2016-05-06 11:38:53 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId e8663e07-6286-4212-920c-54dd7bbf205c -2016-05-06 11:38:53 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId e8663e07-6286-4212-920c-54dd7bbf205c -2016-05-06 11:38:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:38:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:38:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:38:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:53 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: e8663e07-6286-4212-920c-54dd7bbf205c -2016-05-06 11:38:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:38:53 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:38:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:38:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:53 INFO JCRServlets:267 - Servlet getItemById e8663e07-6286-4212-920c-54dd7bbf205c -2016-05-06 11:38:53 INFO JCRServlets:267 - Servlet getItemById e8663e07-6286-4212-920c-54dd7bbf205c -2016-05-06 11:38:53 INFO JCRServlets:142 - Calling servlet getChildrenById e8663e07-6286-4212-920c-54dd7bbf205c by giancarlo.panichi -2016-05-06 11:38:53 DEBUG ServiceEngine:306 - get() - start -2016-05-06 11:38:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:38:53 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:38:53 DEBUG ServiceEngine:62 - path(String) - name: Max_Ent_Niche_Modelling -2016-05-06 11:38:53 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-06 11:38:53 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:38:53 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 11:38:53 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-06 11:38:53 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:38:53 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/ -2016-05-06 11:38:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:38:53 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:38:53 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:38:53 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:38:53 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:38:53 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:38:53 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:53 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:53 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:53 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:38:53 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:38:53 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:38:53 INFO connection:71 - Opened connection [connectionId{localValue:83, serverValue:1945630}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1402235, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:53 INFO connection:71 - Opened connection [connectionId{localValue:82, serverValue:324081}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:38:53 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:53 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:53 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1391741, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:53 INFO connection:71 - Opened connection [connectionId{localValue:85, serverValue:2199531}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=870113, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:53 INFO connection:71 - Opened connection [connectionId{localValue:84, serverValue:1613443}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1149586, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-06 11:38:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:38:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:38:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:38:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:38:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:38:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:38:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:53 INFO connection:71 - Opened connection [connectionId{localValue:86, serverValue:1945631}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:86, serverValue:1945631}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 DEBUG command:56 - Command execution completed -2016-05-06 11:38:53 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:86, serverValue:1945631}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 DEBUG command:56 - Command execution completed -2016-05-06 11:38:53 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:86, serverValue:1945631}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 INFO JCRServlets:267 - Servlet getItemById e8663e07-6286-4212-920c-54dd7bbf205c -2016-05-06 11:38:53 INFO JCRServlets:267 - Servlet getItemById e8663e07-6286-4212-920c-54dd7bbf205c -2016-05-06 11:38:53 DEBUG command:56 - Command execution completed -2016-05-06 11:38:53 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling -2016-05-06 11:38:53 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:86, serverValue:1945631}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 DEBUG command:56 - Command execution completed -2016-05-06 11:38:53 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:86, serverValue:1945631}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 DEBUG command:56 - Command execution completed -2016-05-06 11:38:53 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:86, serverValue:1945631}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:53 INFO JCRServlets:142 - Calling servlet getChildrenById e8663e07-6286-4212-920c-54dd7bbf205c by giancarlo.panichi -2016-05-06 11:38:53 INFO JCRServlets:697 - Calling Servlet get Parents By Id e8663e07-6286-4212-920c-54dd7bbf205c by giancarlo.panichi -2016-05-06 11:38:53 INFO WorkspaceExplorerServiceImpl:178 - end time - 52 msc 0 sec -2016-05-06 11:38:53 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 11:38:54 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=e8663e07-6286-4212-920c-54dd7bbf205c, name=Max_Ent_Niche_Modelling, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:38:54 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 11:38:54 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:38:54 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-06 11:38:54 DEBUG query:56 - Query completed -2016-05-06 11:38:54 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-05-06 11:38:54 DEBUG connection:56 - Closing connection connectionId{localValue:85, serverValue:2199531} -2016-05-06 11:38:54 INFO connection:71 - Closed connection [connectionId{localValue:86, serverValue:1945631}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:38:54 DEBUG connection:56 - Closing connection connectionId{localValue:82, serverValue:324081} -2016-05-06 11:38:54 DEBUG connection:56 - Closing connection connectionId{localValue:86, serverValue:1945631} -2016-05-06 11:38:54 DEBUG connection:56 - Closing connection connectionId{localValue:84, serverValue:1613443} -2016-05-06 11:38:54 INFO MongoIO:508 - Mongo has been closed -2016-05-06 11:38:54 INFO DefaultMongoClient:1329 - getFolderTotalVolume 96531 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling -2016-05-06 11:38:54 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling -2016-05-06 11:38:54 INFO WorkspaceExplorerServiceImpl:491 - returning size: 96531 -2016-05-06 11:38:54 DEBUG connection:56 - Closing connection connectionId{localValue:83, serverValue:1945630} -2016-05-06 11:38:54 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 11:38:54 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 11:38:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:38:54 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:38:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:38:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:54 INFO WorkspaceExplorerServiceImpl:506 - get MimeType By ItemId 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 11:38:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:38:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:38:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:38:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:54 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 11:38:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:38:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:38:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:38:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:54 INFO JCRServlets:267 - Servlet getItemById 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 11:38:54 INFO JCRServlets:267 - Servlet getItemById 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 11:38:54 INFO JCRServlets:267 - Servlet getItemById 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 11:38:54 INFO WorkspaceExplorerServiceImpl:491 - returning size: 96531 -2016-05-06 11:38:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:38:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:38:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:38:56 DEBUG DataMinerManagerServiceImpl:241 - retrieveTableInformation(): Item [id=8e60c918-6148-4c5b-9fd0-2dcefa90fa90, name=Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 18:11:30 CET 2016] -2016-05-06 11:38:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:56 INFO JCRServlets:267 - Servlet getItemById 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 11:38:56 DEBUG ServiceEngine:193 - get() - start -2016-05-06 11:38:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:38:56 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:38:56 DEBUG ServiceEngine:62 - path(String) - name: Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 11:38:56 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/ -2016-05-06 11:38:56 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:38:56 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 11:38:56 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-06 11:38:56 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:38:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:38:56 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:38:56 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 11:38:56 DEBUG Operation:173 - get(String) - start -2016-05-06 11:38:56 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:38:56 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:38:56 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:38:56 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:38:56 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:56 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:56 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:56 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:38:56 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:38:56 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:38:56 INFO connection:71 - Opened connection [connectionId{localValue:87, serverValue:324083}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 INFO connection:71 - Opened connection [connectionId{localValue:88, serverValue:1945632}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1142515, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:56 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:38:56 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:56 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1153900, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:56 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:56 INFO connection:71 - Opened connection [connectionId{localValue:90, serverValue:2199532}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1033649, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:56 INFO connection:71 - Opened connection [connectionId{localValue:89, serverValue:1613445}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1623048, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-06 11:38:56 INFO connection:71 - Opened connection [connectionId{localValue:91, serverValue:1945633}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:91, serverValue:1945633}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG command:56 - Command execution completed -2016-05-06 11:38:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:91, serverValue:1945633}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG command:56 - Command execution completed -2016-05-06 11:38:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:91, serverValue:1945633}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG command:56 - Command execution completed -2016-05-06 11:38:56 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-06 11:38:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:91, serverValue:1945633}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG command:56 - Command execution completed -2016-05-06 11:38:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:91, serverValue:1945633}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG command:56 - Command execution completed -2016-05-06 11:38:56 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 11:38:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:91, serverValue:1945633}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG command:56 - Command execution completed -2016-05-06 11:38:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:91, serverValue:1945633}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG command:56 - Command execution completed -2016-05-06 11:38:56 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 11:38:56 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:91, serverValue:1945633}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG query:56 - Query completed -2016-05-06 11:38:56 INFO MongoIO:186 - object found Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 11:38:56 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-06 11:38:56 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-06 11:38:56 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:91, serverValue:1945633}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG update:56 - Update completed -2016-05-06 11:38:56 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:91, serverValue:1945633}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG query:56 - Query completed -2016-05-06 11:38:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:38:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:38:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:38:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:38:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:38:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:38:56 INFO JCRServlets:267 - Servlet getItemById 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 11:38:56 INFO JCRWorkspaceItem:998 - get PublicLink for item: Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 11:38:56 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-06 11:38:56 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-06 11:38:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:38:56 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:38:56 DEBUG ServiceEngine:62 - path(String) - name: Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 11:38:56 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/ -2016-05-06 11:38:56 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-06 11:38:56 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 11:38:56 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-06 11:38:56 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-06 11:38:56 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 11:38:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 11:38:56 DEBUG BucketCoding:42 - coding name done -2016-05-06 11:38:56 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 11:38:56 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 11:38:56 DEBUG MongoIO:77 - open mongo connection -2016-05-06 11:38:56 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 11:38:56 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:56 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:56 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:56 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@2600054b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@43d77fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@790b25a8, socketFactory=javax.net.DefaultSocketFactory@4ad576ad, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 11:38:56 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 11:38:56 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 11:38:56 INFO connection:71 - Opened connection [connectionId{localValue:92, serverValue:324084}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1035312, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:56 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 11:38:56 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:56 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 11:38:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:56 INFO connection:71 - Opened connection [connectionId{localValue:95, serverValue:2199533}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=752284, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:56 INFO connection:71 - Opened connection [connectionId{localValue:93, serverValue:1945634}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1662169, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:56 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 11:38:56 INFO connection:71 - Opened connection [connectionId{localValue:94, serverValue:1613446}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1127852, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 11:38:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-06 11:38:56 INFO connection:71 - Opened connection [connectionId{localValue:96, serverValue:1945635}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:96, serverValue:1945635}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG command:56 - Command execution completed -2016-05-06 11:38:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:96, serverValue:1945635}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG command:56 - Command execution completed -2016-05-06 11:38:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:96, serverValue:1945635}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG command:56 - Command execution completed -2016-05-06 11:38:56 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 11:38:56 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 11:38:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:96, serverValue:1945635}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG command:56 - Command execution completed -2016-05-06 11:38:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:96, serverValue:1945635}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG command:56 - Command execution completed -2016-05-06 11:38:56 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 11:38:56 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:96, serverValue:1945635}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG query:56 - Query completed -2016-05-06 11:38:56 INFO MongoIO:186 - object found Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 11:38:56 DEBUG connection:56 - Closing connection connectionId{localValue:95, serverValue:2199533} -2016-05-06 11:38:56 DEBUG connection:56 - Closing connection connectionId{localValue:92, serverValue:324084} -2016-05-06 11:38:56 INFO connection:71 - Closed connection [connectionId{localValue:96, serverValue:1945635}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:38:56 DEBUG connection:56 - Closing connection connectionId{localValue:94, serverValue:1613446} -2016-05-06 11:38:56 DEBUG connection:56 - Closing connection connectionId{localValue:96, serverValue:1945635} -2016-05-06 11:38:56 INFO MongoIO:508 - Mongo has been closed -2016-05-06 11:38:56 DEBUG connection:56 - Closing connection connectionId{localValue:93, serverValue:1945634} -2016-05-06 11:38:56 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 11:38:56 INFO Operation:55 - URL generated: smp://data-d.d4science.org/mVHKwdH+VOfVW2bfDjeAkGie6DAgHZc0GmbP5+HKCzc= -2016-05-06 11:38:56 INFO Operation:57 - URL generated: smp://data-d.d4science.org/mVHKwdH+VOfVW2bfDjeAkGie6DAgHZc0GmbP5+HKCzc= -2016-05-06 11:38:56 DEBUG Operation:87 - translating: http://data-d.d4science.org/mVHKwdH+VOfVW2bfDjeAkGie6DAgHZc0GmbP5+HKCzc= -2016-05-06 11:38:56 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-06 11:38:56 DEBUG Operation:93 - get params: http://data-d.d4science.org/ mVHKwdH+VOfVW2bfDjeAkGie6DAgHZc0GmbP5+HKCzc= -2016-05-06 11:38:56 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/bVZIS3dkSCtWT2ZWVzJiZkRqZUFrR2llNkRBZ0haYzBHbWJQNStIS0N6Yz0 -2016-05-06 11:38:56 INFO Operation:65 - URL translated: http://data-d.d4science.org/bVZIS3dkSCtWT2ZWVzJiZkRqZUFrR2llNkRBZ0haYzBHbWJQNStIS0N6Yz0 -2016-05-06 11:38:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:38:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-06 11:39:06 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:39:06 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:39:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-06 11:39:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-06 11:39:06 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:39:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-06 11:39:06 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 11:39:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-06 11:39:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:39:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:39:16 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 11:39:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-06 11:39:16 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 11:39:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-06 11:39:16 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 11:39:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-06 11:39:16 DEBUG connection:56 - Closing connection connectionId{localValue:90, serverValue:2199532} -2016-05-06 11:39:16 INFO connection:71 - Closed connection [connectionId{localValue:91, serverValue:1945633}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 11:39:16 DEBUG connection:56 - Closing connection connectionId{localValue:89, serverValue:1613445} -2016-05-06 11:39:16 DEBUG connection:56 - Closing connection connectionId{localValue:87, serverValue:324083} -2016-05-06 11:39:16 DEBUG connection:56 - Closing connection connectionId{localValue:91, serverValue:1945633} -2016-05-06 11:39:16 DEBUG connection:56 - Closing connection connectionId{localValue:88, serverValue:1945632} -2016-05-06 11:40:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:40:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:40:10 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:40:10 DEBUG DataMinerManagerServiceImpl:134 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[ObjectParameter [type=java.lang.String, defaultValue=maxent_, value=maxent_, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:maxent_], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=generic_species, value=Latimeria, name=SpeciesName, description=The name of the species to model and the occurrence records refer to [Min N. of Entries:1; Max N. of Entries:1; default:generic_species], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1000, value=1000, name=MaxIterations, description=The number of learning iterations of the MaxEnt algorithm [Min N. of Entries:1; Max N. of Entries:1; default:1000], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=0.5, name=DefaultPrevalence, description=A priori probability of presence at ordinary occurrence points [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], TabularParameter [tableName=http://data-d.d4science.org/bVZIS3dkSCtWT2ZWVzJiZkRqZUFrR2llNkRBZ0haYzBHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN], Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN], ObjectParameter [type=java.lang.Double, defaultValue=1, value=1.0, name=XResolution, description=Model projection resolution on the X axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=1, value=1.0, name=YResolution, description=Model projection resolution on the Y axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ListParameter [type=java.lang.String, value=fc9ac2f4-a2bd-43d1-a361-ac67c5ceac31, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ObjectParameter [type=java.lang.Double, defaultValue=0, value=0.0, name=Z, description=Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=0, name=TimeIndex, description=Time Index. The default is the first time indexed in the input environmental datasets [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]], hasImage=false]] -2016-05-06 11:40:10 DEBUG WPS2SM:300 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-06 11:40:10 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:40:10 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:40:10 DEBUG WPS2SM:100 - Guessed default value: maxent_ -2016-05-06 11:40:10 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The name of the table to produce -2016-05-06 11:40:10 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OutputTableLabel -2016-05-06 11:40:10 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:40:10 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=maxent_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:maxent_], typology=OBJECT] -2016-05-06 11:40:10 DEBUG WPS2SM:300 - Conversion to SM Type->SpeciesName is a Literal Input -2016-05-06 11:40:10 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:40:10 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:40:10 DEBUG WPS2SM:100 - Guessed default value: generic_species -2016-05-06 11:40:10 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The name of the species to model and the occurrence records refer to -2016-05-06 11:40:10 DEBUG WPS2SM:340 - Conversion to SM Type->Name:SpeciesName -2016-05-06 11:40:10 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:40:10 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=generic_species, value=null, name=SpeciesName, description=The name of the species to model and the occurrence records refer to [Min N. of Entries:1; Max N. of Entries:1; default:generic_species], typology=OBJECT] -2016-05-06 11:40:10 DEBUG WPS2SM:300 - Conversion to SM Type->MaxIterations is a Literal Input -2016-05-06 11:40:10 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:40:10 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:40:10 DEBUG WPS2SM:100 - Guessed default value: 1000 -2016-05-06 11:40:10 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The number of learning iterations of the MaxEnt algorithm -2016-05-06 11:40:10 DEBUG WPS2SM:340 - Conversion to SM Type->Name:MaxIterations -2016-05-06 11:40:10 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:40:10 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1000, value=null, name=MaxIterations, description=The number of learning iterations of the MaxEnt algorithm [Min N. of Entries:1; Max N. of Entries:1; default:1000], typology=OBJECT] -2016-05-06 11:40:10 DEBUG WPS2SM:300 - Conversion to SM Type->DefaultPrevalence is a Literal Input -2016-05-06 11:40:10 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:40:10 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:40:10 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-06 11:40:10 DEBUG WPS2SM:339 - Conversion to SM Type->Title:A priori probability of presence at ordinary occurrence points -2016-05-06 11:40:10 DEBUG WPS2SM:340 - Conversion to SM Type->Name:DefaultPrevalence -2016-05-06 11:40:10 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:40:10 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=DefaultPrevalence, description=A priori probability of presence at ordinary occurrence points [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-06 11:40:10 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencesTable is a Complex Input -2016-05-06 11:40:10 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-06 11:40:10 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-06 11:40:10 DEBUG WPS2SM:208 - Default Schema: null -2016-05-06 11:40:10 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-06 11:40:10 DEBUG WPS2SM:339 - Conversion to SM Type->Title:A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] -2016-05-06 11:40:10 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencesTable -2016-05-06 11:40:10 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:40:10 DEBUG SClient4WPS:683 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-06 11:40:10 DEBUG WPS2SM:300 - Conversion to SM Type->LongitudeColumn is a Literal Input -2016-05-06 11:40:10 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:40:10 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:40:10 DEBUG WPS2SM:100 - Guessed default value: decimallongitude -2016-05-06 11:40:10 DEBUG WPS2SM:129 - Machter title: The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude] -2016-05-06 11:40:10 DEBUG WPS2SM:130 - Machter find: true -2016-05-06 11:40:10 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrencesTable -2016-05-06 11:40:10 DEBUG WPS2SM:132 - Machter start: 40 -2016-05-06 11:40:10 DEBUG WPS2SM:133 - Machter end: 82 -2016-05-06 11:40:10 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-06 11:40:10 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrencesTable -2016-05-06 11:40:10 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The column containing longitude values [the name of a column from OccurrencesTable] -2016-05-06 11:40:10 DEBUG WPS2SM:340 - Conversion to SM Type->Name:LongitudeColumn -2016-05-06 11:40:10 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:40:10 DEBUG SClient4WPS:683 - InputParameter: Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN] -2016-05-06 11:40:10 DEBUG WPS2SM:300 - Conversion to SM Type->LatitudeColumn is a Literal Input -2016-05-06 11:40:10 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:40:10 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:40:10 DEBUG WPS2SM:100 - Guessed default value: decimallatitude -2016-05-06 11:40:10 DEBUG WPS2SM:129 - Machter title: The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude] -2016-05-06 11:40:10 DEBUG WPS2SM:130 - Machter find: true -2016-05-06 11:40:10 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrencesTable -2016-05-06 11:40:10 DEBUG WPS2SM:132 - Machter start: 39 -2016-05-06 11:40:10 DEBUG WPS2SM:133 - Machter end: 81 -2016-05-06 11:40:10 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-06 11:40:10 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrencesTable -2016-05-06 11:40:10 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The column containing latitude values [the name of a column from OccurrencesTable] -2016-05-06 11:40:10 DEBUG WPS2SM:340 - Conversion to SM Type->Name:LatitudeColumn -2016-05-06 11:40:10 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:40:10 DEBUG SClient4WPS:683 - InputParameter: Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN] -2016-05-06 11:40:10 DEBUG WPS2SM:300 - Conversion to SM Type->XResolution is a Literal Input -2016-05-06 11:40:10 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:40:10 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:40:10 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-06 11:40:10 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Model projection resolution on the X axis in decimal degrees -2016-05-06 11:40:10 DEBUG WPS2SM:340 - Conversion to SM Type->Name:XResolution -2016-05-06 11:40:10 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:40:10 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=XResolution, description=Model projection resolution on the X axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-06 11:40:10 DEBUG WPS2SM:300 - Conversion to SM Type->YResolution is a Literal Input -2016-05-06 11:40:10 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:40:10 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:40:10 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-06 11:40:10 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Model projection resolution on the Y axis in decimal degrees -2016-05-06 11:40:10 DEBUG WPS2SM:340 - Conversion to SM Type->Name:YResolution -2016-05-06 11:40:10 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:40:10 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=YResolution, description=Model projection resolution on the Y axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-06 11:40:10 DEBUG WPS2SM:300 - Conversion to SM Type->Layers is a Literal Input -2016-05-06 11:40:10 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:40:10 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 11:40:10 DEBUG WPS2SM:100 - Guessed default value: -2016-05-06 11:40:10 DEBUG WPS2SM:148 - Machter title: The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-06 11:40:10 DEBUG WPS2SM:149 - Machter find: true -2016-05-06 11:40:10 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-06 11:40:10 DEBUG WPS2SM:151 - Machter start: 501 -2016-05-06 11:40:10 DEBUG WPS2SM:152 - Machter end: 536 -2016-05-06 11:40:10 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-06 11:40:10 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-06 11:40:10 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) -2016-05-06 11:40:10 DEBUG WPS2SM:340 - Conversion to SM Type->Name:Layers -2016-05-06 11:40:10 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:40:10 DEBUG SClient4WPS:683 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-06 11:40:10 DEBUG WPS2SM:300 - Conversion to SM Type->Z is a Literal Input -2016-05-06 11:40:10 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:40:10 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 11:40:10 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-06 11:40:10 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer -2016-05-06 11:40:10 DEBUG WPS2SM:340 - Conversion to SM Type->Name:Z -2016-05-06 11:40:10 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:40:10 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-06 11:40:10 DEBUG WPS2SM:300 - Conversion to SM Type->TimeIndex is a Literal Input -2016-05-06 11:40:10 DEBUG WPS2SM:92 - WPS type: -2016-05-06 11:40:10 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 11:40:10 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-06 11:40:10 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Time Index. The default is the first time indexed in the input environmental datasets -2016-05-06 11:40:10 DEBUG WPS2SM:340 - Conversion to SM Type->Name:TimeIndex -2016-05-06 11:40:10 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 11:40:10 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=TimeIndex, description=Time Index. The default is the first time indexed in the input environmental datasets [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-06 11:40:10 DEBUG SClient4WPS:691 - UserInputs[key=OutputTableLabel, value=maxent_] -2016-05-06 11:40:10 DEBUG SClient4WPS:691 - UserInputs[key=SpeciesName, value=Latimeria] -2016-05-06 11:40:10 DEBUG SClient4WPS:691 - UserInputs[key=MaxIterations, value=1000] -2016-05-06 11:40:10 DEBUG SClient4WPS:691 - UserInputs[key=DefaultPrevalence, value=0.5] -2016-05-06 11:40:10 DEBUG SClient4WPS:691 - UserInputs[key=OccurrencesTable, value=http://data-d.d4science.org/bVZIS3dkSCtWT2ZWVzJiZkRqZUFrR2llNkRBZ0haYzBHbWJQNStIS0N6Yz0] -2016-05-06 11:40:10 DEBUG SClient4WPS:691 - UserInputs[key=LongitudeColumn, value=decimalLongitude] -2016-05-06 11:40:10 DEBUG SClient4WPS:691 - UserInputs[key=LatitudeColumn, value=decimalLatitude] -2016-05-06 11:40:10 DEBUG SClient4WPS:691 - UserInputs[key=XResolution, value=1.0] -2016-05-06 11:40:10 DEBUG SClient4WPS:691 - UserInputs[key=YResolution, value=1.0] -2016-05-06 11:40:10 DEBUG SClient4WPS:691 - UserInputs[key=Layers, value=fc9ac2f4-a2bd-43d1-a361-ac67c5ceac31] -2016-05-06 11:40:10 DEBUG SClient4WPS:691 - UserInputs[key=Z, value=0.0] -2016-05-06 11:40:10 DEBUG SClient4WPS:691 - UserInputs[key=TimeIndex, value=0] -2016-05-06 11:40:10 DEBUG SClient4WPS:727 - Configuring Literal: OutputTableLabel to: maxent_ -2016-05-06 11:40:10 DEBUG SClient4WPS:727 - Configuring Literal: SpeciesName to: Latimeria -2016-05-06 11:40:10 DEBUG SClient4WPS:727 - Configuring Literal: MaxIterations to: 1000 -2016-05-06 11:40:10 DEBUG SClient4WPS:727 - Configuring Literal: DefaultPrevalence to: 0.5 -2016-05-06 11:40:10 DEBUG SClient4WPS:744 - Configuring Complex: OccurrencesTable to: http://data-d.d4science.org/bVZIS3dkSCtWT2ZWVzJiZkRqZUFrR2llNkRBZ0haYzBHbWJQNStIS0N6Yz0 -2016-05-06 11:40:10 DEBUG SClient4WPS:727 - Configuring Literal: LongitudeColumn to: decimalLongitude -2016-05-06 11:40:10 DEBUG SClient4WPS:727 - Configuring Literal: LatitudeColumn to: decimalLatitude -2016-05-06 11:40:10 DEBUG SClient4WPS:727 - Configuring Literal: XResolution to: 1.0 -2016-05-06 11:40:10 DEBUG SClient4WPS:727 - Configuring Literal: YResolution to: 1.0 -2016-05-06 11:40:10 DEBUG SClient4WPS:727 - Configuring Literal: Layers to: fc9ac2f4-a2bd-43d1-a361-ac67c5ceac31 -2016-05-06 11:40:10 DEBUG SClient4WPS:727 - Configuring Literal: Z to: 0.0 -2016-05-06 11:40:10 DEBUG SClient4WPS:727 - Configuring Literal: TimeIndex to: 0 -2016-05-06 11:40:10 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 11:40:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:40:10 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:40:10 DEBUG SClient4WPS:388 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - - - OutputTableLabel - - maxent_ - - - - SpeciesName - - Latimeria - - - - MaxIterations - - 1000 - - - - DefaultPrevalence - - 0.5 - - - - OccurrencesTable - - - - LongitudeColumn - - decimalLongitude - - - - LatitudeColumn - - decimalLatitude - - - - XResolution - - 1.0 - - - - YResolution - - 1.0 - - - - Layers - - fc9ac2f4-a2bd-43d1-a361-ac67c5ceac31 - - - - Z - - 0.0 - - - - TimeIndex - - 0 - - - - - - - ASCII Maps of the environmental layers for checking features aligments - - - OutputTable7 - - - non_deterministic_output - - - - -2016-05-06 11:40:10 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-06 11:40:10 DEBUG SClient4WPS:415 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d -2016-05-06 11:40:10 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:40:10 DEBUG SClient4WPS:787 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d -2016-05-06 11:40:10 DEBUG SClient4WPS:697 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d -2016-05-06 11:40:10 DEBUG SClient4WPS:708 - ComputationId: ComputationId [id=6071f298-fe8e-4530-8325-04792901214d, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d] -2016-05-06 11:40:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:40:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:40:21 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:40:21 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=6071f298-fe8e-4530-8325-04792901214d, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d] -2016-05-06 11:40:21 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 11:40:21 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 11:40:21 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d -2016-05-06 11:40:21 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 11:40:21 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 11:40:21 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 11:40:21 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - - - -2016-05-06 11:40:21 DEBUG SClient4WPS:889 - WPS STATUS:10.0 -2016-05-06 11:40:21 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=10.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-06 11:40:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:40:31 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:40:31 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:40:31 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=6071f298-fe8e-4530-8325-04792901214d, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d] -2016-05-06 11:40:31 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 11:40:31 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 11:40:31 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d -2016-05-06 11:40:31 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 11:40:31 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 11:40:31 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 11:40:31 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - - - -2016-05-06 11:40:31 DEBUG SClient4WPS:889 - WPS STATUS:30.0 -2016-05-06 11:40:31 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=30.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-06 11:40:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:40:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:40:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:40:41 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=6071f298-fe8e-4530-8325-04792901214d, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d] -2016-05-06 11:40:41 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 11:40:41 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 11:40:41 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d -2016-05-06 11:40:41 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 11:40:41 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 11:40:41 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 11:40:41 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - - - -2016-05-06 11:40:41 DEBUG SClient4WPS:889 - WPS STATUS:30.0 -2016-05-06 11:40:41 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=30.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-06 11:40:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:40:51 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:40:51 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:40:51 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=6071f298-fe8e-4530-8325-04792901214d, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d] -2016-05-06 11:40:51 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 11:40:51 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 11:40:51 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d -2016-05-06 11:40:51 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 11:40:51 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 11:40:51 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 11:40:51 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - - - -2016-05-06 11:40:51 DEBUG SClient4WPS:889 - WPS STATUS:70.0 -2016-05-06 11:40:51 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=70.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-06 11:41:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:41:01 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:41:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:41:01 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=6071f298-fe8e-4530-8325-04792901214d, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d] -2016-05-06 11:41:01 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 11:41:01 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 11:41:01 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d -2016-05-06 11:41:01 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 11:41:01 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 11:41:02 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 11:41:02 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - - - -2016-05-06 11:41:02 DEBUG SClient4WPS:889 - WPS STATUS:80.0 -2016-05-06 11:41:02 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=80.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-06 11:41:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:41:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:41:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-06 11:41:11 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:41:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:41:11 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=6071f298-fe8e-4530-8325-04792901214d, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d] -2016-05-06 11:41:11 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 11:41:11 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 11:41:11 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d -2016-05-06 11:41:11 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 11:41:11 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 11:41:11 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 11:41:11 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - - - -2016-05-06 11:41:11 DEBUG SClient4WPS:889 - WPS STATUS:80.0 -2016-05-06 11:41:11 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=80.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-06 11:41:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:41:21 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:41:21 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:41:21 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=6071f298-fe8e-4530-8325-04792901214d, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d] -2016-05-06 11:41:21 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 11:41:21 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 11:41:21 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d -2016-05-06 11:41:21 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 11:41:21 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 11:41:21 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 11:41:21 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - Process successful - - - - ASCII Maps of the environmental layers for checking features aligments - ASCII Maps of the environmental layers for checking features aligments - - _______________________________________________ __ ____ ______________________________________ _______________ - - - - - - -_______________________ _____ __ _ _ _ _____ ___________________________________________________________________________ ______ ___ __ ____ ___ ___________________________________________________ -_____________________ _____ ___ __ _ _ __ _____ ___ __ _ ______________________________________________________________ _ ____ ____________________________________________________ -________________ _____ ______ _ _____ _ ____________ _____ _______________________________________________________ _______ _ ____________________________________________________ -______________________ ______ _____ __ ______________ ____ _______________________________________________ _________ __________ _ __ ___________________________________________________ -__________________ __ _ ____ ____ ___ ______ __ ____ ____ _ _ _____________________________________ _ ________ _______________ _ ________________________________________________ -__________________ __ _____ _ _ ___ ___ _ ______ _________ _ __ _ ____________________________________ __________ _____________ ______________ _______________________________ -___________________ _ ____ _ _ ___ ___ __ _____ ___ __ ___ __ _________________________________ ____________ ___________ _________ ________________________________ -____________________ ______ _ ___ ______________ ___ __ ___ _ ____ _ _____________________________________________ ________ _______ _________________________________ -_________________________ __ _ _ ______ ____ ___________ __ __ _ ______________________________________________ __________ _____ _________________________________ -________________________ _______ __ _ ___ _ ___ __ __ _ _________________________________________________ _____ _______________________________________ -___________________________ ________ __ __________ __ ______ _ __ _______________________________________ ______ ____________________________________ -____________________________ ______ _____ _____ __ _ ____ ____ _______________ ____________________________ _ _____________________________________ -_____________________________________ _____ _ ___ ______ ________ __ ___________ _____________________________ ___________________________________ -____________________________________ ____ _ _ ___________ _________ _______________________ _ ____________________________________ -___________________________________ _____ _ ________ ___________ ____________________________ ________________________________________ -________________________________ ____ _ __________ _______________ ________________________ __ ________________________________________ -_______________________________ ___ _ _____________ _ _________________________________________ ______________________________________ -_______________________________ ___ __ _____________ _____________________________________________ ______________________________________ -_____________________________ _ _ ______________ ___________________________________ __ _______ ________________________ -_____________________________ ____ _ ____________ _ ____________________________ _ _ ______ _______________________ -__________________________ _ _ _______ ___________ ____________________________ __ ____________ ____________________ -______________________ _ _ ________ _ __________ __________________________ ______ __ ______ _________________________ -_______________ ______ _________ _ _________ __________________________ __ _ ___ _________________________ -____________ _________ ____________ _____________ __________________________ ______________________ -___________ ___________ __________ ___________ __________________________ ______________________ -__________ ________________ ___ __ ________ _ __________________________ ______________ __ -__________ ______________ ______ _ __________ _ __________________________ ___ ________________ -________ ____________________ ___ _ _______ ___________________________ ___ _ ___ ____ -___________ __________________ ________ _ ________ _____________________________ _ _ _ - ___________ ____________________ _____ ___________ __________________________________ __ - _ __ __________________ __ _ ___________ ___________________________________ ___ __ - ____ _________________ ___ _____________ _____________ ____________________ ____ __ _ -___ __________ _________________ __________________ ______________ _________________ ________ __ -____________ _ _ ______________ _________________ _______________ _________________ _____ ____ -____________ _ __________ ____________ ___________________ __________________ ____________________ ____ __ ___ -____________ _ _____________ _ ____________ ____ ______________ ________________________________________ _______ _ __ -_____________ __ _______________ ___________ __ ______________ _ ___________________________________ _____ _ __ ___ _ ______ -___________ ___ ____________________ _______ __ ________________ ___________________________________________ __ _____ __ _______ ________ -________________ ___ _ ___________________ _ ______ ________________________________________________________________ _ ____ __________ _____ ________________ -____________________ _ ________________________ ___ __________________________________________________ _ ___________ __ _____ ___________________ ________________ -___________________ _________________________ _ ___ __________________________________________________ _________ _____ __________________ ________________ -_________________ ___________________________ ___ __ ___________________________________________________ ___________ ___ _ __ ________________ ________________ -________________ __________________________________ ___ _________________________________________________ __________ __________________ _________________ -____________________________________________________ __ _____________________________________________ __ ______ ______________ ___ _____________ -____________ ______________________________________ ___________________________________________ _ ___ ____________ ____________________ -_____________________________________________________ _ ____________________________________________ __ __ _ ____________ _____________________ -_______________________________________________________ __ ___________________________________________ _____ _ _ ____________ _____________________ -_______________________________________________________ ____ _____ _________________________________________________ ____ _ ___________ _______________________ -________________________________________________________ _ ______ __________________________________________________ ___ __ ____________________________________ -________________________________________________________ ______ _______________________________________________ ___ __ ________________________________________ -________________________________________________________ ____ ______ _________________________________________________ __________ ___ ____________________________________ -________________________________________________________ __ __________________________________________________________ _ ____________ __________________________________________ -________________________________________________________ _ _____________________________________________________________ ___ _____________ _____ _____________________________________ -________________________________________________________ ____ ______________________________________________________________ ___ ____ ______________ _______ ___________________________________ -________________________________________________________ _____________________________________________________________ ________ _____ ___ _ __________ ____________________________________ -________________________________________________________ _____________________________________________________________ __________ __ __ __ _ __________ _______________________________________ -_________________________________________________________ ________________________________________________________________ _______ ______ ___ ___ ___ __ ____________ ______________________________________ -_________________________________________________________ __________________________________________________________________ ________ ______ ____ ___ _______ ____________ ______________________________________ -__________________________________________________________ _______________________________________________ ___________________ _____________ ______ ____ _ _____ __________ _______________________________________ -___________________________________________________________ ___________________________________________________________________ ________ _ ____________ ______ _ __ _____ _________ _______________________________________ -___________________________________________________________ ___________________________________________________________________________ _________________________ _______ _______ _______________________________________ -____________________________________________________________ _______________________________________________________________________ _________________________ ______ ____ _ _ __________________________________________ -_______________________________________________________________ ________________________________________________________________________ ________________________ _____ ___ _______________________________________________ -________________________________________________________________ _______________________________________________________________________ ____ ___________ __________ _________________________________________________ -________________________________________________________________ _ _______________________________________________________________________ __ _ __________________________________________________________ -_________________________________________________________________ _ ___ ______ _______________________________________________________________________ ___ __________________________________________________________ -__________________________________________________________________ _ ______________ _______________________________________________________________ _____ _ ___ ___________________________________________________________ -___________________________________________________________________ __ _______________ ___________________________________________________________________ __ ____ _ ____________________________________________________________ -____________________________________________________________________ __ ________________ __________________________________________________________________ __ ____ __ _____________________________________________________________ -_____________________________________________________________________ ___ __________________________________________________________________________________ __ __ ___________ __ __ ________________________________________________________ -__________________________________________________________________________ ______________ _______________________________________________________________ ___ _________ ____ ___________________________________________________________ -______________________ ____________________________________________________ _________ ___ ____ ___________________________________________________________ __ __________ _ _____ __ _____________________________________________________________________ -___________________________________________________________________________ ______ __________ __________________________________________________________ ____ _______________ _______ __________________________________________________________________________ -_____________________________________________________________________________ _ __________ ___ _ _ _________________________________________________ ____ ________________ __________ ___ __________ ___________________________________________________________ -________________________________________________________________________________ ________________________________________________________________________ __ _ ___________________ ____________ _____________ __________________________________________________________ -_______________________________________________________________________________________ ____________________________________________________________________ ___ _____________________ _ _________________ ____________ ___________________________________________________________ -_________________________________________________________________________________________ __________________________________________________________________ _ ________________________ _ __________________ ___________ _________________________________________________________ -_____________________________________________________________________________________________ _____________ _____________________________________________________ _ ____________________________ __ ____________ _____ _ _______________________________________________________________________ -_______________________________________________________________________________________________ _________ _ _____________________________________________________ ____ ______________________ ___ __________________ ____ ______________ _ _________________________________________ __ __________ -________________________________________________________________________________________________ _______ ________________________________________________ ______________________ ___ ___________________ ______ ____________ ___ _________________________________________________________ -__________________________________________________________________________________________________ __ ______________________________________________ _______________________ ____ __ _________________ _______________________ ______________________________________________________ -_______________________________________________________________________________________________________ ______________________________________________ ________________________ _______ __________________ _______________ _______ _______________________________________________________ -_______________________________________________________________________________________________________ ___________________________________________ ____ _______ ________________________ ______________________ __ ____________ _____________________________________________________________ -_______________________________________________________________________________________________________ _____________________________________________________________ __________________________ ________________________ __ __________ _______________________________________________________________ -______________________________________________________________________________________________________ ____________________________________________________________ ___________________________ _________________________ _ _______ _________ ____________________________________________________ -____________________________________________________________________________________________________ ____________________________________________________________ _____________________________ __________________________ ______ ___ ___ ____________________________________________________ -____________________________________________________________________________________________________ _______________________________________________________ _______________________________ _________________________ _ _____ __ _ _______ ______________________________________________ -____________________________________________________________________________________________________ _____________________________________________________ ________________________________ ____________________________ ____ ___ ___________ __ ________________________________________ -____________________________________________________________________________________________________ __________________________________________________ _________________________________ _____________________________ ________ ____ _ ____________ ________ ___________________________ -____________________________________________________________________________________________________ _______________________________________________ __________________________________ _______________________________ _____________ __ _______________ ____ __ _________________________ -_____________________________________________________________________________________________________ ________________________________________________ _________________________________ _________________________________ ________________________ _________ _______________________ -______________________________________________________________________________________________________ _________________________________________________ _________________________________ __________________________________________ ___ _____________ ___ ____________ ___________________ -______________________________________________________________________________________________________ __________________________________________________ _________________________________ _______________________________________________ __ ________________________ ______________________________ -_______________________________________________________________________________________________________ ___________________________________________________ __ _____________________________ _________________________________________________________ _ _________ _____________________________________ -________________________________________________________________________________________________________ ____________________________________________________ ________ _______________________ _________________________________________________________ _____ _____________________________________ -_________________________________________________________________________________________________________ ____________________________________________________ _______ _______________________ ____________________________________________________ _ ______ ___________________________________ -__________________________________________________________________________________________________________ ___________________________________________________ _____ _______________________ ___________________________________________________ ____ ___________________________________ -_____________________________________________________________________________________________________________ ___________________________________________________ ______ _______________________ _________________________________________________ __ __________________________________ -______________________________________________________________________________________________________________ ____________________________________________________ _________ ________________________ ________________________________________________ __________________________________ -______________________________________________________________________________________________________________ ______________________________________________________ _________ ________________________ _____________________________________________ _______________________________ -______________________________________________________________________________________________________________ _______________________________________________________ ________ _________________________ _________________________________________ _______________________________ -______________________________________________________________________________________________________________ ___________________________________________________________ ________ _________________________ _________________________________________ _____________________________ -______________________________________________________________________________________________________________ ______________________________________________________________ _________ __________________________ ________________________________________ ____________________________ -______________________________________________________________________________________________________________ _______________________________________________________________ ________________________________________ _________________________________________ ___________________________ -______________________________________________________________________________________________________________ ________________________________________________________________ ________________________________________ _________________________________________ ___________________________ -_____________________________________________________________________________________________________________ __________________________________________________________________ _________________________________________ _________________________________________ ___________________________ -_____________________________________________________________________________________________________________ ___________________________________________________________________ __________________________________________ __________________________________________ ___________________________ -_____________________________________________________________________________________________________________ _____________________________________________________________________ ___________________________________________ __________________________________________ ___________________________ -_____________________________________________________________________________________________________________ ______________________________________________________________________ _____________________________________________ __________________________________________ _________ ____________________________ -_____________________________________________________________________________________________________________ ________________________________________________________________________ ________________________________________________ __________________________________________ ________________ _ _____________________________ -____________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ _________________________________________________________________ _______________________ ______ -____________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________ ___________________________________________________________________ ________________________ _____ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ ___________________________________________________________________ __________________________ ____ -___________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________ __ -___________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ ___ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ _______________________________________________________________________ ________________________ ____ -__________________________________________________________________________________________________________ _ ________________________________________________________________________________________________________________________________________ ________________________________________________________________________ _______________________ _______ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ _________________________________________________________________________ ______________________ _______ -__________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________ _________ -__________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________ __________ -__________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ ________ ___________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -___________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -___________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_______________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_______________________________________________________________________________________________________________________ _ _________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -____________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________ ______________________ ___________________________________ _____________________________________________ -__________________________________________________________________________________________________________________ _ _____________________________________________________________________________________________________________________________________ ______________________ ________ _____________________ _____________________________________________ -__________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________ ________________ ________ _ ______ ___ _ _______ ____ __________________________________________ -________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________ _ _______________ _________ ____________________________________ -_______________________________________________________________________________________________________________ _ ___________________________________________________________________________________________________________ _ ________ ________ ___________________________________ -_________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ ___ ______ ________________________________ -_________________________________________________________________________________________________________________ ______________________________________________________________________________________________ ______ _ _____ _________________________ -____________________________________________________________________________________________________________ __ ___________________________________________________________________________________________ ____ ____ _______________________ -____________________________________________________________________________________________________________ _ ___________________________________________________________________________ ___________ ____________________ -__________________________________________________________________________________________________________ _______________________________________________________ _________________ -_________________________________________________________________________________________________________ ___________________________________________________ ____________ -___________________________________________________________________________________________________________ ________________________________________________ ___________ -_________________________________________________________________________________ _______________________ ________________________________________________ _________ -______________________________________________________________________________ ______________________ ______________________________________________ __________ -_____________________________________________________________________________ __________ ___ ____________________________________________ __________ -_____________________________________________________________________________ _____ ________________________________________ ___________ -_____________________________________________________ ______________ ______ __ _________________________________________ _____________ -_____________________________________________________ _ _ ____ ______ _________________________________________ ______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ - - - - OutputTable7 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - id,csquarecode,x,y,z,time,fvalue -1,5918:100,-180,-90,0,0,0.0749916 -2,5917:209,-179,-90,0,0,0.0750201 -3,5917:208,-178,-90,0,0,0.0750201 -4,5917:207,-177,-90,0,0,0.0750416 -5,5917:206,-176,-90,0,0,0.0750488 -6,5917:205,-175,-90,0,0,0.0750558 -7,5917:104,-174,-90,0,0,0.0750702 -8,5917:103,-173,-90,0,0,0.0750773 -9,5917:102,-172,-90,0,0,0.0750843 -10,5917:101,-171,-90,0,0,0.0750843 -11,5917:100,-170,-90,0,0,0.0750915 -12,5916:209,-169,-90,0,0,0.0750987 -13,5916:208,-168,-90,0,0,0.0751059 -14,5916:207,-167,-90,0,0,0.0751128 -15,5916:206,-166,-90,0,0,0.0751059 -16,5916:205,-165,-90,0,0,0.0751059 -17,5916:104,-164,-90,0,0,0.0751059 -18,5916:103,-163,-90,0,0,0.0751128 -19,5916:102,-162,-90,0,0,0.0751128 -20,5916:101,-161,-90,0,0,0.07512 -21,5916:100,-160,-90,0,0,0.0751344 -22,5915:209,-159,-90,0,0,0.0751416 -23,5915:208,-158,-90,0,0,0.0751558 -24,5915:207,-157,-90,0,0,0.0751486 -25,5915:206,-156,-90,0,0,0.0751558 -26,5915:205,-155,-90,0,0,0.075163 -27,5915:104,-154,-90,0,0,0.0751486 -28,5915:103,-153,-90,0,0,0.075163 -29,5915:102,-152,-90,0,0,0.0751558 -30,5915:101,-151,-90,0,0,0.0751416 -31,5915:100,-150,-90,0,0,0.0751416 -32,5914:209,-149,-90,0,0,0.0751344 -33,5914:208,-148,-90,0,0,0.0751344 -34,5914:207,-147,-90,0,0,0.0751272 -35,5914:206,-146,-90,0,0,0.07512 -36,5914:205,-145,-90,0,0,0.07512 -37,5914:104,-144,-90,0,0,0.0751128 -38,5914:103,-143,-90,0,0,0.07512 -39,5914:102,-142,-90,0,0,0.0751128 -40,5914:101,-141,-90,0,0,0.0751128 -41,5914:100,-140,-90,0,0,0.07512 -42,5913:209,-139,-90,0,0,0.07512 -43,5913:208,-138,-90,0,0,0.0751272 -44,5913:207,-137,-90,0,0,0.07527 -45,5913:206,-136,-90,0,0,0.0758155 -46,5913:205,-135,-90,0,0,0.0776421 -47,5913:104,-134,-90,0,0,0.0779001 -48,5911:100,-110,-90,0,0,0.0832649 -49,5910:209,-109,-90,0,0,0.0880188 -50,5910:206,-106,-90,0,0,0.0759162 -51,5910:205,-105,-90,0,0,0.0753775 -52,5910:104,-104,-90,0,0,0.0768514 -53,5910:103,-103,-90,0,0,0.0810109 -54,5906:101,-61,-90,0,0,0.0753489 -55,5906:100,-60,-90,0,0,0.075163 -56,5905:209,-59,-90,0,0,0.0750201 -57,5905:208,-58,-90,0,0,0.074949 -58,5905:207,-57,-90,0,0,0.0749346 -59,5905:206,-56,-90,0,0,0.0749275 -60,5905:205,-55,-90,0,0,0.0749346 -61,5905:104,-54,-90,0,0,0.0749346 -62,5905:103,-53,-90,0,0,0.0749418 -63,5905:102,-52,-90,0,0,0.0749562 -64,5905:101,-51,-90,0,0,0.0749631 -65,5905:100,-50,-90,0,0,0.0749631 -66,5904:209,-49,-90,0,0,0.0749631 -67,5904:208,-48,-90,0,0,0.074949 -68,5904:207,-47,-90,0,0,0.0749703 -69,5904:206,-46,-90,0,0,0.0749988 -70,5904:205,-45,-90,0,0,0.0750273 -71,5904:104,-44,-90,0,0,0.0750201 -72,5904:103,-43,-90,0,0,0.0750201 -73,5904:102,-42,-90,0,0,0.0750131 -74,5904:101,-41,-90,0,0,0.0750201 -75,5904:100,-40,-90,0,0,0.0750345 -76,5903:209,-39,-90,0,0,0.0750345 -77,5903:208,-38,-90,0,0,0.0750345 -78,5903:207,-37,-90,0,0,0.0750345 -79,5903:206,-36,-90,0,0,0.0750345 -80,5903:205,-35,-90,0,0,0.0750416 -81,5903:104,-34,-90,0,0,0.0750345 -82,5903:103,-33,-90,0,0,0.0750345 -83,5903:102,-32,-90,0,0,0.0750416 -84,5903:101,-31,-90,0,0,0.0750488 -85,5903:100,-30,-90,0,0,0.0750488 -86,5902:209,-29,-90,0,0,0.0750488 -87,5902:208,-28,-90,0,0,0.0750345 -88,5902:207,-27,-90,0,0,0.0750201 -89,5902:206,-26,-90,0,0,0.0761183 -90,5902:205,-25,-90,0,0,0.0756715 -91,5902:104,-24,-90,0,0,0.0789397 -92,3916:206,166,-90,0,0,0.0752487 -93,3916:207,167,-90,0,0,0.075063 -94,3916:208,168,-90,0,0,0.0749846 -95,3916:209,169,-90,0,0,0.074899 -96,3917:100,170,-90,0,0,0.074892 -97,3917:101,171,-90,0,0,0.0748777 -98,3917:102,172,-90,0,0,0.0807894 -99,3917:103,173,-90,0,0,0.0878209 -100,3917:104,174,-90,0,0,0.087558 -101,3917:205,175,-90,0,0,0.0873776 -102,3917:206,176,-90,0,0,0.0863183 -103,3917:207,177,-90,0,0,0.0752844 -104,3917:208,178,-90,0,0,0.0748849 -105,3917:209,179,-90,0,0,0.074949 -106,3918:100,180,-90,0,0,0.0749916 -107,5818:390,-180,-89,0,0,0.0749916 -108,5817:499,-179,-89,0,0,0.0750201 -109,5817:498,-178,-89,0,0,0.0750201 -110,5817:497,-177,-89,0,0,0.0750416 -111,5817:496,-176,-89,0,0,0.0750488 -112,5817:495,-175,-89,0,0,0.0750558 -113,5817:394,-174,-89,0,0,0.0750702 -114,5817:393,-173,-89,0,0,0.0750773 -115,5817:392,-172,-89,0,0,0.0750843 -116,5817:391,-171,-89,0,0,0.0750843 -117,5817:390,-170,-89,0,0,0.0750915 -118,5816:499,-169,-89,0,0,0.0750987 -119,5816:498,-168,-89,0,0,0.0751059 -120,5816:497,-167,-89,0,0,0.0751128 -121,5816:496,-166,-89,0,0,0.0751059 -122,5816:495,-165,-89,0,0,0.0751059 -123,5816:394,-164,-89,0,0,0.0751059 -124,5816:393,-163,-89,0,0,0.0751128 -125,5816:392,-162,-89,0,0,0.0751128 -126,5816:391,-161,-89,0,0,0.07512 -127,5816:390,-160,-89,0,0,0.0751344 -128,5815:499,-159,-89,0,0,0.0751416 -129,5815:498,-158,-89,0,0,0.0751558 -130,5815:497,-157,-89,0,0,0.0751486 -131,5815:496,-156,-89,0,0,0.0751558 -132,5815:495,-155,-89,0,0,0.075163 -133,5815:394,-154,-89,0,0,0.0751486 -134,5815:393,-153,-89,0,0,0.075163 -135,5815:392,-152,-89,0,0,0.0751558 -136,5815:391,-151,-89,0,0,0.0751416 -137,5815:390,-150,-89,0,0,0.0751416 -138,5814:499,-149,-89,0,0,0.0751344 -139,5814:498,-148,-89,0,0,0.0751344 -140,5814:497,-147,-89,0,0,0.0751272 -141,5814:496,-146,-89,0,0,0.07512 -142,5814:495,-145,-89,0,0,0.07512 -143,5814:394,-144,-89,0,0,0.0751128 -144,5814:393,-143,-89,0,0,0.07512 -145,5814:392,-142,-89,0,0,0.0751128 -146,5814:391,-141,-89,0,0,0.0751128 -147,5814:390,-140,-89,0,0,0.07512 -148,5813:499,-139,-89,0,0,0.07512 -149,5813:498,-138,-89,0,0,0.0751272 -150,5813:497,-137,-89,0,0,0.07527 -151,5813:496,-136,-89,0,0,0.0758155 -152,5813:495,-135,-89,0,0,0.0776421 -153,5813:394,-134,-89,0,0,0.0779001 -154,5811:390,-110,-89,0,0,0.0832649 -155,5810:499,-109,-89,0,0,0.0880188 -156,5810:496,-106,-89,0,0,0.0759162 -157,5810:495,-105,-89,0,0,0.0753775 -158,5810:394,-104,-89,0,0,0.0768514 -159,5810:393,-103,-89,0,0,0.0810109 -160,5806:391,-61,-89,0,0,0.0753489 -161,5806:390,-60,-89,0,0,0.075163 -162,5805:499,-59,-89,0,0,0.0750201 -163,5805:498,-58,-89,0,0,0.074949 -164,5805:497,-57,-89,0,0,0.0749346 -165,5805:496,-56,-89,0,0,0.0749275 -166,5805:495,-55,-89,0,0,0.0749346 -167,5805:394,-54,-89,0,0,0.0749346 -168,5805:393,-53,-89,0,0,0.0749418 -169,5805:392,-52,-89,0,0,0.0749562 -170,5805:391,-51,-89,0,0,0.0749631 -171,5805:390,-50,-89,0,0,0.0749631 -172,5804:499,-49,-89,0,0,0.0749631 -173,5804:498,-48,-89,0,0,0.074949 -174,5804:497,-47,-89,0,0,0.0749703 -175,5804:496,-46,-89,0,0,0.0749988 -176,5804:495,-45,-89,0,0,0.0750273 -177,5804:394,-44,-89,0,0,0.0750201 -178,5804:393,-43,-89,0,0,0.0750201 -179,5804:392,-42,-89,0,0,0.0750131 -180,5804:391,-41,-89,0,0,0.0750201 -181,5804:390,-40,-89,0,0,0.0750345 -182,5803:499,-39,-89,0,0,0.0750345 -183,5803:498,-38,-89,0,0,0.0750345 -184,5803:497,-37,-89,0,0,0.0750345 -185,5803:496,-36,-89,0,0,0.0750345 -186,5803:495,-35,-89,0,0,0.0750416 -187,5803:394,-34,-89,0,0,0.0750345 -188,5803:393,-33,-89,0,0,0.0750345 -189,5803:392,-32,-89,0,0,0.0750416 -190,5803:391,-31,-89,0,0,0.0750488 -191,5803:390,-30,-89,0,0,0.0750488 -192,5802:499,-29,-89,0,0,0.0750488 -193,5802:498,-28,-89,0,0,0.0750345 -194,5802:497,-27,-89,0,0,0.0750201 -195,5802:496,-26,-89,0,0,0.0761183 -196,5802:495,-25,-89,0,0,0.0756715 -197,5802:394,-24,-89,0,0,0.0789397 -198,3816:496,166,-89,0,0,0.0752487 -199,3816:497,167,-89,0,0,0.075063 -200,3816:498,168,-89,0,0,0.0749846 -201,3816:499,169,-89,0,0,0.074899 -202,3817:390,170,-89,0,0,0.074892 -203,3817:391,171,-89,0,0,0.0748777 -204,3817:392,172,-89,0,0,0.0807894 -205,3817:393,173,-89,0,0,0.0878209 -206,3817:394,174,-89,0,0,0.087558 -207,3817:495,175,-89,0,0,0.0873776 -208,3817:496,176,-89,0,0,0.0863183 -209,3817:497,177,-89,0,0,0.0752844 -210,3817:498,178,-89,0,0,0.0748849 -211,3817:499,179,-89,0,0,0.074949 -212,3818:390,180,-89,0,0,0.0749916 -213,5818:380,-180,-88,0,0,0.0749916 -214,5817:489,-179,-88,0,0,0.0750201 -215,5817:488,-178,-88,0,0,0.0750201 -216,5817:487,-177,-88,0,0,0.0750416 -217,5817:486,-176,-88,0,0,0.0750488 -218,5817:485,-175,-88,0,0,0.0750558 -219,5817:384,-174,-88,0,0,0.0750702 -220,5817:383,-173,-88,0,0,0.0750773 -221,5817:382,-172,-88,0,0,0.0750843 -222,5817:381,-171,-88,0,0,0.0750843 -223,5817:380,-170,-88,0,0,0.0750915 -224,5816:489,-169,-88,0,0,0.0750987 -225,5816:488,-168,-88,0,0,0.0751059 -226,5816:487,-167,-88,0,0,0.0751128 -227,5816:486,-166,-88,0,0,0.0751059 -228,5816:485,-165,-88,0,0,0.0751059 -229,5816:384,-164,-88,0,0,0.0751059 -230,5816:383,-163,-88,0,0,0.0751128 -231,5816:382,-162,-88,0,0,0.0751128 -232,5816:381,-161,-88,0,0,0.07512 -233,5816:380,-160,-88,0,0,0.0751344 -234,5815:489,-159,-88,0,0,0.0751416 -235,5815:488,-158,-88,0,0,0.0751558 -236,5815:487,-157,-88,0,0,0.0751486 -237,5815:486,-156,-88,0,0,0.0751558 -238,5815:485,-155,-88,0,0,0.075163 -239,5815:384,-154,-88,0,0,0.0751486 -240,5815:383,-153,-88,0,0,0.075163 -241,5815:382,-152,-88,0,0,0.0751558 -242,5815:381,-151,-88,0,0,0.0751416 -243,5815:380,-150,-88,0,0,0.0751416 -244,5814:489,-149,-88,0,0,0.0751344 -245,5814:488,-148,-88,0,0,0.0751344 -246,5814:487,-147,-88,0,0,0.0751272 -247,5814:486,-146,-88,0,0,0.07512 -248,5814:485,-145,-88,0,0,0.07512 -249,5814:384,-144,-88,0,0,0.0751128 -250,5814:383,-143,-88,0,0,0.07512 -251,5814:382,-142,-88,0,0,0.0751128 -252,5814:381,-141,-88,0,0,0.0751128 -253,5814:380,-140,-88,0,0,0.07512 -254,5813:489,-139,-88,0,0,0.07512 -255,5813:488,-138,-88,0,0,0.0751272 -256,5813:487,-137,-88,0,0,0.07527 -257,5813:486,-136,-88,0,0,0.0758155 -258,5813:485,-135,-88,0,0,0.0776421 -259,5813:384,-134,-88,0,0,0.0779001 -260,5811:380,-110,-88,0,0,0.0832649 -261,5810:489,-109,-88,0,0,0.0880188 -262,5810:486,-106,-88,0,0,0.0759162 -263,5810:485,-105,-88,0,0,0.0753775 -264,5810:384,-104,-88,0,0,0.0768514 -265,5810:383,-103,-88,0,0,0.0810109 -266,5806:381,-61,-88,0,0,0.0753489 -267,5806:380,-60,-88,0,0,0.075163 -268,5805:489,-59,-88,0,0,0.0750201 -269,5805:488,-58,-88,0,0,0.074949 -270,5805:487,-57,-88,0,0,0.0749346 -271,5805:486,-56,-88,0,0,0.0749275 -272,5805:485,-55,-88,0,0,0.0749346 -273,5805:384,-54,-88,0,0,0.0749346 -274,5805:383,-53,-88,0,0,0.0749418 -275,5805:382,-52,-88,0,0,0.0749562 -276,5805:381,-51,-88,0,0,0.0749631 -277,5805:380,-50,-88,0,0,0.0749631 -278,5804:489,-49,-88,0,0,0.0749631 -279,5804:488,-48,-88,0,0,0.074949 -280,5804:487,-47,-88,0,0,0.0749703 -281,5804:486,-46,-88,0,0,0.0749988 -282,5804:485,-45,-88,0,0,0.0750273 -283,5804:384,-44,-88,0,0,0.0750201 -284,5804:383,-43,-88,0,0,0.0750201 -285,5804:382,-42,-88,0,0,0.0750131 -286,5804:381,-41,-88,0,0,0.0750201 -287,5804:380,-40,-88,0,0,0.0750345 -288,5803:489,-39,-88,0,0,0.0750345 -289,5803:488,-38,-88,0,0,0.0750345 -290,5803:487,-37,-88,0,0,0.0750345 -291,5803:486,-36,-88,0,0,0.0750345 -292,5803:485,-35,-88,0,0,0.0750416 -293,5803:384,-34,-88,0,0,0.0750345 -294,5803:383,-33,-88,0,0,0.0750345 -295,5803:382,-32,-88,0,0,0.0750416 -296,5803:381,-31,-88,0,0,0.0750488 -297,5803:380,-30,-88,0,0,0.0750488 -298,5802:489,-29,-88,0,0,0.0750488 -299,5802:488,-28,-88,0,0,0.0750345 -300,5802:487,-27,-88,0,0,0.0750201 -301,5802:486,-26,-88,0,0,0.0761183 -302,5802:485,-25,-88,0,0,0.0756715 -303,5802:384,-24,-88,0,0,0.0789397 -304,3816:486,166,-88,0,0,0.0752487 -305,3816:487,167,-88,0,0,0.075063 -306,3816:488,168,-88,0,0,0.0749846 -307,3816:489,169,-88,0,0,0.074899 -308,3817:380,170,-88,0,0,0.074892 -309,3817:381,171,-88,0,0,0.0748777 -310,3817:382,172,-88,0,0,0.0807894 -311,3817:383,173,-88,0,0,0.0878209 -312,3817:384,174,-88,0,0,0.087558 -313,3817:485,175,-88,0,0,0.0873776 -314,3817:486,176,-88,0,0,0.0863183 -315,3817:487,177,-88,0,0,0.0752844 -316,3817:488,178,-88,0,0,0.0748849 -317,3817:489,179,-88,0,0,0.074949 -318,3818:380,180,-88,0,0,0.0749916 -319,5818:370,-180,-87,0,0,0.0749916 -320,5817:479,-179,-87,0,0,0.0750201 -321,5817:478,-178,-87,0,0,0.0750201 -322,5817:477,-177,-87,0,0,0.0750416 -323,5817:476,-176,-87,0,0,0.0750488 -324,5817:475,-175,-87,0,0,0.0750558 -325,5817:374,-174,-87,0,0,0.0750702 -326,5817:373,-173,-87,0,0,0.0750773 -327,5817:372,-172,-87,0,0,0.0750843 -328,5817:371,-171,-87,0,0,0.0750843 -329,5817:370,-170,-87,0,0,0.0750915 -330,5816:479,-169,-87,0,0,0.0750987 -331,5816:478,-168,-87,0,0,0.0751059 -332,5816:477,-167,-87,0,0,0.0751128 -333,5816:476,-166,-87,0,0,0.0751059 -334,5816:475,-165,-87,0,0,0.0751059 -335,5816:374,-164,-87,0,0,0.0751059 -336,5816:373,-163,-87,0,0,0.0751128 -337,5816:372,-162,-87,0,0,0.0751128 -338,5816:371,-161,-87,0,0,0.07512 -339,5816:370,-160,-87,0,0,0.0751344 -340,5815:479,-159,-87,0,0,0.0751416 -341,5815:478,-158,-87,0,0,0.0751558 -342,5815:477,-157,-87,0,0,0.0751486 -343,5815:476,-156,-87,0,0,0.0751558 -344,5815:475,-155,-87,0,0,0.075163 -345,5815:374,-154,-87,0,0,0.0751486 -346,5815:373,-153,-87,0,0,0.075163 -347,5815:372,-152,-87,0,0,0.0751558 -348,5815:371,-151,-87,0,0,0.0751416 -349,5815:370,-150,-87,0,0,0.0751416 -350,5814:479,-149,-87,0,0,0.0751344 -351,5814:478,-148,-87,0,0,0.0751344 -352,5814:477,-147,-87,0,0,0.0751272 -353,5814:476,-146,-87,0,0,0.07512 -354,5814:475,-145,-87,0,0,0.07512 -355,5814:374,-144,-87,0,0,0.0751128 -356,5814:373,-143,-87,0,0,0.07512 -357,5814:372,-142,-87,0,0,0.0751128 -358,5814:371,-141,-87,0,0,0.0751128 -359,5814:370,-140,-87,0,0,0.07512 -360,5813:479,-139,-87,0,0,0.07512 -361,5813:478,-138,-87,0,0,0.0751272 -362,5813:477,-137,-87,0,0,0.07527 -363,5813:476,-136,-87,0,0,0.0758155 -364,5813:475,-135,-87,0,0,0.0776421 -365,5813:374,-134,-87,0,0,0.0779001 -366,5811:370,-110,-87,0,0,0.0832649 -367,5810:479,-109,-87,0,0,0.0880188 -368,5810:476,-106,-87,0,0,0.0759162 -369,5810:475,-105,-87,0,0,0.0753775 -370,5810:374,-104,-87,0,0,0.0768514 -371,5810:373,-103,-87,0,0,0.0810109 -372,5806:371,-61,-87,0,0,0.0753489 -373,5806:370,-60,-87,0,0,0.075163 -374,5805:479,-59,-87,0,0,0.0750201 -375,5805:478,-58,-87,0,0,0.074949 -376,5805:477,-57,-87,0,0,0.0749346 -377,5805:476,-56,-87,0,0,0.0749275 -378,5805:475,-55,-87,0,0,0.0749346 -379,5805:374,-54,-87,0,0,0.0749346 -380,5805:373,-53,-87,0,0,0.0749418 -381,5805:372,-52,-87,0,0,0.0749562 -382,5805:371,-51,-87,0,0,0.0749631 -383,5805:370,-50,-87,0,0,0.0749631 -384,5804:479,-49,-87,0,0,0.0749631 -385,5804:478,-48,-87,0,0,0.074949 -386,5804:477,-47,-87,0,0,0.0749703 -387,5804:476,-46,-87,0,0,0.0749988 -388,5804:475,-45,-87,0,0,0.0750273 -389,5804:374,-44,-87,0,0,0.0750201 -390,5804:373,-43,-87,0,0,0.0750201 -391,5804:372,-42,-87,0,0,0.0750131 -392,5804:371,-41,-87,0,0,0.0750201 -393,5804:370,-40,-87,0,0,0.0750345 -394,5803:479,-39,-87,0,0,0.0750345 -395,5803:478,-38,-87,0,0,0.0750345 -396,5803:477,-37,-87,0,0,0.0750345 -397,5803:476,-36,-87,0,0,0.0750345 -398,5803:475,-35,-87,0,0,0.0750416 -399,5803:374,-34,-87,0,0,0.0750345 -400,5803:373,-33,-87,0,0,0.0750345 -401,5803:372,-32,-87,0,0,0.0750416 -402,5803:371,-31,-87,0,0,0.0750488 -403,5803:370,-30,-87,0,0,0.0750488 -404,5802:479,-29,-87,0,0,0.0750488 -405,5802:478,-28,-87,0,0,0.0750345 -406,5802:477,-27,-87,0,0,0.0750201 -407,5802:476,-26,-87,0,0,0.0761183 -408,5802:475,-25,-87,0,0,0.0756715 -409,5802:374,-24,-87,0,0,0.0789397 -410,3816:476,166,-87,0,0,0.0752487 -411,3816:477,167,-87,0,0,0.075063 -412,3816:478,168,-87,0,0,0.0749846 -413,3816:479,169,-87,0,0,0.074899 -414,3817:370,170,-87,0,0,0.074892 -415,3817:371,171,-87,0,0,0.0748777 -416,3817:372,172,-87,0,0,0.0807894 -417,3817:373,173,-87,0,0,0.0878209 -418,3817:374,174,-87,0,0,0.087558 -419,3817:475,175,-87,0,0,0.0873776 -420,3817:476,176,-87,0,0,0.0863183 -421,3817:477,177,-87,0,0,0.0752844 -422,3817:478,178,-87,0,0,0.0748849 -423,3817:479,179,-87,0,0,0.074949 -424,3818:370,180,-87,0,0,0.0749916 -425,5818:360,-180,-86,0,0,0.0749916 -426,5817:469,-179,-86,0,0,0.0750201 -427,5817:468,-178,-86,0,0,0.0750201 -428,5817:467,-177,-86,0,0,0.0750416 -429,5817:466,-176,-86,0,0,0.0750488 -430,5817:465,-175,-86,0,0,0.0750558 -431,5817:364,-174,-86,0,0,0.0750702 -432,5817:363,-173,-86,0,0,0.0750773 -433,5817:362,-172,-86,0,0,0.0750843 -434,5817:361,-171,-86,0,0,0.0750843 -435,5817:360,-170,-86,0,0,0.0750915 -436,5816:469,-169,-86,0,0,0.0750987 -437,5816:468,-168,-86,0,0,0.0751059 -438,5816:467,-167,-86,0,0,0.0751128 -439,5816:466,-166,-86,0,0,0.0751059 -440,5816:465,-165,-86,0,0,0.0751059 -441,5816:364,-164,-86,0,0,0.0751059 -442,5816:363,-163,-86,0,0,0.0751128 -443,5816:362,-162,-86,0,0,0.0751128 -444,5816:361,-161,-86,0,0,0.07512 -445,5816:360,-160,-86,0,0,0.0751344 -446,5815:469,-159,-86,0,0,0.0751416 -447,5815:468,-158,-86,0,0,0.0751558 -448,5815:467,-157,-86,0,0,0.0751486 -449,5815:466,-156,-86,0,0,0.0751558 -450,5815:465,-155,-86,0,0,0.075163 -451,5815:364,-154,-86,0,0,0.0751486 -452,5815:363,-153,-86,0,0,0.075163 -453,5815:362,-152,-86,0,0,0.0751558 -454,5815:361,-151,-86,0,0,0.0751416 -455,5815:360,-150,-86,0,0,0.0751416 -456,5814:469,-149,-86,0,0,0.0751344 -457,5814:468,-148,-86,0,0,0.0751344 -458,5814:467,-147,-86,0,0,0.0751272 -459,5814:466,-146,-86,0,0,0.07512 -460,5814:465,-145,-86,0,0,0.07512 -461,5814:364,-144,-86,0,0,0.0751128 -462,5814:363,-143,-86,0,0,0.07512 -463,5814:362,-142,-86,0,0,0.0751128 -464,5814:361,-141,-86,0,0,0.0751128 -465,5814:360,-140,-86,0,0,0.07512 -466,5813:469,-139,-86,0,0,0.07512 -467,5813:468,-138,-86,0,0,0.0751272 -468,5813:467,-137,-86,0,0,0.07527 -469,5813:466,-136,-86,0,0,0.0758155 -470,5813:465,-135,-86,0,0,0.0776421 -471,5813:364,-134,-86,0,0,0.0779001 -472,5811:360,-110,-86,0,0,0.0832649 -473,5810:469,-109,-86,0,0,0.0880188 -474,5810:466,-106,-86,0,0,0.0759162 -475,5810:465,-105,-86,0,0,0.0753775 -476,5810:364,-104,-86,0,0,0.0768514 -477,5810:363,-103,-86,0,0,0.0810109 -478,5806:361,-61,-86,0,0,0.0753489 -479,5806:360,-60,-86,0,0,0.075163 -480,5805:469,-59,-86,0,0,0.0750201 -481,5805:468,-58,-86,0,0,0.074949 -482,5805:467,-57,-86,0,0,0.0749346 -483,5805:466,-56,-86,0,0,0.0749275 -484,5805:465,-55,-86,0,0,0.0749346 -485,5805:364,-54,-86,0,0,0.0749346 -486,5805:363,-53,-86,0,0,0.0749418 -487,5805:362,-52,-86,0,0,0.0749562 -488,5805:361,-51,-86,0,0,0.0749631 -489,5805:360,-50,-86,0,0,0.0749631 -490,5804:469,-49,-86,0,0,0.0749631 -491,5804:468,-48,-86,0,0,0.074949 -492,5804:467,-47,-86,0,0,0.0749703 -493,5804:466,-46,-86,0,0,0.0749988 -494,5804:465,-45,-86,0,0,0.0750273 -495,5804:364,-44,-86,0,0,0.0750201 -496,5804:363,-43,-86,0,0,0.0750201 -497,5804:362,-42,-86,0,0,0.0750131 -498,5804:361,-41,-86,0,0,0.0750201 -499,5804:360,-40,-86,0,0,0.0750345 -500,5803:469,-39,-86,0,0,0.0750345 -501,5803:468,-38,-86,0,0,0.0750345 -502,5803:467,-37,-86,0,0,0.0750345 -503,5803:466,-36,-86,0,0,0.0750345 -504,5803:465,-35,-86,0,0,0.0750416 -505,5803:364,-34,-86,0,0,0.0750345 -506,5803:363,-33,-86,0,0,0.0750345 -507,5803:362,-32,-86,0,0,0.0750416 -508,5803:361,-31,-86,0,0,0.0750488 -509,5803:360,-30,-86,0,0,0.0750488 -510,5802:469,-29,-86,0,0,0.0750488 -511,5802:468,-28,-86,0,0,0.0750345 -512,5802:467,-27,-86,0,0,0.0750201 -513,5802:466,-26,-86,0,0,0.0761183 -514,5802:465,-25,-86,0,0,0.0756715 -515,5802:364,-24,-86,0,0,0.0789397 -516,3816:466,166,-86,0,0,0.0752487 -517,3816:467,167,-86,0,0,0.075063 -518,3816:468,168,-86,0,0,0.0749846 -519,3816:469,169,-86,0,0,0.074899 -520,3817:360,170,-86,0,0,0.074892 -521,3817:361,171,-86,0,0,0.0748777 -522,3817:362,172,-86,0,0,0.0807894 -523,3817:363,173,-86,0,0,0.0878209 -524,3817:364,174,-86,0,0,0.087558 -525,3817:465,175,-86,0,0,0.0873776 -526,3817:466,176,-86,0,0,0.0863183 -527,3817:467,177,-86,0,0,0.0752844 -528,3817:468,178,-86,0,0,0.0748849 -529,3817:469,179,-86,0,0,0.074949 -530,3818:360,180,-86,0,0,0.0749916 -531,5818:350,-180,-85,0,0,0.0749916 -532,5817:459,-179,-85,0,0,0.0750201 -533,5817:458,-178,-85,0,0,0.0750201 -534,5817:457,-177,-85,0,0,0.0750416 -535,5817:456,-176,-85,0,0,0.0750488 -536,5817:455,-175,-85,0,0,0.0750558 -537,5817:354,-174,-85,0,0,0.0750702 -538,5817:353,-173,-85,0,0,0.0750773 -539,5817:352,-172,-85,0,0,0.0750843 -540,5817:351,-171,-85,0,0,0.0750843 -541,5817:350,-170,-85,0,0,0.0750915 -542,5816:459,-169,-85,0,0,0.0750987 -543,5816:458,-168,-85,0,0,0.0751059 -544,5816:457,-167,-85,0,0,0.0751128 -545,5816:456,-166,-85,0,0,0.0751059 -546,5816:455,-165,-85,0,0,0.0751059 -547,5816:354,-164,-85,0,0,0.0751059 -548,5816:353,-163,-85,0,0,0.0751128 -549,5816:352,-162,-85,0,0,0.0751128 -550,5816:351,-161,-85,0,0,0.07512 -551,5816:350,-160,-85,0,0,0.0751344 -552,5815:459,-159,-85,0,0,0.0751416 -553,5815:458,-158,-85,0,0,0.0751558 -554,5815:457,-157,-85,0,0,0.0751486 -555,5815:456,-156,-85,0,0,0.0751558 -556,5815:455,-155,-85,0,0,0.075163 -557,5815:354,-154,-85,0,0,0.0751486 -558,5815:353,-153,-85,0,0,0.075163 -559,5815:352,-152,-85,0,0,0.0751558 -560,5815:351,-151,-85,0,0,0.0751416 -561,5815:350,-150,-85,0,0,0.0751416 -562,5814:459,-149,-85,0,0,0.0751344 -563,5814:458,-148,-85,0,0,0.0751344 -564,5814:457,-147,-85,0,0,0.0751272 -565,5814:456,-146,-85,0,0,0.07512 -566,5814:455,-145,-85,0,0,0.07512 -567,5814:354,-144,-85,0,0,0.0751128 -568,5814:353,-143,-85,0,0,0.07512 -569,5814:352,-142,-85,0,0,0.0751128 -570,5814:351,-141,-85,0,0,0.0751128 -571,5814:350,-140,-85,0,0,0.07512 -572,5813:459,-139,-85,0,0,0.07512 -573,5813:458,-138,-85,0,0,0.0751272 -574,5813:457,-137,-85,0,0,0.07527 -575,5813:456,-136,-85,0,0,0.0758155 -576,5813:455,-135,-85,0,0,0.0776421 -577,5813:354,-134,-85,0,0,0.0779001 -578,5811:350,-110,-85,0,0,0.0832649 -579,5810:459,-109,-85,0,0,0.0880188 -580,5810:456,-106,-85,0,0,0.0759162 -581,5810:455,-105,-85,0,0,0.0753775 -582,5810:354,-104,-85,0,0,0.0768514 -583,5810:353,-103,-85,0,0,0.0810109 -584,5806:351,-61,-85,0,0,0.0753489 -585,5806:350,-60,-85,0,0,0.075163 -586,5805:459,-59,-85,0,0,0.0750201 -587,5805:458,-58,-85,0,0,0.074949 -588,5805:457,-57,-85,0,0,0.0749346 -589,5805:456,-56,-85,0,0,0.0749275 -590,5805:455,-55,-85,0,0,0.0749346 -591,5805:354,-54,-85,0,0,0.0749346 -592,5805:353,-53,-85,0,0,0.0749418 -593,5805:352,-52,-85,0,0,0.0749562 -594,5805:351,-51,-85,0,0,0.0749631 -595,5805:350,-50,-85,0,0,0.0749631 -596,5804:459,-49,-85,0,0,0.0749631 -597,5804:458,-48,-85,0,0,0.074949 -598,5804:457,-47,-85,0,0,0.0749703 -599,5804:456,-46,-85,0,0,0.0749988 -600,5804:455,-45,-85,0,0,0.0750273 -601,5804:354,-44,-85,0,0,0.0750201 -602,5804:353,-43,-85,0,0,0.0750201 -603,5804:352,-42,-85,0,0,0.0750131 -604,5804:351,-41,-85,0,0,0.0750201 -605,5804:350,-40,-85,0,0,0.0750345 -606,5803:459,-39,-85,0,0,0.0750345 -607,5803:458,-38,-85,0,0,0.0750345 -608,5803:457,-37,-85,0,0,0.0750345 -609,5803:456,-36,-85,0,0,0.0750345 -610,5803:455,-35,-85,0,0,0.0750416 -611,5803:354,-34,-85,0,0,0.0750345 -612,5803:353,-33,-85,0,0,0.0750345 -613,5803:352,-32,-85,0,0,0.0750416 -614,5803:351,-31,-85,0,0,0.0750488 -615,5803:350,-30,-85,0,0,0.0750488 -616,5802:459,-29,-85,0,0,0.0750488 -617,5802:458,-28,-85,0,0,0.0750345 -618,5802:457,-27,-85,0,0,0.0750201 -619,5802:456,-26,-85,0,0,0.0761183 -620,5802:455,-25,-85,0,0,0.0756715 -621,5802:354,-24,-85,0,0,0.0789397 -622,3816:456,166,-85,0,0,0.0752487 -623,3816:457,167,-85,0,0,0.075063 -624,3816:458,168,-85,0,0,0.0749846 -625,3816:459,169,-85,0,0,0.074899 -626,3817:350,170,-85,0,0,0.074892 -627,3817:351,171,-85,0,0,0.0748777 -628,3817:352,172,-85,0,0,0.0807894 -629,3817:353,173,-85,0,0,0.0878209 -630,3817:354,174,-85,0,0,0.087558 -631,3817:455,175,-85,0,0,0.0873776 -632,3817:456,176,-85,0,0,0.0863183 -633,3817:457,177,-85,0,0,0.0752844 -634,3817:458,178,-85,0,0,0.0748849 -635,3817:459,179,-85,0,0,0.074949 -636,3818:350,180,-85,0,0,0.0749916 -637,5818:140,-180,-84,0,0,0.0749916 -638,5817:249,-179,-84,0,0,0.0750201 -639,5817:248,-178,-84,0,0,0.0750201 -640,5817:247,-177,-84,0,0,0.0750416 -641,5817:246,-176,-84,0,0,0.0750488 -642,5817:245,-175,-84,0,0,0.0750558 -643,5817:144,-174,-84,0,0,0.0750702 -644,5817:143,-173,-84,0,0,0.0750773 -645,5817:142,-172,-84,0,0,0.0750843 -646,5817:141,-171,-84,0,0,0.0750843 -647,5817:140,-170,-84,0,0,0.0750915 -648,5816:249,-169,-84,0,0,0.0750987 -649,5816:248,-168,-84,0,0,0.0751059 -650,5816:247,-167,-84,0,0,0.0751128 -651,5816:246,-166,-84,0,0,0.0751059 -652,5816:245,-165,-84,0,0,0.0751059 -653,5816:144,-164,-84,0,0,0.0751059 -654,5816:143,-163,-84,0,0,0.0751128 -655,5816:142,-162,-84,0,0,0.0751128 -656,5816:141,-161,-84,0,0,0.07512 -657,5816:140,-160,-84,0,0,0.0751344 -658,5815:249,-159,-84,0,0,0.0751416 -659,5815:248,-158,-84,0,0,0.0751558 -660,5815:247,-157,-84,0,0,0.0751486 -661,5815:246,-156,-84,0,0,0.0751558 -662,5815:245,-155,-84,0,0,0.075163 -663,5815:144,-154,-84,0,0,0.0751486 -664,5815:143,-153,-84,0,0,0.075163 -665,5815:142,-152,-84,0,0,0.0751558 -666,5815:141,-151,-84,0,0,0.0751416 -667,5815:140,-150,-84,0,0,0.0751416 -668,5814:249,-149,-84,0,0,0.0751344 -669,5814:248,-148,-84,0,0,0.0751344 -670,5814:247,-147,-84,0,0,0.0751272 -671,5814:246,-146,-84,0,0,0.07512 -672,5814:245,-145,-84,0,0,0.07512 -673,5814:144,-144,-84,0,0,0.0751128 -674,5814:143,-143,-84,0,0,0.07512 -675,5814:142,-142,-84,0,0,0.0751128 -676,5814:141,-141,-84,0,0,0.0751128 -677,5814:140,-140,-84,0,0,0.07512 -678,5813:249,-139,-84,0,0,0.07512 -679,5813:248,-138,-84,0,0,0.0751272 -680,5813:247,-137,-84,0,0,0.07527 -681,5813:246,-136,-84,0,0,0.0758155 -682,5813:245,-135,-84,0,0,0.0776421 -683,5813:144,-134,-84,0,0,0.0779001 -684,5811:140,-110,-84,0,0,0.0832649 -685,5810:249,-109,-84,0,0,0.0880188 -686,5810:246,-106,-84,0,0,0.0759162 -687,5810:245,-105,-84,0,0,0.0753775 -688,5810:144,-104,-84,0,0,0.0768514 -689,5810:143,-103,-84,0,0,0.0810109 -690,5806:141,-61,-84,0,0,0.0753489 -691,5806:140,-60,-84,0,0,0.075163 -692,5805:249,-59,-84,0,0,0.0750201 -693,5805:248,-58,-84,0,0,0.074949 -694,5805:247,-57,-84,0,0,0.0749346 -695,5805:246,-56,-84,0,0,0.0749275 -696,5805:245,-55,-84,0,0,0.0749346 -697,5805:144,-54,-84,0,0,0.0749346 -698,5805:143,-53,-84,0,0,0.0749418 -699,5805:142,-52,-84,0,0,0.0749562 -700,5805:141,-51,-84,0,0,0.0749631 -701,5805:140,-50,-84,0,0,0.0749631 -702,5804:249,-49,-84,0,0,0.0749631 -703,5804:248,-48,-84,0,0,0.074949 -704,5804:247,-47,-84,0,0,0.0749703 -705,5804:246,-46,-84,0,0,0.0749988 -706,5804:245,-45,-84,0,0,0.0750273 -707,5804:144,-44,-84,0,0,0.0750201 -708,5804:143,-43,-84,0,0,0.0750201 -709,5804:142,-42,-84,0,0,0.0750131 -710,5804:141,-41,-84,0,0,0.0750201 -711,5804:140,-40,-84,0,0,0.0750345 -712,5803:249,-39,-84,0,0,0.0750345 -713,5803:248,-38,-84,0,0,0.0750345 -714,5803:247,-37,-84,0,0,0.0750345 -715,5803:246,-36,-84,0,0,0.0750345 -716,5803:245,-35,-84,0,0,0.0750416 -717,5803:144,-34,-84,0,0,0.0750345 -718,5803:143,-33,-84,0,0,0.0750345 -719,5803:142,-32,-84,0,0,0.0750416 -720,5803:141,-31,-84,0,0,0.0750488 -721,5803:140,-30,-84,0,0,0.0750488 -722,5802:249,-29,-84,0,0,0.0750488 -723,5802:248,-28,-84,0,0,0.0750345 -724,5802:247,-27,-84,0,0,0.0750201 -725,5802:246,-26,-84,0,0,0.0761183 -726,5802:245,-25,-84,0,0,0.0756715 -727,5802:144,-24,-84,0,0,0.0789397 -728,3816:246,166,-84,0,0,0.0752487 -729,3816:247,167,-84,0,0,0.075063 -730,3816:248,168,-84,0,0,0.0749846 -731,3816:249,169,-84,0,0,0.074899 -732,3817:140,170,-84,0,0,0.074892 -733,3817:141,171,-84,0,0,0.0748777 -734,3817:142,172,-84,0,0,0.0807894 -735,3817:143,173,-84,0,0,0.0878209 -736,3817:144,174,-84,0,0,0.087558 -737,3817:245,175,-84,0,0,0.0873776 -738,3817:246,176,-84,0,0,0.0863183 -739,3817:247,177,-84,0,0,0.0752844 -740,3817:248,178,-84,0,0,0.0748849 -741,3817:249,179,-84,0,0,0.074949 -742,3818:140,180,-84,0,0,0.0749916 -743,5818:130,-180,-83,0,0,0.0749916 -744,5817:239,-179,-83,0,0,0.0750201 -745,5817:238,-178,-83,0,0,0.0750201 -746,5817:237,-177,-83,0,0,0.0750416 -747,5817:236,-176,-83,0,0,0.0750488 -748,5817:235,-175,-83,0,0,0.0750558 -749,5817:134,-174,-83,0,0,0.0750702 -750,5817:133,-173,-83,0,0,0.0750773 -751,5817:132,-172,-83,0,0,0.0750843 -752,5817:131,-171,-83,0,0,0.0750843 -753,5817:130,-170,-83,0,0,0.0750915 -754,5816:239,-169,-83,0,0,0.0750987 -755,5816:238,-168,-83,0,0,0.0751059 -756,5816:237,-167,-83,0,0,0.0751128 -757,5816:236,-166,-83,0,0,0.0751059 -758,5816:235,-165,-83,0,0,0.0751059 -759,5816:134,-164,-83,0,0,0.0751059 -760,5816:133,-163,-83,0,0,0.0751128 -761,5816:132,-162,-83,0,0,0.0751128 -762,5816:131,-161,-83,0,0,0.07512 -763,5816:130,-160,-83,0,0,0.0751344 -764,5815:239,-159,-83,0,0,0.0751416 -765,5815:238,-158,-83,0,0,0.0751558 -766,5815:237,-157,-83,0,0,0.0751486 -767,5815:236,-156,-83,0,0,0.0751558 -768,5815:235,-155,-83,0,0,0.075163 -769,5815:134,-154,-83,0,0,0.0751486 -770,5815:133,-153,-83,0,0,0.075163 -771,5815:132,-152,-83,0,0,0.0751558 -772,5815:131,-151,-83,0,0,0.0751416 -773,5815:130,-150,-83,0,0,0.0751416 -774,5814:239,-149,-83,0,0,0.0751344 -775,5814:238,-148,-83,0,0,0.0751344 -776,5814:237,-147,-83,0,0,0.0751272 -777,5814:236,-146,-83,0,0,0.07512 -778,5814:235,-145,-83,0,0,0.07512 -779,5814:134,-144,-83,0,0,0.0751128 -780,5814:133,-143,-83,0,0,0.07512 -781,5814:132,-142,-83,0,0,0.0751128 -782,5814:131,-141,-83,0,0,0.0751128 -783,5814:130,-140,-83,0,0,0.07512 -784,5813:239,-139,-83,0,0,0.07512 -785,5813:238,-138,-83,0,0,0.0751272 -786,5813:237,-137,-83,0,0,0.07527 -787,5813:236,-136,-83,0,0,0.0758155 -788,5813:235,-135,-83,0,0,0.0776421 -789,5813:134,-134,-83,0,0,0.0779001 -790,5811:130,-110,-83,0,0,0.0832649 -791,5810:239,-109,-83,0,0,0.0880188 -792,5810:236,-106,-83,0,0,0.0759162 -793,5810:235,-105,-83,0,0,0.0753775 -794,5810:134,-104,-83,0,0,0.0768514 -795,5810:133,-103,-83,0,0,0.0810109 -796,5806:131,-61,-83,0,0,0.0753489 -797,5806:130,-60,-83,0,0,0.075163 -798,5805:239,-59,-83,0,0,0.0750201 -799,5805:238,-58,-83,0,0,0.074949 -800,5805:237,-57,-83,0,0,0.0749346 -801,5805:236,-56,-83,0,0,0.0749275 -802,5805:235,-55,-83,0,0,0.0749346 -803,5805:134,-54,-83,0,0,0.0749346 -804,5805:133,-53,-83,0,0,0.0749418 -805,5805:132,-52,-83,0,0,0.0749562 -806,5805:131,-51,-83,0,0,0.0749631 -807,5805:130,-50,-83,0,0,0.0749631 -808,5804:239,-49,-83,0,0,0.0749631 -809,5804:238,-48,-83,0,0,0.074949 -810,5804:237,-47,-83,0,0,0.0749703 -811,5804:236,-46,-83,0,0,0.0749988 -812,5804:235,-45,-83,0,0,0.0750273 -813,5804:134,-44,-83,0,0,0.0750201 -814,5804:133,-43,-83,0,0,0.0750201 -815,5804:132,-42,-83,0,0,0.0750131 -816,5804:131,-41,-83,0,0,0.0750201 -817,5804:130,-40,-83,0,0,0.0750345 -818,5803:239,-39,-83,0,0,0.0750345 -819,5803:238,-38,-83,0,0,0.0750345 -820,5803:237,-37,-83,0,0,0.0750345 -821,5803:236,-36,-83,0,0,0.0750345 -822,5803:235,-35,-83,0,0,0.0750416 -823,5803:134,-34,-83,0,0,0.0750345 -824,5803:133,-33,-83,0,0,0.0750345 -825,5803:132,-32,-83,0,0,0.0750416 -826,5803:131,-31,-83,0,0,0.0750488 -827,5803:130,-30,-83,0,0,0.0750488 -828,5802:239,-29,-83,0,0,0.0750488 -829,5802:238,-28,-83,0,0,0.0750345 -830,5802:237,-27,-83,0,0,0.0750201 -831,5802:236,-26,-83,0,0,0.0761183 -832,5802:235,-25,-83,0,0,0.0756715 -833,5802:134,-24,-83,0,0,0.0789397 -834,3816:236,166,-83,0,0,0.0752487 -835,3816:237,167,-83,0,0,0.075063 -836,3816:238,168,-83,0,0,0.0749846 -837,3816:239,169,-83,0,0,0.074899 -838,3817:130,170,-83,0,0,0.074892 -839,3817:131,171,-83,0,0,0.0748777 -840,3817:132,172,-83,0,0,0.0807894 -841,3817:133,173,-83,0,0,0.0878209 -842,3817:134,174,-83,0,0,0.087558 -843,3817:235,175,-83,0,0,0.0873776 -844,3817:236,176,-83,0,0,0.0863183 -845,3817:237,177,-83,0,0,0.0752844 -846,3817:238,178,-83,0,0,0.0748849 -847,3817:239,179,-83,0,0,0.074949 -848,3818:130,180,-83,0,0,0.0749916 -849,5818:120,-180,-82,0,0,0.0749916 -850,5817:229,-179,-82,0,0,0.0750201 -851,5817:228,-178,-82,0,0,0.0750201 -852,5817:227,-177,-82,0,0,0.0750416 -853,5817:226,-176,-82,0,0,0.0750488 -854,5817:225,-175,-82,0,0,0.0750558 -855,5817:124,-174,-82,0,0,0.0750702 -856,5817:123,-173,-82,0,0,0.0750773 -857,5817:122,-172,-82,0,0,0.0750843 -858,5817:121,-171,-82,0,0,0.0750843 -859,5817:120,-170,-82,0,0,0.0750915 -860,5816:229,-169,-82,0,0,0.0750987 -861,5816:228,-168,-82,0,0,0.0751059 -862,5816:227,-167,-82,0,0,0.0751128 -863,5816:226,-166,-82,0,0,0.0751059 -864,5816:225,-165,-82,0,0,0.0751059 -865,5816:124,-164,-82,0,0,0.0751059 -866,5816:123,-163,-82,0,0,0.0751128 -867,5816:122,-162,-82,0,0,0.0751128 -868,5816:121,-161,-82,0,0,0.07512 -869,5816:120,-160,-82,0,0,0.0751344 -870,5815:229,-159,-82,0,0,0.0751416 -871,5815:228,-158,-82,0,0,0.0751558 -872,5815:227,-157,-82,0,0,0.0751486 -873,5815:226,-156,-82,0,0,0.0751558 -874,5815:225,-155,-82,0,0,0.075163 -875,5815:124,-154,-82,0,0,0.0751486 -876,5815:123,-153,-82,0,0,0.075163 -877,5815:122,-152,-82,0,0,0.0751558 -878,5815:121,-151,-82,0,0,0.0751416 -879,5815:120,-150,-82,0,0,0.0751416 -880,5814:229,-149,-82,0,0,0.0751344 -881,5814:228,-148,-82,0,0,0.0751344 -882,5814:227,-147,-82,0,0,0.0751272 -883,5814:226,-146,-82,0,0,0.07512 -884,5814:225,-145,-82,0,0,0.07512 -885,5814:124,-144,-82,0,0,0.0751128 -886,5814:123,-143,-82,0,0,0.07512 -887,5814:122,-142,-82,0,0,0.0751128 -888,5814:121,-141,-82,0,0,0.0751128 -889,5814:120,-140,-82,0,0,0.07512 -890,5813:229,-139,-82,0,0,0.07512 -891,5813:228,-138,-82,0,0,0.0751272 -892,5813:227,-137,-82,0,0,0.07527 -893,5813:226,-136,-82,0,0,0.0758155 -894,5813:225,-135,-82,0,0,0.0776421 -895,5813:124,-134,-82,0,0,0.0779001 -896,5811:120,-110,-82,0,0,0.0832649 -897,5810:229,-109,-82,0,0,0.0880188 -898,5810:226,-106,-82,0,0,0.0759162 -899,5810:225,-105,-82,0,0,0.0753775 -900,5810:124,-104,-82,0,0,0.0768514 -901,5810:123,-103,-82,0,0,0.0810109 -902,5806:121,-61,-82,0,0,0.0753489 -903,5806:120,-60,-82,0,0,0.075163 -904,5805:229,-59,-82,0,0,0.0750201 -905,5805:228,-58,-82,0,0,0.074949 -906,5805:227,-57,-82,0,0,0.0749346 -907,5805:226,-56,-82,0,0,0.0749275 -908,5805:225,-55,-82,0,0,0.0749346 -909,5805:124,-54,-82,0,0,0.0749346 -910,5805:123,-53,-82,0,0,0.0749418 -911,5805:122,-52,-82,0,0,0.0749562 -912,5805:121,-51,-82,0,0,0.0749631 -913,5805:120,-50,-82,0,0,0.0749631 -914,5804:229,-49,-82,0,0,0.0749631 -915,5804:228,-48,-82,0,0,0.074949 -916,5804:227,-47,-82,0,0,0.0749703 -917,5804:226,-46,-82,0,0,0.0749988 -918,5804:225,-45,-82,0,0,0.0750273 -919,5804:124,-44,-82,0,0,0.0750201 -920,5804:123,-43,-82,0,0,0.0750201 -921,5804:122,-42,-82,0,0,0.0750131 -922,5804:121,-41,-82,0,0,0.0750201 -923,5804:120,-40,-82,0,0,0.0750345 -924,5803:229,-39,-82,0,0,0.0750345 -925,5803:228,-38,-82,0,0,0.0750345 -926,5803:227,-37,-82,0,0,0.0750345 -927,5803:226,-36,-82,0,0,0.0750345 -928,5803:225,-35,-82,0,0,0.0750416 -929,5803:124,-34,-82,0,0,0.0750345 -930,5803:123,-33,-82,0,0,0.0750345 -931,5803:122,-32,-82,0,0,0.0750416 -932,5803:121,-31,-82,0,0,0.0750488 -933,5803:120,-30,-82,0,0,0.0750488 -934,5802:229,-29,-82,0,0,0.0750488 -935,5802:228,-28,-82,0,0,0.0750345 -936,5802:227,-27,-82,0,0,0.0750201 -937,5802:226,-26,-82,0,0,0.0761183 -938,5802:225,-25,-82,0,0,0.0756715 -939,5802:124,-24,-82,0,0,0.0789397 -940,3816:226,166,-82,0,0,0.0752487 -941,3816:227,167,-82,0,0,0.075063 -942,3816:228,168,-82,0,0,0.0749846 -943,3816:229,169,-82,0,0,0.074899 -944,3817:120,170,-82,0,0,0.074892 -945,3817:121,171,-82,0,0,0.0748777 -946,3817:122,172,-82,0,0,0.0807894 -947,3817:123,173,-82,0,0,0.0878209 -948,3817:124,174,-82,0,0,0.087558 -949,3817:225,175,-82,0,0,0.0873776 -950,3817:226,176,-82,0,0,0.0863183 -951,3817:227,177,-82,0,0,0.0752844 -952,3817:228,178,-82,0,0,0.0748849 -953,3817:229,179,-82,0,0,0.074949 -954,3818:120,180,-82,0,0,0.0749916 -955,5818:110,-180,-81,0,0,0.0749916 -956,5817:219,-179,-81,0,0,0.0750201 -957,5817:218,-178,-81,0,0,0.0750201 -958,5817:217,-177,-81,0,0,0.0750416 -959,5817:216,-176,-81,0,0,0.0750488 -960,5817:215,-175,-81,0,0,0.0750558 -961,5817:114,-174,-81,0,0,0.0750702 -962,5817:113,-173,-81,0,0,0.0750773 -963,5817:112,-172,-81,0,0,0.0750843 -964,5817:111,-171,-81,0,0,0.0750843 -965,5817:110,-170,-81,0,0,0.0750915 -966,5816:219,-169,-81,0,0,0.0750987 -967,5816:218,-168,-81,0,0,0.0751059 -968,5816:217,-167,-81,0,0,0.0751128 -969,5816:216,-166,-81,0,0,0.0751059 -970,5816:215,-165,-81,0,0,0.0751059 -971,5816:114,-164,-81,0,0,0.0751059 -972,5816:113,-163,-81,0,0,0.0751128 -973,5816:112,-162,-81,0,0,0.0751128 -974,5816:111,-161,-81,0,0,0.07512 -975,5816:110,-160,-81,0,0,0.0751344 -976,5815:219,-159,-81,0,0,0.0751416 -977,5815:218,-158,-81,0,0,0.0751558 -978,5815:217,-157,-81,0,0,0.0751486 -979,5815:216,-156,-81,0,0,0.0751558 -980,5815:215,-155,-81,0,0,0.075163 -981,5815:114,-154,-81,0,0,0.0751486 -982,5815:113,-153,-81,0,0,0.075163 -983,5815:112,-152,-81,0,0,0.0751558 -984,5815:111,-151,-81,0,0,0.0751416 -985,5815:110,-150,-81,0,0,0.0751416 -986,5814:219,-149,-81,0,0,0.0751344 -987,5814:218,-148,-81,0,0,0.0751344 -988,5814:217,-147,-81,0,0,0.0751272 -989,5814:216,-146,-81,0,0,0.07512 -990,5814:215,-145,-81,0,0,0.07512 -991,5814:114,-144,-81,0,0,0.0751128 -992,5814:113,-143,-81,0,0,0.07512 -993,5814:112,-142,-81,0,0,0.0751128 -994,5814:111,-141,-81,0,0,0.0751128 -995,5814:110,-140,-81,0,0,0.07512 -996,5813:219,-139,-81,0,0,0.07512 -997,5813:218,-138,-81,0,0,0.0751272 -998,5813:217,-137,-81,0,0,0.07527 -999,5813:216,-136,-81,0,0,0.0758155 -1000,5813:215,-135,-81,0,0,0.0776421 -1001,5813:114,-134,-81,0,0,0.0779001 -1002,5811:110,-110,-81,0,0,0.0832649 -1003,5810:219,-109,-81,0,0,0.0880188 -1004,5810:216,-106,-81,0,0,0.0759162 -1005,5810:215,-105,-81,0,0,0.0753775 -1006,5810:114,-104,-81,0,0,0.0768514 -1007,5810:113,-103,-81,0,0,0.0810109 -1008,5806:111,-61,-81,0,0,0.0753489 -1009,5806:110,-60,-81,0,0,0.075163 -1010,5805:219,-59,-81,0,0,0.0750201 -1011,5805:218,-58,-81,0,0,0.074949 -1012,5805:217,-57,-81,0,0,0.0749346 -1013,5805:216,-56,-81,0,0,0.0749275 -1014,5805:215,-55,-81,0,0,0.0749346 -1015,5805:114,-54,-81,0,0,0.0749346 -1016,5805:113,-53,-81,0,0,0.0749418 -1017,5805:112,-52,-81,0,0,0.0749562 -1018,5805:111,-51,-81,0,0,0.0749631 -1019,5805:110,-50,-81,0,0,0.0749631 -1020,5804:219,-49,-81,0,0,0.0749631 -1021,5804:218,-48,-81,0,0,0.074949 -1022,5804:217,-47,-81,0,0,0.0749703 -1023,5804:216,-46,-81,0,0,0.0749988 -1024,5804:215,-45,-81,0,0,0.0750273 -1025,5804:114,-44,-81,0,0,0.0750201 -1026,5804:113,-43,-81,0,0,0.0750201 -1027,5804:112,-42,-81,0,0,0.0750131 -1028,5804:111,-41,-81,0,0,0.0750201 -1029,5804:110,-40,-81,0,0,0.0750345 -1030,5803:219,-39,-81,0,0,0.0750345 -1031,5803:218,-38,-81,0,0,0.0750345 -1032,5803:217,-37,-81,0,0,0.0750345 -1033,5803:216,-36,-81,0,0,0.0750345 -1034,5803:215,-35,-81,0,0,0.0750416 -1035,5803:114,-34,-81,0,0,0.0750345 -1036,5803:113,-33,-81,0,0,0.0750345 -1037,5803:112,-32,-81,0,0,0.0750416 -1038,5803:111,-31,-81,0,0,0.0750488 -1039,5803:110,-30,-81,0,0,0.0750488 -1040,5802:219,-29,-81,0,0,0.0750488 -1041,5802:218,-28,-81,0,0,0.0750345 -1042,5802:217,-27,-81,0,0,0.0750201 -1043,5802:216,-26,-81,0,0,0.0761183 -1044,5802:215,-25,-81,0,0,0.0756715 -1045,5802:114,-24,-81,0,0,0.0789397 -1046,3816:216,166,-81,0,0,0.0752487 -1047,3816:217,167,-81,0,0,0.075063 -1048,3816:218,168,-81,0,0,0.0749846 -1049,3816:219,169,-81,0,0,0.074899 -1050,3817:110,170,-81,0,0,0.074892 -1051,3817:111,171,-81,0,0,0.0748777 -1052,3817:112,172,-81,0,0,0.0807894 -1053,3817:113,173,-81,0,0,0.0878209 -1054,3817:114,174,-81,0,0,0.087558 -1055,3817:215,175,-81,0,0,0.0873776 -1056,3817:216,176,-81,0,0,0.0863183 -1057,3817:217,177,-81,0,0,0.0752844 -1058,3817:218,178,-81,0,0,0.0748849 -1059,3817:219,179,-81,0,0,0.074949 -1060,3818:110,180,-81,0,0,0.0749916 -1061,5818:100,-180,-80,0,0,0.0749916 -1062,5817:209,-179,-80,0,0,0.0750201 -1063,5817:208,-178,-80,0,0,0.0750201 -1064,5817:207,-177,-80,0,0,0.0750416 -1065,5817:206,-176,-80,0,0,0.0750488 -1066,5817:205,-175,-80,0,0,0.0750558 -1067,5817:104,-174,-80,0,0,0.0750702 -1068,5817:103,-173,-80,0,0,0.0750773 -1069,5817:102,-172,-80,0,0,0.0750843 -1070,5817:101,-171,-80,0,0,0.0750843 -1071,5817:100,-170,-80,0,0,0.0750915 -1072,5816:209,-169,-80,0,0,0.0750987 -1073,5816:208,-168,-80,0,0,0.0751059 -1074,5816:207,-167,-80,0,0,0.0751128 -1075,5816:206,-166,-80,0,0,0.0751059 -1076,5816:205,-165,-80,0,0,0.0751059 -1077,5816:104,-164,-80,0,0,0.0751059 -1078,5816:103,-163,-80,0,0,0.0751128 -1079,5816:102,-162,-80,0,0,0.0751128 -1080,5816:101,-161,-80,0,0,0.07512 -1081,5816:100,-160,-80,0,0,0.0751344 -1082,5815:209,-159,-80,0,0,0.0751416 -1083,5815:208,-158,-80,0,0,0.0751558 -1084,5815:207,-157,-80,0,0,0.0751486 -1085,5815:206,-156,-80,0,0,0.0751558 -1086,5815:205,-155,-80,0,0,0.075163 -1087,5815:104,-154,-80,0,0,0.0751486 -1088,5815:103,-153,-80,0,0,0.075163 -1089,5815:102,-152,-80,0,0,0.0751558 -1090,5815:101,-151,-80,0,0,0.0751416 -1091,5815:100,-150,-80,0,0,0.0751416 -1092,5814:209,-149,-80,0,0,0.0751344 -1093,5814:208,-148,-80,0,0,0.0751344 -1094,5814:207,-147,-80,0,0,0.0751272 -1095,5814:206,-146,-80,0,0,0.07512 -1096,5814:205,-145,-80,0,0,0.07512 -1097,5814:104,-144,-80,0,0,0.0751128 -1098,5814:103,-143,-80,0,0,0.07512 -1099,5814:102,-142,-80,0,0,0.0751128 -1100,5814:101,-141,-80,0,0,0.0751128 -1101,5814:100,-140,-80,0,0,0.07512 -1102,5813:209,-139,-80,0,0,0.07512 -1103,5813:208,-138,-80,0,0,0.0751272 -1104,5813:207,-137,-80,0,0,0.07527 -1105,5813:206,-136,-80,0,0,0.0758155 -1106,5813:205,-135,-80,0,0,0.0776421 -1107,5813:104,-134,-80,0,0,0.0779001 -1108,5811:100,-110,-80,0,0,0.0832649 -1109,5810:209,-109,-80,0,0,0.0880188 -1110,5810:206,-106,-80,0,0,0.0759162 -1111,5810:205,-105,-80,0,0,0.0753775 -1112,5810:104,-104,-80,0,0,0.0768514 -1113,5810:103,-103,-80,0,0,0.0810109 -1114,5806:101,-61,-80,0,0,0.0753489 -1115,5806:100,-60,-80,0,0,0.075163 -1116,5805:209,-59,-80,0,0,0.0750201 -1117,5805:208,-58,-80,0,0,0.074949 -1118,5805:207,-57,-80,0,0,0.0749346 -1119,5805:206,-56,-80,0,0,0.0749275 -1120,5805:205,-55,-80,0,0,0.0749346 -1121,5805:104,-54,-80,0,0,0.0749346 -1122,5805:103,-53,-80,0,0,0.0749418 -1123,5805:102,-52,-80,0,0,0.0749562 -1124,5805:101,-51,-80,0,0,0.0749631 -1125,5805:100,-50,-80,0,0,0.0749631 -1126,5804:209,-49,-80,0,0,0.0749631 -1127,5804:208,-48,-80,0,0,0.074949 -1128,5804:207,-47,-80,0,0,0.0749703 -1129,5804:206,-46,-80,0,0,0.0749988 -1130,5804:205,-45,-80,0,0,0.0750273 -1131,5804:104,-44,-80,0,0,0.0750201 -1132,5804:103,-43,-80,0,0,0.0750201 -1133,5804:102,-42,-80,0,0,0.0750131 -1134,5804:101,-41,-80,0,0,0.0750201 -1135,5804:100,-40,-80,0,0,0.0750345 -1136,5803:209,-39,-80,0,0,0.0750345 -1137,5803:208,-38,-80,0,0,0.0750345 -1138,5803:207,-37,-80,0,0,0.0750345 -1139,5803:206,-36,-80,0,0,0.0750345 -1140,5803:205,-35,-80,0,0,0.0750416 -1141,5803:104,-34,-80,0,0,0.0750345 -1142,5803:103,-33,-80,0,0,0.0750345 -1143,5803:102,-32,-80,0,0,0.0750416 -1144,5803:101,-31,-80,0,0,0.0750488 -1145,5803:100,-30,-80,0,0,0.0750488 -1146,5802:209,-29,-80,0,0,0.0750488 -1147,5802:208,-28,-80,0,0,0.0750345 -1148,5802:207,-27,-80,0,0,0.0750201 -1149,5802:206,-26,-80,0,0,0.0761183 -1150,5802:205,-25,-80,0,0,0.0756715 -1151,5802:104,-24,-80,0,0,0.0789397 -1152,3816:206,166,-80,0,0,0.0752487 -1153,3816:207,167,-80,0,0,0.075063 -1154,3816:208,168,-80,0,0,0.0749846 -1155,3816:209,169,-80,0,0,0.074899 -1156,3817:100,170,-80,0,0,0.074892 -1157,3817:101,171,-80,0,0,0.0748777 -1158,3817:102,172,-80,0,0,0.0807894 -1159,3817:103,173,-80,0,0,0.0878209 -1160,3817:104,174,-80,0,0,0.087558 -1161,3817:205,175,-80,0,0,0.0873776 -1162,3817:206,176,-80,0,0,0.0863183 -1163,3817:207,177,-80,0,0,0.0752844 -1164,3817:208,178,-80,0,0,0.0748849 -1165,3817:209,179,-80,0,0,0.074949 -1166,3818:100,180,-80,0,0,0.0749916 -1167,5718:390,-180,-79,0,0,0.0749916 -1168,5717:499,-179,-79,0,0,0.0750201 -1169,5717:498,-178,-79,0,0,0.0750201 -1170,5717:497,-177,-79,0,0,0.0750416 -1171,5717:496,-176,-79,0,0,0.0750488 -1172,5717:495,-175,-79,0,0,0.0750558 -1173,5717:394,-174,-79,0,0,0.0750702 -1174,5717:393,-173,-79,0,0,0.0750773 -1175,5717:392,-172,-79,0,0,0.0750843 -1176,5717:391,-171,-79,0,0,0.0750843 -1177,5717:390,-170,-79,0,0,0.0750915 -1178,5716:499,-169,-79,0,0,0.0750987 -1179,5716:498,-168,-79,0,0,0.0751059 -1180,5716:497,-167,-79,0,0,0.0751128 -1181,5716:496,-166,-79,0,0,0.0751059 -1182,5716:495,-165,-79,0,0,0.0751059 -1183,5716:394,-164,-79,0,0,0.0751059 -1184,5716:393,-163,-79,0,0,0.0751128 -1185,5716:392,-162,-79,0,0,0.0751128 -1186,5716:391,-161,-79,0,0,0.07512 -1187,5716:390,-160,-79,0,0,0.0751344 -1188,5715:499,-159,-79,0,0,0.0751416 -1189,5715:498,-158,-79,0,0,0.0751558 -1190,5715:497,-157,-79,0,0,0.0751486 -1191,5715:496,-156,-79,0,0,0.0751558 -1192,5715:495,-155,-79,0,0,0.075163 -1193,5715:394,-154,-79,0,0,0.0751486 -1194,5715:393,-153,-79,0,0,0.075163 -1195,5715:392,-152,-79,0,0,0.0751558 -1196,5715:391,-151,-79,0,0,0.0751416 -1197,5715:390,-150,-79,0,0,0.0751416 -1198,5714:499,-149,-79,0,0,0.0751344 -1199,5714:498,-148,-79,0,0,0.0751344 -1200,5714:497,-147,-79,0,0,0.0751272 -1201,5714:496,-146,-79,0,0,0.07512 -1202,5714:495,-145,-79,0,0,0.07512 -1203,5714:394,-144,-79,0,0,0.0751128 -1204,5714:393,-143,-79,0,0,0.07512 -1205,5714:392,-142,-79,0,0,0.0751128 -1206,5714:391,-141,-79,0,0,0.0751128 -1207,5714:390,-140,-79,0,0,0.07512 -1208,5713:499,-139,-79,0,0,0.07512 -1209,5713:498,-138,-79,0,0,0.0751272 -1210,5713:497,-137,-79,0,0,0.07527 -1211,5713:496,-136,-79,0,0,0.0758155 -1212,5713:495,-135,-79,0,0,0.0776421 -1213,5713:394,-134,-79,0,0,0.0779001 -1214,5711:390,-110,-79,0,0,0.0832649 -1215,5710:499,-109,-79,0,0,0.0880188 -1216,5710:496,-106,-79,0,0,0.0759162 -1217,5710:495,-105,-79,0,0,0.0753775 -1218,5710:394,-104,-79,0,0,0.0768514 -1219,5710:393,-103,-79,0,0,0.0810109 -1220,5706:391,-61,-79,0,0,0.0753489 -1221,5706:390,-60,-79,0,0,0.075163 -1222,5705:499,-59,-79,0,0,0.0750201 -1223,5705:498,-58,-79,0,0,0.074949 -1224,5705:497,-57,-79,0,0,0.0749346 -1225,5705:496,-56,-79,0,0,0.0749275 -1226,5705:495,-55,-79,0,0,0.0749346 -1227,5705:394,-54,-79,0,0,0.0749346 -1228,5705:393,-53,-79,0,0,0.0749418 -1229,5705:392,-52,-79,0,0,0.0749562 -1230,5705:391,-51,-79,0,0,0.0749631 -1231,5705:390,-50,-79,0,0,0.0749631 -1232,5704:499,-49,-79,0,0,0.0749631 -1233,5704:498,-48,-79,0,0,0.074949 -1234,5704:497,-47,-79,0,0,0.0749703 -1235,5704:496,-46,-79,0,0,0.0749988 -1236,5704:495,-45,-79,0,0,0.0750273 -1237,5704:394,-44,-79,0,0,0.0750201 -1238,5704:393,-43,-79,0,0,0.0750201 -1239,5704:392,-42,-79,0,0,0.0750131 -1240,5704:391,-41,-79,0,0,0.0750201 -1241,5704:390,-40,-79,0,0,0.0750345 -1242,5703:499,-39,-79,0,0,0.0750345 -1243,5703:498,-38,-79,0,0,0.0750345 -1244,5703:497,-37,-79,0,0,0.0750345 -1245,5703:496,-36,-79,0,0,0.0750345 -1246,5703:495,-35,-79,0,0,0.0750416 -1247,5703:394,-34,-79,0,0,0.0750345 -1248,5703:393,-33,-79,0,0,0.0750345 -1249,5703:392,-32,-79,0,0,0.0750416 -1250,5703:391,-31,-79,0,0,0.0750488 -1251,5703:390,-30,-79,0,0,0.0750488 -1252,5702:499,-29,-79,0,0,0.0750488 -1253,5702:498,-28,-79,0,0,0.0750345 -1254,5702:497,-27,-79,0,0,0.0750201 -1255,5702:496,-26,-79,0,0,0.0761183 -1256,5702:495,-25,-79,0,0,0.0756715 -1257,5702:394,-24,-79,0,0,0.0789397 -1258,3716:496,166,-79,0,0,0.0752487 -1259,3716:497,167,-79,0,0,0.075063 -1260,3716:498,168,-79,0,0,0.0749846 -1261,3716:499,169,-79,0,0,0.074899 -1262,3717:390,170,-79,0,0,0.074892 -1263,3717:391,171,-79,0,0,0.0748777 -1264,3717:392,172,-79,0,0,0.0807894 -1265,3717:393,173,-79,0,0,0.0878209 -1266,3717:394,174,-79,0,0,0.087558 -1267,3717:495,175,-79,0,0,0.0873776 -1268,3717:496,176,-79,0,0,0.0863183 -1269,3717:497,177,-79,0,0,0.0752844 -1270,3717:498,178,-79,0,0,0.0748849 -1271,3717:499,179,-79,0,0,0.074949 -1272,3718:390,180,-79,0,0,0.0749916 -1273,5718:380,-180,-78,0,0,0.0749916 -1274,5717:489,-179,-78,0,0,0.0750201 -1275,5717:488,-178,-78,0,0,0.0750201 -1276,5717:487,-177,-78,0,0,0.0750416 -1277,5717:486,-176,-78,0,0,0.0750488 -1278,5717:485,-175,-78,0,0,0.0750558 -1279,5717:384,-174,-78,0,0,0.0750702 -1280,5717:383,-173,-78,0,0,0.0750773 -1281,5717:382,-172,-78,0,0,0.0750843 -1282,5717:381,-171,-78,0,0,0.0750843 -1283,5717:380,-170,-78,0,0,0.0750915 -1284,5716:489,-169,-78,0,0,0.0750987 -1285,5716:488,-168,-78,0,0,0.0751059 -1286,5716:487,-167,-78,0,0,0.0751128 -1287,5716:486,-166,-78,0,0,0.0751059 -1288,5716:485,-165,-78,0,0,0.0751059 -1289,5716:384,-164,-78,0,0,0.0751059 -1290,5716:383,-163,-78,0,0,0.0751128 -1291,5716:382,-162,-78,0,0,0.0751128 -1292,5716:381,-161,-78,0,0,0.07512 -1293,5716:380,-160,-78,0,0,0.0751344 -1294,5715:489,-159,-78,0,0,0.0751416 -1295,5715:488,-158,-78,0,0,0.0751558 -1296,5715:487,-157,-78,0,0,0.0751486 -1297,5715:486,-156,-78,0,0,0.0751558 -1298,5715:485,-155,-78,0,0,0.075163 -1299,5715:384,-154,-78,0,0,0.0751486 -1300,5715:383,-153,-78,0,0,0.075163 -1301,5715:382,-152,-78,0,0,0.0751558 -1302,5715:381,-151,-78,0,0,0.0751416 -1303,5715:380,-150,-78,0,0,0.0751416 -1304,5714:489,-149,-78,0,0,0.0751344 -1305,5714:488,-148,-78,0,0,0.0751344 -1306,5714:487,-147,-78,0,0,0.0751272 -1307,5714:486,-146,-78,0,0,0.07512 -1308,5714:485,-145,-78,0,0,0.07512 -1309,5714:384,-144,-78,0,0,0.0751128 -1310,5714:383,-143,-78,0,0,0.07512 -1311,5714:382,-142,-78,0,0,0.0751128 -1312,5714:381,-141,-78,0,0,0.0751128 -1313,5714:380,-140,-78,0,0,0.07512 -1314,5713:489,-139,-78,0,0,0.07512 -1315,5713:488,-138,-78,0,0,0.0751272 -1316,5713:487,-137,-78,0,0,0.07527 -1317,5713:486,-136,-78,0,0,0.0758155 -1318,5713:485,-135,-78,0,0,0.0776421 -1319,5713:384,-134,-78,0,0,0.0779001 -1320,5711:380,-110,-78,0,0,0.0832649 -1321,5710:489,-109,-78,0,0,0.0880188 -1322,5710:486,-106,-78,0,0,0.0759162 -1323,5710:485,-105,-78,0,0,0.0753775 -1324,5710:384,-104,-78,0,0,0.0768514 -1325,5710:383,-103,-78,0,0,0.0810109 -1326,5706:381,-61,-78,0,0,0.0753489 -1327,5706:380,-60,-78,0,0,0.075163 -1328,5705:489,-59,-78,0,0,0.0750201 -1329,5705:488,-58,-78,0,0,0.074949 -1330,5705:487,-57,-78,0,0,0.0749346 -1331,5705:486,-56,-78,0,0,0.0749275 -1332,5705:485,-55,-78,0,0,0.0749346 -1333,5705:384,-54,-78,0,0,0.0749346 -1334,5705:383,-53,-78,0,0,0.0749418 -1335,5705:382,-52,-78,0,0,0.0749562 -1336,5705:381,-51,-78,0,0,0.0749631 -1337,5705:380,-50,-78,0,0,0.0749631 -1338,5704:489,-49,-78,0,0,0.0749631 -1339,5704:488,-48,-78,0,0,0.074949 -1340,5704:487,-47,-78,0,0,0.0749703 -1341,5704:486,-46,-78,0,0,0.0749988 -1342,5704:485,-45,-78,0,0,0.0750273 -1343,5704:384,-44,-78,0,0,0.0750201 -1344,5704:383,-43,-78,0,0,0.0750201 -1345,5704:382,-42,-78,0,0,0.0750131 -1346,5704:381,-41,-78,0,0,0.0750201 -1347,5704:380,-40,-78,0,0,0.0750345 -1348,5703:489,-39,-78,0,0,0.0750345 -1349,5703:488,-38,-78,0,0,0.0750345 -1350,5703:487,-37,-78,0,0,0.0750345 -1351,5703:486,-36,-78,0,0,0.0750345 -1352,5703:485,-35,-78,0,0,0.0750416 -1353,5703:384,-34,-78,0,0,0.0750345 -1354,5703:383,-33,-78,0,0,0.0750345 -1355,5703:382,-32,-78,0,0,0.0750416 -1356,5703:381,-31,-78,0,0,0.0750488 -1357,5703:380,-30,-78,0,0,0.0750488 -1358,5702:489,-29,-78,0,0,0.0750488 -1359,5702:488,-28,-78,0,0,0.0750345 -1360,5702:487,-27,-78,0,0,0.0750201 -1361,5702:486,-26,-78,0,0,0.0761183 -1362,5702:485,-25,-78,0,0,0.0756715 -1363,5702:384,-24,-78,0,0,0.0789397 -1364,3716:486,166,-78,0,0,0.0752487 -1365,3716:487,167,-78,0,0,0.075063 -1366,3716:488,168,-78,0,0,0.0749846 -1367,3716:489,169,-78,0,0,0.074899 -1368,3717:380,170,-78,0,0,0.074892 -1369,3717:381,171,-78,0,0,0.0748777 -1370,3717:382,172,-78,0,0,0.0807894 -1371,3717:383,173,-78,0,0,0.0878209 -1372,3717:384,174,-78,0,0,0.087558 -1373,3717:485,175,-78,0,0,0.0873776 -1374,3717:486,176,-78,0,0,0.0863183 -1375,3717:487,177,-78,0,0,0.0752844 -1376,3717:488,178,-78,0,0,0.0748849 -1377,3717:489,179,-78,0,0,0.074949 -1378,3718:380,180,-78,0,0,0.0749916 -1379,5718:370,-180,-77,0,0,0.0749916 -1380,5717:479,-179,-77,0,0,0.0750201 -1381,5717:478,-178,-77,0,0,0.0750201 -1382,5717:477,-177,-77,0,0,0.0750416 -1383,5717:476,-176,-77,0,0,0.0750488 -1384,5717:475,-175,-77,0,0,0.0750558 -1385,5717:374,-174,-77,0,0,0.0750702 -1386,5717:373,-173,-77,0,0,0.0750773 -1387,5717:372,-172,-77,0,0,0.0750843 -1388,5717:371,-171,-77,0,0,0.0750843 -1389,5717:370,-170,-77,0,0,0.0750915 -1390,5716:479,-169,-77,0,0,0.0750987 -1391,5716:478,-168,-77,0,0,0.0751059 -1392,5716:477,-167,-77,0,0,0.0751128 -1393,5716:476,-166,-77,0,0,0.0751059 -1394,5716:475,-165,-77,0,0,0.0751059 -1395,5716:374,-164,-77,0,0,0.0751059 -1396,5716:373,-163,-77,0,0,0.0751128 -1397,5716:372,-162,-77,0,0,0.0751128 -1398,5716:371,-161,-77,0,0,0.07512 -1399,5716:370,-160,-77,0,0,0.0751344 -1400,5715:479,-159,-77,0,0,0.0751416 -1401,5715:478,-158,-77,0,0,0.0751558 -1402,5715:477,-157,-77,0,0,0.0751486 -1403,5715:476,-156,-77,0,0,0.0751558 -1404,5715:475,-155,-77,0,0,0.075163 -1405,5715:374,-154,-77,0,0,0.0751486 -1406,5715:373,-153,-77,0,0,0.075163 -1407,5715:372,-152,-77,0,0,0.0751558 -1408,5715:371,-151,-77,0,0,0.0751416 -1409,5715:370,-150,-77,0,0,0.0751416 -1410,5714:479,-149,-77,0,0,0.0751344 -1411,5714:478,-148,-77,0,0,0.0751344 -1412,5714:477,-147,-77,0,0,0.0751272 -1413,5714:476,-146,-77,0,0,0.07512 -1414,5714:475,-145,-77,0,0,0.07512 -1415,5714:374,-144,-77,0,0,0.0751128 -1416,5714:373,-143,-77,0,0,0.07512 -1417,5714:372,-142,-77,0,0,0.0751128 -1418,5714:371,-141,-77,0,0,0.0751128 -1419,5714:370,-140,-77,0,0,0.07512 -1420,5713:479,-139,-77,0,0,0.07512 -1421,5713:478,-138,-77,0,0,0.0751272 -1422,5713:477,-137,-77,0,0,0.07527 -1423,5713:476,-136,-77,0,0,0.0758155 -1424,5713:475,-135,-77,0,0,0.0776421 -1425,5713:374,-134,-77,0,0,0.0779001 -1426,5711:370,-110,-77,0,0,0.0832649 -1427,5710:479,-109,-77,0,0,0.0880188 -1428,5710:476,-106,-77,0,0,0.0759162 -1429,5710:475,-105,-77,0,0,0.0753775 -1430,5710:374,-104,-77,0,0,0.0768514 -1431,5710:373,-103,-77,0,0,0.0810109 -1432,5706:371,-61,-77,0,0,0.0753489 -1433,5706:370,-60,-77,0,0,0.075163 -1434,5705:479,-59,-77,0,0,0.0750201 -1435,5705:478,-58,-77,0,0,0.074949 -1436,5705:477,-57,-77,0,0,0.0749346 -1437,5705:476,-56,-77,0,0,0.0749275 -1438,5705:475,-55,-77,0,0,0.0749346 -1439,5705:374,-54,-77,0,0,0.0749346 -1440,5705:373,-53,-77,0,0,0.0749418 -1441,5705:372,-52,-77,0,0,0.0749562 -1442,5705:371,-51,-77,0,0,0.0749631 -1443,5705:370,-50,-77,0,0,0.0749631 -1444,5704:479,-49,-77,0,0,0.0749631 -1445,5704:478,-48,-77,0,0,0.074949 -1446,5704:477,-47,-77,0,0,0.0749703 -1447,5704:476,-46,-77,0,0,0.0749988 -1448,5704:475,-45,-77,0,0,0.0750273 -1449,5704:374,-44,-77,0,0,0.0750201 -1450,5704:373,-43,-77,0,0,0.0750201 -1451,5704:372,-42,-77,0,0,0.0750131 -1452,5704:371,-41,-77,0,0,0.0750201 -1453,5704:370,-40,-77,0,0,0.0750345 -1454,5703:479,-39,-77,0,0,0.0750345 -1455,5703:478,-38,-77,0,0,0.0750345 -1456,5703:477,-37,-77,0,0,0.0750345 -1457,5703:476,-36,-77,0,0,0.0750345 -1458,5703:475,-35,-77,0,0,0.0750416 -1459,5703:374,-34,-77,0,0,0.0750345 -1460,5703:373,-33,-77,0,0,0.0750345 -1461,5703:372,-32,-77,0,0,0.0750416 -1462,5703:371,-31,-77,0,0,0.0750488 -1463,5703:370,-30,-77,0,0,0.0750488 -1464,5702:479,-29,-77,0,0,0.0750488 -1465,5702:478,-28,-77,0,0,0.0750345 -1466,5702:477,-27,-77,0,0,0.0750201 -1467,5702:476,-26,-77,0,0,0.0761183 -1468,5702:475,-25,-77,0,0,0.0756715 -1469,5702:374,-24,-77,0,0,0.0789397 -1470,3716:476,166,-77,0,0,0.0752487 -1471,3716:477,167,-77,0,0,0.075063 -1472,3716:478,168,-77,0,0,0.0749846 -1473,3716:479,169,-77,0,0,0.074899 -1474,3717:370,170,-77,0,0,0.074892 -1475,3717:371,171,-77,0,0,0.0748777 -1476,3717:372,172,-77,0,0,0.0807894 -1477,3717:373,173,-77,0,0,0.0878209 -1478,3717:374,174,-77,0,0,0.087558 -1479,3717:475,175,-77,0,0,0.0873776 -1480,3717:476,176,-77,0,0,0.0863183 -1481,3717:477,177,-77,0,0,0.0752844 -1482,3717:478,178,-77,0,0,0.0748849 -1483,3717:479,179,-77,0,0,0.074949 -1484,3718:370,180,-77,0,0,0.0749916 -1485,5718:360,-180,-76,0,0,0.0749775 -1486,5717:469,-179,-76,0,0,0.075006 -1487,5717:468,-178,-76,0,0,0.0750345 -1488,5717:467,-177,-76,0,0,0.0750345 -1489,5717:466,-176,-76,0,0,0.0750416 -1490,5717:465,-175,-76,0,0,0.0750488 -1491,5717:364,-174,-76,0,0,0.075063 -1492,5717:363,-173,-76,0,0,0.0750702 -1493,5717:362,-172,-76,0,0,0.0750702 -1494,5717:361,-171,-76,0,0,0.0750702 -1495,5717:360,-170,-76,0,0,0.0750702 -1496,5716:469,-169,-76,0,0,0.0750702 -1497,5716:468,-168,-76,0,0,0.0750702 -1498,5716:467,-167,-76,0,0,0.0750702 -1499,5716:466,-166,-76,0,0,0.0750773 -1500,5716:465,-165,-76,0,0,0.0750843 -1501,5716:364,-164,-76,0,0,0.0750915 -1502,5716:363,-163,-76,0,0,0.0750915 -1503,5716:362,-162,-76,0,0,0.0750987 -1504,5716:361,-161,-76,0,0,0.0751059 -1505,5716:360,-160,-76,0,0,0.0751128 -1506,5715:469,-159,-76,0,0,0.0751128 -1507,5715:468,-158,-76,0,0,0.0751059 -1508,5715:467,-157,-76,0,0,0.0751128 -1509,5715:466,-156,-76,0,0,0.0751272 -1510,5715:465,-155,-76,0,0,0.0751272 -1511,5715:364,-154,-76,0,0,0.0751416 -1512,5715:363,-153,-76,0,0,0.0751558 -1513,5715:362,-152,-76,0,0,0.075163 -1514,5715:361,-151,-76,0,0,0.075163 -1515,5715:360,-150,-76,0,0,0.0751558 -1516,5714:469,-149,-76,0,0,0.0751558 -1517,5714:468,-148,-76,0,0,0.075163 -1518,5714:467,-147,-76,0,0,0.0751701 -1519,5714:466,-146,-76,0,0,0.0751701 -1520,5714:465,-145,-76,0,0,0.0751558 -1521,5714:364,-144,-76,0,0,0.0751486 -1522,5714:363,-143,-76,0,0,0.0751558 -1523,5714:362,-142,-76,0,0,0.0751558 -1524,5714:361,-141,-76,0,0,0.0751416 -1525,5714:360,-140,-76,0,0,0.0751344 -1526,5713:469,-139,-76,0,0,0.07512 -1527,5713:468,-138,-76,0,0,0.0751059 -1528,5713:467,-137,-76,0,0,0.0750987 -1529,5713:466,-136,-76,0,0,0.0750915 -1530,5713:465,-135,-76,0,0,0.0750702 -1531,5713:364,-134,-76,0,0,0.0750416 -1532,5713:363,-133,-76,0,0,0.0750488 -1533,5713:362,-132,-76,0,0,0.0752844 -1534,5713:361,-131,-76,0,0,0.0790444 -1535,5713:360,-130,-76,0,0,0.0808658 -1536,5712:469,-129,-76,0,0,0.0833984 -1537,5712:468,-128,-76,0,0,0.0821503 -1538,5711:467,-117,-76,0,0,0.0752631 -1539,5711:465,-115,-76,0,0,0.0772606 -1540,5711:363,-113,-76,0,0,0.0838865 -1541,5711:362,-112,-76,0,0,0.0835949 -1542,5711:361,-111,-76,0,0,0.0856883 -1543,5711:360,-110,-76,0,0,0.0858897 -1544,5710:467,-107,-76,0,0,0.075729 -1545,5710:466,-106,-76,0,0,0.0752916 -1546,5710:465,-105,-76,0,0,0.0752844 -1547,5710:364,-104,-76,0,0,0.0764803 -1548,5710:363,-103,-76,0,0,0.0809726 -1549,5710:362,-102,-76,0,0,0.0821503 -1550,5706:361,-61,-76,0,0,0.0754061 -1551,5706:360,-60,-76,0,0,0.0752487 -1552,5705:469,-59,-76,0,0,0.0750488 -1553,5705:468,-58,-76,0,0,0.0749775 -1554,5705:467,-57,-76,0,0,0.0749418 -1555,5705:466,-56,-76,0,0,0.0749346 -1556,5705:465,-55,-76,0,0,0.0749346 -1557,5705:364,-54,-76,0,0,0.0749418 -1558,5705:363,-53,-76,0,0,0.0749562 -1559,5705:362,-52,-76,0,0,0.0749703 -1560,5705:361,-51,-76,0,0,0.0749775 -1561,5705:360,-50,-76,0,0,0.0749846 -1562,5704:469,-49,-76,0,0,0.0749846 -1563,5704:468,-48,-76,0,0,0.0749846 -1564,5704:467,-47,-76,0,0,0.0749775 -1565,5704:466,-46,-76,0,0,0.0749916 -1566,5704:465,-45,-76,0,0,0.0750131 -1567,5704:364,-44,-76,0,0,0.0750345 -1568,5704:363,-43,-76,0,0,0.0750345 -1569,5704:362,-42,-76,0,0,0.0750416 -1570,5704:361,-41,-76,0,0,0.0750416 -1571,5704:360,-40,-76,0,0,0.0750488 -1572,5703:469,-39,-76,0,0,0.0750488 -1573,5703:468,-38,-76,0,0,0.0750488 -1574,5703:467,-37,-76,0,0,0.0750488 -1575,5703:466,-36,-76,0,0,0.0750488 -1576,5703:465,-35,-76,0,0,0.0750488 -1577,5703:364,-34,-76,0,0,0.0750558 -1578,5703:363,-33,-76,0,0,0.0750558 -1579,5703:362,-32,-76,0,0,0.0750558 -1580,5703:361,-31,-76,0,0,0.0750488 -1581,5703:360,-30,-76,0,0,0.0750488 -1582,5702:469,-29,-76,0,0,0.0750488 -1583,5702:468,-28,-76,0,0,0.0750416 -1584,5702:467,-27,-76,0,0,0.0750345 -1585,5702:466,-26,-76,0,0,0.0750345 -1586,5702:465,-25,-76,0,0,0.0754348 -1587,5702:364,-24,-76,0,0,0.0767785 -1588,5702:363,-23,-76,0,0,0.0782775 -1589,5702:362,-22,-76,0,0,0.0828814 -1590,5702:361,-21,-76,0,0,0.0866349 -1591,3716:467,167,-76,0,0,0.0752273 -1592,3716:468,168,-76,0,0,0.0750416 -1593,3716:469,169,-76,0,0,0.0749916 -1594,3717:360,170,-76,0,0,0.0749988 -1595,3717:361,171,-76,0,0,0.074892 -1596,3717:362,172,-76,0,0,0.0763427 -1597,3717:363,173,-76,0,0,0.0795393 -1598,3717:364,174,-76,0,0,0.0850706 -1599,3717:465,175,-76,0,0,0.086651 -1600,3717:466,176,-76,0,0,0.0858252 -1601,3717:467,177,-76,0,0,0.0754133 -1602,3717:468,178,-76,0,0,0.0748777 -1603,3717:469,179,-76,0,0,0.0749346 -1604,3718:360,180,-76,0,0,0.0749775 -1605,5718:350,-180,-75,0,0,0.0749775 -1606,5717:459,-179,-75,0,0,0.0749988 -1607,5717:458,-178,-75,0,0,0.0750273 -1608,5717:457,-177,-75,0,0,0.0750345 -1609,5717:456,-176,-75,0,0,0.0750488 -1610,5717:455,-175,-75,0,0,0.0750488 -1611,5717:354,-174,-75,0,0,0.075063 -1612,5717:353,-173,-75,0,0,0.075063 -1613,5717:352,-172,-75,0,0,0.0750558 -1614,5717:351,-171,-75,0,0,0.0750558 -1615,5717:350,-170,-75,0,0,0.075063 -1616,5716:459,-169,-75,0,0,0.075063 -1617,5716:458,-168,-75,0,0,0.075063 -1618,5716:457,-167,-75,0,0,0.0750702 -1619,5716:456,-166,-75,0,0,0.0750702 -1620,5716:455,-165,-75,0,0,0.0750773 -1621,5716:354,-164,-75,0,0,0.0750843 -1622,5716:353,-163,-75,0,0,0.0750843 -1623,5716:352,-162,-75,0,0,0.0750843 -1624,5716:351,-161,-75,0,0,0.0750843 -1625,5716:350,-160,-75,0,0,0.0750843 -1626,5715:459,-159,-75,0,0,0.0750843 -1627,5715:458,-158,-75,0,0,0.0750915 -1628,5715:457,-157,-75,0,0,0.0751059 -1629,5715:456,-156,-75,0,0,0.0751128 -1630,5715:455,-155,-75,0,0,0.0751272 -1631,5715:354,-154,-75,0,0,0.0751272 -1632,5715:353,-153,-75,0,0,0.0751272 -1633,5715:352,-152,-75,0,0,0.0751486 -1634,5715:351,-151,-75,0,0,0.0751558 -1635,5715:350,-150,-75,0,0,0.0751486 -1636,5714:459,-149,-75,0,0,0.0751558 -1637,5714:458,-148,-75,0,0,0.075163 -1638,5714:457,-147,-75,0,0,0.0751701 -1639,5714:456,-146,-75,0,0,0.0751843 -1640,5714:455,-145,-75,0,0,0.0751843 -1641,5714:354,-144,-75,0,0,0.0751843 -1642,5714:353,-143,-75,0,0,0.0751843 -1643,5714:352,-142,-75,0,0,0.0751771 -1644,5714:351,-141,-75,0,0,0.0751771 -1645,5714:350,-140,-75,0,0,0.0751771 -1646,5713:459,-139,-75,0,0,0.0751558 -1647,5713:458,-138,-75,0,0,0.0751272 -1648,5713:457,-137,-75,0,0,0.0750987 -1649,5713:456,-136,-75,0,0,0.0750843 -1650,5713:455,-135,-75,0,0,0.0750345 -1651,5713:354,-134,-75,0,0,0.0750416 -1652,5713:353,-133,-75,0,0,0.075063 -1653,5713:352,-132,-75,0,0,0.0750915 -1654,5713:351,-131,-75,0,0,0.075163 -1655,5713:350,-130,-75,0,0,0.0754779 -1656,5712:459,-129,-75,0,0,0.0775539 -1657,5712:458,-128,-75,0,0,0.0755207 -1658,5712:354,-124,-75,0,0,0.0766328 -1659,5712:353,-123,-75,0,0,0.0758515 -1660,5712:352,-122,-75,0,0,0.0753203 -1661,5712:351,-121,-75,0,0,0.0753989 -1662,5712:350,-120,-75,0,0,0.0753203 -1663,5711:459,-119,-75,0,0,0.0753703 -1664,5711:458,-118,-75,0,0,0.0753203 -1665,5711:457,-117,-75,0,0,0.0751987 -1666,5711:456,-116,-75,0,0,0.0752559 -1667,5711:455,-115,-75,0,0,0.0763643 -1668,5711:354,-114,-75,0,0,0.077635 -1669,5711:353,-113,-75,0,0,0.0795545 -1670,5711:352,-112,-75,0,0,0.0751771 -1671,5711:351,-111,-75,0,0,0.0754061 -1672,5710:458,-108,-75,0,0,0.0756787 -1673,5710:457,-107,-75,0,0,0.0753489 -1674,5710:456,-106,-75,0,0,0.0752559 -1675,5710:455,-105,-75,0,0,0.0753703 -1676,5710:354,-104,-75,0,0,0.0787234 -1677,5710:353,-103,-75,0,0,0.0813097 -1678,5708:353,-83,-75,0,0,0.0902963 -1679,5708:352,-82,-75,0,0,0.0903556 -1680,5706:350,-60,-75,0,0,0.0752844 -1681,5705:459,-59,-75,0,0,0.0750131 -1682,5705:458,-58,-75,0,0,0.0749703 -1683,5705:457,-57,-75,0,0,0.074949 -1684,5705:456,-56,-75,0,0,0.074949 -1685,5705:455,-55,-75,0,0,0.0749346 -1686,5705:354,-54,-75,0,0,0.0749418 -1687,5705:353,-53,-75,0,0,0.0749631 -1688,5705:352,-52,-75,0,0,0.0749703 -1689,5705:351,-51,-75,0,0,0.0749916 -1690,5705:350,-50,-75,0,0,0.0749988 -1691,5704:459,-49,-75,0,0,0.0749988 -1692,5704:458,-48,-75,0,0,0.0749988 -1693,5704:457,-47,-75,0,0,0.075006 -1694,5704:456,-46,-75,0,0,0.0750131 -1695,5704:455,-45,-75,0,0,0.0750273 -1696,5704:354,-44,-75,0,0,0.0750416 -1697,5704:353,-43,-75,0,0,0.0750488 -1698,5704:352,-42,-75,0,0,0.0750558 -1699,5704:351,-41,-75,0,0,0.0750558 -1700,5704:350,-40,-75,0,0,0.0750558 -1701,5703:459,-39,-75,0,0,0.0750558 -1702,5703:458,-38,-75,0,0,0.0750488 -1703,5703:457,-37,-75,0,0,0.0750416 -1704,5703:456,-36,-75,0,0,0.0750416 -1705,5703:455,-35,-75,0,0,0.0750416 -1706,5703:354,-34,-75,0,0,0.0750416 -1707,5703:353,-33,-75,0,0,0.0750416 -1708,5703:352,-32,-75,0,0,0.0750416 -1709,5703:351,-31,-75,0,0,0.0750416 -1710,5703:350,-30,-75,0,0,0.0750345 -1711,5702:459,-29,-75,0,0,0.0750273 -1712,5702:458,-28,-75,0,0,0.0750273 -1713,5702:457,-27,-75,0,0,0.0750201 -1714,5702:456,-26,-75,0,0,0.0750131 -1715,5702:455,-25,-75,0,0,0.0749988 -1716,5702:354,-24,-75,0,0,0.0749846 -1717,5702:353,-23,-75,0,0,0.0754706 -1718,5702:352,-22,-75,0,0,0.077937 -1719,5702:351,-21,-75,0,0,0.0846637 -1720,5702:350,-20,-75,0,0,0.0867568 -1721,3716:458,168,-75,0,0,0.0754779 -1722,3716:459,169,-75,0,0,0.0753775 -1723,3717:350,170,-75,0,0,0.0751128 -1724,3717:351,171,-75,0,0,0.074949 -1725,3717:352,172,-75,0,0,0.0749133 -1726,3717:353,173,-75,0,0,0.0766839 -1727,3717:354,174,-75,0,0,0.0805836 -1728,3717:455,175,-75,0,0,0.0810721 -1729,3717:456,176,-75,0,0,0.0829675 -1730,3717:457,177,-75,0,0,0.0764223 -1731,3717:458,178,-75,0,0,0.074892 -1732,3717:459,179,-75,0,0,0.0749346 -1733,3718:350,180,-75,0,0,0.0749775 -1734,5718:140,-180,-74,0,0,0.0749703 -1735,5717:249,-179,-74,0,0,0.075006 -1736,5717:248,-178,-74,0,0,0.0750201 -1737,5717:247,-177,-74,0,0,0.0750416 -1738,5717:246,-176,-74,0,0,0.0750416 -1739,5717:245,-175,-74,0,0,0.0750416 -1740,5717:144,-174,-74,0,0,0.0750558 -1741,5717:143,-173,-74,0,0,0.0750558 -1742,5717:142,-172,-74,0,0,0.0750488 -1743,5717:141,-171,-74,0,0,0.0750488 -1744,5717:140,-170,-74,0,0,0.0750416 -1745,5716:249,-169,-74,0,0,0.0750488 -1746,5716:248,-168,-74,0,0,0.0750558 -1747,5716:247,-167,-74,0,0,0.0750558 -1748,5716:246,-166,-74,0,0,0.075063 -1749,5716:245,-165,-74,0,0,0.0750702 -1750,5716:144,-164,-74,0,0,0.0750843 -1751,5716:143,-163,-74,0,0,0.0750843 -1752,5716:142,-162,-74,0,0,0.0750987 -1753,5716:141,-161,-74,0,0,0.0750987 -1754,5716:140,-160,-74,0,0,0.0751128 -1755,5715:249,-159,-74,0,0,0.07512 -1756,5715:248,-158,-74,0,0,0.07512 -1757,5715:247,-157,-74,0,0,0.0751272 -1758,5715:246,-156,-74,0,0,0.0751344 -1759,5715:245,-155,-74,0,0,0.0751272 -1760,5715:144,-154,-74,0,0,0.07512 -1761,5715:143,-153,-74,0,0,0.07512 -1762,5715:142,-152,-74,0,0,0.0751416 -1763,5715:141,-151,-74,0,0,0.0751486 -1764,5715:140,-150,-74,0,0,0.0751558 -1765,5714:249,-149,-74,0,0,0.0751558 -1766,5714:248,-148,-74,0,0,0.075163 -1767,5714:247,-147,-74,0,0,0.075163 -1768,5714:246,-146,-74,0,0,0.0751701 -1769,5714:245,-145,-74,0,0,0.0751701 -1770,5714:144,-144,-74,0,0,0.0751701 -1771,5714:143,-143,-74,0,0,0.0751843 -1772,5714:142,-142,-74,0,0,0.0751843 -1773,5714:141,-141,-74,0,0,0.0751771 -1774,5714:140,-140,-74,0,0,0.0751987 -1775,5713:249,-139,-74,0,0,0.0752057 -1776,5713:248,-138,-74,0,0,0.0751701 -1777,5713:247,-137,-74,0,0,0.0751416 -1778,5713:246,-136,-74,0,0,0.07512 -1779,5713:245,-135,-74,0,0,0.0750987 -1780,5713:144,-134,-74,0,0,0.075063 -1781,5713:143,-133,-74,0,0,0.0750702 -1782,5713:142,-132,-74,0,0,0.0750915 -1783,5713:141,-131,-74,0,0,0.0750915 -1784,5713:140,-130,-74,0,0,0.0751128 -1785,5712:249,-129,-74,0,0,0.0751416 -1786,5712:248,-128,-74,0,0,0.0751701 -1787,5712:247,-127,-74,0,0,0.0752057 -1788,5712:246,-126,-74,0,0,0.0752772 -1789,5712:245,-125,-74,0,0,0.0753631 -1790,5712:144,-124,-74,0,0,0.0753417 -1791,5712:143,-123,-74,0,0,0.0752772 -1792,5712:142,-122,-74,0,0,0.0752559 -1793,5712:141,-121,-74,0,0,0.0751987 -1794,5712:140,-120,-74,0,0,0.075163 -1795,5711:249,-119,-74,0,0,0.0751771 -1796,5711:248,-118,-74,0,0,0.0751701 -1797,5711:247,-117,-74,0,0,0.0751272 -1798,5711:246,-116,-74,0,0,0.0751272 -1799,5711:245,-115,-74,0,0,0.0751272 -1800,5711:144,-114,-74,0,0,0.0750843 -1801,5711:143,-113,-74,0,0,0.0750488 -1802,5711:142,-112,-74,0,0,0.0750201 -1803,5711:141,-111,-74,0,0,0.075063 -1804,5711:140,-110,-74,0,0,0.0751059 -1805,5710:249,-109,-74,0,0,0.0753058 -1806,5710:248,-108,-74,0,0,0.0752273 -1807,5710:247,-107,-74,0,0,0.0752129 -1808,5710:246,-106,-74,0,0,0.0752559 -1809,5710:245,-105,-74,0,0,0.0756932 -1810,5710:144,-104,-74,0,0,0.0807207 -1811,5708:245,-85,-74,0,0,0.0878867 -1812,5708:144,-84,-74,0,0,0.0860028 -1813,5708:143,-83,-74,0,0,0.083524 -1814,5708:142,-82,-74,0,0,0.0852306 -1815,5708:141,-81,-74,0,0,0.0884319 -1816,5705:249,-59,-74,0,0,0.0751843 -1817,5705:248,-58,-74,0,0,0.0749775 -1818,5705:247,-57,-74,0,0,0.0749631 -1819,5705:246,-56,-74,0,0,0.074949 -1820,5705:245,-55,-74,0,0,0.074949 -1821,5705:144,-54,-74,0,0,0.074949 -1822,5705:143,-53,-74,0,0,0.0749631 -1823,5705:142,-52,-74,0,0,0.0749631 -1824,5705:141,-51,-74,0,0,0.0749775 -1825,5705:140,-50,-74,0,0,0.075006 -1826,5704:249,-49,-74,0,0,0.0750201 -1827,5704:248,-48,-74,0,0,0.0750131 -1828,5704:247,-47,-74,0,0,0.075006 -1829,5704:246,-46,-74,0,0,0.0750273 -1830,5704:245,-45,-74,0,0,0.0750416 -1831,5704:144,-44,-74,0,0,0.0750488 -1832,5704:143,-43,-74,0,0,0.0750558 -1833,5704:142,-42,-74,0,0,0.0750558 -1834,5704:141,-41,-74,0,0,0.0750558 -1835,5704:140,-40,-74,0,0,0.0750558 -1836,5703:249,-39,-74,0,0,0.0750488 -1837,5703:248,-38,-74,0,0,0.0750416 -1838,5703:247,-37,-74,0,0,0.0750345 -1839,5703:246,-36,-74,0,0,0.0750273 -1840,5703:245,-35,-74,0,0,0.0750273 -1841,5703:144,-34,-74,0,0,0.0750201 -1842,5703:143,-33,-74,0,0,0.0750201 -1843,5703:142,-32,-74,0,0,0.0750273 -1844,5703:141,-31,-74,0,0,0.0750273 -1845,5703:140,-30,-74,0,0,0.0750201 -1846,5702:249,-29,-74,0,0,0.0750131 -1847,5702:248,-28,-74,0,0,0.0750131 -1848,5702:247,-27,-74,0,0,0.0750131 -1849,5702:246,-26,-74,0,0,0.0750131 -1850,5702:245,-25,-74,0,0,0.0750131 -1851,5702:144,-24,-74,0,0,0.0749988 -1852,5702:143,-23,-74,0,0,0.0749775 -1853,5702:142,-22,-74,0,0,0.0749846 -1854,5702:141,-21,-74,0,0,0.0749775 -1855,5702:140,-20,-74,0,0,0.0758082 -1856,3717:140,170,-74,0,0,0.0749988 -1857,3717:141,171,-74,0,0,0.0749562 -1858,3717:142,172,-74,0,0,0.0749562 -1859,3717:143,173,-74,0,0,0.0763716 -1860,3717:144,174,-74,0,0,0.0784555 -1861,3717:245,175,-74,0,0,0.0797202 -1862,3717:246,176,-74,0,0,0.0760172 -1863,3717:247,177,-74,0,0,0.0748777 -1864,3717:248,178,-74,0,0,0.0748849 -1865,3717:249,179,-74,0,0,0.0749346 -1866,3718:140,180,-74,0,0,0.0749703 -1867,5718:130,-180,-73,0,0,0.0749703 -1868,5717:239,-179,-73,0,0,0.0749988 -1869,5717:238,-178,-73,0,0,0.0750131 -1870,5717:237,-177,-73,0,0,0.0750201 -1871,5717:236,-176,-73,0,0,0.0750345 -1872,5717:235,-175,-73,0,0,0.0750345 -1873,5717:134,-174,-73,0,0,0.0750416 -1874,5717:133,-173,-73,0,0,0.075063 -1875,5717:132,-172,-73,0,0,0.0750558 -1876,5717:131,-171,-73,0,0,0.0750416 -1877,5717:130,-170,-73,0,0,0.0750345 -1878,5716:239,-169,-73,0,0,0.0750416 -1879,5716:238,-168,-73,0,0,0.0750416 -1880,5716:237,-167,-73,0,0,0.0750416 -1881,5716:236,-166,-73,0,0,0.0750488 -1882,5716:235,-165,-73,0,0,0.075063 -1883,5716:134,-164,-73,0,0,0.0750773 -1884,5716:133,-163,-73,0,0,0.0750843 -1885,5716:132,-162,-73,0,0,0.0750915 -1886,5716:131,-161,-73,0,0,0.0750987 -1887,5716:130,-160,-73,0,0,0.0751059 -1888,5715:239,-159,-73,0,0,0.0751128 -1889,5715:238,-158,-73,0,0,0.0751272 -1890,5715:237,-157,-73,0,0,0.0751272 -1891,5715:236,-156,-73,0,0,0.0751272 -1892,5715:235,-155,-73,0,0,0.0751272 -1893,5715:134,-154,-73,0,0,0.07512 -1894,5715:133,-153,-73,0,0,0.07512 -1895,5715:132,-152,-73,0,0,0.0751272 -1896,5715:131,-151,-73,0,0,0.0751416 -1897,5715:130,-150,-73,0,0,0.075163 -1898,5714:239,-149,-73,0,0,0.0751771 -1899,5714:238,-148,-73,0,0,0.0751843 -1900,5714:237,-147,-73,0,0,0.0751915 -1901,5714:236,-146,-73,0,0,0.0752057 -1902,5714:235,-145,-73,0,0,0.0752057 -1903,5714:134,-144,-73,0,0,0.0751987 -1904,5714:133,-143,-73,0,0,0.0751915 -1905,5714:132,-142,-73,0,0,0.0751915 -1906,5714:131,-141,-73,0,0,0.0751701 -1907,5714:130,-140,-73,0,0,0.0751558 -1908,5713:239,-139,-73,0,0,0.0751987 -1909,5713:238,-138,-73,0,0,0.0752844 -1910,5713:237,-137,-73,0,0,0.07527 -1911,5713:236,-136,-73,0,0,0.0752273 -1912,5713:235,-135,-73,0,0,0.0751558 -1913,5713:134,-134,-73,0,0,0.075063 -1914,5713:133,-133,-73,0,0,0.0750416 -1915,5713:132,-132,-73,0,0,0.0750773 -1916,5713:131,-131,-73,0,0,0.07512 -1917,5713:130,-130,-73,0,0,0.0751344 -1918,5712:239,-129,-73,0,0,0.0751416 -1919,5712:238,-128,-73,0,0,0.0751486 -1920,5712:237,-127,-73,0,0,0.0751701 -1921,5712:236,-126,-73,0,0,0.0752273 -1922,5712:235,-125,-73,0,0,0.0752343 -1923,5712:134,-124,-73,0,0,0.0751771 -1924,5712:133,-123,-73,0,0,0.0751701 -1925,5712:132,-122,-73,0,0,0.0751558 -1926,5712:131,-121,-73,0,0,0.0751486 -1927,5712:130,-120,-73,0,0,0.0751416 -1928,5711:239,-119,-73,0,0,0.0751344 -1929,5711:238,-118,-73,0,0,0.0751272 -1930,5711:237,-117,-73,0,0,0.0751128 -1931,5711:236,-116,-73,0,0,0.0750987 -1932,5711:235,-115,-73,0,0,0.0750915 -1933,5711:134,-114,-73,0,0,0.0750773 -1934,5711:133,-113,-73,0,0,0.0750702 -1935,5711:132,-112,-73,0,0,0.0750558 -1936,5711:131,-111,-73,0,0,0.075063 -1937,5711:130,-110,-73,0,0,0.0751059 -1938,5710:239,-109,-73,0,0,0.0751416 -1939,5710:238,-108,-73,0,0,0.0751701 -1940,5710:237,-107,-73,0,0,0.0752201 -1941,5710:236,-106,-73,0,0,0.0755207 -4084,5615:124,-154,-62,0,0,0.07512 -1942,5710:235,-105,-73,0,0,0.0795244 -1943,5710:134,-104,-73,0,0,0.0808353 -1944,5708:238,-88,-73,0,0,0.0757435 -1945,5708:237,-87,-73,0,0,0.0761689 -1946,5708:236,-86,-73,0,0,0.0804088 -1947,5708:235,-85,-73,0,0,0.0771507 -1948,5708:134,-84,-73,0,0,0.0756645 -1949,5708:133,-83,-73,0,0,0.0751344 -1950,5708:132,-82,-73,0,0,0.077224 -1951,5708:131,-81,-73,0,0,0.0777012 -1952,5708:130,-80,-73,0,0,0.0796298 -1953,5707:239,-79,-73,0,0,0.0822742 -1954,5707:235,-75,-73,0,0,0.0795393 -1955,5707:134,-74,-73,0,0,0.0829675 -1956,5707:133,-73,-73,0,0,0.0876811 -1957,5706:130,-60,-73,0,0,0.075313 -1958,5705:239,-59,-73,0,0,0.07512 -1959,5705:238,-58,-73,0,0,0.075006 -1960,5705:237,-57,-73,0,0,0.0749703 -1961,5705:236,-56,-73,0,0,0.0749631 -1962,5705:235,-55,-73,0,0,0.0749562 -1963,5705:134,-54,-73,0,0,0.0749562 -1964,5705:133,-53,-73,0,0,0.0749916 -1965,5705:132,-52,-73,0,0,0.0749988 -1966,5705:131,-51,-73,0,0,0.075006 -1967,5705:130,-50,-73,0,0,0.0750345 -1968,5704:239,-49,-73,0,0,0.0750201 -1969,5704:238,-48,-73,0,0,0.0750131 -1970,5704:237,-47,-73,0,0,0.0750345 -1971,5704:236,-46,-73,0,0,0.0750488 -1972,5704:235,-45,-73,0,0,0.0750488 -1973,5704:134,-44,-73,0,0,0.0750558 -1974,5704:133,-43,-73,0,0,0.0750558 -1975,5704:132,-42,-73,0,0,0.0750558 -1976,5704:131,-41,-73,0,0,0.0750488 -1977,5704:130,-40,-73,0,0,0.0750416 -1978,5703:239,-39,-73,0,0,0.0750345 -1979,5703:238,-38,-73,0,0,0.0750273 -1980,5703:237,-37,-73,0,0,0.0750201 -1981,5703:236,-36,-73,0,0,0.0750131 -1982,5703:235,-35,-73,0,0,0.0750131 -1983,5703:134,-34,-73,0,0,0.0750131 -1984,5703:133,-33,-73,0,0,0.075006 -1985,5703:132,-32,-73,0,0,0.0750131 -1986,5703:131,-31,-73,0,0,0.0750131 -1987,5703:130,-30,-73,0,0,0.075006 -1988,5702:239,-29,-73,0,0,0.075006 -1989,5702:238,-28,-73,0,0,0.0749988 -1990,5702:237,-27,-73,0,0,0.0749916 -1991,5702:236,-26,-73,0,0,0.0749988 -1992,5702:235,-25,-73,0,0,0.075006 -1993,5702:134,-24,-73,0,0,0.075006 -1994,5702:133,-23,-73,0,0,0.0750131 -1995,5702:132,-22,-73,0,0,0.0750131 -1996,5702:131,-21,-73,0,0,0.0750131 -1997,5702:130,-20,-73,0,0,0.0750131 -1998,5701:239,-19,-73,0,0,0.0750843 -1999,5701:238,-18,-73,0,0,0.0751344 -2000,5701:237,-17,-73,0,0,0.0752057 -2001,3717:131,171,-73,0,0,0.0751558 -2002,3717:132,172,-73,0,0,0.0750416 -2003,3717:133,173,-73,0,0,0.0750843 -2004,3717:134,174,-73,0,0,0.0775172 -2005,3717:235,175,-73,0,0,0.0752916 -2006,3717:236,176,-73,0,0,0.0747284 -2007,3717:237,177,-73,0,0,0.0748208 -2008,3717:238,178,-73,0,0,0.0748849 -2009,3717:239,179,-73,0,0,0.0749346 -2010,3718:130,180,-73,0,0,0.0749703 -2011,5718:120,-180,-72,0,0,0.0749631 -2012,5717:229,-179,-72,0,0,0.0749916 -2013,5717:228,-178,-72,0,0,0.075006 -2014,5717:227,-177,-72,0,0,0.0750201 -2015,5717:226,-176,-72,0,0,0.0750345 -2016,5717:225,-175,-72,0,0,0.075063 -2017,5717:124,-174,-72,0,0,0.0750702 -2018,5717:123,-173,-72,0,0,0.0750773 -2019,5717:122,-172,-72,0,0,0.075063 -2020,5717:121,-171,-72,0,0,0.0750416 -2021,5717:120,-170,-72,0,0,0.0750416 -2022,5716:229,-169,-72,0,0,0.0750416 -2023,5716:228,-168,-72,0,0,0.0750345 -2024,5716:227,-167,-72,0,0,0.0750345 -2025,5716:226,-166,-72,0,0,0.0750416 -2026,5716:225,-165,-72,0,0,0.0750488 -2027,5716:124,-164,-72,0,0,0.075063 -2028,5716:123,-163,-72,0,0,0.0750702 -2029,5716:122,-162,-72,0,0,0.0750773 -2030,5716:121,-161,-72,0,0,0.0750773 -2031,5716:120,-160,-72,0,0,0.0750843 -2032,5715:229,-159,-72,0,0,0.0750915 -2033,5715:228,-158,-72,0,0,0.0750987 -2034,5715:227,-157,-72,0,0,0.0751128 -2035,5715:226,-156,-72,0,0,0.0751272 -2036,5715:225,-155,-72,0,0,0.07512 -2037,5715:124,-154,-72,0,0,0.0751272 -2038,5715:123,-153,-72,0,0,0.07512 -2039,5715:122,-152,-72,0,0,0.0751272 -2040,5715:121,-151,-72,0,0,0.0751416 -2041,5715:120,-150,-72,0,0,0.0751558 -2042,5714:229,-149,-72,0,0,0.0751701 -2043,5714:228,-148,-72,0,0,0.0751771 -2044,5714:227,-147,-72,0,0,0.0751843 -2045,5714:226,-146,-72,0,0,0.0751987 -2046,5714:225,-145,-72,0,0,0.0751987 -2047,5714:124,-144,-72,0,0,0.0752129 -2048,5714:123,-143,-72,0,0,0.0752201 -2049,5714:122,-142,-72,0,0,0.0752057 -2050,5714:121,-141,-72,0,0,0.0751771 -2051,5714:120,-140,-72,0,0,0.0751344 -2052,5713:229,-139,-72,0,0,0.07512 -2053,5713:228,-138,-72,0,0,0.0751128 -2054,5713:227,-137,-72,0,0,0.0751344 -2055,5713:226,-136,-72,0,0,0.0752772 -2056,5713:225,-135,-72,0,0,0.0755135 -2057,5713:124,-134,-72,0,0,0.0751558 -2058,5713:123,-133,-72,0,0,0.0750416 -2059,5713:122,-132,-72,0,0,0.0750702 -2060,5713:121,-131,-72,0,0,0.0751059 -2061,5713:120,-130,-72,0,0,0.0751344 -2062,5712:229,-129,-72,0,0,0.0751558 -2063,5712:228,-128,-72,0,0,0.0751558 -2064,5712:227,-127,-72,0,0,0.0751558 -2065,5712:226,-126,-72,0,0,0.0751558 -2066,5712:225,-125,-72,0,0,0.0751558 -2067,5712:124,-124,-72,0,0,0.075163 -2068,5712:123,-123,-72,0,0,0.075163 -2069,5712:122,-122,-72,0,0,0.0751558 -2070,5712:121,-121,-72,0,0,0.0751486 -2071,5712:120,-120,-72,0,0,0.0751344 -2072,5711:229,-119,-72,0,0,0.07512 -2073,5711:228,-118,-72,0,0,0.0751128 -2074,5711:227,-117,-72,0,0,0.0751059 -2075,5711:226,-116,-72,0,0,0.0750987 -2076,5711:225,-115,-72,0,0,0.0750915 -2077,5711:124,-114,-72,0,0,0.0750843 -2078,5711:123,-113,-72,0,0,0.0750773 -2079,5711:122,-112,-72,0,0,0.0750773 -2080,5711:121,-111,-72,0,0,0.0750843 -2081,5711:120,-110,-72,0,0,0.0750987 -2082,5710:229,-109,-72,0,0,0.0751128 -2083,5710:228,-108,-72,0,0,0.0751272 -2084,5710:227,-107,-72,0,0,0.0751344 -2085,5710:226,-106,-72,0,0,0.0752343 -2086,5710:225,-105,-72,0,0,0.0770849 -2087,5710:124,-104,-72,0,0,0.0783218 -2088,5710:123,-103,-72,0,0,0.0787159 -2089,5709:225,-95,-72,0,0,0.0756428 -2090,5709:124,-94,-72,0,0,0.0752487 -2091,5709:123,-93,-72,0,0,0.0752201 -2092,5709:122,-92,-72,0,0,0.0752343 -2093,5709:121,-91,-72,0,0,0.0752631 -2094,5709:120,-90,-72,0,0,0.07527 -2095,5708:229,-89,-72,0,0,0.0752559 -2096,5708:228,-88,-72,0,0,0.0752559 -2097,5708:227,-87,-72,0,0,0.0752631 -2098,5708:226,-86,-72,0,0,0.0751771 -2099,5708:225,-85,-72,0,0,0.0750345 -2100,5708:124,-84,-72,0,0,0.0760822 -2101,5708:123,-83,-72,0,0,0.0769681 -2102,5708:122,-82,-72,0,0,0.0764732 -2103,5708:121,-81,-72,0,0,0.0775613 -2104,5708:120,-80,-72,0,0,0.0770775 -2105,5707:229,-79,-72,0,0,0.0770775 -2106,5707:228,-78,-72,0,0,0.0770117 -2107,5707:227,-77,-72,0,0,0.0805912 -2108,5707:226,-76,-72,0,0,0.0820961 -2109,5707:225,-75,-72,0,0,0.0824297 -2110,5707:124,-74,-72,0,0,0.0878126 -2111,5706:120,-60,-72,0,0,0.0753489 -2112,5705:229,-59,-72,0,0,0.0751059 -2113,5705:228,-58,-72,0,0,0.0749916 -2114,5705:227,-57,-72,0,0,0.0749775 -2115,5705:226,-56,-72,0,0,0.0749703 -2116,5705:225,-55,-72,0,0,0.0749775 -2117,5705:124,-54,-72,0,0,0.075006 -2118,5705:123,-53,-72,0,0,0.0750345 -2119,5705:122,-52,-72,0,0,0.0750345 -2120,5705:121,-51,-72,0,0,0.0750345 -2121,5705:120,-50,-72,0,0,0.0750345 -2122,5704:229,-49,-72,0,0,0.0750416 -2123,5704:228,-48,-72,0,0,0.0750488 -2124,5704:227,-47,-72,0,0,0.0750488 -2125,5704:226,-46,-72,0,0,0.0750488 -2126,5704:225,-45,-72,0,0,0.0750558 -2127,5704:124,-44,-72,0,0,0.0750488 -2128,5704:123,-43,-72,0,0,0.0750488 -2129,5704:122,-42,-72,0,0,0.0750416 -2130,5704:121,-41,-72,0,0,0.0750345 -2131,5704:120,-40,-72,0,0,0.0750201 -2132,5703:229,-39,-72,0,0,0.0750131 -2133,5703:228,-38,-72,0,0,0.0750131 -2134,5703:227,-37,-72,0,0,0.0750131 -2135,5703:226,-36,-72,0,0,0.0750131 -2136,5703:225,-35,-72,0,0,0.0750131 -2137,5703:124,-34,-72,0,0,0.0750131 -2138,5703:123,-33,-72,0,0,0.075006 -2139,5703:122,-32,-72,0,0,0.075006 -2140,5703:121,-31,-72,0,0,0.075006 -2141,5703:120,-30,-72,0,0,0.0750131 -2142,5702:229,-29,-72,0,0,0.0750131 -2143,5702:228,-28,-72,0,0,0.075006 -2144,5702:227,-27,-72,0,0,0.0749988 -2145,5702:226,-26,-72,0,0,0.0749916 -2146,5702:225,-25,-72,0,0,0.0749846 -2147,5702:124,-24,-72,0,0,0.0749846 -2148,5702:123,-23,-72,0,0,0.0749916 -2149,5702:122,-22,-72,0,0,0.0749988 -2150,5702:121,-21,-72,0,0,0.075006 -2151,5702:120,-20,-72,0,0,0.075006 -2152,5701:229,-19,-72,0,0,0.075006 -2153,5701:228,-18,-72,0,0,0.075006 -2154,5701:227,-17,-72,0,0,0.0750131 -2155,5701:226,-16,-72,0,0,0.0750987 -2156,5701:225,-15,-72,0,0,0.0749133 -2157,3717:121,171,-72,0,0,0.075163 -2158,3717:122,172,-72,0,0,0.075006 -2159,3717:123,173,-72,0,0,0.0753344 -2160,3717:124,174,-72,0,0,0.0755567 -2161,3717:225,175,-72,0,0,0.0748636 -2162,3717:226,176,-72,0,0,0.0748705 -2163,3717:227,177,-72,0,0,0.0748849 -2164,3717:228,178,-72,0,0,0.0749062 -2165,3717:229,179,-72,0,0,0.0749275 -2166,3718:120,180,-72,0,0,0.0749631 -2167,5718:110,-180,-71,0,0,0.0749703 -2168,5717:219,-179,-71,0,0,0.0749916 -2169,5717:218,-178,-71,0,0,0.0750131 -2170,5717:217,-177,-71,0,0,0.0750273 -2171,5717:216,-176,-71,0,0,0.0750558 -2172,5717:215,-175,-71,0,0,0.0750843 -2173,5717:114,-174,-71,0,0,0.0750915 -2174,5717:113,-173,-71,0,0,0.0750843 -2175,5717:112,-172,-71,0,0,0.075063 -2176,5717:111,-171,-71,0,0,0.0750558 -2177,5717:110,-170,-71,0,0,0.0750345 -2178,5716:219,-169,-71,0,0,0.0750273 -2179,5716:218,-168,-71,0,0,0.0750201 -2180,5716:217,-167,-71,0,0,0.0750201 -2181,5716:216,-166,-71,0,0,0.0750201 -2182,5716:215,-165,-71,0,0,0.0750273 -2183,5716:114,-164,-71,0,0,0.0750345 -2184,5716:113,-163,-71,0,0,0.0750416 -2185,5716:112,-162,-71,0,0,0.0750488 -2186,5716:111,-161,-71,0,0,0.0750558 -2187,5716:110,-160,-71,0,0,0.075063 -2188,5715:219,-159,-71,0,0,0.075063 -2189,5715:218,-158,-71,0,0,0.075063 -2190,5715:217,-157,-71,0,0,0.0750773 -2191,5715:216,-156,-71,0,0,0.0750915 -2192,5715:215,-155,-71,0,0,0.0751128 -2193,5715:114,-154,-71,0,0,0.0751344 -2194,5715:113,-153,-71,0,0,0.0751344 -2195,5715:112,-152,-71,0,0,0.0751416 -2196,5715:111,-151,-71,0,0,0.0751558 -2197,5715:110,-150,-71,0,0,0.075163 -2198,5714:219,-149,-71,0,0,0.0751701 -2199,5714:218,-148,-71,0,0,0.0751915 -2200,5714:217,-147,-71,0,0,0.0751987 -2201,5714:216,-146,-71,0,0,0.0751843 -2202,5714:215,-145,-71,0,0,0.0751915 -2203,5714:114,-144,-71,0,0,0.0752129 -2204,5714:113,-143,-71,0,0,0.0752129 -2205,5714:112,-142,-71,0,0,0.0752129 -2206,5714:111,-141,-71,0,0,0.0751843 -2207,5714:110,-140,-71,0,0,0.0751344 -2208,5713:219,-139,-71,0,0,0.07512 -2209,5713:218,-138,-71,0,0,0.07512 -2210,5713:217,-137,-71,0,0,0.0753058 -2211,5713:216,-136,-71,0,0,0.0759379 -2212,5713:215,-135,-71,0,0,0.076234 -2213,5713:114,-134,-71,0,0,0.0762848 -2214,5713:113,-133,-71,0,0,0.0759956 -2215,5713:112,-132,-71,0,0,0.075722 -2216,5713:111,-131,-71,0,0,0.0753417 -2217,5713:110,-130,-71,0,0,0.07512 -2218,5712:219,-129,-71,0,0,0.0751486 -2219,5712:218,-128,-71,0,0,0.075163 -2220,5712:217,-127,-71,0,0,0.0751701 -2221,5712:216,-126,-71,0,0,0.0751701 -2222,5712:215,-125,-71,0,0,0.0751771 -2223,5712:114,-124,-71,0,0,0.0751701 -2224,5712:113,-123,-71,0,0,0.0751701 -2225,5712:112,-122,-71,0,0,0.0751701 -2226,5712:111,-121,-71,0,0,0.075163 -2227,5712:110,-120,-71,0,0,0.0751416 -2228,5711:219,-119,-71,0,0,0.0751272 -2229,5711:218,-118,-71,0,0,0.07512 -2230,5711:217,-117,-71,0,0,0.0751059 -2231,5711:216,-116,-71,0,0,0.0750987 -2232,5711:215,-115,-71,0,0,0.0750987 -2233,5711:114,-114,-71,0,0,0.0750987 -2234,5711:113,-113,-71,0,0,0.0750987 -2235,5711:112,-112,-71,0,0,0.0750987 -2236,5711:111,-111,-71,0,0,0.0751059 -2237,5711:110,-110,-71,0,0,0.0751059 -2238,5710:219,-109,-71,0,0,0.0751128 -2239,5710:218,-108,-71,0,0,0.0751059 -2240,5710:217,-107,-71,0,0,0.07512 -2241,5710:216,-106,-71,0,0,0.0751344 -2242,5710:215,-105,-71,0,0,0.0751771 -2243,5710:114,-104,-71,0,0,0.0751987 -2244,5710:113,-103,-71,0,0,0.0752631 -2245,5710:112,-102,-71,0,0,0.0754849 -2246,5710:111,-101,-71,0,0,0.0769462 -2247,5710:110,-100,-71,0,0,0.0763427 -2248,5709:218,-98,-71,0,0,0.0751987 -2249,5709:217,-97,-71,0,0,0.0753058 -2250,5709:216,-96,-71,0,0,0.0754634 -2251,5709:215,-95,-71,0,0,0.0752559 -2252,5709:114,-94,-71,0,0,0.0751486 -2253,5709:113,-93,-71,0,0,0.0751486 -2254,5709:112,-92,-71,0,0,0.0751701 -2255,5709:111,-91,-71,0,0,0.0751558 -2256,5709:110,-90,-71,0,0,0.0750773 -2257,5708:219,-89,-71,0,0,0.0750416 -2258,5708:218,-88,-71,0,0,0.0750345 -2259,5708:217,-87,-71,0,0,0.0749988 -2260,5708:216,-86,-71,0,0,0.074949 -2261,5708:215,-85,-71,0,0,0.0749205 -2262,5708:114,-84,-71,0,0,0.0749275 -2263,5708:113,-83,-71,0,0,0.0754133 -2264,5708:112,-82,-71,0,0,0.0771215 -2265,5708:111,-81,-71,0,0,0.0774952 -2266,5708:110,-80,-71,0,0,0.0775981 -2267,5707:219,-79,-71,0,0,0.0783886 -2268,5707:218,-78,-71,0,0,0.0788351 -2269,5707:217,-77,-71,0,0,0.079532 -2270,5707:216,-76,-71,0,0,0.0831709 -2271,5706:110,-60,-71,0,0,0.0753631 -2272,5705:219,-59,-71,0,0,0.0751059 -2273,5705:218,-58,-71,0,0,0.0750273 -2274,5705:217,-57,-71,0,0,0.0750201 -2275,5705:216,-56,-71,0,0,0.0749916 -2276,5705:215,-55,-71,0,0,0.0750131 -2277,5705:114,-54,-71,0,0,0.0750345 -2278,5705:113,-53,-71,0,0,0.0750345 -2279,5705:112,-52,-71,0,0,0.0750416 -2280,5705:111,-51,-71,0,0,0.0750416 -2281,5705:110,-50,-71,0,0,0.0750488 -2282,5704:219,-49,-71,0,0,0.0750488 -2283,5704:218,-48,-71,0,0,0.0750488 -2284,5704:217,-47,-71,0,0,0.0750558 -2285,5704:216,-46,-71,0,0,0.0750488 -2286,5704:215,-45,-71,0,0,0.0750416 -2287,5704:114,-44,-71,0,0,0.0750345 -2288,5704:113,-43,-71,0,0,0.0750273 -2289,5704:112,-42,-71,0,0,0.0750201 -2290,5704:111,-41,-71,0,0,0.0750131 -2291,5704:110,-40,-71,0,0,0.075006 -2292,5703:219,-39,-71,0,0,0.0749988 -2293,5703:218,-38,-71,0,0,0.0749916 -2294,5703:217,-37,-71,0,0,0.0749916 -2295,5703:216,-36,-71,0,0,0.0749916 -2296,5703:215,-35,-71,0,0,0.0749916 -2297,5703:114,-34,-71,0,0,0.0749916 -2298,5703:113,-33,-71,0,0,0.0749988 -2299,5703:112,-32,-71,0,0,0.0749988 -2300,5703:111,-31,-71,0,0,0.0749988 -2301,5703:110,-30,-71,0,0,0.0749988 -2302,5702:219,-29,-71,0,0,0.0750131 -2303,5702:218,-28,-71,0,0,0.0750201 -2304,5702:217,-27,-71,0,0,0.0750201 -2305,5702:216,-26,-71,0,0,0.075006 -2306,5702:215,-25,-71,0,0,0.0749846 -2307,5702:114,-24,-71,0,0,0.0749775 -2308,5702:113,-23,-71,0,0,0.0749775 -2309,5702:112,-22,-71,0,0,0.0749846 -2310,5702:111,-21,-71,0,0,0.0749916 -2311,5702:110,-20,-71,0,0,0.075006 -2312,5701:219,-19,-71,0,0,0.075006 -2313,5701:218,-18,-71,0,0,0.075006 -2314,5701:217,-17,-71,0,0,0.0750131 -2315,5701:216,-16,-71,0,0,0.0750131 -2316,5701:215,-15,-71,0,0,0.0750131 -2317,5701:114,-14,-71,0,0,0.0750558 -2318,5701:113,-13,-71,0,0,0.0786041 -2319,3717:112,172,-71,0,0,0.0750201 -2320,3717:113,173,-71,0,0,0.0750702 -2321,3717:114,174,-71,0,0,0.0749703 -2322,3717:215,175,-71,0,0,0.0749703 -2323,3717:216,176,-71,0,0,0.0749562 -2324,3717:217,177,-71,0,0,0.074949 -2325,3717:218,178,-71,0,0,0.074949 -2326,3717:219,179,-71,0,0,0.0749631 -2327,3718:110,180,-71,0,0,0.0749703 -2328,5718:100,-180,-70,0,0,0.075006 -2329,5717:209,-179,-70,0,0,0.0750273 -2330,5717:208,-178,-70,0,0,0.0750416 -2331,5717:207,-177,-70,0,0,0.075063 -2332,5717:206,-176,-70,0,0,0.0750987 -2333,5717:205,-175,-70,0,0,0.0751128 -2334,5717:104,-174,-70,0,0,0.0750915 -2335,5717:103,-173,-70,0,0,0.0750773 -2336,5717:102,-172,-70,0,0,0.0750702 -2337,5717:101,-171,-70,0,0,0.0750416 -2338,5717:100,-170,-70,0,0,0.0750273 -2339,5716:209,-169,-70,0,0,0.0750201 -2340,5716:208,-168,-70,0,0,0.0750131 -2341,5716:207,-167,-70,0,0,0.0750131 -2342,5716:206,-166,-70,0,0,0.0749988 -2343,5716:205,-165,-70,0,0,0.075006 -2344,5716:104,-164,-70,0,0,0.0750131 -2345,5716:103,-163,-70,0,0,0.0750131 -2346,5716:102,-162,-70,0,0,0.0750131 -2347,5716:101,-161,-70,0,0,0.0750201 -2348,5716:100,-160,-70,0,0,0.0750345 -2349,5715:209,-159,-70,0,0,0.0750488 -2350,5715:208,-158,-70,0,0,0.0750558 -2351,5715:207,-157,-70,0,0,0.0750702 -2352,5715:206,-156,-70,0,0,0.0750843 -2353,5715:205,-155,-70,0,0,0.0751059 -2354,5715:104,-154,-70,0,0,0.07512 -2355,5715:103,-153,-70,0,0,0.07512 -2356,5715:102,-152,-70,0,0,0.0751416 -2357,5715:101,-151,-70,0,0,0.075163 -2358,5715:100,-150,-70,0,0,0.0751701 -2359,5714:209,-149,-70,0,0,0.0751771 -2360,5714:208,-148,-70,0,0,0.0751843 -2361,5714:207,-147,-70,0,0,0.0751843 -2362,5714:206,-146,-70,0,0,0.0751843 -2363,5714:205,-145,-70,0,0,0.0751843 -2364,5714:104,-144,-70,0,0,0.0751915 -2365,5714:103,-143,-70,0,0,0.0752129 -2366,5714:102,-142,-70,0,0,0.0752057 -2367,5714:101,-141,-70,0,0,0.0751701 -2368,5714:100,-140,-70,0,0,0.0751272 -2369,5713:209,-139,-70,0,0,0.0751128 -2370,5713:208,-138,-70,0,0,0.0751128 -2371,5713:207,-137,-70,0,0,0.075163 -2372,5713:206,-136,-70,0,0,0.0754492 -2373,5713:205,-135,-70,0,0,0.0759234 -2374,5713:104,-134,-70,0,0,0.0755424 -2375,5713:103,-133,-70,0,0,0.0758443 -2376,5713:102,-132,-70,0,0,0.0760749 -2377,5713:101,-131,-70,0,0,0.0757795 -2378,5713:100,-130,-70,0,0,0.0754562 -2379,5712:209,-129,-70,0,0,0.0752916 -2380,5712:208,-128,-70,0,0,0.0751416 -2381,5712:207,-127,-70,0,0,0.0751558 -2382,5712:206,-126,-70,0,0,0.075163 -2383,5712:205,-125,-70,0,0,0.0751701 -2384,5712:104,-124,-70,0,0,0.0751701 -2385,5712:103,-123,-70,0,0,0.0751701 -2386,5712:102,-122,-70,0,0,0.0751701 -2387,5712:101,-121,-70,0,0,0.075163 -2388,5712:100,-120,-70,0,0,0.0751486 -2389,5711:209,-119,-70,0,0,0.0751344 -2390,5711:208,-118,-70,0,0,0.07512 -2391,5711:207,-117,-70,0,0,0.0751128 -2392,5711:206,-116,-70,0,0,0.0751059 -2393,5711:205,-115,-70,0,0,0.0750987 -2394,5711:104,-114,-70,0,0,0.0750987 -2395,5711:103,-113,-70,0,0,0.0750987 -2396,5711:102,-112,-70,0,0,0.0750987 -2397,5711:101,-111,-70,0,0,0.0750987 -2398,5711:100,-110,-70,0,0,0.0750987 -2399,5710:209,-109,-70,0,0,0.0751059 -2400,5710:208,-108,-70,0,0,0.0751128 -2401,5710:207,-107,-70,0,0,0.0751128 -2402,5710:206,-106,-70,0,0,0.0751128 -2403,5710:205,-105,-70,0,0,0.07512 -2404,5710:104,-104,-70,0,0,0.0751486 -2405,5710:103,-103,-70,0,0,0.0751344 -2406,5710:102,-102,-70,0,0,0.0751771 -2407,5710:101,-101,-70,0,0,0.0752415 -2408,5710:100,-100,-70,0,0,0.07527 -2409,5709:209,-99,-70,0,0,0.0752343 -2410,5709:208,-98,-70,0,0,0.0752129 -2411,5709:207,-97,-70,0,0,0.0751843 -2412,5709:206,-96,-70,0,0,0.0751771 -2413,5709:205,-95,-70,0,0,0.0751486 -2414,5709:104,-94,-70,0,0,0.0751344 -2415,5709:103,-93,-70,0,0,0.0751272 -2416,5709:102,-92,-70,0,0,0.0751128 -2417,5709:101,-91,-70,0,0,0.075063 -2418,5709:100,-90,-70,0,0,0.0750273 -2419,5708:209,-89,-70,0,0,0.0749846 -2420,5708:208,-88,-70,0,0,0.0749775 -2421,5708:207,-87,-70,0,0,0.0749703 -2422,5708:206,-86,-70,0,0,0.0749418 -2423,5708:205,-85,-70,0,0,0.0749346 -2424,5708:104,-84,-70,0,0,0.0749346 -2425,5708:103,-83,-70,0,0,0.0749418 -2426,5708:102,-82,-70,0,0,0.0749562 -2427,5708:101,-81,-70,0,0,0.0750131 -2428,5708:100,-80,-70,0,0,0.0750702 -2429,5707:209,-79,-70,0,0,0.0761907 -2430,5707:208,-78,-70,0,0,0.0779075 -2431,5707:207,-77,-70,0,0,0.0796974 -2432,5707:206,-76,-70,0,0,0.0819491 -2433,5707:205,-75,-70,0,0,0.0833749 -2434,5707:104,-74,-70,0,0,0.0866999 -2435,5706:100,-60,-70,0,0,0.0752772 -2436,5705:209,-59,-70,0,0,0.0751272 -2437,5705:208,-58,-70,0,0,0.0750345 -2438,5705:207,-57,-70,0,0,0.0750416 -2439,5705:206,-56,-70,0,0,0.0750273 -2440,5705:205,-55,-70,0,0,0.0750416 -2441,5705:104,-54,-70,0,0,0.0750416 -2442,5705:103,-53,-70,0,0,0.0750488 -2443,5705:102,-52,-70,0,0,0.0750488 -2444,5705:101,-51,-70,0,0,0.0750488 -2445,5705:100,-50,-70,0,0,0.0750416 -2446,5704:209,-49,-70,0,0,0.0750488 -2447,5704:208,-48,-70,0,0,0.0750488 -2448,5704:207,-47,-70,0,0,0.0750416 -2449,5704:206,-46,-70,0,0,0.0750345 -2450,5704:205,-45,-70,0,0,0.0750273 -2451,5704:104,-44,-70,0,0,0.0750131 -2452,5704:103,-43,-70,0,0,0.0750131 -2453,5704:102,-42,-70,0,0,0.0749988 -2454,5704:101,-41,-70,0,0,0.0749846 -2455,5704:100,-40,-70,0,0,0.0749703 -2456,5703:209,-39,-70,0,0,0.0749703 -2457,5703:208,-38,-70,0,0,0.0749703 -2458,5703:207,-37,-70,0,0,0.0749703 -2459,5703:206,-36,-70,0,0,0.0749775 -2460,5703:205,-35,-70,0,0,0.0749775 -2461,5703:104,-34,-70,0,0,0.0749846 -2462,5703:103,-33,-70,0,0,0.0749916 -2463,5703:102,-32,-70,0,0,0.0749916 -2464,5703:101,-31,-70,0,0,0.0749988 -2465,5703:100,-30,-70,0,0,0.0749988 -2466,5702:209,-29,-70,0,0,0.075006 -2467,5702:208,-28,-70,0,0,0.075006 -2468,5702:207,-27,-70,0,0,0.0750131 -2469,5702:206,-26,-70,0,0,0.0750131 -2470,5702:205,-25,-70,0,0,0.0749775 -2471,5702:104,-24,-70,0,0,0.0749775 -2472,5702:103,-23,-70,0,0,0.0749775 -2473,5702:102,-22,-70,0,0,0.0749775 -2474,5702:101,-21,-70,0,0,0.0749775 -2475,5702:100,-20,-70,0,0,0.0749846 -2476,5701:209,-19,-70,0,0,0.0749916 -2477,5701:208,-18,-70,0,0,0.0749988 -2478,5701:207,-17,-70,0,0,0.075006 -2479,5701:206,-16,-70,0,0,0.075006 -2480,5701:205,-15,-70,0,0,0.0750273 -2481,5701:104,-14,-70,0,0,0.0750843 -2482,5701:103,-13,-70,0,0,0.07512 -2483,3717:100,170,-70,0,0,0.0751416 -2484,3717:101,171,-70,0,0,0.0750131 -2485,3717:102,172,-70,0,0,0.075006 -2486,3717:103,173,-70,0,0,0.0750131 -2487,3717:104,174,-70,0,0,0.075006 -2488,3717:205,175,-70,0,0,0.0749988 -2489,3717:206,176,-70,0,0,0.0749916 -2490,3717:207,177,-70,0,0,0.0749916 -2491,3717:208,178,-70,0,0,0.0749846 -2492,3717:209,179,-70,0,0,0.0749916 -2493,3718:100,180,-70,0,0,0.075006 -2494,5618:390,-180,-69,0,0,0.0750416 -2495,5617:499,-179,-69,0,0,0.0750488 -2496,5617:498,-178,-69,0,0,0.0750702 -2497,5617:497,-177,-69,0,0,0.0750987 -2498,5617:496,-176,-69,0,0,0.0751059 -2499,5617:495,-175,-69,0,0,0.0750915 -2500,5617:394,-174,-69,0,0,0.0750843 -2501,5617:393,-173,-69,0,0,0.0750773 -2502,5617:392,-172,-69,0,0,0.0750558 -2503,5617:391,-171,-69,0,0,0.0750416 -2504,5617:390,-170,-69,0,0,0.0750273 -2505,5616:499,-169,-69,0,0,0.0750131 -2506,5616:498,-168,-69,0,0,0.075006 -2507,5616:497,-167,-69,0,0,0.075006 -2508,5616:496,-166,-69,0,0,0.0749916 -2509,5616:495,-165,-69,0,0,0.0749775 -2510,5616:394,-164,-69,0,0,0.0749775 -2511,5616:393,-163,-69,0,0,0.0749775 -2512,5616:392,-162,-69,0,0,0.0749775 -2513,5616:391,-161,-69,0,0,0.0749916 -2514,5616:390,-160,-69,0,0,0.0750131 -2515,5615:499,-159,-69,0,0,0.0750345 -2516,5615:498,-158,-69,0,0,0.0750488 -2517,5615:497,-157,-69,0,0,0.075063 -2518,5615:496,-156,-69,0,0,0.0750843 -2519,5615:495,-155,-69,0,0,0.0750987 -2520,5615:394,-154,-69,0,0,0.0751128 -2521,5615:393,-153,-69,0,0,0.0751128 -2522,5615:392,-152,-69,0,0,0.0751344 -2523,5615:391,-151,-69,0,0,0.0751558 -2524,5615:390,-150,-69,0,0,0.0751701 -2525,5614:499,-149,-69,0,0,0.0751771 -2526,5614:498,-148,-69,0,0,0.0751843 -2527,5614:497,-147,-69,0,0,0.0751771 -2528,5614:496,-146,-69,0,0,0.0751701 -2529,5614:495,-145,-69,0,0,0.0751771 -2530,5614:394,-144,-69,0,0,0.0751843 -2531,5614:393,-143,-69,0,0,0.0751915 -2532,5614:392,-142,-69,0,0,0.0751915 -2533,5614:391,-141,-69,0,0,0.0751843 -2534,5614:390,-140,-69,0,0,0.0751701 -2535,5613:499,-139,-69,0,0,0.0751344 -2536,5613:498,-138,-69,0,0,0.0751344 -2537,5613:497,-137,-69,0,0,0.0751701 -2538,5613:496,-136,-69,0,0,0.0752487 -2539,5613:495,-135,-69,0,0,0.0752916 -2540,5613:394,-134,-69,0,0,0.0753561 -2541,5613:393,-133,-69,0,0,0.0754562 -2542,5613:392,-132,-69,0,0,0.0754634 -2543,5613:391,-131,-69,0,0,0.0759379 -2544,5613:390,-130,-69,0,0,0.075758 -2545,5612:499,-129,-69,0,0,0.0754779 -2546,5612:498,-128,-69,0,0,0.0754348 -2547,5612:497,-127,-69,0,0,0.0754921 -2548,5612:496,-126,-69,0,0,0.0753561 -2549,5612:495,-125,-69,0,0,0.0751486 -2550,5612:394,-124,-69,0,0,0.0751558 -2551,5612:393,-123,-69,0,0,0.0751558 -2552,5612:392,-122,-69,0,0,0.0751558 -2553,5612:391,-121,-69,0,0,0.0751558 -2554,5612:390,-120,-69,0,0,0.0751344 -2555,5611:499,-119,-69,0,0,0.0751272 -2556,5611:498,-118,-69,0,0,0.0751272 -2557,5611:497,-117,-69,0,0,0.0751128 -2558,5611:496,-116,-69,0,0,0.0751059 -2559,5611:495,-115,-69,0,0,0.0751128 -2560,5611:394,-114,-69,0,0,0.0751059 -2561,5611:393,-113,-69,0,0,0.0751059 -2562,5611:392,-112,-69,0,0,0.0751059 -2563,5611:391,-111,-69,0,0,0.0751059 -2564,5611:390,-110,-69,0,0,0.0751059 -2565,5610:499,-109,-69,0,0,0.0751059 -2566,5610:498,-108,-69,0,0,0.0751059 -2567,5610:497,-107,-69,0,0,0.0751128 -2568,5610:496,-106,-69,0,0,0.07512 -2569,5610:495,-105,-69,0,0,0.07512 -2570,5610:394,-104,-69,0,0,0.07512 -2571,5610:393,-103,-69,0,0,0.07512 -2572,5610:392,-102,-69,0,0,0.0751128 -2573,5610:391,-101,-69,0,0,0.07512 -2574,5610:390,-100,-69,0,0,0.0751344 -2575,5609:499,-99,-69,0,0,0.0751701 -2576,5609:498,-98,-69,0,0,0.0751915 -2577,5609:497,-97,-69,0,0,0.0751843 -2578,5609:496,-96,-69,0,0,0.0751701 -2579,5609:495,-95,-69,0,0,0.075163 -2580,5609:394,-94,-69,0,0,0.0751344 -2581,5609:393,-93,-69,0,0,0.0750987 -2582,5609:392,-92,-69,0,0,0.0750558 -2583,5609:391,-91,-69,0,0,0.0750416 -2584,5609:390,-90,-69,0,0,0.0750273 -2585,5608:499,-89,-69,0,0,0.0750201 -2586,5608:498,-88,-69,0,0,0.075006 -2587,5608:497,-87,-69,0,0,0.0749988 -2588,5608:496,-86,-69,0,0,0.0749775 -2589,5608:495,-85,-69,0,0,0.0749631 -2590,5608:394,-84,-69,0,0,0.0749562 -2591,5608:393,-83,-69,0,0,0.0749631 -2592,5608:392,-82,-69,0,0,0.0749846 -2593,5608:391,-81,-69,0,0,0.0750345 -2594,5608:390,-80,-69,0,0,0.0750843 -2595,5607:499,-79,-69,0,0,0.0753203 -2596,5607:498,-78,-69,0,0,0.0772018 -2597,5607:497,-77,-69,0,0,0.0779296 -2598,5607:496,-76,-69,0,0,0.078011 -2599,5606:390,-60,-69,0,0,0.0753344 -2600,5605:499,-59,-69,0,0,0.0750558 -2601,5605:498,-58,-69,0,0,0.0750345 -2602,5605:497,-57,-69,0,0,0.0750488 -2603,5605:496,-56,-69,0,0,0.0750416 -2604,5605:495,-55,-69,0,0,0.0750488 -2605,5605:394,-54,-69,0,0,0.0750488 -2606,5605:393,-53,-69,0,0,0.0750488 -2607,5605:392,-52,-69,0,0,0.0750416 -2608,5605:391,-51,-69,0,0,0.0750416 -2609,5605:390,-50,-69,0,0,0.0750416 -2610,5604:499,-49,-69,0,0,0.0750345 -2611,5604:498,-48,-69,0,0,0.0750345 -2612,5604:497,-47,-69,0,0,0.0750273 -2613,5604:496,-46,-69,0,0,0.0750201 -2614,5604:495,-45,-69,0,0,0.075006 -2615,5604:394,-44,-69,0,0,0.0749916 -2616,5604:393,-43,-69,0,0,0.0749775 -2617,5604:392,-42,-69,0,0,0.0749703 -2618,5604:391,-41,-69,0,0,0.0749703 -2619,5604:390,-40,-69,0,0,0.0749631 -2620,5603:499,-39,-69,0,0,0.0749631 -2621,5603:498,-38,-69,0,0,0.0749631 -2622,5603:497,-37,-69,0,0,0.0749703 -2623,5603:496,-36,-69,0,0,0.0749775 -2624,5603:495,-35,-69,0,0,0.0749775 -2625,5603:394,-34,-69,0,0,0.0749846 -2626,5603:393,-33,-69,0,0,0.0749846 -2627,5603:392,-32,-69,0,0,0.0749988 -2628,5603:391,-31,-69,0,0,0.0749846 -2629,5603:390,-30,-69,0,0,0.0749916 -2630,5602:499,-29,-69,0,0,0.0749846 -2631,5602:498,-28,-69,0,0,0.0749846 -2632,5602:497,-27,-69,0,0,0.0749846 -2633,5602:496,-26,-69,0,0,0.0749846 -2634,5602:495,-25,-69,0,0,0.0749775 -2635,5602:394,-24,-69,0,0,0.0749703 -2636,5602:393,-23,-69,0,0,0.0749703 -2637,5602:392,-22,-69,0,0,0.0749631 -2638,5602:391,-21,-69,0,0,0.0749562 -2639,5602:390,-20,-69,0,0,0.0749703 -2640,5601:499,-19,-69,0,0,0.0749775 -2641,5601:498,-18,-69,0,0,0.0749846 -2642,5601:497,-17,-69,0,0,0.0749916 -2643,5601:496,-16,-69,0,0,0.0749988 -2644,5601:495,-15,-69,0,0,0.075006 -2645,5601:394,-14,-69,0,0,0.0750201 -2646,5601:393,-13,-69,0,0,0.0750345 -2647,5601:392,-12,-69,0,0,0.0751486 -2648,5601:391,-11,-69,0,0,0.075528 -2649,5601:390,-10,-69,0,0,0.0758515 -2650,3616:499,169,-69,0,0,0.0752487 -2651,3617:390,170,-69,0,0,0.075006 -2652,3617:391,171,-69,0,0,0.075006 -2653,3617:392,172,-69,0,0,0.0750131 -2654,3617:393,173,-69,0,0,0.0750131 -2655,3617:394,174,-69,0,0,0.075006 -2656,3617:495,175,-69,0,0,0.0749916 -2657,3617:496,176,-69,0,0,0.0749846 -2658,3617:497,177,-69,0,0,0.0749846 -2659,3617:498,178,-69,0,0,0.0749916 -2660,3617:499,179,-69,0,0,0.0750273 -2661,3618:390,180,-69,0,0,0.0750416 -2662,5618:380,-180,-68,0,0,0.0750915 -2663,5617:489,-179,-68,0,0,0.0751059 -2664,5617:488,-178,-68,0,0,0.0751059 -2665,5617:487,-177,-68,0,0,0.0751059 -2666,5617:486,-176,-68,0,0,0.0751059 -2667,5617:485,-175,-68,0,0,0.0750915 -2668,5617:384,-174,-68,0,0,0.0750773 -2669,5617:383,-173,-68,0,0,0.0750558 -2670,5617:382,-172,-68,0,0,0.0750345 -2671,5617:381,-171,-68,0,0,0.0750273 -2672,5617:380,-170,-68,0,0,0.0750131 -2673,5616:489,-169,-68,0,0,0.075006 -2674,5616:488,-168,-68,0,0,0.0749916 -2675,5616:487,-167,-68,0,0,0.0749916 -2676,5616:486,-166,-68,0,0,0.0749631 -2677,5616:485,-165,-68,0,0,0.074949 -2678,5616:384,-164,-68,0,0,0.0749562 -2679,5616:383,-163,-68,0,0,0.0749562 -2680,5616:382,-162,-68,0,0,0.0749562 -2681,5616:381,-161,-68,0,0,0.0749631 -2682,5616:380,-160,-68,0,0,0.0749916 -2683,5615:489,-159,-68,0,0,0.0750273 -2684,5615:488,-158,-68,0,0,0.0750488 -2685,5615:487,-157,-68,0,0,0.0750702 -2686,5615:486,-156,-68,0,0,0.0750987 -2687,5615:485,-155,-68,0,0,0.0751128 -2688,5615:384,-154,-68,0,0,0.07512 -2689,5615:383,-153,-68,0,0,0.0751272 -2690,5615:382,-152,-68,0,0,0.0751344 -2691,5615:381,-151,-68,0,0,0.0751486 -2692,5615:380,-150,-68,0,0,0.0751558 -2693,5614:489,-149,-68,0,0,0.075163 -2694,5614:488,-148,-68,0,0,0.0751701 -2695,5614:487,-147,-68,0,0,0.0751771 -2696,5614:486,-146,-68,0,0,0.0751771 -2697,5614:485,-145,-68,0,0,0.0751771 -2698,5614:384,-144,-68,0,0,0.0751771 -2699,5614:383,-143,-68,0,0,0.0751915 -2700,5614:382,-142,-68,0,0,0.0751843 -2701,5614:381,-141,-68,0,0,0.0751771 -2702,5614:380,-140,-68,0,0,0.0751771 -2703,5613:489,-139,-68,0,0,0.075163 -2704,5613:488,-138,-68,0,0,0.0751486 -2705,5613:487,-137,-68,0,0,0.0751344 -2706,5613:486,-136,-68,0,0,0.07512 -2707,5613:485,-135,-68,0,0,0.0751416 -2708,5613:384,-134,-68,0,0,0.0752559 -2709,5613:383,-133,-68,0,0,0.0753917 -2710,5613:382,-132,-68,0,0,0.0755424 -2711,5613:381,-131,-68,0,0,0.0761978 -2712,5613:380,-130,-68,0,0,0.0759162 -2713,5612:489,-129,-68,0,0,0.0757937 -2714,5612:488,-128,-68,0,0,0.0758586 -2715,5612:487,-127,-68,0,0,0.0759091 -2716,5612:486,-126,-68,0,0,0.0756932 -2717,5612:485,-125,-68,0,0,0.0754562 -2718,5612:384,-124,-68,0,0,0.075313 -2719,5612:383,-123,-68,0,0,0.0751344 -2720,5612:382,-122,-68,0,0,0.0751416 -2721,5612:381,-121,-68,0,0,0.0751272 -2722,5612:380,-120,-68,0,0,0.07512 -2723,5611:489,-119,-68,0,0,0.0751128 -2724,5611:488,-118,-68,0,0,0.0751059 -2725,5611:487,-117,-68,0,0,0.0750987 -2726,5611:486,-116,-68,0,0,0.0751272 -2727,5611:485,-115,-68,0,0,0.0750915 -2728,5611:384,-114,-68,0,0,0.0750915 -2729,5611:383,-113,-68,0,0,0.0751059 -2730,5611:382,-112,-68,0,0,0.0751059 -2731,5611:381,-111,-68,0,0,0.0751059 -2732,5611:380,-110,-68,0,0,0.0751059 -2733,5610:489,-109,-68,0,0,0.0751059 -2734,5610:488,-108,-68,0,0,0.0751059 -2735,5610:487,-107,-68,0,0,0.0750987 -2736,5610:486,-106,-68,0,0,0.0750987 -2737,5610:485,-105,-68,0,0,0.0750987 -2738,5610:384,-104,-68,0,0,0.0751128 -2739,5610:383,-103,-68,0,0,0.0751128 -2740,5610:382,-102,-68,0,0,0.0751128 -2741,5610:381,-101,-68,0,0,0.0751059 -2742,5610:380,-100,-68,0,0,0.0751059 -2743,5609:489,-99,-68,0,0,0.07512 -2744,5609:488,-98,-68,0,0,0.0751272 -2745,5609:487,-97,-68,0,0,0.0751272 -2746,5609:486,-96,-68,0,0,0.0751128 -2747,5609:485,-95,-68,0,0,0.0750987 -2748,5609:384,-94,-68,0,0,0.0750558 -2749,5609:383,-93,-68,0,0,0.0750201 -2750,5609:382,-92,-68,0,0,0.075006 -2751,5609:381,-91,-68,0,0,0.075006 -2752,5609:380,-90,-68,0,0,0.0750201 -2753,5608:489,-89,-68,0,0,0.0750273 -2754,5608:488,-88,-68,0,0,0.0750273 -2755,5608:487,-87,-68,0,0,0.0750201 -2756,5608:486,-86,-68,0,0,0.0750131 -2757,5608:485,-85,-68,0,0,0.0750131 -2758,5608:384,-84,-68,0,0,0.0749988 -2759,5608:383,-83,-68,0,0,0.0749916 -2760,5608:382,-82,-68,0,0,0.075006 -2761,5608:381,-81,-68,0,0,0.0750201 -2762,5608:380,-80,-68,0,0,0.0750702 -2763,5607:489,-79,-68,0,0,0.0755781 -2764,5607:488,-78,-68,0,0,0.0769681 -2765,5607:487,-77,-68,0,0,0.0794115 -2766,5607:486,-76,-68,0,0,0.0806751 -2767,5607:485,-75,-68,0,0,0.0805304 -2768,5606:380,-60,-68,0,0,0.0752201 -2769,5605:489,-59,-68,0,0,0.0750345 -2770,5605:488,-58,-68,0,0,0.0750345 -2771,5605:487,-57,-68,0,0,0.0750488 -2772,5605:486,-56,-68,0,0,0.0750416 -2773,5605:485,-55,-68,0,0,0.0750488 -2774,5605:384,-54,-68,0,0,0.0750488 -2775,5605:383,-53,-68,0,0,0.0750416 -2776,5605:382,-52,-68,0,0,0.0750345 -2777,5605:381,-51,-68,0,0,0.0750273 -2778,5605:380,-50,-68,0,0,0.0750273 -2779,5604:489,-49,-68,0,0,0.0750201 -2780,5604:488,-48,-68,0,0,0.075006 -2781,5604:487,-47,-68,0,0,0.0749916 -2782,5604:486,-46,-68,0,0,0.0749846 -2783,5604:485,-45,-68,0,0,0.0749775 -2784,5604:384,-44,-68,0,0,0.0749703 -2785,5604:383,-43,-68,0,0,0.0749631 -2786,5604:382,-42,-68,0,0,0.0749703 -2787,5604:381,-41,-68,0,0,0.0749631 -2788,5604:380,-40,-68,0,0,0.0749631 -2789,5603:489,-39,-68,0,0,0.0749631 -2790,5603:488,-38,-68,0,0,0.0749631 -2791,5603:487,-37,-68,0,0,0.0749703 -2792,5603:486,-36,-68,0,0,0.0749703 -2793,5603:485,-35,-68,0,0,0.0749775 -2794,5603:384,-34,-68,0,0,0.0749775 -2795,5603:383,-33,-68,0,0,0.0749775 -2796,5603:382,-32,-68,0,0,0.0749775 -2797,5603:381,-31,-68,0,0,0.0749775 -2798,5603:380,-30,-68,0,0,0.0749703 -2799,5602:489,-29,-68,0,0,0.0749775 -2800,5602:488,-28,-68,0,0,0.0749775 -2801,5602:487,-27,-68,0,0,0.0749703 -2802,5602:486,-26,-68,0,0,0.0749703 -2803,5602:485,-25,-68,0,0,0.0749631 -2804,5602:384,-24,-68,0,0,0.0749562 -2805,5602:383,-23,-68,0,0,0.0749562 -2806,5602:382,-22,-68,0,0,0.0749562 -2807,5602:381,-21,-68,0,0,0.0749562 -2808,5602:380,-20,-68,0,0,0.0749562 -2809,5601:489,-19,-68,0,0,0.0749562 -2810,5601:488,-18,-68,0,0,0.0749631 -2811,5601:487,-17,-68,0,0,0.0749631 -2812,5601:486,-16,-68,0,0,0.0749631 -2813,5601:485,-15,-68,0,0,0.0749846 -2814,5601:384,-14,-68,0,0,0.0749916 -2815,5601:383,-13,-68,0,0,0.0749988 -2816,5601:382,-12,-68,0,0,0.0750201 -2817,5601:381,-11,-68,0,0,0.0750702 -2818,5601:380,-10,-68,0,0,0.0756285 -2819,5600:489,-9,-68,0,0,0.0785446 -2820,5600:488,-8,-68,0,0,0.0793891 -2821,5600:487,-7,-68,0,0,0.0797351 -2822,5600:486,-6,-68,0,0,0.082034 -2823,3616:384,164,-68,0,0,0.0772166 -2824,3616:485,165,-68,0,0,0.0765747 -2825,3616:486,166,-68,0,0,0.0751771 -2826,3616:487,167,-68,0,0,0.0750488 -2827,3616:488,168,-68,0,0,0.0750416 -2828,3616:489,169,-68,0,0,0.0750131 -2829,3617:380,170,-68,0,0,0.0750201 -2830,3617:381,171,-68,0,0,0.0750131 -2831,3617:382,172,-68,0,0,0.0750131 -2832,3617:383,173,-68,0,0,0.075006 -2833,3617:384,174,-68,0,0,0.0749988 -2834,3617:485,175,-68,0,0,0.0749703 -2835,3617:486,176,-68,0,0,0.0749631 -2836,3617:487,177,-68,0,0,0.0749846 -2837,3617:488,178,-68,0,0,0.0750131 -2838,3617:489,179,-68,0,0,0.075063 -2839,3618:380,180,-68,0,0,0.0750915 -2840,5618:370,-180,-67,0,0,0.0750773 -2841,5617:479,-179,-67,0,0,0.0750915 -2842,5617:478,-178,-67,0,0,0.0750987 -2843,5617:477,-177,-67,0,0,0.0750987 -2844,5617:476,-176,-67,0,0,0.0750843 -2845,5617:475,-175,-67,0,0,0.0750702 -2846,5617:374,-174,-67,0,0,0.075063 -2847,5617:373,-173,-67,0,0,0.0750558 -2848,5617:372,-172,-67,0,0,0.0750416 -2849,5617:371,-171,-67,0,0,0.0750201 -2850,5617:370,-170,-67,0,0,0.075006 -2851,5616:479,-169,-67,0,0,0.0749916 -2852,5616:478,-168,-67,0,0,0.0749846 -2853,5616:477,-167,-67,0,0,0.0749631 -2854,5616:476,-166,-67,0,0,0.074949 -2855,5616:475,-165,-67,0,0,0.0749418 -2856,5616:374,-164,-67,0,0,0.0749346 -2857,5616:373,-163,-67,0,0,0.074949 -2858,5616:372,-162,-67,0,0,0.074949 -2859,5616:371,-161,-67,0,0,0.0749562 -2860,5616:370,-160,-67,0,0,0.0749846 -2861,5615:479,-159,-67,0,0,0.0750131 -2862,5615:478,-158,-67,0,0,0.0750558 -2863,5615:477,-157,-67,0,0,0.0750843 -2864,5615:476,-156,-67,0,0,0.0751059 -2865,5615:475,-155,-67,0,0,0.0751128 -2866,5615:374,-154,-67,0,0,0.07512 -2867,5615:373,-153,-67,0,0,0.0751272 -2868,5615:372,-152,-67,0,0,0.0751416 -2869,5615:371,-151,-67,0,0,0.0751486 -2870,5615:370,-150,-67,0,0,0.0751486 -2871,5614:479,-149,-67,0,0,0.0751558 -2872,5614:478,-148,-67,0,0,0.0751701 -2873,5614:477,-147,-67,0,0,0.0751843 -2874,5614:476,-146,-67,0,0,0.0751701 -2875,5614:475,-145,-67,0,0,0.0751771 -2876,5614:374,-144,-67,0,0,0.0751915 -2877,5614:373,-143,-67,0,0,0.0751701 -2878,5614:372,-142,-67,0,0,0.0751486 -2879,5614:371,-141,-67,0,0,0.0751344 -2880,5614:370,-140,-67,0,0,0.0751344 -2881,5613:479,-139,-67,0,0,0.0751486 -2882,5613:478,-138,-67,0,0,0.0751987 -2883,5613:477,-137,-67,0,0,0.0753703 -2884,5613:476,-136,-67,0,0,0.075163 -2885,5613:475,-135,-67,0,0,0.0751771 -2886,5613:374,-134,-67,0,0,0.0752057 -2887,5613:373,-133,-67,0,0,0.0754779 -2888,5613:372,-132,-67,0,0,0.0753489 -2889,5613:371,-131,-67,0,0,0.0761183 -2890,5613:370,-130,-67,0,0,0.076415 -2891,5612:479,-129,-67,0,0,0.0764296 -2892,5612:478,-128,-67,0,0,0.07635 -2893,5612:477,-127,-67,0,0,0.0760967 -2894,5612:476,-126,-67,0,0,0.0759091 -2895,5612:475,-125,-67,0,0,0.0757362 -2896,5612:374,-124,-67,0,0,0.0755207 -2897,5612:373,-123,-67,0,0,0.0754203 -2898,5612:372,-122,-67,0,0,0.0753561 -2899,5612:371,-121,-67,0,0,0.0752916 -2900,5612:370,-120,-67,0,0,0.0752273 -2901,5611:479,-119,-67,0,0,0.0751701 -2902,5611:478,-118,-67,0,0,0.0752273 -2903,5611:477,-117,-67,0,0,0.076046 -2904,5611:476,-116,-67,0,0,0.0760749 -2905,5611:475,-115,-67,0,0,0.0757867 -2906,5611:374,-114,-67,0,0,0.0755494 -2907,5611:373,-113,-67,0,0,0.0754275 -2908,5611:372,-112,-67,0,0,0.07527 -2909,5611:371,-111,-67,0,0,0.0750915 -2910,5611:370,-110,-67,0,0,0.0751059 -2911,5610:479,-109,-67,0,0,0.0751059 -2912,5610:478,-108,-67,0,0,0.0750987 -2913,5610:477,-107,-67,0,0,0.0750915 -2914,5610:476,-106,-67,0,0,0.0750987 -2915,5610:475,-105,-67,0,0,0.0750915 -2916,5610:374,-104,-67,0,0,0.0750915 -2917,5610:373,-103,-67,0,0,0.0751059 -2918,5610:372,-102,-67,0,0,0.0751059 -2919,5610:371,-101,-67,0,0,0.0750987 -2920,5610:370,-100,-67,0,0,0.0750987 -2921,5609:479,-99,-67,0,0,0.0750843 -2922,5609:478,-98,-67,0,0,0.0750488 -2923,5609:477,-97,-67,0,0,0.0750201 -2924,5609:476,-96,-67,0,0,0.0750131 -2925,5609:475,-95,-67,0,0,0.0749988 -2926,5609:374,-94,-67,0,0,0.075006 -2927,5609:373,-93,-67,0,0,0.075006 -2928,5609:372,-92,-67,0,0,0.0749988 -2929,5609:371,-91,-67,0,0,0.0749988 -2930,5609:370,-90,-67,0,0,0.0749988 -2931,5608:479,-89,-67,0,0,0.0750131 -2932,5608:478,-88,-67,0,0,0.0750201 -2933,5608:477,-87,-67,0,0,0.0750273 -2934,5608:476,-86,-67,0,0,0.0750345 -2935,5608:475,-85,-67,0,0,0.0750345 -2936,5608:374,-84,-67,0,0,0.0750416 -2937,5608:373,-83,-67,0,0,0.0750488 -2938,5608:372,-82,-67,0,0,0.0750488 -2939,5608:371,-81,-67,0,0,0.0750558 -2940,5608:370,-80,-67,0,0,0.075063 -2941,5607:479,-79,-67,0,0,0.0750987 -2942,5607:478,-78,-67,0,0,0.0751701 -2943,5607:477,-77,-67,0,0,0.0752415 -2944,5607:476,-76,-67,0,0,0.0753272 -2945,5607:475,-75,-67,0,0,0.0753703 -2946,5607:374,-74,-67,0,0,0.0763354 -2947,5607:373,-73,-67,0,0,0.0768221 -2948,5606:479,-69,-67,0,0,0.0761978 -2949,5606:371,-61,-67,0,0,0.0753917 -2950,5606:370,-60,-67,0,0,0.0752273 -2951,5605:479,-59,-67,0,0,0.0750345 -2952,5605:478,-58,-67,0,0,0.0750345 -2953,5605:477,-57,-67,0,0,0.0750345 -2954,5605:476,-56,-67,0,0,0.0750416 -2955,5605:475,-55,-67,0,0,0.0750488 -2956,5605:374,-54,-67,0,0,0.0750416 -2957,5605:373,-53,-67,0,0,0.0750345 -2958,5605:372,-52,-67,0,0,0.0750201 -2959,5605:371,-51,-67,0,0,0.0749988 -2960,5605:370,-50,-67,0,0,0.0749988 -2961,5604:479,-49,-67,0,0,0.0749916 -2962,5604:478,-48,-67,0,0,0.0749775 -2963,5604:477,-47,-67,0,0,0.0749703 -2964,5604:476,-46,-67,0,0,0.0749703 -2965,5604:475,-45,-67,0,0,0.0749703 -2966,5604:374,-44,-67,0,0,0.0749703 -2967,5604:373,-43,-67,0,0,0.0749631 -2968,5604:372,-42,-67,0,0,0.0749631 -2969,5604:371,-41,-67,0,0,0.0749631 -2970,5604:370,-40,-67,0,0,0.0749631 -2971,5603:479,-39,-67,0,0,0.0749631 -2972,5603:478,-38,-67,0,0,0.0749631 -2973,5603:477,-37,-67,0,0,0.0749631 -2974,5603:476,-36,-67,0,0,0.0749631 -2975,5603:475,-35,-67,0,0,0.0749631 -2976,5603:374,-34,-67,0,0,0.0749631 -2977,5603:373,-33,-67,0,0,0.0749562 -2978,5603:372,-32,-67,0,0,0.074949 -2979,5603:371,-31,-67,0,0,0.074949 -2980,5603:370,-30,-67,0,0,0.0749418 -2981,5602:479,-29,-67,0,0,0.0749418 -2982,5602:478,-28,-67,0,0,0.074949 -2983,5602:477,-27,-67,0,0,0.074949 -2984,5602:476,-26,-67,0,0,0.0749418 -2985,5602:475,-25,-67,0,0,0.0749418 -2986,5602:374,-24,-67,0,0,0.0749346 -2987,5602:373,-23,-67,0,0,0.0749346 -2988,5602:372,-22,-67,0,0,0.0749418 -2989,5602:371,-21,-67,0,0,0.0749562 -2990,5602:370,-20,-67,0,0,0.0749562 -2991,5601:479,-19,-67,0,0,0.0749562 -2992,5601:478,-18,-67,0,0,0.0749631 -2993,5601:477,-17,-67,0,0,0.074949 -2994,5601:476,-16,-67,0,0,0.0749631 -2995,5601:475,-15,-67,0,0,0.0749631 -2996,5601:374,-14,-67,0,0,0.0749562 -2997,5601:373,-13,-67,0,0,0.0749631 -2998,5601:372,-12,-67,0,0,0.0749775 -2999,5601:371,-11,-67,0,0,0.0749703 -3000,5601:370,-10,-67,0,0,0.0749703 -3001,5600:479,-9,-67,0,0,0.0749631 -3002,5600:478,-8,-67,0,0,0.0749703 -3003,5600:477,-7,-67,0,0,0.0749775 -3004,5600:476,-6,-67,0,0,0.0750345 -3005,5600:475,-5,-67,0,0,0.0755781 -3006,5600:374,-4,-67,0,0,0.0753058 -3007,5600:373,-3,-67,0,0,0.0751128 -3008,5600:372,-2,-67,0,0,0.0754275 -3009,5600:371,-1,-67,0,0,0.0761689 -3010,3600:371,0,-67,0,0,0.0774365 -3011,3600:371,1,-67,0,0,0.0756355 -3012,3600:372,2,-67,0,0,0.0752129 -3013,3600:373,3,-67,0,0,0.075163 -3014,3600:374,4,-67,0,0,0.0766184 -3015,3600:475,5,-67,0,0,0.0768659 -3016,3600:476,6,-67,0,0,0.0768367 -3017,3600:477,7,-67,0,0,0.0773852 -3018,3600:478,8,-67,0,0,0.0782329 -3019,3600:479,9,-67,0,0,0.0786564 -3020,3601:370,10,-67,0,0,0.0775172 -3021,3601:371,11,-67,0,0,0.0789023 -3022,3601:372,12,-67,0,0,0.0800296 -3023,3601:373,13,-67,0,0,0.0814942 -3024,3601:478,18,-67,0,0,0.0759523 -3025,3601:479,19,-67,0,0,0.0750702 -3026,3602:370,20,-67,0,0,0.07512 -3027,3602:371,21,-67,0,0,0.0751344 -3028,3602:372,22,-67,0,0,0.0751059 -3029,3602:373,23,-67,0,0,0.0750558 -3030,3602:374,24,-67,0,0,0.0749846 -3031,3602:475,25,-67,0,0,0.0749275 -3032,3602:476,26,-67,0,0,0.0750201 -3033,3602:477,27,-67,0,0,0.0749346 -3034,3602:478,28,-67,0,0,0.0761761 -3035,3616:371,161,-67,0,0,0.07565 -3036,3616:372,162,-67,0,0,0.075006 -3037,3616:373,163,-67,0,0,0.0750131 -3038,3616:374,164,-67,0,0,0.0750273 -3039,3616:475,165,-67,0,0,0.0750273 -3040,3616:476,166,-67,0,0,0.0750273 -3041,3616:477,167,-67,0,0,0.0750273 -3042,3616:478,168,-67,0,0,0.0750345 -3043,3616:479,169,-67,0,0,0.0750273 -3044,3617:370,170,-67,0,0,0.0750273 -3045,3617:371,171,-67,0,0,0.0750345 -3046,3617:372,172,-67,0,0,0.0750201 -3047,3617:373,173,-67,0,0,0.0750201 -3048,3617:374,174,-67,0,0,0.0749916 -3049,3617:475,175,-67,0,0,0.0749775 -3050,3617:476,176,-67,0,0,0.0749775 -3051,3617:477,177,-67,0,0,0.075006 -3052,3617:478,178,-67,0,0,0.0750345 -3053,3617:479,179,-67,0,0,0.0750558 -3054,3618:370,180,-67,0,0,0.0750773 -3055,5618:360,-180,-66,0,0,0.0750558 -3056,5617:469,-179,-66,0,0,0.0750702 -3057,5617:468,-178,-66,0,0,0.0750915 -3058,5617:467,-177,-66,0,0,0.0750915 -3059,5617:466,-176,-66,0,0,0.0750773 -3060,5617:465,-175,-66,0,0,0.075063 -3061,5617:364,-174,-66,0,0,0.0750558 -3062,5617:363,-173,-66,0,0,0.0750488 -3063,5617:362,-172,-66,0,0,0.0750416 -3064,5617:361,-171,-66,0,0,0.0750273 -3065,5617:360,-170,-66,0,0,0.0750131 -3066,5616:469,-169,-66,0,0,0.0749988 -3067,5616:468,-168,-66,0,0,0.0749916 -3068,5616:467,-167,-66,0,0,0.0749846 -3069,5616:466,-166,-66,0,0,0.0749562 -3070,5616:465,-165,-66,0,0,0.074949 -3071,5616:364,-164,-66,0,0,0.074949 -3072,5616:363,-163,-66,0,0,0.0749562 -3073,5616:362,-162,-66,0,0,0.0749703 -3074,5616:361,-161,-66,0,0,0.0749775 -3075,5616:360,-160,-66,0,0,0.075006 -3076,5615:469,-159,-66,0,0,0.0750345 -3077,5615:468,-158,-66,0,0,0.0750558 -3078,5615:467,-157,-66,0,0,0.0750843 -3079,5615:466,-156,-66,0,0,0.0750987 -3080,5615:465,-155,-66,0,0,0.0751059 -3081,5615:364,-154,-66,0,0,0.0751128 -3082,5615:363,-153,-66,0,0,0.0751272 -3083,5615:362,-152,-66,0,0,0.0751486 -3084,5615:361,-151,-66,0,0,0.0751486 -3085,5615:360,-150,-66,0,0,0.0751486 -3086,5614:469,-149,-66,0,0,0.0751558 -3087,5614:468,-148,-66,0,0,0.0751558 -3088,5614:467,-147,-66,0,0,0.0751771 -3089,5614:466,-146,-66,0,0,0.0751701 -3090,5614:465,-145,-66,0,0,0.075163 -3091,5614:364,-144,-66,0,0,0.0751701 -3092,5614:363,-143,-66,0,0,0.075163 -3093,5614:362,-142,-66,0,0,0.0751701 -3094,5614:361,-141,-66,0,0,0.0752844 -3095,5614:360,-140,-66,0,0,0.0752844 -3096,5613:469,-139,-66,0,0,0.0753058 -3097,5613:468,-138,-66,0,0,0.0752057 -3098,5613:467,-137,-66,0,0,0.0751272 -3099,5613:466,-136,-66,0,0,0.0751915 -3100,5613:465,-135,-66,0,0,0.07527 -3101,5613:364,-134,-66,0,0,0.075686 -3102,5613:363,-133,-66,0,0,0.0760172 -3103,5613:362,-132,-66,0,0,0.0759019 -3104,5613:361,-131,-66,0,0,0.0763281 -3105,5613:360,-130,-66,0,0,0.0764369 -3106,5612:469,-129,-66,0,0,0.0763716 -3107,5612:468,-128,-66,0,0,0.076386 -3108,5612:467,-127,-66,0,0,0.0763064 -3109,5612:466,-126,-66,0,0,0.0760245 -3110,5612:465,-125,-66,0,0,0.0758803 -3111,5612:364,-124,-66,0,0,0.0757722 -3112,5612:363,-123,-66,0,0,0.075686 -3113,5612:362,-122,-66,0,0,0.0755424 -3114,5612:361,-121,-66,0,0,0.0754348 -3115,5612:360,-120,-66,0,0,0.0753989 -3116,5611:469,-119,-66,0,0,0.075442 -3117,5611:468,-118,-66,0,0,0.0756355 -3118,5611:467,-117,-66,0,0,0.0761038 -3119,5611:466,-116,-66,0,0,0.0772606 -3120,5611:465,-115,-66,0,0,0.0782997 -3121,5611:364,-114,-66,0,0,0.0782108 -3122,5611:363,-113,-66,0,0,0.0782476 -3123,5611:362,-112,-66,0,0,0.0763571 -3124,5611:361,-111,-66,0,0,0.0753272 -3125,5611:360,-110,-66,0,0,0.0750915 -3126,5610:469,-109,-66,0,0,0.0752772 -3127,5610:468,-108,-66,0,0,0.0762413 -3128,5610:467,-107,-66,0,0,0.0750915 -3129,5610:466,-106,-66,0,0,0.0750773 -3130,5610:465,-105,-66,0,0,0.075063 -3131,5610:364,-104,-66,0,0,0.0750702 -3132,5610:363,-103,-66,0,0,0.0750702 -3133,5610:362,-102,-66,0,0,0.0750558 -3134,5610:361,-101,-66,0,0,0.0750273 -3135,5610:360,-100,-66,0,0,0.0750416 -3136,5609:469,-99,-66,0,0,0.0750201 -3137,5609:468,-98,-66,0,0,0.075006 -3138,5609:467,-97,-66,0,0,0.0749988 -3139,5609:466,-96,-66,0,0,0.0749988 -3140,5609:465,-95,-66,0,0,0.0749846 -3141,5609:364,-94,-66,0,0,0.075006 -3142,5609:363,-93,-66,0,0,0.0750273 -3143,5609:362,-92,-66,0,0,0.0750131 -3144,5609:361,-91,-66,0,0,0.0749916 -3145,5609:360,-90,-66,0,0,0.0749988 -3146,5608:469,-89,-66,0,0,0.0750131 -3147,5608:468,-88,-66,0,0,0.0750273 -3148,5608:467,-87,-66,0,0,0.0750273 -3149,5608:466,-86,-66,0,0,0.0750345 -3150,5608:465,-85,-66,0,0,0.075063 -3151,5608:364,-84,-66,0,0,0.0750773 -3152,5608:363,-83,-66,0,0,0.0750773 -3153,5608:362,-82,-66,0,0,0.0750773 -3154,5608:361,-81,-66,0,0,0.0750843 -3155,5608:360,-80,-66,0,0,0.0750843 -3156,5607:469,-79,-66,0,0,0.0750773 -3157,5607:468,-78,-66,0,0,0.07512 -3158,5607:467,-77,-66,0,0,0.0752201 -3159,5607:466,-76,-66,0,0,0.0753203 -3160,5607:465,-75,-66,0,0,0.0753775 -3161,5607:364,-74,-66,0,0,0.076234 -3162,5607:363,-73,-66,0,0,0.076713 -3163,5607:360,-70,-66,0,0,0.0757867 -3164,5606:469,-69,-66,0,0,0.0759307 -3165,5606:361,-61,-66,0,0,0.0754348 -3166,5606:360,-60,-66,0,0,0.0751059 -3167,5605:469,-59,-66,0,0,0.0750345 -3168,5605:468,-58,-66,0,0,0.0750273 -3169,5605:467,-57,-66,0,0,0.0750273 -3170,5605:466,-56,-66,0,0,0.0750416 -3171,5605:465,-55,-66,0,0,0.0750488 -3172,5605:364,-54,-66,0,0,0.0750416 -3173,5605:363,-53,-66,0,0,0.0750273 -3174,5605:362,-52,-66,0,0,0.0750131 -3175,5605:361,-51,-66,0,0,0.075006 -3176,5605:360,-50,-66,0,0,0.0749916 -3177,5604:469,-49,-66,0,0,0.0749846 -3178,5604:468,-48,-66,0,0,0.0749846 -3179,5604:467,-47,-66,0,0,0.0749775 -3180,5604:466,-46,-66,0,0,0.0749775 -3181,5604:465,-45,-66,0,0,0.0749775 -3182,5604:364,-44,-66,0,0,0.0749703 -3183,5604:363,-43,-66,0,0,0.0749703 -3184,5604:362,-42,-66,0,0,0.0749703 -3185,5604:361,-41,-66,0,0,0.0749631 -3186,5604:360,-40,-66,0,0,0.0749562 -3187,5603:469,-39,-66,0,0,0.074949 -3188,5603:468,-38,-66,0,0,0.0749562 -3189,5603:467,-37,-66,0,0,0.0749631 -3190,5603:466,-36,-66,0,0,0.0749562 -3191,5603:465,-35,-66,0,0,0.0749562 -3192,5603:364,-34,-66,0,0,0.0749562 -3193,5603:363,-33,-66,0,0,0.0749562 -3194,5603:362,-32,-66,0,0,0.0749562 -3195,5603:361,-31,-66,0,0,0.074949 -3196,5603:360,-30,-66,0,0,0.0749418 -3197,5602:469,-29,-66,0,0,0.0749346 -3198,5602:468,-28,-66,0,0,0.0749418 -3199,5602:467,-27,-66,0,0,0.0749418 -3200,5602:466,-26,-66,0,0,0.0749346 -3201,5602:465,-25,-66,0,0,0.0749346 -3202,5602:364,-24,-66,0,0,0.0749275 -3203,5602:363,-23,-66,0,0,0.0749205 -3204,5602:362,-22,-66,0,0,0.0749205 -3205,5602:361,-21,-66,0,0,0.0749275 -3206,5602:360,-20,-66,0,0,0.0749346 -3207,5601:469,-19,-66,0,0,0.0749346 -3208,5601:468,-18,-66,0,0,0.0749418 -3209,5601:467,-17,-66,0,0,0.0749418 -3210,5601:466,-16,-66,0,0,0.074949 -3211,5601:465,-15,-66,0,0,0.074949 -3212,5601:364,-14,-66,0,0,0.074949 -3213,5601:363,-13,-66,0,0,0.0749418 -3214,5601:362,-12,-66,0,0,0.0749275 -3215,5601:361,-11,-66,0,0,0.0749418 -3216,5601:360,-10,-66,0,0,0.0749418 -3217,5600:469,-9,-66,0,0,0.0749205 -3218,5600:468,-8,-66,0,0,0.0749133 -3219,5600:467,-7,-66,0,0,0.0749275 -3220,5600:466,-6,-66,0,0,0.0749562 -3221,5600:465,-5,-66,0,0,0.0749703 -3222,5600:364,-4,-66,0,0,0.074949 -3223,5600:363,-3,-66,0,0,0.074899 -3224,5600:362,-2,-66,0,0,0.0748636 -3225,5600:361,-1,-66,0,0,0.0748636 -3226,3600:361,0,-66,0,0,0.0748636 -3227,3600:361,1,-66,0,0,0.0748777 -3228,3600:362,2,-66,0,0,0.074892 -3229,3600:363,3,-66,0,0,0.074892 -3230,3600:364,4,-66,0,0,0.074892 -3231,3600:465,5,-66,0,0,0.0748849 -3232,3600:466,6,-66,0,0,0.0748636 -3233,3600:467,7,-66,0,0,0.0748849 -3234,3600:468,8,-66,0,0,0.0749062 -3235,3600:469,9,-66,0,0,0.0749133 -3236,3601:360,10,-66,0,0,0.0749346 -3237,3601:361,11,-66,0,0,0.0750558 -3238,3601:362,12,-66,0,0,0.0753631 -3239,3601:363,13,-66,0,0,0.075063 -3240,3601:364,14,-66,0,0,0.0753203 -3241,3601:465,15,-66,0,0,0.075442 -3242,3601:466,16,-66,0,0,0.0750773 -3243,3601:467,17,-66,0,0,0.0751128 -3244,3601:468,18,-66,0,0,0.075006 -3245,3601:469,19,-66,0,0,0.0749775 -3246,3602:360,20,-66,0,0,0.0749775 -3247,3602:361,21,-66,0,0,0.0749775 -3248,3602:362,22,-66,0,0,0.0749846 -3249,3602:363,23,-66,0,0,0.0749846 -3250,3602:364,24,-66,0,0,0.0749703 -3251,3602:465,25,-66,0,0,0.074949 -3252,3602:466,26,-66,0,0,0.074949 -3253,3602:467,27,-66,0,0,0.0749418 -3254,3602:468,28,-66,0,0,0.0749988 -3255,3602:469,29,-66,0,0,0.0749846 -3256,3603:466,36,-66,0,0,0.0755352 -3257,3603:467,37,-66,0,0,0.0754348 -3258,3603:468,38,-66,0,0,0.0753058 -3259,3603:469,39,-66,0,0,0.0750915 -3260,3607:364,74,-66,0,0,0.0888968 -3261,3607:465,75,-66,0,0,0.0871401 -3262,3607:466,76,-66,0,0,0.0890969 -3263,3607:467,77,-66,0,0,0.0890717 -3264,3615:468,158,-66,0,0,0.0754492 -3265,3615:469,159,-66,0,0,0.0751771 -3266,3616:360,160,-66,0,0,0.0750488 -3267,3616:361,161,-66,0,0,0.0750416 -3268,3616:362,162,-66,0,0,0.0750345 -3269,3616:363,163,-66,0,0,0.0750488 -3270,3616:364,164,-66,0,0,0.075063 -3271,3616:465,165,-66,0,0,0.0750558 -3272,3616:466,166,-66,0,0,0.0750558 -3273,3616:467,167,-66,0,0,0.0750488 -3274,3616:468,168,-66,0,0,0.0750416 -3275,3616:469,169,-66,0,0,0.0750488 -3276,3617:360,170,-66,0,0,0.0750488 -3277,3617:361,171,-66,0,0,0.0750201 -3278,3617:362,172,-66,0,0,0.0750131 -3279,3617:363,173,-66,0,0,0.075006 -3280,3617:364,174,-66,0,0,0.0749846 -3281,3617:465,175,-66,0,0,0.0749846 -3282,3617:466,176,-66,0,0,0.0749916 -3283,3617:467,177,-66,0,0,0.075006 -3284,3617:468,178,-66,0,0,0.0750345 -3285,3617:469,179,-66,0,0,0.0750488 -3286,3618:360,180,-66,0,0,0.0750558 -3287,5618:350,-180,-65,0,0,0.0750488 -3288,5617:459,-179,-65,0,0,0.0750558 -3289,5617:458,-178,-65,0,0,0.0750702 -3290,5617:457,-177,-65,0,0,0.0750773 -3291,5617:456,-176,-65,0,0,0.0750702 -3292,5617:455,-175,-65,0,0,0.075063 -3293,5617:354,-174,-65,0,0,0.0750702 -3294,5617:353,-173,-65,0,0,0.0750558 -3295,5617:352,-172,-65,0,0,0.0750488 -3296,5617:351,-171,-65,0,0,0.0750345 -3297,5617:350,-170,-65,0,0,0.0750273 -3298,5616:459,-169,-65,0,0,0.0750131 -3299,5616:458,-168,-65,0,0,0.0749988 -3300,5616:457,-167,-65,0,0,0.0749916 -3301,5616:456,-166,-65,0,0,0.0749775 -3302,5616:455,-165,-65,0,0,0.0749703 -3303,5616:354,-164,-65,0,0,0.0749703 -3304,5616:353,-163,-65,0,0,0.0749775 -3305,5616:352,-162,-65,0,0,0.0749846 -3306,5616:351,-161,-65,0,0,0.0749988 -3307,5616:350,-160,-65,0,0,0.0750201 -3308,5615:459,-159,-65,0,0,0.0750488 -3309,5615:458,-158,-65,0,0,0.0750702 -3310,5615:457,-157,-65,0,0,0.0750773 -3311,5615:456,-156,-65,0,0,0.0750915 -3312,5615:455,-155,-65,0,0,0.0750987 -3313,5615:354,-154,-65,0,0,0.0751128 -3314,5615:353,-153,-65,0,0,0.0751344 -3315,5615:352,-152,-65,0,0,0.0751486 -3316,5615:351,-151,-65,0,0,0.0751558 -3317,5615:350,-150,-65,0,0,0.0751344 -3318,5614:459,-149,-65,0,0,0.0751701 -3319,5614:458,-148,-65,0,0,0.075163 -3320,5614:457,-147,-65,0,0,0.0751771 -3321,5614:456,-146,-65,0,0,0.0751558 -3322,5614:455,-145,-65,0,0,0.0751416 -3323,5614:354,-144,-65,0,0,0.075163 -3324,5614:353,-143,-65,0,0,0.0751486 -3325,5614:352,-142,-65,0,0,0.0751558 -3326,5614:351,-141,-65,0,0,0.075163 -3327,5614:350,-140,-65,0,0,0.0752631 -3328,5613:459,-139,-65,0,0,0.075313 -3329,5613:458,-138,-65,0,0,0.0752343 -3330,5613:457,-137,-65,0,0,0.0752057 -3331,5613:456,-136,-65,0,0,0.0751701 -3332,5613:455,-135,-65,0,0,0.0751843 -3333,5613:354,-134,-65,0,0,0.0759162 -3334,5613:353,-133,-65,0,0,0.0763789 -3335,5613:352,-132,-65,0,0,0.0763933 -3336,5613:351,-131,-65,0,0,0.0764006 -3337,5613:350,-130,-65,0,0,0.0764296 -3338,5612:459,-129,-65,0,0,0.0765967 -3339,5612:458,-128,-65,0,0,0.076553 -3340,5612:457,-127,-65,0,0,0.0764369 -3341,5612:456,-126,-65,0,0,0.0763643 -3342,5612:455,-125,-65,0,0,0.0763789 -3343,5612:354,-124,-65,0,0,0.0762775 -3344,5612:353,-123,-65,0,0,0.0762413 -3345,5612:352,-122,-65,0,0,0.0764586 -3346,5612:351,-121,-65,0,0,0.0766111 -3347,5612:350,-120,-65,0,0,0.075722 -3348,5611:459,-119,-65,0,0,0.0755711 -3349,5611:458,-118,-65,0,0,0.0756932 -3350,5611:457,-117,-65,0,0,0.0760606 -3351,5611:456,-116,-65,0,0,0.0784927 -3352,5611:455,-115,-65,0,0,0.0785002 -3353,5611:354,-114,-65,0,0,0.079254 -3354,5611:353,-113,-65,0,0,0.079404 -3355,5611:352,-112,-65,0,0,0.078011 -3356,5611:351,-111,-65,0,0,0.0764876 -3357,5611:350,-110,-65,0,0,0.0782255 -3358,5610:459,-109,-65,0,0,0.0797579 -3359,5610:458,-108,-65,0,0,0.0805076 -3360,5610:457,-107,-65,0,0,0.0769534 -3361,5610:456,-106,-65,0,0,0.075063 -3362,5610:455,-105,-65,0,0,0.075006 -3363,5610:354,-104,-65,0,0,0.0751059 -3364,5610:353,-103,-65,0,0,0.0750488 -3365,5610:352,-102,-65,0,0,0.0750273 -3366,5610:351,-101,-65,0,0,0.0750345 -3367,5610:350,-100,-65,0,0,0.0750558 -3368,5609:459,-99,-65,0,0,0.0750345 -3369,5609:458,-98,-65,0,0,0.0750201 -3370,5609:457,-97,-65,0,0,0.0750273 -3371,5609:456,-96,-65,0,0,0.0750131 -3372,5609:455,-95,-65,0,0,0.0749775 -3373,5609:354,-94,-65,0,0,0.0749703 -3374,5609:353,-93,-65,0,0,0.075006 -3375,5609:352,-92,-65,0,0,0.0749988 -3376,5609:351,-91,-65,0,0,0.0749775 -3377,5609:350,-90,-65,0,0,0.0749916 -3378,5608:459,-89,-65,0,0,0.0749988 -3379,5608:458,-88,-65,0,0,0.0750131 -3380,5608:457,-87,-65,0,0,0.0750201 -3381,5608:456,-86,-65,0,0,0.0750416 -3382,5608:455,-85,-65,0,0,0.075063 -3383,5608:354,-84,-65,0,0,0.0750773 -3384,5608:353,-83,-65,0,0,0.0750915 -3385,5608:352,-82,-65,0,0,0.0750915 -3386,5608:351,-81,-65,0,0,0.0750987 -3387,5608:350,-80,-65,0,0,0.0750987 -3388,5607:459,-79,-65,0,0,0.0750987 -3389,5607:458,-78,-65,0,0,0.0750915 -3390,5607:457,-77,-65,0,0,0.0751344 -3391,5607:456,-76,-65,0,0,0.0752129 -3392,5607:455,-75,-65,0,0,0.07527 -3393,5607:354,-74,-65,0,0,0.0753417 -3394,5607:353,-73,-65,0,0,0.0754133 -3395,5607:352,-72,-65,0,0,0.0755567 -3396,5607:351,-71,-65,0,0,0.075758 -3397,5607:350,-70,-65,0,0,0.0756572 -3398,5606:459,-69,-65,0,0,0.0756645 -3399,5606:458,-68,-65,0,0,0.0764949 -3400,5606:350,-60,-65,0,0,0.0753058 -3401,5605:459,-59,-65,0,0,0.0752201 -3402,5605:458,-58,-65,0,0,0.0750488 -3403,5605:457,-57,-65,0,0,0.0750273 -3404,5605:456,-56,-65,0,0,0.0750345 -3405,5605:455,-55,-65,0,0,0.0750416 -3406,5605:354,-54,-65,0,0,0.0750416 -3407,5605:353,-53,-65,0,0,0.0750273 -3408,5605:352,-52,-65,0,0,0.075006 -3409,5605:351,-51,-65,0,0,0.0749916 -3410,5605:350,-50,-65,0,0,0.0749916 -3411,5604:459,-49,-65,0,0,0.0749916 -3412,5604:458,-48,-65,0,0,0.0749846 -3413,5604:457,-47,-65,0,0,0.0749846 -3414,5604:456,-46,-65,0,0,0.0749846 -3415,5604:455,-45,-65,0,0,0.0749775 -3416,5604:354,-44,-65,0,0,0.0749775 -3417,5604:353,-43,-65,0,0,0.0749775 -3418,5604:352,-42,-65,0,0,0.0749631 -3419,5604:351,-41,-65,0,0,0.0749562 -3420,5604:350,-40,-65,0,0,0.0749562 -3421,5603:459,-39,-65,0,0,0.0749562 -3422,5603:458,-38,-65,0,0,0.0749562 -3423,5603:457,-37,-65,0,0,0.0749562 -3424,5603:456,-36,-65,0,0,0.0749631 -3425,5603:455,-35,-65,0,0,0.0749631 -3426,5603:354,-34,-65,0,0,0.0749631 -3427,5603:353,-33,-65,0,0,0.0749631 -3428,5603:352,-32,-65,0,0,0.0749562 -3429,5603:351,-31,-65,0,0,0.074949 -3430,5603:350,-30,-65,0,0,0.074949 -3431,5602:459,-29,-65,0,0,0.0749418 -3432,5602:458,-28,-65,0,0,0.0749418 -3433,5602:457,-27,-65,0,0,0.0749418 -3434,5602:456,-26,-65,0,0,0.0749418 -3435,5602:455,-25,-65,0,0,0.0749418 -3436,5602:354,-24,-65,0,0,0.0749346 -3437,5602:353,-23,-65,0,0,0.0749275 -3438,5602:352,-22,-65,0,0,0.0749205 -3439,5602:351,-21,-65,0,0,0.0749205 -3440,5602:350,-20,-65,0,0,0.0749205 -3441,5601:459,-19,-65,0,0,0.0749205 -3442,5601:458,-18,-65,0,0,0.0749205 -3443,5601:457,-17,-65,0,0,0.0749275 -3444,5601:456,-16,-65,0,0,0.0749275 -3445,5601:455,-15,-65,0,0,0.0749275 -3446,5601:354,-14,-65,0,0,0.0749275 -3447,5601:353,-13,-65,0,0,0.0749275 -3448,5601:352,-12,-65,0,0,0.0749205 -3449,5601:351,-11,-65,0,0,0.074899 -3450,5601:350,-10,-65,0,0,0.0748705 -3451,5600:459,-9,-65,0,0,0.0748777 -3452,5600:458,-8,-65,0,0,0.0748849 -3453,5600:457,-7,-65,0,0,0.074899 -3454,5600:456,-6,-65,0,0,0.0749205 -3455,5600:455,-5,-65,0,0,0.0749275 -3456,5600:354,-4,-65,0,0,0.0749275 -3457,5600:353,-3,-65,0,0,0.0749062 -3458,5600:352,-2,-65,0,0,0.0748705 -3459,5600:351,-1,-65,0,0,0.0748777 -3460,3600:351,0,-65,0,0,0.0748849 -3461,3600:351,1,-65,0,0,0.074899 -3462,3600:352,2,-65,0,0,0.0749275 -3463,3600:353,3,-65,0,0,0.074892 -3464,3600:354,4,-65,0,0,0.0748705 -3465,3600:455,5,-65,0,0,0.0748493 -3466,3600:456,6,-65,0,0,0.0748421 -3467,3600:457,7,-65,0,0,0.0748349 -3468,3600:458,8,-65,0,0,0.0748564 -3469,3600:459,9,-65,0,0,0.0749062 -3470,3601:350,10,-65,0,0,0.0749418 -3471,3601:351,11,-65,0,0,0.075006 -3472,3601:352,12,-65,0,0,0.0749846 -3473,3601:353,13,-65,0,0,0.0750131 -3474,3601:354,14,-65,0,0,0.0750201 -3475,3601:455,15,-65,0,0,0.0749846 -3476,3601:456,16,-65,0,0,0.0749775 -3477,3601:457,17,-65,0,0,0.0749846 -3478,3601:458,18,-65,0,0,0.0749418 -3479,3601:459,19,-65,0,0,0.074949 -3480,3602:350,20,-65,0,0,0.0749418 -3481,3602:351,21,-65,0,0,0.074949 -3482,3602:352,22,-65,0,0,0.074949 -3483,3602:353,23,-65,0,0,0.0749346 -3484,3602:354,24,-65,0,0,0.0749346 -3485,3602:455,25,-65,0,0,0.0749418 -3486,3602:456,26,-65,0,0,0.0749703 -3487,3602:457,27,-65,0,0,0.0749631 -3488,3602:458,28,-65,0,0,0.0749562 -3489,3602:459,29,-65,0,0,0.0749562 -3490,3603:350,30,-65,0,0,0.0749631 -3491,3603:351,31,-65,0,0,0.0749631 -3492,3603:352,32,-65,0,0,0.0750345 -3493,3603:353,33,-65,0,0,0.0773998 -3494,3603:455,35,-65,0,0,0.0754275 -3495,3603:456,36,-65,0,0,0.0754061 -3496,3603:457,37,-65,0,0,0.0750702 -3497,3603:458,38,-65,0,0,0.0750558 -3498,3603:459,39,-65,0,0,0.0751701 -3499,3604:350,40,-65,0,0,0.07512 -3500,3607:352,72,-65,0,0,0.0854231 -3501,3607:354,74,-65,0,0,0.0807361 -3502,3607:455,75,-65,0,0,0.0816328 -3503,3607:456,76,-65,0,0,0.082554 -3504,3607:457,77,-65,0,0,0.0845044 -3505,3607:458,78,-65,0,0,0.0881094 -3506,3615:456,156,-65,0,0,0.0768221 -3507,3615:457,157,-65,0,0,0.0751486 -3508,3615:458,158,-65,0,0,0.0751128 -3509,3615:459,159,-65,0,0,0.0750558 -3510,3616:350,160,-65,0,0,0.0750558 -3511,3616:351,161,-65,0,0,0.0750488 -3512,3616:352,162,-65,0,0,0.075063 -3513,3616:353,163,-65,0,0,0.0750702 -3514,3616:354,164,-65,0,0,0.0750702 -3515,3616:455,165,-65,0,0,0.075063 -3516,3616:456,166,-65,0,0,0.075063 -3517,3616:457,167,-65,0,0,0.075063 -3518,3616:458,168,-65,0,0,0.0750558 -3519,3616:459,169,-65,0,0,0.0750558 -3520,3617:350,170,-65,0,0,0.0750416 -3521,3617:351,171,-65,0,0,0.0750201 -3522,3617:352,172,-65,0,0,0.075006 -3523,3617:353,173,-65,0,0,0.0749988 -3524,3617:354,174,-65,0,0,0.0749846 -3525,3617:455,175,-65,0,0,0.0749846 -3526,3617:456,176,-65,0,0,0.0749916 -3527,3617:457,177,-65,0,0,0.075006 -3528,3617:458,178,-65,0,0,0.0750345 -3529,3617:459,179,-65,0,0,0.0750416 -3530,3618:350,180,-65,0,0,0.0750488 -3531,5618:140,-180,-64,0,0,0.0750558 -3532,5617:249,-179,-64,0,0,0.075063 -3533,5617:248,-178,-64,0,0,0.075063 -3534,5617:247,-177,-64,0,0,0.0750702 -3535,5617:246,-176,-64,0,0,0.0750702 -3536,5617:245,-175,-64,0,0,0.0750843 -3537,5617:144,-174,-64,0,0,0.0750773 -3538,5617:143,-173,-64,0,0,0.075063 -3539,5617:142,-172,-64,0,0,0.0750558 -3540,5617:141,-171,-64,0,0,0.0750488 -3541,5617:140,-170,-64,0,0,0.0750416 -3542,5616:249,-169,-64,0,0,0.0750273 -3543,5616:248,-168,-64,0,0,0.0750201 -3544,5616:247,-167,-64,0,0,0.0750131 -3545,5616:246,-166,-64,0,0,0.0749916 -3546,5616:245,-165,-64,0,0,0.0749846 -3547,5616:144,-164,-64,0,0,0.0749916 -3548,5616:143,-163,-64,0,0,0.0749988 -3549,5616:142,-162,-64,0,0,0.0750131 -3550,5616:141,-161,-64,0,0,0.0750345 -3551,5616:140,-160,-64,0,0,0.0750488 -3552,5615:249,-159,-64,0,0,0.0750558 -3553,5615:248,-158,-64,0,0,0.0750702 -3554,5615:247,-157,-64,0,0,0.0750843 -3555,5615:246,-156,-64,0,0,0.0750915 -3556,5615:245,-155,-64,0,0,0.0751059 -3557,5615:144,-154,-64,0,0,0.0751272 -3558,5615:143,-153,-64,0,0,0.0751416 -3559,5615:142,-152,-64,0,0,0.0751416 -3560,5615:141,-151,-64,0,0,0.075163 -3561,5615:140,-150,-64,0,0,0.0751558 -3562,5614:249,-149,-64,0,0,0.075163 -3563,5614:248,-148,-64,0,0,0.0751843 -3564,5614:247,-147,-64,0,0,0.0751771 -3565,5614:246,-146,-64,0,0,0.0751701 -3566,5614:245,-145,-64,0,0,0.0751701 -3567,5614:144,-144,-64,0,0,0.0751843 -3568,5614:143,-143,-64,0,0,0.0751843 -3569,5614:142,-142,-64,0,0,0.0751987 -3570,5614:141,-141,-64,0,0,0.0752415 -3571,5614:140,-140,-64,0,0,0.0751915 -3572,5613:249,-139,-64,0,0,0.0751701 -3573,5613:248,-138,-64,0,0,0.0753631 -3574,5613:247,-137,-64,0,0,0.0755926 -3575,5613:246,-136,-64,0,0,0.0752129 -3576,5613:245,-135,-64,0,0,0.0751987 -3577,5613:144,-134,-64,0,0,0.0754921 -3578,5613:143,-133,-64,0,0,0.0794943 -3579,5613:142,-132,-64,0,0,0.0803252 -3580,5613:141,-131,-64,0,0,0.0802569 -3581,5613:140,-130,-64,0,0,0.0779445 -3582,5612:249,-129,-64,0,0,0.0764659 -3583,5612:248,-128,-64,0,0,0.0764876 -3584,5612:247,-127,-64,0,0,0.0767929 -3585,5612:246,-126,-64,0,0,0.0769754 -3586,5612:245,-125,-64,0,0,0.0771799 -3587,5612:144,-124,-64,0,0,0.0778337 -3588,5612:143,-123,-64,0,0,0.0788203 -3589,5612:142,-122,-64,0,0,0.0782551 -3590,5612:141,-121,-64,0,0,0.0778042 -3591,5612:140,-120,-64,0,0,0.0768441 -3592,5611:249,-119,-64,0,0,0.076039 -3593,5611:248,-118,-64,0,0,0.0764006 -3594,5611:247,-117,-64,0,0,0.0788427 -3595,5611:246,-116,-64,0,0,0.0801433 -3596,5611:245,-115,-64,0,0,0.0808276 -3597,5611:144,-114,-64,0,0,0.0804162 -3598,5611:143,-113,-64,0,0,0.079577 -3599,5611:142,-112,-64,0,0,0.0799542 -3600,5611:141,-111,-64,0,0,0.0798408 -3601,5611:140,-110,-64,0,0,0.0809957 -3602,5610:249,-109,-64,0,0,0.080614 -3603,5610:248,-108,-64,0,0,0.0809957 -3604,5610:247,-107,-64,0,0,0.0796673 -3605,5610:246,-106,-64,0,0,0.0766765 -3606,5610:245,-105,-64,0,0,0.075837 -3607,5610:144,-104,-64,0,0,0.0759162 -3608,5610:143,-103,-64,0,0,0.0756932 -3609,5610:142,-102,-64,0,0,0.0750702 -3610,5610:141,-101,-64,0,0,0.0754993 -3611,5610:140,-100,-64,0,0,0.0777307 -3612,5609:249,-99,-64,0,0,0.0784405 -3613,5609:248,-98,-64,0,0,0.0770117 -3614,5609:247,-97,-64,0,0,0.0758225 -3615,5609:246,-96,-64,0,0,0.0751771 -3616,5609:245,-95,-64,0,0,0.0750273 -3617,5609:144,-94,-64,0,0,0.0750488 -3618,5609:143,-93,-64,0,0,0.0750987 -3619,5609:142,-92,-64,0,0,0.0750273 -3620,5609:141,-91,-64,0,0,0.0749775 -3621,5609:140,-90,-64,0,0,0.0749916 -3622,5608:249,-89,-64,0,0,0.0749916 -3623,5608:248,-88,-64,0,0,0.0750131 -3624,5608:247,-87,-64,0,0,0.0750273 -3625,5608:246,-86,-64,0,0,0.0750416 -3626,5608:245,-85,-64,0,0,0.075063 -3627,5608:144,-84,-64,0,0,0.075063 -3628,5608:143,-83,-64,0,0,0.0750702 -3629,5608:142,-82,-64,0,0,0.0750773 -3630,5608:141,-81,-64,0,0,0.0750843 -3631,5608:140,-80,-64,0,0,0.0750915 -3632,5607:249,-79,-64,0,0,0.0750843 -3633,5607:248,-78,-64,0,0,0.0750843 -3634,5607:247,-77,-64,0,0,0.0750987 -3635,5607:246,-76,-64,0,0,0.0751059 -3636,5607:245,-75,-64,0,0,0.075163 -3637,5607:144,-74,-64,0,0,0.0752559 -3638,5607:143,-73,-64,0,0,0.0753631 -3639,5607:142,-72,-64,0,0,0.0754921 -3640,5607:141,-71,-64,0,0,0.0755494 -3641,5607:140,-70,-64,0,0,0.0756787 -3642,5606:249,-69,-64,0,0,0.0768294 -3643,5606:248,-68,-64,0,0,0.0776644 -3644,5605:249,-59,-64,0,0,0.0753489 -3645,5605:248,-58,-64,0,0,0.0751128 -3646,5605:247,-57,-64,0,0,0.0750345 -3647,5605:246,-56,-64,0,0,0.0750345 -3648,5605:245,-55,-64,0,0,0.0750488 -3649,5605:144,-54,-64,0,0,0.0750416 -3650,5605:143,-53,-64,0,0,0.0750273 -3651,5605:142,-52,-64,0,0,0.0749988 -3652,5605:141,-51,-64,0,0,0.0749916 -3653,5605:140,-50,-64,0,0,0.0749916 -3654,5604:249,-49,-64,0,0,0.0749916 -3655,5604:248,-48,-64,0,0,0.0749846 -3656,5604:247,-47,-64,0,0,0.0749846 -3657,5604:246,-46,-64,0,0,0.0749846 -3658,5604:245,-45,-64,0,0,0.0749846 -3659,5604:144,-44,-64,0,0,0.0749775 -3660,5604:143,-43,-64,0,0,0.0749703 -3661,5604:142,-42,-64,0,0,0.0749631 -3662,5604:141,-41,-64,0,0,0.0749631 -3663,5604:140,-40,-64,0,0,0.0749631 -3664,5603:249,-39,-64,0,0,0.0749631 -3665,5603:248,-38,-64,0,0,0.0749631 -3666,5603:247,-37,-64,0,0,0.0749631 -3667,5603:246,-36,-64,0,0,0.0749631 -3668,5603:245,-35,-64,0,0,0.0749631 -3669,5603:144,-34,-64,0,0,0.0749631 -3670,5603:143,-33,-64,0,0,0.0749631 -3671,5603:142,-32,-64,0,0,0.0749562 -3672,5603:141,-31,-64,0,0,0.0749562 -3673,5603:140,-30,-64,0,0,0.074949 -3674,5602:249,-29,-64,0,0,0.0749562 -3675,5602:248,-28,-64,0,0,0.0749562 -3676,5602:247,-27,-64,0,0,0.0749562 -3677,5602:246,-26,-64,0,0,0.0749562 -3678,5602:245,-25,-64,0,0,0.074949 -3679,5602:144,-24,-64,0,0,0.074949 -3680,5602:143,-23,-64,0,0,0.0749418 -3681,5602:142,-22,-64,0,0,0.0749275 -3682,5602:141,-21,-64,0,0,0.0749275 -3683,5602:140,-20,-64,0,0,0.0749205 -3684,5601:249,-19,-64,0,0,0.0749133 -3685,5601:248,-18,-64,0,0,0.0749062 -3686,5601:247,-17,-64,0,0,0.0749062 -3687,5601:246,-16,-64,0,0,0.0749062 -3688,5601:245,-15,-64,0,0,0.0749062 -3689,5601:144,-14,-64,0,0,0.0749133 -3690,5601:143,-13,-64,0,0,0.0749133 -3691,5601:142,-12,-64,0,0,0.0749062 -3692,5601:141,-11,-64,0,0,0.074892 -3693,5601:140,-10,-64,0,0,0.0748636 -3694,5600:249,-9,-64,0,0,0.0748493 -3695,5600:248,-8,-64,0,0,0.0748564 -3696,5600:247,-7,-64,0,0,0.0748777 -3697,5600:246,-6,-64,0,0,0.0748705 -3698,5600:245,-5,-64,0,0,0.0748636 -3699,5600:144,-4,-64,0,0,0.0748849 -3700,5600:143,-3,-64,0,0,0.0748849 -3701,5600:142,-2,-64,0,0,0.0748636 -3702,5600:141,-1,-64,0,0,0.074828 -3703,3600:141,0,-64,0,0,0.0748137 -3704,3600:141,1,-64,0,0,0.0748137 -3705,3600:142,2,-64,0,0,0.0748349 -3706,3600:143,3,-64,0,0,0.0748777 -3707,3600:144,4,-64,0,0,0.0748849 -3708,3600:245,5,-64,0,0,0.0748636 -3709,3600:246,6,-64,0,0,0.0748493 -3710,3600:247,7,-64,0,0,0.0748349 -3711,3600:248,8,-64,0,0,0.0748208 -3712,3600:249,9,-64,0,0,0.0748636 -3713,3601:140,10,-64,0,0,0.0749062 -3714,3601:141,11,-64,0,0,0.074949 -3715,3601:142,12,-64,0,0,0.075006 -3716,3601:143,13,-64,0,0,0.0749846 -3717,3601:144,14,-64,0,0,0.0749703 -3718,3601:245,15,-64,0,0,0.0749418 -3719,3601:246,16,-64,0,0,0.0749562 -3720,3601:247,17,-64,0,0,0.0749631 -3721,3601:248,18,-64,0,0,0.074949 -3722,3601:249,19,-64,0,0,0.0749562 -3723,3602:140,20,-64,0,0,0.0749562 -3724,3602:141,21,-64,0,0,0.0749418 -3725,3602:142,22,-64,0,0,0.0749205 -3726,3602:143,23,-64,0,0,0.074899 -3727,3602:144,24,-64,0,0,0.0749062 -3728,3602:245,25,-64,0,0,0.0749133 -3729,3602:246,26,-64,0,0,0.0749346 -3730,3602:247,27,-64,0,0,0.0749346 -3731,3602:248,28,-64,0,0,0.074949 -3732,3602:249,29,-64,0,0,0.0749631 -3733,3603:140,30,-64,0,0,0.0749703 -3734,3603:141,31,-64,0,0,0.0749703 -3735,3603:142,32,-64,0,0,0.0750273 -3736,3603:143,33,-64,0,0,0.0751344 -3737,3603:144,34,-64,0,0,0.07512 -3738,3603:245,35,-64,0,0,0.0750702 -3739,3603:246,36,-64,0,0,0.0750702 -3740,3603:247,37,-64,0,0,0.0750702 -3741,3603:248,38,-64,0,0,0.075063 -3742,3603:249,39,-64,0,0,0.0750773 -3743,3604:140,40,-64,0,0,0.0750488 -3744,3604:141,41,-64,0,0,0.075063 -3745,3604:142,42,-64,0,0,0.0750915 -3746,3607:140,70,-64,0,0,0.0826319 -3747,3607:141,71,-64,0,0,0.07969 -3748,3607:142,72,-64,0,0,0.0793591 -3749,3607:144,74,-64,0,0,0.0794792 -3750,3607:245,75,-64,0,0,0.0795694 -3751,3607:246,76,-64,0,0,0.079871 -3752,3607:247,77,-64,0,0,0.0808427 -3753,3607:248,78,-64,0,0,0.0858415 -3754,3607:249,79,-64,0,0,0.091212 -3755,3614:249,149,-64,0,0,0.0833198 -3756,3615:140,150,-64,0,0,0.0818642 -3757,3615:141,151,-64,0,0,0.0815327 -3758,3615:142,152,-64,0,0,0.0800599 -3759,3615:143,153,-64,0,0,0.0774806 -3760,3615:144,154,-64,0,0,0.0758658 -3761,3615:245,155,-64,0,0,0.0755135 -3762,3615:246,156,-64,0,0,0.075063 -3763,3615:247,157,-64,0,0,0.0750773 -3764,3615:248,158,-64,0,0,0.0750702 -3765,3615:249,159,-64,0,0,0.0750488 -3766,3616:140,160,-64,0,0,0.0750273 -3767,3616:141,161,-64,0,0,0.0750273 -3768,3616:142,162,-64,0,0,0.0750131 -3769,3616:143,163,-64,0,0,0.0750345 -3770,3616:144,164,-64,0,0,0.075063 -3771,3616:245,165,-64,0,0,0.0750416 -3772,3616:246,166,-64,0,0,0.0750488 -3773,3616:247,167,-64,0,0,0.0750488 -3774,3616:248,168,-64,0,0,0.0750416 -3775,3616:249,169,-64,0,0,0.0750416 -3776,3617:140,170,-64,0,0,0.0750345 -3777,3617:141,171,-64,0,0,0.0750273 -3778,3617:142,172,-64,0,0,0.0750131 -3779,3617:143,173,-64,0,0,0.075006 -3780,3617:144,174,-64,0,0,0.0749988 -3781,3617:245,175,-64,0,0,0.0750131 -3782,3617:246,176,-64,0,0,0.0750201 -3783,3617:247,177,-64,0,0,0.0750273 -3784,3617:248,178,-64,0,0,0.0750345 -3785,3617:249,179,-64,0,0,0.0750488 -3786,3618:140,180,-64,0,0,0.0750558 -3787,5618:130,-180,-63,0,0,0.0750558 -3788,5617:239,-179,-63,0,0,0.075063 -3789,5617:238,-178,-63,0,0,0.075063 -3790,5617:237,-177,-63,0,0,0.075063 -3791,5617:236,-176,-63,0,0,0.0750915 -3792,5617:235,-175,-63,0,0,0.0751128 -3793,5617:134,-174,-63,0,0,0.0750843 -3794,5617:133,-173,-63,0,0,0.075063 -3795,5617:132,-172,-63,0,0,0.0750558 -3796,5617:131,-171,-63,0,0,0.0750416 -3797,5617:130,-170,-63,0,0,0.0750416 -3798,5616:239,-169,-63,0,0,0.0750345 -3799,5616:238,-168,-63,0,0,0.0750273 -3800,5616:237,-167,-63,0,0,0.0750201 -3801,5616:236,-166,-63,0,0,0.075006 -3802,5616:235,-165,-63,0,0,0.0749988 -3803,5616:134,-164,-63,0,0,0.075006 -3804,5616:133,-163,-63,0,0,0.0750201 -3805,5616:132,-162,-63,0,0,0.0750345 -3806,5616:131,-161,-63,0,0,0.0750488 -3807,5616:130,-160,-63,0,0,0.075063 -3808,5615:239,-159,-63,0,0,0.0750702 -3809,5615:238,-158,-63,0,0,0.0750773 -3810,5615:237,-157,-63,0,0,0.0750843 -3811,5615:236,-156,-63,0,0,0.0750915 -3812,5615:235,-155,-63,0,0,0.0751059 -3813,5615:134,-154,-63,0,0,0.07512 -3814,5615:133,-153,-63,0,0,0.0751416 -3815,5615:132,-152,-63,0,0,0.0751558 -3816,5615:131,-151,-63,0,0,0.075163 -3817,5615:130,-150,-63,0,0,0.0751701 -3818,5614:239,-149,-63,0,0,0.075163 -3819,5614:238,-148,-63,0,0,0.0751771 -3820,5614:237,-147,-63,0,0,0.0751771 -3821,5614:236,-146,-63,0,0,0.0752057 -3822,5614:235,-145,-63,0,0,0.0752201 -3823,5614:134,-144,-63,0,0,0.0751915 -3824,5614:133,-143,-63,0,0,0.0752415 -3825,5614:132,-142,-63,0,0,0.0754779 -3826,5614:131,-141,-63,0,0,0.0773559 -3827,5614:130,-140,-63,0,0,0.0762918 -3828,5613:239,-139,-63,0,0,0.0759956 -3829,5613:238,-138,-63,0,0,0.076234 -3830,5613:237,-137,-63,0,0,0.0762918 -3831,5613:236,-136,-63,0,0,0.0760245 -3832,5613:235,-135,-63,0,0,0.0758443 -3833,5613:134,-134,-63,0,0,0.0752844 -3834,5613:133,-133,-63,0,0,0.0756213 -3835,5613:132,-132,-63,0,0,0.0794792 -3836,5613:131,-131,-63,0,0,0.0815017 -3837,5613:130,-130,-63,0,0,0.0837208 -3838,5612:239,-129,-63,0,0,0.0777084 -3839,5612:238,-128,-63,0,0,0.0780552 -3840,5612:237,-127,-63,0,0,0.0810952 -3841,5612:236,-126,-63,0,0,0.0799164 -3842,5612:235,-125,-63,0,0,0.0789621 -3843,5612:134,-124,-63,0,0,0.0798256 -3844,5612:133,-123,-63,0,0,0.0796599 -3845,5612:132,-122,-63,0,0,0.0788427 -3846,5612:131,-121,-63,0,0,0.0789472 -3847,5612:130,-120,-63,0,0,0.0788351 -3848,5611:239,-119,-63,0,0,0.0790816 -3849,5611:238,-118,-63,0,0,0.0799314 -3850,5611:237,-117,-63,0,0,0.0799088 -3851,5611:236,-116,-63,0,0,0.0799542 -3852,5611:235,-115,-63,0,0,0.0807589 -3853,5611:134,-114,-63,0,0,0.0820496 -3854,5611:133,-113,-63,0,0,0.0816636 -3855,5611:132,-112,-63,0,0,0.0810415 -3856,5611:131,-111,-63,0,0,0.0808048 -3857,5611:130,-110,-63,0,0,0.081302 -3858,5610:239,-109,-63,0,0,0.0811258 -3859,5610:238,-108,-63,0,0,0.081571 -3860,5610:237,-107,-63,0,0,0.0825851 -3861,5610:236,-106,-63,0,0,0.0837367 -3862,5610:235,-105,-63,0,0,0.0824918 -3863,5610:134,-104,-63,0,0,0.082819 -3864,5610:133,-103,-63,0,0,0.0817175 -3865,5610:132,-102,-63,0,0,0.0810569 -3866,5610:131,-101,-63,0,0,0.0793366 -3867,5610:130,-100,-63,0,0,0.0780405 -3868,5609:239,-99,-63,0,0,0.077532 -3869,5609:238,-98,-63,0,0,0.0752129 -3870,5609:237,-97,-63,0,0,0.0750987 -3871,5609:236,-96,-63,0,0,0.0750987 -3872,5609:235,-95,-63,0,0,0.0750416 -3873,5609:134,-94,-63,0,0,0.0750915 -3874,5609:133,-93,-63,0,0,0.0752631 -3875,5609:132,-92,-63,0,0,0.0753272 -3876,5609:131,-91,-63,0,0,0.0751272 -3877,5609:130,-90,-63,0,0,0.075006 -3878,5608:239,-89,-63,0,0,0.0750345 -3879,5608:238,-88,-63,0,0,0.0750131 -3880,5608:237,-87,-63,0,0,0.0750131 -3881,5608:236,-86,-63,0,0,0.0750345 -3882,5608:235,-85,-63,0,0,0.0750345 -3883,5608:134,-84,-63,0,0,0.0750488 -3884,5608:133,-83,-63,0,0,0.0750558 -3885,5608:132,-82,-63,0,0,0.0750915 -3886,5608:131,-81,-63,0,0,0.0750843 -3887,5608:130,-80,-63,0,0,0.0750702 -3888,5607:239,-79,-63,0,0,0.075063 -3889,5607:238,-78,-63,0,0,0.0750702 -3890,5607:237,-77,-63,0,0,0.075063 -3891,5607:236,-76,-63,0,0,0.0750702 -3892,5607:235,-75,-63,0,0,0.0750558 -3893,5607:134,-74,-63,0,0,0.075313 -3894,5607:133,-73,-63,0,0,0.075442 -3895,5607:132,-72,-63,0,0,0.0756141 -3896,5607:131,-71,-63,0,0,0.0761834 -3897,5607:130,-70,-63,0,0,0.076713 -3898,5606:238,-68,-63,0,0,0.0829126 -3899,5606:130,-60,-63,0,0,0.0759523 -3900,5605:239,-59,-63,0,0,0.0754275 -3901,5605:238,-58,-63,0,0,0.0751344 -3902,5605:237,-57,-63,0,0,0.0750416 -3903,5605:236,-56,-63,0,0,0.0750345 -3904,5605:235,-55,-63,0,0,0.0750416 -3905,5605:134,-54,-63,0,0,0.0750416 -3906,5605:133,-53,-63,0,0,0.0750201 -3907,5605:132,-52,-63,0,0,0.0749988 -3908,5605:131,-51,-63,0,0,0.0749988 -3909,5605:130,-50,-63,0,0,0.0749916 -3910,5604:239,-49,-63,0,0,0.0749916 -3911,5604:238,-48,-63,0,0,0.0749846 -3912,5604:237,-47,-63,0,0,0.0749775 -3913,5604:236,-46,-63,0,0,0.0749775 -3914,5604:235,-45,-63,0,0,0.0749775 -3915,5604:134,-44,-63,0,0,0.0749775 -3916,5604:133,-43,-63,0,0,0.0749703 -3917,5604:132,-42,-63,0,0,0.0749703 -3918,5604:131,-41,-63,0,0,0.0749703 -3919,5604:130,-40,-63,0,0,0.0749703 -3920,5603:239,-39,-63,0,0,0.0749703 -3921,5603:238,-38,-63,0,0,0.0749631 -3922,5603:237,-37,-63,0,0,0.0749631 -3923,5603:236,-36,-63,0,0,0.0749631 -3924,5603:235,-35,-63,0,0,0.0749631 -3925,5603:134,-34,-63,0,0,0.0749631 -3926,5603:133,-33,-63,0,0,0.0749562 -3927,5603:132,-32,-63,0,0,0.0749562 -3928,5603:131,-31,-63,0,0,0.0749562 -3929,5603:130,-30,-63,0,0,0.0749631 -3930,5602:239,-29,-63,0,0,0.0749631 -3931,5602:238,-28,-63,0,0,0.0749631 -3932,5602:237,-27,-63,0,0,0.0749631 -3933,5602:236,-26,-63,0,0,0.0749631 -3934,5602:235,-25,-63,0,0,0.0749562 -3935,5602:134,-24,-63,0,0,0.0749562 -3936,5602:133,-23,-63,0,0,0.074949 -3937,5602:132,-22,-63,0,0,0.0749418 -3938,5602:131,-21,-63,0,0,0.0749346 -3939,5602:130,-20,-63,0,0,0.0749275 -3940,5601:239,-19,-63,0,0,0.0749205 -3941,5601:238,-18,-63,0,0,0.0749062 -3942,5601:237,-17,-63,0,0,0.074899 -3943,5601:236,-16,-63,0,0,0.074892 -3944,5601:235,-15,-63,0,0,0.0748849 -3945,5601:134,-14,-63,0,0,0.074892 -3946,5601:133,-13,-63,0,0,0.074892 -3947,5601:132,-12,-63,0,0,0.0748849 -3948,5601:131,-11,-63,0,0,0.0748777 -3949,5601:130,-10,-63,0,0,0.0748705 -3950,5600:239,-9,-63,0,0,0.0748705 -3951,5600:238,-8,-63,0,0,0.0748636 -3952,5600:237,-7,-63,0,0,0.0748564 -3953,5600:236,-6,-63,0,0,0.0748493 -3954,5600:235,-5,-63,0,0,0.0748349 -3955,5600:134,-4,-63,0,0,0.074828 -3956,5600:133,-3,-63,0,0,0.0748137 -3957,5600:132,-2,-63,0,0,0.0748137 -3958,5600:131,-1,-63,0,0,0.074828 -3959,3600:131,0,-63,0,0,0.0748349 -3960,3600:131,1,-63,0,0,0.0748705 -3961,3600:132,2,-63,0,0,0.0748349 -3962,3600:133,3,-63,0,0,0.0748208 -3963,3600:134,4,-63,0,0,0.0748208 -3964,3600:235,5,-63,0,0,0.074828 -3965,3600:236,6,-63,0,0,0.074828 -3966,3600:237,7,-63,0,0,0.0748564 -3967,3600:238,8,-63,0,0,0.0748493 -3968,3600:239,9,-63,0,0,0.0748564 -3969,3601:130,10,-63,0,0,0.074899 -3970,3601:131,11,-63,0,0,0.0749275 -3971,3601:132,12,-63,0,0,0.074949 -3972,3601:133,13,-63,0,0,0.0749562 -3973,3601:134,14,-63,0,0,0.0749631 -3974,3601:235,15,-63,0,0,0.0749418 -3975,3601:236,16,-63,0,0,0.0749418 -3976,3601:237,17,-63,0,0,0.0749346 -3977,3601:238,18,-63,0,0,0.0749133 -3978,3601:239,19,-63,0,0,0.0749275 -3979,3602:130,20,-63,0,0,0.0749205 -3980,3602:131,21,-63,0,0,0.0749133 -3981,3602:132,22,-63,0,0,0.0749133 -3982,3602:133,23,-63,0,0,0.0749205 -3983,3602:134,24,-63,0,0,0.0749205 -3984,3602:235,25,-63,0,0,0.0749205 -3985,3602:236,26,-63,0,0,0.0749275 -3986,3602:237,27,-63,0,0,0.0749275 -3987,3602:238,28,-63,0,0,0.0749346 -3988,3602:239,29,-63,0,0,0.0749562 -3989,3603:130,30,-63,0,0,0.0749562 -3990,3603:131,31,-63,0,0,0.0749775 -3991,3603:132,32,-63,0,0,0.0749916 -3992,3603:133,33,-63,0,0,0.0750345 -3993,3603:134,34,-63,0,0,0.0750345 -3994,3603:235,35,-63,0,0,0.0750416 -3995,3603:236,36,-63,0,0,0.0750702 -3996,3603:237,37,-63,0,0,0.0750488 -3997,3603:238,38,-63,0,0,0.0750345 -3998,3603:239,39,-63,0,0,0.0750345 -3999,3604:130,40,-63,0,0,0.0750416 -4000,3604:131,41,-63,0,0,0.0750558 -4001,3604:132,42,-63,0,0,0.0750558 -4002,3604:133,43,-63,0,0,0.0750488 -4003,3604:134,44,-63,0,0,0.0750558 -4004,3604:235,45,-63,0,0,0.0750201 -4005,3604:236,46,-63,0,0,0.0747568 -4006,3604:238,48,-63,0,0,0.0815402 -4007,3606:235,65,-63,0,0,0.0795694 -4008,3606:236,66,-63,0,0,0.0792915 -4009,3606:237,67,-63,0,0,0.0787159 -4010,3606:238,68,-63,0,0,0.0776718 -4011,3606:239,69,-63,0,0,0.0785446 -4012,3607:130,70,-63,0,0,0.07751 -4013,3607:131,71,-63,0,0,0.0774658 -4014,3607:132,72,-63,0,0,0.0777307 -4015,3607:134,74,-63,0,0,0.0773852 -4016,3607:235,75,-63,0,0,0.0774584 -4017,3607:236,76,-63,0,0,0.0788276 -4018,3607:237,77,-63,0,0,0.0794342 -4019,3607:238,78,-63,0,0,0.081302 -4020,3607:239,79,-63,0,0,0.0837367 -4021,3608:130,80,-63,0,0,0.0864804 -4022,3608:131,81,-63,0,0,0.0908889 -4023,3614:236,146,-63,0,0,0.0848948 -4024,3614:237,147,-63,0,0,0.0829987 -4025,3614:238,148,-63,0,0,0.0812406 -4026,3614:239,149,-63,0,0,0.0810415 -4027,3615:130,150,-63,0,0,0.0785893 -4028,3615:131,151,-63,0,0,0.0766257 -4029,3615:132,152,-63,0,0,0.0750843 -4030,3615:133,153,-63,0,0,0.0750987 -4031,3615:134,154,-63,0,0,0.0750987 -4032,3615:235,155,-63,0,0,0.0750843 -4033,3615:236,156,-63,0,0,0.0750987 -4034,3615:237,157,-63,0,0,0.0750843 -4035,3615:238,158,-63,0,0,0.0750273 -4036,3615:239,159,-63,0,0,0.0749988 -4037,3616:130,160,-63,0,0,0.075006 -4038,3616:131,161,-63,0,0,0.0750131 -4039,3616:132,162,-63,0,0,0.0750201 -4040,3616:133,163,-63,0,0,0.0750201 -4041,3616:134,164,-63,0,0,0.0749346 -4042,3616:235,165,-63,0,0,0.0751843 -4043,3616:236,166,-63,0,0,0.0750416 -4044,3616:237,167,-63,0,0,0.0750345 -4045,3616:238,168,-63,0,0,0.0750345 -4046,3616:239,169,-63,0,0,0.0750345 -4047,3617:130,170,-63,0,0,0.0750273 -4048,3617:131,171,-63,0,0,0.0750273 -4049,3617:132,172,-63,0,0,0.0750273 -4050,3617:133,173,-63,0,0,0.0750273 -4051,3617:134,174,-63,0,0,0.0750201 -4052,3617:235,175,-63,0,0,0.0750131 -4053,3617:236,176,-63,0,0,0.0750345 -4054,3617:237,177,-63,0,0,0.0750416 -4055,3617:238,178,-63,0,0,0.0750488 -4056,3617:239,179,-63,0,0,0.0750558 -4057,3618:130,180,-63,0,0,0.0750558 -4058,5618:120,-180,-62,0,0,0.0750416 -4059,5617:229,-179,-62,0,0,0.0750416 -4060,5617:228,-178,-62,0,0,0.075063 -4061,5617:227,-177,-62,0,0,0.0751059 -4062,5617:226,-176,-62,0,0,0.0752057 -4063,5617:225,-175,-62,0,0,0.07512 -4064,5617:124,-174,-62,0,0,0.0750773 -4065,5617:123,-173,-62,0,0,0.075063 -4066,5617:122,-172,-62,0,0,0.0750488 -4067,5617:121,-171,-62,0,0,0.0750416 -4068,5617:120,-170,-62,0,0,0.0750273 -4069,5616:229,-169,-62,0,0,0.0750201 -4070,5616:228,-168,-62,0,0,0.0750131 -4071,5616:227,-167,-62,0,0,0.0750131 -4072,5616:226,-166,-62,0,0,0.0750131 -4073,5616:225,-165,-62,0,0,0.0750131 -4074,5616:124,-164,-62,0,0,0.0750201 -4075,5616:123,-163,-62,0,0,0.0750345 -4076,5616:122,-162,-62,0,0,0.0750488 -4077,5616:121,-161,-62,0,0,0.0750488 -4078,5616:120,-160,-62,0,0,0.075063 -4079,5615:229,-159,-62,0,0,0.0750773 -4080,5615:228,-158,-62,0,0,0.0750843 -4081,5615:227,-157,-62,0,0,0.0750915 -4082,5615:226,-156,-62,0,0,0.0750987 -4083,5615:225,-155,-62,0,0,0.0751128 -4085,5615:123,-153,-62,0,0,0.0751344 -4086,5615:122,-152,-62,0,0,0.0751486 -4087,5615:121,-151,-62,0,0,0.0751558 -4088,5615:120,-150,-62,0,0,0.075163 -4089,5614:229,-149,-62,0,0,0.0751701 -4090,5614:228,-148,-62,0,0,0.0751843 -4091,5614:227,-147,-62,0,0,0.0751843 -4092,5614:226,-146,-62,0,0,0.0751987 -4093,5614:225,-145,-62,0,0,0.0753703 -4094,5614:124,-144,-62,0,0,0.0751987 -4095,5614:123,-143,-62,0,0,0.0752631 -4096,5614:122,-142,-62,0,0,0.0757435 -4097,5614:121,-141,-62,0,0,0.0783144 -4098,5614:120,-140,-62,0,0,0.0788128 -4099,5613:229,-139,-62,0,0,0.0773118 -4100,5613:228,-138,-62,0,0,0.0775465 -4101,5613:227,-137,-62,0,0,0.0817175 -4102,5613:226,-136,-62,0,0,0.0809803 -4103,5613:225,-135,-62,0,0,0.082983 -4104,5613:124,-134,-62,0,0,0.0855597 -4105,5613:123,-133,-62,0,0,0.0837997 -4106,5613:122,-132,-62,0,0,0.078448 -4107,5613:121,-131,-62,0,0,0.0803405 -4108,5613:120,-130,-62,0,0,0.0836184 -4109,5612:229,-129,-62,0,0,0.0854633 -4110,5612:228,-128,-62,0,0,0.0803252 -4111,5612:227,-127,-62,0,0,0.0811716 -4112,5612:226,-126,-62,0,0,0.0819955 -4113,5612:225,-125,-62,0,0,0.0813559 -4114,5612:124,-124,-62,0,0,0.0810263 -4115,5612:123,-123,-62,0,0,0.0807817 -4116,5612:122,-122,-62,0,0,0.0809192 -4117,5612:121,-121,-62,0,0,0.0812254 -4118,5612:120,-120,-62,0,0,0.0816481 -4119,5611:229,-119,-62,0,0,0.0829987 -4120,5611:228,-118,-62,0,0,0.0849747 -4121,5611:227,-117,-62,0,0,0.0844726 -4122,5611:226,-116,-62,0,0,0.0840287 -4123,5611:225,-115,-62,0,0,0.0869933 -4124,5611:124,-114,-62,0,0,0.0839655 -4125,5611:123,-113,-62,0,0,0.0840526 -4126,5611:122,-112,-62,0,0,0.0841712 -4127,5611:121,-111,-62,0,0,0.0825308 -4128,5611:120,-110,-62,0,0,0.0823131 -4129,5610:229,-109,-62,0,0,0.0817405 -4130,5610:228,-108,-62,0,0,0.0815557 -4131,5610:227,-107,-62,0,0,0.083116 -4132,5610:226,-106,-62,0,0,0.0863913 -4133,5610:225,-105,-62,0,0,0.0846556 -4134,5610:124,-104,-62,0,0,0.0829205 -4135,5610:123,-103,-62,0,0,0.0817947 -4136,5610:122,-102,-62,0,0,0.0813252 -4137,5610:121,-101,-62,0,0,0.0804847 -4138,5610:120,-100,-62,0,0,0.0766983 -4139,5609:229,-99,-62,0,0,0.0765457 -4140,5609:228,-98,-62,0,0,0.0750345 -4141,5609:227,-97,-62,0,0,0.0750702 -4142,5609:226,-96,-62,0,0,0.0750488 -4143,5609:225,-95,-62,0,0,0.0754492 -4144,5609:124,-94,-62,0,0,0.0756285 -4145,5609:123,-93,-62,0,0,0.0755998 -4146,5609:122,-92,-62,0,0,0.0752916 -4147,5609:121,-91,-62,0,0,0.0753489 -4148,5609:120,-90,-62,0,0,0.0751771 -4149,5608:229,-89,-62,0,0,0.0750773 -4150,5608:228,-88,-62,0,0,0.0751344 -4151,5608:227,-87,-62,0,0,0.0752986 -4152,5608:226,-86,-62,0,0,0.0750488 -4153,5608:225,-85,-62,0,0,0.075729 -4154,5608:124,-84,-62,0,0,0.075837 -4155,5608:123,-83,-62,0,0,0.0758515 -4156,5608:122,-82,-62,0,0,0.0758298 -4157,5608:121,-81,-62,0,0,0.0763427 -4158,5608:120,-80,-62,0,0,0.0764803 -4159,5607:229,-79,-62,0,0,0.0766912 -4160,5607:228,-78,-62,0,0,0.0772899 -4161,5607:227,-77,-62,0,0,0.0756787 -4162,5607:226,-76,-62,0,0,0.0754061 -4163,5607:225,-75,-62,0,0,0.0756787 -4164,5607:124,-74,-62,0,0,0.0764949 -4165,5607:123,-73,-62,0,0,0.0765457 -4166,5607:122,-72,-62,0,0,0.0772092 -4167,5607:121,-71,-62,0,0,0.0769462 -4168,5607:120,-70,-62,0,0,0.0766912 -4169,5606:229,-69,-62,0,0,0.0785299 -4170,5606:120,-60,-62,0,0,0.0774217 -4171,5605:229,-59,-62,0,0,0.0752487 -4172,5605:228,-58,-62,0,0,0.0751344 -4173,5605:227,-57,-62,0,0,0.0751128 -4174,5605:226,-56,-62,0,0,0.0750558 -4175,5605:225,-55,-62,0,0,0.0750416 -4176,5605:124,-54,-62,0,0,0.0750488 -4177,5605:123,-53,-62,0,0,0.0750273 -4178,5605:122,-52,-62,0,0,0.075006 -4179,5605:121,-51,-62,0,0,0.0749988 -4180,5605:120,-50,-62,0,0,0.0749916 -4181,5604:229,-49,-62,0,0,0.0749846 -4182,5604:228,-48,-62,0,0,0.0749846 -4183,5604:227,-47,-62,0,0,0.0749775 -4184,5604:226,-46,-62,0,0,0.0749703 -4185,5604:225,-45,-62,0,0,0.0749775 -4186,5604:124,-44,-62,0,0,0.0749703 -4187,5604:123,-43,-62,0,0,0.0749703 -4188,5604:122,-42,-62,0,0,0.0749775 -4189,5604:121,-41,-62,0,0,0.0749775 -4190,5604:120,-40,-62,0,0,0.0749703 -4191,5603:229,-39,-62,0,0,0.0749703 -4192,5603:228,-38,-62,0,0,0.0749631 -4193,5603:227,-37,-62,0,0,0.0749631 -4194,5603:226,-36,-62,0,0,0.0749631 -4195,5603:225,-35,-62,0,0,0.0749631 -4196,5603:124,-34,-62,0,0,0.0749631 -4197,5603:123,-33,-62,0,0,0.0749631 -4198,5603:122,-32,-62,0,0,0.0749631 -4199,5603:121,-31,-62,0,0,0.0749703 -4200,5603:120,-30,-62,0,0,0.0749631 -4201,5602:229,-29,-62,0,0,0.0749631 -4202,5602:228,-28,-62,0,0,0.0749631 -4203,5602:227,-27,-62,0,0,0.0749631 -4204,5602:226,-26,-62,0,0,0.0749631 -4205,5602:225,-25,-62,0,0,0.0749631 -4206,5602:124,-24,-62,0,0,0.0749562 -4207,5602:123,-23,-62,0,0,0.074949 -4208,5602:122,-22,-62,0,0,0.074949 -4209,5602:121,-21,-62,0,0,0.0749346 -4210,5602:120,-20,-62,0,0,0.0749275 -4211,5601:229,-19,-62,0,0,0.0749205 -4212,5601:228,-18,-62,0,0,0.0749062 -4213,5601:227,-17,-62,0,0,0.074892 -4214,5601:226,-16,-62,0,0,0.0748777 -4215,5601:225,-15,-62,0,0,0.0748705 -4216,5601:124,-14,-62,0,0,0.0748705 -4217,5601:123,-13,-62,0,0,0.0748777 -4218,5601:122,-12,-62,0,0,0.0748777 -4219,5601:121,-11,-62,0,0,0.0748705 -4220,5601:120,-10,-62,0,0,0.0748705 -4221,5600:229,-9,-62,0,0,0.0748636 -4222,5600:228,-8,-62,0,0,0.0748636 -4223,5600:227,-7,-62,0,0,0.0748636 -4224,5600:226,-6,-62,0,0,0.0748705 -4225,5600:225,-5,-62,0,0,0.0748705 -4226,5600:124,-4,-62,0,0,0.0748564 -4227,5600:123,-3,-62,0,0,0.0748421 -4228,5600:122,-2,-62,0,0,0.0748349 -4229,5600:121,-1,-62,0,0,0.0748349 -4230,3600:121,0,-62,0,0,0.0748421 -4231,3600:121,1,-62,0,0,0.0748493 -4232,3600:122,2,-62,0,0,0.074828 -4233,3600:123,3,-62,0,0,0.0748349 -4234,3600:124,4,-62,0,0,0.074828 -4235,3600:225,5,-62,0,0,0.0748564 -4236,3600:226,6,-62,0,0,0.074828 -4237,3600:227,7,-62,0,0,0.0748421 -4238,3600:228,8,-62,0,0,0.0748564 -4239,3600:229,9,-62,0,0,0.0748705 -4240,3601:120,10,-62,0,0,0.0748777 -4241,3601:121,11,-62,0,0,0.0749133 -4242,3601:122,12,-62,0,0,0.0749205 -4243,3601:123,13,-62,0,0,0.0749205 -4244,3601:124,14,-62,0,0,0.0749133 -4245,3601:225,15,-62,0,0,0.0749133 -4246,3601:226,16,-62,0,0,0.0749133 -4247,3601:227,17,-62,0,0,0.0749062 -4248,3601:228,18,-62,0,0,0.0749062 -4249,3601:229,19,-62,0,0,0.0749062 -4250,3602:120,20,-62,0,0,0.074899 -4251,3602:121,21,-62,0,0,0.0749062 -4252,3602:122,22,-62,0,0,0.0749133 -4253,3602:123,23,-62,0,0,0.0749133 -4254,3602:124,24,-62,0,0,0.0749062 -4255,3602:225,25,-62,0,0,0.0749133 -4256,3602:226,26,-62,0,0,0.0749133 -4257,3602:227,27,-62,0,0,0.0749133 -4258,3602:228,28,-62,0,0,0.0749275 -4259,3602:229,29,-62,0,0,0.0749418 -4260,3603:120,30,-62,0,0,0.0749631 -4261,3603:121,31,-62,0,0,0.0749775 -4262,3603:122,32,-62,0,0,0.0749846 -4263,3603:123,33,-62,0,0,0.0750131 -4264,3603:124,34,-62,0,0,0.0750416 -4265,3603:225,35,-62,0,0,0.0750345 -4266,3603:226,36,-62,0,0,0.0749846 -4267,3603:227,37,-62,0,0,0.0749916 -4268,3603:228,38,-62,0,0,0.0749988 -4269,3603:229,39,-62,0,0,0.075006 -4270,3604:120,40,-62,0,0,0.0750201 -4271,3604:121,41,-62,0,0,0.0750131 -4272,3604:122,42,-62,0,0,0.0750131 -4273,3604:123,43,-62,0,0,0.0750201 -4274,3604:124,44,-62,0,0,0.0750201 -4275,3604:225,45,-62,0,0,0.075006 -4276,3604:226,46,-62,0,0,0.0749988 -4277,3604:227,47,-62,0,0,0.0766983 -4278,3604:228,48,-62,0,0,0.0794943 -4279,3605:120,50,-62,0,0,0.0826631 -4280,3605:228,58,-62,0,0,0.0752844 -4281,3605:229,59,-62,0,0,0.0751915 -4282,3606:120,60,-62,0,0,0.0751128 -4283,3606:121,61,-62,0,0,0.0752343 -4284,3606:122,62,-62,0,0,0.0756141 -4285,3606:123,63,-62,0,0,0.0759956 -4286,3606:124,64,-62,0,0,0.077063 -4287,3606:225,65,-62,0,0,0.0767567 -4288,3606:226,66,-62,0,0,0.0762918 -4289,3606:227,67,-62,0,0,0.0752631 -4290,3606:228,68,-62,0,0,0.0748849 -4291,3606:229,69,-62,0,0,0.0749631 -4292,3607:120,70,-62,0,0,0.0749846 -4293,3607:121,71,-62,0,0,0.0751059 -4294,3607:122,72,-62,0,0,0.0750558 -4295,3607:124,74,-62,0,0,0.0752415 -4296,3607:225,75,-62,0,0,0.0774584 -4297,3607:226,76,-62,0,0,0.0774439 -4298,3607:227,77,-62,0,0,0.077797 -4299,3607:228,78,-62,0,0,0.0788502 -4300,3607:229,79,-62,0,0,0.0791417 -4301,3608:120,80,-62,0,0,0.0805 -4302,3608:121,81,-62,0,0,0.0830691 -4303,3608:122,82,-62,0,0,0.0904737 -4304,3614:225,145,-62,0,0,0.0787978 -4305,3614:226,146,-62,0,0,0.0792615 -4306,3614:227,147,-62,0,0,0.0751128 -4307,3614:228,148,-62,0,0,0.07512 -4308,3614:229,149,-62,0,0,0.075063 -4309,3615:120,150,-62,0,0,0.0750702 -4310,3615:121,151,-62,0,0,0.0750773 -4311,3615:122,152,-62,0,0,0.0750915 -4312,3615:123,153,-62,0,0,0.0750773 -4313,3615:124,154,-62,0,0,0.0750773 -4314,3615:225,155,-62,0,0,0.075063 -4315,3615:226,156,-62,0,0,0.0750488 -4316,3615:227,157,-62,0,0,0.0750201 -4317,3615:228,158,-62,0,0,0.0749988 -4318,3615:229,159,-62,0,0,0.075006 -4319,3616:120,160,-62,0,0,0.0750201 -4320,3616:121,161,-62,0,0,0.0750131 -4321,3616:122,162,-62,0,0,0.075006 -4322,3616:123,163,-62,0,0,0.075006 -4323,3616:124,164,-62,0,0,0.0750345 -4324,3616:225,165,-62,0,0,0.0750416 -4325,3616:226,166,-62,0,0,0.0750488 -4326,3616:227,167,-62,0,0,0.0750488 -4327,3616:228,168,-62,0,0,0.0750416 -4328,3616:229,169,-62,0,0,0.0750345 -4329,3617:120,170,-62,0,0,0.0750273 -4330,3617:121,171,-62,0,0,0.0750345 -4331,3617:122,172,-62,0,0,0.0750416 -4332,3617:123,173,-62,0,0,0.0750416 -4333,3617:124,174,-62,0,0,0.0750416 -4334,3617:225,175,-62,0,0,0.0750345 -4335,3617:226,176,-62,0,0,0.0750273 -4336,3617:227,177,-62,0,0,0.0750273 -4337,3617:228,178,-62,0,0,0.0750488 -4338,3617:229,179,-62,0,0,0.0750488 -4339,3618:120,180,-62,0,0,0.0750416 -4340,5618:110,-180,-61,0,0,0.075063 -4341,5617:219,-179,-61,0,0,0.07512 -4342,5617:218,-178,-61,0,0,0.0752986 -4343,5617:217,-177,-61,0,0,0.0757507 -4344,5617:216,-176,-61,0,0,0.0755854 -4345,5617:215,-175,-61,0,0,0.0752916 -4346,5617:114,-174,-61,0,0,0.0750702 -4347,5617:113,-173,-61,0,0,0.075063 -4348,5617:112,-172,-61,0,0,0.0750416 -4349,5617:111,-171,-61,0,0,0.0750273 -4350,5617:110,-170,-61,0,0,0.0750131 -4351,5616:219,-169,-61,0,0,0.075006 -4352,5616:218,-168,-61,0,0,0.0749988 -4353,5616:217,-167,-61,0,0,0.0749988 -4354,5616:216,-166,-61,0,0,0.075006 -4355,5616:215,-165,-61,0,0,0.0750131 -4356,5616:114,-164,-61,0,0,0.0750201 -4357,5616:113,-163,-61,0,0,0.0750345 -4358,5616:112,-162,-61,0,0,0.0750488 -4359,5616:111,-161,-61,0,0,0.0750558 -4360,5616:110,-160,-61,0,0,0.0750702 -4361,5615:219,-159,-61,0,0,0.0750773 -4362,5615:218,-158,-61,0,0,0.0750843 -4363,5615:217,-157,-61,0,0,0.0750843 -4364,5615:216,-156,-61,0,0,0.0750915 -4365,5615:215,-155,-61,0,0,0.0751558 -4366,5615:114,-154,-61,0,0,0.0752631 -4367,5615:113,-153,-61,0,0,0.0752916 -4368,5615:112,-152,-61,0,0,0.0752273 -4369,5615:111,-151,-61,0,0,0.0751915 -4370,5615:110,-150,-61,0,0,0.0752487 -4371,5614:219,-149,-61,0,0,0.0754779 -4372,5614:218,-148,-61,0,0,0.0753489 -4373,5614:217,-147,-61,0,0,0.0754921 -4374,5614:216,-146,-61,0,0,0.0758298 -4375,5614:215,-145,-61,0,0,0.0765457 -4376,5614:114,-144,-61,0,0,0.0781588 -4377,5614:113,-143,-61,0,0,0.0796523 -4378,5614:112,-142,-61,0,0,0.0805761 -4379,5614:111,-141,-61,0,0,0.0809803 -4380,5614:110,-140,-61,0,0,0.0814787 -4381,5613:219,-139,-61,0,0,0.0810646 -4382,5613:218,-138,-61,0,0,0.082593 -4383,5613:217,-137,-61,0,0,0.0850864 -4384,5613:216,-136,-61,0,0,0.0848468 -4385,5613:215,-135,-61,0,0,0.0847113 -4386,5613:114,-134,-61,0,0,0.0870421 -4387,5613:113,-133,-61,0,0,0.0873121 -4388,5613:112,-132,-61,0,0,0.0861402 -4389,5613:111,-131,-61,0,0,0.0817483 -4390,5613:110,-130,-61,0,0,0.082819 -4391,5612:219,-129,-61,0,0,0.0875743 -4392,5612:218,-128,-61,0,0,0.0855195 -4393,5612:217,-127,-61,0,0,0.0855756 -4394,5612:216,-126,-61,0,0,0.0850225 -4395,5612:215,-125,-61,0,0,0.0828892 -4396,5612:114,-124,-61,0,0,0.0830064 -4397,5612:113,-123,-61,0,0,0.0907447 -4398,5612:112,-122,-61,0,0,0.092627 -4399,5612:111,-121,-61,0,0,0.0867893 -4400,5612:110,-120,-61,0,0,0.0863913 -4401,5611:219,-119,-61,0,0,0.0897912 -4402,5611:218,-118,-61,0,0,0.090626 -4403,5611:217,-117,-61,0,0,0.0855837 -4404,5611:216,-116,-61,0,0,0.0881755 -4405,5611:215,-115,-61,0,0,0.0911184 -4406,5611:114,-114,-61,0,0,0.0909399 -4407,5611:113,-113,-61,0,0,0.0931205 -4408,5611:112,-112,-61,0,0,0.0903556 -4409,5611:111,-111,-61,0,0,0.0860997 -4410,5611:110,-110,-61,0,0,0.0860432 -4411,5610:219,-109,-61,0,0,0.086132 -4412,5610:218,-108,-61,0,0,0.0852548 -4413,5610:217,-107,-61,0,0,0.0890384 -4414,5610:216,-106,-61,0,0,0.090533 -4415,5610:215,-105,-61,0,0,0.0857849 -4416,5610:114,-104,-61,0,0,0.0862617 -4417,5610:113,-103,-61,0,0,0.0854793 -4418,5610:112,-102,-61,0,0,0.0835869 -4419,5610:111,-101,-61,0,0,0.0823363 -4420,5610:110,-100,-61,0,0,0.079007 -4421,5609:219,-99,-61,0,0,0.0764296 -4422,5609:218,-98,-61,0,0,0.077297 -4423,5609:217,-97,-61,0,0,0.0780184 -4424,5609:216,-96,-61,0,0,0.0777158 -4425,5609:215,-95,-61,0,0,0.0758298 -4426,5609:114,-94,-61,0,0,0.0769168 -4427,5609:113,-93,-61,0,0,0.0765384 -4428,5609:112,-92,-61,0,0,0.0754203 -4429,5609:111,-91,-61,0,0,0.0755998 -4430,5609:110,-90,-61,0,0,0.0759668 -4431,5608:219,-89,-61,0,0,0.0773485 -4432,5608:218,-88,-61,0,0,0.0854151 -4433,5608:217,-87,-61,0,0,0.0874924 -4434,5608:216,-86,-61,0,0,0.0807817 -4435,5608:215,-85,-61,0,0,0.0769973 -4436,5608:114,-84,-61,0,0,0.0758225 -4437,5608:113,-83,-61,0,0,0.0756932 -4438,5608:112,-82,-61,0,0,0.0762267 -4439,5608:111,-81,-61,0,0,0.0762196 -4440,5608:110,-80,-61,0,0,0.0758946 -4441,5607:219,-79,-61,0,0,0.0758443 -4442,5607:218,-78,-61,0,0,0.0760245 -4443,5607:217,-77,-61,0,0,0.0765893 -4444,5607:216,-76,-61,0,0,0.0770338 -4445,5607:215,-75,-61,0,0,0.0768514 -4446,5607:114,-74,-61,0,0,0.0789397 -4447,5607:113,-73,-61,0,0,0.0826319 -4448,5607:112,-72,-61,0,0,0.0796146 -4449,5607:111,-71,-61,0,0,0.0780184 -4450,5607:110,-70,-61,0,0,0.0775613 -4451,5606:219,-69,-61,0,0,0.0772899 -4452,5606:218,-68,-61,0,0,0.0771215 -4453,5606:217,-67,-61,0,0,0.0806293 -4454,5606:110,-60,-61,0,0,0.0801433 -4455,5605:219,-59,-61,0,0,0.0774806 -4456,5605:218,-58,-61,0,0,0.0753344 -4457,5605:217,-57,-61,0,0,0.0752631 -4458,5605:216,-56,-61,0,0,0.0751915 -4459,5605:215,-55,-61,0,0,0.0750915 -4460,5605:114,-54,-61,0,0,0.0750416 -4461,5605:113,-53,-61,0,0,0.0750416 -4462,5605:112,-52,-61,0,0,0.0750201 -4463,5605:111,-51,-61,0,0,0.0749988 -4464,5605:110,-50,-61,0,0,0.0749846 -4465,5604:219,-49,-61,0,0,0.0749775 -4466,5604:218,-48,-61,0,0,0.0749775 -4467,5604:217,-47,-61,0,0,0.0749631 -4468,5604:216,-46,-61,0,0,0.0749703 -4469,5604:215,-45,-61,0,0,0.0749775 -4470,5604:114,-44,-61,0,0,0.0749775 -4471,5604:113,-43,-61,0,0,0.0749703 -4472,5604:112,-42,-61,0,0,0.0749703 -4473,5604:111,-41,-61,0,0,0.0749703 -4474,5604:110,-40,-61,0,0,0.0749703 -4475,5603:219,-39,-61,0,0,0.0749703 -4476,5603:218,-38,-61,0,0,0.0749703 -4477,5603:217,-37,-61,0,0,0.0749703 -4478,5603:216,-36,-61,0,0,0.0749703 -4479,5603:215,-35,-61,0,0,0.0749703 -4480,5603:114,-34,-61,0,0,0.0749703 -4481,5603:113,-33,-61,0,0,0.0749703 -4482,5603:112,-32,-61,0,0,0.0749703 -4483,5603:111,-31,-61,0,0,0.0749703 -4484,5603:110,-30,-61,0,0,0.0749703 -4485,5602:219,-29,-61,0,0,0.0749703 -4486,5602:218,-28,-61,0,0,0.0749703 -4487,5602:217,-27,-61,0,0,0.0749703 -4488,5602:216,-26,-61,0,0,0.0749631 -4489,5602:215,-25,-61,0,0,0.0749631 -4490,5602:114,-24,-61,0,0,0.0749562 -4491,5602:113,-23,-61,0,0,0.0749562 -4492,5602:112,-22,-61,0,0,0.0749418 -4493,5602:111,-21,-61,0,0,0.0749346 -4494,5602:110,-20,-61,0,0,0.0749275 -4495,5601:219,-19,-61,0,0,0.0749205 -4496,5601:218,-18,-61,0,0,0.0749062 -4497,5601:217,-17,-61,0,0,0.074892 -4498,5601:216,-16,-61,0,0,0.0748705 -4499,5601:215,-15,-61,0,0,0.0748636 -4500,5601:114,-14,-61,0,0,0.0748705 -4501,5601:113,-13,-61,0,0,0.0748705 -4502,5601:112,-12,-61,0,0,0.0748705 -4503,5601:111,-11,-61,0,0,0.0748636 -4504,5601:110,-10,-61,0,0,0.0748705 -4505,5600:219,-9,-61,0,0,0.0748705 -4506,5600:218,-8,-61,0,0,0.0748705 -4507,5600:217,-7,-61,0,0,0.0748636 -4508,5600:216,-6,-61,0,0,0.0748636 -4509,5600:215,-5,-61,0,0,0.0748777 -4510,5600:114,-4,-61,0,0,0.0748777 -4511,5600:113,-3,-61,0,0,0.0748705 -4512,5600:112,-2,-61,0,0,0.0748636 -4513,5600:111,-1,-61,0,0,0.0748636 -4514,3600:111,0,-61,0,0,0.0748636 -4515,3600:111,1,-61,0,0,0.0748564 -4516,3600:112,2,-61,0,0,0.0748493 -4517,3600:113,3,-61,0,0,0.0748493 -4518,3600:114,4,-61,0,0,0.0748421 -4519,3600:215,5,-61,0,0,0.0748705 -4520,3600:216,6,-61,0,0,0.0748564 -4521,3600:217,7,-61,0,0,0.0748493 -4522,3600:218,8,-61,0,0,0.0748493 -4523,3600:219,9,-61,0,0,0.0748636 -4524,3601:110,10,-61,0,0,0.0748705 -4525,3601:111,11,-61,0,0,0.0748849 -4526,3601:112,12,-61,0,0,0.0748777 -4527,3601:113,13,-61,0,0,0.0748777 -4528,3601:114,14,-61,0,0,0.0748777 -4529,3601:215,15,-61,0,0,0.074892 -4530,3601:216,16,-61,0,0,0.074899 -4531,3601:217,17,-61,0,0,0.074892 -4532,3601:218,18,-61,0,0,0.0748705 -4533,3601:219,19,-61,0,0,0.0748564 -4534,3602:110,20,-61,0,0,0.0748636 -4535,3602:111,21,-61,0,0,0.0748564 -4536,3602:112,22,-61,0,0,0.0748636 -4537,3602:113,23,-61,0,0,0.0748705 -4538,3602:114,24,-61,0,0,0.0748777 -4539,3602:215,25,-61,0,0,0.074892 -4540,3602:216,26,-61,0,0,0.074892 -4541,3602:217,27,-61,0,0,0.074899 -4542,3602:218,28,-61,0,0,0.0749205 -4543,3602:219,29,-61,0,0,0.0749205 -4544,3603:110,30,-61,0,0,0.0749346 -4545,3603:111,31,-61,0,0,0.074949 -4546,3603:112,32,-61,0,0,0.0749562 -4547,3603:113,33,-61,0,0,0.0749703 -4548,3603:114,34,-61,0,0,0.0750273 -4549,3603:215,35,-61,0,0,0.0749775 -4550,3603:216,36,-61,0,0,0.0749775 -4551,3603:217,37,-61,0,0,0.0749703 -4552,3603:218,38,-61,0,0,0.0749775 -4553,3603:219,39,-61,0,0,0.0749703 -4554,3604:110,40,-61,0,0,0.0749775 -4555,3604:111,41,-61,0,0,0.0749916 -4556,3604:112,42,-61,0,0,0.0749846 -4557,3604:113,43,-61,0,0,0.0749846 -4558,3604:114,44,-61,0,0,0.0749916 -4559,3604:215,45,-61,0,0,0.0750131 -4560,3604:216,46,-61,0,0,0.075006 -4561,3604:217,47,-61,0,0,0.075006 -4562,3604:218,48,-61,0,0,0.0750201 -4563,3604:219,49,-61,0,0,0.0751128 -4564,3605:110,50,-61,0,0,0.0749275 -4565,3605:217,57,-61,0,0,0.0752343 -4566,3605:218,58,-61,0,0,0.0752129 -4567,3605:219,59,-61,0,0,0.0751128 -4568,3606:110,60,-61,0,0,0.0751128 -4569,3606:111,61,-61,0,0,0.0750416 -4570,3606:112,62,-61,0,0,0.0749916 -4571,3606:113,63,-61,0,0,0.0749775 -4572,3606:114,64,-61,0,0,0.0749062 -4573,3606:215,65,-61,0,0,0.0749205 -4574,3606:216,66,-61,0,0,0.0749205 -4575,3606:217,67,-61,0,0,0.0749346 -4576,3606:218,68,-61,0,0,0.0749418 -4577,3606:219,69,-61,0,0,0.074949 -4578,3607:110,70,-61,0,0,0.074949 -4579,3607:111,71,-61,0,0,0.0749418 -4580,3607:112,72,-61,0,0,0.0749418 -4581,3607:114,74,-61,0,0,0.075722 -4582,3607:215,75,-61,0,0,0.074949 -4583,3607:216,76,-61,0,0,0.0749346 -4584,3607:217,77,-61,0,0,0.0751059 -4585,3607:218,78,-61,0,0,0.0749062 -4586,3607:219,79,-61,0,0,0.0749346 -4587,3608:110,80,-61,0,0,0.0749346 -4588,3608:111,81,-61,0,0,0.0752772 -4589,3608:113,83,-61,0,0,0.0753847 -4590,3608:219,89,-61,0,0,0.0753344 -4591,3609:110,90,-61,0,0,0.0753489 -4592,3609:111,91,-61,0,0,0.0756068 -4593,3609:112,92,-61,0,0,0.0771215 -4594,3609:113,93,-61,0,0,0.0784555 -4595,3609:114,94,-61,0,0,0.0869034 -4596,3610:218,108,-61,0,0,0.0750488 -4597,3610:219,109,-61,0,0,0.0792915 -4598,3611:110,110,-61,0,0,0.0853428 -4599,3611:215,115,-61,0,0,0.0755352 -4600,3611:217,117,-61,0,0,0.0753775 -4601,3611:218,118,-61,0,0,0.0751558 -4602,3611:219,119,-61,0,0,0.0750773 -4603,3612:110,120,-61,0,0,0.0750488 -4604,3612:111,121,-61,0,0,0.0751486 -4605,3612:112,122,-61,0,0,0.0752343 -4606,3612:113,123,-61,0,0,0.0750416 -4607,3612:217,127,-61,0,0,0.0802948 -4608,3612:218,128,-61,0,0,0.0803859 -4609,3612:219,129,-61,0,0,0.0774658 -4610,3613:110,130,-61,0,0,0.0819568 -4611,3613:219,139,-61,0,0,0.0893055 -4612,3614:110,140,-61,0,0,0.0890384 -4613,3614:111,141,-61,0,0,0.0883988 -4614,3614:112,142,-61,0,0,0.0878458 -4615,3614:113,143,-61,0,0,0.0862454 -4616,3614:114,144,-61,0,0,0.0871566 -4617,3614:215,145,-61,0,0,0.0834139 -4618,3614:216,146,-61,0,0,0.0768076 -4619,3614:217,147,-61,0,0,0.0752201 -4620,3614:218,148,-61,0,0,0.0750702 -4621,3614:219,149,-61,0,0,0.0750416 -4622,3615:110,150,-61,0,0,0.0750416 -4623,3615:111,151,-61,0,0,0.0750488 -4624,3615:112,152,-61,0,0,0.0750416 -4625,3615:113,153,-61,0,0,0.0750201 -4626,3615:114,154,-61,0,0,0.075006 -4627,3615:215,155,-61,0,0,0.0749916 -4628,3615:216,156,-61,0,0,0.0749846 -4629,3615:217,157,-61,0,0,0.0749916 -4630,3615:218,158,-61,0,0,0.0750131 -4631,3615:219,159,-61,0,0,0.0750345 -4632,3616:110,160,-61,0,0,0.0750131 -4633,3616:111,161,-61,0,0,0.0749703 -4634,3616:112,162,-61,0,0,0.0749205 -4635,3616:113,163,-61,0,0,0.075063 -4636,3616:114,164,-61,0,0,0.0750488 -4637,3616:215,165,-61,0,0,0.0750345 -4638,3616:216,166,-61,0,0,0.0750558 -4639,3616:217,167,-61,0,0,0.0750488 -4640,3616:218,168,-61,0,0,0.0750345 -4641,3616:219,169,-61,0,0,0.0750273 -4642,3617:110,170,-61,0,0,0.0750345 -4643,3617:111,171,-61,0,0,0.0750488 -4644,3617:112,172,-61,0,0,0.0750488 -4645,3617:113,173,-61,0,0,0.0750416 -4646,3617:114,174,-61,0,0,0.0750416 -4647,3617:215,175,-61,0,0,0.0750201 -4648,3617:216,176,-61,0,0,0.0750201 -4649,3617:217,177,-61,0,0,0.0750345 -4650,3617:218,178,-61,0,0,0.0750416 -4651,3617:219,179,-61,0,0,0.0750488 -4652,3618:110,180,-61,0,0,0.075063 -4653,5618:100,-180,-60,0,0,0.0751701 -4654,5617:209,-179,-60,0,0,0.075729 -4655,5617:208,-178,-60,0,0,0.0763789 -4656,5617:207,-177,-60,0,0,0.0755781 -4657,5617:206,-176,-60,0,0,0.0756068 -4658,5617:205,-175,-60,0,0,0.0756932 -4659,5617:104,-174,-60,0,0,0.0753703 -4660,5617:103,-173,-60,0,0,0.0751416 -4661,5617:102,-172,-60,0,0,0.0750702 -4662,5617:101,-171,-60,0,0,0.0750488 -4663,5617:100,-170,-60,0,0,0.0750273 -4664,5616:209,-169,-60,0,0,0.0750201 -4665,5616:208,-168,-60,0,0,0.0750131 -4666,5616:207,-167,-60,0,0,0.0750131 -4667,5616:206,-166,-60,0,0,0.075006 -4668,5616:205,-165,-60,0,0,0.0751558 -4669,5616:104,-164,-60,0,0,0.0753489 -4670,5616:103,-163,-60,0,0,0.0750488 -4671,5616:102,-162,-60,0,0,0.0750416 -4672,5616:101,-161,-60,0,0,0.0750558 -4673,5616:100,-160,-60,0,0,0.0751059 -4674,5615:209,-159,-60,0,0,0.0753703 -4675,5615:208,-158,-60,0,0,0.0757937 -4676,5615:207,-157,-60,0,0,0.0766184 -4677,5615:206,-156,-60,0,0,0.0773118 -4678,5615:205,-155,-60,0,0,0.0774952 -4679,5615:104,-154,-60,0,0,0.077657 -4680,5615:103,-153,-60,0,0,0.078783 -4681,5615:102,-152,-60,0,0,0.0799844 -4682,5615:101,-151,-60,0,0,0.0774145 -4683,5615:100,-150,-60,0,0,0.0783515 -4684,5614:209,-149,-60,0,0,0.0816789 -4685,5614:208,-148,-60,0,0,0.079374 -4686,5614:207,-147,-60,0,0,0.0785371 -4687,5614:206,-146,-60,0,0,0.0794342 -4688,5614:205,-145,-60,0,0,0.0803175 -4689,5614:104,-144,-60,0,0,0.0832023 -4690,5614:103,-143,-60,0,0,0.0842505 -4691,5614:102,-142,-60,0,0,0.0829596 -4692,5614:101,-141,-60,0,0,0.0832099 -4693,5614:100,-140,-60,0,0,0.0830455 -4694,5613:209,-139,-60,0,0,0.0818717 -4695,5613:208,-138,-60,0,0,0.0832884 -4696,5613:207,-137,-60,0,0,0.0859382 -4697,5613:206,-136,-60,0,0,0.0842505 -4698,5613:205,-135,-60,0,0,0.0849906 -4699,5613:104,-134,-60,0,0,0.0876811 -4700,5613:103,-133,-60,0,0,0.0903893 -4701,5613:102,-132,-60,0,0,0.0916986 -4702,5613:101,-131,-60,0,0,0.0872464 -4703,5613:100,-130,-60,0,0,0.0853348 -4704,5612:209,-129,-60,0,0,0.0891885 -4705,5612:208,-128,-60,0,0,0.088465 -4706,5612:207,-127,-60,0,0,0.0868383 -4707,5612:206,-126,-60,0,0,0.084831 -4708,5612:205,-125,-60,0,0,0.085624 -4709,5612:104,-124,-60,0,0,0.0901699 -4710,5612:103,-123,-60,0,0,0.0965957 -4711,5612:102,-122,-60,0,0,0.0970269 -4712,5612:101,-121,-60,0,0,0.0968562 -4713,5612:100,-120,-60,0,0,0.0966137 -4714,5611:209,-119,-60,0,0,0.0969459 -4715,5611:208,-118,-60,0,0,0.0979491 -4716,5611:207,-117,-60,0,0,0.0976951 -4717,5611:206,-116,-60,0,0,0.0945267 -4718,5611:205,-115,-60,0,0,0.0911013 -4719,5611:104,-114,-60,0,0,0.0927135 -4720,5611:103,-113,-60,0,0,0.0949233 -4721,5611:102,-112,-60,0,0,0.0957562 -4722,5611:101,-111,-60,0,0,0.0957296 -4723,5611:100,-110,-60,0,0,0.0949055 -4724,5610:209,-109,-60,0,0,0.0953833 -4725,5610:208,-108,-60,0,0,0.0957652 -4726,5610:207,-107,-60,0,0,0.0945707 -4727,5610:206,-106,-60,0,0,0.0902373 -4728,5610:205,-105,-60,0,0,0.0951441 -4729,5610:104,-104,-60,0,0,0.0989888 -4730,5610:103,-103,-60,0,0,0.090533 -4731,5610:102,-102,-60,0,0,0.0855756 -4732,5610:101,-101,-60,0,0,0.083257 -4733,5610:100,-100,-60,0,0,0.082414 -4734,5609:209,-99,-60,0,0,0.0842585 -4735,5609:208,-98,-60,0,0,0.088349 -4736,5609:207,-97,-60,0,0,0.0862859 -4737,5609:206,-96,-60,0,0,0.0785744 -4738,5609:205,-95,-60,0,0,0.0778634 -4739,5609:104,-94,-60,0,0,0.0809192 -4740,5609:103,-93,-60,0,0,0.0830925 -4741,5609:102,-92,-60,0,0,0.0836814 -4742,5609:101,-91,-60,0,0,0.0849825 -4743,5609:100,-90,-60,0,0,0.0871975 -4744,5608:209,-89,-60,0,0,0.0871648 -4745,5608:208,-88,-60,0,0,0.0885149 -4746,5608:207,-87,-60,0,0,0.0921703 -4747,5608:206,-86,-60,0,0,0.0874103 -4748,5608:205,-85,-60,0,0,0.0789322 -4749,5608:104,-84,-60,0,0,0.0759668 -4750,5608:103,-83,-60,0,0,0.0763354 -4751,5608:102,-82,-60,0,0,0.0761111 -4752,5608:101,-81,-60,0,0,0.0761761 -4753,5608:100,-80,-60,0,0,0.0754849 -4754,5607:209,-79,-60,0,0,0.0757147 -4755,5607:208,-78,-60,0,0,0.0786266 -4756,5607:207,-77,-60,0,0,0.0835399 -4757,5607:206,-76,-60,0,0,0.0795921 -4758,5607:205,-75,-60,0,0,0.0792691 -4759,5607:104,-74,-60,0,0,0.0847113 -4760,5607:103,-73,-60,0,0,0.089699 -4761,5607:102,-72,-60,0,0,0.0860837 -4762,5607:101,-71,-60,0,0,0.0802948 -4763,5607:100,-70,-60,0,0,0.0785968 -4764,5606:209,-69,-60,0,0,0.0780922 -4765,5606:208,-68,-60,0,0,0.0777601 -4766,5606:207,-67,-60,0,0,0.078463 -4767,5606:205,-65,-60,0,0,0.0924201 -4768,5606:100,-60,-60,0,0,0.0801736 -4769,5605:209,-59,-60,0,0,0.0795168 -4770,5605:208,-58,-60,0,0,0.0775026 -4771,5605:207,-57,-60,0,0,0.075313 -4772,5605:206,-56,-60,0,0,0.0752559 -4773,5605:205,-55,-60,0,0,0.0751701 -4774,5605:104,-54,-60,0,0,0.0750558 -4775,5605:103,-53,-60,0,0,0.0750345 -4776,5605:102,-52,-60,0,0,0.0750345 -4777,5605:101,-51,-60,0,0,0.0749988 -4778,5605:100,-50,-60,0,0,0.0749846 -4779,5604:209,-49,-60,0,0,0.0749846 -4780,5604:208,-48,-60,0,0,0.0749703 -4781,5604:207,-47,-60,0,0,0.0749703 -4782,5604:206,-46,-60,0,0,0.0749703 -4783,5604:205,-45,-60,0,0,0.0749631 -4784,5604:104,-44,-60,0,0,0.0749631 -4785,5604:103,-43,-60,0,0,0.0749631 -4786,5604:102,-42,-60,0,0,0.0749631 -4787,5604:101,-41,-60,0,0,0.0749631 -4788,5604:100,-40,-60,0,0,0.0749703 -4789,5603:209,-39,-60,0,0,0.0749703 -4790,5603:208,-38,-60,0,0,0.0749703 -4791,5603:207,-37,-60,0,0,0.0749703 -4792,5603:206,-36,-60,0,0,0.0749703 -4793,5603:205,-35,-60,0,0,0.0749703 -4794,5603:104,-34,-60,0,0,0.0749703 -4795,5603:103,-33,-60,0,0,0.0749703 -4796,5603:102,-32,-60,0,0,0.0749703 -4797,5603:101,-31,-60,0,0,0.0749775 -4798,5603:100,-30,-60,0,0,0.0749775 -4799,5602:209,-29,-60,0,0,0.0749703 -4800,5602:208,-28,-60,0,0,0.0749703 -4801,5602:207,-27,-60,0,0,0.0749631 -4802,5602:206,-26,-60,0,0,0.0749631 -4803,5602:205,-25,-60,0,0,0.0749631 -4804,5602:104,-24,-60,0,0,0.0749562 -4805,5602:103,-23,-60,0,0,0.074949 -4806,5602:102,-22,-60,0,0,0.0749418 -4807,5602:101,-21,-60,0,0,0.0749346 -4808,5602:100,-20,-60,0,0,0.0749275 -4809,5601:209,-19,-60,0,0,0.0749205 -4810,5601:208,-18,-60,0,0,0.0749062 -4811,5601:207,-17,-60,0,0,0.074892 -4812,5601:206,-16,-60,0,0,0.0748777 -4813,5601:205,-15,-60,0,0,0.0748636 -4814,5601:104,-14,-60,0,0,0.0748636 -4815,5601:103,-13,-60,0,0,0.0748705 -4816,5601:102,-12,-60,0,0,0.0748636 -4817,5601:101,-11,-60,0,0,0.0748564 -4818,5601:100,-10,-60,0,0,0.0748564 -4819,5600:209,-9,-60,0,0,0.0748636 -4820,5600:208,-8,-60,0,0,0.0748705 -4821,5600:207,-7,-60,0,0,0.0748636 -4822,5600:206,-6,-60,0,0,0.0748564 -4823,5600:205,-5,-60,0,0,0.0748564 -4824,5600:104,-4,-60,0,0,0.0748636 -4825,5600:103,-3,-60,0,0,0.0748636 -4826,5600:102,-2,-60,0,0,0.0748636 -4827,5600:101,-1,-60,0,0,0.0748705 -4828,3600:101,0,-60,0,0,0.0748777 -4829,3600:101,1,-60,0,0,0.0748636 -4830,3600:102,2,-60,0,0,0.0748636 -4831,3600:103,3,-60,0,0,0.0748636 -4832,3600:104,4,-60,0,0,0.0748705 -4833,3600:205,5,-60,0,0,0.0748705 -4834,3600:206,6,-60,0,0,0.0748777 -4835,3600:207,7,-60,0,0,0.0748777 -4836,3600:208,8,-60,0,0,0.0748705 -4837,3600:209,9,-60,0,0,0.0748636 -4838,3601:100,10,-60,0,0,0.0748564 -4839,3601:101,11,-60,0,0,0.0748636 -4840,3601:102,12,-60,0,0,0.0748564 -4841,3601:103,13,-60,0,0,0.0748705 -4842,3601:104,14,-60,0,0,0.0748777 -4843,3601:205,15,-60,0,0,0.0748636 -4844,3601:206,16,-60,0,0,0.0748636 -4845,3601:207,17,-60,0,0,0.0748636 -4846,3601:208,18,-60,0,0,0.0748493 -4847,3601:209,19,-60,0,0,0.074828 -4848,3602:100,20,-60,0,0,0.0748349 -4849,3602:101,21,-60,0,0,0.0748421 -4850,3602:102,22,-60,0,0,0.0748421 -4851,3602:103,23,-60,0,0,0.0748493 -4852,3602:104,24,-60,0,0,0.0748564 -4853,3602:205,25,-60,0,0,0.0748636 -4854,3602:206,26,-60,0,0,0.0748777 -4855,3602:207,27,-60,0,0,0.074892 -4856,3602:208,28,-60,0,0,0.0749133 -4857,3602:209,29,-60,0,0,0.0749205 -4858,3603:100,30,-60,0,0,0.0748849 -4859,3603:101,31,-60,0,0,0.0748636 -4860,3603:102,32,-60,0,0,0.0749205 -4861,3603:103,33,-60,0,0,0.0749562 -4862,3603:104,34,-60,0,0,0.0749916 -4863,3603:205,35,-60,0,0,0.0749703 -4864,3603:206,36,-60,0,0,0.0749418 -4865,3603:207,37,-60,0,0,0.0749205 -4866,3603:208,38,-60,0,0,0.0749133 -4867,3603:209,39,-60,0,0,0.074892 -4868,3604:100,40,-60,0,0,0.074899 -4869,3604:101,41,-60,0,0,0.0749275 -4870,3604:102,42,-60,0,0,0.0749418 -4871,3604:103,43,-60,0,0,0.0749916 -4872,3604:104,44,-60,0,0,0.0749846 -4873,3604:205,45,-60,0,0,0.0749916 -4874,3604:206,46,-60,0,0,0.0750131 -4875,3604:207,47,-60,0,0,0.0750416 -4876,3604:208,48,-60,0,0,0.0750558 -4877,3604:209,49,-60,0,0,0.0750773 -4878,3605:100,50,-60,0,0,0.0750773 -4879,3605:101,51,-60,0,0,0.0750843 -4880,3605:102,52,-60,0,0,0.0750915 -4881,3605:103,53,-60,0,0,0.0750488 -4882,3605:104,54,-60,0,0,0.0750273 -4883,3605:205,55,-60,0,0,0.0751128 -4884,3605:206,56,-60,0,0,0.0751558 -4885,3605:207,57,-60,0,0,0.0751344 -4886,3605:208,58,-60,0,0,0.0751128 -4887,3605:209,59,-60,0,0,0.0750843 -4888,3606:100,60,-60,0,0,0.0750201 -4889,3606:101,61,-60,0,0,0.0749916 -4890,3606:102,62,-60,0,0,0.0749988 -4891,3606:103,63,-60,0,0,0.0749988 -4892,3606:104,64,-60,0,0,0.0749703 -4893,3606:205,65,-60,0,0,0.074949 -4894,3606:206,66,-60,0,0,0.0749562 -4895,3606:207,67,-60,0,0,0.0749346 -4896,3606:208,68,-60,0,0,0.074949 -4897,3606:209,69,-60,0,0,0.074949 -4898,3607:100,70,-60,0,0,0.0749418 -4899,3607:101,71,-60,0,0,0.0749346 -4900,3607:102,72,-60,0,0,0.074949 -4901,3607:104,74,-60,0,0,0.0750131 -4902,3607:205,75,-60,0,0,0.0749631 -4903,3607:206,76,-60,0,0,0.0749418 -4904,3607:207,77,-60,0,0,0.074949 -4905,3607:208,78,-60,0,0,0.074949 -4906,3607:209,79,-60,0,0,0.0749631 -4907,3608:100,80,-60,0,0,0.0749846 -4908,3608:101,81,-60,0,0,0.0750345 -4909,3608:102,82,-60,0,0,0.07512 -4910,3608:103,83,-60,0,0,0.0751416 -4911,3608:104,84,-60,0,0,0.0751128 -4912,3608:205,85,-60,0,0,0.0751272 -4913,3608:206,86,-60,0,0,0.0751272 -4914,3608:207,87,-60,0,0,0.07512 -4915,3608:208,88,-60,0,0,0.07512 -4916,3608:209,89,-60,0,0,0.0750843 -4917,3609:100,90,-60,0,0,0.0750773 -4918,3609:101,91,-60,0,0,0.0750558 -4919,3609:102,92,-60,0,0,0.0750558 -4920,3609:103,93,-60,0,0,0.0750488 -4921,3609:104,94,-60,0,0,0.0750488 -4922,3609:205,95,-60,0,0,0.0770704 -4923,3610:205,105,-60,0,0,0.075313 -4924,3610:206,106,-60,0,0,0.0752343 -4925,3610:207,107,-60,0,0,0.0751059 -4926,3610:208,108,-60,0,0,0.0749562 -4927,3610:209,109,-60,0,0,0.074899 -4928,3611:100,110,-60,0,0,0.0749703 -4929,3611:101,111,-60,0,0,0.0750915 -4930,3611:102,112,-60,0,0,0.0750773 -4931,3611:104,114,-60,0,0,0.0753703 -4932,3611:205,115,-60,0,0,0.0752343 -4933,3611:206,116,-60,0,0,0.0751059 -4934,3611:207,117,-60,0,0,0.0751059 -4935,3611:208,118,-60,0,0,0.0750915 -4936,3611:209,119,-60,0,0,0.075063 -4937,3612:100,120,-60,0,0,0.0749916 -4938,3612:101,121,-60,0,0,0.075006 -4939,3612:102,122,-60,0,0,0.0750843 -4940,3612:103,123,-60,0,0,0.0750488 -4941,3612:104,124,-60,0,0,0.0749988 -4942,3612:205,125,-60,0,0,0.0749846 -4943,3612:206,126,-60,0,0,0.0749775 -4944,3612:207,127,-60,0,0,0.0749703 -4945,3612:208,128,-60,0,0,0.0753631 -4946,3612:209,129,-60,0,0,0.0751416 -4947,3613:100,130,-60,0,0,0.0752415 -4948,3613:101,131,-60,0,0,0.0760679 -4949,3613:102,132,-60,0,0,0.0790816 -4950,3613:103,133,-60,0,0,0.082858 -4951,3613:104,134,-60,0,0,0.0856321 -4952,3613:206,136,-60,0,0,0.0754779 -4953,3613:207,137,-60,0,0,0.075722 -4954,3613:208,138,-60,0,0,0.0787532 -4955,3613:209,139,-60,0,0,0.0811794 -4956,3614:100,140,-60,0,0,0.0817097 -4957,3614:101,141,-60,0,0,0.0829596 -4958,3614:102,142,-60,0,0,0.0820496 -4959,3614:103,143,-60,0,0,0.0796372 -4960,3614:104,144,-60,0,0,0.0785224 -4961,3614:205,145,-60,0,0,0.0757147 -4962,3614:206,146,-60,0,0,0.0750915 -4963,3614:207,147,-60,0,0,0.0750345 -4964,3614:208,148,-60,0,0,0.0749775 -4965,3614:209,149,-60,0,0,0.0749916 -4966,3615:100,150,-60,0,0,0.075006 -4967,3615:101,151,-60,0,0,0.0750131 -4968,3615:102,152,-60,0,0,0.0749988 -4969,3615:103,153,-60,0,0,0.0750201 -4970,3615:104,154,-60,0,0,0.0750416 -4971,3615:205,155,-60,0,0,0.0750416 -4972,3615:206,156,-60,0,0,0.0750416 -4973,3615:207,157,-60,0,0,0.0750416 -4974,3615:208,158,-60,0,0,0.0750273 -4975,3615:209,159,-60,0,0,0.0750273 -4976,3616:100,160,-60,0,0,0.0750201 -4977,3616:101,161,-60,0,0,0.0750131 -4978,3616:102,162,-60,0,0,0.0750345 -4979,3616:103,163,-60,0,0,0.0750416 -4980,3616:104,164,-60,0,0,0.0750558 -4981,3616:205,165,-60,0,0,0.0750558 -4982,3616:206,166,-60,0,0,0.0750702 -4983,3616:207,167,-60,0,0,0.0750702 -4984,3616:208,168,-60,0,0,0.0750558 -4985,3616:209,169,-60,0,0,0.0750488 -4986,3617:100,170,-60,0,0,0.0750488 -4987,3617:101,171,-60,0,0,0.0750488 -4988,3617:102,172,-60,0,0,0.0750416 -4989,3617:103,173,-60,0,0,0.0750416 -4990,3617:104,174,-60,0,0,0.0750345 -4991,3617:205,175,-60,0,0,0.0750345 -4992,3617:206,176,-60,0,0,0.0750416 -4993,3617:207,177,-60,0,0,0.0750416 -4994,3617:208,178,-60,0,0,0.0750488 -4995,3617:209,179,-60,0,0,0.0750773 -4996,3618:100,180,-60,0,0,0.0751701 -4997,5518:390,-180,-59,0,0,0.0776864 -4998,5517:499,-179,-59,0,0,0.0785224 -4999,5517:498,-178,-59,0,0,0.0758443 -5000,5517:497,-177,-59,0,0,0.0774806 -5001,5517:496,-176,-59,0,0,0.0819026 -5002,5517:495,-175,-59,0,0,0.0766184 -5003,5517:394,-174,-59,0,0,0.0753561 -5004,5517:393,-173,-59,0,0,0.0771067 -5005,5517:392,-172,-59,0,0,0.0764732 -5006,5517:391,-171,-59,0,0,0.0751344 -5007,5517:390,-170,-59,0,0,0.0750987 -5008,5516:499,-169,-59,0,0,0.0751987 -5009,5516:498,-168,-59,0,0,0.075313 -5010,5516:497,-167,-59,0,0,0.0751771 -5011,5516:496,-166,-59,0,0,0.0757147 -5012,5516:495,-165,-59,0,0,0.0757867 -5013,5516:394,-164,-59,0,0,0.0758443 -5014,5516:393,-163,-59,0,0,0.0769973 -5015,5516:392,-162,-59,0,0,0.0789545 -5016,5516:391,-161,-59,0,0,0.0805608 -5017,5516:390,-160,-59,0,0,0.0806521 -5018,5515:499,-159,-59,0,0,0.0822588 -5019,5515:498,-158,-59,0,0,0.0830847 -5020,5515:497,-157,-59,0,0,0.0830379 -5021,5515:496,-156,-59,0,0,0.0827644 -5022,5515:495,-155,-59,0,0,0.0823673 -5023,5515:394,-154,-59,0,0,0.0821037 -5024,5515:393,-153,-59,0,0,0.0822354 -5025,5515:392,-152,-59,0,0,0.0825462 -5026,5515:391,-151,-59,0,0,0.0836578 -5027,5515:390,-150,-59,0,0,0.0839419 -5028,5514:499,-149,-59,0,0,0.0832805 -5029,5514:498,-148,-59,0,0,0.0832649 -5030,5514:497,-147,-59,0,0,0.0834298 -5031,5514:496,-146,-59,0,0,0.0837682 -5032,5514:495,-145,-59,0,0,0.0844886 -5033,5514:394,-144,-59,0,0,0.0849986 -5034,5514:393,-143,-59,0,0,0.0860837 -5035,5514:392,-142,-59,0,0,0.0851426 -5036,5514:391,-141,-59,0,0,0.0848867 -5037,5514:390,-140,-59,0,0,0.0840683 -5038,5513:499,-139,-59,0,0,0.0837682 -5039,5513:498,-138,-59,0,0,0.0874842 -5040,5513:497,-137,-59,0,0,0.0869034 -5041,5513:496,-136,-59,0,0,0.0866756 -5042,5513:495,-135,-59,0,0,0.0849428 -5043,5513:394,-134,-59,0,0,0.0871648 -5044,5513:393,-133,-59,0,0,0.0872384 -5045,5513:392,-132,-59,0,0,0.092558 -5046,5513:391,-131,-59,0,0,0.0932768 -5047,5513:390,-130,-59,0,0,0.0916047 -5048,5512:499,-129,-59,0,0,0.0914764 -5049,5512:498,-128,-59,0,0,0.0911525 -5050,5512:497,-127,-59,0,0,0.0910333 -5051,5512:496,-126,-59,0,0,0.0935291 -5052,5512:495,-125,-59,0,0,0.0975683 -5053,5512:394,-124,-59,0,0,0.0982671 -5054,5512:393,-123,-59,0,0,0.0954277 -5055,5512:392,-122,-59,0,0,0.0962645 -5056,5512:391,-121,-59,0,0,0.0989063 -5057,5512:390,-120,-59,0,0,0.0997151 -5058,5511:499,-119,-59,0,0,0.100075 -5059,5511:498,-118,-59,0,0,0.099752 -5060,5511:497,-117,-59,0,0,0.0995399 -5061,5511:496,-116,-59,0,0,0.0994388 -5062,5511:495,-115,-59,0,0,0.097795 -5063,5511:394,-114,-59,0,0,0.0966586 -5064,5511:393,-113,-59,0,0,0.0988423 -5065,5511:392,-112,-59,0,0,0.100325 -5066,5511:391,-111,-59,0,0,0.0996136 -5067,5511:390,-110,-59,0,0,0.0975774 -5068,5510:499,-109,-59,0,0,0.0973967 -5069,5510:498,-108,-59,0,0,0.0979854 -5070,5510:497,-107,-59,0,0,0.0980489 -5071,5510:496,-106,-59,0,0,0.0965511 -5072,5510:495,-105,-59,0,0,0.0995031 -5073,5510:394,-104,-59,0,0,0.100335 -5074,5510:393,-103,-59,0,0,0.0971171 -5075,5510:392,-102,-59,0,0,0.0984222 -5076,5510:391,-101,-59,0,0,0.0968921 -5077,5510:390,-100,-59,0,0,0.0983947 -5078,5509:499,-99,-59,0,0,0.0986869 -5079,5509:498,-98,-59,0,0,0.0964076 -5080,5509:497,-97,-59,0,0,0.091673 -5081,5509:496,-96,-59,0,0,0.0808887 -5082,5509:495,-95,-59,0,0,0.0802872 -5083,5509:394,-94,-59,0,0,0.0830613 -5084,5509:393,-93,-59,0,0,0.0829047 -5085,5509:392,-92,-59,0,0,0.0886642 -5086,5509:391,-91,-59,0,0,0.0936597 -5087,5509:390,-90,-59,0,0,0.0986503 -5088,5508:499,-89,-59,0,0,0.0986685 -5089,5508:498,-88,-59,0,0,0.0993285 -5090,5508:497,-87,-59,0,0,0.101753 -5091,5508:496,-86,-59,0,0,0.102365 -5092,5508:495,-85,-59,0,0,0.102592 -5093,5508:394,-84,-59,0,0,0.102715 -5094,5508:393,-83,-59,0,0,0.0894142 -5095,5508:392,-82,-59,0,0,0.0825462 -5096,5508:391,-81,-59,0,0,0.0857446 -5097,5508:390,-80,-59,0,0,0.0766839 -5098,5507:499,-79,-59,0,0,0.0778411 -5099,5507:498,-78,-59,0,0,0.0879363 -5100,5507:497,-77,-59,0,0,0.0968562 -5101,5507:496,-76,-59,0,0,0.0967123 -5102,5507:495,-75,-59,0,0,0.0933288 -5103,5507:394,-74,-59,0,0,0.0936684 -5104,5507:393,-73,-59,0,0,0.0948086 -5105,5507:392,-72,-59,0,0,0.0913995 -5106,5507:391,-71,-59,0,0,0.0853267 -5107,5507:390,-70,-59,0,0,0.0818795 -5108,5506:499,-69,-59,0,0,0.0791191 -5109,5506:498,-68,-59,0,0,0.0783886 -5110,5506:497,-67,-59,0,0,0.0795393 -5111,5506:496,-66,-59,0,0,0.082772 -5112,5506:495,-65,-59,0,0,0.0894895 -5113,5505:499,-59,-59,0,0,0.0801583 -5114,5505:498,-58,-59,0,0,0.078768 -5115,5505:497,-57,-59,0,0,0.0766475 -5116,5505:496,-56,-59,0,0,0.0752201 -5117,5505:495,-55,-59,0,0,0.0751486 -5118,5505:394,-54,-59,0,0,0.0750558 -5119,5505:393,-53,-59,0,0,0.0750416 -5120,5505:392,-52,-59,0,0,0.0750273 -5121,5505:391,-51,-59,0,0,0.0749916 -5122,5505:390,-50,-59,0,0,0.0749916 -5123,5504:499,-49,-59,0,0,0.0749988 -5124,5504:498,-48,-59,0,0,0.0749703 -5125,5504:497,-47,-59,0,0,0.0749631 -5126,5504:496,-46,-59,0,0,0.0749631 -5127,5504:495,-45,-59,0,0,0.0749562 -5128,5504:394,-44,-59,0,0,0.0749631 -5129,5504:393,-43,-59,0,0,0.0749631 -5130,5504:392,-42,-59,0,0,0.0749631 -5131,5504:391,-41,-59,0,0,0.0749703 -5132,5504:390,-40,-59,0,0,0.0749703 -5133,5503:499,-39,-59,0,0,0.0749775 -5134,5503:498,-38,-59,0,0,0.0749775 -5135,5503:497,-37,-59,0,0,0.0749775 -5136,5503:496,-36,-59,0,0,0.0749775 -5137,5503:495,-35,-59,0,0,0.0749775 -5138,5503:394,-34,-59,0,0,0.0749775 -5139,5503:393,-33,-59,0,0,0.0749775 -5140,5503:392,-32,-59,0,0,0.0749775 -5141,5503:391,-31,-59,0,0,0.0749846 -5142,5503:390,-30,-59,0,0,0.0749775 -5143,5502:499,-29,-59,0,0,0.0749775 -5144,5502:498,-28,-59,0,0,0.0749703 -5145,5502:497,-27,-59,0,0,0.0749703 -5146,5502:496,-26,-59,0,0,0.0749631 -5147,5502:495,-25,-59,0,0,0.0749631 -5148,5502:394,-24,-59,0,0,0.0749631 -5149,5502:393,-23,-59,0,0,0.0749562 -5150,5502:392,-22,-59,0,0,0.074949 -5151,5502:391,-21,-59,0,0,0.0749346 -5152,5502:390,-20,-59,0,0,0.0749205 -5153,5501:499,-19,-59,0,0,0.0749133 -5154,5501:498,-18,-59,0,0,0.0749062 -5155,5501:497,-17,-59,0,0,0.0748849 -5156,5501:496,-16,-59,0,0,0.0748705 -5157,5501:495,-15,-59,0,0,0.0748564 -5158,5501:394,-14,-59,0,0,0.0748564 -5159,5501:393,-13,-59,0,0,0.0748564 -5160,5501:392,-12,-59,0,0,0.0748564 -5161,5501:391,-11,-59,0,0,0.0748493 -5162,5501:390,-10,-59,0,0,0.0748564 -5163,5500:499,-9,-59,0,0,0.0748705 -5164,5500:498,-8,-59,0,0,0.0748705 -5165,5500:497,-7,-59,0,0,0.0748705 -5166,5500:496,-6,-59,0,0,0.0748636 -5167,5500:495,-5,-59,0,0,0.0748564 -5168,5500:394,-4,-59,0,0,0.0748636 -5169,5500:393,-3,-59,0,0,0.0748636 -5170,5500:392,-2,-59,0,0,0.0748705 -5171,5500:391,-1,-59,0,0,0.0748849 -5172,3500:391,0,-59,0,0,0.074892 -5173,3500:391,1,-59,0,0,0.0748705 -5174,3500:392,2,-59,0,0,0.0748636 -5175,3500:393,3,-59,0,0,0.0748636 -5176,3500:394,4,-59,0,0,0.0748705 -5177,3500:495,5,-59,0,0,0.0748849 -5178,3500:496,6,-59,0,0,0.074892 -5179,3500:497,7,-59,0,0,0.074892 -5180,3500:498,8,-59,0,0,0.0748849 -5181,3500:499,9,-59,0,0,0.074892 -5182,3501:390,10,-59,0,0,0.0748777 -5183,3501:391,11,-59,0,0,0.0748777 -5184,3501:392,12,-59,0,0,0.0748636 -5185,3501:393,13,-59,0,0,0.0748564 -5186,3501:394,14,-59,0,0,0.0748636 -5187,3501:495,15,-59,0,0,0.0748564 -5188,3501:496,16,-59,0,0,0.0748564 -5189,3501:497,17,-59,0,0,0.0748421 -5190,3501:498,18,-59,0,0,0.0748065 -5191,3501:499,19,-59,0,0,0.0747996 -5192,3502:390,20,-59,0,0,0.0748208 -5193,3502:391,21,-59,0,0,0.074828 -5194,3502:392,22,-59,0,0,0.0748137 -5195,3502:393,23,-59,0,0,0.0748137 -5196,3502:394,24,-59,0,0,0.0748208 -5197,3502:495,25,-59,0,0,0.074828 -5198,3502:496,26,-59,0,0,0.074828 -5199,3502:497,27,-59,0,0,0.074828 -5200,3502:498,28,-59,0,0,0.074828 -5201,3502:499,29,-59,0,0,0.074828 -5202,3503:390,30,-59,0,0,0.074828 -5203,3503:391,31,-59,0,0,0.0748137 -5204,3503:392,32,-59,0,0,0.074899 -5205,3503:393,33,-59,0,0,0.0749346 -5206,3503:394,34,-59,0,0,0.0749562 -5207,3503:495,35,-59,0,0,0.0749562 -5208,3503:496,36,-59,0,0,0.0749275 -5209,3503:497,37,-59,0,0,0.074892 -5210,3503:498,38,-59,0,0,0.0748777 -5211,3503:499,39,-59,0,0,0.0748636 -5212,3504:390,40,-59,0,0,0.0748777 -5213,3504:391,41,-59,0,0,0.074899 -5214,3504:392,42,-59,0,0,0.0749275 -5215,3504:393,43,-59,0,0,0.0749418 -5216,3504:394,44,-59,0,0,0.074949 -5217,3504:495,45,-59,0,0,0.0749562 -5218,3504:496,46,-59,0,0,0.0749846 -5219,3504:497,47,-59,0,0,0.0749988 -5220,3504:498,48,-59,0,0,0.0750273 -5221,3504:499,49,-59,0,0,0.0750558 -5222,3505:390,50,-59,0,0,0.075063 -5223,3505:391,51,-59,0,0,0.0751059 -5224,3505:392,52,-59,0,0,0.0751128 -5225,3505:393,53,-59,0,0,0.07512 -5226,3505:394,54,-59,0,0,0.0751272 -5227,3505:495,55,-59,0,0,0.0751059 -5228,3505:496,56,-59,0,0,0.0750843 -5229,3505:497,57,-59,0,0,0.0750558 -5230,3505:498,58,-59,0,0,0.0749775 -5231,3505:499,59,-59,0,0,0.074949 -5232,3506:390,60,-59,0,0,0.0749346 -5233,3506:391,61,-59,0,0,0.0749133 -5234,3506:392,62,-59,0,0,0.074949 -5235,3506:393,63,-59,0,0,0.0749418 -5236,3506:394,64,-59,0,0,0.0749703 -5237,3506:495,65,-59,0,0,0.0749703 -5238,3506:496,66,-59,0,0,0.0749703 -5239,3506:497,67,-59,0,0,0.0749562 -5240,3506:498,68,-59,0,0,0.074949 -5241,3506:499,69,-59,0,0,0.0749418 -5242,3507:390,70,-59,0,0,0.0749346 -5243,3507:391,71,-59,0,0,0.0749346 -5244,3507:392,72,-59,0,0,0.0749418 -5245,3507:394,74,-59,0,0,0.074949 -5246,3507:495,75,-59,0,0,0.0749562 -5247,3507:496,76,-59,0,0,0.074949 -5248,3507:497,77,-59,0,0,0.0749562 -5249,3507:498,78,-59,0,0,0.0749562 -5250,3507:499,79,-59,0,0,0.074949 -5251,3508:390,80,-59,0,0,0.0749631 -5252,3508:391,81,-59,0,0,0.0749916 -5253,3508:392,82,-59,0,0,0.0750273 -5254,3508:393,83,-59,0,0,0.0750558 -5255,3508:394,84,-59,0,0,0.0750773 -5256,3508:495,85,-59,0,0,0.0750702 -5257,3508:496,86,-59,0,0,0.0750702 -5258,3508:497,87,-59,0,0,0.0750843 -5259,3508:498,88,-59,0,0,0.075063 -5260,3508:499,89,-59,0,0,0.0750488 -5261,3509:390,90,-59,0,0,0.0750345 -5262,3509:391,91,-59,0,0,0.0750558 -5263,3509:392,92,-59,0,0,0.0750702 -5264,3509:393,93,-59,0,0,0.0750843 -5265,3509:394,94,-59,0,0,0.0751272 -5266,3509:495,95,-59,0,0,0.0751344 -5267,3510:390,100,-59,0,0,0.0754492 -5268,3510:391,101,-59,0,0,0.075313 -5269,3510:392,102,-59,0,0,0.0752487 -5270,3510:393,103,-59,0,0,0.0751416 -5271,3510:394,104,-59,0,0,0.0751416 -5272,3510:495,105,-59,0,0,0.0751416 -5273,3510:496,106,-59,0,0,0.0751915 -5274,3510:497,107,-59,0,0,0.0749916 -5275,3510:498,108,-59,0,0,0.0749418 -5276,3510:499,109,-59,0,0,0.0749562 -5277,3511:390,110,-59,0,0,0.0749846 -5278,3511:391,111,-59,0,0,0.0749916 -5279,3511:392,112,-59,0,0,0.0750201 -5280,3511:393,113,-59,0,0,0.075063 -5281,3511:394,114,-59,0,0,0.0750915 -5282,3511:495,115,-59,0,0,0.0750915 -5283,3511:496,116,-59,0,0,0.0750915 -5284,3511:497,117,-59,0,0,0.0750702 -5285,3511:498,118,-59,0,0,0.0750416 -5286,3511:499,119,-59,0,0,0.075006 -5287,3512:390,120,-59,0,0,0.075006 -5288,3512:391,121,-59,0,0,0.0750558 -5289,3512:392,122,-59,0,0,0.07527 -5290,3512:393,123,-59,0,0,0.0749846 -5291,3512:394,124,-59,0,0,0.0750201 -5292,3512:495,125,-59,0,0,0.0755854 -5293,3512:496,126,-59,0,0,0.0756787 -5294,3512:497,127,-59,0,0,0.0757722 -5295,3512:498,128,-59,0,0,0.0758586 -5296,3512:499,129,-59,0,0,0.0758298 -5297,3513:390,130,-59,0,0,0.0758515 -5298,3513:391,131,-59,0,0,0.0759811 -5299,3513:392,132,-59,0,0,0.0749205 -5300,3513:393,133,-59,0,0,0.0749275 -5301,3513:394,134,-59,0,0,0.0749703 -5302,3513:496,136,-59,0,0,0.0752129 -5303,3513:497,137,-59,0,0,0.0764296 -5304,3513:498,138,-59,0,0,0.0760317 -5305,3513:499,139,-59,0,0,0.0757795 -5306,3514:390,140,-59,0,0,0.0753703 -5307,3514:391,141,-59,0,0,0.075163 -5308,3514:392,142,-59,0,0,0.0749775 -5309,3514:393,143,-59,0,0,0.0748777 -5310,3514:394,144,-59,0,0,0.0749062 -5311,3514:495,145,-59,0,0,0.0749275 -5312,3514:496,146,-59,0,0,0.0749562 -5313,3514:497,147,-59,0,0,0.0749916 -5314,3514:498,148,-59,0,0,0.0749988 -5315,3514:499,149,-59,0,0,0.0750201 -5316,3515:390,150,-59,0,0,0.0749988 -5317,3515:391,151,-59,0,0,0.0750201 -5318,3515:392,152,-59,0,0,0.0750558 -5319,3515:393,153,-59,0,0,0.0750843 -5320,3515:394,154,-59,0,0,0.0750773 -5321,3515:495,155,-59,0,0,0.0750843 -5322,3515:496,156,-59,0,0,0.075063 -5323,3515:497,157,-59,0,0,0.0750416 -5324,3515:498,158,-59,0,0,0.0750345 -5325,3515:499,159,-59,0,0,0.0750201 -5326,3516:390,160,-59,0,0,0.0750345 -5327,3516:391,161,-59,0,0,0.0750201 -5328,3516:392,162,-59,0,0,0.0750558 -5329,3516:393,163,-59,0,0,0.0750773 -5330,3516:394,164,-59,0,0,0.0750843 -5331,3516:495,165,-59,0,0,0.0750915 -5332,3516:496,166,-59,0,0,0.0750773 -5333,3516:497,167,-59,0,0,0.0750773 -5334,3516:498,168,-59,0,0,0.0750773 -5335,3516:499,169,-59,0,0,0.075063 -5336,3517:390,170,-59,0,0,0.0750488 -5337,3517:391,171,-59,0,0,0.0751059 -5338,3517:392,172,-59,0,0,0.0751416 -5339,3517:393,173,-59,0,0,0.0750702 -5340,3517:394,174,-59,0,0,0.0750702 -5341,3517:495,175,-59,0,0,0.0750773 -5342,3517:496,176,-59,0,0,0.0750558 -5343,3517:497,177,-59,0,0,0.0750843 -5344,3517:498,178,-59,0,0,0.0752129 -5345,3517:499,179,-59,0,0,0.0753344 -5346,3518:390,180,-59,0,0,0.0776864 -5347,5518:380,-180,-58,0,0,0.0818408 -5348,5517:489,-179,-58,0,0,0.084584 -5349,5517:488,-178,-58,0,0,0.0898166 -5350,5517:487,-177,-58,0,0,0.089657 -5351,5517:486,-176,-58,0,0,0.0842902 -5352,5517:485,-175,-58,0,0,0.0836893 -5353,5517:384,-174,-58,0,0,0.0840999 -5354,5517:383,-173,-58,0,0,0.0840603 -5355,5517:382,-172,-58,0,0,0.0800675 -5356,5517:381,-171,-58,0,0,0.0776495 -5357,5517:380,-170,-58,0,0,0.0785521 -5358,5516:489,-169,-58,0,0,0.0799616 -5359,5516:488,-168,-58,0,0,0.0784852 -5360,5516:487,-167,-58,0,0,0.0766184 -5361,5516:486,-166,-58,0,0,0.0775026 -5362,5516:485,-165,-58,0,0,0.0790444 -5363,5516:384,-164,-58,0,0,0.0819491 -5364,5516:383,-163,-58,0,0,0.0834453 -5365,5516:382,-162,-58,0,0,0.0835949 -5366,5516:381,-161,-58,0,0,0.0842822 -5367,5516:380,-160,-58,0,0,0.0845522 -5368,5515:489,-159,-58,0,0,0.0846795 -5369,5515:488,-158,-58,0,0,0.084775 -5370,5515:487,-157,-58,0,0,0.0843457 -5371,5515:486,-156,-58,0,0,0.0833042 -5372,5515:485,-155,-58,0,0,0.0829987 -5373,5515:384,-154,-58,0,0,0.083163 -5374,5515:383,-153,-58,0,0,0.0839024 -5375,5515:382,-152,-58,0,0,0.0853027 -5376,5515:381,-151,-58,0,0,0.0853267 -5377,5515:380,-150,-58,0,0,0.0843059 -5378,5514:489,-149,-58,0,0,0.0844251 -5379,5514:488,-148,-58,0,0,0.0844569 -5380,5514:487,-147,-58,0,0,0.0849825 -5381,5514:486,-146,-58,0,0,0.0861239 -5382,5514:485,-145,-58,0,0,0.0869933 -5383,5514:384,-144,-58,0,0,0.0857367 -5384,5514:383,-143,-58,0,0,0.0860592 -5385,5514:382,-142,-58,0,0,0.0863183 -5386,5514:381,-141,-58,0,0,0.0890633 -5387,5514:380,-140,-58,0,0,0.087181 -5388,5513:489,-139,-58,0,0,0.0848867 -5389,5513:488,-138,-58,0,0,0.087895 -5390,5513:487,-137,-58,0,0,0.08903 -5391,5513:486,-136,-58,0,0,0.0866024 -5392,5513:485,-135,-58,0,0,0.0865374 -5393,5513:384,-134,-58,0,0,0.0919041 -5394,5513:383,-133,-58,0,0,0.0956496 -5395,5513:382,-132,-58,0,0,0.0973695 -5396,5513:381,-131,-58,0,0,0.0950645 -5397,5513:380,-130,-58,0,0,0.0941407 -5398,5512:489,-129,-58,0,0,0.0952857 -5399,5512:488,-128,-58,0,0,0.0993007 -5400,5512:487,-127,-58,0,0,0.101678 -5401,5512:486,-126,-58,0,0,0.102007 -5402,5512:485,-125,-58,0,0,0.100205 -5403,5512:384,-124,-58,0,0,0.100047 -5404,5512:383,-123,-58,0,0,0.100279 -5405,5512:382,-122,-58,0,0,0.0999183 -5406,5512:381,-121,-58,0,0,0.100363 -5407,5512:380,-120,-58,0,0,0.10053 -5408,5511:489,-119,-58,0,0,0.100307 -5409,5511:488,-118,-58,0,0,0.101584 -5410,5511:487,-117,-58,0,0,0.10263 -5411,5511:486,-116,-58,0,0,0.102876 -5412,5511:485,-115,-58,0,0,0.104779 -5413,5511:384,-114,-58,0,0,0.106321 -5414,5511:383,-113,-58,0,0,0.106987 -5415,5511:382,-112,-58,0,0,0.106379 -5416,5511:381,-111,-58,0,0,0.105039 -5417,5511:380,-110,-58,0,0,0.104471 -5418,5510:489,-109,-58,0,0,0.105184 -5419,5510:488,-108,-58,0,0,0.106653 -5420,5510:487,-107,-58,0,0,0.105039 -5421,5510:486,-106,-58,0,0,0.101847 -5422,5510:485,-105,-58,0,0,0.10039 -5423,5510:384,-104,-58,0,0,0.102158 -5424,5510:383,-103,-58,0,0,0.10337 -5425,5510:382,-102,-58,0,0,0.1004 -5426,5510:381,-101,-58,0,0,0.0978583 -5427,5510:380,-100,-58,0,0,0.0989706 -5428,5509:489,-99,-58,0,0,0.0998351 -5429,5509:488,-98,-58,0,0,0.0987781 -5430,5509:487,-97,-58,0,0,0.0998258 -5431,5509:486,-96,-58,0,0,0.0995767 -5432,5509:485,-95,-58,0,0,0.0971531 -5433,5509:384,-94,-58,0,0,0.0966496 -5434,5509:383,-93,-58,0,0,0.098486 -5435,5509:382,-92,-58,0,0,0.0926703 -5436,5509:381,-91,-58,0,0,0.0962555 -5437,5509:380,-90,-58,0,0,0.100716 -5438,5508:489,-89,-58,0,0,0.103332 -5439,5508:488,-88,-58,0,0,0.103676 -5440,5508:487,-87,-58,0,0,0.103752 -5441,5508:486,-86,-58,0,0,0.102479 -5442,5508:485,-85,-58,0,0,0.103361 -5443,5508:384,-84,-58,0,0,0.102337 -5444,5508:383,-83,-58,0,0,0.101257 -5445,5508:382,-82,-58,0,0,0.0910419 -5446,5508:381,-81,-58,0,0,0.0810186 -5447,5508:380,-80,-58,0,0,0.0852868 -5448,5507:489,-79,-58,0,0,0.0895731 -5449,5507:488,-78,-58,0,0,0.0977496 -5450,5507:487,-77,-58,0,0,0.100057 -5451,5507:486,-76,-58,0,0,0.100075 -5452,5507:485,-75,-58,0,0,0.0994295 -5453,5507:384,-74,-58,0,0,0.0989247 -5454,5507:383,-73,-58,0,0,0.0985132 -5455,5507:382,-72,-58,0,0,0.0945707 -5456,5507:381,-71,-58,0,0,0.0883243 -5457,5507:380,-70,-58,0,0,0.0850147 -5458,5506:489,-69,-58,0,0,0.0822278 -5459,5506:488,-68,-58,0,0,0.0799088 -5460,5506:487,-67,-58,0,0,0.0788725 -5461,5506:486,-66,-58,0,0,0.0787009 -5462,5506:485,-65,-58,0,0,0.083367 -5463,5506:384,-64,-58,0,0,0.0901108 -5464,5506:383,-63,-58,0,0,0.0913826 -5465,5506:382,-62,-58,0,0,0.0934071 -5466,5505:488,-58,-58,0,0,0.0794868 -5467,5505:486,-56,-58,0,0,0.0778265 -5468,5505:485,-55,-58,0,0,0.0767056 -5469,5505:384,-54,-58,0,0,0.0750416 -5470,5505:383,-53,-58,0,0,0.0750488 -5471,5505:382,-52,-58,0,0,0.0750416 -5472,5505:381,-51,-58,0,0,0.0750201 -5473,5505:380,-50,-58,0,0,0.0749988 -5474,5504:489,-49,-58,0,0,0.0750131 -5475,5504:488,-48,-58,0,0,0.0749775 -5476,5504:487,-47,-58,0,0,0.0749631 -5477,5504:486,-46,-58,0,0,0.0749562 -5478,5504:485,-45,-58,0,0,0.0749562 -5479,5504:384,-44,-58,0,0,0.0749631 -5480,5504:383,-43,-58,0,0,0.0749631 -5481,5504:382,-42,-58,0,0,0.0749631 -5482,5504:381,-41,-58,0,0,0.0749631 -5483,5504:380,-40,-58,0,0,0.0749703 -5484,5503:489,-39,-58,0,0,0.0749775 -5485,5503:488,-38,-58,0,0,0.0749846 -5486,5503:487,-37,-58,0,0,0.0749916 -5487,5503:486,-36,-58,0,0,0.0749916 -5488,5503:485,-35,-58,0,0,0.0749916 -5489,5503:384,-34,-58,0,0,0.0749916 -5490,5503:383,-33,-58,0,0,0.0749916 -5491,5503:382,-32,-58,0,0,0.0749916 -5492,5503:381,-31,-58,0,0,0.0749916 -5493,5503:380,-30,-58,0,0,0.0749846 -5494,5502:489,-29,-58,0,0,0.0749846 -5495,5502:488,-28,-58,0,0,0.0749846 -5496,5502:487,-27,-58,0,0,0.0749775 -5497,5502:486,-26,-58,0,0,0.0749775 -5498,5502:485,-25,-58,0,0,0.0749703 -5499,5502:384,-24,-58,0,0,0.0749631 -5500,5502:383,-23,-58,0,0,0.0749562 -5501,5502:382,-22,-58,0,0,0.074949 -5502,5502:381,-21,-58,0,0,0.0749418 -5503,5502:380,-20,-58,0,0,0.0749275 -5504,5501:489,-19,-58,0,0,0.0749062 -5505,5501:488,-18,-58,0,0,0.074892 -5506,5501:487,-17,-58,0,0,0.0748777 -5507,5501:486,-16,-58,0,0,0.0748564 -5508,5501:485,-15,-58,0,0,0.0748493 -5509,5501:384,-14,-58,0,0,0.0748493 -5510,5501:383,-13,-58,0,0,0.0748493 -5511,5501:382,-12,-58,0,0,0.0748564 -5512,5501:381,-11,-58,0,0,0.0748636 -5513,5501:380,-10,-58,0,0,0.0748636 -5514,5500:489,-9,-58,0,0,0.0748777 -5515,5500:488,-8,-58,0,0,0.0748849 -5516,5500:487,-7,-58,0,0,0.0748849 -5517,5500:486,-6,-58,0,0,0.0748636 -5518,5500:485,-5,-58,0,0,0.0748564 -5519,5500:384,-4,-58,0,0,0.0748493 -5520,5500:383,-3,-58,0,0,0.0748421 -5521,5500:382,-2,-58,0,0,0.0748564 -5522,5500:381,-1,-58,0,0,0.0748777 -5523,3500:381,0,-58,0,0,0.074892 -5524,3500:381,1,-58,0,0,0.0749062 -5525,3500:382,2,-58,0,0,0.0748777 -5526,3500:383,3,-58,0,0,0.0748636 -5527,3500:384,4,-58,0,0,0.0748705 -5528,3500:485,5,-58,0,0,0.0748849 -5529,3500:486,6,-58,0,0,0.074899 -5530,3500:487,7,-58,0,0,0.0749062 -5531,3500:488,8,-58,0,0,0.0749275 -5532,3500:489,9,-58,0,0,0.0749418 -5533,3501:380,10,-58,0,0,0.0749562 -5534,3501:381,11,-58,0,0,0.0749631 -5535,3501:382,12,-58,0,0,0.0749562 -5536,3501:383,13,-58,0,0,0.074949 -5537,3501:384,14,-58,0,0,0.0748777 -5538,3501:485,15,-58,0,0,0.0748493 -5539,3501:486,16,-58,0,0,0.0748137 -5540,3501:487,17,-58,0,0,0.0747852 -5541,3501:488,18,-58,0,0,0.0747711 -5542,3501:489,19,-58,0,0,0.0747711 -5543,3502:380,20,-58,0,0,0.0747781 -5544,3502:381,21,-58,0,0,0.0747781 -5545,3502:382,22,-58,0,0,0.0747781 -5546,3502:383,23,-58,0,0,0.0747711 -5547,3502:384,24,-58,0,0,0.0747781 -5548,3502:485,25,-58,0,0,0.074764 -5549,3502:486,26,-58,0,0,0.0748208 -5550,3502:487,27,-58,0,0,0.0748493 -5551,3502:488,28,-58,0,0,0.0748849 -5552,3502:489,29,-58,0,0,0.0749275 -5553,3503:380,30,-58,0,0,0.0749775 -5554,3503:381,31,-58,0,0,0.0749703 -5555,3503:382,32,-58,0,0,0.0748705 -5556,3503:383,33,-58,0,0,0.0749062 -5557,3503:384,34,-58,0,0,0.0749133 -5558,3503:485,35,-58,0,0,0.0749062 -5559,3503:486,36,-58,0,0,0.0749062 -5560,3503:487,37,-58,0,0,0.0748705 -5561,3503:488,38,-58,0,0,0.0748421 -5562,3503:489,39,-58,0,0,0.0748349 -5563,3504:380,40,-58,0,0,0.0748349 -5564,3504:381,41,-58,0,0,0.074828 -5565,3504:382,42,-58,0,0,0.0748493 -5566,3504:383,43,-58,0,0,0.0748849 -5567,3504:384,44,-58,0,0,0.0749133 -5568,3504:485,45,-58,0,0,0.0749275 -5569,3504:486,46,-58,0,0,0.0749346 -5570,3504:487,47,-58,0,0,0.0749418 -5571,3504:488,48,-58,0,0,0.0749631 -5572,3504:489,49,-58,0,0,0.0749562 -5573,3505:380,50,-58,0,0,0.0749775 -5574,3505:381,51,-58,0,0,0.0749775 -5575,3505:382,52,-58,0,0,0.0750201 -5576,3505:383,53,-58,0,0,0.0750201 -5577,3505:384,54,-58,0,0,0.0750273 -5578,3505:485,55,-58,0,0,0.0750131 -5579,3505:486,56,-58,0,0,0.0749775 -5580,3505:487,57,-58,0,0,0.0749562 -5581,3505:488,58,-58,0,0,0.0749418 -5582,3505:489,59,-58,0,0,0.0749346 -5583,3506:380,60,-58,0,0,0.0749275 -5584,3506:381,61,-58,0,0,0.0749133 -5585,3506:382,62,-58,0,0,0.0750273 -5586,3506:383,63,-58,0,0,0.0749133 -5587,3506:384,64,-58,0,0,0.0749275 -5588,3506:485,65,-58,0,0,0.0749418 -5589,3506:486,66,-58,0,0,0.0749562 -5590,3506:487,67,-58,0,0,0.0749703 -5591,3506:488,68,-58,0,0,0.0749703 -5592,3506:489,69,-58,0,0,0.074949 -5593,3507:380,70,-58,0,0,0.0749205 -5594,3507:381,71,-58,0,0,0.074892 -5595,3507:382,72,-58,0,0,0.074899 -5596,3507:384,74,-58,0,0,0.0749562 -5597,3507:485,75,-58,0,0,0.0749275 -5598,3507:486,76,-58,0,0,0.074899 -5599,3507:487,77,-58,0,0,0.0749133 -5600,3507:488,78,-58,0,0,0.0749205 -5601,3507:489,79,-58,0,0,0.0749418 -5602,3508:380,80,-58,0,0,0.074949 -5603,3508:381,81,-58,0,0,0.0749346 -5604,3508:382,82,-58,0,0,0.0749346 -5605,3508:383,83,-58,0,0,0.0749846 -5606,3508:384,84,-58,0,0,0.0749916 -5607,3508:485,85,-58,0,0,0.0749846 -5608,3508:486,86,-58,0,0,0.0749846 -5609,3508:487,87,-58,0,0,0.0749846 -5610,3508:488,88,-58,0,0,0.0749631 -5611,3508:489,89,-58,0,0,0.0751771 -5612,3509:380,90,-58,0,0,0.0758803 -5613,3509:381,91,-58,0,0,0.0749916 -5614,3509:382,92,-58,0,0,0.075006 -5615,3509:383,93,-58,0,0,0.0750273 -5616,3509:384,94,-58,0,0,0.0750488 -5617,3509:485,95,-58,0,0,0.0750702 -5618,3509:486,96,-58,0,0,0.0751128 -5619,3509:487,97,-58,0,0,0.0751701 -5620,3509:488,98,-58,0,0,0.0752129 -5621,3509:489,99,-58,0,0,0.0752487 -5622,3510:380,100,-58,0,0,0.0751128 -5623,3510:381,101,-58,0,0,0.0750843 -5624,3510:382,102,-58,0,0,0.0750843 -5625,3510:383,103,-58,0,0,0.075063 -5626,3510:384,104,-58,0,0,0.0750558 -5627,3510:485,105,-58,0,0,0.0750273 -5628,3510:486,106,-58,0,0,0.075006 -5629,3510:487,107,-58,0,0,0.0749846 -5630,3510:488,108,-58,0,0,0.0749775 -5631,3510:489,109,-58,0,0,0.0749775 -5632,3511:380,110,-58,0,0,0.0749846 -5633,3511:381,111,-58,0,0,0.0749775 -5634,3511:382,112,-58,0,0,0.0749562 -5635,3511:383,113,-58,0,0,0.0749846 -5636,3511:384,114,-58,0,0,0.0750131 -5637,3511:485,115,-58,0,0,0.075006 -5638,3511:486,116,-58,0,0,0.0749988 -5639,3511:487,117,-58,0,0,0.0750702 -5640,3511:488,118,-58,0,0,0.0753489 -5641,3511:489,119,-58,0,0,0.0773192 -5642,3512:380,120,-58,0,0,0.0819182 -5643,3512:381,121,-58,0,0,0.0841872 -5644,3512:382,122,-58,0,0,0.0844251 -5645,3512:383,123,-58,0,0,0.084775 -5646,3512:384,124,-58,0,0,0.0836814 -5647,3512:485,125,-58,0,0,0.0772092 -5648,3512:486,126,-58,0,0,0.0794491 -5649,3512:487,127,-58,0,0,0.076234 -5650,3512:488,128,-58,0,0,0.0765384 -5651,3512:489,129,-58,0,0,0.0774584 -5652,3513:380,130,-58,0,0,0.0779296 -5653,3513:381,131,-58,0,0,0.0768076 -5654,3513:382,132,-58,0,0,0.0752916 -5655,3513:383,133,-58,0,0,0.0753203 -5656,3513:384,134,-58,0,0,0.0755207 -5657,3513:485,135,-58,0,0,0.0756355 -5658,3513:486,136,-58,0,0,0.0756932 -5659,3513:487,137,-58,0,0,0.07565 -5660,3513:488,138,-58,0,0,0.0755926 -5661,3513:489,139,-58,0,0,0.0755639 -5662,3514:380,140,-58,0,0,0.0758443 -5663,3514:381,141,-58,0,0,0.0761327 -5664,3514:382,142,-58,0,0,0.0762413 -5665,3514:383,143,-58,0,0,0.0763137 -5666,3514:384,144,-58,0,0,0.0769462 -5667,3514:485,145,-58,0,0,0.0766475 -5668,3514:486,146,-58,0,0,0.0770046 -5669,3514:487,147,-58,0,0,0.075765 -5670,3514:488,148,-58,0,0,0.0753489 -5671,3514:489,149,-58,0,0,0.0755998 -5672,3515:380,150,-58,0,0,0.0752916 -5673,3515:381,151,-58,0,0,0.0750558 -5674,3515:382,152,-58,0,0,0.0750201 -5675,3515:383,153,-58,0,0,0.0751486 -5676,3515:384,154,-58,0,0,0.0750702 -5677,3515:485,155,-58,0,0,0.0750987 -5678,3515:486,156,-58,0,0,0.0750702 -5679,3515:487,157,-58,0,0,0.0750488 -5680,3515:488,158,-58,0,0,0.0750416 -5681,3515:489,159,-58,0,0,0.0750345 -5682,3516:380,160,-58,0,0,0.0750558 -5683,3516:381,161,-58,0,0,0.0750488 -5684,3516:382,162,-58,0,0,0.075063 -5685,3516:383,163,-58,0,0,0.0750843 -5686,3516:384,164,-58,0,0,0.0750843 -5687,3516:485,165,-58,0,0,0.0750702 -5688,3516:486,166,-58,0,0,0.0750987 -5689,3516:487,167,-58,0,0,0.0751059 -5690,3516:488,168,-58,0,0,0.0750987 -5691,3516:489,169,-58,0,0,0.0750915 -5692,3517:380,170,-58,0,0,0.0750702 -5693,3517:381,171,-58,0,0,0.0752559 -5694,3517:382,172,-58,0,0,0.0755854 -5695,3517:383,173,-58,0,0,0.075528 -5696,3517:384,174,-58,0,0,0.0751701 -5697,3517:485,175,-58,0,0,0.0751059 -5698,3517:486,176,-58,0,0,0.0774291 -5699,3517:487,177,-58,0,0,0.0803479 -5700,3517:488,178,-58,0,0,0.0784777 -5701,3517:489,179,-58,0,0,0.0764659 -5702,3518:380,180,-58,0,0,0.0818408 -5703,5518:370,-180,-57,0,0,0.0915705 -5704,5517:479,-179,-57,0,0,0.0912632 -5705,5517:478,-178,-57,0,0,0.0919986 -5706,5517:477,-177,-57,0,0,0.0913909 -5707,5517:476,-176,-57,0,0,0.0899762 -5708,5517:475,-175,-57,0,0,0.0895396 -5709,5517:374,-174,-57,0,0,0.0876071 -5710,5517:373,-173,-57,0,0,0.0861565 -5711,5517:372,-172,-57,0,0,0.0849267 -5712,5517:371,-171,-57,0,0,0.0846875 -5713,5517:370,-170,-57,0,0,0.0871157 -5714,5516:479,-169,-57,0,0,0.0828892 -5715,5516:478,-168,-57,0,0,0.0818255 -5716,5516:477,-167,-57,0,0,0.0801357 -5717,5516:476,-166,-57,0,0,0.0788502 -5718,5516:475,-165,-57,0,0,0.0793366 -5719,5516:374,-164,-57,0,0,0.0808504 -5720,5516:373,-163,-57,0,0,0.0821656 -5721,5516:372,-162,-57,0,0,0.0839735 -5722,5516:371,-161,-57,0,0,0.084576 -5723,5516:370,-160,-57,0,0,0.0849347 -5724,5515:479,-159,-57,0,0,0.085648 -5725,5515:478,-158,-57,0,0,0.0860109 -5726,5515:477,-157,-57,0,0,0.0855435 -5727,5515:476,-156,-57,0,0,0.0848548 -5728,5515:475,-155,-57,0,0,0.084839 -5729,5515:374,-154,-57,0,0,0.0845602 -5730,5515:373,-153,-57,0,0,0.0844806 -5731,5515:372,-152,-57,0,0,0.0850786 -5732,5515:371,-151,-57,0,0,0.0852626 -5733,5515:370,-150,-57,0,0,0.0882168 -5734,5514:479,-149,-57,0,0,0.0860837 -5735,5514:478,-148,-57,0,0,0.0846795 -5736,5514:477,-147,-57,0,0,0.0860028 -5737,5514:476,-146,-57,0,0,0.0891717 -5738,5514:475,-145,-57,0,0,0.0893639 -5739,5514:374,-144,-57,0,0,0.0894561 -5740,5514:373,-143,-57,0,0,0.0884567 -5741,5514:372,-142,-57,0,0,0.0898081 -5742,5514:371,-141,-57,0,0,0.0917159 -5743,5514:370,-140,-57,0,0,0.0890969 -5744,5513:479,-139,-57,0,0,0.0930771 -5745,5513:478,-138,-57,0,0,0.0958986 -5746,5513:477,-137,-57,0,0,0.0950912 -5747,5513:476,-136,-57,0,0,0.0909228 -5748,5513:475,-135,-57,0,0,0.092489 -5749,5513:374,-134,-57,0,0,0.0966228 -5750,5513:373,-133,-57,0,0,0.0979763 -5751,5513:372,-132,-57,0,0,0.0996966 -5752,5513:371,-131,-57,0,0,0.099586 -5753,5513:370,-130,-57,0,0,0.0992458 -5754,5512:479,-129,-57,0,0,0.100344 -5755,5512:478,-128,-57,0,0,0.10136 -5756,5512:477,-127,-57,0,0,0.102082 -5757,5512:476,-126,-57,0,0,0.103247 -5758,5512:475,-125,-57,0,0,0.10228 -5759,5512:374,-124,-57,0,0,0.100911 -5760,5512:373,-123,-57,0,0,0.0999736 -5761,5512:372,-122,-57,0,0,0.100474 -5762,5512:371,-121,-57,0,0,0.101182 -5763,5512:370,-120,-57,0,0,0.10319 -5764,5511:479,-119,-57,0,0,0.103028 -5765,5511:478,-118,-57,0,0,0.104327 -5766,5511:477,-117,-57,0,0,0.106507 -5767,5511:476,-116,-57,0,0,0.108667 -5768,5511:475,-115,-57,0,0,0.107587 -5769,5511:374,-114,-57,0,0,0.110714 -5770,5511:373,-113,-57,0,0,0.11117 -5771,5511:372,-112,-57,0,0,0.112322 -5772,5511:371,-111,-57,0,0,0.109756 -5773,5511:370,-110,-57,0,0,0.106331 -5774,5510:479,-109,-57,0,0,0.108071 -5775,5510:478,-108,-57,0,0,0.11037 -5776,5510:477,-107,-57,0,0,0.110562 -5777,5510:476,-106,-57,0,0,0.110249 -5778,5510:475,-105,-57,0,0,0.109566 -5779,5510:374,-104,-57,0,0,0.108687 -5780,5510:373,-103,-57,0,0,0.107429 -5781,5510:372,-102,-57,0,0,0.104077 -5782,5510:371,-101,-57,0,0,0.101556 -5783,5510:370,-100,-57,0,0,0.103323 -5784,5509:479,-99,-57,0,0,0.102649 -5785,5509:478,-98,-57,0,0,0.100112 -5786,5509:477,-97,-57,0,0,0.099586 -5787,5509:476,-96,-57,0,0,0.100818 -5788,5509:475,-95,-57,0,0,0.0996136 -5789,5509:374,-94,-57,0,0,0.0997334 -5790,5509:373,-93,-57,0,0,0.100455 -5791,5509:372,-92,-57,0,0,0.100958 -5792,5509:371,-91,-57,0,0,0.0986869 -5793,5509:370,-90,-57,0,0,0.102148 -5794,5508:479,-89,-57,0,0,0.101763 -5795,5508:478,-88,-57,0,0,0.107016 -5796,5508:477,-87,-57,0,0,0.110774 -5797,5508:476,-86,-57,0,0,0.108468 -5798,5508:475,-85,-57,0,0,0.103991 -5799,5508:374,-84,-57,0,0,0.103609 -5800,5508:373,-83,-57,0,0,0.105339 -5801,5508:372,-82,-57,0,0,0.106448 -5802,5508:371,-81,-57,0,0,0.100874 -5803,5508:370,-80,-57,0,0,0.0867406 -5804,5507:479,-79,-57,0,0,0.0863265 -5805,5507:478,-78,-57,0,0,0.088316 -5806,5507:477,-77,-57,0,0,0.0939216 -5807,5507:476,-76,-57,0,0,0.100011 -5808,5507:475,-75,-57,0,0,0.0989614 -5809,5507:374,-74,-57,0,0,0.100409 -5810,5507:373,-73,-57,0,0,0.10196 -5811,5507:372,-72,-57,0,0,0.100298 -5812,5507:371,-71,-57,0,0,0.0977767 -5813,5507:370,-70,-57,0,0,0.092558 -5814,5506:479,-69,-57,0,0,0.0889802 -5815,5506:478,-68,-57,0,0,0.0819335 -5816,5506:477,-67,-57,0,0,0.0851426 -5817,5506:476,-66,-57,0,0,0.0820652 -5818,5506:475,-65,-57,0,0,0.0817328 -5819,5506:374,-64,-57,0,0,0.0815943 -5820,5506:373,-63,-57,0,0,0.081548 -5821,5506:372,-62,-57,0,0,0.0876976 -5822,5506:371,-61,-57,0,0,0.0820574 -5823,5506:370,-60,-57,0,0,0.0871483 -5824,5505:477,-57,-57,0,0,0.0793666 -5825,5505:476,-56,-57,0,0,0.0771141 -5826,5505:475,-55,-57,0,0,0.0766111 -5827,5505:374,-54,-57,0,0,0.0759379 -5828,5505:373,-53,-57,0,0,0.07565 -5829,5505:372,-52,-57,0,0,0.0749775 -5830,5505:371,-51,-57,0,0,0.0750273 -5831,5505:370,-50,-57,0,0,0.0750131 -5832,5504:479,-49,-57,0,0,0.0749988 -5833,5504:478,-48,-57,0,0,0.0749846 -5834,5504:477,-47,-57,0,0,0.0749703 -5835,5504:476,-46,-57,0,0,0.0749703 -5836,5504:475,-45,-57,0,0,0.0749775 -5837,5504:374,-44,-57,0,0,0.0749703 -5838,5504:373,-43,-57,0,0,0.074949 -5839,5504:372,-42,-57,0,0,0.0749418 -5840,5504:371,-41,-57,0,0,0.074949 -5841,5504:370,-40,-57,0,0,0.0749562 -5842,5503:479,-39,-57,0,0,0.0749631 -5843,5503:478,-38,-57,0,0,0.0749631 -5844,5503:477,-37,-57,0,0,0.0749703 -5845,5503:476,-36,-57,0,0,0.0749775 -5846,5503:475,-35,-57,0,0,0.0749916 -5847,5503:374,-34,-57,0,0,0.0749988 -5848,5503:373,-33,-57,0,0,0.0749988 -5849,5503:372,-32,-57,0,0,0.0749988 -5850,5503:371,-31,-57,0,0,0.0749916 -5851,5503:370,-30,-57,0,0,0.0749916 -5852,5502:479,-29,-57,0,0,0.0749916 -5853,5502:478,-28,-57,0,0,0.0749916 -5854,5502:477,-27,-57,0,0,0.0749846 -5855,5502:476,-26,-57,0,0,0.0749846 -5856,5502:475,-25,-57,0,0,0.0749775 -5857,5502:374,-24,-57,0,0,0.0749703 -5858,5502:373,-23,-57,0,0,0.0749631 -5859,5502:372,-22,-57,0,0,0.074949 -5860,5502:371,-21,-57,0,0,0.0749346 -5861,5502:370,-20,-57,0,0,0.0749205 -5862,5501:479,-19,-57,0,0,0.074899 -5863,5501:478,-18,-57,0,0,0.0748777 -5864,5501:477,-17,-57,0,0,0.0748636 -5865,5501:476,-16,-57,0,0,0.0748564 -5866,5501:475,-15,-57,0,0,0.0748493 -5867,5501:374,-14,-57,0,0,0.0748493 -5868,5501:373,-13,-57,0,0,0.0748564 -5869,5501:372,-12,-57,0,0,0.0748564 -5870,5501:371,-11,-57,0,0,0.0748705 -5871,5501:370,-10,-57,0,0,0.0748777 -5872,5500:479,-9,-57,0,0,0.0748705 -5873,5500:478,-8,-57,0,0,0.0748705 -5874,5500:477,-7,-57,0,0,0.0748705 -5875,5500:476,-6,-57,0,0,0.0748705 -5876,5500:475,-5,-57,0,0,0.0748636 -5877,5500:374,-4,-57,0,0,0.0748564 -5878,5500:373,-3,-57,0,0,0.0748493 -5879,5500:372,-2,-57,0,0,0.0748564 -5880,5500:371,-1,-57,0,0,0.0748564 -5881,3500:371,0,-57,0,0,0.0748636 -5882,3500:371,1,-57,0,0,0.0748705 -5883,3500:372,2,-57,0,0,0.074892 -5884,3500:373,3,-57,0,0,0.0748849 -5885,3500:374,4,-57,0,0,0.0748777 -5886,3500:475,5,-57,0,0,0.0748777 -5887,3500:476,6,-57,0,0,0.074892 -5888,3500:477,7,-57,0,0,0.0749062 -5889,3500:478,8,-57,0,0,0.0749133 -5890,3500:479,9,-57,0,0,0.0749275 -5891,3501:370,10,-57,0,0,0.074949 -5892,3501:371,11,-57,0,0,0.0749703 -5893,3501:372,12,-57,0,0,0.0749562 -5894,3501:373,13,-57,0,0,0.0749562 -5895,3501:374,14,-57,0,0,0.0749562 -5896,3501:475,15,-57,0,0,0.0749133 -5897,3501:476,16,-57,0,0,0.0748636 -5898,3501:477,17,-57,0,0,0.0748349 -5899,3501:478,18,-57,0,0,0.0747711 -5900,3501:479,19,-57,0,0,0.0747425 -5901,3502:370,20,-57,0,0,0.0748137 -5902,3502:371,21,-57,0,0,0.0748065 -5903,3502:372,22,-57,0,0,0.074764 -5904,3502:373,23,-57,0,0,0.074764 -5905,3502:374,24,-57,0,0,0.074764 -5906,3502:475,25,-57,0,0,0.0747497 -5907,3502:476,26,-57,0,0,0.074892 -5908,3502:477,27,-57,0,0,0.0750558 -5909,3502:478,28,-57,0,0,0.0753272 -5910,3502:479,29,-57,0,0,0.0753344 -5911,3503:370,30,-57,0,0,0.0752273 -5912,3503:371,31,-57,0,0,0.0751987 -5913,3503:372,32,-57,0,0,0.0750843 -5914,3503:373,33,-57,0,0,0.0748137 -5915,3503:374,34,-57,0,0,0.0748493 -5916,3503:475,35,-57,0,0,0.0748636 -5917,3503:476,36,-57,0,0,0.0748705 -5918,3503:477,37,-57,0,0,0.0748705 -5919,3503:478,38,-57,0,0,0.0748636 -5920,3503:479,39,-57,0,0,0.0748564 -5921,3504:370,40,-57,0,0,0.074828 -5922,3504:371,41,-57,0,0,0.0748493 -5923,3504:372,42,-57,0,0,0.0749062 -5924,3504:373,43,-57,0,0,0.0749631 -5925,3504:374,44,-57,0,0,0.0748349 -5926,3504:475,45,-57,0,0,0.0748493 -5927,3504:476,46,-57,0,0,0.0748705 -5928,3504:477,47,-57,0,0,0.0748777 -5929,3504:478,48,-57,0,0,0.0748705 -5930,3504:479,49,-57,0,0,0.0748705 -5931,3505:370,50,-57,0,0,0.0748849 -5932,3505:371,51,-57,0,0,0.0749062 -5933,3505:372,52,-57,0,0,0.0749133 -5934,3505:373,53,-57,0,0,0.0749275 -5935,3505:374,54,-57,0,0,0.0749346 -5936,3505:475,55,-57,0,0,0.0749275 -5937,3505:476,56,-57,0,0,0.0749775 -5938,3505:477,57,-57,0,0,0.0749346 -5939,3505:478,58,-57,0,0,0.0749418 -5940,3505:479,59,-57,0,0,0.0749418 -5941,3506:370,60,-57,0,0,0.0749418 -5942,3506:371,61,-57,0,0,0.0749631 -5943,3506:372,62,-57,0,0,0.0749562 -5944,3506:373,63,-57,0,0,0.0749562 -5945,3506:374,64,-57,0,0,0.0749631 -5946,3506:475,65,-57,0,0,0.0749703 -5947,3506:476,66,-57,0,0,0.0749846 -5948,3506:477,67,-57,0,0,0.0749916 -5949,3506:478,68,-57,0,0,0.0749775 -5950,3506:479,69,-57,0,0,0.0750131 -5951,3507:370,70,-57,0,0,0.0749562 -5952,3507:371,71,-57,0,0,0.0751059 -5953,3507:372,72,-57,0,0,0.0749275 -5954,3507:374,74,-57,0,0,0.0752559 -5955,3507:475,75,-57,0,0,0.0757937 -5956,3507:476,76,-57,0,0,0.0749846 -5957,3507:477,77,-57,0,0,0.074899 -5958,3507:478,78,-57,0,0,0.0753417 -5959,3507:479,79,-57,0,0,0.0749916 -5960,3508:370,80,-57,0,0,0.0749631 -5961,3508:371,81,-57,0,0,0.0750273 -5962,3508:372,82,-57,0,0,0.075063 -5963,3508:373,83,-57,0,0,0.0754562 -5964,3508:374,84,-57,0,0,0.0748705 -5965,3508:475,85,-57,0,0,0.0749346 -5966,3508:476,86,-57,0,0,0.0749418 -5967,3508:477,87,-57,0,0,0.0749346 -5968,3508:478,88,-57,0,0,0.074892 -5969,3508:479,89,-57,0,0,0.0755424 -5970,3509:370,90,-57,0,0,0.0758155 -5971,3509:371,91,-57,0,0,0.0770046 -5972,3509:372,92,-57,0,0,0.0764296 -5973,3509:373,93,-57,0,0,0.0754779 -5974,3509:374,94,-57,0,0,0.0749916 -5975,3509:475,95,-57,0,0,0.0750201 -5976,3509:476,96,-57,0,0,0.0750416 -5977,3509:477,97,-57,0,0,0.075063 -5978,3509:478,98,-57,0,0,0.0750702 -5979,3509:479,99,-57,0,0,0.0750773 -5980,3510:370,100,-57,0,0,0.0750773 -5981,3510:371,101,-57,0,0,0.075063 -5982,3510:372,102,-57,0,0,0.0750488 -5983,3510:373,103,-57,0,0,0.075006 -5984,3510:374,104,-57,0,0,0.075006 -5985,3510:475,105,-57,0,0,0.0750131 -5986,3510:476,106,-57,0,0,0.0749916 -5987,3510:477,107,-57,0,0,0.0749916 -5988,3510:478,108,-57,0,0,0.0749916 -5989,3510:479,109,-57,0,0,0.0749846 -5990,3511:370,110,-57,0,0,0.0749631 -5991,3511:371,111,-57,0,0,0.0749562 -5992,3511:372,112,-57,0,0,0.0749631 -5993,3511:373,113,-57,0,0,0.0749346 -5994,3511:374,114,-57,0,0,0.0757722 -5995,3511:475,115,-57,0,0,0.0779075 -5996,3511:476,116,-57,0,0,0.0752415 -5997,3511:477,117,-57,0,0,0.0751558 -5998,3511:478,118,-57,0,0,0.0784555 -5999,3511:479,119,-57,0,0,0.0795921 -6000,3512:370,120,-57,0,0,0.0804619 -6001,3512:371,121,-57,0,0,0.0847113 -6002,3512:372,122,-57,0,0,0.0877551 -6003,3512:373,123,-57,0,0,0.0883079 -6004,3512:374,124,-57,0,0,0.0889802 -6005,3512:475,125,-57,0,0,0.0891717 -6006,3512:476,126,-57,0,0,0.0889469 -6007,3512:477,127,-57,0,0,0.0878704 -6008,3512:478,128,-57,0,0,0.0874676 -6009,3512:479,129,-57,0,0,0.0853911 -6010,3513:370,130,-57,0,0,0.0864725 -6011,3513:371,131,-57,0,0,0.0867814 -6012,3513:372,132,-57,0,0,0.0906516 -6013,3513:373,133,-57,0,0,0.08959 -6014,3513:374,134,-57,0,0,0.0781663 -6015,3513:475,135,-57,0,0,0.0827956 -6016,3513:476,136,-57,0,0,0.0795168 -6017,3513:477,137,-57,0,0,0.0800599 -6018,3513:478,138,-57,0,0,0.0754562 -6019,3513:479,139,-57,0,0,0.0753703 -6020,3514:370,140,-57,0,0,0.0765166 -6021,3514:371,141,-57,0,0,0.0780775 -6022,3514:372,142,-57,0,0,0.079577 -6023,3514:373,143,-57,0,0,0.0798634 -6024,3514:374,144,-57,0,0,0.0796146 -6025,3514:475,145,-57,0,0,0.0822899 -6026,3514:476,146,-57,0,0,0.0803785 -6027,3514:477,147,-57,0,0,0.0760606 -6028,3514:478,148,-57,0,0,0.0759019 -6029,3514:479,149,-57,0,0,0.0756141 -6030,3515:370,150,-57,0,0,0.0756787 -6031,3515:371,151,-57,0,0,0.075686 -6032,3515:372,152,-57,0,0,0.0754275 -6033,3515:373,153,-57,0,0,0.0753203 -6034,3515:374,154,-57,0,0,0.0753489 -6035,3515:475,155,-57,0,0,0.0752343 -6036,3515:476,156,-57,0,0,0.0751558 -6037,3515:477,157,-57,0,0,0.0750773 -6038,3515:478,158,-57,0,0,0.0750773 -6039,3515:479,159,-57,0,0,0.075063 -6040,3516:370,160,-57,0,0,0.0750702 -6041,3516:371,161,-57,0,0,0.0750773 -6042,3516:372,162,-57,0,0,0.0750702 -6043,3516:373,163,-57,0,0,0.0750843 -6044,3516:374,164,-57,0,0,0.0750915 -6045,3516:475,165,-57,0,0,0.0751486 -6046,3516:476,166,-57,0,0,0.0752129 -6047,3516:477,167,-57,0,0,0.0752559 -6048,3516:478,168,-57,0,0,0.0758225 -6049,3516:479,169,-57,0,0,0.0782775 -6050,3517:370,170,-57,0,0,0.0796146 -6051,3517:371,171,-57,0,0,0.07969 -6052,3517:372,172,-57,0,0,0.0821503 -6053,3517:373,173,-57,0,0,0.0782108 -6054,3517:374,174,-57,0,0,0.0756285 -6055,3517:475,175,-57,0,0,0.0769462 -6056,3517:476,176,-57,0,0,0.090533 -6057,3517:477,177,-57,0,0,0.088316 -6058,3517:478,178,-57,0,0,0.0825073 -6059,3517:479,179,-57,0,0,0.0931811 -6060,3518:370,180,-57,0,0,0.0915705 -6061,5518:360,-180,-56,0,0,0.110138 -6062,5517:469,-179,-56,0,0,0.0982946 -6063,5517:468,-178,-56,0,0,0.0975051 -6064,5517:467,-177,-56,0,0,0.0968562 -6065,5517:466,-176,-56,0,0,0.0947733 -6066,5517:465,-175,-56,0,0,0.0946147 -6067,5517:364,-174,-56,0,0,0.0952592 -6068,5517:363,-173,-56,0,0,0.0917072 -6069,5517:362,-172,-56,0,0,0.0933723 -6070,5517:361,-171,-56,0,0,0.0919986 -6071,5517:360,-170,-56,0,0,0.0904146 -6072,5516:469,-169,-56,0,0,0.0873611 -6073,5516:468,-168,-56,0,0,0.0859705 -6074,5516:467,-167,-56,0,0,0.0862535 -6075,5516:466,-166,-56,0,0,0.0862212 -6076,5516:465,-165,-56,0,0,0.0856399 -6077,5516:364,-164,-56,0,0,0.0855033 -6078,5516:363,-163,-56,0,0,0.0842109 -6079,5516:362,-162,-56,0,0,0.083926 -6080,5516:361,-161,-56,0,0,0.0845124 -6081,5516:360,-160,-56,0,0,0.0849187 -6082,5515:469,-159,-56,0,0,0.0852946 -6083,5515:468,-158,-56,0,0,0.0856802 -6084,5515:467,-157,-56,0,0,0.0861402 -6085,5515:466,-156,-56,0,0,0.0862535 -6086,5515:465,-155,-56,0,0,0.0866024 -6087,5515:364,-154,-56,0,0,0.0862859 -6088,5515:363,-153,-56,0,0,0.0854954 -6089,5515:362,-152,-56,0,0,0.0860514 -6090,5515:361,-151,-56,0,0,0.0871648 -6091,5515:360,-150,-56,0,0,0.0913058 -6092,5514:469,-149,-56,0,0,0.0929644 -6093,5514:468,-148,-56,0,0,0.092222 -6094,5514:467,-147,-56,0,0,0.0868791 -6095,5514:466,-146,-56,0,0,0.087714 -6096,5514:465,-145,-56,0,0,0.0875908 -6097,5514:364,-144,-56,0,0,0.0921619 -6098,5514:363,-143,-56,0,0,0.0917328 -6099,5514:362,-142,-56,0,0,0.0898753 -6100,5514:361,-141,-56,0,0,0.090855 -6101,5514:360,-140,-56,0,0,0.0914594 -6102,5513:469,-139,-56,0,0,0.0941056 -6103,5513:468,-138,-56,0,0,0.0958899 -6104,5513:467,-137,-56,0,0,0.0957386 -6105,5513:466,-136,-56,0,0,0.0949674 -6106,5513:465,-135,-56,0,0,0.0973334 -6107,5513:364,-134,-56,0,0,0.0989247 -6108,5513:363,-133,-56,0,0,0.0990439 -6109,5513:362,-132,-56,0,0,0.0991813 -6110,5513:361,-131,-56,0,0,0.099752 -6111,5513:360,-130,-56,0,0,0.100502 -6112,5512:469,-129,-56,0,0,0.103066 -6113,5512:468,-128,-56,0,0,0.1028 -6114,5512:467,-127,-56,0,0,0.103418 -6115,5512:466,-126,-56,0,0,0.104567 -6116,5512:465,-125,-56,0,0,0.104058 -6117,5512:364,-124,-56,0,0,0.102167 -6118,5512:363,-123,-56,0,0,0.101537 -6119,5512:362,-122,-56,0,0,0.100837 -6120,5512:361,-121,-56,0,0,0.101904 -6121,5512:360,-120,-56,0,0,0.105029 -6122,5511:469,-119,-56,0,0,0.106663 -6123,5511:468,-118,-56,0,0,0.107301 -6124,5511:467,-117,-56,0,0,0.10817 -6125,5511:466,-116,-56,0,0,0.109235 -6126,5511:465,-115,-56,0,0,0.109857 -6127,5511:364,-114,-56,0,0,0.110108 -6128,5511:363,-113,-56,0,0,0.111668 -6129,5511:362,-112,-56,0,0,0.113795 -6130,5511:361,-111,-56,0,0,0.113774 -6131,5511:360,-110,-56,0,0,0.110229 -6132,5510:469,-109,-56,0,0,0.108866 -6133,5510:468,-108,-56,0,0,0.111587 -6134,5510:467,-107,-56,0,0,0.113495 -6135,5510:466,-106,-56,0,0,0.112476 -6136,5510:465,-105,-56,0,0,0.108458 -6137,5510:364,-104,-56,0,0,0.106262 -6138,5510:363,-103,-56,0,0,0.105252 -6139,5510:362,-102,-56,0,0,0.104827 -6140,5510:361,-101,-56,0,0,0.104576 -6141,5510:360,-100,-56,0,0,0.103304 -6142,5509:469,-99,-56,0,0,0.10212 -6143,5509:468,-98,-56,0,0,0.100837 -6144,5509:467,-97,-56,0,0,0.102857 -6145,5509:466,-96,-56,0,0,0.105252 -6146,5509:465,-95,-56,0,0,0.103886 -6147,5509:364,-94,-56,0,0,0.102271 -6148,5509:363,-93,-56,0,0,0.101547 -6149,5509:362,-92,-56,0,0,0.102205 -6150,5509:361,-91,-56,0,0,0.103953 -6151,5509:360,-90,-56,0,0,0.101988 -6152,5508:469,-89,-56,0,0,0.10165 -6153,5508:468,-88,-56,0,0,0.111485 -6154,5508:467,-87,-56,0,0,0.112887 -6155,5508:466,-86,-56,0,0,0.11032 -6156,5508:465,-85,-56,0,0,0.107301 -6157,5508:364,-84,-56,0,0,0.105912 -6158,5508:363,-83,-56,0,0,0.10814 -6159,5508:362,-82,-56,0,0,0.109606 -6160,5508:361,-81,-56,0,0,0.111893 -6161,5508:360,-80,-56,0,0,0.110299 -6162,5507:469,-79,-56,0,0,0.10027 -6163,5507:468,-78,-56,0,0,0.0920156 -6164,5507:467,-77,-56,0,0,0.0899004 -6165,5507:466,-76,-56,0,0,0.0922133 -6166,5507:465,-75,-56,0,0,0.0959255 -6167,5507:364,-74,-56,0,0,0.0987326 -6168,5507:363,-73,-56,0,0,0.108916 -6169,5507:362,-72,-56,0,0,0.104106 -6170,5507:361,-71,-56,0,0,0.105155 -6171,5507:360,-70,-56,0,0,0.10531 -6172,5506:469,-69,-56,0,0,0.10357 -6173,5506:468,-68,-56,0,0,0.0978492 -6174,5506:467,-67,-56,0,0,0.0966945 -6175,5506:466,-66,-56,0,0,0.0886891 -6176,5506:465,-65,-56,0,0,0.0808733 -6177,5506:364,-64,-56,0,0,0.0796146 -6178,5506:363,-63,-56,0,0,0.0793591 -6179,5506:362,-62,-56,0,0,0.0796071 -6180,5506:361,-61,-56,0,0,0.0796447 -6181,5506:360,-60,-56,0,0,0.0797653 -6182,5505:469,-59,-56,0,0,0.0799164 -6183,5505:468,-58,-56,0,0,0.080007 -6184,5505:467,-57,-56,0,0,0.0780996 -6185,5505:466,-56,-56,0,0,0.0784333 -6186,5505:465,-55,-56,0,0,0.0775981 -6187,5505:364,-54,-56,0,0,0.0763281 -6188,5505:363,-53,-56,0,0,0.0751059 -6189,5505:362,-52,-56,0,0,0.0751059 -6190,5505:361,-51,-56,0,0,0.0749988 -6191,5505:360,-50,-56,0,0,0.0749846 -6192,5504:469,-49,-56,0,0,0.0749775 -6193,5504:468,-48,-56,0,0,0.0749846 -6194,5504:467,-47,-56,0,0,0.0749916 -6195,5504:466,-46,-56,0,0,0.075006 -6196,5504:465,-45,-56,0,0,0.0749988 -6197,5504:364,-44,-56,0,0,0.0749775 -6198,5504:363,-43,-56,0,0,0.0749631 -6199,5504:362,-42,-56,0,0,0.074949 -6200,5504:361,-41,-56,0,0,0.0749275 -6201,5504:360,-40,-56,0,0,0.0749133 -6202,5503:469,-39,-56,0,0,0.0749062 -6203,5503:468,-38,-56,0,0,0.0749205 -6204,5503:467,-37,-56,0,0,0.0749346 -6205,5503:466,-36,-56,0,0,0.0749418 -6206,5503:465,-35,-56,0,0,0.0749703 -6207,5503:364,-34,-56,0,0,0.0749846 -6208,5503:363,-33,-56,0,0,0.0749846 -6209,5503:362,-32,-56,0,0,0.0749916 -6210,5503:361,-31,-56,0,0,0.0749988 -6211,5503:360,-30,-56,0,0,0.0749916 -6212,5502:469,-29,-56,0,0,0.0749916 -6213,5502:468,-28,-56,0,0,0.0749846 -6214,5502:467,-27,-56,0,0,0.0749846 -6215,5502:466,-26,-56,0,0,0.0749846 -6216,5502:465,-25,-56,0,0,0.0749846 -6217,5502:364,-24,-56,0,0,0.0749703 -6218,5502:363,-23,-56,0,0,0.0749631 -6219,5502:362,-22,-56,0,0,0.0749418 -6220,5502:361,-21,-56,0,0,0.0749275 -6221,5502:360,-20,-56,0,0,0.0749133 -6222,5501:469,-19,-56,0,0,0.074899 -6223,5501:468,-18,-56,0,0,0.0748777 -6224,5501:467,-17,-56,0,0,0.0748636 -6225,5501:466,-16,-56,0,0,0.074892 -6226,5501:465,-15,-56,0,0,0.0749275 -6227,5501:364,-14,-56,0,0,0.0749133 -6228,5501:363,-13,-56,0,0,0.0748849 -6229,5501:362,-12,-56,0,0,0.0748777 -6230,5501:361,-11,-56,0,0,0.0748705 -6231,5501:360,-10,-56,0,0,0.0748636 -6232,5500:469,-9,-56,0,0,0.0748705 -6233,5500:468,-8,-56,0,0,0.0748636 -6234,5500:467,-7,-56,0,0,0.0748564 -6235,5500:466,-6,-56,0,0,0.0748636 -6236,5500:465,-5,-56,0,0,0.0748636 -6237,5500:364,-4,-56,0,0,0.0748705 -6238,5500:363,-3,-56,0,0,0.0748705 -6239,5500:362,-2,-56,0,0,0.0748705 -6240,5500:361,-1,-56,0,0,0.0748636 -6241,3500:361,0,-56,0,0,0.0748777 -6242,3500:361,1,-56,0,0,0.0748849 -6243,3500:362,2,-56,0,0,0.0748849 -6244,3500:363,3,-56,0,0,0.0748777 -6245,3500:364,4,-56,0,0,0.0748705 -6246,3500:465,5,-56,0,0,0.0748849 -6247,3500:466,6,-56,0,0,0.074899 -6248,3500:467,7,-56,0,0,0.0749205 -6249,3500:468,8,-56,0,0,0.0749275 -6250,3500:469,9,-56,0,0,0.0749346 -6251,3501:360,10,-56,0,0,0.074949 -6252,3501:361,11,-56,0,0,0.0749418 -6253,3501:362,12,-56,0,0,0.074949 -6254,3501:363,13,-56,0,0,0.0749631 -6255,3501:364,14,-56,0,0,0.074949 -6256,3501:465,15,-56,0,0,0.0749205 -6257,3501:466,16,-56,0,0,0.0749062 -6258,3501:467,17,-56,0,0,0.0748849 -6259,3501:468,18,-56,0,0,0.0748636 -6260,3501:469,19,-56,0,0,0.0747996 -6261,3502:360,20,-56,0,0,0.0747425 -6262,3502:361,21,-56,0,0,0.0748208 -6263,3502:362,22,-56,0,0,0.0748777 -6264,3502:363,23,-56,0,0,0.0748777 -6265,3502:364,24,-56,0,0,0.0748564 -6266,3502:465,25,-56,0,0,0.0748564 -6267,3502:466,26,-56,0,0,0.0748564 -6268,3502:467,27,-56,0,0,0.0748849 -6269,3502:468,28,-56,0,0,0.075006 -6270,3502:469,29,-56,0,0,0.0753417 -6271,3503:360,30,-56,0,0,0.0753631 -6272,3503:361,31,-56,0,0,0.0751486 -6273,3503:362,32,-56,0,0,0.0751771 -6274,3503:363,33,-56,0,0,0.0751843 -6275,3503:364,34,-56,0,0,0.0751344 -6276,3503:465,35,-56,0,0,0.0749062 -6277,3503:466,36,-56,0,0,0.0748849 -6278,3503:467,37,-56,0,0,0.0748636 -6279,3503:468,38,-56,0,0,0.0748705 -6280,3503:469,39,-56,0,0,0.0748777 -6281,3504:360,40,-56,0,0,0.0748705 -6282,3504:361,41,-56,0,0,0.0748493 -6283,3504:362,42,-56,0,0,0.0748705 -6284,3504:363,43,-56,0,0,0.0749346 -6285,3504:364,44,-56,0,0,0.0750201 -6286,3504:465,45,-56,0,0,0.0754061 -6287,3504:466,46,-56,0,0,0.0751987 -6288,3504:467,47,-56,0,0,0.0748137 -6289,3504:468,48,-56,0,0,0.074828 -6290,3504:469,49,-56,0,0,0.0748349 -6291,3505:360,50,-56,0,0,0.0748421 -6292,3505:361,51,-56,0,0,0.0748564 -6293,3505:362,52,-56,0,0,0.0748636 -6294,3505:363,53,-56,0,0,0.0748636 -6295,3505:364,54,-56,0,0,0.0748564 -6296,3505:465,55,-56,0,0,0.0752844 -6297,3505:466,56,-56,0,0,0.0750773 -6298,3505:467,57,-56,0,0,0.074949 -6299,3505:468,58,-56,0,0,0.0749275 -6300,3505:469,59,-56,0,0,0.0749418 -6301,3506:360,60,-56,0,0,0.0749562 -6302,3506:361,61,-56,0,0,0.0749562 -6303,3506:362,62,-56,0,0,0.0750843 -6304,3506:363,63,-56,0,0,0.0749846 -6305,3506:364,64,-56,0,0,0.0750131 -6306,3506:465,65,-56,0,0,0.0751344 -6307,3506:466,66,-56,0,0,0.0750273 -6308,3506:467,67,-56,0,0,0.0750558 -6309,3506:468,68,-56,0,0,0.0758586 -6310,3506:469,69,-56,0,0,0.0779591 -6311,3507:360,70,-56,0,0,0.0765967 -6312,3507:361,71,-56,0,0,0.075974 -6313,3507:362,72,-56,0,0,0.0764296 -6314,3507:364,74,-56,0,0,0.0756285 -6315,3507:465,75,-56,0,0,0.0759452 -6316,3507:466,76,-56,0,0,0.0761256 -6317,3507:467,77,-56,0,0,0.0755926 -6318,3507:468,78,-56,0,0,0.0754921 -6319,3507:469,79,-56,0,0,0.0755207 -6320,3508:360,80,-56,0,0,0.07565 -6321,3508:361,81,-56,0,0,0.0754849 -6322,3508:362,82,-56,0,0,0.0757795 -6323,3508:363,83,-56,0,0,0.0766839 -6324,3508:364,84,-56,0,0,0.0765166 -6325,3508:465,85,-56,0,0,0.076039 -6326,3508:466,86,-56,0,0,0.0747852 -6327,3508:467,87,-56,0,0,0.074892 -6328,3508:468,88,-56,0,0,0.0749062 -6329,3508:469,89,-56,0,0,0.074899 -6330,3509:360,90,-56,0,0,0.0749631 -6331,3509:361,91,-56,0,0,0.0759452 -6332,3509:362,92,-56,0,0,0.0774365 -6333,3509:363,93,-56,0,0,0.0774658 -6334,3509:364,94,-56,0,0,0.0768877 -6335,3509:465,95,-56,0,0,0.0751059 -6336,3509:466,96,-56,0,0,0.0749846 -6337,3509:467,97,-56,0,0,0.0750201 -6338,3509:468,98,-56,0,0,0.0750345 -6339,3509:469,99,-56,0,0,0.0750273 -6340,3510:360,100,-56,0,0,0.0750131 -6341,3510:361,101,-56,0,0,0.075006 -6342,3510:362,102,-56,0,0,0.075006 -6343,3510:363,103,-56,0,0,0.0749988 -6344,3510:364,104,-56,0,0,0.0749916 -6345,3510:465,105,-56,0,0,0.0749988 -6346,3510:466,106,-56,0,0,0.0749988 -6347,3510:467,107,-56,0,0,0.0749846 -6348,3510:468,108,-56,0,0,0.074949 -6349,3510:469,109,-56,0,0,0.0750558 -6350,3511:360,110,-56,0,0,0.0753272 -6351,3511:361,111,-56,0,0,0.0764659 -6352,3511:362,112,-56,0,0,0.0786116 -6353,3511:363,113,-56,0,0,0.0788128 -6354,3511:364,114,-56,0,0,0.0751272 -6355,3511:465,115,-56,0,0,0.0783071 -6356,3511:466,116,-56,0,0,0.0798182 -6357,3511:467,117,-56,0,0,0.0818717 -6358,3511:468,118,-56,0,0,0.0834847 -6359,3511:469,119,-56,0,0,0.083532 -6360,3512:360,120,-56,0,0,0.0847592 -6361,3512:361,121,-56,0,0,0.0846637 -6362,3512:362,122,-56,0,0,0.0854151 -6363,3512:363,123,-56,0,0,0.0881755 -6364,3512:364,124,-56,0,0,0.0888054 -6365,3512:465,125,-56,0,0,0.0896821 -6366,3512:466,126,-56,0,0,0.0895731 -6367,3512:467,127,-56,0,0,0.0901193 -6368,3512:468,128,-56,0,0,0.0904316 -6369,3512:469,129,-56,0,0,0.0912717 -6370,3513:360,130,-56,0,0,0.0931639 -6371,3513:361,131,-56,0,0,0.0930771 -6372,3513:362,132,-56,0,0,0.0912886 -6373,3513:363,133,-56,0,0,0.0934679 -6374,3513:364,134,-56,0,0,0.0952946 -6375,3513:465,135,-56,0,0,0.0940092 -6376,3513:466,136,-56,0,0,0.0893724 -6377,3513:467,137,-56,0,0,0.0870748 -6378,3513:468,138,-56,0,0,0.0881921 -6379,3513:469,139,-56,0,0,0.0833749 -6380,3514:360,140,-56,0,0,0.0811335 -6381,3514:361,141,-56,0,0,0.0838944 -6382,3514:362,142,-56,0,0,0.0841632 -6383,3514:363,143,-56,0,0,0.0868791 -6384,3514:364,144,-56,0,0,0.0855999 -6385,3514:465,145,-56,0,0,0.0886475 -6386,3514:466,146,-56,0,0,0.084021 -6387,3514:467,147,-56,0,0,0.0797653 -6388,3514:468,148,-56,0,0,0.0806217 -6389,3514:469,149,-56,0,0,0.0767638 -6390,3515:360,150,-56,0,0,0.0758225 -6391,3515:361,151,-56,0,0,0.0756932 -6392,3515:362,152,-56,0,0,0.0767494 -6393,3515:363,153,-56,0,0,0.07614 -6394,3515:364,154,-56,0,0,0.0752916 -6395,3515:465,155,-56,0,0,0.0751272 -6396,3515:466,156,-56,0,0,0.0751128 -6397,3515:467,157,-56,0,0,0.0750987 -6398,3515:468,158,-56,0,0,0.0750915 -6399,3515:469,159,-56,0,0,0.0750702 -6400,3516:360,160,-56,0,0,0.0750702 -6401,3516:361,161,-56,0,0,0.0750702 -6402,3516:362,162,-56,0,0,0.0750558 -6403,3516:363,163,-56,0,0,0.075063 -6404,3516:364,164,-56,0,0,0.0750773 -6405,3516:465,165,-56,0,0,0.0751272 -6406,3516:466,166,-56,0,0,0.0755639 -6407,3516:467,167,-56,0,0,0.0813636 -6408,3516:468,168,-56,0,0,0.086448 -6409,3516:469,169,-56,0,0,0.0851905 -6410,3517:360,170,-56,0,0,0.0861402 -6411,3517:361,171,-56,0,0,0.0845522 -6412,3517:362,172,-56,0,0,0.0836263 -6413,3517:363,173,-56,0,0,0.0799012 -6414,3517:364,174,-56,0,0,0.0816328 -6415,3517:465,175,-56,0,0,0.102243 -6416,3517:466,176,-56,0,0,0.11119 -6417,3517:467,177,-56,0,0,0.109016 -6418,3517:468,178,-56,0,0,0.107065 -6419,3517:469,179,-56,0,0,0.110795 -6420,3518:360,180,-56,0,0,0.110138 -6421,5518:350,-180,-55,0,0,0.109736 -6422,5517:459,-179,-55,0,0,0.104942 -6423,5517:458,-178,-55,0,0,0.102092 -6424,5517:457,-177,-55,0,0,0.105339 -6425,5517:456,-176,-55,0,0,0.106145 -6426,5517:455,-175,-55,0,0,0.103446 -6427,5517:354,-174,-55,0,0,0.100967 -6428,5517:353,-173,-55,0,0,0.0978583 -6429,5517:352,-172,-55,0,0,0.0953124 -6430,5517:351,-171,-55,0,0,0.0923426 -6431,5517:350,-170,-55,0,0,0.0912205 -6432,5516:459,-169,-55,0,0,0.0885313 -6433,5516:458,-168,-55,0,0,0.0874349 -6434,5516:457,-167,-55,0,0,0.0874759 -6435,5516:456,-166,-55,0,0,0.0876154 -6436,5516:455,-165,-55,0,0,0.0873693 -6437,5516:354,-164,-55,0,0,0.0872629 -6438,5516:353,-163,-55,0,0,0.0872956 -6439,5516:352,-162,-55,0,0,0.086586 -6440,5516:351,-161,-55,0,0,0.0871321 -6441,5516:350,-160,-55,0,0,0.0877222 -6442,5515:459,-159,-55,0,0,0.087181 -6443,5515:458,-158,-55,0,0,0.0880847 -6444,5515:457,-157,-55,0,0,0.0885397 -6445,5515:456,-156,-55,0,0,0.0877551 -6446,5515:455,-155,-55,0,0,0.0870177 -6447,5515:354,-154,-55,0,0,0.0869851 -6448,5515:353,-153,-55,0,0,0.0868547 -6449,5515:352,-152,-55,0,0,0.0864643 -6450,5515:351,-151,-55,0,0,0.0901025 -6451,5515:350,-150,-55,0,0,0.090626 -6452,5514:459,-149,-55,0,0,0.0964972 -6453,5514:458,-148,-55,0,0,0.0951266 -6454,5514:457,-147,-55,0,0,0.0955961 -6455,5514:456,-146,-55,0,0,0.0920672 -6456,5514:455,-145,-55,0,0,0.0939392 -6457,5514:354,-144,-55,0,0,0.096865 -6458,5514:353,-143,-55,0,0,0.0978946 -6459,5514:352,-142,-55,0,0,0.09784 -6460,5514:351,-141,-55,0,0,0.0980218 -6461,5514:350,-140,-55,0,0,0.101135 -6462,5513:459,-139,-55,0,0,0.103466 -6463,5513:458,-138,-55,0,0,0.0984495 -6464,5513:457,-137,-55,0,0,0.095277 -6465,5513:456,-136,-55,0,0,0.0966854 -6466,5513:455,-135,-55,0,0,0.103637 -6467,5513:354,-134,-55,0,0,0.10165 -6468,5513:353,-133,-55,0,0,0.100149 -6469,5513:352,-132,-55,0,0,0.103095 -6470,5513:351,-131,-55,0,0,0.105068 -6471,5513:350,-130,-55,0,0,0.103342 -6472,5512:459,-129,-55,0,0,0.103676 -6473,5512:458,-128,-55,0,0,0.104682 -6474,5512:457,-127,-55,0,0,0.105513 -6475,5512:456,-126,-55,0,0,0.105649 -6476,5512:455,-125,-55,0,0,0.10449 -6477,5512:354,-124,-55,0,0,0.103867 -6478,5512:353,-123,-55,0,0,0.102687 -6479,5512:352,-122,-55,0,0,0.102573 -6480,5512:351,-121,-55,0,0,0.104653 -6481,5512:350,-120,-55,0,0,0.105834 -6482,5511:459,-119,-55,0,0,0.106653 -6483,5511:458,-118,-55,0,0,0.108637 -6484,5511:457,-117,-55,0,0,0.111689 -6485,5511:456,-116,-55,0,0,0.112753 -6486,5511:455,-115,-55,0,0,0.112209 -6487,5511:354,-114,-55,0,0,0.112189 -6488,5511:353,-113,-55,0,0,0.114752 -6489,5511:352,-112,-55,0,0,0.113072 -6490,5511:351,-111,-55,0,0,0.113175 -6491,5511:350,-110,-55,0,0,0.112928 -6492,5510:459,-109,-55,0,0,0.111607 -6493,5510:458,-108,-55,0,0,0.114252 -6494,5510:457,-107,-55,0,0,0.113661 -6495,5510:456,-106,-55,0,0,0.109816 -6496,5510:455,-105,-55,0,0,0.108002 -6497,5510:354,-104,-55,0,0,0.106928 -6498,5510:353,-103,-55,0,0,0.106175 -6499,5510:352,-102,-55,0,0,0.107498 -6500,5510:351,-101,-55,0,0,0.110249 -6501,5510:350,-100,-55,0,0,0.109245 -6502,5509:459,-99,-55,0,0,0.105902 -6503,5509:458,-98,-55,0,0,0.106009 -6504,5509:457,-97,-55,0,0,0.112825 -6505,5509:456,-96,-55,0,0,0.111597 -6506,5509:455,-95,-55,0,0,0.108081 -6507,5509:354,-94,-55,0,0,0.106741 -6508,5509:353,-93,-55,0,0,0.104875 -6509,5509:352,-92,-55,0,0,0.1056 -6510,5509:351,-91,-55,0,0,0.111078 -6511,5509:350,-90,-55,0,0,0.109335 -6512,5508:459,-89,-55,0,0,0.107666 -6513,5508:458,-88,-55,0,0,0.111872 -6514,5508:457,-87,-55,0,0,0.112353 -6515,5508:456,-86,-55,0,0,0.112969 -6516,5508:455,-85,-55,0,0,0.113392 -6517,5508:354,-84,-55,0,0,0.112804 -6518,5508:353,-83,-55,0,0,0.111709 -6519,5508:352,-82,-55,0,0,0.110179 -6520,5508:351,-81,-55,0,0,0.110815 -6521,5508:350,-80,-55,0,0,0.112281 -6522,5507:459,-79,-55,0,0,0.11419 -6523,5507:458,-78,-55,0,0,0.115024 -6524,5507:457,-77,-55,0,0,0.114231 -6525,5507:456,-76,-55,0,0,0.109045 -6526,5507:455,-75,-55,0,0,0.100242 -6527,5507:354,-74,-55,0,0,0.101669 -6528,5507:353,-73,-55,0,0,0.111505 -6529,5507:352,-72,-55,0,0,0.108856 -6530,5507:351,-71,-55,0,0,0.105824 -6531,5507:350,-70,-55,0,0,0.105533 -6532,5506:459,-69,-55,0,0,0.106898 -6533,5506:458,-68,-55,0,0,0.105387 -6534,5506:457,-67,-55,0,0,0.0937209 -6535,5506:456,-66,-55,0,0,0.0846238 -6536,5506:455,-65,-55,0,0,0.0853189 -6537,5506:354,-64,-55,0,0,0.0848548 -6538,5506:353,-63,-55,0,0,0.080774 -6539,5506:352,-62,-55,0,0,0.0827799 -6540,5506:351,-61,-55,0,0,0.0832963 -6541,5506:350,-60,-55,0,0,0.0844091 -6542,5505:459,-59,-55,0,0,0.0805608 -6543,5505:458,-58,-55,0,0,0.0797805 -6544,5505:457,-57,-55,0,0,0.0785299 -6545,5505:456,-56,-55,0,0,0.0779591 -6546,5505:455,-55,-55,0,0,0.0773044 -6547,5505:354,-54,-55,0,0,0.0759595 -6548,5505:353,-53,-55,0,0,0.0750201 -6549,5505:352,-52,-55,0,0,0.0749988 -6550,5505:351,-51,-55,0,0,0.0749916 -6551,5505:350,-50,-55,0,0,0.0750131 -6552,5504:459,-49,-55,0,0,0.0750201 -6553,5504:458,-48,-55,0,0,0.0750201 -6554,5504:457,-47,-55,0,0,0.0750201 -6555,5504:456,-46,-55,0,0,0.075006 -6556,5504:455,-45,-55,0,0,0.0749846 -6557,5504:354,-44,-55,0,0,0.0749846 -6558,5504:353,-43,-55,0,0,0.0749703 -6559,5504:352,-42,-55,0,0,0.0749562 -6560,5504:351,-41,-55,0,0,0.0749418 -6561,5504:350,-40,-55,0,0,0.0749275 -6562,5503:459,-39,-55,0,0,0.0749205 -6563,5503:458,-38,-55,0,0,0.0749205 -6564,5503:457,-37,-55,0,0,0.0749133 -6565,5503:456,-36,-55,0,0,0.0749346 -6566,5503:455,-35,-55,0,0,0.074949 -6567,5503:354,-34,-55,0,0,0.0749631 -6568,5503:353,-33,-55,0,0,0.0749846 -6569,5503:352,-32,-55,0,0,0.0749916 -6570,5503:351,-31,-55,0,0,0.0749916 -6571,5503:350,-30,-55,0,0,0.0749916 -6572,5502:459,-29,-55,0,0,0.0749916 -6573,5502:458,-28,-55,0,0,0.0749916 -6574,5502:457,-27,-55,0,0,0.0749916 -6575,5502:456,-26,-55,0,0,0.0749916 -6576,5502:455,-25,-55,0,0,0.0749846 -6577,5502:354,-24,-55,0,0,0.0749775 -6578,5502:353,-23,-55,0,0,0.0749562 -6579,5502:352,-22,-55,0,0,0.0749418 -6580,5502:351,-21,-55,0,0,0.0749275 -6581,5502:350,-20,-55,0,0,0.0749133 -6582,5501:459,-19,-55,0,0,0.0749062 -6583,5501:458,-18,-55,0,0,0.074892 -6584,5501:457,-17,-55,0,0,0.074899 -6585,5501:456,-16,-55,0,0,0.0749275 -6586,5501:455,-15,-55,0,0,0.0749988 -6587,5501:354,-14,-55,0,0,0.075006 -6588,5501:353,-13,-55,0,0,0.074949 -6589,5501:352,-12,-55,0,0,0.0749275 -6590,5501:351,-11,-55,0,0,0.0749062 -6591,5501:350,-10,-55,0,0,0.074892 -6592,5500:459,-9,-55,0,0,0.0749062 -6593,5500:458,-8,-55,0,0,0.074892 -6594,5500:457,-7,-55,0,0,0.0748777 -6595,5500:456,-6,-55,0,0,0.0748705 -6596,5500:455,-5,-55,0,0,0.0748849 -6597,5500:354,-4,-55,0,0,0.074892 -6598,5500:353,-3,-55,0,0,0.074899 -6599,5500:352,-2,-55,0,0,0.074892 -6600,5500:351,-1,-55,0,0,0.0748636 -6601,3500:351,0,-55,0,0,0.0748777 -6602,3500:351,1,-55,0,0,0.0748705 -6603,3500:352,2,-55,0,0,0.0748564 -6604,3500:353,3,-55,0,0,0.0748493 -6605,3500:354,4,-55,0,0,0.0748349 -6606,3500:455,5,-55,0,0,0.0748421 -6607,3500:456,6,-55,0,0,0.0748564 -6608,3500:457,7,-55,0,0,0.0748777 -6609,3500:458,8,-55,0,0,0.074899 -6610,3500:459,9,-55,0,0,0.0749133 -6611,3501:350,10,-55,0,0,0.0749346 -6612,3501:351,11,-55,0,0,0.074949 -6613,3501:352,12,-55,0,0,0.0749275 -6614,3501:353,13,-55,0,0,0.0749346 -6615,3501:354,14,-55,0,0,0.0749418 -6616,3501:455,15,-55,0,0,0.074949 -6617,3501:456,16,-55,0,0,0.0749346 -6618,3501:457,17,-55,0,0,0.0749205 -6619,3501:458,18,-55,0,0,0.0749133 -6620,3501:459,19,-55,0,0,0.0748636 -6621,3502:350,20,-55,0,0,0.0748493 -6622,3502:351,21,-55,0,0,0.0748137 -6623,3502:352,22,-55,0,0,0.0747852 -6624,3502:353,23,-55,0,0,0.0748564 -6625,3502:354,24,-55,0,0,0.074949 -6626,3502:455,25,-55,0,0,0.0749631 -6627,3502:456,26,-55,0,0,0.0749988 -6628,3502:457,27,-55,0,0,0.0750201 -6629,3502:458,28,-55,0,0,0.0751486 -6630,3502:459,29,-55,0,0,0.075313 -6631,3503:350,30,-55,0,0,0.0753847 -6632,3503:351,31,-55,0,0,0.0754634 -6633,3503:352,32,-55,0,0,0.0753847 -6634,3503:353,33,-55,0,0,0.0754849 -6635,3503:354,34,-55,0,0,0.0759019 -6636,3503:455,35,-55,0,0,0.0753775 -6637,3503:456,36,-55,0,0,0.0751486 -6638,3503:457,37,-55,0,0,0.0751272 -6639,3503:458,38,-55,0,0,0.0749703 -6640,3503:459,39,-55,0,0,0.0748636 -6641,3504:350,40,-55,0,0,0.0748564 -6642,3504:351,41,-55,0,0,0.0748564 -6643,3504:352,42,-55,0,0,0.0748564 -6644,3504:353,43,-55,0,0,0.0748777 -6645,3504:354,44,-55,0,0,0.0749418 -6646,3504:455,45,-55,0,0,0.0749775 -6647,3504:456,46,-55,0,0,0.0750843 -6648,3504:457,47,-55,0,0,0.0754921 -6649,3504:458,48,-55,0,0,0.0755711 -6650,3504:459,49,-55,0,0,0.0755639 -6651,3505:350,50,-55,0,0,0.0754061 -6652,3505:351,51,-55,0,0,0.0751843 -6653,3505:352,52,-55,0,0,0.0751128 -6654,3505:353,53,-55,0,0,0.0750702 -6655,3505:354,54,-55,0,0,0.0749062 -6656,3505:455,55,-55,0,0,0.074899 -6657,3505:456,56,-55,0,0,0.0749205 -6658,3505:457,57,-55,0,0,0.0749205 -6659,3505:458,58,-55,0,0,0.0749346 -6660,3505:459,59,-55,0,0,0.0749418 -6661,3506:350,60,-55,0,0,0.0749631 -6662,3506:351,61,-55,0,0,0.0750131 -6663,3506:352,62,-55,0,0,0.0753417 -6664,3506:353,63,-55,0,0,0.0750558 -6665,3506:354,64,-55,0,0,0.075837 -6666,3506:455,65,-55,0,0,0.0768806 -6667,3506:456,66,-55,0,0,0.0773118 -6668,3506:457,67,-55,0,0,0.0758298 -6669,3506:458,68,-55,0,0,0.0754203 -6670,3506:459,69,-55,0,0,0.0776644 -6671,3507:350,70,-55,0,0,0.0775539 -6672,3507:351,71,-55,0,0,0.0765313 -6673,3507:352,72,-55,0,0,0.0760317 -6674,3507:354,74,-55,0,0,0.0762267 -6675,3507:455,75,-55,0,0,0.0755352 -6676,3507:456,76,-55,0,0,0.0755352 -6677,3507:457,77,-55,0,0,0.075528 -6678,3507:458,78,-55,0,0,0.0758874 -6679,3507:459,79,-55,0,0,0.0761618 -6680,3508:350,80,-55,0,0,0.0764006 -6681,3508:351,81,-55,0,0,0.0766328 -6682,3508:352,82,-55,0,0,0.0764513 -6683,3508:353,83,-55,0,0,0.0763427 -6684,3508:354,84,-55,0,0,0.076742 -6685,3508:455,85,-55,0,0,0.0764949 -6686,3508:456,86,-55,0,0,0.0757075 -6687,3508:457,87,-55,0,0,0.0749562 -6688,3508:458,88,-55,0,0,0.0749062 -6689,3508:459,89,-55,0,0,0.074949 -6690,3509:350,90,-55,0,0,0.075006 -6691,3509:351,91,-55,0,0,0.0751272 -6692,3509:352,92,-55,0,0,0.0764442 -6693,3509:353,93,-55,0,0,0.0783812 -6694,3509:354,94,-55,0,0,0.07827 -6695,3509:455,95,-55,0,0,0.0776127 -6696,3509:456,96,-55,0,0,0.0777896 -6697,3509:457,97,-55,0,0,0.0779001 -6698,3509:458,98,-55,0,0,0.0754203 -6699,3509:459,99,-55,0,0,0.0754203 -6700,3510:350,100,-55,0,0,0.076742 -6701,3510:351,101,-55,0,0,0.0782329 -6702,3510:352,102,-55,0,0,0.0762558 -6703,3510:353,103,-55,0,0,0.0763208 -6704,3510:354,104,-55,0,0,0.0751344 -6705,3510:455,105,-55,0,0,0.0750345 -6706,3510:456,106,-55,0,0,0.0750416 -6707,3510:457,107,-55,0,0,0.0750345 -6708,3510:458,108,-55,0,0,0.074949 -6709,3510:459,109,-55,0,0,0.0749205 -6710,3511:350,110,-55,0,0,0.0751987 -6711,3511:351,111,-55,0,0,0.0777601 -6712,3511:352,112,-55,0,0,0.0801583 -6713,3511:353,113,-55,0,0,0.083116 -6714,3511:354,114,-55,0,0,0.0841632 -6715,3511:455,115,-55,0,0,0.0853989 -6716,3511:456,116,-55,0,0,0.0831786 -6717,3511:457,117,-55,0,0,0.0840843 -6718,3511:458,118,-55,0,0,0.0857045 -6719,3511:459,119,-55,0,0,0.0854552 -6720,3512:350,120,-55,0,0,0.0876811 -6721,3512:351,121,-55,0,0,0.0888552 -6722,3512:352,122,-55,0,0,0.0906854 -6723,3512:353,123,-55,0,0,0.0906769 -6724,3512:354,124,-55,0,0,0.0915105 -6725,3512:455,125,-55,0,0,0.0930943 -6726,3512:456,126,-55,0,0,0.0932071 -6727,3512:457,127,-55,0,0,0.0921189 -6728,3512:458,128,-55,0,0,0.0925061 -6729,3512:459,129,-55,0,0,0.095623 -6730,3513:350,130,-55,0,0,0.0984403 -6731,3513:351,131,-55,0,0,0.0987692 -6732,3513:352,132,-55,0,0,0.0967123 -6733,3513:353,133,-55,0,0,0.0954452 -6734,3513:354,134,-55,0,0,0.0952416 -6735,3513:455,135,-55,0,0,0.0939131 -6736,3513:456,136,-55,0,0,0.093747 -6737,3513:457,137,-55,0,0,0.0933288 -6738,3513:458,138,-55,0,0,0.0923941 -6739,3513:459,139,-55,0,0,0.0906177 -6740,3514:350,140,-55,0,0,0.0906769 -6741,3514:351,141,-55,0,0,0.0920243 -6742,3514:352,142,-55,0,0,0.0920072 -6743,3514:353,143,-55,0,0,0.0925751 -6744,3514:354,144,-55,0,0,0.0928259 -6745,3514:455,145,-55,0,0,0.0909568 -6746,3514:456,146,-55,0,0,0.0885895 -6747,3514:457,147,-55,0,0,0.0897241 -6748,3514:458,148,-55,0,0,0.0851585 -6749,3514:459,149,-55,0,0,0.0798862 -6750,3515:350,150,-55,0,0,0.0769825 -6751,3515:351,151,-55,0,0,0.0768003 -6752,3515:352,152,-55,0,0,0.079705 -6753,3515:353,153,-55,0,0,0.0759019 -6754,3515:354,154,-55,0,0,0.0752559 -6755,3515:455,155,-55,0,0,0.0753489 -6756,3515:456,156,-55,0,0,0.0751701 -6757,3515:457,157,-55,0,0,0.0752129 -6758,3515:458,158,-55,0,0,0.0755065 -6759,3515:459,159,-55,0,0,0.075442 -6760,3516:350,160,-55,0,0,0.07527 -6761,3516:351,161,-55,0,0,0.0752343 -6762,3516:352,162,-55,0,0,0.0754849 -6763,3516:353,163,-55,0,0,0.0754849 -6764,3516:354,164,-55,0,0,0.0775762 -6765,3516:455,165,-55,0,0,0.0775833 -6766,3516:456,166,-55,0,0,0.0855597 -6767,3516:457,167,-55,0,0,0.0952062 -6768,3516:458,168,-55,0,0,0.0955696 -6769,3516:459,169,-55,0,0,0.0929039 -6770,3517:350,170,-55,0,0,0.0924546 -6771,3517:351,171,-55,0,0,0.0995124 -6772,3517:352,172,-55,0,0,0.109125 -6773,3517:353,173,-55,0,0,0.116031 -6774,3517:354,174,-55,0,0,0.120303 -6775,3517:455,175,-55,0,0,0.118156 -6776,3517:456,176,-55,0,0,0.111811 -6777,3517:457,177,-55,0,0,0.11034 -6778,3517:458,178,-55,0,0,0.111658 -6779,3517:459,179,-55,0,0,0.113899 -6780,3518:350,180,-55,0,0,0.109736 -6781,5518:140,-180,-54,0,0,0.117249 -6782,5517:249,-179,-54,0,0,0.113186 -6783,5517:248,-178,-54,0,0,0.111312 -6784,5517:247,-177,-54,0,0,0.109245 -6785,5517:246,-176,-54,0,0,0.105175 -6786,5517:245,-175,-54,0,0,0.100316 -6787,5517:144,-174,-54,0,0,0.0984495 -6788,5517:143,-173,-54,0,0,0.0981216 -6789,5517:142,-172,-54,0,0,0.096865 -6790,5517:141,-171,-54,0,0,0.0954542 -6791,5517:140,-170,-54,0,0,0.0936511 -6792,5516:249,-169,-54,0,0,0.0906599 -6793,5516:248,-168,-54,0,0,0.0898838 -6794,5516:247,-167,-54,0,0,0.0899762 -6795,5516:246,-166,-54,0,0,0.0900267 -6796,5516:245,-165,-54,0,0,0.0900856 -6797,5516:144,-164,-54,0,0,0.0909399 -6798,5516:143,-163,-54,0,0,0.0918356 -6799,5516:142,-162,-54,0,0,0.0944564 -6800,5516:141,-161,-54,0,0,0.0980581 -6801,5516:140,-160,-54,0,0,0.0920759 -6802,5515:249,-159,-54,0,0,0.0899931 -6803,5515:248,-158,-54,0,0,0.0904484 -6804,5515:247,-157,-54,0,0,0.0914422 -6805,5515:246,-156,-54,0,0,0.0888136 -6806,5515:245,-155,-54,0,0,0.0895396 -6807,5515:144,-154,-54,0,0,0.0884817 -6808,5515:143,-153,-54,0,0,0.0875743 -6809,5515:142,-152,-54,0,0,0.0872219 -6810,5515:141,-151,-54,0,0,0.0939742 -6811,5515:140,-150,-54,0,0,0.0975595 -6812,5514:249,-149,-54,0,0,0.0974238 -6813,5514:248,-148,-54,0,0,0.0981216 -6814,5514:247,-147,-54,0,0,0.0985773 -6815,5514:246,-146,-54,0,0,0.104211 -6816,5514:245,-145,-54,0,0,0.106184 -6817,5514:144,-144,-54,0,0,0.102782 -6818,5514:143,-143,-54,0,0,0.105727 -6819,5514:142,-142,-54,0,0,0.122362 -6820,5514:141,-141,-54,0,0,0.124005 -6821,5514:140,-140,-54,0,0,0.108022 -6822,5513:249,-139,-54,0,0,0.101472 -6823,5513:248,-138,-54,0,0,0.101481 -6824,5513:247,-137,-54,0,0,0.104451 -6825,5513:246,-136,-54,0,0,0.108121 -6826,5513:245,-135,-54,0,0,0.109315 -6827,5513:144,-134,-54,0,0,0.109125 -6828,5513:143,-133,-54,0,0,0.102516 -6829,5513:142,-132,-54,0,0,0.103085 -6830,5513:141,-131,-54,0,0,0.107163 -6831,5513:140,-130,-54,0,0,0.108597 -6832,5512:249,-129,-54,0,0,0.105542 -6833,5512:248,-128,-54,0,0,0.103943 -6834,5512:247,-127,-54,0,0,0.103848 -6835,5512:246,-126,-54,0,0,0.104663 -6836,5512:245,-125,-54,0,0,0.105436 -6837,5512:144,-124,-54,0,0,0.10682 -6838,5512:143,-123,-54,0,0,0.107597 -6839,5512:142,-122,-54,0,0,0.108786 -6840,5512:141,-121,-54,0,0,0.110845 -6841,5512:140,-120,-54,0,0,0.113216 -6842,5511:249,-119,-54,0,0,0.112507 -6843,5511:248,-118,-54,0,0,0.113743 -6844,5511:247,-117,-54,0,0,0.118595 -6845,5511:246,-116,-54,0,0,0.118832 -6846,5511:245,-115,-54,0,0,0.118295 -6847,5511:144,-114,-54,0,0,0.116633 -6848,5511:143,-113,-54,0,0,0.115254 -6849,5511:142,-112,-54,0,0,0.112435 -6850,5511:141,-111,-54,0,0,0.113 -6851,5511:140,-110,-54,0,0,0.112589 -6852,5510:249,-109,-54,0,0,0.113568 -6853,5510:248,-108,-54,0,0,0.116432 -6854,5510:247,-107,-54,0,0,0.111995 -6855,5510:246,-106,-54,0,0,0.109666 -6856,5510:245,-105,-54,0,0,0.109315 -6857,5510:144,-104,-54,0,0,0.108986 -6858,5510:143,-103,-54,0,0,0.111312 -6859,5510:142,-102,-54,0,0,0.113505 -6860,5510:141,-101,-54,0,0,0.113247 -6861,5510:140,-100,-54,0,0,0.113764 -6862,5509:249,-99,-54,0,0,0.114543 -6863,5509:248,-98,-54,0,0,0.114564 -6864,5509:247,-97,-54,0,0,0.11639 -6865,5509:246,-96,-54,0,0,0.117089 -6866,5509:245,-95,-54,0,0,0.114877 -6867,5509:144,-94,-54,0,0,0.111312 -6868,5509:143,-93,-54,0,0,0.108816 -6869,5509:142,-92,-54,0,0,0.113186 -6870,5509:141,-91,-54,0,0,0.114034 -7192,5512:239,-129,-53,0,0,0.10679 -6871,5509:140,-90,-54,0,0,0.111913 -6872,5508:249,-89,-54,0,0,0.109135 -6873,5508:248,-88,-54,0,0,0.108269 -6874,5508:247,-87,-54,0,0,0.11034 -6875,5508:246,-86,-54,0,0,0.11392 -6876,5508:245,-85,-54,0,0,0.114961 -6877,5508:144,-84,-54,0,0,0.114242 -6878,5508:143,-83,-54,0,0,0.112691 -6879,5508:142,-82,-54,0,0,0.112804 -6880,5508:141,-81,-54,0,0,0.115832 -6881,5508:140,-80,-54,0,0,0.119684 -6882,5507:249,-79,-54,0,0,0.118424 -6883,5507:248,-78,-54,0,0,0.117111 -6884,5507:247,-77,-54,0,0,0.117292 -6885,5507:246,-76,-54,0,0,0.116581 -6886,5507:245,-75,-54,0,0,0.115705 -6887,5507:144,-74,-54,0,0,0.115516 -6888,5507:143,-73,-54,0,0,0.116053 -6889,5507:142,-72,-54,0,0,0.117771 -6890,5507:141,-71,-54,0,0,0.11302 -6891,5507:140,-70,-54,0,0,0.110491 -6892,5506:249,-69,-54,0,0,0.109576 -6893,5506:248,-68,-54,0,0,0.105513 -6894,5506:247,-67,-54,0,0,0.0905415 -6895,5506:246,-66,-54,0,0,0.0934331 -6896,5506:245,-65,-54,0,0,0.0970901 -6897,5506:144,-64,-54,0,0,0.0927998 -6898,5506:143,-63,-54,0,0,0.0821812 -6899,5506:142,-62,-54,0,0,0.0818951 -6900,5506:141,-61,-54,0,0,0.0834377 -6901,5506:140,-60,-54,0,0,0.082772 -6902,5505:249,-59,-54,0,0,0.0818642 -6903,5505:248,-58,-54,0,0,0.0808733 -6904,5505:247,-57,-54,0,0,0.0792165 -6905,5505:246,-56,-54,0,0,0.0784852 -6906,5505:245,-55,-54,0,0,0.0778042 -6907,5505:144,-54,-54,0,0,0.0774439 -6908,5505:143,-53,-54,0,0,0.076895 -6909,5505:142,-52,-54,0,0,0.0757147 -6910,5505:141,-51,-54,0,0,0.0752487 -6911,5505:140,-50,-54,0,0,0.0757722 -6912,5504:249,-49,-54,0,0,0.0751416 -6913,5504:248,-48,-54,0,0,0.0750201 -6914,5504:247,-47,-54,0,0,0.0749988 -6915,5504:246,-46,-54,0,0,0.0750131 -6916,5504:245,-45,-54,0,0,0.0749988 -6917,5504:144,-44,-54,0,0,0.0749775 -6918,5504:143,-43,-54,0,0,0.0749846 -6919,5504:142,-42,-54,0,0,0.0749988 -6920,5504:141,-41,-54,0,0,0.0749775 -6921,5504:140,-40,-54,0,0,0.0749703 -6922,5503:249,-39,-54,0,0,0.0749631 -6923,5503:248,-38,-54,0,0,0.0749562 -6924,5503:247,-37,-54,0,0,0.0749562 -6925,5503:246,-36,-54,0,0,0.0749631 -6926,5503:245,-35,-54,0,0,0.0749631 -6927,5503:144,-34,-54,0,0,0.0749631 -6928,5503:143,-33,-54,0,0,0.0749775 -6929,5503:142,-32,-54,0,0,0.0749988 -6930,5503:141,-31,-54,0,0,0.0749916 -6931,5503:140,-30,-54,0,0,0.0749846 -6932,5502:249,-29,-54,0,0,0.0749846 -6933,5502:248,-28,-54,0,0,0.0749846 -6934,5502:247,-27,-54,0,0,0.0749775 -6935,5502:246,-26,-54,0,0,0.0749775 -6936,5502:245,-25,-54,0,0,0.0749846 -6937,5502:144,-24,-54,0,0,0.0749846 -6938,5502:143,-23,-54,0,0,0.0749703 -6939,5502:142,-22,-54,0,0,0.0749562 -6940,5502:141,-21,-54,0,0,0.0749346 -6941,5502:140,-20,-54,0,0,0.0749988 -6942,5501:249,-19,-54,0,0,0.0751344 -6943,5501:248,-18,-54,0,0,0.0750273 -6944,5501:247,-17,-54,0,0,0.0749346 -6945,5501:246,-16,-54,0,0,0.0749205 -6946,5501:245,-15,-54,0,0,0.0749205 -6947,5501:144,-14,-54,0,0,0.0749346 -6948,5501:143,-13,-54,0,0,0.074949 -6949,5501:142,-12,-54,0,0,0.0749418 -6950,5501:141,-11,-54,0,0,0.0749275 -6951,5501:140,-10,-54,0,0,0.0749133 -6952,5500:249,-9,-54,0,0,0.0749133 -6953,5500:248,-8,-54,0,0,0.0749275 -6954,5500:247,-7,-54,0,0,0.0749275 -6955,5500:246,-6,-54,0,0,0.0749133 -6956,5500:245,-5,-54,0,0,0.074899 -6957,5500:144,-4,-54,0,0,0.074899 -6958,5500:143,-3,-54,0,0,0.0748849 -6959,5500:142,-2,-54,0,0,0.0748777 -6960,5500:141,-1,-54,0,0,0.0748636 -6961,3500:141,0,-54,0,0,0.0748636 -6962,3500:141,1,-54,0,0,0.0749205 -6963,3500:142,2,-54,0,0,0.0749703 -6964,3500:143,3,-54,0,0,0.075006 -6965,3500:144,4,-54,0,0,0.0750416 -6966,3500:245,5,-54,0,0,0.0750843 -6967,3500:246,6,-54,0,0,0.0750131 -6968,3500:247,7,-54,0,0,0.074949 -6969,3500:248,8,-54,0,0,0.0748564 -6970,3500:249,9,-54,0,0,0.0748777 -6971,3501:140,10,-54,0,0,0.074892 -6972,3501:141,11,-54,0,0,0.0749062 -6973,3501:142,12,-54,0,0,0.0749205 -6974,3501:143,13,-54,0,0,0.0749275 -6975,3501:144,14,-54,0,0,0.0749275 -6976,3501:245,15,-54,0,0,0.0749346 -6977,3501:246,16,-54,0,0,0.0749205 -6978,3501:247,17,-54,0,0,0.0749205 -6979,3501:248,18,-54,0,0,0.074949 -6980,3501:249,19,-54,0,0,0.0749988 -6981,3502:140,20,-54,0,0,0.075006 -6982,3502:141,21,-54,0,0,0.0749916 -6983,3502:142,22,-54,0,0,0.0749775 -6984,3502:143,23,-54,0,0,0.0749062 -6985,3502:144,24,-54,0,0,0.0749703 -6986,3502:245,25,-54,0,0,0.0751272 -6987,3502:246,26,-54,0,0,0.0751344 -6988,3502:247,27,-54,0,0,0.0749703 -6989,3502:248,28,-54,0,0,0.075006 -6990,3502:249,29,-54,0,0,0.0750558 -6991,3503:140,30,-54,0,0,0.0750987 -6992,3503:141,31,-54,0,0,0.0756068 -6993,3503:142,32,-54,0,0,0.0758946 -6994,3503:143,33,-54,0,0,0.0759019 -6995,3503:144,34,-54,0,0,0.0761978 -6996,3503:245,35,-54,0,0,0.0759452 -6997,3503:246,36,-54,0,0,0.075686 -6998,3503:247,37,-54,0,0,0.0755926 -6999,3503:248,38,-54,0,0,0.075729 -7000,3503:249,39,-54,0,0,0.0758155 -7001,3504:140,40,-54,0,0,0.075765 -7002,3504:141,41,-54,0,0,0.0755065 -7003,3504:142,42,-54,0,0,0.0752273 -7004,3504:143,43,-54,0,0,0.0751272 -7005,3504:144,44,-54,0,0,0.0749988 -7006,3504:245,45,-54,0,0,0.0749703 -7007,3504:246,46,-54,0,0,0.0749631 -7008,3504:247,47,-54,0,0,0.0756715 -7009,3504:248,48,-54,0,0,0.0759091 -7010,3504:249,49,-54,0,0,0.0757867 -7011,3505:140,50,-54,0,0,0.0756645 -7012,3505:141,51,-54,0,0,0.0756068 -7013,3505:142,52,-54,0,0,0.0754706 -7014,3505:143,53,-54,0,0,0.0753847 -7015,3505:144,54,-54,0,0,0.075163 -7016,3505:245,55,-54,0,0,0.0750201 -7017,3505:246,56,-54,0,0,0.0749775 -7018,3505:247,57,-54,0,0,0.0749703 -7019,3505:248,58,-54,0,0,0.0749631 -7020,3505:249,59,-54,0,0,0.0750131 -7021,3506:140,60,-54,0,0,0.0752916 -7022,3506:141,61,-54,0,0,0.0757795 -7023,3506:142,62,-54,0,0,0.0765166 -7024,3506:143,63,-54,0,0,0.0762629 -7025,3506:144,64,-54,0,0,0.0752772 -7026,3506:245,65,-54,0,0,0.0760029 -7027,3506:246,66,-54,0,0,0.0768367 -7028,3506:247,67,-54,0,0,0.0800146 -7029,3506:248,68,-54,0,0,0.0792091 -7030,3506:249,69,-54,0,0,0.0772899 -7031,3507:140,70,-54,0,0,0.0805151 -7032,3507:141,71,-54,0,0,0.0820961 -7033,3507:142,72,-54,0,0,0.0783515 -7034,3507:144,74,-54,0,0,0.0767494 -7035,3507:245,75,-54,0,0,0.076713 -7036,3507:246,76,-54,0,0,0.0769607 -7037,3507:247,77,-54,0,0,0.0771947 -7038,3507:248,78,-54,0,0,0.077657 -7039,3507:249,79,-54,0,0,0.0767929 -7040,3508:140,80,-54,0,0,0.0767274 -7041,3508:141,81,-54,0,0,0.0764803 -7042,3508:142,82,-54,0,0,0.0759595 -7043,3508:143,83,-54,0,0,0.0758082 -7044,3508:144,84,-54,0,0,0.0762267 -7045,3508:245,85,-54,0,0,0.0766475 -7046,3508:246,86,-54,0,0,0.0759162 -7047,3508:247,87,-54,0,0,0.0755854 -7048,3508:248,88,-54,0,0,0.0765166 -7049,3508:249,89,-54,0,0,0.0757362 -7050,3509:140,90,-54,0,0,0.0758874 -7051,3509:141,91,-54,0,0,0.0771141 -7052,3509:142,92,-54,0,0,0.0789919 -7053,3509:143,93,-54,0,0,0.0798862 -7054,3509:144,94,-54,0,0,0.0801054 -7055,3509:245,95,-54,0,0,0.0812484 -7056,3509:246,96,-54,0,0,0.0808427 -7057,3509:247,97,-54,0,0,0.0799466 -7058,3509:248,98,-54,0,0,0.0793966 -7059,3509:249,99,-54,0,0,0.0795845 -7060,3510:140,100,-54,0,0,0.0813788 -7061,3510:141,101,-54,0,0,0.0852147 -7062,3510:142,102,-54,0,0,0.0866999 -7063,3510:143,103,-54,0,0,0.0849347 -7064,3510:144,104,-54,0,0,0.0786861 -7065,3510:245,105,-54,0,0,0.0782775 -7066,3510:246,106,-54,0,0,0.0831944 -7067,3510:247,107,-54,0,0,0.0844489 -7068,3510:248,108,-54,0,0,0.0849109 -7069,3510:249,109,-54,0,0,0.0819568 -7070,3511:140,110,-54,0,0,0.0814328 -7071,3511:141,111,-54,0,0,0.085431 -7072,3511:142,112,-54,0,0,0.0855516 -7073,3511:143,113,-54,0,0,0.0863507 -7074,3511:144,114,-54,0,0,0.0882168 -7075,3511:245,115,-54,0,0,0.0883657 -7076,3511:246,116,-54,0,0,0.088465 -7077,3511:247,117,-54,0,0,0.0894224 -7078,3511:248,118,-54,0,0,0.0908125 -7079,3511:249,119,-54,0,0,0.0910247 -7080,3512:140,120,-54,0,0,0.0885644 -7081,3512:141,121,-54,0,0,0.0910419 -7082,3512:142,122,-54,0,0,0.0913995 -7083,3512:143,123,-54,0,0,0.0917843 -7084,3512:144,124,-54,0,0,0.0927135 -7085,3512:245,125,-54,0,0,0.0932421 -7086,3512:246,126,-54,0,0,0.0950292 -7087,3512:247,127,-54,0,0,0.0962465 -7088,3512:248,128,-54,0,0,0.0969459 -7089,3512:249,129,-54,0,0,0.0978129 -7090,3513:140,130,-54,0,0,0.0986961 -7091,3513:141,131,-54,0,0,0.101126 -7092,3513:142,132,-54,0,0,0.0991998 -7093,3513:143,133,-54,0,0,0.0962735 -7094,3513:144,134,-54,0,0,0.0974869 -7095,3513:245,135,-54,0,0,0.0971712 -7096,3513:246,136,-54,0,0,0.096336 -7097,3513:247,137,-54,0,0,0.0945267 -7098,3513:248,138,-54,0,0,0.0942546 -7099,3513:249,139,-54,0,0,0.095623 -7100,3514:140,140,-54,0,0,0.095552 -7101,3514:141,141,-54,0,0,0.0954986 -7102,3514:142,142,-54,0,0,0.0939918 -7103,3514:143,143,-54,0,0,0.093983 -7104,3514:144,144,-54,0,0,0.0936684 -7105,3514:245,145,-54,0,0,0.0913313 -7106,3514:246,146,-54,0,0,0.0925235 -7107,3514:247,147,-54,0,0,0.0929557 -7108,3514:248,148,-54,0,0,0.0861725 -7109,3514:249,149,-54,0,0,0.0844886 -7110,3515:140,150,-54,0,0,0.0849506 -7111,3515:141,151,-54,0,0,0.0851985 -7112,3515:142,152,-54,0,0,0.0801886 -7113,3515:143,153,-54,0,0,0.0767056 -7114,3515:144,154,-54,0,0,0.0761038 -7115,3515:245,155,-54,0,0,0.08181 -7116,3515:246,156,-54,0,0,0.0894224 -7117,3515:247,157,-54,0,0,0.0868383 -7118,3515:248,158,-54,0,0,0.0797954 -7119,3515:249,159,-54,0,0,0.081571 -7120,3516:140,160,-54,0,0,0.0793366 -7121,3516:141,161,-54,0,0,0.0792991 -7122,3516:142,162,-54,0,0,0.0855354 -7123,3516:143,163,-54,0,0,0.0873693 -7124,3516:144,164,-54,0,0,0.0852225 -7125,3516:245,165,-54,0,0,0.0825151 -7126,3516:246,166,-54,0,0,0.0847273 -7127,3516:247,167,-54,0,0,0.101257 -7128,3516:248,168,-54,0,0,0.102933 -7129,3516:249,169,-54,0,0,0.104144 -7130,3517:140,170,-54,0,0,0.111119 -7131,3517:141,171,-54,0,0,0.109166 -7132,3517:142,172,-54,0,0,0.113868 -7133,3517:143,173,-54,0,0,0.122119 -7134,3517:144,174,-54,0,0,0.121449 -7135,3517:245,175,-54,0,0,0.118972 -7136,3517:246,176,-54,0,0,0.113278 -7137,3517:247,177,-54,0,0,0.109666 -7138,3517:248,178,-54,0,0,0.116697 -7139,3517:249,179,-54,0,0,0.121856 -7140,3518:140,180,-54,0,0,0.117249 -7141,5518:130,-180,-53,0,0,0.120314 -7142,5517:239,-179,-53,0,0,0.115642 -7143,5517:238,-178,-53,0,0,0.111454 -7144,5517:237,-177,-53,0,0,0.106516 -7145,5517:236,-176,-53,0,0,0.102867 -7146,5517:235,-175,-53,0,0,0.100921 -7147,5517:134,-174,-53,0,0,0.100001 -7148,5517:133,-173,-53,0,0,0.0991264 -7149,5517:132,-172,-53,0,0,0.0983766 -7150,5517:131,-171,-53,0,0,0.0975142 -7151,5517:130,-170,-53,0,0,0.0953389 -7152,5516:239,-169,-53,0,0,0.094123 -7153,5516:238,-168,-53,0,0,0.0945618 -7154,5516:237,-167,-53,0,0,0.093983 -7155,5516:236,-166,-53,0,0,0.0949674 -7156,5516:235,-165,-53,0,0,0.0965511 -7157,5516:134,-164,-53,0,0,0.0982763 -7158,5516:133,-163,-53,0,0,0.0976589 -7159,5516:132,-162,-53,0,0,0.0972703 -7160,5516:131,-161,-53,0,0,0.0988515 -7161,5516:130,-160,-53,0,0,0.0950117 -7162,5515:239,-159,-53,0,0,0.0920243 -7163,5515:238,-158,-53,0,0,0.0932593 -7164,5515:237,-157,-53,0,0,0.0993652 -7165,5515:236,-156,-53,0,0,0.0999736 -7166,5515:235,-155,-53,0,0,0.0925061 -7167,5515:134,-154,-53,0,0,0.0889136 -7168,5515:133,-153,-53,0,0,0.0881755 -7169,5515:132,-152,-53,0,0,0.0900771 -7170,5515:131,-151,-53,0,0,0.096327 -7171,5515:130,-150,-53,0,0,0.0970989 -7172,5514:239,-149,-53,0,0,0.0963003 -7173,5514:238,-148,-53,0,0,0.0998258 -7174,5514:237,-147,-53,0,0,0.107085 -7175,5514:236,-146,-53,0,0,0.111566 -7176,5514:235,-145,-53,0,0,0.117387 -7177,5514:134,-144,-53,0,0,0.124754 -7178,5514:133,-143,-53,0,0,0.130694 -7179,5514:132,-142,-53,0,0,0.135627 -7180,5514:131,-141,-53,0,0,0.134379 -7181,5514:130,-140,-53,0,0,0.136545 -7182,5513:239,-139,-53,0,0,0.128056 -7183,5513:238,-138,-53,0,0,0.120303 -7184,5513:237,-137,-53,0,0,0.112702 -7185,5513:236,-136,-53,0,0,0.110633 -7186,5513:235,-135,-53,0,0,0.107616 -7187,5513:134,-134,-53,0,0,0.105746 -7188,5513:133,-133,-53,0,0,0.106292 -7189,5513:132,-132,-53,0,0,0.108647 -7190,5513:131,-131,-53,0,0,0.111129 -7191,5513:130,-130,-53,0,0,0.109977 -7193,5512:238,-128,-53,0,0,0.106879 -7194,5512:237,-127,-53,0,0,0.109937 -7195,5512:236,-126,-53,0,0,0.112804 -7196,5512:235,-125,-53,0,0,0.115045 -7197,5512:134,-124,-53,0,0,0.117185 -7198,5512:133,-123,-53,0,0,0.119047 -7199,5512:132,-122,-53,0,0,0.115779 -7200,5512:131,-121,-53,0,0,0.116994 -7201,5512:130,-120,-53,0,0,0.120444 -7202,5511:239,-119,-53,0,0,0.115537 -7203,5511:238,-118,-53,0,0,0.119004 -7204,5511:237,-117,-53,0,0,0.120129 -7205,5511:236,-116,-53,0,0,0.120531 -7206,5511:235,-115,-53,0,0,0.12146 -7207,5511:134,-114,-53,0,0,0.121296 -7208,5511:133,-113,-53,0,0,0.114836 -7209,5511:132,-112,-53,0,0,0.118682 -7210,5511:131,-111,-53,0,0,0.121702 -7211,5511:130,-110,-53,0,0,0.121691 -7212,5510:239,-109,-53,0,0,0.118156 -7213,5510:238,-108,-53,0,0,0.116729 -7214,5510:237,-107,-53,0,0,0.115842 -7215,5510:236,-106,-53,0,0,0.11175 -7216,5510:235,-105,-53,0,0,0.112866 -7217,5510:134,-104,-53,0,0,0.114263 -7218,5510:133,-103,-53,0,0,0.115244 -7219,5510:132,-102,-53,0,0,0.115139 -7220,5510:131,-101,-53,0,0,0.114346 -7221,5510:130,-100,-53,0,0,0.116633 -7222,5509:239,-99,-53,0,0,0.123014 -7223,5509:238,-98,-53,0,0,0.12526 -7224,5509:237,-97,-53,0,0,0.120096 -7225,5509:236,-96,-53,0,0,0.119847 -7226,5509:235,-95,-53,0,0,0.120717 -7227,5509:134,-94,-53,0,0,0.118381 -7228,5509:133,-93,-53,0,0,0.115076 -7229,5509:132,-92,-53,0,0,0.114252 -7230,5509:131,-91,-53,0,0,0.114086 -7231,5509:130,-90,-53,0,0,0.116179 -7232,5508:239,-89,-53,0,0,0.121581 -7233,5508:238,-88,-53,0,0,0.122329 -7234,5508:237,-87,-53,0,0,0.12123 -7235,5508:236,-86,-53,0,0,0.120815 -7236,5508:235,-85,-53,0,0,0.120466 -7237,5508:134,-84,-53,0,0,0.117164 -7238,5508:133,-83,-53,0,0,0.118017 -7239,5508:132,-82,-53,0,0,0.119576 -7240,5508:131,-81,-53,0,0,0.12202 -7241,5508:130,-80,-53,0,0,0.12123 -7242,5507:239,-79,-53,0,0,0.12064 -7243,5507:238,-78,-53,0,0,0.121186 -7244,5507:237,-77,-53,0,0,0.118081 -7245,5507:236,-76,-53,0,0,0.118092 -7246,5507:235,-75,-53,0,0,0.121285 -7247,5507:134,-74,-53,0,0,0.122395 -7248,5507:133,-73,-53,0,0,0.119858 -7249,5507:132,-72,-53,0,0,0.11619 -7250,5507:131,-71,-53,0,0,0.116613 -7251,5507:130,-70,-53,0,0,0.11866 -7252,5506:239,-69,-53,0,0,0.117089 -7253,5506:238,-68,-53,0,0,0.111281 -7254,5506:237,-67,-53,0,0,0.103943 -7255,5506:236,-66,-53,0,0,0.103209 -7256,5506:235,-65,-53,0,0,0.102981 -7257,5506:134,-64,-53,0,0,0.0925667 -7258,5506:133,-63,-53,0,0,0.0860837 -7259,5506:132,-62,-53,0,0,0.085648 -7260,5506:131,-61,-53,0,0,0.0819259 -7261,5506:130,-60,-53,0,0,0.0846795 -7262,5505:239,-59,-53,0,0,0.0859947 -7263,5505:238,-58,-53,0,0,0.0861967 -7264,5505:237,-57,-53,0,0,0.0816711 -7265,5505:236,-56,-53,0,0,0.078865 -7266,5505:235,-55,-53,0,0,0.0779889 -7267,5505:134,-54,-53,0,0,0.077063 -7268,5505:133,-53,-53,0,0,0.0773924 -7269,5505:132,-52,-53,0,0,0.07565 -7270,5505:131,-51,-53,0,0,0.0752487 -7271,5505:130,-50,-53,0,0,0.0756213 -7272,5504:239,-49,-53,0,0,0.0752201 -7273,5504:238,-48,-53,0,0,0.0749562 -7274,5504:237,-47,-53,0,0,0.075006 -7275,5504:236,-46,-53,0,0,0.0750273 -7276,5504:235,-45,-53,0,0,0.0750416 -7277,5504:134,-44,-53,0,0,0.0749703 -7278,5504:133,-43,-53,0,0,0.0749775 -7279,5504:132,-42,-53,0,0,0.0750273 -7280,5504:131,-41,-53,0,0,0.0750201 -7281,5504:130,-40,-53,0,0,0.0749988 -7282,5503:239,-39,-53,0,0,0.0750558 -7283,5503:238,-38,-53,0,0,0.0751558 -7284,5503:237,-37,-53,0,0,0.0749916 -7285,5503:236,-36,-53,0,0,0.0749703 -7286,5503:235,-35,-53,0,0,0.0749775 -7287,5503:134,-34,-53,0,0,0.0749846 -7288,5503:133,-33,-53,0,0,0.0749846 -7289,5503:132,-32,-53,0,0,0.0749846 -7290,5503:131,-31,-53,0,0,0.0749846 -7291,5503:130,-30,-53,0,0,0.0749916 -7292,5502:239,-29,-53,0,0,0.0749846 -7293,5502:238,-28,-53,0,0,0.0749775 -7294,5502:237,-27,-53,0,0,0.0749775 -7295,5502:236,-26,-53,0,0,0.0749988 -7296,5502:235,-25,-53,0,0,0.0750773 -7297,5502:134,-24,-53,0,0,0.0749988 -7298,5502:133,-23,-53,0,0,0.0750201 -7299,5502:132,-22,-53,0,0,0.0750558 -7300,5502:131,-21,-53,0,0,0.0750488 -7301,5502:130,-20,-53,0,0,0.07512 -7302,5501:239,-19,-53,0,0,0.0751701 -7303,5501:238,-18,-53,0,0,0.0752057 -7304,5501:237,-17,-53,0,0,0.0749988 -7305,5501:236,-16,-53,0,0,0.0749562 -7306,5501:235,-15,-53,0,0,0.0749562 -7307,5501:134,-14,-53,0,0,0.0749418 -7308,5501:133,-13,-53,0,0,0.0749275 -7309,5501:132,-12,-53,0,0,0.0749562 -7310,5501:131,-11,-53,0,0,0.0749846 -7311,5501:130,-10,-53,0,0,0.0749418 -7312,5500:239,-9,-53,0,0,0.0749205 -7313,5500:238,-8,-53,0,0,0.074949 -7314,5500:237,-7,-53,0,0,0.0749775 -7315,5500:236,-6,-53,0,0,0.0749418 -7316,5500:235,-5,-53,0,0,0.0749205 -7317,5500:134,-4,-53,0,0,0.0749133 -7318,5500:133,-3,-53,0,0,0.074899 -7319,5500:132,-2,-53,0,0,0.0748777 -7320,5500:131,-1,-53,0,0,0.0748705 -7321,3500:131,0,-53,0,0,0.0749418 -7322,3500:131,1,-53,0,0,0.0750416 -7323,3500:132,2,-53,0,0,0.0752129 -7324,3500:133,3,-53,0,0,0.0752559 -7325,3500:134,4,-53,0,0,0.0754133 -7326,3500:235,5,-53,0,0,0.0754779 -7327,3500:236,6,-53,0,0,0.0753917 -7328,3500:237,7,-53,0,0,0.0752343 -7329,3500:238,8,-53,0,0,0.0750702 -7330,3500:239,9,-53,0,0,0.0749775 -7331,3501:130,10,-53,0,0,0.0749062 -7332,3501:131,11,-53,0,0,0.0748849 -7333,3501:132,12,-53,0,0,0.0749062 -7334,3501:133,13,-53,0,0,0.0749062 -7335,3501:134,14,-53,0,0,0.0749062 -7336,3501:235,15,-53,0,0,0.0749205 -7337,3501:236,16,-53,0,0,0.0749205 -7338,3501:237,17,-53,0,0,0.0749275 -7339,3501:238,18,-53,0,0,0.074949 -7340,3501:239,19,-53,0,0,0.0749703 -7341,3502:130,20,-53,0,0,0.0749631 -7342,3502:131,21,-53,0,0,0.0749631 -7343,3502:132,22,-53,0,0,0.0749631 -7344,3502:133,23,-53,0,0,0.0749562 -7345,3502:134,24,-53,0,0,0.074949 -7346,3502:235,25,-53,0,0,0.0749916 -7347,3502:236,26,-53,0,0,0.0749562 -7348,3502:237,27,-53,0,0,0.0750558 -7349,3502:238,28,-53,0,0,0.0750843 -7350,3502:239,29,-53,0,0,0.0750416 -7351,3503:130,30,-53,0,0,0.0750273 -7352,3503:131,31,-53,0,0,0.0750558 -7353,3503:132,32,-53,0,0,0.0750843 -7354,3503:133,33,-53,0,0,0.0754348 -7355,3503:134,34,-53,0,0,0.0754061 -7356,3503:235,35,-53,0,0,0.0756787 -7357,3503:236,36,-53,0,0,0.0761327 -7358,3503:237,37,-53,0,0,0.0760172 -7359,3503:238,38,-53,0,0,0.0758946 -7360,3503:239,39,-53,0,0,0.0761472 -7361,3504:130,40,-53,0,0,0.0763789 -7362,3504:131,41,-53,0,0,0.0763064 -7363,3504:132,42,-53,0,0,0.0762848 -7364,3504:133,43,-53,0,0,0.0758803 -7365,3504:134,44,-53,0,0,0.0754849 -7366,3504:235,45,-53,0,0,0.0753272 -7367,3504:236,46,-53,0,0,0.0753631 -7368,3504:237,47,-53,0,0,0.0751128 -7369,3504:238,48,-53,0,0,0.0754275 -7370,3504:239,49,-53,0,0,0.0749916 -7371,3505:130,50,-53,0,0,0.0749916 -7372,3505:131,51,-53,0,0,0.0754706 -7373,3505:132,52,-53,0,0,0.0755207 -7374,3505:133,53,-53,0,0,0.0754203 -7375,3505:134,54,-53,0,0,0.075313 -7376,3505:235,55,-53,0,0,0.0751771 -7377,3505:236,56,-53,0,0,0.0751128 -7378,3505:237,57,-53,0,0,0.0750558 -7379,3505:238,58,-53,0,0,0.0750702 -7380,3505:239,59,-53,0,0,0.0750345 -7381,3506:130,60,-53,0,0,0.0757867 -7382,3506:131,61,-53,0,0,0.0760967 -7383,3506:132,62,-53,0,0,0.0768877 -7384,3506:133,63,-53,0,0,0.077856 -7385,3506:134,64,-53,0,0,0.0782329 -7386,3506:235,65,-53,0,0,0.0779445 -7387,3506:236,66,-53,0,0,0.0784258 -7388,3506:237,67,-53,0,0,0.0822044 -7389,3506:238,68,-53,0,0,0.0845362 -7390,3506:239,69,-53,0,0,0.0839103 -7391,3507:130,70,-53,0,0,0.0849428 -7392,3507:131,71,-53,0,0,0.0852225 -7393,3507:132,72,-53,0,0,0.0825384 -7394,3507:134,74,-53,0,0,0.0807435 -7395,3507:235,75,-53,0,0,0.0814865 -7396,3507:236,76,-53,0,0,0.0816711 -7397,3507:237,77,-53,0,0,0.0803025 -7398,3507:238,78,-53,0,0,0.0785968 -7399,3507:239,79,-53,0,0,0.0778116 -7400,3508:130,80,-53,0,0,0.0773559 -7401,3508:131,81,-53,0,0,0.0766184 -7402,3508:132,82,-53,0,0,0.0763208 -7403,3508:133,83,-53,0,0,0.0758874 -7404,3508:134,84,-53,0,0,0.0759811 -7405,3508:235,85,-53,0,0,0.0763281 -7406,3508:236,86,-53,0,0,0.0764296 -7407,3508:237,87,-53,0,0,0.0769242 -7408,3508:238,88,-53,0,0,0.0769242 -7409,3508:239,89,-53,0,0,0.0775762 -7410,3509:130,90,-53,0,0,0.0776127 -7411,3509:131,91,-53,0,0,0.0785893 -7412,3509:132,92,-53,0,0,0.0799164 -7413,3509:133,93,-53,0,0,0.0829126 -7414,3509:134,94,-53,0,0,0.0839655 -7415,3509:235,95,-53,0,0,0.0837523 -7416,3509:236,96,-53,0,0,0.0842266 -7417,3509:237,97,-53,0,0,0.0854552 -7418,3509:238,98,-53,0,0,0.086116 -7419,3509:239,99,-53,0,0,0.0860028 -7420,3510:130,100,-53,0,0,0.0860837 -7421,3510:131,101,-53,0,0,0.0875991 -7422,3510:132,102,-53,0,0,0.0896151 -7423,3510:133,103,-53,0,0,0.0891801 -7424,3510:134,104,-53,0,0,0.0893389 -7425,3510:235,105,-53,0,0,0.0898166 -7426,3510:236,106,-53,0,0,0.0886475 -7427,3510:237,107,-53,0,0,0.0849267 -7428,3510:238,108,-53,0,0,0.0863265 -7429,3510:239,109,-53,0,0,0.0864237 -7430,3511:130,110,-53,0,0,0.0863425 -7431,3511:131,111,-53,0,0,0.0869281 -7432,3511:132,112,-53,0,0,0.0881177 -7433,3511:133,113,-53,0,0,0.0888968 -7434,3511:134,114,-53,0,0,0.0899425 -7435,3511:235,115,-53,0,0,0.0923426 -7436,3511:236,116,-53,0,0,0.0938517 -7437,3511:237,117,-53,0,0,0.0928864 -7438,3511:238,118,-53,0,0,0.0904737 -7439,3511:239,119,-53,0,0,0.0910333 -7440,3512:130,120,-53,0,0,0.0915191 -7441,3512:131,121,-53,0,0,0.0930165 -7442,3512:132,122,-53,0,0,0.0934855 -7443,3512:133,123,-53,0,0,0.0950645 -7444,3512:134,124,-53,0,0,0.097 -7445,3512:235,125,-53,0,0,0.0973786 -7446,3512:236,126,-53,0,0,0.0962021 -7447,3512:237,127,-53,0,0,0.0961751 -7448,3512:238,128,-53,0,0,0.096919 -7449,3512:239,129,-53,0,0,0.0971622 -7450,3513:130,130,-53,0,0,0.0997796 -7451,3513:131,131,-53,0,0,0.10448 -7452,3513:132,132,-53,0,0,0.103114 -7453,3513:133,133,-53,0,0,0.099909 -7454,3513:134,134,-53,0,0,0.0987234 -7455,3513:235,135,-53,0,0,0.0997703 -7456,3513:236,136,-53,0,0,0.100958 -7457,3513:237,137,-53,0,0,0.0986138 -7458,3513:238,138,-53,0,0,0.0974869 -7459,3513:239,139,-53,0,0,0.099872 -7460,3514:130,140,-53,0,0,0.0989063 -7461,3514:131,141,-53,0,0,0.0968562 -7462,3514:132,142,-53,0,0,0.0950823 -7463,3514:133,143,-53,0,0,0.0954009 -7464,3514:134,144,-53,0,0,0.0983674 -7465,3514:235,145,-53,0,0,0.0966496 -7466,3514:236,146,-53,0,0,0.0961841 -7467,3514:237,147,-53,0,0,0.0955251 -7468,3514:238,148,-53,0,0,0.0935463 -7469,3514:239,149,-53,0,0,0.0919214 -7470,3515:130,150,-53,0,0,0.0924372 -7471,3515:131,151,-53,0,0,0.0855276 -7472,3515:132,152,-53,0,0,0.0848787 -7473,3515:133,153,-53,0,0,0.0850467 -7474,3515:134,154,-53,0,0,0.0792691 -7475,3515:235,155,-53,0,0,0.0848948 -7476,3515:236,156,-53,0,0,0.0933116 -7477,3515:237,157,-53,0,0,0.0943248 -7478,3515:238,158,-53,0,0,0.0933288 -7479,3515:239,159,-53,0,0,0.0951266 -7480,3516:130,160,-53,0,0,0.0937819 -7481,3516:131,161,-53,0,0,0.0905922 -7482,3516:132,162,-53,0,0,0.104471 -7483,3516:133,163,-53,0,0,0.107262 -7484,3516:134,164,-53,0,0,0.103133 -7485,3516:235,165,-53,0,0,0.107528 -7486,3516:236,166,-53,0,0,0.103009 -7487,3516:237,167,-53,0,0,0.106184 -7488,3516:238,168,-53,0,0,0.107134 -7489,3516:239,169,-53,0,0,0.109195 -7490,3517:130,170,-53,0,0,0.11909 -7491,3517:131,171,-53,0,0,0.125847 -7492,3517:132,172,-53,0,0,0.128216 -7493,3517:133,173,-53,0,0,0.127838 -7494,3517:134,174,-53,0,0,0.125756 -7495,3517:235,175,-53,0,0,0.123347 -7496,3517:236,176,-53,0,0,0.120782 -7497,3517:237,177,-53,0,0,0.121691 -7498,3517:238,178,-53,0,0,0.123659 -7499,3517:239,179,-53,0,0,0.121033 -7500,3518:130,180,-53,0,0,0.120314 -7501,5518:120,-180,-52,0,0,0.11299 -7502,5517:229,-179,-52,0,0,0.108389 -7503,5517:228,-178,-52,0,0,0.110602 -7504,5517:227,-177,-52,0,0,0.109166 -7505,5517:226,-176,-52,0,0,0.11038 -7506,5517:225,-175,-52,0,0,0.110451 -7507,5517:124,-174,-52,0,0,0.105805 -7508,5517:123,-173,-52,0,0,0.107725 -7509,5517:122,-172,-52,0,0,0.107508 -7510,5517:121,-171,-52,0,0,0.107232 -7511,5517:120,-170,-52,0,0,0.105902 -7512,5516:229,-169,-52,0,0,0.102696 -7513,5516:228,-168,-52,0,0,0.102857 -7514,5516:227,-167,-52,0,0,0.103895 -7515,5516:226,-166,-52,0,0,0.105717 -7516,5516:225,-165,-52,0,0,0.109105 -7517,5516:124,-164,-52,0,0,0.11121 -7518,5516:123,-163,-52,0,0,0.107903 -7519,5516:122,-162,-52,0,0,0.105873 -7520,5516:121,-161,-52,0,0,0.106908 -7521,5516:120,-160,-52,0,0,0.105068 -7522,5515:229,-159,-52,0,0,0.102791 -7523,5515:228,-158,-52,0,0,0.106849 -7524,5515:227,-157,-52,0,0,0.112097 -7525,5515:226,-156,-52,0,0,0.112097 -7526,5515:225,-155,-52,0,0,0.0998813 -7527,5515:124,-154,-52,0,0,0.0886974 -7528,5515:123,-153,-52,0,0,0.0888136 -7529,5515:122,-152,-52,0,0,0.0898417 -7530,5515:121,-151,-52,0,0,0.089892 -7531,5515:120,-150,-52,0,0,0.0937209 -7532,5514:229,-149,-52,0,0,0.0949233 -7533,5514:228,-148,-52,0,0,0.0956051 -7534,5514:227,-147,-52,0,0,0.10678 -7535,5514:226,-146,-52,0,0,0.10823 -7536,5514:225,-145,-52,0,0,0.115338 -7537,5514:124,-144,-52,0,0,0.12357 -7538,5514:123,-143,-52,0,0,0.126401 -7539,5514:122,-142,-52,0,0,0.129902 -7540,5514:121,-141,-52,0,0,0.136775 -7541,5514:120,-140,-52,0,0,0.13663 -7542,5513:229,-139,-52,0,0,0.130344 -7543,5513:228,-138,-52,0,0,0.123281 -7544,5513:227,-137,-52,0,0,0.11638 -7545,5513:226,-136,-52,0,0,0.115716 -7546,5513:225,-135,-52,0,0,0.116443 -7547,5513:124,-134,-52,0,0,0.11333 -7548,5513:123,-133,-52,0,0,0.116401 -7549,5513:122,-132,-52,0,0,0.1147 -7550,5513:121,-131,-52,0,0,0.116686 -7551,5513:120,-130,-52,0,0,0.117568 -7552,5512:229,-129,-52,0,0,0.118961 -7553,5512:228,-128,-52,0,0,0.11495 -7554,5512:227,-127,-52,0,0,0.115306 -7555,5512:226,-126,-52,0,0,0.119123 -7556,5512:225,-125,-52,0,0,0.119522 -7557,5512:124,-124,-52,0,0,0.127095 -7558,5512:123,-123,-52,0,0,0.128136 -7559,5512:122,-122,-52,0,0,0.12499 -7560,5512:121,-121,-52,0,0,0.121154 -7561,5512:120,-120,-52,0,0,0.120433 -7562,5511:229,-119,-52,0,0,0.117686 -7563,5511:228,-118,-52,0,0,0.118638 -7564,5511:227,-117,-52,0,0,0.120597 -7565,5511:226,-116,-52,0,0,0.122318 -7566,5511:225,-115,-52,0,0,0.121438 -7567,5511:124,-114,-52,0,0,0.121175 -7568,5511:123,-113,-52,0,0,0.124418 -7569,5511:122,-112,-52,0,0,0.117824 -7570,5511:121,-111,-52,0,0,0.119349 -7571,5511:120,-110,-52,0,0,0.123882 -7572,5510:229,-109,-52,0,0,0.121932 -7573,5510:228,-108,-52,0,0,0.120488 -7574,5510:227,-107,-52,0,0,0.120902 -7575,5510:226,-106,-52,0,0,0.119047 -7576,5510:225,-105,-52,0,0,0.115863 -7577,5510:124,-104,-52,0,0,0.119112 -7578,5510:123,-103,-52,0,0,0.12434 -7579,5510:122,-102,-52,0,0,0.130403 -7580,5510:121,-101,-52,0,0,0.129763 -7581,5510:120,-100,-52,0,0,0.12367 -7582,5509:229,-99,-52,0,0,0.124575 -7583,5509:228,-98,-52,0,0,0.128699 -7584,5509:227,-97,-52,0,0,0.122804 -7585,5509:226,-96,-52,0,0,0.119328 -7586,5509:225,-95,-52,0,0,0.120859 -7587,5509:124,-94,-52,0,0,0.125305 -7588,5509:123,-93,-52,0,0,0.120782 -7589,5509:122,-92,-52,0,0,0.115191 -7590,5509:121,-91,-52,0,0,0.114992 -7591,5509:120,-90,-52,0,0,0.11494 -7592,5508:229,-89,-52,0,0,0.120608 -7593,5508:228,-88,-52,0,0,0.12337 -7594,5508:227,-87,-52,0,0,0.121812 -7595,5508:226,-86,-52,0,0,0.122693 -7596,5508:225,-85,-52,0,0,0.122528 -7597,5508:124,-84,-52,0,0,0.122274 -7598,5508:123,-83,-52,0,0,0.123659 -7599,5508:122,-82,-52,0,0,0.126265 -7600,5508:121,-81,-52,0,0,0.126856 -7601,5508:120,-80,-52,0,0,0.124586 -7602,5507:229,-79,-52,0,0,0.122738 -7603,5507:228,-78,-52,0,0,0.128102 -7604,5507:227,-77,-52,0,0,0.12952 -7605,5507:226,-76,-52,0,0,0.127964 -7606,5507:225,-75,-52,0,0,0.127015 -7607,5507:124,-74,-52,0,0,0.124631 -7608,5507:123,-73,-52,0,0,0.119641 -7609,5507:122,-72,-52,0,0,0.120053 -7610,5507:121,-71,-52,0,0,0.117334 -7611,5507:120,-70,-52,0,0,0.116898 -7612,5506:229,-69,-52,0,0,0.115181 -7613,5506:228,-68,-52,0,0,0.10637 -7614,5506:227,-67,-52,0,0,0.108766 -7615,5506:226,-66,-52,0,0,0.107488 -7616,5506:225,-65,-52,0,0,0.101519 -7617,5506:124,-64,-52,0,0,0.0909228 -7618,5506:123,-63,-52,0,0,0.090906 -7619,5506:122,-62,-52,0,0,0.0925925 -7620,5506:121,-61,-52,0,0,0.0946325 -7621,5506:120,-60,-52,0,0,0.0966586 -7622,5505:229,-59,-52,0,0,0.096865 -7623,5505:228,-58,-52,0,0,0.0926012 -7624,5505:227,-57,-52,0,0,0.0885644 -7625,5505:226,-56,-52,0,0,0.0821193 -7626,5505:225,-55,-52,0,0,0.0825462 -7627,5505:124,-54,-52,0,0,0.0817947 -7628,5505:123,-53,-52,0,0,0.077451 -7629,5505:122,-52,-52,0,0,0.0769315 -7630,5505:121,-51,-52,0,0,0.0763064 -7631,5505:120,-50,-52,0,0,0.0764006 -7632,5504:229,-49,-52,0,0,0.0752201 -7633,5504:228,-48,-52,0,0,0.0753703 -7634,5504:227,-47,-52,0,0,0.0751701 -7635,5504:226,-46,-52,0,0,0.0754203 -7636,5504:225,-45,-52,0,0,0.0756715 -7637,5504:124,-44,-52,0,0,0.0756715 -7638,5504:123,-43,-52,0,0,0.0787084 -7639,5504:122,-42,-52,0,0,0.0788427 -7640,5504:121,-41,-52,0,0,0.0773337 -7641,5504:120,-40,-52,0,0,0.0770922 -7642,5503:229,-39,-52,0,0,0.0776718 -7643,5503:228,-38,-52,0,0,0.084021 -7644,5503:227,-37,-52,0,0,0.0804543 -7645,5503:226,-36,-52,0,0,0.0763427 -7646,5503:225,-35,-52,0,0,0.0769973 -7647,5503:124,-34,-52,0,0,0.0775026 -7648,5503:123,-33,-52,0,0,0.0764079 -7649,5503:122,-32,-52,0,0,0.0749275 -7650,5503:121,-31,-52,0,0,0.0754993 -7651,5503:120,-30,-52,0,0,0.0749703 -7652,5502:229,-29,-52,0,0,0.0749988 -7653,5502:228,-28,-52,0,0,0.0749916 -7654,5502:227,-27,-52,0,0,0.0749775 -7655,5502:226,-26,-52,0,0,0.0750558 -7656,5502:225,-25,-52,0,0,0.0771726 -7657,5502:124,-24,-52,0,0,0.0836814 -7658,5502:123,-23,-52,0,0,0.0803405 -7659,5502:122,-22,-52,0,0,0.079532 -7660,5502:121,-21,-52,0,0,0.0767712 -7661,5502:120,-20,-52,0,0,0.0760749 -7662,5501:229,-19,-52,0,0,0.0772899 -7663,5501:228,-18,-52,0,0,0.0759811 -7664,5501:227,-17,-52,0,0,0.0755567 -7665,5501:226,-16,-52,0,0,0.0755135 -7666,5501:225,-15,-52,0,0,0.0758082 -7667,5501:124,-14,-52,0,0,0.075442 -7668,5501:123,-13,-52,0,0,0.0749775 -7669,5501:122,-12,-52,0,0,0.0749562 -7670,5501:121,-11,-52,0,0,0.0749562 -7671,5501:120,-10,-52,0,0,0.074949 -7672,5500:229,-9,-52,0,0,0.0749631 -7673,5500:228,-8,-52,0,0,0.0749703 -7674,5500:227,-7,-52,0,0,0.0749631 -7675,5500:226,-6,-52,0,0,0.074949 -7676,5500:225,-5,-52,0,0,0.0749418 -7677,5500:124,-4,-52,0,0,0.0749275 -7678,5500:123,-3,-52,0,0,0.0749133 -7679,5500:122,-2,-52,0,0,0.074899 -7680,5500:121,-1,-52,0,0,0.0749133 -7681,3500:121,0,-52,0,0,0.0749275 -7682,3500:121,1,-52,0,0,0.0749562 -7683,3500:122,2,-52,0,0,0.0753203 -7684,3500:123,3,-52,0,0,0.0755065 -7685,3500:124,4,-52,0,0,0.0756285 -7686,3500:225,5,-52,0,0,0.0757507 -7687,3500:226,6,-52,0,0,0.0757362 -7688,3500:227,7,-52,0,0,0.0756787 -7689,3500:228,8,-52,0,0,0.0754706 -7690,3500:229,9,-52,0,0,0.0751771 -7691,3501:120,10,-52,0,0,0.0750273 -7692,3501:121,11,-52,0,0,0.075006 -7693,3501:122,12,-52,0,0,0.074899 -7694,3501:123,13,-52,0,0,0.0749062 -7695,3501:124,14,-52,0,0,0.0749275 -7696,3501:225,15,-52,0,0,0.0749275 -7697,3501:226,16,-52,0,0,0.0749275 -7698,3501:227,17,-52,0,0,0.0749418 -7699,3501:228,18,-52,0,0,0.0749418 -7700,3501:229,19,-52,0,0,0.0749562 -7701,3502:120,20,-52,0,0,0.074949 -7702,3502:121,21,-52,0,0,0.0749562 -7703,3502:122,22,-52,0,0,0.0749631 -7704,3502:123,23,-52,0,0,0.0749631 -7705,3502:124,24,-52,0,0,0.0750131 -7706,3502:225,25,-52,0,0,0.0749988 -7707,3502:226,26,-52,0,0,0.0750273 -7708,3502:227,27,-52,0,0,0.0752415 -7709,3502:228,28,-52,0,0,0.0753058 -7710,3502:229,29,-52,0,0,0.0751701 -7711,3503:120,30,-52,0,0,0.0751843 -7712,3503:121,31,-52,0,0,0.0753703 -7713,3503:122,32,-52,0,0,0.0754634 -7714,3503:123,33,-52,0,0,0.0754348 -7715,3503:124,34,-52,0,0,0.075313 -7716,3503:225,35,-52,0,0,0.0754203 -7717,3503:226,36,-52,0,0,0.0755711 -7718,3503:227,37,-52,0,0,0.0757362 -7719,3503:228,38,-52,0,0,0.0759091 -7720,3503:229,39,-52,0,0,0.076046 -7721,3504:120,40,-52,0,0,0.0764513 -7722,3504:121,41,-52,0,0,0.0765384 -7723,3504:122,42,-52,0,0,0.0766839 -7724,3504:123,43,-52,0,0,0.0764442 -7725,3504:124,44,-52,0,0,0.0762775 -7726,3504:225,45,-52,0,0,0.0761907 -7727,3504:226,46,-52,0,0,0.0762848 -7728,3504:227,47,-52,0,0,0.0753847 -7729,3504:228,48,-52,0,0,0.075163 -7730,3504:229,49,-52,0,0,0.0751701 -7731,3505:120,50,-52,0,0,0.0752343 -7732,3505:121,51,-52,0,0,0.0750416 -7733,3505:122,52,-52,0,0,0.0753272 -7734,3505:123,53,-52,0,0,0.0755352 -7735,3505:124,54,-52,0,0,0.0754492 -7736,3505:225,55,-52,0,0,0.0754779 -7737,3505:226,56,-52,0,0,0.0753917 -7738,3505:227,57,-52,0,0,0.0750702 -7739,3505:228,58,-52,0,0,0.075313 -7740,3505:229,59,-52,0,0,0.0755567 -7741,3506:120,60,-52,0,0,0.0752487 -7742,3506:121,61,-52,0,0,0.075837 -7743,3506:122,62,-52,0,0,0.0763064 -7744,3506:123,63,-52,0,0,0.0771067 -7745,3506:124,64,-52,0,0,0.0848548 -7746,3506:225,65,-52,0,0,0.0809651 -7747,3506:226,66,-52,0,0,0.0812332 -7748,3506:227,67,-52,0,0,0.0824607 -7749,3506:228,68,-52,0,0,0.0854151 -7750,3506:229,69,-52,0,0,0.0870994 -7751,3507:120,70,-52,0,0,0.0886974 -7752,3507:121,71,-52,0,0,0.0876154 -7753,3507:122,72,-52,0,0,0.0828347 -7754,3507:124,74,-52,0,0,0.0820961 -7755,3507:225,75,-52,0,0,0.0800373 -7756,3507:226,76,-52,0,0,0.0791191 -7757,3507:227,77,-52,0,0,0.0784258 -7758,3507:228,78,-52,0,0,0.077657 -7759,3507:229,79,-52,0,0,0.0774732 -7760,3508:120,80,-52,0,0,0.0769973 -7761,3508:121,81,-52,0,0,0.0766328 -7762,3508:122,82,-52,0,0,0.0762702 -7763,3508:123,83,-52,0,0,0.0760822 -7764,3508:124,84,-52,0,0,0.0765313 -7765,3508:225,85,-52,0,0,0.0763571 -7766,3508:226,86,-52,0,0,0.0761834 -7767,3508:227,87,-52,0,0,0.0801962 -7768,3508:228,88,-52,0,0,0.0857367 -7769,3508:229,89,-52,0,0,0.0842346 -7770,3509:120,90,-52,0,0,0.0846955 -7771,3509:121,91,-52,0,0,0.0900689 -7772,3509:122,92,-52,0,0,0.0910673 -7773,3509:123,93,-52,0,0,0.0846078 -7774,3509:124,94,-52,0,0,0.0869686 -7775,3509:225,95,-52,0,0,0.0858575 -7776,3509:226,96,-52,0,0,0.0878787 -7777,3509:227,97,-52,0,0,0.0884155 -7778,3509:228,98,-52,0,0,0.0900689 -7779,3509:229,99,-52,0,0,0.091485 -7780,3510:120,100,-52,0,0,0.090533 -7781,3510:121,101,-52,0,0,0.0891801 -7782,3510:122,102,-52,0,0,0.0903723 -7783,3510:123,103,-52,0,0,0.0931986 -7784,3510:124,104,-52,0,0,0.0941931 -7785,3510:225,105,-52,0,0,0.0892971 -7786,3510:226,106,-52,0,0,0.0892887 -7787,3510:227,107,-52,0,0,0.0893389 -7788,3510:228,108,-52,0,0,0.0871321 -7789,3510:229,109,-52,0,0,0.0870342 -7790,3511:120,110,-52,0,0,0.0879529 -7791,3511:121,111,-52,0,0,0.0875169 -7792,3511:122,112,-52,0,0,0.0872464 -7793,3511:123,113,-52,0,0,0.0878046 -7794,3511:124,114,-52,0,0,0.0913654 -7795,3511:225,115,-52,0,0,0.093686 -7796,3511:226,116,-52,0,0,0.095703 -7797,3511:227,117,-52,0,0,0.0973606 -7798,3511:228,118,-52,0,0,0.0988423 -7799,3511:229,119,-52,0,0,0.0997151 -7800,3512:120,120,-52,0,0,0.0998258 -7801,3512:121,121,-52,0,0,0.0988239 -7802,3512:122,122,-52,0,0,0.0979763 -7803,3512:123,123,-52,0,0,0.0999829 -7804,3512:124,124,-52,0,0,0.10245 -7805,3512:225,125,-52,0,0,0.101828 -7806,3512:226,126,-52,0,0,0.103294 -7807,3512:227,127,-52,0,0,0.103828 -7808,3512:228,128,-52,0,0,0.101734 -7809,3512:229,129,-52,0,0,0.101051 -7810,3513:120,130,-52,0,0,0.10563 -7811,3513:121,131,-52,0,0,0.104384 -7812,3513:122,132,-52,0,0,0.103924 -7813,3513:123,133,-52,0,0,0.102905 -7814,3513:124,134,-52,0,0,0.101294 -7815,3513:225,135,-52,0,0,0.10066 -7816,3513:226,136,-52,0,0,0.102403 -7817,3513:227,137,-52,0,0,0.102082 -7818,3513:228,138,-52,0,0,0.100186 -7819,3513:229,139,-52,0,0,0.10136 -7820,3514:120,140,-52,0,0,0.100261 -7821,3514:121,141,-52,0,0,0.0990528 -7822,3514:122,142,-52,0,0,0.0986685 -7823,3514:123,143,-52,0,0,0.100112 -7824,3514:124,144,-52,0,0,0.101725 -7825,3514:225,145,-52,0,0,0.0995217 -7826,3514:226,146,-52,0,0,0.0990162 -7827,3514:227,147,-52,0,0,0.099909 -7828,3514:228,148,-52,0,0,0.0986227 -7829,3514:229,149,-52,0,0,0.0964792 -7830,3515:120,150,-52,0,0,0.0896486 -7831,3515:121,151,-52,0,0,0.0827566 -7832,3515:122,152,-52,0,0,0.0885397 -7833,3515:123,153,-52,0,0,0.0919813 -7834,3515:124,154,-52,0,0,0.0936424 -7835,3515:225,155,-52,0,0,0.099411 -7836,3515:226,156,-52,0,0,0.101229 -7837,3515:227,157,-52,0,0,0.0970541 -7838,3515:228,158,-52,0,0,0.0975683 -8162,3512:112,122,-51,0,0,0.10213 -7839,3515:229,159,-52,0,0,0.0980218 -7840,3516:120,160,-52,0,0,0.0988789 -7841,3516:121,161,-52,0,0,0.100567 -7842,3516:122,162,-52,0,0,0.103867 -7843,3516:123,163,-52,0,0,0.103848 -7844,3516:124,164,-52,0,0,0.10815 -7845,3516:225,165,-52,0,0,0.110159 -7846,3516:226,166,-52,0,0,0.111739 -7847,3516:227,167,-52,0,0,0.114971 -7848,3516:228,168,-52,0,0,0.119814 -7849,3516:229,169,-52,0,0,0.124608 -7850,3517:120,170,-52,0,0,0.12863 -7851,3517:121,171,-52,0,0,0.127918 -7852,3517:122,172,-52,0,0,0.126833 -7853,3517:123,173,-52,0,0,0.127529 -7854,3517:124,174,-52,0,0,0.127849 -7855,3517:225,175,-52,0,0,0.127574 -7856,3517:226,176,-52,0,0,0.126731 -7857,3517:227,177,-52,0,0,0.123403 -7858,3517:228,178,-52,0,0,0.120173 -7859,3517:229,179,-52,0,0,0.118886 -7860,3518:120,180,-52,0,0,0.11299 -7861,5518:110,-180,-51,0,0,0.120129 -7862,5517:219,-179,-51,0,0,0.119771 -7863,5517:218,-178,-51,0,0,0.119858 -7864,5517:217,-177,-51,0,0,0.118038 -7865,5517:216,-176,-51,0,0,0.115443 -7866,5517:215,-175,-51,0,0,0.115947 -7867,5517:114,-174,-51,0,0,0.115695 -7868,5517:113,-173,-51,0,0,0.116665 -7869,5517:112,-172,-51,0,0,0.115045 -7870,5517:111,-171,-51,0,0,0.113309 -7871,5517:110,-170,-51,0,0,0.115464 -7872,5516:219,-169,-51,0,0,0.114596 -7873,5516:218,-168,-51,0,0,0.112887 -7874,5516:217,-167,-51,0,0,0.113785 -7875,5516:216,-166,-51,0,0,0.114909 -7876,5516:215,-165,-51,0,0,0.115485 -7877,5516:114,-164,-51,0,0,0.115684 -7878,5516:113,-163,-51,0,0,0.114523 -7879,5516:112,-162,-51,0,0,0.114127 -7880,5516:111,-161,-51,0,0,0.11176 -7881,5516:110,-160,-51,0,0,0.108022 -7882,5515:219,-159,-51,0,0,0.107183 -7883,5515:218,-158,-51,0,0,0.110451 -7884,5515:217,-157,-51,0,0,0.115705 -7885,5515:216,-156,-51,0,0,0.11495 -7886,5515:215,-155,-51,0,0,0.111984 -7887,5515:114,-154,-51,0,0,0.108976 -7888,5515:113,-153,-51,0,0,0.091127 -7889,5515:112,-152,-51,0,0,0.0916644 -7890,5515:111,-151,-51,0,0,0.091947 -7891,5515:110,-150,-51,0,0,0.0950117 -7892,5514:219,-149,-51,0,0,0.0948263 -7893,5514:218,-148,-51,0,0,0.0967931 -7894,5514:217,-147,-51,0,0,0.107429 -7895,5514:216,-146,-51,0,0,0.111129 -7896,5514:215,-145,-51,0,0,0.120433 -7897,5514:114,-144,-51,0,0,0.125215 -7898,5514:113,-143,-51,0,0,0.119004 -7899,5514:112,-142,-51,0,0,0.122263 -7900,5514:111,-141,-51,0,0,0.13541 -7901,5514:110,-140,-51,0,0,0.132609 -7902,5513:219,-139,-51,0,0,0.12499 -7903,5513:218,-138,-51,0,0,0.121943 -7904,5513:217,-137,-51,0,0,0.121427 -7905,5513:216,-136,-51,0,0,0.124631 -7906,5513:215,-135,-51,0,0,0.129011 -7907,5513:114,-134,-51,0,0,0.129196 -7908,5513:113,-133,-51,0,0,0.124788 -7909,5513:112,-132,-51,0,0,0.121121 -7910,5513:111,-131,-51,0,0,0.120118 -7911,5513:110,-130,-51,0,0,0.138115 -7912,5512:219,-129,-51,0,0,0.13922 -7913,5512:218,-128,-51,0,0,0.140394 -7914,5512:217,-127,-51,0,0,0.138128 -7915,5512:216,-126,-51,0,0,0.13395 -7916,5512:215,-125,-51,0,0,0.124642 -7917,5512:114,-124,-51,0,0,0.123214 -7918,5512:113,-123,-51,0,0,0.127278 -7919,5512:112,-122,-51,0,0,0.124653 -7920,5512:111,-121,-51,0,0,0.121999 -7921,5512:110,-120,-51,0,0,0.120804 -7922,5511:219,-119,-51,0,0,0.124608 -7923,5511:218,-118,-51,0,0,0.13389 -7924,5511:217,-117,-51,0,0,0.137956 -7925,5511:216,-116,-51,0,0,0.138507 -7926,5511:215,-115,-51,0,0,0.136388 -7927,5511:114,-114,-51,0,0,0.128768 -7928,5511:113,-113,-51,0,0,0.126572 -7929,5511:112,-112,-51,0,0,0.124923 -7930,5511:111,-111,-51,0,0,0.122771 -7931,5511:110,-110,-51,0,0,0.12605 -7932,5510:219,-109,-51,0,0,0.124687 -7933,5510:218,-108,-51,0,0,0.123392 -7934,5510:217,-107,-51,0,0,0.12276 -7935,5510:216,-106,-51,0,0,0.121976 -7936,5510:215,-105,-51,0,0,0.126061 -7937,5510:114,-104,-51,0,0,0.131525 -7938,5510:113,-103,-51,0,0,0.13487 -7939,5510:112,-102,-51,0,0,0.133046 -7940,5510:111,-101,-51,0,0,0.131877 -7941,5510:110,-100,-51,0,0,0.131291 -7942,5509:219,-99,-51,0,0,0.129833 -7943,5509:218,-98,-51,0,0,0.130158 -7944,5509:217,-97,-51,0,0,0.125102 -7945,5509:216,-96,-51,0,0,0.120542 -7946,5509:215,-95,-51,0,0,0.12656 -8271,5513:100,-130,-50,0,0,0.13511 -7947,5509:114,-94,-51,0,0,0.130146 -7948,5509:113,-93,-51,0,0,0.128734 -7949,5509:112,-92,-51,0,0,0.128274 -7950,5509:111,-91,-51,0,0,0.12801 -7951,5509:110,-90,-51,0,0,0.126879 -7952,5508:219,-89,-51,0,0,0.126981 -7953,5508:218,-88,-51,0,0,0.126027 -7954,5508:217,-87,-51,0,0,0.125181 -7955,5508:216,-86,-51,0,0,0.126345 -7956,5508:215,-85,-51,0,0,0.128607 -7957,5508:114,-84,-51,0,0,0.131713 -7958,5508:113,-83,-51,0,0,0.129612 -7959,5508:112,-82,-51,0,0,0.128458 -7960,5508:111,-81,-51,0,0,0.127221 -7961,5508:110,-80,-51,0,0,0.126413 -7962,5507:219,-79,-51,0,0,0.129786 -7963,5507:218,-78,-51,0,0,0.131021 -7964,5507:217,-77,-51,0,0,0.131877 -7965,5507:216,-76,-51,0,0,0.131033 -7966,5507:215,-75,-51,0,0,0.128481 -7967,5507:114,-74,-51,0,0,0.125858 -7968,5507:113,-73,-51,0,0,0.123004 -7969,5507:112,-72,-51,0,0,0.123681 -7970,5507:111,-71,-51,0,0,0.122153 -7971,5507:110,-70,-51,0,0,0.119231 -7972,5506:219,-69,-51,0,0,0.111414 -7973,5506:218,-68,-51,0,0,0.105912 -7974,5506:217,-67,-51,0,0,0.104394 -7975,5506:216,-66,-51,0,0,0.101416 -7976,5506:215,-65,-51,0,0,0.100455 -7977,5506:114,-64,-51,0,0,0.0981216 -7978,5506:113,-63,-51,0,0,0.100085 -7979,5506:112,-62,-51,0,0,0.0961664 -7980,5506:111,-61,-51,0,0,0.0950912 -7981,5506:110,-60,-51,0,0,0.101163 -7982,5505:219,-59,-51,0,0,0.0985773 -7983,5505:218,-58,-51,0,0,0.0959967 -7984,5505:217,-57,-51,0,0,0.0936597 -7985,5505:216,-56,-51,0,0,0.0864886 -7986,5505:215,-55,-51,0,0,0.0884982 -7987,5505:114,-54,-51,0,0,0.0886559 -7988,5505:113,-53,-51,0,0,0.0882498 -7989,5505:112,-52,-51,0,0,0.0839735 -7990,5505:111,-51,-51,0,0,0.0790218 -7991,5505:110,-50,-51,0,0,0.0789771 -7992,5504:219,-49,-51,0,0,0.0794191 -7993,5504:218,-48,-51,0,0,0.0813636 -7994,5504:217,-47,-51,0,0,0.0882004 -7995,5504:216,-46,-51,0,0,0.0944829 -7996,5504:215,-45,-51,0,0,0.0912886 -7997,5504:114,-44,-51,0,0,0.0804239 -7998,5504:113,-43,-51,0,0,0.0840447 -7999,5504:112,-42,-51,0,0,0.0849506 -8000,5504:111,-41,-51,0,0,0.0848468 -8001,5504:110,-40,-51,0,0,0.0820805 -8002,5503:219,-39,-51,0,0,0.0832728 -8003,5503:218,-38,-51,0,0,0.0866592 -8004,5503:217,-37,-51,0,0,0.0844806 -8005,5503:216,-36,-51,0,0,0.0807284 -8006,5503:215,-35,-51,0,0,0.0843616 -8007,5503:114,-34,-51,0,0,0.0847035 -8008,5503:113,-33,-51,0,0,0.084298 -8009,5503:112,-32,-51,0,0,0.0815402 -8010,5503:111,-31,-51,0,0,0.0816018 -8011,5503:110,-30,-51,0,0,0.0802492 -8012,5502:219,-29,-51,0,0,0.0808581 -8013,5502:218,-28,-51,0,0,0.0780035 -8014,5502:217,-27,-51,0,0,0.0777601 -8015,5502:216,-26,-51,0,0,0.0778042 -8016,5502:215,-25,-51,0,0,0.0785446 -8017,5502:114,-24,-51,0,0,0.088093 -8018,5502:113,-23,-51,0,0,0.0895731 -8019,5502:112,-22,-51,0,0,0.0888219 -8020,5502:111,-21,-51,0,0,0.0857527 -8021,5502:110,-20,-51,0,0,0.0819646 -8022,5501:219,-19,-51,0,0,0.082983 -8023,5501:218,-18,-51,0,0,0.0825695 -8024,5501:217,-17,-51,0,0,0.0804315 -8025,5501:216,-16,-51,0,0,0.0786489 -8026,5501:215,-15,-51,0,0,0.0785149 -8027,5501:114,-14,-51,0,0,0.0787755 -8028,5501:113,-13,-51,0,0,0.0797653 -8029,5501:112,-12,-51,0,0,0.0804315 -8030,5501:111,-11,-51,0,0,0.080022 -8031,5501:110,-10,-51,0,0,0.0787755 -8032,5500:219,-9,-51,0,0,0.0793366 -8033,5500:218,-8,-51,0,0,0.079788 -8034,5500:217,-7,-51,0,0,0.0796447 -8035,5500:216,-6,-51,0,0,0.0776127 -8036,5500:215,-5,-51,0,0,0.0771141 -8037,5500:114,-4,-51,0,0,0.0756428 -8038,5500:113,-3,-51,0,0,0.0754993 -8039,5500:112,-2,-51,0,0,0.0754275 -8040,5500:111,-1,-51,0,0,0.0751344 -8041,3500:111,0,-51,0,0,0.074899 -8042,3500:111,1,-51,0,0,0.074828 -8043,3500:112,2,-51,0,0,0.0749205 -8044,3500:113,3,-51,0,0,0.0755567 -8045,3500:114,4,-51,0,0,0.07565 -8046,3500:215,5,-51,0,0,0.0755207 -8047,3500:216,6,-51,0,0,0.0752343 -8048,3500:217,7,-51,0,0,0.0749631 -8049,3500:218,8,-51,0,0,0.075006 -8050,3500:219,9,-51,0,0,0.0750843 -8051,3501:110,10,-51,0,0,0.0748493 -8052,3501:111,11,-51,0,0,0.0747996 -8053,3501:112,12,-51,0,0,0.0748208 -8054,3501:113,13,-51,0,0,0.0748564 -8055,3501:114,14,-51,0,0,0.074899 -8056,3501:215,15,-51,0,0,0.0748705 -8057,3501:216,16,-51,0,0,0.0748636 -8058,3501:217,17,-51,0,0,0.0748421 -8059,3501:218,18,-51,0,0,0.074828 -8060,3501:219,19,-51,0,0,0.0748208 -8061,3502:110,20,-51,0,0,0.0747924 -8062,3502:111,21,-51,0,0,0.0749846 -8063,3502:112,22,-51,0,0,0.0749275 -8064,3502:113,23,-51,0,0,0.0748421 -8065,3502:114,24,-51,0,0,0.0748564 -8066,3502:215,25,-51,0,0,0.0749703 -8067,3502:216,26,-51,0,0,0.0751059 -8068,3502:217,27,-51,0,0,0.0751344 -8069,3502:218,28,-51,0,0,0.0749346 -8070,3502:219,29,-51,0,0,0.0750201 -8071,3503:110,30,-51,0,0,0.0750345 -8072,3503:111,31,-51,0,0,0.0752343 -8073,3503:112,32,-51,0,0,0.075063 -8074,3503:113,33,-51,0,0,0.0752057 -8075,3503:114,34,-51,0,0,0.07635 -8076,3503:215,35,-51,0,0,0.07827 -8077,3503:216,36,-51,0,0,0.0774217 -8078,3503:217,37,-51,0,0,0.0757795 -8079,3503:218,38,-51,0,0,0.0777232 -8080,3503:219,39,-51,0,0,0.0767347 -8081,3504:110,40,-51,0,0,0.0772092 -8082,3504:111,41,-51,0,0,0.0778634 -8083,3504:112,42,-51,0,0,0.0780405 -8084,3504:113,43,-51,0,0,0.0780405 -8085,3504:114,44,-51,0,0,0.077635 -8086,3504:215,45,-51,0,0,0.0769681 -8087,3504:216,46,-51,0,0,0.0771799 -8088,3504:217,47,-51,0,0,0.0778116 -8089,3504:218,48,-51,0,0,0.0774878 -8090,3504:219,49,-51,0,0,0.0766184 -8091,3505:110,50,-51,0,0,0.0766184 -8092,3505:111,51,-51,0,0,0.0758515 -8093,3505:112,52,-51,0,0,0.0772092 -8094,3505:113,53,-51,0,0,0.0790145 -8095,3505:114,54,-51,0,0,0.0758225 -8096,3505:215,55,-51,0,0,0.0774952 -8097,3505:216,56,-51,0,0,0.0762485 -8098,3505:217,57,-51,0,0,0.07565 -8099,3505:218,58,-51,0,0,0.0778116 -8100,3505:219,59,-51,0,0,0.0843219 -8101,3506:110,60,-51,0,0,0.0788873 -8102,3506:111,61,-51,0,0,0.0832336 -8103,3506:112,62,-51,0,0,0.0826864 -8104,3506:113,63,-51,0,0,0.0781588 -8105,3506:114,64,-51,0,0,0.0817638 -8106,3506:215,65,-51,0,0,0.0872057 -8107,3506:216,66,-51,0,0,0.0877551 -8108,3506:217,67,-51,0,0,0.0856078 -8109,3506:218,68,-51,0,0,0.0868708 -8110,3506:219,69,-51,0,0,0.0878867 -8111,3507:110,70,-51,0,0,0.088316 -8112,3507:111,71,-51,0,0,0.0902036 -8113,3507:112,72,-51,0,0,0.08303 -8114,3507:114,74,-51,0,0,0.0800978 -8115,3507:215,75,-51,0,0,0.0794491 -8116,3507:216,76,-51,0,0,0.0790145 -8117,3507:217,77,-51,0,0,0.0793891 -8118,3507:218,78,-51,0,0,0.0792691 -8119,3507:219,79,-51,0,0,0.077532 -8120,3508:110,80,-51,0,0,0.0770996 -8121,3508:111,81,-51,0,0,0.0770849 -8122,3508:112,82,-51,0,0,0.0773044 -8123,3508:113,83,-51,0,0,0.0772459 -8124,3508:114,84,-51,0,0,0.0773924 -8125,3508:215,85,-51,0,0,0.0768806 -8126,3508:216,86,-51,0,0,0.0779149 -8127,3508:217,87,-51,0,0,0.0880351 -8128,3508:218,88,-51,0,0,0.0964704 -8129,3508:219,89,-51,0,0,0.0910673 -8130,3509:110,90,-51,0,0,0.0889718 -8131,3509:111,91,-51,0,0,0.0898333 -8132,3509:112,92,-51,0,0,0.090855 -8133,3509:113,93,-51,0,0,0.0909568 -8134,3509:114,94,-51,0,0,0.0901699 -8135,3509:215,95,-51,0,0,0.089741 -8136,3509:216,96,-51,0,0,0.0877963 -8137,3509:217,97,-51,0,0,0.0874759 -8138,3509:218,98,-51,0,0,0.0881507 -8139,3509:219,99,-51,0,0,0.0895481 -8140,3510:110,100,-51,0,0,0.0918871 -8141,3510:111,101,-51,0,0,0.0916302 -8142,3510:112,102,-51,0,0,0.0913909 -8143,3510:113,103,-51,0,0,0.0947733 -8144,3510:114,104,-51,0,0,0.0965688 -8145,3510:215,105,-51,0,0,0.0955696 -8146,3510:216,106,-51,0,0,0.0950292 -8147,3510:217,107,-51,0,0,0.0928259 -8148,3510:218,108,-51,0,0,0.0904992 -8149,3510:219,109,-51,0,0,0.09533 -8150,3511:110,110,-51,0,0,0.0971891 -8151,3511:111,111,-51,0,0,0.0970091 -8152,3511:112,112,-51,0,0,0.0944038 -8153,3511:113,113,-51,0,0,0.101285 -8154,3511:114,114,-51,0,0,0.104029 -8155,3511:215,115,-51,0,0,0.0977858 -8156,3511:216,116,-51,0,0,0.0976136 -8157,3511:217,117,-51,0,0,0.0986411 -8158,3511:218,118,-51,0,0,0.0989795 -8159,3511:219,119,-51,0,0,0.100781 -8160,3512:110,120,-51,0,0,0.100892 -8161,3512:111,121,-51,0,0,0.102252 -8163,3512:113,123,-51,0,0,0.102943 -8164,3512:114,124,-51,0,0,0.103047 -8165,3512:215,125,-51,0,0,0.102848 -8166,3512:216,126,-51,0,0,0.103114 -8167,3512:217,127,-51,0,0,0.104653 -8168,3512:218,128,-51,0,0,0.105824 -8169,3512:219,129,-51,0,0,0.106869 -8170,3513:110,130,-51,0,0,0.107873 -8171,3513:111,131,-51,0,0,0.108042 -8172,3513:112,132,-51,0,0,0.108329 -8173,3513:113,133,-51,0,0,0.108071 -8174,3513:114,134,-51,0,0,0.104827 -8175,3513:215,135,-51,0,0,0.1028 -8176,3513:216,136,-51,0,0,0.104096 -8177,3513:217,137,-51,0,0,0.103924 -8178,3513:218,138,-51,0,0,0.10319 -8179,3513:219,139,-51,0,0,0.103266 -8180,3514:110,140,-51,0,0,0.102469 -8181,3514:111,141,-51,0,0,0.102962 -8182,3514:112,142,-51,0,0,0.103943 -8183,3514:113,143,-51,0,0,0.10561 -8184,3514:114,144,-51,0,0,0.105339 -8185,3514:215,145,-51,0,0,0.104596 -8186,3514:216,146,-51,0,0,0.103838 -8187,3514:217,147,-51,0,0,0.101838 -8188,3514:218,148,-51,0,0,0.099108 -8189,3514:219,149,-51,0,0,0.0956672 -8190,3515:110,150,-51,0,0,0.0862049 -8191,3515:111,151,-51,0,0,0.0895984 -8192,3515:112,152,-51,0,0,0.0901951 -8193,3515:113,153,-51,0,0,0.0927307 -8194,3515:114,154,-51,0,0,0.0945707 -8195,3515:215,155,-51,0,0,0.0990162 -8196,3515:216,156,-51,0,0,0.100846 -8197,3515:217,157,-51,0,0,0.0997059 -8198,3515:218,158,-51,0,0,0.0996873 -8199,3515:219,159,-51,0,0,0.100753 -8200,3516:110,160,-51,0,0,0.108289 -8201,3516:111,161,-51,0,0,0.111638 -8202,3516:112,162,-51,0,0,0.12778 -8203,3516:113,163,-51,0,0,0.129937 -8204,3516:114,164,-51,0,0,0.131936 -8205,3516:215,165,-51,0,0,0.128607 -8206,3516:216,166,-51,0,0,0.120837 -8207,3516:217,167,-51,0,0,0.130706 -8208,3516:218,168,-51,0,0,0.132019 -8209,3516:219,169,-51,0,0,0.13196 -8210,3517:110,170,-51,0,0,0.130753 -8211,3517:111,171,-51,0,0,0.12762 -8212,3517:112,172,-51,0,0,0.12801 -8213,3517:113,173,-51,0,0,0.128228 -8214,3517:114,174,-51,0,0,0.127998 -8215,3517:215,175,-51,0,0,0.126526 -8216,3517:216,176,-51,0,0,0.124743 -8217,3517:217,177,-51,0,0,0.122252 -8218,3517:218,178,-51,0,0,0.123303 -8219,3517:219,179,-51,0,0,0.123037 -8220,3518:110,180,-51,0,0,0.120129 -8221,5518:100,-180,-50,0,0,0.132585 -8222,5517:209,-179,-50,0,0,0.125994 -8223,5517:208,-178,-50,0,0,0.120608 -8224,5517:207,-177,-50,0,0,0.122583 -8225,5517:206,-176,-50,0,0,0.123904 -8226,5517:205,-175,-50,0,0,0.125756 -8227,5517:104,-174,-50,0,0,0.125835 -8228,5517:103,-173,-50,0,0,0.123481 -8229,5517:102,-172,-50,0,0,0.12202 -8230,5517:101,-171,-50,0,0,0.123626 -8231,5517:100,-170,-50,0,0,0.125361 -8232,5516:209,-169,-50,0,0,0.121746 -8233,5516:208,-168,-50,0,0,0.118477 -8234,5516:207,-167,-50,0,0,0.119912 -8235,5516:206,-166,-50,0,0,0.124071 -8236,5516:205,-165,-50,0,0,0.12287 -8237,5516:104,-164,-50,0,0,0.121077 -8238,5516:103,-163,-50,0,0,0.120979 -8239,5516:102,-162,-50,0,0,0.120183 -8240,5516:101,-161,-50,0,0,0.119177 -8241,5516:100,-160,-50,0,0,0.117622 -8242,5515:209,-159,-50,0,0,0.116348 -8243,5515:208,-158,-50,0,0,0.121164 -8244,5515:207,-157,-50,0,0,0.127038 -8245,5515:206,-156,-50,0,0,0.121515 -8246,5515:205,-155,-50,0,0,0.118617 -8247,5515:104,-154,-50,0,0,0.116697 -8248,5515:103,-153,-50,0,0,0.110673 -8249,5515:102,-152,-50,0,0,0.0973155 -8250,5515:101,-151,-50,0,0,0.0973967 -8251,5515:100,-150,-50,0,0,0.101659 -8252,5514:209,-149,-50,0,0,0.10027 -8253,5514:208,-148,-50,0,0,0.0973786 -8254,5514:207,-147,-50,0,0,0.108121 -8255,5514:206,-146,-50,0,0,0.116063 -8256,5514:205,-145,-50,0,0,0.12134 -8257,5514:104,-144,-50,0,0,0.122351 -8258,5514:103,-143,-50,0,0,0.121285 -8259,5514:102,-142,-50,0,0,0.123336 -8260,5514:101,-141,-50,0,0,0.13196 -8261,5514:100,-140,-50,0,0,0.138949 -8262,5513:209,-139,-50,0,0,0.136146 -8263,5513:208,-138,-50,0,0,0.128964 -8264,5513:207,-137,-50,0,0,0.133938 -8265,5513:206,-136,-50,0,0,0.135038 -8266,5513:205,-135,-50,0,0,0.135422 -8267,5513:104,-134,-50,0,0,0.130461 -8268,5513:103,-133,-50,0,0,0.128251 -8269,5513:102,-132,-50,0,0,0.125767 -8270,5513:101,-131,-50,0,0,0.12553 -8272,5512:209,-129,-50,0,0,0.137481 -8273,5512:208,-128,-50,0,0,0.143851 -8274,5512:207,-127,-50,0,0,0.153965 -8275,5512:206,-126,-50,0,0,0.154353 -8276,5512:205,-125,-50,0,0,0.148 -8277,5512:104,-124,-50,0,0,0.135134 -8278,5512:103,-123,-50,0,0,0.128918 -8279,5512:102,-122,-50,0,0,0.123737 -8280,5512:101,-121,-50,0,0,0.127163 -8281,5512:100,-120,-50,0,0,0.129427 -8282,5511:209,-119,-50,0,0,0.132372 -8283,5511:208,-118,-50,0,0,0.135386 -8284,5511:207,-117,-50,0,0,0.13922 -8285,5511:206,-116,-50,0,0,0.138802 -8286,5511:205,-115,-50,0,0,0.13697 -8287,5511:104,-114,-50,0,0,0.129057 -8288,5511:103,-113,-50,0,0,0.128734 -8289,5511:102,-112,-50,0,0,0.129392 -8290,5511:101,-111,-50,0,0,0.131267 -8291,5511:100,-110,-50,0,0,0.13281 -8292,5510:209,-109,-50,0,0,0.134069 -8293,5510:208,-108,-50,0,0,0.133985 -8294,5510:207,-107,-50,0,0,0.131631 -8295,5510:206,-106,-50,0,0,0.129462 -8296,5510:205,-105,-50,0,0,0.13196 -8297,5510:104,-104,-50,0,0,0.137346 -8298,5510:103,-103,-50,0,0,0.137201 -8299,5510:102,-102,-50,0,0,0.132195 -8300,5510:101,-101,-50,0,0,0.134571 -8301,5510:100,-100,-50,0,0,0.132184 -8302,5509:209,-99,-50,0,0,0.130869 -8303,5509:208,-98,-50,0,0,0.129833 -8304,5509:207,-97,-50,0,0,0.126333 -8305,5509:206,-96,-50,0,0,0.126787 -8306,5509:205,-95,-50,0,0,0.130589 -8307,5509:104,-94,-50,0,0,0.13216 -8308,5509:103,-93,-50,0,0,0.130472 -8309,5509:102,-92,-50,0,0,0.130916 -8310,5509:101,-91,-50,0,0,0.133902 -8311,5509:100,-90,-50,0,0,0.132738 -8312,5508:209,-89,-50,0,0,0.130181 -8313,5508:208,-88,-50,0,0,0.128113 -8314,5508:207,-87,-50,0,0,0.129323 -8315,5508:206,-86,-50,0,0,0.130205 -8316,5508:205,-85,-50,0,0,0.132999 -8317,5508:104,-84,-50,0,0,0.134296 -8318,5508:103,-83,-50,0,0,0.130706 -8319,5508:102,-82,-50,0,0,0.13024 -8320,5508:101,-81,-50,0,0,0.132349 -8321,5508:100,-80,-50,0,0,0.131725 -8322,5507:209,-79,-50,0,0,0.129949 -8323,5507:208,-78,-50,0,0,0.130577 -8324,5507:207,-77,-50,0,0,0.133319 -8325,5507:206,-76,-50,0,0,0.134774 -8326,5507:205,-75,-50,0,0,0.133628 -8327,5507:104,-74,-50,0,0,0.13242 -8328,5507:103,-73,-50,0,0,0.134607 -8329,5507:102,-72,-50,0,0,0.13714 -8330,5507:101,-71,-50,0,0,0.136049 -8331,5507:100,-70,-50,0,0,0.132077 -8332,5506:209,-69,-50,0,0,0.126208 -8333,5506:208,-68,-50,0,0,0.114689 -8334,5506:207,-67,-50,0,0,0.108936 -8335,5506:206,-66,-50,0,0,0.109546 -8336,5506:205,-65,-50,0,0,0.110936 -8337,5506:104,-64,-50,0,0,0.114898 -8338,5506:103,-63,-50,0,0,0.121625 -8339,5506:102,-62,-50,0,0,0.121186 -8340,5506:101,-61,-50,0,0,0.115359 -8341,5506:100,-60,-50,0,0,0.101763 -8342,5505:209,-59,-50,0,0,0.100911 -8343,5505:208,-58,-50,0,0,0.0947997 -8344,5505:207,-57,-50,0,0,0.0942632 -8345,5505:206,-56,-50,0,0,0.0917757 -8346,5505:205,-55,-50,0,0,0.0913568 -8347,5505:104,-54,-50,0,0,0.0964076 -8348,5505:103,-53,-50,0,0,0.0952238 -8349,5505:102,-52,-50,0,0,0.0911951 -8350,5505:101,-51,-50,0,0,0.0883657 -8351,5505:100,-50,-50,0,0,0.0859705 -8352,5504:209,-49,-50,0,0,0.088631 -8353,5504:208,-48,-50,0,0,0.0954807 -8354,5504:207,-47,-50,0,0,0.0964346 -8355,5504:206,-46,-50,0,0,0.0926961 -8356,5504:205,-45,-50,0,0,0.0904316 -8357,5504:104,-44,-50,0,0,0.0886891 -8358,5504:103,-43,-50,0,0,0.0861644 -8359,5504:102,-42,-50,0,0,0.0917328 -8360,5504:101,-41,-50,0,0,0.0892303 -8361,5504:100,-40,-50,0,0,0.0904737 -8362,5503:209,-39,-50,0,0,0.0924285 -8363,5503:208,-38,-50,0,0,0.0875252 -8364,5503:207,-37,-50,0,0,0.0876565 -8365,5503:206,-36,-50,0,0,0.0876319 -8366,5503:205,-35,-50,0,0,0.0882582 -8367,5503:104,-34,-50,0,0,0.0855837 -8368,5503:103,-33,-50,0,0,0.0845044 -8369,5503:102,-32,-50,0,0,0.084775 -8370,5503:101,-31,-50,0,0,0.0850225 -8371,5503:100,-30,-50,0,0,0.0836658 -8372,5502:209,-29,-50,0,0,0.0838944 -8373,5502:208,-28,-50,0,0,0.0837052 -8374,5502:207,-27,-50,0,0,0.0825851 -8375,5502:206,-26,-50,0,0,0.0841712 -8376,5502:205,-25,-50,0,0,0.0847991 -8377,5502:104,-24,-50,0,0,0.0894058 -8378,5502:103,-23,-50,0,0,0.0913485 -8379,5502:102,-22,-50,0,0,0.0870503 -8380,5502:101,-21,-50,0,0,0.0863749 -8381,5502:100,-20,-50,0,0,0.0857205 -8382,5501:209,-19,-50,0,0,0.0850545 -8383,5501:208,-18,-50,0,0,0.0861725 -8384,5501:207,-17,-50,0,0,0.0853267 -8385,5501:206,-16,-50,0,0,0.0851507 -8386,5501:205,-15,-50,0,0,0.0838708 -8387,5501:104,-14,-50,0,0,0.0827956 -8388,5501:103,-13,-50,0,0,0.0830847 -8389,5501:102,-12,-50,0,0,0.0840287 -8390,5501:101,-11,-50,0,0,0.085624 -8391,5501:100,-10,-50,0,0,0.0846476 -8392,5500:209,-9,-50,0,0,0.0830142 -8393,5500:208,-8,-50,0,0,0.0839814 -8394,5500:207,-7,-50,0,0,0.0828423 -8395,5500:206,-6,-50,0,0,0.0827799 -8396,5500:205,-5,-50,0,0,0.0814787 -8397,5500:104,-4,-50,0,0,0.0821271 -8398,5500:103,-3,-50,0,0,0.0804012 -8399,5500:102,-2,-50,0,0,0.0813943 -8400,5500:101,-1,-50,0,0,0.0813174 -8401,3500:101,0,-50,0,0,0.0806066 -8402,3500:101,1,-50,0,0,0.0794792 -8403,3500:102,2,-50,0,0,0.0790218 -8404,3500:103,3,-50,0,0,0.0770775 -8405,3500:104,4,-50,0,0,0.0766184 -8406,3500:205,5,-50,0,0,0.0761689 -8407,3500:206,6,-50,0,0,0.0768003 -8408,3500:207,7,-50,0,0,0.0769315 -8409,3500:208,8,-50,0,0,0.0769389 -8410,3500:209,9,-50,0,0,0.0772092 -8411,3501:100,10,-50,0,0,0.0758803 -8412,3501:101,11,-50,0,0,0.0749846 -8413,3501:102,12,-50,0,0,0.0749703 -8414,3501:103,13,-50,0,0,0.0750702 -8415,3501:104,14,-50,0,0,0.0749916 -8416,3501:205,15,-50,0,0,0.0749133 -8417,3501:206,16,-50,0,0,0.0748777 -8418,3501:207,17,-50,0,0,0.0748421 -8419,3501:208,18,-50,0,0,0.0748208 -8420,3501:209,19,-50,0,0,0.0749062 -8421,3502:100,20,-50,0,0,0.075313 -8422,3502:101,21,-50,0,0,0.075765 -8423,3502:102,22,-50,0,0,0.0757002 -8424,3502:103,23,-50,0,0,0.0753847 -8425,3502:104,24,-50,0,0,0.0754849 -8426,3502:205,25,-50,0,0,0.07614 -8427,3502:206,26,-50,0,0,0.0765676 -8428,3502:207,27,-50,0,0,0.0763354 -8429,3502:208,28,-50,0,0,0.0754921 -8430,3502:209,29,-50,0,0,0.0762918 -8431,3503:100,30,-50,0,0,0.0773559 -8432,3503:101,31,-50,0,0,0.0766401 -8433,3503:102,32,-50,0,0,0.0765747 -8434,3503:103,33,-50,0,0,0.0759595 -8435,3503:104,34,-50,0,0,0.0772018 -8436,3503:205,35,-50,0,0,0.0805761 -8437,3503:206,36,-50,0,0,0.0787605 -8438,3503:207,37,-50,0,0,0.0793815 -8439,3503:208,38,-50,0,0,0.0794868 -8440,3503:209,39,-50,0,0,0.079254 -8441,3504:100,40,-50,0,0,0.0790218 -8442,3504:101,41,-50,0,0,0.0793064 -8443,3504:102,42,-50,0,0,0.0794792 -8444,3504:103,43,-50,0,0,0.0799768 -8445,3504:104,44,-50,0,0,0.0807435 -8446,3504:205,45,-50,0,0,0.0853509 -8447,3504:206,46,-50,0,0,0.083926 -8448,3504:207,47,-50,0,0,0.0803025 -8449,3504:208,48,-50,0,0,0.0791191 -8450,3504:209,49,-50,0,0,0.0800525 -8451,3505:100,50,-50,0,0,0.0812713 -8452,3505:101,51,-50,0,0,0.08181 -8453,3505:102,52,-50,0,0,0.0866185 -8454,3505:103,53,-50,0,0,0.0898584 -8455,3505:104,54,-50,0,0,0.0872546 -8456,3505:205,55,-50,0,0,0.0819491 -8457,3505:206,56,-50,0,0,0.0839183 -8458,3505:207,57,-50,0,0,0.084584 -8459,3505:208,58,-50,0,0,0.0852626 -8460,3505:209,59,-50,0,0,0.0876482 -8461,3506:100,60,-50,0,0,0.0880434 -8462,3506:101,61,-50,0,0,0.085648 -8463,3506:102,62,-50,0,0,0.0886723 -8464,3506:103,63,-50,0,0,0.0886723 -8465,3506:104,64,-50,0,0,0.0931292 -8466,3506:205,65,-50,0,0,0.0961394 -8467,3506:206,66,-50,0,0,0.0933288 -8468,3506:207,67,-50,0,0,0.0863344 -8469,3506:208,68,-50,0,0,0.0893639 -8470,3506:209,69,-50,0,0,0.0889469 -8471,3507:100,70,-50,0,0,0.0915277 -8472,3507:101,71,-50,0,0,0.0919986 -8473,3507:102,72,-50,0,0,0.0889634 -8474,3507:104,74,-50,0,0,0.0829205 -8475,3507:205,75,-50,0,0,0.0846955 -8476,3507:206,76,-50,0,0,0.0849267 -8477,3507:207,77,-50,0,0,0.0841159 -8478,3507:208,78,-50,0,0,0.0838313 -8479,3507:209,79,-50,0,0,0.0827644 -8480,3508:100,80,-50,0,0,0.0805531 -8481,3508:101,81,-50,0,0,0.0800828 -8482,3508:102,82,-50,0,0,0.079284 -8483,3508:103,83,-50,0,0,0.0777084 -8484,3508:104,84,-50,0,0,0.077224 -8485,3508:205,85,-50,0,0,0.0772385 -8486,3508:206,86,-50,0,0,0.0807971 -8487,3508:207,87,-50,0,0,0.0984222 -8488,3508:208,88,-50,0,0,0.099872 -8489,3508:209,89,-50,0,0,0.0976772 -8490,3509:100,90,-50,0,0,0.0961394 -8491,3509:101,91,-50,0,0,0.0968471 -8492,3509:102,92,-50,0,0,0.0948174 -8493,3509:103,93,-50,0,0,0.0928259 -8494,3509:104,94,-50,0,0,0.0932421 -8495,3509:205,95,-50,0,0,0.0911525 -8496,3509:206,96,-50,0,0,0.0893974 -8497,3509:207,97,-50,0,0,0.0909568 -8498,3509:208,98,-50,0,0,0.0908464 -8499,3509:209,99,-50,0,0,0.0888636 -8500,3510:100,100,-50,0,0,0.0915191 -8501,3510:101,101,-50,0,0,0.093103 -8502,3510:102,102,-50,0,0,0.0940268 -8503,3510:103,103,-50,0,0,0.0972433 -8504,3510:104,104,-50,0,0,0.0982307 -8505,3510:205,105,-50,0,0,0.0987965 -8506,3510:206,106,-50,0,0,0.100122 -8507,3510:207,107,-50,0,0,0.100094 -8508,3510:208,108,-50,0,0,0.10079 -8509,3510:209,109,-50,0,0,0.101341 -8510,3511:100,110,-50,0,0,0.101033 -8511,3511:101,111,-50,0,0,0.102791 -8512,3511:102,112,-50,0,0,0.10107 -8513,3511:103,113,-50,0,0,0.100818 -8514,3511:104,114,-50,0,0,0.105194 -8515,3511:205,115,-50,0,0,0.104788 -8516,3511:206,116,-50,0,0,0.108101 -8517,3511:207,117,-50,0,0,0.109917 -8518,3511:208,118,-50,0,0,0.109506 -8519,3511:209,119,-50,0,0,0.109877 -8520,3512:100,120,-50,0,0,0.106077 -8521,3512:101,121,-50,0,0,0.103399 -8522,3512:102,122,-50,0,0,0.104856 -8523,3512:103,123,-50,0,0,0.105921 -8524,3512:104,124,-50,0,0,0.103523 -8525,3512:205,125,-50,0,0,0.103475 -8526,3512:206,126,-50,0,0,0.107173 -8527,3512:207,127,-50,0,0,0.110279 -8528,3512:208,128,-50,0,0,0.109676 -8529,3512:209,129,-50,0,0,0.107715 -8530,3513:100,130,-50,0,0,0.107468 -8531,3513:101,131,-50,0,0,0.107745 -8532,3513:102,132,-50,0,0,0.108786 -8533,3513:103,133,-50,0,0,0.108776 -8534,3513:104,134,-50,0,0,0.107508 -8535,3513:205,135,-50,0,0,0.105252 -8536,3513:206,136,-50,0,0,0.105912 -8537,3513:207,137,-50,0,0,0.106526 -8538,3513:208,138,-50,0,0,0.107232 -8539,3513:209,139,-50,0,0,0.105001 -8540,3514:100,140,-50,0,0,0.104991 -8541,3514:101,141,-50,0,0,0.106448 -8542,3514:102,142,-50,0,0,0.108032 -8543,3514:103,143,-50,0,0,0.109085 -8544,3514:104,144,-50,0,0,0.109166 -8545,3514:205,145,-50,0,0,0.108836 -8546,3514:206,146,-50,0,0,0.10817 -8547,3514:207,147,-50,0,0,0.105775 -8548,3514:208,148,-50,0,0,0.104067 -8549,3514:209,149,-50,0,0,0.0988605 -8550,3515:100,150,-50,0,0,0.0882415 -8551,3515:101,151,-50,0,0,0.0948438 -8552,3515:102,152,-50,0,0,0.0945973 -8553,3515:103,153,-50,0,0,0.097795 -8554,3515:104,154,-50,0,0,0.118231 -8555,3515:205,155,-50,0,0,0.120401 -8556,3515:206,156,-50,0,0,0.101904 -8557,3515:207,157,-50,0,0,0.101107 -8558,3515:208,158,-50,0,0,0.107036 -8559,3515:209,159,-50,0,0,0.112015 -8560,3516:100,160,-50,0,0,0.111566 -8561,3516:101,161,-50,0,0,0.109947 -8562,3516:102,162,-50,0,0,0.12202 -8563,3516:103,163,-50,0,0,0.120053 -8564,3516:104,164,-50,0,0,0.134367 -8565,3516:205,165,-50,0,0,0.132656 -8566,3516:206,166,-50,0,0,0.13383 -8567,3516:207,167,-50,0,0,0.13149 -8568,3516:208,168,-50,0,0,0.131232 -8569,3516:209,169,-50,0,0,0.131033 -8570,3517:100,170,-50,0,0,0.130694 -8571,3517:101,171,-50,0,0,0.129612 -8572,3517:102,172,-50,0,0,0.13203 -8573,3517:103,173,-50,0,0,0.131244 -8574,3517:104,174,-50,0,0,0.130717 -8575,3517:205,175,-50,0,0,0.128665 -8576,3517:206,176,-50,0,0,0.127403 -8577,3517:207,177,-50,0,0,0.12499 -8578,3517:208,178,-50,0,0,0.125632 -8579,3517:209,179,-50,0,0,0.126981 -8580,3518:100,180,-50,0,0,0.132585 -8581,5418:390,-180,-49,0,0,0.137018 -8582,5417:499,-179,-49,0,0,0.134511 -8583,5417:498,-178,-49,0,0,0.126277 -8584,5417:497,-177,-49,0,0,0.126503 -8585,5417:496,-176,-49,0,0,0.136509 -8586,5417:495,-175,-49,0,0,0.135663 -8587,5417:394,-174,-49,0,0,0.134224 -8588,5417:393,-173,-49,0,0,0.13281 -8589,5417:392,-172,-49,0,0,0.132656 -8590,5417:391,-171,-49,0,0,0.135038 -8591,5417:390,-170,-49,0,0,0.133474 -8592,5416:499,-169,-49,0,0,0.126913 -8593,5416:498,-168,-49,0,0,0.122561 -8594,5416:497,-167,-49,0,0,0.125384 -8595,5416:496,-166,-49,0,0,0.131056 -8596,5416:495,-165,-49,0,0,0.130741 -8597,5416:394,-164,-49,0,0,0.127643 -8598,5416:393,-163,-49,0,0,0.124317 -8599,5416:392,-162,-49,0,0,0.123214 -8600,5416:391,-161,-49,0,0,0.124822 -8601,5416:390,-160,-49,0,0,0.128849 -8602,5415:499,-159,-49,0,0,0.130822 -8603,5415:498,-158,-49,0,0,0.13307 -8604,5415:497,-157,-49,0,0,0.136037 -8605,5415:496,-156,-49,0,0,0.131713 -8606,5415:495,-155,-49,0,0,0.125159 -8607,5415:394,-154,-49,0,0,0.118327 -8608,5415:393,-153,-49,0,0,0.113568 -8609,5415:392,-152,-49,0,0,0.110431 -8610,5415:391,-151,-49,0,0,0.10531 -8611,5415:390,-150,-49,0,0,0.103332 -8612,5414:499,-149,-49,0,0,0.106067 -8613,5414:498,-148,-49,0,0,0.100623 -8614,5414:497,-147,-49,0,0,0.102431 -8615,5414:496,-146,-49,0,0,0.104846 -8616,5414:495,-145,-49,0,0,0.11224 -8617,5414:394,-144,-49,0,0,0.120303 -8618,5414:393,-143,-49,0,0,0.1342 -8619,5414:392,-142,-49,0,0,0.144688 -8620,5414:391,-141,-49,0,0,0.150504 -8621,5414:390,-140,-49,0,0,0.136921 -8622,5413:499,-139,-49,0,0,0.139454 -8623,5413:498,-138,-49,0,0,0.142239 -8624,5413:497,-137,-49,0,0,0.142251 -8625,5413:496,-136,-49,0,0,0.140903 -8626,5413:495,-135,-49,0,0,0.140381 -8627,5413:394,-134,-49,0,0,0.150255 -8628,5413:393,-133,-49,0,0,0.153697 -8629,5413:392,-132,-49,0,0,0.142967 -8630,5413:391,-131,-49,0,0,0.131513 -8631,5413:390,-130,-49,0,0,0.134117 -8632,5412:499,-129,-49,0,0,0.14437 -8633,5412:498,-128,-49,0,0,0.141239 -8634,5412:497,-127,-49,0,0,0.151123 -8635,5412:496,-126,-49,0,0,0.164046 -8636,5412:495,-125,-49,0,0,0.161193 -8637,5412:394,-124,-49,0,0,0.155713 -8638,5412:393,-123,-49,0,0,0.139874 -8639,5412:392,-122,-49,0,0,0.126753 -8640,5412:391,-121,-49,0,0,0.126913 -8641,5412:390,-120,-49,0,0,0.133331 -8642,5411:499,-119,-49,0,0,0.137895 -8643,5411:498,-118,-49,0,0,0.135314 -8644,5411:497,-117,-49,0,0,0.136764 -8645,5411:496,-116,-49,0,0,0.140716 -8646,5411:495,-115,-49,0,0,0.136339 -8647,5411:394,-114,-49,0,0,0.134918 -8648,5411:393,-113,-49,0,0,0.137822 -8649,5411:392,-112,-49,0,0,0.142164 -8650,5411:391,-111,-49,0,0,0.143649 -8651,5411:390,-110,-49,0,0,0.14493 -8652,5410:499,-109,-49,0,0,0.147237 -8653,5410:498,-108,-49,0,0,0.148142 -8654,5410:497,-107,-49,0,0,0.146451 -8655,5410:496,-106,-49,0,0,0.143914 -8656,5410:495,-105,-49,0,0,0.142942 -8657,5410:394,-104,-49,0,0,0.142917 -8658,5410:393,-103,-49,0,0,0.139898 -8659,5410:392,-102,-49,0,0,0.133676 -8660,5410:391,-101,-49,0,0,0.134738 -8661,5410:390,-100,-49,0,0,0.134595 -8662,5409:499,-99,-49,0,0,0.135687 -8663,5409:498,-98,-49,0,0,0.137042 -8664,5409:497,-97,-49,0,0,0.135447 -8665,5409:496,-96,-49,0,0,0.132928 -8666,5409:495,-95,-49,0,0,0.133343 -8667,5409:394,-94,-49,0,0,0.136642 -8668,5409:393,-93,-49,0,0,0.136049 -8669,5409:392,-92,-49,0,0,0.133296 -8670,5409:391,-91,-49,0,0,0.134654 -8671,5409:390,-90,-49,0,0,0.133628 -8672,5408:499,-89,-49,0,0,0.13481 -8673,5408:498,-88,-49,0,0,0.136134 -8674,5408:497,-87,-49,0,0,0.136097 -8675,5408:496,-86,-49,0,0,0.135507 -8676,5408:495,-85,-49,0,0,0.13646 -8677,5408:394,-84,-49,0,0,0.136279 -8678,5408:393,-83,-49,0,0,0.134475 -8679,5408:392,-82,-49,0,0,0.135206 -8680,5408:391,-81,-49,0,0,0.136788 -8681,5408:390,-80,-49,0,0,0.135904 -8682,5407:499,-79,-49,0,0,0.134679 -8683,5407:498,-78,-49,0,0,0.135459 -8684,5407:497,-77,-49,0,0,0.137225 -8685,5407:496,-76,-49,0,0,0.13731 -8686,5407:495,-75,-49,0,0,0.137116 -8687,5407:394,-74,-49,0,0,0.139997 -8688,5407:393,-73,-49,0,0,0.142703 -8689,5407:392,-72,-49,0,0,0.140766 -8690,5407:391,-71,-49,0,0,0.141563 -8691,5407:390,-70,-49,0,0,0.144155 -8692,5406:499,-69,-49,0,0,0.135796 -8693,5406:498,-68,-49,0,0,0.130135 -8694,5406:497,-67,-49,0,0,0.119944 -8695,5406:496,-66,-49,0,0,0.114762 -8696,5406:495,-65,-49,0,0,0.120194 -8697,5406:394,-64,-49,0,0,0.124474 -8698,5406:393,-63,-49,0,0,0.123225 -8699,5406:392,-62,-49,0,0,0.122064 -8700,5406:391,-61,-49,0,0,0.119739 -8701,5406:390,-60,-49,0,0,0.111444 -8702,5405:499,-59,-49,0,0,0.100706 -8703,5405:498,-58,-49,0,0,0.100855 -8704,5405:497,-57,-49,0,0,0.101135 -8705,5405:496,-56,-49,0,0,0.0999736 -8706,5405:495,-55,-49,0,0,0.0958187 -8707,5405:394,-54,-49,0,0,0.101575 -8708,5405:393,-53,-49,0,0,0.106331 -8709,5405:392,-52,-49,0,0,0.0954277 -8710,5405:391,-51,-49,0,0,0.0954452 -8711,5405:390,-50,-49,0,0,0.0975231 -8712,5404:499,-49,-49,0,0,0.0948527 -8713,5404:498,-48,-49,0,0,0.0978038 -8714,5404:497,-47,-49,0,0,0.0975142 -8715,5404:496,-46,-49,0,0,0.0984311 -8716,5404:495,-45,-49,0,0,0.0937731 -8717,5404:394,-44,-49,0,0,0.0922307 -8718,5404:393,-43,-49,0,0,0.0914936 -8719,5404:392,-42,-49,0,0,0.096068 -8720,5404:391,-41,-49,0,0,0.0979854 -8721,5404:390,-40,-49,0,0,0.0961931 -8722,5403:499,-39,-49,0,0,0.0967394 -8723,5403:498,-38,-49,0,0,0.09359 -8724,5403:497,-37,-49,0,0,0.0895649 -8725,5403:496,-36,-49,0,0,0.08959 -8726,5403:495,-35,-49,0,0,0.0900941 -8727,5403:394,-34,-49,0,0,0.0878538 -8728,5403:393,-33,-49,0,0,0.0852467 -8729,5403:392,-32,-49,0,0,0.0858656 -8730,5403:391,-31,-49,0,0,0.0869769 -8731,5403:390,-30,-49,0,0,0.0853348 -8732,5402:499,-29,-49,0,0,0.0849347 -8733,5402:498,-28,-49,0,0,0.0848468 -8734,5402:497,-27,-49,0,0,0.0836658 -8735,5402:496,-26,-49,0,0,0.0851665 -8736,5402:495,-25,-49,0,0,0.0883079 -8737,5402:394,-24,-49,0,0,0.0882251 -8738,5402:393,-23,-49,0,0,0.0911099 -8739,5402:392,-22,-49,0,0,0.091596 -8740,5402:391,-21,-49,0,0,0.0902711 -8741,5402:390,-20,-49,0,0,0.0936945 -8742,5401:499,-19,-49,0,0,0.0915447 -8743,5401:498,-18,-49,0,0,0.0905836 -8744,5401:497,-17,-49,0,0,0.0923426 -8745,5401:496,-16,-49,0,0,0.0924285 -8746,5401:495,-15,-49,0,0,0.0891801 -8747,5401:394,-14,-49,0,0,0.0874924 -8748,5401:393,-13,-49,0,0,0.0891302 -8749,5401:392,-12,-49,0,0,0.0909825 -8750,5401:391,-11,-49,0,0,0.0909993 -8751,5401:390,-10,-49,0,0,0.0892887 -8752,5400:499,-9,-49,0,0,0.0891552 -8753,5400:498,-8,-49,0,0,0.0897326 -8754,5400:497,-7,-49,0,0,0.0884486 -8755,5400:496,-6,-49,0,0,0.0869525 -8756,5400:495,-5,-49,0,0,0.0855435 -8757,5400:394,-4,-49,0,0,0.0848548 -8758,5400:393,-3,-49,0,0,0.0846078 -8759,5400:392,-2,-49,0,0,0.0836893 -8760,5400:391,-1,-49,0,0,0.0829047 -8761,3400:391,0,-49,0,0,0.0828423 -8762,3400:391,1,-49,0,0,0.0825851 -8763,3400:392,2,-49,0,0,0.0818486 -8764,3400:393,3,-49,0,0,0.0809115 -8765,3400:394,4,-49,0,0,0.0803859 -8766,3400:495,5,-49,0,0,0.0802418 -8767,3400:496,6,-49,0,0,0.0800828 -8768,3400:497,7,-49,0,0,0.0795469 -8769,3400:498,8,-49,0,0,0.0786786 -8770,3400:499,9,-49,0,0,0.079224 -8771,3401:390,10,-49,0,0,0.0784183 -8772,3401:391,11,-49,0,0,0.078344 -8773,3401:392,12,-49,0,0,0.0784258 -8774,3401:393,13,-49,0,0,0.0784927 -8775,3401:394,14,-49,0,0,0.0783071 -8776,3401:495,15,-49,0,0,0.0777527 -8777,3401:496,16,-49,0,0,0.0779224 -8778,3401:497,17,-49,0,0,0.0762629 -8779,3401:498,18,-49,0,0,0.0759452 -8780,3401:499,19,-49,0,0,0.0758658 -8781,3402:390,20,-49,0,0,0.0760317 -8782,3402:391,21,-49,0,0,0.0762991 -8783,3402:392,22,-49,0,0,0.0763281 -8784,3402:393,23,-49,0,0,0.0760895 -8785,3402:394,24,-49,0,0,0.0760245 -8786,3402:495,25,-49,0,0,0.0770117 -8787,3402:496,26,-49,0,0,0.0776864 -8788,3402:497,27,-49,0,0,0.079007 -8789,3402:498,28,-49,0,0,0.0797277 -8790,3402:499,29,-49,0,0,0.0802039 -8791,3403:390,30,-49,0,0,0.079803 -8792,3403:391,31,-49,0,0,0.0790517 -8793,3403:392,32,-49,0,0,0.0784852 -8794,3403:393,33,-49,0,0,0.0777453 -8795,3403:394,34,-49,0,0,0.0786711 -8796,3403:495,35,-49,0,0,0.079788 -8797,3403:496,36,-49,0,0,0.0850706 -8798,3403:497,37,-49,0,0,0.0846238 -8799,3403:498,38,-49,0,0,0.0802265 -8800,3403:499,39,-49,0,0,0.0795921 -8801,3404:390,40,-49,0,0,0.0805227 -8802,3404:391,41,-49,0,0,0.0844091 -8803,3404:392,42,-49,0,0,0.0811948 -8804,3404:393,43,-49,0,0,0.0810875 -8805,3404:394,44,-49,0,0,0.0840447 -8806,3404:495,45,-49,0,0,0.0858897 -8807,3404:496,46,-49,0,0,0.0852147 -8808,3404:497,47,-49,0,0,0.0852868 -8809,3404:498,48,-49,0,0,0.0881261 -8810,3404:499,49,-49,0,0,0.0891801 -8811,3405:390,50,-49,0,0,0.0879033 -8812,3405:391,51,-49,0,0,0.0850386 -8813,3405:392,52,-49,0,0,0.0861565 -8814,3405:393,53,-49,0,0,0.0891302 -8815,3405:394,54,-49,0,0,0.0886891 -8816,3405:495,55,-49,0,0,0.0868057 -8817,3405:496,56,-49,0,0,0.0858252 -8818,3405:497,57,-49,0,0,0.0867893 -8819,3405:498,58,-49,0,0,0.08764 -8820,3405:499,59,-49,0,0,0.0872464 -8821,3406:390,60,-49,0,0,0.0887971 -8822,3406:391,61,-49,0,0,0.089951 -8823,3406:392,62,-49,0,0,0.0901614 -8824,3406:393,63,-49,0,0,0.09077 -8825,3406:394,64,-49,0,0,0.0939392 -8826,3406:495,65,-49,0,0,0.096964 -8827,3406:496,66,-49,0,0,0.0967394 -8828,3406:497,67,-49,0,0,0.0899341 -8829,3406:498,68,-49,0,0,0.0889217 -8830,3406:499,69,-49,0,0,0.0911525 -8831,3407:390,70,-49,0,0,0.0930596 -8832,3407:391,71,-49,0,0,0.0940792 -8833,3407:392,72,-49,0,0,0.0912291 -8834,3407:394,74,-49,0,0,0.0885976 -8835,3407:495,75,-49,0,0,0.0898584 -8836,3407:496,76,-49,0,0,0.0837682 -8837,3407:497,77,-49,0,0,0.0856802 -8838,3407:498,78,-49,0,0,0.084775 -8839,3407:499,79,-49,0,0,0.084092 -8840,3408:390,80,-49,0,0,0.0837762 -8841,3408:391,81,-49,0,0,0.0843139 -8842,3408:392,82,-49,0,0,0.0818178 -8843,3408:393,83,-49,0,0,0.0789771 -8844,3408:394,84,-49,0,0,0.0848948 -8845,3408:495,85,-49,0,0,0.0989706 -8846,3408:496,86,-49,0,0,0.102838 -8847,3408:497,87,-49,0,0,0.101566 -8848,3408:498,88,-49,0,0,0.1015 -8849,3408:499,89,-49,0,0,0.0994295 -8850,3409:390,90,-49,0,0,0.0966586 -8851,3409:391,91,-49,0,0,0.0950203 -8852,3409:392,92,-49,0,0,0.0934331 -8853,3409:393,93,-49,0,0,0.0918785 -8854,3409:394,94,-49,0,0,0.0904569 -8855,3409:495,95,-49,0,0,0.0906007 -8856,3409:496,96,-49,0,0,0.0926874 -8857,3409:497,97,-49,0,0,0.0968022 -8858,3409:498,98,-49,0,0,0.0980306 -8859,3409:499,99,-49,0,0,0.0948969 -8860,3410:390,100,-49,0,0,0.0956496 -8861,3410:391,101,-49,0,0,0.0978583 -8862,3410:392,102,-49,0,0,0.0937209 -8863,3410:393,103,-49,0,0,0.0956317 -8864,3410:394,104,-49,0,0,0.10066 -8865,3410:495,105,-49,0,0,0.101163 -8866,3410:496,106,-49,0,0,0.100298 -8867,3410:497,107,-49,0,0,0.100762 -8868,3410:498,108,-49,0,0,0.102158 -8869,3410:499,109,-49,0,0,0.103047 -8870,3411:390,110,-49,0,0,0.103209 -8871,3411:391,111,-49,0,0,0.10595 -8872,3411:392,112,-49,0,0,0.103943 -8873,3411:393,113,-49,0,0,0.100567 -8874,3411:394,114,-49,0,0,0.102753 -8875,3411:495,115,-49,0,0,0.1038 -8876,3411:496,116,-49,0,0,0.109355 -8877,3411:497,117,-49,0,0,0.109215 -8878,3411:498,118,-49,0,0,0.108896 -8879,3411:499,119,-49,0,0,0.108498 -8880,3412:390,120,-49,0,0,0.10679 -8881,3412:391,121,-49,0,0,0.109335 -8882,3412:392,122,-49,0,0,0.114992 -8883,3412:393,123,-49,0,0,0.117707 -8884,3412:394,124,-49,0,0,0.114846 -8885,3412:495,125,-49,0,0,0.113754 -8886,3412:496,126,-49,0,0,0.1147 -8887,3412:497,127,-49,0,0,0.115097 -8888,3412:498,128,-49,0,0,0.113816 -8889,3412:499,129,-49,0,0,0.112015 -8890,3413:390,130,-49,0,0,0.110098 -8891,3413:391,131,-49,0,0,0.110279 -8892,3413:392,132,-49,0,0,0.110754 -8893,3413:393,133,-49,0,0,0.11037 -8894,3413:394,134,-49,0,0,0.112373 -8895,3413:495,135,-49,0,0,0.111352 -8896,3413:496,136,-49,0,0,0.109215 -8897,3413:497,137,-49,0,0,0.108617 -8898,3413:498,138,-49,0,0,0.108398 -8899,3413:499,139,-49,0,0,0.10818 -8900,3414:390,140,-49,0,0,0.108647 -8901,3414:391,141,-49,0,0,0.111678 -8902,3414:392,142,-49,0,0,0.115191 -8903,3414:393,143,-49,0,0,0.114575 -8904,3414:394,144,-49,0,0,0.113072 -8905,3414:495,145,-49,0,0,0.112476 -8906,3414:496,146,-49,0,0,0.111038 -8907,3414:497,147,-49,0,0,0.108002 -8908,3414:498,148,-49,0,0,0.102999 -8909,3414:499,149,-49,0,0,0.0938344 -8910,3415:390,150,-49,0,0,0.0952416 -8911,3415:391,151,-49,0,0,0.100057 -8912,3415:392,152,-49,0,0,0.102205 -8913,3415:393,153,-49,0,0,0.121274 -8914,3415:394,154,-49,0,0,0.122561 -8915,3415:495,155,-49,0,0,0.121384 -8916,3415:496,156,-49,0,0,0.114169 -8917,3415:497,157,-49,0,0,0.102981 -8918,3415:498,158,-49,0,0,0.106019 -8919,3415:499,159,-49,0,0,0.119274 -8920,3416:390,160,-49,0,0,0.11909 -8921,3416:391,161,-49,0,0,0.114075 -8922,3416:392,162,-49,0,0,0.122318 -8923,3416:393,163,-49,0,0,0.124183 -8924,3416:394,164,-49,0,0,0.137651 -8925,3416:495,165,-49,0,0,0.136376 -8926,3416:496,166,-49,0,0,0.133355 -8927,3416:497,167,-49,0,0,0.132609 -8928,3416:498,168,-49,0,0,0.131901 -8929,3416:499,169,-49,0,0,0.133878 -8930,3417:390,170,-49,0,0,0.135519 -8931,3417:391,171,-49,0,0,0.134248 -8932,3417:392,172,-49,0,0,0.136885 -8933,3417:393,173,-49,0,0,0.144472 -8934,3417:394,174,-49,0,0,0.1459 -8935,3417:495,175,-49,0,0,0.146992 -8936,3417:496,176,-49,0,0,0.145287 -8937,3417:497,177,-49,0,0,0.133605 -8938,3417:498,178,-49,0,0,0.12639 -8939,3417:499,179,-49,0,0,0.127907 -8940,3418:390,180,-49,0,0,0.137018 -8941,5418:380,-180,-48,0,0,0.141015 -8942,5417:489,-179,-48,0,0,0.144015 -8943,5417:488,-178,-48,0,0,0.144943 -8944,5417:487,-177,-48,0,0,0.133355 -8945,5417:486,-176,-48,0,0,0.134403 -8946,5417:485,-175,-48,0,0,0.139948 -8947,5417:384,-174,-48,0,0,0.140654 -8948,5417:383,-173,-48,0,0,0.140729 -8949,5417:382,-172,-48,0,0,0.140592 -8950,5417:381,-171,-48,0,0,0.14249 -8951,5417:380,-170,-48,0,0,0.141776 -8952,5416:489,-169,-48,0,0,0.132502 -8953,5416:488,-168,-48,0,0,0.128343 -8954,5416:487,-167,-48,0,0,0.128665 -8955,5416:486,-166,-48,0,0,0.130216 -8956,5416:485,-165,-48,0,0,0.133296 -8957,5416:384,-164,-48,0,0,0.134595 -8958,5416:383,-163,-48,0,0,0.131396 -8959,5416:382,-162,-48,0,0,0.129589 -8960,5416:381,-161,-48,0,0,0.133807 -8961,5416:380,-160,-48,0,0,0.137993 -8962,5415:489,-159,-48,0,0,0.13731 -8963,5415:488,-158,-48,0,0,0.140542 -8964,5415:487,-157,-48,0,0,0.143219 -8965,5415:486,-156,-48,0,0,0.141963 -8966,5415:485,-155,-48,0,0,0.136279 -8967,5415:384,-154,-48,0,0,0.130822 -8968,5415:383,-153,-48,0,0,0.121515 -8969,5415:382,-152,-48,0,0,0.120162 -8970,5415:381,-151,-48,0,0,0.115842 -8971,5415:380,-150,-48,0,0,0.11038 -8972,5414:489,-149,-48,0,0,0.107183 -8973,5414:488,-148,-48,0,0,0.10683 -8974,5414:487,-147,-48,0,0,0.106048 -8975,5414:486,-146,-48,0,0,0.105649 -8976,5414:485,-145,-48,0,0,0.110795 -8977,5414:384,-144,-48,0,0,0.12377 -8978,5414:383,-143,-48,0,0,0.130636 -8979,5414:382,-142,-48,0,0,0.132243 -8980,5414:381,-141,-48,0,0,0.130904 -8981,5414:380,-140,-48,0,0,0.135026 -8982,5413:489,-139,-48,0,0,0.141388 -8983,5413:488,-138,-48,0,0,0.147095 -8984,5413:487,-137,-48,0,0,0.149117 -8985,5413:486,-136,-48,0,0,0.150124 -8986,5413:485,-135,-48,0,0,0.153177 -8987,5413:384,-134,-48,0,0,0.157559 -8988,5413:383,-133,-48,0,0,0.155861 -8989,5413:382,-132,-48,0,0,0.148259 -8990,5413:381,-131,-48,0,0,0.142414 -8991,5413:380,-130,-48,0,0,0.161554 -8992,5412:489,-129,-48,0,0,0.168692 -8993,5412:488,-128,-48,0,0,0.163259 -8994,5412:487,-127,-48,0,0,0.166927 -8995,5412:486,-126,-48,0,0,0.169355 -8996,5412:485,-125,-48,0,0,0.171126 -8997,5412:384,-124,-48,0,0,0.169182 -8998,5412:383,-123,-48,0,0,0.158406 -8999,5412:382,-122,-48,0,0,0.151321 -9000,5412:381,-121,-48,0,0,0.139997 -9001,5412:380,-120,-48,0,0,0.137225 -9002,5411:489,-119,-48,0,0,0.142439 -9003,5411:488,-118,-48,0,0,0.147948 -9004,5411:487,-117,-48,0,0,0.148557 -9005,5411:486,-116,-48,0,0,0.149052 -9006,5411:485,-115,-48,0,0,0.153952 -9007,5411:384,-114,-48,0,0,0.153724 -9008,5411:383,-113,-48,0,0,0.155146 -9009,5411:382,-112,-48,0,0,0.155942 -9010,5411:381,-111,-48,0,0,0.150543 -9011,5411:380,-110,-48,0,0,0.147805 -9012,5410:489,-109,-48,0,0,0.14567 -9013,5410:488,-108,-48,0,0,0.144688 -9014,5410:487,-107,-48,0,0,0.143762 -9015,5410:486,-106,-48,0,0,0.143661 -9016,5410:485,-105,-48,0,0,0.144764 -9017,5410:384,-104,-48,0,0,0.143509 -9018,5410:383,-103,-48,0,0,0.138777 -9019,5410:382,-102,-48,0,0,0.141289 -9020,5410:381,-101,-48,0,0,0.141551 -9021,5410:380,-100,-48,0,0,0.141401 -9022,5409:489,-99,-48,0,0,0.142151 -9023,5409:488,-98,-48,0,0,0.142264 -9024,5409:487,-97,-48,0,0,0.141438 -9025,5409:486,-96,-48,0,0,0.139417 -9026,5409:485,-95,-48,0,0,0.137456 -9027,5409:384,-94,-48,0,0,0.139195 -9028,5409:383,-93,-48,0,0,0.138177 -9029,5409:382,-92,-48,0,0,0.137554 -9030,5409:381,-91,-48,0,0,0.137444 -9031,5409:380,-90,-48,0,0,0.13617 -9032,5408:489,-89,-48,0,0,0.138544 -9033,5408:488,-88,-48,0,0,0.140903 -9034,5408:487,-87,-48,0,0,0.140406 -9035,5408:486,-86,-48,0,0,0.139626 -9036,5408:485,-85,-48,0,0,0.138666 -9037,5408:384,-84,-48,0,0,0.138042 -9038,5408:383,-83,-48,0,0,0.138262 -9039,5408:382,-82,-48,0,0,0.138544 -9040,5408:381,-81,-48,0,0,0.138986 -9041,5408:380,-80,-48,0,0,0.140295 -9042,5407:489,-79,-48,0,0,0.141538 -9043,5407:488,-78,-48,0,0,0.140965 -9044,5407:487,-77,-48,0,0,0.140357 -9045,5407:486,-76,-48,0,0,0.140381 -9046,5407:485,-75,-48,0,0,0.141401 -9047,5407:384,-74,-48,0,0,0.148064 -9048,5407:383,-73,-48,0,0,0.145798 -9049,5407:382,-72,-48,0,0,0.142013 -9050,5407:381,-71,-48,0,0,0.146195 -9051,5407:380,-70,-48,0,0,0.147005 -9052,5406:489,-69,-48,0,0,0.148791 -9053,5406:488,-68,-48,0,0,0.148103 -9054,5406:487,-67,-48,0,0,0.139318 -9055,5406:486,-66,-48,0,0,0.123081 -9056,5406:485,-65,-48,0,0,0.123715 -9057,5406:384,-64,-48,0,0,0.126481 -9058,5406:383,-63,-48,0,0,0.123103 -9059,5406:382,-62,-48,0,0,0.124586 -9060,5406:381,-61,-48,0,0,0.123281 -9061,5406:380,-60,-48,0,0,0.11837 -9062,5405:489,-59,-48,0,0,0.117867 -9063,5405:488,-58,-48,0,0,0.125046 -9064,5405:487,-57,-48,0,0,0.126765 -9065,5405:486,-56,-48,0,0,0.119728 -9066,5405:485,-55,-48,0,0,0.101201 -9067,5405:384,-54,-48,0,0,0.102554 -9068,5405:383,-53,-48,0,0,0.108846 -9069,5405:382,-52,-48,0,0,0.110088 -9070,5405:381,-51,-48,0,0,0.106214 -9071,5405:380,-50,-48,0,0,0.103028 -9072,5404:489,-49,-48,0,0,0.0985681 -9073,5404:488,-48,-48,0,0,0.0988515 -9074,5404:487,-47,-48,0,0,0.101669 -9075,5404:486,-46,-48,0,0,0.101885 -9076,5404:485,-45,-48,0,0,0.10359 -9077,5404:384,-44,-48,0,0,0.097036 -9078,5404:383,-43,-48,0,0,0.0981854 -9079,5404:382,-42,-48,0,0,0.0996321 -9080,5404:381,-41,-48,0,0,0.100075 -9081,5404:380,-40,-48,0,0,0.0961664 -9082,5403:489,-39,-48,0,0,0.0963628 -9083,5403:488,-38,-48,0,0,0.0931205 -9084,5403:487,-37,-48,0,0,0.0915788 -9085,5403:486,-36,-48,0,0,0.0916388 -9086,5403:485,-35,-48,0,0,0.0924975 -9087,5403:384,-34,-48,0,0,0.0918957 -9088,5403:383,-33,-48,0,0,0.0888636 -9089,5403:382,-32,-48,0,0,0.0877468 -9090,5403:381,-31,-48,0,0,0.0880434 -9091,5403:380,-30,-48,0,0,0.0859542 -9092,5402:489,-29,-48,0,0,0.085922 -9093,5402:488,-28,-48,0,0,0.0864319 -9094,5402:487,-27,-48,0,0,0.084823 -9095,5402:486,-26,-48,0,0,0.0871157 -9096,5402:485,-25,-48,0,0,0.0874759 -9097,5402:384,-24,-48,0,0,0.0924372 -9098,5402:383,-23,-48,0,0,0.0983766 -9099,5402:382,-22,-48,0,0,0.0947203 -9100,5402:381,-21,-48,0,0,0.0920243 -9101,5402:380,-20,-48,0,0,0.0933984 -9102,5401:489,-19,-48,0,0,0.0957741 -9103,5401:488,-18,-48,0,0,0.0952592 -9104,5401:487,-17,-48,0,0,0.0935812 -9105,5401:486,-16,-48,0,0,0.095623 -9106,5401:485,-15,-48,0,0,0.096345 -9107,5401:384,-14,-48,0,0,0.0944478 -9108,5401:383,-13,-48,0,0,0.0941842 -9109,5401:382,-12,-48,0,0,0.0958899 -9110,5401:381,-11,-48,0,0,0.0961394 -9111,5401:380,-10,-48,0,0,0.0925061 -9112,5400:489,-9,-48,0,0,0.0887722 -9113,5400:488,-8,-48,0,0,0.0894308 -9114,5400:487,-7,-48,0,0,0.0882829 -9115,5400:486,-6,-48,0,0,0.0874759 -9116,5400:485,-5,-48,0,0,0.0862049 -9117,5400:384,-4,-48,0,0,0.0857205 -9118,5400:383,-3,-48,0,0,0.0851106 -9119,5400:382,-2,-48,0,0,0.0844726 -9120,5400:381,-1,-48,0,0,0.0836028 -9121,3400:381,0,-48,0,0,0.0831786 -9122,3400:381,1,-48,0,0,0.0826084 -9123,3400:382,2,-48,0,0,0.0827799 -9124,3400:383,3,-48,0,0,0.0823673 -9125,3400:384,4,-48,0,0,0.0810186 -9126,3400:485,5,-48,0,0,0.0813481 -9127,3400:486,6,-48,0,0,0.080942 -9128,3400:487,7,-48,0,0,0.0822432 -9129,3400:488,8,-48,0,0,0.0823363 -9130,3400:489,9,-48,0,0,0.0820496 -9131,3401:380,10,-48,0,0,0.0813329 -9132,3401:381,11,-48,0,0,0.0800828 -9133,3401:382,12,-48,0,0,0.0798634 -9134,3401:383,13,-48,0,0,0.0800901 -9135,3401:384,14,-48,0,0,0.0796974 -9136,3401:485,15,-48,0,0,0.0791865 -9137,3401:486,16,-48,0,0,0.0790967 -9138,3401:487,17,-48,0,0,0.0786861 -9139,3401:488,18,-48,0,0,0.0785968 -9140,3401:489,19,-48,0,0,0.0785893 -9141,3402:380,20,-48,0,0,0.0784333 -9142,3402:381,21,-48,0,0,0.0777379 -9143,3402:382,22,-48,0,0,0.0781145 -9144,3402:383,23,-48,0,0,0.0770483 -9145,3402:384,24,-48,0,0,0.076524 -9146,3402:485,25,-48,0,0,0.0784405 -9147,3402:486,26,-48,0,0,0.0777453 -9148,3402:487,27,-48,0,0,0.0783812 -9149,3402:488,28,-48,0,0,0.0826241 -9150,3402:489,29,-48,0,0,0.0835476 -9151,3403:380,30,-48,0,0,0.0849825 -9152,3403:381,31,-48,0,0,0.0871483 -9153,3403:382,32,-48,0,0,0.0901108 -9154,3403:383,33,-48,0,0,0.0887803 -9155,3403:384,34,-48,0,0,0.0831238 -9156,3403:485,35,-48,0,0,0.0820418 -9157,3403:486,36,-48,0,0,0.0841792 -9158,3403:487,37,-48,0,0,0.087083 -9159,3403:488,38,-48,0,0,0.0856399 -9160,3403:489,39,-48,0,0,0.0872874 -9161,3404:380,40,-48,0,0,0.0879858 -9162,3404:381,41,-48,0,0,0.0853911 -9163,3404:382,42,-48,0,0,0.0861725 -9164,3404:383,43,-48,0,0,0.0875415 -9165,3404:384,44,-48,0,0,0.0870342 -9166,3404:485,45,-48,0,0,0.0867406 -9167,3404:486,46,-48,0,0,0.0865535 -9168,3404:487,47,-48,0,0,0.0874514 -9169,3404:488,48,-48,0,0,0.0887139 -9170,3404:489,49,-48,0,0,0.0911184 -9171,3405:380,50,-48,0,0,0.0903133 -9172,3405:381,51,-48,0,0,0.0893808 -9173,3405:382,52,-48,0,0,0.0890552 -9174,3405:383,53,-48,0,0,0.0951266 -9175,3405:384,54,-48,0,0,0.0874759 -9176,3405:485,55,-48,0,0,0.0876894 -9177,3405:486,56,-48,0,0,0.0891384 -9178,3405:487,57,-48,0,0,0.0922047 -9179,3405:488,58,-48,0,0,0.0939131 -9180,3405:489,59,-48,0,0,0.0936684 -9181,3406:380,60,-48,0,0,0.0911779 -9182,3406:381,61,-48,0,0,0.0920929 -9183,3406:382,62,-48,0,0,0.0941318 -9184,3406:383,63,-48,0,0,0.0924114 -9185,3406:384,64,-48,0,0,0.0936945 -9186,3406:485,65,-48,0,0,0.098998 -9187,3406:486,66,-48,0,0,0.0986227 -9188,3406:487,67,-48,0,0,0.0965957 -9189,3406:488,68,-48,0,0,0.0961037 -9190,3406:489,69,-48,0,0,0.0955961 -9191,3407:380,70,-48,0,0,0.0948438 -9192,3407:381,71,-48,0,0,0.094888 -9193,3407:382,72,-48,0,0,0.0951884 -9194,3407:384,74,-48,0,0,0.0931986 -9195,3407:485,75,-48,0,0,0.0932333 -9196,3407:486,76,-48,0,0,0.090533 -9197,3407:487,77,-48,0,0,0.0850786 -9198,3407:488,78,-48,0,0,0.0874759 -9199,3407:489,79,-48,0,0,0.086132 -9200,3408:380,80,-48,0,0,0.0853428 -9201,3408:381,81,-48,0,0,0.0848149 -9202,3408:382,82,-48,0,0,0.0883243 -9203,3408:383,83,-48,0,0,0.0895396 -9204,3408:384,84,-48,0,0,0.0949055 -9205,3408:485,85,-48,0,0,0.107518 -9206,3408:486,86,-48,0,0,0.107016 -9207,3408:487,87,-48,0,0,0.10821 -9208,3408:488,88,-48,0,0,0.107597 -9209,3408:489,89,-48,0,0,0.103819 -9210,3409:380,90,-48,0,0,0.101275 -9211,3409:381,91,-48,0,0,0.103924 -9212,3409:382,92,-48,0,0,0.10318 -9213,3409:383,93,-48,0,0,0.102092 -9214,3409:384,94,-48,0,0,0.0996783 -9215,3409:485,95,-48,0,0,0.0937995 -9216,3409:486,96,-48,0,0,0.0983038 -9217,3409:487,97,-48,0,0,0.105921 -9218,3409:488,98,-48,0,0,0.100976 -9219,3409:489,99,-48,0,0,0.0967394 -9220,3410:380,100,-48,0,0,0.102309 -9221,3410:381,101,-48,0,0,0.103972 -9222,3410:382,102,-48,0,0,0.0963093 -9223,3410:383,103,-48,0,0,0.0963628 -9224,3410:384,104,-48,0,0,0.0999645 -9225,3410:485,105,-48,0,0,0.09931 -9226,3410:486,106,-48,0,0,0.099872 -9227,3410:487,107,-48,0,0,0.10065 -9228,3410:488,108,-48,0,0,0.101042 -9229,3410:489,109,-48,0,0,0.102611 -9230,3411:380,110,-48,0,0,0.106194 -9231,3411:381,111,-48,0,0,0.110018 -9232,3411:382,112,-48,0,0,0.115705 -9233,3411:383,113,-48,0,0,0.115705 -9234,3411:384,114,-48,0,0,0.110098 -9235,3411:485,115,-48,0,0,0.106624 -9236,3411:486,116,-48,0,0,0.112046 -9237,3411:487,117,-48,0,0,0.110148 -9238,3411:488,118,-48,0,0,0.108408 -9239,3411:489,119,-48,0,0,0.108408 -10426,5412:249,-129,-44,0,0,0.18985 -9240,3412:380,120,-48,0,0,0.109646 -9241,3412:381,121,-48,0,0,0.110461 -9242,3412:382,122,-48,0,0,0.115317 -9243,3412:383,123,-48,0,0,0.11559 -9244,3412:384,124,-48,0,0,0.116528 -9245,3412:485,125,-48,0,0,0.114481 -9246,3412:486,126,-48,0,0,0.114387 -9247,3412:487,127,-48,0,0,0.114794 -9248,3412:488,128,-48,0,0,0.116464 -9249,3412:489,129,-48,0,0,0.115296 -9250,3413:380,130,-48,0,0,0.112599 -9251,3413:381,131,-48,0,0,0.112261 -9252,3413:382,132,-48,0,0,0.114481 -9253,3413:383,133,-48,0,0,0.116962 -9254,3413:384,134,-48,0,0,0.114898 -9255,3413:485,135,-48,0,0,0.113413 -9256,3413:486,136,-48,0,0,0.114752 -9257,3413:487,137,-48,0,0,0.112486 -9258,3413:488,138,-48,0,0,0.110552 -9259,3413:489,139,-48,0,0,0.11265 -9260,3414:380,140,-48,0,0,0.116454 -9261,3414:381,141,-48,0,0,0.117249 -9262,3414:382,142,-48,0,0,0.116021 -9263,3414:383,143,-48,0,0,0.117132 -9264,3414:384,144,-48,0,0,0.117696 -9265,3414:485,145,-48,0,0,0.117782 -9266,3414:486,146,-48,0,0,0.114575 -9267,3414:487,147,-48,0,0,0.109026 -9268,3414:488,148,-48,0,0,0.0994938 -9269,3414:489,149,-48,0,0,0.0951884 -9270,3415:380,150,-48,0,0,0.124608 -9271,3415:381,151,-48,0,0,0.128653 -9272,3415:382,152,-48,0,0,0.106702 -9273,3415:383,153,-48,0,0,0.117515 -9274,3415:384,154,-48,0,0,0.126583 -9275,3415:485,155,-48,0,0,0.134487 -9276,3415:486,156,-48,0,0,0.13364 -9277,3415:487,157,-48,0,0,0.117547 -9278,3415:488,158,-48,0,0,0.115705 -9279,3415:489,159,-48,0,0,0.121778 -9280,3416:380,160,-48,0,0,0.119155 -9281,3416:381,161,-48,0,0,0.121921 -9282,3416:382,162,-48,0,0,0.118263 -9283,3416:383,163,-48,0,0,0.135687 -9284,3416:384,164,-48,0,0,0.141202 -9285,3416:485,165,-48,0,0,0.142942 -9286,3416:486,166,-48,0,0,0.142967 -9287,3416:487,167,-48,0,0,0.139763 -9288,3416:488,168,-48,0,0,0.135603 -9289,3416:489,169,-48,0,0,0.13617 -9290,3417:380,170,-48,0,0,0.138519 -9291,3417:381,171,-48,0,0,0.140406 -9292,3417:382,172,-48,0,0,0.142741 -9293,3417:383,173,-48,0,0,0.144053 -9294,3417:384,174,-48,0,0,0.148596 -9295,3417:485,175,-48,0,0,0.151387 -9296,3417:486,176,-48,0,0,0.15339 -9297,3417:487,177,-48,0,0,0.151505 -9298,3417:488,178,-48,0,0,0.148116 -9299,3417:489,179,-48,0,0,0.140084 -9300,3418:380,180,-48,0,0,0.141015 -9301,5418:370,-180,-47,0,0,0.140753 -9302,5417:479,-179,-47,0,0,0.142678 -9303,5417:478,-178,-47,0,0,0.150465 -9304,5417:477,-177,-47,0,0,0.156959 -9305,5417:476,-176,-47,0,0,0.15597 -9306,5417:475,-175,-47,0,0,0.152485 -9307,5417:374,-174,-47,0,0,0.150137 -9308,5417:373,-173,-47,0,0,0.142101 -9309,5417:372,-172,-47,0,0,0.140878 -9310,5417:371,-171,-47,0,0,0.146992 -9311,5417:370,-170,-47,0,0,0.145057 -9312,5416:479,-169,-47,0,0,0.146927 -9313,5416:478,-168,-47,0,0,0.144574 -9314,5416:477,-167,-47,0,0,0.140766 -9315,5416:476,-166,-47,0,0,0.136836 -9316,5416:475,-165,-47,0,0,0.135098 -9317,5416:374,-164,-47,0,0,0.136122 -9318,5416:373,-163,-47,0,0,0.137749 -9319,5416:372,-162,-47,0,0,0.136146 -9320,5416:371,-161,-47,0,0,0.137773 -9321,5416:370,-160,-47,0,0,0.140605 -9322,5415:479,-159,-47,0,0,0.144802 -9323,5415:478,-158,-47,0,0,0.149548 -9324,5415:477,-157,-47,0,0,0.152313 -9325,5415:476,-156,-47,0,0,0.147857 -9326,5415:475,-155,-47,0,0,0.13836 -9327,5415:374,-154,-47,0,0,0.133486 -9328,5415:373,-153,-47,0,0,0.128976 -9329,5415:372,-152,-47,0,0,0.125824 -9330,5415:371,-151,-47,0,0,0.126163 -9331,5415:370,-150,-47,0,0,0.124866 -9332,5414:479,-149,-47,0,0,0.123603 -9333,5414:478,-148,-47,0,0,0.118692 -9334,5414:477,-147,-47,0,0,0.111414 -9335,5414:476,-146,-47,0,0,0.115045 -9336,5414:475,-145,-47,0,0,0.114221 -9337,5414:374,-144,-47,0,0,0.11517 -9338,5414:373,-143,-47,0,0,0.119803 -9339,5414:372,-142,-47,0,0,0.11881 -9340,5414:371,-141,-47,0,0,0.125282 -9341,5414:370,-140,-47,0,0,0.149365 -9342,5413:479,-139,-47,0,0,0.155483 -9343,5413:478,-138,-47,0,0,0.152459 -9344,5413:477,-137,-47,0,0,0.145402 -9345,5413:476,-136,-47,0,0,0.152977 -9346,5413:475,-135,-47,0,0,0.156335 -9347,5413:374,-134,-47,0,0,0.157982 -9348,5413:373,-133,-47,0,0,0.158502 -9349,5413:372,-132,-47,0,0,0.162979 -9350,5413:371,-131,-47,0,0,0.165858 -9351,5413:370,-130,-47,0,0,0.168289 -9352,5412:479,-129,-47,0,0,0.164682 -9353,5412:478,-128,-47,0,0,0.163441 -9354,5412:477,-127,-47,0,0,0.165787 -9355,5412:476,-126,-47,0,0,0.171973 -9356,5412:475,-125,-47,0,0,0.174622 -9357,5412:374,-124,-47,0,0,0.171053 -9358,5412:373,-123,-47,0,0,0.169558 -9359,5412:372,-122,-47,0,0,0.170137 -9360,5412:371,-121,-47,0,0,0.16803 -9361,5412:370,-120,-47,0,0,0.163427 -9362,5411:479,-119,-47,0,0,0.157941 -9363,5411:478,-118,-47,0,0,0.15438 -9364,5411:477,-117,-47,0,0,0.15624 -9365,5411:476,-116,-47,0,0,0.155429 -9366,5411:475,-115,-47,0,0,0.154756 -9367,5411:374,-114,-47,0,0,0.154595 -9368,5411:373,-113,-47,0,0,0.15477 -9369,5411:372,-112,-47,0,0,0.156932 -9370,5411:371,-111,-47,0,0,0.157586 -9371,5411:370,-110,-47,0,0,0.150438 -9372,5410:479,-109,-47,0,0,0.150793 -9373,5410:478,-108,-47,0,0,0.14809 -9374,5410:477,-107,-47,0,0,0.145338 -9375,5410:476,-106,-47,0,0,0.144586 -9376,5410:475,-105,-47,0,0,0.144472 -9377,5410:374,-104,-47,0,0,0.143409 -9378,5410:373,-103,-47,0,0,0.144409 -9379,5410:372,-102,-47,0,0,0.145184 -9380,5410:371,-101,-47,0,0,0.14599 -9381,5410:370,-100,-47,0,0,0.144294 -9382,5409:479,-99,-47,0,0,0.143118 -9383,5409:478,-98,-47,0,0,0.142678 -9384,5409:477,-97,-47,0,0,0.142026 -9385,5409:476,-96,-47,0,0,0.140084 -9386,5409:475,-95,-47,0,0,0.140171 -9387,5409:374,-94,-47,0,0,0.141813 -9388,5409:373,-93,-47,0,0,0.142603 -9389,5409:372,-92,-47,0,0,0.142314 -9390,5409:371,-91,-47,0,0,0.141189 -9391,5409:370,-90,-47,0,0,0.14165 -9392,5408:479,-89,-47,0,0,0.142766 -9393,5408:478,-88,-47,0,0,0.142854 -9394,5408:477,-87,-47,0,0,0.141801 -9395,5408:476,-86,-47,0,0,0.141114 -9396,5408:475,-85,-47,0,0,0.141102 -9397,5408:374,-84,-47,0,0,0.141164 -9398,5408:373,-83,-47,0,0,0.142741 -9399,5408:372,-82,-47,0,0,0.143712 -9400,5408:371,-81,-47,0,0,0.142026 -9401,5408:370,-80,-47,0,0,0.143522 -9402,5407:479,-79,-47,0,0,0.146079 -9403,5407:478,-78,-47,0,0,0.145555 -9404,5407:477,-77,-47,0,0,0.143762 -9405,5407:476,-76,-47,0,0,0.145108 -9406,5407:475,-75,-47,0,0,0.146529 -9407,5407:374,-74,-47,0,0,0.150333 -9408,5407:373,-73,-47,0,0,0.146966 -9409,5407:372,-72,-47,0,0,0.143762 -9410,5407:371,-71,-47,0,0,0.145044 -9411,5407:370,-70,-47,0,0,0.156959 -9412,5406:479,-69,-47,0,0,0.161359 -9413,5406:478,-68,-47,0,0,0.16186 -9414,5406:477,-67,-47,0,0,0.157941 -9415,5406:476,-66,-47,0,0,0.140704 -9416,5406:475,-65,-47,0,0,0.125982 -9417,5406:374,-64,-47,0,0,0.125666 -9418,5406:373,-63,-47,0,0,0.128895 -9419,5406:372,-62,-47,0,0,0.125395 -9420,5406:371,-61,-47,0,0,0.127586 -9421,5406:370,-60,-47,0,0,0.130986 -9422,5405:479,-59,-47,0,0,0.130612 -9423,5405:478,-58,-47,0,0,0.131103 -9424,5405:477,-57,-47,0,0,0.127529 -9425,5405:476,-56,-47,0,0,0.121099 -9426,5405:475,-55,-47,0,0,0.104856 -9427,5405:374,-54,-47,0,0,0.104981 -9428,5405:373,-53,-47,0,0,0.116888 -9429,5405:372,-52,-47,0,0,0.114919 -9430,5405:371,-51,-47,0,0,0.107518 -9431,5405:370,-50,-47,0,0,0.113072 -9432,5404:479,-49,-47,0,0,0.113113 -9433,5404:478,-48,-47,0,0,0.10741 -9434,5404:477,-47,-47,0,0,0.109085 -9435,5404:476,-46,-47,0,0,0.114044 -9436,5404:475,-45,-47,0,0,0.112425 -9437,5404:374,-44,-47,0,0,0.111811 -9438,5404:373,-43,-47,0,0,0.107232 -9439,5404:372,-42,-47,0,0,0.103523 -9440,5404:371,-41,-47,0,0,0.101033 -9441,5404:370,-40,-47,0,0,0.0961037 -9442,5403:479,-39,-47,0,0,0.0956585 -9443,5403:478,-38,-47,0,0,0.0922047 -9444,5403:477,-37,-47,0,0,0.0928777 -9445,5403:476,-36,-47,0,0,0.0946236 -9446,5403:475,-35,-47,0,0,0.0967304 -9447,5403:374,-34,-47,0,0,0.0973246 -9448,5403:373,-33,-47,0,0,0.0955341 -9449,5403:372,-32,-47,0,0,0.0917671 -9450,5403:371,-31,-47,0,0,0.0896401 -9451,5403:370,-30,-47,0,0,0.0881921 -9452,5402:479,-29,-47,0,0,0.0866349 -9453,5402:478,-28,-47,0,0,0.0870421 -9454,5402:477,-27,-47,0,0,0.0857367 -9455,5402:476,-26,-47,0,0,0.0867568 -9456,5402:475,-25,-47,0,0,0.0906177 -9457,5402:374,-24,-47,0,0,0.0915533 -9458,5402:373,-23,-47,0,0,0.09784 -9459,5402:372,-22,-47,0,0,0.0958899 -9460,5402:371,-21,-47,0,0,0.0944213 -9461,5402:370,-20,-47,0,0,0.0981308 -9462,5401:479,-19,-47,0,0,0.097958 -9463,5401:478,-18,-47,0,0,0.0963628 -9464,5401:477,-17,-47,0,0,0.0953922 -9465,5401:476,-16,-47,0,0,0.0965598 -9466,5401:475,-15,-47,0,0,0.0945267 -9467,5401:374,-14,-47,0,0,0.0975957 -9468,5401:373,-13,-47,0,0,0.0968203 -9469,5401:372,-12,-47,0,0,0.0980853 -9470,5401:371,-11,-47,0,0,0.0973155 -9471,5401:370,-10,-47,0,0,0.0975142 -9472,5400:479,-9,-47,0,0,0.0994481 -9473,5400:478,-8,-47,0,0,0.0992915 -9474,5400:477,-7,-47,0,0,0.0940968 -9475,5400:476,-6,-47,0,0,0.0899004 -9476,5400:475,-5,-47,0,0,0.0926961 -9477,5400:374,-4,-47,0,0,0.0871483 -9478,5400:373,-3,-47,0,0,0.0850706 -9479,5400:372,-2,-47,0,0,0.0846955 -9480,5400:371,-1,-47,0,0,0.0841872 -9481,3400:371,0,-47,0,0,0.0837131 -9482,3400:371,1,-47,0,0,0.0830925 -9483,3400:372,2,-47,0,0,0.0833432 -9484,3400:373,3,-47,0,0,0.0837208 -9485,3400:374,4,-47,0,0,0.0839576 -9486,3400:475,5,-47,0,0,0.0834453 -9487,3400:476,6,-47,0,0,0.0824373 -9488,3400:477,7,-47,0,0,0.0824997 -9489,3400:478,8,-47,0,0,0.0838233 -9490,3400:479,9,-47,0,0,0.0839735 -9491,3401:370,10,-47,0,0,0.0838865 -9492,3401:371,11,-47,0,0,0.0830534 -9493,3401:372,12,-47,0,0,0.0820883 -9494,3401:373,13,-47,0,0,0.0815402 -9495,3401:374,14,-47,0,0,0.0813481 -9496,3401:475,15,-47,0,0,0.0803708 -9497,3401:476,16,-47,0,0,0.0803328 -9498,3401:477,17,-47,0,0,0.0798484 -9499,3401:478,18,-47,0,0,0.0802645 -9500,3401:479,19,-47,0,0,0.0800751 -9501,3402:370,20,-47,0,0,0.0828735 -9502,3402:371,21,-47,0,0,0.0846955 -9503,3402:372,22,-47,0,0,0.0804696 -9504,3402:373,23,-47,0,0,0.0789844 -9505,3402:374,24,-47,0,0,0.0783144 -9506,3402:475,25,-47,0,0,0.0792915 -9507,3402:476,26,-47,0,0,0.0849028 -9508,3402:477,27,-47,0,0,0.0836737 -9509,3402:478,28,-47,0,0,0.0877634 -9510,3402:479,29,-47,0,0,0.0848149 -9511,3403:370,30,-47,0,0,0.0872219 -9512,3403:371,31,-47,0,0,0.0881838 -9513,3403:372,32,-47,0,0,0.0912717 -9514,3403:373,33,-47,0,0,0.0912717 -9515,3403:374,34,-47,0,0,0.0904737 -9516,3403:475,35,-47,0,0,0.0900519 -9517,3403:476,36,-47,0,0,0.0862696 -9518,3403:477,37,-47,0,0,0.091212 -9519,3403:478,38,-47,0,0,0.0901866 -9520,3403:479,39,-47,0,0,0.0912632 -9521,3404:370,40,-47,0,0,0.0938168 -9522,3404:371,41,-47,0,0,0.0902881 -9523,3404:372,42,-47,0,0,0.0918785 -9524,3404:373,43,-47,0,0,0.0910587 -9525,3404:374,44,-47,0,0,0.0913485 -9526,3404:475,45,-47,0,0,0.0927826 -9527,3404:476,46,-47,0,0,0.0896151 -9528,3404:477,47,-47,0,0,0.0881507 -9529,3404:478,48,-47,0,0,0.0906769 -9530,3404:479,49,-47,0,0,0.0913058 -9531,3405:370,50,-47,0,0,0.0906345 -9532,3405:371,51,-47,0,0,0.0897912 -9533,3405:372,52,-47,0,0,0.0900183 -9534,3405:373,53,-47,0,0,0.0945618 -9535,3405:374,54,-47,0,0,0.0967663 -9536,3405:475,55,-47,0,0,0.0914594 -9537,3405:476,56,-47,0,0,0.0893889 -9538,3405:477,57,-47,0,0,0.0963718 -9539,3405:478,58,-47,0,0,0.0941056 -9540,3405:479,59,-47,0,0,0.0939392 -9541,3406:370,60,-47,0,0,0.0948791 -9542,3406:371,61,-47,0,0,0.0966228 -9543,3406:372,62,-47,0,0,0.0989063 -9544,3406:373,63,-47,0,0,0.0958007 -9545,3406:374,64,-47,0,0,0.0970629 -9546,3406:475,65,-47,0,0,0.101734 -9547,3406:476,66,-47,0,0,0.0994848 -9548,3406:477,67,-47,0,0,0.096345 -9549,3406:478,68,-47,0,0,0.0970178 -9550,3406:479,69,-47,0,0,0.0970901 -9551,3407:370,70,-47,0,0,0.097958 -9552,3407:371,71,-47,0,0,0.0969009 -9553,3407:372,72,-47,0,0,0.0958273 -9554,3407:374,74,-47,0,0,0.0941142 -9555,3407:475,75,-47,0,0,0.0928777 -9556,3407:476,76,-47,0,0,0.0919813 -9557,3407:477,77,-47,0,0,0.086213 -9558,3407:478,78,-47,0,0,0.0856078 -9559,3407:479,79,-47,0,0,0.0877388 -9560,3408:370,80,-47,0,0,0.0882498 -9561,3408:371,81,-47,0,0,0.0952502 -9562,3408:372,82,-47,0,0,0.10136 -9563,3408:373,83,-47,0,0,0.105049 -9564,3408:374,84,-47,0,0,0.1056 -9565,3408:475,85,-47,0,0,0.106233 -9566,3408:476,86,-47,0,0,0.105834 -9567,3408:477,87,-47,0,0,0.106448 -9568,3408:478,88,-47,0,0,0.109305 -9569,3408:479,89,-47,0,0,0.10825 -9570,3409:370,90,-47,0,0,0.103275 -9571,3409:371,91,-47,0,0,0.102007 -9572,3409:372,92,-47,0,0,0.101697 -9573,3409:373,93,-47,0,0,0.101716 -9574,3409:374,94,-47,0,0,0.101491 -9575,3409:475,95,-47,0,0,0.109907 -9576,3409:476,96,-47,0,0,0.11225 -9577,3409:477,97,-47,0,0,0.110957 -9578,3409:478,98,-47,0,0,0.106067 -9579,3409:479,99,-47,0,0,0.107026 -9580,3410:370,100,-47,0,0,0.106262 -9581,3410:371,101,-47,0,0,0.102848 -9582,3410:372,102,-47,0,0,0.0954986 -9583,3410:373,103,-47,0,0,0.0957918 -9584,3410:374,104,-47,0,0,0.0975866 -9585,3410:475,105,-47,0,0,0.0970901 -9586,3410:476,106,-47,0,0,0.102111 -9587,3410:477,107,-47,0,0,0.104307 -9588,3410:478,108,-47,0,0,0.103676 -9589,3410:479,109,-47,0,0,0.104039 -9590,3411:370,110,-47,0,0,0.104115 -9591,3411:371,111,-47,0,0,0.112219 -9592,3411:372,112,-47,0,0,0.115369 -9593,3411:373,113,-47,0,0,0.123848 -9594,3411:374,114,-47,0,0,0.114585 -9595,3411:475,115,-47,0,0,0.114815 -9596,3411:476,116,-47,0,0,0.115516 -9597,3411:477,117,-47,0,0,0.111617 -9598,3411:478,118,-47,0,0,0.11121 -9599,3411:479,119,-47,0,0,0.111495 -9600,3412:370,120,-47,0,0,0.111995 -9601,3412:371,121,-47,0,0,0.110926 -9602,3412:372,122,-47,0,0,0.113598 -9603,3412:373,123,-47,0,0,0.114065 -9604,3412:374,124,-47,0,0,0.113692 -9605,3412:475,125,-47,0,0,0.117728 -9606,3412:476,126,-47,0,0,0.117654 -9607,3412:477,127,-47,0,0,0.116095 -9608,3412:478,128,-47,0,0,0.11909 -9609,3412:479,129,-47,0,0,0.123871 -9610,3413:370,130,-47,0,0,0.121757 -9611,3413:371,131,-47,0,0,0.118177 -9612,3413:372,132,-47,0,0,0.11639 -9613,3413:373,133,-47,0,0,0.117792 -9614,3413:374,134,-47,0,0,0.118552 -9615,3413:475,135,-47,0,0,0.119392 -9616,3413:476,136,-47,0,0,0.121647 -9617,3413:477,137,-47,0,0,0.118671 -9618,3413:478,138,-47,0,0,0.114585 -9619,3413:479,139,-47,0,0,0.117005 -9620,3414:370,140,-47,0,0,0.128492 -9621,3414:371,141,-47,0,0,0.133248 -9622,3414:372,142,-47,0,0,0.129531 -9623,3414:373,143,-47,0,0,0.124351 -9624,3414:374,144,-47,0,0,0.119058 -9625,3414:475,145,-47,0,0,0.117005 -9626,3414:476,146,-47,0,0,0.114335 -9627,3414:477,147,-47,0,0,0.108071 -9628,3414:478,148,-47,0,0,0.0977676 -9629,3414:479,149,-47,0,0,0.096345 -9630,3415:370,150,-47,0,0,0.12908 -9631,3415:371,151,-47,0,0,0.123871 -9632,3415:372,152,-47,0,0,0.112774 -9633,3415:373,153,-47,0,0,0.116285 -9634,3415:374,154,-47,0,0,0.126084 -9635,3415:475,155,-47,0,0,0.127517 -9636,3415:476,156,-47,0,0,0.140233 -9637,3415:477,157,-47,0,0,0.138568 -9638,3415:478,158,-47,0,0,0.140047 -9639,3415:479,159,-47,0,0,0.130659 -9640,3416:370,160,-47,0,0,0.125091 -9641,3416:371,161,-47,0,0,0.129647 -9642,3416:372,162,-47,0,0,0.135591 -9643,3416:373,163,-47,0,0,0.139973 -9644,3416:374,164,-47,0,0,0.144726 -9645,3416:475,165,-47,0,0,0.142653 -9646,3416:476,166,-47,0,0,0.147211 -9647,3416:477,167,-47,0,0,0.149052 -9648,3416:478,168,-47,0,0,0.148038 -9649,3416:479,169,-47,0,0,0.147663 -9650,3417:370,170,-47,0,0,0.145402 -9651,3417:371,171,-47,0,0,0.142553 -9652,3417:372,172,-47,0,0,0.1459 -9653,3417:373,173,-47,0,0,0.147327 -9654,3417:374,174,-47,0,0,0.151057 -9655,3417:475,175,-47,0,0,0.155821 -9656,3417:476,176,-47,0,0,0.159257 -9657,3417:477,177,-47,0,0,0.155983 -9658,3417:478,178,-47,0,0,0.147637 -9659,3417:479,179,-47,0,0,0.144028 -9660,3418:370,180,-47,0,0,0.140753 -9661,5418:360,-180,-46,0,0,0.16717 -9662,5417:469,-179,-46,0,0,0.165815 -9663,5417:468,-178,-46,0,0,0.163962 -9664,5417:467,-177,-46,0,0,0.163498 -9665,5417:466,-176,-46,0,0,0.161847 -9666,5417:465,-175,-46,0,0,0.161512 -9667,5417:364,-174,-46,0,0,0.163498 -9668,5417:363,-173,-46,0,0,0.159629 -9669,5417:362,-172,-46,0,0,0.152911 -9670,5417:361,-171,-46,0,0,0.15327 -9671,5417:360,-170,-46,0,0,0.155416 -9672,5416:469,-169,-46,0,0,0.152392 -9673,5416:468,-168,-46,0,0,0.150425 -9674,5416:467,-167,-46,0,0,0.151823 -9675,5416:466,-166,-46,0,0,0.147069 -9676,5416:465,-165,-46,0,0,0.152286 -9677,5416:364,-164,-46,0,0,0.154461 -9678,5416:363,-163,-46,0,0,0.155321 -9679,5416:362,-162,-46,0,0,0.152286 -9680,5416:361,-161,-46,0,0,0.146233 -9681,5416:360,-160,-46,0,0,0.14507 -9682,5415:469,-159,-46,0,0,0.152924 -9683,5415:468,-158,-46,0,0,0.158255 -9684,5415:467,-157,-46,0,0,0.162335 -9685,5415:466,-156,-46,0,0,0.155699 -9686,5415:465,-155,-46,0,0,0.149691 -9687,5415:364,-154,-46,0,0,0.152366 -9688,5415:363,-153,-46,0,0,0.151413 -9689,5415:362,-152,-46,0,0,0.141376 -9690,5415:361,-151,-46,0,0,0.150517 -9691,5415:360,-150,-46,0,0,0.166057 -9692,5414:469,-149,-46,0,0,0.160319 -9693,5414:468,-148,-46,0,0,0.151307 -9694,5414:467,-147,-46,0,0,0.12656 -9695,5414:466,-146,-46,0,0,0.138372 -9696,5414:465,-145,-46,0,0,0.160236 -9697,5414:364,-144,-46,0,0,0.162433 -9698,5414:363,-143,-46,0,0,0.176213 -9699,5414:362,-142,-46,0,0,0.175929 -9700,5414:361,-141,-46,0,0,0.15923 -9701,5414:360,-140,-46,0,0,0.160832 -9702,5413:469,-139,-46,0,0,0.165177 -9703,5413:468,-138,-46,0,0,0.160776 -9704,5413:467,-137,-46,0,0,0.154917 -9705,5413:466,-136,-46,0,0,0.14857 -9706,5413:465,-135,-46,0,0,0.148908 -9707,5413:364,-134,-46,0,0,0.153871 -9708,5413:363,-133,-46,0,0,0.154998 -9709,5413:362,-132,-46,0,0,0.156756 -9710,5413:361,-131,-46,0,0,0.1719 -9711,5413:360,-130,-46,0,0,0.187491 -9712,5412:469,-129,-46,0,0,0.183363 -9713,5412:468,-128,-46,0,0,0.180428 -9714,5412:467,-127,-46,0,0,0.180565 -9715,5412:466,-126,-46,0,0,0.177979 -9716,5412:465,-125,-46,0,0,0.17483 -9717,5412:364,-124,-46,0,0,0.173088 -9718,5412:363,-123,-46,0,0,0.16911 -9719,5412:362,-122,-46,0,0,0.16911 -9720,5412:361,-121,-46,0,0,0.170457 -9721,5412:360,-120,-46,0,0,0.16862 -9722,5411:469,-119,-46,0,0,0.163807 -9723,5411:468,-118,-46,0,0,0.160624 -9724,5411:467,-117,-46,0,0,0.163427 -9725,5411:466,-116,-46,0,0,0.162923 -9726,5411:465,-115,-46,0,0,0.157504 -9727,5411:364,-114,-46,0,0,0.156484 -9728,5411:363,-113,-46,0,0,0.159587 -9729,5411:362,-112,-46,0,0,0.161387 -9730,5411:361,-111,-46,0,0,0.157368 -9731,5411:360,-110,-46,0,0,0.15347 -9732,5410:469,-109,-46,0,0,0.152977 -9733,5410:468,-108,-46,0,0,0.150688 -9734,5410:467,-107,-46,0,0,0.148727 -9735,5410:466,-106,-46,0,0,0.147146 -9736,5410:465,-105,-46,0,0,0.146992 -9737,5410:364,-104,-46,0,0,0.147624 -9738,5410:363,-103,-46,0,0,0.148311 -9739,5410:362,-102,-46,0,0,0.148804 -9740,5410:361,-101,-46,0,0,0.148376 -9741,5410:360,-100,-46,0,0,0.147133 -9742,5409:469,-99,-46,0,0,0.144955 -9743,5409:468,-98,-46,0,0,0.145287 -9744,5409:467,-97,-46,0,0,0.146131 -9745,5409:466,-96,-46,0,0,0.144396 -9746,5409:465,-95,-46,0,0,0.144612 -9747,5409:364,-94,-46,0,0,0.148077 -9748,5409:363,-93,-46,0,0,0.146966 -9749,5409:362,-92,-46,0,0,0.145312 -9750,5409:361,-91,-46,0,0,0.145389 -9751,5409:360,-90,-46,0,0,0.146221 -9752,5408:469,-89,-46,0,0,0.145555 -9753,5408:468,-88,-46,0,0,0.146593 -9754,5408:467,-87,-46,0,0,0.146464 -9755,5408:466,-86,-46,0,0,0.145746 -9756,5408:465,-85,-46,0,0,0.146015 -9757,5408:364,-84,-46,0,0,0.145402 -9758,5408:363,-83,-46,0,0,0.146426 -9759,5408:362,-82,-46,0,0,0.146979 -9760,5408:361,-81,-46,0,0,0.144828 -9761,5408:360,-80,-46,0,0,0.145414 -9762,5407:469,-79,-46,0,0,0.148103 -9763,5407:468,-78,-46,0,0,0.153097 -9764,5407:467,-77,-46,0,0,0.14796 -9765,5407:466,-76,-46,0,0,0.14822 -9766,5407:465,-75,-46,0,0,0.154662 -9767,5407:364,-74,-46,0,0,0.155807 -9768,5407:363,-73,-46,0,0,0.154193 -9769,5407:362,-72,-46,0,0,0.157668 -9770,5407:361,-71,-46,0,0,0.163765 -9771,5407:360,-70,-46,0,0,0.171973 -9772,5406:468,-68,-46,0,0,0.176198 -9773,5406:467,-67,-46,0,0,0.176093 -9774,5406:466,-66,-46,0,0,0.154541 -9775,5406:465,-65,-46,0,0,0.143876 -9776,5406:364,-64,-46,0,0,0.137359 -9777,5406:363,-63,-46,0,0,0.133094 -9778,5406:362,-62,-46,0,0,0.131419 -9779,5406:361,-61,-46,0,0,0.132869 -9780,5406:360,-60,-46,0,0,0.134595 -9781,5405:469,-59,-46,0,0,0.134702 -9782,5405:468,-58,-46,0,0,0.136013 -9783,5405:467,-57,-46,0,0,0.137395 -9784,5405:466,-56,-46,0,0,0.13617 -9785,5405:465,-55,-46,0,0,0.132325 -9786,5405:364,-54,-46,0,0,0.123581 -9787,5405:363,-53,-46,0,0,0.126481 -9788,5405:362,-52,-46,0,0,0.112445 -9789,5405:361,-51,-46,0,0,0.114836 -9790,5405:360,-50,-46,0,0,0.114658 -9791,5404:469,-49,-46,0,0,0.111434 -9792,5404:468,-48,-46,0,0,0.108986 -9793,5404:467,-47,-46,0,0,0.116116 -9794,5404:466,-46,-46,0,0,0.114366 -9795,5404:465,-45,-46,0,0,0.111048 -9796,5404:364,-44,-46,0,0,0.11035 -9797,5404:363,-43,-46,0,0,0.109435 -9798,5404:362,-42,-46,0,0,0.108667 -9799,5404:361,-41,-46,0,0,0.1038 -9800,5404:360,-40,-46,0,0,0.0988789 -9801,5403:469,-39,-46,0,0,0.094694 -9802,5403:468,-38,-46,0,0,0.0965869 -9803,5403:467,-37,-46,0,0,0.102299 -9804,5403:466,-36,-46,0,0,0.103428 -9805,5403:465,-35,-46,0,0,0.102309 -9806,5403:364,-34,-46,0,0,0.100335 -9807,5403:363,-33,-46,0,0,0.0946763 -9808,5403:362,-32,-46,0,0,0.0932593 -9809,5403:361,-31,-46,0,0,0.0918614 -9810,5403:360,-30,-46,0,0,0.0907279 -9811,5402:469,-29,-46,0,0,0.088606 -9812,5402:468,-28,-46,0,0,0.0876728 -9813,5402:467,-27,-46,0,0,0.0886143 -9814,5402:466,-26,-46,0,0,0.0957117 -9815,5402:465,-25,-46,0,0,0.100344 -9816,5402:364,-24,-46,0,0,0.0997796 -9817,5402:363,-23,-46,0,0,0.0989429 -9818,5402:362,-22,-46,0,0,0.0968112 -9819,5402:361,-21,-46,0,0,0.09718 -9820,5402:360,-20,-46,0,0,0.0996597 -9821,5401:469,-19,-46,0,0,0.101612 -9822,5401:468,-18,-46,0,0,0.103161 -9823,5401:467,-17,-46,0,0,0.102819 -9824,5401:466,-16,-46,0,0,0.104586 -9825,5401:465,-15,-46,0,0,0.100827 -9826,5401:364,-14,-46,0,0,0.100827 -9827,5401:363,-13,-46,0,0,0.103209 -9828,5401:362,-12,-46,0,0,0.102441 -9829,5401:361,-11,-46,0,0,0.100446 -9830,5401:360,-10,-46,0,0,0.103905 -9831,5400:469,-9,-46,0,0,0.106487 -9832,5400:468,-8,-46,0,0,0.103104 -9833,5400:467,-7,-46,0,0,0.0957828 -9834,5400:466,-6,-46,0,0,0.0961664 -9835,5400:465,-5,-46,0,0,0.0993285 -9836,5400:364,-4,-46,0,0,0.0965062 -9837,5400:363,-3,-46,0,0,0.0940092 -9838,5400:362,-2,-46,0,0,0.0922821 -9839,5400:361,-1,-46,0,0,0.0915361 -9840,3400:361,0,-46,0,0,0.0894224 -9841,3400:361,1,-46,0,0,0.0850625 -9842,3400:362,2,-46,0,0,0.0847354 -9843,3400:363,3,-46,0,0,0.0876728 -9844,3400:364,4,-46,0,0,0.0872137 -9845,3400:465,5,-46,0,0,0.0853428 -9846,3400:466,6,-46,0,0,0.0845522 -9847,3400:467,7,-46,0,0,0.0840447 -9848,3400:468,8,-46,0,0,0.0836893 -9849,3400:469,9,-46,0,0,0.0829908 -9850,3401:360,10,-46,0,0,0.0831238 -9851,3401:361,11,-46,0,0,0.0837288 -9852,3401:362,12,-46,0,0,0.0828814 -9853,3401:363,13,-46,0,0,0.0825151 -9854,3401:364,14,-46,0,0,0.0820727 -9855,3401:465,15,-46,0,0,0.0819491 -9856,3401:466,16,-46,0,0,0.0823209 -9857,3401:467,17,-46,0,0,0.0838549 -9858,3401:468,18,-46,0,0,0.0849667 -9859,3401:469,19,-46,0,0,0.0855678 -9860,3402:360,20,-46,0,0,0.0858093 -9861,3402:361,21,-46,0,0,0.0856883 -9862,3402:362,22,-46,0,0,0.0834926 -9863,3402:363,23,-46,0,0,0.0829283 -9864,3402:364,24,-46,0,0,0.0834453 -9865,3402:465,25,-46,0,0,0.0871892 -9866,3402:466,26,-46,0,0,0.0888387 -9867,3402:467,27,-46,0,0,0.0887306 -9868,3402:468,28,-46,0,0,0.0872794 -9869,3402:469,29,-46,0,0,0.0843616 -9870,3403:360,30,-46,0,0,0.0857527 -9871,3403:361,31,-46,0,0,0.0882168 -9872,3403:362,32,-46,0,0,0.0884567 -9873,3403:363,33,-46,0,0,0.0907618 -9874,3403:364,34,-46,0,0,0.0913058 -9875,3403:465,35,-46,0,0,0.0932593 -9876,3403:466,36,-46,0,0,0.0876728 -9877,3403:467,37,-46,0,0,0.0916472 -9878,3403:468,38,-46,0,0,0.0962378 -9879,3403:469,39,-46,0,0,0.0952416 -9880,3404:360,40,-46,0,0,0.0957652 -9881,3404:361,41,-46,0,0,0.0946325 -9882,3404:362,42,-46,0,0,0.0932593 -9883,3404:363,43,-46,0,0,0.0938517 -9884,3404:364,44,-46,0,0,0.0941407 -9885,3404:465,45,-46,0,0,0.0942546 -11940,5402:103,-23,-40,0,0,0.14048 -9886,3404:466,46,-46,0,0,0.0934594 -9887,3404:467,47,-46,0,0,0.092489 -9888,3404:468,48,-46,0,0,0.0924975 -9889,3404:469,49,-46,0,0,0.0926357 -9890,3405:360,50,-46,0,0,0.0938256 -9891,3405:361,51,-46,0,0,0.0945884 -9892,3405:362,52,-46,0,0,0.0947203 -9893,3405:363,53,-46,0,0,0.0966854 -9894,3405:364,54,-46,0,0,0.099669 -9895,3405:465,55,-46,0,0,0.0957206 -9896,3405:466,56,-46,0,0,0.0959967 -9897,3405:467,57,-46,0,0,0.0987965 -9898,3405:468,58,-46,0,0,0.0982763 -9899,3405:469,59,-46,0,0,0.0951088 -9900,3406:360,60,-46,0,0,0.0953389 -9901,3406:361,61,-46,0,0,0.0961931 -9902,3406:362,62,-46,0,0,0.0970178 -9903,3406:363,63,-46,0,0,0.100697 -9904,3406:364,64,-46,0,0,0.102696 -9905,3406:465,65,-46,0,0,0.102791 -9906,3406:466,66,-46,0,0,0.101622 -9907,3406:467,67,-46,0,0,0.101697 -9908,3406:468,68,-46,0,0,0.102819 -9909,3406:469,69,-46,0,0,0.102649 -9910,3407:360,70,-46,0,0,0.101491 -9911,3407:361,71,-46,0,0,0.0997613 -9912,3407:362,72,-46,0,0,0.0990346 -9913,3407:364,74,-46,0,0,0.0988331 -9914,3407:465,75,-46,0,0,0.0979763 -9915,3407:466,76,-46,0,0,0.0978763 -9916,3407:467,77,-46,0,0,0.0971712 -9917,3407:468,78,-46,0,0,0.0940354 -9918,3407:469,79,-46,0,0,0.0864886 -9919,3408:360,80,-46,0,0,0.091425 -9920,3408:361,81,-46,0,0,0.094123 -9921,3408:362,82,-46,0,0,0.101378 -9922,3408:363,83,-46,0,0,0.0988697 -9923,3408:364,84,-46,0,0,0.0974329 -9924,3408:465,85,-46,0,0,0.111068 -9925,3408:466,86,-46,0,0,0.110138 -9926,3408:467,87,-46,0,0,0.107774 -9927,3408:468,88,-46,0,0,0.110007 -9928,3408:469,89,-46,0,0,0.111862 -9929,3409:360,90,-46,0,0,0.109275 -9930,3409:361,91,-46,0,0,0.108398 -9931,3409:362,92,-46,0,0,0.109857 -9932,3409:363,93,-46,0,0,0.115674 -9933,3409:364,94,-46,0,0,0.109375 -9934,3409:465,95,-46,0,0,0.107695 -9935,3409:466,96,-46,0,0,0.112199 -9936,3409:467,97,-46,0,0,0.111302 -9937,3409:468,98,-46,0,0,0.110038 -9938,3409:469,99,-46,0,0,0.107163 -9939,3410:360,100,-46,0,0,0.101612 -9940,3410:361,101,-46,0,0,0.101088 -9941,3410:362,102,-46,0,0,0.0992365 -9942,3410:363,103,-46,0,0,0.0978946 -9943,3410:364,104,-46,0,0,0.0960144 -9944,3410:465,105,-46,0,0,0.100474 -9945,3410:466,106,-46,0,0,0.106741 -9946,3410:467,107,-46,0,0,0.108896 -9947,3410:468,108,-46,0,0,0.106732 -9948,3410:469,109,-46,0,0,0.104962 -9949,3411:360,110,-46,0,0,0.106048 -9950,3411:361,111,-46,0,0,0.111119 -9951,3411:362,112,-46,0,0,0.111648 -9952,3411:363,113,-46,0,0,0.117068 -9953,3411:364,114,-46,0,0,0.123503 -9954,3411:465,115,-46,0,0,0.118167 -9955,3411:466,116,-46,0,0,0.116158 -9956,3411:467,117,-46,0,0,0.117377 -9957,3411:468,118,-46,0,0,0.118649 -9958,3411:469,119,-46,0,0,0.117079 -9959,3412:360,120,-46,0,0,0.119923 -9960,3412:361,121,-46,0,0,0.116941 -9961,3412:362,122,-46,0,0,0.111444 -9962,3412:363,123,-46,0,0,0.111831 -9963,3412:364,124,-46,0,0,0.117185 -9964,3412:465,125,-46,0,0,0.117963 -9965,3412:466,126,-46,0,0,0.120205 -9966,3412:467,127,-46,0,0,0.123882 -9967,3412:468,128,-46,0,0,0.127494 -9968,3412:469,129,-46,0,0,0.128113 -9969,3413:360,130,-46,0,0,0.128067 -9970,3413:361,131,-46,0,0,0.125722 -9971,3413:362,132,-46,0,0,0.120728 -9972,3413:363,133,-46,0,0,0.121746 -9973,3413:364,134,-46,0,0,0.123926 -9974,3413:465,135,-46,0,0,0.123459 -9975,3413:466,136,-46,0,0,0.122738 -9976,3413:467,137,-46,0,0,0.124597 -9977,3413:468,138,-46,0,0,0.122473 -9978,3413:469,139,-46,0,0,0.125316 -9979,3414:360,140,-46,0,0,0.136812 -9980,3414:361,141,-46,0,0,0.13523 -9981,3414:362,142,-46,0,0,0.131701 -9982,3414:363,143,-46,0,0,0.128147 -9983,3414:364,144,-46,0,0,0.118467 -9984,3414:465,145,-46,0,0,0.113661 -9985,3414:466,146,-46,0,0,0.111515 -9986,3414:467,147,-46,0,0,0.107626 -9987,3414:468,148,-46,0,0,0.118467 -9988,3414:469,149,-46,0,0,0.14977 -9989,3415:360,150,-46,0,0,0.150531 -9990,3415:361,151,-46,0,0,0.13176 -9991,3415:362,152,-46,0,0,0.136013 -9992,3415:363,153,-46,0,0,0.152339 -9993,3415:364,154,-46,0,0,0.151452 -9994,3415:465,155,-46,0,0,0.14599 -9995,3415:466,156,-46,0,0,0.154487 -9996,3415:467,157,-46,0,0,0.147379 -9997,3415:468,158,-46,0,0,0.144675 -9998,3415:469,159,-46,0,0,0.145606 -9999,3416:360,160,-46,0,0,0.126742 -10000,3416:361,161,-46,0,0,0.146015 -10001,3416:362,162,-46,0,0,0.161874 -10002,3416:363,163,-46,0,0,0.151479 -10003,3416:364,164,-46,0,0,0.142917 -10004,3416:465,165,-46,0,0,0.152379 -10005,3416:466,166,-46,0,0,0.173662 -10006,3416:467,167,-46,0,0,0.180109 -10007,3416:468,168,-46,0,0,0.179533 -10008,3416:469,169,-46,0,0,0.17443 -10009,3417:360,170,-46,0,0,0.160084 -10010,3417:361,171,-46,0,0,0.150964 -10011,3417:362,172,-46,0,0,0.146272 -10012,3417:363,173,-46,0,0,0.148233 -10013,3417:364,174,-46,0,0,0.148831 -10014,3417:465,175,-46,0,0,0.152167 -10015,3417:466,176,-46,0,0,0.158406 -10016,3417:467,177,-46,0,0,0.157777 -10017,3417:468,178,-46,0,0,0.165064 -10018,3417:469,179,-46,0,0,0.166969 -10019,3418:360,180,-46,0,0,0.16717 -10020,5418:350,-180,-45,0,0,0.166656 -10021,5417:459,-179,-45,0,0,0.168836 -10022,5417:458,-178,-45,0,0,0.172031 -10023,5417:457,-177,-45,0,0,0.174637 -10024,5417:456,-176,-45,0,0,0.175795 -10025,5417:455,-175,-45,0,0,0.172735 -10026,5417:354,-174,-45,0,0,0.169891 -10027,5417:353,-173,-45,0,0,0.163231 -10028,5417:352,-172,-45,0,0,0.155753 -10029,5417:351,-171,-45,0,0,0.155295 -10030,5417:350,-170,-45,0,0,0.159147 -10031,5416:459,-169,-45,0,0,0.160915 -10032,5416:458,-168,-45,0,0,0.162209 -10033,5416:457,-167,-45,0,0,0.154326 -10034,5416:456,-166,-45,0,0,0.156186 -10035,5416:455,-165,-45,0,0,0.157927 -10036,5416:354,-164,-45,0,0,0.158201 -10037,5416:353,-163,-45,0,0,0.16072 -10038,5416:352,-162,-45,0,0,0.166556 -10039,5416:351,-161,-45,0,0,0.162824 -10040,5416:350,-160,-45,0,0,0.15551 -10041,5415:459,-159,-45,0,0,0.158379 -10042,5415:458,-158,-45,0,0,0.161596 -10043,5415:457,-157,-45,0,0,0.165517 -10044,5415:456,-156,-45,0,0,0.165531 -10045,5415:455,-155,-45,0,0,0.166541 -10046,5415:354,-154,-45,0,0,0.160568 -10047,5415:353,-153,-45,0,0,0.154434 -10048,5415:352,-152,-45,0,0,0.155025 -10049,5415:351,-151,-45,0,0,0.160679 -10050,5415:350,-150,-45,0,0,0.174652 -10051,5414:459,-149,-45,0,0,0.173677 -10052,5414:458,-148,-45,0,0,0.168763 -10053,5414:457,-147,-45,0,0,0.170471 -10054,5414:456,-146,-45,0,0,0.184272 -10055,5414:455,-145,-45,0,0,0.184257 -10056,5414:354,-144,-45,0,0,0.186756 -10057,5414:353,-143,-45,0,0,0.185682 -10058,5414:352,-142,-45,0,0,0.187319 -10059,5414:351,-141,-45,0,0,0.157177 -10060,5414:350,-140,-45,0,0,0.175513 -10061,5413:459,-139,-45,0,0,0.172838 -10062,5413:458,-138,-45,0,0,0.16992 -10063,5413:457,-137,-45,0,0,0.16885 -10064,5413:456,-136,-45,0,0,0.165602 -10065,5413:455,-135,-45,0,0,0.161526 -10066,5413:354,-134,-45,0,0,0.158831 -10067,5413:353,-133,-45,0,0,0.159753 -10068,5413:352,-132,-45,0,0,0.172368 -10069,5413:351,-131,-45,0,0,0.193928 -10070,5413:350,-130,-45,0,0,0.187976 -10071,5412:459,-129,-45,0,0,0.18261 -10072,5412:458,-128,-45,0,0,0.182411 -10073,5412:457,-127,-45,0,0,0.17831 -10074,5412:456,-126,-45,0,0,0.177319 -10075,5412:455,-125,-45,0,0,0.176034 -10076,5412:354,-124,-45,0,0,0.17275 -10077,5412:353,-123,-45,0,0,0.168763 -10078,5412:352,-122,-45,0,0,0.169905 -10079,5412:351,-121,-45,0,0,0.167227 -10080,5412:350,-120,-45,0,0,0.165163 -10081,5411:459,-119,-45,0,0,0.164667 -10082,5411:458,-118,-45,0,0,0.165219 -10083,5411:457,-117,-45,0,0,0.166656 -10084,5411:456,-116,-45,0,0,0.165631 -10085,5411:455,-115,-45,0,0,0.164371 -10086,5411:354,-114,-45,0,0,0.164117 -10087,5411:353,-113,-45,0,0,0.163343 -10088,5411:352,-112,-45,0,0,0.160554 -10089,5411:351,-111,-45,0,0,0.157408 -10090,5411:350,-110,-45,0,0,0.157518 -10091,5410:459,-109,-45,0,0,0.156457 -10092,5410:458,-108,-45,0,0,0.154528 -10093,5410:457,-107,-45,0,0,0.153484 -10094,5410:456,-106,-45,0,0,0.153684 -10095,5410:455,-105,-45,0,0,0.155402 -10096,5410:354,-104,-45,0,0,0.154273 -10097,5410:353,-103,-45,0,0,0.152246 -10098,5410:352,-102,-45,0,0,0.152844 -10099,5410:351,-101,-45,0,0,0.150557 -10100,5410:350,-100,-45,0,0,0.152578 -10101,5409:459,-99,-45,0,0,0.154877 -10102,5409:458,-98,-45,0,0,0.151479 -10103,5409:457,-97,-45,0,0,0.149313 -10104,5409:456,-96,-45,0,0,0.149809 -10105,5409:455,-95,-45,0,0,0.150137 -10106,5409:354,-94,-45,0,0,0.151294 -10107,5409:353,-93,-45,0,0,0.14977 -10108,5409:352,-92,-45,0,0,0.149195 -10109,5409:351,-91,-45,0,0,0.150333 -10110,5409:350,-90,-45,0,0,0.150176 -10111,5408:459,-89,-45,0,0,0.150307 -10112,5408:458,-88,-45,0,0,0.151149 -10113,5408:457,-87,-45,0,0,0.151188 -10114,5408:456,-86,-45,0,0,0.152591 -10115,5408:455,-85,-45,0,0,0.151955 -10116,5408:354,-84,-45,0,0,0.150084 -10117,5408:353,-83,-45,0,0,0.15082 -10118,5408:352,-82,-45,0,0,0.149914 -10119,5408:351,-81,-45,0,0,0.149052 -10120,5408:350,-80,-45,0,0,0.150465 -10121,5407:459,-79,-45,0,0,0.151809 -10122,5407:458,-78,-45,0,0,0.158927 -10123,5407:457,-77,-45,0,0,0.155349 -10124,5407:456,-76,-45,0,0,0.154434 -10125,5407:455,-75,-45,0,0,0.158639 -10126,5407:354,-74,-45,0,0,0.164865 -10127,5407:353,-73,-45,0,0,0.173338 -10128,5407:352,-72,-45,0,0,0.181448 -10129,5406:456,-66,-45,0,0,0.184443 -10130,5406:455,-65,-45,0,0,0.160388 -10131,5406:354,-64,-45,0,0,0.153217 -10132,5406:353,-63,-45,0,0,0.152618 -10133,5406:352,-62,-45,0,0,0.15015 -10134,5406:351,-61,-45,0,0,0.147637 -10135,5406:350,-60,-45,0,0,0.149901 -10136,5405:459,-59,-45,0,0,0.154126 -10137,5405:458,-58,-45,0,0,0.154958 -10138,5405:457,-57,-45,0,0,0.154568 -10139,5405:456,-56,-45,0,0,0.149835 -10140,5405:455,-55,-45,0,0,0.142904 -10141,5405:354,-54,-45,0,0,0.136388 -10142,5405:353,-53,-45,0,0,0.134188 -10143,5405:352,-52,-45,0,0,0.133319 -10144,5405:351,-51,-45,0,0,0.127609 -10145,5405:350,-50,-45,0,0,0.122274 -10146,5404:459,-49,-45,0,0,0.118102 -10147,5404:458,-48,-45,0,0,0.120695 -10148,5404:457,-47,-45,0,0,0.116686 -10149,5404:456,-46,-45,0,0,0.114596 -10150,5404:455,-45,-45,0,0,0.113847 -10151,5404:354,-44,-45,0,0,0.113454 -10152,5404:353,-43,-45,0,0,0.110269 -10153,5404:352,-42,-45,0,0,0.108956 -10154,5404:351,-41,-45,0,0,0.108359 -10155,5404:350,-40,-45,0,0,0.107843 -10156,5403:459,-39,-45,0,0,0.112086 -10157,5403:458,-38,-45,0,0,0.106292 -10158,5403:457,-37,-45,0,0,0.110967 -10159,5403:456,-36,-45,0,0,0.107045 -10160,5403:455,-35,-45,0,0,0.100725 -10161,5403:354,-34,-45,0,0,0.0964882 -10162,5403:353,-33,-45,0,0,0.0970901 -10163,5403:352,-32,-45,0,0,0.10564 -10164,5403:351,-31,-45,0,0,0.104962 -10165,5403:350,-30,-45,0,0,0.0949939 -10166,5402:459,-29,-45,0,0,0.0927307 -10167,5402:458,-28,-45,0,0,0.0905922 -10168,5402:457,-27,-45,0,0,0.0931292 -10169,5402:456,-26,-45,0,0,0.097144 -10170,5402:455,-25,-45,0,0,0.0967304 -10171,5402:354,-24,-45,0,0,0.104557 -10172,5402:353,-23,-45,0,0,0.102905 -10173,5402:352,-22,-45,0,0,0.106253 -10174,5402:351,-21,-45,0,0,0.10814 -10175,5402:350,-20,-45,0,0,0.106507 -10176,5401:459,-19,-45,0,0,0.107498 -10177,5401:458,-18,-45,0,0,0.104519 -10178,5401:457,-17,-45,0,0,0.105581 -10179,5401:456,-16,-45,0,0,0.110855 -10180,5401:455,-15,-45,0,0,0.104451 -10181,5401:354,-14,-45,0,0,0.105853 -10182,5401:353,-13,-45,0,0,0.108607 -10183,5401:352,-12,-45,0,0,0.110946 -10184,5401:351,-11,-45,0,0,0.109496 -10185,5401:350,-10,-45,0,0,0.107065 -10186,5400:459,-9,-45,0,0,0.104885 -10187,5400:458,-8,-45,0,0,0.105155 -10188,5400:457,-7,-45,0,0,0.104029 -10189,5400:456,-6,-45,0,0,0.101088 -10190,5400:455,-5,-45,0,0,0.097081 -10191,5400:354,-4,-45,0,0,0.0954897 -10192,5400:353,-3,-45,0,0,0.0936597 -10193,5400:352,-2,-45,0,0,0.0921189 -10194,5400:351,-1,-45,0,0,0.0917757 -10195,3400:351,0,-45,0,0,0.0927048 -10196,3400:351,1,-45,0,0,0.091485 -10197,3400:352,2,-45,0,0,0.0892637 -10198,3400:353,3,-45,0,0,0.0858011 -10199,3400:354,4,-45,0,0,0.0863425 -10200,3400:455,5,-45,0,0,0.0855597 -10201,3400:456,6,-45,0,0,0.0850706 -10202,3400:457,7,-45,0,0,0.084783 -10203,3400:458,8,-45,0,0,0.0844171 -10204,3400:459,9,-45,0,0,0.0843297 -10205,3401:350,10,-45,0,0,0.0840287 -10206,3401:351,11,-45,0,0,0.0836973 -10207,3401:352,12,-45,0,0,0.0849187 -10208,3401:353,13,-45,0,0,0.085407 -10209,3401:354,14,-45,0,0,0.0853509 -10210,3401:455,15,-45,0,0,0.0857689 -10211,3401:456,16,-45,0,0,0.0859865 -10212,3401:457,17,-45,0,0,0.0856964 -10213,3401:458,18,-45,0,0,0.085431 -10214,3401:459,19,-45,0,0,0.0859705 -10215,3402:350,20,-45,0,0,0.0867893 -10216,3402:351,21,-45,0,0,0.0870177 -10217,3402:352,22,-45,0,0,0.0863101 -10218,3402:353,23,-45,0,0,0.0846 -10219,3402:354,24,-45,0,0,0.0861888 -10220,3402:455,25,-45,0,0,0.0869933 -10221,3402:456,26,-45,0,0,0.0857527 -10222,3402:457,27,-45,0,0,0.0887055 -10223,3402:458,28,-45,0,0,0.0881671 -10224,3402:459,29,-45,0,0,0.0906007 -10225,3403:350,30,-45,0,0,0.0954366 -10226,3403:351,31,-45,0,0,0.0976136 -10227,3403:352,32,-45,0,0,0.0972073 -10228,3403:353,33,-45,0,0,0.0917671 -10229,3403:354,34,-45,0,0,0.0933984 -10230,3403:455,35,-45,0,0,0.0957828 -10231,3403:456,36,-45,0,0,0.0940354 -10232,3403:457,37,-45,0,0,0.0968921 -10233,3403:458,38,-45,0,0,0.0993467 -10234,3403:459,39,-45,0,0,0.0960234 -10235,3404:350,40,-45,0,0,0.097072 -10236,3404:351,41,-45,0,0,0.0959075 -10237,3404:352,42,-45,0,0,0.0936684 -10238,3404:353,43,-45,0,0,0.0933201 -10239,3404:354,44,-45,0,0,0.094395 -10240,3404:455,45,-45,0,0,0.0942546 -10241,3404:456,46,-45,0,0,0.0945004 -10242,3404:457,47,-45,0,0,0.0952238 -10243,3404:458,48,-45,0,0,0.0961304 -10244,3404:459,49,-45,0,0,0.0960144 -10245,3405:350,50,-45,0,0,0.0967035 -10246,3405:351,51,-45,0,0,0.0975866 -10247,3405:352,52,-45,0,0,0.097 -10248,3405:353,53,-45,0,0,0.100604 -10249,3405:354,54,-45,0,0,0.102791 -10250,3405:455,55,-45,0,0,0.100409 -10251,3405:456,56,-45,0,0,0.0961217 -10252,3405:457,57,-45,0,0,0.0972612 -10253,3405:458,58,-45,0,0,0.101098 -10254,3405:459,59,-45,0,0,0.101303 -10255,3406:350,60,-45,0,0,0.100865 -10256,3406:351,61,-45,0,0,0.10039 -10257,3406:352,62,-45,0,0,0.0991813 -10258,3406:353,63,-45,0,0,0.10136 -10259,3406:354,64,-45,0,0,0.102139 -10260,3406:455,65,-45,0,0,0.103313 -10261,3406:456,66,-45,0,0,0.104952 -10262,3406:457,67,-45,0,0,0.104952 -10263,3406:458,68,-45,0,0,0.103857 -10264,3406:459,69,-45,0,0,0.103628 -10265,3407:350,70,-45,0,0,0.102394 -10266,3407:351,71,-45,0,0,0.100744 -10267,3407:352,72,-45,0,0,0.0987781 -10268,3407:354,74,-45,0,0,0.0984495 -10269,3407:455,75,-45,0,0,0.0986227 -10270,3407:456,76,-45,0,0,0.0994938 -10271,3407:457,77,-45,0,0,0.0984495 -10272,3407:458,78,-45,0,0,0.0951088 -10273,3407:459,79,-45,0,0,0.0871648 -10274,3408:350,80,-45,0,0,0.092679 -10275,3408:351,81,-45,0,0,0.097108 -10276,3408:352,82,-45,0,0,0.0975957 -10277,3408:353,83,-45,0,0,0.0971531 -10278,3408:354,84,-45,0,0,0.0964346 -10279,3408:455,85,-45,0,0,0.114055 -10280,3408:456,86,-45,0,0,0.111352 -10281,3408:457,87,-45,0,0,0.111964 -10282,3408:458,88,-45,0,0,0.113268 -10283,3408:459,89,-45,0,0,0.122274 -10284,3409:350,90,-45,0,0,0.120957 -10285,3409:351,91,-45,0,0,0.11656 -10286,3409:352,92,-45,0,0,0.115222 -10287,3409:353,93,-45,0,0,0.120075 -10288,3409:354,94,-45,0,0,0.118102 -10289,3409:455,95,-45,0,0,0.116263 -10290,3409:456,96,-45,0,0,0.11334 -10291,3409:457,97,-45,0,0,0.110835 -10292,3409:458,98,-45,0,0,0.106977 -10293,3409:459,99,-45,0,0,0.106399 -10294,3410:350,100,-45,0,0,0.102139 -10295,3410:351,101,-45,0,0,0.102668 -10296,3410:352,102,-45,0,0,0.102791 -10297,3410:353,103,-45,0,0,0.102045 -10298,3410:354,104,-45,0,0,0.0981036 -10299,3410:455,105,-45,0,0,0.103095 -10300,3410:456,106,-45,0,0,0.106379 -10301,3410:457,107,-45,0,0,0.109385 -10302,3410:458,108,-45,0,0,0.111944 -10303,3410:459,109,-45,0,0,0.109736 -10304,3411:350,110,-45,0,0,0.106732 -10305,3411:351,111,-45,0,0,0.111119 -10306,3411:352,112,-45,0,0,0.111078 -10307,3411:353,113,-45,0,0,0.112804 -10308,3411:354,114,-45,0,0,0.12396 -10309,3411:455,115,-45,0,0,0.12481 -10310,3411:456,116,-45,0,0,0.125046 -10311,3411:457,117,-45,0,0,0.130054 -10312,3411:458,118,-45,0,0,0.133331 -10313,3411:459,119,-45,0,0,0.131924 -10314,3412:350,120,-45,0,0,0.122142 -10315,3412:351,121,-45,0,0,0.121405 -10316,3412:352,122,-45,0,0,0.120488 -10317,3412:353,123,-45,0,0,0.124194 -10318,3412:354,124,-45,0,0,0.131783 -10319,3412:455,125,-45,0,0,0.119793 -10320,3412:456,126,-45,0,0,0.124575 -10321,3412:457,127,-45,0,0,0.12605 -10322,3412:458,128,-45,0,0,0.126413 -10323,3412:459,129,-45,0,0,0.129984 -10324,3413:350,130,-45,0,0,0.1301 -10325,3413:351,131,-45,0,0,0.129995 -10326,3413:352,132,-45,0,0,0.125756 -10327,3413:353,133,-45,0,0,0.126538 -10328,3413:354,134,-45,0,0,0.13262 -10329,3413:455,135,-45,0,0,0.13262 -10330,3413:456,136,-45,0,0,0.133938 -10331,3413:457,137,-45,0,0,0.134117 -10332,3413:458,138,-45,0,0,0.129508 -10333,3413:459,139,-45,0,0,0.127529 -10334,3414:350,140,-45,0,0,0.133284 -10335,3414:351,141,-45,0,0,0.136049 -10336,3414:352,142,-45,0,0,0.138704 -10337,3414:353,143,-45,0,0,0.129473 -10338,3414:354,144,-45,0,0,0.116856 -10339,3414:455,145,-45,0,0,0.117696 -10340,3414:456,146,-45,0,0,0.118552 -10341,3414:457,147,-45,0,0,0.129995 -10342,3414:458,148,-45,0,0,0.14567 -10343,3414:459,149,-45,0,0,0.168418 -10344,3415:350,150,-45,0,0,0.161054 -10345,3415:351,151,-45,0,0,0.141538 -10346,3415:352,152,-45,0,0,0.149117 -10347,3415:353,153,-45,0,0,0.156132 -10348,3415:354,154,-45,0,0,0.166271 -10349,3415:455,155,-45,0,0,0.156647 -10350,3415:456,156,-45,0,0,0.158721 -10351,3415:457,157,-45,0,0,0.148194 -10352,3415:458,158,-45,0,0,0.149052 -10353,3415:459,159,-45,0,0,0.151902 -10354,3416:350,160,-45,0,0,0.131384 -10355,3416:351,161,-45,0,0,0.137981 -10356,3416:352,162,-45,0,0,0.150386 -10357,3416:353,163,-45,0,0,0.146644 -10358,3416:354,164,-45,0,0,0.149744 -10359,3416:455,165,-45,0,0,0.172397 -10360,3416:456,166,-45,0,0,0.18517 -10361,3416:457,167,-45,0,0,0.180701 -10362,3416:458,168,-45,0,0,0.179836 -10363,3416:459,169,-45,0,0,0.180276 -10364,3417:350,170,-45,0,0,0.180382 -10365,3417:351,171,-45,0,0,0.177769 -10366,3417:352,172,-45,0,0,0.166598 -10367,3417:353,173,-45,0,0,0.156769 -10368,3417:354,174,-45,0,0,0.150137 -10369,3417:455,175,-45,0,0,0.149156 -10370,3417:456,176,-45,0,0,0.159216 -10371,3417:457,177,-45,0,0,0.157982 -10372,3417:458,178,-45,0,0,0.159243 -10373,3417:459,179,-45,0,0,0.167585 -10374,3418:350,180,-45,0,0,0.166656 -10375,5418:140,-180,-44,0,0,0.167213 -10376,5417:249,-179,-44,0,0,0.170806 -10377,5417:248,-178,-44,0,0,0.17675 -10378,5417:247,-177,-44,0,0,0.180018 -10379,5417:246,-176,-44,0,0,0.179669 -10380,5417:245,-175,-44,0,0,0.17979 -10381,5417:144,-174,-44,0,0,0.188087 -10382,5417:143,-173,-44,0,0,0.187116 -10383,5417:142,-172,-44,0,0,0.183594 -10384,5417:141,-171,-44,0,0,0.176049 -10385,5417:140,-170,-44,0,0,0.167499 -10386,5416:249,-169,-44,0,0,0.172236 -10387,5416:248,-168,-44,0,0,0.172442 -10388,5416:247,-167,-44,0,0,0.161582 -10389,5416:246,-166,-44,0,0,0.15601 -10390,5416:245,-165,-44,0,0,0.157927 -10391,5416:144,-164,-44,0,0,0.158831 -10392,5416:143,-163,-44,0,0,0.15967 -10393,5416:142,-162,-44,0,0,0.167915 -10394,5416:141,-161,-44,0,0,0.170776 -10395,5416:140,-160,-44,0,0,0.167485 -10396,5415:249,-159,-44,0,0,0.174889 -10397,5415:248,-158,-44,0,0,0.179957 -10398,5415:247,-157,-44,0,0,0.166328 -10399,5415:246,-156,-44,0,0,0.170733 -10400,5415:245,-155,-44,0,0,0.177724 -10401,5415:144,-154,-44,0,0,0.19356 -10402,5415:143,-153,-44,0,0,0.193383 -10403,5415:142,-152,-44,0,0,0.1859 -10404,5415:141,-151,-44,0,0,0.17923 -10405,5415:140,-150,-44,0,0,0.171359 -10406,5414:249,-149,-44,0,0,0.171724 -10407,5414:248,-148,-44,0,0,0.175097 -10408,5414:247,-147,-44,0,0,0.184242 -10409,5414:246,-146,-44,0,0,0.188683 -10410,5414:245,-145,-44,0,0,0.181158 -10411,5414:144,-144,-44,0,0,0.178341 -10412,5414:143,-143,-44,0,0,0.175929 -10413,5414:142,-142,-44,0,0,0.1735 -10414,5414:141,-141,-44,0,0,0.184303 -10415,5414:140,-140,-44,0,0,0.182258 -10416,5413:249,-139,-44,0,0,0.179019 -10417,5413:248,-138,-44,0,0,0.179215 -10418,5413:247,-137,-44,0,0,0.185372 -10419,5413:246,-136,-44,0,0,0.188243 -10420,5413:245,-135,-44,0,0,0.190737 -10421,5413:144,-134,-44,0,0,0.193143 -10422,5413:143,-133,-44,0,0,0.196365 -10423,5413:142,-132,-44,0,0,0.199234 -10424,5413:141,-131,-44,0,0,0.198367 -10425,5413:140,-130,-44,0,0,0.19034 -10427,5412:248,-128,-44,0,0,0.183625 -10428,5412:247,-127,-44,0,0,0.181112 -10429,5412:246,-126,-44,0,0,0.181371 -10430,5412:245,-125,-44,0,0,0.181097 -10431,5412:144,-124,-44,0,0,0.179684 -10432,5412:143,-123,-44,0,0,0.177439 -10433,5412:142,-122,-44,0,0,0.175825 -10434,5412:141,-121,-44,0,0,0.17443 -10435,5412:140,-120,-44,0,0,0.175825 -10436,5411:249,-119,-44,0,0,0.176034 -10437,5411:248,-118,-44,0,0,0.174549 -10438,5411:247,-117,-44,0,0,0.170573 -10439,5411:246,-116,-44,0,0,0.168836 -10440,5411:245,-115,-44,0,0,0.17034 -10441,5411:144,-114,-44,0,0,0.168865 -10442,5411:143,-113,-44,0,0,0.165744 -10443,5411:142,-112,-44,0,0,0.162629 -10444,5411:141,-111,-44,0,0,0.162586 -10445,5411:140,-110,-44,0,0,0.161791 -10446,5410:249,-109,-44,0,0,0.161498 -10447,5410:248,-108,-44,0,0,0.162321 -10448,5410:247,-107,-44,0,0,0.159477 -10449,5410:246,-106,-44,0,0,0.159257 -10450,5410:245,-105,-44,0,0,0.161262 -10451,5410:144,-104,-44,0,0,0.158078 -10452,5410:143,-103,-44,0,0,0.157096 -10453,5410:142,-102,-44,0,0,0.159381 -10454,5410:141,-101,-44,0,0,0.15601 -10455,5410:140,-100,-44,0,0,0.157341 -10456,5409:249,-99,-44,0,0,0.158625 -10457,5409:248,-98,-44,0,0,0.156416 -10458,5409:247,-97,-44,0,0,0.155349 -10459,5409:246,-96,-44,0,0,0.15516 -10460,5409:245,-95,-44,0,0,0.155888 -10461,5409:144,-94,-44,0,0,0.15681 -10462,5409:143,-93,-44,0,0,0.156525 -10463,5409:142,-92,-44,0,0,0.155416 -10464,5409:141,-91,-44,0,0,0.154756 -10465,5409:140,-90,-44,0,0,0.156579 -10466,5408:249,-89,-44,0,0,0.157231 -10467,5408:248,-88,-44,0,0,0.155497 -10468,5408:247,-87,-44,0,0,0.156471 -10469,5408:246,-86,-44,0,0,0.156851 -10470,5408:245,-85,-44,0,0,0.155686 -10471,5408:144,-84,-44,0,0,0.155672 -10472,5408:143,-83,-44,0,0,0.15516 -10473,5408:142,-82,-44,0,0,0.154662 -10474,5408:141,-81,-44,0,0,0.155848 -10475,5408:140,-80,-44,0,0,0.155564 -10476,5407:249,-79,-44,0,0,0.157763 -10477,5407:248,-78,-44,0,0,0.162377 -10478,5407:247,-77,-44,0,0,0.160568 -10479,5407:246,-76,-44,0,0,0.158859 -10480,5407:245,-75,-44,0,0,0.163878 -10481,5407:144,-74,-44,0,0,0.179397 -10482,5406:247,-67,-44,0,0,0.171914 -10483,5406:246,-66,-44,0,0,0.162167 -10484,5406:245,-65,-44,0,0,0.157096 -10485,5406:144,-64,-44,0,0,0.150517 -10486,5406:143,-63,-44,0,0,0.152512 -10487,5406:142,-62,-44,0,0,0.150793 -10488,5406:141,-61,-44,0,0,0.15032 -10489,5406:140,-60,-44,0,0,0.152857 -10490,5405:249,-59,-44,0,0,0.153457 -10491,5405:248,-58,-44,0,0,0.150951 -10492,5405:247,-57,-44,0,0,0.14787 -10493,5405:246,-56,-44,0,0,0.143825 -10494,5405:245,-55,-44,0,0,0.141976 -10495,5405:144,-54,-44,0,0,0.141214 -10496,5405:143,-53,-44,0,0,0.141077 -10497,5405:142,-52,-44,0,0,0.140158 -10498,5405:141,-51,-44,0,0,0.137822 -10499,5405:140,-50,-44,0,0,0.13588 -10500,5404:249,-49,-44,0,0,0.130647 -10501,5404:248,-48,-44,0,0,0.122528 -10502,5404:247,-47,-44,0,0,0.120902 -10503,5404:246,-46,-44,0,0,0.118628 -10504,5404:245,-45,-44,0,0,0.112517 -10505,5404:144,-44,-44,0,0,0.111627 -10506,5404:143,-43,-44,0,0,0.112671 -10507,5404:142,-42,-44,0,0,0.111597 -10508,5404:141,-41,-44,0,0,0.111261 -10509,5404:140,-40,-44,0,0,0.109967 -10510,5403:249,-39,-44,0,0,0.108806 -10511,5403:248,-38,-44,0,0,0.107291 -10512,5403:247,-37,-44,0,0,0.103876 -10513,5403:246,-36,-44,0,0,0.101014 -10514,5403:245,-35,-44,0,0,0.0997427 -10515,5403:144,-34,-44,0,0,0.0984495 -10516,5403:143,-33,-44,0,0,0.0959701 -10517,5403:142,-32,-44,0,0,0.101988 -10518,5403:141,-31,-44,0,0,0.111271 -10519,5403:140,-30,-44,0,0,0.112199 -10520,5402:249,-29,-44,0,0,0.111099 -10521,5402:248,-28,-44,0,0,0.108727 -10522,5402:247,-27,-44,0,0,0.104269 -10523,5402:246,-26,-44,0,0,0.101369 -10524,5402:245,-25,-44,0,0,0.105107 -10525,5402:144,-24,-44,0,0,0.111546 -10526,5402:143,-23,-44,0,0,0.106702 -10527,5402:142,-22,-44,0,0,0.105853 -10528,5402:141,-21,-44,0,0,0.110159 -10529,5402:140,-20,-44,0,0,0.112025 -10530,5401:249,-19,-44,0,0,0.108527 -10531,5401:248,-18,-44,0,0,0.106165 -10532,5401:247,-17,-44,0,0,0.112496 -10533,5401:246,-16,-44,0,0,0.111933 -10534,5401:245,-15,-44,0,0,0.107774 -10535,5401:144,-14,-44,0,0,0.110028 -10536,5401:143,-13,-44,0,0,0.113288 -10537,5401:142,-12,-44,0,0,0.113578 -10538,5401:141,-11,-44,0,0,0.108687 -10539,5401:140,-10,-44,0,0,0.104653 -10540,5400:249,-9,-44,0,0,0.104596 -10541,5400:248,-8,-44,0,0,0.104403 -10542,5400:247,-7,-44,0,0,0.102413 -10543,5400:246,-6,-44,0,0,0.0957828 -10544,5400:245,-5,-44,0,0,0.0934507 -10545,5400:144,-4,-44,0,0,0.0932421 -10546,5400:143,-3,-44,0,0,0.0927913 -10547,5400:142,-2,-44,0,0,0.0913568 -10548,5400:141,-1,-44,0,0,0.0903471 -10549,3400:141,0,-44,0,0,0.0900771 -10550,3400:141,1,-44,0,0,0.0907786 -10551,3400:142,2,-44,0,0,0.0902373 -10552,3400:143,3,-44,0,0,0.0867163 -10553,3400:144,4,-44,0,0,0.0869686 -10554,3400:245,5,-44,0,0,0.0857045 -10555,3400:246,6,-44,0,0,0.0852386 -10556,3400:247,7,-44,0,0,0.0850945 -10557,3400:248,8,-44,0,0,0.0849986 -10558,3400:249,9,-44,0,0,0.0849028 -10559,3401:140,10,-44,0,0,0.0889301 -10560,3401:141,11,-44,0,0,0.0849586 -10561,3401:142,12,-44,0,0,0.0844886 -10562,3401:143,13,-44,0,0,0.0844726 -10563,3401:144,14,-44,0,0,0.0850386 -10564,3401:245,15,-44,0,0,0.0850306 -10565,3401:246,16,-44,0,0,0.0856078 -10566,3401:247,17,-44,0,0,0.085624 -10567,3401:248,18,-44,0,0,0.0861725 -10568,3401:249,19,-44,0,0,0.0869443 -10569,3402:140,20,-44,0,0,0.0878704 -10570,3402:141,21,-44,0,0,0.0883905 -10571,3402:142,22,-44,0,0,0.0881507 -10572,3402:143,23,-44,0,0,0.0875332 -10573,3402:144,24,-44,0,0,0.0858415 -10574,3402:245,25,-44,0,0,0.0855837 -10575,3402:246,26,-44,0,0,0.0960144 -10576,3402:247,27,-44,0,0,0.101369 -10577,3402:248,28,-44,0,0,0.0995677 -10578,3402:249,29,-44,0,0,0.0906599 -10579,3403:140,30,-44,0,0,0.0975957 -10580,3403:141,31,-44,0,0,0.0964792 -10581,3403:142,32,-44,0,0,0.096327 -10582,3403:143,33,-44,0,0,0.0929039 -10583,3403:144,34,-44,0,0,0.0970091 -10584,3403:245,35,-44,0,0,0.099356 -10585,3403:246,36,-44,0,0,0.0988423 -10586,3403:247,37,-44,0,0,0.0995953 -10587,3403:248,38,-44,0,0,0.101453 -10588,3403:249,39,-44,0,0,0.101051 -10589,3404:140,40,-44,0,0,0.099062 -10590,3404:141,41,-44,0,0,0.0990528 -10591,3404:142,42,-44,0,0,0.0985405 -10592,3404:143,43,-44,0,0,0.0972973 -10593,3404:144,44,-44,0,0,0.0974508 -10594,3404:245,45,-44,0,0,0.0975866 -10595,3404:246,46,-44,0,0,0.0977134 -10596,3404:247,47,-44,0,0,0.100613 -10597,3404:248,48,-44,0,0,0.0979491 -10598,3404:249,49,-44,0,0,0.0986777 -10599,3405:140,50,-44,0,0,0.101866 -10600,3405:141,51,-44,0,0,0.0988971 -10601,3405:142,52,-44,0,0,0.0996046 -10602,3405:143,53,-44,0,0,0.10093 -10603,3405:144,54,-44,0,0,0.10359 -10604,3405:245,55,-44,0,0,0.104048 -10605,3405:246,56,-44,0,0,0.101472 -10606,3405:247,57,-44,0,0,0.0985041 -10607,3405:248,58,-44,0,0,0.101341 -10608,3405:249,59,-44,0,0,0.103914 -10609,3406:140,60,-44,0,0,0.102214 -10610,3406:141,61,-44,0,0,0.102479 -10611,3406:142,62,-44,0,0,0.101641 -10612,3406:143,63,-44,0,0,0.103351 -10613,3406:144,64,-44,0,0,0.105795 -10614,3406:245,65,-44,0,0,0.104355 -10615,3406:246,66,-44,0,0,0.104875 -10616,3406:247,67,-44,0,0,0.106301 -10617,3406:248,68,-44,0,0,0.106409 -10618,3406:249,69,-44,0,0,0.103171 -10619,3407:140,70,-44,0,0,0.102271 -10620,3407:141,71,-44,0,0,0.100279 -10621,3407:142,72,-44,0,0,0.0993192 -10622,3407:144,74,-44,0,0,0.0996229 -10623,3407:245,75,-44,0,0,0.0995124 -10624,3407:246,76,-44,0,0,0.10002 -10625,3407:247,77,-44,0,0,0.100149 -10626,3407:248,78,-44,0,0,0.0967931 -10627,3407:249,79,-44,0,0,0.0893137 -10628,3408:140,80,-44,0,0,0.0895312 -10629,3408:141,81,-44,0,0,0.0892303 -10630,3408:142,82,-44,0,0,0.0891636 -10631,3408:143,83,-44,0,0,0.10053 -10632,3408:144,84,-44,0,0,0.110542 -10633,3408:245,85,-44,0,0,0.105834 -10634,3408:246,86,-44,0,0,0.108687 -10635,3408:247,87,-44,0,0,0.116158 -10636,3408:248,88,-44,0,0,0.115474 -10637,3408:249,89,-44,0,0,0.122473 -10638,3409:140,90,-44,0,0,0.128746 -10639,3409:141,91,-44,0,0,0.121899 -10640,3409:142,92,-44,0,0,0.123414 -10641,3409:143,93,-44,0,0,0.125485 -12589,5308:486,-86,-38,0,0,0.18873 -10642,3409:144,94,-44,0,0,0.121296 -10643,3409:245,95,-44,0,0,0.115013 -10644,3409:246,96,-44,0,0,0.114783 -10645,3409:247,97,-44,0,0,0.115003 -10646,3409:248,98,-44,0,0,0.115202 -10647,3409:249,99,-44,0,0,0.116168 -10648,3410:140,100,-44,0,0,0.117472 -10649,3410:141,101,-44,0,0,0.111903 -10650,3410:142,102,-44,0,0,0.104173 -10651,3410:143,103,-44,0,0,0.103247 -10652,3410:144,104,-44,0,0,0.104663 -10653,3410:245,105,-44,0,0,0.105814 -10654,3410:246,106,-44,0,0,0.108756 -10655,3410:247,107,-44,0,0,0.115537 -10656,3410:248,108,-44,0,0,0.117408 -10657,3410:249,109,-44,0,0,0.1156 -10658,3411:140,110,-44,0,0,0.11038 -10659,3411:141,111,-44,0,0,0.11039 -10660,3411:142,112,-44,0,0,0.111729 -10661,3411:143,113,-44,0,0,0.114794 -10662,3411:144,114,-44,0,0,0.124597 -10663,3411:245,115,-44,0,0,0.131349 -10664,3411:246,116,-44,0,0,0.12832 -10665,3411:247,117,-44,0,0,0.128056 -10666,3411:248,118,-44,0,0,0.128331 -10667,3411:249,119,-44,0,0,0.138397 -10668,3412:140,120,-44,0,0,0.136025 -10669,3412:141,121,-44,0,0,0.129775 -10670,3412:142,122,-44,0,0,0.140704 -10671,3412:143,123,-44,0,0,0.139503 -10672,3412:144,124,-44,0,0,0.13364 -10673,3412:245,125,-44,0,0,0.12681 -10674,3412:246,126,-44,0,0,0.133307 -10675,3412:247,127,-44,0,0,0.141588 -10676,3412:248,128,-44,0,0,0.137055 -10677,3412:249,129,-44,0,0,0.133938 -10678,3413:140,130,-44,0,0,0.134738 -10679,3413:141,131,-44,0,0,0.133688 -10680,3413:142,132,-44,0,0,0.1332 -10681,3413:143,133,-44,0,0,0.128584 -10682,3413:144,134,-44,0,0,0.140903 -10683,3413:245,135,-44,0,0,0.146054 -10684,3413:246,136,-44,0,0,0.142678 -10685,3413:247,137,-44,0,0,0.136885 -10686,3413:248,138,-44,0,0,0.137542 -10687,3413:249,139,-44,0,0,0.138716 -10688,3414:140,140,-44,0,0,0.139553 -10689,3414:141,141,-44,0,0,0.136025 -10690,3414:142,142,-44,0,0,0.130018 -10691,3414:143,143,-44,0,0,0.122616 -10692,3414:144,144,-44,0,0,0.11656 -10693,3414:245,145,-44,0,0,0.123826 -10694,3414:246,146,-44,0,0,0.129022 -10695,3414:247,147,-44,0,0,0.135977 -10696,3414:248,148,-44,0,0,0.132656 -10697,3414:249,149,-44,0,0,0.156064 -10698,3415:140,150,-44,0,0,0.167241 -10699,3415:141,151,-44,0,0,0.157136 -10700,3415:142,152,-44,0,0,0.15351 -10701,3415:143,153,-44,0,0,0.160236 -10702,3415:144,154,-44,0,0,0.173176 -10703,3415:245,155,-44,0,0,0.17406 -10704,3415:246,156,-44,0,0,0.167958 -10705,3415:247,157,-44,0,0,0.155456 -10706,3415:248,158,-44,0,0,0.157082 -10707,3415:249,159,-44,0,0,0.157313 -10708,3416:140,160,-44,0,0,0.154005 -10709,3416:141,161,-44,0,0,0.145376 -10710,3416:142,162,-44,0,0,0.14507 -10711,3416:143,163,-44,0,0,0.150281 -10712,3416:144,164,-44,0,0,0.153992 -10713,3416:245,165,-44,0,0,0.172809 -10714,3416:246,166,-44,0,0,0.18782 -10715,3416:247,167,-44,0,0,0.182013 -10716,3416:248,168,-44,0,0,0.180063 -10717,3416:249,169,-44,0,0,0.17911 -10718,3417:140,170,-44,0,0,0.178853 -10719,3417:141,171,-44,0,0,0.179004 -10720,3417:142,172,-44,0,0,0.179821 -10721,3417:143,173,-44,0,0,0.179942 -10722,3417:144,174,-44,0,0,0.175439 -10723,3417:245,175,-44,0,0,0.160998 -10724,3417:246,176,-44,0,0,0.156566 -10725,3417:247,177,-44,0,0,0.16025 -10726,3417:248,178,-44,0,0,0.164484 -10727,3417:249,179,-44,0,0,0.163498 -10728,3418:140,180,-44,0,0,0.167213 -10729,5418:130,-180,-43,0,0,0.176825 -10730,5417:239,-179,-43,0,0,0.179503 -10731,5417:238,-178,-43,0,0,0.179942 -10732,5417:237,-177,-43,0,0,0.180732 -10733,5417:236,-176,-43,0,0,0.181463 -10734,5417:235,-175,-43,0,0,0.184149 -10735,5417:134,-174,-43,0,0,0.189345 -10736,5417:133,-173,-43,0,0,0.185822 -10737,5417:132,-172,-43,0,0,0.187225 -10738,5417:131,-171,-43,0,0,0.181448 -10739,5417:130,-170,-43,0,0,0.176302 -10740,5416:239,-169,-43,0,0,0.182748 -10741,5416:238,-168,-43,0,0,0.187647 -10742,5416:237,-167,-43,0,0,0.18562 -10743,5416:236,-166,-43,0,0,0.183779 -10744,5416:235,-165,-43,0,0,0.181768 -10745,5416:134,-164,-43,0,0,0.176825 -10746,5416:133,-163,-43,0,0,0.168519 -10747,5416:132,-162,-43,0,0,0.172193 -10748,5416:131,-161,-43,0,0,0.177619 -10749,5416:130,-160,-43,0,0,0.177514 -10750,5415:239,-159,-43,0,0,0.186491 -10751,5415:238,-158,-43,0,0,0.192104 -10752,5415:237,-157,-43,0,0,0.176227 -10753,5415:236,-156,-43,0,0,0.171812 -10754,5415:235,-155,-43,0,0,0.192615 -10755,5415:134,-154,-43,0,0,0.214606 -10756,5415:133,-153,-43,0,0,0.215213 -10757,5415:132,-152,-43,0,0,0.213569 -10758,5415:131,-151,-43,0,0,0.213689 -10759,5415:130,-150,-43,0,0,0.212965 -10760,5414:239,-149,-43,0,0,0.206612 -10761,5414:238,-148,-43,0,0,0.197096 -10762,5414:237,-147,-43,0,0,0.193239 -10763,5414:236,-146,-43,0,0,0.200105 -10764,5414:235,-145,-43,0,0,0.197633 -10765,5414:134,-144,-43,0,0,0.188526 -10766,5414:133,-143,-43,0,0,0.196219 -10767,5414:132,-142,-43,0,0,0.206781 -10768,5414:131,-141,-43,0,0,0.204147 -10769,5414:130,-140,-43,0,0,0.194363 -10770,5413:239,-139,-43,0,0,0.182442 -10771,5413:238,-138,-43,0,0,0.188904 -10772,5413:237,-137,-43,0,0,0.203514 -10773,5413:236,-136,-43,0,0,0.207185 -10774,5413:235,-135,-43,0,0,0.211882 -10775,5413:134,-134,-43,0,0,0.210854 -10776,5413:133,-133,-43,0,0,0.208183 -10777,5413:132,-132,-43,0,0,0.205956 -10778,5413:131,-131,-43,0,0,0.200714 -10779,5413:130,-130,-43,0,0,0.198433 -10780,5412:239,-129,-43,0,0,0.195394 -10781,5412:238,-128,-43,0,0,0.19212 -10782,5412:237,-127,-43,0,0,0.18746 -10783,5412:236,-126,-43,0,0,0.189219 -10784,5412:235,-125,-43,0,0,0.189629 -10785,5412:134,-124,-43,0,0,0.184381 -10786,5412:133,-123,-43,0,0,0.183009 -10787,5412:132,-122,-43,0,0,0.181188 -10788,5412:131,-121,-43,0,0,0.17837 -10789,5412:130,-120,-43,0,0,0.177694 -10790,5411:239,-119,-43,0,0,0.176855 -10791,5411:238,-118,-43,0,0,0.175008 -10792,5411:237,-117,-43,0,0,0.173161 -10793,5411:236,-116,-43,0,0,0.177484 -10794,5411:235,-115,-43,0,0,0.181387 -10795,5411:134,-114,-43,0,0,0.178898 -10796,5411:133,-113,-43,0,0,0.173662 -10797,5411:132,-112,-43,0,0,0.169298 -10798,5411:131,-111,-43,0,0,0.169688 -10799,5411:130,-110,-43,0,0,0.168231 -10800,5410:239,-109,-43,0,0,0.166784 -10801,5410:238,-108,-43,0,0,0.166827 -10802,5410:237,-107,-43,0,0,0.16478 -10803,5410:236,-106,-43,0,0,0.167213 -10804,5410:235,-105,-43,0,0,0.165617 -10805,5410:134,-104,-43,0,0,0.161484 -10806,5410:133,-103,-43,0,0,0.16347 -10807,5410:132,-102,-43,0,0,0.165191 -10808,5410:131,-101,-43,0,0,0.161833 -10809,5410:130,-100,-43,0,0,0.161874 -10810,5409:239,-99,-43,0,0,0.16354 -10811,5409:238,-98,-43,0,0,0.16274 -10812,5409:237,-97,-43,0,0,0.16097 -10813,5409:236,-96,-43,0,0,0.161429 -10814,5409:235,-95,-43,0,0,0.162642 -10815,5409:134,-94,-43,0,0,0.164724 -10816,5409:133,-93,-43,0,0,0.162279 -10817,5409:132,-92,-43,0,0,0.159326 -10818,5409:131,-91,-43,0,0,0.160624 -10819,5409:130,-90,-43,0,0,0.163259 -10820,5408:239,-89,-43,0,0,0.161456 -10821,5408:238,-88,-43,0,0,0.16072 -10822,5408:237,-87,-43,0,0,0.162125 -10823,5408:236,-86,-43,0,0,0.160929 -10824,5408:235,-85,-43,0,0,0.160652 -10825,5408:134,-84,-43,0,0,0.160887 -10826,5408:133,-83,-43,0,0,0.159905 -10827,5408:132,-82,-43,0,0,0.159161 -10828,5408:131,-81,-43,0,0,0.159119 -10829,5408:130,-80,-43,0,0,0.158968 -10830,5407:239,-79,-43,0,0,0.162223 -10831,5407:238,-78,-43,0,0,0.163203 -10832,5407:237,-77,-43,0,0,0.164413 -10833,5407:236,-76,-43,0,0,0.169413 -10834,5407:235,-75,-43,0,0,0.180808 -10835,5407:134,-74,-43,0,0,0.192663 -10836,5406:238,-68,-43,0,0,0.17807 -10837,5406:237,-67,-43,0,0,0.165517 -10838,5406:236,-66,-43,0,0,0.161026 -10839,5406:235,-65,-43,0,0,0.159988 -10840,5406:134,-64,-43,0,0,0.156987 -10841,5406:133,-63,-43,0,0,0.158461 -10842,5406:132,-62,-43,0,0,0.158872 -10843,5406:131,-61,-43,0,0,0.16122 -10844,5406:130,-60,-43,0,0,0.165531 -10845,5405:239,-59,-43,0,0,0.166912 -10846,5405:238,-58,-43,0,0,0.162629 -10847,5405:237,-57,-43,0,0,0.157982 -10848,5405:236,-56,-43,0,0,0.151968 -10849,5405:235,-55,-43,0,0,0.145389 -10850,5405:134,-54,-43,0,0,0.143914 -10851,5405:133,-53,-43,0,0,0.142892 -10852,5405:132,-52,-43,0,0,0.139861 -10853,5405:131,-51,-43,0,0,0.138998 -10854,5405:130,-50,-43,0,0,0.136788 -10855,5404:239,-49,-43,0,0,0.132668 -10856,5404:238,-48,-43,0,0,0.124407 -10857,5404:237,-47,-43,0,0,0.123949 -10858,5404:236,-46,-43,0,0,0.122031 -10859,5404:235,-45,-43,0,0,0.120717 -10860,5404:134,-44,-43,0,0,0.119999 -10861,5404:133,-43,-43,0,0,0.117313 -10862,5404:132,-42,-43,0,0,0.115453 -10863,5404:131,-41,-43,0,0,0.121669 -10864,5404:130,-40,-43,0,0,0.12063 -10865,5403:239,-39,-43,0,0,0.118241 -10866,5403:238,-38,-43,0,0,0.110653 -10867,5403:237,-37,-43,0,0,0.108756 -10868,5403:236,-36,-43,0,0,0.111271 -10869,5403:235,-35,-43,0,0,0.107646 -10870,5403:134,-34,-43,0,0,0.108647 -10871,5403:133,-33,-43,0,0,0.101341 -10872,5403:132,-32,-43,0,0,0.105814 -10873,5403:131,-31,-43,0,0,0.111719 -10874,5403:130,-30,-43,0,0,0.110714 -10875,5402:239,-29,-43,0,0,0.114617 -10876,5402:238,-28,-43,0,0,0.12088 -10877,5402:237,-27,-43,0,0,0.115947 -10878,5402:236,-26,-43,0,0,0.112332 -10879,5402:235,-25,-43,0,0,0.11471 -10880,5402:134,-24,-43,0,0,0.115632 -10881,5402:133,-23,-43,0,0,0.118983 -10882,5402:132,-22,-43,0,0,0.115233 -10883,5402:131,-21,-43,0,0,0.112005 -10884,5402:130,-20,-43,0,0,0.115737 -10885,5401:239,-19,-43,0,0,0.112558 -10886,5401:238,-18,-43,0,0,0.118392 -10887,5401:237,-17,-43,0,0,0.116983 -10888,5401:236,-16,-43,0,0,0.116686 -10889,5401:235,-15,-43,0,0,0.115958 -10890,5401:134,-14,-43,0,0,0.112076 -10891,5401:133,-13,-43,0,0,0.114148 -10892,5401:132,-12,-43,0,0,0.116814 -10893,5401:131,-11,-43,0,0,0.114731 -10894,5401:130,-10,-43,0,0,0.107685 -10895,5400:239,-9,-43,0,0,0.105902 -10896,5400:238,-8,-43,0,0,0.10473 -10897,5400:237,-7,-43,0,0,0.104548 -10898,5400:236,-6,-43,0,0,0.101247 -10899,5400:235,-5,-43,0,0,0.0943861 -10900,5400:134,-4,-43,0,0,0.0949763 -10901,5400:133,-3,-43,0,0,0.0954366 -10902,5400:132,-2,-43,0,0,0.0932159 -10903,5400:131,-1,-43,0,0,0.0907108 -10904,3400:131,0,-43,0,0,0.0905077 -10905,3400:131,1,-43,0,0,0.0904992 -10906,3400:132,2,-43,0,0,0.0898333 -10907,3400:133,3,-43,0,0,0.0882168 -10908,3400:134,4,-43,0,0,0.092179 -10909,3400:235,5,-43,0,0,0.0966764 -10910,3400:236,6,-43,0,0,0.093103 -10911,3400:237,7,-43,0,0,0.0889469 -10912,3400:238,8,-43,0,0,0.0913826 -10913,3400:239,9,-43,0,0,0.0878126 -10914,3401:130,10,-43,0,0,0.0939304 -10915,3401:131,11,-43,0,0,0.0994756 -10916,3401:132,12,-43,0,0,0.0905415 -10917,3401:133,13,-43,0,0,0.0862212 -10918,3401:134,14,-43,0,0,0.0873448 -10919,3401:235,15,-43,0,0,0.0904907 -10920,3401:236,16,-43,0,0,0.0930249 -10921,3401:237,17,-43,0,0,0.09359 -10922,3401:238,18,-43,0,0,0.0921359 -10923,3401:239,19,-43,0,0,0.0921533 -10924,3402:130,20,-43,0,0,0.0922737 -10925,3402:131,21,-43,0,0,0.0901447 -10926,3402:132,22,-43,0,0,0.0872874 -10927,3402:133,23,-43,0,0,0.0871483 -10928,3402:134,24,-43,0,0,0.0884486 -10929,3402:235,25,-43,0,0,0.088341 -10930,3402:236,26,-43,0,0,0.0923165 -10931,3402:237,27,-43,0,0,0.096336 -10932,3402:238,28,-43,0,0,0.0928085 -10933,3402:239,29,-43,0,0,0.097 -10934,3403:130,30,-43,0,0,0.100409 -10935,3403:131,31,-43,0,0,0.11029 -10936,3403:132,32,-43,0,0,0.0965869 -10937,3403:133,33,-43,0,0,0.0968471 -10938,3403:134,34,-43,0,0,0.098249 -10939,3403:235,35,-43,0,0,0.0994295 -10940,3403:236,36,-43,0,0,0.103494 -10941,3403:237,37,-43,0,0,0.105097 -10942,3403:238,38,-43,0,0,0.105863 -10943,3403:239,39,-43,0,0,0.102545 -10944,3404:130,40,-43,0,0,0.101219 -10945,3404:131,41,-43,0,0,0.10181 -10946,3404:132,42,-43,0,0,0.100131 -10947,3404:133,43,-43,0,0,0.101257 -10948,3404:134,44,-43,0,0,0.100781 -10949,3404:235,45,-43,0,0,0.100949 -10950,3404:236,46,-43,0,0,0.104144 -10951,3404:237,47,-43,0,0,0.104827 -10952,3404:238,48,-43,0,0,0.103838 -10953,3404:239,49,-43,0,0,0.107449 -10954,3405:130,50,-43,0,0,0.108816 -10955,3405:131,51,-43,0,0,0.107321 -10956,3405:132,52,-43,0,0,0.103256 -10957,3405:133,53,-43,0,0,0.108042 -10958,3405:134,54,-43,0,0,0.106869 -10959,3405:235,55,-43,0,0,0.105165 -10960,3405:236,56,-43,0,0,0.105931 -10961,3405:237,57,-43,0,0,0.106683 -10962,3405:238,58,-43,0,0,0.103389 -10963,3405:239,59,-43,0,0,0.104269 -10964,3406:130,60,-43,0,0,0.108468 -10965,3406:131,61,-43,0,0,0.109716 -10966,3406:132,62,-43,0,0,0.107666 -10967,3406:133,63,-43,0,0,0.105591 -10968,3406:134,64,-43,0,0,0.10818 -10969,3406:235,65,-43,0,0,0.107036 -10970,3406:236,66,-43,0,0,0.107134 -10971,3406:237,67,-43,0,0,0.108746 -10972,3406:238,68,-43,0,0,0.109055 -10973,3406:239,69,-43,0,0,0.109385 -10974,3407:130,70,-43,0,0,0.104471 -10975,3407:131,71,-43,0,0,0.100753 -10976,3407:132,72,-43,0,0,0.101154 -10977,3407:134,74,-43,0,0,0.102101 -10978,3407:235,75,-43,0,0,0.101547 -10979,3407:236,76,-43,0,0,0.101107 -10980,3407:237,77,-43,0,0,0.0998351 -10981,3407:238,78,-43,0,0,0.0981854 -10982,3407:239,79,-43,0,0,0.0919041 -10983,3408:130,80,-43,0,0,0.0935812 -10984,3408:131,81,-43,0,0,0.093808 -10985,3408:132,82,-43,0,0,0.0972794 -10986,3408:133,83,-43,0,0,0.10121 -10987,3408:134,84,-43,0,0,0.122153 -10988,3408:235,85,-43,0,0,0.11936 -10989,3408:236,86,-43,0,0,0.112291 -10990,3408:237,87,-43,0,0,0.113516 -10991,3408:238,88,-43,0,0,0.116877 -10992,3408:239,89,-43,0,0,0.120412 -10993,3409:130,90,-43,0,0,0.12754 -10994,3409:131,91,-43,0,0,0.13024 -10995,3409:132,92,-43,0,0,0.12923 -10996,3409:133,93,-43,0,0,0.122948 -10997,3409:134,94,-43,0,0,0.120531 -10998,3409:235,95,-43,0,0,0.116707 -10999,3409:236,96,-43,0,0,0.120924 -11000,3409:237,97,-43,0,0,0.12327 -11001,3409:238,98,-43,0,0,0.128757 -11002,3409:239,99,-43,0,0,0.126867 -11003,3410:130,100,-43,0,0,0.125035 -11004,3410:131,101,-43,0,0,0.121416 -11005,3410:132,102,-43,0,0,0.1176 -11006,3410:133,103,-43,0,0,0.112763 -11007,3410:134,104,-43,0,0,0.112753 -11008,3410:235,105,-43,0,0,0.114971 -11009,3410:236,106,-43,0,0,0.113309 -11010,3410:237,107,-43,0,0,0.120433 -11011,3410:238,108,-43,0,0,0.120575 -11012,3410:239,109,-43,0,0,0.115779 -11013,3411:130,110,-43,0,0,0.112866 -11014,3411:131,111,-43,0,0,0.115863 -11015,3411:132,112,-43,0,0,0.120162 -11016,3411:133,113,-43,0,0,0.120303 -11017,3411:134,114,-43,0,0,0.123648 -11018,3411:235,115,-43,0,0,0.140307 -11019,3411:236,116,-43,0,0,0.151017 -11020,3411:237,117,-43,0,0,0.147482 -11021,3411:238,118,-43,0,0,0.133973 -11022,3411:239,119,-43,0,0,0.137067 -11023,3412:130,120,-43,0,0,0.136218 -11024,3412:131,121,-43,0,0,0.141251 -11025,3412:132,122,-43,0,0,0.149339 -11026,3412:133,123,-43,0,0,0.150714 -11027,3412:134,124,-43,0,0,0.147624 -11028,3412:235,125,-43,0,0,0.136267 -11029,3412:236,126,-43,0,0,0.139602 -11030,3412:237,127,-43,0,0,0.145287 -11031,3412:238,128,-43,0,0,0.140816 -11032,3412:239,129,-43,0,0,0.143421 -11033,3413:130,130,-43,0,0,0.140493 -11034,3413:131,131,-43,0,0,0.13847 -11035,3413:132,132,-43,0,0,0.136982 -11036,3413:133,133,-43,0,0,0.140332 -11037,3413:134,134,-43,0,0,0.144459 -11038,3413:235,135,-43,0,0,0.155618 -11039,3413:236,136,-43,0,0,0.161373 -11040,3413:237,137,-43,0,0,0.16025 -11041,3413:238,138,-43,0,0,0.160943 -11042,3413:239,139,-43,0,0,0.160679 -11043,3414:130,140,-43,0,0,0.158845 -11044,3414:131,141,-43,0,0,0.14451 -11045,3414:132,142,-43,0,0,0.136327 -11046,3414:133,143,-43,0,0,0.144612 -11047,3414:134,144,-43,0,0,0.136569 -11048,3414:235,145,-43,0,0,0.127677 -11049,3414:236,146,-43,0,0,0.13383 -11050,3414:237,147,-43,0,0,0.136363 -11051,3414:238,148,-43,0,0,0.150754 -11052,3414:239,149,-43,0,0,0.172588 -11053,3415:130,150,-43,0,0,0.164582 -11054,3415:131,151,-43,0,0,0.171155 -11055,3415:132,152,-43,0,0,0.175706 -11056,3415:133,153,-43,0,0,0.174045 -11057,3415:134,154,-43,0,0,0.177319 -11058,3415:235,155,-43,0,0,0.174282 -11059,3415:236,156,-43,0,0,0.164597 -11060,3415:237,157,-43,0,0,0.16454 -11061,3415:238,158,-43,0,0,0.166399 -11062,3415:239,159,-43,0,0,0.168692 -11063,3416:130,160,-43,0,0,0.17443 -11064,3416:131,161,-43,0,0,0.180762 -11065,3416:132,162,-43,0,0,0.183902 -11066,3416:133,163,-43,0,0,0.179897 -11067,3416:134,164,-43,0,0,0.175766 -11068,3416:235,165,-43,0,0,0.176795 -11069,3416:236,166,-43,0,0,0.19004 -11070,3416:237,167,-43,0,0,0.184612 -11071,3416:238,168,-43,0,0,0.18186 -11072,3416:239,169,-43,0,0,0.179821 -11073,3417:130,170,-43,0,0,0.178235 -11074,3417:131,171,-43,0,0,0.176586 -11075,3417:132,172,-43,0,0,0.17678 -11076,3417:133,173,-43,0,0,0.179261 -11077,3417:134,174,-43,0,0,0.181616 -11078,3417:235,175,-43,0,0,0.171359 -11079,3417:236,176,-43,0,0,0.159422 -11080,3417:237,177,-43,0,0,0.164964 -11081,3417:238,178,-43,0,0,0.164922 -11082,3417:239,179,-43,0,0,0.167113 -11083,3418:130,180,-43,0,0,0.176825 -11084,5418:120,-180,-42,0,0,0.173352 -11085,5417:229,-179,-42,0,0,0.174031 -11086,5417:228,-178,-42,0,0,0.17587 -11087,5417:227,-177,-42,0,0,0.180503 -11088,5417:226,-176,-42,0,0,0.182028 -11089,5417:225,-175,-42,0,0,0.186569 -11090,5417:124,-174,-42,0,0,0.193014 -11091,5417:123,-173,-42,0,0,0.188102 -11092,5417:122,-172,-42,0,0,0.18534 -11093,5417:121,-171,-42,0,0,0.17917 -11094,5417:120,-170,-42,0,0,0.175959 -11095,5416:229,-169,-42,0,0,0.174934 -11096,5416:228,-168,-42,0,0,0.191945 -11097,5416:227,-167,-42,0,0,0.192439 -11098,5416:226,-166,-42,0,0,0.194266 -11099,5416:225,-165,-42,0,0,0.194669 -11100,5416:124,-164,-42,0,0,0.191022 -11101,5416:123,-163,-42,0,0,0.179548 -11102,5416:122,-162,-42,0,0,0.182319 -11103,5416:121,-161,-42,0,0,0.193993 -11104,5416:120,-160,-42,0,0,0.194491 -11105,5415:229,-159,-42,0,0,0.193511 -11106,5415:228,-158,-42,0,0,0.200253 -11107,5415:227,-157,-42,0,0,0.2082 -11108,5415:226,-156,-42,0,0,0.212346 -11109,5415:225,-155,-42,0,0,0.209916 -11110,5415:124,-154,-42,0,0,0.214087 -11111,5415:123,-153,-42,0,0,0.220746 -11112,5415:122,-152,-42,0,0,0.221738 -11113,5415:121,-151,-42,0,0,0.21909 -11114,5415:120,-150,-42,0,0,0.218212 -11115,5414:229,-149,-42,0,0,0.217302 -11116,5414:228,-148,-42,0,0,0.211214 -11117,5414:227,-147,-42,0,0,0.206107 -11118,5414:226,-146,-42,0,0,0.210598 -11119,5414:225,-145,-42,0,0,0.21381 -11120,5414:124,-144,-42,0,0,0.212827 -11121,5414:123,-143,-42,0,0,0.215369 -11122,5414:122,-142,-42,0,0,0.212638 -11123,5414:121,-141,-42,0,0,0.202019 -11124,5414:120,-140,-42,0,0,0.20187 -11125,5413:229,-139,-42,0,0,0.208777 -11126,5413:228,-138,-42,0,0,0.214381 -11127,5413:227,-137,-42,0,0,0.212054 -11128,5413:226,-136,-42,0,0,0.215091 -11129,5413:225,-135,-42,0,0,0.214415 -11130,5413:124,-134,-42,0,0,0.209337 -11131,5413:123,-133,-42,0,0,0.209082 -11132,5413:122,-132,-42,0,0,0.205318 -11133,5413:121,-131,-42,0,0,0.207506 -11134,5413:120,-130,-42,0,0,0.206377 -11135,5412:229,-129,-42,0,0,0.203164 -11136,5412:228,-128,-42,0,0,0.205519 -11137,5412:227,-127,-42,0,0,0.203681 -11138,5412:226,-126,-42,0,0,0.194894 -11139,5412:225,-125,-42,0,0,0.199349 -11140,5412:124,-124,-42,0,0,0.200714 -11141,5412:123,-123,-42,0,0,0.190578 -11142,5412:122,-122,-42,0,0,0.183763 -11143,5412:121,-121,-42,0,0,0.183056 -11144,5412:120,-120,-42,0,0,0.183594 -11145,5411:229,-119,-42,0,0,0.181738 -11146,5411:228,-118,-42,0,0,0.181478 -11147,5411:227,-117,-42,0,0,0.186351 -11148,5411:226,-116,-42,0,0,0.187053 -11149,5411:225,-115,-42,0,0,0.182396 -11150,5411:124,-114,-42,0,0,0.180306 -11151,5411:123,-113,-42,0,0,0.176601 -11152,5411:122,-112,-42,0,0,0.176362 -11153,5411:121,-111,-42,0,0,0.176183 -11154,5411:120,-110,-42,0,0,0.173367 -11155,5410:229,-109,-42,0,0,0.173942 -11156,5410:228,-108,-42,0,0,0.174075 -11157,5410:227,-107,-42,0,0,0.170922 -11158,5410:226,-106,-42,0,0,0.172354 -11159,5410:225,-105,-42,0,0,0.169862 -11160,5410:124,-104,-42,0,0,0.170079 -11161,5410:123,-103,-42,0,0,0.172383 -11162,5410:122,-102,-42,0,0,0.171608 -11163,5410:121,-101,-42,0,0,0.167958 -11164,5410:120,-100,-42,0,0,0.167714 -11165,5409:229,-99,-42,0,0,0.168677 -11166,5409:228,-98,-42,0,0,0.16803 -11167,5409:227,-97,-42,0,0,0.166071 -11168,5409:226,-96,-42,0,0,0.166998 -11169,5409:225,-95,-42,0,0,0.166285 -11170,5409:124,-94,-42,0,0,0.167915 -11171,5409:123,-93,-42,0,0,0.16803 -11172,5409:122,-92,-42,0,0,0.166684 -11173,5409:121,-91,-42,0,0,0.165276 -11174,5409:120,-90,-42,0,0,0.167456 -11175,5408:229,-89,-42,0,0,0.167084 -11176,5408:228,-88,-42,0,0,0.166584 -11177,5408:227,-87,-42,0,0,0.165673 -11178,5408:226,-86,-42,0,0,0.164696 -11179,5408:225,-85,-42,0,0,0.164625 -11180,5408:124,-84,-42,0,0,0.163709 -11181,5408:123,-83,-42,0,0,0.162908 -11182,5408:122,-82,-42,0,0,0.16267 -11183,5408:121,-81,-42,0,0,0.166399 -11184,5408:120,-80,-42,0,0,0.167385 -11185,5407:229,-79,-42,0,0,0.16423 -11186,5407:228,-78,-42,0,0,0.167843 -11187,5407:227,-77,-42,0,0,0.171316 -11188,5407:226,-76,-42,0,0,0.184087 -11189,5407:225,-75,-42,0,0,0.19554 -11190,5406:228,-68,-42,0,0,0.184953 -11191,5406:227,-67,-42,0,0,0.167528 -11192,5406:226,-66,-42,0,0,0.16361 -11193,5406:225,-65,-42,0,0,0.16361 -11194,5406:124,-64,-42,0,0,0.165347 -11195,5406:123,-63,-42,0,0,0.1661 -11196,5406:122,-62,-42,0,0,0.167786 -11197,5406:121,-61,-42,0,0,0.177679 -11198,5405:228,-58,-42,0,0,0.200417 -11199,5405:227,-57,-42,0,0,0.166798 -11200,5405:226,-56,-42,0,0,0.158653 -11201,5405:225,-55,-42,0,0,0.152964 -11202,5405:124,-54,-42,0,0,0.145631 -11203,5405:123,-53,-42,0,0,0.144434 -11204,5405:122,-52,-42,0,0,0.145849 -11205,5405:121,-51,-42,0,0,0.145926 -11206,5405:120,-50,-42,0,0,0.143144 -11207,5404:229,-49,-42,0,0,0.13426 -11208,5404:228,-48,-42,0,0,0.132644 -11209,5404:227,-47,-42,0,0,0.127289 -11210,5404:226,-46,-42,0,0,0.126696 -11211,5404:225,-45,-42,0,0,0.128699 -11212,5404:124,-44,-42,0,0,0.130077 -11213,5404:123,-43,-42,0,0,0.130612 -11214,5404:122,-42,-42,0,0,0.127152 -11215,5404:121,-41,-42,0,0,0.119533 -11216,5404:120,-40,-42,0,0,0.123303 -11217,5403:229,-39,-42,0,0,0.123181 -11218,5403:228,-38,-42,0,0,0.122716 -11219,5403:227,-37,-42,0,0,0.117058 -11220,5403:226,-36,-42,0,0,0.120859 -11221,5403:225,-35,-42,0,0,0.117824 -11222,5403:124,-34,-42,0,0,0.114648 -11223,5403:123,-33,-42,0,0,0.103905 -11224,5403:122,-32,-42,0,0,0.107824 -11225,5403:121,-31,-42,0,0,0.109066 -11226,5403:120,-30,-42,0,0,0.110179 -11227,5402:229,-29,-42,0,0,0.119317 -11228,5402:228,-28,-42,0,0,0.12588 -11229,5402:227,-27,-42,0,0,0.121361 -11230,5402:226,-26,-42,0,0,0.121844 -11231,5402:225,-25,-42,0,0,0.121449 -11232,5402:124,-24,-42,0,0,0.124161 -11233,5402:123,-23,-42,0,0,0.120891 -11234,5402:122,-22,-42,0,0,0.120979 -11235,5402:121,-21,-42,0,0,0.118649 -11236,5402:120,-20,-42,0,0,0.119392 -11237,5401:229,-19,-42,0,0,0.115905 -11238,5401:228,-18,-42,0,0,0.125655 -11239,5401:227,-17,-42,0,0,0.12974 -11240,5401:226,-16,-42,0,0,0.123358 -11241,5401:225,-15,-42,0,0,0.122682 -11242,5401:124,-14,-42,0,0,0.120782 -11243,5401:123,-13,-42,0,0,0.127769 -11244,5401:122,-12,-42,0,0,0.129798 -11245,5401:121,-11,-42,0,0,0.119934 -11246,5401:120,-10,-42,0,0,0.112835 -11247,5400:229,-9,-42,0,0,0.104653 -11248,5400:228,-8,-42,0,0,0.105097 -11249,5400:227,-7,-42,0,0,0.104355 -11250,5400:226,-6,-42,0,0,0.103819 -11251,5400:225,-5,-42,0,0,0.0984587 -11252,5400:124,-4,-42,0,0,0.0976589 -11253,5400:123,-3,-42,0,0,0.103428 -11254,5400:122,-2,-42,0,0,0.0985862 -11255,5400:121,-1,-42,0,0,0.0986227 -11256,3400:121,0,-42,0,0,0.0963628 -11257,3400:121,1,-42,0,0,0.0942546 -11258,3400:122,2,-42,0,0,0.0951352 -11259,3400:123,3,-42,0,0,0.0961304 -11260,3400:124,4,-42,0,0,0.0948616 -11261,3400:225,5,-42,0,0,0.0990713 -11262,3400:226,6,-42,0,0,0.114564 -11263,3400:227,7,-42,0,0,0.112804 -11264,3400:228,8,-42,0,0,0.108448 -11265,3400:229,9,-42,0,0,0.102205 -11266,3401:120,10,-42,0,0,0.107163 -11267,3401:121,11,-42,0,0,0.10823 -11268,3401:122,12,-42,0,0,0.106292 -11269,3401:123,13,-42,0,0,0.094747 -11270,3401:124,14,-42,0,0,0.0988881 -11271,3401:225,15,-42,0,0,0.0981399 -11272,3401:226,16,-42,0,0,0.0963898 -11273,3401:227,17,-42,0,0,0.0960144 -11274,3401:228,18,-42,0,0,0.0967753 -11275,3401:229,19,-42,0,0,0.0940442 -11276,3402:120,20,-42,0,0,0.0987781 -11277,3402:121,21,-42,0,0,0.0998444 -11278,3402:122,22,-42,0,0,0.0947117 -11279,3402:123,23,-42,0,0,0.0944478 -11280,3402:124,24,-42,0,0,0.101117 -11281,3402:225,25,-42,0,0,0.105175 -11282,3402:226,26,-42,0,0,0.104663 -11283,3402:227,27,-42,0,0,0.105834 -11284,3402:228,28,-42,0,0,0.100567 -11285,3402:229,29,-42,0,0,0.0969731 -11286,3403:120,30,-42,0,0,0.107134 -11287,3403:121,31,-42,0,0,0.118897 -11288,3403:122,32,-42,0,0,0.11302 -11289,3403:123,33,-42,0,0,0.106438 -11290,3403:124,34,-42,0,0,0.103485 -11291,3403:225,35,-42,0,0,0.102782 -11292,3403:226,36,-42,0,0,0.105475 -11293,3403:227,37,-42,0,0,0.10636 -11294,3403:228,38,-42,0,0,0.108002 -11295,3403:229,39,-42,0,0,0.103981 -11296,3404:120,40,-42,0,0,0.104615 -11297,3404:121,41,-42,0,0,0.104394 -11298,3404:122,42,-42,0,0,0.103047 -11299,3404:123,43,-42,0,0,0.105795 -11300,3404:124,44,-42,0,0,0.106644 -11301,3404:225,45,-42,0,0,0.109887 -11302,3404:226,46,-42,0,0,0.111546 -11303,3404:227,47,-42,0,0,0.109095 -11304,3404:228,48,-42,0,0,0.107468 -11305,3404:229,49,-42,0,0,0.112394 -11306,3405:120,50,-42,0,0,0.110058 -11307,3405:121,51,-42,0,0,0.110138 -11308,3405:122,52,-42,0,0,0.110491 -11309,3405:123,53,-42,0,0,0.110582 -11310,3405:124,54,-42,0,0,0.108498 -11311,3405:225,55,-42,0,0,0.106898 -11312,3405:226,56,-42,0,0,0.109526 -11313,3405:227,57,-42,0,0,0.112486 -11314,3405:228,58,-42,0,0,0.109636 -11315,3405:229,59,-42,0,0,0.107962 -11316,3406:120,60,-42,0,0,0.113712 -11317,3406:121,61,-42,0,0,0.113619 -11318,3406:122,62,-42,0,0,0.112281 -11319,3406:123,63,-42,0,0,0.111119 -11320,3406:124,64,-42,0,0,0.111862 -11321,3406:225,65,-42,0,0,0.112877 -11322,3406:226,66,-42,0,0,0.112086 -11323,3406:227,67,-42,0,0,0.111139 -11324,3406:228,68,-42,0,0,0.109335 -11325,3406:229,69,-42,0,0,0.106175 -11326,3407:120,70,-42,0,0,0.103723 -11327,3407:121,71,-42,0,0,0.102394 -11328,3407:122,72,-42,0,0,0.103446 -11329,3407:124,74,-42,0,0,0.10474 -11330,3407:225,75,-42,0,0,0.10378 -11331,3407:226,76,-42,0,0,0.101191 -11332,3407:227,77,-42,0,0,0.0959165 -11333,3407:228,78,-42,0,0,0.0929903 -11334,3407:229,79,-42,0,0,0.109385 -11335,3408:120,80,-42,0,0,0.123148 -11336,3408:121,81,-42,0,0,0.129057 -11337,3408:122,82,-42,0,0,0.122274 -11338,3408:123,83,-42,0,0,0.126879 -11339,3408:124,84,-42,0,0,0.129577 -11340,3408:225,85,-42,0,0,0.135579 -11341,3408:226,86,-42,0,0,0.129555 -11342,3408:227,87,-42,0,0,0.126367 -11343,3408:228,88,-42,0,0,0.130449 -11344,3408:229,89,-42,0,0,0.133914 -11345,3409:120,90,-42,0,0,0.143093 -11346,3409:121,91,-42,0,0,0.147572 -11347,3409:122,92,-42,0,0,0.135868 -11348,3409:123,93,-42,0,0,0.127209 -11349,3409:124,94,-42,0,0,0.123748 -11350,3409:225,95,-42,0,0,0.126084 -11351,3409:226,96,-42,0,0,0.12801 -11352,3409:227,97,-42,0,0,0.128688 -11353,3409:228,98,-42,0,0,0.132833 -11354,3409:229,99,-42,0,0,0.13122 -11355,3410:120,100,-42,0,0,0.127243 -11356,3410:121,101,-42,0,0,0.123059 -11357,3410:122,102,-42,0,0,0.122208 -11358,3410:123,103,-42,0,0,0.12276 -11359,3410:124,104,-42,0,0,0.121789 -11360,3410:225,105,-42,0,0,0.120488 -11361,3410:226,106,-42,0,0,0.117494 -11362,3410:227,107,-42,0,0,0.119231 -11363,3410:228,108,-42,0,0,0.121537 -11364,3410:229,109,-42,0,0,0.126129 -11365,3411:120,110,-42,0,0,0.12357 -11366,3411:121,111,-42,0,0,0.132408 -11367,3411:122,112,-42,0,0,0.132125 -11368,3411:123,113,-42,0,0,0.128331 -11369,3411:124,114,-42,0,0,0.134786 -11370,3411:225,115,-42,0,0,0.13863 -11371,3411:226,116,-42,0,0,0.15363 -11372,3411:227,117,-42,0,0,0.153978 -11373,3411:228,118,-42,0,0,0.144447 -11374,3411:229,119,-42,0,0,0.138372 -11375,3412:120,120,-42,0,0,0.141838 -11376,3412:121,121,-42,0,0,0.143169 -11377,3412:122,122,-42,0,0,0.145695 -11378,3412:123,123,-42,0,0,0.15032 -11379,3412:124,124,-42,0,0,0.150754 -11380,3412:225,125,-42,0,0,0.154635 -11381,3412:226,126,-42,0,0,0.15339 -11382,3412:227,127,-42,0,0,0.147818 -11383,3412:228,128,-42,0,0,0.175186 -11384,3412:229,129,-42,0,0,0.1797 -11385,3413:120,130,-42,0,0,0.178672 -11386,3413:121,131,-42,0,0,0.174711 -11387,3413:122,132,-42,0,0,0.169052 -11388,3413:123,133,-42,0,0,0.171797 -11389,3413:124,134,-42,0,0,0.175691 -11390,3413:225,135,-42,0,0,0.17529 -11391,3413:226,136,-42,0,0,0.174193 -11392,3413:227,137,-42,0,0,0.170108 -11393,3413:228,138,-42,0,0,0.161345 -11394,3413:229,139,-42,0,0,0.163695 -11395,3414:120,140,-42,0,0,0.158338 -11396,3414:121,141,-42,0,0,0.143649 -11397,3414:122,142,-42,0,0,0.143876 -11398,3414:123,143,-42,0,0,0.160388 -11399,3414:124,144,-42,0,0,0.159119 -11400,3414:225,145,-42,0,0,0.148817 -11401,3414:226,146,-42,0,0,0.137822 -11402,3414:227,147,-42,0,0,0.167399 -11403,3414:228,148,-42,0,0,0.187162 -11404,3414:229,149,-42,0,0,0.184149 -11405,3415:120,150,-42,0,0,0.165773 -11406,3415:121,151,-42,0,0,0.170457 -11407,3415:122,152,-42,0,0,0.172691 -11408,3415:123,153,-42,0,0,0.174134 -11409,3415:124,154,-42,0,0,0.182136 -11410,3415:225,155,-42,0,0,0.18258 -11411,3415:226,156,-42,0,0,0.17486 -11412,3415:227,157,-42,0,0,0.173574 -11413,3415:228,158,-42,0,0,0.182795 -11414,3415:229,159,-42,0,0,0.18401 -11415,3416:120,160,-42,0,0,0.18884 -11416,3416:121,161,-42,0,0,0.190657 -11417,3416:122,162,-42,0,0,0.191006 -11418,3416:123,163,-42,0,0,0.190325 -11419,3416:124,164,-42,0,0,0.185869 -11420,3416:225,165,-42,0,0,0.185511 -11421,3416:226,166,-42,0,0,0.192743 -11422,3416:227,167,-42,0,0,0.191754 -11423,3416:228,168,-42,0,0,0.189582 -11424,3416:229,169,-42,0,0,0.183163 -11425,3417:120,170,-42,0,0,0.17917 -11426,3417:121,171,-42,0,0,0.177574 -11427,3417:122,172,-42,0,0,0.17825 -11428,3417:123,173,-42,0,0,0.179019 -11429,3417:124,174,-42,0,0,0.180823 -11430,3417:225,175,-42,0,0,0.180018 -11431,3417:226,176,-42,0,0,0.164625 -11432,3417:227,177,-42,0,0,0.164442 -11433,3417:228,178,-42,0,0,0.167141 -11434,3417:229,179,-42,0,0,0.173441 -11435,3418:120,180,-42,0,0,0.173352 -11436,5418:110,-180,-41,0,0,0.173191 -11437,5417:219,-179,-41,0,0,0.171549 -11438,5417:218,-178,-41,0,0,0.17322 -11439,5417:217,-177,-41,0,0,0.190546 -11440,5417:216,-176,-41,0,0,0.192232 -11441,5417:215,-175,-41,0,0,0.188322 -11442,5417:114,-174,-41,0,0,0.194943 -11443,5417:113,-173,-41,0,0,0.19433 -11444,5417:112,-172,-41,0,0,0.200648 -11445,5417:111,-171,-41,0,0,0.191006 -11446,5417:110,-170,-41,0,0,0.190245 -11447,5416:219,-169,-41,0,0,0.187788 -11448,5416:218,-168,-41,0,0,0.18903 -11449,5416:217,-167,-41,0,0,0.183579 -11450,5416:216,-166,-41,0,0,0.188385 -11451,5416:215,-165,-41,0,0,0.187773 -11452,5416:114,-164,-41,0,0,0.199136 -11453,5416:113,-163,-41,0,0,0.213741 -11454,5416:112,-162,-41,0,0,0.195007 -11455,5416:111,-161,-41,0,0,0.196219 -11456,5416:110,-160,-41,0,0,0.202616 -11457,5415:219,-159,-41,0,0,0.213707 -11458,5415:218,-158,-41,0,0,0.22622 -11459,5415:217,-157,-41,0,0,0.232668 -11460,5415:216,-156,-41,0,0,0.232173 -11461,5415:215,-155,-41,0,0,0.225843 -11462,5415:114,-154,-41,0,0,0.213189 -11463,5415:113,-153,-41,0,0,0.218703 -11464,5415:112,-152,-41,0,0,0.230074 -11465,5415:111,-151,-41,0,0,0.223998 -11466,5415:110,-150,-41,0,0,0.222306 -11467,5414:219,-149,-41,0,0,0.217232 -11468,5414:218,-148,-41,0,0,0.2208 -11469,5414:217,-147,-41,0,0,0.226832 -11470,5414:216,-146,-41,0,0,0.227716 -11471,5414:215,-145,-41,0,0,0.226688 -11472,5414:114,-144,-41,0,0,0.225448 -11473,5414:113,-143,-41,0,0,0.221419 -11474,5414:112,-142,-41,0,0,0.218914 -11475,5414:111,-141,-41,0,0,0.221968 -11476,5414:110,-140,-41,0,0,0.226544 -11477,5413:219,-139,-41,0,0,0.227463 -11478,5413:218,-138,-41,0,0,0.224391 -11479,5413:217,-137,-41,0,0,0.222413 -11480,5413:216,-136,-41,0,0,0.223605 -11481,5413:215,-135,-41,0,0,0.221826 -11482,5413:114,-134,-41,0,0,0.220252 -11483,5413:113,-133,-41,0,0,0.219846 -11484,5413:112,-132,-41,0,0,0.217704 -11485,5413:111,-131,-41,0,0,0.216709 -11486,5413:110,-130,-41,0,0,0.216482 -11487,5412:219,-129,-41,0,0,0.216133 -11488,5412:218,-128,-41,0,0,0.215612 -11489,5412:217,-127,-41,0,0,0.213638 -11490,5412:216,-126,-41,0,0,0.201258 -11491,5412:215,-125,-41,0,0,0.201275 -11492,5412:114,-124,-41,0,0,0.204648 -11493,5412:113,-123,-41,0,0,0.205034 -11494,5412:112,-122,-41,0,0,0.193399 -11495,5412:111,-121,-41,0,0,0.196625 -11496,5412:110,-120,-41,0,0,0.191117 -11497,5411:219,-119,-41,0,0,0.191244 -11498,5411:218,-118,-41,0,0,0.194185 -11499,5411:217,-117,-41,0,0,0.192535 -11500,5411:216,-116,-41,0,0,0.192903 -11501,5411:215,-115,-41,0,0,0.194749 -11502,5411:114,-114,-41,0,0,0.195766 -11503,5411:113,-113,-41,0,0,0.192903 -11504,5411:112,-112,-41,0,0,0.187366 -11505,5411:111,-111,-41,0,0,0.181707 -11506,5411:110,-110,-41,0,0,0.182136 -11507,5410:219,-109,-41,0,0,0.182564 -11508,5410:218,-108,-41,0,0,0.178551 -11509,5410:217,-107,-41,0,0,0.180884 -11510,5410:216,-106,-41,0,0,0.180625 -11511,5410:215,-105,-41,0,0,0.181097 -11512,5410:114,-104,-41,0,0,0.182166 -11513,5410:113,-103,-41,0,0,0.179518 -11514,5410:112,-102,-41,0,0,0.176347 -11515,5410:111,-101,-41,0,0,0.176153 -11516,5410:110,-100,-41,0,0,0.177409 -11517,5409:219,-99,-41,0,0,0.176272 -11518,5409:218,-98,-41,0,0,0.173603 -11519,5409:217,-97,-41,0,0,0.171534 -11520,5409:216,-96,-41,0,0,0.172412 -11521,5409:215,-95,-41,0,0,0.171155 -11522,5409:114,-94,-41,0,0,0.17114 -11523,5409:113,-93,-41,0,0,0.172706 -11524,5409:112,-92,-41,0,0,0.174164 -11525,5409:111,-91,-41,0,0,0.172134 -11526,5409:110,-90,-41,0,0,0.171608 -11527,5408:219,-89,-41,0,0,0.170879 -11528,5408:218,-88,-41,0,0,0.169847 -11529,5408:217,-87,-41,0,0,0.169298 -11530,5408:216,-86,-41,0,0,0.169182 -11531,5408:215,-85,-41,0,0,0.168922 -11532,5408:114,-84,-41,0,0,0.168548 -11533,5408:113,-83,-41,0,0,0.167485 -11534,5408:112,-82,-41,0,0,0.174874 -11535,5408:111,-81,-41,0,0,0.1744 -11536,5408:110,-80,-41,0,0,0.177949 -11537,5407:219,-79,-41,0,0,0.179669 -11538,5407:218,-78,-41,0,0,0.175112 -11539,5407:217,-77,-41,0,0,0.179942 -11540,5407:216,-76,-41,0,0,0.194009 -11541,5407:215,-75,-41,0,0,0.210104 -11542,5406:219,-69,-41,0,0,0.204515 -11543,5406:218,-68,-41,0,0,0.183671 -11544,5406:217,-67,-41,0,0,0.180139 -11545,5406:216,-66,-41,0,0,0.178883 -11546,5406:215,-65,-41,0,0,0.17587 -11547,5406:114,-64,-41,0,0,0.174371 -11548,5406:113,-63,-41,0,0,0.174178 -11549,5406:112,-62,-41,0,0,0.176825 -11550,5406:111,-61,-41,0,0,0.189077 -11551,5406:110,-60,-41,0,0,0.195588 -11552,5405:219,-59,-41,0,0,0.194057 -11553,5405:218,-58,-41,0,0,0.18128 -11554,5405:217,-57,-41,0,0,0.169891 -11555,5405:216,-56,-41,0,0,0.162279 -11556,5405:215,-55,-41,0,0,0.157096 -11557,5405:114,-54,-41,0,0,0.148454 -11558,5405:113,-53,-41,0,0,0.146413 -11559,5405:112,-52,-41,0,0,0.148791 -11560,5405:111,-51,-41,0,0,0.149182 -11561,5405:110,-50,-41,0,0,0.140456 -11562,5404:219,-49,-41,0,0,0.137091 -11563,5404:218,-48,-41,0,0,0.135784 -11564,5404:217,-47,-41,0,0,0.140121 -11565,5404:216,-46,-41,0,0,0.138679 -11566,5404:215,-45,-41,0,0,0.137407 -11567,5404:114,-44,-41,0,0,0.137055 -11568,5404:113,-43,-41,0,0,0.138201 -11569,5404:112,-42,-41,0,0,0.135062 -11570,5404:111,-41,-41,0,0,0.131244 -11571,5404:110,-40,-41,0,0,0.125181 -11572,5403:219,-39,-41,0,0,0.139799 -11573,5403:218,-38,-41,0,0,0.145555 -11574,5403:217,-37,-41,0,0,0.146683 -11575,5403:216,-36,-41,0,0,0.141788 -11576,5403:215,-35,-41,0,0,0.130577 -11577,5403:114,-34,-41,0,0,0.131513 -11578,5403:113,-33,-41,0,0,0.133688 -11579,5403:112,-32,-41,0,0,0.127849 -11580,5403:111,-31,-41,0,0,0.130228 -11581,5403:110,-30,-41,0,0,0.133177 -11582,5402:219,-29,-41,0,0,0.131631 -11583,5402:218,-28,-41,0,0,0.134654 -11584,5402:217,-27,-41,0,0,0.131314 -11585,5402:216,-26,-41,0,0,0.126129 -11586,5402:215,-25,-41,0,0,0.130787 -11587,5402:114,-24,-41,0,0,0.131314 -11588,5402:113,-23,-41,0,0,0.133533 -11589,5402:112,-22,-41,0,0,0.133581 -11590,5402:111,-21,-41,0,0,0.126333 -11591,5402:110,-20,-41,0,0,0.12562 -11592,5401:219,-19,-41,0,0,0.125542 -11593,5401:218,-18,-41,0,0,0.124083 -11594,5401:217,-17,-41,0,0,0.135002 -11595,5401:216,-16,-41,0,0,0.131291 -11596,5401:215,-15,-41,0,0,0.129381 -11597,5401:114,-14,-41,0,0,0.133284 -11598,5401:113,-13,-41,0,0,0.139011 -11599,5401:112,-12,-41,0,0,0.135543 -11600,5401:111,-11,-41,0,0,0.13156 -11601,5401:110,-10,-41,0,0,0.129103 -11602,5400:219,-9,-41,0,0,0.11908 -11603,5400:218,-8,-41,0,0,0.107301 -11604,5400:217,-7,-41,0,0,0.106839 -11605,5400:216,-6,-41,0,0,0.101913 -11606,5400:215,-5,-41,0,0,0.101781 -11607,5400:114,-4,-41,0,0,0.103523 -11608,5400:113,-3,-41,0,0,0.11121 -11609,5400:112,-2,-41,0,0,0.107242 -11610,5400:111,-1,-41,0,0,0.109255 -11611,3400:111,0,-41,0,0,0.11175 -11612,3400:111,1,-41,0,0,0.102886 -11613,3400:112,2,-41,0,0,0.102715 -11614,3400:113,3,-41,0,0,0.103332 -11615,3400:114,4,-41,0,0,0.101117 -11616,3400:215,5,-41,0,0,0.107104 -11617,3400:216,6,-41,0,0,0.122329 -11618,3400:217,7,-41,0,0,0.108796 -11619,3400:218,8,-41,0,0,0.112086 -11620,3400:219,9,-41,0,0,0.115852 -11621,3401:110,10,-41,0,0,0.115464 -11622,3401:111,11,-41,0,0,0.109405 -11623,3401:112,12,-41,0,0,0.111018 -11624,3401:113,13,-41,0,0,0.108032 -11625,3401:114,14,-41,0,0,0.101631 -11626,3401:215,15,-41,0,0,0.104644 -11627,3401:216,16,-41,0,0,0.113733 -11628,3401:217,17,-41,0,0,0.113702 -11629,3401:218,18,-41,0,0,0.113992 -11630,3401:219,19,-41,0,0,0.103848 -11631,3402:110,20,-41,0,0,0.101014 -11632,3402:111,21,-41,0,0,0.104653 -11633,3402:112,22,-41,0,0,0.114658 -11634,3402:113,23,-41,0,0,0.102526 -11635,3402:114,24,-41,0,0,0.101285 -11636,3402:215,25,-41,0,0,0.106869 -11637,3402:216,26,-41,0,0,0.104211 -11638,3402:217,27,-41,0,0,0.117259 -11639,3402:218,28,-41,0,0,0.127323 -11640,3402:219,29,-41,0,0,0.110602 -11641,3403:110,30,-41,0,0,0.12088 -11642,3403:111,31,-41,0,0,0.116338 -11643,3403:112,32,-41,0,0,0.109166 -11644,3403:113,33,-41,0,0,0.10502 -11645,3403:114,34,-41,0,0,0.106301 -11646,3403:215,35,-41,0,0,0.110572 -11647,3403:216,36,-41,0,0,0.111403 -11648,3403:217,37,-41,0,0,0.107932 -11649,3403:218,38,-41,0,0,0.110865 -11650,3403:219,39,-41,0,0,0.115884 -11651,3404:110,40,-41,0,0,0.108736 -11652,3404:111,41,-41,0,0,0.108597 -11653,3404:112,42,-41,0,0,0.109887 -11654,3404:113,43,-41,0,0,0.110471 -11655,3404:114,44,-41,0,0,0.115348 -11656,3404:215,45,-41,0,0,0.117121 -11657,3404:216,46,-41,0,0,0.116274 -11658,3404:217,47,-41,0,0,0.112036 -11659,3404:218,48,-41,0,0,0.11033 -11660,3404:219,49,-41,0,0,0.114637 -11661,3405:110,50,-41,0,0,0.111801 -11662,3405:111,51,-41,0,0,0.113216 -11663,3405:112,52,-41,0,0,0.114242 -11664,3405:113,53,-41,0,0,0.114335 -11665,3405:114,54,-41,0,0,0.115516 -11666,3405:215,55,-41,0,0,0.113495 -11667,3405:216,56,-41,0,0,0.110653 -11668,3405:217,57,-41,0,0,0.114387 -11669,3405:218,58,-41,0,0,0.11224 -11670,3405:219,59,-41,0,0,0.119155 -11671,3406:110,60,-41,0,0,0.118509 -11672,3406:111,61,-41,0,0,0.117398 -11673,3406:112,62,-41,0,0,0.116909 -11674,3406:113,63,-41,0,0,0.115632 -11675,3406:114,64,-41,0,0,0.113909 -11676,3406:215,65,-41,0,0,0.11301 -11677,3406:216,66,-41,0,0,0.111719 -11678,3406:217,67,-41,0,0,0.108906 -11679,3406:218,68,-41,0,0,0.109085 -11680,3406:219,69,-41,0,0,0.109185 -11681,3407:110,70,-41,0,0,0.109095 -11682,3407:111,71,-41,0,0,0.107114 -11683,3407:112,72,-41,0,0,0.107282 -11684,3407:114,74,-41,0,0,0.107291 -11685,3407:215,75,-41,0,0,0.103123 -11686,3407:216,76,-41,0,0,0.0969009 -11687,3407:217,77,-41,0,0,0.11033 -11688,3407:218,78,-41,0,0,0.113826 -11689,3407:219,79,-41,0,0,0.11034 -11690,3408:110,80,-41,0,0,0.141851 -11691,3408:111,81,-41,0,0,0.14493 -11692,3408:112,82,-41,0,0,0.143131 -11693,3408:113,83,-41,0,0,0.138152 -11694,3408:114,84,-41,0,0,0.141976 -11695,3408:215,85,-41,0,0,0.14649 -11696,3408:216,86,-41,0,0,0.144828 -11697,3408:217,87,-41,0,0,0.141214 -11698,3408:218,88,-41,0,0,0.143409 -11699,3408:219,89,-41,0,0,0.155133 -11700,3409:110,90,-41,0,0,0.152911 -11701,3409:111,91,-41,0,0,0.161137 -11702,3409:112,92,-41,0,0,0.153444 -11703,3409:113,93,-41,0,0,0.14094 -11704,3409:114,94,-41,0,0,0.146914 -11705,3409:215,95,-41,0,0,0.151399 -11706,3409:216,96,-41,0,0,0.147779 -11707,3409:217,97,-41,0,0,0.144485 -11708,3409:218,98,-41,0,0,0.140828 -11709,3409:219,99,-41,0,0,0.138323 -11710,3410:110,100,-41,0,0,0.138789 -11711,3410:111,101,-41,0,0,0.139121 -11712,3410:112,102,-41,0,0,0.137176 -11713,3410:113,103,-41,0,0,0.129473 -11714,3410:114,104,-41,0,0,0.127918 -11715,3410:215,105,-41,0,0,0.130566 -11716,3410:216,106,-41,0,0,0.127929 -11717,3410:217,107,-41,0,0,0.123815 -11718,3410:218,108,-41,0,0,0.134415 -11719,3410:219,109,-41,0,0,0.134403 -11720,3411:110,110,-41,0,0,0.129172 -11721,3411:111,111,-41,0,0,0.129462 -11722,3411:112,112,-41,0,0,0.132952 -11723,3411:113,113,-41,0,0,0.139207 -11724,3411:114,114,-41,0,0,0.141988 -11725,3411:215,115,-41,0,0,0.147379 -11726,3411:216,116,-41,0,0,0.154206 -11727,3411:217,117,-41,0,0,0.148401 -11728,3411:218,118,-41,0,0,0.142879 -11729,3411:219,119,-41,0,0,0.143396 -11730,3412:110,120,-41,0,0,0.148376 -11731,3412:111,121,-41,0,0,0.163259 -11732,3412:112,122,-41,0,0,0.168533 -11733,3412:113,123,-41,0,0,0.166143 -11734,3412:114,124,-41,0,0,0.1579 -11735,3412:215,125,-41,0,0,0.158201 -11736,3412:216,126,-41,0,0,0.159601 -11737,3412:217,127,-41,0,0,0.170021 -11738,3412:218,128,-41,0,0,0.185062 -11739,3412:219,129,-41,0,0,0.17917 -11740,3413:110,130,-41,0,0,0.178235 -11741,3413:111,131,-41,0,0,0.177769 -11742,3413:112,132,-41,0,0,0.177019 -11743,3413:113,133,-41,0,0,0.174578 -11744,3413:114,134,-41,0,0,0.173868 -11745,3413:215,135,-41,0,0,0.171432 -11746,3413:216,136,-41,0,0,0.168289 -11747,3413:217,137,-41,0,0,0.16368 -11748,3413:218,138,-41,0,0,0.162447 -11749,3413:219,139,-41,0,0,0.171432 -11750,3414:110,140,-41,0,0,0.172002 -11751,3414:111,141,-41,0,0,0.197926 -11752,3414:112,142,-41,0,0,0.2025 -11753,3414:113,143,-41,0,0,0.200088 -11754,3414:114,144,-41,0,0,0.178657 -11755,3414:215,145,-41,0,0,0.168663 -11756,3414:216,146,-41,0,0,0.180412 -11757,3414:217,147,-41,0,0,0.192823 -11758,3414:218,148,-41,0,0,0.198481 -11759,3414:219,149,-41,0,0,0.190721 -11760,3415:110,150,-41,0,0,0.186756 -11761,3415:111,151,-41,0,0,0.17272 -11762,3415:112,152,-41,0,0,0.172823 -11763,3415:113,153,-41,0,0,0.189771 -11764,3415:114,154,-41,0,0,0.217599 -11765,3415:215,155,-41,0,0,0.217827 -11766,3415:216,156,-41,0,0,0.206208 -11767,3415:217,157,-41,0,0,0.180184 -11768,3415:218,158,-41,0,0,0.196446 -11769,3415:219,159,-41,0,0,0.204749 -11770,3416:110,160,-41,0,0,0.198907 -11771,3416:111,161,-41,0,0,0.200763 -11772,3416:112,162,-41,0,0,0.201903 -11773,3416:113,163,-41,0,0,0.191913 -11774,3416:114,164,-41,0,0,0.191388 -11775,3416:215,165,-41,0,0,0.193575 -11776,3416:216,166,-41,0,0,0.196738 -11777,3416:217,167,-41,0,0,0.194314 -11778,3416:218,168,-41,0,0,0.192583 -11779,3416:219,169,-41,0,0,0.186881 -11780,3417:110,170,-41,0,0,0.185263 -11781,3417:111,171,-41,0,0,0.182626 -11782,3417:112,172,-41,0,0,0.181524 -11783,3417:113,173,-41,0,0,0.181829 -11784,3417:114,174,-41,0,0,0.181799 -11785,3417:215,175,-41,0,0,0.182335 -11786,3417:216,176,-41,0,0,0.177109 -11787,3417:217,177,-41,0,0,0.172794 -11788,3417:218,178,-41,0,0,0.172765 -11789,3417:219,179,-41,0,0,0.173603 -11790,3418:110,180,-41,0,0,0.173191 -11791,5418:100,-180,-40,0,0,0.180336 -11792,5417:209,-179,-40,0,0,0.173706 -11793,5417:208,-178,-40,0,0,0.177379 -11794,5417:207,-177,-40,0,0,0.200533 -11795,5417:206,-176,-40,0,0,0.193752 -11796,5417:205,-175,-40,0,0,0.191467 -11797,5417:104,-174,-40,0,0,0.189518 -11798,5417:103,-173,-40,0,0,0.191801 -11799,5417:102,-172,-40,0,0,0.209984 -11800,5417:101,-171,-40,0,0,0.210206 -11801,5417:100,-170,-40,0,0,0.206596 -11802,5416:209,-169,-40,0,0,0.219002 -11803,5416:208,-168,-40,0,0,0.225466 -11804,5416:207,-167,-40,0,0,0.227048 -11805,5416:206,-166,-40,0,0,0.214883 -11806,5416:205,-165,-40,0,0,0.198498 -11807,5416:104,-164,-40,0,0,0.208675 -11808,5416:103,-163,-40,0,0,0.218984 -11809,5416:102,-162,-40,0,0,0.220764 -11810,5416:101,-161,-40,0,0,0.218826 -11811,5416:100,-160,-40,0,0,0.22133 -11812,5415:209,-159,-40,0,0,0.225968 -11813,5415:208,-158,-40,0,0,0.233826 -11814,5415:207,-157,-40,0,0,0.237844 -11815,5415:206,-156,-40,0,0,0.230875 -11816,5415:205,-155,-40,0,0,0.23042 -11817,5415:104,-154,-40,0,0,0.227355 -11818,5415:103,-153,-40,0,0,0.229873 -11819,5415:102,-152,-40,0,0,0.2346 -11820,5415:101,-151,-40,0,0,0.233771 -11821,5415:100,-150,-40,0,0,0.23632 -11822,5414:209,-149,-40,0,0,0.235431 -11823,5414:208,-148,-40,0,0,0.233035 -11824,5414:207,-147,-40,0,0,0.233587 -11825,5414:206,-146,-40,0,0,0.235931 -11826,5414:205,-145,-40,0,0,0.234213 -11827,5414:104,-144,-40,0,0,0.232797 -11828,5414:103,-143,-40,0,0,0.230912 -11829,5414:102,-142,-40,0,0,0.231022 -11830,5414:101,-141,-40,0,0,0.235505 -11831,5414:100,-140,-40,0,0,0.234286 -11832,5413:209,-139,-40,0,0,0.231551 -11833,5413:208,-138,-40,0,0,0.230912 -11834,5413:207,-137,-40,0,0,0.229601 -11835,5413:206,-136,-40,0,0,0.228132 -11836,5413:205,-135,-40,0,0,0.227662 -11837,5413:104,-134,-40,0,0,0.225861 -11838,5413:103,-133,-40,0,0,0.223498 -11839,5413:102,-132,-40,0,0,0.223498 -11840,5413:101,-131,-40,0,0,0.222217 -11841,5413:100,-130,-40,0,0,0.222057 -11842,5412:209,-129,-40,0,0,0.221968 -11843,5412:208,-128,-40,0,0,0.221383 -11844,5412:207,-127,-40,0,0,0.220499 -11845,5412:206,-126,-40,0,0,0.220658 -11846,5412:205,-125,-40,0,0,0.218405 -11847,5412:104,-124,-40,0,0,0.213931 -11848,5412:103,-123,-40,0,0,0.205436 -11849,5412:102,-122,-40,0,0,0.204766 -11850,5412:101,-121,-40,0,0,0.204398 -11851,5412:100,-120,-40,0,0,0.203364 -11852,5411:209,-119,-40,0,0,0.199169 -11853,5411:208,-118,-40,0,0,0.200846 -11854,5411:207,-117,-40,0,0,0.197796 -11855,5411:206,-116,-40,0,0,0.19858 -11856,5411:205,-115,-40,0,0,0.203031 -11857,5411:104,-114,-40,0,0,0.202799 -11858,5411:103,-113,-40,0,0,0.199284 -11859,5411:102,-112,-40,0,0,0.192599 -11860,5411:101,-111,-40,0,0,0.186055 -11861,5411:100,-110,-40,0,0,0.189487 -11862,5410:209,-109,-40,0,0,0.19034 -11863,5410:208,-108,-40,0,0,0.183948 -11864,5410:207,-107,-40,0,0,0.187272 -11865,5410:206,-106,-40,0,0,0.19034 -11866,5410:205,-105,-40,0,0,0.187131 -11867,5410:104,-104,-40,0,0,0.186866 -11868,5410:103,-103,-40,0,0,0.183271 -11869,5410:102,-102,-40,0,0,0.181723 -11870,5410:101,-101,-40,0,0,0.184319 -11871,5410:100,-100,-40,0,0,0.183733 -11872,5409:209,-99,-40,0,0,0.180412 -11873,5409:208,-98,-40,0,0,0.179669 -11874,5409:207,-97,-40,0,0,0.177529 -11875,5409:206,-96,-40,0,0,0.1769 -11876,5409:205,-95,-40,0,0,0.175498 -11877,5409:104,-94,-40,0,0,0.177934 -11878,5409:103,-93,-40,0,0,0.179049 -11879,5409:102,-92,-40,0,0,0.177364 -11880,5409:101,-91,-40,0,0,0.176795 -11881,5409:100,-90,-40,0,0,0.175989 -11882,5408:209,-89,-40,0,0,0.176123 -11883,5408:208,-88,-40,0,0,0.176108 -11884,5408:207,-87,-40,0,0,0.176975 -11885,5408:206,-86,-40,0,0,0.173441 -11886,5408:205,-85,-40,0,0,0.174578 -11887,5408:104,-84,-40,0,0,0.173323 -11888,5408:103,-83,-40,0,0,0.17446 -11889,5408:102,-82,-40,0,0,0.17911 -11890,5408:101,-81,-40,0,0,0.185604 -11891,5408:100,-80,-40,0,0,0.185511 -11892,5407:209,-79,-40,0,0,0.184937 -11893,5407:208,-78,-40,0,0,0.182641 -11894,5407:207,-77,-40,0,0,0.183102 -11895,5407:206,-76,-40,0,0,0.20197 -11896,5406:207,-67,-40,0,0,0.206074 -11897,5406:206,-66,-40,0,0,0.195621 -11898,5406:205,-65,-40,0,0,0.190087 -11899,5406:104,-64,-40,0,0,0.185465 -11900,5406:103,-63,-40,0,0,0.186912 -11901,5406:102,-62,-40,0,0,0.18671 -11902,5406:101,-61,-40,0,0,0.197861 -11903,5406:100,-60,-40,0,0,0.196203 -11904,5405:209,-59,-40,0,0,0.188526 -11905,5405:208,-58,-40,0,0,0.182197 -11906,5405:207,-57,-40,0,0,0.174386 -11907,5405:206,-56,-40,0,0,0.166755 -11908,5405:205,-55,-40,0,0,0.16072 -11909,5405:104,-54,-40,0,0,0.149822 -11910,5405:103,-53,-40,0,0,0.152512 -11911,5405:102,-52,-40,0,0,0.153364 -11912,5405:101,-51,-40,0,0,0.15749 -11913,5405:100,-50,-40,0,0,0.144332 -11914,5404:209,-49,-40,0,0,0.146696 -11915,5404:208,-48,-40,0,0,0.144421 -11916,5404:207,-47,-40,0,0,0.146195 -11917,5404:206,-46,-40,0,0,0.153791 -11918,5404:205,-45,-40,0,0,0.149299 -11919,5404:104,-44,-40,0,0,0.152127 -11920,5404:103,-43,-40,0,0,0.144802 -11921,5404:102,-42,-40,0,0,0.139134 -11922,5404:101,-41,-40,0,0,0.134559 -11923,5404:100,-40,-40,0,0,0.132609 -11924,5403:209,-39,-40,0,0,0.142439 -11925,5403:208,-38,-40,0,0,0.146323 -11926,5403:207,-37,-40,0,0,0.14658 -11927,5403:206,-36,-40,0,0,0.141064 -11928,5403:205,-35,-40,0,0,0.140146 -11929,5403:104,-34,-40,0,0,0.140295 -11930,5403:103,-33,-40,0,0,0.138152 -11931,5403:102,-32,-40,0,0,0.137712 -11932,5403:101,-31,-40,0,0,0.138655 -11933,5403:100,-30,-40,0,0,0.138348 -11934,5402:209,-29,-40,0,0,0.138458 -11935,5402:208,-28,-40,0,0,0.143952 -11936,5402:207,-27,-40,0,0,0.141763 -11937,5402:206,-26,-40,0,0,0.13588 -11938,5402:205,-25,-40,0,0,0.139097 -11939,5402:104,-24,-40,0,0,0.133486 -11941,5402:102,-22,-40,0,0,0.143712 -11942,5402:101,-21,-40,0,0,0.142289 -11943,5402:100,-20,-40,0,0,0.143333 -11944,5401:209,-19,-40,0,0,0.142577 -11945,5401:208,-18,-40,0,0,0.136788 -11946,5401:207,-17,-40,0,0,0.134846 -11947,5401:206,-16,-40,0,0,0.147766 -11948,5401:205,-15,-40,0,0,0.152671 -11949,5401:104,-14,-40,0,0,0.145414 -11950,5401:103,-13,-40,0,0,0.144041 -11951,5401:102,-12,-40,0,0,0.136654 -11952,5401:101,-11,-40,0,0,0.126152 -11953,5401:100,-10,-40,0,0,0.126708 -11954,5400:209,-9,-40,0,0,0.12223 -11955,5400:208,-8,-40,0,0,0.114481 -11956,5400:207,-7,-40,0,0,0.115768 -11957,5400:206,-6,-40,0,0,0.117643 -11958,5400:205,-5,-40,0,0,0.12287 -11959,5400:104,-4,-40,0,0,0.128907 -11960,5400:103,-3,-40,0,0,0.127494 -11961,5400:102,-2,-40,0,0,0.118606 -11962,5400:101,-1,-40,0,0,0.125847 -11963,3400:101,0,-40,0,0,0.143927 -11964,3400:101,1,-40,0,0,0.151756 -11965,3400:102,2,-40,0,0,0.144663 -11966,3400:103,3,-40,0,0,0.131877 -11967,3400:104,4,-40,0,0,0.123904 -11968,3400:205,5,-40,0,0,0.12027 -11969,3400:206,6,-40,0,0,0.125971 -11970,3400:207,7,-40,0,0,0.127186 -11971,3400:208,8,-40,0,0,0.112128 -11972,3400:209,9,-40,0,0,0.121296 -11973,3401:100,10,-40,0,0,0.122119 -11974,3401:101,11,-40,0,0,0.124519 -11975,3401:102,12,-40,0,0,0.124765 -11976,3401:103,13,-40,0,0,0.124664 -11977,3401:104,14,-40,0,0,0.119944 -11978,3401:205,15,-40,0,0,0.121801 -11979,3401:206,16,-40,0,0,0.136122 -11980,3401:207,17,-40,0,0,0.133711 -11981,3401:208,18,-40,0,0,0.117921 -11982,3401:209,19,-40,0,0,0.118413 -11983,3402:100,20,-40,0,0,0.126039 -11984,3402:101,21,-40,0,0,0.119501 -11985,3402:102,22,-40,0,0,0.123871 -11986,3402:103,23,-40,0,0,0.114961 -11987,3402:104,24,-40,0,0,0.118918 -11988,3402:205,25,-40,0,0,0.123971 -11989,3402:206,26,-40,0,0,0.120738 -11990,3402:207,27,-40,0,0,0.116475 -11991,3402:208,28,-40,0,0,0.126492 -11992,3402:209,29,-40,0,0,0.119619 -11993,3403:100,30,-40,0,0,0.11538 -11994,3403:101,31,-40,0,0,0.11744 -11995,3403:102,32,-40,0,0,0.123037 -11996,3403:103,33,-40,0,0,0.121658 -11997,3403:104,34,-40,0,0,0.114106 -11998,3403:205,35,-40,0,0,0.12111 -11999,3403:206,36,-40,0,0,0.120096 -12000,3403:207,37,-40,0,0,0.115495 -12001,3403:208,38,-40,0,0,0.110481 -12002,3403:209,39,-40,0,0,0.119544 -12003,3404:100,40,-40,0,0,0.126231 -12004,3404:101,41,-40,0,0,0.125655 -12005,3404:102,42,-40,0,0,0.122054 -12006,3404:103,43,-40,0,0,0.119641 -12007,3404:104,44,-40,0,0,0.11909 -12008,3404:205,45,-40,0,0,0.117121 -12009,3404:206,46,-40,0,0,0.114856 -12010,3404:207,47,-40,0,0,0.11334 -12011,3404:208,48,-40,0,0,0.124418 -12012,3404:209,49,-40,0,0,0.125824 -12013,3405:100,50,-40,0,0,0.118918 -12014,3405:101,51,-40,0,0,0.119274 -12015,3405:102,52,-40,0,0,0.119522 -12016,3405:103,53,-40,0,0,0.11881 -12017,3405:104,54,-40,0,0,0.11743 -12018,3405:205,55,-40,0,0,0.119684 -12019,3405:206,56,-40,0,0,0.119188 -12020,3405:207,57,-40,0,0,0.117942 -12021,3405:208,58,-40,0,0,0.11881 -12022,3405:209,59,-40,0,0,0.120053 -12023,3406:100,60,-40,0,0,0.121537 -12024,3406:101,61,-40,0,0,0.12234 -12025,3406:102,62,-40,0,0,0.119977 -12026,3406:103,63,-40,0,0,0.116179 -12027,3406:104,64,-40,0,0,0.115642 -12028,3406:205,65,-40,0,0,0.113774 -12029,3406:206,66,-40,0,0,0.112712 -12030,3406:207,67,-40,0,0,0.114606 -12031,3406:208,68,-40,0,0,0.11538 -12032,3406:209,69,-40,0,0,0.117622 -12033,3407:100,70,-40,0,0,0.115212 -12034,3407:101,71,-40,0,0,0.111485 -12035,3407:102,72,-40,0,0,0.110855 -12036,3407:104,74,-40,0,0,0.107262 -12037,3407:205,75,-40,0,0,0.11364 -12038,3407:206,76,-40,0,0,0.1301 -12039,3407:207,77,-40,0,0,0.138201 -12040,3407:208,78,-40,0,0,0.140245 -12041,3407:209,79,-40,0,0,0.133747 -12042,3408:100,80,-40,0,0,0.14567 -12043,3408:101,81,-40,0,0,0.142502 -12044,3408:102,82,-40,0,0,0.138262 -12045,3408:103,83,-40,0,0,0.155308 -12046,3408:104,84,-40,0,0,0.154407 -12047,3408:205,85,-40,0,0,0.144028 -12048,3408:206,86,-40,0,0,0.140418 -12049,3408:207,87,-40,0,0,0.141413 -12050,3408:208,88,-40,0,0,0.166656 -12051,3408:209,89,-40,0,0,0.174282 -12052,3409:100,90,-40,0,0,0.157791 -12053,3409:101,91,-40,0,0,0.159587 -12054,3409:102,92,-40,0,0,0.157395 -12055,3409:103,93,-40,0,0,0.155483 -12056,3409:104,94,-40,0,0,0.159822 -12057,3409:205,95,-40,0,0,0.159381 -12058,3409:206,96,-40,0,0,0.152871 -12059,3409:207,97,-40,0,0,0.153084 -12060,3409:208,98,-40,0,0,0.153871 -12061,3409:209,99,-40,0,0,0.151413 -12062,3410:100,100,-40,0,0,0.138949 -12063,3410:101,101,-40,0,0,0.135422 -12064,3410:102,102,-40,0,0,0.135122 -12065,3410:103,103,-40,0,0,0.136231 -12066,3410:104,104,-40,0,0,0.139725 -12067,3410:205,105,-40,0,0,0.142452 -12068,3410:206,106,-40,0,0,0.140629 -12069,3410:207,107,-40,0,0,0.132278 -12070,3410:208,108,-40,0,0,0.139097 -12071,3410:209,109,-40,0,0,0.140022 -12072,3411:100,110,-40,0,0,0.138961 -12073,3411:101,111,-40,0,0,0.142038 -12074,3411:102,112,-40,0,0,0.139787 -12075,3411:103,113,-40,0,0,0.148414 -12076,3411:104,114,-40,0,0,0.151836 -12077,3411:205,115,-40,0,0,0.152353 -12078,3411:206,116,-40,0,0,0.153551 -12079,3411:207,117,-40,0,0,0.153257 -12080,3411:208,118,-40,0,0,0.159037 -12081,3411:209,119,-40,0,0,0.161151 -12082,3412:100,120,-40,0,0,0.166584 -12083,3412:101,121,-40,0,0,0.186226 -12084,3412:102,122,-40,0,0,0.178853 -12085,3412:103,123,-40,0,0,0.175052 -12086,3412:104,124,-40,0,0,0.170864 -12087,3412:205,125,-40,0,0,0.168922 -12088,3412:206,126,-40,0,0,0.166043 -12089,3412:207,127,-40,0,0,0.184907 -12090,3412:208,128,-40,0,0,0.187397 -12091,3412:209,129,-40,0,0,0.187867 -12092,3413:100,130,-40,0,0,0.188243 -12093,3413:101,131,-40,0,0,0.19161 -12094,3413:102,132,-40,0,0,0.192599 -12095,3413:103,133,-40,0,0,0.189187 -12096,3413:104,134,-40,0,0,0.181906 -12097,3413:205,135,-40,0,0,0.188118 -12098,3413:206,136,-40,0,0,0.191181 -12099,3413:207,137,-40,0,0,0.192791 -12100,3413:208,138,-40,0,0,0.183563 -12101,3413:209,139,-40,0,0,0.170587 -12102,3414:100,140,-40,0,0,0.187491 -12103,3414:101,141,-40,0,0,0.199202 -12104,3414:102,142,-40,0,0,0.197421 -12105,3414:103,143,-40,0,0,0.186523 -12106,3414:104,144,-40,0,0,0.170907 -12107,3414:205,145,-40,0,0,0.178325 -12108,3414:206,146,-40,0,0,0.183333 -12109,3414:207,147,-40,0,0,0.198498 -12110,3414:208,148,-40,0,0,0.205067 -12111,3414:209,149,-40,0,0,0.203364 -12112,3415:100,150,-40,0,0,0.196349 -12113,3415:101,151,-40,0,0,0.191181 -12114,3415:102,152,-40,0,0,0.187084 -12115,3415:103,153,-40,0,0,0.215977 -12116,3415:104,154,-40,0,0,0.211094 -12117,3415:205,155,-40,0,0,0.207794 -12118,3415:206,156,-40,0,0,0.215838 -12119,3415:207,157,-40,0,0,0.209933 -12120,3415:208,158,-40,0,0,0.208031 -12121,3415:209,159,-40,0,0,0.205788 -12122,3416:100,160,-40,0,0,0.203314 -12123,3416:101,161,-40,0,0,0.202799 -12124,3416:102,162,-40,0,0,0.200846 -12125,3416:103,163,-40,0,0,0.200203 -12126,3416:104,164,-40,0,0,0.200598 -12127,3416:205,165,-40,0,0,0.198383 -12128,3416:206,166,-40,0,0,0.202019 -12129,3416:207,167,-40,0,0,0.195362 -12130,3416:208,168,-40,0,0,0.193624 -12131,3416:209,169,-40,0,0,0.190451 -12132,3417:100,170,-40,0,0,0.190467 -12133,3417:101,171,-40,0,0,0.189045 -12134,3417:102,172,-40,0,0,0.187569 -12135,3417:103,173,-40,0,0,0.185884 -12136,3417:104,174,-40,0,0,0.184783 -12137,3417:205,175,-40,0,0,0.184535 -12138,3417:206,176,-40,0,0,0.182396 -12139,3417:207,177,-40,0,0,0.179593 -12140,3417:208,178,-40,0,0,0.179987 -12141,3417:209,179,-40,0,0,0.180033 -12142,3418:100,180,-40,0,0,0.180336 -12143,5318:390,-180,-39,0,0,0.18531 -12144,5317:499,-179,-39,0,0,0.177694 -12145,5317:498,-178,-39,0,0,0.179336 -12146,5317:497,-177,-39,0,0,0.204515 -12147,5317:496,-176,-39,0,0,0.211934 -12148,5317:495,-175,-39,0,0,0.209711 -12149,5317:394,-174,-39,0,0,0.205301 -12150,5317:393,-173,-39,0,0,0.216186 -12151,5317:392,-172,-39,0,0,0.224856 -12152,5317:391,-171,-39,0,0,0.218072 -12153,5317:390,-170,-39,0,0,0.216952 -12154,5316:499,-169,-39,0,0,0.222644 -12155,5316:498,-168,-39,0,0,0.228222 -12156,5316:497,-167,-39,0,0,0.227138 -12157,5316:496,-166,-39,0,0,0.222608 -12158,5316:495,-165,-39,0,0,0.216848 -12159,5316:394,-164,-39,0,0,0.221614 -12160,5316:393,-163,-39,0,0,0.224087 -12161,5316:392,-162,-39,0,0,0.232999 -12162,5316:391,-161,-39,0,0,0.24431 -12163,5316:390,-160,-39,0,0,0.240367 -12164,5315:499,-159,-39,0,0,0.233238 -12165,5315:498,-158,-39,0,0,0.239113 -12166,5315:497,-157,-39,0,0,0.237881 -12167,5315:496,-156,-39,0,0,0.243155 -12168,5315:495,-155,-39,0,0,0.235154 -12169,5315:394,-154,-39,0,0,0.234194 -12170,5315:393,-153,-39,0,0,0.234858 -12171,5315:392,-152,-39,0,0,0.238515 -12172,5315:391,-151,-39,0,0,0.242833 -12173,5315:390,-150,-39,0,0,0.243401 -12174,5314:499,-149,-39,0,0,0.239973 -12175,5314:498,-148,-39,0,0,0.241269 -12176,5314:497,-147,-39,0,0,0.244728 -12177,5314:496,-146,-39,0,0,0.244291 -12178,5314:495,-145,-39,0,0,0.241871 -12179,5314:394,-144,-39,0,0,0.242192 -12180,5314:393,-143,-39,0,0,0.242381 -12181,5314:392,-142,-39,0,0,0.242267 -12182,5314:391,-141,-39,0,0,0.242211 -12183,5314:390,-140,-39,0,0,0.239356 -12184,5313:499,-139,-39,0,0,0.237788 -12185,5313:498,-138,-39,0,0,0.238049 -12186,5313:497,-137,-39,0,0,0.235801 -12187,5313:496,-136,-39,0,0,0.232797 -12188,5313:495,-135,-39,0,0,0.231551 -12189,5313:394,-134,-39,0,0,0.229111 -12190,5313:393,-133,-39,0,0,0.230565 -12191,5313:392,-132,-39,0,0,0.231643 -12192,5313:391,-131,-39,0,0,0.230383 -12193,5313:390,-130,-39,0,0,0.230347 -12194,5312:499,-129,-39,0,0,0.229892 -12195,5312:498,-128,-39,0,0,0.230165 -12196,5312:497,-127,-39,0,0,0.230274 -12197,5312:496,-126,-39,0,0,0.229328 -12198,5312:495,-125,-39,0,0,0.225933 -12199,5312:394,-124,-39,0,0,0.219952 -12200,5312:393,-123,-39,0,0,0.215369 -12201,5312:392,-122,-39,0,0,0.21556 -12202,5312:391,-121,-39,0,0,0.213327 -12203,5312:390,-120,-39,0,0,0.216047 -12204,5311:499,-119,-39,0,0,0.218668 -12205,5311:498,-118,-39,0,0,0.217145 -12206,5311:497,-117,-39,0,0,0.215264 -12207,5311:496,-116,-39,0,0,0.212569 -12208,5311:495,-115,-39,0,0,0.206141 -12209,5311:394,-114,-39,0,0,0.200105 -12210,5311:393,-113,-39,0,0,0.197438 -12211,5311:392,-112,-39,0,0,0.194717 -12212,5311:391,-111,-39,0,0,0.203481 -12213,5311:390,-110,-39,0,0,0.204917 -12214,5310:499,-109,-39,0,0,0.200549 -12215,5310:498,-108,-39,0,0,0.194717 -12216,5310:497,-107,-39,0,0,0.19356 -12217,5310:496,-106,-39,0,0,0.196073 -12218,5310:495,-105,-39,0,0,0.195863 -12219,5310:394,-104,-39,0,0,0.192935 -12220,5310:393,-103,-39,0,0,0.190562 -12221,5310:392,-102,-39,0,0,0.187178 -12222,5310:391,-101,-39,0,0,0.189282 -12223,5310:390,-100,-39,0,0,0.187992 -12224,5309:499,-99,-39,0,0,0.18435 -12225,5309:498,-98,-39,0,0,0.184134 -12226,5309:497,-97,-39,0,0,0.183102 -12227,5309:496,-96,-39,0,0,0.181753 -12228,5309:495,-95,-39,0,0,0.18261 -12229,5309:394,-94,-39,0,0,0.183163 -12230,5309:393,-93,-39,0,0,0.182994 -12231,5309:392,-92,-39,0,0,0.183225 -12232,5309:391,-91,-39,0,0,0.18435 -12233,5309:390,-90,-39,0,0,0.185511 -12234,5308:499,-89,-39,0,0,0.185635 -12235,5308:498,-88,-39,0,0,0.185698 -12236,5308:497,-87,-39,0,0,0.184644 -12237,5308:496,-86,-39,0,0,0.180291 -12238,5308:495,-85,-39,0,0,0.181554 -12239,5308:394,-84,-39,0,0,0.17973 -12240,5308:393,-83,-39,0,0,0.182994 -12241,5308:392,-82,-39,0,0,0.191674 -12242,5308:391,-81,-39,0,0,0.189424 -12243,5308:390,-80,-39,0,0,0.194894 -12244,5307:499,-79,-39,0,0,0.192631 -12245,5307:498,-78,-39,0,0,0.196025 -12246,5307:497,-77,-39,0,0,0.195184 -12247,5307:496,-76,-39,0,0,0.208539 -12248,5306:497,-67,-39,0,0,0.223998 -12249,5306:496,-66,-39,0,0,0.211026 -12250,5306:495,-65,-39,0,0,0.205268 -12251,5306:394,-64,-39,0,0,0.199284 -12252,5306:393,-63,-39,0,0,0.199202 -12253,5306:392,-62,-39,0,0,0.19953 -12254,5306:391,-61,-39,0,0,0.206899 -12255,5306:390,-60,-39,0,0,0.199169 -12256,5305:499,-59,-39,0,0,0.188134 -12257,5305:498,-58,-39,0,0,0.177694 -12258,5305:497,-57,-39,0,0,0.173 -12259,5305:496,-56,-39,0,0,0.163035 -12260,5305:495,-55,-39,0,0,0.153204 -12261,5305:394,-54,-39,0,0,0.165475 -12262,5305:393,-53,-39,0,0,0.205654 -12263,5305:392,-52,-39,0,0,0.210872 -12264,5305:391,-51,-39,0,0,0.217284 -12265,5305:390,-50,-39,0,0,0.219037 -12266,5304:499,-49,-39,0,0,0.211162 -12267,5304:498,-48,-39,0,0,0.207658 -12268,5304:497,-47,-39,0,0,0.199957 -12269,5304:496,-46,-39,0,0,0.184149 -12270,5304:495,-45,-39,0,0,0.166713 -12271,5304:394,-44,-39,0,0,0.172926 -12272,5304:393,-43,-39,0,0,0.17979 -12273,5304:392,-42,-39,0,0,0.154971 -12274,5304:391,-41,-39,0,0,0.15335 -12275,5304:390,-40,-39,0,0,0.163554 -12276,5303:499,-39,-39,0,0,0.163231 -12277,5303:498,-38,-39,0,0,0.156701 -12278,5303:497,-37,-39,0,0,0.150399 -12279,5303:496,-36,-39,0,0,0.15107 -12280,5303:495,-35,-39,0,0,0.154662 -12281,5303:394,-34,-39,0,0,0.163863 -12282,5303:393,-33,-39,0,0,0.163554 -12283,5303:392,-32,-39,0,0,0.161749 -12284,5303:391,-31,-39,0,0,0.154837 -12285,5303:390,-30,-39,0,0,0.152685 -12286,5302:499,-29,-39,0,0,0.150373 -12287,5302:498,-28,-39,0,0,0.146889 -12288,5302:497,-27,-39,0,0,0.142439 -12289,5302:496,-26,-39,0,0,0.155956 -12290,5302:495,-25,-39,0,0,0.156606 -12291,5302:394,-24,-39,0,0,0.149221 -12292,5302:393,-23,-39,0,0,0.143965 -12293,5302:392,-22,-39,0,0,0.14977 -12294,5302:391,-21,-39,0,0,0.156254 -12295,5302:390,-20,-39,0,0,0.156227 -12296,5301:499,-19,-39,0,0,0.15173 -12297,5301:498,-18,-39,0,0,0.155039 -12298,5301:497,-17,-39,0,0,0.166541 -12299,5301:496,-16,-39,0,0,0.163554 -12300,5301:495,-15,-39,0,0,0.151109 -12301,5301:394,-14,-39,0,0,0.151268 -12302,5301:393,-13,-39,0,0,0.150622 -12303,5301:392,-12,-39,0,0,0.149091 -12304,5301:391,-11,-39,0,0,0.141638 -12305,5301:390,-10,-39,0,0,0.135459 -12306,5300:499,-9,-39,0,0,0.12967 -12307,5300:498,-8,-39,0,0,0.130822 -12308,5300:497,-7,-39,0,0,0.142101 -12309,5300:496,-6,-39,0,0,0.166941 -12310,5300:495,-5,-39,0,0,0.169442 -12311,5300:394,-4,-39,0,0,0.164173 -12312,5300:393,-3,-39,0,0,0.150268 -12313,5300:392,-2,-39,0,0,0.153337 -12314,5300:391,-1,-39,0,0,0.156159 -12315,3300:391,0,-39,0,0,0.15775 -12316,3300:391,1,-39,0,0,0.150124 -12317,3300:392,2,-39,0,0,0.142791 -12318,3300:393,3,-39,0,0,0.151202 -12319,3300:394,4,-39,0,0,0.146722 -12320,3300:495,5,-39,0,0,0.13703 -12321,3300:496,6,-39,0,0,0.136509 -12322,3300:497,7,-39,0,0,0.135459 -12323,3300:498,8,-39,0,0,0.118488 -12324,3300:499,9,-39,0,0,0.116232 -12325,3301:390,10,-39,0,0,0.117889 -12326,3301:391,11,-39,0,0,0.127952 -12327,3301:392,12,-39,0,0,0.139146 -12328,3301:393,13,-39,0,0,0.134081 -12329,3301:394,14,-39,0,0,0.132313 -12330,3301:495,15,-39,0,0,0.132738 -12331,3301:496,16,-39,0,0,0.136315 -12332,3301:497,17,-39,0,0,0.130846 -12333,3301:498,18,-39,0,0,0.124239 -12334,3301:499,19,-39,0,0,0.132467 -12335,3302:390,20,-39,0,0,0.128768 -12336,3302:391,21,-39,0,0,0.124698 -12337,3302:392,22,-39,0,0,0.131936 -12338,3302:393,23,-39,0,0,0.11988 -12339,3302:394,24,-39,0,0,0.125812 -12340,3302:495,25,-39,0,0,0.126515 -12341,3302:496,26,-39,0,0,0.122528 -12342,3302:497,27,-39,0,0,0.129311 -12343,3302:498,28,-39,0,0,0.135989 -12344,3302:499,29,-39,0,0,0.137932 -12345,3303:390,30,-39,0,0,0.120379 -12346,3303:391,31,-39,0,0,0.115254 -12347,3303:392,32,-39,0,0,0.126856 -12348,3303:393,33,-39,0,0,0.128044 -12349,3303:394,34,-39,0,0,0.126515 -12350,3303:495,35,-39,0,0,0.127221 -12351,3303:496,36,-39,0,0,0.128274 -12352,3303:497,37,-39,0,0,0.131877 -12353,3303:498,38,-39,0,0,0.130228 -12354,3303:499,39,-39,0,0,0.122219 -12355,3304:390,40,-39,0,0,0.126016 -12356,3304:391,41,-39,0,0,0.13216 -12357,3304:392,42,-39,0,0,0.133581 -12358,3304:393,43,-39,0,0,0.133735 -12359,3304:394,44,-39,0,0,0.122119 -12360,3304:495,45,-39,0,0,0.123547 -12361,3304:496,46,-39,0,0,0.123882 -12362,3304:497,47,-39,0,0,0.125598 -12363,3304:498,48,-39,0,0,0.128469 -12364,3304:499,49,-39,0,0,0.127552 -12365,3305:390,50,-39,0,0,0.125609 -12366,3305:391,51,-39,0,0,0.126424 -12367,3305:392,52,-39,0,0,0.129358 -12368,3305:393,53,-39,0,0,0.13307 -12369,3305:394,54,-39,0,0,0.135977 -12370,3305:495,55,-39,0,0,0.133569 -12371,3305:496,56,-39,0,0,0.124373 -12372,3305:497,57,-39,0,0,0.123081 -12373,3305:498,58,-39,0,0,0.127792 -12374,3305:499,59,-39,0,0,0.125666 -12375,3306:390,60,-39,0,0,0.130158 -12376,3306:391,61,-39,0,0,0.127872 -12377,3306:392,62,-39,0,0,0.120281 -12378,3306:393,63,-39,0,0,0.119457 -12379,3306:394,64,-39,0,0,0.119123 -12380,3306:495,65,-39,0,0,0.118746 -12381,3306:496,66,-39,0,0,0.12681 -12382,3306:497,67,-39,0,0,0.122561 -12383,3306:498,68,-39,0,0,0.121044 -12384,3306:499,69,-39,0,0,0.124328 -12385,3307:390,70,-39,0,0,0.128182 -12386,3307:391,71,-39,0,0,0.113309 -12387,3307:392,72,-39,0,0,0.118864 -12388,3307:394,74,-39,0,0,0.121416 -12389,3307:495,75,-39,0,0,0.12168 -12390,3307:496,76,-39,0,0,0.13825 -12391,3307:497,77,-39,0,0,0.144841 -12392,3307:498,78,-39,0,0,0.147534 -12393,3307:499,79,-39,0,0,0.153657 -12394,3308:390,80,-39,0,0,0.15011 -12395,3308:391,81,-39,0,0,0.146105 -12396,3308:392,82,-39,0,0,0.148675 -12397,3308:393,83,-39,0,0,0.161721 -12398,3308:394,84,-39,0,0,0.159161 -12399,3308:495,85,-39,0,0,0.170675 -12400,3308:496,86,-39,0,0,0.177679 -12401,3308:497,87,-39,0,0,0.180519 -12402,3308:498,88,-39,0,0,0.173647 -12403,3308:499,89,-39,0,0,0.170602 -12404,3309:390,90,-39,0,0,0.176004 -12405,3309:391,91,-39,0,0,0.179442 -12406,3309:392,92,-39,0,0,0.181982 -12407,3309:393,93,-39,0,0,0.168087 -12408,3309:394,94,-39,0,0,0.161791 -12409,3309:495,95,-39,0,0,0.159946 -12410,3309:496,96,-39,0,0,0.156796 -12411,3309:497,97,-39,0,0,0.156281 -12412,3309:498,98,-39,0,0,0.155214 -12413,3309:499,99,-39,0,0,0.147715 -12414,3310:390,100,-39,0,0,0.140654 -12415,3310:391,101,-39,0,0,0.141301 -12416,3310:392,102,-39,0,0,0.143081 -12417,3310:393,103,-39,0,0,0.146169 -12418,3310:394,104,-39,0,0,0.148557 -12419,3310:495,105,-39,0,0,0.142879 -12420,3310:496,106,-39,0,0,0.139515 -12421,3310:497,107,-39,0,0,0.153952 -12422,3310:498,108,-39,0,0,0.155079 -12423,3310:499,109,-39,0,0,0.147534 -12424,3311:390,110,-39,0,0,0.147935 -12425,3311:391,111,-39,0,0,0.155402 -12426,3311:392,112,-39,0,0,0.172632 -12427,3311:393,113,-39,0,0,0.182166 -12428,3311:394,114,-39,0,0,0.184334 -12429,3311:495,115,-39,0,0,0.165404 -12430,3311:496,116,-39,0,0,0.160776 -12431,3311:497,117,-39,0,0,0.182764 -12432,3311:498,118,-39,0,0,0.188338 -12433,3311:499,119,-39,0,0,0.176586 -12434,3312:390,120,-39,0,0,0.161679 -12435,3312:391,121,-39,0,0,0.186569 -12436,3312:392,122,-39,0,0,0.184118 -12437,3312:393,123,-39,0,0,0.188416 -12438,3312:394,124,-39,0,0,0.187851 -12439,3312:495,125,-39,0,0,0.172017 -12440,3312:496,126,-39,0,0,0.179503 -12441,3312:497,127,-39,0,0,0.185698 -12442,3312:498,128,-39,0,0,0.197275 -12443,3312:499,129,-39,0,0,0.198858 -12444,3313:390,130,-39,0,0,0.189834 -12445,3313:391,131,-39,0,0,0.191754 -12446,3313:392,132,-39,0,0,0.196657 -12447,3313:393,133,-39,0,0,0.202433 -12448,3313:394,134,-39,0,0,0.19554 -12449,3313:495,135,-39,0,0,0.191833 -12450,3313:496,136,-39,0,0,0.19721 -12451,3313:497,137,-39,0,0,0.205687 -12452,3313:498,138,-39,0,0,0.206646 -12453,3313:499,139,-39,0,0,0.192967 -12454,3314:390,140,-39,0,0,0.191722 -12455,3314:391,141,-39,0,0,0.204598 -12456,3314:392,142,-39,0,0,0.202699 -12457,3314:393,143,-39,0,0,0.198759 -12458,3314:394,144,-39,0,0,0.199907 -12459,3314:495,145,-39,0,0,0.201754 -12460,3314:496,146,-39,0,0,0.204231 -12461,3314:497,147,-39,0,0,0.211522 -12462,3314:498,148,-39,0,0,0.207017 -12463,3314:499,149,-39,0,0,0.203364 -12464,3315:390,150,-39,0,0,0.199349 -12465,3315:391,151,-39,0,0,0.213103 -12466,3315:392,152,-39,0,0,0.235912 -12467,3315:393,153,-39,0,0,0.213172 -12468,3315:394,154,-39,0,0,0.213655 -12469,3315:495,155,-39,0,0,0.214727 -12470,3315:496,156,-39,0,0,0.213948 -12471,3315:497,157,-39,0,0,0.210376 -12472,3315:498,158,-39,0,0,0.207422 -12473,3315:499,159,-39,0,0,0.207084 -12474,3316:390,160,-39,0,0,0.205973 -12475,3316:391,161,-39,0,0,0.203198 -12476,3316:392,162,-39,0,0,0.209916 -12477,3316:393,163,-39,0,0,0.203847 -12478,3316:394,164,-39,0,0,0.208895 -12479,3316:495,165,-39,0,0,0.205687 -12480,3316:496,166,-39,0,0,0.203297 -12481,3316:497,167,-39,0,0,0.214762 -12482,3316:498,168,-39,0,0,0.202516 -12483,3316:499,169,-39,0,0,0.197372 -12484,3317:390,170,-39,0,0,0.193832 -12485,3317:391,171,-39,0,0,0.192631 -12486,3317:392,172,-39,0,0,0.190927 -12487,3317:393,173,-39,0,0,0.190008 -12488,3317:394,174,-39,0,0,0.189424 -12489,3317:495,175,-39,0,0,0.187616 -12490,3317:496,176,-39,0,0,0.185092 -12491,3317:497,177,-39,0,0,0.184272 -12492,3317:498,178,-39,0,0,0.190927 -12493,3317:499,179,-39,0,0,0.190609 -12494,3318:390,180,-39,0,0,0.18531 -12495,5318:380,-180,-38,0,0,0.196609 -12496,5317:489,-179,-38,0,0,0.185589 -12497,5317:488,-178,-38,0,0,0.18017 -12498,5317:487,-177,-38,0,0,0.21226 -12499,5317:486,-176,-38,0,0,0.224749 -12500,5317:485,-175,-38,0,0,0.224516 -12501,5317:384,-174,-38,0,0,0.216709 -12502,5317:383,-173,-38,0,0,0.223962 -12503,5317:382,-172,-38,0,0,0.223748 -12504,5317:381,-171,-38,0,0,0.215091 -12505,5317:380,-170,-38,0,0,0.212965 -12506,5316:489,-169,-38,0,0,0.240949 -12507,5316:488,-168,-38,0,0,0.233734 -12508,5316:487,-167,-38,0,0,0.224749 -12509,5316:486,-166,-38,0,0,0.232558 -12510,5316:485,-165,-38,0,0,0.230402 -12511,5316:384,-164,-38,0,0,0.223748 -12512,5316:383,-163,-38,0,0,0.225161 -12513,5316:382,-162,-38,0,0,0.233568 -12514,5316:381,-161,-38,0,0,0.248334 -12515,5316:380,-160,-38,0,0,0.243155 -12516,5315:489,-159,-38,0,0,0.242493 -12517,5315:488,-158,-38,0,0,0.245317 -12518,5315:487,-157,-38,0,0,0.243249 -12519,5315:486,-156,-38,0,0,0.249333 -12520,5315:485,-155,-38,0,0,0.250566 -12521,5315:384,-154,-38,0,0,0.248776 -12522,5315:383,-153,-38,0,0,0.248527 -12523,5315:382,-152,-38,0,0,0.247511 -12524,5315:381,-151,-38,0,0,0.252113 -12525,5315:380,-150,-38,0,0,0.253626 -12526,5314:489,-149,-38,0,0,0.250026 -12527,5314:488,-148,-38,0,0,0.251745 -12528,5314:487,-147,-38,0,0,0.252713 -12529,5314:486,-146,-38,0,0,0.251048 -12530,5314:485,-145,-38,0,0,0.248584 -12531,5314:384,-144,-38,0,0,0.247893 -12532,5314:383,-143,-38,0,0,0.24941 -12533,5314:382,-142,-38,0,0,0.249583 -12534,5314:381,-141,-38,0,0,0.245964 -12535,5314:380,-140,-38,0,0,0.247645 -12536,5313:489,-139,-38,0,0,0.246975 -12537,5313:488,-138,-38,0,0,0.245107 -12538,5313:487,-137,-38,0,0,0.241852 -12539,5313:486,-136,-38,0,0,0.2393 -12540,5313:485,-135,-38,0,0,0.23915 -12541,5313:384,-134,-38,0,0,0.237193 -12542,5313:383,-133,-38,0,0,0.233293 -12543,5313:382,-132,-38,0,0,0.235986 -12544,5313:381,-131,-38,0,0,0.238384 -12545,5313:380,-130,-38,0,0,0.240949 -12546,5312:489,-129,-38,0,0,0.239486 -12547,5312:488,-128,-38,0,0,0.237211 -12548,5312:487,-127,-38,0,0,0.23532 -12549,5312:486,-126,-38,0,0,0.233458 -12550,5312:485,-125,-38,0,0,0.23104 -12551,5312:384,-124,-38,0,0,0.228168 -12552,5312:383,-123,-38,0,0,0.226526 -12553,5312:382,-122,-38,0,0,0.227012 -12554,5312:381,-121,-38,0,0,0.230347 -12555,5312:380,-120,-38,0,0,0.231058 -12556,5311:489,-119,-38,0,0,0.225556 -12557,5311:488,-118,-38,0,0,0.222413 -12558,5311:487,-117,-38,0,0,0.219037 -12559,5311:486,-116,-38,0,0,0.217792 -12560,5311:485,-115,-38,0,0,0.219301 -12561,5311:384,-114,-38,0,0,0.214865 -12562,5311:383,-113,-38,0,0,0.206781 -12563,5311:382,-112,-38,0,0,0.207794 -12564,5311:381,-111,-38,0,0,0.216133 -12565,5311:380,-110,-38,0,0,0.207185 -12566,5310:489,-109,-38,0,0,0.204431 -12567,5310:488,-108,-38,0,0,0.201357 -12568,5310:487,-107,-38,0,0,0.200203 -12569,5310:486,-106,-38,0,0,0.202152 -12570,5310:485,-105,-38,0,0,0.200549 -12571,5310:384,-104,-38,0,0,0.197943 -12572,5310:383,-103,-38,0,0,0.19554 -12573,5310:382,-102,-38,0,0,0.194556 -12574,5310:381,-101,-38,0,0,0.194943 -12575,5310:380,-100,-38,0,0,0.195362 -12576,5309:489,-99,-38,0,0,0.194862 -12577,5309:488,-98,-38,0,0,0.191961 -12578,5309:487,-97,-38,0,0,0.190134 -12579,5309:486,-96,-38,0,0,0.189802 -12580,5309:485,-95,-38,0,0,0.19169 -12581,5309:384,-94,-38,0,0,0.191626 -12582,5309:383,-93,-38,0,0,0.18966 -12583,5309:382,-92,-38,0,0,0.188102 -12584,5309:381,-91,-38,0,0,0.194459 -12585,5309:380,-90,-38,0,0,0.192487 -12586,5308:489,-89,-38,0,0,0.199481 -12587,5308:488,-88,-38,0,0,0.191499 -12588,5308:487,-87,-38,0,0,0.192471 -12590,5308:485,-85,-38,0,0,0.194266 -12591,5308:384,-84,-38,0,0,0.191738 -12592,5308:383,-83,-38,0,0,0.195944 -12593,5308:382,-82,-38,0,0,0.197193 -12594,5308:381,-81,-38,0,0,0.202516 -12595,5308:380,-80,-38,0,0,0.204398 -12596,5307:489,-79,-38,0,0,0.205687 -12597,5307:488,-78,-38,0,0,0.203015 -12598,5307:487,-77,-38,0,0,0.200582 -12599,5307:486,-76,-38,0,0,0.213413 -12600,5307:485,-75,-38,0,0,0.22227 -12601,5306:485,-65,-38,0,0,0.227085 -12602,5306:384,-64,-38,0,0,0.211436 -12603,5306:383,-63,-38,0,0,0.206377 -12604,5306:382,-62,-38,0,0,0.206494 -12605,5306:381,-61,-38,0,0,0.213241 -12606,5306:380,-60,-38,0,0,0.201837 -12607,5305:489,-59,-38,0,0,0.173809 -12608,5305:488,-58,-38,0,0,0.175008 -12609,5305:487,-57,-38,0,0,0.176392 -12610,5305:486,-56,-38,0,0,0.181295 -12611,5305:485,-55,-38,0,0,0.19512 -12612,5305:384,-54,-38,0,0,0.204214 -12613,5305:383,-53,-38,0,0,0.223124 -12614,5305:382,-52,-38,0,0,0.226526 -12615,5305:381,-51,-38,0,0,0.249891 -12616,5305:380,-50,-38,0,0,0.251068 -12617,5304:489,-49,-38,0,0,0.227265 -12618,5304:488,-48,-38,0,0,0.21269 -12619,5304:487,-47,-38,0,0,0.218002 -12620,5304:486,-46,-38,0,0,0.209184 -12621,5304:485,-45,-38,0,0,0.20631 -12622,5304:384,-44,-38,0,0,0.203447 -12623,5304:383,-43,-38,0,0,0.201738 -12624,5304:382,-42,-38,0,0,0.202317 -12625,5304:381,-41,-38,0,0,0.200253 -12626,5304:380,-40,-38,0,0,0.19894 -12627,5303:489,-39,-38,0,0,0.196106 -12628,5303:488,-38,-38,0,0,0.19372 -12629,5303:487,-37,-38,0,0,0.190737 -12630,5303:486,-36,-38,0,0,0.188322 -12631,5303:485,-35,-38,0,0,0.175691 -12632,5303:384,-34,-38,0,0,0.159051 -12633,5303:383,-33,-38,0,0,0.156987 -12634,5303:382,-32,-38,0,0,0.156348 -12635,5303:381,-31,-38,0,0,0.154958 -12636,5303:380,-30,-38,0,0,0.156145 -12637,5302:489,-29,-38,0,0,0.156946 -12638,5302:488,-28,-38,0,0,0.152061 -12639,5302:487,-27,-38,0,0,0.154622 -12640,5302:486,-26,-38,0,0,0.165475 -12641,5302:485,-25,-38,0,0,0.16104 -12642,5302:384,-24,-38,0,0,0.160859 -12643,5302:383,-23,-38,0,0,0.15601 -12644,5302:382,-22,-38,0,0,0.152114 -12645,5302:381,-21,-38,0,0,0.163315 -12646,5302:380,-20,-38,0,0,0.175542 -12647,5301:489,-19,-38,0,0,0.161429 -12648,5301:488,-18,-38,0,0,0.175141 -12649,5301:487,-17,-38,0,0,0.179321 -12650,5301:486,-16,-38,0,0,0.166513 -12651,5301:485,-15,-38,0,0,0.156701 -12652,5301:384,-14,-38,0,0,0.152884 -12653,5301:383,-13,-38,0,0,0.148596 -12654,5301:382,-12,-38,0,0,0.142653 -12655,5301:381,-11,-38,0,0,0.142477 -12656,5301:380,-10,-38,0,0,0.136206 -12657,5300:489,-9,-38,0,0,0.132349 -12658,5300:488,-8,-38,0,0,0.139368 -12659,5300:487,-7,-38,0,0,0.150688 -12660,5300:486,-6,-38,0,0,0.161484 -12661,5300:485,-5,-38,0,0,0.16862 -12662,5300:384,-4,-38,0,0,0.167399 -12663,5300:383,-3,-38,0,0,0.161498 -12664,5300:382,-2,-38,0,0,0.158707 -12665,5300:381,-1,-38,0,0,0.159877 -12666,3300:381,0,-38,0,0,0.16295 -12667,3300:381,1,-38,0,0,0.168102 -12668,3300:382,2,-38,0,0,0.158105 -12669,3300:383,3,-38,0,0,0.166299 -12670,3300:384,4,-38,0,0,0.162139 -12671,3300:485,5,-38,0,0,0.148687 -12672,3300:486,6,-38,0,0,0.141513 -12673,3300:487,7,-38,0,0,0.137859 -12674,3300:488,8,-38,0,0,0.134331 -12675,3300:489,9,-38,0,0,0.12535 -12676,3301:380,10,-38,0,0,0.139072 -12677,3301:381,11,-38,0,0,0.155429 -12678,3301:382,12,-38,0,0,0.154219 -12679,3301:383,13,-38,0,0,0.147883 -12680,3301:384,14,-38,0,0,0.141538 -12681,3301:485,15,-38,0,0,0.136775 -12682,3301:486,16,-38,0,0,0.136001 -12683,3301:487,17,-38,0,0,0.133035 -12684,3301:488,18,-38,0,0,0.147172 -12685,3301:489,19,-38,0,0,0.146979 -12686,3302:380,20,-38,0,0,0.148466 -12687,3302:381,21,-38,0,0,0.151307 -12688,3302:382,22,-38,0,0,0.144853 -12689,3302:383,23,-38,0,0,0.129612 -12690,3302:384,24,-38,0,0,0.127175 -12691,3302:485,25,-38,0,0,0.141551 -12692,3302:486,26,-38,0,0,0.145184 -12693,3302:487,27,-38,0,0,0.141776 -12694,3302:488,28,-38,0,0,0.14631 -12695,3302:489,29,-38,0,0,0.141176 -12696,3303:380,30,-38,0,0,0.150137 -12697,3303:381,31,-38,0,0,0.17322 -12698,3303:382,32,-38,0,0,0.174889 -12699,3303:383,33,-38,0,0,0.171418 -12700,3303:384,34,-38,0,0,0.145299 -12701,3303:485,35,-38,0,0,0.126628 -12702,3303:486,36,-38,0,0,0.127209 -12703,3303:487,37,-38,0,0,0.131349 -12704,3303:488,38,-38,0,0,0.13541 -12705,3303:489,39,-38,0,0,0.130671 -12706,3304:380,40,-38,0,0,0.130787 -12707,3304:381,41,-38,0,0,0.132077 -12708,3304:382,42,-38,0,0,0.135386 -12709,3304:383,43,-38,0,0,0.14418 -12710,3304:384,44,-38,0,0,0.140642 -12711,3304:485,45,-38,0,0,0.136509 -12712,3304:486,46,-38,0,0,0.137871 -12713,3304:487,47,-38,0,0,0.137079 -12714,3304:488,48,-38,0,0,0.129856 -12715,3304:489,49,-38,0,0,0.128343 -12716,3305:380,50,-38,0,0,0.130566 -12717,3305:381,51,-38,0,0,0.131302 -12718,3305:382,52,-38,0,0,0.132668 -12719,3305:383,53,-38,0,0,0.136279 -12720,3305:384,54,-38,0,0,0.13703 -12721,3305:485,55,-38,0,0,0.148285 -12722,3305:486,56,-38,0,0,0.137249 -12723,3305:487,57,-38,0,0,0.135531 -12724,3305:488,58,-38,0,0,0.135615 -12725,3305:489,59,-38,0,0,0.133818 -12726,3306:380,60,-38,0,0,0.143081 -12727,3306:381,61,-38,0,0,0.140282 -12728,3306:382,62,-38,0,0,0.124721 -12729,3306:383,63,-38,0,0,0.127472 -12730,3306:384,64,-38,0,0,0.125666 -12731,3306:485,65,-38,0,0,0.125508 -12732,3306:486,66,-38,0,0,0.138103 -12733,3306:487,67,-38,0,0,0.13196 -12734,3306:488,68,-38,0,0,0.12945 -12735,3306:489,69,-38,0,0,0.128538 -12736,3307:380,70,-38,0,0,0.128826 -12737,3307:381,71,-38,0,0,0.118628 -12738,3307:382,72,-38,0,0,0.116528 -12739,3307:384,74,-38,0,0,0.137249 -12740,3307:485,75,-38,0,0,0.143358 -12741,3307:486,76,-38,0,0,0.144472 -12742,3307:487,77,-38,0,0,0.140903 -12743,3307:488,78,-38,0,0,0.140691 -12744,3307:489,79,-38,0,0,0.160859 -12745,3308:380,80,-38,0,0,0.16385 -12746,3308:381,81,-38,0,0,0.169182 -12747,3308:382,82,-38,0,0,0.166 -12748,3308:383,83,-38,0,0,0.173986 -12749,3308:384,84,-38,0,0,0.175661 -12750,3308:485,85,-38,0,0,0.173677 -12751,3308:486,86,-38,0,0,0.177334 -12752,3308:487,87,-38,0,0,0.192631 -12753,3308:488,88,-38,0,0,0.195459 -12754,3308:489,89,-38,0,0,0.195427 -12755,3309:380,90,-38,0,0,0.190419 -12756,3309:381,91,-38,0,0,0.189723 -12757,3309:382,92,-38,0,0,0.182105 -12758,3309:383,93,-38,0,0,0.16677 -12759,3309:384,94,-38,0,0,0.168836 -12760,3309:485,95,-38,0,0,0.161554 -12761,3309:486,96,-38,0,0,0.156267 -12762,3309:487,97,-38,0,0,0.15434 -12763,3309:488,98,-38,0,0,0.154394 -12764,3309:489,99,-38,0,0,0.152685 -12765,3310:380,100,-38,0,0,0.14703 -12766,3310:381,101,-38,0,0,0.153911 -12767,3310:382,102,-38,0,0,0.155214 -12768,3310:383,103,-38,0,0,0.152498 -12769,3310:384,104,-38,0,0,0.1579 -12770,3310:485,105,-38,0,0,0.160624 -12771,3310:486,106,-38,0,0,0.156796 -12772,3310:487,107,-38,0,0,0.165106 -12773,3310:488,108,-38,0,0,0.165177 -12774,3310:489,109,-38,0,0,0.15764 -12775,3311:380,110,-38,0,0,0.170559 -12776,3311:381,111,-38,0,0,0.173868 -12777,3311:382,112,-38,0,0,0.19169 -12778,3311:383,113,-38,0,0,0.200961 -12779,3311:384,114,-38,0,0,0.18632 -12780,3311:485,115,-38,0,0,0.185915 -12781,3311:486,116,-38,0,0,0.18925 -12782,3311:487,117,-38,0,0,0.193864 -12783,3311:488,118,-38,0,0,0.194153 -12784,3311:489,119,-38,0,0,0.198989 -12785,3312:380,120,-38,0,0,0.205201 -12786,3312:381,121,-38,0,0,0.197015 -12787,3312:382,122,-38,0,0,0.183918 -12788,3312:383,123,-38,0,0,0.189487 -12789,3312:384,124,-38,0,0,0.20149 -12790,3312:485,125,-38,0,0,0.19372 -12791,3312:486,126,-38,0,0,0.181036 -12792,3312:487,127,-38,0,0,0.196625 -12793,3312:488,128,-38,0,0,0.214536 -12794,3312:489,129,-38,0,0,0.213017 -12795,3313:380,130,-38,0,0,0.211231 -12796,3313:381,131,-38,0,0,0.209456 -12797,3313:382,132,-38,0,0,0.211848 -12798,3313:383,133,-38,0,0,0.211556 -12799,3313:384,134,-38,0,0,0.207811 -12800,3313:485,135,-38,0,0,0.203631 -12801,3313:486,136,-38,0,0,0.207017 -12802,3313:487,137,-38,0,0,0.213258 -12803,3313:488,138,-38,0,0,0.20932 -12804,3313:489,139,-38,0,0,0.202865 -12805,3314:380,140,-38,0,0,0.205755 -12806,3314:381,141,-38,0,0,0.215577 -12807,3314:382,142,-38,0,0,0.221543 -12808,3314:383,143,-38,0,0,0.221915 -12809,3314:384,144,-38,0,0,0.226706 -12810,3314:485,145,-38,0,0,0.230274 -12811,3314:486,146,-38,0,0,0.223124 -12812,3314:487,147,-38,0,0,0.208912 -12813,3314:488,148,-38,0,0,0.207591 -12814,3314:489,149,-38,0,0,0.204532 -12815,3315:380,150,-38,0,0,0.206107 -12816,3315:381,151,-38,0,0,0.208573 -12817,3315:382,152,-38,0,0,0.222075 -12818,3315:383,153,-38,0,0,0.225196 -12819,3315:384,154,-38,0,0,0.215681 -12820,3315:485,155,-38,0,0,0.225251 -12821,3315:486,156,-38,0,0,0.223178 -12822,3315:487,157,-38,0,0,0.217792 -12823,3315:488,158,-38,0,0,0.211934 -12824,3315:489,159,-38,0,0,0.214225 -12825,3316:380,160,-38,0,0,0.215299 -12826,3316:381,161,-38,0,0,0.220217 -12827,3316:382,162,-38,0,0,0.217652 -12828,3316:383,163,-38,0,0,0.2196 -12829,3316:384,164,-38,0,0,0.222466 -12830,3316:485,165,-38,0,0,0.221224 -12831,3316:486,166,-38,0,0,0.217792 -12832,3316:487,167,-38,0,0,0.225 -12833,3316:488,168,-38,0,0,0.220393 -12834,3316:489,169,-38,0,0,0.208624 -12835,3317:380,170,-38,0,0,0.199809 -12836,3317:381,171,-38,0,0,0.193736 -12837,3317:382,172,-38,0,0,0.191499 -12838,3317:383,173,-38,0,0,0.19126 -12839,3317:384,174,-38,0,0,0.190641 -12840,3317:485,175,-38,0,0,0.188919 -12841,3317:486,176,-38,0,0,0.188919 -12842,3317:487,177,-38,0,0,0.194765 -12843,3317:488,178,-38,0,0,0.196738 -12844,3317:489,179,-38,0,0,0.196852 -12845,3318:380,180,-38,0,0,0.196609 -12846,5318:370,-180,-37,0,0,0.190451 -12847,5317:479,-179,-37,0,0,0.19999 -12848,5317:478,-178,-37,0,0,0.217442 -12849,5317:477,-177,-37,0,0,0.22027 -12850,5317:476,-176,-37,0,0,0.225018 -12851,5317:475,-175,-37,0,0,0.22922 -12852,5317:374,-174,-37,0,0,0.236005 -12853,5317:373,-173,-37,0,0,0.22482 -12854,5317:372,-172,-37,0,0,0.227608 -12855,5317:371,-171,-37,0,0,0.240067 -12856,5317:370,-170,-37,0,0,0.258795 -12857,5316:479,-169,-37,0,0,0.256144 -12858,5316:478,-168,-37,0,0,0.254152 -12859,5316:477,-167,-37,0,0,0.248488 -12860,5316:476,-166,-37,0,0,0.248162 -12861,5316:475,-165,-37,0,0,0.248661 -12862,5316:374,-164,-37,0,0,0.248392 -12863,5316:373,-163,-37,0,0,0.242343 -12864,5316:372,-162,-37,0,0,0.242324 -12865,5316:371,-161,-37,0,0,0.252655 -12866,5316:370,-160,-37,0,0,0.251551 -12867,5315:479,-159,-37,0,0,0.2513 -12868,5315:478,-158,-37,0,0,0.252539 -12869,5315:477,-157,-37,0,0,0.257084 -12870,5315:476,-156,-37,0,0,0.256692 -12871,5315:475,-155,-37,0,0,0.257045 -12872,5315:374,-154,-37,0,0,0.257654 -12873,5315:373,-153,-37,0,0,0.256594 -12874,5315:372,-152,-37,0,0,0.257949 -12875,5315:371,-151,-37,0,0,0.261961 -12876,5315:370,-150,-37,0,0,0.258775 -12877,5314:479,-149,-37,0,0,0.259999 -12878,5314:478,-148,-37,0,0,0.26085 -12879,5314:477,-147,-37,0,0,0.259032 -12880,5314:476,-146,-37,0,0,0.255596 -12881,5314:475,-145,-37,0,0,0.252539 -12882,5314:374,-144,-37,0,0,0.256281 -12883,5314:373,-143,-37,0,0,0.259269 -12884,5314:372,-142,-37,0,0,0.255948 -12885,5314:371,-141,-37,0,0,0.253977 -12886,5314:370,-140,-37,0,0,0.259012 -12887,5313:479,-139,-37,0,0,0.255928 -12888,5313:478,-138,-37,0,0,0.25072 -12889,5313:477,-137,-37,0,0,0.249141 -12890,5313:476,-136,-37,0,0,0.249795 -12891,5313:475,-135,-37,0,0,0.248641 -12892,5313:374,-134,-37,0,0,0.24545 -12893,5313:373,-133,-37,0,0,0.243798 -12894,5313:372,-132,-37,0,0,0.245869 -12895,5313:371,-131,-37,0,0,0.246193 -12896,5313:370,-130,-37,0,0,0.244424 -12897,5312:479,-129,-37,0,0,0.247224 -12898,5312:478,-128,-37,0,0,0.248277 -12899,5312:477,-127,-37,0,0,0.246765 -12900,5312:476,-126,-37,0,0,0.246632 -12901,5312:475,-125,-37,0,0,0.24688 -12902,5312:374,-124,-37,0,0,0.246727 -12903,5312:373,-123,-37,0,0,0.25072 -12904,5312:372,-122,-37,0,0,0.244443 -12905,5312:371,-121,-37,0,0,0.243741 -12906,5312:370,-120,-37,0,0,0.23859 -12907,5311:479,-119,-37,0,0,0.240424 -12908,5311:478,-118,-37,0,0,0.233899 -12909,5311:477,-117,-37,0,0,0.235968 -12910,5311:476,-116,-37,0,0,0.234637 -12911,5311:475,-115,-37,0,0,0.227428 -12912,5311:374,-114,-37,0,0,0.222981 -12913,5311:373,-113,-37,0,0,0.219301 -12914,5311:372,-112,-37,0,0,0.22087 -12915,5311:371,-111,-37,0,0,0.225591 -12916,5311:370,-110,-37,0,0,0.21516 -12917,5310:479,-109,-37,0,0,0.2125 -12918,5310:478,-108,-37,0,0,0.212793 -12919,5310:477,-107,-37,0,0,0.212655 -12920,5310:476,-106,-37,0,0,0.210564 -12921,5310:475,-105,-37,0,0,0.208692 -12922,5310:374,-104,-37,0,0,0.210188 -12923,5310:373,-103,-37,0,0,0.204231 -12924,5310:372,-102,-37,0,0,0.205452 -12925,5310:371,-101,-37,0,0,0.205184 -12926,5310:370,-100,-37,0,0,0.207506 -12927,5309:479,-99,-37,0,0,0.205603 -12928,5309:478,-98,-37,0,0,0.204264 -12929,5309:477,-97,-37,0,0,0.199874 -12930,5309:476,-96,-37,0,0,0.201672 -12931,5309:475,-95,-37,0,0,0.20255 -12932,5309:374,-94,-37,0,0,0.20358 -12933,5309:373,-93,-37,0,0,0.199957 -12934,5309:372,-92,-37,0,0,0.199661 -12935,5309:371,-91,-37,0,0,0.200615 -12936,5309:370,-90,-37,0,0,0.202268 -12937,5308:479,-89,-37,0,0,0.202832 -12938,5308:478,-88,-37,0,0,0.203864 -12939,5308:477,-87,-37,0,0,0.199907 -12940,5308:476,-86,-37,0,0,0.203447 -12941,5308:475,-85,-37,0,0,0.198612 -12942,5308:374,-84,-37,0,0,0.200994 -12943,5308:373,-83,-37,0,0,0.204532 -12944,5308:372,-82,-37,0,0,0.20599 -12945,5308:371,-81,-37,0,0,0.204699 -12946,5308:370,-80,-37,0,0,0.209473 -12947,5307:479,-79,-37,0,0,0.21238 -12948,5307:478,-78,-37,0,0,0.211848 -12949,5307:477,-77,-37,0,0,0.207624 -12950,5307:476,-76,-37,0,0,0.218633 -12951,5307:475,-75,-37,0,0,0.217617 -12952,5306:477,-67,-37,0,0,0.252035 -12953,5306:476,-66,-37,0,0,0.24431 -12954,5306:475,-65,-37,0,0,0.234673 -12955,5306:374,-64,-37,0,0,0.231076 -12956,5306:373,-63,-37,0,0,0.225196 -12957,5306:372,-62,-37,0,0,0.225609 -12958,5306:371,-61,-37,0,0,0.222004 -12959,5306:370,-60,-37,0,0,0.208166 -12960,5305:479,-59,-37,0,0,0.178778 -12961,5305:478,-58,-37,0,0,0.193207 -12962,5305:477,-57,-37,0,0,0.22316 -12963,5305:476,-56,-37,0,0,0.222697 -12964,5305:475,-55,-37,0,0,0.222572 -12965,5305:374,-54,-37,0,0,0.237304 -12966,5305:373,-53,-37,0,0,0.238889 -12967,5305:372,-52,-37,0,0,0.243004 -12968,5305:371,-51,-37,0,0,0.270572 -12969,5305:370,-50,-37,0,0,0.269215 -12970,5304:479,-49,-37,0,0,0.237881 -12971,5304:478,-48,-37,0,0,0.222572 -12972,5304:477,-47,-37,0,0,0.222803 -12973,5304:476,-46,-37,0,0,0.220058 -12974,5304:475,-45,-37,0,0,0.219424 -12975,5304:374,-44,-37,0,0,0.21464 -12976,5304:373,-43,-37,0,0,0.203998 -12977,5304:372,-42,-37,0,0,0.2049 -12978,5304:371,-41,-37,0,0,0.202849 -12979,5304:370,-40,-37,0,0,0.198204 -12980,5303:479,-39,-37,0,0,0.199628 -12981,5303:478,-38,-37,0,0,0.201341 -12982,5303:477,-37,-37,0,0,0.19669 -12983,5303:476,-36,-37,0,0,0.192823 -12984,5303:475,-35,-37,0,0,0.184411 -12985,5303:374,-34,-37,0,0,0.168346 -12986,5303:373,-33,-37,0,0,0.168735 -12987,5303:372,-32,-37,0,0,0.169211 -12988,5303:371,-31,-37,0,0,0.165106 -12989,5303:370,-30,-37,0,0,0.166057 -12990,5302:479,-29,-37,0,0,0.177649 -12991,5302:478,-28,-37,0,0,0.173471 -12992,5302:477,-27,-37,0,0,0.165929 -12993,5302:476,-26,-37,0,0,0.179821 -12994,5302:475,-25,-37,0,0,0.167743 -12995,5302:374,-24,-37,0,0,0.185744 -12996,5302:373,-23,-37,0,0,0.177394 -12997,5302:372,-22,-37,0,0,0.189692 -12998,5302:371,-21,-37,0,0,0.209048 -12999,5302:370,-20,-37,0,0,0.201738 -13000,5301:479,-19,-37,0,0,0.16573 -13001,5301:478,-18,-37,0,0,0.184427 -13002,5301:477,-17,-37,0,0,0.173721 -13003,5301:476,-16,-37,0,0,0.159905 -13004,5301:475,-15,-37,0,0,0.166969 -13005,5301:374,-14,-37,0,0,0.153737 -13006,5301:373,-13,-37,0,0,0.146901 -13007,5301:372,-12,-37,0,0,0.150859 -13008,5301:371,-11,-37,0,0,0.15299 -13009,5301:370,-10,-37,0,0,0.160957 -13010,5300:479,-9,-37,0,0,0.153938 -13011,5300:478,-8,-37,0,0,0.158639 -13012,5300:477,-7,-37,0,0,0.163441 -13013,5300:476,-6,-37,0,0,0.184535 -13014,5300:475,-5,-37,0,0,0.180534 -13015,5300:374,-4,-37,0,0,0.177919 -13016,5300:373,-3,-37,0,0,0.189471 -13017,5300:372,-2,-37,0,0,0.197812 -13018,5300:371,-1,-37,0,0,0.196511 -13019,3300:371,0,-37,0,0,0.181143 -13020,3300:371,1,-37,0,0,0.168648 -13021,3300:372,2,-37,0,0,0.17678 -13022,3300:373,3,-37,0,0,0.174252 -13023,3300:374,4,-37,0,0,0.174622 -13889,3317:455,175,-35,0,0,0.22211 -13024,3300:475,5,-37,0,0,0.166328 -13025,3300:476,6,-37,0,0,0.161415 -13026,3300:477,7,-37,0,0,0.155537 -13027,3300:478,8,-37,0,0,0.156362 -13028,3300:479,9,-37,0,0,0.159257 -13029,3301:370,10,-37,0,0,0.16849 -13030,3301:371,11,-37,0,0,0.167213 -13031,3301:372,12,-37,0,0,0.156444 -13032,3301:373,13,-37,0,0,0.155564 -13033,3301:374,14,-37,0,0,0.162629 -13034,3301:475,15,-37,0,0,0.169023 -13035,3301:476,16,-37,0,0,0.175052 -13036,3301:477,17,-37,0,0,0.1589 -13037,3301:478,18,-37,0,0,0.146464 -13038,3301:479,19,-37,0,0,0.142703 -13039,3302:370,20,-37,0,0,0.148896 -13040,3302:371,21,-37,0,0,0.154904 -13041,3302:372,22,-37,0,0,0.159877 -13042,3302:373,23,-37,0,0,0.159849 -13043,3302:374,24,-37,0,0,0.166143 -13044,3302:475,25,-37,0,0,0.167786 -13045,3302:476,26,-37,0,0,0.165163 -13046,3302:477,27,-37,0,0,0.151558 -13047,3302:478,28,-37,0,0,0.150491 -13048,3302:479,29,-37,0,0,0.163245 -13049,3303:370,30,-37,0,0,0.17587 -13050,3303:371,31,-37,0,0,0.175646 -13051,3303:372,32,-37,0,0,0.174519 -13052,3303:373,33,-37,0,0,0.170864 -13053,3303:374,34,-37,0,0,0.166827 -13054,3303:475,35,-37,0,0,0.15956 -13055,3303:476,36,-37,0,0,0.154474 -13056,3303:477,37,-37,0,0,0.157627 -13057,3303:478,38,-37,0,0,0.156634 -13058,3303:479,39,-37,0,0,0.151241 -13059,3304:370,40,-37,0,0,0.14703 -13060,3304:371,41,-37,0,0,0.149352 -13061,3304:372,42,-37,0,0,0.161081 -13062,3304:373,43,-37,0,0,0.160832 -13063,3304:374,44,-37,0,0,0.161637 -13064,3304:475,45,-37,0,0,0.157859 -13065,3304:476,46,-37,0,0,0.154743 -13066,3304:477,47,-37,0,0,0.150478 -13067,3304:478,48,-37,0,0,0.142301 -13068,3304:479,49,-37,0,0,0.137103 -13069,3305:370,50,-37,0,0,0.137822 -13070,3305:371,51,-37,0,0,0.138789 -13071,3305:372,52,-37,0,0,0.137274 -13072,3305:373,53,-37,0,0,0.133711 -13073,3305:374,54,-37,0,0,0.142088 -13074,3305:475,55,-37,0,0,0.155456 -13075,3305:476,56,-37,0,0,0.148389 -13076,3305:477,57,-37,0,0,0.14249 -13077,3305:478,58,-37,0,0,0.143282 -13078,3305:479,59,-37,0,0,0.14977 -13079,3306:370,60,-37,0,0,0.162265 -13080,3306:371,61,-37,0,0,0.180519 -13081,3306:372,62,-37,0,0,0.146786 -13082,3306:373,63,-37,0,0,0.13426 -13083,3306:374,64,-37,0,0,0.142766 -13084,3306:475,65,-37,0,0,0.128746 -13085,3306:476,66,-37,0,0,0.140518 -13086,3306:477,67,-37,0,0,0.138838 -13087,3306:478,68,-37,0,0,0.139701 -13088,3306:479,69,-37,0,0,0.147883 -13089,3307:370,70,-37,0,0,0.14725 -13090,3307:371,71,-37,0,0,0.146208 -13091,3307:372,72,-37,0,0,0.156823 -13092,3307:374,74,-37,0,0,0.178566 -13093,3307:475,75,-37,0,0,0.18093 -13094,3307:476,76,-37,0,0,0.17584 -13095,3307:477,77,-37,0,0,0.18093 -13096,3307:478,78,-37,0,0,0.176108 -13097,3307:479,79,-37,0,0,0.178898 -13098,3308:370,80,-37,0,0,0.175706 -13099,3308:371,81,-37,0,0,0.180792 -13100,3308:372,82,-37,0,0,0.170602 -13101,3308:373,83,-37,0,0,0.201622 -13102,3308:374,84,-37,0,0,0.191642 -13103,3308:475,85,-37,0,0,0.174312 -13104,3308:476,86,-37,0,0,0.190499 -13105,3308:477,87,-37,0,0,0.199349 -13106,3308:478,88,-37,0,0,0.205352 -13107,3308:479,89,-37,0,0,0.200138 -13108,3309:370,90,-37,0,0,0.18884 -13109,3309:371,91,-37,0,0,0.186741 -13110,3309:372,92,-37,0,0,0.186866 -13111,3309:373,93,-37,0,0,0.184041 -13112,3309:374,94,-37,0,0,0.179593 -13113,3309:475,95,-37,0,0,0.16849 -13114,3309:476,96,-37,0,0,0.16354 -13115,3309:477,97,-37,0,0,0.157914 -13116,3309:478,98,-37,0,0,0.162937 -13117,3309:479,99,-37,0,0,0.170559 -13118,3310:370,100,-37,0,0,0.172354 -13119,3310:371,101,-37,0,0,0.15996 -13120,3310:372,102,-37,0,0,0.170893 -13121,3310:373,103,-37,0,0,0.166927 -13122,3310:374,104,-37,0,0,0.175676 -13123,3310:475,105,-37,0,0,0.181265 -13124,3310:476,106,-37,0,0,0.180853 -13125,3310:477,107,-37,0,0,0.190134 -13126,3310:478,108,-37,0,0,0.190467 -13127,3310:479,109,-37,0,0,0.167241 -13128,3311:370,110,-37,0,0,0.173102 -13129,3311:371,111,-37,0,0,0.20187 -13130,3311:372,112,-37,0,0,0.216047 -13131,3311:373,113,-37,0,0,0.216639 -13132,3311:374,114,-37,0,0,0.202334 -13133,3311:475,115,-37,0,0,0.189329 -13134,3311:476,116,-37,0,0,0.196771 -13135,3311:477,117,-37,0,0,0.201936 -13136,3311:478,118,-37,0,0,0.193543 -13137,3311:479,119,-37,0,0,0.192903 -13138,3312:370,120,-37,0,0,0.211471 -13139,3312:371,121,-37,0,0,0.21711 -13140,3312:372,122,-37,0,0,0.213672 -13141,3312:373,123,-37,0,0,0.213516 -13142,3312:374,124,-37,0,0,0.214156 -13143,3312:475,125,-37,0,0,0.213223 -13144,3312:476,126,-37,0,0,0.210974 -13145,3312:477,127,-37,0,0,0.215091 -13146,3312:478,128,-37,0,0,0.216604 -13147,3312:479,129,-37,0,0,0.214087 -13148,3313:370,130,-37,0,0,0.214259 -13149,3313:371,131,-37,0,0,0.21556 -13150,3313:372,132,-37,0,0,0.214311 -13151,3313:373,133,-37,0,0,0.21238 -13152,3313:374,134,-37,0,0,0.211197 -13153,3313:475,135,-37,0,0,0.212294 -13154,3313:476,136,-37,0,0,0.216988 -13155,3313:477,137,-37,0,0,0.217232 -13156,3313:478,138,-37,0,0,0.211162 -13157,3313:479,139,-37,0,0,0.210478 -13158,3314:370,140,-37,0,0,0.222306 -13159,3314:371,141,-37,0,0,0.220041 -13160,3314:372,142,-37,0,0,0.223552 -13161,3314:373,143,-37,0,0,0.226544 -13162,3314:374,144,-37,0,0,0.231734 -13163,3314:475,145,-37,0,0,0.245564 -13164,3314:476,146,-37,0,0,0.242777 -13165,3314:477,147,-37,0,0,0.219846 -13166,3314:478,148,-37,0,0,0.216621 -13167,3314:479,149,-37,0,0,0.220693 -13168,3315:370,150,-37,0,0,0.232045 -13169,3315:371,151,-37,0,0,0.235912 -13170,3315:372,152,-37,0,0,0.244177 -13171,3315:373,153,-37,0,0,0.242078 -13172,3315:374,154,-37,0,0,0.222981 -13173,3315:475,155,-37,0,0,0.229583 -13174,3315:476,156,-37,0,0,0.223195 -13175,3315:477,157,-37,0,0,0.222057 -13176,3315:478,158,-37,0,0,0.223855 -13177,3315:479,159,-37,0,0,0.229419 -13178,3316:370,160,-37,0,0,0.231022 -13179,3316:371,161,-37,0,0,0.227138 -13180,3316:372,162,-37,0,0,0.232466 -13181,3316:373,163,-37,0,0,0.230383 -13182,3316:374,164,-37,0,0,0.232705 -13183,3316:475,165,-37,0,0,0.234692 -13184,3316:476,166,-37,0,0,0.23532 -13185,3316:477,167,-37,0,0,0.234526 -13186,3316:478,168,-37,0,0,0.244594 -13187,3316:479,169,-37,0,0,0.243079 -13188,3317:370,170,-37,0,0,0.229619 -13189,3317:371,171,-37,0,0,0.201539 -13190,3317:372,172,-37,0,0,0.196885 -13191,3317:373,173,-37,0,0,0.2024 -13192,3317:374,174,-37,0,0,0.201655 -13193,3317:475,175,-37,0,0,0.200549 -13194,3317:476,176,-37,0,0,0.198351 -13195,3317:477,177,-37,0,0,0.195055 -13196,3317:478,178,-37,0,0,0.191531 -13197,3317:479,179,-37,0,0,0.189992 -13198,3318:370,180,-37,0,0,0.190451 -13199,5318:360,-180,-36,0,0,0.22027 -13200,5317:469,-179,-36,0,0,0.222039 -13201,5317:468,-178,-36,0,0,0.223748 -13202,5317:467,-177,-36,0,0,0.227428 -13203,5317:466,-176,-36,0,0,0.22631 -13204,5317:465,-175,-36,0,0,0.223516 -13205,5317:364,-174,-36,0,0,0.226778 -13206,5317:363,-173,-36,0,0,0.242852 -13207,5317:362,-172,-36,0,0,0.237044 -13208,5317:361,-171,-36,0,0,0.244367 -13209,5317:360,-170,-36,0,0,0.253996 -13210,5316:469,-169,-36,0,0,0.262896 -13211,5316:468,-168,-36,0,0,0.252617 -13212,5316:467,-167,-36,0,0,0.249064 -13213,5316:466,-166,-36,0,0,0.251087 -13214,5316:465,-165,-36,0,0,0.25283 -13215,5316:364,-164,-36,0,0,0.251977 -13216,5316:363,-163,-36,0,0,0.25283 -13217,5316:362,-162,-36,0,0,0.257673 -13218,5316:361,-161,-36,0,0,0.258421 -13219,5316:360,-160,-36,0,0,0.258953 -13220,5315:469,-159,-36,0,0,0.258973 -13221,5315:468,-158,-36,0,0,0.260256 -13222,5315:467,-157,-36,0,0,0.265092 -13223,5315:466,-156,-36,0,0,0.267682 -13224,5315:465,-155,-36,0,0,0.268407 -13225,5315:364,-154,-36,0,0,0.268791 -13226,5315:363,-153,-36,0,0,0.272258 -13227,5315:362,-152,-36,0,0,0.27342 -13228,5315:361,-151,-36,0,0,0.270025 -13229,5315:360,-150,-36,0,0,0.268367 -13230,5314:469,-149,-36,0,0,0.272401 -13231,5314:468,-148,-36,0,0,0.270633 -13232,5314:467,-147,-36,0,0,0.270531 -13233,5314:466,-146,-36,0,0,0.270207 -13234,5314:465,-145,-36,0,0,0.268529 -13235,5314:364,-144,-36,0,0,0.269964 -13236,5314:363,-143,-36,0,0,0.274462 -13237,5314:362,-142,-36,0,0,0.275036 -13238,5314:361,-141,-36,0,0,0.272523 -13239,5314:360,-140,-36,0,0,0.272075 -13240,5313:469,-139,-36,0,0,0.269195 -13241,5313:468,-138,-36,0,0,0.264312 -13242,5313:467,-137,-36,0,0,0.260514 -13243,5313:466,-136,-36,0,0,0.260415 -13244,5313:465,-135,-36,0,0,0.258579 -13245,5313:364,-134,-36,0,0,0.257399 -13246,5313:363,-133,-36,0,0,0.25996 -13247,5313:362,-132,-36,0,0,0.261902 -13248,5313:361,-131,-36,0,0,0.258775 -13249,5313:360,-130,-36,0,0,0.255557 -13250,5312:469,-129,-36,0,0,0.255674 -13251,5312:468,-128,-36,0,0,0.260039 -13252,5312:467,-127,-36,0,0,0.263633 -13253,5312:466,-126,-36,0,0,0.261167 -13254,5312:465,-125,-36,0,0,0.26083 -13255,5312:364,-124,-36,0,0,0.259762 -13256,5312:363,-123,-36,0,0,0.259288 -13257,5312:362,-122,-36,0,0,0.256281 -13258,5312:361,-121,-36,0,0,0.253782 -13259,5312:360,-120,-36,0,0,0.252345 -13260,5311:469,-119,-36,0,0,0.247186 -13261,5311:468,-118,-36,0,0,0.248085 -13262,5311:467,-117,-36,0,0,0.244689 -13263,5311:466,-116,-36,0,0,0.24507 -13264,5311:465,-115,-36,0,0,0.243969 -13265,5311:364,-114,-36,0,0,0.241947 -13266,5311:363,-113,-36,0,0,0.232595 -13267,5311:362,-112,-36,0,0,0.233992 -13268,5311:361,-111,-36,0,0,0.2393 -13269,5311:360,-110,-36,0,0,0.230402 -13270,5310:469,-109,-36,0,0,0.225896 -13271,5310:468,-108,-36,0,0,0.22275 -13272,5310:467,-107,-36,0,0,0.223605 -13273,5310:466,-106,-36,0,0,0.226166 -13274,5310:465,-105,-36,0,0,0.221189 -13275,5310:364,-104,-36,0,0,0.219266 -13276,5310:363,-103,-36,0,0,0.222341 -13277,5310:362,-102,-36,0,0,0.214346 -13278,5310:361,-101,-36,0,0,0.215595 -13279,5310:360,-100,-36,0,0,0.219142 -13280,5309:469,-99,-36,0,0,0.219935 -13281,5309:468,-98,-36,0,0,0.216604 -13282,5309:467,-97,-36,0,0,0.213051 -13283,5309:466,-96,-36,0,0,0.210838 -13284,5309:465,-95,-36,0,0,0.211762 -13285,5309:364,-94,-36,0,0,0.213292 -13286,5309:363,-93,-36,0,0,0.215768 -13287,5309:362,-92,-36,0,0,0.216883 -13288,5309:361,-91,-36,0,0,0.211334 -13289,5309:360,-90,-36,0,0,0.216429 -13290,5308:469,-89,-36,0,0,0.214744 -13291,5308:468,-88,-36,0,0,0.211676 -13292,5308:467,-87,-36,0,0,0.212483 -13293,5308:466,-86,-36,0,0,0.209507 -13294,5308:465,-85,-36,0,0,0.21697 -13295,5308:364,-84,-36,0,0,0.214779 -13296,5308:363,-83,-36,0,0,0.211556 -13297,5308:362,-82,-36,0,0,0.212071 -13298,5308:361,-81,-36,0,0,0.215664 -13299,5308:360,-80,-36,0,0,0.216029 -13300,5307:469,-79,-36,0,0,0.2208 -13301,5307:468,-78,-36,0,0,0.220905 -13302,5307:467,-77,-36,0,0,0.219494 -13303,5307:466,-76,-36,0,0,0.218879 -13304,5307:465,-75,-36,0,0,0.230475 -13305,5306:467,-67,-36,0,0,0.25681 -13306,5306:466,-66,-36,0,0,0.251107 -13307,5306:465,-65,-36,0,0,0.253141 -13308,5306:364,-64,-36,0,0,0.249891 -13309,5306:363,-63,-36,0,0,0.243912 -13310,5306:362,-62,-36,0,0,0.247664 -13311,5306:361,-61,-36,0,0,0.246574 -13312,5306:360,-60,-36,0,0,0.220058 -13313,5305:469,-59,-36,0,0,0.186788 -13314,5305:468,-58,-36,0,0,0.214225 -13315,5305:467,-57,-36,0,0,0.264872 -13316,5305:466,-56,-36,0,0,0.28056 -13317,5305:465,-55,-36,0,0,0.305211 -13318,5305:364,-54,-36,0,0,0.342157 -13319,5305:363,-53,-36,0,0,0.349454 -13320,5305:362,-52,-36,0,0,0.300547 -13321,5305:361,-51,-36,0,0,0.279172 -13322,5305:360,-50,-36,0,0,0.243647 -13323,5304:469,-49,-36,0,0,0.233789 -13324,5304:468,-48,-36,0,0,0.235468 -13325,5304:467,-47,-36,0,0,0.235672 -13326,5304:466,-46,-36,0,0,0.22951 -13327,5304:465,-45,-36,0,0,0.222306 -13328,5304:364,-44,-36,0,0,0.217844 -13329,5304:363,-43,-36,0,0,0.214173 -13330,5304:362,-42,-36,0,0,0.210376 -13331,5304:361,-41,-36,0,0,0.210872 -13332,5304:360,-40,-36,0,0,0.210427 -13333,5303:469,-39,-36,0,0,0.200961 -13334,5303:468,-38,-36,0,0,0.202135 -13335,5303:467,-37,-36,0,0,0.200879 -13336,5303:466,-36,-36,0,0,0.193303 -13337,5303:465,-35,-36,0,0,0.186538 -13338,5303:364,-34,-36,0,0,0.182166 -13339,5303:363,-33,-36,0,0,0.19023 -13340,5303:362,-32,-36,0,0,0.189534 -13341,5303:361,-31,-36,0,0,0.176079 -13342,5303:360,-30,-36,0,0,0.172809 -13343,5302:469,-29,-36,0,0,0.185853 -13344,5302:468,-28,-36,0,0,0.178325 -13345,5302:467,-27,-36,0,0,0.178717 -13346,5302:466,-26,-36,0,0,0.193463 -13347,5302:465,-25,-36,0,0,0.178853 -13348,5302:364,-24,-36,0,0,0.195976 -13349,5302:363,-23,-36,0,0,0.199251 -13350,5302:362,-22,-36,0,0,0.209694 -13351,5302:361,-21,-36,0,0,0.208912 -13352,5302:360,-20,-36,0,0,0.200154 -13353,5301:469,-19,-36,0,0,0.17816 -13354,5301:468,-18,-36,0,0,0.198122 -13355,5301:467,-17,-36,0,0,0.18364 -13356,5301:466,-16,-36,0,0,0.162811 -13357,5301:465,-15,-36,0,0,0.169139 -13358,5301:364,-14,-36,0,0,0.171534 -13359,5301:363,-13,-36,0,0,0.172061 -13360,5301:362,-12,-36,0,0,0.187694 -13361,5301:361,-11,-36,0,0,0.184566 -13362,5301:360,-10,-36,0,0,0.181707 -13363,5300:469,-9,-36,0,0,0.182136 -13364,5300:468,-8,-36,0,0,0.18985 -13365,5300:467,-7,-36,0,0,0.193383 -13366,5300:466,-6,-36,0,0,0.19034 -13367,5300:465,-5,-36,0,0,0.197275 -13368,5300:364,-4,-36,0,0,0.187835 -13369,5300:363,-3,-36,0,0,0.184891 -13370,5300:362,-2,-36,0,0,0.203497 -13371,5300:361,-1,-36,0,0,0.198236 -13372,3300:361,0,-36,0,0,0.189882 -13373,3300:361,1,-36,0,0,0.19142 -13374,3300:362,2,-36,0,0,0.187835 -13375,3300:363,3,-36,0,0,0.174963 -13376,3300:364,4,-36,0,0,0.176242 -13377,3300:465,5,-36,0,0,0.180033 -13378,3300:466,6,-36,0,0,0.173854 -13379,3300:467,7,-36,0,0,0.183194 -13380,3300:468,8,-36,0,0,0.193575 -13381,3300:469,9,-36,0,0,0.200483 -13382,3301:360,10,-36,0,0,0.19372 -13383,3301:361,11,-36,0,0,0.17005 -13384,3301:362,12,-36,0,0,0.167227 -13385,3301:363,13,-36,0,0,0.182902 -13386,3301:364,14,-36,0,0,0.184164 -13387,3301:465,15,-36,0,0,0.176138 -13388,3301:466,16,-36,0,0,0.175899 -13389,3301:467,17,-36,0,0,0.17325 -13390,3301:468,18,-36,0,0,0.157054 -13391,3301:469,19,-36,0,0,0.149809 -13392,3302:360,20,-36,0,0,0.155146 -13393,3302:361,21,-36,0,0,0.164103 -13394,3302:362,22,-36,0,0,0.163399 -13395,3302:363,23,-36,0,0,0.165617 -13396,3302:364,24,-36,0,0,0.178325 -13397,3302:465,25,-36,0,0,0.173132 -13398,3302:466,26,-36,0,0,0.180914 -13399,3302:467,27,-36,0,0,0.183363 -13400,3302:468,28,-36,0,0,0.173014 -13401,3302:469,29,-36,0,0,0.165418 -13402,3303:360,30,-36,0,0,0.190435 -13403,3303:361,31,-36,0,0,0.185589 -13404,3303:362,32,-36,0,0,0.172442 -13405,3303:363,33,-36,0,0,0.171958 -13406,3303:364,34,-36,0,0,0.171724 -13407,3303:465,35,-36,0,0,0.173559 -13408,3303:466,36,-36,0,0,0.167614 -13409,3303:467,37,-36,0,0,0.160582 -13410,3303:468,38,-36,0,0,0.160804 -13411,3303:469,39,-36,0,0,0.16354 -13412,3304:360,40,-36,0,0,0.16687 -13413,3304:361,41,-36,0,0,0.177739 -13414,3304:362,42,-36,0,0,0.169081 -13415,3304:363,43,-36,0,0,0.167413 -13416,3304:364,44,-36,0,0,0.164922 -13417,3304:465,45,-36,0,0,0.162419 -13418,3304:466,46,-36,0,0,0.158804 -13419,3304:467,47,-36,0,0,0.149299 -13420,3304:468,48,-36,0,0,0.141901 -13421,3304:469,49,-36,0,0,0.147663 -13422,3305:360,50,-36,0,0,0.141726 -13423,3305:361,51,-36,0,0,0.141276 -13424,3305:362,52,-36,0,0,0.136569 -13425,3305:363,53,-36,0,0,0.141926 -13426,3305:364,54,-36,0,0,0.148791 -13427,3305:465,55,-36,0,0,0.155416 -13428,3305:466,56,-36,0,0,0.195507 -13429,3305:467,57,-36,0,0,0.170399 -13430,3305:468,58,-36,0,0,0.163245 -13431,3305:469,59,-36,0,0,0.203797 -13432,3306:360,60,-36,0,0,0.226112 -13433,3306:361,61,-36,0,0,0.202699 -13434,3306:362,62,-36,0,0,0.207253 -13435,3306:363,63,-36,0,0,0.148609 -13436,3306:364,64,-36,0,0,0.16717 -13437,3306:465,65,-36,0,0,0.188322 -13438,3306:466,66,-36,0,0,0.146156 -13439,3306:467,67,-36,0,0,0.135278 -13440,3306:468,68,-36,0,0,0.141226 -13441,3306:469,69,-36,0,0,0.151479 -13442,3307:360,70,-36,0,0,0.162447 -13443,3307:361,71,-36,0,0,0.181601 -13444,3307:362,72,-36,0,0,0.198907 -13445,3307:364,74,-36,0,0,0.238459 -13446,3307:465,75,-36,0,0,0.238571 -13447,3307:466,76,-36,0,0,0.211008 -13448,3307:467,77,-36,0,0,0.197503 -13449,3307:468,78,-36,0,0,0.200499 -13450,3307:469,79,-36,0,0,0.196252 -13451,3308:360,80,-36,0,0,0.192583 -13452,3308:361,81,-36,0,0,0.196106 -13453,3308:362,82,-36,0,0,0.19417 -13454,3308:363,83,-36,0,0,0.205436 -13455,3308:364,84,-36,0,0,0.198792 -13456,3308:465,85,-36,0,0,0.191992 -13457,3308:466,86,-36,0,0,0.199415 -13458,3308:467,87,-36,0,0,0.211265 -13459,3308:468,88,-36,0,0,0.204749 -13460,3308:469,89,-36,0,0,0.195944 -13461,3309:360,90,-36,0,0,0.187084 -13462,3309:361,91,-36,0,0,0.184891 -13463,3309:362,92,-36,0,0,0.186632 -13464,3309:363,93,-36,0,0,0.184535 -13465,3309:364,94,-36,0,0,0.176064 -13466,3309:465,95,-36,0,0,0.171783 -13467,3309:466,96,-36,0,0,0.175453 -13468,3309:467,97,-36,0,0,0.175646 -13469,3309:468,98,-36,0,0,0.163484 -13470,3309:469,99,-36,0,0,0.176855 -13471,3310:360,100,-36,0,0,0.191133 -13472,3310:361,101,-36,0,0,0.174563 -13473,3310:362,102,-36,0,0,0.173957 -13474,3310:363,103,-36,0,0,0.184365 -13475,3310:364,104,-36,0,0,0.18096 -13476,3310:465,105,-36,0,0,0.17831 -13477,3310:466,106,-36,0,0,0.182733 -13478,3310:467,107,-36,0,0,0.221366 -13479,3310:468,108,-36,0,0,0.218387 -13480,3310:469,109,-36,0,0,0.192503 -13481,3311:360,110,-36,0,0,0.217267 -13482,3311:361,111,-36,0,0,0.217127 -13483,3311:362,112,-36,0,0,0.213793 -13484,3311:363,113,-36,0,0,0.214242 -13485,3311:364,114,-36,0,0,0.212002 -13486,3311:465,115,-36,0,0,0.208709 -13487,3311:466,116,-36,0,0,0.223337 -13488,3311:467,117,-36,0,0,0.222946 -13489,3311:468,118,-36,0,0,0.221454 -13490,3311:469,119,-36,0,0,0.217145 -13491,3312:360,120,-36,0,0,0.218019 -13492,3312:361,121,-36,0,0,0.221366 -13493,3312:362,122,-36,0,0,0.218317 -13494,3312:363,123,-36,0,0,0.21636 -13495,3312:364,124,-36,0,0,0.216883 -13496,3312:465,125,-36,0,0,0.217879 -13497,3312:466,126,-36,0,0,0.22057 -13498,3312:467,127,-36,0,0,0.222537 -13499,3312:468,128,-36,0,0,0.22373 -13500,3312:469,129,-36,0,0,0.223071 -13501,3313:360,130,-36,0,0,0.219617 -13502,3313:361,131,-36,0,0,0.219424 -13503,3313:362,132,-36,0,0,0.219213 -13504,3313:363,133,-36,0,0,0.218177 -13505,3313:364,134,-36,0,0,0.219565 -13506,3313:465,135,-36,0,0,0.222039 -13507,3313:466,136,-36,0,0,0.220517 -13508,3313:467,137,-36,0,0,0.219142 -13509,3313:468,138,-36,0,0,0.22482 -13510,3313:469,139,-36,0,0,0.231204 -13511,3314:360,140,-36,0,0,0.235006 -13512,3314:361,141,-36,0,0,0.253821 -13513,3314:362,142,-36,0,0,0.256574 -13514,3314:363,143,-36,0,0,0.240687 -13515,3314:364,144,-36,0,0,0.234582 -13516,3314:465,145,-36,0,0,0.25583 -13517,3314:466,146,-36,0,0,0.259624 -13518,3314:467,147,-36,0,0,0.260395 -13519,3314:468,148,-36,0,0,0.291978 -13520,3314:469,149,-36,0,0,0.278202 -13521,3315:360,150,-36,0,0,0.266556 -13522,3315:361,151,-36,0,0,0.258362 -13523,3315:362,152,-36,0,0,0.252093 -13524,3315:363,153,-36,0,0,0.236932 -13525,3315:364,154,-36,0,0,0.23671 -13526,3315:465,155,-36,0,0,0.238403 -13527,3315:466,156,-36,0,0,0.236765 -13528,3315:467,157,-36,0,0,0.241099 -13529,3315:468,158,-36,0,0,0.242588 -13530,3315:469,159,-36,0,0,0.241062 -13531,3316:360,160,-36,0,0,0.241758 -13532,3316:361,161,-36,0,0,0.237825 -13533,3316:362,162,-36,0,0,0.242381 -13534,3316:363,163,-36,0,0,0.246975 -13535,3316:364,164,-36,0,0,0.251242 -13536,3316:465,165,-36,0,0,0.250065 -13537,3316:466,166,-36,0,0,0.247836 -13538,3317:361,171,-36,0,0,0.248162 -13539,3317:362,172,-36,0,0,0.204917 -13540,3317:363,173,-36,0,0,0.20485 -13541,3317:364,174,-36,0,0,0.209541 -13542,3317:465,175,-36,0,0,0.212604 -13543,3317:466,176,-36,0,0,0.207067 -13544,3317:467,177,-36,0,0,0.204114 -13545,3317:468,178,-36,0,0,0.206427 -13546,3317:469,179,-36,0,0,0.21381 -13547,3318:360,180,-36,0,0,0.22027 -13548,5318:350,-180,-35,0,0,0.216412 -13549,5317:459,-179,-35,0,0,0.223766 -13550,5317:458,-178,-35,0,0,0.230056 -13551,5317:457,-177,-35,0,0,0.236042 -13552,5317:456,-176,-35,0,0,0.242418 -13553,5317:455,-175,-35,0,0,0.235246 -13554,5317:354,-174,-35,0,0,0.234858 -13555,5317:353,-173,-35,0,0,0.281016 -13556,5317:352,-172,-35,0,0,0.282972 -13557,5317:351,-171,-35,0,0,0.26867 -13558,5317:350,-170,-35,0,0,0.246861 -13559,5316:459,-169,-35,0,0,0.260692 -13560,5316:458,-168,-35,0,0,0.270126 -13561,5316:457,-167,-35,0,0,0.257713 -13562,5316:456,-166,-35,0,0,0.258343 -13563,5316:455,-165,-35,0,0,0.262398 -13564,5316:354,-164,-35,0,0,0.263633 -13565,5316:353,-163,-35,0,0,0.263234 -13566,5316:352,-162,-35,0,0,0.264512 -13567,5316:351,-161,-35,0,0,0.266455 -13568,5316:350,-160,-35,0,0,0.269094 -13569,5315:459,-159,-35,0,0,0.269276 -13570,5315:458,-158,-35,0,0,0.27116 -13571,5315:457,-157,-35,0,0,0.276657 -13572,5315:456,-156,-35,0,0,0.281577 -13573,5315:455,-155,-35,0,0,0.284621 -13574,5315:354,-154,-35,0,0,0.285836 -13575,5315:353,-153,-35,0,0,0.286781 -13576,5315:352,-152,-35,0,0,0.284496 -13577,5315:351,-151,-35,0,0,0.281286 -13578,5315:350,-150,-35,0,0,0.28412 -13579,5314:459,-149,-35,0,0,0.289584 -13580,5314:458,-148,-35,0,0,0.28933 -13581,5314:457,-147,-35,0,0,0.285459 -13582,5314:456,-146,-35,0,0,0.287728 -13583,5314:455,-145,-35,0,0,0.291215 -13584,5314:354,-144,-35,0,0,0.294406 -13585,5314:353,-143,-35,0,0,0.294555 -13586,5314:352,-142,-35,0,0,0.293808 -13587,5314:351,-141,-35,0,0,0.290642 -13588,5314:350,-140,-35,0,0,0.288507 -13589,5313:459,-139,-35,0,0,0.286823 -13590,5313:458,-138,-35,0,0,0.281245 -13591,5313:457,-137,-35,0,0,0.276267 -13592,5313:456,-136,-35,0,0,0.274688 -13593,5313:455,-135,-35,0,0,0.276637 -13594,5313:354,-134,-35,0,0,0.276739 -13595,5313:353,-133,-35,0,0,0.276739 -13596,5313:352,-132,-35,0,0,0.27524 -13597,5313:351,-131,-35,0,0,0.274462 -13598,5313:350,-130,-35,0,0,0.278367 -13599,5312:459,-129,-35,0,0,0.27847 -13600,5312:458,-128,-35,0,0,0.276616 -13601,5312:457,-127,-35,0,0,0.278057 -13602,5312:456,-126,-35,0,0,0.277357 -13603,5312:455,-125,-35,0,0,0.276677 -13604,5312:354,-124,-35,0,0,0.273849 -13605,5312:353,-123,-35,0,0,0.273012 -13606,5312:352,-122,-35,0,0,0.271384 -13607,5312:351,-121,-35,0,0,0.268488 -13608,5312:350,-120,-35,0,0,0.264432 -13609,5311:459,-119,-35,0,0,0.263733 -13610,5311:458,-118,-35,0,0,0.26212 -13611,5311:457,-117,-35,0,0,0.258263 -13612,5311:456,-116,-35,0,0,0.256732 -13613,5311:455,-115,-35,0,0,0.260474 -13614,5311:354,-114,-35,0,0,0.257261 -13615,5311:353,-113,-35,0,0,0.24709 -13616,5311:352,-112,-35,0,0,0.248124 -13617,5311:351,-111,-35,0,0,0.252345 -13618,5311:350,-110,-35,0,0,0.253568 -13619,5310:459,-109,-35,0,0,0.246784 -13620,5310:458,-108,-35,0,0,0.241495 -13621,5310:457,-107,-35,0,0,0.236672 -13622,5310:456,-106,-35,0,0,0.234932 -13623,5310:455,-105,-35,0,0,0.235801 -13624,5310:354,-104,-35,0,0,0.231149 -13625,5310:353,-103,-35,0,0,0.234342 -13626,5310:352,-102,-35,0,0,0.228712 -13627,5310:351,-101,-35,0,0,0.228259 -13628,5310:350,-100,-35,0,0,0.229038 -13629,5309:459,-99,-35,0,0,0.230292 -13630,5309:458,-98,-35,0,0,0.228277 -13631,5309:457,-97,-35,0,0,0.228585 -13632,5309:456,-96,-35,0,0,0.232595 -13633,5309:455,-95,-35,0,0,0.226778 -13634,5309:354,-94,-35,0,0,0.222217 -13635,5309:353,-93,-35,0,0,0.225035 -13636,5309:352,-92,-35,0,0,0.229419 -13637,5309:351,-91,-35,0,0,0.227698 -13638,5309:350,-90,-35,0,0,0.225071 -13639,5308:459,-89,-35,0,0,0.221224 -13640,5308:458,-88,-35,0,0,0.221012 -13641,5308:457,-87,-35,0,0,0.223801 -13642,5308:456,-86,-35,0,0,0.225107 -13643,5308:455,-85,-35,0,0,0.223284 -13644,5308:354,-84,-35,0,0,0.222555 -13645,5308:353,-83,-35,0,0,0.21858 -13646,5308:352,-82,-35,0,0,0.222128 -13647,5308:351,-81,-35,0,0,0.223498 -13648,5308:350,-80,-35,0,0,0.225018 -13649,5307:459,-79,-35,0,0,0.227626 -13650,5307:458,-78,-35,0,0,0.228639 -13651,5307:457,-77,-35,0,0,0.230201 -13652,5307:456,-76,-35,0,0,0.229383 -13653,5307:455,-75,-35,0,0,0.23988 -13654,5306:455,-65,-35,0,0,0.269883 -13655,5306:354,-64,-35,0,0,0.267199 -13656,5306:353,-63,-35,0,0,0.266576 -13657,5306:352,-62,-35,0,0,0.267259 -13658,5306:351,-61,-35,0,0,0.264932 -13659,5306:350,-60,-35,0,0,0.233605 -13660,5305:459,-59,-35,0,0,0.196544 -13661,5305:458,-58,-35,0,0,0.249853 -13662,5305:457,-57,-35,0,0,0.275425 -13663,5305:456,-56,-35,0,0,0.275691 -13664,5305:455,-55,-35,0,0,0.313353 -13665,5305:354,-54,-35,0,0,0.335413 -13666,5305:353,-53,-35,0,0,0.321478 -13667,5305:352,-52,-35,0,0,0.286886 -13668,5305:351,-51,-35,0,0,0.25353 -13669,5305:350,-50,-35,0,0,0.244784 -13670,5304:459,-49,-35,0,0,0.244879 -13671,5304:458,-48,-35,0,0,0.250219 -13672,5304:457,-47,-35,0,0,0.238757 -13673,5304:456,-46,-35,0,0,0.234286 -13674,5304:455,-45,-35,0,0,0.227319 -13675,5304:354,-44,-35,0,0,0.220587 -13676,5304:353,-43,-35,0,0,0.216778 -13677,5304:352,-42,-35,0,0,0.214623 -13678,5304:351,-41,-35,0,0,0.212449 -13679,5304:350,-40,-35,0,0,0.212724 -13680,5303:459,-39,-35,0,0,0.208284 -13681,5303:458,-38,-35,0,0,0.20495 -13682,5303:457,-37,-35,0,0,0.199563 -13683,5303:456,-36,-35,0,0,0.197959 -13684,5303:455,-35,-35,0,0,0.195588 -13685,5303:354,-34,-35,0,0,0.196836 -13686,5303:353,-33,-35,0,0,0.189676 -13687,5303:352,-32,-35,0,0,0.184969 -13688,5303:351,-31,-35,0,0,0.181265 -13689,5303:350,-30,-35,0,0,0.197438 -13690,5302:459,-29,-35,0,0,0.219653 -13691,5302:458,-28,-35,0,0,0.208369 -13692,5302:457,-27,-35,0,0,0.206949 -13693,5302:456,-26,-35,0,0,0.211111 -13694,5302:455,-25,-35,0,0,0.195281 -13695,5302:354,-24,-35,0,0,0.204231 -13696,5302:353,-23,-35,0,0,0.220393 -13697,5302:352,-22,-35,0,0,0.228187 -13698,5302:351,-21,-35,0,0,0.216099 -13699,5302:350,-20,-35,0,0,0.211848 -13700,5301:459,-19,-35,0,0,0.211882 -13701,5301:458,-18,-35,0,0,0.207743 -13702,5301:457,-17,-35,0,0,0.206679 -13703,5301:456,-16,-35,0,0,0.17816 -13704,5301:455,-15,-35,0,0,0.170631 -13705,5301:354,-14,-35,0,0,0.199365 -13706,5301:353,-13,-35,0,0,0.218072 -13707,5301:352,-12,-35,0,0,0.234102 -13708,5301:351,-11,-35,0,0,0.230056 -13709,5301:350,-10,-35,0,0,0.228349 -13710,5300:459,-9,-35,0,0,0.242343 -13711,5300:458,-8,-35,0,0,0.236246 -13712,5300:457,-7,-35,0,0,0.237025 -13713,5300:456,-6,-35,0,0,0.226418 -13714,5300:455,-5,-35,0,0,0.209031 -13715,5300:354,-4,-35,0,0,0.210155 -13716,5300:353,-3,-35,0,0,0.224838 -13717,5300:352,-2,-35,0,0,0.227283 -13718,5300:351,-1,-35,0,0,0.218072 -13719,3300:351,0,-35,0,0,0.218089 -13720,3300:351,1,-35,0,0,0.220729 -13721,3300:352,2,-35,0,0,0.219829 -13722,3300:353,3,-35,0,0,0.217512 -13723,3300:354,4,-35,0,0,0.211162 -13724,3300:455,5,-35,0,0,0.199907 -13725,3300:456,6,-35,0,0,0.188699 -13726,3300:457,7,-35,0,0,0.193672 -13727,3300:458,8,-35,0,0,0.197112 -13728,3300:459,9,-35,0,0,0.205788 -13729,3301:350,10,-35,0,0,0.197584 -13730,3301:351,11,-35,0,0,0.189093 -13731,3301:352,12,-35,0,0,0.193639 -13732,3301:353,13,-35,0,0,0.21106 -13733,3301:354,14,-35,0,0,0.195265 -13734,3301:455,15,-35,0,0,0.209116 -13735,3301:456,16,-35,0,0,0.221561 -13736,3301:457,17,-35,0,0,0.202218 -13737,3301:458,18,-35,0,0,0.200105 -13738,3301:459,19,-35,0,0,0.210547 -13739,3302:350,20,-35,0,0,0.204465 -13740,3302:351,21,-35,0,0,0.195152 -13741,3302:352,22,-35,0,0,0.217564 -13742,3302:353,23,-35,0,0,0.229655 -13743,3302:354,24,-35,0,0,0.188605 -13744,3302:455,25,-35,0,0,0.187585 -13745,3302:456,26,-35,0,0,0.195669 -13746,3302:457,27,-35,0,0,0.19708 -13747,3302:458,28,-35,0,0,0.200253 -13748,3302:459,29,-35,0,0,0.187131 -13749,3303:350,30,-35,0,0,0.202516 -13750,3303:351,31,-35,0,0,0.225879 -13751,3303:352,32,-35,0,0,0.223569 -13752,3303:353,33,-35,0,0,0.202782 -13753,3303:354,34,-35,0,0,0.189109 -13754,3303:455,35,-35,0,0,0.18604 -13755,3303:456,36,-35,0,0,0.187053 -13756,3303:457,37,-35,0,0,0.182657 -13757,3303:458,38,-35,0,0,0.1769 -13758,3303:459,39,-35,0,0,0.174297 -13759,3304:350,40,-35,0,0,0.179321 -13760,3304:351,41,-35,0,0,0.182258 -13761,3304:352,42,-35,0,0,0.172236 -13762,3304:353,43,-35,0,0,0.168735 -13763,3304:354,44,-35,0,0,0.167084 -13764,3304:455,45,-35,0,0,0.162852 -13765,3304:456,46,-35,0,0,0.155416 -13766,3304:457,47,-35,0,0,0.147495 -13767,3304:458,48,-35,0,0,0.1496 -13768,3304:459,49,-35,0,0,0.152751 -13769,3305:350,50,-35,0,0,0.145032 -13770,3305:351,51,-35,0,0,0.144142 -13771,3305:352,52,-35,0,0,0.156674 -13772,3305:353,53,-35,0,0,0.162251 -13773,3305:354,54,-35,0,0,0.17973 -13774,3305:455,55,-35,0,0,0.178747 -13775,3305:456,56,-35,0,0,0.180321 -13776,3305:457,57,-35,0,0,0.240743 -13777,3305:458,58,-35,0,0,0.253024 -13778,3305:459,59,-35,0,0,0.279938 -13779,3306:350,60,-35,0,0,0.292744 -13780,3306:351,61,-35,0,0,0.278408 -13781,3306:352,62,-35,0,0,0.227175 -13782,3306:353,63,-35,0,0,0.236598 -13783,3306:354,64,-35,0,0,0.263534 -13784,3306:455,65,-35,0,0,0.270085 -13785,3306:456,66,-35,0,0,0.204632 -13786,3306:457,67,-35,0,0,0.205318 -13787,3306:458,68,-35,0,0,0.262458 -13788,3306:459,69,-35,0,0,0.271221 -13789,3307:350,70,-35,0,0,0.269822 -13790,3307:351,71,-35,0,0,0.26087 -13791,3307:352,72,-35,0,0,0.231387 -13792,3307:354,74,-35,0,0,0.25583 -13793,3307:455,75,-35,0,0,0.255205 -13794,3307:456,76,-35,0,0,0.221047 -13795,3307:457,77,-35,0,0,0.21556 -13796,3307:458,78,-35,0,0,0.228929 -13797,3307:459,79,-35,0,0,0.240574 -13798,3308:350,80,-35,0,0,0.235376 -13799,3308:351,81,-35,0,0,0.235394 -13800,3308:352,82,-35,0,0,0.229074 -13801,3308:353,83,-35,0,0,0.214519 -13802,3308:354,84,-35,0,0,0.209048 -13803,3308:455,85,-35,0,0,0.217284 -13804,3308:456,86,-35,0,0,0.230056 -13805,3308:457,87,-35,0,0,0.213344 -13806,3308:458,88,-35,0,0,0.20557 -13807,3308:459,89,-35,0,0,0.201258 -13808,3309:350,90,-35,0,0,0.195847 -13809,3309:351,91,-35,0,0,0.19609 -13810,3309:352,92,-35,0,0,0.195184 -13811,3309:353,93,-35,0,0,0.195523 -13812,3309:354,94,-35,0,0,0.192519 -13813,3309:455,95,-35,0,0,0.187616 -13814,3309:456,96,-35,0,0,0.200335 -13815,3309:457,97,-35,0,0,0.207405 -13816,3309:458,98,-35,0,0,0.216168 -13817,3309:459,99,-35,0,0,0.238497 -13818,3310:350,100,-35,0,0,0.236932 -13819,3310:351,101,-35,0,0,0.1938 -13820,3310:352,102,-35,0,0,0.190261 -13821,3310:353,103,-35,0,0,0.229837 -13822,3310:354,104,-35,0,0,0.228187 -13823,3310:455,105,-35,0,0,0.205402 -13824,3310:456,106,-35,0,0,0.207422 -13825,3310:457,107,-35,0,0,0.229456 -13826,3310:458,108,-35,0,0,0.207709 -13827,3310:459,109,-35,0,0,0.202384 -13828,3311:350,110,-35,0,0,0.230657 -13829,3311:351,111,-35,0,0,0.220287 -13830,3311:352,112,-35,0,0,0.214311 -13831,3311:353,113,-35,0,0,0.220835 -13832,3311:354,114,-35,0,0,0.225233 -13833,3311:455,115,-35,0,0,0.227283 -13834,3311:456,116,-35,0,0,0.226634 -13835,3311:457,117,-35,0,0,0.224194 -13836,3311:458,118,-35,0,0,0.222537 -13837,3311:459,119,-35,0,0,0.222395 -13838,3312:350,120,-35,0,0,0.223534 -13839,3312:351,121,-35,0,0,0.228241 -13840,3312:352,122,-35,0,0,0.224337 -13841,3312:353,123,-35,0,0,0.22332 -13842,3312:354,124,-35,0,0,0.224856 -13843,3312:455,125,-35,0,0,0.226076 -13844,3312:456,126,-35,0,0,0.227879 -13845,3312:457,127,-35,0,0,0.228385 -13846,3312:458,128,-35,0,0,0.228802 -13847,3312:459,129,-35,0,0,0.231095 -13848,3313:350,130,-35,0,0,0.229655 -13849,3313:351,131,-35,0,0,0.228984 -13850,3313:352,132,-35,0,0,0.229456 -13851,3313:353,133,-35,0,0,0.227987 -13852,3313:354,134,-35,0,0,0.227861 -13853,3313:455,135,-35,0,0,0.227085 -13854,3313:456,136,-35,0,0,0.229437 -13855,3313:457,137,-35,0,0,0.227933 -13856,3313:458,138,-35,0,0,0.229819 -13857,3313:459,139,-35,0,0,0.238142 -13858,3314:350,140,-35,0,0,0.240762 -13859,3314:351,141,-35,0,0,0.264952 -13860,3314:352,142,-35,0,0,0.260613 -13861,3314:353,143,-35,0,0,0.254367 -13862,3314:354,144,-35,0,0,0.257673 -13863,3314:455,145,-35,0,0,0.261108 -13864,3314:456,146,-35,0,0,0.271018 -13865,3314:457,147,-35,0,0,0.290939 -13866,3314:458,148,-35,0,0,0.309146 -13867,3314:459,149,-35,0,0,0.270937 -13868,3315:350,150,-35,0,0,0.261386 -13869,3315:351,151,-35,0,0,0.258362 -13870,3315:352,152,-35,0,0,0.253646 -13871,3315:353,153,-35,0,0,0.255596 -13872,3315:354,154,-35,0,0,0.263514 -13873,3315:455,155,-35,0,0,0.263195 -13874,3315:456,156,-35,0,0,0.259367 -13875,3315:457,157,-35,0,0,0.258008 -13876,3315:458,158,-35,0,0,0.255576 -13877,3315:459,159,-35,0,0,0.255909 -13878,3316:350,160,-35,0,0,0.262955 -13879,3316:351,161,-35,0,0,0.257792 -13880,3316:352,162,-35,0,0,0.255928 -13881,3316:353,163,-35,0,0,0.263075 -13882,3316:354,164,-35,0,0,0.263234 -13883,3316:455,165,-35,0,0,0.262578 -13884,3316:456,166,-35,0,0,0.265312 -13885,3316:457,167,-35,0,0,0.266335 -13886,3317:352,172,-35,0,0,0.238608 -13887,3317:353,173,-35,0,0,0.223498 -13888,3317:354,174,-35,0,0,0.218072 -13890,3317:456,176,-35,0,0,0.221951 -13891,3317:457,177,-35,0,0,0.215508 -13892,3317:458,178,-35,0,0,0.214848 -13893,3317:459,179,-35,0,0,0.213879 -13894,3318:350,180,-35,0,0,0.216412 -13895,5318:140,-180,-34,0,0,0.260039 -13896,5317:249,-179,-34,0,0,0.252694 -13897,5317:248,-178,-34,0,0,0.262001 -13898,5317:247,-177,-34,0,0,0.263334 -13899,5317:246,-176,-34,0,0,0.259466 -13900,5317:245,-175,-34,0,0,0.250933 -13901,5317:144,-174,-34,0,0,0.27816 -13902,5317:143,-173,-34,0,0,0.296394 -13903,5317:142,-172,-34,0,0,0.28164 -13904,5317:141,-171,-34,0,0,0.280809 -13905,5317:140,-170,-34,0,0,0.274503 -13906,5316:249,-169,-34,0,0,0.274974 -13907,5316:248,-168,-34,0,0,0.271445 -13908,5316:247,-167,-34,0,0,0.267763 -13909,5316:246,-166,-34,0,0,0.275917 -13910,5316:245,-165,-34,0,0,0.273788 -13911,5316:144,-164,-34,0,0,0.275118 -13912,5316:143,-163,-34,0,0,0.273951 -13913,5316:142,-162,-34,0,0,0.27604 -13914,5316:141,-161,-34,0,0,0.278449 -13915,5316:140,-160,-34,0,0,0.280809 -13916,5315:249,-159,-34,0,0,0.283305 -13917,5315:248,-158,-34,0,0,0.285417 -13918,5315:247,-157,-34,0,0,0.292 -13919,5315:246,-156,-34,0,0,0.296266 -13920,5315:245,-155,-34,0,0,0.300806 -13921,5315:144,-154,-34,0,0,0.302646 -13922,5315:143,-153,-34,0,0,0.300201 -13923,5315:142,-152,-34,0,0,0.297081 -13924,5315:141,-151,-34,0,0,0.296866 -13925,5315:140,-150,-34,0,0,0.302624 -13926,5314:249,-149,-34,0,0,0.306497 -13927,5314:248,-148,-34,0,0,0.304448 -13928,5314:247,-147,-34,0,0,0.305232 -13929,5314:246,-146,-34,0,0,0.313552 -13930,5314:245,-145,-34,0,0,0.311499 -13931,5314:144,-144,-34,0,0,0.308883 -13932,5314:143,-143,-34,0,0,0.308905 -13933,5314:142,-142,-34,0,0,0.309497 -13934,5314:141,-141,-34,0,0,0.306192 -13935,5314:140,-140,-34,0,0,0.305865 -13936,5313:249,-139,-34,0,0,0.30484 -13937,5313:248,-138,-34,0,0,0.300589 -13938,5313:247,-137,-34,0,0,0.297424 -13939,5313:246,-136,-34,0,0,0.295666 -13940,5313:245,-135,-34,0,0,0.295559 -13941,5313:144,-134,-34,0,0,0.292339 -13942,5313:143,-133,-34,0,0,0.289521 -13943,5313:142,-132,-34,0,0,0.293297 -13944,5313:141,-131,-34,0,0,0.290113 -13945,5313:140,-130,-34,0,0,0.291639 -13946,5312:249,-129,-34,0,0,0.29096 -13947,5312:248,-128,-34,0,0,0.295175 -13948,5312:247,-127,-34,0,0,0.295859 -13949,5312:246,-126,-34,0,0,0.298735 -13950,5312:245,-125,-34,0,0,0.296266 -13951,5312:144,-124,-34,0,0,0.292319 -13952,5312:143,-123,-34,0,0,0.290769 -13953,5312:142,-122,-34,0,0,0.286949 -13954,5312:141,-121,-34,0,0,0.28366 -13955,5312:140,-120,-34,0,0,0.284224 -13956,5311:249,-119,-34,0,0,0.278945 -13957,5311:248,-118,-34,0,0,0.27878 -13958,5311:247,-117,-34,0,0,0.27238 -13959,5311:246,-116,-34,0,0,0.268266 -13960,5311:245,-115,-34,0,0,0.268973 -13961,5311:144,-114,-34,0,0,0.275261 -13962,5311:143,-113,-34,0,0,0.270754 -13963,5311:142,-112,-34,0,0,0.268206 -13964,5311:141,-111,-34,0,0,0.263953 -13965,5311:140,-110,-34,0,0,0.262518 -13966,5310:249,-109,-34,0,0,0.259821 -13967,5310:248,-108,-34,0,0,0.255596 -13968,5310:247,-107,-34,0,0,0.25159 -13969,5310:246,-106,-34,0,0,0.247626 -13970,5310:245,-105,-34,0,0,0.243666 -13971,5310:144,-104,-34,0,0,0.243685 -13972,5310:143,-103,-34,0,0,0.250354 -13973,5310:142,-102,-34,0,0,0.248565 -13974,5310:141,-101,-34,0,0,0.245393 -13975,5310:140,-100,-34,0,0,0.245754 -13976,5309:249,-99,-34,0,0,0.242777 -13977,5309:248,-98,-34,0,0,0.238571 -13978,5309:247,-97,-34,0,0,0.244158 -13979,5309:246,-96,-34,0,0,0.244557 -13980,5309:245,-95,-34,0,0,0.249064 -13981,5309:144,-94,-34,0,0,0.244367 -13982,5309:143,-93,-34,0,0,0.236858 -13983,5309:142,-92,-34,0,0,0.242381 -13984,5309:141,-91,-34,0,0,0.237974 -13985,5309:140,-90,-34,0,0,0.244405 -13986,5308:249,-89,-34,0,0,0.238739 -13987,5308:248,-88,-34,0,0,0.235986 -13988,5308:247,-87,-34,0,0,0.241608 -13989,5308:246,-86,-34,0,0,0.238384 -13990,5308:245,-85,-34,0,0,0.236877 -13991,5308:144,-84,-34,0,0,0.241721 -13992,5308:143,-83,-34,0,0,0.233605 -13993,5308:142,-82,-34,0,0,0.236209 -13994,5308:141,-81,-34,0,0,0.236784 -13995,5308:140,-80,-34,0,0,0.236839 -13996,5307:249,-79,-34,0,0,0.23645 -13997,5307:248,-78,-34,0,0,0.238926 -13998,5307:247,-77,-34,0,0,0.241175 -13999,5307:246,-76,-34,0,0,0.240123 -14000,5307:245,-75,-34,0,0,0.245259 -14001,5307:144,-74,-34,0,0,0.257693 -14002,5306:245,-65,-34,0,0,0.299489 -14003,5306:144,-64,-34,0,0,0.294876 -14004,5306:143,-63,-34,0,0,0.29007 -14005,5306:142,-62,-34,0,0,0.286949 -14006,5306:141,-61,-34,0,0,0.287622 -14007,5306:140,-60,-34,0,0,0.282471 -14008,5305:249,-59,-34,0,0,0.216726 -14009,5305:248,-58,-34,0,0,0.247033 -14010,5305:247,-57,-34,0,0,0.276698 -14011,5305:246,-56,-34,0,0,0.282972 -14012,5305:245,-55,-34,0,0,0.312668 -14013,5305:144,-54,-34,0,0,0.349688 -14014,5305:143,-53,-34,0,0,0.271343 -14015,5305:142,-52,-34,0,0,0.289077 -14016,5305:141,-51,-34,0,0,0.288929 -14017,5305:140,-50,-34,0,0,0.265833 -14018,5304:249,-49,-34,0,0,0.256065 -14019,5304:248,-48,-34,0,0,0.253977 -14020,5304:247,-47,-34,0,0,0.241175 -14021,5304:246,-46,-34,0,0,0.234913 -14022,5304:245,-45,-34,0,0,0.227626 -14023,5304:144,-44,-34,0,0,0.227572 -14024,5304:143,-43,-34,0,0,0.227337 -14025,5304:142,-42,-34,0,0,0.224445 -14026,5304:141,-41,-34,0,0,0.224463 -14027,5304:140,-40,-34,0,0,0.222341 -14028,5303:249,-39,-34,0,0,0.21445 -14029,5303:248,-38,-34,0,0,0.210104 -14030,5303:247,-37,-34,0,0,0.209507 -14031,5303:246,-36,-34,0,0,0.209065 -14032,5303:245,-35,-34,0,0,0.210155 -14033,5303:144,-34,-34,0,0,0.212002 -14034,5303:143,-33,-34,0,0,0.226292 -14035,5303:142,-32,-34,0,0,0.22259 -14036,5303:141,-31,-34,0,0,0.235098 -14037,5303:140,-30,-34,0,0,0.235968 -14038,5302:249,-29,-34,0,0,0.22622 -14039,5302:248,-28,-34,0,0,0.230128 -14040,5302:247,-27,-34,0,0,0.236746 -14041,5302:246,-26,-34,0,0,0.211214 -14042,5302:245,-25,-34,0,0,0.212535 -14043,5302:144,-24,-34,0,0,0.237118 -14044,5302:143,-23,-34,0,0,0.253413 -14045,5302:142,-22,-34,0,0,0.241627 -14046,5302:141,-21,-34,0,0,0.238552 -14047,5302:140,-20,-34,0,0,0.222004 -14048,5301:249,-19,-34,0,0,0.211848 -14049,5301:248,-18,-34,0,0,0.207726 -14050,5301:247,-17,-34,0,0,0.20144 -14051,5301:246,-16,-34,0,0,0.181662 -14052,5301:245,-15,-34,0,0,0.189361 -14053,5301:144,-14,-34,0,0,0.230256 -14054,5301:143,-13,-34,0,0,0.258677 -14055,5301:142,-12,-34,0,0,0.252752 -14056,5301:141,-11,-34,0,0,0.242607 -14057,5301:140,-10,-34,0,0,0.239318 -14058,5300:249,-9,-34,0,0,0.233826 -14059,5300:248,-8,-34,0,0,0.230147 -14060,5300:247,-7,-34,0,0,0.23915 -14061,5300:246,-6,-34,0,0,0.236691 -14062,5300:245,-5,-34,0,0,0.235062 -14063,5300:144,-4,-34,0,0,0.231844 -14064,5300:143,-3,-34,0,0,0.230056 -14065,5300:142,-2,-34,0,0,0.224659 -14066,5300:141,-1,-34,0,0,0.225 -14067,3300:141,0,-34,0,0,0.224713 -14068,3300:141,1,-34,0,0,0.225896 -14069,3300:142,2,-34,0,0,0.220976 -14070,3300:143,3,-34,0,0,0.218335 -14071,3300:144,4,-34,0,0,0.217337 -14072,3300:245,5,-34,0,0,0.21082 -14073,3300:246,6,-34,0,0,0.19778 -14074,3300:247,7,-34,0,0,0.197226 -14075,3300:248,8,-34,0,0,0.199398 -14076,3300:249,9,-34,0,0,0.199447 -14077,3301:140,10,-34,0,0,0.214242 -14078,3301:141,11,-34,0,0,0.213482 -14079,3301:142,12,-34,0,0,0.219758 -14080,3301:143,13,-34,0,0,0.222093 -14081,3301:144,14,-34,0,0,0.209558 -14082,3301:245,15,-34,0,0,0.241758 -14083,3301:246,16,-34,0,0,0.264632 -14084,3301:247,17,-34,0,0,0.218861 -14085,3301:248,18,-34,0,0,0.281806 -14086,3301:249,19,-34,0,0,0.267883 -14087,3302:140,20,-34,0,0,0.248469 -14088,3302:141,21,-34,0,0,0.271425 -14089,3302:142,22,-34,0,0,0.263055 -14090,3302:143,23,-34,0,0,0.277048 -14091,3302:144,24,-34,0,0,0.258343 -14092,3302:245,25,-34,0,0,0.230292 -14093,3302:246,26,-34,0,0,0.249429 -14094,3302:247,27,-34,0,0,0.250084 -14095,3302:248,28,-34,0,0,0.252752 -14096,3302:249,29,-34,0,0,0.236746 -14097,3303:140,30,-34,0,0,0.223106 -14098,3303:141,31,-34,0,0,0.241627 -14099,3303:142,32,-34,0,0,0.20393 -14100,3303:143,33,-34,0,0,0.199021 -14101,3303:144,34,-34,0,0,0.201291 -14102,3303:245,35,-34,0,0,0.200566 -14103,3303:246,36,-34,0,0,0.212105 -14104,3303:247,37,-34,0,0,0.189187 -14105,3303:248,38,-34,0,0,0.186148 -14106,3303:249,39,-34,0,0,0.200088 -14107,3304:140,40,-34,0,0,0.202599 -14108,3304:141,41,-34,0,0,0.194234 -14109,3304:142,42,-34,0,0,0.184891 -14110,3304:143,43,-34,0,0,0.176646 -14111,3304:144,44,-34,0,0,0.170428 -14112,3304:245,45,-34,0,0,0.163709 -14113,3304:246,46,-34,0,0,0.157395 -14114,3304:247,47,-34,0,0,0.152114 -14115,3304:248,48,-34,0,0,0.157408 -14116,3304:249,49,-34,0,0,0.160943 -14117,3305:140,50,-34,0,0,0.165389 -14118,3305:141,51,-34,0,0,0.165872 -14119,3305:142,52,-34,0,0,0.205268 -14120,3305:143,53,-34,0,0,0.251513 -14121,3305:144,54,-34,0,0,0.260811 -14122,3305:245,55,-34,0,0,0.258874 -14123,3305:246,56,-34,0,0,0.228621 -14124,3305:247,57,-34,0,0,0.235062 -14125,3305:248,58,-34,0,0,0.239543 -14126,3305:249,59,-34,0,0,0.250065 -14127,3306:140,60,-34,0,0,0.299101 -14128,3306:141,61,-34,0,0,0.286319 -14129,3306:142,62,-34,0,0,0.266475 -14130,3306:143,63,-34,0,0,0.243344 -14131,3306:144,64,-34,0,0,0.256653 -14132,3306:245,65,-34,0,0,0.267662 -14133,3306:246,66,-34,0,0,0.269438 -14134,3306:247,67,-34,0,0,0.231533 -14135,3306:248,68,-34,0,0,0.279358 -14136,3306:249,69,-34,0,0,0.265712 -14137,3307:140,70,-34,0,0,0.263633 -14138,3307:141,71,-34,0,0,0.256594 -14139,3307:142,72,-34,0,0,0.235062 -14140,3307:144,74,-34,0,0,0.249199 -14141,3307:245,75,-34,0,0,0.244139 -14142,3307:246,76,-34,0,0,0.246117 -14143,3307:247,77,-34,0,0,0.253841 -14144,3307:248,78,-34,0,0,0.258599 -14145,3307:249,79,-34,0,0,0.248392 -14146,3308:140,80,-34,0,0,0.242399 -14147,3308:141,81,-34,0,0,0.242022 -14148,3308:142,82,-34,0,0,0.247281 -14149,3308:143,83,-34,0,0,0.244841 -14150,3308:144,84,-34,0,0,0.241758 -14151,3308:245,85,-34,0,0,0.244784 -14152,3308:246,86,-34,0,0,0.242626 -14153,3308:247,87,-34,0,0,0.229601 -14154,3308:248,88,-34,0,0,0.210445 -14155,3308:249,89,-34,0,0,0.216064 -14156,3309:140,90,-34,0,0,0.222679 -14157,3309:141,91,-34,0,0,0.222999 -14158,3309:142,92,-34,0,0,0.209303 -14159,3309:143,93,-34,0,0,0.200846 -14160,3309:144,94,-34,0,0,0.200335 -14161,3309:245,95,-34,0,0,0.201672 -14162,3309:246,96,-34,0,0,0.203614 -14163,3309:247,97,-34,0,0,0.206326 -14164,3309:248,98,-34,0,0,0.206461 -14165,3309:249,99,-34,0,0,0.226148 -14166,3310:140,100,-34,0,0,0.242531 -14167,3310:141,101,-34,0,0,0.238552 -14168,3310:142,102,-34,0,0,0.237658 -14169,3310:143,103,-34,0,0,0.235764 -14170,3310:144,104,-34,0,0,0.230201 -14171,3310:245,105,-34,0,0,0.216029 -14172,3310:246,106,-34,0,0,0.228838 -14173,3310:247,107,-34,0,0,0.240874 -14174,3310:248,108,-34,0,0,0.234268 -14175,3310:249,109,-34,0,0,0.233734 -14176,3311:140,110,-34,0,0,0.23723 -14177,3311:141,111,-34,0,0,0.232485 -14178,3311:142,112,-34,0,0,0.232668 -14179,3311:143,113,-34,0,0,0.235136 -14180,3311:144,114,-34,0,0,0.232925 -14181,3311:245,115,-34,0,0,0.231478 -14182,3311:246,116,-34,0,0,0.233495 -14183,3311:247,117,-34,0,0,0.233293 -14184,3311:248,118,-34,0,0,0.23276 -14185,3311:249,119,-34,0,0,0.234305 -14186,3312:140,120,-34,0,0,0.236246 -14187,3312:141,121,-34,0,0,0.239412 -14188,3312:142,122,-34,0,0,0.237695 -14189,3312:143,123,-34,0,0,0.235746 -14190,3312:144,124,-34,0,0,0.234526 -14191,3312:245,125,-34,0,0,0.235468 -14192,3312:246,126,-34,0,0,0.23645 -14193,3312:247,127,-34,0,0,0.235764 -14194,3312:248,128,-34,0,0,0.240799 -14195,3312:249,129,-34,0,0,0.237304 -14196,3313:140,130,-34,0,0,0.238142 -14197,3313:141,131,-34,0,0,0.238776 -14198,3313:142,132,-34,0,0,0.240893 -14199,3313:143,133,-34,0,0,0.242418 -14200,3313:144,134,-34,0,0,0.240067 -14201,3313:245,135,-34,0,0,0.235746 -14202,3313:246,136,-34,0,0,0.24003 -14203,3313:247,137,-34,0,0,0.239486 -14204,3313:248,138,-34,0,0,0.242928 -14205,3313:249,139,-34,0,0,0.253626 -14206,3314:140,140,-34,0,0,0.270045 -14207,3314:141,141,-34,0,0,0.26214 -14208,3314:142,142,-34,0,0,0.272706 -14209,3314:143,143,-34,0,0,0.263295 -14210,3314:144,144,-34,0,0,0.269721 -14211,3314:245,145,-34,0,0,0.2794 -14212,3314:246,146,-34,0,0,0.306913 -14213,3314:248,148,-34,0,0,0.291024 -14214,3314:249,149,-34,0,0,0.331486 -14215,3315:140,150,-34,0,0,0.293276 -14216,3315:141,151,-34,0,0,0.291024 -14217,3315:142,152,-34,0,0,0.271343 -14218,3315:143,153,-34,0,0,0.278202 -14219,3315:144,154,-34,0,0,0.287159 -14220,3315:245,155,-34,0,0,0.284956 -14221,3315:246,156,-34,0,0,0.278945 -14222,3315:247,157,-34,0,0,0.273441 -14223,3315:248,158,-34,0,0,0.27678 -14224,3315:249,159,-34,0,0,0.275917 -14225,3316:140,160,-34,0,0,0.280933 -14226,3316:141,161,-34,0,0,0.276719 -14227,3316:142,162,-34,0,0,0.27604 -14228,3316:143,163,-34,0,0,0.277769 -14229,3316:144,164,-34,0,0,0.27783 -14230,3316:245,165,-34,0,0,0.280622 -14231,3316:246,166,-34,0,0,0.281349 -14232,3316:247,167,-34,0,0,0.278656 -14233,3316:248,168,-34,0,0,0.281785 -14234,3316:249,169,-34,0,0,0.279958 -14235,3317:144,174,-34,0,0,0.242852 -14236,3317:245,175,-34,0,0,0.269074 -14237,3317:246,176,-34,0,0,0.262279 -14238,3317:247,177,-34,0,0,0.253899 -14239,3317:248,178,-34,0,0,0.249544 -14240,3317:249,179,-34,0,0,0.247836 -14241,3318:140,180,-34,0,0,0.260039 -14242,5318:130,-180,-33,0,0,0.294961 -14243,5317:239,-179,-33,0,0,0.30665 -14244,5317:238,-178,-33,0,0,0.318638 -14245,5317:237,-177,-33,0,0,0.317079 -14246,5317:236,-176,-33,0,0,0.316434 -14247,5317:235,-175,-33,0,0,0.317412 -14248,5317:134,-174,-33,0,0,0.316123 -14249,5317:133,-173,-33,0,0,0.308532 -14250,5317:132,-172,-33,0,0,0.292106 -14251,5317:131,-171,-33,0,0,0.28697 -14252,5317:130,-170,-33,0,0,0.28933 -14253,5316:239,-169,-33,0,0,0.281826 -14254,5316:238,-168,-33,0,0,0.281826 -14255,5316:237,-167,-33,0,0,0.283368 -14256,5316:236,-166,-33,0,0,0.289352 -14257,5316:235,-165,-33,0,0,0.287412 -14258,5316:134,-164,-33,0,0,0.293958 -14259,5316:133,-163,-33,0,0,0.293404 -14260,5316:132,-162,-33,0,0,0.29079 -14261,5316:131,-161,-33,0,0,0.294 -14262,5316:130,-160,-33,0,0,0.301324 -14263,5315:239,-159,-33,0,0,0.301584 -14264,5315:238,-158,-33,0,0,0.308708 -14265,5315:237,-157,-33,0,0,0.310266 -14266,5315:236,-156,-33,0,0,0.317012 -14267,5315:235,-155,-33,0,0,0.318861 -14268,5315:134,-154,-33,0,0,0.324173 -14269,5315:133,-153,-33,0,0,0.322375 -14270,5315:132,-152,-33,0,0,0.323813 -14271,5315:131,-151,-33,0,0,0.321926 -14272,5315:130,-150,-33,0,0,0.323183 -14273,5314:239,-149,-33,0,0,0.321141 -14274,5314:238,-148,-33,0,0,0.321949 -14275,5314:237,-147,-33,0,0,0.3274 -14276,5314:236,-146,-33,0,0,0.327106 -14277,5314:235,-145,-33,0,0,0.324668 -14278,5314:134,-144,-33,0,0,0.325705 -14279,5314:133,-143,-33,0,0,0.325638 -14280,5314:132,-142,-33,0,0,0.323071 -14281,5314:131,-141,-33,0,0,0.320828 -14282,5314:130,-140,-33,0,0,0.324038 -14283,5313:239,-139,-33,0,0,0.322061 -14284,5313:238,-138,-33,0,0,0.315901 -14285,5313:237,-137,-33,0,0,0.31866 -14286,5313:236,-136,-33,0,0,0.311653 -14287,5313:235,-135,-33,0,0,0.310728 -14288,5313:134,-134,-33,0,0,0.310948 -14289,5313:133,-133,-33,0,0,0.310113 -14290,5313:132,-132,-33,0,0,0.308335 -14291,5313:131,-131,-33,0,0,0.306148 -14292,5313:130,-130,-33,0,0,0.311455 -14293,5312:239,-129,-33,0,0,0.311345 -14294,5312:238,-128,-33,0,0,0.308181 -14295,5312:237,-127,-33,0,0,0.310904 -14296,5312:236,-126,-33,0,0,0.313861 -14297,5312:235,-125,-33,0,0,0.308686 -14298,5312:134,-124,-33,0,0,0.309432 -14299,5312:133,-123,-33,0,0,0.300481 -14300,5312:132,-122,-33,0,0,0.30397 -14301,5312:131,-121,-33,0,0,0.303992 -14302,5312:130,-120,-33,0,0,0.298326 -14303,5311:239,-119,-33,0,0,0.292872 -14304,5311:238,-118,-33,0,0,0.293467 -14305,5311:237,-117,-33,0,0,0.293489 -14306,5311:236,-116,-33,0,0,0.292892 -14307,5311:235,-115,-33,0,0,0.290939 -14308,5311:134,-114,-33,0,0,0.289859 -14309,5311:133,-113,-33,0,0,0.290918 -14310,5311:132,-112,-33,0,0,0.280975 -14311,5311:131,-111,-33,0,0,0.275589 -14312,5311:130,-110,-33,0,0,0.269984 -14313,5310:239,-109,-33,0,0,0.262856 -14314,5310:238,-108,-33,0,0,0.261346 -14315,5310:237,-107,-33,0,0,0.259269 -14316,5310:236,-106,-33,0,0,0.263514 -14317,5310:235,-105,-33,0,0,0.259091 -14318,5310:134,-104,-33,0,0,0.259703 -14319,5310:133,-103,-33,0,0,0.266154 -14320,5310:132,-102,-33,0,0,0.265993 -14321,5310:131,-101,-33,0,0,0.258874 -14322,5310:130,-100,-33,0,0,0.257084 -14323,5309:239,-99,-33,0,0,0.258795 -14324,5309:238,-98,-33,0,0,0.258165 -14325,5309:237,-97,-33,0,0,0.252578 -14326,5309:236,-96,-33,0,0,0.259486 -14327,5309:235,-95,-33,0,0,0.251435 -14328,5309:134,-94,-33,0,0,0.257673 -14329,5309:133,-93,-33,0,0,0.255518 -14330,5309:132,-92,-33,0,0,0.252442 -14331,5309:131,-91,-33,0,0,0.246689 -14332,5309:130,-90,-33,0,0,0.254152 -14333,5308:239,-89,-33,0,0,0.249064 -14334,5308:238,-88,-33,0,0,0.24753 -14335,5308:237,-87,-33,0,0,0.247472 -14336,5308:236,-86,-33,0,0,0.254327 -14337,5308:235,-85,-33,0,0,0.251996 -14338,5308:134,-84,-33,0,0,0.251745 -14339,5308:133,-83,-33,0,0,0.246498 -14340,5308:132,-82,-33,0,0,0.251377 -14341,5308:131,-81,-33,0,0,0.247128 -14342,5308:130,-80,-33,0,0,0.248334 -14343,5307:239,-79,-33,0,0,0.251339 -14344,5307:238,-78,-33,0,0,0.251532 -14345,5307:237,-77,-33,0,0,0.252268 -14346,5307:236,-76,-33,0,0,0.253082 -14347,5307:235,-75,-33,0,0,0.256771 -14348,5307:133,-73,-33,0,0,0.28058 -14349,5306:133,-63,-33,0,0,0.310091 -14350,5306:132,-62,-33,0,0,0.311543 -14351,5306:131,-61,-33,0,0,0.32242 -14352,5306:130,-60,-33,0,0,0.317569 -14353,5305:239,-59,-33,0,0,0.287559 -14354,5305:238,-58,-33,0,0,0.231058 -14355,5305:237,-57,-33,0,0,0.251474 -14356,5305:236,-56,-33,0,0,0.281037 -14357,5305:235,-55,-33,0,0,0.343801 -14358,5305:134,-54,-33,0,0,0.33971 -14359,5305:133,-53,-33,0,0,0.285291 -14360,5305:132,-52,-33,0,0,0.311675 -14361,5305:131,-51,-33,0,0,0.332351 -14362,5305:130,-50,-33,0,0,0.361791 -14363,5304:239,-49,-33,0,0,0.362479 -14364,5304:238,-48,-33,0,0,0.306279 -14365,5304:237,-47,-33,0,0,0.270471 -14366,5304:236,-46,-33,0,0,0.257359 -14367,5304:235,-45,-33,0,0,0.26216 -14368,5304:134,-44,-33,0,0,0.264152 -14369,5304:133,-43,-33,0,0,0.262796 -14370,5304:132,-42,-33,0,0,0.264692 -14371,5304:131,-41,-33,0,0,0.257792 -14372,5304:130,-40,-33,0,0,0.235764 -14373,5303:239,-39,-33,0,0,0.225753 -14374,5303:238,-38,-33,0,0,0.229583 -14375,5303:237,-37,-33,0,0,0.237993 -14376,5303:236,-36,-33,0,0,0.252403 -14377,5303:235,-35,-33,0,0,0.254698 -14378,5303:134,-34,-33,0,0,0.230165 -14379,5303:133,-33,-33,0,0,0.235542 -14380,5303:132,-32,-33,0,0,0.242947 -14381,5303:131,-31,-33,0,0,0.259012 -14382,5303:130,-30,-33,0,0,0.249544 -14383,5302:239,-29,-33,0,0,0.24359 -14384,5302:238,-28,-33,0,0,0.24359 -14385,5302:237,-27,-33,0,0,0.251048 -14386,5302:236,-26,-33,0,0,0.246117 -14387,5302:235,-25,-33,0,0,0.266596 -14388,5302:134,-24,-33,0,0,0.272462 -14389,5302:133,-23,-33,0,0,0.25992 -14390,5302:132,-22,-33,0,0,0.264692 -14391,5302:131,-21,-33,0,0,0.257988 -14392,5302:130,-20,-33,0,0,0.236079 -14393,5301:239,-19,-33,0,0,0.224051 -14394,5301:238,-18,-33,0,0,0.207658 -14395,5301:237,-17,-33,0,0,0.200269 -14396,5301:236,-16,-33,0,0,0.194298 -14397,5301:235,-15,-33,0,0,0.219882 -14398,5301:134,-14,-33,0,0,0.266174 -14399,5301:133,-13,-33,0,0,0.255772 -14400,5301:132,-12,-33,0,0,0.240874 -14401,5301:131,-11,-33,0,0,0.239449 -14402,5301:130,-10,-33,0,0,0.238646 -14403,5300:239,-9,-33,0,0,0.235468 -14404,5300:238,-8,-33,0,0,0.235376 -14405,5300:237,-7,-33,0,0,0.251532 -14406,5300:236,-6,-33,0,0,0.24063 -14407,5300:235,-5,-33,0,0,0.231314 -14408,5300:134,-4,-33,0,0,0.230967 -14409,5300:133,-3,-33,0,0,0.233385 -14410,5300:132,-2,-33,0,0,0.235764 -14411,5300:131,-1,-33,0,0,0.235949 -14412,3300:131,0,-33,0,0,0.231624 -14413,3300:131,1,-33,0,0,0.230857 -14414,3300:132,2,-33,0,0,0.23146 -14415,3300:133,3,-33,0,0,0.220358 -14416,3300:134,4,-33,0,0,0.21683 -14417,3300:235,5,-33,0,0,0.221756 -14418,3300:236,6,-33,0,0,0.232228 -14419,3300:237,7,-33,0,0,0.230311 -14420,3300:238,8,-33,0,0,0.227554 -14421,3300:239,9,-33,0,0,0.21497 -14422,3301:130,10,-33,0,0,0.210257 -14423,3301:131,11,-33,0,0,0.214104 -14424,3301:132,12,-33,0,0,0.22931 -14425,3301:133,13,-33,0,0,0.235672 -14426,3301:134,14,-33,0,0,0.243136 -14427,3301:235,15,-33,0,0,0.276143 -14428,3301:236,16,-33,0,0,0.280871 -14429,3301:237,17,-33,0,0,0.305102 -14430,3301:238,18,-33,0,0,0.322981 -14431,3301:239,19,-33,0,0,0.302863 -14432,3302:130,20,-33,0,0,0.30862 -14433,3302:131,21,-33,0,0,0.312734 -14434,3302:132,22,-33,0,0,0.300352 -14435,3302:133,23,-33,0,0,0.307328 -14436,3302:134,24,-33,0,0,0.284496 -14437,3302:235,25,-33,0,0,0.248968 -14438,3302:236,26,-33,0,0,0.235117 -14439,3302:237,27,-33,0,0,0.240593 -14440,3302:238,28,-33,0,0,0.26867 -14441,3302:239,29,-33,0,0,0.249987 -14442,3303:130,30,-33,0,0,0.278738 -14443,3303:131,31,-33,0,0,0.286613 -14444,3303:132,32,-33,0,0,0.258716 -14445,3303:133,33,-33,0,0,0.24272 -14446,3303:134,34,-33,0,0,0.271607 -14447,3303:235,35,-33,0,0,0.279483 -14448,3303:236,36,-33,0,0,0.266756 -14449,3303:237,37,-33,0,0,0.250431 -14450,3303:238,38,-33,0,0,0.257733 -14451,3303:239,39,-33,0,0,0.248009 -14452,3304:130,40,-33,0,0,0.20754 -14453,3304:131,41,-33,0,0,0.207676 -14454,3304:132,42,-33,0,0,0.220128 -14455,3304:133,43,-33,0,0,0.246842 -14456,3304:134,44,-33,0,0,0.227735 -14457,3304:235,45,-33,0,0,0.206646 -14458,3304:236,46,-33,0,0,0.207337 -14459,3304:237,47,-33,0,0,0.240067 -14460,3304:238,48,-33,0,0,0.244007 -14461,3304:239,49,-33,0,0,0.233238 -14462,3305:130,50,-33,0,0,0.237397 -14463,3305:131,51,-33,0,0,0.207523 -14464,3305:132,52,-33,0,0,0.237379 -14465,3305:133,53,-33,0,0,0.255635 -14466,3305:134,54,-33,0,0,0.255928 -14467,3305:235,55,-33,0,0,0.269741 -14468,3305:236,56,-33,0,0,0.2554 -14469,3305:237,57,-33,0,0,0.241796 -14470,3305:238,58,-33,0,0,0.237806 -14471,3305:239,59,-33,0,0,0.280124 -14472,3306:130,60,-33,0,0,0.311014 -14473,3306:131,61,-33,0,0,0.309937 -14474,3306:132,62,-33,0,0,0.301584 -14475,3306:133,63,-33,0,0,0.293276 -14476,3306:134,64,-33,0,0,0.30005 -14477,3306:235,65,-33,0,0,0.291873 -14478,3306:236,66,-33,0,0,0.283493 -14479,3306:237,67,-33,0,0,0.225771 -14480,3306:238,68,-33,0,0,0.238739 -14481,3306:239,69,-33,0,0,0.282243 -14482,3307:130,70,-33,0,0,0.279607 -14483,3307:131,71,-33,0,0,0.276657 -14484,3307:132,72,-33,0,0,0.27238 -14485,3307:134,74,-33,0,0,0.254737 -14486,3307:235,75,-33,0,0,0.25846 -14487,3307:236,76,-33,0,0,0.277872 -14488,3307:237,77,-33,0,0,0.265853 -14489,3307:238,78,-33,0,0,0.244671 -14490,3307:239,79,-33,0,0,0.24845 -14491,3308:130,80,-33,0,0,0.259052 -14492,3308:131,81,-33,0,0,0.268973 -14493,3308:132,82,-33,0,0,0.263773 -14494,3308:133,83,-33,0,0,0.261069 -14495,3308:134,84,-33,0,0,0.252403 -14496,3308:235,85,-33,0,0,0.2379 -14497,3308:236,86,-33,0,0,0.230967 -14498,3308:237,87,-33,0,0,0.233366 -14499,3308:238,88,-33,0,0,0.236988 -14500,3308:239,89,-33,0,0,0.236209 -14501,3309:130,90,-33,0,0,0.233274 -14502,3309:131,91,-33,0,0,0.234711 -14503,3309:132,92,-33,0,0,0.232687 -14504,3309:133,93,-33,0,0,0.227121 -14505,3309:134,94,-33,0,0,0.231478 -14506,3309:235,95,-33,0,0,0.247128 -14507,3309:236,96,-33,0,0,0.254561 -14508,3309:237,97,-33,0,0,0.251861 -14509,3309:238,98,-33,0,0,0.244215 -14510,3309:239,99,-33,0,0,0.248258 -14511,3310:130,100,-33,0,0,0.244804 -14512,3310:131,101,-33,0,0,0.244481 -14513,3310:132,102,-33,0,0,0.240086 -14514,3310:133,103,-33,0,0,0.23658 -14515,3310:134,104,-33,0,0,0.233109 -14516,3310:235,105,-33,0,0,0.237063 -14517,3310:236,106,-33,0,0,0.248641 -14518,3310:237,107,-33,0,0,0.249141 -14519,3310:238,108,-33,0,0,0.246193 -14520,3310:239,109,-33,0,0,0.244291 -14521,3311:130,110,-33,0,0,0.24125 -14522,3311:131,111,-33,0,0,0.241476 -14523,3311:132,112,-33,0,0,0.242947 -14524,3311:133,113,-33,0,0,0.239431 -14525,3311:134,114,-33,0,0,0.241589 -14526,3311:235,115,-33,0,0,0.240855 -14527,3311:236,116,-33,0,0,0.240818 -14528,3311:237,117,-33,0,0,0.242682 -14529,3311:238,118,-33,0,0,0.245907 -14530,3311:239,119,-33,0,0,0.247186 -14531,3312:130,120,-33,0,0,0.249699 -14532,3312:131,121,-33,0,0,0.252365 -14533,3312:132,122,-33,0,0,0.251068 -14534,3312:133,123,-33,0,0,0.250546 -14535,3312:134,124,-33,0,0,0.248219 -14536,3312:235,125,-33,0,0,0.245355 -14537,3312:236,126,-33,0,0,0.245183 -14538,3312:237,127,-33,0,0,0.254776 -14539,3312:238,128,-33,0,0,0.261286 -14540,3312:239,129,-33,0,0,0.248334 -14541,3313:130,130,-33,0,0,0.253374 -14542,3313:131,131,-33,0,0,0.250624 -14543,3313:132,132,-33,0,0,0.253432 -14544,3313:133,133,-33,0,0,0.251068 -14545,3313:134,134,-33,0,0,0.25501 -14546,3313:235,135,-33,0,0,0.254561 -14547,3313:236,136,-33,0,0,0.252287 -14548,3313:237,137,-33,0,0,0.253938 -14549,3313:238,138,-33,0,0,0.258205 -14550,3313:239,139,-33,0,0,0.283848 -14551,3314:130,140,-33,0,0,0.285774 -14552,3314:131,141,-33,0,0,0.294897 -14553,3314:132,142,-33,0,0,0.287812 -14554,3314:133,143,-33,0,0,0.292254 -14555,3314:134,144,-33,0,0,0.289732 -14556,3314:235,145,-33,0,0,0.317012 -14557,3314:239,149,-33,0,0,0.336078 -14558,3315:130,150,-33,0,0,0.31904 -14559,3315:131,151,-33,0,0,0.318215 -14560,3315:132,152,-33,0,0,0.305102 -14561,3315:133,153,-33,0,0,0.301995 -14562,3315:134,154,-33,0,0,0.309014 -14563,3315:235,155,-33,0,0,0.306803 -14564,3315:236,156,-33,0,0,0.30397 -14565,3315:237,157,-33,0,0,0.296931 -14566,3315:238,158,-33,0,0,0.295816 -14567,3315:239,159,-33,0,0,0.301606 -14568,3316:130,160,-33,0,0,0.30321 -14569,3316:131,161,-33,0,0,0.294876 -14570,3316:132,162,-33,0,0,0.290007 -14571,3316:133,163,-33,0,0,0.289436 -14572,3316:134,164,-33,0,0,0.289626 -14573,3316:235,165,-33,0,0,0.29113 -14574,3316:236,166,-33,0,0,0.291321 -14575,3316:237,167,-33,0,0,0.291448 -14576,3316:238,168,-33,0,0,0.295602 -14577,3316:239,169,-33,0,0,0.300806 -14578,3317:130,170,-33,0,0,0.294918 -14579,3317:131,171,-33,0,0,0.291405 -14580,3317:134,174,-33,0,0,0.259348 -14581,3317:235,175,-33,0,0,0.281037 -14582,3317:236,176,-33,0,0,0.305276 -14583,3317:237,177,-33,0,0,0.317212 -14584,3317:238,178,-33,0,0,0.346192 -14585,3317:239,179,-33,0,0,0.32919 -14586,3318:130,180,-33,0,0,0.294961 -14587,5318:120,-180,-32,0,0,0.335047 -14588,5317:229,-179,-32,0,0,0.325209 -14589,5317:228,-178,-32,0,0,0.324826 -14590,5317:227,-177,-32,0,0,0.323858 -14591,5317:226,-176,-32,0,0,0.322689 -14592,5317:225,-175,-32,0,0,0.331805 -14593,5317:124,-174,-32,0,0,0.327739 -14594,5317:123,-173,-32,0,0,0.310376 -14595,5317:122,-172,-32,0,0,0.301844 -14596,5317:121,-171,-32,0,0,0.308291 -14597,5317:120,-170,-32,0,0,0.308576 -14598,5316:229,-169,-32,0,0,0.302646 -14599,5316:228,-168,-32,0,0,0.30617 -14600,5316:227,-167,-32,0,0,0.307766 -14601,5316:226,-166,-32,0,0,0.309124 -14602,5316:225,-165,-32,0,0,0.312734 -14603,5316:124,-164,-32,0,0,0.307503 -14604,5316:123,-163,-32,0,0,0.312271 -14605,5316:122,-162,-32,0,0,0.311918 -14606,5316:121,-161,-32,0,0,0.319307 -14607,5316:120,-160,-32,0,0,0.327377 -14608,5315:229,-159,-32,0,0,0.328464 -14609,5315:228,-158,-32,0,0,0.329145 -14610,5315:227,-157,-32,0,0,0.329553 -14611,5315:226,-156,-32,0,0,0.334498 -14612,5315:225,-155,-32,0,0,0.337386 -14613,5315:124,-154,-32,0,0,0.341163 -14614,5315:123,-153,-32,0,0,0.340794 -14615,5315:122,-152,-32,0,0,0.341417 -14616,5315:121,-151,-32,0,0,0.33941 -14617,5315:120,-150,-32,0,0,0.338811 -14618,5314:229,-149,-32,0,0,0.341047 -14619,5314:228,-148,-32,0,0,0.346843 -14620,5314:227,-147,-32,0,0,0.346238 -14621,5314:226,-146,-32,0,0,0.345866 -14622,5314:225,-145,-32,0,0,0.343291 -14623,5314:124,-144,-32,0,0,0.344542 -14624,5314:123,-143,-32,0,0,0.346843 -14625,5314:122,-142,-32,0,0,0.345843 -14626,5314:121,-141,-32,0,0,0.343893 -14627,5314:120,-140,-32,0,0,0.342341 -14628,5313:229,-139,-32,0,0,0.341347 -14629,5313:228,-138,-32,0,0,0.338443 -14630,5313:227,-137,-32,0,0,0.334887 -14631,5313:226,-136,-32,0,0,0.332465 -14632,5313:225,-135,-32,0,0,0.332465 -14633,5313:124,-134,-32,0,0,0.331896 -14634,5313:123,-133,-32,0,0,0.33242 -14635,5313:122,-132,-32,0,0,0.328601 -14636,5313:121,-131,-32,0,0,0.331212 -14637,5313:120,-130,-32,0,0,0.333675 -14638,5312:229,-129,-32,0,0,0.332488 -14639,5312:228,-128,-32,0,0,0.329372 -14640,5312:227,-127,-32,0,0,0.331691 -14641,5312:226,-126,-32,0,0,0.326812 -14642,5312:225,-125,-32,0,0,0.327785 -14643,5312:124,-124,-32,0,0,0.324466 -14644,5312:123,-123,-32,0,0,0.326022 -14645,5312:122,-122,-32,0,0,0.315435 -14646,5312:121,-121,-32,0,0,0.318594 -14647,5312:120,-120,-32,0,0,0.311411 -14648,5311:229,-119,-32,0,0,0.311411 -14649,5311:228,-118,-32,0,0,0.312933 -14650,5311:227,-117,-32,0,0,0.317836 -14651,5311:226,-116,-32,0,0,0.31837 -14652,5311:225,-115,-32,0,0,0.316367 -14653,5311:124,-114,-32,0,0,0.315945 -14654,5311:123,-113,-32,0,0,0.310025 -14655,5311:122,-112,-32,0,0,0.29663 -14656,5311:121,-111,-32,0,0,0.28293 -14657,5311:120,-110,-32,0,0,0.287327 -14658,5310:229,-109,-32,0,0,0.284182 -14659,5310:228,-108,-32,0,0,0.279876 -14660,5310:227,-107,-32,0,0,0.277893 -14661,5310:226,-106,-32,0,0,0.276719 -14662,5310:225,-105,-32,0,0,0.281141 -14663,5310:124,-104,-32,0,0,0.279669 -14664,5310:123,-103,-32,0,0,0.277521 -14665,5310:122,-102,-32,0,0,0.285375 -14666,5310:121,-101,-32,0,0,0.27911 -14667,5310:120,-100,-32,0,0,0.278759 -14668,5309:229,-99,-32,0,0,0.276616 -14669,5309:228,-98,-32,0,0,0.278387 -14670,5309:227,-97,-32,0,0,0.271506 -14671,5309:226,-96,-32,0,0,0.275036 -14672,5309:225,-95,-32,0,0,0.271933 -14673,5309:124,-94,-32,0,0,0.272564 -14674,5309:123,-93,-32,0,0,0.275138 -14675,5309:122,-92,-32,0,0,0.27116 -14676,5309:121,-91,-32,0,0,0.267803 -14677,5309:120,-90,-32,0,0,0.26962 -14678,5308:229,-89,-32,0,0,0.266817 -14679,5308:228,-88,-32,0,0,0.268165 -14680,5308:227,-87,-32,0,0,0.265192 -14681,5308:226,-86,-32,0,0,0.267823 -14682,5308:225,-85,-32,0,0,0.27438 -14683,5308:124,-84,-32,0,0,0.272095 -14684,5308:123,-83,-32,0,0,0.269276 -14685,5308:122,-82,-32,0,0,0.26214 -14686,5308:121,-81,-32,0,0,0.261842 -14687,5308:120,-80,-32,0,0,0.263195 -14688,5307:229,-79,-32,0,0,0.266034 -14689,5307:228,-78,-32,0,0,0.268065 -14690,5307:227,-77,-32,0,0,0.266495 -14691,5307:226,-76,-32,0,0,0.273032 -14692,5307:225,-75,-32,0,0,0.275097 -14693,5307:124,-74,-32,0,0,0.275897 -14694,5306:225,-65,-32,0,0,0.342851 -14695,5306:124,-64,-32,0,0,0.349805 -14696,5306:123,-63,-32,0,0,0.354752 -14697,5306:122,-62,-32,0,0,0.343917 -14698,5306:121,-61,-32,0,0,0.342481 -14699,5306:120,-60,-32,0,0,0.346634 -14700,5305:229,-59,-32,0,0,0.332967 -14701,5305:228,-58,-32,0,0,0.305821 -14702,5305:227,-57,-32,0,0,0.25351 -14703,5305:226,-56,-32,0,0,0.250894 -14704,5305:225,-55,-32,0,0,0.296952 -14705,5305:124,-54,-32,0,0,0.345076 -14706,5305:123,-53,-32,0,0,0.299015 -14707,5305:122,-52,-32,0,0,0.305102 -14708,5305:121,-51,-32,0,0,0.316456 -14709,5305:120,-50,-32,0,0,0.35353 -14710,5304:229,-49,-32,0,0,0.392772 -14711,5304:228,-48,-32,0,0,0.336284 -14712,5304:227,-47,-32,0,0,0.280435 -14713,5304:226,-46,-32,0,0,0.283472 -14714,5304:225,-45,-32,0,0,0.275097 -14715,5304:124,-44,-32,0,0,0.275179 -14716,5304:123,-43,-32,0,0,0.274872 -14717,5304:122,-42,-32,0,0,0.277068 -14718,5304:121,-41,-32,0,0,0.303948 -14719,5304:120,-40,-32,0,0,0.311455 -14720,5303:229,-39,-32,0,0,0.293681 -14721,5303:228,-38,-32,0,0,0.272686 -14722,5303:227,-37,-32,0,0,0.274094 -14723,5303:226,-36,-32,0,0,0.270187 -14724,5303:225,-35,-32,0,0,0.266817 -14725,5303:124,-34,-32,0,0,0.257026 -14726,5303:123,-33,-32,0,0,0.266234 -14727,5303:122,-32,-32,0,0,0.273053 -14728,5303:121,-31,-32,0,0,0.275691 -14729,5303:120,-30,-32,0,0,0.281037 -14730,5302:229,-29,-32,0,0,0.288001 -14731,5302:228,-28,-32,0,0,0.284412 -14732,5302:227,-27,-32,0,0,0.274115 -14733,5302:226,-26,-32,0,0,0.271302 -14734,5302:225,-25,-32,0,0,0.276924 -14735,5302:124,-24,-32,0,0,0.285145 -14736,5302:123,-23,-32,0,0,0.284308 -14737,5302:122,-22,-32,0,0,0.274954 -14738,5302:121,-21,-32,0,0,0.263813 -14739,5302:120,-20,-32,0,0,0.258244 -14740,5301:229,-19,-32,0,0,0.241947 -14741,5301:228,-18,-32,0,0,0.232577 -14742,5301:227,-17,-32,0,0,0.211899 -14743,5301:226,-16,-32,0,0,0.21082 -14744,5301:225,-15,-32,0,0,0.250026 -14745,5301:124,-14,-32,0,0,0.275445 -14746,5301:123,-13,-32,0,0,0.26746 -14747,5301:122,-12,-32,0,0,0.266556 -14748,5301:121,-11,-32,0,0,0.254912 -14749,5301:120,-10,-32,0,0,0.254191 -14750,5300:229,-9,-32,0,0,0.25316 -14751,5300:228,-8,-32,0,0,0.25501 -14752,5300:227,-7,-32,0,0,0.265632 -14753,5300:226,-6,-32,0,0,0.25791 -14754,5300:225,-5,-32,0,0,0.251319 -14755,5300:124,-4,-32,0,0,0.246326 -14756,5300:123,-3,-32,0,0,0.247702 -14757,5300:122,-2,-32,0,0,0.248987 -14758,5300:121,-1,-32,0,0,0.246117 -14759,3300:121,0,-32,0,0,0.248833 -14760,3300:121,1,-32,0,0,0.252326 -14761,3300:122,2,-32,0,0,0.251358 -14762,3300:123,3,-32,0,0,0.244652 -14763,3300:124,4,-32,0,0,0.249371 -14764,3300:225,5,-32,0,0,0.252869 -14765,3300:226,6,-32,0,0,0.248201 -14766,3300:227,7,-32,0,0,0.254152 -14767,3300:228,8,-32,0,0,0.23859 -14768,3300:229,9,-32,0,0,0.238832 -14769,3301:120,10,-32,0,0,0.24776 -14770,3301:121,11,-32,0,0,0.249795 -14771,3301:122,12,-32,0,0,0.259841 -14772,3301:123,13,-32,0,0,0.247568 -14773,3301:124,14,-32,0,0,0.273828 -14774,3301:225,15,-32,0,0,0.309081 -14775,3301:226,16,-32,0,0,0.349595 -14776,3301:227,17,-32,0,0,0.40856 -14777,3301:228,18,-32,0,0,0.4102 -14778,3301:229,19,-32,0,0,0.40106 -14779,3302:120,20,-32,0,0,0.345634 -14780,3302:121,21,-32,0,0,0.333287 -14781,3302:122,22,-32,0,0,0.365857 -14782,3302:123,23,-32,0,0,0.372341 -14783,3302:124,24,-32,0,0,0.371213 -14784,3302:225,25,-32,0,0,0.378267 -14785,3302:226,26,-32,0,0,0.369536 -14786,3302:227,27,-32,0,0,0.344079 -14787,3302:228,28,-32,0,0,0.275794 -14788,3302:229,29,-32,0,0,0.308905 -14789,3303:120,30,-32,0,0,0.336032 -14790,3303:121,31,-32,0,0,0.348101 -14791,3303:122,32,-32,0,0,0.330393 -14792,3303:123,33,-32,0,0,0.30434 -14793,3303:124,34,-32,0,0,0.318036 -14794,3303:225,35,-32,0,0,0.329122 -14795,3303:226,36,-32,0,0,0.371573 -14796,3303:227,37,-32,0,0,0.360227 -14797,3303:228,38,-32,0,0,0.323813 -14798,3303:229,39,-32,0,0,0.315279 -14799,3304:120,40,-32,0,0,0.33242 -14800,3304:121,41,-32,0,0,0.334429 -14801,3304:122,42,-32,0,0,0.286403 -14802,3304:123,43,-32,0,0,0.254191 -14803,3304:124,44,-32,0,0,0.296352 -14804,3304:225,45,-32,0,0,0.3274 -14805,3304:226,46,-32,0,0,0.343824 -14806,3304:227,47,-32,0,0,0.31053 -14807,3304:228,48,-32,0,0,0.247301 -14808,3304:229,49,-32,0,0,0.305646 -14809,3305:120,50,-32,0,0,0.34054 -14810,3305:121,51,-32,0,0,0.339663 -14811,3305:122,52,-32,0,0,0.320448 -14812,3305:123,53,-32,0,0,0.265813 -14813,3305:124,54,-32,0,0,0.260929 -14814,3305:225,55,-32,0,0,0.3253 -14815,3305:226,56,-32,0,0,0.308839 -14816,3305:227,57,-32,0,0,0.310091 -14817,3305:228,58,-32,0,0,0.310223 -14818,3305:229,59,-32,0,0,0.309541 -14819,3306:120,60,-32,0,0,0.305211 -14820,3306:121,61,-32,0,0,0.310134 -14821,3306:122,62,-32,0,0,0.308313 -14822,3306:123,63,-32,0,0,0.295431 -14823,3306:124,64,-32,0,0,0.300439 -14824,3306:225,65,-32,0,0,0.292021 -14825,3306:226,66,-32,0,0,0.295367 -14826,3306:227,67,-32,0,0,0.290981 -14827,3306:228,68,-32,0,0,0.277893 -14828,3306:229,69,-32,0,0,0.290473 -14829,3307:120,70,-32,0,0,0.286466 -14830,3307:121,71,-32,0,0,0.293808 -14831,3307:122,72,-32,0,0,0.289563 -14832,3307:124,74,-32,0,0,0.277893 -14833,3307:225,75,-32,0,0,0.286277 -14834,3307:226,76,-32,0,0,0.287728 -14835,3307:227,77,-32,0,0,0.27236 -14836,3307:228,78,-32,0,0,0.264771 -14837,3307:229,79,-32,0,0,0.279255 -14838,3308:120,80,-32,0,0,0.279876 -14839,3308:121,81,-32,0,0,0.264272 -14840,3308:122,82,-32,0,0,0.257693 -14841,3308:123,83,-32,0,0,0.264672 -14842,3308:124,84,-32,0,0,0.26734 -14843,3308:225,85,-32,0,0,0.265172 -14844,3308:226,86,-32,0,0,0.248124 -14845,3308:227,87,-32,0,0,0.253899 -14846,3308:228,88,-32,0,0,0.263673 -14847,3308:229,89,-32,0,0,0.250392 -14848,3309:120,90,-32,0,0,0.249641 -14849,3309:121,91,-32,0,0,0.265032 -14850,3309:122,92,-32,0,0,0.268126 -14851,3309:123,93,-32,0,0,0.266395 -14852,3309:124,94,-32,0,0,0.26212 -14853,3309:225,95,-32,0,0,0.25992 -14854,3309:226,96,-32,0,0,0.258027 -14855,3309:227,97,-32,0,0,0.256183 -14856,3309:228,98,-32,0,0,0.25353 -14857,3309:229,99,-32,0,0,0.251609 -14858,3310:120,100,-32,0,0,0.257182 -14859,3310:121,101,-32,0,0,0.260276 -14860,3310:122,102,-32,0,0,0.259052 -14861,3310:123,103,-32,0,0,0.258146 -14862,3310:124,104,-32,0,0,0.257104 -14863,3310:225,105,-32,0,0,0.258599 -14864,3310:226,106,-32,0,0,0.25587 -14865,3310:227,107,-32,0,0,0.254405 -14866,3310:228,108,-32,0,0,0.253024 -14867,3310:229,109,-32,0,0,0.251706 -14868,3311:120,110,-32,0,0,0.253549 -14869,3311:121,111,-32,0,0,0.252791 -14870,3311:122,112,-32,0,0,0.253685 -14871,3311:123,113,-32,0,0,0.251822 -14872,3311:124,114,-32,0,0,0.255694 -14873,3311:225,115,-32,0,0,0.259664 -14874,3311:226,116,-32,0,0,0.261246 -14875,3311:227,117,-32,0,0,0.261386 -14876,3311:228,118,-32,0,0,0.261386 -14877,3311:229,119,-32,0,0,0.263912 -14878,3312:120,120,-32,0,0,0.265492 -14879,3312:121,121,-32,0,0,0.265412 -14880,3312:122,122,-32,0,0,0.266054 -14881,3312:123,123,-32,0,0,0.269701 -14882,3312:124,124,-32,0,0,0.269458 -14883,3312:225,125,-32,0,0,0.265352 -14884,3312:226,126,-32,0,0,0.265012 -14885,3312:227,127,-32,0,0,0.271282 -14886,3312:228,128,-32,0,0,0.271668 -14887,3312:229,129,-32,0,0,0.271364 -14888,3313:120,130,-32,0,0,0.270511 -14889,3313:121,131,-32,0,0,0.272279 -14890,3313:122,132,-32,0,0,0.273338 -14891,3313:123,133,-32,0,0,0.270876 -14892,3313:124,134,-32,0,0,0.276369 -14893,3313:225,135,-32,0,0,0.283118 -14894,3313:226,136,-32,0,0,0.289183 -14895,3313:227,137,-32,0,0,0.297875 -14896,3313:228,138,-32,0,0,0.295624 -14897,3313:229,139,-32,0,0,0.31172 -14898,3314:120,140,-32,0,0,0.316501 -14899,3314:121,141,-32,0,0,0.307503 -14900,3314:122,142,-32,0,0,0.303752 -14901,3314:123,143,-32,0,0,0.314371 -14902,3314:124,144,-32,0,0,0.321164 -14903,3314:229,149,-32,0,0,0.355316 -14904,3315:120,150,-32,0,0,0.345193 -14905,3315:121,151,-32,0,0,0.357508 -14906,3315:122,152,-32,0,0,0.347262 -14907,3315:123,153,-32,0,0,0.346518 -14908,3315:124,154,-32,0,0,0.335986 -14909,3315:225,155,-32,0,0,0.327468 -14910,3315:226,156,-32,0,0,0.328328 -14911,3315:227,157,-32,0,0,0.326383 -14912,3315:228,158,-32,0,0,0.329008 -14913,3315:229,159,-32,0,0,0.331554 -14914,3316:120,160,-32,0,0,0.329689 -14915,3316:121,161,-32,0,0,0.324016 -14916,3316:122,162,-32,0,0,0.321657 -14917,3316:123,163,-32,0,0,0.317457 -14918,3316:124,164,-32,0,0,0.31183 -14919,3316:225,165,-32,0,0,0.310992 -14920,3316:226,166,-32,0,0,0.311786 -14921,3316:227,167,-32,0,0,0.315258 -14922,3316:228,168,-32,0,0,0.311984 -14923,3316:229,169,-32,0,0,0.314482 -14924,3317:120,170,-32,0,0,0.313419 -14925,3317:121,171,-32,0,0,0.306607 -14926,3317:122,172,-32,0,0,0.301238 -14927,3317:227,177,-32,0,0,0.328601 -14928,3317:228,178,-32,0,0,0.339571 -14929,3317:229,179,-32,0,0,0.32233 -14930,3318:120,180,-32,0,0,0.335047 -14931,5318:110,-180,-31,0,0,0.345727 -14932,5317:219,-179,-31,0,0,0.338903 -14933,5317:218,-178,-31,0,0,0.329962 -14934,5317:217,-177,-31,0,0,0.334956 -14935,5317:216,-176,-31,0,0,0.334475 -14936,5317:215,-175,-31,0,0,0.330144 -14937,5317:114,-174,-31,0,0,0.325345 -14938,5317:113,-173,-31,0,0,0.31837 -14939,5317:112,-172,-31,0,0,0.323926 -14940,5317:111,-171,-31,0,0,0.332374 -14941,5317:110,-170,-31,0,0,0.326428 -14942,5316:219,-169,-31,0,0,0.323116 -14943,5316:218,-168,-31,0,0,0.324556 -14944,5316:217,-167,-31,0,0,0.324443 -14945,5316:216,-166,-31,0,0,0.323678 -14946,5316:215,-165,-31,0,0,0.325435 -14947,5316:114,-164,-31,0,0,0.320716 -14948,5316:113,-163,-31,0,0,0.325886 -14949,5316:112,-162,-31,0,0,0.329349 -14950,5316:111,-161,-31,0,0,0.342874 -14951,5316:110,-160,-31,0,0,0.343986 -14952,5315:219,-159,-31,0,0,0.342203 -14953,5315:218,-158,-31,0,0,0.345611 -14954,5315:217,-157,-31,0,0,0.343963 -14955,5315:216,-156,-31,0,0,0.345425 -14956,5315:215,-155,-31,0,0,0.347845 -14957,5315:114,-154,-31,0,0,0.352333 -14958,5315:113,-153,-31,0,0,0.354893 -14959,5315:112,-152,-31,0,0,0.358713 -14960,5315:111,-151,-31,0,0,0.355834 -14961,5315:110,-150,-31,0,0,0.358453 -14962,5314:219,-149,-31,0,0,0.36044 -14963,5314:218,-148,-31,0,0,0.363786 -14964,5314:217,-147,-31,0,0,0.362052 -14965,5314:216,-146,-31,0,0,0.362265 -14966,5314:215,-145,-31,0,0,0.361648 -14967,5314:114,-144,-31,0,0,0.359967 -14968,5314:113,-143,-31,0,0,0.363168 -14969,5314:112,-142,-31,0,0,0.362218 -14970,5314:111,-141,-31,0,0,0.358052 -14971,5314:110,-140,-31,0,0,0.357956 -14972,5313:219,-139,-31,0,0,0.354117 -14973,5313:218,-138,-31,0,0,0.352756 -14974,5313:217,-137,-31,0,0,0.349852 -14975,5313:216,-136,-31,0,0,0.347123 -14976,5313:215,-135,-31,0,0,0.349782 -14977,5313:114,-134,-31,0,0,0.349151 -14978,5313:113,-133,-31,0,0,0.349688 -14979,5313:112,-132,-31,0,0,0.350039 -14980,5313:111,-131,-31,0,0,0.347985 -14981,5313:110,-130,-31,0,0,0.347542 -14982,5312:219,-129,-31,0,0,0.346611 -14983,5312:218,-128,-31,0,0,0.342411 -14984,5312:217,-127,-31,0,0,0.335162 -14985,5312:216,-126,-31,0,0,0.335436 -14986,5312:215,-125,-31,0,0,0.33649 -14987,5312:114,-124,-31,0,0,0.33842 -14988,5312:113,-123,-31,0,0,0.333675 -14989,5312:112,-122,-31,0,0,0.331941 -14990,5312:111,-121,-31,0,0,0.324984 -14991,5312:110,-120,-31,0,0,0.321545 -14992,5311:219,-119,-31,0,0,0.326315 -14993,5311:218,-118,-31,0,0,0.332488 -14994,5311:217,-117,-31,0,0,0.33594 -14995,5311:216,-116,-31,0,0,0.336995 -14996,5311:215,-115,-31,0,0,0.333104 -14997,5311:114,-114,-31,0,0,0.31962 -14998,5311:113,-113,-31,0,0,0.31508 -14999,5311:112,-112,-31,0,0,0.310486 -15000,5311:111,-111,-31,0,0,0.297037 -15001,5311:110,-110,-31,0,0,0.294257 -15002,5310:219,-109,-31,0,0,0.304993 -15003,5310:218,-108,-31,0,0,0.296995 -15004,5310:217,-107,-31,0,0,0.29183 -15005,5310:216,-106,-31,0,0,0.296887 -15006,5310:215,-105,-31,0,0,0.293446 -15007,5310:114,-104,-31,0,0,0.299899 -15008,5310:113,-103,-31,0,0,0.294683 -15009,5310:112,-102,-31,0,0,0.294384 -15010,5310:111,-101,-31,0,0,0.295945 -15011,5310:110,-100,-31,0,0,0.291341 -15012,5309:219,-99,-31,0,0,0.296116 -15013,5309:218,-98,-31,0,0,0.298348 -15014,5309:217,-97,-31,0,0,0.291002 -15015,5309:216,-96,-31,0,0,0.294107 -15016,5309:215,-95,-31,0,0,0.29268 -15017,5309:114,-94,-31,0,0,0.298649 -15018,5309:113,-93,-31,0,0,0.300762 -15019,5309:112,-92,-31,0,0,0.288971 -15020,5309:111,-91,-31,0,0,0.283806 -15021,5309:110,-90,-31,0,0,0.282825 -15022,5308:219,-89,-31,0,0,0.284287 -15023,5308:218,-88,-31,0,0,0.284663 -15024,5308:217,-87,-31,0,0,0.287265 -15025,5308:216,-86,-31,0,0,0.288845 -15026,5308:215,-85,-31,0,0,0.286844 -15027,5308:114,-84,-31,0,0,0.279483 -15028,5308:113,-83,-31,0,0,0.276267 -15029,5308:112,-82,-31,0,0,0.271648 -15030,5308:111,-81,-31,0,0,0.276965 -15031,5308:110,-80,-31,0,0,0.278863 -15032,5307:219,-79,-31,0,0,0.281099 -15033,5307:218,-78,-31,0,0,0.282763 -15034,5307:217,-77,-31,0,0,0.28817 -15035,5307:216,-76,-31,0,0,0.287433 -15036,5307:215,-75,-31,0,0,0.288233 -15037,5307:114,-74,-31,0,0,0.291045 -15038,5306:112,-62,-31,0,0,0.424414 -15039,5306:111,-61,-31,0,0,0.370662 -15040,5306:110,-60,-31,0,0,0.366072 -15041,5305:219,-59,-31,0,0,0.35567 -15042,5305:218,-58,-31,0,0,0.346797 -15043,5305:217,-57,-31,0,0,0.330553 -15044,5305:216,-56,-31,0,0,0.263175 -15045,5305:215,-55,-31,0,0,0.263713 -15046,5305:114,-54,-31,0,0,0.33711 -15047,5305:113,-53,-31,0,0,0.39358 -15048,5305:112,-52,-31,0,0,0.32397 -15049,5305:111,-51,-31,0,0,0.339295 -15050,5305:110,-50,-31,0,0,0.399383 -15051,5304:219,-49,-31,0,0,0.409553 -15052,5304:218,-48,-31,0,0,0.350179 -15053,5304:217,-47,-31,0,0,0.374288 -15054,5304:216,-46,-31,0,0,0.381849 -15055,5304:215,-45,-31,0,0,0.356847 -15056,5304:114,-44,-31,0,0,0.302104 -15057,5304:113,-43,-31,0,0,0.288381 -15058,5304:112,-42,-31,0,0,0.32103 -15059,5304:111,-41,-31,0,0,0.337432 -15060,5304:110,-40,-31,0,0,0.324016 -15061,5303:219,-39,-31,0,0,0.303709 -15062,5303:218,-38,-31,0,0,0.289648 -15063,5303:217,-37,-31,0,0,0.281681 -15064,5303:216,-36,-31,0,0,0.292042 -15065,5303:215,-35,-31,0,0,0.296159 -15066,5303:114,-34,-31,0,0,0.292042 -15067,5303:113,-33,-31,0,0,0.296266 -15068,5303:112,-32,-31,0,0,0.308203 -15069,5303:111,-31,-31,0,0,0.309695 -15070,5303:110,-30,-31,0,0,0.308401 -15071,5302:219,-29,-31,0,0,0.318348 -15072,5302:218,-28,-31,0,0,0.307284 -15073,5302:217,-27,-31,0,0,0.30593 -15074,5302:216,-26,-31,0,0,0.305777 -15075,5302:215,-25,-31,0,0,0.302797 -15076,5302:114,-24,-31,0,0,0.30033 -15077,5302:113,-23,-31,0,0,0.298413 -15078,5302:112,-22,-31,0,0,0.29166 -15079,5302:111,-21,-31,0,0,0.28527 -15080,5302:110,-20,-31,0,0,0.2621 -15081,5301:219,-19,-31,0,0,0.26087 -15082,5301:218,-18,-31,0,0,0.271546 -15083,5301:217,-17,-31,0,0,0.275405 -15084,5301:216,-16,-31,0,0,0.276389 -15085,5301:215,-15,-31,0,0,0.290769 -15086,5301:114,-14,-31,0,0,0.288739 -15087,5301:113,-13,-31,0,0,0.274851 -15088,5301:112,-12,-31,0,0,0.279607 -15089,5301:111,-11,-31,0,0,0.282721 -15090,5301:110,-10,-31,0,0,0.277851 -15091,5300:219,-9,-31,0,0,0.280373 -15092,5300:218,-8,-31,0,0,0.277439 -15093,5300:217,-7,-31,0,0,0.274565 -15094,5300:216,-6,-31,0,0,0.271851 -15095,5300:215,-5,-31,0,0,0.277233 -15096,5300:114,-4,-31,0,0,0.274954 -15097,5300:113,-3,-31,0,0,0.262081 -15098,5300:112,-2,-31,0,0,0.265973 -15099,5300:111,-1,-31,0,0,0.262219 -15100,3300:111,0,-31,0,0,0.265813 -15101,3300:111,1,-31,0,0,0.258618 -15102,3300:112,2,-31,0,0,0.258244 -15103,3300:113,3,-31,0,0,0.266596 -15104,3300:114,4,-31,0,0,0.28139 -15105,3300:215,5,-31,0,0,0.281099 -15106,3300:216,6,-31,0,0,0.288064 -15107,3300:217,7,-31,0,0,0.308839 -15108,3300:218,8,-31,0,0,0.317546 -15109,3300:219,9,-31,0,0,0.310068 -15110,3301:110,10,-31,0,0,0.307766 -15111,3301:111,11,-31,0,0,0.358926 -15112,3301:112,12,-31,0,0,0.348591 -15113,3301:113,13,-31,0,0,0.366406 -15114,3301:114,14,-31,0,0,0.371957 -15115,3301:215,15,-31,0,0,0.344148 -15116,3301:216,16,-31,0,0,0.347355 -15117,3301:217,17,-31,0,0,0.425418 -15118,3301:218,18,-31,0,0,0.422533 -15119,3301:219,19,-31,0,0,0.430398 -15120,3302:110,20,-31,0,0,0.408983 -15121,3302:111,21,-31,0,0,0.359895 -15122,3302:112,22,-31,0,0,0.379306 -15123,3302:113,23,-31,0,0,0.40784 -15124,3302:114,24,-31,0,0,0.392085 -15125,3302:215,25,-31,0,0,0.364667 -15126,3302:216,26,-31,0,0,0.359753 -15127,3302:217,27,-31,0,0,0.328918 -15128,3302:218,28,-31,0,0,0.325164 -15129,3302:219,29,-31,0,0,0.356989 -15130,3303:110,30,-31,0,0,0.411045 -15131,3303:111,31,-31,0,0,0.414706 -15132,3303:112,32,-31,0,0,0.398816 -15133,3303:113,33,-31,0,0,0.321657 -15134,3303:114,34,-31,0,0,0.322173 -15135,3303:215,35,-31,0,0,0.390128 -15136,3303:216,36,-31,0,0,0.381971 -15137,3303:217,37,-31,0,0,0.383549 -15138,3303:218,38,-31,0,0,0.335505 -15139,3303:219,39,-31,0,0,0.321366 -15140,3304:110,40,-31,0,0,0.353131 -15141,3304:111,41,-31,0,0,0.371046 -15142,3304:112,42,-31,0,0,0.368077 -15143,3304:113,43,-31,0,0,0.345564 -15144,3304:114,44,-31,0,0,0.323431 -15145,3304:215,45,-31,0,0,0.357414 -15146,3304:216,46,-31,0,0,0.352778 -15147,3304:217,47,-31,0,0,0.351607 -15148,3304:218,48,-31,0,0,0.338604 -15149,3304:219,49,-31,0,0,0.339917 -15150,3305:110,50,-31,0,0,0.345843 -15151,3305:111,51,-31,0,0,0.328283 -15152,3305:112,52,-31,0,0,0.336376 -15153,3305:113,53,-31,0,0,0.30087 -15154,3305:114,54,-31,0,0,0.301497 -15155,3305:215,55,-31,0,0,0.330258 -15156,3305:216,56,-31,0,0,0.307722 -15157,3305:217,57,-31,0,0,0.306541 -15158,3305:218,58,-31,0,0,0.302971 -15159,3305:219,59,-31,0,0,0.305254 -15160,3306:110,60,-31,0,0,0.311918 -15161,3306:111,61,-31,0,0,0.313928 -15162,3306:112,62,-31,0,0,0.309849 -15163,3306:113,63,-31,0,0,0.305341 -15164,3306:114,64,-31,0,0,0.309387 -15165,3306:215,65,-31,0,0,0.305211 -15166,3306:216,66,-31,0,0,0.306497 -15167,3306:217,67,-31,0,0,0.305777 -15168,3306:218,68,-31,0,0,0.307831 -15169,3306:219,69,-31,0,0,0.305668 -15170,3307:110,70,-31,0,0,0.294705 -15171,3307:111,71,-31,0,0,0.302342 -15172,3307:112,72,-31,0,0,0.29588 -15173,3307:114,74,-31,0,0,0.298821 -15174,3307:215,75,-31,0,0,0.300892 -15175,3307:216,76,-31,0,0,0.299425 -15176,3307:217,77,-31,0,0,0.29464 -15177,3307:218,78,-31,0,0,0.288528 -15178,3307:219,79,-31,0,0,0.29268 -15179,3308:110,80,-31,0,0,0.290261 -15180,3308:111,81,-31,0,0,0.282471 -15181,3308:112,82,-31,0,0,0.274156 -15182,3308:113,83,-31,0,0,0.28697 -15183,3308:114,84,-31,0,0,0.289204 -15184,3308:215,85,-31,0,0,0.284601 -15185,3308:216,86,-31,0,0,0.277727 -15186,3308:217,87,-31,0,0,0.281494 -15187,3308:218,88,-31,0,0,0.280104 -15188,3308:219,89,-31,0,0,0.270795 -15189,3309:110,90,-31,0,0,0.273441 -15190,3309:111,91,-31,0,0,0.271607 -15191,3309:112,92,-31,0,0,0.270471 -15192,3309:113,93,-31,0,0,0.269822 -15193,3309:114,94,-31,0,0,0.269418 -15194,3309:215,95,-31,0,0,0.268085 -15195,3309:216,96,-31,0,0,0.265172 -15196,3309:217,97,-31,0,0,0.261445 -15197,3309:218,98,-31,0,0,0.259762 -15198,3309:219,99,-31,0,0,0.262637 -15199,3310:110,100,-31,0,0,0.267219 -15200,3310:111,101,-31,0,0,0.266737 -15201,3310:112,102,-31,0,0,0.265813 -15202,3310:113,103,-31,0,0,0.265933 -15203,3310:114,104,-31,0,0,0.266737 -15204,3310:215,105,-31,0,0,0.266676 -15205,3310:216,106,-31,0,0,0.266737 -15206,3310:217,107,-31,0,0,0.265954 -15207,3310:218,108,-31,0,0,0.264252 -15208,3310:219,109,-31,0,0,0.264332 -15209,3311:110,110,-31,0,0,0.265753 -15210,3311:111,111,-31,0,0,0.270045 -15211,3311:112,112,-31,0,0,0.311257 -15212,3311:113,113,-31,0,0,0.277006 -15213,3311:114,114,-31,0,0,0.27039 -15214,3311:215,115,-31,0,0,0.277769 -15215,3311:216,116,-31,0,0,0.28412 -15216,3311:217,117,-31,0,0,0.284998 -15217,3311:218,118,-31,0,0,0.28504 -15218,3311:219,119,-31,0,0,0.285124 -15219,3312:110,120,-31,0,0,0.281785 -15220,3312:111,121,-31,0,0,0.282618 -15221,3312:112,122,-31,0,0,0.289711 -15222,3312:113,123,-31,0,0,0.289901 -15223,3312:114,124,-31,0,0,0.289352 -15224,3312:215,125,-31,0,0,0.283848 -15225,3312:216,126,-31,0,0,0.2794 -15226,3312:217,127,-31,0,0,0.288381 -15227,3312:218,128,-31,0,0,0.285312 -15228,3312:219,129,-31,0,0,0.284182 -15229,3313:110,130,-31,0,0,0.28718 -15230,3313:111,131,-31,0,0,0.290685 -15231,3313:112,132,-31,0,0,0.290303 -15232,3313:113,133,-31,0,0,0.292786 -15233,3313:114,134,-31,0,0,0.294598 -15234,3313:215,135,-31,0,0,0.300654 -15235,3313:216,136,-31,0,0,0.311102 -15236,3313:217,137,-31,0,0,0.30545 -15237,3313:218,138,-31,0,0,0.317969 -15238,3313:219,139,-31,0,0,0.329372 -15239,3314:110,140,-31,0,0,0.325007 -15240,3314:111,141,-31,0,0,0.332876 -15241,3314:112,142,-31,0,0,0.334521 -15242,3314:113,143,-31,0,0,0.335162 -15243,3314:114,144,-31,0,0,0.347635 -15244,3314:215,145,-31,0,0,0.353999 -15245,3314:216,146,-31,0,0,0.343222 -15246,3314:217,147,-31,0,0,0.343291 -15247,3314:218,148,-31,0,0,0.372437 -15248,3314:219,149,-31,0,0,0.3655 -15249,3315:110,150,-31,0,0,0.354422 -15250,3315:111,151,-31,0,0,0.360843 -15251,3315:112,152,-31,0,0,0.38134 -15252,3315:113,153,-31,0,0,0.367982 -15253,3315:114,154,-31,0,0,0.352919 -15254,3315:215,155,-31,0,0,0.352756 -15255,3315:216,156,-31,0,0,0.357862 -15256,3315:217,157,-31,0,0,0.358783 -15257,3315:218,158,-31,0,0,0.359493 -15258,3315:219,159,-31,0,0,0.364952 -15259,3316:110,160,-31,0,0,0.364286 -15260,3316:111,161,-31,0,0,0.362337 -15261,3316:112,162,-31,0,0,0.350554 -15262,3316:113,163,-31,0,0,0.34024 -15263,3316:114,164,-31,0,0,0.33331 -15264,3316:215,165,-31,0,0,0.337501 -15265,3316:216,166,-31,0,0,0.336651 -15266,3316:217,167,-31,0,0,0.330416 -15267,3316:218,168,-31,0,0,0.324173 -15268,3316:219,169,-31,0,0,0.323318 -15269,3317:110,170,-31,0,0,0.323431 -15270,3317:111,171,-31,0,0,0.322599 -15271,3317:112,172,-31,0,0,0.311235 -15272,3317:113,173,-31,0,0,0.308795 -15273,3317:114,174,-31,0,0,0.312271 -15274,3317:215,175,-31,0,0,0.332922 -15275,3317:218,178,-31,0,0,0.378556 -15276,3317:219,179,-31,0,0,0.367767 -15277,3318:110,180,-31,0,0,0.345727 -15278,5318:100,-180,-30,0,0,0.369967 -15279,5317:209,-179,-30,0,0,0.347402 -15280,5317:208,-178,-30,0,0,0.345588 -15281,5317:207,-177,-30,0,0,0.345866 -15282,5317:206,-176,-30,0,0,0.338259 -15283,5317:205,-175,-30,0,0,0.335574 -15284,5317:104,-174,-30,0,0,0.337018 -15285,5317:103,-173,-30,0,0,0.340078 -15286,5317:102,-172,-30,0,0,0.351396 -15287,5317:101,-171,-30,0,0,0.349338 -15288,5317:100,-170,-30,0,0,0.346215 -15289,5316:209,-169,-30,0,0,0.340725 -15290,5316:208,-168,-30,0,0,0.337225 -15291,5316:207,-167,-30,0,0,0.336628 -15292,5316:206,-166,-30,0,0,0.340309 -15293,5316:205,-165,-30,0,0,0.343198 -15294,5316:104,-164,-30,0,0,0.345425 -15295,5316:103,-163,-30,0,0,0.349571 -15296,5316:102,-162,-30,0,0,0.350296 -15297,5316:101,-161,-30,0,0,0.355481 -15298,5316:100,-160,-30,0,0,0.355222 -15299,5315:209,-159,-30,0,0,0.358406 -15300,5315:208,-158,-30,0,0,0.358359 -15301,5315:207,-157,-30,0,0,0.35454 -15302,5315:206,-156,-30,0,0,0.354305 -15303,5315:205,-155,-30,0,0,0.35824 -15304,5315:104,-154,-30,0,0,0.363763 -15305,5315:103,-153,-30,0,0,0.365357 -15306,5315:102,-152,-30,0,0,0.365286 -15307,5315:101,-151,-30,0,0,0.367002 -15308,5315:100,-150,-30,0,0,0.36968 -15309,5314:209,-149,-30,0,0,0.371837 -15310,5314:208,-148,-30,0,0,0.370231 -15311,5314:207,-147,-30,0,0,0.370207 -15312,5314:206,-146,-30,0,0,0.374048 -15313,5314:205,-145,-30,0,0,0.379935 -15314,5314:104,-144,-30,0,0,0.377591 -15315,5314:103,-143,-30,0,0,0.375107 -15316,5314:102,-142,-30,0,0,0.375492 -15317,5314:101,-141,-30,0,0,0.37566 -15318,5314:100,-140,-30,0,0,0.372653 -15319,5313:209,-139,-30,0,0,0.371933 -15320,5313:208,-138,-30,0,0,0.372413 -15321,5313:207,-137,-30,0,0,0.368722 -15322,5313:206,-136,-30,0,0,0.36674 -15323,5313:205,-135,-30,0,0,0.367599 -15324,5313:104,-134,-30,0,0,0.363026 -15325,5313:103,-133,-30,0,0,0.366215 -15326,5313:102,-132,-30,0,0,0.36153 -15327,5313:101,-131,-30,0,0,0.359375 -15328,5313:100,-130,-30,0,0,0.35574 -15329,5312:209,-129,-30,0,0,0.35567 -15330,5312:208,-128,-30,0,0,0.350764 -15331,5312:207,-127,-30,0,0,0.347355 -15332,5312:206,-126,-30,0,0,0.3471 -15333,5312:205,-125,-30,0,0,0.348125 -15334,5312:104,-124,-30,0,0,0.343291 -15335,5312:103,-123,-30,0,0,0.344682 -15336,5312:102,-122,-30,0,0,0.341186 -15337,5312:101,-121,-30,0,0,0.342781 -15338,5312:100,-120,-30,0,0,0.345518 -15339,5311:209,-119,-30,0,0,0.343013 -15340,5311:208,-118,-30,0,0,0.34181 -15341,5311:207,-117,-30,0,0,0.34336 -15342,5311:206,-116,-30,0,0,0.342712 -15343,5311:205,-115,-30,0,0,0.334201 -15344,5311:104,-114,-30,0,0,0.330871 -15345,5311:103,-113,-30,0,0,0.334017 -15346,5311:102,-112,-30,0,0,0.330439 -15347,5311:101,-111,-30,0,0,0.313707 -15348,5311:100,-110,-30,0,0,0.323026 -15349,5310:209,-109,-30,0,0,0.318527 -15350,5310:208,-108,-30,0,0,0.319732 -15351,5310:207,-107,-30,0,0,0.321478 -15352,5310:206,-106,-30,0,0,0.310883 -15353,5310:205,-105,-30,0,0,0.31875 -15354,5310:104,-104,-30,0,0,0.315435 -15355,5310:103,-103,-30,0,0,0.312535 -15356,5310:102,-102,-30,0,0,0.314947 -15357,5310:101,-101,-30,0,0,0.310332 -15358,5310:100,-100,-30,0,0,0.31477 -15359,5309:209,-99,-30,0,0,0.307437 -15360,5309:208,-98,-30,0,0,0.307153 -15361,5309:207,-97,-30,0,0,0.304644 -15362,5309:206,-96,-30,0,0,0.307175 -15363,5309:205,-95,-30,0,0,0.317813 -15364,5309:104,-94,-30,0,0,0.317524 -15365,5309:103,-93,-30,0,0,0.312315 -15366,5309:102,-92,-30,0,0,0.307569 -15367,5309:101,-91,-30,0,0,0.306017 -15368,5309:100,-90,-30,0,0,0.304188 -15369,5308:209,-89,-30,0,0,0.296116 -15370,5308:208,-88,-30,0,0,0.29809 -15371,5308:207,-87,-30,0,0,0.303992 -15372,5308:206,-86,-30,0,0,0.307088 -15373,5308:205,-85,-30,0,0,0.303514 -15374,5308:104,-84,-30,0,0,0.29633 -15375,5308:103,-83,-30,0,0,0.291787 -15376,5308:102,-82,-30,0,0,0.294961 -15377,5308:101,-81,-30,0,0,0.293787 -15378,5308:100,-80,-30,0,0,0.30033 -15379,5307:209,-79,-30,0,0,0.300439 -15380,5307:208,-78,-30,0,0,0.295773 -15381,5307:207,-77,-30,0,0,0.301281 -15382,5307:206,-76,-30,0,0,0.301887 -15383,5307:205,-75,-30,0,0,0.298133 -15384,5307:104,-74,-30,0,0,0.307021 -15385,5306:100,-60,-30,0,0,0.393262 -15386,5305:209,-59,-30,0,0,0.375396 -15387,5305:208,-58,-30,0,0,0.384836 -15388,5305:207,-57,-30,0,0,0.362527 -15389,5305:206,-56,-30,0,0,0.316523 -15390,5305:205,-55,-30,0,0,0.271709 -15391,5305:104,-54,-30,0,0,0.340194 -15392,5305:103,-53,-30,0,0,0.401356 -15393,5305:102,-52,-30,0,0,0.351865 -15394,5305:101,-51,-30,0,0,0.360937 -15395,5305:100,-50,-30,0,0,0.411518 -15396,5304:209,-49,-30,0,0,0.407146 -15397,5304:208,-48,-30,0,0,0.385445 -15398,5304:207,-47,-30,0,0,0.403085 -15399,5304:206,-46,-30,0,0,0.396969 -15400,5304:205,-45,-30,0,0,0.381437 -15401,5304:104,-44,-30,0,0,0.361222 -15402,5304:103,-43,-30,0,0,0.351677 -15403,5304:102,-42,-30,0,0,0.348428 -15404,5304:101,-41,-30,0,0,0.364309 -15405,5304:100,-40,-30,0,0,0.33315 -15406,5303:209,-39,-30,0,0,0.300806 -15407,5303:208,-38,-30,0,0,0.303579 -15408,5303:207,-37,-30,0,0,0.312226 -15409,5303:206,-36,-30,0,0,0.326745 -15410,5303:205,-35,-30,0,0,0.332146 -15411,5303:104,-34,-30,0,0,0.332739 -15412,5303:103,-33,-30,0,0,0.324398 -15413,5303:102,-32,-30,0,0,0.322622 -15414,5303:101,-31,-30,0,0,0.322555 -15415,5303:100,-30,-30,0,0,0.322061 -15416,5302:209,-29,-30,0,0,0.316212 -15417,5302:208,-28,-30,0,0,0.310728 -15418,5302:207,-27,-30,0,0,0.308247 -15419,5302:206,-26,-30,0,0,0.308269 -15420,5302:205,-25,-30,0,0,0.305887 -15421,5302:104,-24,-30,0,0,0.304079 -15422,5302:103,-23,-30,0,0,0.302732 -15423,5302:102,-22,-30,0,0,0.302494 -15424,5302:101,-21,-30,0,0,0.301476 -15425,5302:100,-20,-30,0,0,0.299748 -15426,5301:209,-19,-30,0,0,0.303275 -15427,5301:208,-18,-30,0,0,0.312381 -15428,5301:207,-17,-30,0,0,0.306759 -15429,5301:206,-16,-30,0,0,0.303687 -15430,5301:205,-15,-30,0,0,0.301865 -15431,5301:104,-14,-30,0,0,0.311675 -15432,5301:103,-13,-30,0,0,0.306737 -15433,5301:102,-12,-30,0,0,0.297982 -15434,5301:101,-11,-30,0,0,0.292935 -15435,5301:100,-10,-30,0,0,0.295517 -15436,5300:209,-9,-30,0,0,0.293808 -15437,5300:208,-8,-30,0,0,0.302949 -15438,5300:207,-7,-30,0,0,0.297381 -15439,5300:206,-6,-30,0,0,0.30271 -15440,5300:205,-5,-30,0,0,0.294598 -15441,5300:104,-4,-30,0,0,0.290155 -15442,5300:103,-3,-30,0,0,0.277336 -15443,5300:102,-2,-30,0,0,0.283806 -15444,5300:101,-1,-30,0,0,0.294235 -15445,3300:101,0,-30,0,0,0.295153 -15446,3300:101,1,-30,0,0,0.280477 -15447,3300:102,2,-30,0,0,0.286004 -15448,3300:103,3,-30,0,0,0.284454 -15449,3300:104,4,-30,0,0,0.289035 -15450,3300:205,5,-30,0,0,0.298413 -15451,3300:206,6,-30,0,0,0.30321 -15452,3300:207,7,-30,0,0,0.302126 -15453,3300:208,8,-30,0,0,0.321792 -15454,3300:209,9,-30,0,0,0.323139 -15455,3301:100,10,-30,0,0,0.351489 -15456,3301:101,11,-30,0,0,0.379137 -15457,3301:102,12,-30,0,0,0.38598 -15458,3301:103,13,-30,0,0,0.387589 -15459,3301:104,14,-30,0,0,0.391743 -15460,3301:205,15,-30,0,0,0.387491 -15461,3301:206,16,-30,0,0,0.405857 -15462,3301:207,17,-30,0,0,0.432767 -15463,3301:208,18,-30,0,0,0.425996 -15464,3301:209,19,-30,0,0,0.429592 -15465,3302:100,20,-30,0,0,0.421656 -15466,3302:101,21,-30,0,0,0.415978 -15467,3302:102,22,-30,0,0,0.42316 -15468,3302:103,23,-30,0,0,0.426624 -15469,3302:104,24,-30,0,0,0.389102 -15470,3302:205,25,-30,0,0,0.398964 -15471,3302:206,26,-30,0,0,0.392796 -15472,3302:207,27,-30,0,0,0.333058 -15473,3302:208,28,-30,0,0,0.35574 -15474,3302:209,29,-30,0,0,0.401356 -15475,3303:100,30,-30,0,0,0.417152 -15476,3303:101,31,-30,0,0,0.402516 -15477,3303:102,32,-30,0,0,0.414058 -15478,3303:103,33,-30,0,0,0.327129 -15479,3303:104,34,-30,0,0,0.340217 -15480,3303:205,35,-30,0,0,0.401183 -15481,3303:206,36,-30,0,0,0.378533 -15482,3303:207,37,-30,0,0,0.377059 -15483,3303:208,38,-30,0,0,0.365452 -15484,3303:209,39,-30,0,0,0.341071 -15485,3304:100,40,-30,0,0,0.375107 -15486,3304:101,41,-30,0,0,0.365977 -15487,3304:102,42,-30,0,0,0.361625 -15488,3304:103,43,-30,0,0,0.365238 -15489,3304:104,44,-30,0,0,0.36581 -15490,3304:205,45,-30,0,0,0.358996 -15491,3304:206,46,-30,0,0,0.355552 -15492,3304:207,47,-30,0,0,0.35238 -15493,3304:208,48,-30,0,0,0.356117 -15494,3304:209,49,-30,0,0,0.358335 -15495,3305:100,50,-30,0,0,0.348218 -15496,3305:101,51,-30,0,0,0.340378 -15497,3305:102,52,-30,0,0,0.337592 -15498,3305:103,53,-30,0,0,0.320359 -15499,3305:104,54,-30,0,0,0.33617 -15500,3305:205,55,-30,0,0,0.33918 -15501,3305:206,56,-30,0,0,0.318705 -15502,3305:207,57,-30,0,0,0.322083 -15503,3305:208,58,-30,0,0,0.328713 -15504,3305:209,59,-30,0,0,0.323701 -15505,3306:100,60,-30,0,0,0.320359 -15506,3306:101,61,-30,0,0,0.322914 -15507,3306:102,62,-30,0,0,0.328464 -15508,3306:103,63,-30,0,0,0.327264 -15509,3306:104,64,-30,0,0,0.321836 -15510,3306:205,65,-30,0,0,0.318616 -15511,3306:206,66,-30,0,0,0.322465 -15512,3306:207,67,-30,0,0,0.320492 -15513,3306:208,68,-30,0,0,0.313707 -15514,3306:209,69,-30,0,0,0.314548 -15515,3307:100,70,-30,0,0,0.31457 -15516,3307:101,71,-30,0,0,0.313818 -15517,3307:102,72,-30,0,0,0.311278 -15518,3307:104,74,-30,0,0,0.313773 -15519,3307:205,75,-30,0,0,0.311631 -15520,3307:206,76,-30,0,0,0.300611 -15521,3307:207,77,-30,0,0,0.295068 -15522,3307:208,78,-30,0,0,0.295367 -15523,3307:209,79,-30,0,0,0.301043 -15524,3308:100,80,-30,0,0,0.296266 -15525,3308:101,81,-30,0,0,0.294939 -15526,3308:102,82,-30,0,0,0.296394 -15527,3308:103,83,-30,0,0,0.294576 -15528,3308:104,84,-30,0,0,0.292106 -15529,3308:205,85,-30,0,0,0.291597 -15530,3308:206,86,-30,0,0,0.296501 -15531,3308:207,87,-30,0,0,0.295324 -15532,3308:208,88,-30,0,0,0.29432 -15533,3308:209,89,-30,0,0,0.291915 -15534,3309:100,90,-30,0,0,0.285354 -15535,3309:101,91,-30,0,0,0.286277 -15536,3309:102,92,-30,0,0,0.285774 -15537,3309:103,93,-30,0,0,0.284287 -15538,3309:104,94,-30,0,0,0.28293 -15539,3309:205,95,-30,0,0,0.280913 -15540,3309:206,96,-30,0,0,0.277913 -15541,3309:207,97,-30,0,0,0.276965 -15542,3309:208,98,-30,0,0,0.279772 -15543,3309:209,99,-30,0,0,0.277789 -15544,3310:100,100,-30,0,0,0.276657 -15545,3310:101,101,-30,0,0,0.279876 -15546,3310:102,102,-30,0,0,0.27713 -15547,3310:103,103,-30,0,0,0.277893 -15548,3310:104,104,-30,0,0,0.28191 -15549,3310:205,105,-30,0,0,0.279793 -15550,3310:206,106,-30,0,0,0.278614 -15551,3310:207,107,-30,0,0,0.276822 -15552,3310:208,108,-30,0,0,0.277851 -15553,3310:209,109,-30,0,0,0.280373 -15554,3311:100,110,-30,0,0,0.302754 -15555,3311:101,111,-30,0,0,0.31962 -15556,3311:102,112,-30,0,0,0.326338 -15557,3311:103,113,-30,0,0,0.319688 -15558,3311:104,114,-30,0,0,0.329235 -15559,3311:205,115,-30,0,0,0.313928 -15560,3311:206,116,-30,0,0,0.30139 -15561,3311:207,117,-30,0,0,0.309981 -15562,3311:208,118,-30,0,0,0.305515 -15563,3311:209,119,-30,0,0,0.305385 -15564,3312:100,120,-30,0,0,0.308686 -15565,3312:101,121,-30,0,0,0.317435 -15566,3312:102,122,-30,0,0,0.309695 -15567,3312:103,123,-30,0,0,0.305559 -15568,3312:104,124,-30,0,0,0.308313 -15569,3312:205,125,-30,0,0,0.311675 -15570,3312:206,126,-30,0,0,0.311081 -15571,3312:207,127,-30,0,0,0.310244 -15572,3312:208,128,-30,0,0,0.303253 -15573,3312:209,129,-30,0,0,0.298735 -15574,3313:100,130,-30,0,0,0.303796 -15575,3313:101,131,-30,0,0,0.308401 -15576,3313:102,132,-30,0,0,0.31579 -15577,3313:103,133,-30,0,0,0.311102 -15578,3313:104,134,-30,0,0,0.320761 -15579,3313:205,135,-30,0,0,0.334429 -15580,3313:206,136,-30,0,0,0.330371 -15581,3313:207,137,-30,0,0,0.326496 -15582,3313:208,138,-30,0,0,0.327333 -15583,3313:209,139,-30,0,0,0.342087 -15584,3314:100,140,-30,0,0,0.340147 -15585,3314:101,141,-30,0,0,0.35156 -15586,3314:102,142,-30,0,0,0.357248 -15587,3314:103,143,-30,0,0,0.363382 -15588,3314:104,144,-30,0,0,0.367361 -15589,3314:205,145,-30,0,0,0.363263 -15590,3314:206,146,-30,0,0,0.375396 -15591,3314:207,147,-30,0,0,0.38384 -15592,3314:208,148,-30,0,0,0.366597 -15593,3314:209,149,-30,0,0,0.389737 -15594,3315:100,150,-30,0,0,0.423686 -15595,3315:101,151,-30,0,0,0.427152 -15596,3315:102,152,-30,0,0,0.425418 -15597,3315:103,153,-30,0,0,0.387784 -15598,3315:104,154,-30,0,0,0.411742 -15599,3315:205,155,-30,0,0,0.382116 -15600,3315:206,156,-30,0,0,0.409851 -15601,3315:207,157,-30,0,0,0.386663 -15602,3315:208,158,-30,0,0,0.39211 -15603,3315:209,159,-30,0,0,0.390984 -15604,3316:100,160,-30,0,0,0.389566 -15605,3316:101,161,-30,0,0,0.383718 -15606,3316:102,162,-30,0,0,0.375685 -15607,3316:103,163,-30,0,0,0.362931 -15608,3316:104,164,-30,0,0,0.359351 -15609,3316:205,165,-30,0,0,0.356447 -15610,3316:206,166,-30,0,0,0.352122 -15611,3316:207,167,-30,0,0,0.348941 -15612,3316:208,168,-30,0,0,0.348171 -15613,3316:209,169,-30,0,0,0.340932 -15614,3317:100,170,-30,0,0,0.338328 -15615,3317:101,171,-30,0,0,0.336766 -15616,3317:102,172,-30,0,0,0.335276 -15617,3317:103,173,-30,0,0,0.332238 -15618,3317:104,174,-30,0,0,0.343592 -15619,3317:209,179,-30,0,0,0.389346 -15620,3318:100,180,-30,0,0,0.369967 -15621,5218:390,-180,-29,0,0,0.392821 -15622,5217:499,-179,-29,0,0,0.379282 -15623,5217:498,-178,-29,0,0,0.364214 -15624,5217:497,-177,-29,0,0,0.355716 -15625,5217:496,-176,-29,0,0,0.352263 -15626,5217:495,-175,-29,0,0,0.350086 -15627,5217:394,-174,-29,0,0,0.351302 -15628,5217:393,-173,-29,0,0,0.352451 -15629,5217:392,-172,-29,0,0,0.363097 -15630,5217:391,-171,-29,0,0,0.371117 -15631,5217:390,-170,-29,0,0,0.367623 -15632,5216:499,-169,-29,0,0,0.358571 -15633,5216:498,-168,-29,0,0,0.354516 -15634,5216:497,-167,-29,0,0,0.348754 -15635,5216:496,-166,-29,0,0,0.355575 -15636,5216:495,-165,-29,0,0,0.359398 -15637,5216:394,-164,-29,0,0,0.360582 -15638,5216:393,-163,-29,0,0,0.366668 -15639,5216:392,-162,-29,0,0,0.367767 -15640,5216:391,-161,-29,0,0,0.366311 -15641,5216:390,-160,-29,0,0,0.370039 -15642,5215:499,-159,-29,0,0,0.369129 -15643,5215:498,-158,-29,0,0,0.369081 -15644,5215:497,-157,-29,0,0,0.371765 -15645,5215:496,-156,-29,0,0,0.367575 -15646,5215:495,-155,-29,0,0,0.367838 -15647,5215:394,-154,-29,0,0,0.372437 -15648,5215:393,-153,-29,0,0,0.374216 -15649,5215:392,-152,-29,0,0,0.373879 -15650,5215:391,-151,-29,0,0,0.379306 -15651,5215:390,-150,-29,0,0,0.382893 -15652,5214:499,-149,-29,0,0,0.385056 -15653,5214:498,-148,-29,0,0,0.381995 -15654,5214:497,-147,-29,0,0,0.381582 -15655,5214:496,-146,-29,0,0,0.38367 -15656,5214:495,-145,-29,0,0,0.383646 -15657,5214:394,-144,-29,0,0,0.386443 -15658,5214:393,-143,-29,0,0,0.387711 -15659,5214:392,-142,-29,0,0,0.38715 -15660,5214:391,-141,-29,0,0,0.385907 -15661,5214:390,-140,-29,0,0,0.384739 -15662,5213:499,-139,-29,0,0,0.385713 -15663,5213:498,-138,-29,0,0,0.383791 -15664,5213:497,-137,-29,0,0,0.379645 -15665,5213:496,-136,-29,0,0,0.377059 -15666,5213:495,-135,-29,0,0,0.379113 -15667,5213:394,-134,-29,0,0,0.372149 -15668,5213:393,-133,-29,0,0,0.375443 -15669,5213:392,-132,-29,0,0,0.369775 -15670,5213:391,-131,-29,0,0,0.364833 -15671,5213:390,-130,-29,0,0,0.363596 -15672,5212:499,-129,-29,0,0,0.363525 -15673,5212:498,-128,-29,0,0,0.361198 -15674,5212:497,-127,-29,0,0,0.360203 -15675,5212:496,-126,-29,0,0,0.358122 -15676,5212:495,-125,-29,0,0,0.357084 -15677,5212:394,-124,-29,0,0,0.35673 -15678,5212:393,-123,-29,0,0,0.352263 -15679,5212:392,-122,-29,0,0,0.349268 -15680,5212:391,-121,-29,0,0,0.352122 -15681,5212:390,-120,-29,0,0,0.354211 -15682,5211:499,-119,-29,0,0,0.353366 -15683,5211:498,-118,-29,0,0,0.355552 -15684,5211:497,-117,-29,0,0,0.3564 -15685,5211:496,-116,-29,0,0,0.351958 -15686,5211:495,-115,-29,0,0,0.345936 -15687,5211:394,-114,-29,0,0,0.347193 -15688,5211:393,-113,-29,0,0,0.345634 -15689,5211:392,-112,-29,0,0,0.342157 -15690,5211:391,-111,-29,0,0,0.335139 -15691,5211:390,-110,-29,0,0,0.341094 -15692,5210:499,-109,-29,0,0,0.347262 -15693,5210:498,-108,-29,0,0,0.340055 -15694,5210:497,-107,-29,0,0,0.334063 -15695,5210:496,-106,-29,0,0,0.330644 -15696,5210:495,-105,-29,0,0,0.332533 -15697,5210:394,-104,-29,0,0,0.33003 -15698,5210:393,-103,-29,0,0,0.329145 -15699,5210:392,-102,-29,0,0,0.321478 -15700,5210:391,-101,-29,0,0,0.328057 -15701,5210:390,-100,-29,0,0,0.323026 -15702,5209:499,-99,-29,0,0,0.320671 -15703,5209:498,-98,-29,0,0,0.325592 -15704,5209:497,-97,-29,0,0,0.327717 -15705,5209:496,-96,-29,0,0,0.325548 -15706,5209:495,-95,-29,0,0,0.331873 -15707,5209:394,-94,-29,0,0,0.326948 -15708,5209:393,-93,-29,0,0,0.331599 -15709,5209:392,-92,-29,0,0,0.324714 -15710,5209:391,-91,-29,0,0,0.321231 -15711,5209:390,-90,-29,0,0,0.317836 -15712,5208:499,-89,-29,0,0,0.322555 -15713,5208:498,-88,-29,0,0,0.315213 -15714,5208:497,-87,-29,0,0,0.312271 -15715,5208:496,-86,-29,0,0,0.31904 -15716,5208:495,-85,-29,0,0,0.320716 -15717,5208:394,-84,-29,0,0,0.316167 -15718,5208:393,-83,-29,0,0,0.315058 -15719,5208:392,-82,-29,0,0,0.319643 -15720,5208:391,-81,-29,0,0,0.317992 -15721,5208:390,-80,-29,0,0,0.3128 -15722,5207:499,-79,-29,0,0,0.315279 -15723,5207:498,-78,-29,0,0,0.315612 -15724,5207:497,-77,-29,0,0,0.318727 -15725,5207:496,-76,-29,0,0,0.315901 -15726,5207:495,-75,-29,0,0,0.315169 -15727,5207:394,-74,-29,0,0,0.319665 -15728,5205:497,-57,-29,0,0,0.432969 -15729,5205:496,-56,-29,0,0,0.40856 -15730,5205:495,-55,-29,0,0,0.307065 -15731,5205:394,-54,-29,0,0,0.336766 -15732,5205:393,-53,-29,0,0,0.397216 -15733,5205:392,-52,-29,0,0,0.391229 -15734,5205:391,-51,-29,0,0,0.43711 -15735,5205:390,-50,-29,0,0,0.432944 -15736,5204:499,-49,-29,0,0,0.432313 -15737,5204:498,-48,-29,0,0,0.394218 -15738,5204:497,-47,-29,0,0,0.39412 -15739,5204:496,-46,-29,0,0,0.411194 -15740,5204:495,-45,-29,0,0,0.418852 -15741,5204:394,-44,-29,0,0,0.386785 -15742,5204:393,-43,-29,0,0,0.346238 -15743,5204:392,-42,-29,0,0,0.350881 -15744,5204:391,-41,-29,0,0,0.357013 -15745,5204:390,-40,-29,0,0,0.372894 -15746,5203:499,-39,-29,0,0,0.356094 -15747,5203:498,-38,-29,0,0,0.353577 -15748,5203:497,-37,-29,0,0,0.347286 -15749,5203:496,-36,-29,0,0,0.343268 -15750,5203:495,-35,-29,0,0,0.33688 -15751,5203:394,-34,-29,0,0,0.335826 -15752,5203:393,-33,-29,0,0,0.339848 -15753,5203:392,-32,-29,0,0,0.349432 -15754,5203:391,-31,-29,0,0,0.342319 -15755,5203:390,-30,-29,0,0,0.338006 -15756,5202:499,-29,-29,0,0,0.33372 -15757,5202:498,-28,-29,0,0,0.32424 -15758,5202:497,-27,-29,0,0,0.329054 -15759,5202:496,-26,-29,0,0,0.330121 -15760,5202:495,-25,-29,0,0,0.314326 -15761,5202:394,-24,-29,0,0,0.316501 -15762,5202:393,-23,-29,0,0,0.323498 -15763,5202:392,-22,-29,0,0,0.327174 -15764,5202:391,-21,-29,0,0,0.327151 -15765,5202:390,-20,-29,0,0,0.335482 -15766,5201:499,-19,-29,0,0,0.327717 -15767,5201:498,-18,-29,0,0,0.325458 -15768,5201:497,-17,-29,0,0,0.311742 -15769,5201:496,-16,-29,0,0,0.312535 -15770,5201:495,-15,-29,0,0,0.317925 -15771,5201:394,-14,-29,0,0,0.326248 -15772,5201:393,-13,-29,0,0,0.321522 -15773,5201:392,-12,-29,0,0,0.31904 -15774,5201:391,-11,-29,0,0,0.319174 -15775,5201:390,-10,-29,0,0,0.315612 -15776,5200:499,-9,-29,0,0,0.319822 -15777,5200:498,-8,-29,0,0,0.316901 -15778,5200:497,-7,-29,0,0,0.313685 -15779,5200:496,-6,-29,0,0,0.319598 -15780,5200:495,-5,-29,0,0,0.321433 -15781,5200:394,-4,-29,0,0,0.32224 -15782,5200:393,-3,-29,0,0,0.310376 -15783,5200:392,-2,-29,0,0,0.309519 -15784,5200:391,-1,-29,0,0,0.321634 -15785,3200:391,0,-29,0,0,0.316968 -15786,3200:391,1,-29,0,0,0.310509 -15787,3200:392,2,-29,0,0,0.314017 -15788,3200:393,3,-29,0,0,0.311345 -15789,3200:394,4,-29,0,0,0.303905 -15790,3200:495,5,-29,0,0,0.305014 -15791,3200:496,6,-29,0,0,0.303318 -15792,3200:497,7,-29,0,0,0.313662 -15793,3200:498,8,-29,0,0,0.331827 -15794,3200:499,9,-29,0,0,0.334132 -15795,3201:390,10,-29,0,0,0.343314 -15796,3201:391,11,-29,0,0,0.35947 -15797,3201:392,12,-29,0,0,0.367122 -15798,3201:393,13,-29,0,0,0.381801 -15799,3201:394,14,-29,0,0,0.387711 -15800,3201:495,15,-29,0,0,0.389517 -15801,3201:496,16,-29,0,0,0.391278 -15802,3201:497,17,-29,0,0,0.418477 -15803,3201:498,18,-29,0,0,0.446638 -15804,3201:499,19,-29,0,0,0.455338 -15805,3202:390,20,-29,0,0,0.442021 -15806,3202:391,21,-29,0,0,0.435064 -15807,3202:392,22,-29,0,0,0.438148 -15808,3202:393,23,-29,0,0,0.433322 -15809,3202:394,24,-29,0,0,0.420403 -15810,3202:495,25,-29,0,0,0.433297 -15811,3202:496,26,-29,0,0,0.430675 -15812,3202:497,27,-29,0,0,0.419677 -15813,3202:498,28,-29,0,0,0.370326 -15814,3202:499,29,-29,0,0,0.427956 -15815,3203:390,30,-29,0,0,0.422031 -15816,3203:391,31,-29,0,0,0.402665 -15817,3203:392,32,-29,0,0,0.404396 -15818,3203:393,33,-29,0,0,0.410871 -15819,3203:394,34,-29,0,0,0.41538 -15820,3203:495,35,-29,0,0,0.393434 -15821,3203:496,36,-29,0,0,0.383694 -15822,3203:497,37,-29,0,0,0.379766 -15823,3203:498,38,-29,0,0,0.380226 -15824,3203:499,39,-29,0,0,0.38316 -15825,3204:390,40,-29,0,0,0.381098 -15826,3204:391,41,-29,0,0,0.366382 -15827,3204:392,42,-29,0,0,0.368603 -15828,3204:393,43,-29,0,0,0.366907 -15829,3204:394,44,-29,0,0,0.365071 -15830,3204:495,45,-29,0,0,0.364309 -15831,3204:496,46,-29,0,0,0.367122 -15832,3204:497,47,-29,0,0,0.364 -15833,3204:498,48,-29,0,0,0.357296 -15834,3204:499,49,-29,0,0,0.349595 -15835,3205:390,50,-29,0,0,0.345076 -15836,3205:391,51,-29,0,0,0.344102 -15837,3205:392,52,-29,0,0,0.346308 -15838,3205:393,53,-29,0,0,0.347822 -15839,3205:394,54,-29,0,0,0.34568 -15840,3205:495,55,-29,0,0,0.342504 -15841,3205:496,56,-29,0,0,0.32885 -15842,3205:497,57,-29,0,0,0.331827 -15843,3205:498,58,-29,0,0,0.338466 -15844,3205:499,59,-29,0,0,0.334178 -15845,3206:390,60,-29,0,0,0.33119 -15846,3206:391,61,-29,0,0,0.33404 -15847,3206:392,62,-29,0,0,0.33711 -15848,3206:393,63,-29,0,0,0.335207 -15849,3206:394,64,-29,0,0,0.33888 -15850,3206:495,65,-29,0,0,0.337822 -15851,3206:496,66,-29,0,0,0.335803 -15852,3206:497,67,-29,0,0,0.333035 -15853,3206:498,68,-29,0,0,0.330598 -15854,3206:499,69,-29,0,0,0.331782 -15855,3207:390,70,-29,0,0,0.327875 -15856,3207:391,71,-29,0,0,0.327513 -15857,3207:392,72,-29,0,0,0.325841 -15858,3207:394,74,-29,0,0,0.323318 -15859,3207:495,75,-29,0,0,0.323408 -15860,3207:496,76,-29,0,0,0.322599 -15861,3207:497,77,-29,0,0,0.317969 -15862,3207:498,78,-29,0,0,0.31205 -15863,3207:499,79,-29,0,0,0.313662 -15864,3208:390,80,-29,0,0,0.308247 -15865,3208:391,81,-29,0,0,0.309036 -15866,3208:392,82,-29,0,0,0.312624 -15867,3208:393,83,-29,0,0,0.314504 -15868,3208:394,84,-29,0,0,0.315346 -15869,3208:495,85,-29,0,0,0.315302 -15870,3208:496,86,-29,0,0,0.311918 -15871,3208:497,87,-29,0,0,0.306825 -15872,3208:498,88,-29,0,0,0.303492 -15873,3208:499,89,-29,0,0,0.300935 -15874,3209:390,90,-29,0,0,0.300633 -15875,3209:391,91,-29,0,0,0.301909 -15876,3209:392,92,-29,0,0,0.301173 -15877,3209:393,93,-29,0,0,0.299145 -15878,3209:394,94,-29,0,0,0.293254 -15879,3209:495,95,-29,0,0,0.29464 -15880,3209:496,96,-29,0,0,0.295281 -15881,3209:497,97,-29,0,0,0.295303 -15882,3209:498,98,-29,0,0,0.300395 -15883,3209:499,99,-29,0,0,0.296523 -15884,3210:390,100,-29,0,0,0.296694 -15885,3210:391,101,-29,0,0,0.29285 -15886,3210:392,102,-29,0,0,0.292489 -15887,3210:393,103,-29,0,0,0.299877 -15888,3210:394,104,-29,0,0,0.299467 -15889,3210:495,105,-29,0,0,0.298326 -15890,3210:496,106,-29,0,0,0.298843 -15891,3210:497,107,-29,0,0,0.297445 -15892,3210:498,108,-29,0,0,0.301865 -15893,3210:499,109,-29,0,0,0.307175 -15894,3211:390,110,-29,0,0,0.347729 -15895,3211:391,111,-29,0,0,0.362408 -15896,3211:392,112,-29,0,0,0.352708 -15897,3211:393,113,-29,0,0,0.351466 -15898,3211:394,114,-29,0,0,0.35156 -15899,3211:495,115,-29,0,0,0.358169 -15900,3211:496,116,-29,0,0,0.340863 -15901,3211:497,117,-29,0,0,0.338282 -15902,3211:498,118,-29,0,0,0.3451 -15903,3211:499,119,-29,0,0,0.354094 -15904,3212:390,120,-29,0,0,0.340725 -15905,3212:391,121,-29,0,0,0.331258 -15906,3212:392,122,-29,0,0,0.338489 -15907,3212:393,123,-29,0,0,0.339825 -15908,3212:394,124,-29,0,0,0.340194 -15909,3212:495,125,-29,0,0,0.330644 -15910,3212:496,126,-29,0,0,0.33819 -15911,3212:497,127,-29,0,0,0.334681 -15912,3212:498,128,-29,0,0,0.331622 -15913,3212:499,129,-29,0,0,0.326451 -15914,3213:390,130,-29,0,0,0.324286 -15915,3213:391,131,-29,0,0,0.328442 -15916,3213:392,132,-29,0,0,0.336628 -15917,3213:393,133,-29,0,0,0.350179 -15918,3213:394,134,-29,0,0,0.345983 -15919,3213:495,135,-29,0,0,0.345425 -15920,3213:496,136,-29,0,0,0.345169 -15921,3213:497,137,-29,0,0,0.34343 -15922,3213:498,138,-29,0,0,0.356094 -15923,3213:499,139,-29,0,0,0.359848 -15924,3214:390,140,-29,0,0,0.380662 -15925,3215:390,150,-29,0,0,0.408138 -15926,3215:391,151,-29,0,0,0.432793 -15927,3215:392,152,-29,0,0,0.423009 -15928,3215:393,153,-29,0,0,0.425795 -15929,3215:394,154,-29,0,0,0.420729 -15930,3215:495,155,-29,0,0,0.415554 -15931,3215:496,156,-29,0,0,0.426197 -15932,3215:497,157,-29,0,0,0.425845 -15933,3215:498,158,-29,0,0,0.438426 -15934,3215:499,159,-29,0,0,0.43128 -15935,3216:390,160,-29,0,0,0.418577 -15936,3216:391,161,-29,0,0,0.412762 -15937,3216:392,162,-29,0,0,0.399038 -15938,3216:393,163,-29,0,0,0.376191 -15939,3216:394,164,-29,0,0,0.376674 -15940,3216:495,165,-29,0,0,0.370854 -15941,3216:496,166,-29,0,0,0.369201 -15942,3216:497,167,-29,0,0,0.364928 -15943,3216:498,168,-29,0,0,0.362455 -15944,3216:499,169,-29,0,0,0.36172 -15945,3217:390,170,-29,0,0,0.363311 -15946,3217:391,171,-29,0,0,0.360748 -15947,3217:392,172,-29,0,0,0.354376 -15948,3217:393,173,-29,0,0,0.349618 -15949,3217:394,174,-29,0,0,0.35032 -15950,3217:495,175,-29,0,0,0.375902 -15951,3217:497,177,-29,0,0,0.383816 -15952,3217:498,178,-29,0,0,0.386054 -15953,3217:499,179,-29,0,0,0.379452 -15954,3218:390,180,-29,0,0,0.392821 -15955,5218:380,-180,-28,0,0,0.395716 -15956,5217:489,-179,-28,0,0,0.387613 -15957,5217:488,-178,-28,0,0,0.370063 -15958,5217:487,-177,-28,0,0,0.370806 -15959,5217:486,-176,-28,0,0,0.374216 -15960,5217:485,-175,-28,0,0,0.373639 -15961,5217:384,-174,-28,0,0,0.373518 -15962,5217:383,-173,-28,0,0,0.378025 -15963,5217:382,-172,-28,0,0,0.375034 -15964,5217:381,-171,-28,0,0,0.378073 -15965,5217:380,-170,-28,0,0,0.379669 -15966,5216:489,-169,-28,0,0,0.38168 -15967,5216:488,-168,-28,0,0,0.376504 -15968,5216:487,-167,-28,0,0,0.373518 -15969,5216:486,-166,-28,0,0,0.370781 -15970,5216:485,-165,-28,0,0,0.372485 -15971,5216:384,-164,-28,0,0,0.373711 -15972,5216:383,-163,-28,0,0,0.377325 -15973,5216:382,-162,-28,0,0,0.376529 -15974,5216:381,-161,-28,0,0,0.375637 -15975,5216:380,-160,-28,0,0,0.378049 -15976,5215:489,-159,-28,0,0,0.381219 -15977,5215:488,-158,-28,0,0,0.382868 -15978,5215:487,-157,-28,0,0,0.380081 -15979,5215:486,-156,-28,0,0,0.381413 -15980,5215:485,-155,-28,0,0,0.384132 -15981,5215:384,-154,-28,0,0,0.382577 -15982,5215:383,-153,-28,0,0,0.385445 -15983,5215:382,-152,-28,0,0,0.38859 -15984,5215:381,-151,-28,0,0,0.389493 -15985,5215:380,-150,-28,0,0,0.392698 -15986,5214:489,-149,-28,0,0,0.394733 -15987,5214:488,-148,-28,0,0,0.389322 -15988,5214:487,-147,-28,0,0,0.38754 -15989,5214:486,-146,-28,0,0,0.391351 -15990,5214:485,-145,-28,0,0,0.393482 -15991,5214:384,-144,-28,0,0,0.391253 -15992,5214:383,-143,-28,0,0,0.390446 -15993,5214:382,-142,-28,0,0,0.390593 -15994,5214:381,-141,-28,0,0,0.389224 -15995,5214:380,-140,-28,0,0,0.388565 -15996,5213:489,-139,-28,0,0,0.390568 -15997,5213:488,-138,-28,0,0,0.39189 -15998,5213:487,-137,-28,0,0,0.389908 -15999,5213:486,-136,-28,0,0,0.386736 -16000,5213:485,-135,-28,0,0,0.383233 -16001,5213:384,-134,-28,0,0,0.381753 -16002,5213:383,-133,-28,0,0,0.379766 -16003,5213:382,-132,-28,0,0,0.382528 -16004,5213:381,-131,-28,0,0,0.381316 -16005,5213:380,-130,-28,0,0,0.376866 -16006,5212:489,-129,-28,0,0,0.375034 -16007,5212:488,-128,-28,0,0,0.373158 -16008,5212:487,-127,-28,0,0,0.373038 -16009,5212:486,-126,-28,0,0,0.369919 -16010,5212:485,-125,-28,0,0,0.367886 -16011,5212:384,-124,-28,0,0,0.370182 -16012,5212:383,-123,-28,0,0,0.370039 -16013,5212:382,-122,-28,0,0,0.367193 -16014,5212:381,-121,-28,0,0,0.366573 -16015,5212:380,-120,-28,0,0,0.365881 -16016,5211:489,-119,-28,0,0,0.364095 -16017,5211:488,-118,-28,0,0,0.363477 -16018,5211:487,-117,-28,0,0,0.363786 -16019,5211:486,-116,-28,0,0,0.358642 -16020,5211:485,-115,-28,0,0,0.355952 -16021,5211:384,-114,-28,0,0,0.35706 -16022,5211:383,-113,-28,0,0,0.363002 -16023,5211:382,-112,-28,0,0,0.36343 -16024,5211:381,-111,-28,0,0,0.357768 -16025,5211:380,-110,-28,0,0,0.352169 -16026,5210:489,-109,-28,0,0,0.352216 -16027,5210:488,-108,-28,0,0,0.367814 -16028,5210:487,-107,-28,0,0,0.362432 -16029,5210:486,-106,-28,0,0,0.358052 -16030,5210:485,-105,-28,0,0,0.348801 -16031,5210:384,-104,-28,0,0,0.348311 -16032,5210:383,-103,-28,0,0,0.338765 -16033,5210:382,-102,-28,0,0,0.33711 -16034,5210:381,-101,-28,0,0,0.348264 -16035,5210:380,-100,-28,0,0,0.345588 -16036,5209:489,-99,-28,0,0,0.34218 -16037,5209:488,-98,-28,0,0,0.337754 -16038,5209:487,-97,-28,0,0,0.348754 -16039,5209:486,-96,-28,0,0,0.345564 -16040,5209:485,-95,-28,0,0,0.344984 -16041,5209:384,-94,-28,0,0,0.343383 -16042,5209:383,-93,-28,0,0,0.341047 -16043,5209:382,-92,-28,0,0,0.34575 -16044,5209:381,-91,-28,0,0,0.339825 -16045,5209:380,-90,-28,0,0,0.340517 -16046,5208:489,-89,-28,0,0,0.343082 -16047,5208:488,-88,-28,0,0,0.341094 -16048,5208:487,-87,-28,0,0,0.336766 -16049,5208:486,-86,-28,0,0,0.337731 -16050,5208:485,-85,-28,0,0,0.33226 -16051,5208:384,-84,-28,0,0,0.334887 -16052,5208:383,-83,-28,0,0,0.333675 -16053,5208:382,-82,-28,0,0,0.332602 -16054,5208:381,-81,-28,0,0,0.331303 -16055,5208:380,-80,-28,0,0,0.334155 -16056,5207:489,-79,-28,0,0,0.334201 -16057,5207:488,-78,-28,0,0,0.329122 -16058,5207:487,-77,-28,0,0,0.327853 -16059,5207:486,-76,-28,0,0,0.333446 -16060,5207:485,-75,-28,0,0,0.324466 -16061,5207:384,-74,-28,0,0,0.327966 -16062,5207:383,-73,-28,0,0,0.304296 -16063,5205:486,-56,-28,0,0,0.441286 -16064,5205:485,-55,-28,0,0,0.416228 -16065,5205:384,-54,-28,0,0,0.361056 -16066,5205:383,-53,-28,0,0,0.376432 -16067,5205:382,-52,-28,0,0,0.405956 -16068,5205:381,-51,-28,0,0,0.492155 -16069,5205:380,-50,-28,0,0,0.474351 -16070,5204:489,-49,-28,0,0,0.490126 -16071,5204:488,-48,-28,0,0,0.455771 -16072,5204:487,-47,-28,0,0,0.438047 -16073,5204:486,-46,-28,0,0,0.441134 -16074,5204:485,-45,-28,0,0,0.436732 -16075,5204:384,-44,-28,0,0,0.428813 -16076,5204:383,-43,-28,0,0,0.420028 -16077,5204:382,-42,-28,0,0,0.410722 -16078,5204:381,-41,-28,0,0,0.402097 -16079,5204:380,-40,-28,0,0,0.390324 -16080,5203:489,-39,-28,0,0,0.372341 -16081,5203:488,-38,-28,0,0,0.354704 -16082,5203:487,-37,-28,0,0,0.360653 -16083,5203:486,-36,-28,0,0,0.371477 -16084,5203:485,-35,-28,0,0,0.364691 -16085,5203:384,-34,-28,0,0,0.366263 -16086,5203:383,-33,-28,0,0,0.361696 -16087,5203:382,-32,-28,0,0,0.359327 -16088,5203:381,-31,-28,0,0,0.3585 -16089,5203:380,-30,-28,0,0,0.349385 -16090,5202:489,-29,-28,0,0,0.35501 -16091,5202:488,-28,-28,0,0,0.348195 -16092,5202:487,-27,-28,0,0,0.356541 -16093,5202:486,-26,-28,0,0,0.356753 -16094,5202:485,-25,-28,0,0,0.351209 -16095,5202:384,-24,-28,0,0,0.344473 -16096,5202:383,-23,-28,0,0,0.348171 -16097,5202:382,-22,-28,0,0,0.351115 -16098,5202:381,-21,-28,0,0,0.346099 -16099,5202:380,-20,-28,0,0,0.342296 -16100,5201:489,-19,-28,0,0,0.35574 -16101,5201:488,-18,-28,0,0,0.348988 -16102,5201:487,-17,-28,0,0,0.341856 -16103,5201:486,-16,-28,0,0,0.342041 -16104,5201:485,-15,-28,0,0,0.343129 -16105,5201:384,-14,-28,0,0,0.339019 -16106,5201:383,-13,-28,0,0,0.343685 -16107,5201:382,-12,-28,0,0,0.33594 -16108,5201:381,-11,-28,0,0,0.334315 -16109,5201:380,-10,-28,0,0,0.332876 -16110,5200:489,-9,-28,0,0,0.333904 -16111,5200:488,-8,-28,0,0,0.337547 -16112,5200:487,-7,-28,0,0,0.336078 -16113,5200:486,-6,-28,0,0,0.345286 -16114,5200:485,-5,-28,0,0,0.34336 -16115,5200:384,-4,-28,0,0,0.337662 -16116,5200:383,-3,-28,0,0,0.334567 -16117,5200:382,-2,-28,0,0,0.331736 -16118,5200:381,-1,-28,0,0,0.330371 -16119,3200:381,0,-28,0,0,0.335528 -16120,3200:381,1,-28,0,0,0.33842 -16121,3200:382,2,-28,0,0,0.335505 -16122,3200:383,3,-28,0,0,0.341995 -16123,3200:384,4,-28,0,0,0.330325 -16124,3200:485,5,-28,0,0,0.326112 -16125,3200:486,6,-28,0,0,0.318906 -16126,3200:487,7,-28,0,0,0.316923 -16127,3200:488,8,-28,0,0,0.335139 -16128,3200:489,9,-28,0,0,0.342504 -16129,3201:380,10,-28,0,0,0.346308 -16130,3201:381,11,-28,0,0,0.352849 -16131,3201:382,12,-28,0,0,0.377156 -16132,3201:383,13,-28,0,0,0.395839 -16133,3201:384,14,-28,0,0,0.392894 -16134,3201:485,15,-28,0,0,0.388492 -16135,3201:486,16,-28,0,0,0.401825 -16136,3201:487,17,-28,0,0,0.397757 -16137,3201:488,18,-28,0,0,0.425619 -16138,3201:489,19,-28,0,0,0.438148 -16139,3202:380,20,-28,0,0,0.440071 -16140,3202:381,21,-28,0,0,0.459852 -16141,3202:382,22,-28,0,0,0.482067 -16142,3202:383,23,-28,0,0,0.457071 -16143,3202:384,24,-28,0,0,0.465011 -16144,3202:485,25,-28,0,0,0.472405 -16145,3202:486,26,-28,0,0,0.461128 -16146,3202:487,27,-28,0,0,0.436554 -16147,3202:488,28,-28,0,0,0.438223 -16148,3202:489,29,-28,0,0,0.446485 -16149,3203:380,30,-28,0,0,0.420078 -16150,3203:381,31,-28,0,0,0.408485 -16151,3203:382,32,-28,0,0,0.407915 -16152,3203:383,33,-28,0,0,0.408983 -16153,3203:384,34,-28,0,0,0.403579 -16154,3203:485,35,-28,0,0,0.401528 -16155,3203:486,36,-28,0,0,0.391939 -16156,3203:487,37,-28,0,0,0.388126 -16157,3203:488,38,-28,0,0,0.386857 -16158,3203:489,39,-28,0,0,0.382626 -16159,3204:380,40,-28,0,0,0.379669 -16160,3204:381,41,-28,0,0,0.377421 -16161,3204:382,42,-28,0,0,0.374914 -16162,3204:383,43,-28,0,0,0.373494 -16163,3204:384,44,-28,0,0,0.373014 -16164,3204:485,45,-28,0,0,0.372942 -16165,3204:486,46,-28,0,0,0.372005 -16166,3204:487,47,-28,0,0,0.367504 -16167,3204:488,48,-28,0,0,0.362503 -16168,3204:489,49,-28,0,0,0.359683 -16169,3205:380,50,-28,0,0,0.354587 -16170,3205:381,51,-28,0,0,0.35501 -16171,3205:382,52,-28,0,0,0.35706 -16172,3205:383,53,-28,0,0,0.357673 -16173,3205:384,54,-28,0,0,0.352075 -16174,3205:485,55,-28,0,0,0.348754 -16175,3205:486,56,-28,0,0,0.34575 -16176,3205:487,57,-28,0,0,0.345286 -16177,3205:488,58,-28,0,0,0.347169 -16178,3205:489,59,-28,0,0,0.344055 -16179,3206:380,60,-28,0,0,0.34218 -16180,3206:381,61,-28,0,0,0.344195 -16181,3206:382,62,-28,0,0,0.348125 -16182,3206:383,63,-28,0,0,0.349852 -16183,3206:384,64,-28,0,0,0.352849 -16184,3206:485,65,-28,0,0,0.351419 -16185,3206:486,66,-28,0,0,0.346006 -16186,3206:487,67,-28,0,0,0.347193 -16187,3206:488,68,-28,0,0,0.351256 -16188,3206:489,69,-28,0,0,0.346308 -16189,3207:380,70,-28,0,0,0.346029 -16190,3207:381,71,-28,0,0,0.349829 -16191,3207:382,72,-28,0,0,0.344241 -16192,3207:384,74,-28,0,0,0.340425 -16193,3207:485,75,-28,0,0,0.344775 -16194,3207:486,76,-28,0,0,0.345843 -16195,3207:487,77,-28,0,0,0.339249 -16196,3207:488,78,-28,0,0,0.335734 -16197,3207:489,79,-28,0,0,0.333949 -16198,3208:380,80,-28,0,0,0.329168 -16199,3208:381,81,-28,0,0,0.331691 -16200,3208:382,82,-28,0,0,0.337271 -16201,3208:383,83,-28,0,0,0.33578 -16202,3208:384,84,-28,0,0,0.332785 -16203,3208:485,85,-28,0,0,0.329576 -16204,3208:486,86,-28,0,0,0.327264 -16205,3208:487,87,-28,0,0,0.325097 -16206,3208:488,88,-28,0,0,0.322083 -16207,3208:489,89,-28,0,0,0.321567 -16208,3209:380,90,-28,0,0,0.321567 -16209,3209:381,91,-28,0,0,0.321321 -16210,3209:382,92,-28,0,0,0.323723 -16211,3209:383,93,-28,0,0,0.322734 -16212,3209:384,94,-28,0,0,0.320761 -16213,3209:485,95,-28,0,0,0.321052 -16214,3209:486,96,-28,0,0,0.319286 -16215,3209:487,97,-28,0,0,0.320291 -16216,3209:488,98,-28,0,0,0.321299 -16217,3209:489,99,-28,0,0,0.317791 -16218,3210:380,100,-28,0,0,0.317168 -16219,3210:381,101,-28,0,0,0.322734 -16220,3210:382,102,-28,0,0,0.317658 -16221,3210:383,103,-28,0,0,0.32697 -16222,3210:384,104,-28,0,0,0.320828 -16223,3210:485,105,-28,0,0,0.321994 -16224,3210:486,106,-28,0,0,0.32826 -16225,3210:487,107,-28,0,0,0.327943 -16226,3210:488,108,-28,0,0,0.331508 -16227,3210:489,109,-28,0,0,0.339894 -16228,3211:380,110,-28,0,0,0.358075 -16229,3211:381,111,-28,0,0,0.369177 -16230,3211:382,112,-28,0,0,0.355246 -16231,3211:383,113,-28,0,0,0.373061 -16232,3211:384,114,-28,0,0,0.381801 -16233,3211:485,115,-28,0,0,0.379403 -16234,3211:486,116,-28,0,0,0.361838 -16235,3211:487,117,-28,0,0,0.367599 -16236,3211:488,118,-28,0,0,0.382043 -16237,3211:489,119,-28,0,0,0.377445 -16238,3212:380,120,-28,0,0,0.374866 -16239,3212:381,121,-28,0,0,0.352451 -16240,3212:382,122,-28,0,0,0.362384 -16241,3212:383,123,-28,0,0,0.358902 -16242,3212:384,124,-28,0,0,0.362337 -16243,3212:485,125,-28,0,0,0.357366 -16244,3212:486,126,-28,0,0,0.360061 -16245,3212:487,127,-28,0,0,0.347379 -16246,3212:488,128,-28,0,0,0.348847 -16247,3212:489,129,-28,0,0,0.352591 -16248,3213:380,130,-28,0,0,0.367408 -16249,3213:381,131,-28,0,0,0.365476 -16250,3213:382,132,-28,0,0,0.352826 -16251,3213:383,133,-28,0,0,0.364072 -16252,3213:384,134,-28,0,0,0.357461 -16253,3213:485,135,-28,0,0,0.361151 -16254,3213:486,136,-28,0,0,0.368173 -16255,3213:487,137,-28,0,0,0.379984 -16256,3213:488,138,-28,0,0,0.38025 -16257,3213:489,139,-28,0,0,0.385177 -16258,3214:380,140,-28,0,0,0.42133 -16259,3215:381,151,-28,0,0,0.476811 -16260,3215:382,152,-28,0,0,0.480118 -16261,3215:383,153,-28,0,0,0.480605 -16262,3215:384,154,-28,0,0,0.466161 -16263,3215:485,155,-28,0,0,0.441667 -16264,3215:486,156,-28,0,0,0.444886 -16265,3215:487,157,-28,0,0,0.466391 -16266,3215:488,158,-28,0,0,0.453046 -16267,3215:489,159,-28,0,0,0.443187 -16268,3216:380,160,-28,0,0,0.450679 -16269,3216:381,161,-28,0,0,0.454013 -16270,3216:382,162,-28,0,0,0.433676 -16271,3216:383,163,-28,0,0,0.420628 -16272,3216:384,164,-28,0,0,0.413859 -16273,3216:485,165,-28,0,0,0.3926 -16274,3216:486,166,-28,0,0,0.391939 -16275,3216:487,167,-28,0,0,0.391229 -16276,3216:488,168,-28,0,0,0.390666 -16277,3216:489,169,-28,0,0,0.381607 -16278,3217:380,170,-28,0,0,0.380178 -16279,3217:381,171,-28,0,0,0.374721 -16280,3217:382,172,-28,0,0,0.37359 -16281,3217:383,173,-28,0,0,0.365333 -16282,3217:384,174,-28,0,0,0.373999 -16283,3217:486,176,-28,0,0,0.396035 -16284,3217:487,177,-28,0,0,0.40101 -16285,3217:488,178,-28,0,0,0.395962 -16286,3217:489,179,-28,0,0,0.393875 -16287,3218:380,180,-28,0,0,0.395716 -16288,5218:370,-180,-27,0,0,0.391229 -16289,5217:479,-179,-27,0,0,0.396232 -16290,5217:478,-178,-27,0,0,0.390226 -16291,5217:477,-177,-27,0,0,0.387321 -16292,5217:476,-176,-27,0,0,0.390324 -16293,5217:475,-175,-27,0,0,0.394587 -16294,5217:374,-174,-27,0,0,0.398914 -16295,5217:373,-173,-27,0,0,0.398102 -16296,5217:372,-172,-27,0,0,0.393017 -16297,5217:371,-171,-27,0,0,0.393752 -16298,5217:370,-170,-27,0,0,0.3952 -16299,5216:479,-169,-27,0,0,0.396109 -16300,5216:478,-168,-27,0,0,0.394685 -16301,5216:477,-167,-27,0,0,0.390984 -16302,5216:476,-166,-27,0,0,0.387711 -16303,5216:475,-165,-27,0,0,0.38659 -16304,5216:374,-164,-27,0,0,0.387638 -16305,5216:373,-163,-27,0,0,0.387662 -16306,5216:372,-162,-27,0,0,0.387516 -16307,5216:371,-161,-27,0,0,0.388003 -16308,5216:370,-160,-27,0,0,0.388955 -16309,5215:479,-159,-27,0,0,0.390666 -16310,5215:478,-158,-27,0,0,0.393826 -16311,5215:477,-157,-27,0,0,0.397683 -16312,5215:476,-156,-27,0,0,0.39921 -16313,5215:475,-155,-27,0,0,0.396969 -16314,5215:374,-154,-27,0,0,0.395053 -16315,5215:373,-153,-27,0,0,0.398914 -16316,5215:372,-152,-27,0,0,0.401874 -16317,5215:371,-151,-27,0,0,0.402764 -16318,5215:370,-150,-27,0,0,0.40494 -16319,5214:479,-149,-27,0,0,0.404693 -16320,5214:478,-148,-27,0,0,0.401282 -16321,5214:477,-147,-27,0,0,0.397634 -16322,5214:476,-146,-27,0,0,0.397117 -16323,5214:475,-145,-27,0,0,0.401652 -16324,5214:374,-144,-27,0,0,0.397929 -16325,5214:373,-143,-27,0,0,0.394439 -16326,5214:372,-142,-27,0,0,0.394513 -16327,5214:371,-141,-27,0,0,0.393899 -16328,5214:370,-140,-27,0,0,0.392674 -16329,5213:479,-139,-27,0,0,0.395519 -16330,5213:478,-138,-27,0,0,0.397044 -16331,5213:477,-137,-27,0,0,0.396994 -16332,5213:476,-136,-27,0,0,0.398077 -16333,5213:475,-135,-27,0,0,0.399407 -16334,5213:374,-134,-27,0,0,0.396428 -16335,5213:373,-133,-27,0,0,0.395495 -16336,5213:372,-132,-27,0,0,0.394906 -16337,5213:371,-131,-27,0,0,0.391205 -16338,5213:370,-130,-27,0,0,0.390006 -16339,5212:479,-129,-27,0,0,0.388663 -16340,5212:478,-128,-27,0,0,0.383306 -16341,5212:477,-127,-27,0,0,0.382189 -16342,5212:476,-126,-27,0,0,0.383208 -16343,5212:475,-125,-27,0,0,0.380686 -16344,5212:374,-124,-27,0,0,0.381946 -16345,5212:373,-123,-27,0,0,0.382019 -16346,5212:372,-122,-27,0,0,0.380953 -16347,5212:371,-121,-27,0,0,0.379427 -16348,5212:370,-120,-27,0,0,0.379355 -16349,5211:479,-119,-27,0,0,0.37933 -16350,5211:478,-118,-27,0,0,0.372317 -16351,5211:477,-117,-27,0,0,0.366597 -16352,5211:476,-116,-27,0,0,0.368675 -16353,5211:475,-115,-27,0,0,0.37436 -16354,5211:374,-114,-27,0,0,0.378895 -16355,5211:373,-113,-27,0,0,0.382505 -16356,5211:372,-112,-27,0,0,0.378267 -16357,5211:371,-111,-27,0,0,0.375902 -16358,5211:370,-110,-27,0,0,0.379476 -16359,5210:479,-109,-27,0,0,0.379452 -16360,5210:478,-108,-27,0,0,0.387516 -16361,5210:477,-107,-27,0,0,0.377735 -16362,5210:476,-106,-27,0,0,0.375058 -16363,5210:475,-105,-27,0,0,0.37846 -16364,5210:374,-104,-27,0,0,0.360653 -16365,5210:373,-103,-27,0,0,0.371861 -16366,5210:372,-102,-27,0,0,0.369129 -16367,5210:371,-101,-27,0,0,0.367934 -16368,5210:370,-100,-27,0,0,0.356801 -16369,5209:479,-99,-27,0,0,0.362218 -16370,5209:478,-98,-27,0,0,0.365143 -16371,5209:477,-97,-27,0,0,0.362194 -16372,5209:476,-96,-27,0,0,0.35494 -16373,5209:475,-95,-27,0,0,0.360605 -16374,5209:374,-94,-27,0,0,0.357956 -16375,5209:373,-93,-27,0,0,0.355105 -16376,5209:372,-92,-27,0,0,0.365523 -16377,5209:371,-91,-27,0,0,0.358028 -16378,5209:370,-90,-27,0,0,0.361886 -16379,5208:479,-89,-27,0,0,0.362978 -16380,5208:478,-88,-27,0,0,0.360701 -16381,5208:477,-87,-27,0,0,0.358193 -16382,5208:476,-86,-27,0,0,0.35224 -16383,5208:475,-85,-27,0,0,0.349315 -16384,5208:374,-84,-27,0,0,0.349758 -16385,5208:373,-83,-27,0,0,0.347938 -16386,5208:372,-82,-27,0,0,0.346122 -16387,5208:371,-81,-27,0,0,0.343407 -16388,5208:370,-80,-27,0,0,0.341671 -16389,5207:479,-79,-27,0,0,0.350881 -16390,5207:478,-78,-27,0,0,0.346983 -16391,5207:477,-77,-27,0,0,0.346727 -16392,5207:476,-76,-27,0,0,0.343337 -16393,5207:475,-75,-27,0,0,0.335368 -16394,5207:374,-74,-27,0,0,0.332602 -16395,5207:373,-73,-27,0,0,0.325999 -16396,5205:477,-57,-27,0,0,0.503071 -16397,5205:476,-56,-27,0,0,0.466212 -16398,5205:475,-55,-27,0,0,0.408983 -16399,5205:374,-54,-27,0,0,0.403852 -16400,5205:373,-53,-27,0,0,0.405312 -16401,5205:372,-52,-27,0,0,0.447222 -16402,5205:371,-51,-27,0,0,0.5004 -16403,5205:370,-50,-27,0,0,0.475402 -16404,5204:479,-49,-27,0,0,0.466979 -16405,5204:478,-48,-27,0,0,0.457964 -16406,5204:477,-47,-27,0,0,0.463068 -16407,5204:476,-46,-27,0,0,0.439311 -16408,5204:475,-45,-27,0,0,0.432717 -16409,5204:374,-44,-27,0,0,0.41199 -16410,5204:373,-43,-27,0,0,0.407815 -16411,5204:372,-42,-27,0,0,0.399654 -16412,5204:371,-41,-27,0,0,0.403357 -16413,5204:370,-40,-27,0,0,0.396921 -16414,5203:479,-39,-27,0,0,0.39412 -16415,5203:478,-38,-27,0,0,0.387077 -16416,5203:477,-37,-27,0,0,0.376047 -16417,5203:476,-36,-27,0,0,0.379863 -16418,5203:475,-35,-27,0,0,0.373447 -16419,5203:374,-34,-27,0,0,0.370926 -16420,5203:373,-33,-27,0,0,0.377277 -16421,5203:372,-32,-27,0,0,0.36674 -16422,5203:371,-31,-27,0,0,0.369201 -16423,5203:370,-30,-27,0,0,0.366812 -16424,5202:479,-29,-27,0,0,0.363311 -16425,5202:478,-28,-27,0,0,0.367599 -16426,5202:477,-27,-27,0,0,0.371381 -16427,5202:476,-26,-27,0,0,0.36968 -16428,5202:475,-25,-27,0,0,0.366549 -16429,5202:374,-24,-27,0,0,0.364357 -16430,5202:373,-23,-27,0,0,0.359327 -16431,5202:372,-22,-27,0,0,0.360297 -16432,5202:371,-21,-27,0,0,0.366931 -16433,5202:370,-20,-27,0,0,0.364833 -16434,5201:479,-19,-27,0,0,0.363644 -16435,5201:478,-18,-27,0,0,0.362313 -16436,5201:477,-17,-27,0,0,0.361009 -16437,5201:476,-16,-27,0,0,0.351045 -16438,5201:475,-15,-27,0,0,0.348288 -16439,5201:374,-14,-27,0,0,0.355364 -16440,5201:373,-13,-27,0,0,0.354964 -16441,5201:372,-12,-27,0,0,0.365071 -16442,5201:371,-11,-27,0,0,0.351981 -16443,5201:370,-10,-27,0,0,0.36748 -16444,5200:479,-9,-27,0,0,0.357296 -16445,5200:478,-8,-27,0,0,0.362883 -16446,5200:477,-7,-27,0,0,0.361483 -16447,5200:476,-6,-27,0,0,0.363121 -16448,5200:475,-5,-27,0,0,0.362527 -16449,5200:374,-4,-27,0,0,0.36108 -16450,5200:373,-3,-27,0,0,0.354446 -16451,5200:372,-2,-27,0,0,0.352497 -16452,5200:371,-1,-27,0,0,0.347589 -16453,3200:371,0,-27,0,0,0.352451 -16454,3200:371,1,-27,0,0,0.354822 -16455,3200:372,2,-27,0,0,0.35928 -16456,3200:373,3,-27,0,0,0.358807 -16457,3200:374,4,-27,0,0,0.354658 -16458,3200:475,5,-27,0,0,0.353859 -16459,3200:476,6,-27,0,0,0.358902 -16460,3200:477,7,-27,0,0,0.362265 -16461,3200:478,8,-27,0,0,0.37424 -16462,3200:479,9,-27,0,0,0.378847 -16463,3201:370,10,-27,0,0,0.377977 -16464,3201:371,11,-27,0,0,0.367647 -16465,3201:372,12,-27,0,0,0.39233 -16466,3201:373,13,-27,0,0,0.396724 -16467,3201:374,14,-27,0,0,0.391082 -16468,3201:475,15,-27,0,0,0.393213 -16469,3201:476,16,-27,0,0,0.400196 -16470,3201:477,17,-27,0,0,0.397216 -16471,3201:478,18,-27,0,0,0.423761 -16472,3201:479,19,-27,0,0,0.424364 -16473,3202:370,20,-27,0,0,0.41513 -16474,3202:371,21,-27,0,0,0.416378 -16475,3202:372,22,-27,0,0,0.438122 -16476,3202:373,23,-27,0,0,0.48507 -16477,3202:374,24,-27,0,0,0.492977 -16478,3202:475,25,-27,0,0,0.487842 -16479,3202:476,26,-27,0,0,0.480426 -16480,3202:477,27,-27,0,0,0.482042 -16481,3202:478,28,-27,0,0,0.488355 -16482,3202:479,29,-27,0,0,0.452536 -16483,3203:370,30,-27,0,0,0.444049 -16484,3203:371,31,-27,0,0,0.416428 -16485,3203:372,32,-27,0,0,0.413609 -16486,3203:373,33,-27,0,0,0.411941 -16487,3203:374,34,-27,0,0,0.409578 -16488,3203:475,35,-27,0,0,0.418427 -16489,3203:476,36,-27,0,0,0.408262 -16490,3203:477,37,-27,0,0,0.39958 -16491,3203:478,38,-27,0,0,0.399974 -16492,3203:479,39,-27,0,0,0.404569 -16493,3204:370,40,-27,0,0,0.394488 -16494,3204:371,41,-27,0,0,0.38776 -16495,3204:372,42,-27,0,0,0.387247 -16496,3204:373,43,-27,0,0,0.386687 -16497,3204:374,44,-27,0,0,0.386176 -16498,3204:475,45,-27,0,0,0.386882 -16499,3204:476,46,-27,0,0,0.38384 -16500,3204:477,47,-27,0,0,0.379282 -16501,3204:478,48,-27,0,0,0.377301 -16502,3204:479,49,-27,0,0,0.374649 -16503,3205:370,50,-27,0,0,0.372509 -16504,3205:371,51,-27,0,0,0.37047 -16505,3205:372,52,-27,0,0,0.373374 -16506,3205:373,53,-27,0,0,0.366549 -16507,3205:374,54,-27,0,0,0.366406 -16508,3205:475,55,-27,0,0,0.362503 -16509,3205:476,56,-27,0,0,0.36255 -16510,3205:477,57,-27,0,0,0.3621 -16511,3205:478,58,-27,0,0,0.363525 -16512,3205:479,59,-27,0,0,0.368244 -16513,3206:370,60,-27,0,0,0.367982 -16514,3206:371,61,-27,0,0,0.369488 -16515,3206:372,62,-27,0,0,0.367671 -16516,3206:373,63,-27,0,0,0.369512 -16517,3206:374,64,-27,0,0,0.369943 -16518,3206:475,65,-27,0,0,0.369488 -16519,3206:476,66,-27,0,0,0.370926 -16520,3206:477,67,-27,0,0,0.36581 -16521,3206:478,68,-27,0,0,0.369225 -16522,3206:479,69,-27,0,0,0.365523 -16523,3207:370,70,-27,0,0,0.366096 -16524,3207:371,71,-27,0,0,0.367026 -16525,3207:372,72,-27,0,0,0.364691 -16526,3207:374,74,-27,0,0,0.372437 -16527,3207:475,75,-27,0,0,0.371357 -16528,3207:476,76,-27,0,0,0.377084 -16529,3207:477,77,-27,0,0,0.364072 -16530,3207:478,78,-27,0,0,0.358571 -16531,3207:479,79,-27,0,0,0.362289 -16532,3208:370,80,-27,0,0,0.359304 -16533,3208:371,81,-27,0,0,0.358594 -16534,3208:372,82,-27,0,0,0.363263 -16535,3208:373,83,-27,0,0,0.362337 -16536,3208:374,84,-27,0,0,0.357886 -16537,3208:475,85,-27,0,0,0.354681 -16538,3208:476,86,-27,0,0,0.355882 -16539,3208:477,87,-27,0,0,0.356659 -16540,3208:478,88,-27,0,0,0.354164 -16541,3208:479,89,-27,0,0,0.348242 -16542,3209:370,90,-27,0,0,0.350179 -16543,3209:371,91,-27,0,0,0.350974 -16544,3209:372,92,-27,0,0,0.349758 -16545,3209:373,93,-27,0,0,0.349782 -16546,3209:374,94,-27,0,0,0.344473 -16547,3209:475,95,-27,0,0,0.342319 -16548,3209:476,96,-27,0,0,0.343268 -16549,3209:477,97,-27,0,0,0.344914 -16550,3209:478,98,-27,0,0,0.344032 -16551,3209:479,99,-27,0,0,0.344195 -16552,3210:370,100,-27,0,0,0.345588 -16553,3210:371,101,-27,0,0,0.346029 -16554,3210:372,102,-27,0,0,0.339686 -16555,3210:373,103,-27,0,0,0.340217 -16556,3210:374,104,-27,0,0,0.339134 -16557,3210:475,105,-27,0,0,0.347379 -16558,3210:476,106,-27,0,0,0.350437 -16559,3210:477,107,-27,0,0,0.355764 -16560,3210:478,108,-27,0,0,0.349642 -16561,3210:479,109,-27,0,0,0.361269 -16562,3211:370,110,-27,0,0,0.377132 -16563,3211:371,111,-27,0,0,0.381267 -16564,3211:372,112,-27,0,0,0.38105 -16565,3211:373,113,-27,0,0,0.399086 -16566,3211:374,114,-27,0,0,0.424841 -16567,3211:475,115,-27,0,0,0.440071 -16568,3211:476,116,-27,0,0,0.437338 -16569,3211:477,117,-27,0,0,0.438299 -16570,3211:478,118,-27,0,0,0.430852 -16571,3211:479,119,-27,0,0,0.418802 -16572,3212:370,120,-27,0,0,0.396674 -16573,3212:371,121,-27,0,0,0.372461 -16574,3212:372,122,-27,0,0,0.38316 -16575,3212:373,123,-27,0,0,0.376166 -16576,3212:374,124,-27,0,0,0.369608 -16577,3212:475,125,-27,0,0,0.370063 -16578,3212:476,126,-27,0,0,0.368507 -16579,3212:477,127,-27,0,0,0.36901 -16580,3212:478,128,-27,0,0,0.365833 -16581,3212:479,129,-27,0,0,0.36612 -16582,3213:370,130,-27,0,0,0.373182 -16583,3213:371,131,-27,0,0,0.372581 -16584,3213:372,132,-27,0,0,0.368053 -16585,3213:373,133,-27,0,0,0.385932 -16586,3213:374,134,-27,0,0,0.389517 -16587,3213:475,135,-27,0,0,0.389102 -16588,3213:476,136,-27,0,0,0.393262 -16589,3213:477,137,-27,0,0,0.421079 -16590,3213:478,138,-27,0,0,0.412364 -16591,3215:371,151,-27,0,0,0.495108 -16592,3215:372,152,-27,0,0,0.478042 -16593,3215:373,153,-27,0,0,0.485942 -16594,3215:374,154,-27,0,0,0.510596 -16595,3215:475,155,-27,0,0,0.528828 -16596,3215:476,156,-27,0,0,0.502044 -16597,3215:477,157,-27,0,0,0.50302 -16598,3215:478,158,-27,0,0,0.475171 -16599,3215:479,159,-27,0,0,0.484018 -16600,3216:370,160,-27,0,0,0.50284 -16601,3216:371,161,-27,0,0,0.504869 -16602,3216:372,162,-27,0,0,0.450959 -16603,3216:373,163,-27,0,0,0.464985 -16604,3216:374,164,-27,0,0,0.438527 -16605,3216:475,165,-27,0,0,0.412339 -16606,3216:476,166,-27,0,0,0.41341 -16607,3216:477,167,-27,0,0,0.40866 -16608,3216:478,168,-27,0,0,0.402813 -16609,3216:479,169,-27,0,0,0.397437 -16610,3217:370,170,-27,0,0,0.391278 -16611,3217:371,171,-27,0,0,0.390421 -16612,3217:372,172,-27,0,0,0.38316 -16613,3217:373,173,-27,0,0,0.382505 -16614,3217:475,175,-27,0,0,0.397511 -16615,3217:476,176,-27,0,0,0.410647 -16616,3217:477,177,-27,0,0,0.406204 -16617,3217:478,178,-27,0,0,0.401085 -16618,3217:479,179,-27,0,0,0.397265 -16619,3218:370,180,-27,0,0,0.391229 -16620,5218:360,-180,-26,0,0,0.410747 -16621,5217:469,-179,-26,0,0,0.411617 -16622,5217:468,-178,-26,0,0,0.412837 -16623,5217:467,-177,-26,0,0,0.415155 -16624,5217:466,-176,-26,0,0,0.414307 -16625,5217:465,-175,-26,0,0,0.408734 -16626,5217:364,-174,-26,0,0,0.406352 -16627,5217:363,-173,-26,0,0,0.413111 -16628,5217:362,-172,-26,0,0,0.415454 -16629,5217:361,-171,-26,0,0,0.417427 -16630,5217:360,-170,-26,0,0,0.412638 -16631,5216:469,-169,-26,0,0,0.414157 -16632,5216:468,-168,-26,0,0,0.407146 -16633,5216:467,-167,-26,0,0,0.407047 -16634,5216:466,-166,-26,0,0,0.403802 -16635,5216:465,-165,-26,0,0,0.400024 -16636,5216:364,-164,-26,0,0,0.401479 -16637,5216:363,-163,-26,0,0,0.405485 -16638,5216:362,-162,-26,0,0,0.405956 -16639,5216:361,-161,-26,0,0,0.403678 -16640,5216:360,-160,-26,0,0,0.404717 -16641,5215:469,-159,-26,0,0,0.404965 -16642,5215:468,-158,-26,0,0,0.403134 -16643,5215:467,-157,-26,0,0,0.404445 -16644,5215:466,-156,-26,0,0,0.407393 -16645,5215:465,-155,-26,0,0,0.408958 -16646,5215:364,-154,-26,0,0,0.409802 -16647,5215:363,-153,-26,0,0,0.414831 -16648,5215:362,-152,-26,0,0,0.415554 -16649,5215:361,-151,-26,0,0,0.417028 -16650,5215:360,-150,-26,0,0,0.415679 -16651,5214:469,-149,-26,0,0,0.415804 -16652,5214:468,-148,-26,0,0,0.411941 -16653,5214:467,-147,-26,0,0,0.409082 -16654,5214:466,-146,-26,0,0,0.411891 -16655,5214:465,-145,-26,0,0,0.411518 -16656,5214:364,-144,-26,0,0,0.411841 -16657,5214:363,-143,-26,0,0,0.408014 -16658,5214:362,-142,-26,0,0,0.403332 -16659,5214:361,-141,-26,0,0,0.403407 -16660,5214:360,-140,-26,0,0,0.404916 -16661,5213:469,-139,-26,0,0,0.403777 -16662,5213:468,-138,-26,0,0,0.407418 -16663,5213:467,-137,-26,0,0,0.410846 -16664,5213:466,-136,-26,0,0,0.411717 -16665,5213:465,-135,-26,0,0,0.41229 -16666,5213:364,-134,-26,0,0,0.411916 -16667,5213:363,-133,-26,0,0,0.408138 -16668,5213:362,-132,-26,0,0,0.406352 -16669,5213:361,-131,-26,0,0,0.405758 -16670,5213:360,-130,-26,0,0,0.40306 -16671,5212:469,-129,-26,0,0,0.399086 -16672,5212:468,-128,-26,0,0,0.393949 -16673,5212:467,-127,-26,0,0,0.393507 -16674,5212:466,-126,-26,0,0,0.396748 -16675,5212:465,-125,-26,0,0,0.397462 -16676,5212:364,-124,-26,0,0,0.396576 -16677,5212:363,-123,-26,0,0,0.394979 -16678,5212:362,-122,-26,0,0,0.393605 -16679,5212:361,-121,-26,0,0,0.392135 -16680,5212:360,-120,-26,0,0,0.391645 -16681,5211:469,-119,-26,0,0,0.391816 -16682,5211:468,-118,-26,0,0,0.389981 -16683,5211:467,-117,-26,0,0,0.38793 -16684,5211:466,-116,-26,0,0,0.391523 -16685,5211:465,-115,-26,0,0,0.395814 -16686,5211:364,-114,-26,0,0,0.395053 -16687,5211:363,-113,-26,0,0,0.392526 -16688,5211:362,-112,-26,0,0,0.395667 -16689,5211:361,-111,-26,0,0,0.394685 -16690,5211:360,-110,-26,0,0,0.39439 -16691,5210:469,-109,-26,0,0,0.397068 -16692,5210:468,-108,-26,0,0,0.399629 -16693,5210:467,-107,-26,0,0,0.397732 -16694,5210:466,-106,-26,0,0,0.392649 -16695,5210:465,-105,-26,0,0,0.392943 -16696,5210:364,-104,-26,0,0,0.397634 -16697,5210:363,-103,-26,0,0,0.407865 -16698,5210:362,-102,-26,0,0,0.39788 -16699,5210:361,-101,-26,0,0,0.384472 -16700,5210:360,-100,-26,0,0,0.38859 -16701,5209:469,-99,-26,0,0,0.384132 -16702,5209:468,-98,-26,0,0,0.37718 -16703,5209:467,-97,-26,0,0,0.378871 -16704,5209:466,-96,-26,0,0,0.380105 -16705,5209:465,-95,-26,0,0,0.379379 -16706,5209:364,-94,-26,0,0,0.373711 -16707,5209:363,-93,-26,0,0,0.380928 -16708,5209:362,-92,-26,0,0,0.38054 -16709,5209:361,-91,-26,0,0,0.378919 -16710,5209:360,-90,-26,0,0,0.381849 -16711,5208:469,-89,-26,0,0,0.378122 -16712,5208:468,-88,-26,0,0,0.379379 -16713,5208:467,-87,-26,0,0,0.373686 -16714,5208:466,-86,-26,0,0,0.370135 -16715,5208:465,-85,-26,0,0,0.369129 -16716,5208:364,-84,-26,0,0,0.365381 -16717,5208:363,-83,-26,0,0,0.365357 -16718,5208:362,-82,-26,0,0,0.363691 -16719,5208:361,-81,-26,0,0,0.362123 -16720,5208:360,-80,-26,0,0,0.358311 -16721,5207:469,-79,-26,0,0,0.365286 -16722,5207:468,-78,-26,0,0,0.366573 -16723,5207:467,-77,-26,0,0,0.364404 -16724,5207:466,-76,-26,0,0,0.35567 -16725,5207:465,-75,-26,0,0,0.348847 -16726,5207:364,-74,-26,0,0,0.343824 -16727,5207:363,-73,-26,0,0,0.339641 -16728,5207:362,-72,-26,0,0,0.306694 -16729,5205:363,-53,-26,0,0,0.437768 -16730,5205:362,-52,-26,0,0,0.431079 -16731,5205:361,-51,-26,0,0,0.530696 -16732,5205:360,-50,-26,0,0,0.541683 -16733,5204:469,-49,-26,0,0,0.512341 -16734,5204:468,-48,-26,0,0,0.483478 -16735,5204:467,-47,-26,0,0,0.496753 -16736,5204:466,-46,-26,0,0,0.472507 -16737,5204:465,-45,-26,0,0,0.461638 -16738,5204:364,-44,-26,0,0,0.426624 -16739,5204:363,-43,-26,0,0,0.42846 -16740,5204:362,-42,-26,0,0,0.429014 -16741,5204:361,-41,-26,0,0,0.417752 -16742,5204:360,-40,-26,0,0,0.408485 -16743,5203:469,-39,-26,0,0,0.41092 -16744,5203:468,-38,-26,0,0,0.395077 -16745,5203:467,-37,-26,0,0,0.401479 -16746,5203:466,-36,-26,0,0,0.391792 -16747,5203:465,-35,-26,0,0,0.393458 -16748,5203:364,-34,-26,0,0,0.391498 -16749,5203:363,-33,-26,0,0,0.381267 -16750,5203:362,-32,-26,0,0,0.38054 -16751,5203:361,-31,-26,0,0,0.382165 -16752,5203:360,-30,-26,0,0,0.386638 -16753,5202:469,-29,-26,0,0,0.382577 -16754,5202:468,-28,-26,0,0,0.381631 -16755,5202:467,-27,-26,0,0,0.389835 -16756,5202:466,-26,-26,0,0,0.391473 -16757,5202:465,-25,-26,0,0,0.384204 -16758,5202:364,-24,-26,0,0,0.3892 -16759,5202:363,-23,-26,0,0,0.393311 -16760,5202:362,-22,-26,0,0,0.389933 -16761,5202:361,-21,-26,0,0,0.388003 -16762,5202:360,-20,-26,0,0,0.383111 -16763,5201:469,-19,-26,0,0,0.38134 -16764,5201:468,-18,-26,0,0,0.375324 -16765,5201:467,-17,-26,0,0,0.377808 -16766,5201:466,-16,-26,0,0,0.373903 -16767,5201:465,-15,-26,0,0,0.381316 -16768,5201:364,-14,-26,0,0,0.37477 -16769,5201:363,-13,-26,0,0,0.372797 -16770,5201:362,-12,-26,0,0,0.383694 -16771,5201:361,-11,-26,0,0,0.372293 -16772,5201:360,-10,-26,0,0,0.383791 -16773,5200:469,-9,-26,0,0,0.378654 -16774,5200:468,-8,-26,0,0,0.383354 -16775,5200:467,-7,-26,0,0,0.384132 -16776,5200:466,-6,-26,0,0,0.38025 -16777,5200:465,-5,-26,0,0,0.382674 -16778,5200:364,-4,-26,0,0,0.383549 -16779,5200:363,-3,-26,0,0,0.387711 -16780,5200:362,-2,-26,0,0,0.384083 -16781,5200:361,-1,-26,0,0,0.373278 -16782,3200:361,0,-26,0,0,0.372053 -16783,3200:361,1,-26,0,0,0.37875 -16784,3200:362,2,-26,0,0,0.377905 -16785,3200:363,3,-26,0,0,0.377301 -16786,3200:364,4,-26,0,0,0.376674 -16787,3200:465,5,-26,0,0,0.377735 -16788,3200:466,6,-26,0,0,0.386029 -16789,3200:467,7,-26,0,0,0.387833 -16790,3200:468,8,-26,0,0,0.383962 -16791,3200:469,9,-26,0,0,0.38042 -16792,3201:360,10,-26,0,0,0.379137 -16793,3201:361,11,-26,0,0,0.37933 -16794,3201:362,12,-26,0,0,0.390031 -16795,3201:363,13,-26,0,0,0.402467 -16796,3201:364,14,-26,0,0,0.401356 -16797,3201:465,15,-26,0,0,0.401232 -16798,3201:466,16,-26,0,0,0.407096 -16799,3201:467,17,-26,0,0,0.41518 -16800,3201:468,18,-26,0,0,0.393213 -16801,3202:465,25,-26,0,0,0.421631 -16802,3202:466,26,-26,0,0,0.463452 -16803,3202:467,27,-26,0,0,0.520243 -16804,3202:468,28,-26,0,0,0.505896 -16805,3202:469,29,-26,0,0,0.502865 -16806,3203:360,30,-26,0,0,0.49927 -16807,3203:361,31,-26,0,0,0.451314 -16808,3203:362,32,-26,0,0,0.446232 -16809,3203:363,33,-26,0,0,0.444404 -16810,3203:364,34,-26,0,0,0.439185 -17135,3204:457,47,-25,0,0,0.42133 -16811,3203:465,35,-26,0,0,0.435746 -16812,3203:466,36,-26,0,0,0.427479 -16813,3203:467,37,-26,0,0,0.427781 -16814,3203:468,38,-26,0,0,0.427755 -16815,3203:469,39,-26,0,0,0.426373 -16816,3204:360,40,-26,0,0,0.419878 -16817,3204:361,41,-26,0,0,0.411393 -16818,3204:362,42,-26,0,0,0.407791 -16819,3204:363,43,-26,0,0,0.405634 -16820,3204:364,44,-26,0,0,0.408585 -16821,3204:465,45,-26,0,0,0.40861 -16822,3204:466,46,-26,0,0,0.401381 -16823,3204:467,47,-26,0,0,0.397019 -16824,3204:468,48,-26,0,0,0.400368 -16825,3204:469,49,-26,0,0,0.393409 -16826,3205:360,50,-26,0,0,0.393654 -16827,3205:361,51,-26,0,0,0.391473 -16828,3205:362,52,-26,0,0,0.390739 -16829,3205:363,53,-26,0,0,0.392919 -16830,3205:364,54,-26,0,0,0.390837 -16831,3205:465,55,-26,0,0,0.387686 -16832,3205:466,56,-26,0,0,0.383063 -16833,3205:467,57,-26,0,0,0.38134 -16834,3205:468,58,-26,0,0,0.382505 -16835,3205:469,59,-26,0,0,0.386395 -16836,3206:360,60,-26,0,0,0.393654 -16837,3206:361,61,-26,0,0,0.395962 -16838,3206:362,62,-26,0,0,0.394979 -16839,3206:363,63,-26,0,0,0.391498 -16840,3206:364,64,-26,0,0,0.386054 -16841,3206:465,65,-26,0,0,0.394194 -16842,3206:466,66,-26,0,0,0.391718 -16843,3206:467,67,-26,0,0,0.388053 -16844,3206:468,68,-26,0,0,0.388663 -16845,3206:469,69,-26,0,0,0.389053 -16846,3207:360,70,-26,0,0,0.386516 -16847,3207:361,71,-26,0,0,0.387589 -16848,3207:362,72,-26,0,0,0.390275 -16849,3207:364,74,-26,0,0,0.395962 -16850,3207:465,75,-26,0,0,0.401306 -16851,3207:466,76,-26,0,0,0.40442 -16852,3207:467,77,-26,0,0,0.398594 -16853,3207:468,78,-26,0,0,0.398544 -16854,3207:469,79,-26,0,0,0.396551 -16855,3208:360,80,-26,0,0,0.398027 -16856,3208:361,81,-26,0,0,0.396404 -16857,3208:362,82,-26,0,0,0.39189 -16858,3208:363,83,-26,0,0,0.387199 -16859,3208:364,84,-26,0,0,0.387077 -16860,3208:465,85,-26,0,0,0.388394 -16861,3208:466,86,-26,0,0,0.386492 -16862,3208:467,87,-26,0,0,0.387077 -16863,3208:468,88,-26,0,0,0.383403 -16864,3208:469,89,-26,0,0,0.379185 -16865,3209:360,90,-26,0,0,0.377832 -16866,3209:361,91,-26,0,0,0.376119 -16867,3209:362,92,-26,0,0,0.376022 -16868,3209:363,93,-26,0,0,0.371405 -16869,3209:364,94,-26,0,0,0.36834 -16870,3209:465,95,-26,0,0,0.371309 -16871,3209:466,96,-26,0,0,0.37424 -16872,3209:467,97,-26,0,0,0.368005 -16873,3209:468,98,-26,0,0,0.363668 -16874,3209:469,99,-26,0,0,0.365452 -16875,3210:360,100,-26,0,0,0.3621 -16876,3210:361,101,-26,0,0,0.363311 -16877,3210:362,102,-26,0,0,0.369106 -16878,3210:363,103,-26,0,0,0.366287 -16879,3210:364,104,-26,0,0,0.357248 -16880,3210:465,105,-26,0,0,0.355622 -16881,3210:466,106,-26,0,0,0.364691 -16882,3210:467,107,-26,0,0,0.373879 -16883,3210:468,108,-26,0,0,0.381122 -16884,3210:469,109,-26,0,0,0.389908 -16885,3211:360,110,-26,0,0,0.400689 -16886,3211:361,111,-26,0,0,0.407146 -16887,3211:362,112,-26,0,0,0.412663 -16888,3211:363,113,-26,0,0,0.417627 -16889,3211:364,114,-26,0,0,0.421355 -16890,3211:465,115,-26,0,0,0.449992 -16891,3212:360,120,-26,0,0,0.419527 -16892,3212:361,121,-26,0,0,0.420328 -16893,3212:362,122,-26,0,0,0.420628 -16894,3212:363,123,-26,0,0,0.415904 -16895,3212:364,124,-26,0,0,0.403258 -16896,3212:465,125,-26,0,0,0.390446 -16897,3212:466,126,-26,0,0,0.372533 -16898,3212:467,127,-26,0,0,0.37323 -16899,3212:468,128,-26,0,0,0.383888 -16900,3212:469,129,-26,0,0,0.394464 -16901,3213:360,130,-26,0,0,0.398988 -16902,3213:361,131,-26,0,0,0.398569 -16903,3213:362,132,-26,0,0,0.403283 -16904,3213:363,133,-26,0,0,0.40301 -16905,3213:364,134,-26,0,0,0.411319 -16906,3213:465,135,-26,0,0,0.422457 -16907,3213:467,137,-26,0,0,0.449255 -16908,3215:362,152,-26,0,0,0.494595 -16909,3215:363,153,-26,0,0,0.498294 -16910,3215:364,154,-26,0,0,0.5614 -16911,3215:465,155,-26,0,0,0.552883 -16912,3215:466,156,-26,0,0,0.560084 -16913,3215:467,157,-26,0,0,0.529186 -16914,3215:468,158,-26,0,0,0.5365 -16915,3215:469,159,-26,0,0,0.531617 -16916,3216:360,160,-26,0,0,0.515678 -16917,3216:361,161,-26,0,0,0.50849 -16918,3216:362,162,-26,0,0,0.483376 -16919,3216:363,163,-26,0,0,0.488688 -16920,3216:364,164,-26,0,0,0.467797 -16921,3216:465,165,-26,0,0,0.444734 -16922,3216:466,166,-26,0,0,0.448975 -16923,3216:467,167,-26,0,0,0.445648 -16924,3216:468,168,-26,0,0,0.422633 -16925,3216:469,169,-26,0,0,0.411493 -16926,3217:360,170,-26,0,0,0.405287 -16927,3217:361,171,-26,0,0,0.40353 -16928,3217:362,172,-26,0,0,0.394022 -16929,3217:363,173,-26,0,0,0.401454 -16930,3217:364,174,-26,0,0,0.434079 -16931,3217:465,175,-26,0,0,0.423938 -16932,3217:466,176,-26,0,0,0.42158 -16933,3217:467,177,-26,0,0,0.407096 -16934,3217:468,178,-26,0,0,0.419427 -16935,3217:469,179,-26,0,0,0.417527 -16936,3218:360,180,-26,0,0,0.410747 -16937,5218:350,-180,-25,0,0,0.427529 -16938,5217:459,-179,-25,0,0,0.428234 -16939,5217:458,-178,-25,0,0,0.43754 -16940,5217:457,-177,-25,0,0,0.438653 -16941,5217:456,-176,-25,0,0,0.435014 -16942,5217:455,-175,-25,0,0,0.435897 -16943,5217:354,-174,-25,0,0,0.433903 -16944,5217:353,-173,-25,0,0,0.433676 -16945,5217:352,-172,-25,0,0,0.434281 -16946,5217:351,-171,-25,0,0,0.431557 -16947,5217:350,-170,-25,0,0,0.429895 -16948,5216:459,-169,-25,0,0,0.425444 -16949,5216:458,-168,-25,0,0,0.423435 -16950,5216:457,-167,-25,0,0,0.422433 -16951,5216:456,-166,-25,0,0,0.421831 -16952,5216:455,-165,-25,0,0,0.417677 -16953,5216:354,-164,-25,0,0,0.416128 -16954,5216:353,-163,-25,0,0,0.420379 -16955,5216:352,-162,-25,0,0,0.42138 -16956,5216:351,-161,-25,0,0,0.419327 -16957,5216:350,-160,-25,0,0,0.42123 -16958,5215:459,-159,-25,0,0,0.423812 -16959,5215:458,-158,-25,0,0,0.42103 -16960,5215:457,-157,-25,0,0,0.418327 -16961,5215:456,-156,-25,0,0,0.420078 -16962,5215:455,-155,-25,0,0,0.423787 -16963,5215:354,-154,-25,0,0,0.429064 -16964,5215:353,-153,-25,0,0,0.434231 -16965,5215:352,-152,-25,0,0,0.432742 -16966,5215:351,-151,-25,0,0,0.440146 -16967,5215:350,-150,-25,0,0,0.437389 -16968,5214:459,-149,-25,0,0,0.434408 -16969,5214:458,-148,-25,0,0,0.434281 -16970,5214:457,-147,-25,0,0,0.425167 -16971,5214:456,-146,-25,0,0,0.431255 -16972,5214:455,-145,-25,0,0,0.429391 -16973,5214:354,-144,-25,0,0,0.432641 -16974,5214:353,-143,-25,0,0,0.425845 -16975,5214:352,-142,-25,0,0,0.422232 -16976,5214:351,-141,-25,0,0,0.421881 -16977,5214:350,-140,-25,0,0,0.417902 -16978,5213:459,-139,-25,0,0,0.420379 -16979,5213:458,-138,-25,0,0,0.425192 -16980,5213:457,-137,-25,0,0,0.430953 -16981,5213:456,-136,-25,0,0,0.426097 -16982,5213:455,-135,-25,0,0,0.427303 -16983,5213:354,-134,-25,0,0,0.425468 -16984,5213:353,-133,-25,0,0,0.427629 -16985,5213:352,-132,-25,0,0,0.427932 -16986,5213:351,-131,-25,0,0,0.422934 -16987,5213:350,-130,-25,0,0,0.416553 -16988,5212:459,-129,-25,0,0,0.419903 -16989,5212:458,-128,-25,0,0,0.419828 -16990,5212:457,-127,-25,0,0,0.416778 -16991,5212:456,-126,-25,0,0,0.417802 -16992,5212:455,-125,-25,0,0,0.417902 -16993,5212:354,-124,-25,0,0,0.418226 -16994,5212:353,-123,-25,0,0,0.416103 -16995,5212:352,-122,-25,0,0,0.410722 -16996,5212:351,-121,-25,0,0,0.406055 -16997,5212:350,-120,-25,0,0,0.405659 -16998,5211:459,-119,-25,0,0,0.410448 -16999,5211:458,-118,-25,0,0,0.407543 -17000,5211:457,-117,-25,0,0,0.418127 -17001,5211:456,-116,-25,0,0,0.417877 -17002,5211:455,-115,-25,0,0,0.414357 -17003,5211:354,-114,-25,0,0,0.411021 -17004,5211:353,-113,-25,0,0,0.405238 -17005,5211:352,-112,-25,0,0,0.413884 -17006,5211:351,-111,-25,0,0,0.415704 -17007,5211:350,-110,-25,0,0,0.40722 -17008,5210:459,-109,-25,0,0,0.407171 -17009,5210:458,-108,-25,0,0,0.409802 -17010,5210:457,-107,-25,0,0,0.420954 -17011,5210:456,-106,-25,0,0,0.425142 -17012,5210:455,-105,-25,0,0,0.420879 -17013,5210:354,-104,-25,0,0,0.419503 -17014,5210:353,-103,-25,0,0,0.423736 -17015,5210:352,-102,-25,0,0,0.42113 -17016,5210:351,-101,-25,0,0,0.414706 -17017,5210:350,-100,-25,0,0,0.406898 -17018,5209:459,-99,-25,0,0,0.400886 -17019,5209:458,-98,-25,0,0,0.401331 -17020,5209:457,-97,-25,0,0,0.400418 -17021,5209:456,-96,-25,0,0,0.396969 -17022,5209:455,-95,-25,0,0,0.397265 -17023,5209:354,-94,-25,0,0,0.398348 -17024,5209:353,-93,-25,0,0,0.399235 -17025,5209:352,-92,-25,0,0,0.401578 -17026,5209:351,-91,-25,0,0,0.401751 -17027,5209:350,-90,-25,0,0,0.399974 -17028,5208:459,-89,-25,0,0,0.393409 -17029,5208:458,-88,-25,0,0,0.390373 -17030,5208:457,-87,-25,0,0,0.387589 -17031,5208:456,-86,-25,0,0,0.386127 -17032,5208:455,-85,-25,0,0,0.385907 -17033,5208:354,-84,-25,0,0,0.382674 -17034,5208:353,-83,-25,0,0,0.378219 -17035,5208:352,-82,-25,0,0,0.378508 -17036,5208:351,-81,-25,0,0,0.378242 -17037,5208:350,-80,-25,0,0,0.381825 -17038,5207:459,-79,-25,0,0,0.38042 -17039,5207:458,-78,-25,0,0,0.379282 -17040,5207:457,-77,-25,0,0,0.376601 -17041,5207:456,-76,-25,0,0,0.367241 -17042,5207:455,-75,-25,0,0,0.361838 -17043,5207:354,-74,-25,0,0,0.350951 -17044,5207:353,-73,-25,0,0,0.351372 -17045,5207:352,-72,-25,0,0,0.344798 -17046,5205:352,-52,-25,0,0,0.480298 -17047,5205:351,-51,-25,0,0,0.496136 -17048,5205:350,-50,-25,0,0,0.561274 -17049,5204:459,-49,-25,0,0,0.513445 -17050,5204:458,-48,-25,0,0,0.509722 -17051,5204:457,-47,-25,0,0,0.50546 -17052,5204:456,-46,-25,0,0,0.473147 -17053,5204:455,-45,-25,0,0,0.456893 -17054,5204:354,-44,-25,0,0,0.447349 -17055,5204:353,-43,-25,0,0,0.444683 -17056,5204:352,-42,-25,0,0,0.439969 -17057,5204:351,-41,-25,0,0,0.43249 -17058,5204:350,-40,-25,0,0,0.438704 -17059,5203:459,-39,-25,0,0,0.432767 -17060,5203:458,-38,-25,0,0,0.417253 -17061,5203:457,-37,-25,0,0,0.425218 -17062,5203:456,-36,-25,0,0,0.422107 -17063,5203:455,-35,-25,0,0,0.426197 -17064,5203:354,-34,-25,0,0,0.414931 -17065,5203:353,-33,-25,0,0,0.416378 -17066,5203:352,-32,-25,0,0,0.402739 -17067,5203:351,-31,-25,0,0,0.41092 -17068,5203:350,-30,-25,0,0,0.417527 -17069,5202:459,-29,-25,0,0,0.415954 -17070,5202:458,-28,-25,0,0,0.404173 -17071,5202:457,-27,-25,0,0,0.41092 -17072,5202:456,-26,-25,0,0,0.417602 -17073,5202:455,-25,-25,0,0,0.411244 -17074,5202:354,-24,-25,0,0,0.403753 -17075,5202:353,-23,-25,0,0,0.415305 -17076,5202:352,-22,-25,0,0,0.404767 -17077,5202:351,-21,-25,0,0,0.397536 -17078,5202:350,-20,-25,0,0,0.405659 -17079,5201:459,-19,-25,0,0,0.407939 -17080,5201:458,-18,-25,0,0,0.401924 -17081,5201:457,-17,-25,0,0,0.403209 -17082,5201:456,-16,-25,0,0,0.403926 -17083,5201:455,-15,-25,0,0,0.400467 -17084,5201:354,-14,-25,0,0,0.401899 -17085,5201:353,-13,-25,0,0,0.403653 -17086,5201:352,-12,-25,0,0,0.390055 -17087,5201:351,-11,-25,0,0,0.400368 -17088,5201:350,-10,-25,0,0,0.405733 -17089,5200:459,-9,-25,0,0,0.401652 -17090,5200:458,-8,-25,0,0,0.400961 -17091,5200:457,-7,-25,0,0,0.408361 -17092,5200:456,-6,-25,0,0,0.404223 -17093,5200:455,-5,-25,0,0,0.403728 -17094,5200:354,-4,-25,0,0,0.406055 -17095,5200:353,-3,-25,0,0,0.404297 -17096,5200:352,-2,-25,0,0,0.400788 -17097,5200:351,-1,-25,0,0,0.399185 -17098,3200:351,0,-25,0,0,0.395912 -17099,3200:351,1,-25,0,0,0.393703 -17100,3200:352,2,-25,0,0,0.393728 -17101,3200:353,3,-25,0,0,0.393115 -17102,3200:354,4,-25,0,0,0.394316 -17103,3200:455,5,-25,0,0,0.392085 -17104,3200:456,6,-25,0,0,0.394856 -17105,3200:457,7,-25,0,0,0.397634 -17106,3200:458,8,-25,0,0,0.396798 -17107,3200:459,9,-25,0,0,0.400443 -17108,3201:350,10,-25,0,0,0.406824 -17109,3201:351,11,-25,0,0,0.408833 -17110,3201:352,12,-25,0,0,0.40933 -17111,3201:353,13,-25,0,0,0.412688 -17112,3201:354,14,-25,0,0,0.415679 -17113,3201:455,15,-25,0,0,0.418102 -17114,3201:456,16,-25,0,0,0.426197 -17115,3201:457,17,-25,0,0,0.419652 -17116,3202:458,28,-25,0,0,0.496778 -17117,3202:459,29,-25,0,0,0.53885 -17118,3203:350,30,-25,0,0,0.523397 -17119,3203:351,31,-25,0,0,0.518781 -17120,3203:352,32,-25,0,0,0.486584 -17121,3203:353,33,-25,0,0,0.455669 -17122,3203:354,34,-25,0,0,0.454217 -17123,3203:455,35,-25,0,0,0.445267 -17124,3203:456,36,-25,0,0,0.441235 -17125,3203:457,37,-25,0,0,0.448975 -17126,3203:458,38,-25,0,0,0.461817 -17127,3203:459,39,-25,0,0,0.476093 -17128,3204:350,40,-25,0,0,0.4774 -17129,3204:351,41,-25,0,0,0.453351 -17130,3204:352,42,-25,0,0,0.440729 -17131,3204:353,43,-25,0,0,0.430499 -17132,3204:354,44,-25,0,0,0.431936 -17133,3204:455,45,-25,0,0,0.43471 -17134,3204:456,46,-25,0,0,0.427705 -17136,3204:458,48,-25,0,0,0.421956 -17137,3204:459,49,-25,0,0,0.427227 -17138,3205:350,50,-25,0,0,0.413111 -17139,3205:351,51,-25,0,0,0.415454 -17140,3205:352,52,-25,0,0,0.412986 -17141,3205:353,53,-25,0,0,0.419677 -17142,3205:354,54,-25,0,0,0.425343 -17143,3205:455,55,-25,0,0,0.416128 -17144,3205:456,56,-25,0,0,0.410324 -17145,3205:457,57,-25,0,0,0.4101 -17146,3205:458,58,-25,0,0,0.410423 -17147,3205:459,59,-25,0,0,0.41331 -17148,3206:350,60,-25,0,0,0.416852 -17149,3206:351,61,-25,0,0,0.421405 -17150,3206:352,62,-25,0,0,0.422759 -17151,3206:353,63,-25,0,0,0.423736 -17152,3206:354,64,-25,0,0,0.419503 -17153,3206:455,65,-25,0,0,0.414557 -17154,3206:456,66,-25,0,0,0.419152 -17155,3206:457,67,-25,0,0,0.413983 -17156,3206:458,68,-25,0,0,0.410523 -17157,3206:459,69,-25,0,0,0.408958 -17158,3207:350,70,-25,0,0,0.413859 -17159,3207:351,71,-25,0,0,0.431986 -17160,3207:352,72,-25,0,0,0.428032 -17161,3207:354,74,-25,0,0,0.430071 -17162,3207:455,75,-25,0,0,0.436075 -17163,3207:456,76,-25,0,0,0.443871 -17164,3207:457,77,-25,0,0,0.429467 -17165,3207:458,78,-25,0,0,0.427202 -17166,3207:459,79,-25,0,0,0.425519 -17167,3208:350,80,-25,0,0,0.426926 -17168,3208:351,81,-25,0,0,0.426499 -17169,3208:352,82,-25,0,0,0.424213 -17170,3208:353,83,-25,0,0,0.422658 -17171,3208:354,84,-25,0,0,0.418226 -17172,3208:455,85,-25,0,0,0.411443 -17173,3208:456,86,-25,0,0,0.410473 -17174,3208:457,87,-25,0,0,0.414881 -17175,3208:458,88,-25,0,0,0.411319 -17176,3208:459,89,-25,0,0,0.407418 -17177,3209:350,90,-25,0,0,0.401627 -17178,3209:351,91,-25,0,0,0.39633 -17179,3209:352,92,-25,0,0,0.399407 -17180,3209:353,93,-25,0,0,0.394145 -17181,3209:354,94,-25,0,0,0.394414 -17182,3209:455,95,-25,0,0,0.397265 -17183,3209:456,96,-25,0,0,0.396822 -17184,3209:457,97,-25,0,0,0.3835 -17185,3209:458,98,-25,0,0,0.380105 -17186,3209:459,99,-25,0,0,0.382334 -17187,3210:350,100,-25,0,0,0.375299 -17188,3210:351,101,-25,0,0,0.378533 -17189,3210:352,102,-25,0,0,0.386395 -17190,3210:353,103,-25,0,0,0.375443 -17191,3210:354,104,-25,0,0,0.379234 -17192,3210:455,105,-25,0,0,0.379694 -17193,3210:456,106,-25,0,0,0.390691 -17194,3210:457,107,-25,0,0,0.389664 -17195,3210:458,108,-25,0,0,0.398274 -17196,3210:459,109,-25,0,0,0.393507 -17197,3211:350,110,-25,0,0,0.393924 -17198,3211:351,111,-25,0,0,0.421054 -17199,3211:352,112,-25,0,0,0.42123 -17200,3211:353,113,-25,0,0,0.43466 -17201,3211:354,114,-25,0,0,0.4598 -17202,3211:455,115,-25,0,0,0.469281 -17203,3212:456,126,-25,0,0,0.39466 -17204,3212:457,127,-25,0,0,0.391523 -17205,3212:458,128,-25,0,0,0.393213 -17206,3212:459,129,-25,0,0,0.40027 -17207,3213:350,130,-25,0,0,0.408958 -17208,3213:351,131,-25,0,0,0.411393 -17209,3213:352,132,-25,0,0,0.418402 -17210,3213:353,133,-25,0,0,0.442274 -17211,3213:354,134,-25,0,0,0.465061 -17212,3215:353,153,-25,0,0,0.546321 -17213,3215:354,154,-25,0,0,0.550469 -17214,3215:455,155,-25,0,0,0.535095 -17215,3215:456,156,-25,0,0,0.559198 -17216,3215:457,157,-25,0,0,0.530414 -17217,3215:458,158,-25,0,0,0.546754 -17218,3215:459,159,-25,0,0,0.527009 -17219,3216:350,160,-25,0,0,0.524576 -17220,3216:351,161,-25,0,0,0.515831 -17221,3216:352,162,-25,0,0,0.498602 -17222,3216:353,163,-25,0,0,0.496033 -17223,3216:354,164,-25,0,0,0.491128 -17224,3216:455,165,-25,0,0,0.492515 -17225,3216:456,166,-25,0,0,0.466545 -17226,3216:457,167,-25,0,0,0.455465 -17227,3216:458,168,-25,0,0,0.449407 -17228,3216:459,169,-25,0,0,0.43509 -17229,3217:350,170,-25,0,0,0.442451 -17230,3217:351,171,-25,0,0,0.441413 -17231,3217:352,172,-25,0,0,0.433852 -17232,3217:353,173,-25,0,0,0.433701 -17233,3217:354,174,-25,0,0,0.435544 -17234,3217:455,175,-25,0,0,0.425468 -17235,3217:456,176,-25,0,0,0.420954 -17236,3217:457,177,-25,0,0,0.426423 -17237,3217:458,178,-25,0,0,0.437667 -17238,3217:459,179,-25,0,0,0.430877 -17239,3218:350,180,-25,0,0,0.427529 -17240,5218:140,-180,-24,0,0,0.450069 -17241,5217:249,-179,-24,0,0,0.450551 -17242,5217:248,-178,-24,0,0,0.452816 -17243,5217:247,-177,-24,0,0,0.458703 -17244,5217:246,-176,-24,0,0,0.452205 -17245,5217:245,-175,-24,0,0,0.453453 -17246,5217:144,-174,-24,0,0,0.451085 -17247,5217:143,-173,-24,0,0,0.451314 -17248,5217:142,-172,-24,0,0,0.44806 -17249,5217:141,-171,-24,0,0,0.448035 -17250,5217:140,-170,-24,0,0,0.447349 -17251,5216:249,-169,-24,0,0,0.444683 -17252,5216:248,-168,-24,0,0,0.448111 -17253,5216:247,-167,-24,0,0,0.445648 -17254,5216:246,-166,-24,0,0,0.443821 -17255,5216:245,-165,-24,0,0,0.4458 -17256,5216:144,-164,-24,0,0,0.442756 -17257,5216:143,-163,-24,0,0,0.439817 -17258,5216:142,-162,-24,0,0,0.441008 -17259,5216:141,-161,-24,0,0,0.441616 -17260,5216:140,-160,-24,0,0,0.444658 -17261,5215:249,-159,-24,0,0,0.442654 -17262,5215:248,-158,-24,0,0,0.446562 -17263,5215:247,-157,-24,0,0,0.450119 -17264,5215:246,-156,-24,0,0,0.446155 -17265,5215:245,-155,-24,0,0,0.450196 -17266,5215:144,-154,-24,0,0,0.453478 -17267,5215:143,-153,-24,0,0,0.45855 -17268,5215:142,-152,-24,0,0,0.464755 -17269,5215:141,-151,-24,0,0,0.46726 -17270,5215:140,-150,-24,0,0,0.456127 -17271,5214:249,-149,-24,0,0,0.454497 -17272,5214:248,-148,-24,0,0,0.455949 -17273,5214:247,-147,-24,0,0,0.44372 -17274,5214:246,-146,-24,0,0,0.451085 -17275,5214:245,-145,-24,0,0,0.448035 -17276,5214:144,-144,-24,0,0,0.4441 -17277,5214:143,-143,-24,0,0,0.440273 -17278,5214:142,-142,-24,0,0,0.4423 -17279,5214:141,-141,-24,0,0,0.443212 -17280,5214:140,-140,-24,0,0,0.441793 -17281,5213:249,-139,-24,0,0,0.444988 -17282,5213:248,-138,-24,0,0,0.445927 -17283,5213:247,-137,-24,0,0,0.439185 -17284,5213:246,-136,-24,0,0,0.448975 -17285,5213:245,-135,-24,0,0,0.443289 -17286,5213:144,-134,-24,0,0,0.440628 -17287,5213:143,-133,-24,0,0,0.439261 -17288,5213:142,-132,-24,0,0,0.441008 -17289,5213:141,-131,-24,0,0,0.444937 -17290,5213:140,-130,-24,0,0,0.440045 -17291,5212:249,-129,-24,0,0,0.440096 -17292,5212:248,-128,-24,0,0,0.441286 -17293,5212:247,-127,-24,0,0,0.441742 -17294,5212:246,-126,-24,0,0,0.434686 -17295,5212:245,-125,-24,0,0,0.44268 -17296,5212:144,-124,-24,0,0,0.438502 -17297,5212:143,-123,-24,0,0,0.430801 -17298,5212:142,-122,-24,0,0,0.429542 -17299,5212:141,-121,-24,0,0,0.425996 -17300,5212:140,-120,-24,0,0,0.426222 -17301,5211:249,-119,-24,0,0,0.438324 -17302,5211:248,-118,-24,0,0,0.43567 -17303,5211:247,-117,-24,0,0,0.4306 -17304,5211:246,-116,-24,0,0,0.428813 -17305,5211:245,-115,-24,0,0,0.437819 -17306,5211:144,-114,-24,0,0,0.440881 -17307,5211:143,-113,-24,0,0,0.431406 -17308,5211:142,-112,-24,0,0,0.435392 -17309,5211:141,-111,-24,0,0,0.425243 -17310,5211:140,-110,-24,0,0,0.432692 -17311,5210:249,-109,-24,0,0,0.428082 -17312,5210:248,-108,-24,0,0,0.437313 -17313,5210:247,-107,-24,0,0,0.439185 -17314,5210:246,-106,-24,0,0,0.442427 -17315,5210:245,-105,-24,0,0,0.438021 -17316,5210:144,-104,-24,0,0,0.437742 -17317,5210:143,-103,-24,0,0,0.431431 -17318,5210:142,-102,-24,0,0,0.431356 -17319,5210:141,-101,-24,0,0,0.431557 -17320,5210:140,-100,-24,0,0,0.427202 -17321,5209:249,-99,-24,0,0,0.420278 -17322,5209:248,-98,-24,0,0,0.415654 -17323,5209:247,-97,-24,0,0,0.414706 -17324,5209:246,-96,-24,0,0,0.415679 -17325,5209:245,-95,-24,0,0,0.414731 -17326,5209:144,-94,-24,0,0,0.415879 -17327,5209:143,-93,-24,0,0,0.417577 -17328,5209:142,-92,-24,0,0,0.417377 -17329,5209:141,-91,-24,0,0,0.414108 -17330,5209:140,-90,-24,0,0,0.408833 -17331,5208:249,-89,-24,0,0,0.408064 -17332,5208:248,-88,-24,0,0,0.406204 -17333,5208:247,-87,-24,0,0,0.403283 -17334,5208:246,-86,-24,0,0,0.401504 -17335,5208:245,-85,-24,0,0,0.397609 -17336,5208:144,-84,-24,0,0,0.3952 -17337,5208:143,-83,-24,0,0,0.394366 -17338,5208:142,-82,-24,0,0,0.395053 -17339,5208:141,-81,-24,0,0,0.39118 -17340,5208:140,-80,-24,0,0,0.391009 -17341,5207:249,-79,-24,0,0,0.393507 -17342,5207:248,-78,-24,0,0,0.389298 -17343,5207:247,-77,-24,0,0,0.384204 -17344,5207:246,-76,-24,0,0,0.380202 -17345,5207:245,-75,-24,0,0,0.370926 -17346,5207:144,-74,-24,0,0,0.363715 -17347,5207:143,-73,-24,0,0,0.360061 -17348,5207:142,-72,-24,0,0,0.345495 -17349,5205:141,-51,-24,0,0,0.519782 -17350,5205:140,-50,-24,0,0,0.551333 -17351,5204:249,-49,-24,0,0,0.570914 -17352,5204:248,-48,-24,0,0,0.538773 -17353,5204:247,-47,-24,0,0,0.513727 -17354,5204:246,-46,-24,0,0,0.48394 -17355,5204:245,-45,-24,0,0,0.474197 -17356,5204:144,-44,-24,0,0,0.465266 -17357,5204:143,-43,-24,0,0,0.461153 -17358,5204:142,-42,-24,0,0,0.463962 -17359,5204:141,-41,-24,0,0,0.465573 -17360,5204:140,-40,-24,0,0,0.465854 -17361,5203:249,-39,-24,0,0,0.464397 -17362,5203:248,-38,-24,0,0,0.451518 -17363,5203:247,-37,-24,0,0,0.452994 -17364,5203:246,-36,-24,0,0,0.450196 -17365,5203:245,-35,-24,0,0,0.455847 -17366,5203:144,-34,-24,0,0,0.454191 -17367,5203:143,-33,-24,0,0,0.443313 -17368,5203:142,-32,-24,0,0,0.43797 -17369,5203:141,-31,-24,0,0,0.442376 -17370,5203:140,-30,-24,0,0,0.451951 -17371,5202:249,-29,-24,0,0,0.445723 -17372,5202:248,-28,-24,0,0,0.441312 -17373,5202:247,-27,-24,0,0,0.439438 -17374,5202:246,-26,-24,0,0,0.43883 -17375,5202:245,-25,-24,0,0,0.443035 -17376,5202:144,-24,-24,0,0,0.443694 -17377,5202:143,-23,-24,0,0,0.441564 -17378,5202:142,-22,-24,0,0,0.448899 -17379,5202:141,-21,-24,0,0,0.443035 -17380,5202:140,-20,-24,0,0,0.427806 -17381,5201:249,-19,-24,0,0,0.428435 -17382,5201:248,-18,-24,0,0,0.422934 -17383,5201:247,-17,-24,0,0,0.42919 -17384,5201:246,-16,-24,0,0,0.42851 -17385,5201:245,-15,-24,0,0,0.428334 -17386,5201:144,-14,-24,0,0,0.420028 -17387,5201:143,-13,-24,0,0,0.41538 -17388,5201:142,-12,-24,0,0,0.412065 -17389,5201:141,-11,-24,0,0,0.43921 -17390,5201:140,-10,-24,0,0,0.439387 -17391,5200:249,-9,-24,0,0,0.433045 -17392,5200:248,-8,-24,0,0,0.438679 -17393,5200:247,-7,-24,0,0,0.431709 -17394,5200:246,-6,-24,0,0,0.43186 -17395,5200:245,-5,-24,0,0,0.429945 -17396,5200:144,-4,-24,0,0,0.426448 -17397,5200:143,-3,-24,0,0,0.431229 -17398,5200:142,-2,-24,0,0,0.43191 -17399,5200:141,-1,-24,0,0,0.430801 -17400,3200:141,0,-24,0,0,0.42316 -17401,3200:141,1,-24,0,0,0.415604 -17402,3200:142,2,-24,0,0,0.411617 -17403,3200:143,3,-24,0,0,0.405708 -17404,3200:144,4,-24,0,0,0.405312 -17405,3200:245,5,-24,0,0,0.404965 -17406,3200:246,6,-24,0,0,0.410622 -17407,3200:247,7,-24,0,0,0.411244 -17408,3200:248,8,-24,0,0,0.40789 -17409,3200:249,9,-24,0,0,0.410797 -17410,3201:140,10,-24,0,0,0.411368 -17411,3201:141,11,-24,0,0,0.411294 -17412,3201:142,12,-24,0,0,0.417202 -17413,3201:143,13,-24,0,0,0.417952 -17414,3201:144,14,-24,0,0,0.428963 -17415,3201:245,15,-24,0,0,0.437313 -17416,3201:246,16,-24,0,0,0.439969 -17417,3201:247,17,-24,0,0,0.430877 -17418,3203:140,30,-24,0,0,0.549426 -17419,3203:141,31,-24,0,0,0.558894 -17420,3203:142,32,-24,0,0,0.536194 -17421,3203:143,33,-24,0,0,0.516217 -17422,3203:144,34,-24,0,0,0.485326 -17423,3203:245,35,-24,0,0,0.499809 -17424,3203:246,36,-24,0,0,0.512752 -17425,3203:247,37,-24,0,0,0.510133 -17426,3203:248,38,-24,0,0,0.480426 -17427,3203:249,39,-24,0,0,0.492694 -17428,3204:140,40,-24,0,0,0.495031 -17429,3204:141,41,-24,0,0,0.490794 -17430,3204:142,42,-24,0,0,0.488304 -17431,3204:143,43,-24,0,0,0.484326 -17432,3204:144,44,-24,0,0,0.480862 -17433,3204:245,45,-24,0,0,0.473583 -17434,3204:246,46,-24,0,0,0.466442 -17435,3204:247,47,-24,0,0,0.447527 -17436,3204:248,48,-24,0,0,0.453886 -17437,3204:249,49,-24,0,0,0.453987 -17438,3205:140,50,-24,0,0,0.454522 -17439,3205:141,51,-24,0,0,0.448518 -17440,3205:142,52,-24,0,0,0.449865 -17441,3205:143,53,-24,0,0,0.452562 -17442,3205:144,54,-24,0,0,0.444607 -17443,3205:245,55,-24,0,0,0.446993 -17444,3205:246,56,-24,0,0,0.437136 -17445,3205:247,57,-24,0,0,0.436554 -17446,3205:248,58,-24,0,0,0.43835 -17447,3205:249,59,-24,0,0,0.440653 -17448,3206:140,60,-24,0,0,0.446435 -17449,3206:141,61,-24,0,0,0.449204 -17450,3206:142,62,-24,0,0,0.449382 -17451,3206:143,63,-24,0,0,0.446587 -17452,3206:144,64,-24,0,0,0.446866 -17453,3206:245,65,-24,0,0,0.441033 -17454,3206:246,66,-24,0,0,0.44235 -17455,3206:247,67,-24,0,0,0.441159 -17456,3206:248,68,-24,0,0,0.439058 -17457,3206:249,69,-24,0,0,0.447171 -17458,3207:140,70,-24,0,0,0.457708 -17459,3207:141,71,-24,0,0,0.454548 -17460,3207:142,72,-24,0,0,0.465956 -17461,3207:144,74,-24,0,0,0.468003 -17462,3207:245,75,-24,0,0,0.467362 -17463,3207:246,76,-24,0,0,0.466621 -17464,3207:247,77,-24,0,0,0.457249 -17465,3207:248,78,-24,0,0,0.452867 -17466,3207:249,79,-24,0,0,0.460668 -17467,3208:140,80,-24,0,0,0.462455 -17468,3208:141,81,-24,0,0,0.461817 -17469,3208:142,82,-24,0,0,0.449127 -17470,3208:143,83,-24,0,0,0.45302 -17471,3208:144,84,-24,0,0,0.447171 -17472,3208:245,85,-24,0,0,0.43959 -17473,3208:246,86,-24,0,0,0.441844 -17474,3208:247,87,-24,0,0,0.436201 -17475,3208:248,88,-24,0,0,0.438653 -17476,3208:249,89,-24,0,0,0.429265 -17477,3209:140,90,-24,0,0,0.427001 -17478,3209:141,91,-24,0,0,0.423034 -17479,3209:142,92,-24,0,0,0.423335 -17480,3209:143,93,-24,0,0,0.419603 -17481,3209:144,94,-24,0,0,0.412713 -17482,3209:245,95,-24,0,0,0.405683 -17483,3209:246,96,-24,0,0,0.410423 -17484,3209:247,97,-24,0,0,0.400073 -17485,3209:248,98,-24,0,0,0.391718 -17486,3209:249,99,-24,0,0,0.39118 -17487,3210:140,100,-24,0,0,0.390446 -17488,3210:141,101,-24,0,0,0.390471 -17489,3210:142,102,-24,0,0,0.386833 -17490,3210:143,103,-24,0,0,0.396626 -17491,3210:144,104,-24,0,0,0.398865 -17492,3210:245,105,-24,0,0,0.388516 -17493,3210:246,106,-24,0,0,0.404965 -17494,3210:247,107,-24,0,0,0.401849 -17495,3210:248,108,-24,0,0,0.406228 -17496,3210:249,109,-24,0,0,0.411493 -17497,3211:140,110,-24,0,0,0.413833 -17498,3211:141,111,-24,0,0,0.443313 -17499,3211:142,112,-24,0,0,0.446308 -17500,3211:143,113,-24,0,0,0.454624 -17501,3211:144,114,-24,0,0,0.473019 -17502,3211:245,115,-24,0,0,0.487944 -17503,3215:144,154,-24,0,0,0.565772 -17504,3215:245,155,-24,0,0,0.545175 -17505,3215:246,156,-24,0,0,0.55273 -17506,3215:247,157,-24,0,0,0.552959 -17507,3215:248,158,-24,0,0,0.535069 -17508,3215:249,159,-24,0,0,0.529237 -17509,3216:140,160,-24,0,0,0.53131 -17510,3216:141,161,-24,0,0,0.518115 -17511,3216:142,162,-24,0,0,0.511905 -17512,3216:143,163,-24,0,0,0.50849 -17513,3216:144,164,-24,0,0,0.502814 -17514,3216:245,165,-24,0,0,0.499963 -17515,3216:246,166,-24,0,0,0.473839 -17516,3216:247,167,-24,0,0,0.466417 -17517,3216:248,168,-24,0,0,0.46312 -17518,3216:249,169,-24,0,0,0.45781 -17519,3217:140,170,-24,0,0,0.450374 -17520,3217:141,171,-24,0,0,0.447755 -17521,3217:142,172,-24,0,0,0.447628 -17522,3217:143,173,-24,0,0,0.448136 -17523,3217:144,174,-24,0,0,0.450322 -17524,3217:245,175,-24,0,0,0.442223 -17525,3217:246,176,-24,0,0,0.446968 -17526,3217:247,177,-24,0,0,0.44984 -17527,3217:248,178,-24,0,0,0.452002 -17528,3217:249,179,-24,0,0,0.455873 -17529,3218:140,180,-24,0,0,0.450069 -17530,5218:130,-180,-23,0,0,0.465547 -17531,5217:239,-179,-23,0,0,0.464857 -17532,5217:238,-178,-23,0,0,0.467286 -17533,5217:237,-177,-23,0,0,0.473839 -17534,5217:236,-176,-23,0,0,0.465803 -17535,5217:235,-175,-23,0,0,0.461511 -17536,5217:134,-174,-23,0,0,0.461383 -17537,5217:133,-173,-23,0,0,0.457504 -17538,5217:132,-172,-23,0,0,0.461281 -17539,5217:131,-171,-23,0,0,0.47243 -17540,5217:130,-170,-23,0,0,0.460234 -17541,5216:239,-169,-23,0,0,0.465726 -17542,5216:238,-168,-23,0,0,0.465752 -17543,5216:237,-167,-23,0,0,0.461613 -17544,5216:236,-166,-23,0,0,0.457606 -17545,5216:235,-165,-23,0,0,0.457683 -17546,5216:134,-164,-23,0,0,0.460617 -17547,5216:133,-163,-23,0,0,0.453198 -17548,5216:132,-162,-23,0,0,0.458601 -17549,5216:131,-161,-23,0,0,0.461025 -17550,5216:130,-160,-23,0,0,0.460745 -17551,5215:239,-159,-23,0,0,0.4657 -17552,5215:238,-158,-23,0,0,0.460489 -17553,5215:237,-157,-23,0,0,0.457249 -17554,5215:236,-156,-23,0,0,0.46335 -17555,5215:235,-155,-23,0,0,0.466084 -17556,5215:134,-154,-23,0,0,0.470791 -17557,5215:133,-153,-23,0,0,0.472866 -17558,5215:132,-152,-23,0,0,0.47535 -17559,5215:131,-151,-23,0,0,0.479811 -17560,5215:130,-150,-23,0,0,0.478733 -17561,5214:239,-149,-23,0,0,0.473659 -17562,5214:238,-148,-23,0,0,0.465369 -17563,5214:237,-147,-23,0,0,0.468284 -17564,5214:236,-146,-23,0,0,0.466595 -17565,5214:235,-145,-23,0,0,0.465778 -17566,5214:134,-144,-23,0,0,0.469973 -17567,5214:133,-143,-23,0,0,0.464116 -17568,5214:132,-142,-23,0,0,0.467107 -17569,5214:131,-141,-23,0,0,0.461536 -17570,5214:130,-140,-23,0,0,0.463707 -17571,5213:239,-139,-23,0,0,0.46657 -17572,5213:238,-138,-23,0,0,0.465956 -17573,5213:237,-137,-23,0,0,0.457556 -17574,5213:236,-136,-23,0,0,0.466903 -17575,5213:235,-135,-23,0,0,0.456382 -17576,5213:134,-134,-23,0,0,0.458907 -17577,5213:133,-133,-23,0,0,0.460106 -17578,5213:132,-132,-23,0,0,0.465522 -17579,5213:131,-131,-23,0,0,0.459877 -17580,5213:130,-130,-23,0,0,0.458703 -17581,5212:239,-129,-23,0,0,0.473454 -17582,5212:238,-128,-23,0,0,0.466979 -17583,5212:237,-127,-23,0,0,0.45493 -17584,5212:236,-126,-23,0,0,0.458652 -17585,5212:235,-125,-23,0,0,0.456 -17586,5212:134,-124,-23,0,0,0.451188 -17587,5212:133,-123,-23,0,0,0.447654 -17588,5212:132,-122,-23,0,0,0.439817 -17589,5212:131,-121,-23,0,0,0.443111 -17590,5212:130,-120,-23,0,0,0.451238 -17591,5211:239,-119,-23,0,0,0.448645 -17592,5211:238,-118,-23,0,0,0.446638 -17593,5211:237,-117,-23,0,0,0.451238 -17594,5211:236,-116,-23,0,0,0.450348 -17595,5211:235,-115,-23,0,0,0.456841 -17596,5211:134,-114,-23,0,0,0.454853 -17597,5211:133,-113,-23,0,0,0.454217 -17598,5211:132,-112,-23,0,0,0.444074 -17599,5211:131,-111,-23,0,0,0.445292 -17600,5211:130,-110,-23,0,0,0.446562 -17601,5210:239,-109,-23,0,0,0.450628 -17602,5210:238,-108,-23,0,0,0.454217 -17603,5210:237,-107,-23,0,0,0.453172 -17604,5210:236,-106,-23,0,0,0.452231 -17605,5210:235,-105,-23,0,0,0.453733 -17606,5210:134,-104,-23,0,0,0.4519 -17607,5210:133,-103,-23,0,0,0.451951 -17608,5210:132,-102,-23,0,0,0.450297 -17609,5210:131,-101,-23,0,0,0.447527 -17610,5210:130,-100,-23,0,0,0.44339 -17611,5209:239,-99,-23,0,0,0.437667 -17612,5209:238,-98,-23,0,0,0.437465 -17613,5209:237,-97,-23,0,0,0.43792 -17614,5209:236,-96,-23,0,0,0.438249 -17615,5209:235,-95,-23,0,0,0.436605 -17616,5209:134,-94,-23,0,0,0.436378 -17617,5209:133,-93,-23,0,0,0.433676 -17618,5209:132,-92,-23,0,0,0.429668 -17619,5209:131,-91,-23,0,0,0.425218 -17620,5209:130,-90,-23,0,0,0.419303 -17621,5208:239,-89,-23,0,0,0.415879 -17622,5208:238,-88,-23,0,0,0.414208 -17623,5208:237,-87,-23,0,0,0.411543 -17624,5208:236,-86,-23,0,0,0.409528 -17625,5208:235,-85,-23,0,0,0.408262 -17626,5208:134,-84,-23,0,0,0.40933 -17627,5208:133,-83,-23,0,0,0.408908 -17628,5208:132,-82,-23,0,0,0.404767 -17629,5208:131,-81,-23,0,0,0.400911 -17630,5208:130,-80,-23,0,0,0.398644 -17631,5207:239,-79,-23,0,0,0.399727 -17632,5207:238,-78,-23,0,0,0.39638 -17633,5207:237,-77,-23,0,0,0.386663 -17634,5207:236,-76,-23,0,0,0.385591 -17635,5207:235,-75,-23,0,0,0.374986 -17636,5207:134,-74,-23,0,0,0.367575 -17637,5207:133,-73,-23,0,0,0.360297 -17638,5207:132,-72,-23,0,0,0.35238 -17639,5205:130,-50,-23,0,0,0.529826 -17640,5204:239,-49,-23,0,0,0.564105 -17641,5204:238,-48,-23,0,0,0.582876 -17642,5204:237,-47,-23,0,0,0.530261 -17643,5204:236,-46,-23,0,0,0.535836 -17644,5204:235,-45,-23,0,0,0.509183 -17645,5204:134,-44,-23,0,0,0.504201 -17646,5204:133,-43,-23,0,0,0.494595 -17647,5204:132,-42,-23,0,0,0.493259 -17648,5204:131,-41,-23,0,0,0.50492 -17649,5204:130,-40,-23,0,0,0.50379 -17650,5203:239,-39,-23,0,0,0.492746 -17651,5203:238,-38,-23,0,0,0.496187 -17652,5203:237,-37,-23,0,0,0.484762 -17653,5203:236,-36,-23,0,0,0.476401 -17654,5203:235,-35,-23,0,0,0.472891 -17655,5203:134,-34,-23,0,0,0.472866 -17656,5203:133,-33,-23,0,0,0.467312 -17657,5203:132,-32,-23,0,0,0.470305 -17658,5203:131,-31,-23,0,0,0.474146 -17659,5203:130,-30,-23,0,0,0.469895 -17660,5202:239,-29,-23,0,0,0.471022 -17661,5202:238,-28,-23,0,0,0.481119 -17662,5202:237,-27,-23,0,0,0.46964 -17663,5202:236,-26,-23,0,0,0.466161 -17664,5202:235,-25,-23,0,0,0.463196 -17665,5202:134,-24,-23,0,0,0.469307 -17666,5202:133,-23,-23,0,0,0.468514 -17667,5202:132,-22,-23,0,0,0.46611 -17668,5202:131,-21,-23,0,0,0.460081 -17669,5202:130,-20,-23,0,0,0.458066 -17670,5201:239,-19,-23,0,0,0.450984 -17671,5201:238,-18,-23,0,0,0.450526 -17672,5201:237,-17,-23,0,0,0.452155 -17673,5201:236,-16,-23,0,0,0.449204 -17674,5201:235,-15,-23,0,0,0.450145 -17675,5201:134,-14,-23,0,0,0.441667 -17676,5201:133,-13,-23,0,0,0.441919 -17677,5201:132,-12,-23,0,0,0.456765 -17678,5201:131,-11,-23,0,0,0.465394 -17679,5201:130,-10,-23,0,0,0.459162 -17680,5200:239,-9,-23,0,0,0.456153 -17681,5200:238,-8,-23,0,0,0.454879 -17682,5200:237,-7,-23,0,0,0.451926 -17683,5200:236,-6,-23,0,0,0.449788 -17684,5200:235,-5,-23,0,0,0.448086 -17685,5200:134,-4,-23,0,0,0.447527 -17686,5200:133,-3,-23,0,0,0.449661 -17687,5200:132,-2,-23,0,0,0.446003 -17688,5200:131,-1,-23,0,0,0.437869 -17689,3200:131,0,-23,0,0,0.433373 -17690,3200:131,1,-23,0,0,0.429442 -17691,3200:132,2,-23,0,0,0.422232 -17692,3200:133,3,-23,0,0,0.424013 -17693,3200:134,4,-23,0,0,0.425167 -17694,3200:235,5,-23,0,0,0.419477 -17695,3200:236,6,-23,0,0,0.423837 -17696,3200:237,7,-23,0,0,0.423461 -17697,3200:238,8,-23,0,0,0.423461 -17698,3200:239,9,-23,0,0,0.426046 -17699,3201:130,10,-23,0,0,0.423109 -17700,3201:131,11,-23,0,0,0.427278 -17701,3201:132,12,-23,0,0,0.431129 -17702,3201:133,13,-23,0,0,0.427303 -17703,3201:134,14,-23,0,0,0.437566 -17704,3201:235,15,-23,0,0,0.442046 -17705,3201:236,16,-23,0,0,0.442427 -17706,3203:131,31,-23,0,0,0.567538 -17707,3203:132,32,-23,0,0,0.575313 -17708,3203:133,33,-23,0,0,0.557855 -17709,3203:134,34,-23,0,0,0.531873 -17710,3203:235,35,-23,0,0,0.531873 -17711,3203:236,36,-23,0,0,0.542728 -17712,3203:237,37,-23,0,0,0.524832 -17713,3203:238,38,-23,0,0,0.513932 -17714,3203:239,39,-23,0,0,0.522653 -17715,3204:130,40,-23,0,0,0.526293 -17716,3204:131,41,-23,0,0,0.521808 -17717,3204:132,42,-23,0,0,0.521782 -17718,3204:133,43,-23,0,0,0.514702 -17719,3204:134,44,-23,0,0,0.484736 -17720,3204:235,45,-23,0,0,0.470663 -17721,3204:236,46,-23,0,0,0.474838 -17722,3204:237,47,-23,0,0,0.491154 -17723,3204:238,48,-23,0,0,0.489408 -17724,3204:239,49,-23,0,0,0.480759 -17725,3205:130,50,-23,0,0,0.491462 -17726,3205:131,51,-23,0,0,0.478426 -17727,3205:132,52,-23,0,0,0.472968 -17728,3205:133,53,-23,0,0,0.466468 -17729,3205:134,54,-23,0,0,0.465061 -17730,3205:235,55,-23,0,0,0.467644 -17731,3205:236,56,-23,0,0,0.474479 -17732,3205:237,57,-23,0,0,0.469666 -17733,3205:238,58,-23,0,0,0.468668 -17734,3205:239,59,-23,0,0,0.472353 -17735,3206:130,60,-23,0,0,0.473608 -17736,3206:131,61,-23,0,0,0.473506 -17737,3206:132,62,-23,0,0,0.47138 -17738,3206:133,63,-23,0,0,0.47266 -17739,3206:134,64,-23,0,0,0.473634 -17740,3206:235,65,-23,0,0,0.471304 -17741,3206:236,66,-23,0,0,0.469921 -17742,3206:237,67,-23,0,0,0.473941 -17743,3206:238,68,-23,0,0,0.483582 -17744,3206:239,69,-23,0,0,0.478554 -17745,3207:130,70,-23,0,0,0.482248 -17746,3207:131,71,-23,0,0,0.48294 -17747,3207:132,72,-23,0,0,0.485429 -17748,3207:134,74,-23,0,0,0.487379 -17749,3207:235,75,-23,0,0,0.483068 -17750,3207:236,76,-23,0,0,0.486481 -17751,3207:237,77,-23,0,0,0.483299 -17752,3207:238,78,-23,0,0,0.478118 -17753,3207:239,79,-23,0,0,0.488612 -17754,3208:130,80,-23,0,0,0.485326 -17755,3208:131,81,-23,0,0,0.480914 -17756,3208:132,82,-23,0,0,0.469742 -17757,3208:133,83,-23,0,0,0.467797 -17758,3208:134,84,-23,0,0,0.465828 -17759,3208:235,85,-23,0,0,0.469563 -17760,3208:236,86,-23,0,0,0.456765 -17761,3208:237,87,-23,0,0,0.449916 -17762,3208:238,88,-23,0,0,0.449967 -17763,3208:239,89,-23,0,0,0.440754 -17764,3209:130,90,-23,0,0,0.4336 -17765,3209:131,91,-23,0,0,0.435796 -17766,3209:132,92,-23,0,0,0.434155 -17767,3209:133,93,-23,0,0,0.431179 -17768,3209:134,94,-23,0,0,0.434079 -17769,3209:235,95,-23,0,0,0.425946 -17770,3209:236,96,-23,0,0,0.420228 -17771,3209:237,97,-23,0,0,0.412389 -17772,3209:238,98,-23,0,0,0.416503 -17773,3209:239,99,-23,0,0,0.408983 -17774,3210:130,100,-23,0,0,0.420904 -17775,3210:131,101,-23,0,0,0.40727 -17776,3210:132,102,-23,0,0,0.408238 -17777,3210:133,103,-23,0,0,0.41199 -17778,3210:134,104,-23,0,0,0.427177 -17779,3210:235,105,-23,0,0,0.408361 -17780,3210:236,106,-23,0,0,0.421731 -17781,3210:237,107,-23,0,0,0.415679 -17782,3210:238,108,-23,0,0,0.420078 -17783,3210:239,109,-23,0,0,0.429265 -17784,3211:130,110,-23,0,0,0.441717 -17785,3211:131,111,-23,0,0,0.457862 -17786,3211:132,112,-23,0,0,0.45251 -17787,3211:133,113,-23,0,0,0.467184 -17788,3211:134,114,-23,0,0,0.491308 -17789,3211:235,115,-23,0,0,0.490538 -17790,3215:134,154,-23,0,0,0.576066 -17791,3215:235,155,-23,0,0,0.568874 -17792,3215:236,156,-23,0,0,0.541249 -17793,3215:237,157,-23,0,0,0.539769 -17794,3215:238,158,-23,0,0,0.534763 -17795,3215:239,159,-23,0,0,0.520295 -17796,3216:130,160,-23,0,0,0.515318 -17797,3216:131,161,-23,0,0,0.511802 -17798,3216:132,162,-23,0,0,0.51021 -17799,3216:133,163,-23,0,0,0.511468 -17800,3216:134,164,-23,0,0,0.508798 -17801,3216:235,165,-23,0,0,0.506821 -17802,3216:236,166,-23,0,0,0.493798 -17803,3216:237,167,-23,0,0,0.470945 -17804,3216:238,168,-23,0,0,0.466468 -17805,3216:239,169,-23,0,0,0.464933 -17806,3217:130,170,-23,0,0,0.462864 -17807,3217:131,171,-23,0,0,0.462481 -17808,3217:132,172,-23,0,0,0.464065 -17809,3217:133,173,-23,0,0,0.46432 -17810,3217:134,174,-23,0,0,0.466877 -17811,3217:235,175,-23,0,0,0.462736 -17812,3217:236,176,-23,0,0,0.462558 -17813,3217:237,177,-23,0,0,0.471534 -17814,3217:238,178,-23,0,0,0.470177 -17815,3217:239,179,-23,0,0,0.469666 -17816,3218:130,180,-23,0,0,0.465547 -17817,5218:120,-180,-22,0,0,0.482812 -17818,5217:229,-179,-22,0,0,0.492746 -17819,5217:228,-178,-22,0,0,0.486969 -17820,5217:227,-177,-22,0,0,0.481683 -17821,5217:226,-176,-22,0,0,0.478426 -17822,5217:225,-175,-22,0,0,0.479502 -17823,5217:124,-174,-22,0,0,0.485532 -17824,5217:123,-173,-22,0,0,0.487072 -17825,5217:122,-172,-22,0,0,0.482427 -17826,5217:121,-171,-22,0,0,0.492746 -17827,5217:120,-170,-22,0,0,0.480169 -17828,5216:229,-169,-22,0,0,0.476247 -17829,5216:228,-168,-22,0,0,0.478682 -17830,5216:227,-167,-22,0,0,0.473557 -17831,5216:226,-166,-22,0,0,0.472584 -17832,5216:225,-165,-22,0,0,0.468488 -17833,5216:124,-164,-22,0,0,0.47512 -17834,5216:123,-163,-22,0,0,0.470356 -17835,5216:122,-162,-22,0,0,0.47028 -17836,5216:121,-161,-22,0,0,0.469205 -17837,5216:120,-160,-22,0,0,0.47412 -17838,5215:229,-159,-22,0,0,0.481195 -17839,5215:228,-158,-22,0,0,0.481811 -17840,5215:227,-157,-22,0,0,0.479939 -17841,5215:226,-156,-22,0,0,0.480605 -17842,5215:225,-155,-22,0,0,0.488381 -17843,5215:124,-154,-22,0,0,0.49159 -17844,5215:123,-153,-22,0,0,0.490794 -17845,5215:122,-152,-22,0,0,0.487893 -17846,5215:121,-151,-22,0,0,0.493002 -17847,5215:120,-150,-22,0,0,0.500913 -17848,5214:229,-149,-22,0,0,0.49367 -17849,5214:228,-148,-22,0,0,0.493748 -17850,5214:227,-147,-22,0,0,0.490024 -17851,5214:226,-146,-22,0,0,0.490512 -17852,5214:225,-145,-22,0,0,0.491873 -17853,5214:124,-144,-22,0,0,0.492181 -17854,5214:123,-143,-22,0,0,0.485172 -17855,5214:122,-142,-22,0,0,0.481631 -17856,5214:121,-141,-22,0,0,0.48987 -17857,5214:120,-140,-22,0,0,0.480349 -17858,5213:229,-139,-22,0,0,0.487765 -17859,5213:228,-138,-22,0,0,0.485044 -17860,5213:227,-137,-22,0,0,0.476298 -17861,5213:226,-136,-22,0,0,0.477708 -17862,5213:225,-135,-22,0,0,0.469153 -17863,5213:124,-134,-22,0,0,0.470561 -17864,5213:123,-133,-22,0,0,0.478118 -17865,5213:122,-132,-22,0,0,0.475043 -17866,5213:121,-131,-22,0,0,0.491795 -17867,5213:120,-130,-22,0,0,0.496136 -17868,5212:229,-129,-22,0,0,0.489202 -17869,5212:228,-128,-22,0,0,0.479759 -17870,5212:227,-127,-22,0,0,0.473121 -17871,5212:226,-126,-22,0,0,0.476401 -17872,5212:225,-125,-22,0,0,0.471765 -17873,5212:124,-124,-22,0,0,0.465369 -17874,5212:123,-123,-22,0,0,0.4634 -17875,5212:122,-122,-22,0,0,0.465778 -17876,5212:121,-121,-22,0,0,0.458729 -17877,5212:120,-120,-22,0,0,0.467516 -17878,5211:229,-119,-22,0,0,0.463375 -17879,5211:228,-118,-22,0,0,0.468003 -17880,5211:227,-117,-22,0,0,0.465189 -17881,5211:226,-116,-22,0,0,0.461255 -17882,5211:225,-115,-22,0,0,0.46749 -17883,5211:124,-114,-22,0,0,0.467542 -17884,5211:123,-113,-22,0,0,0.468693 -17885,5211:122,-112,-22,0,0,0.456204 -17886,5211:121,-111,-22,0,0,0.463043 -17887,5211:120,-110,-22,0,0,0.463502 -17888,5210:229,-109,-22,0,0,0.467286 -17889,5210:228,-108,-22,0,0,0.471585 -17890,5210:227,-107,-22,0,0,0.473096 -17891,5210:226,-106,-22,0,0,0.47028 -17892,5210:225,-105,-22,0,0,0.470971 -17893,5210:124,-104,-22,0,0,0.469947 -17894,5210:123,-103,-22,0,0,0.468949 -17895,5210:122,-102,-22,0,0,0.466621 -17896,5210:121,-101,-22,0,0,0.462302 -17897,5210:120,-100,-22,0,0,0.45975 -17898,5209:229,-99,-22,0,0,0.454497 -17899,5209:228,-98,-22,0,0,0.455465 -17900,5209:227,-97,-22,0,0,0.453911 -17901,5209:226,-96,-22,0,0,0.448899 -17902,5209:225,-95,-22,0,0,0.447425 -17903,5209:124,-94,-22,0,0,0.444506 -17904,5209:123,-93,-22,0,0,0.439185 -17905,5209:122,-92,-22,0,0,0.43466 -17906,5209:121,-91,-22,0,0,0.429542 -17907,5209:120,-90,-22,0,0,0.425343 -17908,5208:229,-89,-22,0,0,0.421831 -17909,5208:228,-88,-22,0,0,0.420453 -17910,5208:227,-87,-22,0,0,0.417502 -17911,5208:226,-86,-22,0,0,0.414806 -17912,5208:225,-85,-22,0,0,0.416203 -17913,5208:124,-84,-22,0,0,0.414856 -17914,5208:123,-83,-22,0,0,0.412563 -17915,5208:122,-82,-22,0,0,0.411966 -17916,5208:121,-81,-22,0,0,0.411319 -17917,5208:120,-80,-22,0,0,0.406501 -17918,5207:229,-79,-22,0,0,0.401232 -17919,5207:228,-78,-22,0,0,0.399308 -17920,5207:227,-77,-22,0,0,0.397486 -17921,5207:226,-76,-22,0,0,0.388053 -17922,5207:225,-75,-22,0,0,0.384083 -17923,5207:124,-74,-22,0,0,0.372101 -17924,5207:123,-73,-22,0,0,0.358831 -17925,5207:122,-72,-22,0,0,0.364786 -17926,5204:229,-49,-22,0,0,0.540841 -17927,5204:228,-48,-22,0,0,0.575514 -17928,5204:227,-47,-22,0,0,0.571845 -17929,5204:226,-46,-22,0,0,0.541657 -17930,5204:225,-45,-22,0,0,0.529749 -17931,5204:124,-44,-22,0,0,0.528085 -17932,5204:123,-43,-22,0,0,0.53241 -17933,5204:122,-42,-22,0,0,0.530184 -17934,5204:121,-41,-22,0,0,0.531949 -17935,5204:120,-40,-22,0,0,0.516806 -17936,5203:229,-39,-22,0,0,0.523833 -17937,5203:228,-38,-22,0,0,0.517678 -17938,5203:227,-37,-22,0,0,0.507823 -17939,5203:226,-36,-22,0,0,0.502018 -17940,5203:225,-35,-22,0,0,0.494672 -17941,5203:124,-34,-22,0,0,0.492489 -17942,5203:123,-33,-22,0,0,0.491976 -17943,5203:122,-32,-22,0,0,0.500477 -17944,5203:121,-31,-22,0,0,0.50415 -17945,5203:120,-30,-22,0,0,0.502429 -17946,5202:229,-29,-22,0,0,0.506281 -17947,5202:228,-28,-22,0,0,0.509902 -17948,5202:227,-27,-22,0,0,0.50492 -17949,5202:226,-26,-22,0,0,0.502788 -17950,5202:225,-25,-22,0,0,0.502762 -17951,5202:124,-24,-22,0,0,0.500374 -17952,5202:123,-23,-22,0,0,0.497137 -17953,5202:122,-22,-22,0,0,0.487328 -17954,5202:121,-21,-22,0,0,0.481683 -17955,5202:120,-20,-22,0,0,0.476606 -17956,5201:229,-19,-22,0,0,0.482427 -17957,5201:228,-18,-22,0,0,0.483838 -17958,5201:227,-17,-22,0,0,0.478733 -17959,5201:226,-16,-22,0,0,0.480759 -17960,5201:225,-15,-22,0,0,0.479502 -17961,5201:124,-14,-22,0,0,0.482889 -17962,5201:123,-13,-22,0,0,0.480709 -17963,5201:122,-12,-22,0,0,0.483068 -17964,5201:121,-11,-22,0,0,0.47817 -17965,5201:120,-10,-22,0,0,0.479528 -17966,5200:229,-9,-22,0,0,0.483735 -17967,5200:228,-8,-22,0,0,0.483325 -17968,5200:227,-7,-22,0,0,0.48058 -17969,5200:226,-6,-22,0,0,0.477195 -17970,5200:225,-5,-22,0,0,0.472533 -17971,5200:124,-4,-22,0,0,0.466775 -17972,5200:123,-3,-22,0,0,0.463707 -17973,5200:122,-2,-22,0,0,0.461383 -17974,5200:121,-1,-22,0,0,0.452715 -17975,3200:121,0,-22,0,0,0.442933 -17976,3200:121,1,-22,0,0,0.440247 -17977,3200:122,2,-22,0,0,0.446029 -17978,3200:123,3,-22,0,0,0.444074 -17979,3200:124,4,-22,0,0,0.433928 -17980,3200:225,5,-22,0,0,0.437364 -17981,3200:226,6,-22,0,0,0.436125 -17982,3200:227,7,-22,0,0,0.433878 -17983,3200:228,8,-22,0,0,0.433726 -17984,3200:229,9,-22,0,0,0.431734 -17985,3201:120,10,-22,0,0,0.431633 -17986,3201:121,11,-22,0,0,0.434686 -17987,3201:122,12,-22,0,0,0.435266 -17988,3201:123,13,-22,0,0,0.437085 -17989,3201:124,14,-22,0,0,0.436908 -17990,3201:225,15,-22,0,0,0.434433 -17991,3201:226,16,-22,0,0,0.41356 -17992,3203:122,32,-22,0,0,0.572121 -17993,3203:123,33,-22,0,0,0.58395 -17994,3203:124,34,-22,0,0,0.562286 -17995,3203:225,35,-22,0,0,0.550341 -17996,3203:226,36,-22,0,0,0.559224 -17997,3203:227,37,-22,0,0,0.533766 -17998,3203:228,38,-22,0,0,0.538339 -17999,3203:229,39,-22,0,0,0.541988 -18000,3204:120,40,-22,0,0,0.539514 -18001,3204:121,41,-22,0,0,0.539386 -18002,3204:122,42,-22,0,0,0.537956 -18003,3204:123,43,-22,0,0,0.528289 -18004,3204:124,44,-22,0,0,0.532589 -18005,3204:225,45,-22,0,0,0.529749 -18006,3204:226,46,-22,0,0,0.511802 -18007,3204:227,47,-22,0,0,0.520243 -18008,3204:228,48,-22,0,0,0.522936 -18009,3204:229,49,-22,0,0,0.508772 -18010,3205:120,50,-22,0,0,0.518269 -18011,3205:121,51,-22,0,0,0.503738 -18012,3205:122,52,-22,0,0,0.507155 -18013,3205:123,53,-22,0,0,0.499346 -18014,3205:124,54,-22,0,0,0.495134 -18015,3205:225,55,-22,0,0,0.503277 -18016,3205:226,56,-22,0,0,0.505202 -18017,3205:227,57,-22,0,0,0.509851 -18018,3205:228,58,-22,0,0,0.50343 -18019,3205:229,59,-22,0,0,0.503636 -18020,3206:120,60,-22,0,0,0.499654 -18021,3206:121,61,-22,0,0,0.504175 -18022,3206:122,62,-22,0,0,0.505562 -18023,3206:123,63,-22,0,0,0.499115 -18024,3206:124,64,-22,0,0,0.508156 -18025,3206:225,65,-22,0,0,0.500425 -18026,3206:226,66,-22,0,0,0.502352 -18027,3206:227,67,-22,0,0,0.501632 -18028,3206:228,68,-22,0,0,0.50795 -18029,3206:229,69,-22,0,0,0.514933 -18030,3207:120,70,-22,0,0,0.517807 -18031,3207:121,71,-22,0,0,0.510158 -18032,3207:122,72,-22,0,0,0.504329 -18033,3207:124,74,-22,0,0,0.499988 -18034,3207:225,75,-22,0,0,0.506025 -18035,3207:226,76,-22,0,0,0.507386 -18036,3207:227,77,-22,0,0,0.506538 -18037,3207:228,78,-22,0,0,0.502506 -18038,3207:229,79,-22,0,0,0.50212 -18039,3208:120,80,-22,0,0,0.506641 -18040,3208:121,81,-22,0,0,0.494287 -18041,3208:122,82,-22,0,0,0.501915 -18042,3208:123,83,-22,0,0,0.49236 -18043,3208:124,84,-22,0,0,0.488149 -18044,3208:225,85,-22,0,0,0.478247 -18045,3208:226,86,-22,0,0,0.47512 -18046,3208:227,87,-22,0,0,0.467516 -18047,3208:228,88,-22,0,0,0.459724 -18048,3208:229,89,-22,0,0,0.459698 -18049,3209:120,90,-22,0,0,0.461459 -18050,3209:121,91,-22,0,0,0.455899 -18051,3209:122,92,-22,0,0,0.447069 -18052,3209:123,93,-22,0,0,0.446232 -18053,3209:124,94,-22,0,0,0.449814 -18054,3209:225,95,-22,0,0,0.441286 -18055,3209:226,96,-22,0,0,0.431306 -18056,3209:227,97,-22,0,0,0.441312 -18057,3209:228,98,-22,0,0,0.430373 -18058,3209:229,99,-22,0,0,0.437085 -18059,3210:120,100,-22,0,0,0.422959 -18060,3210:121,101,-22,0,0,0.418302 -18061,3210:122,102,-22,0,0,0.42924 -18062,3210:123,103,-22,0,0,0.43509 -18063,3210:124,104,-22,0,0,0.435064 -18064,3210:225,105,-22,0,0,0.428561 -18065,3210:226,106,-22,0,0,0.430071 -18066,3210:227,107,-22,0,0,0.427379 -18067,3210:228,108,-22,0,0,0.435772 -18068,3210:229,109,-22,0,0,0.444632 -18069,3211:120,110,-22,0,0,0.466468 -18070,3211:121,111,-22,0,0,0.471432 -18071,3211:122,112,-22,0,0,0.47389 -18072,3211:123,113,-22,0,0,0.494672 -18073,3211:124,114,-22,0,0,0.509466 -18074,3215:124,154,-22,0,0,0.578473 -18075,3215:225,155,-22,0,0,0.568395 -18076,3215:226,156,-22,0,0,0.552933 -18077,3215:227,157,-22,0,0,0.530005 -18078,3215:228,158,-22,0,0,0.53021 -18079,3215:229,159,-22,0,0,0.523551 -18080,3216:120,160,-22,0,0,0.517063 -18081,3216:121,161,-22,0,0,0.515447 -18082,3216:122,162,-22,0,0,0.515447 -18083,3216:123,163,-22,0,0,0.51519 -18084,3216:124,164,-22,0,0,0.513419 -18085,3216:225,165,-22,0,0,0.514497 -18086,3216:226,166,-22,0,0,0.503508 -18087,3216:227,167,-22,0,0,0.485403 -18088,3216:228,168,-22,0,0,0.477042 -18089,3216:229,169,-22,0,0,0.481811 -18090,3217:120,170,-22,0,0,0.48471 -18091,3217:121,171,-22,0,0,0.488766 -18092,3217:122,172,-22,0,0,0.490281 -18093,3217:123,173,-22,0,0,0.491154 -18094,3217:124,174,-22,0,0,0.488099 -18095,3217:225,175,-22,0,0,0.488099 -18096,3217:226,176,-22,0,0,0.488047 -18097,3217:227,177,-22,0,0,0.483992 -18098,3217:228,178,-22,0,0,0.49236 -18099,3217:229,179,-22,0,0,0.492874 -18100,3218:120,180,-22,0,0,0.482812 -18101,5218:110,-180,-21,0,0,0.495314 -18102,5217:219,-179,-21,0,0,0.497857 -18103,5217:218,-178,-21,0,0,0.495776 -18104,5217:217,-177,-21,0,0,0.497497 -18105,5217:216,-176,-21,0,0,0.500759 -18106,5217:215,-175,-21,0,0,0.503713 -18107,5217:114,-174,-21,0,0,0.490948 -18108,5217:113,-173,-21,0,0,0.49927 -18109,5217:112,-172,-21,0,0,0.495982 -18110,5217:111,-171,-21,0,0,0.494723 -18111,5217:110,-170,-21,0,0,0.495622 -18112,5216:219,-169,-21,0,0,0.487482 -18113,5216:218,-168,-21,0,0,0.500014 -18114,5216:217,-167,-21,0,0,0.495622 -18115,5216:216,-166,-21,0,0,0.485146 -18116,5216:215,-165,-21,0,0,0.487379 -18117,5216:114,-164,-21,0,0,0.482298 -18118,5216:113,-163,-21,0,0,0.481452 -18119,5216:112,-162,-21,0,0,0.487687 -18120,5216:111,-161,-21,0,0,0.490769 -18121,5216:110,-160,-21,0,0,0.492694 -18122,5215:219,-159,-21,0,0,0.502506 -18123,5215:218,-158,-21,0,0,0.494132 -18124,5215:217,-157,-21,0,0,0.500605 -18125,5215:216,-156,-21,0,0,0.499783 -18126,5215:215,-155,-21,0,0,0.500477 -18127,5215:114,-154,-21,0,0,0.508387 -18128,5215:113,-153,-21,0,0,0.512597 -18129,5215:112,-152,-21,0,0,0.514318 -18130,5215:111,-151,-21,0,0,0.515986 -18131,5215:110,-150,-21,0,0,0.513317 -18132,5214:219,-149,-21,0,0,0.513034 -18133,5214:218,-148,-21,0,0,0.520705 -18134,5214:217,-147,-21,0,0,0.515678 -18135,5214:216,-146,-21,0,0,0.512726 -18136,5214:215,-145,-21,0,0,0.508695 -18137,5214:114,-144,-21,0,0,0.515164 -18138,5214:113,-143,-21,0,0,0.506281 -18139,5214:112,-142,-21,0,0,0.509774 -18140,5214:111,-141,-21,0,0,0.505691 -18141,5214:110,-140,-21,0,0,0.503636 -18142,5213:219,-139,-21,0,0,0.500194 -18143,5213:218,-138,-21,0,0,0.500246 -18144,5213:217,-137,-21,0,0,0.496341 -18145,5213:216,-136,-21,0,0,0.496958 -18146,5213:215,-135,-21,0,0,0.498345 -18147,5213:114,-134,-21,0,0,0.503687 -18148,5213:113,-133,-21,0,0,0.506615 -18149,5213:112,-132,-21,0,0,0.503713 -18150,5213:111,-131,-21,0,0,0.495622 -18151,5213:110,-130,-21,0,0,0.511956 -18152,5212:219,-129,-21,0,0,0.496238 -18153,5212:218,-128,-21,0,0,0.506307 -18154,5212:217,-127,-21,0,0,0.495802 -18155,5212:216,-126,-21,0,0,0.49272 -18156,5212:215,-125,-21,0,0,0.488945 -18157,5212:114,-124,-21,0,0,0.481965 -18158,5212:113,-123,-21,0,0,0.477067 -18159,5212:112,-122,-21,0,0,0.480016 -18160,5212:111,-121,-21,0,0,0.475683 -18161,5212:110,-120,-21,0,0,0.482837 -18162,5211:219,-119,-21,0,0,0.478067 -18163,5211:218,-118,-21,0,0,0.481452 -18164,5211:217,-117,-21,0,0,0.479118 -18165,5211:216,-116,-21,0,0,0.48135 -18166,5211:215,-115,-21,0,0,0.484659 -18167,5211:114,-114,-21,0,0,0.487123 -18168,5211:113,-113,-21,0,0,0.48507 -18169,5211:112,-112,-21,0,0,0.479118 -18170,5211:111,-111,-21,0,0,0.482375 -18171,5211:110,-110,-21,0,0,0.482991 -18172,5210:219,-109,-21,0,0,0.48471 -18173,5210:218,-108,-21,0,0,0.485839 -18174,5210:217,-107,-21,0,0,0.489202 -18175,5210:216,-106,-21,0,0,0.485686 -18176,5210:215,-105,-21,0,0,0.485121 -18177,5210:114,-104,-21,0,0,0.486892 -18178,5210:113,-103,-21,0,0,0.484223 -18179,5210:112,-102,-21,0,0,0.479067 -18180,5210:111,-101,-21,0,0,0.475632 -18181,5210:110,-100,-21,0,0,0.474428 -18182,5209:219,-99,-21,0,0,0.472763 -18183,5209:218,-98,-21,0,0,0.471176 -18184,5209:217,-97,-21,0,0,0.465624 -18185,5209:216,-96,-21,0,0,0.458397 -18186,5209:215,-95,-21,0,0,0.455312 -18187,5209:114,-94,-21,0,0,0.451264 -18188,5209:113,-93,-21,0,0,0.446384 -18189,5209:112,-92,-21,0,0,0.440146 -18190,5209:111,-91,-21,0,0,0.434862 -18191,5209:110,-90,-21,0,0,0.429794 -18192,5208:219,-89,-21,0,0,0.426298 -18193,5208:218,-88,-21,0,0,0.424288 -18194,5208:217,-87,-21,0,0,0.422332 -18195,5208:216,-86,-21,0,0,0.420353 -18196,5208:215,-85,-21,0,0,0.418752 -18197,5208:114,-84,-21,0,0,0.419403 -18198,5208:113,-83,-21,0,0,0.419227 -18199,5208:112,-82,-21,0,0,0.418352 -18200,5208:111,-81,-21,0,0,0.415081 -18201,5208:110,-80,-21,0,0,0.40608 -18202,5207:219,-79,-21,0,0,0.406873 -18203,5207:218,-78,-21,0,0,0.404792 -18204,5207:217,-77,-21,0,0,0.399161 -18205,5207:216,-76,-21,0,0,0.394709 -18206,5207:215,-75,-21,0,0,0.384594 -18207,5207:114,-74,-21,0,0,0.377566 -18208,5207:113,-73,-21,0,0,0.367767 -18209,5207:112,-72,-21,0,0,0.382408 -18210,5207:111,-71,-21,0,0,0.346727 -18211,5204:218,-48,-21,0,0,0.580876 -18212,5204:217,-47,-21,0,0,0.594889 -18213,5204:216,-46,-21,0,0,0.566605 -18214,5204:215,-45,-21,0,0,0.564737 -18215,5204:114,-44,-21,0,0,0.558742 -18216,5204:113,-43,-21,0,0,0.561729 -18217,5204:112,-42,-21,0,0,0.551816 -18218,5204:111,-41,-21,0,0,0.547951 -18219,5204:110,-40,-21,0,0,0.549884 -18220,5203:219,-39,-21,0,0,0.548612 -18221,5203:218,-38,-21,0,0,0.543544 -18222,5203:217,-37,-21,0,0,0.543697 -18223,5203:216,-36,-21,0,0,0.535095 -18224,5203:215,-35,-21,0,0,0.522731 -18225,5203:114,-34,-21,0,0,0.526523 -18226,5203:113,-33,-21,0,0,0.532512 -18227,5203:112,-32,-21,0,0,0.53535 -18228,5203:111,-31,-21,0,0,0.530286 -18229,5203:110,-30,-21,0,0,0.532845 -18230,5202:219,-29,-21,0,0,0.533996 -18231,5202:218,-28,-21,0,0,0.531899 -18232,5202:217,-27,-21,0,0,0.532027 -18233,5202:216,-26,-21,0,0,0.53241 -18234,5202:215,-25,-21,0,0,0.527342 -18235,5202:114,-24,-21,0,0,0.521423 -18236,5202:113,-23,-21,0,0,0.514625 -18237,5202:112,-22,-21,0,0,0.508901 -18238,5202:111,-21,-21,0,0,0.504355 -18239,5202:110,-20,-21,0,0,0.502891 -18240,5201:219,-19,-21,0,0,0.506975 -18241,5201:218,-18,-21,0,0,0.511494 -18242,5201:217,-17,-21,0,0,0.510184 -18243,5201:216,-16,-21,0,0,0.515216 -18244,5201:215,-15,-21,0,0,0.513137 -18245,5201:114,-14,-21,0,0,0.514549 -18246,5201:113,-13,-21,0,0,0.511057 -18247,5201:112,-12,-21,0,0,0.506846 -18248,5201:111,-11,-21,0,0,0.508284 -18249,5201:110,-10,-21,0,0,0.508284 -18250,5200:219,-9,-21,0,0,0.50415 -18251,5200:218,-8,-21,0,0,0.500117 -18252,5200:217,-7,-21,0,0,0.496162 -18253,5200:216,-6,-21,0,0,0.492668 -18254,5200:215,-5,-21,0,0,0.489536 -18255,5200:114,-4,-21,0,0,0.486712 -18256,5200:113,-3,-21,0,0,0.482786 -18257,5200:112,-2,-21,0,0,0.47576 -18258,5200:111,-1,-21,0,0,0.471099 -18259,3200:111,0,-21,0,0,0.471559 -18260,3200:111,1,-21,0,0,0.469793 -18261,3200:112,2,-21,0,0,0.466545 -18262,3200:113,3,-21,0,0,0.456408 -18263,3200:114,4,-21,0,0,0.449687 -18264,3200:215,5,-21,0,0,0.446638 -18265,3200:216,6,-21,0,0,0.443237 -18266,3200:217,7,-21,0,0,0.440856 -18267,3200:218,8,-21,0,0,0.439894 -18268,3200:219,9,-21,0,0,0.437085 -18269,3201:110,10,-21,0,0,0.436327 -18270,3201:111,11,-21,0,0,0.43921 -18271,3201:112,12,-21,0,0,0.439463 -18272,3201:113,13,-21,0,0,0.441438 -18273,3201:114,14,-21,0,0,0.437085 -18274,3201:215,15,-21,0,0,0.39633 -18275,3203:113,33,-21,0,0,0.589132 -18276,3203:114,34,-21,0,0,0.59112 -18277,3203:215,35,-21,0,0,0.587763 -18278,3203:216,36,-21,0,0,0.556689 -18279,3203:217,37,-21,0,0,0.551994 -18280,3203:218,38,-21,0,0,0.547747 -18281,3203:219,39,-21,0,0,0.550443 -18282,3204:110,40,-21,0,0,0.553543 -18283,3204:111,41,-21,0,0,0.56365 -18284,3204:112,42,-21,0,0,0.566428 -18285,3204:113,43,-21,0,0,0.568042 -18286,3204:114,44,-21,0,0,0.568521 -18287,3204:215,45,-21,0,0,0.552705 -18288,3204:216,46,-21,0,0,0.545404 -18289,3204:217,47,-21,0,0,0.542167 -18290,3204:218,48,-21,0,0,0.544614 -18291,3204:219,49,-21,0,0,0.536014 -18292,3205:110,50,-21,0,0,0.536398 -18293,3205:111,51,-21,0,0,0.54181 -18294,3205:112,52,-21,0,0,0.531029 -18295,3205:113,53,-21,0,0,0.534277 -18296,3205:114,54,-21,0,0,0.534993 -18297,3205:215,55,-21,0,0,0.53131 -18298,3205:216,56,-21,0,0,0.527803 -18299,3205:217,57,-21,0,0,0.529211 -18300,3205:218,58,-21,0,0,0.533254 -18301,3205:219,59,-21,0,0,0.53218 -18302,3206:110,60,-21,0,0,0.524909 -18303,3206:111,61,-21,0,0,0.52496 -18304,3206:112,62,-21,0,0,0.532231 -18305,3206:113,63,-21,0,0,0.51991 -18306,3206:114,64,-21,0,0,0.527188 -18307,3206:215,65,-21,0,0,0.530466 -18308,3206:216,66,-21,0,0,0.523295 -18309,3206:217,67,-21,0,0,0.529365 -18310,3206:218,68,-21,0,0,0.533663 -18311,3206:219,69,-21,0,0,0.531847 -18312,3207:110,70,-21,0,0,0.522423 -18313,3207:111,71,-21,0,0,0.523115 -18314,3207:112,72,-21,0,0,0.5266 -18315,3207:114,74,-21,0,0,0.517473 -18316,3207:215,75,-21,0,0,0.518885 -18317,3207:216,76,-21,0,0,0.524038 -18318,3207:217,77,-21,0,0,0.522372 -18319,3207:218,78,-21,0,0,0.515216 -18320,3207:219,79,-21,0,0,0.518218 -18321,3208:110,80,-21,0,0,0.516832 -18322,3208:111,81,-21,0,0,0.508824 -18323,3208:112,82,-21,0,0,0.508952 -18649,3216:206,166,-20,0,0,0.53264 -18324,3208:113,83,-21,0,0,0.496367 -18325,3208:114,84,-21,0,0,0.50415 -18326,3208:215,85,-21,0,0,0.497985 -18327,3208:216,86,-21,0,0,0.49367 -18328,3208:217,87,-21,0,0,0.487534 -18329,3208:218,88,-21,0,0,0.481426 -18330,3208:219,89,-21,0,0,0.481016 -18331,3209:110,90,-21,0,0,0.479888 -18332,3209:111,91,-21,0,0,0.469486 -18333,3209:112,92,-21,0,0,0.463707 -18334,3209:113,93,-21,0,0,0.460515 -18335,3209:114,94,-21,0,0,0.460694 -18336,3209:215,95,-21,0,0,0.460106 -18337,3209:216,96,-21,0,0,0.453733 -18338,3209:217,97,-21,0,0,0.453962 -18339,3209:218,98,-21,0,0,0.448924 -18340,3209:219,99,-21,0,0,0.449077 -18341,3210:110,100,-21,0,0,0.464346 -18342,3210:111,101,-21,0,0,0.45437 -18343,3210:112,102,-21,0,0,0.443136 -18344,3210:113,103,-21,0,0,0.441387 -18345,3210:114,104,-21,0,0,0.444354 -18346,3210:215,105,-21,0,0,0.466595 -18347,3210:216,106,-21,0,0,0.470791 -18348,3210:217,107,-21,0,0,0.459086 -18349,3210:218,108,-21,0,0,0.472968 -18350,3210:219,109,-21,0,0,0.465675 -18351,3211:110,110,-21,0,0,0.472891 -18352,3211:111,111,-21,0,0,0.476504 -18353,3211:112,112,-21,0,0,0.519988 -18354,3211:113,113,-21,0,0,0.533254 -18355,3211:114,114,-21,0,0,0.518551 -18356,3215:114,154,-21,0,0,0.586244 -18357,3215:215,155,-21,0,0,0.563929 -18358,3215:216,156,-21,0,0,0.54232 -18359,3215:217,157,-21,0,0,0.534583 -18360,3215:218,158,-21,0,0,0.53154 -18361,3215:219,159,-21,0,0,0.527829 -18362,3216:110,160,-21,0,0,0.523935 -18363,3216:111,161,-21,0,0,0.521628 -18364,3216:112,162,-21,0,0,0.527803 -18365,3216:113,163,-21,0,0,0.527471 -18366,3216:114,164,-21,0,0,0.523269 -18367,3216:215,165,-21,0,0,0.519012 -18368,3216:216,166,-21,0,0,0.513624 -18369,3216:217,167,-21,0,0,0.508541 -18370,3216:218,168,-21,0,0,0.49891 -18371,3216:219,169,-21,0,0,0.508438 -18372,3217:110,170,-21,0,0,0.504227 -18373,3217:111,171,-21,0,0,0.500348 -18374,3217:112,172,-21,0,0,0.50397 -18375,3217:113,173,-21,0,0,0.508464 -18376,3217:114,174,-21,0,0,0.506127 -18377,3217:215,175,-21,0,0,0.503379 -18378,3217:216,176,-21,0,0,0.505126 -18379,3217:217,177,-21,0,0,0.505049 -18380,3217:218,178,-21,0,0,0.502557 -18381,3217:219,179,-21,0,0,0.496393 -18382,3218:110,180,-21,0,0,0.495314 -18383,5218:100,-180,-20,0,0,0.514805 -18384,5217:209,-179,-20,0,0,0.512213 -18385,5217:208,-178,-20,0,0,0.512213 -18386,5217:207,-177,-20,0,0,0.510184 -18387,5217:206,-176,-20,0,0,0.50397 -18388,5217:205,-175,-20,0,0,0.514625 -18389,5217:104,-174,-20,0,0,0.509388 -18390,5217:103,-173,-20,0,0,0.506846 -18391,5217:102,-172,-20,0,0,0.508593 -18392,5217:101,-171,-20,0,0,0.511596 -18393,5217:100,-170,-20,0,0,0.503611 -18394,5216:209,-169,-20,0,0,0.508028 -18395,5216:208,-168,-20,0,0,0.506512 -18396,5216:207,-167,-20,0,0,0.510005 -18397,5216:206,-166,-20,0,0,0.499012 -18398,5216:205,-165,-20,0,0,0.508515 -18399,5216:104,-164,-20,0,0,0.499988 -18400,5216:103,-163,-20,0,0,0.510878 -18401,5216:102,-162,-20,0,0,0.512213 -18402,5216:101,-161,-20,0,0,0.509363 -18403,5216:100,-160,-20,0,0,0.504715 -18404,5215:209,-159,-20,0,0,0.512726 -18405,5215:208,-158,-20,0,0,0.519731 -18406,5215:207,-157,-20,0,0,0.523115 -18407,5215:206,-156,-20,0,0,0.522448 -18408,5215:205,-155,-20,0,0,0.523448 -18409,5215:104,-154,-20,0,0,0.525908 -18410,5215:103,-153,-20,0,0,0.526548 -18411,5215:102,-152,-20,0,0,0.529544 -18412,5215:101,-151,-20,0,0,0.527803 -18413,5215:100,-150,-20,0,0,0.527957 -18414,5214:209,-149,-20,0,0,0.534558 -18415,5214:208,-148,-20,0,0,0.533203 -18416,5214:207,-147,-20,0,0,0.534149 -18417,5214:206,-146,-20,0,0,0.52852 -18418,5214:205,-145,-20,0,0,0.531847 -18419,5214:104,-144,-20,0,0,0.530414 -18420,5214:103,-143,-20,0,0,0.526241 -18421,5214:102,-142,-20,0,0,0.525882 -18422,5214:101,-141,-20,0,0,0.523397 -18423,5214:100,-140,-20,0,0,0.520628 -18424,5213:209,-139,-20,0,0,0.515062 -18425,5213:208,-138,-20,0,0,0.523628 -18426,5213:207,-137,-20,0,0,0.525652 -18427,5213:206,-136,-20,0,0,0.521398 -18428,5213:205,-135,-20,0,0,0.52209 -18429,5213:104,-134,-20,0,0,0.521962 -18430,5213:103,-133,-20,0,0,0.521936 -18431,5213:102,-132,-20,0,0,0.527086 -18432,5213:101,-131,-20,0,0,0.524064 -18433,5213:100,-130,-20,0,0,0.52232 -18434,5212:209,-129,-20,0,0,0.516601 -18435,5212:208,-128,-20,0,0,0.509106 -18436,5212:207,-127,-20,0,0,0.506435 -18437,5212:206,-126,-20,0,0,0.501427 -18438,5212:205,-125,-20,0,0,0.497985 -18439,5212:104,-124,-20,0,0,0.501787 -18440,5212:103,-123,-20,0,0,0.495648 -18441,5212:102,-122,-20,0,0,0.492849 -18442,5212:101,-121,-20,0,0,0.498088 -18443,5212:100,-120,-20,0,0,0.495031 -18444,5211:209,-119,-20,0,0,0.499526 -18445,5211:208,-118,-20,0,0,0.500811 -18446,5211:207,-117,-20,0,0,0.497754 -18447,5211:206,-116,-20,0,0,0.499809 -18448,5211:205,-115,-20,0,0,0.501453 -18449,5211:104,-114,-20,0,0,0.50397 -18450,5211:103,-113,-20,0,0,0.501863 -18451,5211:102,-112,-20,0,0,0.500888 -18452,5211:101,-111,-20,0,0,0.504971 -18453,5211:100,-110,-20,0,0,0.50492 -18454,5210:209,-109,-20,0,0,0.505614 -18455,5210:208,-108,-20,0,0,0.505614 -18456,5210:207,-107,-20,0,0,0.501581 -18457,5210:206,-106,-20,0,0,0.497574 -18458,5210:205,-105,-20,0,0,0.499937 -18459,5210:104,-104,-20,0,0,0.504201 -18460,5210:103,-103,-20,0,0,0.50266 -18461,5210:102,-102,-20,0,0,0.494621 -18462,5210:101,-101,-20,0,0,0.490126 -18463,5210:100,-100,-20,0,0,0.490717 -18464,5209:209,-99,-20,0,0,0.488406 -18465,5209:208,-98,-20,0,0,0.484428 -18466,5209:207,-97,-20,0,0,0.478144 -18467,5209:206,-96,-20,0,0,0.470151 -18468,5209:205,-95,-20,0,0,0.465803 -18469,5209:104,-94,-20,0,0,0.46174 -18470,5209:103,-93,-20,0,0,0.45358 -18471,5209:102,-92,-20,0,0,0.446181 -18472,5209:101,-91,-20,0,0,0.441691 -18473,5209:100,-90,-20,0,0,0.43711 -18474,5208:209,-89,-20,0,0,0.431784 -18475,5208:208,-88,-20,0,0,0.429039 -18476,5208:207,-87,-20,0,0,0.426172 -18477,5208:206,-86,-20,0,0,0.423209 -18478,5208:205,-85,-20,0,0,0.421605 -18479,5208:104,-84,-20,0,0,0.423837 -18480,5208:103,-83,-20,0,0,0.422683 -18481,5208:102,-82,-20,0,0,0.418152 -18482,5208:101,-81,-20,0,0,0.410772 -18483,5208:100,-80,-20,0,0,0.409131 -18484,5207:209,-79,-20,0,0,0.408014 -18485,5207:208,-78,-20,0,0,0.403802 -18486,5207:207,-77,-20,0,0,0.39385 -18487,5207:206,-76,-20,0,0,0.386687 -18488,5207:205,-75,-20,0,0,0.382941 -18489,5207:104,-74,-20,0,0,0.384691 -18490,5207:103,-73,-20,0,0,0.386054 -18491,5207:102,-72,-20,0,0,0.394808 -18492,5207:101,-71,-20,0,0,0.38299 -18493,5204:208,-48,-20,0,0,0.591046 -18494,5204:207,-47,-20,0,0,0.581576 -18495,5204:206,-46,-20,0,0,0.601015 -18496,5204:205,-45,-20,0,0,0.588858 -18497,5204:104,-44,-20,0,0,0.590996 -18498,5204:103,-43,-20,0,0,0.593948 -18499,5204:102,-42,-20,0,0,0.578272 -18500,5204:101,-41,-20,0,0,0.577144 -18501,5204:100,-40,-20,0,0,0.579074 -18502,5203:209,-39,-20,0,0,0.577395 -18503,5203:208,-38,-20,0,0,0.57594 -18504,5203:207,-37,-20,0,0,0.578222 -18505,5203:206,-36,-20,0,0,0.571845 -18506,5203:205,-35,-20,0,0,0.55859 -18507,5203:104,-34,-20,0,0,0.561856 -18508,5203:103,-33,-20,0,0,0.560894 -18509,5203:102,-32,-20,0,0,0.558818 -18510,5203:101,-31,-20,0,0,0.55466 -18511,5203:100,-30,-20,0,0,0.553848 -18512,5202:209,-29,-20,0,0,0.556943 -18513,5202:208,-28,-20,0,0,0.554812 -18514,5202:207,-27,-20,0,0,0.550672 -18515,5202:206,-26,-20,0,0,0.547543 -18516,5202:205,-25,-20,0,0,0.542855 -18517,5202:104,-24,-20,0,0,0.539998 -18518,5202:103,-23,-20,0,0,0.537164 -18519,5202:102,-22,-20,0,0,0.5365 -18520,5202:101,-21,-20,0,0,0.535452 -18521,5202:100,-20,-20,0,0,0.537062 -18522,5201:209,-19,-20,0,0,0.535555 -18523,5201:208,-18,-20,0,0,0.535069 -18524,5201:207,-17,-20,0,0,0.534685 -18525,5201:206,-16,-20,0,0,0.534021 -18526,5201:205,-15,-20,0,0,0.533126 -18527,5201:104,-14,-20,0,0,0.533331 -18528,5201:103,-13,-20,0,0,0.527982 -18529,5201:102,-12,-20,0,0,0.526958 -18530,5201:101,-11,-20,0,0,0.526933 -18531,5201:100,-10,-20,0,0,0.523781 -18532,5200:209,-9,-20,0,0,0.518756 -18533,5200:208,-8,-20,0,0,0.51478 -18534,5200:207,-7,-20,0,0,0.513445 -18535,5200:206,-6,-20,0,0,0.509928 -18536,5200:205,-5,-20,0,0,0.506461 -18537,5200:104,-4,-20,0,0,0.502634 -18538,5200:103,-3,-20,0,0,0.497728 -18539,5200:102,-2,-20,0,0,0.491821 -20488,3107:131,71,-13,0,0,0.60728 -18540,5200:101,-1,-20,0,0,0.487277 -18541,3200:101,0,-20,0,0,0.484813 -18542,3200:101,1,-20,0,0,0.481862 -18543,3200:102,2,-20,0,0,0.472507 -18544,3200:103,3,-20,0,0,0.46335 -18545,3200:104,4,-20,0,0,0.458066 -18546,3200:205,5,-20,0,0,0.453427 -18547,3200:206,6,-20,0,0,0.450374 -18548,3200:207,7,-20,0,0,0.446638 -18549,3200:208,8,-20,0,0,0.444683 -18550,3200:209,9,-20,0,0,0.444176 -18551,3201:100,10,-20,0,0,0.443289 -18552,3201:101,11,-20,0,0,0.44339 -18553,3201:102,12,-20,0,0,0.439767 -18554,3201:103,13,-20,0,0,0.435544 -18555,3201:104,14,-20,0,0,0.422332 -18556,3203:103,33,-20,0,0,0.592014 -18557,3203:104,34,-20,0,0,0.60728 -18558,3203:205,35,-20,0,0,0.610901 -18559,3203:206,36,-20,0,0,0.60652 -18560,3203:207,37,-20,0,0,0.58739 -18561,3203:208,38,-20,0,0,0.561704 -18562,3203:209,39,-20,0,0,0.568471 -18563,3204:100,40,-20,0,0,0.581651 -18564,3204:101,41,-20,0,0,0.581676 -18565,3204:102,42,-20,0,0,0.582501 -18566,3204:103,43,-20,0,0,0.59422 -18567,3204:104,44,-20,0,0,0.612146 -18568,3204:205,45,-20,0,0,0.579349 -18569,3204:206,46,-20,0,0,0.570158 -18570,3204:207,47,-20,0,0,0.567916 -18571,3204:208,48,-20,0,0,0.563828 -18572,3204:209,49,-20,0,0,0.569302 -18573,3205:100,50,-20,0,0,0.559046 -18574,3205:101,51,-20,0,0,0.558615 -18575,3205:102,52,-20,0,0,0.561755 -18576,3205:103,53,-20,0,0,0.554279 -18577,3205:104,54,-20,0,0,0.554279 -18578,3205:205,55,-20,0,0,0.557044 -18579,3205:206,56,-20,0,0,0.551104 -18580,3205:207,57,-20,0,0,0.546627 -18581,3205:208,58,-20,0,0,0.555751 -18582,3205:209,59,-20,0,0,0.558033 -18583,3206:100,60,-20,0,0,0.545022 -18584,3206:101,61,-20,0,0,0.542498 -18585,3206:102,62,-20,0,0,0.554051 -18586,3206:103,63,-20,0,0,0.553645 -18587,3206:104,64,-20,0,0,0.552527 -18588,3206:205,65,-20,0,0,0.550062 -18589,3206:206,66,-20,0,0,0.550951 -18590,3206:207,67,-20,0,0,0.547213 -18591,3206:208,68,-20,0,0,0.543799 -18592,3206:209,69,-20,0,0,0.543493 -18593,3207:100,70,-20,0,0,0.53862 -18594,3207:101,71,-20,0,0,0.533075 -18595,3207:102,72,-20,0,0,0.532027 -18596,3207:104,74,-20,0,0,0.528546 -18597,3207:205,75,-20,0,0,0.530849 -18598,3207:206,76,-20,0,0,0.525856 -18599,3207:207,77,-20,0,0,0.520141 -18600,3207:208,78,-20,0,0,0.521218 -18601,3207:209,79,-20,0,0,0.515703 -18602,3208:100,80,-20,0,0,0.513162 -18603,3208:101,81,-20,0,0,0.51365 -18604,3208:102,82,-20,0,0,0.506846 -18605,3208:103,83,-20,0,0,0.507976 -18606,3208:104,84,-20,0,0,0.509466 -18607,3208:205,85,-20,0,0,0.49629 -18608,3208:206,86,-20,0,0,0.496238 -18609,3208:207,87,-20,0,0,0.49082 -18610,3208:208,88,-20,0,0,0.48987 -18611,3208:209,89,-20,0,0,0.483376 -18612,3209:100,90,-20,0,0,0.479118 -18613,3209:101,91,-20,0,0,0.473941 -18614,3209:102,92,-20,0,0,0.476657 -18615,3209:103,93,-20,0,0,0.477657 -18616,3209:104,94,-20,0,0,0.475786 -18617,3209:205,95,-20,0,0,0.46634 -18618,3209:206,96,-20,0,0,0.467235 -18619,3209:207,97,-20,0,0,0.47594 -18620,3209:208,98,-20,0,0,0.458142 -18621,3209:209,99,-20,0,0,0.462175 -18622,3210:100,100,-20,0,0,0.481529 -18623,3210:101,101,-20,0,0,0.474838 -18624,3210:102,102,-20,0,0,0.466417 -18625,3210:103,103,-20,0,0,0.465087 -18626,3210:104,104,-20,0,0,0.480759 -18627,3210:205,105,-20,0,0,0.472814 -18628,3210:206,106,-20,0,0,0.47389 -18629,3210:207,107,-20,0,0,0.492335 -18630,3210:208,108,-20,0,0,0.488047 -18631,3210:209,109,-20,0,0,0.490563 -18632,3211:100,110,-20,0,0,0.501581 -18633,3211:101,111,-20,0,0,0.50908 -18634,3211:102,112,-20,0,0,0.531821 -18635,3211:103,113,-20,0,0,0.540382 -18636,3211:104,114,-20,0,0,0.565949 -18637,3215:104,154,-20,0,0,0.587689 -18638,3215:205,155,-20,0,0,0.568446 -18639,3215:206,156,-20,0,0,0.563575 -18640,3215:207,157,-20,0,0,0.544666 -18641,3215:208,158,-20,0,0,0.540202 -18642,3215:209,159,-20,0,0,0.538313 -18643,3216:100,160,-20,0,0,0.531847 -18644,3216:101,161,-20,0,0,0.531233 -18645,3216:102,162,-20,0,0,0.535606 -18646,3216:103,163,-20,0,0,0.529416 -18647,3216:104,164,-20,0,0,0.52765 -18648,3216:205,165,-20,0,0,0.530977 -18650,3216:207,167,-20,0,0,0.520013 -18651,3216:208,168,-20,0,0,0.514677 -18652,3216:209,169,-20,0,0,0.518654 -18653,3217:100,170,-20,0,0,0.519295 -18654,3217:101,171,-20,0,0,0.520731 -18655,3217:102,172,-20,0,0,0.513291 -18656,3217:103,173,-20,0,0,0.517551 -18657,3217:104,174,-20,0,0,0.515164 -18658,3217:205,175,-20,0,0,0.51714 -18659,3217:206,176,-20,0,0,0.513496 -18660,3217:207,177,-20,0,0,0.509876 -18661,3217:208,178,-20,0,0,0.510287 -18662,3217:209,179,-20,0,0,0.512957 -18663,3218:100,180,-20,0,0,0.514805 -18664,5118:390,-180,-19,0,0,0.526318 -18665,5117:499,-179,-19,0,0,0.530107 -18666,5117:498,-178,-19,0,0,0.535734 -18667,5117:497,-177,-19,0,0,0.529365 -18668,5117:496,-176,-19,0,0,0.530031 -18669,5117:495,-175,-19,0,0,0.525011 -18670,5117:394,-174,-19,0,0,0.524627 -18671,5117:393,-173,-19,0,0,0.527547 -18672,5117:392,-172,-19,0,0,0.529544 -18673,5117:391,-171,-19,0,0,0.517551 -18674,5117:390,-170,-19,0,0,0.523859 -18675,5116:499,-169,-19,0,0,0.525549 -18676,5116:498,-168,-19,0,0,0.526626 -18677,5116:497,-167,-19,0,0,0.523833 -18678,5116:496,-166,-19,0,0,0.518936 -18679,5116:495,-165,-19,0,0,0.533996 -18680,5116:394,-164,-19,0,0,0.527086 -18681,5116:393,-163,-19,0,0,0.518371 -18682,5116:392,-162,-19,0,0,0.529929 -18683,5116:391,-161,-19,0,0,0.527342 -18684,5116:390,-160,-19,0,0,0.53742 -18685,5115:499,-159,-19,0,0,0.5365 -18686,5115:498,-158,-19,0,0,0.532027 -18687,5115:497,-157,-19,0,0,0.53021 -18688,5115:496,-156,-19,0,0,0.540458 -18689,5115:495,-155,-19,0,0,0.539973 -18690,5115:394,-154,-19,0,0,0.542983 -18691,5115:393,-153,-19,0,0,0.543468 -18692,5115:392,-152,-19,0,0,0.53982 -18693,5115:391,-151,-19,0,0,0.551053 -18694,5115:390,-150,-19,0,0,0.547467 -18695,5114:499,-149,-19,0,0,0.546398 -18696,5114:498,-148,-19,0,0,0.546448 -18697,5114:497,-147,-19,0,0,0.548383 -18698,5114:496,-146,-19,0,0,0.551511 -18699,5114:495,-145,-19,0,0,0.546627 -18700,5114:394,-144,-19,0,0,0.545073 -18701,5114:393,-143,-19,0,0,0.541453 -18702,5114:392,-142,-19,0,0,0.540126 -18703,5114:391,-141,-19,0,0,0.541351 -18704,5114:390,-140,-19,0,0,0.54907 -18705,5113:499,-139,-19,0,0,0.545761 -18706,5113:498,-138,-19,0,0,0.545506 -18707,5113:497,-137,-19,0,0,0.549248 -18708,5113:496,-136,-19,0,0,0.545965 -18709,5113:495,-135,-19,0,0,0.552578 -18710,5113:394,-134,-19,0,0,0.543442 -18711,5113:393,-133,-19,0,0,0.552374 -18712,5113:392,-132,-19,0,0,0.534839 -18713,5113:391,-131,-19,0,0,0.544105 -18714,5113:390,-130,-19,0,0,0.539029 -18715,5112:499,-129,-19,0,0,0.533816 -18716,5112:498,-128,-19,0,0,0.531361 -18717,5112:497,-127,-19,0,0,0.52683 -18718,5112:496,-126,-19,0,0,0.524909 -18719,5112:495,-125,-19,0,0,0.523628 -18720,5112:394,-124,-19,0,0,0.516499 -18721,5112:393,-123,-19,0,0,0.51832 -18722,5112:392,-122,-19,0,0,0.520988 -18723,5112:391,-121,-19,0,0,0.520013 -18724,5112:390,-120,-19,0,0,0.517704 -18725,5111:499,-119,-19,0,0,0.518423 -18726,5111:498,-118,-19,0,0,0.516293 -18727,5111:497,-117,-19,0,0,0.514241 -18728,5111:496,-116,-19,0,0,0.519474 -18729,5111:495,-115,-19,0,0,0.521833 -18730,5111:394,-114,-19,0,0,0.523192 -18731,5111:393,-113,-19,0,0,0.521398 -18732,5111:392,-112,-19,0,0,0.522115 -18733,5111:391,-111,-19,0,0,0.521244 -18734,5111:390,-110,-19,0,0,0.517551 -18735,5110:499,-109,-19,0,0,0.518243 -18736,5110:498,-108,-19,0,0,0.51832 -18737,5110:497,-107,-19,0,0,0.513624 -18738,5110:496,-106,-19,0,0,0.512546 -18739,5110:495,-105,-19,0,0,0.517576 -18740,5110:394,-104,-19,0,0,0.514061 -18741,5110:393,-103,-19,0,0,0.510596 -18742,5110:392,-102,-19,0,0,0.510672 -18743,5110:391,-101,-19,0,0,0.507052 -18744,5110:390,-100,-19,0,0,0.503328 -18745,5109:499,-99,-19,0,0,0.498576 -18746,5109:498,-98,-19,0,0,0.489947 -18747,5109:497,-97,-19,0,0,0.483915 -18748,5109:496,-96,-19,0,0,0.475504 -18749,5109:495,-95,-19,0,0,0.467695 -18750,5109:394,-94,-19,0,0,0.46003 -18751,5109:393,-93,-19,0,0,0.453224 -18752,5109:392,-92,-19,0,0,0.446333 -18753,5109:391,-91,-19,0,0,0.441717 -18754,5109:390,-90,-19,0,0,0.438223 -18755,5108:499,-89,-19,0,0,0.435468 -18756,5108:498,-88,-19,0,0,0.431936 -18757,5108:497,-87,-19,0,0,0.429215 -18758,5108:496,-86,-19,0,0,0.424615 -18759,5108:495,-85,-19,0,0,0.423009 -18760,5108:394,-84,-19,0,0,0.422157 -18761,5108:393,-83,-19,0,0,0.418002 -18762,5108:392,-82,-19,0,0,0.413161 -18763,5108:391,-81,-19,0,0,0.412514 -18764,5108:390,-80,-19,0,0,0.409504 -18765,5107:499,-79,-19,0,0,0.406824 -18766,5107:498,-78,-19,0,0,0.400344 -18767,5107:497,-77,-19,0,0,0.394906 -18768,5107:496,-76,-19,0,0,0.394145 -18769,5107:495,-75,-19,0,0,0.39211 -18770,5107:394,-74,-19,0,0,0.391939 -18771,5107:393,-73,-19,0,0,0.398594 -18772,5107:392,-72,-19,0,0,0.407468 -18773,5107:391,-71,-19,0,0,0.394832 -18774,5104:497,-47,-19,0,0,0.577871 -18775,5104:496,-46,-19,0,0,0.554762 -18776,5104:495,-45,-19,0,0,0.604802 -18777,5104:394,-44,-19,0,0,0.611511 -18778,5104:393,-43,-19,0,0,0.608236 -18779,5104:392,-42,-19,0,0,0.600275 -18780,5104:391,-41,-19,0,0,0.603378 -18781,5104:390,-40,-19,0,0,0.6063 -18782,5103:499,-39,-19,0,0,0.602812 -18783,5103:498,-38,-19,0,0,0.599708 -18784,5103:497,-37,-19,0,0,0.598894 -18785,5103:496,-36,-19,0,0,0.596349 -18786,5103:495,-35,-19,0,0,0.588609 -18787,5103:394,-34,-19,0,0,0.583326 -18788,5103:393,-33,-19,0,0,0.582726 -18789,5103:392,-32,-19,0,0,0.58355 -18790,5103:391,-31,-19,0,0,0.581951 -18791,5103:390,-30,-19,0,0,0.58035 -18792,5102:499,-29,-19,0,0,0.574836 -18793,5102:498,-28,-19,0,0,0.568874 -18794,5102:497,-27,-19,0,0,0.565015 -18795,5102:496,-26,-19,0,0,0.563145 -18796,5102:495,-25,-19,0,0,0.560565 -18797,5102:394,-24,-19,0,0,0.561982 -18798,5102:393,-23,-19,0,0,0.557247 -18799,5102:392,-22,-19,0,0,0.55745 -18800,5102:391,-21,-19,0,0,0.555954 -18801,5102:390,-20,-19,0,0,0.552908 -18802,5101:499,-19,-19,0,0,0.552984 -18803,5101:498,-18,-19,0,0,0.552629 -18804,5101:497,-17,-19,0,0,0.549146 -18805,5101:496,-16,-19,0,0,0.551918 -18806,5101:495,-15,-19,0,0,0.551663 -18807,5101:394,-14,-19,0,0,0.550367 -18808,5101:393,-13,-19,0,0,0.549324 -18809,5101:392,-12,-19,0,0,0.545328 -18810,5101:391,-11,-19,0,0,0.541529 -18811,5101:390,-10,-19,0,0,0.54028 -18812,5100:499,-9,-19,0,0,0.539437 -18813,5100:498,-8,-19,0,0,0.537522 -18814,5100:497,-7,-19,0,0,0.532896 -18815,5100:496,-6,-19,0,0,0.524217 -18816,5100:495,-5,-19,0,0,0.517166 -18817,5100:394,-4,-19,0,0,0.513522 -18818,5100:393,-3,-19,0,0,0.508181 -18819,5100:392,-2,-19,0,0,0.503302 -18820,5100:391,-1,-19,0,0,0.494723 -18821,3100:391,0,-19,0,0,0.487662 -18822,3100:391,1,-19,0,0,0.481272 -18823,3100:392,2,-19,0,0,0.472123 -18824,3100:393,3,-19,0,0,0.46404 -18825,3100:394,4,-19,0,0,0.45855 -18826,3100:495,5,-19,0,0,0.45465 -18827,3100:496,6,-19,0,0,0.452638 -18828,3100:497,7,-19,0,0,0.452486 -18829,3100:498,8,-19,0,0,0.44801 -18830,3100:499,9,-19,0,0,0.449306 -18831,3101:390,10,-19,0,0,0.446815 -18832,3101:391,11,-19,0,0,0.450119 -18833,3101:392,12,-19,0,0,0.450374 -18834,3101:393,13,-19,0,0,0.446942 -18835,3101:394,14,-19,0,0,0.417727 -18836,3103:495,35,-19,0,0,0.606055 -18837,3103:496,36,-19,0,0,0.618274 -18838,3103:497,37,-19,0,0,0.605932 -18839,3103:498,38,-19,0,0,0.604213 -18840,3103:499,39,-19,0,0,0.594369 -18841,3104:390,40,-19,0,0,0.606079 -18842,3104:391,41,-19,0,0,0.596794 -18843,3104:392,42,-19,0,0,0.607893 -18844,3104:393,43,-19,0,0,0.639965 -18845,3104:497,47,-19,0,0,0.575036 -18846,3104:498,48,-19,0,0,0.602443 -18847,3104:499,49,-19,0,0,0.590599 -18848,3105:390,50,-19,0,0,0.58953 -18849,3105:391,51,-19,0,0,0.571593 -18850,3105:392,52,-19,0,0,0.579925 -18851,3105:393,53,-19,0,0,0.57363 -18852,3105:394,54,-19,0,0,0.564181 -18853,3105:495,55,-19,0,0,0.565015 -18854,3105:496,56,-19,0,0,0.572976 -18855,3105:497,57,-19,0,0,0.568143 -18856,3105:498,58,-19,0,0,0.569882 -18857,3105:499,59,-19,0,0,0.576492 -18858,3106:390,60,-19,0,0,0.551333 -18859,3106:391,61,-19,0,0,0.563094 -18860,3106:392,62,-19,0,0,0.566756 -18861,3106:393,63,-19,0,0,0.56312 -18862,3106:394,64,-19,0,0,0.558362 -18863,3106:495,65,-19,0,0,0.562108 -18864,3106:496,66,-19,0,0,0.552578 -18865,3106:497,67,-19,0,0,0.554102 -18866,3106:498,68,-19,0,0,0.551155 -18867,3106:499,69,-19,0,0,0.546474 -18868,3107:390,70,-19,0,0,0.53982 -18869,3107:391,71,-19,0,0,0.535964 -18870,3107:392,72,-19,0,0,0.540509 -18871,3107:394,74,-19,0,0,0.538365 -18872,3107:495,75,-19,0,0,0.530056 -18873,3107:496,76,-19,0,0,0.529135 -18874,3107:497,77,-19,0,0,0.525652 -18875,3107:498,78,-19,0,0,0.523064 -18876,3107:499,79,-19,0,0,0.516524 -18877,3108:390,80,-19,0,0,0.516011 -18878,3108:391,81,-19,0,0,0.519552 -18879,3108:392,82,-19,0,0,0.519654 -18880,3108:393,83,-19,0,0,0.512161 -18881,3108:394,84,-19,0,0,0.510929 -18882,3108:495,85,-19,0,0,0.509517 -18883,3108:496,86,-19,0,0,0.505074 -18884,3108:497,87,-19,0,0,0.502249 -18885,3108:498,88,-19,0,0,0.493388 -18886,3108:499,89,-19,0,0,0.489074 -18887,3109:390,90,-19,0,0,0.491898 -18888,3109:391,91,-19,0,0,0.48987 -18889,3109:392,92,-19,0,0,0.48602 -18890,3109:393,93,-19,0,0,0.48643 -18891,3109:394,94,-19,0,0,0.490614 -18892,3109:495,95,-19,0,0,0.480631 -18893,3109:496,96,-19,0,0,0.48058 -18894,3109:497,97,-19,0,0,0.488817 -18895,3109:498,98,-19,0,0,0.492438 -18896,3109:499,99,-19,0,0,0.490178 -18897,3110:390,100,-19,0,0,0.481606 -18898,3110:391,101,-19,0,0,0.4794 -18899,3110:392,102,-19,0,0,0.476504 -18900,3110:393,103,-19,0,0,0.493233 -18901,3110:394,104,-19,0,0,0.491719 -18902,3110:495,105,-19,0,0,0.48276 -18903,3110:496,106,-19,0,0,0.480144 -18904,3110:497,107,-19,0,0,0.498011 -18905,3110:498,108,-19,0,0,0.503302 -18906,3110:499,109,-19,0,0,0.502454 -18907,3111:390,110,-19,0,0,0.507565 -18908,3111:391,111,-19,0,0,0.534353 -18909,3111:392,112,-19,0,0,0.542218 -18910,3111:393,113,-19,0,0,0.559781 -18911,3115:393,153,-19,0,0,0.594716 -18912,3115:394,154,-19,0,0,0.595161 -18913,3115:495,155,-19,0,0,0.572273 -18914,3115:496,156,-19,0,0,0.565646 -18915,3115:497,157,-19,0,0,0.569428 -18916,3115:498,158,-19,0,0,0.566832 -18917,3115:499,159,-19,0,0,0.554762 -18918,3116:390,160,-19,0,0,0.542014 -18919,3116:391,161,-19,0,0,0.544818 -18920,3116:392,162,-19,0,0,0.544029 -18921,3116:393,163,-19,0,0,0.551409 -18922,3116:394,164,-19,0,0,0.554381 -18923,3116:495,165,-19,0,0,0.545302 -18924,3116:496,166,-19,0,0,0.535043 -18925,3116:497,167,-19,0,0,0.53627 -18926,3116:498,168,-19,0,0,0.539514 -18927,3116:499,169,-19,0,0,0.542805 -18928,3117:390,170,-19,0,0,0.533663 -18929,3117:391,171,-19,0,0,0.533918 -18930,3117:392,172,-19,0,0,0.537292 -18931,3117:393,173,-19,0,0,0.530696 -18932,3117:394,174,-19,0,0,0.524806 -18933,3117:495,175,-19,0,0,0.527266 -18934,3117:496,176,-19,0,0,0.527317 -18935,3117:497,177,-19,0,0,0.522474 -18936,3117:498,178,-19,0,0,0.52537 -18937,3117:499,179,-19,0,0,0.524627 -18938,3118:390,180,-19,0,0,0.526318 -18939,5118:380,-180,-18,0,0,0.546474 -18940,5117:489,-179,-18,0,0,0.541427 -18941,5117:488,-178,-18,0,0,0.547976 -18942,5117:487,-177,-18,0,0,0.539718 -18943,5117:486,-176,-18,0,0,0.539565 -18944,5117:485,-175,-18,0,0,0.53742 -18945,5117:384,-174,-18,0,0,0.531438 -18946,5117:383,-173,-18,0,0,0.534788 -18947,5117:382,-172,-18,0,0,0.535632 -18948,5117:381,-171,-18,0,0,0.536014 -18949,5117:380,-170,-18,0,0,0.53131 -18950,5116:489,-169,-18,0,0,0.534558 -18951,5116:488,-168,-18,0,0,0.537369 -18952,5116:487,-167,-18,0,0,0.534328 -18953,5116:486,-166,-18,0,0,0.539054 -18954,5116:485,-165,-18,0,0,0.543442 -18955,5116:384,-164,-18,0,0,0.54907 -18956,5116:383,-163,-18,0,0,0.540738 -18957,5116:382,-162,-18,0,0,0.540841 -18958,5116:381,-161,-18,0,0,0.54209 -18959,5116:380,-160,-18,0,0,0.549579 -18960,5115:489,-159,-18,0,0,0.549579 -18961,5115:488,-158,-18,0,0,0.548357 -18962,5115:487,-157,-18,0,0,0.550316 -18963,5115:486,-156,-18,0,0,0.548103 -18964,5115:485,-155,-18,0,0,0.549782 -18965,5115:384,-154,-18,0,0,0.55499 -18966,5115:383,-153,-18,0,0,0.550825 -18967,5115:382,-152,-18,0,0,0.560489 -18968,5115:381,-151,-18,0,0,0.564813 -18969,5115:380,-150,-18,0,0,0.563499 -18970,5114:489,-149,-18,0,0,0.561223 -18971,5114:488,-148,-18,0,0,0.566227 -18972,5114:487,-147,-18,0,0,0.569655 -18973,5114:486,-146,-18,0,0,0.563701 -21244,5108:103,-83,-10,0,0,0.47179 -18974,5114:485,-145,-18,0,0,0.557678 -18975,5114:384,-144,-18,0,0,0.561173 -18976,5114:383,-143,-18,0,0,0.559299 -18977,5114:382,-142,-18,0,0,0.566478 -18978,5114:381,-141,-18,0,0,0.563448 -18979,5114:380,-140,-18,0,0,0.572775 -18980,5113:489,-139,-18,0,0,0.5727 -18981,5113:488,-138,-18,0,0,0.57099 -18982,5113:487,-137,-18,0,0,0.572574 -18983,5113:486,-136,-18,0,0,0.573806 -18984,5113:485,-135,-18,0,0,0.570158 -18985,5113:384,-134,-18,0,0,0.571166 -18986,5113:383,-133,-18,0,0,0.570687 -18987,5113:382,-132,-18,0,0,0.557374 -18988,5113:381,-131,-18,0,0,0.561856 -18989,5113:380,-130,-18,0,0,0.550799 -18990,5112:489,-129,-18,0,0,0.552553 -18991,5112:488,-128,-18,0,0,0.550774 -18992,5112:487,-127,-18,0,0,0.545837 -18993,5112:486,-126,-18,0,0,0.541249 -18994,5112:485,-125,-18,0,0,0.542498 -18995,5112:384,-124,-18,0,0,0.538186 -18996,5112:383,-123,-18,0,0,0.542779 -18997,5112:382,-122,-18,0,0,0.542014 -18998,5112:381,-121,-18,0,0,0.542907 -18999,5112:380,-120,-18,0,0,0.537726 -19000,5111:489,-119,-18,0,0,0.536756 -19001,5111:488,-118,-18,0,0,0.537726 -19002,5111:487,-117,-18,0,0,0.538467 -19003,5111:486,-116,-18,0,0,0.53862 -19004,5111:485,-115,-18,0,0,0.541249 -19005,5111:384,-114,-18,0,0,0.543314 -19006,5111:383,-113,-18,0,0,0.542269 -19007,5111:382,-112,-18,0,0,0.542192 -19008,5111:381,-111,-18,0,0,0.537981 -19009,5111:380,-110,-18,0,0,0.531873 -19010,5110:489,-109,-18,0,0,0.530286 -19011,5110:488,-108,-18,0,0,0.531924 -19012,5110:487,-107,-18,0,0,0.530158 -19013,5110:486,-106,-18,0,0,0.528008 -19014,5110:485,-105,-18,0,0,0.524883 -19015,5110:384,-104,-18,0,0,0.522295 -19016,5110:383,-103,-18,0,0,0.51991 -19017,5110:382,-102,-18,0,0,0.515472 -19018,5110:381,-101,-18,0,0,0.510031 -19019,5110:380,-100,-18,0,0,0.504253 -19020,5109:489,-99,-18,0,0,0.49629 -19021,5109:488,-98,-18,0,0,0.49064 -19022,5109:487,-97,-18,0,0,0.482427 -19023,5109:486,-96,-18,0,0,0.475888 -19024,5109:485,-95,-18,0,0,0.470356 -19025,5109:384,-94,-18,0,0,0.466212 -19026,5109:383,-93,-18,0,0,0.460566 -19027,5109:382,-92,-18,0,0,0.452358 -19028,5109:381,-91,-18,0,0,0.444912 -19029,5109:380,-90,-18,0,0,0.438628 -19030,5108:489,-89,-18,0,0,0.43653 -19031,5108:488,-88,-18,0,0,0.433751 -19032,5108:487,-87,-18,0,0,0.430096 -19033,5108:486,-86,-18,0,0,0.426499 -19034,5108:485,-85,-18,0,0,0.421605 -19035,5108:384,-84,-18,0,0,0.418352 -19036,5108:383,-83,-18,0,0,0.41331 -19037,5108:382,-82,-18,0,0,0.406824 -19038,5108:381,-81,-18,0,0,0.401405 -19039,5108:380,-80,-18,0,0,0.398939 -19040,5107:489,-79,-18,0,0,0.395937 -19041,5107:488,-78,-18,0,0,0.394464 -19042,5107:487,-77,-18,0,0,0.394587 -19043,5107:486,-76,-18,0,0,0.395029 -19044,5107:485,-75,-18,0,0,0.395225 -19045,5107:384,-74,-18,0,0,0.397388 -19046,5107:383,-73,-18,0,0,0.403456 -19047,5107:382,-72,-18,0,0,0.419327 -19048,5107:381,-71,-18,0,0,0.411219 -19049,5104:384,-44,-18,0,0,0.56269 -19050,5104:383,-43,-18,0,0,0.604361 -19051,5104:382,-42,-18,0,0,0.606201 -19052,5104:381,-41,-18,0,0,0.623354 -19053,5104:380,-40,-18,0,0,0.623812 -19054,5103:489,-39,-18,0,0,0.620575 -19055,5103:488,-38,-18,0,0,0.615579 -19056,5103:487,-37,-18,0,0,0.611731 -19057,5103:486,-36,-18,0,0,0.605736 -19058,5103:485,-35,-18,0,0,0.603353 -19059,5103:384,-34,-18,0,0,0.603451 -19060,5103:383,-33,-18,0,0,0.607403 -19061,5103:382,-32,-18,0,0,0.603451 -19062,5103:381,-31,-18,0,0,0.601408 -19063,5103:380,-30,-18,0,0,0.597857 -19064,5102:489,-29,-18,0,0,0.587091 -19065,5102:488,-28,-18,0,0,0.57995 -19066,5102:487,-27,-18,0,0,0.577746 -19067,5102:486,-26,-18,0,0,0.578874 -19068,5102:485,-25,-18,0,0,0.577922 -19069,5102:384,-24,-18,0,0,0.576442 -19070,5102:383,-23,-18,0,0,0.574434 -19071,5102:382,-22,-18,0,0,0.57461 -19072,5102:381,-21,-18,0,0,0.576743 -19073,5102:380,-20,-18,0,0,0.576642 -19074,5101:489,-19,-18,0,0,0.574383 -19075,5101:488,-18,-18,0,0,0.576015 -19076,5101:487,-17,-18,0,0,0.574308 -19077,5101:486,-16,-18,0,0,0.57192 -19078,5101:485,-15,-18,0,0,0.568345 -19079,5101:384,-14,-18,0,0,0.563094 -19080,5101:383,-13,-18,0,0,0.558083 -19081,5101:382,-12,-18,0,0,0.555802 -19082,5101:381,-11,-18,0,0,0.552578 -19083,5101:380,-10,-18,0,0,0.547365 -19084,5100:489,-9,-18,0,0,0.540738 -19085,5100:488,-8,-18,0,0,0.534251 -19086,5100:487,-7,-18,0,0,0.526676 -19087,5100:486,-6,-18,0,0,0.518218 -19088,5100:485,-5,-18,0,0,0.513265 -19089,5100:384,-4,-18,0,0,0.505896 -19090,5100:383,-3,-18,0,0,0.498653 -19091,5100:382,-2,-18,0,0,0.49308 -19092,5100:381,-1,-18,0,0,0.486584 -19093,3100:381,0,-18,0,0,0.480247 -19094,3100:381,1,-18,0,0,0.474607 -19095,3100:382,2,-18,0,0,0.469973 -19096,3100:383,3,-18,0,0,0.464601 -19097,3100:384,4,-18,0,0,0.460668 -19098,3100:485,5,-18,0,0,0.460438 -19099,3100:486,6,-18,0,0,0.45804 -19100,3100:487,7,-18,0,0,0.456255 -19101,3100:488,8,-18,0,0,0.454446 -19102,3100:489,9,-18,0,0,0.455108 -19103,3101:380,10,-18,0,0,0.455949 -19104,3101:381,11,-18,0,0,0.455261 -19105,3101:382,12,-18,0,0,0.450196 -19106,3101:383,13,-18,0,0,0.443897 -19107,3101:384,14,-18,0,0,0.385566 -19108,3103:486,36,-18,0,0,0.632308 -19109,3103:487,37,-18,0,0,0.615968 -19110,3103:488,38,-18,0,0,0.613681 -19111,3103:489,39,-18,0,0,0.611438 -19112,3104:380,40,-18,0,0,0.617693 -19113,3104:381,41,-18,0,0,0.625763 -19114,3104:382,42,-18,0,0,0.648068 -19115,3104:383,43,-18,0,0,0.666784 -19116,3104:488,48,-18,0,0,0.61217 -19117,3104:489,49,-18,0,0,0.597956 -19118,3105:380,50,-18,0,0,0.598845 -19119,3105:381,51,-18,0,0,0.593526 -19120,3105:382,52,-18,0,0,0.590151 -19121,3105:383,53,-18,0,0,0.581176 -19122,3105:384,54,-18,0,0,0.576166 -19123,3105:485,55,-18,0,0,0.580376 -19124,3105:486,56,-18,0,0,0.5833 -19125,3105:487,57,-18,0,0,0.585322 -19126,3105:488,58,-18,0,0,0.585048 -19127,3105:489,59,-18,0,0,0.585097 -19128,3106:380,60,-18,0,0,0.57985 -19129,3106:381,61,-18,0,0,0.570788 -19130,3106:382,62,-18,0,0,0.569604 -19131,3106:383,63,-18,0,0,0.574509 -19132,3106:384,64,-18,0,0,0.570536 -19133,3106:485,65,-18,0,0,0.567639 -19134,3106:486,66,-18,0,0,0.561071 -19135,3106:487,67,-18,0,0,0.556588 -19136,3106:488,68,-18,0,0,0.553315 -19137,3106:489,69,-18,0,0,0.547874 -19138,3107:380,70,-18,0,0,0.549884 -19139,3107:381,71,-18,0,0,0.545684 -19140,3107:382,72,-18,0,0,0.542754 -19141,3107:384,74,-18,0,0,0.535912 -19142,3107:485,75,-18,0,0,0.533024 -19143,3107:486,76,-18,0,0,0.538211 -19144,3107:487,77,-18,0,0,0.533816 -19145,3107:488,78,-18,0,0,0.530312 -19146,3107:489,79,-18,0,0,0.530261 -19147,3108:380,80,-18,0,0,0.525882 -19148,3108:381,81,-18,0,0,0.527291 -19149,3108:382,82,-18,0,0,0.518551 -19150,3108:383,83,-18,0,0,0.523755 -19151,3108:384,84,-18,0,0,0.520833 -19152,3108:485,85,-18,0,0,0.513753 -19153,3108:486,86,-18,0,0,0.516396 -19154,3108:487,87,-18,0,0,0.509235 -19155,3108:488,88,-18,0,0,0.507745 -19156,3108:489,89,-18,0,0,0.509671 -19157,3109:380,90,-18,0,0,0.5117 -19158,3109:381,91,-18,0,0,0.506076 -19159,3109:382,92,-18,0,0,0.506051 -19160,3109:383,93,-18,0,0,0.510904 -19161,3109:384,94,-18,0,0,0.508079 -19162,3109:485,95,-18,0,0,0.501761 -19163,3109:486,96,-18,0,0,0.503251 -19164,3109:487,97,-18,0,0,0.496958 -19165,3109:488,98,-18,0,0,0.499398 -19166,3109:489,99,-18,0,0,0.491976 -19167,3110:380,100,-18,0,0,0.497677 -19168,3110:381,101,-18,0,0,0.491411 -19169,3110:382,102,-18,0,0,0.497651 -19170,3110:383,103,-18,0,0,0.507411 -19171,3110:384,104,-18,0,0,0.501478 -19172,3110:485,105,-18,0,0,0.500322 -19173,3110:486,106,-18,0,0,0.507771 -19174,3110:487,107,-18,0,0,0.517371 -19175,3110:488,108,-18,0,0,0.521577 -19176,3110:489,109,-18,0,0,0.529851 -19177,3111:380,110,-18,0,0,0.529288 -19178,3111:381,111,-18,0,0,0.532589 -19179,3111:382,112,-18,0,0,0.557956 -19180,3111:383,113,-18,0,0,0.570032 -19181,3111:384,114,-18,0,0,0.565318 -19182,3115:382,152,-18,0,0,0.591641 -19183,3115:383,153,-18,0,0,0.588734 -19184,3115:384,154,-18,0,0,0.594245 -19185,3115:485,155,-18,0,0,0.588336 -19186,3115:486,156,-18,0,0,0.568546 -19187,3115:487,157,-18,0,0,0.574509 -19188,3115:488,158,-18,0,0,0.571694 -19189,3115:489,159,-18,0,0,0.560565 -19190,3116:380,160,-18,0,0,0.558438 -19191,3116:381,161,-18,0,0,0.568848 -19192,3116:382,162,-18,0,0,0.564661 -19193,3116:383,163,-18,0,0,0.561729 -19194,3116:384,164,-18,0,0,0.566277 -19195,3116:485,165,-18,0,0,0.558007 -19196,3116:486,166,-18,0,0,0.552451 -19197,3116:487,167,-18,0,0,0.551562 -19198,3116:488,168,-18,0,0,0.54996 -19199,3116:489,169,-18,0,0,0.556918 -19200,3117:380,170,-18,0,0,0.54851 -19201,3117:381,171,-18,0,0,0.543238 -19202,3117:382,172,-18,0,0,0.543111 -19203,3117:383,173,-18,0,0,0.542907 -19204,3117:384,174,-18,0,0,0.535708 -19205,3117:485,175,-18,0,0,0.534737 -19206,3117:486,176,-18,0,0,0.543391 -19207,3117:487,177,-18,0,0,0.541988 -19208,3117:488,178,-18,0,0,0.535606 -19209,3117:489,179,-18,0,0,0.542957 -19210,3118:380,180,-18,0,0,0.546474 -19211,5118:370,-180,-17,0,0,0.544283 -19212,5117:479,-179,-17,0,0,0.546882 -19213,5117:478,-178,-17,0,0,0.54968 -19214,5117:477,-177,-17,0,0,0.546499 -19215,5117:476,-176,-17,0,0,0.548154 -19216,5117:475,-175,-17,0,0,0.542422 -19217,5117:374,-174,-17,0,0,0.541912 -19218,5117:373,-173,-17,0,0,0.542192 -19219,5117:372,-172,-17,0,0,0.553492 -19220,5117:371,-171,-17,0,0,0.545761 -19221,5117:370,-170,-17,0,0,0.55085 -19222,5116:479,-169,-17,0,0,0.560869 -19223,5116:478,-168,-17,0,0,0.552248 -19224,5116:477,-167,-17,0,0,0.555396 -19225,5116:476,-166,-17,0,0,0.546677 -19226,5116:475,-165,-17,0,0,0.551333 -19227,5116:374,-164,-17,0,0,0.55897 -19228,5116:373,-163,-17,0,0,0.554838 -19229,5116:372,-162,-17,0,0,0.556866 -19230,5116:371,-161,-17,0,0,0.554736 -19231,5116:370,-160,-17,0,0,0.559932 -19232,5115:479,-159,-17,0,0,0.560691 -19233,5115:478,-158,-17,0,0,0.564838 -19234,5115:477,-157,-17,0,0,0.564054 -19235,5115:476,-156,-17,0,0,0.566403 -19236,5115:475,-155,-17,0,0,0.561957 -19237,5115:374,-154,-17,0,0,0.569353 -19238,5115:373,-153,-17,0,0,0.574359 -19239,5115:372,-152,-17,0,0,0.579449 -19240,5115:371,-151,-17,0,0,0.588012 -19241,5115:370,-150,-17,0,0,0.58035 -19242,5114:479,-149,-17,0,0,0.587016 -19243,5114:478,-148,-17,0,0,0.585247 -19244,5114:477,-147,-17,0,0,0.58395 -19245,5114:476,-146,-17,0,0,0.584298 -19246,5114:475,-145,-17,0,0,0.58597 -19247,5114:374,-144,-17,0,0,0.58345 -19248,5114:373,-143,-17,0,0,0.585023 -19249,5114:372,-142,-17,0,0,0.585247 -19250,5114:371,-141,-17,0,0,0.587838 -19251,5114:370,-140,-17,0,0,0.59107 -19252,5113:479,-139,-17,0,0,0.589331 -19253,5113:478,-138,-17,0,0,0.588385 -19254,5113:477,-137,-17,0,0,0.590325 -19255,5113:476,-136,-17,0,0,0.591244 -19256,5113:475,-135,-17,0,0,0.589927 -19257,5113:374,-134,-17,0,0,0.587962 -19258,5113:373,-133,-17,0,0,0.583375 -19259,5113:372,-132,-17,0,0,0.579474 -19260,5113:371,-131,-17,0,0,0.575062 -19261,5113:370,-130,-17,0,0,0.575213 -19262,5112:479,-129,-17,0,0,0.573479 -19263,5112:478,-128,-17,0,0,0.570008 -19264,5112:477,-127,-17,0,0,0.564938 -19265,5112:476,-126,-17,0,0,0.564408 -19266,5112:475,-125,-17,0,0,0.561527 -19267,5112:374,-124,-17,0,0,0.560768 -19268,5112:373,-123,-17,0,0,0.559071 -19269,5112:372,-122,-17,0,0,0.559122 -19270,5112:371,-121,-17,0,0,0.55674 -19271,5112:370,-120,-17,0,0,0.55306 -19272,5111:479,-119,-17,0,0,0.555167 -19273,5111:478,-118,-17,0,0,0.558007 -19274,5111:477,-117,-17,0,0,0.559704 -19275,5111:476,-116,-17,0,0,0.562563 -19276,5111:475,-115,-17,0,0,0.566277 -19277,5111:374,-114,-17,0,0,0.5636 -19278,5111:373,-113,-17,0,0,0.557906 -19279,5111:372,-112,-17,0,0,0.556689 -19280,5111:371,-111,-17,0,0,0.553822 -19281,5111:370,-110,-17,0,0,0.549935 -19282,5110:479,-109,-17,0,0,0.548816 -19283,5110:478,-108,-17,0,0,0.545863 -19284,5110:477,-107,-17,0,0,0.543187 -19285,5110:476,-106,-17,0,0,0.539233 -19286,5110:475,-105,-17,0,0,0.531361 -19287,5110:374,-104,-17,0,0,0.523423 -19288,5110:373,-103,-17,0,0,0.515318 -19289,5110:372,-102,-17,0,0,0.508567 -19290,5110:371,-101,-17,0,0,0.503302 -19291,5110:370,-100,-17,0,0,0.498987 -19292,5109:479,-99,-17,0,0,0.495314 -19293,5109:478,-98,-17,0,0,0.489408 -19294,5109:477,-97,-17,0,0,0.483735 -19295,5109:476,-96,-17,0,0,0.477631 -19296,5109:475,-95,-17,0,0,0.468053 -19297,5109:374,-94,-17,0,0,0.458703 -19298,5109:373,-93,-17,0,0,0.453936 -19299,5109:372,-92,-17,0,0,0.449204 -19300,5109:371,-91,-17,0,0,0.441641 -19301,5109:370,-90,-17,0,0,0.437591 -19302,5108:479,-89,-17,0,0,0.435367 -19303,5108:478,-88,-17,0,0,0.429643 -19304,5108:477,-87,-17,0,0,0.424062 -19305,5108:476,-86,-17,0,0,0.421405 -19306,5108:475,-85,-17,0,0,0.417177 -19307,5108:374,-84,-17,0,0,0.412239 -19308,5108:373,-83,-17,0,0,0.407543 -19309,5108:372,-82,-17,0,0,0.404916 -19310,5108:371,-81,-17,0,0,0.404346 -19311,5108:370,-80,-17,0,0,0.404594 -19312,5107:479,-79,-17,0,0,0.401627 -19313,5107:478,-78,-17,0,0,0.396994 -19314,5107:477,-77,-17,0,0,0.395077 -19315,5107:476,-76,-17,0,0,0.395298 -19316,5107:475,-75,-17,0,0,0.399826 -19317,5107:374,-74,-17,0,0,0.406799 -19318,5107:373,-73,-17,0,0,0.424966 -19319,5107:372,-72,-17,0,0,0.438881 -19320,5107:371,-71,-17,0,0,0.447349 -19321,5104:371,-41,-17,0,0,0.622944 -19322,5104:370,-40,-17,0,0,0.628118 -19323,5103:479,-39,-17,0,0,0.628502 -19324,5103:478,-38,-17,0,0,0.623209 -19325,5103:477,-37,-17,0,0,0.619462 -19326,5103:476,-36,-17,0,0,0.617037 -19327,5103:475,-35,-17,0,0,0.617328 -19328,5103:374,-34,-17,0,0,0.617596 -19329,5103:373,-33,-17,0,0,0.618468 -19330,5103:372,-32,-17,0,0,0.619293 -19331,5103:371,-31,-17,0,0,0.617838 -19332,5103:370,-30,-17,0,0,0.614972 -19333,5102:479,-29,-17,0,0,0.604704 -19334,5102:478,-28,-17,0,0,0.588435 -19335,5102:477,-27,-17,0,0,0.582726 -19336,5102:476,-26,-17,0,0,0.584224 -19337,5102:475,-25,-17,0,0,0.586667 -19338,5102:374,-24,-17,0,0,0.586792 -19339,5102:373,-23,-17,0,0,0.586867 -19340,5102:372,-22,-17,0,0,0.587365 -19341,5102:371,-21,-17,0,0,0.585695 -19342,5102:370,-20,-17,0,0,0.58325 -19343,5101:479,-19,-17,0,0,0.581426 -19344,5101:478,-18,-17,0,0,0.580301 -19345,5101:477,-17,-17,0,0,0.578197 -19346,5101:476,-16,-17,0,0,0.573881 -19347,5101:475,-15,-17,0,0,0.568345 -19348,5101:374,-14,-17,0,0,0.563044 -19349,5101:373,-13,-17,0,0,0.556157 -19350,5101:372,-12,-17,0,0,0.550265 -19351,5101:371,-11,-17,0,0,0.543875 -19352,5101:370,-10,-17,0,0,0.535989 -19353,5100:479,-9,-17,0,0,0.52934 -19354,5100:478,-8,-17,0,0,0.524012 -19355,5100:477,-7,-17,0,0,0.515986 -19356,5100:476,-6,-17,0,0,0.508515 -19357,5100:475,-5,-17,0,0,0.50207 -19358,5100:374,-4,-17,0,0,0.497266 -19359,5100:373,-3,-17,0,0,0.492104 -19360,5100:372,-2,-17,0,0,0.483248 -19361,5100:371,-1,-17,0,0,0.478836 -19362,3100:371,0,-17,0,0,0.475376 -19363,3100:371,1,-17,0,0,0.472148 -19364,3100:372,2,-17,0,0,0.467414 -19365,3100:373,3,-17,0,0,0.46386 -19366,3100:374,4,-17,0,0,0.462736 -19367,3100:475,5,-17,0,0,0.461817 -19368,3100:476,6,-17,0,0,0.460974 -19369,3100:477,7,-17,0,0,0.458856 -19370,3100:478,8,-17,0,0,0.458881 -19371,3100:479,9,-17,0,0,0.461459 -19372,3101:370,10,-17,0,0,0.460004 -19373,3101:371,11,-17,0,0,0.455414 -19374,3101:372,12,-17,0,0,0.451162 -19375,3101:373,13,-17,0,0,0.445267 -19376,3103:476,36,-17,0,0,0.639823 -19377,3103:477,37,-17,0,0,0.623498 -19378,3103:478,38,-17,0,0,0.630299 -19379,3103:479,39,-17,0,0,0.62545 -19380,3104:370,40,-17,0,0,0.64006 -19381,3104:371,41,-17,0,0,0.656364 -19382,3104:372,42,-17,0,0,0.67362 -19383,3104:373,43,-17,0,0,0.671402 -19384,3104:478,48,-17,0,0,0.619849 -19385,3104:479,49,-17,0,0,0.609753 -19386,3105:370,50,-17,0,0,0.600966 -19387,3105:371,51,-17,0,0,0.593923 -19388,3105:372,52,-17,0,0,0.590673 -19389,3105:373,53,-17,0,0,0.593155 -19390,3105:374,54,-17,0,0,0.58953 -19391,3105:475,55,-17,0,0,0.585771 -19392,3105:476,56,-17,0,0,0.587863 -19393,3105:477,57,-17,0,0,0.598647 -19394,3105:478,58,-17,0,0,0.595582 -19395,3105:479,59,-17,0,0,0.592733 -19396,3106:370,60,-17,0,0,0.589604 -19397,3106:371,61,-17,0,0,0.584972 -19398,3106:372,62,-17,0,0,0.578197 -19399,3106:373,63,-17,0,0,0.575313 -19400,3106:374,64,-17,0,0,0.569075 -19401,3106:475,65,-17,0,0,0.567942 -19402,3106:476,66,-17,0,0,0.567185 -19403,3106:477,67,-17,0,0,0.561779 -19404,3106:478,68,-17,0,0,0.560565 -19405,3106:479,69,-17,0,0,0.556715 -19406,3107:370,70,-17,0,0,0.550698 -19407,3107:371,71,-17,0,0,0.558843 -19408,3107:372,72,-17,0,0,0.552527 -19409,3107:374,74,-17,0,0,0.549655 -19410,3107:475,75,-17,0,0,0.54767 -19411,3107:476,76,-17,0,0,0.54181 -19412,3107:477,77,-17,0,0,0.541479 -19413,3107:478,78,-17,0,0,0.536551 -19414,3107:479,79,-17,0,0,0.538467 -19415,3108:370,80,-17,0,0,0.536654 -19416,3108:371,81,-17,0,0,0.534021 -19417,3108:372,82,-17,0,0,0.526805 -19418,3108:373,83,-17,0,0,0.537343 -19419,3108:374,84,-17,0,0,0.53021 -19420,3108:475,85,-17,0,0,0.528853 -19421,3108:476,86,-17,0,0,0.531029 -19422,3108:477,87,-17,0,0,0.532845 -19423,3108:478,88,-17,0,0,0.521987 -19424,3108:479,89,-17,0,0,0.535555 -19425,3109:370,90,-17,0,0,0.538416 -19426,3109:371,91,-17,0,0,0.515113 -19427,3109:372,92,-17,0,0,0.532154 -19428,3109:373,93,-17,0,0,0.519885 -19429,3109:374,94,-17,0,0,0.5298 -19430,3109:475,95,-17,0,0,0.527291 -19431,3109:476,96,-17,0,0,0.52209 -19432,3109:477,97,-17,0,0,0.528776 -19433,3109:478,98,-17,0,0,0.527547 -19434,3109:479,99,-17,0,0,0.509054 -19435,3110:370,100,-17,0,0,0.510749 -19436,3110:371,101,-17,0,0,0.522987 -19437,3110:372,102,-17,0,0,0.528213 -19438,3110:373,103,-17,0,0,0.523961 -19439,3110:374,104,-17,0,0,0.524243 -19440,3110:475,105,-17,0,0,0.534558 -19441,3110:476,106,-17,0,0,0.53535 -19442,3110:477,107,-17,0,0,0.52893 -19443,3110:478,108,-17,0,0,0.53108 -19444,3110:479,109,-17,0,0,0.540636 -19445,3111:370,110,-17,0,0,0.548103 -19446,3111:371,111,-17,0,0,0.56183 -19447,3111:372,112,-17,0,0,0.561501 -19448,3111:373,113,-17,0,0,0.573982 -19449,3111:374,114,-17,0,0,0.581376 -19450,3115:370,150,-17,0,0,0.624968 -19451,3115:371,151,-17,0,0,0.60136 -19452,3115:372,152,-17,0,0,0.610901 -19453,3115:373,153,-17,0,0,0.601408 -19454,3115:374,154,-17,0,0,0.597585 -19455,3115:475,155,-17,0,0,0.586394 -19456,3115:476,156,-17,0,0,0.5833 -19457,3115:477,157,-17,0,0,0.57368 -19458,3115:478,158,-17,0,0,0.580951 -19459,3115:479,159,-17,0,0,0.571291 -19460,3116:370,160,-17,0,0,0.568521 -19461,3116:371,161,-17,0,0,0.580801 -19462,3116:372,162,-17,0,0,0.576642 -19463,3116:373,163,-17,0,0,0.580225 -19464,3116:374,164,-17,0,0,0.5801 -19465,3116:475,165,-17,0,0,0.572876 -19466,3116:476,166,-17,0,0,0.545226 -19467,3116:477,167,-17,0,0,0.550799 -19468,3116:478,168,-17,0,0,0.562286 -19469,3116:479,169,-17,0,0,0.565368 -19470,3117:370,170,-17,0,0,0.559628 -19471,3117:371,171,-17,0,0,0.551383 -19472,3117:372,172,-17,0,0,0.556309 -19473,3117:373,173,-17,0,0,0.552806 -19474,3117:374,174,-17,0,0,0.55024 -19475,3117:475,175,-17,0,0,0.544895 -19476,3117:476,176,-17,0,0,0.551231 -19477,3117:477,177,-17,0,0,0.543824 -19478,3117:478,178,-17,0,0,0.539616 -19479,3117:479,179,-17,0,0,0.554736 -19480,3118:370,180,-17,0,0,0.544283 -19481,5118:360,-180,-16,0,0,0.559046 -19482,5117:469,-179,-16,0,0,0.556918 -19483,5117:468,-178,-16,0,0,0.559476 -19484,5117:467,-177,-16,0,0,0.565519 -19485,5117:466,-176,-16,0,0,0.563347 -19486,5117:465,-175,-16,0,0,0.563802 -19487,5117:364,-174,-16,0,0,0.555954 -19488,5117:363,-173,-16,0,0,0.563575 -19489,5117:362,-172,-16,0,0,0.562867 -19490,5117:361,-171,-16,0,0,0.558083 -19491,5117:360,-170,-16,0,0,0.569932 -19492,5116:469,-169,-16,0,0,0.566983 -19493,5116:468,-168,-16,0,0,0.56615 -19494,5116:467,-167,-16,0,0,0.564282 -19495,5116:466,-166,-16,0,0,0.569227 -19496,5116:465,-165,-16,0,0,0.565116 -19497,5116:364,-164,-16,0,0,0.568647 -19498,5116:363,-163,-16,0,0,0.572474 -19499,5116:362,-162,-16,0,0,0.571392 -19500,5116:361,-161,-16,0,0,0.573504 -19501,5116:360,-160,-16,0,0,0.579249 -19502,5115:469,-159,-16,0,0,0.582101 -19503,5115:468,-158,-16,0,0,0.5829 -19504,5115:467,-157,-16,0,0,0.586493 -19505,5115:466,-156,-16,0,0,0.589405 -19506,5115:465,-155,-16,0,0,0.593824 -19507,5115:364,-154,-16,0,0,0.595384 -19508,5115:363,-153,-16,0,0,0.600103 -19509,5115:362,-152,-16,0,0,0.60163 -19510,5115:361,-151,-16,0,0,0.603131 -19511,5115:360,-150,-16,0,0,0.605319 -19512,5114:469,-149,-16,0,0,0.605171 -19513,5114:468,-148,-16,0,0,0.607035 -19514,5114:467,-147,-16,0,0,0.609654 -19515,5114:466,-146,-16,0,0,0.609801 -19516,5114:465,-145,-16,0,0,0.610144 -19517,5114:364,-144,-16,0,0,0.609067 -19518,5114:363,-143,-16,0,0,0.60804 -19519,5114:362,-142,-16,0,0,0.608897 -19520,5114:361,-141,-16,0,0,0.609581 -19521,5114:360,-140,-16,0,0,0.609703 -19522,5113:469,-139,-16,0,0,0.609215 -19523,5113:468,-138,-16,0,0,0.608138 -19524,5113:467,-137,-16,0,0,0.606398 -19525,5113:466,-136,-16,0,0,0.605932 -19526,5113:465,-135,-16,0,0,0.604754 -19527,5113:364,-134,-16,0,0,0.603205 -19528,5113:363,-133,-16,0,0,0.600866 -19529,5113:362,-132,-16,0,0,0.596843 -19530,5113:361,-131,-16,0,0,0.594963 -19531,5113:360,-130,-16,0,0,0.59184 -19532,5112:469,-129,-16,0,0,0.58856 -19533,5112:468,-128,-16,0,0,0.586743 -19534,5112:467,-127,-16,0,0,0.587539 -19535,5112:466,-126,-16,0,0,0.586543 -19536,5112:465,-125,-16,0,0,0.583125 -19537,5112:364,-124,-16,0,0,0.585421 -19538,5112:363,-123,-16,0,0,0.584623 -19539,5112:362,-122,-16,0,0,0.585197 -19540,5112:361,-121,-16,0,0,0.5833 -19541,5112:360,-120,-16,0,0,0.580476 -19542,5111:469,-119,-16,0,0,0.581926 -19543,5111:468,-118,-16,0,0,0.582426 -19544,5111:467,-117,-16,0,0,0.583326 -19545,5111:466,-116,-16,0,0,0.582376 -19546,5111:465,-115,-16,0,0,0.578874 -19547,5111:364,-114,-16,0,0,0.575589 -19548,5111:363,-113,-16,0,0,0.572499 -19549,5111:362,-112,-16,0,0,0.566781 -19550,5111:361,-111,-16,0,0,0.562867 -19551,5111:360,-110,-16,0,0,0.559603 -19552,5110:469,-109,-16,0,0,0.555421 -19553,5110:468,-108,-16,0,0,0.550672 -19554,5110:467,-107,-16,0,0,0.546398 -19555,5110:466,-106,-16,0,0,0.540636 -19556,5110:465,-105,-16,0,0,0.534737 -19557,5110:364,-104,-16,0,0,0.52724 -19558,5110:363,-103,-16,0,0,0.519038 -19559,5110:362,-102,-16,0,0,0.513522 -19560,5110:361,-101,-16,0,0,0.508079 -19561,5110:360,-100,-16,0,0,0.503277 -19562,5109:469,-99,-16,0,0,0.49873 -19563,5109:468,-98,-16,0,0,0.494313 -19564,5109:467,-97,-16,0,0,0.487354 -19565,5109:466,-96,-16,0,0,0.476939 -19566,5109:465,-95,-16,0,0,0.470433 -19567,5109:364,-94,-16,0,0,0.466186 -19568,5109:363,-93,-16,0,0,0.459392 -19569,5109:362,-92,-16,0,0,0.451111 -19570,5109:361,-91,-16,0,0,0.444962 -19571,5109:360,-90,-16,0,0,0.437414 -19572,5108:469,-89,-16,0,0,0.432465 -19573,5108:468,-88,-16,0,0,0.42914 -19574,5108:467,-87,-16,0,0,0.424715 -19575,5108:466,-86,-16,0,0,0.418577 -19576,5108:465,-85,-16,0,0,0.410871 -19577,5108:364,-84,-16,0,0,0.40556 -19578,5108:363,-83,-16,0,0,0.403554 -19579,5108:362,-82,-16,0,0,0.400245 -19580,5108:361,-81,-16,0,0,0.400566 -19581,5108:360,-80,-16,0,0,0.398471 -19582,5107:469,-79,-16,0,0,0.397117 -19583,5107:468,-78,-16,0,0,0.397412 -19584,5107:467,-77,-16,0,0,0.40106 -19585,5107:466,-76,-16,0,0,0.403209 -19586,5107:465,-75,-16,0,0,0.410423 -19587,5107:364,-74,-16,0,0,0.42459 -19588,5107:363,-73,-16,0,0,0.437085 -19589,5107:362,-72,-16,0,0,0.456357 -19590,5107:361,-71,-16,0,0,0.446536 -19591,5104:360,-40,-16,0,0,0.636002 -19592,5103:469,-39,-16,0,0,0.632594 -19593,5103:468,-38,-16,0,0,0.629964 -19594,5103:467,-37,-16,0,0,0.623981 -19595,5103:466,-36,-16,0,0,0.623932 -19596,5103:465,-35,-16,0,0,0.626797 -19597,5103:364,-34,-16,0,0,0.627086 -19598,5103:363,-33,-16,0,0,0.625017 -19599,5103:362,-32,-16,0,0,0.623836 -19600,5103:361,-31,-16,0,0,0.620624 -19601,5103:360,-30,-16,0,0,0.615239 -19602,5102:469,-29,-16,0,0,0.609336 -19603,5102:468,-28,-16,0,0,0.595062 -19604,5102:467,-27,-16,0,0,0.583924 -19605,5102:466,-26,-16,0,0,0.583125 -19606,5102:465,-25,-16,0,0,0.584748 -19607,5102:364,-24,-16,0,0,0.585845 -19608,5102:363,-23,-16,0,0,0.585895 -19609,5102:362,-22,-16,0,0,0.584673 -19610,5102:361,-21,-16,0,0,0.582976 -19611,5102:360,-20,-16,0,0,0.581551 -19612,5101:469,-19,-16,0,0,0.578422 -19613,5101:468,-18,-16,0,0,0.572172 -19614,5101:467,-17,-16,0,0,0.567437 -19615,5101:466,-16,-16,0,0,0.562842 -19616,5101:465,-15,-16,0,0,0.558134 -19617,5101:364,-14,-16,0,0,0.553239 -19618,5101:363,-13,-16,0,0,0.546754 -19619,5101:362,-12,-16,0,0,0.538493 -19620,5101:361,-11,-16,0,0,0.529468 -19621,5101:360,-10,-16,0,0,0.523755 -19622,5100:469,-9,-16,0,0,0.517628 -19623,5100:468,-8,-16,0,0,0.512161 -19624,5100:467,-7,-16,0,0,0.505999 -19625,5100:466,-6,-16,0,0,0.499295 -19626,5100:465,-5,-16,0,0,0.491976 -19627,5100:364,-4,-16,0,0,0.486609 -19628,5100:363,-3,-16,0,0,0.484736 -19629,5100:362,-2,-16,0,0,0.480144 -19630,5100:361,-1,-16,0,0,0.477119 -19631,3100:361,0,-16,0,0,0.475581 -19632,3100:361,1,-16,0,0,0.473557 -19633,3100:362,2,-16,0,0,0.470101 -19634,3100:363,3,-16,0,0,0.467746 -19635,3100:364,4,-16,0,0,0.466058 -19636,3100:465,5,-16,0,0,0.465369 -19637,3100:466,6,-16,0,0,0.464831 -19638,3100:467,7,-16,0,0,0.464218 -19639,3100:468,8,-16,0,0,0.464269 -19640,3100:469,9,-16,0,0,0.463732 -19641,3101:360,10,-16,0,0,0.46054 -19642,3101:361,11,-16,0,0,0.461332 -19643,3101:362,12,-16,0,0,0.453172 -19644,3101:363,13,-16,0,0,0.403505 -19645,3103:465,35,-16,0,0,0.644686 -19646,3103:466,36,-16,0,0,0.646285 -19647,3103:467,37,-16,0,0,0.644168 -19648,3103:468,38,-16,0,0,0.627086 -19649,3103:469,39,-16,0,0,0.643956 -19650,3104:360,40,-16,0,0,0.655112 -19651,3104:361,41,-16,0,0,0.66156 -19652,3104:362,42,-16,0,0,0.679152 -19653,3104:363,43,-16,0,0,0.685521 -19654,3104:469,49,-16,0,0,0.619656 -19655,3105:360,50,-16,0,0,0.608481 -19656,3105:361,51,-16,0,0,0.606839 -19657,3105:362,52,-16,0,0,0.603476 -19658,3105:363,53,-16,0,0,0.601187 -19659,3105:364,54,-16,0,0,0.603795 -19660,3105:465,55,-16,0,0,0.601729 -19661,3105:466,56,-16,0,0,0.603353 -19662,3105:467,57,-16,0,0,0.603107 -19663,3105:468,58,-16,0,0,0.599017 -19664,3105:469,59,-16,0,0,0.593923 -19665,3106:360,60,-16,0,0,0.593576 -19666,3106:361,61,-16,0,0,0.591369 -19667,3106:362,62,-16,0,0,0.582476 -19668,3106:363,63,-16,0,0,0.5835 -19669,3106:364,64,-16,0,0,0.577345 -19670,3106:465,65,-16,0,0,0.571794 -19671,3106:466,66,-16,0,0,0.575162 -19672,3106:467,67,-16,0,0,0.576116 -19673,3106:468,68,-16,0,0,0.572273 -19674,3106:469,69,-16,0,0,0.567387 -19675,3107:360,70,-16,0,0,0.568219 -19676,3107:361,71,-16,0,0,0.566227 -19677,3107:362,72,-16,0,0,0.558615 -19678,3107:364,74,-16,0,0,0.557652 -19679,3107:465,75,-16,0,0,0.555497 -19680,3107:466,76,-16,0,0,0.553162 -19681,3107:467,77,-16,0,0,0.55235 -19682,3107:468,78,-16,0,0,0.552171 -19683,3107:469,79,-16,0,0,0.54464 -19684,3108:360,80,-16,0,0,0.556411 -19685,3108:361,81,-16,0,0,0.557069 -19686,3108:362,82,-16,0,0,0.552806 -19687,3108:363,83,-16,0,0,0.53742 -19688,3108:364,84,-16,0,0,0.553975 -19689,3108:465,85,-16,0,0,0.552832 -19690,3108:466,86,-16,0,0,0.540892 -19691,3108:467,87,-16,0,0,0.550977 -19692,3108:468,88,-16,0,0,0.545532 -19693,3108:469,89,-16,0,0,0.547314 -19694,3109:360,90,-16,0,0,0.55334 -19695,3109:361,91,-16,0,0,0.542957 -19696,3109:362,92,-16,0,0,0.551257 -19697,3109:363,93,-16,0,0,0.53982 -19698,3109:364,94,-16,0,0,0.540764 -19699,3109:465,95,-16,0,0,0.540815 -19700,3109:466,96,-16,0,0,0.525856 -19701,3109:467,97,-16,0,0,0.541325 -19702,3109:468,98,-16,0,0,0.527342 -19703,3109:469,99,-16,0,0,0.523551 -19704,3110:360,100,-16,0,0,0.521654 -19705,3110:361,101,-16,0,0,0.53673 -19706,3110:362,102,-16,0,0,0.532333 -19707,3110:363,103,-16,0,0,0.543289 -19708,3110:364,104,-16,0,0,0.55118 -19709,3110:465,105,-16,0,0,0.541121 -19710,3110:466,106,-16,0,0,0.543773 -19711,3110:467,107,-16,0,0,0.545761 -19712,3110:468,108,-16,0,0,0.554406 -19713,3110:469,109,-16,0,0,0.560362 -19714,3111:360,110,-16,0,0,0.566554 -19715,3111:361,111,-16,0,0,0.572976 -19716,3111:362,112,-16,0,0,0.571266 -19717,3111:363,113,-16,0,0,0.582551 -19718,3111:364,114,-16,0,0,0.595954 -19719,3111:465,115,-16,0,0,0.603083 -19720,3111:466,116,-16,0,0,0.611657 -19721,3111:467,117,-16,0,0,0.6314 -19722,3111:468,118,-16,0,0,0.65611 -19723,3115:360,150,-16,0,0,0.60706 -19724,3115:361,151,-16,0,0,0.611853 -19725,3115:362,152,-16,0,0,0.60603 -19726,3115:363,153,-16,0,0,0.605686 -19727,3115:364,154,-16,0,0,0.588361 -19728,3115:465,155,-16,0,0,0.584349 -19729,3115:466,156,-16,0,0,0.583575 -19730,3115:467,157,-16,0,0,0.591766 -21245,5108:102,-82,-10,0,0,0.47594 -19731,3115:468,158,-16,0,0,0.591741 -19732,3115:469,159,-16,0,0,0.582126 -19733,3116:360,160,-16,0,0,0.581676 -19734,3116:361,161,-16,0,0,0.595235 -19735,3116:362,162,-16,0,0,0.592957 -19736,3116:363,163,-16,0,0,0.591194 -19737,3116:364,164,-16,0,0,0.590052 -19738,3116:465,165,-16,0,0,0.584648 -19739,3116:466,166,-16,0,0,0.577846 -19740,3116:467,167,-16,0,0,0.580401 -19741,3116:468,168,-16,0,0,0.574509 -19742,3116:469,169,-16,0,0,0.569201 -19743,3117:360,170,-16,0,0,0.565166 -19744,3117:361,171,-16,0,0,0.566251 -19745,3117:362,172,-16,0,0,0.561527 -19746,3117:363,173,-16,0,0,0.555345 -19747,3117:364,174,-16,0,0,0.56461 -19748,3117:465,175,-16,0,0,0.566428 -19749,3117:466,176,-16,0,0,0.557146 -19750,3117:467,177,-16,0,0,0.566504 -19751,3117:468,178,-16,0,0,0.564257 -19752,3117:469,179,-16,0,0,0.564054 -19753,3118:360,180,-16,0,0,0.559046 -19754,5118:350,-180,-15,0,0,0.576467 -19755,5117:459,-179,-15,0,0,0.576668 -19756,5117:458,-178,-15,0,0,0.574987 -19757,5117:457,-177,-15,0,0,0.576266 -19758,5117:456,-176,-15,0,0,0.584573 -19759,5117:455,-175,-15,0,0,0.586493 -19760,5117:354,-174,-15,0,0,0.582976 -19761,5117:353,-173,-15,0,0,0.585072 -19762,5117:352,-172,-15,0,0,0.585646 -19763,5117:351,-171,-15,0,0,0.585571 -19764,5117:350,-170,-15,0,0,0.586419 -19765,5116:459,-169,-15,0,0,0.589629 -19766,5116:458,-168,-15,0,0,0.587738 -19767,5116:457,-167,-15,0,0,0.589927 -19768,5116:456,-166,-15,0,0,0.590474 -19769,5116:455,-165,-15,0,0,0.594146 -19770,5116:354,-164,-15,0,0,0.598845 -19771,5116:353,-163,-15,0,0,0.596151 -19772,5116:352,-162,-15,0,0,0.600275 -19773,5116:351,-161,-15,0,0,0.602861 -19774,5116:350,-160,-15,0,0,0.605564 -19775,5115:459,-159,-15,0,0,0.610119 -19776,5115:458,-158,-15,0,0,0.616843 -19777,5115:457,-157,-15,0,0,0.616211 -19778,5115:456,-156,-15,0,0,0.618371 -19779,5115:455,-155,-15,0,0,0.621204 -19780,5115:354,-154,-15,0,0,0.62234 -19781,5115:353,-153,-15,0,0,0.624944 -19782,5115:352,-152,-15,0,0,0.628669 -19783,5115:351,-151,-15,0,0,0.63331 -19784,5115:350,-150,-15,0,0,0.633168 -19785,5114:459,-149,-15,0,0,0.631113 -19786,5114:458,-148,-15,0,0,0.632475 -19787,5114:457,-147,-15,0,0,0.632905 -19788,5114:456,-146,-15,0,0,0.63226 -19789,5114:455,-145,-15,0,0,0.629677 -19790,5114:354,-144,-15,0,0,0.628838 -19791,5114:353,-143,-15,0,0,0.629581 -19792,5114:352,-142,-15,0,0,0.627517 -19793,5114:351,-141,-15,0,0,0.628765 -19794,5114:350,-140,-15,0,0,0.62831 -19795,5113:459,-139,-15,0,0,0.627157 -19796,5113:458,-138,-15,0,0,0.625666 -19797,5113:457,-137,-15,0,0,0.626244 -19798,5113:456,-136,-15,0,0,0.626629 -19799,5113:455,-135,-15,0,0,0.625089 -19800,5113:354,-134,-15,0,0,0.623523 -19801,5113:353,-133,-15,0,0,0.623064 -19802,5113:352,-132,-15,0,0,0.622413 -19803,5113:351,-131,-15,0,0,0.61951 -19804,5113:350,-130,-15,0,0,0.61609 -19805,5112:459,-129,-15,0,0,0.614387 -19806,5112:458,-128,-15,0,0,0.615117 -19807,5112:457,-127,-15,0,0,0.610412 -19808,5112:456,-126,-15,0,0,0.612658 -19809,5112:455,-125,-15,0,0,0.609043 -19810,5112:354,-124,-15,0,0,0.610901 -19811,5112:353,-123,-15,0,0,0.610241 -19812,5112:352,-122,-15,0,0,0.60941 -19813,5112:351,-121,-15,0,0,0.610876 -19814,5112:350,-120,-15,0,0,0.609361 -19815,5111:459,-119,-15,0,0,0.605883 -19816,5111:458,-118,-15,0,0,0.602369 -19817,5111:457,-117,-15,0,0,0.59919 -19818,5111:456,-116,-15,0,0,0.594369 -19819,5111:455,-115,-15,0,0,0.58953 -19820,5111:354,-114,-15,0,0,0.585347 -19821,5111:353,-113,-15,0,0,0.579123 -19822,5111:352,-112,-15,0,0,0.572147 -19823,5111:351,-111,-15,0,0,0.566983 -19824,5111:350,-110,-15,0,0,0.559958 -19825,5110:459,-109,-15,0,0,0.554609 -19826,5110:458,-108,-15,0,0,0.547645 -19827,5110:457,-107,-15,0,0,0.541121 -19828,5110:456,-106,-15,0,0,0.531233 -19829,5110:455,-105,-15,0,0,0.520962 -19830,5110:354,-104,-15,0,0,0.515036 -19831,5110:353,-103,-15,0,0,0.50908 -19832,5110:352,-102,-15,0,0,0.502172 -19833,5110:351,-101,-15,0,0,0.499193 -19834,5110:350,-100,-15,0,0,0.49444 -19835,5109:459,-99,-15,0,0,0.490075 -19836,5109:458,-98,-15,0,0,0.488149 -19837,5109:457,-97,-15,0,0,0.482734 -19838,5109:456,-96,-15,0,0,0.471355 -19839,5109:455,-95,-15,0,0,0.461689 -19840,5109:354,-94,-15,0,0,0.458601 -19841,5109:353,-93,-15,0,0,0.453046 -19842,5109:352,-92,-15,0,0,0.439843 -19843,5109:351,-91,-15,0,0,0.431507 -19844,5109:350,-90,-15,0,0,0.436176 -19845,5108:459,-89,-15,0,0,0.436757 -19846,5108:458,-88,-15,0,0,0.42675 -19847,5108:457,-87,-15,0,0,0.419928 -19848,5108:456,-86,-15,0,0,0.414756 -19849,5108:455,-85,-15,0,0,0.404965 -19850,5108:354,-84,-15,0,0,0.40143 -19851,5108:353,-83,-15,0,0,0.399802 -19852,5108:352,-82,-15,0,0,0.400146 -19853,5108:351,-81,-15,0,0,0.399185 -19854,5108:350,-80,-15,0,0,0.399407 -19855,5107:459,-79,-15,0,0,0.401479 -19856,5107:458,-78,-15,0,0,0.404866 -19857,5107:457,-77,-15,0,0,0.405931 -19858,5107:456,-76,-15,0,0,0.418127 -19859,5107:455,-75,-15,0,0,0.440324 -19860,5107:354,-74,-15,0,0,0.453631 -19861,5107:353,-73,-15,0,0,0.469845 -19862,5107:352,-72,-15,0,0,0.47407 -19863,5107:351,-71,-15,0,0,0.459494 -19864,5103:459,-39,-15,0,0,0.622823 -19865,5103:458,-38,-15,0,0,0.621906 -19866,5103:457,-37,-15,0,0,0.624197 -19867,5103:456,-36,-15,0,0,0.624704 -19868,5103:455,-35,-15,0,0,0.625281 -19869,5103:354,-34,-15,0,0,0.623209 -19870,5103:353,-33,-15,0,0,0.621204 -19871,5103:352,-32,-15,0,0,0.618638 -19872,5103:351,-31,-15,0,0,0.614533 -19873,5103:350,-30,-15,0,0,0.610364 -19874,5102:459,-29,-15,0,0,0.606496 -19875,5102:458,-28,-15,0,0,0.599215 -19876,5102:457,-27,-15,0,0,0.586867 -19877,5102:456,-26,-15,0,0,0.580175 -19878,5102:455,-25,-15,0,0,0.579074 -19879,5102:354,-24,-15,0,0,0.5798 -19880,5102:353,-23,-15,0,0,0.577545 -19881,5102:352,-22,-15,0,0,0.573605 -19882,5102:351,-21,-15,0,0,0.570335 -19883,5102:350,-20,-15,0,0,0.566907 -19884,5101:459,-19,-15,0,0,0.565393 -19885,5101:458,-18,-15,0,0,0.561223 -19886,5101:457,-17,-15,0,0,0.556309 -19887,5101:456,-16,-15,0,0,0.550037 -19888,5101:455,-15,-15,0,0,0.542754 -19889,5101:354,-14,-15,0,0,0.536756 -19890,5101:353,-13,-15,0,0,0.530645 -19891,5101:352,-12,-15,0,0,0.524217 -19892,5101:351,-11,-15,0,0,0.521372 -19893,5101:350,-10,-15,0,0,0.515062 -19894,5100:459,-9,-15,0,0,0.509645 -19895,5100:458,-8,-15,0,0,0.502994 -19896,5100:457,-7,-15,0,0,0.498139 -19897,5100:456,-6,-15,0,0,0.493362 -19898,5100:455,-5,-15,0,0,0.488612 -19899,5100:354,-4,-15,0,0,0.484505 -19900,5100:353,-3,-15,0,0,0.482093 -19901,5100:352,-2,-15,0,0,0.47899 -19902,5100:351,-1,-15,0,0,0.477324 -19903,3100:351,0,-15,0,0,0.476324 -19904,3100:351,1,-15,0,0,0.473787 -19905,3100:352,2,-15,0,0,0.471815 -19906,3100:353,3,-15,0,0,0.470971 -19907,3100:354,4,-15,0,0,0.470101 -19908,3100:455,5,-15,0,0,0.468897 -19909,3100:456,6,-15,0,0,0.469512 -19910,3100:457,7,-15,0,0,0.468284 -19911,3100:458,8,-15,0,0,0.469153 -19912,3100:459,9,-15,0,0,0.474044 -19913,3101:350,10,-15,0,0,0.480093 -19914,3101:351,11,-15,0,0,0.478657 -19915,3101:352,12,-15,0,0,0.43706 -19916,3103:456,36,-15,0,0,0.659694 -19917,3103:457,37,-15,0,0,0.644098 -19918,3103:458,38,-15,0,0,0.654973 -19919,3103:459,39,-15,0,0,0.647646 -19920,3104:350,40,-15,0,0,0.659209 -19921,3104:351,41,-15,0,0,0.665688 -19922,3104:352,42,-15,0,0,0.676775 -19923,3104:353,43,-15,0,0,0.68665 -19924,3104:354,44,-15,0,0,0.698029 -19925,3104:459,49,-15,0,0,0.632571 -19926,3105:350,50,-15,0,0,0.619268 -19927,3105:351,51,-15,0,0,0.613998 -19928,3105:352,52,-15,0,0,0.613535 -19929,3105:353,53,-15,0,0,0.612341 -19930,3105:354,54,-15,0,0,0.610852 -19931,3105:455,55,-15,0,0,0.61007 -19932,3105:456,56,-15,0,0,0.609508 -19933,3105:457,57,-15,0,0,0.608309 -19934,3105:458,58,-15,0,0,0.604311 -19935,3105:459,59,-15,0,0,0.601532 -19936,3106:350,60,-15,0,0,0.597511 -19937,3106:351,61,-15,0,0,0.599659 -19938,3106:352,62,-15,0,0,0.594444 -19939,3106:353,63,-15,0,0,0.591666 -19940,3106:354,64,-15,0,0,0.589082 -19941,3106:455,65,-15,0,0,0.585745 -19942,3106:456,66,-15,0,0,0.585446 -19943,3106:457,67,-15,0,0,0.584773 -19944,3106:458,68,-15,0,0,0.582726 -19945,3106:459,69,-15,0,0,0.575589 -19946,3107:350,70,-15,0,0,0.570259 -19947,3107:351,71,-15,0,0,0.579324 -19948,3107:352,72,-15,0,0,0.580626 -19949,3107:354,74,-15,0,0,0.573831 -19950,3107:455,75,-15,0,0,0.578072 -19951,3107:456,76,-15,0,0,0.572876 -19952,3107:457,77,-15,0,0,0.576392 -19953,3107:458,78,-15,0,0,0.574735 -19954,3107:459,79,-15,0,0,0.562361 -19955,3108:350,80,-15,0,0,0.574735 -19956,3108:351,81,-15,0,0,0.564813 -19957,3108:352,82,-15,0,0,0.562968 -19958,3108:353,83,-15,0,0,0.573454 -19959,3108:354,84,-15,0,0,0.577144 -19960,3108:455,85,-15,0,0,0.570864 -19961,3108:456,86,-15,0,0,0.565039 -19962,3108:457,87,-15,0,0,0.56716 -19963,3108:458,88,-15,0,0,0.566907 -19964,3108:459,89,-15,0,0,0.570838 -19965,3109:350,90,-15,0,0,0.560667 -19966,3109:351,91,-15,0,0,0.565949 -19967,3109:352,92,-15,0,0,0.561729 -19968,3109:353,93,-15,0,0,0.574434 -19969,3109:354,94,-15,0,0,0.549629 -19970,3109:455,95,-15,0,0,0.558058 -19971,3109:456,96,-15,0,0,0.550646 -19972,3109:457,97,-15,0,0,0.559071 -19973,3109:458,98,-15,0,0,0.553949 -19974,3109:459,99,-15,0,0,0.553898 -19975,3110:350,100,-15,0,0,0.557019 -19976,3110:351,101,-15,0,0,0.542575 -19977,3110:352,102,-15,0,0,0.539412 -19978,3110:353,103,-15,0,0,0.547568 -19979,3110:354,104,-15,0,0,0.561805 -19980,3110:455,105,-15,0,0,0.570335 -19981,3110:456,106,-15,0,0,0.561704 -19982,3110:457,107,-15,0,0,0.563246 -19983,3110:458,108,-15,0,0,0.566201 -19984,3110:459,109,-15,0,0,0.572322 -19985,3111:350,110,-15,0,0,0.589878 -19986,3111:351,111,-15,0,0,0.596176 -19987,3111:352,112,-15,0,0,0.611389 -19988,3111:353,113,-15,0,0,0.614752 -19989,3111:354,114,-15,0,0,0.612268 -19990,3111:455,115,-15,0,0,0.622292 -19991,3111:456,116,-15,0,0,0.62819 -19992,3111:457,117,-15,0,0,0.637381 -19993,3111:458,118,-15,0,0,0.645933 -19994,3111:459,119,-15,0,0,0.649543 -19995,3112:350,120,-15,0,0,0.650594 -19996,3112:351,121,-15,0,0,0.653508 -19997,3114:457,147,-15,0,0,0.64032 -19998,3114:458,148,-15,0,0,0.622847 -19999,3114:459,149,-15,0,0,0.623354 -20000,3115:350,150,-15,0,0,0.618032 -20001,3115:351,151,-15,0,0,0.60264 -20002,3115:352,152,-15,0,0,0.606912 -20003,3115:353,153,-15,0,0,0.611951 -20004,3115:354,154,-15,0,0,0.608945 -20005,3115:455,155,-15,0,0,0.605073 -20006,3115:456,156,-15,0,0,0.604581 -20007,3115:457,157,-15,0,0,0.606472 -20008,3115:458,158,-15,0,0,0.602295 -20009,3115:459,159,-15,0,0,0.604262 -20010,3116:350,160,-15,0,0,0.603426 -20011,3116:351,161,-15,0,0,0.598055 -20012,3116:352,162,-15,0,0,0.601039 -20013,3116:353,163,-15,0,0,0.594518 -20014,3116:354,164,-15,0,0,0.591046 -20015,3116:455,165,-15,0,0,0.589579 -20016,3116:456,166,-15,0,0,0.589455 -20017,3116:457,167,-15,0,0,0.591219 -20018,3116:458,168,-15,0,0,0.584673 -20019,3116:459,169,-15,0,0,0.586768 -20020,3117:350,170,-15,0,0,0.584823 -20021,3117:351,171,-15,0,0,0.591666 -20022,3117:352,172,-15,0,0,0.588211 -20023,3117:353,173,-15,0,0,0.58045 -20024,3117:354,174,-15,0,0,0.582776 -20025,3117:455,175,-15,0,0,0.587291 -20026,3117:456,176,-15,0,0,0.588958 -20027,3117:457,177,-15,0,0,0.590251 -20028,3117:458,178,-15,0,0,0.585895 -20029,3117:459,179,-15,0,0,0.584149 -20030,3118:350,180,-15,0,0,0.576467 -20031,5118:140,-180,-14,0,0,0.594493 -20032,5117:249,-179,-14,0,0,0.593502 -20033,5117:248,-178,-14,0,0,0.595533 -20034,5117:247,-177,-14,0,0,0.601803 -20035,5117:246,-176,-14,0,0,0.598993 -20036,5117:245,-175,-14,0,0,0.602812 -20037,5117:144,-174,-14,0,0,0.600645 -20038,5117:143,-173,-14,0,0,0.601729 -20039,5117:142,-172,-14,0,0,0.605736 -20040,5117:141,-171,-14,0,0,0.609165 -20041,5117:140,-170,-14,0,0,0.612731 -20042,5116:249,-169,-14,0,0,0.607966 -20043,5116:248,-168,-14,0,0,0.607942 -20044,5116:247,-167,-14,0,0,0.611414 -20045,5116:246,-166,-14,0,0,0.616527 -20046,5116:245,-165,-14,0,0,0.616017 -20047,5116:144,-164,-14,0,0,0.622413 -20048,5116:143,-163,-14,0,0,0.620914 -20049,5116:142,-162,-14,0,0,0.621591 -20050,5116:141,-161,-14,0,0,0.622654 -20051,5116:140,-160,-14,0,0,0.623981 -20052,5115:249,-159,-14,0,0,0.629293 -20053,5115:248,-158,-14,0,0,0.633549 -20054,5115:247,-157,-14,0,0,0.632594 -20055,5115:246,-156,-14,0,0,0.635098 -20056,5115:245,-155,-14,0,0,0.640652 -20057,5115:144,-154,-14,0,0,0.64332 -20058,5115:143,-153,-14,0,0,0.646919 -20059,5115:142,-152,-14,0,0,0.64713 -20060,5115:141,-151,-14,0,0,0.645274 -20061,5115:140,-150,-14,0,0,0.646708 -20062,5114:249,-149,-14,0,0,0.642447 -20063,5114:248,-148,-14,0,0,0.647505 -20064,5114:247,-147,-14,0,0,0.648654 -20065,5114:246,-146,-14,0,0,0.647575 -20066,5114:245,-145,-14,0,0,0.645228 -20067,5114:144,-144,-14,0,0,0.644874 -20068,5114:143,-143,-14,0,0,0.643202 -20069,5114:142,-142,-14,0,0,0.639776 -20070,5114:141,-141,-14,0,0,0.640604 -20071,5114:140,-140,-14,0,0,0.639586 -20072,5113:249,-139,-14,0,0,0.637998 -20073,5113:248,-138,-14,0,0,0.637975 -20074,5113:247,-137,-14,0,0,0.63897 -20075,5113:246,-136,-14,0,0,0.638212 -20076,5113:245,-135,-14,0,0,0.636455 -20077,5113:144,-134,-14,0,0,0.634479 -20078,5113:143,-133,-14,0,0,0.634408 -20079,5113:142,-132,-14,0,0,0.636074 -20080,5113:141,-131,-14,0,0,0.63655 -20081,5113:140,-130,-14,0,0,0.635193 -20082,5112:249,-129,-14,0,0,0.631113 -20083,5112:248,-128,-14,0,0,0.629868 -20084,5112:247,-127,-14,0,0,0.627494 -20085,5112:246,-126,-14,0,0,0.628045 -20086,5112:245,-125,-14,0,0,0.623715 -20087,5112:144,-124,-14,0,0,0.62147 -20088,5112:143,-123,-14,0,0,0.623571 -20089,5112:142,-122,-14,0,0,0.618711 -20090,5112:141,-121,-14,0,0,0.616989 -20091,5112:140,-120,-14,0,0,0.614631 -20092,5111:249,-119,-14,0,0,0.611462 -20093,5111:248,-118,-14,0,0,0.605122 -20094,5111:247,-117,-14,0,0,0.599757 -20095,5111:246,-116,-14,0,0,0.592559 -20096,5111:245,-115,-14,0,0,0.587714 -20097,5111:144,-114,-14,0,0,0.582176 -20098,5111:143,-113,-14,0,0,0.575288 -20099,5111:142,-112,-14,0,0,0.569151 -20100,5111:141,-111,-14,0,0,0.563347 -20101,5111:140,-110,-14,0,0,0.556309 -20102,5110:249,-109,-14,0,0,0.551587 -20103,5110:248,-108,-14,0,0,0.546779 -20104,5110:247,-107,-14,0,0,0.54209 -20105,5110:246,-106,-14,0,0,0.536372 -20106,5110:245,-105,-14,0,0,0.529007 -20107,5110:144,-104,-14,0,0,0.516781 -20108,5110:143,-103,-14,0,0,0.507206 -20109,5110:142,-102,-14,0,0,0.499089 -20110,5110:141,-101,-14,0,0,0.495339 -20111,5110:140,-100,-14,0,0,0.490357 -20112,5109:249,-99,-14,0,0,0.48235 -20113,5109:248,-98,-14,0,0,0.477349 -20114,5109:247,-97,-14,0,0,0.47535 -20115,5109:246,-96,-14,0,0,0.470458 -20116,5109:245,-95,-14,0,0,0.461128 -20117,5109:144,-94,-14,0,0,0.452179 -20118,5109:143,-93,-14,0,0,0.446308 -20119,5109:142,-92,-14,0,0,0.43959 -20120,5109:141,-91,-14,0,0,0.429668 -20121,5109:140,-90,-14,0,0,0.42464 -20122,5108:249,-89,-14,0,0,0.423034 -20123,5108:248,-88,-14,0,0,0.418927 -20124,5108:247,-87,-14,0,0,0.413186 -20125,5108:246,-86,-14,0,0,0.411692 -20126,5108:245,-85,-14,0,0,0.40727 -20127,5108:144,-84,-14,0,0,0.403184 -20128,5108:143,-83,-14,0,0,0.397707 -20129,5108:142,-82,-14,0,0,0.397585 -20130,5108:141,-81,-14,0,0,0.398693 -20131,5108:140,-80,-14,0,0,0.40442 -20132,5107:249,-79,-14,0,0,0.409976 -20133,5107:248,-78,-14,0,0,0.419027 -20134,5107:247,-77,-14,0,0,0.4267 -20135,5107:246,-76,-14,0,0,0.438502 -20136,5107:245,-75,-14,0,0,0.449788 -20137,5107:144,-74,-14,0,0,0.452587 -20138,5107:143,-73,-14,0,0,0.458754 -20139,5107:142,-72,-14,0,0,0.459698 -20140,5103:249,-39,-14,0,0,0.597141 -20141,5103:248,-38,-14,0,0,0.626532 -20142,5103:247,-37,-14,0,0,0.623088 -20143,5103:246,-36,-14,0,0,0.623402 -20144,5103:245,-35,-14,0,0,0.622581 -20145,5103:144,-34,-14,0,0,0.619849 -20146,5103:143,-33,-14,0,0,0.61626 -20147,5103:142,-32,-14,0,0,0.61256 -20148,5103:141,-31,-14,0,0,0.607574 -20149,5103:140,-30,-14,0,0,0.603328 -20150,5102:249,-29,-14,0,0,0.599387 -20151,5102:248,-28,-14,0,0,0.595186 -20152,5102:247,-27,-14,0,0,0.589754 -20153,5102:246,-26,-14,0,0,0.5799 -20154,5102:245,-25,-14,0,0,0.577119 -20155,5102:144,-24,-14,0,0,0.57456 -20156,5102:143,-23,-14,0,0,0.572574 -20157,5102:142,-22,-14,0,0,0.569454 -20158,5102:141,-21,-14,0,0,0.56514 -20159,5102:140,-20,-14,0,0,0.560768 -20160,5101:249,-19,-14,0,0,0.556004 -20161,5101:248,-18,-14,0,0,0.549298 -20162,5101:247,-17,-14,0,0,0.542422 -20163,5101:246,-16,-14,0,0,0.539846 -20164,5101:245,-15,-14,0,0,0.535912 -20165,5101:144,-14,-14,0,0,0.53443 -20166,5101:143,-13,-14,0,0,0.52939 -20167,5101:142,-12,-14,0,0,0.521782 -20168,5101:141,-11,-14,0,0,0.516499 -20169,5101:140,-10,-14,0,0,0.511443 -20170,5100:249,-9,-14,0,0,0.506153 -20171,5100:248,-8,-14,0,0,0.500888 -20172,5100:247,-7,-14,0,0,0.495622 -20173,5100:246,-6,-14,0,0,0.490922 -20174,5100:245,-5,-14,0,0,0.48756 -20175,5100:144,-4,-14,0,0,0.485763 -20176,5100:143,-3,-14,0,0,0.484145 -20177,5100:142,-2,-14,0,0,0.480939 -20178,5100:141,-1,-14,0,0,0.481042 -20179,3100:141,0,-14,0,0,0.479375 -20180,3100:141,1,-14,0,0,0.477221 -20181,3100:142,2,-14,0,0,0.475324 -20182,3100:143,3,-14,0,0,0.474736 -20183,3100:144,4,-14,0,0,0.474736 -20184,3100:245,5,-14,0,0,0.475735 -20185,3100:246,6,-14,0,0,0.4743 -20186,3100:247,7,-14,0,0,0.48235 -20187,3100:248,8,-14,0,0,0.489331 -20188,3100:249,9,-14,0,0,0.507334 -20189,3101:140,10,-14,0,0,0.522859 -20190,3101:141,11,-14,0,0,0.487867 -20191,3103:248,38,-14,0,0,0.639184 -20192,3103:249,39,-14,0,0,0.669131 -20193,3104:140,40,-14,0,0,0.666967 -20194,3104:141,41,-14,0,0,0.669381 -20195,3104:142,42,-14,0,0,0.678928 -20196,3104:143,43,-14,0,0,0.689384 -20197,3105:140,50,-14,0,0,0.631806 -20198,3105:141,51,-14,0,0,0.624246 -20199,3105:142,52,-14,0,0,0.616624 -20200,3105:143,53,-14,0,0,0.613657 -20201,3105:144,54,-14,0,0,0.612268 -20202,3105:245,55,-14,0,0,0.61278 -20203,3105:246,56,-14,0,0,0.614899 -20204,3105:247,57,-14,0,0,0.617474 -20205,3105:248,58,-14,0,0,0.613754 -20206,3105:249,59,-14,0,0,0.60941 -20207,3106:140,60,-14,0,0,0.608799 -20208,3106:141,61,-14,0,0,0.606153 -20209,3106:142,62,-14,0,0,0.602812 -20210,3106:143,63,-14,0,0,0.601335 -20211,3106:144,64,-14,0,0,0.599412 -20212,3106:245,65,-14,0,0,0.596843 -20213,3106:246,66,-14,0,0,0.596572 -20214,3106:247,67,-14,0,0,0.595136 -20215,3106:248,68,-14,0,0,0.594741 -20216,3106:249,69,-14,0,0,0.59422 -20217,3107:140,70,-14,0,0,0.594716 -20218,3107:141,71,-14,0,0,0.59427 -20219,3107:142,72,-14,0,0,0.59246 -20220,3107:144,74,-14,0,0,0.588261 -20221,3107:245,75,-14,0,0,0.591815 -20222,3107:246,76,-14,0,0,0.589032 -20223,3107:247,77,-14,0,0,0.587962 -20224,3107:248,78,-14,0,0,0.585571 -20225,3107:249,79,-14,0,0,0.590846 -20226,3108:140,80,-14,0,0,0.596547 -20227,3108:141,81,-14,0,0,0.59365 -20228,3108:142,82,-14,0,0,0.589232 -20229,3108:143,83,-14,0,0,0.585596 -20230,3108:144,84,-14,0,0,0.587863 -20231,3108:245,85,-14,0,0,0.594394 -20232,3108:246,86,-14,0,0,0.596176 -20233,3108:247,87,-14,0,0,0.586219 -20234,3108:248,88,-14,0,0,0.586269 -20235,3108:249,89,-14,0,0,0.588385 -20236,3109:140,90,-14,0,0,0.578197 -20237,3109:141,91,-14,0,0,0.570738 -20238,3109:142,92,-14,0,0,0.570335 -20239,3109:143,93,-14,0,0,0.582051 -20240,3109:144,94,-14,0,0,0.569075 -20241,3109:245,95,-14,0,0,0.558236 -20242,3109:246,96,-14,0,0,0.562665 -20243,3109:247,97,-14,0,0,0.575388 -20244,3109:248,98,-14,0,0,0.568798 -20245,3109:249,99,-14,0,0,0.566806 -20246,3110:140,100,-14,0,0,0.572649 -20247,3110:141,101,-14,0,0,0.572298 -20248,3110:142,102,-14,0,0,0.566781 -20249,3110:143,103,-14,0,0,0.565318 -20250,3110:144,104,-14,0,0,0.571014 -20251,3110:245,105,-14,0,0,0.577094 -20252,3110:246,106,-14,0,0,0.584124 -20253,3110:247,107,-14,0,0,0.587141 -20254,3110:248,108,-14,0,0,0.597684 -20255,3110:249,109,-14,0,0,0.598302 -20256,3111:140,110,-14,0,0,0.610559 -20257,3111:141,111,-14,0,0,0.607697 -20258,3111:142,112,-14,0,0,0.612219 -20259,3111:143,113,-14,0,0,0.620358 -20260,3111:144,114,-14,0,0,0.623715 -20261,3111:245,115,-14,0,0,0.632809 -20262,3111:246,116,-14,0,0,0.641597 -20263,3111:247,117,-14,0,0,0.647412 -20264,3111:248,118,-14,0,0,0.651715 -20265,3111:249,119,-14,0,0,0.657614 -20266,3112:140,120,-14,0,0,0.656341 -20267,3112:141,121,-14,0,0,0.667058 -20268,3112:142,122,-14,0,0,0.670653 -20269,3114:140,140,-14,0,0,0.714355 -20270,3114:141,141,-14,0,0,0.712569 -20271,3114:247,147,-14,0,0,0.635741 -20272,3114:248,148,-14,0,0,0.629101 -20273,3114:249,149,-14,0,0,0.617887 -20274,3115:140,150,-14,0,0,0.624053 -20275,3115:141,151,-14,0,0,0.622847 -20276,3115:142,152,-14,0,0,0.624149 -20277,3115:143,153,-14,0,0,0.617256 -20278,3115:144,154,-14,0,0,0.625185 -20279,3115:245,155,-14,0,0,0.623498 -20280,3115:246,156,-14,0,0,0.616576 -20281,3115:247,157,-14,0,0,0.615117 -20282,3115:248,158,-14,0,0,0.616964 -20283,3115:249,159,-14,0,0,0.61029 -20284,3116:140,160,-14,0,0,0.613316 -20285,3116:141,161,-14,0,0,0.609874 -20286,3116:142,162,-14,0,0,0.605883 -20287,3116:143,163,-14,0,0,0.605809 -20288,3116:144,164,-14,0,0,0.606275 -20289,3116:245,165,-14,0,0,0.605613 -20290,3116:246,166,-14,0,0,0.60826 -20291,3116:247,167,-14,0,0,0.604508 -20292,3116:248,168,-14,0,0,0.599066 -20293,3116:249,169,-14,0,0,0.595582 -20294,3117:140,170,-14,0,0,0.60025 -20295,3117:141,171,-14,0,0,0.598993 -20296,3117:142,172,-14,0,0,0.601483 -20297,3117:143,173,-14,0,0,0.603033 -20298,3117:144,174,-14,0,0,0.604999 -20299,3117:245,175,-14,0,0,0.605515 -20300,3117:246,176,-14,0,0,0.607182 -20301,3117:247,177,-14,0,0,0.60985 -20302,3117:248,178,-14,0,0,0.606422 -20303,3117:249,179,-14,0,0,0.593056 -20304,3118:140,180,-14,0,0,0.594493 -20305,5118:130,-180,-13,0,0,0.611536 -20306,5117:239,-179,-13,0,0,0.614192 -20307,5117:238,-178,-13,0,0,0.614582 -20308,5117:237,-177,-13,0,0,0.615117 -20309,5117:236,-176,-13,0,0,0.614777 -20310,5117:235,-175,-13,0,0,0.616892 -20311,5117:134,-174,-13,0,0,0.622702 -20312,5117:133,-173,-13,0,0,0.62622 -20313,5117:132,-172,-13,0,0,0.626052 -20314,5117:131,-171,-13,0,0,0.627278 -20315,5117:130,-170,-13,0,0,0.630418 -20316,5116:239,-169,-13,0,0,0.631639 -20317,5116:238,-168,-13,0,0,0.6297 -20318,5116:237,-167,-13,0,0,0.630825 -20319,5116:236,-166,-13,0,0,0.635217 -20320,5116:235,-165,-13,0,0,0.635979 -20321,5116:134,-164,-13,0,0,0.639634 -20322,5116:133,-163,-13,0,0,0.639752 -20323,5116:132,-162,-13,0,0,0.641952 -20324,5116:131,-161,-13,0,0,0.646426 -20325,5116:130,-160,-13,0,0,0.647412 -20326,5115:239,-159,-13,0,0,0.646073 -20327,5115:238,-158,-13,0,0,0.648817 -20328,5115:237,-157,-13,0,0,0.646144 -20329,5115:236,-156,-13,0,0,0.646966 -20330,5115:235,-155,-13,0,0,0.652764 -20331,5115:134,-154,-13,0,0,0.653531 -20332,5115:133,-153,-13,0,0,0.655367 -20333,5115:132,-152,-13,0,0,0.655413 -20334,5115:131,-151,-13,0,0,0.65699 -20335,5115:130,-150,-13,0,0,0.65884 -20336,5114:239,-149,-13,0,0,0.659024 -20337,5114:238,-148,-13,0,0,0.656943 -20338,5114:237,-147,-13,0,0,0.653508 -20339,5114:236,-146,-13,0,0,0.65253 -20340,5114:235,-145,-13,0,0,0.651575 -20341,5114:134,-144,-13,0,0,0.650945 -20342,5114:133,-143,-13,0,0,0.649379 -20343,5114:132,-142,-13,0,0,0.647904 -20344,5114:131,-141,-13,0,0,0.650104 -20345,5114:130,-140,-13,0,0,0.649285 -20346,5113:239,-139,-13,0,0,0.647786 -20347,5113:238,-138,-13,0,0,0.647575 -20348,5113:237,-137,-13,0,0,0.647013 -20349,5113:236,-136,-13,0,0,0.644804 -20350,5113:235,-135,-13,0,0,0.643273 -20351,5113:134,-134,-13,0,0,0.644686 -20352,5113:133,-133,-13,0,0,0.643037 -20353,5113:132,-132,-13,0,0,0.642282 -20354,5113:131,-131,-13,0,0,0.641881 -20355,5113:130,-130,-13,0,0,0.639729 -20356,5112:239,-129,-13,0,0,0.637286 -20357,5112:238,-128,-13,0,0,0.635859 -20358,5112:237,-127,-13,0,0,0.634813 -20359,5112:236,-126,-13,0,0,0.6314 -20360,5112:235,-125,-13,0,0,0.627205 -20361,5112:134,-124,-13,0,0,0.622364 -20362,5112:133,-123,-13,0,0,0.624222 -20363,5112:132,-122,-13,0,0,0.623378 -20364,5112:131,-121,-13,0,0,0.616867 -20365,5112:130,-120,-13,0,0,0.610901 -20366,5111:239,-119,-13,0,0,0.60603 -20367,5111:238,-118,-13,0,0,0.599609 -20368,5111:237,-117,-13,0,0,0.595607 -20369,5111:236,-116,-13,0,0,0.589132 -20370,5111:235,-115,-13,0,0,0.586618 -20371,5111:134,-114,-13,0,0,0.582351 -20372,5111:133,-113,-13,0,0,0.573479 -20373,5111:132,-112,-13,0,0,0.565848 -20374,5111:131,-111,-13,0,0,0.561147 -20375,5111:130,-110,-13,0,0,0.557703 -20376,5110:239,-109,-13,0,0,0.547568 -20377,5110:238,-108,-13,0,0,0.540126 -20378,5110:237,-107,-13,0,0,0.53397 -20379,5110:236,-106,-13,0,0,0.526933 -20380,5110:235,-105,-13,0,0,0.524832 -20381,5110:134,-104,-13,0,0,0.519423 -20382,5110:133,-103,-13,0,0,0.51057 -20383,5110:132,-102,-13,0,0,0.500143 -20384,5110:131,-101,-13,0,0,0.495083 -20385,5110:130,-100,-13,0,0,0.488175 -20386,5109:239,-99,-13,0,0,0.48058 -20387,5109:238,-98,-13,0,0,0.475376 -20388,5109:237,-97,-13,0,0,0.470458 -20389,5109:236,-96,-13,0,0,0.464397 -20390,5109:235,-95,-13,0,0,0.458295 -20391,5109:134,-94,-13,0,0,0.451747 -20392,5109:133,-93,-13,0,0,0.446029 -20393,5109:132,-92,-13,0,0,0.442553 -20394,5109:131,-91,-13,0,0,0.439691 -20395,5109:130,-90,-13,0,0,0.435569 -20396,5108:239,-89,-13,0,0,0.430348 -20397,5108:238,-88,-13,0,0,0.423386 -20398,5108:237,-87,-13,0,0,0.413709 -20399,5108:236,-86,-13,0,0,0.405882 -20400,5108:235,-85,-13,0,0,0.40353 -20401,5108:134,-84,-13,0,0,0.402467 -20402,5108:133,-83,-13,0,0,0.40222 -20403,5108:132,-82,-13,0,0,0.402566 -20404,5108:131,-81,-13,0,0,0.41209 -20405,5108:130,-80,-13,0,0,0.418427 -20406,5107:239,-79,-13,0,0,0.421731 -20407,5107:238,-78,-13,0,0,0.426951 -20408,5107:237,-77,-13,0,0,0.436226 -20409,5107:236,-76,-13,0,0,0.44154 -20410,5107:235,-75,-13,0,0,0.440628 -20411,5103:239,-39,-13,0,0,0.588709 -20412,5103:238,-38,-13,0,0,0.623812 -20413,5103:237,-37,-13,0,0,0.626075 -20414,5103:236,-36,-13,0,0,0.623498 -20415,5103:235,-35,-13,0,0,0.621083 -20416,5103:134,-34,-13,0,0,0.617499 -20417,5103:133,-33,-13,0,0,0.613754 -20418,5103:132,-32,-13,0,0,0.609141 -20419,5103:131,-31,-13,0,0,0.603942 -20420,5103:130,-30,-13,0,0,0.599338 -20421,5102:239,-29,-13,0,0,0.595384 -20422,5102:238,-28,-13,0,0,0.589878 -20423,5102:237,-27,-13,0,0,0.5837 -20424,5102:236,-26,-13,0,0,0.576618 -20425,5102:235,-25,-13,0,0,0.574459 -20426,5102:134,-24,-13,0,0,0.571291 -20427,5102:133,-23,-13,0,0,0.567815 -20428,5102:132,-22,-13,0,0,0.564307 -20429,5102:131,-21,-13,0,0,0.559882 -20430,5102:130,-20,-13,0,0,0.555243 -20431,5101:239,-19,-13,0,0,0.551053 -20432,5101:238,-18,-13,0,0,0.546575 -20433,5101:237,-17,-13,0,0,0.542575 -20434,5101:236,-16,-13,0,0,0.539233 -20435,5101:235,-15,-13,0,0,0.534891 -20436,5101:134,-14,-13,0,0,0.527035 -20437,5101:133,-13,-13,0,0,0.522705 -20438,5101:132,-12,-13,0,0,0.520449 -20439,5101:131,-11,-13,0,0,0.516499 -20440,5101:130,-10,-13,0,0,0.511057 -20441,5100:239,-9,-13,0,0,0.504458 -20442,5100:238,-8,-13,0,0,0.499038 -20443,5100:237,-7,-13,0,0,0.495596 -20444,5100:236,-6,-13,0,0,0.493798 -20445,5100:235,-5,-13,0,0,0.490589 -20446,5100:134,-4,-13,0,0,0.487713 -20447,5100:133,-3,-13,0,0,0.48684 -20448,5100:132,-2,-13,0,0,0.485686 -20449,5100:131,-1,-13,0,0,0.484197 -20450,3100:131,0,-13,0,0,0.482145 -20451,3100:131,1,-13,0,0,0.481606 -20452,3100:132,2,-13,0,0,0.484659 -20453,3100:133,3,-13,0,0,0.484659 -20454,3100:134,4,-13,0,0,0.484607 -20455,3100:235,5,-13,0,0,0.483992 -20456,3100:236,6,-13,0,0,0.485352 -20457,3100:237,7,-13,0,0,0.487611 -20458,3100:238,8,-13,0,0,0.499372 -20459,3100:239,9,-13,0,0,0.511982 -20460,3101:130,10,-13,0,0,0.538799 -20461,3101:131,11,-13,0,0,0.5185 -20462,3104:130,40,-13,0,0,0.665322 -20463,3104:131,41,-13,0,0,0.675672 -20464,3104:132,42,-13,0,0,0.681832 -20465,3104:133,43,-13,0,0,0.686252 -20466,3104:134,44,-13,0,0,0.695924 -20467,3105:130,50,-13,0,0,0.634932 -20468,3105:131,51,-13,0,0,0.63226 -20469,3105:132,52,-13,0,0,0.626316 -20470,3105:133,53,-13,0,0,0.621132 -20471,3105:134,54,-13,0,0,0.620431 -20472,3105:235,55,-13,0,0,0.622195 -20473,3105:236,56,-13,0,0,0.622267 -20474,3105:237,57,-13,0,0,0.624487 -20475,3105:238,58,-13,0,0,0.623619 -20476,3105:239,59,-13,0,0,0.620696 -20477,3106:130,60,-13,0,0,0.617717 -20478,3106:131,61,-13,0,0,0.613925 -20479,3106:132,62,-13,0,0,0.611974 -20480,3106:133,63,-13,0,0,0.610949 -20481,3106:134,64,-13,0,0,0.610217 -20482,3106:235,65,-13,0,0,0.609826 -20483,3106:236,66,-13,0,0,0.609361 -20484,3106:237,67,-13,0,0,0.60919 -20485,3106:238,68,-13,0,0,0.608113 -20486,3106:239,69,-13,0,0,0.606716 -20487,3107:130,70,-13,0,0,0.60657 -20489,3107:132,72,-13,0,0,0.608897 -20490,3107:134,74,-13,0,0,0.615142 -20491,3107:235,75,-13,0,0,0.615531 -20492,3107:236,76,-13,0,0,0.614047 -20493,3107:237,77,-13,0,0,0.613876 -20494,3107:238,78,-13,0,0,0.614606 -20495,3107:239,79,-13,0,0,0.612731 -20496,3108:130,80,-13,0,0,0.614801 -20497,3108:131,81,-13,0,0,0.61334 -20498,3108:132,82,-13,0,0,0.610217 -20499,3108:133,83,-13,0,0,0.60522 -20500,3108:134,84,-13,0,0,0.608015 -20501,3108:235,85,-13,0,0,0.599066 -20502,3108:236,86,-13,0,0,0.599289 -20503,3108:237,87,-13,0,0,0.597832 -20504,3108:238,88,-13,0,0,0.595013 -20505,3108:239,89,-13,0,0,0.598968 -20506,3109:130,90,-13,0,0,0.593625 -20507,3109:131,91,-13,0,0,0.593378 -20508,3109:132,92,-13,0,0,0.590276 -20509,3109:133,93,-13,0,0,0.588784 -20510,3109:134,94,-13,0,0,0.578097 -20511,3109:235,95,-13,0,0,0.58315 -20512,3109:236,96,-13,0,0,0.582526 -20513,3109:237,97,-13,0,0,0.580701 -20514,3109:238,98,-13,0,0,0.584947 -20515,3109:239,99,-13,0,0,0.579149 -20516,3110:130,100,-13,0,0,0.582201 -20517,3110:131,101,-13,0,0,0.589405 -20518,3110:132,102,-13,0,0,0.591964 -20519,3110:133,103,-13,0,0,0.589803 -20520,3110:134,104,-13,0,0,0.594617 -20521,3110:235,105,-13,0,0,0.594444 -20522,3110:236,106,-13,0,0,0.592287 -20523,3110:237,107,-13,0,0,0.599437 -20524,3110:238,108,-13,0,0,0.616139 -20525,3110:239,109,-13,0,0,0.612926 -20526,3111:130,110,-13,0,0,0.617741 -20527,3111:131,111,-13,0,0,0.620019 -20528,3111:132,112,-13,0,0,0.627614 -20529,3111:133,113,-13,0,0,0.632977 -20530,3111:134,114,-13,0,0,0.642872 -20531,3111:235,115,-13,0,0,0.646191 -20532,3111:236,116,-13,0,0,0.643956 -20533,3111:237,117,-13,0,0,0.653392 -20534,3111:238,118,-13,0,0,0.663007 -20535,3111:239,119,-13,0,0,0.668153 -20536,3112:130,120,-13,0,0,0.666716 -20537,3112:131,121,-13,0,0,0.676392 -20538,3112:132,122,-13,0,0,0.678301 -20539,3112:133,123,-13,0,0,0.682167 -20540,3112:134,124,-13,0,0,0.707471 -20541,3113:238,138,-13,0,0,0.714355 -20542,3113:239,139,-13,0,0,0.712927 -20543,3114:130,140,-13,0,0,0.709339 -20544,3114:131,141,-13,0,0,0.702063 -20545,3114:236,146,-13,0,0,0.641172 -20546,3114:237,147,-13,0,0,0.635859 -20547,3114:238,148,-13,0,0,0.635074 -20548,3114:239,149,-13,0,0,0.636383 -20549,3115:130,150,-13,0,0,0.633191 -20550,3115:131,151,-13,0,0,0.631089 -20551,3115:132,152,-13,0,0,0.635955 -20552,3115:133,153,-13,0,0,0.633478 -20553,3115:134,154,-13,0,0,0.633788 -20554,3115:235,155,-13,0,0,0.631209 -20555,3115:236,156,-13,0,0,0.630395 -20556,3115:237,157,-13,0,0,0.629077 -20557,3115:238,158,-13,0,0,0.628478 -20558,3115:239,159,-13,0,0,0.622654 -20559,3116:130,160,-13,0,0,0.620334 -20560,3116:131,161,-13,0,0,0.619608 -20561,3116:132,162,-13,0,0,0.619365 -20562,3116:133,163,-13,0,0,0.618905 -20563,3116:134,164,-13,0,0,0.612341 -20564,3116:235,165,-13,0,0,0.617377 -20565,3116:236,166,-13,0,0,0.618953 -20566,3116:237,167,-13,0,0,0.612316 -20567,3116:238,168,-13,0,0,0.613876 -20568,3116:239,169,-13,0,0,0.618008 -20569,3117:130,170,-13,0,0,0.621446 -20570,3117:131,171,-13,0,0,0.621712 -20571,3117:132,172,-13,0,0,0.621906 -20572,3117:133,173,-13,0,0,0.621446 -20573,3117:134,174,-13,0,0,0.621397 -20574,3117:235,175,-13,0,0,0.621978 -20575,3117:236,176,-13,0,0,0.621808 -20576,3117:237,177,-13,0,0,0.620552 -20577,3117:238,178,-13,0,0,0.617474 -20578,3117:239,179,-13,0,0,0.615895 -20579,3118:130,180,-13,0,0,0.611536 -20580,5118:120,-180,-12,0,0,0.630227 -20581,5117:229,-179,-12,0,0,0.630371 -20582,5117:228,-178,-12,0,0,0.631973 -20583,5117:227,-177,-12,0,0,0.63505 -20584,5117:226,-176,-12,0,0,0.638093 -20585,5117:225,-175,-12,0,0,0.641597 -20586,5117:124,-174,-12,0,0,0.646261 -20587,5117:123,-173,-12,0,0,0.649122 -20588,5117:122,-172,-12,0,0,0.647412 -20589,5117:121,-171,-12,0,0,0.647599 -20590,5117:120,-170,-12,0,0,0.647669 -20591,5116:229,-169,-12,0,0,0.648771 -20592,5116:228,-168,-12,0,0,0.649589 -20593,5116:227,-167,-12,0,0,0.651248 -20594,5116:226,-166,-12,0,0,0.652624 -20595,5116:225,-165,-12,0,0,0.653043 -21246,5108:101,-81,-10,0,0,0.48117 -20596,5116:124,-164,-12,0,0,0.653834 -20597,5116:123,-163,-12,0,0,0.656943 -20598,5116:122,-162,-12,0,0,0.659901 -20599,5116:121,-161,-12,0,0,0.661214 -20600,5116:120,-160,-12,0,0,0.662571 -20601,5115:229,-159,-12,0,0,0.662663 -20602,5115:228,-158,-12,0,0,0.661882 -20603,5115:227,-157,-12,0,0,0.662456 -20604,5115:226,-156,-12,0,0,0.663489 -20605,5115:225,-155,-12,0,0,0.665047 -20606,5115:124,-154,-12,0,0,0.665161 -20607,5115:123,-153,-12,0,0,0.664177 -20608,5115:122,-152,-12,0,0,0.664314 -20609,5115:121,-151,-12,0,0,0.663718 -20610,5115:120,-150,-12,0,0,0.663191 -20611,5114:229,-149,-12,0,0,0.663282 -20612,5114:228,-148,-12,0,0,0.661789 -20613,5114:227,-147,-12,0,0,0.660178 -20614,5114:226,-146,-12,0,0,0.658308 -20615,5114:225,-145,-12,0,0,0.657013 -20616,5114:124,-144,-12,0,0,0.658285 -20617,5114:123,-143,-12,0,0,0.659324 -20618,5114:122,-142,-12,0,0,0.659532 -20619,5114:121,-141,-12,0,0,0.658447 -20620,5114:120,-140,-12,0,0,0.657684 -20621,5113:229,-139,-12,0,0,0.657453 -20622,5113:228,-138,-12,0,0,0.656272 -20623,5113:227,-137,-12,0,0,0.654392 -20624,5113:226,-136,-12,0,0,0.653438 -20625,5113:225,-135,-12,0,0,0.652414 -20626,5113:124,-134,-12,0,0,0.652368 -20627,5113:123,-133,-12,0,0,0.650314 -20628,5113:122,-132,-12,0,0,0.646708 -20629,5113:121,-131,-12,0,0,0.64471 -20630,5113:120,-130,-12,0,0,0.643131 -20631,5112:229,-129,-12,0,0,0.640959 -20632,5112:228,-128,-12,0,0,0.637975 -20633,5112:227,-127,-12,0,0,0.634979 -20634,5112:226,-126,-12,0,0,0.631519 -20635,5112:225,-125,-12,0,0,0.628694 -20636,5112:124,-124,-12,0,0,0.622847 -20637,5112:123,-123,-12,0,0,0.620019 -20638,5112:122,-122,-12,0,0,0.616624 -20639,5112:121,-121,-12,0,0,0.612146 -20640,5112:120,-120,-12,0,0,0.605196 -20641,5111:229,-119,-12,0,0,0.600719 -20642,5111:228,-118,-12,0,0,0.595434 -20643,5111:227,-117,-12,0,0,0.592485 -20644,5111:226,-116,-12,0,0,0.588385 -20645,5111:225,-115,-12,0,0,0.581776 -20646,5111:124,-114,-12,0,0,0.574283 -20647,5111:123,-113,-12,0,0,0.570889 -20648,5111:122,-112,-12,0,0,0.567412 -20649,5111:121,-111,-12,0,0,0.558311 -20650,5111:120,-110,-12,0,0,0.554102 -20651,5110:229,-109,-12,0,0,0.549274 -20652,5110:228,-108,-12,0,0,0.543799 -20653,5110:227,-107,-12,0,0,0.535325 -20654,5110:226,-106,-12,0,0,0.526241 -20655,5110:225,-105,-12,0,0,0.520449 -20656,5110:124,-104,-12,0,0,0.515857 -20657,5110:123,-103,-12,0,0,0.507591 -20658,5110:122,-102,-12,0,0,0.500656 -20659,5110:121,-101,-12,0,0,0.495776 -20660,5110:120,-100,-12,0,0,0.492592 -20661,5109:229,-99,-12,0,0,0.486353 -20662,5109:228,-98,-12,0,0,0.479016 -20663,5109:227,-97,-12,0,0,0.472379 -20664,5109:226,-96,-12,0,0,0.466084 -20665,5109:225,-95,-12,0,0,0.459392 -20666,5109:124,-94,-12,0,0,0.45493 -20667,5109:123,-93,-12,0,0,0.448721 -20668,5109:122,-92,-12,0,0,0.44344 -20669,5109:121,-91,-12,0,0,0.437085 -20670,5109:120,-90,-12,0,0,0.434079 -20671,5108:229,-89,-12,0,0,0.427328 -20672,5108:228,-88,-12,0,0,0.421956 -20673,5108:227,-87,-12,0,0,0.418477 -20674,5108:226,-86,-12,0,0,0.414557 -20675,5108:225,-85,-12,0,0,0.413261 -20676,5108:124,-84,-12,0,0,0.414482 -20677,5108:123,-83,-12,0,0,0.420403 -20678,5108:122,-82,-12,0,0,0.423736 -20679,5108:121,-81,-12,0,0,0.42997 -20680,5108:120,-80,-12,0,0,0.439615 -20681,5107:229,-79,-12,0,0,0.445039 -20682,5107:228,-78,-12,0,0,0.458014 -20683,5107:227,-77,-12,0,0,0.45073 -20684,5107:226,-76,-12,0,0,0.396158 -20685,5103:229,-39,-12,0,0,0.62205 -20686,5103:228,-38,-12,0,0,0.627806 -20687,5103:227,-37,-12,0,0,0.627541 -20688,5103:226,-36,-12,0,0,0.626532 -20689,5103:225,-35,-12,0,0,0.622895 -20690,5103:124,-34,-12,0,0,0.620043 -20691,5103:123,-33,-12,0,0,0.615847 -20692,5103:122,-32,-12,0,0,0.611511 -20693,5103:121,-31,-12,0,0,0.605809 -20694,5103:120,-30,-12,0,0,0.599091 -20695,5102:229,-29,-12,0,0,0.592758 -20696,5102:228,-28,-12,0,0,0.588261 -20697,5102:227,-27,-12,0,0,0.586743 -20698,5102:226,-26,-12,0,0,0.58025 -20699,5102:225,-25,-12,0,0,0.57584 -20700,5102:124,-24,-12,0,0,0.570838 -20701,5102:123,-23,-12,0,0,0.567563 -20702,5102:122,-22,-12,0,0,0.563499 -20703,5102:121,-21,-12,0,0,0.558995 -20704,5102:120,-20,-12,0,0,0.554888 -20705,5101:229,-19,-12,0,0,0.550341 -20706,5101:228,-18,-12,0,0,0.547441 -20707,5101:227,-17,-12,0,0,0.543263 -20708,5101:226,-16,-12,0,0,0.538007 -20709,5101:225,-15,-12,0,0,0.533766 -20710,5101:124,-14,-12,0,0,0.530286 -20711,5101:123,-13,-12,0,0,0.525729 -20712,5101:122,-12,-12,0,0,0.521295 -20713,5101:121,-11,-12,0,0,0.516448 -20714,5101:120,-10,-12,0,0,0.512058 -20715,5100:229,-9,-12,0,0,0.506872 -20716,5100:228,-8,-12,0,0,0.501324 -20717,5100:227,-7,-12,0,0,0.494647 -20718,5100:226,-6,-12,0,0,0.48969 -20719,5100:225,-5,-12,0,0,0.488945 -20720,5100:124,-4,-12,0,0,0.488869 -20721,5100:123,-3,-12,0,0,0.490486 -20722,5100:122,-2,-12,0,0,0.491976 -20723,5100:121,-1,-12,0,0,0.493619 -20724,3100:121,0,-12,0,0,0.494313 -20725,3100:121,1,-12,0,0,0.49647 -20726,3100:122,2,-12,0,0,0.493876 -20727,3100:123,3,-12,0,0,0.492104 -20728,3100:124,4,-12,0,0,0.493619 -20729,3100:225,5,-12,0,0,0.498113 -20730,3100:226,6,-12,0,0,0.504201 -20731,3100:227,7,-12,0,0,0.509619 -20732,3100:228,8,-12,0,0,0.513522 -20733,3100:229,9,-12,0,0,0.528674 -20734,3101:120,10,-12,0,0,0.557297 -20735,3101:121,11,-12,0,0,0.559249 -20736,3101:122,12,-12,0,0,0.488561 -20737,3104:121,41,-12,0,0,0.677874 -20738,3104:122,42,-12,0,0,0.684101 -20739,3104:123,43,-12,0,0,0.684701 -20740,3104:124,44,-12,0,0,0.682567 -20741,3104:225,45,-12,0,0,0.68123 -20742,3104:226,46,-12,0,0,0.683413 -20743,3104:227,47,-12,0,0,0.690922 -20744,3105:120,50,-12,0,0,0.636383 -20745,3105:121,51,-12,0,0,0.63343 -20746,3105:122,52,-12,0,0,0.633597 -20747,3105:123,53,-12,0,0,0.631639 -20748,3105:124,54,-12,0,0,0.632571 -20749,3105:225,55,-12,0,0,0.63331 -20750,3105:226,56,-12,0,0,0.633096 -20751,3105:227,57,-12,0,0,0.632547 -20752,3105:228,58,-12,0,0,0.631615 -20753,3105:229,59,-12,0,0,0.629653 -20754,3106:120,60,-12,0,0,0.624583 -20755,3106:121,61,-12,0,0,0.62333 -20756,3106:122,62,-12,0,0,0.624921 -20757,3106:123,63,-12,0,0,0.620745 -20758,3106:124,64,-12,0,0,0.620745 -20759,3106:225,65,-12,0,0,0.619777 -20760,3106:226,66,-12,0,0,0.621011 -20761,3106:227,67,-12,0,0,0.623305 -20762,3106:228,68,-12,0,0,0.623426 -20763,3106:229,69,-12,0,0,0.62147 -20764,3107:120,70,-12,0,0,0.619971 -20765,3107:121,71,-12,0,0,0.619075 -20766,3107:122,72,-12,0,0,0.618566 -20767,3107:124,74,-12,0,0,0.626845 -20768,3107:225,75,-12,0,0,0.634121 -20769,3107:226,76,-12,0,0,0.635764 -20770,3107:227,77,-12,0,0,0.63517 -20771,3107:228,78,-12,0,0,0.632451 -20772,3107:229,79,-12,0,0,0.628934 -20773,3108:120,80,-12,0,0,0.62795 -20774,3108:121,81,-12,0,0,0.625233 -20775,3108:122,82,-12,0,0,0.620914 -20776,3108:123,83,-12,0,0,0.618783 -20777,3108:124,84,-12,0,0,0.616818 -20778,3108:225,85,-12,0,0,0.613973 -20779,3108:226,86,-12,0,0,0.610852 -20780,3108:227,87,-12,0,0,0.607084 -20781,3108:228,88,-12,0,0,0.604361 -20782,3108:229,89,-12,0,0,0.604361 -20783,3109:120,90,-12,0,0,0.60468 -20784,3109:121,91,-12,0,0,0.605613 -20785,3109:122,92,-12,0,0,0.605588 -20786,3109:123,93,-12,0,0,0.604188 -20787,3109:124,94,-12,0,0,0.603156 -20788,3109:225,95,-12,0,0,0.601877 -20789,3109:226,96,-12,0,0,0.59479 -20790,3109:227,97,-12,0,0,0.592708 -20791,3109:228,98,-12,0,0,0.593006 -20792,3109:229,99,-12,0,0,0.601803 -20793,3110:120,100,-12,0,0,0.609948 -20794,3110:121,101,-12,0,0,0.617741 -20795,3110:122,102,-12,0,0,0.627374 -20796,3110:123,103,-12,0,0,0.63312 -20797,3110:124,104,-12,0,0,0.631089 -20798,3110:225,105,-12,0,0,0.619438 -20799,3110:226,106,-12,0,0,0.616211 -20800,3110:227,107,-12,0,0,0.620503 -20801,3110:228,108,-12,0,0,0.628861 -20802,3110:229,109,-12,0,0,0.637951 -20803,3111:120,110,-12,0,0,0.63788 -20804,3111:121,111,-12,0,0,0.638425 -20805,3111:122,112,-12,0,0,0.650151 -20806,3111:123,113,-12,0,0,0.662755 -20807,3111:124,114,-12,0,0,0.671651 -20808,3111:225,115,-12,0,0,0.670109 -20809,3111:226,116,-12,0,0,0.663374 -20810,3111:227,117,-12,0,0,0.665116 -20811,3111:228,118,-12,0,0,0.67113 -21247,5108:100,-80,-10,0,0,0.4843 -20812,3111:229,119,-12,0,0,0.678345 -20813,3112:120,120,-12,0,0,0.674613 -20814,3112:121,121,-12,0,0,0.677067 -20815,3112:122,122,-12,0,0,0.680561 -20816,3112:123,123,-12,0,0,0.686295 -20817,3112:124,124,-12,0,0,0.690022 -20818,3112:225,125,-12,0,0,0.702557 -20819,3112:229,129,-12,0,0,0.714355 -20820,3113:226,136,-12,0,0,0.714355 -20821,3113:227,137,-12,0,0,0.714355 -20822,3113:228,138,-12,0,0,0.702536 -20823,3113:229,139,-12,0,0,0.693876 -20824,3114:120,140,-12,0,0,0.69123 -20825,3114:121,141,-12,0,0,0.692631 -20826,3114:226,146,-12,0,0,0.639255 -20827,3114:227,147,-12,0,0,0.640013 -20828,3114:228,148,-12,0,0,0.642896 -20829,3114:229,149,-12,0,0,0.642848 -20830,3115:120,150,-12,0,0,0.645251 -20831,3115:121,151,-12,0,0,0.644639 -20832,3115:122,152,-12,0,0,0.643886 -20833,3115:123,153,-12,0,0,0.646379 -20834,3115:124,154,-12,0,0,0.647107 -20835,3115:225,155,-12,0,0,0.646073 -20836,3115:226,156,-12,0,0,0.643108 -20837,3115:227,157,-12,0,0,0.639208 -20838,3115:228,158,-12,0,0,0.635646 -20839,3115:229,159,-12,0,0,0.634384 -20840,3116:120,160,-12,0,0,0.633168 -20841,3116:121,161,-12,0,0,0.631878 -20842,3116:122,162,-12,0,0,0.631136 -20843,3116:123,163,-12,0,0,0.630945 -20844,3116:124,164,-12,0,0,0.632045 -20845,3116:225,165,-12,0,0,0.632762 -20846,3116:226,166,-12,0,0,0.631711 -20847,3116:227,167,-12,0,0,0.62333 -20848,3116:228,168,-12,0,0,0.629484 -20849,3116:229,169,-12,0,0,0.634384 -20850,3117:120,170,-12,0,0,0.636265 -20851,3117:121,171,-12,0,0,0.637309 -20852,3117:122,172,-12,0,0,0.635622 -20853,3117:123,173,-12,0,0,0.635622 -20854,3117:124,174,-12,0,0,0.63343 -20855,3117:225,175,-12,0,0,0.631782 -20856,3117:226,176,-12,0,0,0.630706 -20857,3117:227,177,-12,0,0,0.630418 -20858,3117:228,178,-12,0,0,0.631471 -20859,3117:229,179,-12,0,0,0.630802 -20860,3118:120,180,-12,0,0,0.630227 -20861,5118:110,-180,-11,0,0,0.645345 -20862,5117:219,-179,-11,0,0,0.646966 -20863,5117:218,-178,-11,0,0,0.649052 -20864,5117:217,-177,-11,0,0,0.652204 -20865,5117:216,-176,-11,0,0,0.655413 -20866,5117:215,-175,-11,0,0,0.659716 -20867,5117:114,-174,-11,0,0,0.662984 -20868,5117:113,-173,-11,0,0,0.662226 -20869,5117:112,-172,-11,0,0,0.658007 -20870,5117:111,-171,-11,0,0,0.659255 -20871,5117:110,-170,-11,0,0,0.660063 -20872,5116:219,-169,-11,0,0,0.66172 -20873,5116:218,-168,-11,0,0,0.663443 -20874,5116:217,-167,-11,0,0,0.665161 -20875,5116:216,-166,-11,0,0,0.665779 -20876,5116:215,-165,-11,0,0,0.666716 -20877,5116:114,-164,-11,0,0,0.667583 -20878,5116:113,-163,-11,0,0,0.669131 -20879,5116:112,-162,-11,0,0,0.668882 -20880,5116:111,-161,-11,0,0,0.669904 -20881,5116:110,-160,-11,0,0,0.669381 -20882,5115:219,-159,-11,0,0,0.669927 -20883,5115:218,-158,-11,0,0,0.670767 -20884,5115:217,-157,-11,0,0,0.671832 -20885,5115:216,-156,-11,0,0,0.672014 -20886,5115:215,-155,-11,0,0,0.67113 -20887,5115:114,-154,-11,0,0,0.669472 -20888,5115:113,-153,-11,0,0,0.668722 -20889,5115:112,-152,-11,0,0,0.668745 -20890,5115:111,-151,-11,0,0,0.668586 -20891,5115:110,-150,-11,0,0,0.667583 -20892,5114:219,-149,-11,0,0,0.666761 -20893,5114:218,-148,-11,0,0,0.666191 -20894,5114:217,-147,-11,0,0,0.664131 -20895,5114:216,-146,-11,0,0,0.662019 -20896,5114:215,-145,-11,0,0,0.660523 -20897,5114:114,-144,-11,0,0,0.659671 -20898,5114:113,-143,-11,0,0,0.658932 -20899,5114:112,-142,-11,0,0,0.658424 -20900,5114:111,-141,-11,0,0,0.658516 -20901,5114:110,-140,-11,0,0,0.657198 -20902,5113:219,-139,-11,0,0,0.656735 -20903,5113:218,-138,-11,0,0,0.655112 -20904,5113:217,-137,-11,0,0,0.653927 -20905,5113:216,-136,-11,0,0,0.651201 -20906,5113:215,-135,-11,0,0,0.650407 -20907,5113:114,-134,-11,0,0,0.647575 -20908,5113:113,-133,-11,0,0,0.64605 -20909,5113:112,-132,-11,0,0,0.644969 -20910,5113:111,-131,-11,0,0,0.641786 -20911,5113:110,-130,-11,0,0,0.638852 -20912,5112:219,-129,-11,0,0,0.633835 -20913,5112:218,-128,-11,0,0,0.630203 -20914,5112:217,-127,-11,0,0,0.628526 -20915,5112:216,-126,-11,0,0,0.623378 -20916,5112:215,-125,-11,0,0,0.621422 -20917,5112:114,-124,-11,0,0,0.618783 -20918,5112:113,-123,-11,0,0,0.614972 -20919,5112:112,-122,-11,0,0,0.61134 -20920,5112:111,-121,-11,0,0,0.608652 -20921,5112:110,-120,-11,0,0,0.605122 -20922,5111:219,-119,-11,0,0,0.601113 -20923,5111:218,-118,-11,0,0,0.595211 -20924,5111:217,-117,-11,0,0,0.588585 -20925,5111:216,-116,-11,0,0,0.582126 -20926,5111:215,-115,-11,0,0,0.57476 -20927,5111:114,-114,-11,0,0,0.567992 -20928,5111:113,-113,-11,0,0,0.562943 -20929,5111:112,-112,-11,0,0,0.557273 -20930,5111:111,-111,-11,0,0,0.554812 -20931,5111:110,-110,-11,0,0,0.550393 -20932,5110:219,-109,-11,0,0,0.544564 -20933,5110:218,-108,-11,0,0,0.535171 -20934,5110:217,-107,-11,0,0,0.527112 -20935,5110:216,-106,-11,0,0,0.522167 -20936,5110:215,-105,-11,0,0,0.515755 -20937,5110:114,-104,-11,0,0,0.511109 -20938,5110:113,-103,-11,0,0,0.505793 -20939,5110:112,-102,-11,0,0,0.498679 -20940,5110:111,-101,-11,0,0,0.492027 -20941,5110:110,-100,-11,0,0,0.483684 -20942,5109:219,-99,-11,0,0,0.477862 -20943,5109:218,-98,-11,0,0,0.474966 -20944,5109:217,-97,-11,0,0,0.46813 -20945,5109:216,-96,-11,0,0,0.46409 -20946,5109:215,-95,-11,0,0,0.460489 -20947,5109:114,-94,-11,0,0,0.455899 -20948,5109:113,-93,-11,0,0,0.4519 -20949,5109:112,-92,-11,0,0,0.4441 -20950,5109:111,-91,-11,0,0,0.441919 -20951,5109:110,-90,-11,0,0,0.439995 -20952,5108:219,-89,-11,0,0,0.430046 -20953,5108:218,-88,-11,0,0,0.431154 -20954,5108:217,-87,-11,0,0,0.431885 -20955,5108:216,-86,-11,0,0,0.431582 -20956,5108:215,-85,-11,0,0,0.437768 -20957,5108:114,-84,-11,0,0,0.4404 -20958,5108:113,-83,-11,0,0,0.447501 -20959,5108:112,-82,-11,0,0,0.451696 -20960,5108:111,-81,-11,0,0,0.455923 -20961,5108:110,-80,-11,0,0,0.461076 -20962,5107:219,-79,-11,0,0,0.472302 -20963,5107:218,-78,-11,0,0,0.465778 -20964,5107:217,-77,-11,0,0,0.439185 -20965,5103:219,-39,-11,0,0,0.620914 -20966,5103:218,-38,-11,0,0,0.631615 -20967,5103:217,-37,-11,0,0,0.625907 -20968,5103:216,-36,-11,0,0,0.624318 -20969,5103:215,-35,-11,0,0,0.622944 -20970,5103:114,-34,-11,0,0,0.618517 -20971,5103:113,-33,-11,0,0,0.616211 -20972,5103:112,-32,-11,0,0,0.61256 -20973,5103:111,-31,-11,0,0,0.608358 -20974,5103:110,-30,-11,0,0,0.605417 -20975,5102:219,-29,-11,0,0,0.601606 -20976,5102:218,-28,-11,0,0,0.596275 -20977,5102:217,-27,-11,0,0,0.594344 -20978,5102:216,-26,-11,0,0,0.587141 -20979,5102:215,-25,-11,0,0,0.581851 -20980,5102:114,-24,-11,0,0,0.581576 -20981,5102:113,-23,-11,0,0,0.576316 -20982,5102:112,-22,-11,0,0,0.573605 -20983,5102:111,-21,-11,0,0,0.570511 -20984,5102:110,-20,-11,0,0,0.56663 -20985,5101:219,-19,-11,0,0,0.562538 -20986,5101:218,-18,-11,0,0,0.556664 -20987,5101:217,-17,-11,0,0,0.551435 -20988,5101:216,-16,-11,0,0,0.543646 -20989,5101:215,-15,-11,0,0,0.539182 -20990,5101:114,-14,-11,0,0,0.532333 -20991,5101:113,-13,-11,0,0,0.528136 -20992,5101:112,-12,-11,0,0,0.523448 -20993,5101:111,-11,-11,0,0,0.519269 -20994,5101:110,-10,-11,0,0,0.515062 -20995,5100:219,-9,-11,0,0,0.51116 -20996,5100:218,-8,-11,0,0,0.507283 -20997,5100:217,-7,-11,0,0,0.504253 -20998,5100:216,-6,-11,0,0,0.506101 -20999,5100:215,-5,-11,0,0,0.504869 -21000,5100:114,-4,-11,0,0,0.503045 -21001,5100:113,-3,-11,0,0,0.504663 -21002,5100:112,-2,-11,0,0,0.504715 -21003,5100:111,-1,-11,0,0,0.507129 -21004,3100:111,0,-11,0,0,0.505614 -21005,3100:111,1,-11,0,0,0.504971 -21006,3100:112,2,-11,0,0,0.502249 -21007,3100:113,3,-11,0,0,0.502223 -21008,3100:114,4,-11,0,0,0.506153 -21009,3100:215,5,-11,0,0,0.512136 -21010,3100:216,6,-11,0,0,0.522372 -21011,3100:217,7,-11,0,0,0.527599 -21012,3100:218,8,-11,0,0,0.536934 -21013,3100:219,9,-11,0,0,0.55973 -21014,3101:110,10,-11,0,0,0.578072 -21015,3101:111,11,-11,0,0,0.57358 -21016,3101:112,12,-11,0,0,0.543187 -21017,3104:111,41,-11,0,0,0.673574 -21018,3104:112,42,-11,0,0,0.673371 -21019,3104:113,43,-11,0,0,0.671153 -21020,3104:114,44,-11,0,0,0.674793 -21021,3104:215,45,-11,0,0,0.67774 -21022,3104:216,46,-11,0,0,0.664062 -21023,3104:217,47,-11,0,0,0.656295 -21024,3104:218,48,-11,0,0,0.658771 -21025,3105:110,50,-11,0,0,0.63769 -21026,3105:111,51,-11,0,0,0.638473 -21027,3105:112,52,-11,0,0,0.639776 -21028,3105:113,53,-11,0,0,0.638307 -21029,3105:114,54,-11,0,0,0.641432 -21030,3105:215,55,-11,0,0,0.644545 -21031,3105:216,56,-11,0,0,0.645815 -21032,3105:217,57,-11,0,0,0.644828 -21033,3105:218,58,-11,0,0,0.642565 -21034,3105:219,59,-11,0,0,0.639918 -21035,3106:110,60,-11,0,0,0.636574 -21036,3106:111,61,-11,0,0,0.636431 -21037,3106:112,62,-11,0,0,0.632881 -21038,3106:113,63,-11,0,0,0.629772 -21039,3106:114,64,-11,0,0,0.630778 -21040,3106:215,65,-11,0,0,0.632236 -21041,3106:216,66,-11,0,0,0.635027 -21042,3106:217,67,-11,0,0,0.63833 -21043,3106:218,68,-11,0,0,0.640391 -21044,3106:219,69,-11,0,0,0.641337 -21045,3107:110,70,-11,0,0,0.640107 -21046,3107:111,71,-11,0,0,0.638069 -21047,3107:112,72,-11,0,0,0.638662 -21048,3107:114,74,-11,0,0,0.642329 -21049,3107:215,75,-11,0,0,0.643932 -21050,3107:216,76,-11,0,0,0.64431 -21051,3107:217,77,-11,0,0,0.643202 -21052,3107:218,78,-11,0,0,0.640935 -21053,3107:219,79,-11,0,0,0.637856 -21054,3108:110,80,-11,0,0,0.633406 -21055,3108:111,81,-11,0,0,0.629221 -21056,3108:112,82,-11,0,0,0.625402 -21057,3108:113,83,-11,0,0,0.621881 -21058,3108:114,84,-11,0,0,0.61842 -21059,3108:215,85,-11,0,0,0.61592 -21060,3108:216,86,-11,0,0,0.613559 -21061,3108:217,87,-11,0,0,0.612609 -21062,3108:218,88,-11,0,0,0.612341 -21063,3108:219,89,-11,0,0,0.612755 -21064,3109:110,90,-11,0,0,0.614461 -21065,3109:111,91,-11,0,0,0.617134 -21066,3109:112,92,-11,0,0,0.617547 -21067,3109:113,93,-11,0,0,0.614339 -21068,3109:114,94,-11,0,0,0.610705 -21069,3109:215,95,-11,0,0,0.60777 -21070,3109:216,96,-11,0,0,0.606594 -21071,3109:217,97,-11,0,0,0.606986 -21072,3109:218,98,-11,0,0,0.605441 -21073,3109:219,99,-11,0,0,0.608554 -21074,3110:110,100,-11,0,0,0.614728 -21075,3110:111,101,-11,0,0,0.62557 -21076,3110:112,102,-11,0,0,0.629581 -21077,3110:113,103,-11,0,0,0.633168 -21078,3110:114,104,-11,0,0,0.636526 -21079,3110:215,105,-11,0,0,0.630203 -21080,3110:216,106,-11,0,0,0.627037 -21081,3110:217,107,-11,0,0,0.637286 -21082,3110:218,108,-11,0,0,0.647482 -21083,3110:219,109,-11,0,0,0.657407 -21084,3111:110,110,-11,0,0,0.659209 -21085,3111:111,111,-11,0,0,0.663145 -21086,3111:112,112,-11,0,0,0.668062 -21087,3111:113,113,-11,0,0,0.673168 -21088,3111:114,114,-11,0,0,0.677336 -21089,3111:215,115,-11,0,0,0.678166 -21090,3111:216,116,-11,0,0,0.67792 -21091,3111:217,117,-11,0,0,0.679532 -21092,3111:218,118,-11,0,0,0.680159 -21093,3111:219,119,-11,0,0,0.680382 -21094,3112:110,120,-11,0,0,0.679644 -21095,3112:111,121,-11,0,0,0.681632 -21096,3112:112,122,-11,0,0,0.681609 -21097,3112:113,123,-11,0,0,0.683991 -21098,3112:114,124,-11,0,0,0.691054 -21099,3112:215,125,-11,0,0,0.697292 -21100,3112:216,126,-11,0,0,0.699024 -21101,3112:217,127,-11,0,0,0.698029 -21102,3112:218,128,-11,0,0,0.69924 -21103,3112:219,129,-11,0,0,0.703244 -21104,3113:110,130,-11,0,0,0.714355 -21105,3113:217,137,-11,0,0,0.70485 -21106,3113:218,138,-11,0,0,0.683835 -21107,3113:219,139,-11,0,0,0.677224 -21108,3114:110,140,-11,0,0,0.682813 -21109,3114:111,141,-11,0,0,0.68718 -21110,3114:114,144,-11,0,0,0.664108 -21111,3114:215,145,-11,0,0,0.641904 -21112,3114:216,146,-11,0,0,0.642612 -21113,3114:217,147,-11,0,0,0.643603 -21114,3114:218,148,-11,0,0,0.648607 -21115,3114:219,149,-11,0,0,0.652787 -21116,3115:110,150,-11,0,0,0.653624 -21117,3115:111,151,-11,0,0,0.656619 -21118,3115:112,152,-11,0,0,0.655321 -21119,3115:113,153,-11,0,0,0.657638 -21120,3115:114,154,-11,0,0,0.659855 -21121,3115:215,155,-11,0,0,0.660478 -21122,3115:216,156,-11,0,0,0.658308 -21123,3115:217,157,-11,0,0,0.654183 -21124,3115:218,158,-11,0,0,0.651458 -21125,3115:219,159,-11,0,0,0.649379 -21126,3116:110,160,-11,0,0,0.646872 -21127,3116:111,161,-11,0,0,0.645134 -21128,3116:112,162,-11,0,0,0.64478 -21129,3116:113,163,-11,0,0,0.644898 -21130,3116:114,164,-11,0,0,0.645698 -21131,3116:215,165,-11,0,0,0.646215 -21132,3116:216,166,-11,0,0,0.646801 -21133,3116:217,167,-11,0,0,0.646801 -21134,3116:218,168,-11,0,0,0.646426 -21135,3116:219,169,-11,0,0,0.649356 -21136,3117:110,170,-11,0,0,0.649613 -21137,3117:111,171,-11,0,0,0.648841 -21138,3117:112,172,-11,0,0,0.64856 -21139,3117:113,173,-11,0,0,0.646849 -21140,3117:114,174,-11,0,0,0.644498 -21141,3117:215,175,-11,0,0,0.643532 -21142,3117:216,176,-11,0,0,0.643084 -21143,3117:217,177,-11,0,0,0.642117 -21144,3117:218,178,-11,0,0,0.642872 -21145,3117:219,179,-11,0,0,0.643932 -21146,3118:110,180,-11,0,0,0.645345 -21147,5118:100,-180,-10,0,0,0.655437 -21148,5117:209,-179,-10,0,0,0.658146 -21149,5117:208,-178,-10,0,0,0.66103 -21150,5117:207,-177,-10,0,0,0.66365 -21151,5117:206,-176,-10,0,0,0.667241 -21152,5117:205,-175,-10,0,0,0.669768 -21153,5117:104,-174,-10,0,0,0.670495 -21154,5117:103,-173,-10,0,0,0.669541 -21155,5117:102,-172,-10,0,0,0.668358 -21156,5117:101,-171,-10,0,0,0.668312 -21157,5117:100,-170,-10,0,0,0.668768 -21158,5116:209,-169,-10,0,0,0.668608 -21159,5116:208,-168,-10,0,0,0.668631 -21160,5116:207,-167,-10,0,0,0.670223 -21161,5116:206,-166,-10,0,0,0.673168 -21162,5116:205,-165,-10,0,0,0.673665 -21163,5116:104,-164,-10,0,0,0.674455 -21164,5116:103,-163,-10,0,0,0.674906 -21165,5116:102,-162,-10,0,0,0.675424 -21166,5116:101,-161,-10,0,0,0.676324 -21167,5116:100,-160,-10,0,0,0.67468 -21168,5115:209,-159,-10,0,0,0.675131 -21169,5115:208,-158,-10,0,0,0.674883 -21170,5115:207,-157,-10,0,0,0.674771 -21171,5115:206,-156,-10,0,0,0.675154 -21172,5115:205,-155,-10,0,0,0.673371 -21173,5115:104,-154,-10,0,0,0.671221 -21174,5115:103,-153,-10,0,0,0.669836 -21175,5115:102,-152,-10,0,0,0.669131 -21176,5115:101,-151,-10,0,0,0.667902 -21177,5115:100,-150,-10,0,0,0.667446 -21178,5114:209,-149,-10,0,0,0.666579 -21179,5114:208,-148,-10,0,0,0.665139 -21180,5114:207,-147,-10,0,0,0.663099 -21181,5114:206,-146,-10,0,0,0.662226 -21182,5114:205,-145,-10,0,0,0.660869 -21183,5114:104,-144,-10,0,0,0.658978 -21184,5114:103,-143,-10,0,0,0.656712 -21185,5114:102,-142,-10,0,0,0.655669 -21186,5114:101,-141,-10,0,0,0.653881 -21187,5114:100,-140,-10,0,0,0.652461 -21188,5113:209,-139,-10,0,0,0.651762 -21189,5113:208,-138,-10,0,0,0.648817 -21190,5113:207,-137,-10,0,0,0.647646 -21191,5113:206,-136,-10,0,0,0.64478 -21192,5113:205,-135,-10,0,0,0.642471 -21193,5113:104,-134,-10,0,0,0.64103 -21194,5113:103,-133,-10,0,0,0.639586 -21195,5113:102,-132,-10,0,0,0.637167 -21196,5113:101,-131,-10,0,0,0.632833 -21197,5113:100,-130,-10,0,0,0.633024 -21198,5112:209,-129,-10,0,0,0.629892 -21199,5112:208,-128,-10,0,0,0.62545 -21200,5112:207,-127,-10,0,0,0.621736 -21201,5112:206,-126,-10,0,0,0.621688 -21202,5112:205,-125,-10,0,0,0.615336 -21203,5112:104,-124,-10,0,0,0.615433 -21204,5112:103,-123,-10,0,0,0.609874 -21205,5112:102,-122,-10,0,0,0.603476 -21206,5112:101,-121,-10,0,0,0.600226 -21207,5112:100,-120,-10,0,0,0.595508 -21208,5111:209,-119,-10,0,0,0.593427 -21209,5111:208,-118,-10,0,0,0.587639 -21210,5111:207,-117,-10,0,0,0.582626 -21211,5111:206,-116,-10,0,0,0.578046 -21212,5111:205,-115,-10,0,0,0.572222 -21213,5111:104,-114,-10,0,0,0.566731 -21214,5111:103,-113,-10,0,0,0.559502 -21215,5111:102,-112,-10,0,0,0.55466 -21216,5111:101,-111,-10,0,0,0.552374 -21217,5111:100,-110,-10,0,0,0.544029 -21218,5110:209,-109,-10,0,0,0.540126 -21219,5110:208,-108,-10,0,0,0.533996 -21220,5110:207,-107,-10,0,0,0.527624 -21221,5110:206,-106,-10,0,0,0.522679 -21222,5110:205,-105,-10,0,0,0.515524 -21223,5110:104,-104,-10,0,0,0.509132 -21224,5110:103,-103,-10,0,0,0.50474 -21225,5110:102,-102,-10,0,0,0.502378 -21226,5110:101,-101,-10,0,0,0.496932 -21227,5110:100,-100,-10,0,0,0.490922 -21228,5109:209,-99,-10,0,0,0.485994 -21229,5109:208,-98,-10,0,0,0.480811 -21230,5109:207,-97,-10,0,0,0.476964 -21231,5109:206,-96,-10,0,0,0.472686 -21232,5109:205,-95,-10,0,0,0.464985 -21233,5109:104,-94,-10,0,0,0.457658 -21234,5109:103,-93,-10,0,0,0.458397 -21235,5109:102,-92,-10,0,0,0.457862 -21236,5109:101,-91,-10,0,0,0.459647 -21237,5109:100,-90,-10,0,0,0.458448 -21238,5108:209,-89,-10,0,0,0.456179 -21239,5108:208,-88,-10,0,0,0.454497 -21240,5108:207,-87,-10,0,0,0.45804 -21241,5108:206,-86,-10,0,0,0.462098 -21242,5108:205,-85,-10,0,0,0.464474 -21243,5108:104,-84,-10,0,0,0.467133 -21248,5107:209,-79,-10,0,0,0.486635 -21249,5107:208,-78,-10,0,0,0.463426 -21250,5103:207,-37,-10,0,0,0.626629 -21251,5103:206,-36,-10,0,0,0.625402 -21252,5103:205,-35,-10,0,0,0.622774 -21253,5103:104,-34,-10,0,0,0.619898 -21254,5103:103,-33,-10,0,0,0.616357 -21255,5103:102,-32,-10,0,0,0.614412 -21256,5103:101,-31,-10,0,0,0.609067 -21257,5103:100,-30,-10,0,0,0.606912 -21258,5102:209,-29,-10,0,0,0.602541 -21259,5102:208,-28,-10,0,0,0.598598 -21260,5102:207,-27,-10,0,0,0.59427 -21261,5102:206,-26,-10,0,0,0.591046 -21262,5102:205,-25,-10,0,0,0.588634 -21263,5102:104,-24,-10,0,0,0.583175 -21264,5102:103,-23,-10,0,0,0.582526 -21265,5102:102,-22,-10,0,0,0.577821 -21266,5102:101,-21,-10,0,0,0.573303 -21267,5102:100,-20,-10,0,0,0.569051 -21268,5101:209,-19,-10,0,0,0.563019 -21269,5101:208,-18,-10,0,0,0.557095 -21270,5101:207,-17,-10,0,0,0.55268 -21271,5101:206,-16,-10,0,0,0.551892 -21272,5101:205,-15,-10,0,0,0.551078 -21273,5101:104,-14,-10,0,0,0.54209 -21274,5101:103,-13,-10,0,0,0.537701 -21275,5101:102,-12,-10,0,0,0.535095 -21276,5101:101,-11,-10,0,0,0.533177 -21277,5101:100,-10,-10,0,0,0.534685 -21278,5100:209,-9,-10,0,0,0.526881 -21279,5100:208,-8,-10,0,0,0.523807 -21280,5100:207,-7,-10,0,0,0.521884 -21281,5100:206,-6,-10,0,0,0.528008 -21282,5100:205,-5,-10,0,0,0.522141 -21283,5100:104,-4,-10,0,0,0.522961 -21284,5100:103,-3,-10,0,0,0.521269 -21285,5100:102,-2,-10,0,0,0.519141 -21286,5100:101,-1,-10,0,0,0.517884 -21287,3100:101,0,-10,0,0,0.519679 -21288,3100:101,1,-10,0,0,0.521141 -21289,3100:102,2,-10,0,0,0.519295 -21290,3100:103,3,-10,0,0,0.523602 -21291,3100:104,4,-10,0,0,0.530977 -21292,3100:205,5,-10,0,0,0.537241 -21293,3100:206,6,-10,0,0,0.544538 -21294,3100:207,7,-10,0,0,0.550722 -21295,3100:208,8,-10,0,0,0.565999 -21296,3100:209,9,-10,0,0,0.586343 -21297,3101:100,10,-10,0,0,0.597733 -21298,3101:101,11,-10,0,0,0.606668 -21299,3101:102,12,-10,0,0,0.609312 -21300,3101:103,13,-10,0,0,0.578247 -21301,3104:101,41,-10,0,0,0.66587 -21302,3104:102,42,-10,0,0,0.661583 -21303,3104:104,44,-10,0,0,0.658701 -21304,3104:205,45,-10,0,0,0.651902 -21305,3104:206,46,-10,0,0,0.647482 -21306,3104:207,47,-10,0,0,0.64565 -21307,3104:208,48,-10,0,0,0.642188 -21308,3104:209,49,-10,0,0,0.637808 -21309,3105:100,50,-10,0,0,0.639539 -21310,3105:101,51,-10,0,0,0.643202 -21311,3105:102,52,-10,0,0,0.646943 -21312,3105:103,53,-10,0,0,0.646285 -21313,3105:104,54,-10,0,0,0.648208 -21314,3105:205,55,-10,0,0,0.651435 -21315,3105:206,56,-10,0,0,0.653112 -21316,3105:207,57,-10,0,0,0.653183 -21317,3105:208,58,-10,0,0,0.651178 -21318,3105:209,59,-10,0,0,0.648467 -21319,3106:100,60,-10,0,0,0.64565 -21320,3106:101,61,-10,0,0,0.64155 -21321,3106:102,62,-10,0,0,0.638638 -21322,3106:103,63,-10,0,0,0.641361 -21323,3106:104,64,-10,0,0,0.644969 -21324,3106:205,65,-10,0,0,0.648489 -21325,3106:206,66,-10,0,0,0.650851 -21326,3106:207,67,-10,0,0,0.652158 -21327,3106:208,68,-10,0,0,0.652671 -21328,3106:209,69,-10,0,0,0.65253 -21329,3107:100,70,-10,0,0,0.652134 -21330,3107:101,71,-10,0,0,0.652088 -21331,3107:102,72,-10,0,0,0.652601 -21332,3107:104,74,-10,0,0,0.651389 -21333,3107:205,75,-10,0,0,0.649473 -21334,3107:206,76,-10,0,0,0.647529 -21335,3107:207,77,-10,0,0,0.644945 -21336,3107:208,78,-10,0,0,0.641975 -21337,3107:209,79,-10,0,0,0.638402 -21338,3108:100,80,-10,0,0,0.635313 -21339,3108:101,81,-10,0,0,0.632356 -21340,3108:102,82,-10,0,0,0.629461 -21341,3108:103,83,-10,0,0,0.626461 -21342,3108:104,84,-10,0,0,0.624004 -21343,3108:205,85,-10,0,0,0.621688 -21344,3108:206,86,-10,0,0,0.620237 -21345,3108:207,87,-10,0,0,0.619705 -21346,3108:208,88,-10,0,0,0.619195 -21347,3108:209,89,-10,0,0,0.618105 -21348,3109:100,90,-10,0,0,0.617571 -21349,3109:101,91,-10,0,0,0.618638 -21350,3109:102,92,-10,0,0,0.621978 -21351,3109:103,93,-10,0,0,0.623836 -21352,3109:104,94,-10,0,0,0.622799 -21353,3109:205,95,-10,0,0,0.620431 -21354,3109:206,96,-10,0,0,0.618493 -21355,3109:207,97,-10,0,0,0.616576 -21356,3109:208,98,-10,0,0,0.615336 -21357,3109:209,99,-10,0,0,0.616916 -21358,3110:100,100,-10,0,0,0.622895 -21359,3110:101,101,-10,0,0,0.630514 -21360,3110:102,102,-10,0,0,0.63343 -21361,3110:103,103,-10,0,0,0.63374 -21362,3110:104,104,-10,0,0,0.635764 -21363,3110:205,105,-10,0,0,0.637975 -21364,3110:206,106,-10,0,0,0.636122 -21365,3110:207,107,-10,0,0,0.636098 -21366,3110:208,108,-10,0,0,0.648911 -21367,3110:209,109,-10,0,0,0.660846 -21368,3111:100,110,-10,0,0,0.660478 -21369,3111:101,111,-10,0,0,0.664085 -21370,3111:102,112,-10,0,0,0.669245 -21371,3111:103,113,-10,0,0,0.67319 -21372,3111:104,114,-10,0,0,0.677313 -21373,3111:205,115,-10,0,0,0.680248 -21374,3111:206,116,-10,0,0,0.681632 -21375,3111:207,117,-10,0,0,0.681743 -21376,3111:208,118,-10,0,0,0.681677 -21377,3111:209,119,-10,0,0,0.681609 -21378,3112:100,120,-10,0,0,0.680382 -21379,3112:101,121,-10,0,0,0.680739 -21380,3112:102,122,-10,0,0,0.68408 -21381,3112:103,123,-10,0,0,0.685454 -21382,3112:104,124,-10,0,0,0.683435 -21383,3112:205,125,-10,0,0,0.689692 -21384,3112:206,126,-10,0,0,0.6974 -21385,3112:207,127,-10,0,0,0.699348 -21386,3112:208,128,-10,0,0,0.703051 -21387,3112:209,129,-10,0,0,0.706343 -21388,3113:100,130,-10,0,0,0.714355 -21389,3113:102,132,-10,0,0,0.714355 -21390,3113:104,134,-10,0,0,0.714355 -21391,3113:205,135,-10,0,0,0.710101 -21392,3113:206,136,-10,0,0,0.704336 -21393,3113:207,137,-10,0,0,0.698224 -21394,3113:208,138,-10,0,0,0.673349 -21395,3113:209,139,-10,0,0,0.671606 -21396,3114:100,140,-10,0,0,0.678099 -21397,3114:101,141,-10,0,0,0.683346 -21398,3114:102,142,-10,0,0,0.688437 -21399,3114:104,144,-10,0,0,0.656156 -21400,3114:205,145,-10,0,0,0.649192 -21401,3114:206,146,-10,0,0,0.651924 -21402,3114:207,147,-10,0,0,0.647459 -21403,3114:208,148,-10,0,0,0.646731 -21404,3114:209,149,-10,0,0,0.650875 -21405,3115:100,150,-10,0,0,0.654136 -21406,3115:101,151,-10,0,0,0.66326 -21407,3115:102,152,-10,0,0,0.666465 -21408,3115:103,153,-10,0,0,0.666076 -21409,3115:104,154,-10,0,0,0.664383 -21410,3115:205,155,-10,0,0,0.671402 -21411,3115:206,156,-10,0,0,0.67172 -21412,3115:207,157,-10,0,0,0.669427 -21413,3115:208,158,-10,0,0,0.66879 -21414,3115:209,159,-10,0,0,0.667332 -21415,3116:100,160,-10,0,0,0.661697 -21416,3116:101,161,-10,0,0,0.657708 -21417,3116:102,162,-10,0,0,0.658285 -21418,3116:103,163,-10,0,0,0.658863 -21419,3116:104,164,-10,0,0,0.659647 -21420,3116:205,165,-10,0,0,0.659901 -21421,3116:206,166,-10,0,0,0.659694 -21422,3116:207,167,-10,0,0,0.660339 -21423,3116:208,168,-10,0,0,0.661168 -21424,3116:209,169,-10,0,0,0.661744 -21425,3117:100,170,-10,0,0,0.661214 -21426,3117:101,171,-10,0,0,0.659971 -21427,3117:102,172,-10,0,0,0.658216 -21428,3117:103,173,-10,0,0,0.655344 -21429,3117:104,174,-10,0,0,0.653322 -21430,3117:205,175,-10,0,0,0.653508 -21431,3117:206,176,-10,0,0,0.653322 -21432,3117:207,177,-10,0,0,0.653974 -21433,3117:208,178,-10,0,0,0.653904 -21434,3117:209,179,-10,0,0,0.653881 -21435,3118:100,180,-10,0,0,0.655437 -21436,5018:390,-180,-9,0,0,0.664246 -21437,5017:499,-179,-9,0,0,0.666191 -21438,5017:498,-178,-9,0,0,0.668085 -21439,5017:497,-177,-9,0,0,0.670699 -21440,5017:496,-176,-9,0,0,0.672784 -21441,5017:495,-175,-9,0,0,0.673439 -21442,5017:394,-174,-9,0,0,0.673733 -21443,5017:393,-173,-9,0,0,0.673755 -21444,5017:392,-172,-9,0,0,0.673326 -21445,5017:391,-171,-9,0,0,0.673032 -21446,5017:390,-170,-9,0,0,0.674026 -21447,5016:499,-169,-9,0,0,0.674793 -21448,5016:498,-168,-9,0,0,0.675334 -21449,5016:497,-167,-9,0,0,0.675109 -21450,5016:496,-166,-9,0,0,0.675379 -21451,5016:495,-165,-9,0,0,0.676437 -21452,5016:394,-164,-9,0,0,0.677852 -21453,5016:393,-163,-9,0,0,0.678211 -21454,5016:392,-162,-9,0,0,0.678211 -21455,5016:391,-161,-9,0,0,0.678413 -21456,5016:390,-160,-9,0,0,0.678323 -21457,5015:499,-159,-9,0,0,0.678189 -21458,5015:498,-158,-9,0,0,0.677874 -21459,5015:497,-157,-9,0,0,0.676909 -21460,5015:496,-156,-9,0,0,0.675424 -21461,5015:495,-155,-9,0,0,0.673258 -21462,5015:394,-154,-9,0,0,0.671923 -21463,5015:393,-153,-9,0,0,0.670336 -21464,5015:392,-152,-9,0,0,0.668494 -21465,5015:391,-151,-9,0,0,0.66699 -21466,5015:390,-150,-9,0,0,0.665665 -21467,5014:499,-149,-9,0,0,0.66507 -21468,5014:498,-148,-9,0,0,0.661237 -21469,5014:497,-147,-9,0,0,0.659579 -21470,5014:496,-146,-9,0,0,0.658262 -21471,5014:495,-145,-9,0,0,0.658816 -21472,5014:394,-144,-9,0,0,0.656318 -21473,5014:393,-143,-9,0,0,0.654136 -21474,5014:392,-142,-9,0,0,0.652018 -21475,5014:391,-141,-9,0,0,0.650174 -21476,5014:390,-140,-9,0,0,0.648654 -21477,5013:499,-139,-9,0,0,0.646261 -21478,5013:498,-138,-9,0,0,0.643532 -21479,5013:497,-137,-9,0,0,0.641928 -21480,5013:496,-136,-9,0,0,0.64025 -21481,5013:495,-135,-9,0,0,0.636288 -21482,5013:394,-134,-9,0,0,0.63312 -21483,5013:393,-133,-9,0,0,0.630011 -21484,5013:392,-132,-9,0,0,0.628838 -21485,5013:391,-131,-9,0,0,0.624294 -21486,5013:390,-130,-9,0,0,0.622436 -21487,5012:499,-129,-9,0,0,0.618396 -21488,5012:498,-128,-9,0,0,0.617183 -21489,5012:497,-127,-9,0,0,0.613681 -21490,5012:496,-126,-9,0,0,0.608897 -21491,5012:495,-125,-9,0,0,0.607329 -21492,5012:394,-124,-9,0,0,0.603869 -21493,5012:393,-123,-9,0,0,0.59998 -21494,5012:392,-122,-9,0,0,0.595805 -21495,5012:391,-121,-9,0,0,0.591964 -21496,5012:390,-120,-9,0,0,0.587738 -21497,5011:499,-119,-9,0,0,0.583774 -21498,5011:498,-118,-9,0,0,0.57717 -21499,5011:497,-117,-9,0,0,0.571745 -21500,5011:496,-116,-9,0,0,0.567942 -21501,5011:495,-115,-9,0,0,0.563145 -21502,5011:394,-114,-9,0,0,0.557146 -21503,5011:393,-113,-9,0,0,0.551359 -21504,5011:392,-112,-9,0,0,0.544945 -21505,5011:391,-111,-9,0,0,0.539948 -21506,5011:390,-110,-9,0,0,0.535836 -21507,5010:499,-109,-9,0,0,0.532077 -21508,5010:498,-108,-9,0,0,0.527599 -21509,5010:497,-107,-9,0,0,0.523243 -21510,5010:496,-106,-9,0,0,0.519038 -21511,5010:495,-105,-9,0,0,0.514625 -21512,5010:394,-104,-9,0,0,0.510904 -21513,5010:393,-103,-9,0,0,0.508849 -21514,5010:392,-102,-9,0,0,0.505819 -21515,5010:391,-101,-9,0,0,0.501016 -21516,5010:390,-100,-9,0,0,0.495108 -21517,5009:499,-99,-9,0,0,0.492668 -21518,5009:498,-98,-9,0,0,0.491898 -21519,5009:497,-97,-9,0,0,0.488638 -21520,5009:496,-96,-9,0,0,0.486225 -21521,5009:495,-95,-9,0,0,0.478708 -21522,5009:394,-94,-9,0,0,0.476068 -21523,5009:393,-93,-9,0,0,0.480093 -21524,5009:392,-92,-9,0,0,0.485146 -21525,5009:391,-91,-9,0,0,0.484454 -21526,5009:390,-90,-9,0,0,0.488304 -21527,5008:499,-89,-9,0,0,0.488278 -21528,5008:498,-88,-9,0,0,0.488175 -21529,5008:497,-87,-9,0,0,0.488124 -21530,5008:496,-86,-9,0,0,0.48951 -21531,5008:495,-85,-9,0,0,0.489792 -21532,5008:394,-84,-9,0,0,0.491025 -21533,5008:393,-83,-9,0,0,0.4929 -21534,5008:392,-82,-9,0,0,0.495005 -21535,5008:391,-81,-9,0,0,0.492951 -21536,5008:390,-80,-9,0,0,0.488278 -21537,5007:499,-79,-9,0,0,0.480169 -21538,5003:496,-36,-9,0,0,0.62316 -21539,5003:495,-35,-9,0,0,0.625209 -21540,5003:394,-34,-9,0,0,0.618905 -21541,5003:393,-33,-9,0,0,0.615263 -21542,5003:392,-32,-9,0,0,0.611633 -21543,5003:391,-31,-9,0,0,0.609141 -21544,5003:390,-30,-9,0,0,0.604729 -21545,5002:499,-29,-9,0,0,0.601163 -21546,5002:498,-28,-9,0,0,0.598153 -21547,5002:497,-27,-9,0,0,0.595508 -21548,5002:496,-26,-9,0,0,0.591791 -21549,5002:495,-25,-9,0,0,0.589355 -21550,5002:394,-24,-9,0,0,0.585621 -21551,5002:393,-23,-9,0,0,0.581526 -21552,5002:392,-22,-9,0,0,0.57965 -21553,5002:391,-21,-9,0,0,0.57481 -21554,5002:390,-20,-9,0,0,0.572574 -21555,5001:499,-19,-9,0,0,0.569227 -21556,5001:498,-18,-9,0,0,0.565166 -21557,5001:497,-17,-9,0,0,0.562185 -21558,5001:496,-16,-9,0,0,0.560793 -21559,5001:495,-15,-9,0,0,0.556537 -21560,5001:394,-14,-9,0,0,0.554914 -21561,5001:393,-13,-9,0,0,0.550367 -21562,5001:392,-12,-9,0,0,0.54818 -21563,5001:391,-11,-9,0,0,0.547721 -21564,5001:390,-10,-9,0,0,0.545302 -21565,5000:499,-9,-9,0,0,0.54033 -21566,5000:498,-8,-9,0,0,0.539054 -21567,5000:497,-7,-9,0,0,0.537062 -21568,5000:496,-6,-9,0,0,0.538697 -21569,5000:495,-5,-9,0,0,0.537675 -21570,5000:394,-4,-9,0,0,0.535043 -21571,5000:393,-3,-9,0,0,0.533459 -21572,5000:392,-2,-9,0,0,0.534149 -21573,5000:391,-1,-9,0,0,0.534635 -21574,3000:391,0,-9,0,0,0.538033 -21575,3000:391,1,-9,0,0,0.541479 -21576,3000:392,2,-9,0,0,0.543263 -21577,3000:393,3,-9,0,0,0.548307 -21578,3000:394,4,-9,0,0,0.553442 -21579,3000:495,5,-9,0,0,0.559654 -21580,3000:496,6,-9,0,0,0.56963 -21581,3000:497,7,-9,0,0,0.584349 -21582,3000:498,8,-9,0,0,0.597141 -21583,3000:499,9,-9,0,0,0.607378 -21584,3001:390,10,-9,0,0,0.614363 -21585,3001:391,11,-9,0,0,0.623667 -21586,3001:392,12,-9,0,0,0.62345 -21587,3001:393,13,-9,0,0,0.589331 -21588,3004:390,40,-9,0,0,0.660039 -21589,3004:391,41,-9,0,0,0.664062 -21590,3004:392,42,-9,0,0,0.660892 -21591,3004:393,43,-9,0,0,0.658308 -21592,3004:394,44,-9,0,0,0.655622 -21593,3004:495,45,-9,0,0,0.65288 -21594,3004:496,46,-9,0,0,0.648982 -21595,3004:497,47,-9,0,0,0.64652 -21596,3004:498,48,-9,0,0,0.646167 -21597,3004:499,49,-9,0,0,0.648373 -21598,3005:390,50,-9,0,0,0.651272 -21599,3005:391,51,-9,0,0,0.654067 -21600,3005:392,52,-9,0,0,0.655762 -21601,3005:393,53,-9,0,0,0.656202 -21602,3005:394,54,-9,0,0,0.659186 -21603,3005:495,55,-9,0,0,0.661628 -21604,3005:496,56,-9,0,0,0.662249 -21605,3005:497,57,-9,0,0,0.660431 -21606,3005:498,58,-9,0,0,0.65692 -21607,3005:499,59,-9,0,0,0.652694 -21608,3006:390,60,-9,0,0,0.647951 -21609,3006:391,61,-9,0,0,0.644027 -21610,3006:392,62,-9,0,0,0.640746 -21611,3006:393,63,-9,0,0,0.647716 -21612,3006:394,64,-9,0,0,0.649473 -21613,3006:495,65,-9,0,0,0.650851 -21614,3006:496,66,-9,0,0,0.652926 -21615,3006:497,67,-9,0,0,0.651948 -21616,3006:498,68,-9,0,0,0.65295 -21617,3006:499,69,-9,0,0,0.657059 -21618,3007:390,70,-9,0,0,0.657407 -21619,3007:391,71,-9,0,0,0.659279 -21620,3007:392,72,-9,0,0,0.660777 -21621,3007:394,74,-9,0,0,0.658632 -21622,3007:495,75,-9,0,0,0.657106 -21623,3007:496,76,-9,0,0,0.65655 -21624,3007:497,77,-9,0,0,0.656272 -21625,3007:498,78,-9,0,0,0.655576 -21626,3007:499,79,-9,0,0,0.653881 -21627,3008:390,80,-9,0,0,0.650244 -21628,3008:391,81,-9,0,0,0.645768 -21629,3008:392,82,-9,0,0,0.640439 -21630,3008:393,83,-9,0,0,0.634932 -21631,3008:394,84,-9,0,0,0.632929 -21632,3008:495,85,-9,0,0,0.632809 -21633,3008:496,86,-9,0,0,0.633072 -21634,3008:497,87,-9,0,0,0.632332 -21635,3008:498,88,-9,0,0,0.630347 -21636,3008:499,89,-9,0,0,0.62747 -21637,3009:390,90,-9,0,0,0.625715 -21638,3009:391,91,-9,0,0,0.626196 -21639,3009:392,92,-9,0,0,0.628141 -21640,3009:393,93,-9,0,0,0.63006 -21641,3009:394,94,-9,0,0,0.631089 -21642,3009:495,95,-9,0,0,0.630922 -21643,3009:496,96,-9,0,0,0.630467 -21644,3009:497,97,-9,0,0,0.629269 -21645,3009:498,98,-9,0,0,0.627517 -21646,3009:499,99,-9,0,0,0.628022 -21647,3010:390,100,-9,0,0,0.630969 -21648,3010:391,101,-9,0,0,0.635408 -21649,3010:392,102,-9,0,0,0.640557 -21650,3010:393,103,-9,0,0,0.643249 -21651,3010:394,104,-9,0,0,0.643862 -21652,3010:495,105,-9,0,0,0.646355 -21653,3010:496,106,-9,0,0,0.653555 -21654,3010:497,107,-9,0,0,0.657522 -21655,3010:498,108,-9,0,0,0.660386 -21656,3010:499,109,-9,0,0,0.662249 -21657,3011:390,110,-9,0,0,0.66303 -21658,3011:391,111,-9,0,0,0.665436 -21659,3011:392,112,-9,0,0,0.667492 -21660,3011:393,113,-9,0,0,0.668859 -21661,3011:394,114,-9,0,0,0.671175 -21662,3011:495,115,-9,0,0,0.677224 -21663,3011:496,116,-9,0,0,0.677448 -21664,3011:497,117,-9,0,0,0.675244 -21665,3011:498,118,-9,0,0,0.674116 -21666,3011:499,119,-9,0,0,0.676234 -21667,3012:390,120,-9,0,0,0.677987 -21668,3012:392,122,-9,0,0,0.682256 -21669,3012:393,123,-9,0,0,0.678861 -21670,3012:495,125,-9,0,0,0.68368 -21671,3012:496,126,-9,0,0,0.684057 -21672,3012:497,127,-9,0,0,0.682746 -21673,3012:498,128,-9,0,0,0.693046 -21674,3012:499,129,-9,0,0,0.697292 -21675,3013:390,130,-9,0,0,0.695619 -21676,3013:391,131,-9,0,0,0.699175 -21677,3013:392,132,-9,0,0,0.695793 -21678,3013:393,133,-9,0,0,0.696858 -21679,3013:394,134,-9,0,0,0.691163 -21680,3013:495,135,-9,0,0,0.683991 -21681,3013:496,136,-9,0,0,0.675672 -21682,3013:497,137,-9,0,0,0.669927 -21683,3013:498,138,-9,0,0,0.671175 -21684,3013:499,139,-9,0,0,0.675649 -21685,3014:390,140,-9,0,0,0.678032 -21686,3014:391,141,-9,0,0,0.681699 -21687,3014:392,142,-9,0,0,0.684523 -21688,3014:393,143,-9,0,0,0.67637 -21689,3014:394,144,-9,0,0,0.658216 -21690,3014:495,145,-9,0,0,0.648467 -21691,3014:496,146,-9,0,0,0.651248 -21692,3014:497,147,-9,0,0,0.659971 -21693,3014:498,148,-9,0,0,0.640912 -21694,3015:391,151,-9,0,0,0.666761 -21695,3015:392,152,-9,0,0,0.675154 -21696,3015:393,153,-9,0,0,0.677605 -21697,3015:394,154,-9,0,0,0.679689 -21698,3015:495,155,-9,0,0,0.680136 -21699,3015:496,156,-9,0,0,0.680672 -21700,3015:497,157,-9,0,0,0.681319 -21701,3015:498,158,-9,0,0,0.681699 -21702,3015:499,159,-9,0,0,0.679935 -21703,3016:390,160,-9,0,0,0.677852 -21704,3016:391,161,-9,0,0,0.674252 -21705,3016:392,162,-9,0,0,0.668107 -21706,3016:393,163,-9,0,0,0.668335 -21707,3016:394,164,-9,0,0,0.668859 -21708,3016:495,165,-9,0,0,0.669859 -21709,3016:496,166,-9,0,0,0.66945 -21710,3016:497,167,-9,0,0,0.669768 -21711,3016:498,168,-9,0,0,0.670063 -21712,3016:499,169,-9,0,0,0.6697 -21713,3017:390,170,-9,0,0,0.669109 -21714,3017:391,171,-9,0,0,0.668039 -21715,3017:392,172,-9,0,0,0.666076 -21716,3017:393,173,-9,0,0,0.666488 -21717,3017:394,174,-9,0,0,0.663053 -21718,3017:495,175,-9,0,0,0.662777 -21719,3017:496,176,-9,0,0,0.662042 -21720,3017:497,177,-9,0,0,0.661859 -21721,3017:498,178,-9,0,0,0.661904 -21722,3017:499,179,-9,0,0,0.662295 -21723,3018:390,180,-9,0,0,0.664246 -21724,5018:380,-180,-8,0,0,0.673959 -21725,5017:489,-179,-8,0,0,0.675829 -21726,5017:488,-178,-8,0,0,0.676932 -21727,5017:487,-177,-8,0,0,0.677628 -21728,5017:486,-176,-8,0,0,0.676976 -21729,5017:485,-175,-8,0,0,0.676145 -21730,5017:384,-174,-8,0,0,0.676347 -21731,5017:383,-173,-8,0,0,0.676954 -21732,5017:382,-172,-8,0,0,0.676909 -21733,5017:381,-171,-8,0,0,0.677246 -21734,5017:380,-170,-8,0,0,0.677583 -21735,5016:489,-169,-8,0,0,0.676954 -21736,5016:488,-168,-8,0,0,0.676572 -21737,5016:487,-167,-8,0,0,0.677381 -21738,5016:486,-166,-8,0,0,0.677897 -21739,5016:485,-165,-8,0,0,0.67839 -21740,5016:384,-164,-8,0,0,0.678592 -21741,5016:383,-163,-8,0,0,0.677695 -21742,5016:382,-162,-8,0,0,0.676976 -21743,5016:381,-161,-8,0,0,0.676819 -21744,5016:380,-160,-8,0,0,0.677291 -21745,5015:489,-159,-8,0,0,0.676684 -21746,5015:488,-158,-8,0,0,0.675762 -21747,5015:487,-157,-8,0,0,0.673936 -21748,5015:486,-156,-8,0,0,0.672036 -21749,5015:485,-155,-8,0,0,0.669836 -21750,5015:384,-154,-8,0,0,0.668016 -21751,5015:383,-153,-8,0,0,0.667218 -21752,5015:382,-152,-8,0,0,0.665459 -21753,5015:381,-151,-8,0,0,0.662915 -21754,5015:380,-150,-8,0,0,0.66103 -21755,5014:489,-149,-8,0,0,0.659348 -21756,5014:488,-148,-8,0,0,0.656248 -21757,5014:487,-147,-8,0,0,0.653834 -21758,5014:486,-146,-8,0,0,0.652461 -21759,5014:485,-145,-8,0,0,0.651272 -21760,5014:384,-144,-8,0,0,0.649239 -21761,5014:383,-143,-8,0,0,0.646872 -21762,5014:382,-142,-8,0,0,0.645086 -21763,5014:381,-141,-8,0,0,0.642919 -21764,5014:380,-140,-8,0,0,0.640273 -21765,5013:489,-139,-8,0,0,0.637904 -21766,5013:488,-138,-8,0,0,0.635955 -21767,5013:487,-137,-8,0,0,0.633788 -21768,5013:486,-136,-8,0,0,0.630802 -21769,5013:485,-135,-8,0,0,0.627349 -21770,5013:384,-134,-8,0,0,0.624077 -21771,5013:383,-133,-8,0,0,0.621953 -21772,5013:382,-132,-8,0,0,0.619341 -21773,5013:381,-131,-8,0,0,0.616818 -21774,5013:380,-130,-8,0,0,0.614192 -21775,5012:489,-129,-8,0,0,0.61134 -21776,5012:488,-128,-8,0,0,0.60892 -21777,5012:487,-127,-8,0,0,0.606275 -21778,5012:486,-126,-8,0,0,0.603549 -21779,5012:485,-125,-8,0,0,0.60136 -21780,5012:384,-124,-8,0,0,0.599066 -21781,5012:383,-123,-8,0,0,0.59625 -21782,5012:382,-122,-8,0,0,0.593056 -21783,5012:381,-121,-8,0,0,0.589157 -21784,5012:380,-120,-8,0,0,0.584748 -21785,5011:489,-119,-8,0,0,0.580401 -21786,5011:488,-118,-8,0,0,0.576467 -21787,5011:487,-117,-8,0,0,0.573127 -21788,5011:486,-116,-8,0,0,0.569201 -21789,5011:485,-115,-8,0,0,0.563953 -21790,5011:384,-114,-8,0,0,0.558464 -21791,5011:383,-113,-8,0,0,0.553035 -21792,5011:382,-112,-8,0,0,0.549045 -21793,5011:381,-111,-8,0,0,0.54492 -21794,5011:380,-110,-8,0,0,0.538722 -21795,5010:489,-109,-8,0,0,0.533714 -21796,5010:488,-108,-8,0,0,0.530901 -21797,5010:487,-107,-8,0,0,0.529365 -21798,5010:486,-106,-8,0,0,0.52414 -21799,5010:485,-105,-8,0,0,0.520988 -21800,5010:384,-104,-8,0,0,0.52191 -21801,5010:383,-103,-8,0,0,0.520013 -21802,5010:382,-102,-8,0,0,0.515524 -21803,5010:381,-101,-8,0,0,0.512264 -21804,5010:380,-100,-8,0,0,0.507411 -21805,5009:489,-99,-8,0,0,0.509645 -21806,5009:488,-98,-8,0,0,0.5117 -21807,5009:487,-97,-8,0,0,0.514368 -21808,5009:486,-96,-8,0,0,0.514086 -21809,5009:485,-95,-8,0,0,0.509157 -21810,5009:384,-94,-8,0,0,0.506667 -21811,5009:383,-93,-8,0,0,0.509363 -21812,5009:382,-92,-8,0,0,0.513137 -21813,5009:381,-91,-8,0,0,0.513085 -21814,5009:380,-90,-8,0,0,0.512931 -21815,5008:489,-89,-8,0,0,0.514215 -21816,5008:488,-88,-8,0,0,0.511982 -21817,5008:487,-87,-8,0,0,0.509748 -21818,5008:486,-86,-8,0,0,0.50754 -21819,5008:485,-85,-8,0,0,0.503508 -21820,5008:384,-84,-8,0,0,0.504381 -21821,5008:383,-83,-8,0,0,0.504047 -21822,5008:382,-82,-8,0,0,0.497497 -21823,5008:381,-81,-8,0,0,0.49123 -21824,5008:380,-80,-8,0,0,0.479759 -21825,5007:489,-79,-8,0,0,0.455618 -21826,5003:485,-35,-8,0,0,0.62634 -21827,5003:384,-34,-8,0,0,0.619898 -21828,5003:383,-33,-8,0,0,0.61592 -21829,5003:382,-32,-8,0,0,0.612877 -21830,5003:381,-31,-8,0,0,0.609728 -21831,5003:380,-30,-8,0,0,0.605858 -21832,5002:489,-29,-8,0,0,0.602123 -21833,5002:488,-28,-8,0,0,0.598302 -21834,5002:487,-27,-8,0,0,0.594419 -21835,5002:486,-26,-8,0,0,0.591616 -21836,5002:485,-25,-8,0,0,0.588684 -21837,5002:384,-24,-8,0,0,0.586468 -21838,5002:383,-23,-8,0,0,0.584448 -21839,5002:382,-22,-8,0,0,0.581201 -21840,5002:381,-21,-8,0,0,0.578448 -21841,5002:380,-20,-8,0,0,0.57594 -21842,5001:489,-19,-8,0,0,0.574208 -21843,5001:488,-18,-8,0,0,0.57192 -21844,5001:487,-17,-8,0,0,0.569932 -21845,5001:486,-16,-8,0,0,0.567664 -21846,5001:485,-15,-8,0,0,0.563373 -21847,5001:384,-14,-8,0,0,0.562159 -21848,5001:383,-13,-8,0,0,0.561729 -21849,5001:382,-12,-8,0,0,0.560211 -21850,5001:381,-11,-8,0,0,0.559755 -21851,5001:380,-10,-8,0,0,0.557602 -21852,5000:489,-9,-8,0,0,0.552654 -21853,5000:488,-8,-8,0,0,0.549985 -21854,5000:487,-7,-8,0,0,0.549222 -21855,5000:486,-6,-8,0,0,0.549985 -21856,5000:485,-5,-8,0,0,0.55029 -21857,5000:384,-4,-8,0,0,0.548663 -21858,5000:383,-3,-8,0,0,0.550799 -21859,5000:382,-2,-8,0,0,0.550799 -21860,5000:381,-1,-8,0,0,0.553416 -21861,3000:381,0,-8,0,0,0.559654 -21862,3000:381,1,-8,0,0,0.562462 -21863,3000:382,2,-8,0,0,0.565696 -21864,3000:383,3,-8,0,0,0.571971 -21865,3000:384,4,-8,0,0,0.57737 -21866,3000:485,5,-8,0,0,0.581776 -21867,3000:486,6,-8,0,0,0.590871 -21868,3000:487,7,-8,0,0,0.601507 -21869,3000:488,8,-8,0,0,0.613437 -21870,3000:489,9,-8,0,0,0.624077 -21871,3001:380,10,-8,0,0,0.628453 -21872,3001:381,11,-8,0,0,0.628141 -21873,3001:382,12,-8,0,0,0.612268 -21874,3001:383,13,-8,0,0,0.568219 -21875,3004:380,40,-8,0,0,0.663352 -21876,3004:381,41,-8,0,0,0.665161 -21877,3004:382,42,-8,0,0,0.66683 -21878,3004:383,43,-8,0,0,0.665093 -21879,3004:384,44,-8,0,0,0.663489 -21880,3004:485,45,-8,0,0,0.661076 -21881,3004:486,46,-8,0,0,0.657314 -21882,3004:487,47,-8,0,0,0.657823 -21883,3004:488,48,-8,0,0,0.659024 -21884,3004:489,49,-8,0,0,0.661099 -21885,3005:380,50,-8,0,0,0.66218 -21886,3005:381,51,-8,0,0,0.660892 -21887,3005:382,52,-8,0,0,0.660662 -21888,3005:383,53,-8,0,0,0.660938 -21889,3005:384,54,-8,0,0,0.663902 -21890,3005:485,55,-8,0,0,0.665367 -21891,3005:486,56,-8,0,0,0.665093 -21892,3005:487,57,-8,0,0,0.663879 -21893,3005:488,58,-8,0,0,0.660823 -21894,3005:489,59,-8,0,0,0.655019 -21895,3006:380,60,-8,0,0,0.6424 -21896,3006:381,61,-8,0,0,0.651062 -21897,3006:382,62,-8,0,0,0.652158 -21898,3006:383,63,-8,0,0,0.653415 -21899,3006:384,64,-8,0,0,0.65402 -21900,3006:485,65,-8,0,0,0.656156 -21901,3006:486,66,-8,0,0,0.658608 -21902,3006:487,67,-8,0,0,0.660339 -21903,3006:488,68,-8,0,0,0.662847 -21904,3006:489,69,-8,0,0,0.66436 -21905,3007:380,70,-8,0,0,0.665047 -21906,3007:381,71,-8,0,0,0.666807 -21907,3007:382,72,-8,0,0,0.667035 -21908,3007:384,74,-8,0,0,0.665962 -21909,3007:485,75,-8,0,0,0.665688 -21910,3007:486,76,-8,0,0,0.666076 -21911,3007:487,77,-8,0,0,0.66475 -21912,3007:488,78,-8,0,0,0.663145 -21913,3007:489,79,-8,0,0,0.661996 -21914,3008:380,80,-8,0,0,0.660984 -21915,3008:381,81,-8,0,0,0.654624 -21916,3008:382,82,-8,0,0,0.649473 -21917,3008:383,83,-8,0,0,0.64372 -21918,3008:384,84,-8,0,0,0.640107 -21919,3008:485,85,-8,0,0,0.639065 -21920,3008:486,86,-8,0,0,0.639302 -21921,3008:487,87,-8,0,0,0.640628 -21922,3008:488,88,-8,0,0,0.642377 -21923,3008:489,89,-8,0,0,0.64365 -21924,3009:380,90,-8,0,0,0.64398 -21925,3009:381,91,-8,0,0,0.642565 -21926,3009:382,92,-8,0,0,0.641881 -21927,3009:383,93,-8,0,0,0.642825 -21928,3009:384,94,-8,0,0,0.642966 -21929,3009:485,95,-8,0,0,0.641881 -21930,3009:486,96,-8,0,0,0.64025 -21931,3009:487,97,-8,0,0,0.639041 -21932,3009:488,98,-8,0,0,0.637618 -21933,3009:489,99,-8,0,0,0.637642 -21934,3010:380,100,-8,0,0,0.641077 -21935,3010:381,101,-8,0,0,0.645157 -21936,3010:382,102,-8,0,0,0.647459 -21937,3010:383,103,-8,0,0,0.649122 -21938,3010:384,104,-8,0,0,0.650478 -21939,3010:485,105,-8,0,0,0.65281 -21940,3010:486,106,-8,0,0,0.65488 -21941,3010:487,107,-8,0,0,0.656712 -21942,3010:488,108,-8,0,0,0.657777 -21943,3010:489,109,-8,0,0,0.659002 -21944,3011:380,110,-8,0,0,0.659786 -21945,3011:381,111,-8,0,0,0.660915 -21946,3011:382,112,-8,0,0,0.661145 -21947,3011:383,113,-8,0,0,0.66326 -21948,3011:384,114,-8,0,0,0.666396 -21949,3011:485,115,-8,0,0,0.665619 -21950,3012:383,123,-8,0,0,0.692325 -21951,3012:384,124,-8,0,0,0.689208 -21952,3012:485,125,-8,0,0,0.683635 -21953,3012:488,128,-8,0,0,0.680181 -21954,3012:489,129,-8,0,0,0.684701 -21955,3013:380,130,-8,0,0,0.684634 -21956,3013:381,131,-8,0,0,0.686252 -21957,3013:382,132,-8,0,0,0.688173 -21958,3013:383,133,-8,0,0,0.686583 -21959,3013:384,134,-8,0,0,0.680315 -21960,3013:485,135,-8,0,0,0.670041 -21961,3013:486,136,-8,0,0,0.672648 -21962,3013:487,137,-8,0,0,0.677089 -21963,3013:488,138,-8,0,0,0.693833 -21964,3013:489,139,-8,0,0,0.693352 -21965,3014:380,140,-8,0,0,0.692106 -21966,3014:384,144,-8,0,0,0.68923 -21967,3014:485,145,-8,0,0,0.661835 -21968,3014:486,146,-8,0,0,0.67029 -21969,3014:489,149,-8,0,0,0.671742 -21970,3015:380,150,-8,0,0,0.672896 -21971,3015:381,151,-8,0,0,0.677067 -21972,3015:382,152,-8,0,0,0.679958 -21973,3015:383,153,-8,0,0,0.683235 -21974,3015:384,154,-8,0,0,0.684945 -21975,3015:485,155,-8,0,0,0.68687 -21976,3015:486,156,-8,0,0,0.685322 -21977,3015:487,157,-8,0,0,0.686362 -21978,3015:488,158,-8,0,0,0.687401 -21979,3015:489,159,-8,0,0,0.687445 -21980,3016:380,160,-8,0,0,0.681029 -21981,3016:382,162,-8,0,0,0.678794 -21982,3016:383,163,-8,0,0,0.676504 -21983,3016:384,164,-8,0,0,0.675942 -21984,3016:485,165,-8,0,0,0.674613 -21985,3016:486,166,-8,0,0,0.674184 -21986,3016:487,167,-8,0,0,0.675019 -21987,3016:488,168,-8,0,0,0.675537 -21988,3016:489,169,-8,0,0,0.674973 -21989,3017:380,170,-8,0,0,0.674771 -21990,3017:381,171,-8,0,0,0.674861 -21991,3017:382,172,-8,0,0,0.674929 -21992,3017:383,173,-8,0,0,0.675942 -21993,3017:384,174,-8,0,0,0.6738 -21994,3017:485,175,-8,0,0,0.671832 -21995,3017:486,176,-8,0,0,0.671425 -21996,3017:487,177,-8,0,0,0.67079 -21997,3017:488,178,-8,0,0,0.670744 -21998,3017:489,179,-8,0,0,0.671697 -21999,3018:380,180,-8,0,0,0.673959 -22000,5018:370,-180,-7,0,0,0.681163 -22001,5017:479,-179,-7,0,0,0.68094 -22002,5017:478,-178,-7,0,0,0.680338 -22003,5017:477,-177,-7,0,0,0.679264 -22004,5017:476,-176,-7,0,0,0.678099 -22005,5017:475,-175,-7,0,0,0.678099 -22006,5017:374,-174,-7,0,0,0.678503 -22007,5017:373,-173,-7,0,0,0.678928 -22008,5017:372,-172,-7,0,0,0.678861 -22009,5017:371,-171,-7,0,0,0.678615 -22010,5017:370,-170,-7,0,0,0.677672 -22011,5016:479,-169,-7,0,0,0.677089 -22012,5016:478,-168,-7,0,0,0.677381 -22013,5016:477,-167,-7,0,0,0.67783 -22014,5016:476,-166,-7,0,0,0.678122 -22015,5016:475,-165,-7,0,0,0.677448 -22016,5016:374,-164,-7,0,0,0.676617 -22017,5016:373,-163,-7,0,0,0.676077 -22018,5016:372,-162,-7,0,0,0.675064 -22019,5016:371,-161,-7,0,0,0.673868 -22020,5016:370,-160,-7,0,0,0.672286 -22021,5015:479,-159,-7,0,0,0.670699 -22022,5015:478,-158,-7,0,0,0.668198 -22023,5015:477,-157,-7,0,0,0.665596 -22024,5015:476,-156,-7,0,0,0.663604 -22025,5015:475,-155,-7,0,0,0.662249 -22026,5015:374,-154,-7,0,0,0.660247 -22027,5015:373,-153,-7,0,0,0.658031 -22028,5015:372,-152,-7,0,0,0.655599 -22029,5015:371,-151,-7,0,0,0.653788 -22030,5015:370,-150,-7,0,0,0.651924 -22031,5014:479,-149,-7,0,0,0.649402 -22032,5014:478,-148,-7,0,0,0.647716 -22033,5014:477,-147,-7,0,0,0.64605 -22034,5014:476,-146,-7,0,0,0.643626 -22035,5014:475,-145,-7,0,0,0.641101 -22036,5014:374,-144,-7,0,0,0.63897 -22037,5014:373,-143,-7,0,0,0.63712 -22038,5014:372,-142,-7,0,0,0.635717 -22039,5014:371,-141,-7,0,0,0.634693 -22040,5014:370,-140,-7,0,0,0.633478 -22041,5013:479,-139,-7,0,0,0.631471 -22042,5013:478,-138,-7,0,0,0.629173 -22043,5013:477,-137,-7,0,0,0.626749 -22044,5013:476,-136,-7,0,0,0.624197 -22045,5013:475,-135,-7,0,0,0.621494 -22046,5013:374,-134,-7,0,0,0.618953 -22047,5013:373,-133,-7,0,0,0.616478 -22048,5013:372,-132,-7,0,0,0.614436 -22049,5013:371,-131,-7,0,0,0.612902 -22050,5013:370,-130,-7,0,0,0.611902 -22051,5012:479,-129,-7,0,0,0.610412 -22052,5012:478,-128,-7,0,0,0.608431 -22053,5012:477,-127,-7,0,0,0.606226 -22054,5012:476,-126,-7,0,0,0.603476 -22055,5012:475,-125,-7,0,0,0.600028 -22056,5012:374,-124,-7,0,0,0.596498 -22057,5012:373,-123,-7,0,0,0.592982 -22058,5012:372,-122,-7,0,0,0.589008 -22059,5012:371,-121,-7,0,0,0.584399 -22060,5012:370,-120,-7,0,0,0.579274 -22061,5011:479,-119,-7,0,0,0.574584 -22062,5011:478,-118,-7,0,0,0.570612 -22063,5011:477,-117,-7,0,0,0.56721 -22064,5011:476,-116,-7,0,0,0.564181 -22065,5011:475,-115,-7,0,0,0.561097 -22066,5011:374,-114,-7,0,0,0.558007 -22067,5011:373,-113,-7,0,0,0.554355 -22068,5011:372,-112,-7,0,0,0.550494 -22069,5011:371,-111,-7,0,0,0.546779 -22070,5011:370,-110,-7,0,0,0.544614 -22071,5010:479,-109,-7,0,0,0.544385 -22072,5010:478,-108,-7,0,0,0.544105 -22073,5010:477,-107,-7,0,0,0.542448 -22074,5010:476,-106,-7,0,0,0.539309 -22075,5010:475,-105,-7,0,0,0.536424 -22076,5010:374,-104,-7,0,0,0.535171 -22077,5010:373,-103,-7,0,0,0.535682 -22078,5010:372,-102,-7,0,0,0.533126 -22079,5010:371,-101,-7,0,0,0.529621 -22080,5010:370,-100,-7,0,0,0.529518 -22081,5009:479,-99,-7,0,0,0.531284 -22082,5009:478,-98,-7,0,0,0.53241 -22083,5009:477,-97,-7,0,0,0.530364 -22084,5009:476,-96,-7,0,0,0.530977 -22085,5009:475,-95,-7,0,0,0.529877 -22086,5009:374,-94,-7,0,0,0.533535 -22087,5009:373,-93,-7,0,0,0.540662 -22088,5009:372,-92,-7,0,0,0.537139 -22089,5009:371,-91,-7,0,0,0.534507 -22090,5009:370,-90,-7,0,0,0.537624 -22091,5008:479,-89,-7,0,0,0.534839 -22092,5008:478,-88,-7,0,0,0.530184 -22093,5008:477,-87,-7,0,0,0.529953 -22094,5008:476,-86,-7,0,0,0.527471 -22095,5008:475,-85,-7,0,0,0.523269 -22096,5008:374,-84,-7,0,0,0.521833 -22097,5008:373,-83,-7,0,0,0.511545 -22098,5008:372,-82,-7,0,0,0.50546 -22099,5008:371,-81,-7,0,0,0.5051 -22100,5008:370,-80,-7,0,0,0.472174 -22101,5003:475,-35,-7,0,0,0.626171 -22102,5003:374,-34,-7,0,0,0.619341 -22103,5003:373,-33,-7,0,0,0.613852 -22104,5003:372,-32,-7,0,0,0.609679 -22105,5003:371,-31,-7,0,0,0.607403 -22106,5003:370,-30,-7,0,0,0.605736 -22107,5002:479,-29,-7,0,0,0.604385 -22108,5002:478,-28,-7,0,0,0.602492 -22109,5002:477,-27,-7,0,0,0.600916 -22110,5002:476,-26,-7,0,0,0.599708 -22111,5002:475,-25,-7,0,0,0.597116 -22112,5002:374,-24,-7,0,0,0.593427 -22113,5002:373,-23,-7,0,0,0.591492 -22114,5002:372,-22,-7,0,0,0.589008 -22115,5002:371,-21,-7,0,0,0.588958 -22116,5002:370,-20,-7,0,0,0.586543 -22117,5001:479,-19,-7,0,0,0.586368 -22118,5001:478,-18,-7,0,0,0.584499 -22119,5001:477,-17,-7,0,0,0.582726 -22120,5001:476,-16,-7,0,0,0.581851 -22121,5001:475,-15,-7,0,0,0.576693 -22122,5001:374,-14,-7,0,0,0.575262 -22123,5001:373,-13,-7,0,0,0.574861 -22124,5001:372,-12,-7,0,0,0.574886 -22125,5001:371,-11,-7,0,0,0.574534 -22126,5001:370,-10,-7,0,0,0.570586 -22127,5000:479,-9,-7,0,0,0.565898 -22128,5000:478,-8,-7,0,0,0.562791 -22129,5000:477,-7,-7,0,0,0.563676 -22130,5000:476,-6,-7,0,0,0.566907 -22131,5000:475,-5,-7,0,0,0.567261 -22132,5000:374,-4,-7,0,0,0.567437 -22133,5000:373,-3,-7,0,0,0.574183 -22134,5000:372,-2,-7,0,0,0.580601 -22135,5000:371,-1,-7,0,0,0.585446 -22136,3000:371,0,-7,0,0,0.590499 -22137,3000:371,1,-7,0,0,0.5937 -22138,3000:372,2,-7,0,0,0.593774 -22139,3000:373,3,-7,0,0,0.593204 -22140,3000:374,4,-7,0,0,0.597141 -22141,3000:475,5,-7,0,0,0.603648 -22142,3000:476,6,-7,0,0,0.610168 -22143,3000:477,7,-7,0,0,0.622992 -22144,3000:478,8,-7,0,0,0.632618 -22145,3000:479,9,-7,0,0,0.635384 -22146,3001:370,10,-7,0,0,0.634717 -22147,3001:371,11,-7,0,0,0.625209 -22148,3001:372,12,-7,0,0,0.617377 -22149,3004:370,40,-7,0,0,0.666693 -22150,3004:371,41,-7,0,0,0.671855 -22151,3004:372,42,-7,0,0,0.673462 -22152,3004:373,43,-7,0,0,0.673055 -22153,3004:374,44,-7,0,0,0.671946 -22154,3004:475,45,-7,0,0,0.67079 -22155,3004:476,46,-7,0,0,0.671108 -22156,3004:477,47,-7,0,0,0.670358 -22157,3004:478,48,-7,0,0,0.669564 -22158,3004:479,49,-7,0,0,0.669154 -22159,3005:370,50,-7,0,0,0.668062 -22160,3005:371,51,-7,0,0,0.666236 -22161,3005:372,52,-7,0,0,0.662479 -22162,3005:373,53,-7,0,0,0.661859 -22163,3005:374,54,-7,0,0,0.664772 -22164,3005:475,55,-7,0,0,0.666647 -22165,3005:476,56,-7,0,0,0.667423 -22166,3005:477,57,-7,0,0,0.668381 -22167,3005:478,58,-7,0,0,0.66797 -22168,3005:479,59,-7,0,0,0.665161 -22169,3006:370,60,-7,0,0,0.66218 -22170,3006:371,61,-7,0,0,0.661376 -22171,3006:372,62,-7,0,0,0.661329 -22172,3006:373,63,-7,0,0,0.66172 -22173,3006:374,64,-7,0,0,0.661882 -22174,3006:475,65,-7,0,0,0.66218 -22175,3006:476,66,-7,0,0,0.663512 -22176,3006:477,67,-7,0,0,0.664635 -22177,3006:478,68,-7,0,0,0.66491 -22178,3006:479,69,-7,0,0,0.665161 -22179,3007:370,70,-7,0,0,0.665436 -22180,3007:371,71,-7,0,0,0.662847 -22181,3007:372,72,-7,0,0,0.668062 -22182,3007:374,74,-7,0,0,0.670086 -22183,3007:475,75,-7,0,0,0.670676 -22184,3007:476,76,-7,0,0,0.669927 -22185,3007:477,77,-7,0,0,0.668312 -22186,3007:478,78,-7,0,0,0.667651 -22187,3007:479,79,-7,0,0,0.666076 -22188,3008:370,80,-7,0,0,0.661767 -22189,3008:371,81,-7,0,0,0.658493 -22190,3008:372,82,-7,0,0,0.656874 -22191,3008:373,83,-7,0,0,0.656364 -22192,3008:374,84,-7,0,0,0.655529 -22193,3008:475,85,-7,0,0,0.655205 -22194,3008:476,86,-7,0,0,0.654229 -22195,3008:477,87,-7,0,0,0.654578 -22196,3008:478,88,-7,0,0,0.655878 -22197,3008:479,89,-7,0,0,0.65692 -22198,3009:370,90,-7,0,0,0.6578 -22199,3009:371,91,-7,0,0,0.65773 -22200,3009:372,92,-7,0,0,0.657175 -22201,3009:373,93,-7,0,0,0.656364 -22202,3009:374,94,-7,0,0,0.655112 -22203,3009:475,95,-7,0,0,0.654856 -22204,3009:476,96,-7,0,0,0.653136 -22205,3009:477,97,-7,0,0,0.651808 -22206,3009:478,98,-7,0,0,0.652065 -22207,3009:479,99,-7,0,0,0.652833 -22208,3010:370,100,-7,0,0,0.653369 -22209,3010:371,101,-7,0,0,0.654601 -22210,3010:372,102,-7,0,0,0.655483 -22211,3010:373,103,-7,0,0,0.655205 -22212,3010:374,104,-7,0,0,0.658424 -22213,3010:475,105,-7,0,0,0.664864 -22214,3010:476,106,-7,0,0,0.663879 -22215,3011:475,115,-7,0,0,0.688106 -22216,3011:476,116,-7,0,0,0.690219 -22217,3011:477,117,-7,0,0,0.677672 -22218,3011:478,118,-7,0,0,0.678749 -22219,3011:479,119,-7,0,0,0.674342 -22220,3012:370,120,-7,0,0,0.678323 -22221,3012:371,121,-7,0,0,0.687136 -22222,3012:372,122,-7,0,0,0.691953 -22223,3012:373,123,-7,0,0,0.690659 -22224,3012:374,124,-7,0,0,0.691602 -22225,3012:475,125,-7,0,0,0.690527 -22226,3012:476,126,-7,0,0,0.688371 -22227,3012:477,127,-7,0,0,0.685654 -22228,3012:478,128,-7,0,0,0.682813 -22229,3012:479,129,-7,0,0,0.684324 -22230,3013:370,130,-7,0,0,0.687379 -22231,3013:371,131,-7,0,0,0.684878 -22232,3013:372,132,-7,0,0,0.683813 -22233,3013:373,133,-7,0,0,0.67998 -22234,3013:374,134,-7,0,0,0.677134 -22235,3013:475,135,-7,0,0,0.690593 -22236,3013:476,136,-7,0,0,0.677156 -22237,3013:477,137,-7,0,0,0.675334 -22238,3013:478,138,-7,0,0,0.701719 -22239,3014:478,148,-7,0,0,0.672399 -22240,3014:479,149,-7,0,0,0.675492 -22241,3015:370,150,-7,0,0,0.676707 -22242,3015:371,151,-7,0,0,0.678794 -22243,3015:372,152,-7,0,0,0.685942 -22244,3015:373,153,-7,0,0,0.689274 -22245,3015:374,154,-7,0,0,0.690768 -22246,3015:475,155,-7,0,0,0.692018 -22247,3015:476,156,-7,0,0,0.688724 -22248,3015:478,158,-7,0,0,0.687599 -22249,3015:479,159,-7,0,0,0.68718 -22250,3016:370,160,-7,0,0,0.685344 -22251,3016:371,161,-7,0,0,0.684235 -22252,3016:372,162,-7,0,0,0.684878 -22253,3016:373,163,-7,0,0,0.684124 -22254,3016:374,164,-7,0,0,0.683569 -22255,3016:475,165,-7,0,0,0.680203 -22256,3016:476,166,-7,0,0,0.677605 -22257,3016:477,167,-7,0,0,0.677897 -22258,3016:478,168,-7,0,0,0.678615 -22259,3016:479,169,-7,0,0,0.678749 -22260,3017:370,170,-7,0,0,0.67904 -22261,3017:371,171,-7,0,0,0.678906 -22262,3017:372,172,-7,0,0,0.678143 -22263,3017:373,173,-7,0,0,0.678413 -22264,3017:374,174,-7,0,0,0.678995 -22265,3017:475,175,-7,0,0,0.679085 -22266,3017:476,176,-7,0,0,0.678211 -22267,3017:477,177,-7,0,0,0.677852 -22268,3017:478,178,-7,0,0,0.678659 -22269,3017:479,179,-7,0,0,0.67989 -22270,3018:370,180,-7,0,0,0.681163 -22271,5018:360,-180,-6,0,0,0.680382 -22272,5017:469,-179,-6,0,0,0.680159 -22273,5017:468,-178,-6,0,0,0.678503 -22274,5017:467,-177,-6,0,0,0.677134 -22275,5017:466,-176,-6,0,0,0.676504 -22276,5017:465,-175,-6,0,0,0.675919 -22277,5017:364,-174,-6,0,0,0.676842 -22278,5017:363,-173,-6,0,0,0.67774 -22279,5017:362,-172,-6,0,0,0.677583 -22280,5017:361,-171,-6,0,0,0.676954 -22281,5017:360,-170,-6,0,0,0.676167 -22282,5016:469,-169,-6,0,0,0.675176 -22283,5016:468,-168,-6,0,0,0.6745 -22284,5016:467,-167,-6,0,0,0.67459 -22285,5016:466,-166,-6,0,0,0.673032 -22286,5016:465,-165,-6,0,0,0.671765 -22287,5016:364,-164,-6,0,0,0.670881 -22288,5016:363,-163,-6,0,0,0.67029 -22289,5016:362,-162,-6,0,0,0.668882 -22290,5016:361,-161,-6,0,0,0.666738 -22291,5016:360,-160,-6,0,0,0.664406 -22292,5015:469,-159,-6,0,0,0.662019 -22293,5015:468,-158,-6,0,0,0.659971 -22294,5015:467,-157,-6,0,0,0.657985 -22295,5015:466,-156,-6,0,0,0.656526 -22296,5015:465,-155,-6,0,0,0.654717 -22297,5015:364,-154,-6,0,0,0.652833 -22298,5015:363,-153,-6,0,0,0.650594 -22299,5015:362,-152,-6,0,0,0.648513 -22300,5015:361,-151,-6,0,0,0.647013 -22301,5015:360,-150,-6,0,0,0.64565 -22302,5014:469,-149,-6,0,0,0.643886 -22303,5014:468,-148,-6,0,0,0.64207 -22304,5014:467,-147,-6,0,0,0.640628 -22305,5014:466,-146,-6,0,0,0.639255 -22306,5014:465,-145,-6,0,0,0.636906 -22307,5014:364,-144,-6,0,0,0.634765 -22308,5014:363,-143,-6,0,0,0.632714 -22309,5014:362,-142,-6,0,0,0.630347 -22310,5014:361,-141,-6,0,0,0.627445 -22311,5014:360,-140,-6,0,0,0.624824 -22312,5013:469,-139,-6,0,0,0.622944 -22313,5013:468,-138,-6,0,0,0.622243 -22314,5013:467,-137,-6,0,0,0.620769 -22315,5013:466,-136,-6,0,0,0.619438 -22316,5013:465,-135,-6,0,0,0.617838 -22317,5013:364,-134,-6,0,0,0.615823 -22318,5013:363,-133,-6,0,0,0.613292 -22319,5013:362,-132,-6,0,0,0.610094 -22320,5013:361,-131,-6,0,0,0.607305 -22321,5013:360,-130,-6,0,0,0.605784 -22322,5012:469,-129,-6,0,0,0.604213 -22323,5012:468,-128,-6,0,0,0.602492 -22324,5012:467,-127,-6,0,0,0.6003 -22325,5012:466,-126,-6,0,0,0.597906 -22326,5012:465,-125,-6,0,0,0.594914 -22327,5012:364,-124,-6,0,0,0.591319 -22328,5012:363,-123,-6,0,0,0.588261 -22329,5012:362,-122,-6,0,0,0.584798 -22330,5012:361,-121,-6,0,0,0.581476 -22331,5012:360,-120,-6,0,0,0.578948 -22332,5011:469,-119,-6,0,0,0.576417 -22333,5011:468,-118,-6,0,0,0.573605 -22334,5011:467,-117,-6,0,0,0.570788 -22335,5011:466,-116,-6,0,0,0.568319 -22336,5011:465,-115,-6,0,0,0.566327 -22337,5011:364,-114,-6,0,0,0.563953 -22338,5011:363,-113,-6,0,0,0.561248 -22339,5011:362,-112,-6,0,0,0.558311 -22340,5011:361,-111,-6,0,0,0.555294 -22341,5011:360,-110,-6,0,0,0.552984 -22342,5010:469,-109,-6,0,0,0.55179 -22343,5010:468,-108,-6,0,0,0.550926 -22344,5010:467,-107,-6,0,0,0.54851 -22345,5010:466,-106,-6,0,0,0.545073 -22346,5010:465,-105,-6,0,0,0.544793 -22347,5010:364,-104,-6,0,0,0.547034 -22348,5010:363,-103,-6,0,0,0.54599 -22349,5010:362,-102,-6,0,0,0.543748 -22350,5010:361,-101,-6,0,0,0.542142 -22351,5010:360,-100,-6,0,0,0.542677 -22352,5009:469,-99,-6,0,0,0.543595 -22353,5009:468,-98,-6,0,0,0.541912 -22354,5009:467,-97,-6,0,0,0.540611 -22355,5009:466,-96,-6,0,0,0.540738 -22356,5009:465,-95,-6,0,0,0.542371 -22357,5009:364,-94,-6,0,0,0.547213 -22358,5009:363,-93,-6,0,0,0.554279 -22359,5009:362,-92,-6,0,0,0.559654 -22360,5009:361,-91,-6,0,0,0.56102 -22361,5009:360,-90,-6,0,0,0.560185 -22362,5008:469,-89,-6,0,0,0.55783 -22363,5008:468,-88,-6,0,0,0.551612 -22364,5008:467,-87,-6,0,0,0.544155 -22365,5008:466,-86,-6,0,0,0.538237 -22366,5008:465,-85,-6,0,0,0.532129 -22367,5008:364,-84,-6,0,0,0.522731 -22368,5008:363,-83,-6,0,0,0.516217 -22369,5008:362,-82,-6,0,0,0.524627 -22370,5008:361,-81,-6,0,0,0.512778 -22371,5003:465,-35,-6,0,0,0.61711 -22372,5003:364,-34,-6,0,0,0.612219 -22373,5003:363,-33,-6,0,0,0.612975 -22374,5003:362,-32,-6,0,0,0.612877 -22375,5003:361,-31,-6,0,0,0.611389 -22376,5003:360,-30,-6,0,0,0.610461 -22377,5002:469,-29,-6,0,0,0.608113 -22378,5002:468,-28,-6,0,0,0.603894 -22379,5002:467,-27,-6,0,0,0.602073 -22380,5002:466,-26,-6,0,0,0.601015 -22381,5002:465,-25,-6,0,0,0.600669 -22382,5002:364,-24,-6,0,0,0.599585 -22383,5002:363,-23,-6,0,0,0.596843 -22384,5002:362,-22,-6,0,0,0.594617 -22385,5002:361,-21,-6,0,0,0.594096 -22386,5002:360,-20,-6,0,0,0.593898 -22387,5001:469,-19,-6,0,0,0.594369 -22388,5001:468,-18,-6,0,0,0.594468 -22389,5001:467,-17,-6,0,0,0.592982 -22390,5001:466,-16,-6,0,0,0.593279 -22391,5001:465,-15,-6,0,0,0.592436 -22392,5001:364,-14,-6,0,0,0.589431 -22393,5001:363,-13,-6,0,0,0.586942 -22394,5001:362,-12,-6,0,0,0.586244 -22395,5001:361,-11,-6,0,0,0.585097 -22396,5001:360,-10,-6,0,0,0.581076 -22397,5000:469,-9,-6,0,0,0.578999 -22398,5000:468,-8,-6,0,0,0.580701 -22399,5000:467,-7,-6,0,0,0.583924 -22400,5000:466,-6,-6,0,0,0.585796 -22401,5000:465,-5,-6,0,0,0.587962 -22402,5000:364,-4,-6,0,0,0.589654 -22403,5000:363,-3,-6,0,0,0.591791 -22404,5000:362,-2,-6,0,0,0.595879 -22405,5000:361,-1,-6,0,0,0.601138 -22406,3000:361,0,-6,0,0,0.604262 -22407,3000:361,1,-6,0,0,0.605686 -22408,3000:362,2,-6,0,0,0.606888 -22409,3000:363,3,-6,0,0,0.607109 -22410,3000:364,4,-6,0,0,0.612365 -22411,3000:465,5,-6,0,0,0.619195 -22412,3000:466,6,-6,0,0,0.625113 -22413,3000:467,7,-6,0,0,0.631304 -22414,3000:468,8,-6,0,0,0.635265 -22415,3000:469,9,-6,0,0,0.632762 -22416,3001:360,10,-6,0,0,0.621712 -22417,3001:361,11,-6,0,0,0.584124 -22418,3003:469,39,-6,0,0,0.666556 -22419,3004:360,40,-6,0,0,0.669746 -22420,3004:361,41,-6,0,0,0.676414 -22421,3004:362,42,-6,0,0,0.679062 -22422,3004:363,43,-6,0,0,0.6823 -22423,3004:364,44,-6,0,0,0.683324 -22424,3004:465,45,-6,0,0,0.680762 -22425,3004:466,46,-6,0,0,0.678592 -22426,3004:467,47,-6,0,0,0.677403 -22427,3004:468,48,-6,0,0,0.675019 -22428,3004:469,49,-6,0,0,0.672557 -22429,3005:360,50,-6,0,0,0.670041 -22430,3005:361,51,-6,0,0,0.668631 -22431,3005:362,52,-6,0,0,0.662571 -22432,3005:363,53,-6,0,0,0.659232 -22433,3005:364,54,-6,0,0,0.660293 -22434,3005:465,55,-6,0,0,0.661145 -22435,3005:466,56,-6,0,0,0.662433 -22436,3005:467,57,-6,0,0,0.666511 -22437,3005:468,58,-6,0,0,0.669359 -22438,3005:469,59,-6,0,0,0.669495 -22439,3006:360,60,-6,0,0,0.668016 -22440,3006:361,61,-6,0,0,0.667058 -22441,3006:362,62,-6,0,0,0.666099 -22442,3006:363,63,-6,0,0,0.664589 -22443,3006:364,64,-6,0,0,0.66342 -22444,3006:465,65,-6,0,0,0.662364 -22445,3006:466,66,-6,0,0,0.661697 -22446,3006:467,67,-6,0,0,0.661145 -22447,3006:468,68,-6,0,0,0.65914 -22448,3006:469,69,-6,0,0,0.658978 -22449,3007:360,70,-6,0,0,0.661859 -22450,3007:361,71,-6,0,0,0.662456 -22451,3007:362,72,-6,0,0,0.663787 -22452,3007:364,74,-6,0,0,0.666008 -22453,3007:465,75,-6,0,0,0.666693 -22454,3007:466,76,-6,0,0,0.667446 -22455,3007:467,77,-6,0,0,0.667856 -22456,3007:468,78,-6,0,0,0.667674 -22457,3007:469,79,-6,0,0,0.667469 -22458,3008:360,80,-6,0,0,0.66683 -22459,3008:361,81,-6,0,0,0.666236 -22460,3008:362,82,-6,0,0,0.666511 -22461,3008:363,83,-6,0,0,0.66667 -22462,3008:364,84,-6,0,0,0.667514 -22463,3008:465,85,-6,0,0,0.668631 -22464,3008:466,86,-6,0,0,0.668153 -22465,3008:467,87,-6,0,0,0.667058 -22466,3008:468,88,-6,0,0,0.666921 -22467,3008:469,89,-6,0,0,0.666442 -22468,3009:360,90,-6,0,0,0.666031 -22469,3009:361,91,-6,0,0,0.665711 -22470,3009:362,92,-6,0,0,0.664246 -22471,3009:363,93,-6,0,0,0.663535 -22472,3009:364,94,-6,0,0,0.662318 -22473,3009:465,95,-6,0,0,0.6608 -22474,3009:466,96,-6,0,0,0.659763 -22475,3009:467,97,-6,0,0,0.659024 -22476,3009:468,98,-6,0,0,0.659186 -22477,3009:469,99,-6,0,0,0.659647 -22478,3010:360,100,-6,0,0,0.660155 -22479,3010:361,101,-6,0,0,0.660063 -22480,3010:362,102,-6,0,0,0.65944 -22481,3010:363,103,-6,0,0,0.659394 -22482,3010:364,104,-6,0,0,0.668677 -22483,3010:467,107,-6,0,0,0.677942 -22484,3010:468,108,-6,0,0,0.674703 -22485,3010:469,109,-6,0,0,0.674703 -22486,3011:360,110,-6,0,0,0.672625 -22487,3011:361,111,-6,0,0,0.673868 -22488,3011:362,112,-6,0,0,0.675829 -22489,3011:363,113,-6,0,0,0.677336 -22490,3011:364,114,-6,0,0,0.677762 -22491,3011:465,115,-6,0,0,0.679152 -22492,3011:466,116,-6,0,0,0.683257 -22493,3011:467,117,-6,0,0,0.683946 -22494,3011:468,118,-6,0,0,0.665528 -22495,3011:469,119,-6,0,0,0.67138 -22496,3012:361,121,-6,0,0,0.678838 -22497,3012:362,122,-6,0,0,0.685055 -22498,3012:364,124,-6,0,0,0.685942 -22499,3012:465,125,-6,0,0,0.681119 -22500,3012:466,126,-6,0,0,0.686915 -22501,3012:467,127,-6,0,0,0.685477 -22502,3012:468,128,-6,0,0,0.684767 -22503,3012:469,129,-6,0,0,0.685011 -22504,3013:360,130,-6,0,0,0.684812 -22505,3013:361,131,-6,0,0,0.683191 -22506,3013:362,132,-6,0,0,0.681097 -22507,3013:363,133,-6,0,0,0.682033 -22508,3013:364,134,-6,0,0,0.685631 -22509,3013:465,135,-6,0,0,0.690197 -22510,3013:466,136,-6,0,0,0.67147 -22511,3013:467,137,-6,0,0,0.678928 -22512,3013:468,138,-6,0,0,0.702321 -22513,3014:467,147,-6,0,0,0.669881 -22514,3014:468,148,-6,0,0,0.676842 -22515,3014:469,149,-6,0,0,0.679175 -22516,3015:360,150,-6,0,0,0.680762 -22517,3015:363,153,-6,0,0,0.682211 -22518,3015:364,154,-6,0,0,0.686627 -22519,3015:466,156,-6,0,0,0.680985 -22520,3015:467,157,-6,0,0,0.681342 -22521,3015:468,158,-6,0,0,0.683346 -22522,3015:469,159,-6,0,0,0.683324 -22523,3016:360,160,-6,0,0,0.681877 -22524,3016:361,161,-6,0,0,0.676775 -22525,3016:362,162,-6,0,0,0.68279 -22526,3016:363,163,-6,0,0,0.683413 -22527,3016:364,164,-6,0,0,0.682546 -22528,3016:465,165,-6,0,0,0.681409 -22529,3016:466,166,-6,0,0,0.67904 -22530,3016:467,167,-6,0,0,0.678883 -22531,3016:468,168,-6,0,0,0.679756 -22532,3016:469,169,-6,0,0,0.679958 -22533,3017:360,170,-6,0,0,0.678794 -22534,3017:361,171,-6,0,0,0.678211 -22535,3017:362,172,-6,0,0,0.678143 -22536,3017:363,173,-6,0,0,0.678368 -22537,3017:364,174,-6,0,0,0.678503 -22538,3017:465,175,-6,0,0,0.67857 -22539,3017:466,176,-6,0,0,0.678301 -22540,3017:467,177,-6,0,0,0.678861 -22541,3017:468,178,-6,0,0,0.67942 -22542,3017:469,179,-6,0,0,0.680069 -22543,3018:360,180,-6,0,0,0.680382 -22544,5018:350,-180,-5,0,0,0.680606 -22545,5017:459,-179,-5,0,0,0.679599 -22546,5017:458,-178,-5,0,0,0.678637 -22547,5017:457,-177,-5,0,0,0.678009 -22548,5017:456,-176,-5,0,0,0.67756 -22549,5017:455,-175,-5,0,0,0.676864 -22550,5017:354,-174,-5,0,0,0.677852 -22551,5017:353,-173,-5,0,0,0.676437 -22552,5017:352,-172,-5,0,0,0.674748 -22553,5017:351,-171,-5,0,0,0.673371 -22554,5017:350,-170,-5,0,0,0.672059 -22555,5016:459,-169,-5,0,0,0.671221 -22556,5016:458,-168,-5,0,0,0.670563 -22557,5016:457,-167,-5,0,0,0.6697 -22558,5016:456,-166,-5,0,0,0.668677 -22559,5016:455,-165,-5,0,0,0.66756 -22560,5016:354,-164,-5,0,0,0.666122 -22561,5016:353,-163,-5,0,0,0.664566 -22562,5016:352,-162,-5,0,0,0.662823 -22563,5016:351,-161,-5,0,0,0.660593 -22564,5016:350,-160,-5,0,0,0.658678 -22565,5015:459,-159,-5,0,0,0.657268 -22566,5015:458,-158,-5,0,0,0.655808 -22567,5015:457,-157,-5,0,0,0.653764 -22568,5015:456,-156,-5,0,0,0.651668 -22569,5015:455,-155,-5,0,0,0.650081 -22570,5015:354,-154,-5,0,0,0.647764 -22571,5015:353,-153,-5,0,0,0.645627 -22572,5015:352,-152,-5,0,0,0.643626 -22573,5015:351,-151,-5,0,0,0.642093 -22574,5015:350,-150,-5,0,0,0.640912 -22575,5014:459,-149,-5,0,0,0.640013 -22576,5014:458,-148,-5,0,0,0.639113 -22577,5014:457,-147,-5,0,0,0.637713 -22578,5014:456,-146,-5,0,0,0.635764 -22579,5014:455,-145,-5,0,0,0.633454 -22580,5014:354,-144,-5,0,0,0.631352 -22581,5014:353,-143,-5,0,0,0.629077 -22582,5014:352,-142,-5,0,0,0.626749 -22583,5014:351,-141,-5,0,0,0.62468 -22584,5014:350,-140,-5,0,0,0.622026 -22585,5013:459,-139,-5,0,0,0.620043 -22586,5013:458,-138,-5,0,0,0.617425 -22587,5013:457,-137,-5,0,0,0.614728 -22588,5013:456,-136,-5,0,0,0.611779 -22589,5013:455,-135,-5,0,0,0.609165 -22590,5013:354,-134,-5,0,0,0.606839 -22591,5013:353,-133,-5,0,0,0.604852 -22592,5013:352,-132,-5,0,0,0.603722 -22593,5013:351,-131,-5,0,0,0.602836 -22594,5013:350,-130,-5,0,0,0.600226 -22595,5012:459,-129,-5,0,0,0.598055 -22596,5012:458,-128,-5,0,0,0.595483 -22597,5012:457,-127,-5,0,0,0.593155 -22598,5012:456,-126,-5,0,0,0.590449 -22599,5012:455,-125,-5,0,0,0.588037 -22600,5012:354,-124,-5,0,0,0.585945 -22601,5012:353,-123,-5,0,0,0.583874 -22602,5012:352,-122,-5,0,0,0.581901 -22603,5012:351,-121,-5,0,0,0.58015 -22604,5012:350,-120,-5,0,0,0.578899 -22605,5011:459,-119,-5,0,0,0.57772 -22606,5011:458,-118,-5,0,0,0.576191 -22607,5011:457,-117,-5,0,0,0.573403 -22608,5011:456,-116,-5,0,0,0.570889 -22609,5011:455,-115,-5,0,0,0.568925 -22610,5011:354,-114,-5,0,0,0.566832 -22611,5011:353,-113,-5,0,0,0.564535 -22612,5011:352,-112,-5,0,0,0.561957 -22613,5011:351,-111,-5,0,0,0.559805 -22614,5011:350,-110,-5,0,0,0.55816 -22615,5010:459,-109,-5,0,0,0.557475 -22616,5010:458,-108,-5,0,0,0.556638 -22617,5010:457,-107,-5,0,0,0.556638 -22618,5010:456,-106,-5,0,0,0.557019 -22619,5010:455,-105,-5,0,0,0.556638 -22620,5010:354,-104,-5,0,0,0.557424 -22621,5010:353,-103,-5,0,0,0.55603 -22622,5010:352,-102,-5,0,0,0.554939 -22623,5010:351,-101,-5,0,0,0.553975 -22624,5010:350,-100,-5,0,0,0.552121 -22625,5009:459,-99,-5,0,0,0.550011 -22626,5009:458,-98,-5,0,0,0.550494 -22627,5009:457,-97,-5,0,0,0.553136 -22628,5009:456,-96,-5,0,0,0.55334 -22629,5009:455,-95,-5,0,0,0.553873 -22630,5009:354,-94,-5,0,0,0.555345 -22631,5009:353,-93,-5,0,0,0.557728 -22632,5009:352,-92,-5,0,0,0.560616 -22633,5009:351,-91,-5,0,0,0.563397 -22634,5009:350,-90,-5,0,0,0.566579 -22635,5008:459,-89,-5,0,0,0.564535 -22636,5008:458,-88,-5,0,0,0.558742 -22637,5008:457,-87,-5,0,0,0.553822 -22638,5008:456,-86,-5,0,0,0.548001 -22639,5008:455,-85,-5,0,0,0.542524 -22640,5008:354,-84,-5,0,0,0.538748 -22641,5008:353,-83,-5,0,0,0.536577 -22642,5008:352,-82,-5,0,0,0.541121 -22643,5008:351,-81,-5,0,0,0.528289 -22644,5003:458,-38,-5,0,0,0.622195 -22645,5003:457,-37,-5,0,0,0.615798 -22646,5003:456,-36,-5,0,0,0.616721 -22647,5003:455,-35,-5,0,0,0.617474 -22648,5003:354,-34,-5,0,0,0.616916 -22649,5003:353,-33,-5,0,0,0.616042 -22650,5003:352,-32,-5,0,0,0.615093 -22651,5003:351,-31,-5,0,0,0.613803 -22652,5003:350,-30,-5,0,0,0.612389 -22653,5002:459,-29,-5,0,0,0.611926 -22654,5002:458,-28,-5,0,0,0.611487 -22655,5002:457,-27,-5,0,0,0.610534 -22656,5002:456,-26,-5,0,0,0.608456 -22657,5002:455,-25,-5,0,0,0.606766 -22658,5002:354,-24,-5,0,0,0.60679 -22659,5002:353,-23,-5,0,0,0.607476 -22660,5002:352,-22,-5,0,0,0.606912 -22661,5002:351,-21,-5,0,0,0.605834 -22662,5002:350,-20,-5,0,0,0.604581 -22663,5001:459,-19,-5,0,0,0.603181 -22664,5001:458,-18,-5,0,0,0.602541 -22665,5001:457,-17,-5,0,0,0.603402 -22666,5001:456,-16,-5,0,0,0.605073 -22667,5001:455,-15,-5,0,0,0.605932 -22668,5001:354,-14,-5,0,0,0.606005 -22669,5001:353,-13,-5,0,0,0.606447 -22670,5001:352,-12,-5,0,0,0.606692 -22671,5001:351,-11,-5,0,0,0.60701 -22672,5001:350,-10,-5,0,0,0.608627 -22673,5000:459,-9,-5,0,0,0.610021 -22674,5000:458,-8,-5,0,0,0.610876 -22675,5000:457,-7,-5,0,0,0.611219 -22676,5000:456,-6,-5,0,0,0.612633 -22677,5000:455,-5,-5,0,0,0.61373 -22678,5000:354,-4,-5,0,0,0.614461 -22679,5000:353,-3,-5,0,0,0.615677 -22680,5000:352,-2,-5,0,0,0.617328 -22681,5000:351,-1,-5,0,0,0.617717 -22682,3000:351,0,-5,0,0,0.616649 -22683,3000:351,1,-5,0,0,0.616867 -22684,3000:352,2,-5,0,0,0.618783 -22685,3000:353,3,-5,0,0,0.622919 -22686,3000:354,4,-5,0,0,0.626604 -22687,3000:455,5,-5,0,0,0.628502 -22688,3000:456,6,-5,0,0,0.629796 -22689,3000:457,7,-5,0,0,0.630634 -22690,3000:458,8,-5,0,0,0.627445 -22691,3000:459,9,-5,0,0,0.618008 -22692,3001:350,10,-5,0,0,0.603353 -22693,3001:351,11,-5,0,0,0.596448 -22694,3004:350,40,-5,0,0,0.655645 -22695,3004:351,41,-5,0,0,0.670948 -22696,3004:352,42,-5,0,0,0.676999 -22697,3004:353,43,-5,0,0,0.676437 -22698,3004:354,44,-5,0,0,0.67045 -22699,3004:455,45,-5,0,0,0.67423 -22700,3004:456,46,-5,0,0,0.683591 -22701,3004:457,47,-5,0,0,0.684346 -22702,3004:458,48,-5,0,0,0.681944 -22703,3004:459,49,-5,0,0,0.679443 -22704,3005:350,50,-5,0,0,0.676864 -22705,3005:351,51,-5,0,0,0.6731 -22706,3005:352,52,-5,0,0,0.669268 -22707,3005:353,53,-5,0,0,0.663742 -22708,3005:354,54,-5,0,0,0.660454 -22709,3005:455,55,-5,0,0,0.659417 -22710,3005:456,56,-5,0,0,0.661697 -22711,3005:457,57,-5,0,0,0.663397 -22712,3005:458,58,-5,0,0,0.667742 -22713,3005:459,59,-5,0,0,0.668699 -22714,3006:350,60,-5,0,0,0.668426 -22715,3006:351,61,-5,0,0,0.667674 -22716,3006:352,62,-5,0,0,0.665734 -22717,3006:353,63,-5,0,0,0.66397 -22718,3006:354,64,-5,0,0,0.662962 -22719,3006:455,65,-5,0,0,0.66156 -22720,3006:456,66,-5,0,0,0.659809 -22721,3006:457,67,-5,0,0,0.657892 -22722,3006:458,68,-5,0,0,0.656666 -22723,3006:459,69,-5,0,0,0.656225 -22724,3007:350,70,-5,0,0,0.656827 -22725,3007:351,71,-5,0,0,0.658146 -22726,3007:352,72,-5,0,0,0.659716 -22727,3007:354,74,-5,0,0,0.661329 -22728,3007:455,75,-5,0,0,0.66149 -22729,3007:456,76,-5,0,0,0.662019 -22730,3007:457,77,-5,0,0,0.662571 -22731,3007:458,78,-5,0,0,0.662732 -22732,3007:459,79,-5,0,0,0.663191 -22733,3008:350,80,-5,0,0,0.664223 -22734,3008:351,81,-5,0,0,0.665665 -22735,3008:352,82,-5,0,0,0.666761 -22736,3008:353,83,-5,0,0,0.667651 -22737,3008:354,84,-5,0,0,0.669154 -22738,3008:455,85,-5,0,0,0.670586 -22739,3008:456,86,-5,0,0,0.671855 -22740,3008:457,87,-5,0,0,0.671697 -22741,3008:458,88,-5,0,0,0.670722 -22742,3008:459,89,-5,0,0,0.670155 -22743,3009:350,90,-5,0,0,0.669109 -22744,3009:351,91,-5,0,0,0.667537 -22745,3009:352,92,-5,0,0,0.66635 -22746,3009:353,93,-5,0,0,0.665299 -22747,3009:354,94,-5,0,0,0.663948 -22748,3009:455,95,-5,0,0,0.662709 -22749,3009:456,96,-5,0,0,0.661628 -22750,3009:457,97,-5,0,0,0.660892 -22751,3009:458,98,-5,0,0,0.660431 -22752,3009:459,99,-5,0,0,0.660662 -22753,3010:350,100,-5,0,0,0.661628 -22754,3010:351,101,-5,0,0,0.663191 -22755,3010:352,102,-5,0,0,0.668972 -22756,3010:457,107,-5,0,0,0.682122 -22757,3010:458,108,-5,0,0,0.680091 -22758,3010:459,109,-5,0,0,0.674274 -22759,3011:350,110,-5,0,0,0.668995 -22760,3011:351,111,-5,0,0,0.671651 -22761,3011:352,112,-5,0,0,0.675649 -22762,3011:353,113,-5,0,0,0.677538 -22763,3011:354,114,-5,0,0,0.67942 -22764,3011:456,116,-5,0,0,0.686185 -22765,3011:457,117,-5,0,0,0.686052 -22766,3011:458,118,-5,0,0,0.677942 -22767,3011:459,119,-5,0,0,0.669655 -22768,3012:351,121,-5,0,0,0.681052 -22769,3012:353,123,-5,0,0,0.682501 -22770,3012:354,124,-5,0,0,0.685145 -22771,3012:455,125,-5,0,0,0.686163 -22772,3012:456,126,-5,0,0,0.683702 -22773,3012:457,127,-5,0,0,0.676932 -22774,3012:458,128,-5,0,0,0.681677 -22775,3012:459,129,-5,0,0,0.686849 -22776,3013:350,130,-5,0,0,0.687246 -22777,3013:351,131,-5,0,0,0.681008 -22778,3013:352,132,-5,0,0,0.680427 -22779,3013:353,133,-5,0,0,0.679935 -22780,3013:354,134,-5,0,0,0.687246 -22781,3014:455,145,-5,0,0,0.659532 -22782,3014:456,146,-5,0,0,0.673122 -22783,3014:457,147,-5,0,0,0.674387 -22784,3014:458,148,-5,0,0,0.674883 -22785,3014:459,149,-5,0,0,0.674906 -22786,3015:350,150,-5,0,0,0.677178 -22787,3015:351,151,-5,0,0,0.680494 -22788,3015:352,152,-5,0,0,0.679175 -22789,3015:354,154,-5,0,0,0.677044 -22790,3015:455,155,-5,0,0,0.67637 -22791,3015:456,156,-5,0,0,0.676796 -22792,3015:457,157,-5,0,0,0.677089 -22793,3015:458,158,-5,0,0,0.678682 -22794,3015:459,159,-5,0,0,0.678547 -22795,3016:350,160,-5,0,0,0.677381 -22796,3016:351,161,-5,0,0,0.677628 -22797,3016:352,162,-5,0,0,0.67783 -22798,3016:353,163,-5,0,0,0.678682 -22799,3016:354,164,-5,0,0,0.678749 -22800,3016:455,165,-5,0,0,0.678816 -22801,3016:456,166,-5,0,0,0.677897 -22802,3016:457,167,-5,0,0,0.677538 -22803,3016:458,168,-5,0,0,0.678189 -22804,3016:459,169,-5,0,0,0.677785 -22805,3017:350,170,-5,0,0,0.676819 -22806,3017:351,171,-5,0,0,0.676324 -22807,3017:352,172,-5,0,0,0.675717 -22808,3017:353,173,-5,0,0,0.675649 -22809,3017:354,174,-5,0,0,0.676347 -22810,3017:455,175,-5,0,0,0.676932 -22811,3017:456,176,-5,0,0,0.676707 -22812,3017:457,177,-5,0,0,0.677313 -22813,3017:458,178,-5,0,0,0.67839 -22814,3017:459,179,-5,0,0,0.679622 -22815,3018:350,180,-5,0,0,0.680606 -22816,5018:140,-180,-4,0,0,0.678032 -22817,5017:249,-179,-4,0,0,0.678099 -22818,5017:248,-178,-4,0,0,0.678009 -22819,5017:247,-177,-4,0,0,0.677785 -22820,5017:246,-176,-4,0,0,0.678143 -22821,5017:245,-175,-4,0,0,0.678816 -22822,5017:144,-174,-4,0,0,0.679287 -22823,5017:143,-173,-4,0,0,0.678861 -22824,5017:142,-172,-4,0,0,0.677246 -22825,5017:141,-171,-4,0,0,0.675492 -22826,5017:140,-170,-4,0,0,0.672896 -22827,5016:249,-169,-4,0,0,0.671402 -22828,5016:248,-168,-4,0,0,0.669995 -22829,5016:247,-167,-4,0,0,0.668631 -22830,5016:246,-166,-4,0,0,0.66731 -22831,5016:245,-165,-4,0,0,0.666236 -22832,5016:144,-164,-4,0,0,0.664727 -22833,5016:143,-163,-4,0,0,0.662663 -22834,5016:142,-162,-4,0,0,0.660754 -22835,5016:141,-161,-4,0,0,0.659024 -22836,5016:140,-160,-4,0,0,0.65773 -22837,5015:249,-159,-4,0,0,0.656225 -22838,5015:248,-158,-4,0,0,0.654508 -22839,5015:247,-157,-4,0,0,0.652554 -22840,5015:246,-156,-4,0,0,0.650385 -22841,5015:245,-155,-4,0,0,0.649169 -22842,5015:144,-154,-4,0,0,0.647154 -22843,5015:143,-153,-4,0,0,0.645345 -22844,5015:142,-152,-4,0,0,0.644027 -22845,5015:141,-151,-4,0,0,0.641904 -22846,5015:140,-150,-4,0,0,0.640415 -22847,5014:249,-149,-4,0,0,0.63814 -22848,5014:248,-148,-4,0,0,0.636383 -22849,5014:247,-147,-4,0,0,0.634216 -22850,5014:246,-146,-4,0,0,0.631471 -22851,5014:245,-145,-4,0,0,0.629173 -22852,5014:144,-144,-4,0,0,0.626941 -22853,5014:143,-143,-4,0,0,0.624776 -22854,5014:142,-142,-4,0,0,0.622654 -22855,5014:141,-141,-4,0,0,0.620164 -22856,5014:140,-140,-4,0,0,0.617814 -22857,5013:249,-139,-4,0,0,0.615749 -22858,5013:248,-138,-4,0,0,0.613292 -22859,5013:247,-137,-4,0,0,0.610852 -22860,5013:246,-136,-4,0,0,0.608383 -22861,5013:245,-135,-4,0,0,0.606177 -22862,5013:144,-134,-4,0,0,0.605023 -22863,5013:143,-133,-4,0,0,0.604115 -22864,5013:142,-132,-4,0,0,0.602713 -22865,5013:141,-131,-4,0,0,0.600818 -22866,5013:140,-130,-4,0,0,0.598573 -22867,5012:249,-129,-4,0,0,0.596498 -22868,5012:248,-128,-4,0,0,0.594963 -22869,5012:247,-127,-4,0,0,0.593675 -22870,5012:246,-126,-4,0,0,0.592559 -22871,5012:245,-125,-4,0,0,0.590723 -22872,5012:144,-124,-4,0,0,0.588137 -22873,5012:143,-123,-4,0,0,0.585421 -22874,5012:142,-122,-4,0,0,0.583201 -22875,5012:141,-121,-4,0,0,0.581576 -22876,5012:140,-120,-4,0,0,0.580526 -22877,5011:249,-119,-4,0,0,0.579074 -22878,5011:248,-118,-4,0,0,0.576868 -22879,5011:247,-117,-4,0,0,0.575313 -22880,5011:246,-116,-4,0,0,0.57358 -22881,5011:245,-115,-4,0,0,0.572096 -22882,5011:144,-114,-4,0,0,0.570032 -22883,5011:143,-113,-4,0,0,0.567462 -22884,5011:142,-112,-4,0,0,0.566251 -22885,5011:141,-111,-4,0,0,0.564586 -22886,5011:140,-110,-4,0,0,0.562361 -22887,5010:249,-109,-4,0,0,0.560211 -22888,5010:248,-108,-4,0,0,0.55935 -22889,5010:247,-107,-4,0,0,0.559805 -22890,5010:246,-106,-4,0,0,0.561097 -22891,5010:245,-105,-4,0,0,0.561173 -22892,5010:144,-104,-4,0,0,0.560261 -22893,5010:143,-103,-4,0,0,0.559021 -22894,5010:142,-102,-4,0,0,0.558007 -22895,5010:141,-101,-4,0,0,0.557273 -22896,5010:140,-100,-4,0,0,0.556664 -22897,5009:249,-99,-4,0,0,0.556664 -22898,5009:248,-98,-4,0,0,0.557146 -22899,5009:247,-97,-4,0,0,0.557247 -22900,5009:246,-96,-4,0,0,0.557475 -22901,5009:245,-95,-4,0,0,0.557932 -22902,5009:144,-94,-4,0,0,0.558236 -22903,5009:143,-93,-4,0,0,0.557956 -22904,5009:142,-92,-4,0,0,0.558007 -22905,5009:141,-91,-4,0,0,0.559476 -22906,5009:140,-90,-4,0,0,0.565494 -22907,5008:249,-89,-4,0,0,0.566832 -22908,5008:248,-88,-4,0,0,0.563701 -22909,5008:247,-87,-4,0,0,0.55816 -22910,5008:246,-86,-4,0,0,0.552121 -22911,5008:245,-85,-4,0,0,0.547696 -22912,5008:144,-84,-4,0,0,0.555015 -22913,5008:143,-83,-4,0,0,0.56231 -22914,5008:142,-82,-4,0,0,0.562867 -22915,5008:141,-81,-4,0,0,0.568521 -22916,5004:143,-43,-4,0,0,0.638164 -22917,5004:142,-42,-4,0,0,0.628334 -22918,5004:141,-41,-4,0,0,0.62622 -22919,5004:140,-40,-4,0,0,0.617571 -22920,5003:249,-39,-4,0,0,0.61876 -22921,5003:248,-38,-4,0,0,0.618978 -22922,5003:247,-37,-4,0,0,0.618056 -22923,5003:246,-36,-4,0,0,0.61762 -22924,5003:245,-35,-4,0,0,0.616867 -22925,5003:144,-34,-4,0,0,0.615628 -22926,5003:143,-33,-4,0,0,0.614533 -22927,5003:142,-32,-4,0,0,0.613292 -22928,5003:141,-31,-4,0,0,0.613608 -22929,5003:140,-30,-4,0,0,0.612877 -22930,5002:249,-29,-4,0,0,0.612024 -22931,5002:248,-28,-4,0,0,0.611145 -22932,5002:247,-27,-4,0,0,0.610632 -22933,5002:246,-26,-4,0,0,0.610192 -22934,5002:245,-25,-4,0,0,0.609728 -22935,5002:144,-24,-4,0,0,0.60919 -22936,5002:143,-23,-4,0,0,0.608823 -22937,5002:142,-22,-4,0,0,0.608554 -22938,5002:141,-21,-4,0,0,0.608309 -22939,5002:140,-20,-4,0,0,0.608284 -22940,5001:249,-19,-4,0,0,0.608431 -22941,5001:248,-18,-4,0,0,0.6087 -22942,5001:247,-17,-4,0,0,0.609165 -22943,5001:246,-16,-4,0,0,0.60919 -22944,5001:245,-15,-4,0,0,0.609972 -22945,5001:144,-14,-4,0,0,0.611438 -22946,5001:143,-13,-4,0,0,0.613292 -22947,5001:142,-12,-4,0,0,0.615628 -22948,5001:141,-11,-4,0,0,0.618032 -22949,5001:140,-10,-4,0,0,0.620043 -22950,5000:249,-9,-4,0,0,0.621397 -22951,5000:248,-8,-4,0,0,0.623016 -22952,5000:247,-7,-4,0,0,0.624004 -22953,5000:246,-6,-4,0,0,0.624872 -22954,5000:245,-5,-4,0,0,0.625498 -22955,5000:144,-4,-4,0,0,0.626003 -22956,5000:143,-3,-4,0,0,0.627037 -22957,5000:142,-2,-4,0,0,0.628262 -22958,5000:141,-1,-4,0,0,0.629844 -22959,3000:141,0,-4,0,0,0.631376 -22960,3000:141,1,-4,0,0,0.631543 -22961,3000:142,2,-4,0,0,0.631136 -22962,3000:143,3,-4,0,0,0.630155 -22963,3000:144,4,-4,0,0,0.628549 -22964,3000:245,5,-4,0,0,0.626171 -22965,3000:246,6,-4,0,0,0.623088 -22966,3000:247,7,-4,0,0,0.617838 -22967,3000:248,8,-4,0,0,0.611755 -22968,3000:249,9,-4,0,0,0.597832 -22969,3004:141,41,-4,0,0,0.626773 -22970,3004:142,42,-4,0,0,0.675334 -22971,3004:143,43,-4,0,0,0.667195 -22972,3004:144,44,-4,0,0,0.654949 -22973,3004:245,45,-4,0,0,0.662777 -22974,3004:246,46,-4,0,0,0.66995 -22975,3004:247,47,-4,0,0,0.677089 -22976,3004:248,48,-4,0,0,0.680829 -22977,3004:249,49,-4,0,0,0.679085 -22978,3005:140,50,-4,0,0,0.676999 -22979,3005:141,51,-4,0,0,0.676302 -22980,3005:142,52,-4,0,0,0.674929 -22981,3005:143,53,-4,0,0,0.671516 -22982,3005:144,54,-4,0,0,0.666511 -22983,3005:245,55,-4,0,0,0.663581 -22984,3005:246,56,-4,0,0,0.661904 -22985,3005:247,57,-4,0,0,0.660362 -22986,3005:248,58,-4,0,0,0.660108 -22987,3005:249,59,-4,0,0,0.661214 -22988,3006:140,60,-4,0,0,0.662364 -22989,3006:141,61,-4,0,0,0.661996 -22990,3006:142,62,-4,0,0,0.660846 -22991,3006:143,63,-4,0,0,0.659855 -22992,3006:144,64,-4,0,0,0.659532 -22993,3006:245,65,-4,0,0,0.659994 -22994,3006:246,66,-4,0,0,0.659624 -22995,3006:247,67,-4,0,0,0.658909 -22996,3006:248,68,-4,0,0,0.65847 -22997,3006:249,69,-4,0,0,0.657985 -22998,3007:140,70,-4,0,0,0.657915 -22999,3007:141,71,-4,0,0,0.658331 -23000,3007:142,72,-4,0,0,0.659463 -23001,3007:144,74,-4,0,0,0.660339 -23002,3007:245,75,-4,0,0,0.660454 -23003,3007:246,76,-4,0,0,0.660386 -23004,3007:247,77,-4,0,0,0.660224 -23005,3007:248,78,-4,0,0,0.659486 -23006,3007:249,79,-4,0,0,0.658886 -23007,3008:140,80,-4,0,0,0.659279 -23008,3008:141,81,-4,0,0,0.659579 -23009,3008:142,82,-4,0,0,0.660408 -23010,3008:143,83,-4,0,0,0.662226 -23011,3008:144,84,-4,0,0,0.664521 -23012,3008:245,85,-4,0,0,0.666442 -23013,3008:246,86,-4,0,0,0.66813 -23014,3008:247,87,-4,0,0,0.669564 -23015,3008:248,88,-4,0,0,0.670358 -23016,3008:249,89,-4,0,0,0.670881 -23017,3009:140,90,-4,0,0,0.669427 -23018,3009:141,91,-4,0,0,0.66756 -23019,3009:142,92,-4,0,0,0.664933 -23020,3009:143,93,-4,0,0,0.663443 -23021,3009:144,94,-4,0,0,0.661882 -23022,3009:245,95,-4,0,0,0.6605 -23023,3009:246,96,-4,0,0,0.659832 -23024,3009:247,97,-4,0,0,0.660293 -23025,3009:248,98,-4,0,0,0.661329 -23026,3009:249,99,-4,0,0,0.663076 -23027,3010:140,100,-4,0,0,0.667879 -23028,3010:141,101,-4,0,0,0.669632 -23029,3010:247,107,-4,0,0,0.67432 -23030,3010:248,108,-4,0,0,0.676347 -23031,3010:249,109,-4,0,0,0.668472 -23032,3011:140,110,-4,0,0,0.676392 -23033,3011:247,117,-4,0,0,0.68603 -23034,3011:248,118,-4,0,0,0.674004 -23035,3011:249,119,-4,0,0,0.666305 -23036,3012:143,123,-4,0,0,0.686959 -23037,3012:144,124,-4,0,0,0.688746 -23038,3012:245,125,-4,0,0,0.690022 -23039,3012:246,126,-4,0,0,0.686893 -23040,3012:247,127,-4,0,0,0.666145 -23041,3012:248,128,-4,0,0,0.666579 -23042,3012:249,129,-4,0,0,0.660892 -23043,3013:140,130,-4,0,0,0.66264 -23044,3013:141,131,-4,0,0,0.66507 -23045,3013:142,132,-4,0,0,0.684812 -23046,3013:143,133,-4,0,0,0.69844 -23047,3013:245,135,-4,0,0,0.671062 -23048,3013:246,136,-4,0,0,0.678592 -23049,3014:141,141,-4,0,0,0.657128 -23050,3014:142,142,-4,0,0,0.663352 -23051,3014:143,143,-4,0,0,0.666784 -23052,3014:144,144,-4,0,0,0.66895 -23053,3014:245,145,-4,0,0,0.67113 -23054,3014:246,146,-4,0,0,0.673213 -23055,3014:247,147,-4,0,0,0.674816 -23056,3014:248,148,-4,0,0,0.674861 -23057,3014:249,149,-4,0,0,0.67628 -23058,3015:140,150,-4,0,0,0.678233 -23059,3015:141,151,-4,0,0,0.676819 -23060,3015:142,152,-4,0,0,0.676999 -23061,3015:143,153,-4,0,0,0.67646 -23062,3015:144,154,-4,0,0,0.675829 -23063,3015:245,155,-4,0,0,0.675897 -23064,3015:246,156,-4,0,0,0.676504 -23065,3015:247,157,-4,0,0,0.676909 -23066,3015:248,158,-4,0,0,0.676482 -23067,3015:249,159,-4,0,0,0.677493 -23068,3016:140,160,-4,0,0,0.677964 -23069,3016:141,161,-4,0,0,0.677583 -23070,3016:142,162,-4,0,0,0.678009 -23071,3016:143,163,-4,0,0,0.678054 -23072,3016:144,164,-4,0,0,0.678413 -23073,3016:245,165,-4,0,0,0.678211 -23074,3016:246,166,-4,0,0,0.678099 -23075,3016:247,167,-4,0,0,0.677336 -23076,3016:248,168,-4,0,0,0.676212 -23077,3016:249,169,-4,0,0,0.675739 -23078,3017:140,170,-4,0,0,0.674816 -23079,3017:141,171,-4,0,0,0.673642 -23080,3017:142,172,-4,0,0,0.67319 -23081,3017:143,173,-4,0,0,0.6731 -23082,3017:144,174,-4,0,0,0.67441 -23083,3017:245,175,-4,0,0,0.6745 -23084,3017:246,176,-4,0,0,0.674861 -23085,3017:247,177,-4,0,0,0.675379 -23086,3017:248,178,-4,0,0,0.675965 -23087,3017:249,179,-4,0,0,0.677089 -23088,3018:140,180,-4,0,0,0.678032 -23089,5018:130,-180,-3,0,0,0.677605 -23090,5017:239,-179,-3,0,0,0.67783 -23091,5017:238,-178,-3,0,0,0.677942 -23092,5017:237,-177,-3,0,0,0.677942 -23093,5017:236,-176,-3,0,0,0.677111 -23094,5017:235,-175,-3,0,0,0.676684 -23095,5017:134,-174,-3,0,0,0.6761 -23096,5017:133,-173,-3,0,0,0.674996 -23097,5017:132,-172,-3,0,0,0.673597 -23098,5017:131,-171,-3,0,0,0.67224 -23099,5017:130,-170,-3,0,0,0.670994 -23100,5016:239,-169,-3,0,0,0.670608 -23101,5016:238,-168,-3,0,0,0.668426 -23102,5016:237,-167,-3,0,0,0.665619 -23103,5016:236,-166,-3,0,0,0.66381 -23104,5016:235,-165,-3,0,0,0.662088 -23105,5016:134,-164,-3,0,0,0.660662 -23106,5016:133,-163,-3,0,0,0.658794 -23107,5016:132,-162,-3,0,0,0.65655 -23108,5016:131,-161,-3,0,0,0.655391 -23109,5016:130,-160,-3,0,0,0.654322 -23110,5015:239,-159,-3,0,0,0.652997 -23111,5015:238,-158,-3,0,0,0.651225 -23112,5015:237,-157,-3,0,0,0.649777 -23113,5015:236,-156,-3,0,0,0.648162 -23114,5015:235,-155,-3,0,0,0.648068 -23115,5015:134,-154,-3,0,0,0.64551 -23116,5015:133,-153,-3,0,0,0.643862 -23117,5015:132,-152,-3,0,0,0.642684 -23118,5015:131,-151,-3,0,0,0.640817 -23119,5015:130,-150,-3,0,0,0.637713 -23120,5014:239,-149,-3,0,0,0.634789 -23121,5014:238,-148,-3,0,0,0.632332 -23122,5014:237,-147,-3,0,0,0.6297 -23123,5014:236,-146,-3,0,0,0.628262 -23124,5014:235,-145,-3,0,0,0.627445 -23125,5014:134,-144,-3,0,0,0.62622 -23126,5014:133,-143,-3,0,0,0.623691 -23127,5014:132,-142,-3,0,0,0.620817 -23128,5014:131,-141,-3,0,0,0.618468 -23129,5014:130,-140,-3,0,0,0.616236 -23130,5013:239,-139,-3,0,0,0.614217 -23131,5013:238,-138,-3,0,0,0.612633 -23132,5013:237,-137,-3,0,0,0.611047 -23133,5013:236,-136,-3,0,0,0.608015 -23134,5013:235,-135,-3,0,0,0.605392 -23135,5013:134,-134,-3,0,0,0.603402 -23136,5013:133,-133,-3,0,0,0.601926 -23137,5013:132,-132,-3,0,0,0.600793 -23138,5013:131,-131,-3,0,0,0.59998 -23139,5013:130,-130,-3,0,0,0.598869 -23140,5012:239,-129,-3,0,0,0.598153 -23141,5012:238,-128,-3,0,0,0.597141 -23142,5012:237,-127,-3,0,0,0.595855 -23143,5012:236,-126,-3,0,0,0.593923 -23144,5012:235,-125,-3,0,0,0.591567 -23145,5012:134,-124,-3,0,0,0.589878 -23146,5012:133,-123,-3,0,0,0.588808 -23147,5012:132,-122,-3,0,0,0.58724 -23148,5012:131,-121,-3,0,0,0.585446 -23149,5012:130,-120,-3,0,0,0.583825 -23150,5011:239,-119,-3,0,0,0.582101 -23151,5011:238,-118,-3,0,0,0.580626 -23152,5011:237,-117,-3,0,0,0.578874 -23153,5011:236,-116,-3,0,0,0.575915 -23154,5011:235,-115,-3,0,0,0.573605 -23155,5011:134,-114,-3,0,0,0.571568 -23156,5011:133,-113,-3,0,0,0.570838 -23157,5011:132,-112,-3,0,0,0.570486 -23158,5011:131,-111,-3,0,0,0.569454 -23159,5011:130,-110,-3,0,0,0.568546 -23160,5010:239,-109,-3,0,0,0.567387 -23161,5010:238,-108,-3,0,0,0.566706 -23162,5010:237,-107,-3,0,0,0.565923 -23163,5010:236,-106,-3,0,0,0.565393 -23164,5010:235,-105,-3,0,0,0.56514 -23165,5010:134,-104,-3,0,0,0.565015 -23166,5010:133,-103,-3,0,0,0.564459 -23167,5010:132,-102,-3,0,0,0.563474 -23168,5010:131,-101,-3,0,0,0.562741 -23169,5010:130,-100,-3,0,0,0.561653 -23170,5009:239,-99,-3,0,0,0.56097 -23171,5009:238,-98,-3,0,0,0.560084 -23172,5009:237,-97,-3,0,0,0.559122 -23173,5009:236,-96,-3,0,0,0.559299 -23174,5009:235,-95,-3,0,0,0.559299 -23175,5009:134,-94,-3,0,0,0.558337 -23176,5009:133,-93,-3,0,0,0.555929 -23177,5009:132,-92,-3,0,0,0.551028 -23178,5009:131,-91,-3,0,0,0.567084 -23179,5009:130,-90,-3,0,0,0.565999 -23180,5008:239,-89,-3,0,0,0.571895 -23181,5008:238,-88,-3,0,0,0.57031 -23182,5008:237,-87,-3,0,0,0.56968 -23183,5008:236,-86,-3,0,0,0.56968 -23184,5008:235,-85,-3,0,0,0.571845 -23185,5008:134,-84,-3,0,0,0.57757 -23186,5008:133,-83,-3,0,0,0.581001 -23187,5008:132,-82,-3,0,0,0.580726 -23188,5008:131,-81,-3,0,0,0.584997 -23189,5004:236,-46,-3,0,0,0.638259 -23190,5004:235,-45,-3,0,0,0.628453 -23191,5004:134,-44,-3,0,0,0.622292 -23192,5004:133,-43,-3,0,0,0.623932 -23193,5004:132,-42,-3,0,0,0.62333 -23194,5004:131,-41,-3,0,0,0.622581 -23195,5004:130,-40,-3,0,0,0.62089 -23196,5003:239,-39,-3,0,0,0.620454 -23197,5003:238,-38,-3,0,0,0.620213 -23198,5003:237,-37,-3,0,0,0.619559 -23199,5003:236,-36,-3,0,0,0.61779 -23200,5003:235,-35,-3,0,0,0.616989 -23201,5003:134,-34,-3,0,0,0.615458 -23202,5003:133,-33,-3,0,0,0.613145 -23203,5003:132,-32,-3,0,0,0.611536 -23204,5003:131,-31,-3,0,0,0.609899 -23205,5003:130,-30,-3,0,0,0.608774 -23206,5002:239,-29,-3,0,0,0.608162 -23207,5002:238,-28,-3,0,0,0.606814 -23208,5002:237,-27,-3,0,0,0.605122 -23209,5002:236,-26,-3,0,0,0.60441 -23210,5002:235,-25,-3,0,0,0.603574 -23211,5002:134,-24,-3,0,0,0.602713 -23212,5002:133,-23,-3,0,0,0.601803 -23213,5002:132,-22,-3,0,0,0.601557 -23214,5002:131,-21,-3,0,0,0.60099 -23215,5002:130,-20,-3,0,0,0.600399 -23216,5001:239,-19,-3,0,0,0.601015 -23217,5001:238,-18,-3,0,0,0.602123 -23218,5001:237,-17,-3,0,0,0.603353 -23219,5001:236,-16,-3,0,0,0.60414 -23220,5001:235,-15,-3,0,0,0.605319 -23221,5001:134,-14,-3,0,0,0.607035 -23222,5001:133,-13,-3,0,0,0.608847 -23223,5001:132,-12,-3,0,0,0.611072 -23224,5001:131,-11,-3,0,0,0.61429 -23225,5001:130,-10,-3,0,0,0.616843 -23226,5000:239,-9,-3,0,0,0.618105 -23227,5000:238,-8,-3,0,0,0.618735 -23228,5000:237,-7,-3,0,0,0.62031 -23229,5000:236,-6,-3,0,0,0.622436 -23230,5000:235,-5,-3,0,0,0.625402 -23231,5000:134,-4,-3,0,0,0.627614 -23232,5000:133,-3,-3,0,0,0.629461 -23233,5000:132,-2,-3,0,0,0.631017 -23234,5000:131,-1,-3,0,0,0.632571 -23235,3000:131,0,-3,0,0,0.632881 -23236,3000:131,1,-3,0,0,0.632069 -23237,3000:132,2,-3,0,0,0.630587 -23238,3000:133,3,-3,0,0,0.628598 -23239,3000:134,4,-3,0,0,0.626436 -23240,3000:235,5,-3,0,0,0.62427 -23241,3000:236,6,-3,0,0,0.623523 -23242,3000:237,7,-3,0,0,0.6248 -23243,3000:238,8,-3,0,0,0.626532 -23244,3004:132,42,-3,0,0,0.6087 -23245,3004:133,43,-3,0,0,0.654136 -23246,3004:134,44,-3,0,0,0.645533 -23247,3004:235,45,-3,0,0,0.645039 -23248,3004:236,46,-3,0,0,0.650992 -23249,3004:237,47,-3,0,0,0.653671 -23250,3004:238,48,-3,0,0,0.649426 -23251,3004:239,49,-3,0,0,0.651762 -23252,3005:130,50,-3,0,0,0.655947 -23253,3005:131,51,-3,0,0,0.672761 -23254,3005:132,52,-3,0,0,0.6761 -23255,3005:133,53,-3,0,0,0.676886 -23256,3005:134,54,-3,0,0,0.673552 -23257,3005:235,55,-3,0,0,0.667833 -23258,3005:236,56,-3,0,0,0.664681 -23259,3005:237,57,-3,0,0,0.664062 -23260,3005:238,58,-3,0,0,0.66287 -23261,3005:239,59,-3,0,0,0.660731 -23262,3006:130,60,-3,0,0,0.659232 -23263,3006:131,61,-3,0,0,0.658655 -23264,3006:132,62,-3,0,0,0.658747 -23265,3006:133,63,-3,0,0,0.658932 -23266,3006:134,64,-3,0,0,0.658216 -23267,3006:235,65,-3,0,0,0.657938 -23268,3006:236,66,-3,0,0,0.658239 -23269,3006:237,67,-3,0,0,0.659024 -23270,3006:238,68,-3,0,0,0.660201 -23271,3006:239,69,-3,0,0,0.661237 -23272,3007:130,70,-3,0,0,0.662456 -23273,3007:131,71,-3,0,0,0.663191 -23274,3007:132,72,-3,0,0,0.663627 -23275,3007:134,74,-3,0,0,0.663993 -23276,3007:235,75,-3,0,0,0.663604 -23277,3007:236,76,-3,0,0,0.663489 -23278,3007:237,77,-3,0,0,0.663282 -23279,3007:238,78,-3,0,0,0.662249 -23280,3007:239,79,-3,0,0,0.661352 -23281,3008:130,80,-3,0,0,0.66057 -23282,3008:131,81,-3,0,0,0.660478 -23283,3008:132,82,-3,0,0,0.660777 -23284,3008:133,83,-3,0,0,0.660961 -23285,3008:134,84,-3,0,0,0.663007 -23286,3008:235,85,-3,0,0,0.665459 -23287,3008:236,86,-3,0,0,0.666716 -23288,3008:237,87,-3,0,0,0.667765 -23289,3008:238,88,-3,0,0,0.669723 -23290,3008:239,89,-3,0,0,0.670495 -23291,3009:130,90,-3,0,0,0.668381 -23292,3009:131,91,-3,0,0,0.666602 -23293,3009:132,92,-3,0,0,0.664383 -23294,3009:133,93,-3,0,0,0.662088 -23295,3009:134,94,-3,0,0,0.660938 -23296,3009:235,95,-3,0,0,0.660316 -23297,3009:236,96,-3,0,0,0.660247 -23298,3009:237,97,-3,0,0,0.661767 -23299,3009:238,98,-3,0,0,0.66342 -23300,3010:130,100,-3,0,0,0.670041 -23301,3010:235,105,-3,0,0,0.679487 -23302,3010:236,106,-3,0,0,0.673507 -23303,3010:237,107,-3,0,0,0.66057 -23304,3010:238,108,-3,0,0,0.66126 -23305,3010:239,109,-3,0,0,0.670608 -23306,3011:238,118,-3,0,0,0.657314 -23307,3011:239,119,-3,0,0,0.659002 -23308,3012:131,121,-3,0,0,0.672784 -23309,3012:134,124,-3,0,0,0.672964 -23310,3012:235,125,-3,0,0,0.680762 -23311,3012:236,126,-3,0,0,0.683724 -23312,3012:237,127,-3,0,0,0.677672 -23313,3012:238,128,-3,0,0,0.684013 -23314,3012:239,129,-3,0,0,0.669086 -23315,3013:130,130,-3,0,0,0.667833 -23316,3013:235,135,-3,0,0,0.673755 -23317,3013:236,136,-3,0,0,0.674839 -23318,3013:237,137,-3,0,0,0.668745 -23319,3013:238,138,-3,0,0,0.665161 -23320,3013:239,139,-3,0,0,0.665825 -23321,3014:130,140,-3,0,0,0.666076 -23322,3014:131,141,-3,0,0,0.667925 -23323,3014:132,142,-3,0,0,0.6697 -23324,3014:133,143,-3,0,0,0.670948 -23325,3014:134,144,-3,0,0,0.67215 -23326,3014:235,145,-3,0,0,0.674184 -23327,3014:236,146,-3,0,0,0.675762 -23328,3014:237,147,-3,0,0,0.676932 -23329,3014:238,148,-3,0,0,0.67765 -23330,3014:239,149,-3,0,0,0.678503 -23331,3015:130,150,-3,0,0,0.679241 -23332,3015:131,151,-3,0,0,0.679129 -23333,3015:132,152,-3,0,0,0.678592 -23334,3015:133,153,-3,0,0,0.678301 -23335,3015:134,154,-3,0,0,0.67792 -23336,3015:235,155,-3,0,0,0.677359 -23337,3015:236,156,-3,0,0,0.676684 -23338,3015:237,157,-3,0,0,0.676167 -23339,3015:238,158,-3,0,0,0.676662 -23340,3015:239,159,-3,0,0,0.677538 -23341,3016:130,160,-3,0,0,0.678413 -23342,3016:131,161,-3,0,0,0.678749 -23343,3016:132,162,-3,0,0,0.678771 -23344,3016:133,163,-3,0,0,0.679175 -23345,3016:134,164,-3,0,0,0.679644 -23346,3016:235,165,-3,0,0,0.67989 -23347,3016:236,166,-3,0,0,0.680025 -23348,3016:237,167,-3,0,0,0.679331 -23349,3016:238,168,-3,0,0,0.67857 -23350,3016:239,169,-3,0,0,0.678122 -23351,3017:130,170,-3,0,0,0.677762 -23352,3017:131,171,-3,0,0,0.676954 -23353,3017:132,172,-3,0,0,0.676572 -23354,3017:133,173,-3,0,0,0.676909 -23355,3017:134,174,-3,0,0,0.677089 -23356,3017:235,175,-3,0,0,0.677313 -23357,3017:236,176,-3,0,0,0.677381 -23358,3017:237,177,-3,0,0,0.67747 -23359,3017:238,178,-3,0,0,0.677336 -23360,3017:239,179,-3,0,0,0.677583 -23361,3018:130,180,-3,0,0,0.677605 -23362,5018:120,-180,-2,0,0,0.677538 -23363,5017:229,-179,-2,0,0,0.677268 -23364,5017:228,-178,-2,0,0,0.676886 -23365,5017:227,-177,-2,0,0,0.675717 -23366,5017:226,-176,-2,0,0,0.67432 -23367,5017:225,-175,-2,0,0,0.674116 -23368,5017:124,-174,-2,0,0,0.672964 -23369,5017:123,-173,-2,0,0,0.670858 -23370,5017:122,-172,-2,0,0,0.668859 -23371,5017:121,-171,-2,0,0,0.667264 -23372,5017:120,-170,-2,0,0,0.66587 -23373,5016:229,-169,-2,0,0,0.664704 -23374,5016:228,-168,-2,0,0,0.663879 -23375,5016:227,-167,-2,0,0,0.662915 -23376,5016:226,-166,-2,0,0,0.660938 -23377,5016:225,-165,-2,0,0,0.657198 -23378,5016:124,-164,-2,0,0,0.654415 -23379,5016:123,-163,-2,0,0,0.653252 -23380,5016:122,-162,-2,0,0,0.652111 -23381,5016:121,-161,-2,0,0,0.650758 -23382,5016:120,-160,-2,0,0,0.650244 -23383,5015:229,-159,-2,0,0,0.649964 -23384,5015:228,-158,-2,0,0,0.649426 -23385,5015:227,-157,-2,0,0,0.647435 -23386,5015:226,-156,-2,0,0,0.647107 -23387,5015:225,-155,-2,0,0,0.646872 -23388,5015:124,-154,-2,0,0,0.646215 -23389,5015:123,-153,-2,0,0,0.644522 -23390,5015:122,-152,-2,0,0,0.641668 -23391,5015:121,-151,-2,0,0,0.63852 -23392,5015:120,-150,-2,0,0,0.636002 -23393,5014:229,-149,-2,0,0,0.633621 -23394,5014:228,-148,-2,0,0,0.630538 -23395,5014:227,-147,-2,0,0,0.62831 -23396,5014:226,-146,-2,0,0,0.626917 -23397,5014:225,-145,-2,0,0,0.625306 -23398,5014:124,-144,-2,0,0,0.624004 -23399,5014:123,-143,-2,0,0,0.622002 -23400,5014:122,-142,-2,0,0,0.620503 -23401,5014:121,-141,-2,0,0,0.619341 -23402,5014:120,-140,-2,0,0,0.617717 -23403,5013:229,-139,-2,0,0,0.618202 -23404,5013:228,-138,-2,0,0,0.617425 -23405,5013:227,-137,-2,0,0,0.614972 -23406,5013:226,-136,-2,0,0,0.611974 -23407,5013:225,-135,-2,0,0,0.610119 -23408,5013:124,-134,-2,0,0,0.608945 -23409,5013:123,-133,-2,0,0,0.60804 -23410,5013:122,-132,-2,0,0,0.606128 -23411,5013:121,-131,-2,0,0,0.601803 -23412,5013:120,-130,-2,0,0,0.600201 -23413,5012:229,-129,-2,0,0,0.600325 -23414,5012:228,-128,-2,0,0,0.59956 -23415,5012:227,-127,-2,0,0,0.598055 -23416,5012:226,-126,-2,0,0,0.596794 -23417,5012:225,-125,-2,0,0,0.5962 -23418,5012:124,-124,-2,0,0,0.594344 -23419,5012:123,-123,-2,0,0,0.591095 -23420,5012:122,-122,-2,0,0,0.588261 -23421,5012:121,-121,-2,0,0,0.587141 -23422,5012:120,-120,-2,0,0,0.586493 -23423,5011:229,-119,-2,0,0,0.585621 -23424,5011:228,-118,-2,0,0,0.581951 -23425,5011:227,-117,-2,0,0,0.58055 -23426,5011:226,-116,-2,0,0,0.580325 -23427,5011:225,-115,-2,0,0,0.579324 -23428,5011:124,-114,-2,0,0,0.57772 -23429,5011:123,-113,-2,0,0,0.577596 -23430,5011:122,-112,-2,0,0,0.578272 -23431,5011:121,-111,-2,0,0,0.579525 -23432,5011:120,-110,-2,0,0,0.581576 -23433,5010:229,-109,-2,0,0,0.583825 -23434,5010:228,-108,-2,0,0,0.583799 -23435,5010:227,-107,-2,0,0,0.583799 -23436,5010:226,-106,-2,0,0,0.584499 -23437,5010:225,-105,-2,0,0,0.585048 -23438,5010:124,-104,-2,0,0,0.584823 -23439,5010:123,-103,-2,0,0,0.584324 -23440,5010:122,-102,-2,0,0,0.58305 -23441,5010:121,-101,-2,0,0,0.580576 -23442,5010:120,-100,-2,0,0,0.579324 -23443,5009:229,-99,-2,0,0,0.5797 -23444,5009:228,-98,-2,0,0,0.58 -23445,5009:227,-97,-2,0,0,0.581726 -23446,5009:226,-96,-2,0,0,0.580726 -23447,5009:225,-95,-2,0,0,0.582825 -23448,5009:124,-94,-2,0,0,0.578548 -23449,5009:123,-93,-2,0,0,0.570108 -23450,5009:122,-92,-2,0,0,0.560565 -23451,5009:121,-91,-2,0,0,0.585347 -23452,5009:120,-90,-2,0,0,0.589232 -23453,5008:229,-89,-2,0,0,0.591791 -23454,5008:228,-88,-2,0,0,0.595037 -23455,5008:227,-87,-2,0,0,0.597091 -23456,5008:226,-86,-2,0,0,0.597511 -23457,5008:225,-85,-2,0,0,0.596448 -23458,5008:124,-84,-2,0,0,0.596967 -23459,5008:123,-83,-2,0,0,0.598425 -23460,5008:122,-82,-2,0,0,0.598647 -23461,5008:121,-81,-2,0,0,0.603722 -23462,5005:120,-50,-2,0,0,0.639965 -23463,5004:229,-49,-2,0,0,0.638188 -23464,5004:228,-48,-2,0,0,0.635146 -23465,5004:227,-47,-2,0,0,0.623547 -23466,5004:226,-46,-2,0,0,0.622002 -23467,5004:225,-45,-2,0,0,0.624655 -23468,5004:124,-44,-2,0,0,0.624318 -23469,5004:123,-43,-2,0,0,0.624872 -23470,5004:122,-42,-2,0,0,0.626171 -23471,5004:121,-41,-2,0,0,0.627253 -23472,5004:120,-40,-2,0,0,0.626917 -23473,5003:229,-39,-2,0,0,0.625065 -23474,5003:228,-38,-2,0,0,0.621374 -23475,5003:227,-37,-2,0,0,0.618978 -23476,5003:226,-36,-2,0,0,0.617256 -23477,5003:225,-35,-2,0,0,0.61609 -23478,5003:124,-34,-2,0,0,0.614387 -23479,5003:123,-33,-2,0,0,0.613267 -23480,5003:122,-32,-2,0,0,0.613681 -23481,5003:121,-31,-2,0,0,0.613681 -23482,5003:120,-30,-2,0,0,0.610583 -23483,5002:229,-29,-2,0,0,0.607501 -23484,5002:228,-28,-2,0,0,0.607844 -23485,5002:227,-27,-2,0,0,0.606374 -23486,5002:226,-26,-2,0,0,0.606545 -23487,5002:225,-25,-2,0,0,0.605784 -23488,5002:124,-24,-2,0,0,0.603894 -23489,5002:123,-23,-2,0,0,0.604729 -23490,5002:122,-22,-2,0,0,0.607109 -23491,5002:121,-21,-2,0,0,0.609361 -23492,5002:120,-20,-2,0,0,0.61134 -23493,5001:229,-19,-2,0,0,0.613706 -23494,5001:228,-18,-2,0,0,0.615555 -23495,5001:227,-17,-2,0,0,0.617256 -23496,5001:226,-16,-2,0,0,0.618566 -23497,5001:225,-15,-2,0,0,0.620721 -23498,5001:124,-14,-2,0,0,0.623715 -23499,5001:123,-13,-2,0,0,0.626869 -23500,5001:122,-12,-2,0,0,0.62994 -23501,5001:121,-11,-2,0,0,0.632857 -23502,5001:120,-10,-2,0,0,0.635074 -23503,5000:229,-9,-2,0,0,0.63655 -23504,5000:228,-8,-2,0,0,0.637832 -23505,5000:227,-7,-2,0,0,0.638781 -23506,5000:226,-6,-2,0,0,0.639823 -23507,5000:225,-5,-2,0,0,0.640675 -23508,5000:124,-4,-2,0,0,0.641904 -23509,5000:123,-3,-2,0,0,0.642802 -23510,5000:122,-2,-2,0,0,0.64299 -23511,5000:121,-1,-2,0,0,0.643438 -23512,3000:121,0,-2,0,0,0.644239 -23513,3000:121,1,-2,0,0,0.643838 -23514,3000:122,2,-2,0,0,0.643108 -23515,3000:123,3,-2,0,0,0.642377 -23516,3000:124,4,-2,0,0,0.642377 -23517,3000:225,5,-2,0,0,0.643202 -23518,3000:226,6,-2,0,0,0.64431 -23519,3000:227,7,-2,0,0,0.646121 -23520,3000:228,8,-2,0,0,0.646684 -23521,3000:229,9,-2,0,0,0.646872 -23522,3004:124,44,-2,0,0,0.640013 -23523,3004:225,45,-2,0,0,0.628861 -23524,3004:226,46,-2,0,0,0.633215 -23525,3004:227,47,-2,0,0,0.633191 -23526,3004:228,48,-2,0,0,0.633096 -23527,3004:229,49,-2,0,0,0.641502 -23528,3005:120,50,-2,0,0,0.64863 -23529,3005:121,51,-2,0,0,0.659002 -23530,3005:122,52,-2,0,0,0.662938 -23531,3005:123,53,-2,0,0,0.662134 -23532,3005:124,54,-2,0,0,0.668472 -23533,3005:225,55,-2,0,0,0.6745 -23534,3005:226,56,-2,0,0,0.675289 -23535,3005:227,57,-2,0,0,0.670676 -23536,3005:228,58,-2,0,0,0.661583 -23537,3005:229,59,-2,0,0,0.657708 -23538,3006:120,60,-2,0,0,0.653159 -23539,3006:121,61,-2,0,0,0.650478 -23540,3006:122,62,-2,0,0,0.649449 -23541,3006:123,63,-2,0,0,0.651015 -23542,3006:124,64,-2,0,0,0.652694 -23543,3006:225,65,-2,0,0,0.654252 -23544,3006:226,66,-2,0,0,0.656016 -23545,3006:227,67,-2,0,0,0.657476 -23546,3006:228,68,-2,0,0,0.658285 -23547,3006:229,69,-2,0,0,0.658563 -23548,3007:120,70,-2,0,0,0.658909 -23549,3007:121,71,-2,0,0,0.660523 -23550,3007:122,72,-2,0,0,0.662364 -23551,3007:124,74,-2,0,0,0.662479 -23552,3007:225,75,-2,0,0,0.664841 -23553,3007:226,76,-2,0,0,0.66507 -23554,3007:227,77,-2,0,0,0.664772 -23555,3007:228,78,-2,0,0,0.664314 -23556,3007:229,79,-2,0,0,0.663833 -23557,3008:120,80,-2,0,0,0.664108 -23558,3008:121,81,-2,0,0,0.664566 -23559,3008:122,82,-2,0,0,0.664704 -23560,3008:123,83,-2,0,0,0.664544 -23561,3008:124,84,-2,0,0,0.664498 -23562,3008:225,85,-2,0,0,0.664795 -23563,3008:226,86,-2,0,0,0.66507 -23564,3008:227,87,-2,0,0,0.665962 -23565,3008:228,88,-2,0,0,0.666488 -23566,3008:229,89,-2,0,0,0.667195 -23567,3009:120,90,-2,0,0,0.668813 -23568,3009:121,91,-2,0,0,0.669313 -23569,3009:122,92,-2,0,0,0.665596 -23570,3009:123,93,-2,0,0,0.662111 -23571,3009:124,94,-2,0,0,0.659394 -23572,3009:225,95,-2,0,0,0.659163 -23573,3009:226,96,-2,0,0,0.660408 -23574,3009:227,97,-2,0,0,0.662938 -23575,3009:228,98,-2,0,0,0.66683 -23576,3009:229,99,-2,0,0,0.673032 -23577,3010:124,104,-2,0,0,0.67371 -23578,3010:225,105,-2,0,0,0.661536 -23579,3010:226,106,-2,0,0,0.652088 -23580,3010:227,107,-2,0,0,0.655831 -23581,3010:228,108,-2,0,0,0.665917 -23582,3010:229,109,-2,0,0,0.676775 -23583,3011:228,118,-2,0,0,0.647575 -23584,3011:229,119,-2,0,0,0.649683 -23585,3012:120,120,-2,0,0,0.651552 -23586,3012:225,125,-2,0,0,0.685189 -23587,3012:226,126,-2,0,0,0.676617 -23588,3012:227,127,-2,0,0,0.671175 -23589,3012:229,129,-2,0,0,0.677268 -23590,3013:120,130,-2,0,0,0.669814 -23591,3013:121,131,-2,0,0,0.674184 -23592,3013:122,132,-2,0,0,0.672648 -23593,3013:123,133,-2,0,0,0.673122 -23594,3013:124,134,-2,0,0,0.673145 -23595,3013:225,135,-2,0,0,0.671402 -23596,3013:226,136,-2,0,0,0.66854 -23597,3013:227,137,-2,0,0,0.669609 -23598,3013:228,138,-2,0,0,0.668472 -23599,3013:229,139,-2,0,0,0.667537 -23600,3014:120,140,-2,0,0,0.667856 -23601,3014:121,141,-2,0,0,0.671175 -23602,3014:122,142,-2,0,0,0.671243 -23603,3014:123,143,-2,0,0,0.671538 -23604,3014:124,144,-2,0,0,0.673213 -23605,3014:225,145,-2,0,0,0.674726 -23606,3014:226,146,-2,0,0,0.676617 -23607,3014:227,147,-2,0,0,0.678032 -23608,3014:228,148,-2,0,0,0.678032 -23609,3014:229,149,-2,0,0,0.678189 -23610,3015:120,150,-2,0,0,0.678323 -23611,3015:121,151,-2,0,0,0.678615 -23612,3015:122,152,-2,0,0,0.678457 -23613,3015:123,153,-2,0,0,0.677605 -23614,3015:124,154,-2,0,0,0.676504 -23615,3015:225,155,-2,0,0,0.676302 -23616,3015:226,156,-2,0,0,0.676775 -23617,3015:227,157,-2,0,0,0.676842 -23618,3015:228,158,-2,0,0,0.677067 -23619,3015:229,159,-2,0,0,0.677583 -23620,3016:120,160,-2,0,0,0.678122 -23621,3016:121,161,-2,0,0,0.678143 -23622,3016:122,162,-2,0,0,0.678143 -23623,3016:123,163,-2,0,0,0.678524 -23624,3016:124,164,-2,0,0,0.678928 -23625,3016:225,165,-2,0,0,0.678816 -23626,3016:226,166,-2,0,0,0.678503 -23627,3016:227,167,-2,0,0,0.678435 -23628,3016:228,168,-2,0,0,0.67857 -23629,3016:229,169,-2,0,0,0.67857 -23630,3017:120,170,-2,0,0,0.678861 -23631,3017:121,171,-2,0,0,0.678995 -23632,3017:122,172,-2,0,0,0.678906 -23633,3017:123,173,-2,0,0,0.678099 -23634,3017:124,174,-2,0,0,0.677672 -23635,3017:225,175,-2,0,0,0.677762 -23636,3017:226,176,-2,0,0,0.67774 -23637,3017:227,177,-2,0,0,0.678143 -23638,3017:228,178,-2,0,0,0.678233 -23639,3017:229,179,-2,0,0,0.67792 -23640,3018:120,180,-2,0,0,0.677538 -23641,5018:110,-180,-1,0,0,0.675672 -23642,5017:219,-179,-1,0,0,0.674636 -23643,5017:218,-178,-1,0,0,0.672625 -23644,5017:217,-177,-1,0,0,0.672602 -23645,5017:216,-176,-1,0,0,0.672286 -23646,5017:215,-175,-1,0,0,0.671788 -23647,5017:114,-174,-1,0,0,0.67079 -23648,5017:113,-173,-1,0,0,0.669313 -23649,5017:112,-172,-1,0,0,0.666465 -23650,5017:111,-171,-1,0,0,0.663948 -23651,5017:110,-170,-1,0,0,0.661974 -23652,5016:219,-169,-1,0,0,0.659809 -23653,5016:218,-168,-1,0,0,0.661306 -23654,5016:217,-167,-1,0,0,0.661468 -23655,5016:216,-166,-1,0,0,0.658262 -23656,5016:215,-165,-1,0,0,0.655205 -23657,5016:114,-164,-1,0,0,0.655065 -23658,5016:113,-163,-1,0,0,0.656016 -23659,5016:112,-162,-1,0,0,0.656457 -23660,5016:111,-161,-1,0,0,0.65481 -23661,5016:110,-160,-1,0,0,0.650945 -23662,5015:219,-159,-1,0,0,0.650571 -23663,5015:218,-158,-1,0,0,0.652997 -23664,5015:217,-157,-1,0,0,0.654601 -23665,5015:216,-156,-1,0,0,0.65481 -23666,5015:215,-155,-1,0,0,0.654787 -23667,5015:114,-154,-1,0,0,0.651482 -23668,5015:113,-153,-1,0,0,0.647575 -23669,5015:112,-152,-1,0,0,0.643626 -23670,5015:111,-151,-1,0,0,0.643344 -23671,5015:110,-150,-1,0,0,0.641739 -23672,5014:219,-149,-1,0,0,0.636669 -23673,5014:218,-148,-1,0,0,0.634169 -23674,5014:217,-147,-1,0,0,0.633597 -23675,5014:216,-146,-1,0,0,0.632547 -23676,5014:215,-145,-1,0,0,0.633931 -23677,5014:114,-144,-1,0,0,0.634526 -23678,5014:113,-143,-1,0,0,0.633478 -23679,5014:112,-142,-1,0,0,0.631041 -23680,5014:111,-141,-1,0,0,0.628981 -23681,5014:110,-140,-1,0,0,0.627182 -23682,5013:219,-139,-1,0,0,0.627782 -23683,5013:218,-138,-1,0,0,0.629101 -23684,5013:217,-137,-1,0,0,0.627686 -23685,5013:216,-136,-1,0,0,0.624968 -23686,5013:215,-135,-1,0,0,0.62106 -23687,5013:114,-134,-1,0,0,0.6206 -23688,5013:113,-133,-1,0,0,0.621156 -23689,5013:112,-132,-1,0,0,0.622799 -23690,5013:111,-131,-1,0,0,0.62333 -23691,5013:110,-130,-1,0,0,0.618663 -23692,5012:219,-129,-1,0,0,0.616065 -23693,5012:218,-128,-1,0,0,0.613608 -23694,5012:217,-127,-1,0,0,0.614655 -23695,5012:216,-126,-1,0,0,0.613535 -23696,5012:215,-125,-1,0,0,0.611047 -23697,5012:114,-124,-1,0,0,0.611779 -23698,5012:113,-123,-1,0,0,0.610168 -23699,5012:112,-122,-1,0,0,0.604065 -23700,5012:111,-121,-1,0,0,0.600028 -23701,5012:110,-120,-1,0,0,0.598326 -23702,5011:219,-119,-1,0,0,0.60232 -23703,5011:218,-118,-1,0,0,0.605637 -23704,5011:217,-117,-1,0,0,0.606374 -23705,5011:216,-116,-1,0,0,0.605515 -23706,5011:215,-115,-1,0,0,0.602935 -23707,5011:114,-114,-1,0,0,0.601581 -23708,5011:113,-113,-1,0,0,0.60232 -23709,5011:112,-112,-1,0,0,0.602689 -23710,5011:111,-111,-1,0,0,0.604901 -23711,5011:110,-110,-1,0,0,0.608015 -23712,5010:219,-109,-1,0,0,0.609483 -23713,5010:218,-108,-1,0,0,0.61051 -23714,5010:217,-107,-1,0,0,0.61134 -23715,5010:216,-106,-1,0,0,0.61156 -23716,5010:215,-105,-1,0,0,0.611633 -23717,5010:114,-104,-1,0,0,0.611438 -23718,5010:113,-103,-1,0,0,0.611316 -23719,5010:112,-102,-1,0,0,0.610949 -23720,5010:111,-101,-1,0,0,0.610681 -23721,5010:110,-100,-1,0,0,0.611877 -23722,5009:219,-99,-1,0,0,0.61334 -23723,5009:218,-98,-1,0,0,0.614022 -23724,5009:217,-97,-1,0,0,0.614972 -23725,5009:216,-96,-1,0,0,0.615677 -23726,5009:215,-95,-1,0,0,0.616017 -23727,5009:114,-94,-1,0,0,0.614169 -23728,5009:113,-93,-1,0,0,0.610779 -23729,5009:112,-92,-1,0,0,0.611974 -23730,5009:111,-91,-1,0,0,0.6139 -23731,5009:110,-90,-1,0,0,0.617159 -23732,5008:219,-89,-1,0,0,0.619293 -23733,5008:218,-88,-1,0,0,0.62014 -23734,5008:217,-87,-1,0,0,0.619075 -23735,5008:216,-86,-1,0,0,0.616236 -23736,5008:215,-85,-1,0,0,0.61312 -23737,5008:114,-84,-1,0,0,0.611096 -23738,5008:113,-83,-1,0,0,0.61051 -23739,5008:112,-82,-1,0,0,0.609263 -23740,5008:111,-81,-1,0,0,0.61073 -23741,5008:110,-80,-1,0,0,0.613852 -23742,5007:219,-79,-1,0,0,0.619946 -23743,5005:110,-50,-1,0,0,0.639232 -23744,5004:219,-49,-1,0,0,0.633621 -23745,5004:218,-48,-1,0,0,0.620865 -23746,5004:217,-47,-1,0,0,0.624246 -23747,5004:216,-46,-1,0,0,0.625907 -23748,5004:215,-45,-1,0,0,0.628909 -23749,5004:114,-44,-1,0,0,0.630587 -23750,5004:113,-43,-1,0,0,0.631424 -23751,5004:112,-42,-1,0,0,0.631902 -23752,5004:111,-41,-1,0,0,0.631017 -23753,5004:110,-40,-1,0,0,0.629581 -23754,5003:219,-39,-1,0,0,0.626893 -23755,5003:218,-38,-1,0,0,0.624125 -23756,5003:217,-37,-1,0,0,0.622171 -23757,5003:216,-36,-1,0,0,0.621397 -23758,5003:215,-35,-1,0,0,0.620986 -23759,5003:114,-34,-1,0,0,0.620865 -23760,5003:113,-33,-1,0,0,0.620842 -23761,5003:112,-32,-1,0,0,0.62118 -23762,5003:111,-31,-1,0,0,0.621374 -23763,5003:110,-30,-1,0,0,0.623836 -23764,5002:219,-29,-1,0,0,0.625378 -23765,5002:218,-28,-1,0,0,0.625546 -23766,5002:217,-27,-1,0,0,0.626171 -23767,5002:216,-26,-1,0,0,0.627421 -23768,5002:215,-25,-1,0,0,0.627374 -23769,5002:114,-24,-1,0,0,0.627974 -23770,5002:113,-23,-1,0,0,0.627902 -23771,5002:112,-22,-1,0,0,0.628382 -23772,5002:111,-21,-1,0,0,0.629772 -23773,5002:110,-20,-1,0,0,0.630299 -23774,5001:219,-19,-1,0,0,0.632427 -23775,5001:218,-18,-1,0,0,0.633955 -23776,5001:217,-17,-1,0,0,0.634741 -23777,5001:216,-16,-1,0,0,0.636431 -23778,5001:215,-15,-1,0,0,0.638662 -23779,5001:114,-14,-1,0,0,0.640817 -23780,5001:113,-13,-1,0,0,0.643509 -23781,5001:112,-12,-1,0,0,0.64652 -23782,5001:111,-11,-1,0,0,0.649473 -23783,5001:110,-10,-1,0,0,0.652228 -23784,5000:219,-9,-1,0,0,0.654438 -23785,5000:218,-8,-1,0,0,0.656016 -23786,5000:217,-7,-1,0,0,0.657314 -23787,5000:216,-6,-1,0,0,0.658355 -23788,5000:215,-5,-1,0,0,0.659324 -23789,5000:114,-4,-1,0,0,0.659647 -23790,5000:113,-3,-1,0,0,0.659301 -23791,5000:112,-2,-1,0,0,0.659002 -23792,5000:111,-1,-1,0,0,0.658239 -23793,3000:111,0,-1,0,0,0.658101 -23794,3000:111,1,-1,0,0,0.657545 -23795,3000:112,2,-1,0,0,0.658401 -23796,3000:113,3,-1,0,0,0.657915 -23797,3000:114,4,-1,0,0,0.657036 -23798,3000:215,5,-1,0,0,0.656248 -23799,3000:216,6,-1,0,0,0.65481 -23800,3000:217,7,-1,0,0,0.655854 -23801,3000:218,8,-1,0,0,0.657106 -23802,3000:219,9,-1,0,0,0.656016 -23803,3004:216,46,-1,0,0,0.615507 -23804,3004:217,47,-1,0,0,0.631232 -23805,3004:218,48,-1,0,0,0.636288 -23806,3004:219,49,-1,0,0,0.640273 -23807,3005:110,50,-1,0,0,0.64405 -23808,3005:111,51,-1,0,0,0.650151 -23809,3005:112,52,-1,0,0,0.651995 -23810,3005:113,53,-1,0,0,0.661306 -23811,3005:114,54,-1,0,0,0.663627 -23812,3005:215,55,-1,0,0,0.660016 -23813,3005:216,56,-1,0,0,0.662548 -23814,3005:217,57,-1,0,0,0.666967 -23815,3005:218,58,-1,0,0,0.659279 -23816,3005:219,59,-1,0,0,0.651482 -23817,3006:110,60,-1,0,0,0.649145 -23818,3006:111,61,-1,0,0,0.648958 -23819,3006:112,62,-1,0,0,0.645933 -23820,3006:113,63,-1,0,0,0.646473 -23821,3006:114,64,-1,0,0,0.648021 -23822,3006:215,65,-1,0,0,0.650034 -23823,3006:216,66,-1,0,0,0.653438 -23824,3006:217,67,-1,0,0,0.656526 -23825,3006:218,68,-1,0,0,0.659071 -23826,3006:219,69,-1,0,0,0.661007 -23827,3007:110,70,-1,0,0,0.66287 -23828,3007:111,71,-1,0,0,0.663397 -23829,3007:112,72,-1,0,0,0.662548 -23830,3007:114,74,-1,0,0,0.662938 -23831,3007:215,75,-1,0,0,0.66436 -23832,3007:216,76,-1,0,0,0.663948 -23833,3007:217,77,-1,0,0,0.664338 -23834,3007:218,78,-1,0,0,0.664727 -23835,3007:219,79,-1,0,0,0.663214 -23836,3008:110,80,-1,0,0,0.662685 -23837,3008:111,81,-1,0,0,0.662042 -23838,3008:112,82,-1,0,0,0.662111 -23839,3008:113,83,-1,0,0,0.663168 -23840,3008:114,84,-1,0,0,0.66397 -23841,3008:215,85,-1,0,0,0.664887 -23842,3008:216,86,-1,0,0,0.664978 -23843,3008:217,87,-1,0,0,0.664841 -23844,3008:218,88,-1,0,0,0.663993 -23845,3008:219,89,-1,0,0,0.664291 -23846,3009:110,90,-1,0,0,0.665231 -23847,3009:111,91,-1,0,0,0.665001 -23848,3009:112,92,-1,0,0,0.661996 -23849,3009:113,93,-1,0,0,0.662066 -23850,3009:114,94,-1,0,0,0.661652 -23851,3009:215,95,-1,0,0,0.662962 -23852,3009:216,96,-1,0,0,0.666259 -23853,3009:217,97,-1,0,0,0.669495 -23854,3009:218,98,-1,0,0,0.671425 -23855,3010:112,102,-1,0,0,0.673687 -23856,3010:215,105,-1,0,0,0.645792 -23857,3010:216,106,-1,0,0,0.648091 -23858,3010:217,107,-1,0,0,0.650127 -23859,3010:218,108,-1,0,0,0.656596 -23860,3010:219,109,-1,0,0,0.671765 -23861,3011:110,110,-1,0,0,0.676864 -23862,3011:111,111,-1,0,0,0.681877 -23863,3011:219,119,-1,0,0,0.654973 -23864,3012:110,120,-1,0,0,0.661284 -23865,3012:111,121,-1,0,0,0.661675 -23866,3012:112,122,-1,0,0,0.664062 -23867,3012:113,123,-1,0,0,0.666738 -23868,3012:114,124,-1,0,0,0.668358 -23869,3012:215,125,-1,0,0,0.664223 -23870,3012:216,126,-1,0,0,0.665962 -23871,3012:217,127,-1,0,0,0.66491 -23872,3012:219,129,-1,0,0,0.672444 -23873,3013:110,130,-1,0,0,0.667606 -23874,3013:111,131,-1,0,0,0.668449 -23875,3013:112,132,-1,0,0,0.667833 -23876,3013:113,133,-1,0,0,0.667925 -23877,3013:114,134,-1,0,0,0.665917 -23878,3013:215,135,-1,0,0,0.664933 -23879,3013:216,136,-1,0,0,0.66475 -23880,3013:217,137,-1,0,0,0.664955 -23881,3013:218,138,-1,0,0,0.66397 -23882,3013:219,139,-1,0,0,0.663305 -23883,3014:110,140,-1,0,0,0.663512 -23884,3014:111,141,-1,0,0,0.665779 -23885,3014:112,142,-1,0,0,0.668062 -23886,3014:113,143,-1,0,0,0.670971 -23887,3014:114,144,-1,0,0,0.673552 -23888,3014:215,145,-1,0,0,0.674523 -23889,3014:216,146,-1,0,0,0.675762 -23890,3014:217,147,-1,0,0,0.676549 -23891,3014:218,148,-1,0,0,0.677762 -23892,3014:219,149,-1,0,0,0.678794 -23893,3015:110,150,-1,0,0,0.679264 -23894,3015:111,151,-1,0,0,0.679107 -23895,3015:112,152,-1,0,0,0.678704 -23896,3015:113,153,-1,0,0,0.677336 -23897,3015:114,154,-1,0,0,0.676392 -23898,3015:215,155,-1,0,0,0.676976 -23899,3015:216,156,-1,0,0,0.677201 -23900,3015:217,157,-1,0,0,0.676775 -23901,3015:218,158,-1,0,0,0.676302 -23902,3015:219,159,-1,0,0,0.675965 -23903,3016:110,160,-1,0,0,0.675559 -23904,3016:111,161,-1,0,0,0.675222 -23905,3016:112,162,-1,0,0,0.675289 -23906,3016:113,163,-1,0,0,0.675785 -23907,3016:114,164,-1,0,0,0.67637 -23908,3016:215,165,-1,0,0,0.676729 -23909,3016:216,166,-1,0,0,0.676752 -23910,3016:217,167,-1,0,0,0.676796 -23911,3016:218,168,-1,0,0,0.677089 -23912,3016:219,169,-1,0,0,0.676055 -23913,3017:110,170,-1,0,0,0.677874 -23914,3017:111,171,-1,0,0,0.677762 -23915,3017:112,172,-1,0,0,0.677493 -23916,3017:113,173,-1,0,0,0.677942 -23917,3017:114,174,-1,0,0,0.678435 -23918,3017:215,175,-1,0,0,0.678143 -23919,3017:216,176,-1,0,0,0.676819 -23920,3017:217,177,-1,0,0,0.67637 -23921,3017:218,178,-1,0,0,0.675807 -23922,3017:219,179,-1,0,0,0.676055 -23923,3018:110,180,-1,0,0,0.675672 -23924,7018:110,-180,0,0,0,0.670018 -23925,7017:219,-179,0,0,0,0.669245 -23926,7017:218,-178,0,0,0,0.66854 -23927,7017:217,-177,0,0,0,0.668107 -23928,7017:216,-176,0,0,0,0.667902 -23929,7017:215,-175,0,0,0,0.667628 -23930,7017:114,-174,0,0,0,0.666168 -23931,7017:113,-173,0,0,0,0.665665 -23932,7017:112,-172,0,0,0,0.665207 -23933,7017:111,-171,0,0,0,0.665024 -23934,7017:110,-170,0,0,0,0.663558 -23935,7016:219,-169,0,0,0,0.66241 -23936,7016:218,-168,0,0,0,0.66397 -23937,7016:217,-167,0,0,0,0.662685 -23938,7016:216,-166,0,0,0,0.659394 -23939,7016:215,-165,0,0,0,0.656179 -23940,7016:114,-164,0,0,0,0.654276 -23941,7016:113,-163,0,0,0,0.653462 -23942,7016:112,-162,0,0,0,0.654531 -23943,7016:111,-161,0,0,0,0.65611 -23944,7016:110,-160,0,0,0,0.653229 -23945,7015:219,-159,0,0,0,0.650641 -23946,7015:218,-158,0,0,0,0.655344 -23947,7015:217,-157,0,0,0,0.654136 -23948,7015:216,-156,0,0,0,0.653183 -23949,7015:215,-155,0,0,0,0.654833 -23950,7015:114,-154,0,0,0,0.655321 -23951,7015:113,-153,0,0,0,0.652671 -23952,7015:112,-152,0,0,0,0.649052 -23953,7015:111,-151,0,0,0,0.647271 -23954,7015:110,-150,0,0,0,0.645839 -23955,7014:219,-149,0,0,0,0.645768 -23956,7014:218,-148,0,0,0,0.64398 -23957,7014:217,-147,0,0,0,0.641574 -23958,7014:216,-146,0,0,0,0.63961 -23959,7014:215,-145,0,0,0,0.638212 -23960,7014:114,-144,0,0,0,0.639349 -23961,7014:113,-143,0,0,0,0.64214 -23962,7014:112,-142,0,0,0,0.638235 -23963,7014:111,-141,0,0,0,0.632785 -23964,7014:110,-140,0,0,0,0.633811 -23965,7013:219,-139,0,0,0,0.634193 -23966,7013:218,-138,0,0,0,0.638307 -23967,7013:217,-137,0,0,0,0.639681 -23968,7013:216,-136,0,0,0,0.638638 -23969,7013:215,-135,0,0,0,0.632762 -23970,7013:114,-134,0,0,0,0.628237 -23971,7013:113,-133,0,0,0,0.630371 -23972,7013:112,-132,0,0,0,0.632977 -23973,7013:111,-131,0,0,0,0.629269 -23974,7013:110,-130,0,0,0,0.620503 -23975,7012:219,-129,0,0,0,0.630251 -23976,7012:218,-128,0,0,0,0.632833 -23977,7012:217,-127,0,0,0,0.631256 -23978,7012:216,-126,0,0,0,0.632093 -23979,7012:215,-125,0,0,0,0.625233 -23980,7012:114,-124,0,0,0,0.621808 -23981,7012:113,-123,0,0,0,0.621132 -23982,7012:112,-122,0,0,0,0.611365 -23983,7012:111,-121,0,0,0,0.611633 -23984,7012:110,-120,0,0,0,0.612682 -23985,7011:219,-119,0,0,0,0.621567 -23986,7011:218,-118,0,0,0,0.618978 -23987,7011:217,-117,0,0,0,0.618711 -23988,7011:216,-116,0,0,0,0.620213 -23989,7011:215,-115,0,0,0,0.621422 -23990,7011:114,-114,0,0,0,0.621035 -23991,7011:113,-113,0,0,0,0.619317 -23992,7011:112,-112,0,0,0,0.618008 -23993,7011:111,-111,0,0,0,0.618881 -23994,7011:110,-110,0,0,0,0.62176 -23995,7010:219,-109,0,0,0,0.621833 -23996,7010:218,-108,0,0,0,0.620914 -23997,7010:217,-107,0,0,0,0.620842 -23998,7010:216,-106,0,0,0,0.620454 -23999,7010:215,-105,0,0,0,0.619462 -24000,7010:114,-104,0,0,0,0.618832 -24001,7010:113,-103,0,0,0,0.618663 -24002,7010:112,-102,0,0,0,0.619026 -24003,7010:111,-101,0,0,0,0.620043 -24004,7010:110,-100,0,0,0,0.620865 -24005,7009:219,-99,0,0,0,0.621833 -24006,7009:218,-98,0,0,0,0.622919 -24007,7009:217,-97,0,0,0,0.624149 -24008,7009:216,-96,0,0,0,0.62545 -24009,7009:215,-95,0,0,0,0.62557 -24010,7009:114,-94,0,0,0,0.624608 -24011,7009:113,-93,0,0,0,0.623812 -24012,7009:112,-92,0,0,0,0.623691 -24013,7009:111,-91,0,0,0,0.623643 -24014,7009:110,-90,0,0,0,0.625113 -24015,7008:219,-89,0,0,0,0.626484 -24016,7008:218,-88,0,0,0,0.627637 -24017,7008:217,-87,0,0,0,0.628118 -24018,7008:216,-86,0,0,0,0.626075 -24019,7008:215,-85,0,0,0,0.623595 -24020,7008:114,-84,0,0,0,0.622919 -24021,7008:113,-83,0,0,0,0.621108 -24022,7008:112,-82,0,0,0,0.619365 -24023,7008:111,-81,0,0,0,0.618274 -24024,7008:110,-80,0,0,0,0.618735 -24025,7007:219,-79,0,0,0,0.618008 -24026,7007:218,-78,0,0,0,0.630849 -24027,7005:111,-51,0,0,0,0.637025 -24028,7005:110,-50,0,0,0,0.629413 -24029,7004:219,-49,0,0,0,0.624487 -24030,7004:218,-48,0,0,0,0.626893 -24031,7004:217,-47,0,0,0,0.631185 -24032,7004:216,-46,0,0,0,0.63486 -24033,7004:215,-45,0,0,0,0.636217 -24034,7004:114,-44,0,0,0,0.636526 -24035,7004:113,-43,0,0,0,0.636026 -24036,7004:112,-42,0,0,0,0.634121 -24037,7004:111,-41,0,0,0,0.632857 -24038,7004:110,-40,0,0,0,0.632571 -24039,7003:219,-39,0,0,0,0.632332 -24040,7003:218,-38,0,0,0,0.630849 -24041,7003:217,-37,0,0,0,0.628981 -24042,7003:216,-36,0,0,0,0.627133 -24043,7003:215,-35,0,0,0,0.626388 -24044,7003:114,-34,0,0,0,0.626436 -24045,7003:113,-33,0,0,0,0.625859 -24046,7003:112,-32,0,0,0,0.62557 -24047,7003:111,-31,0,0,0,0.625185 -24048,7003:110,-30,0,0,0,0.625017 -24049,7002:219,-29,0,0,0,0.626965 -24050,7002:218,-28,0,0,0,0.627662 -24051,7002:217,-27,0,0,0,0.628357 -24052,7002:216,-26,0,0,0,0.629149 -24053,7002:215,-25,0,0,0,0.631041 -24054,7002:114,-24,0,0,0,0.632762 -24055,7002:113,-23,0,0,0,0.634098 -24056,7002:112,-22,0,0,0,0.635337 -24057,7002:111,-21,0,0,0,0.635432 -24058,7002:110,-20,0,0,0,0.635432 -24059,7001:219,-19,0,0,0,0.637832 -24060,7001:218,-18,0,0,0,0.638876 -24061,7001:217,-17,0,0,0,0.639989 -24062,7001:216,-16,0,0,0,0.641526 -24063,7001:215,-15,0,0,0,0.642565 -24064,7001:114,-14,0,0,0,0.644074 -24065,7001:113,-13,0,0,0,0.646544 -24066,7001:112,-12,0,0,0,0.64987 -24067,7001:111,-11,0,0,0,0.652833 -24068,7001:110,-10,0,0,0,0.655483 -24069,7000:219,-9,0,0,0,0.65699 -24070,7000:218,-8,0,0,0,0.658378 -24071,7000:217,-7,0,0,0,0.659809 -24072,7000:216,-6,0,0,0,0.661536 -24073,7000:215,-5,0,0,0,0.664017 -24074,7000:114,-4,0,0,0,0.66635 -24075,7000:113,-3,0,0,0,0.667879 -24076,7000:112,-2,0,0,0,0.668972 -24077,7000:111,-1,0,0,0,0.671584 -24078,1000:111,0,0,0,0,0.672263 -24079,1000:111,1,0,0,0,0.669427 -24080,1000:112,2,0,0,0,0.669836 -24081,1000:113,3,0,0,0,0.669972 -24082,1000:114,4,0,0,0,0.671991 -24083,1000:215,5,0,0,0,0.672625 -24084,1000:216,6,0,0,0,0.666899 -24085,1000:217,7,0,0,0,0.662594 -24086,1000:218,8,0,0,0,0.660178 -24087,1000:219,9,0,0,0,0.660247 -24088,1004:217,47,0,0,0,0.633835 -24089,1004:218,48,0,0,0,0.633859 -24090,1004:219,49,0,0,0,0.63871 -24091,1005:110,50,0,0,0,0.641715 -24092,1005:111,51,0,0,0,0.646731 -24093,1005:112,52,0,0,0,0.646825 -24094,1005:113,53,0,0,0,0.647552 -24095,1005:114,54,0,0,0,0.646637 -24096,1005:215,55,0,0,0,0.650127 -24097,1005:216,56,0,0,0,0.65488 -24098,1005:217,57,0,0,0,0.659371 -24099,1005:218,58,0,0,0,0.658216 -24100,1005:219,59,0,0,0,0.654508 -24101,1006:110,60,0,0,0,0.650898 -24102,1006:111,61,0,0,0,0.651201 -24103,1006:112,62,0,0,0,0.650594 -24104,1006:113,63,0,0,0,0.647951 -24105,1006:114,64,0,0,0,0.646989 -24106,1006:215,65,0,0,0,0.652694 -24107,1006:216,66,0,0,0,0.657291 -24108,1006:217,67,0,0,0,0.659555 -24109,1006:218,68,0,0,0,0.661376 -24110,1006:219,69,0,0,0,0.664658 -24111,1007:110,70,0,0,0,0.66635 -24112,1007:111,71,0,0,0,0.666053 -24113,1007:112,72,0,0,0,0.66475 -24114,1007:114,74,0,0,0,0.663237 -24115,1007:215,75,0,0,0,0.661789 -24116,1007:216,76,0,0,0,0.660178 -24117,1007:217,77,0,0,0,0.660016 -24118,1007:218,78,0,0,0,0.659555 -24119,1007:219,79,0,0,0,0.658932 -24120,1008:110,80,0,0,0,0.658077 -24121,1008:111,81,0,0,0,0.65817 -24122,1008:112,82,0,0,0,0.659509 -24123,1008:113,83,0,0,0,0.660708 -24124,1008:114,84,0,0,0,0.662915 -24125,1008:215,85,0,0,0,0.664772 -24126,1008:216,86,0,0,0,0.66397 -24127,1008:217,87,0,0,0,0.662938 -24128,1008:218,88,0,0,0,0.662685 -24129,1008:219,89,0,0,0,0.663099 -24130,1009:110,90,0,0,0,0.663604 -24131,1009:111,91,0,0,0,0.661767 -24132,1009:112,92,0,0,0,0.662525 -24133,1009:113,93,0,0,0,0.665322 -24134,1009:114,94,0,0,0,0.666738 -24135,1009:215,95,0,0,0,0.667765 -24136,1009:216,96,0,0,0,0.669904 -24137,1009:217,97,0,0,0,0.671493 -24138,1010:110,100,0,0,0,0.673394 -24139,1010:111,101,0,0,0,0.679354 -24140,1010:114,104,0,0,0,0.640202 -24141,1010:215,105,0,0,0,0.637499 -24142,1010:216,106,0,0,0,0.639563 -24143,1010:217,107,0,0,0,0.631567 -24144,1010:218,108,0,0,0,0.644357 -24145,1010:219,109,0,0,0,0.656573 -24146,1011:110,110,0,0,0,0.664635 -24147,1011:111,111,0,0,0,0.667378 -24148,1011:112,112,0,0,0,0.670155 -24149,1011:113,113,0,0,0,0.672942 -24150,1011:218,118,0,0,0,0.66172 -24151,1011:219,119,0,0,0,0.651155 -24152,1012:110,120,0,0,0,0.658632 -24153,1012:111,121,0,0,0,0.664017 -24154,1012:112,122,0,0,0,0.665596 -24155,1012:113,123,0,0,0,0.666944 -24156,1012:114,124,0,0,0,0.667195 -24157,1012:215,125,0,0,0,0.665847 -24158,1012:216,126,0,0,0,0.66895 -24159,1012:217,127,0,0,0,0.662042 -24160,1012:218,128,0,0,0,0.664131 -24161,1012:219,129,0,0,0,0.664589 -24162,1013:110,130,0,0,0,0.665367 -24163,1013:111,131,0,0,0,0.663099 -24164,1013:112,132,0,0,0,0.658863 -24165,1013:113,133,0,0,0,0.659094 -24166,1013:114,134,0,0,0,0.661789 -24167,1013:215,135,0,0,0,0.664589 -24168,1013:216,136,0,0,0,0.667537 -24169,1013:217,137,0,0,0,0.671062 -24170,1013:218,138,0,0,0,0.669746 -24171,1013:219,139,0,0,0,0.66929 -24172,1014:110,140,0,0,0,0.669972 -24173,1014:111,141,0,0,0,0.669586 -24174,1014:112,142,0,0,0,0.669131 -24175,1014:113,143,0,0,0,0.670268 -24176,1014:114,144,0,0,0,0.672308 -24177,1014:215,145,0,0,0,0.673981 -24178,1014:216,146,0,0,0,0.674658 -24179,1014:217,147,0,0,0,0.676055 -24180,1014:218,148,0,0,0,0.678054 -24181,1014:219,149,0,0,0,0.67839 -24182,1015:110,150,0,0,0,0.678524 -24183,1015:111,151,0,0,0,0.678189 -24184,1015:112,152,0,0,0,0.677403 -24185,1015:113,153,0,0,0,0.67637 -24186,1015:114,154,0,0,0,0.675739 -24187,1015:215,155,0,0,0,0.675357 -24188,1015:216,156,0,0,0,0.675041 -24189,1015:217,157,0,0,0,0.674297 -24190,1015:218,158,0,0,0,0.673122 -24191,1015:219,159,0,0,0,0.672217 -24192,1016:110,160,0,0,0,0.671538 -24193,1016:111,161,0,0,0,0.671357 -24194,1016:112,162,0,0,0,0.671878 -24195,1016:113,163,0,0,0,0.672602 -24196,1016:114,164,0,0,0,0.67319 -24197,1016:215,165,0,0,0,0.673258 -24198,1016:216,166,0,0,0,0.672467 -24199,1016:217,167,0,0,0,0.672105 -24200,1016:218,168,0,0,0,0.672308 -24201,1016:219,169,0,0,0,0.674342 -24202,1017:110,170,0,0,0,0.675289 -24203,1017:111,171,0,0,0,0.675199 -24204,1017:112,172,0,0,0,0.675086 -24205,1017:113,173,0,0,0,0.675041 -24206,1017:114,174,0,0,0,0.675447 -24207,1017:215,175,0,0,0,0.676864 -24208,1017:216,176,0,0,0,0.675785 -24209,1017:217,177,0,0,0,0.672942 -24210,1017:218,178,0,0,0,0.67138 -24211,1017:219,179,0,0,0,0.670971 -24212,1018:110,180,0,0,0,0.670018 -24213,7018:110,-180,1,0,0,0.667172 -24214,7017:219,-179,1,0,0,0.665939 -24215,7017:218,-178,1,0,0,0.664521 -24216,7017:217,-177,1,0,0,0.663168 -24217,7017:216,-176,1,0,0,0.662387 -24218,7017:215,-175,1,0,0,0.662433 -24219,7017:114,-174,1,0,0,0.66241 -24220,7017:113,-173,1,0,0,0.662594 -24221,7017:112,-172,1,0,0,0.661007 -24222,7017:111,-171,1,0,0,0.66057 -24223,7017:110,-170,1,0,0,0.659947 -24224,7016:219,-169,1,0,0,0.660408 -24225,7016:218,-168,1,0,0,0.660293 -24226,7016:217,-167,1,0,0,0.660408 -24227,7016:216,-166,1,0,0,0.659647 -24228,7016:215,-165,1,0,0,0.659486 -24229,7016:114,-164,1,0,0,0.659024 -24230,7016:113,-163,1,0,0,0.658539 -24231,7016:112,-162,1,0,0,0.657777 -24232,7016:111,-161,1,0,0,0.656086 -24233,7016:110,-160,1,0,0,0.655042 -24234,7015:219,-159,1,0,0,0.656132 -24235,7015:218,-158,1,0,0,0.656016 -24236,7015:217,-157,1,0,0,0.655344 -24237,7015:216,-156,1,0,0,0.654787 -24238,7015:215,-155,1,0,0,0.655089 -24239,7015:114,-154,1,0,0,0.654671 -24240,7015:113,-153,1,0,0,0.654671 -24241,7015:112,-152,1,0,0,0.653462 -24242,7015:111,-151,1,0,0,0.651715 -24243,7015:110,-150,1,0,0,0.651201 -24244,7014:219,-149,1,0,0,0.651715 -24245,7014:218,-148,1,0,0,0.651015 -24246,7014:217,-147,1,0,0,0.649823 -24247,7014:216,-146,1,0,0,0.647764 -24248,7014:215,-145,1,0,0,0.646426 -24249,7014:114,-144,1,0,0,0.647834 -24250,7014:113,-143,1,0,0,0.648841 -24251,7014:112,-142,1,0,0,0.648443 -24252,7014:111,-141,1,0,0,0.646567 -24253,7014:110,-140,1,0,0,0.648021 -24254,7013:219,-139,1,0,0,0.646027 -24255,7013:218,-138,1,0,0,0.643084 -24256,7013:217,-137,1,0,0,0.641384 -24257,7013:216,-136,1,0,0,0.641763 -24258,7013:215,-135,1,0,0,0.641763 -24259,7013:114,-134,1,0,0,0.640367 -24260,7013:113,-133,1,0,0,0.637476 -24261,7013:112,-132,1,0,0,0.640084 -24262,7013:111,-131,1,0,0,0.642518 -24263,7013:110,-130,1,0,0,0.643225 -24264,7012:219,-129,1,0,0,0.640699 -24265,7012:218,-128,1,0,0,0.643485 -24266,7012:217,-127,1,0,0,0.643084 -24267,7012:216,-126,1,0,0,0.640817 -24268,7012:215,-125,1,0,0,0.636074 -24269,7012:114,-124,1,0,0,0.640652 -24270,7012:113,-123,1,0,0,0.64103 -24271,7012:112,-122,1,0,0,0.631878 -24272,7012:111,-121,1,0,0,0.628742 -24273,7012:110,-120,1,0,0,0.635883 -24274,7011:219,-119,1,0,0,0.637998 -24275,7011:218,-118,1,0,0,0.63486 -24276,7011:217,-117,1,0,0,0.634098 -24277,7011:216,-116,1,0,0,0.634312 -24278,7011:215,-115,1,0,0,0.634264 -24279,7011:114,-114,1,0,0,0.634384 -24280,7011:113,-113,1,0,0,0.63455 -24281,7011:112,-112,1,0,0,0.635098 -24282,7011:111,-111,1,0,0,0.635408 -24283,7011:110,-110,1,0,0,0.635122 -24284,7010:219,-109,1,0,0,0.634026 -24285,7010:218,-108,1,0,0,0.632785 -24286,7010:217,-107,1,0,0,0.631567 -24287,7010:216,-106,1,0,0,0.630514 -24288,7010:215,-105,1,0,0,0.629628 -24289,7010:114,-104,1,0,0,0.628694 -24290,7010:113,-103,1,0,0,0.627902 -24291,7010:112,-102,1,0,0,0.627374 -24292,7010:111,-101,1,0,0,0.627374 -24293,7010:110,-100,1,0,0,0.62747 -24294,7009:219,-99,1,0,0,0.627902 -24295,7009:218,-98,1,0,0,0.628118 -24296,7009:217,-97,1,0,0,0.628141 -24297,7009:216,-96,1,0,0,0.628357 -24298,7009:215,-95,1,0,0,0.629054 -24299,7009:114,-94,1,0,0,0.628646 -24300,7009:113,-93,1,0,0,0.628357 -24301,7009:112,-92,1,0,0,0.62771 -24302,7009:111,-91,1,0,0,0.627157 -24303,7009:110,-90,1,0,0,0.627421 -24304,7008:219,-89,1,0,0,0.628765 -24305,7008:218,-88,1,0,0,0.630802 -24306,7008:217,-87,1,0,0,0.633669 -24307,7008:216,-86,1,0,0,0.633764 -24308,7008:215,-85,1,0,0,0.636621 -24309,7008:114,-84,1,0,0,0.636336 -24310,7008:113,-83,1,0,0,0.632451 -24311,7008:112,-82,1,0,0,0.633263 -24312,7008:111,-81,1,0,0,0.633693 -24313,7008:110,-80,1,0,0,0.633239 -24314,7007:219,-79,1,0,0,0.629724 -24315,7007:218,-78,1,0,0,0.630802 -24316,7005:112,-52,1,0,0,0.619293 -24317,7005:111,-51,1,0,0,0.625956 -24318,7005:110,-50,1,0,0,0.626893 -24319,7004:219,-49,1,0,0,0.631376 -24320,7004:218,-48,1,0,0,0.630611 -24321,7004:217,-47,1,0,0,0.630443 -24322,7004:216,-46,1,0,0,0.633573 -24323,7004:215,-45,1,0,0,0.636002 -24324,7004:114,-44,1,0,0,0.635479 -24325,7004:113,-43,1,0,0,0.632571 -24326,7004:112,-42,1,0,0,0.630922 -24327,7004:111,-41,1,0,0,0.632045 -24328,7004:110,-40,1,0,0,0.632356 -24329,7003:219,-39,1,0,0,0.63269 -24330,7003:218,-38,1,0,0,0.632499 -24331,7003:217,-37,1,0,0,0.631639 -24332,7003:216,-36,1,0,0,0.63128 -24333,7003:215,-35,1,0,0,0.630347 -24334,7003:114,-34,1,0,0,0.630323 -24335,7003:113,-33,1,0,0,0.629365 -24336,7003:112,-32,1,0,0,0.628958 -24337,7003:111,-31,1,0,0,0.629221 -24338,7003:110,-30,1,0,0,0.629557 -24339,7002:219,-29,1,0,0,0.630227 -24340,7002:218,-28,1,0,0,0.630969 -24341,7002:217,-27,1,0,0,0.632212 -24342,7002:216,-26,1,0,0,0.633072 -24343,7002:215,-25,1,0,0,0.633693 -24344,7002:114,-24,1,0,0,0.634884 -24345,7002:113,-23,1,0,0,0.635907 -24346,7002:112,-22,1,0,0,0.637381 -24347,7002:111,-21,1,0,0,0.638497 -24348,7002:110,-20,1,0,0,0.64006 -24349,7001:219,-19,1,0,0,0.642164 -24350,7001:218,-18,1,0,0,0.644992 -24351,7001:217,-17,1,0,0,0.646191 -24352,7001:216,-16,1,0,0,0.647341 -24353,7001:215,-15,1,0,0,0.648091 -24354,7001:114,-14,1,0,0,0.648185 -24355,7001:113,-13,1,0,0,0.649519 -24356,7001:112,-12,1,0,0,0.650992 -24357,7001:111,-11,1,0,0,0.655019 -24358,7001:110,-10,1,0,0,0.659901 -24359,7000:216,-6,1,0,0,0.661053 -24360,7000:215,-5,1,0,0,0.663305 -24361,7000:114,-4,1,0,0,0.665619 -24362,7000:113,-3,1,0,0,0.667993 -24363,7000:111,-1,1,0,0,0.664978 -24364,1000:111,0,1,0,0,0.673733 -24365,1000:111,1,1,0,0,0.673913 -24366,1000:112,2,1,0,0,0.673236 -24367,1000:113,3,1,0,0,0.67468 -24368,1000:114,4,1,0,0,0.676234 -24369,1000:215,5,1,0,0,0.674342 -24370,1004:219,49,1,0,0,0.631567 -24371,1005:110,50,1,0,0,0.639586 -24372,1005:111,51,1,0,0,0.63987 -24373,1005:112,52,1,0,0,0.63814 -24374,1005:113,53,1,0,0,0.638994 -24375,1005:114,54,1,0,0,0.643603 -24376,1005:215,55,1,0,0,0.648537 -24377,1005:216,56,1,0,0,0.654345 -24378,1005:217,57,1,0,0,0.656248 -24379,1005:218,58,1,0,0,0.656781 -24380,1005:219,59,1,0,0,0.654415 -24381,1006:110,60,1,0,0,0.656897 -24382,1006:111,61,1,0,0,0.654787 -24383,1006:112,62,1,0,0,0.652368 -24384,1006:113,63,1,0,0,0.651924 -24385,1006:114,64,1,0,0,0.65402 -24386,1006:215,65,1,0,0,0.656318 -24387,1006:216,66,1,0,0,0.656897 -24388,1006:217,67,1,0,0,0.659209 -24389,1006:218,68,1,0,0,0.661675 -24390,1006:219,69,1,0,0,0.662318 -24391,1007:110,70,1,0,0,0.662502 -24392,1007:111,71,1,0,0,0.662617 -24393,1007:112,72,1,0,0,0.661882 -24394,1007:114,74,1,0,0,0.657198 -24395,1007:215,75,1,0,0,0.65481 -24396,1007:216,76,1,0,0,0.653578 -24397,1007:217,77,1,0,0,0.65395 -24398,1007:218,78,1,0,0,0.654369 -24399,1007:219,79,1,0,0,0.654508 -24400,1008:110,80,1,0,0,0.652414 -24401,1008:111,81,1,0,0,0.649332 -24402,1008:112,82,1,0,0,0.652181 -24403,1008:113,83,1,0,0,0.658077 -24404,1008:114,84,1,0,0,0.660386 -24405,1008:215,85,1,0,0,0.660339 -24406,1008:216,86,1,0,0,0.659301 -24407,1008:217,87,1,0,0,0.656642 -24408,1008:218,88,1,0,0,0.655669 -24409,1008:219,89,1,0,0,0.655924 -24410,1009:110,90,1,0,0,0.654764 -24411,1009:111,91,1,0,0,0.654276 -24412,1009:112,92,1,0,0,0.65611 -24413,1009:113,93,1,0,0,0.657106 -24414,1009:114,94,1,0,0,0.659024 -24415,1009:215,95,1,0,0,0.66404 -24416,1009:219,99,1,0,0,0.662571 -24417,1010:110,100,1,0,0,0.658608 -24418,1010:114,104,1,0,0,0.638093 -24419,1010:215,105,1,0,0,0.629964 -24420,1010:216,106,1,0,0,0.629005 -24421,1010:217,107,1,0,0,0.62807 -24422,1010:218,108,1,0,0,0.633835 -24423,1010:219,109,1,0,0,0.643674 -24424,1011:110,110,1,0,0,0.646473 -24425,1011:111,111,1,0,0,0.653741 -24426,1011:112,112,1,0,0,0.658493 -24427,1011:113,113,1,0,0,0.662456 -24428,1011:114,114,1,0,0,0.66683 -24429,1011:215,115,1,0,0,0.669586 -24430,1012:110,120,1,0,0,0.662594 -24431,1012:111,121,1,0,0,0.649215 -24432,1012:112,122,1,0,0,0.65409 -24433,1012:113,123,1,0,0,0.658146 -24434,1012:114,124,1,0,0,0.654833 -24435,1012:215,125,1,0,0,0.645439 -24436,1012:216,126,1,0,0,0.644592 -24437,1012:217,127,1,0,0,0.655135 -24438,1012:218,128,1,0,0,0.663374 -24439,1012:219,129,1,0,0,0.665161 -24440,1013:110,130,1,0,0,0.666282 -24441,1013:111,131,1,0,0,0.666738 -24442,1013:112,132,1,0,0,0.664612 -24443,1013:113,133,1,0,0,0.6628 -24444,1013:114,134,1,0,0,0.664544 -24445,1013:215,135,1,0,0,0.668768 -24446,1013:216,136,1,0,0,0.672308 -24447,1013:217,137,1,0,0,0.671153 -24448,1013:218,138,1,0,0,0.667606 -24449,1013:219,139,1,0,0,0.66797 -24450,1014:110,140,1,0,0,0.669086 -24451,1014:111,141,1,0,0,0.66929 -24452,1014:112,142,1,0,0,0.670018 -24453,1014:113,143,1,0,0,0.671108 -24454,1014:114,144,1,0,0,0.672399 -24455,1014:215,145,1,0,0,0.673755 -24456,1014:216,146,1,0,0,0.674161 -24457,1014:217,147,1,0,0,0.673778 -24458,1014:218,148,1,0,0,0.673484 -24459,1014:219,149,1,0,0,0.673349 -24460,1015:110,150,1,0,0,0.674026 -24461,1015:111,151,1,0,0,0.67441 -24462,1015:112,152,1,0,0,0.673529 -24463,1015:113,153,1,0,0,0.672399 -24464,1015:114,154,1,0,0,0.66995 -24465,1015:215,155,1,0,0,0.668722 -24466,1015:216,156,1,0,0,0.669313 -24467,1015:217,157,1,0,0,0.671039 -24468,1015:218,158,1,0,0,0.671493 -24469,1015:219,159,1,0,0,0.670881 -24470,1016:110,160,1,0,0,0.670132 -24471,1016:111,161,1,0,0,0.669609 -24472,1016:112,162,1,0,0,0.669518 -24473,1016:113,163,1,0,0,0.669586 -24474,1016:114,164,1,0,0,0.669268 -24475,1016:215,165,1,0,0,0.668381 -24476,1016:216,166,1,0,0,0.668586 -24477,1016:217,167,1,0,0,0.669381 -24478,1016:218,168,1,0,0,0.670336 -24479,1016:219,169,1,0,0,0.67079 -24480,1017:110,170,1,0,0,0.670086 -24481,1017:111,171,1,0,0,0.671085 -24482,1017:112,172,1,0,0,0.672806 -24483,1017:113,173,1,0,0,0.672421 -24484,1017:114,174,1,0,0,0.670858 -24485,1017:215,175,1,0,0,0.669199 -24486,1017:216,176,1,0,0,0.669836 -24487,1017:217,177,1,0,0,0.668586 -24488,1017:218,178,1,0,0,0.667742 -24489,1017:219,179,1,0,0,0.667697 -24490,1018:110,180,1,0,0,0.667172 -24491,7018:120,-180,2,0,0,0.66149 -24492,7017:229,-179,2,0,0,0.661789 -24493,7017:228,-178,2,0,0,0.660777 -24926,1006:134,64,3,0,0,0.64438 -24494,7017:227,-177,2,0,0,0.658401 -24495,7017:226,-176,2,0,0,0.655947 -24496,7017:225,-175,2,0,0,0.654601 -24497,7017:124,-174,2,0,0,0.653927 -24498,7017:123,-173,2,0,0,0.65395 -24499,7017:122,-172,2,0,0,0.654392 -24500,7017:121,-171,2,0,0,0.654345 -24501,7017:120,-170,2,0,0,0.654043 -24502,7016:229,-169,2,0,0,0.653112 -24503,7016:228,-168,2,0,0,0.652857 -24504,7016:227,-167,2,0,0,0.651738 -24505,7016:226,-166,2,0,0,0.651505 -24506,7016:225,-165,2,0,0,0.651855 -24507,7016:124,-164,2,0,0,0.652647 -24508,7016:123,-163,2,0,0,0.652904 -24509,7016:122,-162,2,0,0,0.652717 -24510,7016:121,-161,2,0,0,0.652647 -24511,7016:120,-160,2,0,0,0.65281 -24512,7015:229,-159,2,0,0,0.653415 -24513,7015:228,-158,2,0,0,0.653531 -24514,7015:227,-157,2,0,0,0.652997 -24515,7015:226,-156,2,0,0,0.652251 -24516,7015:225,-155,2,0,0,0.651762 -24517,7015:124,-154,2,0,0,0.651668 -24518,7015:123,-153,2,0,0,0.651855 -24519,7015:122,-152,2,0,0,0.652018 -24520,7015:121,-151,2,0,0,0.651855 -24521,7015:120,-150,2,0,0,0.651248 -24522,7014:229,-149,2,0,0,0.650338 -24523,7014:228,-148,2,0,0,0.649777 -24524,7014:227,-147,2,0,0,0.649613 -24525,7014:226,-146,2,0,0,0.649753 -24526,7014:225,-145,2,0,0,0.649823 -24527,7014:124,-144,2,0,0,0.649473 -24528,7014:123,-143,2,0,0,0.649028 -24529,7014:122,-142,2,0,0,0.648817 -24530,7014:121,-141,2,0,0,0.648724 -24531,7014:120,-140,2,0,0,0.648396 -24532,7013:229,-139,2,0,0,0.648208 -24533,7013:228,-138,2,0,0,0.647505 -24534,7013:227,-137,2,0,0,0.646684 -24535,7013:226,-136,2,0,0,0.646215 -24536,7013:225,-135,2,0,0,0.645627 -24537,7013:124,-134,2,0,0,0.64471 -24538,7013:123,-133,2,0,0,0.643556 -24539,7013:122,-132,2,0,0,0.643037 -24540,7013:121,-131,2,0,0,0.643485 -24541,7013:120,-130,2,0,0,0.643626 -24542,7012:229,-129,2,0,0,0.644192 -24543,7012:228,-128,2,0,0,0.644145 -24544,7012:227,-127,2,0,0,0.642377 -24545,7012:226,-126,2,0,0,0.641172 -24546,7012:225,-125,2,0,0,0.642188 -24547,7012:124,-124,2,0,0,0.642211 -24548,7012:123,-123,2,0,0,0.641101 -24549,7012:122,-122,2,0,0,0.639349 -24550,7012:121,-121,2,0,0,0.637998 -24551,7012:120,-120,2,0,0,0.638378 -24552,7011:229,-119,2,0,0,0.639563 -24553,7011:228,-118,2,0,0,0.640178 -24554,7011:227,-117,2,0,0,0.641479 -24555,7011:226,-116,2,0,0,0.641998 -24556,7011:225,-115,2,0,0,0.641408 -24557,7011:124,-114,2,0,0,0.641337 -24558,7011:123,-113,2,0,0,0.641361 -24559,7011:122,-112,2,0,0,0.64129 -24560,7011:121,-111,2,0,0,0.640439 -24561,7011:120,-110,2,0,0,0.638947 -24562,7010:229,-109,2,0,0,0.637167 -24563,7010:228,-108,2,0,0,0.635217 -24564,7010:227,-107,2,0,0,0.63312 -24565,7010:226,-106,2,0,0,0.631519 -24566,7010:225,-105,2,0,0,0.630036 -24567,7010:124,-104,2,0,0,0.629317 -24568,7010:123,-103,2,0,0,0.628718 -24569,7010:122,-102,2,0,0,0.628598 -24570,7010:121,-101,2,0,0,0.628526 -24571,7010:120,-100,2,0,0,0.629077 -24572,7009:229,-99,2,0,0,0.629604 -24573,7009:228,-98,2,0,0,0.629653 -24574,7009:227,-97,2,0,0,0.629269 -24575,7009:226,-96,2,0,0,0.628981 -24576,7009:225,-95,2,0,0,0.628838 -24577,7009:124,-94,2,0,0,0.629413 -24578,7009:123,-93,2,0,0,0.630706 -24579,7009:122,-92,2,0,0,0.631782 -24580,7009:121,-91,2,0,0,0.631902 -24581,7009:120,-90,2,0,0,0.632188 -24582,7008:229,-89,2,0,0,0.633072 -24583,7008:228,-88,2,0,0,0.634622 -24584,7008:227,-87,2,0,0,0.638615 -24585,7008:226,-86,2,0,0,0.643909 -24586,7008:225,-85,2,0,0,0.648373 -24587,7008:124,-84,2,0,0,0.651178 -24588,7008:123,-83,2,0,0,0.652414 -24589,7008:122,-82,2,0,0,0.652041 -24590,7008:121,-81,2,0,0,0.652274 -24591,7008:120,-80,2,0,0,0.649215 -24592,7007:229,-79,2,0,0,0.644969 -24593,7007:228,-78,2,0,0,0.647412 -24594,7005:227,-57,2,0,0,0.611169 -24595,7005:226,-56,2,0,0,0.600447 -24596,7005:225,-55,2,0,0,0.600596 -24597,7005:124,-54,2,0,0,0.60468 -24598,7005:123,-53,2,0,0,0.619898 -24599,7005:122,-52,2,0,0,0.626268 -24600,7005:121,-51,2,0,0,0.629365 -24601,7005:120,-50,2,0,0,0.63006 -24602,7004:229,-49,2,0,0,0.628357 -24603,7004:228,-48,2,0,0,0.627253 -24604,7004:227,-47,2,0,0,0.628045 -24605,7004:226,-46,2,0,0,0.629508 -24606,7004:225,-45,2,0,0,0.632379 -24607,7004:124,-44,2,0,0,0.632308 -24608,7004:123,-43,2,0,0,0.627037 -24609,7004:122,-42,2,0,0,0.625185 -24610,7004:121,-41,2,0,0,0.626244 -24611,7004:120,-40,2,0,0,0.628573 -24612,7003:229,-39,2,0,0,0.629557 -24613,7003:228,-38,2,0,0,0.628262 -24614,7003:227,-37,2,0,0,0.62468 -24615,7003:226,-36,2,0,0,0.624197 -24616,7003:225,-35,2,0,0,0.625474 -24617,7003:124,-34,2,0,0,0.626148 -24618,7003:123,-33,2,0,0,0.624944 -24619,7003:122,-32,2,0,0,0.624197 -24620,7003:121,-31,2,0,0,0.624149 -24621,7003:120,-30,2,0,0,0.624583 -24622,7002:229,-29,2,0,0,0.624391 -24623,7002:228,-28,2,0,0,0.625546 -24624,7002:227,-27,2,0,0,0.62843 -24625,7002:226,-26,2,0,0,0.62994 -24626,7002:225,-25,2,0,0,0.630514 -24627,7002:124,-24,2,0,0,0.631567 -24628,7002:123,-23,2,0,0,0.633621 -24629,7002:122,-22,2,0,0,0.635812 -24630,7002:121,-21,2,0,0,0.638069 -24631,7002:120,-20,2,0,0,0.640912 -24632,7001:229,-19,2,0,0,0.64478 -24633,7001:228,-18,2,0,0,0.647927 -24634,7001:227,-17,2,0,0,0.651924 -24635,7001:226,-16,2,0,0,0.655158 -24636,7001:225,-15,2,0,0,0.656132 -24637,7001:124,-14,2,0,0,0.657499 -24638,7001:123,-13,2,0,0,0.65817 -24639,7001:122,-12,2,0,0,0.657013 -24640,1004:229,49,2,0,0,0.626268 -24641,1005:120,50,2,0,0,0.631687 -24642,1005:121,51,2,0,0,0.636098 -24643,1005:122,52,2,0,0,0.640107 -24644,1005:123,53,2,0,0,0.643179 -24645,1005:124,54,2,0,0,0.64565 -24646,1005:225,55,2,0,0,0.647224 -24647,1005:226,56,2,0,0,0.649519 -24648,1005:227,57,2,0,0,0.650945 -24649,1005:228,58,2,0,0,0.653299 -24650,1005:229,59,2,0,0,0.653322 -24651,1006:120,60,2,0,0,0.655483 -24652,1006:121,61,2,0,0,0.650548 -24653,1006:122,62,2,0,0,0.645416 -24654,1006:123,63,2,0,0,0.646731 -24655,1006:124,64,2,0,0,0.649706 -24656,1006:225,65,2,0,0,0.652088 -24657,1006:226,66,2,0,0,0.654764 -24658,1006:227,67,2,0,0,0.655228 -24659,1006:228,68,2,0,0,0.655576 -24660,1006:229,69,2,0,0,0.657499 -24661,1007:120,70,2,0,0,0.659532 -24662,1007:121,71,2,0,0,0.660132 -24663,1007:122,72,2,0,0,0.659532 -24664,1007:124,74,2,0,0,0.655808 -24665,1007:225,75,2,0,0,0.648162 -24666,1007:226,76,2,0,0,0.646614 -24667,1007:227,77,2,0,0,0.645815 -24668,1007:228,78,2,0,0,0.64431 -24669,1007:229,79,2,0,0,0.642684 -24670,1008:120,80,2,0,0,0.644404 -24671,1008:123,83,2,0,0,0.642612 -24672,1008:124,84,2,0,0,0.65253 -24673,1008:225,85,2,0,0,0.652437 -24674,1008:226,86,2,0,0,0.651131 -24675,1008:227,87,2,0,0,0.650104 -24676,1008:228,88,2,0,0,0.647857 -24677,1008:229,89,2,0,0,0.645839 -24678,1009:120,90,2,0,0,0.643792 -24679,1009:121,91,2,0,0,0.645815 -24680,1009:122,92,2,0,0,0.649379 -24681,1009:123,93,2,0,0,0.651272 -24682,1009:124,94,2,0,0,0.647294 -24683,1009:225,95,2,0,0,0.6487 -24684,1009:226,96,2,0,0,0.648654 -24685,1009:227,97,2,0,0,0.648396 -24686,1009:228,98,2,0,0,0.651575 -24687,1009:229,99,2,0,0,0.650688 -24688,1010:120,100,2,0,0,0.648467 -24689,1010:122,102,2,0,0,0.634645 -24690,1010:123,103,2,0,0,0.638283 -24691,1010:124,104,2,0,0,0.625835 -24692,1010:225,105,2,0,0,0.623354 -24693,1010:226,106,2,0,0,0.619462 -24694,1010:227,107,2,0,0,0.615166 -24695,1010:228,108,2,0,0,0.616697 -24696,1010:229,109,2,0,0,0.635527 -24697,1011:120,110,2,0,0,0.642848 -24698,1011:121,111,2,0,0,0.647669 -24699,1011:122,112,2,0,0,0.649402 -24700,1011:123,113,2,0,0,0.651575 -24701,1011:124,114,2,0,0,0.653345 -24702,1011:225,115,2,0,0,0.654531 -24703,1011:226,116,2,0,0,0.656156 -24704,1011:228,118,2,0,0,0.656202 -24705,1011:229,119,2,0,0,0.652857 -24706,1012:120,120,2,0,0,0.652694 -24707,1012:121,121,2,0,0,0.646261 -24708,1012:122,122,2,0,0,0.64299 -24709,1012:123,123,2,0,0,0.642542 -24710,1012:124,124,2,0,0,0.631519 -24711,1012:226,126,2,0,0,0.648724 -24712,1012:227,127,2,0,0,0.649075 -24713,1012:228,128,2,0,0,0.660063 -24714,1012:229,129,2,0,0,0.662456 -24715,1013:120,130,2,0,0,0.662732 -24716,1013:121,131,2,0,0,0.661007 -24717,1013:122,132,2,0,0,0.66149 -24718,1013:123,133,2,0,0,0.663099 -24719,1013:124,134,2,0,0,0.664887 -24720,1013:225,135,2,0,0,0.665711 -24721,1013:226,136,2,0,0,0.666716 -24722,1013:227,137,2,0,0,0.668312 -24723,1013:228,138,2,0,0,0.667948 -24724,1013:229,139,2,0,0,0.661237 -24725,1014:120,140,2,0,0,0.660201 -24726,1014:121,141,2,0,0,0.662226 -24727,1014:122,142,2,0,0,0.663191 -24728,1014:123,143,2,0,0,0.663948 -24729,1014:124,144,2,0,0,0.664544 -24730,1014:225,145,2,0,0,0.664589 -24731,1014:226,146,2,0,0,0.665711 -24732,1014:227,147,2,0,0,0.666465 -24733,1014:228,148,2,0,0,0.666853 -24734,1014:229,149,2,0,0,0.667081 -24735,1015:120,150,2,0,0,0.668085 -24736,1015:121,151,2,0,0,0.668859 -24737,1015:122,152,2,0,0,0.667833 -24738,1015:123,153,2,0,0,0.667172 -24739,1015:124,154,2,0,0,0.66683 -24740,1015:225,155,2,0,0,0.666807 -24741,1015:226,156,2,0,0,0.667149 -24742,1015:227,157,2,0,0,0.667401 -24743,1015:228,158,2,0,0,0.667332 -24744,1015:229,159,2,0,0,0.662456 -24745,1016:120,160,2,0,0,0.665482 -24746,1016:121,161,2,0,0,0.667035 -24747,1016:122,162,2,0,0,0.666305 -24748,1016:123,163,2,0,0,0.664978 -24749,1016:124,164,2,0,0,0.66381 -24750,1016:225,165,2,0,0,0.662915 -24751,1016:226,166,2,0,0,0.662823 -24752,1016:227,167,2,0,0,0.663833 -24753,1016:228,168,2,0,0,0.664704 -24754,1016:229,169,2,0,0,0.664406 -24755,1017:120,170,2,0,0,0.662111 -24756,1017:121,171,2,0,0,0.660639 -24757,1017:122,172,2,0,0,0.662456 -24758,1017:123,173,2,0,0,0.665344 -24759,1017:124,174,2,0,0,0.669041 -24760,1017:225,175,2,0,0,0.669359 -24761,1017:226,176,2,0,0,0.667993 -24762,1017:227,177,2,0,0,0.666533 -24763,1017:228,178,2,0,0,0.66365 -24764,1017:229,179,2,0,0,0.661468 -24765,1018:120,180,2,0,0,0.66149 -24766,7018:130,-180,3,0,0,0.648841 -24767,7017:239,-179,3,0,0,0.651482 -24768,7017:238,-178,3,0,0,0.650291 -24769,7017:237,-177,3,0,0,0.648068 -24770,7017:236,-176,3,0,0,0.646872 -24771,7017:235,-175,3,0,0,0.645157 -24772,7017:134,-174,3,0,0,0.642802 -24773,7017:133,-173,3,0,0,0.642211 -24774,7017:132,-172,3,0,0,0.642495 -24775,7017:131,-171,3,0,0,0.644404 -24776,7017:130,-170,3,0,0,0.643131 -24777,7016:239,-169,3,0,0,0.641054 -24778,7016:238,-168,3,0,0,0.638022 -24779,7016:237,-167,3,0,0,0.637547 -24780,7016:236,-166,3,0,0,0.639444 -24781,7016:235,-165,3,0,0,0.640604 -24782,7016:134,-164,3,0,0,0.640935 -24783,7016:133,-163,3,0,0,0.641267 -24784,7016:132,-162,3,0,0,0.642305 -24785,7016:131,-161,3,0,0,0.641928 -24786,7016:130,-160,3,0,0,0.640297 -24787,7015:239,-159,3,0,0,0.639421 -24788,7015:238,-158,3,0,0,0.639421 -24789,7015:237,-157,3,0,0,0.639468 -24790,7015:236,-156,3,0,0,0.639373 -24791,7015:235,-155,3,0,0,0.639255 -24792,7015:134,-154,3,0,0,0.64006 -24793,7015:133,-153,3,0,0,0.640982 -24794,7015:132,-152,3,0,0,0.639752 -24795,7015:131,-151,3,0,0,0.635098 -24796,7015:130,-150,3,0,0,0.631973 -24797,7014:239,-149,3,0,0,0.633931 -24798,7014:238,-148,3,0,0,0.635027 -24799,7014:237,-147,3,0,0,0.635574 -24800,7014:236,-146,3,0,0,0.636692 -24801,7014:235,-145,3,0,0,0.636621 -24802,7014:134,-144,3,0,0,0.635027 -24803,7014:133,-143,3,0,0,0.633716 -24804,7014:132,-142,3,0,0,0.632236 -24805,7014:131,-141,3,0,0,0.631471 -24806,7014:130,-140,3,0,0,0.633859 -24807,7013:239,-139,3,0,0,0.637143 -24808,7013:238,-138,3,0,0,0.638686 -24809,7013:237,-137,3,0,0,0.638378 -24810,7013:236,-136,3,0,0,0.638188 -24811,7013:235,-135,3,0,0,0.637404 -24812,7013:134,-134,3,0,0,0.635574 -24813,7013:133,-133,3,0,0,0.633716 -24814,7013:132,-132,3,0,0,0.632785 -24815,7013:131,-131,3,0,0,0.63226 -24816,7013:130,-130,3,0,0,0.634431 -24817,7012:239,-129,3,0,0,0.636811 -24818,7012:238,-128,3,0,0,0.637618 -24819,7012:237,-127,3,0,0,0.637262 -24820,7012:236,-126,3,0,0,0.637025 -24821,7012:235,-125,3,0,0,0.638093 -24822,7012:134,-124,3,0,0,0.639349 -24823,7012:133,-123,3,0,0,0.639942 -24824,7012:132,-122,3,0,0,0.640131 -24825,7012:131,-121,3,0,0,0.639729 -24826,7012:130,-120,3,0,0,0.639847 -24827,7011:239,-119,3,0,0,0.640935 -24828,7011:238,-118,3,0,0,0.641952 -24829,7011:237,-117,3,0,0,0.64155 -24830,7011:236,-116,3,0,0,0.640391 -24831,7011:235,-115,3,0,0,0.63961 -24832,7011:134,-114,3,0,0,0.639468 -24833,7011:133,-113,3,0,0,0.639492 -24834,7011:132,-112,3,0,0,0.637975 -24835,7011:131,-111,3,0,0,0.634979 -24836,7011:130,-110,3,0,0,0.633263 -24837,7010:239,-109,3,0,0,0.631806 -24838,7010:238,-108,3,0,0,0.629533 -24839,7010:237,-107,3,0,0,0.628382 -24840,7010:236,-106,3,0,0,0.628094 -24841,7010:235,-105,3,0,0,0.628526 -24842,7010:134,-104,3,0,0,0.628118 -24843,7010:133,-103,3,0,0,0.626316 -24844,7010:132,-102,3,0,0,0.623233 -24845,7010:131,-101,3,0,0,0.617814 -24846,7010:130,-100,3,0,0,0.614485 -24847,7009:239,-99,3,0,0,0.615993 -24848,7009:238,-98,3,0,0,0.618129 -24849,7009:237,-97,3,0,0,0.619946 -24850,7009:236,-96,3,0,0,0.620865 -24851,7009:235,-95,3,0,0,0.621808 -24852,7009:134,-94,3,0,0,0.624101 -24853,7009:133,-93,3,0,0,0.627806 -24854,7009:132,-92,3,0,0,0.628141 -24855,7009:131,-91,3,0,0,0.626148 -24856,7009:130,-90,3,0,0,0.622702 -24857,7008:239,-89,3,0,0,0.628598 -24858,7008:238,-88,3,0,0,0.636383 -24859,7008:237,-87,3,0,0,0.641125 -24860,7008:236,-86,3,0,0,0.651924 -24861,7008:235,-85,3,0,0,0.658794 -24862,7008:134,-84,3,0,0,0.660708 -24863,7008:133,-83,3,0,0,0.656434 -24864,7008:130,-80,3,0,0,0.657684 -24865,7007:239,-79,3,0,0,0.65253 -24866,7005:239,-59,3,0,0,0.624559 -24867,7005:238,-58,3,0,0,0.619487 -24868,7005:237,-57,3,0,0,0.626725 -24869,7005:236,-56,3,0,0,0.627421 -24870,7005:235,-55,3,0,0,0.626989 -24871,7005:134,-54,3,0,0,0.630825 -24872,7005:133,-53,3,0,0,0.631662 -24873,7005:132,-52,3,0,0,0.63073 -24874,7005:131,-51,3,0,0,0.629628 -24875,7005:130,-50,3,0,0,0.628382 -24876,7004:239,-49,3,0,0,0.630323 -24877,7004:238,-48,3,0,0,0.628742 -24878,7004:237,-47,3,0,0,0.628382 -24879,7004:236,-46,3,0,0,0.627541 -24880,7004:235,-45,3,0,0,0.627109 -24881,7004:134,-44,3,0,0,0.626436 -24882,7004:133,-43,3,0,0,0.625931 -24883,7004:132,-42,3,0,0,0.623908 -24884,7004:131,-41,3,0,0,0.622799 -24885,7004:130,-40,3,0,0,0.623523 -24886,7003:239,-39,3,0,0,0.623787 -24887,7003:238,-38,3,0,0,0.620213 -24888,7003:237,-37,3,0,0,0.616721 -24889,7003:236,-36,3,0,0,0.617693 -24890,7003:235,-35,3,0,0,0.619293 -24891,7003:134,-34,3,0,0,0.616649 -24892,7003:133,-33,3,0,0,0.617061 -24893,7003:132,-32,3,0,0,0.617231 -24894,7003:131,-31,3,0,0,0.619244 -24895,7003:130,-30,3,0,0,0.619777 -24896,7002:239,-29,3,0,0,0.620237 -24897,7002:238,-28,3,0,0,0.62014 -24898,7002:237,-27,3,0,0,0.621518 -24899,7002:236,-26,3,0,0,0.624921 -24900,7002:235,-25,3,0,0,0.624631 -24901,7002:134,-24,3,0,0,0.625811 -24902,7002:133,-23,3,0,0,0.629677 -24903,7002:132,-22,3,0,0,0.633263 -24904,7002:131,-21,3,0,0,0.635859 -24905,7002:130,-20,3,0,0,0.639208 -24906,7001:239,-19,3,0,0,0.645063 -24907,7001:238,-18,3,0,0,0.650268 -24908,7001:237,-17,3,0,0,0.653322 -24909,7001:236,-16,3,0,0,0.657592 -24910,7001:235,-15,3,0,0,0.657175 -24911,7001:134,-14,3,0,0,0.665482 -24912,1005:130,50,3,0,0,0.623595 -24913,1005:131,51,3,0,0,0.625402 -24914,1005:132,52,3,0,0,0.623667 -24915,1005:133,53,3,0,0,0.625763 -24916,1005:134,54,3,0,0,0.634408 -24917,1005:235,55,3,0,0,0.637666 -24918,1005:236,56,3,0,0,0.633597 -24919,1005:237,57,3,0,0,0.635883 -24920,1005:238,58,3,0,0,0.643013 -24921,1005:239,59,3,0,0,0.647716 -24922,1006:130,60,3,0,0,0.648935 -24923,1006:131,61,3,0,0,0.64471 -24924,1006:132,62,3,0,0,0.642754 -24925,1006:133,63,3,0,0,0.64058 -24927,1006:235,65,3,0,0,0.647669 -24928,1006:236,66,3,0,0,0.64966 -24929,1006:237,67,3,0,0,0.650594 -24930,1006:238,68,3,0,0,0.652065 -24931,1006:239,69,3,0,0,0.65295 -24932,1007:130,70,3,0,0,0.655367 -24933,1007:131,71,3,0,0,0.657128 -24934,1007:132,72,3,0,0,0.653438 -24935,1007:134,74,3,0,0,0.647857 -24936,1007:235,75,3,0,0,0.645627 -24937,1007:236,76,3,0,0,0.645768 -24938,1007:237,77,3,0,0,0.645462 -24939,1007:239,79,3,0,0,0.648256 -24940,1008:130,80,3,0,0,0.644498 -24941,1008:132,82,3,0,0,0.627662 -24942,1008:133,83,3,0,0,0.639208 -24943,1008:134,84,3,0,0,0.644357 -24944,1008:235,85,3,0,0,0.644216 -24945,1008:236,86,3,0,0,0.643532 -24946,1008:237,87,3,0,0,0.645039 -24947,1008:238,88,3,0,0,0.645204 -24948,1008:239,89,3,0,0,0.643556 -24949,1009:130,90,3,0,0,0.64372 -24950,1009:131,91,3,0,0,0.644027 -24951,1009:132,92,3,0,0,0.646332 -24952,1009:133,93,3,0,0,0.647412 -24953,1009:134,94,3,0,0,0.645416 -24954,1009:235,95,3,0,0,0.64645 -24955,1009:236,96,3,0,0,0.646989 -24956,1009:237,97,3,0,0,0.649519 -24957,1009:238,98,3,0,0,0.650455 -24958,1010:131,101,3,0,0,0.638402 -24959,1010:132,102,3,0,0,0.638402 -24960,1010:133,103,3,0,0,0.635717 -24961,1010:134,104,3,0,0,0.628861 -24962,1010:235,105,3,0,0,0.615823 -24963,1010:236,106,3,0,0,0.612828 -24964,1010:237,107,3,0,0,0.611072 -24965,1010:238,108,3,0,0,0.610974 -24966,1010:239,109,3,0,0,0.624174 -24967,1011:130,110,3,0,0,0.637476 -24968,1011:131,111,3,0,0,0.645134 -24969,1011:132,112,3,0,0,0.64605 -24970,1011:133,113,3,0,0,0.647435 -24971,1011:134,114,3,0,0,0.648302 -24972,1011:235,115,3,0,0,0.649964 -24973,1011:236,116,3,0,0,0.652228 -24974,1011:237,117,3,0,0,0.65288 -24975,1011:238,118,3,0,0,0.653438 -24976,1011:239,119,3,0,0,0.650758 -24977,1012:130,120,3,0,0,0.647505 -24978,1012:131,121,3,0,0,0.644616 -24979,1012:132,122,3,0,0,0.646332 -24980,1012:133,123,3,0,0,0.629293 -24981,1012:237,127,3,0,0,0.647083 -24982,1012:238,128,3,0,0,0.655391 -24983,1012:239,129,3,0,0,0.658239 -24984,1013:130,130,3,0,0,0.658978 -24985,1013:131,131,3,0,0,0.658794 -24986,1013:132,132,3,0,0,0.658655 -24987,1013:133,133,3,0,0,0.658563 -24988,1013:134,134,3,0,0,0.658447 -24989,1013:235,135,3,0,0,0.659555 -24990,1013:236,136,3,0,0,0.6628 -24991,1013:237,137,3,0,0,0.663833 -24992,1013:238,138,3,0,0,0.664658 -24993,1013:239,139,3,0,0,0.659624 -24994,1014:130,140,3,0,0,0.657846 -24995,1014:131,141,3,0,0,0.658516 -24996,1014:132,142,3,0,0,0.658493 -24997,1014:133,143,3,0,0,0.658401 -24998,1014:134,144,3,0,0,0.658771 -24999,1014:235,145,3,0,0,0.658955 -25000,1014:236,146,3,0,0,0.66149 -25001,1014:237,147,3,0,0,0.663305 -25002,1014:238,148,3,0,0,0.664246 -25003,1014:239,149,3,0,0,0.663191 -25004,1015:130,150,3,0,0,0.665184 -25005,1015:131,151,3,0,0,0.665734 -25006,1015:132,152,3,0,0,0.666008 -25007,1015:133,153,3,0,0,0.666442 -25008,1015:134,154,3,0,0,0.666031 -25009,1015:235,155,3,0,0,0.664795 -25010,1015:236,156,3,0,0,0.663948 -25011,1015:237,157,3,0,0,0.662984 -25012,1015:238,158,3,0,0,0.660915 -25013,1015:239,159,3,0,0,0.661076 -25014,1016:130,160,3,0,0,0.662157 -25015,1016:131,161,3,0,0,0.661214 -25016,1016:132,162,3,0,0,0.659186 -25017,1016:133,163,3,0,0,0.657869 -25018,1016:134,164,3,0,0,0.657499 -25019,1016:235,165,3,0,0,0.657291 -25020,1016:236,166,3,0,0,0.657892 -25021,1016:237,167,3,0,0,0.65847 -25022,1016:238,168,3,0,0,0.658724 -25023,1016:239,169,3,0,0,0.651528 -25024,1017:130,170,3,0,0,0.651389 -25025,1017:131,171,3,0,0,0.655599 -25026,1017:132,172,3,0,0,0.644451 -25027,1017:133,173,3,0,0,0.647834 -25028,1017:134,174,3,0,0,0.653531 -25029,1017:235,175,3,0,0,0.657268 -25030,1017:236,176,3,0,0,0.657106 -25031,1017:237,177,3,0,0,0.652088 -25032,1017:238,178,3,0,0,0.643603 -25033,1017:239,179,3,0,0,0.644545 -25034,1018:130,180,3,0,0,0.648841 -25035,7018:140,-180,4,0,0,0.638307 -25036,7017:249,-179,4,0,0,0.637452 -25037,7017:248,-178,4,0,0,0.636835 -25038,7017:247,-177,4,0,0,0.637238 -25039,7017:246,-176,4,0,0,0.635812 -25040,7017:245,-175,4,0,0,0.634384 -25041,7017:144,-174,4,0,0,0.63436 -25042,7017:143,-173,4,0,0,0.634717 -25043,7017:142,-172,4,0,0,0.63486 -25044,7017:141,-171,4,0,0,0.63374 -25045,7017:140,-170,4,0,0,0.630682 -25046,7016:249,-169,4,0,0,0.62759 -25047,7016:248,-168,4,0,0,0.62622 -25048,7016:247,-167,4,0,0,0.626412 -25049,7016:246,-166,4,0,0,0.628166 -25050,7016:245,-165,4,0,0,0.629197 -25051,7016:144,-164,4,0,0,0.63018 -25052,7016:143,-163,4,0,0,0.629844 -25053,7016:142,-162,4,0,0,0.629269 -25054,7016:141,-161,4,0,0,0.628357 -25055,7016:140,-160,4,0,0,0.626028 -25056,7015:249,-159,4,0,0,0.624222 -25057,7015:248,-158,4,0,0,0.623643 -25058,7015:247,-157,4,0,0,0.622243 -25059,7015:246,-156,4,0,0,0.623547 -25060,7015:245,-155,4,0,0,0.626725 -25061,7015:144,-154,4,0,0,0.627349 -25062,7015:143,-153,4,0,0,0.624391 -25063,7015:142,-152,4,0,0,0.620285 -25064,7015:141,-151,4,0,0,0.61842 -25065,7015:140,-150,4,0,0,0.618832 -25066,7014:249,-149,4,0,0,0.619244 -25067,7014:248,-148,4,0,0,0.618541 -25068,7014:247,-147,4,0,0,0.61859 -25069,7014:246,-146,4,0,0,0.619462 -25070,7014:245,-145,4,0,0,0.618978 -25071,7014:144,-144,4,0,0,0.614485 -25072,7014:143,-143,4,0,0,0.607721 -25073,7014:142,-142,4,0,0,0.607451 -25074,7014:141,-141,4,0,0,0.611096 -25075,7014:140,-140,4,0,0,0.617231 -25076,7013:249,-139,4,0,0,0.620575 -25077,7013:248,-138,4,0,0,0.621978 -25078,7013:247,-137,4,0,0,0.620696 -25079,7013:246,-136,4,0,0,0.618905 -25080,7013:245,-135,4,0,0,0.618686 -25081,7013:144,-134,4,0,0,0.618735 -25082,7013:143,-133,4,0,0,0.618274 -25083,7013:142,-132,4,0,0,0.61728 -25084,7013:141,-131,4,0,0,0.619777 -25085,7013:140,-130,4,0,0,0.624174 -25086,7012:249,-129,4,0,0,0.624848 -25087,7012:248,-128,4,0,0,0.623426 -25088,7012:247,-127,4,0,0,0.622823 -25089,7012:246,-126,4,0,0,0.624463 -25090,7012:245,-125,4,0,0,0.627637 -25091,7012:144,-124,4,0,0,0.63128 -25092,7012:143,-123,4,0,0,0.633573 -25093,7012:142,-122,4,0,0,0.634431 -25094,7012:141,-121,4,0,0,0.635217 -25095,7012:140,-120,4,0,0,0.636526 -25096,7011:249,-119,4,0,0,0.637452 -25097,7011:248,-118,4,0,0,0.637096 -25098,7011:247,-117,4,0,0,0.635883 -25099,7011:246,-116,4,0,0,0.634622 -25100,7011:245,-115,4,0,0,0.633645 -25101,7011:144,-114,4,0,0,0.633239 -25102,7011:143,-113,4,0,0,0.63343 -25103,7011:142,-112,4,0,0,0.632977 -25104,7011:141,-111,4,0,0,0.631495 -25105,7011:140,-110,4,0,0,0.630849 -25106,7010:249,-109,4,0,0,0.630802 -25107,7010:248,-108,4,0,0,0.631352 -25108,7010:247,-107,4,0,0,0.634455 -25109,7010:246,-106,4,0,0,0.636906 -25110,7010:245,-105,4,0,0,0.633811 -25111,7010:144,-104,4,0,0,0.6267 -25112,7010:143,-103,4,0,0,0.622388 -25113,7010:142,-102,4,0,0,0.619656 -25114,7010:141,-101,4,0,0,0.616867 -25115,7010:140,-100,4,0,0,0.613437 -25116,7009:249,-99,4,0,0,0.613706 -25117,7009:248,-98,4,0,0,0.614996 -25118,7009:247,-97,4,0,0,0.617328 -25119,7009:246,-96,4,0,0,0.619825 -25120,7009:245,-95,4,0,0,0.622388 -25121,7009:144,-94,4,0,0,0.625209 -25122,7009:143,-93,4,0,0,0.622847 -25123,7009:142,-92,4,0,0,0.622074 -25124,7009:141,-91,4,0,0,0.618177 -25125,7009:140,-90,4,0,0,0.612731 -25126,7008:249,-89,4,0,0,0.620648 -25127,7008:248,-88,4,0,0,0.629533 -25128,7008:247,-87,4,0,0,0.638733 -25129,7008:246,-86,4,0,0,0.657453 -25130,7008:245,-85,4,0,0,0.656573 -25131,7008:142,-82,4,0,0,0.639492 -25132,7008:141,-81,4,0,0,0.635859 -25133,7008:140,-80,4,0,0,0.641172 -25134,7007:249,-79,4,0,0,0.642919 -25135,7007:248,-78,4,0,0,0.644216 -25136,7007:247,-77,4,0,0,0.653206 -25137,7007:246,-76,4,0,0,0.648326 -25138,7006:141,-61,4,0,0,0.623088 -25139,7006:140,-60,4,0,0,0.623812 -25140,7005:249,-59,4,0,0,0.627782 -25141,7005:248,-58,4,0,0,0.630634 -25142,7005:247,-57,4,0,0,0.631185 -25143,7005:246,-56,4,0,0,0.630849 -25144,7005:245,-55,4,0,0,0.631352 -25145,7005:144,-54,4,0,0,0.629533 -25146,7005:143,-53,4,0,0,0.629748 -25147,7005:142,-52,4,0,0,0.629149 -25148,7005:141,-51,4,0,0,0.630323 -25149,7005:140,-50,4,0,0,0.629964 -25150,7004:249,-49,4,0,0,0.629245 -25151,7004:248,-48,4,0,0,0.627517 -25152,7004:247,-47,4,0,0,0.626244 -25153,7004:246,-46,4,0,0,0.625113 -25154,7004:245,-45,4,0,0,0.623643 -25155,7004:144,-44,4,0,0,0.623233 -25156,7004:143,-43,4,0,0,0.623137 -25157,7004:142,-42,4,0,0,0.620769 -25158,7004:141,-41,4,0,0,0.618663 -25159,7004:140,-40,4,0,0,0.61745 -25160,7003:249,-39,4,0,0,0.61626 -25161,7003:248,-38,4,0,0,0.612902 -25162,7003:247,-37,4,0,0,0.607893 -25163,7003:246,-36,4,0,0,0.609606 -25164,7003:245,-35,4,0,0,0.608774 -25165,7003:144,-34,4,0,0,0.60657 -25166,7003:143,-33,4,0,0,0.609972 -25167,7003:142,-32,4,0,0,0.610241 -25168,7003:141,-31,4,0,0,0.610387 -25169,7003:140,-30,4,0,0,0.608652 -25170,7002:249,-29,4,0,0,0.611706 -25171,7002:248,-28,4,0,0,0.614217 -25172,7002:247,-27,4,0,0,0.61485 -25173,7002:246,-26,4,0,0,0.614947 -25174,7002:245,-25,4,0,0,0.616746 -25175,7002:144,-24,4,0,0,0.618541 -25176,7002:143,-23,4,0,0,0.622895 -25177,7002:142,-22,4,0,0,0.631304 -25178,7002:141,-21,4,0,0,0.634884 -25179,7002:140,-20,4,0,0,0.637571 -25180,7001:249,-19,4,0,0,0.64214 -25181,7001:248,-18,4,0,0,0.647083 -25182,7001:247,-17,4,0,0,0.648935 -25183,7001:246,-16,4,0,0,0.652181 -25184,7001:245,-15,4,0,0,0.655831 -25185,7001:144,-14,4,0,0,0.675199 -25186,1005:141,51,4,0,0,0.619317 -25187,1005:142,52,4,0,0,0.618177 -25188,1005:143,53,4,0,0,0.617134 -25189,1005:144,54,4,0,0,0.615726 -25190,1005:245,55,4,0,0,0.622847 -25191,1005:246,56,4,0,0,0.627829 -25192,1005:247,57,4,0,0,0.625787 -25193,1005:248,58,4,0,0,0.629581 -25194,1005:249,59,4,0,0,0.637381 -25195,1006:140,60,4,0,0,0.641337 -25196,1006:141,61,4,0,0,0.638235 -25197,1006:142,62,4,0,0,0.637238 -25198,1006:143,63,4,0,0,0.638116 -25199,1006:144,64,4,0,0,0.638805 -25200,1006:245,65,4,0,0,0.642259 -25201,1006:246,66,4,0,0,0.643179 -25202,1006:247,67,4,0,0,0.64405 -25203,1006:248,68,4,0,0,0.645933 -25204,1006:249,69,4,0,0,0.648817 -25205,1007:140,70,4,0,0,0.651411 -25206,1007:141,71,4,0,0,0.652717 -25207,1007:142,72,4,0,0,0.652461 -25208,1007:144,74,4,0,0,0.649005 -25209,1007:245,75,4,0,0,0.648091 -25210,1007:246,76,4,0,0,0.649075 -25211,1008:140,80,4,0,0,0.629581 -25212,1008:141,81,4,0,0,0.62807 -25213,1008:142,82,4,0,0,0.629101 -25214,1008:143,83,4,0,0,0.638188 -25215,1008:144,84,4,0,0,0.640415 -25216,1008:245,85,4,0,0,0.642046 -25217,1008:246,86,4,0,0,0.642636 -25218,1008:247,87,4,0,0,0.643438 -25219,1008:248,88,4,0,0,0.643344 -25220,1008:249,89,4,0,0,0.643414 -25221,1009:140,90,4,0,0,0.643768 -25222,1009:141,91,4,0,0,0.643697 -25223,1009:142,92,4,0,0,0.642802 -25224,1009:143,93,4,0,0,0.643084 -25225,1009:144,94,4,0,0,0.643461 -25226,1009:245,95,4,0,0,0.644922 -25227,1009:246,96,4,0,0,0.646191 -25228,1009:247,97,4,0,0,0.647013 -25229,1009:248,98,4,0,0,0.649473 -25230,1010:140,100,4,0,0,0.640841 -25231,1010:141,101,4,0,0,0.641597 -25232,1010:142,102,4,0,0,0.64077 -25233,1010:143,103,4,0,0,0.63852 -25234,1010:144,104,4,0,0,0.630443 -25235,1010:245,105,4,0,0,0.623643 -25236,1010:247,107,4,0,0,0.60728 -25237,1010:248,108,4,0,0,0.601458 -25238,1010:249,109,4,0,0,0.612658 -25239,1011:140,110,4,0,0,0.631089 -25240,1011:141,111,4,0,0,0.639468 -25241,1011:142,112,4,0,0,0.64077 -25242,1011:143,113,4,0,0,0.639752 -25243,1011:144,114,4,0,0,0.643532 -25244,1011:245,115,4,0,0,0.648162 -25245,1011:246,116,4,0,0,0.64863 -25246,1011:247,117,4,0,0,0.649613 -25247,1011:248,118,4,0,0,0.648091 -25248,1012:140,120,4,0,0,0.644286 -25249,1012:141,121,4,0,0,0.642424 -25250,1012:142,122,4,0,0,0.64051 -25251,1012:144,124,4,0,0,0.639089 -25252,1012:245,125,4,0,0,0.629029 -25253,1012:246,126,4,0,0,0.635979 -25254,1012:247,127,4,0,0,0.644922 -25255,1012:248,128,4,0,0,0.651131 -25256,1012:249,129,4,0,0,0.653531 -25257,1013:140,130,4,0,0,0.654299 -25258,1013:141,131,4,0,0,0.654694 -25259,1013:142,132,4,0,0,0.655019 -25260,1013:143,133,4,0,0,0.656016 -25261,1013:144,134,4,0,0,0.657962 -25262,1013:245,135,4,0,0,0.659994 -25263,1013:246,136,4,0,0,0.659786 -25264,1013:247,137,4,0,0,0.659394 -25265,1013:248,138,4,0,0,0.659786 -25266,1013:249,139,4,0,0,0.656897 -25267,1014:140,140,4,0,0,0.654856 -25268,1014:141,141,4,0,0,0.655901 -25269,1014:142,142,4,0,0,0.655437 -25270,1014:143,143,4,0,0,0.654903 -25271,1014:144,144,4,0,0,0.655808 -25272,1014:245,145,4,0,0,0.65736 -25273,1014:246,146,4,0,0,0.658978 -25274,1014:247,147,4,0,0,0.660408 -25275,1014:248,148,4,0,0,0.66103 -25276,1014:249,149,4,0,0,0.66126 -25277,1015:140,150,4,0,0,0.659947 -25278,1015:141,151,4,0,0,0.662732 -25279,1015:142,152,4,0,0,0.662892 -25280,1015:143,153,4,0,0,0.66172 -25281,1015:144,154,4,0,0,0.660132 -25282,1015:245,155,4,0,0,0.65914 -25283,1015:246,156,4,0,0,0.658077 -25284,1015:247,157,4,0,0,0.6578 -25285,1015:248,158,4,0,0,0.657407 -25286,1015:249,159,4,0,0,0.65655 -25287,1016:140,160,4,0,0,0.655413 -25288,1016:141,161,4,0,0,0.654043 -25289,1016:142,162,4,0,0,0.65281 -25290,1016:143,163,4,0,0,0.652088 -25291,1016:144,164,4,0,0,0.651855 -25292,1016:245,165,4,0,0,0.651738 -25293,1016:246,166,4,0,0,0.649426 -25294,1016:247,167,4,0,0,0.649706 -25295,1016:248,168,4,0,0,0.645698 -25296,1016:249,169,4,0,0,0.645556 -25297,1017:140,170,4,0,0,0.643603 -25298,1017:141,171,4,0,0,0.642848 -25299,1017:142,172,4,0,0,0.643202 -25300,1017:143,173,4,0,0,0.643932 -25301,1017:144,174,4,0,0,0.64431 -25302,1017:245,175,4,0,0,0.642919 -25303,1017:246,176,4,0,0,0.63871 -25304,1017:247,177,4,0,0,0.635717 -25305,1017:248,178,4,0,0,0.635812 -25306,1017:249,179,4,0,0,0.637381 -25307,1018:140,180,4,0,0,0.638307 -25308,7018:350,-180,5,0,0,0.630418 -25309,7017:459,-179,5,0,0,0.629988 -25310,7017:458,-178,5,0,0,0.628861 -25311,7017:457,-177,5,0,0,0.62819 -25312,7017:456,-176,5,0,0,0.627614 -25313,7017:455,-175,5,0,0,0.626869 -25314,7017:354,-174,5,0,0,0.626629 -25315,7017:353,-173,5,0,0,0.626461 -25316,7017:352,-172,5,0,0,0.625498 -25317,7017:351,-171,5,0,0,0.623571 -25318,7017:350,-170,5,0,0,0.622026 -25319,7016:459,-169,5,0,0,0.621204 -25320,7016:458,-168,5,0,0,0.621639 -25321,7016:457,-167,5,0,0,0.622702 -25322,7016:456,-166,5,0,0,0.622847 -25323,7016:455,-165,5,0,0,0.621881 -25324,7016:354,-164,5,0,0,0.619971 -25325,7016:353,-163,5,0,0,0.617984 -25326,7016:352,-162,5,0,0,0.616187 -25327,7016:351,-161,5,0,0,0.615677 -25328,7016:350,-160,5,0,0,0.61502 -25329,7015:459,-159,5,0,0,0.614485 -25330,7015:458,-158,5,0,0,0.61317 -25331,7015:457,-157,5,0,0,0.612389 -25332,7015:456,-156,5,0,0,0.613023 -25333,7015:455,-155,5,0,0,0.615093 -25334,7015:354,-154,5,0,0,0.615895 -25335,7015:353,-153,5,0,0,0.615579 -25336,7015:352,-152,5,0,0,0.615069 -25337,7015:351,-151,5,0,0,0.613535 -25338,7015:350,-150,5,0,0,0.611292 -25339,7014:459,-149,5,0,0,0.60892 -25340,7014:458,-148,5,0,0,0.607501 -25341,7014:457,-147,5,0,0,0.606912 -25342,7014:456,-146,5,0,0,0.60522 -25343,7014:455,-145,5,0,0,0.603525 -25344,7014:354,-144,5,0,0,0.602885 -25345,7014:353,-143,5,0,0,0.602665 -25346,7014:352,-142,5,0,0,0.603328 -25347,7014:351,-141,5,0,0,0.603942 -25348,7014:350,-140,5,0,0,0.601015 -25349,7013:459,-139,5,0,0,0.598474 -25350,7013:458,-138,5,0,0,0.598104 -25351,7013:457,-137,5,0,0,0.601384 -25352,7013:456,-136,5,0,0,0.604311 -25353,7013:455,-135,5,0,0,0.606888 -25354,7013:354,-134,5,0,0,0.60826 -25355,7013:353,-133,5,0,0,0.605367 -25356,7013:352,-132,5,0,0,0.60323 -25357,7013:351,-131,5,0,0,0.607207 -25358,7013:350,-130,5,0,0,0.611194 -25359,7012:459,-129,5,0,0,0.612706 -25360,7012:458,-128,5,0,0,0.612877 -25361,7012:457,-127,5,0,0,0.613803 -25362,7012:456,-126,5,0,0,0.617134 -25363,7012:455,-125,5,0,0,0.620865 -25364,7012:354,-124,5,0,0,0.623523 -25365,7012:353,-123,5,0,0,0.625306 -25366,7012:352,-122,5,0,0,0.626941 -25367,7012:351,-121,5,0,0,0.629005 -25368,7012:350,-120,5,0,0,0.629317 -25369,7011:459,-119,5,0,0,0.628981 -25370,7011:458,-118,5,0,0,0.628022 -25371,7011:457,-117,5,0,0,0.627302 -25372,7011:456,-116,5,0,0,0.627061 -25373,7011:455,-115,5,0,0,0.626989 -25374,7011:354,-114,5,0,0,0.628237 -25375,7011:353,-113,5,0,0,0.629149 -25376,7011:352,-112,5,0,0,0.629964 -25377,7011:351,-111,5,0,0,0.630825 -25378,7011:350,-110,5,0,0,0.631878 -25379,7010:459,-109,5,0,0,0.632379 -25380,7010:458,-108,5,0,0,0.635455 -25381,7010:457,-107,5,0,0,0.639184 -25382,7010:456,-106,5,0,0,0.642825 -25383,7010:455,-105,5,0,0,0.6424 -25384,7010:354,-104,5,0,0,0.637404 -25385,7010:353,-103,5,0,0,0.630275 -25386,7010:352,-102,5,0,0,0.626532 -25387,7010:351,-101,5,0,0,0.625859 -25388,7010:350,-100,5,0,0,0.622219 -25389,7009:459,-99,5,0,0,0.613925 -25390,7009:458,-98,5,0,0,0.612926 -25391,7009:457,-97,5,0,0,0.61711 -25392,7009:456,-96,5,0,0,0.616211 -25393,7009:455,-95,5,0,0,0.626124 -25394,7009:354,-94,5,0,0,0.628622 -25395,7009:353,-93,5,0,0,0.62759 -25396,7009:352,-92,5,0,0,0.62994 -25397,7009:351,-91,5,0,0,0.626268 -25398,7009:350,-90,5,0,0,0.626052 -25399,7008:459,-89,5,0,0,0.6267 -25400,7008:458,-88,5,0,0,0.630418 -25401,7008:457,-87,5,0,0,0.641195 -25402,7008:456,-86,5,0,0,0.645956 -25403,7008:353,-83,5,0,0,0.63517 -25404,7008:352,-82,5,0,0,0.629197 -25405,7008:351,-81,5,0,0,0.629677 -25406,7008:350,-80,5,0,0,0.62994 -25407,7007:459,-79,5,0,0,0.63455 -25408,7007:458,-78,5,0,0,0.641054 -25409,7007:457,-77,5,0,0,0.646708 -25410,7007:456,-76,5,0,0,0.64605 -25411,7007:455,-75,5,0,0,0.629005 -25412,7007:351,-71,5,0,0,0.632451 -25413,7006:458,-68,5,0,0,0.599141 -25414,7006:457,-67,5,0,0,0.607819 -25415,7006:456,-66,5,0,0,0.610925 -25416,7006:455,-65,5,0,0,0.615726 -25417,7006:354,-64,5,0,0,0.603451 -25418,7006:353,-63,5,0,0,0.602885 -25419,7006:352,-62,5,0,0,0.618566 -25420,7006:351,-61,5,0,0,0.625281 -25421,7006:350,-60,5,0,0,0.629844 -25422,7005:459,-59,5,0,0,0.631256 -25423,7005:458,-58,5,0,0,0.631065 -25424,7005:457,-57,5,0,0,0.629916 -25425,7005:456,-56,5,0,0,0.630443 -25426,7005:455,-55,5,0,0,0.63006 -25427,7005:354,-54,5,0,0,0.629988 -25428,7005:353,-53,5,0,0,0.627998 -25429,7005:352,-52,5,0,0,0.628094 -25430,7005:351,-51,5,0,0,0.62843 -25431,7005:350,-50,5,0,0,0.627061 -25432,7004:459,-49,5,0,0,0.624993 -25433,7004:458,-48,5,0,0,0.619631 -25434,7004:457,-47,5,0,0,0.616503 -25435,7004:456,-46,5,0,0,0.61502 -25436,7004:455,-45,5,0,0,0.614095 -25437,7004:354,-44,5,0,0,0.614606 -25438,7004:353,-43,5,0,0,0.613778 -25439,7004:352,-42,5,0,0,0.608897 -25440,7004:351,-41,5,0,0,0.605736 -25441,7004:350,-40,5,0,0,0.606888 -25442,7003:459,-39,5,0,0,0.606766 -25443,7003:458,-38,5,0,0,0.603402 -25444,7003:457,-37,5,0,0,0.600349 -25445,7003:456,-36,5,0,0,0.598104 -25446,7003:455,-35,5,0,0,0.597857 -25447,7003:354,-34,5,0,0,0.598104 -25448,7003:353,-33,5,0,0,0.600966 -25449,7003:352,-32,5,0,0,0.599955 -25450,7003:351,-31,5,0,0,0.597857 -25451,7003:350,-30,5,0,0,0.599066 -25452,7002:459,-29,5,0,0,0.602197 -25453,7002:458,-28,5,0,0,0.604361 -25454,7002:457,-27,5,0,0,0.605343 -25455,7002:456,-26,5,0,0,0.607329 -25456,7002:455,-25,5,0,0,0.607819 -25457,7002:354,-24,5,0,0,0.611121 -25458,7002:353,-23,5,0,0,0.617353 -25459,7002:352,-22,5,0,0,0.619293 -25460,7002:351,-21,5,0,0,0.621156 -25461,7002:350,-20,5,0,0,0.63128 -25462,7001:459,-19,5,0,0,0.631782 -25463,7001:458,-18,5,0,0,0.635503 -25464,7001:457,-17,5,0,0,0.645134 -25465,7001:456,-16,5,0,0,0.657175 -25466,1004:354,44,5,0,0,0.598104 -25467,1004:455,45,5,0,0,0.59998 -25468,1004:456,46,5,0,0,0.59719 -25469,1004:457,47,5,0,0,0.589729 -25470,1005:351,51,5,0,0,0.599757 -25471,1005:352,52,5,0,0,0.614461 -25472,1005:353,53,5,0,0,0.614071 -25473,1005:354,54,5,0,0,0.614169 -25474,1005:455,55,5,0,0,0.614387 -25475,1005:456,56,5,0,0,0.615774 -25476,1005:457,57,5,0,0,0.616455 -25477,1005:458,58,5,0,0,0.616867 -25478,1005:459,59,5,0,0,0.623981 -25479,1006:350,60,5,0,0,0.629533 -25480,1006:351,61,5,0,0,0.629988 -25481,1006:352,62,5,0,0,0.63331 -25482,1006:353,63,5,0,0,0.636574 -25483,1006:354,64,5,0,0,0.636977 -25484,1006:455,65,5,0,0,0.638852 -25485,1006:456,66,5,0,0,0.639326 -25486,1006:457,67,5,0,0,0.639776 -25487,1006:458,68,5,0,0,0.641148 -25488,1006:459,69,5,0,0,0.645204 -25489,1007:350,70,5,0,0,0.648677 -25490,1007:351,71,5,0,0,0.650804 -25491,1007:352,72,5,0,0,0.651924 -25492,1007:354,74,5,0,0,0.652321 -25493,1007:455,75,5,0,0,0.651738 -25494,1007:456,76,5,0,0,0.652158 -25495,1008:351,81,5,0,0,0.616308 -25496,1008:352,82,5,0,0,0.628694 -25497,1008:353,83,5,0,0,0.635432 -25498,1008:354,84,5,0,0,0.633883 -25499,1008:455,85,5,0,0,0.639752 -25500,1008:456,86,5,0,0,0.641952 -25501,1008:457,87,5,0,0,0.642754 -25502,1008:458,88,5,0,0,0.64372 -25503,1008:459,89,5,0,0,0.644851 -25504,1009:350,90,5,0,0,0.644639 -25505,1009:351,91,5,0,0,0.644404 -25506,1009:352,92,5,0,0,0.644568 -25507,1009:353,93,5,0,0,0.64565 -25508,1009:354,94,5,0,0,0.643697 -25509,1009:455,95,5,0,0,0.643273 -25510,1009:456,96,5,0,0,0.64398 -25511,1009:457,97,5,0,0,0.644522 -25512,1009:458,98,5,0,0,0.646121 -25513,1010:350,100,5,0,0,0.637238 -25514,1010:351,101,5,0,0,0.63788 -25515,1010:352,102,5,0,0,0.641432 -25516,1010:353,103,5,0,0,0.636502 -25517,1010:459,109,5,0,0,0.598005 -25518,1011:350,110,5,0,0,0.615531 -25519,1011:351,111,5,0,0,0.631591 -25520,1011:352,112,5,0,0,0.634979 -25521,1011:353,113,5,0,0,0.626893 -25522,1011:354,114,5,0,0,0.632666 -25523,1011:455,115,5,0,0,0.642848 -25524,1011:456,116,5,0,0,0.646309 -25525,1011:457,117,5,0,0,0.644216 -25526,1011:458,118,5,0,0,0.647786 -25527,1011:459,119,5,0,0,0.644545 -25528,1012:350,120,5,0,0,0.641243 -25529,1012:351,121,5,0,0,0.639776 -25530,1012:352,122,5,0,0,0.637333 -25531,1012:354,124,5,0,0,0.639586 -25532,1012:456,126,5,0,0,0.633287 -25533,1012:457,127,5,0,0,0.642117 -25534,1012:458,128,5,0,0,0.647036 -25535,1012:459,129,5,0,0,0.6498 -25536,1013:350,130,5,0,0,0.651762 -25537,1013:351,131,5,0,0,0.653206 -25538,1013:352,132,5,0,0,0.654113 -25539,1013:353,133,5,0,0,0.654949 -25540,1013:354,134,5,0,0,0.656526 -25541,1013:455,135,5,0,0,0.657892 -25542,1013:456,136,5,0,0,0.655158 -25543,1013:457,137,5,0,0,0.65409 -25544,1013:458,138,5,0,0,0.653462 -25545,1013:459,139,5,0,0,0.652368 -25546,1014:350,140,5,0,0,0.652274 -25547,1014:351,141,5,0,0,0.652274 -25548,1014:352,142,5,0,0,0.652111 -25549,1014:353,143,5,0,0,0.651902 -25550,1014:354,144,5,0,0,0.651878 -25551,1014:455,145,5,0,0,0.652437 -25552,1014:456,146,5,0,0,0.653438 -25553,1014:457,147,5,0,0,0.654415 -25554,1014:458,148,5,0,0,0.654996 -25555,1014:459,149,5,0,0,0.655274 -25556,1015:350,150,5,0,0,0.655669 -25557,1015:351,151,5,0,0,0.655715 -25558,1015:352,152,5,0,0,0.655182 -25559,1015:353,153,5,0,0,0.654206 -25560,1015:354,154,5,0,0,0.653508 -25561,1015:455,155,5,0,0,0.653602 -25562,1015:456,156,5,0,0,0.653648 -25563,1015:457,157,5,0,0,0.652973 -25564,1015:458,158,5,0,0,0.652321 -25565,1015:459,159,5,0,0,0.651085 -25566,1016:350,160,5,0,0,0.649028 -25567,1016:351,161,5,0,0,0.646872 -25568,1016:352,162,5,0,0,0.64372 -25569,1016:353,163,5,0,0,0.643674 -25570,1016:354,164,5,0,0,0.644333 -25571,1016:455,165,5,0,0,0.643061 -25572,1016:456,166,5,0,0,0.640297 -25573,1016:458,168,5,0,0,0.636478 -25574,1016:459,169,5,0,0,0.638212 -25575,1017:351,171,5,0,0,0.63636 -25576,1017:352,172,5,0,0,0.635883 -25577,1017:353,173,5,0,0,0.634479 -25578,1017:354,174,5,0,0,0.632929 -25579,1017:455,175,5,0,0,0.63226 -25580,1017:456,176,5,0,0,0.631997 -25581,1017:457,177,5,0,0,0.630898 -25582,1017:458,178,5,0,0,0.629892 -25583,1017:459,179,5,0,0,0.629964 -25584,1018:350,180,5,0,0,0.630418 -25585,7018:360,-180,6,0,0,0.624077 -25586,7017:469,-179,6,0,0,0.623691 -25587,7017:468,-178,6,0,0,0.623547 -25588,7017:467,-177,6,0,0,0.623787 -25589,7017:466,-176,6,0,0,0.623691 -25590,7017:465,-175,6,0,0,0.622944 -25591,7017:364,-174,6,0,0,0.62176 -25592,7017:363,-173,6,0,0,0.620575 -25593,7017:362,-172,6,0,0,0.619753 -25594,7017:361,-171,6,0,0,0.619026 -25595,7017:360,-170,6,0,0,0.617717 -25596,7016:469,-169,6,0,0,0.617305 -25597,7016:468,-168,6,0,0,0.617134 -25598,7016:467,-167,6,0,0,0.614461 -25599,7016:466,-166,6,0,0,0.611389 -25600,7016:465,-165,6,0,0,0.609826 -25601,7016:364,-164,6,0,0,0.608994 -25602,7016:363,-163,6,0,0,0.609141 -25603,7016:362,-162,6,0,0,0.608652 -25604,7016:361,-161,6,0,0,0.607746 -25605,7016:360,-160,6,0,0,0.607256 -25606,7015:469,-159,6,0,0,0.606668 -25607,7015:468,-158,6,0,0,0.605417 -25608,7015:467,-157,6,0,0,0.604238 -25609,7015:466,-156,6,0,0,0.60495 -25610,7015:465,-155,6,0,0,0.607893 -25611,7015:364,-154,6,0,0,0.61007 -25612,7015:363,-153,6,0,0,0.608481 -25613,7015:362,-152,6,0,0,0.604975 -25614,7015:361,-151,6,0,0,0.603771 -25615,7015:360,-150,6,0,0,0.605319 -25616,7014:469,-149,6,0,0,0.604778 -25617,7014:468,-148,6,0,0,0.602443 -25618,7014:467,-147,6,0,0,0.600374 -25619,7014:466,-146,6,0,0,0.599609 -25620,7014:465,-145,6,0,0,0.597362 -25621,7014:364,-144,6,0,0,0.59484 -25622,7014:363,-143,6,0,0,0.593031 -25623,7014:362,-142,6,0,0,0.593601 -25624,7014:361,-141,6,0,0,0.596225 -25625,7014:360,-140,6,0,0,0.595359 -25626,7013:469,-139,6,0,0,0.590797 -25627,7013:468,-138,6,0,0,0.587714 -25628,7013:467,-137,6,0,0,0.591616 -25629,7013:466,-136,6,0,0,0.593873 -25630,7013:465,-135,6,0,0,0.594765 -25631,7013:364,-134,6,0,0,0.596053 -25632,7013:363,-133,6,0,0,0.598499 -25633,7013:362,-132,6,0,0,0.599881 -25634,7013:361,-131,6,0,0,0.598005 -25635,7013:360,-130,6,0,0,0.597165 -25636,7012:469,-129,6,0,0,0.597956 -25637,7012:468,-128,6,0,0,0.601138 -25638,7012:467,-127,6,0,0,0.607476 -25639,7012:466,-126,6,0,0,0.613194 -25640,7012:465,-125,6,0,0,0.616065 -25641,7012:364,-124,6,0,0,0.61762 -25642,7012:363,-123,6,0,0,0.619341 -25643,7012:362,-122,6,0,0,0.620865 -25644,7012:361,-121,6,0,0,0.622219 -25645,7012:360,-120,6,0,0,0.622678 -25646,7011:469,-119,6,0,0,0.622171 -25647,7011:468,-118,6,0,0,0.621325 -25648,7011:467,-117,6,0,0,0.621446 -25649,7011:466,-116,6,0,0,0.622122 -25650,7011:465,-115,6,0,0,0.623908 -25651,7011:364,-114,6,0,0,0.626725 -25652,7011:363,-113,6,0,0,0.629461 -25653,7011:362,-112,6,0,0,0.631424 -25654,7011:361,-111,6,0,0,0.631902 -25655,7011:360,-110,6,0,0,0.632164 -25656,7010:469,-109,6,0,0,0.632905 -25657,7010:468,-108,6,0,0,0.634336 -25658,7010:467,-107,6,0,0,0.637832 -25659,7010:466,-106,6,0,0,0.641314 -25660,7010:465,-105,6,0,0,0.642259 -25661,7010:364,-104,6,0,0,0.638733 -25662,7010:363,-103,6,0,0,0.634789 -25663,7010:362,-102,6,0,0,0.634336 -25664,7010:361,-101,6,0,0,0.642447 -25665,7010:360,-100,6,0,0,0.643792 -25666,7009:469,-99,6,0,0,0.63674 -25667,7009:468,-98,6,0,0,0.642259 -25668,7009:467,-97,6,0,0,0.622871 -25669,7009:466,-96,6,0,0,0.611219 -25670,7009:465,-95,6,0,0,0.624848 -25671,7009:364,-94,6,0,0,0.642542 -25672,7009:363,-93,6,0,0,0.641125 -25673,7009:362,-92,6,0,0,0.640486 -25674,7009:361,-91,6,0,0,0.639965 -25675,7009:360,-90,6,0,0,0.649496 -25676,7008:469,-89,6,0,0,0.647412 -25677,7008:468,-88,6,0,0,0.643956 -25678,7008:363,-83,6,0,0,0.632785 -25679,7008:362,-82,6,0,0,0.635027 -25680,7008:361,-81,6,0,0,0.63424 -25681,7008:360,-80,6,0,0,0.637167 -25682,7007:469,-79,6,0,0,0.638544 -25683,7007:468,-78,6,0,0,0.637096 -25684,7007:467,-77,6,0,0,0.634789 -25685,7007:466,-76,6,0,0,0.632881 -25686,7007:465,-75,6,0,0,0.630418 -25687,7007:364,-74,6,0,0,0.626268 -25688,7007:363,-73,6,0,0,0.62557 -25689,7007:362,-72,6,0,0,0.61694 -25690,7007:361,-71,6,0,0,0.610999 -25691,7006:469,-69,6,0,0,0.624463 -25692,7006:468,-68,6,0,0,0.62545 -25693,7006:467,-67,6,0,0,0.630587 -25694,7006:466,-66,6,0,0,0.635146 -25695,7006:465,-65,6,0,0,0.634455 -25696,7006:364,-64,6,0,0,0.633048 -25697,7006:363,-63,6,0,0,0.632785 -25698,7006:362,-62,6,0,0,0.633239 -25699,7006:361,-61,6,0,0,0.633955 -25700,7006:360,-60,6,0,0,0.632045 -25701,7005:469,-59,6,0,0,0.631328 -25702,7005:468,-58,6,0,0,0.631424 -25703,7005:467,-57,6,0,0,0.628814 -25704,7005:466,-56,6,0,0,0.627662 -25705,7005:465,-55,6,0,0,0.62771 -25706,7005:364,-54,6,0,0,0.627733 -25707,7005:363,-53,6,0,0,0.627614 -25708,7005:362,-52,6,0,0,0.626268 -25709,7005:361,-51,6,0,0,0.625113 -25710,7005:360,-50,6,0,0,0.623305 -25711,7004:469,-49,6,0,0,0.62118 -25712,7004:468,-48,6,0,0,0.618153 -25713,7004:467,-47,6,0,0,0.613437 -25714,7004:466,-46,6,0,0,0.611096 -25715,7004:465,-45,6,0,0,0.609483 -25716,7004:364,-44,6,0,0,0.608823 -25717,7004:363,-43,6,0,0,0.605784 -25718,7004:362,-42,6,0,0,0.60259 -25719,7004:361,-41,6,0,0,0.600793 -25720,7004:360,-40,6,0,0,0.598721 -25721,7003:469,-39,6,0,0,0.595954 -25722,7003:468,-38,6,0,0,0.592559 -25723,7003:467,-37,6,0,0,0.590797 -25724,7003:466,-36,6,0,0,0.590673 -25725,7003:465,-35,6,0,0,0.590499 -25726,7003:364,-34,6,0,0,0.59035 -25727,7003:363,-33,6,0,0,0.589629 -25728,7003:362,-32,6,0,0,0.589455 -25729,7003:361,-31,6,0,0,0.590574 -25730,7003:360,-30,6,0,0,0.592708 -25731,7002:469,-29,6,0,0,0.594666 -25732,7002:468,-28,6,0,0,0.593848 -25733,7002:467,-27,6,0,0,0.59246 -25734,7002:466,-26,6,0,0,0.594146 -25735,7002:465,-25,6,0,0,0.596077 -25736,7002:364,-24,6,0,0,0.600177 -25737,7002:363,-23,6,0,0,0.599831 -25738,7002:362,-22,6,0,0,0.598079 -25739,7002:361,-21,6,0,0,0.59924 -25740,7002:360,-20,6,0,0,0.609533 -25741,7001:469,-19,6,0,0,0.620334 -25742,7001:468,-18,6,0,0,0.621591 -25743,7001:467,-17,6,0,0,0.627374 -25744,1004:363,43,6,0,0,0.5984 -25745,1004:465,45,6,0,0,0.595334 -25746,1004:466,46,6,0,0,0.591269 -25747,1004:467,47,6,0,0,0.587888 -25748,1004:468,48,6,0,0,0.58612 -25749,1004:469,49,6,0,0,0.584573 -25750,1005:360,50,6,0,0,0.589654 -25751,1005:361,51,6,0,0,0.606055 -25752,1005:362,52,6,0,0,0.609238 -25753,1005:363,53,6,0,0,0.605417 -25754,1005:364,54,6,0,0,0.602492 -25755,1005:465,55,6,0,0,0.601458 -25756,1005:466,56,6,0,0,0.607599 -25757,1005:467,57,6,0,0,0.609263 -25758,1005:468,58,6,0,0,0.609336 -25759,1005:469,59,6,0,0,0.613242 -25760,1006:360,60,6,0,0,0.61609 -25761,1006:361,61,6,0,0,0.619487 -25762,1006:362,62,6,0,0,0.623908 -25763,1006:363,63,6,0,0,0.626436 -25764,1006:364,64,6,0,0,0.628118 -25765,1006:465,65,6,0,0,0.632236 -25766,1006:466,66,6,0,0,0.637381 -25767,1006:467,67,6,0,0,0.640534 -25768,1006:468,68,6,0,0,0.641006 -25769,1006:469,69,6,0,0,0.642636 -25770,1007:360,70,6,0,0,0.646943 -25771,1007:361,71,6,0,0,0.649262 -25772,1007:362,72,6,0,0,0.650478 -25773,1007:364,74,6,0,0,0.654438 -25774,1007:465,75,6,0,0,0.654485 -25775,1008:361,81,6,0,0,0.617717 -25776,1008:362,82,6,0,0,0.62234 -25777,1008:363,83,6,0,0,0.632785 -25778,1008:364,84,6,0,0,0.633454 -25779,1008:465,85,6,0,0,0.635955 -25780,1008:466,86,6,0,0,0.641243 -25781,1008:467,87,6,0,0,0.642778 -25782,1008:468,88,6,0,0,0.643249 -25783,1008:469,89,6,0,0,0.642684 -25784,1009:360,90,6,0,0,0.6424 -25785,1009:361,91,6,0,0,0.641998 -25786,1009:362,92,6,0,0,0.646895 -25787,1009:364,94,6,0,0,0.643862 -25788,1009:465,95,6,0,0,0.643344 -25789,1009:466,96,6,0,0,0.640723 -25790,1009:467,97,6,0,0,0.644098 -25791,1009:468,98,6,0,0,0.643815 -25792,1010:361,101,6,0,0,0.630945 -26226,7007:486,-76,8,0,0,0.64266 -25793,1011:360,110,6,0,0,0.591194 -25794,1011:361,111,6,0,0,0.622606 -25795,1011:362,112,6,0,0,0.621083 -25796,1011:363,113,6,0,0,0.614314 -25797,1011:364,114,6,0,0,0.608162 -25798,1011:465,115,6,0,0,0.634932 -25799,1011:466,116,6,0,0,0.642447 -25800,1011:467,117,6,0,0,0.638757 -25801,1011:468,118,6,0,0,0.635646 -25802,1011:469,119,6,0,0,0.644639 -25803,1012:360,120,6,0,0,0.641668 -25804,1012:361,121,6,0,0,0.637309 -25805,1012:362,122,6,0,0,0.63331 -25806,1012:363,123,6,0,0,0.629533 -25807,1012:364,124,6,0,0,0.616673 -25808,1012:465,125,6,0,0,0.634288 -25809,1012:466,126,6,0,0,0.634717 -25810,1012:467,127,6,0,0,0.638591 -25811,1012:468,128,6,0,0,0.642188 -25812,1012:469,129,6,0,0,0.645368 -25813,1013:360,130,6,0,0,0.648115 -25814,1013:361,131,6,0,0,0.649823 -25815,1013:362,132,6,0,0,0.650385 -25816,1013:363,133,6,0,0,0.650665 -25817,1013:364,134,6,0,0,0.65001 -25818,1013:465,135,6,0,0,0.649987 -25819,1013:466,136,6,0,0,0.650594 -25820,1013:467,137,6,0,0,0.649917 -25821,1013:468,138,6,0,0,0.648771 -25822,1013:469,139,6,0,0,0.64774 -25823,1014:360,140,6,0,0,0.647786 -25824,1014:361,141,6,0,0,0.647716 -25825,1014:362,142,6,0,0,0.64788 -25826,1014:363,143,6,0,0,0.64863 -25827,1014:364,144,6,0,0,0.649309 -25828,1014:465,145,6,0,0,0.649309 -25829,1014:466,146,6,0,0,0.64994 -25830,1014:467,147,6,0,0,0.650291 -25831,1014:468,148,6,0,0,0.650314 -25832,1014:469,149,6,0,0,0.649777 -25833,1015:360,150,6,0,0,0.648982 -25834,1015:361,151,6,0,0,0.648302 -25835,1015:362,152,6,0,0,0.647623 -25836,1015:363,153,6,0,0,0.646966 -25837,1015:364,154,6,0,0,0.646684 -25838,1015:465,155,6,0,0,0.646496 -25839,1015:466,156,6,0,0,0.645862 -25840,1015:467,157,6,0,0,0.645039 -25841,1015:468,158,6,0,0,0.644451 -25842,1015:469,159,6,0,0,0.643202 -25843,1016:360,160,6,0,0,0.641243 -25844,1016:361,161,6,0,0,0.639965 -25845,1016:362,162,6,0,0,0.6389 -25846,1016:363,163,6,0,0,0.637666 -25847,1016:364,164,6,0,0,0.636241 -25848,1016:465,165,6,0,0,0.634479 -25849,1016:466,166,6,0,0,0.633549 -25850,1016:467,167,6,0,0,0.632785 -25851,1016:468,168,6,0,0,0.630658 -25852,1016:469,169,6,0,0,0.628646 -25853,1017:360,170,6,0,0,0.62795 -25854,1017:361,171,6,0,0,0.628094 -25855,1017:362,172,6,0,0,0.629101 -25856,1017:363,173,6,0,0,0.629005 -25857,1017:364,174,6,0,0,0.628622 -25858,1017:465,175,6,0,0,0.627854 -25859,1017:466,176,6,0,0,0.626941 -25860,1017:467,177,6,0,0,0.625402 -25861,1017:468,178,6,0,0,0.62504 -25862,1017:469,179,6,0,0,0.624391 -25863,1018:360,180,6,0,0,0.624077 -25864,7018:370,-180,7,0,0,0.61762 -25865,7017:479,-179,7,0,0,0.615726 -25866,7017:478,-178,7,0,0,0.614631 -25867,7017:477,-177,7,0,0,0.614582 -25868,7017:476,-176,7,0,0,0.615312 -25869,7017:475,-175,7,0,0,0.615531 -25870,7017:374,-174,7,0,0,0.613706 -25871,7017:373,-173,7,0,0,0.611145 -25872,7017:372,-172,7,0,0,0.610803 -25873,7017:371,-171,7,0,0,0.612097 -25874,7017:370,-170,7,0,0,0.612682 -25875,7016:479,-169,7,0,0,0.612389 -25876,7016:478,-168,7,0,0,0.611438 -25877,7016:477,-167,7,0,0,0.610827 -25878,7016:476,-166,7,0,0,0.609728 -25879,7016:475,-165,7,0,0,0.608284 -25880,7016:374,-164,7,0,0,0.607231 -25881,7016:373,-163,7,0,0,0.60701 -25882,7016:372,-162,7,0,0,0.60679 -25883,7016:371,-161,7,0,0,0.60576 -25884,7016:370,-160,7,0,0,0.605662 -25885,7015:479,-159,7,0,0,0.604656 -25886,7015:478,-158,7,0,0,0.602836 -25887,7015:477,-157,7,0,0,0.601015 -25888,7015:476,-156,7,0,0,0.59877 -25889,7015:475,-155,7,0,0,0.597782 -25890,7015:374,-154,7,0,0,0.59766 -25891,7015:373,-153,7,0,0,0.598647 -25892,7015:372,-152,7,0,0,0.599091 -25893,7015:371,-151,7,0,0,0.597362 -25894,7015:370,-150,7,0,0,0.598993 -25895,7014:479,-149,7,0,0,0.601606 -25896,7014:478,-148,7,0,0,0.599042 -25897,7014:477,-147,7,0,0,0.592907 -25898,7014:476,-146,7,0,0,0.595087 -25899,7014:475,-145,7,0,0,0.593353 -25900,7014:374,-144,7,0,0,0.589505 -25901,7014:373,-143,7,0,0,0.588659 -25902,7014:372,-142,7,0,0,0.589629 -25903,7014:371,-141,7,0,0,0.591989 -25904,7014:370,-140,7,0,0,0.593006 -25905,7013:479,-139,7,0,0,0.586717 -25906,7013:478,-138,7,0,0,0.581376 -25907,7013:477,-137,7,0,0,0.584474 -25908,7013:476,-136,7,0,0,0.585147 -25909,7013:475,-135,7,0,0,0.584099 -25910,7013:374,-134,7,0,0,0.583924 -25911,7013:373,-133,7,0,0,0.585147 -25912,7013:372,-132,7,0,0,0.584124 -25913,7013:371,-131,7,0,0,0.583025 -25914,7013:370,-130,7,0,0,0.585347 -25915,7012:479,-129,7,0,0,0.590176 -25916,7012:478,-128,7,0,0,0.595186 -25917,7012:477,-127,7,0,0,0.598153 -25918,7012:476,-126,7,0,0,0.601926 -25919,7012:475,-125,7,0,0,0.604729 -25920,7012:374,-124,7,0,0,0.605588 -25921,7012:373,-123,7,0,0,0.606201 -25922,7012:372,-122,7,0,0,0.606472 -25923,7012:371,-121,7,0,0,0.607256 -25924,7012:370,-120,7,0,0,0.609312 -25925,7011:479,-119,7,0,0,0.612999 -25926,7011:478,-118,7,0,0,0.614582 -25927,7011:477,-117,7,0,0,0.615798 -25928,7011:476,-116,7,0,0,0.618105 -25929,7011:475,-115,7,0,0,0.621108 -25930,7011:374,-114,7,0,0,0.62275 -25931,7011:373,-113,7,0,0,0.622919 -25932,7011:372,-112,7,0,0,0.622967 -25933,7011:371,-111,7,0,0,0.626028 -25934,7011:370,-110,7,0,0,0.632905 -25935,7010:479,-109,7,0,0,0.637618 -25936,7010:478,-108,7,0,0,0.63852 -25937,7010:477,-107,7,0,0,0.63897 -25938,7010:476,-106,7,0,0,0.642447 -25939,7010:475,-105,7,0,0,0.648841 -25940,7010:374,-104,7,0,0,0.649426 -25941,7010:373,-103,7,0,0,0.640391 -25942,7010:372,-102,7,0,0,0.630611 -25943,7010:371,-101,7,0,0,0.632642 -25944,7010:370,-100,7,0,0,0.637998 -25945,7009:479,-99,7,0,0,0.635598 -25946,7009:478,-98,7,0,0,0.643838 -25947,7009:477,-97,7,0,0,0.638497 -25948,7009:476,-96,7,0,0,0.614314 -25949,7009:475,-95,7,0,0,0.638235 -25950,7009:374,-94,7,0,0,0.64987 -25951,7009:373,-93,7,0,0,0.645886 -25952,7009:372,-92,7,0,0,0.656596 -25953,7008:373,-83,7,0,0,0.624776 -25954,7008:372,-82,7,0,0,0.633501 -25955,7008:371,-81,7,0,0,0.639847 -25956,7008:370,-80,7,0,0,0.641857 -25957,7007:479,-79,7,0,0,0.640746 -25958,7007:478,-78,7,0,0,0.638473 -25959,7007:477,-77,7,0,0,0.635527 -25960,7007:476,-76,7,0,0,0.635646 -25961,7007:475,-75,7,0,0,0.636669 -25962,7007:374,-74,7,0,0,0.637975 -25963,7007:373,-73,7,0,0,0.636431 -25964,7007:372,-72,7,0,0,0.634003 -25965,7007:371,-71,7,0,0,0.633239 -25966,7007:370,-70,7,0,0,0.631902 -25967,7006:479,-69,7,0,0,0.630275 -25968,7006:478,-68,7,0,0,0.634288 -25969,7006:477,-67,7,0,0,0.635646 -25970,7006:476,-66,7,0,0,0.638947 -25971,7006:475,-65,7,0,0,0.6389 -25972,7006:374,-64,7,0,0,0.637143 -25973,7006:373,-63,7,0,0,0.635193 -25974,7006:372,-62,7,0,0,0.634145 -25975,7006:371,-61,7,0,0,0.631687 -25976,7006:370,-60,7,0,0,0.630802 -25977,7005:479,-59,7,0,0,0.629581 -25978,7005:478,-58,7,0,0,0.626436 -25979,7005:477,-57,7,0,0,0.62468 -25980,7005:476,-56,7,0,0,0.623305 -25981,7005:475,-55,7,0,0,0.623474 -25982,7005:374,-54,7,0,0,0.623185 -25983,7005:373,-53,7,0,0,0.622509 -25984,7005:372,-52,7,0,0,0.617862 -25985,7005:371,-51,7,0,0,0.614947 -25986,7005:370,-50,7,0,0,0.613097 -25987,7004:479,-49,7,0,0,0.61156 -25988,7004:478,-48,7,0,0,0.608554 -25989,7004:477,-47,7,0,0,0.603771 -25990,7004:476,-46,7,0,0,0.601088 -25991,7004:475,-45,7,0,0,0.60099 -25992,7004:374,-44,7,0,0,0.602246 -25993,7004:373,-43,7,0,0,0.5962 -25994,7004:372,-42,7,0,0,0.596473 -25995,7004:371,-41,7,0,0,0.595285 -25996,7004:370,-40,7,0,0,0.593204 -25997,7003:479,-39,7,0,0,0.591219 -25998,7003:478,-38,7,0,0,0.589952 -25999,7003:477,-37,7,0,0,0.589207 -26000,7003:476,-36,7,0,0,0.585297 -26001,7003:475,-35,7,0,0,0.577445 -26002,7003:374,-34,7,0,0,0.575865 -26003,7003:373,-33,7,0,0,0.57589 -26004,7003:372,-32,7,0,0,0.577144 -26005,7003:371,-31,7,0,0,0.578322 -26006,7003:370,-30,7,0,0,0.580201 -26007,7002:479,-29,7,0,0,0.579349 -26008,7002:478,-28,7,0,0,0.576116 -26009,7002:477,-27,7,0,0,0.577245 -26010,7002:476,-26,7,0,0,0.582401 -26011,7002:475,-25,7,0,0,0.584448 -26012,7002:374,-24,7,0,0,0.587141 -26013,7002:373,-23,7,0,0,0.584174 -26014,7002:372,-22,7,0,0,0.584249 -26015,7002:371,-21,7,0,0,0.588634 -26016,7002:370,-20,7,0,0,0.599091 -26017,7001:479,-19,7,0,0,0.603894 -26018,7001:478,-18,7,0,0,0.605465 -26019,1004:372,42,7,0,0,0.607672 -26020,1004:479,49,7,0,0,0.598203 -26021,1005:370,50,7,0,0,0.600966 -26022,1005:371,51,7,0,0,0.604213 -26023,1005:372,52,7,0,0,0.604361 -26024,1005:373,53,7,0,0,0.603402 -26025,1005:374,54,7,0,0,0.600818 -26026,1005:475,55,7,0,0,0.599881 -26027,1005:476,56,7,0,0,0.600325 -26028,1005:477,57,7,0,0,0.601286 -26029,1005:478,58,7,0,0,0.606153 -26030,1005:479,59,7,0,0,0.604729 -26031,1006:370,60,7,0,0,0.605539 -26032,1006:371,61,7,0,0,0.60728 -26033,1006:372,62,7,0,0,0.611853 -26034,1006:373,63,7,0,0,0.617838 -26035,1006:374,64,7,0,0,0.619172 -26036,1006:475,65,7,0,0,0.624655 -26037,1006:476,66,7,0,0,0.630802 -26038,1006:477,67,7,0,0,0.63405 -26039,1006:478,68,7,0,0,0.636645 -26040,1006:479,69,7,0,0,0.640273 -26041,1007:370,70,7,0,0,0.644686 -26042,1007:371,71,7,0,0,0.64706 -26043,1007:372,72,7,0,0,0.648841 -26044,1007:374,74,7,0,0,0.653415 -26045,1008:371,81,7,0,0,0.615409 -26046,1008:372,82,7,0,0,0.622195 -26047,1008:373,83,7,0,0,0.625715 -26048,1008:374,84,7,0,0,0.629484 -26049,1008:475,85,7,0,0,0.634884 -26050,1008:476,86,7,0,0,0.63987 -26051,1008:477,87,7,0,0,0.640982 -26052,1008:478,88,7,0,0,0.641101 -26053,1008:479,89,7,0,0,0.64398 -26054,1009:370,90,7,0,0,0.645416 -26055,1009:371,91,7,0,0,0.64511 -26056,1009:372,92,7,0,0,0.648115 -26057,1009:373,93,7,0,0,0.646544 -26058,1009:374,94,7,0,0,0.638852 -26059,1009:475,95,7,0,0,0.637642 -26060,1009:476,96,7,0,0,0.638781 -26061,1009:477,97,7,0,0,0.64051 -26062,1009:478,98,7,0,0,0.647412 -26063,1011:370,110,7,0,0,0.590375 -26064,1011:371,111,7,0,0,0.596028 -26065,1011:372,112,7,0,0,0.615871 -26066,1011:373,113,7,0,0,0.609238 -26067,1011:374,114,7,0,0,0.602 -26068,1011:475,115,7,0,0,0.616964 -26069,1011:476,116,7,0,0,0.627349 -26070,1011:477,117,7,0,0,0.622799 -26071,1011:478,118,7,0,0,0.631902 -26072,1011:479,119,7,0,0,0.641337 -26073,1012:370,120,7,0,0,0.633931 -26074,1012:374,124,7,0,0,0.618614 -26075,1012:475,125,7,0,0,0.630443 -26076,1012:476,126,7,0,0,0.631926 -26077,1012:477,127,7,0,0,0.633693 -26078,1012:478,128,7,0,0,0.635955 -26079,1012:479,129,7,0,0,0.638615 -26080,1013:370,130,7,0,0,0.641479 -26081,1013:371,131,7,0,0,0.644098 -26082,1013:372,132,7,0,0,0.646167 -26083,1013:373,133,7,0,0,0.646825 -26084,1013:374,134,7,0,0,0.646003 -26085,1013:475,135,7,0,0,0.645698 -26086,1013:476,136,7,0,0,0.644874 -26087,1013:477,137,7,0,0,0.644004 -26088,1013:478,138,7,0,0,0.644098 -26089,1013:479,139,7,0,0,0.644192 -26090,1014:370,140,7,0,0,0.644474 -26091,1014:371,141,7,0,0,0.644451 -26092,1014:372,142,7,0,0,0.64438 -26093,1014:373,143,7,0,0,0.644733 -26094,1014:374,144,7,0,0,0.645134 -26095,1014:475,145,7,0,0,0.644898 -26096,1014:476,146,7,0,0,0.64518 -26097,1014:477,147,7,0,0,0.645274 -26098,1014:478,148,7,0,0,0.644851 -26099,1014:479,149,7,0,0,0.64431 -26100,1015:370,150,7,0,0,0.64398 -26101,1015:371,151,7,0,0,0.643697 -26102,1015:372,152,7,0,0,0.643179 -26103,1015:373,153,7,0,0,0.642377 -26104,1015:374,154,7,0,0,0.641408 -26105,1015:475,155,7,0,0,0.640439 -26106,1015:476,156,7,0,0,0.639421 -26107,1015:477,157,7,0,0,0.638093 -26108,1015:478,158,7,0,0,0.636811 -26109,1015:479,159,7,0,0,0.635883 -26110,1016:370,160,7,0,0,0.63486 -26111,1016:371,161,7,0,0,0.634169 -26112,1016:372,162,7,0,0,0.633573 -26113,1016:373,163,7,0,0,0.632356 -26114,1016:374,164,7,0,0,0.630491 -26115,1016:475,165,7,0,0,0.628406 -26116,1016:476,166,7,0,0,0.6267 -26117,1016:477,167,7,0,0,0.625811 -27202,7112:226,-126,12,0,0,0.46312 -26118,1016:478,168,7,0,0,0.624752 -26119,1016:479,169,7,0,0,0.623305 -26120,1017:370,170,7,0,0,0.621881 -26121,1017:371,171,7,0,0,0.620552 -26122,1017:372,172,7,0,0,0.620431 -26123,1017:373,173,7,0,0,0.620986 -26124,1017:374,174,7,0,0,0.621446 -26125,1017:475,175,7,0,0,0.621446 -26126,1017:476,176,7,0,0,0.621083 -26127,1017:477,177,7,0,0,0.620406 -26128,1017:478,178,7,0,0,0.619825 -26129,1017:479,179,7,0,0,0.619172 -26130,1018:370,180,7,0,0,0.61762 -26131,7018:380,-180,8,0,0,0.611242 -26132,7017:489,-179,8,0,0,0.609679 -26133,7017:488,-178,8,0,0,0.607158 -26134,7017:487,-177,8,0,0,0.604188 -26135,7017:486,-176,8,0,0,0.603254 -26136,7017:485,-175,8,0,0,0.603771 -26137,7017:384,-174,8,0,0,0.603894 -26138,7017:383,-173,8,0,0,0.604065 -26139,7017:382,-172,8,0,0,0.605319 -26140,7017:381,-171,8,0,0,0.606814 -26141,7017:380,-170,8,0,0,0.605441 -26142,7016:489,-169,8,0,0,0.60195 -26143,7016:488,-168,8,0,0,0.600596 -26144,7016:487,-167,8,0,0,0.602221 -26145,7016:486,-166,8,0,0,0.604778 -26146,7016:485,-165,8,0,0,0.604483 -26147,7016:384,-164,8,0,0,0.602393 -26148,7016:383,-163,8,0,0,0.598252 -26149,7016:382,-162,8,0,0,0.594468 -26150,7016:381,-161,8,0,0,0.594344 -26151,7016:380,-160,8,0,0,0.597437 -26152,7015:489,-159,8,0,0,0.597956 -26153,7015:488,-158,8,0,0,0.596324 -26154,7015:487,-157,8,0,0,0.594518 -26155,7015:486,-156,8,0,0,0.592162 -26156,7015:485,-155,8,0,0,0.590002 -26157,7015:384,-154,8,0,0,0.590871 -26158,7015:383,-153,8,0,0,0.59184 -26159,7015:382,-152,8,0,0,0.59184 -26160,7015:381,-151,8,0,0,0.589902 -26161,7015:380,-150,8,0,0,0.588609 -26162,7014:489,-149,8,0,0,0.585596 -26163,7014:488,-148,8,0,0,0.58592 -26164,7014:487,-147,8,0,0,0.588361 -26165,7014:486,-146,8,0,0,0.585472 -26166,7014:485,-145,8,0,0,0.584947 -26167,7014:384,-144,8,0,0,0.586618 -26168,7014:383,-143,8,0,0,0.586219 -26169,7014:382,-142,8,0,0,0.584249 -26170,7014:381,-141,8,0,0,0.580726 -26171,7014:380,-140,8,0,0,0.575789 -26172,7013:489,-139,8,0,0,0.572298 -26173,7013:488,-138,8,0,0,0.57456 -26174,7013:487,-137,8,0,0,0.575288 -26175,7013:486,-136,8,0,0,0.572322 -26176,7013:485,-135,8,0,0,0.569831 -26177,7013:384,-134,8,0,0,0.567588 -26178,7013:383,-133,8,0,0,0.567412 -26179,7013:382,-132,8,0,0,0.568193 -26180,7013:381,-131,8,0,0,0.569806 -26181,7013:380,-130,8,0,0,0.564964 -26182,7012:489,-129,8,0,0,0.568068 -26183,7012:488,-128,8,0,0,0.571644 -26184,7012:487,-127,8,0,0,0.57285 -26185,7012:486,-126,8,0,0,0.577119 -26186,7012:485,-125,8,0,0,0.577671 -26187,7012:384,-124,8,0,0,0.577019 -26188,7012:383,-123,8,0,0,0.576417 -26189,7012:382,-122,8,0,0,0.58 -26190,7012:381,-121,8,0,0,0.590424 -26191,7012:380,-120,8,0,0,0.60136 -26192,7011:489,-119,8,0,0,0.603426 -26193,7011:488,-118,8,0,0,0.602665 -26194,7011:487,-117,8,0,0,0.597635 -26195,7011:486,-116,8,0,0,0.602443 -26196,7011:485,-115,8,0,0,0.602172 -26197,7011:384,-114,8,0,0,0.600866 -26198,7011:383,-113,8,0,0,0.600522 -26199,7011:382,-112,8,0,0,0.608358 -26200,7011:381,-111,8,0,0,0.617911 -26201,7011:380,-110,8,0,0,0.624776 -26202,7010:489,-109,8,0,0,0.63006 -26203,7010:488,-108,8,0,0,0.63712 -26204,7010:487,-107,8,0,0,0.640534 -26205,7010:486,-106,8,0,0,0.642848 -26206,7010:485,-105,8,0,0,0.645462 -26207,7010:384,-104,8,0,0,0.659186 -26208,7010:383,-103,8,0,0,0.663305 -26209,7010:382,-102,8,0,0,0.665825 -26210,7010:381,-101,8,0,0,0.663397 -26211,7010:380,-100,8,0,0,0.661007 -26212,7009:489,-99,8,0,0,0.653904 -26213,7009:488,-98,8,0,0,0.641125 -26214,7009:487,-97,8,0,0,0.636026 -26215,7009:486,-96,8,0,0,0.634526 -26216,7009:485,-95,8,0,0,0.639373 -26217,7009:384,-94,8,0,0,0.645039 -26218,7008:384,-84,8,0,0,0.624053 -26219,7008:383,-83,8,0,0,0.618881 -26220,7008:382,-82,8,0,0,0.626484 -26221,7008:381,-81,8,0,0,0.636098 -26222,7008:380,-80,8,0,0,0.641054 -26223,7007:489,-79,8,0,0,0.64103 -26224,7007:488,-78,8,0,0,0.640178 -26225,7007:487,-77,8,0,0,0.641314 -26227,7007:485,-75,8,0,0,0.643697 -26228,7007:384,-74,8,0,0,0.642919 -26229,7007:383,-73,8,0,0,0.64006 -26230,7007:382,-72,8,0,0,0.63769 -26231,7007:381,-71,8,0,0,0.637215 -26232,7007:380,-70,8,0,0,0.637666 -26233,7006:489,-69,8,0,0,0.638164 -26234,7006:488,-68,8,0,0,0.638497 -26235,7006:487,-67,8,0,0,0.638923 -26236,7006:486,-66,8,0,0,0.637049 -26237,7006:485,-65,8,0,0,0.637499 -26238,7006:384,-64,8,0,0,0.636122 -26239,7006:383,-63,8,0,0,0.634979 -26240,7006:382,-62,8,0,0,0.631735 -26241,7006:381,-61,8,0,0,0.627566 -26242,7006:380,-60,8,0,0,0.628526 -26243,7005:489,-59,8,0,0,0.625931 -26244,7005:488,-58,8,0,0,0.623691 -26245,7005:487,-57,8,0,0,0.621277 -26246,7005:486,-56,8,0,0,0.617741 -26247,7005:485,-55,8,0,0,0.616042 -26248,7005:384,-54,8,0,0,0.615823 -26249,7005:383,-53,8,0,0,0.613389 -26250,7005:382,-52,8,0,0,0.609043 -26251,7005:381,-51,8,0,0,0.606912 -26252,7005:380,-50,8,0,0,0.604533 -26253,7004:489,-49,8,0,0,0.602049 -26254,7004:488,-48,8,0,0,0.600201 -26255,7004:487,-47,8,0,0,0.598598 -26256,7004:486,-46,8,0,0,0.596868 -26257,7004:485,-45,8,0,0,0.594864 -26258,7004:384,-44,8,0,0,0.592312 -26259,7004:383,-43,8,0,0,0.589729 -26260,7004:382,-42,8,0,0,0.588361 -26261,7004:381,-41,8,0,0,0.58572 -26262,7004:380,-40,8,0,0,0.583825 -26263,7003:489,-39,8,0,0,0.581651 -26264,7003:488,-38,8,0,0,0.578573 -26265,7003:487,-37,8,0,0,0.576567 -26266,7003:486,-36,8,0,0,0.574886 -26267,7003:485,-35,8,0,0,0.573027 -26268,7003:384,-34,8,0,0,0.572725 -26269,7003:383,-33,8,0,0,0.569504 -26270,7003:382,-32,8,0,0,0.568748 -26271,7003:381,-31,8,0,0,0.569201 -26272,7003:380,-30,8,0,0,0.570259 -26273,7002:489,-29,8,0,0,0.569201 -26274,7002:488,-28,8,0,0,0.567286 -26275,7002:487,-27,8,0,0,0.56721 -26276,7002:486,-26,8,0,0,0.567765 -26277,7002:485,-25,8,0,0,0.566882 -26278,7002:384,-24,8,0,0,0.56779 -26279,7002:383,-23,8,0,0,0.571116 -26280,7002:382,-22,8,0,0,0.568874 -26281,7002:381,-21,8,0,0,0.573177 -26282,7002:380,-20,8,0,0,0.583425 -26283,7001:489,-19,8,0,0,0.586368 -26284,7001:488,-18,8,0,0,0.585472 -26285,7001:487,-17,8,0,0,0.559983 -26286,1004:380,40,8,0,0,0.625546 -26287,1004:381,41,8,0,0,0.616989 -26288,1004:382,42,8,0,0,0.629508 -26289,1005:382,52,8,0,0,0.595409 -26290,1005:383,53,8,0,0,0.592708 -26291,1005:384,54,8,0,0,0.590574 -26292,1005:485,55,8,0,0,0.591542 -26293,1005:486,56,8,0,0,0.596671 -26294,1005:487,57,8,0,0,0.596646 -26295,1005:488,58,8,0,0,0.59422 -26296,1005:489,59,8,0,0,0.598079 -26297,1006:380,60,8,0,0,0.601778 -26298,1006:381,61,8,0,0,0.604262 -26299,1006:382,62,8,0,0,0.610852 -26300,1006:383,63,8,0,0,0.614947 -26301,1006:384,64,8,0,0,0.620552 -26302,1006:485,65,8,0,0,0.626845 -26303,1006:486,66,8,0,0,0.630443 -26304,1006:487,67,8,0,0,0.635883 -26305,1006:488,68,8,0,0,0.638662 -26306,1006:489,69,8,0,0,0.64103 -26307,1007:380,70,8,0,0,0.643485 -26308,1007:381,71,8,0,0,0.648349 -26309,1007:382,72,8,0,0,0.654392 -26310,1007:384,74,8,0,0,0.647599 -26311,1008:381,81,8,0,0,0.611706 -26312,1008:382,82,8,0,0,0.613145 -26313,1008:383,83,8,0,0,0.622436 -26314,1008:384,84,8,0,0,0.626604 -26315,1008:485,85,8,0,0,0.630945 -26316,1008:486,86,8,0,0,0.634884 -26317,1008:487,87,8,0,0,0.636621 -26318,1008:488,88,8,0,0,0.637547 -26319,1008:489,89,8,0,0,0.64058 -26320,1009:380,90,8,0,0,0.642966 -26321,1009:381,91,8,0,0,0.645839 -26322,1009:382,92,8,0,0,0.647951 -26323,1009:383,93,8,0,0,0.642046 -26324,1009:384,94,8,0,0,0.63833 -26325,1009:485,95,8,0,0,0.634431 -26326,1009:486,96,8,0,0,0.633382 -26327,1009:487,97,8,0,0,0.637357 -26328,1010:489,109,8,0,0,0.584898 -26329,1011:380,110,8,0,0,0.587141 -26330,1011:381,111,8,0,0,0.598351 -26331,1011:382,112,8,0,0,0.599856 -26332,1011:383,113,8,0,0,0.603697 -26333,1011:384,114,8,0,0,0.607697 -26334,1011:485,115,8,0,0,0.610632 -26335,1011:486,116,8,0,0,0.613535 -26336,1011:487,117,8,0,0,0.618638 -26337,1011:488,118,8,0,0,0.628286 -26338,1011:489,119,8,0,0,0.637286 -26339,1012:380,120,8,0,0,0.620842 -26340,1012:382,122,8,0,0,0.625594 -26341,1012:383,123,8,0,0,0.627614 -26342,1012:384,124,8,0,0,0.624968 -26343,1012:485,125,8,0,0,0.623643 -26344,1012:486,126,8,0,0,0.624391 -26345,1012:487,127,8,0,0,0.626436 -26346,1012:488,128,8,0,0,0.628118 -26347,1012:489,129,8,0,0,0.629796 -26348,1013:380,130,8,0,0,0.631806 -26349,1013:381,131,8,0,0,0.635788 -26350,1013:382,132,8,0,0,0.640013 -26351,1013:383,133,8,0,0,0.640367 -26352,1013:384,134,8,0,0,0.637049 -26353,1013:485,135,8,0,0,0.636669 -26354,1013:486,136,8,0,0,0.638402 -26355,1013:487,137,8,0,0,0.638876 -26356,1013:488,138,8,0,0,0.639752 -26357,1013:489,139,8,0,0,0.640391 -26358,1014:380,140,8,0,0,0.640439 -26359,1014:381,141,8,0,0,0.640415 -26360,1014:382,142,8,0,0,0.640391 -26361,1014:383,143,8,0,0,0.640699 -26362,1014:384,144,8,0,0,0.640912 -26363,1014:485,145,8,0,0,0.641148 -26364,1014:486,146,8,0,0,0.6398 -26365,1014:487,147,8,0,0,0.640604 -26366,1014:488,148,8,0,0,0.640273 -26367,1014:489,149,8,0,0,0.640462 -26368,1015:380,150,8,0,0,0.640817 -26369,1015:381,151,8,0,0,0.641006 -26370,1015:382,152,8,0,0,0.640817 -26371,1015:383,153,8,0,0,0.640202 -26372,1015:384,154,8,0,0,0.639302 -26373,1015:485,155,8,0,0,0.638164 -26374,1015:486,156,8,0,0,0.637001 -26375,1015:487,157,8,0,0,0.635955 -26376,1015:488,158,8,0,0,0.634789 -26377,1015:489,159,8,0,0,0.633549 -26378,1016:380,160,8,0,0,0.632236 -26379,1016:381,161,8,0,0,0.631017 -26380,1016:382,162,8,0,0,0.630251 -26381,1016:383,163,8,0,0,0.629964 -26382,1016:384,164,8,0,0,0.629221 -26383,1016:485,165,8,0,0,0.627733 -26384,1016:486,166,8,0,0,0.625811 -26385,1016:487,167,8,0,0,0.624077 -26386,1016:488,168,8,0,0,0.622267 -26387,1016:489,169,8,0,0,0.620164 -26388,1017:380,170,8,0,0,0.617862 -26389,1017:381,171,8,0,0,0.616381 -26390,1017:382,172,8,0,0,0.615895 -26391,1017:383,173,8,0,0,0.615774 -26392,1017:384,174,8,0,0,0.615409 -26393,1017:485,175,8,0,0,0.61429 -26394,1017:486,176,8,0,0,0.612902 -26395,1017:487,177,8,0,0,0.612146 -26396,1017:488,178,8,0,0,0.612316 -26397,1017:489,179,8,0,0,0.612389 -26398,1018:380,180,8,0,0,0.611242 -26399,7018:390,-180,9,0,0,0.606839 -26400,7017:499,-179,9,0,0,0.60777 -26401,7017:498,-178,9,0,0,0.606741 -26402,7017:497,-177,9,0,0,0.605171 -26403,7017:496,-176,9,0,0,0.604065 -26404,7017:495,-175,9,0,0,0.601606 -26405,7017:394,-174,9,0,0,0.599338 -26406,7017:393,-173,9,0,0,0.598227 -26407,7017:392,-172,9,0,0,0.599313 -26408,7017:391,-171,9,0,0,0.600916 -26409,7017:390,-170,9,0,0,0.601113 -26410,7016:499,-169,9,0,0,0.598153 -26411,7016:498,-168,9,0,0,0.595211 -26412,7016:497,-167,9,0,0,0.594419 -26413,7016:496,-166,9,0,0,0.596918 -26414,7016:495,-165,9,0,0,0.597017 -26415,7016:394,-164,9,0,0,0.595409 -26416,7016:393,-163,9,0,0,0.592436 -26417,7016:392,-162,9,0,0,0.590276 -26418,7016:391,-161,9,0,0,0.590698 -26419,7016:390,-160,9,0,0,0.588734 -26420,7015:499,-159,9,0,0,0.590624 -26421,7015:498,-158,9,0,0,0.58739 -26422,7015:497,-157,9,0,0,0.579599 -26423,7015:496,-156,9,0,0,0.5797 -26424,7015:495,-155,9,0,0,0.58572 -26425,7015:394,-154,9,0,0,0.582851 -26426,7015:393,-153,9,0,0,0.580401 -26427,7015:392,-152,9,0,0,0.580425 -26428,7015:391,-151,9,0,0,0.578623 -26429,7015:390,-150,9,0,0,0.576618 -26430,7014:499,-149,9,0,0,0.575689 -26431,7014:498,-148,9,0,0,0.577671 -26432,7014:497,-147,9,0,0,0.579399 -26433,7014:496,-146,9,0,0,0.578297 -26434,7014:495,-145,9,0,0,0.576066 -26435,7014:394,-144,9,0,0,0.576316 -26436,7014:393,-143,9,0,0,0.568521 -26437,7014:392,-142,9,0,0,0.571946 -26438,7014:391,-141,9,0,0,0.575488 -26439,7014:390,-140,9,0,0,0.566806 -26440,7013:499,-139,9,0,0,0.556892 -26441,7013:498,-138,9,0,0,0.558413 -26442,7013:497,-137,9,0,0,0.555649 -26443,7013:496,-136,9,0,0,0.550825 -26444,7013:495,-135,9,0,0,0.553263 -26445,7013:394,-134,9,0,0,0.545124 -26446,7013:393,-133,9,0,0,0.541045 -26447,7013:392,-132,9,0,0,0.54005 -26448,7013:391,-131,9,0,0,0.538773 -26449,7013:390,-130,9,0,0,0.533203 -26450,7012:499,-129,9,0,0,0.533407 -26451,7012:498,-128,9,0,0,0.54079 -26452,7012:497,-127,9,0,0,0.537726 -26453,7012:496,-126,9,0,0,0.539156 -26454,7012:495,-125,9,0,0,0.551078 -26455,7012:394,-124,9,0,0,0.546066 -26456,7012:393,-123,9,0,0,0.553543 -26457,7012:392,-122,9,0,0,0.553289 -26458,7012:391,-121,9,0,0,0.565343 -26459,7012:390,-120,9,0,0,0.571442 -26460,7011:499,-119,9,0,0,0.578097 -26461,7011:498,-118,9,0,0,0.579099 -26462,7011:497,-117,9,0,0,0.578623 -26463,7011:496,-116,9,0,0,0.581826 -26464,7011:495,-115,9,0,0,0.58005 -26465,7011:394,-114,9,0,0,0.5827 -26466,7011:393,-113,9,0,0,0.581626 -26467,7011:392,-112,9,0,0,0.584972 -26468,7011:391,-111,9,0,0,0.597536 -26469,7011:390,-110,9,0,0,0.60826 -26470,7010:499,-109,9,0,0,0.62304 -26471,7010:498,-108,9,0,0,0.63195 -26472,7010:497,-107,9,0,0,0.636265 -26473,7010:496,-106,9,0,0,0.640226 -26474,7010:495,-105,9,0,0,0.6498 -26475,7010:394,-104,9,0,0,0.655669 -26476,7010:393,-103,9,0,0,0.659232 -26477,7010:392,-102,9,0,0,0.664841 -26478,7010:391,-101,9,0,0,0.65884 -26479,7008:498,-88,9,0,0,0.637143 -26480,7008:497,-87,9,0,0,0.635003 -26481,7008:496,-86,9,0,0,0.634264 -26482,7008:495,-85,9,0,0,0.63605 -26483,7008:394,-84,9,0,0,0.634598 -26484,7008:393,-83,9,0,0,0.634408 -26485,7008:392,-82,9,0,0,0.635313 -26486,7008:391,-81,9,0,0,0.636645 -26487,7008:390,-80,9,0,0,0.640486 -26488,7007:499,-79,9,0,0,0.640391 -26489,7007:498,-78,9,0,0,0.63769 -26490,7007:497,-77,9,0,0,0.63871 -26491,7007:496,-76,9,0,0,0.641739 -26492,7007:495,-75,9,0,0,0.638544 -26493,7007:394,-74,9,0,0,0.640793 -26494,7007:393,-73,9,0,0,0.639634 -26495,7007:392,-72,9,0,0,0.638686 -26496,7007:391,-71,9,0,0,0.636574 -26497,7007:390,-70,9,0,0,0.637167 -26498,7006:499,-69,9,0,0,0.637001 -26499,7006:498,-68,9,0,0,0.636621 -26500,7006:497,-67,9,0,0,0.635098 -26501,7006:496,-66,9,0,0,0.635479 -26502,7006:495,-65,9,0,0,0.634336 -26503,7006:394,-64,9,0,0,0.633406 -26504,7006:393,-63,9,0,0,0.63006 -26505,7006:392,-62,9,0,0,0.628861 -26506,7006:391,-61,9,0,0,0.626268 -26507,7006:390,-60,9,0,0,0.625185 -26508,7005:499,-59,9,0,0,0.62333 -26509,7005:498,-58,9,0,0,0.621277 -26510,7005:497,-57,9,0,0,0.61968 -26511,7005:496,-56,9,0,0,0.617668 -26512,7005:495,-55,9,0,0,0.615433 -26513,7005:394,-54,9,0,0,0.612877 -26514,7005:393,-53,9,0,0,0.609899 -26515,7005:392,-52,9,0,0,0.607574 -26516,7005:391,-51,9,0,0,0.605662 -26517,7005:390,-50,9,0,0,0.60441 -26518,7004:499,-49,9,0,0,0.60195 -26519,7004:498,-48,9,0,0,0.599511 -26520,7004:497,-47,9,0,0,0.596003 -26521,7004:496,-46,9,0,0,0.593526 -26522,7004:495,-45,9,0,0,0.591344 -26523,7004:394,-44,9,0,0,0.588983 -26524,7004:393,-43,9,0,0,0.586593 -26525,7004:392,-42,9,0,0,0.586394 -26526,7004:391,-41,9,0,0,0.58385 -26527,7004:390,-40,9,0,0,0.578397 -26528,7003:499,-39,9,0,0,0.57732 -26529,7003:498,-38,9,0,0,0.575665 -26530,7003:497,-37,9,0,0,0.571895 -26531,7003:496,-36,9,0,0,0.571266 -26532,7003:495,-35,9,0,0,0.570385 -26533,7003:394,-34,9,0,0,0.567336 -26534,7003:393,-33,9,0,0,0.56514 -26535,7003:392,-32,9,0,0,0.563953 -26536,7003:391,-31,9,0,0,0.564434 -26537,7003:390,-30,9,0,0,0.563524 -26538,7002:499,-29,9,0,0,0.562943 -26539,7002:498,-28,9,0,0,0.561678 -26540,7002:497,-27,9,0,0,0.561603 -26541,7002:496,-26,9,0,0,0.562209 -26542,7002:495,-25,9,0,0,0.561653 -26543,7002:394,-24,9,0,0,0.560742 -26544,7002:393,-23,9,0,0,0.55816 -26545,7002:392,-22,9,0,0,0.555269 -26546,7002:391,-21,9,0,0,0.562993 -26547,7002:390,-20,9,0,0,0.567286 -26548,7001:499,-19,9,0,0,0.565822 -26549,7001:498,-18,9,0,0,0.564938 -26550,7001:497,-17,9,0,0,0.541785 -26551,1003:499,39,9,0,0,0.643838 -26552,1004:390,40,9,0,0,0.631735 -26553,1004:392,42,9,0,0,0.642305 -26554,1005:394,54,9,0,0,0.589232 -26555,1005:495,55,9,0,0,0.588236 -26556,1005:496,56,9,0,0,0.593625 -26557,1005:497,57,9,0,0,0.59184 -26558,1005:498,58,9,0,0,0.593502 -26559,1005:499,59,9,0,0,0.591666 -26560,1006:390,60,9,0,0,0.593031 -26561,1006:391,61,9,0,0,0.602763 -26562,1006:392,62,9,0,0,0.603451 -26563,1006:393,63,9,0,0,0.605417 -26564,1006:394,64,9,0,0,0.608774 -26565,1006:495,65,9,0,0,0.611267 -26566,1006:496,66,9,0,0,0.617231 -26567,1006:497,67,9,0,0,0.622871 -26568,1006:498,68,9,0,0,0.627278 -26569,1006:499,69,9,0,0,0.636169 -26570,1007:390,70,9,0,0,0.642565 -26571,1007:391,71,9,0,0,0.647435 -26572,1007:392,72,9,0,0,0.650197 -26573,1008:393,83,9,0,0,0.604188 -26574,1008:394,84,9,0,0,0.613803 -26575,1008:495,85,9,0,0,0.614314 -26576,1008:496,86,9,0,0,0.61905 -26577,1008:497,87,9,0,0,0.627421 -26578,1008:498,88,9,0,0,0.63424 -26579,1008:499,89,9,0,0,0.634622 -26580,1009:390,90,9,0,0,0.636145 -26581,1009:391,91,9,0,0,0.638473 -26582,1009:392,92,9,0,0,0.642542 -26583,1009:393,93,9,0,0,0.641195 -26584,1009:394,94,9,0,0,0.635503 -26585,1010:498,108,9,0,0,0.575288 -26586,1010:499,109,9,0,0,0.578448 -26587,1011:390,110,9,0,0,0.579149 -26588,1011:391,111,9,0,0,0.58749 -26589,1011:392,112,9,0,0,0.588883 -26590,1011:393,113,9,0,0,0.5834 -26591,1011:394,114,9,0,0,0.592782 -26592,1011:495,115,9,0,0,0.592088 -26593,1011:496,116,9,0,0,0.592609 -26594,1011:497,117,9,0,0,0.599462 -26595,1011:498,118,9,0,0,0.617935 -26596,1011:499,119,9,0,0,0.629868 -26597,1012:390,120,9,0,0,0.619002 -26598,1012:393,123,9,0,0,0.625787 -26599,1012:394,124,9,0,0,0.616284 -26600,1012:495,125,9,0,0,0.614241 -26601,1012:496,126,9,0,0,0.614022 -26602,1012:497,127,9,0,0,0.615458 -26603,1012:498,128,9,0,0,0.616381 -26604,1012:499,129,9,0,0,0.618056 -26605,1013:390,130,9,0,0,0.620817 -26606,1013:391,131,9,0,0,0.623619 -26607,1013:392,132,9,0,0,0.626797 -26608,1013:393,133,9,0,0,0.631782 -26609,1013:394,134,9,0,0,0.633382 -26610,1013:495,135,9,0,0,0.632284 -26611,1013:496,136,9,0,0,0.632308 -26612,1013:497,137,9,0,0,0.634408 -26613,1013:498,138,9,0,0,0.635217 -26614,1013:499,139,9,0,0,0.635551 -26615,1014:390,140,9,0,0,0.63517 -26616,1014:391,141,9,0,0,0.634479 -26617,1014:392,142,9,0,0,0.634503 -26618,1014:393,143,9,0,0,0.635027 -26619,1014:394,144,9,0,0,0.635479 -26620,1014:495,145,9,0,0,0.635337 -26621,1014:496,146,9,0,0,0.634288 -26622,1014:497,147,9,0,0,0.635146 -26623,1014:498,148,9,0,0,0.635384 -26624,1014:499,149,9,0,0,0.636074 -26625,1015:390,150,9,0,0,0.636502 -26626,1015:391,151,9,0,0,0.63605 -26627,1015:392,152,9,0,0,0.636336 -26628,1015:393,153,9,0,0,0.636764 -26629,1015:394,154,9,0,0,0.637595 -26630,1015:495,155,9,0,0,0.636645 -26631,1015:496,156,9,0,0,0.635432 -26632,1015:497,157,9,0,0,0.633859 -26633,1015:498,158,9,0,0,0.632714 -26634,1015:499,159,9,0,0,0.632762 -26635,1016:390,160,9,0,0,0.632117 -26636,1016:391,161,9,0,0,0.630634 -26637,1016:392,162,9,0,0,0.628526 -26638,1016:393,163,9,0,0,0.626412 -26639,1016:394,164,9,0,0,0.624993 -26640,1016:495,165,9,0,0,0.624968 -26641,1016:496,166,9,0,0,0.625233 -26642,1016:497,167,9,0,0,0.624391 -26643,1016:498,168,9,0,0,0.621953 -26644,1016:499,169,9,0,0,0.619946 -26645,1017:390,170,9,0,0,0.61762 -26646,1017:391,171,9,0,0,0.615288 -26647,1017:392,172,9,0,0,0.613973 -26648,1017:393,173,9,0,0,0.61317 -26649,1017:394,174,9,0,0,0.612658 -26650,1017:495,175,9,0,0,0.611974 -26651,1017:496,176,9,0,0,0.610779 -26652,1017:497,177,9,0,0,0.608333 -26653,1017:498,178,9,0,0,0.606594 -26654,1017:499,179,9,0,0,0.606374 -26655,1018:390,180,9,0,0,0.606839 -26656,7118:100,-180,10,0,0,0.602763 -26657,7117:209,-179,10,0,0,0.603008 -26658,7117:208,-178,10,0,0,0.601975 -26659,7117:207,-177,10,0,0,0.597956 -26660,7117:206,-176,10,0,0,0.600004 -26661,7117:205,-175,10,0,0,0.597561 -26662,7117:104,-174,10,0,0,0.596151 -26663,7117:103,-173,10,0,0,0.594419 -26664,7117:102,-172,10,0,0,0.595334 -26665,7117:101,-171,10,0,0,0.59432 -26666,7117:100,-170,10,0,0,0.59672 -26667,7116:209,-169,10,0,0,0.59761 -26668,7116:208,-168,10,0,0,0.595756 -26669,7116:207,-167,10,0,0,0.593997 -26670,7116:206,-166,10,0,0,0.591244 -26671,7116:205,-165,10,0,0,0.589057 -26672,7116:104,-164,10,0,0,0.588311 -26673,7116:103,-163,10,0,0,0.589057 -26674,7116:102,-162,10,0,0,0.588286 -26675,7116:101,-161,10,0,0,0.587689 -26676,7116:100,-160,10,0,0,0.589132 -26677,7115:209,-159,10,0,0,0.5902 -26678,7115:208,-158,10,0,0,0.590151 -26679,7115:207,-157,10,0,0,0.577445 -26680,7115:206,-156,10,0,0,0.568949 -26681,7115:205,-155,10,0,0,0.567992 -26682,7115:104,-154,10,0,0,0.570838 -26683,7115:103,-153,10,0,0,0.569176 -26684,7115:102,-152,10,0,0,0.56514 -26685,7115:101,-151,10,0,0,0.564282 -26686,7115:100,-150,10,0,0,0.560211 -26687,7114:209,-149,10,0,0,0.562741 -26688,7114:208,-148,10,0,0,0.559122 -26689,7114:207,-147,10,0,0,0.560033 -26690,7114:206,-146,10,0,0,0.560996 -26691,7114:205,-145,10,0,0,0.566176 -26692,7114:104,-144,10,0,0,0.56509 -26693,7114:103,-143,10,0,0,0.563828 -26694,7114:102,-142,10,0,0,0.549426 -26695,7114:101,-141,10,0,0,0.544666 -26696,7114:100,-140,10,0,0,0.54762 -26697,7113:209,-139,10,0,0,0.549629 -26698,7113:208,-138,10,0,0,0.539794 -26699,7113:207,-137,10,0,0,0.530491 -26700,7113:206,-136,10,0,0,0.532205 -26701,7113:205,-135,10,0,0,0.527803 -26702,7113:104,-134,10,0,0,0.526446 -26703,7113:103,-133,10,0,0,0.522602 -26704,7113:102,-132,10,0,0,0.517217 -26705,7113:101,-131,10,0,0,0.510133 -26706,7113:100,-130,10,0,0,0.509568 -26707,7112:209,-129,10,0,0,0.50926 -26708,7112:208,-128,10,0,0,0.511776 -26709,7112:207,-127,10,0,0,0.517859 -26710,7112:206,-126,10,0,0,0.520372 -26711,7112:205,-125,10,0,0,0.516165 -26712,7112:104,-124,10,0,0,0.510723 -26713,7112:103,-123,10,0,0,0.519243 -26714,7112:102,-122,10,0,0,0.53264 -26715,7112:101,-121,10,0,0,0.542601 -26716,7112:100,-120,10,0,0,0.546244 -26717,7111:209,-119,10,0,0,0.548204 -26718,7111:208,-118,10,0,0,0.542703 -26719,7111:207,-117,10,0,0,0.546117 -26720,7111:206,-116,10,0,0,0.547772 -26721,7111:205,-115,10,0,0,0.548434 -26722,7111:104,-114,10,0,0,0.557222 -26723,7111:103,-113,10,0,0,0.565267 -26724,7111:102,-112,10,0,0,0.573956 -26725,7111:101,-111,10,0,0,0.58375 -26726,7111:100,-110,10,0,0,0.596893 -26727,7110:209,-109,10,0,0,0.615944 -26728,7110:208,-108,10,0,0,0.629557 -26729,7110:207,-107,10,0,0,0.625378 -26730,7110:206,-106,10,0,0,0.622243 -26731,7110:205,-105,10,0,0,0.637428 -26732,7110:104,-104,10,0,0,0.648045 -26733,7109:104,-94,10,0,0,0.600127 -26734,7108:208,-88,10,0,0,0.611682 -26735,7108:207,-87,10,0,0,0.633931 -26736,7108:206,-86,10,0,0,0.63655 -26737,7108:205,-85,10,0,0,0.638615 -26738,7108:104,-84,10,0,0,0.639184 -26739,7108:103,-83,10,0,0,0.638235 -26740,7108:102,-82,10,0,0,0.638615 -26741,7108:101,-81,10,0,0,0.63871 -26742,7108:100,-80,10,0,0,0.638307 -26743,7107:209,-79,10,0,0,0.638781 -26744,7107:207,-77,10,0,0,0.634765 -26745,7107:206,-76,10,0,0,0.634884 -26746,7107:205,-75,10,0,0,0.638235 -26747,7107:100,-70,10,0,0,0.62831 -26748,7106:208,-68,10,0,0,0.631902 -26749,7106:205,-65,10,0,0,0.626653 -26750,7106:104,-64,10,0,0,0.626052 -26751,7106:103,-63,10,0,0,0.626461 -26752,7106:102,-62,10,0,0,0.623667 -26753,7106:101,-61,10,0,0,0.62304 -26754,7106:100,-60,10,0,0,0.62118 -26755,7105:209,-59,10,0,0,0.618493 -26756,7105:208,-58,10,0,0,0.617231 -26757,7105:207,-57,10,0,0,0.616867 -26758,7105:206,-56,10,0,0,0.616478 -26759,7105:205,-55,10,0,0,0.613023 -26760,7105:104,-54,10,0,0,0.611169 -26761,7105:103,-53,10,0,0,0.60963 -26762,7105:102,-52,10,0,0,0.607354 -26763,7105:101,-51,10,0,0,0.60468 -26764,7105:100,-50,10,0,0,0.603254 -26765,7104:209,-49,10,0,0,0.600793 -26766,7104:208,-48,10,0,0,0.597758 -26767,7104:207,-47,10,0,0,0.592584 -26768,7104:206,-46,10,0,0,0.590499 -26769,7104:205,-45,10,0,0,0.588585 -26770,7104:104,-44,10,0,0,0.586942 -26771,7104:103,-43,10,0,0,0.585745 -26772,7104:102,-42,10,0,0,0.583825 -26773,7104:101,-41,10,0,0,0.581401 -26774,7104:100,-40,10,0,0,0.578523 -26775,7103:209,-39,10,0,0,0.575388 -26776,7103:208,-38,10,0,0,0.574007 -26777,7103:207,-37,10,0,0,0.57192 -26778,7103:206,-36,10,0,0,0.568521 -26779,7103:205,-35,10,0,0,0.565797 -26780,7103:104,-34,10,0,0,0.563373 -26781,7103:103,-33,10,0,0,0.560691 -26782,7103:102,-32,10,0,0,0.558286 -26783,7103:101,-31,10,0,0,0.556207 -26784,7103:100,-30,10,0,0,0.555929 -26785,7102:209,-29,10,0,0,0.555649 -26786,7102:208,-28,10,0,0,0.553848 -26787,7102:207,-27,10,0,0,0.554051 -26788,7102:206,-26,10,0,0,0.552146 -26789,7102:205,-25,10,0,0,0.551486 -26790,7102:104,-24,10,0,0,0.549858 -26791,7102:103,-23,10,0,0,0.55024 -26792,7102:102,-22,10,0,0,0.547772 -26793,7102:101,-21,10,0,0,0.548561 -26794,7102:100,-20,10,0,0,0.542346 -26795,7101:209,-19,10,0,0,0.536858 -26796,7101:208,-18,10,0,0,0.549375 -26797,7101:207,-17,10,0,0,0.527906 -26798,1103:208,38,10,0,0,0.642542 -26799,1103:209,39,10,0,0,0.657684 -26800,1104:100,40,10,0,0,0.665047 -26801,1104:101,41,10,0,0,0.643932 -26802,1105:207,57,10,0,0,0.581401 -26803,1105:208,58,10,0,0,0.587788 -26804,1105:209,59,10,0,0,0.588236 -26805,1106:100,60,10,0,0,0.588833 -26806,1106:101,61,10,0,0,0.594988 -26807,1106:102,62,10,0,0,0.597536 -26808,1106:103,63,10,0,0,0.596473 -26809,1106:104,64,10,0,0,0.597536 -26810,1106:205,65,10,0,0,0.600621 -26811,1106:206,66,10,0,0,0.606374 -26812,1106:207,67,10,0,0,0.610827 -26813,1106:208,68,10,0,0,0.623981 -26814,1106:209,69,10,0,0,0.63424 -26815,1107:100,70,10,0,0,0.636764 -26816,1107:101,71,10,0,0,0.632977 -26817,1107:102,72,10,0,0,0.638497 -26818,1108:205,85,10,0,0,0.598968 -26819,1108:206,86,10,0,0,0.608872 -26820,1108:207,87,10,0,0,0.61728 -26821,1108:208,88,10,0,0,0.619946 -26822,1108:209,89,10,0,0,0.627133 -26823,1109:100,90,10,0,0,0.627782 -26824,1109:101,91,10,0,0,0.626244 -26825,1109:102,92,10,0,0,0.628694 -26826,1109:103,93,10,0,0,0.635479 -26827,1109:104,94,10,0,0,0.639657 -26828,1110:207,107,10,0,0,0.544029 -26829,1110:208,108,10,0,0,0.574735 -26830,1110:209,109,10,0,0,0.552374 -26831,1111:101,111,10,0,0,0.56461 -26832,1111:102,112,10,0,0,0.571417 -26833,1111:103,113,10,0,0,0.577044 -26834,1111:104,114,10,0,0,0.578548 -26835,1111:205,115,10,0,0,0.578673 -26836,1111:206,116,10,0,0,0.586942 -26837,1111:207,117,10,0,0,0.590574 -26838,1111:208,118,10,0,0,0.592535 -26839,1111:209,119,10,0,0,0.602665 -26840,1112:100,120,10,0,0,0.611047 -26841,1112:102,122,10,0,0,0.601261 -26842,1112:103,123,10,0,0,0.620285 -26843,1112:104,124,10,0,0,0.59318 -26844,1112:205,125,10,0,0,0.602025 -26845,1112:206,126,10,0,0,0.604606 -26846,1112:207,127,10,0,0,0.60296 -26847,1112:208,128,10,0,0,0.60291 -26848,1112:209,129,10,0,0,0.606766 -26849,1113:100,130,10,0,0,0.6087 -26850,1113:101,131,10,0,0,0.610754 -26851,1113:102,132,10,0,0,0.613364 -26852,1113:103,133,10,0,0,0.617959 -26853,1113:104,134,10,0,0,0.62316 -26854,1113:205,135,10,0,0,0.623112 -26855,1113:206,136,10,0,0,0.625353 -26856,1113:207,137,10,0,0,0.628045 -26857,1113:208,138,10,0,0,0.63018 -26858,1113:209,139,10,0,0,0.630491 -26859,1114:100,140,10,0,0,0.629868 -26860,1114:101,141,10,0,0,0.629628 -26861,1114:102,142,10,0,0,0.629077 -26862,1114:103,143,10,0,0,0.628694 -26863,1114:104,144,10,0,0,0.628934 -26864,1114:205,145,10,0,0,0.628694 -26865,1114:206,146,10,0,0,0.629101 -26866,1114:207,147,10,0,0,0.629101 -26867,1114:208,148,10,0,0,0.629197 -26868,1114:209,149,10,0,0,0.628958 -26869,1115:100,150,10,0,0,0.628166 -26870,1115:101,151,10,0,0,0.629844 -26871,1115:102,152,10,0,0,0.629461 -26872,1115:103,153,10,0,0,0.628958 -26873,1115:104,154,10,0,0,0.630418 -26874,1115:205,155,10,0,0,0.629125 -26875,1115:206,156,10,0,0,0.629341 -26876,1115:207,157,10,0,0,0.628669 -26877,1115:208,158,10,0,0,0.628262 -26878,1115:209,159,10,0,0,0.627421 -26879,1116:100,160,10,0,0,0.62622 -26880,1116:101,161,10,0,0,0.627278 -26881,1116:102,162,10,0,0,0.627566 -26882,1116:103,163,10,0,0,0.625811 -26883,1116:104,164,10,0,0,0.623498 -26884,1116:205,165,10,0,0,0.620939 -26885,1116:206,166,10,0,0,0.621108 -26886,1116:207,167,10,0,0,0.620454 -26887,1116:208,168,10,0,0,0.617523 -26888,1116:209,169,10,0,0,0.618686 -26889,1117:100,170,10,0,0,0.618348 -26890,1117:101,171,10,0,0,0.616892 -26891,1117:102,172,10,0,0,0.615433 -26892,1117:103,173,10,0,0,0.614996 -26893,1117:104,174,10,0,0,0.613242 -26894,1117:205,175,10,0,0,0.61134 -26895,1117:206,176,10,0,0,0.609435 -26896,1117:207,177,10,0,0,0.607844 -26897,1117:208,178,10,0,0,0.606643 -26898,1117:209,179,10,0,0,0.605613 -26899,1118:100,180,10,0,0,0.602763 -26900,7118:110,-180,11,0,0,0.594419 -26901,7117:219,-179,11,0,0,0.59625 -26902,7117:218,-178,11,0,0,0.594171 -26903,7117:217,-177,11,0,0,0.589927 -26904,7117:216,-176,11,0,0,0.590996 -26905,7117:215,-175,11,0,0,0.586019 -26906,7117:114,-174,11,0,0,0.5834 -26907,7117:113,-173,11,0,0,0.58075 -26908,7117:112,-172,11,0,0,0.577545 -26909,7117:111,-171,11,0,0,0.576166 -26910,7117:110,-170,11,0,0,0.580701 -26911,7116:219,-169,11,0,0,0.584798 -26912,7116:218,-168,11,0,0,0.584024 -26913,7116:217,-167,11,0,0,0.584748 -26914,7116:216,-166,11,0,0,0.583025 -26915,7116:215,-165,11,0,0,0.568572 -26916,7116:114,-164,11,0,0,0.565166 -26917,7116:113,-163,11,0,0,0.565898 -26918,7116:112,-162,11,0,0,0.572725 -26919,7116:111,-161,11,0,0,0.580901 -26920,7116:110,-160,11,0,0,0.581176 -26921,7115:219,-159,11,0,0,0.577796 -26922,7115:218,-158,11,0,0,0.577645 -26923,7115:217,-157,11,0,0,0.579399 -26924,7115:216,-156,11,0,0,0.565469 -26925,7115:215,-155,11,0,0,0.558742 -26926,7115:114,-154,11,0,0,0.561426 -26927,7115:113,-153,11,0,0,0.55783 -26928,7115:112,-152,11,0,0,0.549121 -26929,7115:111,-151,11,0,0,0.545251 -26930,7115:110,-150,11,0,0,0.543391 -26931,7114:219,-149,11,0,0,0.54028 -26932,7114:218,-148,11,0,0,0.5413 -26933,7114:217,-147,11,0,0,0.538416 -26934,7114:216,-146,11,0,0,0.541249 -26935,7114:215,-145,11,0,0,0.537547 -26936,7114:114,-144,11,0,0,0.534072 -26937,7114:113,-143,11,0,0,0.531566 -26938,7114:112,-142,11,0,0,0.525268 -26939,7114:111,-141,11,0,0,0.525242 -26940,7114:110,-140,11,0,0,0.522474 -26941,7113:219,-139,11,0,0,0.517242 -26942,7113:218,-138,11,0,0,0.515318 -26943,7113:217,-137,11,0,0,0.512828 -26944,7113:216,-136,11,0,0,0.515318 -26945,7113:215,-135,11,0,0,0.508567 -26946,7113:114,-134,11,0,0,0.498499 -26947,7113:113,-133,11,0,0,0.503713 -26948,7113:112,-132,11,0,0,0.496572 -26949,7113:111,-131,11,0,0,0.491333 -26950,7113:110,-130,11,0,0,0.492617 -26951,7112:219,-129,11,0,0,0.487816 -26952,7112:218,-128,11,0,0,0.482298 -26953,7112:217,-127,11,0,0,0.483582 -26954,7112:216,-126,11,0,0,0.484479 -26955,7112:215,-125,11,0,0,0.47999 -26956,7112:114,-124,11,0,0,0.481734 -26957,7112:113,-123,11,0,0,0.480836 -26958,7112:112,-122,11,0,0,0.482915 -26959,7112:111,-121,11,0,0,0.489074 -26960,7112:110,-120,11,0,0,0.501247 -26961,7111:219,-119,11,0,0,0.508798 -26962,7111:218,-118,11,0,0,0.517935 -26963,7111:217,-117,11,0,0,0.521423 -26964,7111:216,-116,11,0,0,0.516832 -26965,7111:215,-115,11,0,0,0.521833 -26966,7111:114,-114,11,0,0,0.533791 -26967,7111:113,-113,11,0,0,0.541708 -26968,7111:112,-112,11,0,0,0.550799 -26969,7111:111,-111,11,0,0,0.557019 -26970,7111:110,-110,11,0,0,0.563296 -26971,7110:219,-109,11,0,0,0.57285 -26972,7110:218,-108,11,0,0,0.596275 -26973,7110:217,-107,11,0,0,0.605932 -26974,7110:216,-106,11,0,0,0.623281 -26975,7109:216,-96,11,0,0,0.578022 -26976,7109:215,-95,11,0,0,0.578147 -26977,7109:114,-94,11,0,0,0.584349 -26978,7109:113,-93,11,0,0,0.586917 -26979,7109:112,-92,11,0,0,0.594419 -26980,7109:111,-91,11,0,0,0.588684 -26981,7108:217,-87,11,0,0,0.632762 -26982,7108:216,-86,11,0,0,0.633048 -26983,7108:215,-85,11,0,0,0.625498 -26984,7108:114,-84,11,0,0,0.620817 -26985,7108:113,-83,11,0,0,0.616284 -26986,7108:112,-82,11,0,0,0.619075 -26987,7108:111,-81,11,0,0,0.619317 -26988,7108:110,-80,11,0,0,0.624222 -26989,7107:219,-79,11,0,0,0.626052 -26990,7107:218,-78,11,0,0,0.620213 -26991,7107:114,-74,11,0,0,0.610119 -26992,7107:113,-73,11,0,0,0.621639 -26993,7107:112,-72,11,0,0,0.61808 -26994,7107:111,-71,11,0,0,0.612902 -26995,7107:110,-70,11,0,0,0.616042 -26996,7106:219,-69,11,0,0,0.619971 -26997,7106:218,-68,11,0,0,0.623595 -26998,7106:217,-67,11,0,0,0.625257 -26999,7106:216,-66,11,0,0,0.623595 -27000,7106:215,-65,11,0,0,0.623258 -27001,7106:114,-64,11,0,0,0.623764 -27002,7106:113,-63,11,0,0,0.621785 -27003,7106:112,-62,11,0,0,0.616478 -27004,7106:111,-61,11,0,0,0.61762 -27005,7106:110,-60,11,0,0,0.615385 -27006,7105:219,-59,11,0,0,0.613608 -27007,7105:218,-58,11,0,0,0.612902 -27008,7105:217,-57,11,0,0,0.610632 -27009,7105:216,-56,11,0,0,0.608407 -27010,7105:215,-55,11,0,0,0.607549 -27011,7105:114,-54,11,0,0,0.60777 -27012,7105:113,-53,11,0,0,0.60409 -27013,7105:112,-52,11,0,0,0.599856 -27014,7105:111,-51,11,0,0,0.596126 -27015,7105:110,-50,11,0,0,0.592957 -27016,7104:219,-49,11,0,0,0.590797 -27017,7104:218,-48,11,0,0,0.59184 -27018,7104:217,-47,11,0,0,0.590027 -27019,7104:216,-46,11,0,0,0.588585 -27020,7104:215,-45,11,0,0,0.584499 -27021,7104:114,-44,11,0,0,0.579975 -27022,7104:113,-43,11,0,0,0.578422 -27023,7104:112,-42,11,0,0,0.575514 -27024,7104:111,-41,11,0,0,0.576066 -27025,7104:110,-40,11,0,0,0.575012 -27026,7103:219,-39,11,0,0,0.57104 -27027,7103:218,-38,11,0,0,0.568446 -27028,7103:217,-37,11,0,0,0.568017 -27029,7103:216,-36,11,0,0,0.565595 -27030,7103:215,-35,11,0,0,0.56269 -27031,7103:114,-34,11,0,0,0.557855 -27032,7103:113,-33,11,0,0,0.554178 -27033,7103:112,-32,11,0,0,0.553162 -27034,7103:111,-31,11,0,0,0.55085 -27035,7103:110,-30,11,0,0,0.550189 -27036,7102:219,-29,11,0,0,0.546932 -27037,7102:218,-28,11,0,0,0.545506 -27038,7102:217,-27,11,0,0,0.544079 -27039,7102:216,-26,11,0,0,0.541377 -27040,7102:215,-25,11,0,0,0.537956 -27041,7102:114,-24,11,0,0,0.535784 -27042,7102:113,-23,11,0,0,0.532231 -27043,7102:112,-22,11,0,0,0.52852 -27044,7102:111,-21,11,0,0,0.522372 -27045,7102:110,-20,11,0,0,0.50754 -27046,7101:219,-19,11,0,0,0.517191 -27047,7101:218,-18,11,0,0,0.50659 -27048,7101:217,-17,11,0,0,0.49873 -27049,1103:217,37,11,0,0,0.64077 -27050,1103:218,38,11,0,0,0.650992 -27051,1103:219,39,11,0,0,0.65597 -27052,1104:110,40,11,0,0,0.650968 -27053,1105:218,58,11,0,0,0.572625 -27054,1105:219,59,11,0,0,0.572775 -27055,1106:110,60,11,0,0,0.588286 -27056,1106:111,61,11,0,0,0.587215 -27057,1106:112,62,11,0,0,0.592038 -27058,1106:113,63,11,0,0,0.589803 -27059,1106:114,64,11,0,0,0.591964 -27060,1106:215,65,11,0,0,0.587365 -27061,1106:216,66,11,0,0,0.592807 -27062,1106:217,67,11,0,0,0.599609 -27063,1106:218,68,11,0,0,0.619631 -27064,1106:219,69,11,0,0,0.619801 -27065,1107:110,70,11,0,0,0.61779 -27066,1107:111,71,11,0,0,0.625474 -27067,1107:112,72,11,0,0,0.630107 -27068,1108:217,87,11,0,0,0.597857 -27069,1108:218,88,11,0,0,0.598449 -27070,1108:219,89,11,0,0,0.611292 -27071,1109:110,90,11,0,0,0.621518 -27072,1109:111,91,11,0,0,0.631711 -27073,1109:112,92,11,0,0,0.639918 -27074,1109:113,93,11,0,0,0.633907 -27075,1110:217,107,11,0,0,0.519321 -27076,1110:218,108,11,0,0,0.535504 -27077,1110:219,109,11,0,0,0.526805 -27078,1111:110,110,11,0,0,0.501863 -27079,1111:111,111,11,0,0,0.495879 -27080,1111:112,112,11,0,0,0.55499 -27081,1111:113,113,11,0,0,0.558995 -27082,1111:114,114,11,0,0,0.571719 -27083,1111:215,115,11,0,0,0.576919 -27084,1111:216,116,11,0,0,0.584099 -27085,1111:217,117,11,0,0,0.591046 -27086,1111:218,118,11,0,0,0.594988 -27087,1111:219,119,11,0,0,0.600177 -27088,1112:110,120,11,0,0,0.604238 -27089,1112:111,121,11,0,0,0.60136 -27090,1112:112,122,11,0,0,0.58365 -27091,1112:113,123,11,0,0,0.581301 -27092,1112:114,124,11,0,0,0.579074 -27093,1112:215,125,11,0,0,0.577997 -27094,1112:216,126,11,0,0,0.576392 -27095,1112:217,127,11,0,0,0.580201 -27096,1112:218,128,11,0,0,0.584898 -27097,1112:219,129,11,0,0,0.586892 -27098,1113:110,130,11,0,0,0.588659 -27099,1113:111,131,11,0,0,0.596077 -27100,1113:112,132,11,0,0,0.597017 -27101,1113:113,133,11,0,0,0.598623 -27102,1113:114,134,11,0,0,0.597288 -27103,1113:215,135,11,0,0,0.606912 -27104,1113:216,136,11,0,0,0.607574 -27105,1113:217,137,11,0,0,0.607893 -27106,1113:218,138,11,0,0,0.616673 -27107,1113:219,139,11,0,0,0.622702 -27108,1114:110,140,11,0,0,0.621639 -27109,1114:111,141,11,0,0,0.621785 -27110,1114:112,142,11,0,0,0.621639 -27111,1114:113,143,11,0,0,0.621591 -27112,1114:114,144,11,0,0,0.625233 -27113,1114:215,145,11,0,0,0.623547 -27114,1114:216,146,11,0,0,0.621132 -27115,1114:217,147,11,0,0,0.624125 -27116,1114:218,148,11,0,0,0.624294 -27117,1114:219,149,11,0,0,0.624318 -27118,1115:110,150,11,0,0,0.624535 -27119,1115:111,151,11,0,0,0.62263 -27120,1115:112,152,11,0,0,0.622171 -27121,1115:113,153,11,0,0,0.622099 -27122,1115:114,154,11,0,0,0.622099 -27123,1115:215,155,11,0,0,0.62386 -27124,1115:216,156,11,0,0,0.623258 -27125,1115:217,157,11,0,0,0.622002 -27126,1115:218,158,11,0,0,0.620696 -27127,1115:219,159,11,0,0,0.619608 -27128,1116:110,160,11,0,0,0.618105 -27129,1116:111,161,11,0,0,0.617377 -27130,1116:112,162,11,0,0,0.618251 -27131,1116:113,163,11,0,0,0.618953 -27132,1116:114,164,11,0,0,0.617377 -27133,1116:215,165,11,0,0,0.611657 -27134,1116:216,166,11,0,0,0.611121 -27135,1116:217,167,11,0,0,0.613778 -27136,1116:218,168,11,0,0,0.613828 -27137,1116:219,169,11,0,0,0.611999 -27138,1117:110,170,11,0,0,0.610192 -27139,1117:111,171,11,0,0,0.609117 -27140,1117:112,172,11,0,0,0.6063 -27141,1117:113,173,11,0,0,0.605515 -27142,1117:114,174,11,0,0,0.602049 -27143,1117:215,175,11,0,0,0.601705 -27144,1117:216,176,11,0,0,0.600201 -27145,1117:217,177,11,0,0,0.594518 -27146,1117:218,178,11,0,0,0.597437 -27147,1117:219,179,11,0,0,0.598128 -27148,1118:110,180,11,0,0,0.594419 -27149,7118:120,-180,12,0,0,0.583225 -27150,7117:229,-179,12,0,0,0.584548 -27151,7117:228,-178,12,0,0,0.582526 -27152,7117:227,-177,12,0,0,0.579975 -27153,7117:226,-176,12,0,0,0.579023 -27154,7117:225,-175,12,0,0,0.576893 -27155,7117:124,-174,12,0,0,0.575966 -27156,7117:123,-173,12,0,0,0.573605 -27157,7117:122,-172,12,0,0,0.571014 -27158,7117:121,-171,12,0,0,0.568017 -27159,7117:120,-170,12,0,0,0.563499 -27160,7116:229,-169,12,0,0,0.561704 -27161,7116:228,-168,12,0,0,0.560641 -27162,7116:227,-167,12,0,0,0.571518 -27163,7116:226,-166,12,0,0,0.572348 -27164,7116:225,-165,12,0,0,0.559071 -27165,7116:124,-164,12,0,0,0.558843 -27166,7116:123,-163,12,0,0,0.565166 -27167,7116:122,-162,12,0,0,0.571493 -27168,7116:121,-161,12,0,0,0.569051 -27169,7116:120,-160,12,0,0,0.558514 -27170,7115:229,-159,12,0,0,0.560388 -27171,7115:227,-157,12,0,0,0.554457 -27172,7115:226,-156,12,0,0,0.554762 -27173,7115:225,-155,12,0,0,0.555853 -27174,7115:124,-154,12,0,0,0.552374 -27175,7115:123,-153,12,0,0,0.547136 -27176,7115:122,-152,12,0,0,0.54492 -27177,7115:121,-151,12,0,0,0.539335 -27178,7115:120,-150,12,0,0,0.537394 -27179,7114:229,-149,12,0,0,0.532027 -27180,7114:228,-148,12,0,0,0.526855 -27181,7114:227,-147,12,0,0,0.524627 -27182,7114:226,-146,12,0,0,0.520603 -27183,7114:225,-145,12,0,0,0.514318 -27184,7114:124,-144,12,0,0,0.513804 -27185,7114:123,-143,12,0,0,0.512084 -27186,7114:122,-142,12,0,0,0.511596 -27187,7114:121,-141,12,0,0,0.505177 -27188,7114:120,-140,12,0,0,0.504535 -27189,7113:229,-139,12,0,0,0.495571 -27190,7113:228,-138,12,0,0,0.495108 -27191,7113:227,-137,12,0,0,0.486481 -27192,7113:226,-136,12,0,0,0.49349 -27193,7113:225,-135,12,0,0,0.495879 -27194,7113:124,-134,12,0,0,0.489895 -27195,7113:123,-133,12,0,0,0.477016 -27196,7113:122,-132,12,0,0,0.471226 -27197,7113:121,-131,12,0,0,0.47453 -27198,7113:120,-130,12,0,0,0.471944 -27199,7112:229,-129,12,0,0,0.467593 -27200,7112:228,-128,12,0,0,0.46703 -27201,7112:227,-127,12,0,0,0.462302 -27203,7112:225,-125,12,0,0,0.461945 -27204,7112:124,-124,12,0,0,0.460745 -27205,7112:123,-123,12,0,0,0.459162 -27206,7112:122,-122,12,0,0,0.461587 -27207,7112:121,-121,12,0,0,0.460872 -27208,7112:120,-120,12,0,0,0.465828 -27209,7111:229,-119,12,0,0,0.4679 -27210,7111:228,-118,12,0,0,0.474812 -27211,7111:227,-117,12,0,0,0.479092 -27212,7111:226,-116,12,0,0,0.489665 -27213,7111:225,-115,12,0,0,0.501273 -27214,7111:124,-114,12,0,0,0.517397 -27215,7111:123,-113,12,0,0,0.528443 -27216,7111:122,-112,12,0,0,0.528111 -27217,7111:121,-111,12,0,0,0.520372 -27218,7111:120,-110,12,0,0,0.536781 -27219,7110:229,-109,12,0,0,0.58395 -27220,7110:228,-108,12,0,0,0.586319 -27221,7110:227,-107,12,0,0,0.608113 -27222,7110:226,-106,12,0,0,0.60799 -27223,7109:227,-97,12,0,0,0.576191 -27224,7109:226,-96,12,0,0,0.579149 -27225,7109:225,-95,12,0,0,0.582226 -27226,7109:124,-94,12,0,0,0.584898 -27227,7109:123,-93,12,0,0,0.583799 -27228,7109:122,-92,12,0,0,0.59189 -27229,7109:121,-91,12,0,0,0.585247 -27230,7109:120,-90,12,0,0,0.580376 -27231,7108:229,-89,12,0,0,0.5836 -27232,7108:226,-86,12,0,0,0.631782 -27233,7108:225,-85,12,0,0,0.613608 -27234,7108:124,-84,12,0,0,0.611145 -27235,7108:122,-82,12,0,0,0.612755 -27236,7108:121,-81,12,0,0,0.613754 -27237,7108:120,-80,12,0,0,0.615895 -27238,7107:229,-79,12,0,0,0.592733 -27239,7107:226,-76,12,0,0,0.610803 -27240,7107:225,-75,12,0,0,0.606079 -27241,7107:124,-74,12,0,0,0.612585 -27242,7107:123,-73,12,0,0,0.612975 -27243,7107:122,-72,12,0,0,0.604606 -27244,7107:121,-71,12,0,0,0.606079 -27245,7107:120,-70,12,0,0,0.612194 -27246,7106:229,-69,12,0,0,0.612682 -27247,7106:228,-68,12,0,0,0.613194 -27248,7106:227,-67,12,0,0,0.61745 -27249,7106:226,-66,12,0,0,0.618274 -27250,7106:225,-65,12,0,0,0.614582 -27251,7106:124,-64,12,0,0,0.614947 -27252,7106:123,-63,12,0,0,0.615385 -27253,7106:122,-62,12,0,0,0.613267 -27254,7106:121,-61,12,0,0,0.613097 -27255,7106:120,-60,12,0,0,0.613511 -27256,7105:229,-59,12,0,0,0.611047 -27257,7105:228,-58,12,0,0,0.607672 -27258,7105:227,-57,12,0,0,0.606962 -27259,7105:226,-56,12,0,0,0.604434 -27260,7105:225,-55,12,0,0,0.60232 -27261,7105:124,-54,12,0,0,0.600744 -27262,7105:123,-53,12,0,0,0.59882 -27263,7105:122,-52,12,0,0,0.596597 -27264,7105:121,-51,12,0,0,0.59583 -27265,7105:120,-50,12,0,0,0.593204 -27266,7104:229,-49,12,0,0,0.588012 -27267,7104:228,-48,12,0,0,0.585646 -27268,7104:227,-47,12,0,0,0.58572 -27269,7104:226,-46,12,0,0,0.583725 -27270,7104:225,-45,12,0,0,0.580125 -27271,7104:124,-44,12,0,0,0.575765 -27272,7104:123,-43,12,0,0,0.575765 -27273,7104:122,-42,12,0,0,0.572046 -27274,7104:121,-41,12,0,0,0.570461 -27275,7104:120,-40,12,0,0,0.568572 -27276,7103:229,-39,12,0,0,0.564485 -27277,7103:228,-38,12,0,0,0.563296 -27278,7103:227,-37,12,0,0,0.562209 -27279,7103:226,-36,12,0,0,0.560515 -27280,7103:225,-35,12,0,0,0.558261 -27281,7103:124,-34,12,0,0,0.558236 -27282,7103:123,-33,12,0,0,0.554482 -27283,7103:122,-32,12,0,0,0.549909 -27284,7103:121,-31,12,0,0,0.546779 -27285,7103:120,-30,12,0,0,0.543748 -27286,7102:229,-29,12,0,0,0.541708 -27287,7102:228,-28,12,0,0,0.539948 -27288,7102:227,-27,12,0,0,0.539156 -27289,7102:226,-26,12,0,0,0.536986 -27290,7102:225,-25,12,0,0,0.534456 -27291,7102:124,-24,12,0,0,0.531259 -27292,7102:123,-23,12,0,0,0.527214 -27293,7102:122,-22,12,0,0,0.522167 -27294,7102:121,-21,12,0,0,0.517551 -27295,7102:120,-20,12,0,0,0.505691 -27296,7101:229,-19,12,0,0,0.500066 -27297,7101:228,-18,12,0,0,0.487739 -27298,1103:227,37,12,0,0,0.632427 -27299,1103:228,38,12,0,0,0.647271 -27300,1106:120,60,12,0,0,0.57985 -27301,1106:121,61,12,0,0,0.58724 -27302,1106:122,62,12,0,0,0.584548 -27303,1106:123,63,12,0,0,0.586144 -27304,1106:124,64,12,0,0,0.579674 -27305,1106:225,65,12,0,0,0.58065 -27306,1106:226,66,12,0,0,0.588808 -27307,1106:227,67,12,0,0,0.603353 -27308,1106:228,68,12,0,0,0.609508 -27309,1106:229,69,12,0,0,0.61256 -27310,1107:122,72,12,0,0,0.617911 -28933,7214:104,-144,20,0,0,0.41528 -27311,1108:228,88,12,0,0,0.582651 -27312,1108:229,89,12,0,0,0.585297 -27313,1109:120,90,12,0,0,0.585771 -27314,1109:121,91,12,0,0,0.573982 -27315,1109:122,92,12,0,0,0.606324 -27316,1110:229,109,12,0,0,0.493105 -27317,1111:120,110,12,0,0,0.47699 -27318,1111:122,112,12,0,0,0.486943 -27319,1111:123,113,12,0,0,0.506924 -27320,1111:124,114,12,0,0,0.524114 -27321,1111:225,115,12,0,0,0.542626 -27322,1111:226,116,12,0,0,0.567084 -27323,1111:227,117,12,0,0,0.575062 -27324,1111:228,118,12,0,0,0.583999 -27325,1111:229,119,12,0,0,0.576417 -27326,1112:120,120,12,0,0,0.572926 -27327,1112:121,121,12,0,0,0.569655 -27328,1112:122,122,12,0,0,0.561375 -27329,1112:123,123,12,0,0,0.556638 -27330,1112:124,124,12,0,0,0.56231 -27331,1112:225,125,12,0,0,0.560135 -27332,1112:226,126,12,0,0,0.5594 -27333,1112:227,127,12,0,0,0.561755 -27334,1112:228,128,12,0,0,0.56958 -27335,1112:229,129,12,0,0,0.576442 -27336,1113:120,130,12,0,0,0.577044 -27337,1113:121,131,12,0,0,0.575639 -27338,1113:122,132,12,0,0,0.580926 -27339,1113:123,133,12,0,0,0.587291 -27340,1113:124,134,12,0,0,0.586618 -27341,1113:225,135,12,0,0,0.593353 -27342,1113:226,136,12,0,0,0.599609 -27343,1113:227,137,12,0,0,0.608799 -27344,1113:228,138,12,0,0,0.60941 -27345,1113:229,139,12,0,0,0.60657 -27346,1114:120,140,12,0,0,0.61373 -27347,1114:121,141,12,0,0,0.611633 -27348,1114:122,142,12,0,0,0.613535 -27349,1114:123,143,12,0,0,0.610827 -27350,1114:124,144,12,0,0,0.612926 -27351,1114:225,145,12,0,0,0.617134 -27352,1114:226,146,12,0,0,0.615798 -27353,1114:227,147,12,0,0,0.613973 -27354,1114:228,148,12,0,0,0.616211 -27355,1114:229,149,12,0,0,0.618032 -27356,1115:120,150,12,0,0,0.619801 -27357,1115:121,151,12,0,0,0.617596 -27358,1115:122,152,12,0,0,0.617887 -27359,1115:123,153,12,0,0,0.616139 -27360,1115:124,154,12,0,0,0.61728 -27361,1115:225,155,12,0,0,0.61626 -27362,1115:226,156,12,0,0,0.615215 -27363,1115:227,157,12,0,0,0.615482 -27364,1115:228,158,12,0,0,0.613584 -27365,1115:229,159,12,0,0,0.613998 -27366,1116:120,160,12,0,0,0.613437 -27367,1116:121,161,12,0,0,0.611219 -27368,1116:122,162,12,0,0,0.609826 -27369,1116:123,163,12,0,0,0.610437 -27370,1116:124,164,12,0,0,0.610999 -27371,1116:225,165,12,0,0,0.606496 -27372,1116:226,166,12,0,0,0.607182 -27373,1116:227,167,12,0,0,0.606472 -27374,1116:228,168,12,0,0,0.607133 -27375,1116:229,169,12,0,0,0.606447 -27376,1117:120,170,12,0,0,0.600103 -27377,1117:121,171,12,0,0,0.596126 -27378,1117:122,172,12,0,0,0.598746 -27379,1117:123,173,12,0,0,0.598968 -27380,1117:124,174,12,0,0,0.597956 -27381,1117:225,175,12,0,0,0.595087 -27382,1117:226,176,12,0,0,0.589952 -27383,1117:227,177,12,0,0,0.584573 -27384,1117:228,178,12,0,0,0.582501 -27385,1117:229,179,12,0,0,0.582876 -27386,1118:120,180,12,0,0,0.583225 -27387,7118:130,-180,13,0,0,0.576392 -27388,7117:239,-179,13,0,0,0.573052 -27389,7117:238,-178,13,0,0,0.571467 -27390,7117:237,-177,13,0,0,0.569428 -27391,7117:236,-176,13,0,0,0.568496 -27392,7117:235,-175,13,0,0,0.568521 -27393,7117:134,-174,13,0,0,0.56456 -27394,7117:133,-173,13,0,0,0.563625 -27395,7117:132,-172,13,0,0,0.561755 -27396,7117:131,-171,13,0,0,0.559805 -27397,7117:130,-170,13,0,0,0.558666 -27398,7116:239,-169,13,0,0,0.550901 -27399,7116:238,-168,13,0,0,0.552756 -27400,7116:237,-167,13,0,0,0.560009 -27401,7116:236,-166,13,0,0,0.552374 -27402,7116:235,-165,13,0,0,0.545659 -27403,7116:134,-164,13,0,0,0.544869 -27404,7116:133,-163,13,0,0,0.550672 -27405,7116:132,-162,13,0,0,0.548307 -27406,7116:131,-161,13,0,0,0.548968 -27407,7116:130,-160,13,0,0,0.548332 -27408,7115:239,-159,13,0,0,0.545022 -27409,7115:238,-158,13,0,0,0.547339 -27410,7115:237,-157,13,0,0,0.547798 -27411,7115:236,-156,13,0,0,0.54548 -27412,7115:235,-155,13,0,0,0.541912 -27413,7115:134,-154,13,0,0,0.540406 -27414,7115:133,-153,13,0,0,0.536449 -27415,7115:132,-152,13,0,0,0.532001 -27416,7115:131,-151,13,0,0,0.527342 -27417,7115:130,-150,13,0,0,0.526548 -27418,7114:239,-149,13,0,0,0.525165 -27419,7114:238,-148,13,0,0,0.521295 -27420,7114:237,-147,13,0,0,0.516165 -27421,7114:236,-146,13,0,0,0.512084 -27422,7114:235,-145,13,0,0,0.507411 -27423,7114:134,-144,13,0,0,0.502891 -27424,7114:133,-143,13,0,0,0.499809 -27425,7114:132,-142,13,0,0,0.49498 -27426,7114:131,-141,13,0,0,0.489665 -27427,7114:130,-140,13,0,0,0.491436 -27428,7113:239,-139,13,0,0,0.484428 -27429,7113:238,-138,13,0,0,0.478836 -27430,7113:237,-137,13,0,0,0.469 -27431,7113:236,-136,13,0,0,0.468181 -27432,7113:235,-135,13,0,0,0.464295 -27433,7113:134,-134,13,0,0,0.466493 -27434,7113:133,-133,13,0,0,0.456306 -27435,7113:132,-132,13,0,0,0.454955 -27436,7113:131,-131,13,0,0,0.450577 -27437,7113:130,-130,13,0,0,0.445597 -27438,7112:239,-129,13,0,0,0.450017 -27439,7112:238,-128,13,0,0,0.44801 -27440,7112:237,-127,13,0,0,0.444176 -27441,7112:236,-126,13,0,0,0.447679 -27442,7112:235,-125,13,0,0,0.448162 -27443,7112:134,-124,13,0,0,0.448568 -27444,7112:133,-123,13,0,0,0.446892 -27445,7112:132,-122,13,0,0,0.446181 -27446,7112:131,-121,13,0,0,0.443187 -27447,7112:130,-120,13,0,0,0.444709 -27448,7111:239,-119,13,0,0,0.447247 -27449,7111:238,-118,13,0,0,0.458014 -27450,7111:237,-117,13,0,0,0.457708 -27451,7111:236,-116,13,0,0,0.463656 -27452,7111:235,-115,13,0,0,0.476401 -27453,7111:134,-114,13,0,0,0.485557 -27454,7111:133,-113,13,0,0,0.489818 -27455,7111:132,-112,13,0,0,0.504253 -27456,7111:131,-111,13,0,0,0.542396 -27457,7111:130,-110,13,0,0,0.571895 -27458,7110:239,-109,13,0,0,0.568395 -27459,7110:238,-108,13,0,0,0.581226 -27460,7110:237,-107,13,0,0,0.592832 -27461,7109:237,-97,13,0,0,0.571995 -27462,7109:236,-96,13,0,0,0.573932 -27463,7109:235,-95,13,0,0,0.576191 -27464,7109:134,-94,13,0,0,0.580401 -27465,7109:133,-93,13,0,0,0.581026 -27466,7109:132,-92,13,0,0,0.580576 -27467,7109:131,-91,13,0,0,0.57955 -27468,7109:130,-90,13,0,0,0.578397 -27469,7108:239,-89,13,0,0,0.581826 -27470,7108:238,-88,13,0,0,0.593502 -27471,7108:237,-87,13,0,0,0.622967 -27472,7108:236,-86,13,0,0,0.61502 -27473,7108:235,-85,13,0,0,0.607844 -27474,7108:134,-84,13,0,0,0.607354 -27475,7107:239,-79,13,0,0,0.602467 -27476,7107:238,-78,13,0,0,0.56779 -27477,7107:237,-77,13,0,0,0.569403 -27478,7107:236,-76,13,0,0,0.586019 -27479,7107:235,-75,13,0,0,0.596843 -27480,7107:134,-74,13,0,0,0.595756 -27481,7107:133,-73,13,0,0,0.598425 -27482,7107:132,-72,13,0,0,0.600793 -27483,7107:131,-71,13,0,0,0.603304 -27484,7107:130,-70,13,0,0,0.606201 -27485,7106:239,-69,13,0,0,0.604533 -27486,7106:238,-68,13,0,0,0.600621 -27487,7106:237,-67,13,0,0,0.601852 -27488,7106:236,-66,13,0,0,0.601803 -27489,7106:235,-65,13,0,0,0.60025 -27490,7106:134,-64,13,0,0,0.601261 -27491,7106:133,-63,13,0,0,0.602049 -27492,7106:132,-62,13,0,0,0.605343 -27493,7106:131,-61,13,0,0,0.606594 -27494,7106:130,-60,13,0,0,0.603525 -27495,7105:239,-59,13,0,0,0.600768 -27496,7105:238,-58,13,0,0,0.603378 -27497,7105:237,-57,13,0,0,0.605171 -27498,7105:236,-56,13,0,0,0.603083 -27499,7105:235,-55,13,0,0,0.598277 -27500,7105:134,-54,13,0,0,0.599042 -27501,7105:133,-53,13,0,0,0.595434 -27502,7105:132,-52,13,0,0,0.591616 -27503,7105:131,-51,13,0,0,0.590549 -27504,7105:130,-50,13,0,0,0.584324 -27505,7104:239,-49,13,0,0,0.582526 -27506,7104:238,-48,13,0,0,0.581126 -27507,7104:237,-47,13,0,0,0.57717 -27508,7104:236,-46,13,0,0,0.575488 -27509,7104:235,-45,13,0,0,0.573781 -27510,7104:134,-44,13,0,0,0.572373 -27511,7104:133,-43,13,0,0,0.571116 -27512,7104:132,-42,13,0,0,0.566529 -27513,7104:131,-41,13,0,0,0.563322 -27514,7104:130,-40,13,0,0,0.561349 -27515,7103:239,-39,13,0,0,0.557932 -27516,7103:238,-38,13,0,0,0.554914 -27517,7103:237,-37,13,0,0,0.551078 -27518,7103:236,-36,13,0,0,0.549833 -27519,7103:235,-35,13,0,0,0.550519 -27520,7103:134,-34,13,0,0,0.549732 -27521,7103:133,-33,13,0,0,0.544512 -27522,7103:132,-32,13,0,0,0.539641 -27523,7103:131,-31,13,0,0,0.539514 -27524,7103:130,-30,13,0,0,0.538543 -27525,7102:239,-29,13,0,0,0.536244 -27526,7102:238,-28,13,0,0,0.534277 -27527,7102:237,-27,13,0,0,0.533894 -27528,7102:236,-26,13,0,0,0.532717 -27529,7102:235,-25,13,0,0,0.531361 -27530,7102:134,-24,13,0,0,0.528315 -27531,7102:133,-23,13,0,0,0.525754 -27532,7102:132,-22,13,0,0,0.519474 -27533,7102:131,-21,13,0,0,0.508772 -27534,7102:130,-20,13,0,0,0.505691 -27535,7101:239,-19,13,0,0,0.485198 -27536,7101:238,-18,13,0,0,0.474838 -27537,7101:237,-17,13,0,0,0.457581 -27538,1103:236,36,13,0,0,0.588311 -27539,1103:237,37,13,0,0,0.622267 -27540,1103:238,38,13,0,0,0.629197 -27541,1106:130,60,13,0,0,0.570864 -27542,1106:131,61,13,0,0,0.57965 -27543,1106:132,62,13,0,0,0.576091 -27544,1106:133,63,13,0,0,0.575363 -27545,1106:134,64,13,0,0,0.576417 -27546,1106:235,65,13,0,0,0.579074 -27547,1106:236,66,13,0,0,0.590499 -27548,1106:237,67,13,0,0,0.596498 -27549,1106:238,68,13,0,0,0.581626 -27550,1111:237,117,13,0,0,0.489434 -27551,1111:238,118,13,0,0,0.498268 -27552,1111:239,119,13,0,0,0.522115 -27553,1112:130,120,13,0,0,0.550951 -27554,1112:132,122,13,0,0,0.56226 -27555,1112:133,123,13,0,0,0.551282 -27556,1112:134,124,13,0,0,0.553898 -27557,1112:235,125,13,0,0,0.548866 -27558,1112:236,126,13,0,0,0.550646 -27559,1112:237,127,13,0,0,0.561046 -27560,1112:238,128,13,0,0,0.568169 -27561,1112:239,129,13,0,0,0.564485 -27562,1113:130,130,13,0,0,0.558615 -27563,1113:131,131,13,0,0,0.557779 -27564,1113:132,132,13,0,0,0.568798 -27565,1113:133,133,13,0,0,0.579049 -27566,1113:134,134,13,0,0,0.573253 -27567,1113:235,135,13,0,0,0.572172 -27568,1113:236,136,13,0,0,0.5837 -27569,1113:237,137,13,0,0,0.592485 -27570,1113:238,138,13,0,0,0.589082 -27571,1113:239,139,13,0,0,0.594617 -27572,1114:130,140,13,0,0,0.597066 -27573,1114:131,141,13,0,0,0.601433 -27574,1114:132,142,13,0,0,0.603648 -27575,1114:133,143,13,0,0,0.603574 -27576,1114:134,144,13,0,0,0.605171 -27577,1114:235,145,13,0,0,0.602443 -27578,1114:236,146,13,0,0,0.604065 -27579,1114:237,147,13,0,0,0.604287 -27580,1114:238,148,13,0,0,0.607329 -27581,1114:239,149,13,0,0,0.609483 -27582,1115:130,150,13,0,0,0.609043 -27583,1115:131,151,13,0,0,0.60804 -27584,1115:132,152,13,0,0,0.603624 -27585,1115:133,153,13,0,0,0.601852 -27586,1115:134,154,13,0,0,0.602984 -27587,1115:235,155,13,0,0,0.602836 -27588,1115:236,156,13,0,0,0.605269 -27589,1115:237,157,13,0,0,0.60728 -27590,1115:238,158,13,0,0,0.609556 -27591,1115:239,159,13,0,0,0.606472 -27592,1116:130,160,13,0,0,0.607697 -27593,1116:131,161,13,0,0,0.605244 -27594,1116:132,162,13,0,0,0.60657 -27595,1116:133,163,13,0,0,0.605441 -27596,1116:134,164,13,0,0,0.604631 -27597,1116:235,165,13,0,0,0.601581 -27598,1116:236,166,13,0,0,0.601286 -27599,1116:237,167,13,0,0,0.598326 -27600,1116:238,168,13,0,0,0.596745 -27601,1116:239,169,13,0,0,0.594096 -27602,1117:130,170,13,0,0,0.595929 -27603,1117:131,171,13,0,0,0.586917 -27604,1117:132,172,13,0,0,0.588236 -27605,1117:133,173,13,0,0,0.588311 -27606,1117:134,174,13,0,0,0.579123 -27607,1117:235,175,13,0,0,0.581151 -27608,1117:236,176,13,0,0,0.583025 -27609,1117:237,177,13,0,0,0.586294 -27610,1117:238,178,13,0,0,0.5835 -27611,1117:239,179,13,0,0,0.58025 -27612,1118:130,180,13,0,0,0.576392 -27613,7118:140,-180,14,0,0,0.567311 -27614,7117:249,-179,14,0,0,0.565191 -27615,7117:248,-178,14,0,0,0.549782 -27616,7117:247,-177,14,0,0,0.558995 -27617,7117:246,-176,14,0,0,0.555877 -27618,7117:245,-175,14,0,0,0.560565 -27619,7117:144,-174,14,0,0,0.548764 -27620,7117:143,-173,14,0,0,0.549732 -27621,7117:142,-172,14,0,0,0.548663 -27622,7117:141,-171,14,0,0,0.551383 -27623,7117:140,-170,14,0,0,0.546601 -27624,7116:249,-169,14,0,0,0.545277 -27625,7116:248,-168,14,0,0,0.539003 -27626,7116:247,-167,14,0,0,0.534865 -27627,7116:246,-166,14,0,0,0.536526 -27628,7116:245,-165,14,0,0,0.533663 -27629,7116:144,-164,14,0,0,0.531156 -27630,7116:143,-163,14,0,0,0.530491 -27631,7116:142,-162,14,0,0,0.532052 -27632,7116:141,-161,14,0,0,0.533075 -27633,7116:140,-160,14,0,0,0.531617 -27634,7115:249,-159,14,0,0,0.529953 -27635,7115:248,-158,14,0,0,0.530491 -27636,7115:247,-157,14,0,0,0.530491 -27637,7115:246,-156,14,0,0,0.527957 -27638,7115:245,-155,14,0,0,0.525294 -27639,7115:144,-154,14,0,0,0.523141 -27640,7115:143,-153,14,0,0,0.5225 -27641,7115:142,-152,14,0,0,0.522372 -27642,7115:141,-151,14,0,0,0.519602 -27643,7115:140,-150,14,0,0,0.517961 -27644,7114:249,-149,14,0,0,0.516755 -27645,7114:248,-148,14,0,0,0.514574 -27646,7114:247,-147,14,0,0,0.514215 -27647,7114:246,-146,14,0,0,0.509209 -27648,7114:245,-145,14,0,0,0.502044 -27649,7114:144,-144,14,0,0,0.496753 -27650,7114:143,-143,14,0,0,0.493953 -27651,7114:142,-142,14,0,0,0.48833 -27652,7114:141,-141,14,0,0,0.485916 -27653,7114:140,-140,14,0,0,0.483376 -27654,7113:249,-139,14,0,0,0.474172 -27655,7113:248,-138,14,0,0,0.466928 -27656,7113:247,-137,14,0,0,0.461919 -27657,7113:246,-136,14,0,0,0.460592 -27658,7113:245,-135,14,0,0,0.453351 -27659,7113:144,-134,14,0,0,0.449941 -27660,7113:143,-133,14,0,0,0.445546 -27661,7113:142,-132,14,0,0,0.443744 -27662,7113:141,-131,14,0,0,0.436403 -27663,7113:140,-130,14,0,0,0.434332 -27664,7112:249,-129,14,0,0,0.434358 -27665,7112:248,-128,14,0,0,0.432112 -27666,7112:247,-127,14,0,0,0.431582 -27667,7112:246,-126,14,0,0,0.43128 -27668,7112:245,-125,14,0,0,0.432566 -27669,7112:144,-124,14,0,0,0.430222 -27670,7112:143,-123,14,0,0,0.430852 -27671,7112:142,-122,14,0,0,0.428888 -27672,7112:141,-121,14,0,0,0.432339 -27673,7112:140,-120,14,0,0,0.430978 -27674,7111:249,-119,14,0,0,0.433802 -27675,7111:248,-118,14,0,0,0.435493 -27676,7111:247,-117,14,0,0,0.448975 -27677,7111:246,-116,14,0,0,0.45386 -27678,7111:245,-115,14,0,0,0.45442 -27679,7111:144,-114,14,0,0,0.467081 -27680,7111:143,-113,14,0,0,0.531924 -27681,7111:142,-112,14,0,0,0.554051 -27682,7111:140,-110,14,0,0,0.568748 -27683,7110:249,-109,14,0,0,0.571518 -27684,7110:248,-108,14,0,0,0.568899 -27685,7109:247,-97,14,0,0,0.567815 -27686,7109:246,-96,14,0,0,0.561122 -27687,7109:245,-95,14,0,0,0.562817 -27688,7109:144,-94,14,0,0,0.568546 -27689,7109:143,-93,14,0,0,0.571518 -27690,7109:142,-92,14,0,0,0.572247 -27691,7109:141,-91,14,0,0,0.569554 -27692,7109:140,-90,14,0,0,0.566251 -27693,7108:249,-89,14,0,0,0.566529 -27694,7108:248,-88,14,0,0,0.586991 -27695,7108:247,-87,14,0,0,0.626508 -27696,7108:246,-86,14,0,0,0.60603 -27697,7108:245,-85,14,0,0,0.607549 -27698,7108:144,-84,14,0,0,0.588236 -27699,7108:143,-83,14,0,0,0.568597 -27700,7108:142,-82,14,0,0,0.572499 -27701,7108:141,-81,14,0,0,0.581801 -27702,7108:140,-80,14,0,0,0.606472 -27703,7107:249,-79,14,0,0,0.544818 -27704,7107:248,-78,14,0,0,0.548714 -27705,7107:247,-77,14,0,0,0.556258 -27706,7107:246,-76,14,0,0,0.591219 -27707,7107:245,-75,14,0,0,0.592782 -27708,7107:144,-74,14,0,0,0.588037 -27709,7107:143,-73,14,0,0,0.586892 -27710,7107:142,-72,14,0,0,0.585521 -27711,7107:141,-71,14,0,0,0.589927 -27712,7107:140,-70,14,0,0,0.586743 -27713,7106:249,-69,14,0,0,0.585222 -27714,7106:248,-68,14,0,0,0.58607 -27715,7106:247,-67,14,0,0,0.586219 -27716,7106:246,-66,14,0,0,0.585446 -27717,7106:245,-65,14,0,0,0.588137 -27718,7106:144,-64,14,0,0,0.586019 -27719,7106:143,-63,14,0,0,0.586717 -27720,7106:142,-62,14,0,0,0.585322 -27721,7106:141,-61,14,0,0,0.583974 -27722,7106:140,-60,14,0,0,0.585546 -27723,7105:249,-59,14,0,0,0.588435 -27724,7105:248,-58,14,0,0,0.587913 -27725,7105:247,-57,14,0,0,0.590077 -27726,7105:246,-56,14,0,0,0.588684 -27727,7105:245,-55,14,0,0,0.591046 -27728,7105:144,-54,14,0,0,0.591815 -27729,7105:143,-53,14,0,0,0.586568 -27730,7105:142,-52,14,0,0,0.58375 -27731,7105:141,-51,14,0,0,0.579574 -27732,7105:140,-50,14,0,0,0.573605 -27733,7104:249,-49,14,0,0,0.572096 -27734,7104:248,-48,14,0,0,0.571442 -27735,7104:247,-47,14,0,0,0.570562 -27736,7104:246,-46,14,0,0,0.566832 -27737,7104:245,-45,14,0,0,0.565519 -27738,7104:144,-44,14,0,0,0.565848 -27739,7104:143,-43,14,0,0,0.562817 -27740,7104:142,-42,14,0,0,0.55745 -27741,7104:141,-41,14,0,0,0.553924 -27742,7104:140,-40,14,0,0,0.5524 -27743,7103:249,-39,14,0,0,0.549833 -27744,7103:248,-38,14,0,0,0.54385 -27745,7103:247,-37,14,0,0,0.543213 -27746,7103:246,-36,14,0,0,0.542218 -27747,7103:245,-35,14,0,0,0.541147 -27748,7103:144,-34,14,0,0,0.539514 -27749,7103:143,-33,14,0,0,0.536117 -27750,7103:142,-32,14,0,0,0.532308 -27751,7103:141,-31,14,0,0,0.528597 -27752,7103:140,-30,14,0,0,0.52806 -27753,7102:249,-29,14,0,0,0.524166 -27754,7102:248,-28,14,0,0,0.523295 -27755,7102:247,-27,14,0,0,0.524909 -27756,7102:246,-26,14,0,0,0.525934 -27757,7102:245,-25,14,0,0,0.523833 -27758,7102:144,-24,14,0,0,0.521372 -27759,7102:143,-23,14,0,0,0.521962 -27760,7102:142,-22,14,0,0,0.517909 -27761,7102:141,-21,14,0,0,0.509671 -27762,7102:140,-20,14,0,0,0.50171 -27763,7101:249,-19,14,0,0,0.495776 -27764,7101:248,-18,14,0,0,0.487431 -27765,7101:247,-17,14,0,0,0.46174 -27766,7101:246,-16,14,0,0,0.43509 -27767,1103:246,36,14,0,0,0.594121 -27768,1103:247,37,14,0,0,0.61808 -27769,1105:142,52,14,0,0,0.551409 -27770,1105:143,53,14,0,0,0.545557 -27771,1105:247,57,14,0,0,0.55712 -27772,1105:248,58,14,0,0,0.561325 -27773,1105:249,59,14,0,0,0.564863 -27774,1106:140,60,14,0,0,0.577144 -27775,1106:141,61,14,0,0,0.570209 -27776,1106:142,62,14,0,0,0.570134 -27777,1106:143,63,14,0,0,0.575012 -27778,1106:144,64,14,0,0,0.579123 -27779,1106:245,65,14,0,0,0.582601 -27780,1106:246,66,14,0,0,0.585122 -27781,1106:247,67,14,0,0,0.553924 -27782,1111:249,119,14,0,0,0.480349 -27783,1112:140,120,14,0,0,0.540432 -27784,1112:142,122,14,0,0,0.559021 -27785,1112:143,123,14,0,0,0.543595 -27786,1112:245,125,14,0,0,0.533663 -27787,1112:246,126,14,0,0,0.539641 -27788,1112:247,127,14,0,0,0.55113 -27789,1112:248,128,14,0,0,0.553569 -27790,1112:249,129,14,0,0,0.553162 -27791,1113:140,130,14,0,0,0.547161 -27792,1113:141,131,14,0,0,0.540636 -27793,1113:142,132,14,0,0,0.539973 -27794,1113:143,133,14,0,0,0.557577 -27795,1113:144,134,14,0,0,0.567033 -27796,1113:245,135,14,0,0,0.564509 -27797,1113:246,136,14,0,0,0.57182 -27798,1113:247,137,14,0,0,0.57041 -27799,1113:248,138,14,0,0,0.57041 -27800,1113:249,139,14,0,0,0.576116 -27801,1114:140,140,14,0,0,0.585147 -27802,1114:141,141,14,0,0,0.582551 -27803,1114:142,142,14,0,0,0.581601 -27804,1114:143,143,14,0,0,0.589505 -27805,1114:144,144,14,0,0,0.594096 -27806,1114:245,145,14,0,0,0.590126 -27807,1114:246,146,14,0,0,0.589828 -27808,1114:247,147,14,0,0,0.596473 -27809,1114:248,148,14,0,0,0.59998 -27810,1114:249,149,14,0,0,0.600891 -27811,1115:140,150,14,0,0,0.598128 -27812,1115:141,151,14,0,0,0.593477 -27813,1115:142,152,14,0,0,0.590325 -27814,1115:143,153,14,0,0,0.587465 -27815,1115:144,154,14,0,0,0.58953 -27816,1115:245,155,14,0,0,0.588336 -27817,1115:246,156,14,0,0,0.593477 -27818,1115:247,157,14,0,0,0.594196 -27819,1115:248,158,14,0,0,0.591517 -27820,1115:249,159,14,0,0,0.590996 -27821,1116:140,160,14,0,0,0.587714 -27822,1116:141,161,14,0,0,0.586917 -27823,1116:142,162,14,0,0,0.590624 -27824,1116:143,163,14,0,0,0.591616 -27825,1116:144,164,14,0,0,0.590126 -27826,1116:245,165,14,0,0,0.588634 -27827,1116:246,166,14,0,0,0.590424 -27828,1116:247,167,14,0,0,0.581751 -27829,1116:248,168,14,0,0,0.589306 -27830,1116:249,169,14,0,0,0.588684 -27831,1117:140,170,14,0,0,0.583201 -27832,1117:141,171,14,0,0,0.578948 -27833,1117:142,172,14,0,0,0.575966 -27834,1117:143,173,14,0,0,0.574459 -27835,1117:144,174,14,0,0,0.566529 -27836,1117:245,175,14,0,0,0.560413 -27837,1117:246,176,14,0,0,0.563828 -27838,1117:247,177,14,0,0,0.561931 -27839,1117:248,178,14,0,0,0.559071 -27840,1117:249,179,14,0,0,0.563397 -27841,1118:140,180,14,0,0,0.567311 -27842,7118:350,-180,15,0,0,0.545149 -27843,7117:459,-179,15,0,0,0.537522 -27844,7117:458,-178,15,0,0,0.535606 -27845,7117:457,-177,15,0,0,0.534174 -27846,7117:456,-176,15,0,0,0.544232 -27847,7117:455,-175,15,0,0,0.54996 -27848,7117:354,-174,15,0,0,0.533944 -27849,7117:353,-173,15,0,0,0.53742 -27850,7117:352,-172,15,0,0,0.531847 -27851,7117:351,-171,15,0,0,0.533151 -27852,7117:350,-170,15,0,0,0.521628 -27853,7116:459,-169,15,0,0,0.529161 -27854,7116:458,-168,15,0,0,0.519397 -27855,7116:457,-167,15,0,0,0.525934 -27856,7116:456,-166,15,0,0,0.522064 -27857,7116:455,-165,15,0,0,0.518089 -27858,7116:354,-164,15,0,0,0.518576 -27859,7116:353,-163,15,0,0,0.516729 -27860,7116:352,-162,15,0,0,0.513471 -27861,7116:351,-161,15,0,0,0.514625 -27862,7116:350,-160,15,0,0,0.512828 -27863,7115:459,-159,15,0,0,0.51519 -27864,7115:458,-158,15,0,0,0.517345 -27865,7115:457,-157,15,0,0,0.51578 -27866,7115:456,-156,15,0,0,0.513522 -27867,7115:455,-155,15,0,0,0.515549 -27868,7115:354,-154,15,0,0,0.513214 -27869,7115:353,-153,15,0,0,0.505562 -27870,7115:352,-152,15,0,0,0.502891 -27871,7115:351,-151,15,0,0,0.502557 -27872,7115:350,-150,15,0,0,0.501273 -27873,7114:459,-149,15,0,0,0.500528 -27874,7114:458,-148,15,0,0,0.498088 -27875,7114:457,-147,15,0,0,0.499526 -27876,7114:456,-146,15,0,0,0.49688 -27877,7114:455,-145,15,0,0,0.489742 -27878,7114:354,-144,15,0,0,0.485814 -27879,7114:353,-143,15,0,0,0.481965 -27880,7114:352,-142,15,0,0,0.475529 -27881,7114:351,-141,15,0,0,0.468975 -27882,7114:350,-140,15,0,0,0.466033 -27883,7113:459,-139,15,0,0,0.463094 -27884,7113:458,-138,15,0,0,0.459137 -27885,7113:457,-137,15,0,0,0.453172 -27886,7113:456,-136,15,0,0,0.447145 -27887,7113:455,-135,15,0,0,0.443871 -27888,7113:354,-134,15,0,0,0.440957 -27889,7113:353,-133,15,0,0,0.440298 -27890,7113:352,-132,15,0,0,0.435519 -27891,7113:351,-131,15,0,0,0.431683 -27892,7113:350,-130,15,0,0,0.426272 -27893,7112:459,-129,15,0,0,0.423461 -27894,7112:458,-128,15,0,0,0.422533 -27895,7112:457,-127,15,0,0,0.422031 -27896,7112:456,-126,15,0,0,0.426021 -27897,7112:455,-125,15,0,0,0.421079 -27898,7112:354,-124,15,0,0,0.416453 -27899,7112:353,-123,15,0,0,0.419227 -27900,7112:352,-122,15,0,0,0.418477 -27901,7112:351,-121,15,0,0,0.413859 -27902,7112:350,-120,15,0,0,0.412787 -27903,7111:459,-119,15,0,0,0.404297 -27904,7111:458,-118,15,0,0,0.405015 -27905,7111:457,-117,15,0,0,0.420929 -27906,7111:456,-116,15,0,0,0.422808 -27907,7111:455,-115,15,0,0,0.43418 -27908,7111:354,-114,15,0,0,0.476631 -27909,7111:353,-113,15,0,0,0.523474 -27910,7111:351,-111,15,0,0,0.553721 -27911,7111:350,-110,15,0,0,0.557805 -27912,7109:457,-97,15,0,0,0.533049 -27913,7109:456,-96,15,0,0,0.559907 -27914,7109:455,-95,15,0,0,0.548993 -27915,7109:354,-94,15,0,0,0.553898 -27916,7109:353,-93,15,0,0,0.560287 -27917,7109:352,-92,15,0,0,0.570662 -27918,7109:351,-91,15,0,0,0.571317 -27919,7109:350,-90,15,0,0,0.569806 -27920,7108:459,-89,15,0,0,0.561856 -27921,7108:458,-88,15,0,0,0.57955 -27922,7108:457,-87,15,0,0,0.614631 -27923,7108:456,-86,15,0,0,0.616211 -27924,7108:455,-85,15,0,0,0.604041 -27925,7108:354,-84,15,0,0,0.543059 -27926,7108:353,-83,15,0,0,0.556715 -27927,7108:352,-82,15,0,0,0.523448 -27928,7108:350,-80,15,0,0,0.580175 -27929,7107:459,-79,15,0,0,0.532103 -27930,7107:458,-78,15,0,0,0.56509 -27931,7107:457,-77,15,0,0,0.593279 -27932,7107:456,-76,15,0,0,0.586618 -27933,7107:455,-75,15,0,0,0.583625 -27934,7107:354,-74,15,0,0,0.574283 -27935,7107:353,-73,15,0,0,0.577144 -27936,7107:352,-72,15,0,0,0.572649 -27937,7107:351,-71,15,0,0,0.574936 -27938,7107:350,-70,15,0,0,0.571568 -27939,7106:459,-69,15,0,0,0.571291 -27940,7106:458,-68,15,0,0,0.57041 -27941,7106:457,-67,15,0,0,0.567387 -27942,7106:456,-66,15,0,0,0.571266 -27943,7106:455,-65,15,0,0,0.575187 -27944,7106:354,-64,15,0,0,0.573153 -27945,7106:353,-63,15,0,0,0.573203 -27946,7106:352,-62,15,0,0,0.575413 -27947,7106:351,-61,15,0,0,0.57031 -27948,7106:350,-60,15,0,0,0.565343 -27949,7105:459,-59,15,0,0,0.572197 -27950,7105:458,-58,15,0,0,0.573253 -27951,7105:457,-57,15,0,0,0.579674 -27952,7105:456,-56,15,0,0,0.582251 -27953,7105:455,-55,15,0,0,0.583874 -27954,7105:354,-54,15,0,0,0.581901 -27955,7105:353,-53,15,0,0,0.581576 -27956,7105:352,-52,15,0,0,0.574409 -27957,7105:351,-51,15,0,0,0.567462 -27958,7105:350,-50,15,0,0,0.564485 -27959,7104:459,-49,15,0,0,0.562387 -27960,7104:458,-48,15,0,0,0.559983 -27961,7104:457,-47,15,0,0,0.555802 -27962,7104:456,-46,15,0,0,0.553594 -27963,7104:455,-45,15,0,0,0.553086 -27964,7104:354,-44,15,0,0,0.551333 -27965,7104:353,-43,15,0,0,0.550011 -27966,7104:352,-42,15,0,0,0.550164 -27967,7104:351,-41,15,0,0,0.548943 -27968,7104:350,-40,15,0,0,0.544614 -27969,7103:459,-39,15,0,0,0.541096 -27970,7103:458,-38,15,0,0,0.539412 -27971,7103:457,-37,15,0,0,0.53627 -27972,7103:456,-36,15,0,0,0.535325 -27973,7103:455,-35,15,0,0,0.533918 -27974,7103:354,-34,15,0,0,0.532333 -27975,7103:353,-33,15,0,0,0.530107 -27976,7103:352,-32,15,0,0,0.527854 -27977,7103:351,-31,15,0,0,0.52414 -27978,7103:350,-30,15,0,0,0.520243 -27979,7102:459,-29,15,0,0,0.517422 -27980,7102:458,-28,15,0,0,0.514856 -27981,7102:457,-27,15,0,0,0.514985 -27982,7102:456,-26,15,0,0,0.513342 -27983,7102:455,-25,15,0,0,0.511417 -27984,7102:354,-24,15,0,0,0.510158 -27985,7102:353,-23,15,0,0,0.511391 -27986,7102:352,-22,15,0,0,0.514574 -27987,7102:351,-21,15,0,0,0.512366 -27988,7102:350,-20,15,0,0,0.509183 -27989,7101:459,-19,15,0,0,0.505383 -27990,7101:458,-18,15,0,0,0.487482 -27991,7101:457,-17,15,0,0,0.477144 -27992,7101:456,-16,15,0,0,0.467184 -27993,7101:455,-15,15,0,0,0.429014 -27994,1103:455,35,15,0,0,0.567639 -27995,1103:456,36,15,0,0,0.597313 -27996,1105:352,52,15,0,0,0.541479 -27997,1105:353,53,15,0,0,0.547721 -27998,1105:354,54,15,0,0,0.559097 -27999,1105:455,55,15,0,0,0.564156 -28000,1105:457,57,15,0,0,0.567891 -28001,1105:458,58,15,0,0,0.569655 -28002,1112:350,120,15,0,0,0.401405 -28003,1112:351,121,15,0,0,0.500888 -28004,1112:352,122,15,0,0,0.512444 -28005,1112:353,123,15,0,0,0.548892 -28006,1112:354,124,15,0,0,0.543161 -28007,1112:455,125,15,0,0,0.537522 -28008,1112:456,126,15,0,0,0.524294 -28009,1112:457,127,15,0,0,0.53512 -28010,1112:458,128,15,0,0,0.536602 -28011,1112:459,129,15,0,0,0.539769 -28012,1113:350,130,15,0,0,0.537854 -28013,1113:351,131,15,0,0,0.529237 -28014,1113:352,132,15,0,0,0.535784 -28015,1113:353,133,15,0,0,0.536142 -28016,1113:354,134,15,0,0,0.540688 -28017,1113:455,135,15,0,0,0.527521 -28018,1113:456,136,15,0,0,0.526318 -28019,1113:457,137,15,0,0,0.545633 -28020,1113:458,138,15,0,0,0.550113 -28021,1113:459,139,15,0,0,0.554102 -28022,1114:350,140,15,0,0,0.551918 -28023,1114:351,141,15,0,0,0.561375 -28024,1114:352,142,15,0,0,0.562589 -28025,1114:353,143,15,0,0,0.560996 -28026,1114:354,144,15,0,0,0.562058 -28027,1114:455,145,15,0,0,0.570486 -28028,1114:456,146,15,0,0,0.575262 -28029,1114:457,147,15,0,0,0.582726 -28030,1114:458,148,15,0,0,0.588361 -28031,1114:459,149,15,0,0,0.58734 -28032,1115:350,150,15,0,0,0.58375 -28033,1115:351,151,15,0,0,0.578197 -28034,1115:352,152,15,0,0,0.576367 -28035,1115:353,153,15,0,0,0.578823 -28036,1115:354,154,15,0,0,0.576944 -28037,1115:455,155,15,0,0,0.576693 -28038,1115:456,156,15,0,0,0.578573 -28039,1115:457,157,15,0,0,0.579525 -28040,1115:458,158,15,0,0,0.578673 -28041,1115:459,159,15,0,0,0.573982 -28042,1116:350,160,15,0,0,0.571845 -28043,1116:351,161,15,0,0,0.571568 -28044,1116:352,162,15,0,0,0.568975 -28045,1116:353,163,15,0,0,0.567538 -28046,1116:354,164,15,0,0,0.568143 -28047,1116:455,165,15,0,0,0.567689 -28048,1116:456,166,15,0,0,0.575563 -28049,1116:457,167,15,0,0,0.575714 -28050,1116:458,168,15,0,0,0.566806 -28051,1116:459,169,15,0,0,0.567992 -28052,1117:350,170,15,0,0,0.571668 -28053,1117:351,171,15,0,0,0.570964 -28054,1117:352,172,15,0,0,0.565772 -28055,1117:353,173,15,0,0,0.563195 -28056,1117:354,174,15,0,0,0.558641 -28057,1117:455,175,15,0,0,0.553035 -28058,1117:456,176,15,0,0,0.545328 -28059,1117:457,177,15,0,0,0.551739 -28060,1117:458,178,15,0,0,0.538313 -28061,1117:459,179,15,0,0,0.535938 -28062,1118:350,180,15,0,0,0.545149 -28063,7118:360,-180,16,0,0,0.52332 -28064,7117:469,-179,16,0,0,0.509953 -28065,7117:468,-178,16,0,0,0.526523 -28066,7117:467,-177,16,0,0,0.520013 -28067,7117:466,-176,16,0,0,0.515934 -28068,7117:465,-175,16,0,0,0.506153 -28069,7117:364,-174,16,0,0,0.513471 -28070,7117:363,-173,16,0,0,0.508207 -28071,7117:362,-172,16,0,0,0.512495 -28072,7117:361,-171,16,0,0,0.509722 -28073,7117:360,-170,16,0,0,0.50004 -28074,7116:469,-169,16,0,0,0.516217 -28075,7116:468,-168,16,0,0,0.491873 -28076,7116:467,-167,16,0,0,0.501247 -28077,7116:466,-166,16,0,0,0.502531 -28078,7116:465,-165,16,0,0,0.50022 -28079,7116:364,-164,16,0,0,0.500246 -28080,7116:363,-163,16,0,0,0.501838 -28081,7116:362,-162,16,0,0,0.49629 -28082,7116:361,-161,16,0,0,0.493311 -28083,7116:360,-160,16,0,0,0.497754 -28084,7115:469,-159,16,0,0,0.497292 -28085,7115:468,-158,16,0,0,0.499835 -28086,7115:467,-157,16,0,0,0.492951 -28087,7115:466,-156,16,0,0,0.491308 -28088,7115:465,-155,16,0,0,0.493748 -28089,7115:364,-154,16,0,0,0.489999 -28090,7115:363,-153,16,0,0,0.490743 -28091,7115:362,-152,16,0,0,0.489973 -28092,7115:361,-151,16,0,0,0.488945 -28093,7115:360,-150,16,0,0,0.489485 -28094,7114:469,-149,16,0,0,0.489999 -28095,7114:468,-148,16,0,0,0.490126 -28096,7114:467,-147,16,0,0,0.486686 -28097,7114:466,-146,16,0,0,0.484197 -28098,7114:465,-145,16,0,0,0.480862 -28099,7114:364,-144,16,0,0,0.476452 -28100,7114:363,-143,16,0,0,0.472174 -28101,7114:362,-142,16,0,0,0.468668 -28102,7114:361,-141,16,0,0,0.466697 -28103,7114:360,-140,16,0,0,0.462455 -28104,7113:469,-139,16,0,0,0.456127 -28105,7113:468,-138,16,0,0,0.450908 -28106,7113:467,-137,16,0,0,0.442908 -28107,7113:466,-136,16,0,0,0.439311 -28108,7113:465,-135,16,0,0,0.433726 -28109,7113:364,-134,16,0,0,0.428183 -28110,7113:363,-133,16,0,0,0.42454 -28111,7113:362,-132,16,0,0,0.421806 -28112,7113:361,-131,16,0,0,0.418152 -28113,7113:360,-130,16,0,0,0.415604 -28114,7112:469,-129,16,0,0,0.414831 -28115,7112:468,-128,16,0,0,0.415679 -28116,7112:467,-127,16,0,0,0.411244 -28117,7112:466,-126,16,0,0,0.406402 -28118,7112:465,-125,16,0,0,0.40405 -28119,7112:364,-124,16,0,0,0.397609 -28120,7112:363,-123,16,0,0,0.391645 -28121,7112:362,-122,16,0,0,0.40101 -28122,7112:361,-121,16,0,0,0.404767 -28123,7112:360,-120,16,0,0,0.407171 -28124,7111:469,-119,16,0,0,0.397068 -28125,7111:468,-118,16,0,0,0.405312 -28126,7111:467,-117,16,0,0,0.408734 -28127,7111:466,-116,16,0,0,0.432364 -28128,7111:465,-115,16,0,0,0.479349 -28129,7111:364,-114,16,0,0,0.499886 -28130,7111:361,-111,16,0,0,0.54181 -28131,7111:360,-110,16,0,0,0.540713 -28132,7109:467,-97,16,0,0,0.514446 -28133,7109:466,-96,16,0,0,0.553492 -28134,7109:465,-95,16,0,0,0.547721 -28135,7109:364,-94,16,0,0,0.549884 -28136,7109:363,-93,16,0,0,0.550722 -28137,7109:362,-92,16,0,0,0.55207 -28138,7109:361,-91,16,0,0,0.567059 -28139,7109:360,-90,16,0,0,0.564787 -28140,7108:469,-89,16,0,0,0.547441 -28141,7108:468,-88,16,0,0,0.547518 -28142,7108:467,-87,16,0,0,0.544538 -28143,7108:466,-86,16,0,0,0.556689 -28144,7108:465,-85,16,0,0,0.536807 -28145,7108:364,-84,16,0,0,0.523859 -28146,7108:363,-83,16,0,0,0.511545 -28147,7108:360,-80,16,0,0,0.574635 -28148,7107:469,-79,16,0,0,0.533331 -28149,7107:468,-78,16,0,0,0.530952 -28150,7107:467,-77,16,0,0,0.579499 -28151,7107:466,-76,16,0,0,0.550875 -28152,7107:465,-75,16,0,0,0.550494 -28153,7107:364,-74,16,0,0,0.552527 -28154,7107:363,-73,16,0,0,0.547518 -28155,7107:362,-72,16,0,0,0.546677 -28156,7107:361,-71,16,0,0,0.54907 -28157,7107:360,-70,16,0,0,0.560338 -28158,7106:469,-69,16,0,0,0.56307 -28159,7106:468,-68,16,0,0,0.558236 -28160,7106:467,-67,16,0,0,0.553239 -28161,7106:466,-66,16,0,0,0.552374 -28162,7106:465,-65,16,0,0,0.562083 -28163,7106:364,-64,16,0,0,0.559603 -28164,7106:363,-63,16,0,0,0.556461 -28165,7106:362,-62,16,0,0,0.555979 -28166,7106:361,-61,16,0,0,0.557095 -28167,7106:360,-60,16,0,0,0.55113 -28168,7105:469,-59,16,0,0,0.547645 -28169,7105:468,-58,16,0,0,0.549477 -28170,7105:467,-57,16,0,0,0.553772 -28171,7105:466,-56,16,0,0,0.558236 -28172,7105:465,-55,16,0,0,0.548078 -28173,7105:364,-54,16,0,0,0.550011 -28174,7105:363,-53,16,0,0,0.558134 -28175,7105:362,-52,16,0,0,0.558083 -28176,7105:361,-51,16,0,0,0.553315 -28177,7105:360,-50,16,0,0,0.546092 -28178,7104:469,-49,16,0,0,0.546168 -28179,7104:468,-48,16,0,0,0.545684 -28180,7104:467,-47,16,0,0,0.543238 -28181,7104:466,-46,16,0,0,0.540688 -28182,7104:465,-45,16,0,0,0.542065 -28183,7104:364,-44,16,0,0,0.544334 -28184,7104:363,-43,16,0,0,0.54232 -28185,7104:362,-42,16,0,0,0.539998 -28186,7104:361,-41,16,0,0,0.538543 -28187,7104:360,-40,16,0,0,0.535376 -28188,7103:469,-39,16,0,0,0.533305 -28189,7103:468,-38,16,0,0,0.531975 -28190,7103:467,-37,16,0,0,0.527188 -28191,7103:466,-36,16,0,0,0.528725 -28192,7103:465,-35,16,0,0,0.522961 -28193,7103:364,-34,16,0,0,0.522193 -28194,7103:363,-33,16,0,0,0.517551 -28195,7103:362,-32,16,0,0,0.510262 -28196,7103:361,-31,16,0,0,0.517987 -28197,7103:360,-30,16,0,0,0.511648 -28198,7102:469,-29,16,0,0,0.509722 -28199,7102:468,-28,16,0,0,0.507077 -28200,7102:467,-27,16,0,0,0.506461 -28201,7102:466,-26,16,0,0,0.503867 -28202,7102:465,-25,16,0,0,0.501145 -28203,7102:364,-24,16,0,0,0.498628 -28204,7102:363,-23,16,0,0,0.499809 -28205,7102:362,-22,16,0,0,0.501632 -28206,7102:361,-21,16,0,0,0.500425 -28207,7102:360,-20,16,0,0,0.498962 -28208,7101:469,-19,16,0,0,0.495391 -28209,7101:468,-18,16,0,0,0.490229 -28210,7101:467,-17,16,0,0,0.485198 -28211,7101:466,-16,16,0,0,0.470075 -28212,7101:465,-15,16,0,0,0.46363 -28213,7101:364,-14,16,0,0,0.434938 -28214,1103:364,34,16,0,0,0.562513 -28215,1103:465,35,16,0,0,0.570335 -28216,1105:360,50,16,0,0,0.524781 -28217,1105:361,51,16,0,0,0.539335 -28218,1105:362,52,16,0,0,0.55113 -28219,1105:363,53,16,0,0,0.557602 -28220,1105:466,56,16,0,0,0.551003 -28221,1112:361,121,16,0,0,0.396798 -28222,1112:362,122,16,0,0,0.488895 -28223,1112:363,123,16,0,0,0.511853 -28224,1112:364,124,16,0,0,0.524985 -28225,1112:465,125,16,0,0,0.507308 -28226,1112:466,126,16,0,0,0.53862 -28227,1112:467,127,16,0,0,0.52514 -28228,1112:468,128,16,0,0,0.527471 -28229,1112:469,129,16,0,0,0.53021 -28230,1113:360,130,16,0,0,0.535223 -28231,1113:361,131,16,0,0,0.526395 -28232,1113:362,132,16,0,0,0.516037 -28233,1113:363,133,16,0,0,0.515472 -28234,1113:364,134,16,0,0,0.504663 -28235,1113:465,135,16,0,0,0.497087 -28236,1113:466,136,16,0,0,0.498113 -28237,1113:467,137,16,0,0,0.507925 -28238,1113:468,138,16,0,0,0.51306 -28239,1113:469,139,16,0,0,0.518038 -28240,1114:360,140,16,0,0,0.516217 -28241,1114:361,141,16,0,0,0.526036 -28242,1114:362,142,16,0,0,0.535223 -28243,1114:363,143,16,0,0,0.535478 -28244,1114:364,144,16,0,0,0.550113 -28245,1114:465,145,16,0,0,0.546372 -28246,1114:466,146,16,0,0,0.554914 -28247,1114:467,147,16,0,0,0.545404 -28248,1114:468,148,16,0,0,0.542346 -28249,1114:469,149,16,0,0,0.551028 -28250,1115:360,150,16,0,0,0.556233 -28251,1115:361,151,16,0,0,0.551078 -28252,1115:362,152,16,0,0,0.550825 -28253,1115:363,153,16,0,0,0.560135 -28254,1115:364,154,16,0,0,0.554914 -28255,1115:465,155,16,0,0,0.557374 -28256,1115:466,156,16,0,0,0.56403 -28257,1115:467,157,16,0,0,0.559704 -28258,1115:468,158,16,0,0,0.560945 -28259,1115:469,159,16,0,0,0.558869 -28260,1116:360,160,16,0,0,0.556309 -28261,1116:361,161,16,0,0,0.558438 -28262,1116:362,162,16,0,0,0.557855 -28263,1116:363,163,16,0,0,0.559578 -28264,1116:364,164,16,0,0,0.556689 -28265,1116:465,165,16,0,0,0.556866 -28266,1116:466,166,16,0,0,0.554305 -28267,1116:467,167,16,0,0,0.551942 -28268,1116:468,168,16,0,0,0.54996 -28269,1116:469,169,16,0,0,0.54818 -28270,1117:360,170,16,0,0,0.545633 -28271,1117:361,171,16,0,0,0.550799 -28272,1117:362,172,16,0,0,0.549451 -28273,1117:363,173,16,0,0,0.542626 -28274,1117:364,174,16,0,0,0.535734 -28275,1117:465,175,16,0,0,0.540406 -28276,1117:466,176,16,0,0,0.542524 -28277,1117:467,177,16,0,0,0.533484 -28278,1117:468,178,16,0,0,0.517756 -28279,1117:469,179,16,0,0,0.522372 -28280,1118:360,180,16,0,0,0.52332 -28281,7118:370,-180,17,0,0,0.489022 -28282,7117:479,-179,17,0,0,0.489022 -28283,7117:478,-178,17,0,0,0.486609 -28284,7117:477,-177,17,0,0,0.484736 -28285,7117:476,-176,17,0,0,0.478862 -28286,7117:475,-175,17,0,0,0.482427 -28287,7117:374,-174,17,0,0,0.485634 -28288,7117:373,-173,17,0,0,0.479733 -28289,7117:372,-172,17,0,0,0.488561 -28290,7117:371,-171,17,0,0,0.47635 -28291,7117:370,-170,17,0,0,0.483658 -28292,7116:479,-169,17,0,0,0.477888 -28293,7116:478,-168,17,0,0,0.470869 -28294,7116:477,-167,17,0,0,0.4804 -28295,7116:476,-166,17,0,0,0.473608 -28296,7116:475,-165,17,0,0,0.482581 -28297,7116:374,-164,17,0,0,0.474018 -28298,7116:373,-163,17,0,0,0.469051 -28299,7116:372,-162,17,0,0,0.481888 -28300,7116:371,-161,17,0,0,0.468872 -28301,7116:370,-160,17,0,0,0.479426 -28302,7115:479,-159,17,0,0,0.479785 -28303,7115:478,-158,17,0,0,0.475094 -28304,7115:477,-157,17,0,0,0.475991 -28305,7115:476,-156,17,0,0,0.474197 -28306,7115:475,-155,17,0,0,0.473199 -28307,7115:374,-154,17,0,0,0.470791 -28308,7115:373,-153,17,0,0,0.473557 -28309,7115:372,-152,17,0,0,0.479913 -28310,7115:371,-151,17,0,0,0.476145 -28311,7115:370,-150,17,0,0,0.476811 -28312,7114:479,-149,17,0,0,0.476888 -28313,7114:478,-148,17,0,0,0.476606 -28314,7114:477,-147,17,0,0,0.47717 -28315,7114:476,-146,17,0,0,0.476504 -28316,7114:475,-145,17,0,0,0.473762 -28317,7114:374,-144,17,0,0,0.47243 -28318,7114:373,-143,17,0,0,0.470101 -28319,7114:372,-142,17,0,0,0.466825 -28320,7114:371,-141,17,0,0,0.460745 -28321,7114:370,-140,17,0,0,0.456586 -28322,7113:479,-139,17,0,0,0.451518 -28323,7113:478,-138,17,0,0,0.446663 -28324,7113:477,-137,17,0,0,0.442477 -28325,7113:476,-136,17,0,0,0.437288 -28326,7113:475,-135,17,0,0,0.432414 -28327,7113:374,-134,17,0,0,0.426222 -28328,7113:373,-133,17,0,0,0.418302 -28329,7113:372,-132,17,0,0,0.41229 -28330,7113:371,-131,17,0,0,0.409355 -28331,7113:370,-130,17,0,0,0.406278 -28332,7112:479,-129,17,0,0,0.401454 -28333,7112:478,-128,17,0,0,0.399703 -28334,7112:477,-127,17,0,0,0.393776 -28335,7112:476,-126,17,0,0,0.390568 -28336,7112:475,-125,17,0,0,0.39358 -28337,7112:374,-124,17,0,0,0.386492 -28338,7112:373,-123,17,0,0,0.379379 -28339,7112:372,-122,17,0,0,0.37595 -28340,7112:371,-121,17,0,0,0.374529 -28341,7112:370,-120,17,0,0,0.37636 -28342,7111:479,-119,17,0,0,0.381922 -28343,7111:478,-118,17,0,0,0.379935 -28344,7111:477,-117,17,0,0,0.384861 -28345,7111:476,-116,17,0,0,0.450908 -28346,7111:475,-115,17,0,0,0.453834 -28347,7111:372,-112,17,0,0,0.521731 -28348,7109:476,-96,17,0,0,0.463962 -28349,7109:475,-95,17,0,0,0.488252 -28350,7109:374,-94,17,0,0,0.498396 -28351,7109:373,-93,17,0,0,0.508875 -28352,7109:372,-92,17,0,0,0.51057 -28353,7109:371,-91,17,0,0,0.513624 -28354,7109:370,-90,17,0,0,0.521654 -28355,7108:479,-89,17,0,0,0.526907 -28356,7108:478,-88,17,0,0,0.525063 -28357,7108:477,-87,17,0,0,0.523397 -28358,7108:476,-86,17,0,0,0.52724 -28359,7108:475,-85,17,0,0,0.498447 -28360,7108:374,-84,17,0,0,0.479913 -28361,7108:373,-83,17,0,0,0.443593 -28362,7108:370,-80,17,0,0,0.559755 -28363,7107:479,-79,17,0,0,0.58734 -28364,7107:478,-78,17,0,0,0.577069 -28365,7107:477,-77,17,0,0,0.574861 -28366,7107:476,-76,17,0,0,0.547543 -28367,7107:475,-75,17,0,0,0.544436 -28368,7107:374,-74,17,0,0,0.543085 -28369,7107:373,-73,17,0,0,0.543697 -28370,7107:372,-72,17,0,0,0.532384 -28371,7107:371,-71,17,0,0,0.540509 -28372,7107:370,-70,17,0,0,0.539973 -28373,7106:479,-69,17,0,0,0.53512 -28374,7106:478,-68,17,0,0,0.541479 -28375,7106:477,-67,17,0,0,0.539258 -28376,7106:476,-66,17,0,0,0.532998 -28377,7106:475,-65,17,0,0,0.533279 -28378,7106:374,-64,17,0,0,0.53558 -28379,7106:373,-63,17,0,0,0.537497 -28380,7106:372,-62,17,0,0,0.540382 -28381,7106:371,-61,17,0,0,0.543672 -28382,7106:370,-60,17,0,0,0.539386 -28383,7105:479,-59,17,0,0,0.534609 -28384,7105:478,-58,17,0,0,0.526318 -28385,7105:477,-57,17,0,0,0.517037 -28386,7105:476,-56,17,0,0,0.521398 -28387,7105:475,-55,17,0,0,0.536551 -28388,7105:374,-54,17,0,0,0.533791 -28389,7105:373,-53,17,0,0,0.525754 -28390,7105:372,-52,17,0,0,0.52724 -28391,7105:371,-51,17,0,0,0.533586 -29690,1212:131,121,23,0,0,0.21556 -28392,7105:370,-50,17,0,0,0.532231 -28393,7104:479,-49,17,0,0,0.523859 -28394,7104:478,-48,17,0,0,0.518731 -28395,7104:477,-47,17,0,0,0.523012 -28396,7104:476,-46,17,0,0,0.526267 -28397,7104:475,-45,17,0,0,0.524243 -28398,7104:374,-44,17,0,0,0.526702 -28399,7104:373,-43,17,0,0,0.527932 -28400,7104:372,-42,17,0,0,0.525088 -28401,7104:371,-41,17,0,0,0.523961 -28402,7104:370,-40,17,0,0,0.517089 -28403,7103:479,-39,17,0,0,0.516139 -28404,7103:478,-38,17,0,0,0.518269 -28405,7103:477,-37,17,0,0,0.514651 -28406,7103:476,-36,17,0,0,0.506975 -28407,7103:475,-35,17,0,0,0.503585 -28408,7103:374,-34,17,0,0,0.501555 -28409,7103:373,-33,17,0,0,0.497703 -28410,7103:372,-32,17,0,0,0.494004 -28411,7103:371,-31,17,0,0,0.493414 -28412,7103:370,-30,17,0,0,0.492438 -28413,7102:479,-29,17,0,0,0.496367 -28414,7102:478,-28,17,0,0,0.494261 -28415,7102:477,-27,17,0,0,0.490743 -28416,7102:476,-26,17,0,0,0.489818 -28417,7102:475,-25,17,0,0,0.490383 -28418,7102:374,-24,17,0,0,0.486686 -28419,7102:373,-23,17,0,0,0.489767 -28420,7102:372,-22,17,0,0,0.490075 -28421,7102:371,-21,17,0,0,0.485198 -28422,7102:370,-20,17,0,0,0.486404 -28423,7101:479,-19,17,0,0,0.487148 -28424,7101:478,-18,17,0,0,0.483402 -28425,7101:476,-16,17,0,0,0.475145 -28426,7101:475,-15,17,0,0,0.470203 -28427,7101:374,-14,17,0,0,0.450959 -28428,7101:373,-13,17,0,0,0.427202 -28429,7101:372,-12,17,0,0,0.411742 -28430,1103:373,33,17,0,0,0.515755 -28431,1104:479,49,17,0,0,0.522833 -28432,1105:370,50,17,0,0,0.539616 -28433,1105:371,51,17,0,0,0.529596 -28434,1112:372,122,17,0,0,0.356164 -28435,1112:373,123,17,0,0,0.445191 -28436,1112:374,124,17,0,0,0.464346 -28437,1112:475,125,17,0,0,0.470126 -28438,1112:476,126,17,0,0,0.506949 -28439,1112:477,127,17,0,0,0.5342 -28440,1112:478,128,17,0,0,0.523833 -28441,1112:479,129,17,0,0,0.521039 -28442,1113:370,130,17,0,0,0.519808 -28443,1113:371,131,17,0,0,0.522833 -28444,1113:372,132,17,0,0,0.522038 -28445,1113:373,133,17,0,0,0.512597 -28446,1113:374,134,17,0,0,0.502403 -28447,1113:475,135,17,0,0,0.49046 -28448,1113:476,136,17,0,0,0.483787 -28449,1113:477,137,17,0,0,0.480785 -28450,1113:478,138,17,0,0,0.48548 -28451,1113:479,139,17,0,0,0.50248 -28452,1114:370,140,17,0,0,0.508952 -28453,1114:371,141,17,0,0,0.516345 -28454,1114:372,142,17,0,0,0.521398 -28455,1114:373,143,17,0,0,0.514933 -28456,1114:374,144,17,0,0,0.512854 -28457,1114:475,145,17,0,0,0.521808 -28458,1114:476,146,17,0,0,0.52414 -28459,1114:477,147,17,0,0,0.511622 -28460,1114:478,148,17,0,0,0.515986 -28461,1114:479,149,17,0,0,0.52765 -28462,1115:370,150,17,0,0,0.525523 -28463,1115:371,151,17,0,0,0.532001 -28464,1115:372,152,17,0,0,0.53351 -28465,1115:373,153,17,0,0,0.531336 -28466,1115:374,154,17,0,0,0.532154 -28467,1115:475,155,17,0,0,0.536168 -28468,1115:476,156,17,0,0,0.533638 -28469,1115:477,157,17,0,0,0.535555 -28470,1115:478,158,17,0,0,0.535862 -28471,1115:479,159,17,0,0,0.536704 -28472,1116:370,160,17,0,0,0.537829 -28473,1116:371,161,17,0,0,0.538569 -28474,1116:372,162,17,0,0,0.53982 -28475,1116:373,163,17,0,0,0.539896 -28476,1116:374,164,17,0,0,0.540738 -28477,1116:475,165,17,0,0,0.536807 -28478,1116:476,166,17,0,0,0.534046 -28479,1116:477,167,17,0,0,0.534813 -28480,1116:478,168,17,0,0,0.533459 -28481,1116:479,169,17,0,0,0.521679 -28482,1117:370,170,17,0,0,0.512597 -28483,1117:371,171,17,0,0,0.520141 -28484,1117:372,172,17,0,0,0.525114 -28485,1117:373,173,17,0,0,0.520526 -28486,1117:374,174,17,0,0,0.508824 -28487,1117:475,175,17,0,0,0.501016 -28488,1117:476,176,17,0,0,0.510596 -28489,1117:477,177,17,0,0,0.506051 -28490,1117:478,178,17,0,0,0.504535 -28491,1117:479,179,17,0,0,0.501838 -28492,1118:370,180,17,0,0,0.489022 -28493,7118:380,-180,18,0,0,0.463707 -28494,7117:489,-179,18,0,0,0.461689 -28495,7117:488,-178,18,0,0,0.456536 -28496,7117:487,-177,18,0,0,0.45702 -28497,7117:486,-176,18,0,0,0.449382 -28498,7117:485,-175,18,0,0,0.44867 -28499,7117:384,-174,18,0,0,0.452179 -28500,7117:383,-173,18,0,0,0.444404 -28501,7117:382,-172,18,0,0,0.443136 -28502,7117:381,-171,18,0,0,0.447171 -28503,7117:380,-170,18,0,0,0.448721 -28504,7116:489,-169,18,0,0,0.445952 -28505,7116:488,-168,18,0,0,0.445267 -28506,7116:487,-167,18,0,0,0.443567 -28507,7116:486,-166,18,0,0,0.440957 -28508,7116:485,-165,18,0,0,0.441084 -28509,7116:384,-164,18,0,0,0.444379 -28510,7116:383,-163,18,0,0,0.443795 -28511,7116:382,-162,18,0,0,0.448086 -28512,7116:381,-161,18,0,0,0.452358 -28513,7116:380,-160,18,0,0,0.453784 -28514,7115:489,-159,18,0,0,0.44984 -28515,7115:488,-158,18,0,0,0.44585 -28516,7115:487,-157,18,0,0,0.446841 -28517,7115:486,-156,18,0,0,0.451671 -28518,7115:485,-155,18,0,0,0.451035 -28519,7115:384,-154,18,0,0,0.452816 -28520,7115:383,-153,18,0,0,0.452562 -28521,7115:382,-152,18,0,0,0.451009 -28522,7115:381,-151,18,0,0,0.446993 -28523,7115:380,-150,18,0,0,0.452587 -28524,7114:489,-149,18,0,0,0.45952 -28525,7114:488,-148,18,0,0,0.455975 -28526,7114:487,-147,18,0,0,0.452179 -28527,7114:486,-146,18,0,0,0.456179 -28528,7114:485,-145,18,0,0,0.449407 -28529,7114:384,-144,18,0,0,0.45045 -28530,7114:383,-143,18,0,0,0.447272 -28531,7114:382,-142,18,0,0,0.445369 -28532,7114:381,-141,18,0,0,0.441008 -28533,7114:380,-140,18,0,0,0.438173 -28534,7113:489,-139,18,0,0,0.43239 -28535,7113:488,-138,18,0,0,0.428712 -28536,7113:487,-137,18,0,0,0.42665 -28537,7113:486,-136,18,0,0,0.422984 -28538,7113:485,-135,18,0,0,0.419102 -28539,7113:384,-134,18,0,0,0.412912 -28540,7113:383,-133,18,0,0,0.410896 -28541,7113:382,-132,18,0,0,0.407022 -28542,7113:381,-131,18,0,0,0.402541 -28543,7113:380,-130,18,0,0,0.398841 -28544,7112:489,-129,18,0,0,0.392772 -28545,7112:488,-128,18,0,0,0.38384 -28546,7112:487,-127,18,0,0,0.377566 -28547,7112:486,-126,18,0,0,0.377711 -28548,7112:485,-125,18,0,0,0.381219 -28549,7112:384,-124,18,0,0,0.377277 -28550,7112:383,-123,18,0,0,0.373158 -28551,7112:382,-122,18,0,0,0.372413 -28552,7112:381,-121,18,0,0,0.370901 -28553,7112:380,-120,18,0,0,0.366215 -28554,7111:489,-119,18,0,0,0.372053 -28555,7111:488,-118,18,0,0,0.367719 -28556,7111:487,-117,18,0,0,0.374866 -28557,7111:486,-116,18,0,0,0.424239 -28558,7111:383,-113,18,0,0,0.505793 -28559,7109:384,-94,18,0,0,0.382674 -28560,7109:383,-93,18,0,0,0.385299 -28561,7109:382,-92,18,0,0,0.39412 -28562,7108:489,-89,18,0,0,0.428561 -28563,7108:488,-88,18,0,0,0.486327 -28564,7108:487,-87,18,0,0,0.51021 -28565,7108:486,-86,18,0,0,0.478452 -28566,7108:485,-85,18,0,0,0.42567 -28567,7108:384,-84,18,0,0,0.429215 -28568,7108:381,-81,18,0,0,0.498859 -28569,7108:380,-80,18,0,0,0.566024 -28570,7107:489,-79,18,0,0,0.557932 -28571,7107:488,-78,18,0,0,0.550951 -28572,7107:487,-77,18,0,0,0.551383 -28573,7107:486,-76,18,0,0,0.55273 -28574,7107:485,-75,18,0,0,0.539437 -28575,7107:384,-74,18,0,0,0.52957 -28576,7107:383,-73,18,0,0,0.52875 -28577,7107:382,-72,18,0,0,0.526753 -28578,7107:381,-71,18,0,0,0.526779 -28579,7107:380,-70,18,0,0,0.526241 -28580,7106:489,-69,18,0,0,0.521757 -28581,7106:488,-68,18,0,0,0.518602 -28582,7106:487,-67,18,0,0,0.517551 -28583,7106:486,-66,18,0,0,0.523986 -28584,7106:485,-65,18,0,0,0.521731 -28585,7106:384,-64,18,0,0,0.518987 -28586,7106:383,-63,18,0,0,0.520526 -28587,7106:382,-62,18,0,0,0.517525 -28588,7106:381,-61,18,0,0,0.512957 -28589,7106:380,-60,18,0,0,0.512521 -28590,7105:489,-59,18,0,0,0.514471 -28591,7105:488,-58,18,0,0,0.507668 -28592,7105:487,-57,18,0,0,0.503302 -28593,7105:486,-56,18,0,0,0.506512 -28594,7105:485,-55,18,0,0,0.505819 -28595,7105:384,-54,18,0,0,0.500246 -28596,7105:383,-53,18,0,0,0.504227 -28597,7105:382,-52,18,0,0,0.507848 -28598,7105:381,-51,18,0,0,0.507694 -28599,7105:380,-50,18,0,0,0.505023 -28600,7104:489,-49,18,0,0,0.501915 -28601,7104:488,-48,18,0,0,0.504637 -28602,7104:487,-47,18,0,0,0.50623 -28603,7104:486,-46,18,0,0,0.505152 -28604,7104:485,-45,18,0,0,0.508978 -28605,7104:384,-44,18,0,0,0.513573 -28606,7104:383,-43,18,0,0,0.511674 -28607,7104:382,-42,18,0,0,0.507489 -31960,7313:466,-136,36,0,0,0.20022 -28608,7104:381,-41,18,0,0,0.506359 -28609,7104:380,-40,18,0,0,0.497009 -28610,7103:489,-39,18,0,0,0.502326 -28611,7103:488,-38,18,0,0,0.500297 -28612,7103:487,-37,18,0,0,0.4976 -28613,7103:486,-36,18,0,0,0.496367 -28614,7103:485,-35,18,0,0,0.490666 -28615,7103:384,-34,18,0,0,0.48679 -28616,7103:383,-33,18,0,0,0.486456 -28617,7103:382,-32,18,0,0,0.48235 -28618,7103:381,-31,18,0,0,0.480503 -28619,7103:380,-30,18,0,0,0.480836 -28620,7102:489,-29,18,0,0,0.480169 -28621,7102:488,-28,18,0,0,0.478708 -28622,7102:487,-27,18,0,0,0.480042 -28623,7102:486,-26,18,0,0,0.48117 -28624,7102:485,-25,18,0,0,0.475914 -28625,7102:384,-24,18,0,0,0.476324 -28626,7102:383,-23,18,0,0,0.478785 -28627,7102:382,-22,18,0,0,0.474479 -28628,7102:381,-21,18,0,0,0.473967 -28629,7102:380,-20,18,0,0,0.474582 -28630,7101:489,-19,18,0,0,0.471637 -28631,7101:488,-18,18,0,0,0.47266 -28632,7101:487,-17,18,0,0,0.474377 -28633,7101:486,-16,18,0,0,0.472993 -28634,7101:485,-15,18,0,0,0.46854 -28635,7101:384,-14,18,0,0,0.463707 -28636,7101:383,-13,18,0,0,0.461434 -28637,7101:382,-12,18,0,0,0.453555 -28638,7101:381,-11,18,0,0,0.444151 -28639,1104:488,48,18,0,0,0.469921 -28640,1104:489,49,18,0,0,0.510518 -28641,1105:380,50,18,0,0,0.523781 -28642,1112:383,123,18,0,0,0.340494 -28643,1112:384,124,18,0,0,0.433827 -28644,1112:485,125,18,0,0,0.423009 -28645,1112:486,126,18,0,0,0.442731 -28646,1112:487,127,18,0,0,0.496753 -28647,1112:488,128,18,0,0,0.532077 -28648,1112:489,129,18,0,0,0.52519 -28649,1113:380,130,18,0,0,0.5225 -28650,1113:381,131,18,0,0,0.525063 -28651,1113:382,132,18,0,0,0.522731 -28652,1113:383,133,18,0,0,0.502968 -28653,1113:384,134,18,0,0,0.467286 -28654,1113:485,135,18,0,0,0.490101 -28655,1113:486,136,18,0,0,0.489151 -28656,1113:487,137,18,0,0,0.464601 -28657,1113:488,138,18,0,0,0.464295 -28658,1113:489,139,18,0,0,0.480169 -28659,1114:380,140,18,0,0,0.487046 -28660,1114:381,141,18,0,0,0.505177 -28661,1114:382,142,18,0,0,0.508028 -28662,1114:383,143,18,0,0,0.499963 -28663,1114:384,144,18,0,0,0.500605 -28664,1114:485,145,18,0,0,0.501555 -28665,1114:486,146,18,0,0,0.514549 -28666,1114:487,147,18,0,0,0.50659 -28667,1114:488,148,18,0,0,0.498962 -28668,1114:489,149,18,0,0,0.498165 -28669,1115:380,150,18,0,0,0.500271 -28670,1115:381,151,18,0,0,0.503508 -28671,1115:382,152,18,0,0,0.504098 -28672,1115:383,153,18,0,0,0.508053 -28673,1115:384,154,18,0,0,0.510544 -28674,1115:485,155,18,0,0,0.505665 -28675,1115:486,156,18,0,0,0.501863 -28676,1115:487,157,18,0,0,0.502378 -28677,1115:488,158,18,0,0,0.504355 -28678,1115:489,159,18,0,0,0.502454 -28679,1116:380,160,18,0,0,0.502095 -28680,1116:381,161,18,0,0,0.502814 -28681,1116:382,162,18,0,0,0.501941 -28682,1116:383,163,18,0,0,0.500322 -28683,1116:384,164,18,0,0,0.498987 -28684,1116:485,165,18,0,0,0.505665 -28685,1116:486,166,18,0,0,0.508207 -28686,1116:487,167,18,0,0,0.504869 -28687,1116:488,168,18,0,0,0.498653 -28688,1116:489,169,18,0,0,0.489382 -28689,1117:380,170,18,0,0,0.480375 -28690,1117:381,171,18,0,0,0.480759 -28691,1117:382,172,18,0,0,0.480785 -28692,1117:383,173,18,0,0,0.481272 -28693,1117:384,174,18,0,0,0.474658 -28694,1117:485,175,18,0,0,0.471099 -28695,1117:486,176,18,0,0,0.487226 -28696,1117:487,177,18,0,0,0.479272 -28697,1117:488,178,18,0,0,0.47179 -28698,1117:489,179,18,0,0,0.465189 -28699,1118:380,180,18,0,0,0.463707 -28700,7118:390,-180,19,0,0,0.439235 -28701,7117:499,-179,19,0,0,0.42768 -28702,7117:498,-178,19,0,0,0.435847 -28703,7117:497,-177,19,0,0,0.426499 -28704,7117:496,-176,19,0,0,0.42758 -28705,7117:495,-175,19,0,0,0.420879 -28706,7117:394,-174,19,0,0,0.418577 -28707,7117:393,-173,19,0,0,0.418802 -28708,7117:392,-172,19,0,0,0.41533 -28709,7117:391,-171,19,0,0,0.418802 -28710,7117:390,-170,19,0,0,0.417277 -28711,7116:499,-169,19,0,0,0.418277 -28712,7116:498,-168,19,0,0,0.41346 -28713,7116:497,-167,19,0,0,0.414482 -28714,7116:496,-166,19,0,0,0.414382 -28715,7116:495,-165,19,0,0,0.418802 -28716,7116:394,-164,19,0,0,0.424264 -28717,7116:393,-163,19,0,0,0.415879 -28718,7116:392,-162,19,0,0,0.411742 -28719,7116:391,-161,19,0,0,0.413759 -28720,7116:390,-160,19,0,0,0.419828 -28721,7115:499,-159,19,0,0,0.425519 -28722,7115:498,-158,19,0,0,0.423862 -28723,7115:497,-157,19,0,0,0.426926 -28724,7115:496,-156,19,0,0,0.429744 -28725,7115:495,-155,19,0,0,0.42577 -28726,7115:394,-154,19,0,0,0.418777 -28727,7115:393,-153,19,0,0,0.421305 -28728,7115:392,-152,19,0,0,0.430222 -28729,7115:391,-151,19,0,0,0.43307 -28730,7115:390,-150,19,0,0,0.429895 -28731,7114:499,-149,19,0,0,0.430776 -28732,7114:498,-148,19,0,0,0.432188 -28733,7114:497,-147,19,0,0,0.434307 -28734,7114:496,-146,19,0,0,0.435695 -28735,7114:495,-145,19,0,0,0.436504 -28736,7114:394,-144,19,0,0,0.4384 -28737,7114:393,-143,19,0,0,0.437313 -28738,7114:392,-142,19,0,0,0.434837 -28739,7114:391,-141,19,0,0,0.424916 -28740,7114:390,-140,19,0,0,0.42341 -28741,7113:499,-139,19,0,0,0.424163 -28742,7113:498,-138,19,0,0,0.423862 -28743,7113:497,-137,19,0,0,0.421631 -28744,7113:496,-136,19,0,0,0.416328 -28745,7113:495,-135,19,0,0,0.407766 -28746,7113:394,-134,19,0,0,0.399457 -28747,7113:393,-133,19,0,0,0.394316 -28748,7113:392,-132,19,0,0,0.393458 -28749,7113:391,-131,19,0,0,0.391816 -28750,7113:390,-130,19,0,0,0.390691 -28751,7112:499,-129,19,0,0,0.383646 -28752,7112:498,-128,19,0,0,0.371957 -28753,7112:497,-127,19,0,0,0.369608 -28754,7112:496,-126,19,0,0,0.364809 -28755,7112:495,-125,19,0,0,0.357343 -28756,7112:394,-124,19,0,0,0.349875 -28757,7112:393,-123,19,0,0,0.345797 -28758,7112:392,-122,19,0,0,0.339249 -28759,7112:391,-121,19,0,0,0.344264 -28760,7112:390,-120,19,0,0,0.349454 -28761,7111:499,-119,19,0,0,0.350764 -28762,7111:498,-118,19,0,0,0.361933 -28763,7111:497,-117,19,0,0,0.370207 -28764,7111:394,-114,19,0,0,0.49647 -28765,7108:391,-81,19,0,0,0.455363 -28766,7108:390,-80,19,0,0,0.517756 -28767,7107:499,-79,19,0,0,0.576567 -28768,7107:498,-78,19,0,0,0.558869 -28769,7107:497,-77,19,0,0,0.549732 -28770,7107:496,-76,19,0,0,0.555599 -28771,7107:495,-75,19,0,0,0.536602 -28772,7107:394,-74,19,0,0,0.516781 -28773,7107:393,-73,19,0,0,0.510749 -28774,7107:392,-72,19,0,0,0.518269 -28775,7107:391,-71,19,0,0,0.521731 -28776,7107:390,-70,19,0,0,0.518038 -28777,7106:499,-69,19,0,0,0.512521 -28778,7106:498,-68,19,0,0,0.508644 -28779,7106:497,-67,19,0,0,0.505717 -28780,7106:496,-66,19,0,0,0.503919 -28781,7106:495,-65,19,0,0,0.504124 -28782,7106:394,-64,19,0,0,0.50546 -28783,7106:393,-63,19,0,0,0.499089 -28784,7106:392,-62,19,0,0,0.496572 -28785,7106:391,-61,19,0,0,0.498268 -28786,7106:390,-60,19,0,0,0.491821 -28787,7105:499,-59,19,0,0,0.488432 -28788,7105:498,-58,19,0,0,0.485763 -28789,7105:497,-57,19,0,0,0.486225 -28790,7105:496,-56,19,0,0,0.484788 -28791,7105:495,-55,19,0,0,0.486635 -28792,7105:394,-54,19,0,0,0.486584 -28793,7105:393,-53,19,0,0,0.482504 -28794,7105:392,-52,19,0,0,0.478118 -28795,7105:391,-51,19,0,0,0.471969 -28796,7105:390,-50,19,0,0,0.473352 -28797,7104:499,-49,19,0,0,0.475376 -28798,7104:498,-48,19,0,0,0.481426 -28799,7104:497,-47,19,0,0,0.485019 -28800,7104:496,-46,19,0,0,0.479836 -28801,7104:495,-45,19,0,0,0.476171 -28802,7104:394,-44,19,0,0,0.486147 -28803,7104:393,-43,19,0,0,0.485275 -28804,7104:392,-42,19,0,0,0.48566 -28805,7104:391,-41,19,0,0,0.48625 -28806,7104:390,-40,19,0,0,0.486378 -28807,7103:499,-39,19,0,0,0.483042 -28808,7103:498,-38,19,0,0,0.475094 -28809,7103:497,-37,19,0,0,0.475581 -28810,7103:496,-36,19,0,0,0.476631 -28811,7103:495,-35,19,0,0,0.467721 -28812,7103:394,-34,19,0,0,0.468437 -28813,7103:393,-33,19,0,0,0.468488 -28814,7103:392,-32,19,0,0,0.471559 -28815,7103:391,-31,19,0,0,0.462328 -28816,7103:390,-30,19,0,0,0.460515 -28817,7102:499,-29,19,0,0,0.468872 -28818,7102:498,-28,19,0,0,0.462992 -28819,7102:497,-27,19,0,0,0.4598 -28820,7102:496,-26,19,0,0,0.458193 -28821,7102:495,-25,19,0,0,0.462915 -28822,7102:394,-24,19,0,0,0.465266 -28823,7102:393,-23,19,0,0,0.461204 -28824,7102:392,-22,19,0,0,0.457658 -28825,7102:391,-21,19,0,0,0.458116 -28826,7102:390,-20,19,0,0,0.460413 -28827,7101:499,-19,19,0,0,0.462123 -28828,7101:498,-18,19,0,0,0.460413 -28829,7101:497,-17,19,0,0,0.458448 -28830,7101:496,-16,19,0,0,0.454344 -28831,7101:495,-15,19,0,0,0.453427 -28832,7101:394,-14,19,0,0,0.450322 -28833,7101:393,-13,19,0,0,0.450069 -28834,7101:392,-12,19,0,0,0.443086 -28835,7101:391,-11,19,0,0,0.434408 -28836,1101:498,18,19,0,0,0.443922 -28837,1101:499,19,19,0,0,0.453809 -28838,1102:499,29,19,0,0,0.42123 -28839,1112:393,123,19,0,0,0.298907 -28840,1112:394,124,19,0,0,0.414731 -28841,1112:495,125,19,0,0,0.40846 -28842,1112:496,126,19,0,0,0.410647 -28843,1112:497,127,19,0,0,0.443086 -28844,1112:498,128,19,0,0,0.50623 -28845,1112:499,129,19,0,0,0.514805 -28846,1113:390,130,19,0,0,0.500477 -28847,1113:391,131,19,0,0,0.504894 -28848,1113:392,132,19,0,0,0.5205 -28849,1113:393,133,19,0,0,0.508028 -28850,1113:394,134,19,0,0,0.46432 -28851,1113:495,135,19,0,0,0.456255 -28852,1113:496,136,19,0,0,0.469384 -28853,1113:497,137,19,0,0,0.457938 -28854,1113:498,138,19,0,0,0.457351 -28855,1113:499,139,19,0,0,0.464781 -28856,1114:390,140,19,0,0,0.479708 -28857,1114:391,141,19,0,0,0.480785 -28858,1114:392,142,19,0,0,0.480811 -28859,1114:393,143,19,0,0,0.485711 -28860,1114:394,144,19,0,0,0.495288 -28861,1114:495,145,19,0,0,0.493722 -28862,1114:496,146,19,0,0,0.491154 -28863,1114:497,147,19,0,0,0.489177 -28864,1114:498,148,19,0,0,0.489279 -28865,1114:499,149,19,0,0,0.492694 -28866,1115:390,150,19,0,0,0.49236 -28867,1115:391,151,19,0,0,0.491128 -28868,1115:392,152,19,0,0,0.491462 -28869,1115:393,153,19,0,0,0.48951 -28870,1115:394,154,19,0,0,0.484915 -28871,1115:495,155,19,0,0,0.484659 -28872,1115:496,156,19,0,0,0.486378 -28873,1115:497,157,19,0,0,0.487072 -28874,1115:498,158,19,0,0,0.483273 -28875,1115:499,159,19,0,0,0.478426 -28876,1116:390,160,19,0,0,0.473301 -28877,1116:391,161,19,0,0,0.467388 -28878,1116:392,162,19,0,0,0.470996 -28879,1116:393,163,19,0,0,0.475017 -28880,1116:394,164,19,0,0,0.474325 -28881,1116:495,165,19,0,0,0.468437 -28882,1116:496,166,19,0,0,0.46749 -28883,1116:497,167,19,0,0,0.465036 -28884,1116:498,168,19,0,0,0.460642 -28885,1116:499,169,19,0,0,0.460719 -28886,1117:390,170,19,0,0,0.453249 -28887,1117:391,171,19,0,0,0.454472 -28888,1117:392,172,19,0,0,0.456408 -28889,1117:393,173,19,0,0,0.450577 -28890,1117:394,174,19,0,0,0.449763 -28891,1117:495,175,19,0,0,0.442072 -28892,1117:496,176,19,0,0,0.44613 -28893,1117:497,177,19,0,0,0.434736 -28894,1117:498,178,19,0,0,0.439741 -28895,1117:499,179,19,0,0,0.440223 -28896,1118:390,180,19,0,0,0.439235 -28897,7218:100,-180,20,0,0,0.407369 -28898,7217:209,-179,20,0,0,0.40259 -28899,7217:208,-178,20,0,0,0.391841 -28900,7217:207,-177,20,0,0,0.394709 -28901,7217:206,-176,20,0,0,0.389493 -28902,7217:205,-175,20,0,0,0.390471 -28903,7217:104,-174,20,0,0,0.392233 -28904,7217:103,-173,20,0,0,0.395053 -28905,7217:102,-172,20,0,0,0.396208 -28906,7217:101,-171,20,0,0,0.395544 -28907,7217:100,-170,20,0,0,0.396085 -28908,7216:209,-169,20,0,0,0.389981 -28909,7216:208,-168,20,0,0,0.379621 -28910,7216:207,-167,20,0,0,0.382747 -28911,7216:206,-166,20,0,0,0.38964 -28912,7216:205,-165,20,0,0,0.393384 -28913,7216:104,-164,20,0,0,0.395912 -28914,7216:103,-163,20,0,0,0.39788 -28915,7216:102,-162,20,0,0,0.395691 -28916,7216:101,-161,20,0,0,0.374962 -28917,7216:100,-160,20,0,0,0.40027 -28918,7215:209,-159,20,0,0,0.389127 -28919,7215:208,-158,20,0,0,0.403579 -28920,7215:207,-157,20,0,0,0.406402 -28921,7215:206,-156,20,0,0,0.401356 -28922,7215:205,-155,20,0,0,0.399086 -28923,7215:104,-154,20,0,0,0.40665 -28924,7215:103,-153,20,0,0,0.400368 -28925,7215:102,-152,20,0,0,0.41107 -28926,7215:101,-151,20,0,0,0.415604 -28927,7215:100,-150,20,0,0,0.416203 -28928,7214:209,-149,20,0,0,0.417802 -28929,7214:208,-148,20,0,0,0.415854 -28930,7214:207,-147,20,0,0,0.422733 -28931,7214:206,-146,20,0,0,0.427454 -28932,7214:205,-145,20,0,0,0.422533 -28934,7214:103,-143,20,0,0,0.415429 -28935,7214:102,-142,20,0,0,0.412165 -28936,7214:101,-141,20,0,0,0.411518 -28937,7214:100,-140,20,0,0,0.408635 -28938,7213:209,-139,20,0,0,0.408709 -28939,7213:208,-138,20,0,0,0.409355 -28940,7213:207,-137,20,0,0,0.405287 -28941,7213:206,-136,20,0,0,0.401504 -28942,7213:205,-135,20,0,0,0.392453 -28943,7213:104,-134,20,0,0,0.390397 -28944,7213:103,-133,20,0,0,0.387564 -28945,7213:102,-132,20,0,0,0.384034 -28946,7213:101,-131,20,0,0,0.376794 -28947,7213:100,-130,20,0,0,0.370351 -28948,7212:209,-129,20,0,0,0.360345 -28949,7212:208,-128,20,0,0,0.3451 -28950,7212:207,-127,20,0,0,0.348008 -28951,7212:206,-126,20,0,0,0.338995 -28952,7212:205,-125,20,0,0,0.331987 -28953,7212:104,-124,20,0,0,0.334658 -28954,7212:103,-123,20,0,0,0.327831 -28955,7212:102,-122,20,0,0,0.331349 -28956,7212:101,-121,20,0,0,0.331053 -28957,7212:100,-120,20,0,0,0.339571 -28958,7211:209,-119,20,0,0,0.348591 -28959,7211:208,-118,20,0,0,0.355976 -28960,7211:207,-117,20,0,0,0.351981 -28961,7208:100,-80,20,0,0,0.440172 -28962,7207:209,-79,20,0,0,0.506821 -28963,7207:208,-78,20,0,0,0.537854 -28964,7207:207,-77,20,0,0,0.565494 -28965,7207:206,-76,20,0,0,0.565797 -28966,7207:205,-75,20,0,0,0.540764 -28967,7207:104,-74,20,0,0,0.508002 -28968,7207:103,-73,20,0,0,0.512546 -28969,7207:102,-72,20,0,0,0.5004 -28970,7207:101,-71,20,0,0,0.511314 -28971,7207:100,-70,20,0,0,0.514625 -28972,7206:209,-69,20,0,0,0.509337 -28973,7206:208,-68,20,0,0,0.505844 -28974,7206:207,-67,20,0,0,0.500811 -28975,7206:206,-66,20,0,0,0.494158 -28976,7206:205,-65,20,0,0,0.491154 -28977,7206:104,-64,20,0,0,0.487482 -28978,7206:103,-63,20,0,0,0.486481 -28979,7206:102,-62,20,0,0,0.484813 -28980,7206:101,-61,20,0,0,0.4804 -28981,7206:100,-60,20,0,0,0.47817 -28982,7205:209,-59,20,0,0,0.477119 -28983,7205:208,-58,20,0,0,0.473583 -28984,7205:207,-57,20,0,0,0.472379 -28985,7205:206,-56,20,0,0,0.472455 -28986,7205:205,-55,20,0,0,0.471099 -28987,7205:104,-54,20,0,0,0.468642 -28988,7205:103,-53,20,0,0,0.465905 -28989,7205:102,-52,20,0,0,0.463273 -28990,7205:101,-51,20,0,0,0.459545 -28991,7205:100,-50,20,0,0,0.460056 -28992,7204:209,-49,20,0,0,0.461025 -28993,7204:208,-48,20,0,0,0.463758 -28994,7204:207,-47,20,0,0,0.460642 -28995,7204:206,-46,20,0,0,0.451035 -28996,7204:205,-45,20,0,0,0.452663 -28997,7204:104,-44,20,0,0,0.45804 -28998,7204:103,-43,20,0,0,0.466391 -28999,7204:102,-42,20,0,0,0.463273 -29000,7204:101,-41,20,0,0,0.468335 -29001,7204:100,-40,20,0,0,0.472507 -29002,7203:209,-39,20,0,0,0.469486 -29003,7203:208,-38,20,0,0,0.463273 -29004,7203:207,-37,20,0,0,0.454191 -29005,7203:206,-36,20,0,0,0.450272 -29006,7203:205,-35,20,0,0,0.45493 -29007,7203:104,-34,20,0,0,0.457862 -29008,7203:103,-33,20,0,0,0.456586 -29009,7203:102,-32,20,0,0,0.451264 -29010,7203:101,-31,20,0,0,0.447755 -29011,7203:100,-30,20,0,0,0.448899 -29012,7202:209,-29,20,0,0,0.449483 -29013,7202:208,-28,20,0,0,0.454981 -29014,7202:207,-27,20,0,0,0.447755 -29015,7202:206,-26,20,0,0,0.440881 -29016,7202:205,-25,20,0,0,0.444379 -29017,7202:104,-24,20,0,0,0.452205 -29018,7202:103,-23,20,0,0,0.448238 -29019,7202:102,-22,20,0,0,0.445242 -29020,7202:101,-21,20,0,0,0.450577 -29021,7202:100,-20,20,0,0,0.451747 -29022,7201:209,-19,20,0,0,0.450882 -29023,7201:208,-18,20,0,0,0.450043 -29024,7201:207,-17,20,0,0,0.446079 -29025,7201:206,-16,20,0,0,0.442604 -29026,7201:205,-15,20,0,0,0.445952 -29027,7201:104,-14,20,0,0,0.444632 -29028,7201:103,-13,20,0,0,0.445369 -29029,7201:102,-12,20,0,0,0.440552 -29030,7201:101,-11,20,0,0,0.423235 -29031,7201:100,-10,20,0,0,0.399161 -29032,1201:206,16,20,0,0,0.427881 -29033,1201:207,17,20,0,0,0.420779 -29034,1201:208,18,20,0,0,0.428661 -29035,1201:209,19,20,0,0,0.445064 -29036,1202:104,24,20,0,0,0.445318 -29037,1202:205,25,20,0,0,0.443618 -29038,1202:206,26,20,0,0,0.439944 -29039,1202:207,27,20,0,0,0.439362 -29040,1202:208,28,20,0,0,0.439792 -29041,1202:209,29,20,0,0,0.446511 -29042,1203:100,30,20,0,0,0.457938 -29043,1203:101,31,20,0,0,0.464499 -29044,1203:102,32,20,0,0,0.466851 -29045,1203:103,33,20,0,0,0.459672 -29046,1203:104,34,20,0,0,0.476709 -29047,1212:101,121,20,0,0,0.262279 -29048,1212:102,122,20,0,0,0.246307 -29049,1212:103,123,20,0,0,0.306759 -29050,1212:104,124,20,0,0,0.348918 -29051,1212:205,125,20,0,0,0.382116 -29052,1212:206,126,20,0,0,0.433903 -29053,1212:207,127,20,0,0,0.471687 -29054,1212:208,128,20,0,0,0.493696 -29055,1212:209,129,20,0,0,0.481195 -29056,1213:100,130,20,0,0,0.47243 -29057,1213:102,132,20,0,0,0.501787 -29058,1213:103,133,20,0,0,0.5185 -29059,1213:104,134,20,0,0,0.509414 -29060,1213:205,135,20,0,0,0.476555 -29061,1213:206,136,20,0,0,0.459086 -29062,1213:207,137,20,0,0,0.458091 -29063,1213:208,138,20,0,0,0.45975 -29064,1213:209,139,20,0,0,0.462762 -29065,1214:100,140,20,0,0,0.465982 -29066,1214:101,141,20,0,0,0.469153 -29067,1214:102,142,20,0,0,0.480016 -29068,1214:103,143,20,0,0,0.487174 -29069,1214:104,144,20,0,0,0.483658 -29070,1214:205,145,20,0,0,0.482453 -29071,1214:206,146,20,0,0,0.474197 -29072,1214:207,147,20,0,0,0.46946 -29073,1214:208,148,20,0,0,0.471637 -29074,1214:209,149,20,0,0,0.474325 -29075,1215:100,150,20,0,0,0.477119 -29076,1215:101,151,20,0,0,0.482529 -29077,1215:102,152,20,0,0,0.489074 -29078,1215:103,153,20,0,0,0.484607 -29079,1215:104,154,20,0,0,0.487328 -29080,1215:205,155,20,0,0,0.484531 -29081,1215:206,156,20,0,0,0.483146 -29082,1215:207,157,20,0,0,0.48548 -29083,1215:208,158,20,0,0,0.470715 -29084,1215:209,159,20,0,0,0.46031 -29085,1216:100,160,20,0,0,0.453478 -29086,1216:101,161,20,0,0,0.451543 -29087,1216:102,162,20,0,0,0.437945 -29088,1216:103,163,20,0,0,0.443618 -29089,1216:104,164,20,0,0,0.439488 -29090,1216:205,165,20,0,0,0.437996 -29091,1216:206,166,20,0,0,0.441641 -29092,1216:207,167,20,0,0,0.43307 -29093,1216:208,168,20,0,0,0.436807 -29094,1216:209,169,20,0,0,0.432919 -29095,1217:100,170,20,0,0,0.438552 -29096,1217:101,171,20,0,0,0.433373 -29097,1217:102,172,20,0,0,0.421656 -29098,1217:103,173,20,0,0,0.419303 -29099,1217:104,174,20,0,0,0.419027 -29100,1217:205,175,20,0,0,0.421556 -29101,1217:206,176,20,0,0,0.420528 -29102,1217:207,177,20,0,0,0.417277 -29103,1217:208,178,20,0,0,0.408983 -29104,1217:209,179,20,0,0,0.410647 -29105,1218:100,180,20,0,0,0.407369 -29106,7218:110,-180,21,0,0,0.377638 -29107,7217:219,-179,21,0,0,0.380735 -29108,7217:218,-178,21,0,0,0.374168 -29109,7217:217,-177,21,0,0,0.368436 -29110,7217:216,-176,21,0,0,0.364238 -29111,7217:215,-175,21,0,0,0.365214 -29112,7217:114,-174,21,0,0,0.372173 -29113,7217:113,-173,21,0,0,0.365857 -29114,7217:112,-172,21,0,0,0.371309 -29115,7217:111,-171,21,0,0,0.380008 -29116,7217:110,-170,21,0,0,0.381292 -29117,7216:219,-169,21,0,0,0.373518 -29118,7216:218,-168,21,0,0,0.363026 -29119,7216:217,-167,21,0,0,0.36343 -29120,7216:216,-166,21,0,0,0.365405 -29121,7216:215,-165,21,0,0,0.372245 -29122,7216:114,-164,21,0,0,0.360227 -29123,7216:113,-163,21,0,0,0.364857 -29124,7216:112,-162,21,0,0,0.357131 -29125,7216:111,-161,21,0,0,0.370662 -29126,7216:110,-160,21,0,0,0.381389 -29127,7215:219,-159,21,0,0,0.383718 -29128,7215:218,-158,21,0,0,0.377373 -29129,7215:217,-157,21,0,0,0.383694 -29130,7215:216,-156,21,0,0,0.377373 -29131,7215:215,-155,21,0,0,0.388223 -29132,7215:114,-154,21,0,0,0.382019 -29133,7215:113,-153,21,0,0,0.386224 -29134,7215:112,-152,21,0,0,0.39096 -29135,7215:111,-151,21,0,0,0.395839 -29136,7215:110,-150,21,0,0,0.399407 -29137,7214:219,-149,21,0,0,0.395519 -29138,7214:218,-148,21,0,0,0.401479 -29139,7214:217,-147,21,0,0,0.400492 -29140,7214:216,-146,21,0,0,0.400245 -29141,7214:215,-145,21,0,0,0.40551 -29142,7214:114,-144,21,0,0,0.404742 -29143,7214:113,-143,21,0,0,0.402665 -29144,7214:112,-142,21,0,0,0.399851 -29145,7214:111,-141,21,0,0,0.393286 -29146,7214:110,-140,21,0,0,0.388907 -29147,7213:219,-139,21,0,0,0.394709 -29148,7213:218,-138,21,0,0,0.399259 -29149,7213:217,-137,21,0,0,0.39211 -29150,7213:216,-136,21,0,0,0.389688 -29151,7213:215,-135,21,0,0,0.382456 -29152,7213:114,-134,21,0,0,0.380444 -29153,7213:113,-133,21,0,0,0.373543 -29154,7213:112,-132,21,0,0,0.369919 -29155,7213:111,-131,21,0,0,0.367002 -29156,7213:110,-130,21,0,0,0.349128 -29157,7212:219,-129,21,0,0,0.348311 -29158,7212:218,-128,21,0,0,0.349408 -29159,7212:217,-127,21,0,0,0.335872 -29160,7212:216,-126,21,0,0,0.334406 -29161,7212:215,-125,21,0,0,0.328079 -29162,7212:114,-124,21,0,0,0.311037 -29163,7212:113,-123,21,0,0,0.310442 -29164,7212:112,-122,21,0,0,0.317123 -29165,7212:111,-121,21,0,0,0.324961 -29166,7212:110,-120,21,0,0,0.334452 -29167,7211:219,-119,21,0,0,0.342111 -29168,7211:218,-118,21,0,0,0.336422 -29169,7207:219,-79,21,0,0,0.396798 -29170,7207:218,-78,21,0,0,0.440703 -29171,7207:217,-77,21,0,0,0.487508 -29172,7207:216,-76,21,0,0,0.55537 -29173,7207:215,-75,21,0,0,0.547568 -29174,7207:114,-74,21,0,0,0.512931 -29175,7207:113,-73,21,0,0,0.507489 -29176,7207:112,-72,21,0,0,0.500117 -29177,7207:111,-71,21,0,0,0.498165 -29178,7207:110,-70,21,0,0,0.498755 -29179,7206:219,-69,21,0,0,0.502044 -29180,7206:218,-68,21,0,0,0.503816 -29181,7206:217,-67,21,0,0,0.497292 -29182,7206:216,-66,21,0,0,0.498755 -29183,7206:215,-65,21,0,0,0.498294 -29184,7206:114,-64,21,0,0,0.498345 -29185,7206:113,-63,21,0,0,0.492617 -29186,7206:112,-62,21,0,0,0.480811 -29187,7206:111,-61,21,0,0,0.476964 -29188,7206:110,-60,21,0,0,0.477093 -29189,7205:219,-59,21,0,0,0.476247 -29190,7205:218,-58,21,0,0,0.471944 -29191,7205:217,-57,21,0,0,0.468233 -29192,7205:216,-56,21,0,0,0.467286 -29193,7205:215,-55,21,0,0,0.460413 -29194,7205:114,-54,21,0,0,0.452307 -29195,7205:113,-53,21,0,0,0.449687 -29196,7205:112,-52,21,0,0,0.448975 -29197,7205:111,-51,21,0,0,0.451671 -29198,7205:110,-50,21,0,0,0.44984 -29199,7204:219,-49,21,0,0,0.452231 -29200,7204:218,-48,21,0,0,0.449255 -29201,7204:217,-47,21,0,0,0.441616 -29202,7204:216,-46,21,0,0,0.437718 -29203,7204:215,-45,21,0,0,0.443136 -29204,7204:114,-44,21,0,0,0.439817 -29205,7204:113,-43,21,0,0,0.434888 -29206,7204:112,-42,21,0,0,0.443162 -29207,7204:111,-41,21,0,0,0.447857 -29208,7204:110,-40,21,0,0,0.445699 -29209,7203:219,-39,21,0,0,0.441919 -29210,7203:218,-38,21,0,0,0.433676 -29211,7203:217,-37,21,0,0,0.439691 -29212,7203:216,-36,21,0,0,0.442832 -29213,7203:215,-35,21,0,0,0.435923 -29214,7203:114,-34,21,0,0,0.435367 -29215,7203:113,-33,21,0,0,0.418627 -29216,7203:112,-32,21,0,0,0.440122 -29217,7203:111,-31,21,0,0,0.437718 -29218,7203:110,-30,21,0,0,0.434509 -29219,7202:219,-29,21,0,0,0.434787 -29220,7202:218,-28,21,0,0,0.439488 -29221,7202:217,-27,21,0,0,0.43128 -29222,7202:216,-26,21,0,0,0.426197 -29223,7202:215,-25,21,0,0,0.423912 -29224,7202:114,-24,21,0,0,0.427428 -29225,7202:113,-23,21,0,0,0.433827 -29226,7202:112,-22,21,0,0,0.434307 -29227,7202:111,-21,21,0,0,0.445699 -29228,7202:110,-20,21,0,0,0.443364 -29229,7201:219,-19,21,0,0,0.44154 -29230,7201:218,-18,21,0,0,0.442097 -29231,7201:217,-17,21,0,0,0.440577 -29232,7201:216,-16,21,0,0,0.437439 -29233,7201:215,-15,21,0,0,0.437894 -29234,7201:114,-14,21,0,0,0.437819 -29235,7201:113,-13,21,0,0,0.436479 -29236,7201:112,-12,21,0,0,0.435822 -29237,7201:111,-11,21,0,0,0.434382 -29238,7201:110,-10,21,0,0,0.433524 -29239,7200:219,-9,21,0,0,0.41346 -29240,7200:218,-8,21,0,0,0.394341 -29241,1201:111,11,21,0,0,0.386127 -29242,1201:112,12,21,0,0,0.408684 -29243,1201:113,13,21,0,0,0.410797 -29244,1201:114,14,21,0,0,0.419152 -29245,1201:215,15,21,0,0,0.408783 -29246,1201:216,16,21,0,0,0.425368 -29247,1201:217,17,21,0,0,0.418302 -29248,1201:218,18,21,0,0,0.40353 -29249,1201:219,19,21,0,0,0.416378 -29250,1202:110,20,21,0,0,0.413435 -29251,1202:111,21,21,0,0,0.429744 -29252,1202:112,22,21,0,0,0.43128 -29253,1202:113,23,21,0,0,0.424239 -29254,1202:114,24,21,0,0,0.424715 -29255,1202:215,25,21,0,0,0.420203 -29256,1202:216,26,21,0,0,0.428988 -29257,1202:217,27,21,0,0,0.430675 -29258,1202:218,28,21,0,0,0.426121 -29259,1202:219,29,21,0,0,0.432364 -29260,1203:110,30,21,0,0,0.43254 -29261,1203:111,31,21,0,0,0.441337 -29262,1203:112,32,21,0,0,0.441995 -29263,1203:113,33,21,0,0,0.450704 -29264,1203:114,34,21,0,0,0.479708 -29265,1212:112,122,21,0,0,0.229074 -29266,1212:113,123,21,0,0,0.302754 -29267,1212:114,124,21,0,0,0.384301 -29268,1212:215,125,21,0,0,0.417327 -29269,1212:216,126,21,0,0,0.446866 -29270,1212:218,128,21,0,0,0.481042 -29271,1212:219,129,21,0,0,0.468437 -29272,1213:110,130,21,0,0,0.402912 -29273,1213:114,134,21,0,0,0.485275 -29274,1213:215,135,21,0,0,0.497446 -29275,1213:216,136,21,0,0,0.500169 -29276,1213:217,137,21,0,0,0.504175 -29277,1213:218,138,21,0,0,0.501607 -29278,1213:219,139,21,0,0,0.494929 -29279,1214:110,140,21,0,0,0.490204 -29280,1214:111,141,21,0,0,0.480631 -29281,1214:112,142,21,0,0,0.472738 -29282,1214:113,143,21,0,0,0.478887 -29283,1214:114,144,21,0,0,0.477503 -29284,1214:215,145,21,0,0,0.470049 -29285,1214:216,146,21,0,0,0.470843 -29286,1214:217,147,21,0,0,0.473532 -29287,1214:218,148,21,0,0,0.462634 -29288,1214:219,149,21,0,0,0.461306 -29289,1215:110,150,21,0,0,0.469103 -29290,1215:111,151,21,0,0,0.473096 -29291,1215:112,152,21,0,0,0.483427 -29292,1215:113,153,21,0,0,0.483915 -29293,1215:114,154,21,0,0,0.474505 -29294,1215:215,155,21,0,0,0.476555 -29295,1215:216,156,21,0,0,0.478452 -29296,1215:217,157,21,0,0,0.478528 -29297,1215:218,158,21,0,0,0.475837 -29298,1215:219,159,21,0,0,0.463043 -29299,1216:110,160,21,0,0,0.453682 -29300,1216:111,161,21,0,0,0.431658 -29301,1216:112,162,21,0,0,0.421205 -29302,1216:113,163,21,0,0,0.417227 -29303,1216:114,164,21,0,0,0.411518 -29304,1216:215,165,21,0,0,0.41025 -29305,1216:216,166,21,0,0,0.412837 -29306,1216:217,167,21,0,0,0.413435 -29307,1216:218,168,21,0,0,0.412065 -29308,1216:219,169,21,0,0,0.408238 -29309,1217:110,170,21,0,0,0.406352 -29310,1217:111,171,21,0,0,0.403407 -29311,1217:112,172,21,0,0,0.400467 -29312,1217:113,173,21,0,0,0.395397 -29313,1217:114,174,21,0,0,0.385786 -29314,1217:215,175,21,0,0,0.379717 -29315,1217:216,176,21,0,0,0.37996 -29316,1217:217,177,21,0,0,0.380129 -29317,1217:218,178,21,0,0,0.37648 -29318,1217:219,179,21,0,0,0.375516 -29319,1218:110,180,21,0,0,0.377638 -29320,7218:120,-180,22,0,0,0.357791 -29321,7217:229,-179,22,0,0,0.353765 -29322,7217:228,-178,22,0,0,0.347472 -29323,7217:227,-177,22,0,0,0.343198 -29324,7217:226,-176,22,0,0,0.340125 -29325,7217:225,-175,22,0,0,0.340078 -29326,7217:124,-174,22,0,0,0.33918 -29327,7217:123,-173,22,0,0,0.338604 -29328,7217:122,-172,22,0,0,0.340078 -29329,7217:121,-171,22,0,0,0.342712 -29330,7217:120,-170,22,0,0,0.341325 -29331,7216:229,-169,22,0,0,0.332876 -29332,7216:228,-168,22,0,0,0.333219 -29333,7216:227,-167,22,0,0,0.33578 -29334,7216:226,-166,22,0,0,0.339203 -29335,7216:225,-165,22,0,0,0.337133 -29336,7216:124,-164,22,0,0,0.337961 -29337,7216:123,-163,22,0,0,0.335505 -29338,7216:122,-162,22,0,0,0.336147 -29339,7216:121,-161,22,0,0,0.342018 -29340,7216:120,-160,22,0,0,0.351349 -29341,7215:229,-159,22,0,0,0.359848 -29342,7215:228,-158,22,0,0,0.358075 -29343,7215:227,-157,22,0,0,0.359919 -29344,7215:226,-156,22,0,0,0.35487 -29345,7215:225,-155,22,0,0,0.358548 -29346,7215:124,-154,22,0,0,0.359233 -29347,7215:123,-153,22,0,0,0.365357 -29348,7215:122,-152,22,0,0,0.368746 -29349,7215:121,-151,22,0,0,0.370207 -29350,7215:120,-150,22,0,0,0.373855 -29351,7214:229,-149,22,0,0,0.376746 -29352,7214:228,-148,22,0,0,0.377663 -29353,7214:227,-147,22,0,0,0.382165 -29354,7214:226,-146,22,0,0,0.384448 -29355,7214:225,-145,22,0,0,0.387808 -29356,7214:124,-144,22,0,0,0.381485 -29357,7214:123,-143,22,0,0,0.379161 -29358,7214:122,-142,22,0,0,0.379717 -29359,7214:121,-141,22,0,0,0.376939 -29360,7214:120,-140,22,0,0,0.379209 -29361,7213:229,-139,22,0,0,0.377132 -29362,7213:228,-138,22,0,0,0.38435 -29363,7213:227,-137,22,0,0,0.380299 -29364,7213:226,-136,22,0,0,0.379476 -29365,7213:225,-135,22,0,0,0.372869 -29366,7213:124,-134,22,0,0,0.374529 -29367,7213:123,-133,22,0,0,0.363881 -29368,7213:122,-132,22,0,0,0.358618 -29369,7213:121,-131,22,0,0,0.355999 -29370,7213:120,-130,22,0,0,0.349128 -29371,7212:229,-129,22,0,0,0.336743 -29372,7212:228,-128,22,0,0,0.328669 -29373,7212:227,-127,22,0,0,0.322509 -29374,7212:226,-126,22,0,0,0.311014 -29375,7212:225,-125,22,0,0,0.307744 -29376,7212:124,-124,22,0,0,0.301173 -29377,7212:123,-123,22,0,0,0.300957 -29378,7212:122,-122,22,0,0,0.307088 -29379,7212:121,-121,22,0,0,0.308554 -29380,7207:227,-77,22,0,0,0.391645 -29381,7207:226,-76,22,0,0,0.454064 -29382,7207:225,-75,22,0,0,0.551435 -29383,7207:124,-74,22,0,0,0.523755 -29384,7207:123,-73,22,0,0,0.504303 -29385,7207:122,-72,22,0,0,0.484864 -29386,7207:121,-71,22,0,0,0.490974 -29387,7207:120,-70,22,0,0,0.493645 -29388,7206:229,-69,22,0,0,0.499372 -29389,7206:228,-68,22,0,0,0.499526 -29390,7206:227,-67,22,0,0,0.497728 -29391,7206:226,-66,22,0,0,0.493542 -29392,7206:225,-65,22,0,0,0.484326 -29393,7206:124,-64,22,0,0,0.47817 -29394,7206:123,-63,22,0,0,0.467644 -29395,7206:122,-62,22,0,0,0.453809 -29396,7206:121,-61,22,0,0,0.462328 -29397,7206:120,-60,22,0,0,0.467388 -29398,7205:229,-59,22,0,0,0.454089 -29399,7205:228,-58,22,0,0,0.441235 -29400,7205:227,-57,22,0,0,0.448492 -29401,7205:226,-56,22,0,0,0.439792 -29402,7205:225,-55,22,0,0,0.447121 -29403,7205:124,-54,22,0,0,0.449535 -29404,7205:123,-53,22,0,0,0.440906 -29405,7205:122,-52,22,0,0,0.441413 -29406,7205:121,-51,22,0,0,0.441463 -29407,7205:120,-50,22,0,0,0.436631 -29408,7204:229,-49,22,0,0,0.436833 -29409,7204:228,-48,22,0,0,0.436403 -29410,7204:227,-47,22,0,0,0.425017 -29411,7204:226,-46,22,0,0,0.431406 -29412,7204:225,-45,22,0,0,0.432011 -29413,7204:124,-44,22,0,0,0.426398 -29414,7204:123,-43,22,0,0,0.420353 -29415,7204:122,-42,22,0,0,0.420704 -29416,7204:121,-41,22,0,0,0.425594 -29417,7204:120,-40,22,0,0,0.432163 -29418,7203:229,-39,22,0,0,0.41528 -29419,7203:228,-38,22,0,0,0.405114 -29420,7203:227,-37,22,0,0,0.415081 -29421,7203:226,-36,22,0,0,0.417377 -29422,7203:225,-35,22,0,0,0.420003 -29423,7203:124,-34,22,0,0,0.416078 -29424,7203:123,-33,22,0,0,0.408535 -29425,7203:122,-32,22,0,0,0.412239 -29426,7203:121,-31,22,0,0,0.407171 -29427,7203:120,-30,22,0,0,0.410174 -29428,7202:229,-29,22,0,0,0.415155 -29429,7202:228,-28,22,0,0,0.419352 -29430,7202:227,-27,22,0,0,0.416627 -29431,7202:226,-26,22,0,0,0.400196 -29432,7202:225,-25,22,0,0,0.413909 -29433,7202:124,-24,22,0,0,0.411319 -29434,7202:123,-23,22,0,0,0.416528 -29435,7202:122,-22,22,0,0,0.417527 -29436,7202:121,-21,22,0,0,0.423887 -29437,7202:120,-20,22,0,0,0.425117 -29438,7201:229,-19,22,0,0,0.416952 -29439,7201:228,-18,22,0,0,0.425041 -29440,7201:227,-17,22,0,0,0.427907 -29441,7201:226,-16,22,0,0,0.43191 -29442,7201:225,-15,22,0,0,0.423335 -29443,7201:124,-14,22,0,0,0.431533 -29444,7201:123,-13,22,0,0,0.428108 -29445,7201:122,-12,22,0,0,0.427956 -29446,7201:121,-11,22,0,0,0.430801 -29447,7201:120,-10,22,0,0,0.423661 -29448,7200:229,-9,22,0,0,0.418127 -29449,7200:228,-8,22,0,0,0.408485 -29450,7200:227,-7,22,0,0,0.392649 -29451,1201:121,11,22,0,0,0.371837 -29452,1201:122,12,22,0,0,0.400591 -29453,1201:123,13,22,0,0,0.402072 -29454,1201:124,14,22,0,0,0.413261 -29455,1201:225,15,22,0,0,0.399876 -29456,1201:226,16,22,0,0,0.39466 -29457,1201:227,17,22,0,0,0.391866 -29458,1201:228,18,22,0,0,0.394954 -29459,1201:229,19,22,0,0,0.399604 -29460,1202:120,20,22,0,0,0.406327 -29461,1202:121,21,22,0,0,0.414606 -29462,1202:122,22,22,0,0,0.418952 -29463,1202:123,23,22,0,0,0.416903 -29464,1202:124,24,22,0,0,0.414482 -29465,1202:225,25,22,0,0,0.413659 -29466,1202:226,26,22,0,0,0.415779 -29467,1202:227,27,22,0,0,0.416478 -29468,1202:228,28,22,0,0,0.415829 -29469,1202:229,29,22,0,0,0.420679 -29470,1203:120,30,22,0,0,0.429014 -29471,1203:121,31,22,0,0,0.431028 -29472,1203:122,32,22,0,0,0.43754 -29473,1203:123,33,22,0,0,0.442173 -29474,1203:124,34,22,0,0,0.445064 -29475,1203:225,35,22,0,0,0.486943 -29476,1212:121,121,22,0,0,0.23859 -29477,1212:122,122,22,0,0,0.282347 -29478,1212:123,123,22,0,0,0.355316 -29479,1212:124,124,22,0,0,0.389737 -29480,1212:225,125,22,0,0,0.351162 -29481,1212:226,126,22,0,0,0.30139 -29482,1212:228,128,22,0,0,0.254367 -29483,1212:229,129,22,0,0,0.328442 -29484,1213:120,130,22,0,0,0.425694 -29485,1213:121,131,22,0,0,0.444658 -29486,1213:225,135,22,0,0,0.320604 -29487,1213:227,137,22,0,0,0.358193 -29488,1213:229,139,22,0,0,0.432414 -29489,1214:120,140,22,0,0,0.442629 -29490,1214:121,141,22,0,0,0.455057 -29491,1214:122,142,22,0,0,0.473941 -29492,1214:123,143,22,0,0,0.479247 -29493,1214:124,144,22,0,0,0.472763 -29494,1214:225,145,22,0,0,0.430877 -29495,1214:226,146,22,0,0,0.417802 -29496,1214:227,147,22,0,0,0.455618 -29497,1214:228,148,22,0,0,0.479118 -29498,1214:229,149,22,0,0,0.473121 -29499,1215:120,150,22,0,0,0.478554 -29500,1215:121,151,22,0,0,0.455236 -29501,1215:122,152,22,0,0,0.476504 -29502,1215:123,153,22,0,0,0.483633 -29503,1215:124,154,22,0,0,0.47999 -29504,1215:225,155,22,0,0,0.48135 -29505,1215:226,156,22,0,0,0.466289 -29506,1215:227,157,22,0,0,0.474941 -29507,1215:228,158,22,0,0,0.448822 -29508,1215:229,159,22,0,0,0.455057 -29509,1216:120,160,22,0,0,0.445927 -29510,1216:121,161,22,0,0,0.430474 -29511,1216:122,162,22,0,0,0.414706 -29512,1216:123,163,22,0,0,0.407692 -29513,1216:124,164,22,0,0,0.404223 -29514,1216:225,165,22,0,0,0.396921 -29515,1216:226,166,22,0,0,0.389664 -29516,1216:227,167,22,0,0,0.389713 -29517,1216:228,168,22,0,0,0.390642 -29518,1216:229,169,22,0,0,0.391523 -29519,1217:120,170,22,0,0,0.389542 -29520,1217:121,171,22,0,0,0.384642 -29521,1217:122,172,22,0,0,0.379669 -29522,1217:123,173,22,0,0,0.383452 -29523,1217:124,174,22,0,0,0.374866 -29524,1217:225,175,22,0,0,0.36956 -29525,1217:226,176,22,0,0,0.368842 -29526,1217:227,177,22,0,0,0.361293 -29527,1217:228,178,22,0,0,0.357603 -29528,1217:229,179,22,0,0,0.355811 -29529,1218:120,180,22,0,0,0.357791 -29530,7218:130,-180,23,0,0,0.334429 -29531,7217:239,-179,23,0,0,0.336513 -29532,7217:238,-178,23,0,0,0.333035 -29533,7217:237,-177,23,0,0,0.325774 -29534,7217:236,-176,23,0,0,0.327106 -29535,7217:235,-175,23,0,0,0.326745 -29536,7217:134,-174,23,0,0,0.32085 -29537,7217:133,-173,23,0,0,0.319576 -29538,7217:132,-172,23,0,0,0.318215 -29539,7217:131,-171,23,0,0,0.314925 -29540,7217:130,-170,23,0,0,0.313773 -29541,7216:239,-169,23,0,0,0.313331 -29542,7216:238,-168,23,0,0,0.316501 -29543,7216:237,-167,23,0,0,0.317969 -29544,7216:236,-166,23,0,0,0.320627 -29545,7216:235,-165,23,0,0,0.321433 -29546,7216:134,-164,23,0,0,0.321164 -29547,7216:133,-163,23,0,0,0.32085 -29548,7216:132,-162,23,0,0,0.321702 -29549,7216:131,-161,23,0,0,0.330439 -29550,7216:130,-160,23,0,0,0.330644 -29551,7215:239,-159,23,0,0,0.329213 -29552,7215:238,-158,23,0,0,0.333835 -29553,7215:237,-157,23,0,0,0.336972 -29554,7215:236,-156,23,0,0,0.337432 -29555,7215:235,-155,23,0,0,0.341025 -29556,7215:134,-154,23,0,0,0.342712 -29557,7215:133,-153,23,0,0,0.349618 -29558,7215:132,-152,23,0,0,0.352685 -29559,7215:131,-151,23,0,0,0.352286 -29560,7215:130,-150,23,0,0,0.349408 -29561,7214:239,-149,23,0,0,0.36134 -29562,7214:238,-148,23,0,0,0.353553 -29563,7214:237,-147,23,0,0,0.362836 -29564,7214:236,-146,23,0,0,0.35534 -29565,7214:235,-145,23,0,0,0.358783 -29566,7214:134,-144,23,0,0,0.361412 -29567,7214:133,-143,23,0,0,0.341533 -29568,7214:132,-142,23,0,0,0.346122 -29569,7214:131,-141,23,0,0,0.364547 -29570,7214:130,-140,23,0,0,0.355999 -29571,7213:239,-139,23,0,0,0.363145 -29572,7213:238,-138,23,0,0,0.357414 -29573,7213:237,-137,23,0,0,0.350016 -29574,7213:236,-136,23,0,0,0.364476 -29575,7213:235,-135,23,0,0,0.359848 -29576,7213:134,-134,23,0,0,0.358453 -29577,7213:133,-133,23,0,0,0.345053 -29578,7213:132,-132,23,0,0,0.340817 -29579,7213:131,-131,23,0,0,0.336032 -29580,7213:130,-130,23,0,0,0.32944 -29581,7212:239,-129,23,0,0,0.318058 -29582,7212:238,-128,23,0,0,0.307043 -29583,7212:237,-127,23,0,0,0.310904 -29584,7212:236,-126,23,0,0,0.316745 -29585,7212:235,-125,23,0,0,0.310046 -29586,7212:134,-124,23,0,0,0.293766 -29587,7212:133,-123,23,0,0,0.297274 -29588,7212:132,-122,23,0,0,0.296223 -29589,7207:235,-75,23,0,0,0.472148 -29590,7207:134,-74,23,0,0,0.540432 -29591,7207:133,-73,23,0,0,0.527496 -29592,7207:132,-72,23,0,0,0.481555 -29593,7207:131,-71,23,0,0,0.485198 -29594,7207:130,-70,23,0,0,0.502506 -29595,7206:239,-69,23,0,0,0.489228 -29596,7206:238,-68,23,0,0,0.49498 -29597,7206:237,-67,23,0,0,0.490589 -29598,7206:236,-66,23,0,0,0.474505 -29599,7206:235,-65,23,0,0,0.47284 -29600,7206:134,-64,23,0,0,0.466621 -29601,7206:133,-63,23,0,0,0.460234 -29602,7206:132,-62,23,0,0,0.462251 -29603,7206:131,-61,23,0,0,0.452791 -29604,7206:130,-60,23,0,0,0.443948 -29605,7205:239,-59,23,0,0,0.441489 -29606,7205:238,-58,23,0,0,0.435241 -29607,7205:237,-57,23,0,0,0.4306 -29608,7205:236,-56,23,0,0,0.430978 -29609,7205:235,-55,23,0,0,0.433095 -29610,7205:134,-54,23,0,0,0.428309 -29611,7205:133,-53,23,0,0,0.425946 -29612,7205:132,-52,23,0,0,0.433373 -29613,7205:131,-51,23,0,0,0.434837 -29614,7205:130,-50,23,0,0,0.424062 -29615,7204:239,-49,23,0,0,0.416103 -29616,7204:238,-48,23,0,0,0.419903 -29617,7204:237,-47,23,0,0,0.414033 -29618,7204:236,-46,23,0,0,0.416203 -29619,7204:235,-45,23,0,0,0.415305 -29620,7204:134,-44,23,0,0,0.409479 -29621,7204:133,-43,23,0,0,0.404817 -29622,7204:132,-42,23,0,0,0.400961 -29623,7204:131,-41,23,0,0,0.408213 -29624,7204:130,-40,23,0,0,0.405857 -29625,7203:239,-39,23,0,0,0.393434 -29626,7203:238,-38,23,0,0,0.39238 -29627,7203:237,-37,23,0,0,0.396158 -29628,7203:236,-36,23,0,0,0.400171 -29629,7203:235,-35,23,0,0,0.386492 -29630,7203:134,-34,23,0,0,0.396232 -29631,7203:133,-33,23,0,0,0.387394 -29632,7203:132,-32,23,0,0,0.389298 -29633,7203:131,-31,23,0,0,0.387126 -29634,7203:130,-30,23,0,0,0.385177 -29635,7202:239,-29,23,0,0,0.40222 -29636,7202:238,-28,23,0,0,0.391841 -29637,7202:237,-27,23,0,0,0.38367 -29638,7202:236,-26,23,0,0,0.391425 -29639,7202:235,-25,23,0,0,0.392453 -29640,7202:134,-24,23,0,0,0.402739 -29641,7202:133,-23,23,0,0,0.399235 -29642,7202:132,-22,23,0,0,0.406625 -29643,7202:131,-21,23,0,0,0.402443 -29644,7202:130,-20,23,0,0,0.405683 -29645,7201:239,-19,23,0,0,0.411443 -29646,7201:238,-18,23,0,0,0.410896 -29647,7201:237,-17,23,0,0,0.41356 -29648,7201:236,-16,23,0,0,0.415829 -29649,7201:235,-15,23,0,0,0.415804 -29650,7201:134,-14,23,0,0,0.410647 -29651,7201:133,-13,23,0,0,0.402566 -29652,7201:132,-12,23,0,0,0.404495 -29653,7201:131,-11,23,0,0,0.409851 -29654,7201:130,-10,23,0,0,0.383111 -29655,7200:239,-9,23,0,0,0.379548 -29656,7200:238,-8,23,0,0,0.375757 -29657,7200:237,-7,23,0,0,0.379355 -29658,7200:236,-6,23,0,0,0.357202 -29659,7200:235,-5,23,0,0,0.349688 -29660,7200:134,-4,23,0,0,0.332533 -29661,7200:133,-3,23,0,0,0.344984 -29662,7200:132,-2,23,0,0,0.352263 -29663,7200:131,-1,23,0,0,0.367552 -29664,1201:131,11,23,0,0,0.395348 -29665,1201:132,12,23,0,0,0.395987 -29666,1201:133,13,23,0,0,0.386736 -29667,1201:134,14,23,0,0,0.378798 -29668,1201:235,15,23,0,0,0.392722 -29669,1201:236,16,23,0,0,0.396674 -29670,1201:237,17,23,0,0,0.396109 -29671,1201:238,18,23,0,0,0.396724 -29672,1201:239,19,23,0,0,0.402888 -29673,1202:130,20,23,0,0,0.418252 -29674,1202:131,21,23,0,0,0.418827 -29675,1202:132,22,23,0,0,0.418952 -29676,1202:133,23,23,0,0,0.414282 -29677,1202:134,24,23,0,0,0.415879 -29678,1202:235,25,23,0,0,0.418452 -29679,1202:236,26,23,0,0,0.414931 -29680,1202:237,27,23,0,0,0.425569 -29681,1202:238,28,23,0,0,0.424916 -29682,1202:239,29,23,0,0,0.42846 -29683,1203:130,30,23,0,0,0.425041 -29684,1203:131,31,23,0,0,0.436807 -29685,1203:132,32,23,0,0,0.44989 -29686,1203:133,33,23,0,0,0.45274 -29687,1203:134,34,23,0,0,0.444937 -29688,1203:235,35,23,0,0,0.482915 -29689,1212:130,120,23,0,0,0.257359 -29691,1212:132,122,23,0,0,0.274606 -29692,1212:133,123,23,0,0,0.331486 -29693,1212:134,124,23,0,0,0.367528 -29694,1212:235,125,23,0,0,0.35238 -29695,1212:236,126,23,0,0,0.304144 -29696,1213:130,130,23,0,0,0.407171 -29697,1213:131,131,23,0,0,0.412713 -29698,1213:132,132,23,0,0,0.410374 -29699,1213:133,133,23,0,0,0.437136 -29700,1213:134,134,23,0,0,0.429416 -29701,1213:235,135,23,0,0,0.423611 -29702,1213:236,136,23,0,0,0.42459 -29703,1214:132,142,23,0,0,0.421079 -29704,1214:133,143,23,0,0,0.422558 -29705,1214:134,144,23,0,0,0.430827 -29706,1214:235,145,23,0,0,0.430524 -29707,1214:236,146,23,0,0,0.425594 -29708,1214:237,147,23,0,0,0.426499 -29709,1214:238,148,23,0,0,0.443162 -29710,1214:239,149,23,0,0,0.454905 -29711,1215:130,150,23,0,0,0.453631 -29712,1215:131,151,23,0,0,0.456638 -29713,1215:132,152,23,0,0,0.461051 -29714,1215:133,153,23,0,0,0.456688 -29715,1215:134,154,23,0,0,0.45246 -29716,1215:235,155,23,0,0,0.462813 -29717,1215:236,156,23,0,0,0.467337 -29718,1215:237,157,23,0,0,0.470101 -29719,1215:238,158,23,0,0,0.437894 -29720,1215:239,159,23,0,0,0.450551 -29721,1216:130,160,23,0,0,0.401603 -29722,1216:131,161,23,0,0,0.409156 -29723,1216:132,162,23,0,0,0.4268 -29724,1216:133,163,23,0,0,0.415854 -29725,1216:134,164,23,0,0,0.400566 -29726,1216:235,165,23,0,0,0.393728 -29727,1216:236,166,23,0,0,0.377301 -29728,1216:237,167,23,0,0,0.367862 -29729,1216:238,168,23,0,0,0.357248 -29730,1216:239,169,23,0,0,0.35238 -29731,1217:130,170,23,0,0,0.353107 -29732,1217:131,171,23,0,0,0.359659 -29733,1217:132,172,23,0,0,0.357343 -29734,1217:133,173,23,0,0,0.358193 -29735,1217:134,174,23,0,0,0.3517 -29736,1217:235,175,23,0,0,0.348521 -29737,1217:236,176,23,0,0,0.351865 -29738,1217:237,177,23,0,0,0.346564 -29739,1217:238,178,23,0,0,0.343592 -29740,1217:239,179,23,0,0,0.336307 -29741,1218:130,180,23,0,0,0.334429 -29742,7218:140,-180,24,0,0,0.301779 -29743,7217:249,-179,24,0,0,0.303536 -29744,7217:248,-178,24,0,0,0.301109 -29745,7217:247,-177,24,0,0,0.293404 -29746,7217:246,-176,24,0,0,0.298391 -29747,7217:245,-175,24,0,0,0.29992 -29748,7217:144,-174,24,0,0,0.293063 -29749,7217:143,-173,24,0,0,0.295837 -29750,7217:142,-172,24,0,0,0.301216 -29751,7217:141,-171,24,0,0,0.298886 -29752,7217:140,-170,24,0,0,0.297918 -29753,7216:249,-169,24,0,0,0.296738 -29754,7216:248,-168,24,0,0,0.298972 -29755,7216:247,-167,24,0,0,0.30508 -29756,7216:246,-166,24,0,0,0.303188 -29757,7216:245,-165,24,0,0,0.303448 -29758,7216:144,-164,24,0,0,0.300719 -29759,7216:143,-163,24,0,0,0.302797 -29760,7216:142,-162,24,0,0,0.303644 -29761,7216:141,-161,24,0,0,0.311169 -29762,7216:140,-160,24,0,0,0.306257 -29763,7215:249,-159,24,0,0,0.307744 -29764,7215:248,-158,24,0,0,0.320537 -29765,7215:247,-157,24,0,0,0.31846 -29766,7215:246,-156,24,0,0,0.324016 -29767,7215:245,-155,24,0,0,0.326157 -29768,7215:144,-154,24,0,0,0.329485 -29769,7215:143,-153,24,0,0,0.325435 -29770,7215:142,-152,24,0,0,0.319531 -29771,7215:141,-151,24,0,0,0.328238 -29772,7215:140,-150,24,0,0,0.335963 -29773,7214:249,-149,24,0,0,0.333401 -29774,7214:248,-148,24,0,0,0.339156 -29775,7214:247,-147,24,0,0,0.334087 -29776,7214:246,-146,24,0,0,0.339825 -29777,7214:245,-145,24,0,0,0.334841 -29778,7214:144,-144,24,0,0,0.344914 -29779,7214:143,-143,24,0,0,0.343685 -29780,7214:142,-142,24,0,0,0.338144 -29781,7214:141,-141,24,0,0,0.34682 -29782,7214:140,-140,24,0,0,0.336399 -29783,7213:249,-139,24,0,0,0.343685 -29784,7213:248,-138,24,0,0,0.340655 -29785,7213:247,-137,24,0,0,0.345193 -29786,7213:246,-136,24,0,0,0.352075 -29787,7213:245,-135,24,0,0,0.353624 -29788,7213:144,-134,24,0,0,0.346797 -29789,7213:143,-133,24,0,0,0.34054 -29790,7213:142,-132,24,0,0,0.337065 -29791,7213:141,-131,24,0,0,0.333355 -29792,7213:140,-130,24,0,0,0.327966 -29793,7212:249,-129,24,0,0,0.314747 -29794,7212:248,-128,24,0,0,0.300287 -29795,7212:247,-127,24,0,0,0.295196 -29796,7212:246,-126,24,0,0,0.289838 -29797,7212:245,-125,24,0,0,0.293404 -29798,7212:144,-124,24,0,0,0.29096 -29799,7212:143,-123,24,0,0,0.288845 -29800,7212:142,-122,24,0,0,0.279483 -29801,7207:246,-76,24,0,0,0.318505 -29802,7207:245,-75,24,0,0,0.420628 -29803,7207:144,-74,24,0,0,0.517807 -29804,7207:143,-73,24,0,0,0.535427 -29805,7207:142,-72,24,0,0,0.517345 -29806,7207:141,-71,24,0,0,0.498859 -29807,7207:140,-70,24,0,0,0.505254 -29808,7206:249,-69,24,0,0,0.515369 -29809,7206:248,-68,24,0,0,0.500271 -29810,7206:247,-67,24,0,0,0.48117 -29811,7206:246,-66,24,0,0,0.487379 -29812,7206:245,-65,24,0,0,0.481042 -29813,7206:144,-64,24,0,0,0.470356 -29814,7206:143,-63,24,0,0,0.465778 -29815,7206:142,-62,24,0,0,0.45549 -29816,7206:141,-61,24,0,0,0.452841 -29817,7206:140,-60,24,0,0,0.446917 -29818,7205:249,-59,24,0,0,0.444455 -29819,7205:248,-58,24,0,0,0.433726 -29820,7205:247,-57,24,0,0,0.432843 -29821,7205:246,-56,24,0,0,0.427554 -29822,7205:245,-55,24,0,0,0.427353 -29823,7205:144,-54,24,0,0,0.426775 -29824,7205:143,-53,24,0,0,0.427152 -29825,7205:142,-52,24,0,0,0.416303 -29826,7205:141,-51,24,0,0,0.411891 -29827,7205:140,-50,24,0,0,0.40665 -29828,7204:249,-49,24,0,0,0.404668 -29829,7204:248,-48,24,0,0,0.400024 -29830,7204:247,-47,24,0,0,0.403901 -29831,7204:246,-46,24,0,0,0.399358 -29832,7204:245,-45,24,0,0,0.399802 -29833,7204:144,-44,24,0,0,0.3926 -29834,7204:143,-43,24,0,0,0.391914 -29835,7204:142,-42,24,0,0,0.38859 -29836,7204:141,-41,24,0,0,0.38367 -29837,7204:140,-40,24,0,0,0.388443 -29838,7203:249,-39,24,0,0,0.387881 -29839,7203:248,-38,24,0,0,0.385543 -29840,7203:247,-37,24,0,0,0.380202 -29841,7203:246,-36,24,0,0,0.376529 -29842,7203:245,-35,24,0,0,0.378436 -29843,7203:144,-34,24,0,0,0.375805 -29844,7203:143,-33,24,0,0,0.374577 -29845,7203:142,-32,24,0,0,0.370518 -29846,7203:141,-31,24,0,0,0.368101 -29847,7203:140,-30,24,0,0,0.373326 -29848,7202:249,-29,24,0,0,0.370542 -29849,7202:248,-28,24,0,0,0.370854 -29850,7202:247,-27,24,0,0,0.368818 -29851,7202:246,-26,24,0,0,0.37513 -29852,7202:245,-25,24,0,0,0.373158 -29853,7202:144,-24,24,0,0,0.378919 -29854,7202:143,-23,24,0,0,0.382674 -29855,7202:142,-22,24,0,0,0.385883 -29856,7202:141,-21,24,0,0,0.384059 -29857,7202:140,-20,24,0,0,0.388077 -29858,7201:249,-19,24,0,0,0.393409 -29859,7201:248,-18,24,0,0,0.394832 -29860,7201:247,-17,24,0,0,0.396183 -29861,7201:246,-16,24,0,0,0.395642 -29862,7201:245,-15,24,0,0,0.393066 -29863,7201:144,-14,24,0,0,0.393997 -29864,7201:143,-13,24,0,0,0.395372 -29865,7201:142,-12,24,0,0,0.385518 -29866,7201:141,-11,24,0,0,0.382965 -29867,7201:140,-10,24,0,0,0.355222 -29868,7200:142,-2,24,0,0,0.337501 -29869,7200:141,-1,24,0,0,0.34582 -29870,1200:141,0,24,0,0,0.373014 -29871,1200:141,1,24,0,0,0.364809 -29872,1200:142,2,24,0,0,0.373014 -29873,1200:143,3,24,0,0,0.376239 -29874,1200:144,4,24,0,0,0.381437 -29875,1200:245,5,24,0,0,0.38401 -29876,1200:248,8,24,0,0,0.393826 -29877,1201:140,10,24,0,0,0.389688 -29878,1201:141,11,24,0,0,0.388053 -29879,1201:142,12,24,0,0,0.37047 -29880,1201:143,13,24,0,0,0.360843 -29881,1201:144,14,24,0,0,0.358524 -29882,1201:245,15,24,0,0,0.399727 -29883,1201:246,16,24,0,0,0.396699 -29884,1201:247,17,24,0,0,0.394587 -29885,1201:248,18,24,0,0,0.401085 -29886,1201:249,19,24,0,0,0.417952 -29887,1202:140,20,24,0,0,0.420603 -29888,1202:141,21,24,0,0,0.417377 -29889,1202:143,23,24,0,0,0.404297 -29890,1202:144,24,24,0,0,0.411294 -29891,1202:245,25,24,0,0,0.418302 -29892,1202:246,26,24,0,0,0.428007 -29893,1202:247,27,24,0,0,0.437439 -29894,1202:248,28,24,0,0,0.45544 -29895,1203:141,31,24,0,0,0.470945 -29896,1203:144,34,24,0,0,0.480503 -29897,1203:245,35,24,0,0,0.48679 -29898,1212:142,122,24,0,0,0.212397 -29899,1212:143,123,24,0,0,0.23859 -29900,1212:144,124,24,0,0,0.344729 -29901,1212:245,125,24,0,0,0.352403 -29902,1212:246,126,24,0,0,0.245259 -29903,1213:140,130,24,0,0,0.396404 -29904,1213:141,131,24,0,0,0.341764 -29905,1213:142,132,24,0,0,0.389151 -29906,1213:143,133,24,0,0,0.404272 -29907,1213:144,134,24,0,0,0.404767 -29908,1213:245,135,24,0,0,0.386443 -29909,1213:246,136,24,0,0,0.400393 -29910,1213:247,137,24,0,0,0.396896 -29911,1213:248,138,24,0,0,0.401356 -29912,1214:142,142,24,0,0,0.412239 -29913,1214:143,143,24,0,0,0.429618 -29914,1214:144,144,24,0,0,0.414133 -29915,1214:245,145,24,0,0,0.408064 -29916,1214:246,146,24,0,0,0.411966 -29917,1214:247,147,24,0,0,0.433121 -29918,1214:248,148,24,0,0,0.440374 -29919,1214:249,149,24,0,0,0.436049 -29920,1215:140,150,24,0,0,0.418502 -29921,1215:141,151,24,0,0,0.416678 -29922,1215:142,152,24,0,0,0.414507 -29923,1215:143,153,24,0,0,0.41097 -29924,1215:144,154,24,0,0,0.408833 -29925,1215:245,155,24,0,0,0.401504 -29926,1215:246,156,24,0,0,0.390471 -29927,1215:247,157,24,0,0,0.396428 -29928,1215:248,158,24,0,0,0.420904 -29929,1215:249,159,24,0,0,0.412663 -29930,1216:140,160,24,0,0,0.410697 -29931,1216:141,161,24,0,0,0.386565 -29932,1216:142,162,24,0,0,0.376987 -29933,1216:143,163,24,0,0,0.37071 -29934,1216:144,164,24,0,0,0.373615 -29935,1216:245,165,24,0,0,0.373927 -29936,1216:246,166,24,0,0,0.372269 -29937,1216:247,167,24,0,0,0.361009 -29938,1216:248,168,24,0,0,0.356117 -29939,1216:249,169,24,0,0,0.349595 -29940,1217:140,170,24,0,0,0.345193 -29941,1217:141,171,24,0,0,0.340609 -29942,1217:142,172,24,0,0,0.335734 -29943,1217:143,173,24,0,0,0.328646 -29944,1217:144,174,24,0,0,0.321209 -29945,1217:245,175,24,0,0,0.321792 -29946,1217:246,176,24,0,0,0.312624 -29947,1217:247,177,24,0,0,0.310288 -29948,1217:248,178,24,0,0,0.314282 -29949,1217:249,179,24,0,0,0.309059 -29950,1218:140,180,24,0,0,0.301779 -29951,7218:350,-180,25,0,0,0.278656 -29952,7217:459,-179,25,0,0,0.278037 -29953,7217:458,-178,25,0,0,0.282409 -29954,7217:457,-177,25,0,0,0.272829 -29955,7217:456,-176,25,0,0,0.272197 -29956,7217:455,-175,25,0,0,0.275527 -29957,7217:354,-174,25,0,0,0.275835 -29958,7217:353,-173,25,0,0,0.277851 -29959,7217:352,-172,25,0,0,0.277665 -29960,7217:351,-171,25,0,0,0.276102 -29961,7217:350,-170,25,0,0,0.278759 -29962,7216:459,-169,25,0,0,0.281847 -29963,7216:458,-168,25,0,0,0.28569 -29964,7216:457,-167,25,0,0,0.292319 -29965,7216:456,-166,25,0,0,0.284099 -29966,7216:455,-165,25,0,0,0.278697 -29967,7216:354,-164,25,0,0,0.283827 -29968,7216:353,-163,25,0,0,0.28318 -29969,7216:352,-162,25,0,0,0.282471 -29970,7216:351,-161,25,0,0,0.284391 -29971,7216:350,-160,25,0,0,0.282638 -29972,7215:459,-159,25,0,0,0.285774 -29973,7215:458,-158,25,0,0,0.293084 -29974,7215:457,-157,25,0,0,0.290473 -29975,7215:456,-156,25,0,0,0.300158 -29976,7215:455,-155,25,0,0,0.301238 -29977,7215:354,-154,25,0,0,0.303383 -29978,7215:353,-153,25,0,0,0.30018 -29979,7215:352,-152,25,0,0,0.310178 -29980,7215:351,-151,25,0,0,0.309059 -29981,7215:350,-150,25,0,0,0.31539 -29982,7214:459,-149,25,0,0,0.313751 -29983,7214:458,-148,25,0,0,0.315324 -29984,7214:457,-147,25,0,0,0.317635 -29985,7214:456,-146,25,0,0,0.315258 -29986,7214:455,-145,25,0,0,0.315124 -29987,7214:354,-144,25,0,0,0.317235 -29988,7214:353,-143,25,0,0,0.319017 -29989,7214:352,-142,25,0,0,0.321926 -29990,7214:351,-141,25,0,0,0.332465 -29991,7214:350,-140,25,0,0,0.332055 -29992,7213:459,-139,25,0,0,0.315568 -29993,7213:458,-138,25,0,0,0.330484 -29994,7213:457,-137,25,0,0,0.327558 -29995,7213:456,-136,25,0,0,0.336124 -29996,7213:455,-135,25,0,0,0.341764 -29997,7213:354,-134,25,0,0,0.342527 -29998,7213:353,-133,25,0,0,0.335642 -29999,7213:352,-132,25,0,0,0.329168 -30000,7213:351,-131,25,0,0,0.322307 -30001,7213:350,-130,25,0,0,0.326044 -30002,7212:459,-129,25,0,0,0.317168 -30003,7212:458,-128,25,0,0,0.311851 -30004,7212:457,-127,25,0,0,0.299252 -30005,7212:456,-126,25,0,0,0.289648 -30006,7212:455,-125,25,0,0,0.289014 -30007,7212:354,-124,25,0,0,0.27783 -30008,7212:353,-123,25,0,0,0.265712 -30009,7207:456,-76,25,0,0,0.288128 -30010,7207:455,-75,25,0,0,0.318839 -30011,7207:354,-74,25,0,0,0.439387 -30012,7207:353,-73,25,0,0,0.491308 -30013,7207:352,-72,25,0,0,0.50397 -30014,7207:351,-71,25,0,0,0.492643 -30015,7207:350,-70,25,0,0,0.443897 -30016,7206:459,-69,25,0,0,0.438021 -30017,7206:458,-68,25,0,0,0.490563 -30018,7206:457,-67,25,0,0,0.491103 -30019,7206:456,-66,25,0,0,0.462251 -30020,7206:455,-65,25,0,0,0.468744 -30021,7206:354,-64,25,0,0,0.472635 -30022,7206:353,-63,25,0,0,0.462277 -30023,7206:352,-62,25,0,0,0.46634 -30024,7206:351,-61,25,0,0,0.453071 -30025,7206:350,-60,25,0,0,0.426825 -30026,7205:459,-59,25,0,0,0.423561 -30027,7205:458,-58,25,0,0,0.423386 -30028,7205:457,-57,25,0,0,0.418702 -30029,7205:456,-56,25,0,0,0.414905 -30030,7205:455,-55,25,0,0,0.418727 -30031,7205:354,-54,25,0,0,0.425519 -30032,7205:353,-53,25,0,0,0.425368 -30033,7205:352,-52,25,0,0,0.417077 -30034,7205:351,-51,25,0,0,0.402813 -30035,7205:350,-50,25,0,0,0.397044 -30036,7204:459,-49,25,0,0,0.391131 -30037,7204:458,-48,25,0,0,0.388565 -30038,7204:457,-47,25,0,0,0.395691 -30039,7204:456,-46,25,0,0,0.397388 -30040,7204:455,-45,25,0,0,0.399752 -30041,7204:354,-44,25,0,0,0.399407 -30042,7204:353,-43,25,0,0,0.378146 -30043,7204:352,-42,25,0,0,0.373278 -30044,7204:351,-41,25,0,0,0.373686 -30045,7204:350,-40,25,0,0,0.372701 -30046,7203:459,-39,25,0,0,0.377228 -30047,7203:458,-38,25,0,0,0.374529 -30048,7203:457,-37,25,0,0,0.368818 -30049,7203:456,-36,25,0,0,0.371381 -30050,7203:455,-35,25,0,0,0.371813 -30051,7203:354,-34,25,0,0,0.367432 -30052,7203:353,-33,25,0,0,0.360061 -30053,7203:352,-32,25,0,0,0.359044 -30054,7203:351,-31,25,0,0,0.36324 -30055,7203:350,-30,25,0,0,0.358406 -30056,7202:458,-28,25,0,0,0.356518 -30057,7202:457,-27,25,0,0,0.351279 -30058,7202:456,-26,25,0,0,0.356541 -30059,7202:455,-25,25,0,0,0.361886 -30060,7202:354,-24,25,0,0,0.365476 -30061,7202:353,-23,25,0,0,0.35876 -30062,7202:352,-22,25,0,0,0.364119 -30063,7202:351,-21,25,0,0,0.369967 -30064,7202:350,-20,25,0,0,0.374914 -30065,7201:459,-19,25,0,0,0.368914 -30066,7201:458,-18,25,0,0,0.372726 -30067,7201:457,-17,25,0,0,0.37107 -30068,7201:456,-16,25,0,0,0.372149 -30069,7201:455,-15,25,0,0,0.373639 -30070,7201:354,-14,25,0,0,0.371309 -30071,7201:353,-13,25,0,0,0.372605 -30072,7201:352,-12,25,0,0,0.381147 -30073,7201:351,-11,25,0,0,0.374817 -30074,7201:350,-10,25,0,0,0.343801 -30075,1200:351,0,25,0,0,0.366263 -30076,1200:351,1,25,0,0,0.379379 -30077,1200:352,2,25,0,0,0.381656 -30078,1200:353,3,25,0,0,0.383913 -30079,1200:354,4,25,0,0,0.384739 -30080,1200:455,5,25,0,0,0.385372 -30081,1200:456,6,25,0,0,0.381656 -30082,1200:457,7,25,0,0,0.388931 -30083,1200:458,8,25,0,0,0.377977 -30084,1200:459,9,25,0,0,0.373061 -30085,1201:350,10,25,0,0,0.368938 -30086,1201:351,11,25,0,0,0.372845 -30087,1201:352,12,25,0,0,0.373422 -30088,1201:455,15,25,0,0,0.399481 -30089,1201:456,16,25,0,0,0.396085 -30090,1201:457,17,25,0,0,0.38854 -30091,1201:458,18,25,0,0,0.393458 -30092,1201:459,19,25,0,0,0.413684 -30093,1202:350,20,25,0,0,0.423511 -30094,1202:353,23,25,0,0,0.40264 -30095,1202:354,24,25,0,0,0.399949 -30096,1202:455,25,25,0,0,0.41518 -30097,1202:456,26,25,0,0,0.433247 -30098,1212:350,120,25,0,0,0.188275 -30099,1212:352,122,25,0,0,0.209558 -30100,1212:353,123,25,0,0,0.242814 -30101,1212:354,124,25,0,0,0.306585 -30102,1212:455,125,25,0,0,0.288634 -30103,1212:456,126,25,0,0,0.193591 -30104,1213:350,130,25,0,0,0.382747 -30105,1213:351,131,25,0,0,0.32885 -30106,1213:352,132,25,0,0,0.355716 -30107,1213:353,133,25,0,0,0.328216 -30108,1213:354,134,25,0,0,0.325232 -30109,1213:455,135,25,0,0,0.343523 -30110,1213:456,136,25,0,0,0.320962 -30111,1213:457,137,25,0,0,0.362907 -30112,1213:458,138,25,0,0,0.383524 -30113,1213:459,139,25,0,0,0.384375 -30114,1214:352,142,25,0,0,0.351068 -30115,1214:353,143,25,0,0,0.418477 -30116,1214:354,144,25,0,0,0.410299 -30117,1214:455,145,25,0,0,0.404223 -30118,1214:456,146,25,0,0,0.350109 -30119,1214:457,147,25,0,0,0.358004 -30120,1214:458,148,25,0,0,0.417627 -30121,1214:459,149,25,0,0,0.420679 -30122,1215:350,150,25,0,0,0.418277 -30123,1215:351,151,25,0,0,0.412663 -30124,1215:352,152,25,0,0,0.369775 -30125,1215:353,153,25,0,0,0.353318 -30126,1215:354,154,25,0,0,0.377277 -30127,1215:455,155,25,0,0,0.384229 -30128,1215:456,156,25,0,0,0.361886 -30129,1215:457,157,25,0,0,0.358996 -30130,1215:458,158,25,0,0,0.389444 -30131,1215:459,159,25,0,0,0.406799 -30132,1216:350,160,25,0,0,0.394856 -30133,1216:351,161,25,0,0,0.376432 -30134,1216:352,162,25,0,0,0.38637 -30135,1216:353,163,25,0,0,0.363026 -30136,1216:354,164,25,0,0,0.378436 -30137,1216:455,165,25,0,0,0.352146 -30138,1216:456,166,25,0,0,0.361696 -30139,1216:457,167,25,0,0,0.352826 -30140,1216:458,168,25,0,0,0.342504 -30141,1216:459,169,25,0,0,0.345866 -30142,1217:350,170,25,0,0,0.345169 -30143,1217:351,171,25,0,0,0.338328 -30144,1217:352,172,25,0,0,0.333995 -30145,1217:353,173,25,0,0,0.323363 -30146,1217:354,174,25,0,0,0.312779 -30147,1217:455,175,25,0,0,0.305385 -30148,1217:456,176,25,0,0,0.297102 -30149,1217:457,177,25,0,0,0.292425 -30150,1217:458,178,25,0,0,0.292127 -30151,1217:459,179,25,0,0,0.290049 -30152,1218:350,180,25,0,0,0.278656 -30153,7218:360,-180,26,0,0,0.270126 -30154,7217:469,-179,26,0,0,0.260197 -30155,7217:468,-178,26,0,0,0.264572 -30156,7217:467,-177,26,0,0,0.260138 -30157,7217:466,-176,26,0,0,0.256183 -30158,7217:465,-175,26,0,0,0.252481 -30159,7217:364,-174,26,0,0,0.249487 -30160,7217:363,-173,26,0,0,0.253432 -30161,7217:362,-172,26,0,0,0.255811 -30162,7217:361,-171,26,0,0,0.251281 -30163,7217:360,-170,26,0,0,0.254113 -30164,7216:469,-169,26,0,0,0.264712 -30165,7216:468,-168,26,0,0,0.262041 -30166,7216:467,-167,26,0,0,0.256203 -30167,7216:466,-166,26,0,0,0.253938 -30168,7216:465,-165,26,0,0,0.255205 -30169,7216:364,-164,26,0,0,0.255792 -30170,7216:363,-163,26,0,0,0.264272 -30171,7216:362,-162,26,0,0,0.264552 -30172,7216:361,-161,26,0,0,0.264232 -30173,7216:360,-160,26,0,0,0.265432 -30174,7215:469,-159,26,0,0,0.266234 -30175,7215:468,-158,26,0,0,0.26738 -30176,7215:467,-157,26,0,0,0.269438 -30177,7215:466,-156,26,0,0,0.266837 -30178,7215:465,-155,26,0,0,0.272706 -30179,7215:364,-154,26,0,0,0.279565 -30180,7215:363,-153,26,0,0,0.281515 -30181,7215:362,-152,26,0,0,0.29603 -30182,7215:361,-151,26,0,0,0.289901 -30183,7215:360,-150,26,0,0,0.291511 -30184,7214:469,-149,26,0,0,0.292382 -30185,7214:468,-148,26,0,0,0.291851 -30186,7214:467,-147,26,0,0,0.289605 -30187,7214:466,-146,26,0,0,0.297467 -30188,7214:465,-145,26,0,0,0.30805 -30189,7214:364,-144,26,0,0,0.301865 -30190,7214:363,-143,26,0,0,0.300503 -30191,7214:362,-142,26,0,0,0.300136 -30192,7214:361,-141,26,0,0,0.30206 -30193,7214:360,-140,26,0,0,0.295709 -30194,7213:469,-139,26,0,0,0.305887 -30195,7213:468,-138,26,0,0,0.312668 -30196,7213:467,-137,26,0,0,0.314593 -30197,7213:466,-136,26,0,0,0.309212 -30198,7213:465,-135,26,0,0,0.317836 -30199,7213:364,-134,26,0,0,0.321321 -30200,7213:363,-133,26,0,0,0.325232 -30201,7213:362,-132,26,0,0,0.321814 -30202,7213:361,-131,26,0,0,0.313198 -30203,7213:360,-130,26,0,0,0.31353 -30204,7212:469,-129,26,0,0,0.306475 -30205,7212:468,-128,26,0,0,0.291873 -30206,7212:467,-127,26,0,0,0.287096 -30207,7212:466,-126,26,0,0,0.286067 -30208,7212:465,-125,26,0,0,0.277089 -30209,7212:364,-124,26,0,0,0.264432 -30210,7207:465,-75,26,0,0,0.259466 -30211,7207:364,-74,26,0,0,0.295239 -30212,7207:363,-73,26,0,0,0.354964 -30213,7207:362,-72,26,0,0,0.441818 -30214,7207:361,-71,26,0,0,0.431608 -30215,7207:360,-70,26,0,0,0.436934 -30216,7206:469,-69,26,0,0,0.438249 -30217,7206:468,-68,26,0,0,0.434332 -30218,7206:467,-67,26,0,0,0.486995 -30219,7206:466,-66,26,0,0,0.477964 -30220,7206:465,-65,26,0,0,0.470075 -30221,7206:364,-64,26,0,0,0.465675 -30222,7206:363,-63,26,0,0,0.418352 -30223,7206:362,-62,26,0,0,0.418452 -30224,7206:361,-61,26,0,0,0.456739 -30225,7206:360,-60,26,0,0,0.442199 -30226,7205:469,-59,26,0,0,0.435519 -30227,7205:468,-58,26,0,0,0.431835 -30228,7205:467,-57,26,0,0,0.433196 -30229,7205:466,-56,26,0,0,0.40923 -30230,7205:465,-55,26,0,0,0.416029 -30231,7205:364,-54,26,0,0,0.424966 -30232,7205:363,-53,26,0,0,0.382165 -30233,7205:362,-52,26,0,0,0.42341 -30234,7205:361,-51,26,0,0,0.403802 -30235,7205:360,-50,26,0,0,0.395593 -30236,7204:469,-49,26,0,0,0.392772 -30237,7204:468,-48,26,0,0,0.392551 -30238,7204:467,-47,26,0,0,0.388931 -30239,7204:466,-46,26,0,0,0.381656 -30240,7204:465,-45,26,0,0,0.365167 -30241,7204:364,-44,26,0,0,0.360701 -30242,7204:363,-43,26,0,0,0.376456 -30243,7204:362,-42,26,0,0,0.38859 -30244,7204:361,-41,26,0,0,0.37335 -30245,7204:360,-40,26,0,0,0.380178 -30246,7203:469,-39,26,0,0,0.377325 -30247,7203:468,-38,26,0,0,0.370302 -30248,7203:467,-37,26,0,0,0.373182 -30249,7203:466,-36,26,0,0,0.366668 -30250,7203:465,-35,26,0,0,0.360866 -30251,7203:364,-34,26,0,0,0.359185 -30252,7203:363,-33,26,0,0,0.349478 -30253,7203:362,-32,26,0,0,0.353953 -30254,7203:361,-31,26,0,0,0.354164 -30255,7203:360,-30,26,0,0,0.346797 -30256,7202:469,-29,26,0,0,0.348847 -30257,7202:468,-28,26,0,0,0.342365 -30258,7202:467,-27,26,0,0,0.340725 -30259,7202:466,-26,26,0,0,0.346843 -30260,7202:465,-25,26,0,0,0.347309 -30261,7202:364,-24,26,0,0,0.341648 -30262,7202:363,-23,26,0,0,0.348544 -30263,7202:362,-22,26,0,0,0.342226 -30264,7202:361,-21,26,0,0,0.337248 -30265,7202:360,-20,26,0,0,0.336766 -30266,7201:469,-19,26,0,0,0.346355 -30267,7201:468,-18,26,0,0,0.346401 -30268,7201:467,-17,26,0,0,0.352662 -30269,7201:466,-16,26,0,0,0.352427 -30270,7201:465,-15,26,0,0,0.347961 -30271,7201:364,-14,26,0,0,0.350647 -30272,7201:363,-13,26,0,0,0.35574 -30273,7201:362,-12,26,0,0,0.361696 -30274,7201:361,-11,26,0,0,0.353811 -30275,7201:360,-10,26,0,0,0.32548 -30276,1200:361,0,26,0,0,0.369775 -30277,1200:361,1,26,0,0,0.371141 -30278,1200:362,2,26,0,0,0.375324 -30279,1200:363,3,26,0,0,0.379887 -30280,1200:364,4,26,0,0,0.379742 -30281,1200:465,5,26,0,0,0.381073 -30282,1200:466,6,26,0,0,0.377759 -30283,1200:467,7,26,0,0,0.371549 -30284,1201:360,10,26,0,0,0.367814 -30285,1201:361,11,26,0,0,0.373278 -30286,1201:362,12,26,0,0,0.372653 -30287,1201:363,13,26,0,0,0.369799 -30288,1201:364,14,26,0,0,0.374481 -30289,1201:465,15,26,0,0,0.377952 -30290,1201:467,17,26,0,0,0.392135 -30291,1201:468,18,26,0,0,0.390348 -30292,1201:469,19,26,0,0,0.402319 -30293,1202:360,20,26,0,0,0.419327 -30294,1202:364,24,26,0,0,0.402048 -30295,1202:465,25,26,0,0,0.413161 -30296,1202:466,26,26,0,0,0.426021 -30297,1211:469,119,26,0,0,0.18548 -30298,1212:360,120,26,0,0,0.219301 -30299,1212:361,121,26,0,0,0.246727 -30300,1212:362,122,26,0,0,0.26867 -30301,1212:363,123,26,0,0,0.261406 -30302,1212:364,124,26,0,0,0.254796 -30303,1212:465,125,26,0,0,0.223873 -30304,1212:469,129,26,0,0,0.371621 -30305,1213:360,130,26,0,0,0.326676 -30306,1213:361,131,26,0,0,0.301281 -30307,1213:362,132,26,0,0,0.328102 -30308,1213:363,133,26,0,0,0.335001 -30309,1213:364,134,26,0,0,0.294427 -30310,1213:465,135,26,0,0,0.316545 -30311,1213:466,136,26,0,0,0.275487 -30312,1213:467,137,26,0,0,0.348988 -30313,1213:468,138,26,0,0,0.304035 -30314,1213:469,139,26,0,0,0.371381 -30315,1214:360,140,26,0,0,0.373038 -30316,1214:363,143,26,0,0,0.314659 -30317,1214:364,144,26,0,0,0.40856 -30318,1214:465,145,26,0,0,0.35706 -30319,1214:466,146,26,0,0,0.297467 -30320,1214:467,147,26,0,0,0.283201 -30321,1214:468,148,26,0,0,0.29251 -30322,1214:469,149,26,0,0,0.322285 -30323,1215:360,150,26,0,0,0.326022 -30324,1215:361,151,26,0,0,0.320336 -30325,1215:362,152,26,0,0,0.32168 -30326,1215:363,153,26,0,0,0.311543 -30327,1215:364,154,26,0,0,0.319464 -30328,1215:465,155,26,0,0,0.334132 -30329,1215:466,156,26,0,0,0.323004 -30330,1215:467,157,26,0,0,0.341718 -30331,1215:468,158,26,0,0,0.344334 -30332,1215:469,159,26,0,0,0.372894 -30333,1216:360,160,26,0,0,0.331805 -30334,1216:361,161,26,0,0,0.324691 -30335,1216:362,162,26,0,0,0.364833 -30336,1216:363,163,26,0,0,0.374481 -30337,1216:364,164,26,0,0,0.316567 -30338,1216:465,165,26,0,0,0.343059 -30339,1216:466,166,26,0,0,0.335047 -30340,1216:467,167,26,0,0,0.319867 -30341,1216:468,168,26,0,0,0.317101 -30342,1216:469,169,26,0,0,0.312933 -30343,1217:360,170,26,0,0,0.307306 -30344,1217:361,171,26,0,0,0.31042 -30345,1217:362,172,26,0,0,0.307678 -30346,1217:363,173,26,0,0,0.302364 -30347,1217:364,174,26,0,0,0.285815 -30348,1217:465,175,26,0,0,0.291469 -30349,1217:466,176,26,0,0,0.288613 -30350,1217:467,177,26,0,0,0.28029 -30351,1217:468,178,26,0,0,0.265572 -30352,1217:469,179,26,0,0,0.273992 -30353,1218:360,180,26,0,0,0.270126 -30354,7218:370,-180,27,0,0,0.247568 -30355,7217:479,-179,27,0,0,0.240687 -30356,7217:478,-178,27,0,0,0.240668 -30357,7217:477,-177,27,0,0,0.236172 -30358,7217:476,-176,27,0,0,0.237955 -30359,7217:475,-175,27,0,0,0.236431 -30360,7217:374,-174,27,0,0,0.235376 -30361,7217:373,-173,27,0,0,0.23146 -30362,7217:372,-172,27,0,0,0.233421 -30363,7217:371,-171,27,0,0,0.231514 -30364,7217:370,-170,27,0,0,0.233605 -30365,7216:479,-169,27,0,0,0.235505 -30366,7216:478,-168,27,0,0,0.23062 -30367,7216:477,-167,27,0,0,0.230949 -30368,7216:476,-166,27,0,0,0.236339 -30369,7216:475,-165,27,0,0,0.238814 -30370,7216:374,-164,27,0,0,0.240818 -30371,7216:373,-163,27,0,0,0.24667 -30372,7216:372,-162,27,0,0,0.24968 -30373,7216:371,-161,27,0,0,0.248334 -30374,7216:370,-160,27,0,0,0.247071 -30375,7215:479,-159,27,0,0,0.246593 -30376,7215:478,-158,27,0,0,0.249468 -30377,7215:477,-157,27,0,0,0.254249 -30378,7215:476,-156,27,0,0,0.254834 -30379,7215:475,-155,27,0,0,0.262975 -30380,7215:374,-154,27,0,0,0.264112 -30381,7215:373,-153,27,0,0,0.264252 -30382,7215:372,-152,27,0,0,0.26869 -30383,7215:371,-151,27,0,0,0.266114 -30384,7215:370,-150,27,0,0,0.269256 -30385,7214:479,-149,27,0,0,0.275384 -30386,7214:478,-148,27,0,0,0.275425 -30387,7214:477,-147,27,0,0,0.275938 -30388,7214:476,-146,27,0,0,0.284161 -30389,7214:475,-145,27,0,0,0.284182 -30390,7214:374,-144,27,0,0,0.283702 -30391,7214:373,-143,27,0,0,0.282347 -30392,7214:372,-142,27,0,0,0.282576 -30393,7214:371,-141,27,0,0,0.283827 -30394,7214:370,-140,27,0,0,0.286361 -30395,7213:479,-139,27,0,0,0.292892 -30396,7213:478,-138,27,0,0,0.297424 -30397,7213:477,-137,27,0,0,0.293893 -30398,7213:476,-136,27,0,0,0.29663 -30399,7213:475,-135,27,0,0,0.302321 -30400,7213:374,-134,27,0,0,0.305624 -30401,7213:373,-133,27,0,0,0.310266 -30402,7213:372,-132,27,0,0,0.307503 -30403,7213:371,-131,27,0,0,0.302407 -30404,7213:370,-130,27,0,0,0.293766 -30405,7212:479,-129,27,0,0,0.286718 -30406,7212:478,-128,27,0,0,0.27438 -30407,7212:477,-127,27,0,0,0.276287 -30408,7212:476,-126,27,0,0,0.280477 -30409,7212:475,-125,27,0,0,0.273624 -30410,7212:374,-124,27,0,0,0.255654 -30411,7207:373,-73,27,0,0,0.277769 -30412,7207:372,-72,27,0,0,0.325931 -30413,7207:371,-71,27,0,0,0.355764 -30414,7207:370,-70,27,0,0,0.346215 -30415,7206:479,-69,27,0,0,0.3077 -30416,7206:478,-68,27,0,0,0.404544 -30417,7206:477,-67,27,0,0,0.44481 -30418,7206:476,-66,27,0,0,0.464678 -30419,7206:475,-65,27,0,0,0.433726 -30420,7206:374,-64,27,0,0,0.375443 -30421,7206:373,-63,27,0,0,0.425996 -30422,7206:372,-62,27,0,0,0.424163 -30423,7206:371,-61,27,0,0,0.446257 -30424,7206:370,-60,27,0,0,0.447603 -30425,7205:479,-59,27,0,0,0.405733 -30426,7205:478,-58,27,0,0,0.346099 -30427,7205:477,-57,27,0,0,0.371477 -30428,7205:476,-56,27,0,0,0.423109 -30429,7205:475,-55,27,0,0,0.420428 -30430,7205:374,-54,27,0,0,0.385056 -30431,7205:373,-53,27,0,0,0.372389 -30432,7205:372,-52,27,0,0,0.399974 -30433,7205:371,-51,27,0,0,0.412912 -30434,7205:370,-50,27,0,0,0.413435 -30435,7204:479,-49,27,0,0,0.413261 -30436,7204:478,-48,27,0,0,0.408262 -30437,7204:477,-47,27,0,0,0.404965 -30438,7204:476,-46,27,0,0,0.3892 -30439,7204:475,-45,27,0,0,0.386516 -30440,7204:374,-44,27,0,0,0.355152 -30441,7204:373,-43,27,0,0,0.35156 -30442,7204:372,-42,27,0,0,0.351045 -30443,7204:371,-41,27,0,0,0.37347 -30444,7204:370,-40,27,0,0,0.36324 -30445,7203:479,-39,27,0,0,0.347146 -30446,7203:478,-38,27,0,0,0.377349 -30447,7203:477,-37,27,0,0,0.349338 -30448,7203:476,-36,27,0,0,0.349735 -30449,7203:475,-35,27,0,0,0.359138 -30450,7203:374,-34,27,0,0,0.355058 -30451,7203:373,-33,27,0,0,0.350437 -30452,7203:372,-32,27,0,0,0.341948 -30453,7203:371,-31,27,0,0,0.344984 -30454,7203:370,-30,27,0,0,0.341671 -30455,7202:479,-29,27,0,0,0.337868 -30456,7202:478,-28,27,0,0,0.331645 -30457,7202:477,-27,27,0,0,0.331053 -30458,7202:476,-26,27,0,0,0.333173 -30459,7202:475,-25,27,0,0,0.331736 -30460,7202:374,-24,27,0,0,0.327151 -30461,7202:373,-23,27,0,0,0.330189 -30462,7202:372,-22,27,0,0,0.333355 -30463,7202:371,-21,27,0,0,0.327808 -30464,7202:370,-20,27,0,0,0.325818 -30465,7201:479,-19,27,0,0,0.329984 -30466,7201:478,-18,27,0,0,0.324601 -30467,7201:477,-17,27,0,0,0.331417 -30468,7201:476,-16,27,0,0,0.333287 -30469,7201:475,-15,27,0,0,0.330985 -30470,7201:374,-14,27,0,0,0.33372 -30471,7201:373,-13,27,0,0,0.330189 -30472,7201:372,-12,27,0,0,0.340055 -30473,7201:371,-11,27,0,0,0.343476 -30474,7201:370,-10,27,0,0,0.32103 -30475,1200:371,1,27,0,0,0.360629 -30476,1200:372,2,27,0,0,0.359493 -30477,1200:373,3,27,0,0,0.364738 -30478,1200:374,4,27,0,0,0.36846 -30479,1200:475,5,27,0,0,0.367002 -30480,1200:476,6,27,0,0,0.369608 -30481,1200:477,7,27,0,0,0.362384 -30482,1201:370,10,27,0,0,0.364119 -30483,1201:371,11,27,0,0,0.364928 -30484,1201:372,12,27,0,0,0.365071 -30485,1201:373,13,27,0,0,0.367456 -30486,1201:374,14,27,0,0,0.371213 -30487,1201:475,15,27,0,0,0.374336 -30488,1201:477,17,27,0,0,0.3914 -30489,1201:478,18,27,0,0,0.389762 -30490,1201:479,19,27,0,0,0.410597 -30491,1202:373,23,27,0,0,0.396183 -30492,1202:374,24,27,0,0,0.397782 -30493,1202:475,25,27,0,0,0.423386 -30494,1212:370,120,27,0,0,0.188039 -30495,1212:371,121,27,0,0,0.203214 -30496,1212:372,122,27,0,0,0.178702 -30497,1212:374,124,27,0,0,0.190182 -30498,1212:475,125,27,0,0,0.168605 -30499,1212:479,129,27,0,0,0.319017 -30500,1213:370,130,27,0,0,0.315901 -30501,1213:371,131,27,0,0,0.291384 -30502,1213:372,132,27,0,0,0.314482 -30503,1213:373,133,27,0,0,0.307131 -30504,1213:374,134,27,0,0,0.269397 -30505,1213:475,135,27,0,0,0.285333 -30506,1213:476,136,27,0,0,0.25283 -30507,1213:477,137,27,0,0,0.295624 -30508,1213:478,138,27,0,0,0.303774 -30509,1213:479,139,27,0,0,0.304775 -30510,1214:370,140,27,0,0,0.350764 -30511,1214:373,143,27,0,0,0.29603 -30512,1214:374,144,27,0,0,0.377398 -30513,1214:475,145,27,0,0,0.338374 -30514,1214:476,146,27,0,0,0.327264 -30515,1214:477,147,27,0,0,0.353506 -30516,1214:478,148,27,0,0,0.297639 -30517,1214:479,149,27,0,0,0.311851 -30518,1215:370,150,27,0,0,0.318928 -30519,1215:371,151,27,0,0,0.307525 -30520,1215:372,152,27,0,0,0.310552 -30521,1215:373,153,27,0,0,0.314681 -30522,1215:374,154,27,0,0,0.29479 -30523,1215:475,155,27,0,0,0.284831 -30524,1215:476,156,27,0,0,0.281951 -30525,1215:477,157,27,0,0,0.280373 -30526,1215:478,158,27,0,0,0.284475 -30527,1215:479,159,27,0,0,0.276184 -30528,1216:370,160,27,0,0,0.279214 -30529,1216:371,161,27,0,0,0.275261 -30530,1216:372,162,27,0,0,0.322509 -30531,1216:373,163,27,0,0,0.286361 -30532,1216:374,164,27,0,0,0.281349 -30533,1216:475,165,27,0,0,0.301043 -30534,1216:476,166,27,0,0,0.308247 -30535,1216:477,167,27,0,0,0.283222 -30536,1216:478,168,27,0,0,0.280414 -30537,1216:479,169,27,0,0,0.256516 -30538,1217:370,170,27,0,0,0.280497 -30539,1217:371,171,27,0,0,0.28655 -30540,1217:372,172,27,0,0,0.263853 -30541,1217:373,173,27,0,0,0.261286 -30542,1217:374,174,27,0,0,0.24993 -30543,1217:475,175,27,0,0,0.241947 -30544,1217:476,176,27,0,0,0.25423 -30545,1217:477,177,27,0,0,0.264932 -30546,1217:478,178,27,0,0,0.246689 -30547,1217:479,179,27,0,0,0.251261 -30548,1218:370,180,27,0,0,0.247568 -30549,7218:380,-180,28,0,0,0.220782 -30550,7217:489,-179,28,0,0,0.218685 -30551,7217:488,-178,28,0,0,0.218703 -30552,7217:487,-177,28,0,0,0.217494 -30553,7217:486,-176,28,0,0,0.213017 -30554,7217:485,-175,28,0,0,0.2135 -30555,7217:384,-174,28,0,0,0.215699 -30556,7217:383,-173,28,0,0,0.215264 -30557,7217:382,-172,28,0,0,0.213983 -30558,7217:381,-171,28,0,0,0.215403 -30559,7217:380,-170,28,0,0,0.217967 -30560,7216:489,-169,28,0,0,0.217494 -30561,7216:488,-168,28,0,0,0.216099 -30562,7216:487,-167,28,0,0,0.216743 -30563,7216:486,-166,28,0,0,0.221525 -30564,7216:485,-165,28,0,0,0.223801 -30565,7216:384,-164,28,0,0,0.225251 -30566,7216:383,-163,28,0,0,0.223784 -30567,7216:382,-162,28,0,0,0.223587 -30568,7216:381,-161,28,0,0,0.226904 -30569,7216:380,-160,28,0,0,0.231514 -30570,7215:489,-159,28,0,0,0.237695 -30571,7215:488,-158,28,0,0,0.240274 -30572,7215:487,-157,28,0,0,0.238086 -30573,7215:486,-156,28,0,0,0.238235 -30574,7215:485,-155,28,0,0,0.242852 -30575,7215:384,-154,28,0,0,0.240105 -30576,7215:383,-153,28,0,0,0.244405 -30577,7215:382,-152,28,0,0,0.249429 -30578,7215:381,-151,28,0,0,0.249891 -30579,7215:380,-150,28,0,0,0.253063 -30580,7214:489,-149,28,0,0,0.257634 -30581,7214:488,-148,28,0,0,0.258559 -30582,7214:487,-147,28,0,0,0.258343 -30583,7214:486,-146,28,0,0,0.263912 -30584,7214:485,-145,28,0,0,0.267984 -30585,7214:384,-144,28,0,0,0.265993 -30586,7214:383,-143,28,0,0,0.2621 -30587,7214:382,-142,28,0,0,0.266094 -30588,7214:381,-141,28,0,0,0.269762 -30589,7214:380,-140,28,0,0,0.276143 -30590,7213:489,-139,28,0,0,0.281432 -30591,7213:488,-138,28,0,0,0.285438 -30592,7213:487,-137,28,0,0,0.281993 -30593,7213:486,-136,28,0,0,0.281889 -30594,7213:485,-135,28,0,0,0.284559 -30595,7213:384,-134,28,0,0,0.28798 -30596,7213:383,-133,28,0,0,0.284935 -30597,7213:382,-132,28,0,0,0.284329 -30598,7213:381,-131,28,0,0,0.284349 -30599,7213:380,-130,28,0,0,0.284266 -30600,7212:489,-129,28,0,0,0.28243 -30601,7212:488,-128,28,0,0,0.270045 -30602,7212:487,-127,28,0,0,0.268892 -30603,7212:486,-126,28,0,0,0.265392 -30604,7212:485,-125,28,0,0,0.263354 -30605,7207:380,-70,28,0,0,0.201523 -30606,7206:489,-69,28,0,0,0.233605 -30607,7206:488,-68,28,0,0,0.261802 -30608,7206:487,-67,28,0,0,0.259486 -30609,7206:486,-66,28,0,0,0.274176 -30610,7206:485,-65,28,0,0,0.334956 -30611,7206:384,-64,28,0,0,0.299187 -30612,7206:383,-63,28,0,0,0.377759 -30613,7206:382,-62,28,0,0,0.416103 -30614,7206:381,-61,28,0,0,0.423736 -30615,7206:380,-60,28,0,0,0.407543 -30616,7205:489,-59,28,0,0,0.364738 -30617,7205:488,-58,28,0,0,0.296373 -30618,7205:487,-57,28,0,0,0.307744 -30619,7205:486,-56,28,0,0,0.302863 -30620,7205:485,-55,28,0,0,0.322577 -30621,7205:384,-54,28,0,0,0.283326 -30622,7205:383,-53,28,0,0,0.2321 -30623,7205:382,-52,28,0,0,0.231168 -30624,7205:381,-51,28,0,0,0.266174 -30625,7205:380,-50,28,0,0,0.318036 -30626,7204:489,-49,28,0,0,0.349315 -30627,7204:488,-48,28,0,0,0.375998 -30628,7204:487,-47,28,0,0,0.375275 -30629,7204:486,-46,28,0,0,0.299403 -30630,7204:485,-45,28,0,0,0.264952 -30631,7204:384,-44,28,0,0,0.374577 -30632,7204:383,-43,28,0,0,0.384059 -30633,7204:382,-42,28,0,0,0.380396 -30634,7204:381,-41,28,0,0,0.331622 -30635,7204:380,-40,28,0,0,0.346332 -30636,7203:489,-39,28,0,0,0.349198 -30637,7203:488,-38,28,0,0,0.368962 -30638,7203:487,-37,28,0,0,0.360535 -30639,7203:486,-36,28,0,0,0.362883 -30640,7203:485,-35,28,0,0,0.353624 -30641,7203:384,-34,28,0,0,0.352005 -30642,7203:383,-33,28,0,0,0.340147 -30643,7203:382,-32,28,0,0,0.331167 -30644,7203:381,-31,28,0,0,0.331303 -30645,7203:380,-30,28,0,0,0.332648 -30646,7202:489,-29,28,0,0,0.332238 -30647,7202:488,-28,28,0,0,0.331873 -30648,7202:487,-27,28,0,0,0.326157 -30649,7202:486,-26,28,0,0,0.322509 -30650,7202:485,-25,28,0,0,0.322196 -30651,7202:384,-24,28,0,0,0.32047 -30652,7202:383,-23,28,0,0,0.317346 -30653,7202:382,-22,28,0,0,0.316367 -30654,7202:381,-21,28,0,0,0.310091 -30655,7202:380,-20,28,0,0,0.316278 -30656,7201:489,-19,28,0,0,0.31639 -30657,7201:488,-18,28,0,0,0.310926 -30658,7201:487,-17,28,0,0,0.305494 -30659,7201:486,-16,28,0,0,0.310773 -30660,7201:485,-15,28,0,0,0.313884 -30661,7201:384,-14,28,0,0,0.311697 -30662,7201:383,-13,28,0,0,0.312425 -30663,7201:382,-12,28,0,0,0.31539 -30664,7201:381,-11,28,0,0,0.323701 -30665,7201:380,-10,28,0,0,0.305646 -30666,1200:383,3,28,0,0,0.346541 -30667,1200:384,4,28,0,0,0.348474 -30668,1200:485,5,28,0,0,0.356258 -30669,1200:486,6,28,0,0,0.355928 -30670,1200:487,7,28,0,0,0.35999 -30671,1200:488,8,28,0,0,0.35798 -30672,1200:489,9,28,0,0,0.366836 -30673,1201:380,10,28,0,0,0.364904 -30674,1201:381,11,28,0,0,0.363477 -30675,1201:382,12,28,0,0,0.365381 -30676,1201:487,17,28,0,0,0.364333 -30677,1201:488,18,28,0,0,0.370063 -30678,1202:384,24,28,0,0,0.349805 -30679,1202:485,25,28,0,0,0.339272 -30680,1202:487,27,28,0,0,0.313286 -30681,1202:488,28,28,0,0,0.300006 -30682,1212:382,122,28,0,0,0.158296 -30683,1213:381,131,28,0,0,0.237025 -30684,1213:382,132,28,0,0,0.261544 -30685,1213:383,133,28,0,0,0.242437 -30686,1213:384,134,28,0,0,0.269033 -30687,1213:485,135,28,0,0,0.25351 -30688,1213:486,136,28,0,0,0.240743 -30689,1213:487,137,28,0,0,0.278842 -30690,1213:488,138,28,0,0,0.269377 -30691,1213:489,139,28,0,0,0.254094 -30692,1214:380,140,28,0,0,0.255186 -30693,1214:382,142,28,0,0,0.302602 -30694,1214:383,143,28,0,0,0.283263 -30695,1214:384,144,28,0,0,0.208709 -30696,1214:485,145,28,0,0,0.284308 -30697,1214:486,146,28,0,0,0.325683 -30698,1214:487,147,28,0,0,0.321388 -30699,1214:488,148,28,0,0,0.263354 -30700,1214:489,149,28,0,0,0.293169 -30701,1215:380,150,28,0,0,0.272116 -30702,1215:381,151,28,0,0,0.272666 -30703,1215:382,152,28,0,0,0.253355 -30704,1215:383,153,28,0,0,0.268065 -30705,1215:384,154,28,0,0,0.297918 -30706,1215:485,155,28,0,0,0.290092 -30707,1215:486,156,28,0,0,0.28798 -30708,1215:487,157,28,0,0,0.275609 -30709,1215:488,158,28,0,0,0.268407 -30710,1215:489,159,28,0,0,0.266234 -30711,1216:380,160,28,0,0,0.265452 -30712,1216:381,161,28,0,0,0.246212 -30713,1216:382,162,28,0,0,0.238702 -30714,1216:383,163,28,0,0,0.261029 -30715,1216:384,164,28,0,0,0.248277 -30716,1216:485,165,28,0,0,0.257772 -30717,1216:486,166,28,0,0,0.263873 -30718,1216:487,167,28,0,0,0.25252 -30719,1216:488,168,28,0,0,0.243023 -30720,1216:489,169,28,0,0,0.235394 -30721,1217:380,170,28,0,0,0.23872 -30722,1217:381,171,28,0,0,0.251068 -30723,1217:382,172,28,0,0,0.22389 -30724,1217:383,173,28,0,0,0.218598 -30725,1217:384,174,28,0,0,0.227012 -30726,1217:485,175,28,0,0,0.226004 -30727,1217:486,176,28,0,0,0.221295 -30728,1217:487,177,28,0,0,0.221366 -30729,1217:488,178,28,0,0,0.226922 -30730,1217:489,179,28,0,0,0.22667 -30731,1218:380,180,28,0,0,0.220782 -30732,7218:390,-180,29,0,0,0.209218 -30733,7217:499,-179,29,0,0,0.207777 -30734,7217:498,-178,29,0,0,0.203198 -30735,7217:497,-177,29,0,0,0.204047 -30736,7217:496,-176,29,0,0,0.204364 -30737,7217:495,-175,29,0,0,0.201771 -30738,7217:394,-174,29,0,0,0.201423 -30739,7217:393,-173,29,0,0,0.19999 -30740,7217:392,-172,29,0,0,0.19971 -30741,7217:391,-171,29,0,0,0.20197 -30742,7217:390,-170,29,0,0,0.202815 -30743,7216:499,-169,29,0,0,0.202069 -30744,7216:498,-168,29,0,0,0.203015 -30745,7216:497,-167,29,0,0,0.205369 -30746,7216:496,-166,29,0,0,0.208777 -30747,7216:495,-165,29,0,0,0.212741 -30748,7216:394,-164,29,0,0,0.211539 -30749,7216:393,-163,29,0,0,0.208183 -30750,7216:392,-162,29,0,0,0.209048 -30751,7216:391,-161,29,0,0,0.211762 -30752,7216:390,-160,29,0,0,0.217232 -30753,7215:499,-159,29,0,0,0.222839 -30754,7215:498,-158,29,0,0,0.222075 -30755,7215:497,-157,29,0,0,0.222928 -30756,7215:496,-156,29,0,0,0.225933 -30757,7215:495,-155,29,0,0,0.226778 -30758,7215:394,-154,29,0,0,0.233109 -30759,7215:393,-153,29,0,0,0.233992 -30760,7215:392,-152,29,0,0,0.232907 -30761,7215:391,-151,29,0,0,0.237732 -30762,7215:390,-150,29,0,0,0.234286 -30763,7214:499,-149,29,0,0,0.236079 -30764,7214:498,-148,29,0,0,0.243666 -30765,7214:497,-147,29,0,0,0.244765 -30766,7214:496,-146,29,0,0,0.250643 -30767,7214:495,-145,29,0,0,0.252869 -30768,7214:394,-144,29,0,0,0.253646 -30769,7214:393,-143,29,0,0,0.252209 -30770,7214:392,-142,29,0,0,0.251319 -30771,7214:391,-141,29,0,0,0.254952 -30772,7214:390,-140,29,0,0,0.256477 -30773,7213:499,-139,29,0,0,0.257929 -30774,7213:498,-138,29,0,0,0.264372 -30775,7213:497,-137,29,0,0,0.267621 -30776,7213:496,-136,29,0,0,0.269114 -30777,7213:495,-135,29,0,0,0.267481 -30778,7213:394,-134,29,0,0,0.270856 -30779,7213:393,-133,29,0,0,0.27389 -30780,7213:392,-132,29,0,0,0.272645 -30781,7213:391,-131,29,0,0,0.273502 -30782,7213:390,-130,29,0,0,0.275897 -30783,7212:499,-129,29,0,0,0.270268 -30784,7212:498,-128,29,0,0,0.256065 -30785,7212:497,-127,29,0,0,0.25846 -30786,7212:496,-126,29,0,0,0.260415 -30787,7212:495,-125,29,0,0,0.254074 -30788,7207:390,-70,29,0,0,0.216499 -30789,7206:499,-69,29,0,0,0.216482 -30790,7206:498,-68,29,0,0,0.22398 -30791,7206:497,-67,29,0,0,0.221933 -30792,7206:496,-66,29,0,0,0.233182 -30793,7206:495,-65,29,0,0,0.233973 -30794,7206:394,-64,29,0,0,0.215455 -30795,7206:393,-63,29,0,0,0.217931 -30796,7206:392,-62,29,0,0,0.234194 -30797,7206:391,-61,29,0,0,0.230201 -30798,7206:390,-60,29,0,0,0.218282 -30799,7205:499,-59,29,0,0,0.230985 -30800,7205:498,-58,29,0,0,0.273053 -30801,7205:497,-57,29,0,0,0.279028 -30802,7205:496,-56,29,0,0,0.307328 -30803,7205:495,-55,29,0,0,0.29794 -30804,7205:394,-54,29,0,0,0.204749 -30805,7205:393,-53,29,0,0,0.213206 -30806,7205:392,-52,29,0,0,0.208895 -30807,7205:391,-51,29,0,0,0.186086 -30808,7205:390,-50,29,0,0,0.151228 -30809,7204:499,-49,29,0,0,0.131819 -30810,7204:498,-48,29,0,0,0.345378 -30811,7204:497,-47,29,0,0,0.297016 -30812,7204:496,-46,29,0,0,0.301433 -30813,7204:495,-45,29,0,0,0.247549 -30814,7204:394,-44,29,0,0,0.26738 -30815,7204:393,-43,29,0,0,0.287349 -30816,7204:392,-42,29,0,0,0.294257 -30817,7204:391,-41,29,0,0,0.329735 -30818,7204:390,-40,29,0,0,0.326225 -30819,7203:499,-39,29,0,0,0.320582 -30820,7203:498,-38,29,0,0,0.317368 -30821,7203:497,-37,29,0,0,0.289479 -30822,7203:496,-36,29,0,0,0.31579 -30823,7203:495,-35,29,0,0,0.313265 -30824,7203:394,-34,29,0,0,0.336766 -30825,7203:393,-33,29,0,0,0.317034 -30826,7203:392,-32,29,0,0,0.315812 -30827,7203:391,-31,29,0,0,0.328963 -30828,7203:390,-30,29,0,0,0.331713 -30829,7202:499,-29,29,0,0,0.329735 -30830,7202:498,-28,29,0,0,0.329213 -30831,7202:497,-27,29,0,0,0.322577 -30832,7202:496,-26,29,0,0,0.32038 -30833,7202:495,-25,29,0,0,0.317168 -30834,7202:394,-24,29,0,0,0.312425 -30835,7202:393,-23,29,0,0,0.310992 -30836,7202:392,-22,29,0,0,0.304362 -30837,7202:391,-21,29,0,0,0.30665 -30838,7202:390,-20,29,0,0,0.303383 -30839,7201:499,-19,29,0,0,0.298455 -30840,7201:498,-18,29,0,0,0.300481 -30841,7201:497,-17,29,0,0,0.296416 -30842,7201:496,-16,29,0,0,0.298413 -30843,7201:495,-15,29,0,0,0.300287 -30844,7201:394,-14,29,0,0,0.304188 -30845,7201:393,-13,29,0,0,0.296909 -30846,7201:392,-12,29,0,0,0.298176 -30847,7201:391,-11,29,0,0,0.311367 -30848,7201:390,-10,29,0,0,0.293404 -30849,1200:393,3,29,0,0,0.34218 -30850,1200:394,4,29,0,0,0.336192 -30851,1200:495,5,29,0,0,0.344334 -30852,1200:496,6,29,0,0,0.348474 -30853,1200:497,7,29,0,0,0.352427 -30854,1200:498,8,29,0,0,0.355081 -30855,1200:499,9,29,0,0,0.360961 -30856,1201:390,10,29,0,0,0.360724 -30857,1201:394,14,29,0,0,0.354328 -30858,1201:495,15,29,0,0,0.360866 -30859,1201:496,16,29,0,0,0.371885 -30860,1201:497,17,29,0,0,0.374168 -30861,1201:498,18,29,0,0,0.388077 -30862,1202:498,28,29,0,0,0.281723 -30863,1202:499,29,29,0,0,0.279669 -30864,1203:390,30,29,0,0,0.2788 -30865,1203:498,38,29,0,0,0.287538 -30866,1213:391,131,29,0,0,0.195766 -30867,1213:392,132,29,0,0,0.174119 -30868,1213:393,133,29,0,0,0.181585 -30869,1213:394,134,29,0,0,0.183009 -30870,1213:495,135,29,0,0,0.189361 -30871,1213:496,136,29,0,0,0.196398 -30872,1213:497,137,29,0,0,0.192663 -30873,1213:498,138,29,0,0,0.22491 -30874,1213:499,139,29,0,0,0.237583 -30875,1214:390,140,29,0,0,0.227897 -30876,1214:495,145,29,0,0,0.152671 -30877,1214:496,146,29,0,0,0.147069 -30878,1214:497,147,29,0,0,0.198269 -30879,1214:498,148,29,0,0,0.219635 -30880,1214:499,149,29,0,0,0.292234 -30881,1215:390,150,29,0,0,0.276822 -30882,1215:391,151,29,0,0,0.269579 -30883,1215:392,152,29,0,0,0.161317 -30884,1215:393,153,29,0,0,0.179004 -30885,1215:394,154,29,0,0,0.196625 -30886,1215:495,155,29,0,0,0.203964 -30887,1215:496,156,29,0,0,0.20727 -30888,1215:497,157,29,0,0,0.202982 -30889,1215:498,158,29,0,0,0.212157 -30890,1215:499,159,29,0,0,0.237639 -30891,1216:390,160,29,0,0,0.232999 -30892,1216:391,161,29,0,0,0.226256 -30893,1216:392,162,29,0,0,0.243249 -30894,1216:393,163,29,0,0,0.217897 -30895,1216:394,164,29,0,0,0.223623 -30896,1216:495,165,29,0,0,0.228313 -30897,1216:496,166,29,0,0,0.206444 -30898,1216:497,167,29,0,0,0.201407 -30899,1216:498,168,29,0,0,0.199349 -30900,1216:499,169,29,0,0,0.208742 -30901,1217:390,170,29,0,0,0.204883 -30902,1217:391,171,29,0,0,0.224355 -30903,1217:392,172,29,0,0,0.214363 -30904,1217:393,173,29,0,0,0.204214 -30905,1217:394,174,29,0,0,0.194459 -30906,1217:495,175,29,0,0,0.204833 -30907,1217:496,176,29,0,0,0.215525 -30908,1217:497,177,29,0,0,0.207152 -30909,1217:498,178,29,0,0,0.202268 -30910,1217:499,179,29,0,0,0.205973 -30911,1218:390,180,29,0,0,0.209218 -30912,7318:100,-180,30,0,0,0.184427 -30913,7317:209,-179,30,0,0,0.185884 -30914,7317:208,-178,30,0,0,0.191244 -30915,7317:207,-177,30,0,0,0.191038 -30916,7317:206,-176,30,0,0,0.1922 -30917,7317:205,-175,30,0,0,0.192855 -30918,7317:104,-174,30,0,0,0.190974 -30919,7317:103,-173,30,0,0,0.18955 -30920,7317:102,-172,30,0,0,0.188039 -30921,7317:101,-171,30,0,0,0.187225 -30922,7317:100,-170,30,0,0,0.188668 -30923,7316:209,-169,30,0,0,0.188856 -30924,7316:208,-168,30,0,0,0.189629 -30925,7316:207,-167,30,0,0,0.189093 -30926,7316:206,-166,30,0,0,0.192455 -30927,7316:205,-165,30,0,0,0.200401 -30928,7316:104,-164,30,0,0,0.197747 -30929,7316:103,-163,30,0,0,0.195475 -30930,7316:102,-162,30,0,0,0.19669 -30931,7316:101,-161,30,0,0,0.198286 -30932,7316:100,-160,30,0,0,0.207371 -30933,7315:209,-159,30,0,0,0.209031 -30934,7315:208,-158,30,0,0,0.204281 -30935,7315:207,-157,30,0,0,0.212965 -30936,7315:206,-156,30,0,0,0.212741 -30937,7315:205,-155,30,0,0,0.214709 -30938,7315:104,-154,30,0,0,0.218265 -30939,7315:103,-153,30,0,0,0.215316 -30940,7315:102,-152,30,0,0,0.219072 -30941,7315:101,-151,30,0,0,0.218528 -30942,7315:100,-150,30,0,0,0.2211 -30943,7314:209,-149,30,0,0,0.230894 -30944,7314:208,-148,30,0,0,0.232357 -30945,7314:207,-147,30,0,0,0.23412 -30946,7314:206,-146,30,0,0,0.2379 -30947,7314:205,-145,30,0,0,0.240349 -30948,7314:104,-144,30,0,0,0.239561 -30949,7314:103,-143,30,0,0,0.238272 -30950,7314:102,-142,30,0,0,0.23872 -30951,7314:101,-141,30,0,0,0.240123 -30952,7314:100,-140,30,0,0,0.245964 -30953,7313:209,-139,30,0,0,0.247893 -30954,7313:208,-138,30,0,0,0.259367 -30955,7313:207,-137,30,0,0,0.256124 -30956,7313:206,-136,30,0,0,0.258185 -30957,7313:205,-135,30,0,0,0.25994 -30958,7313:104,-134,30,0,0,0.264692 -30959,7313:103,-133,30,0,0,0.262796 -30960,7313:102,-132,30,0,0,0.259111 -30961,7313:101,-131,30,0,0,0.259447 -30962,7313:100,-130,30,0,0,0.259604 -30963,7312:209,-129,30,0,0,0.252287 -30964,7312:208,-128,30,0,0,0.254952 -30965,7312:207,-127,30,0,0,0.257969 -30966,7312:206,-126,30,0,0,0.247415 -30967,7312:205,-125,30,0,0,0.243798 -30968,7306:209,-69,30,0,0,0.204314 -30969,7306:208,-68,30,0,0,0.202583 -30970,7306:207,-67,30,0,0,0.203514 -30971,7306:206,-66,30,0,0,0.211556 -30972,7306:104,-64,30,0,0,0.204816 -30973,7306:103,-63,30,0,0,0.196365 -30974,7306:102,-62,30,0,0,0.190848 -30975,7306:101,-61,30,0,0,0.196219 -30976,7306:100,-60,30,0,0,0.19169 -30977,7305:209,-59,30,0,0,0.181815 -30978,7305:208,-58,30,0,0,0.16274 -30979,7305:207,-57,30,0,0,0.161415 -30980,7305:206,-56,30,0,0,0.201589 -30981,7305:205,-55,30,0,0,0.18966 -30982,7305:104,-54,30,0,0,0.165049 -30983,7305:103,-53,30,0,0,0.178611 -30984,7305:102,-52,30,0,0,0.170007 -30985,7305:101,-51,30,0,0,0.159257 -30986,7305:100,-50,30,0,0,0.150583 -30987,7304:209,-49,30,0,0,0.127426 -30988,7304:208,-48,30,0,0,0.151294 -30989,7304:207,-47,30,0,0,0.324083 -30990,7304:206,-46,30,0,0,0.311037 -30991,7304:205,-45,30,0,0,0.212243 -30992,7304:104,-44,30,0,0,0.276616 -30993,7304:103,-43,30,0,0,0.271993 -30994,7304:102,-42,30,0,0,0.291448 -30995,7304:101,-41,30,0,0,0.301195 -30996,7304:100,-40,30,0,0,0.253899 -30997,7303:209,-39,30,0,0,0.275589 -30998,7303:208,-38,30,0,0,0.274933 -30999,7303:207,-37,30,0,0,0.273481 -31000,7303:206,-36,30,0,0,0.293276 -31001,7303:205,-35,30,0,0,0.330621 -31002,7303:104,-34,30,0,0,0.329303 -31003,7303:103,-33,30,0,0,0.297402 -31004,7303:102,-32,30,0,0,0.29633 -31005,7303:101,-31,30,0,0,0.310442 -31006,7303:100,-30,30,0,0,0.318839 -31007,7302:209,-29,30,0,0,0.328306 -31008,7302:208,-28,30,0,0,0.324511 -31009,7302:207,-27,30,0,0,0.312183 -31010,7302:206,-26,30,0,0,0.308181 -31011,7302:205,-25,30,0,0,0.309454 -31012,7302:104,-24,30,0,0,0.307437 -31013,7302:103,-23,30,0,0,0.303774 -31014,7302:102,-22,30,0,0,0.299381 -31015,7302:101,-21,30,0,0,0.298047 -31016,7302:100,-20,30,0,0,0.295495 -31017,7301:209,-19,30,0,0,0.292191 -31018,7301:208,-18,30,0,0,0.294534 -31019,7301:207,-17,30,0,0,0.290769 -31020,7301:206,-16,30,0,0,0.291915 -31021,7301:205,-15,30,0,0,0.290748 -31022,7301:104,-14,30,0,0,0.293382 -31023,7301:103,-13,30,0,0,0.290621 -31024,7301:102,-12,30,0,0,0.290176 -31025,7301:101,-11,30,0,0,0.287665 -31026,7301:100,-10,30,0,0,0.287622 -31027,7300:209,-9,30,0,0,0.28988 -31028,7300:208,-8,30,0,0,0.293042 -31029,7300:207,-7,30,0,0,0.294769 -31030,7300:206,-6,30,0,0,0.295923 -31031,7300:205,-5,30,0,0,0.295303 -31032,7300:104,-4,30,0,0,0.297123 -31033,7300:103,-3,30,0,0,0.298714 -31034,1300:207,7,30,0,0,0.350179 -31035,1300:208,8,30,0,0,0.349525 -31036,1300:209,9,30,0,0,0.35487 -31037,1301:103,13,30,0,0,0.319286 -31038,1301:104,14,30,0,0,0.368675 -31039,1301:205,15,30,0,0,0.374649 -31040,1301:206,16,30,0,0,0.320045 -31041,1302:207,27,30,0,0,0.281245 -31042,1302:208,28,30,0,0,0.267944 -31043,1302:209,29,30,0,0,0.26738 -31044,1303:100,30,30,0,0,0.270876 -31045,1303:101,31,30,0,0,0.273216 -31046,1303:102,32,30,0,0,0.282118 -31047,1303:103,33,30,0,0,0.285878 -31048,1303:104,34,30,0,0,0.286298 -31049,1303:205,35,30,0,0,0.284663 -31050,1303:206,36,30,0,0,0.27604 -31051,1303:207,37,30,0,0,0.261227 -31052,1303:208,38,30,0,0,0.263095 -31053,1303:209,39,30,0,0,0.275302 -31054,1304:100,40,30,0,0,0.288107 -31055,1313:206,136,30,0,0,0.168001 -31056,1313:207,137,30,0,0,0.181173 -31057,1313:208,138,30,0,0,0.219565 -31058,1313:209,139,30,0,0,0.233605 -31059,1314:100,140,30,0,0,0.203264 -31060,1314:101,141,30,0,0,0.201126 -31061,1314:102,142,30,0,0,0.199776 -31062,1314:206,146,30,0,0,0.156294 -31063,1314:207,147,30,0,0,0.147043 -31064,1314:208,148,30,0,0,0.139109 -31065,1314:209,149,30,0,0,0.142138 -31066,1315:100,150,30,0,0,0.141114 -31067,1315:101,151,30,0,0,0.137322 -31068,1315:102,152,30,0,0,0.146683 -31069,1315:103,153,30,0,0,0.152618 -31070,1315:104,154,30,0,0,0.14658 -31071,1315:205,155,30,0,0,0.150622 -31072,1315:206,156,30,0,0,0.188904 -31073,1315:207,157,30,0,0,0.188668 -31074,1315:208,158,30,0,0,0.179866 -31075,1315:209,159,30,0,0,0.175008 -31076,1316:100,160,30,0,0,0.184427 -31077,1316:101,161,30,0,0,0.23135 -31078,1316:102,162,30,0,0,0.215751 -31079,1316:103,163,30,0,0,0.208793 -31080,1316:104,164,30,0,0,0.200796 -31081,1316:205,165,30,0,0,0.196414 -31082,1316:206,166,30,0,0,0.194943 -31083,1316:207,167,30,0,0,0.186258 -31084,1316:208,168,30,0,0,0.192519 -31085,1316:209,169,30,0,0,0.189156 -31086,1317:100,170,30,0,0,0.177559 -31087,1317:101,171,30,0,0,0.18435 -31088,1317:102,172,30,0,0,0.205234 -31089,1317:103,173,30,0,0,0.196171 -31090,1317:104,174,30,0,0,0.175171 -31091,1317:205,175,30,0,0,0.183517 -31092,1317:206,176,30,0,0,0.189929 -31093,1317:207,177,30,0,0,0.19004 -31094,1317:208,178,30,0,0,0.187366 -31095,1317:209,179,30,0,0,0.188196 -31096,1318:100,180,30,0,0,0.184427 -31097,7318:110,-180,31,0,0,0.169023 -31098,7317:219,-179,31,0,0,0.17066 -31099,7317:218,-178,31,0,0,0.177244 -31100,7317:217,-177,31,0,0,0.176108 -31101,7317:216,-176,31,0,0,0.177289 -31102,7317:215,-175,31,0,0,0.182059 -31103,7317:114,-174,31,0,0,0.177529 -31104,7317:113,-173,31,0,0,0.176944 -31105,7317:112,-172,31,0,0,0.179412 -31106,7317:111,-171,31,0,0,0.177334 -31107,7317:110,-170,31,0,0,0.176795 -31108,7316:219,-169,31,0,0,0.178702 -31109,7316:218,-168,31,0,0,0.181219 -31110,7316:217,-167,31,0,0,0.182136 -31111,7316:216,-166,31,0,0,0.183271 -31112,7316:215,-165,31,0,0,0.184628 -31113,7316:114,-164,31,0,0,0.1871 -31114,7316:113,-163,31,0,0,0.188447 -31115,7316:112,-162,31,0,0,0.189471 -31116,7316:111,-161,31,0,0,0.189266 -31117,7316:110,-160,31,0,0,0.19177 -31118,7315:219,-159,31,0,0,0.191372 -31119,7315:218,-158,31,0,0,0.189597 -31120,7315:217,-157,31,0,0,0.198204 -31121,7315:216,-156,31,0,0,0.200467 -31122,7315:215,-155,31,0,0,0.195265 -31123,7315:114,-154,31,0,0,0.194943 -31124,7315:113,-153,31,0,0,0.196625 -31125,7315:112,-152,31,0,0,0.202965 -31126,7315:111,-151,31,0,0,0.209439 -31127,7315:110,-150,31,0,0,0.209184 -31128,7314:219,-149,31,0,0,0.213017 -31129,7314:218,-148,31,0,0,0.218335 -31130,7314:217,-147,31,0,0,0.221702 -31131,7314:216,-146,31,0,0,0.22275 -31132,7314:215,-145,31,0,0,0.222359 -31133,7314:114,-144,31,0,0,0.227662 -31134,7314:113,-143,31,0,0,0.226742 -31135,7314:112,-142,31,0,0,0.227103 -31136,7314:111,-141,31,0,0,0.234157 -31137,7314:110,-140,31,0,0,0.235542 -31138,7313:219,-139,31,0,0,0.233826 -31139,7313:218,-138,31,0,0,0.242267 -31140,7313:217,-137,31,0,0,0.244823 -31141,7313:216,-136,31,0,0,0.2502 -31142,7313:215,-135,31,0,0,0.250392 -31143,7313:114,-134,31,0,0,0.250778 -31144,7313:113,-133,31,0,0,0.248488 -31145,7313:112,-132,31,0,0,0.250045 -31146,7313:111,-131,31,0,0,0.251648 -31147,7313:110,-130,31,0,0,0.249103 -31148,7312:219,-129,31,0,0,0.245374 -31149,7312:218,-128,31,0,0,0.249949 -31150,7312:217,-127,31,0,0,0.249218 -31151,7312:216,-126,31,0,0,0.247262 -31152,7312:215,-125,31,0,0,0.242116 -31153,7306:216,-66,31,0,0,0.2025 -31154,7306:112,-62,31,0,0,0.173279 -31155,7306:111,-61,31,0,0,0.1719 -31156,7306:110,-60,31,0,0,0.163259 -31157,7305:219,-59,31,0,0,0.161874 -31158,7305:218,-58,31,0,0,0.152857 -31159,7305:217,-57,31,0,0,0.146529 -31160,7305:216,-56,31,0,0,0.142063 -31161,7305:215,-55,31,0,0,0.133605 -31162,7305:114,-54,31,0,0,0.144472 -31163,7305:113,-53,31,0,0,0.142741 -31164,7305:112,-52,31,0,0,0.143005 -31165,7305:111,-51,31,0,0,0.143459 -31166,7305:110,-50,31,0,0,0.135748 -31167,7304:219,-49,31,0,0,0.129149 -31168,7304:218,-48,31,0,0,0.128988 -31169,7304:217,-47,31,0,0,0.200681 -31170,7304:216,-46,31,0,0,0.2025 -31171,7304:215,-45,31,0,0,0.237974 -31172,7304:114,-44,31,0,0,0.255303 -31173,7304:113,-43,31,0,0,0.251667 -31174,7304:112,-42,31,0,0,0.251899 -31175,7304:111,-41,31,0,0,0.249391 -31176,7304:110,-40,31,0,0,0.232705 -31177,7303:219,-39,31,0,0,0.260177 -31178,7303:218,-38,31,0,0,0.274422 -31179,7303:217,-37,31,0,0,0.268549 -31180,7303:216,-36,31,0,0,0.275118 -31181,7303:215,-35,31,0,0,0.294448 -31182,7303:114,-34,31,0,0,0.306716 -31183,7303:113,-33,31,0,0,0.275897 -31184,7303:112,-32,31,0,0,0.289267 -31185,7303:111,-31,31,0,0,0.281266 -31186,7303:110,-30,31,0,0,0.291066 -31187,7302:219,-29,31,0,0,0.323611 -31188,7302:218,-28,31,0,0,0.325007 -31189,7302:217,-27,31,0,0,0.315834 -31190,7302:216,-26,31,0,0,0.315479 -31191,7302:215,-25,31,0,0,0.315945 -31192,7302:114,-24,31,0,0,0.31042 -31193,7302:113,-23,31,0,0,0.306279 -31194,7302:112,-22,31,0,0,0.299532 -31195,7302:111,-21,31,0,0,0.29736 -31196,7302:110,-20,31,0,0,0.290155 -31197,7301:219,-19,31,0,0,0.286424 -31198,7301:218,-18,31,0,0,0.284141 -31199,7301:217,-17,31,0,0,0.284768 -31200,7301:216,-16,31,0,0,0.283451 -31201,7301:215,-15,31,0,0,0.284287 -31202,7301:114,-14,31,0,0,0.285815 -31203,7301:113,-13,31,0,0,0.281411 -31204,7301:112,-12,31,0,0,0.282139 -31205,7301:111,-11,31,0,0,0.285229 -31206,7301:110,-10,31,0,0,0.282201 -31207,7300:219,-9,31,0,0,0.281806 -31208,7300:218,-8,31,0,0,0.280394 -31209,7300:217,-7,31,0,0,0.283702 -31210,7300:216,-6,31,0,0,0.28437 -31211,7300:215,-5,31,0,0,0.288212 -31212,7300:114,-4,31,0,0,0.287054 -31213,7300:113,-3,31,0,0,0.293915 -31214,7300:112,-2,31,0,0,0.27049 -31215,1301:112,12,31,0,0,0.324421 -31216,1301:113,13,31,0,0,0.348825 -31217,1301:114,14,31,0,0,0.326405 -31218,1302:218,28,31,0,0,0.27236 -31219,1302:219,29,31,0,0,0.266696 -31220,1303:110,30,31,0,0,0.270247 -31221,1303:111,31,31,0,0,0.273624 -31222,1303:112,32,31,0,0,0.275466 -31223,1303:113,33,31,0,0,0.281058 -31224,1303:114,34,31,0,0,0.277089 -31225,1303:215,35,31,0,0,0.262458 -31226,1303:216,36,31,0,0,0.258303 -31227,1303:217,37,31,0,0,0.264792 -31228,1303:218,38,31,0,0,0.267903 -31229,1303:219,39,31,0,0,0.28166 -31230,1304:110,40,31,0,0,0.291108 -31231,1313:218,138,31,0,0,0.173574 -31232,1313:219,139,31,0,0,0.185124 -31233,1314:110,140,31,0,0,0.184551 -31234,1314:111,141,31,0,0,0.181371 -31235,1314:112,142,31,0,0,0.195055 -31236,1314:114,144,31,0,0,0.126016 -31237,1314:215,145,31,0,0,0.110916 -31238,1314:216,146,31,0,0,0.136351 -31239,1314:217,147,31,0,0,0.132207 -31240,1314:218,148,31,0,0,0.1337 -31241,1314:219,149,31,0,0,0.149561 -31242,1315:110,150,31,0,0,0.141838 -31243,1315:111,151,31,0,0,0.134248 -31244,1315:112,152,31,0,0,0.135808 -31245,1315:113,153,31,0,0,0.145913 -31246,1315:114,154,31,0,0,0.151518 -31247,1315:215,155,31,0,0,0.138287 -31248,1315:216,156,31,0,0,0.138655 -31249,1315:217,157,31,0,0,0.169891 -31250,1315:218,158,31,0,0,0.150294 -31251,1315:219,159,31,0,0,0.141676 -31252,1316:110,160,31,0,0,0.14413 -31253,1316:111,161,31,0,0,0.151347 -31254,1316:112,162,31,0,0,0.220729 -31255,1316:113,163,31,0,0,0.213189 -31256,1316:114,164,31,0,0,0.178747 -31257,1316:215,165,31,0,0,0.169587 -31258,1316:216,166,31,0,0,0.183809 -31259,1316:217,167,31,0,0,0.174608 -31260,1316:218,168,31,0,0,0.165716 -31261,1316:219,169,31,0,0,0.180382 -31262,1317:110,170,31,0,0,0.169572 -31263,1317:111,171,31,0,0,0.171053 -31264,1317:112,172,31,0,0,0.177589 -31265,1317:113,173,31,0,0,0.166969 -31266,1317:114,174,31,0,0,0.166299 -31267,1317:215,175,31,0,0,0.172354 -31268,1317:216,176,31,0,0,0.173323 -31269,1317:217,177,31,0,0,0.171491 -31270,1317:218,178,31,0,0,0.169616 -31271,1317:219,179,31,0,0,0.172809 -31272,1318:110,180,31,0,0,0.169023 -31273,7318:120,-180,32,0,0,0.16079 -31274,7317:229,-179,32,0,0,0.163779 -31275,7317:228,-178,32,0,0,0.166399 -31276,7317:227,-177,32,0,0,0.160748 -31277,7317:226,-176,32,0,0,0.162685 -31278,7317:225,-175,32,0,0,0.169442 -31279,7317:124,-174,32,0,0,0.169269 -31280,7317:123,-173,32,0,0,0.169891 -31281,7317:122,-172,32,0,0,0.170108 -31282,7317:121,-171,32,0,0,0.16849 -31283,7317:120,-170,32,0,0,0.171301 -31284,7316:229,-169,32,0,0,0.170849 -31285,7316:228,-168,32,0,0,0.173191 -31286,7316:227,-167,32,0,0,0.174874 -31287,7316:226,-166,32,0,0,0.174445 -31288,7316:225,-165,32,0,0,0.175379 -31289,7316:124,-164,32,0,0,0.178235 -31290,7316:123,-163,32,0,0,0.180382 -31291,7316:122,-162,32,0,0,0.181112 -31292,7316:121,-161,32,0,0,0.181188 -31293,7316:120,-160,32,0,0,0.180747 -31294,7315:229,-159,32,0,0,0.181952 -31295,7315:228,-158,32,0,0,0.181982 -31296,7315:227,-157,32,0,0,0.182028 -31297,7315:226,-156,32,0,0,0.181967 -31298,7315:225,-155,32,0,0,0.183625 -31299,7315:124,-154,32,0,0,0.186881 -31300,7315:123,-153,32,0,0,0.189455 -31301,7315:122,-152,32,0,0,0.192967 -31302,7315:121,-151,32,0,0,0.199054 -31303,7315:120,-150,32,0,0,0.20045 -31304,7314:229,-149,32,0,0,0.202367 -31305,7314:228,-148,32,0,0,0.206494 -31306,7314:227,-147,32,0,0,0.209882 -31307,7314:226,-146,32,0,0,0.212328 -31308,7314:225,-145,32,0,0,0.209388 -31309,7314:124,-144,32,0,0,0.216151 -31310,7314:123,-143,32,0,0,0.220252 -31311,7314:122,-142,32,0,0,0.216064 -31312,7314:121,-141,32,0,0,0.226238 -31313,7314:120,-140,32,0,0,0.224141 -31314,7313:229,-139,32,0,0,0.221685 -31315,7313:228,-138,32,0,0,0.228693 -31316,7313:227,-137,32,0,0,0.229837 -31317,7313:226,-136,32,0,0,0.239992 -31318,7313:225,-135,32,0,0,0.244329 -31319,7313:124,-134,32,0,0,0.239543 -31320,7313:123,-133,32,0,0,0.240931 -31321,7313:122,-132,32,0,0,0.244975 -31322,7313:121,-131,32,0,0,0.246498 -31323,7313:120,-130,32,0,0,0.244063 -31324,7312:229,-129,32,0,0,0.240461 -31325,7312:228,-128,32,0,0,0.241194 -31326,7312:227,-127,32,0,0,0.235986 -31327,7312:226,-126,32,0,0,0.23831 -31328,7312:225,-125,32,0,0,0.23803 -31329,7306:122,-62,32,0,0,0.134152 -31330,7306:121,-61,32,0,0,0.144447 -31331,7305:229,-59,32,0,0,0.147935 -31332,7305:228,-58,32,0,0,0.142678 -31333,7305:227,-57,32,0,0,0.140617 -31334,7305:226,-56,32,0,0,0.139011 -31335,7305:225,-55,32,0,0,0.13115 -31336,7305:124,-54,32,0,0,0.125384 -31337,7305:123,-53,32,0,0,0.117515 -31338,7305:122,-52,32,0,0,0.120444 -31339,7305:121,-51,32,0,0,0.130589 -31340,7305:120,-50,32,0,0,0.124474 -31341,7304:229,-49,32,0,0,0.129161 -31342,7304:228,-48,32,0,0,0.120728 -31343,7304:227,-47,32,0,0,0.125779 -31344,7304:226,-46,32,0,0,0.165432 -31345,7304:225,-45,32,0,0,0.165475 -31346,7304:124,-44,32,0,0,0.164795 -31347,7304:123,-43,32,0,0,0.200022 -31348,7304:122,-42,32,0,0,0.243779 -31349,7304:121,-41,32,0,0,0.241551 -31350,7304:120,-40,32,0,0,0.234231 -31351,7303:229,-39,32,0,0,0.256496 -31352,7303:228,-38,32,0,0,0.277089 -31353,7303:227,-37,32,0,0,0.276164 -31354,7303:226,-36,32,0,0,0.258047 -31355,7303:225,-35,32,0,0,0.271628 -31356,7303:124,-34,32,0,0,0.256594 -31357,7303:123,-33,32,0,0,0.248354 -31358,7303:122,-32,32,0,0,0.242984 -31359,7303:121,-31,32,0,0,0.284057 -31360,7303:120,-30,32,0,0,0.288149 -31361,7302:229,-29,32,0,0,0.314747 -31362,7302:228,-28,32,0,0,0.320157 -31363,7302:227,-27,32,0,0,0.310332 -31364,7302:226,-26,32,0,0,0.296009 -31365,7302:225,-25,32,0,0,0.291172 -31366,7302:124,-24,32,0,0,0.300072 -31367,7302:123,-23,32,0,0,0.299619 -31368,7302:122,-22,32,0,0,0.300547 -31369,7302:121,-21,32,0,0,0.292872 -31370,7302:120,-20,32,0,0,0.296266 -31371,7301:229,-19,32,0,0,0.292659 -31372,7301:228,-18,32,0,0,0.280539 -31373,7301:227,-17,32,0,0,0.276637 -31374,7301:226,-16,32,0,0,0.276431 -31375,7301:225,-15,32,0,0,0.278697 -31376,7301:124,-14,32,0,0,0.279545 -31377,7301:123,-13,32,0,0,0.275323 -31378,7301:122,-12,32,0,0,0.272645 -31379,7301:121,-11,32,0,0,0.273297 -31380,7301:120,-10,32,0,0,0.271729 -31381,7300:229,-9,32,0,0,0.272686 -31382,7300:228,-8,32,0,0,0.273665 -31383,7300:227,-7,32,0,0,0.273767 -31384,7300:226,-6,32,0,0,0.279193 -31385,7300:225,-5,32,0,0,0.278367 -31386,7300:124,-4,32,0,0,0.282909 -31387,7300:123,-3,32,0,0,0.28243 -31388,7300:122,-2,32,0,0,0.236487 -31389,1301:122,12,32,0,0,0.313861 -31390,1302:228,28,32,0,0,0.279358 -31391,1302:229,29,32,0,0,0.265032 -31392,1303:120,30,32,0,0,0.265112 -31393,1303:121,31,32,0,0,0.266998 -31394,1303:122,32,32,0,0,0.265893 -31395,1303:123,33,32,0,0,0.263773 -31396,1303:124,34,32,0,0,0.257222 -31397,1303:225,35,32,0,0,0.25501 -31398,1303:226,36,32,0,0,0.263573 -31399,1303:227,37,32,0,0,0.272218 -31400,1303:228,38,32,0,0,0.280145 -31401,1303:229,39,32,0,0,0.285312 -31402,1313:229,139,32,0,0,0.153551 -31403,1314:120,140,32,0,0,0.167155 -31404,1314:121,141,32,0,0,0.173 -31405,1314:122,142,32,0,0,0.181616 -31406,1314:123,143,32,0,0,0.122054 -31407,1314:124,144,32,0,0,0.112209 -31408,1314:225,145,32,0,0,0.107439 -31409,1314:226,146,32,0,0,0.13383 -31410,1314:227,147,32,0,0,0.139343 -31411,1314:228,148,32,0,0,0.143396 -31412,1314:229,149,32,0,0,0.142389 -31413,1315:120,150,32,0,0,0.142264 -31414,1315:121,151,32,0,0,0.145798 -31415,1315:122,152,32,0,0,0.135507 -31416,1315:123,153,32,0,0,0.128699 -31417,1315:124,154,32,0,0,0.136436 -31418,1315:225,155,32,0,0,0.14535 -31419,1315:226,156,32,0,0,0.132077 -31420,1315:227,157,32,0,0,0.132597 -31421,1315:228,158,32,0,0,0.141052 -31422,1315:229,159,32,0,0,0.142427 -31423,1316:120,160,32,0,0,0.138483 -31424,1316:121,161,32,0,0,0.13517 -31425,1316:122,162,32,0,0,0.143585 -31426,1316:123,163,32,0,0,0.153377 -31427,1316:124,164,32,0,0,0.149391 -31428,1316:225,165,32,0,0,0.154971 -31429,1316:226,166,32,0,0,0.168576 -31430,1316:227,167,32,0,0,0.14743 -31431,1316:228,168,32,0,0,0.143257 -31432,1316:229,169,32,0,0,0.150807 -31433,1317:120,170,32,0,0,0.157014 -31434,1317:121,171,32,0,0,0.154998 -31435,1317:122,172,32,0,0,0.152206 -31436,1317:123,173,32,0,0,0.150636 -31437,1317:124,174,32,0,0,0.154019 -31438,1317:225,175,32,0,0,0.156132 -31439,1317:226,176,32,0,0,0.154675 -31440,1317:227,177,32,0,0,0.157231 -31441,1317:228,178,32,0,0,0.159367 -31442,1317:229,179,32,0,0,0.160707 -31443,1318:120,180,32,0,0,0.16079 -31444,7318:130,-180,33,0,0,0.151281 -31445,7317:239,-179,33,0,0,0.154072 -31446,7317:238,-178,33,0,0,0.156416 -31447,7317:237,-177,33,0,0,0.154099 -31448,7317:236,-176,33,0,0,0.153684 -31449,7317:235,-175,33,0,0,0.153177 -31450,7317:134,-174,33,0,0,0.155066 -31451,7317:133,-173,33,0,0,0.159988 -31452,7317:132,-172,33,0,0,0.161234 -31453,7317:131,-171,33,0,0,0.161262 -31454,7317:130,-170,33,0,0,0.161944 -31455,7316:239,-169,33,0,0,0.161763 -31456,7316:238,-168,33,0,0,0.164385 -31457,7316:237,-167,33,0,0,0.167456 -31458,7316:236,-166,33,0,0,0.16826 -31459,7316:235,-165,33,0,0,0.168303 -31460,7316:134,-164,33,0,0,0.16885 -31461,7316:133,-163,33,0,0,0.17209 -31462,7316:132,-162,33,0,0,0.174726 -31463,7316:131,-161,33,0,0,0.172486 -31464,7316:130,-160,33,0,0,0.171272 -31465,7315:239,-159,33,0,0,0.175468 -31466,7315:238,-158,33,0,0,0.174534 -31467,7315:237,-157,33,0,0,0.173308 -31468,7315:236,-156,33,0,0,0.178913 -31469,7315:235,-155,33,0,0,0.182304 -31470,7315:134,-154,33,0,0,0.184907 -31471,7315:133,-153,33,0,0,0.185542 -31472,7315:132,-152,33,0,0,0.188526 -31473,7315:131,-151,33,0,0,0.192104 -31474,7315:130,-150,33,0,0,0.193848 -31475,7314:239,-149,33,0,0,0.19708 -31476,7314:238,-148,33,0,0,0.198139 -31477,7314:237,-147,33,0,0,0.19953 -31478,7314:236,-146,33,0,0,0.20022 -31479,7314:235,-145,33,0,0,0.201258 -31480,7314:134,-144,33,0,0,0.205352 -31481,7314:133,-143,33,0,0,0.207371 -31482,7314:132,-142,33,0,0,0.206831 -31483,7314:131,-141,33,0,0,0.213396 -31484,7314:130,-140,33,0,0,0.215542 -31485,7313:239,-139,33,0,0,0.217477 -31486,7313:238,-138,33,0,0,0.220234 -31487,7313:237,-137,33,0,0,0.222413 -31488,7313:236,-136,33,0,0,0.229892 -31489,7313:235,-135,33,0,0,0.230328 -31490,7313:134,-134,33,0,0,0.228802 -31491,7313:133,-133,33,0,0,0.233532 -31492,7313:132,-132,33,0,0,0.237007 -31493,7313:131,-131,33,0,0,0.237806 -31494,7313:130,-130,33,0,0,0.236672 -31495,7312:239,-129,33,0,0,0.235172 -31496,7312:238,-128,33,0,0,0.229892 -31497,7312:237,-127,33,0,0,0.227879 -31498,7312:236,-126,33,0,0,0.233771 -31499,7312:235,-125,33,0,0,0.234858 -31500,7306:134,-64,33,0,0,0.136872 -31501,7306:133,-63,33,0,0,0.151228 -31502,7306:132,-62,33,0,0,0.166299 -31503,7306:131,-61,33,0,0,0.158735 -31504,7305:239,-59,33,0,0,0.137493 -31505,7305:238,-58,33,0,0,0.14022 -31506,7305:237,-57,33,0,0,0.140629 -31507,7305:236,-56,33,0,0,0.136509 -31508,7305:235,-55,33,0,0,0.137359 -31509,7305:134,-54,33,0,0,0.131232 -31510,7305:132,-52,33,0,0,0.110098 -31511,7305:131,-51,33,0,0,0.112825 -31512,7305:130,-50,33,0,0,0.115884 -31513,7304:239,-49,33,0,0,0.116994 -31514,7304:238,-48,33,0,0,0.114909 -31515,7304:237,-47,33,0,0,0.123748 -31516,7304:236,-46,33,0,0,0.140753 -31517,7304:235,-45,33,0,0,0.145977 -31518,7304:134,-44,33,0,0,0.143674 -31519,7304:133,-43,33,0,0,0.170704 -31520,7304:132,-42,33,0,0,0.19512 -31521,7304:131,-41,33,0,0,0.207202 -31522,7304:130,-40,33,0,0,0.230128 -31523,7303:239,-39,33,0,0,0.233789 -31524,7303:238,-38,33,0,0,0.208844 -31525,7303:237,-37,33,0,0,0.215994 -31526,7303:236,-36,33,0,0,0.222022 -31527,7303:235,-35,33,0,0,0.231899 -31528,7303:134,-34,33,0,0,0.235672 -31529,7303:133,-33,33,0,0,0.229782 -31530,7303:132,-32,33,0,0,0.249487 -31531,7303:131,-31,33,0,0,0.249833 -31532,7303:130,-30,33,0,0,0.262458 -31533,7302:239,-29,33,0,0,0.300287 -31534,7302:238,-28,33,0,0,0.295517 -31535,7302:237,-27,33,0,0,0.288697 -31536,7302:236,-26,33,0,0,0.28836 -31537,7302:235,-25,33,0,0,0.280062 -31538,7302:134,-24,33,0,0,0.279462 -31539,7302:133,-23,33,0,0,0.292807 -31540,7302:132,-22,33,0,0,0.294491 -31541,7302:131,-21,33,0,0,0.285249 -31542,7302:130,-20,33,0,0,0.286193 -31543,7301:239,-19,33,0,0,0.288971 -31544,7301:238,-18,33,0,0,0.274749 -31545,7301:237,-17,33,0,0,0.274033 -31546,7301:236,-16,33,0,0,0.270917 -31547,7301:235,-15,33,0,0,0.271242 -31548,7301:134,-14,33,0,0,0.269195 -31549,7301:133,-13,33,0,0,0.270065 -31550,7301:132,-12,33,0,0,0.267662 -31551,7301:131,-11,33,0,0,0.263155 -31552,7301:130,-10,33,0,0,0.265112 -31553,7300:239,-9,33,0,0,0.265452 -31554,7300:238,-8,33,0,0,0.268407 -31555,7300:237,-7,33,0,0,0.268126 -31556,7300:236,-6,33,0,0,0.267602 -31557,7300:235,-5,33,0,0,0.274196 -31558,7300:134,-4,33,0,0,0.267883 -31559,1302:239,29,33,0,0,0.27179 -31560,1303:130,30,33,0,0,0.265032 -31561,1303:131,31,33,0,0,0.268206 -31562,1303:132,32,33,0,0,0.266114 -31563,1303:133,33,33,0,0,0.265973 -31564,1303:134,34,33,0,0,0.262398 -31565,1303:235,35,33,0,0,0.259466 -31566,1303:236,36,33,0,0,0.265673 -31567,1303:237,37,33,0,0,0.273951 -31568,1303:238,38,33,0,0,0.280228 -31569,1314:130,140,33,0,0,0.144332 -31570,1314:131,141,33,0,0,0.161498 -31571,1314:132,142,33,0,0,0.16637 -31572,1314:235,145,33,0,0,0.106771 -31573,1314:236,146,33,0,0,0.118843 -31574,1314:237,147,33,0,0,0.121526 -31575,1314:238,148,33,0,0,0.126016 -31576,1314:239,149,33,0,0,0.126822 -31577,1315:130,150,33,0,0,0.126367 -31578,1315:131,151,33,0,0,0.130963 -31579,1315:132,152,33,0,0,0.130671 -31580,1315:133,153,33,0,0,0.127792 -31581,1315:134,154,33,0,0,0.126651 -31582,1315:235,155,33,0,0,0.133569 -31583,1315:236,156,33,0,0,0.130496 -31584,1315:237,157,33,0,0,0.129555 -31585,1315:238,158,33,0,0,0.129972 -31586,1315:239,159,33,0,0,0.133533 -31587,1316:130,160,33,0,0,0.133212 -31588,1316:131,161,33,0,0,0.132443 -31589,1316:132,162,33,0,0,0.13487 -31590,1316:133,163,33,0,0,0.140716 -31591,1316:134,164,33,0,0,0.140282 -31592,1316:235,165,33,0,0,0.136836 -31593,1316:236,166,33,0,0,0.1364 -31594,1316:237,167,33,0,0,0.139787 -31595,1316:238,168,33,0,0,0.142942 -31596,1316:239,169,33,0,0,0.145146 -31597,1317:130,170,33,0,0,0.145695 -31598,1317:131,171,33,0,0,0.145695 -31599,1317:132,172,33,0,0,0.145964 -31600,1317:133,173,33,0,0,0.147857 -31601,1317:134,174,33,0,0,0.148025 -31602,1317:235,175,33,0,0,0.146631 -31603,1317:236,176,33,0,0,0.149469 -31604,1317:237,177,33,0,0,0.15319 -31605,1317:238,178,33,0,0,0.151333 -31606,1317:239,179,33,0,0,0.149026 -31607,1318:130,180,33,0,0,0.151281 -31608,7318:140,-180,34,0,0,0.147056 -31609,7317:249,-179,34,0,0,0.14658 -31610,7317:248,-178,34,0,0,0.146439 -31611,7317:247,-177,34,0,0,0.146992 -31612,7317:246,-176,34,0,0,0.147663 -31613,7317:245,-175,34,0,0,0.148856 -31614,7317:144,-174,34,0,0,0.150504 -31615,7317:143,-173,34,0,0,0.151584 -31616,7317:142,-172,34,0,0,0.15177 -31617,7317:141,-171,34,0,0,0.15363 -31618,7317:140,-170,34,0,0,0.156946 -31619,7316:249,-169,34,0,0,0.157245 -31620,7316:248,-168,34,0,0,0.157627 -31621,7316:247,-167,34,0,0,0.159546 -31622,7316:246,-166,34,0,0,0.161415 -31623,7316:245,-165,34,0,0,0.162712 -31624,7316:144,-164,34,0,0,0.163062 -31625,7316:143,-163,34,0,0,0.163119 -31626,7316:142,-162,34,0,0,0.164526 -31627,7316:141,-161,34,0,0,0.162139 -31628,7316:140,-160,34,0,0,0.16529 -31629,7315:249,-159,34,0,0,0.166827 -31630,7315:248,-158,34,0,0,0.165361 -31631,7315:247,-157,34,0,0,0.167514 -31632,7315:246,-156,34,0,0,0.17066 -31633,7315:245,-155,34,0,0,0.172765 -31634,7315:144,-154,34,0,0,0.178642 -31635,7315:143,-153,34,0,0,0.17976 -31636,7315:142,-152,34,0,0,0.184411 -31637,7315:141,-151,34,0,0,0.185962 -31638,7315:140,-150,34,0,0,0.188055 -31639,7314:249,-149,34,0,0,0.190309 -31640,7314:248,-148,34,0,0,0.190515 -31641,7314:247,-147,34,0,0,0.189156 -31642,7314:246,-146,34,0,0,0.191929 -31643,7314:245,-145,34,0,0,0.197193 -31644,7314:144,-144,34,0,0,0.198171 -31645,7314:143,-143,34,0,0,0.201705 -31646,7314:142,-142,34,0,0,0.203947 -31647,7314:141,-141,34,0,0,0.207811 -31648,7314:140,-140,34,0,0,0.209797 -31649,7313:249,-139,34,0,0,0.212896 -31650,7313:248,-138,34,0,0,0.212586 -31651,7313:247,-137,34,0,0,0.21195 -31652,7313:246,-136,34,0,0,0.214918 -31653,7313:245,-135,34,0,0,0.216099 -31654,7313:144,-134,34,0,0,0.222946 -31655,7313:143,-133,34,0,0,0.226274 -31656,7313:142,-132,34,0,0,0.226328 -31657,7313:141,-131,34,0,0,0.22991 -31658,7313:140,-130,34,0,0,0.229292 -31659,7312:249,-129,34,0,0,0.232852 -31660,7312:248,-128,34,0,0,0.229782 -31661,7312:247,-127,34,0,0,0.226202 -31662,7312:246,-126,34,0,0,0.226094 -31663,7312:245,-125,34,0,0,0.222661 -31664,7306:144,-64,34,0,0,0.136388 -31665,7306:143,-63,34,0,0,0.151017 -31666,7306:142,-62,34,0,0,0.138912 -31667,7306:141,-61,34,0,0,0.138483 -31668,7306:140,-60,34,0,0,0.135615 -31669,7305:249,-59,34,0,0,0.128251 -31670,7305:142,-52,34,0,0,0.104346 -31671,7305:141,-51,34,0,0,0.110159 -31672,7305:140,-50,34,0,0,0.112486 -31673,7304:249,-49,34,0,0,0.118274 -31674,7304:248,-48,34,0,0,0.129624 -31675,7304:247,-47,34,0,0,0.133402 -31676,7304:246,-46,34,0,0,0.132798 -31677,7304:245,-45,34,0,0,0.135627 -31678,7304:144,-44,34,0,0,0.139072 -31679,7304:143,-43,34,0,0,0.163934 -31680,7304:142,-42,34,0,0,0.187898 -31681,7304:141,-41,34,0,0,0.204031 -31682,7304:140,-40,34,0,0,0.202982 -31683,7303:249,-39,34,0,0,0.214813 -31684,7303:248,-38,34,0,0,0.194733 -31685,7303:247,-37,34,0,0,0.211574 -31686,7303:246,-36,34,0,0,0.217127 -31687,7303:245,-35,34,0,0,0.21269 -31688,7303:144,-34,34,0,0,0.221313 -31689,7303:143,-33,34,0,0,0.222217 -31690,7303:142,-32,34,0,0,0.242569 -31691,7303:141,-31,34,0,0,0.251396 -31692,7303:140,-30,34,0,0,0.252908 -31693,7302:249,-29,34,0,0,0.260276 -31694,7302:248,-28,34,0,0,0.294022 -31695,7302:247,-27,34,0,0,0.28243 -31696,7302:246,-26,34,0,0,0.287749 -31697,7302:245,-25,34,0,0,0.287223 -31698,7302:144,-24,34,0,0,0.285543 -31699,7302:143,-23,34,0,0,0.277357 -31700,7302:142,-22,34,0,0,0.283953 -31701,7302:141,-21,34,0,0,0.279586 -31702,7302:140,-20,34,0,0,0.276822 -31703,7301:249,-19,34,0,0,0.265712 -31704,7301:248,-18,34,0,0,0.271587 -31705,7301:247,-17,34,0,0,0.270349 -31706,7301:246,-16,34,0,0,0.267944 -31707,7301:245,-15,34,0,0,0.269074 -31708,7301:144,-14,34,0,0,0.261762 -31709,7301:143,-13,34,0,0,0.264012 -31710,7301:142,-12,34,0,0,0.258087 -31711,7301:141,-11,34,0,0,0.258441 -31712,7301:140,-10,34,0,0,0.260276 -31713,7300:249,-9,34,0,0,0.260534 -31714,7300:248,-8,34,0,0,0.263016 -31715,7300:247,-7,34,0,0,0.264492 -31716,7300:246,-6,34,0,0,0.257281 -31717,1302:249,29,34,0,0,0.262498 -31718,1303:140,30,34,0,0,0.269964 -31719,1303:141,31,34,0,0,0.276719 -31720,1303:245,35,34,0,0,0.266716 -31721,1303:246,36,34,0,0,0.270328 -31722,1314:141,141,34,0,0,0.110825 -31723,1314:142,142,34,0,0,0.123915 -31724,1314:143,143,34,0,0,0.130216 -31725,1314:144,144,34,0,0,0.105281 -31726,1314:245,145,34,0,0,0.103733 -31727,1314:246,146,34,0,0,0.100818 -31728,1314:247,147,34,0,0,0.112138 -31729,1314:248,148,34,0,0,0.120488 -31730,1314:249,149,34,0,0,0.122439 -31731,1315:140,150,34,0,0,0.126254 -31732,1315:141,151,34,0,0,0.127369 -31733,1315:142,152,34,0,0,0.124968 -31734,1315:143,153,34,0,0,0.122384 -31735,1315:144,154,34,0,0,0.123848 -31736,1315:245,155,34,0,0,0.119825 -31737,1315:246,156,34,0,0,0.11976 -31738,1315:247,157,34,0,0,0.13115 -31739,1315:248,158,34,0,0,0.133236 -31740,1315:249,159,34,0,0,0.131572 -31741,1316:140,160,34,0,0,0.130449 -31742,1316:141,161,34,0,0,0.130939 -31743,1316:142,162,34,0,0,0.133165 -31744,1316:143,163,34,0,0,0.141052 -31745,1316:144,164,34,0,0,0.140468 -31746,1316:245,165,34,0,0,0.132857 -31747,1316:246,166,34,0,0,0.133545 -31748,1316:247,167,34,0,0,0.137724 -31749,1316:248,168,34,0,0,0.135639 -31750,1316:249,169,34,0,0,0.141326 -31751,1317:140,170,34,0,0,0.142101 -31752,1317:141,171,34,0,0,0.141676 -31753,1317:142,172,34,0,0,0.141688 -31754,1317:143,173,34,0,0,0.141401 -31755,1317:144,174,34,0,0,0.140592 -31756,1317:245,175,34,0,0,0.140629 -31757,1317:246,176,34,0,0,0.141813 -31758,1317:247,177,34,0,0,0.143144 -31759,1317:248,178,34,0,0,0.144003 -31760,1317:249,179,34,0,0,0.146323 -31761,1318:140,180,34,0,0,0.147056 -31762,7318:350,-180,35,0,0,0.143699 -31763,7317:459,-179,35,0,0,0.143977 -31764,7317:458,-178,35,0,0,0.144879 -31765,7317:457,-177,35,0,0,0.145491 -31766,7317:456,-176,35,0,0,0.146221 -31767,7317:455,-175,35,0,0,0.147637 -31768,7317:354,-174,35,0,0,0.148012 -31769,7317:353,-173,35,0,0,0.148311 -31770,7317:352,-172,35,0,0,0.148687 -31771,7317:351,-171,35,0,0,0.150176 -31772,7317:350,-170,35,0,0,0.151664 -31773,7316:459,-169,35,0,0,0.152911 -31774,7316:458,-168,35,0,0,0.151981 -31775,7316:457,-167,35,0,0,0.151928 -31776,7316:456,-166,35,0,0,0.154407 -31777,7316:455,-165,35,0,0,0.157763 -31778,7316:354,-164,35,0,0,0.157927 -31779,7316:353,-163,35,0,0,0.155039 -31780,7316:352,-162,35,0,0,0.156091 -31781,7316:351,-161,35,0,0,0.156851 -31782,7316:350,-160,35,0,0,0.15868 -31783,7315:459,-159,35,0,0,0.158433 -31784,7315:458,-158,35,0,0,0.157518 -31785,7315:457,-157,35,0,0,0.157545 -31786,7315:456,-156,35,0,0,0.159505 -31787,7315:455,-155,35,0,0,0.161068 -31788,7315:354,-154,35,0,0,0.163161 -31789,7315:353,-153,35,0,0,0.168274 -31790,7315:352,-152,35,0,0,0.173161 -31791,7315:351,-151,35,0,0,0.177484 -31792,7315:350,-150,35,0,0,0.181784 -31793,7314:459,-149,35,0,0,0.183086 -31794,7314:458,-148,35,0,0,0.18418 -31795,7314:457,-147,35,0,0,0.180975 -31796,7314:456,-146,35,0,0,0.177589 -31797,7314:455,-145,35,0,0,0.187804 -31798,7314:354,-144,35,0,0,0.18944 -31799,7314:353,-143,35,0,0,0.188856 -31800,7314:352,-142,35,0,0,0.193993 -31801,7314:351,-141,35,0,0,0.195944 -31802,7314:350,-140,35,0,0,0.199645 -31803,7313:459,-139,35,0,0,0.200615 -31804,7313:458,-138,35,0,0,0.201903 -31805,7313:457,-137,35,0,0,0.203314 -31806,7313:456,-136,35,0,0,0.206377 -31807,7313:455,-135,35,0,0,0.2107 -31808,7313:354,-134,35,0,0,0.216621 -31809,7313:353,-133,35,0,0,0.217005 -31810,7313:352,-132,35,0,0,0.220941 -31811,7313:351,-131,35,0,0,0.221419 -31812,7313:350,-130,35,0,0,0.21851 -31813,7312:459,-129,35,0,0,0.220199 -31814,7312:458,-128,35,0,0,0.221632 -31815,7312:457,-127,35,0,0,0.223231 -31816,7312:456,-126,35,0,0,0.222963 -31817,7312:455,-125,35,0,0,0.218317 -31818,7306:458,-68,35,0,0,0.12809 -31819,7306:353,-63,35,0,0,0.122915 -31820,7306:352,-62,35,0,0,0.128504 -31821,7306:351,-61,35,0,0,0.121493 -31822,7306:350,-60,35,0,0,0.120281 -31823,7305:459,-59,35,0,0,0.126265 -31824,7305:458,-58,35,0,0,0.120902 -31825,7305:352,-52,35,0,0,0.103037 -31826,7305:351,-51,35,0,0,0.118617 -31827,7305:350,-50,35,0,0,0.11988 -31828,7304:459,-49,35,0,0,0.129254 -31829,7304:458,-48,35,0,0,0.134774 -31830,7304:457,-47,35,0,0,0.150124 -31831,7304:456,-46,35,0,0,0.154675 -31832,7304:455,-45,35,0,0,0.153537 -31833,7304:354,-44,35,0,0,0.169168 -31834,7304:353,-43,35,0,0,0.18304 -31835,7304:352,-42,35,0,0,0.19134 -31836,7304:351,-41,35,0,0,0.180884 -31837,7304:350,-40,35,0,0,0.208437 -31838,7303:459,-39,35,0,0,0.186569 -31839,7303:458,-38,35,0,0,0.195459 -31840,7303:457,-37,35,0,0,0.198825 -31841,7303:456,-36,35,0,0,0.202915 -31842,7303:455,-35,35,0,0,0.212999 -31843,7303:354,-34,35,0,0,0.211831 -31844,7303:353,-33,35,0,0,0.210581 -31845,7303:352,-32,35,0,0,0.210291 -31846,7303:351,-31,35,0,0,0.25353 -31847,7303:350,-30,35,0,0,0.273277 -31848,7302:459,-29,35,0,0,0.268367 -31849,7302:458,-28,35,0,0,0.284329 -31850,7302:457,-27,35,0,0,0.281182 -31851,7302:456,-26,35,0,0,0.274053 -31852,7302:455,-25,35,0,0,0.250219 -31853,7302:354,-24,35,0,0,0.258224 -31854,7302:353,-23,35,0,0,0.278367 -31855,7302:352,-22,35,0,0,0.280601 -31856,7302:351,-21,35,0,0,0.276801 -31857,7302:350,-20,35,0,0,0.270795 -31858,7301:459,-19,35,0,0,0.263773 -31859,7301:458,-18,35,0,0,0.269013 -31860,7301:457,-17,35,0,0,0.267944 -31861,7301:456,-16,35,0,0,0.266877 -31862,7301:455,-15,35,0,0,0.265212 -31863,7301:354,-14,35,0,0,0.259407 -31864,7301:353,-13,35,0,0,0.256516 -31865,7301:352,-12,35,0,0,0.250392 -31866,7301:351,-11,35,0,0,0.25101 -31867,7301:350,-10,35,0,0,0.25072 -31868,7300:459,-9,35,0,0,0.25157 -31869,7300:458,-8,35,0,0,0.254191 -31870,7300:457,-7,35,0,0,0.254191 -31871,7300:456,-6,35,0,0,0.256771 -31872,7300:455,-5,35,0,0,0.255811 -31873,7300:354,-4,35,0,0,0.253238 -31874,7300:353,-3,35,0,0,0.213258 -31875,1303:350,30,35,0,0,0.254074 -31876,1303:351,31,35,0,0,0.2585 -31877,1303:352,32,35,0,0,0.246822 -31878,1314:352,142,35,0,0,0.0930596 -31879,1314:353,143,35,0,0,0.105562 -31880,1314:455,145,35,0,0,0.094694 -31881,1314:456,146,35,0,0,0.0931986 -31882,1314:457,147,35,0,0,0.10741 -31883,1314:458,148,35,0,0,0.11493 -31884,1314:459,149,35,0,0,0.117408 -31885,1315:350,150,35,0,0,0.116644 -31886,1315:351,151,35,0,0,0.119652 -31887,1315:352,152,35,0,0,0.119836 -31888,1315:353,153,35,0,0,0.121263 -31889,1315:354,154,35,0,0,0.123459 -31890,1315:455,155,35,0,0,0.121285 -31891,1315:456,156,35,0,0,0.119349 -31892,1315:457,157,35,0,0,0.119446 -31893,1315:458,158,35,0,0,0.12508 -31894,1315:459,159,35,0,0,0.130344 -31895,1316:350,160,35,0,0,0.129833 -31896,1316:351,161,35,0,0,0.129566 -31897,1316:352,162,35,0,0,0.130753 -31898,1316:353,163,35,0,0,0.131396 -31899,1316:354,164,35,0,0,0.131819 -31900,1316:455,165,35,0,0,0.131866 -31901,1316:456,166,35,0,0,0.132821 -31902,1316:457,167,35,0,0,0.133795 -31903,1316:458,168,35,0,0,0.137371 -31904,1316:459,169,35,0,0,0.138556 -31905,1317:350,170,35,0,0,0.138863 -31906,1317:351,171,35,0,0,0.138617 -31907,1317:352,172,35,0,0,0.138986 -31908,1317:353,173,35,0,0,0.139849 -31909,1317:354,174,35,0,0,0.139898 -31910,1317:455,175,35,0,0,0.140084 -31911,1317:456,176,35,0,0,0.140518 -31912,1317:457,177,35,0,0,0.141189 -31913,1317:458,178,35,0,0,0.142251 -31914,1317:459,179,35,0,0,0.143106 -31915,1318:350,180,35,0,0,0.143699 -31916,7318:360,-180,36,0,0,0.143813 -31917,7317:469,-179,36,0,0,0.144332 -31918,7317:468,-178,36,0,0,0.145133 -31919,7317:467,-177,36,0,0,0.145746 -31920,7317:466,-176,36,0,0,0.146105 -31921,7317:465,-175,36,0,0,0.146349 -31922,7317:364,-174,36,0,0,0.146683 -31923,7317:363,-173,36,0,0,0.147133 -31924,7317:362,-172,36,0,0,0.147456 -31925,7317:361,-171,36,0,0,0.147288 -31926,7317:360,-170,36,0,0,0.147211 -31927,7316:469,-169,36,0,0,0.148064 -31928,7316:468,-168,36,0,0,0.148661 -31929,7316:467,-167,36,0,0,0.14926 -31930,7316:466,-166,36,0,0,0.150583 -31931,7316:465,-165,36,0,0,0.152233 -31932,7316:364,-164,36,0,0,0.152472 -31933,7316:363,-163,36,0,0,0.150609 -31934,7316:362,-162,36,0,0,0.15015 -31935,7316:361,-161,36,0,0,0.150189 -31936,7316:360,-160,36,0,0,0.151518 -31937,7315:469,-159,36,0,0,0.152392 -31938,7315:468,-158,36,0,0,0.152844 -31939,7315:467,-157,36,0,0,0.153684 -31940,7315:466,-156,36,0,0,0.155011 -31941,7315:465,-155,36,0,0,0.155443 -31942,7315:364,-154,36,0,0,0.155146 -31943,7315:363,-153,36,0,0,0.156905 -31944,7315:362,-152,36,0,0,0.16025 -31945,7315:361,-151,36,0,0,0.164653 -31946,7315:360,-150,36,0,0,0.167399 -31947,7314:469,-149,36,0,0,0.16803 -31948,7314:468,-148,36,0,0,0.169674 -31949,7314:467,-147,36,0,0,0.1719 -31950,7314:466,-146,36,0,0,0.170718 -31951,7314:465,-145,36,0,0,0.17133 -31952,7314:364,-144,36,0,0,0.178355 -31953,7314:363,-143,36,0,0,0.180519 -31954,7314:362,-142,36,0,0,0.182825 -31955,7314:361,-141,36,0,0,0.184504 -31956,7314:360,-140,36,0,0,0.187413 -31957,7313:469,-139,36,0,0,0.190784 -31958,7313:468,-138,36,0,0,0.195007 -31959,7313:467,-137,36,0,0,0.197389 -31961,7313:465,-135,36,0,0,0.206966 -31962,7313:364,-134,36,0,0,0.20978 -31963,7313:363,-133,36,0,0,0.216047 -31964,7313:362,-132,36,0,0,0.219213 -31965,7313:361,-131,36,0,0,0.21497 -31966,7313:360,-130,36,0,0,0.211265 -31967,7312:469,-129,36,0,0,0.213378 -31968,7312:468,-128,36,0,0,0.213879 -31969,7312:467,-127,36,0,0,0.216796 -31970,7312:466,-126,36,0,0,0.219072 -31971,7306:466,-66,36,0,0,0.123437 -31972,7306:465,-65,36,0,0,0.122186 -31973,7306:364,-64,36,0,0,0.123648 -31974,7306:363,-63,36,0,0,0.125001 -31975,7306:361,-61,36,0,0,0.120979 -31976,7306:360,-60,36,0,0,0.11494 -31977,7305:469,-59,36,0,0,0.112948 -31978,7305:468,-58,36,0,0,0.117952 -31979,7305:467,-57,36,0,0,0.117536 -31980,7305:465,-55,36,0,0,0.100753 -31981,7305:364,-54,36,0,0,0.09533 -31982,7305:363,-53,36,0,0,0.0979943 -31983,7305:362,-52,36,0,0,0.113733 -31984,7305:361,-51,36,0,0,0.117547 -31985,7305:360,-50,36,0,0,0.121867 -31986,7304:469,-49,36,0,0,0.13101 -31987,7304:468,-48,36,0,0,0.135675 -31988,7304:467,-47,36,0,0,0.14913 -31989,7304:466,-46,36,0,0,0.162419 -31990,7304:465,-45,36,0,0,0.163709 -31991,7304:364,-44,36,0,0,0.16161 -31992,7304:363,-43,36,0,0,0.162796 -31993,7304:362,-42,36,0,0,0.177829 -31994,7304:361,-41,36,0,0,0.169992 -31995,7304:360,-40,36,0,0,0.178295 -31996,7303:469,-39,36,0,0,0.180124 -31997,7303:468,-38,36,0,0,0.180762 -31998,7303:467,-37,36,0,0,0.194491 -31999,7303:466,-36,36,0,0,0.188055 -32000,7303:465,-35,36,0,0,0.182411 -32001,7303:364,-34,36,0,0,0.180762 -32002,7303:363,-33,36,0,0,0.181707 -32003,7303:362,-32,36,0,0,0.188825 -32004,7303:361,-31,36,0,0,0.214848 -32005,7303:360,-30,36,0,0,0.264892 -32006,7302:469,-29,36,0,0,0.23146 -32007,7302:468,-28,36,0,0,0.25587 -32008,7302:467,-27,36,0,0,0.266937 -32009,7302:466,-26,36,0,0,0.252209 -32010,7302:465,-25,36,0,0,0.233329 -32011,7302:364,-24,36,0,0,0.249718 -32012,7302:363,-23,36,0,0,0.23844 -32013,7302:362,-22,36,0,0,0.237676 -32014,7302:361,-21,36,0,0,0.243439 -32015,7302:360,-20,36,0,0,0.265613 -32016,7301:469,-19,36,0,0,0.260256 -32017,7301:468,-18,36,0,0,0.260534 -32018,7301:467,-17,36,0,0,0.262219 -32019,7301:466,-16,36,0,0,0.266254 -32020,7301:465,-15,36,0,0,0.262796 -32021,7301:364,-14,36,0,0,0.257556 -32022,7301:363,-13,36,0,0,0.253977 -32023,7301:362,-12,36,0,0,0.246422 -32024,7301:361,-11,36,0,0,0.242588 -32025,7301:360,-10,36,0,0,0.243211 -32026,7300:469,-9,36,0,0,0.244747 -32027,7300:468,-8,36,0,0,0.245697 -32028,7300:467,-7,36,0,0,0.236932 -32029,7300:364,-4,36,0,0,0.241513 -32030,7300:363,-3,36,0,0,0.246613 -32031,7300:362,-2,36,0,0,0.247052 -32032,7300:361,-1,36,0,0,0.2346 -32033,1314:363,143,36,0,0,0.0866592 -32034,1314:466,146,36,0,0,0.0921963 -32035,1314:467,147,36,0,0,0.102516 -32036,1314:468,148,36,0,0,0.11038 -32037,1314:469,149,36,0,0,0.113847 -32038,1315:360,150,36,0,0,0.116707 -32039,1315:361,151,36,0,0,0.116824 -32040,1315:362,152,36,0,0,0.119188 -32041,1315:363,153,36,0,0,0.121088 -32042,1315:364,154,36,0,0,0.123447 -32043,1315:465,155,36,0,0,0.122649 -32044,1315:466,156,36,0,0,0.119966 -32045,1315:468,158,36,0,0,0.120118 -32046,1315:469,159,36,0,0,0.118434 -32047,1316:360,160,36,0,0,0.130216 -32048,1316:361,161,36,0,0,0.129103 -32049,1316:362,162,36,0,0,0.128113 -32050,1316:363,163,36,0,0,0.131185 -32051,1316:364,164,36,0,0,0.134045 -32052,1316:465,165,36,0,0,0.134033 -32053,1316:466,166,36,0,0,0.134248 -32054,1316:467,167,36,0,0,0.136436 -32055,1316:468,168,36,0,0,0.135519 -32056,1316:469,169,36,0,0,0.135399 -32057,1317:360,170,36,0,0,0.135194 -32058,1317:361,171,36,0,0,0.135675 -32059,1317:362,172,36,0,0,0.137407 -32060,1317:363,173,36,0,0,0.13874 -32061,1317:364,174,36,0,0,0.139688 -32062,1317:465,175,36,0,0,0.139985 -32063,1317:466,176,36,0,0,0.140903 -32064,1317:467,177,36,0,0,0.1417 -32065,1317:468,178,36,0,0,0.142301 -32066,1317:469,179,36,0,0,0.143068 -32067,1318:360,180,36,0,0,0.143813 -32068,7318:370,-180,37,0,0,0.138067 -32069,7317:479,-179,37,0,0,0.140567 -32070,7317:478,-178,37,0,0,0.142026 -32071,7317:477,-177,37,0,0,0.142076 -32072,7317:476,-176,37,0,0,0.142051 -32073,7317:475,-175,37,0,0,0.143459 -32074,7317:374,-174,37,0,0,0.144015 -32075,7317:373,-173,37,0,0,0.145236 -32076,7317:372,-172,37,0,0,0.145363 -32077,7317:371,-171,37,0,0,0.145414 -32078,7317:370,-170,37,0,0,0.145657 -32079,7316:479,-169,37,0,0,0.146092 -32080,7316:478,-168,37,0,0,0.146554 -32081,7316:477,-167,37,0,0,0.147159 -32082,7316:476,-166,37,0,0,0.146811 -32083,7316:475,-165,37,0,0,0.146208 -32084,7316:374,-164,37,0,0,0.146451 -32085,7316:373,-163,37,0,0,0.14725 -32086,7316:372,-162,37,0,0,0.146992 -32087,7316:371,-161,37,0,0,0.14712 -32088,7316:370,-160,37,0,0,0.147624 -32089,7315:479,-159,37,0,0,0.14712 -32090,7315:478,-158,37,0,0,0.148 -32091,7315:477,-157,37,0,0,0.14896 -32092,7315:476,-156,37,0,0,0.149404 -32093,7315:475,-155,37,0,0,0.150084 -32094,7315:374,-154,37,0,0,0.152127 -32095,7315:373,-153,37,0,0,0.154917 -32096,7315:372,-152,37,0,0,0.15764 -32097,7315:371,-151,37,0,0,0.160845 -32098,7315:370,-150,37,0,0,0.162265 -32099,7314:479,-149,37,0,0,0.163638 -32100,7314:478,-148,37,0,0,0.16512 -32101,7314:477,-147,37,0,0,0.166385 -32102,7314:476,-146,37,0,0,0.167815 -32103,7314:475,-145,37,0,0,0.169312 -32104,7314:374,-144,37,0,0,0.17101 -32105,7314:373,-143,37,0,0,0.173559 -32106,7314:372,-142,37,0,0,0.176511 -32107,7314:371,-141,37,0,0,0.179472 -32108,7314:370,-140,37,0,0,0.183995 -32109,7313:479,-139,37,0,0,0.188322 -32110,7313:478,-138,37,0,0,0.19088 -32111,7313:477,-137,37,0,0,0.1938 -32112,7313:476,-136,37,0,0,0.199365 -32113,7313:475,-135,37,0,0,0.202666 -32114,7313:374,-134,37,0,0,0.205201 -32115,7313:373,-133,37,0,0,0.210684 -32116,7313:372,-132,37,0,0,0.209813 -32117,7313:371,-131,37,0,0,0.208675 -32118,7313:370,-130,37,0,0,0.210257 -32119,7312:479,-129,37,0,0,0.209422 -32120,7312:478,-128,37,0,0,0.211762 -32121,7312:477,-127,37,0,0,0.214865 -32122,7312:476,-126,37,0,0,0.213585 -32123,7305:477,-57,37,0,0,0.099402 -32124,7305:476,-56,37,0,0,0.101791 -32125,7305:374,-54,37,0,0,0.0913568 -32126,7305:373,-53,37,0,0,0.103599 -32127,7305:372,-52,37,0,0,0.111607 -32128,7305:371,-51,37,0,0,0.114387 -32129,7305:370,-50,37,0,0,0.117121 -32130,7304:479,-49,37,0,0,0.127357 -32131,7304:478,-48,37,0,0,0.140468 -32132,7304:477,-47,37,0,0,0.152871 -32133,7304:476,-46,37,0,0,0.156308 -32134,7304:475,-45,37,0,0,0.158817 -32135,7304:374,-44,37,0,0,0.155295 -32136,7304:373,-43,37,0,0,0.150767 -32137,7304:372,-42,37,0,0,0.15434 -32138,7304:371,-41,37,0,0,0.149091 -32139,7304:370,-40,37,0,0,0.153097 -32140,7303:479,-39,37,0,0,0.154582 -32141,7303:478,-38,37,0,0,0.163119 -32142,7303:477,-37,37,0,0,0.161623 -32143,7303:476,-36,37,0,0,0.154099 -32144,7303:475,-35,37,0,0,0.152459 -32145,7303:374,-34,37,0,0,0.158269 -32146,7303:373,-33,37,0,0,0.198155 -32147,7303:372,-32,37,0,0,0.195168 -32148,7303:371,-31,37,0,0,0.230147 -32149,7303:370,-30,37,0,0,0.244291 -32150,7302:479,-29,37,0,0,0.245412 -32151,7302:478,-28,37,0,0,0.213655 -32152,7302:477,-27,37,0,0,0.219266 -32153,7302:476,-26,37,0,0,0.218002 -32154,7302:475,-25,37,0,0,0.223641 -32155,7302:374,-24,37,0,0,0.217215 -32156,7302:373,-23,37,0,0,0.22759 -32157,7302:372,-22,37,0,0,0.24868 -32158,7302:371,-21,37,0,0,0.258579 -32159,7302:370,-20,37,0,0,0.258736 -32160,7301:479,-19,37,0,0,0.259328 -32161,7301:478,-18,37,0,0,0.25589 -32162,7301:477,-17,37,0,0,0.253626 -32163,7301:476,-16,37,0,0,0.256203 -32164,7301:475,-15,37,0,0,0.241928 -32165,7301:374,-14,37,0,0,0.249583 -32166,7301:373,-13,37,0,0,0.246689 -32167,7301:372,-12,37,0,0,0.238571 -32168,7300:479,-9,37,0,0,0.235708 -32169,7300:478,-8,37,0,0,0.235912 -32170,7300:477,-7,37,0,0,0.23606 -32171,7300:476,-6,37,0,0,0.222377 -32172,7300:475,-5,37,0,0,0.205285 -32173,1300:371,0,37,0,0,0.230985 -32174,1314:373,143,37,0,0,0.0859141 -32175,1314:476,146,37,0,0,0.0933116 -32176,1314:477,147,37,0,0,0.101575 -32177,1314:478,148,37,0,0,0.108657 -32178,1314:479,149,37,0,0,0.112845 -32179,1315:370,150,37,0,0,0.118102 -32180,1315:371,151,37,0,0,0.119134 -32181,1315:372,152,37,0,0,0.119134 -32182,1315:373,153,37,0,0,0.120379 -32183,1315:374,154,37,0,0,0.120913 -32184,1315:475,155,37,0,0,0.12076 -32185,1315:476,156,37,0,0,0.121647 -32186,1315:477,157,37,0,0,0.120815 -32187,1316:370,160,37,0,0,0.117121 -32188,1316:371,161,37,0,0,0.123514 -32189,1316:372,162,37,0,0,0.126753 -32190,1316:373,163,37,0,0,0.126186 -32191,1316:374,164,37,0,0,0.131173 -32192,1316:475,165,37,0,0,0.132892 -32193,1316:476,166,37,0,0,0.133414 -32194,1316:477,167,37,0,0,0.13262 -32195,1316:478,168,37,0,0,0.13156 -32196,1316:479,169,37,0,0,0.132738 -32197,1317:370,170,37,0,0,0.1342 -32198,1317:371,171,37,0,0,0.134631 -32199,1317:372,172,37,0,0,0.134475 -32200,1317:373,173,37,0,0,0.131419 -32201,1317:374,174,37,0,0,0.131185 -32202,1317:475,175,37,0,0,0.133545 -32203,1317:476,176,37,0,0,0.136194 -32204,1317:477,177,37,0,0,0.136933 -32205,1317:478,178,37,0,0,0.136122 -32206,1317:479,179,37,0,0,0.138274 -32207,1318:370,180,37,0,0,0.138067 -32208,7318:380,-180,38,0,0,0.135808 -32209,7317:489,-179,38,0,0,0.137712 -32210,7317:488,-178,38,0,0,0.140109 -32211,7317:487,-177,38,0,0,0.140592 -32212,7317:486,-176,38,0,0,0.141239 -32213,7317:485,-175,38,0,0,0.141851 -32214,7317:384,-174,38,0,0,0.142264 -32215,7317:383,-173,38,0,0,0.14254 -32216,7317:382,-172,38,0,0,0.144955 -32217,7317:381,-171,38,0,0,0.14535 -32218,7317:380,-170,38,0,0,0.14493 -32219,7316:489,-169,38,0,0,0.14507 -32220,7316:488,-168,38,0,0,0.145223 -32221,7316:487,-167,38,0,0,0.145951 -32222,7316:486,-166,38,0,0,0.146349 -32223,7316:485,-165,38,0,0,0.145849 -32224,7316:384,-164,38,0,0,0.145299 -32225,7316:383,-163,38,0,0,0.144993 -32226,7316:382,-162,38,0,0,0.144726 -32227,7316:381,-161,38,0,0,0.144358 -32228,7316:380,-160,38,0,0,0.143927 -32229,7315:489,-159,38,0,0,0.143649 -32230,7315:488,-158,38,0,0,0.143737 -32231,7315:487,-157,38,0,0,0.144612 -32232,7315:486,-156,38,0,0,0.146131 -32233,7315:485,-155,38,0,0,0.147831 -32234,7315:384,-154,38,0,0,0.151399 -32235,7315:383,-153,38,0,0,0.152698 -32236,7315:382,-152,38,0,0,0.154582 -32237,7315:381,-151,38,0,0,0.157463 -32238,7315:380,-150,38,0,0,0.15923 -32239,7314:489,-149,38,0,0,0.160693 -32240,7314:488,-148,38,0,0,0.163638 -32241,7314:487,-147,38,0,0,0.16385 -32242,7314:486,-146,38,0,0,0.164837 -32243,7314:485,-145,38,0,0,0.165574 -32244,7314:384,-144,38,0,0,0.167413 -32245,7314:383,-143,38,0,0,0.174075 -32246,7314:382,-142,38,0,0,0.174741 -32247,7314:381,-141,38,0,0,0.178566 -32248,7314:380,-140,38,0,0,0.185263 -32249,7313:489,-139,38,0,0,0.186273 -32250,7313:488,-138,38,0,0,0.187632 -32251,7313:487,-137,38,0,0,0.192599 -32252,7313:486,-136,38,0,0,0.196009 -32253,7313:485,-135,38,0,0,0.19809 -32254,7313:384,-134,38,0,0,0.203664 -32255,7313:383,-133,38,0,0,0.20798 -32256,7313:382,-132,38,0,0,0.206393 -32257,7313:381,-131,38,0,0,0.206477 -32258,7313:380,-130,38,0,0,0.208946 -32259,7312:489,-129,38,0,0,0.209558 -32260,7312:488,-128,38,0,0,0.202052 -32261,7312:485,-125,38,0,0,0.19099 -32262,7305:384,-54,38,0,0,0.0893389 -32263,7305:383,-53,38,0,0,0.101331 -32264,7305:382,-52,38,0,0,0.111974 -32265,7305:381,-51,38,0,0,0.110511 -32266,7305:380,-50,38,0,0,0.120075 -32267,7304:489,-49,38,0,0,0.135062 -32268,7304:488,-48,38,0,0,0.148987 -32269,7304:487,-47,38,0,0,0.154608 -32270,7304:486,-46,38,0,0,0.151241 -32271,7304:485,-45,38,0,0,0.148427 -32272,7304:384,-44,38,0,0,0.145542 -32273,7304:383,-43,38,0,0,0.149417 -32274,7304:382,-42,38,0,0,0.147133 -32275,7304:381,-41,38,0,0,0.144726 -32276,7304:380,-40,38,0,0,0.148259 -32277,7303:489,-39,38,0,0,0.145542 -32278,7303:488,-38,38,0,0,0.147779 -32279,7303:487,-37,38,0,0,0.146722 -32280,7303:486,-36,38,0,0,0.157327 -32281,7303:485,-35,38,0,0,0.158351 -32282,7303:384,-34,38,0,0,0.158872 -32283,7303:383,-33,38,0,0,0.164046 -32284,7303:382,-32,38,0,0,0.190182 -32285,7303:381,-31,38,0,0,0.204799 -32286,7303:380,-30,38,0,0,0.215229 -32287,7302:489,-29,38,0,0,0.223249 -32288,7302:488,-28,38,0,0,0.216255 -32289,7302:487,-27,38,0,0,0.212312 -32290,7302:486,-26,38,0,0,0.2049 -32291,7302:485,-25,38,0,0,0.221224 -32292,7302:384,-24,38,0,0,0.211077 -32293,7302:383,-23,38,0,0,0.222572 -32294,7302:382,-22,38,0,0,0.238198 -32295,7302:381,-21,38,0,0,0.236283 -32296,7302:380,-20,38,0,0,0.232962 -32297,7301:489,-19,38,0,0,0.230165 -32298,7301:488,-18,38,0,0,0.233385 -32299,7301:487,-17,38,0,0,0.24395 -32300,7301:486,-16,38,0,0,0.25499 -32301,7301:485,-15,38,0,0,0.241269 -32302,7301:384,-14,38,0,0,0.241721 -32303,7301:383,-13,38,0,0,0.237658 -32304,7301:382,-12,38,0,0,0.236042 -32305,7301:381,-11,38,0,0,0.228603 -32306,7300:487,-7,38,0,0,0.235043 -32307,7300:486,-6,38,0,0,0.206293 -32308,1300:381,0,38,0,0,0.222341 -32309,1300:381,1,38,0,0,0.225466 -32310,1314:383,143,38,0,0,0.0804923 -32311,1314:486,146,38,0,0,0.0912546 -32312,1314:487,147,38,0,0,0.103656 -32313,1314:488,148,38,0,0,0.108071 -32314,1314:489,149,38,0,0,0.111058 -32315,1315:380,150,38,0,0,0.113702 -32316,1315:381,151,38,0,0,0.117079 -32317,1315:382,152,38,0,0,0.119793 -32318,1315:383,153,38,0,0,0.120968 -32319,1315:384,154,38,0,0,0.121746 -32320,1315:485,155,38,0,0,0.122605 -32321,1315:486,156,38,0,0,0.123614 -32322,1315:487,157,38,0,0,0.12135 -32323,1316:380,160,38,0,0,0.116782 -32324,1316:381,161,38,0,0,0.114596 -32325,1316:382,162,38,0,0,0.119511 -32326,1316:383,163,38,0,0,0.127483 -32327,1316:384,164,38,0,0,0.128228 -32328,1316:485,165,38,0,0,0.128274 -32329,1316:486,166,38,0,0,0.129242 -32330,1316:487,167,38,0,0,0.1301 -32331,1316:488,168,38,0,0,0.13108 -32332,1316:489,169,38,0,0,0.132963 -32333,1317:380,170,38,0,0,0.133284 -32334,1317:381,171,38,0,0,0.129566 -32335,1317:382,172,38,0,0,0.126685 -32336,1317:383,173,38,0,0,0.126708 -32337,1317:384,174,38,0,0,0.127221 -32338,1317:485,175,38,0,0,0.127278 -32339,1317:486,176,38,0,0,0.129011 -32340,1317:487,177,38,0,0,0.13101 -32341,1317:488,178,38,0,0,0.132928 -32342,1317:489,179,38,0,0,0.134535 -32343,1318:380,180,38,0,0,0.135808 -32344,7318:390,-180,39,0,0,0.135242 -32345,7317:499,-179,39,0,0,0.134355 -32346,7317:498,-178,39,0,0,0.13101 -32347,7317:497,-177,39,0,0,0.130787 -32348,7317:496,-176,39,0,0,0.13122 -32349,7317:495,-175,39,0,0,0.131889 -32350,7317:394,-174,39,0,0,0.133997 -32351,7317:393,-173,39,0,0,0.136861 -32352,7317:392,-172,39,0,0,0.140158 -32353,7317:391,-171,39,0,0,0.141863 -32354,7317:390,-170,39,0,0,0.14356 -32355,7316:499,-169,39,0,0,0.144739 -32356,7316:497,-167,39,0,0,0.145032 -32357,7316:496,-166,39,0,0,0.145146 -32358,7316:495,-165,39,0,0,0.145197 -32359,7316:394,-164,39,0,0,0.144981 -32360,7316:393,-163,39,0,0,0.144815 -32361,7316:392,-162,39,0,0,0.144943 -32362,7316:391,-161,39,0,0,0.145006 -32363,7316:390,-160,39,0,0,0.143421 -32364,7315:499,-159,39,0,0,0.141963 -32365,7315:498,-158,39,0,0,0.143118 -32366,7315:497,-157,39,0,0,0.145338 -32367,7315:496,-156,39,0,0,0.146439 -32368,7315:495,-155,39,0,0,0.148765 -32369,7315:394,-154,39,0,0,0.149495 -32370,7315:393,-153,39,0,0,0.15078 -32371,7315:392,-152,39,0,0,0.152286 -32372,7315:391,-151,39,0,0,0.155349 -32373,7315:390,-150,39,0,0,0.157354 -32374,7314:499,-149,39,0,0,0.15764 -32375,7314:498,-148,39,0,0,0.157831 -32376,7314:497,-147,39,0,0,0.158913 -32377,7314:496,-146,39,0,0,0.162279 -32378,7314:495,-145,39,0,0,0.164894 -32379,7314:394,-144,39,0,0,0.166784 -32380,7314:393,-143,39,0,0,0.168404 -32381,7314:392,-142,39,0,0,0.169732 -32382,7314:391,-141,39,0,0,0.17209 -32383,7314:390,-140,39,0,0,0.177289 -32384,7313:499,-139,39,0,0,0.177499 -32385,7313:498,-138,39,0,0,0.181249 -32386,7313:497,-137,39,0,0,0.183333 -32387,7313:496,-136,39,0,0,0.185154 -32388,7313:495,-135,39,0,0,0.19034 -32389,7313:394,-134,39,0,0,0.199202 -32390,7313:393,-133,39,0,0,0.199973 -32391,7313:392,-132,39,0,0,0.200598 -32392,7313:391,-131,39,0,0,0.203631 -32393,7313:390,-130,39,0,0,0.207692 -32394,7305:394,-54,39,0,0,0.0876154 -32395,7305:393,-53,39,0,0,0.100307 -32396,7305:392,-52,39,0,0,0.106428 -32397,7305:391,-51,39,0,0,0.11036 -32398,7305:390,-50,39,0,0,0.134379 -32399,7304:499,-49,39,0,0,0.141152 -32400,7304:498,-48,39,0,0,0.148038 -32401,7304:497,-47,39,0,0,0.14558 -32402,7304:496,-46,39,0,0,0.139293 -32403,7304:495,-45,39,0,0,0.142565 -32404,7304:394,-44,39,0,0,0.147133 -32405,7304:393,-43,39,0,0,0.142314 -32406,7304:392,-42,39,0,0,0.139257 -32407,7304:391,-41,39,0,0,0.139874 -32408,7304:390,-40,39,0,0,0.143018 -32409,7303:499,-39,39,0,0,0.143383 -32410,7303:498,-38,39,0,0,0.142703 -32411,7303:497,-37,39,0,0,0.15222 -32412,7303:496,-36,39,0,0,0.158201 -32413,7303:495,-35,39,0,0,0.160402 -32414,7303:394,-34,39,0,0,0.164103 -32415,7303:393,-33,39,0,0,0.166855 -32416,7303:392,-32,39,0,0,0.180033 -32417,7303:391,-31,39,0,0,0.194862 -32418,7303:390,-30,39,0,0,0.210649 -32419,7302:499,-29,39,0,0,0.20182 -32420,7302:498,-28,39,0,0,0.209014 -32421,7302:497,-27,39,0,0,0.206629 -32422,7302:496,-26,39,0,0,0.202218 -32423,7302:495,-25,39,0,0,0.20073 -32424,7302:394,-24,39,0,0,0.202931 -32425,7302:393,-23,39,0,0,0.216639 -32426,7302:392,-22,39,0,0,0.231825 -32427,7302:391,-21,39,0,0,0.246498 -32428,7302:390,-20,39,0,0,0.247702 -32429,7301:499,-19,39,0,0,0.244689 -32430,7301:498,-18,39,0,0,0.241194 -32431,7301:497,-17,39,0,0,0.243552 -32432,7301:496,-16,39,0,0,0.252947 -32433,7301:495,-15,39,0,0,0.251107 -32434,7301:394,-14,39,0,0,0.247702 -32435,7301:393,-13,39,0,0,0.242211 -32436,7301:392,-12,39,0,0,0.234065 -32437,7300:497,-7,39,0,0,0.232045 -32438,1300:391,0,39,0,0,0.211574 -32439,1300:391,1,39,0,0,0.226346 -32440,1300:392,2,39,0,0,0.214208 -32441,1314:496,146,39,0,0,0.0884236 -32442,1314:497,147,39,0,0,0.10598 -32443,1314:498,148,39,0,0,0.108627 -32444,1314:499,149,39,0,0,0.109877 -32445,1315:390,150,39,0,0,0.114982 -32446,1315:391,151,39,0,0,0.118983 -32447,1315:392,152,39,0,0,0.121077 -32448,1315:393,153,39,0,0,0.122164 -32449,1315:394,154,39,0,0,0.12245 -32450,1315:495,155,39,0,0,0.122682 -32451,1315:496,156,39,0,0,0.12367 -32452,1315:497,157,39,0,0,0.119144 -32453,1316:391,161,39,0,0,0.112097 -32454,1316:392,162,39,0,0,0.112117 -32455,1316:393,163,39,0,0,0.117313 -32456,1316:394,164,39,0,0,0.124497 -32457,1316:495,165,39,0,0,0.123425 -32458,1316:496,166,39,0,0,0.122837 -32459,1316:497,167,39,0,0,0.127872 -32460,1316:498,168,39,0,0,0.128607 -32461,1316:499,169,39,0,0,0.131021 -32462,1317:390,170,39,0,0,0.128538 -32463,1317:391,171,39,0,0,0.127975 -32464,1317:392,172,39,0,0,0.128102 -32465,1317:393,173,39,0,0,0.125994 -32466,1317:394,174,39,0,0,0.128699 -32467,1317:495,175,39,0,0,0.130274 -32468,1317:496,176,39,0,0,0.131185 -32469,1317:497,177,39,0,0,0.131443 -32470,1317:498,178,39,0,0,0.131478 -32471,1317:499,179,39,0,0,0.13481 -32472,1318:390,180,39,0,0,0.135242 -32473,7418:100,-180,40,0,0,0.13183 -32474,7417:209,-179,40,0,0,0.13216 -32475,7417:208,-178,40,0,0,0.130834 -32476,7417:207,-177,40,0,0,0.130298 -32477,7417:206,-176,40,0,0,0.130472 -32478,7417:205,-175,40,0,0,0.130904 -32479,7417:104,-174,40,0,0,0.133557 -32480,7417:103,-173,40,0,0,0.138617 -32481,7417:102,-172,40,0,0,0.138115 -32482,7417:101,-171,40,0,0,0.140158 -32483,7417:100,-170,40,0,0,0.141863 -32484,7416:209,-169,40,0,0,0.144332 -32485,7416:208,-168,40,0,0,0.145798 -32486,7416:207,-167,40,0,0,0.145236 -32487,7416:206,-166,40,0,0,0.136569 -32488,7416:205,-165,40,0,0,0.140779 -32489,7416:104,-164,40,0,0,0.138704 -32490,7416:103,-163,40,0,0,0.14694 -32491,7416:102,-162,40,0,0,0.146876 -32492,7416:101,-161,40,0,0,0.145849 -32493,7416:100,-160,40,0,0,0.14399 -32494,7415:209,-159,40,0,0,0.143055 -32495,7415:208,-158,40,0,0,0.142051 -32496,7415:207,-157,40,0,0,0.142917 -32497,7415:206,-156,40,0,0,0.143775 -32498,7415:205,-155,40,0,0,0.143825 -32499,7415:104,-154,40,0,0,0.1459 -32500,7415:103,-153,40,0,0,0.144993 -32501,7415:102,-152,40,0,0,0.145236 -32502,7415:101,-151,40,0,0,0.149888 -32503,7415:100,-150,40,0,0,0.153217 -32504,7414:209,-149,40,0,0,0.154166 -32505,7414:208,-148,40,0,0,0.153871 -32506,7414:207,-147,40,0,0,0.153591 -32507,7414:206,-146,40,0,0,0.161206 -32508,7414:205,-145,40,0,0,0.163062 -32509,7414:104,-144,40,0,0,0.163441 -32510,7414:103,-143,40,0,0,0.167356 -32511,7414:102,-142,40,0,0,0.173117 -32512,7414:101,-141,40,0,0,0.175245 -32513,7414:100,-140,40,0,0,0.177334 -32514,7413:209,-139,40,0,0,0.17801 -32515,7413:208,-138,40,0,0,0.177634 -32516,7413:207,-137,40,0,0,0.179367 -32517,7413:206,-136,40,0,0,0.182657 -32518,7413:205,-135,40,0,0,0.192168 -32519,7413:104,-134,40,0,0,0.190356 -32520,7413:103,-133,40,0,0,0.193543 -32521,7413:102,-132,40,0,0,0.197666 -32522,7413:101,-131,40,0,0,0.199382 -32523,7413:100,-130,40,0,0,0.204498 -32524,7412:209,-129,40,0,0,0.194443 -32525,7407:209,-79,40,0,0,0.0898333 -32526,7407:208,-78,40,0,0,0.089699 -32527,7405:205,-55,40,0,0,0.0845682 -32528,7405:104,-54,40,0,0,0.0862941 -32529,7405:103,-53,40,0,0,0.0922133 -32530,7405:102,-52,40,0,0,0.0977042 -32531,7405:101,-51,40,0,0,0.121537 -32532,7405:100,-50,40,0,0,0.136751 -32533,7404:209,-49,40,0,0,0.136025 -32534,7404:208,-48,40,0,0,0.135723 -32535,7404:207,-47,40,0,0,0.136691 -32536,7404:206,-46,40,0,0,0.13576 -32537,7404:205,-45,40,0,0,0.133962 -32538,7404:104,-44,40,0,0,0.135182 -32539,7404:103,-43,40,0,0,0.134798 -32540,7404:102,-42,40,0,0,0.137749 -32541,7404:101,-41,40,0,0,0.137481 -32542,7404:100,-40,40,0,0,0.138888 -32543,7403:209,-39,40,0,0,0.141338 -32544,7403:208,-38,40,0,0,0.148389 -32545,7403:207,-37,40,0,0,0.151505 -32546,7403:206,-36,40,0,0,0.153217 -32547,7403:205,-35,40,0,0,0.157408 -32548,7403:104,-34,40,0,0,0.157599 -32549,7403:103,-33,40,0,0,0.160209 -32550,7403:102,-32,40,0,0,0.173942 -32551,7403:101,-31,40,0,0,0.181692 -32552,7403:100,-30,40,0,0,0.177394 -32553,7402:209,-29,40,0,0,0.175394 -32554,7402:208,-28,40,0,0,0.181082 -32555,7402:207,-27,40,0,0,0.201622 -32556,7402:206,-26,40,0,0,0.202152 -32557,7402:205,-25,40,0,0,0.211968 -32558,7402:104,-24,40,0,0,0.214831 -32559,7402:103,-23,40,0,0,0.207946 -32560,7402:102,-22,40,0,0,0.208675 -32561,7402:101,-21,40,0,0,0.227138 -32562,7402:100,-20,40,0,0,0.243552 -32563,7401:209,-19,40,0,0,0.248661 -32564,7401:208,-18,40,0,0,0.250412 -32565,7401:207,-17,40,0,0,0.250836 -32566,7401:206,-16,40,0,0,0.251899 -32567,7401:205,-15,40,0,0,0.24776 -32568,7401:104,-14,40,0,0,0.24665 -32569,7401:103,-13,40,0,0,0.247702 -32570,7401:102,-12,40,0,0,0.24157 -32571,7401:101,-11,40,0,0,0.228821 -32572,7400:207,-7,40,0,0,0.230147 -32573,7400:206,-6,40,0,0,0.201903 -32574,7400:102,-2,40,0,0,0.20881 -32575,7400:101,-1,40,0,0,0.207861 -32576,1400:101,0,40,0,0,0.205251 -32577,1400:101,1,40,0,0,0.208048 -32578,1400:102,2,40,0,0,0.217722 -32579,1400:103,3,40,0,0,0.19953 -32580,1414:104,144,40,0,0,0.0792464 -32581,1414:205,145,40,0,0,0.0773852 -32582,1414:206,146,40,0,0,0.0884982 -32583,1414:207,147,40,0,0,0.109135 -32584,1414:208,148,40,0,0,0.111699 -32585,1414:209,149,40,0,0,0.113702 -32586,1415:100,150,40,0,0,0.116877 -32587,1415:101,151,40,0,0,0.119058 -32588,1415:102,152,40,0,0,0.119414 -32589,1415:103,153,40,0,0,0.118402 -32590,1415:104,154,40,0,0,0.118832 -32591,1415:205,155,40,0,0,0.120695 -32592,1415:206,156,40,0,0,0.121669 -32593,1415:207,157,40,0,0,0.10563 -32594,1416:104,164,40,0,0,0.111984 -32595,1416:205,165,40,0,0,0.121822 -32596,1416:206,166,40,0,0,0.122771 -32597,1416:208,168,40,0,0,0.124016 -32598,1416:209,169,40,0,0,0.127198 -32599,1417:100,170,40,0,0,0.128262 -32600,1417:101,171,40,0,0,0.12605 -32601,1417:102,172,40,0,0,0.127723 -32602,1417:103,173,40,0,0,0.127312 -32603,1417:104,174,40,0,0,0.127884 -32604,1417:205,175,40,0,0,0.127712 -32605,1417:206,176,40,0,0,0.12809 -32606,1417:207,177,40,0,0,0.128757 -32607,1417:208,178,40,0,0,0.12817 -32608,1417:209,179,40,0,0,0.127998 -32609,1418:100,180,40,0,0,0.13183 -32610,7418:110,-180,41,0,0,0.125406 -32611,7417:219,-179,41,0,0,0.126992 -32612,7417:218,-178,41,0,0,0.128354 -32613,7417:217,-177,41,0,0,0.129068 -32614,7417:216,-176,41,0,0,0.129404 -32615,7417:215,-175,41,0,0,0.129949 -32616,7417:114,-174,41,0,0,0.134439 -32617,7417:113,-173,41,0,0,0.139146 -32618,7417:112,-172,41,0,0,0.143081 -32619,7417:111,-171,41,0,0,0.144472 -32620,7417:110,-170,41,0,0,0.145236 -32621,7416:219,-169,41,0,0,0.142289 -32622,7416:218,-168,41,0,0,0.13847 -32623,7416:217,-167,41,0,0,0.144332 -32624,7416:216,-166,41,0,0,0.140965 -32625,7416:215,-165,41,0,0,0.131936 -32626,7416:113,-163,41,0,0,0.130846 -32627,7416:112,-162,41,0,0,0.1364 -32628,7416:111,-161,41,0,0,0.132573 -32629,7416:110,-160,41,0,0,0.147469 -32630,7415:219,-159,41,0,0,0.150124 -32631,7415:218,-158,41,0,0,0.146953 -32632,7415:217,-157,41,0,0,0.143598 -32633,7415:216,-156,41,0,0,0.141551 -32634,7415:215,-155,41,0,0,0.141688 -32635,7415:114,-154,41,0,0,0.142904 -32636,7415:113,-153,41,0,0,0.141963 -32637,7415:112,-152,41,0,0,0.142164 -32638,7415:111,-151,41,0,0,0.142728 -32639,7415:110,-150,41,0,0,0.145478 -32640,7414:219,-149,41,0,0,0.146863 -32641,7414:218,-148,41,0,0,0.148922 -32642,7414:217,-147,41,0,0,0.15327 -32643,7414:216,-146,41,0,0,0.155092 -32644,7414:215,-145,41,0,0,0.158365 -32645,7414:114,-144,41,0,0,0.159257 -32646,7414:113,-143,41,0,0,0.160748 -32647,7414:112,-142,41,0,0,0.170413 -32648,7414:111,-141,41,0,0,0.174637 -32649,7414:110,-140,41,0,0,0.179185 -32650,7413:219,-139,41,0,0,0.180884 -32651,7413:218,-138,41,0,0,0.182917 -32652,7413:217,-137,41,0,0,0.182856 -32653,7413:216,-136,41,0,0,0.185713 -32654,7413:215,-135,41,0,0,0.192391 -32655,7413:114,-134,41,0,0,0.194057 -32656,7413:113,-133,41,0,0,0.196868 -32657,7413:112,-132,41,0,0,0.198514 -32658,7413:111,-131,41,0,0,0.200928 -32659,7413:110,-130,41,0,0,0.199038 -32660,7408:110,-80,41,0,0,0.0875087 -32661,7407:219,-79,41,0,0,0.0877551 -32662,7407:218,-78,41,0,0,0.0903556 -32663,7405:215,-55,41,0,0,0.0824918 -32664,7405:114,-54,41,0,0,0.0900941 -32665,7405:113,-53,41,0,0,0.0920416 -32666,7405:112,-52,41,0,0,0.107498 -32667,7405:111,-51,41,0,0,0.130893 -32668,7405:110,-50,41,0,0,0.137164 -32669,7404:219,-49,41,0,0,0.136327 -32670,7404:218,-48,41,0,0,0.135543 -32671,7404:217,-47,41,0,0,0.134798 -32672,7404:216,-46,41,0,0,0.131443 -32673,7404:215,-45,41,0,0,0.131255 -32674,7404:114,-44,41,0,0,0.132845 -32675,7404:113,-43,41,0,0,0.132384 -32676,7404:112,-42,41,0,0,0.13294 -32677,7404:111,-41,41,0,0,0.134966 -32678,7404:110,-40,41,0,0,0.134081 -32679,7403:219,-39,41,0,0,0.1364 -32680,7403:218,-38,41,0,0,0.140233 -32681,7403:217,-37,41,0,0,0.143699 -32682,7403:216,-36,41,0,0,0.152313 -32683,7403:215,-35,41,0,0,0.152273 -32684,7403:114,-34,41,0,0,0.150714 -32685,7403:113,-33,41,0,0,0.150833 -32686,7403:112,-32,41,0,0,0.154743 -32687,7403:111,-31,41,0,0,0.172031 -32688,7403:110,-30,41,0,0,0.174119 -32689,7402:219,-29,41,0,0,0.172735 -32690,7402:218,-28,41,0,0,0.190245 -32691,7402:217,-27,41,0,0,0.191801 -32692,7402:216,-26,41,0,0,0.19695 -32693,7402:215,-25,41,0,0,0.215768 -32694,7402:114,-24,41,0,0,0.21923 -32695,7402:113,-23,41,0,0,0.216499 -32696,7402:112,-22,41,0,0,0.216796 -32697,7402:111,-21,41,0,0,0.243647 -32698,7402:110,-20,41,0,0,0.239543 -32699,7401:219,-19,41,0,0,0.238235 -32700,7401:218,-18,41,0,0,0.234471 -32701,7401:217,-17,41,0,0,0.231405 -32702,7401:216,-16,41,0,0,0.238963 -32703,7401:215,-15,41,0,0,0.234673 -32704,7401:114,-14,41,0,0,0.248623 -32705,7401:113,-13,41,0,0,0.247281 -32706,7401:112,-12,41,0,0,0.244139 -32707,7401:111,-11,41,0,0,0.234766 -32708,7401:110,-10,41,0,0,0.225681 -32709,7400:219,-9,41,0,0,0.220128 -32710,7400:218,-8,41,0,0,0.228024 -32711,7400:217,-7,41,0,0,0.215525 -32712,7400:113,-3,41,0,0,0.216116 -32713,7400:112,-2,41,0,0,0.217599 -32714,7400:111,-1,41,0,0,0.198433 -32715,1400:111,0,41,0,0,0.19142 -32716,1400:111,1,41,0,0,0.204198 -32717,1400:112,2,41,0,0,0.215143 -32718,1400:113,3,41,0,0,0.217809 -32719,1400:114,4,41,0,0,0.215873 -32720,1400:215,5,41,0,0,0.207354 -32721,1400:216,6,41,0,0,0.176302 -32722,1414:110,140,41,0,0,0.0791266 -32723,1414:111,141,41,0,0,0.077451 -32724,1414:112,142,41,0,0,0.0787084 -32725,1414:113,143,41,0,0,0.0829908 -32726,1414:114,144,41,0,0,0.0857045 -32727,1414:215,145,41,0,0,0.0862049 -32728,1414:216,146,41,0,0,0.0867814 -32729,1414:217,147,41,0,0,0.107794 -32730,1414:218,148,41,0,0,0.11177 -32731,1414:219,149,41,0,0,0.111709 -32732,1415:110,150,41,0,0,0.113899 -32733,1415:111,151,41,0,0,0.11264 -32734,1415:112,152,41,0,0,0.109166 -32735,1415:113,153,41,0,0,0.109526 -32736,1415:114,154,41,0,0,0.111018 -32737,1415:215,155,41,0,0,0.116338 -32738,1415:216,156,41,0,0,0.119717 -32739,1415:217,157,41,0,0,0.103628 -32740,1416:114,164,41,0,0,0.107607 -32741,1416:215,165,41,0,0,0.112445 -32742,1416:216,166,41,0,0,0.115758 -32743,1416:217,167,41,0,0,0.1176 -32744,1416:218,168,41,0,0,0.119382 -32745,1416:219,169,41,0,0,0.124206 -32746,1417:110,170,41,0,0,0.126197 -32747,1417:111,171,41,0,0,0.118509 -32748,1417:112,172,41,0,0,0.124317 -32749,1417:113,173,41,0,0,0.125666 -32750,1417:114,174,41,0,0,0.125711 -32751,1417:215,175,41,0,0,0.126469 -32752,1417:216,176,41,0,0,0.123781 -32753,1417:217,177,41,0,0,0.123392 -32754,1417:218,178,41,0,0,0.123037 -32755,1417:219,179,41,0,0,0.123004 -32756,1418:110,180,41,0,0,0.125406 -32757,7418:120,-180,42,0,0,0.126367 -32758,7417:229,-179,42,0,0,0.126039 -32759,7417:228,-178,42,0,0,0.127895 -32760,7417:227,-177,42,0,0,0.129358 -32761,7417:226,-176,42,0,0,0.130566 -32762,7417:225,-175,42,0,0,0.135026 -32763,7417:124,-174,42,0,0,0.132077 -32764,7417:123,-173,42,0,0,0.131443 -32765,7417:122,-172,42,0,0,0.13017 -32766,7417:121,-171,42,0,0,0.127004 -32767,7417:120,-170,42,0,0,0.12893 -32768,7416:229,-169,42,0,0,0.131995 -32769,7416:228,-168,42,0,0,0.136994 -32770,7416:227,-167,42,0,0,0.141501 -32771,7416:226,-166,42,0,0,0.140629 -32772,7416:225,-165,42,0,0,0.134894 -32773,7416:124,-164,42,0,0,0.124094 -32774,7416:121,-161,42,0,0,0.142691 -32775,7416:120,-160,42,0,0,0.147534 -32776,7415:229,-159,42,0,0,0.148298 -32777,7415:228,-158,42,0,0,0.151717 -32778,7415:227,-157,42,0,0,0.150084 -32779,7415:226,-156,42,0,0,0.148233 -32780,7415:225,-155,42,0,0,0.144332 -32781,7415:124,-154,42,0,0,0.142339 -32782,7415:123,-153,42,0,0,0.141002 -32783,7415:122,-152,42,0,0,0.141538 -32784,7415:121,-151,42,0,0,0.143232 -32785,7415:120,-150,42,0,0,0.148272 -32786,7414:229,-149,42,0,0,0.150649 -32787,7414:228,-148,42,0,0,0.152021 -32788,7414:227,-147,42,0,0,0.154394 -32789,7414:226,-146,42,0,0,0.155821 -32790,7414:225,-145,42,0,0,0.163624 -32791,7414:124,-144,42,0,0,0.165645 -32792,7414:123,-143,42,0,0,0.164188 -32793,7414:122,-142,42,0,0,0.163035 -32794,7414:121,-141,42,0,0,0.169847 -32795,7414:120,-140,42,0,0,0.173957 -32796,7413:229,-139,42,0,0,0.173942 -32797,7413:228,-138,42,0,0,0.182687 -32798,7413:227,-137,42,0,0,0.186133 -32799,7413:226,-136,42,0,0,0.186304 -32800,7413:225,-135,42,0,0,0.191961 -32801,7413:123,-133,42,0,0,0.186351 -32802,7413:122,-132,42,0,0,0.197601 -32803,7413:121,-131,42,0,0,0.195088 -32804,7407:229,-79,42,0,0,0.088548 -32805,7407:228,-78,42,0,0,0.0882746 -32806,7405:228,-58,42,0,0,0.0771947 -32807,7405:227,-57,42,0,0,0.0806066 -32808,7405:226,-56,42,0,0,0.0841079 -32809,7405:225,-55,42,0,0,0.0859464 -32810,7405:124,-54,42,0,0,0.122837 -32811,7405:123,-53,42,0,0,0.139343 -32812,7405:122,-52,42,0,0,0.134858 -32813,7405:121,-51,42,0,0,0.133985 -32814,7405:120,-50,42,0,0,0.130356 -32815,7404:229,-49,42,0,0,0.133962 -32816,7404:228,-48,42,0,0,0.134188 -32817,7404:227,-47,42,0,0,0.132113 -32818,7404:226,-46,42,0,0,0.13003 -32819,7404:225,-45,42,0,0,0.129531 -32820,7404:124,-44,42,0,0,0.129138 -32821,7404:123,-43,42,0,0,0.129682 -32822,7404:122,-42,42,0,0,0.131091 -32823,7404:121,-41,42,0,0,0.131419 -32824,7404:120,-40,42,0,0,0.131689 -32825,7403:229,-39,42,0,0,0.133023 -32826,7403:228,-38,42,0,0,0.138888 -32827,7403:227,-37,42,0,0,0.139923 -32828,7403:226,-36,42,0,0,0.142967 -32829,7403:225,-35,42,0,0,0.145836 -32830,7403:124,-34,42,0,0,0.151149 -32831,7403:123,-33,42,0,0,0.15343 -32832,7403:122,-32,42,0,0,0.156606 -32833,7403:121,-31,42,0,0,0.157777 -32834,7403:120,-30,42,0,0,0.161054 -32835,7402:229,-29,42,0,0,0.164837 -32836,7402:228,-28,42,0,0,0.166242 -32837,7402:227,-27,42,0,0,0.170413 -32838,7402:226,-26,42,0,0,0.174193 -32839,7402:225,-25,42,0,0,0.180109 -32840,7402:124,-24,42,0,0,0.192088 -32841,7402:123,-23,42,0,0,0.197845 -32842,7402:122,-22,42,0,0,0.220041 -32843,7402:121,-21,42,0,0,0.240386 -32844,7402:120,-20,42,0,0,0.239356 -32845,7401:229,-19,42,0,0,0.231752 -32846,7401:228,-18,42,0,0,0.233329 -32847,7401:227,-17,42,0,0,0.222644 -32848,7401:226,-16,42,0,0,0.219406 -32849,7401:225,-15,42,0,0,0.231441 -32850,7401:124,-14,42,0,0,0.236932 -32851,7401:123,-13,42,0,0,0.244386 -32852,7401:122,-12,42,0,0,0.244633 -32853,7401:121,-11,42,0,0,0.237007 -32854,7401:120,-10,42,0,0,0.229746 -32855,7400:229,-9,42,0,0,0.213034 -32856,7400:228,-8,42,0,0,0.198923 -32857,7400:225,-5,42,0,0,0.20636 -32858,7400:124,-4,42,0,0,0.212157 -32859,7400:123,-3,42,0,0,0.212775 -32860,7400:122,-2,42,0,0,0.212312 -32861,7400:121,-1,42,0,0,0.212054 -32862,1400:121,0,42,0,0,0.204498 -32863,1400:121,1,42,0,0,0.198449 -32864,1400:122,2,42,0,0,0.205402 -32865,1400:123,3,42,0,0,0.21556 -32866,1400:124,4,42,0,0,0.209609 -32867,1400:225,5,42,0,0,0.181173 -32868,1400:227,7,42,0,0,0.16147 -32869,1400:228,8,42,0,0,0.162559 -32870,1400:229,9,42,0,0,0.168692 -32871,1401:121,11,42,0,0,0.157504 -32872,1413:229,139,42,0,0,0.0779224 -32873,1414:120,140,42,0,0,0.0787755 -32874,1414:122,142,42,0,0,0.0942107 -32875,1414:123,143,42,0,0,0.0880847 -32876,1414:124,144,42,0,0,0.0833277 -32877,1414:225,145,42,0,0,0.0848548 -32878,1414:226,146,42,0,0,0.091093 -32879,1414:227,147,42,0,0,0.0992458 -32880,1414:228,148,42,0,0,0.0993652 -32881,1414:229,149,42,0,0,0.101885 -32882,1415:120,150,42,0,0,0.105455 -32883,1415:121,151,42,0,0,0.105039 -32884,1415:122,152,42,0,0,0.103628 -32885,1415:123,153,42,0,0,0.105999 -32886,1415:124,154,42,0,0,0.108498 -32887,1415:225,155,42,0,0,0.112774 -32888,1415:226,156,42,0,0,0.116856 -32889,1415:227,157,42,0,0,0.0982854 -32890,1416:225,165,42,0,0,0.111018 -32891,1416:226,166,42,0,0,0.114804 -32892,1416:227,167,42,0,0,0.119706 -32893,1416:228,168,42,0,0,0.120738 -32894,1416:229,169,42,0,0,0.124698 -32895,1417:120,170,42,0,0,0.125982 -32896,1417:121,171,42,0,0,0.119144 -32897,1417:122,172,42,0,0,0.117739 -32898,1417:123,173,42,0,0,0.120968 -32899,1417:124,174,42,0,0,0.123425 -32900,1417:225,175,42,0,0,0.123547 -32901,1417:226,176,42,0,0,0.121955 -32902,1417:227,177,42,0,0,0.121515 -32903,1417:228,178,42,0,0,0.121537 -32904,1417:229,179,42,0,0,0.123537 -32905,1418:120,180,42,0,0,0.126367 -32906,7418:130,-180,43,0,0,0.126288 -32907,7417:239,-179,43,0,0,0.125508 -32908,7417:238,-178,43,0,0,0.124161 -32909,7417:237,-177,43,0,0,0.128584 -32910,7417:236,-176,43,0,0,0.131045 -32911,7417:235,-175,43,0,0,0.129011 -32912,7417:134,-174,43,0,0,0.123893 -32913,7417:133,-173,43,0,0,0.123781 -32914,7417:132,-172,43,0,0,0.118886 -32915,7417:131,-171,43,0,0,0.117568 -32916,7417:130,-170,43,0,0,0.123114 -32917,7416:239,-169,43,0,0,0.124911 -32918,7416:238,-168,43,0,0,0.126277 -32919,7416:237,-167,43,0,0,0.125575 -32920,7416:236,-166,43,0,0,0.124631 -32921,7416:235,-165,43,0,0,0.122406 -32922,7416:134,-164,43,0,0,0.122506 -32923,7416:133,-163,43,0,0,0.123481 -32924,7416:132,-162,43,0,0,0.1104 -32925,7416:130,-160,43,0,0,0.139171 -32926,7415:239,-159,43,0,0,0.148311 -32927,7415:238,-158,43,0,0,0.146041 -32928,7415:237,-157,43,0,0,0.145504 -32929,7415:236,-156,43,0,0,0.154434 -32930,7415:235,-155,43,0,0,0.148012 -32931,7415:134,-154,43,0,0,0.143219 -32932,7415:133,-153,43,0,0,0.141763 -32933,7415:132,-152,43,0,0,0.143409 -32934,7415:131,-151,43,0,0,0.144345 -32935,7415:130,-150,43,0,0,0.149299 -32936,7414:239,-149,43,0,0,0.150032 -32937,7414:238,-148,43,0,0,0.152871 -32938,7414:237,-147,43,0,0,0.157218 -32939,7414:236,-146,43,0,0,0.160236 -32940,7414:235,-145,43,0,0,0.163441 -32941,7414:134,-144,43,0,0,0.163441 -32942,7414:133,-143,43,0,0,0.165318 -32943,7414:132,-142,43,0,0,0.166713 -32944,7414:131,-141,43,0,0,0.167356 -32945,7414:130,-140,43,0,0,0.168836 -32946,7413:239,-139,43,0,0,0.171783 -32947,7413:238,-138,43,0,0,0.177019 -32948,7413:237,-137,43,0,0,0.18026 -32949,7413:236,-136,43,0,0,0.190657 -32950,7413:133,-133,43,0,0,0.175691 -32951,7408:130,-80,43,0,0,0.0830691 -32952,7407:239,-79,43,0,0,0.0910247 -32953,7407:238,-78,43,0,0,0.088606 -32954,7405:238,-58,43,0,0,0.0789844 -32955,7405:237,-57,43,0,0,0.0836028 -32956,7405:236,-56,43,0,0,0.0907786 -32957,7405:235,-55,43,0,0,0.118767 -32958,7405:134,-54,43,0,0,0.13938 -32959,7405:133,-53,43,0,0,0.131901 -32960,7405:132,-52,43,0,0,0.129323 -32961,7405:131,-51,43,0,0,0.128412 -32962,7405:130,-50,43,0,0,0.129381 -32963,7404:239,-49,43,0,0,0.129624 -32964,7404:238,-48,43,0,0,0.129531 -32965,7404:237,-47,43,0,0,0.130077 -32966,7404:236,-46,43,0,0,0.128942 -32967,7404:235,-45,43,0,0,0.128746 -32968,7404:134,-44,43,0,0,0.128964 -32969,7404:133,-43,43,0,0,0.13024 -32970,7404:132,-42,43,0,0,0.132125 -32971,7404:131,-41,43,0,0,0.132384 -32972,7404:130,-40,43,0,0,0.129798 -32973,7403:239,-39,43,0,0,0.130822 -32974,7403:238,-38,43,0,0,0.133818 -32975,7403:237,-37,43,0,0,0.135977 -32976,7403:236,-36,43,0,0,0.136424 -32977,7403:235,-35,43,0,0,0.138924 -32978,7403:134,-34,43,0,0,0.150596 -32979,7403:133,-33,43,0,0,0.163133 -32980,7403:132,-32,43,0,0,0.179215 -32981,7403:131,-31,43,0,0,0.179004 -32982,7403:130,-30,43,0,0,0.169804 -32983,7402:239,-29,43,0,0,0.16727 -32984,7402:238,-28,43,0,0,0.16546 -32985,7402:237,-27,43,0,0,0.168116 -32986,7402:236,-26,43,0,0,0.176123 -32987,7402:235,-25,43,0,0,0.179972 -32988,7402:134,-24,43,0,0,0.185993 -32989,7402:133,-23,43,0,0,0.194282 -32990,7402:132,-22,43,0,0,0.195831 -32991,7402:131,-21,43,0,0,0.236246 -32992,7402:130,-20,43,0,0,0.234729 -32993,7401:239,-19,43,0,0,0.231698 -32994,7401:238,-18,43,0,0,0.230949 -32995,7401:237,-17,43,0,0,0.225861 -32996,7401:236,-16,43,0,0,0.216691 -32997,7401:235,-15,43,0,0,0.218335 -32998,7401:134,-14,43,0,0,0.237806 -32999,7401:133,-13,43,0,0,0.238384 -33000,7401:132,-12,43,0,0,0.239187 -33001,7401:131,-11,43,0,0,0.23135 -33002,7401:130,-10,43,0,0,0.217302 -33003,7400:239,-9,43,0,0,0.217162 -33004,7400:134,-4,43,0,0,0.211077 -33005,7400:133,-3,43,0,0,0.211008 -33006,7400:132,-2,43,0,0,0.212724 -33007,7400:131,-1,43,0,0,0.210257 -33008,1400:131,0,43,0,0,0.207624 -33009,1400:131,1,43,0,0,0.205771 -33010,1400:132,2,43,0,0,0.205251 -33011,1400:133,3,43,0,0,0.213327 -33012,1400:134,4,43,0,0,0.200598 -33013,1400:239,9,43,0,0,0.166499 -33014,1401:130,10,43,0,0,0.187397 -33015,1401:131,11,43,0,0,0.181967 -33016,1401:132,12,43,0,0,0.198416 -33017,1401:133,13,43,0,0,0.174178 -33018,1414:131,141,43,0,0,0.0888552 -33019,1414:132,142,43,0,0,0.0926444 -33020,1414:133,143,43,0,0,0.0894308 -33021,1414:134,144,43,0,0,0.084576 -33022,1414:235,145,43,0,0,0.0848468 -33023,1414:236,146,43,0,0,0.0882829 -33024,1414:237,147,43,0,0,0.0928864 -33025,1414:238,148,43,0,0,0.0954452 -33026,1414:239,149,43,0,0,0.0972973 -33027,1415:130,150,43,0,0,0.0971171 -33028,1415:131,151,43,0,0,0.098934 -33029,1415:132,152,43,0,0,0.101791 -33030,1415:133,153,43,0,0,0.104039 -33031,1415:134,154,43,0,0,0.104125 -33032,1415:235,155,43,0,0,0.105805 -33033,1415:236,156,43,0,0,0.108896 -33034,1415:237,157,43,0,0,0.107203 -33035,1415:238,158,43,0,0,0.0952857 -33036,1416:235,165,43,0,0,0.107282 -33037,1416:236,166,43,0,0,0.111058 -33038,1416:237,167,43,0,0,0.111322 -33039,1416:238,168,43,0,0,0.116549 -33040,1416:239,169,43,0,0,0.118145 -33041,1417:130,170,43,0,0,0.118188 -33042,1417:131,171,43,0,0,0.117952 -33043,1417:132,172,43,0,0,0.11989 -33044,1417:133,173,43,0,0,0.119825 -33045,1417:134,174,43,0,0,0.119977 -33046,1417:235,175,43,0,0,0.12063 -33047,1417:236,176,43,0,0,0.121822 -33048,1417:237,177,43,0,0,0.123937 -33049,1417:238,178,43,0,0,0.124945 -33050,1417:239,179,43,0,0,0.125733 -33051,1418:130,180,43,0,0,0.126288 -33052,7418:140,-180,44,0,0,0.124485 -33053,7417:249,-179,44,0,0,0.125159 -33054,7417:248,-178,44,0,0,0.123259 -33055,7417:247,-177,44,0,0,0.122142 -33056,7417:246,-176,44,0,0,0.12307 -33057,7417:245,-175,44,0,0,0.119479 -33058,7417:144,-174,44,0,0,0.118209 -33059,7417:143,-173,44,0,0,0.115663 -33060,7417:142,-172,44,0,0,0.110957 -33061,7417:141,-171,44,0,0,0.113485 -33062,7417:140,-170,44,0,0,0.113495 -33063,7416:249,-169,44,0,0,0.11224 -33064,7416:248,-168,44,0,0,0.112722 -33065,7416:247,-167,44,0,0,0.11224 -33066,7416:246,-166,44,0,0,0.112743 -33067,7416:245,-165,44,0,0,0.11822 -33068,7416:144,-164,44,0,0,0.122738 -33069,7416:143,-163,44,0,0,0.124507 -33070,7416:142,-162,44,0,0,0.120412 -33071,7416:141,-161,44,0,0,0.100418 -33072,7415:248,-158,44,0,0,0.149979 -33073,7415:246,-156,44,0,0,0.142452 -33074,7415:245,-155,44,0,0,0.153591 -33075,7415:144,-154,44,0,0,0.155187 -33076,7415:143,-153,44,0,0,0.146297 -33077,7415:142,-152,44,0,0,0.147211 -33078,7415:141,-151,44,0,0,0.148492 -33079,7415:140,-150,44,0,0,0.149039 -33080,7414:249,-149,44,0,0,0.149849 -33081,7414:248,-148,44,0,0,0.149888 -33082,7414:247,-147,44,0,0,0.151849 -33083,7414:246,-146,44,0,0,0.157422 -33084,7414:245,-145,44,0,0,0.155861 -33085,7414:144,-144,44,0,0,0.155524 -33086,7414:143,-143,44,0,0,0.158941 -33087,7414:142,-142,44,0,0,0.162559 -33088,7414:141,-141,44,0,0,0.165163 -33089,7414:140,-140,44,0,0,0.170704 -33090,7413:249,-139,44,0,0,0.175305 -33091,7413:248,-138,44,0,0,0.175037 -33092,7413:247,-137,44,0,0,0.184319 -33093,7413:246,-136,44,0,0,0.18646 -33094,7413:245,-135,44,0,0,0.178883 -33095,7413:144,-134,44,0,0,0.175334 -33096,7413:143,-133,44,0,0,0.168937 -33097,7408:140,-80,44,0,0,0.0827333 -33098,7407:249,-79,44,0,0,0.0891717 -33099,7407:248,-78,44,0,0,0.0889469 -33100,7405:249,-59,44,0,0,0.0768076 -33101,7405:248,-58,44,0,0,0.0803935 -33102,7405:247,-57,44,0,0,0.0808581 -33103,7405:246,-56,44,0,0,0.108359 -33104,7405:245,-55,44,0,0,0.140791 -33105,7405:144,-54,44,0,0,0.137724 -33106,7405:143,-53,44,0,0,0.131326 -33107,7405:142,-52,44,0,0,0.127632 -33108,7405:141,-51,44,0,0,0.126095 -33109,7405:140,-50,44,0,0,0.126583 -33110,7404:249,-49,44,0,0,0.126243 -33111,7404:248,-48,44,0,0,0.127552 -33112,7404:247,-47,44,0,0,0.129694 -33113,7404:246,-46,44,0,0,0.131948 -33114,7404:245,-45,44,0,0,0.136848 -33115,7404:144,-44,44,0,0,0.144713 -33116,7404:143,-43,44,0,0,0.149469 -33117,7404:142,-42,44,0,0,0.14756 -33118,7404:141,-41,44,0,0,0.141214 -33119,7404:140,-40,44,0,0,0.137067 -33120,7403:249,-39,44,0,0,0.133129 -33121,7403:248,-38,44,0,0,0.131783 -33122,7403:247,-37,44,0,0,0.133866 -33123,7403:246,-36,44,0,0,0.137322 -33124,7403:245,-35,44,0,0,0.140195 -33125,7403:144,-34,44,0,0,0.145619 -33126,7403:143,-33,44,0,0,0.15136 -33127,7403:142,-32,44,0,0,0.176795 -33128,7403:141,-31,44,0,0,0.185248 -33129,7403:140,-30,44,0,0,0.184149 -33130,7402:249,-29,44,0,0,0.177139 -33131,7402:248,-28,44,0,0,0.17532 -33132,7402:247,-27,44,0,0,0.169225 -33133,7402:246,-26,44,0,0,0.167858 -33134,7402:245,-25,44,0,0,0.171812 -33135,7402:144,-24,44,0,0,0.17409 -33136,7402:143,-23,44,0,0,0.182994 -33137,7402:142,-22,44,0,0,0.184736 -33138,7402:141,-21,44,0,0,0.214018 -33139,7402:140,-20,44,0,0,0.232045 -33140,7401:249,-19,44,0,0,0.233605 -33141,7401:248,-18,44,0,0,0.228349 -33142,7401:247,-17,44,0,0,0.225214 -33143,7401:246,-16,44,0,0,0.220305 -33144,7401:245,-15,44,0,0,0.225071 -33145,7401:144,-14,44,0,0,0.232577 -33146,7401:143,-13,44,0,0,0.234526 -33147,7401:142,-12,44,0,0,0.23366 -33148,7401:141,-11,44,0,0,0.230311 -33149,7401:140,-10,44,0,0,0.219512 -33150,7400:248,-8,44,0,0,0.213465 -33151,7400:246,-6,44,0,0,0.207236 -33152,7400:245,-5,44,0,0,0.21118 -33153,7400:144,-4,44,0,0,0.210206 -33154,7400:143,-3,44,0,0,0.208759 -33155,7400:142,-2,44,0,0,0.204498 -33156,7400:141,-1,44,0,0,0.204615 -33157,1400:141,0,44,0,0,0.200796 -33158,1400:141,1,44,0,0,0.201225 -33159,1400:142,2,44,0,0,0.205486 -33160,1400:143,3,44,0,0,0.205436 -33161,1400:144,4,44,0,0,0.194926 -33162,1400:247,7,44,0,0,0.165404 -33163,1400:248,8,44,0,0,0.156701 -33164,1401:141,11,44,0,0,0.193608 -33165,1401:142,12,44,0,0,0.19778 -33166,1401:143,13,44,0,0,0.188825 -33167,1401:144,14,44,0,0,0.188762 -33168,1401:245,15,44,0,0,0.194797 -33169,1414:143,143,44,0,0,0.09169 -33170,1414:144,144,44,0,0,0.0911779 -33171,1414:245,145,44,0,0,0.0860191 -33172,1414:246,146,44,0,0,0.0868873 -33173,1414:247,147,44,0,0,0.0888968 -33174,1414:248,148,44,0,0,0.0928431 -33175,1414:249,149,44,0,0,0.094158 -33176,1415:140,150,44,0,0,0.09533 -33177,1415:141,151,44,0,0,0.0960324 -33178,1415:142,152,44,0,0,0.0974147 -33179,1415:143,153,44,0,0,0.100409 -33180,1415:144,154,44,0,0,0.101051 -33181,1415:245,155,44,0,0,0.100679 -33182,1415:246,156,44,0,0,0.0989155 -33183,1415:247,157,44,0,0,0.0963718 -33184,1415:248,158,44,0,0,0.0947908 -33185,1415:249,159,44,0,0,0.0926096 -33186,1416:140,160,44,0,0,0.090516 -33187,1416:141,161,44,0,0,0.0869851 -33188,1416:245,165,44,0,0,0.0813097 -33189,1416:246,166,44,0,0,0.103742 -33190,1416:247,167,44,0,0,0.108359 -33191,1416:248,168,44,0,0,0.107646 -33192,1416:249,169,44,0,0,0.112671 -33193,1417:140,170,44,0,0,0.115055 -33194,1417:141,171,44,0,0,0.110734 -33195,1417:142,172,44,0,0,0.111505 -33196,1417:143,173,44,0,0,0.117153 -33197,1417:144,174,44,0,0,0.117068 -33198,1417:245,175,44,0,0,0.117675 -33199,1417:246,176,44,0,0,0.114211 -33200,1417:247,177,44,0,0,0.119522 -33201,1417:248,178,44,0,0,0.119782 -33202,1417:249,179,44,0,0,0.119306 -33203,1418:140,180,44,0,0,0.124485 -33204,7418:350,-180,45,0,0,0.121044 -33205,7417:459,-179,45,0,0,0.116686 -33206,7417:458,-178,45,0,0,0.114075 -33207,7417:457,-177,45,0,0,0.107262 -33208,7417:456,-176,45,0,0,0.108508 -33209,7417:455,-175,45,0,0,0.107834 -33210,7417:354,-174,45,0,0,0.106653 -33211,7417:353,-173,45,0,0,0.106253 -33212,7417:352,-172,45,0,0,0.104904 -33213,7417:351,-171,45,0,0,0.103351 -33214,7417:350,-170,45,0,0,0.101622 -33215,7416:459,-169,45,0,0,0.0975957 -33216,7416:458,-168,45,0,0,0.0962108 -33217,7416:457,-167,45,0,0,0.0945267 -33218,7416:456,-166,45,0,0,0.0960144 -33219,7416:455,-165,45,0,0,0.0877963 -33220,7416:353,-163,45,0,0,0.085407 -33221,7416:352,-162,45,0,0,0.0841316 -33222,7416:351,-161,45,0,0,0.0887887 -33223,7415:457,-157,45,0,0,0.152937 -33224,7415:455,-155,45,0,0,0.14581 -33225,7415:354,-154,45,0,0,0.155429 -33226,7415:353,-153,45,0,0,0.159684 -33227,7415:352,-152,45,0,0,0.150741 -33228,7415:351,-151,45,0,0,0.152512 -33229,7415:350,-150,45,0,0,0.151928 -33230,7414:459,-149,45,0,0,0.151466 -33231,7414:458,-148,45,0,0,0.152101 -33232,7414:457,-147,45,0,0,0.153524 -33233,7414:456,-146,45,0,0,0.153724 -33234,7414:455,-145,45,0,0,0.156389 -33235,7414:354,-144,45,0,0,0.160319 -33236,7414:353,-143,45,0,0,0.167442 -33237,7414:352,-142,45,0,0,0.167987 -33238,7414:351,-141,45,0,0,0.165815 -33239,7414:350,-140,45,0,0,0.166998 -33240,7413:459,-139,45,0,0,0.169877 -33241,7413:458,-138,45,0,0,0.174415 -33242,7413:457,-137,45,0,0,0.183133 -33243,7413:354,-134,45,0,0,0.164385 -33244,7408:350,-80,45,0,0,0.082414 -33245,7407:459,-79,45,0,0,0.0902541 -33246,7407:458,-78,45,0,0,0.0910247 -33247,7407:457,-77,45,0,0,0.0928431 -33248,7407:456,-76,45,0,0,0.0917843 -33249,7407:455,-75,45,0,0,0.0914936 -33250,7405:458,-58,45,0,0,0.0811487 -33251,7405:457,-57,45,0,0,0.0861239 -33252,7405:456,-56,45,0,0,0.138042 -33253,7405:455,-55,45,0,0,0.144104 -33254,7405:354,-54,45,0,0,0.133035 -33255,7405:353,-53,45,0,0,0.128297 -33256,7405:352,-52,45,0,0,0.124878 -33257,7405:351,-51,45,0,0,0.125598 -33258,7405:350,-50,45,0,0,0.127323 -33259,7404:459,-49,45,0,0,0.129949 -33260,7404:458,-48,45,0,0,0.13101 -33261,7404:457,-47,45,0,0,0.134631 -33262,7404:456,-46,45,0,0,0.139836 -33263,7404:455,-45,45,0,0,0.145555 -33264,7404:354,-44,45,0,0,0.161081 -33265,7404:353,-43,45,0,0,0.157927 -33266,7404:352,-42,45,0,0,0.152206 -33267,7404:351,-41,45,0,0,0.159477 -33268,7404:350,-40,45,0,0,0.156634 -33269,7403:459,-39,45,0,0,0.138458 -33270,7403:458,-38,45,0,0,0.136315 -33271,7403:457,-37,45,0,0,0.136775 -33272,7403:456,-36,45,0,0,0.13646 -33273,7403:455,-35,45,0,0,0.138348 -33274,7403:354,-34,45,0,0,0.141813 -33275,7403:353,-33,45,0,0,0.154206 -33276,7403:352,-32,45,0,0,0.164554 -33277,7403:351,-31,45,0,0,0.18096 -33278,7403:350,-30,45,0,0,0.191022 -33279,7402:459,-29,45,0,0,0.193591 -33280,7402:458,-28,45,0,0,0.183194 -33281,7402:457,-27,45,0,0,0.176332 -33282,7402:456,-26,45,0,0,0.173456 -33283,7402:455,-25,45,0,0,0.172163 -33284,7402:354,-24,45,0,0,0.169601 -33285,7402:353,-23,45,0,0,0.179654 -33286,7402:352,-22,45,0,0,0.186616 -33287,7402:351,-21,45,0,0,0.18131 -33288,7402:350,-20,45,0,0,0.192455 -33289,7401:459,-19,45,0,0,0.207658 -33290,7401:458,-18,45,0,0,0.21118 -33291,7401:457,-17,45,0,0,0.221348 -33292,7401:456,-16,45,0,0,0.227843 -33293,7401:455,-15,45,0,0,0.217634 -33294,7401:354,-14,45,0,0,0.215247 -33295,7401:353,-13,45,0,0,0.226382 -33296,7401:352,-12,45,0,0,0.229201 -33297,7401:351,-11,45,0,0,0.228911 -33298,7401:350,-10,45,0,0,0.228929 -33299,7400:459,-9,45,0,0,0.220605 -33300,7400:458,-8,45,0,0,0.21844 -33301,7400:457,-7,45,0,0,0.219459 -33302,7400:456,-6,45,0,0,0.203814 -33303,7400:455,-5,45,0,0,0.208166 -33304,7400:354,-4,45,0,0,0.203198 -33305,7400:353,-3,45,0,0,0.199891 -33306,7400:352,-2,45,0,0,0.201688 -33307,7400:351,-1,45,0,0,0.200895 -33308,1400:351,0,45,0,0,0.200945 -33309,1400:351,1,45,0,0,0.198907 -33310,1400:352,2,45,0,0,0.201936 -33311,1400:353,3,45,0,0,0.196236 -33312,1400:354,4,45,0,0,0.19228 -33313,1400:455,5,45,0,0,0.193977 -33314,1400:457,7,45,0,0,0.162894 -33315,1401:353,13,45,0,0,0.168289 -33316,1401:354,14,45,0,0,0.180139 -33317,1401:455,15,45,0,0,0.187131 -33318,1401:456,16,45,0,0,0.189298 -33319,1414:455,145,45,0,0,0.0912546 -33320,1414:456,146,45,0,0,0.0966854 -33321,1414:457,147,45,0,0,0.093103 -33322,1414:458,148,45,0,0,0.0898502 -33323,1414:459,149,45,0,0,0.0920072 -33324,1415:350,150,45,0,0,0.0960504 -33325,1415:351,151,45,0,0,0.0993285 -33326,1415:352,152,45,0,0,0.100995 -33327,1415:353,153,45,0,0,0.101126 -33328,1415:354,154,45,0,0,0.088093 -33329,1415:458,158,45,0,0,0.0804543 -33330,1415:459,159,45,0,0,0.0877797 -33331,1416:350,160,45,0,0,0.0864398 -33332,1416:351,161,45,0,0,0.086936 -33333,1416:352,162,45,0,0,0.0866999 -33334,1416:455,165,45,0,0,0.0757937 -33335,1416:456,166,45,0,0,0.0828268 -33336,1416:457,167,45,0,0,0.0983402 -33337,1416:458,168,45,0,0,0.0961484 -33338,1416:459,169,45,0,0,0.102016 -33339,1417:350,170,45,0,0,0.0999645 -33340,1417:351,171,45,0,0,0.091596 -33341,1417:352,172,45,0,0,0.104586 -33342,1417:353,173,45,0,0,0.111576 -33343,1417:354,174,45,0,0,0.11365 -33344,1417:455,175,45,0,0,0.112066 -33345,1417:456,176,45,0,0,0.112322 -33346,1417:457,177,45,0,0,0.11419 -33347,1417:458,178,45,0,0,0.116697 -33348,1417:459,179,45,0,0,0.120205 -33349,1418:350,180,45,0,0,0.121044 -33350,7418:360,-180,46,0,0,0.114804 -33351,7417:469,-179,46,0,0,0.113031 -33352,7417:468,-178,46,0,0,0.105184 -33353,7417:467,-177,46,0,0,0.0985041 -33354,7417:466,-176,46,0,0,0.0993375 -33355,7417:465,-175,46,0,0,0.0993375 -33356,7417:364,-174,46,0,0,0.100011 -33357,7417:363,-173,46,0,0,0.100103 -33358,7417:362,-172,46,0,0,0.0952327 -33359,7417:361,-171,46,0,0,0.0875743 -33360,7417:360,-170,46,0,0,0.0805455 -33361,7416:467,-167,46,0,0,0.0791865 -33362,7416:466,-166,46,0,0,0.0802342 -33363,7416:465,-165,46,0,0,0.0799994 -33364,7415:466,-156,46,0,0,0.152034 -33365,7415:465,-155,46,0,0,0.15749 -33366,7415:364,-154,46,0,0,0.158886 -33367,7415:363,-153,46,0,0,0.163709 -33368,7415:362,-152,46,0,0,0.163161 -33369,7415:361,-151,46,0,0,0.160929 -33370,7415:360,-150,46,0,0,0.159863 -33371,7414:469,-149,46,0,0,0.158666 -33372,7414:468,-148,46,0,0,0.155848 -33373,7414:467,-147,46,0,0,0.154447 -33374,7414:466,-146,46,0,0,0.153845 -33375,7414:465,-145,46,0,0,0.157777 -33376,7414:364,-144,46,0,0,0.16399 -33377,7414:363,-143,46,0,0,0.166413 -33378,7414:362,-142,46,0,0,0.170123 -33379,7414:361,-141,46,0,0,0.168822 -33380,7414:360,-140,46,0,0,0.16937 -33381,7413:469,-139,46,0,0,0.175795 -33382,7413:468,-138,46,0,0,0.173706 -33383,7413:467,-137,46,0,0,0.16803 -33384,7408:363,-83,46,0,0,0.0814865 -33385,7408:362,-82,46,0,0,0.0854712 -33386,7408:361,-81,46,0,0,0.087083 -33387,7408:360,-80,46,0,0,0.0892387 -33388,7407:469,-79,46,0,0,0.0902963 -33389,7407:468,-78,46,0,0,0.0899677 -33390,7407:467,-77,46,0,0,0.0906092 -33391,7407:465,-75,46,0,0,0.0831865 -33392,7407:364,-74,46,0,0,0.0911525 -33393,7405:469,-59,46,0,0,0.0785371 -33394,7405:468,-58,46,0,0,0.0799012 -33395,7405:467,-57,46,0,0,0.0826008 -33396,7405:466,-56,46,0,0,0.144599 -33397,7405:465,-55,46,0,0,0.142904 -33398,7405:364,-54,46,0,0,0.129914 -33399,7405:363,-53,46,0,0,0.127483 -33400,7405:362,-52,46,0,0,0.125001 -33401,7405:361,-51,46,0,0,0.126549 -33402,7405:360,-50,46,0,0,0.126333 -33403,7404:469,-49,46,0,0,0.12697 -33404,7404:468,-48,46,0,0,0.13196 -33405,7404:467,-47,46,0,0,0.145798 -33406,7404:466,-46,46,0,0,0.155173 -33407,7404:465,-45,46,0,0,0.155335 -33408,7404:364,-44,46,0,0,0.141888 -33409,7404:361,-41,46,0,0,0.13714 -33410,7404:360,-40,46,0,0,0.161373 -33411,7403:469,-39,46,0,0,0.154085 -33412,7403:468,-38,46,0,0,0.137261 -33413,7403:467,-37,46,0,0,0.134679 -33414,7403:466,-36,46,0,0,0.134666 -33415,7403:465,-35,46,0,0,0.136182 -33416,7403:364,-34,46,0,0,0.138593 -33417,7403:363,-33,46,0,0,0.145478 -33418,7403:362,-32,46,0,0,0.156471 -33419,7403:361,-31,46,0,0,0.164809 -33420,7403:360,-30,46,0,0,0.184381 -33421,7402:469,-29,46,0,0,0.197356 -33422,7402:468,-28,46,0,0,0.202931 -33423,7402:467,-27,46,0,0,0.198743 -33424,7402:466,-26,46,0,0,0.190974 -33425,7402:465,-25,46,0,0,0.191372 -33426,7402:364,-24,46,0,0,0.18531 -33427,7402:363,-23,46,0,0,0.183579 -33428,7402:362,-22,46,0,0,0.188967 -33429,7402:361,-21,46,0,0,0.200269 -33430,7402:360,-20,46,0,0,0.200318 -33431,7401:469,-19,46,0,0,0.203864 -33432,7401:468,-18,46,0,0,0.209609 -33433,7401:467,-17,46,0,0,0.207489 -33434,7401:466,-16,46,0,0,0.225986 -33435,7401:465,-15,46,0,0,0.217249 -33436,7401:364,-14,46,0,0,0.215734 -33437,7401:363,-13,46,0,0,0.214606 -33438,7401:362,-12,46,0,0,0.220499 -33439,7401:361,-11,46,0,0,0.219283 -33440,7401:360,-10,46,0,0,0.215907 -33441,7400:469,-9,46,0,0,0.216047 -33442,7400:468,-8,46,0,0,0.222039 -33443,7400:467,-7,46,0,0,0.219829 -33444,7400:466,-6,46,0,0,0.217267 -33445,7400:465,-5,46,0,0,0.207236 -33446,7400:364,-4,46,0,0,0.20149 -33447,7400:363,-3,46,0,0,0.200697 -33448,7400:362,-2,46,0,0,0.201176 -33449,7400:361,-1,46,0,0,0.19894 -33450,1400:361,0,46,0,0,0.202218 -33451,1400:361,1,46,0,0,0.201341 -33452,1400:465,5,46,0,0,0.182181 -33453,1400:466,6,46,0,0,0.179912 -33454,1401:362,12,46,0,0,0.16186 -33455,1401:363,13,46,0,0,0.171213 -33456,1401:364,14,46,0,0,0.174134 -33457,1401:465,15,46,0,0,0.179624 -33458,1401:466,16,46,0,0,0.160776 -33459,1414:467,147,46,0,0,0.0820961 -33460,1414:468,148,46,0,0,0.0829908 -33461,1415:468,158,46,0,0,0.0797805 -33462,1415:469,159,46,0,0,0.0840999 -33463,1416:360,160,46,0,0,0.0838865 -33464,1416:361,161,46,0,0,0.0805761 -33465,1416:362,162,46,0,0,0.0789023 -33466,1416:363,163,46,0,0,0.0787978 -33467,1416:364,164,46,0,0,0.0794567 -33468,1417:363,173,46,0,0,0.0928172 -33469,1417:364,174,46,0,0,0.102952 -33470,1417:465,175,46,0,0,0.105999 -33471,1417:466,176,46,0,0,0.107498 -33472,1417:467,177,46,0,0,0.11035 -33473,1417:468,178,46,0,0,0.115254 -33474,1417:469,179,46,0,0,0.113878 -33475,1418:360,180,46,0,0,0.114804 -33476,7418:370,-180,47,0,0,0.108061 -33477,7417:479,-179,47,0,0,0.106663 -33478,7417:478,-178,47,0,0,0.0988331 -33479,7417:477,-177,47,0,0,0.0942458 -33480,7417:476,-176,47,0,0,0.0913826 -33481,7417:475,-175,47,0,0,0.0901866 -33482,7417:374,-174,47,0,0,0.0901699 -33483,7417:373,-173,47,0,0,0.0889385 -33484,7417:372,-172,47,0,0,0.0863265 -33485,7417:371,-171,47,0,0,0.0802948 -33486,7417:370,-170,47,0,0,0.0788053 -33487,7416:479,-169,47,0,0,0.0789099 -33488,7416:478,-168,47,0,0,0.0790444 -33489,7415:477,-157,47,0,0,0.113609 -33490,7415:476,-156,47,0,0,0.136497 -33491,7415:374,-154,47,0,0,0.165389 -33492,7415:373,-153,47,0,0,0.164004 -33493,7415:372,-152,47,0,0,0.165801 -33494,7415:371,-151,47,0,0,0.158927 -33495,7415:370,-150,47,0,0,0.153858 -33496,7414:479,-149,47,0,0,0.152167 -33497,7414:478,-148,47,0,0,0.154233 -33498,7414:477,-147,47,0,0,0.15597 -33499,7414:476,-146,47,0,0,0.153898 -33500,7414:475,-145,47,0,0,0.153404 -33501,7414:374,-144,47,0,0,0.159877 -33502,7414:373,-143,47,0,0,0.165234 -33503,7414:372,-142,47,0,0,0.172941 -33504,7414:371,-141,47,0,0,0.174075 -33505,7414:370,-140,47,0,0,0.175439 -33506,7408:374,-84,47,0,0,0.0809726 -33507,7408:373,-83,47,0,0,0.0867324 -33508,7408:372,-82,47,0,0,0.0883905 -33509,7408:371,-81,47,0,0,0.0888136 -33510,7408:370,-80,47,0,0,0.0893639 -33511,7407:479,-79,47,0,0,0.0896906 -33512,7407:478,-78,47,0,0,0.0896655 -33513,7407:477,-77,47,0,0,0.088374 -33514,7407:476,-76,47,0,0,0.0890885 -33515,7407:475,-75,47,0,0,0.0803708 -33516,7407:374,-74,47,0,0,0.0924975 -33517,7406:374,-64,47,0,0,0.0784108 -33518,7406:373,-63,47,0,0,0.0800901 -33519,7405:479,-59,47,0,0,0.078865 -33520,7405:478,-58,47,0,0,0.0797805 -33521,7405:477,-57,47,0,0,0.0813559 -33522,7405:476,-56,47,0,0,0.14703 -33523,7405:475,-55,47,0,0,0.14558 -33524,7405:374,-54,47,0,0,0.134033 -33525,7405:373,-53,47,0,0,0.131913 -33526,7405:372,-52,47,0,0,0.129022 -33527,7405:371,-51,47,0,0,0.125372 -33528,7405:370,-50,47,0,0,0.137042 -33529,7404:479,-49,47,0,0,0.13576 -33530,7404:478,-48,47,0,0,0.149247 -33531,7404:477,-47,47,0,0,0.154622 -33532,7404:476,-46,47,0,0,0.1416 -33533,7404:374,-44,47,0,0,0.0957472 -33534,7404:370,-40,47,0,0,0.139799 -33535,7403:479,-39,47,0,0,0.16937 -33536,7403:478,-38,47,0,0,0.15831 -33537,7403:477,-37,47,0,0,0.142678 -33538,7403:476,-36,47,0,0,0.135302 -33539,7403:475,-35,47,0,0,0.135519 -33540,7403:374,-34,47,0,0,0.13714 -33541,7403:373,-33,47,0,0,0.139293 -33542,7403:372,-32,47,0,0,0.145146 -33543,7403:371,-31,47,0,0,0.152087 -33544,7403:370,-30,47,0,0,0.171622 -33545,7402:479,-29,47,0,0,0.186118 -33546,7402:478,-28,47,0,0,0.198318 -33547,7402:477,-27,47,0,0,0.204816 -33548,7402:476,-26,47,0,0,0.204799 -33549,7402:475,-25,47,0,0,0.197405 -33550,7402:374,-24,47,0,0,0.192983 -33551,7402:373,-23,47,0,0,0.191594 -33552,7402:372,-22,47,0,0,0.191308 -33553,7402:371,-21,47,0,0,0.192791 -33554,7402:370,-20,47,0,0,0.194137 -33555,7401:479,-19,47,0,0,0.197812 -33556,7401:478,-18,47,0,0,0.200022 -33557,7401:477,-17,47,0,0,0.212036 -33558,7401:476,-16,47,0,0,0.223053 -33559,7401:475,-15,47,0,0,0.22259 -33560,7401:374,-14,47,0,0,0.219441 -33561,7401:373,-13,47,0,0,0.21851 -33562,7401:372,-12,47,0,0,0.208505 -33563,7401:371,-11,47,0,0,0.213051 -33564,7401:370,-10,47,0,0,0.185869 -33565,7400:479,-9,47,0,0,0.183933 -33566,7400:478,-8,47,0,0,0.190356 -33567,7400:477,-7,47,0,0,0.21024 -33568,7400:476,-6,47,0,0,0.215247 -33569,7400:374,-4,47,0,0,0.206007 -33570,7400:373,-3,47,0,0,0.202218 -33571,7400:372,-2,47,0,0,0.201209 -33572,7400:371,-1,47,0,0,0.196463 -33573,1400:371,0,47,0,0,0.200269 -33574,1401:372,12,47,0,0,0.173957 -33575,1401:374,14,47,0,0,0.173633 -33576,1401:475,15,47,0,0,0.18157 -33577,1416:370,160,47,0,0,0.0806445 -33578,1416:371,161,47,0,0,0.0818331 -33579,1416:372,162,47,0,0,0.0793439 -33580,1416:475,165,47,0,0,0.0797954 -33581,1417:475,175,47,0,0,0.0862696 -33582,1417:476,176,47,0,0,0.102243 -33583,1417:477,177,47,0,0,0.106126 -33584,1417:478,178,47,0,0,0.105087 -33585,1417:479,179,47,0,0,0.10318 -33586,1418:370,180,47,0,0,0.108061 -33587,7418:380,-180,48,0,0,0.0986503 -33588,7417:489,-179,48,0,0,0.0966228 -33589,7417:488,-178,48,0,0,0.0926616 -33590,7417:487,-177,48,0,0,0.090821 -33591,7417:486,-176,48,0,0,0.0882251 -33592,7417:485,-175,48,0,0,0.0844726 -33593,7417:384,-174,48,0,0,0.0806066 -33594,7417:383,-173,48,0,0,0.0792316 -33595,7417:382,-172,48,0,0,0.0786041 -33596,7417:381,-171,48,0,0,0.0780405 -33597,7417:380,-170,48,0,0,0.078344 -33598,7416:489,-169,48,0,0,0.079224 -33599,7415:486,-156,48,0,0,0.109315 -33600,7415:383,-153,48,0,0,0.167256 -33601,7415:382,-152,48,0,0,0.169399 -33602,7415:381,-151,48,0,0,0.17021 -33603,7415:380,-150,48,0,0,0.166399 -33604,7414:489,-149,48,0,0,0.156715 -33605,7414:488,-148,48,0,0,0.152871 -33606,7414:487,-147,48,0,0,0.152074 -33607,7414:486,-146,48,0,0,0.153711 -33608,7414:485,-145,48,0,0,0.15745 -33609,7414:384,-144,48,0,0,0.164357 -33610,7414:383,-143,48,0,0,0.174934 -33611,7414:382,-142,48,0,0,0.175409 -33612,7414:381,-141,48,0,0,0.174963 -33613,7413:487,-137,48,0,0,0.159106 -33614,7408:485,-85,48,0,0,0.0805455 -33615,7408:384,-84,48,0,0,0.0862212 -33616,7408:383,-83,48,0,0,0.0872546 -33617,7408:382,-82,48,0,0,0.0879446 -33618,7408:381,-81,48,0,0,0.0878126 -33619,7408:380,-80,48,0,0,0.0884319 -33620,7407:489,-79,48,0,0,0.0891885 -33621,7407:488,-78,48,0,0,0.0890384 -33622,7407:487,-77,48,0,0,0.0907193 -33623,7407:486,-76,48,0,0,0.0816944 -33624,7407:485,-75,48,0,0,0.0799164 -33625,7407:384,-74,48,0,0,0.0930424 -33626,7406:485,-65,48,0,0,0.0781588 -33627,7406:384,-64,48,0,0,0.0786936 -33628,7406:383,-63,48,0,0,0.0788053 -33629,7406:382,-62,48,0,0,0.0792464 -33630,7406:380,-60,48,0,0,0.077797 -33631,7405:489,-59,48,0,0,0.0791717 -33632,7405:488,-58,48,0,0,0.079149 -33633,7405:487,-57,48,0,0,0.0942809 -33634,7405:486,-56,48,0,0,0.149561 -33635,7405:485,-55,48,0,0,0.150163 -33636,7405:384,-54,48,0,0,0.144663 -33637,7405:383,-53,48,0,0,0.134164 -33638,7405:382,-52,48,0,0,0.140233 -33639,7405:381,-51,48,0,0,0.139985 -33640,7405:380,-50,48,0,0,0.141863 -33641,7404:489,-49,48,0,0,0.148376 -33642,7404:488,-48,48,0,0,0.153764 -33643,7404:487,-47,48,0,0,0.142904 -33644,7404:380,-40,48,0,0,0.116253 -33645,7403:489,-39,48,0,0,0.148648 -33646,7403:488,-38,48,0,0,0.169847 -33647,7403:487,-37,48,0,0,0.168145 -33648,7403:486,-36,48,0,0,0.159009 -33649,7403:485,-35,48,0,0,0.144472 -33650,7403:384,-34,48,0,0,0.142791 -33651,7403:383,-33,48,0,0,0.149078 -33652,7403:382,-32,48,0,0,0.142214 -33653,7403:381,-31,48,0,0,0.144269 -33654,7403:380,-30,48,0,0,0.155187 -33655,7402:489,-29,48,0,0,0.17529 -33656,7402:488,-28,48,0,0,0.190974 -33657,7402:487,-27,48,0,0,0.199398 -33658,7402:486,-26,48,0,0,0.20557 -33659,7402:485,-25,48,0,0,0.206141 -33660,7402:384,-24,48,0,0,0.20842 -33661,7402:383,-23,48,0,0,0.208946 -33662,7402:382,-22,48,0,0,0.209507 -33663,7402:381,-21,48,0,0,0.207912 -33664,7402:380,-20,48,0,0,0.208861 -33665,7401:489,-19,48,0,0,0.205654 -33666,7401:488,-18,48,0,0,0.204515 -33667,7401:487,-17,48,0,0,0.217337 -33668,7401:486,-16,48,0,0,0.220252 -33669,7401:485,-15,48,0,0,0.216656 -33670,7401:384,-14,48,0,0,0.215108 -33671,7401:383,-13,48,0,0,0.208319 -33672,7401:382,-12,48,0,0,0.200022 -33673,7401:381,-11,48,0,0,0.18746 -33674,7401:380,-10,48,0,0,0.183563 -33675,7400:489,-9,48,0,0,0.180777 -33676,7400:488,-8,48,0,0,0.17672 -33677,7400:487,-7,48,0,0,0.19491 -33678,7400:486,-6,48,0,0,0.204983 -33679,7400:485,-5,48,0,0,0.214208 -33680,7400:384,-4,48,0,0,0.211231 -33681,7400:383,-3,48,0,0,0.206713 -33682,7400:382,-2,48,0,0,0.208369 -33683,7400:381,-1,48,0,0,0.196446 -33684,1401:382,12,48,0,0,0.165134 -33685,1401:383,13,48,0,0,0.174445 -33686,1401:384,14,48,0,0,0.176392 -33687,1401:485,15,48,0,0,0.181387 -33688,1401:486,16,48,0,0,0.152658 -33689,1401:487,17,48,0,0,0.155268 -33690,1401:488,18,48,0,0,0.170428 -33691,1416:486,166,48,0,0,0.082554 -33692,1417:489,179,48,0,0,0.0883657 -33693,1418:380,180,48,0,0,0.0986503 -33694,7418:390,-180,49,0,0,0.0920502 -33695,7417:499,-179,49,0,0,0.0918186 -33696,7417:498,-178,49,0,0,0.0899258 -33697,7417:497,-177,49,0,0,0.0869116 -33698,7417:496,-176,49,0,0,0.0847672 -33699,7417:495,-175,49,0,0,0.0810875 -33700,7417:394,-174,49,0,0,0.0785074 -33701,7417:393,-173,49,0,0,0.0762196 -33702,7417:392,-172,49,0,0,0.0764659 -33703,7417:391,-171,49,0,0,0.0768367 -33704,7417:390,-170,49,0,0,0.0777158 -33705,7416:499,-169,49,0,0,0.0787978 -33706,7415:496,-156,49,0,0,0.0896821 -33707,7415:392,-152,49,0,0,0.153724 -33708,7415:391,-151,49,0,0,0.166969 -33709,7415:390,-150,49,0,0,0.170689 -33710,7414:499,-149,49,0,0,0.170907 -33711,7414:498,-148,49,0,0,0.170937 -33712,7414:497,-147,49,0,0,0.168922 -33713,7414:496,-146,49,0,0,0.171082 -33714,7414:495,-145,49,0,0,0.173235 -33715,7414:394,-144,49,0,0,0.174845 -33716,7414:393,-143,49,0,0,0.1748 -33717,7408:496,-86,49,0,0,0.0801054 -33718,7408:495,-85,49,0,0,0.0849906 -33719,7408:394,-84,49,0,0,0.0869686 -33720,7408:393,-83,49,0,0,0.0868221 -33721,7408:392,-82,49,0,0,0.0877057 -33722,7408:391,-81,49,0,0,0.0875498 -33723,7408:390,-80,49,0,0,0.0888219 -33724,7407:499,-79,49,0,0,0.08903 -33725,7407:498,-78,49,0,0,0.0885728 -33726,7407:497,-77,49,0,0,0.0895312 -33727,7407:496,-76,49,0,0,0.0898668 -33728,7407:495,-75,49,0,0,0.0892803 -33729,7406:495,-65,49,0,0,0.0773559 -33730,7406:394,-64,49,0,0,0.0793215 -33731,7406:393,-63,49,0,0,0.0802798 -33732,7406:392,-62,49,0,0,0.081034 -33733,7406:391,-61,49,0,0,0.0811104 -33734,7406:390,-60,49,0,0,0.0799088 -33735,7405:499,-59,49,0,0,0.0794342 -33736,7405:498,-58,49,0,0,0.0808048 -33737,7405:497,-57,49,0,0,0.109515 -33738,7405:496,-56,49,0,0,0.148 -33739,7405:495,-55,49,0,0,0.150701 -33740,7405:394,-54,49,0,0,0.150242 -33741,7405:393,-53,49,0,0,0.149993 -33742,7405:392,-52,49,0,0,0.150662 -33743,7405:391,-51,49,0,0,0.150071 -33744,7405:390,-50,49,0,0,0.151294 -33745,7404:499,-49,49,0,0,0.153257 -33746,7404:498,-48,49,0,0,0.153404 -33747,7404:497,-47,49,0,0,0.142553 -33748,7403:499,-39,49,0,0,0.112599 -33749,7403:498,-38,49,0,0,0.172002 -33750,7403:497,-37,49,0,0,0.17275 -33751,7403:496,-36,49,0,0,0.173367 -33752,7403:495,-35,49,0,0,0.172823 -33753,7403:394,-34,49,0,0,0.171608 -33754,7403:393,-33,49,0,0,0.170864 -33755,7403:392,-32,49,0,0,0.159574 -33756,7403:391,-31,49,0,0,0.155308 -33757,7403:390,-30,49,0,0,0.160485 -33758,7402:499,-29,49,0,0,0.182396 -33759,7402:498,-28,49,0,0,0.190832 -33760,7402:497,-27,49,0,0,0.203531 -33761,7402:496,-26,49,0,0,0.1984 -33762,7402:495,-25,49,0,0,0.194926 -33763,7402:394,-24,49,0,0,0.194411 -33764,7402:393,-23,49,0,0,0.195895 -33765,7402:392,-22,49,0,0,0.186678 -33766,7402:390,-20,49,0,0,0.188967 -33767,7401:499,-19,49,0,0,0.199924 -33768,7401:498,-18,49,0,0,0.211419 -33769,7401:497,-17,49,0,0,0.216447 -33770,7401:496,-16,49,0,0,0.213655 -33771,7401:495,-15,49,0,0,0.172985 -33772,7401:394,-14,49,0,0,0.176302 -33773,7401:393,-13,49,0,0,0.178989 -33774,7401:392,-12,49,0,0,0.186367 -33775,7401:391,-11,49,0,0,0.187522 -33776,7401:390,-10,49,0,0,0.178265 -33777,7400:499,-9,49,0,0,0.171797 -33778,7400:498,-8,49,0,0,0.167786 -33779,7400:497,-7,49,0,0,0.174519 -33780,7400:496,-6,49,0,0,0.196446 -33781,7400:495,-5,49,0,0,0.205285 -33782,7400:394,-4,49,0,0,0.20881 -33783,7400:393,-3,49,0,0,0.203447 -33784,7400:392,-2,49,0,0,0.198874 -33785,7400:391,-1,49,0,0,0.200055 -33786,1401:392,12,49,0,0,0.131983 -33787,1401:393,13,49,0,0,0.168663 -33788,1401:394,14,49,0,0,0.179064 -33789,1401:495,15,49,0,0,0.177484 -33790,1401:497,17,49,0,0,0.147818 -33791,1401:498,18,49,0,0,0.142126 -33792,1417:498,178,49,0,0,0.0767056 -33793,1417:499,179,49,0,0,0.0812638 -33794,1418:390,180,49,0,0,0.0920502 -33795,7518:100,-180,50,0,0,0.0828971 -33796,7517:209,-179,50,0,0,0.086651 -33797,7517:208,-178,50,0,0,0.0873283 -33798,7517:207,-177,50,0,0,0.0865617 -33799,7517:206,-176,50,0,0,0.0834298 -33800,7517:205,-175,50,0,0,0.0815327 -33801,7517:104,-174,50,0,0,0.0764732 -33802,7517:103,-173,50,0,0,0.076386 -33803,7517:102,-172,50,0,0,0.0760967 -33804,7517:101,-171,50,0,0,0.0763208 -33805,7517:100,-170,50,0,0,0.0766839 -33806,7516:209,-169,50,0,0,0.07751 -33807,7516:207,-167,50,0,0,0.0798408 -33808,7515:102,-152,50,0,0,0.139293 -33809,7508:207,-87,50,0,0,0.0820883 -33810,7508:206,-86,50,0,0,0.0854151 -33811,7508:205,-85,50,0,0,0.086132 -33812,7508:104,-84,50,0,0,0.0860837 -33813,7508:103,-83,50,0,0,0.0860514 -33814,7508:102,-82,50,0,0,0.0869686 -33815,7508:101,-81,50,0,0,0.0871648 -33816,7508:100,-80,50,0,0,0.0882582 -33817,7507:209,-79,50,0,0,0.0889802 -33818,7507:208,-78,50,0,0,0.089105 -33819,7507:207,-77,50,0,0,0.0890384 -33820,7507:206,-76,50,0,0,0.0890801 -33821,7507:205,-75,50,0,0,0.0874924 -33822,7507:104,-74,50,0,0,0.0790743 -33823,7506:104,-64,50,0,0,0.0793966 -33824,7506:103,-63,50,0,0,0.0791417 -33825,7506:102,-62,50,0,0,0.0786636 -33826,7506:101,-61,50,0,0,0.0782033 -33827,7506:100,-60,50,0,0,0.0785521 -33828,7505:209,-59,50,0,0,0.0813788 -33829,7505:208,-58,50,0,0,0.102677 -33830,7505:207,-57,50,0,0,0.120531 -33831,7505:206,-56,50,0,0,0.122616 -33832,7505:205,-55,50,0,0,0.151783 -33833,7505:104,-54,50,0,0,0.152366 -33834,7505:103,-53,50,0,0,0.15173 -33835,7505:102,-52,50,0,0,0.151637 -33836,7505:101,-51,50,0,0,0.152259 -33837,7505:100,-50,50,0,0,0.15311 -33838,7504:209,-49,50,0,0,0.152937 -33839,7504:208,-48,50,0,0,0.1459 -33840,7503:208,-38,50,0,0,0.115244 -33841,7503:207,-37,50,0,0,0.138974 -33842,7503:206,-36,50,0,0,0.141451 -33843,7503:205,-35,50,0,0,0.171973 -33844,7503:104,-34,50,0,0,0.172471 -33845,7503:103,-33,50,0,0,0.179684 -33846,7503:102,-32,50,0,0,0.181601 -33847,7503:101,-31,50,0,0,0.181768 -33848,7503:100,-30,50,0,0,0.181387 -33849,7502:209,-29,50,0,0,0.187851 -33850,7502:208,-28,50,0,0,0.198155 -33851,7502:207,-27,50,0,0,0.196917 -33852,7502:206,-26,50,0,0,0.183579 -33853,7502:205,-25,50,0,0,0.185402 -33854,7502:104,-24,50,0,0,0.17443 -33855,7501:207,-17,50,0,0,0.130496 -33856,7501:206,-16,50,0,0,0.170137 -33857,7501:205,-15,50,0,0,0.176765 -33858,7501:104,-14,50,0,0,0.120249 -33859,7501:103,-13,50,0,0,0.12908 -33860,7501:102,-12,50,0,0,0.129369 -33861,7501:101,-11,50,0,0,0.130228 -33862,7501:100,-10,50,0,0,0.14926 -33863,7500:209,-9,50,0,0,0.156878 -33864,7500:208,-8,50,0,0,0.165134 -33865,7500:207,-7,50,0,0,0.185806 -33866,7500:206,-6,50,0,0,0.191372 -33867,7500:205,-5,50,0,0,0.194781 -33868,7500:104,-4,50,0,0,0.197796 -33869,7500:103,-3,50,0,0,0.200566 -33870,7500:102,-2,50,0,0,0.202749 -33871,7500:101,-1,50,0,0,0.204615 -33872,1501:102,12,50,0,0,0.16079 -33873,1501:103,13,50,0,0,0.158982 -33874,1501:104,14,50,0,0,0.166399 -33875,1501:205,15,50,0,0,0.177199 -33876,1501:206,16,50,0,0,0.160707 -33877,1517:207,177,50,0,0,0.0804466 -33878,1517:208,178,50,0,0,0.077679 -33879,1517:209,179,50,0,0,0.0778929 -33880,1518:100,180,50,0,0,0.0828971 -33881,7518:110,-180,51,0,0,0.0767785 -33882,7517:219,-179,51,0,0,0.077797 -33883,7517:218,-178,51,0,0,0.0768732 -33884,7517:215,-175,51,0,0,0.0761689 -33885,7517:114,-174,51,0,0,0.078448 -33886,7517:113,-173,51,0,0,0.0784258 -33887,7517:112,-172,51,0,0,0.0773559 -33888,7517:111,-171,51,0,0,0.0764949 -33889,7517:110,-170,51,0,0,0.0763789 -33890,7516:219,-169,51,0,0,0.0763064 -33891,7516:218,-168,51,0,0,0.0769825 -33892,7516:217,-167,51,0,0,0.0776421 -33893,7516:216,-166,51,0,0,0.0781884 -33894,7508:219,-89,51,0,0,0.0811487 -33895,7508:218,-88,51,0,0,0.0817097 -33896,7508:217,-87,51,0,0,0.0844806 -33897,7508:216,-86,51,0,0,0.0843536 -33898,7508:215,-85,51,0,0,0.0845362 -33899,7508:114,-84,51,0,0,0.0850545 -33900,7508:113,-83,51,0,0,0.0858656 -33901,7508:112,-82,51,0,0,0.0864561 -33902,7508:111,-81,51,0,0,0.0867975 -33903,7508:110,-80,51,0,0,0.0870013 -33904,7507:219,-79,51,0,0,0.0874186 -33905,7507:218,-78,51,0,0,0.0882498 -33906,7507:217,-77,51,0,0,0.0888719 -33907,7507:216,-76,51,0,0,0.0821812 -33908,7507:215,-75,51,0,0,0.0868791 -33909,7507:114,-74,51,0,0,0.0869933 -33910,7507:113,-73,51,0,0,0.0810646 -33911,7506:215,-65,51,0,0,0.079562 -33912,7506:114,-64,51,0,0,0.0782551 -33913,7506:113,-63,51,0,0,0.0781884 -33914,7506:112,-62,51,0,0,0.0781218 -33915,7506:111,-61,51,0,0,0.0783737 -33916,7506:110,-60,51,0,0,0.079149 -33917,7505:219,-59,51,0,0,0.0780701 -33918,7505:218,-58,51,0,0,0.0791717 -33919,7505:217,-57,51,0,0,0.0819182 -33920,7505:216,-56,51,0,0,0.1056 -33921,7505:215,-55,51,0,0,0.132136 -33922,7505:114,-54,51,0,0,0.15015 -33923,7505:113,-53,51,0,0,0.152206 -33924,7505:112,-52,51,0,0,0.152512 -33925,7505:111,-51,51,0,0,0.152831 -33926,7505:110,-50,51,0,0,0.152897 -33927,7504:219,-49,51,0,0,0.150071 -33928,7504:218,-48,51,0,0,0.135386 -33929,7503:217,-37,51,0,0,0.112774 -33930,7503:216,-36,51,0,0,0.160957 -33931,7503:215,-35,51,0,0,0.153671 -33932,7503:114,-34,51,0,0,0.154528 -33933,7503:113,-33,51,0,0,0.154072 -33934,7503:112,-32,51,0,0,0.178025 -33935,7503:111,-31,51,0,0,0.185635 -33936,7503:110,-30,51,0,0,0.185387 -33937,7502:219,-29,51,0,0,0.189961 -33938,7502:218,-28,51,0,0,0.194958 -33939,7502:217,-27,51,0,0,0.182411 -33940,7502:216,-26,51,0,0,0.171871 -33941,7502:215,-25,51,0,0,0.154675 -33942,7502:114,-24,51,0,0,0.126061 -33943,7501:216,-16,51,0,0,0.120129 -33944,7501:215,-15,51,0,0,0.111454 -33945,7501:114,-14,51,0,0,0.114158 -33946,7501:113,-13,51,0,0,0.120837 -33947,7501:112,-12,51,0,0,0.1249 -33948,7501:111,-11,51,0,0,0.145478 -33949,7501:110,-10,51,0,0,0.150636 -33950,7500:219,-9,51,0,0,0.157859 -33951,7500:218,-8,51,0,0,0.161804 -33952,7500:217,-7,51,0,0,0.174741 -33953,7500:216,-6,51,0,0,0.18064 -33954,7500:215,-5,51,0,0,0.181417 -33955,7500:114,-4,51,0,0,0.185496 -33956,7500:113,-3,51,0,0,0.195588 -33957,7500:112,-2,51,0,0,0.197421 -33958,7500:111,-1,51,0,0,0.20358 -33959,1500:111,0,51,0,0,0.200533 -33960,1501:110,10,51,0,0,0.149013 -33961,1501:111,11,51,0,0,0.155011 -33962,1501:112,12,51,0,0,0.157681 -33963,1501:113,13,51,0,0,0.125609 -33964,1501:114,14,51,0,0,0.12146 -33965,1501:215,15,51,0,0,0.12967 -33966,1501:216,16,51,0,0,0.147676 -33967,1501:217,17,51,0,0,0.169124 -33968,1517:219,179,51,0,0,0.0773118 -33969,1518:110,180,51,0,0,0.0767785 -33970,7517:124,-174,52,0,0,0.0766548 -33971,7517:123,-173,52,0,0,0.0776864 -33972,7517:122,-172,52,0,0,0.0775394 -33973,7517:121,-171,52,0,0,0.0762267 -33974,7508:229,-89,52,0,0,0.0813329 -33975,7508:228,-88,52,0,0,0.0831865 -33976,7508:227,-87,52,0,0,0.0833277 -33977,7508:226,-86,52,0,0,0.0832649 -33978,7508:225,-85,52,0,0,0.0844649 -33979,7508:124,-84,52,0,0,0.0852548 -33980,7508:123,-83,52,0,0,0.0854472 -33981,7508:122,-82,52,0,0,0.0863265 -33982,7508:121,-81,52,0,0,0.0860997 -33983,7508:120,-80,52,0,0,0.0857849 -33984,7507:229,-79,52,0,0,0.0861078 -33985,7507:228,-78,52,0,0,0.0850864 -33986,7507:227,-77,52,0,0,0.0863831 -33987,7507:226,-76,52,0,0,0.0855597 -33988,7507:225,-75,52,0,0,0.0841712 -33989,7507:124,-74,52,0,0,0.0877797 -33990,7507:123,-73,52,0,0,0.087181 -33991,7506:225,-65,52,0,0,0.0788203 -33992,7506:124,-64,52,0,0,0.0787605 -33993,7506:123,-63,52,0,0,0.0782551 -33994,7506:120,-60,52,0,0,0.0794792 -33995,7505:229,-59,52,0,0,0.076205 -33996,7505:228,-58,52,0,0,0.0774952 -33997,7505:227,-57,52,0,0,0.0773044 -33998,7505:226,-56,52,0,0,0.0777527 -33999,7505:225,-55,52,0,0,0.085648 -34000,7505:124,-54,52,0,0,0.123871 -34001,7505:123,-53,52,0,0,0.140418 -34002,7505:122,-52,52,0,0,0.150543 -34003,7505:121,-51,52,0,0,0.151756 -34004,7505:120,-50,52,0,0,0.151518 -34005,7504:229,-49,52,0,0,0.144764 -34006,7504:228,-48,52,0,0,0.131115 -34007,7503:124,-34,52,0,0,0.0904399 -34008,7503:123,-33,52,0,0,0.100149 -34009,7503:122,-32,52,0,0,0.104894 -34010,7503:121,-31,52,0,0,0.104904 -34011,7503:120,-30,52,0,0,0.10165 -34012,7502:229,-29,52,0,0,0.0874103 -34013,7502:228,-28,52,0,0,0.0879692 -34014,7502:227,-27,52,0,0,0.113258 -34015,7502:226,-26,52,0,0,0.168159 -34016,7502:225,-25,52,0,0,0.138777 -34017,7502:124,-24,52,0,0,0.137225 -34018,7502:123,-23,52,0,0,0.1176 -34019,7502:122,-22,52,0,0,0.123804 -34020,7501:227,-17,52,0,0,0.119566 -34021,7501:226,-16,52,0,0,0.115149 -34022,7501:225,-15,52,0,0,0.110592 -34023,7501:124,-14,52,0,0,0.116771 -34024,7501:123,-13,52,0,0,0.115569 -34025,7501:122,-12,52,0,0,0.116761 -34026,7501:121,-11,52,0,0,0.127918 -34027,7501:120,-10,52,0,0,0.155605 -34028,7500:229,-9,52,0,0,0.160693 -34029,7500:228,-8,52,0,0,0.165064 -34030,7500:227,-7,52,0,0,0.168677 -34031,7500:226,-6,52,0,0,0.173588 -34032,7500:225,-5,52,0,0,0.175052 -34033,7500:124,-4,52,0,0,0.17678 -34034,7500:123,-3,52,0,0,0.174845 -34035,7500:122,-2,52,0,0,0.17114 -34036,7500:121,-1,52,0,0,0.200829 -34037,1500:121,0,52,0,0,0.200664 -34038,1500:121,1,52,0,0,0.189818 -34039,1500:122,2,52,0,0,0.162335 -34040,1501:120,10,52,0,0,0.160374 -34041,1501:121,11,52,0,0,0.157164 -34042,1501:122,12,52,0,0,0.16043 -34043,1501:123,13,52,0,0,0.133165 -34044,1501:228,18,52,0,0,0.163329 -34045,1501:229,19,52,0,0,0.160568 -34046,1517:229,179,52,0,0,0.0769899 -34047,7517:237,-177,53,0,0,0.0773778 -34048,7517:133,-173,53,0,0,0.077063 -34049,7517:132,-172,53,0,0,0.0760967 -34050,7508:239,-89,53,0,0,0.0817561 -34051,7508:238,-88,53,0,0,0.0824762 -34052,7508:237,-87,53,0,0,0.0833432 -34053,7508:236,-86,53,0,0,0.0841159 -34054,7508:235,-85,53,0,0,0.0847354 -34055,7508:134,-84,53,0,0,0.0845682 -34056,7508:133,-83,53,0,0,0.0848709 -34057,7508:132,-82,53,0,0,0.0846476 -34058,7508:131,-81,53,0,0,0.0849109 -34059,7508:130,-80,53,0,0,0.0848867 -34060,7507:239,-79,53,0,0,0.0844966 -34061,7507:238,-78,53,0,0,0.0836499 -34062,7507:237,-77,53,0,0,0.0847113 -34063,7507:236,-76,53,0,0,0.0837918 -34064,7507:235,-75,53,0,0,0.0829987 -34065,7507:134,-74,53,0,0,0.0847431 -34066,7507:133,-73,53,0,0,0.0843854 -34067,7507:132,-72,53,0,0,0.078783 -34068,7506:236,-66,53,0,0,0.0795921 -34069,7506:235,-65,53,0,0,0.078448 -34070,7506:131,-61,53,0,0,0.0790892 -34071,7505:238,-58,53,0,0,0.0760099 -34072,7505:237,-57,53,0,0,0.0772532 -34073,7505:236,-56,53,0,0,0.0769315 -34074,7505:235,-55,53,0,0,0.0774291 -34075,7505:134,-54,53,0,0,0.0792316 -34076,7505:133,-53,53,0,0,0.0884072 -34077,7505:132,-52,53,0,0,0.144345 -34078,7505:131,-51,53,0,0,0.145682 -34079,7505:130,-50,53,0,0,0.149809 -34080,7504:239,-49,53,0,0,0.140505 -34081,7504:238,-48,53,0,0,0.117547 -34082,7503:132,-32,53,0,0,0.0810646 -34083,7503:131,-31,53,0,0,0.0831081 -34084,7503:130,-30,53,0,0,0.0910844 -34085,7502:239,-29,53,0,0,0.0846238 -34086,7502:238,-28,53,0,0,0.0813788 -34087,7502:237,-27,53,0,0,0.079577 -34088,7502:236,-26,53,0,0,0.0845602 -34089,7502:235,-25,53,0,0,0.123148 -34090,7502:134,-24,53,0,0,0.140729 -34091,7502:133,-23,53,0,0,0.14254 -34092,7502:132,-22,53,0,0,0.129138 -34093,7502:131,-21,53,0,0,0.118284 -34094,7502:130,-20,53,0,0,0.127415 -34095,7501:239,-19,53,0,0,0.122815 -34096,7501:238,-18,53,0,0,0.119188 -34097,7501:237,-17,53,0,0,0.117526 -34098,7501:236,-16,53,0,0,0.110048 -34099,7501:235,-15,53,0,0,0.105126 -34100,7501:134,-14,53,0,0,0.111373 -34101,7501:133,-13,53,0,0,0.111923 -34102,7501:132,-12,53,0,0,0.123303 -34103,7501:131,-11,53,0,0,0.129415 -34104,7501:130,-10,53,0,0,0.14649 -34105,7500:239,-9,53,0,0,0.157068 -34106,7500:238,-8,53,0,0,0.161791 -34107,7500:237,-7,53,0,0,0.164611 -34108,7500:236,-6,53,0,0,0.152977 -34109,7500:235,-5,53,0,0,0.160943 -34110,7500:134,-4,53,0,0,0.162993 -34111,7500:133,-3,53,0,0,0.1695 -34112,7500:132,-2,53,0,0,0.18093 -34113,7500:131,-1,53,0,0,0.193897 -34114,1500:131,0,53,0,0,0.193319 -34115,1500:131,1,53,0,0,0.198139 -34116,1500:132,2,53,0,0,0.195847 -34117,1501:130,10,53,0,0,0.154917 -34118,1501:131,11,53,0,0,0.158228 -34119,1501:132,12,53,0,0,0.147547 -34120,1501:239,19,53,0,0,0.13792 -34121,1502:130,20,53,0,0,0.140022 -34122,7517:248,-178,54,0,0,0.0765093 -34123,7517:247,-177,54,0,0,0.0767056 -34124,7517:246,-176,54,0,0,0.0768806 -34125,7517:245,-175,54,0,0,0.0769754 -34126,7517:144,-174,54,0,0,0.0770704 -34127,7517:143,-173,54,0,0,0.0769168 -34128,7517:142,-172,54,0,0,0.0765603 -34129,7517:141,-171,54,0,0,0.0763427 -34130,7517:140,-170,54,0,0,0.0762775 -34131,7516:249,-169,54,0,0,0.0762267 -34132,7516:248,-168,54,0,0,0.0762991 -34133,7509:141,-91,54,0,0,0.0779519 -34134,7509:140,-90,54,0,0,0.0780184 -34135,7508:249,-89,54,0,0,0.083532 -34136,7508:248,-88,54,0,0,0.0825851 -34137,7508:247,-87,54,0,0,0.0829908 -34138,7508:246,-86,54,0,0,0.0835555 -34139,7508:245,-85,54,0,0,0.0834063 -34140,7508:144,-84,54,0,0,0.0837288 -34141,7508:143,-83,54,0,0,0.0835634 -34142,7508:142,-82,54,0,0,0.0832336 -34143,7508:141,-81,54,0,0,0.0836737 -34144,7508:140,-80,54,0,0,0.0837446 -34145,7507:249,-79,54,0,0,0.0829596 -34146,7507:248,-78,54,0,0,0.0824918 -34147,7507:247,-77,54,0,0,0.0815635 -34148,7507:246,-76,54,0,0,0.0815017 -34149,7507:245,-75,54,0,0,0.0817252 -34150,7507:144,-74,54,0,0,0.0812713 -34151,7507:143,-73,54,0,0,0.082251 -34152,7507:142,-72,54,0,0,0.0830064 -34153,7506:249,-69,54,0,0,0.0794567 -34154,7506:248,-68,54,0,0,0.079871 -34155,7506:247,-67,54,0,0,0.0804012 -34156,7506:246,-66,54,0,0,0.0783886 -34157,7506:245,-65,54,0,0,0.0797427 -34158,7505:248,-58,54,0,0,0.0768149 -34159,7505:247,-57,54,0,0,0.077856 -34160,7505:246,-56,54,0,0,0.0771873 -34161,7505:245,-55,54,0,0,0.0770046 -34162,7505:144,-54,54,0,0,0.0771799 -34163,7505:143,-53,54,0,0,0.0770338 -34164,7505:142,-52,54,0,0,0.0849986 -34165,7505:141,-51,54,0,0,0.137188 -34166,7505:140,-50,54,0,0,0.147237 -34167,7504:249,-49,54,0,0,0.134284 -34168,7504:248,-48,54,0,0,0.108846 -34169,7503:141,-31,54,0,0,0.0772018 -34170,7503:140,-30,54,0,0,0.0777232 -34171,7502:249,-29,54,0,0,0.0769024 -34172,7502:248,-28,54,0,0,0.0765093 -34173,7502:247,-27,54,0,0,0.076386 -34174,7502:246,-26,54,0,0,0.0764732 -34175,7502:245,-25,54,0,0,0.076553 -34176,7502:144,-24,54,0,0,0.0817019 -34177,7502:143,-23,54,0,0,0.0877551 -34178,7502:142,-22,54,0,0,0.0965598 -34179,7502:141,-21,54,0,0,0.103028 -34180,7502:140,-20,54,0,0,0.095623 -34181,7501:249,-19,54,0,0,0.0998351 -34182,7501:248,-18,54,0,0,0.0981943 -34183,7501:247,-17,54,0,0,0.103123 -34184,7501:246,-16,54,0,0,0.1053 -34185,7501:245,-15,54,0,0,0.108597 -34186,7501:144,-14,54,0,0,0.112969 -34187,7501:143,-13,54,0,0,0.117739 -34188,7501:142,-12,54,0,0,0.123281 -34189,7501:141,-11,54,0,0,0.132066 -34190,7501:140,-10,54,0,0,0.14544 -34191,7500:249,-9,54,0,0,0.149652 -34192,7500:248,-8,54,0,0,0.148259 -34193,7500:247,-7,54,0,0,0.150504 -34194,7500:246,-6,54,0,0,0.154501 -34195,7500:245,-5,54,0,0,0.155335 -34196,7500:144,-4,54,0,0,0.166884 -34197,7500:143,-3,54,0,0,0.175825 -34198,7500:142,-2,54,0,0,0.19356 -34199,7500:141,-1,54,0,0,0.188212 -34200,1500:141,0,54,0,0,0.18685 -34201,1500:141,1,54,0,0,0.195782 -34202,1500:142,2,54,0,0,0.187647 -34203,1501:140,10,54,0,0,0.130414 -34204,1501:141,11,54,0,0,0.134069 -34205,7518:350,-180,55,0,0,0.0768732 -34206,7517:459,-179,55,0,0,0.0768149 -34207,7517:458,-178,55,0,0,0.0767858 -34208,7517:457,-177,55,0,0,0.0767274 -34209,7517:456,-176,55,0,0,0.0771799 -34210,7517:455,-175,55,0,0,0.0775465 -34211,7517:354,-174,55,0,0,0.07751 -34212,7517:353,-173,55,0,0,0.0772459 -34213,7517:352,-172,55,0,0,0.0772166 -34214,7517:351,-171,55,0,0,0.0768149 -34215,7517:350,-170,55,0,0,0.0763064 -34216,7509:351,-91,55,0,0,0.0787307 -34217,7509:350,-90,55,0,0,0.0832649 -34218,7508:459,-89,55,0,0,0.0833825 -34219,7508:458,-88,55,0,0,0.0819335 -34220,7508:457,-87,55,0,0,0.082282 -34221,7508:456,-86,55,0,0,0.0827176 -34222,7508:455,-85,55,0,0,0.0830768 -34223,7508:354,-84,55,0,0,0.0832023 -34224,7508:353,-83,55,0,0,0.0828347 -34225,7508:352,-82,55,0,0,0.0821271 -34226,7508:351,-81,55,0,0,0.0821037 -34227,7508:350,-80,55,0,0,0.0824683 -34228,7507:459,-79,55,0,0,0.0821271 -34229,7507:458,-78,55,0,0,0.08181 -34230,7507:457,-77,55,0,0,0.0808581 -34231,7507:456,-76,55,0,0,0.0805761 -34232,7507:455,-75,55,0,0,0.0807131 -34233,7507:354,-74,55,0,0,0.0808276 -34234,7507:352,-72,55,0,0,0.0813711 -34235,7507:351,-71,55,0,0,0.0810875 -34236,7507:350,-70,55,0,0,0.0789322 -34237,7506:459,-69,55,0,0,0.0794342 -34238,7506:458,-68,55,0,0,0.0787532 -34239,7506:457,-67,55,0,0,0.078085 -34240,7506:456,-66,55,0,0,0.0787755 -34241,7506:455,-65,55,0,0,0.0758946 -34242,7505:458,-58,55,0,0,0.0788128 -34243,7505:455,-55,55,0,0,0.0762558 -34244,7505:354,-54,55,0,0,0.0770922 -34245,7505:353,-53,55,0,0,0.077136 -34246,7505:352,-52,55,0,0,0.0817252 -34247,7505:351,-51,55,0,0,0.0992915 -34248,7505:350,-50,55,0,0,0.132231 -34249,7504:459,-49,55,0,0,0.132656 -34250,7504:458,-48,55,0,0,0.108986 -34251,7502:456,-26,55,0,0,0.0763064 -34252,7502:455,-25,55,0,0,0.0762918 -34253,7502:354,-24,55,0,0,0.0765384 -34254,7502:353,-23,55,0,0,0.0769899 -34255,7502:352,-22,55,0,0,0.0782476 -34256,7502:351,-21,55,0,0,0.0815557 -34257,7502:350,-20,55,0,0,0.0879775 -34258,7501:459,-19,55,0,0,0.0981036 -34259,7501:458,-18,55,0,0,0.101088 -34260,7501:457,-17,55,0,0,0.104471 -34261,7501:456,-16,55,0,0,0.107075 -34262,7501:455,-15,55,0,0,0.109696 -34263,7501:354,-14,55,0,0,0.112107 -34264,7501:353,-13,55,0,0,0.116686 -34265,7501:352,-12,55,0,0,0.122329 -34266,7501:351,-11,55,0,0,0.12945 -34267,7501:350,-10,55,0,0,0.137481 -34268,7500:459,-9,55,0,0,0.141202 -34269,7500:458,-8,55,0,0,0.143901 -34270,7500:457,-7,55,0,0,0.147508 -34271,7500:456,-6,55,0,0,0.154917 -34272,7500:455,-5,55,0,0,0.16556 -34273,7500:354,-4,55,0,0,0.170646 -34274,7500:353,-3,55,0,0,0.174489 -34275,7500:352,-2,55,0,0,0.186678 -34276,7500:351,-1,55,0,0,0.185434 -34277,1500:351,0,55,0,0,0.183579 -34278,1500:351,1,55,0,0,0.186866 -34279,1500:352,2,55,0,0,0.191499 -34280,1501:351,11,55,0,0,0.142666 -34281,1517:351,171,55,0,0,0.0805912 -34282,1518:350,180,55,0,0,0.0768732 -34283,7518:360,-180,56,0,0,0.0766839 -34284,7517:469,-179,56,0,0,0.0765893 -34285,7517:468,-178,56,0,0,0.0768003 -34286,7517:467,-177,56,0,0,0.0775026 -34287,7517:466,-176,56,0,0,0.0781588 -34288,7517:465,-175,56,0,0,0.0780701 -34289,7517:364,-174,56,0,0,0.0775613 -34290,7517:363,-173,56,0,0,0.0770996 -34291,7509:360,-90,56,0,0,0.0822899 -34292,7508:469,-89,56,0,0,0.0820805 -34293,7508:468,-88,56,0,0,0.0815635 -34294,7508:467,-87,56,0,0,0.0817483 -34295,7508:466,-86,56,0,0,0.0822899 -34296,7508:465,-85,56,0,0,0.0828423 -34297,7508:364,-84,56,0,0,0.0819335 -34298,7508:363,-83,56,0,0,0.081548 -34299,7508:362,-82,56,0,0,0.0815635 -34300,7508:361,-81,56,0,0,0.0813866 -34301,7508:360,-80,56,0,0,0.0814942 -34302,7507:469,-79,56,0,0,0.0815327 -34303,7507:468,-78,56,0,0,0.0808887 -34304,7507:467,-77,56,0,0,0.0796824 -34305,7507:466,-76,56,0,0,0.0777379 -34306,7507:465,-75,56,0,0,0.0791266 -34307,7507:364,-74,56,0,0,0.0784555 -34308,7507:363,-73,56,0,0,0.0785299 -34309,7507:362,-72,56,0,0,0.0803101 -34310,7507:361,-71,56,0,0,0.0795393 -34311,7506:468,-68,56,0,0,0.078218 -34312,7506:467,-67,56,0,0,0.0785446 -34313,7506:466,-66,56,0,0,0.0766839 -34314,7505:468,-58,56,0,0,0.0791717 -34315,7505:363,-53,56,0,0,0.0768585 -34316,7505:362,-52,56,0,0,0.0770849 -34317,7505:361,-51,56,0,0,0.0770922 -34318,7505:360,-50,56,0,0,0.0917501 -34319,7504:469,-49,56,0,0,0.129045 -34320,7504:468,-48,56,0,0,0.101979 -34321,7504:467,-47,56,0,0,0.0865292 -34322,7502:364,-24,56,0,0,0.0766621 -34323,7502:363,-23,56,0,0,0.0764659 -34324,7502:362,-22,56,0,0,0.0764659 -34325,7502:361,-21,56,0,0,0.0781071 -34326,7502:360,-20,56,0,0,0.0923854 -34327,7501:469,-19,56,0,0,0.10002 -34328,7501:468,-18,56,0,0,0.102658 -34329,7501:467,-17,56,0,0,0.102658 -34330,7501:466,-16,56,0,0,0.104375 -34331,7501:465,-15,56,0,0,0.109185 -34332,7501:364,-14,56,0,0,0.111923 -34333,7501:363,-13,56,0,0,0.117686 -34334,7501:362,-12,56,0,0,0.123971 -34335,7501:361,-11,56,0,0,0.127689 -34336,7501:360,-10,56,0,0,0.134188 -34337,7500:469,-9,56,0,0,0.138348 -34338,7500:468,-8,56,0,0,0.137761 -34339,7500:467,-7,56,0,0,0.142666 -34340,7500:466,-6,56,0,0,0.145913 -34341,7500:465,-5,56,0,0,0.154945 -34342,7500:364,-4,56,0,0,0.161637 -34343,7500:363,-3,56,0,0,0.173898 -34344,7500:362,-2,56,0,0,0.181829 -34345,7500:361,-1,56,0,0,0.187522 -34346,1500:361,0,56,0,0,0.183625 -34347,1500:361,1,56,0,0,0.18534 -34348,1500:362,2,56,0,0,0.173102 -34349,1501:360,10,56,0,0,0.130146 -34350,1501:361,11,56,0,0,0.151452 -34351,1501:362,12,56,0,0,0.131443 -34352,1516:465,165,56,0,0,0.0793064 -34353,1516:467,167,56,0,0,0.0784258 -34354,1516:468,168,56,0,0,0.0782255 -34355,1516:469,169,56,0,0,0.077937 -34356,1517:467,177,56,0,0,0.0772166 -34357,1517:468,178,56,0,0,0.0772018 -34358,1517:469,179,56,0,0,0.0769024 -34359,1518:360,180,56,0,0,0.0766839 -34360,7518:370,-180,57,0,0,0.0772311 -34361,7517:479,-179,57,0,0,0.0771433 -34362,7517:478,-178,57,0,0,0.0776275 -34363,7517:477,-177,57,0,0,0.0777821 -34364,7517:476,-176,57,0,0,0.077974 -34365,7517:475,-175,57,0,0,0.0784036 -34366,7517:374,-174,57,0,0,0.0776938 -34367,7517:373,-173,57,0,0,0.0769315 -34368,7517:372,-172,57,0,0,0.0762123 -34369,7517:371,-171,57,0,0,0.0758443 -34370,7509:370,-90,57,0,0,0.0795845 -34371,7508:479,-89,57,0,0,0.0813329 -34372,7508:478,-88,57,0,0,0.0808276 -34373,7508:477,-87,57,0,0,0.0812254 -34374,7508:476,-86,57,0,0,0.0818486 -34375,7508:475,-85,57,0,0,0.0820961 -34376,7508:374,-84,57,0,0,0.0811487 -34377,7508:373,-83,57,0,0,0.0808504 -34378,7508:372,-82,57,0,0,0.0811487 -34379,7508:371,-81,57,0,0,0.0811104 -34380,7508:370,-80,57,0,0,0.0810109 -34381,7507:479,-79,57,0,0,0.0808581 -34382,7507:478,-78,57,0,0,0.0805227 -34383,7507:477,-77,57,0,0,0.0788502 -34384,7507:374,-74,57,0,0,0.0785074 -34385,7507:373,-73,57,0,0,0.0784927 -34386,7507:372,-72,57,0,0,0.0778706 -34387,7507:371,-71,57,0,0,0.0777821 -34388,7507:370,-70,57,0,0,0.0783071 -34389,7506:479,-69,57,0,0,0.0779961 -34390,7505:478,-58,57,0,0,0.0765747 -34391,7505:374,-54,57,0,0,0.0768585 -34392,7505:373,-53,57,0,0,0.0769534 -34393,7505:372,-52,57,0,0,0.0767347 -34394,7505:371,-51,57,0,0,0.0771288 -34395,7505:370,-50,57,0,0,0.0793215 -34396,7504:479,-49,57,0,0,0.0895396 -34397,7504:478,-48,57,0,0,0.114346 -34398,7504:477,-47,57,0,0,0.11493 -34399,7504:476,-46,57,0,0,0.109345 -34400,7504:475,-45,57,0,0,0.102111 -34401,7502:475,-25,57,0,0,0.0780701 -34402,7502:373,-23,57,0,0,0.0764369 -34403,7502:372,-22,57,0,0,0.0764369 -34404,7502:371,-21,57,0,0,0.0768367 -34405,7502:370,-20,57,0,0,0.078011 -34406,7501:479,-19,57,0,0,0.0832023 -34407,7501:478,-18,57,0,0,0.0932853 -34408,7501:477,-17,57,0,0,0.103513 -34409,7501:476,-16,57,0,0,0.106126 -34410,7501:475,-15,57,0,0,0.106879 -34411,7501:374,-14,57,0,0,0.106087 -34412,7501:373,-13,57,0,0,0.111841 -34413,7501:372,-12,57,0,0,0.126719 -34414,7501:371,-11,57,0,0,0.129057 -34415,7501:370,-10,57,0,0,0.130881 -34416,7500:479,-9,57,0,0,0.134093 -34417,7500:478,-8,57,0,0,0.135748 -34418,7500:477,-7,57,0,0,0.13742 -34419,7500:476,-6,57,0,0,0.137456 -34420,7500:475,-5,57,0,0,0.137932 -34421,7500:374,-4,57,0,0,0.14356 -34422,7500:373,-3,57,0,0,0.174785 -34423,7500:372,-2,57,0,0,0.183117 -34424,7500:371,-1,57,0,0,0.184798 -34425,1500:371,0,57,0,0,0.184736 -34426,1500:371,1,57,0,0,0.184242 -34427,1500:372,2,57,0,0,0.188495 -34428,1501:370,10,57,0,0,0.110643 -34429,1501:371,11,57,0,0,0.144104 -34430,1501:372,12,57,0,0,0.12014 -34431,1516:475,165,57,0,0,0.0791717 -34432,1516:476,166,57,0,0,0.0789247 -34433,1516:477,167,57,0,0,0.0786936 -34434,1516:478,168,57,0,0,0.0784333 -34435,1516:479,169,57,0,0,0.0781663 -34436,1517:370,170,57,0,0,0.0780331 -34437,1517:371,171,57,0,0,0.077878 -34438,1517:372,172,57,0,0,0.0777012 -34439,1517:373,173,57,0,0,0.0775762 -34440,1517:374,174,57,0,0,0.077451 -34441,1517:475,175,57,0,0,0.0773559 -34442,1517:476,176,57,0,0,0.0772459 -34443,1517:477,177,57,0,0,0.0772385 -34444,1517:478,178,57,0,0,0.0767567 -34445,1517:479,179,57,0,0,0.0768076 -34446,1518:370,180,57,0,0,0.0772311 -34447,7518:380,-180,58,0,0,0.0771433 -34448,7517:489,-179,58,0,0,0.0770556 -34449,7517:488,-178,58,0,0,0.0767785 -34450,7517:487,-177,58,0,0,0.0762629 -34451,7517:486,-176,58,0,0,0.0760822 -34452,7517:485,-175,58,0,0,0.0765603 -34453,7517:384,-174,58,0,0,0.0772532 -34454,7517:383,-173,58,0,0,0.0775687 -34455,7517:382,-172,58,0,0,0.0767929 -34456,7517:381,-171,58,0,0,0.0760317 -34457,7508:489,-89,58,0,0,0.0779001 -34458,7508:488,-88,58,0,0,0.0815095 -34459,7508:487,-87,58,0,0,0.0803405 -34460,7508:486,-86,58,0,0,0.0806751 -34461,7508:485,-85,58,0,0,0.0806826 -34462,7508:384,-84,58,0,0,0.0803632 -34463,7508:383,-83,58,0,0,0.0807284 -34464,7508:382,-82,58,0,0,0.0807512 -34465,7508:381,-81,58,0,0,0.0805912 -34466,7508:380,-80,58,0,0,0.0802265 -34467,7507:489,-79,58,0,0,0.0799542 -34468,7507:488,-78,58,0,0,0.0797351 -34469,7507:487,-77,58,0,0,0.0782551 -34470,7507:486,-76,58,0,0,0.0785299 -34471,7507:485,-75,58,0,0,0.0784777 -34472,7507:384,-74,58,0,0,0.0771726 -34473,7507:381,-71,58,0,0,0.0776938 -34474,7507:380,-70,58,0,0,0.0774584 -34475,7506:489,-69,58,0,0,0.077819 -34476,7506:485,-65,58,0,0,0.0774217 -34477,7506:384,-64,58,0,0,0.0773559 -34478,7505:384,-54,58,0,0,0.0769534 -34479,7505:383,-53,58,0,0,0.0764586 -34480,7505:382,-52,58,0,0,0.0763571 -34481,7505:381,-51,58,0,0,0.0766548 -34482,7505:380,-50,58,0,0,0.07635 -34483,7504:489,-49,58,0,0,0.0785149 -34484,7504:488,-48,58,0,0,0.0882004 -34485,7504:487,-47,58,0,0,0.0892387 -34486,7504:384,-44,58,0,0,0.104769 -34487,7502:383,-23,58,0,0,0.0763427 -34488,7502:382,-22,58,0,0,0.0764223 -34489,7502:381,-21,58,0,0,0.0769973 -34490,7502:380,-20,58,0,0,0.0805761 -34491,7501:489,-19,58,0,0,0.0882415 -34492,7501:488,-18,58,0,0,0.092627 -34493,7501:487,-17,58,0,0,0.0944564 -34494,7501:486,-16,58,0,0,0.0981854 -34495,7501:485,-15,58,0,0,0.102092 -34496,7501:384,-14,58,0,0,0.10229 -34497,7501:383,-13,58,0,0,0.104634 -34498,7501:382,-12,58,0,0,0.115716 -34499,7501:381,-11,58,0,0,0.126515 -34500,7501:380,-10,58,0,0,0.133272 -34501,7500:489,-9,58,0,0,0.142527 -34502,7500:488,-8,58,0,0,0.143345 -34503,7500:487,-7,58,0,0,0.14521 -34504,7500:486,-6,58,0,0,0.140617 -34505,7500:485,-5,58,0,0,0.139134 -34506,7500:384,-4,58,0,0,0.158941 -34507,7500:383,-3,58,0,0,0.165673 -34508,7500:382,-2,58,0,0,0.168591 -34509,7500:381,-1,58,0,0,0.178295 -34510,1500:381,0,58,0,0,0.181554 -34511,1500:381,1,58,0,0,0.183995 -34512,1500:382,2,58,0,0,0.1748 -34513,1516:383,163,58,0,0,0.0797503 -34514,1516:384,164,58,0,0,0.0794643 -34515,1516:485,165,58,0,0,0.0791342 -34516,1516:486,166,58,0,0,0.0789099 -34517,1516:487,167,58,0,0,0.0786041 -34518,1516:488,168,58,0,0,0.0782329 -34519,1516:489,169,58,0,0,0.077878 -34520,1517:380,170,58,0,0,0.0776055 -34521,1517:381,171,58,0,0,0.0774732 -34522,1517:382,172,58,0,0,0.0773704 -34523,1517:383,173,58,0,0,0.0773192 -34524,1517:384,174,58,0,0,0.0772459 -34525,1517:485,175,58,0,0,0.077063 -34526,1517:486,176,58,0,0,0.0769242 -34527,1517:489,179,58,0,0,0.0764732 -34528,1518:380,180,58,0,0,0.0771433 -34529,7518:390,-180,59,0,0,0.0767858 -34530,7517:499,-179,59,0,0,0.0771947 -34531,7517:498,-178,59,0,0,0.0769315 -34532,7517:497,-177,59,0,0,0.0768294 -34533,7517:496,-176,59,0,0,0.0765747 -34534,7517:495,-175,59,0,0,0.0769754 -34535,7517:394,-174,59,0,0,0.0772899 -34536,7517:393,-173,59,0,0,0.0767347 -34537,7517:392,-172,59,0,0,0.0768514 -34538,7517:391,-171,59,0,0,0.0768367 -34539,7517:390,-170,59,0,0,0.0762267 -34540,7508:498,-88,59,0,0,0.0765022 -34541,7508:497,-87,59,0,0,0.0792764 -34542,7508:496,-86,59,0,0,0.0810875 -34543,7508:495,-85,59,0,0,0.0816173 -34544,7508:394,-84,59,0,0,0.0814865 -34545,7508:393,-83,59,0,0,0.0806293 -34546,7508:392,-82,59,0,0,0.0801962 -34547,7508:391,-81,59,0,0,0.0800901 -34548,7508:390,-80,59,0,0,0.079803 -34549,7507:499,-79,59,0,0,0.0790369 -34550,7507:498,-78,59,0,0,0.077878 -34551,7507:392,-72,59,0,0,0.0777747 -34552,7507:391,-71,59,0,0,0.076713 -34553,7507:390,-70,59,0,0,0.0768076 -34554,7506:499,-69,59,0,0,0.0767347 -34555,7506:498,-68,59,0,0,0.0767494 -34556,7506:497,-67,59,0,0,0.0770191 -34557,7506:496,-66,59,0,0,0.0770849 -34558,7506:495,-65,59,0,0,0.0771726 -34559,7506:394,-64,59,0,0,0.0775539 -34560,7506:393,-63,59,0,0,0.0779445 -34561,7505:495,-55,59,0,0,0.0773263 -34562,7505:394,-54,59,0,0,0.076742 -34563,7505:393,-53,59,0,0,0.0764369 -34564,7505:392,-52,59,0,0,0.0764732 -34565,7505:391,-51,59,0,0,0.0765166 -34566,7505:390,-50,59,0,0,0.0764442 -34567,7504:499,-49,59,0,0,0.0762267 -34568,7504:498,-48,59,0,0,0.0769168 -34569,7504:497,-47,59,0,0,0.0837052 -34570,7504:496,-46,59,0,0,0.0862212 -34571,7504:495,-45,59,0,0,0.105262 -34572,7502:394,-24,59,0,0,0.076524 -34573,7502:393,-23,59,0,0,0.076234 -34574,7502:392,-22,59,0,0,0.0762558 -34575,7502:391,-21,59,0,0,0.0766257 -34576,7502:390,-20,59,0,0,0.0784183 -34577,7501:499,-19,59,0,0,0.0851106 -34578,7501:498,-18,59,0,0,0.0899931 -34579,7501:497,-17,59,0,0,0.0918013 -34580,7501:496,-16,59,0,0,0.0928344 -34581,7501:495,-15,59,0,0,0.0940968 -34582,7501:394,-14,59,0,0,0.0967753 -34583,7501:393,-13,59,0,0,0.0981308 -34584,7501:392,-12,59,0,0,0.0988697 -34585,7501:391,-11,59,0,0,0.108796 -34586,7501:390,-10,59,0,0,0.12656 -34587,7500:499,-9,59,0,0,0.144777 -34588,7500:498,-8,59,0,0,0.150124 -34589,7500:497,-7,59,0,0,0.148038 -34590,7500:496,-6,59,0,0,0.146696 -34591,7500:495,-5,59,0,0,0.147779 -34592,7500:394,-4,59,0,0,0.156024 -34593,7500:393,-3,59,0,0,0.157995 -34594,7500:392,-2,59,0,0,0.166827 -34595,7500:391,-1,59,0,0,0.167528 -34596,1500:391,0,59,0,0,0.176049 -34597,1500:391,1,59,0,0,0.179276 -34598,1515:499,159,59,0,0,0.0809115 -34599,1516:390,160,59,0,0,0.0806217 -34600,1516:391,161,59,0,0,0.0801812 -34601,1516:392,162,59,0,0,0.079705 -34602,1516:393,163,59,0,0,0.0794567 -34603,1516:394,164,59,0,0,0.0792615 -34604,1516:495,165,59,0,0,0.0790668 -34605,1516:496,166,59,0,0,0.0788203 -34606,1516:497,167,59,0,0,0.0785074 -34607,1516:498,168,59,0,0,0.078218 -34608,1516:499,169,59,0,0,0.0779814 -34609,1517:390,170,59,0,0,0.077819 -34610,1517:391,171,59,0,0,0.0775981 -34611,1517:392,172,59,0,0,0.0772532 -34612,1517:393,173,59,0,0,0.0770922 -34613,1517:394,174,59,0,0,0.0770409 -34614,1517:495,175,59,0,0,0.0770046 -34615,1517:496,176,59,0,0,0.0769754 -34616,1517:497,177,59,0,0,0.0769168 -34617,1517:498,178,59,0,0,0.0768149 -34618,1517:499,179,59,0,0,0.0767274 -34619,1518:390,180,59,0,0,0.0767858 -34620,7618:100,-180,60,0,0,0.0771067 -34621,7617:209,-179,60,0,0,0.0769315 -34622,7617:208,-178,60,0,0,0.0769899 -34623,7617:207,-177,60,0,0,0.0770849 -34624,7617:206,-176,60,0,0,0.0768659 -34625,7617:205,-175,60,0,0,0.0768076 -34626,7617:104,-174,60,0,0,0.0770117 -34627,7617:103,-173,60,0,0,0.0765603 -34628,7617:102,-172,60,0,0,0.0764442 -34629,7617:101,-171,60,0,0,0.076582 -34630,7617:100,-170,60,0,0,0.0767638 -34631,7616:209,-169,60,0,0,0.0767347 -34632,7608:207,-87,60,0,0,0.0756572 -34633,7608:206,-86,60,0,0,0.0757937 -34634,7608:205,-85,60,0,0,0.0770338 -34635,7608:104,-84,60,0,0,0.0787009 -34636,7608:103,-83,60,0,0,0.079562 -34637,7608:102,-82,60,0,0,0.0809726 -34638,7608:101,-81,60,0,0,0.0803405 -34639,7608:100,-80,60,0,0,0.079856 -34640,7607:209,-79,60,0,0,0.0783961 -34641,7607:102,-72,60,0,0,0.0778042 -34642,7607:101,-71,60,0,0,0.0771726 -34643,7607:100,-70,60,0,0,0.0765022 -34644,7606:209,-69,60,0,0,0.0764876 -34645,7606:208,-68,60,0,0,0.0764803 -34646,7606:207,-67,60,0,0,0.0764659 -34647,7606:206,-66,60,0,0,0.0764513 -34648,7606:205,-65,60,0,0,0.0765384 -34649,7606:104,-64,60,0,0,0.0768514 -34650,7606:103,-63,60,0,0,0.0773118 -34651,7606:102,-62,60,0,0,0.077937 -34652,7606:101,-61,60,0,0,0.07827 -34653,7605:206,-56,60,0,0,0.0779519 -34654,7605:205,-55,60,0,0,0.0778485 -34655,7605:104,-54,60,0,0,0.0768806 -34656,7605:103,-53,60,0,0,0.0766328 -34657,7605:102,-52,60,0,0,0.0765166 -34658,7605:101,-51,60,0,0,0.0763716 -34659,7605:100,-50,60,0,0,0.0763643 -34660,7604:209,-49,60,0,0,0.0763354 -34661,7604:208,-48,60,0,0,0.0764296 -34662,7604:207,-47,60,0,0,0.0769097 -34663,7604:206,-46,60,0,0,0.0779889 -34664,7604:205,-45,60,0,0,0.0823441 -34665,7604:104,-44,60,0,0,0.0925493 -34666,7602:103,-23,60,0,0,0.0762918 -34667,7602:102,-22,60,0,0,0.076046 -34668,7602:101,-21,60,0,0,0.0762629 -34669,7602:100,-20,60,0,0,0.0766839 -34670,7601:209,-19,60,0,0,0.0769534 -34671,7601:208,-18,60,0,0,0.0778634 -34672,7601:207,-17,60,0,0,0.0801736 -34673,7601:206,-16,60,0,0,0.0833825 -34674,7601:205,-15,60,0,0,0.0905498 -34675,7601:104,-14,60,0,0,0.0955341 -34676,7601:103,-13,60,0,0,0.0953213 -34677,7601:102,-12,60,0,0,0.0949144 -34678,7601:101,-11,60,0,0,0.0957741 -34679,7601:100,-10,60,0,0,0.102583 -34680,7600:209,-9,60,0,0,0.126549 -34681,7600:208,-8,60,0,0,0.137761 -34682,7600:207,-7,60,0,0,0.150006 -34683,7600:206,-6,60,0,0,0.151611 -34684,7600:205,-5,60,0,0,0.151136 -34685,7600:104,-4,60,0,0,0.150215 -34686,7600:103,-3,60,0,0,0.16104 -34687,7600:102,-2,60,0,0,0.163189 -34688,7600:101,-1,60,0,0,0.163287 -34689,1600:101,0,60,0,0,0.172926 -34690,1600:101,1,60,0,0,0.17375 -34691,1600:102,2,60,0,0,0.179745 -34692,1615:209,159,60,0,0,0.0802492 -34693,1616:100,160,60,0,0,0.0799692 -34694,1616:101,161,60,0,0,0.0797277 -34695,1616:102,162,60,0,0,0.0795995 -34696,1616:103,163,60,0,0,0.0794491 -34697,1616:104,164,60,0,0,0.0792464 -34698,1616:205,165,60,0,0,0.0790145 -34699,1616:206,166,60,0,0,0.0787084 -34700,1616:207,167,60,0,0,0.078359 -34701,1616:208,168,60,0,0,0.0780405 -34702,1616:209,169,60,0,0,0.0777675 -34703,1617:100,170,60,0,0,0.077679 -34704,1617:101,171,60,0,0,0.0775907 -34705,1617:102,172,60,0,0,0.0773263 -34706,1617:103,173,60,0,0,0.0771141 -34707,1617:104,174,60,0,0,0.0769825 -34708,1617:205,175,60,0,0,0.0769973 -34709,1617:206,176,60,0,0,0.0769168 -34710,1617:207,177,60,0,0,0.0768441 -34711,1617:208,178,60,0,0,0.0767785 -34712,1617:209,179,60,0,0,0.0766912 -34713,1618:100,180,60,0,0,0.0771067 -34714,7618:110,-180,61,0,0,0.0768877 -34715,7617:219,-179,61,0,0,0.0770556 -34716,7617:218,-178,61,0,0,0.0769754 -34717,7617:217,-177,61,0,0,0.0769681 -34718,7617:216,-176,61,0,0,0.0771141 -34719,7617:215,-175,61,0,0,0.0768659 -34720,7617:114,-174,61,0,0,0.0767567 -34721,7617:113,-173,61,0,0,0.0765457 -34722,7617:112,-172,61,0,0,0.0762558 -34723,7617:111,-171,61,0,0,0.076415 -34724,7617:110,-170,61,0,0,0.0772166 -34725,7616:219,-169,61,0,0,0.0773337 -34726,7616:218,-168,61,0,0,0.0772532 -34727,7616:217,-167,61,0,0,0.0762629 -34728,7616:216,-166,61,0,0,0.0762848 -34729,7608:112,-82,61,0,0,0.0775613 -34730,7608:111,-81,61,0,0,0.0794868 -34731,7608:110,-80,61,0,0,0.0787532 -34732,7607:219,-79,61,0,0,0.0790444 -34733,7607:218,-78,61,0,0,0.0794943 -34734,7607:217,-77,61,0,0,0.0773485 -34735,7607:113,-73,61,0,0,0.0775539 -34736,7607:112,-72,61,0,0,0.0776127 -34737,7607:111,-71,61,0,0,0.0772166 -34738,7607:110,-70,61,0,0,0.0770849 -34739,7606:219,-69,61,0,0,0.0768514 -34740,7606:218,-68,61,0,0,0.0766328 -34741,7606:217,-67,61,0,0,0.0767638 -34742,7606:216,-66,61,0,0,0.0766839 -34743,7606:215,-65,61,0,0,0.0764296 -34744,7606:111,-61,61,0,0,0.0781884 -34745,7605:114,-54,61,0,0,0.0768659 -34746,7605:113,-53,61,0,0,0.0765022 -34747,7605:112,-52,61,0,0,0.0762918 -34748,7605:111,-51,61,0,0,0.0764369 -34749,7605:110,-50,61,0,0,0.0762848 -34750,7604:219,-49,61,0,0,0.0763427 -34751,7604:218,-48,61,0,0,0.0777232 -34752,7604:217,-47,61,0,0,0.0815095 -34753,7604:216,-46,61,0,0,0.0860592 -34754,7602:112,-22,61,0,0,0.0761256 -34755,7602:111,-21,61,0,0,0.0761183 -34756,7602:110,-20,61,0,0,0.0765893 -34757,7601:219,-19,61,0,0,0.077224 -34758,7601:218,-18,61,0,0,0.0792691 -34759,7601:217,-17,61,0,0,0.0844409 -34760,7601:216,-16,61,0,0,0.0899846 -34761,7601:215,-15,61,0,0,0.0925838 -34762,7601:114,-14,61,0,0,0.094237 -34763,7601:113,-13,61,0,0,0.0932593 -34764,7601:112,-12,61,0,0,0.0927394 -34765,7601:111,-11,61,0,0,0.0931811 -34766,7601:110,-10,61,0,0,0.0948438 -34767,7600:219,-9,61,0,0,0.119112 -34768,7600:218,-8,61,0,0,0.140592 -34769,7600:217,-7,61,0,0,0.139824 -34770,7600:216,-6,61,0,0,0.148908 -34771,7600:215,-5,61,0,0,0.150229 -34772,7600:114,-4,61,0,0,0.152565 -34773,7600:113,-3,61,0,0,0.156105 -34774,7600:112,-2,61,0,0,0.153898 -34775,7600:111,-1,61,0,0,0.163161 -34776,1600:111,0,61,0,0,0.175959 -34777,1600:111,1,61,0,0,0.176183 -34778,1600:112,2,61,0,0,0.17979 -34779,1600:113,3,61,0,0,0.148817 -34780,1601:219,19,61,0,0,0.0927913 -34781,1602:110,20,61,0,0,0.094237 -34782,1602:112,22,61,0,0,0.0881838 -34783,1615:110,150,61,0,0,0.0812332 -34784,1615:111,151,61,0,0,0.0811104 -34785,1615:112,152,61,0,0,0.0810415 -34786,1615:216,156,61,0,0,0.0806751 -34787,1615:217,157,61,0,0,0.0804696 -34788,1615:218,158,61,0,0,0.0801736 -34789,1615:219,159,61,0,0,0.079939 -34790,1616:110,160,61,0,0,0.0798408 -34791,1616:111,161,61,0,0,0.0797653 -34792,1616:112,162,61,0,0,0.0796222 -34793,1616:113,163,61,0,0,0.0794643 -34794,1616:114,164,61,0,0,0.0789771 -34795,1616:215,165,61,0,0,0.0785002 -34796,1616:216,166,61,0,0,0.0780184 -34797,1616:217,167,61,0,0,0.0776127 -34798,1616:218,168,61,0,0,0.0774071 -34799,1616:219,169,61,0,0,0.0772678 -34800,1617:110,170,61,0,0,0.0772018 -34801,1617:111,171,61,0,0,0.0771654 -34802,1617:112,172,61,0,0,0.0770922 -34803,1617:113,173,61,0,0,0.0769754 -34804,1617:114,174,61,0,0,0.0768659 -34805,1617:215,175,61,0,0,0.0767274 -34806,1617:216,176,61,0,0,0.0766184 -34807,1617:217,177,61,0,0,0.0764803 -34808,1617:218,178,61,0,0,0.0764079 -34809,1617:219,179,61,0,0,0.0765603 -34810,1618:110,180,61,0,0,0.0768877 -34811,7618:120,-180,62,0,0,0.0766839 -34812,7617:229,-179,62,0,0,0.0765967 -34813,7617:228,-178,62,0,0,0.076582 -34814,7617:227,-177,62,0,0,0.0769754 -34815,7617:226,-176,62,0,0,0.0771947 -34816,7617:225,-175,62,0,0,0.0770338 -34817,7617:124,-174,62,0,0,0.0773852 -34818,7617:123,-173,62,0,0,0.0774291 -34819,7617:122,-172,62,0,0,0.0770046 -34820,7617:121,-171,62,0,0,0.0768732 -34821,7617:120,-170,62,0,0,0.0770191 -34822,7616:229,-169,62,0,0,0.0771873 -34823,7616:228,-168,62,0,0,0.0769462 -34824,7616:227,-167,62,0,0,0.0770338 -34825,7616:226,-166,62,0,0,0.0772751 -34826,7616:225,-165,62,0,0,0.0769462 -34827,7616:124,-164,62,0,0,0.0767929 -34828,7616:123,-163,62,0,0,0.0768076 -34829,7616:122,-162,62,0,0,0.0769024 -34830,7616:121,-161,62,0,0,0.0769462 -34831,7616:120,-160,62,0,0,0.076742 -34832,7615:229,-159,62,0,0,0.0770191 -34833,7607:226,-76,62,0,0,0.0766475 -34834,7607:123,-73,62,0,0,0.0777084 -34835,7607:121,-71,62,0,0,0.0768221 -34836,7607:120,-70,62,0,0,0.0771433 -34837,7606:229,-69,62,0,0,0.0768441 -34838,7606:228,-68,62,0,0,0.076742 -34839,7606:227,-67,62,0,0,0.0767567 -34840,7606:226,-66,62,0,0,0.0768732 -34841,7606:225,-65,62,0,0,0.0764586 -34842,7606:124,-64,62,0,0,0.0765457 -34843,7606:122,-62,62,0,0,0.0765457 -34844,7605:124,-54,62,0,0,0.0767274 -34845,7605:123,-53,62,0,0,0.0765457 -34846,7605:122,-52,62,0,0,0.0762485 -34847,7605:121,-51,62,0,0,0.0764006 -34848,7605:120,-50,62,0,0,0.0765384 -34849,7604:229,-49,62,0,0,0.0763933 -34850,7604:228,-48,62,0,0,0.0773559 -34851,7604:227,-47,62,0,0,0.0796673 -34852,7604:226,-46,62,0,0,0.081448 -34853,7604:225,-45,62,0,0,0.0844649 -34854,7602:121,-21,62,0,0,0.076039 -34855,7602:120,-20,62,0,0,0.0762123 -34856,7601:229,-19,62,0,0,0.0773118 -34857,7601:228,-18,62,0,0,0.0811029 -34858,7601:227,-17,62,0,0,0.0848709 -34859,7601:226,-16,62,0,0,0.0862291 -34860,7601:225,-15,62,0,0,0.087173 -34861,7601:124,-14,62,0,0,0.0886723 -34862,7601:123,-13,62,0,0,0.0909143 -34863,7601:122,-12,62,0,0,0.0928777 -34864,7601:121,-11,62,0,0,0.0933288 -34865,7601:120,-10,62,0,0,0.0938432 -34866,7600:229,-9,62,0,0,0.0978763 -34867,7600:228,-8,62,0,0,0.117942 -34868,7600:227,-7,62,0,0,0.135591 -34869,7600:226,-6,62,0,0,0.140035 -34870,7600:225,-5,62,0,0,0.15327 -34871,7600:124,-4,62,0,0,0.150964 -34872,7600:123,-3,62,0,0,0.151942 -34873,7600:122,-2,62,0,0,0.159891 -34874,7600:121,-1,62,0,0,0.167313 -34875,1600:121,0,62,0,0,0.177244 -34876,1600:121,1,62,0,0,0.180412 -34877,1600:122,2,62,0,0,0.177499 -34878,1600:123,3,62,0,0,0.179503 -34879,1600:124,4,62,0,0,0.177859 -34880,1601:226,16,62,0,0,0.0957918 -34881,1601:227,17,62,0,0,0.102706 -34882,1601:228,18,62,0,0,0.0983127 -34883,1601:229,19,62,0,0,0.0982763 -34884,1602:120,20,62,0,0,0.104087 -34885,1602:121,21,62,0,0,0.10448 -34886,1614:226,146,62,0,0,0.0821581 -34887,1614:227,147,62,0,0,0.0819182 -34888,1614:229,149,62,0,0,0.0811871 -34889,1615:120,150,62,0,0,0.0805531 -34890,1615:121,151,62,0,0,0.0802492 -34891,1615:122,152,62,0,0,0.0801509 -34892,1615:123,153,62,0,0,0.0802872 -34893,1615:124,154,62,0,0,0.0807207 -34894,1615:226,156,62,0,0,0.0807056 -34895,1615:227,157,62,0,0,0.0805531 -34896,1615:228,158,62,0,0,0.0803025 -34897,1615:229,159,62,0,0,0.0800525 -34898,1616:120,160,62,0,0,0.07969 -34899,1616:121,161,62,0,0,0.0793666 -34900,1616:122,162,62,0,0,0.0792165 -34901,1616:123,163,62,0,0,0.0787009 -34902,1616:124,164,62,0,0,0.0781514 -34903,1616:225,165,62,0,0,0.0777232 -34904,1616:226,166,62,0,0,0.0774365 -34905,1616:227,167,62,0,0,0.0772166 -34906,1616:228,168,62,0,0,0.077063 -34907,1616:229,169,62,0,0,0.0769534 -34908,1617:120,170,62,0,0,0.0768732 -34909,1617:121,171,62,0,0,0.0768221 -34910,1617:122,172,62,0,0,0.0767858 -34911,1617:123,173,62,0,0,0.0767567 -34912,1617:124,174,62,0,0,0.0767203 -34913,1617:225,175,62,0,0,0.0766839 -34914,1617:226,176,62,0,0,0.0766401 -34915,1617:227,177,62,0,0,0.0765967 -34916,1617:228,178,62,0,0,0.076415 -34917,1617:229,179,62,0,0,0.0763716 -34918,1618:120,180,62,0,0,0.0766839 -34919,7618:130,-180,63,0,0,0.0764006 -34920,7617:239,-179,63,0,0,0.0763427 -34921,7617:238,-178,63,0,0,0.0765676 -34922,7617:237,-177,63,0,0,0.077224 -34923,7617:236,-176,63,0,0,0.0773924 -34924,7617:235,-175,63,0,0,0.077297 -34925,7617:134,-174,63,0,0,0.0771507 -34926,7617:133,-173,63,0,0,0.0773263 -34927,7617:132,-172,63,0,0,0.0774584 -34928,7617:131,-171,63,0,0,0.077224 -34929,7617:130,-170,63,0,0,0.0770996 -34930,7616:239,-169,63,0,0,0.0770264 -34931,7616:238,-168,63,0,0,0.0767929 -34932,7616:237,-167,63,0,0,0.0767929 -34933,7616:236,-166,63,0,0,0.0769315 -34934,7616:235,-165,63,0,0,0.077224 -34935,7616:134,-164,63,0,0,0.0771067 -34936,7616:133,-163,63,0,0,0.0772751 -34937,7616:132,-162,63,0,0,0.0773559 -34938,7616:131,-161,63,0,0,0.0773924 -34939,7616:130,-160,63,0,0,0.0773411 -34940,7615:239,-159,63,0,0,0.0773118 -34941,7615:238,-158,63,0,0,0.0773192 -34942,7615:237,-157,63,0,0,0.0773704 -34943,7615:236,-156,63,0,0,0.0773998 -34944,7615:235,-155,63,0,0,0.0775026 -34945,7615:133,-153,63,0,0,0.0783218 -34946,7607:133,-73,63,0,0,0.0780035 -34947,7606:237,-67,63,0,0,0.0767274 -34948,7606:236,-66,63,0,0,0.0768076 -34949,7606:235,-65,63,0,0,0.0763137 -34950,7606:134,-64,63,0,0,0.0763137 -34951,7606:133,-63,63,0,0,0.0767274 -34952,7606:132,-62,63,0,0,0.0762775 -34953,7606:131,-61,63,0,0,0.0771799 -34954,7605:134,-54,63,0,0,0.076713 -34955,7605:133,-53,63,0,0,0.0762413 -34956,7605:132,-52,63,0,0,0.0760606 -34957,7605:131,-51,63,0,0,0.0762267 -34958,7605:130,-50,63,0,0,0.076386 -34959,7604:239,-49,63,0,0,0.076205 -34960,7604:238,-48,63,0,0,0.0762775 -34961,7604:237,-47,63,0,0,0.0784555 -34962,7604:236,-46,63,0,0,0.0791566 -34963,7604:235,-45,63,0,0,0.0782775 -34964,7604:134,-44,63,0,0,0.0770996 -34965,7602:132,-22,63,0,0,0.0762123 -34966,7602:131,-21,63,0,0,0.0761545 -34967,7602:130,-20,63,0,0,0.0762558 -34968,7601:239,-19,63,0,0,0.0759811 -34969,7601:238,-18,63,0,0,0.0771433 -34970,7601:237,-17,63,0,0,0.0854633 -34971,7601:236,-16,63,0,0,0.093103 -34972,7601:235,-15,63,0,0,0.08764 -34973,7601:134,-14,63,0,0,0.0888884 -34974,7601:133,-13,63,0,0,0.091212 -34975,7601:132,-12,63,0,0,0.0926961 -34976,7601:131,-11,63,0,0,0.094395 -34977,7601:130,-10,63,0,0,0.0939392 -34978,7600:239,-9,63,0,0,0.0994388 -34979,7600:238,-8,63,0,0,0.124676 -34980,7600:237,-7,63,0,0,0.147301 -34981,7600:236,-6,63,0,0,0.151743 -34982,7600:235,-5,63,0,0,0.1543 -34983,7600:134,-4,63,0,0,0.163329 -34984,7600:133,-3,63,0,0,0.168246 -34985,7600:132,-2,63,0,0,0.173147 -34986,7600:131,-1,63,0,0,0.176929 -34987,1600:131,0,63,0,0,0.175127 -34988,1600:131,1,63,0,0,0.174252 -34989,1600:132,2,63,0,0,0.173102 -34990,1600:133,3,63,0,0,0.1679 -34991,1600:134,4,63,0,0,0.176257 -34992,1600:235,5,63,0,0,0.165219 -34993,1602:130,20,63,0,0,0.109456 -34994,1602:131,21,63,0,0,0.10735 -34995,1614:237,147,63,0,0,0.0827254 -34996,1614:238,148,63,0,0,0.0820496 -34997,1614:239,149,63,0,0,0.0812254 -34998,1615:130,150,63,0,0,0.0808122 -34999,1615:131,151,63,0,0,0.0803479 -35000,1615:132,152,63,0,0,0.0801204 -35001,1615:133,153,63,0,0,0.0801812 -35002,1615:134,154,63,0,0,0.0804392 -35003,1615:235,155,63,0,0,0.0803479 -35004,1615:236,156,63,0,0,0.0803935 -35005,1615:237,157,63,0,0,0.0803101 -35006,1615:238,158,63,0,0,0.0798256 -35007,1616:131,161,63,0,0,0.0787755 -35008,1616:132,162,63,0,0,0.0782255 -35009,1616:133,163,63,0,0,0.0778634 -35010,1616:134,164,63,0,0,0.0776127 -35011,1616:235,165,63,0,0,0.0773485 -35012,1616:236,166,63,0,0,0.0770996 -35013,1616:237,167,63,0,0,0.0769024 -35014,1616:238,168,63,0,0,0.0767347 -35015,1616:239,169,63,0,0,0.0765967 -35016,1617:130,170,63,0,0,0.0765457 -35017,1617:131,171,63,0,0,0.0765384 -35018,1617:132,172,63,0,0,0.0766184 -35019,1617:133,173,63,0,0,0.0766328 -35020,1617:134,174,63,0,0,0.0765967 -35021,1617:235,175,63,0,0,0.0765603 -35022,1617:236,176,63,0,0,0.0765457 -35023,1617:237,177,63,0,0,0.0765384 -35024,1617:238,178,63,0,0,0.0765384 -35025,1617:239,179,63,0,0,0.0764803 -35026,1618:130,180,63,0,0,0.0764006 -35027,7618:140,-180,64,0,0,0.0764369 -35028,7617:249,-179,64,0,0,0.0763643 -35029,7617:248,-178,64,0,0,0.076386 -35030,7617:247,-177,64,0,0,0.0767347 -35031,7617:246,-176,64,0,0,0.0765384 -35032,7617:245,-175,64,0,0,0.0767274 -35033,7617:144,-174,64,0,0,0.0771141 -35034,7617:143,-173,64,0,0,0.0772166 -35035,7617:142,-172,64,0,0,0.0769825 -35036,7617:141,-171,64,0,0,0.0767274 -35037,7617:140,-170,64,0,0,0.076582 -35038,7616:249,-169,64,0,0,0.0765967 -35039,7616:248,-168,64,0,0,0.0766401 -35040,7616:247,-167,64,0,0,0.0766621 -35041,7616:246,-166,64,0,0,0.0766765 -35042,7616:245,-165,64,0,0,0.0767347 -35043,7616:144,-164,64,0,0,0.0766765 -35044,7616:143,-163,64,0,0,0.0767494 -35045,7616:142,-162,64,0,0,0.0767858 -35046,7616:141,-161,64,0,0,0.0769315 -35047,7616:140,-160,64,0,0,0.0770409 -35048,7615:249,-159,64,0,0,0.0770191 -35049,7615:248,-158,64,0,0,0.0768514 -35050,7615:247,-157,64,0,0,0.076742 -35051,7615:246,-156,64,0,0,0.0766475 -35052,7615:245,-155,64,0,0,0.0767347 -35053,7615:144,-154,64,0,0,0.0772311 -35054,7615:143,-153,64,0,0,0.0774365 -35055,7615:142,-152,64,0,0,0.0785446 -35056,7606:247,-67,64,0,0,0.0763354 -35057,7606:246,-66,64,0,0,0.0765022 -35058,7606:245,-65,64,0,0,0.0768441 -35059,7606:144,-64,64,0,0,0.076524 -35060,7606:142,-62,64,0,0,0.0765457 -35061,7605:245,-55,64,0,0,0.0766765 -35062,7605:144,-54,64,0,0,0.0764586 -35063,7605:143,-53,64,0,0,0.0761111 -35064,7605:142,-52,64,0,0,0.0759595 -35065,7605:141,-51,64,0,0,0.07614 -35066,7605:140,-50,64,0,0,0.0763281 -35067,7604:249,-49,64,0,0,0.0761978 -35068,7604:248,-48,64,0,0,0.0760679 -35069,7604:247,-47,64,0,0,0.0766548 -35070,7604:246,-46,64,0,0,0.0767638 -35071,7604:245,-45,64,0,0,0.0774071 -35072,7604:144,-44,64,0,0,0.0777158 -35073,7602:143,-23,64,0,0,0.0766038 -35074,7602:141,-21,64,0,0,0.0762702 -35075,7602:140,-20,64,0,0,0.0760895 -35076,7601:249,-19,64,0,0,0.0759234 -35077,7601:248,-18,64,0,0,0.0760317 -35078,7601:247,-17,64,0,0,0.0765603 -35079,7601:246,-16,64,0,0,0.0865699 -35080,7601:245,-15,64,0,0,0.0984587 -35081,7601:144,-14,64,0,0,0.0918614 -35082,7601:143,-13,64,0,0,0.101772 -35083,7601:142,-12,64,0,0,0.104039 -35084,7601:141,-11,64,0,0,0.103934 -35085,7601:140,-10,64,0,0,0.101706 -35086,7600:249,-9,64,0,0,0.112548 -35087,7600:248,-8,64,0,0,0.130437 -35088,7600:247,-7,64,0,0,0.138924 -35089,7600:246,-6,64,0,0,0.147689 -35090,7600:245,-5,64,0,0,0.14712 -35091,7600:144,-4,64,0,0,0.157886 -35092,7600:143,-3,64,0,0,0.171082 -35093,7600:142,-2,64,0,0,0.160818 -35094,7600:141,-1,64,0,0,0.163301 -35095,1600:141,0,64,0,0,0.167313 -35096,1600:141,1,64,0,0,0.166755 -35097,1600:142,2,64,0,0,0.160596 -35098,1600:143,3,64,0,0,0.163273 -35099,1600:144,4,64,0,0,0.167929 -35100,1600:245,5,64,0,0,0.174134 -35101,1600:246,6,64,0,0,0.172442 -35102,1601:140,10,64,0,0,0.160915 -35103,1602:141,21,64,0,0,0.104259 -35104,1614:248,148,64,0,0,0.0816251 -35105,1614:249,149,64,0,0,0.0802721 -35106,1615:140,150,64,0,0,0.0800599 -35107,1615:141,151,64,0,0,0.0803708 -35108,1615:142,152,64,0,0,0.0799088 -35109,1615:143,153,64,0,0,0.0797277 -35110,1615:248,158,64,0,0,0.0788053 -35111,1615:249,159,64,0,0,0.0786116 -35112,1616:140,160,64,0,0,0.0785446 -35113,1616:141,161,64,0,0,0.0782922 -35114,1616:142,162,64,0,0,0.0777747 -35115,1616:143,163,64,0,0,0.0772825 -35116,1616:144,164,64,0,0,0.0770775 -35117,1616:245,165,64,0,0,0.0769168 -35118,1616:246,166,64,0,0,0.0766621 -35119,1616:247,167,64,0,0,0.076415 -35120,1616:248,168,64,0,0,0.076234 -35121,1616:249,169,64,0,0,0.0761907 -35122,1617:140,170,64,0,0,0.0762702 -35123,1617:141,171,64,0,0,0.0763208 -35124,1617:142,172,64,0,0,0.0763643 -35125,1617:143,173,64,0,0,0.076415 -35126,1617:144,174,64,0,0,0.0764442 -35127,1617:245,175,64,0,0,0.0764659 -35128,1617:246,176,64,0,0,0.0765166 -35129,1617:247,177,64,0,0,0.0765313 -35130,1617:248,178,64,0,0,0.076524 -35131,1617:249,179,64,0,0,0.0764876 -35132,1618:140,180,64,0,0,0.0764369 -35133,7618:350,-180,65,0,0,0.0763643 -35134,7617:459,-179,65,0,0,0.0763281 -35135,7617:458,-178,65,0,0,0.0762702 -35136,7617:457,-177,65,0,0,0.0762702 -35137,7617:456,-176,65,0,0,0.0762558 -35138,7617:455,-175,65,0,0,0.0765893 -35139,7617:354,-174,65,0,0,0.0768149 -35140,7617:353,-173,65,0,0,0.0767858 -35141,7617:352,-172,65,0,0,0.0766184 -35142,7617:351,-171,65,0,0,0.0764586 -35143,7617:350,-170,65,0,0,0.0765384 -35144,7616:459,-169,65,0,0,0.076713 -35145,7616:458,-168,65,0,0,0.0767494 -35146,7616:457,-167,65,0,0,0.0766184 -35147,7616:456,-166,65,0,0,0.0766548 -35148,7616:455,-165,65,0,0,0.0766912 -35149,7616:354,-164,65,0,0,0.0767494 -35150,7616:353,-163,65,0,0,0.0767638 -35151,7616:352,-162,65,0,0,0.0768003 -35152,7616:351,-161,65,0,0,0.0766983 -35153,7616:350,-160,65,0,0,0.0767494 -35154,7615:459,-159,65,0,0,0.0766983 -35155,7615:458,-158,65,0,0,0.0765166 -35156,7615:457,-157,65,0,0,0.0764006 -35157,7615:456,-156,65,0,0,0.076386 -35158,7615:455,-155,65,0,0,0.0765022 -35159,7615:354,-154,65,0,0,0.0769168 -35160,7615:353,-153,65,0,0,0.0771433 -35161,7615:352,-152,65,0,0,0.0776127 -35162,7606:354,-64,65,0,0,0.0767567 -35163,7606:351,-61,65,0,0,0.0768221 -35164,7605:456,-56,65,0,0,0.0767274 -35165,7605:455,-55,65,0,0,0.0768003 -35166,7605:354,-54,65,0,0,0.0764803 -35167,7605:353,-53,65,0,0,0.0760317 -35168,7605:352,-52,65,0,0,0.0761834 -35169,7605:351,-51,65,0,0,0.0762629 -35170,7605:350,-50,65,0,0,0.0763064 -35171,7604:459,-49,65,0,0,0.0762485 -35172,7604:458,-48,65,0,0,0.076039 -35173,7604:457,-47,65,0,0,0.0760317 -35174,7604:456,-46,65,0,0,0.0761978 -35175,7604:455,-45,65,0,0,0.0763571 -35176,7604:354,-44,65,0,0,0.0768076 -35177,7604:353,-43,65,0,0,0.0755352 -35178,7602:351,-21,65,0,0,0.076234 -35179,7602:350,-20,65,0,0,0.0760099 -35180,7601:459,-19,65,0,0,0.0759379 -35181,7601:458,-18,65,0,0,0.0759595 -35182,7601:457,-17,65,0,0,0.0760749 -35183,7601:456,-16,65,0,0,0.0771141 -35184,7601:455,-15,65,0,0,0.0997334 -35185,7601:354,-14,65,0,0,0.112219 -35186,7601:353,-13,65,0,0,0.107311 -35187,7601:352,-12,65,0,0,0.104808 -35188,7601:351,-11,65,0,0,0.10738 -35189,7601:350,-10,65,0,0,0.117632 -35190,7600:459,-9,65,0,0,0.125102 -35191,7600:458,-8,65,0,0,0.130484 -35192,7600:457,-7,65,0,0,0.138164 -35193,7600:456,-6,65,0,0,0.150557 -35194,7600:455,-5,65,0,0,0.154246 -35195,7600:354,-4,65,0,0,0.159766 -35196,7600:353,-3,65,0,0,0.158762 -35197,7600:352,-2,65,0,0,0.139985 -35198,7600:351,-1,65,0,0,0.13863 -35199,1600:351,0,65,0,0,0.131842 -35200,1600:351,1,65,0,0,0.13996 -35201,1600:352,2,65,0,0,0.151044 -35202,1600:353,3,65,0,0,0.15715 -35203,1600:354,4,65,0,0,0.153177 -35204,1600:455,5,65,0,0,0.164399 -35205,1600:456,6,65,0,0,0.16347 -35206,1600:457,7,65,0,0,0.161456 -35207,1600:458,8,65,0,0,0.161777 -35208,1600:459,9,65,0,0,0.16637 -35209,1601:350,10,65,0,0,0.162111 -35210,1601:351,11,65,0,0,0.159546 -35211,1601:352,12,65,0,0,0.156837 -35212,1601:353,13,65,0,0,0.151875 -35213,1602:350,20,65,0,0,0.104759 -35214,1602:351,21,65,0,0,0.0974781 -35215,1614:457,147,65,0,0,0.0811335 -35216,1614:458,148,65,0,0,0.079705 -35217,1614:459,149,65,0,0,0.0790967 -35218,1615:350,150,65,0,0,0.0787905 -35219,1615:351,151,65,0,0,0.079532 -35220,1615:352,152,65,0,0,0.079705 -35221,1615:353,153,65,0,0,0.0795469 -35222,1615:457,157,65,0,0,0.0783665 -35223,1615:458,158,65,0,0,0.0781737 -35224,1615:459,159,65,0,0,0.0780184 -35225,1616:350,160,65,0,0,0.0777232 -35226,1616:351,161,65,0,0,0.0774145 -35227,1616:352,162,65,0,0,0.0771067 -35228,1616:353,163,65,0,0,0.0768514 -35229,1616:354,164,65,0,0,0.0766111 -35230,1616:455,165,65,0,0,0.076386 -35231,1616:456,166,65,0,0,0.0761907 -35232,1616:457,167,65,0,0,0.0760533 -35233,1616:458,168,65,0,0,0.0760749 -35234,1616:459,169,65,0,0,0.07614 -35235,1617:350,170,65,0,0,0.0762123 -35236,1617:351,171,65,0,0,0.0762775 -35237,1617:352,172,65,0,0,0.07635 -35238,1617:353,173,65,0,0,0.0764079 -35239,1617:354,174,65,0,0,0.0764732 -35240,1617:455,175,65,0,0,0.0765022 -35241,1617:456,176,65,0,0,0.0765022 -35242,1617:457,177,65,0,0,0.0765093 -35243,1617:458,178,65,0,0,0.0764659 -35244,1617:459,179,65,0,0,0.0764296 -35245,1618:350,180,65,0,0,0.0763643 -35246,7618:360,-180,66,0,0,0.0764223 -35247,7617:469,-179,66,0,0,0.0763571 -35248,7617:468,-178,66,0,0,0.0763208 -35249,7617:467,-177,66,0,0,0.0763064 -35250,7617:466,-176,66,0,0,0.0762991 -35251,7617:465,-175,66,0,0,0.0764732 -35252,7617:364,-174,66,0,0,0.0765457 -35253,7617:363,-173,66,0,0,0.076582 -35254,7617:362,-172,66,0,0,0.0765676 -35255,7617:361,-171,66,0,0,0.0765967 -35256,7617:360,-170,66,0,0,0.0766839 -35257,7616:469,-169,66,0,0,0.0766839 -35258,7616:468,-168,66,0,0,0.0768149 -35259,7616:467,-167,66,0,0,0.0768732 -35260,7616:466,-166,66,0,0,0.0768732 -35261,7616:465,-165,66,0,0,0.0768877 -35262,7616:364,-164,66,0,0,0.0769607 -35263,7616:363,-163,66,0,0,0.0770117 -35264,7616:362,-162,66,0,0,0.0769462 -35265,7616:361,-161,66,0,0,0.0767785 -35266,7616:360,-160,66,0,0,0.0766401 -35267,7615:469,-159,66,0,0,0.076553 -35268,7615:468,-158,66,0,0,0.0764586 -35269,7615:467,-157,66,0,0,0.076386 -35270,7615:466,-156,66,0,0,0.0763427 -35271,7615:465,-155,66,0,0,0.0763427 -35272,7615:364,-154,66,0,0,0.0764223 -35273,7615:363,-153,66,0,0,0.0767274 -35274,7615:362,-152,66,0,0,0.0767858 -35275,7615:361,-151,66,0,0,0.0773044 -35276,7615:360,-150,66,0,0,0.0774145 -35277,7607:362,-72,66,0,0,0.0779814 -35278,7607:361,-71,66,0,0,0.077679 -35279,7607:360,-70,66,0,0,0.0775246 -35280,7606:364,-64,66,0,0,0.0773411 -35281,7606:363,-63,66,0,0,0.0762267 -35282,7605:465,-55,66,0,0,0.0769534 -35283,7605:364,-54,66,0,0,0.0764949 -35284,7605:363,-53,66,0,0,0.0760679 -35285,7605:362,-52,66,0,0,0.0760606 -35286,7605:361,-51,66,0,0,0.0761111 -35287,7605:360,-50,66,0,0,0.0761256 -35288,7604:469,-49,66,0,0,0.0761256 -35289,7604:468,-48,66,0,0,0.076039 -35290,7604:467,-47,66,0,0,0.0761111 -35291,7604:466,-46,66,0,0,0.0766038 -35292,7604:465,-45,66,0,0,0.0764876 -35293,7604:364,-44,66,0,0,0.0767785 -35294,7604:363,-43,66,0,0,0.0771873 -35295,7602:362,-22,66,0,0,0.0766765 -35296,7602:361,-21,66,0,0,0.0761472 -35297,7602:360,-20,66,0,0,0.0759379 -35298,7601:469,-19,66,0,0,0.0759091 -35299,7601:468,-18,66,0,0,0.0759019 -35300,7601:467,-17,66,0,0,0.0759668 -35301,7601:466,-16,66,0,0,0.0767929 -35302,7601:465,-15,66,0,0,0.086116 -35303,7601:364,-14,66,0,0,0.115937 -35304,7601:363,-13,66,0,0,0.113433 -35305,7601:362,-12,66,0,0,0.110239 -35306,7601:361,-11,66,0,0,0.116274 -35307,7601:360,-10,66,0,0,0.121154 -35308,7600:469,-9,66,0,0,0.137578 -35309,7600:468,-8,66,0,0,0.143409 -35310,7600:467,-7,66,0,0,0.145964 -35311,7600:466,-6,66,0,0,0.151809 -35312,7600:465,-5,66,0,0,0.153657 -35313,7600:364,-4,66,0,0,0.139738 -35314,7600:363,-3,66,0,0,0.131736 -35315,7600:362,-2,66,0,0,0.115139 -35316,7600:361,-1,66,0,0,0.130181 -35317,1600:361,0,66,0,0,0.132999 -35318,1600:361,1,66,0,0,0.13249 -35319,1600:362,2,66,0,0,0.138949 -35320,1600:363,3,66,0,0,0.15057 -35321,1600:364,4,66,0,0,0.150032 -35322,1600:465,5,66,0,0,0.146374 -35323,1600:466,6,66,0,0,0.152857 -35324,1600:467,7,66,0,0,0.148596 -35325,1600:468,8,66,0,0,0.156579 -35326,1600:469,9,66,0,0,0.156905 -35327,1601:360,10,66,0,0,0.146799 -35328,1601:361,11,66,0,0,0.142841 -35329,1601:362,12,66,0,0,0.141376 -35330,1601:363,13,66,0,0,0.133094 -35331,1601:364,14,66,0,0,0.133153 -35332,1601:465,15,66,0,0,0.1377 -35333,1601:466,16,66,0,0,0.138115 -35334,1601:467,17,66,0,0,0.130414 -35335,1601:468,18,66,0,0,0.118875 -35336,1601:469,19,66,0,0,0.116148 -35337,1602:360,20,66,0,0,0.101172 -35338,1602:361,21,66,0,0,0.0881591 -35339,1602:362,22,66,0,0,0.084013 -35340,1614:363,143,66,0,0,0.0793591 -35341,1614:364,144,66,0,0,0.0807131 -35342,1614:465,145,66,0,0,0.081548 -35343,1614:466,146,66,0,0,0.081034 -35344,1614:467,147,66,0,0,0.0804315 -35345,1614:468,148,66,0,0,0.0797277 -35346,1614:469,149,66,0,0,0.0791717 -35347,1615:360,150,66,0,0,0.0783144 -35348,1615:361,151,66,0,0,0.0781812 -35349,1615:362,152,66,0,0,0.0787905 -35350,1615:363,153,66,0,0,0.0794643 -35351,1615:364,154,66,0,0,0.0793139 -35352,1615:465,155,66,0,0,0.0789844 -35353,1615:466,156,66,0,0,0.0787084 -35354,1615:467,157,66,0,0,0.078218 -35355,1615:468,158,66,0,0,0.0776864 -35356,1615:469,159,66,0,0,0.077363 -35357,1616:360,160,66,0,0,0.0770849 -35358,1616:361,161,66,0,0,0.0767712 -35359,1616:362,162,66,0,0,0.0764803 -35360,1616:363,163,66,0,0,0.0762918 -35361,1616:364,164,66,0,0,0.0761834 -35362,1616:465,165,66,0,0,0.0760967 -35363,1616:466,166,66,0,0,0.076039 -35364,1616:467,167,66,0,0,0.0760895 -35365,1616:468,168,66,0,0,0.0761761 -35366,1616:469,169,66,0,0,0.0762123 -35367,1617:360,170,66,0,0,0.0762413 -35368,1617:361,171,66,0,0,0.0762991 -35369,1617:362,172,66,0,0,0.0763643 -35370,1617:363,173,66,0,0,0.0764296 -35371,1617:364,174,66,0,0,0.0764732 -35372,1617:465,175,66,0,0,0.0764513 -35373,1617:466,176,66,0,0,0.0764513 -35374,1617:467,177,66,0,0,0.0764513 -35375,1617:468,178,66,0,0,0.0764513 -35376,1617:469,179,66,0,0,0.0764659 -35377,1618:360,180,66,0,0,0.0764223 -35378,7618:370,-180,67,0,0,0.0764803 -35379,7617:479,-179,67,0,0,0.0764732 -35380,7617:478,-178,67,0,0,0.0764369 -35381,7617:477,-177,67,0,0,0.076386 -35382,7617:476,-176,67,0,0,0.0763933 -35383,7617:475,-175,67,0,0,0.0763789 -35384,7617:374,-174,67,0,0,0.0765313 -35385,7617:373,-173,67,0,0,0.0766475 -35386,7617:372,-172,67,0,0,0.0766621 -35387,7617:371,-171,67,0,0,0.0766692 -35388,7617:370,-170,67,0,0,0.0767494 -35389,7616:479,-169,67,0,0,0.0767567 -35390,7616:478,-168,67,0,0,0.0767494 -35391,7616:477,-167,67,0,0,0.0767567 -35392,7616:476,-166,67,0,0,0.0767347 -35393,7616:475,-165,67,0,0,0.076742 -35394,7616:374,-164,67,0,0,0.0768294 -35395,7616:373,-163,67,0,0,0.0769534 -35396,7616:372,-162,67,0,0,0.0770117 -35397,7616:371,-161,67,0,0,0.0769024 -35398,7616:370,-160,67,0,0,0.076713 -35399,7615:479,-159,67,0,0,0.0765603 -35400,7615:478,-158,67,0,0,0.0764586 -35401,7615:477,-157,67,0,0,0.076415 -35402,7615:476,-156,67,0,0,0.0763716 -35403,7615:475,-155,67,0,0,0.0763571 -35404,7615:374,-154,67,0,0,0.07635 -35405,7615:373,-153,67,0,0,0.0763354 -35406,7615:372,-152,67,0,0,0.076553 -35407,7615:371,-151,67,0,0,0.076553 -35408,7615:370,-150,67,0,0,0.0761472 -35409,7607:370,-70,67,0,0,0.0771873 -35410,7606:479,-69,67,0,0,0.0773118 -35411,7606:478,-68,67,0,0,0.0775539 -35412,7606:475,-65,67,0,0,0.077797 -35413,7605:475,-55,67,0,0,0.0768585 -35414,7605:374,-54,67,0,0,0.0766912 -35415,7605:373,-53,67,0,0,0.0765022 -35416,7605:372,-52,67,0,0,0.0761183 -35417,7605:371,-51,67,0,0,0.0761111 -35418,7605:370,-50,67,0,0,0.0760533 -35419,7604:479,-49,67,0,0,0.076039 -35420,7604:478,-48,67,0,0,0.0759523 -35421,7604:477,-47,67,0,0,0.0764296 -35422,7604:476,-46,67,0,0,0.0769242 -35423,7604:475,-45,67,0,0,0.0768076 -35424,7604:374,-44,67,0,0,0.0771288 -35425,7604:373,-43,67,0,0,0.0761545 -35426,7602:373,-23,67,0,0,0.0771433 -35427,7602:371,-21,67,0,0,0.0762991 -35428,7602:370,-20,67,0,0,0.0760099 -35429,7601:479,-19,67,0,0,0.0759595 -35430,7601:478,-18,67,0,0,0.075974 -35431,7601:477,-17,67,0,0,0.0759523 -35432,7601:476,-16,67,0,0,0.0771726 -35433,7601:475,-15,67,0,0,0.103228 -35434,7601:374,-14,67,0,0,0.118864 -35435,7601:373,-13,67,0,0,0.115758 -35436,7601:372,-12,67,0,0,0.128872 -35437,7601:371,-11,67,0,0,0.133771 -35438,7601:370,-10,67,0,0,0.138998 -35439,7600:479,-9,67,0,0,0.141226 -35440,7600:478,-8,67,0,0,0.145082 -35441,7600:477,-7,67,0,0,0.1459 -35442,7600:476,-6,67,0,0,0.141813 -35443,7600:475,-5,67,0,0,0.135182 -35444,7600:374,-4,67,0,0,0.12123 -35445,7600:373,-3,67,0,0,0.106467 -35446,7600:372,-2,67,0,0,0.0980218 -35447,7600:371,-1,67,0,0,0.108736 -35448,1600:371,0,67,0,0,0.127437 -35449,1600:371,1,67,0,0,0.13505 -35450,1600:372,2,67,0,0,0.137529 -35451,1600:373,3,67,0,0,0.147069 -35452,1600:374,4,67,0,0,0.147198 -35453,1600:475,5,67,0,0,0.14451 -35454,1600:476,6,67,0,0,0.135266 -35455,1600:477,7,67,0,0,0.137944 -35456,1600:478,8,67,0,0,0.142264 -35457,1600:479,9,67,0,0,0.140381 -35458,1601:370,10,67,0,0,0.135483 -35459,1601:371,11,67,0,0,0.128504 -35460,1601:372,12,67,0,0,0.126515 -35461,1601:373,13,67,0,0,0.126538 -35462,1601:374,14,67,0,0,0.126061 -35463,1601:475,15,67,0,0,0.125192 -35464,1601:476,16,67,0,0,0.13108 -35465,1601:477,17,67,0,0,0.119999 -35466,1601:478,18,67,0,0,0.103332 -35467,1601:479,19,67,0,0,0.0954098 -35468,1614:373,143,67,0,0,0.0783961 -35469,1614:374,144,67,0,0,0.0783218 -35470,1614:475,145,67,0,0,0.0786711 -35471,1614:476,146,67,0,0,0.0788203 -35472,1614:477,147,67,0,0,0.0786116 -35473,1614:478,148,67,0,0,0.0777675 -35474,1614:479,149,67,0,0,0.0782033 -35475,1615:370,150,67,0,0,0.0781367 -35476,1615:371,151,67,0,0,0.0777601 -35477,1615:372,152,67,0,0,0.0775981 -35478,1615:373,153,67,0,0,0.0775246 -35479,1615:374,154,67,0,0,0.0780552 -35480,1615:475,155,67,0,0,0.078048 -35481,1615:476,156,67,0,0,0.0775833 -35482,1615:477,157,67,0,0,0.0771067 -35483,1615:478,158,67,0,0,0.0768076 -35484,1615:479,159,67,0,0,0.0765457 -35485,1616:370,160,67,0,0,0.07635 -35486,1616:371,161,67,0,0,0.0762196 -35487,1616:372,162,67,0,0,0.0761038 -35488,1616:373,163,67,0,0,0.0760895 -35489,1616:374,164,67,0,0,0.0760822 -35490,1616:475,165,67,0,0,0.0760245 -35491,1616:476,166,67,0,0,0.0760317 -35492,1616:477,167,67,0,0,0.0761761 -35493,1616:478,168,67,0,0,0.0762413 -35494,1616:479,169,67,0,0,0.0762702 -35495,1617:370,170,67,0,0,0.0762702 -35496,1617:371,171,67,0,0,0.0763137 -35497,1617:372,172,67,0,0,0.0763789 -35498,1617:373,173,67,0,0,0.0764296 -35499,1617:374,174,67,0,0,0.0764369 -35500,1617:475,175,67,0,0,0.0764079 -35501,1617:476,176,67,0,0,0.0764006 -35502,1617:477,177,67,0,0,0.0764079 -35503,1617:478,178,67,0,0,0.0764296 -35504,1617:479,179,67,0,0,0.0764659 -35505,1618:370,180,67,0,0,0.0764803 -35506,7618:380,-180,68,0,0,0.0764803 -35507,7617:489,-179,68,0,0,0.0764949 -35508,7617:488,-178,68,0,0,0.0765022 -35509,7617:487,-177,68,0,0,0.0765022 -35510,7617:486,-176,68,0,0,0.0764732 -35511,7617:485,-175,68,0,0,0.0764876 -35512,7617:384,-174,68,0,0,0.0766111 -35513,7617:383,-173,68,0,0,0.0767274 -35514,7617:382,-172,68,0,0,0.076742 -35515,7617:381,-171,68,0,0,0.0767712 -35516,7617:380,-170,68,0,0,0.0768003 -35517,7616:489,-169,68,0,0,0.0767638 -35518,7616:488,-168,68,0,0,0.0766621 -35519,7616:487,-167,68,0,0,0.0766401 -35520,7616:486,-166,68,0,0,0.0766257 -35521,7616:485,-165,68,0,0,0.0766184 -35522,7616:384,-164,68,0,0,0.0766548 -35523,7616:383,-163,68,0,0,0.0767347 -35524,7616:382,-162,68,0,0,0.0767858 -35525,7616:381,-161,68,0,0,0.0767347 -35526,7616:380,-160,68,0,0,0.0766765 -35527,7615:489,-159,68,0,0,0.0766257 -35528,7615:488,-158,68,0,0,0.0765747 -35529,7615:487,-157,68,0,0,0.0765676 -35530,7615:486,-156,68,0,0,0.0765384 -35531,7615:485,-155,68,0,0,0.0764079 -35532,7615:384,-154,68,0,0,0.0763427 -35533,7615:383,-153,68,0,0,0.076415 -35534,7615:382,-152,68,0,0,0.0762775 -35535,7615:381,-151,68,0,0,0.07635 -35536,7615:380,-150,68,0,0,0.0759091 -35537,7614:489,-149,68,0,0,0.0755781 -35538,7606:489,-69,68,0,0,0.0771215 -35539,7606:488,-68,68,0,0,0.0772166 -35540,7606:487,-67,68,0,0,0.0774439 -35541,7606:486,-66,68,0,0,0.0775539 -35542,7605:487,-57,68,0,0,0.0769754 -35543,7605:384,-54,68,0,0,0.0765093 -35544,7605:383,-53,68,0,0,0.0764513 -35545,7605:382,-52,68,0,0,0.0760606 -35546,7605:381,-51,68,0,0,0.075974 -35547,7605:380,-50,68,0,0,0.0759379 -35548,7604:489,-49,68,0,0,0.0760679 -35549,7604:488,-48,68,0,0,0.0763137 -35550,7604:487,-47,68,0,0,0.0764442 -35551,7604:486,-46,68,0,0,0.077136 -35552,7604:485,-45,68,0,0,0.0772311 -35553,7602:382,-22,68,0,0,0.076415 -35554,7602:381,-21,68,0,0,0.0763789 -35555,7602:380,-20,68,0,0,0.0761545 -35556,7601:489,-19,68,0,0,0.0760317 -35557,7601:488,-18,68,0,0,0.0760172 -35558,7601:487,-17,68,0,0,0.0759307 -35559,7601:486,-16,68,0,0,0.0768441 -35560,7601:485,-15,68,0,0,0.0966047 -35561,7601:384,-14,68,0,0,0.125858 -35562,7601:383,-13,68,0,0,0.130881 -35563,7601:382,-12,68,0,0,0.1342 -35564,7601:381,-11,68,0,0,0.138323 -35565,7601:380,-10,68,0,0,0.137944 -35566,7600:489,-9,68,0,0,0.131349 -35567,7600:488,-8,68,0,0,0.123081 -35568,7600:485,-5,68,0,0,0.104923 -35569,7600:384,-4,68,0,0,0.117472 -35570,7600:383,-3,68,0,0,0.104808 -35571,7600:382,-2,68,0,0,0.0934331 -35572,7600:381,-1,68,0,0,0.104576 -35573,1600:381,0,68,0,0,0.121932 -35574,1600:381,1,68,0,0,0.130367 -35575,1600:382,2,68,0,0,0.136945 -35576,1600:383,3,68,0,0,0.140766 -35577,1600:384,4,68,0,0,0.135086 -35578,1600:485,5,68,0,0,0.141251 -35579,1600:486,6,68,0,0,0.132762 -35580,1600:487,7,68,0,0,0.126515 -35581,1600:488,8,68,0,0,0.125249 -35582,1600:489,9,68,0,0,0.116074 -35583,1601:380,10,68,0,0,0.109766 -35584,1601:381,11,68,0,0,0.110926 -35585,1601:382,12,68,0,0,0.117728 -35586,1601:383,13,68,0,0,0.123236 -35587,1601:384,14,68,0,0,0.120162 -35588,1601:485,15,68,0,0,0.122263 -35589,1601:486,16,68,0,0,0.123547 -35590,1601:487,17,68,0,0,0.105232 -35591,1601:488,18,68,0,0,0.0968831 -35592,1602:381,21,68,0,0,0.0781071 -35593,1602:382,22,68,0,0,0.0845602 -35594,1614:381,141,68,0,0,0.0786414 -35595,1614:382,142,68,0,0,0.0784333 -35596,1614:383,143,68,0,0,0.0781145 -35597,1614:384,144,68,0,0,0.0775833 -35598,1614:485,145,68,0,0,0.0769899 -35599,1614:486,146,68,0,0,0.0767638 -35600,1614:487,147,68,0,0,0.0767785 -35601,1614:488,148,68,0,0,0.0766983 -35602,1614:489,149,68,0,0,0.0766983 -35603,1615:380,150,68,0,0,0.0767347 -35604,1615:381,151,68,0,0,0.076713 -35605,1615:382,152,68,0,0,0.0766038 -35606,1615:383,153,68,0,0,0.076524 -35607,1615:384,154,68,0,0,0.0764803 -35608,1615:485,155,68,0,0,0.0764586 -35609,1615:486,156,68,0,0,0.0763933 -35610,1615:487,157,68,0,0,0.0763354 -35611,1615:488,158,68,0,0,0.0762702 -35612,1615:489,159,68,0,0,0.0761327 -35613,1616:380,160,68,0,0,0.0760245 -35614,1616:381,161,68,0,0,0.0759452 -35615,1616:382,162,68,0,0,0.0759307 -35616,1616:383,163,68,0,0,0.0759884 -35617,1616:384,164,68,0,0,0.0760099 -35618,1616:485,165,68,0,0,0.0759884 -35619,1616:486,166,68,0,0,0.0760172 -35620,1616:487,167,68,0,0,0.0761689 -35621,1616:488,168,68,0,0,0.0762702 -35622,1616:489,169,68,0,0,0.0762918 -35623,1617:380,170,68,0,0,0.0763064 -35624,1617:381,171,68,0,0,0.0763571 -35625,1617:382,172,68,0,0,0.0764006 -35626,1617:383,173,68,0,0,0.0764223 -35627,1617:384,174,68,0,0,0.076415 -35628,1617:485,175,68,0,0,0.0764006 -35629,1617:486,176,68,0,0,0.0764006 -35630,1617:487,177,68,0,0,0.0764006 -35631,1617:488,178,68,0,0,0.0764296 -35632,1617:489,179,68,0,0,0.0764659 -35633,1618:380,180,68,0,0,0.0764803 -35634,7618:390,-180,69,0,0,0.076524 -35635,7617:499,-179,69,0,0,0.0765313 -35636,7617:498,-178,69,0,0,0.0765313 -35637,7617:497,-177,69,0,0,0.0765603 -35638,7617:496,-176,69,0,0,0.0765893 -35639,7617:495,-175,69,0,0,0.0765603 -35640,7617:394,-174,69,0,0,0.0766257 -35641,7617:393,-173,69,0,0,0.0767494 -35642,7617:392,-172,69,0,0,0.0767638 -35643,7617:391,-171,69,0,0,0.0767347 -35644,7617:390,-170,69,0,0,0.0766839 -35645,7616:499,-169,69,0,0,0.0766257 -35646,7616:498,-168,69,0,0,0.0766038 -35647,7616:497,-167,69,0,0,0.0766328 -35648,7616:496,-166,69,0,0,0.0766257 -35649,7616:495,-165,69,0,0,0.0766184 -35650,7616:394,-164,69,0,0,0.0765893 -35651,7616:393,-163,69,0,0,0.0765457 -35652,7616:392,-162,69,0,0,0.0765166 -35653,7616:391,-161,69,0,0,0.0765457 -35654,7616:390,-160,69,0,0,0.076582 -35655,7615:499,-159,69,0,0,0.0765893 -35656,7615:498,-158,69,0,0,0.0766328 -35657,7615:497,-157,69,0,0,0.0766765 -35658,7615:496,-156,69,0,0,0.0766401 -35659,7615:495,-155,69,0,0,0.0765093 -35660,7615:394,-154,69,0,0,0.0763427 -35661,7615:393,-153,69,0,0,0.0765166 -35662,7615:392,-152,69,0,0,0.0764803 -35663,7615:391,-151,69,0,0,0.0763427 -35664,7615:390,-150,69,0,0,0.076524 -35665,7614:499,-149,69,0,0,0.0765022 -35666,7614:498,-148,69,0,0,0.0765893 -35667,7614:497,-147,69,0,0,0.0766184 -35668,7614:496,-146,69,0,0,0.0764079 -35669,7607:391,-71,69,0,0,0.0777084 -35670,7607:390,-70,69,0,0,0.0774071 -35671,7606:499,-69,69,0,0,0.0771873 -35672,7606:498,-68,69,0,0,0.0769607 -35673,7606:497,-67,69,0,0,0.0771067 -35674,7605:497,-57,69,0,0,0.0769607 -35675,7605:394,-54,69,0,0,0.0762775 -35676,7605:393,-53,69,0,0,0.0759091 -35677,7605:392,-52,69,0,0,0.0761978 -35678,7605:391,-51,69,0,0,0.0762629 -35679,7605:390,-50,69,0,0,0.0761183 -35680,7604:499,-49,69,0,0,0.076234 -35681,7604:498,-48,69,0,0,0.0763354 -35682,7604:497,-47,69,0,0,0.0766475 -35683,7602:391,-21,69,0,0,0.0763354 -35684,7602:390,-20,69,0,0,0.0761327 -35685,7601:499,-19,69,0,0,0.0760749 -35686,7601:498,-18,69,0,0,0.0760967 -35687,7601:497,-17,69,0,0,0.0759668 -35688,7601:496,-16,69,0,0,0.0777747 -35689,7601:495,-15,69,0,0,0.108647 -35690,7601:394,-14,69,0,0,0.10637 -35691,7601:393,-13,69,0,0,0.116369 -35692,7601:392,-12,69,0,0,0.123414 -35693,7601:391,-11,69,0,0,0.12863 -35694,7600:496,-6,69,0,0,0.0882168 -35695,7600:495,-5,69,0,0,0.0864561 -35696,7600:394,-4,69,0,0,0.0860432 -35697,7600:393,-3,69,0,0,0.0975774 -35698,7600:392,-2,69,0,0,0.0852147 -35699,7600:391,-1,69,0,0,0.111109 -35700,1600:391,0,69,0,0,0.120227 -35701,1600:391,1,69,0,0,0.127838 -35702,1600:392,2,69,0,0,0.134918 -35703,1600:393,3,69,0,0,0.125779 -35704,1600:394,4,69,0,0,0.117036 -35705,1600:495,5,69,0,0,0.13268 -35706,1600:496,6,69,0,0,0.127106 -35707,1600:497,7,69,0,0,0.116232 -35708,1600:498,8,69,0,0,0.118413 -35709,1600:499,9,69,0,0,0.111058 -35710,1601:390,10,69,0,0,0.105736 -35711,1601:391,11,69,0,0,0.111546 -35712,1601:392,12,69,0,0,0.117942 -35713,1601:393,13,69,0,0,0.121012 -35714,1601:394,14,69,0,0,0.112815 -35715,1601:495,15,69,0,0,0.111862 -35716,1601:496,16,69,0,0,0.115916 -35717,1601:497,17,69,0,0,0.114148 -35718,1601:498,18,69,0,0,0.105107 -35719,1601:499,19,69,0,0,0.104442 -35720,1602:390,20,69,0,0,0.0981308 -35721,1602:391,21,69,0,0,0.0957386 -35722,1614:391,141,69,0,0,0.0797503 -35723,1614:392,142,69,0,0,0.0793366 -35724,1614:393,143,69,0,0,0.0778116 -35725,1614:394,144,69,0,0,0.0769097 -35726,1614:495,145,69,0,0,0.0767567 -35727,1614:496,146,69,0,0,0.0769024 -35728,1614:497,147,69,0,0,0.0771215 -35729,1614:498,148,69,0,0,0.0772092 -35730,1614:499,149,69,0,0,0.0769973 -35731,1615:390,150,69,0,0,0.0766548 -35732,1615:391,151,69,0,0,0.0764659 -35733,1615:392,152,69,0,0,0.0765093 -35734,1615:393,153,69,0,0,0.0765384 -35735,1615:394,154,69,0,0,0.0765093 -35736,1615:495,155,69,0,0,0.0763933 -35737,1615:496,156,69,0,0,0.0761978 -35738,1615:497,157,69,0,0,0.0760895 -35739,1615:498,158,69,0,0,0.0759811 -35740,1615:499,159,69,0,0,0.0758586 -35741,1616:390,160,69,0,0,0.0758225 -35742,1616:391,161,69,0,0,0.075837 -35743,1616:392,162,69,0,0,0.0758946 -35744,1616:393,163,69,0,0,0.0759452 -35745,1616:394,164,69,0,0,0.0760029 -35746,1616:495,165,69,0,0,0.0760679 -35747,1616:496,166,69,0,0,0.0761472 -35748,1616:497,167,69,0,0,0.0762485 -35749,1616:498,168,69,0,0,0.0762702 -35750,1616:499,169,69,0,0,0.0762775 -35751,1617:390,170,69,0,0,0.0762991 -35752,1617:391,171,69,0,0,0.0763208 -35753,1617:392,172,69,0,0,0.0763643 -35754,1617:393,173,69,0,0,0.0763933 -35755,1617:394,174,69,0,0,0.076386 -35756,1617:495,175,69,0,0,0.0763933 -35757,1617:496,176,69,0,0,0.076415 -35758,1617:497,177,69,0,0,0.0764442 -35759,1617:498,178,69,0,0,0.0764949 -35760,1617:499,179,69,0,0,0.0765093 -35761,1618:390,180,69,0,0,0.076524 -35762,7718:100,-180,70,0,0,0.0765747 -35763,7717:209,-179,70,0,0,0.0765747 -35764,7717:208,-178,70,0,0,0.0765893 -35765,7717:207,-177,70,0,0,0.0766257 -35766,7717:206,-176,70,0,0,0.0766401 -35767,7717:205,-175,70,0,0,0.0766401 -35768,7717:104,-174,70,0,0,0.0766621 -35769,7717:103,-173,70,0,0,0.076713 -35770,7717:102,-172,70,0,0,0.0766839 -35771,7717:101,-171,70,0,0,0.0766475 -35772,7717:100,-170,70,0,0,0.0766328 -35773,7716:209,-169,70,0,0,0.0766111 -35774,7716:208,-168,70,0,0,0.0765747 -35775,7716:207,-167,70,0,0,0.0766038 -35776,7716:206,-166,70,0,0,0.0766401 -35777,7716:205,-165,70,0,0,0.0766184 -35778,7716:104,-164,70,0,0,0.0765967 -35779,7716:103,-163,70,0,0,0.0765166 -35780,7716:102,-162,70,0,0,0.0764876 -35781,7716:101,-161,70,0,0,0.0764949 -35782,7716:100,-160,70,0,0,0.0764803 -35783,7715:209,-159,70,0,0,0.0764732 -35784,7715:208,-158,70,0,0,0.0764876 -35785,7715:207,-157,70,0,0,0.0765457 -35786,7715:206,-156,70,0,0,0.076553 -35787,7715:205,-155,70,0,0,0.0764949 -35788,7715:104,-154,70,0,0,0.0763933 -35789,7715:103,-153,70,0,0,0.0764223 -35790,7715:102,-152,70,0,0,0.0765384 -35791,7715:101,-151,70,0,0,0.0766692 -35792,7715:100,-150,70,0,0,0.076713 -35793,7714:209,-149,70,0,0,0.0767203 -35794,7714:208,-148,70,0,0,0.0766912 -35795,7714:207,-147,70,0,0,0.0766475 -35796,7714:206,-146,70,0,0,0.0767929 -35797,7714:205,-145,70,0,0,0.0768367 -35798,7707:100,-70,70,0,0,0.0769973 -35799,7706:209,-69,70,0,0,0.0770922 -35800,7706:208,-68,70,0,0,0.0769534 -35801,7706:207,-67,70,0,0,0.0769315 -35802,7706:205,-65,70,0,0,0.0764876 -35803,7706:102,-62,70,0,0,0.0774878 -35804,7705:206,-56,70,0,0,0.0768659 -35805,7705:205,-55,70,0,0,0.0765166 -35806,7705:104,-54,70,0,0,0.07614 -35807,7705:103,-53,70,0,0,0.0760172 -35808,7705:102,-52,70,0,0,0.0759307 -35809,7705:101,-51,70,0,0,0.0759162 -35810,7705:100,-50,70,0,0,0.0760029 -35811,7704:209,-49,70,0,0,0.0760895 -35812,7704:208,-48,70,0,0,0.076046 -35813,7704:207,-47,70,0,0,0.0766475 -35814,7704:206,-46,70,0,0,0.0777527 -35815,7702:100,-20,70,0,0,0.0760749 -35816,7701:209,-19,70,0,0,0.0760822 -35817,7701:208,-18,70,0,0,0.0761472 -35818,7701:207,-17,70,0,0,0.0758443 -35819,7701:206,-16,70,0,0,0.0807435 -35820,7701:205,-15,70,0,0,0.116962 -35821,7701:104,-14,70,0,0,0.121526 -35822,7701:103,-13,70,0,0,0.1249 -35823,7701:102,-12,70,0,0,0.127895 -35824,7700:104,-4,70,0,0,0.0790967 -35825,7700:103,-3,70,0,0,0.0843219 -35826,7700:102,-2,70,0,0,0.0853509 -35827,7700:101,-1,70,0,0,0.113278 -35828,1700:101,0,70,0,0,0.12286 -35829,1700:101,1,70,0,0,0.128124 -35830,1700:102,2,70,0,0,0.131889 -35831,1700:103,3,70,0,0,0.11266 -35832,1700:104,4,70,0,0,0.105465 -35833,1700:205,5,70,0,0,0.118231 -35834,1700:206,6,70,0,0,0.105504 -35835,1700:207,7,70,0,0,0.100921 -35836,1700:208,8,70,0,0,0.0992825 -35837,1700:209,9,70,0,0,0.103408 -35838,1701:100,10,70,0,0,0.108697 -35839,1701:101,11,70,0,0,0.115548 -35840,1701:102,12,70,0,0,0.118467 -35841,1701:103,13,70,0,0,0.117568 -35842,1701:104,14,70,0,0,0.11224 -35843,1701:205,15,70,0,0,0.115045 -35844,1701:206,16,70,0,0,0.111322 -35845,1701:207,17,70,0,0,0.109937 -35846,1701:208,18,70,0,0,0.0972521 -35847,1702:101,21,70,0,0,0.0910079 -35848,1714:205,145,70,0,0,0.0770704 -35849,1714:206,146,70,0,0,0.0771654 -35850,1714:207,147,70,0,0,0.0773559 -35851,1714:208,148,70,0,0,0.0771726 -35852,1714:209,149,70,0,0,0.0766111 -35853,1715:100,150,70,0,0,0.0761689 -35854,1715:101,151,70,0,0,0.0760606 -35855,1715:102,152,70,0,0,0.0759379 -35856,1715:103,153,70,0,0,0.0759379 -35857,1715:104,154,70,0,0,0.0759379 -35858,1715:205,155,70,0,0,0.0758515 -35859,1715:206,156,70,0,0,0.0758082 -35860,1715:207,157,70,0,0,0.0758082 -35861,1715:208,158,70,0,0,0.0758298 -35862,1715:209,159,70,0,0,0.0758515 -35863,1716:100,160,70,0,0,0.0758658 -35864,1716:101,161,70,0,0,0.0759884 -35865,1716:102,162,70,0,0,0.0760317 -35866,1716:103,163,70,0,0,0.0760967 -35867,1716:104,164,70,0,0,0.076205 -35868,1716:205,165,70,0,0,0.076234 -35869,1716:206,166,70,0,0,0.0762413 -35870,1716:207,167,70,0,0,0.0762558 -35871,1716:208,168,70,0,0,0.0762558 -35872,1716:209,169,70,0,0,0.0762629 -35873,1717:100,170,70,0,0,0.0762991 -35874,1717:101,171,70,0,0,0.0763281 -35875,1717:102,172,70,0,0,0.0763643 -35876,1717:103,173,70,0,0,0.0763643 -35877,1717:104,174,70,0,0,0.0763716 -35878,1717:205,175,70,0,0,0.0763933 -35879,1717:206,176,70,0,0,0.0764223 -35880,1717:207,177,70,0,0,0.0764442 -35881,1717:208,178,70,0,0,0.0764659 -35882,1717:209,179,70,0,0,0.0765384 -35883,1718:100,180,70,0,0,0.0765747 -35884,7718:110,-180,71,0,0,0.0765893 -35885,7717:219,-179,71,0,0,0.0766111 -35886,7717:218,-178,71,0,0,0.0765967 -35887,7717:217,-177,71,0,0,0.0765967 -35888,7717:216,-176,71,0,0,0.0766401 -35889,7717:215,-175,71,0,0,0.0766548 -35890,7717:114,-174,71,0,0,0.0766621 -35891,7717:113,-173,71,0,0,0.0766257 -35892,7717:112,-172,71,0,0,0.0765747 -35893,7717:111,-171,71,0,0,0.0766038 -35894,7717:110,-170,71,0,0,0.0766912 -35895,7716:219,-169,71,0,0,0.0766839 -35896,7716:218,-168,71,0,0,0.0766111 -35897,7716:217,-167,71,0,0,0.076582 -35898,7716:216,-166,71,0,0,0.0766111 -35899,7716:215,-165,71,0,0,0.0766111 -35900,7716:114,-164,71,0,0,0.0765603 -35901,7716:113,-163,71,0,0,0.0765093 -35902,7716:112,-162,71,0,0,0.0764949 -35903,7716:111,-161,71,0,0,0.0764803 -35904,7716:110,-160,71,0,0,0.0764586 -35905,7715:219,-159,71,0,0,0.0764586 -35906,7715:218,-158,71,0,0,0.0764732 -35907,7715:217,-157,71,0,0,0.0765166 -35908,7715:216,-156,71,0,0,0.0765676 -35909,7715:215,-155,71,0,0,0.0765313 -35910,7715:114,-154,71,0,0,0.0763716 -35911,7715:113,-153,71,0,0,0.0763716 -35912,7715:112,-152,71,0,0,0.0759523 -35913,7715:111,-151,71,0,0,0.0762485 -35914,7715:110,-150,71,0,0,0.0765967 -35915,7714:219,-149,71,0,0,0.0767056 -35916,7714:218,-148,71,0,0,0.0767347 -35917,7714:217,-147,71,0,0,0.0766401 -35918,7714:216,-146,71,0,0,0.076742 -35919,7714:215,-145,71,0,0,0.0767567 -35920,7714:114,-144,71,0,0,0.0771726 -35921,7707:218,-78,71,0,0,0.0860837 -35922,7707:217,-77,71,0,0,0.0854472 -35923,7707:216,-76,71,0,0,0.0847193 -35924,7707:215,-75,71,0,0,0.0841236 -35925,7707:114,-74,71,0,0,0.083367 -35926,7707:110,-70,71,0,0,0.0770849 -35927,7706:218,-68,71,0,0,0.0769899 -35928,7706:217,-67,71,0,0,0.0768367 -35929,7706:216,-66,71,0,0,0.0768149 -35930,7706:110,-60,71,0,0,0.0769899 -35931,7705:219,-59,71,0,0,0.0769315 -35932,7705:218,-58,71,0,0,0.076895 -35933,7705:217,-57,71,0,0,0.0769754 -35934,7705:216,-56,71,0,0,0.0768294 -35935,7705:215,-55,71,0,0,0.076386 -35936,7705:112,-52,71,0,0,0.0770775 -35937,7705:111,-51,71,0,0,0.0766983 -35938,7705:110,-50,71,0,0,0.0764369 -35939,7704:219,-49,71,0,0,0.0762848 -35940,7704:218,-48,71,0,0,0.0761111 -35941,7704:217,-47,71,0,0,0.07635 -35942,7704:216,-46,71,0,0,0.077297 -35943,7704:215,-45,71,0,0,0.0771654 -35944,7702:113,-23,71,0,0,0.0764442 -35945,7702:112,-22,71,0,0,0.0763571 -35946,7702:110,-20,71,0,0,0.0761327 -35947,7701:219,-19,71,0,0,0.0761834 -35948,7701:218,-18,71,0,0,0.0759884 -35949,7701:217,-17,71,0,0,0.0762267 -35950,7701:216,-16,71,0,0,0.0789247 -35951,7701:215,-15,71,0,0,0.0824607 -35952,7701:114,-14,71,0,0,0.0817328 -35953,7701:113,-13,71,0,0,0.0874021 -35954,7701:112,-12,71,0,0,0.116686 -35955,7701:111,-11,71,0,0,0.111058 -35956,7701:110,-10,71,0,0,0.103408 -35957,7700:217,-7,71,0,0,0.0763933 -35958,7700:216,-6,71,0,0,0.0762918 -35959,7700:215,-5,71,0,0,0.0762267 -35960,7700:114,-4,71,0,0,0.0763427 -35961,7700:113,-3,71,0,0,0.076386 -35962,7700:112,-2,71,0,0,0.0810109 -35963,7700:111,-1,71,0,0,0.102073 -35964,1700:111,0,71,0,0,0.0920502 -35965,1700:111,1,71,0,0,0.100418 -35966,1700:112,2,71,0,0,0.120303 -35967,1700:113,3,71,0,0,0.114055 -35968,1700:114,4,71,0,0,0.10819 -35969,1700:215,5,71,0,0,0.100205 -35970,1700:216,6,71,0,0,0.0947292 -35971,1700:217,7,71,0,0,0.0982218 -35972,1700:218,8,71,0,0,0.098998 -35973,1700:219,9,71,0,0,0.101098 -35974,1701:110,10,71,0,0,0.102318 -35975,1701:111,11,71,0,0,0.109786 -35976,1701:112,12,71,0,0,0.11365 -35977,1701:113,13,71,0,0,0.117259 -35978,1701:114,14,71,0,0,0.102007 -35979,1701:215,15,71,0,0,0.107252 -35980,1701:216,16,71,0,0,0.110784 -35981,1701:217,17,71,0,0,0.104154 -35982,1701:218,18,71,0,0,0.0975595 -35983,1701:219,19,71,0,0,0.0907786 -35984,1702:110,20,71,0,0,0.0880518 -35985,1702:111,21,71,0,0,0.0822122 -35986,1714:216,146,71,0,0,0.0775394 -35987,1714:217,147,71,0,0,0.0772678 -35988,1714:218,148,71,0,0,0.0766401 -35989,1714:219,149,71,0,0,0.075686 -35990,1715:110,150,71,0,0,0.0759162 -35991,1715:111,151,71,0,0,0.0758803 -35992,1715:112,152,71,0,0,0.075758 -35993,1715:113,153,71,0,0,0.075765 -35994,1715:114,154,71,0,0,0.075765 -35995,1715:215,155,71,0,0,0.0757362 -35996,1715:216,156,71,0,0,0.0757362 -35997,1715:217,157,71,0,0,0.075765 -35998,1715:218,158,71,0,0,0.0758298 -35999,1715:219,159,71,0,0,0.0759452 -36000,1716:110,160,71,0,0,0.0760895 -36001,1716:111,161,71,0,0,0.076205 -36002,1716:112,162,71,0,0,0.0762413 -36003,1716:113,163,71,0,0,0.0762558 -36004,1716:114,164,71,0,0,0.0762558 -36005,1716:215,165,71,0,0,0.0762558 -36006,1716:216,166,71,0,0,0.0762558 -36007,1716:217,167,71,0,0,0.0762629 -36008,1716:218,168,71,0,0,0.0762558 -36009,1716:219,169,71,0,0,0.0762629 -36010,1717:110,170,71,0,0,0.0762848 -36011,1717:111,171,71,0,0,0.0763137 -36012,1717:112,172,71,0,0,0.0763354 -36013,1717:113,173,71,0,0,0.07635 -36014,1717:114,174,71,0,0,0.0763571 -36015,1717:215,175,71,0,0,0.0763643 -36016,1717:216,176,71,0,0,0.0763716 -36017,1717:217,177,71,0,0,0.076386 -36018,1717:218,178,71,0,0,0.0764079 -36019,1717:219,179,71,0,0,0.0765022 -36020,1718:110,180,71,0,0,0.0765893 -36021,7718:120,-180,72,0,0,0.0764876 -36022,7717:229,-179,72,0,0,0.0765676 -36023,7717:228,-178,72,0,0,0.0765747 -36024,7717:227,-177,72,0,0,0.0766111 -36025,7717:226,-176,72,0,0,0.0766184 -36026,7717:225,-175,72,0,0,0.0766184 -36027,7717:124,-174,72,0,0,0.0766328 -36028,7717:123,-173,72,0,0,0.0766328 -36029,7717:122,-172,72,0,0,0.0766257 -36030,7717:121,-171,72,0,0,0.0766475 -36031,7717:120,-170,72,0,0,0.0766401 -36032,7716:229,-169,72,0,0,0.0766475 -36033,7716:228,-168,72,0,0,0.0766692 -36034,7716:227,-167,72,0,0,0.0766111 -36035,7716:226,-166,72,0,0,0.0766038 -36036,7716:225,-165,72,0,0,0.0766038 -36037,7716:124,-164,72,0,0,0.0765384 -36038,7716:123,-163,72,0,0,0.0764876 -36039,7716:122,-162,72,0,0,0.0764659 -36040,7716:121,-161,72,0,0,0.0764442 -36041,7716:120,-160,72,0,0,0.0764442 -36042,7715:229,-159,72,0,0,0.0764803 -36043,7715:228,-158,72,0,0,0.0765893 -36044,7715:227,-157,72,0,0,0.0766692 -36045,7715:226,-156,72,0,0,0.0765747 -36046,7715:225,-155,72,0,0,0.0763789 -36047,7715:124,-154,72,0,0,0.076524 -36048,7715:123,-153,72,0,0,0.075722 -36049,7714:227,-147,72,0,0,0.0766475 -36050,7714:226,-146,72,0,0,0.0765893 -36051,7714:225,-145,72,0,0,0.0767494 -36052,7714:124,-144,72,0,0,0.0766839 -36053,7714:123,-143,72,0,0,0.0766475 -36054,7714:122,-142,72,0,0,0.0768806 -36055,7707:226,-76,72,0,0,0.0835713 -36056,7707:225,-75,72,0,0,0.0823597 -36057,7707:124,-74,72,0,0,0.0807666 -36058,7707:123,-73,72,0,0,0.080128 -36059,7707:122,-72,72,0,0,0.0792016 -36060,7706:228,-68,72,0,0,0.0770409 -36061,7706:227,-67,72,0,0,0.0769242 -36062,7706:226,-66,72,0,0,0.0768221 -36063,7706:225,-65,72,0,0,0.0767858 -36064,7706:124,-64,72,0,0,0.0767347 -36065,7705:227,-57,72,0,0,0.0769462 -36066,7705:226,-56,72,0,0,0.0765676 -36067,7705:121,-51,72,0,0,0.0769754 -36068,7704:228,-48,72,0,0,0.076386 -36069,7704:227,-47,72,0,0,0.076234 -36070,7704:226,-46,72,0,0,0.0762196 -36071,7704:225,-45,72,0,0,0.0762918 -36072,7704:123,-43,72,0,0,0.0763354 -36073,7704:122,-42,72,0,0,0.0762413 -36074,7704:121,-41,72,0,0,0.0762196 -36075,7704:120,-40,72,0,0,0.0761978 -36076,7702:123,-23,72,0,0,0.0762702 -36077,7702:122,-22,72,0,0,0.0762196 -36078,7702:121,-21,72,0,0,0.0761978 -36079,7702:120,-20,72,0,0,0.0761978 -36080,7701:229,-19,72,0,0,0.0759956 -36081,7701:228,-18,72,0,0,0.0756715 -36082,7701:227,-17,72,0,0,0.0755065 -36083,7701:226,-16,72,0,0,0.0755567 -36084,7701:225,-15,72,0,0,0.0762848 -36085,7701:124,-14,72,0,0,0.077657 -36086,7701:123,-13,72,0,0,0.0926529 -36087,7701:122,-12,72,0,0,0.109405 -36088,7701:121,-11,72,0,0,0.117568 -36089,7701:120,-10,72,0,0,0.0980126 -36090,7700:229,-9,72,0,0,0.0794567 -36091,7700:226,-6,72,0,0,0.076895 -36092,7700:225,-5,72,0,0,0.0767858 -36093,7700:124,-4,72,0,0,0.0770409 -36094,7700:123,-3,72,0,0,0.0787009 -36095,7700:122,-2,72,0,0,0.0943773 -36096,7700:121,-1,72,0,0,0.0821968 -36097,1700:121,0,72,0,0,0.084576 -36098,1700:121,1,72,0,0,0.0831081 -36099,1700:122,2,72,0,0,0.0907532 -36100,1700:123,3,72,0,0,0.111109 -36101,1700:124,4,72,0,0,0.105329 -36102,1700:225,5,72,0,0,0.105029 -36103,1700:226,6,72,0,0,0.102337 -36104,1700:227,7,72,0,0,0.100921 -36105,1700:228,8,72,0,0,0.105262 -36106,1700:229,9,72,0,0,0.105358 -36107,1701:120,10,72,0,0,0.107095 -36108,1701:121,11,72,0,0,0.108647 -36109,1701:122,12,72,0,0,0.115233 -36110,1701:123,13,72,0,0,0.113278 -36111,1701:124,14,72,0,0,0.103542 -36112,1701:225,15,72,0,0,0.103532 -36113,1701:226,16,72,0,0,0.096068 -36114,1701:227,17,72,0,0,0.0952857 -36115,1701:228,18,72,0,0,0.0962288 -36116,1701:229,19,72,0,0,0.0928518 -36117,1702:120,20,72,0,0,0.0857124 -36118,1702:121,21,72,0,0,0.0798634 -36119,1702:123,23,72,0,0,0.0823131 -36120,1714:124,144,72,0,0,0.0771067 -36121,1714:225,145,72,0,0,0.0775465 -36122,1714:226,146,72,0,0,0.0773337 -36123,1714:227,147,72,0,0,0.0769462 -36124,1714:228,148,72,0,0,0.0760967 -36125,1714:229,149,72,0,0,0.075442 -36126,1715:120,150,72,0,0,0.0756932 -36127,1715:121,151,72,0,0,0.0757722 -36128,1715:122,152,72,0,0,0.0756068 -36129,1715:123,153,72,0,0,0.0755352 -36130,1715:124,154,72,0,0,0.0756141 -36131,1715:225,155,72,0,0,0.0757002 -36132,1715:226,156,72,0,0,0.0758155 -36133,1715:227,157,72,0,0,0.0758946 -36134,1715:228,158,72,0,0,0.0759452 -36135,1715:229,159,72,0,0,0.0759668 -36136,1716:120,160,72,0,0,0.076046 -36137,1716:121,161,72,0,0,0.0761327 -36138,1716:122,162,72,0,0,0.0762123 -36139,1716:123,163,72,0,0,0.0762558 -36140,1716:124,164,72,0,0,0.0762558 -36141,1716:225,165,72,0,0,0.0762485 -36142,1716:226,166,72,0,0,0.0762413 -36143,1716:227,167,72,0,0,0.0762413 -36144,1716:228,168,72,0,0,0.0762413 -36145,1716:229,169,72,0,0,0.0762629 -36146,1717:120,170,72,0,0,0.0762848 -36147,1717:121,171,72,0,0,0.0763137 -36148,1717:122,172,72,0,0,0.0763281 -36149,1717:123,173,72,0,0,0.0763354 -36150,1717:124,174,72,0,0,0.0763427 -36151,1717:225,175,72,0,0,0.07635 -36152,1717:226,176,72,0,0,0.07635 -36153,1717:227,177,72,0,0,0.0763354 -36154,1717:228,178,72,0,0,0.07635 -36155,1717:229,179,72,0,0,0.0764006 -36156,1718:120,180,72,0,0,0.0764876 -36157,7718:130,-180,73,0,0,0.0764442 -36158,7717:239,-179,73,0,0,0.0764949 -36159,7717:238,-178,73,0,0,0.0765093 -36160,7717:237,-177,73,0,0,0.0765313 -36161,7717:236,-176,73,0,0,0.076582 -36162,7717:235,-175,73,0,0,0.0766038 -36163,7717:134,-174,73,0,0,0.0766111 -36164,7717:133,-173,73,0,0,0.0766184 -36165,7717:132,-172,73,0,0,0.0766184 -36166,7717:131,-171,73,0,0,0.0766328 -36167,7717:130,-170,73,0,0,0.0766401 -36168,7716:239,-169,73,0,0,0.0766621 -36169,7716:238,-168,73,0,0,0.0766548 -36170,7716:237,-167,73,0,0,0.0766257 -36171,7716:236,-166,73,0,0,0.0766328 -36172,7716:235,-165,73,0,0,0.0765893 -36173,7716:134,-164,73,0,0,0.0765166 -36174,7716:133,-163,73,0,0,0.0764949 -36175,7716:132,-162,73,0,0,0.0764442 -36176,7716:131,-161,73,0,0,0.076415 -36177,7716:130,-160,73,0,0,0.076415 -36178,7715:239,-159,73,0,0,0.0764803 -36179,7715:238,-158,73,0,0,0.0766328 -36180,7715:237,-157,73,0,0,0.0766621 -36181,7715:236,-156,73,0,0,0.0766111 -36182,7715:235,-155,73,0,0,0.0759595 -36183,7715:134,-154,73,0,0,0.0755854 -36184,7714:237,-147,73,0,0,0.0768659 -36185,7714:236,-146,73,0,0,0.0767347 -36186,7714:235,-145,73,0,0,0.0765603 -36187,7714:134,-144,73,0,0,0.0766983 -36188,7714:133,-143,73,0,0,0.0767712 -36189,7714:132,-142,73,0,0,0.0766765 -36190,7714:131,-141,73,0,0,0.076524 -36191,7714:130,-140,73,0,0,0.0769754 -36192,7707:133,-73,73,0,0,0.0790369 -36193,7707:132,-72,73,0,0,0.0784405 -36194,7706:236,-66,73,0,0,0.0769315 -36195,7706:235,-65,73,0,0,0.0769462 -36196,7706:134,-64,73,0,0,0.0769825 -36197,7706:133,-63,73,0,0,0.0770264 -36198,7706:132,-62,73,0,0,0.0769899 -36199,7706:131,-61,73,0,0,0.0769754 -36200,7706:130,-60,73,0,0,0.0769681 -36201,7705:239,-59,73,0,0,0.0769534 -36202,7705:238,-58,73,0,0,0.0769097 -36203,7705:237,-57,73,0,0,0.0768806 -36204,7705:133,-53,73,0,0,0.0768076 -36205,7705:132,-52,73,0,0,0.0767567 -36206,7704:134,-44,73,0,0,0.07635 -36207,7704:133,-43,73,0,0,0.0762558 -36208,7704:132,-42,73,0,0,0.0762267 -36209,7704:131,-41,73,0,0,0.0762558 -36210,7704:130,-40,73,0,0,0.076205 -36211,7703:239,-39,73,0,0,0.0762123 -36212,7703:236,-36,73,0,0,0.0762558 -36213,7703:132,-32,73,0,0,0.0763789 -36214,7703:131,-31,73,0,0,0.0763354 -36215,7702:134,-24,73,0,0,0.076234 -36216,7702:133,-23,73,0,0,0.0762123 -36217,7702:132,-22,73,0,0,0.076205 -36218,7702:131,-21,73,0,0,0.0761256 -36219,7702:130,-20,73,0,0,0.0760606 -36220,7701:239,-19,73,0,0,0.0759234 -36221,7701:238,-18,73,0,0,0.075686 -36222,7701:237,-17,73,0,0,0.0755065 -36223,7701:236,-16,73,0,0,0.0754348 -36224,7701:235,-15,73,0,0,0.0755065 -36225,7701:134,-14,73,0,0,0.0764586 -36226,7701:133,-13,73,0,0,0.0788053 -36227,7701:132,-12,73,0,0,0.0884155 -36228,7701:131,-11,73,0,0,0.113537 -36229,7701:130,-10,73,0,0,0.114752 -36230,7700:239,-9,73,0,0,0.0945181 -36231,7700:238,-8,73,0,0,0.0860351 -36232,7700:237,-7,73,0,0,0.0841159 -36233,7700:236,-6,73,0,0,0.0820805 -36234,7700:235,-5,73,0,0,0.077451 -36235,7700:134,-4,73,0,0,0.077363 -36236,7700:133,-3,73,0,0,0.0785744 -36237,7700:132,-2,73,0,0,0.0813711 -36238,7700:131,-1,73,0,0,0.079284 -36239,1700:131,0,73,0,0,0.0800449 -36240,1700:131,1,73,0,0,0.0808276 -36241,1700:132,2,73,0,0,0.0866917 -36242,1700:133,3,73,0,0,0.0925235 -36243,1700:134,4,73,0,0,0.105078 -36244,1700:235,5,73,0,0,0.104615 -36245,1700:236,6,73,0,0,0.106467 -36246,1700:237,7,73,0,0,0.109095 -36247,1700:238,8,73,0,0,0.109666 -36248,1700:239,9,73,0,0,0.107893 -36249,1701:130,10,73,0,0,0.108826 -36250,1701:131,11,73,0,0,0.109706 -36251,1701:132,12,73,0,0,0.114491 -36252,1701:133,13,73,0,0,0.108081 -36253,1701:134,14,73,0,0,0.0931552 -36254,1701:237,17,73,0,0,0.0837997 -36255,1701:238,18,73,0,0,0.0906516 -36256,1701:239,19,73,0,0,0.092463 -36257,1702:130,20,73,0,0,0.0852306 -36258,1702:131,21,73,0,0,0.077974 -36259,1702:132,22,73,0,0,0.0769534 -36260,1714:235,145,73,0,0,0.0773998 -36261,1714:236,146,73,0,0,0.0769607 -36262,1714:237,147,73,0,0,0.0757362 -36263,1714:238,148,73,0,0,0.0756645 -36264,1714:239,149,73,0,0,0.075442 -36265,1715:130,150,73,0,0,0.0755781 -36266,1715:131,151,73,0,0,0.0756285 -36267,1715:132,152,73,0,0,0.0754706 -36268,1715:133,153,73,0,0,0.075442 -36269,1715:134,154,73,0,0,0.0755207 -36270,1715:235,155,73,0,0,0.0756068 -36271,1715:236,156,73,0,0,0.075686 -36272,1715:237,157,73,0,0,0.0758155 -36273,1715:238,158,73,0,0,0.0759595 -36274,1715:239,159,73,0,0,0.0760245 -36275,1716:130,160,73,0,0,0.0760749 -36276,1716:131,161,73,0,0,0.0761183 -36277,1716:132,162,73,0,0,0.0761761 -36278,1716:133,163,73,0,0,0.0762123 -36279,1716:134,164,73,0,0,0.0761978 -36280,1716:235,165,73,0,0,0.0761907 -36281,1716:236,166,73,0,0,0.0761834 -36282,1716:237,167,73,0,0,0.0761761 -36283,1716:238,168,73,0,0,0.0761978 -36284,1716:239,169,73,0,0,0.076234 -36285,1717:130,170,73,0,0,0.0762629 -36286,1717:131,171,73,0,0,0.0762918 -36287,1717:132,172,73,0,0,0.0763064 -36288,1717:133,173,73,0,0,0.0762991 -36289,1717:134,174,73,0,0,0.0763064 -36290,1717:235,175,73,0,0,0.0763137 -36291,1717:236,176,73,0,0,0.0763281 -36292,1717:237,177,73,0,0,0.0763427 -36293,1717:238,178,73,0,0,0.0763716 -36294,1717:239,179,73,0,0,0.076415 -36295,1718:130,180,73,0,0,0.0764442 -36296,7718:140,-180,74,0,0,0.0764369 -36297,7717:249,-179,74,0,0,0.0764369 -36298,7717:248,-178,74,0,0,0.0764513 -36299,7717:247,-177,74,0,0,0.0764803 -36300,7717:246,-176,74,0,0,0.0765093 -36301,7717:245,-175,74,0,0,0.0765313 -36302,7717:144,-174,74,0,0,0.0765603 -36303,7717:143,-173,74,0,0,0.0765676 -36304,7717:142,-172,74,0,0,0.0765603 -36305,7717:141,-171,74,0,0,0.0765384 -36306,7717:140,-170,74,0,0,0.0765384 -36307,7716:249,-169,74,0,0,0.076553 -36308,7716:248,-168,74,0,0,0.0766257 -36309,7716:247,-167,74,0,0,0.0766401 -36310,7716:246,-166,74,0,0,0.0766184 -36311,7716:245,-165,74,0,0,0.0765603 -36312,7716:144,-164,74,0,0,0.0764949 -36313,7716:143,-163,74,0,0,0.0764586 -36314,7716:142,-162,74,0,0,0.0764223 -36315,7716:141,-161,74,0,0,0.0764006 -36316,7716:140,-160,74,0,0,0.0764223 -36317,7715:249,-159,74,0,0,0.0765603 -36318,7715:248,-158,74,0,0,0.0766328 -36319,7715:247,-157,74,0,0,0.0766038 -36320,7714:249,-149,74,0,0,0.076895 -36321,7714:248,-148,74,0,0,0.0771067 -36322,7714:247,-147,74,0,0,0.0769681 -36323,7714:246,-146,74,0,0,0.0769462 -36324,7714:245,-145,74,0,0,0.0766765 -36325,7714:144,-144,74,0,0,0.0768514 -36326,7714:143,-143,74,0,0,0.0769242 -36327,7714:140,-140,74,0,0,0.0767567 -36328,7713:249,-139,74,0,0,0.0773559 -36329,7713:245,-135,74,0,0,0.077937 -36330,7707:249,-79,74,0,0,0.0797126 -36331,7707:248,-78,74,0,0,0.0804088 -36332,7707:247,-77,74,0,0,0.0808887 -36333,7707:142,-72,74,0,0,0.0779814 -36334,7706:245,-65,74,0,0,0.0769242 -36335,7706:144,-64,74,0,0,0.0770046 -36336,7706:143,-63,74,0,0,0.0770849 -36337,7705:249,-59,74,0,0,0.0769168 -36338,7705:248,-58,74,0,0,0.0769024 -36339,7705:144,-54,74,0,0,0.0766401 -36340,7705:143,-53,74,0,0,0.0766475 -36341,7703:247,-37,74,0,0,0.0762918 -36342,7703:245,-35,74,0,0,0.0762629 -36343,7703:144,-34,74,0,0,0.0762196 -36344,7703:143,-33,74,0,0,0.076234 -36345,7703:142,-32,74,0,0,0.076234 -36346,7703:141,-31,74,0,0,0.0762991 -36347,7703:140,-30,74,0,0,0.0762775 -36348,7702:249,-29,74,0,0,0.0762485 -36349,7702:248,-28,74,0,0,0.0762267 -36350,7702:247,-27,74,0,0,0.0762123 -36351,7702:246,-26,74,0,0,0.076205 -36352,7702:245,-25,74,0,0,0.076205 -36353,7702:144,-24,74,0,0,0.0762267 -36354,7702:143,-23,74,0,0,0.0762196 -36355,7702:142,-22,74,0,0,0.07614 -36356,7702:141,-21,74,0,0,0.0760029 -36357,7702:140,-20,74,0,0,0.0759091 -36358,7701:249,-19,74,0,0,0.0758803 -36359,7701:248,-18,74,0,0,0.0758298 -36360,7701:247,-17,74,0,0,0.075722 -36361,7701:246,-16,74,0,0,0.0755494 -36362,7701:245,-15,74,0,0,0.0754348 -36363,7701:144,-14,74,0,0,0.075758 -36364,7701:143,-13,74,0,0,0.0764223 -36365,7701:142,-12,74,0,0,0.076895 -36366,7701:141,-11,74,0,0,0.0783737 -36367,7701:140,-10,74,0,0,0.100521 -36368,7700:249,-9,74,0,0,0.112466 -36369,7700:248,-8,74,0,0,0.102535 -36370,7700:247,-7,74,0,0,0.0816018 -36371,7700:246,-6,74,0,0,0.0773778 -36372,7700:245,-5,74,0,0,0.0771799 -36373,7700:144,-4,74,0,0,0.077451 -36374,7700:143,-3,74,0,0,0.0770996 -36375,7700:142,-2,74,0,0,0.0783737 -36376,7700:141,-1,74,0,0,0.0782551 -36377,1700:141,0,74,0,0,0.0855999 -36378,1700:141,1,74,0,0,0.0909314 -36379,1700:142,2,74,0,0,0.0974329 -36380,1700:143,3,74,0,0,0.102158 -36381,1700:144,4,74,0,0,0.103209 -36382,1700:245,5,74,0,0,0.0963898 -36383,1700:246,6,74,0,0,0.100344 -36384,1700:247,7,74,0,0,0.10596 -36385,1700:248,8,74,0,0,0.106693 -36386,1700:249,9,74,0,0,0.102668 -36387,1701:140,10,74,0,0,0.094395 -36388,1701:141,11,74,0,0,0.104384 -36389,1701:142,12,74,0,0,0.0993467 -36390,1701:143,13,74,0,0,0.0871401 -36391,1701:249,19,74,0,0,0.0835084 -36392,1702:140,20,74,0,0,0.0870177 -36393,1702:141,21,74,0,0,0.0775394 -36394,1702:142,22,74,0,0,0.076386 -36395,1702:143,23,74,0,0,0.0766475 -36396,1714:142,142,74,0,0,0.0787084 -36397,1714:143,143,74,0,0,0.0785224 -36398,1714:144,144,74,0,0,0.0781663 -36399,1714:245,145,74,0,0,0.0773411 -36400,1714:246,146,74,0,0,0.0762629 -36401,1714:247,147,74,0,0,0.0758082 -36402,1714:248,148,74,0,0,0.075765 -36403,1714:249,149,74,0,0,0.075528 -36404,1715:140,150,74,0,0,0.0753561 -36405,1715:141,151,74,0,0,0.0755424 -36406,1715:142,152,74,0,0,0.075442 -36407,1715:143,153,74,0,0,0.0754348 -36408,1715:144,154,74,0,0,0.0755494 -36409,1715:245,155,74,0,0,0.0756141 -36410,1715:246,156,74,0,0,0.0756645 -36411,1715:247,157,74,0,0,0.075765 -36412,1715:248,158,74,0,0,0.0758658 -36413,1715:249,159,74,0,0,0.0759595 -36414,1716:140,160,74,0,0,0.0760317 -36415,1716:141,161,74,0,0,0.0760822 -36416,1716:142,162,74,0,0,0.0761327 -36417,1716:143,163,74,0,0,0.0761545 -36418,1716:144,164,74,0,0,0.0761618 -36419,1716:245,165,74,0,0,0.0761545 -36420,1716:246,166,74,0,0,0.0761472 -36421,1716:247,167,74,0,0,0.0761472 -36422,1716:248,168,74,0,0,0.0761618 -36423,1716:249,169,74,0,0,0.0761978 -36424,1717:140,170,74,0,0,0.0762267 -36425,1717:141,171,74,0,0,0.0762558 -36426,1717:142,172,74,0,0,0.0762702 -36427,1717:143,173,74,0,0,0.0762702 -36428,1717:144,174,74,0,0,0.0762702 -36429,1717:245,175,74,0,0,0.0762991 -36430,1717:246,176,74,0,0,0.0763281 -36431,1717:247,177,74,0,0,0.0763354 -36432,1717:248,178,74,0,0,0.0763427 -36433,1717:249,179,74,0,0,0.0763933 -36434,1718:140,180,74,0,0,0.0764369 -36435,7718:350,-180,75,0,0,0.0763571 -36436,7717:459,-179,75,0,0,0.0763933 -36437,7717:458,-178,75,0,0,0.076386 -36438,7717:457,-177,75,0,0,0.0764223 -36439,7717:456,-176,75,0,0,0.0764513 -36440,7717:455,-175,75,0,0,0.0764659 -36441,7717:354,-174,75,0,0,0.0764803 -36442,7717:353,-173,75,0,0,0.0765022 -36443,7717:352,-172,75,0,0,0.0765022 -36444,7717:351,-171,75,0,0,0.0764876 -36445,7717:350,-170,75,0,0,0.0764803 -36446,7716:459,-169,75,0,0,0.0764803 -36447,7716:458,-168,75,0,0,0.0765603 -36448,7716:457,-167,75,0,0,0.0766111 -36449,7716:456,-166,75,0,0,0.0765747 -36450,7716:455,-165,75,0,0,0.0765093 -36451,7716:354,-164,75,0,0,0.0764442 -36452,7716:353,-163,75,0,0,0.0764079 -36453,7716:352,-162,75,0,0,0.0763789 -36454,7716:351,-161,75,0,0,0.0764659 -36455,7716:350,-160,75,0,0,0.0765676 -36456,7715:459,-159,75,0,0,0.076582 -36457,7715:458,-158,75,0,0,0.0765893 -36458,7715:457,-157,75,0,0,0.0764296 -36459,7715:456,-156,75,0,0,0.0768221 -36460,7715:350,-150,75,0,0,0.0766983 -36461,7714:459,-149,75,0,0,0.0772018 -36462,7714:456,-146,75,0,0,0.0768806 -36463,7714:353,-143,75,0,0,0.0767929 -36464,7713:459,-139,75,0,0,0.0773118 -36465,7713:458,-138,75,0,0,0.0774291 -36466,7713:457,-137,75,0,0,0.0776421 -36467,7713:456,-136,75,0,0,0.0781218 -36468,7713:455,-135,75,0,0,0.0779519 -36469,7713:354,-134,75,0,0,0.0777896 -36470,7708:350,-80,75,0,0,0.0795694 -36471,7707:459,-79,75,0,0,0.0789322 -36472,7707:458,-78,75,0,0,0.0800599 -36473,7707:457,-77,75,0,0,0.0808963 -36474,7707:455,-75,75,0,0,0.0796523 -36475,7707:354,-74,75,0,0,0.0786861 -36476,7707:353,-73,75,0,0,0.0781071 -36477,7707:352,-72,75,0,0,0.0779296 -36478,7707:351,-71,75,0,0,0.0778337 -36479,7707:350,-70,75,0,0,0.0777601 -36480,7706:459,-69,75,0,0,0.077679 -36481,7706:458,-68,75,0,0,0.0775981 -36482,7706:457,-67,75,0,0,0.0774732 -36483,7706:456,-66,75,0,0,0.0772678 -36484,7706:455,-65,75,0,0,0.0769899 -36485,7705:459,-59,75,0,0,0.0769534 -36486,7705:458,-58,75,0,0,0.0768221 -36487,7705:354,-54,75,0,0,0.0768806 -36488,7705:353,-53,75,0,0,0.0768514 -36489,7704:459,-49,75,0,0,0.0767567 -36490,7703:354,-34,75,0,0,0.0762848 -36491,7703:353,-33,75,0,0,0.0762196 -36492,7703:352,-32,75,0,0,0.076205 -36493,7703:351,-31,75,0,0,0.0761907 -36494,7703:350,-30,75,0,0,0.0761978 -36495,7702:459,-29,75,0,0,0.0761978 -36496,7702:458,-28,75,0,0,0.0761978 -36497,7702:457,-27,75,0,0,0.0761978 -36498,7702:456,-26,75,0,0,0.076205 -36499,7702:455,-25,75,0,0,0.0762267 -36500,7702:354,-24,75,0,0,0.076234 -36501,7702:353,-23,75,0,0,0.0762485 -36502,7702:352,-22,75,0,0,0.0762123 -36503,7702:351,-21,75,0,0,0.0761183 -36504,7702:350,-20,75,0,0,0.0760317 -36505,7701:459,-19,75,0,0,0.0759956 -36506,7701:458,-18,75,0,0,0.0759234 -36507,7701:457,-17,75,0,0,0.0757795 -36508,7701:456,-16,75,0,0,0.0755854 -36509,7701:455,-15,75,0,0,0.075442 -36510,7701:354,-14,75,0,0,0.0753272 -36511,7701:353,-13,75,0,0,0.0753989 -36512,7701:352,-12,75,0,0,0.0755352 -36513,7701:351,-11,75,0,0,0.0762918 -36514,7701:350,-10,75,0,0,0.078463 -36515,7700:459,-9,75,0,0,0.089741 -36516,7700:458,-8,75,0,0,0.103047 -36517,7700:457,-7,75,0,0,0.080988 -36518,7700:456,-6,75,0,0,0.0782997 -36519,7700:455,-5,75,0,0,0.0789995 -36520,7700:354,-4,75,0,0,0.0796372 -36521,7700:353,-3,75,0,0,0.0791191 -36522,7700:352,-2,75,0,0,0.0774658 -36523,7700:351,-1,75,0,0,0.0800525 -36524,1700:351,0,75,0,0,0.0819026 -36525,1700:351,1,75,0,0,0.0916472 -36526,1700:352,2,75,0,0,0.0958097 -36527,1700:353,3,75,0,0,0.0958187 -36528,1700:354,4,75,0,0,0.0948438 -36529,1700:455,5,75,0,0,0.094237 -36530,1700:456,6,75,0,0,0.0921963 -36531,1700:457,7,75,0,0,0.102914 -36532,1700:458,8,75,0,0,0.0982218 -36533,1700:459,9,75,0,0,0.0959255 -36534,1701:350,10,75,0,0,0.0977858 -36535,1701:351,11,75,0,0,0.0978038 -36536,1701:455,15,75,0,0,0.0781663 -36537,1701:456,16,75,0,0,0.0801583 -36538,1701:457,17,75,0,0,0.0808353 -36539,1701:458,18,75,0,0,0.0815327 -36540,1701:459,19,75,0,0,0.0799844 -36541,1702:350,20,75,0,0,0.0797351 -36542,1702:351,21,75,0,0,0.0797427 -36543,1702:352,22,75,0,0,0.0762196 -36544,1702:353,23,75,0,0,0.0770117 -36545,1702:354,24,75,0,0,0.0777453 -36546,1714:350,140,75,0,0,0.0783812 -36547,1714:351,141,75,0,0,0.0780701 -36548,1714:352,142,75,0,0,0.0777158 -36549,1714:353,143,75,0,0,0.076713 -36550,1714:354,144,75,0,0,0.0757075 -36551,1714:458,148,75,0,0,0.0759091 -36552,1714:459,149,75,0,0,0.0755854 -36553,1715:350,150,75,0,0,0.0753631 -36554,1715:351,151,75,0,0,0.0753703 -36555,1715:352,152,75,0,0,0.0753703 -36556,1715:353,153,75,0,0,0.0754203 -36557,1715:354,154,75,0,0,0.0755711 -36558,1715:455,155,75,0,0,0.0756715 -36559,1715:456,156,75,0,0,0.0757002 -36560,1715:457,157,75,0,0,0.075729 -36561,1715:458,158,75,0,0,0.0758225 -36562,1715:459,159,75,0,0,0.0759307 -36563,1716:350,160,75,0,0,0.0759956 -36564,1716:351,161,75,0,0,0.076046 -36565,1716:352,162,75,0,0,0.0761111 -36566,1716:353,163,75,0,0,0.0761256 -36567,1716:354,164,75,0,0,0.0761327 -36568,1716:455,165,75,0,0,0.0761327 -36569,1716:456,166,75,0,0,0.07614 -36570,1716:457,167,75,0,0,0.0761545 -36571,1716:458,168,75,0,0,0.0761618 -36572,1716:459,169,75,0,0,0.0761907 -36573,1717:350,170,75,0,0,0.0762123 -36574,1717:351,171,75,0,0,0.0762267 -36575,1717:352,172,75,0,0,0.076234 -36576,1717:353,173,75,0,0,0.076234 -36577,1717:354,174,75,0,0,0.0762413 -36578,1717:455,175,75,0,0,0.0762629 -36579,1717:456,176,75,0,0,0.0762918 -36580,1717:457,177,75,0,0,0.0763137 -36581,1717:458,178,75,0,0,0.0763208 -36582,1717:459,179,75,0,0,0.0763208 -36583,1718:350,180,75,0,0,0.0763571 -36584,7718:360,-180,76,0,0,0.0763427 -36585,7717:469,-179,76,0,0,0.0763571 -36586,7717:468,-178,76,0,0,0.0763571 -36587,7717:467,-177,76,0,0,0.0763643 -36588,7717:466,-176,76,0,0,0.0764006 -36589,7717:465,-175,76,0,0,0.0764223 -36590,7717:364,-174,76,0,0,0.0764296 -36591,7717:363,-173,76,0,0,0.0764513 -36592,7717:362,-172,76,0,0,0.0764659 -36593,7717:361,-171,76,0,0,0.0764732 -36594,7717:360,-170,76,0,0,0.0764803 -36595,7716:469,-169,76,0,0,0.0764949 -36596,7716:468,-168,76,0,0,0.0765384 -36597,7716:467,-167,76,0,0,0.0765747 -36598,7716:466,-166,76,0,0,0.076553 -36599,7716:465,-165,76,0,0,0.0764803 -36600,7716:364,-164,76,0,0,0.0764006 -36601,7716:363,-163,76,0,0,0.0763571 -36602,7716:362,-162,76,0,0,0.0764803 -36603,7716:361,-161,76,0,0,0.0766111 -36604,7715:469,-159,76,0,0,0.0766765 -36605,7715:468,-158,76,0,0,0.0765967 -36606,7715:467,-157,76,0,0,0.0766257 -36607,7715:466,-156,76,0,0,0.0767785 -36608,7715:465,-155,76,0,0,0.0768221 -36609,7715:364,-154,76,0,0,0.0764876 -36610,7714:363,-143,76,0,0,0.0767274 -36611,7713:465,-135,76,0,0,0.077856 -36612,7713:364,-134,76,0,0,0.077878 -36613,7713:363,-133,76,0,0,0.0779296 -36614,7708:361,-81,76,0,0,0.0785819 -36615,7708:360,-80,76,0,0,0.0785744 -36616,7707:469,-79,76,0,0,0.0782922 -36617,7707:468,-78,76,0,0,0.080007 -36618,7707:467,-77,76,0,0,0.080113 -36619,7707:466,-76,76,0,0,0.0790369 -36620,7707:465,-75,76,0,0,0.0792915 -36621,7707:364,-74,76,0,0,0.0783368 -36622,7707:363,-73,76,0,0,0.078048 -36623,7707:362,-72,76,0,0,0.077797 -36624,7707:361,-71,76,0,0,0.0775394 -36625,7707:360,-70,76,0,0,0.0774806 -36626,7706:469,-69,76,0,0,0.077679 -36627,7706:468,-68,76,0,0,0.0777821 -36628,7706:364,-64,76,0,0,0.0769973 -36629,7706:363,-63,76,0,0,0.0770191 -36630,7706:362,-62,76,0,0,0.0769681 -36631,7706:360,-60,76,0,0,0.0769754 -36632,7705:469,-59,76,0,0,0.0769462 -36633,7705:467,-57,76,0,0,0.0766621 -36634,7705:466,-56,76,0,0,0.0765967 -36635,7705:465,-55,76,0,0,0.0764369 -36636,7705:362,-52,76,0,0,0.0766692 -36637,7705:360,-50,76,0,0,0.0765676 -36638,7704:469,-49,76,0,0,0.0765747 -36639,7704:468,-48,76,0,0,0.0764876 -36640,7704:467,-47,76,0,0,0.076415 -36641,7704:362,-42,76,0,0,0.0767056 -36642,7703:364,-34,76,0,0,0.0761834 -36643,7703:363,-33,76,0,0,0.0761834 -36644,7703:362,-32,76,0,0,0.0761618 -36645,7703:361,-31,76,0,0,0.0761618 -36646,7703:360,-30,76,0,0,0.0761689 -36647,7702:469,-29,76,0,0,0.0761978 -36648,7702:468,-28,76,0,0,0.076234 -36649,7702:467,-27,76,0,0,0.0762702 -36650,7702:466,-26,76,0,0,0.0762702 -36651,7702:465,-25,76,0,0,0.0762775 -36652,7702:364,-24,76,0,0,0.0762918 -36653,7702:363,-23,76,0,0,0.0762991 -36654,7702:362,-22,76,0,0,0.0762775 -36655,7702:361,-21,76,0,0,0.0761761 -36656,7702:360,-20,76,0,0,0.0761111 -36657,7701:469,-19,76,0,0,0.0759595 -36658,7701:468,-18,76,0,0,0.075729 -36659,7701:467,-17,76,0,0,0.0755998 -36660,7701:466,-16,76,0,0,0.0755711 -36661,7701:465,-15,76,0,0,0.0755781 -36662,7701:364,-14,76,0,0,0.0754706 -36663,7701:363,-13,76,0,0,0.0754133 -36664,7701:362,-12,76,0,0,0.0754562 -36665,7701:361,-11,76,0,0,0.0756141 -36666,7701:360,-10,76,0,0,0.0758874 -36667,7700:469,-9,76,0,0,0.0765384 -36668,7700:468,-8,76,0,0,0.0842266 -36669,7700:467,-7,76,0,0,0.0779075 -36670,7700:466,-6,76,0,0,0.0776495 -36671,7700:465,-5,76,0,0,0.0778854 -36672,7700:364,-4,76,0,0,0.0787159 -36673,7700:363,-3,76,0,0,0.0787605 -36674,7700:362,-2,76,0,0,0.0781663 -36675,7700:361,-1,76,0,0,0.0786636 -36676,1700:361,0,76,0,0,0.0803632 -36677,1700:361,1,76,0,0,0.0877057 -36678,1700:362,2,76,0,0,0.0847193 -36679,1700:363,3,76,0,0,0.0848149 -36680,1700:364,4,76,0,0,0.0888136 -36681,1700:465,5,76,0,0,0.0904231 -36682,1700:466,6,76,0,0,0.0990346 -36683,1700:467,7,76,0,0,0.0904992 -36684,1700:468,8,76,0,0,0.0935551 -36685,1700:469,9,76,0,0,0.0970091 -36686,1701:360,10,76,0,0,0.0937995 -36687,1701:364,14,76,0,0,0.077797 -36688,1701:465,15,76,0,0,0.0778116 -36689,1701:466,16,76,0,0,0.0773411 -36690,1701:467,17,76,0,0,0.077635 -36691,1701:468,18,76,0,0,0.0780256 -36692,1701:469,19,76,0,0,0.0789545 -36693,1702:360,20,76,0,0,0.0814173 -36694,1702:361,21,76,0,0,0.0815327 -36695,1713:469,139,76,0,0,0.0784927 -36696,1714:360,140,76,0,0,0.077974 -36697,1714:361,141,76,0,0,0.0771873 -36698,1714:362,142,76,0,0,0.0761689 -36699,1714:363,143,76,0,0,0.0755567 -36700,1714:364,144,76,0,0,0.075758 -36701,1714:465,145,76,0,0,0.0754706 -36702,1714:468,148,76,0,0,0.0758225 -36703,1714:469,149,76,0,0,0.0758298 -36704,1715:360,150,76,0,0,0.0755207 -36705,1715:361,151,76,0,0,0.0753203 -36706,1715:362,152,76,0,0,0.0753272 -36707,1715:363,153,76,0,0,0.0753561 -36708,1715:364,154,76,0,0,0.0755065 -36709,1715:465,155,76,0,0,0.0756715 -36710,1715:466,156,76,0,0,0.0757507 -36711,1715:467,157,76,0,0,0.0757937 -36712,1715:468,158,76,0,0,0.0758298 -36713,1715:469,159,76,0,0,0.0758946 -36714,1716:360,160,76,0,0,0.0759379 -36715,1716:361,161,76,0,0,0.0759884 -36716,1716:362,162,76,0,0,0.0760606 -36717,1716:363,163,76,0,0,0.0761111 -36718,1716:364,164,76,0,0,0.0761256 -36719,1716:465,165,76,0,0,0.0761327 -36720,1716:466,166,76,0,0,0.0761472 -36721,1716:467,167,76,0,0,0.0761618 -36722,1716:468,168,76,0,0,0.0761761 -36723,1716:469,169,76,0,0,0.0761761 -36724,1717:360,170,76,0,0,0.0761907 -36725,1717:361,171,76,0,0,0.0761978 -36726,1717:362,172,76,0,0,0.076205 -36727,1717:363,173,76,0,0,0.0762196 -36728,1717:364,174,76,0,0,0.076234 -36729,1717:465,175,76,0,0,0.0762558 -36730,1717:466,176,76,0,0,0.0762848 -36731,1717:467,177,76,0,0,0.0763064 -36732,1717:468,178,76,0,0,0.0763208 -36733,1717:469,179,76,0,0,0.0763281 -36734,1718:360,180,76,0,0,0.0763427 -36735,7718:370,-180,77,0,0,0.0763354 -36736,7717:479,-179,77,0,0,0.07635 -36737,7717:478,-178,77,0,0,0.07635 -36738,7717:477,-177,77,0,0,0.0763643 -36739,7717:476,-176,77,0,0,0.0763789 -36740,7717:475,-175,77,0,0,0.0764006 -36741,7717:374,-174,77,0,0,0.0764079 -36742,7717:373,-173,77,0,0,0.0764079 -36743,7717:372,-172,77,0,0,0.0764079 -36744,7717:371,-171,77,0,0,0.0764369 -36745,7717:370,-170,77,0,0,0.0764803 -36746,7716:479,-169,77,0,0,0.0765166 -36747,7716:478,-168,77,0,0,0.076524 -36748,7716:477,-167,77,0,0,0.0765384 -36749,7716:476,-166,77,0,0,0.0764949 -36750,7716:475,-165,77,0,0,0.076415 -36751,7716:374,-164,77,0,0,0.0763571 -36752,7716:373,-163,77,0,0,0.0763789 -36753,7716:372,-162,77,0,0,0.0765967 -36754,7715:479,-159,77,0,0,0.0765313 -36755,7715:477,-157,77,0,0,0.0765603 -36756,7715:476,-156,77,0,0,0.0766111 -36757,7715:475,-155,77,0,0,0.0766912 -36758,7715:374,-154,77,0,0,0.0767203 -36759,7715:371,-151,77,0,0,0.0766692 -36760,7714:372,-142,77,0,0,0.0767056 -36761,7713:475,-135,77,0,0,0.077679 -36762,7713:374,-134,77,0,0,0.0777084 -36763,7713:373,-133,77,0,0,0.0778854 -36764,7708:371,-81,77,0,0,0.0781367 -36765,7708:370,-80,77,0,0,0.0780331 -36766,7707:479,-79,77,0,0,0.0780035 -36767,7707:477,-77,77,0,0,0.0786041 -36768,7707:476,-76,77,0,0,0.0782255 -36769,7707:373,-73,77,0,0,0.0778854 -36770,7707:372,-72,77,0,0,0.0776644 -36771,7707:371,-71,77,0,0,0.0773559 -36772,7707:370,-70,77,0,0,0.0772018 -36773,7706:479,-69,77,0,0,0.0776421 -36774,7706:371,-61,77,0,0,0.0766475 -36775,7706:370,-60,77,0,0,0.0767638 -36776,7705:479,-59,77,0,0,0.0768659 -36777,7705:476,-56,77,0,0,0.0765022 -36778,7705:475,-55,77,0,0,0.0764949 -36779,7705:372,-52,77,0,0,0.0764659 -36780,7705:371,-51,77,0,0,0.0764296 -36781,7705:370,-50,77,0,0,0.0764513 -36782,7704:374,-44,77,0,0,0.0765967 -36783,7704:373,-43,77,0,0,0.0766257 -36784,7703:476,-36,77,0,0,0.0763137 -36785,7703:475,-35,77,0,0,0.0761978 -36786,7703:374,-34,77,0,0,0.0761618 -36787,7703:373,-33,77,0,0,0.0761327 -36788,7703:372,-32,77,0,0,0.0761472 -36789,7703:371,-31,77,0,0,0.0761907 -36790,7703:370,-30,77,0,0,0.076234 -36791,7702:479,-29,77,0,0,0.0762629 -36792,7702:478,-28,77,0,0,0.0762629 -36793,7702:477,-27,77,0,0,0.0762702 -36794,7702:476,-26,77,0,0,0.0762848 -36795,7702:475,-25,77,0,0,0.0762848 -36796,7702:374,-24,77,0,0,0.0762848 -36797,7702:373,-23,77,0,0,0.0762702 -36798,7702:372,-22,77,0,0,0.0762267 -36799,7702:371,-21,77,0,0,0.0761907 -36800,7702:370,-20,77,0,0,0.0761472 -36801,7701:479,-19,77,0,0,0.076046 -36802,7701:478,-18,77,0,0,0.0759307 -36803,7701:477,-17,77,0,0,0.075758 -36804,7701:476,-16,77,0,0,0.0755567 -36805,7701:475,-15,77,0,0,0.0753631 -36806,7701:374,-14,77,0,0,0.0753344 -36807,7701:373,-13,77,0,0,0.0753489 -36808,7701:372,-12,77,0,0,0.0752772 -36809,7701:371,-11,77,0,0,0.0753631 -36810,7701:370,-10,77,0,0,0.0756068 -36811,7700:479,-9,77,0,0,0.0761545 -36812,7700:478,-8,77,0,0,0.0767056 -36813,7700:477,-7,77,0,0,0.0775687 -36814,7700:476,-6,77,0,0,0.078783 -36815,7700:475,-5,77,0,0,0.0788128 -36816,7700:374,-4,77,0,0,0.0778706 -36817,7700:372,-2,77,0,0,0.0795921 -36818,7700:371,-1,77,0,0,0.0792764 -36819,1700:371,0,77,0,0,0.0839498 -36820,1700:371,1,77,0,0,0.086448 -36821,1700:372,2,77,0,0,0.0850786 -36822,1700:373,3,77,0,0,0.0836422 -36823,1700:374,4,77,0,0,0.0938867 -36824,1700:475,5,77,0,0,0.096542 -36825,1700:476,6,77,0,0,0.0947997 -36826,1700:477,7,77,0,0,0.0852225 -36827,1700:478,8,77,0,0,0.0910759 -36828,1700:479,9,77,0,0,0.0895062 -36829,1701:372,12,77,0,0,0.0771799 -36830,1701:373,13,77,0,0,0.0768149 -36831,1701:374,14,77,0,0,0.0769754 -36832,1701:475,15,77,0,0,0.0769462 -36833,1701:476,16,77,0,0,0.077063 -36834,1701:477,17,77,0,0,0.0771581 -36835,1701:478,18,77,0,0,0.0773778 -36836,1701:479,19,77,0,0,0.0779591 -36837,1702:370,20,77,0,0,0.0801736 -36838,1702:371,21,77,0,0,0.0786861 -36839,1702:372,22,77,0,0,0.0764006 -36840,1713:477,137,77,0,0,0.078783 -36841,1713:478,138,77,0,0,0.0785669 -36842,1713:479,139,77,0,0,0.0779519 -36843,1714:370,140,77,0,0,0.0769681 -36844,1714:371,141,77,0,0,0.075313 -36845,1714:372,142,77,0,0,0.0752986 -36846,1714:373,143,77,0,0,0.0754779 -36847,1714:374,144,77,0,0,0.0758443 -36848,1714:475,145,77,0,0,0.0757002 -36849,1714:479,149,77,0,0,0.0756572 -36850,1715:370,150,77,0,0,0.0758155 -36851,1715:371,151,77,0,0,0.0753561 -36852,1715:372,152,77,0,0,0.0753203 -36853,1715:373,153,77,0,0,0.0753272 -36854,1715:374,154,77,0,0,0.0754921 -36855,1715:475,155,77,0,0,0.0756428 -36856,1715:476,156,77,0,0,0.0757002 -36857,1715:477,157,77,0,0,0.0757362 -36858,1715:478,158,77,0,0,0.0757937 -36859,1715:479,159,77,0,0,0.0758731 -36860,1716:370,160,77,0,0,0.0759307 -36861,1716:371,161,77,0,0,0.0759668 -36862,1716:372,162,77,0,0,0.0760245 -36863,1716:373,163,77,0,0,0.0761038 -36864,1716:374,164,77,0,0,0.07614 -36865,1716:475,165,77,0,0,0.0761472 -36866,1716:476,166,77,0,0,0.0761545 -36867,1716:477,167,77,0,0,0.0761618 -36868,1716:478,168,77,0,0,0.0761834 -36869,1716:479,169,77,0,0,0.0761907 -36870,1717:370,170,77,0,0,0.0761907 -36871,1717:371,171,77,0,0,0.0761978 -36872,1717:372,172,77,0,0,0.076205 -36873,1717:373,173,77,0,0,0.0762196 -36874,1717:374,174,77,0,0,0.0762267 -36875,1717:475,175,77,0,0,0.0762629 -36876,1717:476,176,77,0,0,0.0762918 -36877,1717:477,177,77,0,0,0.0763064 -36878,1717:478,178,77,0,0,0.0763137 -36879,1717:479,179,77,0,0,0.0763208 -36880,1718:370,180,77,0,0,0.0763354 -36881,7718:380,-180,78,0,0,0.0763064 -36882,7717:489,-179,78,0,0,0.0763137 -36883,7717:488,-178,78,0,0,0.0763281 -36884,7717:487,-177,78,0,0,0.07635 -36885,7717:486,-176,78,0,0,0.0763643 -36886,7717:485,-175,78,0,0,0.0763789 -36887,7717:384,-174,78,0,0,0.0763716 -36888,7717:383,-173,78,0,0,0.0763643 -36889,7717:382,-172,78,0,0,0.0764006 -36890,7717:381,-171,78,0,0,0.0764442 -36891,7717:380,-170,78,0,0,0.0764949 -36892,7716:489,-169,78,0,0,0.0764949 -36893,7716:488,-168,78,0,0,0.0764949 -36894,7716:487,-167,78,0,0,0.0764803 -36895,7716:486,-166,78,0,0,0.0764223 -36896,7716:485,-165,78,0,0,0.0763643 -36897,7716:384,-164,78,0,0,0.0763427 -36898,7716:383,-163,78,0,0,0.0765093 -36899,7715:489,-159,78,0,0,0.0764949 -36900,7715:488,-158,78,0,0,0.076553 -36901,7715:485,-155,78,0,0,0.0766328 -36902,7715:384,-154,78,0,0,0.0766111 -36903,7715:383,-153,78,0,0,0.0766184 -36904,7715:382,-152,78,0,0,0.0766621 -36905,7715:381,-151,78,0,0,0.0766184 -36906,7714:489,-149,78,0,0,0.0776275 -36907,7714:382,-142,78,0,0,0.0759452 -36908,7713:485,-135,78,0,0,0.0776644 -36909,7713:384,-134,78,0,0,0.077819 -36910,7713:383,-133,78,0,0,0.0778116 -36911,7708:380,-80,78,0,0,0.0779224 -36912,7707:489,-79,78,0,0,0.077974 -36913,7707:488,-78,78,0,0,0.078085 -36914,7707:485,-75,78,0,0,0.0784405 -36915,7707:382,-72,78,0,0,0.0773411 -36916,7707:381,-71,78,0,0,0.0770117 -36917,7707:380,-70,78,0,0,0.0770191 -36918,7706:489,-69,78,0,0,0.0770922 -36919,7706:488,-68,78,0,0,0.0772311 -36920,7706:487,-67,78,0,0,0.0772459 -36921,7706:382,-62,78,0,0,0.0766692 -36922,7706:381,-61,78,0,0,0.0766038 -36923,7706:380,-60,78,0,0,0.0766257 -36924,7705:489,-59,78,0,0,0.0767203 -36925,7705:488,-58,78,0,0,0.0766111 -36926,7705:487,-57,78,0,0,0.0765093 -36927,7705:486,-56,78,0,0,0.0765022 -36928,7705:485,-55,78,0,0,0.0764949 -36929,7705:384,-54,78,0,0,0.0765166 -36930,7705:382,-52,78,0,0,0.0765093 -36931,7705:380,-50,78,0,0,0.0764513 -36932,7704:489,-49,78,0,0,0.0765384 -36933,7704:383,-43,78,0,0,0.0766111 -36934,7703:488,-38,78,0,0,0.0764006 -36935,7703:487,-37,78,0,0,0.0763137 -36936,7703:486,-36,78,0,0,0.0762629 -36937,7703:485,-35,78,0,0,0.0762775 -36938,7703:384,-34,78,0,0,0.0762413 -36939,7703:383,-33,78,0,0,0.0762123 -36940,7703:382,-32,78,0,0,0.076205 -36941,7703:381,-31,78,0,0,0.0762123 -36942,7703:380,-30,78,0,0,0.0762413 -36943,7702:489,-29,78,0,0,0.0762558 -36944,7702:488,-28,78,0,0,0.0762485 -36945,7702:487,-27,78,0,0,0.0762702 -36946,7702:486,-26,78,0,0,0.0762775 -36947,7702:485,-25,78,0,0,0.0762918 -36948,7702:384,-24,78,0,0,0.0762558 -36949,7702:383,-23,78,0,0,0.0762267 -36950,7702:382,-22,78,0,0,0.0762123 -36951,7702:381,-21,78,0,0,0.0761472 -36952,7702:380,-20,78,0,0,0.0760749 -36953,7701:489,-19,78,0,0,0.0760029 -36954,7701:488,-18,78,0,0,0.0758658 -36955,7701:487,-17,78,0,0,0.0757867 -36956,7701:486,-16,78,0,0,0.07565 -36957,7701:485,-15,78,0,0,0.0754492 -36958,7701:384,-14,78,0,0,0.075313 -36959,7701:383,-13,78,0,0,0.07527 -36960,7701:382,-12,78,0,0,0.0752559 -36961,7701:381,-11,78,0,0,0.0752631 -36962,7701:380,-10,78,0,0,0.0754061 -36963,7700:489,-9,78,0,0,0.0759162 -36964,7700:488,-8,78,0,0,0.0762775 -36965,7700:487,-7,78,0,0,0.0775026 -36966,7700:486,-6,78,0,0,0.0786266 -36967,7700:485,-5,78,0,0,0.0788053 -36968,7700:384,-4,78,0,0,0.0790369 -36969,7700:383,-3,78,0,0,0.0784852 -36970,7700:381,-1,78,0,0,0.0818642 -36971,1700:381,0,78,0,0,0.0824762 -36972,1700:381,1,78,0,0,0.0787234 -36973,1700:382,2,78,0,0,0.0782551 -36974,1700:383,3,78,0,0,0.0773411 -36975,1700:384,4,78,0,0,0.0814095 -36976,1700:485,5,78,0,0,0.0871239 -36977,1700:486,6,78,0,0,0.0884567 -36978,1700:487,7,78,0,0,0.0905415 -36979,1700:488,8,78,0,0,0.0839419 -36980,1701:381,11,78,0,0,0.0786861 -36981,1701:382,12,78,0,0,0.0769754 -36982,1701:383,13,78,0,0,0.0768514 -36983,1701:384,14,78,0,0,0.0768732 -36984,1701:485,15,78,0,0,0.0766839 -36985,1701:486,16,78,0,0,0.0769973 -36986,1701:487,17,78,0,0,0.0773118 -36987,1701:488,18,78,0,0,0.0787009 -36988,1701:489,19,78,0,0,0.0803555 -36989,1702:380,20,78,0,0,0.0803405 -36990,1702:381,21,78,0,0,0.0811335 -36991,1702:382,22,78,0,0,0.0782775 -36992,1702:383,23,78,0,0,0.0762485 -36993,1713:383,133,78,0,0,0.0802265 -36994,1713:384,134,78,0,0,0.079939 -36995,1713:485,135,78,0,0,0.0794567 -36996,1713:486,136,78,0,0,0.07827 -36997,1713:487,137,78,0,0,0.0767056 -36998,1713:488,138,78,0,0,0.0764876 -36999,1713:489,139,78,0,0,0.0758298 -37000,1714:380,140,78,0,0,0.0756355 -37001,1714:381,141,78,0,0,0.0757435 -37002,1714:382,142,78,0,0,0.0759523 -37003,1714:383,143,78,0,0,0.0760679 -37004,1714:384,144,78,0,0,0.0760606 -37005,1714:485,145,78,0,0,0.076039 -37006,1714:486,146,78,0,0,0.0755135 -37007,1715:380,150,78,0,0,0.0755424 -37008,1715:381,151,78,0,0,0.0756787 -37009,1715:382,152,78,0,0,0.0753489 -37010,1715:383,153,78,0,0,0.075313 -37011,1715:384,154,78,0,0,0.0754492 -37012,1715:485,155,78,0,0,0.0755494 -37013,1715:486,156,78,0,0,0.0755926 -37014,1715:487,157,78,0,0,0.0756285 -37015,1715:488,158,78,0,0,0.0757507 -37016,1715:489,159,78,0,0,0.0758803 -37017,1716:380,160,78,0,0,0.0759019 -37018,1716:381,161,78,0,0,0.0759234 -37019,1716:382,162,78,0,0,0.075974 -37020,1716:383,163,78,0,0,0.0760749 -37021,1716:384,164,78,0,0,0.07614 -37022,1716:485,165,78,0,0,0.0761472 -37023,1716:486,166,78,0,0,0.0761689 -37024,1716:487,167,78,0,0,0.0761834 -37025,1716:488,168,78,0,0,0.0761978 -37026,1716:489,169,78,0,0,0.0761978 -37027,1717:380,170,78,0,0,0.076205 -37028,1717:381,171,78,0,0,0.0762123 -37029,1717:382,172,78,0,0,0.0762196 -37030,1717:383,173,78,0,0,0.0762123 -37031,1717:384,174,78,0,0,0.0762267 -37032,1717:485,175,78,0,0,0.0762558 -37033,1717:486,176,78,0,0,0.0762848 -37034,1717:487,177,78,0,0,0.0762918 -37035,1717:488,178,78,0,0,0.0762918 -37036,1717:489,179,78,0,0,0.0762918 -37037,1718:380,180,78,0,0,0.0763064 -37038,7718:390,-180,79,0,0,0.0762702 -37039,7717:499,-179,79,0,0,0.0762918 -37040,7717:498,-178,79,0,0,0.0763354 -37041,7717:497,-177,79,0,0,0.0763354 -37042,7717:496,-176,79,0,0,0.0763354 -37043,7717:495,-175,79,0,0,0.0763427 -37044,7717:394,-174,79,0,0,0.0763571 -37045,7717:393,-173,79,0,0,0.076386 -37046,7717:392,-172,79,0,0,0.0764442 -37047,7717:391,-171,79,0,0,0.0764803 -37048,7717:390,-170,79,0,0,0.0764659 -37049,7716:499,-169,79,0,0,0.0764442 -37050,7716:498,-168,79,0,0,0.0764223 -37051,7716:497,-167,79,0,0,0.0763933 -37052,7716:496,-166,79,0,0,0.0763643 -37053,7716:495,-165,79,0,0,0.0763354 -37054,7716:394,-164,79,0,0,0.0763933 -37055,7716:393,-163,79,0,0,0.0765457 -37056,7716:391,-161,79,0,0,0.076553 -37057,7716:390,-160,79,0,0,0.0765747 -37058,7715:495,-155,79,0,0,0.0766184 -37059,7715:393,-153,79,0,0,0.0765457 -37060,7715:392,-152,79,0,0,0.0766038 -37061,7715:391,-151,79,0,0,0.0766184 -37062,7715:390,-150,79,0,0,0.0766328 -37063,7713:495,-135,79,0,0,0.0775687 -37064,7713:394,-134,79,0,0,0.077635 -37065,7713:393,-133,79,0,0,0.0776201 -37066,7713:392,-132,79,0,0,0.0778634 -37067,7708:391,-81,79,0,0,0.0777084 -37068,7708:390,-80,79,0,0,0.0779519 -37069,7707:499,-79,79,0,0,0.077937 -37070,7707:392,-72,79,0,0,0.0772825 -37071,7707:391,-71,79,0,0,0.0770409 -37072,7707:390,-70,79,0,0,0.0769825 -37073,7706:499,-69,79,0,0,0.0769681 -37074,7706:498,-68,79,0,0,0.0769681 -37075,7706:497,-67,79,0,0,0.0769168 -37076,7706:495,-65,79,0,0,0.077063 -37077,7706:394,-64,79,0,0,0.0769973 -37078,7706:392,-62,79,0,0,0.0767494 -37079,7706:391,-61,79,0,0,0.0765313 -37080,7706:390,-60,79,0,0,0.076524 -37081,7705:499,-59,79,0,0,0.0766328 -37082,7705:394,-54,79,0,0,0.0766257 -37083,7705:393,-53,79,0,0,0.0765676 -37084,7705:392,-52,79,0,0,0.0764659 -37085,7705:391,-51,79,0,0,0.0762991 -37086,7704:498,-48,79,0,0,0.0765384 -37087,7704:392,-42,79,0,0,0.0764803 -37088,7704:390,-40,79,0,0,0.0764513 -37089,7703:499,-39,79,0,0,0.0763281 -37090,7703:498,-38,79,0,0,0.0762775 -37091,7703:497,-37,79,0,0,0.0762702 -37092,7703:496,-36,79,0,0,0.0762702 -37093,7703:495,-35,79,0,0,0.0762991 -37094,7703:394,-34,79,0,0,0.0762918 -37095,7703:393,-33,79,0,0,0.0762413 -37096,7703:392,-32,79,0,0,0.0762413 -37097,7703:391,-31,79,0,0,0.0762413 -37098,7703:390,-30,79,0,0,0.076234 -37099,7702:499,-29,79,0,0,0.076234 -37100,7702:498,-28,79,0,0,0.076234 -37101,7702:497,-27,79,0,0,0.0762702 -37102,7702:496,-26,79,0,0,0.0762848 -37103,7702:495,-25,79,0,0,0.0762918 -37104,7702:394,-24,79,0,0,0.0762702 -37105,7702:393,-23,79,0,0,0.076205 -37106,7702:392,-22,79,0,0,0.0761689 -37107,7702:391,-21,79,0,0,0.0761472 -37108,7702:390,-20,79,0,0,0.0760967 -37109,7701:499,-19,79,0,0,0.076046 -37110,7701:498,-18,79,0,0,0.0759307 -37111,7701:497,-17,79,0,0,0.0756787 -37112,7701:496,-16,79,0,0,0.0755854 -37113,7701:495,-15,79,0,0,0.0754921 -37114,7701:394,-14,79,0,0,0.0753489 -37115,7701:393,-13,79,0,0,0.0752844 -37116,7701:392,-12,79,0,0,0.0752559 -37117,7701:391,-11,79,0,0,0.0752631 -37118,7701:390,-10,79,0,0,0.0753703 -37119,7700:499,-9,79,0,0,0.0755854 -37120,7700:498,-8,79,0,0,0.0758946 -37121,7700:497,-7,79,0,0,0.0775907 -37122,7700:496,-6,79,0,0,0.0782775 -37123,7700:495,-5,79,0,0,0.0782847 -37124,7700:394,-4,79,0,0,0.0781071 -37125,7700:392,-2,79,0,0,0.0771215 -37126,1700:391,0,79,0,0,0.0780552 -37127,1700:391,1,79,0,0,0.0799466 -37128,1700:392,2,79,0,0,0.0782626 -37129,1700:393,3,79,0,0,0.0768877 -37130,1700:394,4,79,0,0,0.0767858 -37131,1700:495,5,79,0,0,0.0778116 -37132,1700:496,6,79,0,0,0.0870013 -37133,1700:497,7,79,0,0,0.089699 -37134,1701:390,10,79,0,0,0.0787605 -37135,1701:391,11,79,0,0,0.0769899 -37136,1701:392,12,79,0,0,0.0766401 -37137,1701:393,13,79,0,0,0.076553 -37138,1701:394,14,79,0,0,0.0764442 -37139,1701:495,15,79,0,0,0.0763427 -37140,1701:496,16,79,0,0,0.0769681 -37141,1701:497,17,79,0,0,0.0784927 -37142,1701:498,18,79,0,0,0.0791042 -37143,1701:499,19,79,0,0,0.0785224 -37144,1702:390,20,79,0,0,0.0757435 -37145,1702:391,21,79,0,0,0.0759956 -37146,1702:392,22,79,0,0,0.0769681 -37147,1702:393,23,79,0,0,0.0763933 -37148,1702:394,24,79,0,0,0.0765166 -37149,1712:499,129,79,0,0,0.0892469 -37150,1713:393,133,79,0,0,0.0801812 -37151,1713:394,134,79,0,0,0.0790369 -37152,1713:495,135,79,0,0,0.0775981 -37153,1713:496,136,79,0,0,0.0762267 -37154,1713:497,137,79,0,0,0.0759091 -37155,1713:498,138,79,0,0,0.0756428 -37156,1713:499,139,79,0,0,0.0755207 -37157,1714:390,140,79,0,0,0.0754849 -37158,1714:391,141,79,0,0,0.075758 -37159,1714:392,142,79,0,0,0.0757507 -37160,1714:393,143,79,0,0,0.0755926 -37161,1714:394,144,79,0,0,0.075765 -37162,1714:495,145,79,0,0,0.0756787 -37163,1714:496,146,79,0,0,0.0756355 -37164,1714:497,147,79,0,0,0.0755926 -37165,1714:498,148,79,0,0,0.0755567 -37166,1714:499,149,79,0,0,0.0755998 -37167,1715:390,150,79,0,0,0.0754562 -37168,1715:391,151,79,0,0,0.0756572 -37169,1715:392,152,79,0,0,0.0754849 -37170,1715:393,153,79,0,0,0.0755135 -37171,1715:394,154,79,0,0,0.0755494 -37172,1715:495,155,79,0,0,0.0755567 -37173,1715:496,156,79,0,0,0.0755639 -37174,1715:497,157,79,0,0,0.0755998 -37175,1715:498,158,79,0,0,0.075758 -37176,1715:499,159,79,0,0,0.0758586 -37177,1716:390,160,79,0,0,0.0758515 -37178,1716:391,161,79,0,0,0.0758586 -37179,1716:392,162,79,0,0,0.0759234 -37180,1716:393,163,79,0,0,0.0760245 -37181,1716:394,164,79,0,0,0.0761183 -37182,1716:495,165,79,0,0,0.0761545 -37183,1716:496,166,79,0,0,0.0761761 -37184,1716:497,167,79,0,0,0.0761978 -37185,1716:498,168,79,0,0,0.0762123 -37186,1716:499,169,79,0,0,0.0762196 -37187,1717:390,170,79,0,0,0.0762267 -37188,1717:391,171,79,0,0,0.0762196 -37189,1717:392,172,79,0,0,0.0762123 -37190,1717:393,173,79,0,0,0.0762123 -37191,1717:394,174,79,0,0,0.076234 -37192,1717:495,175,79,0,0,0.0762558 -37193,1717:496,176,79,0,0,0.0762775 -37194,1717:497,177,79,0,0,0.0762848 -37195,1717:498,178,79,0,0,0.0762702 -37196,1717:499,179,79,0,0,0.0762702 -37197,1718:390,180,79,0,0,0.0762702 -37198,7818:100,-180,80,0,0,0.0762629 -37199,7817:209,-179,80,0,0,0.0762629 -37200,7817:208,-178,80,0,0,0.0762702 -37201,7817:207,-177,80,0,0,0.0762848 -37202,7817:206,-176,80,0,0,0.0763137 -37203,7817:205,-175,80,0,0,0.0763643 -37204,7817:104,-174,80,0,0,0.076386 -37205,7817:103,-173,80,0,0,0.0764079 -37206,7817:102,-172,80,0,0,0.0764369 -37207,7817:101,-171,80,0,0,0.0764586 -37208,7817:100,-170,80,0,0,0.076415 -37209,7816:209,-169,80,0,0,0.076386 -37210,7816:208,-168,80,0,0,0.0763789 -37211,7816:207,-167,80,0,0,0.0763716 -37212,7816:206,-166,80,0,0,0.07635 -37213,7816:205,-165,80,0,0,0.0763571 -37214,7816:104,-164,80,0,0,0.0764586 -37215,7816:103,-163,80,0,0,0.0765747 -37216,7816:102,-162,80,0,0,0.0764513 -37217,7816:101,-161,80,0,0,0.076582 -37218,7816:100,-160,80,0,0,0.0766328 -37219,7815:209,-159,80,0,0,0.0766983 -37220,7815:103,-153,80,0,0,0.0765166 -37221,7815:102,-152,80,0,0,0.0765022 -37222,7815:101,-151,80,0,0,0.0765967 -37223,7815:100,-150,80,0,0,0.0766839 -37224,7814:209,-149,80,0,0,0.0767056 -37225,7814:208,-148,80,0,0,0.0766184 -37226,7813:205,-135,80,0,0,0.0778116 -37227,7813:104,-134,80,0,0,0.0776055 -37228,7813:103,-133,80,0,0,0.0777821 -37229,7813:102,-132,80,0,0,0.0779445 -37230,7813:101,-131,80,0,0,0.0785744 -37231,7808:100,-80,80,0,0,0.0776201 -37232,7807:209,-79,80,0,0,0.0779149 -37233,7807:101,-71,80,0,0,0.0769825 -37234,7807:100,-70,80,0,0,0.0769681 -37235,7806:209,-69,80,0,0,0.0769389 -37236,7806:208,-68,80,0,0,0.0769534 -37237,7806:207,-67,80,0,0,0.0769242 -37238,7806:206,-66,80,0,0,0.0768806 -37239,7806:205,-65,80,0,0,0.0768294 -37240,7806:104,-64,80,0,0,0.0767567 -37241,7806:103,-63,80,0,0,0.0766621 -37242,7806:102,-62,80,0,0,0.0765747 -37243,7806:101,-61,80,0,0,0.0764659 -37244,7806:100,-60,80,0,0,0.076415 -37245,7805:209,-59,80,0,0,0.0764296 -37246,7805:208,-58,80,0,0,0.0763789 -37247,7805:205,-55,80,0,0,0.0765747 -37248,7805:104,-54,80,0,0,0.076582 -37249,7805:103,-53,80,0,0,0.0765603 -37250,7805:102,-52,80,0,0,0.0764586 -37251,7804:209,-49,80,0,0,0.0764223 -37252,7804:208,-48,80,0,0,0.0764586 -37253,7804:207,-47,80,0,0,0.0765603 -37254,7804:206,-46,80,0,0,0.0765747 -37255,7804:205,-45,80,0,0,0.0765747 -37256,7804:104,-44,80,0,0,0.0765313 -37257,7804:103,-43,80,0,0,0.0764659 -37258,7804:102,-42,80,0,0,0.076386 -37259,7804:101,-41,80,0,0,0.0763064 -37260,7804:100,-40,80,0,0,0.0762918 -37261,7803:209,-39,80,0,0,0.0763064 -37262,7803:208,-38,80,0,0,0.0762991 -37263,7803:207,-37,80,0,0,0.0762991 -37264,7803:206,-36,80,0,0,0.0762991 -37265,7803:205,-35,80,0,0,0.0762918 -37266,7803:104,-34,80,0,0,0.0762775 -37267,7803:103,-33,80,0,0,0.0762775 -37268,7803:102,-32,80,0,0,0.0762991 -37269,7803:101,-31,80,0,0,0.0762991 -37270,7803:100,-30,80,0,0,0.0762848 -37271,7802:209,-29,80,0,0,0.0762775 -37272,7802:208,-28,80,0,0,0.0762775 -37273,7802:207,-27,80,0,0,0.0762918 -37274,7802:206,-26,80,0,0,0.0762918 -37275,7802:205,-25,80,0,0,0.0762918 -37276,7802:104,-24,80,0,0,0.0762775 -37277,7802:103,-23,80,0,0,0.0762267 -37278,7802:102,-22,80,0,0,0.0761761 -37279,7802:101,-21,80,0,0,0.0761256 -37280,7802:100,-20,80,0,0,0.0760533 -37281,7801:209,-19,80,0,0,0.0760317 -37282,7801:208,-18,80,0,0,0.0759307 -37283,7801:207,-17,80,0,0,0.0758443 -37284,7801:206,-16,80,0,0,0.0757435 -37285,7801:205,-15,80,0,0,0.0755854 -37286,7801:104,-14,80,0,0,0.0753775 -37287,7801:103,-13,80,0,0,0.0753058 -37288,7801:102,-12,80,0,0,0.0752631 -37289,7801:101,-11,80,0,0,0.0752631 -37290,7801:100,-10,80,0,0,0.0752916 -37291,7800:209,-9,80,0,0,0.0753989 -37292,7800:208,-8,80,0,0,0.0755711 -37293,7800:207,-7,80,0,0,0.0766038 -37294,7800:206,-6,80,0,0,0.077797 -37295,7800:205,-5,80,0,0,0.0784108 -37296,7800:104,-4,80,0,0,0.0783812 -37297,7800:103,-3,80,0,0,0.0785819 -37298,7800:101,-1,80,0,0,0.0774584 -37299,1800:101,0,80,0,0,0.0770556 -37300,1800:101,1,80,0,0,0.0771141 -37301,1800:102,2,80,0,0,0.0769754 -37302,1800:103,3,80,0,0,0.0765022 -37303,1800:104,4,80,0,0,0.077224 -37304,1800:205,5,80,0,0,0.0793366 -37305,1800:206,6,80,0,0,0.0829205 -37306,1800:207,7,80,0,0,0.0865453 -37307,1800:209,9,80,0,0,0.0787905 -37308,1801:100,10,80,0,0,0.0772018 -37309,1801:101,11,80,0,0,0.0761761 -37310,1801:102,12,80,0,0,0.0761472 -37311,1801:103,13,80,0,0,0.0762196 -37312,1801:104,14,80,0,0,0.076386 -37313,1801:205,15,80,0,0,0.0769462 -37314,1801:206,16,80,0,0,0.0773263 -37315,1801:207,17,80,0,0,0.0774439 -37316,1801:208,18,80,0,0,0.0772825 -37317,1802:205,25,80,0,0,0.0786936 -37318,1812:100,120,80,0,0,0.0895312 -37319,1812:101,121,80,0,0,0.089523 -37320,1813:100,130,80,0,0,0.085431 -37321,1813:101,131,80,0,0,0.0826707 -37322,1813:102,132,80,0,0,0.079939 -37323,1813:103,133,80,0,0,0.0801962 -37324,1813:104,134,80,0,0,0.0798332 -37325,1813:205,135,80,0,0,0.0780701 -37326,1813:206,136,80,0,0,0.0762918 -37327,1813:207,137,80,0,0,0.076039 -37328,1813:208,138,80,0,0,0.0759307 -37329,1813:209,139,80,0,0,0.0758946 -37330,1814:100,140,80,0,0,0.0757002 -37331,1814:101,141,80,0,0,0.075801 -37332,1814:102,142,80,0,0,0.0755639 -37333,1814:103,143,80,0,0,0.0752772 -37334,1814:104,144,80,0,0,0.075528 -37335,1814:205,145,80,0,0,0.0759019 -37336,1814:206,146,80,0,0,0.0760967 -37337,1814:207,147,80,0,0,0.0763789 -37338,1814:208,148,80,0,0,0.0763354 -37339,1814:209,149,80,0,0,0.0762848 -37340,1815:100,150,80,0,0,0.0760822 -37341,1815:101,151,80,0,0,0.0755135 -37342,1815:102,152,80,0,0,0.0754275 -37343,1815:103,153,80,0,0,0.0755065 -37344,1815:104,154,80,0,0,0.0755207 -37345,1815:205,155,80,0,0,0.0755065 -37346,1815:206,156,80,0,0,0.0755424 -37347,1815:207,157,80,0,0,0.0756285 -37348,1815:208,158,80,0,0,0.075722 -37349,1815:209,159,80,0,0,0.0758082 -37350,1816:100,160,80,0,0,0.0758082 -37351,1816:101,161,80,0,0,0.0758155 -37352,1816:102,162,80,0,0,0.0758658 -37353,1816:103,163,80,0,0,0.0759523 -37354,1816:104,164,80,0,0,0.0760679 -37355,1816:205,165,80,0,0,0.07614 -37356,1816:206,166,80,0,0,0.0761545 -37357,1816:207,167,80,0,0,0.0761834 -37358,1816:208,168,80,0,0,0.0762196 -37359,1816:209,169,80,0,0,0.0762267 -37360,1817:100,170,80,0,0,0.076234 -37361,1817:101,171,80,0,0,0.0762485 -37362,1817:102,172,80,0,0,0.0762485 -37363,1817:103,173,80,0,0,0.076234 -37364,1817:104,174,80,0,0,0.0762413 -37365,1817:205,175,80,0,0,0.0762558 -37366,1817:206,176,80,0,0,0.0762629 -37367,1817:207,177,80,0,0,0.0762702 -37368,1817:208,178,80,0,0,0.0762702 -37369,1817:209,179,80,0,0,0.0762702 -37370,1818:100,180,80,0,0,0.0762629 -37371,7818:110,-180,81,0,0,0.0762558 -37372,7817:219,-179,81,0,0,0.0762485 -37373,7817:218,-178,81,0,0,0.0762558 -37374,7817:217,-177,81,0,0,0.0762775 -37375,7817:216,-176,81,0,0,0.0763427 -37376,7817:215,-175,81,0,0,0.0763716 -37377,7817:114,-174,81,0,0,0.0763789 -37378,7817:113,-173,81,0,0,0.0763933 -37379,7817:112,-172,81,0,0,0.076415 -37380,7817:111,-171,81,0,0,0.076415 -37381,7817:110,-170,81,0,0,0.0763933 -37382,7816:219,-169,81,0,0,0.0763789 -37383,7816:218,-168,81,0,0,0.0763571 -37384,7816:217,-167,81,0,0,0.0763643 -37385,7816:216,-166,81,0,0,0.0763716 -37386,7816:215,-165,81,0,0,0.0764006 -37387,7816:111,-161,81,0,0,0.0766257 -37388,7816:110,-160,81,0,0,0.076713 -37389,7815:219,-159,81,0,0,0.0767785 -37390,7815:218,-158,81,0,0,0.0768149 -37391,7815:217,-157,81,0,0,0.0768294 -37392,7815:114,-154,81,0,0,0.0763716 -37393,7815:113,-153,81,0,0,0.0763789 -37394,7815:112,-152,81,0,0,0.0764659 -37395,7815:111,-151,81,0,0,0.0765893 -37396,7815:110,-150,81,0,0,0.0766765 -37397,7814:219,-149,81,0,0,0.0767056 -37398,7813:215,-135,81,0,0,0.0777453 -37399,7813:111,-131,81,0,0,0.0781514 -37400,7813:110,-130,81,0,0,0.0784036 -37401,7812:219,-129,81,0,0,0.0790294 -37402,7812:218,-128,81,0,0,0.0790743 -37403,7812:217,-127,81,0,0,0.0791417 -37404,7807:218,-78,81,0,0,0.0778706 -37405,7806:218,-68,81,0,0,0.0769607 -37406,7806:217,-67,81,0,0,0.0769899 -37407,7806:216,-66,81,0,0,0.0769168 -37408,7806:215,-65,81,0,0,0.0767929 -37409,7806:114,-64,81,0,0,0.0767203 -37410,7806:113,-63,81,0,0,0.0766475 -37411,7806:112,-62,81,0,0,0.0765457 -37412,7806:111,-61,81,0,0,0.076415 -37413,7806:110,-60,81,0,0,0.0763716 -37414,7805:219,-59,81,0,0,0.0763571 -37415,7805:218,-58,81,0,0,0.0764006 -37416,7805:217,-57,81,0,0,0.0764369 -37417,7805:215,-55,81,0,0,0.0764876 -37418,7805:114,-54,81,0,0,0.0765093 -37419,7805:113,-53,81,0,0,0.0764803 -37420,7805:112,-52,81,0,0,0.0764586 -37421,7805:111,-51,81,0,0,0.076415 -37422,7804:218,-48,81,0,0,0.0764006 -37423,7804:217,-47,81,0,0,0.0765967 -37424,7804:216,-46,81,0,0,0.0766184 -37425,7804:215,-45,81,0,0,0.0765676 -37426,7804:114,-44,81,0,0,0.0763933 -37427,7804:113,-43,81,0,0,0.0762991 -37428,7804:112,-42,81,0,0,0.0762848 -37429,7804:111,-41,81,0,0,0.0763064 -37430,7804:110,-40,81,0,0,0.0763354 -37431,7803:219,-39,81,0,0,0.0763354 -37432,7803:218,-38,81,0,0,0.0763281 -37433,7803:217,-37,81,0,0,0.0763208 -37434,7803:216,-36,81,0,0,0.0763137 -37435,7803:215,-35,81,0,0,0.0763064 -37436,7803:114,-34,81,0,0,0.0762991 -37437,7803:113,-33,81,0,0,0.0762918 -37438,7803:112,-32,81,0,0,0.0763064 -37439,7803:111,-31,81,0,0,0.0763137 -37440,7803:110,-30,81,0,0,0.0762918 -37441,7802:219,-29,81,0,0,0.0762918 -37442,7802:218,-28,81,0,0,0.0762918 -37443,7802:217,-27,81,0,0,0.0762918 -37444,7802:216,-26,81,0,0,0.0763064 -37445,7802:215,-25,81,0,0,0.0763137 -37446,7802:114,-24,81,0,0,0.0762848 -37447,7802:113,-23,81,0,0,0.076234 -37448,7802:112,-22,81,0,0,0.0761907 -37449,7802:111,-21,81,0,0,0.0761689 -37450,7802:110,-20,81,0,0,0.0761327 -37451,7801:219,-19,81,0,0,0.0760822 -37452,7801:218,-18,81,0,0,0.0759595 -37453,7801:217,-17,81,0,0,0.0758155 -37454,7801:216,-16,81,0,0,0.0757075 -37455,7801:215,-15,81,0,0,0.075528 -37456,7801:114,-14,81,0,0,0.075442 -37457,7801:113,-13,81,0,0,0.0753631 -37458,7801:112,-12,81,0,0,0.0753272 -37459,7801:111,-11,81,0,0,0.075313 -37460,7801:110,-10,81,0,0,0.0752916 -37461,7800:219,-9,81,0,0,0.0752986 -37462,7800:218,-8,81,0,0,0.0754133 -37463,7800:217,-7,81,0,0,0.0759307 -37464,7800:216,-6,81,0,0,0.0765747 -37465,7800:215,-5,81,0,0,0.077532 -37466,7800:114,-4,81,0,0,0.0781812 -37467,7800:113,-3,81,0,0,0.0784108 -37468,7800:112,-2,81,0,0,0.0787159 -37469,7800:111,-1,81,0,0,0.0784777 -37470,1800:111,0,81,0,0,0.0777307 -37471,1800:111,1,81,0,0,0.0770338 -37472,1800:112,2,81,0,0,0.0769462 -37473,1800:113,3,81,0,0,0.0763137 -37474,1800:114,4,81,0,0,0.0763208 -37475,1800:215,5,81,0,0,0.0772018 -37476,1800:216,6,81,0,0,0.0779445 -37477,1800:219,9,81,0,0,0.07888 -37478,1801:110,10,81,0,0,0.076415 -37479,1801:111,11,81,0,0,0.0771873 -37480,1801:112,12,81,0,0,0.0779591 -37481,1801:113,13,81,0,0,0.0787382 -37482,1801:114,14,81,0,0,0.079254 -37483,1801:215,15,81,0,0,0.0802039 -37484,1812:217,127,81,0,0,0.0857286 -37485,1812:219,129,81,0,0,0.085359 -37486,1813:110,130,81,0,0,0.0858415 -37487,1813:111,131,81,0,0,0.084831 -37488,1813:112,132,81,0,0,0.0800146 -37489,1813:113,133,81,0,0,0.0806751 -37490,1813:114,134,81,0,0,0.0795092 -37491,1813:215,135,81,0,0,0.0774658 -37492,1813:216,136,81,0,0,0.0768221 -37493,1813:217,137,81,0,0,0.0763064 -37494,1813:218,138,81,0,0,0.0765022 -37495,1813:219,139,81,0,0,0.0764442 -37496,1814:110,140,81,0,0,0.0763933 -37497,1814:111,141,81,0,0,0.0762775 -37498,1814:112,142,81,0,0,0.076415 -37499,1814:113,143,81,0,0,0.0761907 -37500,1814:114,144,81,0,0,0.0759379 -37501,1814:215,145,81,0,0,0.075765 -37502,1814:216,146,81,0,0,0.0760749 -37503,1814:217,147,81,0,0,0.0762196 -37504,1814:218,148,81,0,0,0.0763208 -37505,1814:219,149,81,0,0,0.0766328 -37506,1815:110,150,81,0,0,0.0764223 -37507,1815:111,151,81,0,0,0.0755065 -37508,1815:112,152,81,0,0,0.0753917 -37509,1815:113,153,81,0,0,0.0754706 -37510,1815:114,154,81,0,0,0.075442 -37511,1815:215,155,81,0,0,0.0754634 -37512,1815:216,156,81,0,0,0.0754562 -37513,1815:217,157,81,0,0,0.0755207 -37514,1815:218,158,81,0,0,0.07565 -37515,1815:219,159,81,0,0,0.075758 -37516,1816:110,160,81,0,0,0.0757722 -37517,1816:111,161,81,0,0,0.0757937 -37518,1816:112,162,81,0,0,0.0758225 -37519,1816:113,163,81,0,0,0.0758803 -37520,1816:114,164,81,0,0,0.075974 -37521,1816:215,165,81,0,0,0.0761038 -37522,1816:216,166,81,0,0,0.0761761 -37523,1816:217,167,81,0,0,0.076205 -37524,1816:218,168,81,0,0,0.0762196 -37525,1816:219,169,81,0,0,0.076234 -37526,1817:110,170,81,0,0,0.0762558 -37527,1817:111,171,81,0,0,0.0762702 -37528,1817:112,172,81,0,0,0.0762558 -37529,1817:113,173,81,0,0,0.0762485 -37530,1817:114,174,81,0,0,0.0762558 -37531,1817:215,175,81,0,0,0.0762702 -37532,1817:216,176,81,0,0,0.0762848 -37533,1817:217,177,81,0,0,0.0762848 -37534,1817:218,178,81,0,0,0.0762918 -37535,1817:219,179,81,0,0,0.0762702 -37536,1818:110,180,81,0,0,0.0762558 -37537,7818:120,-180,82,0,0,0.0762629 -37538,7817:229,-179,82,0,0,0.0762629 -37539,7817:228,-178,82,0,0,0.0762848 -37540,7817:227,-177,82,0,0,0.0763137 -37541,7817:226,-176,82,0,0,0.07635 -37542,7817:225,-175,82,0,0,0.0763643 -37543,7817:124,-174,82,0,0,0.0763789 -37544,7817:123,-173,82,0,0,0.076386 -37545,7817:122,-172,82,0,0,0.0763933 -37546,7817:121,-171,82,0,0,0.0763933 -37547,7817:120,-170,82,0,0,0.0763716 -37548,7816:229,-169,82,0,0,0.0763427 -37549,7816:228,-168,82,0,0,0.0763354 -37550,7816:227,-167,82,0,0,0.0763643 -37551,7816:226,-166,82,0,0,0.0764732 -37552,7816:225,-165,82,0,0,0.0764949 -37553,7816:124,-164,82,0,0,0.0764369 -37554,7816:123,-163,82,0,0,0.0764803 -37555,7816:122,-162,82,0,0,0.0765384 -37556,7816:121,-161,82,0,0,0.0765893 -37557,7816:120,-160,82,0,0,0.0766692 -37558,7815:124,-154,82,0,0,0.0762558 -37559,7815:123,-153,82,0,0,0.07635 -37560,7815:122,-152,82,0,0,0.0765093 -37561,7815:121,-151,82,0,0,0.0766548 -37562,7815:120,-150,82,0,0,0.0766839 -37563,7814:228,-148,82,0,0,0.0767567 -37564,7814:227,-147,82,0,0,0.0768294 -37565,7814:226,-146,82,0,0,0.0768294 -37566,7813:226,-136,82,0,0,0.0777084 -37567,7813:225,-135,82,0,0,0.0776421 -37568,7813:123,-133,82,0,0,0.0789397 -37569,7808:120,-80,82,0,0,0.0803708 -37570,7807:228,-78,82,0,0,0.0778116 -37571,7807:227,-77,82,0,0,0.0776718 -37572,7806:122,-62,82,0,0,0.0765676 -37573,7806:121,-61,82,0,0,0.0763643 -37574,7806:120,-60,82,0,0,0.0763281 -37575,7805:229,-59,82,0,0,0.0763933 -37576,7805:228,-58,82,0,0,0.076386 -37577,7805:226,-56,82,0,0,0.0765313 -37578,7805:225,-55,82,0,0,0.0764803 -37579,7805:124,-54,82,0,0,0.0765166 -37580,7805:122,-52,82,0,0,0.0764659 -37581,7805:121,-51,82,0,0,0.0764876 -37582,7804:229,-49,82,0,0,0.0765313 -37583,7804:227,-47,82,0,0,0.0766692 -37584,7804:226,-46,82,0,0,0.0766401 -37585,7804:225,-45,82,0,0,0.0764296 -37586,7804:124,-44,82,0,0,0.0763281 -37587,7804:123,-43,82,0,0,0.0763354 -37588,7804:122,-42,82,0,0,0.0763427 -37589,7804:121,-41,82,0,0,0.07635 -37590,7804:120,-40,82,0,0,0.07635 -37591,7803:229,-39,82,0,0,0.0763427 -37592,7803:228,-38,82,0,0,0.07635 -37593,7803:227,-37,82,0,0,0.0763427 -37594,7803:226,-36,82,0,0,0.0763208 -37595,7803:225,-35,82,0,0,0.0762991 -37596,7803:124,-34,82,0,0,0.0762918 -37597,7803:123,-33,82,0,0,0.0762918 -37598,7803:122,-32,82,0,0,0.0762918 -37599,7803:121,-31,82,0,0,0.0763064 -37600,7803:120,-30,82,0,0,0.0762991 -37601,7802:229,-29,82,0,0,0.0762918 -37602,7802:228,-28,82,0,0,0.0762991 -37603,7802:227,-27,82,0,0,0.0763137 -37604,7802:226,-26,82,0,0,0.0763208 -37605,7802:225,-25,82,0,0,0.0763137 -37606,7802:124,-24,82,0,0,0.0762918 -37607,7802:123,-23,82,0,0,0.0762413 -37608,7802:122,-22,82,0,0,0.0761978 -37609,7802:121,-21,82,0,0,0.0761618 -37610,7802:120,-20,82,0,0,0.0760679 -37611,7801:229,-19,82,0,0,0.0759884 -37612,7801:228,-18,82,0,0,0.0759234 -37613,7801:227,-17,82,0,0,0.0758082 -37614,7801:226,-16,82,0,0,0.0756285 -37615,7801:225,-15,82,0,0,0.0755854 -37616,7801:124,-14,82,0,0,0.0756068 -37617,7801:123,-13,82,0,0,0.0754993 -37618,7801:122,-12,82,0,0,0.0753561 -37619,7801:121,-11,82,0,0,0.0753489 -37620,7801:120,-10,82,0,0,0.0753272 -37621,7800:229,-9,82,0,0,0.0753344 -37622,7800:228,-8,82,0,0,0.0753489 -37623,7800:227,-7,82,0,0,0.0754779 -37624,7800:226,-6,82,0,0,0.07614 -37625,7800:225,-5,82,0,0,0.0769024 -37626,7800:124,-4,82,0,0,0.0766983 -37627,7800:123,-3,82,0,0,0.0765166 -37628,7800:122,-2,82,0,0,0.0766111 -37629,7800:121,-1,82,0,0,0.0768585 -37630,1800:121,0,82,0,0,0.0766475 -37631,1800:121,1,82,0,0,0.076205 -37632,1800:122,2,82,0,0,0.0762196 -37633,1800:123,3,82,0,0,0.0760749 -37634,1800:124,4,82,0,0,0.0771433 -37635,1800:225,5,82,0,0,0.080022 -37636,1800:226,6,82,0,0,0.0803859 -37637,1800:227,7,82,0,0,0.079939 -37638,1800:228,8,82,0,0,0.080614 -37639,1800:229,9,82,0,0,0.0764949 -37640,1801:120,10,82,0,0,0.0772459 -37641,1801:121,11,82,0,0,0.0781884 -37642,1801:122,12,82,0,0,0.0795545 -37643,1801:123,13,82,0,0,0.0806445 -37644,1801:124,14,82,0,0,0.081471 -37645,1803:120,30,82,0,0,0.0895312 -37646,1811:228,118,82,0,0,0.089523 -37647,1811:229,119,82,0,0,0.0895062 -37648,1812:120,120,82,0,0,0.0895062 -37649,1812:121,121,82,0,0,0.0895062 -37650,1812:229,129,82,0,0,0.0830534 -37651,1813:120,130,82,0,0,0.0824683 -37652,1813:121,131,82,0,0,0.0837446 -37653,1813:122,132,82,0,0,0.0818408 -37654,1813:123,133,82,0,0,0.0807056 -37655,1813:124,134,82,0,0,0.0800296 -37656,1813:225,135,82,0,0,0.0785968 -37657,1813:226,136,82,0,0,0.0777821 -37658,1813:227,137,82,0,0,0.0770775 -37659,1813:228,138,82,0,0,0.0764223 -37660,1813:229,139,82,0,0,0.0762702 -37661,1814:120,140,82,0,0,0.0788053 -37662,1814:121,141,82,0,0,0.0789771 -37663,1814:122,142,82,0,0,0.0783812 -37664,1814:123,143,82,0,0,0.0779961 -37665,1814:124,144,82,0,0,0.0777821 -37666,1814:225,145,82,0,0,0.0759668 -37667,1814:226,146,82,0,0,0.0765313 -37668,1814:227,147,82,0,0,0.0759668 -37669,1814:228,148,82,0,0,0.0755854 -37670,1814:229,149,82,0,0,0.0771799 -37671,1815:120,150,82,0,0,0.0768294 -37672,1815:121,151,82,0,0,0.0755494 -37673,1815:122,152,82,0,0,0.0753917 -37674,1815:123,153,82,0,0,0.0753775 -37675,1815:124,154,82,0,0,0.0753272 -37676,1815:225,155,82,0,0,0.0753561 -37677,1815:226,156,82,0,0,0.0754203 -37678,1815:227,157,82,0,0,0.0754061 -37679,1815:228,158,82,0,0,0.0754921 -37680,1815:229,159,82,0,0,0.0756355 -37681,1816:120,160,82,0,0,0.0757362 -37682,1816:121,161,82,0,0,0.075765 -37683,1816:122,162,82,0,0,0.075765 -37684,1816:123,163,82,0,0,0.0757937 -37685,1816:124,164,82,0,0,0.0758803 -37686,1816:225,165,82,0,0,0.0760533 -37687,1816:226,166,82,0,0,0.0761545 -37688,1816:227,167,82,0,0,0.076205 -37689,1816:228,168,82,0,0,0.0762196 -37690,1816:229,169,82,0,0,0.0762413 -37691,1817:120,170,82,0,0,0.0762702 -37692,1817:121,171,82,0,0,0.0762775 -37693,1817:122,172,82,0,0,0.0762629 -37694,1817:123,173,82,0,0,0.0762629 -37695,1817:124,174,82,0,0,0.0762775 -37696,1817:225,175,82,0,0,0.0762848 -37697,1817:226,176,82,0,0,0.0762848 -37698,1817:227,177,82,0,0,0.0762848 -37699,1817:228,178,82,0,0,0.0762918 -37700,1817:229,179,82,0,0,0.0762775 -37701,1818:120,180,82,0,0,0.0762629 -37702,7818:130,-180,83,0,0,0.0762775 -37703,7817:239,-179,83,0,0,0.0762848 -37704,7817:238,-178,83,0,0,0.0763137 -37705,7817:237,-177,83,0,0,0.0763354 -37706,7817:236,-176,83,0,0,0.07635 -37707,7817:235,-175,83,0,0,0.0763571 -37708,7817:134,-174,83,0,0,0.0763571 -37709,7817:133,-173,83,0,0,0.0763643 -37710,7817:132,-172,83,0,0,0.0763716 -37711,7817:131,-171,83,0,0,0.0763643 -37712,7817:130,-170,83,0,0,0.0763354 -37713,7816:239,-169,83,0,0,0.0763354 -37714,7816:238,-168,83,0,0,0.0765313 -37715,7816:237,-167,83,0,0,0.0766184 -37716,7816:236,-166,83,0,0,0.0766257 -37717,7816:235,-165,83,0,0,0.0766038 -37718,7816:134,-164,83,0,0,0.0765457 -37719,7816:133,-163,83,0,0,0.0765022 -37720,7816:132,-162,83,0,0,0.0765022 -37721,7816:131,-161,83,0,0,0.0765384 -37722,7816:130,-160,83,0,0,0.0765384 -37723,7815:239,-159,83,0,0,0.0765022 -37724,7815:238,-158,83,0,0,0.0766692 -37725,7815:134,-154,83,0,0,0.0762775 -37726,7815:133,-153,83,0,0,0.0763571 -37727,7815:132,-152,83,0,0,0.076553 -37728,7815:131,-151,83,0,0,0.0766548 -37729,7815:130,-150,83,0,0,0.0766621 -37730,7813:237,-137,83,0,0,0.0776055 -37731,7813:236,-136,83,0,0,0.0777675 -37732,7813:133,-133,83,0,0,0.0792391 -37733,7808:131,-81,83,0,0,0.0791266 -37734,7807:238,-78,83,0,0,0.0777527 -37735,7806:134,-64,83,0,0,0.0766621 -37736,7806:133,-63,83,0,0,0.0766475 -37737,7806:132,-62,83,0,0,0.0765457 -37738,7806:131,-61,83,0,0,0.0763571 -37739,7806:130,-60,83,0,0,0.0762629 -37740,7805:236,-56,83,0,0,0.0766912 -37741,7805:235,-55,83,0,0,0.0765676 -37742,7805:134,-54,83,0,0,0.076582 -37743,7805:133,-53,83,0,0,0.076553 -37744,7805:132,-52,83,0,0,0.0765022 -37745,7805:131,-51,83,0,0,0.0765093 -37746,7805:130,-50,83,0,0,0.076553 -37747,7804:239,-49,83,0,0,0.0765967 -37748,7804:238,-48,83,0,0,0.0766038 -37749,7804:237,-47,83,0,0,0.0765384 -37750,7804:236,-46,83,0,0,0.0764513 -37751,7804:235,-45,83,0,0,0.0763281 -37752,7804:134,-44,83,0,0,0.07635 -37753,7804:133,-43,83,0,0,0.0763789 -37754,7804:132,-42,83,0,0,0.076386 -37755,7804:131,-41,83,0,0,0.0763716 -37756,7804:130,-40,83,0,0,0.0763643 -37757,7803:239,-39,83,0,0,0.0763571 -37758,7803:238,-38,83,0,0,0.0763571 -37759,7803:237,-37,83,0,0,0.0763354 -37760,7803:236,-36,83,0,0,0.0763064 -37761,7803:235,-35,83,0,0,0.0762775 -37762,7803:134,-34,83,0,0,0.0762702 -37763,7803:133,-33,83,0,0,0.0762848 -37764,7803:132,-32,83,0,0,0.0762848 -37765,7803:131,-31,83,0,0,0.0762848 -37766,7803:130,-30,83,0,0,0.0762918 -37767,7802:239,-29,83,0,0,0.0762848 -37768,7802:238,-28,83,0,0,0.0762775 -37769,7802:237,-27,83,0,0,0.0762775 -37770,7802:236,-26,83,0,0,0.0762702 -37771,7802:235,-25,83,0,0,0.0762848 -37772,7802:134,-24,83,0,0,0.0762775 -37773,7802:133,-23,83,0,0,0.0762413 -37774,7802:132,-22,83,0,0,0.0762123 -37775,7802:131,-21,83,0,0,0.0761689 -37776,7802:130,-20,83,0,0,0.0760895 -37777,7801:239,-19,83,0,0,0.0760245 -37778,7801:238,-18,83,0,0,0.0758658 -37779,7801:237,-17,83,0,0,0.0757435 -37780,7801:236,-16,83,0,0,0.075686 -37781,7801:235,-15,83,0,0,0.0757075 -37782,7801:134,-14,83,0,0,0.0757147 -37783,7801:133,-13,83,0,0,0.0755998 -37784,7801:132,-12,83,0,0,0.0754133 -37785,7801:131,-11,83,0,0,0.0753847 -37786,7801:130,-10,83,0,0,0.0753917 -37787,7800:239,-9,83,0,0,0.0753703 -37788,7800:238,-8,83,0,0,0.075313 -37789,7800:237,-7,83,0,0,0.0754275 -37790,7800:236,-6,83,0,0,0.0755926 -37791,7800:235,-5,83,0,0,0.076046 -37792,7800:134,-4,83,0,0,0.0760245 -37793,7800:133,-3,83,0,0,0.077063 -37794,7800:132,-2,83,0,0,0.0774584 -37795,7800:131,-1,83,0,0,0.0775762 -37796,1800:131,0,83,0,0,0.0777084 -37797,1800:131,1,83,0,0,0.0778634 -37798,1800:132,2,83,0,0,0.0776421 -37799,1800:133,3,83,0,0,0.0779149 -37800,1800:134,4,83,0,0,0.0781292 -37801,1800:235,5,83,0,0,0.0797805 -37802,1800:236,6,83,0,0,0.0799466 -37803,1800:237,7,83,0,0,0.0786861 -37804,1800:238,8,83,0,0,0.0762196 -37805,1800:239,9,83,0,0,0.0767785 -37806,1801:130,10,83,0,0,0.0780405 -37807,1801:131,11,83,0,0,0.0794416 -37808,1801:132,12,83,0,0,0.0802948 -37809,1801:133,13,83,0,0,0.081448 -37810,1801:134,14,83,0,0,0.0822588 -37811,1801:235,15,83,0,0,0.0829675 -37812,1801:236,16,83,0,0,0.0827254 -37813,1801:237,17,83,0,0,0.0852147 -37814,1801:238,18,83,0,0,0.0885065 -37815,1802:130,20,83,0,0,0.0895146 -37816,1802:131,21,83,0,0,0.0895146 -37817,1802:132,22,83,0,0,0.089523 -37818,1802:133,23,83,0,0,0.089523 -37819,1802:134,24,83,0,0,0.0895146 -37820,1802:235,25,83,0,0,0.0895146 -37821,1802:237,27,83,0,0,0.0894895 -37822,1802:238,28,83,0,0,0.0895062 -37823,1802:239,29,83,0,0,0.0895312 -37824,1811:237,117,83,0,0,0.089523 -37825,1811:238,118,83,0,0,0.0895062 -37826,1812:131,121,83,0,0,0.089523 -37827,1812:132,122,83,0,0,0.089523 -37828,1812:133,123,83,0,0,0.089523 -37829,1812:134,124,83,0,0,0.089523 -37830,1812:236,126,83,0,0,0.0895146 -37831,1812:237,127,83,0,0,0.0894977 -37832,1812:238,128,83,0,0,0.0885232 -37833,1813:130,130,83,0,0,0.0831004 -37834,1813:131,131,83,0,0,0.08222 -37835,1813:132,132,83,0,0,0.0818873 -37836,1813:133,133,83,0,0,0.0807971 -37837,1813:134,134,83,0,0,0.0799542 -37838,1813:235,135,83,0,0,0.0793815 -37839,1813:236,136,83,0,0,0.0776055 -37840,1813:237,137,83,0,0,0.0763208 -37841,1813:238,138,83,0,0,0.0769315 -37842,1813:239,139,83,0,0,0.080128 -37843,1814:130,140,83,0,0,0.0801509 -37844,1814:131,141,83,0,0,0.0799542 -37845,1814:132,142,83,0,0,0.0773852 -37846,1814:133,143,83,0,0,0.0765457 -37847,1814:134,144,83,0,0,0.0763281 -37848,1814:235,145,83,0,0,0.0764079 -37849,1814:236,146,83,0,0,0.0765022 -37850,1814:237,147,83,0,0,0.0766038 -37851,1814:238,148,83,0,0,0.0766111 -37852,1814:239,149,83,0,0,0.0763933 -37853,1815:130,150,83,0,0,0.0762196 -37854,1815:131,151,83,0,0,0.0763933 -37855,1815:132,152,83,0,0,0.0756932 -37856,1815:133,153,83,0,0,0.075442 -37857,1815:134,154,83,0,0,0.0753203 -37858,1815:235,155,83,0,0,0.0753561 -37859,1815:236,156,83,0,0,0.0753631 -37860,1815:237,157,83,0,0,0.0753775 -37861,1815:238,158,83,0,0,0.0753847 -37862,1815:239,159,83,0,0,0.0755781 -37863,1816:130,160,83,0,0,0.0756932 -37864,1816:131,161,83,0,0,0.0756645 -37865,1816:132,162,83,0,0,0.07565 -37866,1816:133,163,83,0,0,0.0757507 -37867,1816:134,164,83,0,0,0.0758874 -37868,1816:235,165,83,0,0,0.0759956 -37869,1816:236,166,83,0,0,0.0760606 -37870,1816:237,167,83,0,0,0.0761618 -37871,1816:238,168,83,0,0,0.0762123 -37872,1816:239,169,83,0,0,0.0762413 -37873,1817:130,170,83,0,0,0.0762848 -37874,1817:131,171,83,0,0,0.0762918 -37875,1817:132,172,83,0,0,0.0762848 -37876,1817:133,173,83,0,0,0.0762848 -37877,1817:134,174,83,0,0,0.0762848 -37878,1817:235,175,83,0,0,0.0762848 -37879,1817:236,176,83,0,0,0.0762918 -37880,1817:237,177,83,0,0,0.0762918 -37881,1817:238,178,83,0,0,0.0762848 -37882,1817:239,179,83,0,0,0.0762918 -37883,1818:130,180,83,0,0,0.0762775 -37884,7918:100,-180,90,0,0,0.0749916 -37885,7917:209,-179,90,0,0,0.0750201 -37886,7917:208,-178,90,0,0,0.0750201 -37887,7917:207,-177,90,0,0,0.0750416 -37888,7917:206,-176,90,0,0,0.0750488 -37889,7917:205,-175,90,0,0,0.0750558 -37890,7917:104,-174,90,0,0,0.0750702 -37891,7917:103,-173,90,0,0,0.0750773 -37892,7917:102,-172,90,0,0,0.0750843 -37893,7917:101,-171,90,0,0,0.0750843 -37894,7917:100,-170,90,0,0,0.0750915 -37895,7916:209,-169,90,0,0,0.0750987 -37896,7916:208,-168,90,0,0,0.0751059 -37897,7916:207,-167,90,0,0,0.0751128 -37898,7916:206,-166,90,0,0,0.0751059 -37899,7916:205,-165,90,0,0,0.0751059 -37900,7916:104,-164,90,0,0,0.0751059 -37901,7916:103,-163,90,0,0,0.0751128 -37902,7916:102,-162,90,0,0,0.0751128 -37903,7916:101,-161,90,0,0,0.07512 -37904,7916:100,-160,90,0,0,0.0751344 -37905,7915:209,-159,90,0,0,0.0751416 -37906,7915:208,-158,90,0,0,0.0751558 -37907,7915:207,-157,90,0,0,0.0751486 -37908,7915:206,-156,90,0,0,0.0751558 -37909,7915:205,-155,90,0,0,0.075163 -37910,7915:104,-154,90,0,0,0.0751486 -37911,7915:103,-153,90,0,0,0.075163 -37912,7915:102,-152,90,0,0,0.0751558 -37913,7915:101,-151,90,0,0,0.0751416 -37914,7915:100,-150,90,0,0,0.0751416 -37915,7914:209,-149,90,0,0,0.0751344 -37916,7914:208,-148,90,0,0,0.0751344 -37917,7914:207,-147,90,0,0,0.0751272 -37918,7914:206,-146,90,0,0,0.07512 -37919,7914:205,-145,90,0,0,0.07512 -37920,7914:104,-144,90,0,0,0.0751128 -37921,7914:103,-143,90,0,0,0.07512 -37922,7914:102,-142,90,0,0,0.0751128 -37923,7914:101,-141,90,0,0,0.0751128 -37924,7914:100,-140,90,0,0,0.07512 -37925,7913:209,-139,90,0,0,0.07512 -37926,7913:208,-138,90,0,0,0.0751272 -37927,7913:207,-137,90,0,0,0.07527 -37928,7913:206,-136,90,0,0,0.0758155 -37929,7913:205,-135,90,0,0,0.0776421 -37930,7913:104,-134,90,0,0,0.0779001 -37931,7911:100,-110,90,0,0,0.0832649 -37932,7910:209,-109,90,0,0,0.0880188 -37933,7910:206,-106,90,0,0,0.0759162 -37934,7910:205,-105,90,0,0,0.0753775 -37935,7910:104,-104,90,0,0,0.0768514 -37936,7910:103,-103,90,0,0,0.0810109 -37937,7906:101,-61,90,0,0,0.0753489 -37938,7906:100,-60,90,0,0,0.075163 -37939,7905:209,-59,90,0,0,0.0750201 -37940,7905:208,-58,90,0,0,0.074949 -37941,7905:207,-57,90,0,0,0.0749346 -37942,7905:206,-56,90,0,0,0.0749275 -37943,7905:205,-55,90,0,0,0.0749346 -37944,7905:104,-54,90,0,0,0.0749346 -37945,7905:103,-53,90,0,0,0.0749418 -37946,7905:102,-52,90,0,0,0.0749562 -37947,7905:101,-51,90,0,0,0.0749631 -37948,7905:100,-50,90,0,0,0.0749631 -37949,7904:209,-49,90,0,0,0.0749631 -37950,7904:208,-48,90,0,0,0.074949 -37951,7904:207,-47,90,0,0,0.0749703 -37952,7904:206,-46,90,0,0,0.0749988 -37953,7904:205,-45,90,0,0,0.0750273 -37954,7904:104,-44,90,0,0,0.0750201 -37955,7904:103,-43,90,0,0,0.0750201 -37956,7904:102,-42,90,0,0,0.0750131 -37957,7904:101,-41,90,0,0,0.0750201 -37958,7904:100,-40,90,0,0,0.0750345 -37959,7903:209,-39,90,0,0,0.0750345 -37960,7903:208,-38,90,0,0,0.0750345 -37961,7903:207,-37,90,0,0,0.0750345 -37962,7903:206,-36,90,0,0,0.0750345 -37963,7903:205,-35,90,0,0,0.0750416 -37964,7903:104,-34,90,0,0,0.0750345 -37965,7903:103,-33,90,0,0,0.0750345 -37966,7903:102,-32,90,0,0,0.0750416 -37967,7903:101,-31,90,0,0,0.0750488 -37968,7903:100,-30,90,0,0,0.0750488 -37969,7902:209,-29,90,0,0,0.0750488 -37970,7902:208,-28,90,0,0,0.0750345 -37971,7902:207,-27,90,0,0,0.0750201 -37972,7902:206,-26,90,0,0,0.0761183 -37973,7902:205,-25,90,0,0,0.0756715 -37974,7902:104,-24,90,0,0,0.0789397 -37975,1916:206,166,90,0,0,0.0752487 -37976,1916:207,167,90,0,0,0.075063 -37977,1916:208,168,90,0,0,0.0749846 -37978,1916:209,169,90,0,0,0.074899 -37979,1917:100,170,90,0,0,0.074892 -37980,1917:101,171,90,0,0,0.0748777 -37981,1917:102,172,90,0,0,0.0807894 -37982,1917:103,173,90,0,0,0.0878209 -37983,1917:104,174,90,0,0,0.087558 -37984,1917:205,175,90,0,0,0.0873776 -37985,1917:206,176,90,0,0,0.0863183 -37986,1917:207,177,90,0,0,0.0752844 -37987,1917:208,178,90,0,0,0.0748849 -37988,1917:209,179,90,0,0,0.074949 -37989,1918:100,180,90,0,0,0.0749916 - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/ZFZ2WWxZTlE4Q3R1OUtmNGlWNFVMUFhoZVlDNStTVDJHbWJQNStIS0N6Yz0 - The warnings from the underlying MaxEnt model - text/csv - - - http://data-d.d4science.org/OXhhdUF6MTN4VUZ1OUtmNGlWNFVMTSs1R2F4NVRsMlZHbWJQNStIS0N6Yz0 - ASCII Maps of the environmental layers for checking features aligments - text/csv - - - http://data-d.d4science.org/RlVOTU12QWxXSFZ1OUtmNGlWNFVMTWg4OGhtc09TZkFHbWJQNStIS0N6Yz0 - World Thumbnail - image/png - - - http://data-d.d4science.org/ZFgvV1M2SEQySjF1OUtmNGlWNFVMTW0vTzArMDhlb3dHbWJQNStIS0N6Yz0 - ROC Curve - image/png - - - http://data-d.d4science.org/MXI0K1cvaklVa051OUtmNGlWNFVMRlUvN3FaWWl3Y0NHbWJQNStIS0N6Yz0 - Omission-Commission Curve - image/png - - - http://data-d.d4science.org/cks0OTc1eXFrQjl1OUtmNGlWNFVMRGI3ZS9WTklRMEhHbWJQNStIS0N6Yz0 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - text/csv - - - - - - - - -2016-05-06 11:41:22 DEBUG SClient4WPS:875 - WPS SUCCESS -2016-05-06 11:41:22 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=100.0, status=COMPLETE, endDate=null, message=null, errResource=null] -2016-05-06 11:41:22 DEBUG Log:91 - getResourceByComputationId: ComputationId [id=6071f298-fe8e-4530-8325-04792901214d, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d] -2016-05-06 11:41:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:41:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:41:22 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:41:22 DEBUG SClient4WPS:436 - RetrieveProcessResult: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d -2016-05-06 11:41:22 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=6071f298-fe8e-4530-8325-04792901214d -2016-05-06 11:41:22 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 11:41:22 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 11:41:22 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 11:41:22 DEBUG SClient4WPS:447 - Response: - - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - Process successful - - - - ASCII Maps of the environmental layers for checking features aligments - ASCII Maps of the environmental layers for checking features aligments - - _______________________________________________ __ ____ ______________________________________ _______________ - - - - - - -_______________________ _____ __ _ _ _ _____ ___________________________________________________________________________ ______ ___ __ ____ ___ ___________________________________________________ -_____________________ _____ ___ __ _ _ __ _____ ___ __ _ ______________________________________________________________ _ ____ ____________________________________________________ -________________ _____ ______ _ _____ _ ____________ _____ _______________________________________________________ _______ _ ____________________________________________________ -______________________ ______ _____ __ ______________ ____ _______________________________________________ _________ __________ _ __ ___________________________________________________ -__________________ __ _ ____ ____ ___ ______ __ ____ ____ _ _ _____________________________________ _ ________ _______________ _ ________________________________________________ -__________________ __ _____ _ _ ___ ___ _ ______ _________ _ __ _ ____________________________________ __________ _____________ ______________ _______________________________ -___________________ _ ____ _ _ ___ ___ __ _____ ___ __ ___ __ _________________________________ ____________ ___________ _________ ________________________________ -____________________ ______ _ ___ ______________ ___ __ ___ _ ____ _ _____________________________________________ ________ _______ _________________________________ -_________________________ __ _ _ ______ ____ ___________ __ __ _ ______________________________________________ __________ _____ _________________________________ -________________________ _______ __ _ ___ _ ___ __ __ _ _________________________________________________ _____ _______________________________________ -___________________________ ________ __ __________ __ ______ _ __ _______________________________________ ______ ____________________________________ -____________________________ ______ _____ _____ __ _ ____ ____ _______________ ____________________________ _ _____________________________________ -_____________________________________ _____ _ ___ ______ ________ __ ___________ _____________________________ ___________________________________ -____________________________________ ____ _ _ ___________ _________ _______________________ _ ____________________________________ -___________________________________ _____ _ ________ ___________ ____________________________ ________________________________________ -________________________________ ____ _ __________ _______________ ________________________ __ ________________________________________ -_______________________________ ___ _ _____________ _ _________________________________________ ______________________________________ -_______________________________ ___ __ _____________ _____________________________________________ ______________________________________ -_____________________________ _ _ ______________ ___________________________________ __ _______ ________________________ -_____________________________ ____ _ ____________ _ ____________________________ _ _ ______ _______________________ -__________________________ _ _ _______ ___________ ____________________________ __ ____________ ____________________ -______________________ _ _ ________ _ __________ __________________________ ______ __ ______ _________________________ -_______________ ______ _________ _ _________ __________________________ __ _ ___ _________________________ -____________ _________ ____________ _____________ __________________________ ______________________ -___________ ___________ __________ ___________ __________________________ ______________________ -__________ ________________ ___ __ ________ _ __________________________ ______________ __ -__________ ______________ ______ _ __________ _ __________________________ ___ ________________ -________ ____________________ ___ _ _______ ___________________________ ___ _ ___ ____ -___________ __________________ ________ _ ________ _____________________________ _ _ _ - ___________ ____________________ _____ ___________ __________________________________ __ - _ __ __________________ __ _ ___________ ___________________________________ ___ __ - ____ _________________ ___ _____________ _____________ ____________________ ____ __ _ -___ __________ _________________ __________________ ______________ _________________ ________ __ -____________ _ _ ______________ _________________ _______________ _________________ _____ ____ -____________ _ __________ ____________ ___________________ __________________ ____________________ ____ __ ___ -____________ _ _____________ _ ____________ ____ ______________ ________________________________________ _______ _ __ -_____________ __ _______________ ___________ __ ______________ _ ___________________________________ _____ _ __ ___ _ ______ -___________ ___ ____________________ _______ __ ________________ ___________________________________________ __ _____ __ _______ ________ -________________ ___ _ ___________________ _ ______ ________________________________________________________________ _ ____ __________ _____ ________________ -____________________ _ ________________________ ___ __________________________________________________ _ ___________ __ _____ ___________________ ________________ -___________________ _________________________ _ ___ __________________________________________________ _________ _____ __________________ ________________ -_________________ ___________________________ ___ __ ___________________________________________________ ___________ ___ _ __ ________________ ________________ -________________ __________________________________ ___ _________________________________________________ __________ __________________ _________________ -____________________________________________________ __ _____________________________________________ __ ______ ______________ ___ _____________ -____________ ______________________________________ ___________________________________________ _ ___ ____________ ____________________ -_____________________________________________________ _ ____________________________________________ __ __ _ ____________ _____________________ -_______________________________________________________ __ ___________________________________________ _____ _ _ ____________ _____________________ -_______________________________________________________ ____ _____ _________________________________________________ ____ _ ___________ _______________________ -________________________________________________________ _ ______ __________________________________________________ ___ __ ____________________________________ -________________________________________________________ ______ _______________________________________________ ___ __ ________________________________________ -________________________________________________________ ____ ______ _________________________________________________ __________ ___ ____________________________________ -________________________________________________________ __ __________________________________________________________ _ ____________ __________________________________________ -________________________________________________________ _ _____________________________________________________________ ___ _____________ _____ _____________________________________ -________________________________________________________ ____ ______________________________________________________________ ___ ____ ______________ _______ ___________________________________ -________________________________________________________ _____________________________________________________________ ________ _____ ___ _ __________ ____________________________________ -________________________________________________________ _____________________________________________________________ __________ __ __ __ _ __________ _______________________________________ -_________________________________________________________ ________________________________________________________________ _______ ______ ___ ___ ___ __ ____________ ______________________________________ -_________________________________________________________ __________________________________________________________________ ________ ______ ____ ___ _______ ____________ ______________________________________ -__________________________________________________________ _______________________________________________ ___________________ _____________ ______ ____ _ _____ __________ _______________________________________ -___________________________________________________________ ___________________________________________________________________ ________ _ ____________ ______ _ __ _____ _________ _______________________________________ -___________________________________________________________ ___________________________________________________________________________ _________________________ _______ _______ _______________________________________ -____________________________________________________________ _______________________________________________________________________ _________________________ ______ ____ _ _ __________________________________________ -_______________________________________________________________ ________________________________________________________________________ ________________________ _____ ___ _______________________________________________ -________________________________________________________________ _______________________________________________________________________ ____ ___________ __________ _________________________________________________ -________________________________________________________________ _ _______________________________________________________________________ __ _ __________________________________________________________ -_________________________________________________________________ _ ___ ______ _______________________________________________________________________ ___ __________________________________________________________ -__________________________________________________________________ _ ______________ _______________________________________________________________ _____ _ ___ ___________________________________________________________ -___________________________________________________________________ __ _______________ ___________________________________________________________________ __ ____ _ ____________________________________________________________ -____________________________________________________________________ __ ________________ __________________________________________________________________ __ ____ __ _____________________________________________________________ -_____________________________________________________________________ ___ __________________________________________________________________________________ __ __ ___________ __ __ ________________________________________________________ -__________________________________________________________________________ ______________ _______________________________________________________________ ___ _________ ____ ___________________________________________________________ -______________________ ____________________________________________________ _________ ___ ____ ___________________________________________________________ __ __________ _ _____ __ _____________________________________________________________________ -___________________________________________________________________________ ______ __________ __________________________________________________________ ____ _______________ _______ __________________________________________________________________________ -_____________________________________________________________________________ _ __________ ___ _ _ _________________________________________________ ____ ________________ __________ ___ __________ ___________________________________________________________ -________________________________________________________________________________ ________________________________________________________________________ __ _ ___________________ ____________ _____________ __________________________________________________________ -_______________________________________________________________________________________ ____________________________________________________________________ ___ _____________________ _ _________________ ____________ ___________________________________________________________ -_________________________________________________________________________________________ __________________________________________________________________ _ ________________________ _ __________________ ___________ _________________________________________________________ -_____________________________________________________________________________________________ _____________ _____________________________________________________ _ ____________________________ __ ____________ _____ _ _______________________________________________________________________ -_______________________________________________________________________________________________ _________ _ _____________________________________________________ ____ ______________________ ___ __________________ ____ ______________ _ _________________________________________ __ __________ -________________________________________________________________________________________________ _______ ________________________________________________ ______________________ ___ ___________________ ______ ____________ ___ _________________________________________________________ -__________________________________________________________________________________________________ __ ______________________________________________ _______________________ ____ __ _________________ _______________________ ______________________________________________________ -_______________________________________________________________________________________________________ ______________________________________________ ________________________ _______ __________________ _______________ _______ _______________________________________________________ -_______________________________________________________________________________________________________ ___________________________________________ ____ _______ ________________________ ______________________ __ ____________ _____________________________________________________________ -_______________________________________________________________________________________________________ _____________________________________________________________ __________________________ ________________________ __ __________ _______________________________________________________________ -______________________________________________________________________________________________________ ____________________________________________________________ ___________________________ _________________________ _ _______ _________ ____________________________________________________ -____________________________________________________________________________________________________ ____________________________________________________________ _____________________________ __________________________ ______ ___ ___ ____________________________________________________ -____________________________________________________________________________________________________ _______________________________________________________ _______________________________ _________________________ _ _____ __ _ _______ ______________________________________________ -____________________________________________________________________________________________________ _____________________________________________________ ________________________________ ____________________________ ____ ___ ___________ __ ________________________________________ -____________________________________________________________________________________________________ __________________________________________________ _________________________________ _____________________________ ________ ____ _ ____________ ________ ___________________________ -____________________________________________________________________________________________________ _______________________________________________ __________________________________ _______________________________ _____________ __ _______________ ____ __ _________________________ -_____________________________________________________________________________________________________ ________________________________________________ _________________________________ _________________________________ ________________________ _________ _______________________ -______________________________________________________________________________________________________ _________________________________________________ _________________________________ __________________________________________ ___ _____________ ___ ____________ ___________________ -______________________________________________________________________________________________________ __________________________________________________ _________________________________ _______________________________________________ __ ________________________ ______________________________ -_______________________________________________________________________________________________________ ___________________________________________________ __ _____________________________ _________________________________________________________ _ _________ _____________________________________ -________________________________________________________________________________________________________ ____________________________________________________ ________ _______________________ _________________________________________________________ _____ _____________________________________ -_________________________________________________________________________________________________________ ____________________________________________________ _______ _______________________ ____________________________________________________ _ ______ ___________________________________ -__________________________________________________________________________________________________________ ___________________________________________________ _____ _______________________ ___________________________________________________ ____ ___________________________________ -_____________________________________________________________________________________________________________ ___________________________________________________ ______ _______________________ _________________________________________________ __ __________________________________ -______________________________________________________________________________________________________________ ____________________________________________________ _________ ________________________ ________________________________________________ __________________________________ -______________________________________________________________________________________________________________ ______________________________________________________ _________ ________________________ _____________________________________________ _______________________________ -______________________________________________________________________________________________________________ _______________________________________________________ ________ _________________________ _________________________________________ _______________________________ -______________________________________________________________________________________________________________ ___________________________________________________________ ________ _________________________ _________________________________________ _____________________________ -______________________________________________________________________________________________________________ ______________________________________________________________ _________ __________________________ ________________________________________ ____________________________ -______________________________________________________________________________________________________________ _______________________________________________________________ ________________________________________ _________________________________________ ___________________________ -______________________________________________________________________________________________________________ ________________________________________________________________ ________________________________________ _________________________________________ ___________________________ -_____________________________________________________________________________________________________________ __________________________________________________________________ _________________________________________ _________________________________________ ___________________________ -_____________________________________________________________________________________________________________ ___________________________________________________________________ __________________________________________ __________________________________________ ___________________________ -_____________________________________________________________________________________________________________ _____________________________________________________________________ ___________________________________________ __________________________________________ ___________________________ -_____________________________________________________________________________________________________________ ______________________________________________________________________ _____________________________________________ __________________________________________ _________ ____________________________ -_____________________________________________________________________________________________________________ ________________________________________________________________________ ________________________________________________ __________________________________________ ________________ _ _____________________________ -____________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ _________________________________________________________________ _______________________ ______ -____________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________ ___________________________________________________________________ ________________________ _____ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ ___________________________________________________________________ __________________________ ____ -___________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________ __ -___________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ ___ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ _______________________________________________________________________ ________________________ ____ -__________________________________________________________________________________________________________ _ ________________________________________________________________________________________________________________________________________ ________________________________________________________________________ _______________________ _______ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ _________________________________________________________________________ ______________________ _______ -__________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________ _________ -__________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________ __________ -__________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ ________ ___________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -___________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -___________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_______________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_______________________________________________________________________________________________________________________ _ _________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -____________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________ ______________________ ___________________________________ _____________________________________________ -__________________________________________________________________________________________________________________ _ _____________________________________________________________________________________________________________________________________ ______________________ ________ _____________________ _____________________________________________ -__________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________ ________________ ________ _ ______ ___ _ _______ ____ __________________________________________ -________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________ _ _______________ _________ ____________________________________ -_______________________________________________________________________________________________________________ _ ___________________________________________________________________________________________________________ _ ________ ________ ___________________________________ -_________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ ___ ______ ________________________________ -_________________________________________________________________________________________________________________ ______________________________________________________________________________________________ ______ _ _____ _________________________ -____________________________________________________________________________________________________________ __ ___________________________________________________________________________________________ ____ ____ _______________________ -____________________________________________________________________________________________________________ _ ___________________________________________________________________________ ___________ ____________________ -__________________________________________________________________________________________________________ _______________________________________________________ _________________ -_________________________________________________________________________________________________________ ___________________________________________________ ____________ -___________________________________________________________________________________________________________ ________________________________________________ ___________ -_________________________________________________________________________________ _______________________ ________________________________________________ _________ -______________________________________________________________________________ ______________________ ______________________________________________ __________ -_____________________________________________________________________________ __________ ___ ____________________________________________ __________ -_____________________________________________________________________________ _____ ________________________________________ ___________ -_____________________________________________________ ______________ ______ __ _________________________________________ _____________ -_____________________________________________________ _ _ ____ ______ _________________________________________ ______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ - - - - OutputTable7 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - id,csquarecode,x,y,z,time,fvalue -1,5918:100,-180,-90,0,0,0.0749916 -2,5917:209,-179,-90,0,0,0.0750201 -3,5917:208,-178,-90,0,0,0.0750201 -4,5917:207,-177,-90,0,0,0.0750416 -5,5917:206,-176,-90,0,0,0.0750488 -6,5917:205,-175,-90,0,0,0.0750558 -7,5917:104,-174,-90,0,0,0.0750702 -8,5917:103,-173,-90,0,0,0.0750773 -9,5917:102,-172,-90,0,0,0.0750843 -10,5917:101,-171,-90,0,0,0.0750843 -11,5917:100,-170,-90,0,0,0.0750915 -12,5916:209,-169,-90,0,0,0.0750987 -13,5916:208,-168,-90,0,0,0.0751059 -14,5916:207,-167,-90,0,0,0.0751128 -15,5916:206,-166,-90,0,0,0.0751059 -16,5916:205,-165,-90,0,0,0.0751059 -17,5916:104,-164,-90,0,0,0.0751059 -18,5916:103,-163,-90,0,0,0.0751128 -19,5916:102,-162,-90,0,0,0.0751128 -20,5916:101,-161,-90,0,0,0.07512 -21,5916:100,-160,-90,0,0,0.0751344 -22,5915:209,-159,-90,0,0,0.0751416 -23,5915:208,-158,-90,0,0,0.0751558 -24,5915:207,-157,-90,0,0,0.0751486 -25,5915:206,-156,-90,0,0,0.0751558 -26,5915:205,-155,-90,0,0,0.075163 -27,5915:104,-154,-90,0,0,0.0751486 -28,5915:103,-153,-90,0,0,0.075163 -29,5915:102,-152,-90,0,0,0.0751558 -30,5915:101,-151,-90,0,0,0.0751416 -31,5915:100,-150,-90,0,0,0.0751416 -32,5914:209,-149,-90,0,0,0.0751344 -33,5914:208,-148,-90,0,0,0.0751344 -34,5914:207,-147,-90,0,0,0.0751272 -35,5914:206,-146,-90,0,0,0.07512 -36,5914:205,-145,-90,0,0,0.07512 -37,5914:104,-144,-90,0,0,0.0751128 -38,5914:103,-143,-90,0,0,0.07512 -39,5914:102,-142,-90,0,0,0.0751128 -40,5914:101,-141,-90,0,0,0.0751128 -41,5914:100,-140,-90,0,0,0.07512 -42,5913:209,-139,-90,0,0,0.07512 -43,5913:208,-138,-90,0,0,0.0751272 -44,5913:207,-137,-90,0,0,0.07527 -45,5913:206,-136,-90,0,0,0.0758155 -46,5913:205,-135,-90,0,0,0.0776421 -47,5913:104,-134,-90,0,0,0.0779001 -48,5911:100,-110,-90,0,0,0.0832649 -49,5910:209,-109,-90,0,0,0.0880188 -50,5910:206,-106,-90,0,0,0.0759162 -51,5910:205,-105,-90,0,0,0.0753775 -52,5910:104,-104,-90,0,0,0.0768514 -53,5910:103,-103,-90,0,0,0.0810109 -54,5906:101,-61,-90,0,0,0.0753489 -55,5906:100,-60,-90,0,0,0.075163 -56,5905:209,-59,-90,0,0,0.0750201 -57,5905:208,-58,-90,0,0,0.074949 -58,5905:207,-57,-90,0,0,0.0749346 -59,5905:206,-56,-90,0,0,0.0749275 -60,5905:205,-55,-90,0,0,0.0749346 -61,5905:104,-54,-90,0,0,0.0749346 -62,5905:103,-53,-90,0,0,0.0749418 -63,5905:102,-52,-90,0,0,0.0749562 -64,5905:101,-51,-90,0,0,0.0749631 -65,5905:100,-50,-90,0,0,0.0749631 -66,5904:209,-49,-90,0,0,0.0749631 -67,5904:208,-48,-90,0,0,0.074949 -68,5904:207,-47,-90,0,0,0.0749703 -69,5904:206,-46,-90,0,0,0.0749988 -70,5904:205,-45,-90,0,0,0.0750273 -71,5904:104,-44,-90,0,0,0.0750201 -72,5904:103,-43,-90,0,0,0.0750201 -73,5904:102,-42,-90,0,0,0.0750131 -74,5904:101,-41,-90,0,0,0.0750201 -75,5904:100,-40,-90,0,0,0.0750345 -76,5903:209,-39,-90,0,0,0.0750345 -77,5903:208,-38,-90,0,0,0.0750345 -78,5903:207,-37,-90,0,0,0.0750345 -79,5903:206,-36,-90,0,0,0.0750345 -80,5903:205,-35,-90,0,0,0.0750416 -81,5903:104,-34,-90,0,0,0.0750345 -82,5903:103,-33,-90,0,0,0.0750345 -83,5903:102,-32,-90,0,0,0.0750416 -84,5903:101,-31,-90,0,0,0.0750488 -85,5903:100,-30,-90,0,0,0.0750488 -86,5902:209,-29,-90,0,0,0.0750488 -87,5902:208,-28,-90,0,0,0.0750345 -88,5902:207,-27,-90,0,0,0.0750201 -89,5902:206,-26,-90,0,0,0.0761183 -90,5902:205,-25,-90,0,0,0.0756715 -91,5902:104,-24,-90,0,0,0.0789397 -92,3916:206,166,-90,0,0,0.0752487 -93,3916:207,167,-90,0,0,0.075063 -94,3916:208,168,-90,0,0,0.0749846 -95,3916:209,169,-90,0,0,0.074899 -96,3917:100,170,-90,0,0,0.074892 -97,3917:101,171,-90,0,0,0.0748777 -98,3917:102,172,-90,0,0,0.0807894 -99,3917:103,173,-90,0,0,0.0878209 -100,3917:104,174,-90,0,0,0.087558 -101,3917:205,175,-90,0,0,0.0873776 -102,3917:206,176,-90,0,0,0.0863183 -103,3917:207,177,-90,0,0,0.0752844 -104,3917:208,178,-90,0,0,0.0748849 -105,3917:209,179,-90,0,0,0.074949 -106,3918:100,180,-90,0,0,0.0749916 -107,5818:390,-180,-89,0,0,0.0749916 -108,5817:499,-179,-89,0,0,0.0750201 -109,5817:498,-178,-89,0,0,0.0750201 -110,5817:497,-177,-89,0,0,0.0750416 -111,5817:496,-176,-89,0,0,0.0750488 -112,5817:495,-175,-89,0,0,0.0750558 -113,5817:394,-174,-89,0,0,0.0750702 -114,5817:393,-173,-89,0,0,0.0750773 -115,5817:392,-172,-89,0,0,0.0750843 -116,5817:391,-171,-89,0,0,0.0750843 -117,5817:390,-170,-89,0,0,0.0750915 -118,5816:499,-169,-89,0,0,0.0750987 -119,5816:498,-168,-89,0,0,0.0751059 -120,5816:497,-167,-89,0,0,0.0751128 -121,5816:496,-166,-89,0,0,0.0751059 -122,5816:495,-165,-89,0,0,0.0751059 -123,5816:394,-164,-89,0,0,0.0751059 -124,5816:393,-163,-89,0,0,0.0751128 -125,5816:392,-162,-89,0,0,0.0751128 -126,5816:391,-161,-89,0,0,0.07512 -127,5816:390,-160,-89,0,0,0.0751344 -128,5815:499,-159,-89,0,0,0.0751416 -129,5815:498,-158,-89,0,0,0.0751558 -130,5815:497,-157,-89,0,0,0.0751486 -131,5815:496,-156,-89,0,0,0.0751558 -132,5815:495,-155,-89,0,0,0.075163 -133,5815:394,-154,-89,0,0,0.0751486 -134,5815:393,-153,-89,0,0,0.075163 -135,5815:392,-152,-89,0,0,0.0751558 -136,5815:391,-151,-89,0,0,0.0751416 -137,5815:390,-150,-89,0,0,0.0751416 -138,5814:499,-149,-89,0,0,0.0751344 -139,5814:498,-148,-89,0,0,0.0751344 -140,5814:497,-147,-89,0,0,0.0751272 -141,5814:496,-146,-89,0,0,0.07512 -142,5814:495,-145,-89,0,0,0.07512 -143,5814:394,-144,-89,0,0,0.0751128 -144,5814:393,-143,-89,0,0,0.07512 -145,5814:392,-142,-89,0,0,0.0751128 -146,5814:391,-141,-89,0,0,0.0751128 -147,5814:390,-140,-89,0,0,0.07512 -148,5813:499,-139,-89,0,0,0.07512 -149,5813:498,-138,-89,0,0,0.0751272 -150,5813:497,-137,-89,0,0,0.07527 -151,5813:496,-136,-89,0,0,0.0758155 -152,5813:495,-135,-89,0,0,0.0776421 -153,5813:394,-134,-89,0,0,0.0779001 -154,5811:390,-110,-89,0,0,0.0832649 -155,5810:499,-109,-89,0,0,0.0880188 -156,5810:496,-106,-89,0,0,0.0759162 -157,5810:495,-105,-89,0,0,0.0753775 -158,5810:394,-104,-89,0,0,0.0768514 -159,5810:393,-103,-89,0,0,0.0810109 -160,5806:391,-61,-89,0,0,0.0753489 -161,5806:390,-60,-89,0,0,0.075163 -162,5805:499,-59,-89,0,0,0.0750201 -163,5805:498,-58,-89,0,0,0.074949 -164,5805:497,-57,-89,0,0,0.0749346 -165,5805:496,-56,-89,0,0,0.0749275 -166,5805:495,-55,-89,0,0,0.0749346 -167,5805:394,-54,-89,0,0,0.0749346 -168,5805:393,-53,-89,0,0,0.0749418 -169,5805:392,-52,-89,0,0,0.0749562 -170,5805:391,-51,-89,0,0,0.0749631 -171,5805:390,-50,-89,0,0,0.0749631 -172,5804:499,-49,-89,0,0,0.0749631 -173,5804:498,-48,-89,0,0,0.074949 -174,5804:497,-47,-89,0,0,0.0749703 -175,5804:496,-46,-89,0,0,0.0749988 -176,5804:495,-45,-89,0,0,0.0750273 -177,5804:394,-44,-89,0,0,0.0750201 -178,5804:393,-43,-89,0,0,0.0750201 -179,5804:392,-42,-89,0,0,0.0750131 -180,5804:391,-41,-89,0,0,0.0750201 -181,5804:390,-40,-89,0,0,0.0750345 -182,5803:499,-39,-89,0,0,0.0750345 -183,5803:498,-38,-89,0,0,0.0750345 -184,5803:497,-37,-89,0,0,0.0750345 -185,5803:496,-36,-89,0,0,0.0750345 -186,5803:495,-35,-89,0,0,0.0750416 -187,5803:394,-34,-89,0,0,0.0750345 -188,5803:393,-33,-89,0,0,0.0750345 -189,5803:392,-32,-89,0,0,0.0750416 -190,5803:391,-31,-89,0,0,0.0750488 -191,5803:390,-30,-89,0,0,0.0750488 -192,5802:499,-29,-89,0,0,0.0750488 -193,5802:498,-28,-89,0,0,0.0750345 -194,5802:497,-27,-89,0,0,0.0750201 -195,5802:496,-26,-89,0,0,0.0761183 -196,5802:495,-25,-89,0,0,0.0756715 -197,5802:394,-24,-89,0,0,0.0789397 -198,3816:496,166,-89,0,0,0.0752487 -199,3816:497,167,-89,0,0,0.075063 -200,3816:498,168,-89,0,0,0.0749846 -201,3816:499,169,-89,0,0,0.074899 -202,3817:390,170,-89,0,0,0.074892 -203,3817:391,171,-89,0,0,0.0748777 -204,3817:392,172,-89,0,0,0.0807894 -205,3817:393,173,-89,0,0,0.0878209 -206,3817:394,174,-89,0,0,0.087558 -207,3817:495,175,-89,0,0,0.0873776 -208,3817:496,176,-89,0,0,0.0863183 -209,3817:497,177,-89,0,0,0.0752844 -210,3817:498,178,-89,0,0,0.0748849 -211,3817:499,179,-89,0,0,0.074949 -212,3818:390,180,-89,0,0,0.0749916 -213,5818:380,-180,-88,0,0,0.0749916 -214,5817:489,-179,-88,0,0,0.0750201 -215,5817:488,-178,-88,0,0,0.0750201 -216,5817:487,-177,-88,0,0,0.0750416 -217,5817:486,-176,-88,0,0,0.0750488 -218,5817:485,-175,-88,0,0,0.0750558 -219,5817:384,-174,-88,0,0,0.0750702 -220,5817:383,-173,-88,0,0,0.0750773 -221,5817:382,-172,-88,0,0,0.0750843 -222,5817:381,-171,-88,0,0,0.0750843 -223,5817:380,-170,-88,0,0,0.0750915 -224,5816:489,-169,-88,0,0,0.0750987 -225,5816:488,-168,-88,0,0,0.0751059 -226,5816:487,-167,-88,0,0,0.0751128 -227,5816:486,-166,-88,0,0,0.0751059 -228,5816:485,-165,-88,0,0,0.0751059 -229,5816:384,-164,-88,0,0,0.0751059 -230,5816:383,-163,-88,0,0,0.0751128 -231,5816:382,-162,-88,0,0,0.0751128 -232,5816:381,-161,-88,0,0,0.07512 -233,5816:380,-160,-88,0,0,0.0751344 -234,5815:489,-159,-88,0,0,0.0751416 -235,5815:488,-158,-88,0,0,0.0751558 -236,5815:487,-157,-88,0,0,0.0751486 -237,5815:486,-156,-88,0,0,0.0751558 -238,5815:485,-155,-88,0,0,0.075163 -239,5815:384,-154,-88,0,0,0.0751486 -240,5815:383,-153,-88,0,0,0.075163 -241,5815:382,-152,-88,0,0,0.0751558 -242,5815:381,-151,-88,0,0,0.0751416 -243,5815:380,-150,-88,0,0,0.0751416 -244,5814:489,-149,-88,0,0,0.0751344 -245,5814:488,-148,-88,0,0,0.0751344 -246,5814:487,-147,-88,0,0,0.0751272 -247,5814:486,-146,-88,0,0,0.07512 -248,5814:485,-145,-88,0,0,0.07512 -249,5814:384,-144,-88,0,0,0.0751128 -250,5814:383,-143,-88,0,0,0.07512 -251,5814:382,-142,-88,0,0,0.0751128 -252,5814:381,-141,-88,0,0,0.0751128 -253,5814:380,-140,-88,0,0,0.07512 -254,5813:489,-139,-88,0,0,0.07512 -255,5813:488,-138,-88,0,0,0.0751272 -256,5813:487,-137,-88,0,0,0.07527 -257,5813:486,-136,-88,0,0,0.0758155 -258,5813:485,-135,-88,0,0,0.0776421 -259,5813:384,-134,-88,0,0,0.0779001 -260,5811:380,-110,-88,0,0,0.0832649 -261,5810:489,-109,-88,0,0,0.0880188 -262,5810:486,-106,-88,0,0,0.0759162 -263,5810:485,-105,-88,0,0,0.0753775 -264,5810:384,-104,-88,0,0,0.0768514 -265,5810:383,-103,-88,0,0,0.0810109 -266,5806:381,-61,-88,0,0,0.0753489 -267,5806:380,-60,-88,0,0,0.075163 -268,5805:489,-59,-88,0,0,0.0750201 -269,5805:488,-58,-88,0,0,0.074949 -270,5805:487,-57,-88,0,0,0.0749346 -271,5805:486,-56,-88,0,0,0.0749275 -272,5805:485,-55,-88,0,0,0.0749346 -273,5805:384,-54,-88,0,0,0.0749346 -274,5805:383,-53,-88,0,0,0.0749418 -275,5805:382,-52,-88,0,0,0.0749562 -276,5805:381,-51,-88,0,0,0.0749631 -277,5805:380,-50,-88,0,0,0.0749631 -278,5804:489,-49,-88,0,0,0.0749631 -279,5804:488,-48,-88,0,0,0.074949 -280,5804:487,-47,-88,0,0,0.0749703 -281,5804:486,-46,-88,0,0,0.0749988 -282,5804:485,-45,-88,0,0,0.0750273 -283,5804:384,-44,-88,0,0,0.0750201 -284,5804:383,-43,-88,0,0,0.0750201 -285,5804:382,-42,-88,0,0,0.0750131 -286,5804:381,-41,-88,0,0,0.0750201 -287,5804:380,-40,-88,0,0,0.0750345 -288,5803:489,-39,-88,0,0,0.0750345 -289,5803:488,-38,-88,0,0,0.0750345 -290,5803:487,-37,-88,0,0,0.0750345 -291,5803:486,-36,-88,0,0,0.0750345 -292,5803:485,-35,-88,0,0,0.0750416 -293,5803:384,-34,-88,0,0,0.0750345 -294,5803:383,-33,-88,0,0,0.0750345 -295,5803:382,-32,-88,0,0,0.0750416 -296,5803:381,-31,-88,0,0,0.0750488 -297,5803:380,-30,-88,0,0,0.0750488 -298,5802:489,-29,-88,0,0,0.0750488 -299,5802:488,-28,-88,0,0,0.0750345 -300,5802:487,-27,-88,0,0,0.0750201 -301,5802:486,-26,-88,0,0,0.0761183 -302,5802:485,-25,-88,0,0,0.0756715 -303,5802:384,-24,-88,0,0,0.0789397 -304,3816:486,166,-88,0,0,0.0752487 -305,3816:487,167,-88,0,0,0.075063 -306,3816:488,168,-88,0,0,0.0749846 -307,3816:489,169,-88,0,0,0.074899 -308,3817:380,170,-88,0,0,0.074892 -309,3817:381,171,-88,0,0,0.0748777 -310,3817:382,172,-88,0,0,0.0807894 -311,3817:383,173,-88,0,0,0.0878209 -312,3817:384,174,-88,0,0,0.087558 -313,3817:485,175,-88,0,0,0.0873776 -314,3817:486,176,-88,0,0,0.0863183 -315,3817:487,177,-88,0,0,0.0752844 -316,3817:488,178,-88,0,0,0.0748849 -317,3817:489,179,-88,0,0,0.074949 -318,3818:380,180,-88,0,0,0.0749916 -319,5818:370,-180,-87,0,0,0.0749916 -320,5817:479,-179,-87,0,0,0.0750201 -321,5817:478,-178,-87,0,0,0.0750201 -322,5817:477,-177,-87,0,0,0.0750416 -323,5817:476,-176,-87,0,0,0.0750488 -324,5817:475,-175,-87,0,0,0.0750558 -325,5817:374,-174,-87,0,0,0.0750702 -326,5817:373,-173,-87,0,0,0.0750773 -327,5817:372,-172,-87,0,0,0.0750843 -328,5817:371,-171,-87,0,0,0.0750843 -329,5817:370,-170,-87,0,0,0.0750915 -330,5816:479,-169,-87,0,0,0.0750987 -331,5816:478,-168,-87,0,0,0.0751059 -332,5816:477,-167,-87,0,0,0.0751128 -333,5816:476,-166,-87,0,0,0.0751059 -334,5816:475,-165,-87,0,0,0.0751059 -335,5816:374,-164,-87,0,0,0.0751059 -336,5816:373,-163,-87,0,0,0.0751128 -337,5816:372,-162,-87,0,0,0.0751128 -338,5816:371,-161,-87,0,0,0.07512 -339,5816:370,-160,-87,0,0,0.0751344 -340,5815:479,-159,-87,0,0,0.0751416 -341,5815:478,-158,-87,0,0,0.0751558 -342,5815:477,-157,-87,0,0,0.0751486 -343,5815:476,-156,-87,0,0,0.0751558 -344,5815:475,-155,-87,0,0,0.075163 -345,5815:374,-154,-87,0,0,0.0751486 -346,5815:373,-153,-87,0,0,0.075163 -347,5815:372,-152,-87,0,0,0.0751558 -348,5815:371,-151,-87,0,0,0.0751416 -349,5815:370,-150,-87,0,0,0.0751416 -350,5814:479,-149,-87,0,0,0.0751344 -351,5814:478,-148,-87,0,0,0.0751344 -352,5814:477,-147,-87,0,0,0.0751272 -353,5814:476,-146,-87,0,0,0.07512 -354,5814:475,-145,-87,0,0,0.07512 -355,5814:374,-144,-87,0,0,0.0751128 -356,5814:373,-143,-87,0,0,0.07512 -357,5814:372,-142,-87,0,0,0.0751128 -358,5814:371,-141,-87,0,0,0.0751128 -359,5814:370,-140,-87,0,0,0.07512 -360,5813:479,-139,-87,0,0,0.07512 -361,5813:478,-138,-87,0,0,0.0751272 -362,5813:477,-137,-87,0,0,0.07527 -363,5813:476,-136,-87,0,0,0.0758155 -364,5813:475,-135,-87,0,0,0.0776421 -365,5813:374,-134,-87,0,0,0.0779001 -366,5811:370,-110,-87,0,0,0.0832649 -367,5810:479,-109,-87,0,0,0.0880188 -368,5810:476,-106,-87,0,0,0.0759162 -369,5810:475,-105,-87,0,0,0.0753775 -370,5810:374,-104,-87,0,0,0.0768514 -371,5810:373,-103,-87,0,0,0.0810109 -372,5806:371,-61,-87,0,0,0.0753489 -373,5806:370,-60,-87,0,0,0.075163 -374,5805:479,-59,-87,0,0,0.0750201 -375,5805:478,-58,-87,0,0,0.074949 -376,5805:477,-57,-87,0,0,0.0749346 -377,5805:476,-56,-87,0,0,0.0749275 -378,5805:475,-55,-87,0,0,0.0749346 -379,5805:374,-54,-87,0,0,0.0749346 -380,5805:373,-53,-87,0,0,0.0749418 -381,5805:372,-52,-87,0,0,0.0749562 -382,5805:371,-51,-87,0,0,0.0749631 -383,5805:370,-50,-87,0,0,0.0749631 -384,5804:479,-49,-87,0,0,0.0749631 -385,5804:478,-48,-87,0,0,0.074949 -386,5804:477,-47,-87,0,0,0.0749703 -387,5804:476,-46,-87,0,0,0.0749988 -388,5804:475,-45,-87,0,0,0.0750273 -389,5804:374,-44,-87,0,0,0.0750201 -390,5804:373,-43,-87,0,0,0.0750201 -391,5804:372,-42,-87,0,0,0.0750131 -392,5804:371,-41,-87,0,0,0.0750201 -393,5804:370,-40,-87,0,0,0.0750345 -394,5803:479,-39,-87,0,0,0.0750345 -395,5803:478,-38,-87,0,0,0.0750345 -396,5803:477,-37,-87,0,0,0.0750345 -397,5803:476,-36,-87,0,0,0.0750345 -398,5803:475,-35,-87,0,0,0.0750416 -399,5803:374,-34,-87,0,0,0.0750345 -400,5803:373,-33,-87,0,0,0.0750345 -401,5803:372,-32,-87,0,0,0.0750416 -402,5803:371,-31,-87,0,0,0.0750488 -403,5803:370,-30,-87,0,0,0.0750488 -404,5802:479,-29,-87,0,0,0.0750488 -405,5802:478,-28,-87,0,0,0.0750345 -406,5802:477,-27,-87,0,0,0.0750201 -407,5802:476,-26,-87,0,0,0.0761183 -408,5802:475,-25,-87,0,0,0.0756715 -409,5802:374,-24,-87,0,0,0.0789397 -410,3816:476,166,-87,0,0,0.0752487 -411,3816:477,167,-87,0,0,0.075063 -412,3816:478,168,-87,0,0,0.0749846 -413,3816:479,169,-87,0,0,0.074899 -414,3817:370,170,-87,0,0,0.074892 -415,3817:371,171,-87,0,0,0.0748777 -416,3817:372,172,-87,0,0,0.0807894 -417,3817:373,173,-87,0,0,0.0878209 -418,3817:374,174,-87,0,0,0.087558 -419,3817:475,175,-87,0,0,0.0873776 -420,3817:476,176,-87,0,0,0.0863183 -421,3817:477,177,-87,0,0,0.0752844 -422,3817:478,178,-87,0,0,0.0748849 -423,3817:479,179,-87,0,0,0.074949 -424,3818:370,180,-87,0,0,0.0749916 -425,5818:360,-180,-86,0,0,0.0749916 -426,5817:469,-179,-86,0,0,0.0750201 -427,5817:468,-178,-86,0,0,0.0750201 -428,5817:467,-177,-86,0,0,0.0750416 -429,5817:466,-176,-86,0,0,0.0750488 -430,5817:465,-175,-86,0,0,0.0750558 -431,5817:364,-174,-86,0,0,0.0750702 -432,5817:363,-173,-86,0,0,0.0750773 -433,5817:362,-172,-86,0,0,0.0750843 -434,5817:361,-171,-86,0,0,0.0750843 -435,5817:360,-170,-86,0,0,0.0750915 -436,5816:469,-169,-86,0,0,0.0750987 -437,5816:468,-168,-86,0,0,0.0751059 -438,5816:467,-167,-86,0,0,0.0751128 -439,5816:466,-166,-86,0,0,0.0751059 -440,5816:465,-165,-86,0,0,0.0751059 -441,5816:364,-164,-86,0,0,0.0751059 -442,5816:363,-163,-86,0,0,0.0751128 -443,5816:362,-162,-86,0,0,0.0751128 -444,5816:361,-161,-86,0,0,0.07512 -445,5816:360,-160,-86,0,0,0.0751344 -446,5815:469,-159,-86,0,0,0.0751416 -447,5815:468,-158,-86,0,0,0.0751558 -448,5815:467,-157,-86,0,0,0.0751486 -449,5815:466,-156,-86,0,0,0.0751558 -450,5815:465,-155,-86,0,0,0.075163 -451,5815:364,-154,-86,0,0,0.0751486 -452,5815:363,-153,-86,0,0,0.075163 -453,5815:362,-152,-86,0,0,0.0751558 -454,5815:361,-151,-86,0,0,0.0751416 -455,5815:360,-150,-86,0,0,0.0751416 -456,5814:469,-149,-86,0,0,0.0751344 -457,5814:468,-148,-86,0,0,0.0751344 -458,5814:467,-147,-86,0,0,0.0751272 -459,5814:466,-146,-86,0,0,0.07512 -460,5814:465,-145,-86,0,0,0.07512 -461,5814:364,-144,-86,0,0,0.0751128 -462,5814:363,-143,-86,0,0,0.07512 -463,5814:362,-142,-86,0,0,0.0751128 -464,5814:361,-141,-86,0,0,0.0751128 -465,5814:360,-140,-86,0,0,0.07512 -466,5813:469,-139,-86,0,0,0.07512 -467,5813:468,-138,-86,0,0,0.0751272 -468,5813:467,-137,-86,0,0,0.07527 -469,5813:466,-136,-86,0,0,0.0758155 -470,5813:465,-135,-86,0,0,0.0776421 -471,5813:364,-134,-86,0,0,0.0779001 -472,5811:360,-110,-86,0,0,0.0832649 -473,5810:469,-109,-86,0,0,0.0880188 -474,5810:466,-106,-86,0,0,0.0759162 -475,5810:465,-105,-86,0,0,0.0753775 -476,5810:364,-104,-86,0,0,0.0768514 -477,5810:363,-103,-86,0,0,0.0810109 -478,5806:361,-61,-86,0,0,0.0753489 -479,5806:360,-60,-86,0,0,0.075163 -480,5805:469,-59,-86,0,0,0.0750201 -481,5805:468,-58,-86,0,0,0.074949 -482,5805:467,-57,-86,0,0,0.0749346 -483,5805:466,-56,-86,0,0,0.0749275 -484,5805:465,-55,-86,0,0,0.0749346 -485,5805:364,-54,-86,0,0,0.0749346 -486,5805:363,-53,-86,0,0,0.0749418 -487,5805:362,-52,-86,0,0,0.0749562 -488,5805:361,-51,-86,0,0,0.0749631 -489,5805:360,-50,-86,0,0,0.0749631 -490,5804:469,-49,-86,0,0,0.0749631 -491,5804:468,-48,-86,0,0,0.074949 -492,5804:467,-47,-86,0,0,0.0749703 -493,5804:466,-46,-86,0,0,0.0749988 -494,5804:465,-45,-86,0,0,0.0750273 -495,5804:364,-44,-86,0,0,0.0750201 -496,5804:363,-43,-86,0,0,0.0750201 -497,5804:362,-42,-86,0,0,0.0750131 -498,5804:361,-41,-86,0,0,0.0750201 -499,5804:360,-40,-86,0,0,0.0750345 -500,5803:469,-39,-86,0,0,0.0750345 -501,5803:468,-38,-86,0,0,0.0750345 -502,5803:467,-37,-86,0,0,0.0750345 -503,5803:466,-36,-86,0,0,0.0750345 -504,5803:465,-35,-86,0,0,0.0750416 -505,5803:364,-34,-86,0,0,0.0750345 -506,5803:363,-33,-86,0,0,0.0750345 -507,5803:362,-32,-86,0,0,0.0750416 -508,5803:361,-31,-86,0,0,0.0750488 -509,5803:360,-30,-86,0,0,0.0750488 -510,5802:469,-29,-86,0,0,0.0750488 -511,5802:468,-28,-86,0,0,0.0750345 -512,5802:467,-27,-86,0,0,0.0750201 -513,5802:466,-26,-86,0,0,0.0761183 -514,5802:465,-25,-86,0,0,0.0756715 -515,5802:364,-24,-86,0,0,0.0789397 -516,3816:466,166,-86,0,0,0.0752487 -517,3816:467,167,-86,0,0,0.075063 -518,3816:468,168,-86,0,0,0.0749846 -519,3816:469,169,-86,0,0,0.074899 -520,3817:360,170,-86,0,0,0.074892 -521,3817:361,171,-86,0,0,0.0748777 -522,3817:362,172,-86,0,0,0.0807894 -523,3817:363,173,-86,0,0,0.0878209 -524,3817:364,174,-86,0,0,0.087558 -525,3817:465,175,-86,0,0,0.0873776 -526,3817:466,176,-86,0,0,0.0863183 -527,3817:467,177,-86,0,0,0.0752844 -528,3817:468,178,-86,0,0,0.0748849 -529,3817:469,179,-86,0,0,0.074949 -530,3818:360,180,-86,0,0,0.0749916 -531,5818:350,-180,-85,0,0,0.0749916 -532,5817:459,-179,-85,0,0,0.0750201 -533,5817:458,-178,-85,0,0,0.0750201 -534,5817:457,-177,-85,0,0,0.0750416 -535,5817:456,-176,-85,0,0,0.0750488 -536,5817:455,-175,-85,0,0,0.0750558 -537,5817:354,-174,-85,0,0,0.0750702 -538,5817:353,-173,-85,0,0,0.0750773 -539,5817:352,-172,-85,0,0,0.0750843 -540,5817:351,-171,-85,0,0,0.0750843 -541,5817:350,-170,-85,0,0,0.0750915 -542,5816:459,-169,-85,0,0,0.0750987 -543,5816:458,-168,-85,0,0,0.0751059 -544,5816:457,-167,-85,0,0,0.0751128 -545,5816:456,-166,-85,0,0,0.0751059 -546,5816:455,-165,-85,0,0,0.0751059 -547,5816:354,-164,-85,0,0,0.0751059 -548,5816:353,-163,-85,0,0,0.0751128 -549,5816:352,-162,-85,0,0,0.0751128 -550,5816:351,-161,-85,0,0,0.07512 -551,5816:350,-160,-85,0,0,0.0751344 -552,5815:459,-159,-85,0,0,0.0751416 -553,5815:458,-158,-85,0,0,0.0751558 -554,5815:457,-157,-85,0,0,0.0751486 -555,5815:456,-156,-85,0,0,0.0751558 -556,5815:455,-155,-85,0,0,0.075163 -557,5815:354,-154,-85,0,0,0.0751486 -558,5815:353,-153,-85,0,0,0.075163 -559,5815:352,-152,-85,0,0,0.0751558 -560,5815:351,-151,-85,0,0,0.0751416 -561,5815:350,-150,-85,0,0,0.0751416 -562,5814:459,-149,-85,0,0,0.0751344 -563,5814:458,-148,-85,0,0,0.0751344 -564,5814:457,-147,-85,0,0,0.0751272 -565,5814:456,-146,-85,0,0,0.07512 -566,5814:455,-145,-85,0,0,0.07512 -567,5814:354,-144,-85,0,0,0.0751128 -568,5814:353,-143,-85,0,0,0.07512 -569,5814:352,-142,-85,0,0,0.0751128 -570,5814:351,-141,-85,0,0,0.0751128 -571,5814:350,-140,-85,0,0,0.07512 -572,5813:459,-139,-85,0,0,0.07512 -573,5813:458,-138,-85,0,0,0.0751272 -574,5813:457,-137,-85,0,0,0.07527 -575,5813:456,-136,-85,0,0,0.0758155 -576,5813:455,-135,-85,0,0,0.0776421 -577,5813:354,-134,-85,0,0,0.0779001 -578,5811:350,-110,-85,0,0,0.0832649 -579,5810:459,-109,-85,0,0,0.0880188 -580,5810:456,-106,-85,0,0,0.0759162 -581,5810:455,-105,-85,0,0,0.0753775 -582,5810:354,-104,-85,0,0,0.0768514 -583,5810:353,-103,-85,0,0,0.0810109 -584,5806:351,-61,-85,0,0,0.0753489 -585,5806:350,-60,-85,0,0,0.075163 -586,5805:459,-59,-85,0,0,0.0750201 -587,5805:458,-58,-85,0,0,0.074949 -588,5805:457,-57,-85,0,0,0.0749346 -589,5805:456,-56,-85,0,0,0.0749275 -590,5805:455,-55,-85,0,0,0.0749346 -591,5805:354,-54,-85,0,0,0.0749346 -592,5805:353,-53,-85,0,0,0.0749418 -593,5805:352,-52,-85,0,0,0.0749562 -594,5805:351,-51,-85,0,0,0.0749631 -595,5805:350,-50,-85,0,0,0.0749631 -596,5804:459,-49,-85,0,0,0.0749631 -597,5804:458,-48,-85,0,0,0.074949 -598,5804:457,-47,-85,0,0,0.0749703 -599,5804:456,-46,-85,0,0,0.0749988 -600,5804:455,-45,-85,0,0,0.0750273 -601,5804:354,-44,-85,0,0,0.0750201 -602,5804:353,-43,-85,0,0,0.0750201 -603,5804:352,-42,-85,0,0,0.0750131 -604,5804:351,-41,-85,0,0,0.0750201 -605,5804:350,-40,-85,0,0,0.0750345 -606,5803:459,-39,-85,0,0,0.0750345 -607,5803:458,-38,-85,0,0,0.0750345 -608,5803:457,-37,-85,0,0,0.0750345 -609,5803:456,-36,-85,0,0,0.0750345 -610,5803:455,-35,-85,0,0,0.0750416 -611,5803:354,-34,-85,0,0,0.0750345 -612,5803:353,-33,-85,0,0,0.0750345 -613,5803:352,-32,-85,0,0,0.0750416 -614,5803:351,-31,-85,0,0,0.0750488 -615,5803:350,-30,-85,0,0,0.0750488 -616,5802:459,-29,-85,0,0,0.0750488 -617,5802:458,-28,-85,0,0,0.0750345 -618,5802:457,-27,-85,0,0,0.0750201 -619,5802:456,-26,-85,0,0,0.0761183 -620,5802:455,-25,-85,0,0,0.0756715 -621,5802:354,-24,-85,0,0,0.0789397 -622,3816:456,166,-85,0,0,0.0752487 -623,3816:457,167,-85,0,0,0.075063 -624,3816:458,168,-85,0,0,0.0749846 -625,3816:459,169,-85,0,0,0.074899 -626,3817:350,170,-85,0,0,0.074892 -627,3817:351,171,-85,0,0,0.0748777 -628,3817:352,172,-85,0,0,0.0807894 -629,3817:353,173,-85,0,0,0.0878209 -630,3817:354,174,-85,0,0,0.087558 -631,3817:455,175,-85,0,0,0.0873776 -632,3817:456,176,-85,0,0,0.0863183 -633,3817:457,177,-85,0,0,0.0752844 -634,3817:458,178,-85,0,0,0.0748849 -635,3817:459,179,-85,0,0,0.074949 -636,3818:350,180,-85,0,0,0.0749916 -637,5818:140,-180,-84,0,0,0.0749916 -638,5817:249,-179,-84,0,0,0.0750201 -639,5817:248,-178,-84,0,0,0.0750201 -640,5817:247,-177,-84,0,0,0.0750416 -641,5817:246,-176,-84,0,0,0.0750488 -642,5817:245,-175,-84,0,0,0.0750558 -643,5817:144,-174,-84,0,0,0.0750702 -644,5817:143,-173,-84,0,0,0.0750773 -645,5817:142,-172,-84,0,0,0.0750843 -646,5817:141,-171,-84,0,0,0.0750843 -647,5817:140,-170,-84,0,0,0.0750915 -648,5816:249,-169,-84,0,0,0.0750987 -649,5816:248,-168,-84,0,0,0.0751059 -650,5816:247,-167,-84,0,0,0.0751128 -651,5816:246,-166,-84,0,0,0.0751059 -652,5816:245,-165,-84,0,0,0.0751059 -653,5816:144,-164,-84,0,0,0.0751059 -654,5816:143,-163,-84,0,0,0.0751128 -655,5816:142,-162,-84,0,0,0.0751128 -656,5816:141,-161,-84,0,0,0.07512 -657,5816:140,-160,-84,0,0,0.0751344 -658,5815:249,-159,-84,0,0,0.0751416 -659,5815:248,-158,-84,0,0,0.0751558 -660,5815:247,-157,-84,0,0,0.0751486 -661,5815:246,-156,-84,0,0,0.0751558 -662,5815:245,-155,-84,0,0,0.075163 -663,5815:144,-154,-84,0,0,0.0751486 -664,5815:143,-153,-84,0,0,0.075163 -665,5815:142,-152,-84,0,0,0.0751558 -666,5815:141,-151,-84,0,0,0.0751416 -667,5815:140,-150,-84,0,0,0.0751416 -668,5814:249,-149,-84,0,0,0.0751344 -669,5814:248,-148,-84,0,0,0.0751344 -670,5814:247,-147,-84,0,0,0.0751272 -671,5814:246,-146,-84,0,0,0.07512 -672,5814:245,-145,-84,0,0,0.07512 -673,5814:144,-144,-84,0,0,0.0751128 -674,5814:143,-143,-84,0,0,0.07512 -675,5814:142,-142,-84,0,0,0.0751128 -676,5814:141,-141,-84,0,0,0.0751128 -677,5814:140,-140,-84,0,0,0.07512 -678,5813:249,-139,-84,0,0,0.07512 -679,5813:248,-138,-84,0,0,0.0751272 -680,5813:247,-137,-84,0,0,0.07527 -681,5813:246,-136,-84,0,0,0.0758155 -682,5813:245,-135,-84,0,0,0.0776421 -683,5813:144,-134,-84,0,0,0.0779001 -684,5811:140,-110,-84,0,0,0.0832649 -685,5810:249,-109,-84,0,0,0.0880188 -686,5810:246,-106,-84,0,0,0.0759162 -687,5810:245,-105,-84,0,0,0.0753775 -688,5810:144,-104,-84,0,0,0.0768514 -689,5810:143,-103,-84,0,0,0.0810109 -690,5806:141,-61,-84,0,0,0.0753489 -691,5806:140,-60,-84,0,0,0.075163 -692,5805:249,-59,-84,0,0,0.0750201 -693,5805:248,-58,-84,0,0,0.074949 -694,5805:247,-57,-84,0,0,0.0749346 -695,5805:246,-56,-84,0,0,0.0749275 -696,5805:245,-55,-84,0,0,0.0749346 -697,5805:144,-54,-84,0,0,0.0749346 -698,5805:143,-53,-84,0,0,0.0749418 -699,5805:142,-52,-84,0,0,0.0749562 -700,5805:141,-51,-84,0,0,0.0749631 -701,5805:140,-50,-84,0,0,0.0749631 -702,5804:249,-49,-84,0,0,0.0749631 -703,5804:248,-48,-84,0,0,0.074949 -704,5804:247,-47,-84,0,0,0.0749703 -705,5804:246,-46,-84,0,0,0.0749988 -706,5804:245,-45,-84,0,0,0.0750273 -707,5804:144,-44,-84,0,0,0.0750201 -708,5804:143,-43,-84,0,0,0.0750201 -709,5804:142,-42,-84,0,0,0.0750131 -710,5804:141,-41,-84,0,0,0.0750201 -711,5804:140,-40,-84,0,0,0.0750345 -712,5803:249,-39,-84,0,0,0.0750345 -713,5803:248,-38,-84,0,0,0.0750345 -714,5803:247,-37,-84,0,0,0.0750345 -715,5803:246,-36,-84,0,0,0.0750345 -716,5803:245,-35,-84,0,0,0.0750416 -717,5803:144,-34,-84,0,0,0.0750345 -718,5803:143,-33,-84,0,0,0.0750345 -719,5803:142,-32,-84,0,0,0.0750416 -720,5803:141,-31,-84,0,0,0.0750488 -721,5803:140,-30,-84,0,0,0.0750488 -722,5802:249,-29,-84,0,0,0.0750488 -723,5802:248,-28,-84,0,0,0.0750345 -724,5802:247,-27,-84,0,0,0.0750201 -725,5802:246,-26,-84,0,0,0.0761183 -726,5802:245,-25,-84,0,0,0.0756715 -727,5802:144,-24,-84,0,0,0.0789397 -728,3816:246,166,-84,0,0,0.0752487 -729,3816:247,167,-84,0,0,0.075063 -730,3816:248,168,-84,0,0,0.0749846 -731,3816:249,169,-84,0,0,0.074899 -732,3817:140,170,-84,0,0,0.074892 -733,3817:141,171,-84,0,0,0.0748777 -734,3817:142,172,-84,0,0,0.0807894 -735,3817:143,173,-84,0,0,0.0878209 -736,3817:144,174,-84,0,0,0.087558 -737,3817:245,175,-84,0,0,0.0873776 -738,3817:246,176,-84,0,0,0.0863183 -739,3817:247,177,-84,0,0,0.0752844 -740,3817:248,178,-84,0,0,0.0748849 -741,3817:249,179,-84,0,0,0.074949 -742,3818:140,180,-84,0,0,0.0749916 -743,5818:130,-180,-83,0,0,0.0749916 -744,5817:239,-179,-83,0,0,0.0750201 -745,5817:238,-178,-83,0,0,0.0750201 -746,5817:237,-177,-83,0,0,0.0750416 -747,5817:236,-176,-83,0,0,0.0750488 -748,5817:235,-175,-83,0,0,0.0750558 -749,5817:134,-174,-83,0,0,0.0750702 -750,5817:133,-173,-83,0,0,0.0750773 -751,5817:132,-172,-83,0,0,0.0750843 -752,5817:131,-171,-83,0,0,0.0750843 -753,5817:130,-170,-83,0,0,0.0750915 -754,5816:239,-169,-83,0,0,0.0750987 -755,5816:238,-168,-83,0,0,0.0751059 -756,5816:237,-167,-83,0,0,0.0751128 -757,5816:236,-166,-83,0,0,0.0751059 -758,5816:235,-165,-83,0,0,0.0751059 -759,5816:134,-164,-83,0,0,0.0751059 -760,5816:133,-163,-83,0,0,0.0751128 -761,5816:132,-162,-83,0,0,0.0751128 -762,5816:131,-161,-83,0,0,0.07512 -763,5816:130,-160,-83,0,0,0.0751344 -764,5815:239,-159,-83,0,0,0.0751416 -765,5815:238,-158,-83,0,0,0.0751558 -766,5815:237,-157,-83,0,0,0.0751486 -767,5815:236,-156,-83,0,0,0.0751558 -768,5815:235,-155,-83,0,0,0.075163 -769,5815:134,-154,-83,0,0,0.0751486 -770,5815:133,-153,-83,0,0,0.075163 -771,5815:132,-152,-83,0,0,0.0751558 -772,5815:131,-151,-83,0,0,0.0751416 -773,5815:130,-150,-83,0,0,0.0751416 -774,5814:239,-149,-83,0,0,0.0751344 -775,5814:238,-148,-83,0,0,0.0751344 -776,5814:237,-147,-83,0,0,0.0751272 -777,5814:236,-146,-83,0,0,0.07512 -778,5814:235,-145,-83,0,0,0.07512 -779,5814:134,-144,-83,0,0,0.0751128 -780,5814:133,-143,-83,0,0,0.07512 -781,5814:132,-142,-83,0,0,0.0751128 -782,5814:131,-141,-83,0,0,0.0751128 -783,5814:130,-140,-83,0,0,0.07512 -784,5813:239,-139,-83,0,0,0.07512 -785,5813:238,-138,-83,0,0,0.0751272 -786,5813:237,-137,-83,0,0,0.07527 -787,5813:236,-136,-83,0,0,0.0758155 -788,5813:235,-135,-83,0,0,0.0776421 -789,5813:134,-134,-83,0,0,0.0779001 -790,5811:130,-110,-83,0,0,0.0832649 -791,5810:239,-109,-83,0,0,0.0880188 -792,5810:236,-106,-83,0,0,0.0759162 -793,5810:235,-105,-83,0,0,0.0753775 -794,5810:134,-104,-83,0,0,0.0768514 -795,5810:133,-103,-83,0,0,0.0810109 -796,5806:131,-61,-83,0,0,0.0753489 -797,5806:130,-60,-83,0,0,0.075163 -798,5805:239,-59,-83,0,0,0.0750201 -799,5805:238,-58,-83,0,0,0.074949 -800,5805:237,-57,-83,0,0,0.0749346 -801,5805:236,-56,-83,0,0,0.0749275 -802,5805:235,-55,-83,0,0,0.0749346 -803,5805:134,-54,-83,0,0,0.0749346 -804,5805:133,-53,-83,0,0,0.0749418 -805,5805:132,-52,-83,0,0,0.0749562 -806,5805:131,-51,-83,0,0,0.0749631 -807,5805:130,-50,-83,0,0,0.0749631 -808,5804:239,-49,-83,0,0,0.0749631 -809,5804:238,-48,-83,0,0,0.074949 -810,5804:237,-47,-83,0,0,0.0749703 -811,5804:236,-46,-83,0,0,0.0749988 -812,5804:235,-45,-83,0,0,0.0750273 -813,5804:134,-44,-83,0,0,0.0750201 -814,5804:133,-43,-83,0,0,0.0750201 -815,5804:132,-42,-83,0,0,0.0750131 -816,5804:131,-41,-83,0,0,0.0750201 -817,5804:130,-40,-83,0,0,0.0750345 -818,5803:239,-39,-83,0,0,0.0750345 -819,5803:238,-38,-83,0,0,0.0750345 -820,5803:237,-37,-83,0,0,0.0750345 -821,5803:236,-36,-83,0,0,0.0750345 -822,5803:235,-35,-83,0,0,0.0750416 -823,5803:134,-34,-83,0,0,0.0750345 -824,5803:133,-33,-83,0,0,0.0750345 -825,5803:132,-32,-83,0,0,0.0750416 -826,5803:131,-31,-83,0,0,0.0750488 -827,5803:130,-30,-83,0,0,0.0750488 -828,5802:239,-29,-83,0,0,0.0750488 -829,5802:238,-28,-83,0,0,0.0750345 -830,5802:237,-27,-83,0,0,0.0750201 -831,5802:236,-26,-83,0,0,0.0761183 -832,5802:235,-25,-83,0,0,0.0756715 -833,5802:134,-24,-83,0,0,0.0789397 -834,3816:236,166,-83,0,0,0.0752487 -835,3816:237,167,-83,0,0,0.075063 -836,3816:238,168,-83,0,0,0.0749846 -837,3816:239,169,-83,0,0,0.074899 -838,3817:130,170,-83,0,0,0.074892 -839,3817:131,171,-83,0,0,0.0748777 -840,3817:132,172,-83,0,0,0.0807894 -841,3817:133,173,-83,0,0,0.0878209 -842,3817:134,174,-83,0,0,0.087558 -843,3817:235,175,-83,0,0,0.0873776 -844,3817:236,176,-83,0,0,0.0863183 -845,3817:237,177,-83,0,0,0.0752844 -846,3817:238,178,-83,0,0,0.0748849 -847,3817:239,179,-83,0,0,0.074949 -848,3818:130,180,-83,0,0,0.0749916 -849,5818:120,-180,-82,0,0,0.0749916 -850,5817:229,-179,-82,0,0,0.0750201 -851,5817:228,-178,-82,0,0,0.0750201 -852,5817:227,-177,-82,0,0,0.0750416 -853,5817:226,-176,-82,0,0,0.0750488 -854,5817:225,-175,-82,0,0,0.0750558 -855,5817:124,-174,-82,0,0,0.0750702 -856,5817:123,-173,-82,0,0,0.0750773 -857,5817:122,-172,-82,0,0,0.0750843 -858,5817:121,-171,-82,0,0,0.0750843 -859,5817:120,-170,-82,0,0,0.0750915 -860,5816:229,-169,-82,0,0,0.0750987 -861,5816:228,-168,-82,0,0,0.0751059 -862,5816:227,-167,-82,0,0,0.0751128 -863,5816:226,-166,-82,0,0,0.0751059 -864,5816:225,-165,-82,0,0,0.0751059 -865,5816:124,-164,-82,0,0,0.0751059 -866,5816:123,-163,-82,0,0,0.0751128 -867,5816:122,-162,-82,0,0,0.0751128 -868,5816:121,-161,-82,0,0,0.07512 -869,5816:120,-160,-82,0,0,0.0751344 -870,5815:229,-159,-82,0,0,0.0751416 -871,5815:228,-158,-82,0,0,0.0751558 -872,5815:227,-157,-82,0,0,0.0751486 -873,5815:226,-156,-82,0,0,0.0751558 -874,5815:225,-155,-82,0,0,0.075163 -875,5815:124,-154,-82,0,0,0.0751486 -876,5815:123,-153,-82,0,0,0.075163 -877,5815:122,-152,-82,0,0,0.0751558 -878,5815:121,-151,-82,0,0,0.0751416 -879,5815:120,-150,-82,0,0,0.0751416 -880,5814:229,-149,-82,0,0,0.0751344 -881,5814:228,-148,-82,0,0,0.0751344 -882,5814:227,-147,-82,0,0,0.0751272 -883,5814:226,-146,-82,0,0,0.07512 -884,5814:225,-145,-82,0,0,0.07512 -885,5814:124,-144,-82,0,0,0.0751128 -886,5814:123,-143,-82,0,0,0.07512 -887,5814:122,-142,-82,0,0,0.0751128 -888,5814:121,-141,-82,0,0,0.0751128 -889,5814:120,-140,-82,0,0,0.07512 -890,5813:229,-139,-82,0,0,0.07512 -891,5813:228,-138,-82,0,0,0.0751272 -892,5813:227,-137,-82,0,0,0.07527 -893,5813:226,-136,-82,0,0,0.0758155 -894,5813:225,-135,-82,0,0,0.0776421 -895,5813:124,-134,-82,0,0,0.0779001 -896,5811:120,-110,-82,0,0,0.0832649 -897,5810:229,-109,-82,0,0,0.0880188 -898,5810:226,-106,-82,0,0,0.0759162 -899,5810:225,-105,-82,0,0,0.0753775 -900,5810:124,-104,-82,0,0,0.0768514 -901,5810:123,-103,-82,0,0,0.0810109 -902,5806:121,-61,-82,0,0,0.0753489 -903,5806:120,-60,-82,0,0,0.075163 -904,5805:229,-59,-82,0,0,0.0750201 -905,5805:228,-58,-82,0,0,0.074949 -906,5805:227,-57,-82,0,0,0.0749346 -907,5805:226,-56,-82,0,0,0.0749275 -908,5805:225,-55,-82,0,0,0.0749346 -909,5805:124,-54,-82,0,0,0.0749346 -910,5805:123,-53,-82,0,0,0.0749418 -911,5805:122,-52,-82,0,0,0.0749562 -912,5805:121,-51,-82,0,0,0.0749631 -913,5805:120,-50,-82,0,0,0.0749631 -914,5804:229,-49,-82,0,0,0.0749631 -915,5804:228,-48,-82,0,0,0.074949 -916,5804:227,-47,-82,0,0,0.0749703 -917,5804:226,-46,-82,0,0,0.0749988 -918,5804:225,-45,-82,0,0,0.0750273 -919,5804:124,-44,-82,0,0,0.0750201 -920,5804:123,-43,-82,0,0,0.0750201 -921,5804:122,-42,-82,0,0,0.0750131 -922,5804:121,-41,-82,0,0,0.0750201 -923,5804:120,-40,-82,0,0,0.0750345 -924,5803:229,-39,-82,0,0,0.0750345 -925,5803:228,-38,-82,0,0,0.0750345 -926,5803:227,-37,-82,0,0,0.0750345 -927,5803:226,-36,-82,0,0,0.0750345 -928,5803:225,-35,-82,0,0,0.0750416 -929,5803:124,-34,-82,0,0,0.0750345 -930,5803:123,-33,-82,0,0,0.0750345 -931,5803:122,-32,-82,0,0,0.0750416 -932,5803:121,-31,-82,0,0,0.0750488 -933,5803:120,-30,-82,0,0,0.0750488 -934,5802:229,-29,-82,0,0,0.0750488 -935,5802:228,-28,-82,0,0,0.0750345 -936,5802:227,-27,-82,0,0,0.0750201 -937,5802:226,-26,-82,0,0,0.0761183 -938,5802:225,-25,-82,0,0,0.0756715 -939,5802:124,-24,-82,0,0,0.0789397 -940,3816:226,166,-82,0,0,0.0752487 -941,3816:227,167,-82,0,0,0.075063 -942,3816:228,168,-82,0,0,0.0749846 -943,3816:229,169,-82,0,0,0.074899 -944,3817:120,170,-82,0,0,0.074892 -945,3817:121,171,-82,0,0,0.0748777 -946,3817:122,172,-82,0,0,0.0807894 -947,3817:123,173,-82,0,0,0.0878209 -948,3817:124,174,-82,0,0,0.087558 -949,3817:225,175,-82,0,0,0.0873776 -950,3817:226,176,-82,0,0,0.0863183 -951,3817:227,177,-82,0,0,0.0752844 -952,3817:228,178,-82,0,0,0.0748849 -953,3817:229,179,-82,0,0,0.074949 -954,3818:120,180,-82,0,0,0.0749916 -955,5818:110,-180,-81,0,0,0.0749916 -956,5817:219,-179,-81,0,0,0.0750201 -957,5817:218,-178,-81,0,0,0.0750201 -958,5817:217,-177,-81,0,0,0.0750416 -959,5817:216,-176,-81,0,0,0.0750488 -960,5817:215,-175,-81,0,0,0.0750558 -961,5817:114,-174,-81,0,0,0.0750702 -962,5817:113,-173,-81,0,0,0.0750773 -963,5817:112,-172,-81,0,0,0.0750843 -964,5817:111,-171,-81,0,0,0.0750843 -965,5817:110,-170,-81,0,0,0.0750915 -966,5816:219,-169,-81,0,0,0.0750987 -967,5816:218,-168,-81,0,0,0.0751059 -968,5816:217,-167,-81,0,0,0.0751128 -969,5816:216,-166,-81,0,0,0.0751059 -970,5816:215,-165,-81,0,0,0.0751059 -971,5816:114,-164,-81,0,0,0.0751059 -972,5816:113,-163,-81,0,0,0.0751128 -973,5816:112,-162,-81,0,0,0.0751128 -974,5816:111,-161,-81,0,0,0.07512 -975,5816:110,-160,-81,0,0,0.0751344 -976,5815:219,-159,-81,0,0,0.0751416 -977,5815:218,-158,-81,0,0,0.0751558 -978,5815:217,-157,-81,0,0,0.0751486 -979,5815:216,-156,-81,0,0,0.0751558 -980,5815:215,-155,-81,0,0,0.075163 -981,5815:114,-154,-81,0,0,0.0751486 -982,5815:113,-153,-81,0,0,0.075163 -983,5815:112,-152,-81,0,0,0.0751558 -984,5815:111,-151,-81,0,0,0.0751416 -985,5815:110,-150,-81,0,0,0.0751416 -986,5814:219,-149,-81,0,0,0.0751344 -987,5814:218,-148,-81,0,0,0.0751344 -988,5814:217,-147,-81,0,0,0.0751272 -989,5814:216,-146,-81,0,0,0.07512 -990,5814:215,-145,-81,0,0,0.07512 -991,5814:114,-144,-81,0,0,0.0751128 -992,5814:113,-143,-81,0,0,0.07512 -993,5814:112,-142,-81,0,0,0.0751128 -994,5814:111,-141,-81,0,0,0.0751128 -995,5814:110,-140,-81,0,0,0.07512 -996,5813:219,-139,-81,0,0,0.07512 -997,5813:218,-138,-81,0,0,0.0751272 -998,5813:217,-137,-81,0,0,0.07527 -999,5813:216,-136,-81,0,0,0.0758155 -1000,5813:215,-135,-81,0,0,0.0776421 -1001,5813:114,-134,-81,0,0,0.0779001 -1002,5811:110,-110,-81,0,0,0.0832649 -1003,5810:219,-109,-81,0,0,0.0880188 -1004,5810:216,-106,-81,0,0,0.0759162 -1005,5810:215,-105,-81,0,0,0.0753775 -1006,5810:114,-104,-81,0,0,0.0768514 -1007,5810:113,-103,-81,0,0,0.0810109 -1008,5806:111,-61,-81,0,0,0.0753489 -1009,5806:110,-60,-81,0,0,0.075163 -1010,5805:219,-59,-81,0,0,0.0750201 -1011,5805:218,-58,-81,0,0,0.074949 -1012,5805:217,-57,-81,0,0,0.0749346 -1013,5805:216,-56,-81,0,0,0.0749275 -1014,5805:215,-55,-81,0,0,0.0749346 -1015,5805:114,-54,-81,0,0,0.0749346 -1016,5805:113,-53,-81,0,0,0.0749418 -1017,5805:112,-52,-81,0,0,0.0749562 -1018,5805:111,-51,-81,0,0,0.0749631 -1019,5805:110,-50,-81,0,0,0.0749631 -1020,5804:219,-49,-81,0,0,0.0749631 -1021,5804:218,-48,-81,0,0,0.074949 -1022,5804:217,-47,-81,0,0,0.0749703 -1023,5804:216,-46,-81,0,0,0.0749988 -1024,5804:215,-45,-81,0,0,0.0750273 -1025,5804:114,-44,-81,0,0,0.0750201 -1026,5804:113,-43,-81,0,0,0.0750201 -1027,5804:112,-42,-81,0,0,0.0750131 -1028,5804:111,-41,-81,0,0,0.0750201 -1029,5804:110,-40,-81,0,0,0.0750345 -1030,5803:219,-39,-81,0,0,0.0750345 -1031,5803:218,-38,-81,0,0,0.0750345 -1032,5803:217,-37,-81,0,0,0.0750345 -1033,5803:216,-36,-81,0,0,0.0750345 -1034,5803:215,-35,-81,0,0,0.0750416 -1035,5803:114,-34,-81,0,0,0.0750345 -1036,5803:113,-33,-81,0,0,0.0750345 -1037,5803:112,-32,-81,0,0,0.0750416 -1038,5803:111,-31,-81,0,0,0.0750488 -1039,5803:110,-30,-81,0,0,0.0750488 -1040,5802:219,-29,-81,0,0,0.0750488 -1041,5802:218,-28,-81,0,0,0.0750345 -1042,5802:217,-27,-81,0,0,0.0750201 -1043,5802:216,-26,-81,0,0,0.0761183 -1044,5802:215,-25,-81,0,0,0.0756715 -1045,5802:114,-24,-81,0,0,0.0789397 -1046,3816:216,166,-81,0,0,0.0752487 -1047,3816:217,167,-81,0,0,0.075063 -1048,3816:218,168,-81,0,0,0.0749846 -1049,3816:219,169,-81,0,0,0.074899 -1050,3817:110,170,-81,0,0,0.074892 -1051,3817:111,171,-81,0,0,0.0748777 -1052,3817:112,172,-81,0,0,0.0807894 -1053,3817:113,173,-81,0,0,0.0878209 -1054,3817:114,174,-81,0,0,0.087558 -1055,3817:215,175,-81,0,0,0.0873776 -1056,3817:216,176,-81,0,0,0.0863183 -1057,3817:217,177,-81,0,0,0.0752844 -1058,3817:218,178,-81,0,0,0.0748849 -1059,3817:219,179,-81,0,0,0.074949 -1060,3818:110,180,-81,0,0,0.0749916 -1061,5818:100,-180,-80,0,0,0.0749916 -1062,5817:209,-179,-80,0,0,0.0750201 -1063,5817:208,-178,-80,0,0,0.0750201 -1064,5817:207,-177,-80,0,0,0.0750416 -1065,5817:206,-176,-80,0,0,0.0750488 -1066,5817:205,-175,-80,0,0,0.0750558 -1067,5817:104,-174,-80,0,0,0.0750702 -1068,5817:103,-173,-80,0,0,0.0750773 -1069,5817:102,-172,-80,0,0,0.0750843 -1070,5817:101,-171,-80,0,0,0.0750843 -1071,5817:100,-170,-80,0,0,0.0750915 -1072,5816:209,-169,-80,0,0,0.0750987 -1073,5816:208,-168,-80,0,0,0.0751059 -1074,5816:207,-167,-80,0,0,0.0751128 -1075,5816:206,-166,-80,0,0,0.0751059 -1076,5816:205,-165,-80,0,0,0.0751059 -1077,5816:104,-164,-80,0,0,0.0751059 -1078,5816:103,-163,-80,0,0,0.0751128 -1079,5816:102,-162,-80,0,0,0.0751128 -1080,5816:101,-161,-80,0,0,0.07512 -1081,5816:100,-160,-80,0,0,0.0751344 -1082,5815:209,-159,-80,0,0,0.0751416 -1083,5815:208,-158,-80,0,0,0.0751558 -1084,5815:207,-157,-80,0,0,0.0751486 -1085,5815:206,-156,-80,0,0,0.0751558 -1086,5815:205,-155,-80,0,0,0.075163 -1087,5815:104,-154,-80,0,0,0.0751486 -1088,5815:103,-153,-80,0,0,0.075163 -1089,5815:102,-152,-80,0,0,0.0751558 -1090,5815:101,-151,-80,0,0,0.0751416 -1091,5815:100,-150,-80,0,0,0.0751416 -1092,5814:209,-149,-80,0,0,0.0751344 -1093,5814:208,-148,-80,0,0,0.0751344 -1094,5814:207,-147,-80,0,0,0.0751272 -1095,5814:206,-146,-80,0,0,0.07512 -1096,5814:205,-145,-80,0,0,0.07512 -1097,5814:104,-144,-80,0,0,0.0751128 -1098,5814:103,-143,-80,0,0,0.07512 -1099,5814:102,-142,-80,0,0,0.0751128 -1100,5814:101,-141,-80,0,0,0.0751128 -1101,5814:100,-140,-80,0,0,0.07512 -1102,5813:209,-139,-80,0,0,0.07512 -1103,5813:208,-138,-80,0,0,0.0751272 -1104,5813:207,-137,-80,0,0,0.07527 -1105,5813:206,-136,-80,0,0,0.0758155 -1106,5813:205,-135,-80,0,0,0.0776421 -1107,5813:104,-134,-80,0,0,0.0779001 -1108,5811:100,-110,-80,0,0,0.0832649 -1109,5810:209,-109,-80,0,0,0.0880188 -1110,5810:206,-106,-80,0,0,0.0759162 -1111,5810:205,-105,-80,0,0,0.0753775 -1112,5810:104,-104,-80,0,0,0.0768514 -1113,5810:103,-103,-80,0,0,0.0810109 -1114,5806:101,-61,-80,0,0,0.0753489 -1115,5806:100,-60,-80,0,0,0.075163 -1116,5805:209,-59,-80,0,0,0.0750201 -1117,5805:208,-58,-80,0,0,0.074949 -1118,5805:207,-57,-80,0,0,0.0749346 -1119,5805:206,-56,-80,0,0,0.0749275 -1120,5805:205,-55,-80,0,0,0.0749346 -1121,5805:104,-54,-80,0,0,0.0749346 -1122,5805:103,-53,-80,0,0,0.0749418 -1123,5805:102,-52,-80,0,0,0.0749562 -1124,5805:101,-51,-80,0,0,0.0749631 -1125,5805:100,-50,-80,0,0,0.0749631 -1126,5804:209,-49,-80,0,0,0.0749631 -1127,5804:208,-48,-80,0,0,0.074949 -1128,5804:207,-47,-80,0,0,0.0749703 -1129,5804:206,-46,-80,0,0,0.0749988 -1130,5804:205,-45,-80,0,0,0.0750273 -1131,5804:104,-44,-80,0,0,0.0750201 -1132,5804:103,-43,-80,0,0,0.0750201 -1133,5804:102,-42,-80,0,0,0.0750131 -1134,5804:101,-41,-80,0,0,0.0750201 -1135,5804:100,-40,-80,0,0,0.0750345 -1136,5803:209,-39,-80,0,0,0.0750345 -1137,5803:208,-38,-80,0,0,0.0750345 -1138,5803:207,-37,-80,0,0,0.0750345 -1139,5803:206,-36,-80,0,0,0.0750345 -1140,5803:205,-35,-80,0,0,0.0750416 -1141,5803:104,-34,-80,0,0,0.0750345 -1142,5803:103,-33,-80,0,0,0.0750345 -1143,5803:102,-32,-80,0,0,0.0750416 -1144,5803:101,-31,-80,0,0,0.0750488 -1145,5803:100,-30,-80,0,0,0.0750488 -1146,5802:209,-29,-80,0,0,0.0750488 -1147,5802:208,-28,-80,0,0,0.0750345 -1148,5802:207,-27,-80,0,0,0.0750201 -1149,5802:206,-26,-80,0,0,0.0761183 -1150,5802:205,-25,-80,0,0,0.0756715 -1151,5802:104,-24,-80,0,0,0.0789397 -1152,3816:206,166,-80,0,0,0.0752487 -1153,3816:207,167,-80,0,0,0.075063 -1154,3816:208,168,-80,0,0,0.0749846 -1155,3816:209,169,-80,0,0,0.074899 -1156,3817:100,170,-80,0,0,0.074892 -1157,3817:101,171,-80,0,0,0.0748777 -1158,3817:102,172,-80,0,0,0.0807894 -1159,3817:103,173,-80,0,0,0.0878209 -1160,3817:104,174,-80,0,0,0.087558 -1161,3817:205,175,-80,0,0,0.0873776 -1162,3817:206,176,-80,0,0,0.0863183 -1163,3817:207,177,-80,0,0,0.0752844 -1164,3817:208,178,-80,0,0,0.0748849 -1165,3817:209,179,-80,0,0,0.074949 -1166,3818:100,180,-80,0,0,0.0749916 -1167,5718:390,-180,-79,0,0,0.0749916 -1168,5717:499,-179,-79,0,0,0.0750201 -1169,5717:498,-178,-79,0,0,0.0750201 -1170,5717:497,-177,-79,0,0,0.0750416 -1171,5717:496,-176,-79,0,0,0.0750488 -1172,5717:495,-175,-79,0,0,0.0750558 -1173,5717:394,-174,-79,0,0,0.0750702 -1174,5717:393,-173,-79,0,0,0.0750773 -1175,5717:392,-172,-79,0,0,0.0750843 -1176,5717:391,-171,-79,0,0,0.0750843 -1177,5717:390,-170,-79,0,0,0.0750915 -1178,5716:499,-169,-79,0,0,0.0750987 -1179,5716:498,-168,-79,0,0,0.0751059 -1180,5716:497,-167,-79,0,0,0.0751128 -1181,5716:496,-166,-79,0,0,0.0751059 -1182,5716:495,-165,-79,0,0,0.0751059 -1183,5716:394,-164,-79,0,0,0.0751059 -1184,5716:393,-163,-79,0,0,0.0751128 -1185,5716:392,-162,-79,0,0,0.0751128 -1186,5716:391,-161,-79,0,0,0.07512 -1187,5716:390,-160,-79,0,0,0.0751344 -1188,5715:499,-159,-79,0,0,0.0751416 -1189,5715:498,-158,-79,0,0,0.0751558 -1190,5715:497,-157,-79,0,0,0.0751486 -1191,5715:496,-156,-79,0,0,0.0751558 -1192,5715:495,-155,-79,0,0,0.075163 -1193,5715:394,-154,-79,0,0,0.0751486 -1194,5715:393,-153,-79,0,0,0.075163 -1195,5715:392,-152,-79,0,0,0.0751558 -1196,5715:391,-151,-79,0,0,0.0751416 -1197,5715:390,-150,-79,0,0,0.0751416 -1198,5714:499,-149,-79,0,0,0.0751344 -1199,5714:498,-148,-79,0,0,0.0751344 -1200,5714:497,-147,-79,0,0,0.0751272 -1201,5714:496,-146,-79,0,0,0.07512 -1202,5714:495,-145,-79,0,0,0.07512 -1203,5714:394,-144,-79,0,0,0.0751128 -1204,5714:393,-143,-79,0,0,0.07512 -1205,5714:392,-142,-79,0,0,0.0751128 -1206,5714:391,-141,-79,0,0,0.0751128 -1207,5714:390,-140,-79,0,0,0.07512 -1208,5713:499,-139,-79,0,0,0.07512 -1209,5713:498,-138,-79,0,0,0.0751272 -1210,5713:497,-137,-79,0,0,0.07527 -1211,5713:496,-136,-79,0,0,0.0758155 -1212,5713:495,-135,-79,0,0,0.0776421 -1213,5713:394,-134,-79,0,0,0.0779001 -1214,5711:390,-110,-79,0,0,0.0832649 -1215,5710:499,-109,-79,0,0,0.0880188 -1216,5710:496,-106,-79,0,0,0.0759162 -1217,5710:495,-105,-79,0,0,0.0753775 -1218,5710:394,-104,-79,0,0,0.0768514 -1219,5710:393,-103,-79,0,0,0.0810109 -1220,5706:391,-61,-79,0,0,0.0753489 -1221,5706:390,-60,-79,0,0,0.075163 -1222,5705:499,-59,-79,0,0,0.0750201 -1223,5705:498,-58,-79,0,0,0.074949 -1224,5705:497,-57,-79,0,0,0.0749346 -1225,5705:496,-56,-79,0,0,0.0749275 -1226,5705:495,-55,-79,0,0,0.0749346 -1227,5705:394,-54,-79,0,0,0.0749346 -1228,5705:393,-53,-79,0,0,0.0749418 -1229,5705:392,-52,-79,0,0,0.0749562 -1230,5705:391,-51,-79,0,0,0.0749631 -1231,5705:390,-50,-79,0,0,0.0749631 -1232,5704:499,-49,-79,0,0,0.0749631 -1233,5704:498,-48,-79,0,0,0.074949 -1234,5704:497,-47,-79,0,0,0.0749703 -1235,5704:496,-46,-79,0,0,0.0749988 -1236,5704:495,-45,-79,0,0,0.0750273 -1237,5704:394,-44,-79,0,0,0.0750201 -1238,5704:393,-43,-79,0,0,0.0750201 -1239,5704:392,-42,-79,0,0,0.0750131 -1240,5704:391,-41,-79,0,0,0.0750201 -1241,5704:390,-40,-79,0,0,0.0750345 -1242,5703:499,-39,-79,0,0,0.0750345 -1243,5703:498,-38,-79,0,0,0.0750345 -1244,5703:497,-37,-79,0,0,0.0750345 -1245,5703:496,-36,-79,0,0,0.0750345 -1246,5703:495,-35,-79,0,0,0.0750416 -1247,5703:394,-34,-79,0,0,0.0750345 -1248,5703:393,-33,-79,0,0,0.0750345 -1249,5703:392,-32,-79,0,0,0.0750416 -1250,5703:391,-31,-79,0,0,0.0750488 -1251,5703:390,-30,-79,0,0,0.0750488 -1252,5702:499,-29,-79,0,0,0.0750488 -1253,5702:498,-28,-79,0,0,0.0750345 -1254,5702:497,-27,-79,0,0,0.0750201 -1255,5702:496,-26,-79,0,0,0.0761183 -1256,5702:495,-25,-79,0,0,0.0756715 -1257,5702:394,-24,-79,0,0,0.0789397 -1258,3716:496,166,-79,0,0,0.0752487 -1259,3716:497,167,-79,0,0,0.075063 -1260,3716:498,168,-79,0,0,0.0749846 -1261,3716:499,169,-79,0,0,0.074899 -1262,3717:390,170,-79,0,0,0.074892 -1263,3717:391,171,-79,0,0,0.0748777 -1264,3717:392,172,-79,0,0,0.0807894 -1265,3717:393,173,-79,0,0,0.0878209 -1266,3717:394,174,-79,0,0,0.087558 -1267,3717:495,175,-79,0,0,0.0873776 -1268,3717:496,176,-79,0,0,0.0863183 -1269,3717:497,177,-79,0,0,0.0752844 -1270,3717:498,178,-79,0,0,0.0748849 -1271,3717:499,179,-79,0,0,0.074949 -1272,3718:390,180,-79,0,0,0.0749916 -1273,5718:380,-180,-78,0,0,0.0749916 -1274,5717:489,-179,-78,0,0,0.0750201 -1275,5717:488,-178,-78,0,0,0.0750201 -1276,5717:487,-177,-78,0,0,0.0750416 -1277,5717:486,-176,-78,0,0,0.0750488 -1278,5717:485,-175,-78,0,0,0.0750558 -1279,5717:384,-174,-78,0,0,0.0750702 -1280,5717:383,-173,-78,0,0,0.0750773 -1281,5717:382,-172,-78,0,0,0.0750843 -1282,5717:381,-171,-78,0,0,0.0750843 -1283,5717:380,-170,-78,0,0,0.0750915 -1284,5716:489,-169,-78,0,0,0.0750987 -1285,5716:488,-168,-78,0,0,0.0751059 -1286,5716:487,-167,-78,0,0,0.0751128 -1287,5716:486,-166,-78,0,0,0.0751059 -1288,5716:485,-165,-78,0,0,0.0751059 -1289,5716:384,-164,-78,0,0,0.0751059 -1290,5716:383,-163,-78,0,0,0.0751128 -1291,5716:382,-162,-78,0,0,0.0751128 -1292,5716:381,-161,-78,0,0,0.07512 -1293,5716:380,-160,-78,0,0,0.0751344 -1294,5715:489,-159,-78,0,0,0.0751416 -1295,5715:488,-158,-78,0,0,0.0751558 -1296,5715:487,-157,-78,0,0,0.0751486 -1297,5715:486,-156,-78,0,0,0.0751558 -1298,5715:485,-155,-78,0,0,0.075163 -1299,5715:384,-154,-78,0,0,0.0751486 -1300,5715:383,-153,-78,0,0,0.075163 -1301,5715:382,-152,-78,0,0,0.0751558 -1302,5715:381,-151,-78,0,0,0.0751416 -1303,5715:380,-150,-78,0,0,0.0751416 -1304,5714:489,-149,-78,0,0,0.0751344 -1305,5714:488,-148,-78,0,0,0.0751344 -1306,5714:487,-147,-78,0,0,0.0751272 -1307,5714:486,-146,-78,0,0,0.07512 -1308,5714:485,-145,-78,0,0,0.07512 -1309,5714:384,-144,-78,0,0,0.0751128 -1310,5714:383,-143,-78,0,0,0.07512 -1311,5714:382,-142,-78,0,0,0.0751128 -1312,5714:381,-141,-78,0,0,0.0751128 -1313,5714:380,-140,-78,0,0,0.07512 -1314,5713:489,-139,-78,0,0,0.07512 -1315,5713:488,-138,-78,0,0,0.0751272 -1316,5713:487,-137,-78,0,0,0.07527 -1317,5713:486,-136,-78,0,0,0.0758155 -1318,5713:485,-135,-78,0,0,0.0776421 -1319,5713:384,-134,-78,0,0,0.0779001 -1320,5711:380,-110,-78,0,0,0.0832649 -1321,5710:489,-109,-78,0,0,0.0880188 -1322,5710:486,-106,-78,0,0,0.0759162 -1323,5710:485,-105,-78,0,0,0.0753775 -1324,5710:384,-104,-78,0,0,0.0768514 -1325,5710:383,-103,-78,0,0,0.0810109 -1326,5706:381,-61,-78,0,0,0.0753489 -1327,5706:380,-60,-78,0,0,0.075163 -1328,5705:489,-59,-78,0,0,0.0750201 -1329,5705:488,-58,-78,0,0,0.074949 -1330,5705:487,-57,-78,0,0,0.0749346 -1331,5705:486,-56,-78,0,0,0.0749275 -1332,5705:485,-55,-78,0,0,0.0749346 -1333,5705:384,-54,-78,0,0,0.0749346 -1334,5705:383,-53,-78,0,0,0.0749418 -1335,5705:382,-52,-78,0,0,0.0749562 -1336,5705:381,-51,-78,0,0,0.0749631 -1337,5705:380,-50,-78,0,0,0.0749631 -1338,5704:489,-49,-78,0,0,0.0749631 -1339,5704:488,-48,-78,0,0,0.074949 -1340,5704:487,-47,-78,0,0,0.0749703 -1341,5704:486,-46,-78,0,0,0.0749988 -1342,5704:485,-45,-78,0,0,0.0750273 -1343,5704:384,-44,-78,0,0,0.0750201 -1344,5704:383,-43,-78,0,0,0.0750201 -1345,5704:382,-42,-78,0,0,0.0750131 -1346,5704:381,-41,-78,0,0,0.0750201 -1347,5704:380,-40,-78,0,0,0.0750345 -1348,5703:489,-39,-78,0,0,0.0750345 -1349,5703:488,-38,-78,0,0,0.0750345 -1350,5703:487,-37,-78,0,0,0.0750345 -1351,5703:486,-36,-78,0,0,0.0750345 -1352,5703:485,-35,-78,0,0,0.0750416 -1353,5703:384,-34,-78,0,0,0.0750345 -1354,5703:383,-33,-78,0,0,0.0750345 -1355,5703:382,-32,-78,0,0,0.0750416 -1356,5703:381,-31,-78,0,0,0.0750488 -1357,5703:380,-30,-78,0,0,0.0750488 -1358,5702:489,-29,-78,0,0,0.0750488 -1359,5702:488,-28,-78,0,0,0.0750345 -1360,5702:487,-27,-78,0,0,0.0750201 -1361,5702:486,-26,-78,0,0,0.0761183 -1362,5702:485,-25,-78,0,0,0.0756715 -1363,5702:384,-24,-78,0,0,0.0789397 -1364,3716:486,166,-78,0,0,0.0752487 -1365,3716:487,167,-78,0,0,0.075063 -1366,3716:488,168,-78,0,0,0.0749846 -1367,3716:489,169,-78,0,0,0.074899 -1368,3717:380,170,-78,0,0,0.074892 -1369,3717:381,171,-78,0,0,0.0748777 -1370,3717:382,172,-78,0,0,0.0807894 -1371,3717:383,173,-78,0,0,0.0878209 -1372,3717:384,174,-78,0,0,0.087558 -1373,3717:485,175,-78,0,0,0.0873776 -1374,3717:486,176,-78,0,0,0.0863183 -1375,3717:487,177,-78,0,0,0.0752844 -1376,3717:488,178,-78,0,0,0.0748849 -1377,3717:489,179,-78,0,0,0.074949 -1378,3718:380,180,-78,0,0,0.0749916 -1379,5718:370,-180,-77,0,0,0.0749916 -1380,5717:479,-179,-77,0,0,0.0750201 -1381,5717:478,-178,-77,0,0,0.0750201 -1382,5717:477,-177,-77,0,0,0.0750416 -1383,5717:476,-176,-77,0,0,0.0750488 -1384,5717:475,-175,-77,0,0,0.0750558 -1385,5717:374,-174,-77,0,0,0.0750702 -1386,5717:373,-173,-77,0,0,0.0750773 -1387,5717:372,-172,-77,0,0,0.0750843 -1388,5717:371,-171,-77,0,0,0.0750843 -1389,5717:370,-170,-77,0,0,0.0750915 -1390,5716:479,-169,-77,0,0,0.0750987 -1391,5716:478,-168,-77,0,0,0.0751059 -1392,5716:477,-167,-77,0,0,0.0751128 -1393,5716:476,-166,-77,0,0,0.0751059 -1394,5716:475,-165,-77,0,0,0.0751059 -1395,5716:374,-164,-77,0,0,0.0751059 -1396,5716:373,-163,-77,0,0,0.0751128 -1397,5716:372,-162,-77,0,0,0.0751128 -1398,5716:371,-161,-77,0,0,0.07512 -1399,5716:370,-160,-77,0,0,0.0751344 -1400,5715:479,-159,-77,0,0,0.0751416 -1401,5715:478,-158,-77,0,0,0.0751558 -1402,5715:477,-157,-77,0,0,0.0751486 -1403,5715:476,-156,-77,0,0,0.0751558 -1404,5715:475,-155,-77,0,0,0.075163 -1405,5715:374,-154,-77,0,0,0.0751486 -1406,5715:373,-153,-77,0,0,0.075163 -1407,5715:372,-152,-77,0,0,0.0751558 -1408,5715:371,-151,-77,0,0,0.0751416 -1409,5715:370,-150,-77,0,0,0.0751416 -1410,5714:479,-149,-77,0,0,0.0751344 -1411,5714:478,-148,-77,0,0,0.0751344 -1412,5714:477,-147,-77,0,0,0.0751272 -1413,5714:476,-146,-77,0,0,0.07512 -1414,5714:475,-145,-77,0,0,0.07512 -1415,5714:374,-144,-77,0,0,0.0751128 -1416,5714:373,-143,-77,0,0,0.07512 -1417,5714:372,-142,-77,0,0,0.0751128 -1418,5714:371,-141,-77,0,0,0.0751128 -1419,5714:370,-140,-77,0,0,0.07512 -1420,5713:479,-139,-77,0,0,0.07512 -1421,5713:478,-138,-77,0,0,0.0751272 -1422,5713:477,-137,-77,0,0,0.07527 -1423,5713:476,-136,-77,0,0,0.0758155 -1424,5713:475,-135,-77,0,0,0.0776421 -1425,5713:374,-134,-77,0,0,0.0779001 -1426,5711:370,-110,-77,0,0,0.0832649 -1427,5710:479,-109,-77,0,0,0.0880188 -1428,5710:476,-106,-77,0,0,0.0759162 -1429,5710:475,-105,-77,0,0,0.0753775 -1430,5710:374,-104,-77,0,0,0.0768514 -1431,5710:373,-103,-77,0,0,0.0810109 -1432,5706:371,-61,-77,0,0,0.0753489 -1433,5706:370,-60,-77,0,0,0.075163 -1434,5705:479,-59,-77,0,0,0.0750201 -1435,5705:478,-58,-77,0,0,0.074949 -1436,5705:477,-57,-77,0,0,0.0749346 -1437,5705:476,-56,-77,0,0,0.0749275 -1438,5705:475,-55,-77,0,0,0.0749346 -1439,5705:374,-54,-77,0,0,0.0749346 -1440,5705:373,-53,-77,0,0,0.0749418 -1441,5705:372,-52,-77,0,0,0.0749562 -1442,5705:371,-51,-77,0,0,0.0749631 -1443,5705:370,-50,-77,0,0,0.0749631 -1444,5704:479,-49,-77,0,0,0.0749631 -1445,5704:478,-48,-77,0,0,0.074949 -1446,5704:477,-47,-77,0,0,0.0749703 -1447,5704:476,-46,-77,0,0,0.0749988 -1448,5704:475,-45,-77,0,0,0.0750273 -1449,5704:374,-44,-77,0,0,0.0750201 -1450,5704:373,-43,-77,0,0,0.0750201 -1451,5704:372,-42,-77,0,0,0.0750131 -1452,5704:371,-41,-77,0,0,0.0750201 -1453,5704:370,-40,-77,0,0,0.0750345 -1454,5703:479,-39,-77,0,0,0.0750345 -1455,5703:478,-38,-77,0,0,0.0750345 -1456,5703:477,-37,-77,0,0,0.0750345 -1457,5703:476,-36,-77,0,0,0.0750345 -1458,5703:475,-35,-77,0,0,0.0750416 -1459,5703:374,-34,-77,0,0,0.0750345 -1460,5703:373,-33,-77,0,0,0.0750345 -1461,5703:372,-32,-77,0,0,0.0750416 -1462,5703:371,-31,-77,0,0,0.0750488 -1463,5703:370,-30,-77,0,0,0.0750488 -1464,5702:479,-29,-77,0,0,0.0750488 -1465,5702:478,-28,-77,0,0,0.0750345 -1466,5702:477,-27,-77,0,0,0.0750201 -1467,5702:476,-26,-77,0,0,0.0761183 -1468,5702:475,-25,-77,0,0,0.0756715 -1469,5702:374,-24,-77,0,0,0.0789397 -1470,3716:476,166,-77,0,0,0.0752487 -1471,3716:477,167,-77,0,0,0.075063 -1472,3716:478,168,-77,0,0,0.0749846 -1473,3716:479,169,-77,0,0,0.074899 -1474,3717:370,170,-77,0,0,0.074892 -1475,3717:371,171,-77,0,0,0.0748777 -1476,3717:372,172,-77,0,0,0.0807894 -1477,3717:373,173,-77,0,0,0.0878209 -1478,3717:374,174,-77,0,0,0.087558 -1479,3717:475,175,-77,0,0,0.0873776 -1480,3717:476,176,-77,0,0,0.0863183 -1481,3717:477,177,-77,0,0,0.0752844 -1482,3717:478,178,-77,0,0,0.0748849 -1483,3717:479,179,-77,0,0,0.074949 -1484,3718:370,180,-77,0,0,0.0749916 -1485,5718:360,-180,-76,0,0,0.0749775 -1486,5717:469,-179,-76,0,0,0.075006 -1487,5717:468,-178,-76,0,0,0.0750345 -1488,5717:467,-177,-76,0,0,0.0750345 -1489,5717:466,-176,-76,0,0,0.0750416 -1490,5717:465,-175,-76,0,0,0.0750488 -1491,5717:364,-174,-76,0,0,0.075063 -1492,5717:363,-173,-76,0,0,0.0750702 -1493,5717:362,-172,-76,0,0,0.0750702 -1494,5717:361,-171,-76,0,0,0.0750702 -1495,5717:360,-170,-76,0,0,0.0750702 -1496,5716:469,-169,-76,0,0,0.0750702 -1497,5716:468,-168,-76,0,0,0.0750702 -1498,5716:467,-167,-76,0,0,0.0750702 -1499,5716:466,-166,-76,0,0,0.0750773 -1500,5716:465,-165,-76,0,0,0.0750843 -1501,5716:364,-164,-76,0,0,0.0750915 -1502,5716:363,-163,-76,0,0,0.0750915 -1503,5716:362,-162,-76,0,0,0.0750987 -1504,5716:361,-161,-76,0,0,0.0751059 -1505,5716:360,-160,-76,0,0,0.0751128 -1506,5715:469,-159,-76,0,0,0.0751128 -1507,5715:468,-158,-76,0,0,0.0751059 -1508,5715:467,-157,-76,0,0,0.0751128 -1509,5715:466,-156,-76,0,0,0.0751272 -1510,5715:465,-155,-76,0,0,0.0751272 -1511,5715:364,-154,-76,0,0,0.0751416 -1512,5715:363,-153,-76,0,0,0.0751558 -1513,5715:362,-152,-76,0,0,0.075163 -1514,5715:361,-151,-76,0,0,0.075163 -1515,5715:360,-150,-76,0,0,0.0751558 -1516,5714:469,-149,-76,0,0,0.0751558 -1517,5714:468,-148,-76,0,0,0.075163 -1518,5714:467,-147,-76,0,0,0.0751701 -1519,5714:466,-146,-76,0,0,0.0751701 -1520,5714:465,-145,-76,0,0,0.0751558 -1521,5714:364,-144,-76,0,0,0.0751486 -1522,5714:363,-143,-76,0,0,0.0751558 -1523,5714:362,-142,-76,0,0,0.0751558 -1524,5714:361,-141,-76,0,0,0.0751416 -1525,5714:360,-140,-76,0,0,0.0751344 -1526,5713:469,-139,-76,0,0,0.07512 -1527,5713:468,-138,-76,0,0,0.0751059 -1528,5713:467,-137,-76,0,0,0.0750987 -1529,5713:466,-136,-76,0,0,0.0750915 -1530,5713:465,-135,-76,0,0,0.0750702 -1531,5713:364,-134,-76,0,0,0.0750416 -1532,5713:363,-133,-76,0,0,0.0750488 -1533,5713:362,-132,-76,0,0,0.0752844 -1534,5713:361,-131,-76,0,0,0.0790444 -1535,5713:360,-130,-76,0,0,0.0808658 -1536,5712:469,-129,-76,0,0,0.0833984 -1537,5712:468,-128,-76,0,0,0.0821503 -1538,5711:467,-117,-76,0,0,0.0752631 -1539,5711:465,-115,-76,0,0,0.0772606 -1540,5711:363,-113,-76,0,0,0.0838865 -1541,5711:362,-112,-76,0,0,0.0835949 -1542,5711:361,-111,-76,0,0,0.0856883 -1543,5711:360,-110,-76,0,0,0.0858897 -1544,5710:467,-107,-76,0,0,0.075729 -1545,5710:466,-106,-76,0,0,0.0752916 -1546,5710:465,-105,-76,0,0,0.0752844 -1547,5710:364,-104,-76,0,0,0.0764803 -1548,5710:363,-103,-76,0,0,0.0809726 -1549,5710:362,-102,-76,0,0,0.0821503 -1550,5706:361,-61,-76,0,0,0.0754061 -1551,5706:360,-60,-76,0,0,0.0752487 -1552,5705:469,-59,-76,0,0,0.0750488 -1553,5705:468,-58,-76,0,0,0.0749775 -1554,5705:467,-57,-76,0,0,0.0749418 -1555,5705:466,-56,-76,0,0,0.0749346 -1556,5705:465,-55,-76,0,0,0.0749346 -1557,5705:364,-54,-76,0,0,0.0749418 -1558,5705:363,-53,-76,0,0,0.0749562 -1559,5705:362,-52,-76,0,0,0.0749703 -1560,5705:361,-51,-76,0,0,0.0749775 -1561,5705:360,-50,-76,0,0,0.0749846 -1562,5704:469,-49,-76,0,0,0.0749846 -1563,5704:468,-48,-76,0,0,0.0749846 -1564,5704:467,-47,-76,0,0,0.0749775 -1565,5704:466,-46,-76,0,0,0.0749916 -1566,5704:465,-45,-76,0,0,0.0750131 -1567,5704:364,-44,-76,0,0,0.0750345 -1568,5704:363,-43,-76,0,0,0.0750345 -1569,5704:362,-42,-76,0,0,0.0750416 -1570,5704:361,-41,-76,0,0,0.0750416 -1571,5704:360,-40,-76,0,0,0.0750488 -1572,5703:469,-39,-76,0,0,0.0750488 -1573,5703:468,-38,-76,0,0,0.0750488 -1574,5703:467,-37,-76,0,0,0.0750488 -1575,5703:466,-36,-76,0,0,0.0750488 -1576,5703:465,-35,-76,0,0,0.0750488 -1577,5703:364,-34,-76,0,0,0.0750558 -1578,5703:363,-33,-76,0,0,0.0750558 -1579,5703:362,-32,-76,0,0,0.0750558 -1580,5703:361,-31,-76,0,0,0.0750488 -1581,5703:360,-30,-76,0,0,0.0750488 -1582,5702:469,-29,-76,0,0,0.0750488 -1583,5702:468,-28,-76,0,0,0.0750416 -1584,5702:467,-27,-76,0,0,0.0750345 -1585,5702:466,-26,-76,0,0,0.0750345 -1586,5702:465,-25,-76,0,0,0.0754348 -1587,5702:364,-24,-76,0,0,0.0767785 -1588,5702:363,-23,-76,0,0,0.0782775 -1589,5702:362,-22,-76,0,0,0.0828814 -1590,5702:361,-21,-76,0,0,0.0866349 -1591,3716:467,167,-76,0,0,0.0752273 -1592,3716:468,168,-76,0,0,0.0750416 -1593,3716:469,169,-76,0,0,0.0749916 -1594,3717:360,170,-76,0,0,0.0749988 -1595,3717:361,171,-76,0,0,0.074892 -1596,3717:362,172,-76,0,0,0.0763427 -1597,3717:363,173,-76,0,0,0.0795393 -1598,3717:364,174,-76,0,0,0.0850706 -1599,3717:465,175,-76,0,0,0.086651 -1600,3717:466,176,-76,0,0,0.0858252 -1601,3717:467,177,-76,0,0,0.0754133 -1602,3717:468,178,-76,0,0,0.0748777 -1603,3717:469,179,-76,0,0,0.0749346 -1604,3718:360,180,-76,0,0,0.0749775 -1605,5718:350,-180,-75,0,0,0.0749775 -1606,5717:459,-179,-75,0,0,0.0749988 -1607,5717:458,-178,-75,0,0,0.0750273 -1608,5717:457,-177,-75,0,0,0.0750345 -1609,5717:456,-176,-75,0,0,0.0750488 -1610,5717:455,-175,-75,0,0,0.0750488 -1611,5717:354,-174,-75,0,0,0.075063 -1612,5717:353,-173,-75,0,0,0.075063 -1613,5717:352,-172,-75,0,0,0.0750558 -1614,5717:351,-171,-75,0,0,0.0750558 -1615,5717:350,-170,-75,0,0,0.075063 -1616,5716:459,-169,-75,0,0,0.075063 -1617,5716:458,-168,-75,0,0,0.075063 -1618,5716:457,-167,-75,0,0,0.0750702 -1619,5716:456,-166,-75,0,0,0.0750702 -1620,5716:455,-165,-75,0,0,0.0750773 -1621,5716:354,-164,-75,0,0,0.0750843 -1622,5716:353,-163,-75,0,0,0.0750843 -1623,5716:352,-162,-75,0,0,0.0750843 -1624,5716:351,-161,-75,0,0,0.0750843 -1625,5716:350,-160,-75,0,0,0.0750843 -1626,5715:459,-159,-75,0,0,0.0750843 -1627,5715:458,-158,-75,0,0,0.0750915 -1628,5715:457,-157,-75,0,0,0.0751059 -1629,5715:456,-156,-75,0,0,0.0751128 -1630,5715:455,-155,-75,0,0,0.0751272 -1631,5715:354,-154,-75,0,0,0.0751272 -1632,5715:353,-153,-75,0,0,0.0751272 -1633,5715:352,-152,-75,0,0,0.0751486 -1634,5715:351,-151,-75,0,0,0.0751558 -1635,5715:350,-150,-75,0,0,0.0751486 -1636,5714:459,-149,-75,0,0,0.0751558 -1637,5714:458,-148,-75,0,0,0.075163 -1638,5714:457,-147,-75,0,0,0.0751701 -1639,5714:456,-146,-75,0,0,0.0751843 -1640,5714:455,-145,-75,0,0,0.0751843 -1641,5714:354,-144,-75,0,0,0.0751843 -1642,5714:353,-143,-75,0,0,0.0751843 -1643,5714:352,-142,-75,0,0,0.0751771 -1644,5714:351,-141,-75,0,0,0.0751771 -1645,5714:350,-140,-75,0,0,0.0751771 -1646,5713:459,-139,-75,0,0,0.0751558 -1647,5713:458,-138,-75,0,0,0.0751272 -1648,5713:457,-137,-75,0,0,0.0750987 -1649,5713:456,-136,-75,0,0,0.0750843 -1650,5713:455,-135,-75,0,0,0.0750345 -1651,5713:354,-134,-75,0,0,0.0750416 -1652,5713:353,-133,-75,0,0,0.075063 -1653,5713:352,-132,-75,0,0,0.0750915 -1654,5713:351,-131,-75,0,0,0.075163 -1655,5713:350,-130,-75,0,0,0.0754779 -1656,5712:459,-129,-75,0,0,0.0775539 -1657,5712:458,-128,-75,0,0,0.0755207 -1658,5712:354,-124,-75,0,0,0.0766328 -1659,5712:353,-123,-75,0,0,0.0758515 -1660,5712:352,-122,-75,0,0,0.0753203 -1661,5712:351,-121,-75,0,0,0.0753989 -1662,5712:350,-120,-75,0,0,0.0753203 -1663,5711:459,-119,-75,0,0,0.0753703 -1664,5711:458,-118,-75,0,0,0.0753203 -1665,5711:457,-117,-75,0,0,0.0751987 -1666,5711:456,-116,-75,0,0,0.0752559 -1667,5711:455,-115,-75,0,0,0.0763643 -1668,5711:354,-114,-75,0,0,0.077635 -1669,5711:353,-113,-75,0,0,0.0795545 -1670,5711:352,-112,-75,0,0,0.0751771 -1671,5711:351,-111,-75,0,0,0.0754061 -1672,5710:458,-108,-75,0,0,0.0756787 -1673,5710:457,-107,-75,0,0,0.0753489 -1674,5710:456,-106,-75,0,0,0.0752559 -1675,5710:455,-105,-75,0,0,0.0753703 -1676,5710:354,-104,-75,0,0,0.0787234 -1677,5710:353,-103,-75,0,0,0.0813097 -1678,5708:353,-83,-75,0,0,0.0902963 -1679,5708:352,-82,-75,0,0,0.0903556 -1680,5706:350,-60,-75,0,0,0.0752844 -1681,5705:459,-59,-75,0,0,0.0750131 -1682,5705:458,-58,-75,0,0,0.0749703 -1683,5705:457,-57,-75,0,0,0.074949 -1684,5705:456,-56,-75,0,0,0.074949 -1685,5705:455,-55,-75,0,0,0.0749346 -1686,5705:354,-54,-75,0,0,0.0749418 -1687,5705:353,-53,-75,0,0,0.0749631 -1688,5705:352,-52,-75,0,0,0.0749703 -1689,5705:351,-51,-75,0,0,0.0749916 -1690,5705:350,-50,-75,0,0,0.0749988 -1691,5704:459,-49,-75,0,0,0.0749988 -1692,5704:458,-48,-75,0,0,0.0749988 -1693,5704:457,-47,-75,0,0,0.075006 -1694,5704:456,-46,-75,0,0,0.0750131 -1695,5704:455,-45,-75,0,0,0.0750273 -1696,5704:354,-44,-75,0,0,0.0750416 -1697,5704:353,-43,-75,0,0,0.0750488 -1698,5704:352,-42,-75,0,0,0.0750558 -1699,5704:351,-41,-75,0,0,0.0750558 -1700,5704:350,-40,-75,0,0,0.0750558 -1701,5703:459,-39,-75,0,0,0.0750558 -1702,5703:458,-38,-75,0,0,0.0750488 -1703,5703:457,-37,-75,0,0,0.0750416 -1704,5703:456,-36,-75,0,0,0.0750416 -1705,5703:455,-35,-75,0,0,0.0750416 -1706,5703:354,-34,-75,0,0,0.0750416 -1707,5703:353,-33,-75,0,0,0.0750416 -1708,5703:352,-32,-75,0,0,0.0750416 -1709,5703:351,-31,-75,0,0,0.0750416 -1710,5703:350,-30,-75,0,0,0.0750345 -1711,5702:459,-29,-75,0,0,0.0750273 -1712,5702:458,-28,-75,0,0,0.0750273 -1713,5702:457,-27,-75,0,0,0.0750201 -1714,5702:456,-26,-75,0,0,0.0750131 -1715,5702:455,-25,-75,0,0,0.0749988 -1716,5702:354,-24,-75,0,0,0.0749846 -1717,5702:353,-23,-75,0,0,0.0754706 -1718,5702:352,-22,-75,0,0,0.077937 -1719,5702:351,-21,-75,0,0,0.0846637 -1720,5702:350,-20,-75,0,0,0.0867568 -1721,3716:458,168,-75,0,0,0.0754779 -1722,3716:459,169,-75,0,0,0.0753775 -1723,3717:350,170,-75,0,0,0.0751128 -1724,3717:351,171,-75,0,0,0.074949 -1725,3717:352,172,-75,0,0,0.0749133 -1726,3717:353,173,-75,0,0,0.0766839 -1727,3717:354,174,-75,0,0,0.0805836 -1728,3717:455,175,-75,0,0,0.0810721 -1729,3717:456,176,-75,0,0,0.0829675 -1730,3717:457,177,-75,0,0,0.0764223 -1731,3717:458,178,-75,0,0,0.074892 -1732,3717:459,179,-75,0,0,0.0749346 -1733,3718:350,180,-75,0,0,0.0749775 -1734,5718:140,-180,-74,0,0,0.0749703 -1735,5717:249,-179,-74,0,0,0.075006 -1736,5717:248,-178,-74,0,0,0.0750201 -1737,5717:247,-177,-74,0,0,0.0750416 -1738,5717:246,-176,-74,0,0,0.0750416 -1739,5717:245,-175,-74,0,0,0.0750416 -1740,5717:144,-174,-74,0,0,0.0750558 -1741,5717:143,-173,-74,0,0,0.0750558 -1742,5717:142,-172,-74,0,0,0.0750488 -1743,5717:141,-171,-74,0,0,0.0750488 -1744,5717:140,-170,-74,0,0,0.0750416 -1745,5716:249,-169,-74,0,0,0.0750488 -1746,5716:248,-168,-74,0,0,0.0750558 -1747,5716:247,-167,-74,0,0,0.0750558 -1748,5716:246,-166,-74,0,0,0.075063 -1749,5716:245,-165,-74,0,0,0.0750702 -1750,5716:144,-164,-74,0,0,0.0750843 -1751,5716:143,-163,-74,0,0,0.0750843 -1752,5716:142,-162,-74,0,0,0.0750987 -1753,5716:141,-161,-74,0,0,0.0750987 -1754,5716:140,-160,-74,0,0,0.0751128 -1755,5715:249,-159,-74,0,0,0.07512 -1756,5715:248,-158,-74,0,0,0.07512 -1757,5715:247,-157,-74,0,0,0.0751272 -1758,5715:246,-156,-74,0,0,0.0751344 -1759,5715:245,-155,-74,0,0,0.0751272 -1760,5715:144,-154,-74,0,0,0.07512 -1761,5715:143,-153,-74,0,0,0.07512 -1762,5715:142,-152,-74,0,0,0.0751416 -1763,5715:141,-151,-74,0,0,0.0751486 -1764,5715:140,-150,-74,0,0,0.0751558 -1765,5714:249,-149,-74,0,0,0.0751558 -1766,5714:248,-148,-74,0,0,0.075163 -1767,5714:247,-147,-74,0,0,0.075163 -1768,5714:246,-146,-74,0,0,0.0751701 -1769,5714:245,-145,-74,0,0,0.0751701 -1770,5714:144,-144,-74,0,0,0.0751701 -1771,5714:143,-143,-74,0,0,0.0751843 -1772,5714:142,-142,-74,0,0,0.0751843 -1773,5714:141,-141,-74,0,0,0.0751771 -1774,5714:140,-140,-74,0,0,0.0751987 -1775,5713:249,-139,-74,0,0,0.0752057 -1776,5713:248,-138,-74,0,0,0.0751701 -1777,5713:247,-137,-74,0,0,0.0751416 -1778,5713:246,-136,-74,0,0,0.07512 -1779,5713:245,-135,-74,0,0,0.0750987 -1780,5713:144,-134,-74,0,0,0.075063 -1781,5713:143,-133,-74,0,0,0.0750702 -1782,5713:142,-132,-74,0,0,0.0750915 -1783,5713:141,-131,-74,0,0,0.0750915 -1784,5713:140,-130,-74,0,0,0.0751128 -1785,5712:249,-129,-74,0,0,0.0751416 -1786,5712:248,-128,-74,0,0,0.0751701 -1787,5712:247,-127,-74,0,0,0.0752057 -1788,5712:246,-126,-74,0,0,0.0752772 -1789,5712:245,-125,-74,0,0,0.0753631 -1790,5712:144,-124,-74,0,0,0.0753417 -1791,5712:143,-123,-74,0,0,0.0752772 -1792,5712:142,-122,-74,0,0,0.0752559 -1793,5712:141,-121,-74,0,0,0.0751987 -1794,5712:140,-120,-74,0,0,0.075163 -1795,5711:249,-119,-74,0,0,0.0751771 -1796,5711:248,-118,-74,0,0,0.0751701 -1797,5711:247,-117,-74,0,0,0.0751272 -1798,5711:246,-116,-74,0,0,0.0751272 -1799,5711:245,-115,-74,0,0,0.0751272 -1800,5711:144,-114,-74,0,0,0.0750843 -1801,5711:143,-113,-74,0,0,0.0750488 -1802,5711:142,-112,-74,0,0,0.0750201 -1803,5711:141,-111,-74,0,0,0.075063 -1804,5711:140,-110,-74,0,0,0.0751059 -1805,5710:249,-109,-74,0,0,0.0753058 -1806,5710:248,-108,-74,0,0,0.0752273 -1807,5710:247,-107,-74,0,0,0.0752129 -1808,5710:246,-106,-74,0,0,0.0752559 -1809,5710:245,-105,-74,0,0,0.0756932 -1810,5710:144,-104,-74,0,0,0.0807207 -1811,5708:245,-85,-74,0,0,0.0878867 -1812,5708:144,-84,-74,0,0,0.0860028 -1813,5708:143,-83,-74,0,0,0.083524 -1814,5708:142,-82,-74,0,0,0.0852306 -1815,5708:141,-81,-74,0,0,0.0884319 -1816,5705:249,-59,-74,0,0,0.0751843 -1817,5705:248,-58,-74,0,0,0.0749775 -1818,5705:247,-57,-74,0,0,0.0749631 -1819,5705:246,-56,-74,0,0,0.074949 -1820,5705:245,-55,-74,0,0,0.074949 -1821,5705:144,-54,-74,0,0,0.074949 -1822,5705:143,-53,-74,0,0,0.0749631 -1823,5705:142,-52,-74,0,0,0.0749631 -1824,5705:141,-51,-74,0,0,0.0749775 -1825,5705:140,-50,-74,0,0,0.075006 -1826,5704:249,-49,-74,0,0,0.0750201 -1827,5704:248,-48,-74,0,0,0.0750131 -1828,5704:247,-47,-74,0,0,0.075006 -1829,5704:246,-46,-74,0,0,0.0750273 -1830,5704:245,-45,-74,0,0,0.0750416 -1831,5704:144,-44,-74,0,0,0.0750488 -1832,5704:143,-43,-74,0,0,0.0750558 -1833,5704:142,-42,-74,0,0,0.0750558 -1834,5704:141,-41,-74,0,0,0.0750558 -1835,5704:140,-40,-74,0,0,0.0750558 -1836,5703:249,-39,-74,0,0,0.0750488 -1837,5703:248,-38,-74,0,0,0.0750416 -1838,5703:247,-37,-74,0,0,0.0750345 -1839,5703:246,-36,-74,0,0,0.0750273 -1840,5703:245,-35,-74,0,0,0.0750273 -1841,5703:144,-34,-74,0,0,0.0750201 -1842,5703:143,-33,-74,0,0,0.0750201 -1843,5703:142,-32,-74,0,0,0.0750273 -1844,5703:141,-31,-74,0,0,0.0750273 -1845,5703:140,-30,-74,0,0,0.0750201 -1846,5702:249,-29,-74,0,0,0.0750131 -1847,5702:248,-28,-74,0,0,0.0750131 -1848,5702:247,-27,-74,0,0,0.0750131 -1849,5702:246,-26,-74,0,0,0.0750131 -1850,5702:245,-25,-74,0,0,0.0750131 -1851,5702:144,-24,-74,0,0,0.0749988 -1852,5702:143,-23,-74,0,0,0.0749775 -1853,5702:142,-22,-74,0,0,0.0749846 -1854,5702:141,-21,-74,0,0,0.0749775 -1855,5702:140,-20,-74,0,0,0.0758082 -1856,3717:140,170,-74,0,0,0.0749988 -1857,3717:141,171,-74,0,0,0.0749562 -1858,3717:142,172,-74,0,0,0.0749562 -1859,3717:143,173,-74,0,0,0.0763716 -1860,3717:144,174,-74,0,0,0.0784555 -1861,3717:245,175,-74,0,0,0.0797202 -1862,3717:246,176,-74,0,0,0.0760172 -1863,3717:247,177,-74,0,0,0.0748777 -1864,3717:248,178,-74,0,0,0.0748849 -1865,3717:249,179,-74,0,0,0.0749346 -1866,3718:140,180,-74,0,0,0.0749703 -1867,5718:130,-180,-73,0,0,0.0749703 -1868,5717:239,-179,-73,0,0,0.0749988 -1869,5717:238,-178,-73,0,0,0.0750131 -1870,5717:237,-177,-73,0,0,0.0750201 -1871,5717:236,-176,-73,0,0,0.0750345 -1872,5717:235,-175,-73,0,0,0.0750345 -1873,5717:134,-174,-73,0,0,0.0750416 -1874,5717:133,-173,-73,0,0,0.075063 -1875,5717:132,-172,-73,0,0,0.0750558 -1876,5717:131,-171,-73,0,0,0.0750416 -1877,5717:130,-170,-73,0,0,0.0750345 -1878,5716:239,-169,-73,0,0,0.0750416 -1879,5716:238,-168,-73,0,0,0.0750416 -1880,5716:237,-167,-73,0,0,0.0750416 -1881,5716:236,-166,-73,0,0,0.0750488 -1882,5716:235,-165,-73,0,0,0.075063 -1883,5716:134,-164,-73,0,0,0.0750773 -1884,5716:133,-163,-73,0,0,0.0750843 -1885,5716:132,-162,-73,0,0,0.0750915 -1886,5716:131,-161,-73,0,0,0.0750987 -1887,5716:130,-160,-73,0,0,0.0751059 -1888,5715:239,-159,-73,0,0,0.0751128 -1889,5715:238,-158,-73,0,0,0.0751272 -1890,5715:237,-157,-73,0,0,0.0751272 -1891,5715:236,-156,-73,0,0,0.0751272 -1892,5715:235,-155,-73,0,0,0.0751272 -1893,5715:134,-154,-73,0,0,0.07512 -1894,5715:133,-153,-73,0,0,0.07512 -1895,5715:132,-152,-73,0,0,0.0751272 -1896,5715:131,-151,-73,0,0,0.0751416 -1897,5715:130,-150,-73,0,0,0.075163 -1898,5714:239,-149,-73,0,0,0.0751771 -1899,5714:238,-148,-73,0,0,0.0751843 -1900,5714:237,-147,-73,0,0,0.0751915 -1901,5714:236,-146,-73,0,0,0.0752057 -1902,5714:235,-145,-73,0,0,0.0752057 -1903,5714:134,-144,-73,0,0,0.0751987 -1904,5714:133,-143,-73,0,0,0.0751915 -1905,5714:132,-142,-73,0,0,0.0751915 -1906,5714:131,-141,-73,0,0,0.0751701 -1907,5714:130,-140,-73,0,0,0.0751558 -1908,5713:239,-139,-73,0,0,0.0751987 -1909,5713:238,-138,-73,0,0,0.0752844 -1910,5713:237,-137,-73,0,0,0.07527 -1911,5713:236,-136,-73,0,0,0.0752273 -1912,5713:235,-135,-73,0,0,0.0751558 -1913,5713:134,-134,-73,0,0,0.075063 -1914,5713:133,-133,-73,0,0,0.0750416 -1915,5713:132,-132,-73,0,0,0.0750773 -1916,5713:131,-131,-73,0,0,0.07512 -1917,5713:130,-130,-73,0,0,0.0751344 -1918,5712:239,-129,-73,0,0,0.0751416 -1919,5712:238,-128,-73,0,0,0.0751486 -1920,5712:237,-127,-73,0,0,0.0751701 -1921,5712:236,-126,-73,0,0,0.0752273 -1922,5712:235,-125,-73,0,0,0.0752343 -1923,5712:134,-124,-73,0,0,0.0751771 -1924,5712:133,-123,-73,0,0,0.0751701 -1925,5712:132,-122,-73,0,0,0.0751558 -1926,5712:131,-121,-73,0,0,0.0751486 -1927,5712:130,-120,-73,0,0,0.0751416 -1928,5711:239,-119,-73,0,0,0.0751344 -1929,5711:238,-118,-73,0,0,0.0751272 -1930,5711:237,-117,-73,0,0,0.0751128 -1931,5711:236,-116,-73,0,0,0.0750987 -1932,5711:235,-115,-73,0,0,0.0750915 -1933,5711:134,-114,-73,0,0,0.0750773 -1934,5711:133,-113,-73,0,0,0.0750702 -1935,5711:132,-112,-73,0,0,0.0750558 -1936,5711:131,-111,-73,0,0,0.075063 -1937,5711:130,-110,-73,0,0,0.0751059 -1938,5710:239,-109,-73,0,0,0.0751416 -1939,5710:238,-108,-73,0,0,0.0751701 -1940,5710:237,-107,-73,0,0,0.0752201 -1941,5710:236,-106,-73,0,0,0.0755207 -4084,5615:124,-154,-62,0,0,0.07512 -1942,5710:235,-105,-73,0,0,0.0795244 -1943,5710:134,-104,-73,0,0,0.0808353 -1944,5708:238,-88,-73,0,0,0.0757435 -1945,5708:237,-87,-73,0,0,0.0761689 -1946,5708:236,-86,-73,0,0,0.0804088 -1947,5708:235,-85,-73,0,0,0.0771507 -1948,5708:134,-84,-73,0,0,0.0756645 -1949,5708:133,-83,-73,0,0,0.0751344 -1950,5708:132,-82,-73,0,0,0.077224 -1951,5708:131,-81,-73,0,0,0.0777012 -1952,5708:130,-80,-73,0,0,0.0796298 -1953,5707:239,-79,-73,0,0,0.0822742 -1954,5707:235,-75,-73,0,0,0.0795393 -1955,5707:134,-74,-73,0,0,0.0829675 -1956,5707:133,-73,-73,0,0,0.0876811 -1957,5706:130,-60,-73,0,0,0.075313 -1958,5705:239,-59,-73,0,0,0.07512 -1959,5705:238,-58,-73,0,0,0.075006 -1960,5705:237,-57,-73,0,0,0.0749703 -1961,5705:236,-56,-73,0,0,0.0749631 -1962,5705:235,-55,-73,0,0,0.0749562 -1963,5705:134,-54,-73,0,0,0.0749562 -1964,5705:133,-53,-73,0,0,0.0749916 -1965,5705:132,-52,-73,0,0,0.0749988 -1966,5705:131,-51,-73,0,0,0.075006 -1967,5705:130,-50,-73,0,0,0.0750345 -1968,5704:239,-49,-73,0,0,0.0750201 -1969,5704:238,-48,-73,0,0,0.0750131 -1970,5704:237,-47,-73,0,0,0.0750345 -1971,5704:236,-46,-73,0,0,0.0750488 -1972,5704:235,-45,-73,0,0,0.0750488 -1973,5704:134,-44,-73,0,0,0.0750558 -1974,5704:133,-43,-73,0,0,0.0750558 -1975,5704:132,-42,-73,0,0,0.0750558 -1976,5704:131,-41,-73,0,0,0.0750488 -1977,5704:130,-40,-73,0,0,0.0750416 -1978,5703:239,-39,-73,0,0,0.0750345 -1979,5703:238,-38,-73,0,0,0.0750273 -1980,5703:237,-37,-73,0,0,0.0750201 -1981,5703:236,-36,-73,0,0,0.0750131 -1982,5703:235,-35,-73,0,0,0.0750131 -1983,5703:134,-34,-73,0,0,0.0750131 -1984,5703:133,-33,-73,0,0,0.075006 -1985,5703:132,-32,-73,0,0,0.0750131 -1986,5703:131,-31,-73,0,0,0.0750131 -1987,5703:130,-30,-73,0,0,0.075006 -1988,5702:239,-29,-73,0,0,0.075006 -1989,5702:238,-28,-73,0,0,0.0749988 -1990,5702:237,-27,-73,0,0,0.0749916 -1991,5702:236,-26,-73,0,0,0.0749988 -1992,5702:235,-25,-73,0,0,0.075006 -1993,5702:134,-24,-73,0,0,0.075006 -1994,5702:133,-23,-73,0,0,0.0750131 -1995,5702:132,-22,-73,0,0,0.0750131 -1996,5702:131,-21,-73,0,0,0.0750131 -1997,5702:130,-20,-73,0,0,0.0750131 -1998,5701:239,-19,-73,0,0,0.0750843 -1999,5701:238,-18,-73,0,0,0.0751344 -2000,5701:237,-17,-73,0,0,0.0752057 -2001,3717:131,171,-73,0,0,0.0751558 -2002,3717:132,172,-73,0,0,0.0750416 -2003,3717:133,173,-73,0,0,0.0750843 -2004,3717:134,174,-73,0,0,0.0775172 -2005,3717:235,175,-73,0,0,0.0752916 -2006,3717:236,176,-73,0,0,0.0747284 -2007,3717:237,177,-73,0,0,0.0748208 -2008,3717:238,178,-73,0,0,0.0748849 -2009,3717:239,179,-73,0,0,0.0749346 -2010,3718:130,180,-73,0,0,0.0749703 -2011,5718:120,-180,-72,0,0,0.0749631 -2012,5717:229,-179,-72,0,0,0.0749916 -2013,5717:228,-178,-72,0,0,0.075006 -2014,5717:227,-177,-72,0,0,0.0750201 -2015,5717:226,-176,-72,0,0,0.0750345 -2016,5717:225,-175,-72,0,0,0.075063 -2017,5717:124,-174,-72,0,0,0.0750702 -2018,5717:123,-173,-72,0,0,0.0750773 -2019,5717:122,-172,-72,0,0,0.075063 -2020,5717:121,-171,-72,0,0,0.0750416 -2021,5717:120,-170,-72,0,0,0.0750416 -2022,5716:229,-169,-72,0,0,0.0750416 -2023,5716:228,-168,-72,0,0,0.0750345 -2024,5716:227,-167,-72,0,0,0.0750345 -2025,5716:226,-166,-72,0,0,0.0750416 -2026,5716:225,-165,-72,0,0,0.0750488 -2027,5716:124,-164,-72,0,0,0.075063 -2028,5716:123,-163,-72,0,0,0.0750702 -2029,5716:122,-162,-72,0,0,0.0750773 -2030,5716:121,-161,-72,0,0,0.0750773 -2031,5716:120,-160,-72,0,0,0.0750843 -2032,5715:229,-159,-72,0,0,0.0750915 -2033,5715:228,-158,-72,0,0,0.0750987 -2034,5715:227,-157,-72,0,0,0.0751128 -2035,5715:226,-156,-72,0,0,0.0751272 -2036,5715:225,-155,-72,0,0,0.07512 -2037,5715:124,-154,-72,0,0,0.0751272 -2038,5715:123,-153,-72,0,0,0.07512 -2039,5715:122,-152,-72,0,0,0.0751272 -2040,5715:121,-151,-72,0,0,0.0751416 -2041,5715:120,-150,-72,0,0,0.0751558 -2042,5714:229,-149,-72,0,0,0.0751701 -2043,5714:228,-148,-72,0,0,0.0751771 -2044,5714:227,-147,-72,0,0,0.0751843 -2045,5714:226,-146,-72,0,0,0.0751987 -2046,5714:225,-145,-72,0,0,0.0751987 -2047,5714:124,-144,-72,0,0,0.0752129 -2048,5714:123,-143,-72,0,0,0.0752201 -2049,5714:122,-142,-72,0,0,0.0752057 -2050,5714:121,-141,-72,0,0,0.0751771 -2051,5714:120,-140,-72,0,0,0.0751344 -2052,5713:229,-139,-72,0,0,0.07512 -2053,5713:228,-138,-72,0,0,0.0751128 -2054,5713:227,-137,-72,0,0,0.0751344 -2055,5713:226,-136,-72,0,0,0.0752772 -2056,5713:225,-135,-72,0,0,0.0755135 -2057,5713:124,-134,-72,0,0,0.0751558 -2058,5713:123,-133,-72,0,0,0.0750416 -2059,5713:122,-132,-72,0,0,0.0750702 -2060,5713:121,-131,-72,0,0,0.0751059 -2061,5713:120,-130,-72,0,0,0.0751344 -2062,5712:229,-129,-72,0,0,0.0751558 -2063,5712:228,-128,-72,0,0,0.0751558 -2064,5712:227,-127,-72,0,0,0.0751558 -2065,5712:226,-126,-72,0,0,0.0751558 -2066,5712:225,-125,-72,0,0,0.0751558 -2067,5712:124,-124,-72,0,0,0.075163 -2068,5712:123,-123,-72,0,0,0.075163 -2069,5712:122,-122,-72,0,0,0.0751558 -2070,5712:121,-121,-72,0,0,0.0751486 -2071,5712:120,-120,-72,0,0,0.0751344 -2072,5711:229,-119,-72,0,0,0.07512 -2073,5711:228,-118,-72,0,0,0.0751128 -2074,5711:227,-117,-72,0,0,0.0751059 -2075,5711:226,-116,-72,0,0,0.0750987 -2076,5711:225,-115,-72,0,0,0.0750915 -2077,5711:124,-114,-72,0,0,0.0750843 -2078,5711:123,-113,-72,0,0,0.0750773 -2079,5711:122,-112,-72,0,0,0.0750773 -2080,5711:121,-111,-72,0,0,0.0750843 -2081,5711:120,-110,-72,0,0,0.0750987 -2082,5710:229,-109,-72,0,0,0.0751128 -2083,5710:228,-108,-72,0,0,0.0751272 -2084,5710:227,-107,-72,0,0,0.0751344 -2085,5710:226,-106,-72,0,0,0.0752343 -2086,5710:225,-105,-72,0,0,0.0770849 -2087,5710:124,-104,-72,0,0,0.0783218 -2088,5710:123,-103,-72,0,0,0.0787159 -2089,5709:225,-95,-72,0,0,0.0756428 -2090,5709:124,-94,-72,0,0,0.0752487 -2091,5709:123,-93,-72,0,0,0.0752201 -2092,5709:122,-92,-72,0,0,0.0752343 -2093,5709:121,-91,-72,0,0,0.0752631 -2094,5709:120,-90,-72,0,0,0.07527 -2095,5708:229,-89,-72,0,0,0.0752559 -2096,5708:228,-88,-72,0,0,0.0752559 -2097,5708:227,-87,-72,0,0,0.0752631 -2098,5708:226,-86,-72,0,0,0.0751771 -2099,5708:225,-85,-72,0,0,0.0750345 -2100,5708:124,-84,-72,0,0,0.0760822 -2101,5708:123,-83,-72,0,0,0.0769681 -2102,5708:122,-82,-72,0,0,0.0764732 -2103,5708:121,-81,-72,0,0,0.0775613 -2104,5708:120,-80,-72,0,0,0.0770775 -2105,5707:229,-79,-72,0,0,0.0770775 -2106,5707:228,-78,-72,0,0,0.0770117 -2107,5707:227,-77,-72,0,0,0.0805912 -2108,5707:226,-76,-72,0,0,0.0820961 -2109,5707:225,-75,-72,0,0,0.0824297 -2110,5707:124,-74,-72,0,0,0.0878126 -2111,5706:120,-60,-72,0,0,0.0753489 -2112,5705:229,-59,-72,0,0,0.0751059 -2113,5705:228,-58,-72,0,0,0.0749916 -2114,5705:227,-57,-72,0,0,0.0749775 -2115,5705:226,-56,-72,0,0,0.0749703 -2116,5705:225,-55,-72,0,0,0.0749775 -2117,5705:124,-54,-72,0,0,0.075006 -2118,5705:123,-53,-72,0,0,0.0750345 -2119,5705:122,-52,-72,0,0,0.0750345 -2120,5705:121,-51,-72,0,0,0.0750345 -2121,5705:120,-50,-72,0,0,0.0750345 -2122,5704:229,-49,-72,0,0,0.0750416 -2123,5704:228,-48,-72,0,0,0.0750488 -2124,5704:227,-47,-72,0,0,0.0750488 -2125,5704:226,-46,-72,0,0,0.0750488 -2126,5704:225,-45,-72,0,0,0.0750558 -2127,5704:124,-44,-72,0,0,0.0750488 -2128,5704:123,-43,-72,0,0,0.0750488 -2129,5704:122,-42,-72,0,0,0.0750416 -2130,5704:121,-41,-72,0,0,0.0750345 -2131,5704:120,-40,-72,0,0,0.0750201 -2132,5703:229,-39,-72,0,0,0.0750131 -2133,5703:228,-38,-72,0,0,0.0750131 -2134,5703:227,-37,-72,0,0,0.0750131 -2135,5703:226,-36,-72,0,0,0.0750131 -2136,5703:225,-35,-72,0,0,0.0750131 -2137,5703:124,-34,-72,0,0,0.0750131 -2138,5703:123,-33,-72,0,0,0.075006 -2139,5703:122,-32,-72,0,0,0.075006 -2140,5703:121,-31,-72,0,0,0.075006 -2141,5703:120,-30,-72,0,0,0.0750131 -2142,5702:229,-29,-72,0,0,0.0750131 -2143,5702:228,-28,-72,0,0,0.075006 -2144,5702:227,-27,-72,0,0,0.0749988 -2145,5702:226,-26,-72,0,0,0.0749916 -2146,5702:225,-25,-72,0,0,0.0749846 -2147,5702:124,-24,-72,0,0,0.0749846 -2148,5702:123,-23,-72,0,0,0.0749916 -2149,5702:122,-22,-72,0,0,0.0749988 -2150,5702:121,-21,-72,0,0,0.075006 -2151,5702:120,-20,-72,0,0,0.075006 -2152,5701:229,-19,-72,0,0,0.075006 -2153,5701:228,-18,-72,0,0,0.075006 -2154,5701:227,-17,-72,0,0,0.0750131 -2155,5701:226,-16,-72,0,0,0.0750987 -2156,5701:225,-15,-72,0,0,0.0749133 -2157,3717:121,171,-72,0,0,0.075163 -2158,3717:122,172,-72,0,0,0.075006 -2159,3717:123,173,-72,0,0,0.0753344 -2160,3717:124,174,-72,0,0,0.0755567 -2161,3717:225,175,-72,0,0,0.0748636 -2162,3717:226,176,-72,0,0,0.0748705 -2163,3717:227,177,-72,0,0,0.0748849 -2164,3717:228,178,-72,0,0,0.0749062 -2165,3717:229,179,-72,0,0,0.0749275 -2166,3718:120,180,-72,0,0,0.0749631 -2167,5718:110,-180,-71,0,0,0.0749703 -2168,5717:219,-179,-71,0,0,0.0749916 -2169,5717:218,-178,-71,0,0,0.0750131 -2170,5717:217,-177,-71,0,0,0.0750273 -2171,5717:216,-176,-71,0,0,0.0750558 -2172,5717:215,-175,-71,0,0,0.0750843 -2173,5717:114,-174,-71,0,0,0.0750915 -2174,5717:113,-173,-71,0,0,0.0750843 -2175,5717:112,-172,-71,0,0,0.075063 -2176,5717:111,-171,-71,0,0,0.0750558 -2177,5717:110,-170,-71,0,0,0.0750345 -2178,5716:219,-169,-71,0,0,0.0750273 -2179,5716:218,-168,-71,0,0,0.0750201 -2180,5716:217,-167,-71,0,0,0.0750201 -2181,5716:216,-166,-71,0,0,0.0750201 -2182,5716:215,-165,-71,0,0,0.0750273 -2183,5716:114,-164,-71,0,0,0.0750345 -2184,5716:113,-163,-71,0,0,0.0750416 -2185,5716:112,-162,-71,0,0,0.0750488 -2186,5716:111,-161,-71,0,0,0.0750558 -2187,5716:110,-160,-71,0,0,0.075063 -2188,5715:219,-159,-71,0,0,0.075063 -2189,5715:218,-158,-71,0,0,0.075063 -2190,5715:217,-157,-71,0,0,0.0750773 -2191,5715:216,-156,-71,0,0,0.0750915 -2192,5715:215,-155,-71,0,0,0.0751128 -2193,5715:114,-154,-71,0,0,0.0751344 -2194,5715:113,-153,-71,0,0,0.0751344 -2195,5715:112,-152,-71,0,0,0.0751416 -2196,5715:111,-151,-71,0,0,0.0751558 -2197,5715:110,-150,-71,0,0,0.075163 -2198,5714:219,-149,-71,0,0,0.0751701 -2199,5714:218,-148,-71,0,0,0.0751915 -2200,5714:217,-147,-71,0,0,0.0751987 -2201,5714:216,-146,-71,0,0,0.0751843 -2202,5714:215,-145,-71,0,0,0.0751915 -2203,5714:114,-144,-71,0,0,0.0752129 -2204,5714:113,-143,-71,0,0,0.0752129 -2205,5714:112,-142,-71,0,0,0.0752129 -2206,5714:111,-141,-71,0,0,0.0751843 -2207,5714:110,-140,-71,0,0,0.0751344 -2208,5713:219,-139,-71,0,0,0.07512 -2209,5713:218,-138,-71,0,0,0.07512 -2210,5713:217,-137,-71,0,0,0.0753058 -2211,5713:216,-136,-71,0,0,0.0759379 -2212,5713:215,-135,-71,0,0,0.076234 -2213,5713:114,-134,-71,0,0,0.0762848 -2214,5713:113,-133,-71,0,0,0.0759956 -2215,5713:112,-132,-71,0,0,0.075722 -2216,5713:111,-131,-71,0,0,0.0753417 -2217,5713:110,-130,-71,0,0,0.07512 -2218,5712:219,-129,-71,0,0,0.0751486 -2219,5712:218,-128,-71,0,0,0.075163 -2220,5712:217,-127,-71,0,0,0.0751701 -2221,5712:216,-126,-71,0,0,0.0751701 -2222,5712:215,-125,-71,0,0,0.0751771 -2223,5712:114,-124,-71,0,0,0.0751701 -2224,5712:113,-123,-71,0,0,0.0751701 -2225,5712:112,-122,-71,0,0,0.0751701 -2226,5712:111,-121,-71,0,0,0.075163 -2227,5712:110,-120,-71,0,0,0.0751416 -2228,5711:219,-119,-71,0,0,0.0751272 -2229,5711:218,-118,-71,0,0,0.07512 -2230,5711:217,-117,-71,0,0,0.0751059 -2231,5711:216,-116,-71,0,0,0.0750987 -2232,5711:215,-115,-71,0,0,0.0750987 -2233,5711:114,-114,-71,0,0,0.0750987 -2234,5711:113,-113,-71,0,0,0.0750987 -2235,5711:112,-112,-71,0,0,0.0750987 -2236,5711:111,-111,-71,0,0,0.0751059 -2237,5711:110,-110,-71,0,0,0.0751059 -2238,5710:219,-109,-71,0,0,0.0751128 -2239,5710:218,-108,-71,0,0,0.0751059 -2240,5710:217,-107,-71,0,0,0.07512 -2241,5710:216,-106,-71,0,0,0.0751344 -2242,5710:215,-105,-71,0,0,0.0751771 -2243,5710:114,-104,-71,0,0,0.0751987 -2244,5710:113,-103,-71,0,0,0.0752631 -2245,5710:112,-102,-71,0,0,0.0754849 -2246,5710:111,-101,-71,0,0,0.0769462 -2247,5710:110,-100,-71,0,0,0.0763427 -2248,5709:218,-98,-71,0,0,0.0751987 -2249,5709:217,-97,-71,0,0,0.0753058 -2250,5709:216,-96,-71,0,0,0.0754634 -2251,5709:215,-95,-71,0,0,0.0752559 -2252,5709:114,-94,-71,0,0,0.0751486 -2253,5709:113,-93,-71,0,0,0.0751486 -2254,5709:112,-92,-71,0,0,0.0751701 -2255,5709:111,-91,-71,0,0,0.0751558 -2256,5709:110,-90,-71,0,0,0.0750773 -2257,5708:219,-89,-71,0,0,0.0750416 -2258,5708:218,-88,-71,0,0,0.0750345 -2259,5708:217,-87,-71,0,0,0.0749988 -2260,5708:216,-86,-71,0,0,0.074949 -2261,5708:215,-85,-71,0,0,0.0749205 -2262,5708:114,-84,-71,0,0,0.0749275 -2263,5708:113,-83,-71,0,0,0.0754133 -2264,5708:112,-82,-71,0,0,0.0771215 -2265,5708:111,-81,-71,0,0,0.0774952 -2266,5708:110,-80,-71,0,0,0.0775981 -2267,5707:219,-79,-71,0,0,0.0783886 -2268,5707:218,-78,-71,0,0,0.0788351 -2269,5707:217,-77,-71,0,0,0.079532 -2270,5707:216,-76,-71,0,0,0.0831709 -2271,5706:110,-60,-71,0,0,0.0753631 -2272,5705:219,-59,-71,0,0,0.0751059 -2273,5705:218,-58,-71,0,0,0.0750273 -2274,5705:217,-57,-71,0,0,0.0750201 -2275,5705:216,-56,-71,0,0,0.0749916 -2276,5705:215,-55,-71,0,0,0.0750131 -2277,5705:114,-54,-71,0,0,0.0750345 -2278,5705:113,-53,-71,0,0,0.0750345 -2279,5705:112,-52,-71,0,0,0.0750416 -2280,5705:111,-51,-71,0,0,0.0750416 -2281,5705:110,-50,-71,0,0,0.0750488 -2282,5704:219,-49,-71,0,0,0.0750488 -2283,5704:218,-48,-71,0,0,0.0750488 -2284,5704:217,-47,-71,0,0,0.0750558 -2285,5704:216,-46,-71,0,0,0.0750488 -2286,5704:215,-45,-71,0,0,0.0750416 -2287,5704:114,-44,-71,0,0,0.0750345 -2288,5704:113,-43,-71,0,0,0.0750273 -2289,5704:112,-42,-71,0,0,0.0750201 -2290,5704:111,-41,-71,0,0,0.0750131 -2291,5704:110,-40,-71,0,0,0.075006 -2292,5703:219,-39,-71,0,0,0.0749988 -2293,5703:218,-38,-71,0,0,0.0749916 -2294,5703:217,-37,-71,0,0,0.0749916 -2295,5703:216,-36,-71,0,0,0.0749916 -2296,5703:215,-35,-71,0,0,0.0749916 -2297,5703:114,-34,-71,0,0,0.0749916 -2298,5703:113,-33,-71,0,0,0.0749988 -2299,5703:112,-32,-71,0,0,0.0749988 -2300,5703:111,-31,-71,0,0,0.0749988 -2301,5703:110,-30,-71,0,0,0.0749988 -2302,5702:219,-29,-71,0,0,0.0750131 -2303,5702:218,-28,-71,0,0,0.0750201 -2304,5702:217,-27,-71,0,0,0.0750201 -2305,5702:216,-26,-71,0,0,0.075006 -2306,5702:215,-25,-71,0,0,0.0749846 -2307,5702:114,-24,-71,0,0,0.0749775 -2308,5702:113,-23,-71,0,0,0.0749775 -2309,5702:112,-22,-71,0,0,0.0749846 -2310,5702:111,-21,-71,0,0,0.0749916 -2311,5702:110,-20,-71,0,0,0.075006 -2312,5701:219,-19,-71,0,0,0.075006 -2313,5701:218,-18,-71,0,0,0.075006 -2314,5701:217,-17,-71,0,0,0.0750131 -2315,5701:216,-16,-71,0,0,0.0750131 -2316,5701:215,-15,-71,0,0,0.0750131 -2317,5701:114,-14,-71,0,0,0.0750558 -2318,5701:113,-13,-71,0,0,0.0786041 -2319,3717:112,172,-71,0,0,0.0750201 -2320,3717:113,173,-71,0,0,0.0750702 -2321,3717:114,174,-71,0,0,0.0749703 -2322,3717:215,175,-71,0,0,0.0749703 -2323,3717:216,176,-71,0,0,0.0749562 -2324,3717:217,177,-71,0,0,0.074949 -2325,3717:218,178,-71,0,0,0.074949 -2326,3717:219,179,-71,0,0,0.0749631 -2327,3718:110,180,-71,0,0,0.0749703 -2328,5718:100,-180,-70,0,0,0.075006 -2329,5717:209,-179,-70,0,0,0.0750273 -2330,5717:208,-178,-70,0,0,0.0750416 -2331,5717:207,-177,-70,0,0,0.075063 -2332,5717:206,-176,-70,0,0,0.0750987 -2333,5717:205,-175,-70,0,0,0.0751128 -2334,5717:104,-174,-70,0,0,0.0750915 -2335,5717:103,-173,-70,0,0,0.0750773 -2336,5717:102,-172,-70,0,0,0.0750702 -2337,5717:101,-171,-70,0,0,0.0750416 -2338,5717:100,-170,-70,0,0,0.0750273 -2339,5716:209,-169,-70,0,0,0.0750201 -2340,5716:208,-168,-70,0,0,0.0750131 -2341,5716:207,-167,-70,0,0,0.0750131 -2342,5716:206,-166,-70,0,0,0.0749988 -2343,5716:205,-165,-70,0,0,0.075006 -2344,5716:104,-164,-70,0,0,0.0750131 -2345,5716:103,-163,-70,0,0,0.0750131 -2346,5716:102,-162,-70,0,0,0.0750131 -2347,5716:101,-161,-70,0,0,0.0750201 -2348,5716:100,-160,-70,0,0,0.0750345 -2349,5715:209,-159,-70,0,0,0.0750488 -2350,5715:208,-158,-70,0,0,0.0750558 -2351,5715:207,-157,-70,0,0,0.0750702 -2352,5715:206,-156,-70,0,0,0.0750843 -2353,5715:205,-155,-70,0,0,0.0751059 -2354,5715:104,-154,-70,0,0,0.07512 -2355,5715:103,-153,-70,0,0,0.07512 -2356,5715:102,-152,-70,0,0,0.0751416 -2357,5715:101,-151,-70,0,0,0.075163 -2358,5715:100,-150,-70,0,0,0.0751701 -2359,5714:209,-149,-70,0,0,0.0751771 -2360,5714:208,-148,-70,0,0,0.0751843 -2361,5714:207,-147,-70,0,0,0.0751843 -2362,5714:206,-146,-70,0,0,0.0751843 -2363,5714:205,-145,-70,0,0,0.0751843 -2364,5714:104,-144,-70,0,0,0.0751915 -2365,5714:103,-143,-70,0,0,0.0752129 -2366,5714:102,-142,-70,0,0,0.0752057 -2367,5714:101,-141,-70,0,0,0.0751701 -2368,5714:100,-140,-70,0,0,0.0751272 -2369,5713:209,-139,-70,0,0,0.0751128 -2370,5713:208,-138,-70,0,0,0.0751128 -2371,5713:207,-137,-70,0,0,0.075163 -2372,5713:206,-136,-70,0,0,0.0754492 -2373,5713:205,-135,-70,0,0,0.0759234 -2374,5713:104,-134,-70,0,0,0.0755424 -2375,5713:103,-133,-70,0,0,0.0758443 -2376,5713:102,-132,-70,0,0,0.0760749 -2377,5713:101,-131,-70,0,0,0.0757795 -2378,5713:100,-130,-70,0,0,0.0754562 -2379,5712:209,-129,-70,0,0,0.0752916 -2380,5712:208,-128,-70,0,0,0.0751416 -2381,5712:207,-127,-70,0,0,0.0751558 -2382,5712:206,-126,-70,0,0,0.075163 -2383,5712:205,-125,-70,0,0,0.0751701 -2384,5712:104,-124,-70,0,0,0.0751701 -2385,5712:103,-123,-70,0,0,0.0751701 -2386,5712:102,-122,-70,0,0,0.0751701 -2387,5712:101,-121,-70,0,0,0.075163 -2388,5712:100,-120,-70,0,0,0.0751486 -2389,5711:209,-119,-70,0,0,0.0751344 -2390,5711:208,-118,-70,0,0,0.07512 -2391,5711:207,-117,-70,0,0,0.0751128 -2392,5711:206,-116,-70,0,0,0.0751059 -2393,5711:205,-115,-70,0,0,0.0750987 -2394,5711:104,-114,-70,0,0,0.0750987 -2395,5711:103,-113,-70,0,0,0.0750987 -2396,5711:102,-112,-70,0,0,0.0750987 -2397,5711:101,-111,-70,0,0,0.0750987 -2398,5711:100,-110,-70,0,0,0.0750987 -2399,5710:209,-109,-70,0,0,0.0751059 -2400,5710:208,-108,-70,0,0,0.0751128 -2401,5710:207,-107,-70,0,0,0.0751128 -2402,5710:206,-106,-70,0,0,0.0751128 -2403,5710:205,-105,-70,0,0,0.07512 -2404,5710:104,-104,-70,0,0,0.0751486 -2405,5710:103,-103,-70,0,0,0.0751344 -2406,5710:102,-102,-70,0,0,0.0751771 -2407,5710:101,-101,-70,0,0,0.0752415 -2408,5710:100,-100,-70,0,0,0.07527 -2409,5709:209,-99,-70,0,0,0.0752343 -2410,5709:208,-98,-70,0,0,0.0752129 -2411,5709:207,-97,-70,0,0,0.0751843 -2412,5709:206,-96,-70,0,0,0.0751771 -2413,5709:205,-95,-70,0,0,0.0751486 -2414,5709:104,-94,-70,0,0,0.0751344 -2415,5709:103,-93,-70,0,0,0.0751272 -2416,5709:102,-92,-70,0,0,0.0751128 -2417,5709:101,-91,-70,0,0,0.075063 -2418,5709:100,-90,-70,0,0,0.0750273 -2419,5708:209,-89,-70,0,0,0.0749846 -2420,5708:208,-88,-70,0,0,0.0749775 -2421,5708:207,-87,-70,0,0,0.0749703 -2422,5708:206,-86,-70,0,0,0.0749418 -2423,5708:205,-85,-70,0,0,0.0749346 -2424,5708:104,-84,-70,0,0,0.0749346 -2425,5708:103,-83,-70,0,0,0.0749418 -2426,5708:102,-82,-70,0,0,0.0749562 -2427,5708:101,-81,-70,0,0,0.0750131 -2428,5708:100,-80,-70,0,0,0.0750702 -2429,5707:209,-79,-70,0,0,0.0761907 -2430,5707:208,-78,-70,0,0,0.0779075 -2431,5707:207,-77,-70,0,0,0.0796974 -2432,5707:206,-76,-70,0,0,0.0819491 -2433,5707:205,-75,-70,0,0,0.0833749 -2434,5707:104,-74,-70,0,0,0.0866999 -2435,5706:100,-60,-70,0,0,0.0752772 -2436,5705:209,-59,-70,0,0,0.0751272 -2437,5705:208,-58,-70,0,0,0.0750345 -2438,5705:207,-57,-70,0,0,0.0750416 -2439,5705:206,-56,-70,0,0,0.0750273 -2440,5705:205,-55,-70,0,0,0.0750416 -2441,5705:104,-54,-70,0,0,0.0750416 -2442,5705:103,-53,-70,0,0,0.0750488 -2443,5705:102,-52,-70,0,0,0.0750488 -2444,5705:101,-51,-70,0,0,0.0750488 -2445,5705:100,-50,-70,0,0,0.0750416 -2446,5704:209,-49,-70,0,0,0.0750488 -2447,5704:208,-48,-70,0,0,0.0750488 -2448,5704:207,-47,-70,0,0,0.0750416 -2449,5704:206,-46,-70,0,0,0.0750345 -2450,5704:205,-45,-70,0,0,0.0750273 -2451,5704:104,-44,-70,0,0,0.0750131 -2452,5704:103,-43,-70,0,0,0.0750131 -2453,5704:102,-42,-70,0,0,0.0749988 -2454,5704:101,-41,-70,0,0,0.0749846 -2455,5704:100,-40,-70,0,0,0.0749703 -2456,5703:209,-39,-70,0,0,0.0749703 -2457,5703:208,-38,-70,0,0,0.0749703 -2458,5703:207,-37,-70,0,0,0.0749703 -2459,5703:206,-36,-70,0,0,0.0749775 -2460,5703:205,-35,-70,0,0,0.0749775 -2461,5703:104,-34,-70,0,0,0.0749846 -2462,5703:103,-33,-70,0,0,0.0749916 -2463,5703:102,-32,-70,0,0,0.0749916 -2464,5703:101,-31,-70,0,0,0.0749988 -2465,5703:100,-30,-70,0,0,0.0749988 -2466,5702:209,-29,-70,0,0,0.075006 -2467,5702:208,-28,-70,0,0,0.075006 -2468,5702:207,-27,-70,0,0,0.0750131 -2469,5702:206,-26,-70,0,0,0.0750131 -2470,5702:205,-25,-70,0,0,0.0749775 -2471,5702:104,-24,-70,0,0,0.0749775 -2472,5702:103,-23,-70,0,0,0.0749775 -2473,5702:102,-22,-70,0,0,0.0749775 -2474,5702:101,-21,-70,0,0,0.0749775 -2475,5702:100,-20,-70,0,0,0.0749846 -2476,5701:209,-19,-70,0,0,0.0749916 -2477,5701:208,-18,-70,0,0,0.0749988 -2478,5701:207,-17,-70,0,0,0.075006 -2479,5701:206,-16,-70,0,0,0.075006 -2480,5701:205,-15,-70,0,0,0.0750273 -2481,5701:104,-14,-70,0,0,0.0750843 -2482,5701:103,-13,-70,0,0,0.07512 -2483,3717:100,170,-70,0,0,0.0751416 -2484,3717:101,171,-70,0,0,0.0750131 -2485,3717:102,172,-70,0,0,0.075006 -2486,3717:103,173,-70,0,0,0.0750131 -2487,3717:104,174,-70,0,0,0.075006 -2488,3717:205,175,-70,0,0,0.0749988 -2489,3717:206,176,-70,0,0,0.0749916 -2490,3717:207,177,-70,0,0,0.0749916 -2491,3717:208,178,-70,0,0,0.0749846 -2492,3717:209,179,-70,0,0,0.0749916 -2493,3718:100,180,-70,0,0,0.075006 -2494,5618:390,-180,-69,0,0,0.0750416 -2495,5617:499,-179,-69,0,0,0.0750488 -2496,5617:498,-178,-69,0,0,0.0750702 -2497,5617:497,-177,-69,0,0,0.0750987 -2498,5617:496,-176,-69,0,0,0.0751059 -2499,5617:495,-175,-69,0,0,0.0750915 -2500,5617:394,-174,-69,0,0,0.0750843 -2501,5617:393,-173,-69,0,0,0.0750773 -2502,5617:392,-172,-69,0,0,0.0750558 -2503,5617:391,-171,-69,0,0,0.0750416 -2504,5617:390,-170,-69,0,0,0.0750273 -2505,5616:499,-169,-69,0,0,0.0750131 -2506,5616:498,-168,-69,0,0,0.075006 -2507,5616:497,-167,-69,0,0,0.075006 -2508,5616:496,-166,-69,0,0,0.0749916 -2509,5616:495,-165,-69,0,0,0.0749775 -2510,5616:394,-164,-69,0,0,0.0749775 -2511,5616:393,-163,-69,0,0,0.0749775 -2512,5616:392,-162,-69,0,0,0.0749775 -2513,5616:391,-161,-69,0,0,0.0749916 -2514,5616:390,-160,-69,0,0,0.0750131 -2515,5615:499,-159,-69,0,0,0.0750345 -2516,5615:498,-158,-69,0,0,0.0750488 -2517,5615:497,-157,-69,0,0,0.075063 -2518,5615:496,-156,-69,0,0,0.0750843 -2519,5615:495,-155,-69,0,0,0.0750987 -2520,5615:394,-154,-69,0,0,0.0751128 -2521,5615:393,-153,-69,0,0,0.0751128 -2522,5615:392,-152,-69,0,0,0.0751344 -2523,5615:391,-151,-69,0,0,0.0751558 -2524,5615:390,-150,-69,0,0,0.0751701 -2525,5614:499,-149,-69,0,0,0.0751771 -2526,5614:498,-148,-69,0,0,0.0751843 -2527,5614:497,-147,-69,0,0,0.0751771 -2528,5614:496,-146,-69,0,0,0.0751701 -2529,5614:495,-145,-69,0,0,0.0751771 -2530,5614:394,-144,-69,0,0,0.0751843 -2531,5614:393,-143,-69,0,0,0.0751915 -2532,5614:392,-142,-69,0,0,0.0751915 -2533,5614:391,-141,-69,0,0,0.0751843 -2534,5614:390,-140,-69,0,0,0.0751701 -2535,5613:499,-139,-69,0,0,0.0751344 -2536,5613:498,-138,-69,0,0,0.0751344 -2537,5613:497,-137,-69,0,0,0.0751701 -2538,5613:496,-136,-69,0,0,0.0752487 -2539,5613:495,-135,-69,0,0,0.0752916 -2540,5613:394,-134,-69,0,0,0.0753561 -2541,5613:393,-133,-69,0,0,0.0754562 -2542,5613:392,-132,-69,0,0,0.0754634 -2543,5613:391,-131,-69,0,0,0.0759379 -2544,5613:390,-130,-69,0,0,0.075758 -2545,5612:499,-129,-69,0,0,0.0754779 -2546,5612:498,-128,-69,0,0,0.0754348 -2547,5612:497,-127,-69,0,0,0.0754921 -2548,5612:496,-126,-69,0,0,0.0753561 -2549,5612:495,-125,-69,0,0,0.0751486 -2550,5612:394,-124,-69,0,0,0.0751558 -2551,5612:393,-123,-69,0,0,0.0751558 -2552,5612:392,-122,-69,0,0,0.0751558 -2553,5612:391,-121,-69,0,0,0.0751558 -2554,5612:390,-120,-69,0,0,0.0751344 -2555,5611:499,-119,-69,0,0,0.0751272 -2556,5611:498,-118,-69,0,0,0.0751272 -2557,5611:497,-117,-69,0,0,0.0751128 -2558,5611:496,-116,-69,0,0,0.0751059 -2559,5611:495,-115,-69,0,0,0.0751128 -2560,5611:394,-114,-69,0,0,0.0751059 -2561,5611:393,-113,-69,0,0,0.0751059 -2562,5611:392,-112,-69,0,0,0.0751059 -2563,5611:391,-111,-69,0,0,0.0751059 -2564,5611:390,-110,-69,0,0,0.0751059 -2565,5610:499,-109,-69,0,0,0.0751059 -2566,5610:498,-108,-69,0,0,0.0751059 -2567,5610:497,-107,-69,0,0,0.0751128 -2568,5610:496,-106,-69,0,0,0.07512 -2569,5610:495,-105,-69,0,0,0.07512 -2570,5610:394,-104,-69,0,0,0.07512 -2571,5610:393,-103,-69,0,0,0.07512 -2572,5610:392,-102,-69,0,0,0.0751128 -2573,5610:391,-101,-69,0,0,0.07512 -2574,5610:390,-100,-69,0,0,0.0751344 -2575,5609:499,-99,-69,0,0,0.0751701 -2576,5609:498,-98,-69,0,0,0.0751915 -2577,5609:497,-97,-69,0,0,0.0751843 -2578,5609:496,-96,-69,0,0,0.0751701 -2579,5609:495,-95,-69,0,0,0.075163 -2580,5609:394,-94,-69,0,0,0.0751344 -2581,5609:393,-93,-69,0,0,0.0750987 -2582,5609:392,-92,-69,0,0,0.0750558 -2583,5609:391,-91,-69,0,0,0.0750416 -2584,5609:390,-90,-69,0,0,0.0750273 -2585,5608:499,-89,-69,0,0,0.0750201 -2586,5608:498,-88,-69,0,0,0.075006 -2587,5608:497,-87,-69,0,0,0.0749988 -2588,5608:496,-86,-69,0,0,0.0749775 -2589,5608:495,-85,-69,0,0,0.0749631 -2590,5608:394,-84,-69,0,0,0.0749562 -2591,5608:393,-83,-69,0,0,0.0749631 -2592,5608:392,-82,-69,0,0,0.0749846 -2593,5608:391,-81,-69,0,0,0.0750345 -2594,5608:390,-80,-69,0,0,0.0750843 -2595,5607:499,-79,-69,0,0,0.0753203 -2596,5607:498,-78,-69,0,0,0.0772018 -2597,5607:497,-77,-69,0,0,0.0779296 -2598,5607:496,-76,-69,0,0,0.078011 -2599,5606:390,-60,-69,0,0,0.0753344 -2600,5605:499,-59,-69,0,0,0.0750558 -2601,5605:498,-58,-69,0,0,0.0750345 -2602,5605:497,-57,-69,0,0,0.0750488 -2603,5605:496,-56,-69,0,0,0.0750416 -2604,5605:495,-55,-69,0,0,0.0750488 -2605,5605:394,-54,-69,0,0,0.0750488 -2606,5605:393,-53,-69,0,0,0.0750488 -2607,5605:392,-52,-69,0,0,0.0750416 -2608,5605:391,-51,-69,0,0,0.0750416 -2609,5605:390,-50,-69,0,0,0.0750416 -2610,5604:499,-49,-69,0,0,0.0750345 -2611,5604:498,-48,-69,0,0,0.0750345 -2612,5604:497,-47,-69,0,0,0.0750273 -2613,5604:496,-46,-69,0,0,0.0750201 -2614,5604:495,-45,-69,0,0,0.075006 -2615,5604:394,-44,-69,0,0,0.0749916 -2616,5604:393,-43,-69,0,0,0.0749775 -2617,5604:392,-42,-69,0,0,0.0749703 -2618,5604:391,-41,-69,0,0,0.0749703 -2619,5604:390,-40,-69,0,0,0.0749631 -2620,5603:499,-39,-69,0,0,0.0749631 -2621,5603:498,-38,-69,0,0,0.0749631 -2622,5603:497,-37,-69,0,0,0.0749703 -2623,5603:496,-36,-69,0,0,0.0749775 -2624,5603:495,-35,-69,0,0,0.0749775 -2625,5603:394,-34,-69,0,0,0.0749846 -2626,5603:393,-33,-69,0,0,0.0749846 -2627,5603:392,-32,-69,0,0,0.0749988 -2628,5603:391,-31,-69,0,0,0.0749846 -2629,5603:390,-30,-69,0,0,0.0749916 -2630,5602:499,-29,-69,0,0,0.0749846 -2631,5602:498,-28,-69,0,0,0.0749846 -2632,5602:497,-27,-69,0,0,0.0749846 -2633,5602:496,-26,-69,0,0,0.0749846 -2634,5602:495,-25,-69,0,0,0.0749775 -2635,5602:394,-24,-69,0,0,0.0749703 -2636,5602:393,-23,-69,0,0,0.0749703 -2637,5602:392,-22,-69,0,0,0.0749631 -2638,5602:391,-21,-69,0,0,0.0749562 -2639,5602:390,-20,-69,0,0,0.0749703 -2640,5601:499,-19,-69,0,0,0.0749775 -2641,5601:498,-18,-69,0,0,0.0749846 -2642,5601:497,-17,-69,0,0,0.0749916 -2643,5601:496,-16,-69,0,0,0.0749988 -2644,5601:495,-15,-69,0,0,0.075006 -2645,5601:394,-14,-69,0,0,0.0750201 -2646,5601:393,-13,-69,0,0,0.0750345 -2647,5601:392,-12,-69,0,0,0.0751486 -2648,5601:391,-11,-69,0,0,0.075528 -2649,5601:390,-10,-69,0,0,0.0758515 -2650,3616:499,169,-69,0,0,0.0752487 -2651,3617:390,170,-69,0,0,0.075006 -2652,3617:391,171,-69,0,0,0.075006 -2653,3617:392,172,-69,0,0,0.0750131 -2654,3617:393,173,-69,0,0,0.0750131 -2655,3617:394,174,-69,0,0,0.075006 -2656,3617:495,175,-69,0,0,0.0749916 -2657,3617:496,176,-69,0,0,0.0749846 -2658,3617:497,177,-69,0,0,0.0749846 -2659,3617:498,178,-69,0,0,0.0749916 -2660,3617:499,179,-69,0,0,0.0750273 -2661,3618:390,180,-69,0,0,0.0750416 -2662,5618:380,-180,-68,0,0,0.0750915 -2663,5617:489,-179,-68,0,0,0.0751059 -2664,5617:488,-178,-68,0,0,0.0751059 -2665,5617:487,-177,-68,0,0,0.0751059 -2666,5617:486,-176,-68,0,0,0.0751059 -2667,5617:485,-175,-68,0,0,0.0750915 -2668,5617:384,-174,-68,0,0,0.0750773 -2669,5617:383,-173,-68,0,0,0.0750558 -2670,5617:382,-172,-68,0,0,0.0750345 -2671,5617:381,-171,-68,0,0,0.0750273 -2672,5617:380,-170,-68,0,0,0.0750131 -2673,5616:489,-169,-68,0,0,0.075006 -2674,5616:488,-168,-68,0,0,0.0749916 -2675,5616:487,-167,-68,0,0,0.0749916 -2676,5616:486,-166,-68,0,0,0.0749631 -2677,5616:485,-165,-68,0,0,0.074949 -2678,5616:384,-164,-68,0,0,0.0749562 -2679,5616:383,-163,-68,0,0,0.0749562 -2680,5616:382,-162,-68,0,0,0.0749562 -2681,5616:381,-161,-68,0,0,0.0749631 -2682,5616:380,-160,-68,0,0,0.0749916 -2683,5615:489,-159,-68,0,0,0.0750273 -2684,5615:488,-158,-68,0,0,0.0750488 -2685,5615:487,-157,-68,0,0,0.0750702 -2686,5615:486,-156,-68,0,0,0.0750987 -2687,5615:485,-155,-68,0,0,0.0751128 -2688,5615:384,-154,-68,0,0,0.07512 -2689,5615:383,-153,-68,0,0,0.0751272 -2690,5615:382,-152,-68,0,0,0.0751344 -2691,5615:381,-151,-68,0,0,0.0751486 -2692,5615:380,-150,-68,0,0,0.0751558 -2693,5614:489,-149,-68,0,0,0.075163 -2694,5614:488,-148,-68,0,0,0.0751701 -2695,5614:487,-147,-68,0,0,0.0751771 -2696,5614:486,-146,-68,0,0,0.0751771 -2697,5614:485,-145,-68,0,0,0.0751771 -2698,5614:384,-144,-68,0,0,0.0751771 -2699,5614:383,-143,-68,0,0,0.0751915 -2700,5614:382,-142,-68,0,0,0.0751843 -2701,5614:381,-141,-68,0,0,0.0751771 -2702,5614:380,-140,-68,0,0,0.0751771 -2703,5613:489,-139,-68,0,0,0.075163 -2704,5613:488,-138,-68,0,0,0.0751486 -2705,5613:487,-137,-68,0,0,0.0751344 -2706,5613:486,-136,-68,0,0,0.07512 -2707,5613:485,-135,-68,0,0,0.0751416 -2708,5613:384,-134,-68,0,0,0.0752559 -2709,5613:383,-133,-68,0,0,0.0753917 -2710,5613:382,-132,-68,0,0,0.0755424 -2711,5613:381,-131,-68,0,0,0.0761978 -2712,5613:380,-130,-68,0,0,0.0759162 -2713,5612:489,-129,-68,0,0,0.0757937 -2714,5612:488,-128,-68,0,0,0.0758586 -2715,5612:487,-127,-68,0,0,0.0759091 -2716,5612:486,-126,-68,0,0,0.0756932 -2717,5612:485,-125,-68,0,0,0.0754562 -2718,5612:384,-124,-68,0,0,0.075313 -2719,5612:383,-123,-68,0,0,0.0751344 -2720,5612:382,-122,-68,0,0,0.0751416 -2721,5612:381,-121,-68,0,0,0.0751272 -2722,5612:380,-120,-68,0,0,0.07512 -2723,5611:489,-119,-68,0,0,0.0751128 -2724,5611:488,-118,-68,0,0,0.0751059 -2725,5611:487,-117,-68,0,0,0.0750987 -2726,5611:486,-116,-68,0,0,0.0751272 -2727,5611:485,-115,-68,0,0,0.0750915 -2728,5611:384,-114,-68,0,0,0.0750915 -2729,5611:383,-113,-68,0,0,0.0751059 -2730,5611:382,-112,-68,0,0,0.0751059 -2731,5611:381,-111,-68,0,0,0.0751059 -2732,5611:380,-110,-68,0,0,0.0751059 -2733,5610:489,-109,-68,0,0,0.0751059 -2734,5610:488,-108,-68,0,0,0.0751059 -2735,5610:487,-107,-68,0,0,0.0750987 -2736,5610:486,-106,-68,0,0,0.0750987 -2737,5610:485,-105,-68,0,0,0.0750987 -2738,5610:384,-104,-68,0,0,0.0751128 -2739,5610:383,-103,-68,0,0,0.0751128 -2740,5610:382,-102,-68,0,0,0.0751128 -2741,5610:381,-101,-68,0,0,0.0751059 -2742,5610:380,-100,-68,0,0,0.0751059 -2743,5609:489,-99,-68,0,0,0.07512 -2744,5609:488,-98,-68,0,0,0.0751272 -2745,5609:487,-97,-68,0,0,0.0751272 -2746,5609:486,-96,-68,0,0,0.0751128 -2747,5609:485,-95,-68,0,0,0.0750987 -2748,5609:384,-94,-68,0,0,0.0750558 -2749,5609:383,-93,-68,0,0,0.0750201 -2750,5609:382,-92,-68,0,0,0.075006 -2751,5609:381,-91,-68,0,0,0.075006 -2752,5609:380,-90,-68,0,0,0.0750201 -2753,5608:489,-89,-68,0,0,0.0750273 -2754,5608:488,-88,-68,0,0,0.0750273 -2755,5608:487,-87,-68,0,0,0.0750201 -2756,5608:486,-86,-68,0,0,0.0750131 -2757,5608:485,-85,-68,0,0,0.0750131 -2758,5608:384,-84,-68,0,0,0.0749988 -2759,5608:383,-83,-68,0,0,0.0749916 -2760,5608:382,-82,-68,0,0,0.075006 -2761,5608:381,-81,-68,0,0,0.0750201 -2762,5608:380,-80,-68,0,0,0.0750702 -2763,5607:489,-79,-68,0,0,0.0755781 -2764,5607:488,-78,-68,0,0,0.0769681 -2765,5607:487,-77,-68,0,0,0.0794115 -2766,5607:486,-76,-68,0,0,0.0806751 -2767,5607:485,-75,-68,0,0,0.0805304 -2768,5606:380,-60,-68,0,0,0.0752201 -2769,5605:489,-59,-68,0,0,0.0750345 -2770,5605:488,-58,-68,0,0,0.0750345 -2771,5605:487,-57,-68,0,0,0.0750488 -2772,5605:486,-56,-68,0,0,0.0750416 -2773,5605:485,-55,-68,0,0,0.0750488 -2774,5605:384,-54,-68,0,0,0.0750488 -2775,5605:383,-53,-68,0,0,0.0750416 -2776,5605:382,-52,-68,0,0,0.0750345 -2777,5605:381,-51,-68,0,0,0.0750273 -2778,5605:380,-50,-68,0,0,0.0750273 -2779,5604:489,-49,-68,0,0,0.0750201 -2780,5604:488,-48,-68,0,0,0.075006 -2781,5604:487,-47,-68,0,0,0.0749916 -2782,5604:486,-46,-68,0,0,0.0749846 -2783,5604:485,-45,-68,0,0,0.0749775 -2784,5604:384,-44,-68,0,0,0.0749703 -2785,5604:383,-43,-68,0,0,0.0749631 -2786,5604:382,-42,-68,0,0,0.0749703 -2787,5604:381,-41,-68,0,0,0.0749631 -2788,5604:380,-40,-68,0,0,0.0749631 -2789,5603:489,-39,-68,0,0,0.0749631 -2790,5603:488,-38,-68,0,0,0.0749631 -2791,5603:487,-37,-68,0,0,0.0749703 -2792,5603:486,-36,-68,0,0,0.0749703 -2793,5603:485,-35,-68,0,0,0.0749775 -2794,5603:384,-34,-68,0,0,0.0749775 -2795,5603:383,-33,-68,0,0,0.0749775 -2796,5603:382,-32,-68,0,0,0.0749775 -2797,5603:381,-31,-68,0,0,0.0749775 -2798,5603:380,-30,-68,0,0,0.0749703 -2799,5602:489,-29,-68,0,0,0.0749775 -2800,5602:488,-28,-68,0,0,0.0749775 -2801,5602:487,-27,-68,0,0,0.0749703 -2802,5602:486,-26,-68,0,0,0.0749703 -2803,5602:485,-25,-68,0,0,0.0749631 -2804,5602:384,-24,-68,0,0,0.0749562 -2805,5602:383,-23,-68,0,0,0.0749562 -2806,5602:382,-22,-68,0,0,0.0749562 -2807,5602:381,-21,-68,0,0,0.0749562 -2808,5602:380,-20,-68,0,0,0.0749562 -2809,5601:489,-19,-68,0,0,0.0749562 -2810,5601:488,-18,-68,0,0,0.0749631 -2811,5601:487,-17,-68,0,0,0.0749631 -2812,5601:486,-16,-68,0,0,0.0749631 -2813,5601:485,-15,-68,0,0,0.0749846 -2814,5601:384,-14,-68,0,0,0.0749916 -2815,5601:383,-13,-68,0,0,0.0749988 -2816,5601:382,-12,-68,0,0,0.0750201 -2817,5601:381,-11,-68,0,0,0.0750702 -2818,5601:380,-10,-68,0,0,0.0756285 -2819,5600:489,-9,-68,0,0,0.0785446 -2820,5600:488,-8,-68,0,0,0.0793891 -2821,5600:487,-7,-68,0,0,0.0797351 -2822,5600:486,-6,-68,0,0,0.082034 -2823,3616:384,164,-68,0,0,0.0772166 -2824,3616:485,165,-68,0,0,0.0765747 -2825,3616:486,166,-68,0,0,0.0751771 -2826,3616:487,167,-68,0,0,0.0750488 -2827,3616:488,168,-68,0,0,0.0750416 -2828,3616:489,169,-68,0,0,0.0750131 -2829,3617:380,170,-68,0,0,0.0750201 -2830,3617:381,171,-68,0,0,0.0750131 -2831,3617:382,172,-68,0,0,0.0750131 -2832,3617:383,173,-68,0,0,0.075006 -2833,3617:384,174,-68,0,0,0.0749988 -2834,3617:485,175,-68,0,0,0.0749703 -2835,3617:486,176,-68,0,0,0.0749631 -2836,3617:487,177,-68,0,0,0.0749846 -2837,3617:488,178,-68,0,0,0.0750131 -2838,3617:489,179,-68,0,0,0.075063 -2839,3618:380,180,-68,0,0,0.0750915 -2840,5618:370,-180,-67,0,0,0.0750773 -2841,5617:479,-179,-67,0,0,0.0750915 -2842,5617:478,-178,-67,0,0,0.0750987 -2843,5617:477,-177,-67,0,0,0.0750987 -2844,5617:476,-176,-67,0,0,0.0750843 -2845,5617:475,-175,-67,0,0,0.0750702 -2846,5617:374,-174,-67,0,0,0.075063 -2847,5617:373,-173,-67,0,0,0.0750558 -2848,5617:372,-172,-67,0,0,0.0750416 -2849,5617:371,-171,-67,0,0,0.0750201 -2850,5617:370,-170,-67,0,0,0.075006 -2851,5616:479,-169,-67,0,0,0.0749916 -2852,5616:478,-168,-67,0,0,0.0749846 -2853,5616:477,-167,-67,0,0,0.0749631 -2854,5616:476,-166,-67,0,0,0.074949 -2855,5616:475,-165,-67,0,0,0.0749418 -2856,5616:374,-164,-67,0,0,0.0749346 -2857,5616:373,-163,-67,0,0,0.074949 -2858,5616:372,-162,-67,0,0,0.074949 -2859,5616:371,-161,-67,0,0,0.0749562 -2860,5616:370,-160,-67,0,0,0.0749846 -2861,5615:479,-159,-67,0,0,0.0750131 -2862,5615:478,-158,-67,0,0,0.0750558 -2863,5615:477,-157,-67,0,0,0.0750843 -2864,5615:476,-156,-67,0,0,0.0751059 -2865,5615:475,-155,-67,0,0,0.0751128 -2866,5615:374,-154,-67,0,0,0.07512 -2867,5615:373,-153,-67,0,0,0.0751272 -2868,5615:372,-152,-67,0,0,0.0751416 -2869,5615:371,-151,-67,0,0,0.0751486 -2870,5615:370,-150,-67,0,0,0.0751486 -2871,5614:479,-149,-67,0,0,0.0751558 -2872,5614:478,-148,-67,0,0,0.0751701 -2873,5614:477,-147,-67,0,0,0.0751843 -2874,5614:476,-146,-67,0,0,0.0751701 -2875,5614:475,-145,-67,0,0,0.0751771 -2876,5614:374,-144,-67,0,0,0.0751915 -2877,5614:373,-143,-67,0,0,0.0751701 -2878,5614:372,-142,-67,0,0,0.0751486 -2879,5614:371,-141,-67,0,0,0.0751344 -2880,5614:370,-140,-67,0,0,0.0751344 -2881,5613:479,-139,-67,0,0,0.0751486 -2882,5613:478,-138,-67,0,0,0.0751987 -2883,5613:477,-137,-67,0,0,0.0753703 -2884,5613:476,-136,-67,0,0,0.075163 -2885,5613:475,-135,-67,0,0,0.0751771 -2886,5613:374,-134,-67,0,0,0.0752057 -2887,5613:373,-133,-67,0,0,0.0754779 -2888,5613:372,-132,-67,0,0,0.0753489 -2889,5613:371,-131,-67,0,0,0.0761183 -2890,5613:370,-130,-67,0,0,0.076415 -2891,5612:479,-129,-67,0,0,0.0764296 -2892,5612:478,-128,-67,0,0,0.07635 -2893,5612:477,-127,-67,0,0,0.0760967 -2894,5612:476,-126,-67,0,0,0.0759091 -2895,5612:475,-125,-67,0,0,0.0757362 -2896,5612:374,-124,-67,0,0,0.0755207 -2897,5612:373,-123,-67,0,0,0.0754203 -2898,5612:372,-122,-67,0,0,0.0753561 -2899,5612:371,-121,-67,0,0,0.0752916 -2900,5612:370,-120,-67,0,0,0.0752273 -2901,5611:479,-119,-67,0,0,0.0751701 -2902,5611:478,-118,-67,0,0,0.0752273 -2903,5611:477,-117,-67,0,0,0.076046 -2904,5611:476,-116,-67,0,0,0.0760749 -2905,5611:475,-115,-67,0,0,0.0757867 -2906,5611:374,-114,-67,0,0,0.0755494 -2907,5611:373,-113,-67,0,0,0.0754275 -2908,5611:372,-112,-67,0,0,0.07527 -2909,5611:371,-111,-67,0,0,0.0750915 -2910,5611:370,-110,-67,0,0,0.0751059 -2911,5610:479,-109,-67,0,0,0.0751059 -2912,5610:478,-108,-67,0,0,0.0750987 -2913,5610:477,-107,-67,0,0,0.0750915 -2914,5610:476,-106,-67,0,0,0.0750987 -2915,5610:475,-105,-67,0,0,0.0750915 -2916,5610:374,-104,-67,0,0,0.0750915 -2917,5610:373,-103,-67,0,0,0.0751059 -2918,5610:372,-102,-67,0,0,0.0751059 -2919,5610:371,-101,-67,0,0,0.0750987 -2920,5610:370,-100,-67,0,0,0.0750987 -2921,5609:479,-99,-67,0,0,0.0750843 -2922,5609:478,-98,-67,0,0,0.0750488 -2923,5609:477,-97,-67,0,0,0.0750201 -2924,5609:476,-96,-67,0,0,0.0750131 -2925,5609:475,-95,-67,0,0,0.0749988 -2926,5609:374,-94,-67,0,0,0.075006 -2927,5609:373,-93,-67,0,0,0.075006 -2928,5609:372,-92,-67,0,0,0.0749988 -2929,5609:371,-91,-67,0,0,0.0749988 -2930,5609:370,-90,-67,0,0,0.0749988 -2931,5608:479,-89,-67,0,0,0.0750131 -2932,5608:478,-88,-67,0,0,0.0750201 -2933,5608:477,-87,-67,0,0,0.0750273 -2934,5608:476,-86,-67,0,0,0.0750345 -2935,5608:475,-85,-67,0,0,0.0750345 -2936,5608:374,-84,-67,0,0,0.0750416 -2937,5608:373,-83,-67,0,0,0.0750488 -2938,5608:372,-82,-67,0,0,0.0750488 -2939,5608:371,-81,-67,0,0,0.0750558 -2940,5608:370,-80,-67,0,0,0.075063 -2941,5607:479,-79,-67,0,0,0.0750987 -2942,5607:478,-78,-67,0,0,0.0751701 -2943,5607:477,-77,-67,0,0,0.0752415 -2944,5607:476,-76,-67,0,0,0.0753272 -2945,5607:475,-75,-67,0,0,0.0753703 -2946,5607:374,-74,-67,0,0,0.0763354 -2947,5607:373,-73,-67,0,0,0.0768221 -2948,5606:479,-69,-67,0,0,0.0761978 -2949,5606:371,-61,-67,0,0,0.0753917 -2950,5606:370,-60,-67,0,0,0.0752273 -2951,5605:479,-59,-67,0,0,0.0750345 -2952,5605:478,-58,-67,0,0,0.0750345 -2953,5605:477,-57,-67,0,0,0.0750345 -2954,5605:476,-56,-67,0,0,0.0750416 -2955,5605:475,-55,-67,0,0,0.0750488 -2956,5605:374,-54,-67,0,0,0.0750416 -2957,5605:373,-53,-67,0,0,0.0750345 -2958,5605:372,-52,-67,0,0,0.0750201 -2959,5605:371,-51,-67,0,0,0.0749988 -2960,5605:370,-50,-67,0,0,0.0749988 -2961,5604:479,-49,-67,0,0,0.0749916 -2962,5604:478,-48,-67,0,0,0.0749775 -2963,5604:477,-47,-67,0,0,0.0749703 -2964,5604:476,-46,-67,0,0,0.0749703 -2965,5604:475,-45,-67,0,0,0.0749703 -2966,5604:374,-44,-67,0,0,0.0749703 -2967,5604:373,-43,-67,0,0,0.0749631 -2968,5604:372,-42,-67,0,0,0.0749631 -2969,5604:371,-41,-67,0,0,0.0749631 -2970,5604:370,-40,-67,0,0,0.0749631 -2971,5603:479,-39,-67,0,0,0.0749631 -2972,5603:478,-38,-67,0,0,0.0749631 -2973,5603:477,-37,-67,0,0,0.0749631 -2974,5603:476,-36,-67,0,0,0.0749631 -2975,5603:475,-35,-67,0,0,0.0749631 -2976,5603:374,-34,-67,0,0,0.0749631 -2977,5603:373,-33,-67,0,0,0.0749562 -2978,5603:372,-32,-67,0,0,0.074949 -2979,5603:371,-31,-67,0,0,0.074949 -2980,5603:370,-30,-67,0,0,0.0749418 -2981,5602:479,-29,-67,0,0,0.0749418 -2982,5602:478,-28,-67,0,0,0.074949 -2983,5602:477,-27,-67,0,0,0.074949 -2984,5602:476,-26,-67,0,0,0.0749418 -2985,5602:475,-25,-67,0,0,0.0749418 -2986,5602:374,-24,-67,0,0,0.0749346 -2987,5602:373,-23,-67,0,0,0.0749346 -2988,5602:372,-22,-67,0,0,0.0749418 -2989,5602:371,-21,-67,0,0,0.0749562 -2990,5602:370,-20,-67,0,0,0.0749562 -2991,5601:479,-19,-67,0,0,0.0749562 -2992,5601:478,-18,-67,0,0,0.0749631 -2993,5601:477,-17,-67,0,0,0.074949 -2994,5601:476,-16,-67,0,0,0.0749631 -2995,5601:475,-15,-67,0,0,0.0749631 -2996,5601:374,-14,-67,0,0,0.0749562 -2997,5601:373,-13,-67,0,0,0.0749631 -2998,5601:372,-12,-67,0,0,0.0749775 -2999,5601:371,-11,-67,0,0,0.0749703 -3000,5601:370,-10,-67,0,0,0.0749703 -3001,5600:479,-9,-67,0,0,0.0749631 -3002,5600:478,-8,-67,0,0,0.0749703 -3003,5600:477,-7,-67,0,0,0.0749775 -3004,5600:476,-6,-67,0,0,0.0750345 -3005,5600:475,-5,-67,0,0,0.0755781 -3006,5600:374,-4,-67,0,0,0.0753058 -3007,5600:373,-3,-67,0,0,0.0751128 -3008,5600:372,-2,-67,0,0,0.0754275 -3009,5600:371,-1,-67,0,0,0.0761689 -3010,3600:371,0,-67,0,0,0.0774365 -3011,3600:371,1,-67,0,0,0.0756355 -3012,3600:372,2,-67,0,0,0.0752129 -3013,3600:373,3,-67,0,0,0.075163 -3014,3600:374,4,-67,0,0,0.0766184 -3015,3600:475,5,-67,0,0,0.0768659 -3016,3600:476,6,-67,0,0,0.0768367 -3017,3600:477,7,-67,0,0,0.0773852 -3018,3600:478,8,-67,0,0,0.0782329 -3019,3600:479,9,-67,0,0,0.0786564 -3020,3601:370,10,-67,0,0,0.0775172 -3021,3601:371,11,-67,0,0,0.0789023 -3022,3601:372,12,-67,0,0,0.0800296 -3023,3601:373,13,-67,0,0,0.0814942 -3024,3601:478,18,-67,0,0,0.0759523 -3025,3601:479,19,-67,0,0,0.0750702 -3026,3602:370,20,-67,0,0,0.07512 -3027,3602:371,21,-67,0,0,0.0751344 -3028,3602:372,22,-67,0,0,0.0751059 -3029,3602:373,23,-67,0,0,0.0750558 -3030,3602:374,24,-67,0,0,0.0749846 -3031,3602:475,25,-67,0,0,0.0749275 -3032,3602:476,26,-67,0,0,0.0750201 -3033,3602:477,27,-67,0,0,0.0749346 -3034,3602:478,28,-67,0,0,0.0761761 -3035,3616:371,161,-67,0,0,0.07565 -3036,3616:372,162,-67,0,0,0.075006 -3037,3616:373,163,-67,0,0,0.0750131 -3038,3616:374,164,-67,0,0,0.0750273 -3039,3616:475,165,-67,0,0,0.0750273 -3040,3616:476,166,-67,0,0,0.0750273 -3041,3616:477,167,-67,0,0,0.0750273 -3042,3616:478,168,-67,0,0,0.0750345 -3043,3616:479,169,-67,0,0,0.0750273 -3044,3617:370,170,-67,0,0,0.0750273 -3045,3617:371,171,-67,0,0,0.0750345 -3046,3617:372,172,-67,0,0,0.0750201 -3047,3617:373,173,-67,0,0,0.0750201 -3048,3617:374,174,-67,0,0,0.0749916 -3049,3617:475,175,-67,0,0,0.0749775 -3050,3617:476,176,-67,0,0,0.0749775 -3051,3617:477,177,-67,0,0,0.075006 -3052,3617:478,178,-67,0,0,0.0750345 -3053,3617:479,179,-67,0,0,0.0750558 -3054,3618:370,180,-67,0,0,0.0750773 -3055,5618:360,-180,-66,0,0,0.0750558 -3056,5617:469,-179,-66,0,0,0.0750702 -3057,5617:468,-178,-66,0,0,0.0750915 -3058,5617:467,-177,-66,0,0,0.0750915 -3059,5617:466,-176,-66,0,0,0.0750773 -3060,5617:465,-175,-66,0,0,0.075063 -3061,5617:364,-174,-66,0,0,0.0750558 -3062,5617:363,-173,-66,0,0,0.0750488 -3063,5617:362,-172,-66,0,0,0.0750416 -3064,5617:361,-171,-66,0,0,0.0750273 -3065,5617:360,-170,-66,0,0,0.0750131 -3066,5616:469,-169,-66,0,0,0.0749988 -3067,5616:468,-168,-66,0,0,0.0749916 -3068,5616:467,-167,-66,0,0,0.0749846 -3069,5616:466,-166,-66,0,0,0.0749562 -3070,5616:465,-165,-66,0,0,0.074949 -3071,5616:364,-164,-66,0,0,0.074949 -3072,5616:363,-163,-66,0,0,0.0749562 -3073,5616:362,-162,-66,0,0,0.0749703 -3074,5616:361,-161,-66,0,0,0.0749775 -3075,5616:360,-160,-66,0,0,0.075006 -3076,5615:469,-159,-66,0,0,0.0750345 -3077,5615:468,-158,-66,0,0,0.0750558 -3078,5615:467,-157,-66,0,0,0.0750843 -3079,5615:466,-156,-66,0,0,0.0750987 -3080,5615:465,-155,-66,0,0,0.0751059 -3081,5615:364,-154,-66,0,0,0.0751128 -3082,5615:363,-153,-66,0,0,0.0751272 -3083,5615:362,-152,-66,0,0,0.0751486 -3084,5615:361,-151,-66,0,0,0.0751486 -3085,5615:360,-150,-66,0,0,0.0751486 -3086,5614:469,-149,-66,0,0,0.0751558 -3087,5614:468,-148,-66,0,0,0.0751558 -3088,5614:467,-147,-66,0,0,0.0751771 -3089,5614:466,-146,-66,0,0,0.0751701 -3090,5614:465,-145,-66,0,0,0.075163 -3091,5614:364,-144,-66,0,0,0.0751701 -3092,5614:363,-143,-66,0,0,0.075163 -3093,5614:362,-142,-66,0,0,0.0751701 -3094,5614:361,-141,-66,0,0,0.0752844 -3095,5614:360,-140,-66,0,0,0.0752844 -3096,5613:469,-139,-66,0,0,0.0753058 -3097,5613:468,-138,-66,0,0,0.0752057 -3098,5613:467,-137,-66,0,0,0.0751272 -3099,5613:466,-136,-66,0,0,0.0751915 -3100,5613:465,-135,-66,0,0,0.07527 -3101,5613:364,-134,-66,0,0,0.075686 -3102,5613:363,-133,-66,0,0,0.0760172 -3103,5613:362,-132,-66,0,0,0.0759019 -3104,5613:361,-131,-66,0,0,0.0763281 -3105,5613:360,-130,-66,0,0,0.0764369 -3106,5612:469,-129,-66,0,0,0.0763716 -3107,5612:468,-128,-66,0,0,0.076386 -3108,5612:467,-127,-66,0,0,0.0763064 -3109,5612:466,-126,-66,0,0,0.0760245 -3110,5612:465,-125,-66,0,0,0.0758803 -3111,5612:364,-124,-66,0,0,0.0757722 -3112,5612:363,-123,-66,0,0,0.075686 -3113,5612:362,-122,-66,0,0,0.0755424 -3114,5612:361,-121,-66,0,0,0.0754348 -3115,5612:360,-120,-66,0,0,0.0753989 -3116,5611:469,-119,-66,0,0,0.075442 -3117,5611:468,-118,-66,0,0,0.0756355 -3118,5611:467,-117,-66,0,0,0.0761038 -3119,5611:466,-116,-66,0,0,0.0772606 -3120,5611:465,-115,-66,0,0,0.0782997 -3121,5611:364,-114,-66,0,0,0.0782108 -3122,5611:363,-113,-66,0,0,0.0782476 -3123,5611:362,-112,-66,0,0,0.0763571 -3124,5611:361,-111,-66,0,0,0.0753272 -3125,5611:360,-110,-66,0,0,0.0750915 -3126,5610:469,-109,-66,0,0,0.0752772 -3127,5610:468,-108,-66,0,0,0.0762413 -3128,5610:467,-107,-66,0,0,0.0750915 -3129,5610:466,-106,-66,0,0,0.0750773 -3130,5610:465,-105,-66,0,0,0.075063 -3131,5610:364,-104,-66,0,0,0.0750702 -3132,5610:363,-103,-66,0,0,0.0750702 -3133,5610:362,-102,-66,0,0,0.0750558 -3134,5610:361,-101,-66,0,0,0.0750273 -3135,5610:360,-100,-66,0,0,0.0750416 -3136,5609:469,-99,-66,0,0,0.0750201 -3137,5609:468,-98,-66,0,0,0.075006 -3138,5609:467,-97,-66,0,0,0.0749988 -3139,5609:466,-96,-66,0,0,0.0749988 -3140,5609:465,-95,-66,0,0,0.0749846 -3141,5609:364,-94,-66,0,0,0.075006 -3142,5609:363,-93,-66,0,0,0.0750273 -3143,5609:362,-92,-66,0,0,0.0750131 -3144,5609:361,-91,-66,0,0,0.0749916 -3145,5609:360,-90,-66,0,0,0.0749988 -3146,5608:469,-89,-66,0,0,0.0750131 -3147,5608:468,-88,-66,0,0,0.0750273 -3148,5608:467,-87,-66,0,0,0.0750273 -3149,5608:466,-86,-66,0,0,0.0750345 -3150,5608:465,-85,-66,0,0,0.075063 -3151,5608:364,-84,-66,0,0,0.0750773 -3152,5608:363,-83,-66,0,0,0.0750773 -3153,5608:362,-82,-66,0,0,0.0750773 -3154,5608:361,-81,-66,0,0,0.0750843 -3155,5608:360,-80,-66,0,0,0.0750843 -3156,5607:469,-79,-66,0,0,0.0750773 -3157,5607:468,-78,-66,0,0,0.07512 -3158,5607:467,-77,-66,0,0,0.0752201 -3159,5607:466,-76,-66,0,0,0.0753203 -3160,5607:465,-75,-66,0,0,0.0753775 -3161,5607:364,-74,-66,0,0,0.076234 -3162,5607:363,-73,-66,0,0,0.076713 -3163,5607:360,-70,-66,0,0,0.0757867 -3164,5606:469,-69,-66,0,0,0.0759307 -3165,5606:361,-61,-66,0,0,0.0754348 -3166,5606:360,-60,-66,0,0,0.0751059 -3167,5605:469,-59,-66,0,0,0.0750345 -3168,5605:468,-58,-66,0,0,0.0750273 -3169,5605:467,-57,-66,0,0,0.0750273 -3170,5605:466,-56,-66,0,0,0.0750416 -3171,5605:465,-55,-66,0,0,0.0750488 -3172,5605:364,-54,-66,0,0,0.0750416 -3173,5605:363,-53,-66,0,0,0.0750273 -3174,5605:362,-52,-66,0,0,0.0750131 -3175,5605:361,-51,-66,0,0,0.075006 -3176,5605:360,-50,-66,0,0,0.0749916 -3177,5604:469,-49,-66,0,0,0.0749846 -3178,5604:468,-48,-66,0,0,0.0749846 -3179,5604:467,-47,-66,0,0,0.0749775 -3180,5604:466,-46,-66,0,0,0.0749775 -3181,5604:465,-45,-66,0,0,0.0749775 -3182,5604:364,-44,-66,0,0,0.0749703 -3183,5604:363,-43,-66,0,0,0.0749703 -3184,5604:362,-42,-66,0,0,0.0749703 -3185,5604:361,-41,-66,0,0,0.0749631 -3186,5604:360,-40,-66,0,0,0.0749562 -3187,5603:469,-39,-66,0,0,0.074949 -3188,5603:468,-38,-66,0,0,0.0749562 -3189,5603:467,-37,-66,0,0,0.0749631 -3190,5603:466,-36,-66,0,0,0.0749562 -3191,5603:465,-35,-66,0,0,0.0749562 -3192,5603:364,-34,-66,0,0,0.0749562 -3193,5603:363,-33,-66,0,0,0.0749562 -3194,5603:362,-32,-66,0,0,0.0749562 -3195,5603:361,-31,-66,0,0,0.074949 -3196,5603:360,-30,-66,0,0,0.0749418 -3197,5602:469,-29,-66,0,0,0.0749346 -3198,5602:468,-28,-66,0,0,0.0749418 -3199,5602:467,-27,-66,0,0,0.0749418 -3200,5602:466,-26,-66,0,0,0.0749346 -3201,5602:465,-25,-66,0,0,0.0749346 -3202,5602:364,-24,-66,0,0,0.0749275 -3203,5602:363,-23,-66,0,0,0.0749205 -3204,5602:362,-22,-66,0,0,0.0749205 -3205,5602:361,-21,-66,0,0,0.0749275 -3206,5602:360,-20,-66,0,0,0.0749346 -3207,5601:469,-19,-66,0,0,0.0749346 -3208,5601:468,-18,-66,0,0,0.0749418 -3209,5601:467,-17,-66,0,0,0.0749418 -3210,5601:466,-16,-66,0,0,0.074949 -3211,5601:465,-15,-66,0,0,0.074949 -3212,5601:364,-14,-66,0,0,0.074949 -3213,5601:363,-13,-66,0,0,0.0749418 -3214,5601:362,-12,-66,0,0,0.0749275 -3215,5601:361,-11,-66,0,0,0.0749418 -3216,5601:360,-10,-66,0,0,0.0749418 -3217,5600:469,-9,-66,0,0,0.0749205 -3218,5600:468,-8,-66,0,0,0.0749133 -3219,5600:467,-7,-66,0,0,0.0749275 -3220,5600:466,-6,-66,0,0,0.0749562 -3221,5600:465,-5,-66,0,0,0.0749703 -3222,5600:364,-4,-66,0,0,0.074949 -3223,5600:363,-3,-66,0,0,0.074899 -3224,5600:362,-2,-66,0,0,0.0748636 -3225,5600:361,-1,-66,0,0,0.0748636 -3226,3600:361,0,-66,0,0,0.0748636 -3227,3600:361,1,-66,0,0,0.0748777 -3228,3600:362,2,-66,0,0,0.074892 -3229,3600:363,3,-66,0,0,0.074892 -3230,3600:364,4,-66,0,0,0.074892 -3231,3600:465,5,-66,0,0,0.0748849 -3232,3600:466,6,-66,0,0,0.0748636 -3233,3600:467,7,-66,0,0,0.0748849 -3234,3600:468,8,-66,0,0,0.0749062 -3235,3600:469,9,-66,0,0,0.0749133 -3236,3601:360,10,-66,0,0,0.0749346 -3237,3601:361,11,-66,0,0,0.0750558 -3238,3601:362,12,-66,0,0,0.0753631 -3239,3601:363,13,-66,0,0,0.075063 -3240,3601:364,14,-66,0,0,0.0753203 -3241,3601:465,15,-66,0,0,0.075442 -3242,3601:466,16,-66,0,0,0.0750773 -3243,3601:467,17,-66,0,0,0.0751128 -3244,3601:468,18,-66,0,0,0.075006 -3245,3601:469,19,-66,0,0,0.0749775 -3246,3602:360,20,-66,0,0,0.0749775 -3247,3602:361,21,-66,0,0,0.0749775 -3248,3602:362,22,-66,0,0,0.0749846 -3249,3602:363,23,-66,0,0,0.0749846 -3250,3602:364,24,-66,0,0,0.0749703 -3251,3602:465,25,-66,0,0,0.074949 -3252,3602:466,26,-66,0,0,0.074949 -3253,3602:467,27,-66,0,0,0.0749418 -3254,3602:468,28,-66,0,0,0.0749988 -3255,3602:469,29,-66,0,0,0.0749846 -3256,3603:466,36,-66,0,0,0.0755352 -3257,3603:467,37,-66,0,0,0.0754348 -3258,3603:468,38,-66,0,0,0.0753058 -3259,3603:469,39,-66,0,0,0.0750915 -3260,3607:364,74,-66,0,0,0.0888968 -3261,3607:465,75,-66,0,0,0.0871401 -3262,3607:466,76,-66,0,0,0.0890969 -3263,3607:467,77,-66,0,0,0.0890717 -3264,3615:468,158,-66,0,0,0.0754492 -3265,3615:469,159,-66,0,0,0.0751771 -3266,3616:360,160,-66,0,0,0.0750488 -3267,3616:361,161,-66,0,0,0.0750416 -3268,3616:362,162,-66,0,0,0.0750345 -3269,3616:363,163,-66,0,0,0.0750488 -3270,3616:364,164,-66,0,0,0.075063 -3271,3616:465,165,-66,0,0,0.0750558 -3272,3616:466,166,-66,0,0,0.0750558 -3273,3616:467,167,-66,0,0,0.0750488 -3274,3616:468,168,-66,0,0,0.0750416 -3275,3616:469,169,-66,0,0,0.0750488 -3276,3617:360,170,-66,0,0,0.0750488 -3277,3617:361,171,-66,0,0,0.0750201 -3278,3617:362,172,-66,0,0,0.0750131 -3279,3617:363,173,-66,0,0,0.075006 -3280,3617:364,174,-66,0,0,0.0749846 -3281,3617:465,175,-66,0,0,0.0749846 -3282,3617:466,176,-66,0,0,0.0749916 -3283,3617:467,177,-66,0,0,0.075006 -3284,3617:468,178,-66,0,0,0.0750345 -3285,3617:469,179,-66,0,0,0.0750488 -3286,3618:360,180,-66,0,0,0.0750558 -3287,5618:350,-180,-65,0,0,0.0750488 -3288,5617:459,-179,-65,0,0,0.0750558 -3289,5617:458,-178,-65,0,0,0.0750702 -3290,5617:457,-177,-65,0,0,0.0750773 -3291,5617:456,-176,-65,0,0,0.0750702 -3292,5617:455,-175,-65,0,0,0.075063 -3293,5617:354,-174,-65,0,0,0.0750702 -3294,5617:353,-173,-65,0,0,0.0750558 -3295,5617:352,-172,-65,0,0,0.0750488 -3296,5617:351,-171,-65,0,0,0.0750345 -3297,5617:350,-170,-65,0,0,0.0750273 -3298,5616:459,-169,-65,0,0,0.0750131 -3299,5616:458,-168,-65,0,0,0.0749988 -3300,5616:457,-167,-65,0,0,0.0749916 -3301,5616:456,-166,-65,0,0,0.0749775 -3302,5616:455,-165,-65,0,0,0.0749703 -3303,5616:354,-164,-65,0,0,0.0749703 -3304,5616:353,-163,-65,0,0,0.0749775 -3305,5616:352,-162,-65,0,0,0.0749846 -3306,5616:351,-161,-65,0,0,0.0749988 -3307,5616:350,-160,-65,0,0,0.0750201 -3308,5615:459,-159,-65,0,0,0.0750488 -3309,5615:458,-158,-65,0,0,0.0750702 -3310,5615:457,-157,-65,0,0,0.0750773 -3311,5615:456,-156,-65,0,0,0.0750915 -3312,5615:455,-155,-65,0,0,0.0750987 -3313,5615:354,-154,-65,0,0,0.0751128 -3314,5615:353,-153,-65,0,0,0.0751344 -3315,5615:352,-152,-65,0,0,0.0751486 -3316,5615:351,-151,-65,0,0,0.0751558 -3317,5615:350,-150,-65,0,0,0.0751344 -3318,5614:459,-149,-65,0,0,0.0751701 -3319,5614:458,-148,-65,0,0,0.075163 -3320,5614:457,-147,-65,0,0,0.0751771 -3321,5614:456,-146,-65,0,0,0.0751558 -3322,5614:455,-145,-65,0,0,0.0751416 -3323,5614:354,-144,-65,0,0,0.075163 -3324,5614:353,-143,-65,0,0,0.0751486 -3325,5614:352,-142,-65,0,0,0.0751558 -3326,5614:351,-141,-65,0,0,0.075163 -3327,5614:350,-140,-65,0,0,0.0752631 -3328,5613:459,-139,-65,0,0,0.075313 -3329,5613:458,-138,-65,0,0,0.0752343 -3330,5613:457,-137,-65,0,0,0.0752057 -3331,5613:456,-136,-65,0,0,0.0751701 -3332,5613:455,-135,-65,0,0,0.0751843 -3333,5613:354,-134,-65,0,0,0.0759162 -3334,5613:353,-133,-65,0,0,0.0763789 -3335,5613:352,-132,-65,0,0,0.0763933 -3336,5613:351,-131,-65,0,0,0.0764006 -3337,5613:350,-130,-65,0,0,0.0764296 -3338,5612:459,-129,-65,0,0,0.0765967 -3339,5612:458,-128,-65,0,0,0.076553 -3340,5612:457,-127,-65,0,0,0.0764369 -3341,5612:456,-126,-65,0,0,0.0763643 -3342,5612:455,-125,-65,0,0,0.0763789 -3343,5612:354,-124,-65,0,0,0.0762775 -3344,5612:353,-123,-65,0,0,0.0762413 -3345,5612:352,-122,-65,0,0,0.0764586 -3346,5612:351,-121,-65,0,0,0.0766111 -3347,5612:350,-120,-65,0,0,0.075722 -3348,5611:459,-119,-65,0,0,0.0755711 -3349,5611:458,-118,-65,0,0,0.0756932 -3350,5611:457,-117,-65,0,0,0.0760606 -3351,5611:456,-116,-65,0,0,0.0784927 -3352,5611:455,-115,-65,0,0,0.0785002 -3353,5611:354,-114,-65,0,0,0.079254 -3354,5611:353,-113,-65,0,0,0.079404 -3355,5611:352,-112,-65,0,0,0.078011 -3356,5611:351,-111,-65,0,0,0.0764876 -3357,5611:350,-110,-65,0,0,0.0782255 -3358,5610:459,-109,-65,0,0,0.0797579 -3359,5610:458,-108,-65,0,0,0.0805076 -3360,5610:457,-107,-65,0,0,0.0769534 -3361,5610:456,-106,-65,0,0,0.075063 -3362,5610:455,-105,-65,0,0,0.075006 -3363,5610:354,-104,-65,0,0,0.0751059 -3364,5610:353,-103,-65,0,0,0.0750488 -3365,5610:352,-102,-65,0,0,0.0750273 -3366,5610:351,-101,-65,0,0,0.0750345 -3367,5610:350,-100,-65,0,0,0.0750558 -3368,5609:459,-99,-65,0,0,0.0750345 -3369,5609:458,-98,-65,0,0,0.0750201 -3370,5609:457,-97,-65,0,0,0.0750273 -3371,5609:456,-96,-65,0,0,0.0750131 -3372,5609:455,-95,-65,0,0,0.0749775 -3373,5609:354,-94,-65,0,0,0.0749703 -3374,5609:353,-93,-65,0,0,0.075006 -3375,5609:352,-92,-65,0,0,0.0749988 -3376,5609:351,-91,-65,0,0,0.0749775 -3377,5609:350,-90,-65,0,0,0.0749916 -3378,5608:459,-89,-65,0,0,0.0749988 -3379,5608:458,-88,-65,0,0,0.0750131 -3380,5608:457,-87,-65,0,0,0.0750201 -3381,5608:456,-86,-65,0,0,0.0750416 -3382,5608:455,-85,-65,0,0,0.075063 -3383,5608:354,-84,-65,0,0,0.0750773 -3384,5608:353,-83,-65,0,0,0.0750915 -3385,5608:352,-82,-65,0,0,0.0750915 -3386,5608:351,-81,-65,0,0,0.0750987 -3387,5608:350,-80,-65,0,0,0.0750987 -3388,5607:459,-79,-65,0,0,0.0750987 -3389,5607:458,-78,-65,0,0,0.0750915 -3390,5607:457,-77,-65,0,0,0.0751344 -3391,5607:456,-76,-65,0,0,0.0752129 -3392,5607:455,-75,-65,0,0,0.07527 -3393,5607:354,-74,-65,0,0,0.0753417 -3394,5607:353,-73,-65,0,0,0.0754133 -3395,5607:352,-72,-65,0,0,0.0755567 -3396,5607:351,-71,-65,0,0,0.075758 -3397,5607:350,-70,-65,0,0,0.0756572 -3398,5606:459,-69,-65,0,0,0.0756645 -3399,5606:458,-68,-65,0,0,0.0764949 -3400,5606:350,-60,-65,0,0,0.0753058 -3401,5605:459,-59,-65,0,0,0.0752201 -3402,5605:458,-58,-65,0,0,0.0750488 -3403,5605:457,-57,-65,0,0,0.0750273 -3404,5605:456,-56,-65,0,0,0.0750345 -3405,5605:455,-55,-65,0,0,0.0750416 -3406,5605:354,-54,-65,0,0,0.0750416 -3407,5605:353,-53,-65,0,0,0.0750273 -3408,5605:352,-52,-65,0,0,0.075006 -3409,5605:351,-51,-65,0,0,0.0749916 -3410,5605:350,-50,-65,0,0,0.0749916 -3411,5604:459,-49,-65,0,0,0.0749916 -3412,5604:458,-48,-65,0,0,0.0749846 -3413,5604:457,-47,-65,0,0,0.0749846 -3414,5604:456,-46,-65,0,0,0.0749846 -3415,5604:455,-45,-65,0,0,0.0749775 -3416,5604:354,-44,-65,0,0,0.0749775 -3417,5604:353,-43,-65,0,0,0.0749775 -3418,5604:352,-42,-65,0,0,0.0749631 -3419,5604:351,-41,-65,0,0,0.0749562 -3420,5604:350,-40,-65,0,0,0.0749562 -3421,5603:459,-39,-65,0,0,0.0749562 -3422,5603:458,-38,-65,0,0,0.0749562 -3423,5603:457,-37,-65,0,0,0.0749562 -3424,5603:456,-36,-65,0,0,0.0749631 -3425,5603:455,-35,-65,0,0,0.0749631 -3426,5603:354,-34,-65,0,0,0.0749631 -3427,5603:353,-33,-65,0,0,0.0749631 -3428,5603:352,-32,-65,0,0,0.0749562 -3429,5603:351,-31,-65,0,0,0.074949 -3430,5603:350,-30,-65,0,0,0.074949 -3431,5602:459,-29,-65,0,0,0.0749418 -3432,5602:458,-28,-65,0,0,0.0749418 -3433,5602:457,-27,-65,0,0,0.0749418 -3434,5602:456,-26,-65,0,0,0.0749418 -3435,5602:455,-25,-65,0,0,0.0749418 -3436,5602:354,-24,-65,0,0,0.0749346 -3437,5602:353,-23,-65,0,0,0.0749275 -3438,5602:352,-22,-65,0,0,0.0749205 -3439,5602:351,-21,-65,0,0,0.0749205 -3440,5602:350,-20,-65,0,0,0.0749205 -3441,5601:459,-19,-65,0,0,0.0749205 -3442,5601:458,-18,-65,0,0,0.0749205 -3443,5601:457,-17,-65,0,0,0.0749275 -3444,5601:456,-16,-65,0,0,0.0749275 -3445,5601:455,-15,-65,0,0,0.0749275 -3446,5601:354,-14,-65,0,0,0.0749275 -3447,5601:353,-13,-65,0,0,0.0749275 -3448,5601:352,-12,-65,0,0,0.0749205 -3449,5601:351,-11,-65,0,0,0.074899 -3450,5601:350,-10,-65,0,0,0.0748705 -3451,5600:459,-9,-65,0,0,0.0748777 -3452,5600:458,-8,-65,0,0,0.0748849 -3453,5600:457,-7,-65,0,0,0.074899 -3454,5600:456,-6,-65,0,0,0.0749205 -3455,5600:455,-5,-65,0,0,0.0749275 -3456,5600:354,-4,-65,0,0,0.0749275 -3457,5600:353,-3,-65,0,0,0.0749062 -3458,5600:352,-2,-65,0,0,0.0748705 -3459,5600:351,-1,-65,0,0,0.0748777 -3460,3600:351,0,-65,0,0,0.0748849 -3461,3600:351,1,-65,0,0,0.074899 -3462,3600:352,2,-65,0,0,0.0749275 -3463,3600:353,3,-65,0,0,0.074892 -3464,3600:354,4,-65,0,0,0.0748705 -3465,3600:455,5,-65,0,0,0.0748493 -3466,3600:456,6,-65,0,0,0.0748421 -3467,3600:457,7,-65,0,0,0.0748349 -3468,3600:458,8,-65,0,0,0.0748564 -3469,3600:459,9,-65,0,0,0.0749062 -3470,3601:350,10,-65,0,0,0.0749418 -3471,3601:351,11,-65,0,0,0.075006 -3472,3601:352,12,-65,0,0,0.0749846 -3473,3601:353,13,-65,0,0,0.0750131 -3474,3601:354,14,-65,0,0,0.0750201 -3475,3601:455,15,-65,0,0,0.0749846 -3476,3601:456,16,-65,0,0,0.0749775 -3477,3601:457,17,-65,0,0,0.0749846 -3478,3601:458,18,-65,0,0,0.0749418 -3479,3601:459,19,-65,0,0,0.074949 -3480,3602:350,20,-65,0,0,0.0749418 -3481,3602:351,21,-65,0,0,0.074949 -3482,3602:352,22,-65,0,0,0.074949 -3483,3602:353,23,-65,0,0,0.0749346 -3484,3602:354,24,-65,0,0,0.0749346 -3485,3602:455,25,-65,0,0,0.0749418 -3486,3602:456,26,-65,0,0,0.0749703 -3487,3602:457,27,-65,0,0,0.0749631 -3488,3602:458,28,-65,0,0,0.0749562 -3489,3602:459,29,-65,0,0,0.0749562 -3490,3603:350,30,-65,0,0,0.0749631 -3491,3603:351,31,-65,0,0,0.0749631 -3492,3603:352,32,-65,0,0,0.0750345 -3493,3603:353,33,-65,0,0,0.0773998 -3494,3603:455,35,-65,0,0,0.0754275 -3495,3603:456,36,-65,0,0,0.0754061 -3496,3603:457,37,-65,0,0,0.0750702 -3497,3603:458,38,-65,0,0,0.0750558 -3498,3603:459,39,-65,0,0,0.0751701 -3499,3604:350,40,-65,0,0,0.07512 -3500,3607:352,72,-65,0,0,0.0854231 -3501,3607:354,74,-65,0,0,0.0807361 -3502,3607:455,75,-65,0,0,0.0816328 -3503,3607:456,76,-65,0,0,0.082554 -3504,3607:457,77,-65,0,0,0.0845044 -3505,3607:458,78,-65,0,0,0.0881094 -3506,3615:456,156,-65,0,0,0.0768221 -3507,3615:457,157,-65,0,0,0.0751486 -3508,3615:458,158,-65,0,0,0.0751128 -3509,3615:459,159,-65,0,0,0.0750558 -3510,3616:350,160,-65,0,0,0.0750558 -3511,3616:351,161,-65,0,0,0.0750488 -3512,3616:352,162,-65,0,0,0.075063 -3513,3616:353,163,-65,0,0,0.0750702 -3514,3616:354,164,-65,0,0,0.0750702 -3515,3616:455,165,-65,0,0,0.075063 -3516,3616:456,166,-65,0,0,0.075063 -3517,3616:457,167,-65,0,0,0.075063 -3518,3616:458,168,-65,0,0,0.0750558 -3519,3616:459,169,-65,0,0,0.0750558 -3520,3617:350,170,-65,0,0,0.0750416 -3521,3617:351,171,-65,0,0,0.0750201 -3522,3617:352,172,-65,0,0,0.075006 -3523,3617:353,173,-65,0,0,0.0749988 -3524,3617:354,174,-65,0,0,0.0749846 -3525,3617:455,175,-65,0,0,0.0749846 -3526,3617:456,176,-65,0,0,0.0749916 -3527,3617:457,177,-65,0,0,0.075006 -3528,3617:458,178,-65,0,0,0.0750345 -3529,3617:459,179,-65,0,0,0.0750416 -3530,3618:350,180,-65,0,0,0.0750488 -3531,5618:140,-180,-64,0,0,0.0750558 -3532,5617:249,-179,-64,0,0,0.075063 -3533,5617:248,-178,-64,0,0,0.075063 -3534,5617:247,-177,-64,0,0,0.0750702 -3535,5617:246,-176,-64,0,0,0.0750702 -3536,5617:245,-175,-64,0,0,0.0750843 -3537,5617:144,-174,-64,0,0,0.0750773 -3538,5617:143,-173,-64,0,0,0.075063 -3539,5617:142,-172,-64,0,0,0.0750558 -3540,5617:141,-171,-64,0,0,0.0750488 -3541,5617:140,-170,-64,0,0,0.0750416 -3542,5616:249,-169,-64,0,0,0.0750273 -3543,5616:248,-168,-64,0,0,0.0750201 -3544,5616:247,-167,-64,0,0,0.0750131 -3545,5616:246,-166,-64,0,0,0.0749916 -3546,5616:245,-165,-64,0,0,0.0749846 -3547,5616:144,-164,-64,0,0,0.0749916 -3548,5616:143,-163,-64,0,0,0.0749988 -3549,5616:142,-162,-64,0,0,0.0750131 -3550,5616:141,-161,-64,0,0,0.0750345 -3551,5616:140,-160,-64,0,0,0.0750488 -3552,5615:249,-159,-64,0,0,0.0750558 -3553,5615:248,-158,-64,0,0,0.0750702 -3554,5615:247,-157,-64,0,0,0.0750843 -3555,5615:246,-156,-64,0,0,0.0750915 -3556,5615:245,-155,-64,0,0,0.0751059 -3557,5615:144,-154,-64,0,0,0.0751272 -3558,5615:143,-153,-64,0,0,0.0751416 -3559,5615:142,-152,-64,0,0,0.0751416 -3560,5615:141,-151,-64,0,0,0.075163 -3561,5615:140,-150,-64,0,0,0.0751558 -3562,5614:249,-149,-64,0,0,0.075163 -3563,5614:248,-148,-64,0,0,0.0751843 -3564,5614:247,-147,-64,0,0,0.0751771 -3565,5614:246,-146,-64,0,0,0.0751701 -3566,5614:245,-145,-64,0,0,0.0751701 -3567,5614:144,-144,-64,0,0,0.0751843 -3568,5614:143,-143,-64,0,0,0.0751843 -3569,5614:142,-142,-64,0,0,0.0751987 -3570,5614:141,-141,-64,0,0,0.0752415 -3571,5614:140,-140,-64,0,0,0.0751915 -3572,5613:249,-139,-64,0,0,0.0751701 -3573,5613:248,-138,-64,0,0,0.0753631 -3574,5613:247,-137,-64,0,0,0.0755926 -3575,5613:246,-136,-64,0,0,0.0752129 -3576,5613:245,-135,-64,0,0,0.0751987 -3577,5613:144,-134,-64,0,0,0.0754921 -3578,5613:143,-133,-64,0,0,0.0794943 -3579,5613:142,-132,-64,0,0,0.0803252 -3580,5613:141,-131,-64,0,0,0.0802569 -3581,5613:140,-130,-64,0,0,0.0779445 -3582,5612:249,-129,-64,0,0,0.0764659 -3583,5612:248,-128,-64,0,0,0.0764876 -3584,5612:247,-127,-64,0,0,0.0767929 -3585,5612:246,-126,-64,0,0,0.0769754 -3586,5612:245,-125,-64,0,0,0.0771799 -3587,5612:144,-124,-64,0,0,0.0778337 -3588,5612:143,-123,-64,0,0,0.0788203 -3589,5612:142,-122,-64,0,0,0.0782551 -3590,5612:141,-121,-64,0,0,0.0778042 -3591,5612:140,-120,-64,0,0,0.0768441 -3592,5611:249,-119,-64,0,0,0.076039 -3593,5611:248,-118,-64,0,0,0.0764006 -3594,5611:247,-117,-64,0,0,0.0788427 -3595,5611:246,-116,-64,0,0,0.0801433 -3596,5611:245,-115,-64,0,0,0.0808276 -3597,5611:144,-114,-64,0,0,0.0804162 -3598,5611:143,-113,-64,0,0,0.079577 -3599,5611:142,-112,-64,0,0,0.0799542 -3600,5611:141,-111,-64,0,0,0.0798408 -3601,5611:140,-110,-64,0,0,0.0809957 -3602,5610:249,-109,-64,0,0,0.080614 -3603,5610:248,-108,-64,0,0,0.0809957 -3604,5610:247,-107,-64,0,0,0.0796673 -3605,5610:246,-106,-64,0,0,0.0766765 -3606,5610:245,-105,-64,0,0,0.075837 -3607,5610:144,-104,-64,0,0,0.0759162 -3608,5610:143,-103,-64,0,0,0.0756932 -3609,5610:142,-102,-64,0,0,0.0750702 -3610,5610:141,-101,-64,0,0,0.0754993 -3611,5610:140,-100,-64,0,0,0.0777307 -3612,5609:249,-99,-64,0,0,0.0784405 -3613,5609:248,-98,-64,0,0,0.0770117 -3614,5609:247,-97,-64,0,0,0.0758225 -3615,5609:246,-96,-64,0,0,0.0751771 -3616,5609:245,-95,-64,0,0,0.0750273 -3617,5609:144,-94,-64,0,0,0.0750488 -3618,5609:143,-93,-64,0,0,0.0750987 -3619,5609:142,-92,-64,0,0,0.0750273 -3620,5609:141,-91,-64,0,0,0.0749775 -3621,5609:140,-90,-64,0,0,0.0749916 -3622,5608:249,-89,-64,0,0,0.0749916 -3623,5608:248,-88,-64,0,0,0.0750131 -3624,5608:247,-87,-64,0,0,0.0750273 -3625,5608:246,-86,-64,0,0,0.0750416 -3626,5608:245,-85,-64,0,0,0.075063 -3627,5608:144,-84,-64,0,0,0.075063 -3628,5608:143,-83,-64,0,0,0.0750702 -3629,5608:142,-82,-64,0,0,0.0750773 -3630,5608:141,-81,-64,0,0,0.0750843 -3631,5608:140,-80,-64,0,0,0.0750915 -3632,5607:249,-79,-64,0,0,0.0750843 -3633,5607:248,-78,-64,0,0,0.0750843 -3634,5607:247,-77,-64,0,0,0.0750987 -3635,5607:246,-76,-64,0,0,0.0751059 -3636,5607:245,-75,-64,0,0,0.075163 -3637,5607:144,-74,-64,0,0,0.0752559 -3638,5607:143,-73,-64,0,0,0.0753631 -3639,5607:142,-72,-64,0,0,0.0754921 -3640,5607:141,-71,-64,0,0,0.0755494 -3641,5607:140,-70,-64,0,0,0.0756787 -3642,5606:249,-69,-64,0,0,0.0768294 -3643,5606:248,-68,-64,0,0,0.0776644 -3644,5605:249,-59,-64,0,0,0.0753489 -3645,5605:248,-58,-64,0,0,0.0751128 -3646,5605:247,-57,-64,0,0,0.0750345 -3647,5605:246,-56,-64,0,0,0.0750345 -3648,5605:245,-55,-64,0,0,0.0750488 -3649,5605:144,-54,-64,0,0,0.0750416 -3650,5605:143,-53,-64,0,0,0.0750273 -3651,5605:142,-52,-64,0,0,0.0749988 -3652,5605:141,-51,-64,0,0,0.0749916 -3653,5605:140,-50,-64,0,0,0.0749916 -3654,5604:249,-49,-64,0,0,0.0749916 -3655,5604:248,-48,-64,0,0,0.0749846 -3656,5604:247,-47,-64,0,0,0.0749846 -3657,5604:246,-46,-64,0,0,0.0749846 -3658,5604:245,-45,-64,0,0,0.0749846 -3659,5604:144,-44,-64,0,0,0.0749775 -3660,5604:143,-43,-64,0,0,0.0749703 -3661,5604:142,-42,-64,0,0,0.0749631 -3662,5604:141,-41,-64,0,0,0.0749631 -3663,5604:140,-40,-64,0,0,0.0749631 -3664,5603:249,-39,-64,0,0,0.0749631 -3665,5603:248,-38,-64,0,0,0.0749631 -3666,5603:247,-37,-64,0,0,0.0749631 -3667,5603:246,-36,-64,0,0,0.0749631 -3668,5603:245,-35,-64,0,0,0.0749631 -3669,5603:144,-34,-64,0,0,0.0749631 -3670,5603:143,-33,-64,0,0,0.0749631 -3671,5603:142,-32,-64,0,0,0.0749562 -3672,5603:141,-31,-64,0,0,0.0749562 -3673,5603:140,-30,-64,0,0,0.074949 -3674,5602:249,-29,-64,0,0,0.0749562 -3675,5602:248,-28,-64,0,0,0.0749562 -3676,5602:247,-27,-64,0,0,0.0749562 -3677,5602:246,-26,-64,0,0,0.0749562 -3678,5602:245,-25,-64,0,0,0.074949 -3679,5602:144,-24,-64,0,0,0.074949 -3680,5602:143,-23,-64,0,0,0.0749418 -3681,5602:142,-22,-64,0,0,0.0749275 -3682,5602:141,-21,-64,0,0,0.0749275 -3683,5602:140,-20,-64,0,0,0.0749205 -3684,5601:249,-19,-64,0,0,0.0749133 -3685,5601:248,-18,-64,0,0,0.0749062 -3686,5601:247,-17,-64,0,0,0.0749062 -3687,5601:246,-16,-64,0,0,0.0749062 -3688,5601:245,-15,-64,0,0,0.0749062 -3689,5601:144,-14,-64,0,0,0.0749133 -3690,5601:143,-13,-64,0,0,0.0749133 -3691,5601:142,-12,-64,0,0,0.0749062 -3692,5601:141,-11,-64,0,0,0.074892 -3693,5601:140,-10,-64,0,0,0.0748636 -3694,5600:249,-9,-64,0,0,0.0748493 -3695,5600:248,-8,-64,0,0,0.0748564 -3696,5600:247,-7,-64,0,0,0.0748777 -3697,5600:246,-6,-64,0,0,0.0748705 -3698,5600:245,-5,-64,0,0,0.0748636 -3699,5600:144,-4,-64,0,0,0.0748849 -3700,5600:143,-3,-64,0,0,0.0748849 -3701,5600:142,-2,-64,0,0,0.0748636 -3702,5600:141,-1,-64,0,0,0.074828 -3703,3600:141,0,-64,0,0,0.0748137 -3704,3600:141,1,-64,0,0,0.0748137 -3705,3600:142,2,-64,0,0,0.0748349 -3706,3600:143,3,-64,0,0,0.0748777 -3707,3600:144,4,-64,0,0,0.0748849 -3708,3600:245,5,-64,0,0,0.0748636 -3709,3600:246,6,-64,0,0,0.0748493 -3710,3600:247,7,-64,0,0,0.0748349 -3711,3600:248,8,-64,0,0,0.0748208 -3712,3600:249,9,-64,0,0,0.0748636 -3713,3601:140,10,-64,0,0,0.0749062 -3714,3601:141,11,-64,0,0,0.074949 -3715,3601:142,12,-64,0,0,0.075006 -3716,3601:143,13,-64,0,0,0.0749846 -3717,3601:144,14,-64,0,0,0.0749703 -3718,3601:245,15,-64,0,0,0.0749418 -3719,3601:246,16,-64,0,0,0.0749562 -3720,3601:247,17,-64,0,0,0.0749631 -3721,3601:248,18,-64,0,0,0.074949 -3722,3601:249,19,-64,0,0,0.0749562 -3723,3602:140,20,-64,0,0,0.0749562 -3724,3602:141,21,-64,0,0,0.0749418 -3725,3602:142,22,-64,0,0,0.0749205 -3726,3602:143,23,-64,0,0,0.074899 -3727,3602:144,24,-64,0,0,0.0749062 -3728,3602:245,25,-64,0,0,0.0749133 -3729,3602:246,26,-64,0,0,0.0749346 -3730,3602:247,27,-64,0,0,0.0749346 -3731,3602:248,28,-64,0,0,0.074949 -3732,3602:249,29,-64,0,0,0.0749631 -3733,3603:140,30,-64,0,0,0.0749703 -3734,3603:141,31,-64,0,0,0.0749703 -3735,3603:142,32,-64,0,0,0.0750273 -3736,3603:143,33,-64,0,0,0.0751344 -3737,3603:144,34,-64,0,0,0.07512 -3738,3603:245,35,-64,0,0,0.0750702 -3739,3603:246,36,-64,0,0,0.0750702 -3740,3603:247,37,-64,0,0,0.0750702 -3741,3603:248,38,-64,0,0,0.075063 -3742,3603:249,39,-64,0,0,0.0750773 -3743,3604:140,40,-64,0,0,0.0750488 -3744,3604:141,41,-64,0,0,0.075063 -3745,3604:142,42,-64,0,0,0.0750915 -3746,3607:140,70,-64,0,0,0.0826319 -3747,3607:141,71,-64,0,0,0.07969 -3748,3607:142,72,-64,0,0,0.0793591 -3749,3607:144,74,-64,0,0,0.0794792 -3750,3607:245,75,-64,0,0,0.0795694 -3751,3607:246,76,-64,0,0,0.079871 -3752,3607:247,77,-64,0,0,0.0808427 -3753,3607:248,78,-64,0,0,0.0858415 -3754,3607:249,79,-64,0,0,0.091212 -3755,3614:249,149,-64,0,0,0.0833198 -3756,3615:140,150,-64,0,0,0.0818642 -3757,3615:141,151,-64,0,0,0.0815327 -3758,3615:142,152,-64,0,0,0.0800599 -3759,3615:143,153,-64,0,0,0.0774806 -3760,3615:144,154,-64,0,0,0.0758658 -3761,3615:245,155,-64,0,0,0.0755135 -3762,3615:246,156,-64,0,0,0.075063 -3763,3615:247,157,-64,0,0,0.0750773 -3764,3615:248,158,-64,0,0,0.0750702 -3765,3615:249,159,-64,0,0,0.0750488 -3766,3616:140,160,-64,0,0,0.0750273 -3767,3616:141,161,-64,0,0,0.0750273 -3768,3616:142,162,-64,0,0,0.0750131 -3769,3616:143,163,-64,0,0,0.0750345 -3770,3616:144,164,-64,0,0,0.075063 -3771,3616:245,165,-64,0,0,0.0750416 -3772,3616:246,166,-64,0,0,0.0750488 -3773,3616:247,167,-64,0,0,0.0750488 -3774,3616:248,168,-64,0,0,0.0750416 -3775,3616:249,169,-64,0,0,0.0750416 -3776,3617:140,170,-64,0,0,0.0750345 -3777,3617:141,171,-64,0,0,0.0750273 -3778,3617:142,172,-64,0,0,0.0750131 -3779,3617:143,173,-64,0,0,0.075006 -3780,3617:144,174,-64,0,0,0.0749988 -3781,3617:245,175,-64,0,0,0.0750131 -3782,3617:246,176,-64,0,0,0.0750201 -3783,3617:247,177,-64,0,0,0.0750273 -3784,3617:248,178,-64,0,0,0.0750345 -3785,3617:249,179,-64,0,0,0.0750488 -3786,3618:140,180,-64,0,0,0.0750558 -3787,5618:130,-180,-63,0,0,0.0750558 -3788,5617:239,-179,-63,0,0,0.075063 -3789,5617:238,-178,-63,0,0,0.075063 -3790,5617:237,-177,-63,0,0,0.075063 -3791,5617:236,-176,-63,0,0,0.0750915 -3792,5617:235,-175,-63,0,0,0.0751128 -3793,5617:134,-174,-63,0,0,0.0750843 -3794,5617:133,-173,-63,0,0,0.075063 -3795,5617:132,-172,-63,0,0,0.0750558 -3796,5617:131,-171,-63,0,0,0.0750416 -3797,5617:130,-170,-63,0,0,0.0750416 -3798,5616:239,-169,-63,0,0,0.0750345 -3799,5616:238,-168,-63,0,0,0.0750273 -3800,5616:237,-167,-63,0,0,0.0750201 -3801,5616:236,-166,-63,0,0,0.075006 -3802,5616:235,-165,-63,0,0,0.0749988 -3803,5616:134,-164,-63,0,0,0.075006 -3804,5616:133,-163,-63,0,0,0.0750201 -3805,5616:132,-162,-63,0,0,0.0750345 -3806,5616:131,-161,-63,0,0,0.0750488 -3807,5616:130,-160,-63,0,0,0.075063 -3808,5615:239,-159,-63,0,0,0.0750702 -3809,5615:238,-158,-63,0,0,0.0750773 -3810,5615:237,-157,-63,0,0,0.0750843 -3811,5615:236,-156,-63,0,0,0.0750915 -3812,5615:235,-155,-63,0,0,0.0751059 -3813,5615:134,-154,-63,0,0,0.07512 -3814,5615:133,-153,-63,0,0,0.0751416 -3815,5615:132,-152,-63,0,0,0.0751558 -3816,5615:131,-151,-63,0,0,0.075163 -3817,5615:130,-150,-63,0,0,0.0751701 -3818,5614:239,-149,-63,0,0,0.075163 -3819,5614:238,-148,-63,0,0,0.0751771 -3820,5614:237,-147,-63,0,0,0.0751771 -3821,5614:236,-146,-63,0,0,0.0752057 -3822,5614:235,-145,-63,0,0,0.0752201 -3823,5614:134,-144,-63,0,0,0.0751915 -3824,5614:133,-143,-63,0,0,0.0752415 -3825,5614:132,-142,-63,0,0,0.0754779 -3826,5614:131,-141,-63,0,0,0.0773559 -3827,5614:130,-140,-63,0,0,0.0762918 -3828,5613:239,-139,-63,0,0,0.0759956 -3829,5613:238,-138,-63,0,0,0.076234 -3830,5613:237,-137,-63,0,0,0.0762918 -3831,5613:236,-136,-63,0,0,0.0760245 -3832,5613:235,-135,-63,0,0,0.0758443 -3833,5613:134,-134,-63,0,0,0.0752844 -3834,5613:133,-133,-63,0,0,0.0756213 -3835,5613:132,-132,-63,0,0,0.0794792 -3836,5613:131,-131,-63,0,0,0.0815017 -3837,5613:130,-130,-63,0,0,0.0837208 -3838,5612:239,-129,-63,0,0,0.0777084 -3839,5612:238,-128,-63,0,0,0.0780552 -3840,5612:237,-127,-63,0,0,0.0810952 -3841,5612:236,-126,-63,0,0,0.0799164 -3842,5612:235,-125,-63,0,0,0.0789621 -3843,5612:134,-124,-63,0,0,0.0798256 -3844,5612:133,-123,-63,0,0,0.0796599 -3845,5612:132,-122,-63,0,0,0.0788427 -3846,5612:131,-121,-63,0,0,0.0789472 -3847,5612:130,-120,-63,0,0,0.0788351 -3848,5611:239,-119,-63,0,0,0.0790816 -3849,5611:238,-118,-63,0,0,0.0799314 -3850,5611:237,-117,-63,0,0,0.0799088 -3851,5611:236,-116,-63,0,0,0.0799542 -3852,5611:235,-115,-63,0,0,0.0807589 -3853,5611:134,-114,-63,0,0,0.0820496 -3854,5611:133,-113,-63,0,0,0.0816636 -3855,5611:132,-112,-63,0,0,0.0810415 -3856,5611:131,-111,-63,0,0,0.0808048 -3857,5611:130,-110,-63,0,0,0.081302 -3858,5610:239,-109,-63,0,0,0.0811258 -3859,5610:238,-108,-63,0,0,0.081571 -3860,5610:237,-107,-63,0,0,0.0825851 -3861,5610:236,-106,-63,0,0,0.0837367 -3862,5610:235,-105,-63,0,0,0.0824918 -3863,5610:134,-104,-63,0,0,0.082819 -3864,5610:133,-103,-63,0,0,0.0817175 -3865,5610:132,-102,-63,0,0,0.0810569 -3866,5610:131,-101,-63,0,0,0.0793366 -3867,5610:130,-100,-63,0,0,0.0780405 -3868,5609:239,-99,-63,0,0,0.077532 -3869,5609:238,-98,-63,0,0,0.0752129 -3870,5609:237,-97,-63,0,0,0.0750987 -3871,5609:236,-96,-63,0,0,0.0750987 -3872,5609:235,-95,-63,0,0,0.0750416 -3873,5609:134,-94,-63,0,0,0.0750915 -3874,5609:133,-93,-63,0,0,0.0752631 -3875,5609:132,-92,-63,0,0,0.0753272 -3876,5609:131,-91,-63,0,0,0.0751272 -3877,5609:130,-90,-63,0,0,0.075006 -3878,5608:239,-89,-63,0,0,0.0750345 -3879,5608:238,-88,-63,0,0,0.0750131 -3880,5608:237,-87,-63,0,0,0.0750131 -3881,5608:236,-86,-63,0,0,0.0750345 -3882,5608:235,-85,-63,0,0,0.0750345 -3883,5608:134,-84,-63,0,0,0.0750488 -3884,5608:133,-83,-63,0,0,0.0750558 -3885,5608:132,-82,-63,0,0,0.0750915 -3886,5608:131,-81,-63,0,0,0.0750843 -3887,5608:130,-80,-63,0,0,0.0750702 -3888,5607:239,-79,-63,0,0,0.075063 -3889,5607:238,-78,-63,0,0,0.0750702 -3890,5607:237,-77,-63,0,0,0.075063 -3891,5607:236,-76,-63,0,0,0.0750702 -3892,5607:235,-75,-63,0,0,0.0750558 -3893,5607:134,-74,-63,0,0,0.075313 -3894,5607:133,-73,-63,0,0,0.075442 -3895,5607:132,-72,-63,0,0,0.0756141 -3896,5607:131,-71,-63,0,0,0.0761834 -3897,5607:130,-70,-63,0,0,0.076713 -3898,5606:238,-68,-63,0,0,0.0829126 -3899,5606:130,-60,-63,0,0,0.0759523 -3900,5605:239,-59,-63,0,0,0.0754275 -3901,5605:238,-58,-63,0,0,0.0751344 -3902,5605:237,-57,-63,0,0,0.0750416 -3903,5605:236,-56,-63,0,0,0.0750345 -3904,5605:235,-55,-63,0,0,0.0750416 -3905,5605:134,-54,-63,0,0,0.0750416 -3906,5605:133,-53,-63,0,0,0.0750201 -3907,5605:132,-52,-63,0,0,0.0749988 -3908,5605:131,-51,-63,0,0,0.0749988 -3909,5605:130,-50,-63,0,0,0.0749916 -3910,5604:239,-49,-63,0,0,0.0749916 -3911,5604:238,-48,-63,0,0,0.0749846 -3912,5604:237,-47,-63,0,0,0.0749775 -3913,5604:236,-46,-63,0,0,0.0749775 -3914,5604:235,-45,-63,0,0,0.0749775 -3915,5604:134,-44,-63,0,0,0.0749775 -3916,5604:133,-43,-63,0,0,0.0749703 -3917,5604:132,-42,-63,0,0,0.0749703 -3918,5604:131,-41,-63,0,0,0.0749703 -3919,5604:130,-40,-63,0,0,0.0749703 -3920,5603:239,-39,-63,0,0,0.0749703 -3921,5603:238,-38,-63,0,0,0.0749631 -3922,5603:237,-37,-63,0,0,0.0749631 -3923,5603:236,-36,-63,0,0,0.0749631 -3924,5603:235,-35,-63,0,0,0.0749631 -3925,5603:134,-34,-63,0,0,0.0749631 -3926,5603:133,-33,-63,0,0,0.0749562 -3927,5603:132,-32,-63,0,0,0.0749562 -3928,5603:131,-31,-63,0,0,0.0749562 -3929,5603:130,-30,-63,0,0,0.0749631 -3930,5602:239,-29,-63,0,0,0.0749631 -3931,5602:238,-28,-63,0,0,0.0749631 -3932,5602:237,-27,-63,0,0,0.0749631 -3933,5602:236,-26,-63,0,0,0.0749631 -3934,5602:235,-25,-63,0,0,0.0749562 -3935,5602:134,-24,-63,0,0,0.0749562 -3936,5602:133,-23,-63,0,0,0.074949 -3937,5602:132,-22,-63,0,0,0.0749418 -3938,5602:131,-21,-63,0,0,0.0749346 -3939,5602:130,-20,-63,0,0,0.0749275 -3940,5601:239,-19,-63,0,0,0.0749205 -3941,5601:238,-18,-63,0,0,0.0749062 -3942,5601:237,-17,-63,0,0,0.074899 -3943,5601:236,-16,-63,0,0,0.074892 -3944,5601:235,-15,-63,0,0,0.0748849 -3945,5601:134,-14,-63,0,0,0.074892 -3946,5601:133,-13,-63,0,0,0.074892 -3947,5601:132,-12,-63,0,0,0.0748849 -3948,5601:131,-11,-63,0,0,0.0748777 -3949,5601:130,-10,-63,0,0,0.0748705 -3950,5600:239,-9,-63,0,0,0.0748705 -3951,5600:238,-8,-63,0,0,0.0748636 -3952,5600:237,-7,-63,0,0,0.0748564 -3953,5600:236,-6,-63,0,0,0.0748493 -3954,5600:235,-5,-63,0,0,0.0748349 -3955,5600:134,-4,-63,0,0,0.074828 -3956,5600:133,-3,-63,0,0,0.0748137 -3957,5600:132,-2,-63,0,0,0.0748137 -3958,5600:131,-1,-63,0,0,0.074828 -3959,3600:131,0,-63,0,0,0.0748349 -3960,3600:131,1,-63,0,0,0.0748705 -3961,3600:132,2,-63,0,0,0.0748349 -3962,3600:133,3,-63,0,0,0.0748208 -3963,3600:134,4,-63,0,0,0.0748208 -3964,3600:235,5,-63,0,0,0.074828 -3965,3600:236,6,-63,0,0,0.074828 -3966,3600:237,7,-63,0,0,0.0748564 -3967,3600:238,8,-63,0,0,0.0748493 -3968,3600:239,9,-63,0,0,0.0748564 -3969,3601:130,10,-63,0,0,0.074899 -3970,3601:131,11,-63,0,0,0.0749275 -3971,3601:132,12,-63,0,0,0.074949 -3972,3601:133,13,-63,0,0,0.0749562 -3973,3601:134,14,-63,0,0,0.0749631 -3974,3601:235,15,-63,0,0,0.0749418 -3975,3601:236,16,-63,0,0,0.0749418 -3976,3601:237,17,-63,0,0,0.0749346 -3977,3601:238,18,-63,0,0,0.0749133 -3978,3601:239,19,-63,0,0,0.0749275 -3979,3602:130,20,-63,0,0,0.0749205 -3980,3602:131,21,-63,0,0,0.0749133 -3981,3602:132,22,-63,0,0,0.0749133 -3982,3602:133,23,-63,0,0,0.0749205 -3983,3602:134,24,-63,0,0,0.0749205 -3984,3602:235,25,-63,0,0,0.0749205 -3985,3602:236,26,-63,0,0,0.0749275 -3986,3602:237,27,-63,0,0,0.0749275 -3987,3602:238,28,-63,0,0,0.0749346 -3988,3602:239,29,-63,0,0,0.0749562 -3989,3603:130,30,-63,0,0,0.0749562 -3990,3603:131,31,-63,0,0,0.0749775 -3991,3603:132,32,-63,0,0,0.0749916 -3992,3603:133,33,-63,0,0,0.0750345 -3993,3603:134,34,-63,0,0,0.0750345 -3994,3603:235,35,-63,0,0,0.0750416 -3995,3603:236,36,-63,0,0,0.0750702 -3996,3603:237,37,-63,0,0,0.0750488 -3997,3603:238,38,-63,0,0,0.0750345 -3998,3603:239,39,-63,0,0,0.0750345 -3999,3604:130,40,-63,0,0,0.0750416 -4000,3604:131,41,-63,0,0,0.0750558 -4001,3604:132,42,-63,0,0,0.0750558 -4002,3604:133,43,-63,0,0,0.0750488 -4003,3604:134,44,-63,0,0,0.0750558 -4004,3604:235,45,-63,0,0,0.0750201 -4005,3604:236,46,-63,0,0,0.0747568 -4006,3604:238,48,-63,0,0,0.0815402 -4007,3606:235,65,-63,0,0,0.0795694 -4008,3606:236,66,-63,0,0,0.0792915 -4009,3606:237,67,-63,0,0,0.0787159 -4010,3606:238,68,-63,0,0,0.0776718 -4011,3606:239,69,-63,0,0,0.0785446 -4012,3607:130,70,-63,0,0,0.07751 -4013,3607:131,71,-63,0,0,0.0774658 -4014,3607:132,72,-63,0,0,0.0777307 -4015,3607:134,74,-63,0,0,0.0773852 -4016,3607:235,75,-63,0,0,0.0774584 -4017,3607:236,76,-63,0,0,0.0788276 -4018,3607:237,77,-63,0,0,0.0794342 -4019,3607:238,78,-63,0,0,0.081302 -4020,3607:239,79,-63,0,0,0.0837367 -4021,3608:130,80,-63,0,0,0.0864804 -4022,3608:131,81,-63,0,0,0.0908889 -4023,3614:236,146,-63,0,0,0.0848948 -4024,3614:237,147,-63,0,0,0.0829987 -4025,3614:238,148,-63,0,0,0.0812406 -4026,3614:239,149,-63,0,0,0.0810415 -4027,3615:130,150,-63,0,0,0.0785893 -4028,3615:131,151,-63,0,0,0.0766257 -4029,3615:132,152,-63,0,0,0.0750843 -4030,3615:133,153,-63,0,0,0.0750987 -4031,3615:134,154,-63,0,0,0.0750987 -4032,3615:235,155,-63,0,0,0.0750843 -4033,3615:236,156,-63,0,0,0.0750987 -4034,3615:237,157,-63,0,0,0.0750843 -4035,3615:238,158,-63,0,0,0.0750273 -4036,3615:239,159,-63,0,0,0.0749988 -4037,3616:130,160,-63,0,0,0.075006 -4038,3616:131,161,-63,0,0,0.0750131 -4039,3616:132,162,-63,0,0,0.0750201 -4040,3616:133,163,-63,0,0,0.0750201 -4041,3616:134,164,-63,0,0,0.0749346 -4042,3616:235,165,-63,0,0,0.0751843 -4043,3616:236,166,-63,0,0,0.0750416 -4044,3616:237,167,-63,0,0,0.0750345 -4045,3616:238,168,-63,0,0,0.0750345 -4046,3616:239,169,-63,0,0,0.0750345 -4047,3617:130,170,-63,0,0,0.0750273 -4048,3617:131,171,-63,0,0,0.0750273 -4049,3617:132,172,-63,0,0,0.0750273 -4050,3617:133,173,-63,0,0,0.0750273 -4051,3617:134,174,-63,0,0,0.0750201 -4052,3617:235,175,-63,0,0,0.0750131 -4053,3617:236,176,-63,0,0,0.0750345 -4054,3617:237,177,-63,0,0,0.0750416 -4055,3617:238,178,-63,0,0,0.0750488 -4056,3617:239,179,-63,0,0,0.0750558 -4057,3618:130,180,-63,0,0,0.0750558 -4058,5618:120,-180,-62,0,0,0.0750416 -4059,5617:229,-179,-62,0,0,0.0750416 -4060,5617:228,-178,-62,0,0,0.075063 -4061,5617:227,-177,-62,0,0,0.0751059 -4062,5617:226,-176,-62,0,0,0.0752057 -4063,5617:225,-175,-62,0,0,0.07512 -4064,5617:124,-174,-62,0,0,0.0750773 -4065,5617:123,-173,-62,0,0,0.075063 -4066,5617:122,-172,-62,0,0,0.0750488 -4067,5617:121,-171,-62,0,0,0.0750416 -4068,5617:120,-170,-62,0,0,0.0750273 -4069,5616:229,-169,-62,0,0,0.0750201 -4070,5616:228,-168,-62,0,0,0.0750131 -4071,5616:227,-167,-62,0,0,0.0750131 -4072,5616:226,-166,-62,0,0,0.0750131 -4073,5616:225,-165,-62,0,0,0.0750131 -4074,5616:124,-164,-62,0,0,0.0750201 -4075,5616:123,-163,-62,0,0,0.0750345 -4076,5616:122,-162,-62,0,0,0.0750488 -4077,5616:121,-161,-62,0,0,0.0750488 -4078,5616:120,-160,-62,0,0,0.075063 -4079,5615:229,-159,-62,0,0,0.0750773 -4080,5615:228,-158,-62,0,0,0.0750843 -4081,5615:227,-157,-62,0,0,0.0750915 -4082,5615:226,-156,-62,0,0,0.0750987 -4083,5615:225,-155,-62,0,0,0.0751128 -4085,5615:123,-153,-62,0,0,0.0751344 -4086,5615:122,-152,-62,0,0,0.0751486 -4087,5615:121,-151,-62,0,0,0.0751558 -4088,5615:120,-150,-62,0,0,0.075163 -4089,5614:229,-149,-62,0,0,0.0751701 -4090,5614:228,-148,-62,0,0,0.0751843 -4091,5614:227,-147,-62,0,0,0.0751843 -4092,5614:226,-146,-62,0,0,0.0751987 -4093,5614:225,-145,-62,0,0,0.0753703 -4094,5614:124,-144,-62,0,0,0.0751987 -4095,5614:123,-143,-62,0,0,0.0752631 -4096,5614:122,-142,-62,0,0,0.0757435 -4097,5614:121,-141,-62,0,0,0.0783144 -4098,5614:120,-140,-62,0,0,0.0788128 -4099,5613:229,-139,-62,0,0,0.0773118 -4100,5613:228,-138,-62,0,0,0.0775465 -4101,5613:227,-137,-62,0,0,0.0817175 -4102,5613:226,-136,-62,0,0,0.0809803 -4103,5613:225,-135,-62,0,0,0.082983 -4104,5613:124,-134,-62,0,0,0.0855597 -4105,5613:123,-133,-62,0,0,0.0837997 -4106,5613:122,-132,-62,0,0,0.078448 -4107,5613:121,-131,-62,0,0,0.0803405 -4108,5613:120,-130,-62,0,0,0.0836184 -4109,5612:229,-129,-62,0,0,0.0854633 -4110,5612:228,-128,-62,0,0,0.0803252 -4111,5612:227,-127,-62,0,0,0.0811716 -4112,5612:226,-126,-62,0,0,0.0819955 -4113,5612:225,-125,-62,0,0,0.0813559 -4114,5612:124,-124,-62,0,0,0.0810263 -4115,5612:123,-123,-62,0,0,0.0807817 -4116,5612:122,-122,-62,0,0,0.0809192 -4117,5612:121,-121,-62,0,0,0.0812254 -4118,5612:120,-120,-62,0,0,0.0816481 -4119,5611:229,-119,-62,0,0,0.0829987 -4120,5611:228,-118,-62,0,0,0.0849747 -4121,5611:227,-117,-62,0,0,0.0844726 -4122,5611:226,-116,-62,0,0,0.0840287 -4123,5611:225,-115,-62,0,0,0.0869933 -4124,5611:124,-114,-62,0,0,0.0839655 -4125,5611:123,-113,-62,0,0,0.0840526 -4126,5611:122,-112,-62,0,0,0.0841712 -4127,5611:121,-111,-62,0,0,0.0825308 -4128,5611:120,-110,-62,0,0,0.0823131 -4129,5610:229,-109,-62,0,0,0.0817405 -4130,5610:228,-108,-62,0,0,0.0815557 -4131,5610:227,-107,-62,0,0,0.083116 -4132,5610:226,-106,-62,0,0,0.0863913 -4133,5610:225,-105,-62,0,0,0.0846556 -4134,5610:124,-104,-62,0,0,0.0829205 -4135,5610:123,-103,-62,0,0,0.0817947 -4136,5610:122,-102,-62,0,0,0.0813252 -4137,5610:121,-101,-62,0,0,0.0804847 -4138,5610:120,-100,-62,0,0,0.0766983 -4139,5609:229,-99,-62,0,0,0.0765457 -4140,5609:228,-98,-62,0,0,0.0750345 -4141,5609:227,-97,-62,0,0,0.0750702 -4142,5609:226,-96,-62,0,0,0.0750488 -4143,5609:225,-95,-62,0,0,0.0754492 -4144,5609:124,-94,-62,0,0,0.0756285 -4145,5609:123,-93,-62,0,0,0.0755998 -4146,5609:122,-92,-62,0,0,0.0752916 -4147,5609:121,-91,-62,0,0,0.0753489 -4148,5609:120,-90,-62,0,0,0.0751771 -4149,5608:229,-89,-62,0,0,0.0750773 -4150,5608:228,-88,-62,0,0,0.0751344 -4151,5608:227,-87,-62,0,0,0.0752986 -4152,5608:226,-86,-62,0,0,0.0750488 -4153,5608:225,-85,-62,0,0,0.075729 -4154,5608:124,-84,-62,0,0,0.075837 -4155,5608:123,-83,-62,0,0,0.0758515 -4156,5608:122,-82,-62,0,0,0.0758298 -4157,5608:121,-81,-62,0,0,0.0763427 -4158,5608:120,-80,-62,0,0,0.0764803 -4159,5607:229,-79,-62,0,0,0.0766912 -4160,5607:228,-78,-62,0,0,0.0772899 -4161,5607:227,-77,-62,0,0,0.0756787 -4162,5607:226,-76,-62,0,0,0.0754061 -4163,5607:225,-75,-62,0,0,0.0756787 -4164,5607:124,-74,-62,0,0,0.0764949 -4165,5607:123,-73,-62,0,0,0.0765457 -4166,5607:122,-72,-62,0,0,0.0772092 -4167,5607:121,-71,-62,0,0,0.0769462 -4168,5607:120,-70,-62,0,0,0.0766912 -4169,5606:229,-69,-62,0,0,0.0785299 -4170,5606:120,-60,-62,0,0,0.0774217 -4171,5605:229,-59,-62,0,0,0.0752487 -4172,5605:228,-58,-62,0,0,0.0751344 -4173,5605:227,-57,-62,0,0,0.0751128 -4174,5605:226,-56,-62,0,0,0.0750558 -4175,5605:225,-55,-62,0,0,0.0750416 -4176,5605:124,-54,-62,0,0,0.0750488 -4177,5605:123,-53,-62,0,0,0.0750273 -4178,5605:122,-52,-62,0,0,0.075006 -4179,5605:121,-51,-62,0,0,0.0749988 -4180,5605:120,-50,-62,0,0,0.0749916 -4181,5604:229,-49,-62,0,0,0.0749846 -4182,5604:228,-48,-62,0,0,0.0749846 -4183,5604:227,-47,-62,0,0,0.0749775 -4184,5604:226,-46,-62,0,0,0.0749703 -4185,5604:225,-45,-62,0,0,0.0749775 -4186,5604:124,-44,-62,0,0,0.0749703 -4187,5604:123,-43,-62,0,0,0.0749703 -4188,5604:122,-42,-62,0,0,0.0749775 -4189,5604:121,-41,-62,0,0,0.0749775 -4190,5604:120,-40,-62,0,0,0.0749703 -4191,5603:229,-39,-62,0,0,0.0749703 -4192,5603:228,-38,-62,0,0,0.0749631 -4193,5603:227,-37,-62,0,0,0.0749631 -4194,5603:226,-36,-62,0,0,0.0749631 -4195,5603:225,-35,-62,0,0,0.0749631 -4196,5603:124,-34,-62,0,0,0.0749631 -4197,5603:123,-33,-62,0,0,0.0749631 -4198,5603:122,-32,-62,0,0,0.0749631 -4199,5603:121,-31,-62,0,0,0.0749703 -4200,5603:120,-30,-62,0,0,0.0749631 -4201,5602:229,-29,-62,0,0,0.0749631 -4202,5602:228,-28,-62,0,0,0.0749631 -4203,5602:227,-27,-62,0,0,0.0749631 -4204,5602:226,-26,-62,0,0,0.0749631 -4205,5602:225,-25,-62,0,0,0.0749631 -4206,5602:124,-24,-62,0,0,0.0749562 -4207,5602:123,-23,-62,0,0,0.074949 -4208,5602:122,-22,-62,0,0,0.074949 -4209,5602:121,-21,-62,0,0,0.0749346 -4210,5602:120,-20,-62,0,0,0.0749275 -4211,5601:229,-19,-62,0,0,0.0749205 -4212,5601:228,-18,-62,0,0,0.0749062 -4213,5601:227,-17,-62,0,0,0.074892 -4214,5601:226,-16,-62,0,0,0.0748777 -4215,5601:225,-15,-62,0,0,0.0748705 -4216,5601:124,-14,-62,0,0,0.0748705 -4217,5601:123,-13,-62,0,0,0.0748777 -4218,5601:122,-12,-62,0,0,0.0748777 -4219,5601:121,-11,-62,0,0,0.0748705 -4220,5601:120,-10,-62,0,0,0.0748705 -4221,5600:229,-9,-62,0,0,0.0748636 -4222,5600:228,-8,-62,0,0,0.0748636 -4223,5600:227,-7,-62,0,0,0.0748636 -4224,5600:226,-6,-62,0,0,0.0748705 -4225,5600:225,-5,-62,0,0,0.0748705 -4226,5600:124,-4,-62,0,0,0.0748564 -4227,5600:123,-3,-62,0,0,0.0748421 -4228,5600:122,-2,-62,0,0,0.0748349 -4229,5600:121,-1,-62,0,0,0.0748349 -4230,3600:121,0,-62,0,0,0.0748421 -4231,3600:121,1,-62,0,0,0.0748493 -4232,3600:122,2,-62,0,0,0.074828 -4233,3600:123,3,-62,0,0,0.0748349 -4234,3600:124,4,-62,0,0,0.074828 -4235,3600:225,5,-62,0,0,0.0748564 -4236,3600:226,6,-62,0,0,0.074828 -4237,3600:227,7,-62,0,0,0.0748421 -4238,3600:228,8,-62,0,0,0.0748564 -4239,3600:229,9,-62,0,0,0.0748705 -4240,3601:120,10,-62,0,0,0.0748777 -4241,3601:121,11,-62,0,0,0.0749133 -4242,3601:122,12,-62,0,0,0.0749205 -4243,3601:123,13,-62,0,0,0.0749205 -4244,3601:124,14,-62,0,0,0.0749133 -4245,3601:225,15,-62,0,0,0.0749133 -4246,3601:226,16,-62,0,0,0.0749133 -4247,3601:227,17,-62,0,0,0.0749062 -4248,3601:228,18,-62,0,0,0.0749062 -4249,3601:229,19,-62,0,0,0.0749062 -4250,3602:120,20,-62,0,0,0.074899 -4251,3602:121,21,-62,0,0,0.0749062 -4252,3602:122,22,-62,0,0,0.0749133 -4253,3602:123,23,-62,0,0,0.0749133 -4254,3602:124,24,-62,0,0,0.0749062 -4255,3602:225,25,-62,0,0,0.0749133 -4256,3602:226,26,-62,0,0,0.0749133 -4257,3602:227,27,-62,0,0,0.0749133 -4258,3602:228,28,-62,0,0,0.0749275 -4259,3602:229,29,-62,0,0,0.0749418 -4260,3603:120,30,-62,0,0,0.0749631 -4261,3603:121,31,-62,0,0,0.0749775 -4262,3603:122,32,-62,0,0,0.0749846 -4263,3603:123,33,-62,0,0,0.0750131 -4264,3603:124,34,-62,0,0,0.0750416 -4265,3603:225,35,-62,0,0,0.0750345 -4266,3603:226,36,-62,0,0,0.0749846 -4267,3603:227,37,-62,0,0,0.0749916 -4268,3603:228,38,-62,0,0,0.0749988 -4269,3603:229,39,-62,0,0,0.075006 -4270,3604:120,40,-62,0,0,0.0750201 -4271,3604:121,41,-62,0,0,0.0750131 -4272,3604:122,42,-62,0,0,0.0750131 -4273,3604:123,43,-62,0,0,0.0750201 -4274,3604:124,44,-62,0,0,0.0750201 -4275,3604:225,45,-62,0,0,0.075006 -4276,3604:226,46,-62,0,0,0.0749988 -4277,3604:227,47,-62,0,0,0.0766983 -4278,3604:228,48,-62,0,0,0.0794943 -4279,3605:120,50,-62,0,0,0.0826631 -4280,3605:228,58,-62,0,0,0.0752844 -4281,3605:229,59,-62,0,0,0.0751915 -4282,3606:120,60,-62,0,0,0.0751128 -4283,3606:121,61,-62,0,0,0.0752343 -4284,3606:122,62,-62,0,0,0.0756141 -4285,3606:123,63,-62,0,0,0.0759956 -4286,3606:124,64,-62,0,0,0.077063 -4287,3606:225,65,-62,0,0,0.0767567 -4288,3606:226,66,-62,0,0,0.0762918 -4289,3606:227,67,-62,0,0,0.0752631 -4290,3606:228,68,-62,0,0,0.0748849 -4291,3606:229,69,-62,0,0,0.0749631 -4292,3607:120,70,-62,0,0,0.0749846 -4293,3607:121,71,-62,0,0,0.0751059 -4294,3607:122,72,-62,0,0,0.0750558 -4295,3607:124,74,-62,0,0,0.0752415 -4296,3607:225,75,-62,0,0,0.0774584 -4297,3607:226,76,-62,0,0,0.0774439 -4298,3607:227,77,-62,0,0,0.077797 -4299,3607:228,78,-62,0,0,0.0788502 -4300,3607:229,79,-62,0,0,0.0791417 -4301,3608:120,80,-62,0,0,0.0805 -4302,3608:121,81,-62,0,0,0.0830691 -4303,3608:122,82,-62,0,0,0.0904737 -4304,3614:225,145,-62,0,0,0.0787978 -4305,3614:226,146,-62,0,0,0.0792615 -4306,3614:227,147,-62,0,0,0.0751128 -4307,3614:228,148,-62,0,0,0.07512 -4308,3614:229,149,-62,0,0,0.075063 -4309,3615:120,150,-62,0,0,0.0750702 -4310,3615:121,151,-62,0,0,0.0750773 -4311,3615:122,152,-62,0,0,0.0750915 -4312,3615:123,153,-62,0,0,0.0750773 -4313,3615:124,154,-62,0,0,0.0750773 -4314,3615:225,155,-62,0,0,0.075063 -4315,3615:226,156,-62,0,0,0.0750488 -4316,3615:227,157,-62,0,0,0.0750201 -4317,3615:228,158,-62,0,0,0.0749988 -4318,3615:229,159,-62,0,0,0.075006 -4319,3616:120,160,-62,0,0,0.0750201 -4320,3616:121,161,-62,0,0,0.0750131 -4321,3616:122,162,-62,0,0,0.075006 -4322,3616:123,163,-62,0,0,0.075006 -4323,3616:124,164,-62,0,0,0.0750345 -4324,3616:225,165,-62,0,0,0.0750416 -4325,3616:226,166,-62,0,0,0.0750488 -4326,3616:227,167,-62,0,0,0.0750488 -4327,3616:228,168,-62,0,0,0.0750416 -4328,3616:229,169,-62,0,0,0.0750345 -4329,3617:120,170,-62,0,0,0.0750273 -4330,3617:121,171,-62,0,0,0.0750345 -4331,3617:122,172,-62,0,0,0.0750416 -4332,3617:123,173,-62,0,0,0.0750416 -4333,3617:124,174,-62,0,0,0.0750416 -4334,3617:225,175,-62,0,0,0.0750345 -4335,3617:226,176,-62,0,0,0.0750273 -4336,3617:227,177,-62,0,0,0.0750273 -4337,3617:228,178,-62,0,0,0.0750488 -4338,3617:229,179,-62,0,0,0.0750488 -4339,3618:120,180,-62,0,0,0.0750416 -4340,5618:110,-180,-61,0,0,0.075063 -4341,5617:219,-179,-61,0,0,0.07512 -4342,5617:218,-178,-61,0,0,0.0752986 -4343,5617:217,-177,-61,0,0,0.0757507 -4344,5617:216,-176,-61,0,0,0.0755854 -4345,5617:215,-175,-61,0,0,0.0752916 -4346,5617:114,-174,-61,0,0,0.0750702 -4347,5617:113,-173,-61,0,0,0.075063 -4348,5617:112,-172,-61,0,0,0.0750416 -4349,5617:111,-171,-61,0,0,0.0750273 -4350,5617:110,-170,-61,0,0,0.0750131 -4351,5616:219,-169,-61,0,0,0.075006 -4352,5616:218,-168,-61,0,0,0.0749988 -4353,5616:217,-167,-61,0,0,0.0749988 -4354,5616:216,-166,-61,0,0,0.075006 -4355,5616:215,-165,-61,0,0,0.0750131 -4356,5616:114,-164,-61,0,0,0.0750201 -4357,5616:113,-163,-61,0,0,0.0750345 -4358,5616:112,-162,-61,0,0,0.0750488 -4359,5616:111,-161,-61,0,0,0.0750558 -4360,5616:110,-160,-61,0,0,0.0750702 -4361,5615:219,-159,-61,0,0,0.0750773 -4362,5615:218,-158,-61,0,0,0.0750843 -4363,5615:217,-157,-61,0,0,0.0750843 -4364,5615:216,-156,-61,0,0,0.0750915 -4365,5615:215,-155,-61,0,0,0.0751558 -4366,5615:114,-154,-61,0,0,0.0752631 -4367,5615:113,-153,-61,0,0,0.0752916 -4368,5615:112,-152,-61,0,0,0.0752273 -4369,5615:111,-151,-61,0,0,0.0751915 -4370,5615:110,-150,-61,0,0,0.0752487 -4371,5614:219,-149,-61,0,0,0.0754779 -4372,5614:218,-148,-61,0,0,0.0753489 -4373,5614:217,-147,-61,0,0,0.0754921 -4374,5614:216,-146,-61,0,0,0.0758298 -4375,5614:215,-145,-61,0,0,0.0765457 -4376,5614:114,-144,-61,0,0,0.0781588 -4377,5614:113,-143,-61,0,0,0.0796523 -4378,5614:112,-142,-61,0,0,0.0805761 -4379,5614:111,-141,-61,0,0,0.0809803 -4380,5614:110,-140,-61,0,0,0.0814787 -4381,5613:219,-139,-61,0,0,0.0810646 -4382,5613:218,-138,-61,0,0,0.082593 -4383,5613:217,-137,-61,0,0,0.0850864 -4384,5613:216,-136,-61,0,0,0.0848468 -4385,5613:215,-135,-61,0,0,0.0847113 -4386,5613:114,-134,-61,0,0,0.0870421 -4387,5613:113,-133,-61,0,0,0.0873121 -4388,5613:112,-132,-61,0,0,0.0861402 -4389,5613:111,-131,-61,0,0,0.0817483 -4390,5613:110,-130,-61,0,0,0.082819 -4391,5612:219,-129,-61,0,0,0.0875743 -4392,5612:218,-128,-61,0,0,0.0855195 -4393,5612:217,-127,-61,0,0,0.0855756 -4394,5612:216,-126,-61,0,0,0.0850225 -4395,5612:215,-125,-61,0,0,0.0828892 -4396,5612:114,-124,-61,0,0,0.0830064 -4397,5612:113,-123,-61,0,0,0.0907447 -4398,5612:112,-122,-61,0,0,0.092627 -4399,5612:111,-121,-61,0,0,0.0867893 -4400,5612:110,-120,-61,0,0,0.0863913 -4401,5611:219,-119,-61,0,0,0.0897912 -4402,5611:218,-118,-61,0,0,0.090626 -4403,5611:217,-117,-61,0,0,0.0855837 -4404,5611:216,-116,-61,0,0,0.0881755 -4405,5611:215,-115,-61,0,0,0.0911184 -4406,5611:114,-114,-61,0,0,0.0909399 -4407,5611:113,-113,-61,0,0,0.0931205 -4408,5611:112,-112,-61,0,0,0.0903556 -4409,5611:111,-111,-61,0,0,0.0860997 -4410,5611:110,-110,-61,0,0,0.0860432 -4411,5610:219,-109,-61,0,0,0.086132 -4412,5610:218,-108,-61,0,0,0.0852548 -4413,5610:217,-107,-61,0,0,0.0890384 -4414,5610:216,-106,-61,0,0,0.090533 -4415,5610:215,-105,-61,0,0,0.0857849 -4416,5610:114,-104,-61,0,0,0.0862617 -4417,5610:113,-103,-61,0,0,0.0854793 -4418,5610:112,-102,-61,0,0,0.0835869 -4419,5610:111,-101,-61,0,0,0.0823363 -4420,5610:110,-100,-61,0,0,0.079007 -4421,5609:219,-99,-61,0,0,0.0764296 -4422,5609:218,-98,-61,0,0,0.077297 -4423,5609:217,-97,-61,0,0,0.0780184 -4424,5609:216,-96,-61,0,0,0.0777158 -4425,5609:215,-95,-61,0,0,0.0758298 -4426,5609:114,-94,-61,0,0,0.0769168 -4427,5609:113,-93,-61,0,0,0.0765384 -4428,5609:112,-92,-61,0,0,0.0754203 -4429,5609:111,-91,-61,0,0,0.0755998 -4430,5609:110,-90,-61,0,0,0.0759668 -4431,5608:219,-89,-61,0,0,0.0773485 -4432,5608:218,-88,-61,0,0,0.0854151 -4433,5608:217,-87,-61,0,0,0.0874924 -4434,5608:216,-86,-61,0,0,0.0807817 -4435,5608:215,-85,-61,0,0,0.0769973 -4436,5608:114,-84,-61,0,0,0.0758225 -4437,5608:113,-83,-61,0,0,0.0756932 -4438,5608:112,-82,-61,0,0,0.0762267 -4439,5608:111,-81,-61,0,0,0.0762196 -4440,5608:110,-80,-61,0,0,0.0758946 -4441,5607:219,-79,-61,0,0,0.0758443 -4442,5607:218,-78,-61,0,0,0.0760245 -4443,5607:217,-77,-61,0,0,0.0765893 -4444,5607:216,-76,-61,0,0,0.0770338 -4445,5607:215,-75,-61,0,0,0.0768514 -4446,5607:114,-74,-61,0,0,0.0789397 -4447,5607:113,-73,-61,0,0,0.0826319 -4448,5607:112,-72,-61,0,0,0.0796146 -4449,5607:111,-71,-61,0,0,0.0780184 -4450,5607:110,-70,-61,0,0,0.0775613 -4451,5606:219,-69,-61,0,0,0.0772899 -4452,5606:218,-68,-61,0,0,0.0771215 -4453,5606:217,-67,-61,0,0,0.0806293 -4454,5606:110,-60,-61,0,0,0.0801433 -4455,5605:219,-59,-61,0,0,0.0774806 -4456,5605:218,-58,-61,0,0,0.0753344 -4457,5605:217,-57,-61,0,0,0.0752631 -4458,5605:216,-56,-61,0,0,0.0751915 -4459,5605:215,-55,-61,0,0,0.0750915 -4460,5605:114,-54,-61,0,0,0.0750416 -4461,5605:113,-53,-61,0,0,0.0750416 -4462,5605:112,-52,-61,0,0,0.0750201 -4463,5605:111,-51,-61,0,0,0.0749988 -4464,5605:110,-50,-61,0,0,0.0749846 -4465,5604:219,-49,-61,0,0,0.0749775 -4466,5604:218,-48,-61,0,0,0.0749775 -4467,5604:217,-47,-61,0,0,0.0749631 -4468,5604:216,-46,-61,0,0,0.0749703 -4469,5604:215,-45,-61,0,0,0.0749775 -4470,5604:114,-44,-61,0,0,0.0749775 -4471,5604:113,-43,-61,0,0,0.0749703 -4472,5604:112,-42,-61,0,0,0.0749703 -4473,5604:111,-41,-61,0,0,0.0749703 -4474,5604:110,-40,-61,0,0,0.0749703 -4475,5603:219,-39,-61,0,0,0.0749703 -4476,5603:218,-38,-61,0,0,0.0749703 -4477,5603:217,-37,-61,0,0,0.0749703 -4478,5603:216,-36,-61,0,0,0.0749703 -4479,5603:215,-35,-61,0,0,0.0749703 -4480,5603:114,-34,-61,0,0,0.0749703 -4481,5603:113,-33,-61,0,0,0.0749703 -4482,5603:112,-32,-61,0,0,0.0749703 -4483,5603:111,-31,-61,0,0,0.0749703 -4484,5603:110,-30,-61,0,0,0.0749703 -4485,5602:219,-29,-61,0,0,0.0749703 -4486,5602:218,-28,-61,0,0,0.0749703 -4487,5602:217,-27,-61,0,0,0.0749703 -4488,5602:216,-26,-61,0,0,0.0749631 -4489,5602:215,-25,-61,0,0,0.0749631 -4490,5602:114,-24,-61,0,0,0.0749562 -4491,5602:113,-23,-61,0,0,0.0749562 -4492,5602:112,-22,-61,0,0,0.0749418 -4493,5602:111,-21,-61,0,0,0.0749346 -4494,5602:110,-20,-61,0,0,0.0749275 -4495,5601:219,-19,-61,0,0,0.0749205 -4496,5601:218,-18,-61,0,0,0.0749062 -4497,5601:217,-17,-61,0,0,0.074892 -4498,5601:216,-16,-61,0,0,0.0748705 -4499,5601:215,-15,-61,0,0,0.0748636 -4500,5601:114,-14,-61,0,0,0.0748705 -4501,5601:113,-13,-61,0,0,0.0748705 -4502,5601:112,-12,-61,0,0,0.0748705 -4503,5601:111,-11,-61,0,0,0.0748636 -4504,5601:110,-10,-61,0,0,0.0748705 -4505,5600:219,-9,-61,0,0,0.0748705 -4506,5600:218,-8,-61,0,0,0.0748705 -4507,5600:217,-7,-61,0,0,0.0748636 -4508,5600:216,-6,-61,0,0,0.0748636 -4509,5600:215,-5,-61,0,0,0.0748777 -4510,5600:114,-4,-61,0,0,0.0748777 -4511,5600:113,-3,-61,0,0,0.0748705 -4512,5600:112,-2,-61,0,0,0.0748636 -4513,5600:111,-1,-61,0,0,0.0748636 -4514,3600:111,0,-61,0,0,0.0748636 -4515,3600:111,1,-61,0,0,0.0748564 -4516,3600:112,2,-61,0,0,0.0748493 -4517,3600:113,3,-61,0,0,0.0748493 -4518,3600:114,4,-61,0,0,0.0748421 -4519,3600:215,5,-61,0,0,0.0748705 -4520,3600:216,6,-61,0,0,0.0748564 -4521,3600:217,7,-61,0,0,0.0748493 -4522,3600:218,8,-61,0,0,0.0748493 -4523,3600:219,9,-61,0,0,0.0748636 -4524,3601:110,10,-61,0,0,0.0748705 -4525,3601:111,11,-61,0,0,0.0748849 -4526,3601:112,12,-61,0,0,0.0748777 -4527,3601:113,13,-61,0,0,0.0748777 -4528,3601:114,14,-61,0,0,0.0748777 -4529,3601:215,15,-61,0,0,0.074892 -4530,3601:216,16,-61,0,0,0.074899 -4531,3601:217,17,-61,0,0,0.074892 -4532,3601:218,18,-61,0,0,0.0748705 -4533,3601:219,19,-61,0,0,0.0748564 -4534,3602:110,20,-61,0,0,0.0748636 -4535,3602:111,21,-61,0,0,0.0748564 -4536,3602:112,22,-61,0,0,0.0748636 -4537,3602:113,23,-61,0,0,0.0748705 -4538,3602:114,24,-61,0,0,0.0748777 -4539,3602:215,25,-61,0,0,0.074892 -4540,3602:216,26,-61,0,0,0.074892 -4541,3602:217,27,-61,0,0,0.074899 -4542,3602:218,28,-61,0,0,0.0749205 -4543,3602:219,29,-61,0,0,0.0749205 -4544,3603:110,30,-61,0,0,0.0749346 -4545,3603:111,31,-61,0,0,0.074949 -4546,3603:112,32,-61,0,0,0.0749562 -4547,3603:113,33,-61,0,0,0.0749703 -4548,3603:114,34,-61,0,0,0.0750273 -4549,3603:215,35,-61,0,0,0.0749775 -4550,3603:216,36,-61,0,0,0.0749775 -4551,3603:217,37,-61,0,0,0.0749703 -4552,3603:218,38,-61,0,0,0.0749775 -4553,3603:219,39,-61,0,0,0.0749703 -4554,3604:110,40,-61,0,0,0.0749775 -4555,3604:111,41,-61,0,0,0.0749916 -4556,3604:112,42,-61,0,0,0.0749846 -4557,3604:113,43,-61,0,0,0.0749846 -4558,3604:114,44,-61,0,0,0.0749916 -4559,3604:215,45,-61,0,0,0.0750131 -4560,3604:216,46,-61,0,0,0.075006 -4561,3604:217,47,-61,0,0,0.075006 -4562,3604:218,48,-61,0,0,0.0750201 -4563,3604:219,49,-61,0,0,0.0751128 -4564,3605:110,50,-61,0,0,0.0749275 -4565,3605:217,57,-61,0,0,0.0752343 -4566,3605:218,58,-61,0,0,0.0752129 -4567,3605:219,59,-61,0,0,0.0751128 -4568,3606:110,60,-61,0,0,0.0751128 -4569,3606:111,61,-61,0,0,0.0750416 -4570,3606:112,62,-61,0,0,0.0749916 -4571,3606:113,63,-61,0,0,0.0749775 -4572,3606:114,64,-61,0,0,0.0749062 -4573,3606:215,65,-61,0,0,0.0749205 -4574,3606:216,66,-61,0,0,0.0749205 -4575,3606:217,67,-61,0,0,0.0749346 -4576,3606:218,68,-61,0,0,0.0749418 -4577,3606:219,69,-61,0,0,0.074949 -4578,3607:110,70,-61,0,0,0.074949 -4579,3607:111,71,-61,0,0,0.0749418 -4580,3607:112,72,-61,0,0,0.0749418 -4581,3607:114,74,-61,0,0,0.075722 -4582,3607:215,75,-61,0,0,0.074949 -4583,3607:216,76,-61,0,0,0.0749346 -4584,3607:217,77,-61,0,0,0.0751059 -4585,3607:218,78,-61,0,0,0.0749062 -4586,3607:219,79,-61,0,0,0.0749346 -4587,3608:110,80,-61,0,0,0.0749346 -4588,3608:111,81,-61,0,0,0.0752772 -4589,3608:113,83,-61,0,0,0.0753847 -4590,3608:219,89,-61,0,0,0.0753344 -4591,3609:110,90,-61,0,0,0.0753489 -4592,3609:111,91,-61,0,0,0.0756068 -4593,3609:112,92,-61,0,0,0.0771215 -4594,3609:113,93,-61,0,0,0.0784555 -4595,3609:114,94,-61,0,0,0.0869034 -4596,3610:218,108,-61,0,0,0.0750488 -4597,3610:219,109,-61,0,0,0.0792915 -4598,3611:110,110,-61,0,0,0.0853428 -4599,3611:215,115,-61,0,0,0.0755352 -4600,3611:217,117,-61,0,0,0.0753775 -4601,3611:218,118,-61,0,0,0.0751558 -4602,3611:219,119,-61,0,0,0.0750773 -4603,3612:110,120,-61,0,0,0.0750488 -4604,3612:111,121,-61,0,0,0.0751486 -4605,3612:112,122,-61,0,0,0.0752343 -4606,3612:113,123,-61,0,0,0.0750416 -4607,3612:217,127,-61,0,0,0.0802948 -4608,3612:218,128,-61,0,0,0.0803859 -4609,3612:219,129,-61,0,0,0.0774658 -4610,3613:110,130,-61,0,0,0.0819568 -4611,3613:219,139,-61,0,0,0.0893055 -4612,3614:110,140,-61,0,0,0.0890384 -4613,3614:111,141,-61,0,0,0.0883988 -4614,3614:112,142,-61,0,0,0.0878458 -4615,3614:113,143,-61,0,0,0.0862454 -4616,3614:114,144,-61,0,0,0.0871566 -4617,3614:215,145,-61,0,0,0.0834139 -4618,3614:216,146,-61,0,0,0.0768076 -4619,3614:217,147,-61,0,0,0.0752201 -4620,3614:218,148,-61,0,0,0.0750702 -4621,3614:219,149,-61,0,0,0.0750416 -4622,3615:110,150,-61,0,0,0.0750416 -4623,3615:111,151,-61,0,0,0.0750488 -4624,3615:112,152,-61,0,0,0.0750416 -4625,3615:113,153,-61,0,0,0.0750201 -4626,3615:114,154,-61,0,0,0.075006 -4627,3615:215,155,-61,0,0,0.0749916 -4628,3615:216,156,-61,0,0,0.0749846 -4629,3615:217,157,-61,0,0,0.0749916 -4630,3615:218,158,-61,0,0,0.0750131 -4631,3615:219,159,-61,0,0,0.0750345 -4632,3616:110,160,-61,0,0,0.0750131 -4633,3616:111,161,-61,0,0,0.0749703 -4634,3616:112,162,-61,0,0,0.0749205 -4635,3616:113,163,-61,0,0,0.075063 -4636,3616:114,164,-61,0,0,0.0750488 -4637,3616:215,165,-61,0,0,0.0750345 -4638,3616:216,166,-61,0,0,0.0750558 -4639,3616:217,167,-61,0,0,0.0750488 -4640,3616:218,168,-61,0,0,0.0750345 -4641,3616:219,169,-61,0,0,0.0750273 -4642,3617:110,170,-61,0,0,0.0750345 -4643,3617:111,171,-61,0,0,0.0750488 -4644,3617:112,172,-61,0,0,0.0750488 -4645,3617:113,173,-61,0,0,0.0750416 -4646,3617:114,174,-61,0,0,0.0750416 -4647,3617:215,175,-61,0,0,0.0750201 -4648,3617:216,176,-61,0,0,0.0750201 -4649,3617:217,177,-61,0,0,0.0750345 -4650,3617:218,178,-61,0,0,0.0750416 -4651,3617:219,179,-61,0,0,0.0750488 -4652,3618:110,180,-61,0,0,0.075063 -4653,5618:100,-180,-60,0,0,0.0751701 -4654,5617:209,-179,-60,0,0,0.075729 -4655,5617:208,-178,-60,0,0,0.0763789 -4656,5617:207,-177,-60,0,0,0.0755781 -4657,5617:206,-176,-60,0,0,0.0756068 -4658,5617:205,-175,-60,0,0,0.0756932 -4659,5617:104,-174,-60,0,0,0.0753703 -4660,5617:103,-173,-60,0,0,0.0751416 -4661,5617:102,-172,-60,0,0,0.0750702 -4662,5617:101,-171,-60,0,0,0.0750488 -4663,5617:100,-170,-60,0,0,0.0750273 -4664,5616:209,-169,-60,0,0,0.0750201 -4665,5616:208,-168,-60,0,0,0.0750131 -4666,5616:207,-167,-60,0,0,0.0750131 -4667,5616:206,-166,-60,0,0,0.075006 -4668,5616:205,-165,-60,0,0,0.0751558 -4669,5616:104,-164,-60,0,0,0.0753489 -4670,5616:103,-163,-60,0,0,0.0750488 -4671,5616:102,-162,-60,0,0,0.0750416 -4672,5616:101,-161,-60,0,0,0.0750558 -4673,5616:100,-160,-60,0,0,0.0751059 -4674,5615:209,-159,-60,0,0,0.0753703 -4675,5615:208,-158,-60,0,0,0.0757937 -4676,5615:207,-157,-60,0,0,0.0766184 -4677,5615:206,-156,-60,0,0,0.0773118 -4678,5615:205,-155,-60,0,0,0.0774952 -4679,5615:104,-154,-60,0,0,0.077657 -4680,5615:103,-153,-60,0,0,0.078783 -4681,5615:102,-152,-60,0,0,0.0799844 -4682,5615:101,-151,-60,0,0,0.0774145 -4683,5615:100,-150,-60,0,0,0.0783515 -4684,5614:209,-149,-60,0,0,0.0816789 -4685,5614:208,-148,-60,0,0,0.079374 -4686,5614:207,-147,-60,0,0,0.0785371 -4687,5614:206,-146,-60,0,0,0.0794342 -4688,5614:205,-145,-60,0,0,0.0803175 -4689,5614:104,-144,-60,0,0,0.0832023 -4690,5614:103,-143,-60,0,0,0.0842505 -4691,5614:102,-142,-60,0,0,0.0829596 -4692,5614:101,-141,-60,0,0,0.0832099 -4693,5614:100,-140,-60,0,0,0.0830455 -4694,5613:209,-139,-60,0,0,0.0818717 -4695,5613:208,-138,-60,0,0,0.0832884 -4696,5613:207,-137,-60,0,0,0.0859382 -4697,5613:206,-136,-60,0,0,0.0842505 -4698,5613:205,-135,-60,0,0,0.0849906 -4699,5613:104,-134,-60,0,0,0.0876811 -4700,5613:103,-133,-60,0,0,0.0903893 -4701,5613:102,-132,-60,0,0,0.0916986 -4702,5613:101,-131,-60,0,0,0.0872464 -4703,5613:100,-130,-60,0,0,0.0853348 -4704,5612:209,-129,-60,0,0,0.0891885 -4705,5612:208,-128,-60,0,0,0.088465 -4706,5612:207,-127,-60,0,0,0.0868383 -4707,5612:206,-126,-60,0,0,0.084831 -4708,5612:205,-125,-60,0,0,0.085624 -4709,5612:104,-124,-60,0,0,0.0901699 -4710,5612:103,-123,-60,0,0,0.0965957 -4711,5612:102,-122,-60,0,0,0.0970269 -4712,5612:101,-121,-60,0,0,0.0968562 -4713,5612:100,-120,-60,0,0,0.0966137 -4714,5611:209,-119,-60,0,0,0.0969459 -4715,5611:208,-118,-60,0,0,0.0979491 -4716,5611:207,-117,-60,0,0,0.0976951 -4717,5611:206,-116,-60,0,0,0.0945267 -4718,5611:205,-115,-60,0,0,0.0911013 -4719,5611:104,-114,-60,0,0,0.0927135 -4720,5611:103,-113,-60,0,0,0.0949233 -4721,5611:102,-112,-60,0,0,0.0957562 -4722,5611:101,-111,-60,0,0,0.0957296 -4723,5611:100,-110,-60,0,0,0.0949055 -4724,5610:209,-109,-60,0,0,0.0953833 -4725,5610:208,-108,-60,0,0,0.0957652 -4726,5610:207,-107,-60,0,0,0.0945707 -4727,5610:206,-106,-60,0,0,0.0902373 -4728,5610:205,-105,-60,0,0,0.0951441 -4729,5610:104,-104,-60,0,0,0.0989888 -4730,5610:103,-103,-60,0,0,0.090533 -4731,5610:102,-102,-60,0,0,0.0855756 -4732,5610:101,-101,-60,0,0,0.083257 -4733,5610:100,-100,-60,0,0,0.082414 -4734,5609:209,-99,-60,0,0,0.0842585 -4735,5609:208,-98,-60,0,0,0.088349 -4736,5609:207,-97,-60,0,0,0.0862859 -4737,5609:206,-96,-60,0,0,0.0785744 -4738,5609:205,-95,-60,0,0,0.0778634 -4739,5609:104,-94,-60,0,0,0.0809192 -4740,5609:103,-93,-60,0,0,0.0830925 -4741,5609:102,-92,-60,0,0,0.0836814 -4742,5609:101,-91,-60,0,0,0.0849825 -4743,5609:100,-90,-60,0,0,0.0871975 -4744,5608:209,-89,-60,0,0,0.0871648 -4745,5608:208,-88,-60,0,0,0.0885149 -4746,5608:207,-87,-60,0,0,0.0921703 -4747,5608:206,-86,-60,0,0,0.0874103 -4748,5608:205,-85,-60,0,0,0.0789322 -4749,5608:104,-84,-60,0,0,0.0759668 -4750,5608:103,-83,-60,0,0,0.0763354 -4751,5608:102,-82,-60,0,0,0.0761111 -4752,5608:101,-81,-60,0,0,0.0761761 -4753,5608:100,-80,-60,0,0,0.0754849 -4754,5607:209,-79,-60,0,0,0.0757147 -4755,5607:208,-78,-60,0,0,0.0786266 -4756,5607:207,-77,-60,0,0,0.0835399 -4757,5607:206,-76,-60,0,0,0.0795921 -4758,5607:205,-75,-60,0,0,0.0792691 -4759,5607:104,-74,-60,0,0,0.0847113 -4760,5607:103,-73,-60,0,0,0.089699 -4761,5607:102,-72,-60,0,0,0.0860837 -4762,5607:101,-71,-60,0,0,0.0802948 -4763,5607:100,-70,-60,0,0,0.0785968 -4764,5606:209,-69,-60,0,0,0.0780922 -4765,5606:208,-68,-60,0,0,0.0777601 -4766,5606:207,-67,-60,0,0,0.078463 -4767,5606:205,-65,-60,0,0,0.0924201 -4768,5606:100,-60,-60,0,0,0.0801736 -4769,5605:209,-59,-60,0,0,0.0795168 -4770,5605:208,-58,-60,0,0,0.0775026 -4771,5605:207,-57,-60,0,0,0.075313 -4772,5605:206,-56,-60,0,0,0.0752559 -4773,5605:205,-55,-60,0,0,0.0751701 -4774,5605:104,-54,-60,0,0,0.0750558 -4775,5605:103,-53,-60,0,0,0.0750345 -4776,5605:102,-52,-60,0,0,0.0750345 -4777,5605:101,-51,-60,0,0,0.0749988 -4778,5605:100,-50,-60,0,0,0.0749846 -4779,5604:209,-49,-60,0,0,0.0749846 -4780,5604:208,-48,-60,0,0,0.0749703 -4781,5604:207,-47,-60,0,0,0.0749703 -4782,5604:206,-46,-60,0,0,0.0749703 -4783,5604:205,-45,-60,0,0,0.0749631 -4784,5604:104,-44,-60,0,0,0.0749631 -4785,5604:103,-43,-60,0,0,0.0749631 -4786,5604:102,-42,-60,0,0,0.0749631 -4787,5604:101,-41,-60,0,0,0.0749631 -4788,5604:100,-40,-60,0,0,0.0749703 -4789,5603:209,-39,-60,0,0,0.0749703 -4790,5603:208,-38,-60,0,0,0.0749703 -4791,5603:207,-37,-60,0,0,0.0749703 -4792,5603:206,-36,-60,0,0,0.0749703 -4793,5603:205,-35,-60,0,0,0.0749703 -4794,5603:104,-34,-60,0,0,0.0749703 -4795,5603:103,-33,-60,0,0,0.0749703 -4796,5603:102,-32,-60,0,0,0.0749703 -4797,5603:101,-31,-60,0,0,0.0749775 -4798,5603:100,-30,-60,0,0,0.0749775 -4799,5602:209,-29,-60,0,0,0.0749703 -4800,5602:208,-28,-60,0,0,0.0749703 -4801,5602:207,-27,-60,0,0,0.0749631 -4802,5602:206,-26,-60,0,0,0.0749631 -4803,5602:205,-25,-60,0,0,0.0749631 -4804,5602:104,-24,-60,0,0,0.0749562 -4805,5602:103,-23,-60,0,0,0.074949 -4806,5602:102,-22,-60,0,0,0.0749418 -4807,5602:101,-21,-60,0,0,0.0749346 -4808,5602:100,-20,-60,0,0,0.0749275 -4809,5601:209,-19,-60,0,0,0.0749205 -4810,5601:208,-18,-60,0,0,0.0749062 -4811,5601:207,-17,-60,0,0,0.074892 -4812,5601:206,-16,-60,0,0,0.0748777 -4813,5601:205,-15,-60,0,0,0.0748636 -4814,5601:104,-14,-60,0,0,0.0748636 -4815,5601:103,-13,-60,0,0,0.0748705 -4816,5601:102,-12,-60,0,0,0.0748636 -4817,5601:101,-11,-60,0,0,0.0748564 -4818,5601:100,-10,-60,0,0,0.0748564 -4819,5600:209,-9,-60,0,0,0.0748636 -4820,5600:208,-8,-60,0,0,0.0748705 -4821,5600:207,-7,-60,0,0,0.0748636 -4822,5600:206,-6,-60,0,0,0.0748564 -4823,5600:205,-5,-60,0,0,0.0748564 -4824,5600:104,-4,-60,0,0,0.0748636 -4825,5600:103,-3,-60,0,0,0.0748636 -4826,5600:102,-2,-60,0,0,0.0748636 -4827,5600:101,-1,-60,0,0,0.0748705 -4828,3600:101,0,-60,0,0,0.0748777 -4829,3600:101,1,-60,0,0,0.0748636 -4830,3600:102,2,-60,0,0,0.0748636 -4831,3600:103,3,-60,0,0,0.0748636 -4832,3600:104,4,-60,0,0,0.0748705 -4833,3600:205,5,-60,0,0,0.0748705 -4834,3600:206,6,-60,0,0,0.0748777 -4835,3600:207,7,-60,0,0,0.0748777 -4836,3600:208,8,-60,0,0,0.0748705 -4837,3600:209,9,-60,0,0,0.0748636 -4838,3601:100,10,-60,0,0,0.0748564 -4839,3601:101,11,-60,0,0,0.0748636 -4840,3601:102,12,-60,0,0,0.0748564 -4841,3601:103,13,-60,0,0,0.0748705 -4842,3601:104,14,-60,0,0,0.0748777 -4843,3601:205,15,-60,0,0,0.0748636 -4844,3601:206,16,-60,0,0,0.0748636 -4845,3601:207,17,-60,0,0,0.0748636 -4846,3601:208,18,-60,0,0,0.0748493 -4847,3601:209,19,-60,0,0,0.074828 -4848,3602:100,20,-60,0,0,0.0748349 -4849,3602:101,21,-60,0,0,0.0748421 -4850,3602:102,22,-60,0,0,0.0748421 -4851,3602:103,23,-60,0,0,0.0748493 -4852,3602:104,24,-60,0,0,0.0748564 -4853,3602:205,25,-60,0,0,0.0748636 -4854,3602:206,26,-60,0,0,0.0748777 -4855,3602:207,27,-60,0,0,0.074892 -4856,3602:208,28,-60,0,0,0.0749133 -4857,3602:209,29,-60,0,0,0.0749205 -4858,3603:100,30,-60,0,0,0.0748849 -4859,3603:101,31,-60,0,0,0.0748636 -4860,3603:102,32,-60,0,0,0.0749205 -4861,3603:103,33,-60,0,0,0.0749562 -4862,3603:104,34,-60,0,0,0.0749916 -4863,3603:205,35,-60,0,0,0.0749703 -4864,3603:206,36,-60,0,0,0.0749418 -4865,3603:207,37,-60,0,0,0.0749205 -4866,3603:208,38,-60,0,0,0.0749133 -4867,3603:209,39,-60,0,0,0.074892 -4868,3604:100,40,-60,0,0,0.074899 -4869,3604:101,41,-60,0,0,0.0749275 -4870,3604:102,42,-60,0,0,0.0749418 -4871,3604:103,43,-60,0,0,0.0749916 -4872,3604:104,44,-60,0,0,0.0749846 -4873,3604:205,45,-60,0,0,0.0749916 -4874,3604:206,46,-60,0,0,0.0750131 -4875,3604:207,47,-60,0,0,0.0750416 -4876,3604:208,48,-60,0,0,0.0750558 -4877,3604:209,49,-60,0,0,0.0750773 -4878,3605:100,50,-60,0,0,0.0750773 -4879,3605:101,51,-60,0,0,0.0750843 -4880,3605:102,52,-60,0,0,0.0750915 -4881,3605:103,53,-60,0,0,0.0750488 -4882,3605:104,54,-60,0,0,0.0750273 -4883,3605:205,55,-60,0,0,0.0751128 -4884,3605:206,56,-60,0,0,0.0751558 -4885,3605:207,57,-60,0,0,0.0751344 -4886,3605:208,58,-60,0,0,0.0751128 -4887,3605:209,59,-60,0,0,0.0750843 -4888,3606:100,60,-60,0,0,0.0750201 -4889,3606:101,61,-60,0,0,0.0749916 -4890,3606:102,62,-60,0,0,0.0749988 -4891,3606:103,63,-60,0,0,0.0749988 -4892,3606:104,64,-60,0,0,0.0749703 -4893,3606:205,65,-60,0,0,0.074949 -4894,3606:206,66,-60,0,0,0.0749562 -4895,3606:207,67,-60,0,0,0.0749346 -4896,3606:208,68,-60,0,0,0.074949 -4897,3606:209,69,-60,0,0,0.074949 -4898,3607:100,70,-60,0,0,0.0749418 -4899,3607:101,71,-60,0,0,0.0749346 -4900,3607:102,72,-60,0,0,0.074949 -4901,3607:104,74,-60,0,0,0.0750131 -4902,3607:205,75,-60,0,0,0.0749631 -4903,3607:206,76,-60,0,0,0.0749418 -4904,3607:207,77,-60,0,0,0.074949 -4905,3607:208,78,-60,0,0,0.074949 -4906,3607:209,79,-60,0,0,0.0749631 -4907,3608:100,80,-60,0,0,0.0749846 -4908,3608:101,81,-60,0,0,0.0750345 -4909,3608:102,82,-60,0,0,0.07512 -4910,3608:103,83,-60,0,0,0.0751416 -4911,3608:104,84,-60,0,0,0.0751128 -4912,3608:205,85,-60,0,0,0.0751272 -4913,3608:206,86,-60,0,0,0.0751272 -4914,3608:207,87,-60,0,0,0.07512 -4915,3608:208,88,-60,0,0,0.07512 -4916,3608:209,89,-60,0,0,0.0750843 -4917,3609:100,90,-60,0,0,0.0750773 -4918,3609:101,91,-60,0,0,0.0750558 -4919,3609:102,92,-60,0,0,0.0750558 -4920,3609:103,93,-60,0,0,0.0750488 -4921,3609:104,94,-60,0,0,0.0750488 -4922,3609:205,95,-60,0,0,0.0770704 -4923,3610:205,105,-60,0,0,0.075313 -4924,3610:206,106,-60,0,0,0.0752343 -4925,3610:207,107,-60,0,0,0.0751059 -4926,3610:208,108,-60,0,0,0.0749562 -4927,3610:209,109,-60,0,0,0.074899 -4928,3611:100,110,-60,0,0,0.0749703 -4929,3611:101,111,-60,0,0,0.0750915 -4930,3611:102,112,-60,0,0,0.0750773 -4931,3611:104,114,-60,0,0,0.0753703 -4932,3611:205,115,-60,0,0,0.0752343 -4933,3611:206,116,-60,0,0,0.0751059 -4934,3611:207,117,-60,0,0,0.0751059 -4935,3611:208,118,-60,0,0,0.0750915 -4936,3611:209,119,-60,0,0,0.075063 -4937,3612:100,120,-60,0,0,0.0749916 -4938,3612:101,121,-60,0,0,0.075006 -4939,3612:102,122,-60,0,0,0.0750843 -4940,3612:103,123,-60,0,0,0.0750488 -4941,3612:104,124,-60,0,0,0.0749988 -4942,3612:205,125,-60,0,0,0.0749846 -4943,3612:206,126,-60,0,0,0.0749775 -4944,3612:207,127,-60,0,0,0.0749703 -4945,3612:208,128,-60,0,0,0.0753631 -4946,3612:209,129,-60,0,0,0.0751416 -4947,3613:100,130,-60,0,0,0.0752415 -4948,3613:101,131,-60,0,0,0.0760679 -4949,3613:102,132,-60,0,0,0.0790816 -4950,3613:103,133,-60,0,0,0.082858 -4951,3613:104,134,-60,0,0,0.0856321 -4952,3613:206,136,-60,0,0,0.0754779 -4953,3613:207,137,-60,0,0,0.075722 -4954,3613:208,138,-60,0,0,0.0787532 -4955,3613:209,139,-60,0,0,0.0811794 -4956,3614:100,140,-60,0,0,0.0817097 -4957,3614:101,141,-60,0,0,0.0829596 -4958,3614:102,142,-60,0,0,0.0820496 -4959,3614:103,143,-60,0,0,0.0796372 -4960,3614:104,144,-60,0,0,0.0785224 -4961,3614:205,145,-60,0,0,0.0757147 -4962,3614:206,146,-60,0,0,0.0750915 -4963,3614:207,147,-60,0,0,0.0750345 -4964,3614:208,148,-60,0,0,0.0749775 -4965,3614:209,149,-60,0,0,0.0749916 -4966,3615:100,150,-60,0,0,0.075006 -4967,3615:101,151,-60,0,0,0.0750131 -4968,3615:102,152,-60,0,0,0.0749988 -4969,3615:103,153,-60,0,0,0.0750201 -4970,3615:104,154,-60,0,0,0.0750416 -4971,3615:205,155,-60,0,0,0.0750416 -4972,3615:206,156,-60,0,0,0.0750416 -4973,3615:207,157,-60,0,0,0.0750416 -4974,3615:208,158,-60,0,0,0.0750273 -4975,3615:209,159,-60,0,0,0.0750273 -4976,3616:100,160,-60,0,0,0.0750201 -4977,3616:101,161,-60,0,0,0.0750131 -4978,3616:102,162,-60,0,0,0.0750345 -4979,3616:103,163,-60,0,0,0.0750416 -4980,3616:104,164,-60,0,0,0.0750558 -4981,3616:205,165,-60,0,0,0.0750558 -4982,3616:206,166,-60,0,0,0.0750702 -4983,3616:207,167,-60,0,0,0.0750702 -4984,3616:208,168,-60,0,0,0.0750558 -4985,3616:209,169,-60,0,0,0.0750488 -4986,3617:100,170,-60,0,0,0.0750488 -4987,3617:101,171,-60,0,0,0.0750488 -4988,3617:102,172,-60,0,0,0.0750416 -4989,3617:103,173,-60,0,0,0.0750416 -4990,3617:104,174,-60,0,0,0.0750345 -4991,3617:205,175,-60,0,0,0.0750345 -4992,3617:206,176,-60,0,0,0.0750416 -4993,3617:207,177,-60,0,0,0.0750416 -4994,3617:208,178,-60,0,0,0.0750488 -4995,3617:209,179,-60,0,0,0.0750773 -4996,3618:100,180,-60,0,0,0.0751701 -4997,5518:390,-180,-59,0,0,0.0776864 -4998,5517:499,-179,-59,0,0,0.0785224 -4999,5517:498,-178,-59,0,0,0.0758443 -5000,5517:497,-177,-59,0,0,0.0774806 -5001,5517:496,-176,-59,0,0,0.0819026 -5002,5517:495,-175,-59,0,0,0.0766184 -5003,5517:394,-174,-59,0,0,0.0753561 -5004,5517:393,-173,-59,0,0,0.0771067 -5005,5517:392,-172,-59,0,0,0.0764732 -5006,5517:391,-171,-59,0,0,0.0751344 -5007,5517:390,-170,-59,0,0,0.0750987 -5008,5516:499,-169,-59,0,0,0.0751987 -5009,5516:498,-168,-59,0,0,0.075313 -5010,5516:497,-167,-59,0,0,0.0751771 -5011,5516:496,-166,-59,0,0,0.0757147 -5012,5516:495,-165,-59,0,0,0.0757867 -5013,5516:394,-164,-59,0,0,0.0758443 -5014,5516:393,-163,-59,0,0,0.0769973 -5015,5516:392,-162,-59,0,0,0.0789545 -5016,5516:391,-161,-59,0,0,0.0805608 -5017,5516:390,-160,-59,0,0,0.0806521 -5018,5515:499,-159,-59,0,0,0.0822588 -5019,5515:498,-158,-59,0,0,0.0830847 -5020,5515:497,-157,-59,0,0,0.0830379 -5021,5515:496,-156,-59,0,0,0.0827644 -5022,5515:495,-155,-59,0,0,0.0823673 -5023,5515:394,-154,-59,0,0,0.0821037 -5024,5515:393,-153,-59,0,0,0.0822354 -5025,5515:392,-152,-59,0,0,0.0825462 -5026,5515:391,-151,-59,0,0,0.0836578 -5027,5515:390,-150,-59,0,0,0.0839419 -5028,5514:499,-149,-59,0,0,0.0832805 -5029,5514:498,-148,-59,0,0,0.0832649 -5030,5514:497,-147,-59,0,0,0.0834298 -5031,5514:496,-146,-59,0,0,0.0837682 -5032,5514:495,-145,-59,0,0,0.0844886 -5033,5514:394,-144,-59,0,0,0.0849986 -5034,5514:393,-143,-59,0,0,0.0860837 -5035,5514:392,-142,-59,0,0,0.0851426 -5036,5514:391,-141,-59,0,0,0.0848867 -5037,5514:390,-140,-59,0,0,0.0840683 -5038,5513:499,-139,-59,0,0,0.0837682 -5039,5513:498,-138,-59,0,0,0.0874842 -5040,5513:497,-137,-59,0,0,0.0869034 -5041,5513:496,-136,-59,0,0,0.0866756 -5042,5513:495,-135,-59,0,0,0.0849428 -5043,5513:394,-134,-59,0,0,0.0871648 -5044,5513:393,-133,-59,0,0,0.0872384 -5045,5513:392,-132,-59,0,0,0.092558 -5046,5513:391,-131,-59,0,0,0.0932768 -5047,5513:390,-130,-59,0,0,0.0916047 -5048,5512:499,-129,-59,0,0,0.0914764 -5049,5512:498,-128,-59,0,0,0.0911525 -5050,5512:497,-127,-59,0,0,0.0910333 -5051,5512:496,-126,-59,0,0,0.0935291 -5052,5512:495,-125,-59,0,0,0.0975683 -5053,5512:394,-124,-59,0,0,0.0982671 -5054,5512:393,-123,-59,0,0,0.0954277 -5055,5512:392,-122,-59,0,0,0.0962645 -5056,5512:391,-121,-59,0,0,0.0989063 -5057,5512:390,-120,-59,0,0,0.0997151 -5058,5511:499,-119,-59,0,0,0.100075 -5059,5511:498,-118,-59,0,0,0.099752 -5060,5511:497,-117,-59,0,0,0.0995399 -5061,5511:496,-116,-59,0,0,0.0994388 -5062,5511:495,-115,-59,0,0,0.097795 -5063,5511:394,-114,-59,0,0,0.0966586 -5064,5511:393,-113,-59,0,0,0.0988423 -5065,5511:392,-112,-59,0,0,0.100325 -5066,5511:391,-111,-59,0,0,0.0996136 -5067,5511:390,-110,-59,0,0,0.0975774 -5068,5510:499,-109,-59,0,0,0.0973967 -5069,5510:498,-108,-59,0,0,0.0979854 -5070,5510:497,-107,-59,0,0,0.0980489 -5071,5510:496,-106,-59,0,0,0.0965511 -5072,5510:495,-105,-59,0,0,0.0995031 -5073,5510:394,-104,-59,0,0,0.100335 -5074,5510:393,-103,-59,0,0,0.0971171 -5075,5510:392,-102,-59,0,0,0.0984222 -5076,5510:391,-101,-59,0,0,0.0968921 -5077,5510:390,-100,-59,0,0,0.0983947 -5078,5509:499,-99,-59,0,0,0.0986869 -5079,5509:498,-98,-59,0,0,0.0964076 -5080,5509:497,-97,-59,0,0,0.091673 -5081,5509:496,-96,-59,0,0,0.0808887 -5082,5509:495,-95,-59,0,0,0.0802872 -5083,5509:394,-94,-59,0,0,0.0830613 -5084,5509:393,-93,-59,0,0,0.0829047 -5085,5509:392,-92,-59,0,0,0.0886642 -5086,5509:391,-91,-59,0,0,0.0936597 -5087,5509:390,-90,-59,0,0,0.0986503 -5088,5508:499,-89,-59,0,0,0.0986685 -5089,5508:498,-88,-59,0,0,0.0993285 -5090,5508:497,-87,-59,0,0,0.101753 -5091,5508:496,-86,-59,0,0,0.102365 -5092,5508:495,-85,-59,0,0,0.102592 -5093,5508:394,-84,-59,0,0,0.102715 -5094,5508:393,-83,-59,0,0,0.0894142 -5095,5508:392,-82,-59,0,0,0.0825462 -5096,5508:391,-81,-59,0,0,0.0857446 -5097,5508:390,-80,-59,0,0,0.0766839 -5098,5507:499,-79,-59,0,0,0.0778411 -5099,5507:498,-78,-59,0,0,0.0879363 -5100,5507:497,-77,-59,0,0,0.0968562 -5101,5507:496,-76,-59,0,0,0.0967123 -5102,5507:495,-75,-59,0,0,0.0933288 -5103,5507:394,-74,-59,0,0,0.0936684 -5104,5507:393,-73,-59,0,0,0.0948086 -5105,5507:392,-72,-59,0,0,0.0913995 -5106,5507:391,-71,-59,0,0,0.0853267 -5107,5507:390,-70,-59,0,0,0.0818795 -5108,5506:499,-69,-59,0,0,0.0791191 -5109,5506:498,-68,-59,0,0,0.0783886 -5110,5506:497,-67,-59,0,0,0.0795393 -5111,5506:496,-66,-59,0,0,0.082772 -5112,5506:495,-65,-59,0,0,0.0894895 -5113,5505:499,-59,-59,0,0,0.0801583 -5114,5505:498,-58,-59,0,0,0.078768 -5115,5505:497,-57,-59,0,0,0.0766475 -5116,5505:496,-56,-59,0,0,0.0752201 -5117,5505:495,-55,-59,0,0,0.0751486 -5118,5505:394,-54,-59,0,0,0.0750558 -5119,5505:393,-53,-59,0,0,0.0750416 -5120,5505:392,-52,-59,0,0,0.0750273 -5121,5505:391,-51,-59,0,0,0.0749916 -5122,5505:390,-50,-59,0,0,0.0749916 -5123,5504:499,-49,-59,0,0,0.0749988 -5124,5504:498,-48,-59,0,0,0.0749703 -5125,5504:497,-47,-59,0,0,0.0749631 -5126,5504:496,-46,-59,0,0,0.0749631 -5127,5504:495,-45,-59,0,0,0.0749562 -5128,5504:394,-44,-59,0,0,0.0749631 -5129,5504:393,-43,-59,0,0,0.0749631 -5130,5504:392,-42,-59,0,0,0.0749631 -5131,5504:391,-41,-59,0,0,0.0749703 -5132,5504:390,-40,-59,0,0,0.0749703 -5133,5503:499,-39,-59,0,0,0.0749775 -5134,5503:498,-38,-59,0,0,0.0749775 -5135,5503:497,-37,-59,0,0,0.0749775 -5136,5503:496,-36,-59,0,0,0.0749775 -5137,5503:495,-35,-59,0,0,0.0749775 -5138,5503:394,-34,-59,0,0,0.0749775 -5139,5503:393,-33,-59,0,0,0.0749775 -5140,5503:392,-32,-59,0,0,0.0749775 -5141,5503:391,-31,-59,0,0,0.0749846 -5142,5503:390,-30,-59,0,0,0.0749775 -5143,5502:499,-29,-59,0,0,0.0749775 -5144,5502:498,-28,-59,0,0,0.0749703 -5145,5502:497,-27,-59,0,0,0.0749703 -5146,5502:496,-26,-59,0,0,0.0749631 -5147,5502:495,-25,-59,0,0,0.0749631 -5148,5502:394,-24,-59,0,0,0.0749631 -5149,5502:393,-23,-59,0,0,0.0749562 -5150,5502:392,-22,-59,0,0,0.074949 -5151,5502:391,-21,-59,0,0,0.0749346 -5152,5502:390,-20,-59,0,0,0.0749205 -5153,5501:499,-19,-59,0,0,0.0749133 -5154,5501:498,-18,-59,0,0,0.0749062 -5155,5501:497,-17,-59,0,0,0.0748849 -5156,5501:496,-16,-59,0,0,0.0748705 -5157,5501:495,-15,-59,0,0,0.0748564 -5158,5501:394,-14,-59,0,0,0.0748564 -5159,5501:393,-13,-59,0,0,0.0748564 -5160,5501:392,-12,-59,0,0,0.0748564 -5161,5501:391,-11,-59,0,0,0.0748493 -5162,5501:390,-10,-59,0,0,0.0748564 -5163,5500:499,-9,-59,0,0,0.0748705 -5164,5500:498,-8,-59,0,0,0.0748705 -5165,5500:497,-7,-59,0,0,0.0748705 -5166,5500:496,-6,-59,0,0,0.0748636 -5167,5500:495,-5,-59,0,0,0.0748564 -5168,5500:394,-4,-59,0,0,0.0748636 -5169,5500:393,-3,-59,0,0,0.0748636 -5170,5500:392,-2,-59,0,0,0.0748705 -5171,5500:391,-1,-59,0,0,0.0748849 -5172,3500:391,0,-59,0,0,0.074892 -5173,3500:391,1,-59,0,0,0.0748705 -5174,3500:392,2,-59,0,0,0.0748636 -5175,3500:393,3,-59,0,0,0.0748636 -5176,3500:394,4,-59,0,0,0.0748705 -5177,3500:495,5,-59,0,0,0.0748849 -5178,3500:496,6,-59,0,0,0.074892 -5179,3500:497,7,-59,0,0,0.074892 -5180,3500:498,8,-59,0,0,0.0748849 -5181,3500:499,9,-59,0,0,0.074892 -5182,3501:390,10,-59,0,0,0.0748777 -5183,3501:391,11,-59,0,0,0.0748777 -5184,3501:392,12,-59,0,0,0.0748636 -5185,3501:393,13,-59,0,0,0.0748564 -5186,3501:394,14,-59,0,0,0.0748636 -5187,3501:495,15,-59,0,0,0.0748564 -5188,3501:496,16,-59,0,0,0.0748564 -5189,3501:497,17,-59,0,0,0.0748421 -5190,3501:498,18,-59,0,0,0.0748065 -5191,3501:499,19,-59,0,0,0.0747996 -5192,3502:390,20,-59,0,0,0.0748208 -5193,3502:391,21,-59,0,0,0.074828 -5194,3502:392,22,-59,0,0,0.0748137 -5195,3502:393,23,-59,0,0,0.0748137 -5196,3502:394,24,-59,0,0,0.0748208 -5197,3502:495,25,-59,0,0,0.074828 -5198,3502:496,26,-59,0,0,0.074828 -5199,3502:497,27,-59,0,0,0.074828 -5200,3502:498,28,-59,0,0,0.074828 -5201,3502:499,29,-59,0,0,0.074828 -5202,3503:390,30,-59,0,0,0.074828 -5203,3503:391,31,-59,0,0,0.0748137 -5204,3503:392,32,-59,0,0,0.074899 -5205,3503:393,33,-59,0,0,0.0749346 -5206,3503:394,34,-59,0,0,0.0749562 -5207,3503:495,35,-59,0,0,0.0749562 -5208,3503:496,36,-59,0,0,0.0749275 -5209,3503:497,37,-59,0,0,0.074892 -5210,3503:498,38,-59,0,0,0.0748777 -5211,3503:499,39,-59,0,0,0.0748636 -5212,3504:390,40,-59,0,0,0.0748777 -5213,3504:391,41,-59,0,0,0.074899 -5214,3504:392,42,-59,0,0,0.0749275 -5215,3504:393,43,-59,0,0,0.0749418 -5216,3504:394,44,-59,0,0,0.074949 -5217,3504:495,45,-59,0,0,0.0749562 -5218,3504:496,46,-59,0,0,0.0749846 -5219,3504:497,47,-59,0,0,0.0749988 -5220,3504:498,48,-59,0,0,0.0750273 -5221,3504:499,49,-59,0,0,0.0750558 -5222,3505:390,50,-59,0,0,0.075063 -5223,3505:391,51,-59,0,0,0.0751059 -5224,3505:392,52,-59,0,0,0.0751128 -5225,3505:393,53,-59,0,0,0.07512 -5226,3505:394,54,-59,0,0,0.0751272 -5227,3505:495,55,-59,0,0,0.0751059 -5228,3505:496,56,-59,0,0,0.0750843 -5229,3505:497,57,-59,0,0,0.0750558 -5230,3505:498,58,-59,0,0,0.0749775 -5231,3505:499,59,-59,0,0,0.074949 -5232,3506:390,60,-59,0,0,0.0749346 -5233,3506:391,61,-59,0,0,0.0749133 -5234,3506:392,62,-59,0,0,0.074949 -5235,3506:393,63,-59,0,0,0.0749418 -5236,3506:394,64,-59,0,0,0.0749703 -5237,3506:495,65,-59,0,0,0.0749703 -5238,3506:496,66,-59,0,0,0.0749703 -5239,3506:497,67,-59,0,0,0.0749562 -5240,3506:498,68,-59,0,0,0.074949 -5241,3506:499,69,-59,0,0,0.0749418 -5242,3507:390,70,-59,0,0,0.0749346 -5243,3507:391,71,-59,0,0,0.0749346 -5244,3507:392,72,-59,0,0,0.0749418 -5245,3507:394,74,-59,0,0,0.074949 -5246,3507:495,75,-59,0,0,0.0749562 -5247,3507:496,76,-59,0,0,0.074949 -5248,3507:497,77,-59,0,0,0.0749562 -5249,3507:498,78,-59,0,0,0.0749562 -5250,3507:499,79,-59,0,0,0.074949 -5251,3508:390,80,-59,0,0,0.0749631 -5252,3508:391,81,-59,0,0,0.0749916 -5253,3508:392,82,-59,0,0,0.0750273 -5254,3508:393,83,-59,0,0,0.0750558 -5255,3508:394,84,-59,0,0,0.0750773 -5256,3508:495,85,-59,0,0,0.0750702 -5257,3508:496,86,-59,0,0,0.0750702 -5258,3508:497,87,-59,0,0,0.0750843 -5259,3508:498,88,-59,0,0,0.075063 -5260,3508:499,89,-59,0,0,0.0750488 -5261,3509:390,90,-59,0,0,0.0750345 -5262,3509:391,91,-59,0,0,0.0750558 -5263,3509:392,92,-59,0,0,0.0750702 -5264,3509:393,93,-59,0,0,0.0750843 -5265,3509:394,94,-59,0,0,0.0751272 -5266,3509:495,95,-59,0,0,0.0751344 -5267,3510:390,100,-59,0,0,0.0754492 -5268,3510:391,101,-59,0,0,0.075313 -5269,3510:392,102,-59,0,0,0.0752487 -5270,3510:393,103,-59,0,0,0.0751416 -5271,3510:394,104,-59,0,0,0.0751416 -5272,3510:495,105,-59,0,0,0.0751416 -5273,3510:496,106,-59,0,0,0.0751915 -5274,3510:497,107,-59,0,0,0.0749916 -5275,3510:498,108,-59,0,0,0.0749418 -5276,3510:499,109,-59,0,0,0.0749562 -5277,3511:390,110,-59,0,0,0.0749846 -5278,3511:391,111,-59,0,0,0.0749916 -5279,3511:392,112,-59,0,0,0.0750201 -5280,3511:393,113,-59,0,0,0.075063 -5281,3511:394,114,-59,0,0,0.0750915 -5282,3511:495,115,-59,0,0,0.0750915 -5283,3511:496,116,-59,0,0,0.0750915 -5284,3511:497,117,-59,0,0,0.0750702 -5285,3511:498,118,-59,0,0,0.0750416 -5286,3511:499,119,-59,0,0,0.075006 -5287,3512:390,120,-59,0,0,0.075006 -5288,3512:391,121,-59,0,0,0.0750558 -5289,3512:392,122,-59,0,0,0.07527 -5290,3512:393,123,-59,0,0,0.0749846 -5291,3512:394,124,-59,0,0,0.0750201 -5292,3512:495,125,-59,0,0,0.0755854 -5293,3512:496,126,-59,0,0,0.0756787 -5294,3512:497,127,-59,0,0,0.0757722 -5295,3512:498,128,-59,0,0,0.0758586 -5296,3512:499,129,-59,0,0,0.0758298 -5297,3513:390,130,-59,0,0,0.0758515 -5298,3513:391,131,-59,0,0,0.0759811 -5299,3513:392,132,-59,0,0,0.0749205 -5300,3513:393,133,-59,0,0,0.0749275 -5301,3513:394,134,-59,0,0,0.0749703 -5302,3513:496,136,-59,0,0,0.0752129 -5303,3513:497,137,-59,0,0,0.0764296 -5304,3513:498,138,-59,0,0,0.0760317 -5305,3513:499,139,-59,0,0,0.0757795 -5306,3514:390,140,-59,0,0,0.0753703 -5307,3514:391,141,-59,0,0,0.075163 -5308,3514:392,142,-59,0,0,0.0749775 -5309,3514:393,143,-59,0,0,0.0748777 -5310,3514:394,144,-59,0,0,0.0749062 -5311,3514:495,145,-59,0,0,0.0749275 -5312,3514:496,146,-59,0,0,0.0749562 -5313,3514:497,147,-59,0,0,0.0749916 -5314,3514:498,148,-59,0,0,0.0749988 -5315,3514:499,149,-59,0,0,0.0750201 -5316,3515:390,150,-59,0,0,0.0749988 -5317,3515:391,151,-59,0,0,0.0750201 -5318,3515:392,152,-59,0,0,0.0750558 -5319,3515:393,153,-59,0,0,0.0750843 -5320,3515:394,154,-59,0,0,0.0750773 -5321,3515:495,155,-59,0,0,0.0750843 -5322,3515:496,156,-59,0,0,0.075063 -5323,3515:497,157,-59,0,0,0.0750416 -5324,3515:498,158,-59,0,0,0.0750345 -5325,3515:499,159,-59,0,0,0.0750201 -5326,3516:390,160,-59,0,0,0.0750345 -5327,3516:391,161,-59,0,0,0.0750201 -5328,3516:392,162,-59,0,0,0.0750558 -5329,3516:393,163,-59,0,0,0.0750773 -5330,3516:394,164,-59,0,0,0.0750843 -5331,3516:495,165,-59,0,0,0.0750915 -5332,3516:496,166,-59,0,0,0.0750773 -5333,3516:497,167,-59,0,0,0.0750773 -5334,3516:498,168,-59,0,0,0.0750773 -5335,3516:499,169,-59,0,0,0.075063 -5336,3517:390,170,-59,0,0,0.0750488 -5337,3517:391,171,-59,0,0,0.0751059 -5338,3517:392,172,-59,0,0,0.0751416 -5339,3517:393,173,-59,0,0,0.0750702 -5340,3517:394,174,-59,0,0,0.0750702 -5341,3517:495,175,-59,0,0,0.0750773 -5342,3517:496,176,-59,0,0,0.0750558 -5343,3517:497,177,-59,0,0,0.0750843 -5344,3517:498,178,-59,0,0,0.0752129 -5345,3517:499,179,-59,0,0,0.0753344 -5346,3518:390,180,-59,0,0,0.0776864 -5347,5518:380,-180,-58,0,0,0.0818408 -5348,5517:489,-179,-58,0,0,0.084584 -5349,5517:488,-178,-58,0,0,0.0898166 -5350,5517:487,-177,-58,0,0,0.089657 -5351,5517:486,-176,-58,0,0,0.0842902 -5352,5517:485,-175,-58,0,0,0.0836893 -5353,5517:384,-174,-58,0,0,0.0840999 -5354,5517:383,-173,-58,0,0,0.0840603 -5355,5517:382,-172,-58,0,0,0.0800675 -5356,5517:381,-171,-58,0,0,0.0776495 -5357,5517:380,-170,-58,0,0,0.0785521 -5358,5516:489,-169,-58,0,0,0.0799616 -5359,5516:488,-168,-58,0,0,0.0784852 -5360,5516:487,-167,-58,0,0,0.0766184 -5361,5516:486,-166,-58,0,0,0.0775026 -5362,5516:485,-165,-58,0,0,0.0790444 -5363,5516:384,-164,-58,0,0,0.0819491 -5364,5516:383,-163,-58,0,0,0.0834453 -5365,5516:382,-162,-58,0,0,0.0835949 -5366,5516:381,-161,-58,0,0,0.0842822 -5367,5516:380,-160,-58,0,0,0.0845522 -5368,5515:489,-159,-58,0,0,0.0846795 -5369,5515:488,-158,-58,0,0,0.084775 -5370,5515:487,-157,-58,0,0,0.0843457 -5371,5515:486,-156,-58,0,0,0.0833042 -5372,5515:485,-155,-58,0,0,0.0829987 -5373,5515:384,-154,-58,0,0,0.083163 -5374,5515:383,-153,-58,0,0,0.0839024 -5375,5515:382,-152,-58,0,0,0.0853027 -5376,5515:381,-151,-58,0,0,0.0853267 -5377,5515:380,-150,-58,0,0,0.0843059 -5378,5514:489,-149,-58,0,0,0.0844251 -5379,5514:488,-148,-58,0,0,0.0844569 -5380,5514:487,-147,-58,0,0,0.0849825 -5381,5514:486,-146,-58,0,0,0.0861239 -5382,5514:485,-145,-58,0,0,0.0869933 -5383,5514:384,-144,-58,0,0,0.0857367 -5384,5514:383,-143,-58,0,0,0.0860592 -5385,5514:382,-142,-58,0,0,0.0863183 -5386,5514:381,-141,-58,0,0,0.0890633 -5387,5514:380,-140,-58,0,0,0.087181 -5388,5513:489,-139,-58,0,0,0.0848867 -5389,5513:488,-138,-58,0,0,0.087895 -5390,5513:487,-137,-58,0,0,0.08903 -5391,5513:486,-136,-58,0,0,0.0866024 -5392,5513:485,-135,-58,0,0,0.0865374 -5393,5513:384,-134,-58,0,0,0.0919041 -5394,5513:383,-133,-58,0,0,0.0956496 -5395,5513:382,-132,-58,0,0,0.0973695 -5396,5513:381,-131,-58,0,0,0.0950645 -5397,5513:380,-130,-58,0,0,0.0941407 -5398,5512:489,-129,-58,0,0,0.0952857 -5399,5512:488,-128,-58,0,0,0.0993007 -5400,5512:487,-127,-58,0,0,0.101678 -5401,5512:486,-126,-58,0,0,0.102007 -5402,5512:485,-125,-58,0,0,0.100205 -5403,5512:384,-124,-58,0,0,0.100047 -5404,5512:383,-123,-58,0,0,0.100279 -5405,5512:382,-122,-58,0,0,0.0999183 -5406,5512:381,-121,-58,0,0,0.100363 -5407,5512:380,-120,-58,0,0,0.10053 -5408,5511:489,-119,-58,0,0,0.100307 -5409,5511:488,-118,-58,0,0,0.101584 -5410,5511:487,-117,-58,0,0,0.10263 -5411,5511:486,-116,-58,0,0,0.102876 -5412,5511:485,-115,-58,0,0,0.104779 -5413,5511:384,-114,-58,0,0,0.106321 -5414,5511:383,-113,-58,0,0,0.106987 -5415,5511:382,-112,-58,0,0,0.106379 -5416,5511:381,-111,-58,0,0,0.105039 -5417,5511:380,-110,-58,0,0,0.104471 -5418,5510:489,-109,-58,0,0,0.105184 -5419,5510:488,-108,-58,0,0,0.106653 -5420,5510:487,-107,-58,0,0,0.105039 -5421,5510:486,-106,-58,0,0,0.101847 -5422,5510:485,-105,-58,0,0,0.10039 -5423,5510:384,-104,-58,0,0,0.102158 -5424,5510:383,-103,-58,0,0,0.10337 -5425,5510:382,-102,-58,0,0,0.1004 -5426,5510:381,-101,-58,0,0,0.0978583 -5427,5510:380,-100,-58,0,0,0.0989706 -5428,5509:489,-99,-58,0,0,0.0998351 -5429,5509:488,-98,-58,0,0,0.0987781 -5430,5509:487,-97,-58,0,0,0.0998258 -5431,5509:486,-96,-58,0,0,0.0995767 -5432,5509:485,-95,-58,0,0,0.0971531 -5433,5509:384,-94,-58,0,0,0.0966496 -5434,5509:383,-93,-58,0,0,0.098486 -5435,5509:382,-92,-58,0,0,0.0926703 -5436,5509:381,-91,-58,0,0,0.0962555 -5437,5509:380,-90,-58,0,0,0.100716 -5438,5508:489,-89,-58,0,0,0.103332 -5439,5508:488,-88,-58,0,0,0.103676 -5440,5508:487,-87,-58,0,0,0.103752 -5441,5508:486,-86,-58,0,0,0.102479 -5442,5508:485,-85,-58,0,0,0.103361 -5443,5508:384,-84,-58,0,0,0.102337 -5444,5508:383,-83,-58,0,0,0.101257 -5445,5508:382,-82,-58,0,0,0.0910419 -5446,5508:381,-81,-58,0,0,0.0810186 -5447,5508:380,-80,-58,0,0,0.0852868 -5448,5507:489,-79,-58,0,0,0.0895731 -5449,5507:488,-78,-58,0,0,0.0977496 -5450,5507:487,-77,-58,0,0,0.100057 -5451,5507:486,-76,-58,0,0,0.100075 -5452,5507:485,-75,-58,0,0,0.0994295 -5453,5507:384,-74,-58,0,0,0.0989247 -5454,5507:383,-73,-58,0,0,0.0985132 -5455,5507:382,-72,-58,0,0,0.0945707 -5456,5507:381,-71,-58,0,0,0.0883243 -5457,5507:380,-70,-58,0,0,0.0850147 -5458,5506:489,-69,-58,0,0,0.0822278 -5459,5506:488,-68,-58,0,0,0.0799088 -5460,5506:487,-67,-58,0,0,0.0788725 -5461,5506:486,-66,-58,0,0,0.0787009 -5462,5506:485,-65,-58,0,0,0.083367 -5463,5506:384,-64,-58,0,0,0.0901108 -5464,5506:383,-63,-58,0,0,0.0913826 -5465,5506:382,-62,-58,0,0,0.0934071 -5466,5505:488,-58,-58,0,0,0.0794868 -5467,5505:486,-56,-58,0,0,0.0778265 -5468,5505:485,-55,-58,0,0,0.0767056 -5469,5505:384,-54,-58,0,0,0.0750416 -5470,5505:383,-53,-58,0,0,0.0750488 -5471,5505:382,-52,-58,0,0,0.0750416 -5472,5505:381,-51,-58,0,0,0.0750201 -5473,5505:380,-50,-58,0,0,0.0749988 -5474,5504:489,-49,-58,0,0,0.0750131 -5475,5504:488,-48,-58,0,0,0.0749775 -5476,5504:487,-47,-58,0,0,0.0749631 -5477,5504:486,-46,-58,0,0,0.0749562 -5478,5504:485,-45,-58,0,0,0.0749562 -5479,5504:384,-44,-58,0,0,0.0749631 -5480,5504:383,-43,-58,0,0,0.0749631 -5481,5504:382,-42,-58,0,0,0.0749631 -5482,5504:381,-41,-58,0,0,0.0749631 -5483,5504:380,-40,-58,0,0,0.0749703 -5484,5503:489,-39,-58,0,0,0.0749775 -5485,5503:488,-38,-58,0,0,0.0749846 -5486,5503:487,-37,-58,0,0,0.0749916 -5487,5503:486,-36,-58,0,0,0.0749916 -5488,5503:485,-35,-58,0,0,0.0749916 -5489,5503:384,-34,-58,0,0,0.0749916 -5490,5503:383,-33,-58,0,0,0.0749916 -5491,5503:382,-32,-58,0,0,0.0749916 -5492,5503:381,-31,-58,0,0,0.0749916 -5493,5503:380,-30,-58,0,0,0.0749846 -5494,5502:489,-29,-58,0,0,0.0749846 -5495,5502:488,-28,-58,0,0,0.0749846 -5496,5502:487,-27,-58,0,0,0.0749775 -5497,5502:486,-26,-58,0,0,0.0749775 -5498,5502:485,-25,-58,0,0,0.0749703 -5499,5502:384,-24,-58,0,0,0.0749631 -5500,5502:383,-23,-58,0,0,0.0749562 -5501,5502:382,-22,-58,0,0,0.074949 -5502,5502:381,-21,-58,0,0,0.0749418 -5503,5502:380,-20,-58,0,0,0.0749275 -5504,5501:489,-19,-58,0,0,0.0749062 -5505,5501:488,-18,-58,0,0,0.074892 -5506,5501:487,-17,-58,0,0,0.0748777 -5507,5501:486,-16,-58,0,0,0.0748564 -5508,5501:485,-15,-58,0,0,0.0748493 -5509,5501:384,-14,-58,0,0,0.0748493 -5510,5501:383,-13,-58,0,0,0.0748493 -5511,5501:382,-12,-58,0,0,0.0748564 -5512,5501:381,-11,-58,0,0,0.0748636 -5513,5501:380,-10,-58,0,0,0.0748636 -5514,5500:489,-9,-58,0,0,0.0748777 -5515,5500:488,-8,-58,0,0,0.0748849 -5516,5500:487,-7,-58,0,0,0.0748849 -5517,5500:486,-6,-58,0,0,0.0748636 -5518,5500:485,-5,-58,0,0,0.0748564 -5519,5500:384,-4,-58,0,0,0.0748493 -5520,5500:383,-3,-58,0,0,0.0748421 -5521,5500:382,-2,-58,0,0,0.0748564 -5522,5500:381,-1,-58,0,0,0.0748777 -5523,3500:381,0,-58,0,0,0.074892 -5524,3500:381,1,-58,0,0,0.0749062 -5525,3500:382,2,-58,0,0,0.0748777 -5526,3500:383,3,-58,0,0,0.0748636 -5527,3500:384,4,-58,0,0,0.0748705 -5528,3500:485,5,-58,0,0,0.0748849 -5529,3500:486,6,-58,0,0,0.074899 -5530,3500:487,7,-58,0,0,0.0749062 -5531,3500:488,8,-58,0,0,0.0749275 -5532,3500:489,9,-58,0,0,0.0749418 -5533,3501:380,10,-58,0,0,0.0749562 -5534,3501:381,11,-58,0,0,0.0749631 -5535,3501:382,12,-58,0,0,0.0749562 -5536,3501:383,13,-58,0,0,0.074949 -5537,3501:384,14,-58,0,0,0.0748777 -5538,3501:485,15,-58,0,0,0.0748493 -5539,3501:486,16,-58,0,0,0.0748137 -5540,3501:487,17,-58,0,0,0.0747852 -5541,3501:488,18,-58,0,0,0.0747711 -5542,3501:489,19,-58,0,0,0.0747711 -5543,3502:380,20,-58,0,0,0.0747781 -5544,3502:381,21,-58,0,0,0.0747781 -5545,3502:382,22,-58,0,0,0.0747781 -5546,3502:383,23,-58,0,0,0.0747711 -5547,3502:384,24,-58,0,0,0.0747781 -5548,3502:485,25,-58,0,0,0.074764 -5549,3502:486,26,-58,0,0,0.0748208 -5550,3502:487,27,-58,0,0,0.0748493 -5551,3502:488,28,-58,0,0,0.0748849 -5552,3502:489,29,-58,0,0,0.0749275 -5553,3503:380,30,-58,0,0,0.0749775 -5554,3503:381,31,-58,0,0,0.0749703 -5555,3503:382,32,-58,0,0,0.0748705 -5556,3503:383,33,-58,0,0,0.0749062 -5557,3503:384,34,-58,0,0,0.0749133 -5558,3503:485,35,-58,0,0,0.0749062 -5559,3503:486,36,-58,0,0,0.0749062 -5560,3503:487,37,-58,0,0,0.0748705 -5561,3503:488,38,-58,0,0,0.0748421 -5562,3503:489,39,-58,0,0,0.0748349 -5563,3504:380,40,-58,0,0,0.0748349 -5564,3504:381,41,-58,0,0,0.074828 -5565,3504:382,42,-58,0,0,0.0748493 -5566,3504:383,43,-58,0,0,0.0748849 -5567,3504:384,44,-58,0,0,0.0749133 -5568,3504:485,45,-58,0,0,0.0749275 -5569,3504:486,46,-58,0,0,0.0749346 -5570,3504:487,47,-58,0,0,0.0749418 -5571,3504:488,48,-58,0,0,0.0749631 -5572,3504:489,49,-58,0,0,0.0749562 -5573,3505:380,50,-58,0,0,0.0749775 -5574,3505:381,51,-58,0,0,0.0749775 -5575,3505:382,52,-58,0,0,0.0750201 -5576,3505:383,53,-58,0,0,0.0750201 -5577,3505:384,54,-58,0,0,0.0750273 -5578,3505:485,55,-58,0,0,0.0750131 -5579,3505:486,56,-58,0,0,0.0749775 -5580,3505:487,57,-58,0,0,0.0749562 -5581,3505:488,58,-58,0,0,0.0749418 -5582,3505:489,59,-58,0,0,0.0749346 -5583,3506:380,60,-58,0,0,0.0749275 -5584,3506:381,61,-58,0,0,0.0749133 -5585,3506:382,62,-58,0,0,0.0750273 -5586,3506:383,63,-58,0,0,0.0749133 -5587,3506:384,64,-58,0,0,0.0749275 -5588,3506:485,65,-58,0,0,0.0749418 -5589,3506:486,66,-58,0,0,0.0749562 -5590,3506:487,67,-58,0,0,0.0749703 -5591,3506:488,68,-58,0,0,0.0749703 -5592,3506:489,69,-58,0,0,0.074949 -5593,3507:380,70,-58,0,0,0.0749205 -5594,3507:381,71,-58,0,0,0.074892 -5595,3507:382,72,-58,0,0,0.074899 -5596,3507:384,74,-58,0,0,0.0749562 -5597,3507:485,75,-58,0,0,0.0749275 -5598,3507:486,76,-58,0,0,0.074899 -5599,3507:487,77,-58,0,0,0.0749133 -5600,3507:488,78,-58,0,0,0.0749205 -5601,3507:489,79,-58,0,0,0.0749418 -5602,3508:380,80,-58,0,0,0.074949 -5603,3508:381,81,-58,0,0,0.0749346 -5604,3508:382,82,-58,0,0,0.0749346 -5605,3508:383,83,-58,0,0,0.0749846 -5606,3508:384,84,-58,0,0,0.0749916 -5607,3508:485,85,-58,0,0,0.0749846 -5608,3508:486,86,-58,0,0,0.0749846 -5609,3508:487,87,-58,0,0,0.0749846 -5610,3508:488,88,-58,0,0,0.0749631 -5611,3508:489,89,-58,0,0,0.0751771 -5612,3509:380,90,-58,0,0,0.0758803 -5613,3509:381,91,-58,0,0,0.0749916 -5614,3509:382,92,-58,0,0,0.075006 -5615,3509:383,93,-58,0,0,0.0750273 -5616,3509:384,94,-58,0,0,0.0750488 -5617,3509:485,95,-58,0,0,0.0750702 -5618,3509:486,96,-58,0,0,0.0751128 -5619,3509:487,97,-58,0,0,0.0751701 -5620,3509:488,98,-58,0,0,0.0752129 -5621,3509:489,99,-58,0,0,0.0752487 -5622,3510:380,100,-58,0,0,0.0751128 -5623,3510:381,101,-58,0,0,0.0750843 -5624,3510:382,102,-58,0,0,0.0750843 -5625,3510:383,103,-58,0,0,0.075063 -5626,3510:384,104,-58,0,0,0.0750558 -5627,3510:485,105,-58,0,0,0.0750273 -5628,3510:486,106,-58,0,0,0.075006 -5629,3510:487,107,-58,0,0,0.0749846 -5630,3510:488,108,-58,0,0,0.0749775 -5631,3510:489,109,-58,0,0,0.0749775 -5632,3511:380,110,-58,0,0,0.0749846 -5633,3511:381,111,-58,0,0,0.0749775 -5634,3511:382,112,-58,0,0,0.0749562 -5635,3511:383,113,-58,0,0,0.0749846 -5636,3511:384,114,-58,0,0,0.0750131 -5637,3511:485,115,-58,0,0,0.075006 -5638,3511:486,116,-58,0,0,0.0749988 -5639,3511:487,117,-58,0,0,0.0750702 -5640,3511:488,118,-58,0,0,0.0753489 -5641,3511:489,119,-58,0,0,0.0773192 -5642,3512:380,120,-58,0,0,0.0819182 -5643,3512:381,121,-58,0,0,0.0841872 -5644,3512:382,122,-58,0,0,0.0844251 -5645,3512:383,123,-58,0,0,0.084775 -5646,3512:384,124,-58,0,0,0.0836814 -5647,3512:485,125,-58,0,0,0.0772092 -5648,3512:486,126,-58,0,0,0.0794491 -5649,3512:487,127,-58,0,0,0.076234 -5650,3512:488,128,-58,0,0,0.0765384 -5651,3512:489,129,-58,0,0,0.0774584 -5652,3513:380,130,-58,0,0,0.0779296 -5653,3513:381,131,-58,0,0,0.0768076 -5654,3513:382,132,-58,0,0,0.0752916 -5655,3513:383,133,-58,0,0,0.0753203 -5656,3513:384,134,-58,0,0,0.0755207 -5657,3513:485,135,-58,0,0,0.0756355 -5658,3513:486,136,-58,0,0,0.0756932 -5659,3513:487,137,-58,0,0,0.07565 -5660,3513:488,138,-58,0,0,0.0755926 -5661,3513:489,139,-58,0,0,0.0755639 -5662,3514:380,140,-58,0,0,0.0758443 -5663,3514:381,141,-58,0,0,0.0761327 -5664,3514:382,142,-58,0,0,0.0762413 -5665,3514:383,143,-58,0,0,0.0763137 -5666,3514:384,144,-58,0,0,0.0769462 -5667,3514:485,145,-58,0,0,0.0766475 -5668,3514:486,146,-58,0,0,0.0770046 -5669,3514:487,147,-58,0,0,0.075765 -5670,3514:488,148,-58,0,0,0.0753489 -5671,3514:489,149,-58,0,0,0.0755998 -5672,3515:380,150,-58,0,0,0.0752916 -5673,3515:381,151,-58,0,0,0.0750558 -5674,3515:382,152,-58,0,0,0.0750201 -5675,3515:383,153,-58,0,0,0.0751486 -5676,3515:384,154,-58,0,0,0.0750702 -5677,3515:485,155,-58,0,0,0.0750987 -5678,3515:486,156,-58,0,0,0.0750702 -5679,3515:487,157,-58,0,0,0.0750488 -5680,3515:488,158,-58,0,0,0.0750416 -5681,3515:489,159,-58,0,0,0.0750345 -5682,3516:380,160,-58,0,0,0.0750558 -5683,3516:381,161,-58,0,0,0.0750488 -5684,3516:382,162,-58,0,0,0.075063 -5685,3516:383,163,-58,0,0,0.0750843 -5686,3516:384,164,-58,0,0,0.0750843 -5687,3516:485,165,-58,0,0,0.0750702 -5688,3516:486,166,-58,0,0,0.0750987 -5689,3516:487,167,-58,0,0,0.0751059 -5690,3516:488,168,-58,0,0,0.0750987 -5691,3516:489,169,-58,0,0,0.0750915 -5692,3517:380,170,-58,0,0,0.0750702 -5693,3517:381,171,-58,0,0,0.0752559 -5694,3517:382,172,-58,0,0,0.0755854 -5695,3517:383,173,-58,0,0,0.075528 -5696,3517:384,174,-58,0,0,0.0751701 -5697,3517:485,175,-58,0,0,0.0751059 -5698,3517:486,176,-58,0,0,0.0774291 -5699,3517:487,177,-58,0,0,0.0803479 -5700,3517:488,178,-58,0,0,0.0784777 -5701,3517:489,179,-58,0,0,0.0764659 -5702,3518:380,180,-58,0,0,0.0818408 -5703,5518:370,-180,-57,0,0,0.0915705 -5704,5517:479,-179,-57,0,0,0.0912632 -5705,5517:478,-178,-57,0,0,0.0919986 -5706,5517:477,-177,-57,0,0,0.0913909 -5707,5517:476,-176,-57,0,0,0.0899762 -5708,5517:475,-175,-57,0,0,0.0895396 -5709,5517:374,-174,-57,0,0,0.0876071 -5710,5517:373,-173,-57,0,0,0.0861565 -5711,5517:372,-172,-57,0,0,0.0849267 -5712,5517:371,-171,-57,0,0,0.0846875 -5713,5517:370,-170,-57,0,0,0.0871157 -5714,5516:479,-169,-57,0,0,0.0828892 -5715,5516:478,-168,-57,0,0,0.0818255 -5716,5516:477,-167,-57,0,0,0.0801357 -5717,5516:476,-166,-57,0,0,0.0788502 -5718,5516:475,-165,-57,0,0,0.0793366 -5719,5516:374,-164,-57,0,0,0.0808504 -5720,5516:373,-163,-57,0,0,0.0821656 -5721,5516:372,-162,-57,0,0,0.0839735 -5722,5516:371,-161,-57,0,0,0.084576 -5723,5516:370,-160,-57,0,0,0.0849347 -5724,5515:479,-159,-57,0,0,0.085648 -5725,5515:478,-158,-57,0,0,0.0860109 -5726,5515:477,-157,-57,0,0,0.0855435 -5727,5515:476,-156,-57,0,0,0.0848548 -5728,5515:475,-155,-57,0,0,0.084839 -5729,5515:374,-154,-57,0,0,0.0845602 -5730,5515:373,-153,-57,0,0,0.0844806 -5731,5515:372,-152,-57,0,0,0.0850786 -5732,5515:371,-151,-57,0,0,0.0852626 -5733,5515:370,-150,-57,0,0,0.0882168 -5734,5514:479,-149,-57,0,0,0.0860837 -5735,5514:478,-148,-57,0,0,0.0846795 -5736,5514:477,-147,-57,0,0,0.0860028 -5737,5514:476,-146,-57,0,0,0.0891717 -5738,5514:475,-145,-57,0,0,0.0893639 -5739,5514:374,-144,-57,0,0,0.0894561 -5740,5514:373,-143,-57,0,0,0.0884567 -5741,5514:372,-142,-57,0,0,0.0898081 -5742,5514:371,-141,-57,0,0,0.0917159 -5743,5514:370,-140,-57,0,0,0.0890969 -5744,5513:479,-139,-57,0,0,0.0930771 -5745,5513:478,-138,-57,0,0,0.0958986 -5746,5513:477,-137,-57,0,0,0.0950912 -5747,5513:476,-136,-57,0,0,0.0909228 -5748,5513:475,-135,-57,0,0,0.092489 -5749,5513:374,-134,-57,0,0,0.0966228 -5750,5513:373,-133,-57,0,0,0.0979763 -5751,5513:372,-132,-57,0,0,0.0996966 -5752,5513:371,-131,-57,0,0,0.099586 -5753,5513:370,-130,-57,0,0,0.0992458 -5754,5512:479,-129,-57,0,0,0.100344 -5755,5512:478,-128,-57,0,0,0.10136 -5756,5512:477,-127,-57,0,0,0.102082 -5757,5512:476,-126,-57,0,0,0.103247 -5758,5512:475,-125,-57,0,0,0.10228 -5759,5512:374,-124,-57,0,0,0.100911 -5760,5512:373,-123,-57,0,0,0.0999736 -5761,5512:372,-122,-57,0,0,0.100474 -5762,5512:371,-121,-57,0,0,0.101182 -5763,5512:370,-120,-57,0,0,0.10319 -5764,5511:479,-119,-57,0,0,0.103028 -5765,5511:478,-118,-57,0,0,0.104327 -5766,5511:477,-117,-57,0,0,0.106507 -5767,5511:476,-116,-57,0,0,0.108667 -5768,5511:475,-115,-57,0,0,0.107587 -5769,5511:374,-114,-57,0,0,0.110714 -5770,5511:373,-113,-57,0,0,0.11117 -5771,5511:372,-112,-57,0,0,0.112322 -5772,5511:371,-111,-57,0,0,0.109756 -5773,5511:370,-110,-57,0,0,0.106331 -5774,5510:479,-109,-57,0,0,0.108071 -5775,5510:478,-108,-57,0,0,0.11037 -5776,5510:477,-107,-57,0,0,0.110562 -5777,5510:476,-106,-57,0,0,0.110249 -5778,5510:475,-105,-57,0,0,0.109566 -5779,5510:374,-104,-57,0,0,0.108687 -5780,5510:373,-103,-57,0,0,0.107429 -5781,5510:372,-102,-57,0,0,0.104077 -5782,5510:371,-101,-57,0,0,0.101556 -5783,5510:370,-100,-57,0,0,0.103323 -5784,5509:479,-99,-57,0,0,0.102649 -5785,5509:478,-98,-57,0,0,0.100112 -5786,5509:477,-97,-57,0,0,0.099586 -5787,5509:476,-96,-57,0,0,0.100818 -5788,5509:475,-95,-57,0,0,0.0996136 -5789,5509:374,-94,-57,0,0,0.0997334 -5790,5509:373,-93,-57,0,0,0.100455 -5791,5509:372,-92,-57,0,0,0.100958 -5792,5509:371,-91,-57,0,0,0.0986869 -5793,5509:370,-90,-57,0,0,0.102148 -5794,5508:479,-89,-57,0,0,0.101763 -5795,5508:478,-88,-57,0,0,0.107016 -5796,5508:477,-87,-57,0,0,0.110774 -5797,5508:476,-86,-57,0,0,0.108468 -5798,5508:475,-85,-57,0,0,0.103991 -5799,5508:374,-84,-57,0,0,0.103609 -5800,5508:373,-83,-57,0,0,0.105339 -5801,5508:372,-82,-57,0,0,0.106448 -5802,5508:371,-81,-57,0,0,0.100874 -5803,5508:370,-80,-57,0,0,0.0867406 -5804,5507:479,-79,-57,0,0,0.0863265 -5805,5507:478,-78,-57,0,0,0.088316 -5806,5507:477,-77,-57,0,0,0.0939216 -5807,5507:476,-76,-57,0,0,0.100011 -5808,5507:475,-75,-57,0,0,0.0989614 -5809,5507:374,-74,-57,0,0,0.100409 -5810,5507:373,-73,-57,0,0,0.10196 -5811,5507:372,-72,-57,0,0,0.100298 -5812,5507:371,-71,-57,0,0,0.0977767 -5813,5507:370,-70,-57,0,0,0.092558 -5814,5506:479,-69,-57,0,0,0.0889802 -5815,5506:478,-68,-57,0,0,0.0819335 -5816,5506:477,-67,-57,0,0,0.0851426 -5817,5506:476,-66,-57,0,0,0.0820652 -5818,5506:475,-65,-57,0,0,0.0817328 -5819,5506:374,-64,-57,0,0,0.0815943 -5820,5506:373,-63,-57,0,0,0.081548 -5821,5506:372,-62,-57,0,0,0.0876976 -5822,5506:371,-61,-57,0,0,0.0820574 -5823,5506:370,-60,-57,0,0,0.0871483 -5824,5505:477,-57,-57,0,0,0.0793666 -5825,5505:476,-56,-57,0,0,0.0771141 -5826,5505:475,-55,-57,0,0,0.0766111 -5827,5505:374,-54,-57,0,0,0.0759379 -5828,5505:373,-53,-57,0,0,0.07565 -5829,5505:372,-52,-57,0,0,0.0749775 -5830,5505:371,-51,-57,0,0,0.0750273 -5831,5505:370,-50,-57,0,0,0.0750131 -5832,5504:479,-49,-57,0,0,0.0749988 -5833,5504:478,-48,-57,0,0,0.0749846 -5834,5504:477,-47,-57,0,0,0.0749703 -5835,5504:476,-46,-57,0,0,0.0749703 -5836,5504:475,-45,-57,0,0,0.0749775 -5837,5504:374,-44,-57,0,0,0.0749703 -5838,5504:373,-43,-57,0,0,0.074949 -5839,5504:372,-42,-57,0,0,0.0749418 -5840,5504:371,-41,-57,0,0,0.074949 -5841,5504:370,-40,-57,0,0,0.0749562 -5842,5503:479,-39,-57,0,0,0.0749631 -5843,5503:478,-38,-57,0,0,0.0749631 -5844,5503:477,-37,-57,0,0,0.0749703 -5845,5503:476,-36,-57,0,0,0.0749775 -5846,5503:475,-35,-57,0,0,0.0749916 -5847,5503:374,-34,-57,0,0,0.0749988 -5848,5503:373,-33,-57,0,0,0.0749988 -5849,5503:372,-32,-57,0,0,0.0749988 -5850,5503:371,-31,-57,0,0,0.0749916 -5851,5503:370,-30,-57,0,0,0.0749916 -5852,5502:479,-29,-57,0,0,0.0749916 -5853,5502:478,-28,-57,0,0,0.0749916 -5854,5502:477,-27,-57,0,0,0.0749846 -5855,5502:476,-26,-57,0,0,0.0749846 -5856,5502:475,-25,-57,0,0,0.0749775 -5857,5502:374,-24,-57,0,0,0.0749703 -5858,5502:373,-23,-57,0,0,0.0749631 -5859,5502:372,-22,-57,0,0,0.074949 -5860,5502:371,-21,-57,0,0,0.0749346 -5861,5502:370,-20,-57,0,0,0.0749205 -5862,5501:479,-19,-57,0,0,0.074899 -5863,5501:478,-18,-57,0,0,0.0748777 -5864,5501:477,-17,-57,0,0,0.0748636 -5865,5501:476,-16,-57,0,0,0.0748564 -5866,5501:475,-15,-57,0,0,0.0748493 -5867,5501:374,-14,-57,0,0,0.0748493 -5868,5501:373,-13,-57,0,0,0.0748564 -5869,5501:372,-12,-57,0,0,0.0748564 -5870,5501:371,-11,-57,0,0,0.0748705 -5871,5501:370,-10,-57,0,0,0.0748777 -5872,5500:479,-9,-57,0,0,0.0748705 -5873,5500:478,-8,-57,0,0,0.0748705 -5874,5500:477,-7,-57,0,0,0.0748705 -5875,5500:476,-6,-57,0,0,0.0748705 -5876,5500:475,-5,-57,0,0,0.0748636 -5877,5500:374,-4,-57,0,0,0.0748564 -5878,5500:373,-3,-57,0,0,0.0748493 -5879,5500:372,-2,-57,0,0,0.0748564 -5880,5500:371,-1,-57,0,0,0.0748564 -5881,3500:371,0,-57,0,0,0.0748636 -5882,3500:371,1,-57,0,0,0.0748705 -5883,3500:372,2,-57,0,0,0.074892 -5884,3500:373,3,-57,0,0,0.0748849 -5885,3500:374,4,-57,0,0,0.0748777 -5886,3500:475,5,-57,0,0,0.0748777 -5887,3500:476,6,-57,0,0,0.074892 -5888,3500:477,7,-57,0,0,0.0749062 -5889,3500:478,8,-57,0,0,0.0749133 -5890,3500:479,9,-57,0,0,0.0749275 -5891,3501:370,10,-57,0,0,0.074949 -5892,3501:371,11,-57,0,0,0.0749703 -5893,3501:372,12,-57,0,0,0.0749562 -5894,3501:373,13,-57,0,0,0.0749562 -5895,3501:374,14,-57,0,0,0.0749562 -5896,3501:475,15,-57,0,0,0.0749133 -5897,3501:476,16,-57,0,0,0.0748636 -5898,3501:477,17,-57,0,0,0.0748349 -5899,3501:478,18,-57,0,0,0.0747711 -5900,3501:479,19,-57,0,0,0.0747425 -5901,3502:370,20,-57,0,0,0.0748137 -5902,3502:371,21,-57,0,0,0.0748065 -5903,3502:372,22,-57,0,0,0.074764 -5904,3502:373,23,-57,0,0,0.074764 -5905,3502:374,24,-57,0,0,0.074764 -5906,3502:475,25,-57,0,0,0.0747497 -5907,3502:476,26,-57,0,0,0.074892 -5908,3502:477,27,-57,0,0,0.0750558 -5909,3502:478,28,-57,0,0,0.0753272 -5910,3502:479,29,-57,0,0,0.0753344 -5911,3503:370,30,-57,0,0,0.0752273 -5912,3503:371,31,-57,0,0,0.0751987 -5913,3503:372,32,-57,0,0,0.0750843 -5914,3503:373,33,-57,0,0,0.0748137 -5915,3503:374,34,-57,0,0,0.0748493 -5916,3503:475,35,-57,0,0,0.0748636 -5917,3503:476,36,-57,0,0,0.0748705 -5918,3503:477,37,-57,0,0,0.0748705 -5919,3503:478,38,-57,0,0,0.0748636 -5920,3503:479,39,-57,0,0,0.0748564 -5921,3504:370,40,-57,0,0,0.074828 -5922,3504:371,41,-57,0,0,0.0748493 -5923,3504:372,42,-57,0,0,0.0749062 -5924,3504:373,43,-57,0,0,0.0749631 -5925,3504:374,44,-57,0,0,0.0748349 -5926,3504:475,45,-57,0,0,0.0748493 -5927,3504:476,46,-57,0,0,0.0748705 -5928,3504:477,47,-57,0,0,0.0748777 -5929,3504:478,48,-57,0,0,0.0748705 -5930,3504:479,49,-57,0,0,0.0748705 -5931,3505:370,50,-57,0,0,0.0748849 -5932,3505:371,51,-57,0,0,0.0749062 -5933,3505:372,52,-57,0,0,0.0749133 -5934,3505:373,53,-57,0,0,0.0749275 -5935,3505:374,54,-57,0,0,0.0749346 -5936,3505:475,55,-57,0,0,0.0749275 -5937,3505:476,56,-57,0,0,0.0749775 -5938,3505:477,57,-57,0,0,0.0749346 -5939,3505:478,58,-57,0,0,0.0749418 -5940,3505:479,59,-57,0,0,0.0749418 -5941,3506:370,60,-57,0,0,0.0749418 -5942,3506:371,61,-57,0,0,0.0749631 -5943,3506:372,62,-57,0,0,0.0749562 -5944,3506:373,63,-57,0,0,0.0749562 -5945,3506:374,64,-57,0,0,0.0749631 -5946,3506:475,65,-57,0,0,0.0749703 -5947,3506:476,66,-57,0,0,0.0749846 -5948,3506:477,67,-57,0,0,0.0749916 -5949,3506:478,68,-57,0,0,0.0749775 -5950,3506:479,69,-57,0,0,0.0750131 -5951,3507:370,70,-57,0,0,0.0749562 -5952,3507:371,71,-57,0,0,0.0751059 -5953,3507:372,72,-57,0,0,0.0749275 -5954,3507:374,74,-57,0,0,0.0752559 -5955,3507:475,75,-57,0,0,0.0757937 -5956,3507:476,76,-57,0,0,0.0749846 -5957,3507:477,77,-57,0,0,0.074899 -5958,3507:478,78,-57,0,0,0.0753417 -5959,3507:479,79,-57,0,0,0.0749916 -5960,3508:370,80,-57,0,0,0.0749631 -5961,3508:371,81,-57,0,0,0.0750273 -5962,3508:372,82,-57,0,0,0.075063 -5963,3508:373,83,-57,0,0,0.0754562 -5964,3508:374,84,-57,0,0,0.0748705 -5965,3508:475,85,-57,0,0,0.0749346 -5966,3508:476,86,-57,0,0,0.0749418 -5967,3508:477,87,-57,0,0,0.0749346 -5968,3508:478,88,-57,0,0,0.074892 -5969,3508:479,89,-57,0,0,0.0755424 -5970,3509:370,90,-57,0,0,0.0758155 -5971,3509:371,91,-57,0,0,0.0770046 -5972,3509:372,92,-57,0,0,0.0764296 -5973,3509:373,93,-57,0,0,0.0754779 -5974,3509:374,94,-57,0,0,0.0749916 -5975,3509:475,95,-57,0,0,0.0750201 -5976,3509:476,96,-57,0,0,0.0750416 -5977,3509:477,97,-57,0,0,0.075063 -5978,3509:478,98,-57,0,0,0.0750702 -5979,3509:479,99,-57,0,0,0.0750773 -5980,3510:370,100,-57,0,0,0.0750773 -5981,3510:371,101,-57,0,0,0.075063 -5982,3510:372,102,-57,0,0,0.0750488 -5983,3510:373,103,-57,0,0,0.075006 -5984,3510:374,104,-57,0,0,0.075006 -5985,3510:475,105,-57,0,0,0.0750131 -5986,3510:476,106,-57,0,0,0.0749916 -5987,3510:477,107,-57,0,0,0.0749916 -5988,3510:478,108,-57,0,0,0.0749916 -5989,3510:479,109,-57,0,0,0.0749846 -5990,3511:370,110,-57,0,0,0.0749631 -5991,3511:371,111,-57,0,0,0.0749562 -5992,3511:372,112,-57,0,0,0.0749631 -5993,3511:373,113,-57,0,0,0.0749346 -5994,3511:374,114,-57,0,0,0.0757722 -5995,3511:475,115,-57,0,0,0.0779075 -5996,3511:476,116,-57,0,0,0.0752415 -5997,3511:477,117,-57,0,0,0.0751558 -5998,3511:478,118,-57,0,0,0.0784555 -5999,3511:479,119,-57,0,0,0.0795921 -6000,3512:370,120,-57,0,0,0.0804619 -6001,3512:371,121,-57,0,0,0.0847113 -6002,3512:372,122,-57,0,0,0.0877551 -6003,3512:373,123,-57,0,0,0.0883079 -6004,3512:374,124,-57,0,0,0.0889802 -6005,3512:475,125,-57,0,0,0.0891717 -6006,3512:476,126,-57,0,0,0.0889469 -6007,3512:477,127,-57,0,0,0.0878704 -6008,3512:478,128,-57,0,0,0.0874676 -6009,3512:479,129,-57,0,0,0.0853911 -6010,3513:370,130,-57,0,0,0.0864725 -6011,3513:371,131,-57,0,0,0.0867814 -6012,3513:372,132,-57,0,0,0.0906516 -6013,3513:373,133,-57,0,0,0.08959 -6014,3513:374,134,-57,0,0,0.0781663 -6015,3513:475,135,-57,0,0,0.0827956 -6016,3513:476,136,-57,0,0,0.0795168 -6017,3513:477,137,-57,0,0,0.0800599 -6018,3513:478,138,-57,0,0,0.0754562 -6019,3513:479,139,-57,0,0,0.0753703 -6020,3514:370,140,-57,0,0,0.0765166 -6021,3514:371,141,-57,0,0,0.0780775 -6022,3514:372,142,-57,0,0,0.079577 -6023,3514:373,143,-57,0,0,0.0798634 -6024,3514:374,144,-57,0,0,0.0796146 -6025,3514:475,145,-57,0,0,0.0822899 -6026,3514:476,146,-57,0,0,0.0803785 -6027,3514:477,147,-57,0,0,0.0760606 -6028,3514:478,148,-57,0,0,0.0759019 -6029,3514:479,149,-57,0,0,0.0756141 -6030,3515:370,150,-57,0,0,0.0756787 -6031,3515:371,151,-57,0,0,0.075686 -6032,3515:372,152,-57,0,0,0.0754275 -6033,3515:373,153,-57,0,0,0.0753203 -6034,3515:374,154,-57,0,0,0.0753489 -6035,3515:475,155,-57,0,0,0.0752343 -6036,3515:476,156,-57,0,0,0.0751558 -6037,3515:477,157,-57,0,0,0.0750773 -6038,3515:478,158,-57,0,0,0.0750773 -6039,3515:479,159,-57,0,0,0.075063 -6040,3516:370,160,-57,0,0,0.0750702 -6041,3516:371,161,-57,0,0,0.0750773 -6042,3516:372,162,-57,0,0,0.0750702 -6043,3516:373,163,-57,0,0,0.0750843 -6044,3516:374,164,-57,0,0,0.0750915 -6045,3516:475,165,-57,0,0,0.0751486 -6046,3516:476,166,-57,0,0,0.0752129 -6047,3516:477,167,-57,0,0,0.0752559 -6048,3516:478,168,-57,0,0,0.0758225 -6049,3516:479,169,-57,0,0,0.0782775 -6050,3517:370,170,-57,0,0,0.0796146 -6051,3517:371,171,-57,0,0,0.07969 -6052,3517:372,172,-57,0,0,0.0821503 -6053,3517:373,173,-57,0,0,0.0782108 -6054,3517:374,174,-57,0,0,0.0756285 -6055,3517:475,175,-57,0,0,0.0769462 -6056,3517:476,176,-57,0,0,0.090533 -6057,3517:477,177,-57,0,0,0.088316 -6058,3517:478,178,-57,0,0,0.0825073 -6059,3517:479,179,-57,0,0,0.0931811 -6060,3518:370,180,-57,0,0,0.0915705 -6061,5518:360,-180,-56,0,0,0.110138 -6062,5517:469,-179,-56,0,0,0.0982946 -6063,5517:468,-178,-56,0,0,0.0975051 -6064,5517:467,-177,-56,0,0,0.0968562 -6065,5517:466,-176,-56,0,0,0.0947733 -6066,5517:465,-175,-56,0,0,0.0946147 -6067,5517:364,-174,-56,0,0,0.0952592 -6068,5517:363,-173,-56,0,0,0.0917072 -6069,5517:362,-172,-56,0,0,0.0933723 -6070,5517:361,-171,-56,0,0,0.0919986 -6071,5517:360,-170,-56,0,0,0.0904146 -6072,5516:469,-169,-56,0,0,0.0873611 -6073,5516:468,-168,-56,0,0,0.0859705 -6074,5516:467,-167,-56,0,0,0.0862535 -6075,5516:466,-166,-56,0,0,0.0862212 -6076,5516:465,-165,-56,0,0,0.0856399 -6077,5516:364,-164,-56,0,0,0.0855033 -6078,5516:363,-163,-56,0,0,0.0842109 -6079,5516:362,-162,-56,0,0,0.083926 -6080,5516:361,-161,-56,0,0,0.0845124 -6081,5516:360,-160,-56,0,0,0.0849187 -6082,5515:469,-159,-56,0,0,0.0852946 -6083,5515:468,-158,-56,0,0,0.0856802 -6084,5515:467,-157,-56,0,0,0.0861402 -6085,5515:466,-156,-56,0,0,0.0862535 -6086,5515:465,-155,-56,0,0,0.0866024 -6087,5515:364,-154,-56,0,0,0.0862859 -6088,5515:363,-153,-56,0,0,0.0854954 -6089,5515:362,-152,-56,0,0,0.0860514 -6090,5515:361,-151,-56,0,0,0.0871648 -6091,5515:360,-150,-56,0,0,0.0913058 -6092,5514:469,-149,-56,0,0,0.0929644 -6093,5514:468,-148,-56,0,0,0.092222 -6094,5514:467,-147,-56,0,0,0.0868791 -6095,5514:466,-146,-56,0,0,0.087714 -6096,5514:465,-145,-56,0,0,0.0875908 -6097,5514:364,-144,-56,0,0,0.0921619 -6098,5514:363,-143,-56,0,0,0.0917328 -6099,5514:362,-142,-56,0,0,0.0898753 -6100,5514:361,-141,-56,0,0,0.090855 -6101,5514:360,-140,-56,0,0,0.0914594 -6102,5513:469,-139,-56,0,0,0.0941056 -6103,5513:468,-138,-56,0,0,0.0958899 -6104,5513:467,-137,-56,0,0,0.0957386 -6105,5513:466,-136,-56,0,0,0.0949674 -6106,5513:465,-135,-56,0,0,0.0973334 -6107,5513:364,-134,-56,0,0,0.0989247 -6108,5513:363,-133,-56,0,0,0.0990439 -6109,5513:362,-132,-56,0,0,0.0991813 -6110,5513:361,-131,-56,0,0,0.099752 -6111,5513:360,-130,-56,0,0,0.100502 -6112,5512:469,-129,-56,0,0,0.103066 -6113,5512:468,-128,-56,0,0,0.1028 -6114,5512:467,-127,-56,0,0,0.103418 -6115,5512:466,-126,-56,0,0,0.104567 -6116,5512:465,-125,-56,0,0,0.104058 -6117,5512:364,-124,-56,0,0,0.102167 -6118,5512:363,-123,-56,0,0,0.101537 -6119,5512:362,-122,-56,0,0,0.100837 -6120,5512:361,-121,-56,0,0,0.101904 -6121,5512:360,-120,-56,0,0,0.105029 -6122,5511:469,-119,-56,0,0,0.106663 -6123,5511:468,-118,-56,0,0,0.107301 -6124,5511:467,-117,-56,0,0,0.10817 -6125,5511:466,-116,-56,0,0,0.109235 -6126,5511:465,-115,-56,0,0,0.109857 -6127,5511:364,-114,-56,0,0,0.110108 -6128,5511:363,-113,-56,0,0,0.111668 -6129,5511:362,-112,-56,0,0,0.113795 -6130,5511:361,-111,-56,0,0,0.113774 -6131,5511:360,-110,-56,0,0,0.110229 -6132,5510:469,-109,-56,0,0,0.108866 -6133,5510:468,-108,-56,0,0,0.111587 -6134,5510:467,-107,-56,0,0,0.113495 -6135,5510:466,-106,-56,0,0,0.112476 -6136,5510:465,-105,-56,0,0,0.108458 -6137,5510:364,-104,-56,0,0,0.106262 -6138,5510:363,-103,-56,0,0,0.105252 -6139,5510:362,-102,-56,0,0,0.104827 -6140,5510:361,-101,-56,0,0,0.104576 -6141,5510:360,-100,-56,0,0,0.103304 -6142,5509:469,-99,-56,0,0,0.10212 -6143,5509:468,-98,-56,0,0,0.100837 -6144,5509:467,-97,-56,0,0,0.102857 -6145,5509:466,-96,-56,0,0,0.105252 -6146,5509:465,-95,-56,0,0,0.103886 -6147,5509:364,-94,-56,0,0,0.102271 -6148,5509:363,-93,-56,0,0,0.101547 -6149,5509:362,-92,-56,0,0,0.102205 -6150,5509:361,-91,-56,0,0,0.103953 -6151,5509:360,-90,-56,0,0,0.101988 -6152,5508:469,-89,-56,0,0,0.10165 -6153,5508:468,-88,-56,0,0,0.111485 -6154,5508:467,-87,-56,0,0,0.112887 -6155,5508:466,-86,-56,0,0,0.11032 -6156,5508:465,-85,-56,0,0,0.107301 -6157,5508:364,-84,-56,0,0,0.105912 -6158,5508:363,-83,-56,0,0,0.10814 -6159,5508:362,-82,-56,0,0,0.109606 -6160,5508:361,-81,-56,0,0,0.111893 -6161,5508:360,-80,-56,0,0,0.110299 -6162,5507:469,-79,-56,0,0,0.10027 -6163,5507:468,-78,-56,0,0,0.0920156 -6164,5507:467,-77,-56,0,0,0.0899004 -6165,5507:466,-76,-56,0,0,0.0922133 -6166,5507:465,-75,-56,0,0,0.0959255 -6167,5507:364,-74,-56,0,0,0.0987326 -6168,5507:363,-73,-56,0,0,0.108916 -6169,5507:362,-72,-56,0,0,0.104106 -6170,5507:361,-71,-56,0,0,0.105155 -6171,5507:360,-70,-56,0,0,0.10531 -6172,5506:469,-69,-56,0,0,0.10357 -6173,5506:468,-68,-56,0,0,0.0978492 -6174,5506:467,-67,-56,0,0,0.0966945 -6175,5506:466,-66,-56,0,0,0.0886891 -6176,5506:465,-65,-56,0,0,0.0808733 -6177,5506:364,-64,-56,0,0,0.0796146 -6178,5506:363,-63,-56,0,0,0.0793591 -6179,5506:362,-62,-56,0,0,0.0796071 -6180,5506:361,-61,-56,0,0,0.0796447 -6181,5506:360,-60,-56,0,0,0.0797653 -6182,5505:469,-59,-56,0,0,0.0799164 -6183,5505:468,-58,-56,0,0,0.080007 -6184,5505:467,-57,-56,0,0,0.0780996 -6185,5505:466,-56,-56,0,0,0.0784333 -6186,5505:465,-55,-56,0,0,0.0775981 -6187,5505:364,-54,-56,0,0,0.0763281 -6188,5505:363,-53,-56,0,0,0.0751059 -6189,5505:362,-52,-56,0,0,0.0751059 -6190,5505:361,-51,-56,0,0,0.0749988 -6191,5505:360,-50,-56,0,0,0.0749846 -6192,5504:469,-49,-56,0,0,0.0749775 -6193,5504:468,-48,-56,0,0,0.0749846 -6194,5504:467,-47,-56,0,0,0.0749916 -6195,5504:466,-46,-56,0,0,0.075006 -6196,5504:465,-45,-56,0,0,0.0749988 -6197,5504:364,-44,-56,0,0,0.0749775 -6198,5504:363,-43,-56,0,0,0.0749631 -6199,5504:362,-42,-56,0,0,0.074949 -6200,5504:361,-41,-56,0,0,0.0749275 -6201,5504:360,-40,-56,0,0,0.0749133 -6202,5503:469,-39,-56,0,0,0.0749062 -6203,5503:468,-38,-56,0,0,0.0749205 -6204,5503:467,-37,-56,0,0,0.0749346 -6205,5503:466,-36,-56,0,0,0.0749418 -6206,5503:465,-35,-56,0,0,0.0749703 -6207,5503:364,-34,-56,0,0,0.0749846 -6208,5503:363,-33,-56,0,0,0.0749846 -6209,5503:362,-32,-56,0,0,0.0749916 -6210,5503:361,-31,-56,0,0,0.0749988 -6211,5503:360,-30,-56,0,0,0.0749916 -6212,5502:469,-29,-56,0,0,0.0749916 -6213,5502:468,-28,-56,0,0,0.0749846 -6214,5502:467,-27,-56,0,0,0.0749846 -6215,5502:466,-26,-56,0,0,0.0749846 -6216,5502:465,-25,-56,0,0,0.0749846 -6217,5502:364,-24,-56,0,0,0.0749703 -6218,5502:363,-23,-56,0,0,0.0749631 -6219,5502:362,-22,-56,0,0,0.0749418 -6220,5502:361,-21,-56,0,0,0.0749275 -6221,5502:360,-20,-56,0,0,0.0749133 -6222,5501:469,-19,-56,0,0,0.074899 -6223,5501:468,-18,-56,0,0,0.0748777 -6224,5501:467,-17,-56,0,0,0.0748636 -6225,5501:466,-16,-56,0,0,0.074892 -6226,5501:465,-15,-56,0,0,0.0749275 -6227,5501:364,-14,-56,0,0,0.0749133 -6228,5501:363,-13,-56,0,0,0.0748849 -6229,5501:362,-12,-56,0,0,0.0748777 -6230,5501:361,-11,-56,0,0,0.0748705 -6231,5501:360,-10,-56,0,0,0.0748636 -6232,5500:469,-9,-56,0,0,0.0748705 -6233,5500:468,-8,-56,0,0,0.0748636 -6234,5500:467,-7,-56,0,0,0.0748564 -6235,5500:466,-6,-56,0,0,0.0748636 -6236,5500:465,-5,-56,0,0,0.0748636 -6237,5500:364,-4,-56,0,0,0.0748705 -6238,5500:363,-3,-56,0,0,0.0748705 -6239,5500:362,-2,-56,0,0,0.0748705 -6240,5500:361,-1,-56,0,0,0.0748636 -6241,3500:361,0,-56,0,0,0.0748777 -6242,3500:361,1,-56,0,0,0.0748849 -6243,3500:362,2,-56,0,0,0.0748849 -6244,3500:363,3,-56,0,0,0.0748777 -6245,3500:364,4,-56,0,0,0.0748705 -6246,3500:465,5,-56,0,0,0.0748849 -6247,3500:466,6,-56,0,0,0.074899 -6248,3500:467,7,-56,0,0,0.0749205 -6249,3500:468,8,-56,0,0,0.0749275 -6250,3500:469,9,-56,0,0,0.0749346 -6251,3501:360,10,-56,0,0,0.074949 -6252,3501:361,11,-56,0,0,0.0749418 -6253,3501:362,12,-56,0,0,0.074949 -6254,3501:363,13,-56,0,0,0.0749631 -6255,3501:364,14,-56,0,0,0.074949 -6256,3501:465,15,-56,0,0,0.0749205 -6257,3501:466,16,-56,0,0,0.0749062 -6258,3501:467,17,-56,0,0,0.0748849 -6259,3501:468,18,-56,0,0,0.0748636 -6260,3501:469,19,-56,0,0,0.0747996 -6261,3502:360,20,-56,0,0,0.0747425 -6262,3502:361,21,-56,0,0,0.0748208 -6263,3502:362,22,-56,0,0,0.0748777 -6264,3502:363,23,-56,0,0,0.0748777 -6265,3502:364,24,-56,0,0,0.0748564 -6266,3502:465,25,-56,0,0,0.0748564 -6267,3502:466,26,-56,0,0,0.0748564 -6268,3502:467,27,-56,0,0,0.0748849 -6269,3502:468,28,-56,0,0,0.075006 -6270,3502:469,29,-56,0,0,0.0753417 -6271,3503:360,30,-56,0,0,0.0753631 -6272,3503:361,31,-56,0,0,0.0751486 -6273,3503:362,32,-56,0,0,0.0751771 -6274,3503:363,33,-56,0,0,0.0751843 -6275,3503:364,34,-56,0,0,0.0751344 -6276,3503:465,35,-56,0,0,0.0749062 -6277,3503:466,36,-56,0,0,0.0748849 -6278,3503:467,37,-56,0,0,0.0748636 -6279,3503:468,38,-56,0,0,0.0748705 -6280,3503:469,39,-56,0,0,0.0748777 -6281,3504:360,40,-56,0,0,0.0748705 -6282,3504:361,41,-56,0,0,0.0748493 -6283,3504:362,42,-56,0,0,0.0748705 -6284,3504:363,43,-56,0,0,0.0749346 -6285,3504:364,44,-56,0,0,0.0750201 -6286,3504:465,45,-56,0,0,0.0754061 -6287,3504:466,46,-56,0,0,0.0751987 -6288,3504:467,47,-56,0,0,0.0748137 -6289,3504:468,48,-56,0,0,0.074828 -6290,3504:469,49,-56,0,0,0.0748349 -6291,3505:360,50,-56,0,0,0.0748421 -6292,3505:361,51,-56,0,0,0.0748564 -6293,3505:362,52,-56,0,0,0.0748636 -6294,3505:363,53,-56,0,0,0.0748636 -6295,3505:364,54,-56,0,0,0.0748564 -6296,3505:465,55,-56,0,0,0.0752844 -6297,3505:466,56,-56,0,0,0.0750773 -6298,3505:467,57,-56,0,0,0.074949 -6299,3505:468,58,-56,0,0,0.0749275 -6300,3505:469,59,-56,0,0,0.0749418 -6301,3506:360,60,-56,0,0,0.0749562 -6302,3506:361,61,-56,0,0,0.0749562 -6303,3506:362,62,-56,0,0,0.0750843 -6304,3506:363,63,-56,0,0,0.0749846 -6305,3506:364,64,-56,0,0,0.0750131 -6306,3506:465,65,-56,0,0,0.0751344 -6307,3506:466,66,-56,0,0,0.0750273 -6308,3506:467,67,-56,0,0,0.0750558 -6309,3506:468,68,-56,0,0,0.0758586 -6310,3506:469,69,-56,0,0,0.0779591 -6311,3507:360,70,-56,0,0,0.0765967 -6312,3507:361,71,-56,0,0,0.075974 -6313,3507:362,72,-56,0,0,0.0764296 -6314,3507:364,74,-56,0,0,0.0756285 -6315,3507:465,75,-56,0,0,0.0759452 -6316,3507:466,76,-56,0,0,0.0761256 -6317,3507:467,77,-56,0,0,0.0755926 -6318,3507:468,78,-56,0,0,0.0754921 -6319,3507:469,79,-56,0,0,0.0755207 -6320,3508:360,80,-56,0,0,0.07565 -6321,3508:361,81,-56,0,0,0.0754849 -6322,3508:362,82,-56,0,0,0.0757795 -6323,3508:363,83,-56,0,0,0.0766839 -6324,3508:364,84,-56,0,0,0.0765166 -6325,3508:465,85,-56,0,0,0.076039 -6326,3508:466,86,-56,0,0,0.0747852 -6327,3508:467,87,-56,0,0,0.074892 -6328,3508:468,88,-56,0,0,0.0749062 -6329,3508:469,89,-56,0,0,0.074899 -6330,3509:360,90,-56,0,0,0.0749631 -6331,3509:361,91,-56,0,0,0.0759452 -6332,3509:362,92,-56,0,0,0.0774365 -6333,3509:363,93,-56,0,0,0.0774658 -6334,3509:364,94,-56,0,0,0.0768877 -6335,3509:465,95,-56,0,0,0.0751059 -6336,3509:466,96,-56,0,0,0.0749846 -6337,3509:467,97,-56,0,0,0.0750201 -6338,3509:468,98,-56,0,0,0.0750345 -6339,3509:469,99,-56,0,0,0.0750273 -6340,3510:360,100,-56,0,0,0.0750131 -6341,3510:361,101,-56,0,0,0.075006 -6342,3510:362,102,-56,0,0,0.075006 -6343,3510:363,103,-56,0,0,0.0749988 -6344,3510:364,104,-56,0,0,0.0749916 -6345,3510:465,105,-56,0,0,0.0749988 -6346,3510:466,106,-56,0,0,0.0749988 -6347,3510:467,107,-56,0,0,0.0749846 -6348,3510:468,108,-56,0,0,0.074949 -6349,3510:469,109,-56,0,0,0.0750558 -6350,3511:360,110,-56,0,0,0.0753272 -6351,3511:361,111,-56,0,0,0.0764659 -6352,3511:362,112,-56,0,0,0.0786116 -6353,3511:363,113,-56,0,0,0.0788128 -6354,3511:364,114,-56,0,0,0.0751272 -6355,3511:465,115,-56,0,0,0.0783071 -6356,3511:466,116,-56,0,0,0.0798182 -6357,3511:467,117,-56,0,0,0.0818717 -6358,3511:468,118,-56,0,0,0.0834847 -6359,3511:469,119,-56,0,0,0.083532 -6360,3512:360,120,-56,0,0,0.0847592 -6361,3512:361,121,-56,0,0,0.0846637 -6362,3512:362,122,-56,0,0,0.0854151 -6363,3512:363,123,-56,0,0,0.0881755 -6364,3512:364,124,-56,0,0,0.0888054 -6365,3512:465,125,-56,0,0,0.0896821 -6366,3512:466,126,-56,0,0,0.0895731 -6367,3512:467,127,-56,0,0,0.0901193 -6368,3512:468,128,-56,0,0,0.0904316 -6369,3512:469,129,-56,0,0,0.0912717 -6370,3513:360,130,-56,0,0,0.0931639 -6371,3513:361,131,-56,0,0,0.0930771 -6372,3513:362,132,-56,0,0,0.0912886 -6373,3513:363,133,-56,0,0,0.0934679 -6374,3513:364,134,-56,0,0,0.0952946 -6375,3513:465,135,-56,0,0,0.0940092 -6376,3513:466,136,-56,0,0,0.0893724 -6377,3513:467,137,-56,0,0,0.0870748 -6378,3513:468,138,-56,0,0,0.0881921 -6379,3513:469,139,-56,0,0,0.0833749 -6380,3514:360,140,-56,0,0,0.0811335 -6381,3514:361,141,-56,0,0,0.0838944 -6382,3514:362,142,-56,0,0,0.0841632 -6383,3514:363,143,-56,0,0,0.0868791 -6384,3514:364,144,-56,0,0,0.0855999 -6385,3514:465,145,-56,0,0,0.0886475 -6386,3514:466,146,-56,0,0,0.084021 -6387,3514:467,147,-56,0,0,0.0797653 -6388,3514:468,148,-56,0,0,0.0806217 -6389,3514:469,149,-56,0,0,0.0767638 -6390,3515:360,150,-56,0,0,0.0758225 -6391,3515:361,151,-56,0,0,0.0756932 -6392,3515:362,152,-56,0,0,0.0767494 -6393,3515:363,153,-56,0,0,0.07614 -6394,3515:364,154,-56,0,0,0.0752916 -6395,3515:465,155,-56,0,0,0.0751272 -6396,3515:466,156,-56,0,0,0.0751128 -6397,3515:467,157,-56,0,0,0.0750987 -6398,3515:468,158,-56,0,0,0.0750915 -6399,3515:469,159,-56,0,0,0.0750702 -6400,3516:360,160,-56,0,0,0.0750702 -6401,3516:361,161,-56,0,0,0.0750702 -6402,3516:362,162,-56,0,0,0.0750558 -6403,3516:363,163,-56,0,0,0.075063 -6404,3516:364,164,-56,0,0,0.0750773 -6405,3516:465,165,-56,0,0,0.0751272 -6406,3516:466,166,-56,0,0,0.0755639 -6407,3516:467,167,-56,0,0,0.0813636 -6408,3516:468,168,-56,0,0,0.086448 -6409,3516:469,169,-56,0,0,0.0851905 -6410,3517:360,170,-56,0,0,0.0861402 -6411,3517:361,171,-56,0,0,0.0845522 -6412,3517:362,172,-56,0,0,0.0836263 -6413,3517:363,173,-56,0,0,0.0799012 -6414,3517:364,174,-56,0,0,0.0816328 -6415,3517:465,175,-56,0,0,0.102243 -6416,3517:466,176,-56,0,0,0.11119 -6417,3517:467,177,-56,0,0,0.109016 -6418,3517:468,178,-56,0,0,0.107065 -6419,3517:469,179,-56,0,0,0.110795 -6420,3518:360,180,-56,0,0,0.110138 -6421,5518:350,-180,-55,0,0,0.109736 -6422,5517:459,-179,-55,0,0,0.104942 -6423,5517:458,-178,-55,0,0,0.102092 -6424,5517:457,-177,-55,0,0,0.105339 -6425,5517:456,-176,-55,0,0,0.106145 -6426,5517:455,-175,-55,0,0,0.103446 -6427,5517:354,-174,-55,0,0,0.100967 -6428,5517:353,-173,-55,0,0,0.0978583 -6429,5517:352,-172,-55,0,0,0.0953124 -6430,5517:351,-171,-55,0,0,0.0923426 -6431,5517:350,-170,-55,0,0,0.0912205 -6432,5516:459,-169,-55,0,0,0.0885313 -6433,5516:458,-168,-55,0,0,0.0874349 -6434,5516:457,-167,-55,0,0,0.0874759 -6435,5516:456,-166,-55,0,0,0.0876154 -6436,5516:455,-165,-55,0,0,0.0873693 -6437,5516:354,-164,-55,0,0,0.0872629 -6438,5516:353,-163,-55,0,0,0.0872956 -6439,5516:352,-162,-55,0,0,0.086586 -6440,5516:351,-161,-55,0,0,0.0871321 -6441,5516:350,-160,-55,0,0,0.0877222 -6442,5515:459,-159,-55,0,0,0.087181 -6443,5515:458,-158,-55,0,0,0.0880847 -6444,5515:457,-157,-55,0,0,0.0885397 -6445,5515:456,-156,-55,0,0,0.0877551 -6446,5515:455,-155,-55,0,0,0.0870177 -6447,5515:354,-154,-55,0,0,0.0869851 -6448,5515:353,-153,-55,0,0,0.0868547 -6449,5515:352,-152,-55,0,0,0.0864643 -6450,5515:351,-151,-55,0,0,0.0901025 -6451,5515:350,-150,-55,0,0,0.090626 -6452,5514:459,-149,-55,0,0,0.0964972 -6453,5514:458,-148,-55,0,0,0.0951266 -6454,5514:457,-147,-55,0,0,0.0955961 -6455,5514:456,-146,-55,0,0,0.0920672 -6456,5514:455,-145,-55,0,0,0.0939392 -6457,5514:354,-144,-55,0,0,0.096865 -6458,5514:353,-143,-55,0,0,0.0978946 -6459,5514:352,-142,-55,0,0,0.09784 -6460,5514:351,-141,-55,0,0,0.0980218 -6461,5514:350,-140,-55,0,0,0.101135 -6462,5513:459,-139,-55,0,0,0.103466 -6463,5513:458,-138,-55,0,0,0.0984495 -6464,5513:457,-137,-55,0,0,0.095277 -6465,5513:456,-136,-55,0,0,0.0966854 -6466,5513:455,-135,-55,0,0,0.103637 -6467,5513:354,-134,-55,0,0,0.10165 -6468,5513:353,-133,-55,0,0,0.100149 -6469,5513:352,-132,-55,0,0,0.103095 -6470,5513:351,-131,-55,0,0,0.105068 -6471,5513:350,-130,-55,0,0,0.103342 -6472,5512:459,-129,-55,0,0,0.103676 -6473,5512:458,-128,-55,0,0,0.104682 -6474,5512:457,-127,-55,0,0,0.105513 -6475,5512:456,-126,-55,0,0,0.105649 -6476,5512:455,-125,-55,0,0,0.10449 -6477,5512:354,-124,-55,0,0,0.103867 -6478,5512:353,-123,-55,0,0,0.102687 -6479,5512:352,-122,-55,0,0,0.102573 -6480,5512:351,-121,-55,0,0,0.104653 -6481,5512:350,-120,-55,0,0,0.105834 -6482,5511:459,-119,-55,0,0,0.106653 -6483,5511:458,-118,-55,0,0,0.108637 -6484,5511:457,-117,-55,0,0,0.111689 -6485,5511:456,-116,-55,0,0,0.112753 -6486,5511:455,-115,-55,0,0,0.112209 -6487,5511:354,-114,-55,0,0,0.112189 -6488,5511:353,-113,-55,0,0,0.114752 -6489,5511:352,-112,-55,0,0,0.113072 -6490,5511:351,-111,-55,0,0,0.113175 -6491,5511:350,-110,-55,0,0,0.112928 -6492,5510:459,-109,-55,0,0,0.111607 -6493,5510:458,-108,-55,0,0,0.114252 -6494,5510:457,-107,-55,0,0,0.113661 -6495,5510:456,-106,-55,0,0,0.109816 -6496,5510:455,-105,-55,0,0,0.108002 -6497,5510:354,-104,-55,0,0,0.106928 -6498,5510:353,-103,-55,0,0,0.106175 -6499,5510:352,-102,-55,0,0,0.107498 -6500,5510:351,-101,-55,0,0,0.110249 -6501,5510:350,-100,-55,0,0,0.109245 -6502,5509:459,-99,-55,0,0,0.105902 -6503,5509:458,-98,-55,0,0,0.106009 -6504,5509:457,-97,-55,0,0,0.112825 -6505,5509:456,-96,-55,0,0,0.111597 -6506,5509:455,-95,-55,0,0,0.108081 -6507,5509:354,-94,-55,0,0,0.106741 -6508,5509:353,-93,-55,0,0,0.104875 -6509,5509:352,-92,-55,0,0,0.1056 -6510,5509:351,-91,-55,0,0,0.111078 -6511,5509:350,-90,-55,0,0,0.109335 -6512,5508:459,-89,-55,0,0,0.107666 -6513,5508:458,-88,-55,0,0,0.111872 -6514,5508:457,-87,-55,0,0,0.112353 -6515,5508:456,-86,-55,0,0,0.112969 -6516,5508:455,-85,-55,0,0,0.113392 -6517,5508:354,-84,-55,0,0,0.112804 -6518,5508:353,-83,-55,0,0,0.111709 -6519,5508:352,-82,-55,0,0,0.110179 -6520,5508:351,-81,-55,0,0,0.110815 -6521,5508:350,-80,-55,0,0,0.112281 -6522,5507:459,-79,-55,0,0,0.11419 -6523,5507:458,-78,-55,0,0,0.115024 -6524,5507:457,-77,-55,0,0,0.114231 -6525,5507:456,-76,-55,0,0,0.109045 -6526,5507:455,-75,-55,0,0,0.100242 -6527,5507:354,-74,-55,0,0,0.101669 -6528,5507:353,-73,-55,0,0,0.111505 -6529,5507:352,-72,-55,0,0,0.108856 -6530,5507:351,-71,-55,0,0,0.105824 -6531,5507:350,-70,-55,0,0,0.105533 -6532,5506:459,-69,-55,0,0,0.106898 -6533,5506:458,-68,-55,0,0,0.105387 -6534,5506:457,-67,-55,0,0,0.0937209 -6535,5506:456,-66,-55,0,0,0.0846238 -6536,5506:455,-65,-55,0,0,0.0853189 -6537,5506:354,-64,-55,0,0,0.0848548 -6538,5506:353,-63,-55,0,0,0.080774 -6539,5506:352,-62,-55,0,0,0.0827799 -6540,5506:351,-61,-55,0,0,0.0832963 -6541,5506:350,-60,-55,0,0,0.0844091 -6542,5505:459,-59,-55,0,0,0.0805608 -6543,5505:458,-58,-55,0,0,0.0797805 -6544,5505:457,-57,-55,0,0,0.0785299 -6545,5505:456,-56,-55,0,0,0.0779591 -6546,5505:455,-55,-55,0,0,0.0773044 -6547,5505:354,-54,-55,0,0,0.0759595 -6548,5505:353,-53,-55,0,0,0.0750201 -6549,5505:352,-52,-55,0,0,0.0749988 -6550,5505:351,-51,-55,0,0,0.0749916 -6551,5505:350,-50,-55,0,0,0.0750131 -6552,5504:459,-49,-55,0,0,0.0750201 -6553,5504:458,-48,-55,0,0,0.0750201 -6554,5504:457,-47,-55,0,0,0.0750201 -6555,5504:456,-46,-55,0,0,0.075006 -6556,5504:455,-45,-55,0,0,0.0749846 -6557,5504:354,-44,-55,0,0,0.0749846 -6558,5504:353,-43,-55,0,0,0.0749703 -6559,5504:352,-42,-55,0,0,0.0749562 -6560,5504:351,-41,-55,0,0,0.0749418 -6561,5504:350,-40,-55,0,0,0.0749275 -6562,5503:459,-39,-55,0,0,0.0749205 -6563,5503:458,-38,-55,0,0,0.0749205 -6564,5503:457,-37,-55,0,0,0.0749133 -6565,5503:456,-36,-55,0,0,0.0749346 -6566,5503:455,-35,-55,0,0,0.074949 -6567,5503:354,-34,-55,0,0,0.0749631 -6568,5503:353,-33,-55,0,0,0.0749846 -6569,5503:352,-32,-55,0,0,0.0749916 -6570,5503:351,-31,-55,0,0,0.0749916 -6571,5503:350,-30,-55,0,0,0.0749916 -6572,5502:459,-29,-55,0,0,0.0749916 -6573,5502:458,-28,-55,0,0,0.0749916 -6574,5502:457,-27,-55,0,0,0.0749916 -6575,5502:456,-26,-55,0,0,0.0749916 -6576,5502:455,-25,-55,0,0,0.0749846 -6577,5502:354,-24,-55,0,0,0.0749775 -6578,5502:353,-23,-55,0,0,0.0749562 -6579,5502:352,-22,-55,0,0,0.0749418 -6580,5502:351,-21,-55,0,0,0.0749275 -6581,5502:350,-20,-55,0,0,0.0749133 -6582,5501:459,-19,-55,0,0,0.0749062 -6583,5501:458,-18,-55,0,0,0.074892 -6584,5501:457,-17,-55,0,0,0.074899 -6585,5501:456,-16,-55,0,0,0.0749275 -6586,5501:455,-15,-55,0,0,0.0749988 -6587,5501:354,-14,-55,0,0,0.075006 -6588,5501:353,-13,-55,0,0,0.074949 -6589,5501:352,-12,-55,0,0,0.0749275 -6590,5501:351,-11,-55,0,0,0.0749062 -6591,5501:350,-10,-55,0,0,0.074892 -6592,5500:459,-9,-55,0,0,0.0749062 -6593,5500:458,-8,-55,0,0,0.074892 -6594,5500:457,-7,-55,0,0,0.0748777 -6595,5500:456,-6,-55,0,0,0.0748705 -6596,5500:455,-5,-55,0,0,0.0748849 -6597,5500:354,-4,-55,0,0,0.074892 -6598,5500:353,-3,-55,0,0,0.074899 -6599,5500:352,-2,-55,0,0,0.074892 -6600,5500:351,-1,-55,0,0,0.0748636 -6601,3500:351,0,-55,0,0,0.0748777 -6602,3500:351,1,-55,0,0,0.0748705 -6603,3500:352,2,-55,0,0,0.0748564 -6604,3500:353,3,-55,0,0,0.0748493 -6605,3500:354,4,-55,0,0,0.0748349 -6606,3500:455,5,-55,0,0,0.0748421 -6607,3500:456,6,-55,0,0,0.0748564 -6608,3500:457,7,-55,0,0,0.0748777 -6609,3500:458,8,-55,0,0,0.074899 -6610,3500:459,9,-55,0,0,0.0749133 -6611,3501:350,10,-55,0,0,0.0749346 -6612,3501:351,11,-55,0,0,0.074949 -6613,3501:352,12,-55,0,0,0.0749275 -6614,3501:353,13,-55,0,0,0.0749346 -6615,3501:354,14,-55,0,0,0.0749418 -6616,3501:455,15,-55,0,0,0.074949 -6617,3501:456,16,-55,0,0,0.0749346 -6618,3501:457,17,-55,0,0,0.0749205 -6619,3501:458,18,-55,0,0,0.0749133 -6620,3501:459,19,-55,0,0,0.0748636 -6621,3502:350,20,-55,0,0,0.0748493 -6622,3502:351,21,-55,0,0,0.0748137 -6623,3502:352,22,-55,0,0,0.0747852 -6624,3502:353,23,-55,0,0,0.0748564 -6625,3502:354,24,-55,0,0,0.074949 -6626,3502:455,25,-55,0,0,0.0749631 -6627,3502:456,26,-55,0,0,0.0749988 -6628,3502:457,27,-55,0,0,0.0750201 -6629,3502:458,28,-55,0,0,0.0751486 -6630,3502:459,29,-55,0,0,0.075313 -6631,3503:350,30,-55,0,0,0.0753847 -6632,3503:351,31,-55,0,0,0.0754634 -6633,3503:352,32,-55,0,0,0.0753847 -6634,3503:353,33,-55,0,0,0.0754849 -6635,3503:354,34,-55,0,0,0.0759019 -6636,3503:455,35,-55,0,0,0.0753775 -6637,3503:456,36,-55,0,0,0.0751486 -6638,3503:457,37,-55,0,0,0.0751272 -6639,3503:458,38,-55,0,0,0.0749703 -6640,3503:459,39,-55,0,0,0.0748636 -6641,3504:350,40,-55,0,0,0.0748564 -6642,3504:351,41,-55,0,0,0.0748564 -6643,3504:352,42,-55,0,0,0.0748564 -6644,3504:353,43,-55,0,0,0.0748777 -6645,3504:354,44,-55,0,0,0.0749418 -6646,3504:455,45,-55,0,0,0.0749775 -6647,3504:456,46,-55,0,0,0.0750843 -6648,3504:457,47,-55,0,0,0.0754921 -6649,3504:458,48,-55,0,0,0.0755711 -6650,3504:459,49,-55,0,0,0.0755639 -6651,3505:350,50,-55,0,0,0.0754061 -6652,3505:351,51,-55,0,0,0.0751843 -6653,3505:352,52,-55,0,0,0.0751128 -6654,3505:353,53,-55,0,0,0.0750702 -6655,3505:354,54,-55,0,0,0.0749062 -6656,3505:455,55,-55,0,0,0.074899 -6657,3505:456,56,-55,0,0,0.0749205 -6658,3505:457,57,-55,0,0,0.0749205 -6659,3505:458,58,-55,0,0,0.0749346 -6660,3505:459,59,-55,0,0,0.0749418 -6661,3506:350,60,-55,0,0,0.0749631 -6662,3506:351,61,-55,0,0,0.0750131 -6663,3506:352,62,-55,0,0,0.0753417 -6664,3506:353,63,-55,0,0,0.0750558 -6665,3506:354,64,-55,0,0,0.075837 -6666,3506:455,65,-55,0,0,0.0768806 -6667,3506:456,66,-55,0,0,0.0773118 -6668,3506:457,67,-55,0,0,0.0758298 -6669,3506:458,68,-55,0,0,0.0754203 -6670,3506:459,69,-55,0,0,0.0776644 -6671,3507:350,70,-55,0,0,0.0775539 -6672,3507:351,71,-55,0,0,0.0765313 -6673,3507:352,72,-55,0,0,0.0760317 -6674,3507:354,74,-55,0,0,0.0762267 -6675,3507:455,75,-55,0,0,0.0755352 -6676,3507:456,76,-55,0,0,0.0755352 -6677,3507:457,77,-55,0,0,0.075528 -6678,3507:458,78,-55,0,0,0.0758874 -6679,3507:459,79,-55,0,0,0.0761618 -6680,3508:350,80,-55,0,0,0.0764006 -6681,3508:351,81,-55,0,0,0.0766328 -6682,3508:352,82,-55,0,0,0.0764513 -6683,3508:353,83,-55,0,0,0.0763427 -6684,3508:354,84,-55,0,0,0.076742 -6685,3508:455,85,-55,0,0,0.0764949 -6686,3508:456,86,-55,0,0,0.0757075 -6687,3508:457,87,-55,0,0,0.0749562 -6688,3508:458,88,-55,0,0,0.0749062 -6689,3508:459,89,-55,0,0,0.074949 -6690,3509:350,90,-55,0,0,0.075006 -6691,3509:351,91,-55,0,0,0.0751272 -6692,3509:352,92,-55,0,0,0.0764442 -6693,3509:353,93,-55,0,0,0.0783812 -6694,3509:354,94,-55,0,0,0.07827 -6695,3509:455,95,-55,0,0,0.0776127 -6696,3509:456,96,-55,0,0,0.0777896 -6697,3509:457,97,-55,0,0,0.0779001 -6698,3509:458,98,-55,0,0,0.0754203 -6699,3509:459,99,-55,0,0,0.0754203 -6700,3510:350,100,-55,0,0,0.076742 -6701,3510:351,101,-55,0,0,0.0782329 -6702,3510:352,102,-55,0,0,0.0762558 -6703,3510:353,103,-55,0,0,0.0763208 -6704,3510:354,104,-55,0,0,0.0751344 -6705,3510:455,105,-55,0,0,0.0750345 -6706,3510:456,106,-55,0,0,0.0750416 -6707,3510:457,107,-55,0,0,0.0750345 -6708,3510:458,108,-55,0,0,0.074949 -6709,3510:459,109,-55,0,0,0.0749205 -6710,3511:350,110,-55,0,0,0.0751987 -6711,3511:351,111,-55,0,0,0.0777601 -6712,3511:352,112,-55,0,0,0.0801583 -6713,3511:353,113,-55,0,0,0.083116 -6714,3511:354,114,-55,0,0,0.0841632 -6715,3511:455,115,-55,0,0,0.0853989 -6716,3511:456,116,-55,0,0,0.0831786 -6717,3511:457,117,-55,0,0,0.0840843 -6718,3511:458,118,-55,0,0,0.0857045 -6719,3511:459,119,-55,0,0,0.0854552 -6720,3512:350,120,-55,0,0,0.0876811 -6721,3512:351,121,-55,0,0,0.0888552 -6722,3512:352,122,-55,0,0,0.0906854 -6723,3512:353,123,-55,0,0,0.0906769 -6724,3512:354,124,-55,0,0,0.0915105 -6725,3512:455,125,-55,0,0,0.0930943 -6726,3512:456,126,-55,0,0,0.0932071 -6727,3512:457,127,-55,0,0,0.0921189 -6728,3512:458,128,-55,0,0,0.0925061 -6729,3512:459,129,-55,0,0,0.095623 -6730,3513:350,130,-55,0,0,0.0984403 -6731,3513:351,131,-55,0,0,0.0987692 -6732,3513:352,132,-55,0,0,0.0967123 -6733,3513:353,133,-55,0,0,0.0954452 -6734,3513:354,134,-55,0,0,0.0952416 -6735,3513:455,135,-55,0,0,0.0939131 -6736,3513:456,136,-55,0,0,0.093747 -6737,3513:457,137,-55,0,0,0.0933288 -6738,3513:458,138,-55,0,0,0.0923941 -6739,3513:459,139,-55,0,0,0.0906177 -6740,3514:350,140,-55,0,0,0.0906769 -6741,3514:351,141,-55,0,0,0.0920243 -6742,3514:352,142,-55,0,0,0.0920072 -6743,3514:353,143,-55,0,0,0.0925751 -6744,3514:354,144,-55,0,0,0.0928259 -6745,3514:455,145,-55,0,0,0.0909568 -6746,3514:456,146,-55,0,0,0.0885895 -6747,3514:457,147,-55,0,0,0.0897241 -6748,3514:458,148,-55,0,0,0.0851585 -6749,3514:459,149,-55,0,0,0.0798862 -6750,3515:350,150,-55,0,0,0.0769825 -6751,3515:351,151,-55,0,0,0.0768003 -6752,3515:352,152,-55,0,0,0.079705 -6753,3515:353,153,-55,0,0,0.0759019 -6754,3515:354,154,-55,0,0,0.0752559 -6755,3515:455,155,-55,0,0,0.0753489 -6756,3515:456,156,-55,0,0,0.0751701 -6757,3515:457,157,-55,0,0,0.0752129 -6758,3515:458,158,-55,0,0,0.0755065 -6759,3515:459,159,-55,0,0,0.075442 -6760,3516:350,160,-55,0,0,0.07527 -6761,3516:351,161,-55,0,0,0.0752343 -6762,3516:352,162,-55,0,0,0.0754849 -6763,3516:353,163,-55,0,0,0.0754849 -6764,3516:354,164,-55,0,0,0.0775762 -6765,3516:455,165,-55,0,0,0.0775833 -6766,3516:456,166,-55,0,0,0.0855597 -6767,3516:457,167,-55,0,0,0.0952062 -6768,3516:458,168,-55,0,0,0.0955696 -6769,3516:459,169,-55,0,0,0.0929039 -6770,3517:350,170,-55,0,0,0.0924546 -6771,3517:351,171,-55,0,0,0.0995124 -6772,3517:352,172,-55,0,0,0.109125 -6773,3517:353,173,-55,0,0,0.116031 -6774,3517:354,174,-55,0,0,0.120303 -6775,3517:455,175,-55,0,0,0.118156 -6776,3517:456,176,-55,0,0,0.111811 -6777,3517:457,177,-55,0,0,0.11034 -6778,3517:458,178,-55,0,0,0.111658 -6779,3517:459,179,-55,0,0,0.113899 -6780,3518:350,180,-55,0,0,0.109736 -6781,5518:140,-180,-54,0,0,0.117249 -6782,5517:249,-179,-54,0,0,0.113186 -6783,5517:248,-178,-54,0,0,0.111312 -6784,5517:247,-177,-54,0,0,0.109245 -6785,5517:246,-176,-54,0,0,0.105175 -6786,5517:245,-175,-54,0,0,0.100316 -6787,5517:144,-174,-54,0,0,0.0984495 -6788,5517:143,-173,-54,0,0,0.0981216 -6789,5517:142,-172,-54,0,0,0.096865 -6790,5517:141,-171,-54,0,0,0.0954542 -6791,5517:140,-170,-54,0,0,0.0936511 -6792,5516:249,-169,-54,0,0,0.0906599 -6793,5516:248,-168,-54,0,0,0.0898838 -6794,5516:247,-167,-54,0,0,0.0899762 -6795,5516:246,-166,-54,0,0,0.0900267 -6796,5516:245,-165,-54,0,0,0.0900856 -6797,5516:144,-164,-54,0,0,0.0909399 -6798,5516:143,-163,-54,0,0,0.0918356 -6799,5516:142,-162,-54,0,0,0.0944564 -6800,5516:141,-161,-54,0,0,0.0980581 -6801,5516:140,-160,-54,0,0,0.0920759 -6802,5515:249,-159,-54,0,0,0.0899931 -6803,5515:248,-158,-54,0,0,0.0904484 -6804,5515:247,-157,-54,0,0,0.0914422 -6805,5515:246,-156,-54,0,0,0.0888136 -6806,5515:245,-155,-54,0,0,0.0895396 -6807,5515:144,-154,-54,0,0,0.0884817 -6808,5515:143,-153,-54,0,0,0.0875743 -6809,5515:142,-152,-54,0,0,0.0872219 -6810,5515:141,-151,-54,0,0,0.0939742 -6811,5515:140,-150,-54,0,0,0.0975595 -6812,5514:249,-149,-54,0,0,0.0974238 -6813,5514:248,-148,-54,0,0,0.0981216 -6814,5514:247,-147,-54,0,0,0.0985773 -6815,5514:246,-146,-54,0,0,0.104211 -6816,5514:245,-145,-54,0,0,0.106184 -6817,5514:144,-144,-54,0,0,0.102782 -6818,5514:143,-143,-54,0,0,0.105727 -6819,5514:142,-142,-54,0,0,0.122362 -6820,5514:141,-141,-54,0,0,0.124005 -6821,5514:140,-140,-54,0,0,0.108022 -6822,5513:249,-139,-54,0,0,0.101472 -6823,5513:248,-138,-54,0,0,0.101481 -6824,5513:247,-137,-54,0,0,0.104451 -6825,5513:246,-136,-54,0,0,0.108121 -6826,5513:245,-135,-54,0,0,0.109315 -6827,5513:144,-134,-54,0,0,0.109125 -6828,5513:143,-133,-54,0,0,0.102516 -6829,5513:142,-132,-54,0,0,0.103085 -6830,5513:141,-131,-54,0,0,0.107163 -6831,5513:140,-130,-54,0,0,0.108597 -6832,5512:249,-129,-54,0,0,0.105542 -6833,5512:248,-128,-54,0,0,0.103943 -6834,5512:247,-127,-54,0,0,0.103848 -6835,5512:246,-126,-54,0,0,0.104663 -6836,5512:245,-125,-54,0,0,0.105436 -6837,5512:144,-124,-54,0,0,0.10682 -6838,5512:143,-123,-54,0,0,0.107597 -6839,5512:142,-122,-54,0,0,0.108786 -6840,5512:141,-121,-54,0,0,0.110845 -6841,5512:140,-120,-54,0,0,0.113216 -6842,5511:249,-119,-54,0,0,0.112507 -6843,5511:248,-118,-54,0,0,0.113743 -6844,5511:247,-117,-54,0,0,0.118595 -6845,5511:246,-116,-54,0,0,0.118832 -6846,5511:245,-115,-54,0,0,0.118295 -6847,5511:144,-114,-54,0,0,0.116633 -6848,5511:143,-113,-54,0,0,0.115254 -6849,5511:142,-112,-54,0,0,0.112435 -6850,5511:141,-111,-54,0,0,0.113 -6851,5511:140,-110,-54,0,0,0.112589 -6852,5510:249,-109,-54,0,0,0.113568 -6853,5510:248,-108,-54,0,0,0.116432 -6854,5510:247,-107,-54,0,0,0.111995 -6855,5510:246,-106,-54,0,0,0.109666 -6856,5510:245,-105,-54,0,0,0.109315 -6857,5510:144,-104,-54,0,0,0.108986 -6858,5510:143,-103,-54,0,0,0.111312 -6859,5510:142,-102,-54,0,0,0.113505 -6860,5510:141,-101,-54,0,0,0.113247 -6861,5510:140,-100,-54,0,0,0.113764 -6862,5509:249,-99,-54,0,0,0.114543 -6863,5509:248,-98,-54,0,0,0.114564 -6864,5509:247,-97,-54,0,0,0.11639 -6865,5509:246,-96,-54,0,0,0.117089 -6866,5509:245,-95,-54,0,0,0.114877 -6867,5509:144,-94,-54,0,0,0.111312 -6868,5509:143,-93,-54,0,0,0.108816 -6869,5509:142,-92,-54,0,0,0.113186 -6870,5509:141,-91,-54,0,0,0.114034 -7192,5512:239,-129,-53,0,0,0.10679 -6871,5509:140,-90,-54,0,0,0.111913 -6872,5508:249,-89,-54,0,0,0.109135 -6873,5508:248,-88,-54,0,0,0.108269 -6874,5508:247,-87,-54,0,0,0.11034 -6875,5508:246,-86,-54,0,0,0.11392 -6876,5508:245,-85,-54,0,0,0.114961 -6877,5508:144,-84,-54,0,0,0.114242 -6878,5508:143,-83,-54,0,0,0.112691 -6879,5508:142,-82,-54,0,0,0.112804 -6880,5508:141,-81,-54,0,0,0.115832 -6881,5508:140,-80,-54,0,0,0.119684 -6882,5507:249,-79,-54,0,0,0.118424 -6883,5507:248,-78,-54,0,0,0.117111 -6884,5507:247,-77,-54,0,0,0.117292 -6885,5507:246,-76,-54,0,0,0.116581 -6886,5507:245,-75,-54,0,0,0.115705 -6887,5507:144,-74,-54,0,0,0.115516 -6888,5507:143,-73,-54,0,0,0.116053 -6889,5507:142,-72,-54,0,0,0.117771 -6890,5507:141,-71,-54,0,0,0.11302 -6891,5507:140,-70,-54,0,0,0.110491 -6892,5506:249,-69,-54,0,0,0.109576 -6893,5506:248,-68,-54,0,0,0.105513 -6894,5506:247,-67,-54,0,0,0.0905415 -6895,5506:246,-66,-54,0,0,0.0934331 -6896,5506:245,-65,-54,0,0,0.0970901 -6897,5506:144,-64,-54,0,0,0.0927998 -6898,5506:143,-63,-54,0,0,0.0821812 -6899,5506:142,-62,-54,0,0,0.0818951 -6900,5506:141,-61,-54,0,0,0.0834377 -6901,5506:140,-60,-54,0,0,0.082772 -6902,5505:249,-59,-54,0,0,0.0818642 -6903,5505:248,-58,-54,0,0,0.0808733 -6904,5505:247,-57,-54,0,0,0.0792165 -6905,5505:246,-56,-54,0,0,0.0784852 -6906,5505:245,-55,-54,0,0,0.0778042 -6907,5505:144,-54,-54,0,0,0.0774439 -6908,5505:143,-53,-54,0,0,0.076895 -6909,5505:142,-52,-54,0,0,0.0757147 -6910,5505:141,-51,-54,0,0,0.0752487 -6911,5505:140,-50,-54,0,0,0.0757722 -6912,5504:249,-49,-54,0,0,0.0751416 -6913,5504:248,-48,-54,0,0,0.0750201 -6914,5504:247,-47,-54,0,0,0.0749988 -6915,5504:246,-46,-54,0,0,0.0750131 -6916,5504:245,-45,-54,0,0,0.0749988 -6917,5504:144,-44,-54,0,0,0.0749775 -6918,5504:143,-43,-54,0,0,0.0749846 -6919,5504:142,-42,-54,0,0,0.0749988 -6920,5504:141,-41,-54,0,0,0.0749775 -6921,5504:140,-40,-54,0,0,0.0749703 -6922,5503:249,-39,-54,0,0,0.0749631 -6923,5503:248,-38,-54,0,0,0.0749562 -6924,5503:247,-37,-54,0,0,0.0749562 -6925,5503:246,-36,-54,0,0,0.0749631 -6926,5503:245,-35,-54,0,0,0.0749631 -6927,5503:144,-34,-54,0,0,0.0749631 -6928,5503:143,-33,-54,0,0,0.0749775 -6929,5503:142,-32,-54,0,0,0.0749988 -6930,5503:141,-31,-54,0,0,0.0749916 -6931,5503:140,-30,-54,0,0,0.0749846 -6932,5502:249,-29,-54,0,0,0.0749846 -6933,5502:248,-28,-54,0,0,0.0749846 -6934,5502:247,-27,-54,0,0,0.0749775 -6935,5502:246,-26,-54,0,0,0.0749775 -6936,5502:245,-25,-54,0,0,0.0749846 -6937,5502:144,-24,-54,0,0,0.0749846 -6938,5502:143,-23,-54,0,0,0.0749703 -6939,5502:142,-22,-54,0,0,0.0749562 -6940,5502:141,-21,-54,0,0,0.0749346 -6941,5502:140,-20,-54,0,0,0.0749988 -6942,5501:249,-19,-54,0,0,0.0751344 -6943,5501:248,-18,-54,0,0,0.0750273 -6944,5501:247,-17,-54,0,0,0.0749346 -6945,5501:246,-16,-54,0,0,0.0749205 -6946,5501:245,-15,-54,0,0,0.0749205 -6947,5501:144,-14,-54,0,0,0.0749346 -6948,5501:143,-13,-54,0,0,0.074949 -6949,5501:142,-12,-54,0,0,0.0749418 -6950,5501:141,-11,-54,0,0,0.0749275 -6951,5501:140,-10,-54,0,0,0.0749133 -6952,5500:249,-9,-54,0,0,0.0749133 -6953,5500:248,-8,-54,0,0,0.0749275 -6954,5500:247,-7,-54,0,0,0.0749275 -6955,5500:246,-6,-54,0,0,0.0749133 -6956,5500:245,-5,-54,0,0,0.074899 -6957,5500:144,-4,-54,0,0,0.074899 -6958,5500:143,-3,-54,0,0,0.0748849 -6959,5500:142,-2,-54,0,0,0.0748777 -6960,5500:141,-1,-54,0,0,0.0748636 -6961,3500:141,0,-54,0,0,0.0748636 -6962,3500:141,1,-54,0,0,0.0749205 -6963,3500:142,2,-54,0,0,0.0749703 -6964,3500:143,3,-54,0,0,0.075006 -6965,3500:144,4,-54,0,0,0.0750416 -6966,3500:245,5,-54,0,0,0.0750843 -6967,3500:246,6,-54,0,0,0.0750131 -6968,3500:247,7,-54,0,0,0.074949 -6969,3500:248,8,-54,0,0,0.0748564 -6970,3500:249,9,-54,0,0,0.0748777 -6971,3501:140,10,-54,0,0,0.074892 -6972,3501:141,11,-54,0,0,0.0749062 -6973,3501:142,12,-54,0,0,0.0749205 -6974,3501:143,13,-54,0,0,0.0749275 -6975,3501:144,14,-54,0,0,0.0749275 -6976,3501:245,15,-54,0,0,0.0749346 -6977,3501:246,16,-54,0,0,0.0749205 -6978,3501:247,17,-54,0,0,0.0749205 -6979,3501:248,18,-54,0,0,0.074949 -6980,3501:249,19,-54,0,0,0.0749988 -6981,3502:140,20,-54,0,0,0.075006 -6982,3502:141,21,-54,0,0,0.0749916 -6983,3502:142,22,-54,0,0,0.0749775 -6984,3502:143,23,-54,0,0,0.0749062 -6985,3502:144,24,-54,0,0,0.0749703 -6986,3502:245,25,-54,0,0,0.0751272 -6987,3502:246,26,-54,0,0,0.0751344 -6988,3502:247,27,-54,0,0,0.0749703 -6989,3502:248,28,-54,0,0,0.075006 -6990,3502:249,29,-54,0,0,0.0750558 -6991,3503:140,30,-54,0,0,0.0750987 -6992,3503:141,31,-54,0,0,0.0756068 -6993,3503:142,32,-54,0,0,0.0758946 -6994,3503:143,33,-54,0,0,0.0759019 -6995,3503:144,34,-54,0,0,0.0761978 -6996,3503:245,35,-54,0,0,0.0759452 -6997,3503:246,36,-54,0,0,0.075686 -6998,3503:247,37,-54,0,0,0.0755926 -6999,3503:248,38,-54,0,0,0.075729 -7000,3503:249,39,-54,0,0,0.0758155 -7001,3504:140,40,-54,0,0,0.075765 -7002,3504:141,41,-54,0,0,0.0755065 -7003,3504:142,42,-54,0,0,0.0752273 -7004,3504:143,43,-54,0,0,0.0751272 -7005,3504:144,44,-54,0,0,0.0749988 -7006,3504:245,45,-54,0,0,0.0749703 -7007,3504:246,46,-54,0,0,0.0749631 -7008,3504:247,47,-54,0,0,0.0756715 -7009,3504:248,48,-54,0,0,0.0759091 -7010,3504:249,49,-54,0,0,0.0757867 -7011,3505:140,50,-54,0,0,0.0756645 -7012,3505:141,51,-54,0,0,0.0756068 -7013,3505:142,52,-54,0,0,0.0754706 -7014,3505:143,53,-54,0,0,0.0753847 -7015,3505:144,54,-54,0,0,0.075163 -7016,3505:245,55,-54,0,0,0.0750201 -7017,3505:246,56,-54,0,0,0.0749775 -7018,3505:247,57,-54,0,0,0.0749703 -7019,3505:248,58,-54,0,0,0.0749631 -7020,3505:249,59,-54,0,0,0.0750131 -7021,3506:140,60,-54,0,0,0.0752916 -7022,3506:141,61,-54,0,0,0.0757795 -7023,3506:142,62,-54,0,0,0.0765166 -7024,3506:143,63,-54,0,0,0.0762629 -7025,3506:144,64,-54,0,0,0.0752772 -7026,3506:245,65,-54,0,0,0.0760029 -7027,3506:246,66,-54,0,0,0.0768367 -7028,3506:247,67,-54,0,0,0.0800146 -7029,3506:248,68,-54,0,0,0.0792091 -7030,3506:249,69,-54,0,0,0.0772899 -7031,3507:140,70,-54,0,0,0.0805151 -7032,3507:141,71,-54,0,0,0.0820961 -7033,3507:142,72,-54,0,0,0.0783515 -7034,3507:144,74,-54,0,0,0.0767494 -7035,3507:245,75,-54,0,0,0.076713 -7036,3507:246,76,-54,0,0,0.0769607 -7037,3507:247,77,-54,0,0,0.0771947 -7038,3507:248,78,-54,0,0,0.077657 -7039,3507:249,79,-54,0,0,0.0767929 -7040,3508:140,80,-54,0,0,0.0767274 -7041,3508:141,81,-54,0,0,0.0764803 -7042,3508:142,82,-54,0,0,0.0759595 -7043,3508:143,83,-54,0,0,0.0758082 -7044,3508:144,84,-54,0,0,0.0762267 -7045,3508:245,85,-54,0,0,0.0766475 -7046,3508:246,86,-54,0,0,0.0759162 -7047,3508:247,87,-54,0,0,0.0755854 -7048,3508:248,88,-54,0,0,0.0765166 -7049,3508:249,89,-54,0,0,0.0757362 -7050,3509:140,90,-54,0,0,0.0758874 -7051,3509:141,91,-54,0,0,0.0771141 -7052,3509:142,92,-54,0,0,0.0789919 -7053,3509:143,93,-54,0,0,0.0798862 -7054,3509:144,94,-54,0,0,0.0801054 -7055,3509:245,95,-54,0,0,0.0812484 -7056,3509:246,96,-54,0,0,0.0808427 -7057,3509:247,97,-54,0,0,0.0799466 -7058,3509:248,98,-54,0,0,0.0793966 -7059,3509:249,99,-54,0,0,0.0795845 -7060,3510:140,100,-54,0,0,0.0813788 -7061,3510:141,101,-54,0,0,0.0852147 -7062,3510:142,102,-54,0,0,0.0866999 -7063,3510:143,103,-54,0,0,0.0849347 -7064,3510:144,104,-54,0,0,0.0786861 -7065,3510:245,105,-54,0,0,0.0782775 -7066,3510:246,106,-54,0,0,0.0831944 -7067,3510:247,107,-54,0,0,0.0844489 -7068,3510:248,108,-54,0,0,0.0849109 -7069,3510:249,109,-54,0,0,0.0819568 -7070,3511:140,110,-54,0,0,0.0814328 -7071,3511:141,111,-54,0,0,0.085431 -7072,3511:142,112,-54,0,0,0.0855516 -7073,3511:143,113,-54,0,0,0.0863507 -7074,3511:144,114,-54,0,0,0.0882168 -7075,3511:245,115,-54,0,0,0.0883657 -7076,3511:246,116,-54,0,0,0.088465 -7077,3511:247,117,-54,0,0,0.0894224 -7078,3511:248,118,-54,0,0,0.0908125 -7079,3511:249,119,-54,0,0,0.0910247 -7080,3512:140,120,-54,0,0,0.0885644 -7081,3512:141,121,-54,0,0,0.0910419 -7082,3512:142,122,-54,0,0,0.0913995 -7083,3512:143,123,-54,0,0,0.0917843 -7084,3512:144,124,-54,0,0,0.0927135 -7085,3512:245,125,-54,0,0,0.0932421 -7086,3512:246,126,-54,0,0,0.0950292 -7087,3512:247,127,-54,0,0,0.0962465 -7088,3512:248,128,-54,0,0,0.0969459 -7089,3512:249,129,-54,0,0,0.0978129 -7090,3513:140,130,-54,0,0,0.0986961 -7091,3513:141,131,-54,0,0,0.101126 -7092,3513:142,132,-54,0,0,0.0991998 -7093,3513:143,133,-54,0,0,0.0962735 -7094,3513:144,134,-54,0,0,0.0974869 -7095,3513:245,135,-54,0,0,0.0971712 -7096,3513:246,136,-54,0,0,0.096336 -7097,3513:247,137,-54,0,0,0.0945267 -7098,3513:248,138,-54,0,0,0.0942546 -7099,3513:249,139,-54,0,0,0.095623 -7100,3514:140,140,-54,0,0,0.095552 -7101,3514:141,141,-54,0,0,0.0954986 -7102,3514:142,142,-54,0,0,0.0939918 -7103,3514:143,143,-54,0,0,0.093983 -7104,3514:144,144,-54,0,0,0.0936684 -7105,3514:245,145,-54,0,0,0.0913313 -7106,3514:246,146,-54,0,0,0.0925235 -7107,3514:247,147,-54,0,0,0.0929557 -7108,3514:248,148,-54,0,0,0.0861725 -7109,3514:249,149,-54,0,0,0.0844886 -7110,3515:140,150,-54,0,0,0.0849506 -7111,3515:141,151,-54,0,0,0.0851985 -7112,3515:142,152,-54,0,0,0.0801886 -7113,3515:143,153,-54,0,0,0.0767056 -7114,3515:144,154,-54,0,0,0.0761038 -7115,3515:245,155,-54,0,0,0.08181 -7116,3515:246,156,-54,0,0,0.0894224 -7117,3515:247,157,-54,0,0,0.0868383 -7118,3515:248,158,-54,0,0,0.0797954 -7119,3515:249,159,-54,0,0,0.081571 -7120,3516:140,160,-54,0,0,0.0793366 -7121,3516:141,161,-54,0,0,0.0792991 -7122,3516:142,162,-54,0,0,0.0855354 -7123,3516:143,163,-54,0,0,0.0873693 -7124,3516:144,164,-54,0,0,0.0852225 -7125,3516:245,165,-54,0,0,0.0825151 -7126,3516:246,166,-54,0,0,0.0847273 -7127,3516:247,167,-54,0,0,0.101257 -7128,3516:248,168,-54,0,0,0.102933 -7129,3516:249,169,-54,0,0,0.104144 -7130,3517:140,170,-54,0,0,0.111119 -7131,3517:141,171,-54,0,0,0.109166 -7132,3517:142,172,-54,0,0,0.113868 -7133,3517:143,173,-54,0,0,0.122119 -7134,3517:144,174,-54,0,0,0.121449 -7135,3517:245,175,-54,0,0,0.118972 -7136,3517:246,176,-54,0,0,0.113278 -7137,3517:247,177,-54,0,0,0.109666 -7138,3517:248,178,-54,0,0,0.116697 -7139,3517:249,179,-54,0,0,0.121856 -7140,3518:140,180,-54,0,0,0.117249 -7141,5518:130,-180,-53,0,0,0.120314 -7142,5517:239,-179,-53,0,0,0.115642 -7143,5517:238,-178,-53,0,0,0.111454 -7144,5517:237,-177,-53,0,0,0.106516 -7145,5517:236,-176,-53,0,0,0.102867 -7146,5517:235,-175,-53,0,0,0.100921 -7147,5517:134,-174,-53,0,0,0.100001 -7148,5517:133,-173,-53,0,0,0.0991264 -7149,5517:132,-172,-53,0,0,0.0983766 -7150,5517:131,-171,-53,0,0,0.0975142 -7151,5517:130,-170,-53,0,0,0.0953389 -7152,5516:239,-169,-53,0,0,0.094123 -7153,5516:238,-168,-53,0,0,0.0945618 -7154,5516:237,-167,-53,0,0,0.093983 -7155,5516:236,-166,-53,0,0,0.0949674 -7156,5516:235,-165,-53,0,0,0.0965511 -7157,5516:134,-164,-53,0,0,0.0982763 -7158,5516:133,-163,-53,0,0,0.0976589 -7159,5516:132,-162,-53,0,0,0.0972703 -7160,5516:131,-161,-53,0,0,0.0988515 -7161,5516:130,-160,-53,0,0,0.0950117 -7162,5515:239,-159,-53,0,0,0.0920243 -7163,5515:238,-158,-53,0,0,0.0932593 -7164,5515:237,-157,-53,0,0,0.0993652 -7165,5515:236,-156,-53,0,0,0.0999736 -7166,5515:235,-155,-53,0,0,0.0925061 -7167,5515:134,-154,-53,0,0,0.0889136 -7168,5515:133,-153,-53,0,0,0.0881755 -7169,5515:132,-152,-53,0,0,0.0900771 -7170,5515:131,-151,-53,0,0,0.096327 -7171,5515:130,-150,-53,0,0,0.0970989 -7172,5514:239,-149,-53,0,0,0.0963003 -7173,5514:238,-148,-53,0,0,0.0998258 -7174,5514:237,-147,-53,0,0,0.107085 -7175,5514:236,-146,-53,0,0,0.111566 -7176,5514:235,-145,-53,0,0,0.117387 -7177,5514:134,-144,-53,0,0,0.124754 -7178,5514:133,-143,-53,0,0,0.130694 -7179,5514:132,-142,-53,0,0,0.135627 -7180,5514:131,-141,-53,0,0,0.134379 -7181,5514:130,-140,-53,0,0,0.136545 -7182,5513:239,-139,-53,0,0,0.128056 -7183,5513:238,-138,-53,0,0,0.120303 -7184,5513:237,-137,-53,0,0,0.112702 -7185,5513:236,-136,-53,0,0,0.110633 -7186,5513:235,-135,-53,0,0,0.107616 -7187,5513:134,-134,-53,0,0,0.105746 -7188,5513:133,-133,-53,0,0,0.106292 -7189,5513:132,-132,-53,0,0,0.108647 -7190,5513:131,-131,-53,0,0,0.111129 -7191,5513:130,-130,-53,0,0,0.109977 -7193,5512:238,-128,-53,0,0,0.106879 -7194,5512:237,-127,-53,0,0,0.109937 -7195,5512:236,-126,-53,0,0,0.112804 -7196,5512:235,-125,-53,0,0,0.115045 -7197,5512:134,-124,-53,0,0,0.117185 -7198,5512:133,-123,-53,0,0,0.119047 -7199,5512:132,-122,-53,0,0,0.115779 -7200,5512:131,-121,-53,0,0,0.116994 -7201,5512:130,-120,-53,0,0,0.120444 -7202,5511:239,-119,-53,0,0,0.115537 -7203,5511:238,-118,-53,0,0,0.119004 -7204,5511:237,-117,-53,0,0,0.120129 -7205,5511:236,-116,-53,0,0,0.120531 -7206,5511:235,-115,-53,0,0,0.12146 -7207,5511:134,-114,-53,0,0,0.121296 -7208,5511:133,-113,-53,0,0,0.114836 -7209,5511:132,-112,-53,0,0,0.118682 -7210,5511:131,-111,-53,0,0,0.121702 -7211,5511:130,-110,-53,0,0,0.121691 -7212,5510:239,-109,-53,0,0,0.118156 -7213,5510:238,-108,-53,0,0,0.116729 -7214,5510:237,-107,-53,0,0,0.115842 -7215,5510:236,-106,-53,0,0,0.11175 -7216,5510:235,-105,-53,0,0,0.112866 -7217,5510:134,-104,-53,0,0,0.114263 -7218,5510:133,-103,-53,0,0,0.115244 -7219,5510:132,-102,-53,0,0,0.115139 -7220,5510:131,-101,-53,0,0,0.114346 -7221,5510:130,-100,-53,0,0,0.116633 -7222,5509:239,-99,-53,0,0,0.123014 -7223,5509:238,-98,-53,0,0,0.12526 -7224,5509:237,-97,-53,0,0,0.120096 -7225,5509:236,-96,-53,0,0,0.119847 -7226,5509:235,-95,-53,0,0,0.120717 -7227,5509:134,-94,-53,0,0,0.118381 -7228,5509:133,-93,-53,0,0,0.115076 -7229,5509:132,-92,-53,0,0,0.114252 -7230,5509:131,-91,-53,0,0,0.114086 -7231,5509:130,-90,-53,0,0,0.116179 -7232,5508:239,-89,-53,0,0,0.121581 -7233,5508:238,-88,-53,0,0,0.122329 -7234,5508:237,-87,-53,0,0,0.12123 -7235,5508:236,-86,-53,0,0,0.120815 -7236,5508:235,-85,-53,0,0,0.120466 -7237,5508:134,-84,-53,0,0,0.117164 -7238,5508:133,-83,-53,0,0,0.118017 -7239,5508:132,-82,-53,0,0,0.119576 -7240,5508:131,-81,-53,0,0,0.12202 -7241,5508:130,-80,-53,0,0,0.12123 -7242,5507:239,-79,-53,0,0,0.12064 -7243,5507:238,-78,-53,0,0,0.121186 -7244,5507:237,-77,-53,0,0,0.118081 -7245,5507:236,-76,-53,0,0,0.118092 -7246,5507:235,-75,-53,0,0,0.121285 -7247,5507:134,-74,-53,0,0,0.122395 -7248,5507:133,-73,-53,0,0,0.119858 -7249,5507:132,-72,-53,0,0,0.11619 -7250,5507:131,-71,-53,0,0,0.116613 -7251,5507:130,-70,-53,0,0,0.11866 -7252,5506:239,-69,-53,0,0,0.117089 -7253,5506:238,-68,-53,0,0,0.111281 -7254,5506:237,-67,-53,0,0,0.103943 -7255,5506:236,-66,-53,0,0,0.103209 -7256,5506:235,-65,-53,0,0,0.102981 -7257,5506:134,-64,-53,0,0,0.0925667 -7258,5506:133,-63,-53,0,0,0.0860837 -7259,5506:132,-62,-53,0,0,0.085648 -7260,5506:131,-61,-53,0,0,0.0819259 -7261,5506:130,-60,-53,0,0,0.0846795 -7262,5505:239,-59,-53,0,0,0.0859947 -7263,5505:238,-58,-53,0,0,0.0861967 -7264,5505:237,-57,-53,0,0,0.0816711 -7265,5505:236,-56,-53,0,0,0.078865 -7266,5505:235,-55,-53,0,0,0.0779889 -7267,5505:134,-54,-53,0,0,0.077063 -7268,5505:133,-53,-53,0,0,0.0773924 -7269,5505:132,-52,-53,0,0,0.07565 -7270,5505:131,-51,-53,0,0,0.0752487 -7271,5505:130,-50,-53,0,0,0.0756213 -7272,5504:239,-49,-53,0,0,0.0752201 -7273,5504:238,-48,-53,0,0,0.0749562 -7274,5504:237,-47,-53,0,0,0.075006 -7275,5504:236,-46,-53,0,0,0.0750273 -7276,5504:235,-45,-53,0,0,0.0750416 -7277,5504:134,-44,-53,0,0,0.0749703 -7278,5504:133,-43,-53,0,0,0.0749775 -7279,5504:132,-42,-53,0,0,0.0750273 -7280,5504:131,-41,-53,0,0,0.0750201 -7281,5504:130,-40,-53,0,0,0.0749988 -7282,5503:239,-39,-53,0,0,0.0750558 -7283,5503:238,-38,-53,0,0,0.0751558 -7284,5503:237,-37,-53,0,0,0.0749916 -7285,5503:236,-36,-53,0,0,0.0749703 -7286,5503:235,-35,-53,0,0,0.0749775 -7287,5503:134,-34,-53,0,0,0.0749846 -7288,5503:133,-33,-53,0,0,0.0749846 -7289,5503:132,-32,-53,0,0,0.0749846 -7290,5503:131,-31,-53,0,0,0.0749846 -7291,5503:130,-30,-53,0,0,0.0749916 -7292,5502:239,-29,-53,0,0,0.0749846 -7293,5502:238,-28,-53,0,0,0.0749775 -7294,5502:237,-27,-53,0,0,0.0749775 -7295,5502:236,-26,-53,0,0,0.0749988 -7296,5502:235,-25,-53,0,0,0.0750773 -7297,5502:134,-24,-53,0,0,0.0749988 -7298,5502:133,-23,-53,0,0,0.0750201 -7299,5502:132,-22,-53,0,0,0.0750558 -7300,5502:131,-21,-53,0,0,0.0750488 -7301,5502:130,-20,-53,0,0,0.07512 -7302,5501:239,-19,-53,0,0,0.0751701 -7303,5501:238,-18,-53,0,0,0.0752057 -7304,5501:237,-17,-53,0,0,0.0749988 -7305,5501:236,-16,-53,0,0,0.0749562 -7306,5501:235,-15,-53,0,0,0.0749562 -7307,5501:134,-14,-53,0,0,0.0749418 -7308,5501:133,-13,-53,0,0,0.0749275 -7309,5501:132,-12,-53,0,0,0.0749562 -7310,5501:131,-11,-53,0,0,0.0749846 -7311,5501:130,-10,-53,0,0,0.0749418 -7312,5500:239,-9,-53,0,0,0.0749205 -7313,5500:238,-8,-53,0,0,0.074949 -7314,5500:237,-7,-53,0,0,0.0749775 -7315,5500:236,-6,-53,0,0,0.0749418 -7316,5500:235,-5,-53,0,0,0.0749205 -7317,5500:134,-4,-53,0,0,0.0749133 -7318,5500:133,-3,-53,0,0,0.074899 -7319,5500:132,-2,-53,0,0,0.0748777 -7320,5500:131,-1,-53,0,0,0.0748705 -7321,3500:131,0,-53,0,0,0.0749418 -7322,3500:131,1,-53,0,0,0.0750416 -7323,3500:132,2,-53,0,0,0.0752129 -7324,3500:133,3,-53,0,0,0.0752559 -7325,3500:134,4,-53,0,0,0.0754133 -7326,3500:235,5,-53,0,0,0.0754779 -7327,3500:236,6,-53,0,0,0.0753917 -7328,3500:237,7,-53,0,0,0.0752343 -7329,3500:238,8,-53,0,0,0.0750702 -7330,3500:239,9,-53,0,0,0.0749775 -7331,3501:130,10,-53,0,0,0.0749062 -7332,3501:131,11,-53,0,0,0.0748849 -7333,3501:132,12,-53,0,0,0.0749062 -7334,3501:133,13,-53,0,0,0.0749062 -7335,3501:134,14,-53,0,0,0.0749062 -7336,3501:235,15,-53,0,0,0.0749205 -7337,3501:236,16,-53,0,0,0.0749205 -7338,3501:237,17,-53,0,0,0.0749275 -7339,3501:238,18,-53,0,0,0.074949 -7340,3501:239,19,-53,0,0,0.0749703 -7341,3502:130,20,-53,0,0,0.0749631 -7342,3502:131,21,-53,0,0,0.0749631 -7343,3502:132,22,-53,0,0,0.0749631 -7344,3502:133,23,-53,0,0,0.0749562 -7345,3502:134,24,-53,0,0,0.074949 -7346,3502:235,25,-53,0,0,0.0749916 -7347,3502:236,26,-53,0,0,0.0749562 -7348,3502:237,27,-53,0,0,0.0750558 -7349,3502:238,28,-53,0,0,0.0750843 -7350,3502:239,29,-53,0,0,0.0750416 -7351,3503:130,30,-53,0,0,0.0750273 -7352,3503:131,31,-53,0,0,0.0750558 -7353,3503:132,32,-53,0,0,0.0750843 -7354,3503:133,33,-53,0,0,0.0754348 -7355,3503:134,34,-53,0,0,0.0754061 -7356,3503:235,35,-53,0,0,0.0756787 -7357,3503:236,36,-53,0,0,0.0761327 -7358,3503:237,37,-53,0,0,0.0760172 -7359,3503:238,38,-53,0,0,0.0758946 -7360,3503:239,39,-53,0,0,0.0761472 -7361,3504:130,40,-53,0,0,0.0763789 -7362,3504:131,41,-53,0,0,0.0763064 -7363,3504:132,42,-53,0,0,0.0762848 -7364,3504:133,43,-53,0,0,0.0758803 -7365,3504:134,44,-53,0,0,0.0754849 -7366,3504:235,45,-53,0,0,0.0753272 -7367,3504:236,46,-53,0,0,0.0753631 -7368,3504:237,47,-53,0,0,0.0751128 -7369,3504:238,48,-53,0,0,0.0754275 -7370,3504:239,49,-53,0,0,0.0749916 -7371,3505:130,50,-53,0,0,0.0749916 -7372,3505:131,51,-53,0,0,0.0754706 -7373,3505:132,52,-53,0,0,0.0755207 -7374,3505:133,53,-53,0,0,0.0754203 -7375,3505:134,54,-53,0,0,0.075313 -7376,3505:235,55,-53,0,0,0.0751771 -7377,3505:236,56,-53,0,0,0.0751128 -7378,3505:237,57,-53,0,0,0.0750558 -7379,3505:238,58,-53,0,0,0.0750702 -7380,3505:239,59,-53,0,0,0.0750345 -7381,3506:130,60,-53,0,0,0.0757867 -7382,3506:131,61,-53,0,0,0.0760967 -7383,3506:132,62,-53,0,0,0.0768877 -7384,3506:133,63,-53,0,0,0.077856 -7385,3506:134,64,-53,0,0,0.0782329 -7386,3506:235,65,-53,0,0,0.0779445 -7387,3506:236,66,-53,0,0,0.0784258 -7388,3506:237,67,-53,0,0,0.0822044 -7389,3506:238,68,-53,0,0,0.0845362 -7390,3506:239,69,-53,0,0,0.0839103 -7391,3507:130,70,-53,0,0,0.0849428 -7392,3507:131,71,-53,0,0,0.0852225 -7393,3507:132,72,-53,0,0,0.0825384 -7394,3507:134,74,-53,0,0,0.0807435 -7395,3507:235,75,-53,0,0,0.0814865 -7396,3507:236,76,-53,0,0,0.0816711 -7397,3507:237,77,-53,0,0,0.0803025 -7398,3507:238,78,-53,0,0,0.0785968 -7399,3507:239,79,-53,0,0,0.0778116 -7400,3508:130,80,-53,0,0,0.0773559 -7401,3508:131,81,-53,0,0,0.0766184 -7402,3508:132,82,-53,0,0,0.0763208 -7403,3508:133,83,-53,0,0,0.0758874 -7404,3508:134,84,-53,0,0,0.0759811 -7405,3508:235,85,-53,0,0,0.0763281 -7406,3508:236,86,-53,0,0,0.0764296 -7407,3508:237,87,-53,0,0,0.0769242 -7408,3508:238,88,-53,0,0,0.0769242 -7409,3508:239,89,-53,0,0,0.0775762 -7410,3509:130,90,-53,0,0,0.0776127 -7411,3509:131,91,-53,0,0,0.0785893 -7412,3509:132,92,-53,0,0,0.0799164 -7413,3509:133,93,-53,0,0,0.0829126 -7414,3509:134,94,-53,0,0,0.0839655 -7415,3509:235,95,-53,0,0,0.0837523 -7416,3509:236,96,-53,0,0,0.0842266 -7417,3509:237,97,-53,0,0,0.0854552 -7418,3509:238,98,-53,0,0,0.086116 -7419,3509:239,99,-53,0,0,0.0860028 -7420,3510:130,100,-53,0,0,0.0860837 -7421,3510:131,101,-53,0,0,0.0875991 -7422,3510:132,102,-53,0,0,0.0896151 -7423,3510:133,103,-53,0,0,0.0891801 -7424,3510:134,104,-53,0,0,0.0893389 -7425,3510:235,105,-53,0,0,0.0898166 -7426,3510:236,106,-53,0,0,0.0886475 -7427,3510:237,107,-53,0,0,0.0849267 -7428,3510:238,108,-53,0,0,0.0863265 -7429,3510:239,109,-53,0,0,0.0864237 -7430,3511:130,110,-53,0,0,0.0863425 -7431,3511:131,111,-53,0,0,0.0869281 -7432,3511:132,112,-53,0,0,0.0881177 -7433,3511:133,113,-53,0,0,0.0888968 -7434,3511:134,114,-53,0,0,0.0899425 -7435,3511:235,115,-53,0,0,0.0923426 -7436,3511:236,116,-53,0,0,0.0938517 -7437,3511:237,117,-53,0,0,0.0928864 -7438,3511:238,118,-53,0,0,0.0904737 -7439,3511:239,119,-53,0,0,0.0910333 -7440,3512:130,120,-53,0,0,0.0915191 -7441,3512:131,121,-53,0,0,0.0930165 -7442,3512:132,122,-53,0,0,0.0934855 -7443,3512:133,123,-53,0,0,0.0950645 -7444,3512:134,124,-53,0,0,0.097 -7445,3512:235,125,-53,0,0,0.0973786 -7446,3512:236,126,-53,0,0,0.0962021 -7447,3512:237,127,-53,0,0,0.0961751 -7448,3512:238,128,-53,0,0,0.096919 -7449,3512:239,129,-53,0,0,0.0971622 -7450,3513:130,130,-53,0,0,0.0997796 -7451,3513:131,131,-53,0,0,0.10448 -7452,3513:132,132,-53,0,0,0.103114 -7453,3513:133,133,-53,0,0,0.099909 -7454,3513:134,134,-53,0,0,0.0987234 -7455,3513:235,135,-53,0,0,0.0997703 -7456,3513:236,136,-53,0,0,0.100958 -7457,3513:237,137,-53,0,0,0.0986138 -7458,3513:238,138,-53,0,0,0.0974869 -7459,3513:239,139,-53,0,0,0.099872 -7460,3514:130,140,-53,0,0,0.0989063 -7461,3514:131,141,-53,0,0,0.0968562 -7462,3514:132,142,-53,0,0,0.0950823 -7463,3514:133,143,-53,0,0,0.0954009 -7464,3514:134,144,-53,0,0,0.0983674 -7465,3514:235,145,-53,0,0,0.0966496 -7466,3514:236,146,-53,0,0,0.0961841 -7467,3514:237,147,-53,0,0,0.0955251 -7468,3514:238,148,-53,0,0,0.0935463 -7469,3514:239,149,-53,0,0,0.0919214 -7470,3515:130,150,-53,0,0,0.0924372 -7471,3515:131,151,-53,0,0,0.0855276 -7472,3515:132,152,-53,0,0,0.0848787 -7473,3515:133,153,-53,0,0,0.0850467 -7474,3515:134,154,-53,0,0,0.0792691 -7475,3515:235,155,-53,0,0,0.0848948 -7476,3515:236,156,-53,0,0,0.0933116 -7477,3515:237,157,-53,0,0,0.0943248 -7478,3515:238,158,-53,0,0,0.0933288 -7479,3515:239,159,-53,0,0,0.0951266 -7480,3516:130,160,-53,0,0,0.0937819 -7481,3516:131,161,-53,0,0,0.0905922 -7482,3516:132,162,-53,0,0,0.104471 -7483,3516:133,163,-53,0,0,0.107262 -7484,3516:134,164,-53,0,0,0.103133 -7485,3516:235,165,-53,0,0,0.107528 -7486,3516:236,166,-53,0,0,0.103009 -7487,3516:237,167,-53,0,0,0.106184 -7488,3516:238,168,-53,0,0,0.107134 -7489,3516:239,169,-53,0,0,0.109195 -7490,3517:130,170,-53,0,0,0.11909 -7491,3517:131,171,-53,0,0,0.125847 -7492,3517:132,172,-53,0,0,0.128216 -7493,3517:133,173,-53,0,0,0.127838 -7494,3517:134,174,-53,0,0,0.125756 -7495,3517:235,175,-53,0,0,0.123347 -7496,3517:236,176,-53,0,0,0.120782 -7497,3517:237,177,-53,0,0,0.121691 -7498,3517:238,178,-53,0,0,0.123659 -7499,3517:239,179,-53,0,0,0.121033 -7500,3518:130,180,-53,0,0,0.120314 -7501,5518:120,-180,-52,0,0,0.11299 -7502,5517:229,-179,-52,0,0,0.108389 -7503,5517:228,-178,-52,0,0,0.110602 -7504,5517:227,-177,-52,0,0,0.109166 -7505,5517:226,-176,-52,0,0,0.11038 -7506,5517:225,-175,-52,0,0,0.110451 -7507,5517:124,-174,-52,0,0,0.105805 -7508,5517:123,-173,-52,0,0,0.107725 -7509,5517:122,-172,-52,0,0,0.107508 -7510,5517:121,-171,-52,0,0,0.107232 -7511,5517:120,-170,-52,0,0,0.105902 -7512,5516:229,-169,-52,0,0,0.102696 -7513,5516:228,-168,-52,0,0,0.102857 -7514,5516:227,-167,-52,0,0,0.103895 -7515,5516:226,-166,-52,0,0,0.105717 -7516,5516:225,-165,-52,0,0,0.109105 -7517,5516:124,-164,-52,0,0,0.11121 -7518,5516:123,-163,-52,0,0,0.107903 -7519,5516:122,-162,-52,0,0,0.105873 -7520,5516:121,-161,-52,0,0,0.106908 -7521,5516:120,-160,-52,0,0,0.105068 -7522,5515:229,-159,-52,0,0,0.102791 -7523,5515:228,-158,-52,0,0,0.106849 -7524,5515:227,-157,-52,0,0,0.112097 -7525,5515:226,-156,-52,0,0,0.112097 -7526,5515:225,-155,-52,0,0,0.0998813 -7527,5515:124,-154,-52,0,0,0.0886974 -7528,5515:123,-153,-52,0,0,0.0888136 -7529,5515:122,-152,-52,0,0,0.0898417 -7530,5515:121,-151,-52,0,0,0.089892 -7531,5515:120,-150,-52,0,0,0.0937209 -7532,5514:229,-149,-52,0,0,0.0949233 -7533,5514:228,-148,-52,0,0,0.0956051 -7534,5514:227,-147,-52,0,0,0.10678 -7535,5514:226,-146,-52,0,0,0.10823 -7536,5514:225,-145,-52,0,0,0.115338 -7537,5514:124,-144,-52,0,0,0.12357 -7538,5514:123,-143,-52,0,0,0.126401 -7539,5514:122,-142,-52,0,0,0.129902 -7540,5514:121,-141,-52,0,0,0.136775 -7541,5514:120,-140,-52,0,0,0.13663 -7542,5513:229,-139,-52,0,0,0.130344 -7543,5513:228,-138,-52,0,0,0.123281 -7544,5513:227,-137,-52,0,0,0.11638 -7545,5513:226,-136,-52,0,0,0.115716 -7546,5513:225,-135,-52,0,0,0.116443 -7547,5513:124,-134,-52,0,0,0.11333 -7548,5513:123,-133,-52,0,0,0.116401 -7549,5513:122,-132,-52,0,0,0.1147 -7550,5513:121,-131,-52,0,0,0.116686 -7551,5513:120,-130,-52,0,0,0.117568 -7552,5512:229,-129,-52,0,0,0.118961 -7553,5512:228,-128,-52,0,0,0.11495 -7554,5512:227,-127,-52,0,0,0.115306 -7555,5512:226,-126,-52,0,0,0.119123 -7556,5512:225,-125,-52,0,0,0.119522 -7557,5512:124,-124,-52,0,0,0.127095 -7558,5512:123,-123,-52,0,0,0.128136 -7559,5512:122,-122,-52,0,0,0.12499 -7560,5512:121,-121,-52,0,0,0.121154 -7561,5512:120,-120,-52,0,0,0.120433 -7562,5511:229,-119,-52,0,0,0.117686 -7563,5511:228,-118,-52,0,0,0.118638 -7564,5511:227,-117,-52,0,0,0.120597 -7565,5511:226,-116,-52,0,0,0.122318 -7566,5511:225,-115,-52,0,0,0.121438 -7567,5511:124,-114,-52,0,0,0.121175 -7568,5511:123,-113,-52,0,0,0.124418 -7569,5511:122,-112,-52,0,0,0.117824 -7570,5511:121,-111,-52,0,0,0.119349 -7571,5511:120,-110,-52,0,0,0.123882 -7572,5510:229,-109,-52,0,0,0.121932 -7573,5510:228,-108,-52,0,0,0.120488 -7574,5510:227,-107,-52,0,0,0.120902 -7575,5510:226,-106,-52,0,0,0.119047 -7576,5510:225,-105,-52,0,0,0.115863 -7577,5510:124,-104,-52,0,0,0.119112 -7578,5510:123,-103,-52,0,0,0.12434 -7579,5510:122,-102,-52,0,0,0.130403 -7580,5510:121,-101,-52,0,0,0.129763 -7581,5510:120,-100,-52,0,0,0.12367 -7582,5509:229,-99,-52,0,0,0.124575 -7583,5509:228,-98,-52,0,0,0.128699 -7584,5509:227,-97,-52,0,0,0.122804 -7585,5509:226,-96,-52,0,0,0.119328 -7586,5509:225,-95,-52,0,0,0.120859 -7587,5509:124,-94,-52,0,0,0.125305 -7588,5509:123,-93,-52,0,0,0.120782 -7589,5509:122,-92,-52,0,0,0.115191 -7590,5509:121,-91,-52,0,0,0.114992 -7591,5509:120,-90,-52,0,0,0.11494 -7592,5508:229,-89,-52,0,0,0.120608 -7593,5508:228,-88,-52,0,0,0.12337 -7594,5508:227,-87,-52,0,0,0.121812 -7595,5508:226,-86,-52,0,0,0.122693 -7596,5508:225,-85,-52,0,0,0.122528 -7597,5508:124,-84,-52,0,0,0.122274 -7598,5508:123,-83,-52,0,0,0.123659 -7599,5508:122,-82,-52,0,0,0.126265 -7600,5508:121,-81,-52,0,0,0.126856 -7601,5508:120,-80,-52,0,0,0.124586 -7602,5507:229,-79,-52,0,0,0.122738 -7603,5507:228,-78,-52,0,0,0.128102 -7604,5507:227,-77,-52,0,0,0.12952 -7605,5507:226,-76,-52,0,0,0.127964 -7606,5507:225,-75,-52,0,0,0.127015 -7607,5507:124,-74,-52,0,0,0.124631 -7608,5507:123,-73,-52,0,0,0.119641 -7609,5507:122,-72,-52,0,0,0.120053 -7610,5507:121,-71,-52,0,0,0.117334 -7611,5507:120,-70,-52,0,0,0.116898 -7612,5506:229,-69,-52,0,0,0.115181 -7613,5506:228,-68,-52,0,0,0.10637 -7614,5506:227,-67,-52,0,0,0.108766 -7615,5506:226,-66,-52,0,0,0.107488 -7616,5506:225,-65,-52,0,0,0.101519 -7617,5506:124,-64,-52,0,0,0.0909228 -7618,5506:123,-63,-52,0,0,0.090906 -7619,5506:122,-62,-52,0,0,0.0925925 -7620,5506:121,-61,-52,0,0,0.0946325 -7621,5506:120,-60,-52,0,0,0.0966586 -7622,5505:229,-59,-52,0,0,0.096865 -7623,5505:228,-58,-52,0,0,0.0926012 -7624,5505:227,-57,-52,0,0,0.0885644 -7625,5505:226,-56,-52,0,0,0.0821193 -7626,5505:225,-55,-52,0,0,0.0825462 -7627,5505:124,-54,-52,0,0,0.0817947 -7628,5505:123,-53,-52,0,0,0.077451 -7629,5505:122,-52,-52,0,0,0.0769315 -7630,5505:121,-51,-52,0,0,0.0763064 -7631,5505:120,-50,-52,0,0,0.0764006 -7632,5504:229,-49,-52,0,0,0.0752201 -7633,5504:228,-48,-52,0,0,0.0753703 -7634,5504:227,-47,-52,0,0,0.0751701 -7635,5504:226,-46,-52,0,0,0.0754203 -7636,5504:225,-45,-52,0,0,0.0756715 -7637,5504:124,-44,-52,0,0,0.0756715 -7638,5504:123,-43,-52,0,0,0.0787084 -7639,5504:122,-42,-52,0,0,0.0788427 -7640,5504:121,-41,-52,0,0,0.0773337 -7641,5504:120,-40,-52,0,0,0.0770922 -7642,5503:229,-39,-52,0,0,0.0776718 -7643,5503:228,-38,-52,0,0,0.084021 -7644,5503:227,-37,-52,0,0,0.0804543 -7645,5503:226,-36,-52,0,0,0.0763427 -7646,5503:225,-35,-52,0,0,0.0769973 -7647,5503:124,-34,-52,0,0,0.0775026 -7648,5503:123,-33,-52,0,0,0.0764079 -7649,5503:122,-32,-52,0,0,0.0749275 -7650,5503:121,-31,-52,0,0,0.0754993 -7651,5503:120,-30,-52,0,0,0.0749703 -7652,5502:229,-29,-52,0,0,0.0749988 -7653,5502:228,-28,-52,0,0,0.0749916 -7654,5502:227,-27,-52,0,0,0.0749775 -7655,5502:226,-26,-52,0,0,0.0750558 -7656,5502:225,-25,-52,0,0,0.0771726 -7657,5502:124,-24,-52,0,0,0.0836814 -7658,5502:123,-23,-52,0,0,0.0803405 -7659,5502:122,-22,-52,0,0,0.079532 -7660,5502:121,-21,-52,0,0,0.0767712 -7661,5502:120,-20,-52,0,0,0.0760749 -7662,5501:229,-19,-52,0,0,0.0772899 -7663,5501:228,-18,-52,0,0,0.0759811 -7664,5501:227,-17,-52,0,0,0.0755567 -7665,5501:226,-16,-52,0,0,0.0755135 -7666,5501:225,-15,-52,0,0,0.0758082 -7667,5501:124,-14,-52,0,0,0.075442 -7668,5501:123,-13,-52,0,0,0.0749775 -7669,5501:122,-12,-52,0,0,0.0749562 -7670,5501:121,-11,-52,0,0,0.0749562 -7671,5501:120,-10,-52,0,0,0.074949 -7672,5500:229,-9,-52,0,0,0.0749631 -7673,5500:228,-8,-52,0,0,0.0749703 -7674,5500:227,-7,-52,0,0,0.0749631 -7675,5500:226,-6,-52,0,0,0.074949 -7676,5500:225,-5,-52,0,0,0.0749418 -7677,5500:124,-4,-52,0,0,0.0749275 -7678,5500:123,-3,-52,0,0,0.0749133 -7679,5500:122,-2,-52,0,0,0.074899 -7680,5500:121,-1,-52,0,0,0.0749133 -7681,3500:121,0,-52,0,0,0.0749275 -7682,3500:121,1,-52,0,0,0.0749562 -7683,3500:122,2,-52,0,0,0.0753203 -7684,3500:123,3,-52,0,0,0.0755065 -7685,3500:124,4,-52,0,0,0.0756285 -7686,3500:225,5,-52,0,0,0.0757507 -7687,3500:226,6,-52,0,0,0.0757362 -7688,3500:227,7,-52,0,0,0.0756787 -7689,3500:228,8,-52,0,0,0.0754706 -7690,3500:229,9,-52,0,0,0.0751771 -7691,3501:120,10,-52,0,0,0.0750273 -7692,3501:121,11,-52,0,0,0.075006 -7693,3501:122,12,-52,0,0,0.074899 -7694,3501:123,13,-52,0,0,0.0749062 -7695,3501:124,14,-52,0,0,0.0749275 -7696,3501:225,15,-52,0,0,0.0749275 -7697,3501:226,16,-52,0,0,0.0749275 -7698,3501:227,17,-52,0,0,0.0749418 -7699,3501:228,18,-52,0,0,0.0749418 -7700,3501:229,19,-52,0,0,0.0749562 -7701,3502:120,20,-52,0,0,0.074949 -7702,3502:121,21,-52,0,0,0.0749562 -7703,3502:122,22,-52,0,0,0.0749631 -7704,3502:123,23,-52,0,0,0.0749631 -7705,3502:124,24,-52,0,0,0.0750131 -7706,3502:225,25,-52,0,0,0.0749988 -7707,3502:226,26,-52,0,0,0.0750273 -7708,3502:227,27,-52,0,0,0.0752415 -7709,3502:228,28,-52,0,0,0.0753058 -7710,3502:229,29,-52,0,0,0.0751701 -7711,3503:120,30,-52,0,0,0.0751843 -7712,3503:121,31,-52,0,0,0.0753703 -7713,3503:122,32,-52,0,0,0.0754634 -7714,3503:123,33,-52,0,0,0.0754348 -7715,3503:124,34,-52,0,0,0.075313 -7716,3503:225,35,-52,0,0,0.0754203 -7717,3503:226,36,-52,0,0,0.0755711 -7718,3503:227,37,-52,0,0,0.0757362 -7719,3503:228,38,-52,0,0,0.0759091 -7720,3503:229,39,-52,0,0,0.076046 -7721,3504:120,40,-52,0,0,0.0764513 -7722,3504:121,41,-52,0,0,0.0765384 -7723,3504:122,42,-52,0,0,0.0766839 -7724,3504:123,43,-52,0,0,0.0764442 -7725,3504:124,44,-52,0,0,0.0762775 -7726,3504:225,45,-52,0,0,0.0761907 -7727,3504:226,46,-52,0,0,0.0762848 -7728,3504:227,47,-52,0,0,0.0753847 -7729,3504:228,48,-52,0,0,0.075163 -7730,3504:229,49,-52,0,0,0.0751701 -7731,3505:120,50,-52,0,0,0.0752343 -7732,3505:121,51,-52,0,0,0.0750416 -7733,3505:122,52,-52,0,0,0.0753272 -7734,3505:123,53,-52,0,0,0.0755352 -7735,3505:124,54,-52,0,0,0.0754492 -7736,3505:225,55,-52,0,0,0.0754779 -7737,3505:226,56,-52,0,0,0.0753917 -7738,3505:227,57,-52,0,0,0.0750702 -7739,3505:228,58,-52,0,0,0.075313 -7740,3505:229,59,-52,0,0,0.0755567 -7741,3506:120,60,-52,0,0,0.0752487 -7742,3506:121,61,-52,0,0,0.075837 -7743,3506:122,62,-52,0,0,0.0763064 -7744,3506:123,63,-52,0,0,0.0771067 -7745,3506:124,64,-52,0,0,0.0848548 -7746,3506:225,65,-52,0,0,0.0809651 -7747,3506:226,66,-52,0,0,0.0812332 -7748,3506:227,67,-52,0,0,0.0824607 -7749,3506:228,68,-52,0,0,0.0854151 -7750,3506:229,69,-52,0,0,0.0870994 -7751,3507:120,70,-52,0,0,0.0886974 -7752,3507:121,71,-52,0,0,0.0876154 -7753,3507:122,72,-52,0,0,0.0828347 -7754,3507:124,74,-52,0,0,0.0820961 -7755,3507:225,75,-52,0,0,0.0800373 -7756,3507:226,76,-52,0,0,0.0791191 -7757,3507:227,77,-52,0,0,0.0784258 -7758,3507:228,78,-52,0,0,0.077657 -7759,3507:229,79,-52,0,0,0.0774732 -7760,3508:120,80,-52,0,0,0.0769973 -7761,3508:121,81,-52,0,0,0.0766328 -7762,3508:122,82,-52,0,0,0.0762702 -7763,3508:123,83,-52,0,0,0.0760822 -7764,3508:124,84,-52,0,0,0.0765313 -7765,3508:225,85,-52,0,0,0.0763571 -7766,3508:226,86,-52,0,0,0.0761834 -7767,3508:227,87,-52,0,0,0.0801962 -7768,3508:228,88,-52,0,0,0.0857367 -7769,3508:229,89,-52,0,0,0.0842346 -7770,3509:120,90,-52,0,0,0.0846955 -7771,3509:121,91,-52,0,0,0.0900689 -7772,3509:122,92,-52,0,0,0.0910673 -7773,3509:123,93,-52,0,0,0.0846078 -7774,3509:124,94,-52,0,0,0.0869686 -7775,3509:225,95,-52,0,0,0.0858575 -7776,3509:226,96,-52,0,0,0.0878787 -7777,3509:227,97,-52,0,0,0.0884155 -7778,3509:228,98,-52,0,0,0.0900689 -7779,3509:229,99,-52,0,0,0.091485 -7780,3510:120,100,-52,0,0,0.090533 -7781,3510:121,101,-52,0,0,0.0891801 -7782,3510:122,102,-52,0,0,0.0903723 -7783,3510:123,103,-52,0,0,0.0931986 -7784,3510:124,104,-52,0,0,0.0941931 -7785,3510:225,105,-52,0,0,0.0892971 -7786,3510:226,106,-52,0,0,0.0892887 -7787,3510:227,107,-52,0,0,0.0893389 -7788,3510:228,108,-52,0,0,0.0871321 -7789,3510:229,109,-52,0,0,0.0870342 -7790,3511:120,110,-52,0,0,0.0879529 -7791,3511:121,111,-52,0,0,0.0875169 -7792,3511:122,112,-52,0,0,0.0872464 -7793,3511:123,113,-52,0,0,0.0878046 -7794,3511:124,114,-52,0,0,0.0913654 -7795,3511:225,115,-52,0,0,0.093686 -7796,3511:226,116,-52,0,0,0.095703 -7797,3511:227,117,-52,0,0,0.0973606 -7798,3511:228,118,-52,0,0,0.0988423 -7799,3511:229,119,-52,0,0,0.0997151 -7800,3512:120,120,-52,0,0,0.0998258 -7801,3512:121,121,-52,0,0,0.0988239 -7802,3512:122,122,-52,0,0,0.0979763 -7803,3512:123,123,-52,0,0,0.0999829 -7804,3512:124,124,-52,0,0,0.10245 -7805,3512:225,125,-52,0,0,0.101828 -7806,3512:226,126,-52,0,0,0.103294 -7807,3512:227,127,-52,0,0,0.103828 -7808,3512:228,128,-52,0,0,0.101734 -7809,3512:229,129,-52,0,0,0.101051 -7810,3513:120,130,-52,0,0,0.10563 -7811,3513:121,131,-52,0,0,0.104384 -7812,3513:122,132,-52,0,0,0.103924 -7813,3513:123,133,-52,0,0,0.102905 -7814,3513:124,134,-52,0,0,0.101294 -7815,3513:225,135,-52,0,0,0.10066 -7816,3513:226,136,-52,0,0,0.102403 -7817,3513:227,137,-52,0,0,0.102082 -7818,3513:228,138,-52,0,0,0.100186 -7819,3513:229,139,-52,0,0,0.10136 -7820,3514:120,140,-52,0,0,0.100261 -7821,3514:121,141,-52,0,0,0.0990528 -7822,3514:122,142,-52,0,0,0.0986685 -7823,3514:123,143,-52,0,0,0.100112 -7824,3514:124,144,-52,0,0,0.101725 -7825,3514:225,145,-52,0,0,0.0995217 -7826,3514:226,146,-52,0,0,0.0990162 -7827,3514:227,147,-52,0,0,0.099909 -7828,3514:228,148,-52,0,0,0.0986227 -7829,3514:229,149,-52,0,0,0.0964792 -7830,3515:120,150,-52,0,0,0.0896486 -7831,3515:121,151,-52,0,0,0.0827566 -7832,3515:122,152,-52,0,0,0.0885397 -7833,3515:123,153,-52,0,0,0.0919813 -7834,3515:124,154,-52,0,0,0.0936424 -7835,3515:225,155,-52,0,0,0.099411 -7836,3515:226,156,-52,0,0,0.101229 -7837,3515:227,157,-52,0,0,0.0970541 -7838,3515:228,158,-52,0,0,0.0975683 -8162,3512:112,122,-51,0,0,0.10213 -7839,3515:229,159,-52,0,0,0.0980218 -7840,3516:120,160,-52,0,0,0.0988789 -7841,3516:121,161,-52,0,0,0.100567 -7842,3516:122,162,-52,0,0,0.103867 -7843,3516:123,163,-52,0,0,0.103848 -7844,3516:124,164,-52,0,0,0.10815 -7845,3516:225,165,-52,0,0,0.110159 -7846,3516:226,166,-52,0,0,0.111739 -7847,3516:227,167,-52,0,0,0.114971 -7848,3516:228,168,-52,0,0,0.119814 -7849,3516:229,169,-52,0,0,0.124608 -7850,3517:120,170,-52,0,0,0.12863 -7851,3517:121,171,-52,0,0,0.127918 -7852,3517:122,172,-52,0,0,0.126833 -7853,3517:123,173,-52,0,0,0.127529 -7854,3517:124,174,-52,0,0,0.127849 -7855,3517:225,175,-52,0,0,0.127574 -7856,3517:226,176,-52,0,0,0.126731 -7857,3517:227,177,-52,0,0,0.123403 -7858,3517:228,178,-52,0,0,0.120173 -7859,3517:229,179,-52,0,0,0.118886 -7860,3518:120,180,-52,0,0,0.11299 -7861,5518:110,-180,-51,0,0,0.120129 -7862,5517:219,-179,-51,0,0,0.119771 -7863,5517:218,-178,-51,0,0,0.119858 -7864,5517:217,-177,-51,0,0,0.118038 -7865,5517:216,-176,-51,0,0,0.115443 -7866,5517:215,-175,-51,0,0,0.115947 -7867,5517:114,-174,-51,0,0,0.115695 -7868,5517:113,-173,-51,0,0,0.116665 -7869,5517:112,-172,-51,0,0,0.115045 -7870,5517:111,-171,-51,0,0,0.113309 -7871,5517:110,-170,-51,0,0,0.115464 -7872,5516:219,-169,-51,0,0,0.114596 -7873,5516:218,-168,-51,0,0,0.112887 -7874,5516:217,-167,-51,0,0,0.113785 -7875,5516:216,-166,-51,0,0,0.114909 -7876,5516:215,-165,-51,0,0,0.115485 -7877,5516:114,-164,-51,0,0,0.115684 -7878,5516:113,-163,-51,0,0,0.114523 -7879,5516:112,-162,-51,0,0,0.114127 -7880,5516:111,-161,-51,0,0,0.11176 -7881,5516:110,-160,-51,0,0,0.108022 -7882,5515:219,-159,-51,0,0,0.107183 -7883,5515:218,-158,-51,0,0,0.110451 -7884,5515:217,-157,-51,0,0,0.115705 -7885,5515:216,-156,-51,0,0,0.11495 -7886,5515:215,-155,-51,0,0,0.111984 -7887,5515:114,-154,-51,0,0,0.108976 -7888,5515:113,-153,-51,0,0,0.091127 -7889,5515:112,-152,-51,0,0,0.0916644 -7890,5515:111,-151,-51,0,0,0.091947 -7891,5515:110,-150,-51,0,0,0.0950117 -7892,5514:219,-149,-51,0,0,0.0948263 -7893,5514:218,-148,-51,0,0,0.0967931 -7894,5514:217,-147,-51,0,0,0.107429 -7895,5514:216,-146,-51,0,0,0.111129 -7896,5514:215,-145,-51,0,0,0.120433 -7897,5514:114,-144,-51,0,0,0.125215 -7898,5514:113,-143,-51,0,0,0.119004 -7899,5514:112,-142,-51,0,0,0.122263 -7900,5514:111,-141,-51,0,0,0.13541 -7901,5514:110,-140,-51,0,0,0.132609 -7902,5513:219,-139,-51,0,0,0.12499 -7903,5513:218,-138,-51,0,0,0.121943 -7904,5513:217,-137,-51,0,0,0.121427 -7905,5513:216,-136,-51,0,0,0.124631 -7906,5513:215,-135,-51,0,0,0.129011 -7907,5513:114,-134,-51,0,0,0.129196 -7908,5513:113,-133,-51,0,0,0.124788 -7909,5513:112,-132,-51,0,0,0.121121 -7910,5513:111,-131,-51,0,0,0.120118 -7911,5513:110,-130,-51,0,0,0.138115 -7912,5512:219,-129,-51,0,0,0.13922 -7913,5512:218,-128,-51,0,0,0.140394 -7914,5512:217,-127,-51,0,0,0.138128 -7915,5512:216,-126,-51,0,0,0.13395 -7916,5512:215,-125,-51,0,0,0.124642 -7917,5512:114,-124,-51,0,0,0.123214 -7918,5512:113,-123,-51,0,0,0.127278 -7919,5512:112,-122,-51,0,0,0.124653 -7920,5512:111,-121,-51,0,0,0.121999 -7921,5512:110,-120,-51,0,0,0.120804 -7922,5511:219,-119,-51,0,0,0.124608 -7923,5511:218,-118,-51,0,0,0.13389 -7924,5511:217,-117,-51,0,0,0.137956 -7925,5511:216,-116,-51,0,0,0.138507 -7926,5511:215,-115,-51,0,0,0.136388 -7927,5511:114,-114,-51,0,0,0.128768 -7928,5511:113,-113,-51,0,0,0.126572 -7929,5511:112,-112,-51,0,0,0.124923 -7930,5511:111,-111,-51,0,0,0.122771 -7931,5511:110,-110,-51,0,0,0.12605 -7932,5510:219,-109,-51,0,0,0.124687 -7933,5510:218,-108,-51,0,0,0.123392 -7934,5510:217,-107,-51,0,0,0.12276 -7935,5510:216,-106,-51,0,0,0.121976 -7936,5510:215,-105,-51,0,0,0.126061 -7937,5510:114,-104,-51,0,0,0.131525 -7938,5510:113,-103,-51,0,0,0.13487 -7939,5510:112,-102,-51,0,0,0.133046 -7940,5510:111,-101,-51,0,0,0.131877 -7941,5510:110,-100,-51,0,0,0.131291 -7942,5509:219,-99,-51,0,0,0.129833 -7943,5509:218,-98,-51,0,0,0.130158 -7944,5509:217,-97,-51,0,0,0.125102 -7945,5509:216,-96,-51,0,0,0.120542 -7946,5509:215,-95,-51,0,0,0.12656 -8271,5513:100,-130,-50,0,0,0.13511 -7947,5509:114,-94,-51,0,0,0.130146 -7948,5509:113,-93,-51,0,0,0.128734 -7949,5509:112,-92,-51,0,0,0.128274 -7950,5509:111,-91,-51,0,0,0.12801 -7951,5509:110,-90,-51,0,0,0.126879 -7952,5508:219,-89,-51,0,0,0.126981 -7953,5508:218,-88,-51,0,0,0.126027 -7954,5508:217,-87,-51,0,0,0.125181 -7955,5508:216,-86,-51,0,0,0.126345 -7956,5508:215,-85,-51,0,0,0.128607 -7957,5508:114,-84,-51,0,0,0.131713 -7958,5508:113,-83,-51,0,0,0.129612 -7959,5508:112,-82,-51,0,0,0.128458 -7960,5508:111,-81,-51,0,0,0.127221 -7961,5508:110,-80,-51,0,0,0.126413 -7962,5507:219,-79,-51,0,0,0.129786 -7963,5507:218,-78,-51,0,0,0.131021 -7964,5507:217,-77,-51,0,0,0.131877 -7965,5507:216,-76,-51,0,0,0.131033 -7966,5507:215,-75,-51,0,0,0.128481 -7967,5507:114,-74,-51,0,0,0.125858 -7968,5507:113,-73,-51,0,0,0.123004 -7969,5507:112,-72,-51,0,0,0.123681 -7970,5507:111,-71,-51,0,0,0.122153 -7971,5507:110,-70,-51,0,0,0.119231 -7972,5506:219,-69,-51,0,0,0.111414 -7973,5506:218,-68,-51,0,0,0.105912 -7974,5506:217,-67,-51,0,0,0.104394 -7975,5506:216,-66,-51,0,0,0.101416 -7976,5506:215,-65,-51,0,0,0.100455 -7977,5506:114,-64,-51,0,0,0.0981216 -7978,5506:113,-63,-51,0,0,0.100085 -7979,5506:112,-62,-51,0,0,0.0961664 -7980,5506:111,-61,-51,0,0,0.0950912 -7981,5506:110,-60,-51,0,0,0.101163 -7982,5505:219,-59,-51,0,0,0.0985773 -7983,5505:218,-58,-51,0,0,0.0959967 -7984,5505:217,-57,-51,0,0,0.0936597 -7985,5505:216,-56,-51,0,0,0.0864886 -7986,5505:215,-55,-51,0,0,0.0884982 -7987,5505:114,-54,-51,0,0,0.0886559 -7988,5505:113,-53,-51,0,0,0.0882498 -7989,5505:112,-52,-51,0,0,0.0839735 -7990,5505:111,-51,-51,0,0,0.0790218 -7991,5505:110,-50,-51,0,0,0.0789771 -7992,5504:219,-49,-51,0,0,0.0794191 -7993,5504:218,-48,-51,0,0,0.0813636 -7994,5504:217,-47,-51,0,0,0.0882004 -7995,5504:216,-46,-51,0,0,0.0944829 -7996,5504:215,-45,-51,0,0,0.0912886 -7997,5504:114,-44,-51,0,0,0.0804239 -7998,5504:113,-43,-51,0,0,0.0840447 -7999,5504:112,-42,-51,0,0,0.0849506 -8000,5504:111,-41,-51,0,0,0.0848468 -8001,5504:110,-40,-51,0,0,0.0820805 -8002,5503:219,-39,-51,0,0,0.0832728 -8003,5503:218,-38,-51,0,0,0.0866592 -8004,5503:217,-37,-51,0,0,0.0844806 -8005,5503:216,-36,-51,0,0,0.0807284 -8006,5503:215,-35,-51,0,0,0.0843616 -8007,5503:114,-34,-51,0,0,0.0847035 -8008,5503:113,-33,-51,0,0,0.084298 -8009,5503:112,-32,-51,0,0,0.0815402 -8010,5503:111,-31,-51,0,0,0.0816018 -8011,5503:110,-30,-51,0,0,0.0802492 -8012,5502:219,-29,-51,0,0,0.0808581 -8013,5502:218,-28,-51,0,0,0.0780035 -8014,5502:217,-27,-51,0,0,0.0777601 -8015,5502:216,-26,-51,0,0,0.0778042 -8016,5502:215,-25,-51,0,0,0.0785446 -8017,5502:114,-24,-51,0,0,0.088093 -8018,5502:113,-23,-51,0,0,0.0895731 -8019,5502:112,-22,-51,0,0,0.0888219 -8020,5502:111,-21,-51,0,0,0.0857527 -8021,5502:110,-20,-51,0,0,0.0819646 -8022,5501:219,-19,-51,0,0,0.082983 -8023,5501:218,-18,-51,0,0,0.0825695 -8024,5501:217,-17,-51,0,0,0.0804315 -8025,5501:216,-16,-51,0,0,0.0786489 -8026,5501:215,-15,-51,0,0,0.0785149 -8027,5501:114,-14,-51,0,0,0.0787755 -8028,5501:113,-13,-51,0,0,0.0797653 -8029,5501:112,-12,-51,0,0,0.0804315 -8030,5501:111,-11,-51,0,0,0.080022 -8031,5501:110,-10,-51,0,0,0.0787755 -8032,5500:219,-9,-51,0,0,0.0793366 -8033,5500:218,-8,-51,0,0,0.079788 -8034,5500:217,-7,-51,0,0,0.0796447 -8035,5500:216,-6,-51,0,0,0.0776127 -8036,5500:215,-5,-51,0,0,0.0771141 -8037,5500:114,-4,-51,0,0,0.0756428 -8038,5500:113,-3,-51,0,0,0.0754993 -8039,5500:112,-2,-51,0,0,0.0754275 -8040,5500:111,-1,-51,0,0,0.0751344 -8041,3500:111,0,-51,0,0,0.074899 -8042,3500:111,1,-51,0,0,0.074828 -8043,3500:112,2,-51,0,0,0.0749205 -8044,3500:113,3,-51,0,0,0.0755567 -8045,3500:114,4,-51,0,0,0.07565 -8046,3500:215,5,-51,0,0,0.0755207 -8047,3500:216,6,-51,0,0,0.0752343 -8048,3500:217,7,-51,0,0,0.0749631 -8049,3500:218,8,-51,0,0,0.075006 -8050,3500:219,9,-51,0,0,0.0750843 -8051,3501:110,10,-51,0,0,0.0748493 -8052,3501:111,11,-51,0,0,0.0747996 -8053,3501:112,12,-51,0,0,0.0748208 -8054,3501:113,13,-51,0,0,0.0748564 -8055,3501:114,14,-51,0,0,0.074899 -8056,3501:215,15,-51,0,0,0.0748705 -8057,3501:216,16,-51,0,0,0.0748636 -8058,3501:217,17,-51,0,0,0.0748421 -8059,3501:218,18,-51,0,0,0.074828 -8060,3501:219,19,-51,0,0,0.0748208 -8061,3502:110,20,-51,0,0,0.0747924 -8062,3502:111,21,-51,0,0,0.0749846 -8063,3502:112,22,-51,0,0,0.0749275 -8064,3502:113,23,-51,0,0,0.0748421 -8065,3502:114,24,-51,0,0,0.0748564 -8066,3502:215,25,-51,0,0,0.0749703 -8067,3502:216,26,-51,0,0,0.0751059 -8068,3502:217,27,-51,0,0,0.0751344 -8069,3502:218,28,-51,0,0,0.0749346 -8070,3502:219,29,-51,0,0,0.0750201 -8071,3503:110,30,-51,0,0,0.0750345 -8072,3503:111,31,-51,0,0,0.0752343 -8073,3503:112,32,-51,0,0,0.075063 -8074,3503:113,33,-51,0,0,0.0752057 -8075,3503:114,34,-51,0,0,0.07635 -8076,3503:215,35,-51,0,0,0.07827 -8077,3503:216,36,-51,0,0,0.0774217 -8078,3503:217,37,-51,0,0,0.0757795 -8079,3503:218,38,-51,0,0,0.0777232 -8080,3503:219,39,-51,0,0,0.0767347 -8081,3504:110,40,-51,0,0,0.0772092 -8082,3504:111,41,-51,0,0,0.0778634 -8083,3504:112,42,-51,0,0,0.0780405 -8084,3504:113,43,-51,0,0,0.0780405 -8085,3504:114,44,-51,0,0,0.077635 -8086,3504:215,45,-51,0,0,0.0769681 -8087,3504:216,46,-51,0,0,0.0771799 -8088,3504:217,47,-51,0,0,0.0778116 -8089,3504:218,48,-51,0,0,0.0774878 -8090,3504:219,49,-51,0,0,0.0766184 -8091,3505:110,50,-51,0,0,0.0766184 -8092,3505:111,51,-51,0,0,0.0758515 -8093,3505:112,52,-51,0,0,0.0772092 -8094,3505:113,53,-51,0,0,0.0790145 -8095,3505:114,54,-51,0,0,0.0758225 -8096,3505:215,55,-51,0,0,0.0774952 -8097,3505:216,56,-51,0,0,0.0762485 -8098,3505:217,57,-51,0,0,0.07565 -8099,3505:218,58,-51,0,0,0.0778116 -8100,3505:219,59,-51,0,0,0.0843219 -8101,3506:110,60,-51,0,0,0.0788873 -8102,3506:111,61,-51,0,0,0.0832336 -8103,3506:112,62,-51,0,0,0.0826864 -8104,3506:113,63,-51,0,0,0.0781588 -8105,3506:114,64,-51,0,0,0.0817638 -8106,3506:215,65,-51,0,0,0.0872057 -8107,3506:216,66,-51,0,0,0.0877551 -8108,3506:217,67,-51,0,0,0.0856078 -8109,3506:218,68,-51,0,0,0.0868708 -8110,3506:219,69,-51,0,0,0.0878867 -8111,3507:110,70,-51,0,0,0.088316 -8112,3507:111,71,-51,0,0,0.0902036 -8113,3507:112,72,-51,0,0,0.08303 -8114,3507:114,74,-51,0,0,0.0800978 -8115,3507:215,75,-51,0,0,0.0794491 -8116,3507:216,76,-51,0,0,0.0790145 -8117,3507:217,77,-51,0,0,0.0793891 -8118,3507:218,78,-51,0,0,0.0792691 -8119,3507:219,79,-51,0,0,0.077532 -8120,3508:110,80,-51,0,0,0.0770996 -8121,3508:111,81,-51,0,0,0.0770849 -8122,3508:112,82,-51,0,0,0.0773044 -8123,3508:113,83,-51,0,0,0.0772459 -8124,3508:114,84,-51,0,0,0.0773924 -8125,3508:215,85,-51,0,0,0.0768806 -8126,3508:216,86,-51,0,0,0.0779149 -8127,3508:217,87,-51,0,0,0.0880351 -8128,3508:218,88,-51,0,0,0.0964704 -8129,3508:219,89,-51,0,0,0.0910673 -8130,3509:110,90,-51,0,0,0.0889718 -8131,3509:111,91,-51,0,0,0.0898333 -8132,3509:112,92,-51,0,0,0.090855 -8133,3509:113,93,-51,0,0,0.0909568 -8134,3509:114,94,-51,0,0,0.0901699 -8135,3509:215,95,-51,0,0,0.089741 -8136,3509:216,96,-51,0,0,0.0877963 -8137,3509:217,97,-51,0,0,0.0874759 -8138,3509:218,98,-51,0,0,0.0881507 -8139,3509:219,99,-51,0,0,0.0895481 -8140,3510:110,100,-51,0,0,0.0918871 -8141,3510:111,101,-51,0,0,0.0916302 -8142,3510:112,102,-51,0,0,0.0913909 -8143,3510:113,103,-51,0,0,0.0947733 -8144,3510:114,104,-51,0,0,0.0965688 -8145,3510:215,105,-51,0,0,0.0955696 -8146,3510:216,106,-51,0,0,0.0950292 -8147,3510:217,107,-51,0,0,0.0928259 -8148,3510:218,108,-51,0,0,0.0904992 -8149,3510:219,109,-51,0,0,0.09533 -8150,3511:110,110,-51,0,0,0.0971891 -8151,3511:111,111,-51,0,0,0.0970091 -8152,3511:112,112,-51,0,0,0.0944038 -8153,3511:113,113,-51,0,0,0.101285 -8154,3511:114,114,-51,0,0,0.104029 -8155,3511:215,115,-51,0,0,0.0977858 -8156,3511:216,116,-51,0,0,0.0976136 -8157,3511:217,117,-51,0,0,0.0986411 -8158,3511:218,118,-51,0,0,0.0989795 -8159,3511:219,119,-51,0,0,0.100781 -8160,3512:110,120,-51,0,0,0.100892 -8161,3512:111,121,-51,0,0,0.102252 -8163,3512:113,123,-51,0,0,0.102943 -8164,3512:114,124,-51,0,0,0.103047 -8165,3512:215,125,-51,0,0,0.102848 -8166,3512:216,126,-51,0,0,0.103114 -8167,3512:217,127,-51,0,0,0.104653 -8168,3512:218,128,-51,0,0,0.105824 -8169,3512:219,129,-51,0,0,0.106869 -8170,3513:110,130,-51,0,0,0.107873 -8171,3513:111,131,-51,0,0,0.108042 -8172,3513:112,132,-51,0,0,0.108329 -8173,3513:113,133,-51,0,0,0.108071 -8174,3513:114,134,-51,0,0,0.104827 -8175,3513:215,135,-51,0,0,0.1028 -8176,3513:216,136,-51,0,0,0.104096 -8177,3513:217,137,-51,0,0,0.103924 -8178,3513:218,138,-51,0,0,0.10319 -8179,3513:219,139,-51,0,0,0.103266 -8180,3514:110,140,-51,0,0,0.102469 -8181,3514:111,141,-51,0,0,0.102962 -8182,3514:112,142,-51,0,0,0.103943 -8183,3514:113,143,-51,0,0,0.10561 -8184,3514:114,144,-51,0,0,0.105339 -8185,3514:215,145,-51,0,0,0.104596 -8186,3514:216,146,-51,0,0,0.103838 -8187,3514:217,147,-51,0,0,0.101838 -8188,3514:218,148,-51,0,0,0.099108 -8189,3514:219,149,-51,0,0,0.0956672 -8190,3515:110,150,-51,0,0,0.0862049 -8191,3515:111,151,-51,0,0,0.0895984 -8192,3515:112,152,-51,0,0,0.0901951 -8193,3515:113,153,-51,0,0,0.0927307 -8194,3515:114,154,-51,0,0,0.0945707 -8195,3515:215,155,-51,0,0,0.0990162 -8196,3515:216,156,-51,0,0,0.100846 -8197,3515:217,157,-51,0,0,0.0997059 -8198,3515:218,158,-51,0,0,0.0996873 -8199,3515:219,159,-51,0,0,0.100753 -8200,3516:110,160,-51,0,0,0.108289 -8201,3516:111,161,-51,0,0,0.111638 -8202,3516:112,162,-51,0,0,0.12778 -8203,3516:113,163,-51,0,0,0.129937 -8204,3516:114,164,-51,0,0,0.131936 -8205,3516:215,165,-51,0,0,0.128607 -8206,3516:216,166,-51,0,0,0.120837 -8207,3516:217,167,-51,0,0,0.130706 -8208,3516:218,168,-51,0,0,0.132019 -8209,3516:219,169,-51,0,0,0.13196 -8210,3517:110,170,-51,0,0,0.130753 -8211,3517:111,171,-51,0,0,0.12762 -8212,3517:112,172,-51,0,0,0.12801 -8213,3517:113,173,-51,0,0,0.128228 -8214,3517:114,174,-51,0,0,0.127998 -8215,3517:215,175,-51,0,0,0.126526 -8216,3517:216,176,-51,0,0,0.124743 -8217,3517:217,177,-51,0,0,0.122252 -8218,3517:218,178,-51,0,0,0.123303 -8219,3517:219,179,-51,0,0,0.123037 -8220,3518:110,180,-51,0,0,0.120129 -8221,5518:100,-180,-50,0,0,0.132585 -8222,5517:209,-179,-50,0,0,0.125994 -8223,5517:208,-178,-50,0,0,0.120608 -8224,5517:207,-177,-50,0,0,0.122583 -8225,5517:206,-176,-50,0,0,0.123904 -8226,5517:205,-175,-50,0,0,0.125756 -8227,5517:104,-174,-50,0,0,0.125835 -8228,5517:103,-173,-50,0,0,0.123481 -8229,5517:102,-172,-50,0,0,0.12202 -8230,5517:101,-171,-50,0,0,0.123626 -8231,5517:100,-170,-50,0,0,0.125361 -8232,5516:209,-169,-50,0,0,0.121746 -8233,5516:208,-168,-50,0,0,0.118477 -8234,5516:207,-167,-50,0,0,0.119912 -8235,5516:206,-166,-50,0,0,0.124071 -8236,5516:205,-165,-50,0,0,0.12287 -8237,5516:104,-164,-50,0,0,0.121077 -8238,5516:103,-163,-50,0,0,0.120979 -8239,5516:102,-162,-50,0,0,0.120183 -8240,5516:101,-161,-50,0,0,0.119177 -8241,5516:100,-160,-50,0,0,0.117622 -8242,5515:209,-159,-50,0,0,0.116348 -8243,5515:208,-158,-50,0,0,0.121164 -8244,5515:207,-157,-50,0,0,0.127038 -8245,5515:206,-156,-50,0,0,0.121515 -8246,5515:205,-155,-50,0,0,0.118617 -8247,5515:104,-154,-50,0,0,0.116697 -8248,5515:103,-153,-50,0,0,0.110673 -8249,5515:102,-152,-50,0,0,0.0973155 -8250,5515:101,-151,-50,0,0,0.0973967 -8251,5515:100,-150,-50,0,0,0.101659 -8252,5514:209,-149,-50,0,0,0.10027 -8253,5514:208,-148,-50,0,0,0.0973786 -8254,5514:207,-147,-50,0,0,0.108121 -8255,5514:206,-146,-50,0,0,0.116063 -8256,5514:205,-145,-50,0,0,0.12134 -8257,5514:104,-144,-50,0,0,0.122351 -8258,5514:103,-143,-50,0,0,0.121285 -8259,5514:102,-142,-50,0,0,0.123336 -8260,5514:101,-141,-50,0,0,0.13196 -8261,5514:100,-140,-50,0,0,0.138949 -8262,5513:209,-139,-50,0,0,0.136146 -8263,5513:208,-138,-50,0,0,0.128964 -8264,5513:207,-137,-50,0,0,0.133938 -8265,5513:206,-136,-50,0,0,0.135038 -8266,5513:205,-135,-50,0,0,0.135422 -8267,5513:104,-134,-50,0,0,0.130461 -8268,5513:103,-133,-50,0,0,0.128251 -8269,5513:102,-132,-50,0,0,0.125767 -8270,5513:101,-131,-50,0,0,0.12553 -8272,5512:209,-129,-50,0,0,0.137481 -8273,5512:208,-128,-50,0,0,0.143851 -8274,5512:207,-127,-50,0,0,0.153965 -8275,5512:206,-126,-50,0,0,0.154353 -8276,5512:205,-125,-50,0,0,0.148 -8277,5512:104,-124,-50,0,0,0.135134 -8278,5512:103,-123,-50,0,0,0.128918 -8279,5512:102,-122,-50,0,0,0.123737 -8280,5512:101,-121,-50,0,0,0.127163 -8281,5512:100,-120,-50,0,0,0.129427 -8282,5511:209,-119,-50,0,0,0.132372 -8283,5511:208,-118,-50,0,0,0.135386 -8284,5511:207,-117,-50,0,0,0.13922 -8285,5511:206,-116,-50,0,0,0.138802 -8286,5511:205,-115,-50,0,0,0.13697 -8287,5511:104,-114,-50,0,0,0.129057 -8288,5511:103,-113,-50,0,0,0.128734 -8289,5511:102,-112,-50,0,0,0.129392 -8290,5511:101,-111,-50,0,0,0.131267 -8291,5511:100,-110,-50,0,0,0.13281 -8292,5510:209,-109,-50,0,0,0.134069 -8293,5510:208,-108,-50,0,0,0.133985 -8294,5510:207,-107,-50,0,0,0.131631 -8295,5510:206,-106,-50,0,0,0.129462 -8296,5510:205,-105,-50,0,0,0.13196 -8297,5510:104,-104,-50,0,0,0.137346 -8298,5510:103,-103,-50,0,0,0.137201 -8299,5510:102,-102,-50,0,0,0.132195 -8300,5510:101,-101,-50,0,0,0.134571 -8301,5510:100,-100,-50,0,0,0.132184 -8302,5509:209,-99,-50,0,0,0.130869 -8303,5509:208,-98,-50,0,0,0.129833 -8304,5509:207,-97,-50,0,0,0.126333 -8305,5509:206,-96,-50,0,0,0.126787 -8306,5509:205,-95,-50,0,0,0.130589 -8307,5509:104,-94,-50,0,0,0.13216 -8308,5509:103,-93,-50,0,0,0.130472 -8309,5509:102,-92,-50,0,0,0.130916 -8310,5509:101,-91,-50,0,0,0.133902 -8311,5509:100,-90,-50,0,0,0.132738 -8312,5508:209,-89,-50,0,0,0.130181 -8313,5508:208,-88,-50,0,0,0.128113 -8314,5508:207,-87,-50,0,0,0.129323 -8315,5508:206,-86,-50,0,0,0.130205 -8316,5508:205,-85,-50,0,0,0.132999 -8317,5508:104,-84,-50,0,0,0.134296 -8318,5508:103,-83,-50,0,0,0.130706 -8319,5508:102,-82,-50,0,0,0.13024 -8320,5508:101,-81,-50,0,0,0.132349 -8321,5508:100,-80,-50,0,0,0.131725 -8322,5507:209,-79,-50,0,0,0.129949 -8323,5507:208,-78,-50,0,0,0.130577 -8324,5507:207,-77,-50,0,0,0.133319 -8325,5507:206,-76,-50,0,0,0.134774 -8326,5507:205,-75,-50,0,0,0.133628 -8327,5507:104,-74,-50,0,0,0.13242 -8328,5507:103,-73,-50,0,0,0.134607 -8329,5507:102,-72,-50,0,0,0.13714 -8330,5507:101,-71,-50,0,0,0.136049 -8331,5507:100,-70,-50,0,0,0.132077 -8332,5506:209,-69,-50,0,0,0.126208 -8333,5506:208,-68,-50,0,0,0.114689 -8334,5506:207,-67,-50,0,0,0.108936 -8335,5506:206,-66,-50,0,0,0.109546 -8336,5506:205,-65,-50,0,0,0.110936 -8337,5506:104,-64,-50,0,0,0.114898 -8338,5506:103,-63,-50,0,0,0.121625 -8339,5506:102,-62,-50,0,0,0.121186 -8340,5506:101,-61,-50,0,0,0.115359 -8341,5506:100,-60,-50,0,0,0.101763 -8342,5505:209,-59,-50,0,0,0.100911 -8343,5505:208,-58,-50,0,0,0.0947997 -8344,5505:207,-57,-50,0,0,0.0942632 -8345,5505:206,-56,-50,0,0,0.0917757 -8346,5505:205,-55,-50,0,0,0.0913568 -8347,5505:104,-54,-50,0,0,0.0964076 -8348,5505:103,-53,-50,0,0,0.0952238 -8349,5505:102,-52,-50,0,0,0.0911951 -8350,5505:101,-51,-50,0,0,0.0883657 -8351,5505:100,-50,-50,0,0,0.0859705 -8352,5504:209,-49,-50,0,0,0.088631 -8353,5504:208,-48,-50,0,0,0.0954807 -8354,5504:207,-47,-50,0,0,0.0964346 -8355,5504:206,-46,-50,0,0,0.0926961 -8356,5504:205,-45,-50,0,0,0.0904316 -8357,5504:104,-44,-50,0,0,0.0886891 -8358,5504:103,-43,-50,0,0,0.0861644 -8359,5504:102,-42,-50,0,0,0.0917328 -8360,5504:101,-41,-50,0,0,0.0892303 -8361,5504:100,-40,-50,0,0,0.0904737 -8362,5503:209,-39,-50,0,0,0.0924285 -8363,5503:208,-38,-50,0,0,0.0875252 -8364,5503:207,-37,-50,0,0,0.0876565 -8365,5503:206,-36,-50,0,0,0.0876319 -8366,5503:205,-35,-50,0,0,0.0882582 -8367,5503:104,-34,-50,0,0,0.0855837 -8368,5503:103,-33,-50,0,0,0.0845044 -8369,5503:102,-32,-50,0,0,0.084775 -8370,5503:101,-31,-50,0,0,0.0850225 -8371,5503:100,-30,-50,0,0,0.0836658 -8372,5502:209,-29,-50,0,0,0.0838944 -8373,5502:208,-28,-50,0,0,0.0837052 -8374,5502:207,-27,-50,0,0,0.0825851 -8375,5502:206,-26,-50,0,0,0.0841712 -8376,5502:205,-25,-50,0,0,0.0847991 -8377,5502:104,-24,-50,0,0,0.0894058 -8378,5502:103,-23,-50,0,0,0.0913485 -8379,5502:102,-22,-50,0,0,0.0870503 -8380,5502:101,-21,-50,0,0,0.0863749 -8381,5502:100,-20,-50,0,0,0.0857205 -8382,5501:209,-19,-50,0,0,0.0850545 -8383,5501:208,-18,-50,0,0,0.0861725 -8384,5501:207,-17,-50,0,0,0.0853267 -8385,5501:206,-16,-50,0,0,0.0851507 -8386,5501:205,-15,-50,0,0,0.0838708 -8387,5501:104,-14,-50,0,0,0.0827956 -8388,5501:103,-13,-50,0,0,0.0830847 -8389,5501:102,-12,-50,0,0,0.0840287 -8390,5501:101,-11,-50,0,0,0.085624 -8391,5501:100,-10,-50,0,0,0.0846476 -8392,5500:209,-9,-50,0,0,0.0830142 -8393,5500:208,-8,-50,0,0,0.0839814 -8394,5500:207,-7,-50,0,0,0.0828423 -8395,5500:206,-6,-50,0,0,0.0827799 -8396,5500:205,-5,-50,0,0,0.0814787 -8397,5500:104,-4,-50,0,0,0.0821271 -8398,5500:103,-3,-50,0,0,0.0804012 -8399,5500:102,-2,-50,0,0,0.0813943 -8400,5500:101,-1,-50,0,0,0.0813174 -8401,3500:101,0,-50,0,0,0.0806066 -8402,3500:101,1,-50,0,0,0.0794792 -8403,3500:102,2,-50,0,0,0.0790218 -8404,3500:103,3,-50,0,0,0.0770775 -8405,3500:104,4,-50,0,0,0.0766184 -8406,3500:205,5,-50,0,0,0.0761689 -8407,3500:206,6,-50,0,0,0.0768003 -8408,3500:207,7,-50,0,0,0.0769315 -8409,3500:208,8,-50,0,0,0.0769389 -8410,3500:209,9,-50,0,0,0.0772092 -8411,3501:100,10,-50,0,0,0.0758803 -8412,3501:101,11,-50,0,0,0.0749846 -8413,3501:102,12,-50,0,0,0.0749703 -8414,3501:103,13,-50,0,0,0.0750702 -8415,3501:104,14,-50,0,0,0.0749916 -8416,3501:205,15,-50,0,0,0.0749133 -8417,3501:206,16,-50,0,0,0.0748777 -8418,3501:207,17,-50,0,0,0.0748421 -8419,3501:208,18,-50,0,0,0.0748208 -8420,3501:209,19,-50,0,0,0.0749062 -8421,3502:100,20,-50,0,0,0.075313 -8422,3502:101,21,-50,0,0,0.075765 -8423,3502:102,22,-50,0,0,0.0757002 -8424,3502:103,23,-50,0,0,0.0753847 -8425,3502:104,24,-50,0,0,0.0754849 -8426,3502:205,25,-50,0,0,0.07614 -8427,3502:206,26,-50,0,0,0.0765676 -8428,3502:207,27,-50,0,0,0.0763354 -8429,3502:208,28,-50,0,0,0.0754921 -8430,3502:209,29,-50,0,0,0.0762918 -8431,3503:100,30,-50,0,0,0.0773559 -8432,3503:101,31,-50,0,0,0.0766401 -8433,3503:102,32,-50,0,0,0.0765747 -8434,3503:103,33,-50,0,0,0.0759595 -8435,3503:104,34,-50,0,0,0.0772018 -8436,3503:205,35,-50,0,0,0.0805761 -8437,3503:206,36,-50,0,0,0.0787605 -8438,3503:207,37,-50,0,0,0.0793815 -8439,3503:208,38,-50,0,0,0.0794868 -8440,3503:209,39,-50,0,0,0.079254 -8441,3504:100,40,-50,0,0,0.0790218 -8442,3504:101,41,-50,0,0,0.0793064 -8443,3504:102,42,-50,0,0,0.0794792 -8444,3504:103,43,-50,0,0,0.0799768 -8445,3504:104,44,-50,0,0,0.0807435 -8446,3504:205,45,-50,0,0,0.0853509 -8447,3504:206,46,-50,0,0,0.083926 -8448,3504:207,47,-50,0,0,0.0803025 -8449,3504:208,48,-50,0,0,0.0791191 -8450,3504:209,49,-50,0,0,0.0800525 -8451,3505:100,50,-50,0,0,0.0812713 -8452,3505:101,51,-50,0,0,0.08181 -8453,3505:102,52,-50,0,0,0.0866185 -8454,3505:103,53,-50,0,0,0.0898584 -8455,3505:104,54,-50,0,0,0.0872546 -8456,3505:205,55,-50,0,0,0.0819491 -8457,3505:206,56,-50,0,0,0.0839183 -8458,3505:207,57,-50,0,0,0.084584 -8459,3505:208,58,-50,0,0,0.0852626 -8460,3505:209,59,-50,0,0,0.0876482 -8461,3506:100,60,-50,0,0,0.0880434 -8462,3506:101,61,-50,0,0,0.085648 -8463,3506:102,62,-50,0,0,0.0886723 -8464,3506:103,63,-50,0,0,0.0886723 -8465,3506:104,64,-50,0,0,0.0931292 -8466,3506:205,65,-50,0,0,0.0961394 -8467,3506:206,66,-50,0,0,0.0933288 -8468,3506:207,67,-50,0,0,0.0863344 -8469,3506:208,68,-50,0,0,0.0893639 -8470,3506:209,69,-50,0,0,0.0889469 -8471,3507:100,70,-50,0,0,0.0915277 -8472,3507:101,71,-50,0,0,0.0919986 -8473,3507:102,72,-50,0,0,0.0889634 -8474,3507:104,74,-50,0,0,0.0829205 -8475,3507:205,75,-50,0,0,0.0846955 -8476,3507:206,76,-50,0,0,0.0849267 -8477,3507:207,77,-50,0,0,0.0841159 -8478,3507:208,78,-50,0,0,0.0838313 -8479,3507:209,79,-50,0,0,0.0827644 -8480,3508:100,80,-50,0,0,0.0805531 -8481,3508:101,81,-50,0,0,0.0800828 -8482,3508:102,82,-50,0,0,0.079284 -8483,3508:103,83,-50,0,0,0.0777084 -8484,3508:104,84,-50,0,0,0.077224 -8485,3508:205,85,-50,0,0,0.0772385 -8486,3508:206,86,-50,0,0,0.0807971 -8487,3508:207,87,-50,0,0,0.0984222 -8488,3508:208,88,-50,0,0,0.099872 -8489,3508:209,89,-50,0,0,0.0976772 -8490,3509:100,90,-50,0,0,0.0961394 -8491,3509:101,91,-50,0,0,0.0968471 -8492,3509:102,92,-50,0,0,0.0948174 -8493,3509:103,93,-50,0,0,0.0928259 -8494,3509:104,94,-50,0,0,0.0932421 -8495,3509:205,95,-50,0,0,0.0911525 -8496,3509:206,96,-50,0,0,0.0893974 -8497,3509:207,97,-50,0,0,0.0909568 -8498,3509:208,98,-50,0,0,0.0908464 -8499,3509:209,99,-50,0,0,0.0888636 -8500,3510:100,100,-50,0,0,0.0915191 -8501,3510:101,101,-50,0,0,0.093103 -8502,3510:102,102,-50,0,0,0.0940268 -8503,3510:103,103,-50,0,0,0.0972433 -8504,3510:104,104,-50,0,0,0.0982307 -8505,3510:205,105,-50,0,0,0.0987965 -8506,3510:206,106,-50,0,0,0.100122 -8507,3510:207,107,-50,0,0,0.100094 -8508,3510:208,108,-50,0,0,0.10079 -8509,3510:209,109,-50,0,0,0.101341 -8510,3511:100,110,-50,0,0,0.101033 -8511,3511:101,111,-50,0,0,0.102791 -8512,3511:102,112,-50,0,0,0.10107 -8513,3511:103,113,-50,0,0,0.100818 -8514,3511:104,114,-50,0,0,0.105194 -8515,3511:205,115,-50,0,0,0.104788 -8516,3511:206,116,-50,0,0,0.108101 -8517,3511:207,117,-50,0,0,0.109917 -8518,3511:208,118,-50,0,0,0.109506 -8519,3511:209,119,-50,0,0,0.109877 -8520,3512:100,120,-50,0,0,0.106077 -8521,3512:101,121,-50,0,0,0.103399 -8522,3512:102,122,-50,0,0,0.104856 -8523,3512:103,123,-50,0,0,0.105921 -8524,3512:104,124,-50,0,0,0.103523 -8525,3512:205,125,-50,0,0,0.103475 -8526,3512:206,126,-50,0,0,0.107173 -8527,3512:207,127,-50,0,0,0.110279 -8528,3512:208,128,-50,0,0,0.109676 -8529,3512:209,129,-50,0,0,0.107715 -8530,3513:100,130,-50,0,0,0.107468 -8531,3513:101,131,-50,0,0,0.107745 -8532,3513:102,132,-50,0,0,0.108786 -8533,3513:103,133,-50,0,0,0.108776 -8534,3513:104,134,-50,0,0,0.107508 -8535,3513:205,135,-50,0,0,0.105252 -8536,3513:206,136,-50,0,0,0.105912 -8537,3513:207,137,-50,0,0,0.106526 -8538,3513:208,138,-50,0,0,0.107232 -8539,3513:209,139,-50,0,0,0.105001 -8540,3514:100,140,-50,0,0,0.104991 -8541,3514:101,141,-50,0,0,0.106448 -8542,3514:102,142,-50,0,0,0.108032 -8543,3514:103,143,-50,0,0,0.109085 -8544,3514:104,144,-50,0,0,0.109166 -8545,3514:205,145,-50,0,0,0.108836 -8546,3514:206,146,-50,0,0,0.10817 -8547,3514:207,147,-50,0,0,0.105775 -8548,3514:208,148,-50,0,0,0.104067 -8549,3514:209,149,-50,0,0,0.0988605 -8550,3515:100,150,-50,0,0,0.0882415 -8551,3515:101,151,-50,0,0,0.0948438 -8552,3515:102,152,-50,0,0,0.0945973 -8553,3515:103,153,-50,0,0,0.097795 -8554,3515:104,154,-50,0,0,0.118231 -8555,3515:205,155,-50,0,0,0.120401 -8556,3515:206,156,-50,0,0,0.101904 -8557,3515:207,157,-50,0,0,0.101107 -8558,3515:208,158,-50,0,0,0.107036 -8559,3515:209,159,-50,0,0,0.112015 -8560,3516:100,160,-50,0,0,0.111566 -8561,3516:101,161,-50,0,0,0.109947 -8562,3516:102,162,-50,0,0,0.12202 -8563,3516:103,163,-50,0,0,0.120053 -8564,3516:104,164,-50,0,0,0.134367 -8565,3516:205,165,-50,0,0,0.132656 -8566,3516:206,166,-50,0,0,0.13383 -8567,3516:207,167,-50,0,0,0.13149 -8568,3516:208,168,-50,0,0,0.131232 -8569,3516:209,169,-50,0,0,0.131033 -8570,3517:100,170,-50,0,0,0.130694 -8571,3517:101,171,-50,0,0,0.129612 -8572,3517:102,172,-50,0,0,0.13203 -8573,3517:103,173,-50,0,0,0.131244 -8574,3517:104,174,-50,0,0,0.130717 -8575,3517:205,175,-50,0,0,0.128665 -8576,3517:206,176,-50,0,0,0.127403 -8577,3517:207,177,-50,0,0,0.12499 -8578,3517:208,178,-50,0,0,0.125632 -8579,3517:209,179,-50,0,0,0.126981 -8580,3518:100,180,-50,0,0,0.132585 -8581,5418:390,-180,-49,0,0,0.137018 -8582,5417:499,-179,-49,0,0,0.134511 -8583,5417:498,-178,-49,0,0,0.126277 -8584,5417:497,-177,-49,0,0,0.126503 -8585,5417:496,-176,-49,0,0,0.136509 -8586,5417:495,-175,-49,0,0,0.135663 -8587,5417:394,-174,-49,0,0,0.134224 -8588,5417:393,-173,-49,0,0,0.13281 -8589,5417:392,-172,-49,0,0,0.132656 -8590,5417:391,-171,-49,0,0,0.135038 -8591,5417:390,-170,-49,0,0,0.133474 -8592,5416:499,-169,-49,0,0,0.126913 -8593,5416:498,-168,-49,0,0,0.122561 -8594,5416:497,-167,-49,0,0,0.125384 -8595,5416:496,-166,-49,0,0,0.131056 -8596,5416:495,-165,-49,0,0,0.130741 -8597,5416:394,-164,-49,0,0,0.127643 -8598,5416:393,-163,-49,0,0,0.124317 -8599,5416:392,-162,-49,0,0,0.123214 -8600,5416:391,-161,-49,0,0,0.124822 -8601,5416:390,-160,-49,0,0,0.128849 -8602,5415:499,-159,-49,0,0,0.130822 -8603,5415:498,-158,-49,0,0,0.13307 -8604,5415:497,-157,-49,0,0,0.136037 -8605,5415:496,-156,-49,0,0,0.131713 -8606,5415:495,-155,-49,0,0,0.125159 -8607,5415:394,-154,-49,0,0,0.118327 -8608,5415:393,-153,-49,0,0,0.113568 -8609,5415:392,-152,-49,0,0,0.110431 -8610,5415:391,-151,-49,0,0,0.10531 -8611,5415:390,-150,-49,0,0,0.103332 -8612,5414:499,-149,-49,0,0,0.106067 -8613,5414:498,-148,-49,0,0,0.100623 -8614,5414:497,-147,-49,0,0,0.102431 -8615,5414:496,-146,-49,0,0,0.104846 -8616,5414:495,-145,-49,0,0,0.11224 -8617,5414:394,-144,-49,0,0,0.120303 -8618,5414:393,-143,-49,0,0,0.1342 -8619,5414:392,-142,-49,0,0,0.144688 -8620,5414:391,-141,-49,0,0,0.150504 -8621,5414:390,-140,-49,0,0,0.136921 -8622,5413:499,-139,-49,0,0,0.139454 -8623,5413:498,-138,-49,0,0,0.142239 -8624,5413:497,-137,-49,0,0,0.142251 -8625,5413:496,-136,-49,0,0,0.140903 -8626,5413:495,-135,-49,0,0,0.140381 -8627,5413:394,-134,-49,0,0,0.150255 -8628,5413:393,-133,-49,0,0,0.153697 -8629,5413:392,-132,-49,0,0,0.142967 -8630,5413:391,-131,-49,0,0,0.131513 -8631,5413:390,-130,-49,0,0,0.134117 -8632,5412:499,-129,-49,0,0,0.14437 -8633,5412:498,-128,-49,0,0,0.141239 -8634,5412:497,-127,-49,0,0,0.151123 -8635,5412:496,-126,-49,0,0,0.164046 -8636,5412:495,-125,-49,0,0,0.161193 -8637,5412:394,-124,-49,0,0,0.155713 -8638,5412:393,-123,-49,0,0,0.139874 -8639,5412:392,-122,-49,0,0,0.126753 -8640,5412:391,-121,-49,0,0,0.126913 -8641,5412:390,-120,-49,0,0,0.133331 -8642,5411:499,-119,-49,0,0,0.137895 -8643,5411:498,-118,-49,0,0,0.135314 -8644,5411:497,-117,-49,0,0,0.136764 -8645,5411:496,-116,-49,0,0,0.140716 -8646,5411:495,-115,-49,0,0,0.136339 -8647,5411:394,-114,-49,0,0,0.134918 -8648,5411:393,-113,-49,0,0,0.137822 -8649,5411:392,-112,-49,0,0,0.142164 -8650,5411:391,-111,-49,0,0,0.143649 -8651,5411:390,-110,-49,0,0,0.14493 -8652,5410:499,-109,-49,0,0,0.147237 -8653,5410:498,-108,-49,0,0,0.148142 -8654,5410:497,-107,-49,0,0,0.146451 -8655,5410:496,-106,-49,0,0,0.143914 -8656,5410:495,-105,-49,0,0,0.142942 -8657,5410:394,-104,-49,0,0,0.142917 -8658,5410:393,-103,-49,0,0,0.139898 -8659,5410:392,-102,-49,0,0,0.133676 -8660,5410:391,-101,-49,0,0,0.134738 -8661,5410:390,-100,-49,0,0,0.134595 -8662,5409:499,-99,-49,0,0,0.135687 -8663,5409:498,-98,-49,0,0,0.137042 -8664,5409:497,-97,-49,0,0,0.135447 -8665,5409:496,-96,-49,0,0,0.132928 -8666,5409:495,-95,-49,0,0,0.133343 -8667,5409:394,-94,-49,0,0,0.136642 -8668,5409:393,-93,-49,0,0,0.136049 -8669,5409:392,-92,-49,0,0,0.133296 -8670,5409:391,-91,-49,0,0,0.134654 -8671,5409:390,-90,-49,0,0,0.133628 -8672,5408:499,-89,-49,0,0,0.13481 -8673,5408:498,-88,-49,0,0,0.136134 -8674,5408:497,-87,-49,0,0,0.136097 -8675,5408:496,-86,-49,0,0,0.135507 -8676,5408:495,-85,-49,0,0,0.13646 -8677,5408:394,-84,-49,0,0,0.136279 -8678,5408:393,-83,-49,0,0,0.134475 -8679,5408:392,-82,-49,0,0,0.135206 -8680,5408:391,-81,-49,0,0,0.136788 -8681,5408:390,-80,-49,0,0,0.135904 -8682,5407:499,-79,-49,0,0,0.134679 -8683,5407:498,-78,-49,0,0,0.135459 -8684,5407:497,-77,-49,0,0,0.137225 -8685,5407:496,-76,-49,0,0,0.13731 -8686,5407:495,-75,-49,0,0,0.137116 -8687,5407:394,-74,-49,0,0,0.139997 -8688,5407:393,-73,-49,0,0,0.142703 -8689,5407:392,-72,-49,0,0,0.140766 -8690,5407:391,-71,-49,0,0,0.141563 -8691,5407:390,-70,-49,0,0,0.144155 -8692,5406:499,-69,-49,0,0,0.135796 -8693,5406:498,-68,-49,0,0,0.130135 -8694,5406:497,-67,-49,0,0,0.119944 -8695,5406:496,-66,-49,0,0,0.114762 -8696,5406:495,-65,-49,0,0,0.120194 -8697,5406:394,-64,-49,0,0,0.124474 -8698,5406:393,-63,-49,0,0,0.123225 -8699,5406:392,-62,-49,0,0,0.122064 -8700,5406:391,-61,-49,0,0,0.119739 -8701,5406:390,-60,-49,0,0,0.111444 -8702,5405:499,-59,-49,0,0,0.100706 -8703,5405:498,-58,-49,0,0,0.100855 -8704,5405:497,-57,-49,0,0,0.101135 -8705,5405:496,-56,-49,0,0,0.0999736 -8706,5405:495,-55,-49,0,0,0.0958187 -8707,5405:394,-54,-49,0,0,0.101575 -8708,5405:393,-53,-49,0,0,0.106331 -8709,5405:392,-52,-49,0,0,0.0954277 -8710,5405:391,-51,-49,0,0,0.0954452 -8711,5405:390,-50,-49,0,0,0.0975231 -8712,5404:499,-49,-49,0,0,0.0948527 -8713,5404:498,-48,-49,0,0,0.0978038 -8714,5404:497,-47,-49,0,0,0.0975142 -8715,5404:496,-46,-49,0,0,0.0984311 -8716,5404:495,-45,-49,0,0,0.0937731 -8717,5404:394,-44,-49,0,0,0.0922307 -8718,5404:393,-43,-49,0,0,0.0914936 -8719,5404:392,-42,-49,0,0,0.096068 -8720,5404:391,-41,-49,0,0,0.0979854 -8721,5404:390,-40,-49,0,0,0.0961931 -8722,5403:499,-39,-49,0,0,0.0967394 -8723,5403:498,-38,-49,0,0,0.09359 -8724,5403:497,-37,-49,0,0,0.0895649 -8725,5403:496,-36,-49,0,0,0.08959 -8726,5403:495,-35,-49,0,0,0.0900941 -8727,5403:394,-34,-49,0,0,0.0878538 -8728,5403:393,-33,-49,0,0,0.0852467 -8729,5403:392,-32,-49,0,0,0.0858656 -8730,5403:391,-31,-49,0,0,0.0869769 -8731,5403:390,-30,-49,0,0,0.0853348 -8732,5402:499,-29,-49,0,0,0.0849347 -8733,5402:498,-28,-49,0,0,0.0848468 -8734,5402:497,-27,-49,0,0,0.0836658 -8735,5402:496,-26,-49,0,0,0.0851665 -8736,5402:495,-25,-49,0,0,0.0883079 -8737,5402:394,-24,-49,0,0,0.0882251 -8738,5402:393,-23,-49,0,0,0.0911099 -8739,5402:392,-22,-49,0,0,0.091596 -8740,5402:391,-21,-49,0,0,0.0902711 -8741,5402:390,-20,-49,0,0,0.0936945 -8742,5401:499,-19,-49,0,0,0.0915447 -8743,5401:498,-18,-49,0,0,0.0905836 -8744,5401:497,-17,-49,0,0,0.0923426 -8745,5401:496,-16,-49,0,0,0.0924285 -8746,5401:495,-15,-49,0,0,0.0891801 -8747,5401:394,-14,-49,0,0,0.0874924 -8748,5401:393,-13,-49,0,0,0.0891302 -8749,5401:392,-12,-49,0,0,0.0909825 -8750,5401:391,-11,-49,0,0,0.0909993 -8751,5401:390,-10,-49,0,0,0.0892887 -8752,5400:499,-9,-49,0,0,0.0891552 -8753,5400:498,-8,-49,0,0,0.0897326 -8754,5400:497,-7,-49,0,0,0.0884486 -8755,5400:496,-6,-49,0,0,0.0869525 -8756,5400:495,-5,-49,0,0,0.0855435 -8757,5400:394,-4,-49,0,0,0.0848548 -8758,5400:393,-3,-49,0,0,0.0846078 -8759,5400:392,-2,-49,0,0,0.0836893 -8760,5400:391,-1,-49,0,0,0.0829047 -8761,3400:391,0,-49,0,0,0.0828423 -8762,3400:391,1,-49,0,0,0.0825851 -8763,3400:392,2,-49,0,0,0.0818486 -8764,3400:393,3,-49,0,0,0.0809115 -8765,3400:394,4,-49,0,0,0.0803859 -8766,3400:495,5,-49,0,0,0.0802418 -8767,3400:496,6,-49,0,0,0.0800828 -8768,3400:497,7,-49,0,0,0.0795469 -8769,3400:498,8,-49,0,0,0.0786786 -8770,3400:499,9,-49,0,0,0.079224 -8771,3401:390,10,-49,0,0,0.0784183 -8772,3401:391,11,-49,0,0,0.078344 -8773,3401:392,12,-49,0,0,0.0784258 -8774,3401:393,13,-49,0,0,0.0784927 -8775,3401:394,14,-49,0,0,0.0783071 -8776,3401:495,15,-49,0,0,0.0777527 -8777,3401:496,16,-49,0,0,0.0779224 -8778,3401:497,17,-49,0,0,0.0762629 -8779,3401:498,18,-49,0,0,0.0759452 -8780,3401:499,19,-49,0,0,0.0758658 -8781,3402:390,20,-49,0,0,0.0760317 -8782,3402:391,21,-49,0,0,0.0762991 -8783,3402:392,22,-49,0,0,0.0763281 -8784,3402:393,23,-49,0,0,0.0760895 -8785,3402:394,24,-49,0,0,0.0760245 -8786,3402:495,25,-49,0,0,0.0770117 -8787,3402:496,26,-49,0,0,0.0776864 -8788,3402:497,27,-49,0,0,0.079007 -8789,3402:498,28,-49,0,0,0.0797277 -8790,3402:499,29,-49,0,0,0.0802039 -8791,3403:390,30,-49,0,0,0.079803 -8792,3403:391,31,-49,0,0,0.0790517 -8793,3403:392,32,-49,0,0,0.0784852 -8794,3403:393,33,-49,0,0,0.0777453 -8795,3403:394,34,-49,0,0,0.0786711 -8796,3403:495,35,-49,0,0,0.079788 -8797,3403:496,36,-49,0,0,0.0850706 -8798,3403:497,37,-49,0,0,0.0846238 -8799,3403:498,38,-49,0,0,0.0802265 -8800,3403:499,39,-49,0,0,0.0795921 -8801,3404:390,40,-49,0,0,0.0805227 -8802,3404:391,41,-49,0,0,0.0844091 -8803,3404:392,42,-49,0,0,0.0811948 -8804,3404:393,43,-49,0,0,0.0810875 -8805,3404:394,44,-49,0,0,0.0840447 -8806,3404:495,45,-49,0,0,0.0858897 -8807,3404:496,46,-49,0,0,0.0852147 -8808,3404:497,47,-49,0,0,0.0852868 -8809,3404:498,48,-49,0,0,0.0881261 -8810,3404:499,49,-49,0,0,0.0891801 -8811,3405:390,50,-49,0,0,0.0879033 -8812,3405:391,51,-49,0,0,0.0850386 -8813,3405:392,52,-49,0,0,0.0861565 -8814,3405:393,53,-49,0,0,0.0891302 -8815,3405:394,54,-49,0,0,0.0886891 -8816,3405:495,55,-49,0,0,0.0868057 -8817,3405:496,56,-49,0,0,0.0858252 -8818,3405:497,57,-49,0,0,0.0867893 -8819,3405:498,58,-49,0,0,0.08764 -8820,3405:499,59,-49,0,0,0.0872464 -8821,3406:390,60,-49,0,0,0.0887971 -8822,3406:391,61,-49,0,0,0.089951 -8823,3406:392,62,-49,0,0,0.0901614 -8824,3406:393,63,-49,0,0,0.09077 -8825,3406:394,64,-49,0,0,0.0939392 -8826,3406:495,65,-49,0,0,0.096964 -8827,3406:496,66,-49,0,0,0.0967394 -8828,3406:497,67,-49,0,0,0.0899341 -8829,3406:498,68,-49,0,0,0.0889217 -8830,3406:499,69,-49,0,0,0.0911525 -8831,3407:390,70,-49,0,0,0.0930596 -8832,3407:391,71,-49,0,0,0.0940792 -8833,3407:392,72,-49,0,0,0.0912291 -8834,3407:394,74,-49,0,0,0.0885976 -8835,3407:495,75,-49,0,0,0.0898584 -8836,3407:496,76,-49,0,0,0.0837682 -8837,3407:497,77,-49,0,0,0.0856802 -8838,3407:498,78,-49,0,0,0.084775 -8839,3407:499,79,-49,0,0,0.084092 -8840,3408:390,80,-49,0,0,0.0837762 -8841,3408:391,81,-49,0,0,0.0843139 -8842,3408:392,82,-49,0,0,0.0818178 -8843,3408:393,83,-49,0,0,0.0789771 -8844,3408:394,84,-49,0,0,0.0848948 -8845,3408:495,85,-49,0,0,0.0989706 -8846,3408:496,86,-49,0,0,0.102838 -8847,3408:497,87,-49,0,0,0.101566 -8848,3408:498,88,-49,0,0,0.1015 -8849,3408:499,89,-49,0,0,0.0994295 -8850,3409:390,90,-49,0,0,0.0966586 -8851,3409:391,91,-49,0,0,0.0950203 -8852,3409:392,92,-49,0,0,0.0934331 -8853,3409:393,93,-49,0,0,0.0918785 -8854,3409:394,94,-49,0,0,0.0904569 -8855,3409:495,95,-49,0,0,0.0906007 -8856,3409:496,96,-49,0,0,0.0926874 -8857,3409:497,97,-49,0,0,0.0968022 -8858,3409:498,98,-49,0,0,0.0980306 -8859,3409:499,99,-49,0,0,0.0948969 -8860,3410:390,100,-49,0,0,0.0956496 -8861,3410:391,101,-49,0,0,0.0978583 -8862,3410:392,102,-49,0,0,0.0937209 -8863,3410:393,103,-49,0,0,0.0956317 -8864,3410:394,104,-49,0,0,0.10066 -8865,3410:495,105,-49,0,0,0.101163 -8866,3410:496,106,-49,0,0,0.100298 -8867,3410:497,107,-49,0,0,0.100762 -8868,3410:498,108,-49,0,0,0.102158 -8869,3410:499,109,-49,0,0,0.103047 -8870,3411:390,110,-49,0,0,0.103209 -8871,3411:391,111,-49,0,0,0.10595 -8872,3411:392,112,-49,0,0,0.103943 -8873,3411:393,113,-49,0,0,0.100567 -8874,3411:394,114,-49,0,0,0.102753 -8875,3411:495,115,-49,0,0,0.1038 -8876,3411:496,116,-49,0,0,0.109355 -8877,3411:497,117,-49,0,0,0.109215 -8878,3411:498,118,-49,0,0,0.108896 -8879,3411:499,119,-49,0,0,0.108498 -8880,3412:390,120,-49,0,0,0.10679 -8881,3412:391,121,-49,0,0,0.109335 -8882,3412:392,122,-49,0,0,0.114992 -8883,3412:393,123,-49,0,0,0.117707 -8884,3412:394,124,-49,0,0,0.114846 -8885,3412:495,125,-49,0,0,0.113754 -8886,3412:496,126,-49,0,0,0.1147 -8887,3412:497,127,-49,0,0,0.115097 -8888,3412:498,128,-49,0,0,0.113816 -8889,3412:499,129,-49,0,0,0.112015 -8890,3413:390,130,-49,0,0,0.110098 -8891,3413:391,131,-49,0,0,0.110279 -8892,3413:392,132,-49,0,0,0.110754 -8893,3413:393,133,-49,0,0,0.11037 -8894,3413:394,134,-49,0,0,0.112373 -8895,3413:495,135,-49,0,0,0.111352 -8896,3413:496,136,-49,0,0,0.109215 -8897,3413:497,137,-49,0,0,0.108617 -8898,3413:498,138,-49,0,0,0.108398 -8899,3413:499,139,-49,0,0,0.10818 -8900,3414:390,140,-49,0,0,0.108647 -8901,3414:391,141,-49,0,0,0.111678 -8902,3414:392,142,-49,0,0,0.115191 -8903,3414:393,143,-49,0,0,0.114575 -8904,3414:394,144,-49,0,0,0.113072 -8905,3414:495,145,-49,0,0,0.112476 -8906,3414:496,146,-49,0,0,0.111038 -8907,3414:497,147,-49,0,0,0.108002 -8908,3414:498,148,-49,0,0,0.102999 -8909,3414:499,149,-49,0,0,0.0938344 -8910,3415:390,150,-49,0,0,0.0952416 -8911,3415:391,151,-49,0,0,0.100057 -8912,3415:392,152,-49,0,0,0.102205 -8913,3415:393,153,-49,0,0,0.121274 -8914,3415:394,154,-49,0,0,0.122561 -8915,3415:495,155,-49,0,0,0.121384 -8916,3415:496,156,-49,0,0,0.114169 -8917,3415:497,157,-49,0,0,0.102981 -8918,3415:498,158,-49,0,0,0.106019 -8919,3415:499,159,-49,0,0,0.119274 -8920,3416:390,160,-49,0,0,0.11909 -8921,3416:391,161,-49,0,0,0.114075 -8922,3416:392,162,-49,0,0,0.122318 -8923,3416:393,163,-49,0,0,0.124183 -8924,3416:394,164,-49,0,0,0.137651 -8925,3416:495,165,-49,0,0,0.136376 -8926,3416:496,166,-49,0,0,0.133355 -8927,3416:497,167,-49,0,0,0.132609 -8928,3416:498,168,-49,0,0,0.131901 -8929,3416:499,169,-49,0,0,0.133878 -8930,3417:390,170,-49,0,0,0.135519 -8931,3417:391,171,-49,0,0,0.134248 -8932,3417:392,172,-49,0,0,0.136885 -8933,3417:393,173,-49,0,0,0.144472 -8934,3417:394,174,-49,0,0,0.1459 -8935,3417:495,175,-49,0,0,0.146992 -8936,3417:496,176,-49,0,0,0.145287 -8937,3417:497,177,-49,0,0,0.133605 -8938,3417:498,178,-49,0,0,0.12639 -8939,3417:499,179,-49,0,0,0.127907 -8940,3418:390,180,-49,0,0,0.137018 -8941,5418:380,-180,-48,0,0,0.141015 -8942,5417:489,-179,-48,0,0,0.144015 -8943,5417:488,-178,-48,0,0,0.144943 -8944,5417:487,-177,-48,0,0,0.133355 -8945,5417:486,-176,-48,0,0,0.134403 -8946,5417:485,-175,-48,0,0,0.139948 -8947,5417:384,-174,-48,0,0,0.140654 -8948,5417:383,-173,-48,0,0,0.140729 -8949,5417:382,-172,-48,0,0,0.140592 -8950,5417:381,-171,-48,0,0,0.14249 -8951,5417:380,-170,-48,0,0,0.141776 -8952,5416:489,-169,-48,0,0,0.132502 -8953,5416:488,-168,-48,0,0,0.128343 -8954,5416:487,-167,-48,0,0,0.128665 -8955,5416:486,-166,-48,0,0,0.130216 -8956,5416:485,-165,-48,0,0,0.133296 -8957,5416:384,-164,-48,0,0,0.134595 -8958,5416:383,-163,-48,0,0,0.131396 -8959,5416:382,-162,-48,0,0,0.129589 -8960,5416:381,-161,-48,0,0,0.133807 -8961,5416:380,-160,-48,0,0,0.137993 -8962,5415:489,-159,-48,0,0,0.13731 -8963,5415:488,-158,-48,0,0,0.140542 -8964,5415:487,-157,-48,0,0,0.143219 -8965,5415:486,-156,-48,0,0,0.141963 -8966,5415:485,-155,-48,0,0,0.136279 -8967,5415:384,-154,-48,0,0,0.130822 -8968,5415:383,-153,-48,0,0,0.121515 -8969,5415:382,-152,-48,0,0,0.120162 -8970,5415:381,-151,-48,0,0,0.115842 -8971,5415:380,-150,-48,0,0,0.11038 -8972,5414:489,-149,-48,0,0,0.107183 -8973,5414:488,-148,-48,0,0,0.10683 -8974,5414:487,-147,-48,0,0,0.106048 -8975,5414:486,-146,-48,0,0,0.105649 -8976,5414:485,-145,-48,0,0,0.110795 -8977,5414:384,-144,-48,0,0,0.12377 -8978,5414:383,-143,-48,0,0,0.130636 -8979,5414:382,-142,-48,0,0,0.132243 -8980,5414:381,-141,-48,0,0,0.130904 -8981,5414:380,-140,-48,0,0,0.135026 -8982,5413:489,-139,-48,0,0,0.141388 -8983,5413:488,-138,-48,0,0,0.147095 -8984,5413:487,-137,-48,0,0,0.149117 -8985,5413:486,-136,-48,0,0,0.150124 -8986,5413:485,-135,-48,0,0,0.153177 -8987,5413:384,-134,-48,0,0,0.157559 -8988,5413:383,-133,-48,0,0,0.155861 -8989,5413:382,-132,-48,0,0,0.148259 -8990,5413:381,-131,-48,0,0,0.142414 -8991,5413:380,-130,-48,0,0,0.161554 -8992,5412:489,-129,-48,0,0,0.168692 -8993,5412:488,-128,-48,0,0,0.163259 -8994,5412:487,-127,-48,0,0,0.166927 -8995,5412:486,-126,-48,0,0,0.169355 -8996,5412:485,-125,-48,0,0,0.171126 -8997,5412:384,-124,-48,0,0,0.169182 -8998,5412:383,-123,-48,0,0,0.158406 -8999,5412:382,-122,-48,0,0,0.151321 -9000,5412:381,-121,-48,0,0,0.139997 -9001,5412:380,-120,-48,0,0,0.137225 -9002,5411:489,-119,-48,0,0,0.142439 -9003,5411:488,-118,-48,0,0,0.147948 -9004,5411:487,-117,-48,0,0,0.148557 -9005,5411:486,-116,-48,0,0,0.149052 -9006,5411:485,-115,-48,0,0,0.153952 -9007,5411:384,-114,-48,0,0,0.153724 -9008,5411:383,-113,-48,0,0,0.155146 -9009,5411:382,-112,-48,0,0,0.155942 -9010,5411:381,-111,-48,0,0,0.150543 -9011,5411:380,-110,-48,0,0,0.147805 -9012,5410:489,-109,-48,0,0,0.14567 -9013,5410:488,-108,-48,0,0,0.144688 -9014,5410:487,-107,-48,0,0,0.143762 -9015,5410:486,-106,-48,0,0,0.143661 -9016,5410:485,-105,-48,0,0,0.144764 -9017,5410:384,-104,-48,0,0,0.143509 -9018,5410:383,-103,-48,0,0,0.138777 -9019,5410:382,-102,-48,0,0,0.141289 -9020,5410:381,-101,-48,0,0,0.141551 -9021,5410:380,-100,-48,0,0,0.141401 -9022,5409:489,-99,-48,0,0,0.142151 -9023,5409:488,-98,-48,0,0,0.142264 -9024,5409:487,-97,-48,0,0,0.141438 -9025,5409:486,-96,-48,0,0,0.139417 -9026,5409:485,-95,-48,0,0,0.137456 -9027,5409:384,-94,-48,0,0,0.139195 -9028,5409:383,-93,-48,0,0,0.138177 -9029,5409:382,-92,-48,0,0,0.137554 -9030,5409:381,-91,-48,0,0,0.137444 -9031,5409:380,-90,-48,0,0,0.13617 -9032,5408:489,-89,-48,0,0,0.138544 -9033,5408:488,-88,-48,0,0,0.140903 -9034,5408:487,-87,-48,0,0,0.140406 -9035,5408:486,-86,-48,0,0,0.139626 -9036,5408:485,-85,-48,0,0,0.138666 -9037,5408:384,-84,-48,0,0,0.138042 -9038,5408:383,-83,-48,0,0,0.138262 -9039,5408:382,-82,-48,0,0,0.138544 -9040,5408:381,-81,-48,0,0,0.138986 -9041,5408:380,-80,-48,0,0,0.140295 -9042,5407:489,-79,-48,0,0,0.141538 -9043,5407:488,-78,-48,0,0,0.140965 -9044,5407:487,-77,-48,0,0,0.140357 -9045,5407:486,-76,-48,0,0,0.140381 -9046,5407:485,-75,-48,0,0,0.141401 -9047,5407:384,-74,-48,0,0,0.148064 -9048,5407:383,-73,-48,0,0,0.145798 -9049,5407:382,-72,-48,0,0,0.142013 -9050,5407:381,-71,-48,0,0,0.146195 -9051,5407:380,-70,-48,0,0,0.147005 -9052,5406:489,-69,-48,0,0,0.148791 -9053,5406:488,-68,-48,0,0,0.148103 -9054,5406:487,-67,-48,0,0,0.139318 -9055,5406:486,-66,-48,0,0,0.123081 -9056,5406:485,-65,-48,0,0,0.123715 -9057,5406:384,-64,-48,0,0,0.126481 -9058,5406:383,-63,-48,0,0,0.123103 -9059,5406:382,-62,-48,0,0,0.124586 -9060,5406:381,-61,-48,0,0,0.123281 -9061,5406:380,-60,-48,0,0,0.11837 -9062,5405:489,-59,-48,0,0,0.117867 -9063,5405:488,-58,-48,0,0,0.125046 -9064,5405:487,-57,-48,0,0,0.126765 -9065,5405:486,-56,-48,0,0,0.119728 -9066,5405:485,-55,-48,0,0,0.101201 -9067,5405:384,-54,-48,0,0,0.102554 -9068,5405:383,-53,-48,0,0,0.108846 -9069,5405:382,-52,-48,0,0,0.110088 -9070,5405:381,-51,-48,0,0,0.106214 -9071,5405:380,-50,-48,0,0,0.103028 -9072,5404:489,-49,-48,0,0,0.0985681 -9073,5404:488,-48,-48,0,0,0.0988515 -9074,5404:487,-47,-48,0,0,0.101669 -9075,5404:486,-46,-48,0,0,0.101885 -9076,5404:485,-45,-48,0,0,0.10359 -9077,5404:384,-44,-48,0,0,0.097036 -9078,5404:383,-43,-48,0,0,0.0981854 -9079,5404:382,-42,-48,0,0,0.0996321 -9080,5404:381,-41,-48,0,0,0.100075 -9081,5404:380,-40,-48,0,0,0.0961664 -9082,5403:489,-39,-48,0,0,0.0963628 -9083,5403:488,-38,-48,0,0,0.0931205 -9084,5403:487,-37,-48,0,0,0.0915788 -9085,5403:486,-36,-48,0,0,0.0916388 -9086,5403:485,-35,-48,0,0,0.0924975 -9087,5403:384,-34,-48,0,0,0.0918957 -9088,5403:383,-33,-48,0,0,0.0888636 -9089,5403:382,-32,-48,0,0,0.0877468 -9090,5403:381,-31,-48,0,0,0.0880434 -9091,5403:380,-30,-48,0,0,0.0859542 -9092,5402:489,-29,-48,0,0,0.085922 -9093,5402:488,-28,-48,0,0,0.0864319 -9094,5402:487,-27,-48,0,0,0.084823 -9095,5402:486,-26,-48,0,0,0.0871157 -9096,5402:485,-25,-48,0,0,0.0874759 -9097,5402:384,-24,-48,0,0,0.0924372 -9098,5402:383,-23,-48,0,0,0.0983766 -9099,5402:382,-22,-48,0,0,0.0947203 -9100,5402:381,-21,-48,0,0,0.0920243 -9101,5402:380,-20,-48,0,0,0.0933984 -9102,5401:489,-19,-48,0,0,0.0957741 -9103,5401:488,-18,-48,0,0,0.0952592 -9104,5401:487,-17,-48,0,0,0.0935812 -9105,5401:486,-16,-48,0,0,0.095623 -9106,5401:485,-15,-48,0,0,0.096345 -9107,5401:384,-14,-48,0,0,0.0944478 -9108,5401:383,-13,-48,0,0,0.0941842 -9109,5401:382,-12,-48,0,0,0.0958899 -9110,5401:381,-11,-48,0,0,0.0961394 -9111,5401:380,-10,-48,0,0,0.0925061 -9112,5400:489,-9,-48,0,0,0.0887722 -9113,5400:488,-8,-48,0,0,0.0894308 -9114,5400:487,-7,-48,0,0,0.0882829 -9115,5400:486,-6,-48,0,0,0.0874759 -9116,5400:485,-5,-48,0,0,0.0862049 -9117,5400:384,-4,-48,0,0,0.0857205 -9118,5400:383,-3,-48,0,0,0.0851106 -9119,5400:382,-2,-48,0,0,0.0844726 -9120,5400:381,-1,-48,0,0,0.0836028 -9121,3400:381,0,-48,0,0,0.0831786 -9122,3400:381,1,-48,0,0,0.0826084 -9123,3400:382,2,-48,0,0,0.0827799 -9124,3400:383,3,-48,0,0,0.0823673 -9125,3400:384,4,-48,0,0,0.0810186 -9126,3400:485,5,-48,0,0,0.0813481 -9127,3400:486,6,-48,0,0,0.080942 -9128,3400:487,7,-48,0,0,0.0822432 -9129,3400:488,8,-48,0,0,0.0823363 -9130,3400:489,9,-48,0,0,0.0820496 -9131,3401:380,10,-48,0,0,0.0813329 -9132,3401:381,11,-48,0,0,0.0800828 -9133,3401:382,12,-48,0,0,0.0798634 -9134,3401:383,13,-48,0,0,0.0800901 -9135,3401:384,14,-48,0,0,0.0796974 -9136,3401:485,15,-48,0,0,0.0791865 -9137,3401:486,16,-48,0,0,0.0790967 -9138,3401:487,17,-48,0,0,0.0786861 -9139,3401:488,18,-48,0,0,0.0785968 -9140,3401:489,19,-48,0,0,0.0785893 -9141,3402:380,20,-48,0,0,0.0784333 -9142,3402:381,21,-48,0,0,0.0777379 -9143,3402:382,22,-48,0,0,0.0781145 -9144,3402:383,23,-48,0,0,0.0770483 -9145,3402:384,24,-48,0,0,0.076524 -9146,3402:485,25,-48,0,0,0.0784405 -9147,3402:486,26,-48,0,0,0.0777453 -9148,3402:487,27,-48,0,0,0.0783812 -9149,3402:488,28,-48,0,0,0.0826241 -9150,3402:489,29,-48,0,0,0.0835476 -9151,3403:380,30,-48,0,0,0.0849825 -9152,3403:381,31,-48,0,0,0.0871483 -9153,3403:382,32,-48,0,0,0.0901108 -9154,3403:383,33,-48,0,0,0.0887803 -9155,3403:384,34,-48,0,0,0.0831238 -9156,3403:485,35,-48,0,0,0.0820418 -9157,3403:486,36,-48,0,0,0.0841792 -9158,3403:487,37,-48,0,0,0.087083 -9159,3403:488,38,-48,0,0,0.0856399 -9160,3403:489,39,-48,0,0,0.0872874 -9161,3404:380,40,-48,0,0,0.0879858 -9162,3404:381,41,-48,0,0,0.0853911 -9163,3404:382,42,-48,0,0,0.0861725 -9164,3404:383,43,-48,0,0,0.0875415 -9165,3404:384,44,-48,0,0,0.0870342 -9166,3404:485,45,-48,0,0,0.0867406 -9167,3404:486,46,-48,0,0,0.0865535 -9168,3404:487,47,-48,0,0,0.0874514 -9169,3404:488,48,-48,0,0,0.0887139 -9170,3404:489,49,-48,0,0,0.0911184 -9171,3405:380,50,-48,0,0,0.0903133 -9172,3405:381,51,-48,0,0,0.0893808 -9173,3405:382,52,-48,0,0,0.0890552 -9174,3405:383,53,-48,0,0,0.0951266 -9175,3405:384,54,-48,0,0,0.0874759 -9176,3405:485,55,-48,0,0,0.0876894 -9177,3405:486,56,-48,0,0,0.0891384 -9178,3405:487,57,-48,0,0,0.0922047 -9179,3405:488,58,-48,0,0,0.0939131 -9180,3405:489,59,-48,0,0,0.0936684 -9181,3406:380,60,-48,0,0,0.0911779 -9182,3406:381,61,-48,0,0,0.0920929 -9183,3406:382,62,-48,0,0,0.0941318 -9184,3406:383,63,-48,0,0,0.0924114 -9185,3406:384,64,-48,0,0,0.0936945 -9186,3406:485,65,-48,0,0,0.098998 -9187,3406:486,66,-48,0,0,0.0986227 -9188,3406:487,67,-48,0,0,0.0965957 -9189,3406:488,68,-48,0,0,0.0961037 -9190,3406:489,69,-48,0,0,0.0955961 -9191,3407:380,70,-48,0,0,0.0948438 -9192,3407:381,71,-48,0,0,0.094888 -9193,3407:382,72,-48,0,0,0.0951884 -9194,3407:384,74,-48,0,0,0.0931986 -9195,3407:485,75,-48,0,0,0.0932333 -9196,3407:486,76,-48,0,0,0.090533 -9197,3407:487,77,-48,0,0,0.0850786 -9198,3407:488,78,-48,0,0,0.0874759 -9199,3407:489,79,-48,0,0,0.086132 -9200,3408:380,80,-48,0,0,0.0853428 -9201,3408:381,81,-48,0,0,0.0848149 -9202,3408:382,82,-48,0,0,0.0883243 -9203,3408:383,83,-48,0,0,0.0895396 -9204,3408:384,84,-48,0,0,0.0949055 -9205,3408:485,85,-48,0,0,0.107518 -9206,3408:486,86,-48,0,0,0.107016 -9207,3408:487,87,-48,0,0,0.10821 -9208,3408:488,88,-48,0,0,0.107597 -9209,3408:489,89,-48,0,0,0.103819 -9210,3409:380,90,-48,0,0,0.101275 -9211,3409:381,91,-48,0,0,0.103924 -9212,3409:382,92,-48,0,0,0.10318 -9213,3409:383,93,-48,0,0,0.102092 -9214,3409:384,94,-48,0,0,0.0996783 -9215,3409:485,95,-48,0,0,0.0937995 -9216,3409:486,96,-48,0,0,0.0983038 -9217,3409:487,97,-48,0,0,0.105921 -9218,3409:488,98,-48,0,0,0.100976 -9219,3409:489,99,-48,0,0,0.0967394 -9220,3410:380,100,-48,0,0,0.102309 -9221,3410:381,101,-48,0,0,0.103972 -9222,3410:382,102,-48,0,0,0.0963093 -9223,3410:383,103,-48,0,0,0.0963628 -9224,3410:384,104,-48,0,0,0.0999645 -9225,3410:485,105,-48,0,0,0.09931 -9226,3410:486,106,-48,0,0,0.099872 -9227,3410:487,107,-48,0,0,0.10065 -9228,3410:488,108,-48,0,0,0.101042 -9229,3410:489,109,-48,0,0,0.102611 -9230,3411:380,110,-48,0,0,0.106194 -9231,3411:381,111,-48,0,0,0.110018 -9232,3411:382,112,-48,0,0,0.115705 -9233,3411:383,113,-48,0,0,0.115705 -9234,3411:384,114,-48,0,0,0.110098 -9235,3411:485,115,-48,0,0,0.106624 -9236,3411:486,116,-48,0,0,0.112046 -9237,3411:487,117,-48,0,0,0.110148 -9238,3411:488,118,-48,0,0,0.108408 -9239,3411:489,119,-48,0,0,0.108408 -10426,5412:249,-129,-44,0,0,0.18985 -9240,3412:380,120,-48,0,0,0.109646 -9241,3412:381,121,-48,0,0,0.110461 -9242,3412:382,122,-48,0,0,0.115317 -9243,3412:383,123,-48,0,0,0.11559 -9244,3412:384,124,-48,0,0,0.116528 -9245,3412:485,125,-48,0,0,0.114481 -9246,3412:486,126,-48,0,0,0.114387 -9247,3412:487,127,-48,0,0,0.114794 -9248,3412:488,128,-48,0,0,0.116464 -9249,3412:489,129,-48,0,0,0.115296 -9250,3413:380,130,-48,0,0,0.112599 -9251,3413:381,131,-48,0,0,0.112261 -9252,3413:382,132,-48,0,0,0.114481 -9253,3413:383,133,-48,0,0,0.116962 -9254,3413:384,134,-48,0,0,0.114898 -9255,3413:485,135,-48,0,0,0.113413 -9256,3413:486,136,-48,0,0,0.114752 -9257,3413:487,137,-48,0,0,0.112486 -9258,3413:488,138,-48,0,0,0.110552 -9259,3413:489,139,-48,0,0,0.11265 -9260,3414:380,140,-48,0,0,0.116454 -9261,3414:381,141,-48,0,0,0.117249 -9262,3414:382,142,-48,0,0,0.116021 -9263,3414:383,143,-48,0,0,0.117132 -9264,3414:384,144,-48,0,0,0.117696 -9265,3414:485,145,-48,0,0,0.117782 -9266,3414:486,146,-48,0,0,0.114575 -9267,3414:487,147,-48,0,0,0.109026 -9268,3414:488,148,-48,0,0,0.0994938 -9269,3414:489,149,-48,0,0,0.0951884 -9270,3415:380,150,-48,0,0,0.124608 -9271,3415:381,151,-48,0,0,0.128653 -9272,3415:382,152,-48,0,0,0.106702 -9273,3415:383,153,-48,0,0,0.117515 -9274,3415:384,154,-48,0,0,0.126583 -9275,3415:485,155,-48,0,0,0.134487 -9276,3415:486,156,-48,0,0,0.13364 -9277,3415:487,157,-48,0,0,0.117547 -9278,3415:488,158,-48,0,0,0.115705 -9279,3415:489,159,-48,0,0,0.121778 -9280,3416:380,160,-48,0,0,0.119155 -9281,3416:381,161,-48,0,0,0.121921 -9282,3416:382,162,-48,0,0,0.118263 -9283,3416:383,163,-48,0,0,0.135687 -9284,3416:384,164,-48,0,0,0.141202 -9285,3416:485,165,-48,0,0,0.142942 -9286,3416:486,166,-48,0,0,0.142967 -9287,3416:487,167,-48,0,0,0.139763 -9288,3416:488,168,-48,0,0,0.135603 -9289,3416:489,169,-48,0,0,0.13617 -9290,3417:380,170,-48,0,0,0.138519 -9291,3417:381,171,-48,0,0,0.140406 -9292,3417:382,172,-48,0,0,0.142741 -9293,3417:383,173,-48,0,0,0.144053 -9294,3417:384,174,-48,0,0,0.148596 -9295,3417:485,175,-48,0,0,0.151387 -9296,3417:486,176,-48,0,0,0.15339 -9297,3417:487,177,-48,0,0,0.151505 -9298,3417:488,178,-48,0,0,0.148116 -9299,3417:489,179,-48,0,0,0.140084 -9300,3418:380,180,-48,0,0,0.141015 -9301,5418:370,-180,-47,0,0,0.140753 -9302,5417:479,-179,-47,0,0,0.142678 -9303,5417:478,-178,-47,0,0,0.150465 -9304,5417:477,-177,-47,0,0,0.156959 -9305,5417:476,-176,-47,0,0,0.15597 -9306,5417:475,-175,-47,0,0,0.152485 -9307,5417:374,-174,-47,0,0,0.150137 -9308,5417:373,-173,-47,0,0,0.142101 -9309,5417:372,-172,-47,0,0,0.140878 -9310,5417:371,-171,-47,0,0,0.146992 -9311,5417:370,-170,-47,0,0,0.145057 -9312,5416:479,-169,-47,0,0,0.146927 -9313,5416:478,-168,-47,0,0,0.144574 -9314,5416:477,-167,-47,0,0,0.140766 -9315,5416:476,-166,-47,0,0,0.136836 -9316,5416:475,-165,-47,0,0,0.135098 -9317,5416:374,-164,-47,0,0,0.136122 -9318,5416:373,-163,-47,0,0,0.137749 -9319,5416:372,-162,-47,0,0,0.136146 -9320,5416:371,-161,-47,0,0,0.137773 -9321,5416:370,-160,-47,0,0,0.140605 -9322,5415:479,-159,-47,0,0,0.144802 -9323,5415:478,-158,-47,0,0,0.149548 -9324,5415:477,-157,-47,0,0,0.152313 -9325,5415:476,-156,-47,0,0,0.147857 -9326,5415:475,-155,-47,0,0,0.13836 -9327,5415:374,-154,-47,0,0,0.133486 -9328,5415:373,-153,-47,0,0,0.128976 -9329,5415:372,-152,-47,0,0,0.125824 -9330,5415:371,-151,-47,0,0,0.126163 -9331,5415:370,-150,-47,0,0,0.124866 -9332,5414:479,-149,-47,0,0,0.123603 -9333,5414:478,-148,-47,0,0,0.118692 -9334,5414:477,-147,-47,0,0,0.111414 -9335,5414:476,-146,-47,0,0,0.115045 -9336,5414:475,-145,-47,0,0,0.114221 -9337,5414:374,-144,-47,0,0,0.11517 -9338,5414:373,-143,-47,0,0,0.119803 -9339,5414:372,-142,-47,0,0,0.11881 -9340,5414:371,-141,-47,0,0,0.125282 -9341,5414:370,-140,-47,0,0,0.149365 -9342,5413:479,-139,-47,0,0,0.155483 -9343,5413:478,-138,-47,0,0,0.152459 -9344,5413:477,-137,-47,0,0,0.145402 -9345,5413:476,-136,-47,0,0,0.152977 -9346,5413:475,-135,-47,0,0,0.156335 -9347,5413:374,-134,-47,0,0,0.157982 -9348,5413:373,-133,-47,0,0,0.158502 -9349,5413:372,-132,-47,0,0,0.162979 -9350,5413:371,-131,-47,0,0,0.165858 -9351,5413:370,-130,-47,0,0,0.168289 -9352,5412:479,-129,-47,0,0,0.164682 -9353,5412:478,-128,-47,0,0,0.163441 -9354,5412:477,-127,-47,0,0,0.165787 -9355,5412:476,-126,-47,0,0,0.171973 -9356,5412:475,-125,-47,0,0,0.174622 -9357,5412:374,-124,-47,0,0,0.171053 -9358,5412:373,-123,-47,0,0,0.169558 -9359,5412:372,-122,-47,0,0,0.170137 -9360,5412:371,-121,-47,0,0,0.16803 -9361,5412:370,-120,-47,0,0,0.163427 -9362,5411:479,-119,-47,0,0,0.157941 -9363,5411:478,-118,-47,0,0,0.15438 -9364,5411:477,-117,-47,0,0,0.15624 -9365,5411:476,-116,-47,0,0,0.155429 -9366,5411:475,-115,-47,0,0,0.154756 -9367,5411:374,-114,-47,0,0,0.154595 -9368,5411:373,-113,-47,0,0,0.15477 -9369,5411:372,-112,-47,0,0,0.156932 -9370,5411:371,-111,-47,0,0,0.157586 -9371,5411:370,-110,-47,0,0,0.150438 -9372,5410:479,-109,-47,0,0,0.150793 -9373,5410:478,-108,-47,0,0,0.14809 -9374,5410:477,-107,-47,0,0,0.145338 -9375,5410:476,-106,-47,0,0,0.144586 -9376,5410:475,-105,-47,0,0,0.144472 -9377,5410:374,-104,-47,0,0,0.143409 -9378,5410:373,-103,-47,0,0,0.144409 -9379,5410:372,-102,-47,0,0,0.145184 -9380,5410:371,-101,-47,0,0,0.14599 -9381,5410:370,-100,-47,0,0,0.144294 -9382,5409:479,-99,-47,0,0,0.143118 -9383,5409:478,-98,-47,0,0,0.142678 -9384,5409:477,-97,-47,0,0,0.142026 -9385,5409:476,-96,-47,0,0,0.140084 -9386,5409:475,-95,-47,0,0,0.140171 -9387,5409:374,-94,-47,0,0,0.141813 -9388,5409:373,-93,-47,0,0,0.142603 -9389,5409:372,-92,-47,0,0,0.142314 -9390,5409:371,-91,-47,0,0,0.141189 -9391,5409:370,-90,-47,0,0,0.14165 -9392,5408:479,-89,-47,0,0,0.142766 -9393,5408:478,-88,-47,0,0,0.142854 -9394,5408:477,-87,-47,0,0,0.141801 -9395,5408:476,-86,-47,0,0,0.141114 -9396,5408:475,-85,-47,0,0,0.141102 -9397,5408:374,-84,-47,0,0,0.141164 -9398,5408:373,-83,-47,0,0,0.142741 -9399,5408:372,-82,-47,0,0,0.143712 -9400,5408:371,-81,-47,0,0,0.142026 -9401,5408:370,-80,-47,0,0,0.143522 -9402,5407:479,-79,-47,0,0,0.146079 -9403,5407:478,-78,-47,0,0,0.145555 -9404,5407:477,-77,-47,0,0,0.143762 -9405,5407:476,-76,-47,0,0,0.145108 -9406,5407:475,-75,-47,0,0,0.146529 -9407,5407:374,-74,-47,0,0,0.150333 -9408,5407:373,-73,-47,0,0,0.146966 -9409,5407:372,-72,-47,0,0,0.143762 -9410,5407:371,-71,-47,0,0,0.145044 -9411,5407:370,-70,-47,0,0,0.156959 -9412,5406:479,-69,-47,0,0,0.161359 -9413,5406:478,-68,-47,0,0,0.16186 -9414,5406:477,-67,-47,0,0,0.157941 -9415,5406:476,-66,-47,0,0,0.140704 -9416,5406:475,-65,-47,0,0,0.125982 -9417,5406:374,-64,-47,0,0,0.125666 -9418,5406:373,-63,-47,0,0,0.128895 -9419,5406:372,-62,-47,0,0,0.125395 -9420,5406:371,-61,-47,0,0,0.127586 -9421,5406:370,-60,-47,0,0,0.130986 -9422,5405:479,-59,-47,0,0,0.130612 -9423,5405:478,-58,-47,0,0,0.131103 -9424,5405:477,-57,-47,0,0,0.127529 -9425,5405:476,-56,-47,0,0,0.121099 -9426,5405:475,-55,-47,0,0,0.104856 -9427,5405:374,-54,-47,0,0,0.104981 -9428,5405:373,-53,-47,0,0,0.116888 -9429,5405:372,-52,-47,0,0,0.114919 -9430,5405:371,-51,-47,0,0,0.107518 -9431,5405:370,-50,-47,0,0,0.113072 -9432,5404:479,-49,-47,0,0,0.113113 -9433,5404:478,-48,-47,0,0,0.10741 -9434,5404:477,-47,-47,0,0,0.109085 -9435,5404:476,-46,-47,0,0,0.114044 -9436,5404:475,-45,-47,0,0,0.112425 -9437,5404:374,-44,-47,0,0,0.111811 -9438,5404:373,-43,-47,0,0,0.107232 -9439,5404:372,-42,-47,0,0,0.103523 -9440,5404:371,-41,-47,0,0,0.101033 -9441,5404:370,-40,-47,0,0,0.0961037 -9442,5403:479,-39,-47,0,0,0.0956585 -9443,5403:478,-38,-47,0,0,0.0922047 -9444,5403:477,-37,-47,0,0,0.0928777 -9445,5403:476,-36,-47,0,0,0.0946236 -9446,5403:475,-35,-47,0,0,0.0967304 -9447,5403:374,-34,-47,0,0,0.0973246 -9448,5403:373,-33,-47,0,0,0.0955341 -9449,5403:372,-32,-47,0,0,0.0917671 -9450,5403:371,-31,-47,0,0,0.0896401 -9451,5403:370,-30,-47,0,0,0.0881921 -9452,5402:479,-29,-47,0,0,0.0866349 -9453,5402:478,-28,-47,0,0,0.0870421 -9454,5402:477,-27,-47,0,0,0.0857367 -9455,5402:476,-26,-47,0,0,0.0867568 -9456,5402:475,-25,-47,0,0,0.0906177 -9457,5402:374,-24,-47,0,0,0.0915533 -9458,5402:373,-23,-47,0,0,0.09784 -9459,5402:372,-22,-47,0,0,0.0958899 -9460,5402:371,-21,-47,0,0,0.0944213 -9461,5402:370,-20,-47,0,0,0.0981308 -9462,5401:479,-19,-47,0,0,0.097958 -9463,5401:478,-18,-47,0,0,0.0963628 -9464,5401:477,-17,-47,0,0,0.0953922 -9465,5401:476,-16,-47,0,0,0.0965598 -9466,5401:475,-15,-47,0,0,0.0945267 -9467,5401:374,-14,-47,0,0,0.0975957 -9468,5401:373,-13,-47,0,0,0.0968203 -9469,5401:372,-12,-47,0,0,0.0980853 -9470,5401:371,-11,-47,0,0,0.0973155 -9471,5401:370,-10,-47,0,0,0.0975142 -9472,5400:479,-9,-47,0,0,0.0994481 -9473,5400:478,-8,-47,0,0,0.0992915 -9474,5400:477,-7,-47,0,0,0.0940968 -9475,5400:476,-6,-47,0,0,0.0899004 -9476,5400:475,-5,-47,0,0,0.0926961 -9477,5400:374,-4,-47,0,0,0.0871483 -9478,5400:373,-3,-47,0,0,0.0850706 -9479,5400:372,-2,-47,0,0,0.0846955 -9480,5400:371,-1,-47,0,0,0.0841872 -9481,3400:371,0,-47,0,0,0.0837131 -9482,3400:371,1,-47,0,0,0.0830925 -9483,3400:372,2,-47,0,0,0.0833432 -9484,3400:373,3,-47,0,0,0.0837208 -9485,3400:374,4,-47,0,0,0.0839576 -9486,3400:475,5,-47,0,0,0.0834453 -9487,3400:476,6,-47,0,0,0.0824373 -9488,3400:477,7,-47,0,0,0.0824997 -9489,3400:478,8,-47,0,0,0.0838233 -9490,3400:479,9,-47,0,0,0.0839735 -9491,3401:370,10,-47,0,0,0.0838865 -9492,3401:371,11,-47,0,0,0.0830534 -9493,3401:372,12,-47,0,0,0.0820883 -9494,3401:373,13,-47,0,0,0.0815402 -9495,3401:374,14,-47,0,0,0.0813481 -9496,3401:475,15,-47,0,0,0.0803708 -9497,3401:476,16,-47,0,0,0.0803328 -9498,3401:477,17,-47,0,0,0.0798484 -9499,3401:478,18,-47,0,0,0.0802645 -9500,3401:479,19,-47,0,0,0.0800751 -9501,3402:370,20,-47,0,0,0.0828735 -9502,3402:371,21,-47,0,0,0.0846955 -9503,3402:372,22,-47,0,0,0.0804696 -9504,3402:373,23,-47,0,0,0.0789844 -9505,3402:374,24,-47,0,0,0.0783144 -9506,3402:475,25,-47,0,0,0.0792915 -9507,3402:476,26,-47,0,0,0.0849028 -9508,3402:477,27,-47,0,0,0.0836737 -9509,3402:478,28,-47,0,0,0.0877634 -9510,3402:479,29,-47,0,0,0.0848149 -9511,3403:370,30,-47,0,0,0.0872219 -9512,3403:371,31,-47,0,0,0.0881838 -9513,3403:372,32,-47,0,0,0.0912717 -9514,3403:373,33,-47,0,0,0.0912717 -9515,3403:374,34,-47,0,0,0.0904737 -9516,3403:475,35,-47,0,0,0.0900519 -9517,3403:476,36,-47,0,0,0.0862696 -9518,3403:477,37,-47,0,0,0.091212 -9519,3403:478,38,-47,0,0,0.0901866 -9520,3403:479,39,-47,0,0,0.0912632 -9521,3404:370,40,-47,0,0,0.0938168 -9522,3404:371,41,-47,0,0,0.0902881 -9523,3404:372,42,-47,0,0,0.0918785 -9524,3404:373,43,-47,0,0,0.0910587 -9525,3404:374,44,-47,0,0,0.0913485 -9526,3404:475,45,-47,0,0,0.0927826 -9527,3404:476,46,-47,0,0,0.0896151 -9528,3404:477,47,-47,0,0,0.0881507 -9529,3404:478,48,-47,0,0,0.0906769 -9530,3404:479,49,-47,0,0,0.0913058 -9531,3405:370,50,-47,0,0,0.0906345 -9532,3405:371,51,-47,0,0,0.0897912 -9533,3405:372,52,-47,0,0,0.0900183 -9534,3405:373,53,-47,0,0,0.0945618 -9535,3405:374,54,-47,0,0,0.0967663 -9536,3405:475,55,-47,0,0,0.0914594 -9537,3405:476,56,-47,0,0,0.0893889 -9538,3405:477,57,-47,0,0,0.0963718 -9539,3405:478,58,-47,0,0,0.0941056 -9540,3405:479,59,-47,0,0,0.0939392 -9541,3406:370,60,-47,0,0,0.0948791 -9542,3406:371,61,-47,0,0,0.0966228 -9543,3406:372,62,-47,0,0,0.0989063 -9544,3406:373,63,-47,0,0,0.0958007 -9545,3406:374,64,-47,0,0,0.0970629 -9546,3406:475,65,-47,0,0,0.101734 -9547,3406:476,66,-47,0,0,0.0994848 -9548,3406:477,67,-47,0,0,0.096345 -9549,3406:478,68,-47,0,0,0.0970178 -9550,3406:479,69,-47,0,0,0.0970901 -9551,3407:370,70,-47,0,0,0.097958 -9552,3407:371,71,-47,0,0,0.0969009 -9553,3407:372,72,-47,0,0,0.0958273 -9554,3407:374,74,-47,0,0,0.0941142 -9555,3407:475,75,-47,0,0,0.0928777 -9556,3407:476,76,-47,0,0,0.0919813 -9557,3407:477,77,-47,0,0,0.086213 -9558,3407:478,78,-47,0,0,0.0856078 -9559,3407:479,79,-47,0,0,0.0877388 -9560,3408:370,80,-47,0,0,0.0882498 -9561,3408:371,81,-47,0,0,0.0952502 -9562,3408:372,82,-47,0,0,0.10136 -9563,3408:373,83,-47,0,0,0.105049 -9564,3408:374,84,-47,0,0,0.1056 -9565,3408:475,85,-47,0,0,0.106233 -9566,3408:476,86,-47,0,0,0.105834 -9567,3408:477,87,-47,0,0,0.106448 -9568,3408:478,88,-47,0,0,0.109305 -9569,3408:479,89,-47,0,0,0.10825 -9570,3409:370,90,-47,0,0,0.103275 -9571,3409:371,91,-47,0,0,0.102007 -9572,3409:372,92,-47,0,0,0.101697 -9573,3409:373,93,-47,0,0,0.101716 -9574,3409:374,94,-47,0,0,0.101491 -9575,3409:475,95,-47,0,0,0.109907 -9576,3409:476,96,-47,0,0,0.11225 -9577,3409:477,97,-47,0,0,0.110957 -9578,3409:478,98,-47,0,0,0.106067 -9579,3409:479,99,-47,0,0,0.107026 -9580,3410:370,100,-47,0,0,0.106262 -9581,3410:371,101,-47,0,0,0.102848 -9582,3410:372,102,-47,0,0,0.0954986 -9583,3410:373,103,-47,0,0,0.0957918 -9584,3410:374,104,-47,0,0,0.0975866 -9585,3410:475,105,-47,0,0,0.0970901 -9586,3410:476,106,-47,0,0,0.102111 -9587,3410:477,107,-47,0,0,0.104307 -9588,3410:478,108,-47,0,0,0.103676 -9589,3410:479,109,-47,0,0,0.104039 -9590,3411:370,110,-47,0,0,0.104115 -9591,3411:371,111,-47,0,0,0.112219 -9592,3411:372,112,-47,0,0,0.115369 -9593,3411:373,113,-47,0,0,0.123848 -9594,3411:374,114,-47,0,0,0.114585 -9595,3411:475,115,-47,0,0,0.114815 -9596,3411:476,116,-47,0,0,0.115516 -9597,3411:477,117,-47,0,0,0.111617 -9598,3411:478,118,-47,0,0,0.11121 -9599,3411:479,119,-47,0,0,0.111495 -9600,3412:370,120,-47,0,0,0.111995 -9601,3412:371,121,-47,0,0,0.110926 -9602,3412:372,122,-47,0,0,0.113598 -9603,3412:373,123,-47,0,0,0.114065 -9604,3412:374,124,-47,0,0,0.113692 -9605,3412:475,125,-47,0,0,0.117728 -9606,3412:476,126,-47,0,0,0.117654 -9607,3412:477,127,-47,0,0,0.116095 -9608,3412:478,128,-47,0,0,0.11909 -9609,3412:479,129,-47,0,0,0.123871 -9610,3413:370,130,-47,0,0,0.121757 -9611,3413:371,131,-47,0,0,0.118177 -9612,3413:372,132,-47,0,0,0.11639 -9613,3413:373,133,-47,0,0,0.117792 -9614,3413:374,134,-47,0,0,0.118552 -9615,3413:475,135,-47,0,0,0.119392 -9616,3413:476,136,-47,0,0,0.121647 -9617,3413:477,137,-47,0,0,0.118671 -9618,3413:478,138,-47,0,0,0.114585 -9619,3413:479,139,-47,0,0,0.117005 -9620,3414:370,140,-47,0,0,0.128492 -9621,3414:371,141,-47,0,0,0.133248 -9622,3414:372,142,-47,0,0,0.129531 -9623,3414:373,143,-47,0,0,0.124351 -9624,3414:374,144,-47,0,0,0.119058 -9625,3414:475,145,-47,0,0,0.117005 -9626,3414:476,146,-47,0,0,0.114335 -9627,3414:477,147,-47,0,0,0.108071 -9628,3414:478,148,-47,0,0,0.0977676 -9629,3414:479,149,-47,0,0,0.096345 -9630,3415:370,150,-47,0,0,0.12908 -9631,3415:371,151,-47,0,0,0.123871 -9632,3415:372,152,-47,0,0,0.112774 -9633,3415:373,153,-47,0,0,0.116285 -9634,3415:374,154,-47,0,0,0.126084 -9635,3415:475,155,-47,0,0,0.127517 -9636,3415:476,156,-47,0,0,0.140233 -9637,3415:477,157,-47,0,0,0.138568 -9638,3415:478,158,-47,0,0,0.140047 -9639,3415:479,159,-47,0,0,0.130659 -9640,3416:370,160,-47,0,0,0.125091 -9641,3416:371,161,-47,0,0,0.129647 -9642,3416:372,162,-47,0,0,0.135591 -9643,3416:373,163,-47,0,0,0.139973 -9644,3416:374,164,-47,0,0,0.144726 -9645,3416:475,165,-47,0,0,0.142653 -9646,3416:476,166,-47,0,0,0.147211 -9647,3416:477,167,-47,0,0,0.149052 -9648,3416:478,168,-47,0,0,0.148038 -9649,3416:479,169,-47,0,0,0.147663 -9650,3417:370,170,-47,0,0,0.145402 -9651,3417:371,171,-47,0,0,0.142553 -9652,3417:372,172,-47,0,0,0.1459 -9653,3417:373,173,-47,0,0,0.147327 -9654,3417:374,174,-47,0,0,0.151057 -9655,3417:475,175,-47,0,0,0.155821 -9656,3417:476,176,-47,0,0,0.159257 -9657,3417:477,177,-47,0,0,0.155983 -9658,3417:478,178,-47,0,0,0.147637 -9659,3417:479,179,-47,0,0,0.144028 -9660,3418:370,180,-47,0,0,0.140753 -9661,5418:360,-180,-46,0,0,0.16717 -9662,5417:469,-179,-46,0,0,0.165815 -9663,5417:468,-178,-46,0,0,0.163962 -9664,5417:467,-177,-46,0,0,0.163498 -9665,5417:466,-176,-46,0,0,0.161847 -9666,5417:465,-175,-46,0,0,0.161512 -9667,5417:364,-174,-46,0,0,0.163498 -9668,5417:363,-173,-46,0,0,0.159629 -9669,5417:362,-172,-46,0,0,0.152911 -9670,5417:361,-171,-46,0,0,0.15327 -9671,5417:360,-170,-46,0,0,0.155416 -9672,5416:469,-169,-46,0,0,0.152392 -9673,5416:468,-168,-46,0,0,0.150425 -9674,5416:467,-167,-46,0,0,0.151823 -9675,5416:466,-166,-46,0,0,0.147069 -9676,5416:465,-165,-46,0,0,0.152286 -9677,5416:364,-164,-46,0,0,0.154461 -9678,5416:363,-163,-46,0,0,0.155321 -9679,5416:362,-162,-46,0,0,0.152286 -9680,5416:361,-161,-46,0,0,0.146233 -9681,5416:360,-160,-46,0,0,0.14507 -9682,5415:469,-159,-46,0,0,0.152924 -9683,5415:468,-158,-46,0,0,0.158255 -9684,5415:467,-157,-46,0,0,0.162335 -9685,5415:466,-156,-46,0,0,0.155699 -9686,5415:465,-155,-46,0,0,0.149691 -9687,5415:364,-154,-46,0,0,0.152366 -9688,5415:363,-153,-46,0,0,0.151413 -9689,5415:362,-152,-46,0,0,0.141376 -9690,5415:361,-151,-46,0,0,0.150517 -9691,5415:360,-150,-46,0,0,0.166057 -9692,5414:469,-149,-46,0,0,0.160319 -9693,5414:468,-148,-46,0,0,0.151307 -9694,5414:467,-147,-46,0,0,0.12656 -9695,5414:466,-146,-46,0,0,0.138372 -9696,5414:465,-145,-46,0,0,0.160236 -9697,5414:364,-144,-46,0,0,0.162433 -9698,5414:363,-143,-46,0,0,0.176213 -9699,5414:362,-142,-46,0,0,0.175929 -9700,5414:361,-141,-46,0,0,0.15923 -9701,5414:360,-140,-46,0,0,0.160832 -9702,5413:469,-139,-46,0,0,0.165177 -9703,5413:468,-138,-46,0,0,0.160776 -9704,5413:467,-137,-46,0,0,0.154917 -9705,5413:466,-136,-46,0,0,0.14857 -9706,5413:465,-135,-46,0,0,0.148908 -9707,5413:364,-134,-46,0,0,0.153871 -9708,5413:363,-133,-46,0,0,0.154998 -9709,5413:362,-132,-46,0,0,0.156756 -9710,5413:361,-131,-46,0,0,0.1719 -9711,5413:360,-130,-46,0,0,0.187491 -9712,5412:469,-129,-46,0,0,0.183363 -9713,5412:468,-128,-46,0,0,0.180428 -9714,5412:467,-127,-46,0,0,0.180565 -9715,5412:466,-126,-46,0,0,0.177979 -9716,5412:465,-125,-46,0,0,0.17483 -9717,5412:364,-124,-46,0,0,0.173088 -9718,5412:363,-123,-46,0,0,0.16911 -9719,5412:362,-122,-46,0,0,0.16911 -9720,5412:361,-121,-46,0,0,0.170457 -9721,5412:360,-120,-46,0,0,0.16862 -9722,5411:469,-119,-46,0,0,0.163807 -9723,5411:468,-118,-46,0,0,0.160624 -9724,5411:467,-117,-46,0,0,0.163427 -9725,5411:466,-116,-46,0,0,0.162923 -9726,5411:465,-115,-46,0,0,0.157504 -9727,5411:364,-114,-46,0,0,0.156484 -9728,5411:363,-113,-46,0,0,0.159587 -9729,5411:362,-112,-46,0,0,0.161387 -9730,5411:361,-111,-46,0,0,0.157368 -9731,5411:360,-110,-46,0,0,0.15347 -9732,5410:469,-109,-46,0,0,0.152977 -9733,5410:468,-108,-46,0,0,0.150688 -9734,5410:467,-107,-46,0,0,0.148727 -9735,5410:466,-106,-46,0,0,0.147146 -9736,5410:465,-105,-46,0,0,0.146992 -9737,5410:364,-104,-46,0,0,0.147624 -9738,5410:363,-103,-46,0,0,0.148311 -9739,5410:362,-102,-46,0,0,0.148804 -9740,5410:361,-101,-46,0,0,0.148376 -9741,5410:360,-100,-46,0,0,0.147133 -9742,5409:469,-99,-46,0,0,0.144955 -9743,5409:468,-98,-46,0,0,0.145287 -9744,5409:467,-97,-46,0,0,0.146131 -9745,5409:466,-96,-46,0,0,0.144396 -9746,5409:465,-95,-46,0,0,0.144612 -9747,5409:364,-94,-46,0,0,0.148077 -9748,5409:363,-93,-46,0,0,0.146966 -9749,5409:362,-92,-46,0,0,0.145312 -9750,5409:361,-91,-46,0,0,0.145389 -9751,5409:360,-90,-46,0,0,0.146221 -9752,5408:469,-89,-46,0,0,0.145555 -9753,5408:468,-88,-46,0,0,0.146593 -9754,5408:467,-87,-46,0,0,0.146464 -9755,5408:466,-86,-46,0,0,0.145746 -9756,5408:465,-85,-46,0,0,0.146015 -9757,5408:364,-84,-46,0,0,0.145402 -9758,5408:363,-83,-46,0,0,0.146426 -9759,5408:362,-82,-46,0,0,0.146979 -9760,5408:361,-81,-46,0,0,0.144828 -9761,5408:360,-80,-46,0,0,0.145414 -9762,5407:469,-79,-46,0,0,0.148103 -9763,5407:468,-78,-46,0,0,0.153097 -9764,5407:467,-77,-46,0,0,0.14796 -9765,5407:466,-76,-46,0,0,0.14822 -9766,5407:465,-75,-46,0,0,0.154662 -9767,5407:364,-74,-46,0,0,0.155807 -9768,5407:363,-73,-46,0,0,0.154193 -9769,5407:362,-72,-46,0,0,0.157668 -9770,5407:361,-71,-46,0,0,0.163765 -9771,5407:360,-70,-46,0,0,0.171973 -9772,5406:468,-68,-46,0,0,0.176198 -9773,5406:467,-67,-46,0,0,0.176093 -9774,5406:466,-66,-46,0,0,0.154541 -9775,5406:465,-65,-46,0,0,0.143876 -9776,5406:364,-64,-46,0,0,0.137359 -9777,5406:363,-63,-46,0,0,0.133094 -9778,5406:362,-62,-46,0,0,0.131419 -9779,5406:361,-61,-46,0,0,0.132869 -9780,5406:360,-60,-46,0,0,0.134595 -9781,5405:469,-59,-46,0,0,0.134702 -9782,5405:468,-58,-46,0,0,0.136013 -9783,5405:467,-57,-46,0,0,0.137395 -9784,5405:466,-56,-46,0,0,0.13617 -9785,5405:465,-55,-46,0,0,0.132325 -9786,5405:364,-54,-46,0,0,0.123581 -9787,5405:363,-53,-46,0,0,0.126481 -9788,5405:362,-52,-46,0,0,0.112445 -9789,5405:361,-51,-46,0,0,0.114836 -9790,5405:360,-50,-46,0,0,0.114658 -9791,5404:469,-49,-46,0,0,0.111434 -9792,5404:468,-48,-46,0,0,0.108986 -9793,5404:467,-47,-46,0,0,0.116116 -9794,5404:466,-46,-46,0,0,0.114366 -9795,5404:465,-45,-46,0,0,0.111048 -9796,5404:364,-44,-46,0,0,0.11035 -9797,5404:363,-43,-46,0,0,0.109435 -9798,5404:362,-42,-46,0,0,0.108667 -9799,5404:361,-41,-46,0,0,0.1038 -9800,5404:360,-40,-46,0,0,0.0988789 -9801,5403:469,-39,-46,0,0,0.094694 -9802,5403:468,-38,-46,0,0,0.0965869 -9803,5403:467,-37,-46,0,0,0.102299 -9804,5403:466,-36,-46,0,0,0.103428 -9805,5403:465,-35,-46,0,0,0.102309 -9806,5403:364,-34,-46,0,0,0.100335 -9807,5403:363,-33,-46,0,0,0.0946763 -9808,5403:362,-32,-46,0,0,0.0932593 -9809,5403:361,-31,-46,0,0,0.0918614 -9810,5403:360,-30,-46,0,0,0.0907279 -9811,5402:469,-29,-46,0,0,0.088606 -9812,5402:468,-28,-46,0,0,0.0876728 -9813,5402:467,-27,-46,0,0,0.0886143 -9814,5402:466,-26,-46,0,0,0.0957117 -9815,5402:465,-25,-46,0,0,0.100344 -9816,5402:364,-24,-46,0,0,0.0997796 -9817,5402:363,-23,-46,0,0,0.0989429 -9818,5402:362,-22,-46,0,0,0.0968112 -9819,5402:361,-21,-46,0,0,0.09718 -9820,5402:360,-20,-46,0,0,0.0996597 -9821,5401:469,-19,-46,0,0,0.101612 -9822,5401:468,-18,-46,0,0,0.103161 -9823,5401:467,-17,-46,0,0,0.102819 -9824,5401:466,-16,-46,0,0,0.104586 -9825,5401:465,-15,-46,0,0,0.100827 -9826,5401:364,-14,-46,0,0,0.100827 -9827,5401:363,-13,-46,0,0,0.103209 -9828,5401:362,-12,-46,0,0,0.102441 -9829,5401:361,-11,-46,0,0,0.100446 -9830,5401:360,-10,-46,0,0,0.103905 -9831,5400:469,-9,-46,0,0,0.106487 -9832,5400:468,-8,-46,0,0,0.103104 -9833,5400:467,-7,-46,0,0,0.0957828 -9834,5400:466,-6,-46,0,0,0.0961664 -9835,5400:465,-5,-46,0,0,0.0993285 -9836,5400:364,-4,-46,0,0,0.0965062 -9837,5400:363,-3,-46,0,0,0.0940092 -9838,5400:362,-2,-46,0,0,0.0922821 -9839,5400:361,-1,-46,0,0,0.0915361 -9840,3400:361,0,-46,0,0,0.0894224 -9841,3400:361,1,-46,0,0,0.0850625 -9842,3400:362,2,-46,0,0,0.0847354 -9843,3400:363,3,-46,0,0,0.0876728 -9844,3400:364,4,-46,0,0,0.0872137 -9845,3400:465,5,-46,0,0,0.0853428 -9846,3400:466,6,-46,0,0,0.0845522 -9847,3400:467,7,-46,0,0,0.0840447 -9848,3400:468,8,-46,0,0,0.0836893 -9849,3400:469,9,-46,0,0,0.0829908 -9850,3401:360,10,-46,0,0,0.0831238 -9851,3401:361,11,-46,0,0,0.0837288 -9852,3401:362,12,-46,0,0,0.0828814 -9853,3401:363,13,-46,0,0,0.0825151 -9854,3401:364,14,-46,0,0,0.0820727 -9855,3401:465,15,-46,0,0,0.0819491 -9856,3401:466,16,-46,0,0,0.0823209 -9857,3401:467,17,-46,0,0,0.0838549 -9858,3401:468,18,-46,0,0,0.0849667 -9859,3401:469,19,-46,0,0,0.0855678 -9860,3402:360,20,-46,0,0,0.0858093 -9861,3402:361,21,-46,0,0,0.0856883 -9862,3402:362,22,-46,0,0,0.0834926 -9863,3402:363,23,-46,0,0,0.0829283 -9864,3402:364,24,-46,0,0,0.0834453 -9865,3402:465,25,-46,0,0,0.0871892 -9866,3402:466,26,-46,0,0,0.0888387 -9867,3402:467,27,-46,0,0,0.0887306 -9868,3402:468,28,-46,0,0,0.0872794 -9869,3402:469,29,-46,0,0,0.0843616 -9870,3403:360,30,-46,0,0,0.0857527 -9871,3403:361,31,-46,0,0,0.0882168 -9872,3403:362,32,-46,0,0,0.0884567 -9873,3403:363,33,-46,0,0,0.0907618 -9874,3403:364,34,-46,0,0,0.0913058 -9875,3403:465,35,-46,0,0,0.0932593 -9876,3403:466,36,-46,0,0,0.0876728 -9877,3403:467,37,-46,0,0,0.0916472 -9878,3403:468,38,-46,0,0,0.0962378 -9879,3403:469,39,-46,0,0,0.0952416 -9880,3404:360,40,-46,0,0,0.0957652 -9881,3404:361,41,-46,0,0,0.0946325 -9882,3404:362,42,-46,0,0,0.0932593 -9883,3404:363,43,-46,0,0,0.0938517 -9884,3404:364,44,-46,0,0,0.0941407 -9885,3404:465,45,-46,0,0,0.0942546 -11940,5402:103,-23,-40,0,0,0.14048 -9886,3404:466,46,-46,0,0,0.0934594 -9887,3404:467,47,-46,0,0,0.092489 -9888,3404:468,48,-46,0,0,0.0924975 -9889,3404:469,49,-46,0,0,0.0926357 -9890,3405:360,50,-46,0,0,0.0938256 -9891,3405:361,51,-46,0,0,0.0945884 -9892,3405:362,52,-46,0,0,0.0947203 -9893,3405:363,53,-46,0,0,0.0966854 -9894,3405:364,54,-46,0,0,0.099669 -9895,3405:465,55,-46,0,0,0.0957206 -9896,3405:466,56,-46,0,0,0.0959967 -9897,3405:467,57,-46,0,0,0.0987965 -9898,3405:468,58,-46,0,0,0.0982763 -9899,3405:469,59,-46,0,0,0.0951088 -9900,3406:360,60,-46,0,0,0.0953389 -9901,3406:361,61,-46,0,0,0.0961931 -9902,3406:362,62,-46,0,0,0.0970178 -9903,3406:363,63,-46,0,0,0.100697 -9904,3406:364,64,-46,0,0,0.102696 -9905,3406:465,65,-46,0,0,0.102791 -9906,3406:466,66,-46,0,0,0.101622 -9907,3406:467,67,-46,0,0,0.101697 -9908,3406:468,68,-46,0,0,0.102819 -9909,3406:469,69,-46,0,0,0.102649 -9910,3407:360,70,-46,0,0,0.101491 -9911,3407:361,71,-46,0,0,0.0997613 -9912,3407:362,72,-46,0,0,0.0990346 -9913,3407:364,74,-46,0,0,0.0988331 -9914,3407:465,75,-46,0,0,0.0979763 -9915,3407:466,76,-46,0,0,0.0978763 -9916,3407:467,77,-46,0,0,0.0971712 -9917,3407:468,78,-46,0,0,0.0940354 -9918,3407:469,79,-46,0,0,0.0864886 -9919,3408:360,80,-46,0,0,0.091425 -9920,3408:361,81,-46,0,0,0.094123 -9921,3408:362,82,-46,0,0,0.101378 -9922,3408:363,83,-46,0,0,0.0988697 -9923,3408:364,84,-46,0,0,0.0974329 -9924,3408:465,85,-46,0,0,0.111068 -9925,3408:466,86,-46,0,0,0.110138 -9926,3408:467,87,-46,0,0,0.107774 -9927,3408:468,88,-46,0,0,0.110007 -9928,3408:469,89,-46,0,0,0.111862 -9929,3409:360,90,-46,0,0,0.109275 -9930,3409:361,91,-46,0,0,0.108398 -9931,3409:362,92,-46,0,0,0.109857 -9932,3409:363,93,-46,0,0,0.115674 -9933,3409:364,94,-46,0,0,0.109375 -9934,3409:465,95,-46,0,0,0.107695 -9935,3409:466,96,-46,0,0,0.112199 -9936,3409:467,97,-46,0,0,0.111302 -9937,3409:468,98,-46,0,0,0.110038 -9938,3409:469,99,-46,0,0,0.107163 -9939,3410:360,100,-46,0,0,0.101612 -9940,3410:361,101,-46,0,0,0.101088 -9941,3410:362,102,-46,0,0,0.0992365 -9942,3410:363,103,-46,0,0,0.0978946 -9943,3410:364,104,-46,0,0,0.0960144 -9944,3410:465,105,-46,0,0,0.100474 -9945,3410:466,106,-46,0,0,0.106741 -9946,3410:467,107,-46,0,0,0.108896 -9947,3410:468,108,-46,0,0,0.106732 -9948,3410:469,109,-46,0,0,0.104962 -9949,3411:360,110,-46,0,0,0.106048 -9950,3411:361,111,-46,0,0,0.111119 -9951,3411:362,112,-46,0,0,0.111648 -9952,3411:363,113,-46,0,0,0.117068 -9953,3411:364,114,-46,0,0,0.123503 -9954,3411:465,115,-46,0,0,0.118167 -9955,3411:466,116,-46,0,0,0.116158 -9956,3411:467,117,-46,0,0,0.117377 -9957,3411:468,118,-46,0,0,0.118649 -9958,3411:469,119,-46,0,0,0.117079 -9959,3412:360,120,-46,0,0,0.119923 -9960,3412:361,121,-46,0,0,0.116941 -9961,3412:362,122,-46,0,0,0.111444 -9962,3412:363,123,-46,0,0,0.111831 -9963,3412:364,124,-46,0,0,0.117185 -9964,3412:465,125,-46,0,0,0.117963 -9965,3412:466,126,-46,0,0,0.120205 -9966,3412:467,127,-46,0,0,0.123882 -9967,3412:468,128,-46,0,0,0.127494 -9968,3412:469,129,-46,0,0,0.128113 -9969,3413:360,130,-46,0,0,0.128067 -9970,3413:361,131,-46,0,0,0.125722 -9971,3413:362,132,-46,0,0,0.120728 -9972,3413:363,133,-46,0,0,0.121746 -9973,3413:364,134,-46,0,0,0.123926 -9974,3413:465,135,-46,0,0,0.123459 -9975,3413:466,136,-46,0,0,0.122738 -9976,3413:467,137,-46,0,0,0.124597 -9977,3413:468,138,-46,0,0,0.122473 -9978,3413:469,139,-46,0,0,0.125316 -9979,3414:360,140,-46,0,0,0.136812 -9980,3414:361,141,-46,0,0,0.13523 -9981,3414:362,142,-46,0,0,0.131701 -9982,3414:363,143,-46,0,0,0.128147 -9983,3414:364,144,-46,0,0,0.118467 -9984,3414:465,145,-46,0,0,0.113661 -9985,3414:466,146,-46,0,0,0.111515 -9986,3414:467,147,-46,0,0,0.107626 -9987,3414:468,148,-46,0,0,0.118467 -9988,3414:469,149,-46,0,0,0.14977 -9989,3415:360,150,-46,0,0,0.150531 -9990,3415:361,151,-46,0,0,0.13176 -9991,3415:362,152,-46,0,0,0.136013 -9992,3415:363,153,-46,0,0,0.152339 -9993,3415:364,154,-46,0,0,0.151452 -9994,3415:465,155,-46,0,0,0.14599 -9995,3415:466,156,-46,0,0,0.154487 -9996,3415:467,157,-46,0,0,0.147379 -9997,3415:468,158,-46,0,0,0.144675 -9998,3415:469,159,-46,0,0,0.145606 -9999,3416:360,160,-46,0,0,0.126742 -10000,3416:361,161,-46,0,0,0.146015 -10001,3416:362,162,-46,0,0,0.161874 -10002,3416:363,163,-46,0,0,0.151479 -10003,3416:364,164,-46,0,0,0.142917 -10004,3416:465,165,-46,0,0,0.152379 -10005,3416:466,166,-46,0,0,0.173662 -10006,3416:467,167,-46,0,0,0.180109 -10007,3416:468,168,-46,0,0,0.179533 -10008,3416:469,169,-46,0,0,0.17443 -10009,3417:360,170,-46,0,0,0.160084 -10010,3417:361,171,-46,0,0,0.150964 -10011,3417:362,172,-46,0,0,0.146272 -10012,3417:363,173,-46,0,0,0.148233 -10013,3417:364,174,-46,0,0,0.148831 -10014,3417:465,175,-46,0,0,0.152167 -10015,3417:466,176,-46,0,0,0.158406 -10016,3417:467,177,-46,0,0,0.157777 -10017,3417:468,178,-46,0,0,0.165064 -10018,3417:469,179,-46,0,0,0.166969 -10019,3418:360,180,-46,0,0,0.16717 -10020,5418:350,-180,-45,0,0,0.166656 -10021,5417:459,-179,-45,0,0,0.168836 -10022,5417:458,-178,-45,0,0,0.172031 -10023,5417:457,-177,-45,0,0,0.174637 -10024,5417:456,-176,-45,0,0,0.175795 -10025,5417:455,-175,-45,0,0,0.172735 -10026,5417:354,-174,-45,0,0,0.169891 -10027,5417:353,-173,-45,0,0,0.163231 -10028,5417:352,-172,-45,0,0,0.155753 -10029,5417:351,-171,-45,0,0,0.155295 -10030,5417:350,-170,-45,0,0,0.159147 -10031,5416:459,-169,-45,0,0,0.160915 -10032,5416:458,-168,-45,0,0,0.162209 -10033,5416:457,-167,-45,0,0,0.154326 -10034,5416:456,-166,-45,0,0,0.156186 -10035,5416:455,-165,-45,0,0,0.157927 -10036,5416:354,-164,-45,0,0,0.158201 -10037,5416:353,-163,-45,0,0,0.16072 -10038,5416:352,-162,-45,0,0,0.166556 -10039,5416:351,-161,-45,0,0,0.162824 -10040,5416:350,-160,-45,0,0,0.15551 -10041,5415:459,-159,-45,0,0,0.158379 -10042,5415:458,-158,-45,0,0,0.161596 -10043,5415:457,-157,-45,0,0,0.165517 -10044,5415:456,-156,-45,0,0,0.165531 -10045,5415:455,-155,-45,0,0,0.166541 -10046,5415:354,-154,-45,0,0,0.160568 -10047,5415:353,-153,-45,0,0,0.154434 -10048,5415:352,-152,-45,0,0,0.155025 -10049,5415:351,-151,-45,0,0,0.160679 -10050,5415:350,-150,-45,0,0,0.174652 -10051,5414:459,-149,-45,0,0,0.173677 -10052,5414:458,-148,-45,0,0,0.168763 -10053,5414:457,-147,-45,0,0,0.170471 -10054,5414:456,-146,-45,0,0,0.184272 -10055,5414:455,-145,-45,0,0,0.184257 -10056,5414:354,-144,-45,0,0,0.186756 -10057,5414:353,-143,-45,0,0,0.185682 -10058,5414:352,-142,-45,0,0,0.187319 -10059,5414:351,-141,-45,0,0,0.157177 -10060,5414:350,-140,-45,0,0,0.175513 -10061,5413:459,-139,-45,0,0,0.172838 -10062,5413:458,-138,-45,0,0,0.16992 -10063,5413:457,-137,-45,0,0,0.16885 -10064,5413:456,-136,-45,0,0,0.165602 -10065,5413:455,-135,-45,0,0,0.161526 -10066,5413:354,-134,-45,0,0,0.158831 -10067,5413:353,-133,-45,0,0,0.159753 -10068,5413:352,-132,-45,0,0,0.172368 -10069,5413:351,-131,-45,0,0,0.193928 -10070,5413:350,-130,-45,0,0,0.187976 -10071,5412:459,-129,-45,0,0,0.18261 -10072,5412:458,-128,-45,0,0,0.182411 -10073,5412:457,-127,-45,0,0,0.17831 -10074,5412:456,-126,-45,0,0,0.177319 -10075,5412:455,-125,-45,0,0,0.176034 -10076,5412:354,-124,-45,0,0,0.17275 -10077,5412:353,-123,-45,0,0,0.168763 -10078,5412:352,-122,-45,0,0,0.169905 -10079,5412:351,-121,-45,0,0,0.167227 -10080,5412:350,-120,-45,0,0,0.165163 -10081,5411:459,-119,-45,0,0,0.164667 -10082,5411:458,-118,-45,0,0,0.165219 -10083,5411:457,-117,-45,0,0,0.166656 -10084,5411:456,-116,-45,0,0,0.165631 -10085,5411:455,-115,-45,0,0,0.164371 -10086,5411:354,-114,-45,0,0,0.164117 -10087,5411:353,-113,-45,0,0,0.163343 -10088,5411:352,-112,-45,0,0,0.160554 -10089,5411:351,-111,-45,0,0,0.157408 -10090,5411:350,-110,-45,0,0,0.157518 -10091,5410:459,-109,-45,0,0,0.156457 -10092,5410:458,-108,-45,0,0,0.154528 -10093,5410:457,-107,-45,0,0,0.153484 -10094,5410:456,-106,-45,0,0,0.153684 -10095,5410:455,-105,-45,0,0,0.155402 -10096,5410:354,-104,-45,0,0,0.154273 -10097,5410:353,-103,-45,0,0,0.152246 -10098,5410:352,-102,-45,0,0,0.152844 -10099,5410:351,-101,-45,0,0,0.150557 -10100,5410:350,-100,-45,0,0,0.152578 -10101,5409:459,-99,-45,0,0,0.154877 -10102,5409:458,-98,-45,0,0,0.151479 -10103,5409:457,-97,-45,0,0,0.149313 -10104,5409:456,-96,-45,0,0,0.149809 -10105,5409:455,-95,-45,0,0,0.150137 -10106,5409:354,-94,-45,0,0,0.151294 -10107,5409:353,-93,-45,0,0,0.14977 -10108,5409:352,-92,-45,0,0,0.149195 -10109,5409:351,-91,-45,0,0,0.150333 -10110,5409:350,-90,-45,0,0,0.150176 -10111,5408:459,-89,-45,0,0,0.150307 -10112,5408:458,-88,-45,0,0,0.151149 -10113,5408:457,-87,-45,0,0,0.151188 -10114,5408:456,-86,-45,0,0,0.152591 -10115,5408:455,-85,-45,0,0,0.151955 -10116,5408:354,-84,-45,0,0,0.150084 -10117,5408:353,-83,-45,0,0,0.15082 -10118,5408:352,-82,-45,0,0,0.149914 -10119,5408:351,-81,-45,0,0,0.149052 -10120,5408:350,-80,-45,0,0,0.150465 -10121,5407:459,-79,-45,0,0,0.151809 -10122,5407:458,-78,-45,0,0,0.158927 -10123,5407:457,-77,-45,0,0,0.155349 -10124,5407:456,-76,-45,0,0,0.154434 -10125,5407:455,-75,-45,0,0,0.158639 -10126,5407:354,-74,-45,0,0,0.164865 -10127,5407:353,-73,-45,0,0,0.173338 -10128,5407:352,-72,-45,0,0,0.181448 -10129,5406:456,-66,-45,0,0,0.184443 -10130,5406:455,-65,-45,0,0,0.160388 -10131,5406:354,-64,-45,0,0,0.153217 -10132,5406:353,-63,-45,0,0,0.152618 -10133,5406:352,-62,-45,0,0,0.15015 -10134,5406:351,-61,-45,0,0,0.147637 -10135,5406:350,-60,-45,0,0,0.149901 -10136,5405:459,-59,-45,0,0,0.154126 -10137,5405:458,-58,-45,0,0,0.154958 -10138,5405:457,-57,-45,0,0,0.154568 -10139,5405:456,-56,-45,0,0,0.149835 -10140,5405:455,-55,-45,0,0,0.142904 -10141,5405:354,-54,-45,0,0,0.136388 -10142,5405:353,-53,-45,0,0,0.134188 -10143,5405:352,-52,-45,0,0,0.133319 -10144,5405:351,-51,-45,0,0,0.127609 -10145,5405:350,-50,-45,0,0,0.122274 -10146,5404:459,-49,-45,0,0,0.118102 -10147,5404:458,-48,-45,0,0,0.120695 -10148,5404:457,-47,-45,0,0,0.116686 -10149,5404:456,-46,-45,0,0,0.114596 -10150,5404:455,-45,-45,0,0,0.113847 -10151,5404:354,-44,-45,0,0,0.113454 -10152,5404:353,-43,-45,0,0,0.110269 -10153,5404:352,-42,-45,0,0,0.108956 -10154,5404:351,-41,-45,0,0,0.108359 -10155,5404:350,-40,-45,0,0,0.107843 -10156,5403:459,-39,-45,0,0,0.112086 -10157,5403:458,-38,-45,0,0,0.106292 -10158,5403:457,-37,-45,0,0,0.110967 -10159,5403:456,-36,-45,0,0,0.107045 -10160,5403:455,-35,-45,0,0,0.100725 -10161,5403:354,-34,-45,0,0,0.0964882 -10162,5403:353,-33,-45,0,0,0.0970901 -10163,5403:352,-32,-45,0,0,0.10564 -10164,5403:351,-31,-45,0,0,0.104962 -10165,5403:350,-30,-45,0,0,0.0949939 -10166,5402:459,-29,-45,0,0,0.0927307 -10167,5402:458,-28,-45,0,0,0.0905922 -10168,5402:457,-27,-45,0,0,0.0931292 -10169,5402:456,-26,-45,0,0,0.097144 -10170,5402:455,-25,-45,0,0,0.0967304 -10171,5402:354,-24,-45,0,0,0.104557 -10172,5402:353,-23,-45,0,0,0.102905 -10173,5402:352,-22,-45,0,0,0.106253 -10174,5402:351,-21,-45,0,0,0.10814 -10175,5402:350,-20,-45,0,0,0.106507 -10176,5401:459,-19,-45,0,0,0.107498 -10177,5401:458,-18,-45,0,0,0.104519 -10178,5401:457,-17,-45,0,0,0.105581 -10179,5401:456,-16,-45,0,0,0.110855 -10180,5401:455,-15,-45,0,0,0.104451 -10181,5401:354,-14,-45,0,0,0.105853 -10182,5401:353,-13,-45,0,0,0.108607 -10183,5401:352,-12,-45,0,0,0.110946 -10184,5401:351,-11,-45,0,0,0.109496 -10185,5401:350,-10,-45,0,0,0.107065 -10186,5400:459,-9,-45,0,0,0.104885 -10187,5400:458,-8,-45,0,0,0.105155 -10188,5400:457,-7,-45,0,0,0.104029 -10189,5400:456,-6,-45,0,0,0.101088 -10190,5400:455,-5,-45,0,0,0.097081 -10191,5400:354,-4,-45,0,0,0.0954897 -10192,5400:353,-3,-45,0,0,0.0936597 -10193,5400:352,-2,-45,0,0,0.0921189 -10194,5400:351,-1,-45,0,0,0.0917757 -10195,3400:351,0,-45,0,0,0.0927048 -10196,3400:351,1,-45,0,0,0.091485 -10197,3400:352,2,-45,0,0,0.0892637 -10198,3400:353,3,-45,0,0,0.0858011 -10199,3400:354,4,-45,0,0,0.0863425 -10200,3400:455,5,-45,0,0,0.0855597 -10201,3400:456,6,-45,0,0,0.0850706 -10202,3400:457,7,-45,0,0,0.084783 -10203,3400:458,8,-45,0,0,0.0844171 -10204,3400:459,9,-45,0,0,0.0843297 -10205,3401:350,10,-45,0,0,0.0840287 -10206,3401:351,11,-45,0,0,0.0836973 -10207,3401:352,12,-45,0,0,0.0849187 -10208,3401:353,13,-45,0,0,0.085407 -10209,3401:354,14,-45,0,0,0.0853509 -10210,3401:455,15,-45,0,0,0.0857689 -10211,3401:456,16,-45,0,0,0.0859865 -10212,3401:457,17,-45,0,0,0.0856964 -10213,3401:458,18,-45,0,0,0.085431 -10214,3401:459,19,-45,0,0,0.0859705 -10215,3402:350,20,-45,0,0,0.0867893 -10216,3402:351,21,-45,0,0,0.0870177 -10217,3402:352,22,-45,0,0,0.0863101 -10218,3402:353,23,-45,0,0,0.0846 -10219,3402:354,24,-45,0,0,0.0861888 -10220,3402:455,25,-45,0,0,0.0869933 -10221,3402:456,26,-45,0,0,0.0857527 -10222,3402:457,27,-45,0,0,0.0887055 -10223,3402:458,28,-45,0,0,0.0881671 -10224,3402:459,29,-45,0,0,0.0906007 -10225,3403:350,30,-45,0,0,0.0954366 -10226,3403:351,31,-45,0,0,0.0976136 -10227,3403:352,32,-45,0,0,0.0972073 -10228,3403:353,33,-45,0,0,0.0917671 -10229,3403:354,34,-45,0,0,0.0933984 -10230,3403:455,35,-45,0,0,0.0957828 -10231,3403:456,36,-45,0,0,0.0940354 -10232,3403:457,37,-45,0,0,0.0968921 -10233,3403:458,38,-45,0,0,0.0993467 -10234,3403:459,39,-45,0,0,0.0960234 -10235,3404:350,40,-45,0,0,0.097072 -10236,3404:351,41,-45,0,0,0.0959075 -10237,3404:352,42,-45,0,0,0.0936684 -10238,3404:353,43,-45,0,0,0.0933201 -10239,3404:354,44,-45,0,0,0.094395 -10240,3404:455,45,-45,0,0,0.0942546 -10241,3404:456,46,-45,0,0,0.0945004 -10242,3404:457,47,-45,0,0,0.0952238 -10243,3404:458,48,-45,0,0,0.0961304 -10244,3404:459,49,-45,0,0,0.0960144 -10245,3405:350,50,-45,0,0,0.0967035 -10246,3405:351,51,-45,0,0,0.0975866 -10247,3405:352,52,-45,0,0,0.097 -10248,3405:353,53,-45,0,0,0.100604 -10249,3405:354,54,-45,0,0,0.102791 -10250,3405:455,55,-45,0,0,0.100409 -10251,3405:456,56,-45,0,0,0.0961217 -10252,3405:457,57,-45,0,0,0.0972612 -10253,3405:458,58,-45,0,0,0.101098 -10254,3405:459,59,-45,0,0,0.101303 -10255,3406:350,60,-45,0,0,0.100865 -10256,3406:351,61,-45,0,0,0.10039 -10257,3406:352,62,-45,0,0,0.0991813 -10258,3406:353,63,-45,0,0,0.10136 -10259,3406:354,64,-45,0,0,0.102139 -10260,3406:455,65,-45,0,0,0.103313 -10261,3406:456,66,-45,0,0,0.104952 -10262,3406:457,67,-45,0,0,0.104952 -10263,3406:458,68,-45,0,0,0.103857 -10264,3406:459,69,-45,0,0,0.103628 -10265,3407:350,70,-45,0,0,0.102394 -10266,3407:351,71,-45,0,0,0.100744 -10267,3407:352,72,-45,0,0,0.0987781 -10268,3407:354,74,-45,0,0,0.0984495 -10269,3407:455,75,-45,0,0,0.0986227 -10270,3407:456,76,-45,0,0,0.0994938 -10271,3407:457,77,-45,0,0,0.0984495 -10272,3407:458,78,-45,0,0,0.0951088 -10273,3407:459,79,-45,0,0,0.0871648 -10274,3408:350,80,-45,0,0,0.092679 -10275,3408:351,81,-45,0,0,0.097108 -10276,3408:352,82,-45,0,0,0.0975957 -10277,3408:353,83,-45,0,0,0.0971531 -10278,3408:354,84,-45,0,0,0.0964346 -10279,3408:455,85,-45,0,0,0.114055 -10280,3408:456,86,-45,0,0,0.111352 -10281,3408:457,87,-45,0,0,0.111964 -10282,3408:458,88,-45,0,0,0.113268 -10283,3408:459,89,-45,0,0,0.122274 -10284,3409:350,90,-45,0,0,0.120957 -10285,3409:351,91,-45,0,0,0.11656 -10286,3409:352,92,-45,0,0,0.115222 -10287,3409:353,93,-45,0,0,0.120075 -10288,3409:354,94,-45,0,0,0.118102 -10289,3409:455,95,-45,0,0,0.116263 -10290,3409:456,96,-45,0,0,0.11334 -10291,3409:457,97,-45,0,0,0.110835 -10292,3409:458,98,-45,0,0,0.106977 -10293,3409:459,99,-45,0,0,0.106399 -10294,3410:350,100,-45,0,0,0.102139 -10295,3410:351,101,-45,0,0,0.102668 -10296,3410:352,102,-45,0,0,0.102791 -10297,3410:353,103,-45,0,0,0.102045 -10298,3410:354,104,-45,0,0,0.0981036 -10299,3410:455,105,-45,0,0,0.103095 -10300,3410:456,106,-45,0,0,0.106379 -10301,3410:457,107,-45,0,0,0.109385 -10302,3410:458,108,-45,0,0,0.111944 -10303,3410:459,109,-45,0,0,0.109736 -10304,3411:350,110,-45,0,0,0.106732 -10305,3411:351,111,-45,0,0,0.111119 -10306,3411:352,112,-45,0,0,0.111078 -10307,3411:353,113,-45,0,0,0.112804 -10308,3411:354,114,-45,0,0,0.12396 -10309,3411:455,115,-45,0,0,0.12481 -10310,3411:456,116,-45,0,0,0.125046 -10311,3411:457,117,-45,0,0,0.130054 -10312,3411:458,118,-45,0,0,0.133331 -10313,3411:459,119,-45,0,0,0.131924 -10314,3412:350,120,-45,0,0,0.122142 -10315,3412:351,121,-45,0,0,0.121405 -10316,3412:352,122,-45,0,0,0.120488 -10317,3412:353,123,-45,0,0,0.124194 -10318,3412:354,124,-45,0,0,0.131783 -10319,3412:455,125,-45,0,0,0.119793 -10320,3412:456,126,-45,0,0,0.124575 -10321,3412:457,127,-45,0,0,0.12605 -10322,3412:458,128,-45,0,0,0.126413 -10323,3412:459,129,-45,0,0,0.129984 -10324,3413:350,130,-45,0,0,0.1301 -10325,3413:351,131,-45,0,0,0.129995 -10326,3413:352,132,-45,0,0,0.125756 -10327,3413:353,133,-45,0,0,0.126538 -10328,3413:354,134,-45,0,0,0.13262 -10329,3413:455,135,-45,0,0,0.13262 -10330,3413:456,136,-45,0,0,0.133938 -10331,3413:457,137,-45,0,0,0.134117 -10332,3413:458,138,-45,0,0,0.129508 -10333,3413:459,139,-45,0,0,0.127529 -10334,3414:350,140,-45,0,0,0.133284 -10335,3414:351,141,-45,0,0,0.136049 -10336,3414:352,142,-45,0,0,0.138704 -10337,3414:353,143,-45,0,0,0.129473 -10338,3414:354,144,-45,0,0,0.116856 -10339,3414:455,145,-45,0,0,0.117696 -10340,3414:456,146,-45,0,0,0.118552 -10341,3414:457,147,-45,0,0,0.129995 -10342,3414:458,148,-45,0,0,0.14567 -10343,3414:459,149,-45,0,0,0.168418 -10344,3415:350,150,-45,0,0,0.161054 -10345,3415:351,151,-45,0,0,0.141538 -10346,3415:352,152,-45,0,0,0.149117 -10347,3415:353,153,-45,0,0,0.156132 -10348,3415:354,154,-45,0,0,0.166271 -10349,3415:455,155,-45,0,0,0.156647 -10350,3415:456,156,-45,0,0,0.158721 -10351,3415:457,157,-45,0,0,0.148194 -10352,3415:458,158,-45,0,0,0.149052 -10353,3415:459,159,-45,0,0,0.151902 -10354,3416:350,160,-45,0,0,0.131384 -10355,3416:351,161,-45,0,0,0.137981 -10356,3416:352,162,-45,0,0,0.150386 -10357,3416:353,163,-45,0,0,0.146644 -10358,3416:354,164,-45,0,0,0.149744 -10359,3416:455,165,-45,0,0,0.172397 -10360,3416:456,166,-45,0,0,0.18517 -10361,3416:457,167,-45,0,0,0.180701 -10362,3416:458,168,-45,0,0,0.179836 -10363,3416:459,169,-45,0,0,0.180276 -10364,3417:350,170,-45,0,0,0.180382 -10365,3417:351,171,-45,0,0,0.177769 -10366,3417:352,172,-45,0,0,0.166598 -10367,3417:353,173,-45,0,0,0.156769 -10368,3417:354,174,-45,0,0,0.150137 -10369,3417:455,175,-45,0,0,0.149156 -10370,3417:456,176,-45,0,0,0.159216 -10371,3417:457,177,-45,0,0,0.157982 -10372,3417:458,178,-45,0,0,0.159243 -10373,3417:459,179,-45,0,0,0.167585 -10374,3418:350,180,-45,0,0,0.166656 -10375,5418:140,-180,-44,0,0,0.167213 -10376,5417:249,-179,-44,0,0,0.170806 -10377,5417:248,-178,-44,0,0,0.17675 -10378,5417:247,-177,-44,0,0,0.180018 -10379,5417:246,-176,-44,0,0,0.179669 -10380,5417:245,-175,-44,0,0,0.17979 -10381,5417:144,-174,-44,0,0,0.188087 -10382,5417:143,-173,-44,0,0,0.187116 -10383,5417:142,-172,-44,0,0,0.183594 -10384,5417:141,-171,-44,0,0,0.176049 -10385,5417:140,-170,-44,0,0,0.167499 -10386,5416:249,-169,-44,0,0,0.172236 -10387,5416:248,-168,-44,0,0,0.172442 -10388,5416:247,-167,-44,0,0,0.161582 -10389,5416:246,-166,-44,0,0,0.15601 -10390,5416:245,-165,-44,0,0,0.157927 -10391,5416:144,-164,-44,0,0,0.158831 -10392,5416:143,-163,-44,0,0,0.15967 -10393,5416:142,-162,-44,0,0,0.167915 -10394,5416:141,-161,-44,0,0,0.170776 -10395,5416:140,-160,-44,0,0,0.167485 -10396,5415:249,-159,-44,0,0,0.174889 -10397,5415:248,-158,-44,0,0,0.179957 -10398,5415:247,-157,-44,0,0,0.166328 -10399,5415:246,-156,-44,0,0,0.170733 -10400,5415:245,-155,-44,0,0,0.177724 -10401,5415:144,-154,-44,0,0,0.19356 -10402,5415:143,-153,-44,0,0,0.193383 -10403,5415:142,-152,-44,0,0,0.1859 -10404,5415:141,-151,-44,0,0,0.17923 -10405,5415:140,-150,-44,0,0,0.171359 -10406,5414:249,-149,-44,0,0,0.171724 -10407,5414:248,-148,-44,0,0,0.175097 -10408,5414:247,-147,-44,0,0,0.184242 -10409,5414:246,-146,-44,0,0,0.188683 -10410,5414:245,-145,-44,0,0,0.181158 -10411,5414:144,-144,-44,0,0,0.178341 -10412,5414:143,-143,-44,0,0,0.175929 -10413,5414:142,-142,-44,0,0,0.1735 -10414,5414:141,-141,-44,0,0,0.184303 -10415,5414:140,-140,-44,0,0,0.182258 -10416,5413:249,-139,-44,0,0,0.179019 -10417,5413:248,-138,-44,0,0,0.179215 -10418,5413:247,-137,-44,0,0,0.185372 -10419,5413:246,-136,-44,0,0,0.188243 -10420,5413:245,-135,-44,0,0,0.190737 -10421,5413:144,-134,-44,0,0,0.193143 -10422,5413:143,-133,-44,0,0,0.196365 -10423,5413:142,-132,-44,0,0,0.199234 -10424,5413:141,-131,-44,0,0,0.198367 -10425,5413:140,-130,-44,0,0,0.19034 -10427,5412:248,-128,-44,0,0,0.183625 -10428,5412:247,-127,-44,0,0,0.181112 -10429,5412:246,-126,-44,0,0,0.181371 -10430,5412:245,-125,-44,0,0,0.181097 -10431,5412:144,-124,-44,0,0,0.179684 -10432,5412:143,-123,-44,0,0,0.177439 -10433,5412:142,-122,-44,0,0,0.175825 -10434,5412:141,-121,-44,0,0,0.17443 -10435,5412:140,-120,-44,0,0,0.175825 -10436,5411:249,-119,-44,0,0,0.176034 -10437,5411:248,-118,-44,0,0,0.174549 -10438,5411:247,-117,-44,0,0,0.170573 -10439,5411:246,-116,-44,0,0,0.168836 -10440,5411:245,-115,-44,0,0,0.17034 -10441,5411:144,-114,-44,0,0,0.168865 -10442,5411:143,-113,-44,0,0,0.165744 -10443,5411:142,-112,-44,0,0,0.162629 -10444,5411:141,-111,-44,0,0,0.162586 -10445,5411:140,-110,-44,0,0,0.161791 -10446,5410:249,-109,-44,0,0,0.161498 -10447,5410:248,-108,-44,0,0,0.162321 -10448,5410:247,-107,-44,0,0,0.159477 -10449,5410:246,-106,-44,0,0,0.159257 -10450,5410:245,-105,-44,0,0,0.161262 -10451,5410:144,-104,-44,0,0,0.158078 -10452,5410:143,-103,-44,0,0,0.157096 -10453,5410:142,-102,-44,0,0,0.159381 -10454,5410:141,-101,-44,0,0,0.15601 -10455,5410:140,-100,-44,0,0,0.157341 -10456,5409:249,-99,-44,0,0,0.158625 -10457,5409:248,-98,-44,0,0,0.156416 -10458,5409:247,-97,-44,0,0,0.155349 -10459,5409:246,-96,-44,0,0,0.15516 -10460,5409:245,-95,-44,0,0,0.155888 -10461,5409:144,-94,-44,0,0,0.15681 -10462,5409:143,-93,-44,0,0,0.156525 -10463,5409:142,-92,-44,0,0,0.155416 -10464,5409:141,-91,-44,0,0,0.154756 -10465,5409:140,-90,-44,0,0,0.156579 -10466,5408:249,-89,-44,0,0,0.157231 -10467,5408:248,-88,-44,0,0,0.155497 -10468,5408:247,-87,-44,0,0,0.156471 -10469,5408:246,-86,-44,0,0,0.156851 -10470,5408:245,-85,-44,0,0,0.155686 -10471,5408:144,-84,-44,0,0,0.155672 -10472,5408:143,-83,-44,0,0,0.15516 -10473,5408:142,-82,-44,0,0,0.154662 -10474,5408:141,-81,-44,0,0,0.155848 -10475,5408:140,-80,-44,0,0,0.155564 -10476,5407:249,-79,-44,0,0,0.157763 -10477,5407:248,-78,-44,0,0,0.162377 -10478,5407:247,-77,-44,0,0,0.160568 -10479,5407:246,-76,-44,0,0,0.158859 -10480,5407:245,-75,-44,0,0,0.163878 -10481,5407:144,-74,-44,0,0,0.179397 -10482,5406:247,-67,-44,0,0,0.171914 -10483,5406:246,-66,-44,0,0,0.162167 -10484,5406:245,-65,-44,0,0,0.157096 -10485,5406:144,-64,-44,0,0,0.150517 -10486,5406:143,-63,-44,0,0,0.152512 -10487,5406:142,-62,-44,0,0,0.150793 -10488,5406:141,-61,-44,0,0,0.15032 -10489,5406:140,-60,-44,0,0,0.152857 -10490,5405:249,-59,-44,0,0,0.153457 -10491,5405:248,-58,-44,0,0,0.150951 -10492,5405:247,-57,-44,0,0,0.14787 -10493,5405:246,-56,-44,0,0,0.143825 -10494,5405:245,-55,-44,0,0,0.141976 -10495,5405:144,-54,-44,0,0,0.141214 -10496,5405:143,-53,-44,0,0,0.141077 -10497,5405:142,-52,-44,0,0,0.140158 -10498,5405:141,-51,-44,0,0,0.137822 -10499,5405:140,-50,-44,0,0,0.13588 -10500,5404:249,-49,-44,0,0,0.130647 -10501,5404:248,-48,-44,0,0,0.122528 -10502,5404:247,-47,-44,0,0,0.120902 -10503,5404:246,-46,-44,0,0,0.118628 -10504,5404:245,-45,-44,0,0,0.112517 -10505,5404:144,-44,-44,0,0,0.111627 -10506,5404:143,-43,-44,0,0,0.112671 -10507,5404:142,-42,-44,0,0,0.111597 -10508,5404:141,-41,-44,0,0,0.111261 -10509,5404:140,-40,-44,0,0,0.109967 -10510,5403:249,-39,-44,0,0,0.108806 -10511,5403:248,-38,-44,0,0,0.107291 -10512,5403:247,-37,-44,0,0,0.103876 -10513,5403:246,-36,-44,0,0,0.101014 -10514,5403:245,-35,-44,0,0,0.0997427 -10515,5403:144,-34,-44,0,0,0.0984495 -10516,5403:143,-33,-44,0,0,0.0959701 -10517,5403:142,-32,-44,0,0,0.101988 -10518,5403:141,-31,-44,0,0,0.111271 -10519,5403:140,-30,-44,0,0,0.112199 -10520,5402:249,-29,-44,0,0,0.111099 -10521,5402:248,-28,-44,0,0,0.108727 -10522,5402:247,-27,-44,0,0,0.104269 -10523,5402:246,-26,-44,0,0,0.101369 -10524,5402:245,-25,-44,0,0,0.105107 -10525,5402:144,-24,-44,0,0,0.111546 -10526,5402:143,-23,-44,0,0,0.106702 -10527,5402:142,-22,-44,0,0,0.105853 -10528,5402:141,-21,-44,0,0,0.110159 -10529,5402:140,-20,-44,0,0,0.112025 -10530,5401:249,-19,-44,0,0,0.108527 -10531,5401:248,-18,-44,0,0,0.106165 -10532,5401:247,-17,-44,0,0,0.112496 -10533,5401:246,-16,-44,0,0,0.111933 -10534,5401:245,-15,-44,0,0,0.107774 -10535,5401:144,-14,-44,0,0,0.110028 -10536,5401:143,-13,-44,0,0,0.113288 -10537,5401:142,-12,-44,0,0,0.113578 -10538,5401:141,-11,-44,0,0,0.108687 -10539,5401:140,-10,-44,0,0,0.104653 -10540,5400:249,-9,-44,0,0,0.104596 -10541,5400:248,-8,-44,0,0,0.104403 -10542,5400:247,-7,-44,0,0,0.102413 -10543,5400:246,-6,-44,0,0,0.0957828 -10544,5400:245,-5,-44,0,0,0.0934507 -10545,5400:144,-4,-44,0,0,0.0932421 -10546,5400:143,-3,-44,0,0,0.0927913 -10547,5400:142,-2,-44,0,0,0.0913568 -10548,5400:141,-1,-44,0,0,0.0903471 -10549,3400:141,0,-44,0,0,0.0900771 -10550,3400:141,1,-44,0,0,0.0907786 -10551,3400:142,2,-44,0,0,0.0902373 -10552,3400:143,3,-44,0,0,0.0867163 -10553,3400:144,4,-44,0,0,0.0869686 -10554,3400:245,5,-44,0,0,0.0857045 -10555,3400:246,6,-44,0,0,0.0852386 -10556,3400:247,7,-44,0,0,0.0850945 -10557,3400:248,8,-44,0,0,0.0849986 -10558,3400:249,9,-44,0,0,0.0849028 -10559,3401:140,10,-44,0,0,0.0889301 -10560,3401:141,11,-44,0,0,0.0849586 -10561,3401:142,12,-44,0,0,0.0844886 -10562,3401:143,13,-44,0,0,0.0844726 -10563,3401:144,14,-44,0,0,0.0850386 -10564,3401:245,15,-44,0,0,0.0850306 -10565,3401:246,16,-44,0,0,0.0856078 -10566,3401:247,17,-44,0,0,0.085624 -10567,3401:248,18,-44,0,0,0.0861725 -10568,3401:249,19,-44,0,0,0.0869443 -10569,3402:140,20,-44,0,0,0.0878704 -10570,3402:141,21,-44,0,0,0.0883905 -10571,3402:142,22,-44,0,0,0.0881507 -10572,3402:143,23,-44,0,0,0.0875332 -10573,3402:144,24,-44,0,0,0.0858415 -10574,3402:245,25,-44,0,0,0.0855837 -10575,3402:246,26,-44,0,0,0.0960144 -10576,3402:247,27,-44,0,0,0.101369 -10577,3402:248,28,-44,0,0,0.0995677 -10578,3402:249,29,-44,0,0,0.0906599 -10579,3403:140,30,-44,0,0,0.0975957 -10580,3403:141,31,-44,0,0,0.0964792 -10581,3403:142,32,-44,0,0,0.096327 -10582,3403:143,33,-44,0,0,0.0929039 -10583,3403:144,34,-44,0,0,0.0970091 -10584,3403:245,35,-44,0,0,0.099356 -10585,3403:246,36,-44,0,0,0.0988423 -10586,3403:247,37,-44,0,0,0.0995953 -10587,3403:248,38,-44,0,0,0.101453 -10588,3403:249,39,-44,0,0,0.101051 -10589,3404:140,40,-44,0,0,0.099062 -10590,3404:141,41,-44,0,0,0.0990528 -10591,3404:142,42,-44,0,0,0.0985405 -10592,3404:143,43,-44,0,0,0.0972973 -10593,3404:144,44,-44,0,0,0.0974508 -10594,3404:245,45,-44,0,0,0.0975866 -10595,3404:246,46,-44,0,0,0.0977134 -10596,3404:247,47,-44,0,0,0.100613 -10597,3404:248,48,-44,0,0,0.0979491 -10598,3404:249,49,-44,0,0,0.0986777 -10599,3405:140,50,-44,0,0,0.101866 -10600,3405:141,51,-44,0,0,0.0988971 -10601,3405:142,52,-44,0,0,0.0996046 -10602,3405:143,53,-44,0,0,0.10093 -10603,3405:144,54,-44,0,0,0.10359 -10604,3405:245,55,-44,0,0,0.104048 -10605,3405:246,56,-44,0,0,0.101472 -10606,3405:247,57,-44,0,0,0.0985041 -10607,3405:248,58,-44,0,0,0.101341 -10608,3405:249,59,-44,0,0,0.103914 -10609,3406:140,60,-44,0,0,0.102214 -10610,3406:141,61,-44,0,0,0.102479 -10611,3406:142,62,-44,0,0,0.101641 -10612,3406:143,63,-44,0,0,0.103351 -10613,3406:144,64,-44,0,0,0.105795 -10614,3406:245,65,-44,0,0,0.104355 -10615,3406:246,66,-44,0,0,0.104875 -10616,3406:247,67,-44,0,0,0.106301 -10617,3406:248,68,-44,0,0,0.106409 -10618,3406:249,69,-44,0,0,0.103171 -10619,3407:140,70,-44,0,0,0.102271 -10620,3407:141,71,-44,0,0,0.100279 -10621,3407:142,72,-44,0,0,0.0993192 -10622,3407:144,74,-44,0,0,0.0996229 -10623,3407:245,75,-44,0,0,0.0995124 -10624,3407:246,76,-44,0,0,0.10002 -10625,3407:247,77,-44,0,0,0.100149 -10626,3407:248,78,-44,0,0,0.0967931 -10627,3407:249,79,-44,0,0,0.0893137 -10628,3408:140,80,-44,0,0,0.0895312 -10629,3408:141,81,-44,0,0,0.0892303 -10630,3408:142,82,-44,0,0,0.0891636 -10631,3408:143,83,-44,0,0,0.10053 -10632,3408:144,84,-44,0,0,0.110542 -10633,3408:245,85,-44,0,0,0.105834 -10634,3408:246,86,-44,0,0,0.108687 -10635,3408:247,87,-44,0,0,0.116158 -10636,3408:248,88,-44,0,0,0.115474 -10637,3408:249,89,-44,0,0,0.122473 -10638,3409:140,90,-44,0,0,0.128746 -10639,3409:141,91,-44,0,0,0.121899 -10640,3409:142,92,-44,0,0,0.123414 -10641,3409:143,93,-44,0,0,0.125485 -12589,5308:486,-86,-38,0,0,0.18873 -10642,3409:144,94,-44,0,0,0.121296 -10643,3409:245,95,-44,0,0,0.115013 -10644,3409:246,96,-44,0,0,0.114783 -10645,3409:247,97,-44,0,0,0.115003 -10646,3409:248,98,-44,0,0,0.115202 -10647,3409:249,99,-44,0,0,0.116168 -10648,3410:140,100,-44,0,0,0.117472 -10649,3410:141,101,-44,0,0,0.111903 -10650,3410:142,102,-44,0,0,0.104173 -10651,3410:143,103,-44,0,0,0.103247 -10652,3410:144,104,-44,0,0,0.104663 -10653,3410:245,105,-44,0,0,0.105814 -10654,3410:246,106,-44,0,0,0.108756 -10655,3410:247,107,-44,0,0,0.115537 -10656,3410:248,108,-44,0,0,0.117408 -10657,3410:249,109,-44,0,0,0.1156 -10658,3411:140,110,-44,0,0,0.11038 -10659,3411:141,111,-44,0,0,0.11039 -10660,3411:142,112,-44,0,0,0.111729 -10661,3411:143,113,-44,0,0,0.114794 -10662,3411:144,114,-44,0,0,0.124597 -10663,3411:245,115,-44,0,0,0.131349 -10664,3411:246,116,-44,0,0,0.12832 -10665,3411:247,117,-44,0,0,0.128056 -10666,3411:248,118,-44,0,0,0.128331 -10667,3411:249,119,-44,0,0,0.138397 -10668,3412:140,120,-44,0,0,0.136025 -10669,3412:141,121,-44,0,0,0.129775 -10670,3412:142,122,-44,0,0,0.140704 -10671,3412:143,123,-44,0,0,0.139503 -10672,3412:144,124,-44,0,0,0.13364 -10673,3412:245,125,-44,0,0,0.12681 -10674,3412:246,126,-44,0,0,0.133307 -10675,3412:247,127,-44,0,0,0.141588 -10676,3412:248,128,-44,0,0,0.137055 -10677,3412:249,129,-44,0,0,0.133938 -10678,3413:140,130,-44,0,0,0.134738 -10679,3413:141,131,-44,0,0,0.133688 -10680,3413:142,132,-44,0,0,0.1332 -10681,3413:143,133,-44,0,0,0.128584 -10682,3413:144,134,-44,0,0,0.140903 -10683,3413:245,135,-44,0,0,0.146054 -10684,3413:246,136,-44,0,0,0.142678 -10685,3413:247,137,-44,0,0,0.136885 -10686,3413:248,138,-44,0,0,0.137542 -10687,3413:249,139,-44,0,0,0.138716 -10688,3414:140,140,-44,0,0,0.139553 -10689,3414:141,141,-44,0,0,0.136025 -10690,3414:142,142,-44,0,0,0.130018 -10691,3414:143,143,-44,0,0,0.122616 -10692,3414:144,144,-44,0,0,0.11656 -10693,3414:245,145,-44,0,0,0.123826 -10694,3414:246,146,-44,0,0,0.129022 -10695,3414:247,147,-44,0,0,0.135977 -10696,3414:248,148,-44,0,0,0.132656 -10697,3414:249,149,-44,0,0,0.156064 -10698,3415:140,150,-44,0,0,0.167241 -10699,3415:141,151,-44,0,0,0.157136 -10700,3415:142,152,-44,0,0,0.15351 -10701,3415:143,153,-44,0,0,0.160236 -10702,3415:144,154,-44,0,0,0.173176 -10703,3415:245,155,-44,0,0,0.17406 -10704,3415:246,156,-44,0,0,0.167958 -10705,3415:247,157,-44,0,0,0.155456 -10706,3415:248,158,-44,0,0,0.157082 -10707,3415:249,159,-44,0,0,0.157313 -10708,3416:140,160,-44,0,0,0.154005 -10709,3416:141,161,-44,0,0,0.145376 -10710,3416:142,162,-44,0,0,0.14507 -10711,3416:143,163,-44,0,0,0.150281 -10712,3416:144,164,-44,0,0,0.153992 -10713,3416:245,165,-44,0,0,0.172809 -10714,3416:246,166,-44,0,0,0.18782 -10715,3416:247,167,-44,0,0,0.182013 -10716,3416:248,168,-44,0,0,0.180063 -10717,3416:249,169,-44,0,0,0.17911 -10718,3417:140,170,-44,0,0,0.178853 -10719,3417:141,171,-44,0,0,0.179004 -10720,3417:142,172,-44,0,0,0.179821 -10721,3417:143,173,-44,0,0,0.179942 -10722,3417:144,174,-44,0,0,0.175439 -10723,3417:245,175,-44,0,0,0.160998 -10724,3417:246,176,-44,0,0,0.156566 -10725,3417:247,177,-44,0,0,0.16025 -10726,3417:248,178,-44,0,0,0.164484 -10727,3417:249,179,-44,0,0,0.163498 -10728,3418:140,180,-44,0,0,0.167213 -10729,5418:130,-180,-43,0,0,0.176825 -10730,5417:239,-179,-43,0,0,0.179503 -10731,5417:238,-178,-43,0,0,0.179942 -10732,5417:237,-177,-43,0,0,0.180732 -10733,5417:236,-176,-43,0,0,0.181463 -10734,5417:235,-175,-43,0,0,0.184149 -10735,5417:134,-174,-43,0,0,0.189345 -10736,5417:133,-173,-43,0,0,0.185822 -10737,5417:132,-172,-43,0,0,0.187225 -10738,5417:131,-171,-43,0,0,0.181448 -10739,5417:130,-170,-43,0,0,0.176302 -10740,5416:239,-169,-43,0,0,0.182748 -10741,5416:238,-168,-43,0,0,0.187647 -10742,5416:237,-167,-43,0,0,0.18562 -10743,5416:236,-166,-43,0,0,0.183779 -10744,5416:235,-165,-43,0,0,0.181768 -10745,5416:134,-164,-43,0,0,0.176825 -10746,5416:133,-163,-43,0,0,0.168519 -10747,5416:132,-162,-43,0,0,0.172193 -10748,5416:131,-161,-43,0,0,0.177619 -10749,5416:130,-160,-43,0,0,0.177514 -10750,5415:239,-159,-43,0,0,0.186491 -10751,5415:238,-158,-43,0,0,0.192104 -10752,5415:237,-157,-43,0,0,0.176227 -10753,5415:236,-156,-43,0,0,0.171812 -10754,5415:235,-155,-43,0,0,0.192615 -10755,5415:134,-154,-43,0,0,0.214606 -10756,5415:133,-153,-43,0,0,0.215213 -10757,5415:132,-152,-43,0,0,0.213569 -10758,5415:131,-151,-43,0,0,0.213689 -10759,5415:130,-150,-43,0,0,0.212965 -10760,5414:239,-149,-43,0,0,0.206612 -10761,5414:238,-148,-43,0,0,0.197096 -10762,5414:237,-147,-43,0,0,0.193239 -10763,5414:236,-146,-43,0,0,0.200105 -10764,5414:235,-145,-43,0,0,0.197633 -10765,5414:134,-144,-43,0,0,0.188526 -10766,5414:133,-143,-43,0,0,0.196219 -10767,5414:132,-142,-43,0,0,0.206781 -10768,5414:131,-141,-43,0,0,0.204147 -10769,5414:130,-140,-43,0,0,0.194363 -10770,5413:239,-139,-43,0,0,0.182442 -10771,5413:238,-138,-43,0,0,0.188904 -10772,5413:237,-137,-43,0,0,0.203514 -10773,5413:236,-136,-43,0,0,0.207185 -10774,5413:235,-135,-43,0,0,0.211882 -10775,5413:134,-134,-43,0,0,0.210854 -10776,5413:133,-133,-43,0,0,0.208183 -10777,5413:132,-132,-43,0,0,0.205956 -10778,5413:131,-131,-43,0,0,0.200714 -10779,5413:130,-130,-43,0,0,0.198433 -10780,5412:239,-129,-43,0,0,0.195394 -10781,5412:238,-128,-43,0,0,0.19212 -10782,5412:237,-127,-43,0,0,0.18746 -10783,5412:236,-126,-43,0,0,0.189219 -10784,5412:235,-125,-43,0,0,0.189629 -10785,5412:134,-124,-43,0,0,0.184381 -10786,5412:133,-123,-43,0,0,0.183009 -10787,5412:132,-122,-43,0,0,0.181188 -10788,5412:131,-121,-43,0,0,0.17837 -10789,5412:130,-120,-43,0,0,0.177694 -10790,5411:239,-119,-43,0,0,0.176855 -10791,5411:238,-118,-43,0,0,0.175008 -10792,5411:237,-117,-43,0,0,0.173161 -10793,5411:236,-116,-43,0,0,0.177484 -10794,5411:235,-115,-43,0,0,0.181387 -10795,5411:134,-114,-43,0,0,0.178898 -10796,5411:133,-113,-43,0,0,0.173662 -10797,5411:132,-112,-43,0,0,0.169298 -10798,5411:131,-111,-43,0,0,0.169688 -10799,5411:130,-110,-43,0,0,0.168231 -10800,5410:239,-109,-43,0,0,0.166784 -10801,5410:238,-108,-43,0,0,0.166827 -10802,5410:237,-107,-43,0,0,0.16478 -10803,5410:236,-106,-43,0,0,0.167213 -10804,5410:235,-105,-43,0,0,0.165617 -10805,5410:134,-104,-43,0,0,0.161484 -10806,5410:133,-103,-43,0,0,0.16347 -10807,5410:132,-102,-43,0,0,0.165191 -10808,5410:131,-101,-43,0,0,0.161833 -10809,5410:130,-100,-43,0,0,0.161874 -10810,5409:239,-99,-43,0,0,0.16354 -10811,5409:238,-98,-43,0,0,0.16274 -10812,5409:237,-97,-43,0,0,0.16097 -10813,5409:236,-96,-43,0,0,0.161429 -10814,5409:235,-95,-43,0,0,0.162642 -10815,5409:134,-94,-43,0,0,0.164724 -10816,5409:133,-93,-43,0,0,0.162279 -10817,5409:132,-92,-43,0,0,0.159326 -10818,5409:131,-91,-43,0,0,0.160624 -10819,5409:130,-90,-43,0,0,0.163259 -10820,5408:239,-89,-43,0,0,0.161456 -10821,5408:238,-88,-43,0,0,0.16072 -10822,5408:237,-87,-43,0,0,0.162125 -10823,5408:236,-86,-43,0,0,0.160929 -10824,5408:235,-85,-43,0,0,0.160652 -10825,5408:134,-84,-43,0,0,0.160887 -10826,5408:133,-83,-43,0,0,0.159905 -10827,5408:132,-82,-43,0,0,0.159161 -10828,5408:131,-81,-43,0,0,0.159119 -10829,5408:130,-80,-43,0,0,0.158968 -10830,5407:239,-79,-43,0,0,0.162223 -10831,5407:238,-78,-43,0,0,0.163203 -10832,5407:237,-77,-43,0,0,0.164413 -10833,5407:236,-76,-43,0,0,0.169413 -10834,5407:235,-75,-43,0,0,0.180808 -10835,5407:134,-74,-43,0,0,0.192663 -10836,5406:238,-68,-43,0,0,0.17807 -10837,5406:237,-67,-43,0,0,0.165517 -10838,5406:236,-66,-43,0,0,0.161026 -10839,5406:235,-65,-43,0,0,0.159988 -10840,5406:134,-64,-43,0,0,0.156987 -10841,5406:133,-63,-43,0,0,0.158461 -10842,5406:132,-62,-43,0,0,0.158872 -10843,5406:131,-61,-43,0,0,0.16122 -10844,5406:130,-60,-43,0,0,0.165531 -10845,5405:239,-59,-43,0,0,0.166912 -10846,5405:238,-58,-43,0,0,0.162629 -10847,5405:237,-57,-43,0,0,0.157982 -10848,5405:236,-56,-43,0,0,0.151968 -10849,5405:235,-55,-43,0,0,0.145389 -10850,5405:134,-54,-43,0,0,0.143914 -10851,5405:133,-53,-43,0,0,0.142892 -10852,5405:132,-52,-43,0,0,0.139861 -10853,5405:131,-51,-43,0,0,0.138998 -10854,5405:130,-50,-43,0,0,0.136788 -10855,5404:239,-49,-43,0,0,0.132668 -10856,5404:238,-48,-43,0,0,0.124407 -10857,5404:237,-47,-43,0,0,0.123949 -10858,5404:236,-46,-43,0,0,0.122031 -10859,5404:235,-45,-43,0,0,0.120717 -10860,5404:134,-44,-43,0,0,0.119999 -10861,5404:133,-43,-43,0,0,0.117313 -10862,5404:132,-42,-43,0,0,0.115453 -10863,5404:131,-41,-43,0,0,0.121669 -10864,5404:130,-40,-43,0,0,0.12063 -10865,5403:239,-39,-43,0,0,0.118241 -10866,5403:238,-38,-43,0,0,0.110653 -10867,5403:237,-37,-43,0,0,0.108756 -10868,5403:236,-36,-43,0,0,0.111271 -10869,5403:235,-35,-43,0,0,0.107646 -10870,5403:134,-34,-43,0,0,0.108647 -10871,5403:133,-33,-43,0,0,0.101341 -10872,5403:132,-32,-43,0,0,0.105814 -10873,5403:131,-31,-43,0,0,0.111719 -10874,5403:130,-30,-43,0,0,0.110714 -10875,5402:239,-29,-43,0,0,0.114617 -10876,5402:238,-28,-43,0,0,0.12088 -10877,5402:237,-27,-43,0,0,0.115947 -10878,5402:236,-26,-43,0,0,0.112332 -10879,5402:235,-25,-43,0,0,0.11471 -10880,5402:134,-24,-43,0,0,0.115632 -10881,5402:133,-23,-43,0,0,0.118983 -10882,5402:132,-22,-43,0,0,0.115233 -10883,5402:131,-21,-43,0,0,0.112005 -10884,5402:130,-20,-43,0,0,0.115737 -10885,5401:239,-19,-43,0,0,0.112558 -10886,5401:238,-18,-43,0,0,0.118392 -10887,5401:237,-17,-43,0,0,0.116983 -10888,5401:236,-16,-43,0,0,0.116686 -10889,5401:235,-15,-43,0,0,0.115958 -10890,5401:134,-14,-43,0,0,0.112076 -10891,5401:133,-13,-43,0,0,0.114148 -10892,5401:132,-12,-43,0,0,0.116814 -10893,5401:131,-11,-43,0,0,0.114731 -10894,5401:130,-10,-43,0,0,0.107685 -10895,5400:239,-9,-43,0,0,0.105902 -10896,5400:238,-8,-43,0,0,0.10473 -10897,5400:237,-7,-43,0,0,0.104548 -10898,5400:236,-6,-43,0,0,0.101247 -10899,5400:235,-5,-43,0,0,0.0943861 -10900,5400:134,-4,-43,0,0,0.0949763 -10901,5400:133,-3,-43,0,0,0.0954366 -10902,5400:132,-2,-43,0,0,0.0932159 -10903,5400:131,-1,-43,0,0,0.0907108 -10904,3400:131,0,-43,0,0,0.0905077 -10905,3400:131,1,-43,0,0,0.0904992 -10906,3400:132,2,-43,0,0,0.0898333 -10907,3400:133,3,-43,0,0,0.0882168 -10908,3400:134,4,-43,0,0,0.092179 -10909,3400:235,5,-43,0,0,0.0966764 -10910,3400:236,6,-43,0,0,0.093103 -10911,3400:237,7,-43,0,0,0.0889469 -10912,3400:238,8,-43,0,0,0.0913826 -10913,3400:239,9,-43,0,0,0.0878126 -10914,3401:130,10,-43,0,0,0.0939304 -10915,3401:131,11,-43,0,0,0.0994756 -10916,3401:132,12,-43,0,0,0.0905415 -10917,3401:133,13,-43,0,0,0.0862212 -10918,3401:134,14,-43,0,0,0.0873448 -10919,3401:235,15,-43,0,0,0.0904907 -10920,3401:236,16,-43,0,0,0.0930249 -10921,3401:237,17,-43,0,0,0.09359 -10922,3401:238,18,-43,0,0,0.0921359 -10923,3401:239,19,-43,0,0,0.0921533 -10924,3402:130,20,-43,0,0,0.0922737 -10925,3402:131,21,-43,0,0,0.0901447 -10926,3402:132,22,-43,0,0,0.0872874 -10927,3402:133,23,-43,0,0,0.0871483 -10928,3402:134,24,-43,0,0,0.0884486 -10929,3402:235,25,-43,0,0,0.088341 -10930,3402:236,26,-43,0,0,0.0923165 -10931,3402:237,27,-43,0,0,0.096336 -10932,3402:238,28,-43,0,0,0.0928085 -10933,3402:239,29,-43,0,0,0.097 -10934,3403:130,30,-43,0,0,0.100409 -10935,3403:131,31,-43,0,0,0.11029 -10936,3403:132,32,-43,0,0,0.0965869 -10937,3403:133,33,-43,0,0,0.0968471 -10938,3403:134,34,-43,0,0,0.098249 -10939,3403:235,35,-43,0,0,0.0994295 -10940,3403:236,36,-43,0,0,0.103494 -10941,3403:237,37,-43,0,0,0.105097 -10942,3403:238,38,-43,0,0,0.105863 -10943,3403:239,39,-43,0,0,0.102545 -10944,3404:130,40,-43,0,0,0.101219 -10945,3404:131,41,-43,0,0,0.10181 -10946,3404:132,42,-43,0,0,0.100131 -10947,3404:133,43,-43,0,0,0.101257 -10948,3404:134,44,-43,0,0,0.100781 -10949,3404:235,45,-43,0,0,0.100949 -10950,3404:236,46,-43,0,0,0.104144 -10951,3404:237,47,-43,0,0,0.104827 -10952,3404:238,48,-43,0,0,0.103838 -10953,3404:239,49,-43,0,0,0.107449 -10954,3405:130,50,-43,0,0,0.108816 -10955,3405:131,51,-43,0,0,0.107321 -10956,3405:132,52,-43,0,0,0.103256 -10957,3405:133,53,-43,0,0,0.108042 -10958,3405:134,54,-43,0,0,0.106869 -10959,3405:235,55,-43,0,0,0.105165 -10960,3405:236,56,-43,0,0,0.105931 -10961,3405:237,57,-43,0,0,0.106683 -10962,3405:238,58,-43,0,0,0.103389 -10963,3405:239,59,-43,0,0,0.104269 -10964,3406:130,60,-43,0,0,0.108468 -10965,3406:131,61,-43,0,0,0.109716 -10966,3406:132,62,-43,0,0,0.107666 -10967,3406:133,63,-43,0,0,0.105591 -10968,3406:134,64,-43,0,0,0.10818 -10969,3406:235,65,-43,0,0,0.107036 -10970,3406:236,66,-43,0,0,0.107134 -10971,3406:237,67,-43,0,0,0.108746 -10972,3406:238,68,-43,0,0,0.109055 -10973,3406:239,69,-43,0,0,0.109385 -10974,3407:130,70,-43,0,0,0.104471 -10975,3407:131,71,-43,0,0,0.100753 -10976,3407:132,72,-43,0,0,0.101154 -10977,3407:134,74,-43,0,0,0.102101 -10978,3407:235,75,-43,0,0,0.101547 -10979,3407:236,76,-43,0,0,0.101107 -10980,3407:237,77,-43,0,0,0.0998351 -10981,3407:238,78,-43,0,0,0.0981854 -10982,3407:239,79,-43,0,0,0.0919041 -10983,3408:130,80,-43,0,0,0.0935812 -10984,3408:131,81,-43,0,0,0.093808 -10985,3408:132,82,-43,0,0,0.0972794 -10986,3408:133,83,-43,0,0,0.10121 -10987,3408:134,84,-43,0,0,0.122153 -10988,3408:235,85,-43,0,0,0.11936 -10989,3408:236,86,-43,0,0,0.112291 -10990,3408:237,87,-43,0,0,0.113516 -10991,3408:238,88,-43,0,0,0.116877 -10992,3408:239,89,-43,0,0,0.120412 -10993,3409:130,90,-43,0,0,0.12754 -10994,3409:131,91,-43,0,0,0.13024 -10995,3409:132,92,-43,0,0,0.12923 -10996,3409:133,93,-43,0,0,0.122948 -10997,3409:134,94,-43,0,0,0.120531 -10998,3409:235,95,-43,0,0,0.116707 -10999,3409:236,96,-43,0,0,0.120924 -11000,3409:237,97,-43,0,0,0.12327 -11001,3409:238,98,-43,0,0,0.128757 -11002,3409:239,99,-43,0,0,0.126867 -11003,3410:130,100,-43,0,0,0.125035 -11004,3410:131,101,-43,0,0,0.121416 -11005,3410:132,102,-43,0,0,0.1176 -11006,3410:133,103,-43,0,0,0.112763 -11007,3410:134,104,-43,0,0,0.112753 -11008,3410:235,105,-43,0,0,0.114971 -11009,3410:236,106,-43,0,0,0.113309 -11010,3410:237,107,-43,0,0,0.120433 -11011,3410:238,108,-43,0,0,0.120575 -11012,3410:239,109,-43,0,0,0.115779 -11013,3411:130,110,-43,0,0,0.112866 -11014,3411:131,111,-43,0,0,0.115863 -11015,3411:132,112,-43,0,0,0.120162 -11016,3411:133,113,-43,0,0,0.120303 -11017,3411:134,114,-43,0,0,0.123648 -11018,3411:235,115,-43,0,0,0.140307 -11019,3411:236,116,-43,0,0,0.151017 -11020,3411:237,117,-43,0,0,0.147482 -11021,3411:238,118,-43,0,0,0.133973 -11022,3411:239,119,-43,0,0,0.137067 -11023,3412:130,120,-43,0,0,0.136218 -11024,3412:131,121,-43,0,0,0.141251 -11025,3412:132,122,-43,0,0,0.149339 -11026,3412:133,123,-43,0,0,0.150714 -11027,3412:134,124,-43,0,0,0.147624 -11028,3412:235,125,-43,0,0,0.136267 -11029,3412:236,126,-43,0,0,0.139602 -11030,3412:237,127,-43,0,0,0.145287 -11031,3412:238,128,-43,0,0,0.140816 -11032,3412:239,129,-43,0,0,0.143421 -11033,3413:130,130,-43,0,0,0.140493 -11034,3413:131,131,-43,0,0,0.13847 -11035,3413:132,132,-43,0,0,0.136982 -11036,3413:133,133,-43,0,0,0.140332 -11037,3413:134,134,-43,0,0,0.144459 -11038,3413:235,135,-43,0,0,0.155618 -11039,3413:236,136,-43,0,0,0.161373 -11040,3413:237,137,-43,0,0,0.16025 -11041,3413:238,138,-43,0,0,0.160943 -11042,3413:239,139,-43,0,0,0.160679 -11043,3414:130,140,-43,0,0,0.158845 -11044,3414:131,141,-43,0,0,0.14451 -11045,3414:132,142,-43,0,0,0.136327 -11046,3414:133,143,-43,0,0,0.144612 -11047,3414:134,144,-43,0,0,0.136569 -11048,3414:235,145,-43,0,0,0.127677 -11049,3414:236,146,-43,0,0,0.13383 -11050,3414:237,147,-43,0,0,0.136363 -11051,3414:238,148,-43,0,0,0.150754 -11052,3414:239,149,-43,0,0,0.172588 -11053,3415:130,150,-43,0,0,0.164582 -11054,3415:131,151,-43,0,0,0.171155 -11055,3415:132,152,-43,0,0,0.175706 -11056,3415:133,153,-43,0,0,0.174045 -11057,3415:134,154,-43,0,0,0.177319 -11058,3415:235,155,-43,0,0,0.174282 -11059,3415:236,156,-43,0,0,0.164597 -11060,3415:237,157,-43,0,0,0.16454 -11061,3415:238,158,-43,0,0,0.166399 -11062,3415:239,159,-43,0,0,0.168692 -11063,3416:130,160,-43,0,0,0.17443 -11064,3416:131,161,-43,0,0,0.180762 -11065,3416:132,162,-43,0,0,0.183902 -11066,3416:133,163,-43,0,0,0.179897 -11067,3416:134,164,-43,0,0,0.175766 -11068,3416:235,165,-43,0,0,0.176795 -11069,3416:236,166,-43,0,0,0.19004 -11070,3416:237,167,-43,0,0,0.184612 -11071,3416:238,168,-43,0,0,0.18186 -11072,3416:239,169,-43,0,0,0.179821 -11073,3417:130,170,-43,0,0,0.178235 -11074,3417:131,171,-43,0,0,0.176586 -11075,3417:132,172,-43,0,0,0.17678 -11076,3417:133,173,-43,0,0,0.179261 -11077,3417:134,174,-43,0,0,0.181616 -11078,3417:235,175,-43,0,0,0.171359 -11079,3417:236,176,-43,0,0,0.159422 -11080,3417:237,177,-43,0,0,0.164964 -11081,3417:238,178,-43,0,0,0.164922 -11082,3417:239,179,-43,0,0,0.167113 -11083,3418:130,180,-43,0,0,0.176825 -11084,5418:120,-180,-42,0,0,0.173352 -11085,5417:229,-179,-42,0,0,0.174031 -11086,5417:228,-178,-42,0,0,0.17587 -11087,5417:227,-177,-42,0,0,0.180503 -11088,5417:226,-176,-42,0,0,0.182028 -11089,5417:225,-175,-42,0,0,0.186569 -11090,5417:124,-174,-42,0,0,0.193014 -11091,5417:123,-173,-42,0,0,0.188102 -11092,5417:122,-172,-42,0,0,0.18534 -11093,5417:121,-171,-42,0,0,0.17917 -11094,5417:120,-170,-42,0,0,0.175959 -11095,5416:229,-169,-42,0,0,0.174934 -11096,5416:228,-168,-42,0,0,0.191945 -11097,5416:227,-167,-42,0,0,0.192439 -11098,5416:226,-166,-42,0,0,0.194266 -11099,5416:225,-165,-42,0,0,0.194669 -11100,5416:124,-164,-42,0,0,0.191022 -11101,5416:123,-163,-42,0,0,0.179548 -11102,5416:122,-162,-42,0,0,0.182319 -11103,5416:121,-161,-42,0,0,0.193993 -11104,5416:120,-160,-42,0,0,0.194491 -11105,5415:229,-159,-42,0,0,0.193511 -11106,5415:228,-158,-42,0,0,0.200253 -11107,5415:227,-157,-42,0,0,0.2082 -11108,5415:226,-156,-42,0,0,0.212346 -11109,5415:225,-155,-42,0,0,0.209916 -11110,5415:124,-154,-42,0,0,0.214087 -11111,5415:123,-153,-42,0,0,0.220746 -11112,5415:122,-152,-42,0,0,0.221738 -11113,5415:121,-151,-42,0,0,0.21909 -11114,5415:120,-150,-42,0,0,0.218212 -11115,5414:229,-149,-42,0,0,0.217302 -11116,5414:228,-148,-42,0,0,0.211214 -11117,5414:227,-147,-42,0,0,0.206107 -11118,5414:226,-146,-42,0,0,0.210598 -11119,5414:225,-145,-42,0,0,0.21381 -11120,5414:124,-144,-42,0,0,0.212827 -11121,5414:123,-143,-42,0,0,0.215369 -11122,5414:122,-142,-42,0,0,0.212638 -11123,5414:121,-141,-42,0,0,0.202019 -11124,5414:120,-140,-42,0,0,0.20187 -11125,5413:229,-139,-42,0,0,0.208777 -11126,5413:228,-138,-42,0,0,0.214381 -11127,5413:227,-137,-42,0,0,0.212054 -11128,5413:226,-136,-42,0,0,0.215091 -11129,5413:225,-135,-42,0,0,0.214415 -11130,5413:124,-134,-42,0,0,0.209337 -11131,5413:123,-133,-42,0,0,0.209082 -11132,5413:122,-132,-42,0,0,0.205318 -11133,5413:121,-131,-42,0,0,0.207506 -11134,5413:120,-130,-42,0,0,0.206377 -11135,5412:229,-129,-42,0,0,0.203164 -11136,5412:228,-128,-42,0,0,0.205519 -11137,5412:227,-127,-42,0,0,0.203681 -11138,5412:226,-126,-42,0,0,0.194894 -11139,5412:225,-125,-42,0,0,0.199349 -11140,5412:124,-124,-42,0,0,0.200714 -11141,5412:123,-123,-42,0,0,0.190578 -11142,5412:122,-122,-42,0,0,0.183763 -11143,5412:121,-121,-42,0,0,0.183056 -11144,5412:120,-120,-42,0,0,0.183594 -11145,5411:229,-119,-42,0,0,0.181738 -11146,5411:228,-118,-42,0,0,0.181478 -11147,5411:227,-117,-42,0,0,0.186351 -11148,5411:226,-116,-42,0,0,0.187053 -11149,5411:225,-115,-42,0,0,0.182396 -11150,5411:124,-114,-42,0,0,0.180306 -11151,5411:123,-113,-42,0,0,0.176601 -11152,5411:122,-112,-42,0,0,0.176362 -11153,5411:121,-111,-42,0,0,0.176183 -11154,5411:120,-110,-42,0,0,0.173367 -11155,5410:229,-109,-42,0,0,0.173942 -11156,5410:228,-108,-42,0,0,0.174075 -11157,5410:227,-107,-42,0,0,0.170922 -11158,5410:226,-106,-42,0,0,0.172354 -11159,5410:225,-105,-42,0,0,0.169862 -11160,5410:124,-104,-42,0,0,0.170079 -11161,5410:123,-103,-42,0,0,0.172383 -11162,5410:122,-102,-42,0,0,0.171608 -11163,5410:121,-101,-42,0,0,0.167958 -11164,5410:120,-100,-42,0,0,0.167714 -11165,5409:229,-99,-42,0,0,0.168677 -11166,5409:228,-98,-42,0,0,0.16803 -11167,5409:227,-97,-42,0,0,0.166071 -11168,5409:226,-96,-42,0,0,0.166998 -11169,5409:225,-95,-42,0,0,0.166285 -11170,5409:124,-94,-42,0,0,0.167915 -11171,5409:123,-93,-42,0,0,0.16803 -11172,5409:122,-92,-42,0,0,0.166684 -11173,5409:121,-91,-42,0,0,0.165276 -11174,5409:120,-90,-42,0,0,0.167456 -11175,5408:229,-89,-42,0,0,0.167084 -11176,5408:228,-88,-42,0,0,0.166584 -11177,5408:227,-87,-42,0,0,0.165673 -11178,5408:226,-86,-42,0,0,0.164696 -11179,5408:225,-85,-42,0,0,0.164625 -11180,5408:124,-84,-42,0,0,0.163709 -11181,5408:123,-83,-42,0,0,0.162908 -11182,5408:122,-82,-42,0,0,0.16267 -11183,5408:121,-81,-42,0,0,0.166399 -11184,5408:120,-80,-42,0,0,0.167385 -11185,5407:229,-79,-42,0,0,0.16423 -11186,5407:228,-78,-42,0,0,0.167843 -11187,5407:227,-77,-42,0,0,0.171316 -11188,5407:226,-76,-42,0,0,0.184087 -11189,5407:225,-75,-42,0,0,0.19554 -11190,5406:228,-68,-42,0,0,0.184953 -11191,5406:227,-67,-42,0,0,0.167528 -11192,5406:226,-66,-42,0,0,0.16361 -11193,5406:225,-65,-42,0,0,0.16361 -11194,5406:124,-64,-42,0,0,0.165347 -11195,5406:123,-63,-42,0,0,0.1661 -11196,5406:122,-62,-42,0,0,0.167786 -11197,5406:121,-61,-42,0,0,0.177679 -11198,5405:228,-58,-42,0,0,0.200417 -11199,5405:227,-57,-42,0,0,0.166798 -11200,5405:226,-56,-42,0,0,0.158653 -11201,5405:225,-55,-42,0,0,0.152964 -11202,5405:124,-54,-42,0,0,0.145631 -11203,5405:123,-53,-42,0,0,0.144434 -11204,5405:122,-52,-42,0,0,0.145849 -11205,5405:121,-51,-42,0,0,0.145926 -11206,5405:120,-50,-42,0,0,0.143144 -11207,5404:229,-49,-42,0,0,0.13426 -11208,5404:228,-48,-42,0,0,0.132644 -11209,5404:227,-47,-42,0,0,0.127289 -11210,5404:226,-46,-42,0,0,0.126696 -11211,5404:225,-45,-42,0,0,0.128699 -11212,5404:124,-44,-42,0,0,0.130077 -11213,5404:123,-43,-42,0,0,0.130612 -11214,5404:122,-42,-42,0,0,0.127152 -11215,5404:121,-41,-42,0,0,0.119533 -11216,5404:120,-40,-42,0,0,0.123303 -11217,5403:229,-39,-42,0,0,0.123181 -11218,5403:228,-38,-42,0,0,0.122716 -11219,5403:227,-37,-42,0,0,0.117058 -11220,5403:226,-36,-42,0,0,0.120859 -11221,5403:225,-35,-42,0,0,0.117824 -11222,5403:124,-34,-42,0,0,0.114648 -11223,5403:123,-33,-42,0,0,0.103905 -11224,5403:122,-32,-42,0,0,0.107824 -11225,5403:121,-31,-42,0,0,0.109066 -11226,5403:120,-30,-42,0,0,0.110179 -11227,5402:229,-29,-42,0,0,0.119317 -11228,5402:228,-28,-42,0,0,0.12588 -11229,5402:227,-27,-42,0,0,0.121361 -11230,5402:226,-26,-42,0,0,0.121844 -11231,5402:225,-25,-42,0,0,0.121449 -11232,5402:124,-24,-42,0,0,0.124161 -11233,5402:123,-23,-42,0,0,0.120891 -11234,5402:122,-22,-42,0,0,0.120979 -11235,5402:121,-21,-42,0,0,0.118649 -11236,5402:120,-20,-42,0,0,0.119392 -11237,5401:229,-19,-42,0,0,0.115905 -11238,5401:228,-18,-42,0,0,0.125655 -11239,5401:227,-17,-42,0,0,0.12974 -11240,5401:226,-16,-42,0,0,0.123358 -11241,5401:225,-15,-42,0,0,0.122682 -11242,5401:124,-14,-42,0,0,0.120782 -11243,5401:123,-13,-42,0,0,0.127769 -11244,5401:122,-12,-42,0,0,0.129798 -11245,5401:121,-11,-42,0,0,0.119934 -11246,5401:120,-10,-42,0,0,0.112835 -11247,5400:229,-9,-42,0,0,0.104653 -11248,5400:228,-8,-42,0,0,0.105097 -11249,5400:227,-7,-42,0,0,0.104355 -11250,5400:226,-6,-42,0,0,0.103819 -11251,5400:225,-5,-42,0,0,0.0984587 -11252,5400:124,-4,-42,0,0,0.0976589 -11253,5400:123,-3,-42,0,0,0.103428 -11254,5400:122,-2,-42,0,0,0.0985862 -11255,5400:121,-1,-42,0,0,0.0986227 -11256,3400:121,0,-42,0,0,0.0963628 -11257,3400:121,1,-42,0,0,0.0942546 -11258,3400:122,2,-42,0,0,0.0951352 -11259,3400:123,3,-42,0,0,0.0961304 -11260,3400:124,4,-42,0,0,0.0948616 -11261,3400:225,5,-42,0,0,0.0990713 -11262,3400:226,6,-42,0,0,0.114564 -11263,3400:227,7,-42,0,0,0.112804 -11264,3400:228,8,-42,0,0,0.108448 -11265,3400:229,9,-42,0,0,0.102205 -11266,3401:120,10,-42,0,0,0.107163 -11267,3401:121,11,-42,0,0,0.10823 -11268,3401:122,12,-42,0,0,0.106292 -11269,3401:123,13,-42,0,0,0.094747 -11270,3401:124,14,-42,0,0,0.0988881 -11271,3401:225,15,-42,0,0,0.0981399 -11272,3401:226,16,-42,0,0,0.0963898 -11273,3401:227,17,-42,0,0,0.0960144 -11274,3401:228,18,-42,0,0,0.0967753 -11275,3401:229,19,-42,0,0,0.0940442 -11276,3402:120,20,-42,0,0,0.0987781 -11277,3402:121,21,-42,0,0,0.0998444 -11278,3402:122,22,-42,0,0,0.0947117 -11279,3402:123,23,-42,0,0,0.0944478 -11280,3402:124,24,-42,0,0,0.101117 -11281,3402:225,25,-42,0,0,0.105175 -11282,3402:226,26,-42,0,0,0.104663 -11283,3402:227,27,-42,0,0,0.105834 -11284,3402:228,28,-42,0,0,0.100567 -11285,3402:229,29,-42,0,0,0.0969731 -11286,3403:120,30,-42,0,0,0.107134 -11287,3403:121,31,-42,0,0,0.118897 -11288,3403:122,32,-42,0,0,0.11302 -11289,3403:123,33,-42,0,0,0.106438 -11290,3403:124,34,-42,0,0,0.103485 -11291,3403:225,35,-42,0,0,0.102782 -11292,3403:226,36,-42,0,0,0.105475 -11293,3403:227,37,-42,0,0,0.10636 -11294,3403:228,38,-42,0,0,0.108002 -11295,3403:229,39,-42,0,0,0.103981 -11296,3404:120,40,-42,0,0,0.104615 -11297,3404:121,41,-42,0,0,0.104394 -11298,3404:122,42,-42,0,0,0.103047 -11299,3404:123,43,-42,0,0,0.105795 -11300,3404:124,44,-42,0,0,0.106644 -11301,3404:225,45,-42,0,0,0.109887 -11302,3404:226,46,-42,0,0,0.111546 -11303,3404:227,47,-42,0,0,0.109095 -11304,3404:228,48,-42,0,0,0.107468 -11305,3404:229,49,-42,0,0,0.112394 -11306,3405:120,50,-42,0,0,0.110058 -11307,3405:121,51,-42,0,0,0.110138 -11308,3405:122,52,-42,0,0,0.110491 -11309,3405:123,53,-42,0,0,0.110582 -11310,3405:124,54,-42,0,0,0.108498 -11311,3405:225,55,-42,0,0,0.106898 -11312,3405:226,56,-42,0,0,0.109526 -11313,3405:227,57,-42,0,0,0.112486 -11314,3405:228,58,-42,0,0,0.109636 -11315,3405:229,59,-42,0,0,0.107962 -11316,3406:120,60,-42,0,0,0.113712 -11317,3406:121,61,-42,0,0,0.113619 -11318,3406:122,62,-42,0,0,0.112281 -11319,3406:123,63,-42,0,0,0.111119 -11320,3406:124,64,-42,0,0,0.111862 -11321,3406:225,65,-42,0,0,0.112877 -11322,3406:226,66,-42,0,0,0.112086 -11323,3406:227,67,-42,0,0,0.111139 -11324,3406:228,68,-42,0,0,0.109335 -11325,3406:229,69,-42,0,0,0.106175 -11326,3407:120,70,-42,0,0,0.103723 -11327,3407:121,71,-42,0,0,0.102394 -11328,3407:122,72,-42,0,0,0.103446 -11329,3407:124,74,-42,0,0,0.10474 -11330,3407:225,75,-42,0,0,0.10378 -11331,3407:226,76,-42,0,0,0.101191 -11332,3407:227,77,-42,0,0,0.0959165 -11333,3407:228,78,-42,0,0,0.0929903 -11334,3407:229,79,-42,0,0,0.109385 -11335,3408:120,80,-42,0,0,0.123148 -11336,3408:121,81,-42,0,0,0.129057 -11337,3408:122,82,-42,0,0,0.122274 -11338,3408:123,83,-42,0,0,0.126879 -11339,3408:124,84,-42,0,0,0.129577 -11340,3408:225,85,-42,0,0,0.135579 -11341,3408:226,86,-42,0,0,0.129555 -11342,3408:227,87,-42,0,0,0.126367 -11343,3408:228,88,-42,0,0,0.130449 -11344,3408:229,89,-42,0,0,0.133914 -11345,3409:120,90,-42,0,0,0.143093 -11346,3409:121,91,-42,0,0,0.147572 -11347,3409:122,92,-42,0,0,0.135868 -11348,3409:123,93,-42,0,0,0.127209 -11349,3409:124,94,-42,0,0,0.123748 -11350,3409:225,95,-42,0,0,0.126084 -11351,3409:226,96,-42,0,0,0.12801 -11352,3409:227,97,-42,0,0,0.128688 -11353,3409:228,98,-42,0,0,0.132833 -11354,3409:229,99,-42,0,0,0.13122 -11355,3410:120,100,-42,0,0,0.127243 -11356,3410:121,101,-42,0,0,0.123059 -11357,3410:122,102,-42,0,0,0.122208 -11358,3410:123,103,-42,0,0,0.12276 -11359,3410:124,104,-42,0,0,0.121789 -11360,3410:225,105,-42,0,0,0.120488 -11361,3410:226,106,-42,0,0,0.117494 -11362,3410:227,107,-42,0,0,0.119231 -11363,3410:228,108,-42,0,0,0.121537 -11364,3410:229,109,-42,0,0,0.126129 -11365,3411:120,110,-42,0,0,0.12357 -11366,3411:121,111,-42,0,0,0.132408 -11367,3411:122,112,-42,0,0,0.132125 -11368,3411:123,113,-42,0,0,0.128331 -11369,3411:124,114,-42,0,0,0.134786 -11370,3411:225,115,-42,0,0,0.13863 -11371,3411:226,116,-42,0,0,0.15363 -11372,3411:227,117,-42,0,0,0.153978 -11373,3411:228,118,-42,0,0,0.144447 -11374,3411:229,119,-42,0,0,0.138372 -11375,3412:120,120,-42,0,0,0.141838 -11376,3412:121,121,-42,0,0,0.143169 -11377,3412:122,122,-42,0,0,0.145695 -11378,3412:123,123,-42,0,0,0.15032 -11379,3412:124,124,-42,0,0,0.150754 -11380,3412:225,125,-42,0,0,0.154635 -11381,3412:226,126,-42,0,0,0.15339 -11382,3412:227,127,-42,0,0,0.147818 -11383,3412:228,128,-42,0,0,0.175186 -11384,3412:229,129,-42,0,0,0.1797 -11385,3413:120,130,-42,0,0,0.178672 -11386,3413:121,131,-42,0,0,0.174711 -11387,3413:122,132,-42,0,0,0.169052 -11388,3413:123,133,-42,0,0,0.171797 -11389,3413:124,134,-42,0,0,0.175691 -11390,3413:225,135,-42,0,0,0.17529 -11391,3413:226,136,-42,0,0,0.174193 -11392,3413:227,137,-42,0,0,0.170108 -11393,3413:228,138,-42,0,0,0.161345 -11394,3413:229,139,-42,0,0,0.163695 -11395,3414:120,140,-42,0,0,0.158338 -11396,3414:121,141,-42,0,0,0.143649 -11397,3414:122,142,-42,0,0,0.143876 -11398,3414:123,143,-42,0,0,0.160388 -11399,3414:124,144,-42,0,0,0.159119 -11400,3414:225,145,-42,0,0,0.148817 -11401,3414:226,146,-42,0,0,0.137822 -11402,3414:227,147,-42,0,0,0.167399 -11403,3414:228,148,-42,0,0,0.187162 -11404,3414:229,149,-42,0,0,0.184149 -11405,3415:120,150,-42,0,0,0.165773 -11406,3415:121,151,-42,0,0,0.170457 -11407,3415:122,152,-42,0,0,0.172691 -11408,3415:123,153,-42,0,0,0.174134 -11409,3415:124,154,-42,0,0,0.182136 -11410,3415:225,155,-42,0,0,0.18258 -11411,3415:226,156,-42,0,0,0.17486 -11412,3415:227,157,-42,0,0,0.173574 -11413,3415:228,158,-42,0,0,0.182795 -11414,3415:229,159,-42,0,0,0.18401 -11415,3416:120,160,-42,0,0,0.18884 -11416,3416:121,161,-42,0,0,0.190657 -11417,3416:122,162,-42,0,0,0.191006 -11418,3416:123,163,-42,0,0,0.190325 -11419,3416:124,164,-42,0,0,0.185869 -11420,3416:225,165,-42,0,0,0.185511 -11421,3416:226,166,-42,0,0,0.192743 -11422,3416:227,167,-42,0,0,0.191754 -11423,3416:228,168,-42,0,0,0.189582 -11424,3416:229,169,-42,0,0,0.183163 -11425,3417:120,170,-42,0,0,0.17917 -11426,3417:121,171,-42,0,0,0.177574 -11427,3417:122,172,-42,0,0,0.17825 -11428,3417:123,173,-42,0,0,0.179019 -11429,3417:124,174,-42,0,0,0.180823 -11430,3417:225,175,-42,0,0,0.180018 -11431,3417:226,176,-42,0,0,0.164625 -11432,3417:227,177,-42,0,0,0.164442 -11433,3417:228,178,-42,0,0,0.167141 -11434,3417:229,179,-42,0,0,0.173441 -11435,3418:120,180,-42,0,0,0.173352 -11436,5418:110,-180,-41,0,0,0.173191 -11437,5417:219,-179,-41,0,0,0.171549 -11438,5417:218,-178,-41,0,0,0.17322 -11439,5417:217,-177,-41,0,0,0.190546 -11440,5417:216,-176,-41,0,0,0.192232 -11441,5417:215,-175,-41,0,0,0.188322 -11442,5417:114,-174,-41,0,0,0.194943 -11443,5417:113,-173,-41,0,0,0.19433 -11444,5417:112,-172,-41,0,0,0.200648 -11445,5417:111,-171,-41,0,0,0.191006 -11446,5417:110,-170,-41,0,0,0.190245 -11447,5416:219,-169,-41,0,0,0.187788 -11448,5416:218,-168,-41,0,0,0.18903 -11449,5416:217,-167,-41,0,0,0.183579 -11450,5416:216,-166,-41,0,0,0.188385 -11451,5416:215,-165,-41,0,0,0.187773 -11452,5416:114,-164,-41,0,0,0.199136 -11453,5416:113,-163,-41,0,0,0.213741 -11454,5416:112,-162,-41,0,0,0.195007 -11455,5416:111,-161,-41,0,0,0.196219 -11456,5416:110,-160,-41,0,0,0.202616 -11457,5415:219,-159,-41,0,0,0.213707 -11458,5415:218,-158,-41,0,0,0.22622 -11459,5415:217,-157,-41,0,0,0.232668 -11460,5415:216,-156,-41,0,0,0.232173 -11461,5415:215,-155,-41,0,0,0.225843 -11462,5415:114,-154,-41,0,0,0.213189 -11463,5415:113,-153,-41,0,0,0.218703 -11464,5415:112,-152,-41,0,0,0.230074 -11465,5415:111,-151,-41,0,0,0.223998 -11466,5415:110,-150,-41,0,0,0.222306 -11467,5414:219,-149,-41,0,0,0.217232 -11468,5414:218,-148,-41,0,0,0.2208 -11469,5414:217,-147,-41,0,0,0.226832 -11470,5414:216,-146,-41,0,0,0.227716 -11471,5414:215,-145,-41,0,0,0.226688 -11472,5414:114,-144,-41,0,0,0.225448 -11473,5414:113,-143,-41,0,0,0.221419 -11474,5414:112,-142,-41,0,0,0.218914 -11475,5414:111,-141,-41,0,0,0.221968 -11476,5414:110,-140,-41,0,0,0.226544 -11477,5413:219,-139,-41,0,0,0.227463 -11478,5413:218,-138,-41,0,0,0.224391 -11479,5413:217,-137,-41,0,0,0.222413 -11480,5413:216,-136,-41,0,0,0.223605 -11481,5413:215,-135,-41,0,0,0.221826 -11482,5413:114,-134,-41,0,0,0.220252 -11483,5413:113,-133,-41,0,0,0.219846 -11484,5413:112,-132,-41,0,0,0.217704 -11485,5413:111,-131,-41,0,0,0.216709 -11486,5413:110,-130,-41,0,0,0.216482 -11487,5412:219,-129,-41,0,0,0.216133 -11488,5412:218,-128,-41,0,0,0.215612 -11489,5412:217,-127,-41,0,0,0.213638 -11490,5412:216,-126,-41,0,0,0.201258 -11491,5412:215,-125,-41,0,0,0.201275 -11492,5412:114,-124,-41,0,0,0.204648 -11493,5412:113,-123,-41,0,0,0.205034 -11494,5412:112,-122,-41,0,0,0.193399 -11495,5412:111,-121,-41,0,0,0.196625 -11496,5412:110,-120,-41,0,0,0.191117 -11497,5411:219,-119,-41,0,0,0.191244 -11498,5411:218,-118,-41,0,0,0.194185 -11499,5411:217,-117,-41,0,0,0.192535 -11500,5411:216,-116,-41,0,0,0.192903 -11501,5411:215,-115,-41,0,0,0.194749 -11502,5411:114,-114,-41,0,0,0.195766 -11503,5411:113,-113,-41,0,0,0.192903 -11504,5411:112,-112,-41,0,0,0.187366 -11505,5411:111,-111,-41,0,0,0.181707 -11506,5411:110,-110,-41,0,0,0.182136 -11507,5410:219,-109,-41,0,0,0.182564 -11508,5410:218,-108,-41,0,0,0.178551 -11509,5410:217,-107,-41,0,0,0.180884 -11510,5410:216,-106,-41,0,0,0.180625 -11511,5410:215,-105,-41,0,0,0.181097 -11512,5410:114,-104,-41,0,0,0.182166 -11513,5410:113,-103,-41,0,0,0.179518 -11514,5410:112,-102,-41,0,0,0.176347 -11515,5410:111,-101,-41,0,0,0.176153 -11516,5410:110,-100,-41,0,0,0.177409 -11517,5409:219,-99,-41,0,0,0.176272 -11518,5409:218,-98,-41,0,0,0.173603 -11519,5409:217,-97,-41,0,0,0.171534 -11520,5409:216,-96,-41,0,0,0.172412 -11521,5409:215,-95,-41,0,0,0.171155 -11522,5409:114,-94,-41,0,0,0.17114 -11523,5409:113,-93,-41,0,0,0.172706 -11524,5409:112,-92,-41,0,0,0.174164 -11525,5409:111,-91,-41,0,0,0.172134 -11526,5409:110,-90,-41,0,0,0.171608 -11527,5408:219,-89,-41,0,0,0.170879 -11528,5408:218,-88,-41,0,0,0.169847 -11529,5408:217,-87,-41,0,0,0.169298 -11530,5408:216,-86,-41,0,0,0.169182 -11531,5408:215,-85,-41,0,0,0.168922 -11532,5408:114,-84,-41,0,0,0.168548 -11533,5408:113,-83,-41,0,0,0.167485 -11534,5408:112,-82,-41,0,0,0.174874 -11535,5408:111,-81,-41,0,0,0.1744 -11536,5408:110,-80,-41,0,0,0.177949 -11537,5407:219,-79,-41,0,0,0.179669 -11538,5407:218,-78,-41,0,0,0.175112 -11539,5407:217,-77,-41,0,0,0.179942 -11540,5407:216,-76,-41,0,0,0.194009 -11541,5407:215,-75,-41,0,0,0.210104 -11542,5406:219,-69,-41,0,0,0.204515 -11543,5406:218,-68,-41,0,0,0.183671 -11544,5406:217,-67,-41,0,0,0.180139 -11545,5406:216,-66,-41,0,0,0.178883 -11546,5406:215,-65,-41,0,0,0.17587 -11547,5406:114,-64,-41,0,0,0.174371 -11548,5406:113,-63,-41,0,0,0.174178 -11549,5406:112,-62,-41,0,0,0.176825 -11550,5406:111,-61,-41,0,0,0.189077 -11551,5406:110,-60,-41,0,0,0.195588 -11552,5405:219,-59,-41,0,0,0.194057 -11553,5405:218,-58,-41,0,0,0.18128 -11554,5405:217,-57,-41,0,0,0.169891 -11555,5405:216,-56,-41,0,0,0.162279 -11556,5405:215,-55,-41,0,0,0.157096 -11557,5405:114,-54,-41,0,0,0.148454 -11558,5405:113,-53,-41,0,0,0.146413 -11559,5405:112,-52,-41,0,0,0.148791 -11560,5405:111,-51,-41,0,0,0.149182 -11561,5405:110,-50,-41,0,0,0.140456 -11562,5404:219,-49,-41,0,0,0.137091 -11563,5404:218,-48,-41,0,0,0.135784 -11564,5404:217,-47,-41,0,0,0.140121 -11565,5404:216,-46,-41,0,0,0.138679 -11566,5404:215,-45,-41,0,0,0.137407 -11567,5404:114,-44,-41,0,0,0.137055 -11568,5404:113,-43,-41,0,0,0.138201 -11569,5404:112,-42,-41,0,0,0.135062 -11570,5404:111,-41,-41,0,0,0.131244 -11571,5404:110,-40,-41,0,0,0.125181 -11572,5403:219,-39,-41,0,0,0.139799 -11573,5403:218,-38,-41,0,0,0.145555 -11574,5403:217,-37,-41,0,0,0.146683 -11575,5403:216,-36,-41,0,0,0.141788 -11576,5403:215,-35,-41,0,0,0.130577 -11577,5403:114,-34,-41,0,0,0.131513 -11578,5403:113,-33,-41,0,0,0.133688 -11579,5403:112,-32,-41,0,0,0.127849 -11580,5403:111,-31,-41,0,0,0.130228 -11581,5403:110,-30,-41,0,0,0.133177 -11582,5402:219,-29,-41,0,0,0.131631 -11583,5402:218,-28,-41,0,0,0.134654 -11584,5402:217,-27,-41,0,0,0.131314 -11585,5402:216,-26,-41,0,0,0.126129 -11586,5402:215,-25,-41,0,0,0.130787 -11587,5402:114,-24,-41,0,0,0.131314 -11588,5402:113,-23,-41,0,0,0.133533 -11589,5402:112,-22,-41,0,0,0.133581 -11590,5402:111,-21,-41,0,0,0.126333 -11591,5402:110,-20,-41,0,0,0.12562 -11592,5401:219,-19,-41,0,0,0.125542 -11593,5401:218,-18,-41,0,0,0.124083 -11594,5401:217,-17,-41,0,0,0.135002 -11595,5401:216,-16,-41,0,0,0.131291 -11596,5401:215,-15,-41,0,0,0.129381 -11597,5401:114,-14,-41,0,0,0.133284 -11598,5401:113,-13,-41,0,0,0.139011 -11599,5401:112,-12,-41,0,0,0.135543 -11600,5401:111,-11,-41,0,0,0.13156 -11601,5401:110,-10,-41,0,0,0.129103 -11602,5400:219,-9,-41,0,0,0.11908 -11603,5400:218,-8,-41,0,0,0.107301 -11604,5400:217,-7,-41,0,0,0.106839 -11605,5400:216,-6,-41,0,0,0.101913 -11606,5400:215,-5,-41,0,0,0.101781 -11607,5400:114,-4,-41,0,0,0.103523 -11608,5400:113,-3,-41,0,0,0.11121 -11609,5400:112,-2,-41,0,0,0.107242 -11610,5400:111,-1,-41,0,0,0.109255 -11611,3400:111,0,-41,0,0,0.11175 -11612,3400:111,1,-41,0,0,0.102886 -11613,3400:112,2,-41,0,0,0.102715 -11614,3400:113,3,-41,0,0,0.103332 -11615,3400:114,4,-41,0,0,0.101117 -11616,3400:215,5,-41,0,0,0.107104 -11617,3400:216,6,-41,0,0,0.122329 -11618,3400:217,7,-41,0,0,0.108796 -11619,3400:218,8,-41,0,0,0.112086 -11620,3400:219,9,-41,0,0,0.115852 -11621,3401:110,10,-41,0,0,0.115464 -11622,3401:111,11,-41,0,0,0.109405 -11623,3401:112,12,-41,0,0,0.111018 -11624,3401:113,13,-41,0,0,0.108032 -11625,3401:114,14,-41,0,0,0.101631 -11626,3401:215,15,-41,0,0,0.104644 -11627,3401:216,16,-41,0,0,0.113733 -11628,3401:217,17,-41,0,0,0.113702 -11629,3401:218,18,-41,0,0,0.113992 -11630,3401:219,19,-41,0,0,0.103848 -11631,3402:110,20,-41,0,0,0.101014 -11632,3402:111,21,-41,0,0,0.104653 -11633,3402:112,22,-41,0,0,0.114658 -11634,3402:113,23,-41,0,0,0.102526 -11635,3402:114,24,-41,0,0,0.101285 -11636,3402:215,25,-41,0,0,0.106869 -11637,3402:216,26,-41,0,0,0.104211 -11638,3402:217,27,-41,0,0,0.117259 -11639,3402:218,28,-41,0,0,0.127323 -11640,3402:219,29,-41,0,0,0.110602 -11641,3403:110,30,-41,0,0,0.12088 -11642,3403:111,31,-41,0,0,0.116338 -11643,3403:112,32,-41,0,0,0.109166 -11644,3403:113,33,-41,0,0,0.10502 -11645,3403:114,34,-41,0,0,0.106301 -11646,3403:215,35,-41,0,0,0.110572 -11647,3403:216,36,-41,0,0,0.111403 -11648,3403:217,37,-41,0,0,0.107932 -11649,3403:218,38,-41,0,0,0.110865 -11650,3403:219,39,-41,0,0,0.115884 -11651,3404:110,40,-41,0,0,0.108736 -11652,3404:111,41,-41,0,0,0.108597 -11653,3404:112,42,-41,0,0,0.109887 -11654,3404:113,43,-41,0,0,0.110471 -11655,3404:114,44,-41,0,0,0.115348 -11656,3404:215,45,-41,0,0,0.117121 -11657,3404:216,46,-41,0,0,0.116274 -11658,3404:217,47,-41,0,0,0.112036 -11659,3404:218,48,-41,0,0,0.11033 -11660,3404:219,49,-41,0,0,0.114637 -11661,3405:110,50,-41,0,0,0.111801 -11662,3405:111,51,-41,0,0,0.113216 -11663,3405:112,52,-41,0,0,0.114242 -11664,3405:113,53,-41,0,0,0.114335 -11665,3405:114,54,-41,0,0,0.115516 -11666,3405:215,55,-41,0,0,0.113495 -11667,3405:216,56,-41,0,0,0.110653 -11668,3405:217,57,-41,0,0,0.114387 -11669,3405:218,58,-41,0,0,0.11224 -11670,3405:219,59,-41,0,0,0.119155 -11671,3406:110,60,-41,0,0,0.118509 -11672,3406:111,61,-41,0,0,0.117398 -11673,3406:112,62,-41,0,0,0.116909 -11674,3406:113,63,-41,0,0,0.115632 -11675,3406:114,64,-41,0,0,0.113909 -11676,3406:215,65,-41,0,0,0.11301 -11677,3406:216,66,-41,0,0,0.111719 -11678,3406:217,67,-41,0,0,0.108906 -11679,3406:218,68,-41,0,0,0.109085 -11680,3406:219,69,-41,0,0,0.109185 -11681,3407:110,70,-41,0,0,0.109095 -11682,3407:111,71,-41,0,0,0.107114 -11683,3407:112,72,-41,0,0,0.107282 -11684,3407:114,74,-41,0,0,0.107291 -11685,3407:215,75,-41,0,0,0.103123 -11686,3407:216,76,-41,0,0,0.0969009 -11687,3407:217,77,-41,0,0,0.11033 -11688,3407:218,78,-41,0,0,0.113826 -11689,3407:219,79,-41,0,0,0.11034 -11690,3408:110,80,-41,0,0,0.141851 -11691,3408:111,81,-41,0,0,0.14493 -11692,3408:112,82,-41,0,0,0.143131 -11693,3408:113,83,-41,0,0,0.138152 -11694,3408:114,84,-41,0,0,0.141976 -11695,3408:215,85,-41,0,0,0.14649 -11696,3408:216,86,-41,0,0,0.144828 -11697,3408:217,87,-41,0,0,0.141214 -11698,3408:218,88,-41,0,0,0.143409 -11699,3408:219,89,-41,0,0,0.155133 -11700,3409:110,90,-41,0,0,0.152911 -11701,3409:111,91,-41,0,0,0.161137 -11702,3409:112,92,-41,0,0,0.153444 -11703,3409:113,93,-41,0,0,0.14094 -11704,3409:114,94,-41,0,0,0.146914 -11705,3409:215,95,-41,0,0,0.151399 -11706,3409:216,96,-41,0,0,0.147779 -11707,3409:217,97,-41,0,0,0.144485 -11708,3409:218,98,-41,0,0,0.140828 -11709,3409:219,99,-41,0,0,0.138323 -11710,3410:110,100,-41,0,0,0.138789 -11711,3410:111,101,-41,0,0,0.139121 -11712,3410:112,102,-41,0,0,0.137176 -11713,3410:113,103,-41,0,0,0.129473 -11714,3410:114,104,-41,0,0,0.127918 -11715,3410:215,105,-41,0,0,0.130566 -11716,3410:216,106,-41,0,0,0.127929 -11717,3410:217,107,-41,0,0,0.123815 -11718,3410:218,108,-41,0,0,0.134415 -11719,3410:219,109,-41,0,0,0.134403 -11720,3411:110,110,-41,0,0,0.129172 -11721,3411:111,111,-41,0,0,0.129462 -11722,3411:112,112,-41,0,0,0.132952 -11723,3411:113,113,-41,0,0,0.139207 -11724,3411:114,114,-41,0,0,0.141988 -11725,3411:215,115,-41,0,0,0.147379 -11726,3411:216,116,-41,0,0,0.154206 -11727,3411:217,117,-41,0,0,0.148401 -11728,3411:218,118,-41,0,0,0.142879 -11729,3411:219,119,-41,0,0,0.143396 -11730,3412:110,120,-41,0,0,0.148376 -11731,3412:111,121,-41,0,0,0.163259 -11732,3412:112,122,-41,0,0,0.168533 -11733,3412:113,123,-41,0,0,0.166143 -11734,3412:114,124,-41,0,0,0.1579 -11735,3412:215,125,-41,0,0,0.158201 -11736,3412:216,126,-41,0,0,0.159601 -11737,3412:217,127,-41,0,0,0.170021 -11738,3412:218,128,-41,0,0,0.185062 -11739,3412:219,129,-41,0,0,0.17917 -11740,3413:110,130,-41,0,0,0.178235 -11741,3413:111,131,-41,0,0,0.177769 -11742,3413:112,132,-41,0,0,0.177019 -11743,3413:113,133,-41,0,0,0.174578 -11744,3413:114,134,-41,0,0,0.173868 -11745,3413:215,135,-41,0,0,0.171432 -11746,3413:216,136,-41,0,0,0.168289 -11747,3413:217,137,-41,0,0,0.16368 -11748,3413:218,138,-41,0,0,0.162447 -11749,3413:219,139,-41,0,0,0.171432 -11750,3414:110,140,-41,0,0,0.172002 -11751,3414:111,141,-41,0,0,0.197926 -11752,3414:112,142,-41,0,0,0.2025 -11753,3414:113,143,-41,0,0,0.200088 -11754,3414:114,144,-41,0,0,0.178657 -11755,3414:215,145,-41,0,0,0.168663 -11756,3414:216,146,-41,0,0,0.180412 -11757,3414:217,147,-41,0,0,0.192823 -11758,3414:218,148,-41,0,0,0.198481 -11759,3414:219,149,-41,0,0,0.190721 -11760,3415:110,150,-41,0,0,0.186756 -11761,3415:111,151,-41,0,0,0.17272 -11762,3415:112,152,-41,0,0,0.172823 -11763,3415:113,153,-41,0,0,0.189771 -11764,3415:114,154,-41,0,0,0.217599 -11765,3415:215,155,-41,0,0,0.217827 -11766,3415:216,156,-41,0,0,0.206208 -11767,3415:217,157,-41,0,0,0.180184 -11768,3415:218,158,-41,0,0,0.196446 -11769,3415:219,159,-41,0,0,0.204749 -11770,3416:110,160,-41,0,0,0.198907 -11771,3416:111,161,-41,0,0,0.200763 -11772,3416:112,162,-41,0,0,0.201903 -11773,3416:113,163,-41,0,0,0.191913 -11774,3416:114,164,-41,0,0,0.191388 -11775,3416:215,165,-41,0,0,0.193575 -11776,3416:216,166,-41,0,0,0.196738 -11777,3416:217,167,-41,0,0,0.194314 -11778,3416:218,168,-41,0,0,0.192583 -11779,3416:219,169,-41,0,0,0.186881 -11780,3417:110,170,-41,0,0,0.185263 -11781,3417:111,171,-41,0,0,0.182626 -11782,3417:112,172,-41,0,0,0.181524 -11783,3417:113,173,-41,0,0,0.181829 -11784,3417:114,174,-41,0,0,0.181799 -11785,3417:215,175,-41,0,0,0.182335 -11786,3417:216,176,-41,0,0,0.177109 -11787,3417:217,177,-41,0,0,0.172794 -11788,3417:218,178,-41,0,0,0.172765 -11789,3417:219,179,-41,0,0,0.173603 -11790,3418:110,180,-41,0,0,0.173191 -11791,5418:100,-180,-40,0,0,0.180336 -11792,5417:209,-179,-40,0,0,0.173706 -11793,5417:208,-178,-40,0,0,0.177379 -11794,5417:207,-177,-40,0,0,0.200533 -11795,5417:206,-176,-40,0,0,0.193752 -11796,5417:205,-175,-40,0,0,0.191467 -11797,5417:104,-174,-40,0,0,0.189518 -11798,5417:103,-173,-40,0,0,0.191801 -11799,5417:102,-172,-40,0,0,0.209984 -11800,5417:101,-171,-40,0,0,0.210206 -11801,5417:100,-170,-40,0,0,0.206596 -11802,5416:209,-169,-40,0,0,0.219002 -11803,5416:208,-168,-40,0,0,0.225466 -11804,5416:207,-167,-40,0,0,0.227048 -11805,5416:206,-166,-40,0,0,0.214883 -11806,5416:205,-165,-40,0,0,0.198498 -11807,5416:104,-164,-40,0,0,0.208675 -11808,5416:103,-163,-40,0,0,0.218984 -11809,5416:102,-162,-40,0,0,0.220764 -11810,5416:101,-161,-40,0,0,0.218826 -11811,5416:100,-160,-40,0,0,0.22133 -11812,5415:209,-159,-40,0,0,0.225968 -11813,5415:208,-158,-40,0,0,0.233826 -11814,5415:207,-157,-40,0,0,0.237844 -11815,5415:206,-156,-40,0,0,0.230875 -11816,5415:205,-155,-40,0,0,0.23042 -11817,5415:104,-154,-40,0,0,0.227355 -11818,5415:103,-153,-40,0,0,0.229873 -11819,5415:102,-152,-40,0,0,0.2346 -11820,5415:101,-151,-40,0,0,0.233771 -11821,5415:100,-150,-40,0,0,0.23632 -11822,5414:209,-149,-40,0,0,0.235431 -11823,5414:208,-148,-40,0,0,0.233035 -11824,5414:207,-147,-40,0,0,0.233587 -11825,5414:206,-146,-40,0,0,0.235931 -11826,5414:205,-145,-40,0,0,0.234213 -11827,5414:104,-144,-40,0,0,0.232797 -11828,5414:103,-143,-40,0,0,0.230912 -11829,5414:102,-142,-40,0,0,0.231022 -11830,5414:101,-141,-40,0,0,0.235505 -11831,5414:100,-140,-40,0,0,0.234286 -11832,5413:209,-139,-40,0,0,0.231551 -11833,5413:208,-138,-40,0,0,0.230912 -11834,5413:207,-137,-40,0,0,0.229601 -11835,5413:206,-136,-40,0,0,0.228132 -11836,5413:205,-135,-40,0,0,0.227662 -11837,5413:104,-134,-40,0,0,0.225861 -11838,5413:103,-133,-40,0,0,0.223498 -11839,5413:102,-132,-40,0,0,0.223498 -11840,5413:101,-131,-40,0,0,0.222217 -11841,5413:100,-130,-40,0,0,0.222057 -11842,5412:209,-129,-40,0,0,0.221968 -11843,5412:208,-128,-40,0,0,0.221383 -11844,5412:207,-127,-40,0,0,0.220499 -11845,5412:206,-126,-40,0,0,0.220658 -11846,5412:205,-125,-40,0,0,0.218405 -11847,5412:104,-124,-40,0,0,0.213931 -11848,5412:103,-123,-40,0,0,0.205436 -11849,5412:102,-122,-40,0,0,0.204766 -11850,5412:101,-121,-40,0,0,0.204398 -11851,5412:100,-120,-40,0,0,0.203364 -11852,5411:209,-119,-40,0,0,0.199169 -11853,5411:208,-118,-40,0,0,0.200846 -11854,5411:207,-117,-40,0,0,0.197796 -11855,5411:206,-116,-40,0,0,0.19858 -11856,5411:205,-115,-40,0,0,0.203031 -11857,5411:104,-114,-40,0,0,0.202799 -11858,5411:103,-113,-40,0,0,0.199284 -11859,5411:102,-112,-40,0,0,0.192599 -11860,5411:101,-111,-40,0,0,0.186055 -11861,5411:100,-110,-40,0,0,0.189487 -11862,5410:209,-109,-40,0,0,0.19034 -11863,5410:208,-108,-40,0,0,0.183948 -11864,5410:207,-107,-40,0,0,0.187272 -11865,5410:206,-106,-40,0,0,0.19034 -11866,5410:205,-105,-40,0,0,0.187131 -11867,5410:104,-104,-40,0,0,0.186866 -11868,5410:103,-103,-40,0,0,0.183271 -11869,5410:102,-102,-40,0,0,0.181723 -11870,5410:101,-101,-40,0,0,0.184319 -11871,5410:100,-100,-40,0,0,0.183733 -11872,5409:209,-99,-40,0,0,0.180412 -11873,5409:208,-98,-40,0,0,0.179669 -11874,5409:207,-97,-40,0,0,0.177529 -11875,5409:206,-96,-40,0,0,0.1769 -11876,5409:205,-95,-40,0,0,0.175498 -11877,5409:104,-94,-40,0,0,0.177934 -11878,5409:103,-93,-40,0,0,0.179049 -11879,5409:102,-92,-40,0,0,0.177364 -11880,5409:101,-91,-40,0,0,0.176795 -11881,5409:100,-90,-40,0,0,0.175989 -11882,5408:209,-89,-40,0,0,0.176123 -11883,5408:208,-88,-40,0,0,0.176108 -11884,5408:207,-87,-40,0,0,0.176975 -11885,5408:206,-86,-40,0,0,0.173441 -11886,5408:205,-85,-40,0,0,0.174578 -11887,5408:104,-84,-40,0,0,0.173323 -11888,5408:103,-83,-40,0,0,0.17446 -11889,5408:102,-82,-40,0,0,0.17911 -11890,5408:101,-81,-40,0,0,0.185604 -11891,5408:100,-80,-40,0,0,0.185511 -11892,5407:209,-79,-40,0,0,0.184937 -11893,5407:208,-78,-40,0,0,0.182641 -11894,5407:207,-77,-40,0,0,0.183102 -11895,5407:206,-76,-40,0,0,0.20197 -11896,5406:207,-67,-40,0,0,0.206074 -11897,5406:206,-66,-40,0,0,0.195621 -11898,5406:205,-65,-40,0,0,0.190087 -11899,5406:104,-64,-40,0,0,0.185465 -11900,5406:103,-63,-40,0,0,0.186912 -11901,5406:102,-62,-40,0,0,0.18671 -11902,5406:101,-61,-40,0,0,0.197861 -11903,5406:100,-60,-40,0,0,0.196203 -11904,5405:209,-59,-40,0,0,0.188526 -11905,5405:208,-58,-40,0,0,0.182197 -11906,5405:207,-57,-40,0,0,0.174386 -11907,5405:206,-56,-40,0,0,0.166755 -11908,5405:205,-55,-40,0,0,0.16072 -11909,5405:104,-54,-40,0,0,0.149822 -11910,5405:103,-53,-40,0,0,0.152512 -11911,5405:102,-52,-40,0,0,0.153364 -11912,5405:101,-51,-40,0,0,0.15749 -11913,5405:100,-50,-40,0,0,0.144332 -11914,5404:209,-49,-40,0,0,0.146696 -11915,5404:208,-48,-40,0,0,0.144421 -11916,5404:207,-47,-40,0,0,0.146195 -11917,5404:206,-46,-40,0,0,0.153791 -11918,5404:205,-45,-40,0,0,0.149299 -11919,5404:104,-44,-40,0,0,0.152127 -11920,5404:103,-43,-40,0,0,0.144802 -11921,5404:102,-42,-40,0,0,0.139134 -11922,5404:101,-41,-40,0,0,0.134559 -11923,5404:100,-40,-40,0,0,0.132609 -11924,5403:209,-39,-40,0,0,0.142439 -11925,5403:208,-38,-40,0,0,0.146323 -11926,5403:207,-37,-40,0,0,0.14658 -11927,5403:206,-36,-40,0,0,0.141064 -11928,5403:205,-35,-40,0,0,0.140146 -11929,5403:104,-34,-40,0,0,0.140295 -11930,5403:103,-33,-40,0,0,0.138152 -11931,5403:102,-32,-40,0,0,0.137712 -11932,5403:101,-31,-40,0,0,0.138655 -11933,5403:100,-30,-40,0,0,0.138348 -11934,5402:209,-29,-40,0,0,0.138458 -11935,5402:208,-28,-40,0,0,0.143952 -11936,5402:207,-27,-40,0,0,0.141763 -11937,5402:206,-26,-40,0,0,0.13588 -11938,5402:205,-25,-40,0,0,0.139097 -11939,5402:104,-24,-40,0,0,0.133486 -11941,5402:102,-22,-40,0,0,0.143712 -11942,5402:101,-21,-40,0,0,0.142289 -11943,5402:100,-20,-40,0,0,0.143333 -11944,5401:209,-19,-40,0,0,0.142577 -11945,5401:208,-18,-40,0,0,0.136788 -11946,5401:207,-17,-40,0,0,0.134846 -11947,5401:206,-16,-40,0,0,0.147766 -11948,5401:205,-15,-40,0,0,0.152671 -11949,5401:104,-14,-40,0,0,0.145414 -11950,5401:103,-13,-40,0,0,0.144041 -11951,5401:102,-12,-40,0,0,0.136654 -11952,5401:101,-11,-40,0,0,0.126152 -11953,5401:100,-10,-40,0,0,0.126708 -11954,5400:209,-9,-40,0,0,0.12223 -11955,5400:208,-8,-40,0,0,0.114481 -11956,5400:207,-7,-40,0,0,0.115768 -11957,5400:206,-6,-40,0,0,0.117643 -11958,5400:205,-5,-40,0,0,0.12287 -11959,5400:104,-4,-40,0,0,0.128907 -11960,5400:103,-3,-40,0,0,0.127494 -11961,5400:102,-2,-40,0,0,0.118606 -11962,5400:101,-1,-40,0,0,0.125847 -11963,3400:101,0,-40,0,0,0.143927 -11964,3400:101,1,-40,0,0,0.151756 -11965,3400:102,2,-40,0,0,0.144663 -11966,3400:103,3,-40,0,0,0.131877 -11967,3400:104,4,-40,0,0,0.123904 -11968,3400:205,5,-40,0,0,0.12027 -11969,3400:206,6,-40,0,0,0.125971 -11970,3400:207,7,-40,0,0,0.127186 -11971,3400:208,8,-40,0,0,0.112128 -11972,3400:209,9,-40,0,0,0.121296 -11973,3401:100,10,-40,0,0,0.122119 -11974,3401:101,11,-40,0,0,0.124519 -11975,3401:102,12,-40,0,0,0.124765 -11976,3401:103,13,-40,0,0,0.124664 -11977,3401:104,14,-40,0,0,0.119944 -11978,3401:205,15,-40,0,0,0.121801 -11979,3401:206,16,-40,0,0,0.136122 -11980,3401:207,17,-40,0,0,0.133711 -11981,3401:208,18,-40,0,0,0.117921 -11982,3401:209,19,-40,0,0,0.118413 -11983,3402:100,20,-40,0,0,0.126039 -11984,3402:101,21,-40,0,0,0.119501 -11985,3402:102,22,-40,0,0,0.123871 -11986,3402:103,23,-40,0,0,0.114961 -11987,3402:104,24,-40,0,0,0.118918 -11988,3402:205,25,-40,0,0,0.123971 -11989,3402:206,26,-40,0,0,0.120738 -11990,3402:207,27,-40,0,0,0.116475 -11991,3402:208,28,-40,0,0,0.126492 -11992,3402:209,29,-40,0,0,0.119619 -11993,3403:100,30,-40,0,0,0.11538 -11994,3403:101,31,-40,0,0,0.11744 -11995,3403:102,32,-40,0,0,0.123037 -11996,3403:103,33,-40,0,0,0.121658 -11997,3403:104,34,-40,0,0,0.114106 -11998,3403:205,35,-40,0,0,0.12111 -11999,3403:206,36,-40,0,0,0.120096 -12000,3403:207,37,-40,0,0,0.115495 -12001,3403:208,38,-40,0,0,0.110481 -12002,3403:209,39,-40,0,0,0.119544 -12003,3404:100,40,-40,0,0,0.126231 -12004,3404:101,41,-40,0,0,0.125655 -12005,3404:102,42,-40,0,0,0.122054 -12006,3404:103,43,-40,0,0,0.119641 -12007,3404:104,44,-40,0,0,0.11909 -12008,3404:205,45,-40,0,0,0.117121 -12009,3404:206,46,-40,0,0,0.114856 -12010,3404:207,47,-40,0,0,0.11334 -12011,3404:208,48,-40,0,0,0.124418 -12012,3404:209,49,-40,0,0,0.125824 -12013,3405:100,50,-40,0,0,0.118918 -12014,3405:101,51,-40,0,0,0.119274 -12015,3405:102,52,-40,0,0,0.119522 -12016,3405:103,53,-40,0,0,0.11881 -12017,3405:104,54,-40,0,0,0.11743 -12018,3405:205,55,-40,0,0,0.119684 -12019,3405:206,56,-40,0,0,0.119188 -12020,3405:207,57,-40,0,0,0.117942 -12021,3405:208,58,-40,0,0,0.11881 -12022,3405:209,59,-40,0,0,0.120053 -12023,3406:100,60,-40,0,0,0.121537 -12024,3406:101,61,-40,0,0,0.12234 -12025,3406:102,62,-40,0,0,0.119977 -12026,3406:103,63,-40,0,0,0.116179 -12027,3406:104,64,-40,0,0,0.115642 -12028,3406:205,65,-40,0,0,0.113774 -12029,3406:206,66,-40,0,0,0.112712 -12030,3406:207,67,-40,0,0,0.114606 -12031,3406:208,68,-40,0,0,0.11538 -12032,3406:209,69,-40,0,0,0.117622 -12033,3407:100,70,-40,0,0,0.115212 -12034,3407:101,71,-40,0,0,0.111485 -12035,3407:102,72,-40,0,0,0.110855 -12036,3407:104,74,-40,0,0,0.107262 -12037,3407:205,75,-40,0,0,0.11364 -12038,3407:206,76,-40,0,0,0.1301 -12039,3407:207,77,-40,0,0,0.138201 -12040,3407:208,78,-40,0,0,0.140245 -12041,3407:209,79,-40,0,0,0.133747 -12042,3408:100,80,-40,0,0,0.14567 -12043,3408:101,81,-40,0,0,0.142502 -12044,3408:102,82,-40,0,0,0.138262 -12045,3408:103,83,-40,0,0,0.155308 -12046,3408:104,84,-40,0,0,0.154407 -12047,3408:205,85,-40,0,0,0.144028 -12048,3408:206,86,-40,0,0,0.140418 -12049,3408:207,87,-40,0,0,0.141413 -12050,3408:208,88,-40,0,0,0.166656 -12051,3408:209,89,-40,0,0,0.174282 -12052,3409:100,90,-40,0,0,0.157791 -12053,3409:101,91,-40,0,0,0.159587 -12054,3409:102,92,-40,0,0,0.157395 -12055,3409:103,93,-40,0,0,0.155483 -12056,3409:104,94,-40,0,0,0.159822 -12057,3409:205,95,-40,0,0,0.159381 -12058,3409:206,96,-40,0,0,0.152871 -12059,3409:207,97,-40,0,0,0.153084 -12060,3409:208,98,-40,0,0,0.153871 -12061,3409:209,99,-40,0,0,0.151413 -12062,3410:100,100,-40,0,0,0.138949 -12063,3410:101,101,-40,0,0,0.135422 -12064,3410:102,102,-40,0,0,0.135122 -12065,3410:103,103,-40,0,0,0.136231 -12066,3410:104,104,-40,0,0,0.139725 -12067,3410:205,105,-40,0,0,0.142452 -12068,3410:206,106,-40,0,0,0.140629 -12069,3410:207,107,-40,0,0,0.132278 -12070,3410:208,108,-40,0,0,0.139097 -12071,3410:209,109,-40,0,0,0.140022 -12072,3411:100,110,-40,0,0,0.138961 -12073,3411:101,111,-40,0,0,0.142038 -12074,3411:102,112,-40,0,0,0.139787 -12075,3411:103,113,-40,0,0,0.148414 -12076,3411:104,114,-40,0,0,0.151836 -12077,3411:205,115,-40,0,0,0.152353 -12078,3411:206,116,-40,0,0,0.153551 -12079,3411:207,117,-40,0,0,0.153257 -12080,3411:208,118,-40,0,0,0.159037 -12081,3411:209,119,-40,0,0,0.161151 -12082,3412:100,120,-40,0,0,0.166584 -12083,3412:101,121,-40,0,0,0.186226 -12084,3412:102,122,-40,0,0,0.178853 -12085,3412:103,123,-40,0,0,0.175052 -12086,3412:104,124,-40,0,0,0.170864 -12087,3412:205,125,-40,0,0,0.168922 -12088,3412:206,126,-40,0,0,0.166043 -12089,3412:207,127,-40,0,0,0.184907 -12090,3412:208,128,-40,0,0,0.187397 -12091,3412:209,129,-40,0,0,0.187867 -12092,3413:100,130,-40,0,0,0.188243 -12093,3413:101,131,-40,0,0,0.19161 -12094,3413:102,132,-40,0,0,0.192599 -12095,3413:103,133,-40,0,0,0.189187 -12096,3413:104,134,-40,0,0,0.181906 -12097,3413:205,135,-40,0,0,0.188118 -12098,3413:206,136,-40,0,0,0.191181 -12099,3413:207,137,-40,0,0,0.192791 -12100,3413:208,138,-40,0,0,0.183563 -12101,3413:209,139,-40,0,0,0.170587 -12102,3414:100,140,-40,0,0,0.187491 -12103,3414:101,141,-40,0,0,0.199202 -12104,3414:102,142,-40,0,0,0.197421 -12105,3414:103,143,-40,0,0,0.186523 -12106,3414:104,144,-40,0,0,0.170907 -12107,3414:205,145,-40,0,0,0.178325 -12108,3414:206,146,-40,0,0,0.183333 -12109,3414:207,147,-40,0,0,0.198498 -12110,3414:208,148,-40,0,0,0.205067 -12111,3414:209,149,-40,0,0,0.203364 -12112,3415:100,150,-40,0,0,0.196349 -12113,3415:101,151,-40,0,0,0.191181 -12114,3415:102,152,-40,0,0,0.187084 -12115,3415:103,153,-40,0,0,0.215977 -12116,3415:104,154,-40,0,0,0.211094 -12117,3415:205,155,-40,0,0,0.207794 -12118,3415:206,156,-40,0,0,0.215838 -12119,3415:207,157,-40,0,0,0.209933 -12120,3415:208,158,-40,0,0,0.208031 -12121,3415:209,159,-40,0,0,0.205788 -12122,3416:100,160,-40,0,0,0.203314 -12123,3416:101,161,-40,0,0,0.202799 -12124,3416:102,162,-40,0,0,0.200846 -12125,3416:103,163,-40,0,0,0.200203 -12126,3416:104,164,-40,0,0,0.200598 -12127,3416:205,165,-40,0,0,0.198383 -12128,3416:206,166,-40,0,0,0.202019 -12129,3416:207,167,-40,0,0,0.195362 -12130,3416:208,168,-40,0,0,0.193624 -12131,3416:209,169,-40,0,0,0.190451 -12132,3417:100,170,-40,0,0,0.190467 -12133,3417:101,171,-40,0,0,0.189045 -12134,3417:102,172,-40,0,0,0.187569 -12135,3417:103,173,-40,0,0,0.185884 -12136,3417:104,174,-40,0,0,0.184783 -12137,3417:205,175,-40,0,0,0.184535 -12138,3417:206,176,-40,0,0,0.182396 -12139,3417:207,177,-40,0,0,0.179593 -12140,3417:208,178,-40,0,0,0.179987 -12141,3417:209,179,-40,0,0,0.180033 -12142,3418:100,180,-40,0,0,0.180336 -12143,5318:390,-180,-39,0,0,0.18531 -12144,5317:499,-179,-39,0,0,0.177694 -12145,5317:498,-178,-39,0,0,0.179336 -12146,5317:497,-177,-39,0,0,0.204515 -12147,5317:496,-176,-39,0,0,0.211934 -12148,5317:495,-175,-39,0,0,0.209711 -12149,5317:394,-174,-39,0,0,0.205301 -12150,5317:393,-173,-39,0,0,0.216186 -12151,5317:392,-172,-39,0,0,0.224856 -12152,5317:391,-171,-39,0,0,0.218072 -12153,5317:390,-170,-39,0,0,0.216952 -12154,5316:499,-169,-39,0,0,0.222644 -12155,5316:498,-168,-39,0,0,0.228222 -12156,5316:497,-167,-39,0,0,0.227138 -12157,5316:496,-166,-39,0,0,0.222608 -12158,5316:495,-165,-39,0,0,0.216848 -12159,5316:394,-164,-39,0,0,0.221614 -12160,5316:393,-163,-39,0,0,0.224087 -12161,5316:392,-162,-39,0,0,0.232999 -12162,5316:391,-161,-39,0,0,0.24431 -12163,5316:390,-160,-39,0,0,0.240367 -12164,5315:499,-159,-39,0,0,0.233238 -12165,5315:498,-158,-39,0,0,0.239113 -12166,5315:497,-157,-39,0,0,0.237881 -12167,5315:496,-156,-39,0,0,0.243155 -12168,5315:495,-155,-39,0,0,0.235154 -12169,5315:394,-154,-39,0,0,0.234194 -12170,5315:393,-153,-39,0,0,0.234858 -12171,5315:392,-152,-39,0,0,0.238515 -12172,5315:391,-151,-39,0,0,0.242833 -12173,5315:390,-150,-39,0,0,0.243401 -12174,5314:499,-149,-39,0,0,0.239973 -12175,5314:498,-148,-39,0,0,0.241269 -12176,5314:497,-147,-39,0,0,0.244728 -12177,5314:496,-146,-39,0,0,0.244291 -12178,5314:495,-145,-39,0,0,0.241871 -12179,5314:394,-144,-39,0,0,0.242192 -12180,5314:393,-143,-39,0,0,0.242381 -12181,5314:392,-142,-39,0,0,0.242267 -12182,5314:391,-141,-39,0,0,0.242211 -12183,5314:390,-140,-39,0,0,0.239356 -12184,5313:499,-139,-39,0,0,0.237788 -12185,5313:498,-138,-39,0,0,0.238049 -12186,5313:497,-137,-39,0,0,0.235801 -12187,5313:496,-136,-39,0,0,0.232797 -12188,5313:495,-135,-39,0,0,0.231551 -12189,5313:394,-134,-39,0,0,0.229111 -12190,5313:393,-133,-39,0,0,0.230565 -12191,5313:392,-132,-39,0,0,0.231643 -12192,5313:391,-131,-39,0,0,0.230383 -12193,5313:390,-130,-39,0,0,0.230347 -12194,5312:499,-129,-39,0,0,0.229892 -12195,5312:498,-128,-39,0,0,0.230165 -12196,5312:497,-127,-39,0,0,0.230274 -12197,5312:496,-126,-39,0,0,0.229328 -12198,5312:495,-125,-39,0,0,0.225933 -12199,5312:394,-124,-39,0,0,0.219952 -12200,5312:393,-123,-39,0,0,0.215369 -12201,5312:392,-122,-39,0,0,0.21556 -12202,5312:391,-121,-39,0,0,0.213327 -12203,5312:390,-120,-39,0,0,0.216047 -12204,5311:499,-119,-39,0,0,0.218668 -12205,5311:498,-118,-39,0,0,0.217145 -12206,5311:497,-117,-39,0,0,0.215264 -12207,5311:496,-116,-39,0,0,0.212569 -12208,5311:495,-115,-39,0,0,0.206141 -12209,5311:394,-114,-39,0,0,0.200105 -12210,5311:393,-113,-39,0,0,0.197438 -12211,5311:392,-112,-39,0,0,0.194717 -12212,5311:391,-111,-39,0,0,0.203481 -12213,5311:390,-110,-39,0,0,0.204917 -12214,5310:499,-109,-39,0,0,0.200549 -12215,5310:498,-108,-39,0,0,0.194717 -12216,5310:497,-107,-39,0,0,0.19356 -12217,5310:496,-106,-39,0,0,0.196073 -12218,5310:495,-105,-39,0,0,0.195863 -12219,5310:394,-104,-39,0,0,0.192935 -12220,5310:393,-103,-39,0,0,0.190562 -12221,5310:392,-102,-39,0,0,0.187178 -12222,5310:391,-101,-39,0,0,0.189282 -12223,5310:390,-100,-39,0,0,0.187992 -12224,5309:499,-99,-39,0,0,0.18435 -12225,5309:498,-98,-39,0,0,0.184134 -12226,5309:497,-97,-39,0,0,0.183102 -12227,5309:496,-96,-39,0,0,0.181753 -12228,5309:495,-95,-39,0,0,0.18261 -12229,5309:394,-94,-39,0,0,0.183163 -12230,5309:393,-93,-39,0,0,0.182994 -12231,5309:392,-92,-39,0,0,0.183225 -12232,5309:391,-91,-39,0,0,0.18435 -12233,5309:390,-90,-39,0,0,0.185511 -12234,5308:499,-89,-39,0,0,0.185635 -12235,5308:498,-88,-39,0,0,0.185698 -12236,5308:497,-87,-39,0,0,0.184644 -12237,5308:496,-86,-39,0,0,0.180291 -12238,5308:495,-85,-39,0,0,0.181554 -12239,5308:394,-84,-39,0,0,0.17973 -12240,5308:393,-83,-39,0,0,0.182994 -12241,5308:392,-82,-39,0,0,0.191674 -12242,5308:391,-81,-39,0,0,0.189424 -12243,5308:390,-80,-39,0,0,0.194894 -12244,5307:499,-79,-39,0,0,0.192631 -12245,5307:498,-78,-39,0,0,0.196025 -12246,5307:497,-77,-39,0,0,0.195184 -12247,5307:496,-76,-39,0,0,0.208539 -12248,5306:497,-67,-39,0,0,0.223998 -12249,5306:496,-66,-39,0,0,0.211026 -12250,5306:495,-65,-39,0,0,0.205268 -12251,5306:394,-64,-39,0,0,0.199284 -12252,5306:393,-63,-39,0,0,0.199202 -12253,5306:392,-62,-39,0,0,0.19953 -12254,5306:391,-61,-39,0,0,0.206899 -12255,5306:390,-60,-39,0,0,0.199169 -12256,5305:499,-59,-39,0,0,0.188134 -12257,5305:498,-58,-39,0,0,0.177694 -12258,5305:497,-57,-39,0,0,0.173 -12259,5305:496,-56,-39,0,0,0.163035 -12260,5305:495,-55,-39,0,0,0.153204 -12261,5305:394,-54,-39,0,0,0.165475 -12262,5305:393,-53,-39,0,0,0.205654 -12263,5305:392,-52,-39,0,0,0.210872 -12264,5305:391,-51,-39,0,0,0.217284 -12265,5305:390,-50,-39,0,0,0.219037 -12266,5304:499,-49,-39,0,0,0.211162 -12267,5304:498,-48,-39,0,0,0.207658 -12268,5304:497,-47,-39,0,0,0.199957 -12269,5304:496,-46,-39,0,0,0.184149 -12270,5304:495,-45,-39,0,0,0.166713 -12271,5304:394,-44,-39,0,0,0.172926 -12272,5304:393,-43,-39,0,0,0.17979 -12273,5304:392,-42,-39,0,0,0.154971 -12274,5304:391,-41,-39,0,0,0.15335 -12275,5304:390,-40,-39,0,0,0.163554 -12276,5303:499,-39,-39,0,0,0.163231 -12277,5303:498,-38,-39,0,0,0.156701 -12278,5303:497,-37,-39,0,0,0.150399 -12279,5303:496,-36,-39,0,0,0.15107 -12280,5303:495,-35,-39,0,0,0.154662 -12281,5303:394,-34,-39,0,0,0.163863 -12282,5303:393,-33,-39,0,0,0.163554 -12283,5303:392,-32,-39,0,0,0.161749 -12284,5303:391,-31,-39,0,0,0.154837 -12285,5303:390,-30,-39,0,0,0.152685 -12286,5302:499,-29,-39,0,0,0.150373 -12287,5302:498,-28,-39,0,0,0.146889 -12288,5302:497,-27,-39,0,0,0.142439 -12289,5302:496,-26,-39,0,0,0.155956 -12290,5302:495,-25,-39,0,0,0.156606 -12291,5302:394,-24,-39,0,0,0.149221 -12292,5302:393,-23,-39,0,0,0.143965 -12293,5302:392,-22,-39,0,0,0.14977 -12294,5302:391,-21,-39,0,0,0.156254 -12295,5302:390,-20,-39,0,0,0.156227 -12296,5301:499,-19,-39,0,0,0.15173 -12297,5301:498,-18,-39,0,0,0.155039 -12298,5301:497,-17,-39,0,0,0.166541 -12299,5301:496,-16,-39,0,0,0.163554 -12300,5301:495,-15,-39,0,0,0.151109 -12301,5301:394,-14,-39,0,0,0.151268 -12302,5301:393,-13,-39,0,0,0.150622 -12303,5301:392,-12,-39,0,0,0.149091 -12304,5301:391,-11,-39,0,0,0.141638 -12305,5301:390,-10,-39,0,0,0.135459 -12306,5300:499,-9,-39,0,0,0.12967 -12307,5300:498,-8,-39,0,0,0.130822 -12308,5300:497,-7,-39,0,0,0.142101 -12309,5300:496,-6,-39,0,0,0.166941 -12310,5300:495,-5,-39,0,0,0.169442 -12311,5300:394,-4,-39,0,0,0.164173 -12312,5300:393,-3,-39,0,0,0.150268 -12313,5300:392,-2,-39,0,0,0.153337 -12314,5300:391,-1,-39,0,0,0.156159 -12315,3300:391,0,-39,0,0,0.15775 -12316,3300:391,1,-39,0,0,0.150124 -12317,3300:392,2,-39,0,0,0.142791 -12318,3300:393,3,-39,0,0,0.151202 -12319,3300:394,4,-39,0,0,0.146722 -12320,3300:495,5,-39,0,0,0.13703 -12321,3300:496,6,-39,0,0,0.136509 -12322,3300:497,7,-39,0,0,0.135459 -12323,3300:498,8,-39,0,0,0.118488 -12324,3300:499,9,-39,0,0,0.116232 -12325,3301:390,10,-39,0,0,0.117889 -12326,3301:391,11,-39,0,0,0.127952 -12327,3301:392,12,-39,0,0,0.139146 -12328,3301:393,13,-39,0,0,0.134081 -12329,3301:394,14,-39,0,0,0.132313 -12330,3301:495,15,-39,0,0,0.132738 -12331,3301:496,16,-39,0,0,0.136315 -12332,3301:497,17,-39,0,0,0.130846 -12333,3301:498,18,-39,0,0,0.124239 -12334,3301:499,19,-39,0,0,0.132467 -12335,3302:390,20,-39,0,0,0.128768 -12336,3302:391,21,-39,0,0,0.124698 -12337,3302:392,22,-39,0,0,0.131936 -12338,3302:393,23,-39,0,0,0.11988 -12339,3302:394,24,-39,0,0,0.125812 -12340,3302:495,25,-39,0,0,0.126515 -12341,3302:496,26,-39,0,0,0.122528 -12342,3302:497,27,-39,0,0,0.129311 -12343,3302:498,28,-39,0,0,0.135989 -12344,3302:499,29,-39,0,0,0.137932 -12345,3303:390,30,-39,0,0,0.120379 -12346,3303:391,31,-39,0,0,0.115254 -12347,3303:392,32,-39,0,0,0.126856 -12348,3303:393,33,-39,0,0,0.128044 -12349,3303:394,34,-39,0,0,0.126515 -12350,3303:495,35,-39,0,0,0.127221 -12351,3303:496,36,-39,0,0,0.128274 -12352,3303:497,37,-39,0,0,0.131877 -12353,3303:498,38,-39,0,0,0.130228 -12354,3303:499,39,-39,0,0,0.122219 -12355,3304:390,40,-39,0,0,0.126016 -12356,3304:391,41,-39,0,0,0.13216 -12357,3304:392,42,-39,0,0,0.133581 -12358,3304:393,43,-39,0,0,0.133735 -12359,3304:394,44,-39,0,0,0.122119 -12360,3304:495,45,-39,0,0,0.123547 -12361,3304:496,46,-39,0,0,0.123882 -12362,3304:497,47,-39,0,0,0.125598 -12363,3304:498,48,-39,0,0,0.128469 -12364,3304:499,49,-39,0,0,0.127552 -12365,3305:390,50,-39,0,0,0.125609 -12366,3305:391,51,-39,0,0,0.126424 -12367,3305:392,52,-39,0,0,0.129358 -12368,3305:393,53,-39,0,0,0.13307 -12369,3305:394,54,-39,0,0,0.135977 -12370,3305:495,55,-39,0,0,0.133569 -12371,3305:496,56,-39,0,0,0.124373 -12372,3305:497,57,-39,0,0,0.123081 -12373,3305:498,58,-39,0,0,0.127792 -12374,3305:499,59,-39,0,0,0.125666 -12375,3306:390,60,-39,0,0,0.130158 -12376,3306:391,61,-39,0,0,0.127872 -12377,3306:392,62,-39,0,0,0.120281 -12378,3306:393,63,-39,0,0,0.119457 -12379,3306:394,64,-39,0,0,0.119123 -12380,3306:495,65,-39,0,0,0.118746 -12381,3306:496,66,-39,0,0,0.12681 -12382,3306:497,67,-39,0,0,0.122561 -12383,3306:498,68,-39,0,0,0.121044 -12384,3306:499,69,-39,0,0,0.124328 -12385,3307:390,70,-39,0,0,0.128182 -12386,3307:391,71,-39,0,0,0.113309 -12387,3307:392,72,-39,0,0,0.118864 -12388,3307:394,74,-39,0,0,0.121416 -12389,3307:495,75,-39,0,0,0.12168 -12390,3307:496,76,-39,0,0,0.13825 -12391,3307:497,77,-39,0,0,0.144841 -12392,3307:498,78,-39,0,0,0.147534 -12393,3307:499,79,-39,0,0,0.153657 -12394,3308:390,80,-39,0,0,0.15011 -12395,3308:391,81,-39,0,0,0.146105 -12396,3308:392,82,-39,0,0,0.148675 -12397,3308:393,83,-39,0,0,0.161721 -12398,3308:394,84,-39,0,0,0.159161 -12399,3308:495,85,-39,0,0,0.170675 -12400,3308:496,86,-39,0,0,0.177679 -12401,3308:497,87,-39,0,0,0.180519 -12402,3308:498,88,-39,0,0,0.173647 -12403,3308:499,89,-39,0,0,0.170602 -12404,3309:390,90,-39,0,0,0.176004 -12405,3309:391,91,-39,0,0,0.179442 -12406,3309:392,92,-39,0,0,0.181982 -12407,3309:393,93,-39,0,0,0.168087 -12408,3309:394,94,-39,0,0,0.161791 -12409,3309:495,95,-39,0,0,0.159946 -12410,3309:496,96,-39,0,0,0.156796 -12411,3309:497,97,-39,0,0,0.156281 -12412,3309:498,98,-39,0,0,0.155214 -12413,3309:499,99,-39,0,0,0.147715 -12414,3310:390,100,-39,0,0,0.140654 -12415,3310:391,101,-39,0,0,0.141301 -12416,3310:392,102,-39,0,0,0.143081 -12417,3310:393,103,-39,0,0,0.146169 -12418,3310:394,104,-39,0,0,0.148557 -12419,3310:495,105,-39,0,0,0.142879 -12420,3310:496,106,-39,0,0,0.139515 -12421,3310:497,107,-39,0,0,0.153952 -12422,3310:498,108,-39,0,0,0.155079 -12423,3310:499,109,-39,0,0,0.147534 -12424,3311:390,110,-39,0,0,0.147935 -12425,3311:391,111,-39,0,0,0.155402 -12426,3311:392,112,-39,0,0,0.172632 -12427,3311:393,113,-39,0,0,0.182166 -12428,3311:394,114,-39,0,0,0.184334 -12429,3311:495,115,-39,0,0,0.165404 -12430,3311:496,116,-39,0,0,0.160776 -12431,3311:497,117,-39,0,0,0.182764 -12432,3311:498,118,-39,0,0,0.188338 -12433,3311:499,119,-39,0,0,0.176586 -12434,3312:390,120,-39,0,0,0.161679 -12435,3312:391,121,-39,0,0,0.186569 -12436,3312:392,122,-39,0,0,0.184118 -12437,3312:393,123,-39,0,0,0.188416 -12438,3312:394,124,-39,0,0,0.187851 -12439,3312:495,125,-39,0,0,0.172017 -12440,3312:496,126,-39,0,0,0.179503 -12441,3312:497,127,-39,0,0,0.185698 -12442,3312:498,128,-39,0,0,0.197275 -12443,3312:499,129,-39,0,0,0.198858 -12444,3313:390,130,-39,0,0,0.189834 -12445,3313:391,131,-39,0,0,0.191754 -12446,3313:392,132,-39,0,0,0.196657 -12447,3313:393,133,-39,0,0,0.202433 -12448,3313:394,134,-39,0,0,0.19554 -12449,3313:495,135,-39,0,0,0.191833 -12450,3313:496,136,-39,0,0,0.19721 -12451,3313:497,137,-39,0,0,0.205687 -12452,3313:498,138,-39,0,0,0.206646 -12453,3313:499,139,-39,0,0,0.192967 -12454,3314:390,140,-39,0,0,0.191722 -12455,3314:391,141,-39,0,0,0.204598 -12456,3314:392,142,-39,0,0,0.202699 -12457,3314:393,143,-39,0,0,0.198759 -12458,3314:394,144,-39,0,0,0.199907 -12459,3314:495,145,-39,0,0,0.201754 -12460,3314:496,146,-39,0,0,0.204231 -12461,3314:497,147,-39,0,0,0.211522 -12462,3314:498,148,-39,0,0,0.207017 -12463,3314:499,149,-39,0,0,0.203364 -12464,3315:390,150,-39,0,0,0.199349 -12465,3315:391,151,-39,0,0,0.213103 -12466,3315:392,152,-39,0,0,0.235912 -12467,3315:393,153,-39,0,0,0.213172 -12468,3315:394,154,-39,0,0,0.213655 -12469,3315:495,155,-39,0,0,0.214727 -12470,3315:496,156,-39,0,0,0.213948 -12471,3315:497,157,-39,0,0,0.210376 -12472,3315:498,158,-39,0,0,0.207422 -12473,3315:499,159,-39,0,0,0.207084 -12474,3316:390,160,-39,0,0,0.205973 -12475,3316:391,161,-39,0,0,0.203198 -12476,3316:392,162,-39,0,0,0.209916 -12477,3316:393,163,-39,0,0,0.203847 -12478,3316:394,164,-39,0,0,0.208895 -12479,3316:495,165,-39,0,0,0.205687 -12480,3316:496,166,-39,0,0,0.203297 -12481,3316:497,167,-39,0,0,0.214762 -12482,3316:498,168,-39,0,0,0.202516 -12483,3316:499,169,-39,0,0,0.197372 -12484,3317:390,170,-39,0,0,0.193832 -12485,3317:391,171,-39,0,0,0.192631 -12486,3317:392,172,-39,0,0,0.190927 -12487,3317:393,173,-39,0,0,0.190008 -12488,3317:394,174,-39,0,0,0.189424 -12489,3317:495,175,-39,0,0,0.187616 -12490,3317:496,176,-39,0,0,0.185092 -12491,3317:497,177,-39,0,0,0.184272 -12492,3317:498,178,-39,0,0,0.190927 -12493,3317:499,179,-39,0,0,0.190609 -12494,3318:390,180,-39,0,0,0.18531 -12495,5318:380,-180,-38,0,0,0.196609 -12496,5317:489,-179,-38,0,0,0.185589 -12497,5317:488,-178,-38,0,0,0.18017 -12498,5317:487,-177,-38,0,0,0.21226 -12499,5317:486,-176,-38,0,0,0.224749 -12500,5317:485,-175,-38,0,0,0.224516 -12501,5317:384,-174,-38,0,0,0.216709 -12502,5317:383,-173,-38,0,0,0.223962 -12503,5317:382,-172,-38,0,0,0.223748 -12504,5317:381,-171,-38,0,0,0.215091 -12505,5317:380,-170,-38,0,0,0.212965 -12506,5316:489,-169,-38,0,0,0.240949 -12507,5316:488,-168,-38,0,0,0.233734 -12508,5316:487,-167,-38,0,0,0.224749 -12509,5316:486,-166,-38,0,0,0.232558 -12510,5316:485,-165,-38,0,0,0.230402 -12511,5316:384,-164,-38,0,0,0.223748 -12512,5316:383,-163,-38,0,0,0.225161 -12513,5316:382,-162,-38,0,0,0.233568 -12514,5316:381,-161,-38,0,0,0.248334 -12515,5316:380,-160,-38,0,0,0.243155 -12516,5315:489,-159,-38,0,0,0.242493 -12517,5315:488,-158,-38,0,0,0.245317 -12518,5315:487,-157,-38,0,0,0.243249 -12519,5315:486,-156,-38,0,0,0.249333 -12520,5315:485,-155,-38,0,0,0.250566 -12521,5315:384,-154,-38,0,0,0.248776 -12522,5315:383,-153,-38,0,0,0.248527 -12523,5315:382,-152,-38,0,0,0.247511 -12524,5315:381,-151,-38,0,0,0.252113 -12525,5315:380,-150,-38,0,0,0.253626 -12526,5314:489,-149,-38,0,0,0.250026 -12527,5314:488,-148,-38,0,0,0.251745 -12528,5314:487,-147,-38,0,0,0.252713 -12529,5314:486,-146,-38,0,0,0.251048 -12530,5314:485,-145,-38,0,0,0.248584 -12531,5314:384,-144,-38,0,0,0.247893 -12532,5314:383,-143,-38,0,0,0.24941 -12533,5314:382,-142,-38,0,0,0.249583 -12534,5314:381,-141,-38,0,0,0.245964 -12535,5314:380,-140,-38,0,0,0.247645 -12536,5313:489,-139,-38,0,0,0.246975 -12537,5313:488,-138,-38,0,0,0.245107 -12538,5313:487,-137,-38,0,0,0.241852 -12539,5313:486,-136,-38,0,0,0.2393 -12540,5313:485,-135,-38,0,0,0.23915 -12541,5313:384,-134,-38,0,0,0.237193 -12542,5313:383,-133,-38,0,0,0.233293 -12543,5313:382,-132,-38,0,0,0.235986 -12544,5313:381,-131,-38,0,0,0.238384 -12545,5313:380,-130,-38,0,0,0.240949 -12546,5312:489,-129,-38,0,0,0.239486 -12547,5312:488,-128,-38,0,0,0.237211 -12548,5312:487,-127,-38,0,0,0.23532 -12549,5312:486,-126,-38,0,0,0.233458 -12550,5312:485,-125,-38,0,0,0.23104 -12551,5312:384,-124,-38,0,0,0.228168 -12552,5312:383,-123,-38,0,0,0.226526 -12553,5312:382,-122,-38,0,0,0.227012 -12554,5312:381,-121,-38,0,0,0.230347 -12555,5312:380,-120,-38,0,0,0.231058 -12556,5311:489,-119,-38,0,0,0.225556 -12557,5311:488,-118,-38,0,0,0.222413 -12558,5311:487,-117,-38,0,0,0.219037 -12559,5311:486,-116,-38,0,0,0.217792 -12560,5311:485,-115,-38,0,0,0.219301 -12561,5311:384,-114,-38,0,0,0.214865 -12562,5311:383,-113,-38,0,0,0.206781 -12563,5311:382,-112,-38,0,0,0.207794 -12564,5311:381,-111,-38,0,0,0.216133 -12565,5311:380,-110,-38,0,0,0.207185 -12566,5310:489,-109,-38,0,0,0.204431 -12567,5310:488,-108,-38,0,0,0.201357 -12568,5310:487,-107,-38,0,0,0.200203 -12569,5310:486,-106,-38,0,0,0.202152 -12570,5310:485,-105,-38,0,0,0.200549 -12571,5310:384,-104,-38,0,0,0.197943 -12572,5310:383,-103,-38,0,0,0.19554 -12573,5310:382,-102,-38,0,0,0.194556 -12574,5310:381,-101,-38,0,0,0.194943 -12575,5310:380,-100,-38,0,0,0.195362 -12576,5309:489,-99,-38,0,0,0.194862 -12577,5309:488,-98,-38,0,0,0.191961 -12578,5309:487,-97,-38,0,0,0.190134 -12579,5309:486,-96,-38,0,0,0.189802 -12580,5309:485,-95,-38,0,0,0.19169 -12581,5309:384,-94,-38,0,0,0.191626 -12582,5309:383,-93,-38,0,0,0.18966 -12583,5309:382,-92,-38,0,0,0.188102 -12584,5309:381,-91,-38,0,0,0.194459 -12585,5309:380,-90,-38,0,0,0.192487 -12586,5308:489,-89,-38,0,0,0.199481 -12587,5308:488,-88,-38,0,0,0.191499 -12588,5308:487,-87,-38,0,0,0.192471 -12590,5308:485,-85,-38,0,0,0.194266 -12591,5308:384,-84,-38,0,0,0.191738 -12592,5308:383,-83,-38,0,0,0.195944 -12593,5308:382,-82,-38,0,0,0.197193 -12594,5308:381,-81,-38,0,0,0.202516 -12595,5308:380,-80,-38,0,0,0.204398 -12596,5307:489,-79,-38,0,0,0.205687 -12597,5307:488,-78,-38,0,0,0.203015 -12598,5307:487,-77,-38,0,0,0.200582 -12599,5307:486,-76,-38,0,0,0.213413 -12600,5307:485,-75,-38,0,0,0.22227 -12601,5306:485,-65,-38,0,0,0.227085 -12602,5306:384,-64,-38,0,0,0.211436 -12603,5306:383,-63,-38,0,0,0.206377 -12604,5306:382,-62,-38,0,0,0.206494 -12605,5306:381,-61,-38,0,0,0.213241 -12606,5306:380,-60,-38,0,0,0.201837 -12607,5305:489,-59,-38,0,0,0.173809 -12608,5305:488,-58,-38,0,0,0.175008 -12609,5305:487,-57,-38,0,0,0.176392 -12610,5305:486,-56,-38,0,0,0.181295 -12611,5305:485,-55,-38,0,0,0.19512 -12612,5305:384,-54,-38,0,0,0.204214 -12613,5305:383,-53,-38,0,0,0.223124 -12614,5305:382,-52,-38,0,0,0.226526 -12615,5305:381,-51,-38,0,0,0.249891 -12616,5305:380,-50,-38,0,0,0.251068 -12617,5304:489,-49,-38,0,0,0.227265 -12618,5304:488,-48,-38,0,0,0.21269 -12619,5304:487,-47,-38,0,0,0.218002 -12620,5304:486,-46,-38,0,0,0.209184 -12621,5304:485,-45,-38,0,0,0.20631 -12622,5304:384,-44,-38,0,0,0.203447 -12623,5304:383,-43,-38,0,0,0.201738 -12624,5304:382,-42,-38,0,0,0.202317 -12625,5304:381,-41,-38,0,0,0.200253 -12626,5304:380,-40,-38,0,0,0.19894 -12627,5303:489,-39,-38,0,0,0.196106 -12628,5303:488,-38,-38,0,0,0.19372 -12629,5303:487,-37,-38,0,0,0.190737 -12630,5303:486,-36,-38,0,0,0.188322 -12631,5303:485,-35,-38,0,0,0.175691 -12632,5303:384,-34,-38,0,0,0.159051 -12633,5303:383,-33,-38,0,0,0.156987 -12634,5303:382,-32,-38,0,0,0.156348 -12635,5303:381,-31,-38,0,0,0.154958 -12636,5303:380,-30,-38,0,0,0.156145 -12637,5302:489,-29,-38,0,0,0.156946 -12638,5302:488,-28,-38,0,0,0.152061 -12639,5302:487,-27,-38,0,0,0.154622 -12640,5302:486,-26,-38,0,0,0.165475 -12641,5302:485,-25,-38,0,0,0.16104 -12642,5302:384,-24,-38,0,0,0.160859 -12643,5302:383,-23,-38,0,0,0.15601 -12644,5302:382,-22,-38,0,0,0.152114 -12645,5302:381,-21,-38,0,0,0.163315 -12646,5302:380,-20,-38,0,0,0.175542 -12647,5301:489,-19,-38,0,0,0.161429 -12648,5301:488,-18,-38,0,0,0.175141 -12649,5301:487,-17,-38,0,0,0.179321 -12650,5301:486,-16,-38,0,0,0.166513 -12651,5301:485,-15,-38,0,0,0.156701 -12652,5301:384,-14,-38,0,0,0.152884 -12653,5301:383,-13,-38,0,0,0.148596 -12654,5301:382,-12,-38,0,0,0.142653 -12655,5301:381,-11,-38,0,0,0.142477 -12656,5301:380,-10,-38,0,0,0.136206 -12657,5300:489,-9,-38,0,0,0.132349 -12658,5300:488,-8,-38,0,0,0.139368 -12659,5300:487,-7,-38,0,0,0.150688 -12660,5300:486,-6,-38,0,0,0.161484 -12661,5300:485,-5,-38,0,0,0.16862 -12662,5300:384,-4,-38,0,0,0.167399 -12663,5300:383,-3,-38,0,0,0.161498 -12664,5300:382,-2,-38,0,0,0.158707 -12665,5300:381,-1,-38,0,0,0.159877 -12666,3300:381,0,-38,0,0,0.16295 -12667,3300:381,1,-38,0,0,0.168102 -12668,3300:382,2,-38,0,0,0.158105 -12669,3300:383,3,-38,0,0,0.166299 -12670,3300:384,4,-38,0,0,0.162139 -12671,3300:485,5,-38,0,0,0.148687 -12672,3300:486,6,-38,0,0,0.141513 -12673,3300:487,7,-38,0,0,0.137859 -12674,3300:488,8,-38,0,0,0.134331 -12675,3300:489,9,-38,0,0,0.12535 -12676,3301:380,10,-38,0,0,0.139072 -12677,3301:381,11,-38,0,0,0.155429 -12678,3301:382,12,-38,0,0,0.154219 -12679,3301:383,13,-38,0,0,0.147883 -12680,3301:384,14,-38,0,0,0.141538 -12681,3301:485,15,-38,0,0,0.136775 -12682,3301:486,16,-38,0,0,0.136001 -12683,3301:487,17,-38,0,0,0.133035 -12684,3301:488,18,-38,0,0,0.147172 -12685,3301:489,19,-38,0,0,0.146979 -12686,3302:380,20,-38,0,0,0.148466 -12687,3302:381,21,-38,0,0,0.151307 -12688,3302:382,22,-38,0,0,0.144853 -12689,3302:383,23,-38,0,0,0.129612 -12690,3302:384,24,-38,0,0,0.127175 -12691,3302:485,25,-38,0,0,0.141551 -12692,3302:486,26,-38,0,0,0.145184 -12693,3302:487,27,-38,0,0,0.141776 -12694,3302:488,28,-38,0,0,0.14631 -12695,3302:489,29,-38,0,0,0.141176 -12696,3303:380,30,-38,0,0,0.150137 -12697,3303:381,31,-38,0,0,0.17322 -12698,3303:382,32,-38,0,0,0.174889 -12699,3303:383,33,-38,0,0,0.171418 -12700,3303:384,34,-38,0,0,0.145299 -12701,3303:485,35,-38,0,0,0.126628 -12702,3303:486,36,-38,0,0,0.127209 -12703,3303:487,37,-38,0,0,0.131349 -12704,3303:488,38,-38,0,0,0.13541 -12705,3303:489,39,-38,0,0,0.130671 -12706,3304:380,40,-38,0,0,0.130787 -12707,3304:381,41,-38,0,0,0.132077 -12708,3304:382,42,-38,0,0,0.135386 -12709,3304:383,43,-38,0,0,0.14418 -12710,3304:384,44,-38,0,0,0.140642 -12711,3304:485,45,-38,0,0,0.136509 -12712,3304:486,46,-38,0,0,0.137871 -12713,3304:487,47,-38,0,0,0.137079 -12714,3304:488,48,-38,0,0,0.129856 -12715,3304:489,49,-38,0,0,0.128343 -12716,3305:380,50,-38,0,0,0.130566 -12717,3305:381,51,-38,0,0,0.131302 -12718,3305:382,52,-38,0,0,0.132668 -12719,3305:383,53,-38,0,0,0.136279 -12720,3305:384,54,-38,0,0,0.13703 -12721,3305:485,55,-38,0,0,0.148285 -12722,3305:486,56,-38,0,0,0.137249 -12723,3305:487,57,-38,0,0,0.135531 -12724,3305:488,58,-38,0,0,0.135615 -12725,3305:489,59,-38,0,0,0.133818 -12726,3306:380,60,-38,0,0,0.143081 -12727,3306:381,61,-38,0,0,0.140282 -12728,3306:382,62,-38,0,0,0.124721 -12729,3306:383,63,-38,0,0,0.127472 -12730,3306:384,64,-38,0,0,0.125666 -12731,3306:485,65,-38,0,0,0.125508 -12732,3306:486,66,-38,0,0,0.138103 -12733,3306:487,67,-38,0,0,0.13196 -12734,3306:488,68,-38,0,0,0.12945 -12735,3306:489,69,-38,0,0,0.128538 -12736,3307:380,70,-38,0,0,0.128826 -12737,3307:381,71,-38,0,0,0.118628 -12738,3307:382,72,-38,0,0,0.116528 -12739,3307:384,74,-38,0,0,0.137249 -12740,3307:485,75,-38,0,0,0.143358 -12741,3307:486,76,-38,0,0,0.144472 -12742,3307:487,77,-38,0,0,0.140903 -12743,3307:488,78,-38,0,0,0.140691 -12744,3307:489,79,-38,0,0,0.160859 -12745,3308:380,80,-38,0,0,0.16385 -12746,3308:381,81,-38,0,0,0.169182 -12747,3308:382,82,-38,0,0,0.166 -12748,3308:383,83,-38,0,0,0.173986 -12749,3308:384,84,-38,0,0,0.175661 -12750,3308:485,85,-38,0,0,0.173677 -12751,3308:486,86,-38,0,0,0.177334 -12752,3308:487,87,-38,0,0,0.192631 -12753,3308:488,88,-38,0,0,0.195459 -12754,3308:489,89,-38,0,0,0.195427 -12755,3309:380,90,-38,0,0,0.190419 -12756,3309:381,91,-38,0,0,0.189723 -12757,3309:382,92,-38,0,0,0.182105 -12758,3309:383,93,-38,0,0,0.16677 -12759,3309:384,94,-38,0,0,0.168836 -12760,3309:485,95,-38,0,0,0.161554 -12761,3309:486,96,-38,0,0,0.156267 -12762,3309:487,97,-38,0,0,0.15434 -12763,3309:488,98,-38,0,0,0.154394 -12764,3309:489,99,-38,0,0,0.152685 -12765,3310:380,100,-38,0,0,0.14703 -12766,3310:381,101,-38,0,0,0.153911 -12767,3310:382,102,-38,0,0,0.155214 -12768,3310:383,103,-38,0,0,0.152498 -12769,3310:384,104,-38,0,0,0.1579 -12770,3310:485,105,-38,0,0,0.160624 -12771,3310:486,106,-38,0,0,0.156796 -12772,3310:487,107,-38,0,0,0.165106 -12773,3310:488,108,-38,0,0,0.165177 -12774,3310:489,109,-38,0,0,0.15764 -12775,3311:380,110,-38,0,0,0.170559 -12776,3311:381,111,-38,0,0,0.173868 -12777,3311:382,112,-38,0,0,0.19169 -12778,3311:383,113,-38,0,0,0.200961 -12779,3311:384,114,-38,0,0,0.18632 -12780,3311:485,115,-38,0,0,0.185915 -12781,3311:486,116,-38,0,0,0.18925 -12782,3311:487,117,-38,0,0,0.193864 -12783,3311:488,118,-38,0,0,0.194153 -12784,3311:489,119,-38,0,0,0.198989 -12785,3312:380,120,-38,0,0,0.205201 -12786,3312:381,121,-38,0,0,0.197015 -12787,3312:382,122,-38,0,0,0.183918 -12788,3312:383,123,-38,0,0,0.189487 -12789,3312:384,124,-38,0,0,0.20149 -12790,3312:485,125,-38,0,0,0.19372 -12791,3312:486,126,-38,0,0,0.181036 -12792,3312:487,127,-38,0,0,0.196625 -12793,3312:488,128,-38,0,0,0.214536 -12794,3312:489,129,-38,0,0,0.213017 -12795,3313:380,130,-38,0,0,0.211231 -12796,3313:381,131,-38,0,0,0.209456 -12797,3313:382,132,-38,0,0,0.211848 -12798,3313:383,133,-38,0,0,0.211556 -12799,3313:384,134,-38,0,0,0.207811 -12800,3313:485,135,-38,0,0,0.203631 -12801,3313:486,136,-38,0,0,0.207017 -12802,3313:487,137,-38,0,0,0.213258 -12803,3313:488,138,-38,0,0,0.20932 -12804,3313:489,139,-38,0,0,0.202865 -12805,3314:380,140,-38,0,0,0.205755 -12806,3314:381,141,-38,0,0,0.215577 -12807,3314:382,142,-38,0,0,0.221543 -12808,3314:383,143,-38,0,0,0.221915 -12809,3314:384,144,-38,0,0,0.226706 -12810,3314:485,145,-38,0,0,0.230274 -12811,3314:486,146,-38,0,0,0.223124 -12812,3314:487,147,-38,0,0,0.208912 -12813,3314:488,148,-38,0,0,0.207591 -12814,3314:489,149,-38,0,0,0.204532 -12815,3315:380,150,-38,0,0,0.206107 -12816,3315:381,151,-38,0,0,0.208573 -12817,3315:382,152,-38,0,0,0.222075 -12818,3315:383,153,-38,0,0,0.225196 -12819,3315:384,154,-38,0,0,0.215681 -12820,3315:485,155,-38,0,0,0.225251 -12821,3315:486,156,-38,0,0,0.223178 -12822,3315:487,157,-38,0,0,0.217792 -12823,3315:488,158,-38,0,0,0.211934 -12824,3315:489,159,-38,0,0,0.214225 -12825,3316:380,160,-38,0,0,0.215299 -12826,3316:381,161,-38,0,0,0.220217 -12827,3316:382,162,-38,0,0,0.217652 -12828,3316:383,163,-38,0,0,0.2196 -12829,3316:384,164,-38,0,0,0.222466 -12830,3316:485,165,-38,0,0,0.221224 -12831,3316:486,166,-38,0,0,0.217792 -12832,3316:487,167,-38,0,0,0.225 -12833,3316:488,168,-38,0,0,0.220393 -12834,3316:489,169,-38,0,0,0.208624 -12835,3317:380,170,-38,0,0,0.199809 -12836,3317:381,171,-38,0,0,0.193736 -12837,3317:382,172,-38,0,0,0.191499 -12838,3317:383,173,-38,0,0,0.19126 -12839,3317:384,174,-38,0,0,0.190641 -12840,3317:485,175,-38,0,0,0.188919 -12841,3317:486,176,-38,0,0,0.188919 -12842,3317:487,177,-38,0,0,0.194765 -12843,3317:488,178,-38,0,0,0.196738 -12844,3317:489,179,-38,0,0,0.196852 -12845,3318:380,180,-38,0,0,0.196609 -12846,5318:370,-180,-37,0,0,0.190451 -12847,5317:479,-179,-37,0,0,0.19999 -12848,5317:478,-178,-37,0,0,0.217442 -12849,5317:477,-177,-37,0,0,0.22027 -12850,5317:476,-176,-37,0,0,0.225018 -12851,5317:475,-175,-37,0,0,0.22922 -12852,5317:374,-174,-37,0,0,0.236005 -12853,5317:373,-173,-37,0,0,0.22482 -12854,5317:372,-172,-37,0,0,0.227608 -12855,5317:371,-171,-37,0,0,0.240067 -12856,5317:370,-170,-37,0,0,0.258795 -12857,5316:479,-169,-37,0,0,0.256144 -12858,5316:478,-168,-37,0,0,0.254152 -12859,5316:477,-167,-37,0,0,0.248488 -12860,5316:476,-166,-37,0,0,0.248162 -12861,5316:475,-165,-37,0,0,0.248661 -12862,5316:374,-164,-37,0,0,0.248392 -12863,5316:373,-163,-37,0,0,0.242343 -12864,5316:372,-162,-37,0,0,0.242324 -12865,5316:371,-161,-37,0,0,0.252655 -12866,5316:370,-160,-37,0,0,0.251551 -12867,5315:479,-159,-37,0,0,0.2513 -12868,5315:478,-158,-37,0,0,0.252539 -12869,5315:477,-157,-37,0,0,0.257084 -12870,5315:476,-156,-37,0,0,0.256692 -12871,5315:475,-155,-37,0,0,0.257045 -12872,5315:374,-154,-37,0,0,0.257654 -12873,5315:373,-153,-37,0,0,0.256594 -12874,5315:372,-152,-37,0,0,0.257949 -12875,5315:371,-151,-37,0,0,0.261961 -12876,5315:370,-150,-37,0,0,0.258775 -12877,5314:479,-149,-37,0,0,0.259999 -12878,5314:478,-148,-37,0,0,0.26085 -12879,5314:477,-147,-37,0,0,0.259032 -12880,5314:476,-146,-37,0,0,0.255596 -12881,5314:475,-145,-37,0,0,0.252539 -12882,5314:374,-144,-37,0,0,0.256281 -12883,5314:373,-143,-37,0,0,0.259269 -12884,5314:372,-142,-37,0,0,0.255948 -12885,5314:371,-141,-37,0,0,0.253977 -12886,5314:370,-140,-37,0,0,0.259012 -12887,5313:479,-139,-37,0,0,0.255928 -12888,5313:478,-138,-37,0,0,0.25072 -12889,5313:477,-137,-37,0,0,0.249141 -12890,5313:476,-136,-37,0,0,0.249795 -12891,5313:475,-135,-37,0,0,0.248641 -12892,5313:374,-134,-37,0,0,0.24545 -12893,5313:373,-133,-37,0,0,0.243798 -12894,5313:372,-132,-37,0,0,0.245869 -12895,5313:371,-131,-37,0,0,0.246193 -12896,5313:370,-130,-37,0,0,0.244424 -12897,5312:479,-129,-37,0,0,0.247224 -12898,5312:478,-128,-37,0,0,0.248277 -12899,5312:477,-127,-37,0,0,0.246765 -12900,5312:476,-126,-37,0,0,0.246632 -12901,5312:475,-125,-37,0,0,0.24688 -12902,5312:374,-124,-37,0,0,0.246727 -12903,5312:373,-123,-37,0,0,0.25072 -12904,5312:372,-122,-37,0,0,0.244443 -12905,5312:371,-121,-37,0,0,0.243741 -12906,5312:370,-120,-37,0,0,0.23859 -12907,5311:479,-119,-37,0,0,0.240424 -12908,5311:478,-118,-37,0,0,0.233899 -12909,5311:477,-117,-37,0,0,0.235968 -12910,5311:476,-116,-37,0,0,0.234637 -12911,5311:475,-115,-37,0,0,0.227428 -12912,5311:374,-114,-37,0,0,0.222981 -12913,5311:373,-113,-37,0,0,0.219301 -12914,5311:372,-112,-37,0,0,0.22087 -12915,5311:371,-111,-37,0,0,0.225591 -12916,5311:370,-110,-37,0,0,0.21516 -12917,5310:479,-109,-37,0,0,0.2125 -12918,5310:478,-108,-37,0,0,0.212793 -12919,5310:477,-107,-37,0,0,0.212655 -12920,5310:476,-106,-37,0,0,0.210564 -12921,5310:475,-105,-37,0,0,0.208692 -12922,5310:374,-104,-37,0,0,0.210188 -12923,5310:373,-103,-37,0,0,0.204231 -12924,5310:372,-102,-37,0,0,0.205452 -12925,5310:371,-101,-37,0,0,0.205184 -12926,5310:370,-100,-37,0,0,0.207506 -12927,5309:479,-99,-37,0,0,0.205603 -12928,5309:478,-98,-37,0,0,0.204264 -12929,5309:477,-97,-37,0,0,0.199874 -12930,5309:476,-96,-37,0,0,0.201672 -12931,5309:475,-95,-37,0,0,0.20255 -12932,5309:374,-94,-37,0,0,0.20358 -12933,5309:373,-93,-37,0,0,0.199957 -12934,5309:372,-92,-37,0,0,0.199661 -12935,5309:371,-91,-37,0,0,0.200615 -12936,5309:370,-90,-37,0,0,0.202268 -12937,5308:479,-89,-37,0,0,0.202832 -12938,5308:478,-88,-37,0,0,0.203864 -12939,5308:477,-87,-37,0,0,0.199907 -12940,5308:476,-86,-37,0,0,0.203447 -12941,5308:475,-85,-37,0,0,0.198612 -12942,5308:374,-84,-37,0,0,0.200994 -12943,5308:373,-83,-37,0,0,0.204532 -12944,5308:372,-82,-37,0,0,0.20599 -12945,5308:371,-81,-37,0,0,0.204699 -12946,5308:370,-80,-37,0,0,0.209473 -12947,5307:479,-79,-37,0,0,0.21238 -12948,5307:478,-78,-37,0,0,0.211848 -12949,5307:477,-77,-37,0,0,0.207624 -12950,5307:476,-76,-37,0,0,0.218633 -12951,5307:475,-75,-37,0,0,0.217617 -12952,5306:477,-67,-37,0,0,0.252035 -12953,5306:476,-66,-37,0,0,0.24431 -12954,5306:475,-65,-37,0,0,0.234673 -12955,5306:374,-64,-37,0,0,0.231076 -12956,5306:373,-63,-37,0,0,0.225196 -12957,5306:372,-62,-37,0,0,0.225609 -12958,5306:371,-61,-37,0,0,0.222004 -12959,5306:370,-60,-37,0,0,0.208166 -12960,5305:479,-59,-37,0,0,0.178778 -12961,5305:478,-58,-37,0,0,0.193207 -12962,5305:477,-57,-37,0,0,0.22316 -12963,5305:476,-56,-37,0,0,0.222697 -12964,5305:475,-55,-37,0,0,0.222572 -12965,5305:374,-54,-37,0,0,0.237304 -12966,5305:373,-53,-37,0,0,0.238889 -12967,5305:372,-52,-37,0,0,0.243004 -12968,5305:371,-51,-37,0,0,0.270572 -12969,5305:370,-50,-37,0,0,0.269215 -12970,5304:479,-49,-37,0,0,0.237881 -12971,5304:478,-48,-37,0,0,0.222572 -12972,5304:477,-47,-37,0,0,0.222803 -12973,5304:476,-46,-37,0,0,0.220058 -12974,5304:475,-45,-37,0,0,0.219424 -12975,5304:374,-44,-37,0,0,0.21464 -12976,5304:373,-43,-37,0,0,0.203998 -12977,5304:372,-42,-37,0,0,0.2049 -12978,5304:371,-41,-37,0,0,0.202849 -12979,5304:370,-40,-37,0,0,0.198204 -12980,5303:479,-39,-37,0,0,0.199628 -12981,5303:478,-38,-37,0,0,0.201341 -12982,5303:477,-37,-37,0,0,0.19669 -12983,5303:476,-36,-37,0,0,0.192823 -12984,5303:475,-35,-37,0,0,0.184411 -12985,5303:374,-34,-37,0,0,0.168346 -12986,5303:373,-33,-37,0,0,0.168735 -12987,5303:372,-32,-37,0,0,0.169211 -12988,5303:371,-31,-37,0,0,0.165106 -12989,5303:370,-30,-37,0,0,0.166057 -12990,5302:479,-29,-37,0,0,0.177649 -12991,5302:478,-28,-37,0,0,0.173471 -12992,5302:477,-27,-37,0,0,0.165929 -12993,5302:476,-26,-37,0,0,0.179821 -12994,5302:475,-25,-37,0,0,0.167743 -12995,5302:374,-24,-37,0,0,0.185744 -12996,5302:373,-23,-37,0,0,0.177394 -12997,5302:372,-22,-37,0,0,0.189692 -12998,5302:371,-21,-37,0,0,0.209048 -12999,5302:370,-20,-37,0,0,0.201738 -13000,5301:479,-19,-37,0,0,0.16573 -13001,5301:478,-18,-37,0,0,0.184427 -13002,5301:477,-17,-37,0,0,0.173721 -13003,5301:476,-16,-37,0,0,0.159905 -13004,5301:475,-15,-37,0,0,0.166969 -13005,5301:374,-14,-37,0,0,0.153737 -13006,5301:373,-13,-37,0,0,0.146901 -13007,5301:372,-12,-37,0,0,0.150859 -13008,5301:371,-11,-37,0,0,0.15299 -13009,5301:370,-10,-37,0,0,0.160957 -13010,5300:479,-9,-37,0,0,0.153938 -13011,5300:478,-8,-37,0,0,0.158639 -13012,5300:477,-7,-37,0,0,0.163441 -13013,5300:476,-6,-37,0,0,0.184535 -13014,5300:475,-5,-37,0,0,0.180534 -13015,5300:374,-4,-37,0,0,0.177919 -13016,5300:373,-3,-37,0,0,0.189471 -13017,5300:372,-2,-37,0,0,0.197812 -13018,5300:371,-1,-37,0,0,0.196511 -13019,3300:371,0,-37,0,0,0.181143 -13020,3300:371,1,-37,0,0,0.168648 -13021,3300:372,2,-37,0,0,0.17678 -13022,3300:373,3,-37,0,0,0.174252 -13023,3300:374,4,-37,0,0,0.174622 -13889,3317:455,175,-35,0,0,0.22211 -13024,3300:475,5,-37,0,0,0.166328 -13025,3300:476,6,-37,0,0,0.161415 -13026,3300:477,7,-37,0,0,0.155537 -13027,3300:478,8,-37,0,0,0.156362 -13028,3300:479,9,-37,0,0,0.159257 -13029,3301:370,10,-37,0,0,0.16849 -13030,3301:371,11,-37,0,0,0.167213 -13031,3301:372,12,-37,0,0,0.156444 -13032,3301:373,13,-37,0,0,0.155564 -13033,3301:374,14,-37,0,0,0.162629 -13034,3301:475,15,-37,0,0,0.169023 -13035,3301:476,16,-37,0,0,0.175052 -13036,3301:477,17,-37,0,0,0.1589 -13037,3301:478,18,-37,0,0,0.146464 -13038,3301:479,19,-37,0,0,0.142703 -13039,3302:370,20,-37,0,0,0.148896 -13040,3302:371,21,-37,0,0,0.154904 -13041,3302:372,22,-37,0,0,0.159877 -13042,3302:373,23,-37,0,0,0.159849 -13043,3302:374,24,-37,0,0,0.166143 -13044,3302:475,25,-37,0,0,0.167786 -13045,3302:476,26,-37,0,0,0.165163 -13046,3302:477,27,-37,0,0,0.151558 -13047,3302:478,28,-37,0,0,0.150491 -13048,3302:479,29,-37,0,0,0.163245 -13049,3303:370,30,-37,0,0,0.17587 -13050,3303:371,31,-37,0,0,0.175646 -13051,3303:372,32,-37,0,0,0.174519 -13052,3303:373,33,-37,0,0,0.170864 -13053,3303:374,34,-37,0,0,0.166827 -13054,3303:475,35,-37,0,0,0.15956 -13055,3303:476,36,-37,0,0,0.154474 -13056,3303:477,37,-37,0,0,0.157627 -13057,3303:478,38,-37,0,0,0.156634 -13058,3303:479,39,-37,0,0,0.151241 -13059,3304:370,40,-37,0,0,0.14703 -13060,3304:371,41,-37,0,0,0.149352 -13061,3304:372,42,-37,0,0,0.161081 -13062,3304:373,43,-37,0,0,0.160832 -13063,3304:374,44,-37,0,0,0.161637 -13064,3304:475,45,-37,0,0,0.157859 -13065,3304:476,46,-37,0,0,0.154743 -13066,3304:477,47,-37,0,0,0.150478 -13067,3304:478,48,-37,0,0,0.142301 -13068,3304:479,49,-37,0,0,0.137103 -13069,3305:370,50,-37,0,0,0.137822 -13070,3305:371,51,-37,0,0,0.138789 -13071,3305:372,52,-37,0,0,0.137274 -13072,3305:373,53,-37,0,0,0.133711 -13073,3305:374,54,-37,0,0,0.142088 -13074,3305:475,55,-37,0,0,0.155456 -13075,3305:476,56,-37,0,0,0.148389 -13076,3305:477,57,-37,0,0,0.14249 -13077,3305:478,58,-37,0,0,0.143282 -13078,3305:479,59,-37,0,0,0.14977 -13079,3306:370,60,-37,0,0,0.162265 -13080,3306:371,61,-37,0,0,0.180519 -13081,3306:372,62,-37,0,0,0.146786 -13082,3306:373,63,-37,0,0,0.13426 -13083,3306:374,64,-37,0,0,0.142766 -13084,3306:475,65,-37,0,0,0.128746 -13085,3306:476,66,-37,0,0,0.140518 -13086,3306:477,67,-37,0,0,0.138838 -13087,3306:478,68,-37,0,0,0.139701 -13088,3306:479,69,-37,0,0,0.147883 -13089,3307:370,70,-37,0,0,0.14725 -13090,3307:371,71,-37,0,0,0.146208 -13091,3307:372,72,-37,0,0,0.156823 -13092,3307:374,74,-37,0,0,0.178566 -13093,3307:475,75,-37,0,0,0.18093 -13094,3307:476,76,-37,0,0,0.17584 -13095,3307:477,77,-37,0,0,0.18093 -13096,3307:478,78,-37,0,0,0.176108 -13097,3307:479,79,-37,0,0,0.178898 -13098,3308:370,80,-37,0,0,0.175706 -13099,3308:371,81,-37,0,0,0.180792 -13100,3308:372,82,-37,0,0,0.170602 -13101,3308:373,83,-37,0,0,0.201622 -13102,3308:374,84,-37,0,0,0.191642 -13103,3308:475,85,-37,0,0,0.174312 -13104,3308:476,86,-37,0,0,0.190499 -13105,3308:477,87,-37,0,0,0.199349 -13106,3308:478,88,-37,0,0,0.205352 -13107,3308:479,89,-37,0,0,0.200138 -13108,3309:370,90,-37,0,0,0.18884 -13109,3309:371,91,-37,0,0,0.186741 -13110,3309:372,92,-37,0,0,0.186866 -13111,3309:373,93,-37,0,0,0.184041 -13112,3309:374,94,-37,0,0,0.179593 -13113,3309:475,95,-37,0,0,0.16849 -13114,3309:476,96,-37,0,0,0.16354 -13115,3309:477,97,-37,0,0,0.157914 -13116,3309:478,98,-37,0,0,0.162937 -13117,3309:479,99,-37,0,0,0.170559 -13118,3310:370,100,-37,0,0,0.172354 -13119,3310:371,101,-37,0,0,0.15996 -13120,3310:372,102,-37,0,0,0.170893 -13121,3310:373,103,-37,0,0,0.166927 -13122,3310:374,104,-37,0,0,0.175676 -13123,3310:475,105,-37,0,0,0.181265 -13124,3310:476,106,-37,0,0,0.180853 -13125,3310:477,107,-37,0,0,0.190134 -13126,3310:478,108,-37,0,0,0.190467 -13127,3310:479,109,-37,0,0,0.167241 -13128,3311:370,110,-37,0,0,0.173102 -13129,3311:371,111,-37,0,0,0.20187 -13130,3311:372,112,-37,0,0,0.216047 -13131,3311:373,113,-37,0,0,0.216639 -13132,3311:374,114,-37,0,0,0.202334 -13133,3311:475,115,-37,0,0,0.189329 -13134,3311:476,116,-37,0,0,0.196771 -13135,3311:477,117,-37,0,0,0.201936 -13136,3311:478,118,-37,0,0,0.193543 -13137,3311:479,119,-37,0,0,0.192903 -13138,3312:370,120,-37,0,0,0.211471 -13139,3312:371,121,-37,0,0,0.21711 -13140,3312:372,122,-37,0,0,0.213672 -13141,3312:373,123,-37,0,0,0.213516 -13142,3312:374,124,-37,0,0,0.214156 -13143,3312:475,125,-37,0,0,0.213223 -13144,3312:476,126,-37,0,0,0.210974 -13145,3312:477,127,-37,0,0,0.215091 -13146,3312:478,128,-37,0,0,0.216604 -13147,3312:479,129,-37,0,0,0.214087 -13148,3313:370,130,-37,0,0,0.214259 -13149,3313:371,131,-37,0,0,0.21556 -13150,3313:372,132,-37,0,0,0.214311 -13151,3313:373,133,-37,0,0,0.21238 -13152,3313:374,134,-37,0,0,0.211197 -13153,3313:475,135,-37,0,0,0.212294 -13154,3313:476,136,-37,0,0,0.216988 -13155,3313:477,137,-37,0,0,0.217232 -13156,3313:478,138,-37,0,0,0.211162 -13157,3313:479,139,-37,0,0,0.210478 -13158,3314:370,140,-37,0,0,0.222306 -13159,3314:371,141,-37,0,0,0.220041 -13160,3314:372,142,-37,0,0,0.223552 -13161,3314:373,143,-37,0,0,0.226544 -13162,3314:374,144,-37,0,0,0.231734 -13163,3314:475,145,-37,0,0,0.245564 -13164,3314:476,146,-37,0,0,0.242777 -13165,3314:477,147,-37,0,0,0.219846 -13166,3314:478,148,-37,0,0,0.216621 -13167,3314:479,149,-37,0,0,0.220693 -13168,3315:370,150,-37,0,0,0.232045 -13169,3315:371,151,-37,0,0,0.235912 -13170,3315:372,152,-37,0,0,0.244177 -13171,3315:373,153,-37,0,0,0.242078 -13172,3315:374,154,-37,0,0,0.222981 -13173,3315:475,155,-37,0,0,0.229583 -13174,3315:476,156,-37,0,0,0.223195 -13175,3315:477,157,-37,0,0,0.222057 -13176,3315:478,158,-37,0,0,0.223855 -13177,3315:479,159,-37,0,0,0.229419 -13178,3316:370,160,-37,0,0,0.231022 -13179,3316:371,161,-37,0,0,0.227138 -13180,3316:372,162,-37,0,0,0.232466 -13181,3316:373,163,-37,0,0,0.230383 -13182,3316:374,164,-37,0,0,0.232705 -13183,3316:475,165,-37,0,0,0.234692 -13184,3316:476,166,-37,0,0,0.23532 -13185,3316:477,167,-37,0,0,0.234526 -13186,3316:478,168,-37,0,0,0.244594 -13187,3316:479,169,-37,0,0,0.243079 -13188,3317:370,170,-37,0,0,0.229619 -13189,3317:371,171,-37,0,0,0.201539 -13190,3317:372,172,-37,0,0,0.196885 -13191,3317:373,173,-37,0,0,0.2024 -13192,3317:374,174,-37,0,0,0.201655 -13193,3317:475,175,-37,0,0,0.200549 -13194,3317:476,176,-37,0,0,0.198351 -13195,3317:477,177,-37,0,0,0.195055 -13196,3317:478,178,-37,0,0,0.191531 -13197,3317:479,179,-37,0,0,0.189992 -13198,3318:370,180,-37,0,0,0.190451 -13199,5318:360,-180,-36,0,0,0.22027 -13200,5317:469,-179,-36,0,0,0.222039 -13201,5317:468,-178,-36,0,0,0.223748 -13202,5317:467,-177,-36,0,0,0.227428 -13203,5317:466,-176,-36,0,0,0.22631 -13204,5317:465,-175,-36,0,0,0.223516 -13205,5317:364,-174,-36,0,0,0.226778 -13206,5317:363,-173,-36,0,0,0.242852 -13207,5317:362,-172,-36,0,0,0.237044 -13208,5317:361,-171,-36,0,0,0.244367 -13209,5317:360,-170,-36,0,0,0.253996 -13210,5316:469,-169,-36,0,0,0.262896 -13211,5316:468,-168,-36,0,0,0.252617 -13212,5316:467,-167,-36,0,0,0.249064 -13213,5316:466,-166,-36,0,0,0.251087 -13214,5316:465,-165,-36,0,0,0.25283 -13215,5316:364,-164,-36,0,0,0.251977 -13216,5316:363,-163,-36,0,0,0.25283 -13217,5316:362,-162,-36,0,0,0.257673 -13218,5316:361,-161,-36,0,0,0.258421 -13219,5316:360,-160,-36,0,0,0.258953 -13220,5315:469,-159,-36,0,0,0.258973 -13221,5315:468,-158,-36,0,0,0.260256 -13222,5315:467,-157,-36,0,0,0.265092 -13223,5315:466,-156,-36,0,0,0.267682 -13224,5315:465,-155,-36,0,0,0.268407 -13225,5315:364,-154,-36,0,0,0.268791 -13226,5315:363,-153,-36,0,0,0.272258 -13227,5315:362,-152,-36,0,0,0.27342 -13228,5315:361,-151,-36,0,0,0.270025 -13229,5315:360,-150,-36,0,0,0.268367 -13230,5314:469,-149,-36,0,0,0.272401 -13231,5314:468,-148,-36,0,0,0.270633 -13232,5314:467,-147,-36,0,0,0.270531 -13233,5314:466,-146,-36,0,0,0.270207 -13234,5314:465,-145,-36,0,0,0.268529 -13235,5314:364,-144,-36,0,0,0.269964 -13236,5314:363,-143,-36,0,0,0.274462 -13237,5314:362,-142,-36,0,0,0.275036 -13238,5314:361,-141,-36,0,0,0.272523 -13239,5314:360,-140,-36,0,0,0.272075 -13240,5313:469,-139,-36,0,0,0.269195 -13241,5313:468,-138,-36,0,0,0.264312 -13242,5313:467,-137,-36,0,0,0.260514 -13243,5313:466,-136,-36,0,0,0.260415 -13244,5313:465,-135,-36,0,0,0.258579 -13245,5313:364,-134,-36,0,0,0.257399 -13246,5313:363,-133,-36,0,0,0.25996 -13247,5313:362,-132,-36,0,0,0.261902 -13248,5313:361,-131,-36,0,0,0.258775 -13249,5313:360,-130,-36,0,0,0.255557 -13250,5312:469,-129,-36,0,0,0.255674 -13251,5312:468,-128,-36,0,0,0.260039 -13252,5312:467,-127,-36,0,0,0.263633 -13253,5312:466,-126,-36,0,0,0.261167 -13254,5312:465,-125,-36,0,0,0.26083 -13255,5312:364,-124,-36,0,0,0.259762 -13256,5312:363,-123,-36,0,0,0.259288 -13257,5312:362,-122,-36,0,0,0.256281 -13258,5312:361,-121,-36,0,0,0.253782 -13259,5312:360,-120,-36,0,0,0.252345 -13260,5311:469,-119,-36,0,0,0.247186 -13261,5311:468,-118,-36,0,0,0.248085 -13262,5311:467,-117,-36,0,0,0.244689 -13263,5311:466,-116,-36,0,0,0.24507 -13264,5311:465,-115,-36,0,0,0.243969 -13265,5311:364,-114,-36,0,0,0.241947 -13266,5311:363,-113,-36,0,0,0.232595 -13267,5311:362,-112,-36,0,0,0.233992 -13268,5311:361,-111,-36,0,0,0.2393 -13269,5311:360,-110,-36,0,0,0.230402 -13270,5310:469,-109,-36,0,0,0.225896 -13271,5310:468,-108,-36,0,0,0.22275 -13272,5310:467,-107,-36,0,0,0.223605 -13273,5310:466,-106,-36,0,0,0.226166 -13274,5310:465,-105,-36,0,0,0.221189 -13275,5310:364,-104,-36,0,0,0.219266 -13276,5310:363,-103,-36,0,0,0.222341 -13277,5310:362,-102,-36,0,0,0.214346 -13278,5310:361,-101,-36,0,0,0.215595 -13279,5310:360,-100,-36,0,0,0.219142 -13280,5309:469,-99,-36,0,0,0.219935 -13281,5309:468,-98,-36,0,0,0.216604 -13282,5309:467,-97,-36,0,0,0.213051 -13283,5309:466,-96,-36,0,0,0.210838 -13284,5309:465,-95,-36,0,0,0.211762 -13285,5309:364,-94,-36,0,0,0.213292 -13286,5309:363,-93,-36,0,0,0.215768 -13287,5309:362,-92,-36,0,0,0.216883 -13288,5309:361,-91,-36,0,0,0.211334 -13289,5309:360,-90,-36,0,0,0.216429 -13290,5308:469,-89,-36,0,0,0.214744 -13291,5308:468,-88,-36,0,0,0.211676 -13292,5308:467,-87,-36,0,0,0.212483 -13293,5308:466,-86,-36,0,0,0.209507 -13294,5308:465,-85,-36,0,0,0.21697 -13295,5308:364,-84,-36,0,0,0.214779 -13296,5308:363,-83,-36,0,0,0.211556 -13297,5308:362,-82,-36,0,0,0.212071 -13298,5308:361,-81,-36,0,0,0.215664 -13299,5308:360,-80,-36,0,0,0.216029 -13300,5307:469,-79,-36,0,0,0.2208 -13301,5307:468,-78,-36,0,0,0.220905 -13302,5307:467,-77,-36,0,0,0.219494 -13303,5307:466,-76,-36,0,0,0.218879 -13304,5307:465,-75,-36,0,0,0.230475 -13305,5306:467,-67,-36,0,0,0.25681 -13306,5306:466,-66,-36,0,0,0.251107 -13307,5306:465,-65,-36,0,0,0.253141 -13308,5306:364,-64,-36,0,0,0.249891 -13309,5306:363,-63,-36,0,0,0.243912 -13310,5306:362,-62,-36,0,0,0.247664 -13311,5306:361,-61,-36,0,0,0.246574 -13312,5306:360,-60,-36,0,0,0.220058 -13313,5305:469,-59,-36,0,0,0.186788 -13314,5305:468,-58,-36,0,0,0.214225 -13315,5305:467,-57,-36,0,0,0.264872 -13316,5305:466,-56,-36,0,0,0.28056 -13317,5305:465,-55,-36,0,0,0.305211 -13318,5305:364,-54,-36,0,0,0.342157 -13319,5305:363,-53,-36,0,0,0.349454 -13320,5305:362,-52,-36,0,0,0.300547 -13321,5305:361,-51,-36,0,0,0.279172 -13322,5305:360,-50,-36,0,0,0.243647 -13323,5304:469,-49,-36,0,0,0.233789 -13324,5304:468,-48,-36,0,0,0.235468 -13325,5304:467,-47,-36,0,0,0.235672 -13326,5304:466,-46,-36,0,0,0.22951 -13327,5304:465,-45,-36,0,0,0.222306 -13328,5304:364,-44,-36,0,0,0.217844 -13329,5304:363,-43,-36,0,0,0.214173 -13330,5304:362,-42,-36,0,0,0.210376 -13331,5304:361,-41,-36,0,0,0.210872 -13332,5304:360,-40,-36,0,0,0.210427 -13333,5303:469,-39,-36,0,0,0.200961 -13334,5303:468,-38,-36,0,0,0.202135 -13335,5303:467,-37,-36,0,0,0.200879 -13336,5303:466,-36,-36,0,0,0.193303 -13337,5303:465,-35,-36,0,0,0.186538 -13338,5303:364,-34,-36,0,0,0.182166 -13339,5303:363,-33,-36,0,0,0.19023 -13340,5303:362,-32,-36,0,0,0.189534 -13341,5303:361,-31,-36,0,0,0.176079 -13342,5303:360,-30,-36,0,0,0.172809 -13343,5302:469,-29,-36,0,0,0.185853 -13344,5302:468,-28,-36,0,0,0.178325 -13345,5302:467,-27,-36,0,0,0.178717 -13346,5302:466,-26,-36,0,0,0.193463 -13347,5302:465,-25,-36,0,0,0.178853 -13348,5302:364,-24,-36,0,0,0.195976 -13349,5302:363,-23,-36,0,0,0.199251 -13350,5302:362,-22,-36,0,0,0.209694 -13351,5302:361,-21,-36,0,0,0.208912 -13352,5302:360,-20,-36,0,0,0.200154 -13353,5301:469,-19,-36,0,0,0.17816 -13354,5301:468,-18,-36,0,0,0.198122 -13355,5301:467,-17,-36,0,0,0.18364 -13356,5301:466,-16,-36,0,0,0.162811 -13357,5301:465,-15,-36,0,0,0.169139 -13358,5301:364,-14,-36,0,0,0.171534 -13359,5301:363,-13,-36,0,0,0.172061 -13360,5301:362,-12,-36,0,0,0.187694 -13361,5301:361,-11,-36,0,0,0.184566 -13362,5301:360,-10,-36,0,0,0.181707 -13363,5300:469,-9,-36,0,0,0.182136 -13364,5300:468,-8,-36,0,0,0.18985 -13365,5300:467,-7,-36,0,0,0.193383 -13366,5300:466,-6,-36,0,0,0.19034 -13367,5300:465,-5,-36,0,0,0.197275 -13368,5300:364,-4,-36,0,0,0.187835 -13369,5300:363,-3,-36,0,0,0.184891 -13370,5300:362,-2,-36,0,0,0.203497 -13371,5300:361,-1,-36,0,0,0.198236 -13372,3300:361,0,-36,0,0,0.189882 -13373,3300:361,1,-36,0,0,0.19142 -13374,3300:362,2,-36,0,0,0.187835 -13375,3300:363,3,-36,0,0,0.174963 -13376,3300:364,4,-36,0,0,0.176242 -13377,3300:465,5,-36,0,0,0.180033 -13378,3300:466,6,-36,0,0,0.173854 -13379,3300:467,7,-36,0,0,0.183194 -13380,3300:468,8,-36,0,0,0.193575 -13381,3300:469,9,-36,0,0,0.200483 -13382,3301:360,10,-36,0,0,0.19372 -13383,3301:361,11,-36,0,0,0.17005 -13384,3301:362,12,-36,0,0,0.167227 -13385,3301:363,13,-36,0,0,0.182902 -13386,3301:364,14,-36,0,0,0.184164 -13387,3301:465,15,-36,0,0,0.176138 -13388,3301:466,16,-36,0,0,0.175899 -13389,3301:467,17,-36,0,0,0.17325 -13390,3301:468,18,-36,0,0,0.157054 -13391,3301:469,19,-36,0,0,0.149809 -13392,3302:360,20,-36,0,0,0.155146 -13393,3302:361,21,-36,0,0,0.164103 -13394,3302:362,22,-36,0,0,0.163399 -13395,3302:363,23,-36,0,0,0.165617 -13396,3302:364,24,-36,0,0,0.178325 -13397,3302:465,25,-36,0,0,0.173132 -13398,3302:466,26,-36,0,0,0.180914 -13399,3302:467,27,-36,0,0,0.183363 -13400,3302:468,28,-36,0,0,0.173014 -13401,3302:469,29,-36,0,0,0.165418 -13402,3303:360,30,-36,0,0,0.190435 -13403,3303:361,31,-36,0,0,0.185589 -13404,3303:362,32,-36,0,0,0.172442 -13405,3303:363,33,-36,0,0,0.171958 -13406,3303:364,34,-36,0,0,0.171724 -13407,3303:465,35,-36,0,0,0.173559 -13408,3303:466,36,-36,0,0,0.167614 -13409,3303:467,37,-36,0,0,0.160582 -13410,3303:468,38,-36,0,0,0.160804 -13411,3303:469,39,-36,0,0,0.16354 -13412,3304:360,40,-36,0,0,0.16687 -13413,3304:361,41,-36,0,0,0.177739 -13414,3304:362,42,-36,0,0,0.169081 -13415,3304:363,43,-36,0,0,0.167413 -13416,3304:364,44,-36,0,0,0.164922 -13417,3304:465,45,-36,0,0,0.162419 -13418,3304:466,46,-36,0,0,0.158804 -13419,3304:467,47,-36,0,0,0.149299 -13420,3304:468,48,-36,0,0,0.141901 -13421,3304:469,49,-36,0,0,0.147663 -13422,3305:360,50,-36,0,0,0.141726 -13423,3305:361,51,-36,0,0,0.141276 -13424,3305:362,52,-36,0,0,0.136569 -13425,3305:363,53,-36,0,0,0.141926 -13426,3305:364,54,-36,0,0,0.148791 -13427,3305:465,55,-36,0,0,0.155416 -13428,3305:466,56,-36,0,0,0.195507 -13429,3305:467,57,-36,0,0,0.170399 -13430,3305:468,58,-36,0,0,0.163245 -13431,3305:469,59,-36,0,0,0.203797 -13432,3306:360,60,-36,0,0,0.226112 -13433,3306:361,61,-36,0,0,0.202699 -13434,3306:362,62,-36,0,0,0.207253 -13435,3306:363,63,-36,0,0,0.148609 -13436,3306:364,64,-36,0,0,0.16717 -13437,3306:465,65,-36,0,0,0.188322 -13438,3306:466,66,-36,0,0,0.146156 -13439,3306:467,67,-36,0,0,0.135278 -13440,3306:468,68,-36,0,0,0.141226 -13441,3306:469,69,-36,0,0,0.151479 -13442,3307:360,70,-36,0,0,0.162447 -13443,3307:361,71,-36,0,0,0.181601 -13444,3307:362,72,-36,0,0,0.198907 -13445,3307:364,74,-36,0,0,0.238459 -13446,3307:465,75,-36,0,0,0.238571 -13447,3307:466,76,-36,0,0,0.211008 -13448,3307:467,77,-36,0,0,0.197503 -13449,3307:468,78,-36,0,0,0.200499 -13450,3307:469,79,-36,0,0,0.196252 -13451,3308:360,80,-36,0,0,0.192583 -13452,3308:361,81,-36,0,0,0.196106 -13453,3308:362,82,-36,0,0,0.19417 -13454,3308:363,83,-36,0,0,0.205436 -13455,3308:364,84,-36,0,0,0.198792 -13456,3308:465,85,-36,0,0,0.191992 -13457,3308:466,86,-36,0,0,0.199415 -13458,3308:467,87,-36,0,0,0.211265 -13459,3308:468,88,-36,0,0,0.204749 -13460,3308:469,89,-36,0,0,0.195944 -13461,3309:360,90,-36,0,0,0.187084 -13462,3309:361,91,-36,0,0,0.184891 -13463,3309:362,92,-36,0,0,0.186632 -13464,3309:363,93,-36,0,0,0.184535 -13465,3309:364,94,-36,0,0,0.176064 -13466,3309:465,95,-36,0,0,0.171783 -13467,3309:466,96,-36,0,0,0.175453 -13468,3309:467,97,-36,0,0,0.175646 -13469,3309:468,98,-36,0,0,0.163484 -13470,3309:469,99,-36,0,0,0.176855 -13471,3310:360,100,-36,0,0,0.191133 -13472,3310:361,101,-36,0,0,0.174563 -13473,3310:362,102,-36,0,0,0.173957 -13474,3310:363,103,-36,0,0,0.184365 -13475,3310:364,104,-36,0,0,0.18096 -13476,3310:465,105,-36,0,0,0.17831 -13477,3310:466,106,-36,0,0,0.182733 -13478,3310:467,107,-36,0,0,0.221366 -13479,3310:468,108,-36,0,0,0.218387 -13480,3310:469,109,-36,0,0,0.192503 -13481,3311:360,110,-36,0,0,0.217267 -13482,3311:361,111,-36,0,0,0.217127 -13483,3311:362,112,-36,0,0,0.213793 -13484,3311:363,113,-36,0,0,0.214242 -13485,3311:364,114,-36,0,0,0.212002 -13486,3311:465,115,-36,0,0,0.208709 -13487,3311:466,116,-36,0,0,0.223337 -13488,3311:467,117,-36,0,0,0.222946 -13489,3311:468,118,-36,0,0,0.221454 -13490,3311:469,119,-36,0,0,0.217145 -13491,3312:360,120,-36,0,0,0.218019 -13492,3312:361,121,-36,0,0,0.221366 -13493,3312:362,122,-36,0,0,0.218317 -13494,3312:363,123,-36,0,0,0.21636 -13495,3312:364,124,-36,0,0,0.216883 -13496,3312:465,125,-36,0,0,0.217879 -13497,3312:466,126,-36,0,0,0.22057 -13498,3312:467,127,-36,0,0,0.222537 -13499,3312:468,128,-36,0,0,0.22373 -13500,3312:469,129,-36,0,0,0.223071 -13501,3313:360,130,-36,0,0,0.219617 -13502,3313:361,131,-36,0,0,0.219424 -13503,3313:362,132,-36,0,0,0.219213 -13504,3313:363,133,-36,0,0,0.218177 -13505,3313:364,134,-36,0,0,0.219565 -13506,3313:465,135,-36,0,0,0.222039 -13507,3313:466,136,-36,0,0,0.220517 -13508,3313:467,137,-36,0,0,0.219142 -13509,3313:468,138,-36,0,0,0.22482 -13510,3313:469,139,-36,0,0,0.231204 -13511,3314:360,140,-36,0,0,0.235006 -13512,3314:361,141,-36,0,0,0.253821 -13513,3314:362,142,-36,0,0,0.256574 -13514,3314:363,143,-36,0,0,0.240687 -13515,3314:364,144,-36,0,0,0.234582 -13516,3314:465,145,-36,0,0,0.25583 -13517,3314:466,146,-36,0,0,0.259624 -13518,3314:467,147,-36,0,0,0.260395 -13519,3314:468,148,-36,0,0,0.291978 -13520,3314:469,149,-36,0,0,0.278202 -13521,3315:360,150,-36,0,0,0.266556 -13522,3315:361,151,-36,0,0,0.258362 -13523,3315:362,152,-36,0,0,0.252093 -13524,3315:363,153,-36,0,0,0.236932 -13525,3315:364,154,-36,0,0,0.23671 -13526,3315:465,155,-36,0,0,0.238403 -13527,3315:466,156,-36,0,0,0.236765 -13528,3315:467,157,-36,0,0,0.241099 -13529,3315:468,158,-36,0,0,0.242588 -13530,3315:469,159,-36,0,0,0.241062 -13531,3316:360,160,-36,0,0,0.241758 -13532,3316:361,161,-36,0,0,0.237825 -13533,3316:362,162,-36,0,0,0.242381 -13534,3316:363,163,-36,0,0,0.246975 -13535,3316:364,164,-36,0,0,0.251242 -13536,3316:465,165,-36,0,0,0.250065 -13537,3316:466,166,-36,0,0,0.247836 -13538,3317:361,171,-36,0,0,0.248162 -13539,3317:362,172,-36,0,0,0.204917 -13540,3317:363,173,-36,0,0,0.20485 -13541,3317:364,174,-36,0,0,0.209541 -13542,3317:465,175,-36,0,0,0.212604 -13543,3317:466,176,-36,0,0,0.207067 -13544,3317:467,177,-36,0,0,0.204114 -13545,3317:468,178,-36,0,0,0.206427 -13546,3317:469,179,-36,0,0,0.21381 -13547,3318:360,180,-36,0,0,0.22027 -13548,5318:350,-180,-35,0,0,0.216412 -13549,5317:459,-179,-35,0,0,0.223766 -13550,5317:458,-178,-35,0,0,0.230056 -13551,5317:457,-177,-35,0,0,0.236042 -13552,5317:456,-176,-35,0,0,0.242418 -13553,5317:455,-175,-35,0,0,0.235246 -13554,5317:354,-174,-35,0,0,0.234858 -13555,5317:353,-173,-35,0,0,0.281016 -13556,5317:352,-172,-35,0,0,0.282972 -13557,5317:351,-171,-35,0,0,0.26867 -13558,5317:350,-170,-35,0,0,0.246861 -13559,5316:459,-169,-35,0,0,0.260692 -13560,5316:458,-168,-35,0,0,0.270126 -13561,5316:457,-167,-35,0,0,0.257713 -13562,5316:456,-166,-35,0,0,0.258343 -13563,5316:455,-165,-35,0,0,0.262398 -13564,5316:354,-164,-35,0,0,0.263633 -13565,5316:353,-163,-35,0,0,0.263234 -13566,5316:352,-162,-35,0,0,0.264512 -13567,5316:351,-161,-35,0,0,0.266455 -13568,5316:350,-160,-35,0,0,0.269094 -13569,5315:459,-159,-35,0,0,0.269276 -13570,5315:458,-158,-35,0,0,0.27116 -13571,5315:457,-157,-35,0,0,0.276657 -13572,5315:456,-156,-35,0,0,0.281577 -13573,5315:455,-155,-35,0,0,0.284621 -13574,5315:354,-154,-35,0,0,0.285836 -13575,5315:353,-153,-35,0,0,0.286781 -13576,5315:352,-152,-35,0,0,0.284496 -13577,5315:351,-151,-35,0,0,0.281286 -13578,5315:350,-150,-35,0,0,0.28412 -13579,5314:459,-149,-35,0,0,0.289584 -13580,5314:458,-148,-35,0,0,0.28933 -13581,5314:457,-147,-35,0,0,0.285459 -13582,5314:456,-146,-35,0,0,0.287728 -13583,5314:455,-145,-35,0,0,0.291215 -13584,5314:354,-144,-35,0,0,0.294406 -13585,5314:353,-143,-35,0,0,0.294555 -13586,5314:352,-142,-35,0,0,0.293808 -13587,5314:351,-141,-35,0,0,0.290642 -13588,5314:350,-140,-35,0,0,0.288507 -13589,5313:459,-139,-35,0,0,0.286823 -13590,5313:458,-138,-35,0,0,0.281245 -13591,5313:457,-137,-35,0,0,0.276267 -13592,5313:456,-136,-35,0,0,0.274688 -13593,5313:455,-135,-35,0,0,0.276637 -13594,5313:354,-134,-35,0,0,0.276739 -13595,5313:353,-133,-35,0,0,0.276739 -13596,5313:352,-132,-35,0,0,0.27524 -13597,5313:351,-131,-35,0,0,0.274462 -13598,5313:350,-130,-35,0,0,0.278367 -13599,5312:459,-129,-35,0,0,0.27847 -13600,5312:458,-128,-35,0,0,0.276616 -13601,5312:457,-127,-35,0,0,0.278057 -13602,5312:456,-126,-35,0,0,0.277357 -13603,5312:455,-125,-35,0,0,0.276677 -13604,5312:354,-124,-35,0,0,0.273849 -13605,5312:353,-123,-35,0,0,0.273012 -13606,5312:352,-122,-35,0,0,0.271384 -13607,5312:351,-121,-35,0,0,0.268488 -13608,5312:350,-120,-35,0,0,0.264432 -13609,5311:459,-119,-35,0,0,0.263733 -13610,5311:458,-118,-35,0,0,0.26212 -13611,5311:457,-117,-35,0,0,0.258263 -13612,5311:456,-116,-35,0,0,0.256732 -13613,5311:455,-115,-35,0,0,0.260474 -13614,5311:354,-114,-35,0,0,0.257261 -13615,5311:353,-113,-35,0,0,0.24709 -13616,5311:352,-112,-35,0,0,0.248124 -13617,5311:351,-111,-35,0,0,0.252345 -13618,5311:350,-110,-35,0,0,0.253568 -13619,5310:459,-109,-35,0,0,0.246784 -13620,5310:458,-108,-35,0,0,0.241495 -13621,5310:457,-107,-35,0,0,0.236672 -13622,5310:456,-106,-35,0,0,0.234932 -13623,5310:455,-105,-35,0,0,0.235801 -13624,5310:354,-104,-35,0,0,0.231149 -13625,5310:353,-103,-35,0,0,0.234342 -13626,5310:352,-102,-35,0,0,0.228712 -13627,5310:351,-101,-35,0,0,0.228259 -13628,5310:350,-100,-35,0,0,0.229038 -13629,5309:459,-99,-35,0,0,0.230292 -13630,5309:458,-98,-35,0,0,0.228277 -13631,5309:457,-97,-35,0,0,0.228585 -13632,5309:456,-96,-35,0,0,0.232595 -13633,5309:455,-95,-35,0,0,0.226778 -13634,5309:354,-94,-35,0,0,0.222217 -13635,5309:353,-93,-35,0,0,0.225035 -13636,5309:352,-92,-35,0,0,0.229419 -13637,5309:351,-91,-35,0,0,0.227698 -13638,5309:350,-90,-35,0,0,0.225071 -13639,5308:459,-89,-35,0,0,0.221224 -13640,5308:458,-88,-35,0,0,0.221012 -13641,5308:457,-87,-35,0,0,0.223801 -13642,5308:456,-86,-35,0,0,0.225107 -13643,5308:455,-85,-35,0,0,0.223284 -13644,5308:354,-84,-35,0,0,0.222555 -13645,5308:353,-83,-35,0,0,0.21858 -13646,5308:352,-82,-35,0,0,0.222128 -13647,5308:351,-81,-35,0,0,0.223498 -13648,5308:350,-80,-35,0,0,0.225018 -13649,5307:459,-79,-35,0,0,0.227626 -13650,5307:458,-78,-35,0,0,0.228639 -13651,5307:457,-77,-35,0,0,0.230201 -13652,5307:456,-76,-35,0,0,0.229383 -13653,5307:455,-75,-35,0,0,0.23988 -13654,5306:455,-65,-35,0,0,0.269883 -13655,5306:354,-64,-35,0,0,0.267199 -13656,5306:353,-63,-35,0,0,0.266576 -13657,5306:352,-62,-35,0,0,0.267259 -13658,5306:351,-61,-35,0,0,0.264932 -13659,5306:350,-60,-35,0,0,0.233605 -13660,5305:459,-59,-35,0,0,0.196544 -13661,5305:458,-58,-35,0,0,0.249853 -13662,5305:457,-57,-35,0,0,0.275425 -13663,5305:456,-56,-35,0,0,0.275691 -13664,5305:455,-55,-35,0,0,0.313353 -13665,5305:354,-54,-35,0,0,0.335413 -13666,5305:353,-53,-35,0,0,0.321478 -13667,5305:352,-52,-35,0,0,0.286886 -13668,5305:351,-51,-35,0,0,0.25353 -13669,5305:350,-50,-35,0,0,0.244784 -13670,5304:459,-49,-35,0,0,0.244879 -13671,5304:458,-48,-35,0,0,0.250219 -13672,5304:457,-47,-35,0,0,0.238757 -13673,5304:456,-46,-35,0,0,0.234286 -13674,5304:455,-45,-35,0,0,0.227319 -13675,5304:354,-44,-35,0,0,0.220587 -13676,5304:353,-43,-35,0,0,0.216778 -13677,5304:352,-42,-35,0,0,0.214623 -13678,5304:351,-41,-35,0,0,0.212449 -13679,5304:350,-40,-35,0,0,0.212724 -13680,5303:459,-39,-35,0,0,0.208284 -13681,5303:458,-38,-35,0,0,0.20495 -13682,5303:457,-37,-35,0,0,0.199563 -13683,5303:456,-36,-35,0,0,0.197959 -13684,5303:455,-35,-35,0,0,0.195588 -13685,5303:354,-34,-35,0,0,0.196836 -13686,5303:353,-33,-35,0,0,0.189676 -13687,5303:352,-32,-35,0,0,0.184969 -13688,5303:351,-31,-35,0,0,0.181265 -13689,5303:350,-30,-35,0,0,0.197438 -13690,5302:459,-29,-35,0,0,0.219653 -13691,5302:458,-28,-35,0,0,0.208369 -13692,5302:457,-27,-35,0,0,0.206949 -13693,5302:456,-26,-35,0,0,0.211111 -13694,5302:455,-25,-35,0,0,0.195281 -13695,5302:354,-24,-35,0,0,0.204231 -13696,5302:353,-23,-35,0,0,0.220393 -13697,5302:352,-22,-35,0,0,0.228187 -13698,5302:351,-21,-35,0,0,0.216099 -13699,5302:350,-20,-35,0,0,0.211848 -13700,5301:459,-19,-35,0,0,0.211882 -13701,5301:458,-18,-35,0,0,0.207743 -13702,5301:457,-17,-35,0,0,0.206679 -13703,5301:456,-16,-35,0,0,0.17816 -13704,5301:455,-15,-35,0,0,0.170631 -13705,5301:354,-14,-35,0,0,0.199365 -13706,5301:353,-13,-35,0,0,0.218072 -13707,5301:352,-12,-35,0,0,0.234102 -13708,5301:351,-11,-35,0,0,0.230056 -13709,5301:350,-10,-35,0,0,0.228349 -13710,5300:459,-9,-35,0,0,0.242343 -13711,5300:458,-8,-35,0,0,0.236246 -13712,5300:457,-7,-35,0,0,0.237025 -13713,5300:456,-6,-35,0,0,0.226418 -13714,5300:455,-5,-35,0,0,0.209031 -13715,5300:354,-4,-35,0,0,0.210155 -13716,5300:353,-3,-35,0,0,0.224838 -13717,5300:352,-2,-35,0,0,0.227283 -13718,5300:351,-1,-35,0,0,0.218072 -13719,3300:351,0,-35,0,0,0.218089 -13720,3300:351,1,-35,0,0,0.220729 -13721,3300:352,2,-35,0,0,0.219829 -13722,3300:353,3,-35,0,0,0.217512 -13723,3300:354,4,-35,0,0,0.211162 -13724,3300:455,5,-35,0,0,0.199907 -13725,3300:456,6,-35,0,0,0.188699 -13726,3300:457,7,-35,0,0,0.193672 -13727,3300:458,8,-35,0,0,0.197112 -13728,3300:459,9,-35,0,0,0.205788 -13729,3301:350,10,-35,0,0,0.197584 -13730,3301:351,11,-35,0,0,0.189093 -13731,3301:352,12,-35,0,0,0.193639 -13732,3301:353,13,-35,0,0,0.21106 -13733,3301:354,14,-35,0,0,0.195265 -13734,3301:455,15,-35,0,0,0.209116 -13735,3301:456,16,-35,0,0,0.221561 -13736,3301:457,17,-35,0,0,0.202218 -13737,3301:458,18,-35,0,0,0.200105 -13738,3301:459,19,-35,0,0,0.210547 -13739,3302:350,20,-35,0,0,0.204465 -13740,3302:351,21,-35,0,0,0.195152 -13741,3302:352,22,-35,0,0,0.217564 -13742,3302:353,23,-35,0,0,0.229655 -13743,3302:354,24,-35,0,0,0.188605 -13744,3302:455,25,-35,0,0,0.187585 -13745,3302:456,26,-35,0,0,0.195669 -13746,3302:457,27,-35,0,0,0.19708 -13747,3302:458,28,-35,0,0,0.200253 -13748,3302:459,29,-35,0,0,0.187131 -13749,3303:350,30,-35,0,0,0.202516 -13750,3303:351,31,-35,0,0,0.225879 -13751,3303:352,32,-35,0,0,0.223569 -13752,3303:353,33,-35,0,0,0.202782 -13753,3303:354,34,-35,0,0,0.189109 -13754,3303:455,35,-35,0,0,0.18604 -13755,3303:456,36,-35,0,0,0.187053 -13756,3303:457,37,-35,0,0,0.182657 -13757,3303:458,38,-35,0,0,0.1769 -13758,3303:459,39,-35,0,0,0.174297 -13759,3304:350,40,-35,0,0,0.179321 -13760,3304:351,41,-35,0,0,0.182258 -13761,3304:352,42,-35,0,0,0.172236 -13762,3304:353,43,-35,0,0,0.168735 -13763,3304:354,44,-35,0,0,0.167084 -13764,3304:455,45,-35,0,0,0.162852 -13765,3304:456,46,-35,0,0,0.155416 -13766,3304:457,47,-35,0,0,0.147495 -13767,3304:458,48,-35,0,0,0.1496 -13768,3304:459,49,-35,0,0,0.152751 -13769,3305:350,50,-35,0,0,0.145032 -13770,3305:351,51,-35,0,0,0.144142 -13771,3305:352,52,-35,0,0,0.156674 -13772,3305:353,53,-35,0,0,0.162251 -13773,3305:354,54,-35,0,0,0.17973 -13774,3305:455,55,-35,0,0,0.178747 -13775,3305:456,56,-35,0,0,0.180321 -13776,3305:457,57,-35,0,0,0.240743 -13777,3305:458,58,-35,0,0,0.253024 -13778,3305:459,59,-35,0,0,0.279938 -13779,3306:350,60,-35,0,0,0.292744 -13780,3306:351,61,-35,0,0,0.278408 -13781,3306:352,62,-35,0,0,0.227175 -13782,3306:353,63,-35,0,0,0.236598 -13783,3306:354,64,-35,0,0,0.263534 -13784,3306:455,65,-35,0,0,0.270085 -13785,3306:456,66,-35,0,0,0.204632 -13786,3306:457,67,-35,0,0,0.205318 -13787,3306:458,68,-35,0,0,0.262458 -13788,3306:459,69,-35,0,0,0.271221 -13789,3307:350,70,-35,0,0,0.269822 -13790,3307:351,71,-35,0,0,0.26087 -13791,3307:352,72,-35,0,0,0.231387 -13792,3307:354,74,-35,0,0,0.25583 -13793,3307:455,75,-35,0,0,0.255205 -13794,3307:456,76,-35,0,0,0.221047 -13795,3307:457,77,-35,0,0,0.21556 -13796,3307:458,78,-35,0,0,0.228929 -13797,3307:459,79,-35,0,0,0.240574 -13798,3308:350,80,-35,0,0,0.235376 -13799,3308:351,81,-35,0,0,0.235394 -13800,3308:352,82,-35,0,0,0.229074 -13801,3308:353,83,-35,0,0,0.214519 -13802,3308:354,84,-35,0,0,0.209048 -13803,3308:455,85,-35,0,0,0.217284 -13804,3308:456,86,-35,0,0,0.230056 -13805,3308:457,87,-35,0,0,0.213344 -13806,3308:458,88,-35,0,0,0.20557 -13807,3308:459,89,-35,0,0,0.201258 -13808,3309:350,90,-35,0,0,0.195847 -13809,3309:351,91,-35,0,0,0.19609 -13810,3309:352,92,-35,0,0,0.195184 -13811,3309:353,93,-35,0,0,0.195523 -13812,3309:354,94,-35,0,0,0.192519 -13813,3309:455,95,-35,0,0,0.187616 -13814,3309:456,96,-35,0,0,0.200335 -13815,3309:457,97,-35,0,0,0.207405 -13816,3309:458,98,-35,0,0,0.216168 -13817,3309:459,99,-35,0,0,0.238497 -13818,3310:350,100,-35,0,0,0.236932 -13819,3310:351,101,-35,0,0,0.1938 -13820,3310:352,102,-35,0,0,0.190261 -13821,3310:353,103,-35,0,0,0.229837 -13822,3310:354,104,-35,0,0,0.228187 -13823,3310:455,105,-35,0,0,0.205402 -13824,3310:456,106,-35,0,0,0.207422 -13825,3310:457,107,-35,0,0,0.229456 -13826,3310:458,108,-35,0,0,0.207709 -13827,3310:459,109,-35,0,0,0.202384 -13828,3311:350,110,-35,0,0,0.230657 -13829,3311:351,111,-35,0,0,0.220287 -13830,3311:352,112,-35,0,0,0.214311 -13831,3311:353,113,-35,0,0,0.220835 -13832,3311:354,114,-35,0,0,0.225233 -13833,3311:455,115,-35,0,0,0.227283 -13834,3311:456,116,-35,0,0,0.226634 -13835,3311:457,117,-35,0,0,0.224194 -13836,3311:458,118,-35,0,0,0.222537 -13837,3311:459,119,-35,0,0,0.222395 -13838,3312:350,120,-35,0,0,0.223534 -13839,3312:351,121,-35,0,0,0.228241 -13840,3312:352,122,-35,0,0,0.224337 -13841,3312:353,123,-35,0,0,0.22332 -13842,3312:354,124,-35,0,0,0.224856 -13843,3312:455,125,-35,0,0,0.226076 -13844,3312:456,126,-35,0,0,0.227879 -13845,3312:457,127,-35,0,0,0.228385 -13846,3312:458,128,-35,0,0,0.228802 -13847,3312:459,129,-35,0,0,0.231095 -13848,3313:350,130,-35,0,0,0.229655 -13849,3313:351,131,-35,0,0,0.228984 -13850,3313:352,132,-35,0,0,0.229456 -13851,3313:353,133,-35,0,0,0.227987 -13852,3313:354,134,-35,0,0,0.227861 -13853,3313:455,135,-35,0,0,0.227085 -13854,3313:456,136,-35,0,0,0.229437 -13855,3313:457,137,-35,0,0,0.227933 -13856,3313:458,138,-35,0,0,0.229819 -13857,3313:459,139,-35,0,0,0.238142 -13858,3314:350,140,-35,0,0,0.240762 -13859,3314:351,141,-35,0,0,0.264952 -13860,3314:352,142,-35,0,0,0.260613 -13861,3314:353,143,-35,0,0,0.254367 -13862,3314:354,144,-35,0,0,0.257673 -13863,3314:455,145,-35,0,0,0.261108 -13864,3314:456,146,-35,0,0,0.271018 -13865,3314:457,147,-35,0,0,0.290939 -13866,3314:458,148,-35,0,0,0.309146 -13867,3314:459,149,-35,0,0,0.270937 -13868,3315:350,150,-35,0,0,0.261386 -13869,3315:351,151,-35,0,0,0.258362 -13870,3315:352,152,-35,0,0,0.253646 -13871,3315:353,153,-35,0,0,0.255596 -13872,3315:354,154,-35,0,0,0.263514 -13873,3315:455,155,-35,0,0,0.263195 -13874,3315:456,156,-35,0,0,0.259367 -13875,3315:457,157,-35,0,0,0.258008 -13876,3315:458,158,-35,0,0,0.255576 -13877,3315:459,159,-35,0,0,0.255909 -13878,3316:350,160,-35,0,0,0.262955 -13879,3316:351,161,-35,0,0,0.257792 -13880,3316:352,162,-35,0,0,0.255928 -13881,3316:353,163,-35,0,0,0.263075 -13882,3316:354,164,-35,0,0,0.263234 -13883,3316:455,165,-35,0,0,0.262578 -13884,3316:456,166,-35,0,0,0.265312 -13885,3316:457,167,-35,0,0,0.266335 -13886,3317:352,172,-35,0,0,0.238608 -13887,3317:353,173,-35,0,0,0.223498 -13888,3317:354,174,-35,0,0,0.218072 -13890,3317:456,176,-35,0,0,0.221951 -13891,3317:457,177,-35,0,0,0.215508 -13892,3317:458,178,-35,0,0,0.214848 -13893,3317:459,179,-35,0,0,0.213879 -13894,3318:350,180,-35,0,0,0.216412 -13895,5318:140,-180,-34,0,0,0.260039 -13896,5317:249,-179,-34,0,0,0.252694 -13897,5317:248,-178,-34,0,0,0.262001 -13898,5317:247,-177,-34,0,0,0.263334 -13899,5317:246,-176,-34,0,0,0.259466 -13900,5317:245,-175,-34,0,0,0.250933 -13901,5317:144,-174,-34,0,0,0.27816 -13902,5317:143,-173,-34,0,0,0.296394 -13903,5317:142,-172,-34,0,0,0.28164 -13904,5317:141,-171,-34,0,0,0.280809 -13905,5317:140,-170,-34,0,0,0.274503 -13906,5316:249,-169,-34,0,0,0.274974 -13907,5316:248,-168,-34,0,0,0.271445 -13908,5316:247,-167,-34,0,0,0.267763 -13909,5316:246,-166,-34,0,0,0.275917 -13910,5316:245,-165,-34,0,0,0.273788 -13911,5316:144,-164,-34,0,0,0.275118 -13912,5316:143,-163,-34,0,0,0.273951 -13913,5316:142,-162,-34,0,0,0.27604 -13914,5316:141,-161,-34,0,0,0.278449 -13915,5316:140,-160,-34,0,0,0.280809 -13916,5315:249,-159,-34,0,0,0.283305 -13917,5315:248,-158,-34,0,0,0.285417 -13918,5315:247,-157,-34,0,0,0.292 -13919,5315:246,-156,-34,0,0,0.296266 -13920,5315:245,-155,-34,0,0,0.300806 -13921,5315:144,-154,-34,0,0,0.302646 -13922,5315:143,-153,-34,0,0,0.300201 -13923,5315:142,-152,-34,0,0,0.297081 -13924,5315:141,-151,-34,0,0,0.296866 -13925,5315:140,-150,-34,0,0,0.302624 -13926,5314:249,-149,-34,0,0,0.306497 -13927,5314:248,-148,-34,0,0,0.304448 -13928,5314:247,-147,-34,0,0,0.305232 -13929,5314:246,-146,-34,0,0,0.313552 -13930,5314:245,-145,-34,0,0,0.311499 -13931,5314:144,-144,-34,0,0,0.308883 -13932,5314:143,-143,-34,0,0,0.308905 -13933,5314:142,-142,-34,0,0,0.309497 -13934,5314:141,-141,-34,0,0,0.306192 -13935,5314:140,-140,-34,0,0,0.305865 -13936,5313:249,-139,-34,0,0,0.30484 -13937,5313:248,-138,-34,0,0,0.300589 -13938,5313:247,-137,-34,0,0,0.297424 -13939,5313:246,-136,-34,0,0,0.295666 -13940,5313:245,-135,-34,0,0,0.295559 -13941,5313:144,-134,-34,0,0,0.292339 -13942,5313:143,-133,-34,0,0,0.289521 -13943,5313:142,-132,-34,0,0,0.293297 -13944,5313:141,-131,-34,0,0,0.290113 -13945,5313:140,-130,-34,0,0,0.291639 -13946,5312:249,-129,-34,0,0,0.29096 -13947,5312:248,-128,-34,0,0,0.295175 -13948,5312:247,-127,-34,0,0,0.295859 -13949,5312:246,-126,-34,0,0,0.298735 -13950,5312:245,-125,-34,0,0,0.296266 -13951,5312:144,-124,-34,0,0,0.292319 -13952,5312:143,-123,-34,0,0,0.290769 -13953,5312:142,-122,-34,0,0,0.286949 -13954,5312:141,-121,-34,0,0,0.28366 -13955,5312:140,-120,-34,0,0,0.284224 -13956,5311:249,-119,-34,0,0,0.278945 -13957,5311:248,-118,-34,0,0,0.27878 -13958,5311:247,-117,-34,0,0,0.27238 -13959,5311:246,-116,-34,0,0,0.268266 -13960,5311:245,-115,-34,0,0,0.268973 -13961,5311:144,-114,-34,0,0,0.275261 -13962,5311:143,-113,-34,0,0,0.270754 -13963,5311:142,-112,-34,0,0,0.268206 -13964,5311:141,-111,-34,0,0,0.263953 -13965,5311:140,-110,-34,0,0,0.262518 -13966,5310:249,-109,-34,0,0,0.259821 -13967,5310:248,-108,-34,0,0,0.255596 -13968,5310:247,-107,-34,0,0,0.25159 -13969,5310:246,-106,-34,0,0,0.247626 -13970,5310:245,-105,-34,0,0,0.243666 -13971,5310:144,-104,-34,0,0,0.243685 -13972,5310:143,-103,-34,0,0,0.250354 -13973,5310:142,-102,-34,0,0,0.248565 -13974,5310:141,-101,-34,0,0,0.245393 -13975,5310:140,-100,-34,0,0,0.245754 -13976,5309:249,-99,-34,0,0,0.242777 -13977,5309:248,-98,-34,0,0,0.238571 -13978,5309:247,-97,-34,0,0,0.244158 -13979,5309:246,-96,-34,0,0,0.244557 -13980,5309:245,-95,-34,0,0,0.249064 -13981,5309:144,-94,-34,0,0,0.244367 -13982,5309:143,-93,-34,0,0,0.236858 -13983,5309:142,-92,-34,0,0,0.242381 -13984,5309:141,-91,-34,0,0,0.237974 -13985,5309:140,-90,-34,0,0,0.244405 -13986,5308:249,-89,-34,0,0,0.238739 -13987,5308:248,-88,-34,0,0,0.235986 -13988,5308:247,-87,-34,0,0,0.241608 -13989,5308:246,-86,-34,0,0,0.238384 -13990,5308:245,-85,-34,0,0,0.236877 -13991,5308:144,-84,-34,0,0,0.241721 -13992,5308:143,-83,-34,0,0,0.233605 -13993,5308:142,-82,-34,0,0,0.236209 -13994,5308:141,-81,-34,0,0,0.236784 -13995,5308:140,-80,-34,0,0,0.236839 -13996,5307:249,-79,-34,0,0,0.23645 -13997,5307:248,-78,-34,0,0,0.238926 -13998,5307:247,-77,-34,0,0,0.241175 -13999,5307:246,-76,-34,0,0,0.240123 -14000,5307:245,-75,-34,0,0,0.245259 -14001,5307:144,-74,-34,0,0,0.257693 -14002,5306:245,-65,-34,0,0,0.299489 -14003,5306:144,-64,-34,0,0,0.294876 -14004,5306:143,-63,-34,0,0,0.29007 -14005,5306:142,-62,-34,0,0,0.286949 -14006,5306:141,-61,-34,0,0,0.287622 -14007,5306:140,-60,-34,0,0,0.282471 -14008,5305:249,-59,-34,0,0,0.216726 -14009,5305:248,-58,-34,0,0,0.247033 -14010,5305:247,-57,-34,0,0,0.276698 -14011,5305:246,-56,-34,0,0,0.282972 -14012,5305:245,-55,-34,0,0,0.312668 -14013,5305:144,-54,-34,0,0,0.349688 -14014,5305:143,-53,-34,0,0,0.271343 -14015,5305:142,-52,-34,0,0,0.289077 -14016,5305:141,-51,-34,0,0,0.288929 -14017,5305:140,-50,-34,0,0,0.265833 -14018,5304:249,-49,-34,0,0,0.256065 -14019,5304:248,-48,-34,0,0,0.253977 -14020,5304:247,-47,-34,0,0,0.241175 -14021,5304:246,-46,-34,0,0,0.234913 -14022,5304:245,-45,-34,0,0,0.227626 -14023,5304:144,-44,-34,0,0,0.227572 -14024,5304:143,-43,-34,0,0,0.227337 -14025,5304:142,-42,-34,0,0,0.224445 -14026,5304:141,-41,-34,0,0,0.224463 -14027,5304:140,-40,-34,0,0,0.222341 -14028,5303:249,-39,-34,0,0,0.21445 -14029,5303:248,-38,-34,0,0,0.210104 -14030,5303:247,-37,-34,0,0,0.209507 -14031,5303:246,-36,-34,0,0,0.209065 -14032,5303:245,-35,-34,0,0,0.210155 -14033,5303:144,-34,-34,0,0,0.212002 -14034,5303:143,-33,-34,0,0,0.226292 -14035,5303:142,-32,-34,0,0,0.22259 -14036,5303:141,-31,-34,0,0,0.235098 -14037,5303:140,-30,-34,0,0,0.235968 -14038,5302:249,-29,-34,0,0,0.22622 -14039,5302:248,-28,-34,0,0,0.230128 -14040,5302:247,-27,-34,0,0,0.236746 -14041,5302:246,-26,-34,0,0,0.211214 -14042,5302:245,-25,-34,0,0,0.212535 -14043,5302:144,-24,-34,0,0,0.237118 -14044,5302:143,-23,-34,0,0,0.253413 -14045,5302:142,-22,-34,0,0,0.241627 -14046,5302:141,-21,-34,0,0,0.238552 -14047,5302:140,-20,-34,0,0,0.222004 -14048,5301:249,-19,-34,0,0,0.211848 -14049,5301:248,-18,-34,0,0,0.207726 -14050,5301:247,-17,-34,0,0,0.20144 -14051,5301:246,-16,-34,0,0,0.181662 -14052,5301:245,-15,-34,0,0,0.189361 -14053,5301:144,-14,-34,0,0,0.230256 -14054,5301:143,-13,-34,0,0,0.258677 -14055,5301:142,-12,-34,0,0,0.252752 -14056,5301:141,-11,-34,0,0,0.242607 -14057,5301:140,-10,-34,0,0,0.239318 -14058,5300:249,-9,-34,0,0,0.233826 -14059,5300:248,-8,-34,0,0,0.230147 -14060,5300:247,-7,-34,0,0,0.23915 -14061,5300:246,-6,-34,0,0,0.236691 -14062,5300:245,-5,-34,0,0,0.235062 -14063,5300:144,-4,-34,0,0,0.231844 -14064,5300:143,-3,-34,0,0,0.230056 -14065,5300:142,-2,-34,0,0,0.224659 -14066,5300:141,-1,-34,0,0,0.225 -14067,3300:141,0,-34,0,0,0.224713 -14068,3300:141,1,-34,0,0,0.225896 -14069,3300:142,2,-34,0,0,0.220976 -14070,3300:143,3,-34,0,0,0.218335 -14071,3300:144,4,-34,0,0,0.217337 -14072,3300:245,5,-34,0,0,0.21082 -14073,3300:246,6,-34,0,0,0.19778 -14074,3300:247,7,-34,0,0,0.197226 -14075,3300:248,8,-34,0,0,0.199398 -14076,3300:249,9,-34,0,0,0.199447 -14077,3301:140,10,-34,0,0,0.214242 -14078,3301:141,11,-34,0,0,0.213482 -14079,3301:142,12,-34,0,0,0.219758 -14080,3301:143,13,-34,0,0,0.222093 -14081,3301:144,14,-34,0,0,0.209558 -14082,3301:245,15,-34,0,0,0.241758 -14083,3301:246,16,-34,0,0,0.264632 -14084,3301:247,17,-34,0,0,0.218861 -14085,3301:248,18,-34,0,0,0.281806 -14086,3301:249,19,-34,0,0,0.267883 -14087,3302:140,20,-34,0,0,0.248469 -14088,3302:141,21,-34,0,0,0.271425 -14089,3302:142,22,-34,0,0,0.263055 -14090,3302:143,23,-34,0,0,0.277048 -14091,3302:144,24,-34,0,0,0.258343 -14092,3302:245,25,-34,0,0,0.230292 -14093,3302:246,26,-34,0,0,0.249429 -14094,3302:247,27,-34,0,0,0.250084 -14095,3302:248,28,-34,0,0,0.252752 -14096,3302:249,29,-34,0,0,0.236746 -14097,3303:140,30,-34,0,0,0.223106 -14098,3303:141,31,-34,0,0,0.241627 -14099,3303:142,32,-34,0,0,0.20393 -14100,3303:143,33,-34,0,0,0.199021 -14101,3303:144,34,-34,0,0,0.201291 -14102,3303:245,35,-34,0,0,0.200566 -14103,3303:246,36,-34,0,0,0.212105 -14104,3303:247,37,-34,0,0,0.189187 -14105,3303:248,38,-34,0,0,0.186148 -14106,3303:249,39,-34,0,0,0.200088 -14107,3304:140,40,-34,0,0,0.202599 -14108,3304:141,41,-34,0,0,0.194234 -14109,3304:142,42,-34,0,0,0.184891 -14110,3304:143,43,-34,0,0,0.176646 -14111,3304:144,44,-34,0,0,0.170428 -14112,3304:245,45,-34,0,0,0.163709 -14113,3304:246,46,-34,0,0,0.157395 -14114,3304:247,47,-34,0,0,0.152114 -14115,3304:248,48,-34,0,0,0.157408 -14116,3304:249,49,-34,0,0,0.160943 -14117,3305:140,50,-34,0,0,0.165389 -14118,3305:141,51,-34,0,0,0.165872 -14119,3305:142,52,-34,0,0,0.205268 -14120,3305:143,53,-34,0,0,0.251513 -14121,3305:144,54,-34,0,0,0.260811 -14122,3305:245,55,-34,0,0,0.258874 -14123,3305:246,56,-34,0,0,0.228621 -14124,3305:247,57,-34,0,0,0.235062 -14125,3305:248,58,-34,0,0,0.239543 -14126,3305:249,59,-34,0,0,0.250065 -14127,3306:140,60,-34,0,0,0.299101 -14128,3306:141,61,-34,0,0,0.286319 -14129,3306:142,62,-34,0,0,0.266475 -14130,3306:143,63,-34,0,0,0.243344 -14131,3306:144,64,-34,0,0,0.256653 -14132,3306:245,65,-34,0,0,0.267662 -14133,3306:246,66,-34,0,0,0.269438 -14134,3306:247,67,-34,0,0,0.231533 -14135,3306:248,68,-34,0,0,0.279358 -14136,3306:249,69,-34,0,0,0.265712 -14137,3307:140,70,-34,0,0,0.263633 -14138,3307:141,71,-34,0,0,0.256594 -14139,3307:142,72,-34,0,0,0.235062 -14140,3307:144,74,-34,0,0,0.249199 -14141,3307:245,75,-34,0,0,0.244139 -14142,3307:246,76,-34,0,0,0.246117 -14143,3307:247,77,-34,0,0,0.253841 -14144,3307:248,78,-34,0,0,0.258599 -14145,3307:249,79,-34,0,0,0.248392 -14146,3308:140,80,-34,0,0,0.242399 -14147,3308:141,81,-34,0,0,0.242022 -14148,3308:142,82,-34,0,0,0.247281 -14149,3308:143,83,-34,0,0,0.244841 -14150,3308:144,84,-34,0,0,0.241758 -14151,3308:245,85,-34,0,0,0.244784 -14152,3308:246,86,-34,0,0,0.242626 -14153,3308:247,87,-34,0,0,0.229601 -14154,3308:248,88,-34,0,0,0.210445 -14155,3308:249,89,-34,0,0,0.216064 -14156,3309:140,90,-34,0,0,0.222679 -14157,3309:141,91,-34,0,0,0.222999 -14158,3309:142,92,-34,0,0,0.209303 -14159,3309:143,93,-34,0,0,0.200846 -14160,3309:144,94,-34,0,0,0.200335 -14161,3309:245,95,-34,0,0,0.201672 -14162,3309:246,96,-34,0,0,0.203614 -14163,3309:247,97,-34,0,0,0.206326 -14164,3309:248,98,-34,0,0,0.206461 -14165,3309:249,99,-34,0,0,0.226148 -14166,3310:140,100,-34,0,0,0.242531 -14167,3310:141,101,-34,0,0,0.238552 -14168,3310:142,102,-34,0,0,0.237658 -14169,3310:143,103,-34,0,0,0.235764 -14170,3310:144,104,-34,0,0,0.230201 -14171,3310:245,105,-34,0,0,0.216029 -14172,3310:246,106,-34,0,0,0.228838 -14173,3310:247,107,-34,0,0,0.240874 -14174,3310:248,108,-34,0,0,0.234268 -14175,3310:249,109,-34,0,0,0.233734 -14176,3311:140,110,-34,0,0,0.23723 -14177,3311:141,111,-34,0,0,0.232485 -14178,3311:142,112,-34,0,0,0.232668 -14179,3311:143,113,-34,0,0,0.235136 -14180,3311:144,114,-34,0,0,0.232925 -14181,3311:245,115,-34,0,0,0.231478 -14182,3311:246,116,-34,0,0,0.233495 -14183,3311:247,117,-34,0,0,0.233293 -14184,3311:248,118,-34,0,0,0.23276 -14185,3311:249,119,-34,0,0,0.234305 -14186,3312:140,120,-34,0,0,0.236246 -14187,3312:141,121,-34,0,0,0.239412 -14188,3312:142,122,-34,0,0,0.237695 -14189,3312:143,123,-34,0,0,0.235746 -14190,3312:144,124,-34,0,0,0.234526 -14191,3312:245,125,-34,0,0,0.235468 -14192,3312:246,126,-34,0,0,0.23645 -14193,3312:247,127,-34,0,0,0.235764 -14194,3312:248,128,-34,0,0,0.240799 -14195,3312:249,129,-34,0,0,0.237304 -14196,3313:140,130,-34,0,0,0.238142 -14197,3313:141,131,-34,0,0,0.238776 -14198,3313:142,132,-34,0,0,0.240893 -14199,3313:143,133,-34,0,0,0.242418 -14200,3313:144,134,-34,0,0,0.240067 -14201,3313:245,135,-34,0,0,0.235746 -14202,3313:246,136,-34,0,0,0.24003 -14203,3313:247,137,-34,0,0,0.239486 -14204,3313:248,138,-34,0,0,0.242928 -14205,3313:249,139,-34,0,0,0.253626 -14206,3314:140,140,-34,0,0,0.270045 -14207,3314:141,141,-34,0,0,0.26214 -14208,3314:142,142,-34,0,0,0.272706 -14209,3314:143,143,-34,0,0,0.263295 -14210,3314:144,144,-34,0,0,0.269721 -14211,3314:245,145,-34,0,0,0.2794 -14212,3314:246,146,-34,0,0,0.306913 -14213,3314:248,148,-34,0,0,0.291024 -14214,3314:249,149,-34,0,0,0.331486 -14215,3315:140,150,-34,0,0,0.293276 -14216,3315:141,151,-34,0,0,0.291024 -14217,3315:142,152,-34,0,0,0.271343 -14218,3315:143,153,-34,0,0,0.278202 -14219,3315:144,154,-34,0,0,0.287159 -14220,3315:245,155,-34,0,0,0.284956 -14221,3315:246,156,-34,0,0,0.278945 -14222,3315:247,157,-34,0,0,0.273441 -14223,3315:248,158,-34,0,0,0.27678 -14224,3315:249,159,-34,0,0,0.275917 -14225,3316:140,160,-34,0,0,0.280933 -14226,3316:141,161,-34,0,0,0.276719 -14227,3316:142,162,-34,0,0,0.27604 -14228,3316:143,163,-34,0,0,0.277769 -14229,3316:144,164,-34,0,0,0.27783 -14230,3316:245,165,-34,0,0,0.280622 -14231,3316:246,166,-34,0,0,0.281349 -14232,3316:247,167,-34,0,0,0.278656 -14233,3316:248,168,-34,0,0,0.281785 -14234,3316:249,169,-34,0,0,0.279958 -14235,3317:144,174,-34,0,0,0.242852 -14236,3317:245,175,-34,0,0,0.269074 -14237,3317:246,176,-34,0,0,0.262279 -14238,3317:247,177,-34,0,0,0.253899 -14239,3317:248,178,-34,0,0,0.249544 -14240,3317:249,179,-34,0,0,0.247836 -14241,3318:140,180,-34,0,0,0.260039 -14242,5318:130,-180,-33,0,0,0.294961 -14243,5317:239,-179,-33,0,0,0.30665 -14244,5317:238,-178,-33,0,0,0.318638 -14245,5317:237,-177,-33,0,0,0.317079 -14246,5317:236,-176,-33,0,0,0.316434 -14247,5317:235,-175,-33,0,0,0.317412 -14248,5317:134,-174,-33,0,0,0.316123 -14249,5317:133,-173,-33,0,0,0.308532 -14250,5317:132,-172,-33,0,0,0.292106 -14251,5317:131,-171,-33,0,0,0.28697 -14252,5317:130,-170,-33,0,0,0.28933 -14253,5316:239,-169,-33,0,0,0.281826 -14254,5316:238,-168,-33,0,0,0.281826 -14255,5316:237,-167,-33,0,0,0.283368 -14256,5316:236,-166,-33,0,0,0.289352 -14257,5316:235,-165,-33,0,0,0.287412 -14258,5316:134,-164,-33,0,0,0.293958 -14259,5316:133,-163,-33,0,0,0.293404 -14260,5316:132,-162,-33,0,0,0.29079 -14261,5316:131,-161,-33,0,0,0.294 -14262,5316:130,-160,-33,0,0,0.301324 -14263,5315:239,-159,-33,0,0,0.301584 -14264,5315:238,-158,-33,0,0,0.308708 -14265,5315:237,-157,-33,0,0,0.310266 -14266,5315:236,-156,-33,0,0,0.317012 -14267,5315:235,-155,-33,0,0,0.318861 -14268,5315:134,-154,-33,0,0,0.324173 -14269,5315:133,-153,-33,0,0,0.322375 -14270,5315:132,-152,-33,0,0,0.323813 -14271,5315:131,-151,-33,0,0,0.321926 -14272,5315:130,-150,-33,0,0,0.323183 -14273,5314:239,-149,-33,0,0,0.321141 -14274,5314:238,-148,-33,0,0,0.321949 -14275,5314:237,-147,-33,0,0,0.3274 -14276,5314:236,-146,-33,0,0,0.327106 -14277,5314:235,-145,-33,0,0,0.324668 -14278,5314:134,-144,-33,0,0,0.325705 -14279,5314:133,-143,-33,0,0,0.325638 -14280,5314:132,-142,-33,0,0,0.323071 -14281,5314:131,-141,-33,0,0,0.320828 -14282,5314:130,-140,-33,0,0,0.324038 -14283,5313:239,-139,-33,0,0,0.322061 -14284,5313:238,-138,-33,0,0,0.315901 -14285,5313:237,-137,-33,0,0,0.31866 -14286,5313:236,-136,-33,0,0,0.311653 -14287,5313:235,-135,-33,0,0,0.310728 -14288,5313:134,-134,-33,0,0,0.310948 -14289,5313:133,-133,-33,0,0,0.310113 -14290,5313:132,-132,-33,0,0,0.308335 -14291,5313:131,-131,-33,0,0,0.306148 -14292,5313:130,-130,-33,0,0,0.311455 -14293,5312:239,-129,-33,0,0,0.311345 -14294,5312:238,-128,-33,0,0,0.308181 -14295,5312:237,-127,-33,0,0,0.310904 -14296,5312:236,-126,-33,0,0,0.313861 -14297,5312:235,-125,-33,0,0,0.308686 -14298,5312:134,-124,-33,0,0,0.309432 -14299,5312:133,-123,-33,0,0,0.300481 -14300,5312:132,-122,-33,0,0,0.30397 -14301,5312:131,-121,-33,0,0,0.303992 -14302,5312:130,-120,-33,0,0,0.298326 -14303,5311:239,-119,-33,0,0,0.292872 -14304,5311:238,-118,-33,0,0,0.293467 -14305,5311:237,-117,-33,0,0,0.293489 -14306,5311:236,-116,-33,0,0,0.292892 -14307,5311:235,-115,-33,0,0,0.290939 -14308,5311:134,-114,-33,0,0,0.289859 -14309,5311:133,-113,-33,0,0,0.290918 -14310,5311:132,-112,-33,0,0,0.280975 -14311,5311:131,-111,-33,0,0,0.275589 -14312,5311:130,-110,-33,0,0,0.269984 -14313,5310:239,-109,-33,0,0,0.262856 -14314,5310:238,-108,-33,0,0,0.261346 -14315,5310:237,-107,-33,0,0,0.259269 -14316,5310:236,-106,-33,0,0,0.263514 -14317,5310:235,-105,-33,0,0,0.259091 -14318,5310:134,-104,-33,0,0,0.259703 -14319,5310:133,-103,-33,0,0,0.266154 -14320,5310:132,-102,-33,0,0,0.265993 -14321,5310:131,-101,-33,0,0,0.258874 -14322,5310:130,-100,-33,0,0,0.257084 -14323,5309:239,-99,-33,0,0,0.258795 -14324,5309:238,-98,-33,0,0,0.258165 -14325,5309:237,-97,-33,0,0,0.252578 -14326,5309:236,-96,-33,0,0,0.259486 -14327,5309:235,-95,-33,0,0,0.251435 -14328,5309:134,-94,-33,0,0,0.257673 -14329,5309:133,-93,-33,0,0,0.255518 -14330,5309:132,-92,-33,0,0,0.252442 -14331,5309:131,-91,-33,0,0,0.246689 -14332,5309:130,-90,-33,0,0,0.254152 -14333,5308:239,-89,-33,0,0,0.249064 -14334,5308:238,-88,-33,0,0,0.24753 -14335,5308:237,-87,-33,0,0,0.247472 -14336,5308:236,-86,-33,0,0,0.254327 -14337,5308:235,-85,-33,0,0,0.251996 -14338,5308:134,-84,-33,0,0,0.251745 -14339,5308:133,-83,-33,0,0,0.246498 -14340,5308:132,-82,-33,0,0,0.251377 -14341,5308:131,-81,-33,0,0,0.247128 -14342,5308:130,-80,-33,0,0,0.248334 -14343,5307:239,-79,-33,0,0,0.251339 -14344,5307:238,-78,-33,0,0,0.251532 -14345,5307:237,-77,-33,0,0,0.252268 -14346,5307:236,-76,-33,0,0,0.253082 -14347,5307:235,-75,-33,0,0,0.256771 -14348,5307:133,-73,-33,0,0,0.28058 -14349,5306:133,-63,-33,0,0,0.310091 -14350,5306:132,-62,-33,0,0,0.311543 -14351,5306:131,-61,-33,0,0,0.32242 -14352,5306:130,-60,-33,0,0,0.317569 -14353,5305:239,-59,-33,0,0,0.287559 -14354,5305:238,-58,-33,0,0,0.231058 -14355,5305:237,-57,-33,0,0,0.251474 -14356,5305:236,-56,-33,0,0,0.281037 -14357,5305:235,-55,-33,0,0,0.343801 -14358,5305:134,-54,-33,0,0,0.33971 -14359,5305:133,-53,-33,0,0,0.285291 -14360,5305:132,-52,-33,0,0,0.311675 -14361,5305:131,-51,-33,0,0,0.332351 -14362,5305:130,-50,-33,0,0,0.361791 -14363,5304:239,-49,-33,0,0,0.362479 -14364,5304:238,-48,-33,0,0,0.306279 -14365,5304:237,-47,-33,0,0,0.270471 -14366,5304:236,-46,-33,0,0,0.257359 -14367,5304:235,-45,-33,0,0,0.26216 -14368,5304:134,-44,-33,0,0,0.264152 -14369,5304:133,-43,-33,0,0,0.262796 -14370,5304:132,-42,-33,0,0,0.264692 -14371,5304:131,-41,-33,0,0,0.257792 -14372,5304:130,-40,-33,0,0,0.235764 -14373,5303:239,-39,-33,0,0,0.225753 -14374,5303:238,-38,-33,0,0,0.229583 -14375,5303:237,-37,-33,0,0,0.237993 -14376,5303:236,-36,-33,0,0,0.252403 -14377,5303:235,-35,-33,0,0,0.254698 -14378,5303:134,-34,-33,0,0,0.230165 -14379,5303:133,-33,-33,0,0,0.235542 -14380,5303:132,-32,-33,0,0,0.242947 -14381,5303:131,-31,-33,0,0,0.259012 -14382,5303:130,-30,-33,0,0,0.249544 -14383,5302:239,-29,-33,0,0,0.24359 -14384,5302:238,-28,-33,0,0,0.24359 -14385,5302:237,-27,-33,0,0,0.251048 -14386,5302:236,-26,-33,0,0,0.246117 -14387,5302:235,-25,-33,0,0,0.266596 -14388,5302:134,-24,-33,0,0,0.272462 -14389,5302:133,-23,-33,0,0,0.25992 -14390,5302:132,-22,-33,0,0,0.264692 -14391,5302:131,-21,-33,0,0,0.257988 -14392,5302:130,-20,-33,0,0,0.236079 -14393,5301:239,-19,-33,0,0,0.224051 -14394,5301:238,-18,-33,0,0,0.207658 -14395,5301:237,-17,-33,0,0,0.200269 -14396,5301:236,-16,-33,0,0,0.194298 -14397,5301:235,-15,-33,0,0,0.219882 -14398,5301:134,-14,-33,0,0,0.266174 -14399,5301:133,-13,-33,0,0,0.255772 -14400,5301:132,-12,-33,0,0,0.240874 -14401,5301:131,-11,-33,0,0,0.239449 -14402,5301:130,-10,-33,0,0,0.238646 -14403,5300:239,-9,-33,0,0,0.235468 -14404,5300:238,-8,-33,0,0,0.235376 -14405,5300:237,-7,-33,0,0,0.251532 -14406,5300:236,-6,-33,0,0,0.24063 -14407,5300:235,-5,-33,0,0,0.231314 -14408,5300:134,-4,-33,0,0,0.230967 -14409,5300:133,-3,-33,0,0,0.233385 -14410,5300:132,-2,-33,0,0,0.235764 -14411,5300:131,-1,-33,0,0,0.235949 -14412,3300:131,0,-33,0,0,0.231624 -14413,3300:131,1,-33,0,0,0.230857 -14414,3300:132,2,-33,0,0,0.23146 -14415,3300:133,3,-33,0,0,0.220358 -14416,3300:134,4,-33,0,0,0.21683 -14417,3300:235,5,-33,0,0,0.221756 -14418,3300:236,6,-33,0,0,0.232228 -14419,3300:237,7,-33,0,0,0.230311 -14420,3300:238,8,-33,0,0,0.227554 -14421,3300:239,9,-33,0,0,0.21497 -14422,3301:130,10,-33,0,0,0.210257 -14423,3301:131,11,-33,0,0,0.214104 -14424,3301:132,12,-33,0,0,0.22931 -14425,3301:133,13,-33,0,0,0.235672 -14426,3301:134,14,-33,0,0,0.243136 -14427,3301:235,15,-33,0,0,0.276143 -14428,3301:236,16,-33,0,0,0.280871 -14429,3301:237,17,-33,0,0,0.305102 -14430,3301:238,18,-33,0,0,0.322981 -14431,3301:239,19,-33,0,0,0.302863 -14432,3302:130,20,-33,0,0,0.30862 -14433,3302:131,21,-33,0,0,0.312734 -14434,3302:132,22,-33,0,0,0.300352 -14435,3302:133,23,-33,0,0,0.307328 -14436,3302:134,24,-33,0,0,0.284496 -14437,3302:235,25,-33,0,0,0.248968 -14438,3302:236,26,-33,0,0,0.235117 -14439,3302:237,27,-33,0,0,0.240593 -14440,3302:238,28,-33,0,0,0.26867 -14441,3302:239,29,-33,0,0,0.249987 -14442,3303:130,30,-33,0,0,0.278738 -14443,3303:131,31,-33,0,0,0.286613 -14444,3303:132,32,-33,0,0,0.258716 -14445,3303:133,33,-33,0,0,0.24272 -14446,3303:134,34,-33,0,0,0.271607 -14447,3303:235,35,-33,0,0,0.279483 -14448,3303:236,36,-33,0,0,0.266756 -14449,3303:237,37,-33,0,0,0.250431 -14450,3303:238,38,-33,0,0,0.257733 -14451,3303:239,39,-33,0,0,0.248009 -14452,3304:130,40,-33,0,0,0.20754 -14453,3304:131,41,-33,0,0,0.207676 -14454,3304:132,42,-33,0,0,0.220128 -14455,3304:133,43,-33,0,0,0.246842 -14456,3304:134,44,-33,0,0,0.227735 -14457,3304:235,45,-33,0,0,0.206646 -14458,3304:236,46,-33,0,0,0.207337 -14459,3304:237,47,-33,0,0,0.240067 -14460,3304:238,48,-33,0,0,0.244007 -14461,3304:239,49,-33,0,0,0.233238 -14462,3305:130,50,-33,0,0,0.237397 -14463,3305:131,51,-33,0,0,0.207523 -14464,3305:132,52,-33,0,0,0.237379 -14465,3305:133,53,-33,0,0,0.255635 -14466,3305:134,54,-33,0,0,0.255928 -14467,3305:235,55,-33,0,0,0.269741 -14468,3305:236,56,-33,0,0,0.2554 -14469,3305:237,57,-33,0,0,0.241796 -14470,3305:238,58,-33,0,0,0.237806 -14471,3305:239,59,-33,0,0,0.280124 -14472,3306:130,60,-33,0,0,0.311014 -14473,3306:131,61,-33,0,0,0.309937 -14474,3306:132,62,-33,0,0,0.301584 -14475,3306:133,63,-33,0,0,0.293276 -14476,3306:134,64,-33,0,0,0.30005 -14477,3306:235,65,-33,0,0,0.291873 -14478,3306:236,66,-33,0,0,0.283493 -14479,3306:237,67,-33,0,0,0.225771 -14480,3306:238,68,-33,0,0,0.238739 -14481,3306:239,69,-33,0,0,0.282243 -14482,3307:130,70,-33,0,0,0.279607 -14483,3307:131,71,-33,0,0,0.276657 -14484,3307:132,72,-33,0,0,0.27238 -14485,3307:134,74,-33,0,0,0.254737 -14486,3307:235,75,-33,0,0,0.25846 -14487,3307:236,76,-33,0,0,0.277872 -14488,3307:237,77,-33,0,0,0.265853 -14489,3307:238,78,-33,0,0,0.244671 -14490,3307:239,79,-33,0,0,0.24845 -14491,3308:130,80,-33,0,0,0.259052 -14492,3308:131,81,-33,0,0,0.268973 -14493,3308:132,82,-33,0,0,0.263773 -14494,3308:133,83,-33,0,0,0.261069 -14495,3308:134,84,-33,0,0,0.252403 -14496,3308:235,85,-33,0,0,0.2379 -14497,3308:236,86,-33,0,0,0.230967 -14498,3308:237,87,-33,0,0,0.233366 -14499,3308:238,88,-33,0,0,0.236988 -14500,3308:239,89,-33,0,0,0.236209 -14501,3309:130,90,-33,0,0,0.233274 -14502,3309:131,91,-33,0,0,0.234711 -14503,3309:132,92,-33,0,0,0.232687 -14504,3309:133,93,-33,0,0,0.227121 -14505,3309:134,94,-33,0,0,0.231478 -14506,3309:235,95,-33,0,0,0.247128 -14507,3309:236,96,-33,0,0,0.254561 -14508,3309:237,97,-33,0,0,0.251861 -14509,3309:238,98,-33,0,0,0.244215 -14510,3309:239,99,-33,0,0,0.248258 -14511,3310:130,100,-33,0,0,0.244804 -14512,3310:131,101,-33,0,0,0.244481 -14513,3310:132,102,-33,0,0,0.240086 -14514,3310:133,103,-33,0,0,0.23658 -14515,3310:134,104,-33,0,0,0.233109 -14516,3310:235,105,-33,0,0,0.237063 -14517,3310:236,106,-33,0,0,0.248641 -14518,3310:237,107,-33,0,0,0.249141 -14519,3310:238,108,-33,0,0,0.246193 -14520,3310:239,109,-33,0,0,0.244291 -14521,3311:130,110,-33,0,0,0.24125 -14522,3311:131,111,-33,0,0,0.241476 -14523,3311:132,112,-33,0,0,0.242947 -14524,3311:133,113,-33,0,0,0.239431 -14525,3311:134,114,-33,0,0,0.241589 -14526,3311:235,115,-33,0,0,0.240855 -14527,3311:236,116,-33,0,0,0.240818 -14528,3311:237,117,-33,0,0,0.242682 -14529,3311:238,118,-33,0,0,0.245907 -14530,3311:239,119,-33,0,0,0.247186 -14531,3312:130,120,-33,0,0,0.249699 -14532,3312:131,121,-33,0,0,0.252365 -14533,3312:132,122,-33,0,0,0.251068 -14534,3312:133,123,-33,0,0,0.250546 -14535,3312:134,124,-33,0,0,0.248219 -14536,3312:235,125,-33,0,0,0.245355 -14537,3312:236,126,-33,0,0,0.245183 -14538,3312:237,127,-33,0,0,0.254776 -14539,3312:238,128,-33,0,0,0.261286 -14540,3312:239,129,-33,0,0,0.248334 -14541,3313:130,130,-33,0,0,0.253374 -14542,3313:131,131,-33,0,0,0.250624 -14543,3313:132,132,-33,0,0,0.253432 -14544,3313:133,133,-33,0,0,0.251068 -14545,3313:134,134,-33,0,0,0.25501 -14546,3313:235,135,-33,0,0,0.254561 -14547,3313:236,136,-33,0,0,0.252287 -14548,3313:237,137,-33,0,0,0.253938 -14549,3313:238,138,-33,0,0,0.258205 -14550,3313:239,139,-33,0,0,0.283848 -14551,3314:130,140,-33,0,0,0.285774 -14552,3314:131,141,-33,0,0,0.294897 -14553,3314:132,142,-33,0,0,0.287812 -14554,3314:133,143,-33,0,0,0.292254 -14555,3314:134,144,-33,0,0,0.289732 -14556,3314:235,145,-33,0,0,0.317012 -14557,3314:239,149,-33,0,0,0.336078 -14558,3315:130,150,-33,0,0,0.31904 -14559,3315:131,151,-33,0,0,0.318215 -14560,3315:132,152,-33,0,0,0.305102 -14561,3315:133,153,-33,0,0,0.301995 -14562,3315:134,154,-33,0,0,0.309014 -14563,3315:235,155,-33,0,0,0.306803 -14564,3315:236,156,-33,0,0,0.30397 -14565,3315:237,157,-33,0,0,0.296931 -14566,3315:238,158,-33,0,0,0.295816 -14567,3315:239,159,-33,0,0,0.301606 -14568,3316:130,160,-33,0,0,0.30321 -14569,3316:131,161,-33,0,0,0.294876 -14570,3316:132,162,-33,0,0,0.290007 -14571,3316:133,163,-33,0,0,0.289436 -14572,3316:134,164,-33,0,0,0.289626 -14573,3316:235,165,-33,0,0,0.29113 -14574,3316:236,166,-33,0,0,0.291321 -14575,3316:237,167,-33,0,0,0.291448 -14576,3316:238,168,-33,0,0,0.295602 -14577,3316:239,169,-33,0,0,0.300806 -14578,3317:130,170,-33,0,0,0.294918 -14579,3317:131,171,-33,0,0,0.291405 -14580,3317:134,174,-33,0,0,0.259348 -14581,3317:235,175,-33,0,0,0.281037 -14582,3317:236,176,-33,0,0,0.305276 -14583,3317:237,177,-33,0,0,0.317212 -14584,3317:238,178,-33,0,0,0.346192 -14585,3317:239,179,-33,0,0,0.32919 -14586,3318:130,180,-33,0,0,0.294961 -14587,5318:120,-180,-32,0,0,0.335047 -14588,5317:229,-179,-32,0,0,0.325209 -14589,5317:228,-178,-32,0,0,0.324826 -14590,5317:227,-177,-32,0,0,0.323858 -14591,5317:226,-176,-32,0,0,0.322689 -14592,5317:225,-175,-32,0,0,0.331805 -14593,5317:124,-174,-32,0,0,0.327739 -14594,5317:123,-173,-32,0,0,0.310376 -14595,5317:122,-172,-32,0,0,0.301844 -14596,5317:121,-171,-32,0,0,0.308291 -14597,5317:120,-170,-32,0,0,0.308576 -14598,5316:229,-169,-32,0,0,0.302646 -14599,5316:228,-168,-32,0,0,0.30617 -14600,5316:227,-167,-32,0,0,0.307766 -14601,5316:226,-166,-32,0,0,0.309124 -14602,5316:225,-165,-32,0,0,0.312734 -14603,5316:124,-164,-32,0,0,0.307503 -14604,5316:123,-163,-32,0,0,0.312271 -14605,5316:122,-162,-32,0,0,0.311918 -14606,5316:121,-161,-32,0,0,0.319307 -14607,5316:120,-160,-32,0,0,0.327377 -14608,5315:229,-159,-32,0,0,0.328464 -14609,5315:228,-158,-32,0,0,0.329145 -14610,5315:227,-157,-32,0,0,0.329553 -14611,5315:226,-156,-32,0,0,0.334498 -14612,5315:225,-155,-32,0,0,0.337386 -14613,5315:124,-154,-32,0,0,0.341163 -14614,5315:123,-153,-32,0,0,0.340794 -14615,5315:122,-152,-32,0,0,0.341417 -14616,5315:121,-151,-32,0,0,0.33941 -14617,5315:120,-150,-32,0,0,0.338811 -14618,5314:229,-149,-32,0,0,0.341047 -14619,5314:228,-148,-32,0,0,0.346843 -14620,5314:227,-147,-32,0,0,0.346238 -14621,5314:226,-146,-32,0,0,0.345866 -14622,5314:225,-145,-32,0,0,0.343291 -14623,5314:124,-144,-32,0,0,0.344542 -14624,5314:123,-143,-32,0,0,0.346843 -14625,5314:122,-142,-32,0,0,0.345843 -14626,5314:121,-141,-32,0,0,0.343893 -14627,5314:120,-140,-32,0,0,0.342341 -14628,5313:229,-139,-32,0,0,0.341347 -14629,5313:228,-138,-32,0,0,0.338443 -14630,5313:227,-137,-32,0,0,0.334887 -14631,5313:226,-136,-32,0,0,0.332465 -14632,5313:225,-135,-32,0,0,0.332465 -14633,5313:124,-134,-32,0,0,0.331896 -14634,5313:123,-133,-32,0,0,0.33242 -14635,5313:122,-132,-32,0,0,0.328601 -14636,5313:121,-131,-32,0,0,0.331212 -14637,5313:120,-130,-32,0,0,0.333675 -14638,5312:229,-129,-32,0,0,0.332488 -14639,5312:228,-128,-32,0,0,0.329372 -14640,5312:227,-127,-32,0,0,0.331691 -14641,5312:226,-126,-32,0,0,0.326812 -14642,5312:225,-125,-32,0,0,0.327785 -14643,5312:124,-124,-32,0,0,0.324466 -14644,5312:123,-123,-32,0,0,0.326022 -14645,5312:122,-122,-32,0,0,0.315435 -14646,5312:121,-121,-32,0,0,0.318594 -14647,5312:120,-120,-32,0,0,0.311411 -14648,5311:229,-119,-32,0,0,0.311411 -14649,5311:228,-118,-32,0,0,0.312933 -14650,5311:227,-117,-32,0,0,0.317836 -14651,5311:226,-116,-32,0,0,0.31837 -14652,5311:225,-115,-32,0,0,0.316367 -14653,5311:124,-114,-32,0,0,0.315945 -14654,5311:123,-113,-32,0,0,0.310025 -14655,5311:122,-112,-32,0,0,0.29663 -14656,5311:121,-111,-32,0,0,0.28293 -14657,5311:120,-110,-32,0,0,0.287327 -14658,5310:229,-109,-32,0,0,0.284182 -14659,5310:228,-108,-32,0,0,0.279876 -14660,5310:227,-107,-32,0,0,0.277893 -14661,5310:226,-106,-32,0,0,0.276719 -14662,5310:225,-105,-32,0,0,0.281141 -14663,5310:124,-104,-32,0,0,0.279669 -14664,5310:123,-103,-32,0,0,0.277521 -14665,5310:122,-102,-32,0,0,0.285375 -14666,5310:121,-101,-32,0,0,0.27911 -14667,5310:120,-100,-32,0,0,0.278759 -14668,5309:229,-99,-32,0,0,0.276616 -14669,5309:228,-98,-32,0,0,0.278387 -14670,5309:227,-97,-32,0,0,0.271506 -14671,5309:226,-96,-32,0,0,0.275036 -14672,5309:225,-95,-32,0,0,0.271933 -14673,5309:124,-94,-32,0,0,0.272564 -14674,5309:123,-93,-32,0,0,0.275138 -14675,5309:122,-92,-32,0,0,0.27116 -14676,5309:121,-91,-32,0,0,0.267803 -14677,5309:120,-90,-32,0,0,0.26962 -14678,5308:229,-89,-32,0,0,0.266817 -14679,5308:228,-88,-32,0,0,0.268165 -14680,5308:227,-87,-32,0,0,0.265192 -14681,5308:226,-86,-32,0,0,0.267823 -14682,5308:225,-85,-32,0,0,0.27438 -14683,5308:124,-84,-32,0,0,0.272095 -14684,5308:123,-83,-32,0,0,0.269276 -14685,5308:122,-82,-32,0,0,0.26214 -14686,5308:121,-81,-32,0,0,0.261842 -14687,5308:120,-80,-32,0,0,0.263195 -14688,5307:229,-79,-32,0,0,0.266034 -14689,5307:228,-78,-32,0,0,0.268065 -14690,5307:227,-77,-32,0,0,0.266495 -14691,5307:226,-76,-32,0,0,0.273032 -14692,5307:225,-75,-32,0,0,0.275097 -14693,5307:124,-74,-32,0,0,0.275897 -14694,5306:225,-65,-32,0,0,0.342851 -14695,5306:124,-64,-32,0,0,0.349805 -14696,5306:123,-63,-32,0,0,0.354752 -14697,5306:122,-62,-32,0,0,0.343917 -14698,5306:121,-61,-32,0,0,0.342481 -14699,5306:120,-60,-32,0,0,0.346634 -14700,5305:229,-59,-32,0,0,0.332967 -14701,5305:228,-58,-32,0,0,0.305821 -14702,5305:227,-57,-32,0,0,0.25351 -14703,5305:226,-56,-32,0,0,0.250894 -14704,5305:225,-55,-32,0,0,0.296952 -14705,5305:124,-54,-32,0,0,0.345076 -14706,5305:123,-53,-32,0,0,0.299015 -14707,5305:122,-52,-32,0,0,0.305102 -14708,5305:121,-51,-32,0,0,0.316456 -14709,5305:120,-50,-32,0,0,0.35353 -14710,5304:229,-49,-32,0,0,0.392772 -14711,5304:228,-48,-32,0,0,0.336284 -14712,5304:227,-47,-32,0,0,0.280435 -14713,5304:226,-46,-32,0,0,0.283472 -14714,5304:225,-45,-32,0,0,0.275097 -14715,5304:124,-44,-32,0,0,0.275179 -14716,5304:123,-43,-32,0,0,0.274872 -14717,5304:122,-42,-32,0,0,0.277068 -14718,5304:121,-41,-32,0,0,0.303948 -14719,5304:120,-40,-32,0,0,0.311455 -14720,5303:229,-39,-32,0,0,0.293681 -14721,5303:228,-38,-32,0,0,0.272686 -14722,5303:227,-37,-32,0,0,0.274094 -14723,5303:226,-36,-32,0,0,0.270187 -14724,5303:225,-35,-32,0,0,0.266817 -14725,5303:124,-34,-32,0,0,0.257026 -14726,5303:123,-33,-32,0,0,0.266234 -14727,5303:122,-32,-32,0,0,0.273053 -14728,5303:121,-31,-32,0,0,0.275691 -14729,5303:120,-30,-32,0,0,0.281037 -14730,5302:229,-29,-32,0,0,0.288001 -14731,5302:228,-28,-32,0,0,0.284412 -14732,5302:227,-27,-32,0,0,0.274115 -14733,5302:226,-26,-32,0,0,0.271302 -14734,5302:225,-25,-32,0,0,0.276924 -14735,5302:124,-24,-32,0,0,0.285145 -14736,5302:123,-23,-32,0,0,0.284308 -14737,5302:122,-22,-32,0,0,0.274954 -14738,5302:121,-21,-32,0,0,0.263813 -14739,5302:120,-20,-32,0,0,0.258244 -14740,5301:229,-19,-32,0,0,0.241947 -14741,5301:228,-18,-32,0,0,0.232577 -14742,5301:227,-17,-32,0,0,0.211899 -14743,5301:226,-16,-32,0,0,0.21082 -14744,5301:225,-15,-32,0,0,0.250026 -14745,5301:124,-14,-32,0,0,0.275445 -14746,5301:123,-13,-32,0,0,0.26746 -14747,5301:122,-12,-32,0,0,0.266556 -14748,5301:121,-11,-32,0,0,0.254912 -14749,5301:120,-10,-32,0,0,0.254191 -14750,5300:229,-9,-32,0,0,0.25316 -14751,5300:228,-8,-32,0,0,0.25501 -14752,5300:227,-7,-32,0,0,0.265632 -14753,5300:226,-6,-32,0,0,0.25791 -14754,5300:225,-5,-32,0,0,0.251319 -14755,5300:124,-4,-32,0,0,0.246326 -14756,5300:123,-3,-32,0,0,0.247702 -14757,5300:122,-2,-32,0,0,0.248987 -14758,5300:121,-1,-32,0,0,0.246117 -14759,3300:121,0,-32,0,0,0.248833 -14760,3300:121,1,-32,0,0,0.252326 -14761,3300:122,2,-32,0,0,0.251358 -14762,3300:123,3,-32,0,0,0.244652 -14763,3300:124,4,-32,0,0,0.249371 -14764,3300:225,5,-32,0,0,0.252869 -14765,3300:226,6,-32,0,0,0.248201 -14766,3300:227,7,-32,0,0,0.254152 -14767,3300:228,8,-32,0,0,0.23859 -14768,3300:229,9,-32,0,0,0.238832 -14769,3301:120,10,-32,0,0,0.24776 -14770,3301:121,11,-32,0,0,0.249795 -14771,3301:122,12,-32,0,0,0.259841 -14772,3301:123,13,-32,0,0,0.247568 -14773,3301:124,14,-32,0,0,0.273828 -14774,3301:225,15,-32,0,0,0.309081 -14775,3301:226,16,-32,0,0,0.349595 -14776,3301:227,17,-32,0,0,0.40856 -14777,3301:228,18,-32,0,0,0.4102 -14778,3301:229,19,-32,0,0,0.40106 -14779,3302:120,20,-32,0,0,0.345634 -14780,3302:121,21,-32,0,0,0.333287 -14781,3302:122,22,-32,0,0,0.365857 -14782,3302:123,23,-32,0,0,0.372341 -14783,3302:124,24,-32,0,0,0.371213 -14784,3302:225,25,-32,0,0,0.378267 -14785,3302:226,26,-32,0,0,0.369536 -14786,3302:227,27,-32,0,0,0.344079 -14787,3302:228,28,-32,0,0,0.275794 -14788,3302:229,29,-32,0,0,0.308905 -14789,3303:120,30,-32,0,0,0.336032 -14790,3303:121,31,-32,0,0,0.348101 -14791,3303:122,32,-32,0,0,0.330393 -14792,3303:123,33,-32,0,0,0.30434 -14793,3303:124,34,-32,0,0,0.318036 -14794,3303:225,35,-32,0,0,0.329122 -14795,3303:226,36,-32,0,0,0.371573 -14796,3303:227,37,-32,0,0,0.360227 -14797,3303:228,38,-32,0,0,0.323813 -14798,3303:229,39,-32,0,0,0.315279 -14799,3304:120,40,-32,0,0,0.33242 -14800,3304:121,41,-32,0,0,0.334429 -14801,3304:122,42,-32,0,0,0.286403 -14802,3304:123,43,-32,0,0,0.254191 -14803,3304:124,44,-32,0,0,0.296352 -14804,3304:225,45,-32,0,0,0.3274 -14805,3304:226,46,-32,0,0,0.343824 -14806,3304:227,47,-32,0,0,0.31053 -14807,3304:228,48,-32,0,0,0.247301 -14808,3304:229,49,-32,0,0,0.305646 -14809,3305:120,50,-32,0,0,0.34054 -14810,3305:121,51,-32,0,0,0.339663 -14811,3305:122,52,-32,0,0,0.320448 -14812,3305:123,53,-32,0,0,0.265813 -14813,3305:124,54,-32,0,0,0.260929 -14814,3305:225,55,-32,0,0,0.3253 -14815,3305:226,56,-32,0,0,0.308839 -14816,3305:227,57,-32,0,0,0.310091 -14817,3305:228,58,-32,0,0,0.310223 -14818,3305:229,59,-32,0,0,0.309541 -14819,3306:120,60,-32,0,0,0.305211 -14820,3306:121,61,-32,0,0,0.310134 -14821,3306:122,62,-32,0,0,0.308313 -14822,3306:123,63,-32,0,0,0.295431 -14823,3306:124,64,-32,0,0,0.300439 -14824,3306:225,65,-32,0,0,0.292021 -14825,3306:226,66,-32,0,0,0.295367 -14826,3306:227,67,-32,0,0,0.290981 -14827,3306:228,68,-32,0,0,0.277893 -14828,3306:229,69,-32,0,0,0.290473 -14829,3307:120,70,-32,0,0,0.286466 -14830,3307:121,71,-32,0,0,0.293808 -14831,3307:122,72,-32,0,0,0.289563 -14832,3307:124,74,-32,0,0,0.277893 -14833,3307:225,75,-32,0,0,0.286277 -14834,3307:226,76,-32,0,0,0.287728 -14835,3307:227,77,-32,0,0,0.27236 -14836,3307:228,78,-32,0,0,0.264771 -14837,3307:229,79,-32,0,0,0.279255 -14838,3308:120,80,-32,0,0,0.279876 -14839,3308:121,81,-32,0,0,0.264272 -14840,3308:122,82,-32,0,0,0.257693 -14841,3308:123,83,-32,0,0,0.264672 -14842,3308:124,84,-32,0,0,0.26734 -14843,3308:225,85,-32,0,0,0.265172 -14844,3308:226,86,-32,0,0,0.248124 -14845,3308:227,87,-32,0,0,0.253899 -14846,3308:228,88,-32,0,0,0.263673 -14847,3308:229,89,-32,0,0,0.250392 -14848,3309:120,90,-32,0,0,0.249641 -14849,3309:121,91,-32,0,0,0.265032 -14850,3309:122,92,-32,0,0,0.268126 -14851,3309:123,93,-32,0,0,0.266395 -14852,3309:124,94,-32,0,0,0.26212 -14853,3309:225,95,-32,0,0,0.25992 -14854,3309:226,96,-32,0,0,0.258027 -14855,3309:227,97,-32,0,0,0.256183 -14856,3309:228,98,-32,0,0,0.25353 -14857,3309:229,99,-32,0,0,0.251609 -14858,3310:120,100,-32,0,0,0.257182 -14859,3310:121,101,-32,0,0,0.260276 -14860,3310:122,102,-32,0,0,0.259052 -14861,3310:123,103,-32,0,0,0.258146 -14862,3310:124,104,-32,0,0,0.257104 -14863,3310:225,105,-32,0,0,0.258599 -14864,3310:226,106,-32,0,0,0.25587 -14865,3310:227,107,-32,0,0,0.254405 -14866,3310:228,108,-32,0,0,0.253024 -14867,3310:229,109,-32,0,0,0.251706 -14868,3311:120,110,-32,0,0,0.253549 -14869,3311:121,111,-32,0,0,0.252791 -14870,3311:122,112,-32,0,0,0.253685 -14871,3311:123,113,-32,0,0,0.251822 -14872,3311:124,114,-32,0,0,0.255694 -14873,3311:225,115,-32,0,0,0.259664 -14874,3311:226,116,-32,0,0,0.261246 -14875,3311:227,117,-32,0,0,0.261386 -14876,3311:228,118,-32,0,0,0.261386 -14877,3311:229,119,-32,0,0,0.263912 -14878,3312:120,120,-32,0,0,0.265492 -14879,3312:121,121,-32,0,0,0.265412 -14880,3312:122,122,-32,0,0,0.266054 -14881,3312:123,123,-32,0,0,0.269701 -14882,3312:124,124,-32,0,0,0.269458 -14883,3312:225,125,-32,0,0,0.265352 -14884,3312:226,126,-32,0,0,0.265012 -14885,3312:227,127,-32,0,0,0.271282 -14886,3312:228,128,-32,0,0,0.271668 -14887,3312:229,129,-32,0,0,0.271364 -14888,3313:120,130,-32,0,0,0.270511 -14889,3313:121,131,-32,0,0,0.272279 -14890,3313:122,132,-32,0,0,0.273338 -14891,3313:123,133,-32,0,0,0.270876 -14892,3313:124,134,-32,0,0,0.276369 -14893,3313:225,135,-32,0,0,0.283118 -14894,3313:226,136,-32,0,0,0.289183 -14895,3313:227,137,-32,0,0,0.297875 -14896,3313:228,138,-32,0,0,0.295624 -14897,3313:229,139,-32,0,0,0.31172 -14898,3314:120,140,-32,0,0,0.316501 -14899,3314:121,141,-32,0,0,0.307503 -14900,3314:122,142,-32,0,0,0.303752 -14901,3314:123,143,-32,0,0,0.314371 -14902,3314:124,144,-32,0,0,0.321164 -14903,3314:229,149,-32,0,0,0.355316 -14904,3315:120,150,-32,0,0,0.345193 -14905,3315:121,151,-32,0,0,0.357508 -14906,3315:122,152,-32,0,0,0.347262 -14907,3315:123,153,-32,0,0,0.346518 -14908,3315:124,154,-32,0,0,0.335986 -14909,3315:225,155,-32,0,0,0.327468 -14910,3315:226,156,-32,0,0,0.328328 -14911,3315:227,157,-32,0,0,0.326383 -14912,3315:228,158,-32,0,0,0.329008 -14913,3315:229,159,-32,0,0,0.331554 -14914,3316:120,160,-32,0,0,0.329689 -14915,3316:121,161,-32,0,0,0.324016 -14916,3316:122,162,-32,0,0,0.321657 -14917,3316:123,163,-32,0,0,0.317457 -14918,3316:124,164,-32,0,0,0.31183 -14919,3316:225,165,-32,0,0,0.310992 -14920,3316:226,166,-32,0,0,0.311786 -14921,3316:227,167,-32,0,0,0.315258 -14922,3316:228,168,-32,0,0,0.311984 -14923,3316:229,169,-32,0,0,0.314482 -14924,3317:120,170,-32,0,0,0.313419 -14925,3317:121,171,-32,0,0,0.306607 -14926,3317:122,172,-32,0,0,0.301238 -14927,3317:227,177,-32,0,0,0.328601 -14928,3317:228,178,-32,0,0,0.339571 -14929,3317:229,179,-32,0,0,0.32233 -14930,3318:120,180,-32,0,0,0.335047 -14931,5318:110,-180,-31,0,0,0.345727 -14932,5317:219,-179,-31,0,0,0.338903 -14933,5317:218,-178,-31,0,0,0.329962 -14934,5317:217,-177,-31,0,0,0.334956 -14935,5317:216,-176,-31,0,0,0.334475 -14936,5317:215,-175,-31,0,0,0.330144 -14937,5317:114,-174,-31,0,0,0.325345 -14938,5317:113,-173,-31,0,0,0.31837 -14939,5317:112,-172,-31,0,0,0.323926 -14940,5317:111,-171,-31,0,0,0.332374 -14941,5317:110,-170,-31,0,0,0.326428 -14942,5316:219,-169,-31,0,0,0.323116 -14943,5316:218,-168,-31,0,0,0.324556 -14944,5316:217,-167,-31,0,0,0.324443 -14945,5316:216,-166,-31,0,0,0.323678 -14946,5316:215,-165,-31,0,0,0.325435 -14947,5316:114,-164,-31,0,0,0.320716 -14948,5316:113,-163,-31,0,0,0.325886 -14949,5316:112,-162,-31,0,0,0.329349 -14950,5316:111,-161,-31,0,0,0.342874 -14951,5316:110,-160,-31,0,0,0.343986 -14952,5315:219,-159,-31,0,0,0.342203 -14953,5315:218,-158,-31,0,0,0.345611 -14954,5315:217,-157,-31,0,0,0.343963 -14955,5315:216,-156,-31,0,0,0.345425 -14956,5315:215,-155,-31,0,0,0.347845 -14957,5315:114,-154,-31,0,0,0.352333 -14958,5315:113,-153,-31,0,0,0.354893 -14959,5315:112,-152,-31,0,0,0.358713 -14960,5315:111,-151,-31,0,0,0.355834 -14961,5315:110,-150,-31,0,0,0.358453 -14962,5314:219,-149,-31,0,0,0.36044 -14963,5314:218,-148,-31,0,0,0.363786 -14964,5314:217,-147,-31,0,0,0.362052 -14965,5314:216,-146,-31,0,0,0.362265 -14966,5314:215,-145,-31,0,0,0.361648 -14967,5314:114,-144,-31,0,0,0.359967 -14968,5314:113,-143,-31,0,0,0.363168 -14969,5314:112,-142,-31,0,0,0.362218 -14970,5314:111,-141,-31,0,0,0.358052 -14971,5314:110,-140,-31,0,0,0.357956 -14972,5313:219,-139,-31,0,0,0.354117 -14973,5313:218,-138,-31,0,0,0.352756 -14974,5313:217,-137,-31,0,0,0.349852 -14975,5313:216,-136,-31,0,0,0.347123 -14976,5313:215,-135,-31,0,0,0.349782 -14977,5313:114,-134,-31,0,0,0.349151 -14978,5313:113,-133,-31,0,0,0.349688 -14979,5313:112,-132,-31,0,0,0.350039 -14980,5313:111,-131,-31,0,0,0.347985 -14981,5313:110,-130,-31,0,0,0.347542 -14982,5312:219,-129,-31,0,0,0.346611 -14983,5312:218,-128,-31,0,0,0.342411 -14984,5312:217,-127,-31,0,0,0.335162 -14985,5312:216,-126,-31,0,0,0.335436 -14986,5312:215,-125,-31,0,0,0.33649 -14987,5312:114,-124,-31,0,0,0.33842 -14988,5312:113,-123,-31,0,0,0.333675 -14989,5312:112,-122,-31,0,0,0.331941 -14990,5312:111,-121,-31,0,0,0.324984 -14991,5312:110,-120,-31,0,0,0.321545 -14992,5311:219,-119,-31,0,0,0.326315 -14993,5311:218,-118,-31,0,0,0.332488 -14994,5311:217,-117,-31,0,0,0.33594 -14995,5311:216,-116,-31,0,0,0.336995 -14996,5311:215,-115,-31,0,0,0.333104 -14997,5311:114,-114,-31,0,0,0.31962 -14998,5311:113,-113,-31,0,0,0.31508 -14999,5311:112,-112,-31,0,0,0.310486 -15000,5311:111,-111,-31,0,0,0.297037 -15001,5311:110,-110,-31,0,0,0.294257 -15002,5310:219,-109,-31,0,0,0.304993 -15003,5310:218,-108,-31,0,0,0.296995 -15004,5310:217,-107,-31,0,0,0.29183 -15005,5310:216,-106,-31,0,0,0.296887 -15006,5310:215,-105,-31,0,0,0.293446 -15007,5310:114,-104,-31,0,0,0.299899 -15008,5310:113,-103,-31,0,0,0.294683 -15009,5310:112,-102,-31,0,0,0.294384 -15010,5310:111,-101,-31,0,0,0.295945 -15011,5310:110,-100,-31,0,0,0.291341 -15012,5309:219,-99,-31,0,0,0.296116 -15013,5309:218,-98,-31,0,0,0.298348 -15014,5309:217,-97,-31,0,0,0.291002 -15015,5309:216,-96,-31,0,0,0.294107 -15016,5309:215,-95,-31,0,0,0.29268 -15017,5309:114,-94,-31,0,0,0.298649 -15018,5309:113,-93,-31,0,0,0.300762 -15019,5309:112,-92,-31,0,0,0.288971 -15020,5309:111,-91,-31,0,0,0.283806 -15021,5309:110,-90,-31,0,0,0.282825 -15022,5308:219,-89,-31,0,0,0.284287 -15023,5308:218,-88,-31,0,0,0.284663 -15024,5308:217,-87,-31,0,0,0.287265 -15025,5308:216,-86,-31,0,0,0.288845 -15026,5308:215,-85,-31,0,0,0.286844 -15027,5308:114,-84,-31,0,0,0.279483 -15028,5308:113,-83,-31,0,0,0.276267 -15029,5308:112,-82,-31,0,0,0.271648 -15030,5308:111,-81,-31,0,0,0.276965 -15031,5308:110,-80,-31,0,0,0.278863 -15032,5307:219,-79,-31,0,0,0.281099 -15033,5307:218,-78,-31,0,0,0.282763 -15034,5307:217,-77,-31,0,0,0.28817 -15035,5307:216,-76,-31,0,0,0.287433 -15036,5307:215,-75,-31,0,0,0.288233 -15037,5307:114,-74,-31,0,0,0.291045 -15038,5306:112,-62,-31,0,0,0.424414 -15039,5306:111,-61,-31,0,0,0.370662 -15040,5306:110,-60,-31,0,0,0.366072 -15041,5305:219,-59,-31,0,0,0.35567 -15042,5305:218,-58,-31,0,0,0.346797 -15043,5305:217,-57,-31,0,0,0.330553 -15044,5305:216,-56,-31,0,0,0.263175 -15045,5305:215,-55,-31,0,0,0.263713 -15046,5305:114,-54,-31,0,0,0.33711 -15047,5305:113,-53,-31,0,0,0.39358 -15048,5305:112,-52,-31,0,0,0.32397 -15049,5305:111,-51,-31,0,0,0.339295 -15050,5305:110,-50,-31,0,0,0.399383 -15051,5304:219,-49,-31,0,0,0.409553 -15052,5304:218,-48,-31,0,0,0.350179 -15053,5304:217,-47,-31,0,0,0.374288 -15054,5304:216,-46,-31,0,0,0.381849 -15055,5304:215,-45,-31,0,0,0.356847 -15056,5304:114,-44,-31,0,0,0.302104 -15057,5304:113,-43,-31,0,0,0.288381 -15058,5304:112,-42,-31,0,0,0.32103 -15059,5304:111,-41,-31,0,0,0.337432 -15060,5304:110,-40,-31,0,0,0.324016 -15061,5303:219,-39,-31,0,0,0.303709 -15062,5303:218,-38,-31,0,0,0.289648 -15063,5303:217,-37,-31,0,0,0.281681 -15064,5303:216,-36,-31,0,0,0.292042 -15065,5303:215,-35,-31,0,0,0.296159 -15066,5303:114,-34,-31,0,0,0.292042 -15067,5303:113,-33,-31,0,0,0.296266 -15068,5303:112,-32,-31,0,0,0.308203 -15069,5303:111,-31,-31,0,0,0.309695 -15070,5303:110,-30,-31,0,0,0.308401 -15071,5302:219,-29,-31,0,0,0.318348 -15072,5302:218,-28,-31,0,0,0.307284 -15073,5302:217,-27,-31,0,0,0.30593 -15074,5302:216,-26,-31,0,0,0.305777 -15075,5302:215,-25,-31,0,0,0.302797 -15076,5302:114,-24,-31,0,0,0.30033 -15077,5302:113,-23,-31,0,0,0.298413 -15078,5302:112,-22,-31,0,0,0.29166 -15079,5302:111,-21,-31,0,0,0.28527 -15080,5302:110,-20,-31,0,0,0.2621 -15081,5301:219,-19,-31,0,0,0.26087 -15082,5301:218,-18,-31,0,0,0.271546 -15083,5301:217,-17,-31,0,0,0.275405 -15084,5301:216,-16,-31,0,0,0.276389 -15085,5301:215,-15,-31,0,0,0.290769 -15086,5301:114,-14,-31,0,0,0.288739 -15087,5301:113,-13,-31,0,0,0.274851 -15088,5301:112,-12,-31,0,0,0.279607 -15089,5301:111,-11,-31,0,0,0.282721 -15090,5301:110,-10,-31,0,0,0.277851 -15091,5300:219,-9,-31,0,0,0.280373 -15092,5300:218,-8,-31,0,0,0.277439 -15093,5300:217,-7,-31,0,0,0.274565 -15094,5300:216,-6,-31,0,0,0.271851 -15095,5300:215,-5,-31,0,0,0.277233 -15096,5300:114,-4,-31,0,0,0.274954 -15097,5300:113,-3,-31,0,0,0.262081 -15098,5300:112,-2,-31,0,0,0.265973 -15099,5300:111,-1,-31,0,0,0.262219 -15100,3300:111,0,-31,0,0,0.265813 -15101,3300:111,1,-31,0,0,0.258618 -15102,3300:112,2,-31,0,0,0.258244 -15103,3300:113,3,-31,0,0,0.266596 -15104,3300:114,4,-31,0,0,0.28139 -15105,3300:215,5,-31,0,0,0.281099 -15106,3300:216,6,-31,0,0,0.288064 -15107,3300:217,7,-31,0,0,0.308839 -15108,3300:218,8,-31,0,0,0.317546 -15109,3300:219,9,-31,0,0,0.310068 -15110,3301:110,10,-31,0,0,0.307766 -15111,3301:111,11,-31,0,0,0.358926 -15112,3301:112,12,-31,0,0,0.348591 -15113,3301:113,13,-31,0,0,0.366406 -15114,3301:114,14,-31,0,0,0.371957 -15115,3301:215,15,-31,0,0,0.344148 -15116,3301:216,16,-31,0,0,0.347355 -15117,3301:217,17,-31,0,0,0.425418 -15118,3301:218,18,-31,0,0,0.422533 -15119,3301:219,19,-31,0,0,0.430398 -15120,3302:110,20,-31,0,0,0.408983 -15121,3302:111,21,-31,0,0,0.359895 -15122,3302:112,22,-31,0,0,0.379306 -15123,3302:113,23,-31,0,0,0.40784 -15124,3302:114,24,-31,0,0,0.392085 -15125,3302:215,25,-31,0,0,0.364667 -15126,3302:216,26,-31,0,0,0.359753 -15127,3302:217,27,-31,0,0,0.328918 -15128,3302:218,28,-31,0,0,0.325164 -15129,3302:219,29,-31,0,0,0.356989 -15130,3303:110,30,-31,0,0,0.411045 -15131,3303:111,31,-31,0,0,0.414706 -15132,3303:112,32,-31,0,0,0.398816 -15133,3303:113,33,-31,0,0,0.321657 -15134,3303:114,34,-31,0,0,0.322173 -15135,3303:215,35,-31,0,0,0.390128 -15136,3303:216,36,-31,0,0,0.381971 -15137,3303:217,37,-31,0,0,0.383549 -15138,3303:218,38,-31,0,0,0.335505 -15139,3303:219,39,-31,0,0,0.321366 -15140,3304:110,40,-31,0,0,0.353131 -15141,3304:111,41,-31,0,0,0.371046 -15142,3304:112,42,-31,0,0,0.368077 -15143,3304:113,43,-31,0,0,0.345564 -15144,3304:114,44,-31,0,0,0.323431 -15145,3304:215,45,-31,0,0,0.357414 -15146,3304:216,46,-31,0,0,0.352778 -15147,3304:217,47,-31,0,0,0.351607 -15148,3304:218,48,-31,0,0,0.338604 -15149,3304:219,49,-31,0,0,0.339917 -15150,3305:110,50,-31,0,0,0.345843 -15151,3305:111,51,-31,0,0,0.328283 -15152,3305:112,52,-31,0,0,0.336376 -15153,3305:113,53,-31,0,0,0.30087 -15154,3305:114,54,-31,0,0,0.301497 -15155,3305:215,55,-31,0,0,0.330258 -15156,3305:216,56,-31,0,0,0.307722 -15157,3305:217,57,-31,0,0,0.306541 -15158,3305:218,58,-31,0,0,0.302971 -15159,3305:219,59,-31,0,0,0.305254 -15160,3306:110,60,-31,0,0,0.311918 -15161,3306:111,61,-31,0,0,0.313928 -15162,3306:112,62,-31,0,0,0.309849 -15163,3306:113,63,-31,0,0,0.305341 -15164,3306:114,64,-31,0,0,0.309387 -15165,3306:215,65,-31,0,0,0.305211 -15166,3306:216,66,-31,0,0,0.306497 -15167,3306:217,67,-31,0,0,0.305777 -15168,3306:218,68,-31,0,0,0.307831 -15169,3306:219,69,-31,0,0,0.305668 -15170,3307:110,70,-31,0,0,0.294705 -15171,3307:111,71,-31,0,0,0.302342 -15172,3307:112,72,-31,0,0,0.29588 -15173,3307:114,74,-31,0,0,0.298821 -15174,3307:215,75,-31,0,0,0.300892 -15175,3307:216,76,-31,0,0,0.299425 -15176,3307:217,77,-31,0,0,0.29464 -15177,3307:218,78,-31,0,0,0.288528 -15178,3307:219,79,-31,0,0,0.29268 -15179,3308:110,80,-31,0,0,0.290261 -15180,3308:111,81,-31,0,0,0.282471 -15181,3308:112,82,-31,0,0,0.274156 -15182,3308:113,83,-31,0,0,0.28697 -15183,3308:114,84,-31,0,0,0.289204 -15184,3308:215,85,-31,0,0,0.284601 -15185,3308:216,86,-31,0,0,0.277727 -15186,3308:217,87,-31,0,0,0.281494 -15187,3308:218,88,-31,0,0,0.280104 -15188,3308:219,89,-31,0,0,0.270795 -15189,3309:110,90,-31,0,0,0.273441 -15190,3309:111,91,-31,0,0,0.271607 -15191,3309:112,92,-31,0,0,0.270471 -15192,3309:113,93,-31,0,0,0.269822 -15193,3309:114,94,-31,0,0,0.269418 -15194,3309:215,95,-31,0,0,0.268085 -15195,3309:216,96,-31,0,0,0.265172 -15196,3309:217,97,-31,0,0,0.261445 -15197,3309:218,98,-31,0,0,0.259762 -15198,3309:219,99,-31,0,0,0.262637 -15199,3310:110,100,-31,0,0,0.267219 -15200,3310:111,101,-31,0,0,0.266737 -15201,3310:112,102,-31,0,0,0.265813 -15202,3310:113,103,-31,0,0,0.265933 -15203,3310:114,104,-31,0,0,0.266737 -15204,3310:215,105,-31,0,0,0.266676 -15205,3310:216,106,-31,0,0,0.266737 -15206,3310:217,107,-31,0,0,0.265954 -15207,3310:218,108,-31,0,0,0.264252 -15208,3310:219,109,-31,0,0,0.264332 -15209,3311:110,110,-31,0,0,0.265753 -15210,3311:111,111,-31,0,0,0.270045 -15211,3311:112,112,-31,0,0,0.311257 -15212,3311:113,113,-31,0,0,0.277006 -15213,3311:114,114,-31,0,0,0.27039 -15214,3311:215,115,-31,0,0,0.277769 -15215,3311:216,116,-31,0,0,0.28412 -15216,3311:217,117,-31,0,0,0.284998 -15217,3311:218,118,-31,0,0,0.28504 -15218,3311:219,119,-31,0,0,0.285124 -15219,3312:110,120,-31,0,0,0.281785 -15220,3312:111,121,-31,0,0,0.282618 -15221,3312:112,122,-31,0,0,0.289711 -15222,3312:113,123,-31,0,0,0.289901 -15223,3312:114,124,-31,0,0,0.289352 -15224,3312:215,125,-31,0,0,0.283848 -15225,3312:216,126,-31,0,0,0.2794 -15226,3312:217,127,-31,0,0,0.288381 -15227,3312:218,128,-31,0,0,0.285312 -15228,3312:219,129,-31,0,0,0.284182 -15229,3313:110,130,-31,0,0,0.28718 -15230,3313:111,131,-31,0,0,0.290685 -15231,3313:112,132,-31,0,0,0.290303 -15232,3313:113,133,-31,0,0,0.292786 -15233,3313:114,134,-31,0,0,0.294598 -15234,3313:215,135,-31,0,0,0.300654 -15235,3313:216,136,-31,0,0,0.311102 -15236,3313:217,137,-31,0,0,0.30545 -15237,3313:218,138,-31,0,0,0.317969 -15238,3313:219,139,-31,0,0,0.329372 -15239,3314:110,140,-31,0,0,0.325007 -15240,3314:111,141,-31,0,0,0.332876 -15241,3314:112,142,-31,0,0,0.334521 -15242,3314:113,143,-31,0,0,0.335162 -15243,3314:114,144,-31,0,0,0.347635 -15244,3314:215,145,-31,0,0,0.353999 -15245,3314:216,146,-31,0,0,0.343222 -15246,3314:217,147,-31,0,0,0.343291 -15247,3314:218,148,-31,0,0,0.372437 -15248,3314:219,149,-31,0,0,0.3655 -15249,3315:110,150,-31,0,0,0.354422 -15250,3315:111,151,-31,0,0,0.360843 -15251,3315:112,152,-31,0,0,0.38134 -15252,3315:113,153,-31,0,0,0.367982 -15253,3315:114,154,-31,0,0,0.352919 -15254,3315:215,155,-31,0,0,0.352756 -15255,3315:216,156,-31,0,0,0.357862 -15256,3315:217,157,-31,0,0,0.358783 -15257,3315:218,158,-31,0,0,0.359493 -15258,3315:219,159,-31,0,0,0.364952 -15259,3316:110,160,-31,0,0,0.364286 -15260,3316:111,161,-31,0,0,0.362337 -15261,3316:112,162,-31,0,0,0.350554 -15262,3316:113,163,-31,0,0,0.34024 -15263,3316:114,164,-31,0,0,0.33331 -15264,3316:215,165,-31,0,0,0.337501 -15265,3316:216,166,-31,0,0,0.336651 -15266,3316:217,167,-31,0,0,0.330416 -15267,3316:218,168,-31,0,0,0.324173 -15268,3316:219,169,-31,0,0,0.323318 -15269,3317:110,170,-31,0,0,0.323431 -15270,3317:111,171,-31,0,0,0.322599 -15271,3317:112,172,-31,0,0,0.311235 -15272,3317:113,173,-31,0,0,0.308795 -15273,3317:114,174,-31,0,0,0.312271 -15274,3317:215,175,-31,0,0,0.332922 -15275,3317:218,178,-31,0,0,0.378556 -15276,3317:219,179,-31,0,0,0.367767 -15277,3318:110,180,-31,0,0,0.345727 -15278,5318:100,-180,-30,0,0,0.369967 -15279,5317:209,-179,-30,0,0,0.347402 -15280,5317:208,-178,-30,0,0,0.345588 -15281,5317:207,-177,-30,0,0,0.345866 -15282,5317:206,-176,-30,0,0,0.338259 -15283,5317:205,-175,-30,0,0,0.335574 -15284,5317:104,-174,-30,0,0,0.337018 -15285,5317:103,-173,-30,0,0,0.340078 -15286,5317:102,-172,-30,0,0,0.351396 -15287,5317:101,-171,-30,0,0,0.349338 -15288,5317:100,-170,-30,0,0,0.346215 -15289,5316:209,-169,-30,0,0,0.340725 -15290,5316:208,-168,-30,0,0,0.337225 -15291,5316:207,-167,-30,0,0,0.336628 -15292,5316:206,-166,-30,0,0,0.340309 -15293,5316:205,-165,-30,0,0,0.343198 -15294,5316:104,-164,-30,0,0,0.345425 -15295,5316:103,-163,-30,0,0,0.349571 -15296,5316:102,-162,-30,0,0,0.350296 -15297,5316:101,-161,-30,0,0,0.355481 -15298,5316:100,-160,-30,0,0,0.355222 -15299,5315:209,-159,-30,0,0,0.358406 -15300,5315:208,-158,-30,0,0,0.358359 -15301,5315:207,-157,-30,0,0,0.35454 -15302,5315:206,-156,-30,0,0,0.354305 -15303,5315:205,-155,-30,0,0,0.35824 -15304,5315:104,-154,-30,0,0,0.363763 -15305,5315:103,-153,-30,0,0,0.365357 -15306,5315:102,-152,-30,0,0,0.365286 -15307,5315:101,-151,-30,0,0,0.367002 -15308,5315:100,-150,-30,0,0,0.36968 -15309,5314:209,-149,-30,0,0,0.371837 -15310,5314:208,-148,-30,0,0,0.370231 -15311,5314:207,-147,-30,0,0,0.370207 -15312,5314:206,-146,-30,0,0,0.374048 -15313,5314:205,-145,-30,0,0,0.379935 -15314,5314:104,-144,-30,0,0,0.377591 -15315,5314:103,-143,-30,0,0,0.375107 -15316,5314:102,-142,-30,0,0,0.375492 -15317,5314:101,-141,-30,0,0,0.37566 -15318,5314:100,-140,-30,0,0,0.372653 -15319,5313:209,-139,-30,0,0,0.371933 -15320,5313:208,-138,-30,0,0,0.372413 -15321,5313:207,-137,-30,0,0,0.368722 -15322,5313:206,-136,-30,0,0,0.36674 -15323,5313:205,-135,-30,0,0,0.367599 -15324,5313:104,-134,-30,0,0,0.363026 -15325,5313:103,-133,-30,0,0,0.366215 -15326,5313:102,-132,-30,0,0,0.36153 -15327,5313:101,-131,-30,0,0,0.359375 -15328,5313:100,-130,-30,0,0,0.35574 -15329,5312:209,-129,-30,0,0,0.35567 -15330,5312:208,-128,-30,0,0,0.350764 -15331,5312:207,-127,-30,0,0,0.347355 -15332,5312:206,-126,-30,0,0,0.3471 -15333,5312:205,-125,-30,0,0,0.348125 -15334,5312:104,-124,-30,0,0,0.343291 -15335,5312:103,-123,-30,0,0,0.344682 -15336,5312:102,-122,-30,0,0,0.341186 -15337,5312:101,-121,-30,0,0,0.342781 -15338,5312:100,-120,-30,0,0,0.345518 -15339,5311:209,-119,-30,0,0,0.343013 -15340,5311:208,-118,-30,0,0,0.34181 -15341,5311:207,-117,-30,0,0,0.34336 -15342,5311:206,-116,-30,0,0,0.342712 -15343,5311:205,-115,-30,0,0,0.334201 -15344,5311:104,-114,-30,0,0,0.330871 -15345,5311:103,-113,-30,0,0,0.334017 -15346,5311:102,-112,-30,0,0,0.330439 -15347,5311:101,-111,-30,0,0,0.313707 -15348,5311:100,-110,-30,0,0,0.323026 -15349,5310:209,-109,-30,0,0,0.318527 -15350,5310:208,-108,-30,0,0,0.319732 -15351,5310:207,-107,-30,0,0,0.321478 -15352,5310:206,-106,-30,0,0,0.310883 -15353,5310:205,-105,-30,0,0,0.31875 -15354,5310:104,-104,-30,0,0,0.315435 -15355,5310:103,-103,-30,0,0,0.312535 -15356,5310:102,-102,-30,0,0,0.314947 -15357,5310:101,-101,-30,0,0,0.310332 -15358,5310:100,-100,-30,0,0,0.31477 -15359,5309:209,-99,-30,0,0,0.307437 -15360,5309:208,-98,-30,0,0,0.307153 -15361,5309:207,-97,-30,0,0,0.304644 -15362,5309:206,-96,-30,0,0,0.307175 -15363,5309:205,-95,-30,0,0,0.317813 -15364,5309:104,-94,-30,0,0,0.317524 -15365,5309:103,-93,-30,0,0,0.312315 -15366,5309:102,-92,-30,0,0,0.307569 -15367,5309:101,-91,-30,0,0,0.306017 -15368,5309:100,-90,-30,0,0,0.304188 -15369,5308:209,-89,-30,0,0,0.296116 -15370,5308:208,-88,-30,0,0,0.29809 -15371,5308:207,-87,-30,0,0,0.303992 -15372,5308:206,-86,-30,0,0,0.307088 -15373,5308:205,-85,-30,0,0,0.303514 -15374,5308:104,-84,-30,0,0,0.29633 -15375,5308:103,-83,-30,0,0,0.291787 -15376,5308:102,-82,-30,0,0,0.294961 -15377,5308:101,-81,-30,0,0,0.293787 -15378,5308:100,-80,-30,0,0,0.30033 -15379,5307:209,-79,-30,0,0,0.300439 -15380,5307:208,-78,-30,0,0,0.295773 -15381,5307:207,-77,-30,0,0,0.301281 -15382,5307:206,-76,-30,0,0,0.301887 -15383,5307:205,-75,-30,0,0,0.298133 -15384,5307:104,-74,-30,0,0,0.307021 -15385,5306:100,-60,-30,0,0,0.393262 -15386,5305:209,-59,-30,0,0,0.375396 -15387,5305:208,-58,-30,0,0,0.384836 -15388,5305:207,-57,-30,0,0,0.362527 -15389,5305:206,-56,-30,0,0,0.316523 -15390,5305:205,-55,-30,0,0,0.271709 -15391,5305:104,-54,-30,0,0,0.340194 -15392,5305:103,-53,-30,0,0,0.401356 -15393,5305:102,-52,-30,0,0,0.351865 -15394,5305:101,-51,-30,0,0,0.360937 -15395,5305:100,-50,-30,0,0,0.411518 -15396,5304:209,-49,-30,0,0,0.407146 -15397,5304:208,-48,-30,0,0,0.385445 -15398,5304:207,-47,-30,0,0,0.403085 -15399,5304:206,-46,-30,0,0,0.396969 -15400,5304:205,-45,-30,0,0,0.381437 -15401,5304:104,-44,-30,0,0,0.361222 -15402,5304:103,-43,-30,0,0,0.351677 -15403,5304:102,-42,-30,0,0,0.348428 -15404,5304:101,-41,-30,0,0,0.364309 -15405,5304:100,-40,-30,0,0,0.33315 -15406,5303:209,-39,-30,0,0,0.300806 -15407,5303:208,-38,-30,0,0,0.303579 -15408,5303:207,-37,-30,0,0,0.312226 -15409,5303:206,-36,-30,0,0,0.326745 -15410,5303:205,-35,-30,0,0,0.332146 -15411,5303:104,-34,-30,0,0,0.332739 -15412,5303:103,-33,-30,0,0,0.324398 -15413,5303:102,-32,-30,0,0,0.322622 -15414,5303:101,-31,-30,0,0,0.322555 -15415,5303:100,-30,-30,0,0,0.322061 -15416,5302:209,-29,-30,0,0,0.316212 -15417,5302:208,-28,-30,0,0,0.310728 -15418,5302:207,-27,-30,0,0,0.308247 -15419,5302:206,-26,-30,0,0,0.308269 -15420,5302:205,-25,-30,0,0,0.305887 -15421,5302:104,-24,-30,0,0,0.304079 -15422,5302:103,-23,-30,0,0,0.302732 -15423,5302:102,-22,-30,0,0,0.302494 -15424,5302:101,-21,-30,0,0,0.301476 -15425,5302:100,-20,-30,0,0,0.299748 -15426,5301:209,-19,-30,0,0,0.303275 -15427,5301:208,-18,-30,0,0,0.312381 -15428,5301:207,-17,-30,0,0,0.306759 -15429,5301:206,-16,-30,0,0,0.303687 -15430,5301:205,-15,-30,0,0,0.301865 -15431,5301:104,-14,-30,0,0,0.311675 -15432,5301:103,-13,-30,0,0,0.306737 -15433,5301:102,-12,-30,0,0,0.297982 -15434,5301:101,-11,-30,0,0,0.292935 -15435,5301:100,-10,-30,0,0,0.295517 -15436,5300:209,-9,-30,0,0,0.293808 -15437,5300:208,-8,-30,0,0,0.302949 -15438,5300:207,-7,-30,0,0,0.297381 -15439,5300:206,-6,-30,0,0,0.30271 -15440,5300:205,-5,-30,0,0,0.294598 -15441,5300:104,-4,-30,0,0,0.290155 -15442,5300:103,-3,-30,0,0,0.277336 -15443,5300:102,-2,-30,0,0,0.283806 -15444,5300:101,-1,-30,0,0,0.294235 -15445,3300:101,0,-30,0,0,0.295153 -15446,3300:101,1,-30,0,0,0.280477 -15447,3300:102,2,-30,0,0,0.286004 -15448,3300:103,3,-30,0,0,0.284454 -15449,3300:104,4,-30,0,0,0.289035 -15450,3300:205,5,-30,0,0,0.298413 -15451,3300:206,6,-30,0,0,0.30321 -15452,3300:207,7,-30,0,0,0.302126 -15453,3300:208,8,-30,0,0,0.321792 -15454,3300:209,9,-30,0,0,0.323139 -15455,3301:100,10,-30,0,0,0.351489 -15456,3301:101,11,-30,0,0,0.379137 -15457,3301:102,12,-30,0,0,0.38598 -15458,3301:103,13,-30,0,0,0.387589 -15459,3301:104,14,-30,0,0,0.391743 -15460,3301:205,15,-30,0,0,0.387491 -15461,3301:206,16,-30,0,0,0.405857 -15462,3301:207,17,-30,0,0,0.432767 -15463,3301:208,18,-30,0,0,0.425996 -15464,3301:209,19,-30,0,0,0.429592 -15465,3302:100,20,-30,0,0,0.421656 -15466,3302:101,21,-30,0,0,0.415978 -15467,3302:102,22,-30,0,0,0.42316 -15468,3302:103,23,-30,0,0,0.426624 -15469,3302:104,24,-30,0,0,0.389102 -15470,3302:205,25,-30,0,0,0.398964 -15471,3302:206,26,-30,0,0,0.392796 -15472,3302:207,27,-30,0,0,0.333058 -15473,3302:208,28,-30,0,0,0.35574 -15474,3302:209,29,-30,0,0,0.401356 -15475,3303:100,30,-30,0,0,0.417152 -15476,3303:101,31,-30,0,0,0.402516 -15477,3303:102,32,-30,0,0,0.414058 -15478,3303:103,33,-30,0,0,0.327129 -15479,3303:104,34,-30,0,0,0.340217 -15480,3303:205,35,-30,0,0,0.401183 -15481,3303:206,36,-30,0,0,0.378533 -15482,3303:207,37,-30,0,0,0.377059 -15483,3303:208,38,-30,0,0,0.365452 -15484,3303:209,39,-30,0,0,0.341071 -15485,3304:100,40,-30,0,0,0.375107 -15486,3304:101,41,-30,0,0,0.365977 -15487,3304:102,42,-30,0,0,0.361625 -15488,3304:103,43,-30,0,0,0.365238 -15489,3304:104,44,-30,0,0,0.36581 -15490,3304:205,45,-30,0,0,0.358996 -15491,3304:206,46,-30,0,0,0.355552 -15492,3304:207,47,-30,0,0,0.35238 -15493,3304:208,48,-30,0,0,0.356117 -15494,3304:209,49,-30,0,0,0.358335 -15495,3305:100,50,-30,0,0,0.348218 -15496,3305:101,51,-30,0,0,0.340378 -15497,3305:102,52,-30,0,0,0.337592 -15498,3305:103,53,-30,0,0,0.320359 -15499,3305:104,54,-30,0,0,0.33617 -15500,3305:205,55,-30,0,0,0.33918 -15501,3305:206,56,-30,0,0,0.318705 -15502,3305:207,57,-30,0,0,0.322083 -15503,3305:208,58,-30,0,0,0.328713 -15504,3305:209,59,-30,0,0,0.323701 -15505,3306:100,60,-30,0,0,0.320359 -15506,3306:101,61,-30,0,0,0.322914 -15507,3306:102,62,-30,0,0,0.328464 -15508,3306:103,63,-30,0,0,0.327264 -15509,3306:104,64,-30,0,0,0.321836 -15510,3306:205,65,-30,0,0,0.318616 -15511,3306:206,66,-30,0,0,0.322465 -15512,3306:207,67,-30,0,0,0.320492 -15513,3306:208,68,-30,0,0,0.313707 -15514,3306:209,69,-30,0,0,0.314548 -15515,3307:100,70,-30,0,0,0.31457 -15516,3307:101,71,-30,0,0,0.313818 -15517,3307:102,72,-30,0,0,0.311278 -15518,3307:104,74,-30,0,0,0.313773 -15519,3307:205,75,-30,0,0,0.311631 -15520,3307:206,76,-30,0,0,0.300611 -15521,3307:207,77,-30,0,0,0.295068 -15522,3307:208,78,-30,0,0,0.295367 -15523,3307:209,79,-30,0,0,0.301043 -15524,3308:100,80,-30,0,0,0.296266 -15525,3308:101,81,-30,0,0,0.294939 -15526,3308:102,82,-30,0,0,0.296394 -15527,3308:103,83,-30,0,0,0.294576 -15528,3308:104,84,-30,0,0,0.292106 -15529,3308:205,85,-30,0,0,0.291597 -15530,3308:206,86,-30,0,0,0.296501 -15531,3308:207,87,-30,0,0,0.295324 -15532,3308:208,88,-30,0,0,0.29432 -15533,3308:209,89,-30,0,0,0.291915 -15534,3309:100,90,-30,0,0,0.285354 -15535,3309:101,91,-30,0,0,0.286277 -15536,3309:102,92,-30,0,0,0.285774 -15537,3309:103,93,-30,0,0,0.284287 -15538,3309:104,94,-30,0,0,0.28293 -15539,3309:205,95,-30,0,0,0.280913 -15540,3309:206,96,-30,0,0,0.277913 -15541,3309:207,97,-30,0,0,0.276965 -15542,3309:208,98,-30,0,0,0.279772 -15543,3309:209,99,-30,0,0,0.277789 -15544,3310:100,100,-30,0,0,0.276657 -15545,3310:101,101,-30,0,0,0.279876 -15546,3310:102,102,-30,0,0,0.27713 -15547,3310:103,103,-30,0,0,0.277893 -15548,3310:104,104,-30,0,0,0.28191 -15549,3310:205,105,-30,0,0,0.279793 -15550,3310:206,106,-30,0,0,0.278614 -15551,3310:207,107,-30,0,0,0.276822 -15552,3310:208,108,-30,0,0,0.277851 -15553,3310:209,109,-30,0,0,0.280373 -15554,3311:100,110,-30,0,0,0.302754 -15555,3311:101,111,-30,0,0,0.31962 -15556,3311:102,112,-30,0,0,0.326338 -15557,3311:103,113,-30,0,0,0.319688 -15558,3311:104,114,-30,0,0,0.329235 -15559,3311:205,115,-30,0,0,0.313928 -15560,3311:206,116,-30,0,0,0.30139 -15561,3311:207,117,-30,0,0,0.309981 -15562,3311:208,118,-30,0,0,0.305515 -15563,3311:209,119,-30,0,0,0.305385 -15564,3312:100,120,-30,0,0,0.308686 -15565,3312:101,121,-30,0,0,0.317435 -15566,3312:102,122,-30,0,0,0.309695 -15567,3312:103,123,-30,0,0,0.305559 -15568,3312:104,124,-30,0,0,0.308313 -15569,3312:205,125,-30,0,0,0.311675 -15570,3312:206,126,-30,0,0,0.311081 -15571,3312:207,127,-30,0,0,0.310244 -15572,3312:208,128,-30,0,0,0.303253 -15573,3312:209,129,-30,0,0,0.298735 -15574,3313:100,130,-30,0,0,0.303796 -15575,3313:101,131,-30,0,0,0.308401 -15576,3313:102,132,-30,0,0,0.31579 -15577,3313:103,133,-30,0,0,0.311102 -15578,3313:104,134,-30,0,0,0.320761 -15579,3313:205,135,-30,0,0,0.334429 -15580,3313:206,136,-30,0,0,0.330371 -15581,3313:207,137,-30,0,0,0.326496 -15582,3313:208,138,-30,0,0,0.327333 -15583,3313:209,139,-30,0,0,0.342087 -15584,3314:100,140,-30,0,0,0.340147 -15585,3314:101,141,-30,0,0,0.35156 -15586,3314:102,142,-30,0,0,0.357248 -15587,3314:103,143,-30,0,0,0.363382 -15588,3314:104,144,-30,0,0,0.367361 -15589,3314:205,145,-30,0,0,0.363263 -15590,3314:206,146,-30,0,0,0.375396 -15591,3314:207,147,-30,0,0,0.38384 -15592,3314:208,148,-30,0,0,0.366597 -15593,3314:209,149,-30,0,0,0.389737 -15594,3315:100,150,-30,0,0,0.423686 -15595,3315:101,151,-30,0,0,0.427152 -15596,3315:102,152,-30,0,0,0.425418 -15597,3315:103,153,-30,0,0,0.387784 -15598,3315:104,154,-30,0,0,0.411742 -15599,3315:205,155,-30,0,0,0.382116 -15600,3315:206,156,-30,0,0,0.409851 -15601,3315:207,157,-30,0,0,0.386663 -15602,3315:208,158,-30,0,0,0.39211 -15603,3315:209,159,-30,0,0,0.390984 -15604,3316:100,160,-30,0,0,0.389566 -15605,3316:101,161,-30,0,0,0.383718 -15606,3316:102,162,-30,0,0,0.375685 -15607,3316:103,163,-30,0,0,0.362931 -15608,3316:104,164,-30,0,0,0.359351 -15609,3316:205,165,-30,0,0,0.356447 -15610,3316:206,166,-30,0,0,0.352122 -15611,3316:207,167,-30,0,0,0.348941 -15612,3316:208,168,-30,0,0,0.348171 -15613,3316:209,169,-30,0,0,0.340932 -15614,3317:100,170,-30,0,0,0.338328 -15615,3317:101,171,-30,0,0,0.336766 -15616,3317:102,172,-30,0,0,0.335276 -15617,3317:103,173,-30,0,0,0.332238 -15618,3317:104,174,-30,0,0,0.343592 -15619,3317:209,179,-30,0,0,0.389346 -15620,3318:100,180,-30,0,0,0.369967 -15621,5218:390,-180,-29,0,0,0.392821 -15622,5217:499,-179,-29,0,0,0.379282 -15623,5217:498,-178,-29,0,0,0.364214 -15624,5217:497,-177,-29,0,0,0.355716 -15625,5217:496,-176,-29,0,0,0.352263 -15626,5217:495,-175,-29,0,0,0.350086 -15627,5217:394,-174,-29,0,0,0.351302 -15628,5217:393,-173,-29,0,0,0.352451 -15629,5217:392,-172,-29,0,0,0.363097 -15630,5217:391,-171,-29,0,0,0.371117 -15631,5217:390,-170,-29,0,0,0.367623 -15632,5216:499,-169,-29,0,0,0.358571 -15633,5216:498,-168,-29,0,0,0.354516 -15634,5216:497,-167,-29,0,0,0.348754 -15635,5216:496,-166,-29,0,0,0.355575 -15636,5216:495,-165,-29,0,0,0.359398 -15637,5216:394,-164,-29,0,0,0.360582 -15638,5216:393,-163,-29,0,0,0.366668 -15639,5216:392,-162,-29,0,0,0.367767 -15640,5216:391,-161,-29,0,0,0.366311 -15641,5216:390,-160,-29,0,0,0.370039 -15642,5215:499,-159,-29,0,0,0.369129 -15643,5215:498,-158,-29,0,0,0.369081 -15644,5215:497,-157,-29,0,0,0.371765 -15645,5215:496,-156,-29,0,0,0.367575 -15646,5215:495,-155,-29,0,0,0.367838 -15647,5215:394,-154,-29,0,0,0.372437 -15648,5215:393,-153,-29,0,0,0.374216 -15649,5215:392,-152,-29,0,0,0.373879 -15650,5215:391,-151,-29,0,0,0.379306 -15651,5215:390,-150,-29,0,0,0.382893 -15652,5214:499,-149,-29,0,0,0.385056 -15653,5214:498,-148,-29,0,0,0.381995 -15654,5214:497,-147,-29,0,0,0.381582 -15655,5214:496,-146,-29,0,0,0.38367 -15656,5214:495,-145,-29,0,0,0.383646 -15657,5214:394,-144,-29,0,0,0.386443 -15658,5214:393,-143,-29,0,0,0.387711 -15659,5214:392,-142,-29,0,0,0.38715 -15660,5214:391,-141,-29,0,0,0.385907 -15661,5214:390,-140,-29,0,0,0.384739 -15662,5213:499,-139,-29,0,0,0.385713 -15663,5213:498,-138,-29,0,0,0.383791 -15664,5213:497,-137,-29,0,0,0.379645 -15665,5213:496,-136,-29,0,0,0.377059 -15666,5213:495,-135,-29,0,0,0.379113 -15667,5213:394,-134,-29,0,0,0.372149 -15668,5213:393,-133,-29,0,0,0.375443 -15669,5213:392,-132,-29,0,0,0.369775 -15670,5213:391,-131,-29,0,0,0.364833 -15671,5213:390,-130,-29,0,0,0.363596 -15672,5212:499,-129,-29,0,0,0.363525 -15673,5212:498,-128,-29,0,0,0.361198 -15674,5212:497,-127,-29,0,0,0.360203 -15675,5212:496,-126,-29,0,0,0.358122 -15676,5212:495,-125,-29,0,0,0.357084 -15677,5212:394,-124,-29,0,0,0.35673 -15678,5212:393,-123,-29,0,0,0.352263 -15679,5212:392,-122,-29,0,0,0.349268 -15680,5212:391,-121,-29,0,0,0.352122 -15681,5212:390,-120,-29,0,0,0.354211 -15682,5211:499,-119,-29,0,0,0.353366 -15683,5211:498,-118,-29,0,0,0.355552 -15684,5211:497,-117,-29,0,0,0.3564 -15685,5211:496,-116,-29,0,0,0.351958 -15686,5211:495,-115,-29,0,0,0.345936 -15687,5211:394,-114,-29,0,0,0.347193 -15688,5211:393,-113,-29,0,0,0.345634 -15689,5211:392,-112,-29,0,0,0.342157 -15690,5211:391,-111,-29,0,0,0.335139 -15691,5211:390,-110,-29,0,0,0.341094 -15692,5210:499,-109,-29,0,0,0.347262 -15693,5210:498,-108,-29,0,0,0.340055 -15694,5210:497,-107,-29,0,0,0.334063 -15695,5210:496,-106,-29,0,0,0.330644 -15696,5210:495,-105,-29,0,0,0.332533 -15697,5210:394,-104,-29,0,0,0.33003 -15698,5210:393,-103,-29,0,0,0.329145 -15699,5210:392,-102,-29,0,0,0.321478 -15700,5210:391,-101,-29,0,0,0.328057 -15701,5210:390,-100,-29,0,0,0.323026 -15702,5209:499,-99,-29,0,0,0.320671 -15703,5209:498,-98,-29,0,0,0.325592 -15704,5209:497,-97,-29,0,0,0.327717 -15705,5209:496,-96,-29,0,0,0.325548 -15706,5209:495,-95,-29,0,0,0.331873 -15707,5209:394,-94,-29,0,0,0.326948 -15708,5209:393,-93,-29,0,0,0.331599 -15709,5209:392,-92,-29,0,0,0.324714 -15710,5209:391,-91,-29,0,0,0.321231 -15711,5209:390,-90,-29,0,0,0.317836 -15712,5208:499,-89,-29,0,0,0.322555 -15713,5208:498,-88,-29,0,0,0.315213 -15714,5208:497,-87,-29,0,0,0.312271 -15715,5208:496,-86,-29,0,0,0.31904 -15716,5208:495,-85,-29,0,0,0.320716 -15717,5208:394,-84,-29,0,0,0.316167 -15718,5208:393,-83,-29,0,0,0.315058 -15719,5208:392,-82,-29,0,0,0.319643 -15720,5208:391,-81,-29,0,0,0.317992 -15721,5208:390,-80,-29,0,0,0.3128 -15722,5207:499,-79,-29,0,0,0.315279 -15723,5207:498,-78,-29,0,0,0.315612 -15724,5207:497,-77,-29,0,0,0.318727 -15725,5207:496,-76,-29,0,0,0.315901 -15726,5207:495,-75,-29,0,0,0.315169 -15727,5207:394,-74,-29,0,0,0.319665 -15728,5205:497,-57,-29,0,0,0.432969 -15729,5205:496,-56,-29,0,0,0.40856 -15730,5205:495,-55,-29,0,0,0.307065 -15731,5205:394,-54,-29,0,0,0.336766 -15732,5205:393,-53,-29,0,0,0.397216 -15733,5205:392,-52,-29,0,0,0.391229 -15734,5205:391,-51,-29,0,0,0.43711 -15735,5205:390,-50,-29,0,0,0.432944 -15736,5204:499,-49,-29,0,0,0.432313 -15737,5204:498,-48,-29,0,0,0.394218 -15738,5204:497,-47,-29,0,0,0.39412 -15739,5204:496,-46,-29,0,0,0.411194 -15740,5204:495,-45,-29,0,0,0.418852 -15741,5204:394,-44,-29,0,0,0.386785 -15742,5204:393,-43,-29,0,0,0.346238 -15743,5204:392,-42,-29,0,0,0.350881 -15744,5204:391,-41,-29,0,0,0.357013 -15745,5204:390,-40,-29,0,0,0.372894 -15746,5203:499,-39,-29,0,0,0.356094 -15747,5203:498,-38,-29,0,0,0.353577 -15748,5203:497,-37,-29,0,0,0.347286 -15749,5203:496,-36,-29,0,0,0.343268 -15750,5203:495,-35,-29,0,0,0.33688 -15751,5203:394,-34,-29,0,0,0.335826 -15752,5203:393,-33,-29,0,0,0.339848 -15753,5203:392,-32,-29,0,0,0.349432 -15754,5203:391,-31,-29,0,0,0.342319 -15755,5203:390,-30,-29,0,0,0.338006 -15756,5202:499,-29,-29,0,0,0.33372 -15757,5202:498,-28,-29,0,0,0.32424 -15758,5202:497,-27,-29,0,0,0.329054 -15759,5202:496,-26,-29,0,0,0.330121 -15760,5202:495,-25,-29,0,0,0.314326 -15761,5202:394,-24,-29,0,0,0.316501 -15762,5202:393,-23,-29,0,0,0.323498 -15763,5202:392,-22,-29,0,0,0.327174 -15764,5202:391,-21,-29,0,0,0.327151 -15765,5202:390,-20,-29,0,0,0.335482 -15766,5201:499,-19,-29,0,0,0.327717 -15767,5201:498,-18,-29,0,0,0.325458 -15768,5201:497,-17,-29,0,0,0.311742 -15769,5201:496,-16,-29,0,0,0.312535 -15770,5201:495,-15,-29,0,0,0.317925 -15771,5201:394,-14,-29,0,0,0.326248 -15772,5201:393,-13,-29,0,0,0.321522 -15773,5201:392,-12,-29,0,0,0.31904 -15774,5201:391,-11,-29,0,0,0.319174 -15775,5201:390,-10,-29,0,0,0.315612 -15776,5200:499,-9,-29,0,0,0.319822 -15777,5200:498,-8,-29,0,0,0.316901 -15778,5200:497,-7,-29,0,0,0.313685 -15779,5200:496,-6,-29,0,0,0.319598 -15780,5200:495,-5,-29,0,0,0.321433 -15781,5200:394,-4,-29,0,0,0.32224 -15782,5200:393,-3,-29,0,0,0.310376 -15783,5200:392,-2,-29,0,0,0.309519 -15784,5200:391,-1,-29,0,0,0.321634 -15785,3200:391,0,-29,0,0,0.316968 -15786,3200:391,1,-29,0,0,0.310509 -15787,3200:392,2,-29,0,0,0.314017 -15788,3200:393,3,-29,0,0,0.311345 -15789,3200:394,4,-29,0,0,0.303905 -15790,3200:495,5,-29,0,0,0.305014 -15791,3200:496,6,-29,0,0,0.303318 -15792,3200:497,7,-29,0,0,0.313662 -15793,3200:498,8,-29,0,0,0.331827 -15794,3200:499,9,-29,0,0,0.334132 -15795,3201:390,10,-29,0,0,0.343314 -15796,3201:391,11,-29,0,0,0.35947 -15797,3201:392,12,-29,0,0,0.367122 -15798,3201:393,13,-29,0,0,0.381801 -15799,3201:394,14,-29,0,0,0.387711 -15800,3201:495,15,-29,0,0,0.389517 -15801,3201:496,16,-29,0,0,0.391278 -15802,3201:497,17,-29,0,0,0.418477 -15803,3201:498,18,-29,0,0,0.446638 -15804,3201:499,19,-29,0,0,0.455338 -15805,3202:390,20,-29,0,0,0.442021 -15806,3202:391,21,-29,0,0,0.435064 -15807,3202:392,22,-29,0,0,0.438148 -15808,3202:393,23,-29,0,0,0.433322 -15809,3202:394,24,-29,0,0,0.420403 -15810,3202:495,25,-29,0,0,0.433297 -15811,3202:496,26,-29,0,0,0.430675 -15812,3202:497,27,-29,0,0,0.419677 -15813,3202:498,28,-29,0,0,0.370326 -15814,3202:499,29,-29,0,0,0.427956 -15815,3203:390,30,-29,0,0,0.422031 -15816,3203:391,31,-29,0,0,0.402665 -15817,3203:392,32,-29,0,0,0.404396 -15818,3203:393,33,-29,0,0,0.410871 -15819,3203:394,34,-29,0,0,0.41538 -15820,3203:495,35,-29,0,0,0.393434 -15821,3203:496,36,-29,0,0,0.383694 -15822,3203:497,37,-29,0,0,0.379766 -15823,3203:498,38,-29,0,0,0.380226 -15824,3203:499,39,-29,0,0,0.38316 -15825,3204:390,40,-29,0,0,0.381098 -15826,3204:391,41,-29,0,0,0.366382 -15827,3204:392,42,-29,0,0,0.368603 -15828,3204:393,43,-29,0,0,0.366907 -15829,3204:394,44,-29,0,0,0.365071 -15830,3204:495,45,-29,0,0,0.364309 -15831,3204:496,46,-29,0,0,0.367122 -15832,3204:497,47,-29,0,0,0.364 -15833,3204:498,48,-29,0,0,0.357296 -15834,3204:499,49,-29,0,0,0.349595 -15835,3205:390,50,-29,0,0,0.345076 -15836,3205:391,51,-29,0,0,0.344102 -15837,3205:392,52,-29,0,0,0.346308 -15838,3205:393,53,-29,0,0,0.347822 -15839,3205:394,54,-29,0,0,0.34568 -15840,3205:495,55,-29,0,0,0.342504 -15841,3205:496,56,-29,0,0,0.32885 -15842,3205:497,57,-29,0,0,0.331827 -15843,3205:498,58,-29,0,0,0.338466 -15844,3205:499,59,-29,0,0,0.334178 -15845,3206:390,60,-29,0,0,0.33119 -15846,3206:391,61,-29,0,0,0.33404 -15847,3206:392,62,-29,0,0,0.33711 -15848,3206:393,63,-29,0,0,0.335207 -15849,3206:394,64,-29,0,0,0.33888 -15850,3206:495,65,-29,0,0,0.337822 -15851,3206:496,66,-29,0,0,0.335803 -15852,3206:497,67,-29,0,0,0.333035 -15853,3206:498,68,-29,0,0,0.330598 -15854,3206:499,69,-29,0,0,0.331782 -15855,3207:390,70,-29,0,0,0.327875 -15856,3207:391,71,-29,0,0,0.327513 -15857,3207:392,72,-29,0,0,0.325841 -15858,3207:394,74,-29,0,0,0.323318 -15859,3207:495,75,-29,0,0,0.323408 -15860,3207:496,76,-29,0,0,0.322599 -15861,3207:497,77,-29,0,0,0.317969 -15862,3207:498,78,-29,0,0,0.31205 -15863,3207:499,79,-29,0,0,0.313662 -15864,3208:390,80,-29,0,0,0.308247 -15865,3208:391,81,-29,0,0,0.309036 -15866,3208:392,82,-29,0,0,0.312624 -15867,3208:393,83,-29,0,0,0.314504 -15868,3208:394,84,-29,0,0,0.315346 -15869,3208:495,85,-29,0,0,0.315302 -15870,3208:496,86,-29,0,0,0.311918 -15871,3208:497,87,-29,0,0,0.306825 -15872,3208:498,88,-29,0,0,0.303492 -15873,3208:499,89,-29,0,0,0.300935 -15874,3209:390,90,-29,0,0,0.300633 -15875,3209:391,91,-29,0,0,0.301909 -15876,3209:392,92,-29,0,0,0.301173 -15877,3209:393,93,-29,0,0,0.299145 -15878,3209:394,94,-29,0,0,0.293254 -15879,3209:495,95,-29,0,0,0.29464 -15880,3209:496,96,-29,0,0,0.295281 -15881,3209:497,97,-29,0,0,0.295303 -15882,3209:498,98,-29,0,0,0.300395 -15883,3209:499,99,-29,0,0,0.296523 -15884,3210:390,100,-29,0,0,0.296694 -15885,3210:391,101,-29,0,0,0.29285 -15886,3210:392,102,-29,0,0,0.292489 -15887,3210:393,103,-29,0,0,0.299877 -15888,3210:394,104,-29,0,0,0.299467 -15889,3210:495,105,-29,0,0,0.298326 -15890,3210:496,106,-29,0,0,0.298843 -15891,3210:497,107,-29,0,0,0.297445 -15892,3210:498,108,-29,0,0,0.301865 -15893,3210:499,109,-29,0,0,0.307175 -15894,3211:390,110,-29,0,0,0.347729 -15895,3211:391,111,-29,0,0,0.362408 -15896,3211:392,112,-29,0,0,0.352708 -15897,3211:393,113,-29,0,0,0.351466 -15898,3211:394,114,-29,0,0,0.35156 -15899,3211:495,115,-29,0,0,0.358169 -15900,3211:496,116,-29,0,0,0.340863 -15901,3211:497,117,-29,0,0,0.338282 -15902,3211:498,118,-29,0,0,0.3451 -15903,3211:499,119,-29,0,0,0.354094 -15904,3212:390,120,-29,0,0,0.340725 -15905,3212:391,121,-29,0,0,0.331258 -15906,3212:392,122,-29,0,0,0.338489 -15907,3212:393,123,-29,0,0,0.339825 -15908,3212:394,124,-29,0,0,0.340194 -15909,3212:495,125,-29,0,0,0.330644 -15910,3212:496,126,-29,0,0,0.33819 -15911,3212:497,127,-29,0,0,0.334681 -15912,3212:498,128,-29,0,0,0.331622 -15913,3212:499,129,-29,0,0,0.326451 -15914,3213:390,130,-29,0,0,0.324286 -15915,3213:391,131,-29,0,0,0.328442 -15916,3213:392,132,-29,0,0,0.336628 -15917,3213:393,133,-29,0,0,0.350179 -15918,3213:394,134,-29,0,0,0.345983 -15919,3213:495,135,-29,0,0,0.345425 -15920,3213:496,136,-29,0,0,0.345169 -15921,3213:497,137,-29,0,0,0.34343 -15922,3213:498,138,-29,0,0,0.356094 -15923,3213:499,139,-29,0,0,0.359848 -15924,3214:390,140,-29,0,0,0.380662 -15925,3215:390,150,-29,0,0,0.408138 -15926,3215:391,151,-29,0,0,0.432793 -15927,3215:392,152,-29,0,0,0.423009 -15928,3215:393,153,-29,0,0,0.425795 -15929,3215:394,154,-29,0,0,0.420729 -15930,3215:495,155,-29,0,0,0.415554 -15931,3215:496,156,-29,0,0,0.426197 -15932,3215:497,157,-29,0,0,0.425845 -15933,3215:498,158,-29,0,0,0.438426 -15934,3215:499,159,-29,0,0,0.43128 -15935,3216:390,160,-29,0,0,0.418577 -15936,3216:391,161,-29,0,0,0.412762 -15937,3216:392,162,-29,0,0,0.399038 -15938,3216:393,163,-29,0,0,0.376191 -15939,3216:394,164,-29,0,0,0.376674 -15940,3216:495,165,-29,0,0,0.370854 -15941,3216:496,166,-29,0,0,0.369201 -15942,3216:497,167,-29,0,0,0.364928 -15943,3216:498,168,-29,0,0,0.362455 -15944,3216:499,169,-29,0,0,0.36172 -15945,3217:390,170,-29,0,0,0.363311 -15946,3217:391,171,-29,0,0,0.360748 -15947,3217:392,172,-29,0,0,0.354376 -15948,3217:393,173,-29,0,0,0.349618 -15949,3217:394,174,-29,0,0,0.35032 -15950,3217:495,175,-29,0,0,0.375902 -15951,3217:497,177,-29,0,0,0.383816 -15952,3217:498,178,-29,0,0,0.386054 -15953,3217:499,179,-29,0,0,0.379452 -15954,3218:390,180,-29,0,0,0.392821 -15955,5218:380,-180,-28,0,0,0.395716 -15956,5217:489,-179,-28,0,0,0.387613 -15957,5217:488,-178,-28,0,0,0.370063 -15958,5217:487,-177,-28,0,0,0.370806 -15959,5217:486,-176,-28,0,0,0.374216 -15960,5217:485,-175,-28,0,0,0.373639 -15961,5217:384,-174,-28,0,0,0.373518 -15962,5217:383,-173,-28,0,0,0.378025 -15963,5217:382,-172,-28,0,0,0.375034 -15964,5217:381,-171,-28,0,0,0.378073 -15965,5217:380,-170,-28,0,0,0.379669 -15966,5216:489,-169,-28,0,0,0.38168 -15967,5216:488,-168,-28,0,0,0.376504 -15968,5216:487,-167,-28,0,0,0.373518 -15969,5216:486,-166,-28,0,0,0.370781 -15970,5216:485,-165,-28,0,0,0.372485 -15971,5216:384,-164,-28,0,0,0.373711 -15972,5216:383,-163,-28,0,0,0.377325 -15973,5216:382,-162,-28,0,0,0.376529 -15974,5216:381,-161,-28,0,0,0.375637 -15975,5216:380,-160,-28,0,0,0.378049 -15976,5215:489,-159,-28,0,0,0.381219 -15977,5215:488,-158,-28,0,0,0.382868 -15978,5215:487,-157,-28,0,0,0.380081 -15979,5215:486,-156,-28,0,0,0.381413 -15980,5215:485,-155,-28,0,0,0.384132 -15981,5215:384,-154,-28,0,0,0.382577 -15982,5215:383,-153,-28,0,0,0.385445 -15983,5215:382,-152,-28,0,0,0.38859 -15984,5215:381,-151,-28,0,0,0.389493 -15985,5215:380,-150,-28,0,0,0.392698 -15986,5214:489,-149,-28,0,0,0.394733 -15987,5214:488,-148,-28,0,0,0.389322 -15988,5214:487,-147,-28,0,0,0.38754 -15989,5214:486,-146,-28,0,0,0.391351 -15990,5214:485,-145,-28,0,0,0.393482 -15991,5214:384,-144,-28,0,0,0.391253 -15992,5214:383,-143,-28,0,0,0.390446 -15993,5214:382,-142,-28,0,0,0.390593 -15994,5214:381,-141,-28,0,0,0.389224 -15995,5214:380,-140,-28,0,0,0.388565 -15996,5213:489,-139,-28,0,0,0.390568 -15997,5213:488,-138,-28,0,0,0.39189 -15998,5213:487,-137,-28,0,0,0.389908 -15999,5213:486,-136,-28,0,0,0.386736 -16000,5213:485,-135,-28,0,0,0.383233 -16001,5213:384,-134,-28,0,0,0.381753 -16002,5213:383,-133,-28,0,0,0.379766 -16003,5213:382,-132,-28,0,0,0.382528 -16004,5213:381,-131,-28,0,0,0.381316 -16005,5213:380,-130,-28,0,0,0.376866 -16006,5212:489,-129,-28,0,0,0.375034 -16007,5212:488,-128,-28,0,0,0.373158 -16008,5212:487,-127,-28,0,0,0.373038 -16009,5212:486,-126,-28,0,0,0.369919 -16010,5212:485,-125,-28,0,0,0.367886 -16011,5212:384,-124,-28,0,0,0.370182 -16012,5212:383,-123,-28,0,0,0.370039 -16013,5212:382,-122,-28,0,0,0.367193 -16014,5212:381,-121,-28,0,0,0.366573 -16015,5212:380,-120,-28,0,0,0.365881 -16016,5211:489,-119,-28,0,0,0.364095 -16017,5211:488,-118,-28,0,0,0.363477 -16018,5211:487,-117,-28,0,0,0.363786 -16019,5211:486,-116,-28,0,0,0.358642 -16020,5211:485,-115,-28,0,0,0.355952 -16021,5211:384,-114,-28,0,0,0.35706 -16022,5211:383,-113,-28,0,0,0.363002 -16023,5211:382,-112,-28,0,0,0.36343 -16024,5211:381,-111,-28,0,0,0.357768 -16025,5211:380,-110,-28,0,0,0.352169 -16026,5210:489,-109,-28,0,0,0.352216 -16027,5210:488,-108,-28,0,0,0.367814 -16028,5210:487,-107,-28,0,0,0.362432 -16029,5210:486,-106,-28,0,0,0.358052 -16030,5210:485,-105,-28,0,0,0.348801 -16031,5210:384,-104,-28,0,0,0.348311 -16032,5210:383,-103,-28,0,0,0.338765 -16033,5210:382,-102,-28,0,0,0.33711 -16034,5210:381,-101,-28,0,0,0.348264 -16035,5210:380,-100,-28,0,0,0.345588 -16036,5209:489,-99,-28,0,0,0.34218 -16037,5209:488,-98,-28,0,0,0.337754 -16038,5209:487,-97,-28,0,0,0.348754 -16039,5209:486,-96,-28,0,0,0.345564 -16040,5209:485,-95,-28,0,0,0.344984 -16041,5209:384,-94,-28,0,0,0.343383 -16042,5209:383,-93,-28,0,0,0.341047 -16043,5209:382,-92,-28,0,0,0.34575 -16044,5209:381,-91,-28,0,0,0.339825 -16045,5209:380,-90,-28,0,0,0.340517 -16046,5208:489,-89,-28,0,0,0.343082 -16047,5208:488,-88,-28,0,0,0.341094 -16048,5208:487,-87,-28,0,0,0.336766 -16049,5208:486,-86,-28,0,0,0.337731 -16050,5208:485,-85,-28,0,0,0.33226 -16051,5208:384,-84,-28,0,0,0.334887 -16052,5208:383,-83,-28,0,0,0.333675 -16053,5208:382,-82,-28,0,0,0.332602 -16054,5208:381,-81,-28,0,0,0.331303 -16055,5208:380,-80,-28,0,0,0.334155 -16056,5207:489,-79,-28,0,0,0.334201 -16057,5207:488,-78,-28,0,0,0.329122 -16058,5207:487,-77,-28,0,0,0.327853 -16059,5207:486,-76,-28,0,0,0.333446 -16060,5207:485,-75,-28,0,0,0.324466 -16061,5207:384,-74,-28,0,0,0.327966 -16062,5207:383,-73,-28,0,0,0.304296 -16063,5205:486,-56,-28,0,0,0.441286 -16064,5205:485,-55,-28,0,0,0.416228 -16065,5205:384,-54,-28,0,0,0.361056 -16066,5205:383,-53,-28,0,0,0.376432 -16067,5205:382,-52,-28,0,0,0.405956 -16068,5205:381,-51,-28,0,0,0.492155 -16069,5205:380,-50,-28,0,0,0.474351 -16070,5204:489,-49,-28,0,0,0.490126 -16071,5204:488,-48,-28,0,0,0.455771 -16072,5204:487,-47,-28,0,0,0.438047 -16073,5204:486,-46,-28,0,0,0.441134 -16074,5204:485,-45,-28,0,0,0.436732 -16075,5204:384,-44,-28,0,0,0.428813 -16076,5204:383,-43,-28,0,0,0.420028 -16077,5204:382,-42,-28,0,0,0.410722 -16078,5204:381,-41,-28,0,0,0.402097 -16079,5204:380,-40,-28,0,0,0.390324 -16080,5203:489,-39,-28,0,0,0.372341 -16081,5203:488,-38,-28,0,0,0.354704 -16082,5203:487,-37,-28,0,0,0.360653 -16083,5203:486,-36,-28,0,0,0.371477 -16084,5203:485,-35,-28,0,0,0.364691 -16085,5203:384,-34,-28,0,0,0.366263 -16086,5203:383,-33,-28,0,0,0.361696 -16087,5203:382,-32,-28,0,0,0.359327 -16088,5203:381,-31,-28,0,0,0.3585 -16089,5203:380,-30,-28,0,0,0.349385 -16090,5202:489,-29,-28,0,0,0.35501 -16091,5202:488,-28,-28,0,0,0.348195 -16092,5202:487,-27,-28,0,0,0.356541 -16093,5202:486,-26,-28,0,0,0.356753 -16094,5202:485,-25,-28,0,0,0.351209 -16095,5202:384,-24,-28,0,0,0.344473 -16096,5202:383,-23,-28,0,0,0.348171 -16097,5202:382,-22,-28,0,0,0.351115 -16098,5202:381,-21,-28,0,0,0.346099 -16099,5202:380,-20,-28,0,0,0.342296 -16100,5201:489,-19,-28,0,0,0.35574 -16101,5201:488,-18,-28,0,0,0.348988 -16102,5201:487,-17,-28,0,0,0.341856 -16103,5201:486,-16,-28,0,0,0.342041 -16104,5201:485,-15,-28,0,0,0.343129 -16105,5201:384,-14,-28,0,0,0.339019 -16106,5201:383,-13,-28,0,0,0.343685 -16107,5201:382,-12,-28,0,0,0.33594 -16108,5201:381,-11,-28,0,0,0.334315 -16109,5201:380,-10,-28,0,0,0.332876 -16110,5200:489,-9,-28,0,0,0.333904 -16111,5200:488,-8,-28,0,0,0.337547 -16112,5200:487,-7,-28,0,0,0.336078 -16113,5200:486,-6,-28,0,0,0.345286 -16114,5200:485,-5,-28,0,0,0.34336 -16115,5200:384,-4,-28,0,0,0.337662 -16116,5200:383,-3,-28,0,0,0.334567 -16117,5200:382,-2,-28,0,0,0.331736 -16118,5200:381,-1,-28,0,0,0.330371 -16119,3200:381,0,-28,0,0,0.335528 -16120,3200:381,1,-28,0,0,0.33842 -16121,3200:382,2,-28,0,0,0.335505 -16122,3200:383,3,-28,0,0,0.341995 -16123,3200:384,4,-28,0,0,0.330325 -16124,3200:485,5,-28,0,0,0.326112 -16125,3200:486,6,-28,0,0,0.318906 -16126,3200:487,7,-28,0,0,0.316923 -16127,3200:488,8,-28,0,0,0.335139 -16128,3200:489,9,-28,0,0,0.342504 -16129,3201:380,10,-28,0,0,0.346308 -16130,3201:381,11,-28,0,0,0.352849 -16131,3201:382,12,-28,0,0,0.377156 -16132,3201:383,13,-28,0,0,0.395839 -16133,3201:384,14,-28,0,0,0.392894 -16134,3201:485,15,-28,0,0,0.388492 -16135,3201:486,16,-28,0,0,0.401825 -16136,3201:487,17,-28,0,0,0.397757 -16137,3201:488,18,-28,0,0,0.425619 -16138,3201:489,19,-28,0,0,0.438148 -16139,3202:380,20,-28,0,0,0.440071 -16140,3202:381,21,-28,0,0,0.459852 -16141,3202:382,22,-28,0,0,0.482067 -16142,3202:383,23,-28,0,0,0.457071 -16143,3202:384,24,-28,0,0,0.465011 -16144,3202:485,25,-28,0,0,0.472405 -16145,3202:486,26,-28,0,0,0.461128 -16146,3202:487,27,-28,0,0,0.436554 -16147,3202:488,28,-28,0,0,0.438223 -16148,3202:489,29,-28,0,0,0.446485 -16149,3203:380,30,-28,0,0,0.420078 -16150,3203:381,31,-28,0,0,0.408485 -16151,3203:382,32,-28,0,0,0.407915 -16152,3203:383,33,-28,0,0,0.408983 -16153,3203:384,34,-28,0,0,0.403579 -16154,3203:485,35,-28,0,0,0.401528 -16155,3203:486,36,-28,0,0,0.391939 -16156,3203:487,37,-28,0,0,0.388126 -16157,3203:488,38,-28,0,0,0.386857 -16158,3203:489,39,-28,0,0,0.382626 -16159,3204:380,40,-28,0,0,0.379669 -16160,3204:381,41,-28,0,0,0.377421 -16161,3204:382,42,-28,0,0,0.374914 -16162,3204:383,43,-28,0,0,0.373494 -16163,3204:384,44,-28,0,0,0.373014 -16164,3204:485,45,-28,0,0,0.372942 -16165,3204:486,46,-28,0,0,0.372005 -16166,3204:487,47,-28,0,0,0.367504 -16167,3204:488,48,-28,0,0,0.362503 -16168,3204:489,49,-28,0,0,0.359683 -16169,3205:380,50,-28,0,0,0.354587 -16170,3205:381,51,-28,0,0,0.35501 -16171,3205:382,52,-28,0,0,0.35706 -16172,3205:383,53,-28,0,0,0.357673 -16173,3205:384,54,-28,0,0,0.352075 -16174,3205:485,55,-28,0,0,0.348754 -16175,3205:486,56,-28,0,0,0.34575 -16176,3205:487,57,-28,0,0,0.345286 -16177,3205:488,58,-28,0,0,0.347169 -16178,3205:489,59,-28,0,0,0.344055 -16179,3206:380,60,-28,0,0,0.34218 -16180,3206:381,61,-28,0,0,0.344195 -16181,3206:382,62,-28,0,0,0.348125 -16182,3206:383,63,-28,0,0,0.349852 -16183,3206:384,64,-28,0,0,0.352849 -16184,3206:485,65,-28,0,0,0.351419 -16185,3206:486,66,-28,0,0,0.346006 -16186,3206:487,67,-28,0,0,0.347193 -16187,3206:488,68,-28,0,0,0.351256 -16188,3206:489,69,-28,0,0,0.346308 -16189,3207:380,70,-28,0,0,0.346029 -16190,3207:381,71,-28,0,0,0.349829 -16191,3207:382,72,-28,0,0,0.344241 -16192,3207:384,74,-28,0,0,0.340425 -16193,3207:485,75,-28,0,0,0.344775 -16194,3207:486,76,-28,0,0,0.345843 -16195,3207:487,77,-28,0,0,0.339249 -16196,3207:488,78,-28,0,0,0.335734 -16197,3207:489,79,-28,0,0,0.333949 -16198,3208:380,80,-28,0,0,0.329168 -16199,3208:381,81,-28,0,0,0.331691 -16200,3208:382,82,-28,0,0,0.337271 -16201,3208:383,83,-28,0,0,0.33578 -16202,3208:384,84,-28,0,0,0.332785 -16203,3208:485,85,-28,0,0,0.329576 -16204,3208:486,86,-28,0,0,0.327264 -16205,3208:487,87,-28,0,0,0.325097 -16206,3208:488,88,-28,0,0,0.322083 -16207,3208:489,89,-28,0,0,0.321567 -16208,3209:380,90,-28,0,0,0.321567 -16209,3209:381,91,-28,0,0,0.321321 -16210,3209:382,92,-28,0,0,0.323723 -16211,3209:383,93,-28,0,0,0.322734 -16212,3209:384,94,-28,0,0,0.320761 -16213,3209:485,95,-28,0,0,0.321052 -16214,3209:486,96,-28,0,0,0.319286 -16215,3209:487,97,-28,0,0,0.320291 -16216,3209:488,98,-28,0,0,0.321299 -16217,3209:489,99,-28,0,0,0.317791 -16218,3210:380,100,-28,0,0,0.317168 -16219,3210:381,101,-28,0,0,0.322734 -16220,3210:382,102,-28,0,0,0.317658 -16221,3210:383,103,-28,0,0,0.32697 -16222,3210:384,104,-28,0,0,0.320828 -16223,3210:485,105,-28,0,0,0.321994 -16224,3210:486,106,-28,0,0,0.32826 -16225,3210:487,107,-28,0,0,0.327943 -16226,3210:488,108,-28,0,0,0.331508 -16227,3210:489,109,-28,0,0,0.339894 -16228,3211:380,110,-28,0,0,0.358075 -16229,3211:381,111,-28,0,0,0.369177 -16230,3211:382,112,-28,0,0,0.355246 -16231,3211:383,113,-28,0,0,0.373061 -16232,3211:384,114,-28,0,0,0.381801 -16233,3211:485,115,-28,0,0,0.379403 -16234,3211:486,116,-28,0,0,0.361838 -16235,3211:487,117,-28,0,0,0.367599 -16236,3211:488,118,-28,0,0,0.382043 -16237,3211:489,119,-28,0,0,0.377445 -16238,3212:380,120,-28,0,0,0.374866 -16239,3212:381,121,-28,0,0,0.352451 -16240,3212:382,122,-28,0,0,0.362384 -16241,3212:383,123,-28,0,0,0.358902 -16242,3212:384,124,-28,0,0,0.362337 -16243,3212:485,125,-28,0,0,0.357366 -16244,3212:486,126,-28,0,0,0.360061 -16245,3212:487,127,-28,0,0,0.347379 -16246,3212:488,128,-28,0,0,0.348847 -16247,3212:489,129,-28,0,0,0.352591 -16248,3213:380,130,-28,0,0,0.367408 -16249,3213:381,131,-28,0,0,0.365476 -16250,3213:382,132,-28,0,0,0.352826 -16251,3213:383,133,-28,0,0,0.364072 -16252,3213:384,134,-28,0,0,0.357461 -16253,3213:485,135,-28,0,0,0.361151 -16254,3213:486,136,-28,0,0,0.368173 -16255,3213:487,137,-28,0,0,0.379984 -16256,3213:488,138,-28,0,0,0.38025 -16257,3213:489,139,-28,0,0,0.385177 -16258,3214:380,140,-28,0,0,0.42133 -16259,3215:381,151,-28,0,0,0.476811 -16260,3215:382,152,-28,0,0,0.480118 -16261,3215:383,153,-28,0,0,0.480605 -16262,3215:384,154,-28,0,0,0.466161 -16263,3215:485,155,-28,0,0,0.441667 -16264,3215:486,156,-28,0,0,0.444886 -16265,3215:487,157,-28,0,0,0.466391 -16266,3215:488,158,-28,0,0,0.453046 -16267,3215:489,159,-28,0,0,0.443187 -16268,3216:380,160,-28,0,0,0.450679 -16269,3216:381,161,-28,0,0,0.454013 -16270,3216:382,162,-28,0,0,0.433676 -16271,3216:383,163,-28,0,0,0.420628 -16272,3216:384,164,-28,0,0,0.413859 -16273,3216:485,165,-28,0,0,0.3926 -16274,3216:486,166,-28,0,0,0.391939 -16275,3216:487,167,-28,0,0,0.391229 -16276,3216:488,168,-28,0,0,0.390666 -16277,3216:489,169,-28,0,0,0.381607 -16278,3217:380,170,-28,0,0,0.380178 -16279,3217:381,171,-28,0,0,0.374721 -16280,3217:382,172,-28,0,0,0.37359 -16281,3217:383,173,-28,0,0,0.365333 -16282,3217:384,174,-28,0,0,0.373999 -16283,3217:486,176,-28,0,0,0.396035 -16284,3217:487,177,-28,0,0,0.40101 -16285,3217:488,178,-28,0,0,0.395962 -16286,3217:489,179,-28,0,0,0.393875 -16287,3218:380,180,-28,0,0,0.395716 -16288,5218:370,-180,-27,0,0,0.391229 -16289,5217:479,-179,-27,0,0,0.396232 -16290,5217:478,-178,-27,0,0,0.390226 -16291,5217:477,-177,-27,0,0,0.387321 -16292,5217:476,-176,-27,0,0,0.390324 -16293,5217:475,-175,-27,0,0,0.394587 -16294,5217:374,-174,-27,0,0,0.398914 -16295,5217:373,-173,-27,0,0,0.398102 -16296,5217:372,-172,-27,0,0,0.393017 -16297,5217:371,-171,-27,0,0,0.393752 -16298,5217:370,-170,-27,0,0,0.3952 -16299,5216:479,-169,-27,0,0,0.396109 -16300,5216:478,-168,-27,0,0,0.394685 -16301,5216:477,-167,-27,0,0,0.390984 -16302,5216:476,-166,-27,0,0,0.387711 -16303,5216:475,-165,-27,0,0,0.38659 -16304,5216:374,-164,-27,0,0,0.387638 -16305,5216:373,-163,-27,0,0,0.387662 -16306,5216:372,-162,-27,0,0,0.387516 -16307,5216:371,-161,-27,0,0,0.388003 -16308,5216:370,-160,-27,0,0,0.388955 -16309,5215:479,-159,-27,0,0,0.390666 -16310,5215:478,-158,-27,0,0,0.393826 -16311,5215:477,-157,-27,0,0,0.397683 -16312,5215:476,-156,-27,0,0,0.39921 -16313,5215:475,-155,-27,0,0,0.396969 -16314,5215:374,-154,-27,0,0,0.395053 -16315,5215:373,-153,-27,0,0,0.398914 -16316,5215:372,-152,-27,0,0,0.401874 -16317,5215:371,-151,-27,0,0,0.402764 -16318,5215:370,-150,-27,0,0,0.40494 -16319,5214:479,-149,-27,0,0,0.404693 -16320,5214:478,-148,-27,0,0,0.401282 -16321,5214:477,-147,-27,0,0,0.397634 -16322,5214:476,-146,-27,0,0,0.397117 -16323,5214:475,-145,-27,0,0,0.401652 -16324,5214:374,-144,-27,0,0,0.397929 -16325,5214:373,-143,-27,0,0,0.394439 -16326,5214:372,-142,-27,0,0,0.394513 -16327,5214:371,-141,-27,0,0,0.393899 -16328,5214:370,-140,-27,0,0,0.392674 -16329,5213:479,-139,-27,0,0,0.395519 -16330,5213:478,-138,-27,0,0,0.397044 -16331,5213:477,-137,-27,0,0,0.396994 -16332,5213:476,-136,-27,0,0,0.398077 -16333,5213:475,-135,-27,0,0,0.399407 -16334,5213:374,-134,-27,0,0,0.396428 -16335,5213:373,-133,-27,0,0,0.395495 -16336,5213:372,-132,-27,0,0,0.394906 -16337,5213:371,-131,-27,0,0,0.391205 -16338,5213:370,-130,-27,0,0,0.390006 -16339,5212:479,-129,-27,0,0,0.388663 -16340,5212:478,-128,-27,0,0,0.383306 -16341,5212:477,-127,-27,0,0,0.382189 -16342,5212:476,-126,-27,0,0,0.383208 -16343,5212:475,-125,-27,0,0,0.380686 -16344,5212:374,-124,-27,0,0,0.381946 -16345,5212:373,-123,-27,0,0,0.382019 -16346,5212:372,-122,-27,0,0,0.380953 -16347,5212:371,-121,-27,0,0,0.379427 -16348,5212:370,-120,-27,0,0,0.379355 -16349,5211:479,-119,-27,0,0,0.37933 -16350,5211:478,-118,-27,0,0,0.372317 -16351,5211:477,-117,-27,0,0,0.366597 -16352,5211:476,-116,-27,0,0,0.368675 -16353,5211:475,-115,-27,0,0,0.37436 -16354,5211:374,-114,-27,0,0,0.378895 -16355,5211:373,-113,-27,0,0,0.382505 -16356,5211:372,-112,-27,0,0,0.378267 -16357,5211:371,-111,-27,0,0,0.375902 -16358,5211:370,-110,-27,0,0,0.379476 -16359,5210:479,-109,-27,0,0,0.379452 -16360,5210:478,-108,-27,0,0,0.387516 -16361,5210:477,-107,-27,0,0,0.377735 -16362,5210:476,-106,-27,0,0,0.375058 -16363,5210:475,-105,-27,0,0,0.37846 -16364,5210:374,-104,-27,0,0,0.360653 -16365,5210:373,-103,-27,0,0,0.371861 -16366,5210:372,-102,-27,0,0,0.369129 -16367,5210:371,-101,-27,0,0,0.367934 -16368,5210:370,-100,-27,0,0,0.356801 -16369,5209:479,-99,-27,0,0,0.362218 -16370,5209:478,-98,-27,0,0,0.365143 -16371,5209:477,-97,-27,0,0,0.362194 -16372,5209:476,-96,-27,0,0,0.35494 -16373,5209:475,-95,-27,0,0,0.360605 -16374,5209:374,-94,-27,0,0,0.357956 -16375,5209:373,-93,-27,0,0,0.355105 -16376,5209:372,-92,-27,0,0,0.365523 -16377,5209:371,-91,-27,0,0,0.358028 -16378,5209:370,-90,-27,0,0,0.361886 -16379,5208:479,-89,-27,0,0,0.362978 -16380,5208:478,-88,-27,0,0,0.360701 -16381,5208:477,-87,-27,0,0,0.358193 -16382,5208:476,-86,-27,0,0,0.35224 -16383,5208:475,-85,-27,0,0,0.349315 -16384,5208:374,-84,-27,0,0,0.349758 -16385,5208:373,-83,-27,0,0,0.347938 -16386,5208:372,-82,-27,0,0,0.346122 -16387,5208:371,-81,-27,0,0,0.343407 -16388,5208:370,-80,-27,0,0,0.341671 -16389,5207:479,-79,-27,0,0,0.350881 -16390,5207:478,-78,-27,0,0,0.346983 -16391,5207:477,-77,-27,0,0,0.346727 -16392,5207:476,-76,-27,0,0,0.343337 -16393,5207:475,-75,-27,0,0,0.335368 -16394,5207:374,-74,-27,0,0,0.332602 -16395,5207:373,-73,-27,0,0,0.325999 -16396,5205:477,-57,-27,0,0,0.503071 -16397,5205:476,-56,-27,0,0,0.466212 -16398,5205:475,-55,-27,0,0,0.408983 -16399,5205:374,-54,-27,0,0,0.403852 -16400,5205:373,-53,-27,0,0,0.405312 -16401,5205:372,-52,-27,0,0,0.447222 -16402,5205:371,-51,-27,0,0,0.5004 -16403,5205:370,-50,-27,0,0,0.475402 -16404,5204:479,-49,-27,0,0,0.466979 -16405,5204:478,-48,-27,0,0,0.457964 -16406,5204:477,-47,-27,0,0,0.463068 -16407,5204:476,-46,-27,0,0,0.439311 -16408,5204:475,-45,-27,0,0,0.432717 -16409,5204:374,-44,-27,0,0,0.41199 -16410,5204:373,-43,-27,0,0,0.407815 -16411,5204:372,-42,-27,0,0,0.399654 -16412,5204:371,-41,-27,0,0,0.403357 -16413,5204:370,-40,-27,0,0,0.396921 -16414,5203:479,-39,-27,0,0,0.39412 -16415,5203:478,-38,-27,0,0,0.387077 -16416,5203:477,-37,-27,0,0,0.376047 -16417,5203:476,-36,-27,0,0,0.379863 -16418,5203:475,-35,-27,0,0,0.373447 -16419,5203:374,-34,-27,0,0,0.370926 -16420,5203:373,-33,-27,0,0,0.377277 -16421,5203:372,-32,-27,0,0,0.36674 -16422,5203:371,-31,-27,0,0,0.369201 -16423,5203:370,-30,-27,0,0,0.366812 -16424,5202:479,-29,-27,0,0,0.363311 -16425,5202:478,-28,-27,0,0,0.367599 -16426,5202:477,-27,-27,0,0,0.371381 -16427,5202:476,-26,-27,0,0,0.36968 -16428,5202:475,-25,-27,0,0,0.366549 -16429,5202:374,-24,-27,0,0,0.364357 -16430,5202:373,-23,-27,0,0,0.359327 -16431,5202:372,-22,-27,0,0,0.360297 -16432,5202:371,-21,-27,0,0,0.366931 -16433,5202:370,-20,-27,0,0,0.364833 -16434,5201:479,-19,-27,0,0,0.363644 -16435,5201:478,-18,-27,0,0,0.362313 -16436,5201:477,-17,-27,0,0,0.361009 -16437,5201:476,-16,-27,0,0,0.351045 -16438,5201:475,-15,-27,0,0,0.348288 -16439,5201:374,-14,-27,0,0,0.355364 -16440,5201:373,-13,-27,0,0,0.354964 -16441,5201:372,-12,-27,0,0,0.365071 -16442,5201:371,-11,-27,0,0,0.351981 -16443,5201:370,-10,-27,0,0,0.36748 -16444,5200:479,-9,-27,0,0,0.357296 -16445,5200:478,-8,-27,0,0,0.362883 -16446,5200:477,-7,-27,0,0,0.361483 -16447,5200:476,-6,-27,0,0,0.363121 -16448,5200:475,-5,-27,0,0,0.362527 -16449,5200:374,-4,-27,0,0,0.36108 -16450,5200:373,-3,-27,0,0,0.354446 -16451,5200:372,-2,-27,0,0,0.352497 -16452,5200:371,-1,-27,0,0,0.347589 -16453,3200:371,0,-27,0,0,0.352451 -16454,3200:371,1,-27,0,0,0.354822 -16455,3200:372,2,-27,0,0,0.35928 -16456,3200:373,3,-27,0,0,0.358807 -16457,3200:374,4,-27,0,0,0.354658 -16458,3200:475,5,-27,0,0,0.353859 -16459,3200:476,6,-27,0,0,0.358902 -16460,3200:477,7,-27,0,0,0.362265 -16461,3200:478,8,-27,0,0,0.37424 -16462,3200:479,9,-27,0,0,0.378847 -16463,3201:370,10,-27,0,0,0.377977 -16464,3201:371,11,-27,0,0,0.367647 -16465,3201:372,12,-27,0,0,0.39233 -16466,3201:373,13,-27,0,0,0.396724 -16467,3201:374,14,-27,0,0,0.391082 -16468,3201:475,15,-27,0,0,0.393213 -16469,3201:476,16,-27,0,0,0.400196 -16470,3201:477,17,-27,0,0,0.397216 -16471,3201:478,18,-27,0,0,0.423761 -16472,3201:479,19,-27,0,0,0.424364 -16473,3202:370,20,-27,0,0,0.41513 -16474,3202:371,21,-27,0,0,0.416378 -16475,3202:372,22,-27,0,0,0.438122 -16476,3202:373,23,-27,0,0,0.48507 -16477,3202:374,24,-27,0,0,0.492977 -16478,3202:475,25,-27,0,0,0.487842 -16479,3202:476,26,-27,0,0,0.480426 -16480,3202:477,27,-27,0,0,0.482042 -16481,3202:478,28,-27,0,0,0.488355 -16482,3202:479,29,-27,0,0,0.452536 -16483,3203:370,30,-27,0,0,0.444049 -16484,3203:371,31,-27,0,0,0.416428 -16485,3203:372,32,-27,0,0,0.413609 -16486,3203:373,33,-27,0,0,0.411941 -16487,3203:374,34,-27,0,0,0.409578 -16488,3203:475,35,-27,0,0,0.418427 -16489,3203:476,36,-27,0,0,0.408262 -16490,3203:477,37,-27,0,0,0.39958 -16491,3203:478,38,-27,0,0,0.399974 -16492,3203:479,39,-27,0,0,0.404569 -16493,3204:370,40,-27,0,0,0.394488 -16494,3204:371,41,-27,0,0,0.38776 -16495,3204:372,42,-27,0,0,0.387247 -16496,3204:373,43,-27,0,0,0.386687 -16497,3204:374,44,-27,0,0,0.386176 -16498,3204:475,45,-27,0,0,0.386882 -16499,3204:476,46,-27,0,0,0.38384 -16500,3204:477,47,-27,0,0,0.379282 -16501,3204:478,48,-27,0,0,0.377301 -16502,3204:479,49,-27,0,0,0.374649 -16503,3205:370,50,-27,0,0,0.372509 -16504,3205:371,51,-27,0,0,0.37047 -16505,3205:372,52,-27,0,0,0.373374 -16506,3205:373,53,-27,0,0,0.366549 -16507,3205:374,54,-27,0,0,0.366406 -16508,3205:475,55,-27,0,0,0.362503 -16509,3205:476,56,-27,0,0,0.36255 -16510,3205:477,57,-27,0,0,0.3621 -16511,3205:478,58,-27,0,0,0.363525 -16512,3205:479,59,-27,0,0,0.368244 -16513,3206:370,60,-27,0,0,0.367982 -16514,3206:371,61,-27,0,0,0.369488 -16515,3206:372,62,-27,0,0,0.367671 -16516,3206:373,63,-27,0,0,0.369512 -16517,3206:374,64,-27,0,0,0.369943 -16518,3206:475,65,-27,0,0,0.369488 -16519,3206:476,66,-27,0,0,0.370926 -16520,3206:477,67,-27,0,0,0.36581 -16521,3206:478,68,-27,0,0,0.369225 -16522,3206:479,69,-27,0,0,0.365523 -16523,3207:370,70,-27,0,0,0.366096 -16524,3207:371,71,-27,0,0,0.367026 -16525,3207:372,72,-27,0,0,0.364691 -16526,3207:374,74,-27,0,0,0.372437 -16527,3207:475,75,-27,0,0,0.371357 -16528,3207:476,76,-27,0,0,0.377084 -16529,3207:477,77,-27,0,0,0.364072 -16530,3207:478,78,-27,0,0,0.358571 -16531,3207:479,79,-27,0,0,0.362289 -16532,3208:370,80,-27,0,0,0.359304 -16533,3208:371,81,-27,0,0,0.358594 -16534,3208:372,82,-27,0,0,0.363263 -16535,3208:373,83,-27,0,0,0.362337 -16536,3208:374,84,-27,0,0,0.357886 -16537,3208:475,85,-27,0,0,0.354681 -16538,3208:476,86,-27,0,0,0.355882 -16539,3208:477,87,-27,0,0,0.356659 -16540,3208:478,88,-27,0,0,0.354164 -16541,3208:479,89,-27,0,0,0.348242 -16542,3209:370,90,-27,0,0,0.350179 -16543,3209:371,91,-27,0,0,0.350974 -16544,3209:372,92,-27,0,0,0.349758 -16545,3209:373,93,-27,0,0,0.349782 -16546,3209:374,94,-27,0,0,0.344473 -16547,3209:475,95,-27,0,0,0.342319 -16548,3209:476,96,-27,0,0,0.343268 -16549,3209:477,97,-27,0,0,0.344914 -16550,3209:478,98,-27,0,0,0.344032 -16551,3209:479,99,-27,0,0,0.344195 -16552,3210:370,100,-27,0,0,0.345588 -16553,3210:371,101,-27,0,0,0.346029 -16554,3210:372,102,-27,0,0,0.339686 -16555,3210:373,103,-27,0,0,0.340217 -16556,3210:374,104,-27,0,0,0.339134 -16557,3210:475,105,-27,0,0,0.347379 -16558,3210:476,106,-27,0,0,0.350437 -16559,3210:477,107,-27,0,0,0.355764 -16560,3210:478,108,-27,0,0,0.349642 -16561,3210:479,109,-27,0,0,0.361269 -16562,3211:370,110,-27,0,0,0.377132 -16563,3211:371,111,-27,0,0,0.381267 -16564,3211:372,112,-27,0,0,0.38105 -16565,3211:373,113,-27,0,0,0.399086 -16566,3211:374,114,-27,0,0,0.424841 -16567,3211:475,115,-27,0,0,0.440071 -16568,3211:476,116,-27,0,0,0.437338 -16569,3211:477,117,-27,0,0,0.438299 -16570,3211:478,118,-27,0,0,0.430852 -16571,3211:479,119,-27,0,0,0.418802 -16572,3212:370,120,-27,0,0,0.396674 -16573,3212:371,121,-27,0,0,0.372461 -16574,3212:372,122,-27,0,0,0.38316 -16575,3212:373,123,-27,0,0,0.376166 -16576,3212:374,124,-27,0,0,0.369608 -16577,3212:475,125,-27,0,0,0.370063 -16578,3212:476,126,-27,0,0,0.368507 -16579,3212:477,127,-27,0,0,0.36901 -16580,3212:478,128,-27,0,0,0.365833 -16581,3212:479,129,-27,0,0,0.36612 -16582,3213:370,130,-27,0,0,0.373182 -16583,3213:371,131,-27,0,0,0.372581 -16584,3213:372,132,-27,0,0,0.368053 -16585,3213:373,133,-27,0,0,0.385932 -16586,3213:374,134,-27,0,0,0.389517 -16587,3213:475,135,-27,0,0,0.389102 -16588,3213:476,136,-27,0,0,0.393262 -16589,3213:477,137,-27,0,0,0.421079 -16590,3213:478,138,-27,0,0,0.412364 -16591,3215:371,151,-27,0,0,0.495108 -16592,3215:372,152,-27,0,0,0.478042 -16593,3215:373,153,-27,0,0,0.485942 -16594,3215:374,154,-27,0,0,0.510596 -16595,3215:475,155,-27,0,0,0.528828 -16596,3215:476,156,-27,0,0,0.502044 -16597,3215:477,157,-27,0,0,0.50302 -16598,3215:478,158,-27,0,0,0.475171 -16599,3215:479,159,-27,0,0,0.484018 -16600,3216:370,160,-27,0,0,0.50284 -16601,3216:371,161,-27,0,0,0.504869 -16602,3216:372,162,-27,0,0,0.450959 -16603,3216:373,163,-27,0,0,0.464985 -16604,3216:374,164,-27,0,0,0.438527 -16605,3216:475,165,-27,0,0,0.412339 -16606,3216:476,166,-27,0,0,0.41341 -16607,3216:477,167,-27,0,0,0.40866 -16608,3216:478,168,-27,0,0,0.402813 -16609,3216:479,169,-27,0,0,0.397437 -16610,3217:370,170,-27,0,0,0.391278 -16611,3217:371,171,-27,0,0,0.390421 -16612,3217:372,172,-27,0,0,0.38316 -16613,3217:373,173,-27,0,0,0.382505 -16614,3217:475,175,-27,0,0,0.397511 -16615,3217:476,176,-27,0,0,0.410647 -16616,3217:477,177,-27,0,0,0.406204 -16617,3217:478,178,-27,0,0,0.401085 -16618,3217:479,179,-27,0,0,0.397265 -16619,3218:370,180,-27,0,0,0.391229 -16620,5218:360,-180,-26,0,0,0.410747 -16621,5217:469,-179,-26,0,0,0.411617 -16622,5217:468,-178,-26,0,0,0.412837 -16623,5217:467,-177,-26,0,0,0.415155 -16624,5217:466,-176,-26,0,0,0.414307 -16625,5217:465,-175,-26,0,0,0.408734 -16626,5217:364,-174,-26,0,0,0.406352 -16627,5217:363,-173,-26,0,0,0.413111 -16628,5217:362,-172,-26,0,0,0.415454 -16629,5217:361,-171,-26,0,0,0.417427 -16630,5217:360,-170,-26,0,0,0.412638 -16631,5216:469,-169,-26,0,0,0.414157 -16632,5216:468,-168,-26,0,0,0.407146 -16633,5216:467,-167,-26,0,0,0.407047 -16634,5216:466,-166,-26,0,0,0.403802 -16635,5216:465,-165,-26,0,0,0.400024 -16636,5216:364,-164,-26,0,0,0.401479 -16637,5216:363,-163,-26,0,0,0.405485 -16638,5216:362,-162,-26,0,0,0.405956 -16639,5216:361,-161,-26,0,0,0.403678 -16640,5216:360,-160,-26,0,0,0.404717 -16641,5215:469,-159,-26,0,0,0.404965 -16642,5215:468,-158,-26,0,0,0.403134 -16643,5215:467,-157,-26,0,0,0.404445 -16644,5215:466,-156,-26,0,0,0.407393 -16645,5215:465,-155,-26,0,0,0.408958 -16646,5215:364,-154,-26,0,0,0.409802 -16647,5215:363,-153,-26,0,0,0.414831 -16648,5215:362,-152,-26,0,0,0.415554 -16649,5215:361,-151,-26,0,0,0.417028 -16650,5215:360,-150,-26,0,0,0.415679 -16651,5214:469,-149,-26,0,0,0.415804 -16652,5214:468,-148,-26,0,0,0.411941 -16653,5214:467,-147,-26,0,0,0.409082 -16654,5214:466,-146,-26,0,0,0.411891 -16655,5214:465,-145,-26,0,0,0.411518 -16656,5214:364,-144,-26,0,0,0.411841 -16657,5214:363,-143,-26,0,0,0.408014 -16658,5214:362,-142,-26,0,0,0.403332 -16659,5214:361,-141,-26,0,0,0.403407 -16660,5214:360,-140,-26,0,0,0.404916 -16661,5213:469,-139,-26,0,0,0.403777 -16662,5213:468,-138,-26,0,0,0.407418 -16663,5213:467,-137,-26,0,0,0.410846 -16664,5213:466,-136,-26,0,0,0.411717 -16665,5213:465,-135,-26,0,0,0.41229 -16666,5213:364,-134,-26,0,0,0.411916 -16667,5213:363,-133,-26,0,0,0.408138 -16668,5213:362,-132,-26,0,0,0.406352 -16669,5213:361,-131,-26,0,0,0.405758 -16670,5213:360,-130,-26,0,0,0.40306 -16671,5212:469,-129,-26,0,0,0.399086 -16672,5212:468,-128,-26,0,0,0.393949 -16673,5212:467,-127,-26,0,0,0.393507 -16674,5212:466,-126,-26,0,0,0.396748 -16675,5212:465,-125,-26,0,0,0.397462 -16676,5212:364,-124,-26,0,0,0.396576 -16677,5212:363,-123,-26,0,0,0.394979 -16678,5212:362,-122,-26,0,0,0.393605 -16679,5212:361,-121,-26,0,0,0.392135 -16680,5212:360,-120,-26,0,0,0.391645 -16681,5211:469,-119,-26,0,0,0.391816 -16682,5211:468,-118,-26,0,0,0.389981 -16683,5211:467,-117,-26,0,0,0.38793 -16684,5211:466,-116,-26,0,0,0.391523 -16685,5211:465,-115,-26,0,0,0.395814 -16686,5211:364,-114,-26,0,0,0.395053 -16687,5211:363,-113,-26,0,0,0.392526 -16688,5211:362,-112,-26,0,0,0.395667 -16689,5211:361,-111,-26,0,0,0.394685 -16690,5211:360,-110,-26,0,0,0.39439 -16691,5210:469,-109,-26,0,0,0.397068 -16692,5210:468,-108,-26,0,0,0.399629 -16693,5210:467,-107,-26,0,0,0.397732 -16694,5210:466,-106,-26,0,0,0.392649 -16695,5210:465,-105,-26,0,0,0.392943 -16696,5210:364,-104,-26,0,0,0.397634 -16697,5210:363,-103,-26,0,0,0.407865 -16698,5210:362,-102,-26,0,0,0.39788 -16699,5210:361,-101,-26,0,0,0.384472 -16700,5210:360,-100,-26,0,0,0.38859 -16701,5209:469,-99,-26,0,0,0.384132 -16702,5209:468,-98,-26,0,0,0.37718 -16703,5209:467,-97,-26,0,0,0.378871 -16704,5209:466,-96,-26,0,0,0.380105 -16705,5209:465,-95,-26,0,0,0.379379 -16706,5209:364,-94,-26,0,0,0.373711 -16707,5209:363,-93,-26,0,0,0.380928 -16708,5209:362,-92,-26,0,0,0.38054 -16709,5209:361,-91,-26,0,0,0.378919 -16710,5209:360,-90,-26,0,0,0.381849 -16711,5208:469,-89,-26,0,0,0.378122 -16712,5208:468,-88,-26,0,0,0.379379 -16713,5208:467,-87,-26,0,0,0.373686 -16714,5208:466,-86,-26,0,0,0.370135 -16715,5208:465,-85,-26,0,0,0.369129 -16716,5208:364,-84,-26,0,0,0.365381 -16717,5208:363,-83,-26,0,0,0.365357 -16718,5208:362,-82,-26,0,0,0.363691 -16719,5208:361,-81,-26,0,0,0.362123 -16720,5208:360,-80,-26,0,0,0.358311 -16721,5207:469,-79,-26,0,0,0.365286 -16722,5207:468,-78,-26,0,0,0.366573 -16723,5207:467,-77,-26,0,0,0.364404 -16724,5207:466,-76,-26,0,0,0.35567 -16725,5207:465,-75,-26,0,0,0.348847 -16726,5207:364,-74,-26,0,0,0.343824 -16727,5207:363,-73,-26,0,0,0.339641 -16728,5207:362,-72,-26,0,0,0.306694 -16729,5205:363,-53,-26,0,0,0.437768 -16730,5205:362,-52,-26,0,0,0.431079 -16731,5205:361,-51,-26,0,0,0.530696 -16732,5205:360,-50,-26,0,0,0.541683 -16733,5204:469,-49,-26,0,0,0.512341 -16734,5204:468,-48,-26,0,0,0.483478 -16735,5204:467,-47,-26,0,0,0.496753 -16736,5204:466,-46,-26,0,0,0.472507 -16737,5204:465,-45,-26,0,0,0.461638 -16738,5204:364,-44,-26,0,0,0.426624 -16739,5204:363,-43,-26,0,0,0.42846 -16740,5204:362,-42,-26,0,0,0.429014 -16741,5204:361,-41,-26,0,0,0.417752 -16742,5204:360,-40,-26,0,0,0.408485 -16743,5203:469,-39,-26,0,0,0.41092 -16744,5203:468,-38,-26,0,0,0.395077 -16745,5203:467,-37,-26,0,0,0.401479 -16746,5203:466,-36,-26,0,0,0.391792 -16747,5203:465,-35,-26,0,0,0.393458 -16748,5203:364,-34,-26,0,0,0.391498 -16749,5203:363,-33,-26,0,0,0.381267 -16750,5203:362,-32,-26,0,0,0.38054 -16751,5203:361,-31,-26,0,0,0.382165 -16752,5203:360,-30,-26,0,0,0.386638 -16753,5202:469,-29,-26,0,0,0.382577 -16754,5202:468,-28,-26,0,0,0.381631 -16755,5202:467,-27,-26,0,0,0.389835 -16756,5202:466,-26,-26,0,0,0.391473 -16757,5202:465,-25,-26,0,0,0.384204 -16758,5202:364,-24,-26,0,0,0.3892 -16759,5202:363,-23,-26,0,0,0.393311 -16760,5202:362,-22,-26,0,0,0.389933 -16761,5202:361,-21,-26,0,0,0.388003 -16762,5202:360,-20,-26,0,0,0.383111 -16763,5201:469,-19,-26,0,0,0.38134 -16764,5201:468,-18,-26,0,0,0.375324 -16765,5201:467,-17,-26,0,0,0.377808 -16766,5201:466,-16,-26,0,0,0.373903 -16767,5201:465,-15,-26,0,0,0.381316 -16768,5201:364,-14,-26,0,0,0.37477 -16769,5201:363,-13,-26,0,0,0.372797 -16770,5201:362,-12,-26,0,0,0.383694 -16771,5201:361,-11,-26,0,0,0.372293 -16772,5201:360,-10,-26,0,0,0.383791 -16773,5200:469,-9,-26,0,0,0.378654 -16774,5200:468,-8,-26,0,0,0.383354 -16775,5200:467,-7,-26,0,0,0.384132 -16776,5200:466,-6,-26,0,0,0.38025 -16777,5200:465,-5,-26,0,0,0.382674 -16778,5200:364,-4,-26,0,0,0.383549 -16779,5200:363,-3,-26,0,0,0.387711 -16780,5200:362,-2,-26,0,0,0.384083 -16781,5200:361,-1,-26,0,0,0.373278 -16782,3200:361,0,-26,0,0,0.372053 -16783,3200:361,1,-26,0,0,0.37875 -16784,3200:362,2,-26,0,0,0.377905 -16785,3200:363,3,-26,0,0,0.377301 -16786,3200:364,4,-26,0,0,0.376674 -16787,3200:465,5,-26,0,0,0.377735 -16788,3200:466,6,-26,0,0,0.386029 -16789,3200:467,7,-26,0,0,0.387833 -16790,3200:468,8,-26,0,0,0.383962 -16791,3200:469,9,-26,0,0,0.38042 -16792,3201:360,10,-26,0,0,0.379137 -16793,3201:361,11,-26,0,0,0.37933 -16794,3201:362,12,-26,0,0,0.390031 -16795,3201:363,13,-26,0,0,0.402467 -16796,3201:364,14,-26,0,0,0.401356 -16797,3201:465,15,-26,0,0,0.401232 -16798,3201:466,16,-26,0,0,0.407096 -16799,3201:467,17,-26,0,0,0.41518 -16800,3201:468,18,-26,0,0,0.393213 -16801,3202:465,25,-26,0,0,0.421631 -16802,3202:466,26,-26,0,0,0.463452 -16803,3202:467,27,-26,0,0,0.520243 -16804,3202:468,28,-26,0,0,0.505896 -16805,3202:469,29,-26,0,0,0.502865 -16806,3203:360,30,-26,0,0,0.49927 -16807,3203:361,31,-26,0,0,0.451314 -16808,3203:362,32,-26,0,0,0.446232 -16809,3203:363,33,-26,0,0,0.444404 -16810,3203:364,34,-26,0,0,0.439185 -17135,3204:457,47,-25,0,0,0.42133 -16811,3203:465,35,-26,0,0,0.435746 -16812,3203:466,36,-26,0,0,0.427479 -16813,3203:467,37,-26,0,0,0.427781 -16814,3203:468,38,-26,0,0,0.427755 -16815,3203:469,39,-26,0,0,0.426373 -16816,3204:360,40,-26,0,0,0.419878 -16817,3204:361,41,-26,0,0,0.411393 -16818,3204:362,42,-26,0,0,0.407791 -16819,3204:363,43,-26,0,0,0.405634 -16820,3204:364,44,-26,0,0,0.408585 -16821,3204:465,45,-26,0,0,0.40861 -16822,3204:466,46,-26,0,0,0.401381 -16823,3204:467,47,-26,0,0,0.397019 -16824,3204:468,48,-26,0,0,0.400368 -16825,3204:469,49,-26,0,0,0.393409 -16826,3205:360,50,-26,0,0,0.393654 -16827,3205:361,51,-26,0,0,0.391473 -16828,3205:362,52,-26,0,0,0.390739 -16829,3205:363,53,-26,0,0,0.392919 -16830,3205:364,54,-26,0,0,0.390837 -16831,3205:465,55,-26,0,0,0.387686 -16832,3205:466,56,-26,0,0,0.383063 -16833,3205:467,57,-26,0,0,0.38134 -16834,3205:468,58,-26,0,0,0.382505 -16835,3205:469,59,-26,0,0,0.386395 -16836,3206:360,60,-26,0,0,0.393654 -16837,3206:361,61,-26,0,0,0.395962 -16838,3206:362,62,-26,0,0,0.394979 -16839,3206:363,63,-26,0,0,0.391498 -16840,3206:364,64,-26,0,0,0.386054 -16841,3206:465,65,-26,0,0,0.394194 -16842,3206:466,66,-26,0,0,0.391718 -16843,3206:467,67,-26,0,0,0.388053 -16844,3206:468,68,-26,0,0,0.388663 -16845,3206:469,69,-26,0,0,0.389053 -16846,3207:360,70,-26,0,0,0.386516 -16847,3207:361,71,-26,0,0,0.387589 -16848,3207:362,72,-26,0,0,0.390275 -16849,3207:364,74,-26,0,0,0.395962 -16850,3207:465,75,-26,0,0,0.401306 -16851,3207:466,76,-26,0,0,0.40442 -16852,3207:467,77,-26,0,0,0.398594 -16853,3207:468,78,-26,0,0,0.398544 -16854,3207:469,79,-26,0,0,0.396551 -16855,3208:360,80,-26,0,0,0.398027 -16856,3208:361,81,-26,0,0,0.396404 -16857,3208:362,82,-26,0,0,0.39189 -16858,3208:363,83,-26,0,0,0.387199 -16859,3208:364,84,-26,0,0,0.387077 -16860,3208:465,85,-26,0,0,0.388394 -16861,3208:466,86,-26,0,0,0.386492 -16862,3208:467,87,-26,0,0,0.387077 -16863,3208:468,88,-26,0,0,0.383403 -16864,3208:469,89,-26,0,0,0.379185 -16865,3209:360,90,-26,0,0,0.377832 -16866,3209:361,91,-26,0,0,0.376119 -16867,3209:362,92,-26,0,0,0.376022 -16868,3209:363,93,-26,0,0,0.371405 -16869,3209:364,94,-26,0,0,0.36834 -16870,3209:465,95,-26,0,0,0.371309 -16871,3209:466,96,-26,0,0,0.37424 -16872,3209:467,97,-26,0,0,0.368005 -16873,3209:468,98,-26,0,0,0.363668 -16874,3209:469,99,-26,0,0,0.365452 -16875,3210:360,100,-26,0,0,0.3621 -16876,3210:361,101,-26,0,0,0.363311 -16877,3210:362,102,-26,0,0,0.369106 -16878,3210:363,103,-26,0,0,0.366287 -16879,3210:364,104,-26,0,0,0.357248 -16880,3210:465,105,-26,0,0,0.355622 -16881,3210:466,106,-26,0,0,0.364691 -16882,3210:467,107,-26,0,0,0.373879 -16883,3210:468,108,-26,0,0,0.381122 -16884,3210:469,109,-26,0,0,0.389908 -16885,3211:360,110,-26,0,0,0.400689 -16886,3211:361,111,-26,0,0,0.407146 -16887,3211:362,112,-26,0,0,0.412663 -16888,3211:363,113,-26,0,0,0.417627 -16889,3211:364,114,-26,0,0,0.421355 -16890,3211:465,115,-26,0,0,0.449992 -16891,3212:360,120,-26,0,0,0.419527 -16892,3212:361,121,-26,0,0,0.420328 -16893,3212:362,122,-26,0,0,0.420628 -16894,3212:363,123,-26,0,0,0.415904 -16895,3212:364,124,-26,0,0,0.403258 -16896,3212:465,125,-26,0,0,0.390446 -16897,3212:466,126,-26,0,0,0.372533 -16898,3212:467,127,-26,0,0,0.37323 -16899,3212:468,128,-26,0,0,0.383888 -16900,3212:469,129,-26,0,0,0.394464 -16901,3213:360,130,-26,0,0,0.398988 -16902,3213:361,131,-26,0,0,0.398569 -16903,3213:362,132,-26,0,0,0.403283 -16904,3213:363,133,-26,0,0,0.40301 -16905,3213:364,134,-26,0,0,0.411319 -16906,3213:465,135,-26,0,0,0.422457 -16907,3213:467,137,-26,0,0,0.449255 -16908,3215:362,152,-26,0,0,0.494595 -16909,3215:363,153,-26,0,0,0.498294 -16910,3215:364,154,-26,0,0,0.5614 -16911,3215:465,155,-26,0,0,0.552883 -16912,3215:466,156,-26,0,0,0.560084 -16913,3215:467,157,-26,0,0,0.529186 -16914,3215:468,158,-26,0,0,0.5365 -16915,3215:469,159,-26,0,0,0.531617 -16916,3216:360,160,-26,0,0,0.515678 -16917,3216:361,161,-26,0,0,0.50849 -16918,3216:362,162,-26,0,0,0.483376 -16919,3216:363,163,-26,0,0,0.488688 -16920,3216:364,164,-26,0,0,0.467797 -16921,3216:465,165,-26,0,0,0.444734 -16922,3216:466,166,-26,0,0,0.448975 -16923,3216:467,167,-26,0,0,0.445648 -16924,3216:468,168,-26,0,0,0.422633 -16925,3216:469,169,-26,0,0,0.411493 -16926,3217:360,170,-26,0,0,0.405287 -16927,3217:361,171,-26,0,0,0.40353 -16928,3217:362,172,-26,0,0,0.394022 -16929,3217:363,173,-26,0,0,0.401454 -16930,3217:364,174,-26,0,0,0.434079 -16931,3217:465,175,-26,0,0,0.423938 -16932,3217:466,176,-26,0,0,0.42158 -16933,3217:467,177,-26,0,0,0.407096 -16934,3217:468,178,-26,0,0,0.419427 -16935,3217:469,179,-26,0,0,0.417527 -16936,3218:360,180,-26,0,0,0.410747 -16937,5218:350,-180,-25,0,0,0.427529 -16938,5217:459,-179,-25,0,0,0.428234 -16939,5217:458,-178,-25,0,0,0.43754 -16940,5217:457,-177,-25,0,0,0.438653 -16941,5217:456,-176,-25,0,0,0.435014 -16942,5217:455,-175,-25,0,0,0.435897 -16943,5217:354,-174,-25,0,0,0.433903 -16944,5217:353,-173,-25,0,0,0.433676 -16945,5217:352,-172,-25,0,0,0.434281 -16946,5217:351,-171,-25,0,0,0.431557 -16947,5217:350,-170,-25,0,0,0.429895 -16948,5216:459,-169,-25,0,0,0.425444 -16949,5216:458,-168,-25,0,0,0.423435 -16950,5216:457,-167,-25,0,0,0.422433 -16951,5216:456,-166,-25,0,0,0.421831 -16952,5216:455,-165,-25,0,0,0.417677 -16953,5216:354,-164,-25,0,0,0.416128 -16954,5216:353,-163,-25,0,0,0.420379 -16955,5216:352,-162,-25,0,0,0.42138 -16956,5216:351,-161,-25,0,0,0.419327 -16957,5216:350,-160,-25,0,0,0.42123 -16958,5215:459,-159,-25,0,0,0.423812 -16959,5215:458,-158,-25,0,0,0.42103 -16960,5215:457,-157,-25,0,0,0.418327 -16961,5215:456,-156,-25,0,0,0.420078 -16962,5215:455,-155,-25,0,0,0.423787 -16963,5215:354,-154,-25,0,0,0.429064 -16964,5215:353,-153,-25,0,0,0.434231 -16965,5215:352,-152,-25,0,0,0.432742 -16966,5215:351,-151,-25,0,0,0.440146 -16967,5215:350,-150,-25,0,0,0.437389 -16968,5214:459,-149,-25,0,0,0.434408 -16969,5214:458,-148,-25,0,0,0.434281 -16970,5214:457,-147,-25,0,0,0.425167 -16971,5214:456,-146,-25,0,0,0.431255 -16972,5214:455,-145,-25,0,0,0.429391 -16973,5214:354,-144,-25,0,0,0.432641 -16974,5214:353,-143,-25,0,0,0.425845 -16975,5214:352,-142,-25,0,0,0.422232 -16976,5214:351,-141,-25,0,0,0.421881 -16977,5214:350,-140,-25,0,0,0.417902 -16978,5213:459,-139,-25,0,0,0.420379 -16979,5213:458,-138,-25,0,0,0.425192 -16980,5213:457,-137,-25,0,0,0.430953 -16981,5213:456,-136,-25,0,0,0.426097 -16982,5213:455,-135,-25,0,0,0.427303 -16983,5213:354,-134,-25,0,0,0.425468 -16984,5213:353,-133,-25,0,0,0.427629 -16985,5213:352,-132,-25,0,0,0.427932 -16986,5213:351,-131,-25,0,0,0.422934 -16987,5213:350,-130,-25,0,0,0.416553 -16988,5212:459,-129,-25,0,0,0.419903 -16989,5212:458,-128,-25,0,0,0.419828 -16990,5212:457,-127,-25,0,0,0.416778 -16991,5212:456,-126,-25,0,0,0.417802 -16992,5212:455,-125,-25,0,0,0.417902 -16993,5212:354,-124,-25,0,0,0.418226 -16994,5212:353,-123,-25,0,0,0.416103 -16995,5212:352,-122,-25,0,0,0.410722 -16996,5212:351,-121,-25,0,0,0.406055 -16997,5212:350,-120,-25,0,0,0.405659 -16998,5211:459,-119,-25,0,0,0.410448 -16999,5211:458,-118,-25,0,0,0.407543 -17000,5211:457,-117,-25,0,0,0.418127 -17001,5211:456,-116,-25,0,0,0.417877 -17002,5211:455,-115,-25,0,0,0.414357 -17003,5211:354,-114,-25,0,0,0.411021 -17004,5211:353,-113,-25,0,0,0.405238 -17005,5211:352,-112,-25,0,0,0.413884 -17006,5211:351,-111,-25,0,0,0.415704 -17007,5211:350,-110,-25,0,0,0.40722 -17008,5210:459,-109,-25,0,0,0.407171 -17009,5210:458,-108,-25,0,0,0.409802 -17010,5210:457,-107,-25,0,0,0.420954 -17011,5210:456,-106,-25,0,0,0.425142 -17012,5210:455,-105,-25,0,0,0.420879 -17013,5210:354,-104,-25,0,0,0.419503 -17014,5210:353,-103,-25,0,0,0.423736 -17015,5210:352,-102,-25,0,0,0.42113 -17016,5210:351,-101,-25,0,0,0.414706 -17017,5210:350,-100,-25,0,0,0.406898 -17018,5209:459,-99,-25,0,0,0.400886 -17019,5209:458,-98,-25,0,0,0.401331 -17020,5209:457,-97,-25,0,0,0.400418 -17021,5209:456,-96,-25,0,0,0.396969 -17022,5209:455,-95,-25,0,0,0.397265 -17023,5209:354,-94,-25,0,0,0.398348 -17024,5209:353,-93,-25,0,0,0.399235 -17025,5209:352,-92,-25,0,0,0.401578 -17026,5209:351,-91,-25,0,0,0.401751 -17027,5209:350,-90,-25,0,0,0.399974 -17028,5208:459,-89,-25,0,0,0.393409 -17029,5208:458,-88,-25,0,0,0.390373 -17030,5208:457,-87,-25,0,0,0.387589 -17031,5208:456,-86,-25,0,0,0.386127 -17032,5208:455,-85,-25,0,0,0.385907 -17033,5208:354,-84,-25,0,0,0.382674 -17034,5208:353,-83,-25,0,0,0.378219 -17035,5208:352,-82,-25,0,0,0.378508 -17036,5208:351,-81,-25,0,0,0.378242 -17037,5208:350,-80,-25,0,0,0.381825 -17038,5207:459,-79,-25,0,0,0.38042 -17039,5207:458,-78,-25,0,0,0.379282 -17040,5207:457,-77,-25,0,0,0.376601 -17041,5207:456,-76,-25,0,0,0.367241 -17042,5207:455,-75,-25,0,0,0.361838 -17043,5207:354,-74,-25,0,0,0.350951 -17044,5207:353,-73,-25,0,0,0.351372 -17045,5207:352,-72,-25,0,0,0.344798 -17046,5205:352,-52,-25,0,0,0.480298 -17047,5205:351,-51,-25,0,0,0.496136 -17048,5205:350,-50,-25,0,0,0.561274 -17049,5204:459,-49,-25,0,0,0.513445 -17050,5204:458,-48,-25,0,0,0.509722 -17051,5204:457,-47,-25,0,0,0.50546 -17052,5204:456,-46,-25,0,0,0.473147 -17053,5204:455,-45,-25,0,0,0.456893 -17054,5204:354,-44,-25,0,0,0.447349 -17055,5204:353,-43,-25,0,0,0.444683 -17056,5204:352,-42,-25,0,0,0.439969 -17057,5204:351,-41,-25,0,0,0.43249 -17058,5204:350,-40,-25,0,0,0.438704 -17059,5203:459,-39,-25,0,0,0.432767 -17060,5203:458,-38,-25,0,0,0.417253 -17061,5203:457,-37,-25,0,0,0.425218 -17062,5203:456,-36,-25,0,0,0.422107 -17063,5203:455,-35,-25,0,0,0.426197 -17064,5203:354,-34,-25,0,0,0.414931 -17065,5203:353,-33,-25,0,0,0.416378 -17066,5203:352,-32,-25,0,0,0.402739 -17067,5203:351,-31,-25,0,0,0.41092 -17068,5203:350,-30,-25,0,0,0.417527 -17069,5202:459,-29,-25,0,0,0.415954 -17070,5202:458,-28,-25,0,0,0.404173 -17071,5202:457,-27,-25,0,0,0.41092 -17072,5202:456,-26,-25,0,0,0.417602 -17073,5202:455,-25,-25,0,0,0.411244 -17074,5202:354,-24,-25,0,0,0.403753 -17075,5202:353,-23,-25,0,0,0.415305 -17076,5202:352,-22,-25,0,0,0.404767 -17077,5202:351,-21,-25,0,0,0.397536 -17078,5202:350,-20,-25,0,0,0.405659 -17079,5201:459,-19,-25,0,0,0.407939 -17080,5201:458,-18,-25,0,0,0.401924 -17081,5201:457,-17,-25,0,0,0.403209 -17082,5201:456,-16,-25,0,0,0.403926 -17083,5201:455,-15,-25,0,0,0.400467 -17084,5201:354,-14,-25,0,0,0.401899 -17085,5201:353,-13,-25,0,0,0.403653 -17086,5201:352,-12,-25,0,0,0.390055 -17087,5201:351,-11,-25,0,0,0.400368 -17088,5201:350,-10,-25,0,0,0.405733 -17089,5200:459,-9,-25,0,0,0.401652 -17090,5200:458,-8,-25,0,0,0.400961 -17091,5200:457,-7,-25,0,0,0.408361 -17092,5200:456,-6,-25,0,0,0.404223 -17093,5200:455,-5,-25,0,0,0.403728 -17094,5200:354,-4,-25,0,0,0.406055 -17095,5200:353,-3,-25,0,0,0.404297 -17096,5200:352,-2,-25,0,0,0.400788 -17097,5200:351,-1,-25,0,0,0.399185 -17098,3200:351,0,-25,0,0,0.395912 -17099,3200:351,1,-25,0,0,0.393703 -17100,3200:352,2,-25,0,0,0.393728 -17101,3200:353,3,-25,0,0,0.393115 -17102,3200:354,4,-25,0,0,0.394316 -17103,3200:455,5,-25,0,0,0.392085 -17104,3200:456,6,-25,0,0,0.394856 -17105,3200:457,7,-25,0,0,0.397634 -17106,3200:458,8,-25,0,0,0.396798 -17107,3200:459,9,-25,0,0,0.400443 -17108,3201:350,10,-25,0,0,0.406824 -17109,3201:351,11,-25,0,0,0.408833 -17110,3201:352,12,-25,0,0,0.40933 -17111,3201:353,13,-25,0,0,0.412688 -17112,3201:354,14,-25,0,0,0.415679 -17113,3201:455,15,-25,0,0,0.418102 -17114,3201:456,16,-25,0,0,0.426197 -17115,3201:457,17,-25,0,0,0.419652 -17116,3202:458,28,-25,0,0,0.496778 -17117,3202:459,29,-25,0,0,0.53885 -17118,3203:350,30,-25,0,0,0.523397 -17119,3203:351,31,-25,0,0,0.518781 -17120,3203:352,32,-25,0,0,0.486584 -17121,3203:353,33,-25,0,0,0.455669 -17122,3203:354,34,-25,0,0,0.454217 -17123,3203:455,35,-25,0,0,0.445267 -17124,3203:456,36,-25,0,0,0.441235 -17125,3203:457,37,-25,0,0,0.448975 -17126,3203:458,38,-25,0,0,0.461817 -17127,3203:459,39,-25,0,0,0.476093 -17128,3204:350,40,-25,0,0,0.4774 -17129,3204:351,41,-25,0,0,0.453351 -17130,3204:352,42,-25,0,0,0.440729 -17131,3204:353,43,-25,0,0,0.430499 -17132,3204:354,44,-25,0,0,0.431936 -17133,3204:455,45,-25,0,0,0.43471 -17134,3204:456,46,-25,0,0,0.427705 -17136,3204:458,48,-25,0,0,0.421956 -17137,3204:459,49,-25,0,0,0.427227 -17138,3205:350,50,-25,0,0,0.413111 -17139,3205:351,51,-25,0,0,0.415454 -17140,3205:352,52,-25,0,0,0.412986 -17141,3205:353,53,-25,0,0,0.419677 -17142,3205:354,54,-25,0,0,0.425343 -17143,3205:455,55,-25,0,0,0.416128 -17144,3205:456,56,-25,0,0,0.410324 -17145,3205:457,57,-25,0,0,0.4101 -17146,3205:458,58,-25,0,0,0.410423 -17147,3205:459,59,-25,0,0,0.41331 -17148,3206:350,60,-25,0,0,0.416852 -17149,3206:351,61,-25,0,0,0.421405 -17150,3206:352,62,-25,0,0,0.422759 -17151,3206:353,63,-25,0,0,0.423736 -17152,3206:354,64,-25,0,0,0.419503 -17153,3206:455,65,-25,0,0,0.414557 -17154,3206:456,66,-25,0,0,0.419152 -17155,3206:457,67,-25,0,0,0.413983 -17156,3206:458,68,-25,0,0,0.410523 -17157,3206:459,69,-25,0,0,0.408958 -17158,3207:350,70,-25,0,0,0.413859 -17159,3207:351,71,-25,0,0,0.431986 -17160,3207:352,72,-25,0,0,0.428032 -17161,3207:354,74,-25,0,0,0.430071 -17162,3207:455,75,-25,0,0,0.436075 -17163,3207:456,76,-25,0,0,0.443871 -17164,3207:457,77,-25,0,0,0.429467 -17165,3207:458,78,-25,0,0,0.427202 -17166,3207:459,79,-25,0,0,0.425519 -17167,3208:350,80,-25,0,0,0.426926 -17168,3208:351,81,-25,0,0,0.426499 -17169,3208:352,82,-25,0,0,0.424213 -17170,3208:353,83,-25,0,0,0.422658 -17171,3208:354,84,-25,0,0,0.418226 -17172,3208:455,85,-25,0,0,0.411443 -17173,3208:456,86,-25,0,0,0.410473 -17174,3208:457,87,-25,0,0,0.414881 -17175,3208:458,88,-25,0,0,0.411319 -17176,3208:459,89,-25,0,0,0.407418 -17177,3209:350,90,-25,0,0,0.401627 -17178,3209:351,91,-25,0,0,0.39633 -17179,3209:352,92,-25,0,0,0.399407 -17180,3209:353,93,-25,0,0,0.394145 -17181,3209:354,94,-25,0,0,0.394414 -17182,3209:455,95,-25,0,0,0.397265 -17183,3209:456,96,-25,0,0,0.396822 -17184,3209:457,97,-25,0,0,0.3835 -17185,3209:458,98,-25,0,0,0.380105 -17186,3209:459,99,-25,0,0,0.382334 -17187,3210:350,100,-25,0,0,0.375299 -17188,3210:351,101,-25,0,0,0.378533 -17189,3210:352,102,-25,0,0,0.386395 -17190,3210:353,103,-25,0,0,0.375443 -17191,3210:354,104,-25,0,0,0.379234 -17192,3210:455,105,-25,0,0,0.379694 -17193,3210:456,106,-25,0,0,0.390691 -17194,3210:457,107,-25,0,0,0.389664 -17195,3210:458,108,-25,0,0,0.398274 -17196,3210:459,109,-25,0,0,0.393507 -17197,3211:350,110,-25,0,0,0.393924 -17198,3211:351,111,-25,0,0,0.421054 -17199,3211:352,112,-25,0,0,0.42123 -17200,3211:353,113,-25,0,0,0.43466 -17201,3211:354,114,-25,0,0,0.4598 -17202,3211:455,115,-25,0,0,0.469281 -17203,3212:456,126,-25,0,0,0.39466 -17204,3212:457,127,-25,0,0,0.391523 -17205,3212:458,128,-25,0,0,0.393213 -17206,3212:459,129,-25,0,0,0.40027 -17207,3213:350,130,-25,0,0,0.408958 -17208,3213:351,131,-25,0,0,0.411393 -17209,3213:352,132,-25,0,0,0.418402 -17210,3213:353,133,-25,0,0,0.442274 -17211,3213:354,134,-25,0,0,0.465061 -17212,3215:353,153,-25,0,0,0.546321 -17213,3215:354,154,-25,0,0,0.550469 -17214,3215:455,155,-25,0,0,0.535095 -17215,3215:456,156,-25,0,0,0.559198 -17216,3215:457,157,-25,0,0,0.530414 -17217,3215:458,158,-25,0,0,0.546754 -17218,3215:459,159,-25,0,0,0.527009 -17219,3216:350,160,-25,0,0,0.524576 -17220,3216:351,161,-25,0,0,0.515831 -17221,3216:352,162,-25,0,0,0.498602 -17222,3216:353,163,-25,0,0,0.496033 -17223,3216:354,164,-25,0,0,0.491128 -17224,3216:455,165,-25,0,0,0.492515 -17225,3216:456,166,-25,0,0,0.466545 -17226,3216:457,167,-25,0,0,0.455465 -17227,3216:458,168,-25,0,0,0.449407 -17228,3216:459,169,-25,0,0,0.43509 -17229,3217:350,170,-25,0,0,0.442451 -17230,3217:351,171,-25,0,0,0.441413 -17231,3217:352,172,-25,0,0,0.433852 -17232,3217:353,173,-25,0,0,0.433701 -17233,3217:354,174,-25,0,0,0.435544 -17234,3217:455,175,-25,0,0,0.425468 -17235,3217:456,176,-25,0,0,0.420954 -17236,3217:457,177,-25,0,0,0.426423 -17237,3217:458,178,-25,0,0,0.437667 -17238,3217:459,179,-25,0,0,0.430877 -17239,3218:350,180,-25,0,0,0.427529 -17240,5218:140,-180,-24,0,0,0.450069 -17241,5217:249,-179,-24,0,0,0.450551 -17242,5217:248,-178,-24,0,0,0.452816 -17243,5217:247,-177,-24,0,0,0.458703 -17244,5217:246,-176,-24,0,0,0.452205 -17245,5217:245,-175,-24,0,0,0.453453 -17246,5217:144,-174,-24,0,0,0.451085 -17247,5217:143,-173,-24,0,0,0.451314 -17248,5217:142,-172,-24,0,0,0.44806 -17249,5217:141,-171,-24,0,0,0.448035 -17250,5217:140,-170,-24,0,0,0.447349 -17251,5216:249,-169,-24,0,0,0.444683 -17252,5216:248,-168,-24,0,0,0.448111 -17253,5216:247,-167,-24,0,0,0.445648 -17254,5216:246,-166,-24,0,0,0.443821 -17255,5216:245,-165,-24,0,0,0.4458 -17256,5216:144,-164,-24,0,0,0.442756 -17257,5216:143,-163,-24,0,0,0.439817 -17258,5216:142,-162,-24,0,0,0.441008 -17259,5216:141,-161,-24,0,0,0.441616 -17260,5216:140,-160,-24,0,0,0.444658 -17261,5215:249,-159,-24,0,0,0.442654 -17262,5215:248,-158,-24,0,0,0.446562 -17263,5215:247,-157,-24,0,0,0.450119 -17264,5215:246,-156,-24,0,0,0.446155 -17265,5215:245,-155,-24,0,0,0.450196 -17266,5215:144,-154,-24,0,0,0.453478 -17267,5215:143,-153,-24,0,0,0.45855 -17268,5215:142,-152,-24,0,0,0.464755 -17269,5215:141,-151,-24,0,0,0.46726 -17270,5215:140,-150,-24,0,0,0.456127 -17271,5214:249,-149,-24,0,0,0.454497 -17272,5214:248,-148,-24,0,0,0.455949 -17273,5214:247,-147,-24,0,0,0.44372 -17274,5214:246,-146,-24,0,0,0.451085 -17275,5214:245,-145,-24,0,0,0.448035 -17276,5214:144,-144,-24,0,0,0.4441 -17277,5214:143,-143,-24,0,0,0.440273 -17278,5214:142,-142,-24,0,0,0.4423 -17279,5214:141,-141,-24,0,0,0.443212 -17280,5214:140,-140,-24,0,0,0.441793 -17281,5213:249,-139,-24,0,0,0.444988 -17282,5213:248,-138,-24,0,0,0.445927 -17283,5213:247,-137,-24,0,0,0.439185 -17284,5213:246,-136,-24,0,0,0.448975 -17285,5213:245,-135,-24,0,0,0.443289 -17286,5213:144,-134,-24,0,0,0.440628 -17287,5213:143,-133,-24,0,0,0.439261 -17288,5213:142,-132,-24,0,0,0.441008 -17289,5213:141,-131,-24,0,0,0.444937 -17290,5213:140,-130,-24,0,0,0.440045 -17291,5212:249,-129,-24,0,0,0.440096 -17292,5212:248,-128,-24,0,0,0.441286 -17293,5212:247,-127,-24,0,0,0.441742 -17294,5212:246,-126,-24,0,0,0.434686 -17295,5212:245,-125,-24,0,0,0.44268 -17296,5212:144,-124,-24,0,0,0.438502 -17297,5212:143,-123,-24,0,0,0.430801 -17298,5212:142,-122,-24,0,0,0.429542 -17299,5212:141,-121,-24,0,0,0.425996 -17300,5212:140,-120,-24,0,0,0.426222 -17301,5211:249,-119,-24,0,0,0.438324 -17302,5211:248,-118,-24,0,0,0.43567 -17303,5211:247,-117,-24,0,0,0.4306 -17304,5211:246,-116,-24,0,0,0.428813 -17305,5211:245,-115,-24,0,0,0.437819 -17306,5211:144,-114,-24,0,0,0.440881 -17307,5211:143,-113,-24,0,0,0.431406 -17308,5211:142,-112,-24,0,0,0.435392 -17309,5211:141,-111,-24,0,0,0.425243 -17310,5211:140,-110,-24,0,0,0.432692 -17311,5210:249,-109,-24,0,0,0.428082 -17312,5210:248,-108,-24,0,0,0.437313 -17313,5210:247,-107,-24,0,0,0.439185 -17314,5210:246,-106,-24,0,0,0.442427 -17315,5210:245,-105,-24,0,0,0.438021 -17316,5210:144,-104,-24,0,0,0.437742 -17317,5210:143,-103,-24,0,0,0.431431 -17318,5210:142,-102,-24,0,0,0.431356 -17319,5210:141,-101,-24,0,0,0.431557 -17320,5210:140,-100,-24,0,0,0.427202 -17321,5209:249,-99,-24,0,0,0.420278 -17322,5209:248,-98,-24,0,0,0.415654 -17323,5209:247,-97,-24,0,0,0.414706 -17324,5209:246,-96,-24,0,0,0.415679 -17325,5209:245,-95,-24,0,0,0.414731 -17326,5209:144,-94,-24,0,0,0.415879 -17327,5209:143,-93,-24,0,0,0.417577 -17328,5209:142,-92,-24,0,0,0.417377 -17329,5209:141,-91,-24,0,0,0.414108 -17330,5209:140,-90,-24,0,0,0.408833 -17331,5208:249,-89,-24,0,0,0.408064 -17332,5208:248,-88,-24,0,0,0.406204 -17333,5208:247,-87,-24,0,0,0.403283 -17334,5208:246,-86,-24,0,0,0.401504 -17335,5208:245,-85,-24,0,0,0.397609 -17336,5208:144,-84,-24,0,0,0.3952 -17337,5208:143,-83,-24,0,0,0.394366 -17338,5208:142,-82,-24,0,0,0.395053 -17339,5208:141,-81,-24,0,0,0.39118 -17340,5208:140,-80,-24,0,0,0.391009 -17341,5207:249,-79,-24,0,0,0.393507 -17342,5207:248,-78,-24,0,0,0.389298 -17343,5207:247,-77,-24,0,0,0.384204 -17344,5207:246,-76,-24,0,0,0.380202 -17345,5207:245,-75,-24,0,0,0.370926 -17346,5207:144,-74,-24,0,0,0.363715 -17347,5207:143,-73,-24,0,0,0.360061 -17348,5207:142,-72,-24,0,0,0.345495 -17349,5205:141,-51,-24,0,0,0.519782 -17350,5205:140,-50,-24,0,0,0.551333 -17351,5204:249,-49,-24,0,0,0.570914 -17352,5204:248,-48,-24,0,0,0.538773 -17353,5204:247,-47,-24,0,0,0.513727 -17354,5204:246,-46,-24,0,0,0.48394 -17355,5204:245,-45,-24,0,0,0.474197 -17356,5204:144,-44,-24,0,0,0.465266 -17357,5204:143,-43,-24,0,0,0.461153 -17358,5204:142,-42,-24,0,0,0.463962 -17359,5204:141,-41,-24,0,0,0.465573 -17360,5204:140,-40,-24,0,0,0.465854 -17361,5203:249,-39,-24,0,0,0.464397 -17362,5203:248,-38,-24,0,0,0.451518 -17363,5203:247,-37,-24,0,0,0.452994 -17364,5203:246,-36,-24,0,0,0.450196 -17365,5203:245,-35,-24,0,0,0.455847 -17366,5203:144,-34,-24,0,0,0.454191 -17367,5203:143,-33,-24,0,0,0.443313 -17368,5203:142,-32,-24,0,0,0.43797 -17369,5203:141,-31,-24,0,0,0.442376 -17370,5203:140,-30,-24,0,0,0.451951 -17371,5202:249,-29,-24,0,0,0.445723 -17372,5202:248,-28,-24,0,0,0.441312 -17373,5202:247,-27,-24,0,0,0.439438 -17374,5202:246,-26,-24,0,0,0.43883 -17375,5202:245,-25,-24,0,0,0.443035 -17376,5202:144,-24,-24,0,0,0.443694 -17377,5202:143,-23,-24,0,0,0.441564 -17378,5202:142,-22,-24,0,0,0.448899 -17379,5202:141,-21,-24,0,0,0.443035 -17380,5202:140,-20,-24,0,0,0.427806 -17381,5201:249,-19,-24,0,0,0.428435 -17382,5201:248,-18,-24,0,0,0.422934 -17383,5201:247,-17,-24,0,0,0.42919 -17384,5201:246,-16,-24,0,0,0.42851 -17385,5201:245,-15,-24,0,0,0.428334 -17386,5201:144,-14,-24,0,0,0.420028 -17387,5201:143,-13,-24,0,0,0.41538 -17388,5201:142,-12,-24,0,0,0.412065 -17389,5201:141,-11,-24,0,0,0.43921 -17390,5201:140,-10,-24,0,0,0.439387 -17391,5200:249,-9,-24,0,0,0.433045 -17392,5200:248,-8,-24,0,0,0.438679 -17393,5200:247,-7,-24,0,0,0.431709 -17394,5200:246,-6,-24,0,0,0.43186 -17395,5200:245,-5,-24,0,0,0.429945 -17396,5200:144,-4,-24,0,0,0.426448 -17397,5200:143,-3,-24,0,0,0.431229 -17398,5200:142,-2,-24,0,0,0.43191 -17399,5200:141,-1,-24,0,0,0.430801 -17400,3200:141,0,-24,0,0,0.42316 -17401,3200:141,1,-24,0,0,0.415604 -17402,3200:142,2,-24,0,0,0.411617 -17403,3200:143,3,-24,0,0,0.405708 -17404,3200:144,4,-24,0,0,0.405312 -17405,3200:245,5,-24,0,0,0.404965 -17406,3200:246,6,-24,0,0,0.410622 -17407,3200:247,7,-24,0,0,0.411244 -17408,3200:248,8,-24,0,0,0.40789 -17409,3200:249,9,-24,0,0,0.410797 -17410,3201:140,10,-24,0,0,0.411368 -17411,3201:141,11,-24,0,0,0.411294 -17412,3201:142,12,-24,0,0,0.417202 -17413,3201:143,13,-24,0,0,0.417952 -17414,3201:144,14,-24,0,0,0.428963 -17415,3201:245,15,-24,0,0,0.437313 -17416,3201:246,16,-24,0,0,0.439969 -17417,3201:247,17,-24,0,0,0.430877 -17418,3203:140,30,-24,0,0,0.549426 -17419,3203:141,31,-24,0,0,0.558894 -17420,3203:142,32,-24,0,0,0.536194 -17421,3203:143,33,-24,0,0,0.516217 -17422,3203:144,34,-24,0,0,0.485326 -17423,3203:245,35,-24,0,0,0.499809 -17424,3203:246,36,-24,0,0,0.512752 -17425,3203:247,37,-24,0,0,0.510133 -17426,3203:248,38,-24,0,0,0.480426 -17427,3203:249,39,-24,0,0,0.492694 -17428,3204:140,40,-24,0,0,0.495031 -17429,3204:141,41,-24,0,0,0.490794 -17430,3204:142,42,-24,0,0,0.488304 -17431,3204:143,43,-24,0,0,0.484326 -17432,3204:144,44,-24,0,0,0.480862 -17433,3204:245,45,-24,0,0,0.473583 -17434,3204:246,46,-24,0,0,0.466442 -17435,3204:247,47,-24,0,0,0.447527 -17436,3204:248,48,-24,0,0,0.453886 -17437,3204:249,49,-24,0,0,0.453987 -17438,3205:140,50,-24,0,0,0.454522 -17439,3205:141,51,-24,0,0,0.448518 -17440,3205:142,52,-24,0,0,0.449865 -17441,3205:143,53,-24,0,0,0.452562 -17442,3205:144,54,-24,0,0,0.444607 -17443,3205:245,55,-24,0,0,0.446993 -17444,3205:246,56,-24,0,0,0.437136 -17445,3205:247,57,-24,0,0,0.436554 -17446,3205:248,58,-24,0,0,0.43835 -17447,3205:249,59,-24,0,0,0.440653 -17448,3206:140,60,-24,0,0,0.446435 -17449,3206:141,61,-24,0,0,0.449204 -17450,3206:142,62,-24,0,0,0.449382 -17451,3206:143,63,-24,0,0,0.446587 -17452,3206:144,64,-24,0,0,0.446866 -17453,3206:245,65,-24,0,0,0.441033 -17454,3206:246,66,-24,0,0,0.44235 -17455,3206:247,67,-24,0,0,0.441159 -17456,3206:248,68,-24,0,0,0.439058 -17457,3206:249,69,-24,0,0,0.447171 -17458,3207:140,70,-24,0,0,0.457708 -17459,3207:141,71,-24,0,0,0.454548 -17460,3207:142,72,-24,0,0,0.465956 -17461,3207:144,74,-24,0,0,0.468003 -17462,3207:245,75,-24,0,0,0.467362 -17463,3207:246,76,-24,0,0,0.466621 -17464,3207:247,77,-24,0,0,0.457249 -17465,3207:248,78,-24,0,0,0.452867 -17466,3207:249,79,-24,0,0,0.460668 -17467,3208:140,80,-24,0,0,0.462455 -17468,3208:141,81,-24,0,0,0.461817 -17469,3208:142,82,-24,0,0,0.449127 -17470,3208:143,83,-24,0,0,0.45302 -17471,3208:144,84,-24,0,0,0.447171 -17472,3208:245,85,-24,0,0,0.43959 -17473,3208:246,86,-24,0,0,0.441844 -17474,3208:247,87,-24,0,0,0.436201 -17475,3208:248,88,-24,0,0,0.438653 -17476,3208:249,89,-24,0,0,0.429265 -17477,3209:140,90,-24,0,0,0.427001 -17478,3209:141,91,-24,0,0,0.423034 -17479,3209:142,92,-24,0,0,0.423335 -17480,3209:143,93,-24,0,0,0.419603 -17481,3209:144,94,-24,0,0,0.412713 -17482,3209:245,95,-24,0,0,0.405683 -17483,3209:246,96,-24,0,0,0.410423 -17484,3209:247,97,-24,0,0,0.400073 -17485,3209:248,98,-24,0,0,0.391718 -17486,3209:249,99,-24,0,0,0.39118 -17487,3210:140,100,-24,0,0,0.390446 -17488,3210:141,101,-24,0,0,0.390471 -17489,3210:142,102,-24,0,0,0.386833 -17490,3210:143,103,-24,0,0,0.396626 -17491,3210:144,104,-24,0,0,0.398865 -17492,3210:245,105,-24,0,0,0.388516 -17493,3210:246,106,-24,0,0,0.404965 -17494,3210:247,107,-24,0,0,0.401849 -17495,3210:248,108,-24,0,0,0.406228 -17496,3210:249,109,-24,0,0,0.411493 -17497,3211:140,110,-24,0,0,0.413833 -17498,3211:141,111,-24,0,0,0.443313 -17499,3211:142,112,-24,0,0,0.446308 -17500,3211:143,113,-24,0,0,0.454624 -17501,3211:144,114,-24,0,0,0.473019 -17502,3211:245,115,-24,0,0,0.487944 -17503,3215:144,154,-24,0,0,0.565772 -17504,3215:245,155,-24,0,0,0.545175 -17505,3215:246,156,-24,0,0,0.55273 -17506,3215:247,157,-24,0,0,0.552959 -17507,3215:248,158,-24,0,0,0.535069 -17508,3215:249,159,-24,0,0,0.529237 -17509,3216:140,160,-24,0,0,0.53131 -17510,3216:141,161,-24,0,0,0.518115 -17511,3216:142,162,-24,0,0,0.511905 -17512,3216:143,163,-24,0,0,0.50849 -17513,3216:144,164,-24,0,0,0.502814 -17514,3216:245,165,-24,0,0,0.499963 -17515,3216:246,166,-24,0,0,0.473839 -17516,3216:247,167,-24,0,0,0.466417 -17517,3216:248,168,-24,0,0,0.46312 -17518,3216:249,169,-24,0,0,0.45781 -17519,3217:140,170,-24,0,0,0.450374 -17520,3217:141,171,-24,0,0,0.447755 -17521,3217:142,172,-24,0,0,0.447628 -17522,3217:143,173,-24,0,0,0.448136 -17523,3217:144,174,-24,0,0,0.450322 -17524,3217:245,175,-24,0,0,0.442223 -17525,3217:246,176,-24,0,0,0.446968 -17526,3217:247,177,-24,0,0,0.44984 -17527,3217:248,178,-24,0,0,0.452002 -17528,3217:249,179,-24,0,0,0.455873 -17529,3218:140,180,-24,0,0,0.450069 -17530,5218:130,-180,-23,0,0,0.465547 -17531,5217:239,-179,-23,0,0,0.464857 -17532,5217:238,-178,-23,0,0,0.467286 -17533,5217:237,-177,-23,0,0,0.473839 -17534,5217:236,-176,-23,0,0,0.465803 -17535,5217:235,-175,-23,0,0,0.461511 -17536,5217:134,-174,-23,0,0,0.461383 -17537,5217:133,-173,-23,0,0,0.457504 -17538,5217:132,-172,-23,0,0,0.461281 -17539,5217:131,-171,-23,0,0,0.47243 -17540,5217:130,-170,-23,0,0,0.460234 -17541,5216:239,-169,-23,0,0,0.465726 -17542,5216:238,-168,-23,0,0,0.465752 -17543,5216:237,-167,-23,0,0,0.461613 -17544,5216:236,-166,-23,0,0,0.457606 -17545,5216:235,-165,-23,0,0,0.457683 -17546,5216:134,-164,-23,0,0,0.460617 -17547,5216:133,-163,-23,0,0,0.453198 -17548,5216:132,-162,-23,0,0,0.458601 -17549,5216:131,-161,-23,0,0,0.461025 -17550,5216:130,-160,-23,0,0,0.460745 -17551,5215:239,-159,-23,0,0,0.4657 -17552,5215:238,-158,-23,0,0,0.460489 -17553,5215:237,-157,-23,0,0,0.457249 -17554,5215:236,-156,-23,0,0,0.46335 -17555,5215:235,-155,-23,0,0,0.466084 -17556,5215:134,-154,-23,0,0,0.470791 -17557,5215:133,-153,-23,0,0,0.472866 -17558,5215:132,-152,-23,0,0,0.47535 -17559,5215:131,-151,-23,0,0,0.479811 -17560,5215:130,-150,-23,0,0,0.478733 -17561,5214:239,-149,-23,0,0,0.473659 -17562,5214:238,-148,-23,0,0,0.465369 -17563,5214:237,-147,-23,0,0,0.468284 -17564,5214:236,-146,-23,0,0,0.466595 -17565,5214:235,-145,-23,0,0,0.465778 -17566,5214:134,-144,-23,0,0,0.469973 -17567,5214:133,-143,-23,0,0,0.464116 -17568,5214:132,-142,-23,0,0,0.467107 -17569,5214:131,-141,-23,0,0,0.461536 -17570,5214:130,-140,-23,0,0,0.463707 -17571,5213:239,-139,-23,0,0,0.46657 -17572,5213:238,-138,-23,0,0,0.465956 -17573,5213:237,-137,-23,0,0,0.457556 -17574,5213:236,-136,-23,0,0,0.466903 -17575,5213:235,-135,-23,0,0,0.456382 -17576,5213:134,-134,-23,0,0,0.458907 -17577,5213:133,-133,-23,0,0,0.460106 -17578,5213:132,-132,-23,0,0,0.465522 -17579,5213:131,-131,-23,0,0,0.459877 -17580,5213:130,-130,-23,0,0,0.458703 -17581,5212:239,-129,-23,0,0,0.473454 -17582,5212:238,-128,-23,0,0,0.466979 -17583,5212:237,-127,-23,0,0,0.45493 -17584,5212:236,-126,-23,0,0,0.458652 -17585,5212:235,-125,-23,0,0,0.456 -17586,5212:134,-124,-23,0,0,0.451188 -17587,5212:133,-123,-23,0,0,0.447654 -17588,5212:132,-122,-23,0,0,0.439817 -17589,5212:131,-121,-23,0,0,0.443111 -17590,5212:130,-120,-23,0,0,0.451238 -17591,5211:239,-119,-23,0,0,0.448645 -17592,5211:238,-118,-23,0,0,0.446638 -17593,5211:237,-117,-23,0,0,0.451238 -17594,5211:236,-116,-23,0,0,0.450348 -17595,5211:235,-115,-23,0,0,0.456841 -17596,5211:134,-114,-23,0,0,0.454853 -17597,5211:133,-113,-23,0,0,0.454217 -17598,5211:132,-112,-23,0,0,0.444074 -17599,5211:131,-111,-23,0,0,0.445292 -17600,5211:130,-110,-23,0,0,0.446562 -17601,5210:239,-109,-23,0,0,0.450628 -17602,5210:238,-108,-23,0,0,0.454217 -17603,5210:237,-107,-23,0,0,0.453172 -17604,5210:236,-106,-23,0,0,0.452231 -17605,5210:235,-105,-23,0,0,0.453733 -17606,5210:134,-104,-23,0,0,0.4519 -17607,5210:133,-103,-23,0,0,0.451951 -17608,5210:132,-102,-23,0,0,0.450297 -17609,5210:131,-101,-23,0,0,0.447527 -17610,5210:130,-100,-23,0,0,0.44339 -17611,5209:239,-99,-23,0,0,0.437667 -17612,5209:238,-98,-23,0,0,0.437465 -17613,5209:237,-97,-23,0,0,0.43792 -17614,5209:236,-96,-23,0,0,0.438249 -17615,5209:235,-95,-23,0,0,0.436605 -17616,5209:134,-94,-23,0,0,0.436378 -17617,5209:133,-93,-23,0,0,0.433676 -17618,5209:132,-92,-23,0,0,0.429668 -17619,5209:131,-91,-23,0,0,0.425218 -17620,5209:130,-90,-23,0,0,0.419303 -17621,5208:239,-89,-23,0,0,0.415879 -17622,5208:238,-88,-23,0,0,0.414208 -17623,5208:237,-87,-23,0,0,0.411543 -17624,5208:236,-86,-23,0,0,0.409528 -17625,5208:235,-85,-23,0,0,0.408262 -17626,5208:134,-84,-23,0,0,0.40933 -17627,5208:133,-83,-23,0,0,0.408908 -17628,5208:132,-82,-23,0,0,0.404767 -17629,5208:131,-81,-23,0,0,0.400911 -17630,5208:130,-80,-23,0,0,0.398644 -17631,5207:239,-79,-23,0,0,0.399727 -17632,5207:238,-78,-23,0,0,0.39638 -17633,5207:237,-77,-23,0,0,0.386663 -17634,5207:236,-76,-23,0,0,0.385591 -17635,5207:235,-75,-23,0,0,0.374986 -17636,5207:134,-74,-23,0,0,0.367575 -17637,5207:133,-73,-23,0,0,0.360297 -17638,5207:132,-72,-23,0,0,0.35238 -17639,5205:130,-50,-23,0,0,0.529826 -17640,5204:239,-49,-23,0,0,0.564105 -17641,5204:238,-48,-23,0,0,0.582876 -17642,5204:237,-47,-23,0,0,0.530261 -17643,5204:236,-46,-23,0,0,0.535836 -17644,5204:235,-45,-23,0,0,0.509183 -17645,5204:134,-44,-23,0,0,0.504201 -17646,5204:133,-43,-23,0,0,0.494595 -17647,5204:132,-42,-23,0,0,0.493259 -17648,5204:131,-41,-23,0,0,0.50492 -17649,5204:130,-40,-23,0,0,0.50379 -17650,5203:239,-39,-23,0,0,0.492746 -17651,5203:238,-38,-23,0,0,0.496187 -17652,5203:237,-37,-23,0,0,0.484762 -17653,5203:236,-36,-23,0,0,0.476401 -17654,5203:235,-35,-23,0,0,0.472891 -17655,5203:134,-34,-23,0,0,0.472866 -17656,5203:133,-33,-23,0,0,0.467312 -17657,5203:132,-32,-23,0,0,0.470305 -17658,5203:131,-31,-23,0,0,0.474146 -17659,5203:130,-30,-23,0,0,0.469895 -17660,5202:239,-29,-23,0,0,0.471022 -17661,5202:238,-28,-23,0,0,0.481119 -17662,5202:237,-27,-23,0,0,0.46964 -17663,5202:236,-26,-23,0,0,0.466161 -17664,5202:235,-25,-23,0,0,0.463196 -17665,5202:134,-24,-23,0,0,0.469307 -17666,5202:133,-23,-23,0,0,0.468514 -17667,5202:132,-22,-23,0,0,0.46611 -17668,5202:131,-21,-23,0,0,0.460081 -17669,5202:130,-20,-23,0,0,0.458066 -17670,5201:239,-19,-23,0,0,0.450984 -17671,5201:238,-18,-23,0,0,0.450526 -17672,5201:237,-17,-23,0,0,0.452155 -17673,5201:236,-16,-23,0,0,0.449204 -17674,5201:235,-15,-23,0,0,0.450145 -17675,5201:134,-14,-23,0,0,0.441667 -17676,5201:133,-13,-23,0,0,0.441919 -17677,5201:132,-12,-23,0,0,0.456765 -17678,5201:131,-11,-23,0,0,0.465394 -17679,5201:130,-10,-23,0,0,0.459162 -17680,5200:239,-9,-23,0,0,0.456153 -17681,5200:238,-8,-23,0,0,0.454879 -17682,5200:237,-7,-23,0,0,0.451926 -17683,5200:236,-6,-23,0,0,0.449788 -17684,5200:235,-5,-23,0,0,0.448086 -17685,5200:134,-4,-23,0,0,0.447527 -17686,5200:133,-3,-23,0,0,0.449661 -17687,5200:132,-2,-23,0,0,0.446003 -17688,5200:131,-1,-23,0,0,0.437869 -17689,3200:131,0,-23,0,0,0.433373 -17690,3200:131,1,-23,0,0,0.429442 -17691,3200:132,2,-23,0,0,0.422232 -17692,3200:133,3,-23,0,0,0.424013 -17693,3200:134,4,-23,0,0,0.425167 -17694,3200:235,5,-23,0,0,0.419477 -17695,3200:236,6,-23,0,0,0.423837 -17696,3200:237,7,-23,0,0,0.423461 -17697,3200:238,8,-23,0,0,0.423461 -17698,3200:239,9,-23,0,0,0.426046 -17699,3201:130,10,-23,0,0,0.423109 -17700,3201:131,11,-23,0,0,0.427278 -17701,3201:132,12,-23,0,0,0.431129 -17702,3201:133,13,-23,0,0,0.427303 -17703,3201:134,14,-23,0,0,0.437566 -17704,3201:235,15,-23,0,0,0.442046 -17705,3201:236,16,-23,0,0,0.442427 -17706,3203:131,31,-23,0,0,0.567538 -17707,3203:132,32,-23,0,0,0.575313 -17708,3203:133,33,-23,0,0,0.557855 -17709,3203:134,34,-23,0,0,0.531873 -17710,3203:235,35,-23,0,0,0.531873 -17711,3203:236,36,-23,0,0,0.542728 -17712,3203:237,37,-23,0,0,0.524832 -17713,3203:238,38,-23,0,0,0.513932 -17714,3203:239,39,-23,0,0,0.522653 -17715,3204:130,40,-23,0,0,0.526293 -17716,3204:131,41,-23,0,0,0.521808 -17717,3204:132,42,-23,0,0,0.521782 -17718,3204:133,43,-23,0,0,0.514702 -17719,3204:134,44,-23,0,0,0.484736 -17720,3204:235,45,-23,0,0,0.470663 -17721,3204:236,46,-23,0,0,0.474838 -17722,3204:237,47,-23,0,0,0.491154 -17723,3204:238,48,-23,0,0,0.489408 -17724,3204:239,49,-23,0,0,0.480759 -17725,3205:130,50,-23,0,0,0.491462 -17726,3205:131,51,-23,0,0,0.478426 -17727,3205:132,52,-23,0,0,0.472968 -17728,3205:133,53,-23,0,0,0.466468 -17729,3205:134,54,-23,0,0,0.465061 -17730,3205:235,55,-23,0,0,0.467644 -17731,3205:236,56,-23,0,0,0.474479 -17732,3205:237,57,-23,0,0,0.469666 -17733,3205:238,58,-23,0,0,0.468668 -17734,3205:239,59,-23,0,0,0.472353 -17735,3206:130,60,-23,0,0,0.473608 -17736,3206:131,61,-23,0,0,0.473506 -17737,3206:132,62,-23,0,0,0.47138 -17738,3206:133,63,-23,0,0,0.47266 -17739,3206:134,64,-23,0,0,0.473634 -17740,3206:235,65,-23,0,0,0.471304 -17741,3206:236,66,-23,0,0,0.469921 -17742,3206:237,67,-23,0,0,0.473941 -17743,3206:238,68,-23,0,0,0.483582 -17744,3206:239,69,-23,0,0,0.478554 -17745,3207:130,70,-23,0,0,0.482248 -17746,3207:131,71,-23,0,0,0.48294 -17747,3207:132,72,-23,0,0,0.485429 -17748,3207:134,74,-23,0,0,0.487379 -17749,3207:235,75,-23,0,0,0.483068 -17750,3207:236,76,-23,0,0,0.486481 -17751,3207:237,77,-23,0,0,0.483299 -17752,3207:238,78,-23,0,0,0.478118 -17753,3207:239,79,-23,0,0,0.488612 -17754,3208:130,80,-23,0,0,0.485326 -17755,3208:131,81,-23,0,0,0.480914 -17756,3208:132,82,-23,0,0,0.469742 -17757,3208:133,83,-23,0,0,0.467797 -17758,3208:134,84,-23,0,0,0.465828 -17759,3208:235,85,-23,0,0,0.469563 -17760,3208:236,86,-23,0,0,0.456765 -17761,3208:237,87,-23,0,0,0.449916 -17762,3208:238,88,-23,0,0,0.449967 -17763,3208:239,89,-23,0,0,0.440754 -17764,3209:130,90,-23,0,0,0.4336 -17765,3209:131,91,-23,0,0,0.435796 -17766,3209:132,92,-23,0,0,0.434155 -17767,3209:133,93,-23,0,0,0.431179 -17768,3209:134,94,-23,0,0,0.434079 -17769,3209:235,95,-23,0,0,0.425946 -17770,3209:236,96,-23,0,0,0.420228 -17771,3209:237,97,-23,0,0,0.412389 -17772,3209:238,98,-23,0,0,0.416503 -17773,3209:239,99,-23,0,0,0.408983 -17774,3210:130,100,-23,0,0,0.420904 -17775,3210:131,101,-23,0,0,0.40727 -17776,3210:132,102,-23,0,0,0.408238 -17777,3210:133,103,-23,0,0,0.41199 -17778,3210:134,104,-23,0,0,0.427177 -17779,3210:235,105,-23,0,0,0.408361 -17780,3210:236,106,-23,0,0,0.421731 -17781,3210:237,107,-23,0,0,0.415679 -17782,3210:238,108,-23,0,0,0.420078 -17783,3210:239,109,-23,0,0,0.429265 -17784,3211:130,110,-23,0,0,0.441717 -17785,3211:131,111,-23,0,0,0.457862 -17786,3211:132,112,-23,0,0,0.45251 -17787,3211:133,113,-23,0,0,0.467184 -17788,3211:134,114,-23,0,0,0.491308 -17789,3211:235,115,-23,0,0,0.490538 -17790,3215:134,154,-23,0,0,0.576066 -17791,3215:235,155,-23,0,0,0.568874 -17792,3215:236,156,-23,0,0,0.541249 -17793,3215:237,157,-23,0,0,0.539769 -17794,3215:238,158,-23,0,0,0.534763 -17795,3215:239,159,-23,0,0,0.520295 -17796,3216:130,160,-23,0,0,0.515318 -17797,3216:131,161,-23,0,0,0.511802 -17798,3216:132,162,-23,0,0,0.51021 -17799,3216:133,163,-23,0,0,0.511468 -17800,3216:134,164,-23,0,0,0.508798 -17801,3216:235,165,-23,0,0,0.506821 -17802,3216:236,166,-23,0,0,0.493798 -17803,3216:237,167,-23,0,0,0.470945 -17804,3216:238,168,-23,0,0,0.466468 -17805,3216:239,169,-23,0,0,0.464933 -17806,3217:130,170,-23,0,0,0.462864 -17807,3217:131,171,-23,0,0,0.462481 -17808,3217:132,172,-23,0,0,0.464065 -17809,3217:133,173,-23,0,0,0.46432 -17810,3217:134,174,-23,0,0,0.466877 -17811,3217:235,175,-23,0,0,0.462736 -17812,3217:236,176,-23,0,0,0.462558 -17813,3217:237,177,-23,0,0,0.471534 -17814,3217:238,178,-23,0,0,0.470177 -17815,3217:239,179,-23,0,0,0.469666 -17816,3218:130,180,-23,0,0,0.465547 -17817,5218:120,-180,-22,0,0,0.482812 -17818,5217:229,-179,-22,0,0,0.492746 -17819,5217:228,-178,-22,0,0,0.486969 -17820,5217:227,-177,-22,0,0,0.481683 -17821,5217:226,-176,-22,0,0,0.478426 -17822,5217:225,-175,-22,0,0,0.479502 -17823,5217:124,-174,-22,0,0,0.485532 -17824,5217:123,-173,-22,0,0,0.487072 -17825,5217:122,-172,-22,0,0,0.482427 -17826,5217:121,-171,-22,0,0,0.492746 -17827,5217:120,-170,-22,0,0,0.480169 -17828,5216:229,-169,-22,0,0,0.476247 -17829,5216:228,-168,-22,0,0,0.478682 -17830,5216:227,-167,-22,0,0,0.473557 -17831,5216:226,-166,-22,0,0,0.472584 -17832,5216:225,-165,-22,0,0,0.468488 -17833,5216:124,-164,-22,0,0,0.47512 -17834,5216:123,-163,-22,0,0,0.470356 -17835,5216:122,-162,-22,0,0,0.47028 -17836,5216:121,-161,-22,0,0,0.469205 -17837,5216:120,-160,-22,0,0,0.47412 -17838,5215:229,-159,-22,0,0,0.481195 -17839,5215:228,-158,-22,0,0,0.481811 -17840,5215:227,-157,-22,0,0,0.479939 -17841,5215:226,-156,-22,0,0,0.480605 -17842,5215:225,-155,-22,0,0,0.488381 -17843,5215:124,-154,-22,0,0,0.49159 -17844,5215:123,-153,-22,0,0,0.490794 -17845,5215:122,-152,-22,0,0,0.487893 -17846,5215:121,-151,-22,0,0,0.493002 -17847,5215:120,-150,-22,0,0,0.500913 -17848,5214:229,-149,-22,0,0,0.49367 -17849,5214:228,-148,-22,0,0,0.493748 -17850,5214:227,-147,-22,0,0,0.490024 -17851,5214:226,-146,-22,0,0,0.490512 -17852,5214:225,-145,-22,0,0,0.491873 -17853,5214:124,-144,-22,0,0,0.492181 -17854,5214:123,-143,-22,0,0,0.485172 -17855,5214:122,-142,-22,0,0,0.481631 -17856,5214:121,-141,-22,0,0,0.48987 -17857,5214:120,-140,-22,0,0,0.480349 -17858,5213:229,-139,-22,0,0,0.487765 -17859,5213:228,-138,-22,0,0,0.485044 -17860,5213:227,-137,-22,0,0,0.476298 -17861,5213:226,-136,-22,0,0,0.477708 -17862,5213:225,-135,-22,0,0,0.469153 -17863,5213:124,-134,-22,0,0,0.470561 -17864,5213:123,-133,-22,0,0,0.478118 -17865,5213:122,-132,-22,0,0,0.475043 -17866,5213:121,-131,-22,0,0,0.491795 -17867,5213:120,-130,-22,0,0,0.496136 -17868,5212:229,-129,-22,0,0,0.489202 -17869,5212:228,-128,-22,0,0,0.479759 -17870,5212:227,-127,-22,0,0,0.473121 -17871,5212:226,-126,-22,0,0,0.476401 -17872,5212:225,-125,-22,0,0,0.471765 -17873,5212:124,-124,-22,0,0,0.465369 -17874,5212:123,-123,-22,0,0,0.4634 -17875,5212:122,-122,-22,0,0,0.465778 -17876,5212:121,-121,-22,0,0,0.458729 -17877,5212:120,-120,-22,0,0,0.467516 -17878,5211:229,-119,-22,0,0,0.463375 -17879,5211:228,-118,-22,0,0,0.468003 -17880,5211:227,-117,-22,0,0,0.465189 -17881,5211:226,-116,-22,0,0,0.461255 -17882,5211:225,-115,-22,0,0,0.46749 -17883,5211:124,-114,-22,0,0,0.467542 -17884,5211:123,-113,-22,0,0,0.468693 -17885,5211:122,-112,-22,0,0,0.456204 -17886,5211:121,-111,-22,0,0,0.463043 -17887,5211:120,-110,-22,0,0,0.463502 -17888,5210:229,-109,-22,0,0,0.467286 -17889,5210:228,-108,-22,0,0,0.471585 -17890,5210:227,-107,-22,0,0,0.473096 -17891,5210:226,-106,-22,0,0,0.47028 -17892,5210:225,-105,-22,0,0,0.470971 -17893,5210:124,-104,-22,0,0,0.469947 -17894,5210:123,-103,-22,0,0,0.468949 -17895,5210:122,-102,-22,0,0,0.466621 -17896,5210:121,-101,-22,0,0,0.462302 -17897,5210:120,-100,-22,0,0,0.45975 -17898,5209:229,-99,-22,0,0,0.454497 -17899,5209:228,-98,-22,0,0,0.455465 -17900,5209:227,-97,-22,0,0,0.453911 -17901,5209:226,-96,-22,0,0,0.448899 -17902,5209:225,-95,-22,0,0,0.447425 -17903,5209:124,-94,-22,0,0,0.444506 -17904,5209:123,-93,-22,0,0,0.439185 -17905,5209:122,-92,-22,0,0,0.43466 -17906,5209:121,-91,-22,0,0,0.429542 -17907,5209:120,-90,-22,0,0,0.425343 -17908,5208:229,-89,-22,0,0,0.421831 -17909,5208:228,-88,-22,0,0,0.420453 -17910,5208:227,-87,-22,0,0,0.417502 -17911,5208:226,-86,-22,0,0,0.414806 -17912,5208:225,-85,-22,0,0,0.416203 -17913,5208:124,-84,-22,0,0,0.414856 -17914,5208:123,-83,-22,0,0,0.412563 -17915,5208:122,-82,-22,0,0,0.411966 -17916,5208:121,-81,-22,0,0,0.411319 -17917,5208:120,-80,-22,0,0,0.406501 -17918,5207:229,-79,-22,0,0,0.401232 -17919,5207:228,-78,-22,0,0,0.399308 -17920,5207:227,-77,-22,0,0,0.397486 -17921,5207:226,-76,-22,0,0,0.388053 -17922,5207:225,-75,-22,0,0,0.384083 -17923,5207:124,-74,-22,0,0,0.372101 -17924,5207:123,-73,-22,0,0,0.358831 -17925,5207:122,-72,-22,0,0,0.364786 -17926,5204:229,-49,-22,0,0,0.540841 -17927,5204:228,-48,-22,0,0,0.575514 -17928,5204:227,-47,-22,0,0,0.571845 -17929,5204:226,-46,-22,0,0,0.541657 -17930,5204:225,-45,-22,0,0,0.529749 -17931,5204:124,-44,-22,0,0,0.528085 -17932,5204:123,-43,-22,0,0,0.53241 -17933,5204:122,-42,-22,0,0,0.530184 -17934,5204:121,-41,-22,0,0,0.531949 -17935,5204:120,-40,-22,0,0,0.516806 -17936,5203:229,-39,-22,0,0,0.523833 -17937,5203:228,-38,-22,0,0,0.517678 -17938,5203:227,-37,-22,0,0,0.507823 -17939,5203:226,-36,-22,0,0,0.502018 -17940,5203:225,-35,-22,0,0,0.494672 -17941,5203:124,-34,-22,0,0,0.492489 -17942,5203:123,-33,-22,0,0,0.491976 -17943,5203:122,-32,-22,0,0,0.500477 -17944,5203:121,-31,-22,0,0,0.50415 -17945,5203:120,-30,-22,0,0,0.502429 -17946,5202:229,-29,-22,0,0,0.506281 -17947,5202:228,-28,-22,0,0,0.509902 -17948,5202:227,-27,-22,0,0,0.50492 -17949,5202:226,-26,-22,0,0,0.502788 -17950,5202:225,-25,-22,0,0,0.502762 -17951,5202:124,-24,-22,0,0,0.500374 -17952,5202:123,-23,-22,0,0,0.497137 -17953,5202:122,-22,-22,0,0,0.487328 -17954,5202:121,-21,-22,0,0,0.481683 -17955,5202:120,-20,-22,0,0,0.476606 -17956,5201:229,-19,-22,0,0,0.482427 -17957,5201:228,-18,-22,0,0,0.483838 -17958,5201:227,-17,-22,0,0,0.478733 -17959,5201:226,-16,-22,0,0,0.480759 -17960,5201:225,-15,-22,0,0,0.479502 -17961,5201:124,-14,-22,0,0,0.482889 -17962,5201:123,-13,-22,0,0,0.480709 -17963,5201:122,-12,-22,0,0,0.483068 -17964,5201:121,-11,-22,0,0,0.47817 -17965,5201:120,-10,-22,0,0,0.479528 -17966,5200:229,-9,-22,0,0,0.483735 -17967,5200:228,-8,-22,0,0,0.483325 -17968,5200:227,-7,-22,0,0,0.48058 -17969,5200:226,-6,-22,0,0,0.477195 -17970,5200:225,-5,-22,0,0,0.472533 -17971,5200:124,-4,-22,0,0,0.466775 -17972,5200:123,-3,-22,0,0,0.463707 -17973,5200:122,-2,-22,0,0,0.461383 -17974,5200:121,-1,-22,0,0,0.452715 -17975,3200:121,0,-22,0,0,0.442933 -17976,3200:121,1,-22,0,0,0.440247 -17977,3200:122,2,-22,0,0,0.446029 -17978,3200:123,3,-22,0,0,0.444074 -17979,3200:124,4,-22,0,0,0.433928 -17980,3200:225,5,-22,0,0,0.437364 -17981,3200:226,6,-22,0,0,0.436125 -17982,3200:227,7,-22,0,0,0.433878 -17983,3200:228,8,-22,0,0,0.433726 -17984,3200:229,9,-22,0,0,0.431734 -17985,3201:120,10,-22,0,0,0.431633 -17986,3201:121,11,-22,0,0,0.434686 -17987,3201:122,12,-22,0,0,0.435266 -17988,3201:123,13,-22,0,0,0.437085 -17989,3201:124,14,-22,0,0,0.436908 -17990,3201:225,15,-22,0,0,0.434433 -17991,3201:226,16,-22,0,0,0.41356 -17992,3203:122,32,-22,0,0,0.572121 -17993,3203:123,33,-22,0,0,0.58395 -17994,3203:124,34,-22,0,0,0.562286 -17995,3203:225,35,-22,0,0,0.550341 -17996,3203:226,36,-22,0,0,0.559224 -17997,3203:227,37,-22,0,0,0.533766 -17998,3203:228,38,-22,0,0,0.538339 -17999,3203:229,39,-22,0,0,0.541988 -18000,3204:120,40,-22,0,0,0.539514 -18001,3204:121,41,-22,0,0,0.539386 -18002,3204:122,42,-22,0,0,0.537956 -18003,3204:123,43,-22,0,0,0.528289 -18004,3204:124,44,-22,0,0,0.532589 -18005,3204:225,45,-22,0,0,0.529749 -18006,3204:226,46,-22,0,0,0.511802 -18007,3204:227,47,-22,0,0,0.520243 -18008,3204:228,48,-22,0,0,0.522936 -18009,3204:229,49,-22,0,0,0.508772 -18010,3205:120,50,-22,0,0,0.518269 -18011,3205:121,51,-22,0,0,0.503738 -18012,3205:122,52,-22,0,0,0.507155 -18013,3205:123,53,-22,0,0,0.499346 -18014,3205:124,54,-22,0,0,0.495134 -18015,3205:225,55,-22,0,0,0.503277 -18016,3205:226,56,-22,0,0,0.505202 -18017,3205:227,57,-22,0,0,0.509851 -18018,3205:228,58,-22,0,0,0.50343 -18019,3205:229,59,-22,0,0,0.503636 -18020,3206:120,60,-22,0,0,0.499654 -18021,3206:121,61,-22,0,0,0.504175 -18022,3206:122,62,-22,0,0,0.505562 -18023,3206:123,63,-22,0,0,0.499115 -18024,3206:124,64,-22,0,0,0.508156 -18025,3206:225,65,-22,0,0,0.500425 -18026,3206:226,66,-22,0,0,0.502352 -18027,3206:227,67,-22,0,0,0.501632 -18028,3206:228,68,-22,0,0,0.50795 -18029,3206:229,69,-22,0,0,0.514933 -18030,3207:120,70,-22,0,0,0.517807 -18031,3207:121,71,-22,0,0,0.510158 -18032,3207:122,72,-22,0,0,0.504329 -18033,3207:124,74,-22,0,0,0.499988 -18034,3207:225,75,-22,0,0,0.506025 -18035,3207:226,76,-22,0,0,0.507386 -18036,3207:227,77,-22,0,0,0.506538 -18037,3207:228,78,-22,0,0,0.502506 -18038,3207:229,79,-22,0,0,0.50212 -18039,3208:120,80,-22,0,0,0.506641 -18040,3208:121,81,-22,0,0,0.494287 -18041,3208:122,82,-22,0,0,0.501915 -18042,3208:123,83,-22,0,0,0.49236 -18043,3208:124,84,-22,0,0,0.488149 -18044,3208:225,85,-22,0,0,0.478247 -18045,3208:226,86,-22,0,0,0.47512 -18046,3208:227,87,-22,0,0,0.467516 -18047,3208:228,88,-22,0,0,0.459724 -18048,3208:229,89,-22,0,0,0.459698 -18049,3209:120,90,-22,0,0,0.461459 -18050,3209:121,91,-22,0,0,0.455899 -18051,3209:122,92,-22,0,0,0.447069 -18052,3209:123,93,-22,0,0,0.446232 -18053,3209:124,94,-22,0,0,0.449814 -18054,3209:225,95,-22,0,0,0.441286 -18055,3209:226,96,-22,0,0,0.431306 -18056,3209:227,97,-22,0,0,0.441312 -18057,3209:228,98,-22,0,0,0.430373 -18058,3209:229,99,-22,0,0,0.437085 -18059,3210:120,100,-22,0,0,0.422959 -18060,3210:121,101,-22,0,0,0.418302 -18061,3210:122,102,-22,0,0,0.42924 -18062,3210:123,103,-22,0,0,0.43509 -18063,3210:124,104,-22,0,0,0.435064 -18064,3210:225,105,-22,0,0,0.428561 -18065,3210:226,106,-22,0,0,0.430071 -18066,3210:227,107,-22,0,0,0.427379 -18067,3210:228,108,-22,0,0,0.435772 -18068,3210:229,109,-22,0,0,0.444632 -18069,3211:120,110,-22,0,0,0.466468 -18070,3211:121,111,-22,0,0,0.471432 -18071,3211:122,112,-22,0,0,0.47389 -18072,3211:123,113,-22,0,0,0.494672 -18073,3211:124,114,-22,0,0,0.509466 -18074,3215:124,154,-22,0,0,0.578473 -18075,3215:225,155,-22,0,0,0.568395 -18076,3215:226,156,-22,0,0,0.552933 -18077,3215:227,157,-22,0,0,0.530005 -18078,3215:228,158,-22,0,0,0.53021 -18079,3215:229,159,-22,0,0,0.523551 -18080,3216:120,160,-22,0,0,0.517063 -18081,3216:121,161,-22,0,0,0.515447 -18082,3216:122,162,-22,0,0,0.515447 -18083,3216:123,163,-22,0,0,0.51519 -18084,3216:124,164,-22,0,0,0.513419 -18085,3216:225,165,-22,0,0,0.514497 -18086,3216:226,166,-22,0,0,0.503508 -18087,3216:227,167,-22,0,0,0.485403 -18088,3216:228,168,-22,0,0,0.477042 -18089,3216:229,169,-22,0,0,0.481811 -18090,3217:120,170,-22,0,0,0.48471 -18091,3217:121,171,-22,0,0,0.488766 -18092,3217:122,172,-22,0,0,0.490281 -18093,3217:123,173,-22,0,0,0.491154 -18094,3217:124,174,-22,0,0,0.488099 -18095,3217:225,175,-22,0,0,0.488099 -18096,3217:226,176,-22,0,0,0.488047 -18097,3217:227,177,-22,0,0,0.483992 -18098,3217:228,178,-22,0,0,0.49236 -18099,3217:229,179,-22,0,0,0.492874 -18100,3218:120,180,-22,0,0,0.482812 -18101,5218:110,-180,-21,0,0,0.495314 -18102,5217:219,-179,-21,0,0,0.497857 -18103,5217:218,-178,-21,0,0,0.495776 -18104,5217:217,-177,-21,0,0,0.497497 -18105,5217:216,-176,-21,0,0,0.500759 -18106,5217:215,-175,-21,0,0,0.503713 -18107,5217:114,-174,-21,0,0,0.490948 -18108,5217:113,-173,-21,0,0,0.49927 -18109,5217:112,-172,-21,0,0,0.495982 -18110,5217:111,-171,-21,0,0,0.494723 -18111,5217:110,-170,-21,0,0,0.495622 -18112,5216:219,-169,-21,0,0,0.487482 -18113,5216:218,-168,-21,0,0,0.500014 -18114,5216:217,-167,-21,0,0,0.495622 -18115,5216:216,-166,-21,0,0,0.485146 -18116,5216:215,-165,-21,0,0,0.487379 -18117,5216:114,-164,-21,0,0,0.482298 -18118,5216:113,-163,-21,0,0,0.481452 -18119,5216:112,-162,-21,0,0,0.487687 -18120,5216:111,-161,-21,0,0,0.490769 -18121,5216:110,-160,-21,0,0,0.492694 -18122,5215:219,-159,-21,0,0,0.502506 -18123,5215:218,-158,-21,0,0,0.494132 -18124,5215:217,-157,-21,0,0,0.500605 -18125,5215:216,-156,-21,0,0,0.499783 -18126,5215:215,-155,-21,0,0,0.500477 -18127,5215:114,-154,-21,0,0,0.508387 -18128,5215:113,-153,-21,0,0,0.512597 -18129,5215:112,-152,-21,0,0,0.514318 -18130,5215:111,-151,-21,0,0,0.515986 -18131,5215:110,-150,-21,0,0,0.513317 -18132,5214:219,-149,-21,0,0,0.513034 -18133,5214:218,-148,-21,0,0,0.520705 -18134,5214:217,-147,-21,0,0,0.515678 -18135,5214:216,-146,-21,0,0,0.512726 -18136,5214:215,-145,-21,0,0,0.508695 -18137,5214:114,-144,-21,0,0,0.515164 -18138,5214:113,-143,-21,0,0,0.506281 -18139,5214:112,-142,-21,0,0,0.509774 -18140,5214:111,-141,-21,0,0,0.505691 -18141,5214:110,-140,-21,0,0,0.503636 -18142,5213:219,-139,-21,0,0,0.500194 -18143,5213:218,-138,-21,0,0,0.500246 -18144,5213:217,-137,-21,0,0,0.496341 -18145,5213:216,-136,-21,0,0,0.496958 -18146,5213:215,-135,-21,0,0,0.498345 -18147,5213:114,-134,-21,0,0,0.503687 -18148,5213:113,-133,-21,0,0,0.506615 -18149,5213:112,-132,-21,0,0,0.503713 -18150,5213:111,-131,-21,0,0,0.495622 -18151,5213:110,-130,-21,0,0,0.511956 -18152,5212:219,-129,-21,0,0,0.496238 -18153,5212:218,-128,-21,0,0,0.506307 -18154,5212:217,-127,-21,0,0,0.495802 -18155,5212:216,-126,-21,0,0,0.49272 -18156,5212:215,-125,-21,0,0,0.488945 -18157,5212:114,-124,-21,0,0,0.481965 -18158,5212:113,-123,-21,0,0,0.477067 -18159,5212:112,-122,-21,0,0,0.480016 -18160,5212:111,-121,-21,0,0,0.475683 -18161,5212:110,-120,-21,0,0,0.482837 -18162,5211:219,-119,-21,0,0,0.478067 -18163,5211:218,-118,-21,0,0,0.481452 -18164,5211:217,-117,-21,0,0,0.479118 -18165,5211:216,-116,-21,0,0,0.48135 -18166,5211:215,-115,-21,0,0,0.484659 -18167,5211:114,-114,-21,0,0,0.487123 -18168,5211:113,-113,-21,0,0,0.48507 -18169,5211:112,-112,-21,0,0,0.479118 -18170,5211:111,-111,-21,0,0,0.482375 -18171,5211:110,-110,-21,0,0,0.482991 -18172,5210:219,-109,-21,0,0,0.48471 -18173,5210:218,-108,-21,0,0,0.485839 -18174,5210:217,-107,-21,0,0,0.489202 -18175,5210:216,-106,-21,0,0,0.485686 -18176,5210:215,-105,-21,0,0,0.485121 -18177,5210:114,-104,-21,0,0,0.486892 -18178,5210:113,-103,-21,0,0,0.484223 -18179,5210:112,-102,-21,0,0,0.479067 -18180,5210:111,-101,-21,0,0,0.475632 -18181,5210:110,-100,-21,0,0,0.474428 -18182,5209:219,-99,-21,0,0,0.472763 -18183,5209:218,-98,-21,0,0,0.471176 -18184,5209:217,-97,-21,0,0,0.465624 -18185,5209:216,-96,-21,0,0,0.458397 -18186,5209:215,-95,-21,0,0,0.455312 -18187,5209:114,-94,-21,0,0,0.451264 -18188,5209:113,-93,-21,0,0,0.446384 -18189,5209:112,-92,-21,0,0,0.440146 -18190,5209:111,-91,-21,0,0,0.434862 -18191,5209:110,-90,-21,0,0,0.429794 -18192,5208:219,-89,-21,0,0,0.426298 -18193,5208:218,-88,-21,0,0,0.424288 -18194,5208:217,-87,-21,0,0,0.422332 -18195,5208:216,-86,-21,0,0,0.420353 -18196,5208:215,-85,-21,0,0,0.418752 -18197,5208:114,-84,-21,0,0,0.419403 -18198,5208:113,-83,-21,0,0,0.419227 -18199,5208:112,-82,-21,0,0,0.418352 -18200,5208:111,-81,-21,0,0,0.415081 -18201,5208:110,-80,-21,0,0,0.40608 -18202,5207:219,-79,-21,0,0,0.406873 -18203,5207:218,-78,-21,0,0,0.404792 -18204,5207:217,-77,-21,0,0,0.399161 -18205,5207:216,-76,-21,0,0,0.394709 -18206,5207:215,-75,-21,0,0,0.384594 -18207,5207:114,-74,-21,0,0,0.377566 -18208,5207:113,-73,-21,0,0,0.367767 -18209,5207:112,-72,-21,0,0,0.382408 -18210,5207:111,-71,-21,0,0,0.346727 -18211,5204:218,-48,-21,0,0,0.580876 -18212,5204:217,-47,-21,0,0,0.594889 -18213,5204:216,-46,-21,0,0,0.566605 -18214,5204:215,-45,-21,0,0,0.564737 -18215,5204:114,-44,-21,0,0,0.558742 -18216,5204:113,-43,-21,0,0,0.561729 -18217,5204:112,-42,-21,0,0,0.551816 -18218,5204:111,-41,-21,0,0,0.547951 -18219,5204:110,-40,-21,0,0,0.549884 -18220,5203:219,-39,-21,0,0,0.548612 -18221,5203:218,-38,-21,0,0,0.543544 -18222,5203:217,-37,-21,0,0,0.543697 -18223,5203:216,-36,-21,0,0,0.535095 -18224,5203:215,-35,-21,0,0,0.522731 -18225,5203:114,-34,-21,0,0,0.526523 -18226,5203:113,-33,-21,0,0,0.532512 -18227,5203:112,-32,-21,0,0,0.53535 -18228,5203:111,-31,-21,0,0,0.530286 -18229,5203:110,-30,-21,0,0,0.532845 -18230,5202:219,-29,-21,0,0,0.533996 -18231,5202:218,-28,-21,0,0,0.531899 -18232,5202:217,-27,-21,0,0,0.532027 -18233,5202:216,-26,-21,0,0,0.53241 -18234,5202:215,-25,-21,0,0,0.527342 -18235,5202:114,-24,-21,0,0,0.521423 -18236,5202:113,-23,-21,0,0,0.514625 -18237,5202:112,-22,-21,0,0,0.508901 -18238,5202:111,-21,-21,0,0,0.504355 -18239,5202:110,-20,-21,0,0,0.502891 -18240,5201:219,-19,-21,0,0,0.506975 -18241,5201:218,-18,-21,0,0,0.511494 -18242,5201:217,-17,-21,0,0,0.510184 -18243,5201:216,-16,-21,0,0,0.515216 -18244,5201:215,-15,-21,0,0,0.513137 -18245,5201:114,-14,-21,0,0,0.514549 -18246,5201:113,-13,-21,0,0,0.511057 -18247,5201:112,-12,-21,0,0,0.506846 -18248,5201:111,-11,-21,0,0,0.508284 -18249,5201:110,-10,-21,0,0,0.508284 -18250,5200:219,-9,-21,0,0,0.50415 -18251,5200:218,-8,-21,0,0,0.500117 -18252,5200:217,-7,-21,0,0,0.496162 -18253,5200:216,-6,-21,0,0,0.492668 -18254,5200:215,-5,-21,0,0,0.489536 -18255,5200:114,-4,-21,0,0,0.486712 -18256,5200:113,-3,-21,0,0,0.482786 -18257,5200:112,-2,-21,0,0,0.47576 -18258,5200:111,-1,-21,0,0,0.471099 -18259,3200:111,0,-21,0,0,0.471559 -18260,3200:111,1,-21,0,0,0.469793 -18261,3200:112,2,-21,0,0,0.466545 -18262,3200:113,3,-21,0,0,0.456408 -18263,3200:114,4,-21,0,0,0.449687 -18264,3200:215,5,-21,0,0,0.446638 -18265,3200:216,6,-21,0,0,0.443237 -18266,3200:217,7,-21,0,0,0.440856 -18267,3200:218,8,-21,0,0,0.439894 -18268,3200:219,9,-21,0,0,0.437085 -18269,3201:110,10,-21,0,0,0.436327 -18270,3201:111,11,-21,0,0,0.43921 -18271,3201:112,12,-21,0,0,0.439463 -18272,3201:113,13,-21,0,0,0.441438 -18273,3201:114,14,-21,0,0,0.437085 -18274,3201:215,15,-21,0,0,0.39633 -18275,3203:113,33,-21,0,0,0.589132 -18276,3203:114,34,-21,0,0,0.59112 -18277,3203:215,35,-21,0,0,0.587763 -18278,3203:216,36,-21,0,0,0.556689 -18279,3203:217,37,-21,0,0,0.551994 -18280,3203:218,38,-21,0,0,0.547747 -18281,3203:219,39,-21,0,0,0.550443 -18282,3204:110,40,-21,0,0,0.553543 -18283,3204:111,41,-21,0,0,0.56365 -18284,3204:112,42,-21,0,0,0.566428 -18285,3204:113,43,-21,0,0,0.568042 -18286,3204:114,44,-21,0,0,0.568521 -18287,3204:215,45,-21,0,0,0.552705 -18288,3204:216,46,-21,0,0,0.545404 -18289,3204:217,47,-21,0,0,0.542167 -18290,3204:218,48,-21,0,0,0.544614 -18291,3204:219,49,-21,0,0,0.536014 -18292,3205:110,50,-21,0,0,0.536398 -18293,3205:111,51,-21,0,0,0.54181 -18294,3205:112,52,-21,0,0,0.531029 -18295,3205:113,53,-21,0,0,0.534277 -18296,3205:114,54,-21,0,0,0.534993 -18297,3205:215,55,-21,0,0,0.53131 -18298,3205:216,56,-21,0,0,0.527803 -18299,3205:217,57,-21,0,0,0.529211 -18300,3205:218,58,-21,0,0,0.533254 -18301,3205:219,59,-21,0,0,0.53218 -18302,3206:110,60,-21,0,0,0.524909 -18303,3206:111,61,-21,0,0,0.52496 -18304,3206:112,62,-21,0,0,0.532231 -18305,3206:113,63,-21,0,0,0.51991 -18306,3206:114,64,-21,0,0,0.527188 -18307,3206:215,65,-21,0,0,0.530466 -18308,3206:216,66,-21,0,0,0.523295 -18309,3206:217,67,-21,0,0,0.529365 -18310,3206:218,68,-21,0,0,0.533663 -18311,3206:219,69,-21,0,0,0.531847 -18312,3207:110,70,-21,0,0,0.522423 -18313,3207:111,71,-21,0,0,0.523115 -18314,3207:112,72,-21,0,0,0.5266 -18315,3207:114,74,-21,0,0,0.517473 -18316,3207:215,75,-21,0,0,0.518885 -18317,3207:216,76,-21,0,0,0.524038 -18318,3207:217,77,-21,0,0,0.522372 -18319,3207:218,78,-21,0,0,0.515216 -18320,3207:219,79,-21,0,0,0.518218 -18321,3208:110,80,-21,0,0,0.516832 -18322,3208:111,81,-21,0,0,0.508824 -18323,3208:112,82,-21,0,0,0.508952 -18649,3216:206,166,-20,0,0,0.53264 -18324,3208:113,83,-21,0,0,0.496367 -18325,3208:114,84,-21,0,0,0.50415 -18326,3208:215,85,-21,0,0,0.497985 -18327,3208:216,86,-21,0,0,0.49367 -18328,3208:217,87,-21,0,0,0.487534 -18329,3208:218,88,-21,0,0,0.481426 -18330,3208:219,89,-21,0,0,0.481016 -18331,3209:110,90,-21,0,0,0.479888 -18332,3209:111,91,-21,0,0,0.469486 -18333,3209:112,92,-21,0,0,0.463707 -18334,3209:113,93,-21,0,0,0.460515 -18335,3209:114,94,-21,0,0,0.460694 -18336,3209:215,95,-21,0,0,0.460106 -18337,3209:216,96,-21,0,0,0.453733 -18338,3209:217,97,-21,0,0,0.453962 -18339,3209:218,98,-21,0,0,0.448924 -18340,3209:219,99,-21,0,0,0.449077 -18341,3210:110,100,-21,0,0,0.464346 -18342,3210:111,101,-21,0,0,0.45437 -18343,3210:112,102,-21,0,0,0.443136 -18344,3210:113,103,-21,0,0,0.441387 -18345,3210:114,104,-21,0,0,0.444354 -18346,3210:215,105,-21,0,0,0.466595 -18347,3210:216,106,-21,0,0,0.470791 -18348,3210:217,107,-21,0,0,0.459086 -18349,3210:218,108,-21,0,0,0.472968 -18350,3210:219,109,-21,0,0,0.465675 -18351,3211:110,110,-21,0,0,0.472891 -18352,3211:111,111,-21,0,0,0.476504 -18353,3211:112,112,-21,0,0,0.519988 -18354,3211:113,113,-21,0,0,0.533254 -18355,3211:114,114,-21,0,0,0.518551 -18356,3215:114,154,-21,0,0,0.586244 -18357,3215:215,155,-21,0,0,0.563929 -18358,3215:216,156,-21,0,0,0.54232 -18359,3215:217,157,-21,0,0,0.534583 -18360,3215:218,158,-21,0,0,0.53154 -18361,3215:219,159,-21,0,0,0.527829 -18362,3216:110,160,-21,0,0,0.523935 -18363,3216:111,161,-21,0,0,0.521628 -18364,3216:112,162,-21,0,0,0.527803 -18365,3216:113,163,-21,0,0,0.527471 -18366,3216:114,164,-21,0,0,0.523269 -18367,3216:215,165,-21,0,0,0.519012 -18368,3216:216,166,-21,0,0,0.513624 -18369,3216:217,167,-21,0,0,0.508541 -18370,3216:218,168,-21,0,0,0.49891 -18371,3216:219,169,-21,0,0,0.508438 -18372,3217:110,170,-21,0,0,0.504227 -18373,3217:111,171,-21,0,0,0.500348 -18374,3217:112,172,-21,0,0,0.50397 -18375,3217:113,173,-21,0,0,0.508464 -18376,3217:114,174,-21,0,0,0.506127 -18377,3217:215,175,-21,0,0,0.503379 -18378,3217:216,176,-21,0,0,0.505126 -18379,3217:217,177,-21,0,0,0.505049 -18380,3217:218,178,-21,0,0,0.502557 -18381,3217:219,179,-21,0,0,0.496393 -18382,3218:110,180,-21,0,0,0.495314 -18383,5218:100,-180,-20,0,0,0.514805 -18384,5217:209,-179,-20,0,0,0.512213 -18385,5217:208,-178,-20,0,0,0.512213 -18386,5217:207,-177,-20,0,0,0.510184 -18387,5217:206,-176,-20,0,0,0.50397 -18388,5217:205,-175,-20,0,0,0.514625 -18389,5217:104,-174,-20,0,0,0.509388 -18390,5217:103,-173,-20,0,0,0.506846 -18391,5217:102,-172,-20,0,0,0.508593 -18392,5217:101,-171,-20,0,0,0.511596 -18393,5217:100,-170,-20,0,0,0.503611 -18394,5216:209,-169,-20,0,0,0.508028 -18395,5216:208,-168,-20,0,0,0.506512 -18396,5216:207,-167,-20,0,0,0.510005 -18397,5216:206,-166,-20,0,0,0.499012 -18398,5216:205,-165,-20,0,0,0.508515 -18399,5216:104,-164,-20,0,0,0.499988 -18400,5216:103,-163,-20,0,0,0.510878 -18401,5216:102,-162,-20,0,0,0.512213 -18402,5216:101,-161,-20,0,0,0.509363 -18403,5216:100,-160,-20,0,0,0.504715 -18404,5215:209,-159,-20,0,0,0.512726 -18405,5215:208,-158,-20,0,0,0.519731 -18406,5215:207,-157,-20,0,0,0.523115 -18407,5215:206,-156,-20,0,0,0.522448 -18408,5215:205,-155,-20,0,0,0.523448 -18409,5215:104,-154,-20,0,0,0.525908 -18410,5215:103,-153,-20,0,0,0.526548 -18411,5215:102,-152,-20,0,0,0.529544 -18412,5215:101,-151,-20,0,0,0.527803 -18413,5215:100,-150,-20,0,0,0.527957 -18414,5214:209,-149,-20,0,0,0.534558 -18415,5214:208,-148,-20,0,0,0.533203 -18416,5214:207,-147,-20,0,0,0.534149 -18417,5214:206,-146,-20,0,0,0.52852 -18418,5214:205,-145,-20,0,0,0.531847 -18419,5214:104,-144,-20,0,0,0.530414 -18420,5214:103,-143,-20,0,0,0.526241 -18421,5214:102,-142,-20,0,0,0.525882 -18422,5214:101,-141,-20,0,0,0.523397 -18423,5214:100,-140,-20,0,0,0.520628 -18424,5213:209,-139,-20,0,0,0.515062 -18425,5213:208,-138,-20,0,0,0.523628 -18426,5213:207,-137,-20,0,0,0.525652 -18427,5213:206,-136,-20,0,0,0.521398 -18428,5213:205,-135,-20,0,0,0.52209 -18429,5213:104,-134,-20,0,0,0.521962 -18430,5213:103,-133,-20,0,0,0.521936 -18431,5213:102,-132,-20,0,0,0.527086 -18432,5213:101,-131,-20,0,0,0.524064 -18433,5213:100,-130,-20,0,0,0.52232 -18434,5212:209,-129,-20,0,0,0.516601 -18435,5212:208,-128,-20,0,0,0.509106 -18436,5212:207,-127,-20,0,0,0.506435 -18437,5212:206,-126,-20,0,0,0.501427 -18438,5212:205,-125,-20,0,0,0.497985 -18439,5212:104,-124,-20,0,0,0.501787 -18440,5212:103,-123,-20,0,0,0.495648 -18441,5212:102,-122,-20,0,0,0.492849 -18442,5212:101,-121,-20,0,0,0.498088 -18443,5212:100,-120,-20,0,0,0.495031 -18444,5211:209,-119,-20,0,0,0.499526 -18445,5211:208,-118,-20,0,0,0.500811 -18446,5211:207,-117,-20,0,0,0.497754 -18447,5211:206,-116,-20,0,0,0.499809 -18448,5211:205,-115,-20,0,0,0.501453 -18449,5211:104,-114,-20,0,0,0.50397 -18450,5211:103,-113,-20,0,0,0.501863 -18451,5211:102,-112,-20,0,0,0.500888 -18452,5211:101,-111,-20,0,0,0.504971 -18453,5211:100,-110,-20,0,0,0.50492 -18454,5210:209,-109,-20,0,0,0.505614 -18455,5210:208,-108,-20,0,0,0.505614 -18456,5210:207,-107,-20,0,0,0.501581 -18457,5210:206,-106,-20,0,0,0.497574 -18458,5210:205,-105,-20,0,0,0.499937 -18459,5210:104,-104,-20,0,0,0.504201 -18460,5210:103,-103,-20,0,0,0.50266 -18461,5210:102,-102,-20,0,0,0.494621 -18462,5210:101,-101,-20,0,0,0.490126 -18463,5210:100,-100,-20,0,0,0.490717 -18464,5209:209,-99,-20,0,0,0.488406 -18465,5209:208,-98,-20,0,0,0.484428 -18466,5209:207,-97,-20,0,0,0.478144 -18467,5209:206,-96,-20,0,0,0.470151 -18468,5209:205,-95,-20,0,0,0.465803 -18469,5209:104,-94,-20,0,0,0.46174 -18470,5209:103,-93,-20,0,0,0.45358 -18471,5209:102,-92,-20,0,0,0.446181 -18472,5209:101,-91,-20,0,0,0.441691 -18473,5209:100,-90,-20,0,0,0.43711 -18474,5208:209,-89,-20,0,0,0.431784 -18475,5208:208,-88,-20,0,0,0.429039 -18476,5208:207,-87,-20,0,0,0.426172 -18477,5208:206,-86,-20,0,0,0.423209 -18478,5208:205,-85,-20,0,0,0.421605 -18479,5208:104,-84,-20,0,0,0.423837 -18480,5208:103,-83,-20,0,0,0.422683 -18481,5208:102,-82,-20,0,0,0.418152 -18482,5208:101,-81,-20,0,0,0.410772 -18483,5208:100,-80,-20,0,0,0.409131 -18484,5207:209,-79,-20,0,0,0.408014 -18485,5207:208,-78,-20,0,0,0.403802 -18486,5207:207,-77,-20,0,0,0.39385 -18487,5207:206,-76,-20,0,0,0.386687 -18488,5207:205,-75,-20,0,0,0.382941 -18489,5207:104,-74,-20,0,0,0.384691 -18490,5207:103,-73,-20,0,0,0.386054 -18491,5207:102,-72,-20,0,0,0.394808 -18492,5207:101,-71,-20,0,0,0.38299 -18493,5204:208,-48,-20,0,0,0.591046 -18494,5204:207,-47,-20,0,0,0.581576 -18495,5204:206,-46,-20,0,0,0.601015 -18496,5204:205,-45,-20,0,0,0.588858 -18497,5204:104,-44,-20,0,0,0.590996 -18498,5204:103,-43,-20,0,0,0.593948 -18499,5204:102,-42,-20,0,0,0.578272 -18500,5204:101,-41,-20,0,0,0.577144 -18501,5204:100,-40,-20,0,0,0.579074 -18502,5203:209,-39,-20,0,0,0.577395 -18503,5203:208,-38,-20,0,0,0.57594 -18504,5203:207,-37,-20,0,0,0.578222 -18505,5203:206,-36,-20,0,0,0.571845 -18506,5203:205,-35,-20,0,0,0.55859 -18507,5203:104,-34,-20,0,0,0.561856 -18508,5203:103,-33,-20,0,0,0.560894 -18509,5203:102,-32,-20,0,0,0.558818 -18510,5203:101,-31,-20,0,0,0.55466 -18511,5203:100,-30,-20,0,0,0.553848 -18512,5202:209,-29,-20,0,0,0.556943 -18513,5202:208,-28,-20,0,0,0.554812 -18514,5202:207,-27,-20,0,0,0.550672 -18515,5202:206,-26,-20,0,0,0.547543 -18516,5202:205,-25,-20,0,0,0.542855 -18517,5202:104,-24,-20,0,0,0.539998 -18518,5202:103,-23,-20,0,0,0.537164 -18519,5202:102,-22,-20,0,0,0.5365 -18520,5202:101,-21,-20,0,0,0.535452 -18521,5202:100,-20,-20,0,0,0.537062 -18522,5201:209,-19,-20,0,0,0.535555 -18523,5201:208,-18,-20,0,0,0.535069 -18524,5201:207,-17,-20,0,0,0.534685 -18525,5201:206,-16,-20,0,0,0.534021 -18526,5201:205,-15,-20,0,0,0.533126 -18527,5201:104,-14,-20,0,0,0.533331 -18528,5201:103,-13,-20,0,0,0.527982 -18529,5201:102,-12,-20,0,0,0.526958 -18530,5201:101,-11,-20,0,0,0.526933 -18531,5201:100,-10,-20,0,0,0.523781 -18532,5200:209,-9,-20,0,0,0.518756 -18533,5200:208,-8,-20,0,0,0.51478 -18534,5200:207,-7,-20,0,0,0.513445 -18535,5200:206,-6,-20,0,0,0.509928 -18536,5200:205,-5,-20,0,0,0.506461 -18537,5200:104,-4,-20,0,0,0.502634 -18538,5200:103,-3,-20,0,0,0.497728 -18539,5200:102,-2,-20,0,0,0.491821 -20488,3107:131,71,-13,0,0,0.60728 -18540,5200:101,-1,-20,0,0,0.487277 -18541,3200:101,0,-20,0,0,0.484813 -18542,3200:101,1,-20,0,0,0.481862 -18543,3200:102,2,-20,0,0,0.472507 -18544,3200:103,3,-20,0,0,0.46335 -18545,3200:104,4,-20,0,0,0.458066 -18546,3200:205,5,-20,0,0,0.453427 -18547,3200:206,6,-20,0,0,0.450374 -18548,3200:207,7,-20,0,0,0.446638 -18549,3200:208,8,-20,0,0,0.444683 -18550,3200:209,9,-20,0,0,0.444176 -18551,3201:100,10,-20,0,0,0.443289 -18552,3201:101,11,-20,0,0,0.44339 -18553,3201:102,12,-20,0,0,0.439767 -18554,3201:103,13,-20,0,0,0.435544 -18555,3201:104,14,-20,0,0,0.422332 -18556,3203:103,33,-20,0,0,0.592014 -18557,3203:104,34,-20,0,0,0.60728 -18558,3203:205,35,-20,0,0,0.610901 -18559,3203:206,36,-20,0,0,0.60652 -18560,3203:207,37,-20,0,0,0.58739 -18561,3203:208,38,-20,0,0,0.561704 -18562,3203:209,39,-20,0,0,0.568471 -18563,3204:100,40,-20,0,0,0.581651 -18564,3204:101,41,-20,0,0,0.581676 -18565,3204:102,42,-20,0,0,0.582501 -18566,3204:103,43,-20,0,0,0.59422 -18567,3204:104,44,-20,0,0,0.612146 -18568,3204:205,45,-20,0,0,0.579349 -18569,3204:206,46,-20,0,0,0.570158 -18570,3204:207,47,-20,0,0,0.567916 -18571,3204:208,48,-20,0,0,0.563828 -18572,3204:209,49,-20,0,0,0.569302 -18573,3205:100,50,-20,0,0,0.559046 -18574,3205:101,51,-20,0,0,0.558615 -18575,3205:102,52,-20,0,0,0.561755 -18576,3205:103,53,-20,0,0,0.554279 -18577,3205:104,54,-20,0,0,0.554279 -18578,3205:205,55,-20,0,0,0.557044 -18579,3205:206,56,-20,0,0,0.551104 -18580,3205:207,57,-20,0,0,0.546627 -18581,3205:208,58,-20,0,0,0.555751 -18582,3205:209,59,-20,0,0,0.558033 -18583,3206:100,60,-20,0,0,0.545022 -18584,3206:101,61,-20,0,0,0.542498 -18585,3206:102,62,-20,0,0,0.554051 -18586,3206:103,63,-20,0,0,0.553645 -18587,3206:104,64,-20,0,0,0.552527 -18588,3206:205,65,-20,0,0,0.550062 -18589,3206:206,66,-20,0,0,0.550951 -18590,3206:207,67,-20,0,0,0.547213 -18591,3206:208,68,-20,0,0,0.543799 -18592,3206:209,69,-20,0,0,0.543493 -18593,3207:100,70,-20,0,0,0.53862 -18594,3207:101,71,-20,0,0,0.533075 -18595,3207:102,72,-20,0,0,0.532027 -18596,3207:104,74,-20,0,0,0.528546 -18597,3207:205,75,-20,0,0,0.530849 -18598,3207:206,76,-20,0,0,0.525856 -18599,3207:207,77,-20,0,0,0.520141 -18600,3207:208,78,-20,0,0,0.521218 -18601,3207:209,79,-20,0,0,0.515703 -18602,3208:100,80,-20,0,0,0.513162 -18603,3208:101,81,-20,0,0,0.51365 -18604,3208:102,82,-20,0,0,0.506846 -18605,3208:103,83,-20,0,0,0.507976 -18606,3208:104,84,-20,0,0,0.509466 -18607,3208:205,85,-20,0,0,0.49629 -18608,3208:206,86,-20,0,0,0.496238 -18609,3208:207,87,-20,0,0,0.49082 -18610,3208:208,88,-20,0,0,0.48987 -18611,3208:209,89,-20,0,0,0.483376 -18612,3209:100,90,-20,0,0,0.479118 -18613,3209:101,91,-20,0,0,0.473941 -18614,3209:102,92,-20,0,0,0.476657 -18615,3209:103,93,-20,0,0,0.477657 -18616,3209:104,94,-20,0,0,0.475786 -18617,3209:205,95,-20,0,0,0.46634 -18618,3209:206,96,-20,0,0,0.467235 -18619,3209:207,97,-20,0,0,0.47594 -18620,3209:208,98,-20,0,0,0.458142 -18621,3209:209,99,-20,0,0,0.462175 -18622,3210:100,100,-20,0,0,0.481529 -18623,3210:101,101,-20,0,0,0.474838 -18624,3210:102,102,-20,0,0,0.466417 -18625,3210:103,103,-20,0,0,0.465087 -18626,3210:104,104,-20,0,0,0.480759 -18627,3210:205,105,-20,0,0,0.472814 -18628,3210:206,106,-20,0,0,0.47389 -18629,3210:207,107,-20,0,0,0.492335 -18630,3210:208,108,-20,0,0,0.488047 -18631,3210:209,109,-20,0,0,0.490563 -18632,3211:100,110,-20,0,0,0.501581 -18633,3211:101,111,-20,0,0,0.50908 -18634,3211:102,112,-20,0,0,0.531821 -18635,3211:103,113,-20,0,0,0.540382 -18636,3211:104,114,-20,0,0,0.565949 -18637,3215:104,154,-20,0,0,0.587689 -18638,3215:205,155,-20,0,0,0.568446 -18639,3215:206,156,-20,0,0,0.563575 -18640,3215:207,157,-20,0,0,0.544666 -18641,3215:208,158,-20,0,0,0.540202 -18642,3215:209,159,-20,0,0,0.538313 -18643,3216:100,160,-20,0,0,0.531847 -18644,3216:101,161,-20,0,0,0.531233 -18645,3216:102,162,-20,0,0,0.535606 -18646,3216:103,163,-20,0,0,0.529416 -18647,3216:104,164,-20,0,0,0.52765 -18648,3216:205,165,-20,0,0,0.530977 -18650,3216:207,167,-20,0,0,0.520013 -18651,3216:208,168,-20,0,0,0.514677 -18652,3216:209,169,-20,0,0,0.518654 -18653,3217:100,170,-20,0,0,0.519295 -18654,3217:101,171,-20,0,0,0.520731 -18655,3217:102,172,-20,0,0,0.513291 -18656,3217:103,173,-20,0,0,0.517551 -18657,3217:104,174,-20,0,0,0.515164 -18658,3217:205,175,-20,0,0,0.51714 -18659,3217:206,176,-20,0,0,0.513496 -18660,3217:207,177,-20,0,0,0.509876 -18661,3217:208,178,-20,0,0,0.510287 -18662,3217:209,179,-20,0,0,0.512957 -18663,3218:100,180,-20,0,0,0.514805 -18664,5118:390,-180,-19,0,0,0.526318 -18665,5117:499,-179,-19,0,0,0.530107 -18666,5117:498,-178,-19,0,0,0.535734 -18667,5117:497,-177,-19,0,0,0.529365 -18668,5117:496,-176,-19,0,0,0.530031 -18669,5117:495,-175,-19,0,0,0.525011 -18670,5117:394,-174,-19,0,0,0.524627 -18671,5117:393,-173,-19,0,0,0.527547 -18672,5117:392,-172,-19,0,0,0.529544 -18673,5117:391,-171,-19,0,0,0.517551 -18674,5117:390,-170,-19,0,0,0.523859 -18675,5116:499,-169,-19,0,0,0.525549 -18676,5116:498,-168,-19,0,0,0.526626 -18677,5116:497,-167,-19,0,0,0.523833 -18678,5116:496,-166,-19,0,0,0.518936 -18679,5116:495,-165,-19,0,0,0.533996 -18680,5116:394,-164,-19,0,0,0.527086 -18681,5116:393,-163,-19,0,0,0.518371 -18682,5116:392,-162,-19,0,0,0.529929 -18683,5116:391,-161,-19,0,0,0.527342 -18684,5116:390,-160,-19,0,0,0.53742 -18685,5115:499,-159,-19,0,0,0.5365 -18686,5115:498,-158,-19,0,0,0.532027 -18687,5115:497,-157,-19,0,0,0.53021 -18688,5115:496,-156,-19,0,0,0.540458 -18689,5115:495,-155,-19,0,0,0.539973 -18690,5115:394,-154,-19,0,0,0.542983 -18691,5115:393,-153,-19,0,0,0.543468 -18692,5115:392,-152,-19,0,0,0.53982 -18693,5115:391,-151,-19,0,0,0.551053 -18694,5115:390,-150,-19,0,0,0.547467 -18695,5114:499,-149,-19,0,0,0.546398 -18696,5114:498,-148,-19,0,0,0.546448 -18697,5114:497,-147,-19,0,0,0.548383 -18698,5114:496,-146,-19,0,0,0.551511 -18699,5114:495,-145,-19,0,0,0.546627 -18700,5114:394,-144,-19,0,0,0.545073 -18701,5114:393,-143,-19,0,0,0.541453 -18702,5114:392,-142,-19,0,0,0.540126 -18703,5114:391,-141,-19,0,0,0.541351 -18704,5114:390,-140,-19,0,0,0.54907 -18705,5113:499,-139,-19,0,0,0.545761 -18706,5113:498,-138,-19,0,0,0.545506 -18707,5113:497,-137,-19,0,0,0.549248 -18708,5113:496,-136,-19,0,0,0.545965 -18709,5113:495,-135,-19,0,0,0.552578 -18710,5113:394,-134,-19,0,0,0.543442 -18711,5113:393,-133,-19,0,0,0.552374 -18712,5113:392,-132,-19,0,0,0.534839 -18713,5113:391,-131,-19,0,0,0.544105 -18714,5113:390,-130,-19,0,0,0.539029 -18715,5112:499,-129,-19,0,0,0.533816 -18716,5112:498,-128,-19,0,0,0.531361 -18717,5112:497,-127,-19,0,0,0.52683 -18718,5112:496,-126,-19,0,0,0.524909 -18719,5112:495,-125,-19,0,0,0.523628 -18720,5112:394,-124,-19,0,0,0.516499 -18721,5112:393,-123,-19,0,0,0.51832 -18722,5112:392,-122,-19,0,0,0.520988 -18723,5112:391,-121,-19,0,0,0.520013 -18724,5112:390,-120,-19,0,0,0.517704 -18725,5111:499,-119,-19,0,0,0.518423 -18726,5111:498,-118,-19,0,0,0.516293 -18727,5111:497,-117,-19,0,0,0.514241 -18728,5111:496,-116,-19,0,0,0.519474 -18729,5111:495,-115,-19,0,0,0.521833 -18730,5111:394,-114,-19,0,0,0.523192 -18731,5111:393,-113,-19,0,0,0.521398 -18732,5111:392,-112,-19,0,0,0.522115 -18733,5111:391,-111,-19,0,0,0.521244 -18734,5111:390,-110,-19,0,0,0.517551 -18735,5110:499,-109,-19,0,0,0.518243 -18736,5110:498,-108,-19,0,0,0.51832 -18737,5110:497,-107,-19,0,0,0.513624 -18738,5110:496,-106,-19,0,0,0.512546 -18739,5110:495,-105,-19,0,0,0.517576 -18740,5110:394,-104,-19,0,0,0.514061 -18741,5110:393,-103,-19,0,0,0.510596 -18742,5110:392,-102,-19,0,0,0.510672 -18743,5110:391,-101,-19,0,0,0.507052 -18744,5110:390,-100,-19,0,0,0.503328 -18745,5109:499,-99,-19,0,0,0.498576 -18746,5109:498,-98,-19,0,0,0.489947 -18747,5109:497,-97,-19,0,0,0.483915 -18748,5109:496,-96,-19,0,0,0.475504 -18749,5109:495,-95,-19,0,0,0.467695 -18750,5109:394,-94,-19,0,0,0.46003 -18751,5109:393,-93,-19,0,0,0.453224 -18752,5109:392,-92,-19,0,0,0.446333 -18753,5109:391,-91,-19,0,0,0.441717 -18754,5109:390,-90,-19,0,0,0.438223 -18755,5108:499,-89,-19,0,0,0.435468 -18756,5108:498,-88,-19,0,0,0.431936 -18757,5108:497,-87,-19,0,0,0.429215 -18758,5108:496,-86,-19,0,0,0.424615 -18759,5108:495,-85,-19,0,0,0.423009 -18760,5108:394,-84,-19,0,0,0.422157 -18761,5108:393,-83,-19,0,0,0.418002 -18762,5108:392,-82,-19,0,0,0.413161 -18763,5108:391,-81,-19,0,0,0.412514 -18764,5108:390,-80,-19,0,0,0.409504 -18765,5107:499,-79,-19,0,0,0.406824 -18766,5107:498,-78,-19,0,0,0.400344 -18767,5107:497,-77,-19,0,0,0.394906 -18768,5107:496,-76,-19,0,0,0.394145 -18769,5107:495,-75,-19,0,0,0.39211 -18770,5107:394,-74,-19,0,0,0.391939 -18771,5107:393,-73,-19,0,0,0.398594 -18772,5107:392,-72,-19,0,0,0.407468 -18773,5107:391,-71,-19,0,0,0.394832 -18774,5104:497,-47,-19,0,0,0.577871 -18775,5104:496,-46,-19,0,0,0.554762 -18776,5104:495,-45,-19,0,0,0.604802 -18777,5104:394,-44,-19,0,0,0.611511 -18778,5104:393,-43,-19,0,0,0.608236 -18779,5104:392,-42,-19,0,0,0.600275 -18780,5104:391,-41,-19,0,0,0.603378 -18781,5104:390,-40,-19,0,0,0.6063 -18782,5103:499,-39,-19,0,0,0.602812 -18783,5103:498,-38,-19,0,0,0.599708 -18784,5103:497,-37,-19,0,0,0.598894 -18785,5103:496,-36,-19,0,0,0.596349 -18786,5103:495,-35,-19,0,0,0.588609 -18787,5103:394,-34,-19,0,0,0.583326 -18788,5103:393,-33,-19,0,0,0.582726 -18789,5103:392,-32,-19,0,0,0.58355 -18790,5103:391,-31,-19,0,0,0.581951 -18791,5103:390,-30,-19,0,0,0.58035 -18792,5102:499,-29,-19,0,0,0.574836 -18793,5102:498,-28,-19,0,0,0.568874 -18794,5102:497,-27,-19,0,0,0.565015 -18795,5102:496,-26,-19,0,0,0.563145 -18796,5102:495,-25,-19,0,0,0.560565 -18797,5102:394,-24,-19,0,0,0.561982 -18798,5102:393,-23,-19,0,0,0.557247 -18799,5102:392,-22,-19,0,0,0.55745 -18800,5102:391,-21,-19,0,0,0.555954 -18801,5102:390,-20,-19,0,0,0.552908 -18802,5101:499,-19,-19,0,0,0.552984 -18803,5101:498,-18,-19,0,0,0.552629 -18804,5101:497,-17,-19,0,0,0.549146 -18805,5101:496,-16,-19,0,0,0.551918 -18806,5101:495,-15,-19,0,0,0.551663 -18807,5101:394,-14,-19,0,0,0.550367 -18808,5101:393,-13,-19,0,0,0.549324 -18809,5101:392,-12,-19,0,0,0.545328 -18810,5101:391,-11,-19,0,0,0.541529 -18811,5101:390,-10,-19,0,0,0.54028 -18812,5100:499,-9,-19,0,0,0.539437 -18813,5100:498,-8,-19,0,0,0.537522 -18814,5100:497,-7,-19,0,0,0.532896 -18815,5100:496,-6,-19,0,0,0.524217 -18816,5100:495,-5,-19,0,0,0.517166 -18817,5100:394,-4,-19,0,0,0.513522 -18818,5100:393,-3,-19,0,0,0.508181 -18819,5100:392,-2,-19,0,0,0.503302 -18820,5100:391,-1,-19,0,0,0.494723 -18821,3100:391,0,-19,0,0,0.487662 -18822,3100:391,1,-19,0,0,0.481272 -18823,3100:392,2,-19,0,0,0.472123 -18824,3100:393,3,-19,0,0,0.46404 -18825,3100:394,4,-19,0,0,0.45855 -18826,3100:495,5,-19,0,0,0.45465 -18827,3100:496,6,-19,0,0,0.452638 -18828,3100:497,7,-19,0,0,0.452486 -18829,3100:498,8,-19,0,0,0.44801 -18830,3100:499,9,-19,0,0,0.449306 -18831,3101:390,10,-19,0,0,0.446815 -18832,3101:391,11,-19,0,0,0.450119 -18833,3101:392,12,-19,0,0,0.450374 -18834,3101:393,13,-19,0,0,0.446942 -18835,3101:394,14,-19,0,0,0.417727 -18836,3103:495,35,-19,0,0,0.606055 -18837,3103:496,36,-19,0,0,0.618274 -18838,3103:497,37,-19,0,0,0.605932 -18839,3103:498,38,-19,0,0,0.604213 -18840,3103:499,39,-19,0,0,0.594369 -18841,3104:390,40,-19,0,0,0.606079 -18842,3104:391,41,-19,0,0,0.596794 -18843,3104:392,42,-19,0,0,0.607893 -18844,3104:393,43,-19,0,0,0.639965 -18845,3104:497,47,-19,0,0,0.575036 -18846,3104:498,48,-19,0,0,0.602443 -18847,3104:499,49,-19,0,0,0.590599 -18848,3105:390,50,-19,0,0,0.58953 -18849,3105:391,51,-19,0,0,0.571593 -18850,3105:392,52,-19,0,0,0.579925 -18851,3105:393,53,-19,0,0,0.57363 -18852,3105:394,54,-19,0,0,0.564181 -18853,3105:495,55,-19,0,0,0.565015 -18854,3105:496,56,-19,0,0,0.572976 -18855,3105:497,57,-19,0,0,0.568143 -18856,3105:498,58,-19,0,0,0.569882 -18857,3105:499,59,-19,0,0,0.576492 -18858,3106:390,60,-19,0,0,0.551333 -18859,3106:391,61,-19,0,0,0.563094 -18860,3106:392,62,-19,0,0,0.566756 -18861,3106:393,63,-19,0,0,0.56312 -18862,3106:394,64,-19,0,0,0.558362 -18863,3106:495,65,-19,0,0,0.562108 -18864,3106:496,66,-19,0,0,0.552578 -18865,3106:497,67,-19,0,0,0.554102 -18866,3106:498,68,-19,0,0,0.551155 -18867,3106:499,69,-19,0,0,0.546474 -18868,3107:390,70,-19,0,0,0.53982 -18869,3107:391,71,-19,0,0,0.535964 -18870,3107:392,72,-19,0,0,0.540509 -18871,3107:394,74,-19,0,0,0.538365 -18872,3107:495,75,-19,0,0,0.530056 -18873,3107:496,76,-19,0,0,0.529135 -18874,3107:497,77,-19,0,0,0.525652 -18875,3107:498,78,-19,0,0,0.523064 -18876,3107:499,79,-19,0,0,0.516524 -18877,3108:390,80,-19,0,0,0.516011 -18878,3108:391,81,-19,0,0,0.519552 -18879,3108:392,82,-19,0,0,0.519654 -18880,3108:393,83,-19,0,0,0.512161 -18881,3108:394,84,-19,0,0,0.510929 -18882,3108:495,85,-19,0,0,0.509517 -18883,3108:496,86,-19,0,0,0.505074 -18884,3108:497,87,-19,0,0,0.502249 -18885,3108:498,88,-19,0,0,0.493388 -18886,3108:499,89,-19,0,0,0.489074 -18887,3109:390,90,-19,0,0,0.491898 -18888,3109:391,91,-19,0,0,0.48987 -18889,3109:392,92,-19,0,0,0.48602 -18890,3109:393,93,-19,0,0,0.48643 -18891,3109:394,94,-19,0,0,0.490614 -18892,3109:495,95,-19,0,0,0.480631 -18893,3109:496,96,-19,0,0,0.48058 -18894,3109:497,97,-19,0,0,0.488817 -18895,3109:498,98,-19,0,0,0.492438 -18896,3109:499,99,-19,0,0,0.490178 -18897,3110:390,100,-19,0,0,0.481606 -18898,3110:391,101,-19,0,0,0.4794 -18899,3110:392,102,-19,0,0,0.476504 -18900,3110:393,103,-19,0,0,0.493233 -18901,3110:394,104,-19,0,0,0.491719 -18902,3110:495,105,-19,0,0,0.48276 -18903,3110:496,106,-19,0,0,0.480144 -18904,3110:497,107,-19,0,0,0.498011 -18905,3110:498,108,-19,0,0,0.503302 -18906,3110:499,109,-19,0,0,0.502454 -18907,3111:390,110,-19,0,0,0.507565 -18908,3111:391,111,-19,0,0,0.534353 -18909,3111:392,112,-19,0,0,0.542218 -18910,3111:393,113,-19,0,0,0.559781 -18911,3115:393,153,-19,0,0,0.594716 -18912,3115:394,154,-19,0,0,0.595161 -18913,3115:495,155,-19,0,0,0.572273 -18914,3115:496,156,-19,0,0,0.565646 -18915,3115:497,157,-19,0,0,0.569428 -18916,3115:498,158,-19,0,0,0.566832 -18917,3115:499,159,-19,0,0,0.554762 -18918,3116:390,160,-19,0,0,0.542014 -18919,3116:391,161,-19,0,0,0.544818 -18920,3116:392,162,-19,0,0,0.544029 -18921,3116:393,163,-19,0,0,0.551409 -18922,3116:394,164,-19,0,0,0.554381 -18923,3116:495,165,-19,0,0,0.545302 -18924,3116:496,166,-19,0,0,0.535043 -18925,3116:497,167,-19,0,0,0.53627 -18926,3116:498,168,-19,0,0,0.539514 -18927,3116:499,169,-19,0,0,0.542805 -18928,3117:390,170,-19,0,0,0.533663 -18929,3117:391,171,-19,0,0,0.533918 -18930,3117:392,172,-19,0,0,0.537292 -18931,3117:393,173,-19,0,0,0.530696 -18932,3117:394,174,-19,0,0,0.524806 -18933,3117:495,175,-19,0,0,0.527266 -18934,3117:496,176,-19,0,0,0.527317 -18935,3117:497,177,-19,0,0,0.522474 -18936,3117:498,178,-19,0,0,0.52537 -18937,3117:499,179,-19,0,0,0.524627 -18938,3118:390,180,-19,0,0,0.526318 -18939,5118:380,-180,-18,0,0,0.546474 -18940,5117:489,-179,-18,0,0,0.541427 -18941,5117:488,-178,-18,0,0,0.547976 -18942,5117:487,-177,-18,0,0,0.539718 -18943,5117:486,-176,-18,0,0,0.539565 -18944,5117:485,-175,-18,0,0,0.53742 -18945,5117:384,-174,-18,0,0,0.531438 -18946,5117:383,-173,-18,0,0,0.534788 -18947,5117:382,-172,-18,0,0,0.535632 -18948,5117:381,-171,-18,0,0,0.536014 -18949,5117:380,-170,-18,0,0,0.53131 -18950,5116:489,-169,-18,0,0,0.534558 -18951,5116:488,-168,-18,0,0,0.537369 -18952,5116:487,-167,-18,0,0,0.534328 -18953,5116:486,-166,-18,0,0,0.539054 -18954,5116:485,-165,-18,0,0,0.543442 -18955,5116:384,-164,-18,0,0,0.54907 -18956,5116:383,-163,-18,0,0,0.540738 -18957,5116:382,-162,-18,0,0,0.540841 -18958,5116:381,-161,-18,0,0,0.54209 -18959,5116:380,-160,-18,0,0,0.549579 -18960,5115:489,-159,-18,0,0,0.549579 -18961,5115:488,-158,-18,0,0,0.548357 -18962,5115:487,-157,-18,0,0,0.550316 -18963,5115:486,-156,-18,0,0,0.548103 -18964,5115:485,-155,-18,0,0,0.549782 -18965,5115:384,-154,-18,0,0,0.55499 -18966,5115:383,-153,-18,0,0,0.550825 -18967,5115:382,-152,-18,0,0,0.560489 -18968,5115:381,-151,-18,0,0,0.564813 -18969,5115:380,-150,-18,0,0,0.563499 -18970,5114:489,-149,-18,0,0,0.561223 -18971,5114:488,-148,-18,0,0,0.566227 -18972,5114:487,-147,-18,0,0,0.569655 -18973,5114:486,-146,-18,0,0,0.563701 -21244,5108:103,-83,-10,0,0,0.47179 -18974,5114:485,-145,-18,0,0,0.557678 -18975,5114:384,-144,-18,0,0,0.561173 -18976,5114:383,-143,-18,0,0,0.559299 -18977,5114:382,-142,-18,0,0,0.566478 -18978,5114:381,-141,-18,0,0,0.563448 -18979,5114:380,-140,-18,0,0,0.572775 -18980,5113:489,-139,-18,0,0,0.5727 -18981,5113:488,-138,-18,0,0,0.57099 -18982,5113:487,-137,-18,0,0,0.572574 -18983,5113:486,-136,-18,0,0,0.573806 -18984,5113:485,-135,-18,0,0,0.570158 -18985,5113:384,-134,-18,0,0,0.571166 -18986,5113:383,-133,-18,0,0,0.570687 -18987,5113:382,-132,-18,0,0,0.557374 -18988,5113:381,-131,-18,0,0,0.561856 -18989,5113:380,-130,-18,0,0,0.550799 -18990,5112:489,-129,-18,0,0,0.552553 -18991,5112:488,-128,-18,0,0,0.550774 -18992,5112:487,-127,-18,0,0,0.545837 -18993,5112:486,-126,-18,0,0,0.541249 -18994,5112:485,-125,-18,0,0,0.542498 -18995,5112:384,-124,-18,0,0,0.538186 -18996,5112:383,-123,-18,0,0,0.542779 -18997,5112:382,-122,-18,0,0,0.542014 -18998,5112:381,-121,-18,0,0,0.542907 -18999,5112:380,-120,-18,0,0,0.537726 -19000,5111:489,-119,-18,0,0,0.536756 -19001,5111:488,-118,-18,0,0,0.537726 -19002,5111:487,-117,-18,0,0,0.538467 -19003,5111:486,-116,-18,0,0,0.53862 -19004,5111:485,-115,-18,0,0,0.541249 -19005,5111:384,-114,-18,0,0,0.543314 -19006,5111:383,-113,-18,0,0,0.542269 -19007,5111:382,-112,-18,0,0,0.542192 -19008,5111:381,-111,-18,0,0,0.537981 -19009,5111:380,-110,-18,0,0,0.531873 -19010,5110:489,-109,-18,0,0,0.530286 -19011,5110:488,-108,-18,0,0,0.531924 -19012,5110:487,-107,-18,0,0,0.530158 -19013,5110:486,-106,-18,0,0,0.528008 -19014,5110:485,-105,-18,0,0,0.524883 -19015,5110:384,-104,-18,0,0,0.522295 -19016,5110:383,-103,-18,0,0,0.51991 -19017,5110:382,-102,-18,0,0,0.515472 -19018,5110:381,-101,-18,0,0,0.510031 -19019,5110:380,-100,-18,0,0,0.504253 -19020,5109:489,-99,-18,0,0,0.49629 -19021,5109:488,-98,-18,0,0,0.49064 -19022,5109:487,-97,-18,0,0,0.482427 -19023,5109:486,-96,-18,0,0,0.475888 -19024,5109:485,-95,-18,0,0,0.470356 -19025,5109:384,-94,-18,0,0,0.466212 -19026,5109:383,-93,-18,0,0,0.460566 -19027,5109:382,-92,-18,0,0,0.452358 -19028,5109:381,-91,-18,0,0,0.444912 -19029,5109:380,-90,-18,0,0,0.438628 -19030,5108:489,-89,-18,0,0,0.43653 -19031,5108:488,-88,-18,0,0,0.433751 -19032,5108:487,-87,-18,0,0,0.430096 -19033,5108:486,-86,-18,0,0,0.426499 -19034,5108:485,-85,-18,0,0,0.421605 -19035,5108:384,-84,-18,0,0,0.418352 -19036,5108:383,-83,-18,0,0,0.41331 -19037,5108:382,-82,-18,0,0,0.406824 -19038,5108:381,-81,-18,0,0,0.401405 -19039,5108:380,-80,-18,0,0,0.398939 -19040,5107:489,-79,-18,0,0,0.395937 -19041,5107:488,-78,-18,0,0,0.394464 -19042,5107:487,-77,-18,0,0,0.394587 -19043,5107:486,-76,-18,0,0,0.395029 -19044,5107:485,-75,-18,0,0,0.395225 -19045,5107:384,-74,-18,0,0,0.397388 -19046,5107:383,-73,-18,0,0,0.403456 -19047,5107:382,-72,-18,0,0,0.419327 -19048,5107:381,-71,-18,0,0,0.411219 -19049,5104:384,-44,-18,0,0,0.56269 -19050,5104:383,-43,-18,0,0,0.604361 -19051,5104:382,-42,-18,0,0,0.606201 -19052,5104:381,-41,-18,0,0,0.623354 -19053,5104:380,-40,-18,0,0,0.623812 -19054,5103:489,-39,-18,0,0,0.620575 -19055,5103:488,-38,-18,0,0,0.615579 -19056,5103:487,-37,-18,0,0,0.611731 -19057,5103:486,-36,-18,0,0,0.605736 -19058,5103:485,-35,-18,0,0,0.603353 -19059,5103:384,-34,-18,0,0,0.603451 -19060,5103:383,-33,-18,0,0,0.607403 -19061,5103:382,-32,-18,0,0,0.603451 -19062,5103:381,-31,-18,0,0,0.601408 -19063,5103:380,-30,-18,0,0,0.597857 -19064,5102:489,-29,-18,0,0,0.587091 -19065,5102:488,-28,-18,0,0,0.57995 -19066,5102:487,-27,-18,0,0,0.577746 -19067,5102:486,-26,-18,0,0,0.578874 -19068,5102:485,-25,-18,0,0,0.577922 -19069,5102:384,-24,-18,0,0,0.576442 -19070,5102:383,-23,-18,0,0,0.574434 -19071,5102:382,-22,-18,0,0,0.57461 -19072,5102:381,-21,-18,0,0,0.576743 -19073,5102:380,-20,-18,0,0,0.576642 -19074,5101:489,-19,-18,0,0,0.574383 -19075,5101:488,-18,-18,0,0,0.576015 -19076,5101:487,-17,-18,0,0,0.574308 -19077,5101:486,-16,-18,0,0,0.57192 -19078,5101:485,-15,-18,0,0,0.568345 -19079,5101:384,-14,-18,0,0,0.563094 -19080,5101:383,-13,-18,0,0,0.558083 -19081,5101:382,-12,-18,0,0,0.555802 -19082,5101:381,-11,-18,0,0,0.552578 -19083,5101:380,-10,-18,0,0,0.547365 -19084,5100:489,-9,-18,0,0,0.540738 -19085,5100:488,-8,-18,0,0,0.534251 -19086,5100:487,-7,-18,0,0,0.526676 -19087,5100:486,-6,-18,0,0,0.518218 -19088,5100:485,-5,-18,0,0,0.513265 -19089,5100:384,-4,-18,0,0,0.505896 -19090,5100:383,-3,-18,0,0,0.498653 -19091,5100:382,-2,-18,0,0,0.49308 -19092,5100:381,-1,-18,0,0,0.486584 -19093,3100:381,0,-18,0,0,0.480247 -19094,3100:381,1,-18,0,0,0.474607 -19095,3100:382,2,-18,0,0,0.469973 -19096,3100:383,3,-18,0,0,0.464601 -19097,3100:384,4,-18,0,0,0.460668 -19098,3100:485,5,-18,0,0,0.460438 -19099,3100:486,6,-18,0,0,0.45804 -19100,3100:487,7,-18,0,0,0.456255 -19101,3100:488,8,-18,0,0,0.454446 -19102,3100:489,9,-18,0,0,0.455108 -19103,3101:380,10,-18,0,0,0.455949 -19104,3101:381,11,-18,0,0,0.455261 -19105,3101:382,12,-18,0,0,0.450196 -19106,3101:383,13,-18,0,0,0.443897 -19107,3101:384,14,-18,0,0,0.385566 -19108,3103:486,36,-18,0,0,0.632308 -19109,3103:487,37,-18,0,0,0.615968 -19110,3103:488,38,-18,0,0,0.613681 -19111,3103:489,39,-18,0,0,0.611438 -19112,3104:380,40,-18,0,0,0.617693 -19113,3104:381,41,-18,0,0,0.625763 -19114,3104:382,42,-18,0,0,0.648068 -19115,3104:383,43,-18,0,0,0.666784 -19116,3104:488,48,-18,0,0,0.61217 -19117,3104:489,49,-18,0,0,0.597956 -19118,3105:380,50,-18,0,0,0.598845 -19119,3105:381,51,-18,0,0,0.593526 -19120,3105:382,52,-18,0,0,0.590151 -19121,3105:383,53,-18,0,0,0.581176 -19122,3105:384,54,-18,0,0,0.576166 -19123,3105:485,55,-18,0,0,0.580376 -19124,3105:486,56,-18,0,0,0.5833 -19125,3105:487,57,-18,0,0,0.585322 -19126,3105:488,58,-18,0,0,0.585048 -19127,3105:489,59,-18,0,0,0.585097 -19128,3106:380,60,-18,0,0,0.57985 -19129,3106:381,61,-18,0,0,0.570788 -19130,3106:382,62,-18,0,0,0.569604 -19131,3106:383,63,-18,0,0,0.574509 -19132,3106:384,64,-18,0,0,0.570536 -19133,3106:485,65,-18,0,0,0.567639 -19134,3106:486,66,-18,0,0,0.561071 -19135,3106:487,67,-18,0,0,0.556588 -19136,3106:488,68,-18,0,0,0.553315 -19137,3106:489,69,-18,0,0,0.547874 -19138,3107:380,70,-18,0,0,0.549884 -19139,3107:381,71,-18,0,0,0.545684 -19140,3107:382,72,-18,0,0,0.542754 -19141,3107:384,74,-18,0,0,0.535912 -19142,3107:485,75,-18,0,0,0.533024 -19143,3107:486,76,-18,0,0,0.538211 -19144,3107:487,77,-18,0,0,0.533816 -19145,3107:488,78,-18,0,0,0.530312 -19146,3107:489,79,-18,0,0,0.530261 -19147,3108:380,80,-18,0,0,0.525882 -19148,3108:381,81,-18,0,0,0.527291 -19149,3108:382,82,-18,0,0,0.518551 -19150,3108:383,83,-18,0,0,0.523755 -19151,3108:384,84,-18,0,0,0.520833 -19152,3108:485,85,-18,0,0,0.513753 -19153,3108:486,86,-18,0,0,0.516396 -19154,3108:487,87,-18,0,0,0.509235 -19155,3108:488,88,-18,0,0,0.507745 -19156,3108:489,89,-18,0,0,0.509671 -19157,3109:380,90,-18,0,0,0.5117 -19158,3109:381,91,-18,0,0,0.506076 -19159,3109:382,92,-18,0,0,0.506051 -19160,3109:383,93,-18,0,0,0.510904 -19161,3109:384,94,-18,0,0,0.508079 -19162,3109:485,95,-18,0,0,0.501761 -19163,3109:486,96,-18,0,0,0.503251 -19164,3109:487,97,-18,0,0,0.496958 -19165,3109:488,98,-18,0,0,0.499398 -19166,3109:489,99,-18,0,0,0.491976 -19167,3110:380,100,-18,0,0,0.497677 -19168,3110:381,101,-18,0,0,0.491411 -19169,3110:382,102,-18,0,0,0.497651 -19170,3110:383,103,-18,0,0,0.507411 -19171,3110:384,104,-18,0,0,0.501478 -19172,3110:485,105,-18,0,0,0.500322 -19173,3110:486,106,-18,0,0,0.507771 -19174,3110:487,107,-18,0,0,0.517371 -19175,3110:488,108,-18,0,0,0.521577 -19176,3110:489,109,-18,0,0,0.529851 -19177,3111:380,110,-18,0,0,0.529288 -19178,3111:381,111,-18,0,0,0.532589 -19179,3111:382,112,-18,0,0,0.557956 -19180,3111:383,113,-18,0,0,0.570032 -19181,3111:384,114,-18,0,0,0.565318 -19182,3115:382,152,-18,0,0,0.591641 -19183,3115:383,153,-18,0,0,0.588734 -19184,3115:384,154,-18,0,0,0.594245 -19185,3115:485,155,-18,0,0,0.588336 -19186,3115:486,156,-18,0,0,0.568546 -19187,3115:487,157,-18,0,0,0.574509 -19188,3115:488,158,-18,0,0,0.571694 -19189,3115:489,159,-18,0,0,0.560565 -19190,3116:380,160,-18,0,0,0.558438 -19191,3116:381,161,-18,0,0,0.568848 -19192,3116:382,162,-18,0,0,0.564661 -19193,3116:383,163,-18,0,0,0.561729 -19194,3116:384,164,-18,0,0,0.566277 -19195,3116:485,165,-18,0,0,0.558007 -19196,3116:486,166,-18,0,0,0.552451 -19197,3116:487,167,-18,0,0,0.551562 -19198,3116:488,168,-18,0,0,0.54996 -19199,3116:489,169,-18,0,0,0.556918 -19200,3117:380,170,-18,0,0,0.54851 -19201,3117:381,171,-18,0,0,0.543238 -19202,3117:382,172,-18,0,0,0.543111 -19203,3117:383,173,-18,0,0,0.542907 -19204,3117:384,174,-18,0,0,0.535708 -19205,3117:485,175,-18,0,0,0.534737 -19206,3117:486,176,-18,0,0,0.543391 -19207,3117:487,177,-18,0,0,0.541988 -19208,3117:488,178,-18,0,0,0.535606 -19209,3117:489,179,-18,0,0,0.542957 -19210,3118:380,180,-18,0,0,0.546474 -19211,5118:370,-180,-17,0,0,0.544283 -19212,5117:479,-179,-17,0,0,0.546882 -19213,5117:478,-178,-17,0,0,0.54968 -19214,5117:477,-177,-17,0,0,0.546499 -19215,5117:476,-176,-17,0,0,0.548154 -19216,5117:475,-175,-17,0,0,0.542422 -19217,5117:374,-174,-17,0,0,0.541912 -19218,5117:373,-173,-17,0,0,0.542192 -19219,5117:372,-172,-17,0,0,0.553492 -19220,5117:371,-171,-17,0,0,0.545761 -19221,5117:370,-170,-17,0,0,0.55085 -19222,5116:479,-169,-17,0,0,0.560869 -19223,5116:478,-168,-17,0,0,0.552248 -19224,5116:477,-167,-17,0,0,0.555396 -19225,5116:476,-166,-17,0,0,0.546677 -19226,5116:475,-165,-17,0,0,0.551333 -19227,5116:374,-164,-17,0,0,0.55897 -19228,5116:373,-163,-17,0,0,0.554838 -19229,5116:372,-162,-17,0,0,0.556866 -19230,5116:371,-161,-17,0,0,0.554736 -19231,5116:370,-160,-17,0,0,0.559932 -19232,5115:479,-159,-17,0,0,0.560691 -19233,5115:478,-158,-17,0,0,0.564838 -19234,5115:477,-157,-17,0,0,0.564054 -19235,5115:476,-156,-17,0,0,0.566403 -19236,5115:475,-155,-17,0,0,0.561957 -19237,5115:374,-154,-17,0,0,0.569353 -19238,5115:373,-153,-17,0,0,0.574359 -19239,5115:372,-152,-17,0,0,0.579449 -19240,5115:371,-151,-17,0,0,0.588012 -19241,5115:370,-150,-17,0,0,0.58035 -19242,5114:479,-149,-17,0,0,0.587016 -19243,5114:478,-148,-17,0,0,0.585247 -19244,5114:477,-147,-17,0,0,0.58395 -19245,5114:476,-146,-17,0,0,0.584298 -19246,5114:475,-145,-17,0,0,0.58597 -19247,5114:374,-144,-17,0,0,0.58345 -19248,5114:373,-143,-17,0,0,0.585023 -19249,5114:372,-142,-17,0,0,0.585247 -19250,5114:371,-141,-17,0,0,0.587838 -19251,5114:370,-140,-17,0,0,0.59107 -19252,5113:479,-139,-17,0,0,0.589331 -19253,5113:478,-138,-17,0,0,0.588385 -19254,5113:477,-137,-17,0,0,0.590325 -19255,5113:476,-136,-17,0,0,0.591244 -19256,5113:475,-135,-17,0,0,0.589927 -19257,5113:374,-134,-17,0,0,0.587962 -19258,5113:373,-133,-17,0,0,0.583375 -19259,5113:372,-132,-17,0,0,0.579474 -19260,5113:371,-131,-17,0,0,0.575062 -19261,5113:370,-130,-17,0,0,0.575213 -19262,5112:479,-129,-17,0,0,0.573479 -19263,5112:478,-128,-17,0,0,0.570008 -19264,5112:477,-127,-17,0,0,0.564938 -19265,5112:476,-126,-17,0,0,0.564408 -19266,5112:475,-125,-17,0,0,0.561527 -19267,5112:374,-124,-17,0,0,0.560768 -19268,5112:373,-123,-17,0,0,0.559071 -19269,5112:372,-122,-17,0,0,0.559122 -19270,5112:371,-121,-17,0,0,0.55674 -19271,5112:370,-120,-17,0,0,0.55306 -19272,5111:479,-119,-17,0,0,0.555167 -19273,5111:478,-118,-17,0,0,0.558007 -19274,5111:477,-117,-17,0,0,0.559704 -19275,5111:476,-116,-17,0,0,0.562563 -19276,5111:475,-115,-17,0,0,0.566277 -19277,5111:374,-114,-17,0,0,0.5636 -19278,5111:373,-113,-17,0,0,0.557906 -19279,5111:372,-112,-17,0,0,0.556689 -19280,5111:371,-111,-17,0,0,0.553822 -19281,5111:370,-110,-17,0,0,0.549935 -19282,5110:479,-109,-17,0,0,0.548816 -19283,5110:478,-108,-17,0,0,0.545863 -19284,5110:477,-107,-17,0,0,0.543187 -19285,5110:476,-106,-17,0,0,0.539233 -19286,5110:475,-105,-17,0,0,0.531361 -19287,5110:374,-104,-17,0,0,0.523423 -19288,5110:373,-103,-17,0,0,0.515318 -19289,5110:372,-102,-17,0,0,0.508567 -19290,5110:371,-101,-17,0,0,0.503302 -19291,5110:370,-100,-17,0,0,0.498987 -19292,5109:479,-99,-17,0,0,0.495314 -19293,5109:478,-98,-17,0,0,0.489408 -19294,5109:477,-97,-17,0,0,0.483735 -19295,5109:476,-96,-17,0,0,0.477631 -19296,5109:475,-95,-17,0,0,0.468053 -19297,5109:374,-94,-17,0,0,0.458703 -19298,5109:373,-93,-17,0,0,0.453936 -19299,5109:372,-92,-17,0,0,0.449204 -19300,5109:371,-91,-17,0,0,0.441641 -19301,5109:370,-90,-17,0,0,0.437591 -19302,5108:479,-89,-17,0,0,0.435367 -19303,5108:478,-88,-17,0,0,0.429643 -19304,5108:477,-87,-17,0,0,0.424062 -19305,5108:476,-86,-17,0,0,0.421405 -19306,5108:475,-85,-17,0,0,0.417177 -19307,5108:374,-84,-17,0,0,0.412239 -19308,5108:373,-83,-17,0,0,0.407543 -19309,5108:372,-82,-17,0,0,0.404916 -19310,5108:371,-81,-17,0,0,0.404346 -19311,5108:370,-80,-17,0,0,0.404594 -19312,5107:479,-79,-17,0,0,0.401627 -19313,5107:478,-78,-17,0,0,0.396994 -19314,5107:477,-77,-17,0,0,0.395077 -19315,5107:476,-76,-17,0,0,0.395298 -19316,5107:475,-75,-17,0,0,0.399826 -19317,5107:374,-74,-17,0,0,0.406799 -19318,5107:373,-73,-17,0,0,0.424966 -19319,5107:372,-72,-17,0,0,0.438881 -19320,5107:371,-71,-17,0,0,0.447349 -19321,5104:371,-41,-17,0,0,0.622944 -19322,5104:370,-40,-17,0,0,0.628118 -19323,5103:479,-39,-17,0,0,0.628502 -19324,5103:478,-38,-17,0,0,0.623209 -19325,5103:477,-37,-17,0,0,0.619462 -19326,5103:476,-36,-17,0,0,0.617037 -19327,5103:475,-35,-17,0,0,0.617328 -19328,5103:374,-34,-17,0,0,0.617596 -19329,5103:373,-33,-17,0,0,0.618468 -19330,5103:372,-32,-17,0,0,0.619293 -19331,5103:371,-31,-17,0,0,0.617838 -19332,5103:370,-30,-17,0,0,0.614972 -19333,5102:479,-29,-17,0,0,0.604704 -19334,5102:478,-28,-17,0,0,0.588435 -19335,5102:477,-27,-17,0,0,0.582726 -19336,5102:476,-26,-17,0,0,0.584224 -19337,5102:475,-25,-17,0,0,0.586667 -19338,5102:374,-24,-17,0,0,0.586792 -19339,5102:373,-23,-17,0,0,0.586867 -19340,5102:372,-22,-17,0,0,0.587365 -19341,5102:371,-21,-17,0,0,0.585695 -19342,5102:370,-20,-17,0,0,0.58325 -19343,5101:479,-19,-17,0,0,0.581426 -19344,5101:478,-18,-17,0,0,0.580301 -19345,5101:477,-17,-17,0,0,0.578197 -19346,5101:476,-16,-17,0,0,0.573881 -19347,5101:475,-15,-17,0,0,0.568345 -19348,5101:374,-14,-17,0,0,0.563044 -19349,5101:373,-13,-17,0,0,0.556157 -19350,5101:372,-12,-17,0,0,0.550265 -19351,5101:371,-11,-17,0,0,0.543875 -19352,5101:370,-10,-17,0,0,0.535989 -19353,5100:479,-9,-17,0,0,0.52934 -19354,5100:478,-8,-17,0,0,0.524012 -19355,5100:477,-7,-17,0,0,0.515986 -19356,5100:476,-6,-17,0,0,0.508515 -19357,5100:475,-5,-17,0,0,0.50207 -19358,5100:374,-4,-17,0,0,0.497266 -19359,5100:373,-3,-17,0,0,0.492104 -19360,5100:372,-2,-17,0,0,0.483248 -19361,5100:371,-1,-17,0,0,0.478836 -19362,3100:371,0,-17,0,0,0.475376 -19363,3100:371,1,-17,0,0,0.472148 -19364,3100:372,2,-17,0,0,0.467414 -19365,3100:373,3,-17,0,0,0.46386 -19366,3100:374,4,-17,0,0,0.462736 -19367,3100:475,5,-17,0,0,0.461817 -19368,3100:476,6,-17,0,0,0.460974 -19369,3100:477,7,-17,0,0,0.458856 -19370,3100:478,8,-17,0,0,0.458881 -19371,3100:479,9,-17,0,0,0.461459 -19372,3101:370,10,-17,0,0,0.460004 -19373,3101:371,11,-17,0,0,0.455414 -19374,3101:372,12,-17,0,0,0.451162 -19375,3101:373,13,-17,0,0,0.445267 -19376,3103:476,36,-17,0,0,0.639823 -19377,3103:477,37,-17,0,0,0.623498 -19378,3103:478,38,-17,0,0,0.630299 -19379,3103:479,39,-17,0,0,0.62545 -19380,3104:370,40,-17,0,0,0.64006 -19381,3104:371,41,-17,0,0,0.656364 -19382,3104:372,42,-17,0,0,0.67362 -19383,3104:373,43,-17,0,0,0.671402 -19384,3104:478,48,-17,0,0,0.619849 -19385,3104:479,49,-17,0,0,0.609753 -19386,3105:370,50,-17,0,0,0.600966 -19387,3105:371,51,-17,0,0,0.593923 -19388,3105:372,52,-17,0,0,0.590673 -19389,3105:373,53,-17,0,0,0.593155 -19390,3105:374,54,-17,0,0,0.58953 -19391,3105:475,55,-17,0,0,0.585771 -19392,3105:476,56,-17,0,0,0.587863 -19393,3105:477,57,-17,0,0,0.598647 -19394,3105:478,58,-17,0,0,0.595582 -19395,3105:479,59,-17,0,0,0.592733 -19396,3106:370,60,-17,0,0,0.589604 -19397,3106:371,61,-17,0,0,0.584972 -19398,3106:372,62,-17,0,0,0.578197 -19399,3106:373,63,-17,0,0,0.575313 -19400,3106:374,64,-17,0,0,0.569075 -19401,3106:475,65,-17,0,0,0.567942 -19402,3106:476,66,-17,0,0,0.567185 -19403,3106:477,67,-17,0,0,0.561779 -19404,3106:478,68,-17,0,0,0.560565 -19405,3106:479,69,-17,0,0,0.556715 -19406,3107:370,70,-17,0,0,0.550698 -19407,3107:371,71,-17,0,0,0.558843 -19408,3107:372,72,-17,0,0,0.552527 -19409,3107:374,74,-17,0,0,0.549655 -19410,3107:475,75,-17,0,0,0.54767 -19411,3107:476,76,-17,0,0,0.54181 -19412,3107:477,77,-17,0,0,0.541479 -19413,3107:478,78,-17,0,0,0.536551 -19414,3107:479,79,-17,0,0,0.538467 -19415,3108:370,80,-17,0,0,0.536654 -19416,3108:371,81,-17,0,0,0.534021 -19417,3108:372,82,-17,0,0,0.526805 -19418,3108:373,83,-17,0,0,0.537343 -19419,3108:374,84,-17,0,0,0.53021 -19420,3108:475,85,-17,0,0,0.528853 -19421,3108:476,86,-17,0,0,0.531029 -19422,3108:477,87,-17,0,0,0.532845 -19423,3108:478,88,-17,0,0,0.521987 -19424,3108:479,89,-17,0,0,0.535555 -19425,3109:370,90,-17,0,0,0.538416 -19426,3109:371,91,-17,0,0,0.515113 -19427,3109:372,92,-17,0,0,0.532154 -19428,3109:373,93,-17,0,0,0.519885 -19429,3109:374,94,-17,0,0,0.5298 -19430,3109:475,95,-17,0,0,0.527291 -19431,3109:476,96,-17,0,0,0.52209 -19432,3109:477,97,-17,0,0,0.528776 -19433,3109:478,98,-17,0,0,0.527547 -19434,3109:479,99,-17,0,0,0.509054 -19435,3110:370,100,-17,0,0,0.510749 -19436,3110:371,101,-17,0,0,0.522987 -19437,3110:372,102,-17,0,0,0.528213 -19438,3110:373,103,-17,0,0,0.523961 -19439,3110:374,104,-17,0,0,0.524243 -19440,3110:475,105,-17,0,0,0.534558 -19441,3110:476,106,-17,0,0,0.53535 -19442,3110:477,107,-17,0,0,0.52893 -19443,3110:478,108,-17,0,0,0.53108 -19444,3110:479,109,-17,0,0,0.540636 -19445,3111:370,110,-17,0,0,0.548103 -19446,3111:371,111,-17,0,0,0.56183 -19447,3111:372,112,-17,0,0,0.561501 -19448,3111:373,113,-17,0,0,0.573982 -19449,3111:374,114,-17,0,0,0.581376 -19450,3115:370,150,-17,0,0,0.624968 -19451,3115:371,151,-17,0,0,0.60136 -19452,3115:372,152,-17,0,0,0.610901 -19453,3115:373,153,-17,0,0,0.601408 -19454,3115:374,154,-17,0,0,0.597585 -19455,3115:475,155,-17,0,0,0.586394 -19456,3115:476,156,-17,0,0,0.5833 -19457,3115:477,157,-17,0,0,0.57368 -19458,3115:478,158,-17,0,0,0.580951 -19459,3115:479,159,-17,0,0,0.571291 -19460,3116:370,160,-17,0,0,0.568521 -19461,3116:371,161,-17,0,0,0.580801 -19462,3116:372,162,-17,0,0,0.576642 -19463,3116:373,163,-17,0,0,0.580225 -19464,3116:374,164,-17,0,0,0.5801 -19465,3116:475,165,-17,0,0,0.572876 -19466,3116:476,166,-17,0,0,0.545226 -19467,3116:477,167,-17,0,0,0.550799 -19468,3116:478,168,-17,0,0,0.562286 -19469,3116:479,169,-17,0,0,0.565368 -19470,3117:370,170,-17,0,0,0.559628 -19471,3117:371,171,-17,0,0,0.551383 -19472,3117:372,172,-17,0,0,0.556309 -19473,3117:373,173,-17,0,0,0.552806 -19474,3117:374,174,-17,0,0,0.55024 -19475,3117:475,175,-17,0,0,0.544895 -19476,3117:476,176,-17,0,0,0.551231 -19477,3117:477,177,-17,0,0,0.543824 -19478,3117:478,178,-17,0,0,0.539616 -19479,3117:479,179,-17,0,0,0.554736 -19480,3118:370,180,-17,0,0,0.544283 -19481,5118:360,-180,-16,0,0,0.559046 -19482,5117:469,-179,-16,0,0,0.556918 -19483,5117:468,-178,-16,0,0,0.559476 -19484,5117:467,-177,-16,0,0,0.565519 -19485,5117:466,-176,-16,0,0,0.563347 -19486,5117:465,-175,-16,0,0,0.563802 -19487,5117:364,-174,-16,0,0,0.555954 -19488,5117:363,-173,-16,0,0,0.563575 -19489,5117:362,-172,-16,0,0,0.562867 -19490,5117:361,-171,-16,0,0,0.558083 -19491,5117:360,-170,-16,0,0,0.569932 -19492,5116:469,-169,-16,0,0,0.566983 -19493,5116:468,-168,-16,0,0,0.56615 -19494,5116:467,-167,-16,0,0,0.564282 -19495,5116:466,-166,-16,0,0,0.569227 -19496,5116:465,-165,-16,0,0,0.565116 -19497,5116:364,-164,-16,0,0,0.568647 -19498,5116:363,-163,-16,0,0,0.572474 -19499,5116:362,-162,-16,0,0,0.571392 -19500,5116:361,-161,-16,0,0,0.573504 -19501,5116:360,-160,-16,0,0,0.579249 -19502,5115:469,-159,-16,0,0,0.582101 -19503,5115:468,-158,-16,0,0,0.5829 -19504,5115:467,-157,-16,0,0,0.586493 -19505,5115:466,-156,-16,0,0,0.589405 -19506,5115:465,-155,-16,0,0,0.593824 -19507,5115:364,-154,-16,0,0,0.595384 -19508,5115:363,-153,-16,0,0,0.600103 -19509,5115:362,-152,-16,0,0,0.60163 -19510,5115:361,-151,-16,0,0,0.603131 -19511,5115:360,-150,-16,0,0,0.605319 -19512,5114:469,-149,-16,0,0,0.605171 -19513,5114:468,-148,-16,0,0,0.607035 -19514,5114:467,-147,-16,0,0,0.609654 -19515,5114:466,-146,-16,0,0,0.609801 -19516,5114:465,-145,-16,0,0,0.610144 -19517,5114:364,-144,-16,0,0,0.609067 -19518,5114:363,-143,-16,0,0,0.60804 -19519,5114:362,-142,-16,0,0,0.608897 -19520,5114:361,-141,-16,0,0,0.609581 -19521,5114:360,-140,-16,0,0,0.609703 -19522,5113:469,-139,-16,0,0,0.609215 -19523,5113:468,-138,-16,0,0,0.608138 -19524,5113:467,-137,-16,0,0,0.606398 -19525,5113:466,-136,-16,0,0,0.605932 -19526,5113:465,-135,-16,0,0,0.604754 -19527,5113:364,-134,-16,0,0,0.603205 -19528,5113:363,-133,-16,0,0,0.600866 -19529,5113:362,-132,-16,0,0,0.596843 -19530,5113:361,-131,-16,0,0,0.594963 -19531,5113:360,-130,-16,0,0,0.59184 -19532,5112:469,-129,-16,0,0,0.58856 -19533,5112:468,-128,-16,0,0,0.586743 -19534,5112:467,-127,-16,0,0,0.587539 -19535,5112:466,-126,-16,0,0,0.586543 -19536,5112:465,-125,-16,0,0,0.583125 -19537,5112:364,-124,-16,0,0,0.585421 -19538,5112:363,-123,-16,0,0,0.584623 -19539,5112:362,-122,-16,0,0,0.585197 -19540,5112:361,-121,-16,0,0,0.5833 -19541,5112:360,-120,-16,0,0,0.580476 -19542,5111:469,-119,-16,0,0,0.581926 -19543,5111:468,-118,-16,0,0,0.582426 -19544,5111:467,-117,-16,0,0,0.583326 -19545,5111:466,-116,-16,0,0,0.582376 -19546,5111:465,-115,-16,0,0,0.578874 -19547,5111:364,-114,-16,0,0,0.575589 -19548,5111:363,-113,-16,0,0,0.572499 -19549,5111:362,-112,-16,0,0,0.566781 -19550,5111:361,-111,-16,0,0,0.562867 -19551,5111:360,-110,-16,0,0,0.559603 -19552,5110:469,-109,-16,0,0,0.555421 -19553,5110:468,-108,-16,0,0,0.550672 -19554,5110:467,-107,-16,0,0,0.546398 -19555,5110:466,-106,-16,0,0,0.540636 -19556,5110:465,-105,-16,0,0,0.534737 -19557,5110:364,-104,-16,0,0,0.52724 -19558,5110:363,-103,-16,0,0,0.519038 -19559,5110:362,-102,-16,0,0,0.513522 -19560,5110:361,-101,-16,0,0,0.508079 -19561,5110:360,-100,-16,0,0,0.503277 -19562,5109:469,-99,-16,0,0,0.49873 -19563,5109:468,-98,-16,0,0,0.494313 -19564,5109:467,-97,-16,0,0,0.487354 -19565,5109:466,-96,-16,0,0,0.476939 -19566,5109:465,-95,-16,0,0,0.470433 -19567,5109:364,-94,-16,0,0,0.466186 -19568,5109:363,-93,-16,0,0,0.459392 -19569,5109:362,-92,-16,0,0,0.451111 -19570,5109:361,-91,-16,0,0,0.444962 -19571,5109:360,-90,-16,0,0,0.437414 -19572,5108:469,-89,-16,0,0,0.432465 -19573,5108:468,-88,-16,0,0,0.42914 -19574,5108:467,-87,-16,0,0,0.424715 -19575,5108:466,-86,-16,0,0,0.418577 -19576,5108:465,-85,-16,0,0,0.410871 -19577,5108:364,-84,-16,0,0,0.40556 -19578,5108:363,-83,-16,0,0,0.403554 -19579,5108:362,-82,-16,0,0,0.400245 -19580,5108:361,-81,-16,0,0,0.400566 -19581,5108:360,-80,-16,0,0,0.398471 -19582,5107:469,-79,-16,0,0,0.397117 -19583,5107:468,-78,-16,0,0,0.397412 -19584,5107:467,-77,-16,0,0,0.40106 -19585,5107:466,-76,-16,0,0,0.403209 -19586,5107:465,-75,-16,0,0,0.410423 -19587,5107:364,-74,-16,0,0,0.42459 -19588,5107:363,-73,-16,0,0,0.437085 -19589,5107:362,-72,-16,0,0,0.456357 -19590,5107:361,-71,-16,0,0,0.446536 -19591,5104:360,-40,-16,0,0,0.636002 -19592,5103:469,-39,-16,0,0,0.632594 -19593,5103:468,-38,-16,0,0,0.629964 -19594,5103:467,-37,-16,0,0,0.623981 -19595,5103:466,-36,-16,0,0,0.623932 -19596,5103:465,-35,-16,0,0,0.626797 -19597,5103:364,-34,-16,0,0,0.627086 -19598,5103:363,-33,-16,0,0,0.625017 -19599,5103:362,-32,-16,0,0,0.623836 -19600,5103:361,-31,-16,0,0,0.620624 -19601,5103:360,-30,-16,0,0,0.615239 -19602,5102:469,-29,-16,0,0,0.609336 -19603,5102:468,-28,-16,0,0,0.595062 -19604,5102:467,-27,-16,0,0,0.583924 -19605,5102:466,-26,-16,0,0,0.583125 -19606,5102:465,-25,-16,0,0,0.584748 -19607,5102:364,-24,-16,0,0,0.585845 -19608,5102:363,-23,-16,0,0,0.585895 -19609,5102:362,-22,-16,0,0,0.584673 -19610,5102:361,-21,-16,0,0,0.582976 -19611,5102:360,-20,-16,0,0,0.581551 -19612,5101:469,-19,-16,0,0,0.578422 -19613,5101:468,-18,-16,0,0,0.572172 -19614,5101:467,-17,-16,0,0,0.567437 -19615,5101:466,-16,-16,0,0,0.562842 -19616,5101:465,-15,-16,0,0,0.558134 -19617,5101:364,-14,-16,0,0,0.553239 -19618,5101:363,-13,-16,0,0,0.546754 -19619,5101:362,-12,-16,0,0,0.538493 -19620,5101:361,-11,-16,0,0,0.529468 -19621,5101:360,-10,-16,0,0,0.523755 -19622,5100:469,-9,-16,0,0,0.517628 -19623,5100:468,-8,-16,0,0,0.512161 -19624,5100:467,-7,-16,0,0,0.505999 -19625,5100:466,-6,-16,0,0,0.499295 -19626,5100:465,-5,-16,0,0,0.491976 -19627,5100:364,-4,-16,0,0,0.486609 -19628,5100:363,-3,-16,0,0,0.484736 -19629,5100:362,-2,-16,0,0,0.480144 -19630,5100:361,-1,-16,0,0,0.477119 -19631,3100:361,0,-16,0,0,0.475581 -19632,3100:361,1,-16,0,0,0.473557 -19633,3100:362,2,-16,0,0,0.470101 -19634,3100:363,3,-16,0,0,0.467746 -19635,3100:364,4,-16,0,0,0.466058 -19636,3100:465,5,-16,0,0,0.465369 -19637,3100:466,6,-16,0,0,0.464831 -19638,3100:467,7,-16,0,0,0.464218 -19639,3100:468,8,-16,0,0,0.464269 -19640,3100:469,9,-16,0,0,0.463732 -19641,3101:360,10,-16,0,0,0.46054 -19642,3101:361,11,-16,0,0,0.461332 -19643,3101:362,12,-16,0,0,0.453172 -19644,3101:363,13,-16,0,0,0.403505 -19645,3103:465,35,-16,0,0,0.644686 -19646,3103:466,36,-16,0,0,0.646285 -19647,3103:467,37,-16,0,0,0.644168 -19648,3103:468,38,-16,0,0,0.627086 -19649,3103:469,39,-16,0,0,0.643956 -19650,3104:360,40,-16,0,0,0.655112 -19651,3104:361,41,-16,0,0,0.66156 -19652,3104:362,42,-16,0,0,0.679152 -19653,3104:363,43,-16,0,0,0.685521 -19654,3104:469,49,-16,0,0,0.619656 -19655,3105:360,50,-16,0,0,0.608481 -19656,3105:361,51,-16,0,0,0.606839 -19657,3105:362,52,-16,0,0,0.603476 -19658,3105:363,53,-16,0,0,0.601187 -19659,3105:364,54,-16,0,0,0.603795 -19660,3105:465,55,-16,0,0,0.601729 -19661,3105:466,56,-16,0,0,0.603353 -19662,3105:467,57,-16,0,0,0.603107 -19663,3105:468,58,-16,0,0,0.599017 -19664,3105:469,59,-16,0,0,0.593923 -19665,3106:360,60,-16,0,0,0.593576 -19666,3106:361,61,-16,0,0,0.591369 -19667,3106:362,62,-16,0,0,0.582476 -19668,3106:363,63,-16,0,0,0.5835 -19669,3106:364,64,-16,0,0,0.577345 -19670,3106:465,65,-16,0,0,0.571794 -19671,3106:466,66,-16,0,0,0.575162 -19672,3106:467,67,-16,0,0,0.576116 -19673,3106:468,68,-16,0,0,0.572273 -19674,3106:469,69,-16,0,0,0.567387 -19675,3107:360,70,-16,0,0,0.568219 -19676,3107:361,71,-16,0,0,0.566227 -19677,3107:362,72,-16,0,0,0.558615 -19678,3107:364,74,-16,0,0,0.557652 -19679,3107:465,75,-16,0,0,0.555497 -19680,3107:466,76,-16,0,0,0.553162 -19681,3107:467,77,-16,0,0,0.55235 -19682,3107:468,78,-16,0,0,0.552171 -19683,3107:469,79,-16,0,0,0.54464 -19684,3108:360,80,-16,0,0,0.556411 -19685,3108:361,81,-16,0,0,0.557069 -19686,3108:362,82,-16,0,0,0.552806 -19687,3108:363,83,-16,0,0,0.53742 -19688,3108:364,84,-16,0,0,0.553975 -19689,3108:465,85,-16,0,0,0.552832 -19690,3108:466,86,-16,0,0,0.540892 -19691,3108:467,87,-16,0,0,0.550977 -19692,3108:468,88,-16,0,0,0.545532 -19693,3108:469,89,-16,0,0,0.547314 -19694,3109:360,90,-16,0,0,0.55334 -19695,3109:361,91,-16,0,0,0.542957 -19696,3109:362,92,-16,0,0,0.551257 -19697,3109:363,93,-16,0,0,0.53982 -19698,3109:364,94,-16,0,0,0.540764 -19699,3109:465,95,-16,0,0,0.540815 -19700,3109:466,96,-16,0,0,0.525856 -19701,3109:467,97,-16,0,0,0.541325 -19702,3109:468,98,-16,0,0,0.527342 -19703,3109:469,99,-16,0,0,0.523551 -19704,3110:360,100,-16,0,0,0.521654 -19705,3110:361,101,-16,0,0,0.53673 -19706,3110:362,102,-16,0,0,0.532333 -19707,3110:363,103,-16,0,0,0.543289 -19708,3110:364,104,-16,0,0,0.55118 -19709,3110:465,105,-16,0,0,0.541121 -19710,3110:466,106,-16,0,0,0.543773 -19711,3110:467,107,-16,0,0,0.545761 -19712,3110:468,108,-16,0,0,0.554406 -19713,3110:469,109,-16,0,0,0.560362 -19714,3111:360,110,-16,0,0,0.566554 -19715,3111:361,111,-16,0,0,0.572976 -19716,3111:362,112,-16,0,0,0.571266 -19717,3111:363,113,-16,0,0,0.582551 -19718,3111:364,114,-16,0,0,0.595954 -19719,3111:465,115,-16,0,0,0.603083 -19720,3111:466,116,-16,0,0,0.611657 -19721,3111:467,117,-16,0,0,0.6314 -19722,3111:468,118,-16,0,0,0.65611 -19723,3115:360,150,-16,0,0,0.60706 -19724,3115:361,151,-16,0,0,0.611853 -19725,3115:362,152,-16,0,0,0.60603 -19726,3115:363,153,-16,0,0,0.605686 -19727,3115:364,154,-16,0,0,0.588361 -19728,3115:465,155,-16,0,0,0.584349 -19729,3115:466,156,-16,0,0,0.583575 -19730,3115:467,157,-16,0,0,0.591766 -21245,5108:102,-82,-10,0,0,0.47594 -19731,3115:468,158,-16,0,0,0.591741 -19732,3115:469,159,-16,0,0,0.582126 -19733,3116:360,160,-16,0,0,0.581676 -19734,3116:361,161,-16,0,0,0.595235 -19735,3116:362,162,-16,0,0,0.592957 -19736,3116:363,163,-16,0,0,0.591194 -19737,3116:364,164,-16,0,0,0.590052 -19738,3116:465,165,-16,0,0,0.584648 -19739,3116:466,166,-16,0,0,0.577846 -19740,3116:467,167,-16,0,0,0.580401 -19741,3116:468,168,-16,0,0,0.574509 -19742,3116:469,169,-16,0,0,0.569201 -19743,3117:360,170,-16,0,0,0.565166 -19744,3117:361,171,-16,0,0,0.566251 -19745,3117:362,172,-16,0,0,0.561527 -19746,3117:363,173,-16,0,0,0.555345 -19747,3117:364,174,-16,0,0,0.56461 -19748,3117:465,175,-16,0,0,0.566428 -19749,3117:466,176,-16,0,0,0.557146 -19750,3117:467,177,-16,0,0,0.566504 -19751,3117:468,178,-16,0,0,0.564257 -19752,3117:469,179,-16,0,0,0.564054 -19753,3118:360,180,-16,0,0,0.559046 -19754,5118:350,-180,-15,0,0,0.576467 -19755,5117:459,-179,-15,0,0,0.576668 -19756,5117:458,-178,-15,0,0,0.574987 -19757,5117:457,-177,-15,0,0,0.576266 -19758,5117:456,-176,-15,0,0,0.584573 -19759,5117:455,-175,-15,0,0,0.586493 -19760,5117:354,-174,-15,0,0,0.582976 -19761,5117:353,-173,-15,0,0,0.585072 -19762,5117:352,-172,-15,0,0,0.585646 -19763,5117:351,-171,-15,0,0,0.585571 -19764,5117:350,-170,-15,0,0,0.586419 -19765,5116:459,-169,-15,0,0,0.589629 -19766,5116:458,-168,-15,0,0,0.587738 -19767,5116:457,-167,-15,0,0,0.589927 -19768,5116:456,-166,-15,0,0,0.590474 -19769,5116:455,-165,-15,0,0,0.594146 -19770,5116:354,-164,-15,0,0,0.598845 -19771,5116:353,-163,-15,0,0,0.596151 -19772,5116:352,-162,-15,0,0,0.600275 -19773,5116:351,-161,-15,0,0,0.602861 -19774,5116:350,-160,-15,0,0,0.605564 -19775,5115:459,-159,-15,0,0,0.610119 -19776,5115:458,-158,-15,0,0,0.616843 -19777,5115:457,-157,-15,0,0,0.616211 -19778,5115:456,-156,-15,0,0,0.618371 -19779,5115:455,-155,-15,0,0,0.621204 -19780,5115:354,-154,-15,0,0,0.62234 -19781,5115:353,-153,-15,0,0,0.624944 -19782,5115:352,-152,-15,0,0,0.628669 -19783,5115:351,-151,-15,0,0,0.63331 -19784,5115:350,-150,-15,0,0,0.633168 -19785,5114:459,-149,-15,0,0,0.631113 -19786,5114:458,-148,-15,0,0,0.632475 -19787,5114:457,-147,-15,0,0,0.632905 -19788,5114:456,-146,-15,0,0,0.63226 -19789,5114:455,-145,-15,0,0,0.629677 -19790,5114:354,-144,-15,0,0,0.628838 -19791,5114:353,-143,-15,0,0,0.629581 -19792,5114:352,-142,-15,0,0,0.627517 -19793,5114:351,-141,-15,0,0,0.628765 -19794,5114:350,-140,-15,0,0,0.62831 -19795,5113:459,-139,-15,0,0,0.627157 -19796,5113:458,-138,-15,0,0,0.625666 -19797,5113:457,-137,-15,0,0,0.626244 -19798,5113:456,-136,-15,0,0,0.626629 -19799,5113:455,-135,-15,0,0,0.625089 -19800,5113:354,-134,-15,0,0,0.623523 -19801,5113:353,-133,-15,0,0,0.623064 -19802,5113:352,-132,-15,0,0,0.622413 -19803,5113:351,-131,-15,0,0,0.61951 -19804,5113:350,-130,-15,0,0,0.61609 -19805,5112:459,-129,-15,0,0,0.614387 -19806,5112:458,-128,-15,0,0,0.615117 -19807,5112:457,-127,-15,0,0,0.610412 -19808,5112:456,-126,-15,0,0,0.612658 -19809,5112:455,-125,-15,0,0,0.609043 -19810,5112:354,-124,-15,0,0,0.610901 -19811,5112:353,-123,-15,0,0,0.610241 -19812,5112:352,-122,-15,0,0,0.60941 -19813,5112:351,-121,-15,0,0,0.610876 -19814,5112:350,-120,-15,0,0,0.609361 -19815,5111:459,-119,-15,0,0,0.605883 -19816,5111:458,-118,-15,0,0,0.602369 -19817,5111:457,-117,-15,0,0,0.59919 -19818,5111:456,-116,-15,0,0,0.594369 -19819,5111:455,-115,-15,0,0,0.58953 -19820,5111:354,-114,-15,0,0,0.585347 -19821,5111:353,-113,-15,0,0,0.579123 -19822,5111:352,-112,-15,0,0,0.572147 -19823,5111:351,-111,-15,0,0,0.566983 -19824,5111:350,-110,-15,0,0,0.559958 -19825,5110:459,-109,-15,0,0,0.554609 -19826,5110:458,-108,-15,0,0,0.547645 -19827,5110:457,-107,-15,0,0,0.541121 -19828,5110:456,-106,-15,0,0,0.531233 -19829,5110:455,-105,-15,0,0,0.520962 -19830,5110:354,-104,-15,0,0,0.515036 -19831,5110:353,-103,-15,0,0,0.50908 -19832,5110:352,-102,-15,0,0,0.502172 -19833,5110:351,-101,-15,0,0,0.499193 -19834,5110:350,-100,-15,0,0,0.49444 -19835,5109:459,-99,-15,0,0,0.490075 -19836,5109:458,-98,-15,0,0,0.488149 -19837,5109:457,-97,-15,0,0,0.482734 -19838,5109:456,-96,-15,0,0,0.471355 -19839,5109:455,-95,-15,0,0,0.461689 -19840,5109:354,-94,-15,0,0,0.458601 -19841,5109:353,-93,-15,0,0,0.453046 -19842,5109:352,-92,-15,0,0,0.439843 -19843,5109:351,-91,-15,0,0,0.431507 -19844,5109:350,-90,-15,0,0,0.436176 -19845,5108:459,-89,-15,0,0,0.436757 -19846,5108:458,-88,-15,0,0,0.42675 -19847,5108:457,-87,-15,0,0,0.419928 -19848,5108:456,-86,-15,0,0,0.414756 -19849,5108:455,-85,-15,0,0,0.404965 -19850,5108:354,-84,-15,0,0,0.40143 -19851,5108:353,-83,-15,0,0,0.399802 -19852,5108:352,-82,-15,0,0,0.400146 -19853,5108:351,-81,-15,0,0,0.399185 -19854,5108:350,-80,-15,0,0,0.399407 -19855,5107:459,-79,-15,0,0,0.401479 -19856,5107:458,-78,-15,0,0,0.404866 -19857,5107:457,-77,-15,0,0,0.405931 -19858,5107:456,-76,-15,0,0,0.418127 -19859,5107:455,-75,-15,0,0,0.440324 -19860,5107:354,-74,-15,0,0,0.453631 -19861,5107:353,-73,-15,0,0,0.469845 -19862,5107:352,-72,-15,0,0,0.47407 -19863,5107:351,-71,-15,0,0,0.459494 -19864,5103:459,-39,-15,0,0,0.622823 -19865,5103:458,-38,-15,0,0,0.621906 -19866,5103:457,-37,-15,0,0,0.624197 -19867,5103:456,-36,-15,0,0,0.624704 -19868,5103:455,-35,-15,0,0,0.625281 -19869,5103:354,-34,-15,0,0,0.623209 -19870,5103:353,-33,-15,0,0,0.621204 -19871,5103:352,-32,-15,0,0,0.618638 -19872,5103:351,-31,-15,0,0,0.614533 -19873,5103:350,-30,-15,0,0,0.610364 -19874,5102:459,-29,-15,0,0,0.606496 -19875,5102:458,-28,-15,0,0,0.599215 -19876,5102:457,-27,-15,0,0,0.586867 -19877,5102:456,-26,-15,0,0,0.580175 -19878,5102:455,-25,-15,0,0,0.579074 -19879,5102:354,-24,-15,0,0,0.5798 -19880,5102:353,-23,-15,0,0,0.577545 -19881,5102:352,-22,-15,0,0,0.573605 -19882,5102:351,-21,-15,0,0,0.570335 -19883,5102:350,-20,-15,0,0,0.566907 -19884,5101:459,-19,-15,0,0,0.565393 -19885,5101:458,-18,-15,0,0,0.561223 -19886,5101:457,-17,-15,0,0,0.556309 -19887,5101:456,-16,-15,0,0,0.550037 -19888,5101:455,-15,-15,0,0,0.542754 -19889,5101:354,-14,-15,0,0,0.536756 -19890,5101:353,-13,-15,0,0,0.530645 -19891,5101:352,-12,-15,0,0,0.524217 -19892,5101:351,-11,-15,0,0,0.521372 -19893,5101:350,-10,-15,0,0,0.515062 -19894,5100:459,-9,-15,0,0,0.509645 -19895,5100:458,-8,-15,0,0,0.502994 -19896,5100:457,-7,-15,0,0,0.498139 -19897,5100:456,-6,-15,0,0,0.493362 -19898,5100:455,-5,-15,0,0,0.488612 -19899,5100:354,-4,-15,0,0,0.484505 -19900,5100:353,-3,-15,0,0,0.482093 -19901,5100:352,-2,-15,0,0,0.47899 -19902,5100:351,-1,-15,0,0,0.477324 -19903,3100:351,0,-15,0,0,0.476324 -19904,3100:351,1,-15,0,0,0.473787 -19905,3100:352,2,-15,0,0,0.471815 -19906,3100:353,3,-15,0,0,0.470971 -19907,3100:354,4,-15,0,0,0.470101 -19908,3100:455,5,-15,0,0,0.468897 -19909,3100:456,6,-15,0,0,0.469512 -19910,3100:457,7,-15,0,0,0.468284 -19911,3100:458,8,-15,0,0,0.469153 -19912,3100:459,9,-15,0,0,0.474044 -19913,3101:350,10,-15,0,0,0.480093 -19914,3101:351,11,-15,0,0,0.478657 -19915,3101:352,12,-15,0,0,0.43706 -19916,3103:456,36,-15,0,0,0.659694 -19917,3103:457,37,-15,0,0,0.644098 -19918,3103:458,38,-15,0,0,0.654973 -19919,3103:459,39,-15,0,0,0.647646 -19920,3104:350,40,-15,0,0,0.659209 -19921,3104:351,41,-15,0,0,0.665688 -19922,3104:352,42,-15,0,0,0.676775 -19923,3104:353,43,-15,0,0,0.68665 -19924,3104:354,44,-15,0,0,0.698029 -19925,3104:459,49,-15,0,0,0.632571 -19926,3105:350,50,-15,0,0,0.619268 -19927,3105:351,51,-15,0,0,0.613998 -19928,3105:352,52,-15,0,0,0.613535 -19929,3105:353,53,-15,0,0,0.612341 -19930,3105:354,54,-15,0,0,0.610852 -19931,3105:455,55,-15,0,0,0.61007 -19932,3105:456,56,-15,0,0,0.609508 -19933,3105:457,57,-15,0,0,0.608309 -19934,3105:458,58,-15,0,0,0.604311 -19935,3105:459,59,-15,0,0,0.601532 -19936,3106:350,60,-15,0,0,0.597511 -19937,3106:351,61,-15,0,0,0.599659 -19938,3106:352,62,-15,0,0,0.594444 -19939,3106:353,63,-15,0,0,0.591666 -19940,3106:354,64,-15,0,0,0.589082 -19941,3106:455,65,-15,0,0,0.585745 -19942,3106:456,66,-15,0,0,0.585446 -19943,3106:457,67,-15,0,0,0.584773 -19944,3106:458,68,-15,0,0,0.582726 -19945,3106:459,69,-15,0,0,0.575589 -19946,3107:350,70,-15,0,0,0.570259 -19947,3107:351,71,-15,0,0,0.579324 -19948,3107:352,72,-15,0,0,0.580626 -19949,3107:354,74,-15,0,0,0.573831 -19950,3107:455,75,-15,0,0,0.578072 -19951,3107:456,76,-15,0,0,0.572876 -19952,3107:457,77,-15,0,0,0.576392 -19953,3107:458,78,-15,0,0,0.574735 -19954,3107:459,79,-15,0,0,0.562361 -19955,3108:350,80,-15,0,0,0.574735 -19956,3108:351,81,-15,0,0,0.564813 -19957,3108:352,82,-15,0,0,0.562968 -19958,3108:353,83,-15,0,0,0.573454 -19959,3108:354,84,-15,0,0,0.577144 -19960,3108:455,85,-15,0,0,0.570864 -19961,3108:456,86,-15,0,0,0.565039 -19962,3108:457,87,-15,0,0,0.56716 -19963,3108:458,88,-15,0,0,0.566907 -19964,3108:459,89,-15,0,0,0.570838 -19965,3109:350,90,-15,0,0,0.560667 -19966,3109:351,91,-15,0,0,0.565949 -19967,3109:352,92,-15,0,0,0.561729 -19968,3109:353,93,-15,0,0,0.574434 -19969,3109:354,94,-15,0,0,0.549629 -19970,3109:455,95,-15,0,0,0.558058 -19971,3109:456,96,-15,0,0,0.550646 -19972,3109:457,97,-15,0,0,0.559071 -19973,3109:458,98,-15,0,0,0.553949 -19974,3109:459,99,-15,0,0,0.553898 -19975,3110:350,100,-15,0,0,0.557019 -19976,3110:351,101,-15,0,0,0.542575 -19977,3110:352,102,-15,0,0,0.539412 -19978,3110:353,103,-15,0,0,0.547568 -19979,3110:354,104,-15,0,0,0.561805 -19980,3110:455,105,-15,0,0,0.570335 -19981,3110:456,106,-15,0,0,0.561704 -19982,3110:457,107,-15,0,0,0.563246 -19983,3110:458,108,-15,0,0,0.566201 -19984,3110:459,109,-15,0,0,0.572322 -19985,3111:350,110,-15,0,0,0.589878 -19986,3111:351,111,-15,0,0,0.596176 -19987,3111:352,112,-15,0,0,0.611389 -19988,3111:353,113,-15,0,0,0.614752 -19989,3111:354,114,-15,0,0,0.612268 -19990,3111:455,115,-15,0,0,0.622292 -19991,3111:456,116,-15,0,0,0.62819 -19992,3111:457,117,-15,0,0,0.637381 -19993,3111:458,118,-15,0,0,0.645933 -19994,3111:459,119,-15,0,0,0.649543 -19995,3112:350,120,-15,0,0,0.650594 -19996,3112:351,121,-15,0,0,0.653508 -19997,3114:457,147,-15,0,0,0.64032 -19998,3114:458,148,-15,0,0,0.622847 -19999,3114:459,149,-15,0,0,0.623354 -20000,3115:350,150,-15,0,0,0.618032 -20001,3115:351,151,-15,0,0,0.60264 -20002,3115:352,152,-15,0,0,0.606912 -20003,3115:353,153,-15,0,0,0.611951 -20004,3115:354,154,-15,0,0,0.608945 -20005,3115:455,155,-15,0,0,0.605073 -20006,3115:456,156,-15,0,0,0.604581 -20007,3115:457,157,-15,0,0,0.606472 -20008,3115:458,158,-15,0,0,0.602295 -20009,3115:459,159,-15,0,0,0.604262 -20010,3116:350,160,-15,0,0,0.603426 -20011,3116:351,161,-15,0,0,0.598055 -20012,3116:352,162,-15,0,0,0.601039 -20013,3116:353,163,-15,0,0,0.594518 -20014,3116:354,164,-15,0,0,0.591046 -20015,3116:455,165,-15,0,0,0.589579 -20016,3116:456,166,-15,0,0,0.589455 -20017,3116:457,167,-15,0,0,0.591219 -20018,3116:458,168,-15,0,0,0.584673 -20019,3116:459,169,-15,0,0,0.586768 -20020,3117:350,170,-15,0,0,0.584823 -20021,3117:351,171,-15,0,0,0.591666 -20022,3117:352,172,-15,0,0,0.588211 -20023,3117:353,173,-15,0,0,0.58045 -20024,3117:354,174,-15,0,0,0.582776 -20025,3117:455,175,-15,0,0,0.587291 -20026,3117:456,176,-15,0,0,0.588958 -20027,3117:457,177,-15,0,0,0.590251 -20028,3117:458,178,-15,0,0,0.585895 -20029,3117:459,179,-15,0,0,0.584149 -20030,3118:350,180,-15,0,0,0.576467 -20031,5118:140,-180,-14,0,0,0.594493 -20032,5117:249,-179,-14,0,0,0.593502 -20033,5117:248,-178,-14,0,0,0.595533 -20034,5117:247,-177,-14,0,0,0.601803 -20035,5117:246,-176,-14,0,0,0.598993 -20036,5117:245,-175,-14,0,0,0.602812 -20037,5117:144,-174,-14,0,0,0.600645 -20038,5117:143,-173,-14,0,0,0.601729 -20039,5117:142,-172,-14,0,0,0.605736 -20040,5117:141,-171,-14,0,0,0.609165 -20041,5117:140,-170,-14,0,0,0.612731 -20042,5116:249,-169,-14,0,0,0.607966 -20043,5116:248,-168,-14,0,0,0.607942 -20044,5116:247,-167,-14,0,0,0.611414 -20045,5116:246,-166,-14,0,0,0.616527 -20046,5116:245,-165,-14,0,0,0.616017 -20047,5116:144,-164,-14,0,0,0.622413 -20048,5116:143,-163,-14,0,0,0.620914 -20049,5116:142,-162,-14,0,0,0.621591 -20050,5116:141,-161,-14,0,0,0.622654 -20051,5116:140,-160,-14,0,0,0.623981 -20052,5115:249,-159,-14,0,0,0.629293 -20053,5115:248,-158,-14,0,0,0.633549 -20054,5115:247,-157,-14,0,0,0.632594 -20055,5115:246,-156,-14,0,0,0.635098 -20056,5115:245,-155,-14,0,0,0.640652 -20057,5115:144,-154,-14,0,0,0.64332 -20058,5115:143,-153,-14,0,0,0.646919 -20059,5115:142,-152,-14,0,0,0.64713 -20060,5115:141,-151,-14,0,0,0.645274 -20061,5115:140,-150,-14,0,0,0.646708 -20062,5114:249,-149,-14,0,0,0.642447 -20063,5114:248,-148,-14,0,0,0.647505 -20064,5114:247,-147,-14,0,0,0.648654 -20065,5114:246,-146,-14,0,0,0.647575 -20066,5114:245,-145,-14,0,0,0.645228 -20067,5114:144,-144,-14,0,0,0.644874 -20068,5114:143,-143,-14,0,0,0.643202 -20069,5114:142,-142,-14,0,0,0.639776 -20070,5114:141,-141,-14,0,0,0.640604 -20071,5114:140,-140,-14,0,0,0.639586 -20072,5113:249,-139,-14,0,0,0.637998 -20073,5113:248,-138,-14,0,0,0.637975 -20074,5113:247,-137,-14,0,0,0.63897 -20075,5113:246,-136,-14,0,0,0.638212 -20076,5113:245,-135,-14,0,0,0.636455 -20077,5113:144,-134,-14,0,0,0.634479 -20078,5113:143,-133,-14,0,0,0.634408 -20079,5113:142,-132,-14,0,0,0.636074 -20080,5113:141,-131,-14,0,0,0.63655 -20081,5113:140,-130,-14,0,0,0.635193 -20082,5112:249,-129,-14,0,0,0.631113 -20083,5112:248,-128,-14,0,0,0.629868 -20084,5112:247,-127,-14,0,0,0.627494 -20085,5112:246,-126,-14,0,0,0.628045 -20086,5112:245,-125,-14,0,0,0.623715 -20087,5112:144,-124,-14,0,0,0.62147 -20088,5112:143,-123,-14,0,0,0.623571 -20089,5112:142,-122,-14,0,0,0.618711 -20090,5112:141,-121,-14,0,0,0.616989 -20091,5112:140,-120,-14,0,0,0.614631 -20092,5111:249,-119,-14,0,0,0.611462 -20093,5111:248,-118,-14,0,0,0.605122 -20094,5111:247,-117,-14,0,0,0.599757 -20095,5111:246,-116,-14,0,0,0.592559 -20096,5111:245,-115,-14,0,0,0.587714 -20097,5111:144,-114,-14,0,0,0.582176 -20098,5111:143,-113,-14,0,0,0.575288 -20099,5111:142,-112,-14,0,0,0.569151 -20100,5111:141,-111,-14,0,0,0.563347 -20101,5111:140,-110,-14,0,0,0.556309 -20102,5110:249,-109,-14,0,0,0.551587 -20103,5110:248,-108,-14,0,0,0.546779 -20104,5110:247,-107,-14,0,0,0.54209 -20105,5110:246,-106,-14,0,0,0.536372 -20106,5110:245,-105,-14,0,0,0.529007 -20107,5110:144,-104,-14,0,0,0.516781 -20108,5110:143,-103,-14,0,0,0.507206 -20109,5110:142,-102,-14,0,0,0.499089 -20110,5110:141,-101,-14,0,0,0.495339 -20111,5110:140,-100,-14,0,0,0.490357 -20112,5109:249,-99,-14,0,0,0.48235 -20113,5109:248,-98,-14,0,0,0.477349 -20114,5109:247,-97,-14,0,0,0.47535 -20115,5109:246,-96,-14,0,0,0.470458 -20116,5109:245,-95,-14,0,0,0.461128 -20117,5109:144,-94,-14,0,0,0.452179 -20118,5109:143,-93,-14,0,0,0.446308 -20119,5109:142,-92,-14,0,0,0.43959 -20120,5109:141,-91,-14,0,0,0.429668 -20121,5109:140,-90,-14,0,0,0.42464 -20122,5108:249,-89,-14,0,0,0.423034 -20123,5108:248,-88,-14,0,0,0.418927 -20124,5108:247,-87,-14,0,0,0.413186 -20125,5108:246,-86,-14,0,0,0.411692 -20126,5108:245,-85,-14,0,0,0.40727 -20127,5108:144,-84,-14,0,0,0.403184 -20128,5108:143,-83,-14,0,0,0.397707 -20129,5108:142,-82,-14,0,0,0.397585 -20130,5108:141,-81,-14,0,0,0.398693 -20131,5108:140,-80,-14,0,0,0.40442 -20132,5107:249,-79,-14,0,0,0.409976 -20133,5107:248,-78,-14,0,0,0.419027 -20134,5107:247,-77,-14,0,0,0.4267 -20135,5107:246,-76,-14,0,0,0.438502 -20136,5107:245,-75,-14,0,0,0.449788 -20137,5107:144,-74,-14,0,0,0.452587 -20138,5107:143,-73,-14,0,0,0.458754 -20139,5107:142,-72,-14,0,0,0.459698 -20140,5103:249,-39,-14,0,0,0.597141 -20141,5103:248,-38,-14,0,0,0.626532 -20142,5103:247,-37,-14,0,0,0.623088 -20143,5103:246,-36,-14,0,0,0.623402 -20144,5103:245,-35,-14,0,0,0.622581 -20145,5103:144,-34,-14,0,0,0.619849 -20146,5103:143,-33,-14,0,0,0.61626 -20147,5103:142,-32,-14,0,0,0.61256 -20148,5103:141,-31,-14,0,0,0.607574 -20149,5103:140,-30,-14,0,0,0.603328 -20150,5102:249,-29,-14,0,0,0.599387 -20151,5102:248,-28,-14,0,0,0.595186 -20152,5102:247,-27,-14,0,0,0.589754 -20153,5102:246,-26,-14,0,0,0.5799 -20154,5102:245,-25,-14,0,0,0.577119 -20155,5102:144,-24,-14,0,0,0.57456 -20156,5102:143,-23,-14,0,0,0.572574 -20157,5102:142,-22,-14,0,0,0.569454 -20158,5102:141,-21,-14,0,0,0.56514 -20159,5102:140,-20,-14,0,0,0.560768 -20160,5101:249,-19,-14,0,0,0.556004 -20161,5101:248,-18,-14,0,0,0.549298 -20162,5101:247,-17,-14,0,0,0.542422 -20163,5101:246,-16,-14,0,0,0.539846 -20164,5101:245,-15,-14,0,0,0.535912 -20165,5101:144,-14,-14,0,0,0.53443 -20166,5101:143,-13,-14,0,0,0.52939 -20167,5101:142,-12,-14,0,0,0.521782 -20168,5101:141,-11,-14,0,0,0.516499 -20169,5101:140,-10,-14,0,0,0.511443 -20170,5100:249,-9,-14,0,0,0.506153 -20171,5100:248,-8,-14,0,0,0.500888 -20172,5100:247,-7,-14,0,0,0.495622 -20173,5100:246,-6,-14,0,0,0.490922 -20174,5100:245,-5,-14,0,0,0.48756 -20175,5100:144,-4,-14,0,0,0.485763 -20176,5100:143,-3,-14,0,0,0.484145 -20177,5100:142,-2,-14,0,0,0.480939 -20178,5100:141,-1,-14,0,0,0.481042 -20179,3100:141,0,-14,0,0,0.479375 -20180,3100:141,1,-14,0,0,0.477221 -20181,3100:142,2,-14,0,0,0.475324 -20182,3100:143,3,-14,0,0,0.474736 -20183,3100:144,4,-14,0,0,0.474736 -20184,3100:245,5,-14,0,0,0.475735 -20185,3100:246,6,-14,0,0,0.4743 -20186,3100:247,7,-14,0,0,0.48235 -20187,3100:248,8,-14,0,0,0.489331 -20188,3100:249,9,-14,0,0,0.507334 -20189,3101:140,10,-14,0,0,0.522859 -20190,3101:141,11,-14,0,0,0.487867 -20191,3103:248,38,-14,0,0,0.639184 -20192,3103:249,39,-14,0,0,0.669131 -20193,3104:140,40,-14,0,0,0.666967 -20194,3104:141,41,-14,0,0,0.669381 -20195,3104:142,42,-14,0,0,0.678928 -20196,3104:143,43,-14,0,0,0.689384 -20197,3105:140,50,-14,0,0,0.631806 -20198,3105:141,51,-14,0,0,0.624246 -20199,3105:142,52,-14,0,0,0.616624 -20200,3105:143,53,-14,0,0,0.613657 -20201,3105:144,54,-14,0,0,0.612268 -20202,3105:245,55,-14,0,0,0.61278 -20203,3105:246,56,-14,0,0,0.614899 -20204,3105:247,57,-14,0,0,0.617474 -20205,3105:248,58,-14,0,0,0.613754 -20206,3105:249,59,-14,0,0,0.60941 -20207,3106:140,60,-14,0,0,0.608799 -20208,3106:141,61,-14,0,0,0.606153 -20209,3106:142,62,-14,0,0,0.602812 -20210,3106:143,63,-14,0,0,0.601335 -20211,3106:144,64,-14,0,0,0.599412 -20212,3106:245,65,-14,0,0,0.596843 -20213,3106:246,66,-14,0,0,0.596572 -20214,3106:247,67,-14,0,0,0.595136 -20215,3106:248,68,-14,0,0,0.594741 -20216,3106:249,69,-14,0,0,0.59422 -20217,3107:140,70,-14,0,0,0.594716 -20218,3107:141,71,-14,0,0,0.59427 -20219,3107:142,72,-14,0,0,0.59246 -20220,3107:144,74,-14,0,0,0.588261 -20221,3107:245,75,-14,0,0,0.591815 -20222,3107:246,76,-14,0,0,0.589032 -20223,3107:247,77,-14,0,0,0.587962 -20224,3107:248,78,-14,0,0,0.585571 -20225,3107:249,79,-14,0,0,0.590846 -20226,3108:140,80,-14,0,0,0.596547 -20227,3108:141,81,-14,0,0,0.59365 -20228,3108:142,82,-14,0,0,0.589232 -20229,3108:143,83,-14,0,0,0.585596 -20230,3108:144,84,-14,0,0,0.587863 -20231,3108:245,85,-14,0,0,0.594394 -20232,3108:246,86,-14,0,0,0.596176 -20233,3108:247,87,-14,0,0,0.586219 -20234,3108:248,88,-14,0,0,0.586269 -20235,3108:249,89,-14,0,0,0.588385 -20236,3109:140,90,-14,0,0,0.578197 -20237,3109:141,91,-14,0,0,0.570738 -20238,3109:142,92,-14,0,0,0.570335 -20239,3109:143,93,-14,0,0,0.582051 -20240,3109:144,94,-14,0,0,0.569075 -20241,3109:245,95,-14,0,0,0.558236 -20242,3109:246,96,-14,0,0,0.562665 -20243,3109:247,97,-14,0,0,0.575388 -20244,3109:248,98,-14,0,0,0.568798 -20245,3109:249,99,-14,0,0,0.566806 -20246,3110:140,100,-14,0,0,0.572649 -20247,3110:141,101,-14,0,0,0.572298 -20248,3110:142,102,-14,0,0,0.566781 -20249,3110:143,103,-14,0,0,0.565318 -20250,3110:144,104,-14,0,0,0.571014 -20251,3110:245,105,-14,0,0,0.577094 -20252,3110:246,106,-14,0,0,0.584124 -20253,3110:247,107,-14,0,0,0.587141 -20254,3110:248,108,-14,0,0,0.597684 -20255,3110:249,109,-14,0,0,0.598302 -20256,3111:140,110,-14,0,0,0.610559 -20257,3111:141,111,-14,0,0,0.607697 -20258,3111:142,112,-14,0,0,0.612219 -20259,3111:143,113,-14,0,0,0.620358 -20260,3111:144,114,-14,0,0,0.623715 -20261,3111:245,115,-14,0,0,0.632809 -20262,3111:246,116,-14,0,0,0.641597 -20263,3111:247,117,-14,0,0,0.647412 -20264,3111:248,118,-14,0,0,0.651715 -20265,3111:249,119,-14,0,0,0.657614 -20266,3112:140,120,-14,0,0,0.656341 -20267,3112:141,121,-14,0,0,0.667058 -20268,3112:142,122,-14,0,0,0.670653 -20269,3114:140,140,-14,0,0,0.714355 -20270,3114:141,141,-14,0,0,0.712569 -20271,3114:247,147,-14,0,0,0.635741 -20272,3114:248,148,-14,0,0,0.629101 -20273,3114:249,149,-14,0,0,0.617887 -20274,3115:140,150,-14,0,0,0.624053 -20275,3115:141,151,-14,0,0,0.622847 -20276,3115:142,152,-14,0,0,0.624149 -20277,3115:143,153,-14,0,0,0.617256 -20278,3115:144,154,-14,0,0,0.625185 -20279,3115:245,155,-14,0,0,0.623498 -20280,3115:246,156,-14,0,0,0.616576 -20281,3115:247,157,-14,0,0,0.615117 -20282,3115:248,158,-14,0,0,0.616964 -20283,3115:249,159,-14,0,0,0.61029 -20284,3116:140,160,-14,0,0,0.613316 -20285,3116:141,161,-14,0,0,0.609874 -20286,3116:142,162,-14,0,0,0.605883 -20287,3116:143,163,-14,0,0,0.605809 -20288,3116:144,164,-14,0,0,0.606275 -20289,3116:245,165,-14,0,0,0.605613 -20290,3116:246,166,-14,0,0,0.60826 -20291,3116:247,167,-14,0,0,0.604508 -20292,3116:248,168,-14,0,0,0.599066 -20293,3116:249,169,-14,0,0,0.595582 -20294,3117:140,170,-14,0,0,0.60025 -20295,3117:141,171,-14,0,0,0.598993 -20296,3117:142,172,-14,0,0,0.601483 -20297,3117:143,173,-14,0,0,0.603033 -20298,3117:144,174,-14,0,0,0.604999 -20299,3117:245,175,-14,0,0,0.605515 -20300,3117:246,176,-14,0,0,0.607182 -20301,3117:247,177,-14,0,0,0.60985 -20302,3117:248,178,-14,0,0,0.606422 -20303,3117:249,179,-14,0,0,0.593056 -20304,3118:140,180,-14,0,0,0.594493 -20305,5118:130,-180,-13,0,0,0.611536 -20306,5117:239,-179,-13,0,0,0.614192 -20307,5117:238,-178,-13,0,0,0.614582 -20308,5117:237,-177,-13,0,0,0.615117 -20309,5117:236,-176,-13,0,0,0.614777 -20310,5117:235,-175,-13,0,0,0.616892 -20311,5117:134,-174,-13,0,0,0.622702 -20312,5117:133,-173,-13,0,0,0.62622 -20313,5117:132,-172,-13,0,0,0.626052 -20314,5117:131,-171,-13,0,0,0.627278 -20315,5117:130,-170,-13,0,0,0.630418 -20316,5116:239,-169,-13,0,0,0.631639 -20317,5116:238,-168,-13,0,0,0.6297 -20318,5116:237,-167,-13,0,0,0.630825 -20319,5116:236,-166,-13,0,0,0.635217 -20320,5116:235,-165,-13,0,0,0.635979 -20321,5116:134,-164,-13,0,0,0.639634 -20322,5116:133,-163,-13,0,0,0.639752 -20323,5116:132,-162,-13,0,0,0.641952 -20324,5116:131,-161,-13,0,0,0.646426 -20325,5116:130,-160,-13,0,0,0.647412 -20326,5115:239,-159,-13,0,0,0.646073 -20327,5115:238,-158,-13,0,0,0.648817 -20328,5115:237,-157,-13,0,0,0.646144 -20329,5115:236,-156,-13,0,0,0.646966 -20330,5115:235,-155,-13,0,0,0.652764 -20331,5115:134,-154,-13,0,0,0.653531 -20332,5115:133,-153,-13,0,0,0.655367 -20333,5115:132,-152,-13,0,0,0.655413 -20334,5115:131,-151,-13,0,0,0.65699 -20335,5115:130,-150,-13,0,0,0.65884 -20336,5114:239,-149,-13,0,0,0.659024 -20337,5114:238,-148,-13,0,0,0.656943 -20338,5114:237,-147,-13,0,0,0.653508 -20339,5114:236,-146,-13,0,0,0.65253 -20340,5114:235,-145,-13,0,0,0.651575 -20341,5114:134,-144,-13,0,0,0.650945 -20342,5114:133,-143,-13,0,0,0.649379 -20343,5114:132,-142,-13,0,0,0.647904 -20344,5114:131,-141,-13,0,0,0.650104 -20345,5114:130,-140,-13,0,0,0.649285 -20346,5113:239,-139,-13,0,0,0.647786 -20347,5113:238,-138,-13,0,0,0.647575 -20348,5113:237,-137,-13,0,0,0.647013 -20349,5113:236,-136,-13,0,0,0.644804 -20350,5113:235,-135,-13,0,0,0.643273 -20351,5113:134,-134,-13,0,0,0.644686 -20352,5113:133,-133,-13,0,0,0.643037 -20353,5113:132,-132,-13,0,0,0.642282 -20354,5113:131,-131,-13,0,0,0.641881 -20355,5113:130,-130,-13,0,0,0.639729 -20356,5112:239,-129,-13,0,0,0.637286 -20357,5112:238,-128,-13,0,0,0.635859 -20358,5112:237,-127,-13,0,0,0.634813 -20359,5112:236,-126,-13,0,0,0.6314 -20360,5112:235,-125,-13,0,0,0.627205 -20361,5112:134,-124,-13,0,0,0.622364 -20362,5112:133,-123,-13,0,0,0.624222 -20363,5112:132,-122,-13,0,0,0.623378 -20364,5112:131,-121,-13,0,0,0.616867 -20365,5112:130,-120,-13,0,0,0.610901 -20366,5111:239,-119,-13,0,0,0.60603 -20367,5111:238,-118,-13,0,0,0.599609 -20368,5111:237,-117,-13,0,0,0.595607 -20369,5111:236,-116,-13,0,0,0.589132 -20370,5111:235,-115,-13,0,0,0.586618 -20371,5111:134,-114,-13,0,0,0.582351 -20372,5111:133,-113,-13,0,0,0.573479 -20373,5111:132,-112,-13,0,0,0.565848 -20374,5111:131,-111,-13,0,0,0.561147 -20375,5111:130,-110,-13,0,0,0.557703 -20376,5110:239,-109,-13,0,0,0.547568 -20377,5110:238,-108,-13,0,0,0.540126 -20378,5110:237,-107,-13,0,0,0.53397 -20379,5110:236,-106,-13,0,0,0.526933 -20380,5110:235,-105,-13,0,0,0.524832 -20381,5110:134,-104,-13,0,0,0.519423 -20382,5110:133,-103,-13,0,0,0.51057 -20383,5110:132,-102,-13,0,0,0.500143 -20384,5110:131,-101,-13,0,0,0.495083 -20385,5110:130,-100,-13,0,0,0.488175 -20386,5109:239,-99,-13,0,0,0.48058 -20387,5109:238,-98,-13,0,0,0.475376 -20388,5109:237,-97,-13,0,0,0.470458 -20389,5109:236,-96,-13,0,0,0.464397 -20390,5109:235,-95,-13,0,0,0.458295 -20391,5109:134,-94,-13,0,0,0.451747 -20392,5109:133,-93,-13,0,0,0.446029 -20393,5109:132,-92,-13,0,0,0.442553 -20394,5109:131,-91,-13,0,0,0.439691 -20395,5109:130,-90,-13,0,0,0.435569 -20396,5108:239,-89,-13,0,0,0.430348 -20397,5108:238,-88,-13,0,0,0.423386 -20398,5108:237,-87,-13,0,0,0.413709 -20399,5108:236,-86,-13,0,0,0.405882 -20400,5108:235,-85,-13,0,0,0.40353 -20401,5108:134,-84,-13,0,0,0.402467 -20402,5108:133,-83,-13,0,0,0.40222 -20403,5108:132,-82,-13,0,0,0.402566 -20404,5108:131,-81,-13,0,0,0.41209 -20405,5108:130,-80,-13,0,0,0.418427 -20406,5107:239,-79,-13,0,0,0.421731 -20407,5107:238,-78,-13,0,0,0.426951 -20408,5107:237,-77,-13,0,0,0.436226 -20409,5107:236,-76,-13,0,0,0.44154 -20410,5107:235,-75,-13,0,0,0.440628 -20411,5103:239,-39,-13,0,0,0.588709 -20412,5103:238,-38,-13,0,0,0.623812 -20413,5103:237,-37,-13,0,0,0.626075 -20414,5103:236,-36,-13,0,0,0.623498 -20415,5103:235,-35,-13,0,0,0.621083 -20416,5103:134,-34,-13,0,0,0.617499 -20417,5103:133,-33,-13,0,0,0.613754 -20418,5103:132,-32,-13,0,0,0.609141 -20419,5103:131,-31,-13,0,0,0.603942 -20420,5103:130,-30,-13,0,0,0.599338 -20421,5102:239,-29,-13,0,0,0.595384 -20422,5102:238,-28,-13,0,0,0.589878 -20423,5102:237,-27,-13,0,0,0.5837 -20424,5102:236,-26,-13,0,0,0.576618 -20425,5102:235,-25,-13,0,0,0.574459 -20426,5102:134,-24,-13,0,0,0.571291 -20427,5102:133,-23,-13,0,0,0.567815 -20428,5102:132,-22,-13,0,0,0.564307 -20429,5102:131,-21,-13,0,0,0.559882 -20430,5102:130,-20,-13,0,0,0.555243 -20431,5101:239,-19,-13,0,0,0.551053 -20432,5101:238,-18,-13,0,0,0.546575 -20433,5101:237,-17,-13,0,0,0.542575 -20434,5101:236,-16,-13,0,0,0.539233 -20435,5101:235,-15,-13,0,0,0.534891 -20436,5101:134,-14,-13,0,0,0.527035 -20437,5101:133,-13,-13,0,0,0.522705 -20438,5101:132,-12,-13,0,0,0.520449 -20439,5101:131,-11,-13,0,0,0.516499 -20440,5101:130,-10,-13,0,0,0.511057 -20441,5100:239,-9,-13,0,0,0.504458 -20442,5100:238,-8,-13,0,0,0.499038 -20443,5100:237,-7,-13,0,0,0.495596 -20444,5100:236,-6,-13,0,0,0.493798 -20445,5100:235,-5,-13,0,0,0.490589 -20446,5100:134,-4,-13,0,0,0.487713 -20447,5100:133,-3,-13,0,0,0.48684 -20448,5100:132,-2,-13,0,0,0.485686 -20449,5100:131,-1,-13,0,0,0.484197 -20450,3100:131,0,-13,0,0,0.482145 -20451,3100:131,1,-13,0,0,0.481606 -20452,3100:132,2,-13,0,0,0.484659 -20453,3100:133,3,-13,0,0,0.484659 -20454,3100:134,4,-13,0,0,0.484607 -20455,3100:235,5,-13,0,0,0.483992 -20456,3100:236,6,-13,0,0,0.485352 -20457,3100:237,7,-13,0,0,0.487611 -20458,3100:238,8,-13,0,0,0.499372 -20459,3100:239,9,-13,0,0,0.511982 -20460,3101:130,10,-13,0,0,0.538799 -20461,3101:131,11,-13,0,0,0.5185 -20462,3104:130,40,-13,0,0,0.665322 -20463,3104:131,41,-13,0,0,0.675672 -20464,3104:132,42,-13,0,0,0.681832 -20465,3104:133,43,-13,0,0,0.686252 -20466,3104:134,44,-13,0,0,0.695924 -20467,3105:130,50,-13,0,0,0.634932 -20468,3105:131,51,-13,0,0,0.63226 -20469,3105:132,52,-13,0,0,0.626316 -20470,3105:133,53,-13,0,0,0.621132 -20471,3105:134,54,-13,0,0,0.620431 -20472,3105:235,55,-13,0,0,0.622195 -20473,3105:236,56,-13,0,0,0.622267 -20474,3105:237,57,-13,0,0,0.624487 -20475,3105:238,58,-13,0,0,0.623619 -20476,3105:239,59,-13,0,0,0.620696 -20477,3106:130,60,-13,0,0,0.617717 -20478,3106:131,61,-13,0,0,0.613925 -20479,3106:132,62,-13,0,0,0.611974 -20480,3106:133,63,-13,0,0,0.610949 -20481,3106:134,64,-13,0,0,0.610217 -20482,3106:235,65,-13,0,0,0.609826 -20483,3106:236,66,-13,0,0,0.609361 -20484,3106:237,67,-13,0,0,0.60919 -20485,3106:238,68,-13,0,0,0.608113 -20486,3106:239,69,-13,0,0,0.606716 -20487,3107:130,70,-13,0,0,0.60657 -20489,3107:132,72,-13,0,0,0.608897 -20490,3107:134,74,-13,0,0,0.615142 -20491,3107:235,75,-13,0,0,0.615531 -20492,3107:236,76,-13,0,0,0.614047 -20493,3107:237,77,-13,0,0,0.613876 -20494,3107:238,78,-13,0,0,0.614606 -20495,3107:239,79,-13,0,0,0.612731 -20496,3108:130,80,-13,0,0,0.614801 -20497,3108:131,81,-13,0,0,0.61334 -20498,3108:132,82,-13,0,0,0.610217 -20499,3108:133,83,-13,0,0,0.60522 -20500,3108:134,84,-13,0,0,0.608015 -20501,3108:235,85,-13,0,0,0.599066 -20502,3108:236,86,-13,0,0,0.599289 -20503,3108:237,87,-13,0,0,0.597832 -20504,3108:238,88,-13,0,0,0.595013 -20505,3108:239,89,-13,0,0,0.598968 -20506,3109:130,90,-13,0,0,0.593625 -20507,3109:131,91,-13,0,0,0.593378 -20508,3109:132,92,-13,0,0,0.590276 -20509,3109:133,93,-13,0,0,0.588784 -20510,3109:134,94,-13,0,0,0.578097 -20511,3109:235,95,-13,0,0,0.58315 -20512,3109:236,96,-13,0,0,0.582526 -20513,3109:237,97,-13,0,0,0.580701 -20514,3109:238,98,-13,0,0,0.584947 -20515,3109:239,99,-13,0,0,0.579149 -20516,3110:130,100,-13,0,0,0.582201 -20517,3110:131,101,-13,0,0,0.589405 -20518,3110:132,102,-13,0,0,0.591964 -20519,3110:133,103,-13,0,0,0.589803 -20520,3110:134,104,-13,0,0,0.594617 -20521,3110:235,105,-13,0,0,0.594444 -20522,3110:236,106,-13,0,0,0.592287 -20523,3110:237,107,-13,0,0,0.599437 -20524,3110:238,108,-13,0,0,0.616139 -20525,3110:239,109,-13,0,0,0.612926 -20526,3111:130,110,-13,0,0,0.617741 -20527,3111:131,111,-13,0,0,0.620019 -20528,3111:132,112,-13,0,0,0.627614 -20529,3111:133,113,-13,0,0,0.632977 -20530,3111:134,114,-13,0,0,0.642872 -20531,3111:235,115,-13,0,0,0.646191 -20532,3111:236,116,-13,0,0,0.643956 -20533,3111:237,117,-13,0,0,0.653392 -20534,3111:238,118,-13,0,0,0.663007 -20535,3111:239,119,-13,0,0,0.668153 -20536,3112:130,120,-13,0,0,0.666716 -20537,3112:131,121,-13,0,0,0.676392 -20538,3112:132,122,-13,0,0,0.678301 -20539,3112:133,123,-13,0,0,0.682167 -20540,3112:134,124,-13,0,0,0.707471 -20541,3113:238,138,-13,0,0,0.714355 -20542,3113:239,139,-13,0,0,0.712927 -20543,3114:130,140,-13,0,0,0.709339 -20544,3114:131,141,-13,0,0,0.702063 -20545,3114:236,146,-13,0,0,0.641172 -20546,3114:237,147,-13,0,0,0.635859 -20547,3114:238,148,-13,0,0,0.635074 -20548,3114:239,149,-13,0,0,0.636383 -20549,3115:130,150,-13,0,0,0.633191 -20550,3115:131,151,-13,0,0,0.631089 -20551,3115:132,152,-13,0,0,0.635955 -20552,3115:133,153,-13,0,0,0.633478 -20553,3115:134,154,-13,0,0,0.633788 -20554,3115:235,155,-13,0,0,0.631209 -20555,3115:236,156,-13,0,0,0.630395 -20556,3115:237,157,-13,0,0,0.629077 -20557,3115:238,158,-13,0,0,0.628478 -20558,3115:239,159,-13,0,0,0.622654 -20559,3116:130,160,-13,0,0,0.620334 -20560,3116:131,161,-13,0,0,0.619608 -20561,3116:132,162,-13,0,0,0.619365 -20562,3116:133,163,-13,0,0,0.618905 -20563,3116:134,164,-13,0,0,0.612341 -20564,3116:235,165,-13,0,0,0.617377 -20565,3116:236,166,-13,0,0,0.618953 -20566,3116:237,167,-13,0,0,0.612316 -20567,3116:238,168,-13,0,0,0.613876 -20568,3116:239,169,-13,0,0,0.618008 -20569,3117:130,170,-13,0,0,0.621446 -20570,3117:131,171,-13,0,0,0.621712 -20571,3117:132,172,-13,0,0,0.621906 -20572,3117:133,173,-13,0,0,0.621446 -20573,3117:134,174,-13,0,0,0.621397 -20574,3117:235,175,-13,0,0,0.621978 -20575,3117:236,176,-13,0,0,0.621808 -20576,3117:237,177,-13,0,0,0.620552 -20577,3117:238,178,-13,0,0,0.617474 -20578,3117:239,179,-13,0,0,0.615895 -20579,3118:130,180,-13,0,0,0.611536 -20580,5118:120,-180,-12,0,0,0.630227 -20581,5117:229,-179,-12,0,0,0.630371 -20582,5117:228,-178,-12,0,0,0.631973 -20583,5117:227,-177,-12,0,0,0.63505 -20584,5117:226,-176,-12,0,0,0.638093 -20585,5117:225,-175,-12,0,0,0.641597 -20586,5117:124,-174,-12,0,0,0.646261 -20587,5117:123,-173,-12,0,0,0.649122 -20588,5117:122,-172,-12,0,0,0.647412 -20589,5117:121,-171,-12,0,0,0.647599 -20590,5117:120,-170,-12,0,0,0.647669 -20591,5116:229,-169,-12,0,0,0.648771 -20592,5116:228,-168,-12,0,0,0.649589 -20593,5116:227,-167,-12,0,0,0.651248 -20594,5116:226,-166,-12,0,0,0.652624 -20595,5116:225,-165,-12,0,0,0.653043 -21246,5108:101,-81,-10,0,0,0.48117 -20596,5116:124,-164,-12,0,0,0.653834 -20597,5116:123,-163,-12,0,0,0.656943 -20598,5116:122,-162,-12,0,0,0.659901 -20599,5116:121,-161,-12,0,0,0.661214 -20600,5116:120,-160,-12,0,0,0.662571 -20601,5115:229,-159,-12,0,0,0.662663 -20602,5115:228,-158,-12,0,0,0.661882 -20603,5115:227,-157,-12,0,0,0.662456 -20604,5115:226,-156,-12,0,0,0.663489 -20605,5115:225,-155,-12,0,0,0.665047 -20606,5115:124,-154,-12,0,0,0.665161 -20607,5115:123,-153,-12,0,0,0.664177 -20608,5115:122,-152,-12,0,0,0.664314 -20609,5115:121,-151,-12,0,0,0.663718 -20610,5115:120,-150,-12,0,0,0.663191 -20611,5114:229,-149,-12,0,0,0.663282 -20612,5114:228,-148,-12,0,0,0.661789 -20613,5114:227,-147,-12,0,0,0.660178 -20614,5114:226,-146,-12,0,0,0.658308 -20615,5114:225,-145,-12,0,0,0.657013 -20616,5114:124,-144,-12,0,0,0.658285 -20617,5114:123,-143,-12,0,0,0.659324 -20618,5114:122,-142,-12,0,0,0.659532 -20619,5114:121,-141,-12,0,0,0.658447 -20620,5114:120,-140,-12,0,0,0.657684 -20621,5113:229,-139,-12,0,0,0.657453 -20622,5113:228,-138,-12,0,0,0.656272 -20623,5113:227,-137,-12,0,0,0.654392 -20624,5113:226,-136,-12,0,0,0.653438 -20625,5113:225,-135,-12,0,0,0.652414 -20626,5113:124,-134,-12,0,0,0.652368 -20627,5113:123,-133,-12,0,0,0.650314 -20628,5113:122,-132,-12,0,0,0.646708 -20629,5113:121,-131,-12,0,0,0.64471 -20630,5113:120,-130,-12,0,0,0.643131 -20631,5112:229,-129,-12,0,0,0.640959 -20632,5112:228,-128,-12,0,0,0.637975 -20633,5112:227,-127,-12,0,0,0.634979 -20634,5112:226,-126,-12,0,0,0.631519 -20635,5112:225,-125,-12,0,0,0.628694 -20636,5112:124,-124,-12,0,0,0.622847 -20637,5112:123,-123,-12,0,0,0.620019 -20638,5112:122,-122,-12,0,0,0.616624 -20639,5112:121,-121,-12,0,0,0.612146 -20640,5112:120,-120,-12,0,0,0.605196 -20641,5111:229,-119,-12,0,0,0.600719 -20642,5111:228,-118,-12,0,0,0.595434 -20643,5111:227,-117,-12,0,0,0.592485 -20644,5111:226,-116,-12,0,0,0.588385 -20645,5111:225,-115,-12,0,0,0.581776 -20646,5111:124,-114,-12,0,0,0.574283 -20647,5111:123,-113,-12,0,0,0.570889 -20648,5111:122,-112,-12,0,0,0.567412 -20649,5111:121,-111,-12,0,0,0.558311 -20650,5111:120,-110,-12,0,0,0.554102 -20651,5110:229,-109,-12,0,0,0.549274 -20652,5110:228,-108,-12,0,0,0.543799 -20653,5110:227,-107,-12,0,0,0.535325 -20654,5110:226,-106,-12,0,0,0.526241 -20655,5110:225,-105,-12,0,0,0.520449 -20656,5110:124,-104,-12,0,0,0.515857 -20657,5110:123,-103,-12,0,0,0.507591 -20658,5110:122,-102,-12,0,0,0.500656 -20659,5110:121,-101,-12,0,0,0.495776 -20660,5110:120,-100,-12,0,0,0.492592 -20661,5109:229,-99,-12,0,0,0.486353 -20662,5109:228,-98,-12,0,0,0.479016 -20663,5109:227,-97,-12,0,0,0.472379 -20664,5109:226,-96,-12,0,0,0.466084 -20665,5109:225,-95,-12,0,0,0.459392 -20666,5109:124,-94,-12,0,0,0.45493 -20667,5109:123,-93,-12,0,0,0.448721 -20668,5109:122,-92,-12,0,0,0.44344 -20669,5109:121,-91,-12,0,0,0.437085 -20670,5109:120,-90,-12,0,0,0.434079 -20671,5108:229,-89,-12,0,0,0.427328 -20672,5108:228,-88,-12,0,0,0.421956 -20673,5108:227,-87,-12,0,0,0.418477 -20674,5108:226,-86,-12,0,0,0.414557 -20675,5108:225,-85,-12,0,0,0.413261 -20676,5108:124,-84,-12,0,0,0.414482 -20677,5108:123,-83,-12,0,0,0.420403 -20678,5108:122,-82,-12,0,0,0.423736 -20679,5108:121,-81,-12,0,0,0.42997 -20680,5108:120,-80,-12,0,0,0.439615 -20681,5107:229,-79,-12,0,0,0.445039 -20682,5107:228,-78,-12,0,0,0.458014 -20683,5107:227,-77,-12,0,0,0.45073 -20684,5107:226,-76,-12,0,0,0.396158 -20685,5103:229,-39,-12,0,0,0.62205 -20686,5103:228,-38,-12,0,0,0.627806 -20687,5103:227,-37,-12,0,0,0.627541 -20688,5103:226,-36,-12,0,0,0.626532 -20689,5103:225,-35,-12,0,0,0.622895 -20690,5103:124,-34,-12,0,0,0.620043 -20691,5103:123,-33,-12,0,0,0.615847 -20692,5103:122,-32,-12,0,0,0.611511 -20693,5103:121,-31,-12,0,0,0.605809 -20694,5103:120,-30,-12,0,0,0.599091 -20695,5102:229,-29,-12,0,0,0.592758 -20696,5102:228,-28,-12,0,0,0.588261 -20697,5102:227,-27,-12,0,0,0.586743 -20698,5102:226,-26,-12,0,0,0.58025 -20699,5102:225,-25,-12,0,0,0.57584 -20700,5102:124,-24,-12,0,0,0.570838 -20701,5102:123,-23,-12,0,0,0.567563 -20702,5102:122,-22,-12,0,0,0.563499 -20703,5102:121,-21,-12,0,0,0.558995 -20704,5102:120,-20,-12,0,0,0.554888 -20705,5101:229,-19,-12,0,0,0.550341 -20706,5101:228,-18,-12,0,0,0.547441 -20707,5101:227,-17,-12,0,0,0.543263 -20708,5101:226,-16,-12,0,0,0.538007 -20709,5101:225,-15,-12,0,0,0.533766 -20710,5101:124,-14,-12,0,0,0.530286 -20711,5101:123,-13,-12,0,0,0.525729 -20712,5101:122,-12,-12,0,0,0.521295 -20713,5101:121,-11,-12,0,0,0.516448 -20714,5101:120,-10,-12,0,0,0.512058 -20715,5100:229,-9,-12,0,0,0.506872 -20716,5100:228,-8,-12,0,0,0.501324 -20717,5100:227,-7,-12,0,0,0.494647 -20718,5100:226,-6,-12,0,0,0.48969 -20719,5100:225,-5,-12,0,0,0.488945 -20720,5100:124,-4,-12,0,0,0.488869 -20721,5100:123,-3,-12,0,0,0.490486 -20722,5100:122,-2,-12,0,0,0.491976 -20723,5100:121,-1,-12,0,0,0.493619 -20724,3100:121,0,-12,0,0,0.494313 -20725,3100:121,1,-12,0,0,0.49647 -20726,3100:122,2,-12,0,0,0.493876 -20727,3100:123,3,-12,0,0,0.492104 -20728,3100:124,4,-12,0,0,0.493619 -20729,3100:225,5,-12,0,0,0.498113 -20730,3100:226,6,-12,0,0,0.504201 -20731,3100:227,7,-12,0,0,0.509619 -20732,3100:228,8,-12,0,0,0.513522 -20733,3100:229,9,-12,0,0,0.528674 -20734,3101:120,10,-12,0,0,0.557297 -20735,3101:121,11,-12,0,0,0.559249 -20736,3101:122,12,-12,0,0,0.488561 -20737,3104:121,41,-12,0,0,0.677874 -20738,3104:122,42,-12,0,0,0.684101 -20739,3104:123,43,-12,0,0,0.684701 -20740,3104:124,44,-12,0,0,0.682567 -20741,3104:225,45,-12,0,0,0.68123 -20742,3104:226,46,-12,0,0,0.683413 -20743,3104:227,47,-12,0,0,0.690922 -20744,3105:120,50,-12,0,0,0.636383 -20745,3105:121,51,-12,0,0,0.63343 -20746,3105:122,52,-12,0,0,0.633597 -20747,3105:123,53,-12,0,0,0.631639 -20748,3105:124,54,-12,0,0,0.632571 -20749,3105:225,55,-12,0,0,0.63331 -20750,3105:226,56,-12,0,0,0.633096 -20751,3105:227,57,-12,0,0,0.632547 -20752,3105:228,58,-12,0,0,0.631615 -20753,3105:229,59,-12,0,0,0.629653 -20754,3106:120,60,-12,0,0,0.624583 -20755,3106:121,61,-12,0,0,0.62333 -20756,3106:122,62,-12,0,0,0.624921 -20757,3106:123,63,-12,0,0,0.620745 -20758,3106:124,64,-12,0,0,0.620745 -20759,3106:225,65,-12,0,0,0.619777 -20760,3106:226,66,-12,0,0,0.621011 -20761,3106:227,67,-12,0,0,0.623305 -20762,3106:228,68,-12,0,0,0.623426 -20763,3106:229,69,-12,0,0,0.62147 -20764,3107:120,70,-12,0,0,0.619971 -20765,3107:121,71,-12,0,0,0.619075 -20766,3107:122,72,-12,0,0,0.618566 -20767,3107:124,74,-12,0,0,0.626845 -20768,3107:225,75,-12,0,0,0.634121 -20769,3107:226,76,-12,0,0,0.635764 -20770,3107:227,77,-12,0,0,0.63517 -20771,3107:228,78,-12,0,0,0.632451 -20772,3107:229,79,-12,0,0,0.628934 -20773,3108:120,80,-12,0,0,0.62795 -20774,3108:121,81,-12,0,0,0.625233 -20775,3108:122,82,-12,0,0,0.620914 -20776,3108:123,83,-12,0,0,0.618783 -20777,3108:124,84,-12,0,0,0.616818 -20778,3108:225,85,-12,0,0,0.613973 -20779,3108:226,86,-12,0,0,0.610852 -20780,3108:227,87,-12,0,0,0.607084 -20781,3108:228,88,-12,0,0,0.604361 -20782,3108:229,89,-12,0,0,0.604361 -20783,3109:120,90,-12,0,0,0.60468 -20784,3109:121,91,-12,0,0,0.605613 -20785,3109:122,92,-12,0,0,0.605588 -20786,3109:123,93,-12,0,0,0.604188 -20787,3109:124,94,-12,0,0,0.603156 -20788,3109:225,95,-12,0,0,0.601877 -20789,3109:226,96,-12,0,0,0.59479 -20790,3109:227,97,-12,0,0,0.592708 -20791,3109:228,98,-12,0,0,0.593006 -20792,3109:229,99,-12,0,0,0.601803 -20793,3110:120,100,-12,0,0,0.609948 -20794,3110:121,101,-12,0,0,0.617741 -20795,3110:122,102,-12,0,0,0.627374 -20796,3110:123,103,-12,0,0,0.63312 -20797,3110:124,104,-12,0,0,0.631089 -20798,3110:225,105,-12,0,0,0.619438 -20799,3110:226,106,-12,0,0,0.616211 -20800,3110:227,107,-12,0,0,0.620503 -20801,3110:228,108,-12,0,0,0.628861 -20802,3110:229,109,-12,0,0,0.637951 -20803,3111:120,110,-12,0,0,0.63788 -20804,3111:121,111,-12,0,0,0.638425 -20805,3111:122,112,-12,0,0,0.650151 -20806,3111:123,113,-12,0,0,0.662755 -20807,3111:124,114,-12,0,0,0.671651 -20808,3111:225,115,-12,0,0,0.670109 -20809,3111:226,116,-12,0,0,0.663374 -20810,3111:227,117,-12,0,0,0.665116 -20811,3111:228,118,-12,0,0,0.67113 -21247,5108:100,-80,-10,0,0,0.4843 -20812,3111:229,119,-12,0,0,0.678345 -20813,3112:120,120,-12,0,0,0.674613 -20814,3112:121,121,-12,0,0,0.677067 -20815,3112:122,122,-12,0,0,0.680561 -20816,3112:123,123,-12,0,0,0.686295 -20817,3112:124,124,-12,0,0,0.690022 -20818,3112:225,125,-12,0,0,0.702557 -20819,3112:229,129,-12,0,0,0.714355 -20820,3113:226,136,-12,0,0,0.714355 -20821,3113:227,137,-12,0,0,0.714355 -20822,3113:228,138,-12,0,0,0.702536 -20823,3113:229,139,-12,0,0,0.693876 -20824,3114:120,140,-12,0,0,0.69123 -20825,3114:121,141,-12,0,0,0.692631 -20826,3114:226,146,-12,0,0,0.639255 -20827,3114:227,147,-12,0,0,0.640013 -20828,3114:228,148,-12,0,0,0.642896 -20829,3114:229,149,-12,0,0,0.642848 -20830,3115:120,150,-12,0,0,0.645251 -20831,3115:121,151,-12,0,0,0.644639 -20832,3115:122,152,-12,0,0,0.643886 -20833,3115:123,153,-12,0,0,0.646379 -20834,3115:124,154,-12,0,0,0.647107 -20835,3115:225,155,-12,0,0,0.646073 -20836,3115:226,156,-12,0,0,0.643108 -20837,3115:227,157,-12,0,0,0.639208 -20838,3115:228,158,-12,0,0,0.635646 -20839,3115:229,159,-12,0,0,0.634384 -20840,3116:120,160,-12,0,0,0.633168 -20841,3116:121,161,-12,0,0,0.631878 -20842,3116:122,162,-12,0,0,0.631136 -20843,3116:123,163,-12,0,0,0.630945 -20844,3116:124,164,-12,0,0,0.632045 -20845,3116:225,165,-12,0,0,0.632762 -20846,3116:226,166,-12,0,0,0.631711 -20847,3116:227,167,-12,0,0,0.62333 -20848,3116:228,168,-12,0,0,0.629484 -20849,3116:229,169,-12,0,0,0.634384 -20850,3117:120,170,-12,0,0,0.636265 -20851,3117:121,171,-12,0,0,0.637309 -20852,3117:122,172,-12,0,0,0.635622 -20853,3117:123,173,-12,0,0,0.635622 -20854,3117:124,174,-12,0,0,0.63343 -20855,3117:225,175,-12,0,0,0.631782 -20856,3117:226,176,-12,0,0,0.630706 -20857,3117:227,177,-12,0,0,0.630418 -20858,3117:228,178,-12,0,0,0.631471 -20859,3117:229,179,-12,0,0,0.630802 -20860,3118:120,180,-12,0,0,0.630227 -20861,5118:110,-180,-11,0,0,0.645345 -20862,5117:219,-179,-11,0,0,0.646966 -20863,5117:218,-178,-11,0,0,0.649052 -20864,5117:217,-177,-11,0,0,0.652204 -20865,5117:216,-176,-11,0,0,0.655413 -20866,5117:215,-175,-11,0,0,0.659716 -20867,5117:114,-174,-11,0,0,0.662984 -20868,5117:113,-173,-11,0,0,0.662226 -20869,5117:112,-172,-11,0,0,0.658007 -20870,5117:111,-171,-11,0,0,0.659255 -20871,5117:110,-170,-11,0,0,0.660063 -20872,5116:219,-169,-11,0,0,0.66172 -20873,5116:218,-168,-11,0,0,0.663443 -20874,5116:217,-167,-11,0,0,0.665161 -20875,5116:216,-166,-11,0,0,0.665779 -20876,5116:215,-165,-11,0,0,0.666716 -20877,5116:114,-164,-11,0,0,0.667583 -20878,5116:113,-163,-11,0,0,0.669131 -20879,5116:112,-162,-11,0,0,0.668882 -20880,5116:111,-161,-11,0,0,0.669904 -20881,5116:110,-160,-11,0,0,0.669381 -20882,5115:219,-159,-11,0,0,0.669927 -20883,5115:218,-158,-11,0,0,0.670767 -20884,5115:217,-157,-11,0,0,0.671832 -20885,5115:216,-156,-11,0,0,0.672014 -20886,5115:215,-155,-11,0,0,0.67113 -20887,5115:114,-154,-11,0,0,0.669472 -20888,5115:113,-153,-11,0,0,0.668722 -20889,5115:112,-152,-11,0,0,0.668745 -20890,5115:111,-151,-11,0,0,0.668586 -20891,5115:110,-150,-11,0,0,0.667583 -20892,5114:219,-149,-11,0,0,0.666761 -20893,5114:218,-148,-11,0,0,0.666191 -20894,5114:217,-147,-11,0,0,0.664131 -20895,5114:216,-146,-11,0,0,0.662019 -20896,5114:215,-145,-11,0,0,0.660523 -20897,5114:114,-144,-11,0,0,0.659671 -20898,5114:113,-143,-11,0,0,0.658932 -20899,5114:112,-142,-11,0,0,0.658424 -20900,5114:111,-141,-11,0,0,0.658516 -20901,5114:110,-140,-11,0,0,0.657198 -20902,5113:219,-139,-11,0,0,0.656735 -20903,5113:218,-138,-11,0,0,0.655112 -20904,5113:217,-137,-11,0,0,0.653927 -20905,5113:216,-136,-11,0,0,0.651201 -20906,5113:215,-135,-11,0,0,0.650407 -20907,5113:114,-134,-11,0,0,0.647575 -20908,5113:113,-133,-11,0,0,0.64605 -20909,5113:112,-132,-11,0,0,0.644969 -20910,5113:111,-131,-11,0,0,0.641786 -20911,5113:110,-130,-11,0,0,0.638852 -20912,5112:219,-129,-11,0,0,0.633835 -20913,5112:218,-128,-11,0,0,0.630203 -20914,5112:217,-127,-11,0,0,0.628526 -20915,5112:216,-126,-11,0,0,0.623378 -20916,5112:215,-125,-11,0,0,0.621422 -20917,5112:114,-124,-11,0,0,0.618783 -20918,5112:113,-123,-11,0,0,0.614972 -20919,5112:112,-122,-11,0,0,0.61134 -20920,5112:111,-121,-11,0,0,0.608652 -20921,5112:110,-120,-11,0,0,0.605122 -20922,5111:219,-119,-11,0,0,0.601113 -20923,5111:218,-118,-11,0,0,0.595211 -20924,5111:217,-117,-11,0,0,0.588585 -20925,5111:216,-116,-11,0,0,0.582126 -20926,5111:215,-115,-11,0,0,0.57476 -20927,5111:114,-114,-11,0,0,0.567992 -20928,5111:113,-113,-11,0,0,0.562943 -20929,5111:112,-112,-11,0,0,0.557273 -20930,5111:111,-111,-11,0,0,0.554812 -20931,5111:110,-110,-11,0,0,0.550393 -20932,5110:219,-109,-11,0,0,0.544564 -20933,5110:218,-108,-11,0,0,0.535171 -20934,5110:217,-107,-11,0,0,0.527112 -20935,5110:216,-106,-11,0,0,0.522167 -20936,5110:215,-105,-11,0,0,0.515755 -20937,5110:114,-104,-11,0,0,0.511109 -20938,5110:113,-103,-11,0,0,0.505793 -20939,5110:112,-102,-11,0,0,0.498679 -20940,5110:111,-101,-11,0,0,0.492027 -20941,5110:110,-100,-11,0,0,0.483684 -20942,5109:219,-99,-11,0,0,0.477862 -20943,5109:218,-98,-11,0,0,0.474966 -20944,5109:217,-97,-11,0,0,0.46813 -20945,5109:216,-96,-11,0,0,0.46409 -20946,5109:215,-95,-11,0,0,0.460489 -20947,5109:114,-94,-11,0,0,0.455899 -20948,5109:113,-93,-11,0,0,0.4519 -20949,5109:112,-92,-11,0,0,0.4441 -20950,5109:111,-91,-11,0,0,0.441919 -20951,5109:110,-90,-11,0,0,0.439995 -20952,5108:219,-89,-11,0,0,0.430046 -20953,5108:218,-88,-11,0,0,0.431154 -20954,5108:217,-87,-11,0,0,0.431885 -20955,5108:216,-86,-11,0,0,0.431582 -20956,5108:215,-85,-11,0,0,0.437768 -20957,5108:114,-84,-11,0,0,0.4404 -20958,5108:113,-83,-11,0,0,0.447501 -20959,5108:112,-82,-11,0,0,0.451696 -20960,5108:111,-81,-11,0,0,0.455923 -20961,5108:110,-80,-11,0,0,0.461076 -20962,5107:219,-79,-11,0,0,0.472302 -20963,5107:218,-78,-11,0,0,0.465778 -20964,5107:217,-77,-11,0,0,0.439185 -20965,5103:219,-39,-11,0,0,0.620914 -20966,5103:218,-38,-11,0,0,0.631615 -20967,5103:217,-37,-11,0,0,0.625907 -20968,5103:216,-36,-11,0,0,0.624318 -20969,5103:215,-35,-11,0,0,0.622944 -20970,5103:114,-34,-11,0,0,0.618517 -20971,5103:113,-33,-11,0,0,0.616211 -20972,5103:112,-32,-11,0,0,0.61256 -20973,5103:111,-31,-11,0,0,0.608358 -20974,5103:110,-30,-11,0,0,0.605417 -20975,5102:219,-29,-11,0,0,0.601606 -20976,5102:218,-28,-11,0,0,0.596275 -20977,5102:217,-27,-11,0,0,0.594344 -20978,5102:216,-26,-11,0,0,0.587141 -20979,5102:215,-25,-11,0,0,0.581851 -20980,5102:114,-24,-11,0,0,0.581576 -20981,5102:113,-23,-11,0,0,0.576316 -20982,5102:112,-22,-11,0,0,0.573605 -20983,5102:111,-21,-11,0,0,0.570511 -20984,5102:110,-20,-11,0,0,0.56663 -20985,5101:219,-19,-11,0,0,0.562538 -20986,5101:218,-18,-11,0,0,0.556664 -20987,5101:217,-17,-11,0,0,0.551435 -20988,5101:216,-16,-11,0,0,0.543646 -20989,5101:215,-15,-11,0,0,0.539182 -20990,5101:114,-14,-11,0,0,0.532333 -20991,5101:113,-13,-11,0,0,0.528136 -20992,5101:112,-12,-11,0,0,0.523448 -20993,5101:111,-11,-11,0,0,0.519269 -20994,5101:110,-10,-11,0,0,0.515062 -20995,5100:219,-9,-11,0,0,0.51116 -20996,5100:218,-8,-11,0,0,0.507283 -20997,5100:217,-7,-11,0,0,0.504253 -20998,5100:216,-6,-11,0,0,0.506101 -20999,5100:215,-5,-11,0,0,0.504869 -21000,5100:114,-4,-11,0,0,0.503045 -21001,5100:113,-3,-11,0,0,0.504663 -21002,5100:112,-2,-11,0,0,0.504715 -21003,5100:111,-1,-11,0,0,0.507129 -21004,3100:111,0,-11,0,0,0.505614 -21005,3100:111,1,-11,0,0,0.504971 -21006,3100:112,2,-11,0,0,0.502249 -21007,3100:113,3,-11,0,0,0.502223 -21008,3100:114,4,-11,0,0,0.506153 -21009,3100:215,5,-11,0,0,0.512136 -21010,3100:216,6,-11,0,0,0.522372 -21011,3100:217,7,-11,0,0,0.527599 -21012,3100:218,8,-11,0,0,0.536934 -21013,3100:219,9,-11,0,0,0.55973 -21014,3101:110,10,-11,0,0,0.578072 -21015,3101:111,11,-11,0,0,0.57358 -21016,3101:112,12,-11,0,0,0.543187 -21017,3104:111,41,-11,0,0,0.673574 -21018,3104:112,42,-11,0,0,0.673371 -21019,3104:113,43,-11,0,0,0.671153 -21020,3104:114,44,-11,0,0,0.674793 -21021,3104:215,45,-11,0,0,0.67774 -21022,3104:216,46,-11,0,0,0.664062 -21023,3104:217,47,-11,0,0,0.656295 -21024,3104:218,48,-11,0,0,0.658771 -21025,3105:110,50,-11,0,0,0.63769 -21026,3105:111,51,-11,0,0,0.638473 -21027,3105:112,52,-11,0,0,0.639776 -21028,3105:113,53,-11,0,0,0.638307 -21029,3105:114,54,-11,0,0,0.641432 -21030,3105:215,55,-11,0,0,0.644545 -21031,3105:216,56,-11,0,0,0.645815 -21032,3105:217,57,-11,0,0,0.644828 -21033,3105:218,58,-11,0,0,0.642565 -21034,3105:219,59,-11,0,0,0.639918 -21035,3106:110,60,-11,0,0,0.636574 -21036,3106:111,61,-11,0,0,0.636431 -21037,3106:112,62,-11,0,0,0.632881 -21038,3106:113,63,-11,0,0,0.629772 -21039,3106:114,64,-11,0,0,0.630778 -21040,3106:215,65,-11,0,0,0.632236 -21041,3106:216,66,-11,0,0,0.635027 -21042,3106:217,67,-11,0,0,0.63833 -21043,3106:218,68,-11,0,0,0.640391 -21044,3106:219,69,-11,0,0,0.641337 -21045,3107:110,70,-11,0,0,0.640107 -21046,3107:111,71,-11,0,0,0.638069 -21047,3107:112,72,-11,0,0,0.638662 -21048,3107:114,74,-11,0,0,0.642329 -21049,3107:215,75,-11,0,0,0.643932 -21050,3107:216,76,-11,0,0,0.64431 -21051,3107:217,77,-11,0,0,0.643202 -21052,3107:218,78,-11,0,0,0.640935 -21053,3107:219,79,-11,0,0,0.637856 -21054,3108:110,80,-11,0,0,0.633406 -21055,3108:111,81,-11,0,0,0.629221 -21056,3108:112,82,-11,0,0,0.625402 -21057,3108:113,83,-11,0,0,0.621881 -21058,3108:114,84,-11,0,0,0.61842 -21059,3108:215,85,-11,0,0,0.61592 -21060,3108:216,86,-11,0,0,0.613559 -21061,3108:217,87,-11,0,0,0.612609 -21062,3108:218,88,-11,0,0,0.612341 -21063,3108:219,89,-11,0,0,0.612755 -21064,3109:110,90,-11,0,0,0.614461 -21065,3109:111,91,-11,0,0,0.617134 -21066,3109:112,92,-11,0,0,0.617547 -21067,3109:113,93,-11,0,0,0.614339 -21068,3109:114,94,-11,0,0,0.610705 -21069,3109:215,95,-11,0,0,0.60777 -21070,3109:216,96,-11,0,0,0.606594 -21071,3109:217,97,-11,0,0,0.606986 -21072,3109:218,98,-11,0,0,0.605441 -21073,3109:219,99,-11,0,0,0.608554 -21074,3110:110,100,-11,0,0,0.614728 -21075,3110:111,101,-11,0,0,0.62557 -21076,3110:112,102,-11,0,0,0.629581 -21077,3110:113,103,-11,0,0,0.633168 -21078,3110:114,104,-11,0,0,0.636526 -21079,3110:215,105,-11,0,0,0.630203 -21080,3110:216,106,-11,0,0,0.627037 -21081,3110:217,107,-11,0,0,0.637286 -21082,3110:218,108,-11,0,0,0.647482 -21083,3110:219,109,-11,0,0,0.657407 -21084,3111:110,110,-11,0,0,0.659209 -21085,3111:111,111,-11,0,0,0.663145 -21086,3111:112,112,-11,0,0,0.668062 -21087,3111:113,113,-11,0,0,0.673168 -21088,3111:114,114,-11,0,0,0.677336 -21089,3111:215,115,-11,0,0,0.678166 -21090,3111:216,116,-11,0,0,0.67792 -21091,3111:217,117,-11,0,0,0.679532 -21092,3111:218,118,-11,0,0,0.680159 -21093,3111:219,119,-11,0,0,0.680382 -21094,3112:110,120,-11,0,0,0.679644 -21095,3112:111,121,-11,0,0,0.681632 -21096,3112:112,122,-11,0,0,0.681609 -21097,3112:113,123,-11,0,0,0.683991 -21098,3112:114,124,-11,0,0,0.691054 -21099,3112:215,125,-11,0,0,0.697292 -21100,3112:216,126,-11,0,0,0.699024 -21101,3112:217,127,-11,0,0,0.698029 -21102,3112:218,128,-11,0,0,0.69924 -21103,3112:219,129,-11,0,0,0.703244 -21104,3113:110,130,-11,0,0,0.714355 -21105,3113:217,137,-11,0,0,0.70485 -21106,3113:218,138,-11,0,0,0.683835 -21107,3113:219,139,-11,0,0,0.677224 -21108,3114:110,140,-11,0,0,0.682813 -21109,3114:111,141,-11,0,0,0.68718 -21110,3114:114,144,-11,0,0,0.664108 -21111,3114:215,145,-11,0,0,0.641904 -21112,3114:216,146,-11,0,0,0.642612 -21113,3114:217,147,-11,0,0,0.643603 -21114,3114:218,148,-11,0,0,0.648607 -21115,3114:219,149,-11,0,0,0.652787 -21116,3115:110,150,-11,0,0,0.653624 -21117,3115:111,151,-11,0,0,0.656619 -21118,3115:112,152,-11,0,0,0.655321 -21119,3115:113,153,-11,0,0,0.657638 -21120,3115:114,154,-11,0,0,0.659855 -21121,3115:215,155,-11,0,0,0.660478 -21122,3115:216,156,-11,0,0,0.658308 -21123,3115:217,157,-11,0,0,0.654183 -21124,3115:218,158,-11,0,0,0.651458 -21125,3115:219,159,-11,0,0,0.649379 -21126,3116:110,160,-11,0,0,0.646872 -21127,3116:111,161,-11,0,0,0.645134 -21128,3116:112,162,-11,0,0,0.64478 -21129,3116:113,163,-11,0,0,0.644898 -21130,3116:114,164,-11,0,0,0.645698 -21131,3116:215,165,-11,0,0,0.646215 -21132,3116:216,166,-11,0,0,0.646801 -21133,3116:217,167,-11,0,0,0.646801 -21134,3116:218,168,-11,0,0,0.646426 -21135,3116:219,169,-11,0,0,0.649356 -21136,3117:110,170,-11,0,0,0.649613 -21137,3117:111,171,-11,0,0,0.648841 -21138,3117:112,172,-11,0,0,0.64856 -21139,3117:113,173,-11,0,0,0.646849 -21140,3117:114,174,-11,0,0,0.644498 -21141,3117:215,175,-11,0,0,0.643532 -21142,3117:216,176,-11,0,0,0.643084 -21143,3117:217,177,-11,0,0,0.642117 -21144,3117:218,178,-11,0,0,0.642872 -21145,3117:219,179,-11,0,0,0.643932 -21146,3118:110,180,-11,0,0,0.645345 -21147,5118:100,-180,-10,0,0,0.655437 -21148,5117:209,-179,-10,0,0,0.658146 -21149,5117:208,-178,-10,0,0,0.66103 -21150,5117:207,-177,-10,0,0,0.66365 -21151,5117:206,-176,-10,0,0,0.667241 -21152,5117:205,-175,-10,0,0,0.669768 -21153,5117:104,-174,-10,0,0,0.670495 -21154,5117:103,-173,-10,0,0,0.669541 -21155,5117:102,-172,-10,0,0,0.668358 -21156,5117:101,-171,-10,0,0,0.668312 -21157,5117:100,-170,-10,0,0,0.668768 -21158,5116:209,-169,-10,0,0,0.668608 -21159,5116:208,-168,-10,0,0,0.668631 -21160,5116:207,-167,-10,0,0,0.670223 -21161,5116:206,-166,-10,0,0,0.673168 -21162,5116:205,-165,-10,0,0,0.673665 -21163,5116:104,-164,-10,0,0,0.674455 -21164,5116:103,-163,-10,0,0,0.674906 -21165,5116:102,-162,-10,0,0,0.675424 -21166,5116:101,-161,-10,0,0,0.676324 -21167,5116:100,-160,-10,0,0,0.67468 -21168,5115:209,-159,-10,0,0,0.675131 -21169,5115:208,-158,-10,0,0,0.674883 -21170,5115:207,-157,-10,0,0,0.674771 -21171,5115:206,-156,-10,0,0,0.675154 -21172,5115:205,-155,-10,0,0,0.673371 -21173,5115:104,-154,-10,0,0,0.671221 -21174,5115:103,-153,-10,0,0,0.669836 -21175,5115:102,-152,-10,0,0,0.669131 -21176,5115:101,-151,-10,0,0,0.667902 -21177,5115:100,-150,-10,0,0,0.667446 -21178,5114:209,-149,-10,0,0,0.666579 -21179,5114:208,-148,-10,0,0,0.665139 -21180,5114:207,-147,-10,0,0,0.663099 -21181,5114:206,-146,-10,0,0,0.662226 -21182,5114:205,-145,-10,0,0,0.660869 -21183,5114:104,-144,-10,0,0,0.658978 -21184,5114:103,-143,-10,0,0,0.656712 -21185,5114:102,-142,-10,0,0,0.655669 -21186,5114:101,-141,-10,0,0,0.653881 -21187,5114:100,-140,-10,0,0,0.652461 -21188,5113:209,-139,-10,0,0,0.651762 -21189,5113:208,-138,-10,0,0,0.648817 -21190,5113:207,-137,-10,0,0,0.647646 -21191,5113:206,-136,-10,0,0,0.64478 -21192,5113:205,-135,-10,0,0,0.642471 -21193,5113:104,-134,-10,0,0,0.64103 -21194,5113:103,-133,-10,0,0,0.639586 -21195,5113:102,-132,-10,0,0,0.637167 -21196,5113:101,-131,-10,0,0,0.632833 -21197,5113:100,-130,-10,0,0,0.633024 -21198,5112:209,-129,-10,0,0,0.629892 -21199,5112:208,-128,-10,0,0,0.62545 -21200,5112:207,-127,-10,0,0,0.621736 -21201,5112:206,-126,-10,0,0,0.621688 -21202,5112:205,-125,-10,0,0,0.615336 -21203,5112:104,-124,-10,0,0,0.615433 -21204,5112:103,-123,-10,0,0,0.609874 -21205,5112:102,-122,-10,0,0,0.603476 -21206,5112:101,-121,-10,0,0,0.600226 -21207,5112:100,-120,-10,0,0,0.595508 -21208,5111:209,-119,-10,0,0,0.593427 -21209,5111:208,-118,-10,0,0,0.587639 -21210,5111:207,-117,-10,0,0,0.582626 -21211,5111:206,-116,-10,0,0,0.578046 -21212,5111:205,-115,-10,0,0,0.572222 -21213,5111:104,-114,-10,0,0,0.566731 -21214,5111:103,-113,-10,0,0,0.559502 -21215,5111:102,-112,-10,0,0,0.55466 -21216,5111:101,-111,-10,0,0,0.552374 -21217,5111:100,-110,-10,0,0,0.544029 -21218,5110:209,-109,-10,0,0,0.540126 -21219,5110:208,-108,-10,0,0,0.533996 -21220,5110:207,-107,-10,0,0,0.527624 -21221,5110:206,-106,-10,0,0,0.522679 -21222,5110:205,-105,-10,0,0,0.515524 -21223,5110:104,-104,-10,0,0,0.509132 -21224,5110:103,-103,-10,0,0,0.50474 -21225,5110:102,-102,-10,0,0,0.502378 -21226,5110:101,-101,-10,0,0,0.496932 -21227,5110:100,-100,-10,0,0,0.490922 -21228,5109:209,-99,-10,0,0,0.485994 -21229,5109:208,-98,-10,0,0,0.480811 -21230,5109:207,-97,-10,0,0,0.476964 -21231,5109:206,-96,-10,0,0,0.472686 -21232,5109:205,-95,-10,0,0,0.464985 -21233,5109:104,-94,-10,0,0,0.457658 -21234,5109:103,-93,-10,0,0,0.458397 -21235,5109:102,-92,-10,0,0,0.457862 -21236,5109:101,-91,-10,0,0,0.459647 -21237,5109:100,-90,-10,0,0,0.458448 -21238,5108:209,-89,-10,0,0,0.456179 -21239,5108:208,-88,-10,0,0,0.454497 -21240,5108:207,-87,-10,0,0,0.45804 -21241,5108:206,-86,-10,0,0,0.462098 -21242,5108:205,-85,-10,0,0,0.464474 -21243,5108:104,-84,-10,0,0,0.467133 -21248,5107:209,-79,-10,0,0,0.486635 -21249,5107:208,-78,-10,0,0,0.463426 -21250,5103:207,-37,-10,0,0,0.626629 -21251,5103:206,-36,-10,0,0,0.625402 -21252,5103:205,-35,-10,0,0,0.622774 -21253,5103:104,-34,-10,0,0,0.619898 -21254,5103:103,-33,-10,0,0,0.616357 -21255,5103:102,-32,-10,0,0,0.614412 -21256,5103:101,-31,-10,0,0,0.609067 -21257,5103:100,-30,-10,0,0,0.606912 -21258,5102:209,-29,-10,0,0,0.602541 -21259,5102:208,-28,-10,0,0,0.598598 -21260,5102:207,-27,-10,0,0,0.59427 -21261,5102:206,-26,-10,0,0,0.591046 -21262,5102:205,-25,-10,0,0,0.588634 -21263,5102:104,-24,-10,0,0,0.583175 -21264,5102:103,-23,-10,0,0,0.582526 -21265,5102:102,-22,-10,0,0,0.577821 -21266,5102:101,-21,-10,0,0,0.573303 -21267,5102:100,-20,-10,0,0,0.569051 -21268,5101:209,-19,-10,0,0,0.563019 -21269,5101:208,-18,-10,0,0,0.557095 -21270,5101:207,-17,-10,0,0,0.55268 -21271,5101:206,-16,-10,0,0,0.551892 -21272,5101:205,-15,-10,0,0,0.551078 -21273,5101:104,-14,-10,0,0,0.54209 -21274,5101:103,-13,-10,0,0,0.537701 -21275,5101:102,-12,-10,0,0,0.535095 -21276,5101:101,-11,-10,0,0,0.533177 -21277,5101:100,-10,-10,0,0,0.534685 -21278,5100:209,-9,-10,0,0,0.526881 -21279,5100:208,-8,-10,0,0,0.523807 -21280,5100:207,-7,-10,0,0,0.521884 -21281,5100:206,-6,-10,0,0,0.528008 -21282,5100:205,-5,-10,0,0,0.522141 -21283,5100:104,-4,-10,0,0,0.522961 -21284,5100:103,-3,-10,0,0,0.521269 -21285,5100:102,-2,-10,0,0,0.519141 -21286,5100:101,-1,-10,0,0,0.517884 -21287,3100:101,0,-10,0,0,0.519679 -21288,3100:101,1,-10,0,0,0.521141 -21289,3100:102,2,-10,0,0,0.519295 -21290,3100:103,3,-10,0,0,0.523602 -21291,3100:104,4,-10,0,0,0.530977 -21292,3100:205,5,-10,0,0,0.537241 -21293,3100:206,6,-10,0,0,0.544538 -21294,3100:207,7,-10,0,0,0.550722 -21295,3100:208,8,-10,0,0,0.565999 -21296,3100:209,9,-10,0,0,0.586343 -21297,3101:100,10,-10,0,0,0.597733 -21298,3101:101,11,-10,0,0,0.606668 -21299,3101:102,12,-10,0,0,0.609312 -21300,3101:103,13,-10,0,0,0.578247 -21301,3104:101,41,-10,0,0,0.66587 -21302,3104:102,42,-10,0,0,0.661583 -21303,3104:104,44,-10,0,0,0.658701 -21304,3104:205,45,-10,0,0,0.651902 -21305,3104:206,46,-10,0,0,0.647482 -21306,3104:207,47,-10,0,0,0.64565 -21307,3104:208,48,-10,0,0,0.642188 -21308,3104:209,49,-10,0,0,0.637808 -21309,3105:100,50,-10,0,0,0.639539 -21310,3105:101,51,-10,0,0,0.643202 -21311,3105:102,52,-10,0,0,0.646943 -21312,3105:103,53,-10,0,0,0.646285 -21313,3105:104,54,-10,0,0,0.648208 -21314,3105:205,55,-10,0,0,0.651435 -21315,3105:206,56,-10,0,0,0.653112 -21316,3105:207,57,-10,0,0,0.653183 -21317,3105:208,58,-10,0,0,0.651178 -21318,3105:209,59,-10,0,0,0.648467 -21319,3106:100,60,-10,0,0,0.64565 -21320,3106:101,61,-10,0,0,0.64155 -21321,3106:102,62,-10,0,0,0.638638 -21322,3106:103,63,-10,0,0,0.641361 -21323,3106:104,64,-10,0,0,0.644969 -21324,3106:205,65,-10,0,0,0.648489 -21325,3106:206,66,-10,0,0,0.650851 -21326,3106:207,67,-10,0,0,0.652158 -21327,3106:208,68,-10,0,0,0.652671 -21328,3106:209,69,-10,0,0,0.65253 -21329,3107:100,70,-10,0,0,0.652134 -21330,3107:101,71,-10,0,0,0.652088 -21331,3107:102,72,-10,0,0,0.652601 -21332,3107:104,74,-10,0,0,0.651389 -21333,3107:205,75,-10,0,0,0.649473 -21334,3107:206,76,-10,0,0,0.647529 -21335,3107:207,77,-10,0,0,0.644945 -21336,3107:208,78,-10,0,0,0.641975 -21337,3107:209,79,-10,0,0,0.638402 -21338,3108:100,80,-10,0,0,0.635313 -21339,3108:101,81,-10,0,0,0.632356 -21340,3108:102,82,-10,0,0,0.629461 -21341,3108:103,83,-10,0,0,0.626461 -21342,3108:104,84,-10,0,0,0.624004 -21343,3108:205,85,-10,0,0,0.621688 -21344,3108:206,86,-10,0,0,0.620237 -21345,3108:207,87,-10,0,0,0.619705 -21346,3108:208,88,-10,0,0,0.619195 -21347,3108:209,89,-10,0,0,0.618105 -21348,3109:100,90,-10,0,0,0.617571 -21349,3109:101,91,-10,0,0,0.618638 -21350,3109:102,92,-10,0,0,0.621978 -21351,3109:103,93,-10,0,0,0.623836 -21352,3109:104,94,-10,0,0,0.622799 -21353,3109:205,95,-10,0,0,0.620431 -21354,3109:206,96,-10,0,0,0.618493 -21355,3109:207,97,-10,0,0,0.616576 -21356,3109:208,98,-10,0,0,0.615336 -21357,3109:209,99,-10,0,0,0.616916 -21358,3110:100,100,-10,0,0,0.622895 -21359,3110:101,101,-10,0,0,0.630514 -21360,3110:102,102,-10,0,0,0.63343 -21361,3110:103,103,-10,0,0,0.63374 -21362,3110:104,104,-10,0,0,0.635764 -21363,3110:205,105,-10,0,0,0.637975 -21364,3110:206,106,-10,0,0,0.636122 -21365,3110:207,107,-10,0,0,0.636098 -21366,3110:208,108,-10,0,0,0.648911 -21367,3110:209,109,-10,0,0,0.660846 -21368,3111:100,110,-10,0,0,0.660478 -21369,3111:101,111,-10,0,0,0.664085 -21370,3111:102,112,-10,0,0,0.669245 -21371,3111:103,113,-10,0,0,0.67319 -21372,3111:104,114,-10,0,0,0.677313 -21373,3111:205,115,-10,0,0,0.680248 -21374,3111:206,116,-10,0,0,0.681632 -21375,3111:207,117,-10,0,0,0.681743 -21376,3111:208,118,-10,0,0,0.681677 -21377,3111:209,119,-10,0,0,0.681609 -21378,3112:100,120,-10,0,0,0.680382 -21379,3112:101,121,-10,0,0,0.680739 -21380,3112:102,122,-10,0,0,0.68408 -21381,3112:103,123,-10,0,0,0.685454 -21382,3112:104,124,-10,0,0,0.683435 -21383,3112:205,125,-10,0,0,0.689692 -21384,3112:206,126,-10,0,0,0.6974 -21385,3112:207,127,-10,0,0,0.699348 -21386,3112:208,128,-10,0,0,0.703051 -21387,3112:209,129,-10,0,0,0.706343 -21388,3113:100,130,-10,0,0,0.714355 -21389,3113:102,132,-10,0,0,0.714355 -21390,3113:104,134,-10,0,0,0.714355 -21391,3113:205,135,-10,0,0,0.710101 -21392,3113:206,136,-10,0,0,0.704336 -21393,3113:207,137,-10,0,0,0.698224 -21394,3113:208,138,-10,0,0,0.673349 -21395,3113:209,139,-10,0,0,0.671606 -21396,3114:100,140,-10,0,0,0.678099 -21397,3114:101,141,-10,0,0,0.683346 -21398,3114:102,142,-10,0,0,0.688437 -21399,3114:104,144,-10,0,0,0.656156 -21400,3114:205,145,-10,0,0,0.649192 -21401,3114:206,146,-10,0,0,0.651924 -21402,3114:207,147,-10,0,0,0.647459 -21403,3114:208,148,-10,0,0,0.646731 -21404,3114:209,149,-10,0,0,0.650875 -21405,3115:100,150,-10,0,0,0.654136 -21406,3115:101,151,-10,0,0,0.66326 -21407,3115:102,152,-10,0,0,0.666465 -21408,3115:103,153,-10,0,0,0.666076 -21409,3115:104,154,-10,0,0,0.664383 -21410,3115:205,155,-10,0,0,0.671402 -21411,3115:206,156,-10,0,0,0.67172 -21412,3115:207,157,-10,0,0,0.669427 -21413,3115:208,158,-10,0,0,0.66879 -21414,3115:209,159,-10,0,0,0.667332 -21415,3116:100,160,-10,0,0,0.661697 -21416,3116:101,161,-10,0,0,0.657708 -21417,3116:102,162,-10,0,0,0.658285 -21418,3116:103,163,-10,0,0,0.658863 -21419,3116:104,164,-10,0,0,0.659647 -21420,3116:205,165,-10,0,0,0.659901 -21421,3116:206,166,-10,0,0,0.659694 -21422,3116:207,167,-10,0,0,0.660339 -21423,3116:208,168,-10,0,0,0.661168 -21424,3116:209,169,-10,0,0,0.661744 -21425,3117:100,170,-10,0,0,0.661214 -21426,3117:101,171,-10,0,0,0.659971 -21427,3117:102,172,-10,0,0,0.658216 -21428,3117:103,173,-10,0,0,0.655344 -21429,3117:104,174,-10,0,0,0.653322 -21430,3117:205,175,-10,0,0,0.653508 -21431,3117:206,176,-10,0,0,0.653322 -21432,3117:207,177,-10,0,0,0.653974 -21433,3117:208,178,-10,0,0,0.653904 -21434,3117:209,179,-10,0,0,0.653881 -21435,3118:100,180,-10,0,0,0.655437 -21436,5018:390,-180,-9,0,0,0.664246 -21437,5017:499,-179,-9,0,0,0.666191 -21438,5017:498,-178,-9,0,0,0.668085 -21439,5017:497,-177,-9,0,0,0.670699 -21440,5017:496,-176,-9,0,0,0.672784 -21441,5017:495,-175,-9,0,0,0.673439 -21442,5017:394,-174,-9,0,0,0.673733 -21443,5017:393,-173,-9,0,0,0.673755 -21444,5017:392,-172,-9,0,0,0.673326 -21445,5017:391,-171,-9,0,0,0.673032 -21446,5017:390,-170,-9,0,0,0.674026 -21447,5016:499,-169,-9,0,0,0.674793 -21448,5016:498,-168,-9,0,0,0.675334 -21449,5016:497,-167,-9,0,0,0.675109 -21450,5016:496,-166,-9,0,0,0.675379 -21451,5016:495,-165,-9,0,0,0.676437 -21452,5016:394,-164,-9,0,0,0.677852 -21453,5016:393,-163,-9,0,0,0.678211 -21454,5016:392,-162,-9,0,0,0.678211 -21455,5016:391,-161,-9,0,0,0.678413 -21456,5016:390,-160,-9,0,0,0.678323 -21457,5015:499,-159,-9,0,0,0.678189 -21458,5015:498,-158,-9,0,0,0.677874 -21459,5015:497,-157,-9,0,0,0.676909 -21460,5015:496,-156,-9,0,0,0.675424 -21461,5015:495,-155,-9,0,0,0.673258 -21462,5015:394,-154,-9,0,0,0.671923 -21463,5015:393,-153,-9,0,0,0.670336 -21464,5015:392,-152,-9,0,0,0.668494 -21465,5015:391,-151,-9,0,0,0.66699 -21466,5015:390,-150,-9,0,0,0.665665 -21467,5014:499,-149,-9,0,0,0.66507 -21468,5014:498,-148,-9,0,0,0.661237 -21469,5014:497,-147,-9,0,0,0.659579 -21470,5014:496,-146,-9,0,0,0.658262 -21471,5014:495,-145,-9,0,0,0.658816 -21472,5014:394,-144,-9,0,0,0.656318 -21473,5014:393,-143,-9,0,0,0.654136 -21474,5014:392,-142,-9,0,0,0.652018 -21475,5014:391,-141,-9,0,0,0.650174 -21476,5014:390,-140,-9,0,0,0.648654 -21477,5013:499,-139,-9,0,0,0.646261 -21478,5013:498,-138,-9,0,0,0.643532 -21479,5013:497,-137,-9,0,0,0.641928 -21480,5013:496,-136,-9,0,0,0.64025 -21481,5013:495,-135,-9,0,0,0.636288 -21482,5013:394,-134,-9,0,0,0.63312 -21483,5013:393,-133,-9,0,0,0.630011 -21484,5013:392,-132,-9,0,0,0.628838 -21485,5013:391,-131,-9,0,0,0.624294 -21486,5013:390,-130,-9,0,0,0.622436 -21487,5012:499,-129,-9,0,0,0.618396 -21488,5012:498,-128,-9,0,0,0.617183 -21489,5012:497,-127,-9,0,0,0.613681 -21490,5012:496,-126,-9,0,0,0.608897 -21491,5012:495,-125,-9,0,0,0.607329 -21492,5012:394,-124,-9,0,0,0.603869 -21493,5012:393,-123,-9,0,0,0.59998 -21494,5012:392,-122,-9,0,0,0.595805 -21495,5012:391,-121,-9,0,0,0.591964 -21496,5012:390,-120,-9,0,0,0.587738 -21497,5011:499,-119,-9,0,0,0.583774 -21498,5011:498,-118,-9,0,0,0.57717 -21499,5011:497,-117,-9,0,0,0.571745 -21500,5011:496,-116,-9,0,0,0.567942 -21501,5011:495,-115,-9,0,0,0.563145 -21502,5011:394,-114,-9,0,0,0.557146 -21503,5011:393,-113,-9,0,0,0.551359 -21504,5011:392,-112,-9,0,0,0.544945 -21505,5011:391,-111,-9,0,0,0.539948 -21506,5011:390,-110,-9,0,0,0.535836 -21507,5010:499,-109,-9,0,0,0.532077 -21508,5010:498,-108,-9,0,0,0.527599 -21509,5010:497,-107,-9,0,0,0.523243 -21510,5010:496,-106,-9,0,0,0.519038 -21511,5010:495,-105,-9,0,0,0.514625 -21512,5010:394,-104,-9,0,0,0.510904 -21513,5010:393,-103,-9,0,0,0.508849 -21514,5010:392,-102,-9,0,0,0.505819 -21515,5010:391,-101,-9,0,0,0.501016 -21516,5010:390,-100,-9,0,0,0.495108 -21517,5009:499,-99,-9,0,0,0.492668 -21518,5009:498,-98,-9,0,0,0.491898 -21519,5009:497,-97,-9,0,0,0.488638 -21520,5009:496,-96,-9,0,0,0.486225 -21521,5009:495,-95,-9,0,0,0.478708 -21522,5009:394,-94,-9,0,0,0.476068 -21523,5009:393,-93,-9,0,0,0.480093 -21524,5009:392,-92,-9,0,0,0.485146 -21525,5009:391,-91,-9,0,0,0.484454 -21526,5009:390,-90,-9,0,0,0.488304 -21527,5008:499,-89,-9,0,0,0.488278 -21528,5008:498,-88,-9,0,0,0.488175 -21529,5008:497,-87,-9,0,0,0.488124 -21530,5008:496,-86,-9,0,0,0.48951 -21531,5008:495,-85,-9,0,0,0.489792 -21532,5008:394,-84,-9,0,0,0.491025 -21533,5008:393,-83,-9,0,0,0.4929 -21534,5008:392,-82,-9,0,0,0.495005 -21535,5008:391,-81,-9,0,0,0.492951 -21536,5008:390,-80,-9,0,0,0.488278 -21537,5007:499,-79,-9,0,0,0.480169 -21538,5003:496,-36,-9,0,0,0.62316 -21539,5003:495,-35,-9,0,0,0.625209 -21540,5003:394,-34,-9,0,0,0.618905 -21541,5003:393,-33,-9,0,0,0.615263 -21542,5003:392,-32,-9,0,0,0.611633 -21543,5003:391,-31,-9,0,0,0.609141 -21544,5003:390,-30,-9,0,0,0.604729 -21545,5002:499,-29,-9,0,0,0.601163 -21546,5002:498,-28,-9,0,0,0.598153 -21547,5002:497,-27,-9,0,0,0.595508 -21548,5002:496,-26,-9,0,0,0.591791 -21549,5002:495,-25,-9,0,0,0.589355 -21550,5002:394,-24,-9,0,0,0.585621 -21551,5002:393,-23,-9,0,0,0.581526 -21552,5002:392,-22,-9,0,0,0.57965 -21553,5002:391,-21,-9,0,0,0.57481 -21554,5002:390,-20,-9,0,0,0.572574 -21555,5001:499,-19,-9,0,0,0.569227 -21556,5001:498,-18,-9,0,0,0.565166 -21557,5001:497,-17,-9,0,0,0.562185 -21558,5001:496,-16,-9,0,0,0.560793 -21559,5001:495,-15,-9,0,0,0.556537 -21560,5001:394,-14,-9,0,0,0.554914 -21561,5001:393,-13,-9,0,0,0.550367 -21562,5001:392,-12,-9,0,0,0.54818 -21563,5001:391,-11,-9,0,0,0.547721 -21564,5001:390,-10,-9,0,0,0.545302 -21565,5000:499,-9,-9,0,0,0.54033 -21566,5000:498,-8,-9,0,0,0.539054 -21567,5000:497,-7,-9,0,0,0.537062 -21568,5000:496,-6,-9,0,0,0.538697 -21569,5000:495,-5,-9,0,0,0.537675 -21570,5000:394,-4,-9,0,0,0.535043 -21571,5000:393,-3,-9,0,0,0.533459 -21572,5000:392,-2,-9,0,0,0.534149 -21573,5000:391,-1,-9,0,0,0.534635 -21574,3000:391,0,-9,0,0,0.538033 -21575,3000:391,1,-9,0,0,0.541479 -21576,3000:392,2,-9,0,0,0.543263 -21577,3000:393,3,-9,0,0,0.548307 -21578,3000:394,4,-9,0,0,0.553442 -21579,3000:495,5,-9,0,0,0.559654 -21580,3000:496,6,-9,0,0,0.56963 -21581,3000:497,7,-9,0,0,0.584349 -21582,3000:498,8,-9,0,0,0.597141 -21583,3000:499,9,-9,0,0,0.607378 -21584,3001:390,10,-9,0,0,0.614363 -21585,3001:391,11,-9,0,0,0.623667 -21586,3001:392,12,-9,0,0,0.62345 -21587,3001:393,13,-9,0,0,0.589331 -21588,3004:390,40,-9,0,0,0.660039 -21589,3004:391,41,-9,0,0,0.664062 -21590,3004:392,42,-9,0,0,0.660892 -21591,3004:393,43,-9,0,0,0.658308 -21592,3004:394,44,-9,0,0,0.655622 -21593,3004:495,45,-9,0,0,0.65288 -21594,3004:496,46,-9,0,0,0.648982 -21595,3004:497,47,-9,0,0,0.64652 -21596,3004:498,48,-9,0,0,0.646167 -21597,3004:499,49,-9,0,0,0.648373 -21598,3005:390,50,-9,0,0,0.651272 -21599,3005:391,51,-9,0,0,0.654067 -21600,3005:392,52,-9,0,0,0.655762 -21601,3005:393,53,-9,0,0,0.656202 -21602,3005:394,54,-9,0,0,0.659186 -21603,3005:495,55,-9,0,0,0.661628 -21604,3005:496,56,-9,0,0,0.662249 -21605,3005:497,57,-9,0,0,0.660431 -21606,3005:498,58,-9,0,0,0.65692 -21607,3005:499,59,-9,0,0,0.652694 -21608,3006:390,60,-9,0,0,0.647951 -21609,3006:391,61,-9,0,0,0.644027 -21610,3006:392,62,-9,0,0,0.640746 -21611,3006:393,63,-9,0,0,0.647716 -21612,3006:394,64,-9,0,0,0.649473 -21613,3006:495,65,-9,0,0,0.650851 -21614,3006:496,66,-9,0,0,0.652926 -21615,3006:497,67,-9,0,0,0.651948 -21616,3006:498,68,-9,0,0,0.65295 -21617,3006:499,69,-9,0,0,0.657059 -21618,3007:390,70,-9,0,0,0.657407 -21619,3007:391,71,-9,0,0,0.659279 -21620,3007:392,72,-9,0,0,0.660777 -21621,3007:394,74,-9,0,0,0.658632 -21622,3007:495,75,-9,0,0,0.657106 -21623,3007:496,76,-9,0,0,0.65655 -21624,3007:497,77,-9,0,0,0.656272 -21625,3007:498,78,-9,0,0,0.655576 -21626,3007:499,79,-9,0,0,0.653881 -21627,3008:390,80,-9,0,0,0.650244 -21628,3008:391,81,-9,0,0,0.645768 -21629,3008:392,82,-9,0,0,0.640439 -21630,3008:393,83,-9,0,0,0.634932 -21631,3008:394,84,-9,0,0,0.632929 -21632,3008:495,85,-9,0,0,0.632809 -21633,3008:496,86,-9,0,0,0.633072 -21634,3008:497,87,-9,0,0,0.632332 -21635,3008:498,88,-9,0,0,0.630347 -21636,3008:499,89,-9,0,0,0.62747 -21637,3009:390,90,-9,0,0,0.625715 -21638,3009:391,91,-9,0,0,0.626196 -21639,3009:392,92,-9,0,0,0.628141 -21640,3009:393,93,-9,0,0,0.63006 -21641,3009:394,94,-9,0,0,0.631089 -21642,3009:495,95,-9,0,0,0.630922 -21643,3009:496,96,-9,0,0,0.630467 -21644,3009:497,97,-9,0,0,0.629269 -21645,3009:498,98,-9,0,0,0.627517 -21646,3009:499,99,-9,0,0,0.628022 -21647,3010:390,100,-9,0,0,0.630969 -21648,3010:391,101,-9,0,0,0.635408 -21649,3010:392,102,-9,0,0,0.640557 -21650,3010:393,103,-9,0,0,0.643249 -21651,3010:394,104,-9,0,0,0.643862 -21652,3010:495,105,-9,0,0,0.646355 -21653,3010:496,106,-9,0,0,0.653555 -21654,3010:497,107,-9,0,0,0.657522 -21655,3010:498,108,-9,0,0,0.660386 -21656,3010:499,109,-9,0,0,0.662249 -21657,3011:390,110,-9,0,0,0.66303 -21658,3011:391,111,-9,0,0,0.665436 -21659,3011:392,112,-9,0,0,0.667492 -21660,3011:393,113,-9,0,0,0.668859 -21661,3011:394,114,-9,0,0,0.671175 -21662,3011:495,115,-9,0,0,0.677224 -21663,3011:496,116,-9,0,0,0.677448 -21664,3011:497,117,-9,0,0,0.675244 -21665,3011:498,118,-9,0,0,0.674116 -21666,3011:499,119,-9,0,0,0.676234 -21667,3012:390,120,-9,0,0,0.677987 -21668,3012:392,122,-9,0,0,0.682256 -21669,3012:393,123,-9,0,0,0.678861 -21670,3012:495,125,-9,0,0,0.68368 -21671,3012:496,126,-9,0,0,0.684057 -21672,3012:497,127,-9,0,0,0.682746 -21673,3012:498,128,-9,0,0,0.693046 -21674,3012:499,129,-9,0,0,0.697292 -21675,3013:390,130,-9,0,0,0.695619 -21676,3013:391,131,-9,0,0,0.699175 -21677,3013:392,132,-9,0,0,0.695793 -21678,3013:393,133,-9,0,0,0.696858 -21679,3013:394,134,-9,0,0,0.691163 -21680,3013:495,135,-9,0,0,0.683991 -21681,3013:496,136,-9,0,0,0.675672 -21682,3013:497,137,-9,0,0,0.669927 -21683,3013:498,138,-9,0,0,0.671175 -21684,3013:499,139,-9,0,0,0.675649 -21685,3014:390,140,-9,0,0,0.678032 -21686,3014:391,141,-9,0,0,0.681699 -21687,3014:392,142,-9,0,0,0.684523 -21688,3014:393,143,-9,0,0,0.67637 -21689,3014:394,144,-9,0,0,0.658216 -21690,3014:495,145,-9,0,0,0.648467 -21691,3014:496,146,-9,0,0,0.651248 -21692,3014:497,147,-9,0,0,0.659971 -21693,3014:498,148,-9,0,0,0.640912 -21694,3015:391,151,-9,0,0,0.666761 -21695,3015:392,152,-9,0,0,0.675154 -21696,3015:393,153,-9,0,0,0.677605 -21697,3015:394,154,-9,0,0,0.679689 -21698,3015:495,155,-9,0,0,0.680136 -21699,3015:496,156,-9,0,0,0.680672 -21700,3015:497,157,-9,0,0,0.681319 -21701,3015:498,158,-9,0,0,0.681699 -21702,3015:499,159,-9,0,0,0.679935 -21703,3016:390,160,-9,0,0,0.677852 -21704,3016:391,161,-9,0,0,0.674252 -21705,3016:392,162,-9,0,0,0.668107 -21706,3016:393,163,-9,0,0,0.668335 -21707,3016:394,164,-9,0,0,0.668859 -21708,3016:495,165,-9,0,0,0.669859 -21709,3016:496,166,-9,0,0,0.66945 -21710,3016:497,167,-9,0,0,0.669768 -21711,3016:498,168,-9,0,0,0.670063 -21712,3016:499,169,-9,0,0,0.6697 -21713,3017:390,170,-9,0,0,0.669109 -21714,3017:391,171,-9,0,0,0.668039 -21715,3017:392,172,-9,0,0,0.666076 -21716,3017:393,173,-9,0,0,0.666488 -21717,3017:394,174,-9,0,0,0.663053 -21718,3017:495,175,-9,0,0,0.662777 -21719,3017:496,176,-9,0,0,0.662042 -21720,3017:497,177,-9,0,0,0.661859 -21721,3017:498,178,-9,0,0,0.661904 -21722,3017:499,179,-9,0,0,0.662295 -21723,3018:390,180,-9,0,0,0.664246 -21724,5018:380,-180,-8,0,0,0.673959 -21725,5017:489,-179,-8,0,0,0.675829 -21726,5017:488,-178,-8,0,0,0.676932 -21727,5017:487,-177,-8,0,0,0.677628 -21728,5017:486,-176,-8,0,0,0.676976 -21729,5017:485,-175,-8,0,0,0.676145 -21730,5017:384,-174,-8,0,0,0.676347 -21731,5017:383,-173,-8,0,0,0.676954 -21732,5017:382,-172,-8,0,0,0.676909 -21733,5017:381,-171,-8,0,0,0.677246 -21734,5017:380,-170,-8,0,0,0.677583 -21735,5016:489,-169,-8,0,0,0.676954 -21736,5016:488,-168,-8,0,0,0.676572 -21737,5016:487,-167,-8,0,0,0.677381 -21738,5016:486,-166,-8,0,0,0.677897 -21739,5016:485,-165,-8,0,0,0.67839 -21740,5016:384,-164,-8,0,0,0.678592 -21741,5016:383,-163,-8,0,0,0.677695 -21742,5016:382,-162,-8,0,0,0.676976 -21743,5016:381,-161,-8,0,0,0.676819 -21744,5016:380,-160,-8,0,0,0.677291 -21745,5015:489,-159,-8,0,0,0.676684 -21746,5015:488,-158,-8,0,0,0.675762 -21747,5015:487,-157,-8,0,0,0.673936 -21748,5015:486,-156,-8,0,0,0.672036 -21749,5015:485,-155,-8,0,0,0.669836 -21750,5015:384,-154,-8,0,0,0.668016 -21751,5015:383,-153,-8,0,0,0.667218 -21752,5015:382,-152,-8,0,0,0.665459 -21753,5015:381,-151,-8,0,0,0.662915 -21754,5015:380,-150,-8,0,0,0.66103 -21755,5014:489,-149,-8,0,0,0.659348 -21756,5014:488,-148,-8,0,0,0.656248 -21757,5014:487,-147,-8,0,0,0.653834 -21758,5014:486,-146,-8,0,0,0.652461 -21759,5014:485,-145,-8,0,0,0.651272 -21760,5014:384,-144,-8,0,0,0.649239 -21761,5014:383,-143,-8,0,0,0.646872 -21762,5014:382,-142,-8,0,0,0.645086 -21763,5014:381,-141,-8,0,0,0.642919 -21764,5014:380,-140,-8,0,0,0.640273 -21765,5013:489,-139,-8,0,0,0.637904 -21766,5013:488,-138,-8,0,0,0.635955 -21767,5013:487,-137,-8,0,0,0.633788 -21768,5013:486,-136,-8,0,0,0.630802 -21769,5013:485,-135,-8,0,0,0.627349 -21770,5013:384,-134,-8,0,0,0.624077 -21771,5013:383,-133,-8,0,0,0.621953 -21772,5013:382,-132,-8,0,0,0.619341 -21773,5013:381,-131,-8,0,0,0.616818 -21774,5013:380,-130,-8,0,0,0.614192 -21775,5012:489,-129,-8,0,0,0.61134 -21776,5012:488,-128,-8,0,0,0.60892 -21777,5012:487,-127,-8,0,0,0.606275 -21778,5012:486,-126,-8,0,0,0.603549 -21779,5012:485,-125,-8,0,0,0.60136 -21780,5012:384,-124,-8,0,0,0.599066 -21781,5012:383,-123,-8,0,0,0.59625 -21782,5012:382,-122,-8,0,0,0.593056 -21783,5012:381,-121,-8,0,0,0.589157 -21784,5012:380,-120,-8,0,0,0.584748 -21785,5011:489,-119,-8,0,0,0.580401 -21786,5011:488,-118,-8,0,0,0.576467 -21787,5011:487,-117,-8,0,0,0.573127 -21788,5011:486,-116,-8,0,0,0.569201 -21789,5011:485,-115,-8,0,0,0.563953 -21790,5011:384,-114,-8,0,0,0.558464 -21791,5011:383,-113,-8,0,0,0.553035 -21792,5011:382,-112,-8,0,0,0.549045 -21793,5011:381,-111,-8,0,0,0.54492 -21794,5011:380,-110,-8,0,0,0.538722 -21795,5010:489,-109,-8,0,0,0.533714 -21796,5010:488,-108,-8,0,0,0.530901 -21797,5010:487,-107,-8,0,0,0.529365 -21798,5010:486,-106,-8,0,0,0.52414 -21799,5010:485,-105,-8,0,0,0.520988 -21800,5010:384,-104,-8,0,0,0.52191 -21801,5010:383,-103,-8,0,0,0.520013 -21802,5010:382,-102,-8,0,0,0.515524 -21803,5010:381,-101,-8,0,0,0.512264 -21804,5010:380,-100,-8,0,0,0.507411 -21805,5009:489,-99,-8,0,0,0.509645 -21806,5009:488,-98,-8,0,0,0.5117 -21807,5009:487,-97,-8,0,0,0.514368 -21808,5009:486,-96,-8,0,0,0.514086 -21809,5009:485,-95,-8,0,0,0.509157 -21810,5009:384,-94,-8,0,0,0.506667 -21811,5009:383,-93,-8,0,0,0.509363 -21812,5009:382,-92,-8,0,0,0.513137 -21813,5009:381,-91,-8,0,0,0.513085 -21814,5009:380,-90,-8,0,0,0.512931 -21815,5008:489,-89,-8,0,0,0.514215 -21816,5008:488,-88,-8,0,0,0.511982 -21817,5008:487,-87,-8,0,0,0.509748 -21818,5008:486,-86,-8,0,0,0.50754 -21819,5008:485,-85,-8,0,0,0.503508 -21820,5008:384,-84,-8,0,0,0.504381 -21821,5008:383,-83,-8,0,0,0.504047 -21822,5008:382,-82,-8,0,0,0.497497 -21823,5008:381,-81,-8,0,0,0.49123 -21824,5008:380,-80,-8,0,0,0.479759 -21825,5007:489,-79,-8,0,0,0.455618 -21826,5003:485,-35,-8,0,0,0.62634 -21827,5003:384,-34,-8,0,0,0.619898 -21828,5003:383,-33,-8,0,0,0.61592 -21829,5003:382,-32,-8,0,0,0.612877 -21830,5003:381,-31,-8,0,0,0.609728 -21831,5003:380,-30,-8,0,0,0.605858 -21832,5002:489,-29,-8,0,0,0.602123 -21833,5002:488,-28,-8,0,0,0.598302 -21834,5002:487,-27,-8,0,0,0.594419 -21835,5002:486,-26,-8,0,0,0.591616 -21836,5002:485,-25,-8,0,0,0.588684 -21837,5002:384,-24,-8,0,0,0.586468 -21838,5002:383,-23,-8,0,0,0.584448 -21839,5002:382,-22,-8,0,0,0.581201 -21840,5002:381,-21,-8,0,0,0.578448 -21841,5002:380,-20,-8,0,0,0.57594 -21842,5001:489,-19,-8,0,0,0.574208 -21843,5001:488,-18,-8,0,0,0.57192 -21844,5001:487,-17,-8,0,0,0.569932 -21845,5001:486,-16,-8,0,0,0.567664 -21846,5001:485,-15,-8,0,0,0.563373 -21847,5001:384,-14,-8,0,0,0.562159 -21848,5001:383,-13,-8,0,0,0.561729 -21849,5001:382,-12,-8,0,0,0.560211 -21850,5001:381,-11,-8,0,0,0.559755 -21851,5001:380,-10,-8,0,0,0.557602 -21852,5000:489,-9,-8,0,0,0.552654 -21853,5000:488,-8,-8,0,0,0.549985 -21854,5000:487,-7,-8,0,0,0.549222 -21855,5000:486,-6,-8,0,0,0.549985 -21856,5000:485,-5,-8,0,0,0.55029 -21857,5000:384,-4,-8,0,0,0.548663 -21858,5000:383,-3,-8,0,0,0.550799 -21859,5000:382,-2,-8,0,0,0.550799 -21860,5000:381,-1,-8,0,0,0.553416 -21861,3000:381,0,-8,0,0,0.559654 -21862,3000:381,1,-8,0,0,0.562462 -21863,3000:382,2,-8,0,0,0.565696 -21864,3000:383,3,-8,0,0,0.571971 -21865,3000:384,4,-8,0,0,0.57737 -21866,3000:485,5,-8,0,0,0.581776 -21867,3000:486,6,-8,0,0,0.590871 -21868,3000:487,7,-8,0,0,0.601507 -21869,3000:488,8,-8,0,0,0.613437 -21870,3000:489,9,-8,0,0,0.624077 -21871,3001:380,10,-8,0,0,0.628453 -21872,3001:381,11,-8,0,0,0.628141 -21873,3001:382,12,-8,0,0,0.612268 -21874,3001:383,13,-8,0,0,0.568219 -21875,3004:380,40,-8,0,0,0.663352 -21876,3004:381,41,-8,0,0,0.665161 -21877,3004:382,42,-8,0,0,0.66683 -21878,3004:383,43,-8,0,0,0.665093 -21879,3004:384,44,-8,0,0,0.663489 -21880,3004:485,45,-8,0,0,0.661076 -21881,3004:486,46,-8,0,0,0.657314 -21882,3004:487,47,-8,0,0,0.657823 -21883,3004:488,48,-8,0,0,0.659024 -21884,3004:489,49,-8,0,0,0.661099 -21885,3005:380,50,-8,0,0,0.66218 -21886,3005:381,51,-8,0,0,0.660892 -21887,3005:382,52,-8,0,0,0.660662 -21888,3005:383,53,-8,0,0,0.660938 -21889,3005:384,54,-8,0,0,0.663902 -21890,3005:485,55,-8,0,0,0.665367 -21891,3005:486,56,-8,0,0,0.665093 -21892,3005:487,57,-8,0,0,0.663879 -21893,3005:488,58,-8,0,0,0.660823 -21894,3005:489,59,-8,0,0,0.655019 -21895,3006:380,60,-8,0,0,0.6424 -21896,3006:381,61,-8,0,0,0.651062 -21897,3006:382,62,-8,0,0,0.652158 -21898,3006:383,63,-8,0,0,0.653415 -21899,3006:384,64,-8,0,0,0.65402 -21900,3006:485,65,-8,0,0,0.656156 -21901,3006:486,66,-8,0,0,0.658608 -21902,3006:487,67,-8,0,0,0.660339 -21903,3006:488,68,-8,0,0,0.662847 -21904,3006:489,69,-8,0,0,0.66436 -21905,3007:380,70,-8,0,0,0.665047 -21906,3007:381,71,-8,0,0,0.666807 -21907,3007:382,72,-8,0,0,0.667035 -21908,3007:384,74,-8,0,0,0.665962 -21909,3007:485,75,-8,0,0,0.665688 -21910,3007:486,76,-8,0,0,0.666076 -21911,3007:487,77,-8,0,0,0.66475 -21912,3007:488,78,-8,0,0,0.663145 -21913,3007:489,79,-8,0,0,0.661996 -21914,3008:380,80,-8,0,0,0.660984 -21915,3008:381,81,-8,0,0,0.654624 -21916,3008:382,82,-8,0,0,0.649473 -21917,3008:383,83,-8,0,0,0.64372 -21918,3008:384,84,-8,0,0,0.640107 -21919,3008:485,85,-8,0,0,0.639065 -21920,3008:486,86,-8,0,0,0.639302 -21921,3008:487,87,-8,0,0,0.640628 -21922,3008:488,88,-8,0,0,0.642377 -21923,3008:489,89,-8,0,0,0.64365 -21924,3009:380,90,-8,0,0,0.64398 -21925,3009:381,91,-8,0,0,0.642565 -21926,3009:382,92,-8,0,0,0.641881 -21927,3009:383,93,-8,0,0,0.642825 -21928,3009:384,94,-8,0,0,0.642966 -21929,3009:485,95,-8,0,0,0.641881 -21930,3009:486,96,-8,0,0,0.64025 -21931,3009:487,97,-8,0,0,0.639041 -21932,3009:488,98,-8,0,0,0.637618 -21933,3009:489,99,-8,0,0,0.637642 -21934,3010:380,100,-8,0,0,0.641077 -21935,3010:381,101,-8,0,0,0.645157 -21936,3010:382,102,-8,0,0,0.647459 -21937,3010:383,103,-8,0,0,0.649122 -21938,3010:384,104,-8,0,0,0.650478 -21939,3010:485,105,-8,0,0,0.65281 -21940,3010:486,106,-8,0,0,0.65488 -21941,3010:487,107,-8,0,0,0.656712 -21942,3010:488,108,-8,0,0,0.657777 -21943,3010:489,109,-8,0,0,0.659002 -21944,3011:380,110,-8,0,0,0.659786 -21945,3011:381,111,-8,0,0,0.660915 -21946,3011:382,112,-8,0,0,0.661145 -21947,3011:383,113,-8,0,0,0.66326 -21948,3011:384,114,-8,0,0,0.666396 -21949,3011:485,115,-8,0,0,0.665619 -21950,3012:383,123,-8,0,0,0.692325 -21951,3012:384,124,-8,0,0,0.689208 -21952,3012:485,125,-8,0,0,0.683635 -21953,3012:488,128,-8,0,0,0.680181 -21954,3012:489,129,-8,0,0,0.684701 -21955,3013:380,130,-8,0,0,0.684634 -21956,3013:381,131,-8,0,0,0.686252 -21957,3013:382,132,-8,0,0,0.688173 -21958,3013:383,133,-8,0,0,0.686583 -21959,3013:384,134,-8,0,0,0.680315 -21960,3013:485,135,-8,0,0,0.670041 -21961,3013:486,136,-8,0,0,0.672648 -21962,3013:487,137,-8,0,0,0.677089 -21963,3013:488,138,-8,0,0,0.693833 -21964,3013:489,139,-8,0,0,0.693352 -21965,3014:380,140,-8,0,0,0.692106 -21966,3014:384,144,-8,0,0,0.68923 -21967,3014:485,145,-8,0,0,0.661835 -21968,3014:486,146,-8,0,0,0.67029 -21969,3014:489,149,-8,0,0,0.671742 -21970,3015:380,150,-8,0,0,0.672896 -21971,3015:381,151,-8,0,0,0.677067 -21972,3015:382,152,-8,0,0,0.679958 -21973,3015:383,153,-8,0,0,0.683235 -21974,3015:384,154,-8,0,0,0.684945 -21975,3015:485,155,-8,0,0,0.68687 -21976,3015:486,156,-8,0,0,0.685322 -21977,3015:487,157,-8,0,0,0.686362 -21978,3015:488,158,-8,0,0,0.687401 -21979,3015:489,159,-8,0,0,0.687445 -21980,3016:380,160,-8,0,0,0.681029 -21981,3016:382,162,-8,0,0,0.678794 -21982,3016:383,163,-8,0,0,0.676504 -21983,3016:384,164,-8,0,0,0.675942 -21984,3016:485,165,-8,0,0,0.674613 -21985,3016:486,166,-8,0,0,0.674184 -21986,3016:487,167,-8,0,0,0.675019 -21987,3016:488,168,-8,0,0,0.675537 -21988,3016:489,169,-8,0,0,0.674973 -21989,3017:380,170,-8,0,0,0.674771 -21990,3017:381,171,-8,0,0,0.674861 -21991,3017:382,172,-8,0,0,0.674929 -21992,3017:383,173,-8,0,0,0.675942 -21993,3017:384,174,-8,0,0,0.6738 -21994,3017:485,175,-8,0,0,0.671832 -21995,3017:486,176,-8,0,0,0.671425 -21996,3017:487,177,-8,0,0,0.67079 -21997,3017:488,178,-8,0,0,0.670744 -21998,3017:489,179,-8,0,0,0.671697 -21999,3018:380,180,-8,0,0,0.673959 -22000,5018:370,-180,-7,0,0,0.681163 -22001,5017:479,-179,-7,0,0,0.68094 -22002,5017:478,-178,-7,0,0,0.680338 -22003,5017:477,-177,-7,0,0,0.679264 -22004,5017:476,-176,-7,0,0,0.678099 -22005,5017:475,-175,-7,0,0,0.678099 -22006,5017:374,-174,-7,0,0,0.678503 -22007,5017:373,-173,-7,0,0,0.678928 -22008,5017:372,-172,-7,0,0,0.678861 -22009,5017:371,-171,-7,0,0,0.678615 -22010,5017:370,-170,-7,0,0,0.677672 -22011,5016:479,-169,-7,0,0,0.677089 -22012,5016:478,-168,-7,0,0,0.677381 -22013,5016:477,-167,-7,0,0,0.67783 -22014,5016:476,-166,-7,0,0,0.678122 -22015,5016:475,-165,-7,0,0,0.677448 -22016,5016:374,-164,-7,0,0,0.676617 -22017,5016:373,-163,-7,0,0,0.676077 -22018,5016:372,-162,-7,0,0,0.675064 -22019,5016:371,-161,-7,0,0,0.673868 -22020,5016:370,-160,-7,0,0,0.672286 -22021,5015:479,-159,-7,0,0,0.670699 -22022,5015:478,-158,-7,0,0,0.668198 -22023,5015:477,-157,-7,0,0,0.665596 -22024,5015:476,-156,-7,0,0,0.663604 -22025,5015:475,-155,-7,0,0,0.662249 -22026,5015:374,-154,-7,0,0,0.660247 -22027,5015:373,-153,-7,0,0,0.658031 -22028,5015:372,-152,-7,0,0,0.655599 -22029,5015:371,-151,-7,0,0,0.653788 -22030,5015:370,-150,-7,0,0,0.651924 -22031,5014:479,-149,-7,0,0,0.649402 -22032,5014:478,-148,-7,0,0,0.647716 -22033,5014:477,-147,-7,0,0,0.64605 -22034,5014:476,-146,-7,0,0,0.643626 -22035,5014:475,-145,-7,0,0,0.641101 -22036,5014:374,-144,-7,0,0,0.63897 -22037,5014:373,-143,-7,0,0,0.63712 -22038,5014:372,-142,-7,0,0,0.635717 -22039,5014:371,-141,-7,0,0,0.634693 -22040,5014:370,-140,-7,0,0,0.633478 -22041,5013:479,-139,-7,0,0,0.631471 -22042,5013:478,-138,-7,0,0,0.629173 -22043,5013:477,-137,-7,0,0,0.626749 -22044,5013:476,-136,-7,0,0,0.624197 -22045,5013:475,-135,-7,0,0,0.621494 -22046,5013:374,-134,-7,0,0,0.618953 -22047,5013:373,-133,-7,0,0,0.616478 -22048,5013:372,-132,-7,0,0,0.614436 -22049,5013:371,-131,-7,0,0,0.612902 -22050,5013:370,-130,-7,0,0,0.611902 -22051,5012:479,-129,-7,0,0,0.610412 -22052,5012:478,-128,-7,0,0,0.608431 -22053,5012:477,-127,-7,0,0,0.606226 -22054,5012:476,-126,-7,0,0,0.603476 -22055,5012:475,-125,-7,0,0,0.600028 -22056,5012:374,-124,-7,0,0,0.596498 -22057,5012:373,-123,-7,0,0,0.592982 -22058,5012:372,-122,-7,0,0,0.589008 -22059,5012:371,-121,-7,0,0,0.584399 -22060,5012:370,-120,-7,0,0,0.579274 -22061,5011:479,-119,-7,0,0,0.574584 -22062,5011:478,-118,-7,0,0,0.570612 -22063,5011:477,-117,-7,0,0,0.56721 -22064,5011:476,-116,-7,0,0,0.564181 -22065,5011:475,-115,-7,0,0,0.561097 -22066,5011:374,-114,-7,0,0,0.558007 -22067,5011:373,-113,-7,0,0,0.554355 -22068,5011:372,-112,-7,0,0,0.550494 -22069,5011:371,-111,-7,0,0,0.546779 -22070,5011:370,-110,-7,0,0,0.544614 -22071,5010:479,-109,-7,0,0,0.544385 -22072,5010:478,-108,-7,0,0,0.544105 -22073,5010:477,-107,-7,0,0,0.542448 -22074,5010:476,-106,-7,0,0,0.539309 -22075,5010:475,-105,-7,0,0,0.536424 -22076,5010:374,-104,-7,0,0,0.535171 -22077,5010:373,-103,-7,0,0,0.535682 -22078,5010:372,-102,-7,0,0,0.533126 -22079,5010:371,-101,-7,0,0,0.529621 -22080,5010:370,-100,-7,0,0,0.529518 -22081,5009:479,-99,-7,0,0,0.531284 -22082,5009:478,-98,-7,0,0,0.53241 -22083,5009:477,-97,-7,0,0,0.530364 -22084,5009:476,-96,-7,0,0,0.530977 -22085,5009:475,-95,-7,0,0,0.529877 -22086,5009:374,-94,-7,0,0,0.533535 -22087,5009:373,-93,-7,0,0,0.540662 -22088,5009:372,-92,-7,0,0,0.537139 -22089,5009:371,-91,-7,0,0,0.534507 -22090,5009:370,-90,-7,0,0,0.537624 -22091,5008:479,-89,-7,0,0,0.534839 -22092,5008:478,-88,-7,0,0,0.530184 -22093,5008:477,-87,-7,0,0,0.529953 -22094,5008:476,-86,-7,0,0,0.527471 -22095,5008:475,-85,-7,0,0,0.523269 -22096,5008:374,-84,-7,0,0,0.521833 -22097,5008:373,-83,-7,0,0,0.511545 -22098,5008:372,-82,-7,0,0,0.50546 -22099,5008:371,-81,-7,0,0,0.5051 -22100,5008:370,-80,-7,0,0,0.472174 -22101,5003:475,-35,-7,0,0,0.626171 -22102,5003:374,-34,-7,0,0,0.619341 -22103,5003:373,-33,-7,0,0,0.613852 -22104,5003:372,-32,-7,0,0,0.609679 -22105,5003:371,-31,-7,0,0,0.607403 -22106,5003:370,-30,-7,0,0,0.605736 -22107,5002:479,-29,-7,0,0,0.604385 -22108,5002:478,-28,-7,0,0,0.602492 -22109,5002:477,-27,-7,0,0,0.600916 -22110,5002:476,-26,-7,0,0,0.599708 -22111,5002:475,-25,-7,0,0,0.597116 -22112,5002:374,-24,-7,0,0,0.593427 -22113,5002:373,-23,-7,0,0,0.591492 -22114,5002:372,-22,-7,0,0,0.589008 -22115,5002:371,-21,-7,0,0,0.588958 -22116,5002:370,-20,-7,0,0,0.586543 -22117,5001:479,-19,-7,0,0,0.586368 -22118,5001:478,-18,-7,0,0,0.584499 -22119,5001:477,-17,-7,0,0,0.582726 -22120,5001:476,-16,-7,0,0,0.581851 -22121,5001:475,-15,-7,0,0,0.576693 -22122,5001:374,-14,-7,0,0,0.575262 -22123,5001:373,-13,-7,0,0,0.574861 -22124,5001:372,-12,-7,0,0,0.574886 -22125,5001:371,-11,-7,0,0,0.574534 -22126,5001:370,-10,-7,0,0,0.570586 -22127,5000:479,-9,-7,0,0,0.565898 -22128,5000:478,-8,-7,0,0,0.562791 -22129,5000:477,-7,-7,0,0,0.563676 -22130,5000:476,-6,-7,0,0,0.566907 -22131,5000:475,-5,-7,0,0,0.567261 -22132,5000:374,-4,-7,0,0,0.567437 -22133,5000:373,-3,-7,0,0,0.574183 -22134,5000:372,-2,-7,0,0,0.580601 -22135,5000:371,-1,-7,0,0,0.585446 -22136,3000:371,0,-7,0,0,0.590499 -22137,3000:371,1,-7,0,0,0.5937 -22138,3000:372,2,-7,0,0,0.593774 -22139,3000:373,3,-7,0,0,0.593204 -22140,3000:374,4,-7,0,0,0.597141 -22141,3000:475,5,-7,0,0,0.603648 -22142,3000:476,6,-7,0,0,0.610168 -22143,3000:477,7,-7,0,0,0.622992 -22144,3000:478,8,-7,0,0,0.632618 -22145,3000:479,9,-7,0,0,0.635384 -22146,3001:370,10,-7,0,0,0.634717 -22147,3001:371,11,-7,0,0,0.625209 -22148,3001:372,12,-7,0,0,0.617377 -22149,3004:370,40,-7,0,0,0.666693 -22150,3004:371,41,-7,0,0,0.671855 -22151,3004:372,42,-7,0,0,0.673462 -22152,3004:373,43,-7,0,0,0.673055 -22153,3004:374,44,-7,0,0,0.671946 -22154,3004:475,45,-7,0,0,0.67079 -22155,3004:476,46,-7,0,0,0.671108 -22156,3004:477,47,-7,0,0,0.670358 -22157,3004:478,48,-7,0,0,0.669564 -22158,3004:479,49,-7,0,0,0.669154 -22159,3005:370,50,-7,0,0,0.668062 -22160,3005:371,51,-7,0,0,0.666236 -22161,3005:372,52,-7,0,0,0.662479 -22162,3005:373,53,-7,0,0,0.661859 -22163,3005:374,54,-7,0,0,0.664772 -22164,3005:475,55,-7,0,0,0.666647 -22165,3005:476,56,-7,0,0,0.667423 -22166,3005:477,57,-7,0,0,0.668381 -22167,3005:478,58,-7,0,0,0.66797 -22168,3005:479,59,-7,0,0,0.665161 -22169,3006:370,60,-7,0,0,0.66218 -22170,3006:371,61,-7,0,0,0.661376 -22171,3006:372,62,-7,0,0,0.661329 -22172,3006:373,63,-7,0,0,0.66172 -22173,3006:374,64,-7,0,0,0.661882 -22174,3006:475,65,-7,0,0,0.66218 -22175,3006:476,66,-7,0,0,0.663512 -22176,3006:477,67,-7,0,0,0.664635 -22177,3006:478,68,-7,0,0,0.66491 -22178,3006:479,69,-7,0,0,0.665161 -22179,3007:370,70,-7,0,0,0.665436 -22180,3007:371,71,-7,0,0,0.662847 -22181,3007:372,72,-7,0,0,0.668062 -22182,3007:374,74,-7,0,0,0.670086 -22183,3007:475,75,-7,0,0,0.670676 -22184,3007:476,76,-7,0,0,0.669927 -22185,3007:477,77,-7,0,0,0.668312 -22186,3007:478,78,-7,0,0,0.667651 -22187,3007:479,79,-7,0,0,0.666076 -22188,3008:370,80,-7,0,0,0.661767 -22189,3008:371,81,-7,0,0,0.658493 -22190,3008:372,82,-7,0,0,0.656874 -22191,3008:373,83,-7,0,0,0.656364 -22192,3008:374,84,-7,0,0,0.655529 -22193,3008:475,85,-7,0,0,0.655205 -22194,3008:476,86,-7,0,0,0.654229 -22195,3008:477,87,-7,0,0,0.654578 -22196,3008:478,88,-7,0,0,0.655878 -22197,3008:479,89,-7,0,0,0.65692 -22198,3009:370,90,-7,0,0,0.6578 -22199,3009:371,91,-7,0,0,0.65773 -22200,3009:372,92,-7,0,0,0.657175 -22201,3009:373,93,-7,0,0,0.656364 -22202,3009:374,94,-7,0,0,0.655112 -22203,3009:475,95,-7,0,0,0.654856 -22204,3009:476,96,-7,0,0,0.653136 -22205,3009:477,97,-7,0,0,0.651808 -22206,3009:478,98,-7,0,0,0.652065 -22207,3009:479,99,-7,0,0,0.652833 -22208,3010:370,100,-7,0,0,0.653369 -22209,3010:371,101,-7,0,0,0.654601 -22210,3010:372,102,-7,0,0,0.655483 -22211,3010:373,103,-7,0,0,0.655205 -22212,3010:374,104,-7,0,0,0.658424 -22213,3010:475,105,-7,0,0,0.664864 -22214,3010:476,106,-7,0,0,0.663879 -22215,3011:475,115,-7,0,0,0.688106 -22216,3011:476,116,-7,0,0,0.690219 -22217,3011:477,117,-7,0,0,0.677672 -22218,3011:478,118,-7,0,0,0.678749 -22219,3011:479,119,-7,0,0,0.674342 -22220,3012:370,120,-7,0,0,0.678323 -22221,3012:371,121,-7,0,0,0.687136 -22222,3012:372,122,-7,0,0,0.691953 -22223,3012:373,123,-7,0,0,0.690659 -22224,3012:374,124,-7,0,0,0.691602 -22225,3012:475,125,-7,0,0,0.690527 -22226,3012:476,126,-7,0,0,0.688371 -22227,3012:477,127,-7,0,0,0.685654 -22228,3012:478,128,-7,0,0,0.682813 -22229,3012:479,129,-7,0,0,0.684324 -22230,3013:370,130,-7,0,0,0.687379 -22231,3013:371,131,-7,0,0,0.684878 -22232,3013:372,132,-7,0,0,0.683813 -22233,3013:373,133,-7,0,0,0.67998 -22234,3013:374,134,-7,0,0,0.677134 -22235,3013:475,135,-7,0,0,0.690593 -22236,3013:476,136,-7,0,0,0.677156 -22237,3013:477,137,-7,0,0,0.675334 -22238,3013:478,138,-7,0,0,0.701719 -22239,3014:478,148,-7,0,0,0.672399 -22240,3014:479,149,-7,0,0,0.675492 -22241,3015:370,150,-7,0,0,0.676707 -22242,3015:371,151,-7,0,0,0.678794 -22243,3015:372,152,-7,0,0,0.685942 -22244,3015:373,153,-7,0,0,0.689274 -22245,3015:374,154,-7,0,0,0.690768 -22246,3015:475,155,-7,0,0,0.692018 -22247,3015:476,156,-7,0,0,0.688724 -22248,3015:478,158,-7,0,0,0.687599 -22249,3015:479,159,-7,0,0,0.68718 -22250,3016:370,160,-7,0,0,0.685344 -22251,3016:371,161,-7,0,0,0.684235 -22252,3016:372,162,-7,0,0,0.684878 -22253,3016:373,163,-7,0,0,0.684124 -22254,3016:374,164,-7,0,0,0.683569 -22255,3016:475,165,-7,0,0,0.680203 -22256,3016:476,166,-7,0,0,0.677605 -22257,3016:477,167,-7,0,0,0.677897 -22258,3016:478,168,-7,0,0,0.678615 -22259,3016:479,169,-7,0,0,0.678749 -22260,3017:370,170,-7,0,0,0.67904 -22261,3017:371,171,-7,0,0,0.678906 -22262,3017:372,172,-7,0,0,0.678143 -22263,3017:373,173,-7,0,0,0.678413 -22264,3017:374,174,-7,0,0,0.678995 -22265,3017:475,175,-7,0,0,0.679085 -22266,3017:476,176,-7,0,0,0.678211 -22267,3017:477,177,-7,0,0,0.677852 -22268,3017:478,178,-7,0,0,0.678659 -22269,3017:479,179,-7,0,0,0.67989 -22270,3018:370,180,-7,0,0,0.681163 -22271,5018:360,-180,-6,0,0,0.680382 -22272,5017:469,-179,-6,0,0,0.680159 -22273,5017:468,-178,-6,0,0,0.678503 -22274,5017:467,-177,-6,0,0,0.677134 -22275,5017:466,-176,-6,0,0,0.676504 -22276,5017:465,-175,-6,0,0,0.675919 -22277,5017:364,-174,-6,0,0,0.676842 -22278,5017:363,-173,-6,0,0,0.67774 -22279,5017:362,-172,-6,0,0,0.677583 -22280,5017:361,-171,-6,0,0,0.676954 -22281,5017:360,-170,-6,0,0,0.676167 -22282,5016:469,-169,-6,0,0,0.675176 -22283,5016:468,-168,-6,0,0,0.6745 -22284,5016:467,-167,-6,0,0,0.67459 -22285,5016:466,-166,-6,0,0,0.673032 -22286,5016:465,-165,-6,0,0,0.671765 -22287,5016:364,-164,-6,0,0,0.670881 -22288,5016:363,-163,-6,0,0,0.67029 -22289,5016:362,-162,-6,0,0,0.668882 -22290,5016:361,-161,-6,0,0,0.666738 -22291,5016:360,-160,-6,0,0,0.664406 -22292,5015:469,-159,-6,0,0,0.662019 -22293,5015:468,-158,-6,0,0,0.659971 -22294,5015:467,-157,-6,0,0,0.657985 -22295,5015:466,-156,-6,0,0,0.656526 -22296,5015:465,-155,-6,0,0,0.654717 -22297,5015:364,-154,-6,0,0,0.652833 -22298,5015:363,-153,-6,0,0,0.650594 -22299,5015:362,-152,-6,0,0,0.648513 -22300,5015:361,-151,-6,0,0,0.647013 -22301,5015:360,-150,-6,0,0,0.64565 -22302,5014:469,-149,-6,0,0,0.643886 -22303,5014:468,-148,-6,0,0,0.64207 -22304,5014:467,-147,-6,0,0,0.640628 -22305,5014:466,-146,-6,0,0,0.639255 -22306,5014:465,-145,-6,0,0,0.636906 -22307,5014:364,-144,-6,0,0,0.634765 -22308,5014:363,-143,-6,0,0,0.632714 -22309,5014:362,-142,-6,0,0,0.630347 -22310,5014:361,-141,-6,0,0,0.627445 -22311,5014:360,-140,-6,0,0,0.624824 -22312,5013:469,-139,-6,0,0,0.622944 -22313,5013:468,-138,-6,0,0,0.622243 -22314,5013:467,-137,-6,0,0,0.620769 -22315,5013:466,-136,-6,0,0,0.619438 -22316,5013:465,-135,-6,0,0,0.617838 -22317,5013:364,-134,-6,0,0,0.615823 -22318,5013:363,-133,-6,0,0,0.613292 -22319,5013:362,-132,-6,0,0,0.610094 -22320,5013:361,-131,-6,0,0,0.607305 -22321,5013:360,-130,-6,0,0,0.605784 -22322,5012:469,-129,-6,0,0,0.604213 -22323,5012:468,-128,-6,0,0,0.602492 -22324,5012:467,-127,-6,0,0,0.6003 -22325,5012:466,-126,-6,0,0,0.597906 -22326,5012:465,-125,-6,0,0,0.594914 -22327,5012:364,-124,-6,0,0,0.591319 -22328,5012:363,-123,-6,0,0,0.588261 -22329,5012:362,-122,-6,0,0,0.584798 -22330,5012:361,-121,-6,0,0,0.581476 -22331,5012:360,-120,-6,0,0,0.578948 -22332,5011:469,-119,-6,0,0,0.576417 -22333,5011:468,-118,-6,0,0,0.573605 -22334,5011:467,-117,-6,0,0,0.570788 -22335,5011:466,-116,-6,0,0,0.568319 -22336,5011:465,-115,-6,0,0,0.566327 -22337,5011:364,-114,-6,0,0,0.563953 -22338,5011:363,-113,-6,0,0,0.561248 -22339,5011:362,-112,-6,0,0,0.558311 -22340,5011:361,-111,-6,0,0,0.555294 -22341,5011:360,-110,-6,0,0,0.552984 -22342,5010:469,-109,-6,0,0,0.55179 -22343,5010:468,-108,-6,0,0,0.550926 -22344,5010:467,-107,-6,0,0,0.54851 -22345,5010:466,-106,-6,0,0,0.545073 -22346,5010:465,-105,-6,0,0,0.544793 -22347,5010:364,-104,-6,0,0,0.547034 -22348,5010:363,-103,-6,0,0,0.54599 -22349,5010:362,-102,-6,0,0,0.543748 -22350,5010:361,-101,-6,0,0,0.542142 -22351,5010:360,-100,-6,0,0,0.542677 -22352,5009:469,-99,-6,0,0,0.543595 -22353,5009:468,-98,-6,0,0,0.541912 -22354,5009:467,-97,-6,0,0,0.540611 -22355,5009:466,-96,-6,0,0,0.540738 -22356,5009:465,-95,-6,0,0,0.542371 -22357,5009:364,-94,-6,0,0,0.547213 -22358,5009:363,-93,-6,0,0,0.554279 -22359,5009:362,-92,-6,0,0,0.559654 -22360,5009:361,-91,-6,0,0,0.56102 -22361,5009:360,-90,-6,0,0,0.560185 -22362,5008:469,-89,-6,0,0,0.55783 -22363,5008:468,-88,-6,0,0,0.551612 -22364,5008:467,-87,-6,0,0,0.544155 -22365,5008:466,-86,-6,0,0,0.538237 -22366,5008:465,-85,-6,0,0,0.532129 -22367,5008:364,-84,-6,0,0,0.522731 -22368,5008:363,-83,-6,0,0,0.516217 -22369,5008:362,-82,-6,0,0,0.524627 -22370,5008:361,-81,-6,0,0,0.512778 -22371,5003:465,-35,-6,0,0,0.61711 -22372,5003:364,-34,-6,0,0,0.612219 -22373,5003:363,-33,-6,0,0,0.612975 -22374,5003:362,-32,-6,0,0,0.612877 -22375,5003:361,-31,-6,0,0,0.611389 -22376,5003:360,-30,-6,0,0,0.610461 -22377,5002:469,-29,-6,0,0,0.608113 -22378,5002:468,-28,-6,0,0,0.603894 -22379,5002:467,-27,-6,0,0,0.602073 -22380,5002:466,-26,-6,0,0,0.601015 -22381,5002:465,-25,-6,0,0,0.600669 -22382,5002:364,-24,-6,0,0,0.599585 -22383,5002:363,-23,-6,0,0,0.596843 -22384,5002:362,-22,-6,0,0,0.594617 -22385,5002:361,-21,-6,0,0,0.594096 -22386,5002:360,-20,-6,0,0,0.593898 -22387,5001:469,-19,-6,0,0,0.594369 -22388,5001:468,-18,-6,0,0,0.594468 -22389,5001:467,-17,-6,0,0,0.592982 -22390,5001:466,-16,-6,0,0,0.593279 -22391,5001:465,-15,-6,0,0,0.592436 -22392,5001:364,-14,-6,0,0,0.589431 -22393,5001:363,-13,-6,0,0,0.586942 -22394,5001:362,-12,-6,0,0,0.586244 -22395,5001:361,-11,-6,0,0,0.585097 -22396,5001:360,-10,-6,0,0,0.581076 -22397,5000:469,-9,-6,0,0,0.578999 -22398,5000:468,-8,-6,0,0,0.580701 -22399,5000:467,-7,-6,0,0,0.583924 -22400,5000:466,-6,-6,0,0,0.585796 -22401,5000:465,-5,-6,0,0,0.587962 -22402,5000:364,-4,-6,0,0,0.589654 -22403,5000:363,-3,-6,0,0,0.591791 -22404,5000:362,-2,-6,0,0,0.595879 -22405,5000:361,-1,-6,0,0,0.601138 -22406,3000:361,0,-6,0,0,0.604262 -22407,3000:361,1,-6,0,0,0.605686 -22408,3000:362,2,-6,0,0,0.606888 -22409,3000:363,3,-6,0,0,0.607109 -22410,3000:364,4,-6,0,0,0.612365 -22411,3000:465,5,-6,0,0,0.619195 -22412,3000:466,6,-6,0,0,0.625113 -22413,3000:467,7,-6,0,0,0.631304 -22414,3000:468,8,-6,0,0,0.635265 -22415,3000:469,9,-6,0,0,0.632762 -22416,3001:360,10,-6,0,0,0.621712 -22417,3001:361,11,-6,0,0,0.584124 -22418,3003:469,39,-6,0,0,0.666556 -22419,3004:360,40,-6,0,0,0.669746 -22420,3004:361,41,-6,0,0,0.676414 -22421,3004:362,42,-6,0,0,0.679062 -22422,3004:363,43,-6,0,0,0.6823 -22423,3004:364,44,-6,0,0,0.683324 -22424,3004:465,45,-6,0,0,0.680762 -22425,3004:466,46,-6,0,0,0.678592 -22426,3004:467,47,-6,0,0,0.677403 -22427,3004:468,48,-6,0,0,0.675019 -22428,3004:469,49,-6,0,0,0.672557 -22429,3005:360,50,-6,0,0,0.670041 -22430,3005:361,51,-6,0,0,0.668631 -22431,3005:362,52,-6,0,0,0.662571 -22432,3005:363,53,-6,0,0,0.659232 -22433,3005:364,54,-6,0,0,0.660293 -22434,3005:465,55,-6,0,0,0.661145 -22435,3005:466,56,-6,0,0,0.662433 -22436,3005:467,57,-6,0,0,0.666511 -22437,3005:468,58,-6,0,0,0.669359 -22438,3005:469,59,-6,0,0,0.669495 -22439,3006:360,60,-6,0,0,0.668016 -22440,3006:361,61,-6,0,0,0.667058 -22441,3006:362,62,-6,0,0,0.666099 -22442,3006:363,63,-6,0,0,0.664589 -22443,3006:364,64,-6,0,0,0.66342 -22444,3006:465,65,-6,0,0,0.662364 -22445,3006:466,66,-6,0,0,0.661697 -22446,3006:467,67,-6,0,0,0.661145 -22447,3006:468,68,-6,0,0,0.65914 -22448,3006:469,69,-6,0,0,0.658978 -22449,3007:360,70,-6,0,0,0.661859 -22450,3007:361,71,-6,0,0,0.662456 -22451,3007:362,72,-6,0,0,0.663787 -22452,3007:364,74,-6,0,0,0.666008 -22453,3007:465,75,-6,0,0,0.666693 -22454,3007:466,76,-6,0,0,0.667446 -22455,3007:467,77,-6,0,0,0.667856 -22456,3007:468,78,-6,0,0,0.667674 -22457,3007:469,79,-6,0,0,0.667469 -22458,3008:360,80,-6,0,0,0.66683 -22459,3008:361,81,-6,0,0,0.666236 -22460,3008:362,82,-6,0,0,0.666511 -22461,3008:363,83,-6,0,0,0.66667 -22462,3008:364,84,-6,0,0,0.667514 -22463,3008:465,85,-6,0,0,0.668631 -22464,3008:466,86,-6,0,0,0.668153 -22465,3008:467,87,-6,0,0,0.667058 -22466,3008:468,88,-6,0,0,0.666921 -22467,3008:469,89,-6,0,0,0.666442 -22468,3009:360,90,-6,0,0,0.666031 -22469,3009:361,91,-6,0,0,0.665711 -22470,3009:362,92,-6,0,0,0.664246 -22471,3009:363,93,-6,0,0,0.663535 -22472,3009:364,94,-6,0,0,0.662318 -22473,3009:465,95,-6,0,0,0.6608 -22474,3009:466,96,-6,0,0,0.659763 -22475,3009:467,97,-6,0,0,0.659024 -22476,3009:468,98,-6,0,0,0.659186 -22477,3009:469,99,-6,0,0,0.659647 -22478,3010:360,100,-6,0,0,0.660155 -22479,3010:361,101,-6,0,0,0.660063 -22480,3010:362,102,-6,0,0,0.65944 -22481,3010:363,103,-6,0,0,0.659394 -22482,3010:364,104,-6,0,0,0.668677 -22483,3010:467,107,-6,0,0,0.677942 -22484,3010:468,108,-6,0,0,0.674703 -22485,3010:469,109,-6,0,0,0.674703 -22486,3011:360,110,-6,0,0,0.672625 -22487,3011:361,111,-6,0,0,0.673868 -22488,3011:362,112,-6,0,0,0.675829 -22489,3011:363,113,-6,0,0,0.677336 -22490,3011:364,114,-6,0,0,0.677762 -22491,3011:465,115,-6,0,0,0.679152 -22492,3011:466,116,-6,0,0,0.683257 -22493,3011:467,117,-6,0,0,0.683946 -22494,3011:468,118,-6,0,0,0.665528 -22495,3011:469,119,-6,0,0,0.67138 -22496,3012:361,121,-6,0,0,0.678838 -22497,3012:362,122,-6,0,0,0.685055 -22498,3012:364,124,-6,0,0,0.685942 -22499,3012:465,125,-6,0,0,0.681119 -22500,3012:466,126,-6,0,0,0.686915 -22501,3012:467,127,-6,0,0,0.685477 -22502,3012:468,128,-6,0,0,0.684767 -22503,3012:469,129,-6,0,0,0.685011 -22504,3013:360,130,-6,0,0,0.684812 -22505,3013:361,131,-6,0,0,0.683191 -22506,3013:362,132,-6,0,0,0.681097 -22507,3013:363,133,-6,0,0,0.682033 -22508,3013:364,134,-6,0,0,0.685631 -22509,3013:465,135,-6,0,0,0.690197 -22510,3013:466,136,-6,0,0,0.67147 -22511,3013:467,137,-6,0,0,0.678928 -22512,3013:468,138,-6,0,0,0.702321 -22513,3014:467,147,-6,0,0,0.669881 -22514,3014:468,148,-6,0,0,0.676842 -22515,3014:469,149,-6,0,0,0.679175 -22516,3015:360,150,-6,0,0,0.680762 -22517,3015:363,153,-6,0,0,0.682211 -22518,3015:364,154,-6,0,0,0.686627 -22519,3015:466,156,-6,0,0,0.680985 -22520,3015:467,157,-6,0,0,0.681342 -22521,3015:468,158,-6,0,0,0.683346 -22522,3015:469,159,-6,0,0,0.683324 -22523,3016:360,160,-6,0,0,0.681877 -22524,3016:361,161,-6,0,0,0.676775 -22525,3016:362,162,-6,0,0,0.68279 -22526,3016:363,163,-6,0,0,0.683413 -22527,3016:364,164,-6,0,0,0.682546 -22528,3016:465,165,-6,0,0,0.681409 -22529,3016:466,166,-6,0,0,0.67904 -22530,3016:467,167,-6,0,0,0.678883 -22531,3016:468,168,-6,0,0,0.679756 -22532,3016:469,169,-6,0,0,0.679958 -22533,3017:360,170,-6,0,0,0.678794 -22534,3017:361,171,-6,0,0,0.678211 -22535,3017:362,172,-6,0,0,0.678143 -22536,3017:363,173,-6,0,0,0.678368 -22537,3017:364,174,-6,0,0,0.678503 -22538,3017:465,175,-6,0,0,0.67857 -22539,3017:466,176,-6,0,0,0.678301 -22540,3017:467,177,-6,0,0,0.678861 -22541,3017:468,178,-6,0,0,0.67942 -22542,3017:469,179,-6,0,0,0.680069 -22543,3018:360,180,-6,0,0,0.680382 -22544,5018:350,-180,-5,0,0,0.680606 -22545,5017:459,-179,-5,0,0,0.679599 -22546,5017:458,-178,-5,0,0,0.678637 -22547,5017:457,-177,-5,0,0,0.678009 -22548,5017:456,-176,-5,0,0,0.67756 -22549,5017:455,-175,-5,0,0,0.676864 -22550,5017:354,-174,-5,0,0,0.677852 -22551,5017:353,-173,-5,0,0,0.676437 -22552,5017:352,-172,-5,0,0,0.674748 -22553,5017:351,-171,-5,0,0,0.673371 -22554,5017:350,-170,-5,0,0,0.672059 -22555,5016:459,-169,-5,0,0,0.671221 -22556,5016:458,-168,-5,0,0,0.670563 -22557,5016:457,-167,-5,0,0,0.6697 -22558,5016:456,-166,-5,0,0,0.668677 -22559,5016:455,-165,-5,0,0,0.66756 -22560,5016:354,-164,-5,0,0,0.666122 -22561,5016:353,-163,-5,0,0,0.664566 -22562,5016:352,-162,-5,0,0,0.662823 -22563,5016:351,-161,-5,0,0,0.660593 -22564,5016:350,-160,-5,0,0,0.658678 -22565,5015:459,-159,-5,0,0,0.657268 -22566,5015:458,-158,-5,0,0,0.655808 -22567,5015:457,-157,-5,0,0,0.653764 -22568,5015:456,-156,-5,0,0,0.651668 -22569,5015:455,-155,-5,0,0,0.650081 -22570,5015:354,-154,-5,0,0,0.647764 -22571,5015:353,-153,-5,0,0,0.645627 -22572,5015:352,-152,-5,0,0,0.643626 -22573,5015:351,-151,-5,0,0,0.642093 -22574,5015:350,-150,-5,0,0,0.640912 -22575,5014:459,-149,-5,0,0,0.640013 -22576,5014:458,-148,-5,0,0,0.639113 -22577,5014:457,-147,-5,0,0,0.637713 -22578,5014:456,-146,-5,0,0,0.635764 -22579,5014:455,-145,-5,0,0,0.633454 -22580,5014:354,-144,-5,0,0,0.631352 -22581,5014:353,-143,-5,0,0,0.629077 -22582,5014:352,-142,-5,0,0,0.626749 -22583,5014:351,-141,-5,0,0,0.62468 -22584,5014:350,-140,-5,0,0,0.622026 -22585,5013:459,-139,-5,0,0,0.620043 -22586,5013:458,-138,-5,0,0,0.617425 -22587,5013:457,-137,-5,0,0,0.614728 -22588,5013:456,-136,-5,0,0,0.611779 -22589,5013:455,-135,-5,0,0,0.609165 -22590,5013:354,-134,-5,0,0,0.606839 -22591,5013:353,-133,-5,0,0,0.604852 -22592,5013:352,-132,-5,0,0,0.603722 -22593,5013:351,-131,-5,0,0,0.602836 -22594,5013:350,-130,-5,0,0,0.600226 -22595,5012:459,-129,-5,0,0,0.598055 -22596,5012:458,-128,-5,0,0,0.595483 -22597,5012:457,-127,-5,0,0,0.593155 -22598,5012:456,-126,-5,0,0,0.590449 -22599,5012:455,-125,-5,0,0,0.588037 -22600,5012:354,-124,-5,0,0,0.585945 -22601,5012:353,-123,-5,0,0,0.583874 -22602,5012:352,-122,-5,0,0,0.581901 -22603,5012:351,-121,-5,0,0,0.58015 -22604,5012:350,-120,-5,0,0,0.578899 -22605,5011:459,-119,-5,0,0,0.57772 -22606,5011:458,-118,-5,0,0,0.576191 -22607,5011:457,-117,-5,0,0,0.573403 -22608,5011:456,-116,-5,0,0,0.570889 -22609,5011:455,-115,-5,0,0,0.568925 -22610,5011:354,-114,-5,0,0,0.566832 -22611,5011:353,-113,-5,0,0,0.564535 -22612,5011:352,-112,-5,0,0,0.561957 -22613,5011:351,-111,-5,0,0,0.559805 -22614,5011:350,-110,-5,0,0,0.55816 -22615,5010:459,-109,-5,0,0,0.557475 -22616,5010:458,-108,-5,0,0,0.556638 -22617,5010:457,-107,-5,0,0,0.556638 -22618,5010:456,-106,-5,0,0,0.557019 -22619,5010:455,-105,-5,0,0,0.556638 -22620,5010:354,-104,-5,0,0,0.557424 -22621,5010:353,-103,-5,0,0,0.55603 -22622,5010:352,-102,-5,0,0,0.554939 -22623,5010:351,-101,-5,0,0,0.553975 -22624,5010:350,-100,-5,0,0,0.552121 -22625,5009:459,-99,-5,0,0,0.550011 -22626,5009:458,-98,-5,0,0,0.550494 -22627,5009:457,-97,-5,0,0,0.553136 -22628,5009:456,-96,-5,0,0,0.55334 -22629,5009:455,-95,-5,0,0,0.553873 -22630,5009:354,-94,-5,0,0,0.555345 -22631,5009:353,-93,-5,0,0,0.557728 -22632,5009:352,-92,-5,0,0,0.560616 -22633,5009:351,-91,-5,0,0,0.563397 -22634,5009:350,-90,-5,0,0,0.566579 -22635,5008:459,-89,-5,0,0,0.564535 -22636,5008:458,-88,-5,0,0,0.558742 -22637,5008:457,-87,-5,0,0,0.553822 -22638,5008:456,-86,-5,0,0,0.548001 -22639,5008:455,-85,-5,0,0,0.542524 -22640,5008:354,-84,-5,0,0,0.538748 -22641,5008:353,-83,-5,0,0,0.536577 -22642,5008:352,-82,-5,0,0,0.541121 -22643,5008:351,-81,-5,0,0,0.528289 -22644,5003:458,-38,-5,0,0,0.622195 -22645,5003:457,-37,-5,0,0,0.615798 -22646,5003:456,-36,-5,0,0,0.616721 -22647,5003:455,-35,-5,0,0,0.617474 -22648,5003:354,-34,-5,0,0,0.616916 -22649,5003:353,-33,-5,0,0,0.616042 -22650,5003:352,-32,-5,0,0,0.615093 -22651,5003:351,-31,-5,0,0,0.613803 -22652,5003:350,-30,-5,0,0,0.612389 -22653,5002:459,-29,-5,0,0,0.611926 -22654,5002:458,-28,-5,0,0,0.611487 -22655,5002:457,-27,-5,0,0,0.610534 -22656,5002:456,-26,-5,0,0,0.608456 -22657,5002:455,-25,-5,0,0,0.606766 -22658,5002:354,-24,-5,0,0,0.60679 -22659,5002:353,-23,-5,0,0,0.607476 -22660,5002:352,-22,-5,0,0,0.606912 -22661,5002:351,-21,-5,0,0,0.605834 -22662,5002:350,-20,-5,0,0,0.604581 -22663,5001:459,-19,-5,0,0,0.603181 -22664,5001:458,-18,-5,0,0,0.602541 -22665,5001:457,-17,-5,0,0,0.603402 -22666,5001:456,-16,-5,0,0,0.605073 -22667,5001:455,-15,-5,0,0,0.605932 -22668,5001:354,-14,-5,0,0,0.606005 -22669,5001:353,-13,-5,0,0,0.606447 -22670,5001:352,-12,-5,0,0,0.606692 -22671,5001:351,-11,-5,0,0,0.60701 -22672,5001:350,-10,-5,0,0,0.608627 -22673,5000:459,-9,-5,0,0,0.610021 -22674,5000:458,-8,-5,0,0,0.610876 -22675,5000:457,-7,-5,0,0,0.611219 -22676,5000:456,-6,-5,0,0,0.612633 -22677,5000:455,-5,-5,0,0,0.61373 -22678,5000:354,-4,-5,0,0,0.614461 -22679,5000:353,-3,-5,0,0,0.615677 -22680,5000:352,-2,-5,0,0,0.617328 -22681,5000:351,-1,-5,0,0,0.617717 -22682,3000:351,0,-5,0,0,0.616649 -22683,3000:351,1,-5,0,0,0.616867 -22684,3000:352,2,-5,0,0,0.618783 -22685,3000:353,3,-5,0,0,0.622919 -22686,3000:354,4,-5,0,0,0.626604 -22687,3000:455,5,-5,0,0,0.628502 -22688,3000:456,6,-5,0,0,0.629796 -22689,3000:457,7,-5,0,0,0.630634 -22690,3000:458,8,-5,0,0,0.627445 -22691,3000:459,9,-5,0,0,0.618008 -22692,3001:350,10,-5,0,0,0.603353 -22693,3001:351,11,-5,0,0,0.596448 -22694,3004:350,40,-5,0,0,0.655645 -22695,3004:351,41,-5,0,0,0.670948 -22696,3004:352,42,-5,0,0,0.676999 -22697,3004:353,43,-5,0,0,0.676437 -22698,3004:354,44,-5,0,0,0.67045 -22699,3004:455,45,-5,0,0,0.67423 -22700,3004:456,46,-5,0,0,0.683591 -22701,3004:457,47,-5,0,0,0.684346 -22702,3004:458,48,-5,0,0,0.681944 -22703,3004:459,49,-5,0,0,0.679443 -22704,3005:350,50,-5,0,0,0.676864 -22705,3005:351,51,-5,0,0,0.6731 -22706,3005:352,52,-5,0,0,0.669268 -22707,3005:353,53,-5,0,0,0.663742 -22708,3005:354,54,-5,0,0,0.660454 -22709,3005:455,55,-5,0,0,0.659417 -22710,3005:456,56,-5,0,0,0.661697 -22711,3005:457,57,-5,0,0,0.663397 -22712,3005:458,58,-5,0,0,0.667742 -22713,3005:459,59,-5,0,0,0.668699 -22714,3006:350,60,-5,0,0,0.668426 -22715,3006:351,61,-5,0,0,0.667674 -22716,3006:352,62,-5,0,0,0.665734 -22717,3006:353,63,-5,0,0,0.66397 -22718,3006:354,64,-5,0,0,0.662962 -22719,3006:455,65,-5,0,0,0.66156 -22720,3006:456,66,-5,0,0,0.659809 -22721,3006:457,67,-5,0,0,0.657892 -22722,3006:458,68,-5,0,0,0.656666 -22723,3006:459,69,-5,0,0,0.656225 -22724,3007:350,70,-5,0,0,0.656827 -22725,3007:351,71,-5,0,0,0.658146 -22726,3007:352,72,-5,0,0,0.659716 -22727,3007:354,74,-5,0,0,0.661329 -22728,3007:455,75,-5,0,0,0.66149 -22729,3007:456,76,-5,0,0,0.662019 -22730,3007:457,77,-5,0,0,0.662571 -22731,3007:458,78,-5,0,0,0.662732 -22732,3007:459,79,-5,0,0,0.663191 -22733,3008:350,80,-5,0,0,0.664223 -22734,3008:351,81,-5,0,0,0.665665 -22735,3008:352,82,-5,0,0,0.666761 -22736,3008:353,83,-5,0,0,0.667651 -22737,3008:354,84,-5,0,0,0.669154 -22738,3008:455,85,-5,0,0,0.670586 -22739,3008:456,86,-5,0,0,0.671855 -22740,3008:457,87,-5,0,0,0.671697 -22741,3008:458,88,-5,0,0,0.670722 -22742,3008:459,89,-5,0,0,0.670155 -22743,3009:350,90,-5,0,0,0.669109 -22744,3009:351,91,-5,0,0,0.667537 -22745,3009:352,92,-5,0,0,0.66635 -22746,3009:353,93,-5,0,0,0.665299 -22747,3009:354,94,-5,0,0,0.663948 -22748,3009:455,95,-5,0,0,0.662709 -22749,3009:456,96,-5,0,0,0.661628 -22750,3009:457,97,-5,0,0,0.660892 -22751,3009:458,98,-5,0,0,0.660431 -22752,3009:459,99,-5,0,0,0.660662 -22753,3010:350,100,-5,0,0,0.661628 -22754,3010:351,101,-5,0,0,0.663191 -22755,3010:352,102,-5,0,0,0.668972 -22756,3010:457,107,-5,0,0,0.682122 -22757,3010:458,108,-5,0,0,0.680091 -22758,3010:459,109,-5,0,0,0.674274 -22759,3011:350,110,-5,0,0,0.668995 -22760,3011:351,111,-5,0,0,0.671651 -22761,3011:352,112,-5,0,0,0.675649 -22762,3011:353,113,-5,0,0,0.677538 -22763,3011:354,114,-5,0,0,0.67942 -22764,3011:456,116,-5,0,0,0.686185 -22765,3011:457,117,-5,0,0,0.686052 -22766,3011:458,118,-5,0,0,0.677942 -22767,3011:459,119,-5,0,0,0.669655 -22768,3012:351,121,-5,0,0,0.681052 -22769,3012:353,123,-5,0,0,0.682501 -22770,3012:354,124,-5,0,0,0.685145 -22771,3012:455,125,-5,0,0,0.686163 -22772,3012:456,126,-5,0,0,0.683702 -22773,3012:457,127,-5,0,0,0.676932 -22774,3012:458,128,-5,0,0,0.681677 -22775,3012:459,129,-5,0,0,0.686849 -22776,3013:350,130,-5,0,0,0.687246 -22777,3013:351,131,-5,0,0,0.681008 -22778,3013:352,132,-5,0,0,0.680427 -22779,3013:353,133,-5,0,0,0.679935 -22780,3013:354,134,-5,0,0,0.687246 -22781,3014:455,145,-5,0,0,0.659532 -22782,3014:456,146,-5,0,0,0.673122 -22783,3014:457,147,-5,0,0,0.674387 -22784,3014:458,148,-5,0,0,0.674883 -22785,3014:459,149,-5,0,0,0.674906 -22786,3015:350,150,-5,0,0,0.677178 -22787,3015:351,151,-5,0,0,0.680494 -22788,3015:352,152,-5,0,0,0.679175 -22789,3015:354,154,-5,0,0,0.677044 -22790,3015:455,155,-5,0,0,0.67637 -22791,3015:456,156,-5,0,0,0.676796 -22792,3015:457,157,-5,0,0,0.677089 -22793,3015:458,158,-5,0,0,0.678682 -22794,3015:459,159,-5,0,0,0.678547 -22795,3016:350,160,-5,0,0,0.677381 -22796,3016:351,161,-5,0,0,0.677628 -22797,3016:352,162,-5,0,0,0.67783 -22798,3016:353,163,-5,0,0,0.678682 -22799,3016:354,164,-5,0,0,0.678749 -22800,3016:455,165,-5,0,0,0.678816 -22801,3016:456,166,-5,0,0,0.677897 -22802,3016:457,167,-5,0,0,0.677538 -22803,3016:458,168,-5,0,0,0.678189 -22804,3016:459,169,-5,0,0,0.677785 -22805,3017:350,170,-5,0,0,0.676819 -22806,3017:351,171,-5,0,0,0.676324 -22807,3017:352,172,-5,0,0,0.675717 -22808,3017:353,173,-5,0,0,0.675649 -22809,3017:354,174,-5,0,0,0.676347 -22810,3017:455,175,-5,0,0,0.676932 -22811,3017:456,176,-5,0,0,0.676707 -22812,3017:457,177,-5,0,0,0.677313 -22813,3017:458,178,-5,0,0,0.67839 -22814,3017:459,179,-5,0,0,0.679622 -22815,3018:350,180,-5,0,0,0.680606 -22816,5018:140,-180,-4,0,0,0.678032 -22817,5017:249,-179,-4,0,0,0.678099 -22818,5017:248,-178,-4,0,0,0.678009 -22819,5017:247,-177,-4,0,0,0.677785 -22820,5017:246,-176,-4,0,0,0.678143 -22821,5017:245,-175,-4,0,0,0.678816 -22822,5017:144,-174,-4,0,0,0.679287 -22823,5017:143,-173,-4,0,0,0.678861 -22824,5017:142,-172,-4,0,0,0.677246 -22825,5017:141,-171,-4,0,0,0.675492 -22826,5017:140,-170,-4,0,0,0.672896 -22827,5016:249,-169,-4,0,0,0.671402 -22828,5016:248,-168,-4,0,0,0.669995 -22829,5016:247,-167,-4,0,0,0.668631 -22830,5016:246,-166,-4,0,0,0.66731 -22831,5016:245,-165,-4,0,0,0.666236 -22832,5016:144,-164,-4,0,0,0.664727 -22833,5016:143,-163,-4,0,0,0.662663 -22834,5016:142,-162,-4,0,0,0.660754 -22835,5016:141,-161,-4,0,0,0.659024 -22836,5016:140,-160,-4,0,0,0.65773 -22837,5015:249,-159,-4,0,0,0.656225 -22838,5015:248,-158,-4,0,0,0.654508 -22839,5015:247,-157,-4,0,0,0.652554 -22840,5015:246,-156,-4,0,0,0.650385 -22841,5015:245,-155,-4,0,0,0.649169 -22842,5015:144,-154,-4,0,0,0.647154 -22843,5015:143,-153,-4,0,0,0.645345 -22844,5015:142,-152,-4,0,0,0.644027 -22845,5015:141,-151,-4,0,0,0.641904 -22846,5015:140,-150,-4,0,0,0.640415 -22847,5014:249,-149,-4,0,0,0.63814 -22848,5014:248,-148,-4,0,0,0.636383 -22849,5014:247,-147,-4,0,0,0.634216 -22850,5014:246,-146,-4,0,0,0.631471 -22851,5014:245,-145,-4,0,0,0.629173 -22852,5014:144,-144,-4,0,0,0.626941 -22853,5014:143,-143,-4,0,0,0.624776 -22854,5014:142,-142,-4,0,0,0.622654 -22855,5014:141,-141,-4,0,0,0.620164 -22856,5014:140,-140,-4,0,0,0.617814 -22857,5013:249,-139,-4,0,0,0.615749 -22858,5013:248,-138,-4,0,0,0.613292 -22859,5013:247,-137,-4,0,0,0.610852 -22860,5013:246,-136,-4,0,0,0.608383 -22861,5013:245,-135,-4,0,0,0.606177 -22862,5013:144,-134,-4,0,0,0.605023 -22863,5013:143,-133,-4,0,0,0.604115 -22864,5013:142,-132,-4,0,0,0.602713 -22865,5013:141,-131,-4,0,0,0.600818 -22866,5013:140,-130,-4,0,0,0.598573 -22867,5012:249,-129,-4,0,0,0.596498 -22868,5012:248,-128,-4,0,0,0.594963 -22869,5012:247,-127,-4,0,0,0.593675 -22870,5012:246,-126,-4,0,0,0.592559 -22871,5012:245,-125,-4,0,0,0.590723 -22872,5012:144,-124,-4,0,0,0.588137 -22873,5012:143,-123,-4,0,0,0.585421 -22874,5012:142,-122,-4,0,0,0.583201 -22875,5012:141,-121,-4,0,0,0.581576 -22876,5012:140,-120,-4,0,0,0.580526 -22877,5011:249,-119,-4,0,0,0.579074 -22878,5011:248,-118,-4,0,0,0.576868 -22879,5011:247,-117,-4,0,0,0.575313 -22880,5011:246,-116,-4,0,0,0.57358 -22881,5011:245,-115,-4,0,0,0.572096 -22882,5011:144,-114,-4,0,0,0.570032 -22883,5011:143,-113,-4,0,0,0.567462 -22884,5011:142,-112,-4,0,0,0.566251 -22885,5011:141,-111,-4,0,0,0.564586 -22886,5011:140,-110,-4,0,0,0.562361 -22887,5010:249,-109,-4,0,0,0.560211 -22888,5010:248,-108,-4,0,0,0.55935 -22889,5010:247,-107,-4,0,0,0.559805 -22890,5010:246,-106,-4,0,0,0.561097 -22891,5010:245,-105,-4,0,0,0.561173 -22892,5010:144,-104,-4,0,0,0.560261 -22893,5010:143,-103,-4,0,0,0.559021 -22894,5010:142,-102,-4,0,0,0.558007 -22895,5010:141,-101,-4,0,0,0.557273 -22896,5010:140,-100,-4,0,0,0.556664 -22897,5009:249,-99,-4,0,0,0.556664 -22898,5009:248,-98,-4,0,0,0.557146 -22899,5009:247,-97,-4,0,0,0.557247 -22900,5009:246,-96,-4,0,0,0.557475 -22901,5009:245,-95,-4,0,0,0.557932 -22902,5009:144,-94,-4,0,0,0.558236 -22903,5009:143,-93,-4,0,0,0.557956 -22904,5009:142,-92,-4,0,0,0.558007 -22905,5009:141,-91,-4,0,0,0.559476 -22906,5009:140,-90,-4,0,0,0.565494 -22907,5008:249,-89,-4,0,0,0.566832 -22908,5008:248,-88,-4,0,0,0.563701 -22909,5008:247,-87,-4,0,0,0.55816 -22910,5008:246,-86,-4,0,0,0.552121 -22911,5008:245,-85,-4,0,0,0.547696 -22912,5008:144,-84,-4,0,0,0.555015 -22913,5008:143,-83,-4,0,0,0.56231 -22914,5008:142,-82,-4,0,0,0.562867 -22915,5008:141,-81,-4,0,0,0.568521 -22916,5004:143,-43,-4,0,0,0.638164 -22917,5004:142,-42,-4,0,0,0.628334 -22918,5004:141,-41,-4,0,0,0.62622 -22919,5004:140,-40,-4,0,0,0.617571 -22920,5003:249,-39,-4,0,0,0.61876 -22921,5003:248,-38,-4,0,0,0.618978 -22922,5003:247,-37,-4,0,0,0.618056 -22923,5003:246,-36,-4,0,0,0.61762 -22924,5003:245,-35,-4,0,0,0.616867 -22925,5003:144,-34,-4,0,0,0.615628 -22926,5003:143,-33,-4,0,0,0.614533 -22927,5003:142,-32,-4,0,0,0.613292 -22928,5003:141,-31,-4,0,0,0.613608 -22929,5003:140,-30,-4,0,0,0.612877 -22930,5002:249,-29,-4,0,0,0.612024 -22931,5002:248,-28,-4,0,0,0.611145 -22932,5002:247,-27,-4,0,0,0.610632 -22933,5002:246,-26,-4,0,0,0.610192 -22934,5002:245,-25,-4,0,0,0.609728 -22935,5002:144,-24,-4,0,0,0.60919 -22936,5002:143,-23,-4,0,0,0.608823 -22937,5002:142,-22,-4,0,0,0.608554 -22938,5002:141,-21,-4,0,0,0.608309 -22939,5002:140,-20,-4,0,0,0.608284 -22940,5001:249,-19,-4,0,0,0.608431 -22941,5001:248,-18,-4,0,0,0.6087 -22942,5001:247,-17,-4,0,0,0.609165 -22943,5001:246,-16,-4,0,0,0.60919 -22944,5001:245,-15,-4,0,0,0.609972 -22945,5001:144,-14,-4,0,0,0.611438 -22946,5001:143,-13,-4,0,0,0.613292 -22947,5001:142,-12,-4,0,0,0.615628 -22948,5001:141,-11,-4,0,0,0.618032 -22949,5001:140,-10,-4,0,0,0.620043 -22950,5000:249,-9,-4,0,0,0.621397 -22951,5000:248,-8,-4,0,0,0.623016 -22952,5000:247,-7,-4,0,0,0.624004 -22953,5000:246,-6,-4,0,0,0.624872 -22954,5000:245,-5,-4,0,0,0.625498 -22955,5000:144,-4,-4,0,0,0.626003 -22956,5000:143,-3,-4,0,0,0.627037 -22957,5000:142,-2,-4,0,0,0.628262 -22958,5000:141,-1,-4,0,0,0.629844 -22959,3000:141,0,-4,0,0,0.631376 -22960,3000:141,1,-4,0,0,0.631543 -22961,3000:142,2,-4,0,0,0.631136 -22962,3000:143,3,-4,0,0,0.630155 -22963,3000:144,4,-4,0,0,0.628549 -22964,3000:245,5,-4,0,0,0.626171 -22965,3000:246,6,-4,0,0,0.623088 -22966,3000:247,7,-4,0,0,0.617838 -22967,3000:248,8,-4,0,0,0.611755 -22968,3000:249,9,-4,0,0,0.597832 -22969,3004:141,41,-4,0,0,0.626773 -22970,3004:142,42,-4,0,0,0.675334 -22971,3004:143,43,-4,0,0,0.667195 -22972,3004:144,44,-4,0,0,0.654949 -22973,3004:245,45,-4,0,0,0.662777 -22974,3004:246,46,-4,0,0,0.66995 -22975,3004:247,47,-4,0,0,0.677089 -22976,3004:248,48,-4,0,0,0.680829 -22977,3004:249,49,-4,0,0,0.679085 -22978,3005:140,50,-4,0,0,0.676999 -22979,3005:141,51,-4,0,0,0.676302 -22980,3005:142,52,-4,0,0,0.674929 -22981,3005:143,53,-4,0,0,0.671516 -22982,3005:144,54,-4,0,0,0.666511 -22983,3005:245,55,-4,0,0,0.663581 -22984,3005:246,56,-4,0,0,0.661904 -22985,3005:247,57,-4,0,0,0.660362 -22986,3005:248,58,-4,0,0,0.660108 -22987,3005:249,59,-4,0,0,0.661214 -22988,3006:140,60,-4,0,0,0.662364 -22989,3006:141,61,-4,0,0,0.661996 -22990,3006:142,62,-4,0,0,0.660846 -22991,3006:143,63,-4,0,0,0.659855 -22992,3006:144,64,-4,0,0,0.659532 -22993,3006:245,65,-4,0,0,0.659994 -22994,3006:246,66,-4,0,0,0.659624 -22995,3006:247,67,-4,0,0,0.658909 -22996,3006:248,68,-4,0,0,0.65847 -22997,3006:249,69,-4,0,0,0.657985 -22998,3007:140,70,-4,0,0,0.657915 -22999,3007:141,71,-4,0,0,0.658331 -23000,3007:142,72,-4,0,0,0.659463 -23001,3007:144,74,-4,0,0,0.660339 -23002,3007:245,75,-4,0,0,0.660454 -23003,3007:246,76,-4,0,0,0.660386 -23004,3007:247,77,-4,0,0,0.660224 -23005,3007:248,78,-4,0,0,0.659486 -23006,3007:249,79,-4,0,0,0.658886 -23007,3008:140,80,-4,0,0,0.659279 -23008,3008:141,81,-4,0,0,0.659579 -23009,3008:142,82,-4,0,0,0.660408 -23010,3008:143,83,-4,0,0,0.662226 -23011,3008:144,84,-4,0,0,0.664521 -23012,3008:245,85,-4,0,0,0.666442 -23013,3008:246,86,-4,0,0,0.66813 -23014,3008:247,87,-4,0,0,0.669564 -23015,3008:248,88,-4,0,0,0.670358 -23016,3008:249,89,-4,0,0,0.670881 -23017,3009:140,90,-4,0,0,0.669427 -23018,3009:141,91,-4,0,0,0.66756 -23019,3009:142,92,-4,0,0,0.664933 -23020,3009:143,93,-4,0,0,0.663443 -23021,3009:144,94,-4,0,0,0.661882 -23022,3009:245,95,-4,0,0,0.6605 -23023,3009:246,96,-4,0,0,0.659832 -23024,3009:247,97,-4,0,0,0.660293 -23025,3009:248,98,-4,0,0,0.661329 -23026,3009:249,99,-4,0,0,0.663076 -23027,3010:140,100,-4,0,0,0.667879 -23028,3010:141,101,-4,0,0,0.669632 -23029,3010:247,107,-4,0,0,0.67432 -23030,3010:248,108,-4,0,0,0.676347 -23031,3010:249,109,-4,0,0,0.668472 -23032,3011:140,110,-4,0,0,0.676392 -23033,3011:247,117,-4,0,0,0.68603 -23034,3011:248,118,-4,0,0,0.674004 -23035,3011:249,119,-4,0,0,0.666305 -23036,3012:143,123,-4,0,0,0.686959 -23037,3012:144,124,-4,0,0,0.688746 -23038,3012:245,125,-4,0,0,0.690022 -23039,3012:246,126,-4,0,0,0.686893 -23040,3012:247,127,-4,0,0,0.666145 -23041,3012:248,128,-4,0,0,0.666579 -23042,3012:249,129,-4,0,0,0.660892 -23043,3013:140,130,-4,0,0,0.66264 -23044,3013:141,131,-4,0,0,0.66507 -23045,3013:142,132,-4,0,0,0.684812 -23046,3013:143,133,-4,0,0,0.69844 -23047,3013:245,135,-4,0,0,0.671062 -23048,3013:246,136,-4,0,0,0.678592 -23049,3014:141,141,-4,0,0,0.657128 -23050,3014:142,142,-4,0,0,0.663352 -23051,3014:143,143,-4,0,0,0.666784 -23052,3014:144,144,-4,0,0,0.66895 -23053,3014:245,145,-4,0,0,0.67113 -23054,3014:246,146,-4,0,0,0.673213 -23055,3014:247,147,-4,0,0,0.674816 -23056,3014:248,148,-4,0,0,0.674861 -23057,3014:249,149,-4,0,0,0.67628 -23058,3015:140,150,-4,0,0,0.678233 -23059,3015:141,151,-4,0,0,0.676819 -23060,3015:142,152,-4,0,0,0.676999 -23061,3015:143,153,-4,0,0,0.67646 -23062,3015:144,154,-4,0,0,0.675829 -23063,3015:245,155,-4,0,0,0.675897 -23064,3015:246,156,-4,0,0,0.676504 -23065,3015:247,157,-4,0,0,0.676909 -23066,3015:248,158,-4,0,0,0.676482 -23067,3015:249,159,-4,0,0,0.677493 -23068,3016:140,160,-4,0,0,0.677964 -23069,3016:141,161,-4,0,0,0.677583 -23070,3016:142,162,-4,0,0,0.678009 -23071,3016:143,163,-4,0,0,0.678054 -23072,3016:144,164,-4,0,0,0.678413 -23073,3016:245,165,-4,0,0,0.678211 -23074,3016:246,166,-4,0,0,0.678099 -23075,3016:247,167,-4,0,0,0.677336 -23076,3016:248,168,-4,0,0,0.676212 -23077,3016:249,169,-4,0,0,0.675739 -23078,3017:140,170,-4,0,0,0.674816 -23079,3017:141,171,-4,0,0,0.673642 -23080,3017:142,172,-4,0,0,0.67319 -23081,3017:143,173,-4,0,0,0.6731 -23082,3017:144,174,-4,0,0,0.67441 -23083,3017:245,175,-4,0,0,0.6745 -23084,3017:246,176,-4,0,0,0.674861 -23085,3017:247,177,-4,0,0,0.675379 -23086,3017:248,178,-4,0,0,0.675965 -23087,3017:249,179,-4,0,0,0.677089 -23088,3018:140,180,-4,0,0,0.678032 -23089,5018:130,-180,-3,0,0,0.677605 -23090,5017:239,-179,-3,0,0,0.67783 -23091,5017:238,-178,-3,0,0,0.677942 -23092,5017:237,-177,-3,0,0,0.677942 -23093,5017:236,-176,-3,0,0,0.677111 -23094,5017:235,-175,-3,0,0,0.676684 -23095,5017:134,-174,-3,0,0,0.6761 -23096,5017:133,-173,-3,0,0,0.674996 -23097,5017:132,-172,-3,0,0,0.673597 -23098,5017:131,-171,-3,0,0,0.67224 -23099,5017:130,-170,-3,0,0,0.670994 -23100,5016:239,-169,-3,0,0,0.670608 -23101,5016:238,-168,-3,0,0,0.668426 -23102,5016:237,-167,-3,0,0,0.665619 -23103,5016:236,-166,-3,0,0,0.66381 -23104,5016:235,-165,-3,0,0,0.662088 -23105,5016:134,-164,-3,0,0,0.660662 -23106,5016:133,-163,-3,0,0,0.658794 -23107,5016:132,-162,-3,0,0,0.65655 -23108,5016:131,-161,-3,0,0,0.655391 -23109,5016:130,-160,-3,0,0,0.654322 -23110,5015:239,-159,-3,0,0,0.652997 -23111,5015:238,-158,-3,0,0,0.651225 -23112,5015:237,-157,-3,0,0,0.649777 -23113,5015:236,-156,-3,0,0,0.648162 -23114,5015:235,-155,-3,0,0,0.648068 -23115,5015:134,-154,-3,0,0,0.64551 -23116,5015:133,-153,-3,0,0,0.643862 -23117,5015:132,-152,-3,0,0,0.642684 -23118,5015:131,-151,-3,0,0,0.640817 -23119,5015:130,-150,-3,0,0,0.637713 -23120,5014:239,-149,-3,0,0,0.634789 -23121,5014:238,-148,-3,0,0,0.632332 -23122,5014:237,-147,-3,0,0,0.6297 -23123,5014:236,-146,-3,0,0,0.628262 -23124,5014:235,-145,-3,0,0,0.627445 -23125,5014:134,-144,-3,0,0,0.62622 -23126,5014:133,-143,-3,0,0,0.623691 -23127,5014:132,-142,-3,0,0,0.620817 -23128,5014:131,-141,-3,0,0,0.618468 -23129,5014:130,-140,-3,0,0,0.616236 -23130,5013:239,-139,-3,0,0,0.614217 -23131,5013:238,-138,-3,0,0,0.612633 -23132,5013:237,-137,-3,0,0,0.611047 -23133,5013:236,-136,-3,0,0,0.608015 -23134,5013:235,-135,-3,0,0,0.605392 -23135,5013:134,-134,-3,0,0,0.603402 -23136,5013:133,-133,-3,0,0,0.601926 -23137,5013:132,-132,-3,0,0,0.600793 -23138,5013:131,-131,-3,0,0,0.59998 -23139,5013:130,-130,-3,0,0,0.598869 -23140,5012:239,-129,-3,0,0,0.598153 -23141,5012:238,-128,-3,0,0,0.597141 -23142,5012:237,-127,-3,0,0,0.595855 -23143,5012:236,-126,-3,0,0,0.593923 -23144,5012:235,-125,-3,0,0,0.591567 -23145,5012:134,-124,-3,0,0,0.589878 -23146,5012:133,-123,-3,0,0,0.588808 -23147,5012:132,-122,-3,0,0,0.58724 -23148,5012:131,-121,-3,0,0,0.585446 -23149,5012:130,-120,-3,0,0,0.583825 -23150,5011:239,-119,-3,0,0,0.582101 -23151,5011:238,-118,-3,0,0,0.580626 -23152,5011:237,-117,-3,0,0,0.578874 -23153,5011:236,-116,-3,0,0,0.575915 -23154,5011:235,-115,-3,0,0,0.573605 -23155,5011:134,-114,-3,0,0,0.571568 -23156,5011:133,-113,-3,0,0,0.570838 -23157,5011:132,-112,-3,0,0,0.570486 -23158,5011:131,-111,-3,0,0,0.569454 -23159,5011:130,-110,-3,0,0,0.568546 -23160,5010:239,-109,-3,0,0,0.567387 -23161,5010:238,-108,-3,0,0,0.566706 -23162,5010:237,-107,-3,0,0,0.565923 -23163,5010:236,-106,-3,0,0,0.565393 -23164,5010:235,-105,-3,0,0,0.56514 -23165,5010:134,-104,-3,0,0,0.565015 -23166,5010:133,-103,-3,0,0,0.564459 -23167,5010:132,-102,-3,0,0,0.563474 -23168,5010:131,-101,-3,0,0,0.562741 -23169,5010:130,-100,-3,0,0,0.561653 -23170,5009:239,-99,-3,0,0,0.56097 -23171,5009:238,-98,-3,0,0,0.560084 -23172,5009:237,-97,-3,0,0,0.559122 -23173,5009:236,-96,-3,0,0,0.559299 -23174,5009:235,-95,-3,0,0,0.559299 -23175,5009:134,-94,-3,0,0,0.558337 -23176,5009:133,-93,-3,0,0,0.555929 -23177,5009:132,-92,-3,0,0,0.551028 -23178,5009:131,-91,-3,0,0,0.567084 -23179,5009:130,-90,-3,0,0,0.565999 -23180,5008:239,-89,-3,0,0,0.571895 -23181,5008:238,-88,-3,0,0,0.57031 -23182,5008:237,-87,-3,0,0,0.56968 -23183,5008:236,-86,-3,0,0,0.56968 -23184,5008:235,-85,-3,0,0,0.571845 -23185,5008:134,-84,-3,0,0,0.57757 -23186,5008:133,-83,-3,0,0,0.581001 -23187,5008:132,-82,-3,0,0,0.580726 -23188,5008:131,-81,-3,0,0,0.584997 -23189,5004:236,-46,-3,0,0,0.638259 -23190,5004:235,-45,-3,0,0,0.628453 -23191,5004:134,-44,-3,0,0,0.622292 -23192,5004:133,-43,-3,0,0,0.623932 -23193,5004:132,-42,-3,0,0,0.62333 -23194,5004:131,-41,-3,0,0,0.622581 -23195,5004:130,-40,-3,0,0,0.62089 -23196,5003:239,-39,-3,0,0,0.620454 -23197,5003:238,-38,-3,0,0,0.620213 -23198,5003:237,-37,-3,0,0,0.619559 -23199,5003:236,-36,-3,0,0,0.61779 -23200,5003:235,-35,-3,0,0,0.616989 -23201,5003:134,-34,-3,0,0,0.615458 -23202,5003:133,-33,-3,0,0,0.613145 -23203,5003:132,-32,-3,0,0,0.611536 -23204,5003:131,-31,-3,0,0,0.609899 -23205,5003:130,-30,-3,0,0,0.608774 -23206,5002:239,-29,-3,0,0,0.608162 -23207,5002:238,-28,-3,0,0,0.606814 -23208,5002:237,-27,-3,0,0,0.605122 -23209,5002:236,-26,-3,0,0,0.60441 -23210,5002:235,-25,-3,0,0,0.603574 -23211,5002:134,-24,-3,0,0,0.602713 -23212,5002:133,-23,-3,0,0,0.601803 -23213,5002:132,-22,-3,0,0,0.601557 -23214,5002:131,-21,-3,0,0,0.60099 -23215,5002:130,-20,-3,0,0,0.600399 -23216,5001:239,-19,-3,0,0,0.601015 -23217,5001:238,-18,-3,0,0,0.602123 -23218,5001:237,-17,-3,0,0,0.603353 -23219,5001:236,-16,-3,0,0,0.60414 -23220,5001:235,-15,-3,0,0,0.605319 -23221,5001:134,-14,-3,0,0,0.607035 -23222,5001:133,-13,-3,0,0,0.608847 -23223,5001:132,-12,-3,0,0,0.611072 -23224,5001:131,-11,-3,0,0,0.61429 -23225,5001:130,-10,-3,0,0,0.616843 -23226,5000:239,-9,-3,0,0,0.618105 -23227,5000:238,-8,-3,0,0,0.618735 -23228,5000:237,-7,-3,0,0,0.62031 -23229,5000:236,-6,-3,0,0,0.622436 -23230,5000:235,-5,-3,0,0,0.625402 -23231,5000:134,-4,-3,0,0,0.627614 -23232,5000:133,-3,-3,0,0,0.629461 -23233,5000:132,-2,-3,0,0,0.631017 -23234,5000:131,-1,-3,0,0,0.632571 -23235,3000:131,0,-3,0,0,0.632881 -23236,3000:131,1,-3,0,0,0.632069 -23237,3000:132,2,-3,0,0,0.630587 -23238,3000:133,3,-3,0,0,0.628598 -23239,3000:134,4,-3,0,0,0.626436 -23240,3000:235,5,-3,0,0,0.62427 -23241,3000:236,6,-3,0,0,0.623523 -23242,3000:237,7,-3,0,0,0.6248 -23243,3000:238,8,-3,0,0,0.626532 -23244,3004:132,42,-3,0,0,0.6087 -23245,3004:133,43,-3,0,0,0.654136 -23246,3004:134,44,-3,0,0,0.645533 -23247,3004:235,45,-3,0,0,0.645039 -23248,3004:236,46,-3,0,0,0.650992 -23249,3004:237,47,-3,0,0,0.653671 -23250,3004:238,48,-3,0,0,0.649426 -23251,3004:239,49,-3,0,0,0.651762 -23252,3005:130,50,-3,0,0,0.655947 -23253,3005:131,51,-3,0,0,0.672761 -23254,3005:132,52,-3,0,0,0.6761 -23255,3005:133,53,-3,0,0,0.676886 -23256,3005:134,54,-3,0,0,0.673552 -23257,3005:235,55,-3,0,0,0.667833 -23258,3005:236,56,-3,0,0,0.664681 -23259,3005:237,57,-3,0,0,0.664062 -23260,3005:238,58,-3,0,0,0.66287 -23261,3005:239,59,-3,0,0,0.660731 -23262,3006:130,60,-3,0,0,0.659232 -23263,3006:131,61,-3,0,0,0.658655 -23264,3006:132,62,-3,0,0,0.658747 -23265,3006:133,63,-3,0,0,0.658932 -23266,3006:134,64,-3,0,0,0.658216 -23267,3006:235,65,-3,0,0,0.657938 -23268,3006:236,66,-3,0,0,0.658239 -23269,3006:237,67,-3,0,0,0.659024 -23270,3006:238,68,-3,0,0,0.660201 -23271,3006:239,69,-3,0,0,0.661237 -23272,3007:130,70,-3,0,0,0.662456 -23273,3007:131,71,-3,0,0,0.663191 -23274,3007:132,72,-3,0,0,0.663627 -23275,3007:134,74,-3,0,0,0.663993 -23276,3007:235,75,-3,0,0,0.663604 -23277,3007:236,76,-3,0,0,0.663489 -23278,3007:237,77,-3,0,0,0.663282 -23279,3007:238,78,-3,0,0,0.662249 -23280,3007:239,79,-3,0,0,0.661352 -23281,3008:130,80,-3,0,0,0.66057 -23282,3008:131,81,-3,0,0,0.660478 -23283,3008:132,82,-3,0,0,0.660777 -23284,3008:133,83,-3,0,0,0.660961 -23285,3008:134,84,-3,0,0,0.663007 -23286,3008:235,85,-3,0,0,0.665459 -23287,3008:236,86,-3,0,0,0.666716 -23288,3008:237,87,-3,0,0,0.667765 -23289,3008:238,88,-3,0,0,0.669723 -23290,3008:239,89,-3,0,0,0.670495 -23291,3009:130,90,-3,0,0,0.668381 -23292,3009:131,91,-3,0,0,0.666602 -23293,3009:132,92,-3,0,0,0.664383 -23294,3009:133,93,-3,0,0,0.662088 -23295,3009:134,94,-3,0,0,0.660938 -23296,3009:235,95,-3,0,0,0.660316 -23297,3009:236,96,-3,0,0,0.660247 -23298,3009:237,97,-3,0,0,0.661767 -23299,3009:238,98,-3,0,0,0.66342 -23300,3010:130,100,-3,0,0,0.670041 -23301,3010:235,105,-3,0,0,0.679487 -23302,3010:236,106,-3,0,0,0.673507 -23303,3010:237,107,-3,0,0,0.66057 -23304,3010:238,108,-3,0,0,0.66126 -23305,3010:239,109,-3,0,0,0.670608 -23306,3011:238,118,-3,0,0,0.657314 -23307,3011:239,119,-3,0,0,0.659002 -23308,3012:131,121,-3,0,0,0.672784 -23309,3012:134,124,-3,0,0,0.672964 -23310,3012:235,125,-3,0,0,0.680762 -23311,3012:236,126,-3,0,0,0.683724 -23312,3012:237,127,-3,0,0,0.677672 -23313,3012:238,128,-3,0,0,0.684013 -23314,3012:239,129,-3,0,0,0.669086 -23315,3013:130,130,-3,0,0,0.667833 -23316,3013:235,135,-3,0,0,0.673755 -23317,3013:236,136,-3,0,0,0.674839 -23318,3013:237,137,-3,0,0,0.668745 -23319,3013:238,138,-3,0,0,0.665161 -23320,3013:239,139,-3,0,0,0.665825 -23321,3014:130,140,-3,0,0,0.666076 -23322,3014:131,141,-3,0,0,0.667925 -23323,3014:132,142,-3,0,0,0.6697 -23324,3014:133,143,-3,0,0,0.670948 -23325,3014:134,144,-3,0,0,0.67215 -23326,3014:235,145,-3,0,0,0.674184 -23327,3014:236,146,-3,0,0,0.675762 -23328,3014:237,147,-3,0,0,0.676932 -23329,3014:238,148,-3,0,0,0.67765 -23330,3014:239,149,-3,0,0,0.678503 -23331,3015:130,150,-3,0,0,0.679241 -23332,3015:131,151,-3,0,0,0.679129 -23333,3015:132,152,-3,0,0,0.678592 -23334,3015:133,153,-3,0,0,0.678301 -23335,3015:134,154,-3,0,0,0.67792 -23336,3015:235,155,-3,0,0,0.677359 -23337,3015:236,156,-3,0,0,0.676684 -23338,3015:237,157,-3,0,0,0.676167 -23339,3015:238,158,-3,0,0,0.676662 -23340,3015:239,159,-3,0,0,0.677538 -23341,3016:130,160,-3,0,0,0.678413 -23342,3016:131,161,-3,0,0,0.678749 -23343,3016:132,162,-3,0,0,0.678771 -23344,3016:133,163,-3,0,0,0.679175 -23345,3016:134,164,-3,0,0,0.679644 -23346,3016:235,165,-3,0,0,0.67989 -23347,3016:236,166,-3,0,0,0.680025 -23348,3016:237,167,-3,0,0,0.679331 -23349,3016:238,168,-3,0,0,0.67857 -23350,3016:239,169,-3,0,0,0.678122 -23351,3017:130,170,-3,0,0,0.677762 -23352,3017:131,171,-3,0,0,0.676954 -23353,3017:132,172,-3,0,0,0.676572 -23354,3017:133,173,-3,0,0,0.676909 -23355,3017:134,174,-3,0,0,0.677089 -23356,3017:235,175,-3,0,0,0.677313 -23357,3017:236,176,-3,0,0,0.677381 -23358,3017:237,177,-3,0,0,0.67747 -23359,3017:238,178,-3,0,0,0.677336 -23360,3017:239,179,-3,0,0,0.677583 -23361,3018:130,180,-3,0,0,0.677605 -23362,5018:120,-180,-2,0,0,0.677538 -23363,5017:229,-179,-2,0,0,0.677268 -23364,5017:228,-178,-2,0,0,0.676886 -23365,5017:227,-177,-2,0,0,0.675717 -23366,5017:226,-176,-2,0,0,0.67432 -23367,5017:225,-175,-2,0,0,0.674116 -23368,5017:124,-174,-2,0,0,0.672964 -23369,5017:123,-173,-2,0,0,0.670858 -23370,5017:122,-172,-2,0,0,0.668859 -23371,5017:121,-171,-2,0,0,0.667264 -23372,5017:120,-170,-2,0,0,0.66587 -23373,5016:229,-169,-2,0,0,0.664704 -23374,5016:228,-168,-2,0,0,0.663879 -23375,5016:227,-167,-2,0,0,0.662915 -23376,5016:226,-166,-2,0,0,0.660938 -23377,5016:225,-165,-2,0,0,0.657198 -23378,5016:124,-164,-2,0,0,0.654415 -23379,5016:123,-163,-2,0,0,0.653252 -23380,5016:122,-162,-2,0,0,0.652111 -23381,5016:121,-161,-2,0,0,0.650758 -23382,5016:120,-160,-2,0,0,0.650244 -23383,5015:229,-159,-2,0,0,0.649964 -23384,5015:228,-158,-2,0,0,0.649426 -23385,5015:227,-157,-2,0,0,0.647435 -23386,5015:226,-156,-2,0,0,0.647107 -23387,5015:225,-155,-2,0,0,0.646872 -23388,5015:124,-154,-2,0,0,0.646215 -23389,5015:123,-153,-2,0,0,0.644522 -23390,5015:122,-152,-2,0,0,0.641668 -23391,5015:121,-151,-2,0,0,0.63852 -23392,5015:120,-150,-2,0,0,0.636002 -23393,5014:229,-149,-2,0,0,0.633621 -23394,5014:228,-148,-2,0,0,0.630538 -23395,5014:227,-147,-2,0,0,0.62831 -23396,5014:226,-146,-2,0,0,0.626917 -23397,5014:225,-145,-2,0,0,0.625306 -23398,5014:124,-144,-2,0,0,0.624004 -23399,5014:123,-143,-2,0,0,0.622002 -23400,5014:122,-142,-2,0,0,0.620503 -23401,5014:121,-141,-2,0,0,0.619341 -23402,5014:120,-140,-2,0,0,0.617717 -23403,5013:229,-139,-2,0,0,0.618202 -23404,5013:228,-138,-2,0,0,0.617425 -23405,5013:227,-137,-2,0,0,0.614972 -23406,5013:226,-136,-2,0,0,0.611974 -23407,5013:225,-135,-2,0,0,0.610119 -23408,5013:124,-134,-2,0,0,0.608945 -23409,5013:123,-133,-2,0,0,0.60804 -23410,5013:122,-132,-2,0,0,0.606128 -23411,5013:121,-131,-2,0,0,0.601803 -23412,5013:120,-130,-2,0,0,0.600201 -23413,5012:229,-129,-2,0,0,0.600325 -23414,5012:228,-128,-2,0,0,0.59956 -23415,5012:227,-127,-2,0,0,0.598055 -23416,5012:226,-126,-2,0,0,0.596794 -23417,5012:225,-125,-2,0,0,0.5962 -23418,5012:124,-124,-2,0,0,0.594344 -23419,5012:123,-123,-2,0,0,0.591095 -23420,5012:122,-122,-2,0,0,0.588261 -23421,5012:121,-121,-2,0,0,0.587141 -23422,5012:120,-120,-2,0,0,0.586493 -23423,5011:229,-119,-2,0,0,0.585621 -23424,5011:228,-118,-2,0,0,0.581951 -23425,5011:227,-117,-2,0,0,0.58055 -23426,5011:226,-116,-2,0,0,0.580325 -23427,5011:225,-115,-2,0,0,0.579324 -23428,5011:124,-114,-2,0,0,0.57772 -23429,5011:123,-113,-2,0,0,0.577596 -23430,5011:122,-112,-2,0,0,0.578272 -23431,5011:121,-111,-2,0,0,0.579525 -23432,5011:120,-110,-2,0,0,0.581576 -23433,5010:229,-109,-2,0,0,0.583825 -23434,5010:228,-108,-2,0,0,0.583799 -23435,5010:227,-107,-2,0,0,0.583799 -23436,5010:226,-106,-2,0,0,0.584499 -23437,5010:225,-105,-2,0,0,0.585048 -23438,5010:124,-104,-2,0,0,0.584823 -23439,5010:123,-103,-2,0,0,0.584324 -23440,5010:122,-102,-2,0,0,0.58305 -23441,5010:121,-101,-2,0,0,0.580576 -23442,5010:120,-100,-2,0,0,0.579324 -23443,5009:229,-99,-2,0,0,0.5797 -23444,5009:228,-98,-2,0,0,0.58 -23445,5009:227,-97,-2,0,0,0.581726 -23446,5009:226,-96,-2,0,0,0.580726 -23447,5009:225,-95,-2,0,0,0.582825 -23448,5009:124,-94,-2,0,0,0.578548 -23449,5009:123,-93,-2,0,0,0.570108 -23450,5009:122,-92,-2,0,0,0.560565 -23451,5009:121,-91,-2,0,0,0.585347 -23452,5009:120,-90,-2,0,0,0.589232 -23453,5008:229,-89,-2,0,0,0.591791 -23454,5008:228,-88,-2,0,0,0.595037 -23455,5008:227,-87,-2,0,0,0.597091 -23456,5008:226,-86,-2,0,0,0.597511 -23457,5008:225,-85,-2,0,0,0.596448 -23458,5008:124,-84,-2,0,0,0.596967 -23459,5008:123,-83,-2,0,0,0.598425 -23460,5008:122,-82,-2,0,0,0.598647 -23461,5008:121,-81,-2,0,0,0.603722 -23462,5005:120,-50,-2,0,0,0.639965 -23463,5004:229,-49,-2,0,0,0.638188 -23464,5004:228,-48,-2,0,0,0.635146 -23465,5004:227,-47,-2,0,0,0.623547 -23466,5004:226,-46,-2,0,0,0.622002 -23467,5004:225,-45,-2,0,0,0.624655 -23468,5004:124,-44,-2,0,0,0.624318 -23469,5004:123,-43,-2,0,0,0.624872 -23470,5004:122,-42,-2,0,0,0.626171 -23471,5004:121,-41,-2,0,0,0.627253 -23472,5004:120,-40,-2,0,0,0.626917 -23473,5003:229,-39,-2,0,0,0.625065 -23474,5003:228,-38,-2,0,0,0.621374 -23475,5003:227,-37,-2,0,0,0.618978 -23476,5003:226,-36,-2,0,0,0.617256 -23477,5003:225,-35,-2,0,0,0.61609 -23478,5003:124,-34,-2,0,0,0.614387 -23479,5003:123,-33,-2,0,0,0.613267 -23480,5003:122,-32,-2,0,0,0.613681 -23481,5003:121,-31,-2,0,0,0.613681 -23482,5003:120,-30,-2,0,0,0.610583 -23483,5002:229,-29,-2,0,0,0.607501 -23484,5002:228,-28,-2,0,0,0.607844 -23485,5002:227,-27,-2,0,0,0.606374 -23486,5002:226,-26,-2,0,0,0.606545 -23487,5002:225,-25,-2,0,0,0.605784 -23488,5002:124,-24,-2,0,0,0.603894 -23489,5002:123,-23,-2,0,0,0.604729 -23490,5002:122,-22,-2,0,0,0.607109 -23491,5002:121,-21,-2,0,0,0.609361 -23492,5002:120,-20,-2,0,0,0.61134 -23493,5001:229,-19,-2,0,0,0.613706 -23494,5001:228,-18,-2,0,0,0.615555 -23495,5001:227,-17,-2,0,0,0.617256 -23496,5001:226,-16,-2,0,0,0.618566 -23497,5001:225,-15,-2,0,0,0.620721 -23498,5001:124,-14,-2,0,0,0.623715 -23499,5001:123,-13,-2,0,0,0.626869 -23500,5001:122,-12,-2,0,0,0.62994 -23501,5001:121,-11,-2,0,0,0.632857 -23502,5001:120,-10,-2,0,0,0.635074 -23503,5000:229,-9,-2,0,0,0.63655 -23504,5000:228,-8,-2,0,0,0.637832 -23505,5000:227,-7,-2,0,0,0.638781 -23506,5000:226,-6,-2,0,0,0.639823 -23507,5000:225,-5,-2,0,0,0.640675 -23508,5000:124,-4,-2,0,0,0.641904 -23509,5000:123,-3,-2,0,0,0.642802 -23510,5000:122,-2,-2,0,0,0.64299 -23511,5000:121,-1,-2,0,0,0.643438 -23512,3000:121,0,-2,0,0,0.644239 -23513,3000:121,1,-2,0,0,0.643838 -23514,3000:122,2,-2,0,0,0.643108 -23515,3000:123,3,-2,0,0,0.642377 -23516,3000:124,4,-2,0,0,0.642377 -23517,3000:225,5,-2,0,0,0.643202 -23518,3000:226,6,-2,0,0,0.64431 -23519,3000:227,7,-2,0,0,0.646121 -23520,3000:228,8,-2,0,0,0.646684 -23521,3000:229,9,-2,0,0,0.646872 -23522,3004:124,44,-2,0,0,0.640013 -23523,3004:225,45,-2,0,0,0.628861 -23524,3004:226,46,-2,0,0,0.633215 -23525,3004:227,47,-2,0,0,0.633191 -23526,3004:228,48,-2,0,0,0.633096 -23527,3004:229,49,-2,0,0,0.641502 -23528,3005:120,50,-2,0,0,0.64863 -23529,3005:121,51,-2,0,0,0.659002 -23530,3005:122,52,-2,0,0,0.662938 -23531,3005:123,53,-2,0,0,0.662134 -23532,3005:124,54,-2,0,0,0.668472 -23533,3005:225,55,-2,0,0,0.6745 -23534,3005:226,56,-2,0,0,0.675289 -23535,3005:227,57,-2,0,0,0.670676 -23536,3005:228,58,-2,0,0,0.661583 -23537,3005:229,59,-2,0,0,0.657708 -23538,3006:120,60,-2,0,0,0.653159 -23539,3006:121,61,-2,0,0,0.650478 -23540,3006:122,62,-2,0,0,0.649449 -23541,3006:123,63,-2,0,0,0.651015 -23542,3006:124,64,-2,0,0,0.652694 -23543,3006:225,65,-2,0,0,0.654252 -23544,3006:226,66,-2,0,0,0.656016 -23545,3006:227,67,-2,0,0,0.657476 -23546,3006:228,68,-2,0,0,0.658285 -23547,3006:229,69,-2,0,0,0.658563 -23548,3007:120,70,-2,0,0,0.658909 -23549,3007:121,71,-2,0,0,0.660523 -23550,3007:122,72,-2,0,0,0.662364 -23551,3007:124,74,-2,0,0,0.662479 -23552,3007:225,75,-2,0,0,0.664841 -23553,3007:226,76,-2,0,0,0.66507 -23554,3007:227,77,-2,0,0,0.664772 -23555,3007:228,78,-2,0,0,0.664314 -23556,3007:229,79,-2,0,0,0.663833 -23557,3008:120,80,-2,0,0,0.664108 -23558,3008:121,81,-2,0,0,0.664566 -23559,3008:122,82,-2,0,0,0.664704 -23560,3008:123,83,-2,0,0,0.664544 -23561,3008:124,84,-2,0,0,0.664498 -23562,3008:225,85,-2,0,0,0.664795 -23563,3008:226,86,-2,0,0,0.66507 -23564,3008:227,87,-2,0,0,0.665962 -23565,3008:228,88,-2,0,0,0.666488 -23566,3008:229,89,-2,0,0,0.667195 -23567,3009:120,90,-2,0,0,0.668813 -23568,3009:121,91,-2,0,0,0.669313 -23569,3009:122,92,-2,0,0,0.665596 -23570,3009:123,93,-2,0,0,0.662111 -23571,3009:124,94,-2,0,0,0.659394 -23572,3009:225,95,-2,0,0,0.659163 -23573,3009:226,96,-2,0,0,0.660408 -23574,3009:227,97,-2,0,0,0.662938 -23575,3009:228,98,-2,0,0,0.66683 -23576,3009:229,99,-2,0,0,0.673032 -23577,3010:124,104,-2,0,0,0.67371 -23578,3010:225,105,-2,0,0,0.661536 -23579,3010:226,106,-2,0,0,0.652088 -23580,3010:227,107,-2,0,0,0.655831 -23581,3010:228,108,-2,0,0,0.665917 -23582,3010:229,109,-2,0,0,0.676775 -23583,3011:228,118,-2,0,0,0.647575 -23584,3011:229,119,-2,0,0,0.649683 -23585,3012:120,120,-2,0,0,0.651552 -23586,3012:225,125,-2,0,0,0.685189 -23587,3012:226,126,-2,0,0,0.676617 -23588,3012:227,127,-2,0,0,0.671175 -23589,3012:229,129,-2,0,0,0.677268 -23590,3013:120,130,-2,0,0,0.669814 -23591,3013:121,131,-2,0,0,0.674184 -23592,3013:122,132,-2,0,0,0.672648 -23593,3013:123,133,-2,0,0,0.673122 -23594,3013:124,134,-2,0,0,0.673145 -23595,3013:225,135,-2,0,0,0.671402 -23596,3013:226,136,-2,0,0,0.66854 -23597,3013:227,137,-2,0,0,0.669609 -23598,3013:228,138,-2,0,0,0.668472 -23599,3013:229,139,-2,0,0,0.667537 -23600,3014:120,140,-2,0,0,0.667856 -23601,3014:121,141,-2,0,0,0.671175 -23602,3014:122,142,-2,0,0,0.671243 -23603,3014:123,143,-2,0,0,0.671538 -23604,3014:124,144,-2,0,0,0.673213 -23605,3014:225,145,-2,0,0,0.674726 -23606,3014:226,146,-2,0,0,0.676617 -23607,3014:227,147,-2,0,0,0.678032 -23608,3014:228,148,-2,0,0,0.678032 -23609,3014:229,149,-2,0,0,0.678189 -23610,3015:120,150,-2,0,0,0.678323 -23611,3015:121,151,-2,0,0,0.678615 -23612,3015:122,152,-2,0,0,0.678457 -23613,3015:123,153,-2,0,0,0.677605 -23614,3015:124,154,-2,0,0,0.676504 -23615,3015:225,155,-2,0,0,0.676302 -23616,3015:226,156,-2,0,0,0.676775 -23617,3015:227,157,-2,0,0,0.676842 -23618,3015:228,158,-2,0,0,0.677067 -23619,3015:229,159,-2,0,0,0.677583 -23620,3016:120,160,-2,0,0,0.678122 -23621,3016:121,161,-2,0,0,0.678143 -23622,3016:122,162,-2,0,0,0.678143 -23623,3016:123,163,-2,0,0,0.678524 -23624,3016:124,164,-2,0,0,0.678928 -23625,3016:225,165,-2,0,0,0.678816 -23626,3016:226,166,-2,0,0,0.678503 -23627,3016:227,167,-2,0,0,0.678435 -23628,3016:228,168,-2,0,0,0.67857 -23629,3016:229,169,-2,0,0,0.67857 -23630,3017:120,170,-2,0,0,0.678861 -23631,3017:121,171,-2,0,0,0.678995 -23632,3017:122,172,-2,0,0,0.678906 -23633,3017:123,173,-2,0,0,0.678099 -23634,3017:124,174,-2,0,0,0.677672 -23635,3017:225,175,-2,0,0,0.677762 -23636,3017:226,176,-2,0,0,0.67774 -23637,3017:227,177,-2,0,0,0.678143 -23638,3017:228,178,-2,0,0,0.678233 -23639,3017:229,179,-2,0,0,0.67792 -23640,3018:120,180,-2,0,0,0.677538 -23641,5018:110,-180,-1,0,0,0.675672 -23642,5017:219,-179,-1,0,0,0.674636 -23643,5017:218,-178,-1,0,0,0.672625 -23644,5017:217,-177,-1,0,0,0.672602 -23645,5017:216,-176,-1,0,0,0.672286 -23646,5017:215,-175,-1,0,0,0.671788 -23647,5017:114,-174,-1,0,0,0.67079 -23648,5017:113,-173,-1,0,0,0.669313 -23649,5017:112,-172,-1,0,0,0.666465 -23650,5017:111,-171,-1,0,0,0.663948 -23651,5017:110,-170,-1,0,0,0.661974 -23652,5016:219,-169,-1,0,0,0.659809 -23653,5016:218,-168,-1,0,0,0.661306 -23654,5016:217,-167,-1,0,0,0.661468 -23655,5016:216,-166,-1,0,0,0.658262 -23656,5016:215,-165,-1,0,0,0.655205 -23657,5016:114,-164,-1,0,0,0.655065 -23658,5016:113,-163,-1,0,0,0.656016 -23659,5016:112,-162,-1,0,0,0.656457 -23660,5016:111,-161,-1,0,0,0.65481 -23661,5016:110,-160,-1,0,0,0.650945 -23662,5015:219,-159,-1,0,0,0.650571 -23663,5015:218,-158,-1,0,0,0.652997 -23664,5015:217,-157,-1,0,0,0.654601 -23665,5015:216,-156,-1,0,0,0.65481 -23666,5015:215,-155,-1,0,0,0.654787 -23667,5015:114,-154,-1,0,0,0.651482 -23668,5015:113,-153,-1,0,0,0.647575 -23669,5015:112,-152,-1,0,0,0.643626 -23670,5015:111,-151,-1,0,0,0.643344 -23671,5015:110,-150,-1,0,0,0.641739 -23672,5014:219,-149,-1,0,0,0.636669 -23673,5014:218,-148,-1,0,0,0.634169 -23674,5014:217,-147,-1,0,0,0.633597 -23675,5014:216,-146,-1,0,0,0.632547 -23676,5014:215,-145,-1,0,0,0.633931 -23677,5014:114,-144,-1,0,0,0.634526 -23678,5014:113,-143,-1,0,0,0.633478 -23679,5014:112,-142,-1,0,0,0.631041 -23680,5014:111,-141,-1,0,0,0.628981 -23681,5014:110,-140,-1,0,0,0.627182 -23682,5013:219,-139,-1,0,0,0.627782 -23683,5013:218,-138,-1,0,0,0.629101 -23684,5013:217,-137,-1,0,0,0.627686 -23685,5013:216,-136,-1,0,0,0.624968 -23686,5013:215,-135,-1,0,0,0.62106 -23687,5013:114,-134,-1,0,0,0.6206 -23688,5013:113,-133,-1,0,0,0.621156 -23689,5013:112,-132,-1,0,0,0.622799 -23690,5013:111,-131,-1,0,0,0.62333 -23691,5013:110,-130,-1,0,0,0.618663 -23692,5012:219,-129,-1,0,0,0.616065 -23693,5012:218,-128,-1,0,0,0.613608 -23694,5012:217,-127,-1,0,0,0.614655 -23695,5012:216,-126,-1,0,0,0.613535 -23696,5012:215,-125,-1,0,0,0.611047 -23697,5012:114,-124,-1,0,0,0.611779 -23698,5012:113,-123,-1,0,0,0.610168 -23699,5012:112,-122,-1,0,0,0.604065 -23700,5012:111,-121,-1,0,0,0.600028 -23701,5012:110,-120,-1,0,0,0.598326 -23702,5011:219,-119,-1,0,0,0.60232 -23703,5011:218,-118,-1,0,0,0.605637 -23704,5011:217,-117,-1,0,0,0.606374 -23705,5011:216,-116,-1,0,0,0.605515 -23706,5011:215,-115,-1,0,0,0.602935 -23707,5011:114,-114,-1,0,0,0.601581 -23708,5011:113,-113,-1,0,0,0.60232 -23709,5011:112,-112,-1,0,0,0.602689 -23710,5011:111,-111,-1,0,0,0.604901 -23711,5011:110,-110,-1,0,0,0.608015 -23712,5010:219,-109,-1,0,0,0.609483 -23713,5010:218,-108,-1,0,0,0.61051 -23714,5010:217,-107,-1,0,0,0.61134 -23715,5010:216,-106,-1,0,0,0.61156 -23716,5010:215,-105,-1,0,0,0.611633 -23717,5010:114,-104,-1,0,0,0.611438 -23718,5010:113,-103,-1,0,0,0.611316 -23719,5010:112,-102,-1,0,0,0.610949 -23720,5010:111,-101,-1,0,0,0.610681 -23721,5010:110,-100,-1,0,0,0.611877 -23722,5009:219,-99,-1,0,0,0.61334 -23723,5009:218,-98,-1,0,0,0.614022 -23724,5009:217,-97,-1,0,0,0.614972 -23725,5009:216,-96,-1,0,0,0.615677 -23726,5009:215,-95,-1,0,0,0.616017 -23727,5009:114,-94,-1,0,0,0.614169 -23728,5009:113,-93,-1,0,0,0.610779 -23729,5009:112,-92,-1,0,0,0.611974 -23730,5009:111,-91,-1,0,0,0.6139 -23731,5009:110,-90,-1,0,0,0.617159 -23732,5008:219,-89,-1,0,0,0.619293 -23733,5008:218,-88,-1,0,0,0.62014 -23734,5008:217,-87,-1,0,0,0.619075 -23735,5008:216,-86,-1,0,0,0.616236 -23736,5008:215,-85,-1,0,0,0.61312 -23737,5008:114,-84,-1,0,0,0.611096 -23738,5008:113,-83,-1,0,0,0.61051 -23739,5008:112,-82,-1,0,0,0.609263 -23740,5008:111,-81,-1,0,0,0.61073 -23741,5008:110,-80,-1,0,0,0.613852 -23742,5007:219,-79,-1,0,0,0.619946 -23743,5005:110,-50,-1,0,0,0.639232 -23744,5004:219,-49,-1,0,0,0.633621 -23745,5004:218,-48,-1,0,0,0.620865 -23746,5004:217,-47,-1,0,0,0.624246 -23747,5004:216,-46,-1,0,0,0.625907 -23748,5004:215,-45,-1,0,0,0.628909 -23749,5004:114,-44,-1,0,0,0.630587 -23750,5004:113,-43,-1,0,0,0.631424 -23751,5004:112,-42,-1,0,0,0.631902 -23752,5004:111,-41,-1,0,0,0.631017 -23753,5004:110,-40,-1,0,0,0.629581 -23754,5003:219,-39,-1,0,0,0.626893 -23755,5003:218,-38,-1,0,0,0.624125 -23756,5003:217,-37,-1,0,0,0.622171 -23757,5003:216,-36,-1,0,0,0.621397 -23758,5003:215,-35,-1,0,0,0.620986 -23759,5003:114,-34,-1,0,0,0.620865 -23760,5003:113,-33,-1,0,0,0.620842 -23761,5003:112,-32,-1,0,0,0.62118 -23762,5003:111,-31,-1,0,0,0.621374 -23763,5003:110,-30,-1,0,0,0.623836 -23764,5002:219,-29,-1,0,0,0.625378 -23765,5002:218,-28,-1,0,0,0.625546 -23766,5002:217,-27,-1,0,0,0.626171 -23767,5002:216,-26,-1,0,0,0.627421 -23768,5002:215,-25,-1,0,0,0.627374 -23769,5002:114,-24,-1,0,0,0.627974 -23770,5002:113,-23,-1,0,0,0.627902 -23771,5002:112,-22,-1,0,0,0.628382 -23772,5002:111,-21,-1,0,0,0.629772 -23773,5002:110,-20,-1,0,0,0.630299 -23774,5001:219,-19,-1,0,0,0.632427 -23775,5001:218,-18,-1,0,0,0.633955 -23776,5001:217,-17,-1,0,0,0.634741 -23777,5001:216,-16,-1,0,0,0.636431 -23778,5001:215,-15,-1,0,0,0.638662 -23779,5001:114,-14,-1,0,0,0.640817 -23780,5001:113,-13,-1,0,0,0.643509 -23781,5001:112,-12,-1,0,0,0.64652 -23782,5001:111,-11,-1,0,0,0.649473 -23783,5001:110,-10,-1,0,0,0.652228 -23784,5000:219,-9,-1,0,0,0.654438 -23785,5000:218,-8,-1,0,0,0.656016 -23786,5000:217,-7,-1,0,0,0.657314 -23787,5000:216,-6,-1,0,0,0.658355 -23788,5000:215,-5,-1,0,0,0.659324 -23789,5000:114,-4,-1,0,0,0.659647 -23790,5000:113,-3,-1,0,0,0.659301 -23791,5000:112,-2,-1,0,0,0.659002 -23792,5000:111,-1,-1,0,0,0.658239 -23793,3000:111,0,-1,0,0,0.658101 -23794,3000:111,1,-1,0,0,0.657545 -23795,3000:112,2,-1,0,0,0.658401 -23796,3000:113,3,-1,0,0,0.657915 -23797,3000:114,4,-1,0,0,0.657036 -23798,3000:215,5,-1,0,0,0.656248 -23799,3000:216,6,-1,0,0,0.65481 -23800,3000:217,7,-1,0,0,0.655854 -23801,3000:218,8,-1,0,0,0.657106 -23802,3000:219,9,-1,0,0,0.656016 -23803,3004:216,46,-1,0,0,0.615507 -23804,3004:217,47,-1,0,0,0.631232 -23805,3004:218,48,-1,0,0,0.636288 -23806,3004:219,49,-1,0,0,0.640273 -23807,3005:110,50,-1,0,0,0.64405 -23808,3005:111,51,-1,0,0,0.650151 -23809,3005:112,52,-1,0,0,0.651995 -23810,3005:113,53,-1,0,0,0.661306 -23811,3005:114,54,-1,0,0,0.663627 -23812,3005:215,55,-1,0,0,0.660016 -23813,3005:216,56,-1,0,0,0.662548 -23814,3005:217,57,-1,0,0,0.666967 -23815,3005:218,58,-1,0,0,0.659279 -23816,3005:219,59,-1,0,0,0.651482 -23817,3006:110,60,-1,0,0,0.649145 -23818,3006:111,61,-1,0,0,0.648958 -23819,3006:112,62,-1,0,0,0.645933 -23820,3006:113,63,-1,0,0,0.646473 -23821,3006:114,64,-1,0,0,0.648021 -23822,3006:215,65,-1,0,0,0.650034 -23823,3006:216,66,-1,0,0,0.653438 -23824,3006:217,67,-1,0,0,0.656526 -23825,3006:218,68,-1,0,0,0.659071 -23826,3006:219,69,-1,0,0,0.661007 -23827,3007:110,70,-1,0,0,0.66287 -23828,3007:111,71,-1,0,0,0.663397 -23829,3007:112,72,-1,0,0,0.662548 -23830,3007:114,74,-1,0,0,0.662938 -23831,3007:215,75,-1,0,0,0.66436 -23832,3007:216,76,-1,0,0,0.663948 -23833,3007:217,77,-1,0,0,0.664338 -23834,3007:218,78,-1,0,0,0.664727 -23835,3007:219,79,-1,0,0,0.663214 -23836,3008:110,80,-1,0,0,0.662685 -23837,3008:111,81,-1,0,0,0.662042 -23838,3008:112,82,-1,0,0,0.662111 -23839,3008:113,83,-1,0,0,0.663168 -23840,3008:114,84,-1,0,0,0.66397 -23841,3008:215,85,-1,0,0,0.664887 -23842,3008:216,86,-1,0,0,0.664978 -23843,3008:217,87,-1,0,0,0.664841 -23844,3008:218,88,-1,0,0,0.663993 -23845,3008:219,89,-1,0,0,0.664291 -23846,3009:110,90,-1,0,0,0.665231 -23847,3009:111,91,-1,0,0,0.665001 -23848,3009:112,92,-1,0,0,0.661996 -23849,3009:113,93,-1,0,0,0.662066 -23850,3009:114,94,-1,0,0,0.661652 -23851,3009:215,95,-1,0,0,0.662962 -23852,3009:216,96,-1,0,0,0.666259 -23853,3009:217,97,-1,0,0,0.669495 -23854,3009:218,98,-1,0,0,0.671425 -23855,3010:112,102,-1,0,0,0.673687 -23856,3010:215,105,-1,0,0,0.645792 -23857,3010:216,106,-1,0,0,0.648091 -23858,3010:217,107,-1,0,0,0.650127 -23859,3010:218,108,-1,0,0,0.656596 -23860,3010:219,109,-1,0,0,0.671765 -23861,3011:110,110,-1,0,0,0.676864 -23862,3011:111,111,-1,0,0,0.681877 -23863,3011:219,119,-1,0,0,0.654973 -23864,3012:110,120,-1,0,0,0.661284 -23865,3012:111,121,-1,0,0,0.661675 -23866,3012:112,122,-1,0,0,0.664062 -23867,3012:113,123,-1,0,0,0.666738 -23868,3012:114,124,-1,0,0,0.668358 -23869,3012:215,125,-1,0,0,0.664223 -23870,3012:216,126,-1,0,0,0.665962 -23871,3012:217,127,-1,0,0,0.66491 -23872,3012:219,129,-1,0,0,0.672444 -23873,3013:110,130,-1,0,0,0.667606 -23874,3013:111,131,-1,0,0,0.668449 -23875,3013:112,132,-1,0,0,0.667833 -23876,3013:113,133,-1,0,0,0.667925 -23877,3013:114,134,-1,0,0,0.665917 -23878,3013:215,135,-1,0,0,0.664933 -23879,3013:216,136,-1,0,0,0.66475 -23880,3013:217,137,-1,0,0,0.664955 -23881,3013:218,138,-1,0,0,0.66397 -23882,3013:219,139,-1,0,0,0.663305 -23883,3014:110,140,-1,0,0,0.663512 -23884,3014:111,141,-1,0,0,0.665779 -23885,3014:112,142,-1,0,0,0.668062 -23886,3014:113,143,-1,0,0,0.670971 -23887,3014:114,144,-1,0,0,0.673552 -23888,3014:215,145,-1,0,0,0.674523 -23889,3014:216,146,-1,0,0,0.675762 -23890,3014:217,147,-1,0,0,0.676549 -23891,3014:218,148,-1,0,0,0.677762 -23892,3014:219,149,-1,0,0,0.678794 -23893,3015:110,150,-1,0,0,0.679264 -23894,3015:111,151,-1,0,0,0.679107 -23895,3015:112,152,-1,0,0,0.678704 -23896,3015:113,153,-1,0,0,0.677336 -23897,3015:114,154,-1,0,0,0.676392 -23898,3015:215,155,-1,0,0,0.676976 -23899,3015:216,156,-1,0,0,0.677201 -23900,3015:217,157,-1,0,0,0.676775 -23901,3015:218,158,-1,0,0,0.676302 -23902,3015:219,159,-1,0,0,0.675965 -23903,3016:110,160,-1,0,0,0.675559 -23904,3016:111,161,-1,0,0,0.675222 -23905,3016:112,162,-1,0,0,0.675289 -23906,3016:113,163,-1,0,0,0.675785 -23907,3016:114,164,-1,0,0,0.67637 -23908,3016:215,165,-1,0,0,0.676729 -23909,3016:216,166,-1,0,0,0.676752 -23910,3016:217,167,-1,0,0,0.676796 -23911,3016:218,168,-1,0,0,0.677089 -23912,3016:219,169,-1,0,0,0.676055 -23913,3017:110,170,-1,0,0,0.677874 -23914,3017:111,171,-1,0,0,0.677762 -23915,3017:112,172,-1,0,0,0.677493 -23916,3017:113,173,-1,0,0,0.677942 -23917,3017:114,174,-1,0,0,0.678435 -23918,3017:215,175,-1,0,0,0.678143 -23919,3017:216,176,-1,0,0,0.676819 -23920,3017:217,177,-1,0,0,0.67637 -23921,3017:218,178,-1,0,0,0.675807 -23922,3017:219,179,-1,0,0,0.676055 -23923,3018:110,180,-1,0,0,0.675672 -23924,7018:110,-180,0,0,0,0.670018 -23925,7017:219,-179,0,0,0,0.669245 -23926,7017:218,-178,0,0,0,0.66854 -23927,7017:217,-177,0,0,0,0.668107 -23928,7017:216,-176,0,0,0,0.667902 -23929,7017:215,-175,0,0,0,0.667628 -23930,7017:114,-174,0,0,0,0.666168 -23931,7017:113,-173,0,0,0,0.665665 -23932,7017:112,-172,0,0,0,0.665207 -23933,7017:111,-171,0,0,0,0.665024 -23934,7017:110,-170,0,0,0,0.663558 -23935,7016:219,-169,0,0,0,0.66241 -23936,7016:218,-168,0,0,0,0.66397 -23937,7016:217,-167,0,0,0,0.662685 -23938,7016:216,-166,0,0,0,0.659394 -23939,7016:215,-165,0,0,0,0.656179 -23940,7016:114,-164,0,0,0,0.654276 -23941,7016:113,-163,0,0,0,0.653462 -23942,7016:112,-162,0,0,0,0.654531 -23943,7016:111,-161,0,0,0,0.65611 -23944,7016:110,-160,0,0,0,0.653229 -23945,7015:219,-159,0,0,0,0.650641 -23946,7015:218,-158,0,0,0,0.655344 -23947,7015:217,-157,0,0,0,0.654136 -23948,7015:216,-156,0,0,0,0.653183 -23949,7015:215,-155,0,0,0,0.654833 -23950,7015:114,-154,0,0,0,0.655321 -23951,7015:113,-153,0,0,0,0.652671 -23952,7015:112,-152,0,0,0,0.649052 -23953,7015:111,-151,0,0,0,0.647271 -23954,7015:110,-150,0,0,0,0.645839 -23955,7014:219,-149,0,0,0,0.645768 -23956,7014:218,-148,0,0,0,0.64398 -23957,7014:217,-147,0,0,0,0.641574 -23958,7014:216,-146,0,0,0,0.63961 -23959,7014:215,-145,0,0,0,0.638212 -23960,7014:114,-144,0,0,0,0.639349 -23961,7014:113,-143,0,0,0,0.64214 -23962,7014:112,-142,0,0,0,0.638235 -23963,7014:111,-141,0,0,0,0.632785 -23964,7014:110,-140,0,0,0,0.633811 -23965,7013:219,-139,0,0,0,0.634193 -23966,7013:218,-138,0,0,0,0.638307 -23967,7013:217,-137,0,0,0,0.639681 -23968,7013:216,-136,0,0,0,0.638638 -23969,7013:215,-135,0,0,0,0.632762 -23970,7013:114,-134,0,0,0,0.628237 -23971,7013:113,-133,0,0,0,0.630371 -23972,7013:112,-132,0,0,0,0.632977 -23973,7013:111,-131,0,0,0,0.629269 -23974,7013:110,-130,0,0,0,0.620503 -23975,7012:219,-129,0,0,0,0.630251 -23976,7012:218,-128,0,0,0,0.632833 -23977,7012:217,-127,0,0,0,0.631256 -23978,7012:216,-126,0,0,0,0.632093 -23979,7012:215,-125,0,0,0,0.625233 -23980,7012:114,-124,0,0,0,0.621808 -23981,7012:113,-123,0,0,0,0.621132 -23982,7012:112,-122,0,0,0,0.611365 -23983,7012:111,-121,0,0,0,0.611633 -23984,7012:110,-120,0,0,0,0.612682 -23985,7011:219,-119,0,0,0,0.621567 -23986,7011:218,-118,0,0,0,0.618978 -23987,7011:217,-117,0,0,0,0.618711 -23988,7011:216,-116,0,0,0,0.620213 -23989,7011:215,-115,0,0,0,0.621422 -23990,7011:114,-114,0,0,0,0.621035 -23991,7011:113,-113,0,0,0,0.619317 -23992,7011:112,-112,0,0,0,0.618008 -23993,7011:111,-111,0,0,0,0.618881 -23994,7011:110,-110,0,0,0,0.62176 -23995,7010:219,-109,0,0,0,0.621833 -23996,7010:218,-108,0,0,0,0.620914 -23997,7010:217,-107,0,0,0,0.620842 -23998,7010:216,-106,0,0,0,0.620454 -23999,7010:215,-105,0,0,0,0.619462 -24000,7010:114,-104,0,0,0,0.618832 -24001,7010:113,-103,0,0,0,0.618663 -24002,7010:112,-102,0,0,0,0.619026 -24003,7010:111,-101,0,0,0,0.620043 -24004,7010:110,-100,0,0,0,0.620865 -24005,7009:219,-99,0,0,0,0.621833 -24006,7009:218,-98,0,0,0,0.622919 -24007,7009:217,-97,0,0,0,0.624149 -24008,7009:216,-96,0,0,0,0.62545 -24009,7009:215,-95,0,0,0,0.62557 -24010,7009:114,-94,0,0,0,0.624608 -24011,7009:113,-93,0,0,0,0.623812 -24012,7009:112,-92,0,0,0,0.623691 -24013,7009:111,-91,0,0,0,0.623643 -24014,7009:110,-90,0,0,0,0.625113 -24015,7008:219,-89,0,0,0,0.626484 -24016,7008:218,-88,0,0,0,0.627637 -24017,7008:217,-87,0,0,0,0.628118 -24018,7008:216,-86,0,0,0,0.626075 -24019,7008:215,-85,0,0,0,0.623595 -24020,7008:114,-84,0,0,0,0.622919 -24021,7008:113,-83,0,0,0,0.621108 -24022,7008:112,-82,0,0,0,0.619365 -24023,7008:111,-81,0,0,0,0.618274 -24024,7008:110,-80,0,0,0,0.618735 -24025,7007:219,-79,0,0,0,0.618008 -24026,7007:218,-78,0,0,0,0.630849 -24027,7005:111,-51,0,0,0,0.637025 -24028,7005:110,-50,0,0,0,0.629413 -24029,7004:219,-49,0,0,0,0.624487 -24030,7004:218,-48,0,0,0,0.626893 -24031,7004:217,-47,0,0,0,0.631185 -24032,7004:216,-46,0,0,0,0.63486 -24033,7004:215,-45,0,0,0,0.636217 -24034,7004:114,-44,0,0,0,0.636526 -24035,7004:113,-43,0,0,0,0.636026 -24036,7004:112,-42,0,0,0,0.634121 -24037,7004:111,-41,0,0,0,0.632857 -24038,7004:110,-40,0,0,0,0.632571 -24039,7003:219,-39,0,0,0,0.632332 -24040,7003:218,-38,0,0,0,0.630849 -24041,7003:217,-37,0,0,0,0.628981 -24042,7003:216,-36,0,0,0,0.627133 -24043,7003:215,-35,0,0,0,0.626388 -24044,7003:114,-34,0,0,0,0.626436 -24045,7003:113,-33,0,0,0,0.625859 -24046,7003:112,-32,0,0,0,0.62557 -24047,7003:111,-31,0,0,0,0.625185 -24048,7003:110,-30,0,0,0,0.625017 -24049,7002:219,-29,0,0,0,0.626965 -24050,7002:218,-28,0,0,0,0.627662 -24051,7002:217,-27,0,0,0,0.628357 -24052,7002:216,-26,0,0,0,0.629149 -24053,7002:215,-25,0,0,0,0.631041 -24054,7002:114,-24,0,0,0,0.632762 -24055,7002:113,-23,0,0,0,0.634098 -24056,7002:112,-22,0,0,0,0.635337 -24057,7002:111,-21,0,0,0,0.635432 -24058,7002:110,-20,0,0,0,0.635432 -24059,7001:219,-19,0,0,0,0.637832 -24060,7001:218,-18,0,0,0,0.638876 -24061,7001:217,-17,0,0,0,0.639989 -24062,7001:216,-16,0,0,0,0.641526 -24063,7001:215,-15,0,0,0,0.642565 -24064,7001:114,-14,0,0,0,0.644074 -24065,7001:113,-13,0,0,0,0.646544 -24066,7001:112,-12,0,0,0,0.64987 -24067,7001:111,-11,0,0,0,0.652833 -24068,7001:110,-10,0,0,0,0.655483 -24069,7000:219,-9,0,0,0,0.65699 -24070,7000:218,-8,0,0,0,0.658378 -24071,7000:217,-7,0,0,0,0.659809 -24072,7000:216,-6,0,0,0,0.661536 -24073,7000:215,-5,0,0,0,0.664017 -24074,7000:114,-4,0,0,0,0.66635 -24075,7000:113,-3,0,0,0,0.667879 -24076,7000:112,-2,0,0,0,0.668972 -24077,7000:111,-1,0,0,0,0.671584 -24078,1000:111,0,0,0,0,0.672263 -24079,1000:111,1,0,0,0,0.669427 -24080,1000:112,2,0,0,0,0.669836 -24081,1000:113,3,0,0,0,0.669972 -24082,1000:114,4,0,0,0,0.671991 -24083,1000:215,5,0,0,0,0.672625 -24084,1000:216,6,0,0,0,0.666899 -24085,1000:217,7,0,0,0,0.662594 -24086,1000:218,8,0,0,0,0.660178 -24087,1000:219,9,0,0,0,0.660247 -24088,1004:217,47,0,0,0,0.633835 -24089,1004:218,48,0,0,0,0.633859 -24090,1004:219,49,0,0,0,0.63871 -24091,1005:110,50,0,0,0,0.641715 -24092,1005:111,51,0,0,0,0.646731 -24093,1005:112,52,0,0,0,0.646825 -24094,1005:113,53,0,0,0,0.647552 -24095,1005:114,54,0,0,0,0.646637 -24096,1005:215,55,0,0,0,0.650127 -24097,1005:216,56,0,0,0,0.65488 -24098,1005:217,57,0,0,0,0.659371 -24099,1005:218,58,0,0,0,0.658216 -24100,1005:219,59,0,0,0,0.654508 -24101,1006:110,60,0,0,0,0.650898 -24102,1006:111,61,0,0,0,0.651201 -24103,1006:112,62,0,0,0,0.650594 -24104,1006:113,63,0,0,0,0.647951 -24105,1006:114,64,0,0,0,0.646989 -24106,1006:215,65,0,0,0,0.652694 -24107,1006:216,66,0,0,0,0.657291 -24108,1006:217,67,0,0,0,0.659555 -24109,1006:218,68,0,0,0,0.661376 -24110,1006:219,69,0,0,0,0.664658 -24111,1007:110,70,0,0,0,0.66635 -24112,1007:111,71,0,0,0,0.666053 -24113,1007:112,72,0,0,0,0.66475 -24114,1007:114,74,0,0,0,0.663237 -24115,1007:215,75,0,0,0,0.661789 -24116,1007:216,76,0,0,0,0.660178 -24117,1007:217,77,0,0,0,0.660016 -24118,1007:218,78,0,0,0,0.659555 -24119,1007:219,79,0,0,0,0.658932 -24120,1008:110,80,0,0,0,0.658077 -24121,1008:111,81,0,0,0,0.65817 -24122,1008:112,82,0,0,0,0.659509 -24123,1008:113,83,0,0,0,0.660708 -24124,1008:114,84,0,0,0,0.662915 -24125,1008:215,85,0,0,0,0.664772 -24126,1008:216,86,0,0,0,0.66397 -24127,1008:217,87,0,0,0,0.662938 -24128,1008:218,88,0,0,0,0.662685 -24129,1008:219,89,0,0,0,0.663099 -24130,1009:110,90,0,0,0,0.663604 -24131,1009:111,91,0,0,0,0.661767 -24132,1009:112,92,0,0,0,0.662525 -24133,1009:113,93,0,0,0,0.665322 -24134,1009:114,94,0,0,0,0.666738 -24135,1009:215,95,0,0,0,0.667765 -24136,1009:216,96,0,0,0,0.669904 -24137,1009:217,97,0,0,0,0.671493 -24138,1010:110,100,0,0,0,0.673394 -24139,1010:111,101,0,0,0,0.679354 -24140,1010:114,104,0,0,0,0.640202 -24141,1010:215,105,0,0,0,0.637499 -24142,1010:216,106,0,0,0,0.639563 -24143,1010:217,107,0,0,0,0.631567 -24144,1010:218,108,0,0,0,0.644357 -24145,1010:219,109,0,0,0,0.656573 -24146,1011:110,110,0,0,0,0.664635 -24147,1011:111,111,0,0,0,0.667378 -24148,1011:112,112,0,0,0,0.670155 -24149,1011:113,113,0,0,0,0.672942 -24150,1011:218,118,0,0,0,0.66172 -24151,1011:219,119,0,0,0,0.651155 -24152,1012:110,120,0,0,0,0.658632 -24153,1012:111,121,0,0,0,0.664017 -24154,1012:112,122,0,0,0,0.665596 -24155,1012:113,123,0,0,0,0.666944 -24156,1012:114,124,0,0,0,0.667195 -24157,1012:215,125,0,0,0,0.665847 -24158,1012:216,126,0,0,0,0.66895 -24159,1012:217,127,0,0,0,0.662042 -24160,1012:218,128,0,0,0,0.664131 -24161,1012:219,129,0,0,0,0.664589 -24162,1013:110,130,0,0,0,0.665367 -24163,1013:111,131,0,0,0,0.663099 -24164,1013:112,132,0,0,0,0.658863 -24165,1013:113,133,0,0,0,0.659094 -24166,1013:114,134,0,0,0,0.661789 -24167,1013:215,135,0,0,0,0.664589 -24168,1013:216,136,0,0,0,0.667537 -24169,1013:217,137,0,0,0,0.671062 -24170,1013:218,138,0,0,0,0.669746 -24171,1013:219,139,0,0,0,0.66929 -24172,1014:110,140,0,0,0,0.669972 -24173,1014:111,141,0,0,0,0.669586 -24174,1014:112,142,0,0,0,0.669131 -24175,1014:113,143,0,0,0,0.670268 -24176,1014:114,144,0,0,0,0.672308 -24177,1014:215,145,0,0,0,0.673981 -24178,1014:216,146,0,0,0,0.674658 -24179,1014:217,147,0,0,0,0.676055 -24180,1014:218,148,0,0,0,0.678054 -24181,1014:219,149,0,0,0,0.67839 -24182,1015:110,150,0,0,0,0.678524 -24183,1015:111,151,0,0,0,0.678189 -24184,1015:112,152,0,0,0,0.677403 -24185,1015:113,153,0,0,0,0.67637 -24186,1015:114,154,0,0,0,0.675739 -24187,1015:215,155,0,0,0,0.675357 -24188,1015:216,156,0,0,0,0.675041 -24189,1015:217,157,0,0,0,0.674297 -24190,1015:218,158,0,0,0,0.673122 -24191,1015:219,159,0,0,0,0.672217 -24192,1016:110,160,0,0,0,0.671538 -24193,1016:111,161,0,0,0,0.671357 -24194,1016:112,162,0,0,0,0.671878 -24195,1016:113,163,0,0,0,0.672602 -24196,1016:114,164,0,0,0,0.67319 -24197,1016:215,165,0,0,0,0.673258 -24198,1016:216,166,0,0,0,0.672467 -24199,1016:217,167,0,0,0,0.672105 -24200,1016:218,168,0,0,0,0.672308 -24201,1016:219,169,0,0,0,0.674342 -24202,1017:110,170,0,0,0,0.675289 -24203,1017:111,171,0,0,0,0.675199 -24204,1017:112,172,0,0,0,0.675086 -24205,1017:113,173,0,0,0,0.675041 -24206,1017:114,174,0,0,0,0.675447 -24207,1017:215,175,0,0,0,0.676864 -24208,1017:216,176,0,0,0,0.675785 -24209,1017:217,177,0,0,0,0.672942 -24210,1017:218,178,0,0,0,0.67138 -24211,1017:219,179,0,0,0,0.670971 -24212,1018:110,180,0,0,0,0.670018 -24213,7018:110,-180,1,0,0,0.667172 -24214,7017:219,-179,1,0,0,0.665939 -24215,7017:218,-178,1,0,0,0.664521 -24216,7017:217,-177,1,0,0,0.663168 -24217,7017:216,-176,1,0,0,0.662387 -24218,7017:215,-175,1,0,0,0.662433 -24219,7017:114,-174,1,0,0,0.66241 -24220,7017:113,-173,1,0,0,0.662594 -24221,7017:112,-172,1,0,0,0.661007 -24222,7017:111,-171,1,0,0,0.66057 -24223,7017:110,-170,1,0,0,0.659947 -24224,7016:219,-169,1,0,0,0.660408 -24225,7016:218,-168,1,0,0,0.660293 -24226,7016:217,-167,1,0,0,0.660408 -24227,7016:216,-166,1,0,0,0.659647 -24228,7016:215,-165,1,0,0,0.659486 -24229,7016:114,-164,1,0,0,0.659024 -24230,7016:113,-163,1,0,0,0.658539 -24231,7016:112,-162,1,0,0,0.657777 -24232,7016:111,-161,1,0,0,0.656086 -24233,7016:110,-160,1,0,0,0.655042 -24234,7015:219,-159,1,0,0,0.656132 -24235,7015:218,-158,1,0,0,0.656016 -24236,7015:217,-157,1,0,0,0.655344 -24237,7015:216,-156,1,0,0,0.654787 -24238,7015:215,-155,1,0,0,0.655089 -24239,7015:114,-154,1,0,0,0.654671 -24240,7015:113,-153,1,0,0,0.654671 -24241,7015:112,-152,1,0,0,0.653462 -24242,7015:111,-151,1,0,0,0.651715 -24243,7015:110,-150,1,0,0,0.651201 -24244,7014:219,-149,1,0,0,0.651715 -24245,7014:218,-148,1,0,0,0.651015 -24246,7014:217,-147,1,0,0,0.649823 -24247,7014:216,-146,1,0,0,0.647764 -24248,7014:215,-145,1,0,0,0.646426 -24249,7014:114,-144,1,0,0,0.647834 -24250,7014:113,-143,1,0,0,0.648841 -24251,7014:112,-142,1,0,0,0.648443 -24252,7014:111,-141,1,0,0,0.646567 -24253,7014:110,-140,1,0,0,0.648021 -24254,7013:219,-139,1,0,0,0.646027 -24255,7013:218,-138,1,0,0,0.643084 -24256,7013:217,-137,1,0,0,0.641384 -24257,7013:216,-136,1,0,0,0.641763 -24258,7013:215,-135,1,0,0,0.641763 -24259,7013:114,-134,1,0,0,0.640367 -24260,7013:113,-133,1,0,0,0.637476 -24261,7013:112,-132,1,0,0,0.640084 -24262,7013:111,-131,1,0,0,0.642518 -24263,7013:110,-130,1,0,0,0.643225 -24264,7012:219,-129,1,0,0,0.640699 -24265,7012:218,-128,1,0,0,0.643485 -24266,7012:217,-127,1,0,0,0.643084 -24267,7012:216,-126,1,0,0,0.640817 -24268,7012:215,-125,1,0,0,0.636074 -24269,7012:114,-124,1,0,0,0.640652 -24270,7012:113,-123,1,0,0,0.64103 -24271,7012:112,-122,1,0,0,0.631878 -24272,7012:111,-121,1,0,0,0.628742 -24273,7012:110,-120,1,0,0,0.635883 -24274,7011:219,-119,1,0,0,0.637998 -24275,7011:218,-118,1,0,0,0.63486 -24276,7011:217,-117,1,0,0,0.634098 -24277,7011:216,-116,1,0,0,0.634312 -24278,7011:215,-115,1,0,0,0.634264 -24279,7011:114,-114,1,0,0,0.634384 -24280,7011:113,-113,1,0,0,0.63455 -24281,7011:112,-112,1,0,0,0.635098 -24282,7011:111,-111,1,0,0,0.635408 -24283,7011:110,-110,1,0,0,0.635122 -24284,7010:219,-109,1,0,0,0.634026 -24285,7010:218,-108,1,0,0,0.632785 -24286,7010:217,-107,1,0,0,0.631567 -24287,7010:216,-106,1,0,0,0.630514 -24288,7010:215,-105,1,0,0,0.629628 -24289,7010:114,-104,1,0,0,0.628694 -24290,7010:113,-103,1,0,0,0.627902 -24291,7010:112,-102,1,0,0,0.627374 -24292,7010:111,-101,1,0,0,0.627374 -24293,7010:110,-100,1,0,0,0.62747 -24294,7009:219,-99,1,0,0,0.627902 -24295,7009:218,-98,1,0,0,0.628118 -24296,7009:217,-97,1,0,0,0.628141 -24297,7009:216,-96,1,0,0,0.628357 -24298,7009:215,-95,1,0,0,0.629054 -24299,7009:114,-94,1,0,0,0.628646 -24300,7009:113,-93,1,0,0,0.628357 -24301,7009:112,-92,1,0,0,0.62771 -24302,7009:111,-91,1,0,0,0.627157 -24303,7009:110,-90,1,0,0,0.627421 -24304,7008:219,-89,1,0,0,0.628765 -24305,7008:218,-88,1,0,0,0.630802 -24306,7008:217,-87,1,0,0,0.633669 -24307,7008:216,-86,1,0,0,0.633764 -24308,7008:215,-85,1,0,0,0.636621 -24309,7008:114,-84,1,0,0,0.636336 -24310,7008:113,-83,1,0,0,0.632451 -24311,7008:112,-82,1,0,0,0.633263 -24312,7008:111,-81,1,0,0,0.633693 -24313,7008:110,-80,1,0,0,0.633239 -24314,7007:219,-79,1,0,0,0.629724 -24315,7007:218,-78,1,0,0,0.630802 -24316,7005:112,-52,1,0,0,0.619293 -24317,7005:111,-51,1,0,0,0.625956 -24318,7005:110,-50,1,0,0,0.626893 -24319,7004:219,-49,1,0,0,0.631376 -24320,7004:218,-48,1,0,0,0.630611 -24321,7004:217,-47,1,0,0,0.630443 -24322,7004:216,-46,1,0,0,0.633573 -24323,7004:215,-45,1,0,0,0.636002 -24324,7004:114,-44,1,0,0,0.635479 -24325,7004:113,-43,1,0,0,0.632571 -24326,7004:112,-42,1,0,0,0.630922 -24327,7004:111,-41,1,0,0,0.632045 -24328,7004:110,-40,1,0,0,0.632356 -24329,7003:219,-39,1,0,0,0.63269 -24330,7003:218,-38,1,0,0,0.632499 -24331,7003:217,-37,1,0,0,0.631639 -24332,7003:216,-36,1,0,0,0.63128 -24333,7003:215,-35,1,0,0,0.630347 -24334,7003:114,-34,1,0,0,0.630323 -24335,7003:113,-33,1,0,0,0.629365 -24336,7003:112,-32,1,0,0,0.628958 -24337,7003:111,-31,1,0,0,0.629221 -24338,7003:110,-30,1,0,0,0.629557 -24339,7002:219,-29,1,0,0,0.630227 -24340,7002:218,-28,1,0,0,0.630969 -24341,7002:217,-27,1,0,0,0.632212 -24342,7002:216,-26,1,0,0,0.633072 -24343,7002:215,-25,1,0,0,0.633693 -24344,7002:114,-24,1,0,0,0.634884 -24345,7002:113,-23,1,0,0,0.635907 -24346,7002:112,-22,1,0,0,0.637381 -24347,7002:111,-21,1,0,0,0.638497 -24348,7002:110,-20,1,0,0,0.64006 -24349,7001:219,-19,1,0,0,0.642164 -24350,7001:218,-18,1,0,0,0.644992 -24351,7001:217,-17,1,0,0,0.646191 -24352,7001:216,-16,1,0,0,0.647341 -24353,7001:215,-15,1,0,0,0.648091 -24354,7001:114,-14,1,0,0,0.648185 -24355,7001:113,-13,1,0,0,0.649519 -24356,7001:112,-12,1,0,0,0.650992 -24357,7001:111,-11,1,0,0,0.655019 -24358,7001:110,-10,1,0,0,0.659901 -24359,7000:216,-6,1,0,0,0.661053 -24360,7000:215,-5,1,0,0,0.663305 -24361,7000:114,-4,1,0,0,0.665619 -24362,7000:113,-3,1,0,0,0.667993 -24363,7000:111,-1,1,0,0,0.664978 -24364,1000:111,0,1,0,0,0.673733 -24365,1000:111,1,1,0,0,0.673913 -24366,1000:112,2,1,0,0,0.673236 -24367,1000:113,3,1,0,0,0.67468 -24368,1000:114,4,1,0,0,0.676234 -24369,1000:215,5,1,0,0,0.674342 -24370,1004:219,49,1,0,0,0.631567 -24371,1005:110,50,1,0,0,0.639586 -24372,1005:111,51,1,0,0,0.63987 -24373,1005:112,52,1,0,0,0.63814 -24374,1005:113,53,1,0,0,0.638994 -24375,1005:114,54,1,0,0,0.643603 -24376,1005:215,55,1,0,0,0.648537 -24377,1005:216,56,1,0,0,0.654345 -24378,1005:217,57,1,0,0,0.656248 -24379,1005:218,58,1,0,0,0.656781 -24380,1005:219,59,1,0,0,0.654415 -24381,1006:110,60,1,0,0,0.656897 -24382,1006:111,61,1,0,0,0.654787 -24383,1006:112,62,1,0,0,0.652368 -24384,1006:113,63,1,0,0,0.651924 -24385,1006:114,64,1,0,0,0.65402 -24386,1006:215,65,1,0,0,0.656318 -24387,1006:216,66,1,0,0,0.656897 -24388,1006:217,67,1,0,0,0.659209 -24389,1006:218,68,1,0,0,0.661675 -24390,1006:219,69,1,0,0,0.662318 -24391,1007:110,70,1,0,0,0.662502 -24392,1007:111,71,1,0,0,0.662617 -24393,1007:112,72,1,0,0,0.661882 -24394,1007:114,74,1,0,0,0.657198 -24395,1007:215,75,1,0,0,0.65481 -24396,1007:216,76,1,0,0,0.653578 -24397,1007:217,77,1,0,0,0.65395 -24398,1007:218,78,1,0,0,0.654369 -24399,1007:219,79,1,0,0,0.654508 -24400,1008:110,80,1,0,0,0.652414 -24401,1008:111,81,1,0,0,0.649332 -24402,1008:112,82,1,0,0,0.652181 -24403,1008:113,83,1,0,0,0.658077 -24404,1008:114,84,1,0,0,0.660386 -24405,1008:215,85,1,0,0,0.660339 -24406,1008:216,86,1,0,0,0.659301 -24407,1008:217,87,1,0,0,0.656642 -24408,1008:218,88,1,0,0,0.655669 -24409,1008:219,89,1,0,0,0.655924 -24410,1009:110,90,1,0,0,0.654764 -24411,1009:111,91,1,0,0,0.654276 -24412,1009:112,92,1,0,0,0.65611 -24413,1009:113,93,1,0,0,0.657106 -24414,1009:114,94,1,0,0,0.659024 -24415,1009:215,95,1,0,0,0.66404 -24416,1009:219,99,1,0,0,0.662571 -24417,1010:110,100,1,0,0,0.658608 -24418,1010:114,104,1,0,0,0.638093 -24419,1010:215,105,1,0,0,0.629964 -24420,1010:216,106,1,0,0,0.629005 -24421,1010:217,107,1,0,0,0.62807 -24422,1010:218,108,1,0,0,0.633835 -24423,1010:219,109,1,0,0,0.643674 -24424,1011:110,110,1,0,0,0.646473 -24425,1011:111,111,1,0,0,0.653741 -24426,1011:112,112,1,0,0,0.658493 -24427,1011:113,113,1,0,0,0.662456 -24428,1011:114,114,1,0,0,0.66683 -24429,1011:215,115,1,0,0,0.669586 -24430,1012:110,120,1,0,0,0.662594 -24431,1012:111,121,1,0,0,0.649215 -24432,1012:112,122,1,0,0,0.65409 -24433,1012:113,123,1,0,0,0.658146 -24434,1012:114,124,1,0,0,0.654833 -24435,1012:215,125,1,0,0,0.645439 -24436,1012:216,126,1,0,0,0.644592 -24437,1012:217,127,1,0,0,0.655135 -24438,1012:218,128,1,0,0,0.663374 -24439,1012:219,129,1,0,0,0.665161 -24440,1013:110,130,1,0,0,0.666282 -24441,1013:111,131,1,0,0,0.666738 -24442,1013:112,132,1,0,0,0.664612 -24443,1013:113,133,1,0,0,0.6628 -24444,1013:114,134,1,0,0,0.664544 -24445,1013:215,135,1,0,0,0.668768 -24446,1013:216,136,1,0,0,0.672308 -24447,1013:217,137,1,0,0,0.671153 -24448,1013:218,138,1,0,0,0.667606 -24449,1013:219,139,1,0,0,0.66797 -24450,1014:110,140,1,0,0,0.669086 -24451,1014:111,141,1,0,0,0.66929 -24452,1014:112,142,1,0,0,0.670018 -24453,1014:113,143,1,0,0,0.671108 -24454,1014:114,144,1,0,0,0.672399 -24455,1014:215,145,1,0,0,0.673755 -24456,1014:216,146,1,0,0,0.674161 -24457,1014:217,147,1,0,0,0.673778 -24458,1014:218,148,1,0,0,0.673484 -24459,1014:219,149,1,0,0,0.673349 -24460,1015:110,150,1,0,0,0.674026 -24461,1015:111,151,1,0,0,0.67441 -24462,1015:112,152,1,0,0,0.673529 -24463,1015:113,153,1,0,0,0.672399 -24464,1015:114,154,1,0,0,0.66995 -24465,1015:215,155,1,0,0,0.668722 -24466,1015:216,156,1,0,0,0.669313 -24467,1015:217,157,1,0,0,0.671039 -24468,1015:218,158,1,0,0,0.671493 -24469,1015:219,159,1,0,0,0.670881 -24470,1016:110,160,1,0,0,0.670132 -24471,1016:111,161,1,0,0,0.669609 -24472,1016:112,162,1,0,0,0.669518 -24473,1016:113,163,1,0,0,0.669586 -24474,1016:114,164,1,0,0,0.669268 -24475,1016:215,165,1,0,0,0.668381 -24476,1016:216,166,1,0,0,0.668586 -24477,1016:217,167,1,0,0,0.669381 -24478,1016:218,168,1,0,0,0.670336 -24479,1016:219,169,1,0,0,0.67079 -24480,1017:110,170,1,0,0,0.670086 -24481,1017:111,171,1,0,0,0.671085 -24482,1017:112,172,1,0,0,0.672806 -24483,1017:113,173,1,0,0,0.672421 -24484,1017:114,174,1,0,0,0.670858 -24485,1017:215,175,1,0,0,0.669199 -24486,1017:216,176,1,0,0,0.669836 -24487,1017:217,177,1,0,0,0.668586 -24488,1017:218,178,1,0,0,0.667742 -24489,1017:219,179,1,0,0,0.667697 -24490,1018:110,180,1,0,0,0.667172 -24491,7018:120,-180,2,0,0,0.66149 -24492,7017:229,-179,2,0,0,0.661789 -24493,7017:228,-178,2,0,0,0.660777 -24926,1006:134,64,3,0,0,0.64438 -24494,7017:227,-177,2,0,0,0.658401 -24495,7017:226,-176,2,0,0,0.655947 -24496,7017:225,-175,2,0,0,0.654601 -24497,7017:124,-174,2,0,0,0.653927 -24498,7017:123,-173,2,0,0,0.65395 -24499,7017:122,-172,2,0,0,0.654392 -24500,7017:121,-171,2,0,0,0.654345 -24501,7017:120,-170,2,0,0,0.654043 -24502,7016:229,-169,2,0,0,0.653112 -24503,7016:228,-168,2,0,0,0.652857 -24504,7016:227,-167,2,0,0,0.651738 -24505,7016:226,-166,2,0,0,0.651505 -24506,7016:225,-165,2,0,0,0.651855 -24507,7016:124,-164,2,0,0,0.652647 -24508,7016:123,-163,2,0,0,0.652904 -24509,7016:122,-162,2,0,0,0.652717 -24510,7016:121,-161,2,0,0,0.652647 -24511,7016:120,-160,2,0,0,0.65281 -24512,7015:229,-159,2,0,0,0.653415 -24513,7015:228,-158,2,0,0,0.653531 -24514,7015:227,-157,2,0,0,0.652997 -24515,7015:226,-156,2,0,0,0.652251 -24516,7015:225,-155,2,0,0,0.651762 -24517,7015:124,-154,2,0,0,0.651668 -24518,7015:123,-153,2,0,0,0.651855 -24519,7015:122,-152,2,0,0,0.652018 -24520,7015:121,-151,2,0,0,0.651855 -24521,7015:120,-150,2,0,0,0.651248 -24522,7014:229,-149,2,0,0,0.650338 -24523,7014:228,-148,2,0,0,0.649777 -24524,7014:227,-147,2,0,0,0.649613 -24525,7014:226,-146,2,0,0,0.649753 -24526,7014:225,-145,2,0,0,0.649823 -24527,7014:124,-144,2,0,0,0.649473 -24528,7014:123,-143,2,0,0,0.649028 -24529,7014:122,-142,2,0,0,0.648817 -24530,7014:121,-141,2,0,0,0.648724 -24531,7014:120,-140,2,0,0,0.648396 -24532,7013:229,-139,2,0,0,0.648208 -24533,7013:228,-138,2,0,0,0.647505 -24534,7013:227,-137,2,0,0,0.646684 -24535,7013:226,-136,2,0,0,0.646215 -24536,7013:225,-135,2,0,0,0.645627 -24537,7013:124,-134,2,0,0,0.64471 -24538,7013:123,-133,2,0,0,0.643556 -24539,7013:122,-132,2,0,0,0.643037 -24540,7013:121,-131,2,0,0,0.643485 -24541,7013:120,-130,2,0,0,0.643626 -24542,7012:229,-129,2,0,0,0.644192 -24543,7012:228,-128,2,0,0,0.644145 -24544,7012:227,-127,2,0,0,0.642377 -24545,7012:226,-126,2,0,0,0.641172 -24546,7012:225,-125,2,0,0,0.642188 -24547,7012:124,-124,2,0,0,0.642211 -24548,7012:123,-123,2,0,0,0.641101 -24549,7012:122,-122,2,0,0,0.639349 -24550,7012:121,-121,2,0,0,0.637998 -24551,7012:120,-120,2,0,0,0.638378 -24552,7011:229,-119,2,0,0,0.639563 -24553,7011:228,-118,2,0,0,0.640178 -24554,7011:227,-117,2,0,0,0.641479 -24555,7011:226,-116,2,0,0,0.641998 -24556,7011:225,-115,2,0,0,0.641408 -24557,7011:124,-114,2,0,0,0.641337 -24558,7011:123,-113,2,0,0,0.641361 -24559,7011:122,-112,2,0,0,0.64129 -24560,7011:121,-111,2,0,0,0.640439 -24561,7011:120,-110,2,0,0,0.638947 -24562,7010:229,-109,2,0,0,0.637167 -24563,7010:228,-108,2,0,0,0.635217 -24564,7010:227,-107,2,0,0,0.63312 -24565,7010:226,-106,2,0,0,0.631519 -24566,7010:225,-105,2,0,0,0.630036 -24567,7010:124,-104,2,0,0,0.629317 -24568,7010:123,-103,2,0,0,0.628718 -24569,7010:122,-102,2,0,0,0.628598 -24570,7010:121,-101,2,0,0,0.628526 -24571,7010:120,-100,2,0,0,0.629077 -24572,7009:229,-99,2,0,0,0.629604 -24573,7009:228,-98,2,0,0,0.629653 -24574,7009:227,-97,2,0,0,0.629269 -24575,7009:226,-96,2,0,0,0.628981 -24576,7009:225,-95,2,0,0,0.628838 -24577,7009:124,-94,2,0,0,0.629413 -24578,7009:123,-93,2,0,0,0.630706 -24579,7009:122,-92,2,0,0,0.631782 -24580,7009:121,-91,2,0,0,0.631902 -24581,7009:120,-90,2,0,0,0.632188 -24582,7008:229,-89,2,0,0,0.633072 -24583,7008:228,-88,2,0,0,0.634622 -24584,7008:227,-87,2,0,0,0.638615 -24585,7008:226,-86,2,0,0,0.643909 -24586,7008:225,-85,2,0,0,0.648373 -24587,7008:124,-84,2,0,0,0.651178 -24588,7008:123,-83,2,0,0,0.652414 -24589,7008:122,-82,2,0,0,0.652041 -24590,7008:121,-81,2,0,0,0.652274 -24591,7008:120,-80,2,0,0,0.649215 -24592,7007:229,-79,2,0,0,0.644969 -24593,7007:228,-78,2,0,0,0.647412 -24594,7005:227,-57,2,0,0,0.611169 -24595,7005:226,-56,2,0,0,0.600447 -24596,7005:225,-55,2,0,0,0.600596 -24597,7005:124,-54,2,0,0,0.60468 -24598,7005:123,-53,2,0,0,0.619898 -24599,7005:122,-52,2,0,0,0.626268 -24600,7005:121,-51,2,0,0,0.629365 -24601,7005:120,-50,2,0,0,0.63006 -24602,7004:229,-49,2,0,0,0.628357 -24603,7004:228,-48,2,0,0,0.627253 -24604,7004:227,-47,2,0,0,0.628045 -24605,7004:226,-46,2,0,0,0.629508 -24606,7004:225,-45,2,0,0,0.632379 -24607,7004:124,-44,2,0,0,0.632308 -24608,7004:123,-43,2,0,0,0.627037 -24609,7004:122,-42,2,0,0,0.625185 -24610,7004:121,-41,2,0,0,0.626244 -24611,7004:120,-40,2,0,0,0.628573 -24612,7003:229,-39,2,0,0,0.629557 -24613,7003:228,-38,2,0,0,0.628262 -24614,7003:227,-37,2,0,0,0.62468 -24615,7003:226,-36,2,0,0,0.624197 -24616,7003:225,-35,2,0,0,0.625474 -24617,7003:124,-34,2,0,0,0.626148 -24618,7003:123,-33,2,0,0,0.624944 -24619,7003:122,-32,2,0,0,0.624197 -24620,7003:121,-31,2,0,0,0.624149 -24621,7003:120,-30,2,0,0,0.624583 -24622,7002:229,-29,2,0,0,0.624391 -24623,7002:228,-28,2,0,0,0.625546 -24624,7002:227,-27,2,0,0,0.62843 -24625,7002:226,-26,2,0,0,0.62994 -24626,7002:225,-25,2,0,0,0.630514 -24627,7002:124,-24,2,0,0,0.631567 -24628,7002:123,-23,2,0,0,0.633621 -24629,7002:122,-22,2,0,0,0.635812 -24630,7002:121,-21,2,0,0,0.638069 -24631,7002:120,-20,2,0,0,0.640912 -24632,7001:229,-19,2,0,0,0.64478 -24633,7001:228,-18,2,0,0,0.647927 -24634,7001:227,-17,2,0,0,0.651924 -24635,7001:226,-16,2,0,0,0.655158 -24636,7001:225,-15,2,0,0,0.656132 -24637,7001:124,-14,2,0,0,0.657499 -24638,7001:123,-13,2,0,0,0.65817 -24639,7001:122,-12,2,0,0,0.657013 -24640,1004:229,49,2,0,0,0.626268 -24641,1005:120,50,2,0,0,0.631687 -24642,1005:121,51,2,0,0,0.636098 -24643,1005:122,52,2,0,0,0.640107 -24644,1005:123,53,2,0,0,0.643179 -24645,1005:124,54,2,0,0,0.64565 -24646,1005:225,55,2,0,0,0.647224 -24647,1005:226,56,2,0,0,0.649519 -24648,1005:227,57,2,0,0,0.650945 -24649,1005:228,58,2,0,0,0.653299 -24650,1005:229,59,2,0,0,0.653322 -24651,1006:120,60,2,0,0,0.655483 -24652,1006:121,61,2,0,0,0.650548 -24653,1006:122,62,2,0,0,0.645416 -24654,1006:123,63,2,0,0,0.646731 -24655,1006:124,64,2,0,0,0.649706 -24656,1006:225,65,2,0,0,0.652088 -24657,1006:226,66,2,0,0,0.654764 -24658,1006:227,67,2,0,0,0.655228 -24659,1006:228,68,2,0,0,0.655576 -24660,1006:229,69,2,0,0,0.657499 -24661,1007:120,70,2,0,0,0.659532 -24662,1007:121,71,2,0,0,0.660132 -24663,1007:122,72,2,0,0,0.659532 -24664,1007:124,74,2,0,0,0.655808 -24665,1007:225,75,2,0,0,0.648162 -24666,1007:226,76,2,0,0,0.646614 -24667,1007:227,77,2,0,0,0.645815 -24668,1007:228,78,2,0,0,0.64431 -24669,1007:229,79,2,0,0,0.642684 -24670,1008:120,80,2,0,0,0.644404 -24671,1008:123,83,2,0,0,0.642612 -24672,1008:124,84,2,0,0,0.65253 -24673,1008:225,85,2,0,0,0.652437 -24674,1008:226,86,2,0,0,0.651131 -24675,1008:227,87,2,0,0,0.650104 -24676,1008:228,88,2,0,0,0.647857 -24677,1008:229,89,2,0,0,0.645839 -24678,1009:120,90,2,0,0,0.643792 -24679,1009:121,91,2,0,0,0.645815 -24680,1009:122,92,2,0,0,0.649379 -24681,1009:123,93,2,0,0,0.651272 -24682,1009:124,94,2,0,0,0.647294 -24683,1009:225,95,2,0,0,0.6487 -24684,1009:226,96,2,0,0,0.648654 -24685,1009:227,97,2,0,0,0.648396 -24686,1009:228,98,2,0,0,0.651575 -24687,1009:229,99,2,0,0,0.650688 -24688,1010:120,100,2,0,0,0.648467 -24689,1010:122,102,2,0,0,0.634645 -24690,1010:123,103,2,0,0,0.638283 -24691,1010:124,104,2,0,0,0.625835 -24692,1010:225,105,2,0,0,0.623354 -24693,1010:226,106,2,0,0,0.619462 -24694,1010:227,107,2,0,0,0.615166 -24695,1010:228,108,2,0,0,0.616697 -24696,1010:229,109,2,0,0,0.635527 -24697,1011:120,110,2,0,0,0.642848 -24698,1011:121,111,2,0,0,0.647669 -24699,1011:122,112,2,0,0,0.649402 -24700,1011:123,113,2,0,0,0.651575 -24701,1011:124,114,2,0,0,0.653345 -24702,1011:225,115,2,0,0,0.654531 -24703,1011:226,116,2,0,0,0.656156 -24704,1011:228,118,2,0,0,0.656202 -24705,1011:229,119,2,0,0,0.652857 -24706,1012:120,120,2,0,0,0.652694 -24707,1012:121,121,2,0,0,0.646261 -24708,1012:122,122,2,0,0,0.64299 -24709,1012:123,123,2,0,0,0.642542 -24710,1012:124,124,2,0,0,0.631519 -24711,1012:226,126,2,0,0,0.648724 -24712,1012:227,127,2,0,0,0.649075 -24713,1012:228,128,2,0,0,0.660063 -24714,1012:229,129,2,0,0,0.662456 -24715,1013:120,130,2,0,0,0.662732 -24716,1013:121,131,2,0,0,0.661007 -24717,1013:122,132,2,0,0,0.66149 -24718,1013:123,133,2,0,0,0.663099 -24719,1013:124,134,2,0,0,0.664887 -24720,1013:225,135,2,0,0,0.665711 -24721,1013:226,136,2,0,0,0.666716 -24722,1013:227,137,2,0,0,0.668312 -24723,1013:228,138,2,0,0,0.667948 -24724,1013:229,139,2,0,0,0.661237 -24725,1014:120,140,2,0,0,0.660201 -24726,1014:121,141,2,0,0,0.662226 -24727,1014:122,142,2,0,0,0.663191 -24728,1014:123,143,2,0,0,0.663948 -24729,1014:124,144,2,0,0,0.664544 -24730,1014:225,145,2,0,0,0.664589 -24731,1014:226,146,2,0,0,0.665711 -24732,1014:227,147,2,0,0,0.666465 -24733,1014:228,148,2,0,0,0.666853 -24734,1014:229,149,2,0,0,0.667081 -24735,1015:120,150,2,0,0,0.668085 -24736,1015:121,151,2,0,0,0.668859 -24737,1015:122,152,2,0,0,0.667833 -24738,1015:123,153,2,0,0,0.667172 -24739,1015:124,154,2,0,0,0.66683 -24740,1015:225,155,2,0,0,0.666807 -24741,1015:226,156,2,0,0,0.667149 -24742,1015:227,157,2,0,0,0.667401 -24743,1015:228,158,2,0,0,0.667332 -24744,1015:229,159,2,0,0,0.662456 -24745,1016:120,160,2,0,0,0.665482 -24746,1016:121,161,2,0,0,0.667035 -24747,1016:122,162,2,0,0,0.666305 -24748,1016:123,163,2,0,0,0.664978 -24749,1016:124,164,2,0,0,0.66381 -24750,1016:225,165,2,0,0,0.662915 -24751,1016:226,166,2,0,0,0.662823 -24752,1016:227,167,2,0,0,0.663833 -24753,1016:228,168,2,0,0,0.664704 -24754,1016:229,169,2,0,0,0.664406 -24755,1017:120,170,2,0,0,0.662111 -24756,1017:121,171,2,0,0,0.660639 -24757,1017:122,172,2,0,0,0.662456 -24758,1017:123,173,2,0,0,0.665344 -24759,1017:124,174,2,0,0,0.669041 -24760,1017:225,175,2,0,0,0.669359 -24761,1017:226,176,2,0,0,0.667993 -24762,1017:227,177,2,0,0,0.666533 -24763,1017:228,178,2,0,0,0.66365 -24764,1017:229,179,2,0,0,0.661468 -24765,1018:120,180,2,0,0,0.66149 -24766,7018:130,-180,3,0,0,0.648841 -24767,7017:239,-179,3,0,0,0.651482 -24768,7017:238,-178,3,0,0,0.650291 -24769,7017:237,-177,3,0,0,0.648068 -24770,7017:236,-176,3,0,0,0.646872 -24771,7017:235,-175,3,0,0,0.645157 -24772,7017:134,-174,3,0,0,0.642802 -24773,7017:133,-173,3,0,0,0.642211 -24774,7017:132,-172,3,0,0,0.642495 -24775,7017:131,-171,3,0,0,0.644404 -24776,7017:130,-170,3,0,0,0.643131 -24777,7016:239,-169,3,0,0,0.641054 -24778,7016:238,-168,3,0,0,0.638022 -24779,7016:237,-167,3,0,0,0.637547 -24780,7016:236,-166,3,0,0,0.639444 -24781,7016:235,-165,3,0,0,0.640604 -24782,7016:134,-164,3,0,0,0.640935 -24783,7016:133,-163,3,0,0,0.641267 -24784,7016:132,-162,3,0,0,0.642305 -24785,7016:131,-161,3,0,0,0.641928 -24786,7016:130,-160,3,0,0,0.640297 -24787,7015:239,-159,3,0,0,0.639421 -24788,7015:238,-158,3,0,0,0.639421 -24789,7015:237,-157,3,0,0,0.639468 -24790,7015:236,-156,3,0,0,0.639373 -24791,7015:235,-155,3,0,0,0.639255 -24792,7015:134,-154,3,0,0,0.64006 -24793,7015:133,-153,3,0,0,0.640982 -24794,7015:132,-152,3,0,0,0.639752 -24795,7015:131,-151,3,0,0,0.635098 -24796,7015:130,-150,3,0,0,0.631973 -24797,7014:239,-149,3,0,0,0.633931 -24798,7014:238,-148,3,0,0,0.635027 -24799,7014:237,-147,3,0,0,0.635574 -24800,7014:236,-146,3,0,0,0.636692 -24801,7014:235,-145,3,0,0,0.636621 -24802,7014:134,-144,3,0,0,0.635027 -24803,7014:133,-143,3,0,0,0.633716 -24804,7014:132,-142,3,0,0,0.632236 -24805,7014:131,-141,3,0,0,0.631471 -24806,7014:130,-140,3,0,0,0.633859 -24807,7013:239,-139,3,0,0,0.637143 -24808,7013:238,-138,3,0,0,0.638686 -24809,7013:237,-137,3,0,0,0.638378 -24810,7013:236,-136,3,0,0,0.638188 -24811,7013:235,-135,3,0,0,0.637404 -24812,7013:134,-134,3,0,0,0.635574 -24813,7013:133,-133,3,0,0,0.633716 -24814,7013:132,-132,3,0,0,0.632785 -24815,7013:131,-131,3,0,0,0.63226 -24816,7013:130,-130,3,0,0,0.634431 -24817,7012:239,-129,3,0,0,0.636811 -24818,7012:238,-128,3,0,0,0.637618 -24819,7012:237,-127,3,0,0,0.637262 -24820,7012:236,-126,3,0,0,0.637025 -24821,7012:235,-125,3,0,0,0.638093 -24822,7012:134,-124,3,0,0,0.639349 -24823,7012:133,-123,3,0,0,0.639942 -24824,7012:132,-122,3,0,0,0.640131 -24825,7012:131,-121,3,0,0,0.639729 -24826,7012:130,-120,3,0,0,0.639847 -24827,7011:239,-119,3,0,0,0.640935 -24828,7011:238,-118,3,0,0,0.641952 -24829,7011:237,-117,3,0,0,0.64155 -24830,7011:236,-116,3,0,0,0.640391 -24831,7011:235,-115,3,0,0,0.63961 -24832,7011:134,-114,3,0,0,0.639468 -24833,7011:133,-113,3,0,0,0.639492 -24834,7011:132,-112,3,0,0,0.637975 -24835,7011:131,-111,3,0,0,0.634979 -24836,7011:130,-110,3,0,0,0.633263 -24837,7010:239,-109,3,0,0,0.631806 -24838,7010:238,-108,3,0,0,0.629533 -24839,7010:237,-107,3,0,0,0.628382 -24840,7010:236,-106,3,0,0,0.628094 -24841,7010:235,-105,3,0,0,0.628526 -24842,7010:134,-104,3,0,0,0.628118 -24843,7010:133,-103,3,0,0,0.626316 -24844,7010:132,-102,3,0,0,0.623233 -24845,7010:131,-101,3,0,0,0.617814 -24846,7010:130,-100,3,0,0,0.614485 -24847,7009:239,-99,3,0,0,0.615993 -24848,7009:238,-98,3,0,0,0.618129 -24849,7009:237,-97,3,0,0,0.619946 -24850,7009:236,-96,3,0,0,0.620865 -24851,7009:235,-95,3,0,0,0.621808 -24852,7009:134,-94,3,0,0,0.624101 -24853,7009:133,-93,3,0,0,0.627806 -24854,7009:132,-92,3,0,0,0.628141 -24855,7009:131,-91,3,0,0,0.626148 -24856,7009:130,-90,3,0,0,0.622702 -24857,7008:239,-89,3,0,0,0.628598 -24858,7008:238,-88,3,0,0,0.636383 -24859,7008:237,-87,3,0,0,0.641125 -24860,7008:236,-86,3,0,0,0.651924 -24861,7008:235,-85,3,0,0,0.658794 -24862,7008:134,-84,3,0,0,0.660708 -24863,7008:133,-83,3,0,0,0.656434 -24864,7008:130,-80,3,0,0,0.657684 -24865,7007:239,-79,3,0,0,0.65253 -24866,7005:239,-59,3,0,0,0.624559 -24867,7005:238,-58,3,0,0,0.619487 -24868,7005:237,-57,3,0,0,0.626725 -24869,7005:236,-56,3,0,0,0.627421 -24870,7005:235,-55,3,0,0,0.626989 -24871,7005:134,-54,3,0,0,0.630825 -24872,7005:133,-53,3,0,0,0.631662 -24873,7005:132,-52,3,0,0,0.63073 -24874,7005:131,-51,3,0,0,0.629628 -24875,7005:130,-50,3,0,0,0.628382 -24876,7004:239,-49,3,0,0,0.630323 -24877,7004:238,-48,3,0,0,0.628742 -24878,7004:237,-47,3,0,0,0.628382 -24879,7004:236,-46,3,0,0,0.627541 -24880,7004:235,-45,3,0,0,0.627109 -24881,7004:134,-44,3,0,0,0.626436 -24882,7004:133,-43,3,0,0,0.625931 -24883,7004:132,-42,3,0,0,0.623908 -24884,7004:131,-41,3,0,0,0.622799 -24885,7004:130,-40,3,0,0,0.623523 -24886,7003:239,-39,3,0,0,0.623787 -24887,7003:238,-38,3,0,0,0.620213 -24888,7003:237,-37,3,0,0,0.616721 -24889,7003:236,-36,3,0,0,0.617693 -24890,7003:235,-35,3,0,0,0.619293 -24891,7003:134,-34,3,0,0,0.616649 -24892,7003:133,-33,3,0,0,0.617061 -24893,7003:132,-32,3,0,0,0.617231 -24894,7003:131,-31,3,0,0,0.619244 -24895,7003:130,-30,3,0,0,0.619777 -24896,7002:239,-29,3,0,0,0.620237 -24897,7002:238,-28,3,0,0,0.62014 -24898,7002:237,-27,3,0,0,0.621518 -24899,7002:236,-26,3,0,0,0.624921 -24900,7002:235,-25,3,0,0,0.624631 -24901,7002:134,-24,3,0,0,0.625811 -24902,7002:133,-23,3,0,0,0.629677 -24903,7002:132,-22,3,0,0,0.633263 -24904,7002:131,-21,3,0,0,0.635859 -24905,7002:130,-20,3,0,0,0.639208 -24906,7001:239,-19,3,0,0,0.645063 -24907,7001:238,-18,3,0,0,0.650268 -24908,7001:237,-17,3,0,0,0.653322 -24909,7001:236,-16,3,0,0,0.657592 -24910,7001:235,-15,3,0,0,0.657175 -24911,7001:134,-14,3,0,0,0.665482 -24912,1005:130,50,3,0,0,0.623595 -24913,1005:131,51,3,0,0,0.625402 -24914,1005:132,52,3,0,0,0.623667 -24915,1005:133,53,3,0,0,0.625763 -24916,1005:134,54,3,0,0,0.634408 -24917,1005:235,55,3,0,0,0.637666 -24918,1005:236,56,3,0,0,0.633597 -24919,1005:237,57,3,0,0,0.635883 -24920,1005:238,58,3,0,0,0.643013 -24921,1005:239,59,3,0,0,0.647716 -24922,1006:130,60,3,0,0,0.648935 -24923,1006:131,61,3,0,0,0.64471 -24924,1006:132,62,3,0,0,0.642754 -24925,1006:133,63,3,0,0,0.64058 -24927,1006:235,65,3,0,0,0.647669 -24928,1006:236,66,3,0,0,0.64966 -24929,1006:237,67,3,0,0,0.650594 -24930,1006:238,68,3,0,0,0.652065 -24931,1006:239,69,3,0,0,0.65295 -24932,1007:130,70,3,0,0,0.655367 -24933,1007:131,71,3,0,0,0.657128 -24934,1007:132,72,3,0,0,0.653438 -24935,1007:134,74,3,0,0,0.647857 -24936,1007:235,75,3,0,0,0.645627 -24937,1007:236,76,3,0,0,0.645768 -24938,1007:237,77,3,0,0,0.645462 -24939,1007:239,79,3,0,0,0.648256 -24940,1008:130,80,3,0,0,0.644498 -24941,1008:132,82,3,0,0,0.627662 -24942,1008:133,83,3,0,0,0.639208 -24943,1008:134,84,3,0,0,0.644357 -24944,1008:235,85,3,0,0,0.644216 -24945,1008:236,86,3,0,0,0.643532 -24946,1008:237,87,3,0,0,0.645039 -24947,1008:238,88,3,0,0,0.645204 -24948,1008:239,89,3,0,0,0.643556 -24949,1009:130,90,3,0,0,0.64372 -24950,1009:131,91,3,0,0,0.644027 -24951,1009:132,92,3,0,0,0.646332 -24952,1009:133,93,3,0,0,0.647412 -24953,1009:134,94,3,0,0,0.645416 -24954,1009:235,95,3,0,0,0.64645 -24955,1009:236,96,3,0,0,0.646989 -24956,1009:237,97,3,0,0,0.649519 -24957,1009:238,98,3,0,0,0.650455 -24958,1010:131,101,3,0,0,0.638402 -24959,1010:132,102,3,0,0,0.638402 -24960,1010:133,103,3,0,0,0.635717 -24961,1010:134,104,3,0,0,0.628861 -24962,1010:235,105,3,0,0,0.615823 -24963,1010:236,106,3,0,0,0.612828 -24964,1010:237,107,3,0,0,0.611072 -24965,1010:238,108,3,0,0,0.610974 -24966,1010:239,109,3,0,0,0.624174 -24967,1011:130,110,3,0,0,0.637476 -24968,1011:131,111,3,0,0,0.645134 -24969,1011:132,112,3,0,0,0.64605 -24970,1011:133,113,3,0,0,0.647435 -24971,1011:134,114,3,0,0,0.648302 -24972,1011:235,115,3,0,0,0.649964 -24973,1011:236,116,3,0,0,0.652228 -24974,1011:237,117,3,0,0,0.65288 -24975,1011:238,118,3,0,0,0.653438 -24976,1011:239,119,3,0,0,0.650758 -24977,1012:130,120,3,0,0,0.647505 -24978,1012:131,121,3,0,0,0.644616 -24979,1012:132,122,3,0,0,0.646332 -24980,1012:133,123,3,0,0,0.629293 -24981,1012:237,127,3,0,0,0.647083 -24982,1012:238,128,3,0,0,0.655391 -24983,1012:239,129,3,0,0,0.658239 -24984,1013:130,130,3,0,0,0.658978 -24985,1013:131,131,3,0,0,0.658794 -24986,1013:132,132,3,0,0,0.658655 -24987,1013:133,133,3,0,0,0.658563 -24988,1013:134,134,3,0,0,0.658447 -24989,1013:235,135,3,0,0,0.659555 -24990,1013:236,136,3,0,0,0.6628 -24991,1013:237,137,3,0,0,0.663833 -24992,1013:238,138,3,0,0,0.664658 -24993,1013:239,139,3,0,0,0.659624 -24994,1014:130,140,3,0,0,0.657846 -24995,1014:131,141,3,0,0,0.658516 -24996,1014:132,142,3,0,0,0.658493 -24997,1014:133,143,3,0,0,0.658401 -24998,1014:134,144,3,0,0,0.658771 -24999,1014:235,145,3,0,0,0.658955 -25000,1014:236,146,3,0,0,0.66149 -25001,1014:237,147,3,0,0,0.663305 -25002,1014:238,148,3,0,0,0.664246 -25003,1014:239,149,3,0,0,0.663191 -25004,1015:130,150,3,0,0,0.665184 -25005,1015:131,151,3,0,0,0.665734 -25006,1015:132,152,3,0,0,0.666008 -25007,1015:133,153,3,0,0,0.666442 -25008,1015:134,154,3,0,0,0.666031 -25009,1015:235,155,3,0,0,0.664795 -25010,1015:236,156,3,0,0,0.663948 -25011,1015:237,157,3,0,0,0.662984 -25012,1015:238,158,3,0,0,0.660915 -25013,1015:239,159,3,0,0,0.661076 -25014,1016:130,160,3,0,0,0.662157 -25015,1016:131,161,3,0,0,0.661214 -25016,1016:132,162,3,0,0,0.659186 -25017,1016:133,163,3,0,0,0.657869 -25018,1016:134,164,3,0,0,0.657499 -25019,1016:235,165,3,0,0,0.657291 -25020,1016:236,166,3,0,0,0.657892 -25021,1016:237,167,3,0,0,0.65847 -25022,1016:238,168,3,0,0,0.658724 -25023,1016:239,169,3,0,0,0.651528 -25024,1017:130,170,3,0,0,0.651389 -25025,1017:131,171,3,0,0,0.655599 -25026,1017:132,172,3,0,0,0.644451 -25027,1017:133,173,3,0,0,0.647834 -25028,1017:134,174,3,0,0,0.653531 -25029,1017:235,175,3,0,0,0.657268 -25030,1017:236,176,3,0,0,0.657106 -25031,1017:237,177,3,0,0,0.652088 -25032,1017:238,178,3,0,0,0.643603 -25033,1017:239,179,3,0,0,0.644545 -25034,1018:130,180,3,0,0,0.648841 -25035,7018:140,-180,4,0,0,0.638307 -25036,7017:249,-179,4,0,0,0.637452 -25037,7017:248,-178,4,0,0,0.636835 -25038,7017:247,-177,4,0,0,0.637238 -25039,7017:246,-176,4,0,0,0.635812 -25040,7017:245,-175,4,0,0,0.634384 -25041,7017:144,-174,4,0,0,0.63436 -25042,7017:143,-173,4,0,0,0.634717 -25043,7017:142,-172,4,0,0,0.63486 -25044,7017:141,-171,4,0,0,0.63374 -25045,7017:140,-170,4,0,0,0.630682 -25046,7016:249,-169,4,0,0,0.62759 -25047,7016:248,-168,4,0,0,0.62622 -25048,7016:247,-167,4,0,0,0.626412 -25049,7016:246,-166,4,0,0,0.628166 -25050,7016:245,-165,4,0,0,0.629197 -25051,7016:144,-164,4,0,0,0.63018 -25052,7016:143,-163,4,0,0,0.629844 -25053,7016:142,-162,4,0,0,0.629269 -25054,7016:141,-161,4,0,0,0.628357 -25055,7016:140,-160,4,0,0,0.626028 -25056,7015:249,-159,4,0,0,0.624222 -25057,7015:248,-158,4,0,0,0.623643 -25058,7015:247,-157,4,0,0,0.622243 -25059,7015:246,-156,4,0,0,0.623547 -25060,7015:245,-155,4,0,0,0.626725 -25061,7015:144,-154,4,0,0,0.627349 -25062,7015:143,-153,4,0,0,0.624391 -25063,7015:142,-152,4,0,0,0.620285 -25064,7015:141,-151,4,0,0,0.61842 -25065,7015:140,-150,4,0,0,0.618832 -25066,7014:249,-149,4,0,0,0.619244 -25067,7014:248,-148,4,0,0,0.618541 -25068,7014:247,-147,4,0,0,0.61859 -25069,7014:246,-146,4,0,0,0.619462 -25070,7014:245,-145,4,0,0,0.618978 -25071,7014:144,-144,4,0,0,0.614485 -25072,7014:143,-143,4,0,0,0.607721 -25073,7014:142,-142,4,0,0,0.607451 -25074,7014:141,-141,4,0,0,0.611096 -25075,7014:140,-140,4,0,0,0.617231 -25076,7013:249,-139,4,0,0,0.620575 -25077,7013:248,-138,4,0,0,0.621978 -25078,7013:247,-137,4,0,0,0.620696 -25079,7013:246,-136,4,0,0,0.618905 -25080,7013:245,-135,4,0,0,0.618686 -25081,7013:144,-134,4,0,0,0.618735 -25082,7013:143,-133,4,0,0,0.618274 -25083,7013:142,-132,4,0,0,0.61728 -25084,7013:141,-131,4,0,0,0.619777 -25085,7013:140,-130,4,0,0,0.624174 -25086,7012:249,-129,4,0,0,0.624848 -25087,7012:248,-128,4,0,0,0.623426 -25088,7012:247,-127,4,0,0,0.622823 -25089,7012:246,-126,4,0,0,0.624463 -25090,7012:245,-125,4,0,0,0.627637 -25091,7012:144,-124,4,0,0,0.63128 -25092,7012:143,-123,4,0,0,0.633573 -25093,7012:142,-122,4,0,0,0.634431 -25094,7012:141,-121,4,0,0,0.635217 -25095,7012:140,-120,4,0,0,0.636526 -25096,7011:249,-119,4,0,0,0.637452 -25097,7011:248,-118,4,0,0,0.637096 -25098,7011:247,-117,4,0,0,0.635883 -25099,7011:246,-116,4,0,0,0.634622 -25100,7011:245,-115,4,0,0,0.633645 -25101,7011:144,-114,4,0,0,0.633239 -25102,7011:143,-113,4,0,0,0.63343 -25103,7011:142,-112,4,0,0,0.632977 -25104,7011:141,-111,4,0,0,0.631495 -25105,7011:140,-110,4,0,0,0.630849 -25106,7010:249,-109,4,0,0,0.630802 -25107,7010:248,-108,4,0,0,0.631352 -25108,7010:247,-107,4,0,0,0.634455 -25109,7010:246,-106,4,0,0,0.636906 -25110,7010:245,-105,4,0,0,0.633811 -25111,7010:144,-104,4,0,0,0.6267 -25112,7010:143,-103,4,0,0,0.622388 -25113,7010:142,-102,4,0,0,0.619656 -25114,7010:141,-101,4,0,0,0.616867 -25115,7010:140,-100,4,0,0,0.613437 -25116,7009:249,-99,4,0,0,0.613706 -25117,7009:248,-98,4,0,0,0.614996 -25118,7009:247,-97,4,0,0,0.617328 -25119,7009:246,-96,4,0,0,0.619825 -25120,7009:245,-95,4,0,0,0.622388 -25121,7009:144,-94,4,0,0,0.625209 -25122,7009:143,-93,4,0,0,0.622847 -25123,7009:142,-92,4,0,0,0.622074 -25124,7009:141,-91,4,0,0,0.618177 -25125,7009:140,-90,4,0,0,0.612731 -25126,7008:249,-89,4,0,0,0.620648 -25127,7008:248,-88,4,0,0,0.629533 -25128,7008:247,-87,4,0,0,0.638733 -25129,7008:246,-86,4,0,0,0.657453 -25130,7008:245,-85,4,0,0,0.656573 -25131,7008:142,-82,4,0,0,0.639492 -25132,7008:141,-81,4,0,0,0.635859 -25133,7008:140,-80,4,0,0,0.641172 -25134,7007:249,-79,4,0,0,0.642919 -25135,7007:248,-78,4,0,0,0.644216 -25136,7007:247,-77,4,0,0,0.653206 -25137,7007:246,-76,4,0,0,0.648326 -25138,7006:141,-61,4,0,0,0.623088 -25139,7006:140,-60,4,0,0,0.623812 -25140,7005:249,-59,4,0,0,0.627782 -25141,7005:248,-58,4,0,0,0.630634 -25142,7005:247,-57,4,0,0,0.631185 -25143,7005:246,-56,4,0,0,0.630849 -25144,7005:245,-55,4,0,0,0.631352 -25145,7005:144,-54,4,0,0,0.629533 -25146,7005:143,-53,4,0,0,0.629748 -25147,7005:142,-52,4,0,0,0.629149 -25148,7005:141,-51,4,0,0,0.630323 -25149,7005:140,-50,4,0,0,0.629964 -25150,7004:249,-49,4,0,0,0.629245 -25151,7004:248,-48,4,0,0,0.627517 -25152,7004:247,-47,4,0,0,0.626244 -25153,7004:246,-46,4,0,0,0.625113 -25154,7004:245,-45,4,0,0,0.623643 -25155,7004:144,-44,4,0,0,0.623233 -25156,7004:143,-43,4,0,0,0.623137 -25157,7004:142,-42,4,0,0,0.620769 -25158,7004:141,-41,4,0,0,0.618663 -25159,7004:140,-40,4,0,0,0.61745 -25160,7003:249,-39,4,0,0,0.61626 -25161,7003:248,-38,4,0,0,0.612902 -25162,7003:247,-37,4,0,0,0.607893 -25163,7003:246,-36,4,0,0,0.609606 -25164,7003:245,-35,4,0,0,0.608774 -25165,7003:144,-34,4,0,0,0.60657 -25166,7003:143,-33,4,0,0,0.609972 -25167,7003:142,-32,4,0,0,0.610241 -25168,7003:141,-31,4,0,0,0.610387 -25169,7003:140,-30,4,0,0,0.608652 -25170,7002:249,-29,4,0,0,0.611706 -25171,7002:248,-28,4,0,0,0.614217 -25172,7002:247,-27,4,0,0,0.61485 -25173,7002:246,-26,4,0,0,0.614947 -25174,7002:245,-25,4,0,0,0.616746 -25175,7002:144,-24,4,0,0,0.618541 -25176,7002:143,-23,4,0,0,0.622895 -25177,7002:142,-22,4,0,0,0.631304 -25178,7002:141,-21,4,0,0,0.634884 -25179,7002:140,-20,4,0,0,0.637571 -25180,7001:249,-19,4,0,0,0.64214 -25181,7001:248,-18,4,0,0,0.647083 -25182,7001:247,-17,4,0,0,0.648935 -25183,7001:246,-16,4,0,0,0.652181 -25184,7001:245,-15,4,0,0,0.655831 -25185,7001:144,-14,4,0,0,0.675199 -25186,1005:141,51,4,0,0,0.619317 -25187,1005:142,52,4,0,0,0.618177 -25188,1005:143,53,4,0,0,0.617134 -25189,1005:144,54,4,0,0,0.615726 -25190,1005:245,55,4,0,0,0.622847 -25191,1005:246,56,4,0,0,0.627829 -25192,1005:247,57,4,0,0,0.625787 -25193,1005:248,58,4,0,0,0.629581 -25194,1005:249,59,4,0,0,0.637381 -25195,1006:140,60,4,0,0,0.641337 -25196,1006:141,61,4,0,0,0.638235 -25197,1006:142,62,4,0,0,0.637238 -25198,1006:143,63,4,0,0,0.638116 -25199,1006:144,64,4,0,0,0.638805 -25200,1006:245,65,4,0,0,0.642259 -25201,1006:246,66,4,0,0,0.643179 -25202,1006:247,67,4,0,0,0.64405 -25203,1006:248,68,4,0,0,0.645933 -25204,1006:249,69,4,0,0,0.648817 -25205,1007:140,70,4,0,0,0.651411 -25206,1007:141,71,4,0,0,0.652717 -25207,1007:142,72,4,0,0,0.652461 -25208,1007:144,74,4,0,0,0.649005 -25209,1007:245,75,4,0,0,0.648091 -25210,1007:246,76,4,0,0,0.649075 -25211,1008:140,80,4,0,0,0.629581 -25212,1008:141,81,4,0,0,0.62807 -25213,1008:142,82,4,0,0,0.629101 -25214,1008:143,83,4,0,0,0.638188 -25215,1008:144,84,4,0,0,0.640415 -25216,1008:245,85,4,0,0,0.642046 -25217,1008:246,86,4,0,0,0.642636 -25218,1008:247,87,4,0,0,0.643438 -25219,1008:248,88,4,0,0,0.643344 -25220,1008:249,89,4,0,0,0.643414 -25221,1009:140,90,4,0,0,0.643768 -25222,1009:141,91,4,0,0,0.643697 -25223,1009:142,92,4,0,0,0.642802 -25224,1009:143,93,4,0,0,0.643084 -25225,1009:144,94,4,0,0,0.643461 -25226,1009:245,95,4,0,0,0.644922 -25227,1009:246,96,4,0,0,0.646191 -25228,1009:247,97,4,0,0,0.647013 -25229,1009:248,98,4,0,0,0.649473 -25230,1010:140,100,4,0,0,0.640841 -25231,1010:141,101,4,0,0,0.641597 -25232,1010:142,102,4,0,0,0.64077 -25233,1010:143,103,4,0,0,0.63852 -25234,1010:144,104,4,0,0,0.630443 -25235,1010:245,105,4,0,0,0.623643 -25236,1010:247,107,4,0,0,0.60728 -25237,1010:248,108,4,0,0,0.601458 -25238,1010:249,109,4,0,0,0.612658 -25239,1011:140,110,4,0,0,0.631089 -25240,1011:141,111,4,0,0,0.639468 -25241,1011:142,112,4,0,0,0.64077 -25242,1011:143,113,4,0,0,0.639752 -25243,1011:144,114,4,0,0,0.643532 -25244,1011:245,115,4,0,0,0.648162 -25245,1011:246,116,4,0,0,0.64863 -25246,1011:247,117,4,0,0,0.649613 -25247,1011:248,118,4,0,0,0.648091 -25248,1012:140,120,4,0,0,0.644286 -25249,1012:141,121,4,0,0,0.642424 -25250,1012:142,122,4,0,0,0.64051 -25251,1012:144,124,4,0,0,0.639089 -25252,1012:245,125,4,0,0,0.629029 -25253,1012:246,126,4,0,0,0.635979 -25254,1012:247,127,4,0,0,0.644922 -25255,1012:248,128,4,0,0,0.651131 -25256,1012:249,129,4,0,0,0.653531 -25257,1013:140,130,4,0,0,0.654299 -25258,1013:141,131,4,0,0,0.654694 -25259,1013:142,132,4,0,0,0.655019 -25260,1013:143,133,4,0,0,0.656016 -25261,1013:144,134,4,0,0,0.657962 -25262,1013:245,135,4,0,0,0.659994 -25263,1013:246,136,4,0,0,0.659786 -25264,1013:247,137,4,0,0,0.659394 -25265,1013:248,138,4,0,0,0.659786 -25266,1013:249,139,4,0,0,0.656897 -25267,1014:140,140,4,0,0,0.654856 -25268,1014:141,141,4,0,0,0.655901 -25269,1014:142,142,4,0,0,0.655437 -25270,1014:143,143,4,0,0,0.654903 -25271,1014:144,144,4,0,0,0.655808 -25272,1014:245,145,4,0,0,0.65736 -25273,1014:246,146,4,0,0,0.658978 -25274,1014:247,147,4,0,0,0.660408 -25275,1014:248,148,4,0,0,0.66103 -25276,1014:249,149,4,0,0,0.66126 -25277,1015:140,150,4,0,0,0.659947 -25278,1015:141,151,4,0,0,0.662732 -25279,1015:142,152,4,0,0,0.662892 -25280,1015:143,153,4,0,0,0.66172 -25281,1015:144,154,4,0,0,0.660132 -25282,1015:245,155,4,0,0,0.65914 -25283,1015:246,156,4,0,0,0.658077 -25284,1015:247,157,4,0,0,0.6578 -25285,1015:248,158,4,0,0,0.657407 -25286,1015:249,159,4,0,0,0.65655 -25287,1016:140,160,4,0,0,0.655413 -25288,1016:141,161,4,0,0,0.654043 -25289,1016:142,162,4,0,0,0.65281 -25290,1016:143,163,4,0,0,0.652088 -25291,1016:144,164,4,0,0,0.651855 -25292,1016:245,165,4,0,0,0.651738 -25293,1016:246,166,4,0,0,0.649426 -25294,1016:247,167,4,0,0,0.649706 -25295,1016:248,168,4,0,0,0.645698 -25296,1016:249,169,4,0,0,0.645556 -25297,1017:140,170,4,0,0,0.643603 -25298,1017:141,171,4,0,0,0.642848 -25299,1017:142,172,4,0,0,0.643202 -25300,1017:143,173,4,0,0,0.643932 -25301,1017:144,174,4,0,0,0.64431 -25302,1017:245,175,4,0,0,0.642919 -25303,1017:246,176,4,0,0,0.63871 -25304,1017:247,177,4,0,0,0.635717 -25305,1017:248,178,4,0,0,0.635812 -25306,1017:249,179,4,0,0,0.637381 -25307,1018:140,180,4,0,0,0.638307 -25308,7018:350,-180,5,0,0,0.630418 -25309,7017:459,-179,5,0,0,0.629988 -25310,7017:458,-178,5,0,0,0.628861 -25311,7017:457,-177,5,0,0,0.62819 -25312,7017:456,-176,5,0,0,0.627614 -25313,7017:455,-175,5,0,0,0.626869 -25314,7017:354,-174,5,0,0,0.626629 -25315,7017:353,-173,5,0,0,0.626461 -25316,7017:352,-172,5,0,0,0.625498 -25317,7017:351,-171,5,0,0,0.623571 -25318,7017:350,-170,5,0,0,0.622026 -25319,7016:459,-169,5,0,0,0.621204 -25320,7016:458,-168,5,0,0,0.621639 -25321,7016:457,-167,5,0,0,0.622702 -25322,7016:456,-166,5,0,0,0.622847 -25323,7016:455,-165,5,0,0,0.621881 -25324,7016:354,-164,5,0,0,0.619971 -25325,7016:353,-163,5,0,0,0.617984 -25326,7016:352,-162,5,0,0,0.616187 -25327,7016:351,-161,5,0,0,0.615677 -25328,7016:350,-160,5,0,0,0.61502 -25329,7015:459,-159,5,0,0,0.614485 -25330,7015:458,-158,5,0,0,0.61317 -25331,7015:457,-157,5,0,0,0.612389 -25332,7015:456,-156,5,0,0,0.613023 -25333,7015:455,-155,5,0,0,0.615093 -25334,7015:354,-154,5,0,0,0.615895 -25335,7015:353,-153,5,0,0,0.615579 -25336,7015:352,-152,5,0,0,0.615069 -25337,7015:351,-151,5,0,0,0.613535 -25338,7015:350,-150,5,0,0,0.611292 -25339,7014:459,-149,5,0,0,0.60892 -25340,7014:458,-148,5,0,0,0.607501 -25341,7014:457,-147,5,0,0,0.606912 -25342,7014:456,-146,5,0,0,0.60522 -25343,7014:455,-145,5,0,0,0.603525 -25344,7014:354,-144,5,0,0,0.602885 -25345,7014:353,-143,5,0,0,0.602665 -25346,7014:352,-142,5,0,0,0.603328 -25347,7014:351,-141,5,0,0,0.603942 -25348,7014:350,-140,5,0,0,0.601015 -25349,7013:459,-139,5,0,0,0.598474 -25350,7013:458,-138,5,0,0,0.598104 -25351,7013:457,-137,5,0,0,0.601384 -25352,7013:456,-136,5,0,0,0.604311 -25353,7013:455,-135,5,0,0,0.606888 -25354,7013:354,-134,5,0,0,0.60826 -25355,7013:353,-133,5,0,0,0.605367 -25356,7013:352,-132,5,0,0,0.60323 -25357,7013:351,-131,5,0,0,0.607207 -25358,7013:350,-130,5,0,0,0.611194 -25359,7012:459,-129,5,0,0,0.612706 -25360,7012:458,-128,5,0,0,0.612877 -25361,7012:457,-127,5,0,0,0.613803 -25362,7012:456,-126,5,0,0,0.617134 -25363,7012:455,-125,5,0,0,0.620865 -25364,7012:354,-124,5,0,0,0.623523 -25365,7012:353,-123,5,0,0,0.625306 -25366,7012:352,-122,5,0,0,0.626941 -25367,7012:351,-121,5,0,0,0.629005 -25368,7012:350,-120,5,0,0,0.629317 -25369,7011:459,-119,5,0,0,0.628981 -25370,7011:458,-118,5,0,0,0.628022 -25371,7011:457,-117,5,0,0,0.627302 -25372,7011:456,-116,5,0,0,0.627061 -25373,7011:455,-115,5,0,0,0.626989 -25374,7011:354,-114,5,0,0,0.628237 -25375,7011:353,-113,5,0,0,0.629149 -25376,7011:352,-112,5,0,0,0.629964 -25377,7011:351,-111,5,0,0,0.630825 -25378,7011:350,-110,5,0,0,0.631878 -25379,7010:459,-109,5,0,0,0.632379 -25380,7010:458,-108,5,0,0,0.635455 -25381,7010:457,-107,5,0,0,0.639184 -25382,7010:456,-106,5,0,0,0.642825 -25383,7010:455,-105,5,0,0,0.6424 -25384,7010:354,-104,5,0,0,0.637404 -25385,7010:353,-103,5,0,0,0.630275 -25386,7010:352,-102,5,0,0,0.626532 -25387,7010:351,-101,5,0,0,0.625859 -25388,7010:350,-100,5,0,0,0.622219 -25389,7009:459,-99,5,0,0,0.613925 -25390,7009:458,-98,5,0,0,0.612926 -25391,7009:457,-97,5,0,0,0.61711 -25392,7009:456,-96,5,0,0,0.616211 -25393,7009:455,-95,5,0,0,0.626124 -25394,7009:354,-94,5,0,0,0.628622 -25395,7009:353,-93,5,0,0,0.62759 -25396,7009:352,-92,5,0,0,0.62994 -25397,7009:351,-91,5,0,0,0.626268 -25398,7009:350,-90,5,0,0,0.626052 -25399,7008:459,-89,5,0,0,0.6267 -25400,7008:458,-88,5,0,0,0.630418 -25401,7008:457,-87,5,0,0,0.641195 -25402,7008:456,-86,5,0,0,0.645956 -25403,7008:353,-83,5,0,0,0.63517 -25404,7008:352,-82,5,0,0,0.629197 -25405,7008:351,-81,5,0,0,0.629677 -25406,7008:350,-80,5,0,0,0.62994 -25407,7007:459,-79,5,0,0,0.63455 -25408,7007:458,-78,5,0,0,0.641054 -25409,7007:457,-77,5,0,0,0.646708 -25410,7007:456,-76,5,0,0,0.64605 -25411,7007:455,-75,5,0,0,0.629005 -25412,7007:351,-71,5,0,0,0.632451 -25413,7006:458,-68,5,0,0,0.599141 -25414,7006:457,-67,5,0,0,0.607819 -25415,7006:456,-66,5,0,0,0.610925 -25416,7006:455,-65,5,0,0,0.615726 -25417,7006:354,-64,5,0,0,0.603451 -25418,7006:353,-63,5,0,0,0.602885 -25419,7006:352,-62,5,0,0,0.618566 -25420,7006:351,-61,5,0,0,0.625281 -25421,7006:350,-60,5,0,0,0.629844 -25422,7005:459,-59,5,0,0,0.631256 -25423,7005:458,-58,5,0,0,0.631065 -25424,7005:457,-57,5,0,0,0.629916 -25425,7005:456,-56,5,0,0,0.630443 -25426,7005:455,-55,5,0,0,0.63006 -25427,7005:354,-54,5,0,0,0.629988 -25428,7005:353,-53,5,0,0,0.627998 -25429,7005:352,-52,5,0,0,0.628094 -25430,7005:351,-51,5,0,0,0.62843 -25431,7005:350,-50,5,0,0,0.627061 -25432,7004:459,-49,5,0,0,0.624993 -25433,7004:458,-48,5,0,0,0.619631 -25434,7004:457,-47,5,0,0,0.616503 -25435,7004:456,-46,5,0,0,0.61502 -25436,7004:455,-45,5,0,0,0.614095 -25437,7004:354,-44,5,0,0,0.614606 -25438,7004:353,-43,5,0,0,0.613778 -25439,7004:352,-42,5,0,0,0.608897 -25440,7004:351,-41,5,0,0,0.605736 -25441,7004:350,-40,5,0,0,0.606888 -25442,7003:459,-39,5,0,0,0.606766 -25443,7003:458,-38,5,0,0,0.603402 -25444,7003:457,-37,5,0,0,0.600349 -25445,7003:456,-36,5,0,0,0.598104 -25446,7003:455,-35,5,0,0,0.597857 -25447,7003:354,-34,5,0,0,0.598104 -25448,7003:353,-33,5,0,0,0.600966 -25449,7003:352,-32,5,0,0,0.599955 -25450,7003:351,-31,5,0,0,0.597857 -25451,7003:350,-30,5,0,0,0.599066 -25452,7002:459,-29,5,0,0,0.602197 -25453,7002:458,-28,5,0,0,0.604361 -25454,7002:457,-27,5,0,0,0.605343 -25455,7002:456,-26,5,0,0,0.607329 -25456,7002:455,-25,5,0,0,0.607819 -25457,7002:354,-24,5,0,0,0.611121 -25458,7002:353,-23,5,0,0,0.617353 -25459,7002:352,-22,5,0,0,0.619293 -25460,7002:351,-21,5,0,0,0.621156 -25461,7002:350,-20,5,0,0,0.63128 -25462,7001:459,-19,5,0,0,0.631782 -25463,7001:458,-18,5,0,0,0.635503 -25464,7001:457,-17,5,0,0,0.645134 -25465,7001:456,-16,5,0,0,0.657175 -25466,1004:354,44,5,0,0,0.598104 -25467,1004:455,45,5,0,0,0.59998 -25468,1004:456,46,5,0,0,0.59719 -25469,1004:457,47,5,0,0,0.589729 -25470,1005:351,51,5,0,0,0.599757 -25471,1005:352,52,5,0,0,0.614461 -25472,1005:353,53,5,0,0,0.614071 -25473,1005:354,54,5,0,0,0.614169 -25474,1005:455,55,5,0,0,0.614387 -25475,1005:456,56,5,0,0,0.615774 -25476,1005:457,57,5,0,0,0.616455 -25477,1005:458,58,5,0,0,0.616867 -25478,1005:459,59,5,0,0,0.623981 -25479,1006:350,60,5,0,0,0.629533 -25480,1006:351,61,5,0,0,0.629988 -25481,1006:352,62,5,0,0,0.63331 -25482,1006:353,63,5,0,0,0.636574 -25483,1006:354,64,5,0,0,0.636977 -25484,1006:455,65,5,0,0,0.638852 -25485,1006:456,66,5,0,0,0.639326 -25486,1006:457,67,5,0,0,0.639776 -25487,1006:458,68,5,0,0,0.641148 -25488,1006:459,69,5,0,0,0.645204 -25489,1007:350,70,5,0,0,0.648677 -25490,1007:351,71,5,0,0,0.650804 -25491,1007:352,72,5,0,0,0.651924 -25492,1007:354,74,5,0,0,0.652321 -25493,1007:455,75,5,0,0,0.651738 -25494,1007:456,76,5,0,0,0.652158 -25495,1008:351,81,5,0,0,0.616308 -25496,1008:352,82,5,0,0,0.628694 -25497,1008:353,83,5,0,0,0.635432 -25498,1008:354,84,5,0,0,0.633883 -25499,1008:455,85,5,0,0,0.639752 -25500,1008:456,86,5,0,0,0.641952 -25501,1008:457,87,5,0,0,0.642754 -25502,1008:458,88,5,0,0,0.64372 -25503,1008:459,89,5,0,0,0.644851 -25504,1009:350,90,5,0,0,0.644639 -25505,1009:351,91,5,0,0,0.644404 -25506,1009:352,92,5,0,0,0.644568 -25507,1009:353,93,5,0,0,0.64565 -25508,1009:354,94,5,0,0,0.643697 -25509,1009:455,95,5,0,0,0.643273 -25510,1009:456,96,5,0,0,0.64398 -25511,1009:457,97,5,0,0,0.644522 -25512,1009:458,98,5,0,0,0.646121 -25513,1010:350,100,5,0,0,0.637238 -25514,1010:351,101,5,0,0,0.63788 -25515,1010:352,102,5,0,0,0.641432 -25516,1010:353,103,5,0,0,0.636502 -25517,1010:459,109,5,0,0,0.598005 -25518,1011:350,110,5,0,0,0.615531 -25519,1011:351,111,5,0,0,0.631591 -25520,1011:352,112,5,0,0,0.634979 -25521,1011:353,113,5,0,0,0.626893 -25522,1011:354,114,5,0,0,0.632666 -25523,1011:455,115,5,0,0,0.642848 -25524,1011:456,116,5,0,0,0.646309 -25525,1011:457,117,5,0,0,0.644216 -25526,1011:458,118,5,0,0,0.647786 -25527,1011:459,119,5,0,0,0.644545 -25528,1012:350,120,5,0,0,0.641243 -25529,1012:351,121,5,0,0,0.639776 -25530,1012:352,122,5,0,0,0.637333 -25531,1012:354,124,5,0,0,0.639586 -25532,1012:456,126,5,0,0,0.633287 -25533,1012:457,127,5,0,0,0.642117 -25534,1012:458,128,5,0,0,0.647036 -25535,1012:459,129,5,0,0,0.6498 -25536,1013:350,130,5,0,0,0.651762 -25537,1013:351,131,5,0,0,0.653206 -25538,1013:352,132,5,0,0,0.654113 -25539,1013:353,133,5,0,0,0.654949 -25540,1013:354,134,5,0,0,0.656526 -25541,1013:455,135,5,0,0,0.657892 -25542,1013:456,136,5,0,0,0.655158 -25543,1013:457,137,5,0,0,0.65409 -25544,1013:458,138,5,0,0,0.653462 -25545,1013:459,139,5,0,0,0.652368 -25546,1014:350,140,5,0,0,0.652274 -25547,1014:351,141,5,0,0,0.652274 -25548,1014:352,142,5,0,0,0.652111 -25549,1014:353,143,5,0,0,0.651902 -25550,1014:354,144,5,0,0,0.651878 -25551,1014:455,145,5,0,0,0.652437 -25552,1014:456,146,5,0,0,0.653438 -25553,1014:457,147,5,0,0,0.654415 -25554,1014:458,148,5,0,0,0.654996 -25555,1014:459,149,5,0,0,0.655274 -25556,1015:350,150,5,0,0,0.655669 -25557,1015:351,151,5,0,0,0.655715 -25558,1015:352,152,5,0,0,0.655182 -25559,1015:353,153,5,0,0,0.654206 -25560,1015:354,154,5,0,0,0.653508 -25561,1015:455,155,5,0,0,0.653602 -25562,1015:456,156,5,0,0,0.653648 -25563,1015:457,157,5,0,0,0.652973 -25564,1015:458,158,5,0,0,0.652321 -25565,1015:459,159,5,0,0,0.651085 -25566,1016:350,160,5,0,0,0.649028 -25567,1016:351,161,5,0,0,0.646872 -25568,1016:352,162,5,0,0,0.64372 -25569,1016:353,163,5,0,0,0.643674 -25570,1016:354,164,5,0,0,0.644333 -25571,1016:455,165,5,0,0,0.643061 -25572,1016:456,166,5,0,0,0.640297 -25573,1016:458,168,5,0,0,0.636478 -25574,1016:459,169,5,0,0,0.638212 -25575,1017:351,171,5,0,0,0.63636 -25576,1017:352,172,5,0,0,0.635883 -25577,1017:353,173,5,0,0,0.634479 -25578,1017:354,174,5,0,0,0.632929 -25579,1017:455,175,5,0,0,0.63226 -25580,1017:456,176,5,0,0,0.631997 -25581,1017:457,177,5,0,0,0.630898 -25582,1017:458,178,5,0,0,0.629892 -25583,1017:459,179,5,0,0,0.629964 -25584,1018:350,180,5,0,0,0.630418 -25585,7018:360,-180,6,0,0,0.624077 -25586,7017:469,-179,6,0,0,0.623691 -25587,7017:468,-178,6,0,0,0.623547 -25588,7017:467,-177,6,0,0,0.623787 -25589,7017:466,-176,6,0,0,0.623691 -25590,7017:465,-175,6,0,0,0.622944 -25591,7017:364,-174,6,0,0,0.62176 -25592,7017:363,-173,6,0,0,0.620575 -25593,7017:362,-172,6,0,0,0.619753 -25594,7017:361,-171,6,0,0,0.619026 -25595,7017:360,-170,6,0,0,0.617717 -25596,7016:469,-169,6,0,0,0.617305 -25597,7016:468,-168,6,0,0,0.617134 -25598,7016:467,-167,6,0,0,0.614461 -25599,7016:466,-166,6,0,0,0.611389 -25600,7016:465,-165,6,0,0,0.609826 -25601,7016:364,-164,6,0,0,0.608994 -25602,7016:363,-163,6,0,0,0.609141 -25603,7016:362,-162,6,0,0,0.608652 -25604,7016:361,-161,6,0,0,0.607746 -25605,7016:360,-160,6,0,0,0.607256 -25606,7015:469,-159,6,0,0,0.606668 -25607,7015:468,-158,6,0,0,0.605417 -25608,7015:467,-157,6,0,0,0.604238 -25609,7015:466,-156,6,0,0,0.60495 -25610,7015:465,-155,6,0,0,0.607893 -25611,7015:364,-154,6,0,0,0.61007 -25612,7015:363,-153,6,0,0,0.608481 -25613,7015:362,-152,6,0,0,0.604975 -25614,7015:361,-151,6,0,0,0.603771 -25615,7015:360,-150,6,0,0,0.605319 -25616,7014:469,-149,6,0,0,0.604778 -25617,7014:468,-148,6,0,0,0.602443 -25618,7014:467,-147,6,0,0,0.600374 -25619,7014:466,-146,6,0,0,0.599609 -25620,7014:465,-145,6,0,0,0.597362 -25621,7014:364,-144,6,0,0,0.59484 -25622,7014:363,-143,6,0,0,0.593031 -25623,7014:362,-142,6,0,0,0.593601 -25624,7014:361,-141,6,0,0,0.596225 -25625,7014:360,-140,6,0,0,0.595359 -25626,7013:469,-139,6,0,0,0.590797 -25627,7013:468,-138,6,0,0,0.587714 -25628,7013:467,-137,6,0,0,0.591616 -25629,7013:466,-136,6,0,0,0.593873 -25630,7013:465,-135,6,0,0,0.594765 -25631,7013:364,-134,6,0,0,0.596053 -25632,7013:363,-133,6,0,0,0.598499 -25633,7013:362,-132,6,0,0,0.599881 -25634,7013:361,-131,6,0,0,0.598005 -25635,7013:360,-130,6,0,0,0.597165 -25636,7012:469,-129,6,0,0,0.597956 -25637,7012:468,-128,6,0,0,0.601138 -25638,7012:467,-127,6,0,0,0.607476 -25639,7012:466,-126,6,0,0,0.613194 -25640,7012:465,-125,6,0,0,0.616065 -25641,7012:364,-124,6,0,0,0.61762 -25642,7012:363,-123,6,0,0,0.619341 -25643,7012:362,-122,6,0,0,0.620865 -25644,7012:361,-121,6,0,0,0.622219 -25645,7012:360,-120,6,0,0,0.622678 -25646,7011:469,-119,6,0,0,0.622171 -25647,7011:468,-118,6,0,0,0.621325 -25648,7011:467,-117,6,0,0,0.621446 -25649,7011:466,-116,6,0,0,0.622122 -25650,7011:465,-115,6,0,0,0.623908 -25651,7011:364,-114,6,0,0,0.626725 -25652,7011:363,-113,6,0,0,0.629461 -25653,7011:362,-112,6,0,0,0.631424 -25654,7011:361,-111,6,0,0,0.631902 -25655,7011:360,-110,6,0,0,0.632164 -25656,7010:469,-109,6,0,0,0.632905 -25657,7010:468,-108,6,0,0,0.634336 -25658,7010:467,-107,6,0,0,0.637832 -25659,7010:466,-106,6,0,0,0.641314 -25660,7010:465,-105,6,0,0,0.642259 -25661,7010:364,-104,6,0,0,0.638733 -25662,7010:363,-103,6,0,0,0.634789 -25663,7010:362,-102,6,0,0,0.634336 -25664,7010:361,-101,6,0,0,0.642447 -25665,7010:360,-100,6,0,0,0.643792 -25666,7009:469,-99,6,0,0,0.63674 -25667,7009:468,-98,6,0,0,0.642259 -25668,7009:467,-97,6,0,0,0.622871 -25669,7009:466,-96,6,0,0,0.611219 -25670,7009:465,-95,6,0,0,0.624848 -25671,7009:364,-94,6,0,0,0.642542 -25672,7009:363,-93,6,0,0,0.641125 -25673,7009:362,-92,6,0,0,0.640486 -25674,7009:361,-91,6,0,0,0.639965 -25675,7009:360,-90,6,0,0,0.649496 -25676,7008:469,-89,6,0,0,0.647412 -25677,7008:468,-88,6,0,0,0.643956 -25678,7008:363,-83,6,0,0,0.632785 -25679,7008:362,-82,6,0,0,0.635027 -25680,7008:361,-81,6,0,0,0.63424 -25681,7008:360,-80,6,0,0,0.637167 -25682,7007:469,-79,6,0,0,0.638544 -25683,7007:468,-78,6,0,0,0.637096 -25684,7007:467,-77,6,0,0,0.634789 -25685,7007:466,-76,6,0,0,0.632881 -25686,7007:465,-75,6,0,0,0.630418 -25687,7007:364,-74,6,0,0,0.626268 -25688,7007:363,-73,6,0,0,0.62557 -25689,7007:362,-72,6,0,0,0.61694 -25690,7007:361,-71,6,0,0,0.610999 -25691,7006:469,-69,6,0,0,0.624463 -25692,7006:468,-68,6,0,0,0.62545 -25693,7006:467,-67,6,0,0,0.630587 -25694,7006:466,-66,6,0,0,0.635146 -25695,7006:465,-65,6,0,0,0.634455 -25696,7006:364,-64,6,0,0,0.633048 -25697,7006:363,-63,6,0,0,0.632785 -25698,7006:362,-62,6,0,0,0.633239 -25699,7006:361,-61,6,0,0,0.633955 -25700,7006:360,-60,6,0,0,0.632045 -25701,7005:469,-59,6,0,0,0.631328 -25702,7005:468,-58,6,0,0,0.631424 -25703,7005:467,-57,6,0,0,0.628814 -25704,7005:466,-56,6,0,0,0.627662 -25705,7005:465,-55,6,0,0,0.62771 -25706,7005:364,-54,6,0,0,0.627733 -25707,7005:363,-53,6,0,0,0.627614 -25708,7005:362,-52,6,0,0,0.626268 -25709,7005:361,-51,6,0,0,0.625113 -25710,7005:360,-50,6,0,0,0.623305 -25711,7004:469,-49,6,0,0,0.62118 -25712,7004:468,-48,6,0,0,0.618153 -25713,7004:467,-47,6,0,0,0.613437 -25714,7004:466,-46,6,0,0,0.611096 -25715,7004:465,-45,6,0,0,0.609483 -25716,7004:364,-44,6,0,0,0.608823 -25717,7004:363,-43,6,0,0,0.605784 -25718,7004:362,-42,6,0,0,0.60259 -25719,7004:361,-41,6,0,0,0.600793 -25720,7004:360,-40,6,0,0,0.598721 -25721,7003:469,-39,6,0,0,0.595954 -25722,7003:468,-38,6,0,0,0.592559 -25723,7003:467,-37,6,0,0,0.590797 -25724,7003:466,-36,6,0,0,0.590673 -25725,7003:465,-35,6,0,0,0.590499 -25726,7003:364,-34,6,0,0,0.59035 -25727,7003:363,-33,6,0,0,0.589629 -25728,7003:362,-32,6,0,0,0.589455 -25729,7003:361,-31,6,0,0,0.590574 -25730,7003:360,-30,6,0,0,0.592708 -25731,7002:469,-29,6,0,0,0.594666 -25732,7002:468,-28,6,0,0,0.593848 -25733,7002:467,-27,6,0,0,0.59246 -25734,7002:466,-26,6,0,0,0.594146 -25735,7002:465,-25,6,0,0,0.596077 -25736,7002:364,-24,6,0,0,0.600177 -25737,7002:363,-23,6,0,0,0.599831 -25738,7002:362,-22,6,0,0,0.598079 -25739,7002:361,-21,6,0,0,0.59924 -25740,7002:360,-20,6,0,0,0.609533 -25741,7001:469,-19,6,0,0,0.620334 -25742,7001:468,-18,6,0,0,0.621591 -25743,7001:467,-17,6,0,0,0.627374 -25744,1004:363,43,6,0,0,0.5984 -25745,1004:465,45,6,0,0,0.595334 -25746,1004:466,46,6,0,0,0.591269 -25747,1004:467,47,6,0,0,0.587888 -25748,1004:468,48,6,0,0,0.58612 -25749,1004:469,49,6,0,0,0.584573 -25750,1005:360,50,6,0,0,0.589654 -25751,1005:361,51,6,0,0,0.606055 -25752,1005:362,52,6,0,0,0.609238 -25753,1005:363,53,6,0,0,0.605417 -25754,1005:364,54,6,0,0,0.602492 -25755,1005:465,55,6,0,0,0.601458 -25756,1005:466,56,6,0,0,0.607599 -25757,1005:467,57,6,0,0,0.609263 -25758,1005:468,58,6,0,0,0.609336 -25759,1005:469,59,6,0,0,0.613242 -25760,1006:360,60,6,0,0,0.61609 -25761,1006:361,61,6,0,0,0.619487 -25762,1006:362,62,6,0,0,0.623908 -25763,1006:363,63,6,0,0,0.626436 -25764,1006:364,64,6,0,0,0.628118 -25765,1006:465,65,6,0,0,0.632236 -25766,1006:466,66,6,0,0,0.637381 -25767,1006:467,67,6,0,0,0.640534 -25768,1006:468,68,6,0,0,0.641006 -25769,1006:469,69,6,0,0,0.642636 -25770,1007:360,70,6,0,0,0.646943 -25771,1007:361,71,6,0,0,0.649262 -25772,1007:362,72,6,0,0,0.650478 -25773,1007:364,74,6,0,0,0.654438 -25774,1007:465,75,6,0,0,0.654485 -25775,1008:361,81,6,0,0,0.617717 -25776,1008:362,82,6,0,0,0.62234 -25777,1008:363,83,6,0,0,0.632785 -25778,1008:364,84,6,0,0,0.633454 -25779,1008:465,85,6,0,0,0.635955 -25780,1008:466,86,6,0,0,0.641243 -25781,1008:467,87,6,0,0,0.642778 -25782,1008:468,88,6,0,0,0.643249 -25783,1008:469,89,6,0,0,0.642684 -25784,1009:360,90,6,0,0,0.6424 -25785,1009:361,91,6,0,0,0.641998 -25786,1009:362,92,6,0,0,0.646895 -25787,1009:364,94,6,0,0,0.643862 -25788,1009:465,95,6,0,0,0.643344 -25789,1009:466,96,6,0,0,0.640723 -25790,1009:467,97,6,0,0,0.644098 -25791,1009:468,98,6,0,0,0.643815 -25792,1010:361,101,6,0,0,0.630945 -26226,7007:486,-76,8,0,0,0.64266 -25793,1011:360,110,6,0,0,0.591194 -25794,1011:361,111,6,0,0,0.622606 -25795,1011:362,112,6,0,0,0.621083 -25796,1011:363,113,6,0,0,0.614314 -25797,1011:364,114,6,0,0,0.608162 -25798,1011:465,115,6,0,0,0.634932 -25799,1011:466,116,6,0,0,0.642447 -25800,1011:467,117,6,0,0,0.638757 -25801,1011:468,118,6,0,0,0.635646 -25802,1011:469,119,6,0,0,0.644639 -25803,1012:360,120,6,0,0,0.641668 -25804,1012:361,121,6,0,0,0.637309 -25805,1012:362,122,6,0,0,0.63331 -25806,1012:363,123,6,0,0,0.629533 -25807,1012:364,124,6,0,0,0.616673 -25808,1012:465,125,6,0,0,0.634288 -25809,1012:466,126,6,0,0,0.634717 -25810,1012:467,127,6,0,0,0.638591 -25811,1012:468,128,6,0,0,0.642188 -25812,1012:469,129,6,0,0,0.645368 -25813,1013:360,130,6,0,0,0.648115 -25814,1013:361,131,6,0,0,0.649823 -25815,1013:362,132,6,0,0,0.650385 -25816,1013:363,133,6,0,0,0.650665 -25817,1013:364,134,6,0,0,0.65001 -25818,1013:465,135,6,0,0,0.649987 -25819,1013:466,136,6,0,0,0.650594 -25820,1013:467,137,6,0,0,0.649917 -25821,1013:468,138,6,0,0,0.648771 -25822,1013:469,139,6,0,0,0.64774 -25823,1014:360,140,6,0,0,0.647786 -25824,1014:361,141,6,0,0,0.647716 -25825,1014:362,142,6,0,0,0.64788 -25826,1014:363,143,6,0,0,0.64863 -25827,1014:364,144,6,0,0,0.649309 -25828,1014:465,145,6,0,0,0.649309 -25829,1014:466,146,6,0,0,0.64994 -25830,1014:467,147,6,0,0,0.650291 -25831,1014:468,148,6,0,0,0.650314 -25832,1014:469,149,6,0,0,0.649777 -25833,1015:360,150,6,0,0,0.648982 -25834,1015:361,151,6,0,0,0.648302 -25835,1015:362,152,6,0,0,0.647623 -25836,1015:363,153,6,0,0,0.646966 -25837,1015:364,154,6,0,0,0.646684 -25838,1015:465,155,6,0,0,0.646496 -25839,1015:466,156,6,0,0,0.645862 -25840,1015:467,157,6,0,0,0.645039 -25841,1015:468,158,6,0,0,0.644451 -25842,1015:469,159,6,0,0,0.643202 -25843,1016:360,160,6,0,0,0.641243 -25844,1016:361,161,6,0,0,0.639965 -25845,1016:362,162,6,0,0,0.6389 -25846,1016:363,163,6,0,0,0.637666 -25847,1016:364,164,6,0,0,0.636241 -25848,1016:465,165,6,0,0,0.634479 -25849,1016:466,166,6,0,0,0.633549 -25850,1016:467,167,6,0,0,0.632785 -25851,1016:468,168,6,0,0,0.630658 -25852,1016:469,169,6,0,0,0.628646 -25853,1017:360,170,6,0,0,0.62795 -25854,1017:361,171,6,0,0,0.628094 -25855,1017:362,172,6,0,0,0.629101 -25856,1017:363,173,6,0,0,0.629005 -25857,1017:364,174,6,0,0,0.628622 -25858,1017:465,175,6,0,0,0.627854 -25859,1017:466,176,6,0,0,0.626941 -25860,1017:467,177,6,0,0,0.625402 -25861,1017:468,178,6,0,0,0.62504 -25862,1017:469,179,6,0,0,0.624391 -25863,1018:360,180,6,0,0,0.624077 -25864,7018:370,-180,7,0,0,0.61762 -25865,7017:479,-179,7,0,0,0.615726 -25866,7017:478,-178,7,0,0,0.614631 -25867,7017:477,-177,7,0,0,0.614582 -25868,7017:476,-176,7,0,0,0.615312 -25869,7017:475,-175,7,0,0,0.615531 -25870,7017:374,-174,7,0,0,0.613706 -25871,7017:373,-173,7,0,0,0.611145 -25872,7017:372,-172,7,0,0,0.610803 -25873,7017:371,-171,7,0,0,0.612097 -25874,7017:370,-170,7,0,0,0.612682 -25875,7016:479,-169,7,0,0,0.612389 -25876,7016:478,-168,7,0,0,0.611438 -25877,7016:477,-167,7,0,0,0.610827 -25878,7016:476,-166,7,0,0,0.609728 -25879,7016:475,-165,7,0,0,0.608284 -25880,7016:374,-164,7,0,0,0.607231 -25881,7016:373,-163,7,0,0,0.60701 -25882,7016:372,-162,7,0,0,0.60679 -25883,7016:371,-161,7,0,0,0.60576 -25884,7016:370,-160,7,0,0,0.605662 -25885,7015:479,-159,7,0,0,0.604656 -25886,7015:478,-158,7,0,0,0.602836 -25887,7015:477,-157,7,0,0,0.601015 -25888,7015:476,-156,7,0,0,0.59877 -25889,7015:475,-155,7,0,0,0.597782 -25890,7015:374,-154,7,0,0,0.59766 -25891,7015:373,-153,7,0,0,0.598647 -25892,7015:372,-152,7,0,0,0.599091 -25893,7015:371,-151,7,0,0,0.597362 -25894,7015:370,-150,7,0,0,0.598993 -25895,7014:479,-149,7,0,0,0.601606 -25896,7014:478,-148,7,0,0,0.599042 -25897,7014:477,-147,7,0,0,0.592907 -25898,7014:476,-146,7,0,0,0.595087 -25899,7014:475,-145,7,0,0,0.593353 -25900,7014:374,-144,7,0,0,0.589505 -25901,7014:373,-143,7,0,0,0.588659 -25902,7014:372,-142,7,0,0,0.589629 -25903,7014:371,-141,7,0,0,0.591989 -25904,7014:370,-140,7,0,0,0.593006 -25905,7013:479,-139,7,0,0,0.586717 -25906,7013:478,-138,7,0,0,0.581376 -25907,7013:477,-137,7,0,0,0.584474 -25908,7013:476,-136,7,0,0,0.585147 -25909,7013:475,-135,7,0,0,0.584099 -25910,7013:374,-134,7,0,0,0.583924 -25911,7013:373,-133,7,0,0,0.585147 -25912,7013:372,-132,7,0,0,0.584124 -25913,7013:371,-131,7,0,0,0.583025 -25914,7013:370,-130,7,0,0,0.585347 -25915,7012:479,-129,7,0,0,0.590176 -25916,7012:478,-128,7,0,0,0.595186 -25917,7012:477,-127,7,0,0,0.598153 -25918,7012:476,-126,7,0,0,0.601926 -25919,7012:475,-125,7,0,0,0.604729 -25920,7012:374,-124,7,0,0,0.605588 -25921,7012:373,-123,7,0,0,0.606201 -25922,7012:372,-122,7,0,0,0.606472 -25923,7012:371,-121,7,0,0,0.607256 -25924,7012:370,-120,7,0,0,0.609312 -25925,7011:479,-119,7,0,0,0.612999 -25926,7011:478,-118,7,0,0,0.614582 -25927,7011:477,-117,7,0,0,0.615798 -25928,7011:476,-116,7,0,0,0.618105 -25929,7011:475,-115,7,0,0,0.621108 -25930,7011:374,-114,7,0,0,0.62275 -25931,7011:373,-113,7,0,0,0.622919 -25932,7011:372,-112,7,0,0,0.622967 -25933,7011:371,-111,7,0,0,0.626028 -25934,7011:370,-110,7,0,0,0.632905 -25935,7010:479,-109,7,0,0,0.637618 -25936,7010:478,-108,7,0,0,0.63852 -25937,7010:477,-107,7,0,0,0.63897 -25938,7010:476,-106,7,0,0,0.642447 -25939,7010:475,-105,7,0,0,0.648841 -25940,7010:374,-104,7,0,0,0.649426 -25941,7010:373,-103,7,0,0,0.640391 -25942,7010:372,-102,7,0,0,0.630611 -25943,7010:371,-101,7,0,0,0.632642 -25944,7010:370,-100,7,0,0,0.637998 -25945,7009:479,-99,7,0,0,0.635598 -25946,7009:478,-98,7,0,0,0.643838 -25947,7009:477,-97,7,0,0,0.638497 -25948,7009:476,-96,7,0,0,0.614314 -25949,7009:475,-95,7,0,0,0.638235 -25950,7009:374,-94,7,0,0,0.64987 -25951,7009:373,-93,7,0,0,0.645886 -25952,7009:372,-92,7,0,0,0.656596 -25953,7008:373,-83,7,0,0,0.624776 -25954,7008:372,-82,7,0,0,0.633501 -25955,7008:371,-81,7,0,0,0.639847 -25956,7008:370,-80,7,0,0,0.641857 -25957,7007:479,-79,7,0,0,0.640746 -25958,7007:478,-78,7,0,0,0.638473 -25959,7007:477,-77,7,0,0,0.635527 -25960,7007:476,-76,7,0,0,0.635646 -25961,7007:475,-75,7,0,0,0.636669 -25962,7007:374,-74,7,0,0,0.637975 -25963,7007:373,-73,7,0,0,0.636431 -25964,7007:372,-72,7,0,0,0.634003 -25965,7007:371,-71,7,0,0,0.633239 -25966,7007:370,-70,7,0,0,0.631902 -25967,7006:479,-69,7,0,0,0.630275 -25968,7006:478,-68,7,0,0,0.634288 -25969,7006:477,-67,7,0,0,0.635646 -25970,7006:476,-66,7,0,0,0.638947 -25971,7006:475,-65,7,0,0,0.6389 -25972,7006:374,-64,7,0,0,0.637143 -25973,7006:373,-63,7,0,0,0.635193 -25974,7006:372,-62,7,0,0,0.634145 -25975,7006:371,-61,7,0,0,0.631687 -25976,7006:370,-60,7,0,0,0.630802 -25977,7005:479,-59,7,0,0,0.629581 -25978,7005:478,-58,7,0,0,0.626436 -25979,7005:477,-57,7,0,0,0.62468 -25980,7005:476,-56,7,0,0,0.623305 -25981,7005:475,-55,7,0,0,0.623474 -25982,7005:374,-54,7,0,0,0.623185 -25983,7005:373,-53,7,0,0,0.622509 -25984,7005:372,-52,7,0,0,0.617862 -25985,7005:371,-51,7,0,0,0.614947 -25986,7005:370,-50,7,0,0,0.613097 -25987,7004:479,-49,7,0,0,0.61156 -25988,7004:478,-48,7,0,0,0.608554 -25989,7004:477,-47,7,0,0,0.603771 -25990,7004:476,-46,7,0,0,0.601088 -25991,7004:475,-45,7,0,0,0.60099 -25992,7004:374,-44,7,0,0,0.602246 -25993,7004:373,-43,7,0,0,0.5962 -25994,7004:372,-42,7,0,0,0.596473 -25995,7004:371,-41,7,0,0,0.595285 -25996,7004:370,-40,7,0,0,0.593204 -25997,7003:479,-39,7,0,0,0.591219 -25998,7003:478,-38,7,0,0,0.589952 -25999,7003:477,-37,7,0,0,0.589207 -26000,7003:476,-36,7,0,0,0.585297 -26001,7003:475,-35,7,0,0,0.577445 -26002,7003:374,-34,7,0,0,0.575865 -26003,7003:373,-33,7,0,0,0.57589 -26004,7003:372,-32,7,0,0,0.577144 -26005,7003:371,-31,7,0,0,0.578322 -26006,7003:370,-30,7,0,0,0.580201 -26007,7002:479,-29,7,0,0,0.579349 -26008,7002:478,-28,7,0,0,0.576116 -26009,7002:477,-27,7,0,0,0.577245 -26010,7002:476,-26,7,0,0,0.582401 -26011,7002:475,-25,7,0,0,0.584448 -26012,7002:374,-24,7,0,0,0.587141 -26013,7002:373,-23,7,0,0,0.584174 -26014,7002:372,-22,7,0,0,0.584249 -26015,7002:371,-21,7,0,0,0.588634 -26016,7002:370,-20,7,0,0,0.599091 -26017,7001:479,-19,7,0,0,0.603894 -26018,7001:478,-18,7,0,0,0.605465 -26019,1004:372,42,7,0,0,0.607672 -26020,1004:479,49,7,0,0,0.598203 -26021,1005:370,50,7,0,0,0.600966 -26022,1005:371,51,7,0,0,0.604213 -26023,1005:372,52,7,0,0,0.604361 -26024,1005:373,53,7,0,0,0.603402 -26025,1005:374,54,7,0,0,0.600818 -26026,1005:475,55,7,0,0,0.599881 -26027,1005:476,56,7,0,0,0.600325 -26028,1005:477,57,7,0,0,0.601286 -26029,1005:478,58,7,0,0,0.606153 -26030,1005:479,59,7,0,0,0.604729 -26031,1006:370,60,7,0,0,0.605539 -26032,1006:371,61,7,0,0,0.60728 -26033,1006:372,62,7,0,0,0.611853 -26034,1006:373,63,7,0,0,0.617838 -26035,1006:374,64,7,0,0,0.619172 -26036,1006:475,65,7,0,0,0.624655 -26037,1006:476,66,7,0,0,0.630802 -26038,1006:477,67,7,0,0,0.63405 -26039,1006:478,68,7,0,0,0.636645 -26040,1006:479,69,7,0,0,0.640273 -26041,1007:370,70,7,0,0,0.644686 -26042,1007:371,71,7,0,0,0.64706 -26043,1007:372,72,7,0,0,0.648841 -26044,1007:374,74,7,0,0,0.653415 -26045,1008:371,81,7,0,0,0.615409 -26046,1008:372,82,7,0,0,0.622195 -26047,1008:373,83,7,0,0,0.625715 -26048,1008:374,84,7,0,0,0.629484 -26049,1008:475,85,7,0,0,0.634884 -26050,1008:476,86,7,0,0,0.63987 -26051,1008:477,87,7,0,0,0.640982 -26052,1008:478,88,7,0,0,0.641101 -26053,1008:479,89,7,0,0,0.64398 -26054,1009:370,90,7,0,0,0.645416 -26055,1009:371,91,7,0,0,0.64511 -26056,1009:372,92,7,0,0,0.648115 -26057,1009:373,93,7,0,0,0.646544 -26058,1009:374,94,7,0,0,0.638852 -26059,1009:475,95,7,0,0,0.637642 -26060,1009:476,96,7,0,0,0.638781 -26061,1009:477,97,7,0,0,0.64051 -26062,1009:478,98,7,0,0,0.647412 -26063,1011:370,110,7,0,0,0.590375 -26064,1011:371,111,7,0,0,0.596028 -26065,1011:372,112,7,0,0,0.615871 -26066,1011:373,113,7,0,0,0.609238 -26067,1011:374,114,7,0,0,0.602 -26068,1011:475,115,7,0,0,0.616964 -26069,1011:476,116,7,0,0,0.627349 -26070,1011:477,117,7,0,0,0.622799 -26071,1011:478,118,7,0,0,0.631902 -26072,1011:479,119,7,0,0,0.641337 -26073,1012:370,120,7,0,0,0.633931 -26074,1012:374,124,7,0,0,0.618614 -26075,1012:475,125,7,0,0,0.630443 -26076,1012:476,126,7,0,0,0.631926 -26077,1012:477,127,7,0,0,0.633693 -26078,1012:478,128,7,0,0,0.635955 -26079,1012:479,129,7,0,0,0.638615 -26080,1013:370,130,7,0,0,0.641479 -26081,1013:371,131,7,0,0,0.644098 -26082,1013:372,132,7,0,0,0.646167 -26083,1013:373,133,7,0,0,0.646825 -26084,1013:374,134,7,0,0,0.646003 -26085,1013:475,135,7,0,0,0.645698 -26086,1013:476,136,7,0,0,0.644874 -26087,1013:477,137,7,0,0,0.644004 -26088,1013:478,138,7,0,0,0.644098 -26089,1013:479,139,7,0,0,0.644192 -26090,1014:370,140,7,0,0,0.644474 -26091,1014:371,141,7,0,0,0.644451 -26092,1014:372,142,7,0,0,0.64438 -26093,1014:373,143,7,0,0,0.644733 -26094,1014:374,144,7,0,0,0.645134 -26095,1014:475,145,7,0,0,0.644898 -26096,1014:476,146,7,0,0,0.64518 -26097,1014:477,147,7,0,0,0.645274 -26098,1014:478,148,7,0,0,0.644851 -26099,1014:479,149,7,0,0,0.64431 -26100,1015:370,150,7,0,0,0.64398 -26101,1015:371,151,7,0,0,0.643697 -26102,1015:372,152,7,0,0,0.643179 -26103,1015:373,153,7,0,0,0.642377 -26104,1015:374,154,7,0,0,0.641408 -26105,1015:475,155,7,0,0,0.640439 -26106,1015:476,156,7,0,0,0.639421 -26107,1015:477,157,7,0,0,0.638093 -26108,1015:478,158,7,0,0,0.636811 -26109,1015:479,159,7,0,0,0.635883 -26110,1016:370,160,7,0,0,0.63486 -26111,1016:371,161,7,0,0,0.634169 -26112,1016:372,162,7,0,0,0.633573 -26113,1016:373,163,7,0,0,0.632356 -26114,1016:374,164,7,0,0,0.630491 -26115,1016:475,165,7,0,0,0.628406 -26116,1016:476,166,7,0,0,0.6267 -26117,1016:477,167,7,0,0,0.625811 -27202,7112:226,-126,12,0,0,0.46312 -26118,1016:478,168,7,0,0,0.624752 -26119,1016:479,169,7,0,0,0.623305 -26120,1017:370,170,7,0,0,0.621881 -26121,1017:371,171,7,0,0,0.620552 -26122,1017:372,172,7,0,0,0.620431 -26123,1017:373,173,7,0,0,0.620986 -26124,1017:374,174,7,0,0,0.621446 -26125,1017:475,175,7,0,0,0.621446 -26126,1017:476,176,7,0,0,0.621083 -26127,1017:477,177,7,0,0,0.620406 -26128,1017:478,178,7,0,0,0.619825 -26129,1017:479,179,7,0,0,0.619172 -26130,1018:370,180,7,0,0,0.61762 -26131,7018:380,-180,8,0,0,0.611242 -26132,7017:489,-179,8,0,0,0.609679 -26133,7017:488,-178,8,0,0,0.607158 -26134,7017:487,-177,8,0,0,0.604188 -26135,7017:486,-176,8,0,0,0.603254 -26136,7017:485,-175,8,0,0,0.603771 -26137,7017:384,-174,8,0,0,0.603894 -26138,7017:383,-173,8,0,0,0.604065 -26139,7017:382,-172,8,0,0,0.605319 -26140,7017:381,-171,8,0,0,0.606814 -26141,7017:380,-170,8,0,0,0.605441 -26142,7016:489,-169,8,0,0,0.60195 -26143,7016:488,-168,8,0,0,0.600596 -26144,7016:487,-167,8,0,0,0.602221 -26145,7016:486,-166,8,0,0,0.604778 -26146,7016:485,-165,8,0,0,0.604483 -26147,7016:384,-164,8,0,0,0.602393 -26148,7016:383,-163,8,0,0,0.598252 -26149,7016:382,-162,8,0,0,0.594468 -26150,7016:381,-161,8,0,0,0.594344 -26151,7016:380,-160,8,0,0,0.597437 -26152,7015:489,-159,8,0,0,0.597956 -26153,7015:488,-158,8,0,0,0.596324 -26154,7015:487,-157,8,0,0,0.594518 -26155,7015:486,-156,8,0,0,0.592162 -26156,7015:485,-155,8,0,0,0.590002 -26157,7015:384,-154,8,0,0,0.590871 -26158,7015:383,-153,8,0,0,0.59184 -26159,7015:382,-152,8,0,0,0.59184 -26160,7015:381,-151,8,0,0,0.589902 -26161,7015:380,-150,8,0,0,0.588609 -26162,7014:489,-149,8,0,0,0.585596 -26163,7014:488,-148,8,0,0,0.58592 -26164,7014:487,-147,8,0,0,0.588361 -26165,7014:486,-146,8,0,0,0.585472 -26166,7014:485,-145,8,0,0,0.584947 -26167,7014:384,-144,8,0,0,0.586618 -26168,7014:383,-143,8,0,0,0.586219 -26169,7014:382,-142,8,0,0,0.584249 -26170,7014:381,-141,8,0,0,0.580726 -26171,7014:380,-140,8,0,0,0.575789 -26172,7013:489,-139,8,0,0,0.572298 -26173,7013:488,-138,8,0,0,0.57456 -26174,7013:487,-137,8,0,0,0.575288 -26175,7013:486,-136,8,0,0,0.572322 -26176,7013:485,-135,8,0,0,0.569831 -26177,7013:384,-134,8,0,0,0.567588 -26178,7013:383,-133,8,0,0,0.567412 -26179,7013:382,-132,8,0,0,0.568193 -26180,7013:381,-131,8,0,0,0.569806 -26181,7013:380,-130,8,0,0,0.564964 -26182,7012:489,-129,8,0,0,0.568068 -26183,7012:488,-128,8,0,0,0.571644 -26184,7012:487,-127,8,0,0,0.57285 -26185,7012:486,-126,8,0,0,0.577119 -26186,7012:485,-125,8,0,0,0.577671 -26187,7012:384,-124,8,0,0,0.577019 -26188,7012:383,-123,8,0,0,0.576417 -26189,7012:382,-122,8,0,0,0.58 -26190,7012:381,-121,8,0,0,0.590424 -26191,7012:380,-120,8,0,0,0.60136 -26192,7011:489,-119,8,0,0,0.603426 -26193,7011:488,-118,8,0,0,0.602665 -26194,7011:487,-117,8,0,0,0.597635 -26195,7011:486,-116,8,0,0,0.602443 -26196,7011:485,-115,8,0,0,0.602172 -26197,7011:384,-114,8,0,0,0.600866 -26198,7011:383,-113,8,0,0,0.600522 -26199,7011:382,-112,8,0,0,0.608358 -26200,7011:381,-111,8,0,0,0.617911 -26201,7011:380,-110,8,0,0,0.624776 -26202,7010:489,-109,8,0,0,0.63006 -26203,7010:488,-108,8,0,0,0.63712 -26204,7010:487,-107,8,0,0,0.640534 -26205,7010:486,-106,8,0,0,0.642848 -26206,7010:485,-105,8,0,0,0.645462 -26207,7010:384,-104,8,0,0,0.659186 -26208,7010:383,-103,8,0,0,0.663305 -26209,7010:382,-102,8,0,0,0.665825 -26210,7010:381,-101,8,0,0,0.663397 -26211,7010:380,-100,8,0,0,0.661007 -26212,7009:489,-99,8,0,0,0.653904 -26213,7009:488,-98,8,0,0,0.641125 -26214,7009:487,-97,8,0,0,0.636026 -26215,7009:486,-96,8,0,0,0.634526 -26216,7009:485,-95,8,0,0,0.639373 -26217,7009:384,-94,8,0,0,0.645039 -26218,7008:384,-84,8,0,0,0.624053 -26219,7008:383,-83,8,0,0,0.618881 -26220,7008:382,-82,8,0,0,0.626484 -26221,7008:381,-81,8,0,0,0.636098 -26222,7008:380,-80,8,0,0,0.641054 -26223,7007:489,-79,8,0,0,0.64103 -26224,7007:488,-78,8,0,0,0.640178 -26225,7007:487,-77,8,0,0,0.641314 -26227,7007:485,-75,8,0,0,0.643697 -26228,7007:384,-74,8,0,0,0.642919 -26229,7007:383,-73,8,0,0,0.64006 -26230,7007:382,-72,8,0,0,0.63769 -26231,7007:381,-71,8,0,0,0.637215 -26232,7007:380,-70,8,0,0,0.637666 -26233,7006:489,-69,8,0,0,0.638164 -26234,7006:488,-68,8,0,0,0.638497 -26235,7006:487,-67,8,0,0,0.638923 -26236,7006:486,-66,8,0,0,0.637049 -26237,7006:485,-65,8,0,0,0.637499 -26238,7006:384,-64,8,0,0,0.636122 -26239,7006:383,-63,8,0,0,0.634979 -26240,7006:382,-62,8,0,0,0.631735 -26241,7006:381,-61,8,0,0,0.627566 -26242,7006:380,-60,8,0,0,0.628526 -26243,7005:489,-59,8,0,0,0.625931 -26244,7005:488,-58,8,0,0,0.623691 -26245,7005:487,-57,8,0,0,0.621277 -26246,7005:486,-56,8,0,0,0.617741 -26247,7005:485,-55,8,0,0,0.616042 -26248,7005:384,-54,8,0,0,0.615823 -26249,7005:383,-53,8,0,0,0.613389 -26250,7005:382,-52,8,0,0,0.609043 -26251,7005:381,-51,8,0,0,0.606912 -26252,7005:380,-50,8,0,0,0.604533 -26253,7004:489,-49,8,0,0,0.602049 -26254,7004:488,-48,8,0,0,0.600201 -26255,7004:487,-47,8,0,0,0.598598 -26256,7004:486,-46,8,0,0,0.596868 -26257,7004:485,-45,8,0,0,0.594864 -26258,7004:384,-44,8,0,0,0.592312 -26259,7004:383,-43,8,0,0,0.589729 -26260,7004:382,-42,8,0,0,0.588361 -26261,7004:381,-41,8,0,0,0.58572 -26262,7004:380,-40,8,0,0,0.583825 -26263,7003:489,-39,8,0,0,0.581651 -26264,7003:488,-38,8,0,0,0.578573 -26265,7003:487,-37,8,0,0,0.576567 -26266,7003:486,-36,8,0,0,0.574886 -26267,7003:485,-35,8,0,0,0.573027 -26268,7003:384,-34,8,0,0,0.572725 -26269,7003:383,-33,8,0,0,0.569504 -26270,7003:382,-32,8,0,0,0.568748 -26271,7003:381,-31,8,0,0,0.569201 -26272,7003:380,-30,8,0,0,0.570259 -26273,7002:489,-29,8,0,0,0.569201 -26274,7002:488,-28,8,0,0,0.567286 -26275,7002:487,-27,8,0,0,0.56721 -26276,7002:486,-26,8,0,0,0.567765 -26277,7002:485,-25,8,0,0,0.566882 -26278,7002:384,-24,8,0,0,0.56779 -26279,7002:383,-23,8,0,0,0.571116 -26280,7002:382,-22,8,0,0,0.568874 -26281,7002:381,-21,8,0,0,0.573177 -26282,7002:380,-20,8,0,0,0.583425 -26283,7001:489,-19,8,0,0,0.586368 -26284,7001:488,-18,8,0,0,0.585472 -26285,7001:487,-17,8,0,0,0.559983 -26286,1004:380,40,8,0,0,0.625546 -26287,1004:381,41,8,0,0,0.616989 -26288,1004:382,42,8,0,0,0.629508 -26289,1005:382,52,8,0,0,0.595409 -26290,1005:383,53,8,0,0,0.592708 -26291,1005:384,54,8,0,0,0.590574 -26292,1005:485,55,8,0,0,0.591542 -26293,1005:486,56,8,0,0,0.596671 -26294,1005:487,57,8,0,0,0.596646 -26295,1005:488,58,8,0,0,0.59422 -26296,1005:489,59,8,0,0,0.598079 -26297,1006:380,60,8,0,0,0.601778 -26298,1006:381,61,8,0,0,0.604262 -26299,1006:382,62,8,0,0,0.610852 -26300,1006:383,63,8,0,0,0.614947 -26301,1006:384,64,8,0,0,0.620552 -26302,1006:485,65,8,0,0,0.626845 -26303,1006:486,66,8,0,0,0.630443 -26304,1006:487,67,8,0,0,0.635883 -26305,1006:488,68,8,0,0,0.638662 -26306,1006:489,69,8,0,0,0.64103 -26307,1007:380,70,8,0,0,0.643485 -26308,1007:381,71,8,0,0,0.648349 -26309,1007:382,72,8,0,0,0.654392 -26310,1007:384,74,8,0,0,0.647599 -26311,1008:381,81,8,0,0,0.611706 -26312,1008:382,82,8,0,0,0.613145 -26313,1008:383,83,8,0,0,0.622436 -26314,1008:384,84,8,0,0,0.626604 -26315,1008:485,85,8,0,0,0.630945 -26316,1008:486,86,8,0,0,0.634884 -26317,1008:487,87,8,0,0,0.636621 -26318,1008:488,88,8,0,0,0.637547 -26319,1008:489,89,8,0,0,0.64058 -26320,1009:380,90,8,0,0,0.642966 -26321,1009:381,91,8,0,0,0.645839 -26322,1009:382,92,8,0,0,0.647951 -26323,1009:383,93,8,0,0,0.642046 -26324,1009:384,94,8,0,0,0.63833 -26325,1009:485,95,8,0,0,0.634431 -26326,1009:486,96,8,0,0,0.633382 -26327,1009:487,97,8,0,0,0.637357 -26328,1010:489,109,8,0,0,0.584898 -26329,1011:380,110,8,0,0,0.587141 -26330,1011:381,111,8,0,0,0.598351 -26331,1011:382,112,8,0,0,0.599856 -26332,1011:383,113,8,0,0,0.603697 -26333,1011:384,114,8,0,0,0.607697 -26334,1011:485,115,8,0,0,0.610632 -26335,1011:486,116,8,0,0,0.613535 -26336,1011:487,117,8,0,0,0.618638 -26337,1011:488,118,8,0,0,0.628286 -26338,1011:489,119,8,0,0,0.637286 -26339,1012:380,120,8,0,0,0.620842 -26340,1012:382,122,8,0,0,0.625594 -26341,1012:383,123,8,0,0,0.627614 -26342,1012:384,124,8,0,0,0.624968 -26343,1012:485,125,8,0,0,0.623643 -26344,1012:486,126,8,0,0,0.624391 -26345,1012:487,127,8,0,0,0.626436 -26346,1012:488,128,8,0,0,0.628118 -26347,1012:489,129,8,0,0,0.629796 -26348,1013:380,130,8,0,0,0.631806 -26349,1013:381,131,8,0,0,0.635788 -26350,1013:382,132,8,0,0,0.640013 -26351,1013:383,133,8,0,0,0.640367 -26352,1013:384,134,8,0,0,0.637049 -26353,1013:485,135,8,0,0,0.636669 -26354,1013:486,136,8,0,0,0.638402 -26355,1013:487,137,8,0,0,0.638876 -26356,1013:488,138,8,0,0,0.639752 -26357,1013:489,139,8,0,0,0.640391 -26358,1014:380,140,8,0,0,0.640439 -26359,1014:381,141,8,0,0,0.640415 -26360,1014:382,142,8,0,0,0.640391 -26361,1014:383,143,8,0,0,0.640699 -26362,1014:384,144,8,0,0,0.640912 -26363,1014:485,145,8,0,0,0.641148 -26364,1014:486,146,8,0,0,0.6398 -26365,1014:487,147,8,0,0,0.640604 -26366,1014:488,148,8,0,0,0.640273 -26367,1014:489,149,8,0,0,0.640462 -26368,1015:380,150,8,0,0,0.640817 -26369,1015:381,151,8,0,0,0.641006 -26370,1015:382,152,8,0,0,0.640817 -26371,1015:383,153,8,0,0,0.640202 -26372,1015:384,154,8,0,0,0.639302 -26373,1015:485,155,8,0,0,0.638164 -26374,1015:486,156,8,0,0,0.637001 -26375,1015:487,157,8,0,0,0.635955 -26376,1015:488,158,8,0,0,0.634789 -26377,1015:489,159,8,0,0,0.633549 -26378,1016:380,160,8,0,0,0.632236 -26379,1016:381,161,8,0,0,0.631017 -26380,1016:382,162,8,0,0,0.630251 -26381,1016:383,163,8,0,0,0.629964 -26382,1016:384,164,8,0,0,0.629221 -26383,1016:485,165,8,0,0,0.627733 -26384,1016:486,166,8,0,0,0.625811 -26385,1016:487,167,8,0,0,0.624077 -26386,1016:488,168,8,0,0,0.622267 -26387,1016:489,169,8,0,0,0.620164 -26388,1017:380,170,8,0,0,0.617862 -26389,1017:381,171,8,0,0,0.616381 -26390,1017:382,172,8,0,0,0.615895 -26391,1017:383,173,8,0,0,0.615774 -26392,1017:384,174,8,0,0,0.615409 -26393,1017:485,175,8,0,0,0.61429 -26394,1017:486,176,8,0,0,0.612902 -26395,1017:487,177,8,0,0,0.612146 -26396,1017:488,178,8,0,0,0.612316 -26397,1017:489,179,8,0,0,0.612389 -26398,1018:380,180,8,0,0,0.611242 -26399,7018:390,-180,9,0,0,0.606839 -26400,7017:499,-179,9,0,0,0.60777 -26401,7017:498,-178,9,0,0,0.606741 -26402,7017:497,-177,9,0,0,0.605171 -26403,7017:496,-176,9,0,0,0.604065 -26404,7017:495,-175,9,0,0,0.601606 -26405,7017:394,-174,9,0,0,0.599338 -26406,7017:393,-173,9,0,0,0.598227 -26407,7017:392,-172,9,0,0,0.599313 -26408,7017:391,-171,9,0,0,0.600916 -26409,7017:390,-170,9,0,0,0.601113 -26410,7016:499,-169,9,0,0,0.598153 -26411,7016:498,-168,9,0,0,0.595211 -26412,7016:497,-167,9,0,0,0.594419 -26413,7016:496,-166,9,0,0,0.596918 -26414,7016:495,-165,9,0,0,0.597017 -26415,7016:394,-164,9,0,0,0.595409 -26416,7016:393,-163,9,0,0,0.592436 -26417,7016:392,-162,9,0,0,0.590276 -26418,7016:391,-161,9,0,0,0.590698 -26419,7016:390,-160,9,0,0,0.588734 -26420,7015:499,-159,9,0,0,0.590624 -26421,7015:498,-158,9,0,0,0.58739 -26422,7015:497,-157,9,0,0,0.579599 -26423,7015:496,-156,9,0,0,0.5797 -26424,7015:495,-155,9,0,0,0.58572 -26425,7015:394,-154,9,0,0,0.582851 -26426,7015:393,-153,9,0,0,0.580401 -26427,7015:392,-152,9,0,0,0.580425 -26428,7015:391,-151,9,0,0,0.578623 -26429,7015:390,-150,9,0,0,0.576618 -26430,7014:499,-149,9,0,0,0.575689 -26431,7014:498,-148,9,0,0,0.577671 -26432,7014:497,-147,9,0,0,0.579399 -26433,7014:496,-146,9,0,0,0.578297 -26434,7014:495,-145,9,0,0,0.576066 -26435,7014:394,-144,9,0,0,0.576316 -26436,7014:393,-143,9,0,0,0.568521 -26437,7014:392,-142,9,0,0,0.571946 -26438,7014:391,-141,9,0,0,0.575488 -26439,7014:390,-140,9,0,0,0.566806 -26440,7013:499,-139,9,0,0,0.556892 -26441,7013:498,-138,9,0,0,0.558413 -26442,7013:497,-137,9,0,0,0.555649 -26443,7013:496,-136,9,0,0,0.550825 -26444,7013:495,-135,9,0,0,0.553263 -26445,7013:394,-134,9,0,0,0.545124 -26446,7013:393,-133,9,0,0,0.541045 -26447,7013:392,-132,9,0,0,0.54005 -26448,7013:391,-131,9,0,0,0.538773 -26449,7013:390,-130,9,0,0,0.533203 -26450,7012:499,-129,9,0,0,0.533407 -26451,7012:498,-128,9,0,0,0.54079 -26452,7012:497,-127,9,0,0,0.537726 -26453,7012:496,-126,9,0,0,0.539156 -26454,7012:495,-125,9,0,0,0.551078 -26455,7012:394,-124,9,0,0,0.546066 -26456,7012:393,-123,9,0,0,0.553543 -26457,7012:392,-122,9,0,0,0.553289 -26458,7012:391,-121,9,0,0,0.565343 -26459,7012:390,-120,9,0,0,0.571442 -26460,7011:499,-119,9,0,0,0.578097 -26461,7011:498,-118,9,0,0,0.579099 -26462,7011:497,-117,9,0,0,0.578623 -26463,7011:496,-116,9,0,0,0.581826 -26464,7011:495,-115,9,0,0,0.58005 -26465,7011:394,-114,9,0,0,0.5827 -26466,7011:393,-113,9,0,0,0.581626 -26467,7011:392,-112,9,0,0,0.584972 -26468,7011:391,-111,9,0,0,0.597536 -26469,7011:390,-110,9,0,0,0.60826 -26470,7010:499,-109,9,0,0,0.62304 -26471,7010:498,-108,9,0,0,0.63195 -26472,7010:497,-107,9,0,0,0.636265 -26473,7010:496,-106,9,0,0,0.640226 -26474,7010:495,-105,9,0,0,0.6498 -26475,7010:394,-104,9,0,0,0.655669 -26476,7010:393,-103,9,0,0,0.659232 -26477,7010:392,-102,9,0,0,0.664841 -26478,7010:391,-101,9,0,0,0.65884 -26479,7008:498,-88,9,0,0,0.637143 -26480,7008:497,-87,9,0,0,0.635003 -26481,7008:496,-86,9,0,0,0.634264 -26482,7008:495,-85,9,0,0,0.63605 -26483,7008:394,-84,9,0,0,0.634598 -26484,7008:393,-83,9,0,0,0.634408 -26485,7008:392,-82,9,0,0,0.635313 -26486,7008:391,-81,9,0,0,0.636645 -26487,7008:390,-80,9,0,0,0.640486 -26488,7007:499,-79,9,0,0,0.640391 -26489,7007:498,-78,9,0,0,0.63769 -26490,7007:497,-77,9,0,0,0.63871 -26491,7007:496,-76,9,0,0,0.641739 -26492,7007:495,-75,9,0,0,0.638544 -26493,7007:394,-74,9,0,0,0.640793 -26494,7007:393,-73,9,0,0,0.639634 -26495,7007:392,-72,9,0,0,0.638686 -26496,7007:391,-71,9,0,0,0.636574 -26497,7007:390,-70,9,0,0,0.637167 -26498,7006:499,-69,9,0,0,0.637001 -26499,7006:498,-68,9,0,0,0.636621 -26500,7006:497,-67,9,0,0,0.635098 -26501,7006:496,-66,9,0,0,0.635479 -26502,7006:495,-65,9,0,0,0.634336 -26503,7006:394,-64,9,0,0,0.633406 -26504,7006:393,-63,9,0,0,0.63006 -26505,7006:392,-62,9,0,0,0.628861 -26506,7006:391,-61,9,0,0,0.626268 -26507,7006:390,-60,9,0,0,0.625185 -26508,7005:499,-59,9,0,0,0.62333 -26509,7005:498,-58,9,0,0,0.621277 -26510,7005:497,-57,9,0,0,0.61968 -26511,7005:496,-56,9,0,0,0.617668 -26512,7005:495,-55,9,0,0,0.615433 -26513,7005:394,-54,9,0,0,0.612877 -26514,7005:393,-53,9,0,0,0.609899 -26515,7005:392,-52,9,0,0,0.607574 -26516,7005:391,-51,9,0,0,0.605662 -26517,7005:390,-50,9,0,0,0.60441 -26518,7004:499,-49,9,0,0,0.60195 -26519,7004:498,-48,9,0,0,0.599511 -26520,7004:497,-47,9,0,0,0.596003 -26521,7004:496,-46,9,0,0,0.593526 -26522,7004:495,-45,9,0,0,0.591344 -26523,7004:394,-44,9,0,0,0.588983 -26524,7004:393,-43,9,0,0,0.586593 -26525,7004:392,-42,9,0,0,0.586394 -26526,7004:391,-41,9,0,0,0.58385 -26527,7004:390,-40,9,0,0,0.578397 -26528,7003:499,-39,9,0,0,0.57732 -26529,7003:498,-38,9,0,0,0.575665 -26530,7003:497,-37,9,0,0,0.571895 -26531,7003:496,-36,9,0,0,0.571266 -26532,7003:495,-35,9,0,0,0.570385 -26533,7003:394,-34,9,0,0,0.567336 -26534,7003:393,-33,9,0,0,0.56514 -26535,7003:392,-32,9,0,0,0.563953 -26536,7003:391,-31,9,0,0,0.564434 -26537,7003:390,-30,9,0,0,0.563524 -26538,7002:499,-29,9,0,0,0.562943 -26539,7002:498,-28,9,0,0,0.561678 -26540,7002:497,-27,9,0,0,0.561603 -26541,7002:496,-26,9,0,0,0.562209 -26542,7002:495,-25,9,0,0,0.561653 -26543,7002:394,-24,9,0,0,0.560742 -26544,7002:393,-23,9,0,0,0.55816 -26545,7002:392,-22,9,0,0,0.555269 -26546,7002:391,-21,9,0,0,0.562993 -26547,7002:390,-20,9,0,0,0.567286 -26548,7001:499,-19,9,0,0,0.565822 -26549,7001:498,-18,9,0,0,0.564938 -26550,7001:497,-17,9,0,0,0.541785 -26551,1003:499,39,9,0,0,0.643838 -26552,1004:390,40,9,0,0,0.631735 -26553,1004:392,42,9,0,0,0.642305 -26554,1005:394,54,9,0,0,0.589232 -26555,1005:495,55,9,0,0,0.588236 -26556,1005:496,56,9,0,0,0.593625 -26557,1005:497,57,9,0,0,0.59184 -26558,1005:498,58,9,0,0,0.593502 -26559,1005:499,59,9,0,0,0.591666 -26560,1006:390,60,9,0,0,0.593031 -26561,1006:391,61,9,0,0,0.602763 -26562,1006:392,62,9,0,0,0.603451 -26563,1006:393,63,9,0,0,0.605417 -26564,1006:394,64,9,0,0,0.608774 -26565,1006:495,65,9,0,0,0.611267 -26566,1006:496,66,9,0,0,0.617231 -26567,1006:497,67,9,0,0,0.622871 -26568,1006:498,68,9,0,0,0.627278 -26569,1006:499,69,9,0,0,0.636169 -26570,1007:390,70,9,0,0,0.642565 -26571,1007:391,71,9,0,0,0.647435 -26572,1007:392,72,9,0,0,0.650197 -26573,1008:393,83,9,0,0,0.604188 -26574,1008:394,84,9,0,0,0.613803 -26575,1008:495,85,9,0,0,0.614314 -26576,1008:496,86,9,0,0,0.61905 -26577,1008:497,87,9,0,0,0.627421 -26578,1008:498,88,9,0,0,0.63424 -26579,1008:499,89,9,0,0,0.634622 -26580,1009:390,90,9,0,0,0.636145 -26581,1009:391,91,9,0,0,0.638473 -26582,1009:392,92,9,0,0,0.642542 -26583,1009:393,93,9,0,0,0.641195 -26584,1009:394,94,9,0,0,0.635503 -26585,1010:498,108,9,0,0,0.575288 -26586,1010:499,109,9,0,0,0.578448 -26587,1011:390,110,9,0,0,0.579149 -26588,1011:391,111,9,0,0,0.58749 -26589,1011:392,112,9,0,0,0.588883 -26590,1011:393,113,9,0,0,0.5834 -26591,1011:394,114,9,0,0,0.592782 -26592,1011:495,115,9,0,0,0.592088 -26593,1011:496,116,9,0,0,0.592609 -26594,1011:497,117,9,0,0,0.599462 -26595,1011:498,118,9,0,0,0.617935 -26596,1011:499,119,9,0,0,0.629868 -26597,1012:390,120,9,0,0,0.619002 -26598,1012:393,123,9,0,0,0.625787 -26599,1012:394,124,9,0,0,0.616284 -26600,1012:495,125,9,0,0,0.614241 -26601,1012:496,126,9,0,0,0.614022 -26602,1012:497,127,9,0,0,0.615458 -26603,1012:498,128,9,0,0,0.616381 -26604,1012:499,129,9,0,0,0.618056 -26605,1013:390,130,9,0,0,0.620817 -26606,1013:391,131,9,0,0,0.623619 -26607,1013:392,132,9,0,0,0.626797 -26608,1013:393,133,9,0,0,0.631782 -26609,1013:394,134,9,0,0,0.633382 -26610,1013:495,135,9,0,0,0.632284 -26611,1013:496,136,9,0,0,0.632308 -26612,1013:497,137,9,0,0,0.634408 -26613,1013:498,138,9,0,0,0.635217 -26614,1013:499,139,9,0,0,0.635551 -26615,1014:390,140,9,0,0,0.63517 -26616,1014:391,141,9,0,0,0.634479 -26617,1014:392,142,9,0,0,0.634503 -26618,1014:393,143,9,0,0,0.635027 -26619,1014:394,144,9,0,0,0.635479 -26620,1014:495,145,9,0,0,0.635337 -26621,1014:496,146,9,0,0,0.634288 -26622,1014:497,147,9,0,0,0.635146 -26623,1014:498,148,9,0,0,0.635384 -26624,1014:499,149,9,0,0,0.636074 -26625,1015:390,150,9,0,0,0.636502 -26626,1015:391,151,9,0,0,0.63605 -26627,1015:392,152,9,0,0,0.636336 -26628,1015:393,153,9,0,0,0.636764 -26629,1015:394,154,9,0,0,0.637595 -26630,1015:495,155,9,0,0,0.636645 -26631,1015:496,156,9,0,0,0.635432 -26632,1015:497,157,9,0,0,0.633859 -26633,1015:498,158,9,0,0,0.632714 -26634,1015:499,159,9,0,0,0.632762 -26635,1016:390,160,9,0,0,0.632117 -26636,1016:391,161,9,0,0,0.630634 -26637,1016:392,162,9,0,0,0.628526 -26638,1016:393,163,9,0,0,0.626412 -26639,1016:394,164,9,0,0,0.624993 -26640,1016:495,165,9,0,0,0.624968 -26641,1016:496,166,9,0,0,0.625233 -26642,1016:497,167,9,0,0,0.624391 -26643,1016:498,168,9,0,0,0.621953 -26644,1016:499,169,9,0,0,0.619946 -26645,1017:390,170,9,0,0,0.61762 -26646,1017:391,171,9,0,0,0.615288 -26647,1017:392,172,9,0,0,0.613973 -26648,1017:393,173,9,0,0,0.61317 -26649,1017:394,174,9,0,0,0.612658 -26650,1017:495,175,9,0,0,0.611974 -26651,1017:496,176,9,0,0,0.610779 -26652,1017:497,177,9,0,0,0.608333 -26653,1017:498,178,9,0,0,0.606594 -26654,1017:499,179,9,0,0,0.606374 -26655,1018:390,180,9,0,0,0.606839 -26656,7118:100,-180,10,0,0,0.602763 -26657,7117:209,-179,10,0,0,0.603008 -26658,7117:208,-178,10,0,0,0.601975 -26659,7117:207,-177,10,0,0,0.597956 -26660,7117:206,-176,10,0,0,0.600004 -26661,7117:205,-175,10,0,0,0.597561 -26662,7117:104,-174,10,0,0,0.596151 -26663,7117:103,-173,10,0,0,0.594419 -26664,7117:102,-172,10,0,0,0.595334 -26665,7117:101,-171,10,0,0,0.59432 -26666,7117:100,-170,10,0,0,0.59672 -26667,7116:209,-169,10,0,0,0.59761 -26668,7116:208,-168,10,0,0,0.595756 -26669,7116:207,-167,10,0,0,0.593997 -26670,7116:206,-166,10,0,0,0.591244 -26671,7116:205,-165,10,0,0,0.589057 -26672,7116:104,-164,10,0,0,0.588311 -26673,7116:103,-163,10,0,0,0.589057 -26674,7116:102,-162,10,0,0,0.588286 -26675,7116:101,-161,10,0,0,0.587689 -26676,7116:100,-160,10,0,0,0.589132 -26677,7115:209,-159,10,0,0,0.5902 -26678,7115:208,-158,10,0,0,0.590151 -26679,7115:207,-157,10,0,0,0.577445 -26680,7115:206,-156,10,0,0,0.568949 -26681,7115:205,-155,10,0,0,0.567992 -26682,7115:104,-154,10,0,0,0.570838 -26683,7115:103,-153,10,0,0,0.569176 -26684,7115:102,-152,10,0,0,0.56514 -26685,7115:101,-151,10,0,0,0.564282 -26686,7115:100,-150,10,0,0,0.560211 -26687,7114:209,-149,10,0,0,0.562741 -26688,7114:208,-148,10,0,0,0.559122 -26689,7114:207,-147,10,0,0,0.560033 -26690,7114:206,-146,10,0,0,0.560996 -26691,7114:205,-145,10,0,0,0.566176 -26692,7114:104,-144,10,0,0,0.56509 -26693,7114:103,-143,10,0,0,0.563828 -26694,7114:102,-142,10,0,0,0.549426 -26695,7114:101,-141,10,0,0,0.544666 -26696,7114:100,-140,10,0,0,0.54762 -26697,7113:209,-139,10,0,0,0.549629 -26698,7113:208,-138,10,0,0,0.539794 -26699,7113:207,-137,10,0,0,0.530491 -26700,7113:206,-136,10,0,0,0.532205 -26701,7113:205,-135,10,0,0,0.527803 -26702,7113:104,-134,10,0,0,0.526446 -26703,7113:103,-133,10,0,0,0.522602 -26704,7113:102,-132,10,0,0,0.517217 -26705,7113:101,-131,10,0,0,0.510133 -26706,7113:100,-130,10,0,0,0.509568 -26707,7112:209,-129,10,0,0,0.50926 -26708,7112:208,-128,10,0,0,0.511776 -26709,7112:207,-127,10,0,0,0.517859 -26710,7112:206,-126,10,0,0,0.520372 -26711,7112:205,-125,10,0,0,0.516165 -26712,7112:104,-124,10,0,0,0.510723 -26713,7112:103,-123,10,0,0,0.519243 -26714,7112:102,-122,10,0,0,0.53264 -26715,7112:101,-121,10,0,0,0.542601 -26716,7112:100,-120,10,0,0,0.546244 -26717,7111:209,-119,10,0,0,0.548204 -26718,7111:208,-118,10,0,0,0.542703 -26719,7111:207,-117,10,0,0,0.546117 -26720,7111:206,-116,10,0,0,0.547772 -26721,7111:205,-115,10,0,0,0.548434 -26722,7111:104,-114,10,0,0,0.557222 -26723,7111:103,-113,10,0,0,0.565267 -26724,7111:102,-112,10,0,0,0.573956 -26725,7111:101,-111,10,0,0,0.58375 -26726,7111:100,-110,10,0,0,0.596893 -26727,7110:209,-109,10,0,0,0.615944 -26728,7110:208,-108,10,0,0,0.629557 -26729,7110:207,-107,10,0,0,0.625378 -26730,7110:206,-106,10,0,0,0.622243 -26731,7110:205,-105,10,0,0,0.637428 -26732,7110:104,-104,10,0,0,0.648045 -26733,7109:104,-94,10,0,0,0.600127 -26734,7108:208,-88,10,0,0,0.611682 -26735,7108:207,-87,10,0,0,0.633931 -26736,7108:206,-86,10,0,0,0.63655 -26737,7108:205,-85,10,0,0,0.638615 -26738,7108:104,-84,10,0,0,0.639184 -26739,7108:103,-83,10,0,0,0.638235 -26740,7108:102,-82,10,0,0,0.638615 -26741,7108:101,-81,10,0,0,0.63871 -26742,7108:100,-80,10,0,0,0.638307 -26743,7107:209,-79,10,0,0,0.638781 -26744,7107:207,-77,10,0,0,0.634765 -26745,7107:206,-76,10,0,0,0.634884 -26746,7107:205,-75,10,0,0,0.638235 -26747,7107:100,-70,10,0,0,0.62831 -26748,7106:208,-68,10,0,0,0.631902 -26749,7106:205,-65,10,0,0,0.626653 -26750,7106:104,-64,10,0,0,0.626052 -26751,7106:103,-63,10,0,0,0.626461 -26752,7106:102,-62,10,0,0,0.623667 -26753,7106:101,-61,10,0,0,0.62304 -26754,7106:100,-60,10,0,0,0.62118 -26755,7105:209,-59,10,0,0,0.618493 -26756,7105:208,-58,10,0,0,0.617231 -26757,7105:207,-57,10,0,0,0.616867 -26758,7105:206,-56,10,0,0,0.616478 -26759,7105:205,-55,10,0,0,0.613023 -26760,7105:104,-54,10,0,0,0.611169 -26761,7105:103,-53,10,0,0,0.60963 -26762,7105:102,-52,10,0,0,0.607354 -26763,7105:101,-51,10,0,0,0.60468 -26764,7105:100,-50,10,0,0,0.603254 -26765,7104:209,-49,10,0,0,0.600793 -26766,7104:208,-48,10,0,0,0.597758 -26767,7104:207,-47,10,0,0,0.592584 -26768,7104:206,-46,10,0,0,0.590499 -26769,7104:205,-45,10,0,0,0.588585 -26770,7104:104,-44,10,0,0,0.586942 -26771,7104:103,-43,10,0,0,0.585745 -26772,7104:102,-42,10,0,0,0.583825 -26773,7104:101,-41,10,0,0,0.581401 -26774,7104:100,-40,10,0,0,0.578523 -26775,7103:209,-39,10,0,0,0.575388 -26776,7103:208,-38,10,0,0,0.574007 -26777,7103:207,-37,10,0,0,0.57192 -26778,7103:206,-36,10,0,0,0.568521 -26779,7103:205,-35,10,0,0,0.565797 -26780,7103:104,-34,10,0,0,0.563373 -26781,7103:103,-33,10,0,0,0.560691 -26782,7103:102,-32,10,0,0,0.558286 -26783,7103:101,-31,10,0,0,0.556207 -26784,7103:100,-30,10,0,0,0.555929 -26785,7102:209,-29,10,0,0,0.555649 -26786,7102:208,-28,10,0,0,0.553848 -26787,7102:207,-27,10,0,0,0.554051 -26788,7102:206,-26,10,0,0,0.552146 -26789,7102:205,-25,10,0,0,0.551486 -26790,7102:104,-24,10,0,0,0.549858 -26791,7102:103,-23,10,0,0,0.55024 -26792,7102:102,-22,10,0,0,0.547772 -26793,7102:101,-21,10,0,0,0.548561 -26794,7102:100,-20,10,0,0,0.542346 -26795,7101:209,-19,10,0,0,0.536858 -26796,7101:208,-18,10,0,0,0.549375 -26797,7101:207,-17,10,0,0,0.527906 -26798,1103:208,38,10,0,0,0.642542 -26799,1103:209,39,10,0,0,0.657684 -26800,1104:100,40,10,0,0,0.665047 -26801,1104:101,41,10,0,0,0.643932 -26802,1105:207,57,10,0,0,0.581401 -26803,1105:208,58,10,0,0,0.587788 -26804,1105:209,59,10,0,0,0.588236 -26805,1106:100,60,10,0,0,0.588833 -26806,1106:101,61,10,0,0,0.594988 -26807,1106:102,62,10,0,0,0.597536 -26808,1106:103,63,10,0,0,0.596473 -26809,1106:104,64,10,0,0,0.597536 -26810,1106:205,65,10,0,0,0.600621 -26811,1106:206,66,10,0,0,0.606374 -26812,1106:207,67,10,0,0,0.610827 -26813,1106:208,68,10,0,0,0.623981 -26814,1106:209,69,10,0,0,0.63424 -26815,1107:100,70,10,0,0,0.636764 -26816,1107:101,71,10,0,0,0.632977 -26817,1107:102,72,10,0,0,0.638497 -26818,1108:205,85,10,0,0,0.598968 -26819,1108:206,86,10,0,0,0.608872 -26820,1108:207,87,10,0,0,0.61728 -26821,1108:208,88,10,0,0,0.619946 -26822,1108:209,89,10,0,0,0.627133 -26823,1109:100,90,10,0,0,0.627782 -26824,1109:101,91,10,0,0,0.626244 -26825,1109:102,92,10,0,0,0.628694 -26826,1109:103,93,10,0,0,0.635479 -26827,1109:104,94,10,0,0,0.639657 -26828,1110:207,107,10,0,0,0.544029 -26829,1110:208,108,10,0,0,0.574735 -26830,1110:209,109,10,0,0,0.552374 -26831,1111:101,111,10,0,0,0.56461 -26832,1111:102,112,10,0,0,0.571417 -26833,1111:103,113,10,0,0,0.577044 -26834,1111:104,114,10,0,0,0.578548 -26835,1111:205,115,10,0,0,0.578673 -26836,1111:206,116,10,0,0,0.586942 -26837,1111:207,117,10,0,0,0.590574 -26838,1111:208,118,10,0,0,0.592535 -26839,1111:209,119,10,0,0,0.602665 -26840,1112:100,120,10,0,0,0.611047 -26841,1112:102,122,10,0,0,0.601261 -26842,1112:103,123,10,0,0,0.620285 -26843,1112:104,124,10,0,0,0.59318 -26844,1112:205,125,10,0,0,0.602025 -26845,1112:206,126,10,0,0,0.604606 -26846,1112:207,127,10,0,0,0.60296 -26847,1112:208,128,10,0,0,0.60291 -26848,1112:209,129,10,0,0,0.606766 -26849,1113:100,130,10,0,0,0.6087 -26850,1113:101,131,10,0,0,0.610754 -26851,1113:102,132,10,0,0,0.613364 -26852,1113:103,133,10,0,0,0.617959 -26853,1113:104,134,10,0,0,0.62316 -26854,1113:205,135,10,0,0,0.623112 -26855,1113:206,136,10,0,0,0.625353 -26856,1113:207,137,10,0,0,0.628045 -26857,1113:208,138,10,0,0,0.63018 -26858,1113:209,139,10,0,0,0.630491 -26859,1114:100,140,10,0,0,0.629868 -26860,1114:101,141,10,0,0,0.629628 -26861,1114:102,142,10,0,0,0.629077 -26862,1114:103,143,10,0,0,0.628694 -26863,1114:104,144,10,0,0,0.628934 -26864,1114:205,145,10,0,0,0.628694 -26865,1114:206,146,10,0,0,0.629101 -26866,1114:207,147,10,0,0,0.629101 -26867,1114:208,148,10,0,0,0.629197 -26868,1114:209,149,10,0,0,0.628958 -26869,1115:100,150,10,0,0,0.628166 -26870,1115:101,151,10,0,0,0.629844 -26871,1115:102,152,10,0,0,0.629461 -26872,1115:103,153,10,0,0,0.628958 -26873,1115:104,154,10,0,0,0.630418 -26874,1115:205,155,10,0,0,0.629125 -26875,1115:206,156,10,0,0,0.629341 -26876,1115:207,157,10,0,0,0.628669 -26877,1115:208,158,10,0,0,0.628262 -26878,1115:209,159,10,0,0,0.627421 -26879,1116:100,160,10,0,0,0.62622 -26880,1116:101,161,10,0,0,0.627278 -26881,1116:102,162,10,0,0,0.627566 -26882,1116:103,163,10,0,0,0.625811 -26883,1116:104,164,10,0,0,0.623498 -26884,1116:205,165,10,0,0,0.620939 -26885,1116:206,166,10,0,0,0.621108 -26886,1116:207,167,10,0,0,0.620454 -26887,1116:208,168,10,0,0,0.617523 -26888,1116:209,169,10,0,0,0.618686 -26889,1117:100,170,10,0,0,0.618348 -26890,1117:101,171,10,0,0,0.616892 -26891,1117:102,172,10,0,0,0.615433 -26892,1117:103,173,10,0,0,0.614996 -26893,1117:104,174,10,0,0,0.613242 -26894,1117:205,175,10,0,0,0.61134 -26895,1117:206,176,10,0,0,0.609435 -26896,1117:207,177,10,0,0,0.607844 -26897,1117:208,178,10,0,0,0.606643 -26898,1117:209,179,10,0,0,0.605613 -26899,1118:100,180,10,0,0,0.602763 -26900,7118:110,-180,11,0,0,0.594419 -26901,7117:219,-179,11,0,0,0.59625 -26902,7117:218,-178,11,0,0,0.594171 -26903,7117:217,-177,11,0,0,0.589927 -26904,7117:216,-176,11,0,0,0.590996 -26905,7117:215,-175,11,0,0,0.586019 -26906,7117:114,-174,11,0,0,0.5834 -26907,7117:113,-173,11,0,0,0.58075 -26908,7117:112,-172,11,0,0,0.577545 -26909,7117:111,-171,11,0,0,0.576166 -26910,7117:110,-170,11,0,0,0.580701 -26911,7116:219,-169,11,0,0,0.584798 -26912,7116:218,-168,11,0,0,0.584024 -26913,7116:217,-167,11,0,0,0.584748 -26914,7116:216,-166,11,0,0,0.583025 -26915,7116:215,-165,11,0,0,0.568572 -26916,7116:114,-164,11,0,0,0.565166 -26917,7116:113,-163,11,0,0,0.565898 -26918,7116:112,-162,11,0,0,0.572725 -26919,7116:111,-161,11,0,0,0.580901 -26920,7116:110,-160,11,0,0,0.581176 -26921,7115:219,-159,11,0,0,0.577796 -26922,7115:218,-158,11,0,0,0.577645 -26923,7115:217,-157,11,0,0,0.579399 -26924,7115:216,-156,11,0,0,0.565469 -26925,7115:215,-155,11,0,0,0.558742 -26926,7115:114,-154,11,0,0,0.561426 -26927,7115:113,-153,11,0,0,0.55783 -26928,7115:112,-152,11,0,0,0.549121 -26929,7115:111,-151,11,0,0,0.545251 -26930,7115:110,-150,11,0,0,0.543391 -26931,7114:219,-149,11,0,0,0.54028 -26932,7114:218,-148,11,0,0,0.5413 -26933,7114:217,-147,11,0,0,0.538416 -26934,7114:216,-146,11,0,0,0.541249 -26935,7114:215,-145,11,0,0,0.537547 -26936,7114:114,-144,11,0,0,0.534072 -26937,7114:113,-143,11,0,0,0.531566 -26938,7114:112,-142,11,0,0,0.525268 -26939,7114:111,-141,11,0,0,0.525242 -26940,7114:110,-140,11,0,0,0.522474 -26941,7113:219,-139,11,0,0,0.517242 -26942,7113:218,-138,11,0,0,0.515318 -26943,7113:217,-137,11,0,0,0.512828 -26944,7113:216,-136,11,0,0,0.515318 -26945,7113:215,-135,11,0,0,0.508567 -26946,7113:114,-134,11,0,0,0.498499 -26947,7113:113,-133,11,0,0,0.503713 -26948,7113:112,-132,11,0,0,0.496572 -26949,7113:111,-131,11,0,0,0.491333 -26950,7113:110,-130,11,0,0,0.492617 -26951,7112:219,-129,11,0,0,0.487816 -26952,7112:218,-128,11,0,0,0.482298 -26953,7112:217,-127,11,0,0,0.483582 -26954,7112:216,-126,11,0,0,0.484479 -26955,7112:215,-125,11,0,0,0.47999 -26956,7112:114,-124,11,0,0,0.481734 -26957,7112:113,-123,11,0,0,0.480836 -26958,7112:112,-122,11,0,0,0.482915 -26959,7112:111,-121,11,0,0,0.489074 -26960,7112:110,-120,11,0,0,0.501247 -26961,7111:219,-119,11,0,0,0.508798 -26962,7111:218,-118,11,0,0,0.517935 -26963,7111:217,-117,11,0,0,0.521423 -26964,7111:216,-116,11,0,0,0.516832 -26965,7111:215,-115,11,0,0,0.521833 -26966,7111:114,-114,11,0,0,0.533791 -26967,7111:113,-113,11,0,0,0.541708 -26968,7111:112,-112,11,0,0,0.550799 -26969,7111:111,-111,11,0,0,0.557019 -26970,7111:110,-110,11,0,0,0.563296 -26971,7110:219,-109,11,0,0,0.57285 -26972,7110:218,-108,11,0,0,0.596275 -26973,7110:217,-107,11,0,0,0.605932 -26974,7110:216,-106,11,0,0,0.623281 -26975,7109:216,-96,11,0,0,0.578022 -26976,7109:215,-95,11,0,0,0.578147 -26977,7109:114,-94,11,0,0,0.584349 -26978,7109:113,-93,11,0,0,0.586917 -26979,7109:112,-92,11,0,0,0.594419 -26980,7109:111,-91,11,0,0,0.588684 -26981,7108:217,-87,11,0,0,0.632762 -26982,7108:216,-86,11,0,0,0.633048 -26983,7108:215,-85,11,0,0,0.625498 -26984,7108:114,-84,11,0,0,0.620817 -26985,7108:113,-83,11,0,0,0.616284 -26986,7108:112,-82,11,0,0,0.619075 -26987,7108:111,-81,11,0,0,0.619317 -26988,7108:110,-80,11,0,0,0.624222 -26989,7107:219,-79,11,0,0,0.626052 -26990,7107:218,-78,11,0,0,0.620213 -26991,7107:114,-74,11,0,0,0.610119 -26992,7107:113,-73,11,0,0,0.621639 -26993,7107:112,-72,11,0,0,0.61808 -26994,7107:111,-71,11,0,0,0.612902 -26995,7107:110,-70,11,0,0,0.616042 -26996,7106:219,-69,11,0,0,0.619971 -26997,7106:218,-68,11,0,0,0.623595 -26998,7106:217,-67,11,0,0,0.625257 -26999,7106:216,-66,11,0,0,0.623595 -27000,7106:215,-65,11,0,0,0.623258 -27001,7106:114,-64,11,0,0,0.623764 -27002,7106:113,-63,11,0,0,0.621785 -27003,7106:112,-62,11,0,0,0.616478 -27004,7106:111,-61,11,0,0,0.61762 -27005,7106:110,-60,11,0,0,0.615385 -27006,7105:219,-59,11,0,0,0.613608 -27007,7105:218,-58,11,0,0,0.612902 -27008,7105:217,-57,11,0,0,0.610632 -27009,7105:216,-56,11,0,0,0.608407 -27010,7105:215,-55,11,0,0,0.607549 -27011,7105:114,-54,11,0,0,0.60777 -27012,7105:113,-53,11,0,0,0.60409 -27013,7105:112,-52,11,0,0,0.599856 -27014,7105:111,-51,11,0,0,0.596126 -27015,7105:110,-50,11,0,0,0.592957 -27016,7104:219,-49,11,0,0,0.590797 -27017,7104:218,-48,11,0,0,0.59184 -27018,7104:217,-47,11,0,0,0.590027 -27019,7104:216,-46,11,0,0,0.588585 -27020,7104:215,-45,11,0,0,0.584499 -27021,7104:114,-44,11,0,0,0.579975 -27022,7104:113,-43,11,0,0,0.578422 -27023,7104:112,-42,11,0,0,0.575514 -27024,7104:111,-41,11,0,0,0.576066 -27025,7104:110,-40,11,0,0,0.575012 -27026,7103:219,-39,11,0,0,0.57104 -27027,7103:218,-38,11,0,0,0.568446 -27028,7103:217,-37,11,0,0,0.568017 -27029,7103:216,-36,11,0,0,0.565595 -27030,7103:215,-35,11,0,0,0.56269 -27031,7103:114,-34,11,0,0,0.557855 -27032,7103:113,-33,11,0,0,0.554178 -27033,7103:112,-32,11,0,0,0.553162 -27034,7103:111,-31,11,0,0,0.55085 -27035,7103:110,-30,11,0,0,0.550189 -27036,7102:219,-29,11,0,0,0.546932 -27037,7102:218,-28,11,0,0,0.545506 -27038,7102:217,-27,11,0,0,0.544079 -27039,7102:216,-26,11,0,0,0.541377 -27040,7102:215,-25,11,0,0,0.537956 -27041,7102:114,-24,11,0,0,0.535784 -27042,7102:113,-23,11,0,0,0.532231 -27043,7102:112,-22,11,0,0,0.52852 -27044,7102:111,-21,11,0,0,0.522372 -27045,7102:110,-20,11,0,0,0.50754 -27046,7101:219,-19,11,0,0,0.517191 -27047,7101:218,-18,11,0,0,0.50659 -27048,7101:217,-17,11,0,0,0.49873 -27049,1103:217,37,11,0,0,0.64077 -27050,1103:218,38,11,0,0,0.650992 -27051,1103:219,39,11,0,0,0.65597 -27052,1104:110,40,11,0,0,0.650968 -27053,1105:218,58,11,0,0,0.572625 -27054,1105:219,59,11,0,0,0.572775 -27055,1106:110,60,11,0,0,0.588286 -27056,1106:111,61,11,0,0,0.587215 -27057,1106:112,62,11,0,0,0.592038 -27058,1106:113,63,11,0,0,0.589803 -27059,1106:114,64,11,0,0,0.591964 -27060,1106:215,65,11,0,0,0.587365 -27061,1106:216,66,11,0,0,0.592807 -27062,1106:217,67,11,0,0,0.599609 -27063,1106:218,68,11,0,0,0.619631 -27064,1106:219,69,11,0,0,0.619801 -27065,1107:110,70,11,0,0,0.61779 -27066,1107:111,71,11,0,0,0.625474 -27067,1107:112,72,11,0,0,0.630107 -27068,1108:217,87,11,0,0,0.597857 -27069,1108:218,88,11,0,0,0.598449 -27070,1108:219,89,11,0,0,0.611292 -27071,1109:110,90,11,0,0,0.621518 -27072,1109:111,91,11,0,0,0.631711 -27073,1109:112,92,11,0,0,0.639918 -27074,1109:113,93,11,0,0,0.633907 -27075,1110:217,107,11,0,0,0.519321 -27076,1110:218,108,11,0,0,0.535504 -27077,1110:219,109,11,0,0,0.526805 -27078,1111:110,110,11,0,0,0.501863 -27079,1111:111,111,11,0,0,0.495879 -27080,1111:112,112,11,0,0,0.55499 -27081,1111:113,113,11,0,0,0.558995 -27082,1111:114,114,11,0,0,0.571719 -27083,1111:215,115,11,0,0,0.576919 -27084,1111:216,116,11,0,0,0.584099 -27085,1111:217,117,11,0,0,0.591046 -27086,1111:218,118,11,0,0,0.594988 -27087,1111:219,119,11,0,0,0.600177 -27088,1112:110,120,11,0,0,0.604238 -27089,1112:111,121,11,0,0,0.60136 -27090,1112:112,122,11,0,0,0.58365 -27091,1112:113,123,11,0,0,0.581301 -27092,1112:114,124,11,0,0,0.579074 -27093,1112:215,125,11,0,0,0.577997 -27094,1112:216,126,11,0,0,0.576392 -27095,1112:217,127,11,0,0,0.580201 -27096,1112:218,128,11,0,0,0.584898 -27097,1112:219,129,11,0,0,0.586892 -27098,1113:110,130,11,0,0,0.588659 -27099,1113:111,131,11,0,0,0.596077 -27100,1113:112,132,11,0,0,0.597017 -27101,1113:113,133,11,0,0,0.598623 -27102,1113:114,134,11,0,0,0.597288 -27103,1113:215,135,11,0,0,0.606912 -27104,1113:216,136,11,0,0,0.607574 -27105,1113:217,137,11,0,0,0.607893 -27106,1113:218,138,11,0,0,0.616673 -27107,1113:219,139,11,0,0,0.622702 -27108,1114:110,140,11,0,0,0.621639 -27109,1114:111,141,11,0,0,0.621785 -27110,1114:112,142,11,0,0,0.621639 -27111,1114:113,143,11,0,0,0.621591 -27112,1114:114,144,11,0,0,0.625233 -27113,1114:215,145,11,0,0,0.623547 -27114,1114:216,146,11,0,0,0.621132 -27115,1114:217,147,11,0,0,0.624125 -27116,1114:218,148,11,0,0,0.624294 -27117,1114:219,149,11,0,0,0.624318 -27118,1115:110,150,11,0,0,0.624535 -27119,1115:111,151,11,0,0,0.62263 -27120,1115:112,152,11,0,0,0.622171 -27121,1115:113,153,11,0,0,0.622099 -27122,1115:114,154,11,0,0,0.622099 -27123,1115:215,155,11,0,0,0.62386 -27124,1115:216,156,11,0,0,0.623258 -27125,1115:217,157,11,0,0,0.622002 -27126,1115:218,158,11,0,0,0.620696 -27127,1115:219,159,11,0,0,0.619608 -27128,1116:110,160,11,0,0,0.618105 -27129,1116:111,161,11,0,0,0.617377 -27130,1116:112,162,11,0,0,0.618251 -27131,1116:113,163,11,0,0,0.618953 -27132,1116:114,164,11,0,0,0.617377 -27133,1116:215,165,11,0,0,0.611657 -27134,1116:216,166,11,0,0,0.611121 -27135,1116:217,167,11,0,0,0.613778 -27136,1116:218,168,11,0,0,0.613828 -27137,1116:219,169,11,0,0,0.611999 -27138,1117:110,170,11,0,0,0.610192 -27139,1117:111,171,11,0,0,0.609117 -27140,1117:112,172,11,0,0,0.6063 -27141,1117:113,173,11,0,0,0.605515 -27142,1117:114,174,11,0,0,0.602049 -27143,1117:215,175,11,0,0,0.601705 -27144,1117:216,176,11,0,0,0.600201 -27145,1117:217,177,11,0,0,0.594518 -27146,1117:218,178,11,0,0,0.597437 -27147,1117:219,179,11,0,0,0.598128 -27148,1118:110,180,11,0,0,0.594419 -27149,7118:120,-180,12,0,0,0.583225 -27150,7117:229,-179,12,0,0,0.584548 -27151,7117:228,-178,12,0,0,0.582526 -27152,7117:227,-177,12,0,0,0.579975 -27153,7117:226,-176,12,0,0,0.579023 -27154,7117:225,-175,12,0,0,0.576893 -27155,7117:124,-174,12,0,0,0.575966 -27156,7117:123,-173,12,0,0,0.573605 -27157,7117:122,-172,12,0,0,0.571014 -27158,7117:121,-171,12,0,0,0.568017 -27159,7117:120,-170,12,0,0,0.563499 -27160,7116:229,-169,12,0,0,0.561704 -27161,7116:228,-168,12,0,0,0.560641 -27162,7116:227,-167,12,0,0,0.571518 -27163,7116:226,-166,12,0,0,0.572348 -27164,7116:225,-165,12,0,0,0.559071 -27165,7116:124,-164,12,0,0,0.558843 -27166,7116:123,-163,12,0,0,0.565166 -27167,7116:122,-162,12,0,0,0.571493 -27168,7116:121,-161,12,0,0,0.569051 -27169,7116:120,-160,12,0,0,0.558514 -27170,7115:229,-159,12,0,0,0.560388 -27171,7115:227,-157,12,0,0,0.554457 -27172,7115:226,-156,12,0,0,0.554762 -27173,7115:225,-155,12,0,0,0.555853 -27174,7115:124,-154,12,0,0,0.552374 -27175,7115:123,-153,12,0,0,0.547136 -27176,7115:122,-152,12,0,0,0.54492 -27177,7115:121,-151,12,0,0,0.539335 -27178,7115:120,-150,12,0,0,0.537394 -27179,7114:229,-149,12,0,0,0.532027 -27180,7114:228,-148,12,0,0,0.526855 -27181,7114:227,-147,12,0,0,0.524627 -27182,7114:226,-146,12,0,0,0.520603 -27183,7114:225,-145,12,0,0,0.514318 -27184,7114:124,-144,12,0,0,0.513804 -27185,7114:123,-143,12,0,0,0.512084 -27186,7114:122,-142,12,0,0,0.511596 -27187,7114:121,-141,12,0,0,0.505177 -27188,7114:120,-140,12,0,0,0.504535 -27189,7113:229,-139,12,0,0,0.495571 -27190,7113:228,-138,12,0,0,0.495108 -27191,7113:227,-137,12,0,0,0.486481 -27192,7113:226,-136,12,0,0,0.49349 -27193,7113:225,-135,12,0,0,0.495879 -27194,7113:124,-134,12,0,0,0.489895 -27195,7113:123,-133,12,0,0,0.477016 -27196,7113:122,-132,12,0,0,0.471226 -27197,7113:121,-131,12,0,0,0.47453 -27198,7113:120,-130,12,0,0,0.471944 -27199,7112:229,-129,12,0,0,0.467593 -27200,7112:228,-128,12,0,0,0.46703 -27201,7112:227,-127,12,0,0,0.462302 -27203,7112:225,-125,12,0,0,0.461945 -27204,7112:124,-124,12,0,0,0.460745 -27205,7112:123,-123,12,0,0,0.459162 -27206,7112:122,-122,12,0,0,0.461587 -27207,7112:121,-121,12,0,0,0.460872 -27208,7112:120,-120,12,0,0,0.465828 -27209,7111:229,-119,12,0,0,0.4679 -27210,7111:228,-118,12,0,0,0.474812 -27211,7111:227,-117,12,0,0,0.479092 -27212,7111:226,-116,12,0,0,0.489665 -27213,7111:225,-115,12,0,0,0.501273 -27214,7111:124,-114,12,0,0,0.517397 -27215,7111:123,-113,12,0,0,0.528443 -27216,7111:122,-112,12,0,0,0.528111 -27217,7111:121,-111,12,0,0,0.520372 -27218,7111:120,-110,12,0,0,0.536781 -27219,7110:229,-109,12,0,0,0.58395 -27220,7110:228,-108,12,0,0,0.586319 -27221,7110:227,-107,12,0,0,0.608113 -27222,7110:226,-106,12,0,0,0.60799 -27223,7109:227,-97,12,0,0,0.576191 -27224,7109:226,-96,12,0,0,0.579149 -27225,7109:225,-95,12,0,0,0.582226 -27226,7109:124,-94,12,0,0,0.584898 -27227,7109:123,-93,12,0,0,0.583799 -27228,7109:122,-92,12,0,0,0.59189 -27229,7109:121,-91,12,0,0,0.585247 -27230,7109:120,-90,12,0,0,0.580376 -27231,7108:229,-89,12,0,0,0.5836 -27232,7108:226,-86,12,0,0,0.631782 -27233,7108:225,-85,12,0,0,0.613608 -27234,7108:124,-84,12,0,0,0.611145 -27235,7108:122,-82,12,0,0,0.612755 -27236,7108:121,-81,12,0,0,0.613754 -27237,7108:120,-80,12,0,0,0.615895 -27238,7107:229,-79,12,0,0,0.592733 -27239,7107:226,-76,12,0,0,0.610803 -27240,7107:225,-75,12,0,0,0.606079 -27241,7107:124,-74,12,0,0,0.612585 -27242,7107:123,-73,12,0,0,0.612975 -27243,7107:122,-72,12,0,0,0.604606 -27244,7107:121,-71,12,0,0,0.606079 -27245,7107:120,-70,12,0,0,0.612194 -27246,7106:229,-69,12,0,0,0.612682 -27247,7106:228,-68,12,0,0,0.613194 -27248,7106:227,-67,12,0,0,0.61745 -27249,7106:226,-66,12,0,0,0.618274 -27250,7106:225,-65,12,0,0,0.614582 -27251,7106:124,-64,12,0,0,0.614947 -27252,7106:123,-63,12,0,0,0.615385 -27253,7106:122,-62,12,0,0,0.613267 -27254,7106:121,-61,12,0,0,0.613097 -27255,7106:120,-60,12,0,0,0.613511 -27256,7105:229,-59,12,0,0,0.611047 -27257,7105:228,-58,12,0,0,0.607672 -27258,7105:227,-57,12,0,0,0.606962 -27259,7105:226,-56,12,0,0,0.604434 -27260,7105:225,-55,12,0,0,0.60232 -27261,7105:124,-54,12,0,0,0.600744 -27262,7105:123,-53,12,0,0,0.59882 -27263,7105:122,-52,12,0,0,0.596597 -27264,7105:121,-51,12,0,0,0.59583 -27265,7105:120,-50,12,0,0,0.593204 -27266,7104:229,-49,12,0,0,0.588012 -27267,7104:228,-48,12,0,0,0.585646 -27268,7104:227,-47,12,0,0,0.58572 -27269,7104:226,-46,12,0,0,0.583725 -27270,7104:225,-45,12,0,0,0.580125 -27271,7104:124,-44,12,0,0,0.575765 -27272,7104:123,-43,12,0,0,0.575765 -27273,7104:122,-42,12,0,0,0.572046 -27274,7104:121,-41,12,0,0,0.570461 -27275,7104:120,-40,12,0,0,0.568572 -27276,7103:229,-39,12,0,0,0.564485 -27277,7103:228,-38,12,0,0,0.563296 -27278,7103:227,-37,12,0,0,0.562209 -27279,7103:226,-36,12,0,0,0.560515 -27280,7103:225,-35,12,0,0,0.558261 -27281,7103:124,-34,12,0,0,0.558236 -27282,7103:123,-33,12,0,0,0.554482 -27283,7103:122,-32,12,0,0,0.549909 -27284,7103:121,-31,12,0,0,0.546779 -27285,7103:120,-30,12,0,0,0.543748 -27286,7102:229,-29,12,0,0,0.541708 -27287,7102:228,-28,12,0,0,0.539948 -27288,7102:227,-27,12,0,0,0.539156 -27289,7102:226,-26,12,0,0,0.536986 -27290,7102:225,-25,12,0,0,0.534456 -27291,7102:124,-24,12,0,0,0.531259 -27292,7102:123,-23,12,0,0,0.527214 -27293,7102:122,-22,12,0,0,0.522167 -27294,7102:121,-21,12,0,0,0.517551 -27295,7102:120,-20,12,0,0,0.505691 -27296,7101:229,-19,12,0,0,0.500066 -27297,7101:228,-18,12,0,0,0.487739 -27298,1103:227,37,12,0,0,0.632427 -27299,1103:228,38,12,0,0,0.647271 -27300,1106:120,60,12,0,0,0.57985 -27301,1106:121,61,12,0,0,0.58724 -27302,1106:122,62,12,0,0,0.584548 -27303,1106:123,63,12,0,0,0.586144 -27304,1106:124,64,12,0,0,0.579674 -27305,1106:225,65,12,0,0,0.58065 -27306,1106:226,66,12,0,0,0.588808 -27307,1106:227,67,12,0,0,0.603353 -27308,1106:228,68,12,0,0,0.609508 -27309,1106:229,69,12,0,0,0.61256 -27310,1107:122,72,12,0,0,0.617911 -28933,7214:104,-144,20,0,0,0.41528 -27311,1108:228,88,12,0,0,0.582651 -27312,1108:229,89,12,0,0,0.585297 -27313,1109:120,90,12,0,0,0.585771 -27314,1109:121,91,12,0,0,0.573982 -27315,1109:122,92,12,0,0,0.606324 -27316,1110:229,109,12,0,0,0.493105 -27317,1111:120,110,12,0,0,0.47699 -27318,1111:122,112,12,0,0,0.486943 -27319,1111:123,113,12,0,0,0.506924 -27320,1111:124,114,12,0,0,0.524114 -27321,1111:225,115,12,0,0,0.542626 -27322,1111:226,116,12,0,0,0.567084 -27323,1111:227,117,12,0,0,0.575062 -27324,1111:228,118,12,0,0,0.583999 -27325,1111:229,119,12,0,0,0.576417 -27326,1112:120,120,12,0,0,0.572926 -27327,1112:121,121,12,0,0,0.569655 -27328,1112:122,122,12,0,0,0.561375 -27329,1112:123,123,12,0,0,0.556638 -27330,1112:124,124,12,0,0,0.56231 -27331,1112:225,125,12,0,0,0.560135 -27332,1112:226,126,12,0,0,0.5594 -27333,1112:227,127,12,0,0,0.561755 -27334,1112:228,128,12,0,0,0.56958 -27335,1112:229,129,12,0,0,0.576442 -27336,1113:120,130,12,0,0,0.577044 -27337,1113:121,131,12,0,0,0.575639 -27338,1113:122,132,12,0,0,0.580926 -27339,1113:123,133,12,0,0,0.587291 -27340,1113:124,134,12,0,0,0.586618 -27341,1113:225,135,12,0,0,0.593353 -27342,1113:226,136,12,0,0,0.599609 -27343,1113:227,137,12,0,0,0.608799 -27344,1113:228,138,12,0,0,0.60941 -27345,1113:229,139,12,0,0,0.60657 -27346,1114:120,140,12,0,0,0.61373 -27347,1114:121,141,12,0,0,0.611633 -27348,1114:122,142,12,0,0,0.613535 -27349,1114:123,143,12,0,0,0.610827 -27350,1114:124,144,12,0,0,0.612926 -27351,1114:225,145,12,0,0,0.617134 -27352,1114:226,146,12,0,0,0.615798 -27353,1114:227,147,12,0,0,0.613973 -27354,1114:228,148,12,0,0,0.616211 -27355,1114:229,149,12,0,0,0.618032 -27356,1115:120,150,12,0,0,0.619801 -27357,1115:121,151,12,0,0,0.617596 -27358,1115:122,152,12,0,0,0.617887 -27359,1115:123,153,12,0,0,0.616139 -27360,1115:124,154,12,0,0,0.61728 -27361,1115:225,155,12,0,0,0.61626 -27362,1115:226,156,12,0,0,0.615215 -27363,1115:227,157,12,0,0,0.615482 -27364,1115:228,158,12,0,0,0.613584 -27365,1115:229,159,12,0,0,0.613998 -27366,1116:120,160,12,0,0,0.613437 -27367,1116:121,161,12,0,0,0.611219 -27368,1116:122,162,12,0,0,0.609826 -27369,1116:123,163,12,0,0,0.610437 -27370,1116:124,164,12,0,0,0.610999 -27371,1116:225,165,12,0,0,0.606496 -27372,1116:226,166,12,0,0,0.607182 -27373,1116:227,167,12,0,0,0.606472 -27374,1116:228,168,12,0,0,0.607133 -27375,1116:229,169,12,0,0,0.606447 -27376,1117:120,170,12,0,0,0.600103 -27377,1117:121,171,12,0,0,0.596126 -27378,1117:122,172,12,0,0,0.598746 -27379,1117:123,173,12,0,0,0.598968 -27380,1117:124,174,12,0,0,0.597956 -27381,1117:225,175,12,0,0,0.595087 -27382,1117:226,176,12,0,0,0.589952 -27383,1117:227,177,12,0,0,0.584573 -27384,1117:228,178,12,0,0,0.582501 -27385,1117:229,179,12,0,0,0.582876 -27386,1118:120,180,12,0,0,0.583225 -27387,7118:130,-180,13,0,0,0.576392 -27388,7117:239,-179,13,0,0,0.573052 -27389,7117:238,-178,13,0,0,0.571467 -27390,7117:237,-177,13,0,0,0.569428 -27391,7117:236,-176,13,0,0,0.568496 -27392,7117:235,-175,13,0,0,0.568521 -27393,7117:134,-174,13,0,0,0.56456 -27394,7117:133,-173,13,0,0,0.563625 -27395,7117:132,-172,13,0,0,0.561755 -27396,7117:131,-171,13,0,0,0.559805 -27397,7117:130,-170,13,0,0,0.558666 -27398,7116:239,-169,13,0,0,0.550901 -27399,7116:238,-168,13,0,0,0.552756 -27400,7116:237,-167,13,0,0,0.560009 -27401,7116:236,-166,13,0,0,0.552374 -27402,7116:235,-165,13,0,0,0.545659 -27403,7116:134,-164,13,0,0,0.544869 -27404,7116:133,-163,13,0,0,0.550672 -27405,7116:132,-162,13,0,0,0.548307 -27406,7116:131,-161,13,0,0,0.548968 -27407,7116:130,-160,13,0,0,0.548332 -27408,7115:239,-159,13,0,0,0.545022 -27409,7115:238,-158,13,0,0,0.547339 -27410,7115:237,-157,13,0,0,0.547798 -27411,7115:236,-156,13,0,0,0.54548 -27412,7115:235,-155,13,0,0,0.541912 -27413,7115:134,-154,13,0,0,0.540406 -27414,7115:133,-153,13,0,0,0.536449 -27415,7115:132,-152,13,0,0,0.532001 -27416,7115:131,-151,13,0,0,0.527342 -27417,7115:130,-150,13,0,0,0.526548 -27418,7114:239,-149,13,0,0,0.525165 -27419,7114:238,-148,13,0,0,0.521295 -27420,7114:237,-147,13,0,0,0.516165 -27421,7114:236,-146,13,0,0,0.512084 -27422,7114:235,-145,13,0,0,0.507411 -27423,7114:134,-144,13,0,0,0.502891 -27424,7114:133,-143,13,0,0,0.499809 -27425,7114:132,-142,13,0,0,0.49498 -27426,7114:131,-141,13,0,0,0.489665 -27427,7114:130,-140,13,0,0,0.491436 -27428,7113:239,-139,13,0,0,0.484428 -27429,7113:238,-138,13,0,0,0.478836 -27430,7113:237,-137,13,0,0,0.469 -27431,7113:236,-136,13,0,0,0.468181 -27432,7113:235,-135,13,0,0,0.464295 -27433,7113:134,-134,13,0,0,0.466493 -27434,7113:133,-133,13,0,0,0.456306 -27435,7113:132,-132,13,0,0,0.454955 -27436,7113:131,-131,13,0,0,0.450577 -27437,7113:130,-130,13,0,0,0.445597 -27438,7112:239,-129,13,0,0,0.450017 -27439,7112:238,-128,13,0,0,0.44801 -27440,7112:237,-127,13,0,0,0.444176 -27441,7112:236,-126,13,0,0,0.447679 -27442,7112:235,-125,13,0,0,0.448162 -27443,7112:134,-124,13,0,0,0.448568 -27444,7112:133,-123,13,0,0,0.446892 -27445,7112:132,-122,13,0,0,0.446181 -27446,7112:131,-121,13,0,0,0.443187 -27447,7112:130,-120,13,0,0,0.444709 -27448,7111:239,-119,13,0,0,0.447247 -27449,7111:238,-118,13,0,0,0.458014 -27450,7111:237,-117,13,0,0,0.457708 -27451,7111:236,-116,13,0,0,0.463656 -27452,7111:235,-115,13,0,0,0.476401 -27453,7111:134,-114,13,0,0,0.485557 -27454,7111:133,-113,13,0,0,0.489818 -27455,7111:132,-112,13,0,0,0.504253 -27456,7111:131,-111,13,0,0,0.542396 -27457,7111:130,-110,13,0,0,0.571895 -27458,7110:239,-109,13,0,0,0.568395 -27459,7110:238,-108,13,0,0,0.581226 -27460,7110:237,-107,13,0,0,0.592832 -27461,7109:237,-97,13,0,0,0.571995 -27462,7109:236,-96,13,0,0,0.573932 -27463,7109:235,-95,13,0,0,0.576191 -27464,7109:134,-94,13,0,0,0.580401 -27465,7109:133,-93,13,0,0,0.581026 -27466,7109:132,-92,13,0,0,0.580576 -27467,7109:131,-91,13,0,0,0.57955 -27468,7109:130,-90,13,0,0,0.578397 -27469,7108:239,-89,13,0,0,0.581826 -27470,7108:238,-88,13,0,0,0.593502 -27471,7108:237,-87,13,0,0,0.622967 -27472,7108:236,-86,13,0,0,0.61502 -27473,7108:235,-85,13,0,0,0.607844 -27474,7108:134,-84,13,0,0,0.607354 -27475,7107:239,-79,13,0,0,0.602467 -27476,7107:238,-78,13,0,0,0.56779 -27477,7107:237,-77,13,0,0,0.569403 -27478,7107:236,-76,13,0,0,0.586019 -27479,7107:235,-75,13,0,0,0.596843 -27480,7107:134,-74,13,0,0,0.595756 -27481,7107:133,-73,13,0,0,0.598425 -27482,7107:132,-72,13,0,0,0.600793 -27483,7107:131,-71,13,0,0,0.603304 -27484,7107:130,-70,13,0,0,0.606201 -27485,7106:239,-69,13,0,0,0.604533 -27486,7106:238,-68,13,0,0,0.600621 -27487,7106:237,-67,13,0,0,0.601852 -27488,7106:236,-66,13,0,0,0.601803 -27489,7106:235,-65,13,0,0,0.60025 -27490,7106:134,-64,13,0,0,0.601261 -27491,7106:133,-63,13,0,0,0.602049 -27492,7106:132,-62,13,0,0,0.605343 -27493,7106:131,-61,13,0,0,0.606594 -27494,7106:130,-60,13,0,0,0.603525 -27495,7105:239,-59,13,0,0,0.600768 -27496,7105:238,-58,13,0,0,0.603378 -27497,7105:237,-57,13,0,0,0.605171 -27498,7105:236,-56,13,0,0,0.603083 -27499,7105:235,-55,13,0,0,0.598277 -27500,7105:134,-54,13,0,0,0.599042 -27501,7105:133,-53,13,0,0,0.595434 -27502,7105:132,-52,13,0,0,0.591616 -27503,7105:131,-51,13,0,0,0.590549 -27504,7105:130,-50,13,0,0,0.584324 -27505,7104:239,-49,13,0,0,0.582526 -27506,7104:238,-48,13,0,0,0.581126 -27507,7104:237,-47,13,0,0,0.57717 -27508,7104:236,-46,13,0,0,0.575488 -27509,7104:235,-45,13,0,0,0.573781 -27510,7104:134,-44,13,0,0,0.572373 -27511,7104:133,-43,13,0,0,0.571116 -27512,7104:132,-42,13,0,0,0.566529 -27513,7104:131,-41,13,0,0,0.563322 -27514,7104:130,-40,13,0,0,0.561349 -27515,7103:239,-39,13,0,0,0.557932 -27516,7103:238,-38,13,0,0,0.554914 -27517,7103:237,-37,13,0,0,0.551078 -27518,7103:236,-36,13,0,0,0.549833 -27519,7103:235,-35,13,0,0,0.550519 -27520,7103:134,-34,13,0,0,0.549732 -27521,7103:133,-33,13,0,0,0.544512 -27522,7103:132,-32,13,0,0,0.539641 -27523,7103:131,-31,13,0,0,0.539514 -27524,7103:130,-30,13,0,0,0.538543 -27525,7102:239,-29,13,0,0,0.536244 -27526,7102:238,-28,13,0,0,0.534277 -27527,7102:237,-27,13,0,0,0.533894 -27528,7102:236,-26,13,0,0,0.532717 -27529,7102:235,-25,13,0,0,0.531361 -27530,7102:134,-24,13,0,0,0.528315 -27531,7102:133,-23,13,0,0,0.525754 -27532,7102:132,-22,13,0,0,0.519474 -27533,7102:131,-21,13,0,0,0.508772 -27534,7102:130,-20,13,0,0,0.505691 -27535,7101:239,-19,13,0,0,0.485198 -27536,7101:238,-18,13,0,0,0.474838 -27537,7101:237,-17,13,0,0,0.457581 -27538,1103:236,36,13,0,0,0.588311 -27539,1103:237,37,13,0,0,0.622267 -27540,1103:238,38,13,0,0,0.629197 -27541,1106:130,60,13,0,0,0.570864 -27542,1106:131,61,13,0,0,0.57965 -27543,1106:132,62,13,0,0,0.576091 -27544,1106:133,63,13,0,0,0.575363 -27545,1106:134,64,13,0,0,0.576417 -27546,1106:235,65,13,0,0,0.579074 -27547,1106:236,66,13,0,0,0.590499 -27548,1106:237,67,13,0,0,0.596498 -27549,1106:238,68,13,0,0,0.581626 -27550,1111:237,117,13,0,0,0.489434 -27551,1111:238,118,13,0,0,0.498268 -27552,1111:239,119,13,0,0,0.522115 -27553,1112:130,120,13,0,0,0.550951 -27554,1112:132,122,13,0,0,0.56226 -27555,1112:133,123,13,0,0,0.551282 -27556,1112:134,124,13,0,0,0.553898 -27557,1112:235,125,13,0,0,0.548866 -27558,1112:236,126,13,0,0,0.550646 -27559,1112:237,127,13,0,0,0.561046 -27560,1112:238,128,13,0,0,0.568169 -27561,1112:239,129,13,0,0,0.564485 -27562,1113:130,130,13,0,0,0.558615 -27563,1113:131,131,13,0,0,0.557779 -27564,1113:132,132,13,0,0,0.568798 -27565,1113:133,133,13,0,0,0.579049 -27566,1113:134,134,13,0,0,0.573253 -27567,1113:235,135,13,0,0,0.572172 -27568,1113:236,136,13,0,0,0.5837 -27569,1113:237,137,13,0,0,0.592485 -27570,1113:238,138,13,0,0,0.589082 -27571,1113:239,139,13,0,0,0.594617 -27572,1114:130,140,13,0,0,0.597066 -27573,1114:131,141,13,0,0,0.601433 -27574,1114:132,142,13,0,0,0.603648 -27575,1114:133,143,13,0,0,0.603574 -27576,1114:134,144,13,0,0,0.605171 -27577,1114:235,145,13,0,0,0.602443 -27578,1114:236,146,13,0,0,0.604065 -27579,1114:237,147,13,0,0,0.604287 -27580,1114:238,148,13,0,0,0.607329 -27581,1114:239,149,13,0,0,0.609483 -27582,1115:130,150,13,0,0,0.609043 -27583,1115:131,151,13,0,0,0.60804 -27584,1115:132,152,13,0,0,0.603624 -27585,1115:133,153,13,0,0,0.601852 -27586,1115:134,154,13,0,0,0.602984 -27587,1115:235,155,13,0,0,0.602836 -27588,1115:236,156,13,0,0,0.605269 -27589,1115:237,157,13,0,0,0.60728 -27590,1115:238,158,13,0,0,0.609556 -27591,1115:239,159,13,0,0,0.606472 -27592,1116:130,160,13,0,0,0.607697 -27593,1116:131,161,13,0,0,0.605244 -27594,1116:132,162,13,0,0,0.60657 -27595,1116:133,163,13,0,0,0.605441 -27596,1116:134,164,13,0,0,0.604631 -27597,1116:235,165,13,0,0,0.601581 -27598,1116:236,166,13,0,0,0.601286 -27599,1116:237,167,13,0,0,0.598326 -27600,1116:238,168,13,0,0,0.596745 -27601,1116:239,169,13,0,0,0.594096 -27602,1117:130,170,13,0,0,0.595929 -27603,1117:131,171,13,0,0,0.586917 -27604,1117:132,172,13,0,0,0.588236 -27605,1117:133,173,13,0,0,0.588311 -27606,1117:134,174,13,0,0,0.579123 -27607,1117:235,175,13,0,0,0.581151 -27608,1117:236,176,13,0,0,0.583025 -27609,1117:237,177,13,0,0,0.586294 -27610,1117:238,178,13,0,0,0.5835 -27611,1117:239,179,13,0,0,0.58025 -27612,1118:130,180,13,0,0,0.576392 -27613,7118:140,-180,14,0,0,0.567311 -27614,7117:249,-179,14,0,0,0.565191 -27615,7117:248,-178,14,0,0,0.549782 -27616,7117:247,-177,14,0,0,0.558995 -27617,7117:246,-176,14,0,0,0.555877 -27618,7117:245,-175,14,0,0,0.560565 -27619,7117:144,-174,14,0,0,0.548764 -27620,7117:143,-173,14,0,0,0.549732 -27621,7117:142,-172,14,0,0,0.548663 -27622,7117:141,-171,14,0,0,0.551383 -27623,7117:140,-170,14,0,0,0.546601 -27624,7116:249,-169,14,0,0,0.545277 -27625,7116:248,-168,14,0,0,0.539003 -27626,7116:247,-167,14,0,0,0.534865 -27627,7116:246,-166,14,0,0,0.536526 -27628,7116:245,-165,14,0,0,0.533663 -27629,7116:144,-164,14,0,0,0.531156 -27630,7116:143,-163,14,0,0,0.530491 -27631,7116:142,-162,14,0,0,0.532052 -27632,7116:141,-161,14,0,0,0.533075 -27633,7116:140,-160,14,0,0,0.531617 -27634,7115:249,-159,14,0,0,0.529953 -27635,7115:248,-158,14,0,0,0.530491 -27636,7115:247,-157,14,0,0,0.530491 -27637,7115:246,-156,14,0,0,0.527957 -27638,7115:245,-155,14,0,0,0.525294 -27639,7115:144,-154,14,0,0,0.523141 -27640,7115:143,-153,14,0,0,0.5225 -27641,7115:142,-152,14,0,0,0.522372 -27642,7115:141,-151,14,0,0,0.519602 -27643,7115:140,-150,14,0,0,0.517961 -27644,7114:249,-149,14,0,0,0.516755 -27645,7114:248,-148,14,0,0,0.514574 -27646,7114:247,-147,14,0,0,0.514215 -27647,7114:246,-146,14,0,0,0.509209 -27648,7114:245,-145,14,0,0,0.502044 -27649,7114:144,-144,14,0,0,0.496753 -27650,7114:143,-143,14,0,0,0.493953 -27651,7114:142,-142,14,0,0,0.48833 -27652,7114:141,-141,14,0,0,0.485916 -27653,7114:140,-140,14,0,0,0.483376 -27654,7113:249,-139,14,0,0,0.474172 -27655,7113:248,-138,14,0,0,0.466928 -27656,7113:247,-137,14,0,0,0.461919 -27657,7113:246,-136,14,0,0,0.460592 -27658,7113:245,-135,14,0,0,0.453351 -27659,7113:144,-134,14,0,0,0.449941 -27660,7113:143,-133,14,0,0,0.445546 -27661,7113:142,-132,14,0,0,0.443744 -27662,7113:141,-131,14,0,0,0.436403 -27663,7113:140,-130,14,0,0,0.434332 -27664,7112:249,-129,14,0,0,0.434358 -27665,7112:248,-128,14,0,0,0.432112 -27666,7112:247,-127,14,0,0,0.431582 -27667,7112:246,-126,14,0,0,0.43128 -27668,7112:245,-125,14,0,0,0.432566 -27669,7112:144,-124,14,0,0,0.430222 -27670,7112:143,-123,14,0,0,0.430852 -27671,7112:142,-122,14,0,0,0.428888 -27672,7112:141,-121,14,0,0,0.432339 -27673,7112:140,-120,14,0,0,0.430978 -27674,7111:249,-119,14,0,0,0.433802 -27675,7111:248,-118,14,0,0,0.435493 -27676,7111:247,-117,14,0,0,0.448975 -27677,7111:246,-116,14,0,0,0.45386 -27678,7111:245,-115,14,0,0,0.45442 -27679,7111:144,-114,14,0,0,0.467081 -27680,7111:143,-113,14,0,0,0.531924 -27681,7111:142,-112,14,0,0,0.554051 -27682,7111:140,-110,14,0,0,0.568748 -27683,7110:249,-109,14,0,0,0.571518 -27684,7110:248,-108,14,0,0,0.568899 -27685,7109:247,-97,14,0,0,0.567815 -27686,7109:246,-96,14,0,0,0.561122 -27687,7109:245,-95,14,0,0,0.562817 -27688,7109:144,-94,14,0,0,0.568546 -27689,7109:143,-93,14,0,0,0.571518 -27690,7109:142,-92,14,0,0,0.572247 -27691,7109:141,-91,14,0,0,0.569554 -27692,7109:140,-90,14,0,0,0.566251 -27693,7108:249,-89,14,0,0,0.566529 -27694,7108:248,-88,14,0,0,0.586991 -27695,7108:247,-87,14,0,0,0.626508 -27696,7108:246,-86,14,0,0,0.60603 -27697,7108:245,-85,14,0,0,0.607549 -27698,7108:144,-84,14,0,0,0.588236 -27699,7108:143,-83,14,0,0,0.568597 -27700,7108:142,-82,14,0,0,0.572499 -27701,7108:141,-81,14,0,0,0.581801 -27702,7108:140,-80,14,0,0,0.606472 -27703,7107:249,-79,14,0,0,0.544818 -27704,7107:248,-78,14,0,0,0.548714 -27705,7107:247,-77,14,0,0,0.556258 -27706,7107:246,-76,14,0,0,0.591219 -27707,7107:245,-75,14,0,0,0.592782 -27708,7107:144,-74,14,0,0,0.588037 -27709,7107:143,-73,14,0,0,0.586892 -27710,7107:142,-72,14,0,0,0.585521 -27711,7107:141,-71,14,0,0,0.589927 -27712,7107:140,-70,14,0,0,0.586743 -27713,7106:249,-69,14,0,0,0.585222 -27714,7106:248,-68,14,0,0,0.58607 -27715,7106:247,-67,14,0,0,0.586219 -27716,7106:246,-66,14,0,0,0.585446 -27717,7106:245,-65,14,0,0,0.588137 -27718,7106:144,-64,14,0,0,0.586019 -27719,7106:143,-63,14,0,0,0.586717 -27720,7106:142,-62,14,0,0,0.585322 -27721,7106:141,-61,14,0,0,0.583974 -27722,7106:140,-60,14,0,0,0.585546 -27723,7105:249,-59,14,0,0,0.588435 -27724,7105:248,-58,14,0,0,0.587913 -27725,7105:247,-57,14,0,0,0.590077 -27726,7105:246,-56,14,0,0,0.588684 -27727,7105:245,-55,14,0,0,0.591046 -27728,7105:144,-54,14,0,0,0.591815 -27729,7105:143,-53,14,0,0,0.586568 -27730,7105:142,-52,14,0,0,0.58375 -27731,7105:141,-51,14,0,0,0.579574 -27732,7105:140,-50,14,0,0,0.573605 -27733,7104:249,-49,14,0,0,0.572096 -27734,7104:248,-48,14,0,0,0.571442 -27735,7104:247,-47,14,0,0,0.570562 -27736,7104:246,-46,14,0,0,0.566832 -27737,7104:245,-45,14,0,0,0.565519 -27738,7104:144,-44,14,0,0,0.565848 -27739,7104:143,-43,14,0,0,0.562817 -27740,7104:142,-42,14,0,0,0.55745 -27741,7104:141,-41,14,0,0,0.553924 -27742,7104:140,-40,14,0,0,0.5524 -27743,7103:249,-39,14,0,0,0.549833 -27744,7103:248,-38,14,0,0,0.54385 -27745,7103:247,-37,14,0,0,0.543213 -27746,7103:246,-36,14,0,0,0.542218 -27747,7103:245,-35,14,0,0,0.541147 -27748,7103:144,-34,14,0,0,0.539514 -27749,7103:143,-33,14,0,0,0.536117 -27750,7103:142,-32,14,0,0,0.532308 -27751,7103:141,-31,14,0,0,0.528597 -27752,7103:140,-30,14,0,0,0.52806 -27753,7102:249,-29,14,0,0,0.524166 -27754,7102:248,-28,14,0,0,0.523295 -27755,7102:247,-27,14,0,0,0.524909 -27756,7102:246,-26,14,0,0,0.525934 -27757,7102:245,-25,14,0,0,0.523833 -27758,7102:144,-24,14,0,0,0.521372 -27759,7102:143,-23,14,0,0,0.521962 -27760,7102:142,-22,14,0,0,0.517909 -27761,7102:141,-21,14,0,0,0.509671 -27762,7102:140,-20,14,0,0,0.50171 -27763,7101:249,-19,14,0,0,0.495776 -27764,7101:248,-18,14,0,0,0.487431 -27765,7101:247,-17,14,0,0,0.46174 -27766,7101:246,-16,14,0,0,0.43509 -27767,1103:246,36,14,0,0,0.594121 -27768,1103:247,37,14,0,0,0.61808 -27769,1105:142,52,14,0,0,0.551409 -27770,1105:143,53,14,0,0,0.545557 -27771,1105:247,57,14,0,0,0.55712 -27772,1105:248,58,14,0,0,0.561325 -27773,1105:249,59,14,0,0,0.564863 -27774,1106:140,60,14,0,0,0.577144 -27775,1106:141,61,14,0,0,0.570209 -27776,1106:142,62,14,0,0,0.570134 -27777,1106:143,63,14,0,0,0.575012 -27778,1106:144,64,14,0,0,0.579123 -27779,1106:245,65,14,0,0,0.582601 -27780,1106:246,66,14,0,0,0.585122 -27781,1106:247,67,14,0,0,0.553924 -27782,1111:249,119,14,0,0,0.480349 -27783,1112:140,120,14,0,0,0.540432 -27784,1112:142,122,14,0,0,0.559021 -27785,1112:143,123,14,0,0,0.543595 -27786,1112:245,125,14,0,0,0.533663 -27787,1112:246,126,14,0,0,0.539641 -27788,1112:247,127,14,0,0,0.55113 -27789,1112:248,128,14,0,0,0.553569 -27790,1112:249,129,14,0,0,0.553162 -27791,1113:140,130,14,0,0,0.547161 -27792,1113:141,131,14,0,0,0.540636 -27793,1113:142,132,14,0,0,0.539973 -27794,1113:143,133,14,0,0,0.557577 -27795,1113:144,134,14,0,0,0.567033 -27796,1113:245,135,14,0,0,0.564509 -27797,1113:246,136,14,0,0,0.57182 -27798,1113:247,137,14,0,0,0.57041 -27799,1113:248,138,14,0,0,0.57041 -27800,1113:249,139,14,0,0,0.576116 -27801,1114:140,140,14,0,0,0.585147 -27802,1114:141,141,14,0,0,0.582551 -27803,1114:142,142,14,0,0,0.581601 -27804,1114:143,143,14,0,0,0.589505 -27805,1114:144,144,14,0,0,0.594096 -27806,1114:245,145,14,0,0,0.590126 -27807,1114:246,146,14,0,0,0.589828 -27808,1114:247,147,14,0,0,0.596473 -27809,1114:248,148,14,0,0,0.59998 -27810,1114:249,149,14,0,0,0.600891 -27811,1115:140,150,14,0,0,0.598128 -27812,1115:141,151,14,0,0,0.593477 -27813,1115:142,152,14,0,0,0.590325 -27814,1115:143,153,14,0,0,0.587465 -27815,1115:144,154,14,0,0,0.58953 -27816,1115:245,155,14,0,0,0.588336 -27817,1115:246,156,14,0,0,0.593477 -27818,1115:247,157,14,0,0,0.594196 -27819,1115:248,158,14,0,0,0.591517 -27820,1115:249,159,14,0,0,0.590996 -27821,1116:140,160,14,0,0,0.587714 -27822,1116:141,161,14,0,0,0.586917 -27823,1116:142,162,14,0,0,0.590624 -27824,1116:143,163,14,0,0,0.591616 -27825,1116:144,164,14,0,0,0.590126 -27826,1116:245,165,14,0,0,0.588634 -27827,1116:246,166,14,0,0,0.590424 -27828,1116:247,167,14,0,0,0.581751 -27829,1116:248,168,14,0,0,0.589306 -27830,1116:249,169,14,0,0,0.588684 -27831,1117:140,170,14,0,0,0.583201 -27832,1117:141,171,14,0,0,0.578948 -27833,1117:142,172,14,0,0,0.575966 -27834,1117:143,173,14,0,0,0.574459 -27835,1117:144,174,14,0,0,0.566529 -27836,1117:245,175,14,0,0,0.560413 -27837,1117:246,176,14,0,0,0.563828 -27838,1117:247,177,14,0,0,0.561931 -27839,1117:248,178,14,0,0,0.559071 -27840,1117:249,179,14,0,0,0.563397 -27841,1118:140,180,14,0,0,0.567311 -27842,7118:350,-180,15,0,0,0.545149 -27843,7117:459,-179,15,0,0,0.537522 -27844,7117:458,-178,15,0,0,0.535606 -27845,7117:457,-177,15,0,0,0.534174 -27846,7117:456,-176,15,0,0,0.544232 -27847,7117:455,-175,15,0,0,0.54996 -27848,7117:354,-174,15,0,0,0.533944 -27849,7117:353,-173,15,0,0,0.53742 -27850,7117:352,-172,15,0,0,0.531847 -27851,7117:351,-171,15,0,0,0.533151 -27852,7117:350,-170,15,0,0,0.521628 -27853,7116:459,-169,15,0,0,0.529161 -27854,7116:458,-168,15,0,0,0.519397 -27855,7116:457,-167,15,0,0,0.525934 -27856,7116:456,-166,15,0,0,0.522064 -27857,7116:455,-165,15,0,0,0.518089 -27858,7116:354,-164,15,0,0,0.518576 -27859,7116:353,-163,15,0,0,0.516729 -27860,7116:352,-162,15,0,0,0.513471 -27861,7116:351,-161,15,0,0,0.514625 -27862,7116:350,-160,15,0,0,0.512828 -27863,7115:459,-159,15,0,0,0.51519 -27864,7115:458,-158,15,0,0,0.517345 -27865,7115:457,-157,15,0,0,0.51578 -27866,7115:456,-156,15,0,0,0.513522 -27867,7115:455,-155,15,0,0,0.515549 -27868,7115:354,-154,15,0,0,0.513214 -27869,7115:353,-153,15,0,0,0.505562 -27870,7115:352,-152,15,0,0,0.502891 -27871,7115:351,-151,15,0,0,0.502557 -27872,7115:350,-150,15,0,0,0.501273 -27873,7114:459,-149,15,0,0,0.500528 -27874,7114:458,-148,15,0,0,0.498088 -27875,7114:457,-147,15,0,0,0.499526 -27876,7114:456,-146,15,0,0,0.49688 -27877,7114:455,-145,15,0,0,0.489742 -27878,7114:354,-144,15,0,0,0.485814 -27879,7114:353,-143,15,0,0,0.481965 -27880,7114:352,-142,15,0,0,0.475529 -27881,7114:351,-141,15,0,0,0.468975 -27882,7114:350,-140,15,0,0,0.466033 -27883,7113:459,-139,15,0,0,0.463094 -27884,7113:458,-138,15,0,0,0.459137 -27885,7113:457,-137,15,0,0,0.453172 -27886,7113:456,-136,15,0,0,0.447145 -27887,7113:455,-135,15,0,0,0.443871 -27888,7113:354,-134,15,0,0,0.440957 -27889,7113:353,-133,15,0,0,0.440298 -27890,7113:352,-132,15,0,0,0.435519 -27891,7113:351,-131,15,0,0,0.431683 -27892,7113:350,-130,15,0,0,0.426272 -27893,7112:459,-129,15,0,0,0.423461 -27894,7112:458,-128,15,0,0,0.422533 -27895,7112:457,-127,15,0,0,0.422031 -27896,7112:456,-126,15,0,0,0.426021 -27897,7112:455,-125,15,0,0,0.421079 -27898,7112:354,-124,15,0,0,0.416453 -27899,7112:353,-123,15,0,0,0.419227 -27900,7112:352,-122,15,0,0,0.418477 -27901,7112:351,-121,15,0,0,0.413859 -27902,7112:350,-120,15,0,0,0.412787 -27903,7111:459,-119,15,0,0,0.404297 -27904,7111:458,-118,15,0,0,0.405015 -27905,7111:457,-117,15,0,0,0.420929 -27906,7111:456,-116,15,0,0,0.422808 -27907,7111:455,-115,15,0,0,0.43418 -27908,7111:354,-114,15,0,0,0.476631 -27909,7111:353,-113,15,0,0,0.523474 -27910,7111:351,-111,15,0,0,0.553721 -27911,7111:350,-110,15,0,0,0.557805 -27912,7109:457,-97,15,0,0,0.533049 -27913,7109:456,-96,15,0,0,0.559907 -27914,7109:455,-95,15,0,0,0.548993 -27915,7109:354,-94,15,0,0,0.553898 -27916,7109:353,-93,15,0,0,0.560287 -27917,7109:352,-92,15,0,0,0.570662 -27918,7109:351,-91,15,0,0,0.571317 -27919,7109:350,-90,15,0,0,0.569806 -27920,7108:459,-89,15,0,0,0.561856 -27921,7108:458,-88,15,0,0,0.57955 -27922,7108:457,-87,15,0,0,0.614631 -27923,7108:456,-86,15,0,0,0.616211 -27924,7108:455,-85,15,0,0,0.604041 -27925,7108:354,-84,15,0,0,0.543059 -27926,7108:353,-83,15,0,0,0.556715 -27927,7108:352,-82,15,0,0,0.523448 -27928,7108:350,-80,15,0,0,0.580175 -27929,7107:459,-79,15,0,0,0.532103 -27930,7107:458,-78,15,0,0,0.56509 -27931,7107:457,-77,15,0,0,0.593279 -27932,7107:456,-76,15,0,0,0.586618 -27933,7107:455,-75,15,0,0,0.583625 -27934,7107:354,-74,15,0,0,0.574283 -27935,7107:353,-73,15,0,0,0.577144 -27936,7107:352,-72,15,0,0,0.572649 -27937,7107:351,-71,15,0,0,0.574936 -27938,7107:350,-70,15,0,0,0.571568 -27939,7106:459,-69,15,0,0,0.571291 -27940,7106:458,-68,15,0,0,0.57041 -27941,7106:457,-67,15,0,0,0.567387 -27942,7106:456,-66,15,0,0,0.571266 -27943,7106:455,-65,15,0,0,0.575187 -27944,7106:354,-64,15,0,0,0.573153 -27945,7106:353,-63,15,0,0,0.573203 -27946,7106:352,-62,15,0,0,0.575413 -27947,7106:351,-61,15,0,0,0.57031 -27948,7106:350,-60,15,0,0,0.565343 -27949,7105:459,-59,15,0,0,0.572197 -27950,7105:458,-58,15,0,0,0.573253 -27951,7105:457,-57,15,0,0,0.579674 -27952,7105:456,-56,15,0,0,0.582251 -27953,7105:455,-55,15,0,0,0.583874 -27954,7105:354,-54,15,0,0,0.581901 -27955,7105:353,-53,15,0,0,0.581576 -27956,7105:352,-52,15,0,0,0.574409 -27957,7105:351,-51,15,0,0,0.567462 -27958,7105:350,-50,15,0,0,0.564485 -27959,7104:459,-49,15,0,0,0.562387 -27960,7104:458,-48,15,0,0,0.559983 -27961,7104:457,-47,15,0,0,0.555802 -27962,7104:456,-46,15,0,0,0.553594 -27963,7104:455,-45,15,0,0,0.553086 -27964,7104:354,-44,15,0,0,0.551333 -27965,7104:353,-43,15,0,0,0.550011 -27966,7104:352,-42,15,0,0,0.550164 -27967,7104:351,-41,15,0,0,0.548943 -27968,7104:350,-40,15,0,0,0.544614 -27969,7103:459,-39,15,0,0,0.541096 -27970,7103:458,-38,15,0,0,0.539412 -27971,7103:457,-37,15,0,0,0.53627 -27972,7103:456,-36,15,0,0,0.535325 -27973,7103:455,-35,15,0,0,0.533918 -27974,7103:354,-34,15,0,0,0.532333 -27975,7103:353,-33,15,0,0,0.530107 -27976,7103:352,-32,15,0,0,0.527854 -27977,7103:351,-31,15,0,0,0.52414 -27978,7103:350,-30,15,0,0,0.520243 -27979,7102:459,-29,15,0,0,0.517422 -27980,7102:458,-28,15,0,0,0.514856 -27981,7102:457,-27,15,0,0,0.514985 -27982,7102:456,-26,15,0,0,0.513342 -27983,7102:455,-25,15,0,0,0.511417 -27984,7102:354,-24,15,0,0,0.510158 -27985,7102:353,-23,15,0,0,0.511391 -27986,7102:352,-22,15,0,0,0.514574 -27987,7102:351,-21,15,0,0,0.512366 -27988,7102:350,-20,15,0,0,0.509183 -27989,7101:459,-19,15,0,0,0.505383 -27990,7101:458,-18,15,0,0,0.487482 -27991,7101:457,-17,15,0,0,0.477144 -27992,7101:456,-16,15,0,0,0.467184 -27993,7101:455,-15,15,0,0,0.429014 -27994,1103:455,35,15,0,0,0.567639 -27995,1103:456,36,15,0,0,0.597313 -27996,1105:352,52,15,0,0,0.541479 -27997,1105:353,53,15,0,0,0.547721 -27998,1105:354,54,15,0,0,0.559097 -27999,1105:455,55,15,0,0,0.564156 -28000,1105:457,57,15,0,0,0.567891 -28001,1105:458,58,15,0,0,0.569655 -28002,1112:350,120,15,0,0,0.401405 -28003,1112:351,121,15,0,0,0.500888 -28004,1112:352,122,15,0,0,0.512444 -28005,1112:353,123,15,0,0,0.548892 -28006,1112:354,124,15,0,0,0.543161 -28007,1112:455,125,15,0,0,0.537522 -28008,1112:456,126,15,0,0,0.524294 -28009,1112:457,127,15,0,0,0.53512 -28010,1112:458,128,15,0,0,0.536602 -28011,1112:459,129,15,0,0,0.539769 -28012,1113:350,130,15,0,0,0.537854 -28013,1113:351,131,15,0,0,0.529237 -28014,1113:352,132,15,0,0,0.535784 -28015,1113:353,133,15,0,0,0.536142 -28016,1113:354,134,15,0,0,0.540688 -28017,1113:455,135,15,0,0,0.527521 -28018,1113:456,136,15,0,0,0.526318 -28019,1113:457,137,15,0,0,0.545633 -28020,1113:458,138,15,0,0,0.550113 -28021,1113:459,139,15,0,0,0.554102 -28022,1114:350,140,15,0,0,0.551918 -28023,1114:351,141,15,0,0,0.561375 -28024,1114:352,142,15,0,0,0.562589 -28025,1114:353,143,15,0,0,0.560996 -28026,1114:354,144,15,0,0,0.562058 -28027,1114:455,145,15,0,0,0.570486 -28028,1114:456,146,15,0,0,0.575262 -28029,1114:457,147,15,0,0,0.582726 -28030,1114:458,148,15,0,0,0.588361 -28031,1114:459,149,15,0,0,0.58734 -28032,1115:350,150,15,0,0,0.58375 -28033,1115:351,151,15,0,0,0.578197 -28034,1115:352,152,15,0,0,0.576367 -28035,1115:353,153,15,0,0,0.578823 -28036,1115:354,154,15,0,0,0.576944 -28037,1115:455,155,15,0,0,0.576693 -28038,1115:456,156,15,0,0,0.578573 -28039,1115:457,157,15,0,0,0.579525 -28040,1115:458,158,15,0,0,0.578673 -28041,1115:459,159,15,0,0,0.573982 -28042,1116:350,160,15,0,0,0.571845 -28043,1116:351,161,15,0,0,0.571568 -28044,1116:352,162,15,0,0,0.568975 -28045,1116:353,163,15,0,0,0.567538 -28046,1116:354,164,15,0,0,0.568143 -28047,1116:455,165,15,0,0,0.567689 -28048,1116:456,166,15,0,0,0.575563 -28049,1116:457,167,15,0,0,0.575714 -28050,1116:458,168,15,0,0,0.566806 -28051,1116:459,169,15,0,0,0.567992 -28052,1117:350,170,15,0,0,0.571668 -28053,1117:351,171,15,0,0,0.570964 -28054,1117:352,172,15,0,0,0.565772 -28055,1117:353,173,15,0,0,0.563195 -28056,1117:354,174,15,0,0,0.558641 -28057,1117:455,175,15,0,0,0.553035 -28058,1117:456,176,15,0,0,0.545328 -28059,1117:457,177,15,0,0,0.551739 -28060,1117:458,178,15,0,0,0.538313 -28061,1117:459,179,15,0,0,0.535938 -28062,1118:350,180,15,0,0,0.545149 -28063,7118:360,-180,16,0,0,0.52332 -28064,7117:469,-179,16,0,0,0.509953 -28065,7117:468,-178,16,0,0,0.526523 -28066,7117:467,-177,16,0,0,0.520013 -28067,7117:466,-176,16,0,0,0.515934 -28068,7117:465,-175,16,0,0,0.506153 -28069,7117:364,-174,16,0,0,0.513471 -28070,7117:363,-173,16,0,0,0.508207 -28071,7117:362,-172,16,0,0,0.512495 -28072,7117:361,-171,16,0,0,0.509722 -28073,7117:360,-170,16,0,0,0.50004 -28074,7116:469,-169,16,0,0,0.516217 -28075,7116:468,-168,16,0,0,0.491873 -28076,7116:467,-167,16,0,0,0.501247 -28077,7116:466,-166,16,0,0,0.502531 -28078,7116:465,-165,16,0,0,0.50022 -28079,7116:364,-164,16,0,0,0.500246 -28080,7116:363,-163,16,0,0,0.501838 -28081,7116:362,-162,16,0,0,0.49629 -28082,7116:361,-161,16,0,0,0.493311 -28083,7116:360,-160,16,0,0,0.497754 -28084,7115:469,-159,16,0,0,0.497292 -28085,7115:468,-158,16,0,0,0.499835 -28086,7115:467,-157,16,0,0,0.492951 -28087,7115:466,-156,16,0,0,0.491308 -28088,7115:465,-155,16,0,0,0.493748 -28089,7115:364,-154,16,0,0,0.489999 -28090,7115:363,-153,16,0,0,0.490743 -28091,7115:362,-152,16,0,0,0.489973 -28092,7115:361,-151,16,0,0,0.488945 -28093,7115:360,-150,16,0,0,0.489485 -28094,7114:469,-149,16,0,0,0.489999 -28095,7114:468,-148,16,0,0,0.490126 -28096,7114:467,-147,16,0,0,0.486686 -28097,7114:466,-146,16,0,0,0.484197 -28098,7114:465,-145,16,0,0,0.480862 -28099,7114:364,-144,16,0,0,0.476452 -28100,7114:363,-143,16,0,0,0.472174 -28101,7114:362,-142,16,0,0,0.468668 -28102,7114:361,-141,16,0,0,0.466697 -28103,7114:360,-140,16,0,0,0.462455 -28104,7113:469,-139,16,0,0,0.456127 -28105,7113:468,-138,16,0,0,0.450908 -28106,7113:467,-137,16,0,0,0.442908 -28107,7113:466,-136,16,0,0,0.439311 -28108,7113:465,-135,16,0,0,0.433726 -28109,7113:364,-134,16,0,0,0.428183 -28110,7113:363,-133,16,0,0,0.42454 -28111,7113:362,-132,16,0,0,0.421806 -28112,7113:361,-131,16,0,0,0.418152 -28113,7113:360,-130,16,0,0,0.415604 -28114,7112:469,-129,16,0,0,0.414831 -28115,7112:468,-128,16,0,0,0.415679 -28116,7112:467,-127,16,0,0,0.411244 -28117,7112:466,-126,16,0,0,0.406402 -28118,7112:465,-125,16,0,0,0.40405 -28119,7112:364,-124,16,0,0,0.397609 -28120,7112:363,-123,16,0,0,0.391645 -28121,7112:362,-122,16,0,0,0.40101 -28122,7112:361,-121,16,0,0,0.404767 -28123,7112:360,-120,16,0,0,0.407171 -28124,7111:469,-119,16,0,0,0.397068 -28125,7111:468,-118,16,0,0,0.405312 -28126,7111:467,-117,16,0,0,0.408734 -28127,7111:466,-116,16,0,0,0.432364 -28128,7111:465,-115,16,0,0,0.479349 -28129,7111:364,-114,16,0,0,0.499886 -28130,7111:361,-111,16,0,0,0.54181 -28131,7111:360,-110,16,0,0,0.540713 -28132,7109:467,-97,16,0,0,0.514446 -28133,7109:466,-96,16,0,0,0.553492 -28134,7109:465,-95,16,0,0,0.547721 -28135,7109:364,-94,16,0,0,0.549884 -28136,7109:363,-93,16,0,0,0.550722 -28137,7109:362,-92,16,0,0,0.55207 -28138,7109:361,-91,16,0,0,0.567059 -28139,7109:360,-90,16,0,0,0.564787 -28140,7108:469,-89,16,0,0,0.547441 -28141,7108:468,-88,16,0,0,0.547518 -28142,7108:467,-87,16,0,0,0.544538 -28143,7108:466,-86,16,0,0,0.556689 -28144,7108:465,-85,16,0,0,0.536807 -28145,7108:364,-84,16,0,0,0.523859 -28146,7108:363,-83,16,0,0,0.511545 -28147,7108:360,-80,16,0,0,0.574635 -28148,7107:469,-79,16,0,0,0.533331 -28149,7107:468,-78,16,0,0,0.530952 -28150,7107:467,-77,16,0,0,0.579499 -28151,7107:466,-76,16,0,0,0.550875 -28152,7107:465,-75,16,0,0,0.550494 -28153,7107:364,-74,16,0,0,0.552527 -28154,7107:363,-73,16,0,0,0.547518 -28155,7107:362,-72,16,0,0,0.546677 -28156,7107:361,-71,16,0,0,0.54907 -28157,7107:360,-70,16,0,0,0.560338 -28158,7106:469,-69,16,0,0,0.56307 -28159,7106:468,-68,16,0,0,0.558236 -28160,7106:467,-67,16,0,0,0.553239 -28161,7106:466,-66,16,0,0,0.552374 -28162,7106:465,-65,16,0,0,0.562083 -28163,7106:364,-64,16,0,0,0.559603 -28164,7106:363,-63,16,0,0,0.556461 -28165,7106:362,-62,16,0,0,0.555979 -28166,7106:361,-61,16,0,0,0.557095 -28167,7106:360,-60,16,0,0,0.55113 -28168,7105:469,-59,16,0,0,0.547645 -28169,7105:468,-58,16,0,0,0.549477 -28170,7105:467,-57,16,0,0,0.553772 -28171,7105:466,-56,16,0,0,0.558236 -28172,7105:465,-55,16,0,0,0.548078 -28173,7105:364,-54,16,0,0,0.550011 -28174,7105:363,-53,16,0,0,0.558134 -28175,7105:362,-52,16,0,0,0.558083 -28176,7105:361,-51,16,0,0,0.553315 -28177,7105:360,-50,16,0,0,0.546092 -28178,7104:469,-49,16,0,0,0.546168 -28179,7104:468,-48,16,0,0,0.545684 -28180,7104:467,-47,16,0,0,0.543238 -28181,7104:466,-46,16,0,0,0.540688 -28182,7104:465,-45,16,0,0,0.542065 -28183,7104:364,-44,16,0,0,0.544334 -28184,7104:363,-43,16,0,0,0.54232 -28185,7104:362,-42,16,0,0,0.539998 -28186,7104:361,-41,16,0,0,0.538543 -28187,7104:360,-40,16,0,0,0.535376 -28188,7103:469,-39,16,0,0,0.533305 -28189,7103:468,-38,16,0,0,0.531975 -28190,7103:467,-37,16,0,0,0.527188 -28191,7103:466,-36,16,0,0,0.528725 -28192,7103:465,-35,16,0,0,0.522961 -28193,7103:364,-34,16,0,0,0.522193 -28194,7103:363,-33,16,0,0,0.517551 -28195,7103:362,-32,16,0,0,0.510262 -28196,7103:361,-31,16,0,0,0.517987 -28197,7103:360,-30,16,0,0,0.511648 -28198,7102:469,-29,16,0,0,0.509722 -28199,7102:468,-28,16,0,0,0.507077 -28200,7102:467,-27,16,0,0,0.506461 -28201,7102:466,-26,16,0,0,0.503867 -28202,7102:465,-25,16,0,0,0.501145 -28203,7102:364,-24,16,0,0,0.498628 -28204,7102:363,-23,16,0,0,0.499809 -28205,7102:362,-22,16,0,0,0.501632 -28206,7102:361,-21,16,0,0,0.500425 -28207,7102:360,-20,16,0,0,0.498962 -28208,7101:469,-19,16,0,0,0.495391 -28209,7101:468,-18,16,0,0,0.490229 -28210,7101:467,-17,16,0,0,0.485198 -28211,7101:466,-16,16,0,0,0.470075 -28212,7101:465,-15,16,0,0,0.46363 -28213,7101:364,-14,16,0,0,0.434938 -28214,1103:364,34,16,0,0,0.562513 -28215,1103:465,35,16,0,0,0.570335 -28216,1105:360,50,16,0,0,0.524781 -28217,1105:361,51,16,0,0,0.539335 -28218,1105:362,52,16,0,0,0.55113 -28219,1105:363,53,16,0,0,0.557602 -28220,1105:466,56,16,0,0,0.551003 -28221,1112:361,121,16,0,0,0.396798 -28222,1112:362,122,16,0,0,0.488895 -28223,1112:363,123,16,0,0,0.511853 -28224,1112:364,124,16,0,0,0.524985 -28225,1112:465,125,16,0,0,0.507308 -28226,1112:466,126,16,0,0,0.53862 -28227,1112:467,127,16,0,0,0.52514 -28228,1112:468,128,16,0,0,0.527471 -28229,1112:469,129,16,0,0,0.53021 -28230,1113:360,130,16,0,0,0.535223 -28231,1113:361,131,16,0,0,0.526395 -28232,1113:362,132,16,0,0,0.516037 -28233,1113:363,133,16,0,0,0.515472 -28234,1113:364,134,16,0,0,0.504663 -28235,1113:465,135,16,0,0,0.497087 -28236,1113:466,136,16,0,0,0.498113 -28237,1113:467,137,16,0,0,0.507925 -28238,1113:468,138,16,0,0,0.51306 -28239,1113:469,139,16,0,0,0.518038 -28240,1114:360,140,16,0,0,0.516217 -28241,1114:361,141,16,0,0,0.526036 -28242,1114:362,142,16,0,0,0.535223 -28243,1114:363,143,16,0,0,0.535478 -28244,1114:364,144,16,0,0,0.550113 -28245,1114:465,145,16,0,0,0.546372 -28246,1114:466,146,16,0,0,0.554914 -28247,1114:467,147,16,0,0,0.545404 -28248,1114:468,148,16,0,0,0.542346 -28249,1114:469,149,16,0,0,0.551028 -28250,1115:360,150,16,0,0,0.556233 -28251,1115:361,151,16,0,0,0.551078 -28252,1115:362,152,16,0,0,0.550825 -28253,1115:363,153,16,0,0,0.560135 -28254,1115:364,154,16,0,0,0.554914 -28255,1115:465,155,16,0,0,0.557374 -28256,1115:466,156,16,0,0,0.56403 -28257,1115:467,157,16,0,0,0.559704 -28258,1115:468,158,16,0,0,0.560945 -28259,1115:469,159,16,0,0,0.558869 -28260,1116:360,160,16,0,0,0.556309 -28261,1116:361,161,16,0,0,0.558438 -28262,1116:362,162,16,0,0,0.557855 -28263,1116:363,163,16,0,0,0.559578 -28264,1116:364,164,16,0,0,0.556689 -28265,1116:465,165,16,0,0,0.556866 -28266,1116:466,166,16,0,0,0.554305 -28267,1116:467,167,16,0,0,0.551942 -28268,1116:468,168,16,0,0,0.54996 -28269,1116:469,169,16,0,0,0.54818 -28270,1117:360,170,16,0,0,0.545633 -28271,1117:361,171,16,0,0,0.550799 -28272,1117:362,172,16,0,0,0.549451 -28273,1117:363,173,16,0,0,0.542626 -28274,1117:364,174,16,0,0,0.535734 -28275,1117:465,175,16,0,0,0.540406 -28276,1117:466,176,16,0,0,0.542524 -28277,1117:467,177,16,0,0,0.533484 -28278,1117:468,178,16,0,0,0.517756 -28279,1117:469,179,16,0,0,0.522372 -28280,1118:360,180,16,0,0,0.52332 -28281,7118:370,-180,17,0,0,0.489022 -28282,7117:479,-179,17,0,0,0.489022 -28283,7117:478,-178,17,0,0,0.486609 -28284,7117:477,-177,17,0,0,0.484736 -28285,7117:476,-176,17,0,0,0.478862 -28286,7117:475,-175,17,0,0,0.482427 -28287,7117:374,-174,17,0,0,0.485634 -28288,7117:373,-173,17,0,0,0.479733 -28289,7117:372,-172,17,0,0,0.488561 -28290,7117:371,-171,17,0,0,0.47635 -28291,7117:370,-170,17,0,0,0.483658 -28292,7116:479,-169,17,0,0,0.477888 -28293,7116:478,-168,17,0,0,0.470869 -28294,7116:477,-167,17,0,0,0.4804 -28295,7116:476,-166,17,0,0,0.473608 -28296,7116:475,-165,17,0,0,0.482581 -28297,7116:374,-164,17,0,0,0.474018 -28298,7116:373,-163,17,0,0,0.469051 -28299,7116:372,-162,17,0,0,0.481888 -28300,7116:371,-161,17,0,0,0.468872 -28301,7116:370,-160,17,0,0,0.479426 -28302,7115:479,-159,17,0,0,0.479785 -28303,7115:478,-158,17,0,0,0.475094 -28304,7115:477,-157,17,0,0,0.475991 -28305,7115:476,-156,17,0,0,0.474197 -28306,7115:475,-155,17,0,0,0.473199 -28307,7115:374,-154,17,0,0,0.470791 -28308,7115:373,-153,17,0,0,0.473557 -28309,7115:372,-152,17,0,0,0.479913 -28310,7115:371,-151,17,0,0,0.476145 -28311,7115:370,-150,17,0,0,0.476811 -28312,7114:479,-149,17,0,0,0.476888 -28313,7114:478,-148,17,0,0,0.476606 -28314,7114:477,-147,17,0,0,0.47717 -28315,7114:476,-146,17,0,0,0.476504 -28316,7114:475,-145,17,0,0,0.473762 -28317,7114:374,-144,17,0,0,0.47243 -28318,7114:373,-143,17,0,0,0.470101 -28319,7114:372,-142,17,0,0,0.466825 -28320,7114:371,-141,17,0,0,0.460745 -28321,7114:370,-140,17,0,0,0.456586 -28322,7113:479,-139,17,0,0,0.451518 -28323,7113:478,-138,17,0,0,0.446663 -28324,7113:477,-137,17,0,0,0.442477 -28325,7113:476,-136,17,0,0,0.437288 -28326,7113:475,-135,17,0,0,0.432414 -28327,7113:374,-134,17,0,0,0.426222 -28328,7113:373,-133,17,0,0,0.418302 -28329,7113:372,-132,17,0,0,0.41229 -28330,7113:371,-131,17,0,0,0.409355 -28331,7113:370,-130,17,0,0,0.406278 -28332,7112:479,-129,17,0,0,0.401454 -28333,7112:478,-128,17,0,0,0.399703 -28334,7112:477,-127,17,0,0,0.393776 -28335,7112:476,-126,17,0,0,0.390568 -28336,7112:475,-125,17,0,0,0.39358 -28337,7112:374,-124,17,0,0,0.386492 -28338,7112:373,-123,17,0,0,0.379379 -28339,7112:372,-122,17,0,0,0.37595 -28340,7112:371,-121,17,0,0,0.374529 -28341,7112:370,-120,17,0,0,0.37636 -28342,7111:479,-119,17,0,0,0.381922 -28343,7111:478,-118,17,0,0,0.379935 -28344,7111:477,-117,17,0,0,0.384861 -28345,7111:476,-116,17,0,0,0.450908 -28346,7111:475,-115,17,0,0,0.453834 -28347,7111:372,-112,17,0,0,0.521731 -28348,7109:476,-96,17,0,0,0.463962 -28349,7109:475,-95,17,0,0,0.488252 -28350,7109:374,-94,17,0,0,0.498396 -28351,7109:373,-93,17,0,0,0.508875 -28352,7109:372,-92,17,0,0,0.51057 -28353,7109:371,-91,17,0,0,0.513624 -28354,7109:370,-90,17,0,0,0.521654 -28355,7108:479,-89,17,0,0,0.526907 -28356,7108:478,-88,17,0,0,0.525063 -28357,7108:477,-87,17,0,0,0.523397 -28358,7108:476,-86,17,0,0,0.52724 -28359,7108:475,-85,17,0,0,0.498447 -28360,7108:374,-84,17,0,0,0.479913 -28361,7108:373,-83,17,0,0,0.443593 -28362,7108:370,-80,17,0,0,0.559755 -28363,7107:479,-79,17,0,0,0.58734 -28364,7107:478,-78,17,0,0,0.577069 -28365,7107:477,-77,17,0,0,0.574861 -28366,7107:476,-76,17,0,0,0.547543 -28367,7107:475,-75,17,0,0,0.544436 -28368,7107:374,-74,17,0,0,0.543085 -28369,7107:373,-73,17,0,0,0.543697 -28370,7107:372,-72,17,0,0,0.532384 -28371,7107:371,-71,17,0,0,0.540509 -28372,7107:370,-70,17,0,0,0.539973 -28373,7106:479,-69,17,0,0,0.53512 -28374,7106:478,-68,17,0,0,0.541479 -28375,7106:477,-67,17,0,0,0.539258 -28376,7106:476,-66,17,0,0,0.532998 -28377,7106:475,-65,17,0,0,0.533279 -28378,7106:374,-64,17,0,0,0.53558 -28379,7106:373,-63,17,0,0,0.537497 -28380,7106:372,-62,17,0,0,0.540382 -28381,7106:371,-61,17,0,0,0.543672 -28382,7106:370,-60,17,0,0,0.539386 -28383,7105:479,-59,17,0,0,0.534609 -28384,7105:478,-58,17,0,0,0.526318 -28385,7105:477,-57,17,0,0,0.517037 -28386,7105:476,-56,17,0,0,0.521398 -28387,7105:475,-55,17,0,0,0.536551 -28388,7105:374,-54,17,0,0,0.533791 -28389,7105:373,-53,17,0,0,0.525754 -28390,7105:372,-52,17,0,0,0.52724 -28391,7105:371,-51,17,0,0,0.533586 -29690,1212:131,121,23,0,0,0.21556 -28392,7105:370,-50,17,0,0,0.532231 -28393,7104:479,-49,17,0,0,0.523859 -28394,7104:478,-48,17,0,0,0.518731 -28395,7104:477,-47,17,0,0,0.523012 -28396,7104:476,-46,17,0,0,0.526267 -28397,7104:475,-45,17,0,0,0.524243 -28398,7104:374,-44,17,0,0,0.526702 -28399,7104:373,-43,17,0,0,0.527932 -28400,7104:372,-42,17,0,0,0.525088 -28401,7104:371,-41,17,0,0,0.523961 -28402,7104:370,-40,17,0,0,0.517089 -28403,7103:479,-39,17,0,0,0.516139 -28404,7103:478,-38,17,0,0,0.518269 -28405,7103:477,-37,17,0,0,0.514651 -28406,7103:476,-36,17,0,0,0.506975 -28407,7103:475,-35,17,0,0,0.503585 -28408,7103:374,-34,17,0,0,0.501555 -28409,7103:373,-33,17,0,0,0.497703 -28410,7103:372,-32,17,0,0,0.494004 -28411,7103:371,-31,17,0,0,0.493414 -28412,7103:370,-30,17,0,0,0.492438 -28413,7102:479,-29,17,0,0,0.496367 -28414,7102:478,-28,17,0,0,0.494261 -28415,7102:477,-27,17,0,0,0.490743 -28416,7102:476,-26,17,0,0,0.489818 -28417,7102:475,-25,17,0,0,0.490383 -28418,7102:374,-24,17,0,0,0.486686 -28419,7102:373,-23,17,0,0,0.489767 -28420,7102:372,-22,17,0,0,0.490075 -28421,7102:371,-21,17,0,0,0.485198 -28422,7102:370,-20,17,0,0,0.486404 -28423,7101:479,-19,17,0,0,0.487148 -28424,7101:478,-18,17,0,0,0.483402 -28425,7101:476,-16,17,0,0,0.475145 -28426,7101:475,-15,17,0,0,0.470203 -28427,7101:374,-14,17,0,0,0.450959 -28428,7101:373,-13,17,0,0,0.427202 -28429,7101:372,-12,17,0,0,0.411742 -28430,1103:373,33,17,0,0,0.515755 -28431,1104:479,49,17,0,0,0.522833 -28432,1105:370,50,17,0,0,0.539616 -28433,1105:371,51,17,0,0,0.529596 -28434,1112:372,122,17,0,0,0.356164 -28435,1112:373,123,17,0,0,0.445191 -28436,1112:374,124,17,0,0,0.464346 -28437,1112:475,125,17,0,0,0.470126 -28438,1112:476,126,17,0,0,0.506949 -28439,1112:477,127,17,0,0,0.5342 -28440,1112:478,128,17,0,0,0.523833 -28441,1112:479,129,17,0,0,0.521039 -28442,1113:370,130,17,0,0,0.519808 -28443,1113:371,131,17,0,0,0.522833 -28444,1113:372,132,17,0,0,0.522038 -28445,1113:373,133,17,0,0,0.512597 -28446,1113:374,134,17,0,0,0.502403 -28447,1113:475,135,17,0,0,0.49046 -28448,1113:476,136,17,0,0,0.483787 -28449,1113:477,137,17,0,0,0.480785 -28450,1113:478,138,17,0,0,0.48548 -28451,1113:479,139,17,0,0,0.50248 -28452,1114:370,140,17,0,0,0.508952 -28453,1114:371,141,17,0,0,0.516345 -28454,1114:372,142,17,0,0,0.521398 -28455,1114:373,143,17,0,0,0.514933 -28456,1114:374,144,17,0,0,0.512854 -28457,1114:475,145,17,0,0,0.521808 -28458,1114:476,146,17,0,0,0.52414 -28459,1114:477,147,17,0,0,0.511622 -28460,1114:478,148,17,0,0,0.515986 -28461,1114:479,149,17,0,0,0.52765 -28462,1115:370,150,17,0,0,0.525523 -28463,1115:371,151,17,0,0,0.532001 -28464,1115:372,152,17,0,0,0.53351 -28465,1115:373,153,17,0,0,0.531336 -28466,1115:374,154,17,0,0,0.532154 -28467,1115:475,155,17,0,0,0.536168 -28468,1115:476,156,17,0,0,0.533638 -28469,1115:477,157,17,0,0,0.535555 -28470,1115:478,158,17,0,0,0.535862 -28471,1115:479,159,17,0,0,0.536704 -28472,1116:370,160,17,0,0,0.537829 -28473,1116:371,161,17,0,0,0.538569 -28474,1116:372,162,17,0,0,0.53982 -28475,1116:373,163,17,0,0,0.539896 -28476,1116:374,164,17,0,0,0.540738 -28477,1116:475,165,17,0,0,0.536807 -28478,1116:476,166,17,0,0,0.534046 -28479,1116:477,167,17,0,0,0.534813 -28480,1116:478,168,17,0,0,0.533459 -28481,1116:479,169,17,0,0,0.521679 -28482,1117:370,170,17,0,0,0.512597 -28483,1117:371,171,17,0,0,0.520141 -28484,1117:372,172,17,0,0,0.525114 -28485,1117:373,173,17,0,0,0.520526 -28486,1117:374,174,17,0,0,0.508824 -28487,1117:475,175,17,0,0,0.501016 -28488,1117:476,176,17,0,0,0.510596 -28489,1117:477,177,17,0,0,0.506051 -28490,1117:478,178,17,0,0,0.504535 -28491,1117:479,179,17,0,0,0.501838 -28492,1118:370,180,17,0,0,0.489022 -28493,7118:380,-180,18,0,0,0.463707 -28494,7117:489,-179,18,0,0,0.461689 -28495,7117:488,-178,18,0,0,0.456536 -28496,7117:487,-177,18,0,0,0.45702 -28497,7117:486,-176,18,0,0,0.449382 -28498,7117:485,-175,18,0,0,0.44867 -28499,7117:384,-174,18,0,0,0.452179 -28500,7117:383,-173,18,0,0,0.444404 -28501,7117:382,-172,18,0,0,0.443136 -28502,7117:381,-171,18,0,0,0.447171 -28503,7117:380,-170,18,0,0,0.448721 -28504,7116:489,-169,18,0,0,0.445952 -28505,7116:488,-168,18,0,0,0.445267 -28506,7116:487,-167,18,0,0,0.443567 -28507,7116:486,-166,18,0,0,0.440957 -28508,7116:485,-165,18,0,0,0.441084 -28509,7116:384,-164,18,0,0,0.444379 -28510,7116:383,-163,18,0,0,0.443795 -28511,7116:382,-162,18,0,0,0.448086 -28512,7116:381,-161,18,0,0,0.452358 -28513,7116:380,-160,18,0,0,0.453784 -28514,7115:489,-159,18,0,0,0.44984 -28515,7115:488,-158,18,0,0,0.44585 -28516,7115:487,-157,18,0,0,0.446841 -28517,7115:486,-156,18,0,0,0.451671 -28518,7115:485,-155,18,0,0,0.451035 -28519,7115:384,-154,18,0,0,0.452816 -28520,7115:383,-153,18,0,0,0.452562 -28521,7115:382,-152,18,0,0,0.451009 -28522,7115:381,-151,18,0,0,0.446993 -28523,7115:380,-150,18,0,0,0.452587 -28524,7114:489,-149,18,0,0,0.45952 -28525,7114:488,-148,18,0,0,0.455975 -28526,7114:487,-147,18,0,0,0.452179 -28527,7114:486,-146,18,0,0,0.456179 -28528,7114:485,-145,18,0,0,0.449407 -28529,7114:384,-144,18,0,0,0.45045 -28530,7114:383,-143,18,0,0,0.447272 -28531,7114:382,-142,18,0,0,0.445369 -28532,7114:381,-141,18,0,0,0.441008 -28533,7114:380,-140,18,0,0,0.438173 -28534,7113:489,-139,18,0,0,0.43239 -28535,7113:488,-138,18,0,0,0.428712 -28536,7113:487,-137,18,0,0,0.42665 -28537,7113:486,-136,18,0,0,0.422984 -28538,7113:485,-135,18,0,0,0.419102 -28539,7113:384,-134,18,0,0,0.412912 -28540,7113:383,-133,18,0,0,0.410896 -28541,7113:382,-132,18,0,0,0.407022 -28542,7113:381,-131,18,0,0,0.402541 -28543,7113:380,-130,18,0,0,0.398841 -28544,7112:489,-129,18,0,0,0.392772 -28545,7112:488,-128,18,0,0,0.38384 -28546,7112:487,-127,18,0,0,0.377566 -28547,7112:486,-126,18,0,0,0.377711 -28548,7112:485,-125,18,0,0,0.381219 -28549,7112:384,-124,18,0,0,0.377277 -28550,7112:383,-123,18,0,0,0.373158 -28551,7112:382,-122,18,0,0,0.372413 -28552,7112:381,-121,18,0,0,0.370901 -28553,7112:380,-120,18,0,0,0.366215 -28554,7111:489,-119,18,0,0,0.372053 -28555,7111:488,-118,18,0,0,0.367719 -28556,7111:487,-117,18,0,0,0.374866 -28557,7111:486,-116,18,0,0,0.424239 -28558,7111:383,-113,18,0,0,0.505793 -28559,7109:384,-94,18,0,0,0.382674 -28560,7109:383,-93,18,0,0,0.385299 -28561,7109:382,-92,18,0,0,0.39412 -28562,7108:489,-89,18,0,0,0.428561 -28563,7108:488,-88,18,0,0,0.486327 -28564,7108:487,-87,18,0,0,0.51021 -28565,7108:486,-86,18,0,0,0.478452 -28566,7108:485,-85,18,0,0,0.42567 -28567,7108:384,-84,18,0,0,0.429215 -28568,7108:381,-81,18,0,0,0.498859 -28569,7108:380,-80,18,0,0,0.566024 -28570,7107:489,-79,18,0,0,0.557932 -28571,7107:488,-78,18,0,0,0.550951 -28572,7107:487,-77,18,0,0,0.551383 -28573,7107:486,-76,18,0,0,0.55273 -28574,7107:485,-75,18,0,0,0.539437 -28575,7107:384,-74,18,0,0,0.52957 -28576,7107:383,-73,18,0,0,0.52875 -28577,7107:382,-72,18,0,0,0.526753 -28578,7107:381,-71,18,0,0,0.526779 -28579,7107:380,-70,18,0,0,0.526241 -28580,7106:489,-69,18,0,0,0.521757 -28581,7106:488,-68,18,0,0,0.518602 -28582,7106:487,-67,18,0,0,0.517551 -28583,7106:486,-66,18,0,0,0.523986 -28584,7106:485,-65,18,0,0,0.521731 -28585,7106:384,-64,18,0,0,0.518987 -28586,7106:383,-63,18,0,0,0.520526 -28587,7106:382,-62,18,0,0,0.517525 -28588,7106:381,-61,18,0,0,0.512957 -28589,7106:380,-60,18,0,0,0.512521 -28590,7105:489,-59,18,0,0,0.514471 -28591,7105:488,-58,18,0,0,0.507668 -28592,7105:487,-57,18,0,0,0.503302 -28593,7105:486,-56,18,0,0,0.506512 -28594,7105:485,-55,18,0,0,0.505819 -28595,7105:384,-54,18,0,0,0.500246 -28596,7105:383,-53,18,0,0,0.504227 -28597,7105:382,-52,18,0,0,0.507848 -28598,7105:381,-51,18,0,0,0.507694 -28599,7105:380,-50,18,0,0,0.505023 -28600,7104:489,-49,18,0,0,0.501915 -28601,7104:488,-48,18,0,0,0.504637 -28602,7104:487,-47,18,0,0,0.50623 -28603,7104:486,-46,18,0,0,0.505152 -28604,7104:485,-45,18,0,0,0.508978 -28605,7104:384,-44,18,0,0,0.513573 -28606,7104:383,-43,18,0,0,0.511674 -28607,7104:382,-42,18,0,0,0.507489 -31960,7313:466,-136,36,0,0,0.20022 -28608,7104:381,-41,18,0,0,0.506359 -28609,7104:380,-40,18,0,0,0.497009 -28610,7103:489,-39,18,0,0,0.502326 -28611,7103:488,-38,18,0,0,0.500297 -28612,7103:487,-37,18,0,0,0.4976 -28613,7103:486,-36,18,0,0,0.496367 -28614,7103:485,-35,18,0,0,0.490666 -28615,7103:384,-34,18,0,0,0.48679 -28616,7103:383,-33,18,0,0,0.486456 -28617,7103:382,-32,18,0,0,0.48235 -28618,7103:381,-31,18,0,0,0.480503 -28619,7103:380,-30,18,0,0,0.480836 -28620,7102:489,-29,18,0,0,0.480169 -28621,7102:488,-28,18,0,0,0.478708 -28622,7102:487,-27,18,0,0,0.480042 -28623,7102:486,-26,18,0,0,0.48117 -28624,7102:485,-25,18,0,0,0.475914 -28625,7102:384,-24,18,0,0,0.476324 -28626,7102:383,-23,18,0,0,0.478785 -28627,7102:382,-22,18,0,0,0.474479 -28628,7102:381,-21,18,0,0,0.473967 -28629,7102:380,-20,18,0,0,0.474582 -28630,7101:489,-19,18,0,0,0.471637 -28631,7101:488,-18,18,0,0,0.47266 -28632,7101:487,-17,18,0,0,0.474377 -28633,7101:486,-16,18,0,0,0.472993 -28634,7101:485,-15,18,0,0,0.46854 -28635,7101:384,-14,18,0,0,0.463707 -28636,7101:383,-13,18,0,0,0.461434 -28637,7101:382,-12,18,0,0,0.453555 -28638,7101:381,-11,18,0,0,0.444151 -28639,1104:488,48,18,0,0,0.469921 -28640,1104:489,49,18,0,0,0.510518 -28641,1105:380,50,18,0,0,0.523781 -28642,1112:383,123,18,0,0,0.340494 -28643,1112:384,124,18,0,0,0.433827 -28644,1112:485,125,18,0,0,0.423009 -28645,1112:486,126,18,0,0,0.442731 -28646,1112:487,127,18,0,0,0.496753 -28647,1112:488,128,18,0,0,0.532077 -28648,1112:489,129,18,0,0,0.52519 -28649,1113:380,130,18,0,0,0.5225 -28650,1113:381,131,18,0,0,0.525063 -28651,1113:382,132,18,0,0,0.522731 -28652,1113:383,133,18,0,0,0.502968 -28653,1113:384,134,18,0,0,0.467286 -28654,1113:485,135,18,0,0,0.490101 -28655,1113:486,136,18,0,0,0.489151 -28656,1113:487,137,18,0,0,0.464601 -28657,1113:488,138,18,0,0,0.464295 -28658,1113:489,139,18,0,0,0.480169 -28659,1114:380,140,18,0,0,0.487046 -28660,1114:381,141,18,0,0,0.505177 -28661,1114:382,142,18,0,0,0.508028 -28662,1114:383,143,18,0,0,0.499963 -28663,1114:384,144,18,0,0,0.500605 -28664,1114:485,145,18,0,0,0.501555 -28665,1114:486,146,18,0,0,0.514549 -28666,1114:487,147,18,0,0,0.50659 -28667,1114:488,148,18,0,0,0.498962 -28668,1114:489,149,18,0,0,0.498165 -28669,1115:380,150,18,0,0,0.500271 -28670,1115:381,151,18,0,0,0.503508 -28671,1115:382,152,18,0,0,0.504098 -28672,1115:383,153,18,0,0,0.508053 -28673,1115:384,154,18,0,0,0.510544 -28674,1115:485,155,18,0,0,0.505665 -28675,1115:486,156,18,0,0,0.501863 -28676,1115:487,157,18,0,0,0.502378 -28677,1115:488,158,18,0,0,0.504355 -28678,1115:489,159,18,0,0,0.502454 -28679,1116:380,160,18,0,0,0.502095 -28680,1116:381,161,18,0,0,0.502814 -28681,1116:382,162,18,0,0,0.501941 -28682,1116:383,163,18,0,0,0.500322 -28683,1116:384,164,18,0,0,0.498987 -28684,1116:485,165,18,0,0,0.505665 -28685,1116:486,166,18,0,0,0.508207 -28686,1116:487,167,18,0,0,0.504869 -28687,1116:488,168,18,0,0,0.498653 -28688,1116:489,169,18,0,0,0.489382 -28689,1117:380,170,18,0,0,0.480375 -28690,1117:381,171,18,0,0,0.480759 -28691,1117:382,172,18,0,0,0.480785 -28692,1117:383,173,18,0,0,0.481272 -28693,1117:384,174,18,0,0,0.474658 -28694,1117:485,175,18,0,0,0.471099 -28695,1117:486,176,18,0,0,0.487226 -28696,1117:487,177,18,0,0,0.479272 -28697,1117:488,178,18,0,0,0.47179 -28698,1117:489,179,18,0,0,0.465189 -28699,1118:380,180,18,0,0,0.463707 -28700,7118:390,-180,19,0,0,0.439235 -28701,7117:499,-179,19,0,0,0.42768 -28702,7117:498,-178,19,0,0,0.435847 -28703,7117:497,-177,19,0,0,0.426499 -28704,7117:496,-176,19,0,0,0.42758 -28705,7117:495,-175,19,0,0,0.420879 -28706,7117:394,-174,19,0,0,0.418577 -28707,7117:393,-173,19,0,0,0.418802 -28708,7117:392,-172,19,0,0,0.41533 -28709,7117:391,-171,19,0,0,0.418802 -28710,7117:390,-170,19,0,0,0.417277 -28711,7116:499,-169,19,0,0,0.418277 -28712,7116:498,-168,19,0,0,0.41346 -28713,7116:497,-167,19,0,0,0.414482 -28714,7116:496,-166,19,0,0,0.414382 -28715,7116:495,-165,19,0,0,0.418802 -28716,7116:394,-164,19,0,0,0.424264 -28717,7116:393,-163,19,0,0,0.415879 -28718,7116:392,-162,19,0,0,0.411742 -28719,7116:391,-161,19,0,0,0.413759 -28720,7116:390,-160,19,0,0,0.419828 -28721,7115:499,-159,19,0,0,0.425519 -28722,7115:498,-158,19,0,0,0.423862 -28723,7115:497,-157,19,0,0,0.426926 -28724,7115:496,-156,19,0,0,0.429744 -28725,7115:495,-155,19,0,0,0.42577 -28726,7115:394,-154,19,0,0,0.418777 -28727,7115:393,-153,19,0,0,0.421305 -28728,7115:392,-152,19,0,0,0.430222 -28729,7115:391,-151,19,0,0,0.43307 -28730,7115:390,-150,19,0,0,0.429895 -28731,7114:499,-149,19,0,0,0.430776 -28732,7114:498,-148,19,0,0,0.432188 -28733,7114:497,-147,19,0,0,0.434307 -28734,7114:496,-146,19,0,0,0.435695 -28735,7114:495,-145,19,0,0,0.436504 -28736,7114:394,-144,19,0,0,0.4384 -28737,7114:393,-143,19,0,0,0.437313 -28738,7114:392,-142,19,0,0,0.434837 -28739,7114:391,-141,19,0,0,0.424916 -28740,7114:390,-140,19,0,0,0.42341 -28741,7113:499,-139,19,0,0,0.424163 -28742,7113:498,-138,19,0,0,0.423862 -28743,7113:497,-137,19,0,0,0.421631 -28744,7113:496,-136,19,0,0,0.416328 -28745,7113:495,-135,19,0,0,0.407766 -28746,7113:394,-134,19,0,0,0.399457 -28747,7113:393,-133,19,0,0,0.394316 -28748,7113:392,-132,19,0,0,0.393458 -28749,7113:391,-131,19,0,0,0.391816 -28750,7113:390,-130,19,0,0,0.390691 -28751,7112:499,-129,19,0,0,0.383646 -28752,7112:498,-128,19,0,0,0.371957 -28753,7112:497,-127,19,0,0,0.369608 -28754,7112:496,-126,19,0,0,0.364809 -28755,7112:495,-125,19,0,0,0.357343 -28756,7112:394,-124,19,0,0,0.349875 -28757,7112:393,-123,19,0,0,0.345797 -28758,7112:392,-122,19,0,0,0.339249 -28759,7112:391,-121,19,0,0,0.344264 -28760,7112:390,-120,19,0,0,0.349454 -28761,7111:499,-119,19,0,0,0.350764 -28762,7111:498,-118,19,0,0,0.361933 -28763,7111:497,-117,19,0,0,0.370207 -28764,7111:394,-114,19,0,0,0.49647 -28765,7108:391,-81,19,0,0,0.455363 -28766,7108:390,-80,19,0,0,0.517756 -28767,7107:499,-79,19,0,0,0.576567 -28768,7107:498,-78,19,0,0,0.558869 -28769,7107:497,-77,19,0,0,0.549732 -28770,7107:496,-76,19,0,0,0.555599 -28771,7107:495,-75,19,0,0,0.536602 -28772,7107:394,-74,19,0,0,0.516781 -28773,7107:393,-73,19,0,0,0.510749 -28774,7107:392,-72,19,0,0,0.518269 -28775,7107:391,-71,19,0,0,0.521731 -28776,7107:390,-70,19,0,0,0.518038 -28777,7106:499,-69,19,0,0,0.512521 -28778,7106:498,-68,19,0,0,0.508644 -28779,7106:497,-67,19,0,0,0.505717 -28780,7106:496,-66,19,0,0,0.503919 -28781,7106:495,-65,19,0,0,0.504124 -28782,7106:394,-64,19,0,0,0.50546 -28783,7106:393,-63,19,0,0,0.499089 -28784,7106:392,-62,19,0,0,0.496572 -28785,7106:391,-61,19,0,0,0.498268 -28786,7106:390,-60,19,0,0,0.491821 -28787,7105:499,-59,19,0,0,0.488432 -28788,7105:498,-58,19,0,0,0.485763 -28789,7105:497,-57,19,0,0,0.486225 -28790,7105:496,-56,19,0,0,0.484788 -28791,7105:495,-55,19,0,0,0.486635 -28792,7105:394,-54,19,0,0,0.486584 -28793,7105:393,-53,19,0,0,0.482504 -28794,7105:392,-52,19,0,0,0.478118 -28795,7105:391,-51,19,0,0,0.471969 -28796,7105:390,-50,19,0,0,0.473352 -28797,7104:499,-49,19,0,0,0.475376 -28798,7104:498,-48,19,0,0,0.481426 -28799,7104:497,-47,19,0,0,0.485019 -28800,7104:496,-46,19,0,0,0.479836 -28801,7104:495,-45,19,0,0,0.476171 -28802,7104:394,-44,19,0,0,0.486147 -28803,7104:393,-43,19,0,0,0.485275 -28804,7104:392,-42,19,0,0,0.48566 -28805,7104:391,-41,19,0,0,0.48625 -28806,7104:390,-40,19,0,0,0.486378 -28807,7103:499,-39,19,0,0,0.483042 -28808,7103:498,-38,19,0,0,0.475094 -28809,7103:497,-37,19,0,0,0.475581 -28810,7103:496,-36,19,0,0,0.476631 -28811,7103:495,-35,19,0,0,0.467721 -28812,7103:394,-34,19,0,0,0.468437 -28813,7103:393,-33,19,0,0,0.468488 -28814,7103:392,-32,19,0,0,0.471559 -28815,7103:391,-31,19,0,0,0.462328 -28816,7103:390,-30,19,0,0,0.460515 -28817,7102:499,-29,19,0,0,0.468872 -28818,7102:498,-28,19,0,0,0.462992 -28819,7102:497,-27,19,0,0,0.4598 -28820,7102:496,-26,19,0,0,0.458193 -28821,7102:495,-25,19,0,0,0.462915 -28822,7102:394,-24,19,0,0,0.465266 -28823,7102:393,-23,19,0,0,0.461204 -28824,7102:392,-22,19,0,0,0.457658 -28825,7102:391,-21,19,0,0,0.458116 -28826,7102:390,-20,19,0,0,0.460413 -28827,7101:499,-19,19,0,0,0.462123 -28828,7101:498,-18,19,0,0,0.460413 -28829,7101:497,-17,19,0,0,0.458448 -28830,7101:496,-16,19,0,0,0.454344 -28831,7101:495,-15,19,0,0,0.453427 -28832,7101:394,-14,19,0,0,0.450322 -28833,7101:393,-13,19,0,0,0.450069 -28834,7101:392,-12,19,0,0,0.443086 -28835,7101:391,-11,19,0,0,0.434408 -28836,1101:498,18,19,0,0,0.443922 -28837,1101:499,19,19,0,0,0.453809 -28838,1102:499,29,19,0,0,0.42123 -28839,1112:393,123,19,0,0,0.298907 -28840,1112:394,124,19,0,0,0.414731 -28841,1112:495,125,19,0,0,0.40846 -28842,1112:496,126,19,0,0,0.410647 -28843,1112:497,127,19,0,0,0.443086 -28844,1112:498,128,19,0,0,0.50623 -28845,1112:499,129,19,0,0,0.514805 -28846,1113:390,130,19,0,0,0.500477 -28847,1113:391,131,19,0,0,0.504894 -28848,1113:392,132,19,0,0,0.5205 -28849,1113:393,133,19,0,0,0.508028 -28850,1113:394,134,19,0,0,0.46432 -28851,1113:495,135,19,0,0,0.456255 -28852,1113:496,136,19,0,0,0.469384 -28853,1113:497,137,19,0,0,0.457938 -28854,1113:498,138,19,0,0,0.457351 -28855,1113:499,139,19,0,0,0.464781 -28856,1114:390,140,19,0,0,0.479708 -28857,1114:391,141,19,0,0,0.480785 -28858,1114:392,142,19,0,0,0.480811 -28859,1114:393,143,19,0,0,0.485711 -28860,1114:394,144,19,0,0,0.495288 -28861,1114:495,145,19,0,0,0.493722 -28862,1114:496,146,19,0,0,0.491154 -28863,1114:497,147,19,0,0,0.489177 -28864,1114:498,148,19,0,0,0.489279 -28865,1114:499,149,19,0,0,0.492694 -28866,1115:390,150,19,0,0,0.49236 -28867,1115:391,151,19,0,0,0.491128 -28868,1115:392,152,19,0,0,0.491462 -28869,1115:393,153,19,0,0,0.48951 -28870,1115:394,154,19,0,0,0.484915 -28871,1115:495,155,19,0,0,0.484659 -28872,1115:496,156,19,0,0,0.486378 -28873,1115:497,157,19,0,0,0.487072 -28874,1115:498,158,19,0,0,0.483273 -28875,1115:499,159,19,0,0,0.478426 -28876,1116:390,160,19,0,0,0.473301 -28877,1116:391,161,19,0,0,0.467388 -28878,1116:392,162,19,0,0,0.470996 -28879,1116:393,163,19,0,0,0.475017 -28880,1116:394,164,19,0,0,0.474325 -28881,1116:495,165,19,0,0,0.468437 -28882,1116:496,166,19,0,0,0.46749 -28883,1116:497,167,19,0,0,0.465036 -28884,1116:498,168,19,0,0,0.460642 -28885,1116:499,169,19,0,0,0.460719 -28886,1117:390,170,19,0,0,0.453249 -28887,1117:391,171,19,0,0,0.454472 -28888,1117:392,172,19,0,0,0.456408 -28889,1117:393,173,19,0,0,0.450577 -28890,1117:394,174,19,0,0,0.449763 -28891,1117:495,175,19,0,0,0.442072 -28892,1117:496,176,19,0,0,0.44613 -28893,1117:497,177,19,0,0,0.434736 -28894,1117:498,178,19,0,0,0.439741 -28895,1117:499,179,19,0,0,0.440223 -28896,1118:390,180,19,0,0,0.439235 -28897,7218:100,-180,20,0,0,0.407369 -28898,7217:209,-179,20,0,0,0.40259 -28899,7217:208,-178,20,0,0,0.391841 -28900,7217:207,-177,20,0,0,0.394709 -28901,7217:206,-176,20,0,0,0.389493 -28902,7217:205,-175,20,0,0,0.390471 -28903,7217:104,-174,20,0,0,0.392233 -28904,7217:103,-173,20,0,0,0.395053 -28905,7217:102,-172,20,0,0,0.396208 -28906,7217:101,-171,20,0,0,0.395544 -28907,7217:100,-170,20,0,0,0.396085 -28908,7216:209,-169,20,0,0,0.389981 -28909,7216:208,-168,20,0,0,0.379621 -28910,7216:207,-167,20,0,0,0.382747 -28911,7216:206,-166,20,0,0,0.38964 -28912,7216:205,-165,20,0,0,0.393384 -28913,7216:104,-164,20,0,0,0.395912 -28914,7216:103,-163,20,0,0,0.39788 -28915,7216:102,-162,20,0,0,0.395691 -28916,7216:101,-161,20,0,0,0.374962 -28917,7216:100,-160,20,0,0,0.40027 -28918,7215:209,-159,20,0,0,0.389127 -28919,7215:208,-158,20,0,0,0.403579 -28920,7215:207,-157,20,0,0,0.406402 -28921,7215:206,-156,20,0,0,0.401356 -28922,7215:205,-155,20,0,0,0.399086 -28923,7215:104,-154,20,0,0,0.40665 -28924,7215:103,-153,20,0,0,0.400368 -28925,7215:102,-152,20,0,0,0.41107 -28926,7215:101,-151,20,0,0,0.415604 -28927,7215:100,-150,20,0,0,0.416203 -28928,7214:209,-149,20,0,0,0.417802 -28929,7214:208,-148,20,0,0,0.415854 -28930,7214:207,-147,20,0,0,0.422733 -28931,7214:206,-146,20,0,0,0.427454 -28932,7214:205,-145,20,0,0,0.422533 -28934,7214:103,-143,20,0,0,0.415429 -28935,7214:102,-142,20,0,0,0.412165 -28936,7214:101,-141,20,0,0,0.411518 -28937,7214:100,-140,20,0,0,0.408635 -28938,7213:209,-139,20,0,0,0.408709 -28939,7213:208,-138,20,0,0,0.409355 -28940,7213:207,-137,20,0,0,0.405287 -28941,7213:206,-136,20,0,0,0.401504 -28942,7213:205,-135,20,0,0,0.392453 -28943,7213:104,-134,20,0,0,0.390397 -28944,7213:103,-133,20,0,0,0.387564 -28945,7213:102,-132,20,0,0,0.384034 -28946,7213:101,-131,20,0,0,0.376794 -28947,7213:100,-130,20,0,0,0.370351 -28948,7212:209,-129,20,0,0,0.360345 -28949,7212:208,-128,20,0,0,0.3451 -28950,7212:207,-127,20,0,0,0.348008 -28951,7212:206,-126,20,0,0,0.338995 -28952,7212:205,-125,20,0,0,0.331987 -28953,7212:104,-124,20,0,0,0.334658 -28954,7212:103,-123,20,0,0,0.327831 -28955,7212:102,-122,20,0,0,0.331349 -28956,7212:101,-121,20,0,0,0.331053 -28957,7212:100,-120,20,0,0,0.339571 -28958,7211:209,-119,20,0,0,0.348591 -28959,7211:208,-118,20,0,0,0.355976 -28960,7211:207,-117,20,0,0,0.351981 -28961,7208:100,-80,20,0,0,0.440172 -28962,7207:209,-79,20,0,0,0.506821 -28963,7207:208,-78,20,0,0,0.537854 -28964,7207:207,-77,20,0,0,0.565494 -28965,7207:206,-76,20,0,0,0.565797 -28966,7207:205,-75,20,0,0,0.540764 -28967,7207:104,-74,20,0,0,0.508002 -28968,7207:103,-73,20,0,0,0.512546 -28969,7207:102,-72,20,0,0,0.5004 -28970,7207:101,-71,20,0,0,0.511314 -28971,7207:100,-70,20,0,0,0.514625 -28972,7206:209,-69,20,0,0,0.509337 -28973,7206:208,-68,20,0,0,0.505844 -28974,7206:207,-67,20,0,0,0.500811 -28975,7206:206,-66,20,0,0,0.494158 -28976,7206:205,-65,20,0,0,0.491154 -28977,7206:104,-64,20,0,0,0.487482 -28978,7206:103,-63,20,0,0,0.486481 -28979,7206:102,-62,20,0,0,0.484813 -28980,7206:101,-61,20,0,0,0.4804 -28981,7206:100,-60,20,0,0,0.47817 -28982,7205:209,-59,20,0,0,0.477119 -28983,7205:208,-58,20,0,0,0.473583 -28984,7205:207,-57,20,0,0,0.472379 -28985,7205:206,-56,20,0,0,0.472455 -28986,7205:205,-55,20,0,0,0.471099 -28987,7205:104,-54,20,0,0,0.468642 -28988,7205:103,-53,20,0,0,0.465905 -28989,7205:102,-52,20,0,0,0.463273 -28990,7205:101,-51,20,0,0,0.459545 -28991,7205:100,-50,20,0,0,0.460056 -28992,7204:209,-49,20,0,0,0.461025 -28993,7204:208,-48,20,0,0,0.463758 -28994,7204:207,-47,20,0,0,0.460642 -28995,7204:206,-46,20,0,0,0.451035 -28996,7204:205,-45,20,0,0,0.452663 -28997,7204:104,-44,20,0,0,0.45804 -28998,7204:103,-43,20,0,0,0.466391 -28999,7204:102,-42,20,0,0,0.463273 -29000,7204:101,-41,20,0,0,0.468335 -29001,7204:100,-40,20,0,0,0.472507 -29002,7203:209,-39,20,0,0,0.469486 -29003,7203:208,-38,20,0,0,0.463273 -29004,7203:207,-37,20,0,0,0.454191 -29005,7203:206,-36,20,0,0,0.450272 -29006,7203:205,-35,20,0,0,0.45493 -29007,7203:104,-34,20,0,0,0.457862 -29008,7203:103,-33,20,0,0,0.456586 -29009,7203:102,-32,20,0,0,0.451264 -29010,7203:101,-31,20,0,0,0.447755 -29011,7203:100,-30,20,0,0,0.448899 -29012,7202:209,-29,20,0,0,0.449483 -29013,7202:208,-28,20,0,0,0.454981 -29014,7202:207,-27,20,0,0,0.447755 -29015,7202:206,-26,20,0,0,0.440881 -29016,7202:205,-25,20,0,0,0.444379 -29017,7202:104,-24,20,0,0,0.452205 -29018,7202:103,-23,20,0,0,0.448238 -29019,7202:102,-22,20,0,0,0.445242 -29020,7202:101,-21,20,0,0,0.450577 -29021,7202:100,-20,20,0,0,0.451747 -29022,7201:209,-19,20,0,0,0.450882 -29023,7201:208,-18,20,0,0,0.450043 -29024,7201:207,-17,20,0,0,0.446079 -29025,7201:206,-16,20,0,0,0.442604 -29026,7201:205,-15,20,0,0,0.445952 -29027,7201:104,-14,20,0,0,0.444632 -29028,7201:103,-13,20,0,0,0.445369 -29029,7201:102,-12,20,0,0,0.440552 -29030,7201:101,-11,20,0,0,0.423235 -29031,7201:100,-10,20,0,0,0.399161 -29032,1201:206,16,20,0,0,0.427881 -29033,1201:207,17,20,0,0,0.420779 -29034,1201:208,18,20,0,0,0.428661 -29035,1201:209,19,20,0,0,0.445064 -29036,1202:104,24,20,0,0,0.445318 -29037,1202:205,25,20,0,0,0.443618 -29038,1202:206,26,20,0,0,0.439944 -29039,1202:207,27,20,0,0,0.439362 -29040,1202:208,28,20,0,0,0.439792 -29041,1202:209,29,20,0,0,0.446511 -29042,1203:100,30,20,0,0,0.457938 -29043,1203:101,31,20,0,0,0.464499 -29044,1203:102,32,20,0,0,0.466851 -29045,1203:103,33,20,0,0,0.459672 -29046,1203:104,34,20,0,0,0.476709 -29047,1212:101,121,20,0,0,0.262279 -29048,1212:102,122,20,0,0,0.246307 -29049,1212:103,123,20,0,0,0.306759 -29050,1212:104,124,20,0,0,0.348918 -29051,1212:205,125,20,0,0,0.382116 -29052,1212:206,126,20,0,0,0.433903 -29053,1212:207,127,20,0,0,0.471687 -29054,1212:208,128,20,0,0,0.493696 -29055,1212:209,129,20,0,0,0.481195 -29056,1213:100,130,20,0,0,0.47243 -29057,1213:102,132,20,0,0,0.501787 -29058,1213:103,133,20,0,0,0.5185 -29059,1213:104,134,20,0,0,0.509414 -29060,1213:205,135,20,0,0,0.476555 -29061,1213:206,136,20,0,0,0.459086 -29062,1213:207,137,20,0,0,0.458091 -29063,1213:208,138,20,0,0,0.45975 -29064,1213:209,139,20,0,0,0.462762 -29065,1214:100,140,20,0,0,0.465982 -29066,1214:101,141,20,0,0,0.469153 -29067,1214:102,142,20,0,0,0.480016 -29068,1214:103,143,20,0,0,0.487174 -29069,1214:104,144,20,0,0,0.483658 -29070,1214:205,145,20,0,0,0.482453 -29071,1214:206,146,20,0,0,0.474197 -29072,1214:207,147,20,0,0,0.46946 -29073,1214:208,148,20,0,0,0.471637 -29074,1214:209,149,20,0,0,0.474325 -29075,1215:100,150,20,0,0,0.477119 -29076,1215:101,151,20,0,0,0.482529 -29077,1215:102,152,20,0,0,0.489074 -29078,1215:103,153,20,0,0,0.484607 -29079,1215:104,154,20,0,0,0.487328 -29080,1215:205,155,20,0,0,0.484531 -29081,1215:206,156,20,0,0,0.483146 -29082,1215:207,157,20,0,0,0.48548 -29083,1215:208,158,20,0,0,0.470715 -29084,1215:209,159,20,0,0,0.46031 -29085,1216:100,160,20,0,0,0.453478 -29086,1216:101,161,20,0,0,0.451543 -29087,1216:102,162,20,0,0,0.437945 -29088,1216:103,163,20,0,0,0.443618 -29089,1216:104,164,20,0,0,0.439488 -29090,1216:205,165,20,0,0,0.437996 -29091,1216:206,166,20,0,0,0.441641 -29092,1216:207,167,20,0,0,0.43307 -29093,1216:208,168,20,0,0,0.436807 -29094,1216:209,169,20,0,0,0.432919 -29095,1217:100,170,20,0,0,0.438552 -29096,1217:101,171,20,0,0,0.433373 -29097,1217:102,172,20,0,0,0.421656 -29098,1217:103,173,20,0,0,0.419303 -29099,1217:104,174,20,0,0,0.419027 -29100,1217:205,175,20,0,0,0.421556 -29101,1217:206,176,20,0,0,0.420528 -29102,1217:207,177,20,0,0,0.417277 -29103,1217:208,178,20,0,0,0.408983 -29104,1217:209,179,20,0,0,0.410647 -29105,1218:100,180,20,0,0,0.407369 -29106,7218:110,-180,21,0,0,0.377638 -29107,7217:219,-179,21,0,0,0.380735 -29108,7217:218,-178,21,0,0,0.374168 -29109,7217:217,-177,21,0,0,0.368436 -29110,7217:216,-176,21,0,0,0.364238 -29111,7217:215,-175,21,0,0,0.365214 -29112,7217:114,-174,21,0,0,0.372173 -29113,7217:113,-173,21,0,0,0.365857 -29114,7217:112,-172,21,0,0,0.371309 -29115,7217:111,-171,21,0,0,0.380008 -29116,7217:110,-170,21,0,0,0.381292 -29117,7216:219,-169,21,0,0,0.373518 -29118,7216:218,-168,21,0,0,0.363026 -29119,7216:217,-167,21,0,0,0.36343 -29120,7216:216,-166,21,0,0,0.365405 -29121,7216:215,-165,21,0,0,0.372245 -29122,7216:114,-164,21,0,0,0.360227 -29123,7216:113,-163,21,0,0,0.364857 -29124,7216:112,-162,21,0,0,0.357131 -29125,7216:111,-161,21,0,0,0.370662 -29126,7216:110,-160,21,0,0,0.381389 -29127,7215:219,-159,21,0,0,0.383718 -29128,7215:218,-158,21,0,0,0.377373 -29129,7215:217,-157,21,0,0,0.383694 -29130,7215:216,-156,21,0,0,0.377373 -29131,7215:215,-155,21,0,0,0.388223 -29132,7215:114,-154,21,0,0,0.382019 -29133,7215:113,-153,21,0,0,0.386224 -29134,7215:112,-152,21,0,0,0.39096 -29135,7215:111,-151,21,0,0,0.395839 -29136,7215:110,-150,21,0,0,0.399407 -29137,7214:219,-149,21,0,0,0.395519 -29138,7214:218,-148,21,0,0,0.401479 -29139,7214:217,-147,21,0,0,0.400492 -29140,7214:216,-146,21,0,0,0.400245 -29141,7214:215,-145,21,0,0,0.40551 -29142,7214:114,-144,21,0,0,0.404742 -29143,7214:113,-143,21,0,0,0.402665 -29144,7214:112,-142,21,0,0,0.399851 -29145,7214:111,-141,21,0,0,0.393286 -29146,7214:110,-140,21,0,0,0.388907 -29147,7213:219,-139,21,0,0,0.394709 -29148,7213:218,-138,21,0,0,0.399259 -29149,7213:217,-137,21,0,0,0.39211 -29150,7213:216,-136,21,0,0,0.389688 -29151,7213:215,-135,21,0,0,0.382456 -29152,7213:114,-134,21,0,0,0.380444 -29153,7213:113,-133,21,0,0,0.373543 -29154,7213:112,-132,21,0,0,0.369919 -29155,7213:111,-131,21,0,0,0.367002 -29156,7213:110,-130,21,0,0,0.349128 -29157,7212:219,-129,21,0,0,0.348311 -29158,7212:218,-128,21,0,0,0.349408 -29159,7212:217,-127,21,0,0,0.335872 -29160,7212:216,-126,21,0,0,0.334406 -29161,7212:215,-125,21,0,0,0.328079 -29162,7212:114,-124,21,0,0,0.311037 -29163,7212:113,-123,21,0,0,0.310442 -29164,7212:112,-122,21,0,0,0.317123 -29165,7212:111,-121,21,0,0,0.324961 -29166,7212:110,-120,21,0,0,0.334452 -29167,7211:219,-119,21,0,0,0.342111 -29168,7211:218,-118,21,0,0,0.336422 -29169,7207:219,-79,21,0,0,0.396798 -29170,7207:218,-78,21,0,0,0.440703 -29171,7207:217,-77,21,0,0,0.487508 -29172,7207:216,-76,21,0,0,0.55537 -29173,7207:215,-75,21,0,0,0.547568 -29174,7207:114,-74,21,0,0,0.512931 -29175,7207:113,-73,21,0,0,0.507489 -29176,7207:112,-72,21,0,0,0.500117 -29177,7207:111,-71,21,0,0,0.498165 -29178,7207:110,-70,21,0,0,0.498755 -29179,7206:219,-69,21,0,0,0.502044 -29180,7206:218,-68,21,0,0,0.503816 -29181,7206:217,-67,21,0,0,0.497292 -29182,7206:216,-66,21,0,0,0.498755 -29183,7206:215,-65,21,0,0,0.498294 -29184,7206:114,-64,21,0,0,0.498345 -29185,7206:113,-63,21,0,0,0.492617 -29186,7206:112,-62,21,0,0,0.480811 -29187,7206:111,-61,21,0,0,0.476964 -29188,7206:110,-60,21,0,0,0.477093 -29189,7205:219,-59,21,0,0,0.476247 -29190,7205:218,-58,21,0,0,0.471944 -29191,7205:217,-57,21,0,0,0.468233 -29192,7205:216,-56,21,0,0,0.467286 -29193,7205:215,-55,21,0,0,0.460413 -29194,7205:114,-54,21,0,0,0.452307 -29195,7205:113,-53,21,0,0,0.449687 -29196,7205:112,-52,21,0,0,0.448975 -29197,7205:111,-51,21,0,0,0.451671 -29198,7205:110,-50,21,0,0,0.44984 -29199,7204:219,-49,21,0,0,0.452231 -29200,7204:218,-48,21,0,0,0.449255 -29201,7204:217,-47,21,0,0,0.441616 -29202,7204:216,-46,21,0,0,0.437718 -29203,7204:215,-45,21,0,0,0.443136 -29204,7204:114,-44,21,0,0,0.439817 -29205,7204:113,-43,21,0,0,0.434888 -29206,7204:112,-42,21,0,0,0.443162 -29207,7204:111,-41,21,0,0,0.447857 -29208,7204:110,-40,21,0,0,0.445699 -29209,7203:219,-39,21,0,0,0.441919 -29210,7203:218,-38,21,0,0,0.433676 -29211,7203:217,-37,21,0,0,0.439691 -29212,7203:216,-36,21,0,0,0.442832 -29213,7203:215,-35,21,0,0,0.435923 -29214,7203:114,-34,21,0,0,0.435367 -29215,7203:113,-33,21,0,0,0.418627 -29216,7203:112,-32,21,0,0,0.440122 -29217,7203:111,-31,21,0,0,0.437718 -29218,7203:110,-30,21,0,0,0.434509 -29219,7202:219,-29,21,0,0,0.434787 -29220,7202:218,-28,21,0,0,0.439488 -29221,7202:217,-27,21,0,0,0.43128 -29222,7202:216,-26,21,0,0,0.426197 -29223,7202:215,-25,21,0,0,0.423912 -29224,7202:114,-24,21,0,0,0.427428 -29225,7202:113,-23,21,0,0,0.433827 -29226,7202:112,-22,21,0,0,0.434307 -29227,7202:111,-21,21,0,0,0.445699 -29228,7202:110,-20,21,0,0,0.443364 -29229,7201:219,-19,21,0,0,0.44154 -29230,7201:218,-18,21,0,0,0.442097 -29231,7201:217,-17,21,0,0,0.440577 -29232,7201:216,-16,21,0,0,0.437439 -29233,7201:215,-15,21,0,0,0.437894 -29234,7201:114,-14,21,0,0,0.437819 -29235,7201:113,-13,21,0,0,0.436479 -29236,7201:112,-12,21,0,0,0.435822 -29237,7201:111,-11,21,0,0,0.434382 -29238,7201:110,-10,21,0,0,0.433524 -29239,7200:219,-9,21,0,0,0.41346 -29240,7200:218,-8,21,0,0,0.394341 -29241,1201:111,11,21,0,0,0.386127 -29242,1201:112,12,21,0,0,0.408684 -29243,1201:113,13,21,0,0,0.410797 -29244,1201:114,14,21,0,0,0.419152 -29245,1201:215,15,21,0,0,0.408783 -29246,1201:216,16,21,0,0,0.425368 -29247,1201:217,17,21,0,0,0.418302 -29248,1201:218,18,21,0,0,0.40353 -29249,1201:219,19,21,0,0,0.416378 -29250,1202:110,20,21,0,0,0.413435 -29251,1202:111,21,21,0,0,0.429744 -29252,1202:112,22,21,0,0,0.43128 -29253,1202:113,23,21,0,0,0.424239 -29254,1202:114,24,21,0,0,0.424715 -29255,1202:215,25,21,0,0,0.420203 -29256,1202:216,26,21,0,0,0.428988 -29257,1202:217,27,21,0,0,0.430675 -29258,1202:218,28,21,0,0,0.426121 -29259,1202:219,29,21,0,0,0.432364 -29260,1203:110,30,21,0,0,0.43254 -29261,1203:111,31,21,0,0,0.441337 -29262,1203:112,32,21,0,0,0.441995 -29263,1203:113,33,21,0,0,0.450704 -29264,1203:114,34,21,0,0,0.479708 -29265,1212:112,122,21,0,0,0.229074 -29266,1212:113,123,21,0,0,0.302754 -29267,1212:114,124,21,0,0,0.384301 -29268,1212:215,125,21,0,0,0.417327 -29269,1212:216,126,21,0,0,0.446866 -29270,1212:218,128,21,0,0,0.481042 -29271,1212:219,129,21,0,0,0.468437 -29272,1213:110,130,21,0,0,0.402912 -29273,1213:114,134,21,0,0,0.485275 -29274,1213:215,135,21,0,0,0.497446 -29275,1213:216,136,21,0,0,0.500169 -29276,1213:217,137,21,0,0,0.504175 -29277,1213:218,138,21,0,0,0.501607 -29278,1213:219,139,21,0,0,0.494929 -29279,1214:110,140,21,0,0,0.490204 -29280,1214:111,141,21,0,0,0.480631 -29281,1214:112,142,21,0,0,0.472738 -29282,1214:113,143,21,0,0,0.478887 -29283,1214:114,144,21,0,0,0.477503 -29284,1214:215,145,21,0,0,0.470049 -29285,1214:216,146,21,0,0,0.470843 -29286,1214:217,147,21,0,0,0.473532 -29287,1214:218,148,21,0,0,0.462634 -29288,1214:219,149,21,0,0,0.461306 -29289,1215:110,150,21,0,0,0.469103 -29290,1215:111,151,21,0,0,0.473096 -29291,1215:112,152,21,0,0,0.483427 -29292,1215:113,153,21,0,0,0.483915 -29293,1215:114,154,21,0,0,0.474505 -29294,1215:215,155,21,0,0,0.476555 -29295,1215:216,156,21,0,0,0.478452 -29296,1215:217,157,21,0,0,0.478528 -29297,1215:218,158,21,0,0,0.475837 -29298,1215:219,159,21,0,0,0.463043 -29299,1216:110,160,21,0,0,0.453682 -29300,1216:111,161,21,0,0,0.431658 -29301,1216:112,162,21,0,0,0.421205 -29302,1216:113,163,21,0,0,0.417227 -29303,1216:114,164,21,0,0,0.411518 -29304,1216:215,165,21,0,0,0.41025 -29305,1216:216,166,21,0,0,0.412837 -29306,1216:217,167,21,0,0,0.413435 -29307,1216:218,168,21,0,0,0.412065 -29308,1216:219,169,21,0,0,0.408238 -29309,1217:110,170,21,0,0,0.406352 -29310,1217:111,171,21,0,0,0.403407 -29311,1217:112,172,21,0,0,0.400467 -29312,1217:113,173,21,0,0,0.395397 -29313,1217:114,174,21,0,0,0.385786 -29314,1217:215,175,21,0,0,0.379717 -29315,1217:216,176,21,0,0,0.37996 -29316,1217:217,177,21,0,0,0.380129 -29317,1217:218,178,21,0,0,0.37648 -29318,1217:219,179,21,0,0,0.375516 -29319,1218:110,180,21,0,0,0.377638 -29320,7218:120,-180,22,0,0,0.357791 -29321,7217:229,-179,22,0,0,0.353765 -29322,7217:228,-178,22,0,0,0.347472 -29323,7217:227,-177,22,0,0,0.343198 -29324,7217:226,-176,22,0,0,0.340125 -29325,7217:225,-175,22,0,0,0.340078 -29326,7217:124,-174,22,0,0,0.33918 -29327,7217:123,-173,22,0,0,0.338604 -29328,7217:122,-172,22,0,0,0.340078 -29329,7217:121,-171,22,0,0,0.342712 -29330,7217:120,-170,22,0,0,0.341325 -29331,7216:229,-169,22,0,0,0.332876 -29332,7216:228,-168,22,0,0,0.333219 -29333,7216:227,-167,22,0,0,0.33578 -29334,7216:226,-166,22,0,0,0.339203 -29335,7216:225,-165,22,0,0,0.337133 -29336,7216:124,-164,22,0,0,0.337961 -29337,7216:123,-163,22,0,0,0.335505 -29338,7216:122,-162,22,0,0,0.336147 -29339,7216:121,-161,22,0,0,0.342018 -29340,7216:120,-160,22,0,0,0.351349 -29341,7215:229,-159,22,0,0,0.359848 -29342,7215:228,-158,22,0,0,0.358075 -29343,7215:227,-157,22,0,0,0.359919 -29344,7215:226,-156,22,0,0,0.35487 -29345,7215:225,-155,22,0,0,0.358548 -29346,7215:124,-154,22,0,0,0.359233 -29347,7215:123,-153,22,0,0,0.365357 -29348,7215:122,-152,22,0,0,0.368746 -29349,7215:121,-151,22,0,0,0.370207 -29350,7215:120,-150,22,0,0,0.373855 -29351,7214:229,-149,22,0,0,0.376746 -29352,7214:228,-148,22,0,0,0.377663 -29353,7214:227,-147,22,0,0,0.382165 -29354,7214:226,-146,22,0,0,0.384448 -29355,7214:225,-145,22,0,0,0.387808 -29356,7214:124,-144,22,0,0,0.381485 -29357,7214:123,-143,22,0,0,0.379161 -29358,7214:122,-142,22,0,0,0.379717 -29359,7214:121,-141,22,0,0,0.376939 -29360,7214:120,-140,22,0,0,0.379209 -29361,7213:229,-139,22,0,0,0.377132 -29362,7213:228,-138,22,0,0,0.38435 -29363,7213:227,-137,22,0,0,0.380299 -29364,7213:226,-136,22,0,0,0.379476 -29365,7213:225,-135,22,0,0,0.372869 -29366,7213:124,-134,22,0,0,0.374529 -29367,7213:123,-133,22,0,0,0.363881 -29368,7213:122,-132,22,0,0,0.358618 -29369,7213:121,-131,22,0,0,0.355999 -29370,7213:120,-130,22,0,0,0.349128 -29371,7212:229,-129,22,0,0,0.336743 -29372,7212:228,-128,22,0,0,0.328669 -29373,7212:227,-127,22,0,0,0.322509 -29374,7212:226,-126,22,0,0,0.311014 -29375,7212:225,-125,22,0,0,0.307744 -29376,7212:124,-124,22,0,0,0.301173 -29377,7212:123,-123,22,0,0,0.300957 -29378,7212:122,-122,22,0,0,0.307088 -29379,7212:121,-121,22,0,0,0.308554 -29380,7207:227,-77,22,0,0,0.391645 -29381,7207:226,-76,22,0,0,0.454064 -29382,7207:225,-75,22,0,0,0.551435 -29383,7207:124,-74,22,0,0,0.523755 -29384,7207:123,-73,22,0,0,0.504303 -29385,7207:122,-72,22,0,0,0.484864 -29386,7207:121,-71,22,0,0,0.490974 -29387,7207:120,-70,22,0,0,0.493645 -29388,7206:229,-69,22,0,0,0.499372 -29389,7206:228,-68,22,0,0,0.499526 -29390,7206:227,-67,22,0,0,0.497728 -29391,7206:226,-66,22,0,0,0.493542 -29392,7206:225,-65,22,0,0,0.484326 -29393,7206:124,-64,22,0,0,0.47817 -29394,7206:123,-63,22,0,0,0.467644 -29395,7206:122,-62,22,0,0,0.453809 -29396,7206:121,-61,22,0,0,0.462328 -29397,7206:120,-60,22,0,0,0.467388 -29398,7205:229,-59,22,0,0,0.454089 -29399,7205:228,-58,22,0,0,0.441235 -29400,7205:227,-57,22,0,0,0.448492 -29401,7205:226,-56,22,0,0,0.439792 -29402,7205:225,-55,22,0,0,0.447121 -29403,7205:124,-54,22,0,0,0.449535 -29404,7205:123,-53,22,0,0,0.440906 -29405,7205:122,-52,22,0,0,0.441413 -29406,7205:121,-51,22,0,0,0.441463 -29407,7205:120,-50,22,0,0,0.436631 -29408,7204:229,-49,22,0,0,0.436833 -29409,7204:228,-48,22,0,0,0.436403 -29410,7204:227,-47,22,0,0,0.425017 -29411,7204:226,-46,22,0,0,0.431406 -29412,7204:225,-45,22,0,0,0.432011 -29413,7204:124,-44,22,0,0,0.426398 -29414,7204:123,-43,22,0,0,0.420353 -29415,7204:122,-42,22,0,0,0.420704 -29416,7204:121,-41,22,0,0,0.425594 -29417,7204:120,-40,22,0,0,0.432163 -29418,7203:229,-39,22,0,0,0.41528 -29419,7203:228,-38,22,0,0,0.405114 -29420,7203:227,-37,22,0,0,0.415081 -29421,7203:226,-36,22,0,0,0.417377 -29422,7203:225,-35,22,0,0,0.420003 -29423,7203:124,-34,22,0,0,0.416078 -29424,7203:123,-33,22,0,0,0.408535 -29425,7203:122,-32,22,0,0,0.412239 -29426,7203:121,-31,22,0,0,0.407171 -29427,7203:120,-30,22,0,0,0.410174 -29428,7202:229,-29,22,0,0,0.415155 -29429,7202:228,-28,22,0,0,0.419352 -29430,7202:227,-27,22,0,0,0.416627 -29431,7202:226,-26,22,0,0,0.400196 -29432,7202:225,-25,22,0,0,0.413909 -29433,7202:124,-24,22,0,0,0.411319 -29434,7202:123,-23,22,0,0,0.416528 -29435,7202:122,-22,22,0,0,0.417527 -29436,7202:121,-21,22,0,0,0.423887 -29437,7202:120,-20,22,0,0,0.425117 -29438,7201:229,-19,22,0,0,0.416952 -29439,7201:228,-18,22,0,0,0.425041 -29440,7201:227,-17,22,0,0,0.427907 -29441,7201:226,-16,22,0,0,0.43191 -29442,7201:225,-15,22,0,0,0.423335 -29443,7201:124,-14,22,0,0,0.431533 -29444,7201:123,-13,22,0,0,0.428108 -29445,7201:122,-12,22,0,0,0.427956 -29446,7201:121,-11,22,0,0,0.430801 -29447,7201:120,-10,22,0,0,0.423661 -29448,7200:229,-9,22,0,0,0.418127 -29449,7200:228,-8,22,0,0,0.408485 -29450,7200:227,-7,22,0,0,0.392649 -29451,1201:121,11,22,0,0,0.371837 -29452,1201:122,12,22,0,0,0.400591 -29453,1201:123,13,22,0,0,0.402072 -29454,1201:124,14,22,0,0,0.413261 -29455,1201:225,15,22,0,0,0.399876 -29456,1201:226,16,22,0,0,0.39466 -29457,1201:227,17,22,0,0,0.391866 -29458,1201:228,18,22,0,0,0.394954 -29459,1201:229,19,22,0,0,0.399604 -29460,1202:120,20,22,0,0,0.406327 -29461,1202:121,21,22,0,0,0.414606 -29462,1202:122,22,22,0,0,0.418952 -29463,1202:123,23,22,0,0,0.416903 -29464,1202:124,24,22,0,0,0.414482 -29465,1202:225,25,22,0,0,0.413659 -29466,1202:226,26,22,0,0,0.415779 -29467,1202:227,27,22,0,0,0.416478 -29468,1202:228,28,22,0,0,0.415829 -29469,1202:229,29,22,0,0,0.420679 -29470,1203:120,30,22,0,0,0.429014 -29471,1203:121,31,22,0,0,0.431028 -29472,1203:122,32,22,0,0,0.43754 -29473,1203:123,33,22,0,0,0.442173 -29474,1203:124,34,22,0,0,0.445064 -29475,1203:225,35,22,0,0,0.486943 -29476,1212:121,121,22,0,0,0.23859 -29477,1212:122,122,22,0,0,0.282347 -29478,1212:123,123,22,0,0,0.355316 -29479,1212:124,124,22,0,0,0.389737 -29480,1212:225,125,22,0,0,0.351162 -29481,1212:226,126,22,0,0,0.30139 -29482,1212:228,128,22,0,0,0.254367 -29483,1212:229,129,22,0,0,0.328442 -29484,1213:120,130,22,0,0,0.425694 -29485,1213:121,131,22,0,0,0.444658 -29486,1213:225,135,22,0,0,0.320604 -29487,1213:227,137,22,0,0,0.358193 -29488,1213:229,139,22,0,0,0.432414 -29489,1214:120,140,22,0,0,0.442629 -29490,1214:121,141,22,0,0,0.455057 -29491,1214:122,142,22,0,0,0.473941 -29492,1214:123,143,22,0,0,0.479247 -29493,1214:124,144,22,0,0,0.472763 -29494,1214:225,145,22,0,0,0.430877 -29495,1214:226,146,22,0,0,0.417802 -29496,1214:227,147,22,0,0,0.455618 -29497,1214:228,148,22,0,0,0.479118 -29498,1214:229,149,22,0,0,0.473121 -29499,1215:120,150,22,0,0,0.478554 -29500,1215:121,151,22,0,0,0.455236 -29501,1215:122,152,22,0,0,0.476504 -29502,1215:123,153,22,0,0,0.483633 -29503,1215:124,154,22,0,0,0.47999 -29504,1215:225,155,22,0,0,0.48135 -29505,1215:226,156,22,0,0,0.466289 -29506,1215:227,157,22,0,0,0.474941 -29507,1215:228,158,22,0,0,0.448822 -29508,1215:229,159,22,0,0,0.455057 -29509,1216:120,160,22,0,0,0.445927 -29510,1216:121,161,22,0,0,0.430474 -29511,1216:122,162,22,0,0,0.414706 -29512,1216:123,163,22,0,0,0.407692 -29513,1216:124,164,22,0,0,0.404223 -29514,1216:225,165,22,0,0,0.396921 -29515,1216:226,166,22,0,0,0.389664 -29516,1216:227,167,22,0,0,0.389713 -29517,1216:228,168,22,0,0,0.390642 -29518,1216:229,169,22,0,0,0.391523 -29519,1217:120,170,22,0,0,0.389542 -29520,1217:121,171,22,0,0,0.384642 -29521,1217:122,172,22,0,0,0.379669 -29522,1217:123,173,22,0,0,0.383452 -29523,1217:124,174,22,0,0,0.374866 -29524,1217:225,175,22,0,0,0.36956 -29525,1217:226,176,22,0,0,0.368842 -29526,1217:227,177,22,0,0,0.361293 -29527,1217:228,178,22,0,0,0.357603 -29528,1217:229,179,22,0,0,0.355811 -29529,1218:120,180,22,0,0,0.357791 -29530,7218:130,-180,23,0,0,0.334429 -29531,7217:239,-179,23,0,0,0.336513 -29532,7217:238,-178,23,0,0,0.333035 -29533,7217:237,-177,23,0,0,0.325774 -29534,7217:236,-176,23,0,0,0.327106 -29535,7217:235,-175,23,0,0,0.326745 -29536,7217:134,-174,23,0,0,0.32085 -29537,7217:133,-173,23,0,0,0.319576 -29538,7217:132,-172,23,0,0,0.318215 -29539,7217:131,-171,23,0,0,0.314925 -29540,7217:130,-170,23,0,0,0.313773 -29541,7216:239,-169,23,0,0,0.313331 -29542,7216:238,-168,23,0,0,0.316501 -29543,7216:237,-167,23,0,0,0.317969 -29544,7216:236,-166,23,0,0,0.320627 -29545,7216:235,-165,23,0,0,0.321433 -29546,7216:134,-164,23,0,0,0.321164 -29547,7216:133,-163,23,0,0,0.32085 -29548,7216:132,-162,23,0,0,0.321702 -29549,7216:131,-161,23,0,0,0.330439 -29550,7216:130,-160,23,0,0,0.330644 -29551,7215:239,-159,23,0,0,0.329213 -29552,7215:238,-158,23,0,0,0.333835 -29553,7215:237,-157,23,0,0,0.336972 -29554,7215:236,-156,23,0,0,0.337432 -29555,7215:235,-155,23,0,0,0.341025 -29556,7215:134,-154,23,0,0,0.342712 -29557,7215:133,-153,23,0,0,0.349618 -29558,7215:132,-152,23,0,0,0.352685 -29559,7215:131,-151,23,0,0,0.352286 -29560,7215:130,-150,23,0,0,0.349408 -29561,7214:239,-149,23,0,0,0.36134 -29562,7214:238,-148,23,0,0,0.353553 -29563,7214:237,-147,23,0,0,0.362836 -29564,7214:236,-146,23,0,0,0.35534 -29565,7214:235,-145,23,0,0,0.358783 -29566,7214:134,-144,23,0,0,0.361412 -29567,7214:133,-143,23,0,0,0.341533 -29568,7214:132,-142,23,0,0,0.346122 -29569,7214:131,-141,23,0,0,0.364547 -29570,7214:130,-140,23,0,0,0.355999 -29571,7213:239,-139,23,0,0,0.363145 -29572,7213:238,-138,23,0,0,0.357414 -29573,7213:237,-137,23,0,0,0.350016 -29574,7213:236,-136,23,0,0,0.364476 -29575,7213:235,-135,23,0,0,0.359848 -29576,7213:134,-134,23,0,0,0.358453 -29577,7213:133,-133,23,0,0,0.345053 -29578,7213:132,-132,23,0,0,0.340817 -29579,7213:131,-131,23,0,0,0.336032 -29580,7213:130,-130,23,0,0,0.32944 -29581,7212:239,-129,23,0,0,0.318058 -29582,7212:238,-128,23,0,0,0.307043 -29583,7212:237,-127,23,0,0,0.310904 -29584,7212:236,-126,23,0,0,0.316745 -29585,7212:235,-125,23,0,0,0.310046 -29586,7212:134,-124,23,0,0,0.293766 -29587,7212:133,-123,23,0,0,0.297274 -29588,7212:132,-122,23,0,0,0.296223 -29589,7207:235,-75,23,0,0,0.472148 -29590,7207:134,-74,23,0,0,0.540432 -29591,7207:133,-73,23,0,0,0.527496 -29592,7207:132,-72,23,0,0,0.481555 -29593,7207:131,-71,23,0,0,0.485198 -29594,7207:130,-70,23,0,0,0.502506 -29595,7206:239,-69,23,0,0,0.489228 -29596,7206:238,-68,23,0,0,0.49498 -29597,7206:237,-67,23,0,0,0.490589 -29598,7206:236,-66,23,0,0,0.474505 -29599,7206:235,-65,23,0,0,0.47284 -29600,7206:134,-64,23,0,0,0.466621 -29601,7206:133,-63,23,0,0,0.460234 -29602,7206:132,-62,23,0,0,0.462251 -29603,7206:131,-61,23,0,0,0.452791 -29604,7206:130,-60,23,0,0,0.443948 -29605,7205:239,-59,23,0,0,0.441489 -29606,7205:238,-58,23,0,0,0.435241 -29607,7205:237,-57,23,0,0,0.4306 -29608,7205:236,-56,23,0,0,0.430978 -29609,7205:235,-55,23,0,0,0.433095 -29610,7205:134,-54,23,0,0,0.428309 -29611,7205:133,-53,23,0,0,0.425946 -29612,7205:132,-52,23,0,0,0.433373 -29613,7205:131,-51,23,0,0,0.434837 -29614,7205:130,-50,23,0,0,0.424062 -29615,7204:239,-49,23,0,0,0.416103 -29616,7204:238,-48,23,0,0,0.419903 -29617,7204:237,-47,23,0,0,0.414033 -29618,7204:236,-46,23,0,0,0.416203 -29619,7204:235,-45,23,0,0,0.415305 -29620,7204:134,-44,23,0,0,0.409479 -29621,7204:133,-43,23,0,0,0.404817 -29622,7204:132,-42,23,0,0,0.400961 -29623,7204:131,-41,23,0,0,0.408213 -29624,7204:130,-40,23,0,0,0.405857 -29625,7203:239,-39,23,0,0,0.393434 -29626,7203:238,-38,23,0,0,0.39238 -29627,7203:237,-37,23,0,0,0.396158 -29628,7203:236,-36,23,0,0,0.400171 -29629,7203:235,-35,23,0,0,0.386492 -29630,7203:134,-34,23,0,0,0.396232 -29631,7203:133,-33,23,0,0,0.387394 -29632,7203:132,-32,23,0,0,0.389298 -29633,7203:131,-31,23,0,0,0.387126 -29634,7203:130,-30,23,0,0,0.385177 -29635,7202:239,-29,23,0,0,0.40222 -29636,7202:238,-28,23,0,0,0.391841 -29637,7202:237,-27,23,0,0,0.38367 -29638,7202:236,-26,23,0,0,0.391425 -29639,7202:235,-25,23,0,0,0.392453 -29640,7202:134,-24,23,0,0,0.402739 -29641,7202:133,-23,23,0,0,0.399235 -29642,7202:132,-22,23,0,0,0.406625 -29643,7202:131,-21,23,0,0,0.402443 -29644,7202:130,-20,23,0,0,0.405683 -29645,7201:239,-19,23,0,0,0.411443 -29646,7201:238,-18,23,0,0,0.410896 -29647,7201:237,-17,23,0,0,0.41356 -29648,7201:236,-16,23,0,0,0.415829 -29649,7201:235,-15,23,0,0,0.415804 -29650,7201:134,-14,23,0,0,0.410647 -29651,7201:133,-13,23,0,0,0.402566 -29652,7201:132,-12,23,0,0,0.404495 -29653,7201:131,-11,23,0,0,0.409851 -29654,7201:130,-10,23,0,0,0.383111 -29655,7200:239,-9,23,0,0,0.379548 -29656,7200:238,-8,23,0,0,0.375757 -29657,7200:237,-7,23,0,0,0.379355 -29658,7200:236,-6,23,0,0,0.357202 -29659,7200:235,-5,23,0,0,0.349688 -29660,7200:134,-4,23,0,0,0.332533 -29661,7200:133,-3,23,0,0,0.344984 -29662,7200:132,-2,23,0,0,0.352263 -29663,7200:131,-1,23,0,0,0.367552 -29664,1201:131,11,23,0,0,0.395348 -29665,1201:132,12,23,0,0,0.395987 -29666,1201:133,13,23,0,0,0.386736 -29667,1201:134,14,23,0,0,0.378798 -29668,1201:235,15,23,0,0,0.392722 -29669,1201:236,16,23,0,0,0.396674 -29670,1201:237,17,23,0,0,0.396109 -29671,1201:238,18,23,0,0,0.396724 -29672,1201:239,19,23,0,0,0.402888 -29673,1202:130,20,23,0,0,0.418252 -29674,1202:131,21,23,0,0,0.418827 -29675,1202:132,22,23,0,0,0.418952 -29676,1202:133,23,23,0,0,0.414282 -29677,1202:134,24,23,0,0,0.415879 -29678,1202:235,25,23,0,0,0.418452 -29679,1202:236,26,23,0,0,0.414931 -29680,1202:237,27,23,0,0,0.425569 -29681,1202:238,28,23,0,0,0.424916 -29682,1202:239,29,23,0,0,0.42846 -29683,1203:130,30,23,0,0,0.425041 -29684,1203:131,31,23,0,0,0.436807 -29685,1203:132,32,23,0,0,0.44989 -29686,1203:133,33,23,0,0,0.45274 -29687,1203:134,34,23,0,0,0.444937 -29688,1203:235,35,23,0,0,0.482915 -29689,1212:130,120,23,0,0,0.257359 -29691,1212:132,122,23,0,0,0.274606 -29692,1212:133,123,23,0,0,0.331486 -29693,1212:134,124,23,0,0,0.367528 -29694,1212:235,125,23,0,0,0.35238 -29695,1212:236,126,23,0,0,0.304144 -29696,1213:130,130,23,0,0,0.407171 -29697,1213:131,131,23,0,0,0.412713 -29698,1213:132,132,23,0,0,0.410374 -29699,1213:133,133,23,0,0,0.437136 -29700,1213:134,134,23,0,0,0.429416 -29701,1213:235,135,23,0,0,0.423611 -29702,1213:236,136,23,0,0,0.42459 -29703,1214:132,142,23,0,0,0.421079 -29704,1214:133,143,23,0,0,0.422558 -29705,1214:134,144,23,0,0,0.430827 -29706,1214:235,145,23,0,0,0.430524 -29707,1214:236,146,23,0,0,0.425594 -29708,1214:237,147,23,0,0,0.426499 -29709,1214:238,148,23,0,0,0.443162 -29710,1214:239,149,23,0,0,0.454905 -29711,1215:130,150,23,0,0,0.453631 -29712,1215:131,151,23,0,0,0.456638 -29713,1215:132,152,23,0,0,0.461051 -29714,1215:133,153,23,0,0,0.456688 -29715,1215:134,154,23,0,0,0.45246 -29716,1215:235,155,23,0,0,0.462813 -29717,1215:236,156,23,0,0,0.467337 -29718,1215:237,157,23,0,0,0.470101 -29719,1215:238,158,23,0,0,0.437894 -29720,1215:239,159,23,0,0,0.450551 -29721,1216:130,160,23,0,0,0.401603 -29722,1216:131,161,23,0,0,0.409156 -29723,1216:132,162,23,0,0,0.4268 -29724,1216:133,163,23,0,0,0.415854 -29725,1216:134,164,23,0,0,0.400566 -29726,1216:235,165,23,0,0,0.393728 -29727,1216:236,166,23,0,0,0.377301 -29728,1216:237,167,23,0,0,0.367862 -29729,1216:238,168,23,0,0,0.357248 -29730,1216:239,169,23,0,0,0.35238 -29731,1217:130,170,23,0,0,0.353107 -29732,1217:131,171,23,0,0,0.359659 -29733,1217:132,172,23,0,0,0.357343 -29734,1217:133,173,23,0,0,0.358193 -29735,1217:134,174,23,0,0,0.3517 -29736,1217:235,175,23,0,0,0.348521 -29737,1217:236,176,23,0,0,0.351865 -29738,1217:237,177,23,0,0,0.346564 -29739,1217:238,178,23,0,0,0.343592 -29740,1217:239,179,23,0,0,0.336307 -29741,1218:130,180,23,0,0,0.334429 -29742,7218:140,-180,24,0,0,0.301779 -29743,7217:249,-179,24,0,0,0.303536 -29744,7217:248,-178,24,0,0,0.301109 -29745,7217:247,-177,24,0,0,0.293404 -29746,7217:246,-176,24,0,0,0.298391 -29747,7217:245,-175,24,0,0,0.29992 -29748,7217:144,-174,24,0,0,0.293063 -29749,7217:143,-173,24,0,0,0.295837 -29750,7217:142,-172,24,0,0,0.301216 -29751,7217:141,-171,24,0,0,0.298886 -29752,7217:140,-170,24,0,0,0.297918 -29753,7216:249,-169,24,0,0,0.296738 -29754,7216:248,-168,24,0,0,0.298972 -29755,7216:247,-167,24,0,0,0.30508 -29756,7216:246,-166,24,0,0,0.303188 -29757,7216:245,-165,24,0,0,0.303448 -29758,7216:144,-164,24,0,0,0.300719 -29759,7216:143,-163,24,0,0,0.302797 -29760,7216:142,-162,24,0,0,0.303644 -29761,7216:141,-161,24,0,0,0.311169 -29762,7216:140,-160,24,0,0,0.306257 -29763,7215:249,-159,24,0,0,0.307744 -29764,7215:248,-158,24,0,0,0.320537 -29765,7215:247,-157,24,0,0,0.31846 -29766,7215:246,-156,24,0,0,0.324016 -29767,7215:245,-155,24,0,0,0.326157 -29768,7215:144,-154,24,0,0,0.329485 -29769,7215:143,-153,24,0,0,0.325435 -29770,7215:142,-152,24,0,0,0.319531 -29771,7215:141,-151,24,0,0,0.328238 -29772,7215:140,-150,24,0,0,0.335963 -29773,7214:249,-149,24,0,0,0.333401 -29774,7214:248,-148,24,0,0,0.339156 -29775,7214:247,-147,24,0,0,0.334087 -29776,7214:246,-146,24,0,0,0.339825 -29777,7214:245,-145,24,0,0,0.334841 -29778,7214:144,-144,24,0,0,0.344914 -29779,7214:143,-143,24,0,0,0.343685 -29780,7214:142,-142,24,0,0,0.338144 -29781,7214:141,-141,24,0,0,0.34682 -29782,7214:140,-140,24,0,0,0.336399 -29783,7213:249,-139,24,0,0,0.343685 -29784,7213:248,-138,24,0,0,0.340655 -29785,7213:247,-137,24,0,0,0.345193 -29786,7213:246,-136,24,0,0,0.352075 -29787,7213:245,-135,24,0,0,0.353624 -29788,7213:144,-134,24,0,0,0.346797 -29789,7213:143,-133,24,0,0,0.34054 -29790,7213:142,-132,24,0,0,0.337065 -29791,7213:141,-131,24,0,0,0.333355 -29792,7213:140,-130,24,0,0,0.327966 -29793,7212:249,-129,24,0,0,0.314747 -29794,7212:248,-128,24,0,0,0.300287 -29795,7212:247,-127,24,0,0,0.295196 -29796,7212:246,-126,24,0,0,0.289838 -29797,7212:245,-125,24,0,0,0.293404 -29798,7212:144,-124,24,0,0,0.29096 -29799,7212:143,-123,24,0,0,0.288845 -29800,7212:142,-122,24,0,0,0.279483 -29801,7207:246,-76,24,0,0,0.318505 -29802,7207:245,-75,24,0,0,0.420628 -29803,7207:144,-74,24,0,0,0.517807 -29804,7207:143,-73,24,0,0,0.535427 -29805,7207:142,-72,24,0,0,0.517345 -29806,7207:141,-71,24,0,0,0.498859 -29807,7207:140,-70,24,0,0,0.505254 -29808,7206:249,-69,24,0,0,0.515369 -29809,7206:248,-68,24,0,0,0.500271 -29810,7206:247,-67,24,0,0,0.48117 -29811,7206:246,-66,24,0,0,0.487379 -29812,7206:245,-65,24,0,0,0.481042 -29813,7206:144,-64,24,0,0,0.470356 -29814,7206:143,-63,24,0,0,0.465778 -29815,7206:142,-62,24,0,0,0.45549 -29816,7206:141,-61,24,0,0,0.452841 -29817,7206:140,-60,24,0,0,0.446917 -29818,7205:249,-59,24,0,0,0.444455 -29819,7205:248,-58,24,0,0,0.433726 -29820,7205:247,-57,24,0,0,0.432843 -29821,7205:246,-56,24,0,0,0.427554 -29822,7205:245,-55,24,0,0,0.427353 -29823,7205:144,-54,24,0,0,0.426775 -29824,7205:143,-53,24,0,0,0.427152 -29825,7205:142,-52,24,0,0,0.416303 -29826,7205:141,-51,24,0,0,0.411891 -29827,7205:140,-50,24,0,0,0.40665 -29828,7204:249,-49,24,0,0,0.404668 -29829,7204:248,-48,24,0,0,0.400024 -29830,7204:247,-47,24,0,0,0.403901 -29831,7204:246,-46,24,0,0,0.399358 -29832,7204:245,-45,24,0,0,0.399802 -29833,7204:144,-44,24,0,0,0.3926 -29834,7204:143,-43,24,0,0,0.391914 -29835,7204:142,-42,24,0,0,0.38859 -29836,7204:141,-41,24,0,0,0.38367 -29837,7204:140,-40,24,0,0,0.388443 -29838,7203:249,-39,24,0,0,0.387881 -29839,7203:248,-38,24,0,0,0.385543 -29840,7203:247,-37,24,0,0,0.380202 -29841,7203:246,-36,24,0,0,0.376529 -29842,7203:245,-35,24,0,0,0.378436 -29843,7203:144,-34,24,0,0,0.375805 -29844,7203:143,-33,24,0,0,0.374577 -29845,7203:142,-32,24,0,0,0.370518 -29846,7203:141,-31,24,0,0,0.368101 -29847,7203:140,-30,24,0,0,0.373326 -29848,7202:249,-29,24,0,0,0.370542 -29849,7202:248,-28,24,0,0,0.370854 -29850,7202:247,-27,24,0,0,0.368818 -29851,7202:246,-26,24,0,0,0.37513 -29852,7202:245,-25,24,0,0,0.373158 -29853,7202:144,-24,24,0,0,0.378919 -29854,7202:143,-23,24,0,0,0.382674 -29855,7202:142,-22,24,0,0,0.385883 -29856,7202:141,-21,24,0,0,0.384059 -29857,7202:140,-20,24,0,0,0.388077 -29858,7201:249,-19,24,0,0,0.393409 -29859,7201:248,-18,24,0,0,0.394832 -29860,7201:247,-17,24,0,0,0.396183 -29861,7201:246,-16,24,0,0,0.395642 -29862,7201:245,-15,24,0,0,0.393066 -29863,7201:144,-14,24,0,0,0.393997 -29864,7201:143,-13,24,0,0,0.395372 -29865,7201:142,-12,24,0,0,0.385518 -29866,7201:141,-11,24,0,0,0.382965 -29867,7201:140,-10,24,0,0,0.355222 -29868,7200:142,-2,24,0,0,0.337501 -29869,7200:141,-1,24,0,0,0.34582 -29870,1200:141,0,24,0,0,0.373014 -29871,1200:141,1,24,0,0,0.364809 -29872,1200:142,2,24,0,0,0.373014 -29873,1200:143,3,24,0,0,0.376239 -29874,1200:144,4,24,0,0,0.381437 -29875,1200:245,5,24,0,0,0.38401 -29876,1200:248,8,24,0,0,0.393826 -29877,1201:140,10,24,0,0,0.389688 -29878,1201:141,11,24,0,0,0.388053 -29879,1201:142,12,24,0,0,0.37047 -29880,1201:143,13,24,0,0,0.360843 -29881,1201:144,14,24,0,0,0.358524 -29882,1201:245,15,24,0,0,0.399727 -29883,1201:246,16,24,0,0,0.396699 -29884,1201:247,17,24,0,0,0.394587 -29885,1201:248,18,24,0,0,0.401085 -29886,1201:249,19,24,0,0,0.417952 -29887,1202:140,20,24,0,0,0.420603 -29888,1202:141,21,24,0,0,0.417377 -29889,1202:143,23,24,0,0,0.404297 -29890,1202:144,24,24,0,0,0.411294 -29891,1202:245,25,24,0,0,0.418302 -29892,1202:246,26,24,0,0,0.428007 -29893,1202:247,27,24,0,0,0.437439 -29894,1202:248,28,24,0,0,0.45544 -29895,1203:141,31,24,0,0,0.470945 -29896,1203:144,34,24,0,0,0.480503 -29897,1203:245,35,24,0,0,0.48679 -29898,1212:142,122,24,0,0,0.212397 -29899,1212:143,123,24,0,0,0.23859 -29900,1212:144,124,24,0,0,0.344729 -29901,1212:245,125,24,0,0,0.352403 -29902,1212:246,126,24,0,0,0.245259 -29903,1213:140,130,24,0,0,0.396404 -29904,1213:141,131,24,0,0,0.341764 -29905,1213:142,132,24,0,0,0.389151 -29906,1213:143,133,24,0,0,0.404272 -29907,1213:144,134,24,0,0,0.404767 -29908,1213:245,135,24,0,0,0.386443 -29909,1213:246,136,24,0,0,0.400393 -29910,1213:247,137,24,0,0,0.396896 -29911,1213:248,138,24,0,0,0.401356 -29912,1214:142,142,24,0,0,0.412239 -29913,1214:143,143,24,0,0,0.429618 -29914,1214:144,144,24,0,0,0.414133 -29915,1214:245,145,24,0,0,0.408064 -29916,1214:246,146,24,0,0,0.411966 -29917,1214:247,147,24,0,0,0.433121 -29918,1214:248,148,24,0,0,0.440374 -29919,1214:249,149,24,0,0,0.436049 -29920,1215:140,150,24,0,0,0.418502 -29921,1215:141,151,24,0,0,0.416678 -29922,1215:142,152,24,0,0,0.414507 -29923,1215:143,153,24,0,0,0.41097 -29924,1215:144,154,24,0,0,0.408833 -29925,1215:245,155,24,0,0,0.401504 -29926,1215:246,156,24,0,0,0.390471 -29927,1215:247,157,24,0,0,0.396428 -29928,1215:248,158,24,0,0,0.420904 -29929,1215:249,159,24,0,0,0.412663 -29930,1216:140,160,24,0,0,0.410697 -29931,1216:141,161,24,0,0,0.386565 -29932,1216:142,162,24,0,0,0.376987 -29933,1216:143,163,24,0,0,0.37071 -29934,1216:144,164,24,0,0,0.373615 -29935,1216:245,165,24,0,0,0.373927 -29936,1216:246,166,24,0,0,0.372269 -29937,1216:247,167,24,0,0,0.361009 -29938,1216:248,168,24,0,0,0.356117 -29939,1216:249,169,24,0,0,0.349595 -29940,1217:140,170,24,0,0,0.345193 -29941,1217:141,171,24,0,0,0.340609 -29942,1217:142,172,24,0,0,0.335734 -29943,1217:143,173,24,0,0,0.328646 -29944,1217:144,174,24,0,0,0.321209 -29945,1217:245,175,24,0,0,0.321792 -29946,1217:246,176,24,0,0,0.312624 -29947,1217:247,177,24,0,0,0.310288 -29948,1217:248,178,24,0,0,0.314282 -29949,1217:249,179,24,0,0,0.309059 -29950,1218:140,180,24,0,0,0.301779 -29951,7218:350,-180,25,0,0,0.278656 -29952,7217:459,-179,25,0,0,0.278037 -29953,7217:458,-178,25,0,0,0.282409 -29954,7217:457,-177,25,0,0,0.272829 -29955,7217:456,-176,25,0,0,0.272197 -29956,7217:455,-175,25,0,0,0.275527 -29957,7217:354,-174,25,0,0,0.275835 -29958,7217:353,-173,25,0,0,0.277851 -29959,7217:352,-172,25,0,0,0.277665 -29960,7217:351,-171,25,0,0,0.276102 -29961,7217:350,-170,25,0,0,0.278759 -29962,7216:459,-169,25,0,0,0.281847 -29963,7216:458,-168,25,0,0,0.28569 -29964,7216:457,-167,25,0,0,0.292319 -29965,7216:456,-166,25,0,0,0.284099 -29966,7216:455,-165,25,0,0,0.278697 -29967,7216:354,-164,25,0,0,0.283827 -29968,7216:353,-163,25,0,0,0.28318 -29969,7216:352,-162,25,0,0,0.282471 -29970,7216:351,-161,25,0,0,0.284391 -29971,7216:350,-160,25,0,0,0.282638 -29972,7215:459,-159,25,0,0,0.285774 -29973,7215:458,-158,25,0,0,0.293084 -29974,7215:457,-157,25,0,0,0.290473 -29975,7215:456,-156,25,0,0,0.300158 -29976,7215:455,-155,25,0,0,0.301238 -29977,7215:354,-154,25,0,0,0.303383 -29978,7215:353,-153,25,0,0,0.30018 -29979,7215:352,-152,25,0,0,0.310178 -29980,7215:351,-151,25,0,0,0.309059 -29981,7215:350,-150,25,0,0,0.31539 -29982,7214:459,-149,25,0,0,0.313751 -29983,7214:458,-148,25,0,0,0.315324 -29984,7214:457,-147,25,0,0,0.317635 -29985,7214:456,-146,25,0,0,0.315258 -29986,7214:455,-145,25,0,0,0.315124 -29987,7214:354,-144,25,0,0,0.317235 -29988,7214:353,-143,25,0,0,0.319017 -29989,7214:352,-142,25,0,0,0.321926 -29990,7214:351,-141,25,0,0,0.332465 -29991,7214:350,-140,25,0,0,0.332055 -29992,7213:459,-139,25,0,0,0.315568 -29993,7213:458,-138,25,0,0,0.330484 -29994,7213:457,-137,25,0,0,0.327558 -29995,7213:456,-136,25,0,0,0.336124 -29996,7213:455,-135,25,0,0,0.341764 -29997,7213:354,-134,25,0,0,0.342527 -29998,7213:353,-133,25,0,0,0.335642 -29999,7213:352,-132,25,0,0,0.329168 -30000,7213:351,-131,25,0,0,0.322307 -30001,7213:350,-130,25,0,0,0.326044 -30002,7212:459,-129,25,0,0,0.317168 -30003,7212:458,-128,25,0,0,0.311851 -30004,7212:457,-127,25,0,0,0.299252 -30005,7212:456,-126,25,0,0,0.289648 -30006,7212:455,-125,25,0,0,0.289014 -30007,7212:354,-124,25,0,0,0.27783 -30008,7212:353,-123,25,0,0,0.265712 -30009,7207:456,-76,25,0,0,0.288128 -30010,7207:455,-75,25,0,0,0.318839 -30011,7207:354,-74,25,0,0,0.439387 -30012,7207:353,-73,25,0,0,0.491308 -30013,7207:352,-72,25,0,0,0.50397 -30014,7207:351,-71,25,0,0,0.492643 -30015,7207:350,-70,25,0,0,0.443897 -30016,7206:459,-69,25,0,0,0.438021 -30017,7206:458,-68,25,0,0,0.490563 -30018,7206:457,-67,25,0,0,0.491103 -30019,7206:456,-66,25,0,0,0.462251 -30020,7206:455,-65,25,0,0,0.468744 -30021,7206:354,-64,25,0,0,0.472635 -30022,7206:353,-63,25,0,0,0.462277 -30023,7206:352,-62,25,0,0,0.46634 -30024,7206:351,-61,25,0,0,0.453071 -30025,7206:350,-60,25,0,0,0.426825 -30026,7205:459,-59,25,0,0,0.423561 -30027,7205:458,-58,25,0,0,0.423386 -30028,7205:457,-57,25,0,0,0.418702 -30029,7205:456,-56,25,0,0,0.414905 -30030,7205:455,-55,25,0,0,0.418727 -30031,7205:354,-54,25,0,0,0.425519 -30032,7205:353,-53,25,0,0,0.425368 -30033,7205:352,-52,25,0,0,0.417077 -30034,7205:351,-51,25,0,0,0.402813 -30035,7205:350,-50,25,0,0,0.397044 -30036,7204:459,-49,25,0,0,0.391131 -30037,7204:458,-48,25,0,0,0.388565 -30038,7204:457,-47,25,0,0,0.395691 -30039,7204:456,-46,25,0,0,0.397388 -30040,7204:455,-45,25,0,0,0.399752 -30041,7204:354,-44,25,0,0,0.399407 -30042,7204:353,-43,25,0,0,0.378146 -30043,7204:352,-42,25,0,0,0.373278 -30044,7204:351,-41,25,0,0,0.373686 -30045,7204:350,-40,25,0,0,0.372701 -30046,7203:459,-39,25,0,0,0.377228 -30047,7203:458,-38,25,0,0,0.374529 -30048,7203:457,-37,25,0,0,0.368818 -30049,7203:456,-36,25,0,0,0.371381 -30050,7203:455,-35,25,0,0,0.371813 -30051,7203:354,-34,25,0,0,0.367432 -30052,7203:353,-33,25,0,0,0.360061 -30053,7203:352,-32,25,0,0,0.359044 -30054,7203:351,-31,25,0,0,0.36324 -30055,7203:350,-30,25,0,0,0.358406 -30056,7202:458,-28,25,0,0,0.356518 -30057,7202:457,-27,25,0,0,0.351279 -30058,7202:456,-26,25,0,0,0.356541 -30059,7202:455,-25,25,0,0,0.361886 -30060,7202:354,-24,25,0,0,0.365476 -30061,7202:353,-23,25,0,0,0.35876 -30062,7202:352,-22,25,0,0,0.364119 -30063,7202:351,-21,25,0,0,0.369967 -30064,7202:350,-20,25,0,0,0.374914 -30065,7201:459,-19,25,0,0,0.368914 -30066,7201:458,-18,25,0,0,0.372726 -30067,7201:457,-17,25,0,0,0.37107 -30068,7201:456,-16,25,0,0,0.372149 -30069,7201:455,-15,25,0,0,0.373639 -30070,7201:354,-14,25,0,0,0.371309 -30071,7201:353,-13,25,0,0,0.372605 -30072,7201:352,-12,25,0,0,0.381147 -30073,7201:351,-11,25,0,0,0.374817 -30074,7201:350,-10,25,0,0,0.343801 -30075,1200:351,0,25,0,0,0.366263 -30076,1200:351,1,25,0,0,0.379379 -30077,1200:352,2,25,0,0,0.381656 -30078,1200:353,3,25,0,0,0.383913 -30079,1200:354,4,25,0,0,0.384739 -30080,1200:455,5,25,0,0,0.385372 -30081,1200:456,6,25,0,0,0.381656 -30082,1200:457,7,25,0,0,0.388931 -30083,1200:458,8,25,0,0,0.377977 -30084,1200:459,9,25,0,0,0.373061 -30085,1201:350,10,25,0,0,0.368938 -30086,1201:351,11,25,0,0,0.372845 -30087,1201:352,12,25,0,0,0.373422 -30088,1201:455,15,25,0,0,0.399481 -30089,1201:456,16,25,0,0,0.396085 -30090,1201:457,17,25,0,0,0.38854 -30091,1201:458,18,25,0,0,0.393458 -30092,1201:459,19,25,0,0,0.413684 -30093,1202:350,20,25,0,0,0.423511 -30094,1202:353,23,25,0,0,0.40264 -30095,1202:354,24,25,0,0,0.399949 -30096,1202:455,25,25,0,0,0.41518 -30097,1202:456,26,25,0,0,0.433247 -30098,1212:350,120,25,0,0,0.188275 -30099,1212:352,122,25,0,0,0.209558 -30100,1212:353,123,25,0,0,0.242814 -30101,1212:354,124,25,0,0,0.306585 -30102,1212:455,125,25,0,0,0.288634 -30103,1212:456,126,25,0,0,0.193591 -30104,1213:350,130,25,0,0,0.382747 -30105,1213:351,131,25,0,0,0.32885 -30106,1213:352,132,25,0,0,0.355716 -30107,1213:353,133,25,0,0,0.328216 -30108,1213:354,134,25,0,0,0.325232 -30109,1213:455,135,25,0,0,0.343523 -30110,1213:456,136,25,0,0,0.320962 -30111,1213:457,137,25,0,0,0.362907 -30112,1213:458,138,25,0,0,0.383524 -30113,1213:459,139,25,0,0,0.384375 -30114,1214:352,142,25,0,0,0.351068 -30115,1214:353,143,25,0,0,0.418477 -30116,1214:354,144,25,0,0,0.410299 -30117,1214:455,145,25,0,0,0.404223 -30118,1214:456,146,25,0,0,0.350109 -30119,1214:457,147,25,0,0,0.358004 -30120,1214:458,148,25,0,0,0.417627 -30121,1214:459,149,25,0,0,0.420679 -30122,1215:350,150,25,0,0,0.418277 -30123,1215:351,151,25,0,0,0.412663 -30124,1215:352,152,25,0,0,0.369775 -30125,1215:353,153,25,0,0,0.353318 -30126,1215:354,154,25,0,0,0.377277 -30127,1215:455,155,25,0,0,0.384229 -30128,1215:456,156,25,0,0,0.361886 -30129,1215:457,157,25,0,0,0.358996 -30130,1215:458,158,25,0,0,0.389444 -30131,1215:459,159,25,0,0,0.406799 -30132,1216:350,160,25,0,0,0.394856 -30133,1216:351,161,25,0,0,0.376432 -30134,1216:352,162,25,0,0,0.38637 -30135,1216:353,163,25,0,0,0.363026 -30136,1216:354,164,25,0,0,0.378436 -30137,1216:455,165,25,0,0,0.352146 -30138,1216:456,166,25,0,0,0.361696 -30139,1216:457,167,25,0,0,0.352826 -30140,1216:458,168,25,0,0,0.342504 -30141,1216:459,169,25,0,0,0.345866 -30142,1217:350,170,25,0,0,0.345169 -30143,1217:351,171,25,0,0,0.338328 -30144,1217:352,172,25,0,0,0.333995 -30145,1217:353,173,25,0,0,0.323363 -30146,1217:354,174,25,0,0,0.312779 -30147,1217:455,175,25,0,0,0.305385 -30148,1217:456,176,25,0,0,0.297102 -30149,1217:457,177,25,0,0,0.292425 -30150,1217:458,178,25,0,0,0.292127 -30151,1217:459,179,25,0,0,0.290049 -30152,1218:350,180,25,0,0,0.278656 -30153,7218:360,-180,26,0,0,0.270126 -30154,7217:469,-179,26,0,0,0.260197 -30155,7217:468,-178,26,0,0,0.264572 -30156,7217:467,-177,26,0,0,0.260138 -30157,7217:466,-176,26,0,0,0.256183 -30158,7217:465,-175,26,0,0,0.252481 -30159,7217:364,-174,26,0,0,0.249487 -30160,7217:363,-173,26,0,0,0.253432 -30161,7217:362,-172,26,0,0,0.255811 -30162,7217:361,-171,26,0,0,0.251281 -30163,7217:360,-170,26,0,0,0.254113 -30164,7216:469,-169,26,0,0,0.264712 -30165,7216:468,-168,26,0,0,0.262041 -30166,7216:467,-167,26,0,0,0.256203 -30167,7216:466,-166,26,0,0,0.253938 -30168,7216:465,-165,26,0,0,0.255205 -30169,7216:364,-164,26,0,0,0.255792 -30170,7216:363,-163,26,0,0,0.264272 -30171,7216:362,-162,26,0,0,0.264552 -30172,7216:361,-161,26,0,0,0.264232 -30173,7216:360,-160,26,0,0,0.265432 -30174,7215:469,-159,26,0,0,0.266234 -30175,7215:468,-158,26,0,0,0.26738 -30176,7215:467,-157,26,0,0,0.269438 -30177,7215:466,-156,26,0,0,0.266837 -30178,7215:465,-155,26,0,0,0.272706 -30179,7215:364,-154,26,0,0,0.279565 -30180,7215:363,-153,26,0,0,0.281515 -30181,7215:362,-152,26,0,0,0.29603 -30182,7215:361,-151,26,0,0,0.289901 -30183,7215:360,-150,26,0,0,0.291511 -30184,7214:469,-149,26,0,0,0.292382 -30185,7214:468,-148,26,0,0,0.291851 -30186,7214:467,-147,26,0,0,0.289605 -30187,7214:466,-146,26,0,0,0.297467 -30188,7214:465,-145,26,0,0,0.30805 -30189,7214:364,-144,26,0,0,0.301865 -30190,7214:363,-143,26,0,0,0.300503 -30191,7214:362,-142,26,0,0,0.300136 -30192,7214:361,-141,26,0,0,0.30206 -30193,7214:360,-140,26,0,0,0.295709 -30194,7213:469,-139,26,0,0,0.305887 -30195,7213:468,-138,26,0,0,0.312668 -30196,7213:467,-137,26,0,0,0.314593 -30197,7213:466,-136,26,0,0,0.309212 -30198,7213:465,-135,26,0,0,0.317836 -30199,7213:364,-134,26,0,0,0.321321 -30200,7213:363,-133,26,0,0,0.325232 -30201,7213:362,-132,26,0,0,0.321814 -30202,7213:361,-131,26,0,0,0.313198 -30203,7213:360,-130,26,0,0,0.31353 -30204,7212:469,-129,26,0,0,0.306475 -30205,7212:468,-128,26,0,0,0.291873 -30206,7212:467,-127,26,0,0,0.287096 -30207,7212:466,-126,26,0,0,0.286067 -30208,7212:465,-125,26,0,0,0.277089 -30209,7212:364,-124,26,0,0,0.264432 -30210,7207:465,-75,26,0,0,0.259466 -30211,7207:364,-74,26,0,0,0.295239 -30212,7207:363,-73,26,0,0,0.354964 -30213,7207:362,-72,26,0,0,0.441818 -30214,7207:361,-71,26,0,0,0.431608 -30215,7207:360,-70,26,0,0,0.436934 -30216,7206:469,-69,26,0,0,0.438249 -30217,7206:468,-68,26,0,0,0.434332 -30218,7206:467,-67,26,0,0,0.486995 -30219,7206:466,-66,26,0,0,0.477964 -30220,7206:465,-65,26,0,0,0.470075 -30221,7206:364,-64,26,0,0,0.465675 -30222,7206:363,-63,26,0,0,0.418352 -30223,7206:362,-62,26,0,0,0.418452 -30224,7206:361,-61,26,0,0,0.456739 -30225,7206:360,-60,26,0,0,0.442199 -30226,7205:469,-59,26,0,0,0.435519 -30227,7205:468,-58,26,0,0,0.431835 -30228,7205:467,-57,26,0,0,0.433196 -30229,7205:466,-56,26,0,0,0.40923 -30230,7205:465,-55,26,0,0,0.416029 -30231,7205:364,-54,26,0,0,0.424966 -30232,7205:363,-53,26,0,0,0.382165 -30233,7205:362,-52,26,0,0,0.42341 -30234,7205:361,-51,26,0,0,0.403802 -30235,7205:360,-50,26,0,0,0.395593 -30236,7204:469,-49,26,0,0,0.392772 -30237,7204:468,-48,26,0,0,0.392551 -30238,7204:467,-47,26,0,0,0.388931 -30239,7204:466,-46,26,0,0,0.381656 -30240,7204:465,-45,26,0,0,0.365167 -30241,7204:364,-44,26,0,0,0.360701 -30242,7204:363,-43,26,0,0,0.376456 -30243,7204:362,-42,26,0,0,0.38859 -30244,7204:361,-41,26,0,0,0.37335 -30245,7204:360,-40,26,0,0,0.380178 -30246,7203:469,-39,26,0,0,0.377325 -30247,7203:468,-38,26,0,0,0.370302 -30248,7203:467,-37,26,0,0,0.373182 -30249,7203:466,-36,26,0,0,0.366668 -30250,7203:465,-35,26,0,0,0.360866 -30251,7203:364,-34,26,0,0,0.359185 -30252,7203:363,-33,26,0,0,0.349478 -30253,7203:362,-32,26,0,0,0.353953 -30254,7203:361,-31,26,0,0,0.354164 -30255,7203:360,-30,26,0,0,0.346797 -30256,7202:469,-29,26,0,0,0.348847 -30257,7202:468,-28,26,0,0,0.342365 -30258,7202:467,-27,26,0,0,0.340725 -30259,7202:466,-26,26,0,0,0.346843 -30260,7202:465,-25,26,0,0,0.347309 -30261,7202:364,-24,26,0,0,0.341648 -30262,7202:363,-23,26,0,0,0.348544 -30263,7202:362,-22,26,0,0,0.342226 -30264,7202:361,-21,26,0,0,0.337248 -30265,7202:360,-20,26,0,0,0.336766 -30266,7201:469,-19,26,0,0,0.346355 -30267,7201:468,-18,26,0,0,0.346401 -30268,7201:467,-17,26,0,0,0.352662 -30269,7201:466,-16,26,0,0,0.352427 -30270,7201:465,-15,26,0,0,0.347961 -30271,7201:364,-14,26,0,0,0.350647 -30272,7201:363,-13,26,0,0,0.35574 -30273,7201:362,-12,26,0,0,0.361696 -30274,7201:361,-11,26,0,0,0.353811 -30275,7201:360,-10,26,0,0,0.32548 -30276,1200:361,0,26,0,0,0.369775 -30277,1200:361,1,26,0,0,0.371141 -30278,1200:362,2,26,0,0,0.375324 -30279,1200:363,3,26,0,0,0.379887 -30280,1200:364,4,26,0,0,0.379742 -30281,1200:465,5,26,0,0,0.381073 -30282,1200:466,6,26,0,0,0.377759 -30283,1200:467,7,26,0,0,0.371549 -30284,1201:360,10,26,0,0,0.367814 -30285,1201:361,11,26,0,0,0.373278 -30286,1201:362,12,26,0,0,0.372653 -30287,1201:363,13,26,0,0,0.369799 -30288,1201:364,14,26,0,0,0.374481 -30289,1201:465,15,26,0,0,0.377952 -30290,1201:467,17,26,0,0,0.392135 -30291,1201:468,18,26,0,0,0.390348 -30292,1201:469,19,26,0,0,0.402319 -30293,1202:360,20,26,0,0,0.419327 -30294,1202:364,24,26,0,0,0.402048 -30295,1202:465,25,26,0,0,0.413161 -30296,1202:466,26,26,0,0,0.426021 -30297,1211:469,119,26,0,0,0.18548 -30298,1212:360,120,26,0,0,0.219301 -30299,1212:361,121,26,0,0,0.246727 -30300,1212:362,122,26,0,0,0.26867 -30301,1212:363,123,26,0,0,0.261406 -30302,1212:364,124,26,0,0,0.254796 -30303,1212:465,125,26,0,0,0.223873 -30304,1212:469,129,26,0,0,0.371621 -30305,1213:360,130,26,0,0,0.326676 -30306,1213:361,131,26,0,0,0.301281 -30307,1213:362,132,26,0,0,0.328102 -30308,1213:363,133,26,0,0,0.335001 -30309,1213:364,134,26,0,0,0.294427 -30310,1213:465,135,26,0,0,0.316545 -30311,1213:466,136,26,0,0,0.275487 -30312,1213:467,137,26,0,0,0.348988 -30313,1213:468,138,26,0,0,0.304035 -30314,1213:469,139,26,0,0,0.371381 -30315,1214:360,140,26,0,0,0.373038 -30316,1214:363,143,26,0,0,0.314659 -30317,1214:364,144,26,0,0,0.40856 -30318,1214:465,145,26,0,0,0.35706 -30319,1214:466,146,26,0,0,0.297467 -30320,1214:467,147,26,0,0,0.283201 -30321,1214:468,148,26,0,0,0.29251 -30322,1214:469,149,26,0,0,0.322285 -30323,1215:360,150,26,0,0,0.326022 -30324,1215:361,151,26,0,0,0.320336 -30325,1215:362,152,26,0,0,0.32168 -30326,1215:363,153,26,0,0,0.311543 -30327,1215:364,154,26,0,0,0.319464 -30328,1215:465,155,26,0,0,0.334132 -30329,1215:466,156,26,0,0,0.323004 -30330,1215:467,157,26,0,0,0.341718 -30331,1215:468,158,26,0,0,0.344334 -30332,1215:469,159,26,0,0,0.372894 -30333,1216:360,160,26,0,0,0.331805 -30334,1216:361,161,26,0,0,0.324691 -30335,1216:362,162,26,0,0,0.364833 -30336,1216:363,163,26,0,0,0.374481 -30337,1216:364,164,26,0,0,0.316567 -30338,1216:465,165,26,0,0,0.343059 -30339,1216:466,166,26,0,0,0.335047 -30340,1216:467,167,26,0,0,0.319867 -30341,1216:468,168,26,0,0,0.317101 -30342,1216:469,169,26,0,0,0.312933 -30343,1217:360,170,26,0,0,0.307306 -30344,1217:361,171,26,0,0,0.31042 -30345,1217:362,172,26,0,0,0.307678 -30346,1217:363,173,26,0,0,0.302364 -30347,1217:364,174,26,0,0,0.285815 -30348,1217:465,175,26,0,0,0.291469 -30349,1217:466,176,26,0,0,0.288613 -30350,1217:467,177,26,0,0,0.28029 -30351,1217:468,178,26,0,0,0.265572 -30352,1217:469,179,26,0,0,0.273992 -30353,1218:360,180,26,0,0,0.270126 -30354,7218:370,-180,27,0,0,0.247568 -30355,7217:479,-179,27,0,0,0.240687 -30356,7217:478,-178,27,0,0,0.240668 -30357,7217:477,-177,27,0,0,0.236172 -30358,7217:476,-176,27,0,0,0.237955 -30359,7217:475,-175,27,0,0,0.236431 -30360,7217:374,-174,27,0,0,0.235376 -30361,7217:373,-173,27,0,0,0.23146 -30362,7217:372,-172,27,0,0,0.233421 -30363,7217:371,-171,27,0,0,0.231514 -30364,7217:370,-170,27,0,0,0.233605 -30365,7216:479,-169,27,0,0,0.235505 -30366,7216:478,-168,27,0,0,0.23062 -30367,7216:477,-167,27,0,0,0.230949 -30368,7216:476,-166,27,0,0,0.236339 -30369,7216:475,-165,27,0,0,0.238814 -30370,7216:374,-164,27,0,0,0.240818 -30371,7216:373,-163,27,0,0,0.24667 -30372,7216:372,-162,27,0,0,0.24968 -30373,7216:371,-161,27,0,0,0.248334 -30374,7216:370,-160,27,0,0,0.247071 -30375,7215:479,-159,27,0,0,0.246593 -30376,7215:478,-158,27,0,0,0.249468 -30377,7215:477,-157,27,0,0,0.254249 -30378,7215:476,-156,27,0,0,0.254834 -30379,7215:475,-155,27,0,0,0.262975 -30380,7215:374,-154,27,0,0,0.264112 -30381,7215:373,-153,27,0,0,0.264252 -30382,7215:372,-152,27,0,0,0.26869 -30383,7215:371,-151,27,0,0,0.266114 -30384,7215:370,-150,27,0,0,0.269256 -30385,7214:479,-149,27,0,0,0.275384 -30386,7214:478,-148,27,0,0,0.275425 -30387,7214:477,-147,27,0,0,0.275938 -30388,7214:476,-146,27,0,0,0.284161 -30389,7214:475,-145,27,0,0,0.284182 -30390,7214:374,-144,27,0,0,0.283702 -30391,7214:373,-143,27,0,0,0.282347 -30392,7214:372,-142,27,0,0,0.282576 -30393,7214:371,-141,27,0,0,0.283827 -30394,7214:370,-140,27,0,0,0.286361 -30395,7213:479,-139,27,0,0,0.292892 -30396,7213:478,-138,27,0,0,0.297424 -30397,7213:477,-137,27,0,0,0.293893 -30398,7213:476,-136,27,0,0,0.29663 -30399,7213:475,-135,27,0,0,0.302321 -30400,7213:374,-134,27,0,0,0.305624 -30401,7213:373,-133,27,0,0,0.310266 -30402,7213:372,-132,27,0,0,0.307503 -30403,7213:371,-131,27,0,0,0.302407 -30404,7213:370,-130,27,0,0,0.293766 -30405,7212:479,-129,27,0,0,0.286718 -30406,7212:478,-128,27,0,0,0.27438 -30407,7212:477,-127,27,0,0,0.276287 -30408,7212:476,-126,27,0,0,0.280477 -30409,7212:475,-125,27,0,0,0.273624 -30410,7212:374,-124,27,0,0,0.255654 -30411,7207:373,-73,27,0,0,0.277769 -30412,7207:372,-72,27,0,0,0.325931 -30413,7207:371,-71,27,0,0,0.355764 -30414,7207:370,-70,27,0,0,0.346215 -30415,7206:479,-69,27,0,0,0.3077 -30416,7206:478,-68,27,0,0,0.404544 -30417,7206:477,-67,27,0,0,0.44481 -30418,7206:476,-66,27,0,0,0.464678 -30419,7206:475,-65,27,0,0,0.433726 -30420,7206:374,-64,27,0,0,0.375443 -30421,7206:373,-63,27,0,0,0.425996 -30422,7206:372,-62,27,0,0,0.424163 -30423,7206:371,-61,27,0,0,0.446257 -30424,7206:370,-60,27,0,0,0.447603 -30425,7205:479,-59,27,0,0,0.405733 -30426,7205:478,-58,27,0,0,0.346099 -30427,7205:477,-57,27,0,0,0.371477 -30428,7205:476,-56,27,0,0,0.423109 -30429,7205:475,-55,27,0,0,0.420428 -30430,7205:374,-54,27,0,0,0.385056 -30431,7205:373,-53,27,0,0,0.372389 -30432,7205:372,-52,27,0,0,0.399974 -30433,7205:371,-51,27,0,0,0.412912 -30434,7205:370,-50,27,0,0,0.413435 -30435,7204:479,-49,27,0,0,0.413261 -30436,7204:478,-48,27,0,0,0.408262 -30437,7204:477,-47,27,0,0,0.404965 -30438,7204:476,-46,27,0,0,0.3892 -30439,7204:475,-45,27,0,0,0.386516 -30440,7204:374,-44,27,0,0,0.355152 -30441,7204:373,-43,27,0,0,0.35156 -30442,7204:372,-42,27,0,0,0.351045 -30443,7204:371,-41,27,0,0,0.37347 -30444,7204:370,-40,27,0,0,0.36324 -30445,7203:479,-39,27,0,0,0.347146 -30446,7203:478,-38,27,0,0,0.377349 -30447,7203:477,-37,27,0,0,0.349338 -30448,7203:476,-36,27,0,0,0.349735 -30449,7203:475,-35,27,0,0,0.359138 -30450,7203:374,-34,27,0,0,0.355058 -30451,7203:373,-33,27,0,0,0.350437 -30452,7203:372,-32,27,0,0,0.341948 -30453,7203:371,-31,27,0,0,0.344984 -30454,7203:370,-30,27,0,0,0.341671 -30455,7202:479,-29,27,0,0,0.337868 -30456,7202:478,-28,27,0,0,0.331645 -30457,7202:477,-27,27,0,0,0.331053 -30458,7202:476,-26,27,0,0,0.333173 -30459,7202:475,-25,27,0,0,0.331736 -30460,7202:374,-24,27,0,0,0.327151 -30461,7202:373,-23,27,0,0,0.330189 -30462,7202:372,-22,27,0,0,0.333355 -30463,7202:371,-21,27,0,0,0.327808 -30464,7202:370,-20,27,0,0,0.325818 -30465,7201:479,-19,27,0,0,0.329984 -30466,7201:478,-18,27,0,0,0.324601 -30467,7201:477,-17,27,0,0,0.331417 -30468,7201:476,-16,27,0,0,0.333287 -30469,7201:475,-15,27,0,0,0.330985 -30470,7201:374,-14,27,0,0,0.33372 -30471,7201:373,-13,27,0,0,0.330189 -30472,7201:372,-12,27,0,0,0.340055 -30473,7201:371,-11,27,0,0,0.343476 -30474,7201:370,-10,27,0,0,0.32103 -30475,1200:371,1,27,0,0,0.360629 -30476,1200:372,2,27,0,0,0.359493 -30477,1200:373,3,27,0,0,0.364738 -30478,1200:374,4,27,0,0,0.36846 -30479,1200:475,5,27,0,0,0.367002 -30480,1200:476,6,27,0,0,0.369608 -30481,1200:477,7,27,0,0,0.362384 -30482,1201:370,10,27,0,0,0.364119 -30483,1201:371,11,27,0,0,0.364928 -30484,1201:372,12,27,0,0,0.365071 -30485,1201:373,13,27,0,0,0.367456 -30486,1201:374,14,27,0,0,0.371213 -30487,1201:475,15,27,0,0,0.374336 -30488,1201:477,17,27,0,0,0.3914 -30489,1201:478,18,27,0,0,0.389762 -30490,1201:479,19,27,0,0,0.410597 -30491,1202:373,23,27,0,0,0.396183 -30492,1202:374,24,27,0,0,0.397782 -30493,1202:475,25,27,0,0,0.423386 -30494,1212:370,120,27,0,0,0.188039 -30495,1212:371,121,27,0,0,0.203214 -30496,1212:372,122,27,0,0,0.178702 -30497,1212:374,124,27,0,0,0.190182 -30498,1212:475,125,27,0,0,0.168605 -30499,1212:479,129,27,0,0,0.319017 -30500,1213:370,130,27,0,0,0.315901 -30501,1213:371,131,27,0,0,0.291384 -30502,1213:372,132,27,0,0,0.314482 -30503,1213:373,133,27,0,0,0.307131 -30504,1213:374,134,27,0,0,0.269397 -30505,1213:475,135,27,0,0,0.285333 -30506,1213:476,136,27,0,0,0.25283 -30507,1213:477,137,27,0,0,0.295624 -30508,1213:478,138,27,0,0,0.303774 -30509,1213:479,139,27,0,0,0.304775 -30510,1214:370,140,27,0,0,0.350764 -30511,1214:373,143,27,0,0,0.29603 -30512,1214:374,144,27,0,0,0.377398 -30513,1214:475,145,27,0,0,0.338374 -30514,1214:476,146,27,0,0,0.327264 -30515,1214:477,147,27,0,0,0.353506 -30516,1214:478,148,27,0,0,0.297639 -30517,1214:479,149,27,0,0,0.311851 -30518,1215:370,150,27,0,0,0.318928 -30519,1215:371,151,27,0,0,0.307525 -30520,1215:372,152,27,0,0,0.310552 -30521,1215:373,153,27,0,0,0.314681 -30522,1215:374,154,27,0,0,0.29479 -30523,1215:475,155,27,0,0,0.284831 -30524,1215:476,156,27,0,0,0.281951 -30525,1215:477,157,27,0,0,0.280373 -30526,1215:478,158,27,0,0,0.284475 -30527,1215:479,159,27,0,0,0.276184 -30528,1216:370,160,27,0,0,0.279214 -30529,1216:371,161,27,0,0,0.275261 -30530,1216:372,162,27,0,0,0.322509 -30531,1216:373,163,27,0,0,0.286361 -30532,1216:374,164,27,0,0,0.281349 -30533,1216:475,165,27,0,0,0.301043 -30534,1216:476,166,27,0,0,0.308247 -30535,1216:477,167,27,0,0,0.283222 -30536,1216:478,168,27,0,0,0.280414 -30537,1216:479,169,27,0,0,0.256516 -30538,1217:370,170,27,0,0,0.280497 -30539,1217:371,171,27,0,0,0.28655 -30540,1217:372,172,27,0,0,0.263853 -30541,1217:373,173,27,0,0,0.261286 -30542,1217:374,174,27,0,0,0.24993 -30543,1217:475,175,27,0,0,0.241947 -30544,1217:476,176,27,0,0,0.25423 -30545,1217:477,177,27,0,0,0.264932 -30546,1217:478,178,27,0,0,0.246689 -30547,1217:479,179,27,0,0,0.251261 -30548,1218:370,180,27,0,0,0.247568 -30549,7218:380,-180,28,0,0,0.220782 -30550,7217:489,-179,28,0,0,0.218685 -30551,7217:488,-178,28,0,0,0.218703 -30552,7217:487,-177,28,0,0,0.217494 -30553,7217:486,-176,28,0,0,0.213017 -30554,7217:485,-175,28,0,0,0.2135 -30555,7217:384,-174,28,0,0,0.215699 -30556,7217:383,-173,28,0,0,0.215264 -30557,7217:382,-172,28,0,0,0.213983 -30558,7217:381,-171,28,0,0,0.215403 -30559,7217:380,-170,28,0,0,0.217967 -30560,7216:489,-169,28,0,0,0.217494 -30561,7216:488,-168,28,0,0,0.216099 -30562,7216:487,-167,28,0,0,0.216743 -30563,7216:486,-166,28,0,0,0.221525 -30564,7216:485,-165,28,0,0,0.223801 -30565,7216:384,-164,28,0,0,0.225251 -30566,7216:383,-163,28,0,0,0.223784 -30567,7216:382,-162,28,0,0,0.223587 -30568,7216:381,-161,28,0,0,0.226904 -30569,7216:380,-160,28,0,0,0.231514 -30570,7215:489,-159,28,0,0,0.237695 -30571,7215:488,-158,28,0,0,0.240274 -30572,7215:487,-157,28,0,0,0.238086 -30573,7215:486,-156,28,0,0,0.238235 -30574,7215:485,-155,28,0,0,0.242852 -30575,7215:384,-154,28,0,0,0.240105 -30576,7215:383,-153,28,0,0,0.244405 -30577,7215:382,-152,28,0,0,0.249429 -30578,7215:381,-151,28,0,0,0.249891 -30579,7215:380,-150,28,0,0,0.253063 -30580,7214:489,-149,28,0,0,0.257634 -30581,7214:488,-148,28,0,0,0.258559 -30582,7214:487,-147,28,0,0,0.258343 -30583,7214:486,-146,28,0,0,0.263912 -30584,7214:485,-145,28,0,0,0.267984 -30585,7214:384,-144,28,0,0,0.265993 -30586,7214:383,-143,28,0,0,0.2621 -30587,7214:382,-142,28,0,0,0.266094 -30588,7214:381,-141,28,0,0,0.269762 -30589,7214:380,-140,28,0,0,0.276143 -30590,7213:489,-139,28,0,0,0.281432 -30591,7213:488,-138,28,0,0,0.285438 -30592,7213:487,-137,28,0,0,0.281993 -30593,7213:486,-136,28,0,0,0.281889 -30594,7213:485,-135,28,0,0,0.284559 -30595,7213:384,-134,28,0,0,0.28798 -30596,7213:383,-133,28,0,0,0.284935 -30597,7213:382,-132,28,0,0,0.284329 -30598,7213:381,-131,28,0,0,0.284349 -30599,7213:380,-130,28,0,0,0.284266 -30600,7212:489,-129,28,0,0,0.28243 -30601,7212:488,-128,28,0,0,0.270045 -30602,7212:487,-127,28,0,0,0.268892 -30603,7212:486,-126,28,0,0,0.265392 -30604,7212:485,-125,28,0,0,0.263354 -30605,7207:380,-70,28,0,0,0.201523 -30606,7206:489,-69,28,0,0,0.233605 -30607,7206:488,-68,28,0,0,0.261802 -30608,7206:487,-67,28,0,0,0.259486 -30609,7206:486,-66,28,0,0,0.274176 -30610,7206:485,-65,28,0,0,0.334956 -30611,7206:384,-64,28,0,0,0.299187 -30612,7206:383,-63,28,0,0,0.377759 -30613,7206:382,-62,28,0,0,0.416103 -30614,7206:381,-61,28,0,0,0.423736 -30615,7206:380,-60,28,0,0,0.407543 -30616,7205:489,-59,28,0,0,0.364738 -30617,7205:488,-58,28,0,0,0.296373 -30618,7205:487,-57,28,0,0,0.307744 -30619,7205:486,-56,28,0,0,0.302863 -30620,7205:485,-55,28,0,0,0.322577 -30621,7205:384,-54,28,0,0,0.283326 -30622,7205:383,-53,28,0,0,0.2321 -30623,7205:382,-52,28,0,0,0.231168 -30624,7205:381,-51,28,0,0,0.266174 -30625,7205:380,-50,28,0,0,0.318036 -30626,7204:489,-49,28,0,0,0.349315 -30627,7204:488,-48,28,0,0,0.375998 -30628,7204:487,-47,28,0,0,0.375275 -30629,7204:486,-46,28,0,0,0.299403 -30630,7204:485,-45,28,0,0,0.264952 -30631,7204:384,-44,28,0,0,0.374577 -30632,7204:383,-43,28,0,0,0.384059 -30633,7204:382,-42,28,0,0,0.380396 -30634,7204:381,-41,28,0,0,0.331622 -30635,7204:380,-40,28,0,0,0.346332 -30636,7203:489,-39,28,0,0,0.349198 -30637,7203:488,-38,28,0,0,0.368962 -30638,7203:487,-37,28,0,0,0.360535 -30639,7203:486,-36,28,0,0,0.362883 -30640,7203:485,-35,28,0,0,0.353624 -30641,7203:384,-34,28,0,0,0.352005 -30642,7203:383,-33,28,0,0,0.340147 -30643,7203:382,-32,28,0,0,0.331167 -30644,7203:381,-31,28,0,0,0.331303 -30645,7203:380,-30,28,0,0,0.332648 -30646,7202:489,-29,28,0,0,0.332238 -30647,7202:488,-28,28,0,0,0.331873 -30648,7202:487,-27,28,0,0,0.326157 -30649,7202:486,-26,28,0,0,0.322509 -30650,7202:485,-25,28,0,0,0.322196 -30651,7202:384,-24,28,0,0,0.32047 -30652,7202:383,-23,28,0,0,0.317346 -30653,7202:382,-22,28,0,0,0.316367 -30654,7202:381,-21,28,0,0,0.310091 -30655,7202:380,-20,28,0,0,0.316278 -30656,7201:489,-19,28,0,0,0.31639 -30657,7201:488,-18,28,0,0,0.310926 -30658,7201:487,-17,28,0,0,0.305494 -30659,7201:486,-16,28,0,0,0.310773 -30660,7201:485,-15,28,0,0,0.313884 -30661,7201:384,-14,28,0,0,0.311697 -30662,7201:383,-13,28,0,0,0.312425 -30663,7201:382,-12,28,0,0,0.31539 -30664,7201:381,-11,28,0,0,0.323701 -30665,7201:380,-10,28,0,0,0.305646 -30666,1200:383,3,28,0,0,0.346541 -30667,1200:384,4,28,0,0,0.348474 -30668,1200:485,5,28,0,0,0.356258 -30669,1200:486,6,28,0,0,0.355928 -30670,1200:487,7,28,0,0,0.35999 -30671,1200:488,8,28,0,0,0.35798 -30672,1200:489,9,28,0,0,0.366836 -30673,1201:380,10,28,0,0,0.364904 -30674,1201:381,11,28,0,0,0.363477 -30675,1201:382,12,28,0,0,0.365381 -30676,1201:487,17,28,0,0,0.364333 -30677,1201:488,18,28,0,0,0.370063 -30678,1202:384,24,28,0,0,0.349805 -30679,1202:485,25,28,0,0,0.339272 -30680,1202:487,27,28,0,0,0.313286 -30681,1202:488,28,28,0,0,0.300006 -30682,1212:382,122,28,0,0,0.158296 -30683,1213:381,131,28,0,0,0.237025 -30684,1213:382,132,28,0,0,0.261544 -30685,1213:383,133,28,0,0,0.242437 -30686,1213:384,134,28,0,0,0.269033 -30687,1213:485,135,28,0,0,0.25351 -30688,1213:486,136,28,0,0,0.240743 -30689,1213:487,137,28,0,0,0.278842 -30690,1213:488,138,28,0,0,0.269377 -30691,1213:489,139,28,0,0,0.254094 -30692,1214:380,140,28,0,0,0.255186 -30693,1214:382,142,28,0,0,0.302602 -30694,1214:383,143,28,0,0,0.283263 -30695,1214:384,144,28,0,0,0.208709 -30696,1214:485,145,28,0,0,0.284308 -30697,1214:486,146,28,0,0,0.325683 -30698,1214:487,147,28,0,0,0.321388 -30699,1214:488,148,28,0,0,0.263354 -30700,1214:489,149,28,0,0,0.293169 -30701,1215:380,150,28,0,0,0.272116 -30702,1215:381,151,28,0,0,0.272666 -30703,1215:382,152,28,0,0,0.253355 -30704,1215:383,153,28,0,0,0.268065 -30705,1215:384,154,28,0,0,0.297918 -30706,1215:485,155,28,0,0,0.290092 -30707,1215:486,156,28,0,0,0.28798 -30708,1215:487,157,28,0,0,0.275609 -30709,1215:488,158,28,0,0,0.268407 -30710,1215:489,159,28,0,0,0.266234 -30711,1216:380,160,28,0,0,0.265452 -30712,1216:381,161,28,0,0,0.246212 -30713,1216:382,162,28,0,0,0.238702 -30714,1216:383,163,28,0,0,0.261029 -30715,1216:384,164,28,0,0,0.248277 -30716,1216:485,165,28,0,0,0.257772 -30717,1216:486,166,28,0,0,0.263873 -30718,1216:487,167,28,0,0,0.25252 -30719,1216:488,168,28,0,0,0.243023 -30720,1216:489,169,28,0,0,0.235394 -30721,1217:380,170,28,0,0,0.23872 -30722,1217:381,171,28,0,0,0.251068 -30723,1217:382,172,28,0,0,0.22389 -30724,1217:383,173,28,0,0,0.218598 -30725,1217:384,174,28,0,0,0.227012 -30726,1217:485,175,28,0,0,0.226004 -30727,1217:486,176,28,0,0,0.221295 -30728,1217:487,177,28,0,0,0.221366 -30729,1217:488,178,28,0,0,0.226922 -30730,1217:489,179,28,0,0,0.22667 -30731,1218:380,180,28,0,0,0.220782 -30732,7218:390,-180,29,0,0,0.209218 -30733,7217:499,-179,29,0,0,0.207777 -30734,7217:498,-178,29,0,0,0.203198 -30735,7217:497,-177,29,0,0,0.204047 -30736,7217:496,-176,29,0,0,0.204364 -30737,7217:495,-175,29,0,0,0.201771 -30738,7217:394,-174,29,0,0,0.201423 -30739,7217:393,-173,29,0,0,0.19999 -30740,7217:392,-172,29,0,0,0.19971 -30741,7217:391,-171,29,0,0,0.20197 -30742,7217:390,-170,29,0,0,0.202815 -30743,7216:499,-169,29,0,0,0.202069 -30744,7216:498,-168,29,0,0,0.203015 -30745,7216:497,-167,29,0,0,0.205369 -30746,7216:496,-166,29,0,0,0.208777 -30747,7216:495,-165,29,0,0,0.212741 -30748,7216:394,-164,29,0,0,0.211539 -30749,7216:393,-163,29,0,0,0.208183 -30750,7216:392,-162,29,0,0,0.209048 -30751,7216:391,-161,29,0,0,0.211762 -30752,7216:390,-160,29,0,0,0.217232 -30753,7215:499,-159,29,0,0,0.222839 -30754,7215:498,-158,29,0,0,0.222075 -30755,7215:497,-157,29,0,0,0.222928 -30756,7215:496,-156,29,0,0,0.225933 -30757,7215:495,-155,29,0,0,0.226778 -30758,7215:394,-154,29,0,0,0.233109 -30759,7215:393,-153,29,0,0,0.233992 -30760,7215:392,-152,29,0,0,0.232907 -30761,7215:391,-151,29,0,0,0.237732 -30762,7215:390,-150,29,0,0,0.234286 -30763,7214:499,-149,29,0,0,0.236079 -30764,7214:498,-148,29,0,0,0.243666 -30765,7214:497,-147,29,0,0,0.244765 -30766,7214:496,-146,29,0,0,0.250643 -30767,7214:495,-145,29,0,0,0.252869 -30768,7214:394,-144,29,0,0,0.253646 -30769,7214:393,-143,29,0,0,0.252209 -30770,7214:392,-142,29,0,0,0.251319 -30771,7214:391,-141,29,0,0,0.254952 -30772,7214:390,-140,29,0,0,0.256477 -30773,7213:499,-139,29,0,0,0.257929 -30774,7213:498,-138,29,0,0,0.264372 -30775,7213:497,-137,29,0,0,0.267621 -30776,7213:496,-136,29,0,0,0.269114 -30777,7213:495,-135,29,0,0,0.267481 -30778,7213:394,-134,29,0,0,0.270856 -30779,7213:393,-133,29,0,0,0.27389 -30780,7213:392,-132,29,0,0,0.272645 -30781,7213:391,-131,29,0,0,0.273502 -30782,7213:390,-130,29,0,0,0.275897 -30783,7212:499,-129,29,0,0,0.270268 -30784,7212:498,-128,29,0,0,0.256065 -30785,7212:497,-127,29,0,0,0.25846 -30786,7212:496,-126,29,0,0,0.260415 -30787,7212:495,-125,29,0,0,0.254074 -30788,7207:390,-70,29,0,0,0.216499 -30789,7206:499,-69,29,0,0,0.216482 -30790,7206:498,-68,29,0,0,0.22398 -30791,7206:497,-67,29,0,0,0.221933 -30792,7206:496,-66,29,0,0,0.233182 -30793,7206:495,-65,29,0,0,0.233973 -30794,7206:394,-64,29,0,0,0.215455 -30795,7206:393,-63,29,0,0,0.217931 -30796,7206:392,-62,29,0,0,0.234194 -30797,7206:391,-61,29,0,0,0.230201 -30798,7206:390,-60,29,0,0,0.218282 -30799,7205:499,-59,29,0,0,0.230985 -30800,7205:498,-58,29,0,0,0.273053 -30801,7205:497,-57,29,0,0,0.279028 -30802,7205:496,-56,29,0,0,0.307328 -30803,7205:495,-55,29,0,0,0.29794 -30804,7205:394,-54,29,0,0,0.204749 -30805,7205:393,-53,29,0,0,0.213206 -30806,7205:392,-52,29,0,0,0.208895 -30807,7205:391,-51,29,0,0,0.186086 -30808,7205:390,-50,29,0,0,0.151228 -30809,7204:499,-49,29,0,0,0.131819 -30810,7204:498,-48,29,0,0,0.345378 -30811,7204:497,-47,29,0,0,0.297016 -30812,7204:496,-46,29,0,0,0.301433 -30813,7204:495,-45,29,0,0,0.247549 -30814,7204:394,-44,29,0,0,0.26738 -30815,7204:393,-43,29,0,0,0.287349 -30816,7204:392,-42,29,0,0,0.294257 -30817,7204:391,-41,29,0,0,0.329735 -30818,7204:390,-40,29,0,0,0.326225 -30819,7203:499,-39,29,0,0,0.320582 -30820,7203:498,-38,29,0,0,0.317368 -30821,7203:497,-37,29,0,0,0.289479 -30822,7203:496,-36,29,0,0,0.31579 -30823,7203:495,-35,29,0,0,0.313265 -30824,7203:394,-34,29,0,0,0.336766 -30825,7203:393,-33,29,0,0,0.317034 -30826,7203:392,-32,29,0,0,0.315812 -30827,7203:391,-31,29,0,0,0.328963 -30828,7203:390,-30,29,0,0,0.331713 -30829,7202:499,-29,29,0,0,0.329735 -30830,7202:498,-28,29,0,0,0.329213 -30831,7202:497,-27,29,0,0,0.322577 -30832,7202:496,-26,29,0,0,0.32038 -30833,7202:495,-25,29,0,0,0.317168 -30834,7202:394,-24,29,0,0,0.312425 -30835,7202:393,-23,29,0,0,0.310992 -30836,7202:392,-22,29,0,0,0.304362 -30837,7202:391,-21,29,0,0,0.30665 -30838,7202:390,-20,29,0,0,0.303383 -30839,7201:499,-19,29,0,0,0.298455 -30840,7201:498,-18,29,0,0,0.300481 -30841,7201:497,-17,29,0,0,0.296416 -30842,7201:496,-16,29,0,0,0.298413 -30843,7201:495,-15,29,0,0,0.300287 -30844,7201:394,-14,29,0,0,0.304188 -30845,7201:393,-13,29,0,0,0.296909 -30846,7201:392,-12,29,0,0,0.298176 -30847,7201:391,-11,29,0,0,0.311367 -30848,7201:390,-10,29,0,0,0.293404 -30849,1200:393,3,29,0,0,0.34218 -30850,1200:394,4,29,0,0,0.336192 -30851,1200:495,5,29,0,0,0.344334 -30852,1200:496,6,29,0,0,0.348474 -30853,1200:497,7,29,0,0,0.352427 -30854,1200:498,8,29,0,0,0.355081 -30855,1200:499,9,29,0,0,0.360961 -30856,1201:390,10,29,0,0,0.360724 -30857,1201:394,14,29,0,0,0.354328 -30858,1201:495,15,29,0,0,0.360866 -30859,1201:496,16,29,0,0,0.371885 -30860,1201:497,17,29,0,0,0.374168 -30861,1201:498,18,29,0,0,0.388077 -30862,1202:498,28,29,0,0,0.281723 -30863,1202:499,29,29,0,0,0.279669 -30864,1203:390,30,29,0,0,0.2788 -30865,1203:498,38,29,0,0,0.287538 -30866,1213:391,131,29,0,0,0.195766 -30867,1213:392,132,29,0,0,0.174119 -30868,1213:393,133,29,0,0,0.181585 -30869,1213:394,134,29,0,0,0.183009 -30870,1213:495,135,29,0,0,0.189361 -30871,1213:496,136,29,0,0,0.196398 -30872,1213:497,137,29,0,0,0.192663 -30873,1213:498,138,29,0,0,0.22491 -30874,1213:499,139,29,0,0,0.237583 -30875,1214:390,140,29,0,0,0.227897 -30876,1214:495,145,29,0,0,0.152671 -30877,1214:496,146,29,0,0,0.147069 -30878,1214:497,147,29,0,0,0.198269 -30879,1214:498,148,29,0,0,0.219635 -30880,1214:499,149,29,0,0,0.292234 -30881,1215:390,150,29,0,0,0.276822 -30882,1215:391,151,29,0,0,0.269579 -30883,1215:392,152,29,0,0,0.161317 -30884,1215:393,153,29,0,0,0.179004 -30885,1215:394,154,29,0,0,0.196625 -30886,1215:495,155,29,0,0,0.203964 -30887,1215:496,156,29,0,0,0.20727 -30888,1215:497,157,29,0,0,0.202982 -30889,1215:498,158,29,0,0,0.212157 -30890,1215:499,159,29,0,0,0.237639 -30891,1216:390,160,29,0,0,0.232999 -30892,1216:391,161,29,0,0,0.226256 -30893,1216:392,162,29,0,0,0.243249 -30894,1216:393,163,29,0,0,0.217897 -30895,1216:394,164,29,0,0,0.223623 -30896,1216:495,165,29,0,0,0.228313 -30897,1216:496,166,29,0,0,0.206444 -30898,1216:497,167,29,0,0,0.201407 -30899,1216:498,168,29,0,0,0.199349 -30900,1216:499,169,29,0,0,0.208742 -30901,1217:390,170,29,0,0,0.204883 -30902,1217:391,171,29,0,0,0.224355 -30903,1217:392,172,29,0,0,0.214363 -30904,1217:393,173,29,0,0,0.204214 -30905,1217:394,174,29,0,0,0.194459 -30906,1217:495,175,29,0,0,0.204833 -30907,1217:496,176,29,0,0,0.215525 -30908,1217:497,177,29,0,0,0.207152 -30909,1217:498,178,29,0,0,0.202268 -30910,1217:499,179,29,0,0,0.205973 -30911,1218:390,180,29,0,0,0.209218 -30912,7318:100,-180,30,0,0,0.184427 -30913,7317:209,-179,30,0,0,0.185884 -30914,7317:208,-178,30,0,0,0.191244 -30915,7317:207,-177,30,0,0,0.191038 -30916,7317:206,-176,30,0,0,0.1922 -30917,7317:205,-175,30,0,0,0.192855 -30918,7317:104,-174,30,0,0,0.190974 -30919,7317:103,-173,30,0,0,0.18955 -30920,7317:102,-172,30,0,0,0.188039 -30921,7317:101,-171,30,0,0,0.187225 -30922,7317:100,-170,30,0,0,0.188668 -30923,7316:209,-169,30,0,0,0.188856 -30924,7316:208,-168,30,0,0,0.189629 -30925,7316:207,-167,30,0,0,0.189093 -30926,7316:206,-166,30,0,0,0.192455 -30927,7316:205,-165,30,0,0,0.200401 -30928,7316:104,-164,30,0,0,0.197747 -30929,7316:103,-163,30,0,0,0.195475 -30930,7316:102,-162,30,0,0,0.19669 -30931,7316:101,-161,30,0,0,0.198286 -30932,7316:100,-160,30,0,0,0.207371 -30933,7315:209,-159,30,0,0,0.209031 -30934,7315:208,-158,30,0,0,0.204281 -30935,7315:207,-157,30,0,0,0.212965 -30936,7315:206,-156,30,0,0,0.212741 -30937,7315:205,-155,30,0,0,0.214709 -30938,7315:104,-154,30,0,0,0.218265 -30939,7315:103,-153,30,0,0,0.215316 -30940,7315:102,-152,30,0,0,0.219072 -30941,7315:101,-151,30,0,0,0.218528 -30942,7315:100,-150,30,0,0,0.2211 -30943,7314:209,-149,30,0,0,0.230894 -30944,7314:208,-148,30,0,0,0.232357 -30945,7314:207,-147,30,0,0,0.23412 -30946,7314:206,-146,30,0,0,0.2379 -30947,7314:205,-145,30,0,0,0.240349 -30948,7314:104,-144,30,0,0,0.239561 -30949,7314:103,-143,30,0,0,0.238272 -30950,7314:102,-142,30,0,0,0.23872 -30951,7314:101,-141,30,0,0,0.240123 -30952,7314:100,-140,30,0,0,0.245964 -30953,7313:209,-139,30,0,0,0.247893 -30954,7313:208,-138,30,0,0,0.259367 -30955,7313:207,-137,30,0,0,0.256124 -30956,7313:206,-136,30,0,0,0.258185 -30957,7313:205,-135,30,0,0,0.25994 -30958,7313:104,-134,30,0,0,0.264692 -30959,7313:103,-133,30,0,0,0.262796 -30960,7313:102,-132,30,0,0,0.259111 -30961,7313:101,-131,30,0,0,0.259447 -30962,7313:100,-130,30,0,0,0.259604 -30963,7312:209,-129,30,0,0,0.252287 -30964,7312:208,-128,30,0,0,0.254952 -30965,7312:207,-127,30,0,0,0.257969 -30966,7312:206,-126,30,0,0,0.247415 -30967,7312:205,-125,30,0,0,0.243798 -30968,7306:209,-69,30,0,0,0.204314 -30969,7306:208,-68,30,0,0,0.202583 -30970,7306:207,-67,30,0,0,0.203514 -30971,7306:206,-66,30,0,0,0.211556 -30972,7306:104,-64,30,0,0,0.204816 -30973,7306:103,-63,30,0,0,0.196365 -30974,7306:102,-62,30,0,0,0.190848 -30975,7306:101,-61,30,0,0,0.196219 -30976,7306:100,-60,30,0,0,0.19169 -30977,7305:209,-59,30,0,0,0.181815 -30978,7305:208,-58,30,0,0,0.16274 -30979,7305:207,-57,30,0,0,0.161415 -30980,7305:206,-56,30,0,0,0.201589 -30981,7305:205,-55,30,0,0,0.18966 -30982,7305:104,-54,30,0,0,0.165049 -30983,7305:103,-53,30,0,0,0.178611 -30984,7305:102,-52,30,0,0,0.170007 -30985,7305:101,-51,30,0,0,0.159257 -30986,7305:100,-50,30,0,0,0.150583 -30987,7304:209,-49,30,0,0,0.127426 -30988,7304:208,-48,30,0,0,0.151294 -30989,7304:207,-47,30,0,0,0.324083 -30990,7304:206,-46,30,0,0,0.311037 -30991,7304:205,-45,30,0,0,0.212243 -30992,7304:104,-44,30,0,0,0.276616 -30993,7304:103,-43,30,0,0,0.271993 -30994,7304:102,-42,30,0,0,0.291448 -30995,7304:101,-41,30,0,0,0.301195 -30996,7304:100,-40,30,0,0,0.253899 -30997,7303:209,-39,30,0,0,0.275589 -30998,7303:208,-38,30,0,0,0.274933 -30999,7303:207,-37,30,0,0,0.273481 -31000,7303:206,-36,30,0,0,0.293276 -31001,7303:205,-35,30,0,0,0.330621 -31002,7303:104,-34,30,0,0,0.329303 -31003,7303:103,-33,30,0,0,0.297402 -31004,7303:102,-32,30,0,0,0.29633 -31005,7303:101,-31,30,0,0,0.310442 -31006,7303:100,-30,30,0,0,0.318839 -31007,7302:209,-29,30,0,0,0.328306 -31008,7302:208,-28,30,0,0,0.324511 -31009,7302:207,-27,30,0,0,0.312183 -31010,7302:206,-26,30,0,0,0.308181 -31011,7302:205,-25,30,0,0,0.309454 -31012,7302:104,-24,30,0,0,0.307437 -31013,7302:103,-23,30,0,0,0.303774 -31014,7302:102,-22,30,0,0,0.299381 -31015,7302:101,-21,30,0,0,0.298047 -31016,7302:100,-20,30,0,0,0.295495 -31017,7301:209,-19,30,0,0,0.292191 -31018,7301:208,-18,30,0,0,0.294534 -31019,7301:207,-17,30,0,0,0.290769 -31020,7301:206,-16,30,0,0,0.291915 -31021,7301:205,-15,30,0,0,0.290748 -31022,7301:104,-14,30,0,0,0.293382 -31023,7301:103,-13,30,0,0,0.290621 -31024,7301:102,-12,30,0,0,0.290176 -31025,7301:101,-11,30,0,0,0.287665 -31026,7301:100,-10,30,0,0,0.287622 -31027,7300:209,-9,30,0,0,0.28988 -31028,7300:208,-8,30,0,0,0.293042 -31029,7300:207,-7,30,0,0,0.294769 -31030,7300:206,-6,30,0,0,0.295923 -31031,7300:205,-5,30,0,0,0.295303 -31032,7300:104,-4,30,0,0,0.297123 -31033,7300:103,-3,30,0,0,0.298714 -31034,1300:207,7,30,0,0,0.350179 -31035,1300:208,8,30,0,0,0.349525 -31036,1300:209,9,30,0,0,0.35487 -31037,1301:103,13,30,0,0,0.319286 -31038,1301:104,14,30,0,0,0.368675 -31039,1301:205,15,30,0,0,0.374649 -31040,1301:206,16,30,0,0,0.320045 -31041,1302:207,27,30,0,0,0.281245 -31042,1302:208,28,30,0,0,0.267944 -31043,1302:209,29,30,0,0,0.26738 -31044,1303:100,30,30,0,0,0.270876 -31045,1303:101,31,30,0,0,0.273216 -31046,1303:102,32,30,0,0,0.282118 -31047,1303:103,33,30,0,0,0.285878 -31048,1303:104,34,30,0,0,0.286298 -31049,1303:205,35,30,0,0,0.284663 -31050,1303:206,36,30,0,0,0.27604 -31051,1303:207,37,30,0,0,0.261227 -31052,1303:208,38,30,0,0,0.263095 -31053,1303:209,39,30,0,0,0.275302 -31054,1304:100,40,30,0,0,0.288107 -31055,1313:206,136,30,0,0,0.168001 -31056,1313:207,137,30,0,0,0.181173 -31057,1313:208,138,30,0,0,0.219565 -31058,1313:209,139,30,0,0,0.233605 -31059,1314:100,140,30,0,0,0.203264 -31060,1314:101,141,30,0,0,0.201126 -31061,1314:102,142,30,0,0,0.199776 -31062,1314:206,146,30,0,0,0.156294 -31063,1314:207,147,30,0,0,0.147043 -31064,1314:208,148,30,0,0,0.139109 -31065,1314:209,149,30,0,0,0.142138 -31066,1315:100,150,30,0,0,0.141114 -31067,1315:101,151,30,0,0,0.137322 -31068,1315:102,152,30,0,0,0.146683 -31069,1315:103,153,30,0,0,0.152618 -31070,1315:104,154,30,0,0,0.14658 -31071,1315:205,155,30,0,0,0.150622 -31072,1315:206,156,30,0,0,0.188904 -31073,1315:207,157,30,0,0,0.188668 -31074,1315:208,158,30,0,0,0.179866 -31075,1315:209,159,30,0,0,0.175008 -31076,1316:100,160,30,0,0,0.184427 -31077,1316:101,161,30,0,0,0.23135 -31078,1316:102,162,30,0,0,0.215751 -31079,1316:103,163,30,0,0,0.208793 -31080,1316:104,164,30,0,0,0.200796 -31081,1316:205,165,30,0,0,0.196414 -31082,1316:206,166,30,0,0,0.194943 -31083,1316:207,167,30,0,0,0.186258 -31084,1316:208,168,30,0,0,0.192519 -31085,1316:209,169,30,0,0,0.189156 -31086,1317:100,170,30,0,0,0.177559 -31087,1317:101,171,30,0,0,0.18435 -31088,1317:102,172,30,0,0,0.205234 -31089,1317:103,173,30,0,0,0.196171 -31090,1317:104,174,30,0,0,0.175171 -31091,1317:205,175,30,0,0,0.183517 -31092,1317:206,176,30,0,0,0.189929 -31093,1317:207,177,30,0,0,0.19004 -31094,1317:208,178,30,0,0,0.187366 -31095,1317:209,179,30,0,0,0.188196 -31096,1318:100,180,30,0,0,0.184427 -31097,7318:110,-180,31,0,0,0.169023 -31098,7317:219,-179,31,0,0,0.17066 -31099,7317:218,-178,31,0,0,0.177244 -31100,7317:217,-177,31,0,0,0.176108 -31101,7317:216,-176,31,0,0,0.177289 -31102,7317:215,-175,31,0,0,0.182059 -31103,7317:114,-174,31,0,0,0.177529 -31104,7317:113,-173,31,0,0,0.176944 -31105,7317:112,-172,31,0,0,0.179412 -31106,7317:111,-171,31,0,0,0.177334 -31107,7317:110,-170,31,0,0,0.176795 -31108,7316:219,-169,31,0,0,0.178702 -31109,7316:218,-168,31,0,0,0.181219 -31110,7316:217,-167,31,0,0,0.182136 -31111,7316:216,-166,31,0,0,0.183271 -31112,7316:215,-165,31,0,0,0.184628 -31113,7316:114,-164,31,0,0,0.1871 -31114,7316:113,-163,31,0,0,0.188447 -31115,7316:112,-162,31,0,0,0.189471 -31116,7316:111,-161,31,0,0,0.189266 -31117,7316:110,-160,31,0,0,0.19177 -31118,7315:219,-159,31,0,0,0.191372 -31119,7315:218,-158,31,0,0,0.189597 -31120,7315:217,-157,31,0,0,0.198204 -31121,7315:216,-156,31,0,0,0.200467 -31122,7315:215,-155,31,0,0,0.195265 -31123,7315:114,-154,31,0,0,0.194943 -31124,7315:113,-153,31,0,0,0.196625 -31125,7315:112,-152,31,0,0,0.202965 -31126,7315:111,-151,31,0,0,0.209439 -31127,7315:110,-150,31,0,0,0.209184 -31128,7314:219,-149,31,0,0,0.213017 -31129,7314:218,-148,31,0,0,0.218335 -31130,7314:217,-147,31,0,0,0.221702 -31131,7314:216,-146,31,0,0,0.22275 -31132,7314:215,-145,31,0,0,0.222359 -31133,7314:114,-144,31,0,0,0.227662 -31134,7314:113,-143,31,0,0,0.226742 -31135,7314:112,-142,31,0,0,0.227103 -31136,7314:111,-141,31,0,0,0.234157 -31137,7314:110,-140,31,0,0,0.235542 -31138,7313:219,-139,31,0,0,0.233826 -31139,7313:218,-138,31,0,0,0.242267 -31140,7313:217,-137,31,0,0,0.244823 -31141,7313:216,-136,31,0,0,0.2502 -31142,7313:215,-135,31,0,0,0.250392 -31143,7313:114,-134,31,0,0,0.250778 -31144,7313:113,-133,31,0,0,0.248488 -31145,7313:112,-132,31,0,0,0.250045 -31146,7313:111,-131,31,0,0,0.251648 -31147,7313:110,-130,31,0,0,0.249103 -31148,7312:219,-129,31,0,0,0.245374 -31149,7312:218,-128,31,0,0,0.249949 -31150,7312:217,-127,31,0,0,0.249218 -31151,7312:216,-126,31,0,0,0.247262 -31152,7312:215,-125,31,0,0,0.242116 -31153,7306:216,-66,31,0,0,0.2025 -31154,7306:112,-62,31,0,0,0.173279 -31155,7306:111,-61,31,0,0,0.1719 -31156,7306:110,-60,31,0,0,0.163259 -31157,7305:219,-59,31,0,0,0.161874 -31158,7305:218,-58,31,0,0,0.152857 -31159,7305:217,-57,31,0,0,0.146529 -31160,7305:216,-56,31,0,0,0.142063 -31161,7305:215,-55,31,0,0,0.133605 -31162,7305:114,-54,31,0,0,0.144472 -31163,7305:113,-53,31,0,0,0.142741 -31164,7305:112,-52,31,0,0,0.143005 -31165,7305:111,-51,31,0,0,0.143459 -31166,7305:110,-50,31,0,0,0.135748 -31167,7304:219,-49,31,0,0,0.129149 -31168,7304:218,-48,31,0,0,0.128988 -31169,7304:217,-47,31,0,0,0.200681 -31170,7304:216,-46,31,0,0,0.2025 -31171,7304:215,-45,31,0,0,0.237974 -31172,7304:114,-44,31,0,0,0.255303 -31173,7304:113,-43,31,0,0,0.251667 -31174,7304:112,-42,31,0,0,0.251899 -31175,7304:111,-41,31,0,0,0.249391 -31176,7304:110,-40,31,0,0,0.232705 -31177,7303:219,-39,31,0,0,0.260177 -31178,7303:218,-38,31,0,0,0.274422 -31179,7303:217,-37,31,0,0,0.268549 -31180,7303:216,-36,31,0,0,0.275118 -31181,7303:215,-35,31,0,0,0.294448 -31182,7303:114,-34,31,0,0,0.306716 -31183,7303:113,-33,31,0,0,0.275897 -31184,7303:112,-32,31,0,0,0.289267 -31185,7303:111,-31,31,0,0,0.281266 -31186,7303:110,-30,31,0,0,0.291066 -31187,7302:219,-29,31,0,0,0.323611 -31188,7302:218,-28,31,0,0,0.325007 -31189,7302:217,-27,31,0,0,0.315834 -31190,7302:216,-26,31,0,0,0.315479 -31191,7302:215,-25,31,0,0,0.315945 -31192,7302:114,-24,31,0,0,0.31042 -31193,7302:113,-23,31,0,0,0.306279 -31194,7302:112,-22,31,0,0,0.299532 -31195,7302:111,-21,31,0,0,0.29736 -31196,7302:110,-20,31,0,0,0.290155 -31197,7301:219,-19,31,0,0,0.286424 -31198,7301:218,-18,31,0,0,0.284141 -31199,7301:217,-17,31,0,0,0.284768 -31200,7301:216,-16,31,0,0,0.283451 -31201,7301:215,-15,31,0,0,0.284287 -31202,7301:114,-14,31,0,0,0.285815 -31203,7301:113,-13,31,0,0,0.281411 -31204,7301:112,-12,31,0,0,0.282139 -31205,7301:111,-11,31,0,0,0.285229 -31206,7301:110,-10,31,0,0,0.282201 -31207,7300:219,-9,31,0,0,0.281806 -31208,7300:218,-8,31,0,0,0.280394 -31209,7300:217,-7,31,0,0,0.283702 -31210,7300:216,-6,31,0,0,0.28437 -31211,7300:215,-5,31,0,0,0.288212 -31212,7300:114,-4,31,0,0,0.287054 -31213,7300:113,-3,31,0,0,0.293915 -31214,7300:112,-2,31,0,0,0.27049 -31215,1301:112,12,31,0,0,0.324421 -31216,1301:113,13,31,0,0,0.348825 -31217,1301:114,14,31,0,0,0.326405 -31218,1302:218,28,31,0,0,0.27236 -31219,1302:219,29,31,0,0,0.266696 -31220,1303:110,30,31,0,0,0.270247 -31221,1303:111,31,31,0,0,0.273624 -31222,1303:112,32,31,0,0,0.275466 -31223,1303:113,33,31,0,0,0.281058 -31224,1303:114,34,31,0,0,0.277089 -31225,1303:215,35,31,0,0,0.262458 -31226,1303:216,36,31,0,0,0.258303 -31227,1303:217,37,31,0,0,0.264792 -31228,1303:218,38,31,0,0,0.267903 -31229,1303:219,39,31,0,0,0.28166 -31230,1304:110,40,31,0,0,0.291108 -31231,1313:218,138,31,0,0,0.173574 -31232,1313:219,139,31,0,0,0.185124 -31233,1314:110,140,31,0,0,0.184551 -31234,1314:111,141,31,0,0,0.181371 -31235,1314:112,142,31,0,0,0.195055 -31236,1314:114,144,31,0,0,0.126016 -31237,1314:215,145,31,0,0,0.110916 -31238,1314:216,146,31,0,0,0.136351 -31239,1314:217,147,31,0,0,0.132207 -31240,1314:218,148,31,0,0,0.1337 -31241,1314:219,149,31,0,0,0.149561 -31242,1315:110,150,31,0,0,0.141838 -31243,1315:111,151,31,0,0,0.134248 -31244,1315:112,152,31,0,0,0.135808 -31245,1315:113,153,31,0,0,0.145913 -31246,1315:114,154,31,0,0,0.151518 -31247,1315:215,155,31,0,0,0.138287 -31248,1315:216,156,31,0,0,0.138655 -31249,1315:217,157,31,0,0,0.169891 -31250,1315:218,158,31,0,0,0.150294 -31251,1315:219,159,31,0,0,0.141676 -31252,1316:110,160,31,0,0,0.14413 -31253,1316:111,161,31,0,0,0.151347 -31254,1316:112,162,31,0,0,0.220729 -31255,1316:113,163,31,0,0,0.213189 -31256,1316:114,164,31,0,0,0.178747 -31257,1316:215,165,31,0,0,0.169587 -31258,1316:216,166,31,0,0,0.183809 -31259,1316:217,167,31,0,0,0.174608 -31260,1316:218,168,31,0,0,0.165716 -31261,1316:219,169,31,0,0,0.180382 -31262,1317:110,170,31,0,0,0.169572 -31263,1317:111,171,31,0,0,0.171053 -31264,1317:112,172,31,0,0,0.177589 -31265,1317:113,173,31,0,0,0.166969 -31266,1317:114,174,31,0,0,0.166299 -31267,1317:215,175,31,0,0,0.172354 -31268,1317:216,176,31,0,0,0.173323 -31269,1317:217,177,31,0,0,0.171491 -31270,1317:218,178,31,0,0,0.169616 -31271,1317:219,179,31,0,0,0.172809 -31272,1318:110,180,31,0,0,0.169023 -31273,7318:120,-180,32,0,0,0.16079 -31274,7317:229,-179,32,0,0,0.163779 -31275,7317:228,-178,32,0,0,0.166399 -31276,7317:227,-177,32,0,0,0.160748 -31277,7317:226,-176,32,0,0,0.162685 -31278,7317:225,-175,32,0,0,0.169442 -31279,7317:124,-174,32,0,0,0.169269 -31280,7317:123,-173,32,0,0,0.169891 -31281,7317:122,-172,32,0,0,0.170108 -31282,7317:121,-171,32,0,0,0.16849 -31283,7317:120,-170,32,0,0,0.171301 -31284,7316:229,-169,32,0,0,0.170849 -31285,7316:228,-168,32,0,0,0.173191 -31286,7316:227,-167,32,0,0,0.174874 -31287,7316:226,-166,32,0,0,0.174445 -31288,7316:225,-165,32,0,0,0.175379 -31289,7316:124,-164,32,0,0,0.178235 -31290,7316:123,-163,32,0,0,0.180382 -31291,7316:122,-162,32,0,0,0.181112 -31292,7316:121,-161,32,0,0,0.181188 -31293,7316:120,-160,32,0,0,0.180747 -31294,7315:229,-159,32,0,0,0.181952 -31295,7315:228,-158,32,0,0,0.181982 -31296,7315:227,-157,32,0,0,0.182028 -31297,7315:226,-156,32,0,0,0.181967 -31298,7315:225,-155,32,0,0,0.183625 -31299,7315:124,-154,32,0,0,0.186881 -31300,7315:123,-153,32,0,0,0.189455 -31301,7315:122,-152,32,0,0,0.192967 -31302,7315:121,-151,32,0,0,0.199054 -31303,7315:120,-150,32,0,0,0.20045 -31304,7314:229,-149,32,0,0,0.202367 -31305,7314:228,-148,32,0,0,0.206494 -31306,7314:227,-147,32,0,0,0.209882 -31307,7314:226,-146,32,0,0,0.212328 -31308,7314:225,-145,32,0,0,0.209388 -31309,7314:124,-144,32,0,0,0.216151 -31310,7314:123,-143,32,0,0,0.220252 -31311,7314:122,-142,32,0,0,0.216064 -31312,7314:121,-141,32,0,0,0.226238 -31313,7314:120,-140,32,0,0,0.224141 -31314,7313:229,-139,32,0,0,0.221685 -31315,7313:228,-138,32,0,0,0.228693 -31316,7313:227,-137,32,0,0,0.229837 -31317,7313:226,-136,32,0,0,0.239992 -31318,7313:225,-135,32,0,0,0.244329 -31319,7313:124,-134,32,0,0,0.239543 -31320,7313:123,-133,32,0,0,0.240931 -31321,7313:122,-132,32,0,0,0.244975 -31322,7313:121,-131,32,0,0,0.246498 -31323,7313:120,-130,32,0,0,0.244063 -31324,7312:229,-129,32,0,0,0.240461 -31325,7312:228,-128,32,0,0,0.241194 -31326,7312:227,-127,32,0,0,0.235986 -31327,7312:226,-126,32,0,0,0.23831 -31328,7312:225,-125,32,0,0,0.23803 -31329,7306:122,-62,32,0,0,0.134152 -31330,7306:121,-61,32,0,0,0.144447 -31331,7305:229,-59,32,0,0,0.147935 -31332,7305:228,-58,32,0,0,0.142678 -31333,7305:227,-57,32,0,0,0.140617 -31334,7305:226,-56,32,0,0,0.139011 -31335,7305:225,-55,32,0,0,0.13115 -31336,7305:124,-54,32,0,0,0.125384 -31337,7305:123,-53,32,0,0,0.117515 -31338,7305:122,-52,32,0,0,0.120444 -31339,7305:121,-51,32,0,0,0.130589 -31340,7305:120,-50,32,0,0,0.124474 -31341,7304:229,-49,32,0,0,0.129161 -31342,7304:228,-48,32,0,0,0.120728 -31343,7304:227,-47,32,0,0,0.125779 -31344,7304:226,-46,32,0,0,0.165432 -31345,7304:225,-45,32,0,0,0.165475 -31346,7304:124,-44,32,0,0,0.164795 -31347,7304:123,-43,32,0,0,0.200022 -31348,7304:122,-42,32,0,0,0.243779 -31349,7304:121,-41,32,0,0,0.241551 -31350,7304:120,-40,32,0,0,0.234231 -31351,7303:229,-39,32,0,0,0.256496 -31352,7303:228,-38,32,0,0,0.277089 -31353,7303:227,-37,32,0,0,0.276164 -31354,7303:226,-36,32,0,0,0.258047 -31355,7303:225,-35,32,0,0,0.271628 -31356,7303:124,-34,32,0,0,0.256594 -31357,7303:123,-33,32,0,0,0.248354 -31358,7303:122,-32,32,0,0,0.242984 -31359,7303:121,-31,32,0,0,0.284057 -31360,7303:120,-30,32,0,0,0.288149 -31361,7302:229,-29,32,0,0,0.314747 -31362,7302:228,-28,32,0,0,0.320157 -31363,7302:227,-27,32,0,0,0.310332 -31364,7302:226,-26,32,0,0,0.296009 -31365,7302:225,-25,32,0,0,0.291172 -31366,7302:124,-24,32,0,0,0.300072 -31367,7302:123,-23,32,0,0,0.299619 -31368,7302:122,-22,32,0,0,0.300547 -31369,7302:121,-21,32,0,0,0.292872 -31370,7302:120,-20,32,0,0,0.296266 -31371,7301:229,-19,32,0,0,0.292659 -31372,7301:228,-18,32,0,0,0.280539 -31373,7301:227,-17,32,0,0,0.276637 -31374,7301:226,-16,32,0,0,0.276431 -31375,7301:225,-15,32,0,0,0.278697 -31376,7301:124,-14,32,0,0,0.279545 -31377,7301:123,-13,32,0,0,0.275323 -31378,7301:122,-12,32,0,0,0.272645 -31379,7301:121,-11,32,0,0,0.273297 -31380,7301:120,-10,32,0,0,0.271729 -31381,7300:229,-9,32,0,0,0.272686 -31382,7300:228,-8,32,0,0,0.273665 -31383,7300:227,-7,32,0,0,0.273767 -31384,7300:226,-6,32,0,0,0.279193 -31385,7300:225,-5,32,0,0,0.278367 -31386,7300:124,-4,32,0,0,0.282909 -31387,7300:123,-3,32,0,0,0.28243 -31388,7300:122,-2,32,0,0,0.236487 -31389,1301:122,12,32,0,0,0.313861 -31390,1302:228,28,32,0,0,0.279358 -31391,1302:229,29,32,0,0,0.265032 -31392,1303:120,30,32,0,0,0.265112 -31393,1303:121,31,32,0,0,0.266998 -31394,1303:122,32,32,0,0,0.265893 -31395,1303:123,33,32,0,0,0.263773 -31396,1303:124,34,32,0,0,0.257222 -31397,1303:225,35,32,0,0,0.25501 -31398,1303:226,36,32,0,0,0.263573 -31399,1303:227,37,32,0,0,0.272218 -31400,1303:228,38,32,0,0,0.280145 -31401,1303:229,39,32,0,0,0.285312 -31402,1313:229,139,32,0,0,0.153551 -31403,1314:120,140,32,0,0,0.167155 -31404,1314:121,141,32,0,0,0.173 -31405,1314:122,142,32,0,0,0.181616 -31406,1314:123,143,32,0,0,0.122054 -31407,1314:124,144,32,0,0,0.112209 -31408,1314:225,145,32,0,0,0.107439 -31409,1314:226,146,32,0,0,0.13383 -31410,1314:227,147,32,0,0,0.139343 -31411,1314:228,148,32,0,0,0.143396 -31412,1314:229,149,32,0,0,0.142389 -31413,1315:120,150,32,0,0,0.142264 -31414,1315:121,151,32,0,0,0.145798 -31415,1315:122,152,32,0,0,0.135507 -31416,1315:123,153,32,0,0,0.128699 -31417,1315:124,154,32,0,0,0.136436 -31418,1315:225,155,32,0,0,0.14535 -31419,1315:226,156,32,0,0,0.132077 -31420,1315:227,157,32,0,0,0.132597 -31421,1315:228,158,32,0,0,0.141052 -31422,1315:229,159,32,0,0,0.142427 -31423,1316:120,160,32,0,0,0.138483 -31424,1316:121,161,32,0,0,0.13517 -31425,1316:122,162,32,0,0,0.143585 -31426,1316:123,163,32,0,0,0.153377 -31427,1316:124,164,32,0,0,0.149391 -31428,1316:225,165,32,0,0,0.154971 -31429,1316:226,166,32,0,0,0.168576 -31430,1316:227,167,32,0,0,0.14743 -31431,1316:228,168,32,0,0,0.143257 -31432,1316:229,169,32,0,0,0.150807 -31433,1317:120,170,32,0,0,0.157014 -31434,1317:121,171,32,0,0,0.154998 -31435,1317:122,172,32,0,0,0.152206 -31436,1317:123,173,32,0,0,0.150636 -31437,1317:124,174,32,0,0,0.154019 -31438,1317:225,175,32,0,0,0.156132 -31439,1317:226,176,32,0,0,0.154675 -31440,1317:227,177,32,0,0,0.157231 -31441,1317:228,178,32,0,0,0.159367 -31442,1317:229,179,32,0,0,0.160707 -31443,1318:120,180,32,0,0,0.16079 -31444,7318:130,-180,33,0,0,0.151281 -31445,7317:239,-179,33,0,0,0.154072 -31446,7317:238,-178,33,0,0,0.156416 -31447,7317:237,-177,33,0,0,0.154099 -31448,7317:236,-176,33,0,0,0.153684 -31449,7317:235,-175,33,0,0,0.153177 -31450,7317:134,-174,33,0,0,0.155066 -31451,7317:133,-173,33,0,0,0.159988 -31452,7317:132,-172,33,0,0,0.161234 -31453,7317:131,-171,33,0,0,0.161262 -31454,7317:130,-170,33,0,0,0.161944 -31455,7316:239,-169,33,0,0,0.161763 -31456,7316:238,-168,33,0,0,0.164385 -31457,7316:237,-167,33,0,0,0.167456 -31458,7316:236,-166,33,0,0,0.16826 -31459,7316:235,-165,33,0,0,0.168303 -31460,7316:134,-164,33,0,0,0.16885 -31461,7316:133,-163,33,0,0,0.17209 -31462,7316:132,-162,33,0,0,0.174726 -31463,7316:131,-161,33,0,0,0.172486 -31464,7316:130,-160,33,0,0,0.171272 -31465,7315:239,-159,33,0,0,0.175468 -31466,7315:238,-158,33,0,0,0.174534 -31467,7315:237,-157,33,0,0,0.173308 -31468,7315:236,-156,33,0,0,0.178913 -31469,7315:235,-155,33,0,0,0.182304 -31470,7315:134,-154,33,0,0,0.184907 -31471,7315:133,-153,33,0,0,0.185542 -31472,7315:132,-152,33,0,0,0.188526 -31473,7315:131,-151,33,0,0,0.192104 -31474,7315:130,-150,33,0,0,0.193848 -31475,7314:239,-149,33,0,0,0.19708 -31476,7314:238,-148,33,0,0,0.198139 -31477,7314:237,-147,33,0,0,0.19953 -31478,7314:236,-146,33,0,0,0.20022 -31479,7314:235,-145,33,0,0,0.201258 -31480,7314:134,-144,33,0,0,0.205352 -31481,7314:133,-143,33,0,0,0.207371 -31482,7314:132,-142,33,0,0,0.206831 -31483,7314:131,-141,33,0,0,0.213396 -31484,7314:130,-140,33,0,0,0.215542 -31485,7313:239,-139,33,0,0,0.217477 -31486,7313:238,-138,33,0,0,0.220234 -31487,7313:237,-137,33,0,0,0.222413 -31488,7313:236,-136,33,0,0,0.229892 -31489,7313:235,-135,33,0,0,0.230328 -31490,7313:134,-134,33,0,0,0.228802 -31491,7313:133,-133,33,0,0,0.233532 -31492,7313:132,-132,33,0,0,0.237007 -31493,7313:131,-131,33,0,0,0.237806 -31494,7313:130,-130,33,0,0,0.236672 -31495,7312:239,-129,33,0,0,0.235172 -31496,7312:238,-128,33,0,0,0.229892 -31497,7312:237,-127,33,0,0,0.227879 -31498,7312:236,-126,33,0,0,0.233771 -31499,7312:235,-125,33,0,0,0.234858 -31500,7306:134,-64,33,0,0,0.136872 -31501,7306:133,-63,33,0,0,0.151228 -31502,7306:132,-62,33,0,0,0.166299 -31503,7306:131,-61,33,0,0,0.158735 -31504,7305:239,-59,33,0,0,0.137493 -31505,7305:238,-58,33,0,0,0.14022 -31506,7305:237,-57,33,0,0,0.140629 -31507,7305:236,-56,33,0,0,0.136509 -31508,7305:235,-55,33,0,0,0.137359 -31509,7305:134,-54,33,0,0,0.131232 -31510,7305:132,-52,33,0,0,0.110098 -31511,7305:131,-51,33,0,0,0.112825 -31512,7305:130,-50,33,0,0,0.115884 -31513,7304:239,-49,33,0,0,0.116994 -31514,7304:238,-48,33,0,0,0.114909 -31515,7304:237,-47,33,0,0,0.123748 -31516,7304:236,-46,33,0,0,0.140753 -31517,7304:235,-45,33,0,0,0.145977 -31518,7304:134,-44,33,0,0,0.143674 -31519,7304:133,-43,33,0,0,0.170704 -31520,7304:132,-42,33,0,0,0.19512 -31521,7304:131,-41,33,0,0,0.207202 -31522,7304:130,-40,33,0,0,0.230128 -31523,7303:239,-39,33,0,0,0.233789 -31524,7303:238,-38,33,0,0,0.208844 -31525,7303:237,-37,33,0,0,0.215994 -31526,7303:236,-36,33,0,0,0.222022 -31527,7303:235,-35,33,0,0,0.231899 -31528,7303:134,-34,33,0,0,0.235672 -31529,7303:133,-33,33,0,0,0.229782 -31530,7303:132,-32,33,0,0,0.249487 -31531,7303:131,-31,33,0,0,0.249833 -31532,7303:130,-30,33,0,0,0.262458 -31533,7302:239,-29,33,0,0,0.300287 -31534,7302:238,-28,33,0,0,0.295517 -31535,7302:237,-27,33,0,0,0.288697 -31536,7302:236,-26,33,0,0,0.28836 -31537,7302:235,-25,33,0,0,0.280062 -31538,7302:134,-24,33,0,0,0.279462 -31539,7302:133,-23,33,0,0,0.292807 -31540,7302:132,-22,33,0,0,0.294491 -31541,7302:131,-21,33,0,0,0.285249 -31542,7302:130,-20,33,0,0,0.286193 -31543,7301:239,-19,33,0,0,0.288971 -31544,7301:238,-18,33,0,0,0.274749 -31545,7301:237,-17,33,0,0,0.274033 -31546,7301:236,-16,33,0,0,0.270917 -31547,7301:235,-15,33,0,0,0.271242 -31548,7301:134,-14,33,0,0,0.269195 -31549,7301:133,-13,33,0,0,0.270065 -31550,7301:132,-12,33,0,0,0.267662 -31551,7301:131,-11,33,0,0,0.263155 -31552,7301:130,-10,33,0,0,0.265112 -31553,7300:239,-9,33,0,0,0.265452 -31554,7300:238,-8,33,0,0,0.268407 -31555,7300:237,-7,33,0,0,0.268126 -31556,7300:236,-6,33,0,0,0.267602 -31557,7300:235,-5,33,0,0,0.274196 -31558,7300:134,-4,33,0,0,0.267883 -31559,1302:239,29,33,0,0,0.27179 -31560,1303:130,30,33,0,0,0.265032 -31561,1303:131,31,33,0,0,0.268206 -31562,1303:132,32,33,0,0,0.266114 -31563,1303:133,33,33,0,0,0.265973 -31564,1303:134,34,33,0,0,0.262398 -31565,1303:235,35,33,0,0,0.259466 -31566,1303:236,36,33,0,0,0.265673 -31567,1303:237,37,33,0,0,0.273951 -31568,1303:238,38,33,0,0,0.280228 -31569,1314:130,140,33,0,0,0.144332 -31570,1314:131,141,33,0,0,0.161498 -31571,1314:132,142,33,0,0,0.16637 -31572,1314:235,145,33,0,0,0.106771 -31573,1314:236,146,33,0,0,0.118843 -31574,1314:237,147,33,0,0,0.121526 -31575,1314:238,148,33,0,0,0.126016 -31576,1314:239,149,33,0,0,0.126822 -31577,1315:130,150,33,0,0,0.126367 -31578,1315:131,151,33,0,0,0.130963 -31579,1315:132,152,33,0,0,0.130671 -31580,1315:133,153,33,0,0,0.127792 -31581,1315:134,154,33,0,0,0.126651 -31582,1315:235,155,33,0,0,0.133569 -31583,1315:236,156,33,0,0,0.130496 -31584,1315:237,157,33,0,0,0.129555 -31585,1315:238,158,33,0,0,0.129972 -31586,1315:239,159,33,0,0,0.133533 -31587,1316:130,160,33,0,0,0.133212 -31588,1316:131,161,33,0,0,0.132443 -31589,1316:132,162,33,0,0,0.13487 -31590,1316:133,163,33,0,0,0.140716 -31591,1316:134,164,33,0,0,0.140282 -31592,1316:235,165,33,0,0,0.136836 -31593,1316:236,166,33,0,0,0.1364 -31594,1316:237,167,33,0,0,0.139787 -31595,1316:238,168,33,0,0,0.142942 -31596,1316:239,169,33,0,0,0.145146 -31597,1317:130,170,33,0,0,0.145695 -31598,1317:131,171,33,0,0,0.145695 -31599,1317:132,172,33,0,0,0.145964 -31600,1317:133,173,33,0,0,0.147857 -31601,1317:134,174,33,0,0,0.148025 -31602,1317:235,175,33,0,0,0.146631 -31603,1317:236,176,33,0,0,0.149469 -31604,1317:237,177,33,0,0,0.15319 -31605,1317:238,178,33,0,0,0.151333 -31606,1317:239,179,33,0,0,0.149026 -31607,1318:130,180,33,0,0,0.151281 -31608,7318:140,-180,34,0,0,0.147056 -31609,7317:249,-179,34,0,0,0.14658 -31610,7317:248,-178,34,0,0,0.146439 -31611,7317:247,-177,34,0,0,0.146992 -31612,7317:246,-176,34,0,0,0.147663 -31613,7317:245,-175,34,0,0,0.148856 -31614,7317:144,-174,34,0,0,0.150504 -31615,7317:143,-173,34,0,0,0.151584 -31616,7317:142,-172,34,0,0,0.15177 -31617,7317:141,-171,34,0,0,0.15363 -31618,7317:140,-170,34,0,0,0.156946 -31619,7316:249,-169,34,0,0,0.157245 -31620,7316:248,-168,34,0,0,0.157627 -31621,7316:247,-167,34,0,0,0.159546 -31622,7316:246,-166,34,0,0,0.161415 -31623,7316:245,-165,34,0,0,0.162712 -31624,7316:144,-164,34,0,0,0.163062 -31625,7316:143,-163,34,0,0,0.163119 -31626,7316:142,-162,34,0,0,0.164526 -31627,7316:141,-161,34,0,0,0.162139 -31628,7316:140,-160,34,0,0,0.16529 -31629,7315:249,-159,34,0,0,0.166827 -31630,7315:248,-158,34,0,0,0.165361 -31631,7315:247,-157,34,0,0,0.167514 -31632,7315:246,-156,34,0,0,0.17066 -31633,7315:245,-155,34,0,0,0.172765 -31634,7315:144,-154,34,0,0,0.178642 -31635,7315:143,-153,34,0,0,0.17976 -31636,7315:142,-152,34,0,0,0.184411 -31637,7315:141,-151,34,0,0,0.185962 -31638,7315:140,-150,34,0,0,0.188055 -31639,7314:249,-149,34,0,0,0.190309 -31640,7314:248,-148,34,0,0,0.190515 -31641,7314:247,-147,34,0,0,0.189156 -31642,7314:246,-146,34,0,0,0.191929 -31643,7314:245,-145,34,0,0,0.197193 -31644,7314:144,-144,34,0,0,0.198171 -31645,7314:143,-143,34,0,0,0.201705 -31646,7314:142,-142,34,0,0,0.203947 -31647,7314:141,-141,34,0,0,0.207811 -31648,7314:140,-140,34,0,0,0.209797 -31649,7313:249,-139,34,0,0,0.212896 -31650,7313:248,-138,34,0,0,0.212586 -31651,7313:247,-137,34,0,0,0.21195 -31652,7313:246,-136,34,0,0,0.214918 -31653,7313:245,-135,34,0,0,0.216099 -31654,7313:144,-134,34,0,0,0.222946 -31655,7313:143,-133,34,0,0,0.226274 -31656,7313:142,-132,34,0,0,0.226328 -31657,7313:141,-131,34,0,0,0.22991 -31658,7313:140,-130,34,0,0,0.229292 -31659,7312:249,-129,34,0,0,0.232852 -31660,7312:248,-128,34,0,0,0.229782 -31661,7312:247,-127,34,0,0,0.226202 -31662,7312:246,-126,34,0,0,0.226094 -31663,7312:245,-125,34,0,0,0.222661 -31664,7306:144,-64,34,0,0,0.136388 -31665,7306:143,-63,34,0,0,0.151017 -31666,7306:142,-62,34,0,0,0.138912 -31667,7306:141,-61,34,0,0,0.138483 -31668,7306:140,-60,34,0,0,0.135615 -31669,7305:249,-59,34,0,0,0.128251 -31670,7305:142,-52,34,0,0,0.104346 -31671,7305:141,-51,34,0,0,0.110159 -31672,7305:140,-50,34,0,0,0.112486 -31673,7304:249,-49,34,0,0,0.118274 -31674,7304:248,-48,34,0,0,0.129624 -31675,7304:247,-47,34,0,0,0.133402 -31676,7304:246,-46,34,0,0,0.132798 -31677,7304:245,-45,34,0,0,0.135627 -31678,7304:144,-44,34,0,0,0.139072 -31679,7304:143,-43,34,0,0,0.163934 -31680,7304:142,-42,34,0,0,0.187898 -31681,7304:141,-41,34,0,0,0.204031 -31682,7304:140,-40,34,0,0,0.202982 -31683,7303:249,-39,34,0,0,0.214813 -31684,7303:248,-38,34,0,0,0.194733 -31685,7303:247,-37,34,0,0,0.211574 -31686,7303:246,-36,34,0,0,0.217127 -31687,7303:245,-35,34,0,0,0.21269 -31688,7303:144,-34,34,0,0,0.221313 -31689,7303:143,-33,34,0,0,0.222217 -31690,7303:142,-32,34,0,0,0.242569 -31691,7303:141,-31,34,0,0,0.251396 -31692,7303:140,-30,34,0,0,0.252908 -31693,7302:249,-29,34,0,0,0.260276 -31694,7302:248,-28,34,0,0,0.294022 -31695,7302:247,-27,34,0,0,0.28243 -31696,7302:246,-26,34,0,0,0.287749 -31697,7302:245,-25,34,0,0,0.287223 -31698,7302:144,-24,34,0,0,0.285543 -31699,7302:143,-23,34,0,0,0.277357 -31700,7302:142,-22,34,0,0,0.283953 -31701,7302:141,-21,34,0,0,0.279586 -31702,7302:140,-20,34,0,0,0.276822 -31703,7301:249,-19,34,0,0,0.265712 -31704,7301:248,-18,34,0,0,0.271587 -31705,7301:247,-17,34,0,0,0.270349 -31706,7301:246,-16,34,0,0,0.267944 -31707,7301:245,-15,34,0,0,0.269074 -31708,7301:144,-14,34,0,0,0.261762 -31709,7301:143,-13,34,0,0,0.264012 -31710,7301:142,-12,34,0,0,0.258087 -31711,7301:141,-11,34,0,0,0.258441 -31712,7301:140,-10,34,0,0,0.260276 -31713,7300:249,-9,34,0,0,0.260534 -31714,7300:248,-8,34,0,0,0.263016 -31715,7300:247,-7,34,0,0,0.264492 -31716,7300:246,-6,34,0,0,0.257281 -31717,1302:249,29,34,0,0,0.262498 -31718,1303:140,30,34,0,0,0.269964 -31719,1303:141,31,34,0,0,0.276719 -31720,1303:245,35,34,0,0,0.266716 -31721,1303:246,36,34,0,0,0.270328 -31722,1314:141,141,34,0,0,0.110825 -31723,1314:142,142,34,0,0,0.123915 -31724,1314:143,143,34,0,0,0.130216 -31725,1314:144,144,34,0,0,0.105281 -31726,1314:245,145,34,0,0,0.103733 -31727,1314:246,146,34,0,0,0.100818 -31728,1314:247,147,34,0,0,0.112138 -31729,1314:248,148,34,0,0,0.120488 -31730,1314:249,149,34,0,0,0.122439 -31731,1315:140,150,34,0,0,0.126254 -31732,1315:141,151,34,0,0,0.127369 -31733,1315:142,152,34,0,0,0.124968 -31734,1315:143,153,34,0,0,0.122384 -31735,1315:144,154,34,0,0,0.123848 -31736,1315:245,155,34,0,0,0.119825 -31737,1315:246,156,34,0,0,0.11976 -31738,1315:247,157,34,0,0,0.13115 -31739,1315:248,158,34,0,0,0.133236 -31740,1315:249,159,34,0,0,0.131572 -31741,1316:140,160,34,0,0,0.130449 -31742,1316:141,161,34,0,0,0.130939 -31743,1316:142,162,34,0,0,0.133165 -31744,1316:143,163,34,0,0,0.141052 -31745,1316:144,164,34,0,0,0.140468 -31746,1316:245,165,34,0,0,0.132857 -31747,1316:246,166,34,0,0,0.133545 -31748,1316:247,167,34,0,0,0.137724 -31749,1316:248,168,34,0,0,0.135639 -31750,1316:249,169,34,0,0,0.141326 -31751,1317:140,170,34,0,0,0.142101 -31752,1317:141,171,34,0,0,0.141676 -31753,1317:142,172,34,0,0,0.141688 -31754,1317:143,173,34,0,0,0.141401 -31755,1317:144,174,34,0,0,0.140592 -31756,1317:245,175,34,0,0,0.140629 -31757,1317:246,176,34,0,0,0.141813 -31758,1317:247,177,34,0,0,0.143144 -31759,1317:248,178,34,0,0,0.144003 -31760,1317:249,179,34,0,0,0.146323 -31761,1318:140,180,34,0,0,0.147056 -31762,7318:350,-180,35,0,0,0.143699 -31763,7317:459,-179,35,0,0,0.143977 -31764,7317:458,-178,35,0,0,0.144879 -31765,7317:457,-177,35,0,0,0.145491 -31766,7317:456,-176,35,0,0,0.146221 -31767,7317:455,-175,35,0,0,0.147637 -31768,7317:354,-174,35,0,0,0.148012 -31769,7317:353,-173,35,0,0,0.148311 -31770,7317:352,-172,35,0,0,0.148687 -31771,7317:351,-171,35,0,0,0.150176 -31772,7317:350,-170,35,0,0,0.151664 -31773,7316:459,-169,35,0,0,0.152911 -31774,7316:458,-168,35,0,0,0.151981 -31775,7316:457,-167,35,0,0,0.151928 -31776,7316:456,-166,35,0,0,0.154407 -31777,7316:455,-165,35,0,0,0.157763 -31778,7316:354,-164,35,0,0,0.157927 -31779,7316:353,-163,35,0,0,0.155039 -31780,7316:352,-162,35,0,0,0.156091 -31781,7316:351,-161,35,0,0,0.156851 -31782,7316:350,-160,35,0,0,0.15868 -31783,7315:459,-159,35,0,0,0.158433 -31784,7315:458,-158,35,0,0,0.157518 -31785,7315:457,-157,35,0,0,0.157545 -31786,7315:456,-156,35,0,0,0.159505 -31787,7315:455,-155,35,0,0,0.161068 -31788,7315:354,-154,35,0,0,0.163161 -31789,7315:353,-153,35,0,0,0.168274 -31790,7315:352,-152,35,0,0,0.173161 -31791,7315:351,-151,35,0,0,0.177484 -31792,7315:350,-150,35,0,0,0.181784 -31793,7314:459,-149,35,0,0,0.183086 -31794,7314:458,-148,35,0,0,0.18418 -31795,7314:457,-147,35,0,0,0.180975 -31796,7314:456,-146,35,0,0,0.177589 -31797,7314:455,-145,35,0,0,0.187804 -31798,7314:354,-144,35,0,0,0.18944 -31799,7314:353,-143,35,0,0,0.188856 -31800,7314:352,-142,35,0,0,0.193993 -31801,7314:351,-141,35,0,0,0.195944 -31802,7314:350,-140,35,0,0,0.199645 -31803,7313:459,-139,35,0,0,0.200615 -31804,7313:458,-138,35,0,0,0.201903 -31805,7313:457,-137,35,0,0,0.203314 -31806,7313:456,-136,35,0,0,0.206377 -31807,7313:455,-135,35,0,0,0.2107 -31808,7313:354,-134,35,0,0,0.216621 -31809,7313:353,-133,35,0,0,0.217005 -31810,7313:352,-132,35,0,0,0.220941 -31811,7313:351,-131,35,0,0,0.221419 -31812,7313:350,-130,35,0,0,0.21851 -31813,7312:459,-129,35,0,0,0.220199 -31814,7312:458,-128,35,0,0,0.221632 -31815,7312:457,-127,35,0,0,0.223231 -31816,7312:456,-126,35,0,0,0.222963 -31817,7312:455,-125,35,0,0,0.218317 -31818,7306:458,-68,35,0,0,0.12809 -31819,7306:353,-63,35,0,0,0.122915 -31820,7306:352,-62,35,0,0,0.128504 -31821,7306:351,-61,35,0,0,0.121493 -31822,7306:350,-60,35,0,0,0.120281 -31823,7305:459,-59,35,0,0,0.126265 -31824,7305:458,-58,35,0,0,0.120902 -31825,7305:352,-52,35,0,0,0.103037 -31826,7305:351,-51,35,0,0,0.118617 -31827,7305:350,-50,35,0,0,0.11988 -31828,7304:459,-49,35,0,0,0.129254 -31829,7304:458,-48,35,0,0,0.134774 -31830,7304:457,-47,35,0,0,0.150124 -31831,7304:456,-46,35,0,0,0.154675 -31832,7304:455,-45,35,0,0,0.153537 -31833,7304:354,-44,35,0,0,0.169168 -31834,7304:353,-43,35,0,0,0.18304 -31835,7304:352,-42,35,0,0,0.19134 -31836,7304:351,-41,35,0,0,0.180884 -31837,7304:350,-40,35,0,0,0.208437 -31838,7303:459,-39,35,0,0,0.186569 -31839,7303:458,-38,35,0,0,0.195459 -31840,7303:457,-37,35,0,0,0.198825 -31841,7303:456,-36,35,0,0,0.202915 -31842,7303:455,-35,35,0,0,0.212999 -31843,7303:354,-34,35,0,0,0.211831 -31844,7303:353,-33,35,0,0,0.210581 -31845,7303:352,-32,35,0,0,0.210291 -31846,7303:351,-31,35,0,0,0.25353 -31847,7303:350,-30,35,0,0,0.273277 -31848,7302:459,-29,35,0,0,0.268367 -31849,7302:458,-28,35,0,0,0.284329 -31850,7302:457,-27,35,0,0,0.281182 -31851,7302:456,-26,35,0,0,0.274053 -31852,7302:455,-25,35,0,0,0.250219 -31853,7302:354,-24,35,0,0,0.258224 -31854,7302:353,-23,35,0,0,0.278367 -31855,7302:352,-22,35,0,0,0.280601 -31856,7302:351,-21,35,0,0,0.276801 -31857,7302:350,-20,35,0,0,0.270795 -31858,7301:459,-19,35,0,0,0.263773 -31859,7301:458,-18,35,0,0,0.269013 -31860,7301:457,-17,35,0,0,0.267944 -31861,7301:456,-16,35,0,0,0.266877 -31862,7301:455,-15,35,0,0,0.265212 -31863,7301:354,-14,35,0,0,0.259407 -31864,7301:353,-13,35,0,0,0.256516 -31865,7301:352,-12,35,0,0,0.250392 -31866,7301:351,-11,35,0,0,0.25101 -31867,7301:350,-10,35,0,0,0.25072 -31868,7300:459,-9,35,0,0,0.25157 -31869,7300:458,-8,35,0,0,0.254191 -31870,7300:457,-7,35,0,0,0.254191 -31871,7300:456,-6,35,0,0,0.256771 -31872,7300:455,-5,35,0,0,0.255811 -31873,7300:354,-4,35,0,0,0.253238 -31874,7300:353,-3,35,0,0,0.213258 -31875,1303:350,30,35,0,0,0.254074 -31876,1303:351,31,35,0,0,0.2585 -31877,1303:352,32,35,0,0,0.246822 -31878,1314:352,142,35,0,0,0.0930596 -31879,1314:353,143,35,0,0,0.105562 -31880,1314:455,145,35,0,0,0.094694 -31881,1314:456,146,35,0,0,0.0931986 -31882,1314:457,147,35,0,0,0.10741 -31883,1314:458,148,35,0,0,0.11493 -31884,1314:459,149,35,0,0,0.117408 -31885,1315:350,150,35,0,0,0.116644 -31886,1315:351,151,35,0,0,0.119652 -31887,1315:352,152,35,0,0,0.119836 -31888,1315:353,153,35,0,0,0.121263 -31889,1315:354,154,35,0,0,0.123459 -31890,1315:455,155,35,0,0,0.121285 -31891,1315:456,156,35,0,0,0.119349 -31892,1315:457,157,35,0,0,0.119446 -31893,1315:458,158,35,0,0,0.12508 -31894,1315:459,159,35,0,0,0.130344 -31895,1316:350,160,35,0,0,0.129833 -31896,1316:351,161,35,0,0,0.129566 -31897,1316:352,162,35,0,0,0.130753 -31898,1316:353,163,35,0,0,0.131396 -31899,1316:354,164,35,0,0,0.131819 -31900,1316:455,165,35,0,0,0.131866 -31901,1316:456,166,35,0,0,0.132821 -31902,1316:457,167,35,0,0,0.133795 -31903,1316:458,168,35,0,0,0.137371 -31904,1316:459,169,35,0,0,0.138556 -31905,1317:350,170,35,0,0,0.138863 -31906,1317:351,171,35,0,0,0.138617 -31907,1317:352,172,35,0,0,0.138986 -31908,1317:353,173,35,0,0,0.139849 -31909,1317:354,174,35,0,0,0.139898 -31910,1317:455,175,35,0,0,0.140084 -31911,1317:456,176,35,0,0,0.140518 -31912,1317:457,177,35,0,0,0.141189 -31913,1317:458,178,35,0,0,0.142251 -31914,1317:459,179,35,0,0,0.143106 -31915,1318:350,180,35,0,0,0.143699 -31916,7318:360,-180,36,0,0,0.143813 -31917,7317:469,-179,36,0,0,0.144332 -31918,7317:468,-178,36,0,0,0.145133 -31919,7317:467,-177,36,0,0,0.145746 -31920,7317:466,-176,36,0,0,0.146105 -31921,7317:465,-175,36,0,0,0.146349 -31922,7317:364,-174,36,0,0,0.146683 -31923,7317:363,-173,36,0,0,0.147133 -31924,7317:362,-172,36,0,0,0.147456 -31925,7317:361,-171,36,0,0,0.147288 -31926,7317:360,-170,36,0,0,0.147211 -31927,7316:469,-169,36,0,0,0.148064 -31928,7316:468,-168,36,0,0,0.148661 -31929,7316:467,-167,36,0,0,0.14926 -31930,7316:466,-166,36,0,0,0.150583 -31931,7316:465,-165,36,0,0,0.152233 -31932,7316:364,-164,36,0,0,0.152472 -31933,7316:363,-163,36,0,0,0.150609 -31934,7316:362,-162,36,0,0,0.15015 -31935,7316:361,-161,36,0,0,0.150189 -31936,7316:360,-160,36,0,0,0.151518 -31937,7315:469,-159,36,0,0,0.152392 -31938,7315:468,-158,36,0,0,0.152844 -31939,7315:467,-157,36,0,0,0.153684 -31940,7315:466,-156,36,0,0,0.155011 -31941,7315:465,-155,36,0,0,0.155443 -31942,7315:364,-154,36,0,0,0.155146 -31943,7315:363,-153,36,0,0,0.156905 -31944,7315:362,-152,36,0,0,0.16025 -31945,7315:361,-151,36,0,0,0.164653 -31946,7315:360,-150,36,0,0,0.167399 -31947,7314:469,-149,36,0,0,0.16803 -31948,7314:468,-148,36,0,0,0.169674 -31949,7314:467,-147,36,0,0,0.1719 -31950,7314:466,-146,36,0,0,0.170718 -31951,7314:465,-145,36,0,0,0.17133 -31952,7314:364,-144,36,0,0,0.178355 -31953,7314:363,-143,36,0,0,0.180519 -31954,7314:362,-142,36,0,0,0.182825 -31955,7314:361,-141,36,0,0,0.184504 -31956,7314:360,-140,36,0,0,0.187413 -31957,7313:469,-139,36,0,0,0.190784 -31958,7313:468,-138,36,0,0,0.195007 -31959,7313:467,-137,36,0,0,0.197389 -31961,7313:465,-135,36,0,0,0.206966 -31962,7313:364,-134,36,0,0,0.20978 -31963,7313:363,-133,36,0,0,0.216047 -31964,7313:362,-132,36,0,0,0.219213 -31965,7313:361,-131,36,0,0,0.21497 -31966,7313:360,-130,36,0,0,0.211265 -31967,7312:469,-129,36,0,0,0.213378 -31968,7312:468,-128,36,0,0,0.213879 -31969,7312:467,-127,36,0,0,0.216796 -31970,7312:466,-126,36,0,0,0.219072 -31971,7306:466,-66,36,0,0,0.123437 -31972,7306:465,-65,36,0,0,0.122186 -31973,7306:364,-64,36,0,0,0.123648 -31974,7306:363,-63,36,0,0,0.125001 -31975,7306:361,-61,36,0,0,0.120979 -31976,7306:360,-60,36,0,0,0.11494 -31977,7305:469,-59,36,0,0,0.112948 -31978,7305:468,-58,36,0,0,0.117952 -31979,7305:467,-57,36,0,0,0.117536 -31980,7305:465,-55,36,0,0,0.100753 -31981,7305:364,-54,36,0,0,0.09533 -31982,7305:363,-53,36,0,0,0.0979943 -31983,7305:362,-52,36,0,0,0.113733 -31984,7305:361,-51,36,0,0,0.117547 -31985,7305:360,-50,36,0,0,0.121867 -31986,7304:469,-49,36,0,0,0.13101 -31987,7304:468,-48,36,0,0,0.135675 -31988,7304:467,-47,36,0,0,0.14913 -31989,7304:466,-46,36,0,0,0.162419 -31990,7304:465,-45,36,0,0,0.163709 -31991,7304:364,-44,36,0,0,0.16161 -31992,7304:363,-43,36,0,0,0.162796 -31993,7304:362,-42,36,0,0,0.177829 -31994,7304:361,-41,36,0,0,0.169992 -31995,7304:360,-40,36,0,0,0.178295 -31996,7303:469,-39,36,0,0,0.180124 -31997,7303:468,-38,36,0,0,0.180762 -31998,7303:467,-37,36,0,0,0.194491 -31999,7303:466,-36,36,0,0,0.188055 -32000,7303:465,-35,36,0,0,0.182411 -32001,7303:364,-34,36,0,0,0.180762 -32002,7303:363,-33,36,0,0,0.181707 -32003,7303:362,-32,36,0,0,0.188825 -32004,7303:361,-31,36,0,0,0.214848 -32005,7303:360,-30,36,0,0,0.264892 -32006,7302:469,-29,36,0,0,0.23146 -32007,7302:468,-28,36,0,0,0.25587 -32008,7302:467,-27,36,0,0,0.266937 -32009,7302:466,-26,36,0,0,0.252209 -32010,7302:465,-25,36,0,0,0.233329 -32011,7302:364,-24,36,0,0,0.249718 -32012,7302:363,-23,36,0,0,0.23844 -32013,7302:362,-22,36,0,0,0.237676 -32014,7302:361,-21,36,0,0,0.243439 -32015,7302:360,-20,36,0,0,0.265613 -32016,7301:469,-19,36,0,0,0.260256 -32017,7301:468,-18,36,0,0,0.260534 -32018,7301:467,-17,36,0,0,0.262219 -32019,7301:466,-16,36,0,0,0.266254 -32020,7301:465,-15,36,0,0,0.262796 -32021,7301:364,-14,36,0,0,0.257556 -32022,7301:363,-13,36,0,0,0.253977 -32023,7301:362,-12,36,0,0,0.246422 -32024,7301:361,-11,36,0,0,0.242588 -32025,7301:360,-10,36,0,0,0.243211 -32026,7300:469,-9,36,0,0,0.244747 -32027,7300:468,-8,36,0,0,0.245697 -32028,7300:467,-7,36,0,0,0.236932 -32029,7300:364,-4,36,0,0,0.241513 -32030,7300:363,-3,36,0,0,0.246613 -32031,7300:362,-2,36,0,0,0.247052 -32032,7300:361,-1,36,0,0,0.2346 -32033,1314:363,143,36,0,0,0.0866592 -32034,1314:466,146,36,0,0,0.0921963 -32035,1314:467,147,36,0,0,0.102516 -32036,1314:468,148,36,0,0,0.11038 -32037,1314:469,149,36,0,0,0.113847 -32038,1315:360,150,36,0,0,0.116707 -32039,1315:361,151,36,0,0,0.116824 -32040,1315:362,152,36,0,0,0.119188 -32041,1315:363,153,36,0,0,0.121088 -32042,1315:364,154,36,0,0,0.123447 -32043,1315:465,155,36,0,0,0.122649 -32044,1315:466,156,36,0,0,0.119966 -32045,1315:468,158,36,0,0,0.120118 -32046,1315:469,159,36,0,0,0.118434 -32047,1316:360,160,36,0,0,0.130216 -32048,1316:361,161,36,0,0,0.129103 -32049,1316:362,162,36,0,0,0.128113 -32050,1316:363,163,36,0,0,0.131185 -32051,1316:364,164,36,0,0,0.134045 -32052,1316:465,165,36,0,0,0.134033 -32053,1316:466,166,36,0,0,0.134248 -32054,1316:467,167,36,0,0,0.136436 -32055,1316:468,168,36,0,0,0.135519 -32056,1316:469,169,36,0,0,0.135399 -32057,1317:360,170,36,0,0,0.135194 -32058,1317:361,171,36,0,0,0.135675 -32059,1317:362,172,36,0,0,0.137407 -32060,1317:363,173,36,0,0,0.13874 -32061,1317:364,174,36,0,0,0.139688 -32062,1317:465,175,36,0,0,0.139985 -32063,1317:466,176,36,0,0,0.140903 -32064,1317:467,177,36,0,0,0.1417 -32065,1317:468,178,36,0,0,0.142301 -32066,1317:469,179,36,0,0,0.143068 -32067,1318:360,180,36,0,0,0.143813 -32068,7318:370,-180,37,0,0,0.138067 -32069,7317:479,-179,37,0,0,0.140567 -32070,7317:478,-178,37,0,0,0.142026 -32071,7317:477,-177,37,0,0,0.142076 -32072,7317:476,-176,37,0,0,0.142051 -32073,7317:475,-175,37,0,0,0.143459 -32074,7317:374,-174,37,0,0,0.144015 -32075,7317:373,-173,37,0,0,0.145236 -32076,7317:372,-172,37,0,0,0.145363 -32077,7317:371,-171,37,0,0,0.145414 -32078,7317:370,-170,37,0,0,0.145657 -32079,7316:479,-169,37,0,0,0.146092 -32080,7316:478,-168,37,0,0,0.146554 -32081,7316:477,-167,37,0,0,0.147159 -32082,7316:476,-166,37,0,0,0.146811 -32083,7316:475,-165,37,0,0,0.146208 -32084,7316:374,-164,37,0,0,0.146451 -32085,7316:373,-163,37,0,0,0.14725 -32086,7316:372,-162,37,0,0,0.146992 -32087,7316:371,-161,37,0,0,0.14712 -32088,7316:370,-160,37,0,0,0.147624 -32089,7315:479,-159,37,0,0,0.14712 -32090,7315:478,-158,37,0,0,0.148 -32091,7315:477,-157,37,0,0,0.14896 -32092,7315:476,-156,37,0,0,0.149404 -32093,7315:475,-155,37,0,0,0.150084 -32094,7315:374,-154,37,0,0,0.152127 -32095,7315:373,-153,37,0,0,0.154917 -32096,7315:372,-152,37,0,0,0.15764 -32097,7315:371,-151,37,0,0,0.160845 -32098,7315:370,-150,37,0,0,0.162265 -32099,7314:479,-149,37,0,0,0.163638 -32100,7314:478,-148,37,0,0,0.16512 -32101,7314:477,-147,37,0,0,0.166385 -32102,7314:476,-146,37,0,0,0.167815 -32103,7314:475,-145,37,0,0,0.169312 -32104,7314:374,-144,37,0,0,0.17101 -32105,7314:373,-143,37,0,0,0.173559 -32106,7314:372,-142,37,0,0,0.176511 -32107,7314:371,-141,37,0,0,0.179472 -32108,7314:370,-140,37,0,0,0.183995 -32109,7313:479,-139,37,0,0,0.188322 -32110,7313:478,-138,37,0,0,0.19088 -32111,7313:477,-137,37,0,0,0.1938 -32112,7313:476,-136,37,0,0,0.199365 -32113,7313:475,-135,37,0,0,0.202666 -32114,7313:374,-134,37,0,0,0.205201 -32115,7313:373,-133,37,0,0,0.210684 -32116,7313:372,-132,37,0,0,0.209813 -32117,7313:371,-131,37,0,0,0.208675 -32118,7313:370,-130,37,0,0,0.210257 -32119,7312:479,-129,37,0,0,0.209422 -32120,7312:478,-128,37,0,0,0.211762 -32121,7312:477,-127,37,0,0,0.214865 -32122,7312:476,-126,37,0,0,0.213585 -32123,7305:477,-57,37,0,0,0.099402 -32124,7305:476,-56,37,0,0,0.101791 -32125,7305:374,-54,37,0,0,0.0913568 -32126,7305:373,-53,37,0,0,0.103599 -32127,7305:372,-52,37,0,0,0.111607 -32128,7305:371,-51,37,0,0,0.114387 -32129,7305:370,-50,37,0,0,0.117121 -32130,7304:479,-49,37,0,0,0.127357 -32131,7304:478,-48,37,0,0,0.140468 -32132,7304:477,-47,37,0,0,0.152871 -32133,7304:476,-46,37,0,0,0.156308 -32134,7304:475,-45,37,0,0,0.158817 -32135,7304:374,-44,37,0,0,0.155295 -32136,7304:373,-43,37,0,0,0.150767 -32137,7304:372,-42,37,0,0,0.15434 -32138,7304:371,-41,37,0,0,0.149091 -32139,7304:370,-40,37,0,0,0.153097 -32140,7303:479,-39,37,0,0,0.154582 -32141,7303:478,-38,37,0,0,0.163119 -32142,7303:477,-37,37,0,0,0.161623 -32143,7303:476,-36,37,0,0,0.154099 -32144,7303:475,-35,37,0,0,0.152459 -32145,7303:374,-34,37,0,0,0.158269 -32146,7303:373,-33,37,0,0,0.198155 -32147,7303:372,-32,37,0,0,0.195168 -32148,7303:371,-31,37,0,0,0.230147 -32149,7303:370,-30,37,0,0,0.244291 -32150,7302:479,-29,37,0,0,0.245412 -32151,7302:478,-28,37,0,0,0.213655 -32152,7302:477,-27,37,0,0,0.219266 -32153,7302:476,-26,37,0,0,0.218002 -32154,7302:475,-25,37,0,0,0.223641 -32155,7302:374,-24,37,0,0,0.217215 -32156,7302:373,-23,37,0,0,0.22759 -32157,7302:372,-22,37,0,0,0.24868 -32158,7302:371,-21,37,0,0,0.258579 -32159,7302:370,-20,37,0,0,0.258736 -32160,7301:479,-19,37,0,0,0.259328 -32161,7301:478,-18,37,0,0,0.25589 -32162,7301:477,-17,37,0,0,0.253626 -32163,7301:476,-16,37,0,0,0.256203 -32164,7301:475,-15,37,0,0,0.241928 -32165,7301:374,-14,37,0,0,0.249583 -32166,7301:373,-13,37,0,0,0.246689 -32167,7301:372,-12,37,0,0,0.238571 -32168,7300:479,-9,37,0,0,0.235708 -32169,7300:478,-8,37,0,0,0.235912 -32170,7300:477,-7,37,0,0,0.23606 -32171,7300:476,-6,37,0,0,0.222377 -32172,7300:475,-5,37,0,0,0.205285 -32173,1300:371,0,37,0,0,0.230985 -32174,1314:373,143,37,0,0,0.0859141 -32175,1314:476,146,37,0,0,0.0933116 -32176,1314:477,147,37,0,0,0.101575 -32177,1314:478,148,37,0,0,0.108657 -32178,1314:479,149,37,0,0,0.112845 -32179,1315:370,150,37,0,0,0.118102 -32180,1315:371,151,37,0,0,0.119134 -32181,1315:372,152,37,0,0,0.119134 -32182,1315:373,153,37,0,0,0.120379 -32183,1315:374,154,37,0,0,0.120913 -32184,1315:475,155,37,0,0,0.12076 -32185,1315:476,156,37,0,0,0.121647 -32186,1315:477,157,37,0,0,0.120815 -32187,1316:370,160,37,0,0,0.117121 -32188,1316:371,161,37,0,0,0.123514 -32189,1316:372,162,37,0,0,0.126753 -32190,1316:373,163,37,0,0,0.126186 -32191,1316:374,164,37,0,0,0.131173 -32192,1316:475,165,37,0,0,0.132892 -32193,1316:476,166,37,0,0,0.133414 -32194,1316:477,167,37,0,0,0.13262 -32195,1316:478,168,37,0,0,0.13156 -32196,1316:479,169,37,0,0,0.132738 -32197,1317:370,170,37,0,0,0.1342 -32198,1317:371,171,37,0,0,0.134631 -32199,1317:372,172,37,0,0,0.134475 -32200,1317:373,173,37,0,0,0.131419 -32201,1317:374,174,37,0,0,0.131185 -32202,1317:475,175,37,0,0,0.133545 -32203,1317:476,176,37,0,0,0.136194 -32204,1317:477,177,37,0,0,0.136933 -32205,1317:478,178,37,0,0,0.136122 -32206,1317:479,179,37,0,0,0.138274 -32207,1318:370,180,37,0,0,0.138067 -32208,7318:380,-180,38,0,0,0.135808 -32209,7317:489,-179,38,0,0,0.137712 -32210,7317:488,-178,38,0,0,0.140109 -32211,7317:487,-177,38,0,0,0.140592 -32212,7317:486,-176,38,0,0,0.141239 -32213,7317:485,-175,38,0,0,0.141851 -32214,7317:384,-174,38,0,0,0.142264 -32215,7317:383,-173,38,0,0,0.14254 -32216,7317:382,-172,38,0,0,0.144955 -32217,7317:381,-171,38,0,0,0.14535 -32218,7317:380,-170,38,0,0,0.14493 -32219,7316:489,-169,38,0,0,0.14507 -32220,7316:488,-168,38,0,0,0.145223 -32221,7316:487,-167,38,0,0,0.145951 -32222,7316:486,-166,38,0,0,0.146349 -32223,7316:485,-165,38,0,0,0.145849 -32224,7316:384,-164,38,0,0,0.145299 -32225,7316:383,-163,38,0,0,0.144993 -32226,7316:382,-162,38,0,0,0.144726 -32227,7316:381,-161,38,0,0,0.144358 -32228,7316:380,-160,38,0,0,0.143927 -32229,7315:489,-159,38,0,0,0.143649 -32230,7315:488,-158,38,0,0,0.143737 -32231,7315:487,-157,38,0,0,0.144612 -32232,7315:486,-156,38,0,0,0.146131 -32233,7315:485,-155,38,0,0,0.147831 -32234,7315:384,-154,38,0,0,0.151399 -32235,7315:383,-153,38,0,0,0.152698 -32236,7315:382,-152,38,0,0,0.154582 -32237,7315:381,-151,38,0,0,0.157463 -32238,7315:380,-150,38,0,0,0.15923 -32239,7314:489,-149,38,0,0,0.160693 -32240,7314:488,-148,38,0,0,0.163638 -32241,7314:487,-147,38,0,0,0.16385 -32242,7314:486,-146,38,0,0,0.164837 -32243,7314:485,-145,38,0,0,0.165574 -32244,7314:384,-144,38,0,0,0.167413 -32245,7314:383,-143,38,0,0,0.174075 -32246,7314:382,-142,38,0,0,0.174741 -32247,7314:381,-141,38,0,0,0.178566 -32248,7314:380,-140,38,0,0,0.185263 -32249,7313:489,-139,38,0,0,0.186273 -32250,7313:488,-138,38,0,0,0.187632 -32251,7313:487,-137,38,0,0,0.192599 -32252,7313:486,-136,38,0,0,0.196009 -32253,7313:485,-135,38,0,0,0.19809 -32254,7313:384,-134,38,0,0,0.203664 -32255,7313:383,-133,38,0,0,0.20798 -32256,7313:382,-132,38,0,0,0.206393 -32257,7313:381,-131,38,0,0,0.206477 -32258,7313:380,-130,38,0,0,0.208946 -32259,7312:489,-129,38,0,0,0.209558 -32260,7312:488,-128,38,0,0,0.202052 -32261,7312:485,-125,38,0,0,0.19099 -32262,7305:384,-54,38,0,0,0.0893389 -32263,7305:383,-53,38,0,0,0.101331 -32264,7305:382,-52,38,0,0,0.111974 -32265,7305:381,-51,38,0,0,0.110511 -32266,7305:380,-50,38,0,0,0.120075 -32267,7304:489,-49,38,0,0,0.135062 -32268,7304:488,-48,38,0,0,0.148987 -32269,7304:487,-47,38,0,0,0.154608 -32270,7304:486,-46,38,0,0,0.151241 -32271,7304:485,-45,38,0,0,0.148427 -32272,7304:384,-44,38,0,0,0.145542 -32273,7304:383,-43,38,0,0,0.149417 -32274,7304:382,-42,38,0,0,0.147133 -32275,7304:381,-41,38,0,0,0.144726 -32276,7304:380,-40,38,0,0,0.148259 -32277,7303:489,-39,38,0,0,0.145542 -32278,7303:488,-38,38,0,0,0.147779 -32279,7303:487,-37,38,0,0,0.146722 -32280,7303:486,-36,38,0,0,0.157327 -32281,7303:485,-35,38,0,0,0.158351 -32282,7303:384,-34,38,0,0,0.158872 -32283,7303:383,-33,38,0,0,0.164046 -32284,7303:382,-32,38,0,0,0.190182 -32285,7303:381,-31,38,0,0,0.204799 -32286,7303:380,-30,38,0,0,0.215229 -32287,7302:489,-29,38,0,0,0.223249 -32288,7302:488,-28,38,0,0,0.216255 -32289,7302:487,-27,38,0,0,0.212312 -32290,7302:486,-26,38,0,0,0.2049 -32291,7302:485,-25,38,0,0,0.221224 -32292,7302:384,-24,38,0,0,0.211077 -32293,7302:383,-23,38,0,0,0.222572 -32294,7302:382,-22,38,0,0,0.238198 -32295,7302:381,-21,38,0,0,0.236283 -32296,7302:380,-20,38,0,0,0.232962 -32297,7301:489,-19,38,0,0,0.230165 -32298,7301:488,-18,38,0,0,0.233385 -32299,7301:487,-17,38,0,0,0.24395 -32300,7301:486,-16,38,0,0,0.25499 -32301,7301:485,-15,38,0,0,0.241269 -32302,7301:384,-14,38,0,0,0.241721 -32303,7301:383,-13,38,0,0,0.237658 -32304,7301:382,-12,38,0,0,0.236042 -32305,7301:381,-11,38,0,0,0.228603 -32306,7300:487,-7,38,0,0,0.235043 -32307,7300:486,-6,38,0,0,0.206293 -32308,1300:381,0,38,0,0,0.222341 -32309,1300:381,1,38,0,0,0.225466 -32310,1314:383,143,38,0,0,0.0804923 -32311,1314:486,146,38,0,0,0.0912546 -32312,1314:487,147,38,0,0,0.103656 -32313,1314:488,148,38,0,0,0.108071 -32314,1314:489,149,38,0,0,0.111058 -32315,1315:380,150,38,0,0,0.113702 -32316,1315:381,151,38,0,0,0.117079 -32317,1315:382,152,38,0,0,0.119793 -32318,1315:383,153,38,0,0,0.120968 -32319,1315:384,154,38,0,0,0.121746 -32320,1315:485,155,38,0,0,0.122605 -32321,1315:486,156,38,0,0,0.123614 -32322,1315:487,157,38,0,0,0.12135 -32323,1316:380,160,38,0,0,0.116782 -32324,1316:381,161,38,0,0,0.114596 -32325,1316:382,162,38,0,0,0.119511 -32326,1316:383,163,38,0,0,0.127483 -32327,1316:384,164,38,0,0,0.128228 -32328,1316:485,165,38,0,0,0.128274 -32329,1316:486,166,38,0,0,0.129242 -32330,1316:487,167,38,0,0,0.1301 -32331,1316:488,168,38,0,0,0.13108 -32332,1316:489,169,38,0,0,0.132963 -32333,1317:380,170,38,0,0,0.133284 -32334,1317:381,171,38,0,0,0.129566 -32335,1317:382,172,38,0,0,0.126685 -32336,1317:383,173,38,0,0,0.126708 -32337,1317:384,174,38,0,0,0.127221 -32338,1317:485,175,38,0,0,0.127278 -32339,1317:486,176,38,0,0,0.129011 -32340,1317:487,177,38,0,0,0.13101 -32341,1317:488,178,38,0,0,0.132928 -32342,1317:489,179,38,0,0,0.134535 -32343,1318:380,180,38,0,0,0.135808 -32344,7318:390,-180,39,0,0,0.135242 -32345,7317:499,-179,39,0,0,0.134355 -32346,7317:498,-178,39,0,0,0.13101 -32347,7317:497,-177,39,0,0,0.130787 -32348,7317:496,-176,39,0,0,0.13122 -32349,7317:495,-175,39,0,0,0.131889 -32350,7317:394,-174,39,0,0,0.133997 -32351,7317:393,-173,39,0,0,0.136861 -32352,7317:392,-172,39,0,0,0.140158 -32353,7317:391,-171,39,0,0,0.141863 -32354,7317:390,-170,39,0,0,0.14356 -32355,7316:499,-169,39,0,0,0.144739 -32356,7316:497,-167,39,0,0,0.145032 -32357,7316:496,-166,39,0,0,0.145146 -32358,7316:495,-165,39,0,0,0.145197 -32359,7316:394,-164,39,0,0,0.144981 -32360,7316:393,-163,39,0,0,0.144815 -32361,7316:392,-162,39,0,0,0.144943 -32362,7316:391,-161,39,0,0,0.145006 -32363,7316:390,-160,39,0,0,0.143421 -32364,7315:499,-159,39,0,0,0.141963 -32365,7315:498,-158,39,0,0,0.143118 -32366,7315:497,-157,39,0,0,0.145338 -32367,7315:496,-156,39,0,0,0.146439 -32368,7315:495,-155,39,0,0,0.148765 -32369,7315:394,-154,39,0,0,0.149495 -32370,7315:393,-153,39,0,0,0.15078 -32371,7315:392,-152,39,0,0,0.152286 -32372,7315:391,-151,39,0,0,0.155349 -32373,7315:390,-150,39,0,0,0.157354 -32374,7314:499,-149,39,0,0,0.15764 -32375,7314:498,-148,39,0,0,0.157831 -32376,7314:497,-147,39,0,0,0.158913 -32377,7314:496,-146,39,0,0,0.162279 -32378,7314:495,-145,39,0,0,0.164894 -32379,7314:394,-144,39,0,0,0.166784 -32380,7314:393,-143,39,0,0,0.168404 -32381,7314:392,-142,39,0,0,0.169732 -32382,7314:391,-141,39,0,0,0.17209 -32383,7314:390,-140,39,0,0,0.177289 -32384,7313:499,-139,39,0,0,0.177499 -32385,7313:498,-138,39,0,0,0.181249 -32386,7313:497,-137,39,0,0,0.183333 -32387,7313:496,-136,39,0,0,0.185154 -32388,7313:495,-135,39,0,0,0.19034 -32389,7313:394,-134,39,0,0,0.199202 -32390,7313:393,-133,39,0,0,0.199973 -32391,7313:392,-132,39,0,0,0.200598 -32392,7313:391,-131,39,0,0,0.203631 -32393,7313:390,-130,39,0,0,0.207692 -32394,7305:394,-54,39,0,0,0.0876154 -32395,7305:393,-53,39,0,0,0.100307 -32396,7305:392,-52,39,0,0,0.106428 -32397,7305:391,-51,39,0,0,0.11036 -32398,7305:390,-50,39,0,0,0.134379 -32399,7304:499,-49,39,0,0,0.141152 -32400,7304:498,-48,39,0,0,0.148038 -32401,7304:497,-47,39,0,0,0.14558 -32402,7304:496,-46,39,0,0,0.139293 -32403,7304:495,-45,39,0,0,0.142565 -32404,7304:394,-44,39,0,0,0.147133 -32405,7304:393,-43,39,0,0,0.142314 -32406,7304:392,-42,39,0,0,0.139257 -32407,7304:391,-41,39,0,0,0.139874 -32408,7304:390,-40,39,0,0,0.143018 -32409,7303:499,-39,39,0,0,0.143383 -32410,7303:498,-38,39,0,0,0.142703 -32411,7303:497,-37,39,0,0,0.15222 -32412,7303:496,-36,39,0,0,0.158201 -32413,7303:495,-35,39,0,0,0.160402 -32414,7303:394,-34,39,0,0,0.164103 -32415,7303:393,-33,39,0,0,0.166855 -32416,7303:392,-32,39,0,0,0.180033 -32417,7303:391,-31,39,0,0,0.194862 -32418,7303:390,-30,39,0,0,0.210649 -32419,7302:499,-29,39,0,0,0.20182 -32420,7302:498,-28,39,0,0,0.209014 -32421,7302:497,-27,39,0,0,0.206629 -32422,7302:496,-26,39,0,0,0.202218 -32423,7302:495,-25,39,0,0,0.20073 -32424,7302:394,-24,39,0,0,0.202931 -32425,7302:393,-23,39,0,0,0.216639 -32426,7302:392,-22,39,0,0,0.231825 -32427,7302:391,-21,39,0,0,0.246498 -32428,7302:390,-20,39,0,0,0.247702 -32429,7301:499,-19,39,0,0,0.244689 -32430,7301:498,-18,39,0,0,0.241194 -32431,7301:497,-17,39,0,0,0.243552 -32432,7301:496,-16,39,0,0,0.252947 -32433,7301:495,-15,39,0,0,0.251107 -32434,7301:394,-14,39,0,0,0.247702 -32435,7301:393,-13,39,0,0,0.242211 -32436,7301:392,-12,39,0,0,0.234065 -32437,7300:497,-7,39,0,0,0.232045 -32438,1300:391,0,39,0,0,0.211574 -32439,1300:391,1,39,0,0,0.226346 -32440,1300:392,2,39,0,0,0.214208 -32441,1314:496,146,39,0,0,0.0884236 -32442,1314:497,147,39,0,0,0.10598 -32443,1314:498,148,39,0,0,0.108627 -32444,1314:499,149,39,0,0,0.109877 -32445,1315:390,150,39,0,0,0.114982 -32446,1315:391,151,39,0,0,0.118983 -32447,1315:392,152,39,0,0,0.121077 -32448,1315:393,153,39,0,0,0.122164 -32449,1315:394,154,39,0,0,0.12245 -32450,1315:495,155,39,0,0,0.122682 -32451,1315:496,156,39,0,0,0.12367 -32452,1315:497,157,39,0,0,0.119144 -32453,1316:391,161,39,0,0,0.112097 -32454,1316:392,162,39,0,0,0.112117 -32455,1316:393,163,39,0,0,0.117313 -32456,1316:394,164,39,0,0,0.124497 -32457,1316:495,165,39,0,0,0.123425 -32458,1316:496,166,39,0,0,0.122837 -32459,1316:497,167,39,0,0,0.127872 -32460,1316:498,168,39,0,0,0.128607 -32461,1316:499,169,39,0,0,0.131021 -32462,1317:390,170,39,0,0,0.128538 -32463,1317:391,171,39,0,0,0.127975 -32464,1317:392,172,39,0,0,0.128102 -32465,1317:393,173,39,0,0,0.125994 -32466,1317:394,174,39,0,0,0.128699 -32467,1317:495,175,39,0,0,0.130274 -32468,1317:496,176,39,0,0,0.131185 -32469,1317:497,177,39,0,0,0.131443 -32470,1317:498,178,39,0,0,0.131478 -32471,1317:499,179,39,0,0,0.13481 -32472,1318:390,180,39,0,0,0.135242 -32473,7418:100,-180,40,0,0,0.13183 -32474,7417:209,-179,40,0,0,0.13216 -32475,7417:208,-178,40,0,0,0.130834 -32476,7417:207,-177,40,0,0,0.130298 -32477,7417:206,-176,40,0,0,0.130472 -32478,7417:205,-175,40,0,0,0.130904 -32479,7417:104,-174,40,0,0,0.133557 -32480,7417:103,-173,40,0,0,0.138617 -32481,7417:102,-172,40,0,0,0.138115 -32482,7417:101,-171,40,0,0,0.140158 -32483,7417:100,-170,40,0,0,0.141863 -32484,7416:209,-169,40,0,0,0.144332 -32485,7416:208,-168,40,0,0,0.145798 -32486,7416:207,-167,40,0,0,0.145236 -32487,7416:206,-166,40,0,0,0.136569 -32488,7416:205,-165,40,0,0,0.140779 -32489,7416:104,-164,40,0,0,0.138704 -32490,7416:103,-163,40,0,0,0.14694 -32491,7416:102,-162,40,0,0,0.146876 -32492,7416:101,-161,40,0,0,0.145849 -32493,7416:100,-160,40,0,0,0.14399 -32494,7415:209,-159,40,0,0,0.143055 -32495,7415:208,-158,40,0,0,0.142051 -32496,7415:207,-157,40,0,0,0.142917 -32497,7415:206,-156,40,0,0,0.143775 -32498,7415:205,-155,40,0,0,0.143825 -32499,7415:104,-154,40,0,0,0.1459 -32500,7415:103,-153,40,0,0,0.144993 -32501,7415:102,-152,40,0,0,0.145236 -32502,7415:101,-151,40,0,0,0.149888 -32503,7415:100,-150,40,0,0,0.153217 -32504,7414:209,-149,40,0,0,0.154166 -32505,7414:208,-148,40,0,0,0.153871 -32506,7414:207,-147,40,0,0,0.153591 -32507,7414:206,-146,40,0,0,0.161206 -32508,7414:205,-145,40,0,0,0.163062 -32509,7414:104,-144,40,0,0,0.163441 -32510,7414:103,-143,40,0,0,0.167356 -32511,7414:102,-142,40,0,0,0.173117 -32512,7414:101,-141,40,0,0,0.175245 -32513,7414:100,-140,40,0,0,0.177334 -32514,7413:209,-139,40,0,0,0.17801 -32515,7413:208,-138,40,0,0,0.177634 -32516,7413:207,-137,40,0,0,0.179367 -32517,7413:206,-136,40,0,0,0.182657 -32518,7413:205,-135,40,0,0,0.192168 -32519,7413:104,-134,40,0,0,0.190356 -32520,7413:103,-133,40,0,0,0.193543 -32521,7413:102,-132,40,0,0,0.197666 -32522,7413:101,-131,40,0,0,0.199382 -32523,7413:100,-130,40,0,0,0.204498 -32524,7412:209,-129,40,0,0,0.194443 -32525,7407:209,-79,40,0,0,0.0898333 -32526,7407:208,-78,40,0,0,0.089699 -32527,7405:205,-55,40,0,0,0.0845682 -32528,7405:104,-54,40,0,0,0.0862941 -32529,7405:103,-53,40,0,0,0.0922133 -32530,7405:102,-52,40,0,0,0.0977042 -32531,7405:101,-51,40,0,0,0.121537 -32532,7405:100,-50,40,0,0,0.136751 -32533,7404:209,-49,40,0,0,0.136025 -32534,7404:208,-48,40,0,0,0.135723 -32535,7404:207,-47,40,0,0,0.136691 -32536,7404:206,-46,40,0,0,0.13576 -32537,7404:205,-45,40,0,0,0.133962 -32538,7404:104,-44,40,0,0,0.135182 -32539,7404:103,-43,40,0,0,0.134798 -32540,7404:102,-42,40,0,0,0.137749 -32541,7404:101,-41,40,0,0,0.137481 -32542,7404:100,-40,40,0,0,0.138888 -32543,7403:209,-39,40,0,0,0.141338 -32544,7403:208,-38,40,0,0,0.148389 -32545,7403:207,-37,40,0,0,0.151505 -32546,7403:206,-36,40,0,0,0.153217 -32547,7403:205,-35,40,0,0,0.157408 -32548,7403:104,-34,40,0,0,0.157599 -32549,7403:103,-33,40,0,0,0.160209 -32550,7403:102,-32,40,0,0,0.173942 -32551,7403:101,-31,40,0,0,0.181692 -32552,7403:100,-30,40,0,0,0.177394 -32553,7402:209,-29,40,0,0,0.175394 -32554,7402:208,-28,40,0,0,0.181082 -32555,7402:207,-27,40,0,0,0.201622 -32556,7402:206,-26,40,0,0,0.202152 -32557,7402:205,-25,40,0,0,0.211968 -32558,7402:104,-24,40,0,0,0.214831 -32559,7402:103,-23,40,0,0,0.207946 -32560,7402:102,-22,40,0,0,0.208675 -32561,7402:101,-21,40,0,0,0.227138 -32562,7402:100,-20,40,0,0,0.243552 -32563,7401:209,-19,40,0,0,0.248661 -32564,7401:208,-18,40,0,0,0.250412 -32565,7401:207,-17,40,0,0,0.250836 -32566,7401:206,-16,40,0,0,0.251899 -32567,7401:205,-15,40,0,0,0.24776 -32568,7401:104,-14,40,0,0,0.24665 -32569,7401:103,-13,40,0,0,0.247702 -32570,7401:102,-12,40,0,0,0.24157 -32571,7401:101,-11,40,0,0,0.228821 -32572,7400:207,-7,40,0,0,0.230147 -32573,7400:206,-6,40,0,0,0.201903 -32574,7400:102,-2,40,0,0,0.20881 -32575,7400:101,-1,40,0,0,0.207861 -32576,1400:101,0,40,0,0,0.205251 -32577,1400:101,1,40,0,0,0.208048 -32578,1400:102,2,40,0,0,0.217722 -32579,1400:103,3,40,0,0,0.19953 -32580,1414:104,144,40,0,0,0.0792464 -32581,1414:205,145,40,0,0,0.0773852 -32582,1414:206,146,40,0,0,0.0884982 -32583,1414:207,147,40,0,0,0.109135 -32584,1414:208,148,40,0,0,0.111699 -32585,1414:209,149,40,0,0,0.113702 -32586,1415:100,150,40,0,0,0.116877 -32587,1415:101,151,40,0,0,0.119058 -32588,1415:102,152,40,0,0,0.119414 -32589,1415:103,153,40,0,0,0.118402 -32590,1415:104,154,40,0,0,0.118832 -32591,1415:205,155,40,0,0,0.120695 -32592,1415:206,156,40,0,0,0.121669 -32593,1415:207,157,40,0,0,0.10563 -32594,1416:104,164,40,0,0,0.111984 -32595,1416:205,165,40,0,0,0.121822 -32596,1416:206,166,40,0,0,0.122771 -32597,1416:208,168,40,0,0,0.124016 -32598,1416:209,169,40,0,0,0.127198 -32599,1417:100,170,40,0,0,0.128262 -32600,1417:101,171,40,0,0,0.12605 -32601,1417:102,172,40,0,0,0.127723 -32602,1417:103,173,40,0,0,0.127312 -32603,1417:104,174,40,0,0,0.127884 -32604,1417:205,175,40,0,0,0.127712 -32605,1417:206,176,40,0,0,0.12809 -32606,1417:207,177,40,0,0,0.128757 -32607,1417:208,178,40,0,0,0.12817 -32608,1417:209,179,40,0,0,0.127998 -32609,1418:100,180,40,0,0,0.13183 -32610,7418:110,-180,41,0,0,0.125406 -32611,7417:219,-179,41,0,0,0.126992 -32612,7417:218,-178,41,0,0,0.128354 -32613,7417:217,-177,41,0,0,0.129068 -32614,7417:216,-176,41,0,0,0.129404 -32615,7417:215,-175,41,0,0,0.129949 -32616,7417:114,-174,41,0,0,0.134439 -32617,7417:113,-173,41,0,0,0.139146 -32618,7417:112,-172,41,0,0,0.143081 -32619,7417:111,-171,41,0,0,0.144472 -32620,7417:110,-170,41,0,0,0.145236 -32621,7416:219,-169,41,0,0,0.142289 -32622,7416:218,-168,41,0,0,0.13847 -32623,7416:217,-167,41,0,0,0.144332 -32624,7416:216,-166,41,0,0,0.140965 -32625,7416:215,-165,41,0,0,0.131936 -32626,7416:113,-163,41,0,0,0.130846 -32627,7416:112,-162,41,0,0,0.1364 -32628,7416:111,-161,41,0,0,0.132573 -32629,7416:110,-160,41,0,0,0.147469 -32630,7415:219,-159,41,0,0,0.150124 -32631,7415:218,-158,41,0,0,0.146953 -32632,7415:217,-157,41,0,0,0.143598 -32633,7415:216,-156,41,0,0,0.141551 -32634,7415:215,-155,41,0,0,0.141688 -32635,7415:114,-154,41,0,0,0.142904 -32636,7415:113,-153,41,0,0,0.141963 -32637,7415:112,-152,41,0,0,0.142164 -32638,7415:111,-151,41,0,0,0.142728 -32639,7415:110,-150,41,0,0,0.145478 -32640,7414:219,-149,41,0,0,0.146863 -32641,7414:218,-148,41,0,0,0.148922 -32642,7414:217,-147,41,0,0,0.15327 -32643,7414:216,-146,41,0,0,0.155092 -32644,7414:215,-145,41,0,0,0.158365 -32645,7414:114,-144,41,0,0,0.159257 -32646,7414:113,-143,41,0,0,0.160748 -32647,7414:112,-142,41,0,0,0.170413 -32648,7414:111,-141,41,0,0,0.174637 -32649,7414:110,-140,41,0,0,0.179185 -32650,7413:219,-139,41,0,0,0.180884 -32651,7413:218,-138,41,0,0,0.182917 -32652,7413:217,-137,41,0,0,0.182856 -32653,7413:216,-136,41,0,0,0.185713 -32654,7413:215,-135,41,0,0,0.192391 -32655,7413:114,-134,41,0,0,0.194057 -32656,7413:113,-133,41,0,0,0.196868 -32657,7413:112,-132,41,0,0,0.198514 -32658,7413:111,-131,41,0,0,0.200928 -32659,7413:110,-130,41,0,0,0.199038 -32660,7408:110,-80,41,0,0,0.0875087 -32661,7407:219,-79,41,0,0,0.0877551 -32662,7407:218,-78,41,0,0,0.0903556 -32663,7405:215,-55,41,0,0,0.0824918 -32664,7405:114,-54,41,0,0,0.0900941 -32665,7405:113,-53,41,0,0,0.0920416 -32666,7405:112,-52,41,0,0,0.107498 -32667,7405:111,-51,41,0,0,0.130893 -32668,7405:110,-50,41,0,0,0.137164 -32669,7404:219,-49,41,0,0,0.136327 -32670,7404:218,-48,41,0,0,0.135543 -32671,7404:217,-47,41,0,0,0.134798 -32672,7404:216,-46,41,0,0,0.131443 -32673,7404:215,-45,41,0,0,0.131255 -32674,7404:114,-44,41,0,0,0.132845 -32675,7404:113,-43,41,0,0,0.132384 -32676,7404:112,-42,41,0,0,0.13294 -32677,7404:111,-41,41,0,0,0.134966 -32678,7404:110,-40,41,0,0,0.134081 -32679,7403:219,-39,41,0,0,0.1364 -32680,7403:218,-38,41,0,0,0.140233 -32681,7403:217,-37,41,0,0,0.143699 -32682,7403:216,-36,41,0,0,0.152313 -32683,7403:215,-35,41,0,0,0.152273 -32684,7403:114,-34,41,0,0,0.150714 -32685,7403:113,-33,41,0,0,0.150833 -32686,7403:112,-32,41,0,0,0.154743 -32687,7403:111,-31,41,0,0,0.172031 -32688,7403:110,-30,41,0,0,0.174119 -32689,7402:219,-29,41,0,0,0.172735 -32690,7402:218,-28,41,0,0,0.190245 -32691,7402:217,-27,41,0,0,0.191801 -32692,7402:216,-26,41,0,0,0.19695 -32693,7402:215,-25,41,0,0,0.215768 -32694,7402:114,-24,41,0,0,0.21923 -32695,7402:113,-23,41,0,0,0.216499 -32696,7402:112,-22,41,0,0,0.216796 -32697,7402:111,-21,41,0,0,0.243647 -32698,7402:110,-20,41,0,0,0.239543 -32699,7401:219,-19,41,0,0,0.238235 -32700,7401:218,-18,41,0,0,0.234471 -32701,7401:217,-17,41,0,0,0.231405 -32702,7401:216,-16,41,0,0,0.238963 -32703,7401:215,-15,41,0,0,0.234673 -32704,7401:114,-14,41,0,0,0.248623 -32705,7401:113,-13,41,0,0,0.247281 -32706,7401:112,-12,41,0,0,0.244139 -32707,7401:111,-11,41,0,0,0.234766 -32708,7401:110,-10,41,0,0,0.225681 -32709,7400:219,-9,41,0,0,0.220128 -32710,7400:218,-8,41,0,0,0.228024 -32711,7400:217,-7,41,0,0,0.215525 -32712,7400:113,-3,41,0,0,0.216116 -32713,7400:112,-2,41,0,0,0.217599 -32714,7400:111,-1,41,0,0,0.198433 -32715,1400:111,0,41,0,0,0.19142 -32716,1400:111,1,41,0,0,0.204198 -32717,1400:112,2,41,0,0,0.215143 -32718,1400:113,3,41,0,0,0.217809 -32719,1400:114,4,41,0,0,0.215873 -32720,1400:215,5,41,0,0,0.207354 -32721,1400:216,6,41,0,0,0.176302 -32722,1414:110,140,41,0,0,0.0791266 -32723,1414:111,141,41,0,0,0.077451 -32724,1414:112,142,41,0,0,0.0787084 -32725,1414:113,143,41,0,0,0.0829908 -32726,1414:114,144,41,0,0,0.0857045 -32727,1414:215,145,41,0,0,0.0862049 -32728,1414:216,146,41,0,0,0.0867814 -32729,1414:217,147,41,0,0,0.107794 -32730,1414:218,148,41,0,0,0.11177 -32731,1414:219,149,41,0,0,0.111709 -32732,1415:110,150,41,0,0,0.113899 -32733,1415:111,151,41,0,0,0.11264 -32734,1415:112,152,41,0,0,0.109166 -32735,1415:113,153,41,0,0,0.109526 -32736,1415:114,154,41,0,0,0.111018 -32737,1415:215,155,41,0,0,0.116338 -32738,1415:216,156,41,0,0,0.119717 -32739,1415:217,157,41,0,0,0.103628 -32740,1416:114,164,41,0,0,0.107607 -32741,1416:215,165,41,0,0,0.112445 -32742,1416:216,166,41,0,0,0.115758 -32743,1416:217,167,41,0,0,0.1176 -32744,1416:218,168,41,0,0,0.119382 -32745,1416:219,169,41,0,0,0.124206 -32746,1417:110,170,41,0,0,0.126197 -32747,1417:111,171,41,0,0,0.118509 -32748,1417:112,172,41,0,0,0.124317 -32749,1417:113,173,41,0,0,0.125666 -32750,1417:114,174,41,0,0,0.125711 -32751,1417:215,175,41,0,0,0.126469 -32752,1417:216,176,41,0,0,0.123781 -32753,1417:217,177,41,0,0,0.123392 -32754,1417:218,178,41,0,0,0.123037 -32755,1417:219,179,41,0,0,0.123004 -32756,1418:110,180,41,0,0,0.125406 -32757,7418:120,-180,42,0,0,0.126367 -32758,7417:229,-179,42,0,0,0.126039 -32759,7417:228,-178,42,0,0,0.127895 -32760,7417:227,-177,42,0,0,0.129358 -32761,7417:226,-176,42,0,0,0.130566 -32762,7417:225,-175,42,0,0,0.135026 -32763,7417:124,-174,42,0,0,0.132077 -32764,7417:123,-173,42,0,0,0.131443 -32765,7417:122,-172,42,0,0,0.13017 -32766,7417:121,-171,42,0,0,0.127004 -32767,7417:120,-170,42,0,0,0.12893 -32768,7416:229,-169,42,0,0,0.131995 -32769,7416:228,-168,42,0,0,0.136994 -32770,7416:227,-167,42,0,0,0.141501 -32771,7416:226,-166,42,0,0,0.140629 -32772,7416:225,-165,42,0,0,0.134894 -32773,7416:124,-164,42,0,0,0.124094 -32774,7416:121,-161,42,0,0,0.142691 -32775,7416:120,-160,42,0,0,0.147534 -32776,7415:229,-159,42,0,0,0.148298 -32777,7415:228,-158,42,0,0,0.151717 -32778,7415:227,-157,42,0,0,0.150084 -32779,7415:226,-156,42,0,0,0.148233 -32780,7415:225,-155,42,0,0,0.144332 -32781,7415:124,-154,42,0,0,0.142339 -32782,7415:123,-153,42,0,0,0.141002 -32783,7415:122,-152,42,0,0,0.141538 -32784,7415:121,-151,42,0,0,0.143232 -32785,7415:120,-150,42,0,0,0.148272 -32786,7414:229,-149,42,0,0,0.150649 -32787,7414:228,-148,42,0,0,0.152021 -32788,7414:227,-147,42,0,0,0.154394 -32789,7414:226,-146,42,0,0,0.155821 -32790,7414:225,-145,42,0,0,0.163624 -32791,7414:124,-144,42,0,0,0.165645 -32792,7414:123,-143,42,0,0,0.164188 -32793,7414:122,-142,42,0,0,0.163035 -32794,7414:121,-141,42,0,0,0.169847 -32795,7414:120,-140,42,0,0,0.173957 -32796,7413:229,-139,42,0,0,0.173942 -32797,7413:228,-138,42,0,0,0.182687 -32798,7413:227,-137,42,0,0,0.186133 -32799,7413:226,-136,42,0,0,0.186304 -32800,7413:225,-135,42,0,0,0.191961 -32801,7413:123,-133,42,0,0,0.186351 -32802,7413:122,-132,42,0,0,0.197601 -32803,7413:121,-131,42,0,0,0.195088 -32804,7407:229,-79,42,0,0,0.088548 -32805,7407:228,-78,42,0,0,0.0882746 -32806,7405:228,-58,42,0,0,0.0771947 -32807,7405:227,-57,42,0,0,0.0806066 -32808,7405:226,-56,42,0,0,0.0841079 -32809,7405:225,-55,42,0,0,0.0859464 -32810,7405:124,-54,42,0,0,0.122837 -32811,7405:123,-53,42,0,0,0.139343 -32812,7405:122,-52,42,0,0,0.134858 -32813,7405:121,-51,42,0,0,0.133985 -32814,7405:120,-50,42,0,0,0.130356 -32815,7404:229,-49,42,0,0,0.133962 -32816,7404:228,-48,42,0,0,0.134188 -32817,7404:227,-47,42,0,0,0.132113 -32818,7404:226,-46,42,0,0,0.13003 -32819,7404:225,-45,42,0,0,0.129531 -32820,7404:124,-44,42,0,0,0.129138 -32821,7404:123,-43,42,0,0,0.129682 -32822,7404:122,-42,42,0,0,0.131091 -32823,7404:121,-41,42,0,0,0.131419 -32824,7404:120,-40,42,0,0,0.131689 -32825,7403:229,-39,42,0,0,0.133023 -32826,7403:228,-38,42,0,0,0.138888 -32827,7403:227,-37,42,0,0,0.139923 -32828,7403:226,-36,42,0,0,0.142967 -32829,7403:225,-35,42,0,0,0.145836 -32830,7403:124,-34,42,0,0,0.151149 -32831,7403:123,-33,42,0,0,0.15343 -32832,7403:122,-32,42,0,0,0.156606 -32833,7403:121,-31,42,0,0,0.157777 -32834,7403:120,-30,42,0,0,0.161054 -32835,7402:229,-29,42,0,0,0.164837 -32836,7402:228,-28,42,0,0,0.166242 -32837,7402:227,-27,42,0,0,0.170413 -32838,7402:226,-26,42,0,0,0.174193 -32839,7402:225,-25,42,0,0,0.180109 -32840,7402:124,-24,42,0,0,0.192088 -32841,7402:123,-23,42,0,0,0.197845 -32842,7402:122,-22,42,0,0,0.220041 -32843,7402:121,-21,42,0,0,0.240386 -32844,7402:120,-20,42,0,0,0.239356 -32845,7401:229,-19,42,0,0,0.231752 -32846,7401:228,-18,42,0,0,0.233329 -32847,7401:227,-17,42,0,0,0.222644 -32848,7401:226,-16,42,0,0,0.219406 -32849,7401:225,-15,42,0,0,0.231441 -32850,7401:124,-14,42,0,0,0.236932 -32851,7401:123,-13,42,0,0,0.244386 -32852,7401:122,-12,42,0,0,0.244633 -32853,7401:121,-11,42,0,0,0.237007 -32854,7401:120,-10,42,0,0,0.229746 -32855,7400:229,-9,42,0,0,0.213034 -32856,7400:228,-8,42,0,0,0.198923 -32857,7400:225,-5,42,0,0,0.20636 -32858,7400:124,-4,42,0,0,0.212157 -32859,7400:123,-3,42,0,0,0.212775 -32860,7400:122,-2,42,0,0,0.212312 -32861,7400:121,-1,42,0,0,0.212054 -32862,1400:121,0,42,0,0,0.204498 -32863,1400:121,1,42,0,0,0.198449 -32864,1400:122,2,42,0,0,0.205402 -32865,1400:123,3,42,0,0,0.21556 -32866,1400:124,4,42,0,0,0.209609 -32867,1400:225,5,42,0,0,0.181173 -32868,1400:227,7,42,0,0,0.16147 -32869,1400:228,8,42,0,0,0.162559 -32870,1400:229,9,42,0,0,0.168692 -32871,1401:121,11,42,0,0,0.157504 -32872,1413:229,139,42,0,0,0.0779224 -32873,1414:120,140,42,0,0,0.0787755 -32874,1414:122,142,42,0,0,0.0942107 -32875,1414:123,143,42,0,0,0.0880847 -32876,1414:124,144,42,0,0,0.0833277 -32877,1414:225,145,42,0,0,0.0848548 -32878,1414:226,146,42,0,0,0.091093 -32879,1414:227,147,42,0,0,0.0992458 -32880,1414:228,148,42,0,0,0.0993652 -32881,1414:229,149,42,0,0,0.101885 -32882,1415:120,150,42,0,0,0.105455 -32883,1415:121,151,42,0,0,0.105039 -32884,1415:122,152,42,0,0,0.103628 -32885,1415:123,153,42,0,0,0.105999 -32886,1415:124,154,42,0,0,0.108498 -32887,1415:225,155,42,0,0,0.112774 -32888,1415:226,156,42,0,0,0.116856 -32889,1415:227,157,42,0,0,0.0982854 -32890,1416:225,165,42,0,0,0.111018 -32891,1416:226,166,42,0,0,0.114804 -32892,1416:227,167,42,0,0,0.119706 -32893,1416:228,168,42,0,0,0.120738 -32894,1416:229,169,42,0,0,0.124698 -32895,1417:120,170,42,0,0,0.125982 -32896,1417:121,171,42,0,0,0.119144 -32897,1417:122,172,42,0,0,0.117739 -32898,1417:123,173,42,0,0,0.120968 -32899,1417:124,174,42,0,0,0.123425 -32900,1417:225,175,42,0,0,0.123547 -32901,1417:226,176,42,0,0,0.121955 -32902,1417:227,177,42,0,0,0.121515 -32903,1417:228,178,42,0,0,0.121537 -32904,1417:229,179,42,0,0,0.123537 -32905,1418:120,180,42,0,0,0.126367 -32906,7418:130,-180,43,0,0,0.126288 -32907,7417:239,-179,43,0,0,0.125508 -32908,7417:238,-178,43,0,0,0.124161 -32909,7417:237,-177,43,0,0,0.128584 -32910,7417:236,-176,43,0,0,0.131045 -32911,7417:235,-175,43,0,0,0.129011 -32912,7417:134,-174,43,0,0,0.123893 -32913,7417:133,-173,43,0,0,0.123781 -32914,7417:132,-172,43,0,0,0.118886 -32915,7417:131,-171,43,0,0,0.117568 -32916,7417:130,-170,43,0,0,0.123114 -32917,7416:239,-169,43,0,0,0.124911 -32918,7416:238,-168,43,0,0,0.126277 -32919,7416:237,-167,43,0,0,0.125575 -32920,7416:236,-166,43,0,0,0.124631 -32921,7416:235,-165,43,0,0,0.122406 -32922,7416:134,-164,43,0,0,0.122506 -32923,7416:133,-163,43,0,0,0.123481 -32924,7416:132,-162,43,0,0,0.1104 -32925,7416:130,-160,43,0,0,0.139171 -32926,7415:239,-159,43,0,0,0.148311 -32927,7415:238,-158,43,0,0,0.146041 -32928,7415:237,-157,43,0,0,0.145504 -32929,7415:236,-156,43,0,0,0.154434 -32930,7415:235,-155,43,0,0,0.148012 -32931,7415:134,-154,43,0,0,0.143219 -32932,7415:133,-153,43,0,0,0.141763 -32933,7415:132,-152,43,0,0,0.143409 -32934,7415:131,-151,43,0,0,0.144345 -32935,7415:130,-150,43,0,0,0.149299 -32936,7414:239,-149,43,0,0,0.150032 -32937,7414:238,-148,43,0,0,0.152871 -32938,7414:237,-147,43,0,0,0.157218 -32939,7414:236,-146,43,0,0,0.160236 -32940,7414:235,-145,43,0,0,0.163441 -32941,7414:134,-144,43,0,0,0.163441 -32942,7414:133,-143,43,0,0,0.165318 -32943,7414:132,-142,43,0,0,0.166713 -32944,7414:131,-141,43,0,0,0.167356 -32945,7414:130,-140,43,0,0,0.168836 -32946,7413:239,-139,43,0,0,0.171783 -32947,7413:238,-138,43,0,0,0.177019 -32948,7413:237,-137,43,0,0,0.18026 -32949,7413:236,-136,43,0,0,0.190657 -32950,7413:133,-133,43,0,0,0.175691 -32951,7408:130,-80,43,0,0,0.0830691 -32952,7407:239,-79,43,0,0,0.0910247 -32953,7407:238,-78,43,0,0,0.088606 -32954,7405:238,-58,43,0,0,0.0789844 -32955,7405:237,-57,43,0,0,0.0836028 -32956,7405:236,-56,43,0,0,0.0907786 -32957,7405:235,-55,43,0,0,0.118767 -32958,7405:134,-54,43,0,0,0.13938 -32959,7405:133,-53,43,0,0,0.131901 -32960,7405:132,-52,43,0,0,0.129323 -32961,7405:131,-51,43,0,0,0.128412 -32962,7405:130,-50,43,0,0,0.129381 -32963,7404:239,-49,43,0,0,0.129624 -32964,7404:238,-48,43,0,0,0.129531 -32965,7404:237,-47,43,0,0,0.130077 -32966,7404:236,-46,43,0,0,0.128942 -32967,7404:235,-45,43,0,0,0.128746 -32968,7404:134,-44,43,0,0,0.128964 -32969,7404:133,-43,43,0,0,0.13024 -32970,7404:132,-42,43,0,0,0.132125 -32971,7404:131,-41,43,0,0,0.132384 -32972,7404:130,-40,43,0,0,0.129798 -32973,7403:239,-39,43,0,0,0.130822 -32974,7403:238,-38,43,0,0,0.133818 -32975,7403:237,-37,43,0,0,0.135977 -32976,7403:236,-36,43,0,0,0.136424 -32977,7403:235,-35,43,0,0,0.138924 -32978,7403:134,-34,43,0,0,0.150596 -32979,7403:133,-33,43,0,0,0.163133 -32980,7403:132,-32,43,0,0,0.179215 -32981,7403:131,-31,43,0,0,0.179004 -32982,7403:130,-30,43,0,0,0.169804 -32983,7402:239,-29,43,0,0,0.16727 -32984,7402:238,-28,43,0,0,0.16546 -32985,7402:237,-27,43,0,0,0.168116 -32986,7402:236,-26,43,0,0,0.176123 -32987,7402:235,-25,43,0,0,0.179972 -32988,7402:134,-24,43,0,0,0.185993 -32989,7402:133,-23,43,0,0,0.194282 -32990,7402:132,-22,43,0,0,0.195831 -32991,7402:131,-21,43,0,0,0.236246 -32992,7402:130,-20,43,0,0,0.234729 -32993,7401:239,-19,43,0,0,0.231698 -32994,7401:238,-18,43,0,0,0.230949 -32995,7401:237,-17,43,0,0,0.225861 -32996,7401:236,-16,43,0,0,0.216691 -32997,7401:235,-15,43,0,0,0.218335 -32998,7401:134,-14,43,0,0,0.237806 -32999,7401:133,-13,43,0,0,0.238384 -33000,7401:132,-12,43,0,0,0.239187 -33001,7401:131,-11,43,0,0,0.23135 -33002,7401:130,-10,43,0,0,0.217302 -33003,7400:239,-9,43,0,0,0.217162 -33004,7400:134,-4,43,0,0,0.211077 -33005,7400:133,-3,43,0,0,0.211008 -33006,7400:132,-2,43,0,0,0.212724 -33007,7400:131,-1,43,0,0,0.210257 -33008,1400:131,0,43,0,0,0.207624 -33009,1400:131,1,43,0,0,0.205771 -33010,1400:132,2,43,0,0,0.205251 -33011,1400:133,3,43,0,0,0.213327 -33012,1400:134,4,43,0,0,0.200598 -33013,1400:239,9,43,0,0,0.166499 -33014,1401:130,10,43,0,0,0.187397 -33015,1401:131,11,43,0,0,0.181967 -33016,1401:132,12,43,0,0,0.198416 -33017,1401:133,13,43,0,0,0.174178 -33018,1414:131,141,43,0,0,0.0888552 -33019,1414:132,142,43,0,0,0.0926444 -33020,1414:133,143,43,0,0,0.0894308 -33021,1414:134,144,43,0,0,0.084576 -33022,1414:235,145,43,0,0,0.0848468 -33023,1414:236,146,43,0,0,0.0882829 -33024,1414:237,147,43,0,0,0.0928864 -33025,1414:238,148,43,0,0,0.0954452 -33026,1414:239,149,43,0,0,0.0972973 -33027,1415:130,150,43,0,0,0.0971171 -33028,1415:131,151,43,0,0,0.098934 -33029,1415:132,152,43,0,0,0.101791 -33030,1415:133,153,43,0,0,0.104039 -33031,1415:134,154,43,0,0,0.104125 -33032,1415:235,155,43,0,0,0.105805 -33033,1415:236,156,43,0,0,0.108896 -33034,1415:237,157,43,0,0,0.107203 -33035,1415:238,158,43,0,0,0.0952857 -33036,1416:235,165,43,0,0,0.107282 -33037,1416:236,166,43,0,0,0.111058 -33038,1416:237,167,43,0,0,0.111322 -33039,1416:238,168,43,0,0,0.116549 -33040,1416:239,169,43,0,0,0.118145 -33041,1417:130,170,43,0,0,0.118188 -33042,1417:131,171,43,0,0,0.117952 -33043,1417:132,172,43,0,0,0.11989 -33044,1417:133,173,43,0,0,0.119825 -33045,1417:134,174,43,0,0,0.119977 -33046,1417:235,175,43,0,0,0.12063 -33047,1417:236,176,43,0,0,0.121822 -33048,1417:237,177,43,0,0,0.123937 -33049,1417:238,178,43,0,0,0.124945 -33050,1417:239,179,43,0,0,0.125733 -33051,1418:130,180,43,0,0,0.126288 -33052,7418:140,-180,44,0,0,0.124485 -33053,7417:249,-179,44,0,0,0.125159 -33054,7417:248,-178,44,0,0,0.123259 -33055,7417:247,-177,44,0,0,0.122142 -33056,7417:246,-176,44,0,0,0.12307 -33057,7417:245,-175,44,0,0,0.119479 -33058,7417:144,-174,44,0,0,0.118209 -33059,7417:143,-173,44,0,0,0.115663 -33060,7417:142,-172,44,0,0,0.110957 -33061,7417:141,-171,44,0,0,0.113485 -33062,7417:140,-170,44,0,0,0.113495 -33063,7416:249,-169,44,0,0,0.11224 -33064,7416:248,-168,44,0,0,0.112722 -33065,7416:247,-167,44,0,0,0.11224 -33066,7416:246,-166,44,0,0,0.112743 -33067,7416:245,-165,44,0,0,0.11822 -33068,7416:144,-164,44,0,0,0.122738 -33069,7416:143,-163,44,0,0,0.124507 -33070,7416:142,-162,44,0,0,0.120412 -33071,7416:141,-161,44,0,0,0.100418 -33072,7415:248,-158,44,0,0,0.149979 -33073,7415:246,-156,44,0,0,0.142452 -33074,7415:245,-155,44,0,0,0.153591 -33075,7415:144,-154,44,0,0,0.155187 -33076,7415:143,-153,44,0,0,0.146297 -33077,7415:142,-152,44,0,0,0.147211 -33078,7415:141,-151,44,0,0,0.148492 -33079,7415:140,-150,44,0,0,0.149039 -33080,7414:249,-149,44,0,0,0.149849 -33081,7414:248,-148,44,0,0,0.149888 -33082,7414:247,-147,44,0,0,0.151849 -33083,7414:246,-146,44,0,0,0.157422 -33084,7414:245,-145,44,0,0,0.155861 -33085,7414:144,-144,44,0,0,0.155524 -33086,7414:143,-143,44,0,0,0.158941 -33087,7414:142,-142,44,0,0,0.162559 -33088,7414:141,-141,44,0,0,0.165163 -33089,7414:140,-140,44,0,0,0.170704 -33090,7413:249,-139,44,0,0,0.175305 -33091,7413:248,-138,44,0,0,0.175037 -33092,7413:247,-137,44,0,0,0.184319 -33093,7413:246,-136,44,0,0,0.18646 -33094,7413:245,-135,44,0,0,0.178883 -33095,7413:144,-134,44,0,0,0.175334 -33096,7413:143,-133,44,0,0,0.168937 -33097,7408:140,-80,44,0,0,0.0827333 -33098,7407:249,-79,44,0,0,0.0891717 -33099,7407:248,-78,44,0,0,0.0889469 -33100,7405:249,-59,44,0,0,0.0768076 -33101,7405:248,-58,44,0,0,0.0803935 -33102,7405:247,-57,44,0,0,0.0808581 -33103,7405:246,-56,44,0,0,0.108359 -33104,7405:245,-55,44,0,0,0.140791 -33105,7405:144,-54,44,0,0,0.137724 -33106,7405:143,-53,44,0,0,0.131326 -33107,7405:142,-52,44,0,0,0.127632 -33108,7405:141,-51,44,0,0,0.126095 -33109,7405:140,-50,44,0,0,0.126583 -33110,7404:249,-49,44,0,0,0.126243 -33111,7404:248,-48,44,0,0,0.127552 -33112,7404:247,-47,44,0,0,0.129694 -33113,7404:246,-46,44,0,0,0.131948 -33114,7404:245,-45,44,0,0,0.136848 -33115,7404:144,-44,44,0,0,0.144713 -33116,7404:143,-43,44,0,0,0.149469 -33117,7404:142,-42,44,0,0,0.14756 -33118,7404:141,-41,44,0,0,0.141214 -33119,7404:140,-40,44,0,0,0.137067 -33120,7403:249,-39,44,0,0,0.133129 -33121,7403:248,-38,44,0,0,0.131783 -33122,7403:247,-37,44,0,0,0.133866 -33123,7403:246,-36,44,0,0,0.137322 -33124,7403:245,-35,44,0,0,0.140195 -33125,7403:144,-34,44,0,0,0.145619 -33126,7403:143,-33,44,0,0,0.15136 -33127,7403:142,-32,44,0,0,0.176795 -33128,7403:141,-31,44,0,0,0.185248 -33129,7403:140,-30,44,0,0,0.184149 -33130,7402:249,-29,44,0,0,0.177139 -33131,7402:248,-28,44,0,0,0.17532 -33132,7402:247,-27,44,0,0,0.169225 -33133,7402:246,-26,44,0,0,0.167858 -33134,7402:245,-25,44,0,0,0.171812 -33135,7402:144,-24,44,0,0,0.17409 -33136,7402:143,-23,44,0,0,0.182994 -33137,7402:142,-22,44,0,0,0.184736 -33138,7402:141,-21,44,0,0,0.214018 -33139,7402:140,-20,44,0,0,0.232045 -33140,7401:249,-19,44,0,0,0.233605 -33141,7401:248,-18,44,0,0,0.228349 -33142,7401:247,-17,44,0,0,0.225214 -33143,7401:246,-16,44,0,0,0.220305 -33144,7401:245,-15,44,0,0,0.225071 -33145,7401:144,-14,44,0,0,0.232577 -33146,7401:143,-13,44,0,0,0.234526 -33147,7401:142,-12,44,0,0,0.23366 -33148,7401:141,-11,44,0,0,0.230311 -33149,7401:140,-10,44,0,0,0.219512 -33150,7400:248,-8,44,0,0,0.213465 -33151,7400:246,-6,44,0,0,0.207236 -33152,7400:245,-5,44,0,0,0.21118 -33153,7400:144,-4,44,0,0,0.210206 -33154,7400:143,-3,44,0,0,0.208759 -33155,7400:142,-2,44,0,0,0.204498 -33156,7400:141,-1,44,0,0,0.204615 -33157,1400:141,0,44,0,0,0.200796 -33158,1400:141,1,44,0,0,0.201225 -33159,1400:142,2,44,0,0,0.205486 -33160,1400:143,3,44,0,0,0.205436 -33161,1400:144,4,44,0,0,0.194926 -33162,1400:247,7,44,0,0,0.165404 -33163,1400:248,8,44,0,0,0.156701 -33164,1401:141,11,44,0,0,0.193608 -33165,1401:142,12,44,0,0,0.19778 -33166,1401:143,13,44,0,0,0.188825 -33167,1401:144,14,44,0,0,0.188762 -33168,1401:245,15,44,0,0,0.194797 -33169,1414:143,143,44,0,0,0.09169 -33170,1414:144,144,44,0,0,0.0911779 -33171,1414:245,145,44,0,0,0.0860191 -33172,1414:246,146,44,0,0,0.0868873 -33173,1414:247,147,44,0,0,0.0888968 -33174,1414:248,148,44,0,0,0.0928431 -33175,1414:249,149,44,0,0,0.094158 -33176,1415:140,150,44,0,0,0.09533 -33177,1415:141,151,44,0,0,0.0960324 -33178,1415:142,152,44,0,0,0.0974147 -33179,1415:143,153,44,0,0,0.100409 -33180,1415:144,154,44,0,0,0.101051 -33181,1415:245,155,44,0,0,0.100679 -33182,1415:246,156,44,0,0,0.0989155 -33183,1415:247,157,44,0,0,0.0963718 -33184,1415:248,158,44,0,0,0.0947908 -33185,1415:249,159,44,0,0,0.0926096 -33186,1416:140,160,44,0,0,0.090516 -33187,1416:141,161,44,0,0,0.0869851 -33188,1416:245,165,44,0,0,0.0813097 -33189,1416:246,166,44,0,0,0.103742 -33190,1416:247,167,44,0,0,0.108359 -33191,1416:248,168,44,0,0,0.107646 -33192,1416:249,169,44,0,0,0.112671 -33193,1417:140,170,44,0,0,0.115055 -33194,1417:141,171,44,0,0,0.110734 -33195,1417:142,172,44,0,0,0.111505 -33196,1417:143,173,44,0,0,0.117153 -33197,1417:144,174,44,0,0,0.117068 -33198,1417:245,175,44,0,0,0.117675 -33199,1417:246,176,44,0,0,0.114211 -33200,1417:247,177,44,0,0,0.119522 -33201,1417:248,178,44,0,0,0.119782 -33202,1417:249,179,44,0,0,0.119306 -33203,1418:140,180,44,0,0,0.124485 -33204,7418:350,-180,45,0,0,0.121044 -33205,7417:459,-179,45,0,0,0.116686 -33206,7417:458,-178,45,0,0,0.114075 -33207,7417:457,-177,45,0,0,0.107262 -33208,7417:456,-176,45,0,0,0.108508 -33209,7417:455,-175,45,0,0,0.107834 -33210,7417:354,-174,45,0,0,0.106653 -33211,7417:353,-173,45,0,0,0.106253 -33212,7417:352,-172,45,0,0,0.104904 -33213,7417:351,-171,45,0,0,0.103351 -33214,7417:350,-170,45,0,0,0.101622 -33215,7416:459,-169,45,0,0,0.0975957 -33216,7416:458,-168,45,0,0,0.0962108 -33217,7416:457,-167,45,0,0,0.0945267 -33218,7416:456,-166,45,0,0,0.0960144 -33219,7416:455,-165,45,0,0,0.0877963 -33220,7416:353,-163,45,0,0,0.085407 -33221,7416:352,-162,45,0,0,0.0841316 -33222,7416:351,-161,45,0,0,0.0887887 -33223,7415:457,-157,45,0,0,0.152937 -33224,7415:455,-155,45,0,0,0.14581 -33225,7415:354,-154,45,0,0,0.155429 -33226,7415:353,-153,45,0,0,0.159684 -33227,7415:352,-152,45,0,0,0.150741 -33228,7415:351,-151,45,0,0,0.152512 -33229,7415:350,-150,45,0,0,0.151928 -33230,7414:459,-149,45,0,0,0.151466 -33231,7414:458,-148,45,0,0,0.152101 -33232,7414:457,-147,45,0,0,0.153524 -33233,7414:456,-146,45,0,0,0.153724 -33234,7414:455,-145,45,0,0,0.156389 -33235,7414:354,-144,45,0,0,0.160319 -33236,7414:353,-143,45,0,0,0.167442 -33237,7414:352,-142,45,0,0,0.167987 -33238,7414:351,-141,45,0,0,0.165815 -33239,7414:350,-140,45,0,0,0.166998 -33240,7413:459,-139,45,0,0,0.169877 -33241,7413:458,-138,45,0,0,0.174415 -33242,7413:457,-137,45,0,0,0.183133 -33243,7413:354,-134,45,0,0,0.164385 -33244,7408:350,-80,45,0,0,0.082414 -33245,7407:459,-79,45,0,0,0.0902541 -33246,7407:458,-78,45,0,0,0.0910247 -33247,7407:457,-77,45,0,0,0.0928431 -33248,7407:456,-76,45,0,0,0.0917843 -33249,7407:455,-75,45,0,0,0.0914936 -33250,7405:458,-58,45,0,0,0.0811487 -33251,7405:457,-57,45,0,0,0.0861239 -33252,7405:456,-56,45,0,0,0.138042 -33253,7405:455,-55,45,0,0,0.144104 -33254,7405:354,-54,45,0,0,0.133035 -33255,7405:353,-53,45,0,0,0.128297 -33256,7405:352,-52,45,0,0,0.124878 -33257,7405:351,-51,45,0,0,0.125598 -33258,7405:350,-50,45,0,0,0.127323 -33259,7404:459,-49,45,0,0,0.129949 -33260,7404:458,-48,45,0,0,0.13101 -33261,7404:457,-47,45,0,0,0.134631 -33262,7404:456,-46,45,0,0,0.139836 -33263,7404:455,-45,45,0,0,0.145555 -33264,7404:354,-44,45,0,0,0.161081 -33265,7404:353,-43,45,0,0,0.157927 -33266,7404:352,-42,45,0,0,0.152206 -33267,7404:351,-41,45,0,0,0.159477 -33268,7404:350,-40,45,0,0,0.156634 -33269,7403:459,-39,45,0,0,0.138458 -33270,7403:458,-38,45,0,0,0.136315 -33271,7403:457,-37,45,0,0,0.136775 -33272,7403:456,-36,45,0,0,0.13646 -33273,7403:455,-35,45,0,0,0.138348 -33274,7403:354,-34,45,0,0,0.141813 -33275,7403:353,-33,45,0,0,0.154206 -33276,7403:352,-32,45,0,0,0.164554 -33277,7403:351,-31,45,0,0,0.18096 -33278,7403:350,-30,45,0,0,0.191022 -33279,7402:459,-29,45,0,0,0.193591 -33280,7402:458,-28,45,0,0,0.183194 -33281,7402:457,-27,45,0,0,0.176332 -33282,7402:456,-26,45,0,0,0.173456 -33283,7402:455,-25,45,0,0,0.172163 -33284,7402:354,-24,45,0,0,0.169601 -33285,7402:353,-23,45,0,0,0.179654 -33286,7402:352,-22,45,0,0,0.186616 -33287,7402:351,-21,45,0,0,0.18131 -33288,7402:350,-20,45,0,0,0.192455 -33289,7401:459,-19,45,0,0,0.207658 -33290,7401:458,-18,45,0,0,0.21118 -33291,7401:457,-17,45,0,0,0.221348 -33292,7401:456,-16,45,0,0,0.227843 -33293,7401:455,-15,45,0,0,0.217634 -33294,7401:354,-14,45,0,0,0.215247 -33295,7401:353,-13,45,0,0,0.226382 -33296,7401:352,-12,45,0,0,0.229201 -33297,7401:351,-11,45,0,0,0.228911 -33298,7401:350,-10,45,0,0,0.228929 -33299,7400:459,-9,45,0,0,0.220605 -33300,7400:458,-8,45,0,0,0.21844 -33301,7400:457,-7,45,0,0,0.219459 -33302,7400:456,-6,45,0,0,0.203814 -33303,7400:455,-5,45,0,0,0.208166 -33304,7400:354,-4,45,0,0,0.203198 -33305,7400:353,-3,45,0,0,0.199891 -33306,7400:352,-2,45,0,0,0.201688 -33307,7400:351,-1,45,0,0,0.200895 -33308,1400:351,0,45,0,0,0.200945 -33309,1400:351,1,45,0,0,0.198907 -33310,1400:352,2,45,0,0,0.201936 -33311,1400:353,3,45,0,0,0.196236 -33312,1400:354,4,45,0,0,0.19228 -33313,1400:455,5,45,0,0,0.193977 -33314,1400:457,7,45,0,0,0.162894 -33315,1401:353,13,45,0,0,0.168289 -33316,1401:354,14,45,0,0,0.180139 -33317,1401:455,15,45,0,0,0.187131 -33318,1401:456,16,45,0,0,0.189298 -33319,1414:455,145,45,0,0,0.0912546 -33320,1414:456,146,45,0,0,0.0966854 -33321,1414:457,147,45,0,0,0.093103 -33322,1414:458,148,45,0,0,0.0898502 -33323,1414:459,149,45,0,0,0.0920072 -33324,1415:350,150,45,0,0,0.0960504 -33325,1415:351,151,45,0,0,0.0993285 -33326,1415:352,152,45,0,0,0.100995 -33327,1415:353,153,45,0,0,0.101126 -33328,1415:354,154,45,0,0,0.088093 -33329,1415:458,158,45,0,0,0.0804543 -33330,1415:459,159,45,0,0,0.0877797 -33331,1416:350,160,45,0,0,0.0864398 -33332,1416:351,161,45,0,0,0.086936 -33333,1416:352,162,45,0,0,0.0866999 -33334,1416:455,165,45,0,0,0.0757937 -33335,1416:456,166,45,0,0,0.0828268 -33336,1416:457,167,45,0,0,0.0983402 -33337,1416:458,168,45,0,0,0.0961484 -33338,1416:459,169,45,0,0,0.102016 -33339,1417:350,170,45,0,0,0.0999645 -33340,1417:351,171,45,0,0,0.091596 -33341,1417:352,172,45,0,0,0.104586 -33342,1417:353,173,45,0,0,0.111576 -33343,1417:354,174,45,0,0,0.11365 -33344,1417:455,175,45,0,0,0.112066 -33345,1417:456,176,45,0,0,0.112322 -33346,1417:457,177,45,0,0,0.11419 -33347,1417:458,178,45,0,0,0.116697 -33348,1417:459,179,45,0,0,0.120205 -33349,1418:350,180,45,0,0,0.121044 -33350,7418:360,-180,46,0,0,0.114804 -33351,7417:469,-179,46,0,0,0.113031 -33352,7417:468,-178,46,0,0,0.105184 -33353,7417:467,-177,46,0,0,0.0985041 -33354,7417:466,-176,46,0,0,0.0993375 -33355,7417:465,-175,46,0,0,0.0993375 -33356,7417:364,-174,46,0,0,0.100011 -33357,7417:363,-173,46,0,0,0.100103 -33358,7417:362,-172,46,0,0,0.0952327 -33359,7417:361,-171,46,0,0,0.0875743 -33360,7417:360,-170,46,0,0,0.0805455 -33361,7416:467,-167,46,0,0,0.0791865 -33362,7416:466,-166,46,0,0,0.0802342 -33363,7416:465,-165,46,0,0,0.0799994 -33364,7415:466,-156,46,0,0,0.152034 -33365,7415:465,-155,46,0,0,0.15749 -33366,7415:364,-154,46,0,0,0.158886 -33367,7415:363,-153,46,0,0,0.163709 -33368,7415:362,-152,46,0,0,0.163161 -33369,7415:361,-151,46,0,0,0.160929 -33370,7415:360,-150,46,0,0,0.159863 -33371,7414:469,-149,46,0,0,0.158666 -33372,7414:468,-148,46,0,0,0.155848 -33373,7414:467,-147,46,0,0,0.154447 -33374,7414:466,-146,46,0,0,0.153845 -33375,7414:465,-145,46,0,0,0.157777 -33376,7414:364,-144,46,0,0,0.16399 -33377,7414:363,-143,46,0,0,0.166413 -33378,7414:362,-142,46,0,0,0.170123 -33379,7414:361,-141,46,0,0,0.168822 -33380,7414:360,-140,46,0,0,0.16937 -33381,7413:469,-139,46,0,0,0.175795 -33382,7413:468,-138,46,0,0,0.173706 -33383,7413:467,-137,46,0,0,0.16803 -33384,7408:363,-83,46,0,0,0.0814865 -33385,7408:362,-82,46,0,0,0.0854712 -33386,7408:361,-81,46,0,0,0.087083 -33387,7408:360,-80,46,0,0,0.0892387 -33388,7407:469,-79,46,0,0,0.0902963 -33389,7407:468,-78,46,0,0,0.0899677 -33390,7407:467,-77,46,0,0,0.0906092 -33391,7407:465,-75,46,0,0,0.0831865 -33392,7407:364,-74,46,0,0,0.0911525 -33393,7405:469,-59,46,0,0,0.0785371 -33394,7405:468,-58,46,0,0,0.0799012 -33395,7405:467,-57,46,0,0,0.0826008 -33396,7405:466,-56,46,0,0,0.144599 -33397,7405:465,-55,46,0,0,0.142904 -33398,7405:364,-54,46,0,0,0.129914 -33399,7405:363,-53,46,0,0,0.127483 -33400,7405:362,-52,46,0,0,0.125001 -33401,7405:361,-51,46,0,0,0.126549 -33402,7405:360,-50,46,0,0,0.126333 -33403,7404:469,-49,46,0,0,0.12697 -33404,7404:468,-48,46,0,0,0.13196 -33405,7404:467,-47,46,0,0,0.145798 -33406,7404:466,-46,46,0,0,0.155173 -33407,7404:465,-45,46,0,0,0.155335 -33408,7404:364,-44,46,0,0,0.141888 -33409,7404:361,-41,46,0,0,0.13714 -33410,7404:360,-40,46,0,0,0.161373 -33411,7403:469,-39,46,0,0,0.154085 -33412,7403:468,-38,46,0,0,0.137261 -33413,7403:467,-37,46,0,0,0.134679 -33414,7403:466,-36,46,0,0,0.134666 -33415,7403:465,-35,46,0,0,0.136182 -33416,7403:364,-34,46,0,0,0.138593 -33417,7403:363,-33,46,0,0,0.145478 -33418,7403:362,-32,46,0,0,0.156471 -33419,7403:361,-31,46,0,0,0.164809 -33420,7403:360,-30,46,0,0,0.184381 -33421,7402:469,-29,46,0,0,0.197356 -33422,7402:468,-28,46,0,0,0.202931 -33423,7402:467,-27,46,0,0,0.198743 -33424,7402:466,-26,46,0,0,0.190974 -33425,7402:465,-25,46,0,0,0.191372 -33426,7402:364,-24,46,0,0,0.18531 -33427,7402:363,-23,46,0,0,0.183579 -33428,7402:362,-22,46,0,0,0.188967 -33429,7402:361,-21,46,0,0,0.200269 -33430,7402:360,-20,46,0,0,0.200318 -33431,7401:469,-19,46,0,0,0.203864 -33432,7401:468,-18,46,0,0,0.209609 -33433,7401:467,-17,46,0,0,0.207489 -33434,7401:466,-16,46,0,0,0.225986 -33435,7401:465,-15,46,0,0,0.217249 -33436,7401:364,-14,46,0,0,0.215734 -33437,7401:363,-13,46,0,0,0.214606 -33438,7401:362,-12,46,0,0,0.220499 -33439,7401:361,-11,46,0,0,0.219283 -33440,7401:360,-10,46,0,0,0.215907 -33441,7400:469,-9,46,0,0,0.216047 -33442,7400:468,-8,46,0,0,0.222039 -33443,7400:467,-7,46,0,0,0.219829 -33444,7400:466,-6,46,0,0,0.217267 -33445,7400:465,-5,46,0,0,0.207236 -33446,7400:364,-4,46,0,0,0.20149 -33447,7400:363,-3,46,0,0,0.200697 -33448,7400:362,-2,46,0,0,0.201176 -33449,7400:361,-1,46,0,0,0.19894 -33450,1400:361,0,46,0,0,0.202218 -33451,1400:361,1,46,0,0,0.201341 -33452,1400:465,5,46,0,0,0.182181 -33453,1400:466,6,46,0,0,0.179912 -33454,1401:362,12,46,0,0,0.16186 -33455,1401:363,13,46,0,0,0.171213 -33456,1401:364,14,46,0,0,0.174134 -33457,1401:465,15,46,0,0,0.179624 -33458,1401:466,16,46,0,0,0.160776 -33459,1414:467,147,46,0,0,0.0820961 -33460,1414:468,148,46,0,0,0.0829908 -33461,1415:468,158,46,0,0,0.0797805 -33462,1415:469,159,46,0,0,0.0840999 -33463,1416:360,160,46,0,0,0.0838865 -33464,1416:361,161,46,0,0,0.0805761 -33465,1416:362,162,46,0,0,0.0789023 -33466,1416:363,163,46,0,0,0.0787978 -33467,1416:364,164,46,0,0,0.0794567 -33468,1417:363,173,46,0,0,0.0928172 -33469,1417:364,174,46,0,0,0.102952 -33470,1417:465,175,46,0,0,0.105999 -33471,1417:466,176,46,0,0,0.107498 -33472,1417:467,177,46,0,0,0.11035 -33473,1417:468,178,46,0,0,0.115254 -33474,1417:469,179,46,0,0,0.113878 -33475,1418:360,180,46,0,0,0.114804 -33476,7418:370,-180,47,0,0,0.108061 -33477,7417:479,-179,47,0,0,0.106663 -33478,7417:478,-178,47,0,0,0.0988331 -33479,7417:477,-177,47,0,0,0.0942458 -33480,7417:476,-176,47,0,0,0.0913826 -33481,7417:475,-175,47,0,0,0.0901866 -33482,7417:374,-174,47,0,0,0.0901699 -33483,7417:373,-173,47,0,0,0.0889385 -33484,7417:372,-172,47,0,0,0.0863265 -33485,7417:371,-171,47,0,0,0.0802948 -33486,7417:370,-170,47,0,0,0.0788053 -33487,7416:479,-169,47,0,0,0.0789099 -33488,7416:478,-168,47,0,0,0.0790444 -33489,7415:477,-157,47,0,0,0.113609 -33490,7415:476,-156,47,0,0,0.136497 -33491,7415:374,-154,47,0,0,0.165389 -33492,7415:373,-153,47,0,0,0.164004 -33493,7415:372,-152,47,0,0,0.165801 -33494,7415:371,-151,47,0,0,0.158927 -33495,7415:370,-150,47,0,0,0.153858 -33496,7414:479,-149,47,0,0,0.152167 -33497,7414:478,-148,47,0,0,0.154233 -33498,7414:477,-147,47,0,0,0.15597 -33499,7414:476,-146,47,0,0,0.153898 -33500,7414:475,-145,47,0,0,0.153404 -33501,7414:374,-144,47,0,0,0.159877 -33502,7414:373,-143,47,0,0,0.165234 -33503,7414:372,-142,47,0,0,0.172941 -33504,7414:371,-141,47,0,0,0.174075 -33505,7414:370,-140,47,0,0,0.175439 -33506,7408:374,-84,47,0,0,0.0809726 -33507,7408:373,-83,47,0,0,0.0867324 -33508,7408:372,-82,47,0,0,0.0883905 -33509,7408:371,-81,47,0,0,0.0888136 -33510,7408:370,-80,47,0,0,0.0893639 -33511,7407:479,-79,47,0,0,0.0896906 -33512,7407:478,-78,47,0,0,0.0896655 -33513,7407:477,-77,47,0,0,0.088374 -33514,7407:476,-76,47,0,0,0.0890885 -33515,7407:475,-75,47,0,0,0.0803708 -33516,7407:374,-74,47,0,0,0.0924975 -33517,7406:374,-64,47,0,0,0.0784108 -33518,7406:373,-63,47,0,0,0.0800901 -33519,7405:479,-59,47,0,0,0.078865 -33520,7405:478,-58,47,0,0,0.0797805 -33521,7405:477,-57,47,0,0,0.0813559 -33522,7405:476,-56,47,0,0,0.14703 -33523,7405:475,-55,47,0,0,0.14558 -33524,7405:374,-54,47,0,0,0.134033 -33525,7405:373,-53,47,0,0,0.131913 -33526,7405:372,-52,47,0,0,0.129022 -33527,7405:371,-51,47,0,0,0.125372 -33528,7405:370,-50,47,0,0,0.137042 -33529,7404:479,-49,47,0,0,0.13576 -33530,7404:478,-48,47,0,0,0.149247 -33531,7404:477,-47,47,0,0,0.154622 -33532,7404:476,-46,47,0,0,0.1416 -33533,7404:374,-44,47,0,0,0.0957472 -33534,7404:370,-40,47,0,0,0.139799 -33535,7403:479,-39,47,0,0,0.16937 -33536,7403:478,-38,47,0,0,0.15831 -33537,7403:477,-37,47,0,0,0.142678 -33538,7403:476,-36,47,0,0,0.135302 -33539,7403:475,-35,47,0,0,0.135519 -33540,7403:374,-34,47,0,0,0.13714 -33541,7403:373,-33,47,0,0,0.139293 -33542,7403:372,-32,47,0,0,0.145146 -33543,7403:371,-31,47,0,0,0.152087 -33544,7403:370,-30,47,0,0,0.171622 -33545,7402:479,-29,47,0,0,0.186118 -33546,7402:478,-28,47,0,0,0.198318 -33547,7402:477,-27,47,0,0,0.204816 -33548,7402:476,-26,47,0,0,0.204799 -33549,7402:475,-25,47,0,0,0.197405 -33550,7402:374,-24,47,0,0,0.192983 -33551,7402:373,-23,47,0,0,0.191594 -33552,7402:372,-22,47,0,0,0.191308 -33553,7402:371,-21,47,0,0,0.192791 -33554,7402:370,-20,47,0,0,0.194137 -33555,7401:479,-19,47,0,0,0.197812 -33556,7401:478,-18,47,0,0,0.200022 -33557,7401:477,-17,47,0,0,0.212036 -33558,7401:476,-16,47,0,0,0.223053 -33559,7401:475,-15,47,0,0,0.22259 -33560,7401:374,-14,47,0,0,0.219441 -33561,7401:373,-13,47,0,0,0.21851 -33562,7401:372,-12,47,0,0,0.208505 -33563,7401:371,-11,47,0,0,0.213051 -33564,7401:370,-10,47,0,0,0.185869 -33565,7400:479,-9,47,0,0,0.183933 -33566,7400:478,-8,47,0,0,0.190356 -33567,7400:477,-7,47,0,0,0.21024 -33568,7400:476,-6,47,0,0,0.215247 -33569,7400:374,-4,47,0,0,0.206007 -33570,7400:373,-3,47,0,0,0.202218 -33571,7400:372,-2,47,0,0,0.201209 -33572,7400:371,-1,47,0,0,0.196463 -33573,1400:371,0,47,0,0,0.200269 -33574,1401:372,12,47,0,0,0.173957 -33575,1401:374,14,47,0,0,0.173633 -33576,1401:475,15,47,0,0,0.18157 -33577,1416:370,160,47,0,0,0.0806445 -33578,1416:371,161,47,0,0,0.0818331 -33579,1416:372,162,47,0,0,0.0793439 -33580,1416:475,165,47,0,0,0.0797954 -33581,1417:475,175,47,0,0,0.0862696 -33582,1417:476,176,47,0,0,0.102243 -33583,1417:477,177,47,0,0,0.106126 -33584,1417:478,178,47,0,0,0.105087 -33585,1417:479,179,47,0,0,0.10318 -33586,1418:370,180,47,0,0,0.108061 -33587,7418:380,-180,48,0,0,0.0986503 -33588,7417:489,-179,48,0,0,0.0966228 -33589,7417:488,-178,48,0,0,0.0926616 -33590,7417:487,-177,48,0,0,0.090821 -33591,7417:486,-176,48,0,0,0.0882251 -33592,7417:485,-175,48,0,0,0.0844726 -33593,7417:384,-174,48,0,0,0.0806066 -33594,7417:383,-173,48,0,0,0.0792316 -33595,7417:382,-172,48,0,0,0.0786041 -33596,7417:381,-171,48,0,0,0.0780405 -33597,7417:380,-170,48,0,0,0.078344 -33598,7416:489,-169,48,0,0,0.079224 -33599,7415:486,-156,48,0,0,0.109315 -33600,7415:383,-153,48,0,0,0.167256 -33601,7415:382,-152,48,0,0,0.169399 -33602,7415:381,-151,48,0,0,0.17021 -33603,7415:380,-150,48,0,0,0.166399 -33604,7414:489,-149,48,0,0,0.156715 -33605,7414:488,-148,48,0,0,0.152871 -33606,7414:487,-147,48,0,0,0.152074 -33607,7414:486,-146,48,0,0,0.153711 -33608,7414:485,-145,48,0,0,0.15745 -33609,7414:384,-144,48,0,0,0.164357 -33610,7414:383,-143,48,0,0,0.174934 -33611,7414:382,-142,48,0,0,0.175409 -33612,7414:381,-141,48,0,0,0.174963 -33613,7413:487,-137,48,0,0,0.159106 -33614,7408:485,-85,48,0,0,0.0805455 -33615,7408:384,-84,48,0,0,0.0862212 -33616,7408:383,-83,48,0,0,0.0872546 -33617,7408:382,-82,48,0,0,0.0879446 -33618,7408:381,-81,48,0,0,0.0878126 -33619,7408:380,-80,48,0,0,0.0884319 -33620,7407:489,-79,48,0,0,0.0891885 -33621,7407:488,-78,48,0,0,0.0890384 -33622,7407:487,-77,48,0,0,0.0907193 -33623,7407:486,-76,48,0,0,0.0816944 -33624,7407:485,-75,48,0,0,0.0799164 -33625,7407:384,-74,48,0,0,0.0930424 -33626,7406:485,-65,48,0,0,0.0781588 -33627,7406:384,-64,48,0,0,0.0786936 -33628,7406:383,-63,48,0,0,0.0788053 -33629,7406:382,-62,48,0,0,0.0792464 -33630,7406:380,-60,48,0,0,0.077797 -33631,7405:489,-59,48,0,0,0.0791717 -33632,7405:488,-58,48,0,0,0.079149 -33633,7405:487,-57,48,0,0,0.0942809 -33634,7405:486,-56,48,0,0,0.149561 -33635,7405:485,-55,48,0,0,0.150163 -33636,7405:384,-54,48,0,0,0.144663 -33637,7405:383,-53,48,0,0,0.134164 -33638,7405:382,-52,48,0,0,0.140233 -33639,7405:381,-51,48,0,0,0.139985 -33640,7405:380,-50,48,0,0,0.141863 -33641,7404:489,-49,48,0,0,0.148376 -33642,7404:488,-48,48,0,0,0.153764 -33643,7404:487,-47,48,0,0,0.142904 -33644,7404:380,-40,48,0,0,0.116253 -33645,7403:489,-39,48,0,0,0.148648 -33646,7403:488,-38,48,0,0,0.169847 -33647,7403:487,-37,48,0,0,0.168145 -33648,7403:486,-36,48,0,0,0.159009 -33649,7403:485,-35,48,0,0,0.144472 -33650,7403:384,-34,48,0,0,0.142791 -33651,7403:383,-33,48,0,0,0.149078 -33652,7403:382,-32,48,0,0,0.142214 -33653,7403:381,-31,48,0,0,0.144269 -33654,7403:380,-30,48,0,0,0.155187 -33655,7402:489,-29,48,0,0,0.17529 -33656,7402:488,-28,48,0,0,0.190974 -33657,7402:487,-27,48,0,0,0.199398 -33658,7402:486,-26,48,0,0,0.20557 -33659,7402:485,-25,48,0,0,0.206141 -33660,7402:384,-24,48,0,0,0.20842 -33661,7402:383,-23,48,0,0,0.208946 -33662,7402:382,-22,48,0,0,0.209507 -33663,7402:381,-21,48,0,0,0.207912 -33664,7402:380,-20,48,0,0,0.208861 -33665,7401:489,-19,48,0,0,0.205654 -33666,7401:488,-18,48,0,0,0.204515 -33667,7401:487,-17,48,0,0,0.217337 -33668,7401:486,-16,48,0,0,0.220252 -33669,7401:485,-15,48,0,0,0.216656 -33670,7401:384,-14,48,0,0,0.215108 -33671,7401:383,-13,48,0,0,0.208319 -33672,7401:382,-12,48,0,0,0.200022 -33673,7401:381,-11,48,0,0,0.18746 -33674,7401:380,-10,48,0,0,0.183563 -33675,7400:489,-9,48,0,0,0.180777 -33676,7400:488,-8,48,0,0,0.17672 -33677,7400:487,-7,48,0,0,0.19491 -33678,7400:486,-6,48,0,0,0.204983 -33679,7400:485,-5,48,0,0,0.214208 -33680,7400:384,-4,48,0,0,0.211231 -33681,7400:383,-3,48,0,0,0.206713 -33682,7400:382,-2,48,0,0,0.208369 -33683,7400:381,-1,48,0,0,0.196446 -33684,1401:382,12,48,0,0,0.165134 -33685,1401:383,13,48,0,0,0.174445 -33686,1401:384,14,48,0,0,0.176392 -33687,1401:485,15,48,0,0,0.181387 -33688,1401:486,16,48,0,0,0.152658 -33689,1401:487,17,48,0,0,0.155268 -33690,1401:488,18,48,0,0,0.170428 -33691,1416:486,166,48,0,0,0.082554 -33692,1417:489,179,48,0,0,0.0883657 -33693,1418:380,180,48,0,0,0.0986503 -33694,7418:390,-180,49,0,0,0.0920502 -33695,7417:499,-179,49,0,0,0.0918186 -33696,7417:498,-178,49,0,0,0.0899258 -33697,7417:497,-177,49,0,0,0.0869116 -33698,7417:496,-176,49,0,0,0.0847672 -33699,7417:495,-175,49,0,0,0.0810875 -33700,7417:394,-174,49,0,0,0.0785074 -33701,7417:393,-173,49,0,0,0.0762196 -33702,7417:392,-172,49,0,0,0.0764659 -33703,7417:391,-171,49,0,0,0.0768367 -33704,7417:390,-170,49,0,0,0.0777158 -33705,7416:499,-169,49,0,0,0.0787978 -33706,7415:496,-156,49,0,0,0.0896821 -33707,7415:392,-152,49,0,0,0.153724 -33708,7415:391,-151,49,0,0,0.166969 -33709,7415:390,-150,49,0,0,0.170689 -33710,7414:499,-149,49,0,0,0.170907 -33711,7414:498,-148,49,0,0,0.170937 -33712,7414:497,-147,49,0,0,0.168922 -33713,7414:496,-146,49,0,0,0.171082 -33714,7414:495,-145,49,0,0,0.173235 -33715,7414:394,-144,49,0,0,0.174845 -33716,7414:393,-143,49,0,0,0.1748 -33717,7408:496,-86,49,0,0,0.0801054 -33718,7408:495,-85,49,0,0,0.0849906 -33719,7408:394,-84,49,0,0,0.0869686 -33720,7408:393,-83,49,0,0,0.0868221 -33721,7408:392,-82,49,0,0,0.0877057 -33722,7408:391,-81,49,0,0,0.0875498 -33723,7408:390,-80,49,0,0,0.0888219 -33724,7407:499,-79,49,0,0,0.08903 -33725,7407:498,-78,49,0,0,0.0885728 -33726,7407:497,-77,49,0,0,0.0895312 -33727,7407:496,-76,49,0,0,0.0898668 -33728,7407:495,-75,49,0,0,0.0892803 -33729,7406:495,-65,49,0,0,0.0773559 -33730,7406:394,-64,49,0,0,0.0793215 -33731,7406:393,-63,49,0,0,0.0802798 -33732,7406:392,-62,49,0,0,0.081034 -33733,7406:391,-61,49,0,0,0.0811104 -33734,7406:390,-60,49,0,0,0.0799088 -33735,7405:499,-59,49,0,0,0.0794342 -33736,7405:498,-58,49,0,0,0.0808048 -33737,7405:497,-57,49,0,0,0.109515 -33738,7405:496,-56,49,0,0,0.148 -33739,7405:495,-55,49,0,0,0.150701 -33740,7405:394,-54,49,0,0,0.150242 -33741,7405:393,-53,49,0,0,0.149993 -33742,7405:392,-52,49,0,0,0.150662 -33743,7405:391,-51,49,0,0,0.150071 -33744,7405:390,-50,49,0,0,0.151294 -33745,7404:499,-49,49,0,0,0.153257 -33746,7404:498,-48,49,0,0,0.153404 -33747,7404:497,-47,49,0,0,0.142553 -33748,7403:499,-39,49,0,0,0.112599 -33749,7403:498,-38,49,0,0,0.172002 -33750,7403:497,-37,49,0,0,0.17275 -33751,7403:496,-36,49,0,0,0.173367 -33752,7403:495,-35,49,0,0,0.172823 -33753,7403:394,-34,49,0,0,0.171608 -33754,7403:393,-33,49,0,0,0.170864 -33755,7403:392,-32,49,0,0,0.159574 -33756,7403:391,-31,49,0,0,0.155308 -33757,7403:390,-30,49,0,0,0.160485 -33758,7402:499,-29,49,0,0,0.182396 -33759,7402:498,-28,49,0,0,0.190832 -33760,7402:497,-27,49,0,0,0.203531 -33761,7402:496,-26,49,0,0,0.1984 -33762,7402:495,-25,49,0,0,0.194926 -33763,7402:394,-24,49,0,0,0.194411 -33764,7402:393,-23,49,0,0,0.195895 -33765,7402:392,-22,49,0,0,0.186678 -33766,7402:390,-20,49,0,0,0.188967 -33767,7401:499,-19,49,0,0,0.199924 -33768,7401:498,-18,49,0,0,0.211419 -33769,7401:497,-17,49,0,0,0.216447 -33770,7401:496,-16,49,0,0,0.213655 -33771,7401:495,-15,49,0,0,0.172985 -33772,7401:394,-14,49,0,0,0.176302 -33773,7401:393,-13,49,0,0,0.178989 -33774,7401:392,-12,49,0,0,0.186367 -33775,7401:391,-11,49,0,0,0.187522 -33776,7401:390,-10,49,0,0,0.178265 -33777,7400:499,-9,49,0,0,0.171797 -33778,7400:498,-8,49,0,0,0.167786 -33779,7400:497,-7,49,0,0,0.174519 -33780,7400:496,-6,49,0,0,0.196446 -33781,7400:495,-5,49,0,0,0.205285 -33782,7400:394,-4,49,0,0,0.20881 -33783,7400:393,-3,49,0,0,0.203447 -33784,7400:392,-2,49,0,0,0.198874 -33785,7400:391,-1,49,0,0,0.200055 -33786,1401:392,12,49,0,0,0.131983 -33787,1401:393,13,49,0,0,0.168663 -33788,1401:394,14,49,0,0,0.179064 -33789,1401:495,15,49,0,0,0.177484 -33790,1401:497,17,49,0,0,0.147818 -33791,1401:498,18,49,0,0,0.142126 -33792,1417:498,178,49,0,0,0.0767056 -33793,1417:499,179,49,0,0,0.0812638 -33794,1418:390,180,49,0,0,0.0920502 -33795,7518:100,-180,50,0,0,0.0828971 -33796,7517:209,-179,50,0,0,0.086651 -33797,7517:208,-178,50,0,0,0.0873283 -33798,7517:207,-177,50,0,0,0.0865617 -33799,7517:206,-176,50,0,0,0.0834298 -33800,7517:205,-175,50,0,0,0.0815327 -33801,7517:104,-174,50,0,0,0.0764732 -33802,7517:103,-173,50,0,0,0.076386 -33803,7517:102,-172,50,0,0,0.0760967 -33804,7517:101,-171,50,0,0,0.0763208 -33805,7517:100,-170,50,0,0,0.0766839 -33806,7516:209,-169,50,0,0,0.07751 -33807,7516:207,-167,50,0,0,0.0798408 -33808,7515:102,-152,50,0,0,0.139293 -33809,7508:207,-87,50,0,0,0.0820883 -33810,7508:206,-86,50,0,0,0.0854151 -33811,7508:205,-85,50,0,0,0.086132 -33812,7508:104,-84,50,0,0,0.0860837 -33813,7508:103,-83,50,0,0,0.0860514 -33814,7508:102,-82,50,0,0,0.0869686 -33815,7508:101,-81,50,0,0,0.0871648 -33816,7508:100,-80,50,0,0,0.0882582 -33817,7507:209,-79,50,0,0,0.0889802 -33818,7507:208,-78,50,0,0,0.089105 -33819,7507:207,-77,50,0,0,0.0890384 -33820,7507:206,-76,50,0,0,0.0890801 -33821,7507:205,-75,50,0,0,0.0874924 -33822,7507:104,-74,50,0,0,0.0790743 -33823,7506:104,-64,50,0,0,0.0793966 -33824,7506:103,-63,50,0,0,0.0791417 -33825,7506:102,-62,50,0,0,0.0786636 -33826,7506:101,-61,50,0,0,0.0782033 -33827,7506:100,-60,50,0,0,0.0785521 -33828,7505:209,-59,50,0,0,0.0813788 -33829,7505:208,-58,50,0,0,0.102677 -33830,7505:207,-57,50,0,0,0.120531 -33831,7505:206,-56,50,0,0,0.122616 -33832,7505:205,-55,50,0,0,0.151783 -33833,7505:104,-54,50,0,0,0.152366 -33834,7505:103,-53,50,0,0,0.15173 -33835,7505:102,-52,50,0,0,0.151637 -33836,7505:101,-51,50,0,0,0.152259 -33837,7505:100,-50,50,0,0,0.15311 -33838,7504:209,-49,50,0,0,0.152937 -33839,7504:208,-48,50,0,0,0.1459 -33840,7503:208,-38,50,0,0,0.115244 -33841,7503:207,-37,50,0,0,0.138974 -33842,7503:206,-36,50,0,0,0.141451 -33843,7503:205,-35,50,0,0,0.171973 -33844,7503:104,-34,50,0,0,0.172471 -33845,7503:103,-33,50,0,0,0.179684 -33846,7503:102,-32,50,0,0,0.181601 -33847,7503:101,-31,50,0,0,0.181768 -33848,7503:100,-30,50,0,0,0.181387 -33849,7502:209,-29,50,0,0,0.187851 -33850,7502:208,-28,50,0,0,0.198155 -33851,7502:207,-27,50,0,0,0.196917 -33852,7502:206,-26,50,0,0,0.183579 -33853,7502:205,-25,50,0,0,0.185402 -33854,7502:104,-24,50,0,0,0.17443 -33855,7501:207,-17,50,0,0,0.130496 -33856,7501:206,-16,50,0,0,0.170137 -33857,7501:205,-15,50,0,0,0.176765 -33858,7501:104,-14,50,0,0,0.120249 -33859,7501:103,-13,50,0,0,0.12908 -33860,7501:102,-12,50,0,0,0.129369 -33861,7501:101,-11,50,0,0,0.130228 -33862,7501:100,-10,50,0,0,0.14926 -33863,7500:209,-9,50,0,0,0.156878 -33864,7500:208,-8,50,0,0,0.165134 -33865,7500:207,-7,50,0,0,0.185806 -33866,7500:206,-6,50,0,0,0.191372 -33867,7500:205,-5,50,0,0,0.194781 -33868,7500:104,-4,50,0,0,0.197796 -33869,7500:103,-3,50,0,0,0.200566 -33870,7500:102,-2,50,0,0,0.202749 -33871,7500:101,-1,50,0,0,0.204615 -33872,1501:102,12,50,0,0,0.16079 -33873,1501:103,13,50,0,0,0.158982 -33874,1501:104,14,50,0,0,0.166399 -33875,1501:205,15,50,0,0,0.177199 -33876,1501:206,16,50,0,0,0.160707 -33877,1517:207,177,50,0,0,0.0804466 -33878,1517:208,178,50,0,0,0.077679 -33879,1517:209,179,50,0,0,0.0778929 -33880,1518:100,180,50,0,0,0.0828971 -33881,7518:110,-180,51,0,0,0.0767785 -33882,7517:219,-179,51,0,0,0.077797 -33883,7517:218,-178,51,0,0,0.0768732 -33884,7517:215,-175,51,0,0,0.0761689 -33885,7517:114,-174,51,0,0,0.078448 -33886,7517:113,-173,51,0,0,0.0784258 -33887,7517:112,-172,51,0,0,0.0773559 -33888,7517:111,-171,51,0,0,0.0764949 -33889,7517:110,-170,51,0,0,0.0763789 -33890,7516:219,-169,51,0,0,0.0763064 -33891,7516:218,-168,51,0,0,0.0769825 -33892,7516:217,-167,51,0,0,0.0776421 -33893,7516:216,-166,51,0,0,0.0781884 -33894,7508:219,-89,51,0,0,0.0811487 -33895,7508:218,-88,51,0,0,0.0817097 -33896,7508:217,-87,51,0,0,0.0844806 -33897,7508:216,-86,51,0,0,0.0843536 -33898,7508:215,-85,51,0,0,0.0845362 -33899,7508:114,-84,51,0,0,0.0850545 -33900,7508:113,-83,51,0,0,0.0858656 -33901,7508:112,-82,51,0,0,0.0864561 -33902,7508:111,-81,51,0,0,0.0867975 -33903,7508:110,-80,51,0,0,0.0870013 -33904,7507:219,-79,51,0,0,0.0874186 -33905,7507:218,-78,51,0,0,0.0882498 -33906,7507:217,-77,51,0,0,0.0888719 -33907,7507:216,-76,51,0,0,0.0821812 -33908,7507:215,-75,51,0,0,0.0868791 -33909,7507:114,-74,51,0,0,0.0869933 -33910,7507:113,-73,51,0,0,0.0810646 -33911,7506:215,-65,51,0,0,0.079562 -33912,7506:114,-64,51,0,0,0.0782551 -33913,7506:113,-63,51,0,0,0.0781884 -33914,7506:112,-62,51,0,0,0.0781218 -33915,7506:111,-61,51,0,0,0.0783737 -33916,7506:110,-60,51,0,0,0.079149 -33917,7505:219,-59,51,0,0,0.0780701 -33918,7505:218,-58,51,0,0,0.0791717 -33919,7505:217,-57,51,0,0,0.0819182 -33920,7505:216,-56,51,0,0,0.1056 -33921,7505:215,-55,51,0,0,0.132136 -33922,7505:114,-54,51,0,0,0.15015 -33923,7505:113,-53,51,0,0,0.152206 -33924,7505:112,-52,51,0,0,0.152512 -33925,7505:111,-51,51,0,0,0.152831 -33926,7505:110,-50,51,0,0,0.152897 -33927,7504:219,-49,51,0,0,0.150071 -33928,7504:218,-48,51,0,0,0.135386 -33929,7503:217,-37,51,0,0,0.112774 -33930,7503:216,-36,51,0,0,0.160957 -33931,7503:215,-35,51,0,0,0.153671 -33932,7503:114,-34,51,0,0,0.154528 -33933,7503:113,-33,51,0,0,0.154072 -33934,7503:112,-32,51,0,0,0.178025 -33935,7503:111,-31,51,0,0,0.185635 -33936,7503:110,-30,51,0,0,0.185387 -33937,7502:219,-29,51,0,0,0.189961 -33938,7502:218,-28,51,0,0,0.194958 -33939,7502:217,-27,51,0,0,0.182411 -33940,7502:216,-26,51,0,0,0.171871 -33941,7502:215,-25,51,0,0,0.154675 -33942,7502:114,-24,51,0,0,0.126061 -33943,7501:216,-16,51,0,0,0.120129 -33944,7501:215,-15,51,0,0,0.111454 -33945,7501:114,-14,51,0,0,0.114158 -33946,7501:113,-13,51,0,0,0.120837 -33947,7501:112,-12,51,0,0,0.1249 -33948,7501:111,-11,51,0,0,0.145478 -33949,7501:110,-10,51,0,0,0.150636 -33950,7500:219,-9,51,0,0,0.157859 -33951,7500:218,-8,51,0,0,0.161804 -33952,7500:217,-7,51,0,0,0.174741 -33953,7500:216,-6,51,0,0,0.18064 -33954,7500:215,-5,51,0,0,0.181417 -33955,7500:114,-4,51,0,0,0.185496 -33956,7500:113,-3,51,0,0,0.195588 -33957,7500:112,-2,51,0,0,0.197421 -33958,7500:111,-1,51,0,0,0.20358 -33959,1500:111,0,51,0,0,0.200533 -33960,1501:110,10,51,0,0,0.149013 -33961,1501:111,11,51,0,0,0.155011 -33962,1501:112,12,51,0,0,0.157681 -33963,1501:113,13,51,0,0,0.125609 -33964,1501:114,14,51,0,0,0.12146 -33965,1501:215,15,51,0,0,0.12967 -33966,1501:216,16,51,0,0,0.147676 -33967,1501:217,17,51,0,0,0.169124 -33968,1517:219,179,51,0,0,0.0773118 -33969,1518:110,180,51,0,0,0.0767785 -33970,7517:124,-174,52,0,0,0.0766548 -33971,7517:123,-173,52,0,0,0.0776864 -33972,7517:122,-172,52,0,0,0.0775394 -33973,7517:121,-171,52,0,0,0.0762267 -33974,7508:229,-89,52,0,0,0.0813329 -33975,7508:228,-88,52,0,0,0.0831865 -33976,7508:227,-87,52,0,0,0.0833277 -33977,7508:226,-86,52,0,0,0.0832649 -33978,7508:225,-85,52,0,0,0.0844649 -33979,7508:124,-84,52,0,0,0.0852548 -33980,7508:123,-83,52,0,0,0.0854472 -33981,7508:122,-82,52,0,0,0.0863265 -33982,7508:121,-81,52,0,0,0.0860997 -33983,7508:120,-80,52,0,0,0.0857849 -33984,7507:229,-79,52,0,0,0.0861078 -33985,7507:228,-78,52,0,0,0.0850864 -33986,7507:227,-77,52,0,0,0.0863831 -33987,7507:226,-76,52,0,0,0.0855597 -33988,7507:225,-75,52,0,0,0.0841712 -33989,7507:124,-74,52,0,0,0.0877797 -33990,7507:123,-73,52,0,0,0.087181 -33991,7506:225,-65,52,0,0,0.0788203 -33992,7506:124,-64,52,0,0,0.0787605 -33993,7506:123,-63,52,0,0,0.0782551 -33994,7506:120,-60,52,0,0,0.0794792 -33995,7505:229,-59,52,0,0,0.076205 -33996,7505:228,-58,52,0,0,0.0774952 -33997,7505:227,-57,52,0,0,0.0773044 -33998,7505:226,-56,52,0,0,0.0777527 -33999,7505:225,-55,52,0,0,0.085648 -34000,7505:124,-54,52,0,0,0.123871 -34001,7505:123,-53,52,0,0,0.140418 -34002,7505:122,-52,52,0,0,0.150543 -34003,7505:121,-51,52,0,0,0.151756 -34004,7505:120,-50,52,0,0,0.151518 -34005,7504:229,-49,52,0,0,0.144764 -34006,7504:228,-48,52,0,0,0.131115 -34007,7503:124,-34,52,0,0,0.0904399 -34008,7503:123,-33,52,0,0,0.100149 -34009,7503:122,-32,52,0,0,0.104894 -34010,7503:121,-31,52,0,0,0.104904 -34011,7503:120,-30,52,0,0,0.10165 -34012,7502:229,-29,52,0,0,0.0874103 -34013,7502:228,-28,52,0,0,0.0879692 -34014,7502:227,-27,52,0,0,0.113258 -34015,7502:226,-26,52,0,0,0.168159 -34016,7502:225,-25,52,0,0,0.138777 -34017,7502:124,-24,52,0,0,0.137225 -34018,7502:123,-23,52,0,0,0.1176 -34019,7502:122,-22,52,0,0,0.123804 -34020,7501:227,-17,52,0,0,0.119566 -34021,7501:226,-16,52,0,0,0.115149 -34022,7501:225,-15,52,0,0,0.110592 -34023,7501:124,-14,52,0,0,0.116771 -34024,7501:123,-13,52,0,0,0.115569 -34025,7501:122,-12,52,0,0,0.116761 -34026,7501:121,-11,52,0,0,0.127918 -34027,7501:120,-10,52,0,0,0.155605 -34028,7500:229,-9,52,0,0,0.160693 -34029,7500:228,-8,52,0,0,0.165064 -34030,7500:227,-7,52,0,0,0.168677 -34031,7500:226,-6,52,0,0,0.173588 -34032,7500:225,-5,52,0,0,0.175052 -34033,7500:124,-4,52,0,0,0.17678 -34034,7500:123,-3,52,0,0,0.174845 -34035,7500:122,-2,52,0,0,0.17114 -34036,7500:121,-1,52,0,0,0.200829 -34037,1500:121,0,52,0,0,0.200664 -34038,1500:121,1,52,0,0,0.189818 -34039,1500:122,2,52,0,0,0.162335 -34040,1501:120,10,52,0,0,0.160374 -34041,1501:121,11,52,0,0,0.157164 -34042,1501:122,12,52,0,0,0.16043 -34043,1501:123,13,52,0,0,0.133165 -34044,1501:228,18,52,0,0,0.163329 -34045,1501:229,19,52,0,0,0.160568 -34046,1517:229,179,52,0,0,0.0769899 -34047,7517:237,-177,53,0,0,0.0773778 -34048,7517:133,-173,53,0,0,0.077063 -34049,7517:132,-172,53,0,0,0.0760967 -34050,7508:239,-89,53,0,0,0.0817561 -34051,7508:238,-88,53,0,0,0.0824762 -34052,7508:237,-87,53,0,0,0.0833432 -34053,7508:236,-86,53,0,0,0.0841159 -34054,7508:235,-85,53,0,0,0.0847354 -34055,7508:134,-84,53,0,0,0.0845682 -34056,7508:133,-83,53,0,0,0.0848709 -34057,7508:132,-82,53,0,0,0.0846476 -34058,7508:131,-81,53,0,0,0.0849109 -34059,7508:130,-80,53,0,0,0.0848867 -34060,7507:239,-79,53,0,0,0.0844966 -34061,7507:238,-78,53,0,0,0.0836499 -34062,7507:237,-77,53,0,0,0.0847113 -34063,7507:236,-76,53,0,0,0.0837918 -34064,7507:235,-75,53,0,0,0.0829987 -34065,7507:134,-74,53,0,0,0.0847431 -34066,7507:133,-73,53,0,0,0.0843854 -34067,7507:132,-72,53,0,0,0.078783 -34068,7506:236,-66,53,0,0,0.0795921 -34069,7506:235,-65,53,0,0,0.078448 -34070,7506:131,-61,53,0,0,0.0790892 -34071,7505:238,-58,53,0,0,0.0760099 -34072,7505:237,-57,53,0,0,0.0772532 -34073,7505:236,-56,53,0,0,0.0769315 -34074,7505:235,-55,53,0,0,0.0774291 -34075,7505:134,-54,53,0,0,0.0792316 -34076,7505:133,-53,53,0,0,0.0884072 -34077,7505:132,-52,53,0,0,0.144345 -34078,7505:131,-51,53,0,0,0.145682 -34079,7505:130,-50,53,0,0,0.149809 -34080,7504:239,-49,53,0,0,0.140505 -34081,7504:238,-48,53,0,0,0.117547 -34082,7503:132,-32,53,0,0,0.0810646 -34083,7503:131,-31,53,0,0,0.0831081 -34084,7503:130,-30,53,0,0,0.0910844 -34085,7502:239,-29,53,0,0,0.0846238 -34086,7502:238,-28,53,0,0,0.0813788 -34087,7502:237,-27,53,0,0,0.079577 -34088,7502:236,-26,53,0,0,0.0845602 -34089,7502:235,-25,53,0,0,0.123148 -34090,7502:134,-24,53,0,0,0.140729 -34091,7502:133,-23,53,0,0,0.14254 -34092,7502:132,-22,53,0,0,0.129138 -34093,7502:131,-21,53,0,0,0.118284 -34094,7502:130,-20,53,0,0,0.127415 -34095,7501:239,-19,53,0,0,0.122815 -34096,7501:238,-18,53,0,0,0.119188 -34097,7501:237,-17,53,0,0,0.117526 -34098,7501:236,-16,53,0,0,0.110048 -34099,7501:235,-15,53,0,0,0.105126 -34100,7501:134,-14,53,0,0,0.111373 -34101,7501:133,-13,53,0,0,0.111923 -34102,7501:132,-12,53,0,0,0.123303 -34103,7501:131,-11,53,0,0,0.129415 -34104,7501:130,-10,53,0,0,0.14649 -34105,7500:239,-9,53,0,0,0.157068 -34106,7500:238,-8,53,0,0,0.161791 -34107,7500:237,-7,53,0,0,0.164611 -34108,7500:236,-6,53,0,0,0.152977 -34109,7500:235,-5,53,0,0,0.160943 -34110,7500:134,-4,53,0,0,0.162993 -34111,7500:133,-3,53,0,0,0.1695 -34112,7500:132,-2,53,0,0,0.18093 -34113,7500:131,-1,53,0,0,0.193897 -34114,1500:131,0,53,0,0,0.193319 -34115,1500:131,1,53,0,0,0.198139 -34116,1500:132,2,53,0,0,0.195847 -34117,1501:130,10,53,0,0,0.154917 -34118,1501:131,11,53,0,0,0.158228 -34119,1501:132,12,53,0,0,0.147547 -34120,1501:239,19,53,0,0,0.13792 -34121,1502:130,20,53,0,0,0.140022 -34122,7517:248,-178,54,0,0,0.0765093 -34123,7517:247,-177,54,0,0,0.0767056 -34124,7517:246,-176,54,0,0,0.0768806 -34125,7517:245,-175,54,0,0,0.0769754 -34126,7517:144,-174,54,0,0,0.0770704 -34127,7517:143,-173,54,0,0,0.0769168 -34128,7517:142,-172,54,0,0,0.0765603 -34129,7517:141,-171,54,0,0,0.0763427 -34130,7517:140,-170,54,0,0,0.0762775 -34131,7516:249,-169,54,0,0,0.0762267 -34132,7516:248,-168,54,0,0,0.0762991 -34133,7509:141,-91,54,0,0,0.0779519 -34134,7509:140,-90,54,0,0,0.0780184 -34135,7508:249,-89,54,0,0,0.083532 -34136,7508:248,-88,54,0,0,0.0825851 -34137,7508:247,-87,54,0,0,0.0829908 -34138,7508:246,-86,54,0,0,0.0835555 -34139,7508:245,-85,54,0,0,0.0834063 -34140,7508:144,-84,54,0,0,0.0837288 -34141,7508:143,-83,54,0,0,0.0835634 -34142,7508:142,-82,54,0,0,0.0832336 -34143,7508:141,-81,54,0,0,0.0836737 -34144,7508:140,-80,54,0,0,0.0837446 -34145,7507:249,-79,54,0,0,0.0829596 -34146,7507:248,-78,54,0,0,0.0824918 -34147,7507:247,-77,54,0,0,0.0815635 -34148,7507:246,-76,54,0,0,0.0815017 -34149,7507:245,-75,54,0,0,0.0817252 -34150,7507:144,-74,54,0,0,0.0812713 -34151,7507:143,-73,54,0,0,0.082251 -34152,7507:142,-72,54,0,0,0.0830064 -34153,7506:249,-69,54,0,0,0.0794567 -34154,7506:248,-68,54,0,0,0.079871 -34155,7506:247,-67,54,0,0,0.0804012 -34156,7506:246,-66,54,0,0,0.0783886 -34157,7506:245,-65,54,0,0,0.0797427 -34158,7505:248,-58,54,0,0,0.0768149 -34159,7505:247,-57,54,0,0,0.077856 -34160,7505:246,-56,54,0,0,0.0771873 -34161,7505:245,-55,54,0,0,0.0770046 -34162,7505:144,-54,54,0,0,0.0771799 -34163,7505:143,-53,54,0,0,0.0770338 -34164,7505:142,-52,54,0,0,0.0849986 -34165,7505:141,-51,54,0,0,0.137188 -34166,7505:140,-50,54,0,0,0.147237 -34167,7504:249,-49,54,0,0,0.134284 -34168,7504:248,-48,54,0,0,0.108846 -34169,7503:141,-31,54,0,0,0.0772018 -34170,7503:140,-30,54,0,0,0.0777232 -34171,7502:249,-29,54,0,0,0.0769024 -34172,7502:248,-28,54,0,0,0.0765093 -34173,7502:247,-27,54,0,0,0.076386 -34174,7502:246,-26,54,0,0,0.0764732 -34175,7502:245,-25,54,0,0,0.076553 -34176,7502:144,-24,54,0,0,0.0817019 -34177,7502:143,-23,54,0,0,0.0877551 -34178,7502:142,-22,54,0,0,0.0965598 -34179,7502:141,-21,54,0,0,0.103028 -34180,7502:140,-20,54,0,0,0.095623 -34181,7501:249,-19,54,0,0,0.0998351 -34182,7501:248,-18,54,0,0,0.0981943 -34183,7501:247,-17,54,0,0,0.103123 -34184,7501:246,-16,54,0,0,0.1053 -34185,7501:245,-15,54,0,0,0.108597 -34186,7501:144,-14,54,0,0,0.112969 -34187,7501:143,-13,54,0,0,0.117739 -34188,7501:142,-12,54,0,0,0.123281 -34189,7501:141,-11,54,0,0,0.132066 -34190,7501:140,-10,54,0,0,0.14544 -34191,7500:249,-9,54,0,0,0.149652 -34192,7500:248,-8,54,0,0,0.148259 -34193,7500:247,-7,54,0,0,0.150504 -34194,7500:246,-6,54,0,0,0.154501 -34195,7500:245,-5,54,0,0,0.155335 -34196,7500:144,-4,54,0,0,0.166884 -34197,7500:143,-3,54,0,0,0.175825 -34198,7500:142,-2,54,0,0,0.19356 -34199,7500:141,-1,54,0,0,0.188212 -34200,1500:141,0,54,0,0,0.18685 -34201,1500:141,1,54,0,0,0.195782 -34202,1500:142,2,54,0,0,0.187647 -34203,1501:140,10,54,0,0,0.130414 -34204,1501:141,11,54,0,0,0.134069 -34205,7518:350,-180,55,0,0,0.0768732 -34206,7517:459,-179,55,0,0,0.0768149 -34207,7517:458,-178,55,0,0,0.0767858 -34208,7517:457,-177,55,0,0,0.0767274 -34209,7517:456,-176,55,0,0,0.0771799 -34210,7517:455,-175,55,0,0,0.0775465 -34211,7517:354,-174,55,0,0,0.07751 -34212,7517:353,-173,55,0,0,0.0772459 -34213,7517:352,-172,55,0,0,0.0772166 -34214,7517:351,-171,55,0,0,0.0768149 -34215,7517:350,-170,55,0,0,0.0763064 -34216,7509:351,-91,55,0,0,0.0787307 -34217,7509:350,-90,55,0,0,0.0832649 -34218,7508:459,-89,55,0,0,0.0833825 -34219,7508:458,-88,55,0,0,0.0819335 -34220,7508:457,-87,55,0,0,0.082282 -34221,7508:456,-86,55,0,0,0.0827176 -34222,7508:455,-85,55,0,0,0.0830768 -34223,7508:354,-84,55,0,0,0.0832023 -34224,7508:353,-83,55,0,0,0.0828347 -34225,7508:352,-82,55,0,0,0.0821271 -34226,7508:351,-81,55,0,0,0.0821037 -34227,7508:350,-80,55,0,0,0.0824683 -34228,7507:459,-79,55,0,0,0.0821271 -34229,7507:458,-78,55,0,0,0.08181 -34230,7507:457,-77,55,0,0,0.0808581 -34231,7507:456,-76,55,0,0,0.0805761 -34232,7507:455,-75,55,0,0,0.0807131 -34233,7507:354,-74,55,0,0,0.0808276 -34234,7507:352,-72,55,0,0,0.0813711 -34235,7507:351,-71,55,0,0,0.0810875 -34236,7507:350,-70,55,0,0,0.0789322 -34237,7506:459,-69,55,0,0,0.0794342 -34238,7506:458,-68,55,0,0,0.0787532 -34239,7506:457,-67,55,0,0,0.078085 -34240,7506:456,-66,55,0,0,0.0787755 -34241,7506:455,-65,55,0,0,0.0758946 -34242,7505:458,-58,55,0,0,0.0788128 -34243,7505:455,-55,55,0,0,0.0762558 -34244,7505:354,-54,55,0,0,0.0770922 -34245,7505:353,-53,55,0,0,0.077136 -34246,7505:352,-52,55,0,0,0.0817252 -34247,7505:351,-51,55,0,0,0.0992915 -34248,7505:350,-50,55,0,0,0.132231 -34249,7504:459,-49,55,0,0,0.132656 -34250,7504:458,-48,55,0,0,0.108986 -34251,7502:456,-26,55,0,0,0.0763064 -34252,7502:455,-25,55,0,0,0.0762918 -34253,7502:354,-24,55,0,0,0.0765384 -34254,7502:353,-23,55,0,0,0.0769899 -34255,7502:352,-22,55,0,0,0.0782476 -34256,7502:351,-21,55,0,0,0.0815557 -34257,7502:350,-20,55,0,0,0.0879775 -34258,7501:459,-19,55,0,0,0.0981036 -34259,7501:458,-18,55,0,0,0.101088 -34260,7501:457,-17,55,0,0,0.104471 -34261,7501:456,-16,55,0,0,0.107075 -34262,7501:455,-15,55,0,0,0.109696 -34263,7501:354,-14,55,0,0,0.112107 -34264,7501:353,-13,55,0,0,0.116686 -34265,7501:352,-12,55,0,0,0.122329 -34266,7501:351,-11,55,0,0,0.12945 -34267,7501:350,-10,55,0,0,0.137481 -34268,7500:459,-9,55,0,0,0.141202 -34269,7500:458,-8,55,0,0,0.143901 -34270,7500:457,-7,55,0,0,0.147508 -34271,7500:456,-6,55,0,0,0.154917 -34272,7500:455,-5,55,0,0,0.16556 -34273,7500:354,-4,55,0,0,0.170646 -34274,7500:353,-3,55,0,0,0.174489 -34275,7500:352,-2,55,0,0,0.186678 -34276,7500:351,-1,55,0,0,0.185434 -34277,1500:351,0,55,0,0,0.183579 -34278,1500:351,1,55,0,0,0.186866 -34279,1500:352,2,55,0,0,0.191499 -34280,1501:351,11,55,0,0,0.142666 -34281,1517:351,171,55,0,0,0.0805912 -34282,1518:350,180,55,0,0,0.0768732 -34283,7518:360,-180,56,0,0,0.0766839 -34284,7517:469,-179,56,0,0,0.0765893 -34285,7517:468,-178,56,0,0,0.0768003 -34286,7517:467,-177,56,0,0,0.0775026 -34287,7517:466,-176,56,0,0,0.0781588 -34288,7517:465,-175,56,0,0,0.0780701 -34289,7517:364,-174,56,0,0,0.0775613 -34290,7517:363,-173,56,0,0,0.0770996 -34291,7509:360,-90,56,0,0,0.0822899 -34292,7508:469,-89,56,0,0,0.0820805 -34293,7508:468,-88,56,0,0,0.0815635 -34294,7508:467,-87,56,0,0,0.0817483 -34295,7508:466,-86,56,0,0,0.0822899 -34296,7508:465,-85,56,0,0,0.0828423 -34297,7508:364,-84,56,0,0,0.0819335 -34298,7508:363,-83,56,0,0,0.081548 -34299,7508:362,-82,56,0,0,0.0815635 -34300,7508:361,-81,56,0,0,0.0813866 -34301,7508:360,-80,56,0,0,0.0814942 -34302,7507:469,-79,56,0,0,0.0815327 -34303,7507:468,-78,56,0,0,0.0808887 -34304,7507:467,-77,56,0,0,0.0796824 -34305,7507:466,-76,56,0,0,0.0777379 -34306,7507:465,-75,56,0,0,0.0791266 -34307,7507:364,-74,56,0,0,0.0784555 -34308,7507:363,-73,56,0,0,0.0785299 -34309,7507:362,-72,56,0,0,0.0803101 -34310,7507:361,-71,56,0,0,0.0795393 -34311,7506:468,-68,56,0,0,0.078218 -34312,7506:467,-67,56,0,0,0.0785446 -34313,7506:466,-66,56,0,0,0.0766839 -34314,7505:468,-58,56,0,0,0.0791717 -34315,7505:363,-53,56,0,0,0.0768585 -34316,7505:362,-52,56,0,0,0.0770849 -34317,7505:361,-51,56,0,0,0.0770922 -34318,7505:360,-50,56,0,0,0.0917501 -34319,7504:469,-49,56,0,0,0.129045 -34320,7504:468,-48,56,0,0,0.101979 -34321,7504:467,-47,56,0,0,0.0865292 -34322,7502:364,-24,56,0,0,0.0766621 -34323,7502:363,-23,56,0,0,0.0764659 -34324,7502:362,-22,56,0,0,0.0764659 -34325,7502:361,-21,56,0,0,0.0781071 -34326,7502:360,-20,56,0,0,0.0923854 -34327,7501:469,-19,56,0,0,0.10002 -34328,7501:468,-18,56,0,0,0.102658 -34329,7501:467,-17,56,0,0,0.102658 -34330,7501:466,-16,56,0,0,0.104375 -34331,7501:465,-15,56,0,0,0.109185 -34332,7501:364,-14,56,0,0,0.111923 -34333,7501:363,-13,56,0,0,0.117686 -34334,7501:362,-12,56,0,0,0.123971 -34335,7501:361,-11,56,0,0,0.127689 -34336,7501:360,-10,56,0,0,0.134188 -34337,7500:469,-9,56,0,0,0.138348 -34338,7500:468,-8,56,0,0,0.137761 -34339,7500:467,-7,56,0,0,0.142666 -34340,7500:466,-6,56,0,0,0.145913 -34341,7500:465,-5,56,0,0,0.154945 -34342,7500:364,-4,56,0,0,0.161637 -34343,7500:363,-3,56,0,0,0.173898 -34344,7500:362,-2,56,0,0,0.181829 -34345,7500:361,-1,56,0,0,0.187522 -34346,1500:361,0,56,0,0,0.183625 -34347,1500:361,1,56,0,0,0.18534 -34348,1500:362,2,56,0,0,0.173102 -34349,1501:360,10,56,0,0,0.130146 -34350,1501:361,11,56,0,0,0.151452 -34351,1501:362,12,56,0,0,0.131443 -34352,1516:465,165,56,0,0,0.0793064 -34353,1516:467,167,56,0,0,0.0784258 -34354,1516:468,168,56,0,0,0.0782255 -34355,1516:469,169,56,0,0,0.077937 -34356,1517:467,177,56,0,0,0.0772166 -34357,1517:468,178,56,0,0,0.0772018 -34358,1517:469,179,56,0,0,0.0769024 -34359,1518:360,180,56,0,0,0.0766839 -34360,7518:370,-180,57,0,0,0.0772311 -34361,7517:479,-179,57,0,0,0.0771433 -34362,7517:478,-178,57,0,0,0.0776275 -34363,7517:477,-177,57,0,0,0.0777821 -34364,7517:476,-176,57,0,0,0.077974 -34365,7517:475,-175,57,0,0,0.0784036 -34366,7517:374,-174,57,0,0,0.0776938 -34367,7517:373,-173,57,0,0,0.0769315 -34368,7517:372,-172,57,0,0,0.0762123 -34369,7517:371,-171,57,0,0,0.0758443 -34370,7509:370,-90,57,0,0,0.0795845 -34371,7508:479,-89,57,0,0,0.0813329 -34372,7508:478,-88,57,0,0,0.0808276 -34373,7508:477,-87,57,0,0,0.0812254 -34374,7508:476,-86,57,0,0,0.0818486 -34375,7508:475,-85,57,0,0,0.0820961 -34376,7508:374,-84,57,0,0,0.0811487 -34377,7508:373,-83,57,0,0,0.0808504 -34378,7508:372,-82,57,0,0,0.0811487 -34379,7508:371,-81,57,0,0,0.0811104 -34380,7508:370,-80,57,0,0,0.0810109 -34381,7507:479,-79,57,0,0,0.0808581 -34382,7507:478,-78,57,0,0,0.0805227 -34383,7507:477,-77,57,0,0,0.0788502 -34384,7507:374,-74,57,0,0,0.0785074 -34385,7507:373,-73,57,0,0,0.0784927 -34386,7507:372,-72,57,0,0,0.0778706 -34387,7507:371,-71,57,0,0,0.0777821 -34388,7507:370,-70,57,0,0,0.0783071 -34389,7506:479,-69,57,0,0,0.0779961 -34390,7505:478,-58,57,0,0,0.0765747 -34391,7505:374,-54,57,0,0,0.0768585 -34392,7505:373,-53,57,0,0,0.0769534 -34393,7505:372,-52,57,0,0,0.0767347 -34394,7505:371,-51,57,0,0,0.0771288 -34395,7505:370,-50,57,0,0,0.0793215 -34396,7504:479,-49,57,0,0,0.0895396 -34397,7504:478,-48,57,0,0,0.114346 -34398,7504:477,-47,57,0,0,0.11493 -34399,7504:476,-46,57,0,0,0.109345 -34400,7504:475,-45,57,0,0,0.102111 -34401,7502:475,-25,57,0,0,0.0780701 -34402,7502:373,-23,57,0,0,0.0764369 -34403,7502:372,-22,57,0,0,0.0764369 -34404,7502:371,-21,57,0,0,0.0768367 -34405,7502:370,-20,57,0,0,0.078011 -34406,7501:479,-19,57,0,0,0.0832023 -34407,7501:478,-18,57,0,0,0.0932853 -34408,7501:477,-17,57,0,0,0.103513 -34409,7501:476,-16,57,0,0,0.106126 -34410,7501:475,-15,57,0,0,0.106879 -34411,7501:374,-14,57,0,0,0.106087 -34412,7501:373,-13,57,0,0,0.111841 -34413,7501:372,-12,57,0,0,0.126719 -34414,7501:371,-11,57,0,0,0.129057 -34415,7501:370,-10,57,0,0,0.130881 -34416,7500:479,-9,57,0,0,0.134093 -34417,7500:478,-8,57,0,0,0.135748 -34418,7500:477,-7,57,0,0,0.13742 -34419,7500:476,-6,57,0,0,0.137456 -34420,7500:475,-5,57,0,0,0.137932 -34421,7500:374,-4,57,0,0,0.14356 -34422,7500:373,-3,57,0,0,0.174785 -34423,7500:372,-2,57,0,0,0.183117 -34424,7500:371,-1,57,0,0,0.184798 -34425,1500:371,0,57,0,0,0.184736 -34426,1500:371,1,57,0,0,0.184242 -34427,1500:372,2,57,0,0,0.188495 -34428,1501:370,10,57,0,0,0.110643 -34429,1501:371,11,57,0,0,0.144104 -34430,1501:372,12,57,0,0,0.12014 -34431,1516:475,165,57,0,0,0.0791717 -34432,1516:476,166,57,0,0,0.0789247 -34433,1516:477,167,57,0,0,0.0786936 -34434,1516:478,168,57,0,0,0.0784333 -34435,1516:479,169,57,0,0,0.0781663 -34436,1517:370,170,57,0,0,0.0780331 -34437,1517:371,171,57,0,0,0.077878 -34438,1517:372,172,57,0,0,0.0777012 -34439,1517:373,173,57,0,0,0.0775762 -34440,1517:374,174,57,0,0,0.077451 -34441,1517:475,175,57,0,0,0.0773559 -34442,1517:476,176,57,0,0,0.0772459 -34443,1517:477,177,57,0,0,0.0772385 -34444,1517:478,178,57,0,0,0.0767567 -34445,1517:479,179,57,0,0,0.0768076 -34446,1518:370,180,57,0,0,0.0772311 -34447,7518:380,-180,58,0,0,0.0771433 -34448,7517:489,-179,58,0,0,0.0770556 -34449,7517:488,-178,58,0,0,0.0767785 -34450,7517:487,-177,58,0,0,0.0762629 -34451,7517:486,-176,58,0,0,0.0760822 -34452,7517:485,-175,58,0,0,0.0765603 -34453,7517:384,-174,58,0,0,0.0772532 -34454,7517:383,-173,58,0,0,0.0775687 -34455,7517:382,-172,58,0,0,0.0767929 -34456,7517:381,-171,58,0,0,0.0760317 -34457,7508:489,-89,58,0,0,0.0779001 -34458,7508:488,-88,58,0,0,0.0815095 -34459,7508:487,-87,58,0,0,0.0803405 -34460,7508:486,-86,58,0,0,0.0806751 -34461,7508:485,-85,58,0,0,0.0806826 -34462,7508:384,-84,58,0,0,0.0803632 -34463,7508:383,-83,58,0,0,0.0807284 -34464,7508:382,-82,58,0,0,0.0807512 -34465,7508:381,-81,58,0,0,0.0805912 -34466,7508:380,-80,58,0,0,0.0802265 -34467,7507:489,-79,58,0,0,0.0799542 -34468,7507:488,-78,58,0,0,0.0797351 -34469,7507:487,-77,58,0,0,0.0782551 -34470,7507:486,-76,58,0,0,0.0785299 -34471,7507:485,-75,58,0,0,0.0784777 -34472,7507:384,-74,58,0,0,0.0771726 -34473,7507:381,-71,58,0,0,0.0776938 -34474,7507:380,-70,58,0,0,0.0774584 -34475,7506:489,-69,58,0,0,0.077819 -34476,7506:485,-65,58,0,0,0.0774217 -34477,7506:384,-64,58,0,0,0.0773559 -34478,7505:384,-54,58,0,0,0.0769534 -34479,7505:383,-53,58,0,0,0.0764586 -34480,7505:382,-52,58,0,0,0.0763571 -34481,7505:381,-51,58,0,0,0.0766548 -34482,7505:380,-50,58,0,0,0.07635 -34483,7504:489,-49,58,0,0,0.0785149 -34484,7504:488,-48,58,0,0,0.0882004 -34485,7504:487,-47,58,0,0,0.0892387 -34486,7504:384,-44,58,0,0,0.104769 -34487,7502:383,-23,58,0,0,0.0763427 -34488,7502:382,-22,58,0,0,0.0764223 -34489,7502:381,-21,58,0,0,0.0769973 -34490,7502:380,-20,58,0,0,0.0805761 -34491,7501:489,-19,58,0,0,0.0882415 -34492,7501:488,-18,58,0,0,0.092627 -34493,7501:487,-17,58,0,0,0.0944564 -34494,7501:486,-16,58,0,0,0.0981854 -34495,7501:485,-15,58,0,0,0.102092 -34496,7501:384,-14,58,0,0,0.10229 -34497,7501:383,-13,58,0,0,0.104634 -34498,7501:382,-12,58,0,0,0.115716 -34499,7501:381,-11,58,0,0,0.126515 -34500,7501:380,-10,58,0,0,0.133272 -34501,7500:489,-9,58,0,0,0.142527 -34502,7500:488,-8,58,0,0,0.143345 -34503,7500:487,-7,58,0,0,0.14521 -34504,7500:486,-6,58,0,0,0.140617 -34505,7500:485,-5,58,0,0,0.139134 -34506,7500:384,-4,58,0,0,0.158941 -34507,7500:383,-3,58,0,0,0.165673 -34508,7500:382,-2,58,0,0,0.168591 -34509,7500:381,-1,58,0,0,0.178295 -34510,1500:381,0,58,0,0,0.181554 -34511,1500:381,1,58,0,0,0.183995 -34512,1500:382,2,58,0,0,0.1748 -34513,1516:383,163,58,0,0,0.0797503 -34514,1516:384,164,58,0,0,0.0794643 -34515,1516:485,165,58,0,0,0.0791342 -34516,1516:486,166,58,0,0,0.0789099 -34517,1516:487,167,58,0,0,0.0786041 -34518,1516:488,168,58,0,0,0.0782329 -34519,1516:489,169,58,0,0,0.077878 -34520,1517:380,170,58,0,0,0.0776055 -34521,1517:381,171,58,0,0,0.0774732 -34522,1517:382,172,58,0,0,0.0773704 -34523,1517:383,173,58,0,0,0.0773192 -34524,1517:384,174,58,0,0,0.0772459 -34525,1517:485,175,58,0,0,0.077063 -34526,1517:486,176,58,0,0,0.0769242 -34527,1517:489,179,58,0,0,0.0764732 -34528,1518:380,180,58,0,0,0.0771433 -34529,7518:390,-180,59,0,0,0.0767858 -34530,7517:499,-179,59,0,0,0.0771947 -34531,7517:498,-178,59,0,0,0.0769315 -34532,7517:497,-177,59,0,0,0.0768294 -34533,7517:496,-176,59,0,0,0.0765747 -34534,7517:495,-175,59,0,0,0.0769754 -34535,7517:394,-174,59,0,0,0.0772899 -34536,7517:393,-173,59,0,0,0.0767347 -34537,7517:392,-172,59,0,0,0.0768514 -34538,7517:391,-171,59,0,0,0.0768367 -34539,7517:390,-170,59,0,0,0.0762267 -34540,7508:498,-88,59,0,0,0.0765022 -34541,7508:497,-87,59,0,0,0.0792764 -34542,7508:496,-86,59,0,0,0.0810875 -34543,7508:495,-85,59,0,0,0.0816173 -34544,7508:394,-84,59,0,0,0.0814865 -34545,7508:393,-83,59,0,0,0.0806293 -34546,7508:392,-82,59,0,0,0.0801962 -34547,7508:391,-81,59,0,0,0.0800901 -34548,7508:390,-80,59,0,0,0.079803 -34549,7507:499,-79,59,0,0,0.0790369 -34550,7507:498,-78,59,0,0,0.077878 -34551,7507:392,-72,59,0,0,0.0777747 -34552,7507:391,-71,59,0,0,0.076713 -34553,7507:390,-70,59,0,0,0.0768076 -34554,7506:499,-69,59,0,0,0.0767347 -34555,7506:498,-68,59,0,0,0.0767494 -34556,7506:497,-67,59,0,0,0.0770191 -34557,7506:496,-66,59,0,0,0.0770849 -34558,7506:495,-65,59,0,0,0.0771726 -34559,7506:394,-64,59,0,0,0.0775539 -34560,7506:393,-63,59,0,0,0.0779445 -34561,7505:495,-55,59,0,0,0.0773263 -34562,7505:394,-54,59,0,0,0.076742 -34563,7505:393,-53,59,0,0,0.0764369 -34564,7505:392,-52,59,0,0,0.0764732 -34565,7505:391,-51,59,0,0,0.0765166 -34566,7505:390,-50,59,0,0,0.0764442 -34567,7504:499,-49,59,0,0,0.0762267 -34568,7504:498,-48,59,0,0,0.0769168 -34569,7504:497,-47,59,0,0,0.0837052 -34570,7504:496,-46,59,0,0,0.0862212 -34571,7504:495,-45,59,0,0,0.105262 -34572,7502:394,-24,59,0,0,0.076524 -34573,7502:393,-23,59,0,0,0.076234 -34574,7502:392,-22,59,0,0,0.0762558 -34575,7502:391,-21,59,0,0,0.0766257 -34576,7502:390,-20,59,0,0,0.0784183 -34577,7501:499,-19,59,0,0,0.0851106 -34578,7501:498,-18,59,0,0,0.0899931 -34579,7501:497,-17,59,0,0,0.0918013 -34580,7501:496,-16,59,0,0,0.0928344 -34581,7501:495,-15,59,0,0,0.0940968 -34582,7501:394,-14,59,0,0,0.0967753 -34583,7501:393,-13,59,0,0,0.0981308 -34584,7501:392,-12,59,0,0,0.0988697 -34585,7501:391,-11,59,0,0,0.108796 -34586,7501:390,-10,59,0,0,0.12656 -34587,7500:499,-9,59,0,0,0.144777 -34588,7500:498,-8,59,0,0,0.150124 -34589,7500:497,-7,59,0,0,0.148038 -34590,7500:496,-6,59,0,0,0.146696 -34591,7500:495,-5,59,0,0,0.147779 -34592,7500:394,-4,59,0,0,0.156024 -34593,7500:393,-3,59,0,0,0.157995 -34594,7500:392,-2,59,0,0,0.166827 -34595,7500:391,-1,59,0,0,0.167528 -34596,1500:391,0,59,0,0,0.176049 -34597,1500:391,1,59,0,0,0.179276 -34598,1515:499,159,59,0,0,0.0809115 -34599,1516:390,160,59,0,0,0.0806217 -34600,1516:391,161,59,0,0,0.0801812 -34601,1516:392,162,59,0,0,0.079705 -34602,1516:393,163,59,0,0,0.0794567 -34603,1516:394,164,59,0,0,0.0792615 -34604,1516:495,165,59,0,0,0.0790668 -34605,1516:496,166,59,0,0,0.0788203 -34606,1516:497,167,59,0,0,0.0785074 -34607,1516:498,168,59,0,0,0.078218 -34608,1516:499,169,59,0,0,0.0779814 -34609,1517:390,170,59,0,0,0.077819 -34610,1517:391,171,59,0,0,0.0775981 -34611,1517:392,172,59,0,0,0.0772532 -34612,1517:393,173,59,0,0,0.0770922 -34613,1517:394,174,59,0,0,0.0770409 -34614,1517:495,175,59,0,0,0.0770046 -34615,1517:496,176,59,0,0,0.0769754 -34616,1517:497,177,59,0,0,0.0769168 -34617,1517:498,178,59,0,0,0.0768149 -34618,1517:499,179,59,0,0,0.0767274 -34619,1518:390,180,59,0,0,0.0767858 -34620,7618:100,-180,60,0,0,0.0771067 -34621,7617:209,-179,60,0,0,0.0769315 -34622,7617:208,-178,60,0,0,0.0769899 -34623,7617:207,-177,60,0,0,0.0770849 -34624,7617:206,-176,60,0,0,0.0768659 -34625,7617:205,-175,60,0,0,0.0768076 -34626,7617:104,-174,60,0,0,0.0770117 -34627,7617:103,-173,60,0,0,0.0765603 -34628,7617:102,-172,60,0,0,0.0764442 -34629,7617:101,-171,60,0,0,0.076582 -34630,7617:100,-170,60,0,0,0.0767638 -34631,7616:209,-169,60,0,0,0.0767347 -34632,7608:207,-87,60,0,0,0.0756572 -34633,7608:206,-86,60,0,0,0.0757937 -34634,7608:205,-85,60,0,0,0.0770338 -34635,7608:104,-84,60,0,0,0.0787009 -34636,7608:103,-83,60,0,0,0.079562 -34637,7608:102,-82,60,0,0,0.0809726 -34638,7608:101,-81,60,0,0,0.0803405 -34639,7608:100,-80,60,0,0,0.079856 -34640,7607:209,-79,60,0,0,0.0783961 -34641,7607:102,-72,60,0,0,0.0778042 -34642,7607:101,-71,60,0,0,0.0771726 -34643,7607:100,-70,60,0,0,0.0765022 -34644,7606:209,-69,60,0,0,0.0764876 -34645,7606:208,-68,60,0,0,0.0764803 -34646,7606:207,-67,60,0,0,0.0764659 -34647,7606:206,-66,60,0,0,0.0764513 -34648,7606:205,-65,60,0,0,0.0765384 -34649,7606:104,-64,60,0,0,0.0768514 -34650,7606:103,-63,60,0,0,0.0773118 -34651,7606:102,-62,60,0,0,0.077937 -34652,7606:101,-61,60,0,0,0.07827 -34653,7605:206,-56,60,0,0,0.0779519 -34654,7605:205,-55,60,0,0,0.0778485 -34655,7605:104,-54,60,0,0,0.0768806 -34656,7605:103,-53,60,0,0,0.0766328 -34657,7605:102,-52,60,0,0,0.0765166 -34658,7605:101,-51,60,0,0,0.0763716 -34659,7605:100,-50,60,0,0,0.0763643 -34660,7604:209,-49,60,0,0,0.0763354 -34661,7604:208,-48,60,0,0,0.0764296 -34662,7604:207,-47,60,0,0,0.0769097 -34663,7604:206,-46,60,0,0,0.0779889 -34664,7604:205,-45,60,0,0,0.0823441 -34665,7604:104,-44,60,0,0,0.0925493 -34666,7602:103,-23,60,0,0,0.0762918 -34667,7602:102,-22,60,0,0,0.076046 -34668,7602:101,-21,60,0,0,0.0762629 -34669,7602:100,-20,60,0,0,0.0766839 -34670,7601:209,-19,60,0,0,0.0769534 -34671,7601:208,-18,60,0,0,0.0778634 -34672,7601:207,-17,60,0,0,0.0801736 -34673,7601:206,-16,60,0,0,0.0833825 -34674,7601:205,-15,60,0,0,0.0905498 -34675,7601:104,-14,60,0,0,0.0955341 -34676,7601:103,-13,60,0,0,0.0953213 -34677,7601:102,-12,60,0,0,0.0949144 -34678,7601:101,-11,60,0,0,0.0957741 -34679,7601:100,-10,60,0,0,0.102583 -34680,7600:209,-9,60,0,0,0.126549 -34681,7600:208,-8,60,0,0,0.137761 -34682,7600:207,-7,60,0,0,0.150006 -34683,7600:206,-6,60,0,0,0.151611 -34684,7600:205,-5,60,0,0,0.151136 -34685,7600:104,-4,60,0,0,0.150215 -34686,7600:103,-3,60,0,0,0.16104 -34687,7600:102,-2,60,0,0,0.163189 -34688,7600:101,-1,60,0,0,0.163287 -34689,1600:101,0,60,0,0,0.172926 -34690,1600:101,1,60,0,0,0.17375 -34691,1600:102,2,60,0,0,0.179745 -34692,1615:209,159,60,0,0,0.0802492 -34693,1616:100,160,60,0,0,0.0799692 -34694,1616:101,161,60,0,0,0.0797277 -34695,1616:102,162,60,0,0,0.0795995 -34696,1616:103,163,60,0,0,0.0794491 -34697,1616:104,164,60,0,0,0.0792464 -34698,1616:205,165,60,0,0,0.0790145 -34699,1616:206,166,60,0,0,0.0787084 -34700,1616:207,167,60,0,0,0.078359 -34701,1616:208,168,60,0,0,0.0780405 -34702,1616:209,169,60,0,0,0.0777675 -34703,1617:100,170,60,0,0,0.077679 -34704,1617:101,171,60,0,0,0.0775907 -34705,1617:102,172,60,0,0,0.0773263 -34706,1617:103,173,60,0,0,0.0771141 -34707,1617:104,174,60,0,0,0.0769825 -34708,1617:205,175,60,0,0,0.0769973 -34709,1617:206,176,60,0,0,0.0769168 -34710,1617:207,177,60,0,0,0.0768441 -34711,1617:208,178,60,0,0,0.0767785 -34712,1617:209,179,60,0,0,0.0766912 -34713,1618:100,180,60,0,0,0.0771067 -34714,7618:110,-180,61,0,0,0.0768877 -34715,7617:219,-179,61,0,0,0.0770556 -34716,7617:218,-178,61,0,0,0.0769754 -34717,7617:217,-177,61,0,0,0.0769681 -34718,7617:216,-176,61,0,0,0.0771141 -34719,7617:215,-175,61,0,0,0.0768659 -34720,7617:114,-174,61,0,0,0.0767567 -34721,7617:113,-173,61,0,0,0.0765457 -34722,7617:112,-172,61,0,0,0.0762558 -34723,7617:111,-171,61,0,0,0.076415 -34724,7617:110,-170,61,0,0,0.0772166 -34725,7616:219,-169,61,0,0,0.0773337 -34726,7616:218,-168,61,0,0,0.0772532 -34727,7616:217,-167,61,0,0,0.0762629 -34728,7616:216,-166,61,0,0,0.0762848 -34729,7608:112,-82,61,0,0,0.0775613 -34730,7608:111,-81,61,0,0,0.0794868 -34731,7608:110,-80,61,0,0,0.0787532 -34732,7607:219,-79,61,0,0,0.0790444 -34733,7607:218,-78,61,0,0,0.0794943 -34734,7607:217,-77,61,0,0,0.0773485 -34735,7607:113,-73,61,0,0,0.0775539 -34736,7607:112,-72,61,0,0,0.0776127 -34737,7607:111,-71,61,0,0,0.0772166 -34738,7607:110,-70,61,0,0,0.0770849 -34739,7606:219,-69,61,0,0,0.0768514 -34740,7606:218,-68,61,0,0,0.0766328 -34741,7606:217,-67,61,0,0,0.0767638 -34742,7606:216,-66,61,0,0,0.0766839 -34743,7606:215,-65,61,0,0,0.0764296 -34744,7606:111,-61,61,0,0,0.0781884 -34745,7605:114,-54,61,0,0,0.0768659 -34746,7605:113,-53,61,0,0,0.0765022 -34747,7605:112,-52,61,0,0,0.0762918 -34748,7605:111,-51,61,0,0,0.0764369 -34749,7605:110,-50,61,0,0,0.0762848 -34750,7604:219,-49,61,0,0,0.0763427 -34751,7604:218,-48,61,0,0,0.0777232 -34752,7604:217,-47,61,0,0,0.0815095 -34753,7604:216,-46,61,0,0,0.0860592 -34754,7602:112,-22,61,0,0,0.0761256 -34755,7602:111,-21,61,0,0,0.0761183 -34756,7602:110,-20,61,0,0,0.0765893 -34757,7601:219,-19,61,0,0,0.077224 -34758,7601:218,-18,61,0,0,0.0792691 -34759,7601:217,-17,61,0,0,0.0844409 -34760,7601:216,-16,61,0,0,0.0899846 -34761,7601:215,-15,61,0,0,0.0925838 -34762,7601:114,-14,61,0,0,0.094237 -34763,7601:113,-13,61,0,0,0.0932593 -34764,7601:112,-12,61,0,0,0.0927394 -34765,7601:111,-11,61,0,0,0.0931811 -34766,7601:110,-10,61,0,0,0.0948438 -34767,7600:219,-9,61,0,0,0.119112 -34768,7600:218,-8,61,0,0,0.140592 -34769,7600:217,-7,61,0,0,0.139824 -34770,7600:216,-6,61,0,0,0.148908 -34771,7600:215,-5,61,0,0,0.150229 -34772,7600:114,-4,61,0,0,0.152565 -34773,7600:113,-3,61,0,0,0.156105 -34774,7600:112,-2,61,0,0,0.153898 -34775,7600:111,-1,61,0,0,0.163161 -34776,1600:111,0,61,0,0,0.175959 -34777,1600:111,1,61,0,0,0.176183 -34778,1600:112,2,61,0,0,0.17979 -34779,1600:113,3,61,0,0,0.148817 -34780,1601:219,19,61,0,0,0.0927913 -34781,1602:110,20,61,0,0,0.094237 -34782,1602:112,22,61,0,0,0.0881838 -34783,1615:110,150,61,0,0,0.0812332 -34784,1615:111,151,61,0,0,0.0811104 -34785,1615:112,152,61,0,0,0.0810415 -34786,1615:216,156,61,0,0,0.0806751 -34787,1615:217,157,61,0,0,0.0804696 -34788,1615:218,158,61,0,0,0.0801736 -34789,1615:219,159,61,0,0,0.079939 -34790,1616:110,160,61,0,0,0.0798408 -34791,1616:111,161,61,0,0,0.0797653 -34792,1616:112,162,61,0,0,0.0796222 -34793,1616:113,163,61,0,0,0.0794643 -34794,1616:114,164,61,0,0,0.0789771 -34795,1616:215,165,61,0,0,0.0785002 -34796,1616:216,166,61,0,0,0.0780184 -34797,1616:217,167,61,0,0,0.0776127 -34798,1616:218,168,61,0,0,0.0774071 -34799,1616:219,169,61,0,0,0.0772678 -34800,1617:110,170,61,0,0,0.0772018 -34801,1617:111,171,61,0,0,0.0771654 -34802,1617:112,172,61,0,0,0.0770922 -34803,1617:113,173,61,0,0,0.0769754 -34804,1617:114,174,61,0,0,0.0768659 -34805,1617:215,175,61,0,0,0.0767274 -34806,1617:216,176,61,0,0,0.0766184 -34807,1617:217,177,61,0,0,0.0764803 -34808,1617:218,178,61,0,0,0.0764079 -34809,1617:219,179,61,0,0,0.0765603 -34810,1618:110,180,61,0,0,0.0768877 -34811,7618:120,-180,62,0,0,0.0766839 -34812,7617:229,-179,62,0,0,0.0765967 -34813,7617:228,-178,62,0,0,0.076582 -34814,7617:227,-177,62,0,0,0.0769754 -34815,7617:226,-176,62,0,0,0.0771947 -34816,7617:225,-175,62,0,0,0.0770338 -34817,7617:124,-174,62,0,0,0.0773852 -34818,7617:123,-173,62,0,0,0.0774291 -34819,7617:122,-172,62,0,0,0.0770046 -34820,7617:121,-171,62,0,0,0.0768732 -34821,7617:120,-170,62,0,0,0.0770191 -34822,7616:229,-169,62,0,0,0.0771873 -34823,7616:228,-168,62,0,0,0.0769462 -34824,7616:227,-167,62,0,0,0.0770338 -34825,7616:226,-166,62,0,0,0.0772751 -34826,7616:225,-165,62,0,0,0.0769462 -34827,7616:124,-164,62,0,0,0.0767929 -34828,7616:123,-163,62,0,0,0.0768076 -34829,7616:122,-162,62,0,0,0.0769024 -34830,7616:121,-161,62,0,0,0.0769462 -34831,7616:120,-160,62,0,0,0.076742 -34832,7615:229,-159,62,0,0,0.0770191 -34833,7607:226,-76,62,0,0,0.0766475 -34834,7607:123,-73,62,0,0,0.0777084 -34835,7607:121,-71,62,0,0,0.0768221 -34836,7607:120,-70,62,0,0,0.0771433 -34837,7606:229,-69,62,0,0,0.0768441 -34838,7606:228,-68,62,0,0,0.076742 -34839,7606:227,-67,62,0,0,0.0767567 -34840,7606:226,-66,62,0,0,0.0768732 -34841,7606:225,-65,62,0,0,0.0764586 -34842,7606:124,-64,62,0,0,0.0765457 -34843,7606:122,-62,62,0,0,0.0765457 -34844,7605:124,-54,62,0,0,0.0767274 -34845,7605:123,-53,62,0,0,0.0765457 -34846,7605:122,-52,62,0,0,0.0762485 -34847,7605:121,-51,62,0,0,0.0764006 -34848,7605:120,-50,62,0,0,0.0765384 -34849,7604:229,-49,62,0,0,0.0763933 -34850,7604:228,-48,62,0,0,0.0773559 -34851,7604:227,-47,62,0,0,0.0796673 -34852,7604:226,-46,62,0,0,0.081448 -34853,7604:225,-45,62,0,0,0.0844649 -34854,7602:121,-21,62,0,0,0.076039 -34855,7602:120,-20,62,0,0,0.0762123 -34856,7601:229,-19,62,0,0,0.0773118 -34857,7601:228,-18,62,0,0,0.0811029 -34858,7601:227,-17,62,0,0,0.0848709 -34859,7601:226,-16,62,0,0,0.0862291 -34860,7601:225,-15,62,0,0,0.087173 -34861,7601:124,-14,62,0,0,0.0886723 -34862,7601:123,-13,62,0,0,0.0909143 -34863,7601:122,-12,62,0,0,0.0928777 -34864,7601:121,-11,62,0,0,0.0933288 -34865,7601:120,-10,62,0,0,0.0938432 -34866,7600:229,-9,62,0,0,0.0978763 -34867,7600:228,-8,62,0,0,0.117942 -34868,7600:227,-7,62,0,0,0.135591 -34869,7600:226,-6,62,0,0,0.140035 -34870,7600:225,-5,62,0,0,0.15327 -34871,7600:124,-4,62,0,0,0.150964 -34872,7600:123,-3,62,0,0,0.151942 -34873,7600:122,-2,62,0,0,0.159891 -34874,7600:121,-1,62,0,0,0.167313 -34875,1600:121,0,62,0,0,0.177244 -34876,1600:121,1,62,0,0,0.180412 -34877,1600:122,2,62,0,0,0.177499 -34878,1600:123,3,62,0,0,0.179503 -34879,1600:124,4,62,0,0,0.177859 -34880,1601:226,16,62,0,0,0.0957918 -34881,1601:227,17,62,0,0,0.102706 -34882,1601:228,18,62,0,0,0.0983127 -34883,1601:229,19,62,0,0,0.0982763 -34884,1602:120,20,62,0,0,0.104087 -34885,1602:121,21,62,0,0,0.10448 -34886,1614:226,146,62,0,0,0.0821581 -34887,1614:227,147,62,0,0,0.0819182 -34888,1614:229,149,62,0,0,0.0811871 -34889,1615:120,150,62,0,0,0.0805531 -34890,1615:121,151,62,0,0,0.0802492 -34891,1615:122,152,62,0,0,0.0801509 -34892,1615:123,153,62,0,0,0.0802872 -34893,1615:124,154,62,0,0,0.0807207 -34894,1615:226,156,62,0,0,0.0807056 -34895,1615:227,157,62,0,0,0.0805531 -34896,1615:228,158,62,0,0,0.0803025 -34897,1615:229,159,62,0,0,0.0800525 -34898,1616:120,160,62,0,0,0.07969 -34899,1616:121,161,62,0,0,0.0793666 -34900,1616:122,162,62,0,0,0.0792165 -34901,1616:123,163,62,0,0,0.0787009 -34902,1616:124,164,62,0,0,0.0781514 -34903,1616:225,165,62,0,0,0.0777232 -34904,1616:226,166,62,0,0,0.0774365 -34905,1616:227,167,62,0,0,0.0772166 -34906,1616:228,168,62,0,0,0.077063 -34907,1616:229,169,62,0,0,0.0769534 -34908,1617:120,170,62,0,0,0.0768732 -34909,1617:121,171,62,0,0,0.0768221 -34910,1617:122,172,62,0,0,0.0767858 -34911,1617:123,173,62,0,0,0.0767567 -34912,1617:124,174,62,0,0,0.0767203 -34913,1617:225,175,62,0,0,0.0766839 -34914,1617:226,176,62,0,0,0.0766401 -34915,1617:227,177,62,0,0,0.0765967 -34916,1617:228,178,62,0,0,0.076415 -34917,1617:229,179,62,0,0,0.0763716 -34918,1618:120,180,62,0,0,0.0766839 -34919,7618:130,-180,63,0,0,0.0764006 -34920,7617:239,-179,63,0,0,0.0763427 -34921,7617:238,-178,63,0,0,0.0765676 -34922,7617:237,-177,63,0,0,0.077224 -34923,7617:236,-176,63,0,0,0.0773924 -34924,7617:235,-175,63,0,0,0.077297 -34925,7617:134,-174,63,0,0,0.0771507 -34926,7617:133,-173,63,0,0,0.0773263 -34927,7617:132,-172,63,0,0,0.0774584 -34928,7617:131,-171,63,0,0,0.077224 -34929,7617:130,-170,63,0,0,0.0770996 -34930,7616:239,-169,63,0,0,0.0770264 -34931,7616:238,-168,63,0,0,0.0767929 -34932,7616:237,-167,63,0,0,0.0767929 -34933,7616:236,-166,63,0,0,0.0769315 -34934,7616:235,-165,63,0,0,0.077224 -34935,7616:134,-164,63,0,0,0.0771067 -34936,7616:133,-163,63,0,0,0.0772751 -34937,7616:132,-162,63,0,0,0.0773559 -34938,7616:131,-161,63,0,0,0.0773924 -34939,7616:130,-160,63,0,0,0.0773411 -34940,7615:239,-159,63,0,0,0.0773118 -34941,7615:238,-158,63,0,0,0.0773192 -34942,7615:237,-157,63,0,0,0.0773704 -34943,7615:236,-156,63,0,0,0.0773998 -34944,7615:235,-155,63,0,0,0.0775026 -34945,7615:133,-153,63,0,0,0.0783218 -34946,7607:133,-73,63,0,0,0.0780035 -34947,7606:237,-67,63,0,0,0.0767274 -34948,7606:236,-66,63,0,0,0.0768076 -34949,7606:235,-65,63,0,0,0.0763137 -34950,7606:134,-64,63,0,0,0.0763137 -34951,7606:133,-63,63,0,0,0.0767274 -34952,7606:132,-62,63,0,0,0.0762775 -34953,7606:131,-61,63,0,0,0.0771799 -34954,7605:134,-54,63,0,0,0.076713 -34955,7605:133,-53,63,0,0,0.0762413 -34956,7605:132,-52,63,0,0,0.0760606 -34957,7605:131,-51,63,0,0,0.0762267 -34958,7605:130,-50,63,0,0,0.076386 -34959,7604:239,-49,63,0,0,0.076205 -34960,7604:238,-48,63,0,0,0.0762775 -34961,7604:237,-47,63,0,0,0.0784555 -34962,7604:236,-46,63,0,0,0.0791566 -34963,7604:235,-45,63,0,0,0.0782775 -34964,7604:134,-44,63,0,0,0.0770996 -34965,7602:132,-22,63,0,0,0.0762123 -34966,7602:131,-21,63,0,0,0.0761545 -34967,7602:130,-20,63,0,0,0.0762558 -34968,7601:239,-19,63,0,0,0.0759811 -34969,7601:238,-18,63,0,0,0.0771433 -34970,7601:237,-17,63,0,0,0.0854633 -34971,7601:236,-16,63,0,0,0.093103 -34972,7601:235,-15,63,0,0,0.08764 -34973,7601:134,-14,63,0,0,0.0888884 -34974,7601:133,-13,63,0,0,0.091212 -34975,7601:132,-12,63,0,0,0.0926961 -34976,7601:131,-11,63,0,0,0.094395 -34977,7601:130,-10,63,0,0,0.0939392 -34978,7600:239,-9,63,0,0,0.0994388 -34979,7600:238,-8,63,0,0,0.124676 -34980,7600:237,-7,63,0,0,0.147301 -34981,7600:236,-6,63,0,0,0.151743 -34982,7600:235,-5,63,0,0,0.1543 -34983,7600:134,-4,63,0,0,0.163329 -34984,7600:133,-3,63,0,0,0.168246 -34985,7600:132,-2,63,0,0,0.173147 -34986,7600:131,-1,63,0,0,0.176929 -34987,1600:131,0,63,0,0,0.175127 -34988,1600:131,1,63,0,0,0.174252 -34989,1600:132,2,63,0,0,0.173102 -34990,1600:133,3,63,0,0,0.1679 -34991,1600:134,4,63,0,0,0.176257 -34992,1600:235,5,63,0,0,0.165219 -34993,1602:130,20,63,0,0,0.109456 -34994,1602:131,21,63,0,0,0.10735 -34995,1614:237,147,63,0,0,0.0827254 -34996,1614:238,148,63,0,0,0.0820496 -34997,1614:239,149,63,0,0,0.0812254 -34998,1615:130,150,63,0,0,0.0808122 -34999,1615:131,151,63,0,0,0.0803479 -35000,1615:132,152,63,0,0,0.0801204 -35001,1615:133,153,63,0,0,0.0801812 -35002,1615:134,154,63,0,0,0.0804392 -35003,1615:235,155,63,0,0,0.0803479 -35004,1615:236,156,63,0,0,0.0803935 -35005,1615:237,157,63,0,0,0.0803101 -35006,1615:238,158,63,0,0,0.0798256 -35007,1616:131,161,63,0,0,0.0787755 -35008,1616:132,162,63,0,0,0.0782255 -35009,1616:133,163,63,0,0,0.0778634 -35010,1616:134,164,63,0,0,0.0776127 -35011,1616:235,165,63,0,0,0.0773485 -35012,1616:236,166,63,0,0,0.0770996 -35013,1616:237,167,63,0,0,0.0769024 -35014,1616:238,168,63,0,0,0.0767347 -35015,1616:239,169,63,0,0,0.0765967 -35016,1617:130,170,63,0,0,0.0765457 -35017,1617:131,171,63,0,0,0.0765384 -35018,1617:132,172,63,0,0,0.0766184 -35019,1617:133,173,63,0,0,0.0766328 -35020,1617:134,174,63,0,0,0.0765967 -35021,1617:235,175,63,0,0,0.0765603 -35022,1617:236,176,63,0,0,0.0765457 -35023,1617:237,177,63,0,0,0.0765384 -35024,1617:238,178,63,0,0,0.0765384 -35025,1617:239,179,63,0,0,0.0764803 -35026,1618:130,180,63,0,0,0.0764006 -35027,7618:140,-180,64,0,0,0.0764369 -35028,7617:249,-179,64,0,0,0.0763643 -35029,7617:248,-178,64,0,0,0.076386 -35030,7617:247,-177,64,0,0,0.0767347 -35031,7617:246,-176,64,0,0,0.0765384 -35032,7617:245,-175,64,0,0,0.0767274 -35033,7617:144,-174,64,0,0,0.0771141 -35034,7617:143,-173,64,0,0,0.0772166 -35035,7617:142,-172,64,0,0,0.0769825 -35036,7617:141,-171,64,0,0,0.0767274 -35037,7617:140,-170,64,0,0,0.076582 -35038,7616:249,-169,64,0,0,0.0765967 -35039,7616:248,-168,64,0,0,0.0766401 -35040,7616:247,-167,64,0,0,0.0766621 -35041,7616:246,-166,64,0,0,0.0766765 -35042,7616:245,-165,64,0,0,0.0767347 -35043,7616:144,-164,64,0,0,0.0766765 -35044,7616:143,-163,64,0,0,0.0767494 -35045,7616:142,-162,64,0,0,0.0767858 -35046,7616:141,-161,64,0,0,0.0769315 -35047,7616:140,-160,64,0,0,0.0770409 -35048,7615:249,-159,64,0,0,0.0770191 -35049,7615:248,-158,64,0,0,0.0768514 -35050,7615:247,-157,64,0,0,0.076742 -35051,7615:246,-156,64,0,0,0.0766475 -35052,7615:245,-155,64,0,0,0.0767347 -35053,7615:144,-154,64,0,0,0.0772311 -35054,7615:143,-153,64,0,0,0.0774365 -35055,7615:142,-152,64,0,0,0.0785446 -35056,7606:247,-67,64,0,0,0.0763354 -35057,7606:246,-66,64,0,0,0.0765022 -35058,7606:245,-65,64,0,0,0.0768441 -35059,7606:144,-64,64,0,0,0.076524 -35060,7606:142,-62,64,0,0,0.0765457 -35061,7605:245,-55,64,0,0,0.0766765 -35062,7605:144,-54,64,0,0,0.0764586 -35063,7605:143,-53,64,0,0,0.0761111 -35064,7605:142,-52,64,0,0,0.0759595 -35065,7605:141,-51,64,0,0,0.07614 -35066,7605:140,-50,64,0,0,0.0763281 -35067,7604:249,-49,64,0,0,0.0761978 -35068,7604:248,-48,64,0,0,0.0760679 -35069,7604:247,-47,64,0,0,0.0766548 -35070,7604:246,-46,64,0,0,0.0767638 -35071,7604:245,-45,64,0,0,0.0774071 -35072,7604:144,-44,64,0,0,0.0777158 -35073,7602:143,-23,64,0,0,0.0766038 -35074,7602:141,-21,64,0,0,0.0762702 -35075,7602:140,-20,64,0,0,0.0760895 -35076,7601:249,-19,64,0,0,0.0759234 -35077,7601:248,-18,64,0,0,0.0760317 -35078,7601:247,-17,64,0,0,0.0765603 -35079,7601:246,-16,64,0,0,0.0865699 -35080,7601:245,-15,64,0,0,0.0984587 -35081,7601:144,-14,64,0,0,0.0918614 -35082,7601:143,-13,64,0,0,0.101772 -35083,7601:142,-12,64,0,0,0.104039 -35084,7601:141,-11,64,0,0,0.103934 -35085,7601:140,-10,64,0,0,0.101706 -35086,7600:249,-9,64,0,0,0.112548 -35087,7600:248,-8,64,0,0,0.130437 -35088,7600:247,-7,64,0,0,0.138924 -35089,7600:246,-6,64,0,0,0.147689 -35090,7600:245,-5,64,0,0,0.14712 -35091,7600:144,-4,64,0,0,0.157886 -35092,7600:143,-3,64,0,0,0.171082 -35093,7600:142,-2,64,0,0,0.160818 -35094,7600:141,-1,64,0,0,0.163301 -35095,1600:141,0,64,0,0,0.167313 -35096,1600:141,1,64,0,0,0.166755 -35097,1600:142,2,64,0,0,0.160596 -35098,1600:143,3,64,0,0,0.163273 -35099,1600:144,4,64,0,0,0.167929 -35100,1600:245,5,64,0,0,0.174134 -35101,1600:246,6,64,0,0,0.172442 -35102,1601:140,10,64,0,0,0.160915 -35103,1602:141,21,64,0,0,0.104259 -35104,1614:248,148,64,0,0,0.0816251 -35105,1614:249,149,64,0,0,0.0802721 -35106,1615:140,150,64,0,0,0.0800599 -35107,1615:141,151,64,0,0,0.0803708 -35108,1615:142,152,64,0,0,0.0799088 -35109,1615:143,153,64,0,0,0.0797277 -35110,1615:248,158,64,0,0,0.0788053 -35111,1615:249,159,64,0,0,0.0786116 -35112,1616:140,160,64,0,0,0.0785446 -35113,1616:141,161,64,0,0,0.0782922 -35114,1616:142,162,64,0,0,0.0777747 -35115,1616:143,163,64,0,0,0.0772825 -35116,1616:144,164,64,0,0,0.0770775 -35117,1616:245,165,64,0,0,0.0769168 -35118,1616:246,166,64,0,0,0.0766621 -35119,1616:247,167,64,0,0,0.076415 -35120,1616:248,168,64,0,0,0.076234 -35121,1616:249,169,64,0,0,0.0761907 -35122,1617:140,170,64,0,0,0.0762702 -35123,1617:141,171,64,0,0,0.0763208 -35124,1617:142,172,64,0,0,0.0763643 -35125,1617:143,173,64,0,0,0.076415 -35126,1617:144,174,64,0,0,0.0764442 -35127,1617:245,175,64,0,0,0.0764659 -35128,1617:246,176,64,0,0,0.0765166 -35129,1617:247,177,64,0,0,0.0765313 -35130,1617:248,178,64,0,0,0.076524 -35131,1617:249,179,64,0,0,0.0764876 -35132,1618:140,180,64,0,0,0.0764369 -35133,7618:350,-180,65,0,0,0.0763643 -35134,7617:459,-179,65,0,0,0.0763281 -35135,7617:458,-178,65,0,0,0.0762702 -35136,7617:457,-177,65,0,0,0.0762702 -35137,7617:456,-176,65,0,0,0.0762558 -35138,7617:455,-175,65,0,0,0.0765893 -35139,7617:354,-174,65,0,0,0.0768149 -35140,7617:353,-173,65,0,0,0.0767858 -35141,7617:352,-172,65,0,0,0.0766184 -35142,7617:351,-171,65,0,0,0.0764586 -35143,7617:350,-170,65,0,0,0.0765384 -35144,7616:459,-169,65,0,0,0.076713 -35145,7616:458,-168,65,0,0,0.0767494 -35146,7616:457,-167,65,0,0,0.0766184 -35147,7616:456,-166,65,0,0,0.0766548 -35148,7616:455,-165,65,0,0,0.0766912 -35149,7616:354,-164,65,0,0,0.0767494 -35150,7616:353,-163,65,0,0,0.0767638 -35151,7616:352,-162,65,0,0,0.0768003 -35152,7616:351,-161,65,0,0,0.0766983 -35153,7616:350,-160,65,0,0,0.0767494 -35154,7615:459,-159,65,0,0,0.0766983 -35155,7615:458,-158,65,0,0,0.0765166 -35156,7615:457,-157,65,0,0,0.0764006 -35157,7615:456,-156,65,0,0,0.076386 -35158,7615:455,-155,65,0,0,0.0765022 -35159,7615:354,-154,65,0,0,0.0769168 -35160,7615:353,-153,65,0,0,0.0771433 -35161,7615:352,-152,65,0,0,0.0776127 -35162,7606:354,-64,65,0,0,0.0767567 -35163,7606:351,-61,65,0,0,0.0768221 -35164,7605:456,-56,65,0,0,0.0767274 -35165,7605:455,-55,65,0,0,0.0768003 -35166,7605:354,-54,65,0,0,0.0764803 -35167,7605:353,-53,65,0,0,0.0760317 -35168,7605:352,-52,65,0,0,0.0761834 -35169,7605:351,-51,65,0,0,0.0762629 -35170,7605:350,-50,65,0,0,0.0763064 -35171,7604:459,-49,65,0,0,0.0762485 -35172,7604:458,-48,65,0,0,0.076039 -35173,7604:457,-47,65,0,0,0.0760317 -35174,7604:456,-46,65,0,0,0.0761978 -35175,7604:455,-45,65,0,0,0.0763571 -35176,7604:354,-44,65,0,0,0.0768076 -35177,7604:353,-43,65,0,0,0.0755352 -35178,7602:351,-21,65,0,0,0.076234 -35179,7602:350,-20,65,0,0,0.0760099 -35180,7601:459,-19,65,0,0,0.0759379 -35181,7601:458,-18,65,0,0,0.0759595 -35182,7601:457,-17,65,0,0,0.0760749 -35183,7601:456,-16,65,0,0,0.0771141 -35184,7601:455,-15,65,0,0,0.0997334 -35185,7601:354,-14,65,0,0,0.112219 -35186,7601:353,-13,65,0,0,0.107311 -35187,7601:352,-12,65,0,0,0.104808 -35188,7601:351,-11,65,0,0,0.10738 -35189,7601:350,-10,65,0,0,0.117632 -35190,7600:459,-9,65,0,0,0.125102 -35191,7600:458,-8,65,0,0,0.130484 -35192,7600:457,-7,65,0,0,0.138164 -35193,7600:456,-6,65,0,0,0.150557 -35194,7600:455,-5,65,0,0,0.154246 -35195,7600:354,-4,65,0,0,0.159766 -35196,7600:353,-3,65,0,0,0.158762 -35197,7600:352,-2,65,0,0,0.139985 -35198,7600:351,-1,65,0,0,0.13863 -35199,1600:351,0,65,0,0,0.131842 -35200,1600:351,1,65,0,0,0.13996 -35201,1600:352,2,65,0,0,0.151044 -35202,1600:353,3,65,0,0,0.15715 -35203,1600:354,4,65,0,0,0.153177 -35204,1600:455,5,65,0,0,0.164399 -35205,1600:456,6,65,0,0,0.16347 -35206,1600:457,7,65,0,0,0.161456 -35207,1600:458,8,65,0,0,0.161777 -35208,1600:459,9,65,0,0,0.16637 -35209,1601:350,10,65,0,0,0.162111 -35210,1601:351,11,65,0,0,0.159546 -35211,1601:352,12,65,0,0,0.156837 -35212,1601:353,13,65,0,0,0.151875 -35213,1602:350,20,65,0,0,0.104759 -35214,1602:351,21,65,0,0,0.0974781 -35215,1614:457,147,65,0,0,0.0811335 -35216,1614:458,148,65,0,0,0.079705 -35217,1614:459,149,65,0,0,0.0790967 -35218,1615:350,150,65,0,0,0.0787905 -35219,1615:351,151,65,0,0,0.079532 -35220,1615:352,152,65,0,0,0.079705 -35221,1615:353,153,65,0,0,0.0795469 -35222,1615:457,157,65,0,0,0.0783665 -35223,1615:458,158,65,0,0,0.0781737 -35224,1615:459,159,65,0,0,0.0780184 -35225,1616:350,160,65,0,0,0.0777232 -35226,1616:351,161,65,0,0,0.0774145 -35227,1616:352,162,65,0,0,0.0771067 -35228,1616:353,163,65,0,0,0.0768514 -35229,1616:354,164,65,0,0,0.0766111 -35230,1616:455,165,65,0,0,0.076386 -35231,1616:456,166,65,0,0,0.0761907 -35232,1616:457,167,65,0,0,0.0760533 -35233,1616:458,168,65,0,0,0.0760749 -35234,1616:459,169,65,0,0,0.07614 -35235,1617:350,170,65,0,0,0.0762123 -35236,1617:351,171,65,0,0,0.0762775 -35237,1617:352,172,65,0,0,0.07635 -35238,1617:353,173,65,0,0,0.0764079 -35239,1617:354,174,65,0,0,0.0764732 -35240,1617:455,175,65,0,0,0.0765022 -35241,1617:456,176,65,0,0,0.0765022 -35242,1617:457,177,65,0,0,0.0765093 -35243,1617:458,178,65,0,0,0.0764659 -35244,1617:459,179,65,0,0,0.0764296 -35245,1618:350,180,65,0,0,0.0763643 -35246,7618:360,-180,66,0,0,0.0764223 -35247,7617:469,-179,66,0,0,0.0763571 -35248,7617:468,-178,66,0,0,0.0763208 -35249,7617:467,-177,66,0,0,0.0763064 -35250,7617:466,-176,66,0,0,0.0762991 -35251,7617:465,-175,66,0,0,0.0764732 -35252,7617:364,-174,66,0,0,0.0765457 -35253,7617:363,-173,66,0,0,0.076582 -35254,7617:362,-172,66,0,0,0.0765676 -35255,7617:361,-171,66,0,0,0.0765967 -35256,7617:360,-170,66,0,0,0.0766839 -35257,7616:469,-169,66,0,0,0.0766839 -35258,7616:468,-168,66,0,0,0.0768149 -35259,7616:467,-167,66,0,0,0.0768732 -35260,7616:466,-166,66,0,0,0.0768732 -35261,7616:465,-165,66,0,0,0.0768877 -35262,7616:364,-164,66,0,0,0.0769607 -35263,7616:363,-163,66,0,0,0.0770117 -35264,7616:362,-162,66,0,0,0.0769462 -35265,7616:361,-161,66,0,0,0.0767785 -35266,7616:360,-160,66,0,0,0.0766401 -35267,7615:469,-159,66,0,0,0.076553 -35268,7615:468,-158,66,0,0,0.0764586 -35269,7615:467,-157,66,0,0,0.076386 -35270,7615:466,-156,66,0,0,0.0763427 -35271,7615:465,-155,66,0,0,0.0763427 -35272,7615:364,-154,66,0,0,0.0764223 -35273,7615:363,-153,66,0,0,0.0767274 -35274,7615:362,-152,66,0,0,0.0767858 -35275,7615:361,-151,66,0,0,0.0773044 -35276,7615:360,-150,66,0,0,0.0774145 -35277,7607:362,-72,66,0,0,0.0779814 -35278,7607:361,-71,66,0,0,0.077679 -35279,7607:360,-70,66,0,0,0.0775246 -35280,7606:364,-64,66,0,0,0.0773411 -35281,7606:363,-63,66,0,0,0.0762267 -35282,7605:465,-55,66,0,0,0.0769534 -35283,7605:364,-54,66,0,0,0.0764949 -35284,7605:363,-53,66,0,0,0.0760679 -35285,7605:362,-52,66,0,0,0.0760606 -35286,7605:361,-51,66,0,0,0.0761111 -35287,7605:360,-50,66,0,0,0.0761256 -35288,7604:469,-49,66,0,0,0.0761256 -35289,7604:468,-48,66,0,0,0.076039 -35290,7604:467,-47,66,0,0,0.0761111 -35291,7604:466,-46,66,0,0,0.0766038 -35292,7604:465,-45,66,0,0,0.0764876 -35293,7604:364,-44,66,0,0,0.0767785 -35294,7604:363,-43,66,0,0,0.0771873 -35295,7602:362,-22,66,0,0,0.0766765 -35296,7602:361,-21,66,0,0,0.0761472 -35297,7602:360,-20,66,0,0,0.0759379 -35298,7601:469,-19,66,0,0,0.0759091 -35299,7601:468,-18,66,0,0,0.0759019 -35300,7601:467,-17,66,0,0,0.0759668 -35301,7601:466,-16,66,0,0,0.0767929 -35302,7601:465,-15,66,0,0,0.086116 -35303,7601:364,-14,66,0,0,0.115937 -35304,7601:363,-13,66,0,0,0.113433 -35305,7601:362,-12,66,0,0,0.110239 -35306,7601:361,-11,66,0,0,0.116274 -35307,7601:360,-10,66,0,0,0.121154 -35308,7600:469,-9,66,0,0,0.137578 -35309,7600:468,-8,66,0,0,0.143409 -35310,7600:467,-7,66,0,0,0.145964 -35311,7600:466,-6,66,0,0,0.151809 -35312,7600:465,-5,66,0,0,0.153657 -35313,7600:364,-4,66,0,0,0.139738 -35314,7600:363,-3,66,0,0,0.131736 -35315,7600:362,-2,66,0,0,0.115139 -35316,7600:361,-1,66,0,0,0.130181 -35317,1600:361,0,66,0,0,0.132999 -35318,1600:361,1,66,0,0,0.13249 -35319,1600:362,2,66,0,0,0.138949 -35320,1600:363,3,66,0,0,0.15057 -35321,1600:364,4,66,0,0,0.150032 -35322,1600:465,5,66,0,0,0.146374 -35323,1600:466,6,66,0,0,0.152857 -35324,1600:467,7,66,0,0,0.148596 -35325,1600:468,8,66,0,0,0.156579 -35326,1600:469,9,66,0,0,0.156905 -35327,1601:360,10,66,0,0,0.146799 -35328,1601:361,11,66,0,0,0.142841 -35329,1601:362,12,66,0,0,0.141376 -35330,1601:363,13,66,0,0,0.133094 -35331,1601:364,14,66,0,0,0.133153 -35332,1601:465,15,66,0,0,0.1377 -35333,1601:466,16,66,0,0,0.138115 -35334,1601:467,17,66,0,0,0.130414 -35335,1601:468,18,66,0,0,0.118875 -35336,1601:469,19,66,0,0,0.116148 -35337,1602:360,20,66,0,0,0.101172 -35338,1602:361,21,66,0,0,0.0881591 -35339,1602:362,22,66,0,0,0.084013 -35340,1614:363,143,66,0,0,0.0793591 -35341,1614:364,144,66,0,0,0.0807131 -35342,1614:465,145,66,0,0,0.081548 -35343,1614:466,146,66,0,0,0.081034 -35344,1614:467,147,66,0,0,0.0804315 -35345,1614:468,148,66,0,0,0.0797277 -35346,1614:469,149,66,0,0,0.0791717 -35347,1615:360,150,66,0,0,0.0783144 -35348,1615:361,151,66,0,0,0.0781812 -35349,1615:362,152,66,0,0,0.0787905 -35350,1615:363,153,66,0,0,0.0794643 -35351,1615:364,154,66,0,0,0.0793139 -35352,1615:465,155,66,0,0,0.0789844 -35353,1615:466,156,66,0,0,0.0787084 -35354,1615:467,157,66,0,0,0.078218 -35355,1615:468,158,66,0,0,0.0776864 -35356,1615:469,159,66,0,0,0.077363 -35357,1616:360,160,66,0,0,0.0770849 -35358,1616:361,161,66,0,0,0.0767712 -35359,1616:362,162,66,0,0,0.0764803 -35360,1616:363,163,66,0,0,0.0762918 -35361,1616:364,164,66,0,0,0.0761834 -35362,1616:465,165,66,0,0,0.0760967 -35363,1616:466,166,66,0,0,0.076039 -35364,1616:467,167,66,0,0,0.0760895 -35365,1616:468,168,66,0,0,0.0761761 -35366,1616:469,169,66,0,0,0.0762123 -35367,1617:360,170,66,0,0,0.0762413 -35368,1617:361,171,66,0,0,0.0762991 -35369,1617:362,172,66,0,0,0.0763643 -35370,1617:363,173,66,0,0,0.0764296 -35371,1617:364,174,66,0,0,0.0764732 -35372,1617:465,175,66,0,0,0.0764513 -35373,1617:466,176,66,0,0,0.0764513 -35374,1617:467,177,66,0,0,0.0764513 -35375,1617:468,178,66,0,0,0.0764513 -35376,1617:469,179,66,0,0,0.0764659 -35377,1618:360,180,66,0,0,0.0764223 -35378,7618:370,-180,67,0,0,0.0764803 -35379,7617:479,-179,67,0,0,0.0764732 -35380,7617:478,-178,67,0,0,0.0764369 -35381,7617:477,-177,67,0,0,0.076386 -35382,7617:476,-176,67,0,0,0.0763933 -35383,7617:475,-175,67,0,0,0.0763789 -35384,7617:374,-174,67,0,0,0.0765313 -35385,7617:373,-173,67,0,0,0.0766475 -35386,7617:372,-172,67,0,0,0.0766621 -35387,7617:371,-171,67,0,0,0.0766692 -35388,7617:370,-170,67,0,0,0.0767494 -35389,7616:479,-169,67,0,0,0.0767567 -35390,7616:478,-168,67,0,0,0.0767494 -35391,7616:477,-167,67,0,0,0.0767567 -35392,7616:476,-166,67,0,0,0.0767347 -35393,7616:475,-165,67,0,0,0.076742 -35394,7616:374,-164,67,0,0,0.0768294 -35395,7616:373,-163,67,0,0,0.0769534 -35396,7616:372,-162,67,0,0,0.0770117 -35397,7616:371,-161,67,0,0,0.0769024 -35398,7616:370,-160,67,0,0,0.076713 -35399,7615:479,-159,67,0,0,0.0765603 -35400,7615:478,-158,67,0,0,0.0764586 -35401,7615:477,-157,67,0,0,0.076415 -35402,7615:476,-156,67,0,0,0.0763716 -35403,7615:475,-155,67,0,0,0.0763571 -35404,7615:374,-154,67,0,0,0.07635 -35405,7615:373,-153,67,0,0,0.0763354 -35406,7615:372,-152,67,0,0,0.076553 -35407,7615:371,-151,67,0,0,0.076553 -35408,7615:370,-150,67,0,0,0.0761472 -35409,7607:370,-70,67,0,0,0.0771873 -35410,7606:479,-69,67,0,0,0.0773118 -35411,7606:478,-68,67,0,0,0.0775539 -35412,7606:475,-65,67,0,0,0.077797 -35413,7605:475,-55,67,0,0,0.0768585 -35414,7605:374,-54,67,0,0,0.0766912 -35415,7605:373,-53,67,0,0,0.0765022 -35416,7605:372,-52,67,0,0,0.0761183 -35417,7605:371,-51,67,0,0,0.0761111 -35418,7605:370,-50,67,0,0,0.0760533 -35419,7604:479,-49,67,0,0,0.076039 -35420,7604:478,-48,67,0,0,0.0759523 -35421,7604:477,-47,67,0,0,0.0764296 -35422,7604:476,-46,67,0,0,0.0769242 -35423,7604:475,-45,67,0,0,0.0768076 -35424,7604:374,-44,67,0,0,0.0771288 -35425,7604:373,-43,67,0,0,0.0761545 -35426,7602:373,-23,67,0,0,0.0771433 -35427,7602:371,-21,67,0,0,0.0762991 -35428,7602:370,-20,67,0,0,0.0760099 -35429,7601:479,-19,67,0,0,0.0759595 -35430,7601:478,-18,67,0,0,0.075974 -35431,7601:477,-17,67,0,0,0.0759523 -35432,7601:476,-16,67,0,0,0.0771726 -35433,7601:475,-15,67,0,0,0.103228 -35434,7601:374,-14,67,0,0,0.118864 -35435,7601:373,-13,67,0,0,0.115758 -35436,7601:372,-12,67,0,0,0.128872 -35437,7601:371,-11,67,0,0,0.133771 -35438,7601:370,-10,67,0,0,0.138998 -35439,7600:479,-9,67,0,0,0.141226 -35440,7600:478,-8,67,0,0,0.145082 -35441,7600:477,-7,67,0,0,0.1459 -35442,7600:476,-6,67,0,0,0.141813 -35443,7600:475,-5,67,0,0,0.135182 -35444,7600:374,-4,67,0,0,0.12123 -35445,7600:373,-3,67,0,0,0.106467 -35446,7600:372,-2,67,0,0,0.0980218 -35447,7600:371,-1,67,0,0,0.108736 -35448,1600:371,0,67,0,0,0.127437 -35449,1600:371,1,67,0,0,0.13505 -35450,1600:372,2,67,0,0,0.137529 -35451,1600:373,3,67,0,0,0.147069 -35452,1600:374,4,67,0,0,0.147198 -35453,1600:475,5,67,0,0,0.14451 -35454,1600:476,6,67,0,0,0.135266 -35455,1600:477,7,67,0,0,0.137944 -35456,1600:478,8,67,0,0,0.142264 -35457,1600:479,9,67,0,0,0.140381 -35458,1601:370,10,67,0,0,0.135483 -35459,1601:371,11,67,0,0,0.128504 -35460,1601:372,12,67,0,0,0.126515 -35461,1601:373,13,67,0,0,0.126538 -35462,1601:374,14,67,0,0,0.126061 -35463,1601:475,15,67,0,0,0.125192 -35464,1601:476,16,67,0,0,0.13108 -35465,1601:477,17,67,0,0,0.119999 -35466,1601:478,18,67,0,0,0.103332 -35467,1601:479,19,67,0,0,0.0954098 -35468,1614:373,143,67,0,0,0.0783961 -35469,1614:374,144,67,0,0,0.0783218 -35470,1614:475,145,67,0,0,0.0786711 -35471,1614:476,146,67,0,0,0.0788203 -35472,1614:477,147,67,0,0,0.0786116 -35473,1614:478,148,67,0,0,0.0777675 -35474,1614:479,149,67,0,0,0.0782033 -35475,1615:370,150,67,0,0,0.0781367 -35476,1615:371,151,67,0,0,0.0777601 -35477,1615:372,152,67,0,0,0.0775981 -35478,1615:373,153,67,0,0,0.0775246 -35479,1615:374,154,67,0,0,0.0780552 -35480,1615:475,155,67,0,0,0.078048 -35481,1615:476,156,67,0,0,0.0775833 -35482,1615:477,157,67,0,0,0.0771067 -35483,1615:478,158,67,0,0,0.0768076 -35484,1615:479,159,67,0,0,0.0765457 -35485,1616:370,160,67,0,0,0.07635 -35486,1616:371,161,67,0,0,0.0762196 -35487,1616:372,162,67,0,0,0.0761038 -35488,1616:373,163,67,0,0,0.0760895 -35489,1616:374,164,67,0,0,0.0760822 -35490,1616:475,165,67,0,0,0.0760245 -35491,1616:476,166,67,0,0,0.0760317 -35492,1616:477,167,67,0,0,0.0761761 -35493,1616:478,168,67,0,0,0.0762413 -35494,1616:479,169,67,0,0,0.0762702 -35495,1617:370,170,67,0,0,0.0762702 -35496,1617:371,171,67,0,0,0.0763137 -35497,1617:372,172,67,0,0,0.0763789 -35498,1617:373,173,67,0,0,0.0764296 -35499,1617:374,174,67,0,0,0.0764369 -35500,1617:475,175,67,0,0,0.0764079 -35501,1617:476,176,67,0,0,0.0764006 -35502,1617:477,177,67,0,0,0.0764079 -35503,1617:478,178,67,0,0,0.0764296 -35504,1617:479,179,67,0,0,0.0764659 -35505,1618:370,180,67,0,0,0.0764803 -35506,7618:380,-180,68,0,0,0.0764803 -35507,7617:489,-179,68,0,0,0.0764949 -35508,7617:488,-178,68,0,0,0.0765022 -35509,7617:487,-177,68,0,0,0.0765022 -35510,7617:486,-176,68,0,0,0.0764732 -35511,7617:485,-175,68,0,0,0.0764876 -35512,7617:384,-174,68,0,0,0.0766111 -35513,7617:383,-173,68,0,0,0.0767274 -35514,7617:382,-172,68,0,0,0.076742 -35515,7617:381,-171,68,0,0,0.0767712 -35516,7617:380,-170,68,0,0,0.0768003 -35517,7616:489,-169,68,0,0,0.0767638 -35518,7616:488,-168,68,0,0,0.0766621 -35519,7616:487,-167,68,0,0,0.0766401 -35520,7616:486,-166,68,0,0,0.0766257 -35521,7616:485,-165,68,0,0,0.0766184 -35522,7616:384,-164,68,0,0,0.0766548 -35523,7616:383,-163,68,0,0,0.0767347 -35524,7616:382,-162,68,0,0,0.0767858 -35525,7616:381,-161,68,0,0,0.0767347 -35526,7616:380,-160,68,0,0,0.0766765 -35527,7615:489,-159,68,0,0,0.0766257 -35528,7615:488,-158,68,0,0,0.0765747 -35529,7615:487,-157,68,0,0,0.0765676 -35530,7615:486,-156,68,0,0,0.0765384 -35531,7615:485,-155,68,0,0,0.0764079 -35532,7615:384,-154,68,0,0,0.0763427 -35533,7615:383,-153,68,0,0,0.076415 -35534,7615:382,-152,68,0,0,0.0762775 -35535,7615:381,-151,68,0,0,0.07635 -35536,7615:380,-150,68,0,0,0.0759091 -35537,7614:489,-149,68,0,0,0.0755781 -35538,7606:489,-69,68,0,0,0.0771215 -35539,7606:488,-68,68,0,0,0.0772166 -35540,7606:487,-67,68,0,0,0.0774439 -35541,7606:486,-66,68,0,0,0.0775539 -35542,7605:487,-57,68,0,0,0.0769754 -35543,7605:384,-54,68,0,0,0.0765093 -35544,7605:383,-53,68,0,0,0.0764513 -35545,7605:382,-52,68,0,0,0.0760606 -35546,7605:381,-51,68,0,0,0.075974 -35547,7605:380,-50,68,0,0,0.0759379 -35548,7604:489,-49,68,0,0,0.0760679 -35549,7604:488,-48,68,0,0,0.0763137 -35550,7604:487,-47,68,0,0,0.0764442 -35551,7604:486,-46,68,0,0,0.077136 -35552,7604:485,-45,68,0,0,0.0772311 -35553,7602:382,-22,68,0,0,0.076415 -35554,7602:381,-21,68,0,0,0.0763789 -35555,7602:380,-20,68,0,0,0.0761545 -35556,7601:489,-19,68,0,0,0.0760317 -35557,7601:488,-18,68,0,0,0.0760172 -35558,7601:487,-17,68,0,0,0.0759307 -35559,7601:486,-16,68,0,0,0.0768441 -35560,7601:485,-15,68,0,0,0.0966047 -35561,7601:384,-14,68,0,0,0.125858 -35562,7601:383,-13,68,0,0,0.130881 -35563,7601:382,-12,68,0,0,0.1342 -35564,7601:381,-11,68,0,0,0.138323 -35565,7601:380,-10,68,0,0,0.137944 -35566,7600:489,-9,68,0,0,0.131349 -35567,7600:488,-8,68,0,0,0.123081 -35568,7600:485,-5,68,0,0,0.104923 -35569,7600:384,-4,68,0,0,0.117472 -35570,7600:383,-3,68,0,0,0.104808 -35571,7600:382,-2,68,0,0,0.0934331 -35572,7600:381,-1,68,0,0,0.104576 -35573,1600:381,0,68,0,0,0.121932 -35574,1600:381,1,68,0,0,0.130367 -35575,1600:382,2,68,0,0,0.136945 -35576,1600:383,3,68,0,0,0.140766 -35577,1600:384,4,68,0,0,0.135086 -35578,1600:485,5,68,0,0,0.141251 -35579,1600:486,6,68,0,0,0.132762 -35580,1600:487,7,68,0,0,0.126515 -35581,1600:488,8,68,0,0,0.125249 -35582,1600:489,9,68,0,0,0.116074 -35583,1601:380,10,68,0,0,0.109766 -35584,1601:381,11,68,0,0,0.110926 -35585,1601:382,12,68,0,0,0.117728 -35586,1601:383,13,68,0,0,0.123236 -35587,1601:384,14,68,0,0,0.120162 -35588,1601:485,15,68,0,0,0.122263 -35589,1601:486,16,68,0,0,0.123547 -35590,1601:487,17,68,0,0,0.105232 -35591,1601:488,18,68,0,0,0.0968831 -35592,1602:381,21,68,0,0,0.0781071 -35593,1602:382,22,68,0,0,0.0845602 -35594,1614:381,141,68,0,0,0.0786414 -35595,1614:382,142,68,0,0,0.0784333 -35596,1614:383,143,68,0,0,0.0781145 -35597,1614:384,144,68,0,0,0.0775833 -35598,1614:485,145,68,0,0,0.0769899 -35599,1614:486,146,68,0,0,0.0767638 -35600,1614:487,147,68,0,0,0.0767785 -35601,1614:488,148,68,0,0,0.0766983 -35602,1614:489,149,68,0,0,0.0766983 -35603,1615:380,150,68,0,0,0.0767347 -35604,1615:381,151,68,0,0,0.076713 -35605,1615:382,152,68,0,0,0.0766038 -35606,1615:383,153,68,0,0,0.076524 -35607,1615:384,154,68,0,0,0.0764803 -35608,1615:485,155,68,0,0,0.0764586 -35609,1615:486,156,68,0,0,0.0763933 -35610,1615:487,157,68,0,0,0.0763354 -35611,1615:488,158,68,0,0,0.0762702 -35612,1615:489,159,68,0,0,0.0761327 -35613,1616:380,160,68,0,0,0.0760245 -35614,1616:381,161,68,0,0,0.0759452 -35615,1616:382,162,68,0,0,0.0759307 -35616,1616:383,163,68,0,0,0.0759884 -35617,1616:384,164,68,0,0,0.0760099 -35618,1616:485,165,68,0,0,0.0759884 -35619,1616:486,166,68,0,0,0.0760172 -35620,1616:487,167,68,0,0,0.0761689 -35621,1616:488,168,68,0,0,0.0762702 -35622,1616:489,169,68,0,0,0.0762918 -35623,1617:380,170,68,0,0,0.0763064 -35624,1617:381,171,68,0,0,0.0763571 -35625,1617:382,172,68,0,0,0.0764006 -35626,1617:383,173,68,0,0,0.0764223 -35627,1617:384,174,68,0,0,0.076415 -35628,1617:485,175,68,0,0,0.0764006 -35629,1617:486,176,68,0,0,0.0764006 -35630,1617:487,177,68,0,0,0.0764006 -35631,1617:488,178,68,0,0,0.0764296 -35632,1617:489,179,68,0,0,0.0764659 -35633,1618:380,180,68,0,0,0.0764803 -35634,7618:390,-180,69,0,0,0.076524 -35635,7617:499,-179,69,0,0,0.0765313 -35636,7617:498,-178,69,0,0,0.0765313 -35637,7617:497,-177,69,0,0,0.0765603 -35638,7617:496,-176,69,0,0,0.0765893 -35639,7617:495,-175,69,0,0,0.0765603 -35640,7617:394,-174,69,0,0,0.0766257 -35641,7617:393,-173,69,0,0,0.0767494 -35642,7617:392,-172,69,0,0,0.0767638 -35643,7617:391,-171,69,0,0,0.0767347 -35644,7617:390,-170,69,0,0,0.0766839 -35645,7616:499,-169,69,0,0,0.0766257 -35646,7616:498,-168,69,0,0,0.0766038 -35647,7616:497,-167,69,0,0,0.0766328 -35648,7616:496,-166,69,0,0,0.0766257 -35649,7616:495,-165,69,0,0,0.0766184 -35650,7616:394,-164,69,0,0,0.0765893 -35651,7616:393,-163,69,0,0,0.0765457 -35652,7616:392,-162,69,0,0,0.0765166 -35653,7616:391,-161,69,0,0,0.0765457 -35654,7616:390,-160,69,0,0,0.076582 -35655,7615:499,-159,69,0,0,0.0765893 -35656,7615:498,-158,69,0,0,0.0766328 -35657,7615:497,-157,69,0,0,0.0766765 -35658,7615:496,-156,69,0,0,0.0766401 -35659,7615:495,-155,69,0,0,0.0765093 -35660,7615:394,-154,69,0,0,0.0763427 -35661,7615:393,-153,69,0,0,0.0765166 -35662,7615:392,-152,69,0,0,0.0764803 -35663,7615:391,-151,69,0,0,0.0763427 -35664,7615:390,-150,69,0,0,0.076524 -35665,7614:499,-149,69,0,0,0.0765022 -35666,7614:498,-148,69,0,0,0.0765893 -35667,7614:497,-147,69,0,0,0.0766184 -35668,7614:496,-146,69,0,0,0.0764079 -35669,7607:391,-71,69,0,0,0.0777084 -35670,7607:390,-70,69,0,0,0.0774071 -35671,7606:499,-69,69,0,0,0.0771873 -35672,7606:498,-68,69,0,0,0.0769607 -35673,7606:497,-67,69,0,0,0.0771067 -35674,7605:497,-57,69,0,0,0.0769607 -35675,7605:394,-54,69,0,0,0.0762775 -35676,7605:393,-53,69,0,0,0.0759091 -35677,7605:392,-52,69,0,0,0.0761978 -35678,7605:391,-51,69,0,0,0.0762629 -35679,7605:390,-50,69,0,0,0.0761183 -35680,7604:499,-49,69,0,0,0.076234 -35681,7604:498,-48,69,0,0,0.0763354 -35682,7604:497,-47,69,0,0,0.0766475 -35683,7602:391,-21,69,0,0,0.0763354 -35684,7602:390,-20,69,0,0,0.0761327 -35685,7601:499,-19,69,0,0,0.0760749 -35686,7601:498,-18,69,0,0,0.0760967 -35687,7601:497,-17,69,0,0,0.0759668 -35688,7601:496,-16,69,0,0,0.0777747 -35689,7601:495,-15,69,0,0,0.108647 -35690,7601:394,-14,69,0,0,0.10637 -35691,7601:393,-13,69,0,0,0.116369 -35692,7601:392,-12,69,0,0,0.123414 -35693,7601:391,-11,69,0,0,0.12863 -35694,7600:496,-6,69,0,0,0.0882168 -35695,7600:495,-5,69,0,0,0.0864561 -35696,7600:394,-4,69,0,0,0.0860432 -35697,7600:393,-3,69,0,0,0.0975774 -35698,7600:392,-2,69,0,0,0.0852147 -35699,7600:391,-1,69,0,0,0.111109 -35700,1600:391,0,69,0,0,0.120227 -35701,1600:391,1,69,0,0,0.127838 -35702,1600:392,2,69,0,0,0.134918 -35703,1600:393,3,69,0,0,0.125779 -35704,1600:394,4,69,0,0,0.117036 -35705,1600:495,5,69,0,0,0.13268 -35706,1600:496,6,69,0,0,0.127106 -35707,1600:497,7,69,0,0,0.116232 -35708,1600:498,8,69,0,0,0.118413 -35709,1600:499,9,69,0,0,0.111058 -35710,1601:390,10,69,0,0,0.105736 -35711,1601:391,11,69,0,0,0.111546 -35712,1601:392,12,69,0,0,0.117942 -35713,1601:393,13,69,0,0,0.121012 -35714,1601:394,14,69,0,0,0.112815 -35715,1601:495,15,69,0,0,0.111862 -35716,1601:496,16,69,0,0,0.115916 -35717,1601:497,17,69,0,0,0.114148 -35718,1601:498,18,69,0,0,0.105107 -35719,1601:499,19,69,0,0,0.104442 -35720,1602:390,20,69,0,0,0.0981308 -35721,1602:391,21,69,0,0,0.0957386 -35722,1614:391,141,69,0,0,0.0797503 -35723,1614:392,142,69,0,0,0.0793366 -35724,1614:393,143,69,0,0,0.0778116 -35725,1614:394,144,69,0,0,0.0769097 -35726,1614:495,145,69,0,0,0.0767567 -35727,1614:496,146,69,0,0,0.0769024 -35728,1614:497,147,69,0,0,0.0771215 -35729,1614:498,148,69,0,0,0.0772092 -35730,1614:499,149,69,0,0,0.0769973 -35731,1615:390,150,69,0,0,0.0766548 -35732,1615:391,151,69,0,0,0.0764659 -35733,1615:392,152,69,0,0,0.0765093 -35734,1615:393,153,69,0,0,0.0765384 -35735,1615:394,154,69,0,0,0.0765093 -35736,1615:495,155,69,0,0,0.0763933 -35737,1615:496,156,69,0,0,0.0761978 -35738,1615:497,157,69,0,0,0.0760895 -35739,1615:498,158,69,0,0,0.0759811 -35740,1615:499,159,69,0,0,0.0758586 -35741,1616:390,160,69,0,0,0.0758225 -35742,1616:391,161,69,0,0,0.075837 -35743,1616:392,162,69,0,0,0.0758946 -35744,1616:393,163,69,0,0,0.0759452 -35745,1616:394,164,69,0,0,0.0760029 -35746,1616:495,165,69,0,0,0.0760679 -35747,1616:496,166,69,0,0,0.0761472 -35748,1616:497,167,69,0,0,0.0762485 -35749,1616:498,168,69,0,0,0.0762702 -35750,1616:499,169,69,0,0,0.0762775 -35751,1617:390,170,69,0,0,0.0762991 -35752,1617:391,171,69,0,0,0.0763208 -35753,1617:392,172,69,0,0,0.0763643 -35754,1617:393,173,69,0,0,0.0763933 -35755,1617:394,174,69,0,0,0.076386 -35756,1617:495,175,69,0,0,0.0763933 -35757,1617:496,176,69,0,0,0.076415 -35758,1617:497,177,69,0,0,0.0764442 -35759,1617:498,178,69,0,0,0.0764949 -35760,1617:499,179,69,0,0,0.0765093 -35761,1618:390,180,69,0,0,0.076524 -35762,7718:100,-180,70,0,0,0.0765747 -35763,7717:209,-179,70,0,0,0.0765747 -35764,7717:208,-178,70,0,0,0.0765893 -35765,7717:207,-177,70,0,0,0.0766257 -35766,7717:206,-176,70,0,0,0.0766401 -35767,7717:205,-175,70,0,0,0.0766401 -35768,7717:104,-174,70,0,0,0.0766621 -35769,7717:103,-173,70,0,0,0.076713 -35770,7717:102,-172,70,0,0,0.0766839 -35771,7717:101,-171,70,0,0,0.0766475 -35772,7717:100,-170,70,0,0,0.0766328 -35773,7716:209,-169,70,0,0,0.0766111 -35774,7716:208,-168,70,0,0,0.0765747 -35775,7716:207,-167,70,0,0,0.0766038 -35776,7716:206,-166,70,0,0,0.0766401 -35777,7716:205,-165,70,0,0,0.0766184 -35778,7716:104,-164,70,0,0,0.0765967 -35779,7716:103,-163,70,0,0,0.0765166 -35780,7716:102,-162,70,0,0,0.0764876 -35781,7716:101,-161,70,0,0,0.0764949 -35782,7716:100,-160,70,0,0,0.0764803 -35783,7715:209,-159,70,0,0,0.0764732 -35784,7715:208,-158,70,0,0,0.0764876 -35785,7715:207,-157,70,0,0,0.0765457 -35786,7715:206,-156,70,0,0,0.076553 -35787,7715:205,-155,70,0,0,0.0764949 -35788,7715:104,-154,70,0,0,0.0763933 -35789,7715:103,-153,70,0,0,0.0764223 -35790,7715:102,-152,70,0,0,0.0765384 -35791,7715:101,-151,70,0,0,0.0766692 -35792,7715:100,-150,70,0,0,0.076713 -35793,7714:209,-149,70,0,0,0.0767203 -35794,7714:208,-148,70,0,0,0.0766912 -35795,7714:207,-147,70,0,0,0.0766475 -35796,7714:206,-146,70,0,0,0.0767929 -35797,7714:205,-145,70,0,0,0.0768367 -35798,7707:100,-70,70,0,0,0.0769973 -35799,7706:209,-69,70,0,0,0.0770922 -35800,7706:208,-68,70,0,0,0.0769534 -35801,7706:207,-67,70,0,0,0.0769315 -35802,7706:205,-65,70,0,0,0.0764876 -35803,7706:102,-62,70,0,0,0.0774878 -35804,7705:206,-56,70,0,0,0.0768659 -35805,7705:205,-55,70,0,0,0.0765166 -35806,7705:104,-54,70,0,0,0.07614 -35807,7705:103,-53,70,0,0,0.0760172 -35808,7705:102,-52,70,0,0,0.0759307 -35809,7705:101,-51,70,0,0,0.0759162 -35810,7705:100,-50,70,0,0,0.0760029 -35811,7704:209,-49,70,0,0,0.0760895 -35812,7704:208,-48,70,0,0,0.076046 -35813,7704:207,-47,70,0,0,0.0766475 -35814,7704:206,-46,70,0,0,0.0777527 -35815,7702:100,-20,70,0,0,0.0760749 -35816,7701:209,-19,70,0,0,0.0760822 -35817,7701:208,-18,70,0,0,0.0761472 -35818,7701:207,-17,70,0,0,0.0758443 -35819,7701:206,-16,70,0,0,0.0807435 -35820,7701:205,-15,70,0,0,0.116962 -35821,7701:104,-14,70,0,0,0.121526 -35822,7701:103,-13,70,0,0,0.1249 -35823,7701:102,-12,70,0,0,0.127895 -35824,7700:104,-4,70,0,0,0.0790967 -35825,7700:103,-3,70,0,0,0.0843219 -35826,7700:102,-2,70,0,0,0.0853509 -35827,7700:101,-1,70,0,0,0.113278 -35828,1700:101,0,70,0,0,0.12286 -35829,1700:101,1,70,0,0,0.128124 -35830,1700:102,2,70,0,0,0.131889 -35831,1700:103,3,70,0,0,0.11266 -35832,1700:104,4,70,0,0,0.105465 -35833,1700:205,5,70,0,0,0.118231 -35834,1700:206,6,70,0,0,0.105504 -35835,1700:207,7,70,0,0,0.100921 -35836,1700:208,8,70,0,0,0.0992825 -35837,1700:209,9,70,0,0,0.103408 -35838,1701:100,10,70,0,0,0.108697 -35839,1701:101,11,70,0,0,0.115548 -35840,1701:102,12,70,0,0,0.118467 -35841,1701:103,13,70,0,0,0.117568 -35842,1701:104,14,70,0,0,0.11224 -35843,1701:205,15,70,0,0,0.115045 -35844,1701:206,16,70,0,0,0.111322 -35845,1701:207,17,70,0,0,0.109937 -35846,1701:208,18,70,0,0,0.0972521 -35847,1702:101,21,70,0,0,0.0910079 -35848,1714:205,145,70,0,0,0.0770704 -35849,1714:206,146,70,0,0,0.0771654 -35850,1714:207,147,70,0,0,0.0773559 -35851,1714:208,148,70,0,0,0.0771726 -35852,1714:209,149,70,0,0,0.0766111 -35853,1715:100,150,70,0,0,0.0761689 -35854,1715:101,151,70,0,0,0.0760606 -35855,1715:102,152,70,0,0,0.0759379 -35856,1715:103,153,70,0,0,0.0759379 -35857,1715:104,154,70,0,0,0.0759379 -35858,1715:205,155,70,0,0,0.0758515 -35859,1715:206,156,70,0,0,0.0758082 -35860,1715:207,157,70,0,0,0.0758082 -35861,1715:208,158,70,0,0,0.0758298 -35862,1715:209,159,70,0,0,0.0758515 -35863,1716:100,160,70,0,0,0.0758658 -35864,1716:101,161,70,0,0,0.0759884 -35865,1716:102,162,70,0,0,0.0760317 -35866,1716:103,163,70,0,0,0.0760967 -35867,1716:104,164,70,0,0,0.076205 -35868,1716:205,165,70,0,0,0.076234 -35869,1716:206,166,70,0,0,0.0762413 -35870,1716:207,167,70,0,0,0.0762558 -35871,1716:208,168,70,0,0,0.0762558 -35872,1716:209,169,70,0,0,0.0762629 -35873,1717:100,170,70,0,0,0.0762991 -35874,1717:101,171,70,0,0,0.0763281 -35875,1717:102,172,70,0,0,0.0763643 -35876,1717:103,173,70,0,0,0.0763643 -35877,1717:104,174,70,0,0,0.0763716 -35878,1717:205,175,70,0,0,0.0763933 -35879,1717:206,176,70,0,0,0.0764223 -35880,1717:207,177,70,0,0,0.0764442 -35881,1717:208,178,70,0,0,0.0764659 -35882,1717:209,179,70,0,0,0.0765384 -35883,1718:100,180,70,0,0,0.0765747 -35884,7718:110,-180,71,0,0,0.0765893 -35885,7717:219,-179,71,0,0,0.0766111 -35886,7717:218,-178,71,0,0,0.0765967 -35887,7717:217,-177,71,0,0,0.0765967 -35888,7717:216,-176,71,0,0,0.0766401 -35889,7717:215,-175,71,0,0,0.0766548 -35890,7717:114,-174,71,0,0,0.0766621 -35891,7717:113,-173,71,0,0,0.0766257 -35892,7717:112,-172,71,0,0,0.0765747 -35893,7717:111,-171,71,0,0,0.0766038 -35894,7717:110,-170,71,0,0,0.0766912 -35895,7716:219,-169,71,0,0,0.0766839 -35896,7716:218,-168,71,0,0,0.0766111 -35897,7716:217,-167,71,0,0,0.076582 -35898,7716:216,-166,71,0,0,0.0766111 -35899,7716:215,-165,71,0,0,0.0766111 -35900,7716:114,-164,71,0,0,0.0765603 -35901,7716:113,-163,71,0,0,0.0765093 -35902,7716:112,-162,71,0,0,0.0764949 -35903,7716:111,-161,71,0,0,0.0764803 -35904,7716:110,-160,71,0,0,0.0764586 -35905,7715:219,-159,71,0,0,0.0764586 -35906,7715:218,-158,71,0,0,0.0764732 -35907,7715:217,-157,71,0,0,0.0765166 -35908,7715:216,-156,71,0,0,0.0765676 -35909,7715:215,-155,71,0,0,0.0765313 -35910,7715:114,-154,71,0,0,0.0763716 -35911,7715:113,-153,71,0,0,0.0763716 -35912,7715:112,-152,71,0,0,0.0759523 -35913,7715:111,-151,71,0,0,0.0762485 -35914,7715:110,-150,71,0,0,0.0765967 -35915,7714:219,-149,71,0,0,0.0767056 -35916,7714:218,-148,71,0,0,0.0767347 -35917,7714:217,-147,71,0,0,0.0766401 -35918,7714:216,-146,71,0,0,0.076742 -35919,7714:215,-145,71,0,0,0.0767567 -35920,7714:114,-144,71,0,0,0.0771726 -35921,7707:218,-78,71,0,0,0.0860837 -35922,7707:217,-77,71,0,0,0.0854472 -35923,7707:216,-76,71,0,0,0.0847193 -35924,7707:215,-75,71,0,0,0.0841236 -35925,7707:114,-74,71,0,0,0.083367 -35926,7707:110,-70,71,0,0,0.0770849 -35927,7706:218,-68,71,0,0,0.0769899 -35928,7706:217,-67,71,0,0,0.0768367 -35929,7706:216,-66,71,0,0,0.0768149 -35930,7706:110,-60,71,0,0,0.0769899 -35931,7705:219,-59,71,0,0,0.0769315 -35932,7705:218,-58,71,0,0,0.076895 -35933,7705:217,-57,71,0,0,0.0769754 -35934,7705:216,-56,71,0,0,0.0768294 -35935,7705:215,-55,71,0,0,0.076386 -35936,7705:112,-52,71,0,0,0.0770775 -35937,7705:111,-51,71,0,0,0.0766983 -35938,7705:110,-50,71,0,0,0.0764369 -35939,7704:219,-49,71,0,0,0.0762848 -35940,7704:218,-48,71,0,0,0.0761111 -35941,7704:217,-47,71,0,0,0.07635 -35942,7704:216,-46,71,0,0,0.077297 -35943,7704:215,-45,71,0,0,0.0771654 -35944,7702:113,-23,71,0,0,0.0764442 -35945,7702:112,-22,71,0,0,0.0763571 -35946,7702:110,-20,71,0,0,0.0761327 -35947,7701:219,-19,71,0,0,0.0761834 -35948,7701:218,-18,71,0,0,0.0759884 -35949,7701:217,-17,71,0,0,0.0762267 -35950,7701:216,-16,71,0,0,0.0789247 -35951,7701:215,-15,71,0,0,0.0824607 -35952,7701:114,-14,71,0,0,0.0817328 -35953,7701:113,-13,71,0,0,0.0874021 -35954,7701:112,-12,71,0,0,0.116686 -35955,7701:111,-11,71,0,0,0.111058 -35956,7701:110,-10,71,0,0,0.103408 -35957,7700:217,-7,71,0,0,0.0763933 -35958,7700:216,-6,71,0,0,0.0762918 -35959,7700:215,-5,71,0,0,0.0762267 -35960,7700:114,-4,71,0,0,0.0763427 -35961,7700:113,-3,71,0,0,0.076386 -35962,7700:112,-2,71,0,0,0.0810109 -35963,7700:111,-1,71,0,0,0.102073 -35964,1700:111,0,71,0,0,0.0920502 -35965,1700:111,1,71,0,0,0.100418 -35966,1700:112,2,71,0,0,0.120303 -35967,1700:113,3,71,0,0,0.114055 -35968,1700:114,4,71,0,0,0.10819 -35969,1700:215,5,71,0,0,0.100205 -35970,1700:216,6,71,0,0,0.0947292 -35971,1700:217,7,71,0,0,0.0982218 -35972,1700:218,8,71,0,0,0.098998 -35973,1700:219,9,71,0,0,0.101098 -35974,1701:110,10,71,0,0,0.102318 -35975,1701:111,11,71,0,0,0.109786 -35976,1701:112,12,71,0,0,0.11365 -35977,1701:113,13,71,0,0,0.117259 -35978,1701:114,14,71,0,0,0.102007 -35979,1701:215,15,71,0,0,0.107252 -35980,1701:216,16,71,0,0,0.110784 -35981,1701:217,17,71,0,0,0.104154 -35982,1701:218,18,71,0,0,0.0975595 -35983,1701:219,19,71,0,0,0.0907786 -35984,1702:110,20,71,0,0,0.0880518 -35985,1702:111,21,71,0,0,0.0822122 -35986,1714:216,146,71,0,0,0.0775394 -35987,1714:217,147,71,0,0,0.0772678 -35988,1714:218,148,71,0,0,0.0766401 -35989,1714:219,149,71,0,0,0.075686 -35990,1715:110,150,71,0,0,0.0759162 -35991,1715:111,151,71,0,0,0.0758803 -35992,1715:112,152,71,0,0,0.075758 -35993,1715:113,153,71,0,0,0.075765 -35994,1715:114,154,71,0,0,0.075765 -35995,1715:215,155,71,0,0,0.0757362 -35996,1715:216,156,71,0,0,0.0757362 -35997,1715:217,157,71,0,0,0.075765 -35998,1715:218,158,71,0,0,0.0758298 -35999,1715:219,159,71,0,0,0.0759452 -36000,1716:110,160,71,0,0,0.0760895 -36001,1716:111,161,71,0,0,0.076205 -36002,1716:112,162,71,0,0,0.0762413 -36003,1716:113,163,71,0,0,0.0762558 -36004,1716:114,164,71,0,0,0.0762558 -36005,1716:215,165,71,0,0,0.0762558 -36006,1716:216,166,71,0,0,0.0762558 -36007,1716:217,167,71,0,0,0.0762629 -36008,1716:218,168,71,0,0,0.0762558 -36009,1716:219,169,71,0,0,0.0762629 -36010,1717:110,170,71,0,0,0.0762848 -36011,1717:111,171,71,0,0,0.0763137 -36012,1717:112,172,71,0,0,0.0763354 -36013,1717:113,173,71,0,0,0.07635 -36014,1717:114,174,71,0,0,0.0763571 -36015,1717:215,175,71,0,0,0.0763643 -36016,1717:216,176,71,0,0,0.0763716 -36017,1717:217,177,71,0,0,0.076386 -36018,1717:218,178,71,0,0,0.0764079 -36019,1717:219,179,71,0,0,0.0765022 -36020,1718:110,180,71,0,0,0.0765893 -36021,7718:120,-180,72,0,0,0.0764876 -36022,7717:229,-179,72,0,0,0.0765676 -36023,7717:228,-178,72,0,0,0.0765747 -36024,7717:227,-177,72,0,0,0.0766111 -36025,7717:226,-176,72,0,0,0.0766184 -36026,7717:225,-175,72,0,0,0.0766184 -36027,7717:124,-174,72,0,0,0.0766328 -36028,7717:123,-173,72,0,0,0.0766328 -36029,7717:122,-172,72,0,0,0.0766257 -36030,7717:121,-171,72,0,0,0.0766475 -36031,7717:120,-170,72,0,0,0.0766401 -36032,7716:229,-169,72,0,0,0.0766475 -36033,7716:228,-168,72,0,0,0.0766692 -36034,7716:227,-167,72,0,0,0.0766111 -36035,7716:226,-166,72,0,0,0.0766038 -36036,7716:225,-165,72,0,0,0.0766038 -36037,7716:124,-164,72,0,0,0.0765384 -36038,7716:123,-163,72,0,0,0.0764876 -36039,7716:122,-162,72,0,0,0.0764659 -36040,7716:121,-161,72,0,0,0.0764442 -36041,7716:120,-160,72,0,0,0.0764442 -36042,7715:229,-159,72,0,0,0.0764803 -36043,7715:228,-158,72,0,0,0.0765893 -36044,7715:227,-157,72,0,0,0.0766692 -36045,7715:226,-156,72,0,0,0.0765747 -36046,7715:225,-155,72,0,0,0.0763789 -36047,7715:124,-154,72,0,0,0.076524 -36048,7715:123,-153,72,0,0,0.075722 -36049,7714:227,-147,72,0,0,0.0766475 -36050,7714:226,-146,72,0,0,0.0765893 -36051,7714:225,-145,72,0,0,0.0767494 -36052,7714:124,-144,72,0,0,0.0766839 -36053,7714:123,-143,72,0,0,0.0766475 -36054,7714:122,-142,72,0,0,0.0768806 -36055,7707:226,-76,72,0,0,0.0835713 -36056,7707:225,-75,72,0,0,0.0823597 -36057,7707:124,-74,72,0,0,0.0807666 -36058,7707:123,-73,72,0,0,0.080128 -36059,7707:122,-72,72,0,0,0.0792016 -36060,7706:228,-68,72,0,0,0.0770409 -36061,7706:227,-67,72,0,0,0.0769242 -36062,7706:226,-66,72,0,0,0.0768221 -36063,7706:225,-65,72,0,0,0.0767858 -36064,7706:124,-64,72,0,0,0.0767347 -36065,7705:227,-57,72,0,0,0.0769462 -36066,7705:226,-56,72,0,0,0.0765676 -36067,7705:121,-51,72,0,0,0.0769754 -36068,7704:228,-48,72,0,0,0.076386 -36069,7704:227,-47,72,0,0,0.076234 -36070,7704:226,-46,72,0,0,0.0762196 -36071,7704:225,-45,72,0,0,0.0762918 -36072,7704:123,-43,72,0,0,0.0763354 -36073,7704:122,-42,72,0,0,0.0762413 -36074,7704:121,-41,72,0,0,0.0762196 -36075,7704:120,-40,72,0,0,0.0761978 -36076,7702:123,-23,72,0,0,0.0762702 -36077,7702:122,-22,72,0,0,0.0762196 -36078,7702:121,-21,72,0,0,0.0761978 -36079,7702:120,-20,72,0,0,0.0761978 -36080,7701:229,-19,72,0,0,0.0759956 -36081,7701:228,-18,72,0,0,0.0756715 -36082,7701:227,-17,72,0,0,0.0755065 -36083,7701:226,-16,72,0,0,0.0755567 -36084,7701:225,-15,72,0,0,0.0762848 -36085,7701:124,-14,72,0,0,0.077657 -36086,7701:123,-13,72,0,0,0.0926529 -36087,7701:122,-12,72,0,0,0.109405 -36088,7701:121,-11,72,0,0,0.117568 -36089,7701:120,-10,72,0,0,0.0980126 -36090,7700:229,-9,72,0,0,0.0794567 -36091,7700:226,-6,72,0,0,0.076895 -36092,7700:225,-5,72,0,0,0.0767858 -36093,7700:124,-4,72,0,0,0.0770409 -36094,7700:123,-3,72,0,0,0.0787009 -36095,7700:122,-2,72,0,0,0.0943773 -36096,7700:121,-1,72,0,0,0.0821968 -36097,1700:121,0,72,0,0,0.084576 -36098,1700:121,1,72,0,0,0.0831081 -36099,1700:122,2,72,0,0,0.0907532 -36100,1700:123,3,72,0,0,0.111109 -36101,1700:124,4,72,0,0,0.105329 -36102,1700:225,5,72,0,0,0.105029 -36103,1700:226,6,72,0,0,0.102337 -36104,1700:227,7,72,0,0,0.100921 -36105,1700:228,8,72,0,0,0.105262 -36106,1700:229,9,72,0,0,0.105358 -36107,1701:120,10,72,0,0,0.107095 -36108,1701:121,11,72,0,0,0.108647 -36109,1701:122,12,72,0,0,0.115233 -36110,1701:123,13,72,0,0,0.113278 -36111,1701:124,14,72,0,0,0.103542 -36112,1701:225,15,72,0,0,0.103532 -36113,1701:226,16,72,0,0,0.096068 -36114,1701:227,17,72,0,0,0.0952857 -36115,1701:228,18,72,0,0,0.0962288 -36116,1701:229,19,72,0,0,0.0928518 -36117,1702:120,20,72,0,0,0.0857124 -36118,1702:121,21,72,0,0,0.0798634 -36119,1702:123,23,72,0,0,0.0823131 -36120,1714:124,144,72,0,0,0.0771067 -36121,1714:225,145,72,0,0,0.0775465 -36122,1714:226,146,72,0,0,0.0773337 -36123,1714:227,147,72,0,0,0.0769462 -36124,1714:228,148,72,0,0,0.0760967 -36125,1714:229,149,72,0,0,0.075442 -36126,1715:120,150,72,0,0,0.0756932 -36127,1715:121,151,72,0,0,0.0757722 -36128,1715:122,152,72,0,0,0.0756068 -36129,1715:123,153,72,0,0,0.0755352 -36130,1715:124,154,72,0,0,0.0756141 -36131,1715:225,155,72,0,0,0.0757002 -36132,1715:226,156,72,0,0,0.0758155 -36133,1715:227,157,72,0,0,0.0758946 -36134,1715:228,158,72,0,0,0.0759452 -36135,1715:229,159,72,0,0,0.0759668 -36136,1716:120,160,72,0,0,0.076046 -36137,1716:121,161,72,0,0,0.0761327 -36138,1716:122,162,72,0,0,0.0762123 -36139,1716:123,163,72,0,0,0.0762558 -36140,1716:124,164,72,0,0,0.0762558 -36141,1716:225,165,72,0,0,0.0762485 -36142,1716:226,166,72,0,0,0.0762413 -36143,1716:227,167,72,0,0,0.0762413 -36144,1716:228,168,72,0,0,0.0762413 -36145,1716:229,169,72,0,0,0.0762629 -36146,1717:120,170,72,0,0,0.0762848 -36147,1717:121,171,72,0,0,0.0763137 -36148,1717:122,172,72,0,0,0.0763281 -36149,1717:123,173,72,0,0,0.0763354 -36150,1717:124,174,72,0,0,0.0763427 -36151,1717:225,175,72,0,0,0.07635 -36152,1717:226,176,72,0,0,0.07635 -36153,1717:227,177,72,0,0,0.0763354 -36154,1717:228,178,72,0,0,0.07635 -36155,1717:229,179,72,0,0,0.0764006 -36156,1718:120,180,72,0,0,0.0764876 -36157,7718:130,-180,73,0,0,0.0764442 -36158,7717:239,-179,73,0,0,0.0764949 -36159,7717:238,-178,73,0,0,0.0765093 -36160,7717:237,-177,73,0,0,0.0765313 -36161,7717:236,-176,73,0,0,0.076582 -36162,7717:235,-175,73,0,0,0.0766038 -36163,7717:134,-174,73,0,0,0.0766111 -36164,7717:133,-173,73,0,0,0.0766184 -36165,7717:132,-172,73,0,0,0.0766184 -36166,7717:131,-171,73,0,0,0.0766328 -36167,7717:130,-170,73,0,0,0.0766401 -36168,7716:239,-169,73,0,0,0.0766621 -36169,7716:238,-168,73,0,0,0.0766548 -36170,7716:237,-167,73,0,0,0.0766257 -36171,7716:236,-166,73,0,0,0.0766328 -36172,7716:235,-165,73,0,0,0.0765893 -36173,7716:134,-164,73,0,0,0.0765166 -36174,7716:133,-163,73,0,0,0.0764949 -36175,7716:132,-162,73,0,0,0.0764442 -36176,7716:131,-161,73,0,0,0.076415 -36177,7716:130,-160,73,0,0,0.076415 -36178,7715:239,-159,73,0,0,0.0764803 -36179,7715:238,-158,73,0,0,0.0766328 -36180,7715:237,-157,73,0,0,0.0766621 -36181,7715:236,-156,73,0,0,0.0766111 -36182,7715:235,-155,73,0,0,0.0759595 -36183,7715:134,-154,73,0,0,0.0755854 -36184,7714:237,-147,73,0,0,0.0768659 -36185,7714:236,-146,73,0,0,0.0767347 -36186,7714:235,-145,73,0,0,0.0765603 -36187,7714:134,-144,73,0,0,0.0766983 -36188,7714:133,-143,73,0,0,0.0767712 -36189,7714:132,-142,73,0,0,0.0766765 -36190,7714:131,-141,73,0,0,0.076524 -36191,7714:130,-140,73,0,0,0.0769754 -36192,7707:133,-73,73,0,0,0.0790369 -36193,7707:132,-72,73,0,0,0.0784405 -36194,7706:236,-66,73,0,0,0.0769315 -36195,7706:235,-65,73,0,0,0.0769462 -36196,7706:134,-64,73,0,0,0.0769825 -36197,7706:133,-63,73,0,0,0.0770264 -36198,7706:132,-62,73,0,0,0.0769899 -36199,7706:131,-61,73,0,0,0.0769754 -36200,7706:130,-60,73,0,0,0.0769681 -36201,7705:239,-59,73,0,0,0.0769534 -36202,7705:238,-58,73,0,0,0.0769097 -36203,7705:237,-57,73,0,0,0.0768806 -36204,7705:133,-53,73,0,0,0.0768076 -36205,7705:132,-52,73,0,0,0.0767567 -36206,7704:134,-44,73,0,0,0.07635 -36207,7704:133,-43,73,0,0,0.0762558 -36208,7704:132,-42,73,0,0,0.0762267 -36209,7704:131,-41,73,0,0,0.0762558 -36210,7704:130,-40,73,0,0,0.076205 -36211,7703:239,-39,73,0,0,0.0762123 -36212,7703:236,-36,73,0,0,0.0762558 -36213,7703:132,-32,73,0,0,0.0763789 -36214,7703:131,-31,73,0,0,0.0763354 -36215,7702:134,-24,73,0,0,0.076234 -36216,7702:133,-23,73,0,0,0.0762123 -36217,7702:132,-22,73,0,0,0.076205 -36218,7702:131,-21,73,0,0,0.0761256 -36219,7702:130,-20,73,0,0,0.0760606 -36220,7701:239,-19,73,0,0,0.0759234 -36221,7701:238,-18,73,0,0,0.075686 -36222,7701:237,-17,73,0,0,0.0755065 -36223,7701:236,-16,73,0,0,0.0754348 -36224,7701:235,-15,73,0,0,0.0755065 -36225,7701:134,-14,73,0,0,0.0764586 -36226,7701:133,-13,73,0,0,0.0788053 -36227,7701:132,-12,73,0,0,0.0884155 -36228,7701:131,-11,73,0,0,0.113537 -36229,7701:130,-10,73,0,0,0.114752 -36230,7700:239,-9,73,0,0,0.0945181 -36231,7700:238,-8,73,0,0,0.0860351 -36232,7700:237,-7,73,0,0,0.0841159 -36233,7700:236,-6,73,0,0,0.0820805 -36234,7700:235,-5,73,0,0,0.077451 -36235,7700:134,-4,73,0,0,0.077363 -36236,7700:133,-3,73,0,0,0.0785744 -36237,7700:132,-2,73,0,0,0.0813711 -36238,7700:131,-1,73,0,0,0.079284 -36239,1700:131,0,73,0,0,0.0800449 -36240,1700:131,1,73,0,0,0.0808276 -36241,1700:132,2,73,0,0,0.0866917 -36242,1700:133,3,73,0,0,0.0925235 -36243,1700:134,4,73,0,0,0.105078 -36244,1700:235,5,73,0,0,0.104615 -36245,1700:236,6,73,0,0,0.106467 -36246,1700:237,7,73,0,0,0.109095 -36247,1700:238,8,73,0,0,0.109666 -36248,1700:239,9,73,0,0,0.107893 -36249,1701:130,10,73,0,0,0.108826 -36250,1701:131,11,73,0,0,0.109706 -36251,1701:132,12,73,0,0,0.114491 -36252,1701:133,13,73,0,0,0.108081 -36253,1701:134,14,73,0,0,0.0931552 -36254,1701:237,17,73,0,0,0.0837997 -36255,1701:238,18,73,0,0,0.0906516 -36256,1701:239,19,73,0,0,0.092463 -36257,1702:130,20,73,0,0,0.0852306 -36258,1702:131,21,73,0,0,0.077974 -36259,1702:132,22,73,0,0,0.0769534 -36260,1714:235,145,73,0,0,0.0773998 -36261,1714:236,146,73,0,0,0.0769607 -36262,1714:237,147,73,0,0,0.0757362 -36263,1714:238,148,73,0,0,0.0756645 -36264,1714:239,149,73,0,0,0.075442 -36265,1715:130,150,73,0,0,0.0755781 -36266,1715:131,151,73,0,0,0.0756285 -36267,1715:132,152,73,0,0,0.0754706 -36268,1715:133,153,73,0,0,0.075442 -36269,1715:134,154,73,0,0,0.0755207 -36270,1715:235,155,73,0,0,0.0756068 -36271,1715:236,156,73,0,0,0.075686 -36272,1715:237,157,73,0,0,0.0758155 -36273,1715:238,158,73,0,0,0.0759595 -36274,1715:239,159,73,0,0,0.0760245 -36275,1716:130,160,73,0,0,0.0760749 -36276,1716:131,161,73,0,0,0.0761183 -36277,1716:132,162,73,0,0,0.0761761 -36278,1716:133,163,73,0,0,0.0762123 -36279,1716:134,164,73,0,0,0.0761978 -36280,1716:235,165,73,0,0,0.0761907 -36281,1716:236,166,73,0,0,0.0761834 -36282,1716:237,167,73,0,0,0.0761761 -36283,1716:238,168,73,0,0,0.0761978 -36284,1716:239,169,73,0,0,0.076234 -36285,1717:130,170,73,0,0,0.0762629 -36286,1717:131,171,73,0,0,0.0762918 -36287,1717:132,172,73,0,0,0.0763064 -36288,1717:133,173,73,0,0,0.0762991 -36289,1717:134,174,73,0,0,0.0763064 -36290,1717:235,175,73,0,0,0.0763137 -36291,1717:236,176,73,0,0,0.0763281 -36292,1717:237,177,73,0,0,0.0763427 -36293,1717:238,178,73,0,0,0.0763716 -36294,1717:239,179,73,0,0,0.076415 -36295,1718:130,180,73,0,0,0.0764442 -36296,7718:140,-180,74,0,0,0.0764369 -36297,7717:249,-179,74,0,0,0.0764369 -36298,7717:248,-178,74,0,0,0.0764513 -36299,7717:247,-177,74,0,0,0.0764803 -36300,7717:246,-176,74,0,0,0.0765093 -36301,7717:245,-175,74,0,0,0.0765313 -36302,7717:144,-174,74,0,0,0.0765603 -36303,7717:143,-173,74,0,0,0.0765676 -36304,7717:142,-172,74,0,0,0.0765603 -36305,7717:141,-171,74,0,0,0.0765384 -36306,7717:140,-170,74,0,0,0.0765384 -36307,7716:249,-169,74,0,0,0.076553 -36308,7716:248,-168,74,0,0,0.0766257 -36309,7716:247,-167,74,0,0,0.0766401 -36310,7716:246,-166,74,0,0,0.0766184 -36311,7716:245,-165,74,0,0,0.0765603 -36312,7716:144,-164,74,0,0,0.0764949 -36313,7716:143,-163,74,0,0,0.0764586 -36314,7716:142,-162,74,0,0,0.0764223 -36315,7716:141,-161,74,0,0,0.0764006 -36316,7716:140,-160,74,0,0,0.0764223 -36317,7715:249,-159,74,0,0,0.0765603 -36318,7715:248,-158,74,0,0,0.0766328 -36319,7715:247,-157,74,0,0,0.0766038 -36320,7714:249,-149,74,0,0,0.076895 -36321,7714:248,-148,74,0,0,0.0771067 -36322,7714:247,-147,74,0,0,0.0769681 -36323,7714:246,-146,74,0,0,0.0769462 -36324,7714:245,-145,74,0,0,0.0766765 -36325,7714:144,-144,74,0,0,0.0768514 -36326,7714:143,-143,74,0,0,0.0769242 -36327,7714:140,-140,74,0,0,0.0767567 -36328,7713:249,-139,74,0,0,0.0773559 -36329,7713:245,-135,74,0,0,0.077937 -36330,7707:249,-79,74,0,0,0.0797126 -36331,7707:248,-78,74,0,0,0.0804088 -36332,7707:247,-77,74,0,0,0.0808887 -36333,7707:142,-72,74,0,0,0.0779814 -36334,7706:245,-65,74,0,0,0.0769242 -36335,7706:144,-64,74,0,0,0.0770046 -36336,7706:143,-63,74,0,0,0.0770849 -36337,7705:249,-59,74,0,0,0.0769168 -36338,7705:248,-58,74,0,0,0.0769024 -36339,7705:144,-54,74,0,0,0.0766401 -36340,7705:143,-53,74,0,0,0.0766475 -36341,7703:247,-37,74,0,0,0.0762918 -36342,7703:245,-35,74,0,0,0.0762629 -36343,7703:144,-34,74,0,0,0.0762196 -36344,7703:143,-33,74,0,0,0.076234 -36345,7703:142,-32,74,0,0,0.076234 -36346,7703:141,-31,74,0,0,0.0762991 -36347,7703:140,-30,74,0,0,0.0762775 -36348,7702:249,-29,74,0,0,0.0762485 -36349,7702:248,-28,74,0,0,0.0762267 -36350,7702:247,-27,74,0,0,0.0762123 -36351,7702:246,-26,74,0,0,0.076205 -36352,7702:245,-25,74,0,0,0.076205 -36353,7702:144,-24,74,0,0,0.0762267 -36354,7702:143,-23,74,0,0,0.0762196 -36355,7702:142,-22,74,0,0,0.07614 -36356,7702:141,-21,74,0,0,0.0760029 -36357,7702:140,-20,74,0,0,0.0759091 -36358,7701:249,-19,74,0,0,0.0758803 -36359,7701:248,-18,74,0,0,0.0758298 -36360,7701:247,-17,74,0,0,0.075722 -36361,7701:246,-16,74,0,0,0.0755494 -36362,7701:245,-15,74,0,0,0.0754348 -36363,7701:144,-14,74,0,0,0.075758 -36364,7701:143,-13,74,0,0,0.0764223 -36365,7701:142,-12,74,0,0,0.076895 -36366,7701:141,-11,74,0,0,0.0783737 -36367,7701:140,-10,74,0,0,0.100521 -36368,7700:249,-9,74,0,0,0.112466 -36369,7700:248,-8,74,0,0,0.102535 -36370,7700:247,-7,74,0,0,0.0816018 -36371,7700:246,-6,74,0,0,0.0773778 -36372,7700:245,-5,74,0,0,0.0771799 -36373,7700:144,-4,74,0,0,0.077451 -36374,7700:143,-3,74,0,0,0.0770996 -36375,7700:142,-2,74,0,0,0.0783737 -36376,7700:141,-1,74,0,0,0.0782551 -36377,1700:141,0,74,0,0,0.0855999 -36378,1700:141,1,74,0,0,0.0909314 -36379,1700:142,2,74,0,0,0.0974329 -36380,1700:143,3,74,0,0,0.102158 -36381,1700:144,4,74,0,0,0.103209 -36382,1700:245,5,74,0,0,0.0963898 -36383,1700:246,6,74,0,0,0.100344 -36384,1700:247,7,74,0,0,0.10596 -36385,1700:248,8,74,0,0,0.106693 -36386,1700:249,9,74,0,0,0.102668 -36387,1701:140,10,74,0,0,0.094395 -36388,1701:141,11,74,0,0,0.104384 -36389,1701:142,12,74,0,0,0.0993467 -36390,1701:143,13,74,0,0,0.0871401 -36391,1701:249,19,74,0,0,0.0835084 -36392,1702:140,20,74,0,0,0.0870177 -36393,1702:141,21,74,0,0,0.0775394 -36394,1702:142,22,74,0,0,0.076386 -36395,1702:143,23,74,0,0,0.0766475 -36396,1714:142,142,74,0,0,0.0787084 -36397,1714:143,143,74,0,0,0.0785224 -36398,1714:144,144,74,0,0,0.0781663 -36399,1714:245,145,74,0,0,0.0773411 -36400,1714:246,146,74,0,0,0.0762629 -36401,1714:247,147,74,0,0,0.0758082 -36402,1714:248,148,74,0,0,0.075765 -36403,1714:249,149,74,0,0,0.075528 -36404,1715:140,150,74,0,0,0.0753561 -36405,1715:141,151,74,0,0,0.0755424 -36406,1715:142,152,74,0,0,0.075442 -36407,1715:143,153,74,0,0,0.0754348 -36408,1715:144,154,74,0,0,0.0755494 -36409,1715:245,155,74,0,0,0.0756141 -36410,1715:246,156,74,0,0,0.0756645 -36411,1715:247,157,74,0,0,0.075765 -36412,1715:248,158,74,0,0,0.0758658 -36413,1715:249,159,74,0,0,0.0759595 -36414,1716:140,160,74,0,0,0.0760317 -36415,1716:141,161,74,0,0,0.0760822 -36416,1716:142,162,74,0,0,0.0761327 -36417,1716:143,163,74,0,0,0.0761545 -36418,1716:144,164,74,0,0,0.0761618 -36419,1716:245,165,74,0,0,0.0761545 -36420,1716:246,166,74,0,0,0.0761472 -36421,1716:247,167,74,0,0,0.0761472 -36422,1716:248,168,74,0,0,0.0761618 -36423,1716:249,169,74,0,0,0.0761978 -36424,1717:140,170,74,0,0,0.0762267 -36425,1717:141,171,74,0,0,0.0762558 -36426,1717:142,172,74,0,0,0.0762702 -36427,1717:143,173,74,0,0,0.0762702 -36428,1717:144,174,74,0,0,0.0762702 -36429,1717:245,175,74,0,0,0.0762991 -36430,1717:246,176,74,0,0,0.0763281 -36431,1717:247,177,74,0,0,0.0763354 -36432,1717:248,178,74,0,0,0.0763427 -36433,1717:249,179,74,0,0,0.0763933 -36434,1718:140,180,74,0,0,0.0764369 -36435,7718:350,-180,75,0,0,0.0763571 -36436,7717:459,-179,75,0,0,0.0763933 -36437,7717:458,-178,75,0,0,0.076386 -36438,7717:457,-177,75,0,0,0.0764223 -36439,7717:456,-176,75,0,0,0.0764513 -36440,7717:455,-175,75,0,0,0.0764659 -36441,7717:354,-174,75,0,0,0.0764803 -36442,7717:353,-173,75,0,0,0.0765022 -36443,7717:352,-172,75,0,0,0.0765022 -36444,7717:351,-171,75,0,0,0.0764876 -36445,7717:350,-170,75,0,0,0.0764803 -36446,7716:459,-169,75,0,0,0.0764803 -36447,7716:458,-168,75,0,0,0.0765603 -36448,7716:457,-167,75,0,0,0.0766111 -36449,7716:456,-166,75,0,0,0.0765747 -36450,7716:455,-165,75,0,0,0.0765093 -36451,7716:354,-164,75,0,0,0.0764442 -36452,7716:353,-163,75,0,0,0.0764079 -36453,7716:352,-162,75,0,0,0.0763789 -36454,7716:351,-161,75,0,0,0.0764659 -36455,7716:350,-160,75,0,0,0.0765676 -36456,7715:459,-159,75,0,0,0.076582 -36457,7715:458,-158,75,0,0,0.0765893 -36458,7715:457,-157,75,0,0,0.0764296 -36459,7715:456,-156,75,0,0,0.0768221 -36460,7715:350,-150,75,0,0,0.0766983 -36461,7714:459,-149,75,0,0,0.0772018 -36462,7714:456,-146,75,0,0,0.0768806 -36463,7714:353,-143,75,0,0,0.0767929 -36464,7713:459,-139,75,0,0,0.0773118 -36465,7713:458,-138,75,0,0,0.0774291 -36466,7713:457,-137,75,0,0,0.0776421 -36467,7713:456,-136,75,0,0,0.0781218 -36468,7713:455,-135,75,0,0,0.0779519 -36469,7713:354,-134,75,0,0,0.0777896 -36470,7708:350,-80,75,0,0,0.0795694 -36471,7707:459,-79,75,0,0,0.0789322 -36472,7707:458,-78,75,0,0,0.0800599 -36473,7707:457,-77,75,0,0,0.0808963 -36474,7707:455,-75,75,0,0,0.0796523 -36475,7707:354,-74,75,0,0,0.0786861 -36476,7707:353,-73,75,0,0,0.0781071 -36477,7707:352,-72,75,0,0,0.0779296 -36478,7707:351,-71,75,0,0,0.0778337 -36479,7707:350,-70,75,0,0,0.0777601 -36480,7706:459,-69,75,0,0,0.077679 -36481,7706:458,-68,75,0,0,0.0775981 -36482,7706:457,-67,75,0,0,0.0774732 -36483,7706:456,-66,75,0,0,0.0772678 -36484,7706:455,-65,75,0,0,0.0769899 -36485,7705:459,-59,75,0,0,0.0769534 -36486,7705:458,-58,75,0,0,0.0768221 -36487,7705:354,-54,75,0,0,0.0768806 -36488,7705:353,-53,75,0,0,0.0768514 -36489,7704:459,-49,75,0,0,0.0767567 -36490,7703:354,-34,75,0,0,0.0762848 -36491,7703:353,-33,75,0,0,0.0762196 -36492,7703:352,-32,75,0,0,0.076205 -36493,7703:351,-31,75,0,0,0.0761907 -36494,7703:350,-30,75,0,0,0.0761978 -36495,7702:459,-29,75,0,0,0.0761978 -36496,7702:458,-28,75,0,0,0.0761978 -36497,7702:457,-27,75,0,0,0.0761978 -36498,7702:456,-26,75,0,0,0.076205 -36499,7702:455,-25,75,0,0,0.0762267 -36500,7702:354,-24,75,0,0,0.076234 -36501,7702:353,-23,75,0,0,0.0762485 -36502,7702:352,-22,75,0,0,0.0762123 -36503,7702:351,-21,75,0,0,0.0761183 -36504,7702:350,-20,75,0,0,0.0760317 -36505,7701:459,-19,75,0,0,0.0759956 -36506,7701:458,-18,75,0,0,0.0759234 -36507,7701:457,-17,75,0,0,0.0757795 -36508,7701:456,-16,75,0,0,0.0755854 -36509,7701:455,-15,75,0,0,0.075442 -36510,7701:354,-14,75,0,0,0.0753272 -36511,7701:353,-13,75,0,0,0.0753989 -36512,7701:352,-12,75,0,0,0.0755352 -36513,7701:351,-11,75,0,0,0.0762918 -36514,7701:350,-10,75,0,0,0.078463 -36515,7700:459,-9,75,0,0,0.089741 -36516,7700:458,-8,75,0,0,0.103047 -36517,7700:457,-7,75,0,0,0.080988 -36518,7700:456,-6,75,0,0,0.0782997 -36519,7700:455,-5,75,0,0,0.0789995 -36520,7700:354,-4,75,0,0,0.0796372 -36521,7700:353,-3,75,0,0,0.0791191 -36522,7700:352,-2,75,0,0,0.0774658 -36523,7700:351,-1,75,0,0,0.0800525 -36524,1700:351,0,75,0,0,0.0819026 -36525,1700:351,1,75,0,0,0.0916472 -36526,1700:352,2,75,0,0,0.0958097 -36527,1700:353,3,75,0,0,0.0958187 -36528,1700:354,4,75,0,0,0.0948438 -36529,1700:455,5,75,0,0,0.094237 -36530,1700:456,6,75,0,0,0.0921963 -36531,1700:457,7,75,0,0,0.102914 -36532,1700:458,8,75,0,0,0.0982218 -36533,1700:459,9,75,0,0,0.0959255 -36534,1701:350,10,75,0,0,0.0977858 -36535,1701:351,11,75,0,0,0.0978038 -36536,1701:455,15,75,0,0,0.0781663 -36537,1701:456,16,75,0,0,0.0801583 -36538,1701:457,17,75,0,0,0.0808353 -36539,1701:458,18,75,0,0,0.0815327 -36540,1701:459,19,75,0,0,0.0799844 -36541,1702:350,20,75,0,0,0.0797351 -36542,1702:351,21,75,0,0,0.0797427 -36543,1702:352,22,75,0,0,0.0762196 -36544,1702:353,23,75,0,0,0.0770117 -36545,1702:354,24,75,0,0,0.0777453 -36546,1714:350,140,75,0,0,0.0783812 -36547,1714:351,141,75,0,0,0.0780701 -36548,1714:352,142,75,0,0,0.0777158 -36549,1714:353,143,75,0,0,0.076713 -36550,1714:354,144,75,0,0,0.0757075 -36551,1714:458,148,75,0,0,0.0759091 -36552,1714:459,149,75,0,0,0.0755854 -36553,1715:350,150,75,0,0,0.0753631 -36554,1715:351,151,75,0,0,0.0753703 -36555,1715:352,152,75,0,0,0.0753703 -36556,1715:353,153,75,0,0,0.0754203 -36557,1715:354,154,75,0,0,0.0755711 -36558,1715:455,155,75,0,0,0.0756715 -36559,1715:456,156,75,0,0,0.0757002 -36560,1715:457,157,75,0,0,0.075729 -36561,1715:458,158,75,0,0,0.0758225 -36562,1715:459,159,75,0,0,0.0759307 -36563,1716:350,160,75,0,0,0.0759956 -36564,1716:351,161,75,0,0,0.076046 -36565,1716:352,162,75,0,0,0.0761111 -36566,1716:353,163,75,0,0,0.0761256 -36567,1716:354,164,75,0,0,0.0761327 -36568,1716:455,165,75,0,0,0.0761327 -36569,1716:456,166,75,0,0,0.07614 -36570,1716:457,167,75,0,0,0.0761545 -36571,1716:458,168,75,0,0,0.0761618 -36572,1716:459,169,75,0,0,0.0761907 -36573,1717:350,170,75,0,0,0.0762123 -36574,1717:351,171,75,0,0,0.0762267 -36575,1717:352,172,75,0,0,0.076234 -36576,1717:353,173,75,0,0,0.076234 -36577,1717:354,174,75,0,0,0.0762413 -36578,1717:455,175,75,0,0,0.0762629 -36579,1717:456,176,75,0,0,0.0762918 -36580,1717:457,177,75,0,0,0.0763137 -36581,1717:458,178,75,0,0,0.0763208 -36582,1717:459,179,75,0,0,0.0763208 -36583,1718:350,180,75,0,0,0.0763571 -36584,7718:360,-180,76,0,0,0.0763427 -36585,7717:469,-179,76,0,0,0.0763571 -36586,7717:468,-178,76,0,0,0.0763571 -36587,7717:467,-177,76,0,0,0.0763643 -36588,7717:466,-176,76,0,0,0.0764006 -36589,7717:465,-175,76,0,0,0.0764223 -36590,7717:364,-174,76,0,0,0.0764296 -36591,7717:363,-173,76,0,0,0.0764513 -36592,7717:362,-172,76,0,0,0.0764659 -36593,7717:361,-171,76,0,0,0.0764732 -36594,7717:360,-170,76,0,0,0.0764803 -36595,7716:469,-169,76,0,0,0.0764949 -36596,7716:468,-168,76,0,0,0.0765384 -36597,7716:467,-167,76,0,0,0.0765747 -36598,7716:466,-166,76,0,0,0.076553 -36599,7716:465,-165,76,0,0,0.0764803 -36600,7716:364,-164,76,0,0,0.0764006 -36601,7716:363,-163,76,0,0,0.0763571 -36602,7716:362,-162,76,0,0,0.0764803 -36603,7716:361,-161,76,0,0,0.0766111 -36604,7715:469,-159,76,0,0,0.0766765 -36605,7715:468,-158,76,0,0,0.0765967 -36606,7715:467,-157,76,0,0,0.0766257 -36607,7715:466,-156,76,0,0,0.0767785 -36608,7715:465,-155,76,0,0,0.0768221 -36609,7715:364,-154,76,0,0,0.0764876 -36610,7714:363,-143,76,0,0,0.0767274 -36611,7713:465,-135,76,0,0,0.077856 -36612,7713:364,-134,76,0,0,0.077878 -36613,7713:363,-133,76,0,0,0.0779296 -36614,7708:361,-81,76,0,0,0.0785819 -36615,7708:360,-80,76,0,0,0.0785744 -36616,7707:469,-79,76,0,0,0.0782922 -36617,7707:468,-78,76,0,0,0.080007 -36618,7707:467,-77,76,0,0,0.080113 -36619,7707:466,-76,76,0,0,0.0790369 -36620,7707:465,-75,76,0,0,0.0792915 -36621,7707:364,-74,76,0,0,0.0783368 -36622,7707:363,-73,76,0,0,0.078048 -36623,7707:362,-72,76,0,0,0.077797 -36624,7707:361,-71,76,0,0,0.0775394 -36625,7707:360,-70,76,0,0,0.0774806 -36626,7706:469,-69,76,0,0,0.077679 -36627,7706:468,-68,76,0,0,0.0777821 -36628,7706:364,-64,76,0,0,0.0769973 -36629,7706:363,-63,76,0,0,0.0770191 -36630,7706:362,-62,76,0,0,0.0769681 -36631,7706:360,-60,76,0,0,0.0769754 -36632,7705:469,-59,76,0,0,0.0769462 -36633,7705:467,-57,76,0,0,0.0766621 -36634,7705:466,-56,76,0,0,0.0765967 -36635,7705:465,-55,76,0,0,0.0764369 -36636,7705:362,-52,76,0,0,0.0766692 -36637,7705:360,-50,76,0,0,0.0765676 -36638,7704:469,-49,76,0,0,0.0765747 -36639,7704:468,-48,76,0,0,0.0764876 -36640,7704:467,-47,76,0,0,0.076415 -36641,7704:362,-42,76,0,0,0.0767056 -36642,7703:364,-34,76,0,0,0.0761834 -36643,7703:363,-33,76,0,0,0.0761834 -36644,7703:362,-32,76,0,0,0.0761618 -36645,7703:361,-31,76,0,0,0.0761618 -36646,7703:360,-30,76,0,0,0.0761689 -36647,7702:469,-29,76,0,0,0.0761978 -36648,7702:468,-28,76,0,0,0.076234 -36649,7702:467,-27,76,0,0,0.0762702 -36650,7702:466,-26,76,0,0,0.0762702 -36651,7702:465,-25,76,0,0,0.0762775 -36652,7702:364,-24,76,0,0,0.0762918 -36653,7702:363,-23,76,0,0,0.0762991 -36654,7702:362,-22,76,0,0,0.0762775 -36655,7702:361,-21,76,0,0,0.0761761 -36656,7702:360,-20,76,0,0,0.0761111 -36657,7701:469,-19,76,0,0,0.0759595 -36658,7701:468,-18,76,0,0,0.075729 -36659,7701:467,-17,76,0,0,0.0755998 -36660,7701:466,-16,76,0,0,0.0755711 -36661,7701:465,-15,76,0,0,0.0755781 -36662,7701:364,-14,76,0,0,0.0754706 -36663,7701:363,-13,76,0,0,0.0754133 -36664,7701:362,-12,76,0,0,0.0754562 -36665,7701:361,-11,76,0,0,0.0756141 -36666,7701:360,-10,76,0,0,0.0758874 -36667,7700:469,-9,76,0,0,0.0765384 -36668,7700:468,-8,76,0,0,0.0842266 -36669,7700:467,-7,76,0,0,0.0779075 -36670,7700:466,-6,76,0,0,0.0776495 -36671,7700:465,-5,76,0,0,0.0778854 -36672,7700:364,-4,76,0,0,0.0787159 -36673,7700:363,-3,76,0,0,0.0787605 -36674,7700:362,-2,76,0,0,0.0781663 -36675,7700:361,-1,76,0,0,0.0786636 -36676,1700:361,0,76,0,0,0.0803632 -36677,1700:361,1,76,0,0,0.0877057 -36678,1700:362,2,76,0,0,0.0847193 -36679,1700:363,3,76,0,0,0.0848149 -36680,1700:364,4,76,0,0,0.0888136 -36681,1700:465,5,76,0,0,0.0904231 -36682,1700:466,6,76,0,0,0.0990346 -36683,1700:467,7,76,0,0,0.0904992 -36684,1700:468,8,76,0,0,0.0935551 -36685,1700:469,9,76,0,0,0.0970091 -36686,1701:360,10,76,0,0,0.0937995 -36687,1701:364,14,76,0,0,0.077797 -36688,1701:465,15,76,0,0,0.0778116 -36689,1701:466,16,76,0,0,0.0773411 -36690,1701:467,17,76,0,0,0.077635 -36691,1701:468,18,76,0,0,0.0780256 -36692,1701:469,19,76,0,0,0.0789545 -36693,1702:360,20,76,0,0,0.0814173 -36694,1702:361,21,76,0,0,0.0815327 -36695,1713:469,139,76,0,0,0.0784927 -36696,1714:360,140,76,0,0,0.077974 -36697,1714:361,141,76,0,0,0.0771873 -36698,1714:362,142,76,0,0,0.0761689 -36699,1714:363,143,76,0,0,0.0755567 -36700,1714:364,144,76,0,0,0.075758 -36701,1714:465,145,76,0,0,0.0754706 -36702,1714:468,148,76,0,0,0.0758225 -36703,1714:469,149,76,0,0,0.0758298 -36704,1715:360,150,76,0,0,0.0755207 -36705,1715:361,151,76,0,0,0.0753203 -36706,1715:362,152,76,0,0,0.0753272 -36707,1715:363,153,76,0,0,0.0753561 -36708,1715:364,154,76,0,0,0.0755065 -36709,1715:465,155,76,0,0,0.0756715 -36710,1715:466,156,76,0,0,0.0757507 -36711,1715:467,157,76,0,0,0.0757937 -36712,1715:468,158,76,0,0,0.0758298 -36713,1715:469,159,76,0,0,0.0758946 -36714,1716:360,160,76,0,0,0.0759379 -36715,1716:361,161,76,0,0,0.0759884 -36716,1716:362,162,76,0,0,0.0760606 -36717,1716:363,163,76,0,0,0.0761111 -36718,1716:364,164,76,0,0,0.0761256 -36719,1716:465,165,76,0,0,0.0761327 -36720,1716:466,166,76,0,0,0.0761472 -36721,1716:467,167,76,0,0,0.0761618 -36722,1716:468,168,76,0,0,0.0761761 -36723,1716:469,169,76,0,0,0.0761761 -36724,1717:360,170,76,0,0,0.0761907 -36725,1717:361,171,76,0,0,0.0761978 -36726,1717:362,172,76,0,0,0.076205 -36727,1717:363,173,76,0,0,0.0762196 -36728,1717:364,174,76,0,0,0.076234 -36729,1717:465,175,76,0,0,0.0762558 -36730,1717:466,176,76,0,0,0.0762848 -36731,1717:467,177,76,0,0,0.0763064 -36732,1717:468,178,76,0,0,0.0763208 -36733,1717:469,179,76,0,0,0.0763281 -36734,1718:360,180,76,0,0,0.0763427 -36735,7718:370,-180,77,0,0,0.0763354 -36736,7717:479,-179,77,0,0,0.07635 -36737,7717:478,-178,77,0,0,0.07635 -36738,7717:477,-177,77,0,0,0.0763643 -36739,7717:476,-176,77,0,0,0.0763789 -36740,7717:475,-175,77,0,0,0.0764006 -36741,7717:374,-174,77,0,0,0.0764079 -36742,7717:373,-173,77,0,0,0.0764079 -36743,7717:372,-172,77,0,0,0.0764079 -36744,7717:371,-171,77,0,0,0.0764369 -36745,7717:370,-170,77,0,0,0.0764803 -36746,7716:479,-169,77,0,0,0.0765166 -36747,7716:478,-168,77,0,0,0.076524 -36748,7716:477,-167,77,0,0,0.0765384 -36749,7716:476,-166,77,0,0,0.0764949 -36750,7716:475,-165,77,0,0,0.076415 -36751,7716:374,-164,77,0,0,0.0763571 -36752,7716:373,-163,77,0,0,0.0763789 -36753,7716:372,-162,77,0,0,0.0765967 -36754,7715:479,-159,77,0,0,0.0765313 -36755,7715:477,-157,77,0,0,0.0765603 -36756,7715:476,-156,77,0,0,0.0766111 -36757,7715:475,-155,77,0,0,0.0766912 -36758,7715:374,-154,77,0,0,0.0767203 -36759,7715:371,-151,77,0,0,0.0766692 -36760,7714:372,-142,77,0,0,0.0767056 -36761,7713:475,-135,77,0,0,0.077679 -36762,7713:374,-134,77,0,0,0.0777084 -36763,7713:373,-133,77,0,0,0.0778854 -36764,7708:371,-81,77,0,0,0.0781367 -36765,7708:370,-80,77,0,0,0.0780331 -36766,7707:479,-79,77,0,0,0.0780035 -36767,7707:477,-77,77,0,0,0.0786041 -36768,7707:476,-76,77,0,0,0.0782255 -36769,7707:373,-73,77,0,0,0.0778854 -36770,7707:372,-72,77,0,0,0.0776644 -36771,7707:371,-71,77,0,0,0.0773559 -36772,7707:370,-70,77,0,0,0.0772018 -36773,7706:479,-69,77,0,0,0.0776421 -36774,7706:371,-61,77,0,0,0.0766475 -36775,7706:370,-60,77,0,0,0.0767638 -36776,7705:479,-59,77,0,0,0.0768659 -36777,7705:476,-56,77,0,0,0.0765022 -36778,7705:475,-55,77,0,0,0.0764949 -36779,7705:372,-52,77,0,0,0.0764659 -36780,7705:371,-51,77,0,0,0.0764296 -36781,7705:370,-50,77,0,0,0.0764513 -36782,7704:374,-44,77,0,0,0.0765967 -36783,7704:373,-43,77,0,0,0.0766257 -36784,7703:476,-36,77,0,0,0.0763137 -36785,7703:475,-35,77,0,0,0.0761978 -36786,7703:374,-34,77,0,0,0.0761618 -36787,7703:373,-33,77,0,0,0.0761327 -36788,7703:372,-32,77,0,0,0.0761472 -36789,7703:371,-31,77,0,0,0.0761907 -36790,7703:370,-30,77,0,0,0.076234 -36791,7702:479,-29,77,0,0,0.0762629 -36792,7702:478,-28,77,0,0,0.0762629 -36793,7702:477,-27,77,0,0,0.0762702 -36794,7702:476,-26,77,0,0,0.0762848 -36795,7702:475,-25,77,0,0,0.0762848 -36796,7702:374,-24,77,0,0,0.0762848 -36797,7702:373,-23,77,0,0,0.0762702 -36798,7702:372,-22,77,0,0,0.0762267 -36799,7702:371,-21,77,0,0,0.0761907 -36800,7702:370,-20,77,0,0,0.0761472 -36801,7701:479,-19,77,0,0,0.076046 -36802,7701:478,-18,77,0,0,0.0759307 -36803,7701:477,-17,77,0,0,0.075758 -36804,7701:476,-16,77,0,0,0.0755567 -36805,7701:475,-15,77,0,0,0.0753631 -36806,7701:374,-14,77,0,0,0.0753344 -36807,7701:373,-13,77,0,0,0.0753489 -36808,7701:372,-12,77,0,0,0.0752772 -36809,7701:371,-11,77,0,0,0.0753631 -36810,7701:370,-10,77,0,0,0.0756068 -36811,7700:479,-9,77,0,0,0.0761545 -36812,7700:478,-8,77,0,0,0.0767056 -36813,7700:477,-7,77,0,0,0.0775687 -36814,7700:476,-6,77,0,0,0.078783 -36815,7700:475,-5,77,0,0,0.0788128 -36816,7700:374,-4,77,0,0,0.0778706 -36817,7700:372,-2,77,0,0,0.0795921 -36818,7700:371,-1,77,0,0,0.0792764 -36819,1700:371,0,77,0,0,0.0839498 -36820,1700:371,1,77,0,0,0.086448 -36821,1700:372,2,77,0,0,0.0850786 -36822,1700:373,3,77,0,0,0.0836422 -36823,1700:374,4,77,0,0,0.0938867 -36824,1700:475,5,77,0,0,0.096542 -36825,1700:476,6,77,0,0,0.0947997 -36826,1700:477,7,77,0,0,0.0852225 -36827,1700:478,8,77,0,0,0.0910759 -36828,1700:479,9,77,0,0,0.0895062 -36829,1701:372,12,77,0,0,0.0771799 -36830,1701:373,13,77,0,0,0.0768149 -36831,1701:374,14,77,0,0,0.0769754 -36832,1701:475,15,77,0,0,0.0769462 -36833,1701:476,16,77,0,0,0.077063 -36834,1701:477,17,77,0,0,0.0771581 -36835,1701:478,18,77,0,0,0.0773778 -36836,1701:479,19,77,0,0,0.0779591 -36837,1702:370,20,77,0,0,0.0801736 -36838,1702:371,21,77,0,0,0.0786861 -36839,1702:372,22,77,0,0,0.0764006 -36840,1713:477,137,77,0,0,0.078783 -36841,1713:478,138,77,0,0,0.0785669 -36842,1713:479,139,77,0,0,0.0779519 -36843,1714:370,140,77,0,0,0.0769681 -36844,1714:371,141,77,0,0,0.075313 -36845,1714:372,142,77,0,0,0.0752986 -36846,1714:373,143,77,0,0,0.0754779 -36847,1714:374,144,77,0,0,0.0758443 -36848,1714:475,145,77,0,0,0.0757002 -36849,1714:479,149,77,0,0,0.0756572 -36850,1715:370,150,77,0,0,0.0758155 -36851,1715:371,151,77,0,0,0.0753561 -36852,1715:372,152,77,0,0,0.0753203 -36853,1715:373,153,77,0,0,0.0753272 -36854,1715:374,154,77,0,0,0.0754921 -36855,1715:475,155,77,0,0,0.0756428 -36856,1715:476,156,77,0,0,0.0757002 -36857,1715:477,157,77,0,0,0.0757362 -36858,1715:478,158,77,0,0,0.0757937 -36859,1715:479,159,77,0,0,0.0758731 -36860,1716:370,160,77,0,0,0.0759307 -36861,1716:371,161,77,0,0,0.0759668 -36862,1716:372,162,77,0,0,0.0760245 -36863,1716:373,163,77,0,0,0.0761038 -36864,1716:374,164,77,0,0,0.07614 -36865,1716:475,165,77,0,0,0.0761472 -36866,1716:476,166,77,0,0,0.0761545 -36867,1716:477,167,77,0,0,0.0761618 -36868,1716:478,168,77,0,0,0.0761834 -36869,1716:479,169,77,0,0,0.0761907 -36870,1717:370,170,77,0,0,0.0761907 -36871,1717:371,171,77,0,0,0.0761978 -36872,1717:372,172,77,0,0,0.076205 -36873,1717:373,173,77,0,0,0.0762196 -36874,1717:374,174,77,0,0,0.0762267 -36875,1717:475,175,77,0,0,0.0762629 -36876,1717:476,176,77,0,0,0.0762918 -36877,1717:477,177,77,0,0,0.0763064 -36878,1717:478,178,77,0,0,0.0763137 -36879,1717:479,179,77,0,0,0.0763208 -36880,1718:370,180,77,0,0,0.0763354 -36881,7718:380,-180,78,0,0,0.0763064 -36882,7717:489,-179,78,0,0,0.0763137 -36883,7717:488,-178,78,0,0,0.0763281 -36884,7717:487,-177,78,0,0,0.07635 -36885,7717:486,-176,78,0,0,0.0763643 -36886,7717:485,-175,78,0,0,0.0763789 -36887,7717:384,-174,78,0,0,0.0763716 -36888,7717:383,-173,78,0,0,0.0763643 -36889,7717:382,-172,78,0,0,0.0764006 -36890,7717:381,-171,78,0,0,0.0764442 -36891,7717:380,-170,78,0,0,0.0764949 -36892,7716:489,-169,78,0,0,0.0764949 -36893,7716:488,-168,78,0,0,0.0764949 -36894,7716:487,-167,78,0,0,0.0764803 -36895,7716:486,-166,78,0,0,0.0764223 -36896,7716:485,-165,78,0,0,0.0763643 -36897,7716:384,-164,78,0,0,0.0763427 -36898,7716:383,-163,78,0,0,0.0765093 -36899,7715:489,-159,78,0,0,0.0764949 -36900,7715:488,-158,78,0,0,0.076553 -36901,7715:485,-155,78,0,0,0.0766328 -36902,7715:384,-154,78,0,0,0.0766111 -36903,7715:383,-153,78,0,0,0.0766184 -36904,7715:382,-152,78,0,0,0.0766621 -36905,7715:381,-151,78,0,0,0.0766184 -36906,7714:489,-149,78,0,0,0.0776275 -36907,7714:382,-142,78,0,0,0.0759452 -36908,7713:485,-135,78,0,0,0.0776644 -36909,7713:384,-134,78,0,0,0.077819 -36910,7713:383,-133,78,0,0,0.0778116 -36911,7708:380,-80,78,0,0,0.0779224 -36912,7707:489,-79,78,0,0,0.077974 -36913,7707:488,-78,78,0,0,0.078085 -36914,7707:485,-75,78,0,0,0.0784405 -36915,7707:382,-72,78,0,0,0.0773411 -36916,7707:381,-71,78,0,0,0.0770117 -36917,7707:380,-70,78,0,0,0.0770191 -36918,7706:489,-69,78,0,0,0.0770922 -36919,7706:488,-68,78,0,0,0.0772311 -36920,7706:487,-67,78,0,0,0.0772459 -36921,7706:382,-62,78,0,0,0.0766692 -36922,7706:381,-61,78,0,0,0.0766038 -36923,7706:380,-60,78,0,0,0.0766257 -36924,7705:489,-59,78,0,0,0.0767203 -36925,7705:488,-58,78,0,0,0.0766111 -36926,7705:487,-57,78,0,0,0.0765093 -36927,7705:486,-56,78,0,0,0.0765022 -36928,7705:485,-55,78,0,0,0.0764949 -36929,7705:384,-54,78,0,0,0.0765166 -36930,7705:382,-52,78,0,0,0.0765093 -36931,7705:380,-50,78,0,0,0.0764513 -36932,7704:489,-49,78,0,0,0.0765384 -36933,7704:383,-43,78,0,0,0.0766111 -36934,7703:488,-38,78,0,0,0.0764006 -36935,7703:487,-37,78,0,0,0.0763137 -36936,7703:486,-36,78,0,0,0.0762629 -36937,7703:485,-35,78,0,0,0.0762775 -36938,7703:384,-34,78,0,0,0.0762413 -36939,7703:383,-33,78,0,0,0.0762123 -36940,7703:382,-32,78,0,0,0.076205 -36941,7703:381,-31,78,0,0,0.0762123 -36942,7703:380,-30,78,0,0,0.0762413 -36943,7702:489,-29,78,0,0,0.0762558 -36944,7702:488,-28,78,0,0,0.0762485 -36945,7702:487,-27,78,0,0,0.0762702 -36946,7702:486,-26,78,0,0,0.0762775 -36947,7702:485,-25,78,0,0,0.0762918 -36948,7702:384,-24,78,0,0,0.0762558 -36949,7702:383,-23,78,0,0,0.0762267 -36950,7702:382,-22,78,0,0,0.0762123 -36951,7702:381,-21,78,0,0,0.0761472 -36952,7702:380,-20,78,0,0,0.0760749 -36953,7701:489,-19,78,0,0,0.0760029 -36954,7701:488,-18,78,0,0,0.0758658 -36955,7701:487,-17,78,0,0,0.0757867 -36956,7701:486,-16,78,0,0,0.07565 -36957,7701:485,-15,78,0,0,0.0754492 -36958,7701:384,-14,78,0,0,0.075313 -36959,7701:383,-13,78,0,0,0.07527 -36960,7701:382,-12,78,0,0,0.0752559 -36961,7701:381,-11,78,0,0,0.0752631 -36962,7701:380,-10,78,0,0,0.0754061 -36963,7700:489,-9,78,0,0,0.0759162 -36964,7700:488,-8,78,0,0,0.0762775 -36965,7700:487,-7,78,0,0,0.0775026 -36966,7700:486,-6,78,0,0,0.0786266 -36967,7700:485,-5,78,0,0,0.0788053 -36968,7700:384,-4,78,0,0,0.0790369 -36969,7700:383,-3,78,0,0,0.0784852 -36970,7700:381,-1,78,0,0,0.0818642 -36971,1700:381,0,78,0,0,0.0824762 -36972,1700:381,1,78,0,0,0.0787234 -36973,1700:382,2,78,0,0,0.0782551 -36974,1700:383,3,78,0,0,0.0773411 -36975,1700:384,4,78,0,0,0.0814095 -36976,1700:485,5,78,0,0,0.0871239 -36977,1700:486,6,78,0,0,0.0884567 -36978,1700:487,7,78,0,0,0.0905415 -36979,1700:488,8,78,0,0,0.0839419 -36980,1701:381,11,78,0,0,0.0786861 -36981,1701:382,12,78,0,0,0.0769754 -36982,1701:383,13,78,0,0,0.0768514 -36983,1701:384,14,78,0,0,0.0768732 -36984,1701:485,15,78,0,0,0.0766839 -36985,1701:486,16,78,0,0,0.0769973 -36986,1701:487,17,78,0,0,0.0773118 -36987,1701:488,18,78,0,0,0.0787009 -36988,1701:489,19,78,0,0,0.0803555 -36989,1702:380,20,78,0,0,0.0803405 -36990,1702:381,21,78,0,0,0.0811335 -36991,1702:382,22,78,0,0,0.0782775 -36992,1702:383,23,78,0,0,0.0762485 -36993,1713:383,133,78,0,0,0.0802265 -36994,1713:384,134,78,0,0,0.079939 -36995,1713:485,135,78,0,0,0.0794567 -36996,1713:486,136,78,0,0,0.07827 -36997,1713:487,137,78,0,0,0.0767056 -36998,1713:488,138,78,0,0,0.0764876 -36999,1713:489,139,78,0,0,0.0758298 -37000,1714:380,140,78,0,0,0.0756355 -37001,1714:381,141,78,0,0,0.0757435 -37002,1714:382,142,78,0,0,0.0759523 -37003,1714:383,143,78,0,0,0.0760679 -37004,1714:384,144,78,0,0,0.0760606 -37005,1714:485,145,78,0,0,0.076039 -37006,1714:486,146,78,0,0,0.0755135 -37007,1715:380,150,78,0,0,0.0755424 -37008,1715:381,151,78,0,0,0.0756787 -37009,1715:382,152,78,0,0,0.0753489 -37010,1715:383,153,78,0,0,0.075313 -37011,1715:384,154,78,0,0,0.0754492 -37012,1715:485,155,78,0,0,0.0755494 -37013,1715:486,156,78,0,0,0.0755926 -37014,1715:487,157,78,0,0,0.0756285 -37015,1715:488,158,78,0,0,0.0757507 -37016,1715:489,159,78,0,0,0.0758803 -37017,1716:380,160,78,0,0,0.0759019 -37018,1716:381,161,78,0,0,0.0759234 -37019,1716:382,162,78,0,0,0.075974 -37020,1716:383,163,78,0,0,0.0760749 -37021,1716:384,164,78,0,0,0.07614 -37022,1716:485,165,78,0,0,0.0761472 -37023,1716:486,166,78,0,0,0.0761689 -37024,1716:487,167,78,0,0,0.0761834 -37025,1716:488,168,78,0,0,0.0761978 -37026,1716:489,169,78,0,0,0.0761978 -37027,1717:380,170,78,0,0,0.076205 -37028,1717:381,171,78,0,0,0.0762123 -37029,1717:382,172,78,0,0,0.0762196 -37030,1717:383,173,78,0,0,0.0762123 -37031,1717:384,174,78,0,0,0.0762267 -37032,1717:485,175,78,0,0,0.0762558 -37033,1717:486,176,78,0,0,0.0762848 -37034,1717:487,177,78,0,0,0.0762918 -37035,1717:488,178,78,0,0,0.0762918 -37036,1717:489,179,78,0,0,0.0762918 -37037,1718:380,180,78,0,0,0.0763064 -37038,7718:390,-180,79,0,0,0.0762702 -37039,7717:499,-179,79,0,0,0.0762918 -37040,7717:498,-178,79,0,0,0.0763354 -37041,7717:497,-177,79,0,0,0.0763354 -37042,7717:496,-176,79,0,0,0.0763354 -37043,7717:495,-175,79,0,0,0.0763427 -37044,7717:394,-174,79,0,0,0.0763571 -37045,7717:393,-173,79,0,0,0.076386 -37046,7717:392,-172,79,0,0,0.0764442 -37047,7717:391,-171,79,0,0,0.0764803 -37048,7717:390,-170,79,0,0,0.0764659 -37049,7716:499,-169,79,0,0,0.0764442 -37050,7716:498,-168,79,0,0,0.0764223 -37051,7716:497,-167,79,0,0,0.0763933 -37052,7716:496,-166,79,0,0,0.0763643 -37053,7716:495,-165,79,0,0,0.0763354 -37054,7716:394,-164,79,0,0,0.0763933 -37055,7716:393,-163,79,0,0,0.0765457 -37056,7716:391,-161,79,0,0,0.076553 -37057,7716:390,-160,79,0,0,0.0765747 -37058,7715:495,-155,79,0,0,0.0766184 -37059,7715:393,-153,79,0,0,0.0765457 -37060,7715:392,-152,79,0,0,0.0766038 -37061,7715:391,-151,79,0,0,0.0766184 -37062,7715:390,-150,79,0,0,0.0766328 -37063,7713:495,-135,79,0,0,0.0775687 -37064,7713:394,-134,79,0,0,0.077635 -37065,7713:393,-133,79,0,0,0.0776201 -37066,7713:392,-132,79,0,0,0.0778634 -37067,7708:391,-81,79,0,0,0.0777084 -37068,7708:390,-80,79,0,0,0.0779519 -37069,7707:499,-79,79,0,0,0.077937 -37070,7707:392,-72,79,0,0,0.0772825 -37071,7707:391,-71,79,0,0,0.0770409 -37072,7707:390,-70,79,0,0,0.0769825 -37073,7706:499,-69,79,0,0,0.0769681 -37074,7706:498,-68,79,0,0,0.0769681 -37075,7706:497,-67,79,0,0,0.0769168 -37076,7706:495,-65,79,0,0,0.077063 -37077,7706:394,-64,79,0,0,0.0769973 -37078,7706:392,-62,79,0,0,0.0767494 -37079,7706:391,-61,79,0,0,0.0765313 -37080,7706:390,-60,79,0,0,0.076524 -37081,7705:499,-59,79,0,0,0.0766328 -37082,7705:394,-54,79,0,0,0.0766257 -37083,7705:393,-53,79,0,0,0.0765676 -37084,7705:392,-52,79,0,0,0.0764659 -37085,7705:391,-51,79,0,0,0.0762991 -37086,7704:498,-48,79,0,0,0.0765384 -37087,7704:392,-42,79,0,0,0.0764803 -37088,7704:390,-40,79,0,0,0.0764513 -37089,7703:499,-39,79,0,0,0.0763281 -37090,7703:498,-38,79,0,0,0.0762775 -37091,7703:497,-37,79,0,0,0.0762702 -37092,7703:496,-36,79,0,0,0.0762702 -37093,7703:495,-35,79,0,0,0.0762991 -37094,7703:394,-34,79,0,0,0.0762918 -37095,7703:393,-33,79,0,0,0.0762413 -37096,7703:392,-32,79,0,0,0.0762413 -37097,7703:391,-31,79,0,0,0.0762413 -37098,7703:390,-30,79,0,0,0.076234 -37099,7702:499,-29,79,0,0,0.076234 -37100,7702:498,-28,79,0,0,0.076234 -37101,7702:497,-27,79,0,0,0.0762702 -37102,7702:496,-26,79,0,0,0.0762848 -37103,7702:495,-25,79,0,0,0.0762918 -37104,7702:394,-24,79,0,0,0.0762702 -37105,7702:393,-23,79,0,0,0.076205 -37106,7702:392,-22,79,0,0,0.0761689 -37107,7702:391,-21,79,0,0,0.0761472 -37108,7702:390,-20,79,0,0,0.0760967 -37109,7701:499,-19,79,0,0,0.076046 -37110,7701:498,-18,79,0,0,0.0759307 -37111,7701:497,-17,79,0,0,0.0756787 -37112,7701:496,-16,79,0,0,0.0755854 -37113,7701:495,-15,79,0,0,0.0754921 -37114,7701:394,-14,79,0,0,0.0753489 -37115,7701:393,-13,79,0,0,0.0752844 -37116,7701:392,-12,79,0,0,0.0752559 -37117,7701:391,-11,79,0,0,0.0752631 -37118,7701:390,-10,79,0,0,0.0753703 -37119,7700:499,-9,79,0,0,0.0755854 -37120,7700:498,-8,79,0,0,0.0758946 -37121,7700:497,-7,79,0,0,0.0775907 -37122,7700:496,-6,79,0,0,0.0782775 -37123,7700:495,-5,79,0,0,0.0782847 -37124,7700:394,-4,79,0,0,0.0781071 -37125,7700:392,-2,79,0,0,0.0771215 -37126,1700:391,0,79,0,0,0.0780552 -37127,1700:391,1,79,0,0,0.0799466 -37128,1700:392,2,79,0,0,0.0782626 -37129,1700:393,3,79,0,0,0.0768877 -37130,1700:394,4,79,0,0,0.0767858 -37131,1700:495,5,79,0,0,0.0778116 -37132,1700:496,6,79,0,0,0.0870013 -37133,1700:497,7,79,0,0,0.089699 -37134,1701:390,10,79,0,0,0.0787605 -37135,1701:391,11,79,0,0,0.0769899 -37136,1701:392,12,79,0,0,0.0766401 -37137,1701:393,13,79,0,0,0.076553 -37138,1701:394,14,79,0,0,0.0764442 -37139,1701:495,15,79,0,0,0.0763427 -37140,1701:496,16,79,0,0,0.0769681 -37141,1701:497,17,79,0,0,0.0784927 -37142,1701:498,18,79,0,0,0.0791042 -37143,1701:499,19,79,0,0,0.0785224 -37144,1702:390,20,79,0,0,0.0757435 -37145,1702:391,21,79,0,0,0.0759956 -37146,1702:392,22,79,0,0,0.0769681 -37147,1702:393,23,79,0,0,0.0763933 -37148,1702:394,24,79,0,0,0.0765166 -37149,1712:499,129,79,0,0,0.0892469 -37150,1713:393,133,79,0,0,0.0801812 -37151,1713:394,134,79,0,0,0.0790369 -37152,1713:495,135,79,0,0,0.0775981 -37153,1713:496,136,79,0,0,0.0762267 -37154,1713:497,137,79,0,0,0.0759091 -37155,1713:498,138,79,0,0,0.0756428 -37156,1713:499,139,79,0,0,0.0755207 -37157,1714:390,140,79,0,0,0.0754849 -37158,1714:391,141,79,0,0,0.075758 -37159,1714:392,142,79,0,0,0.0757507 -37160,1714:393,143,79,0,0,0.0755926 -37161,1714:394,144,79,0,0,0.075765 -37162,1714:495,145,79,0,0,0.0756787 -37163,1714:496,146,79,0,0,0.0756355 -37164,1714:497,147,79,0,0,0.0755926 -37165,1714:498,148,79,0,0,0.0755567 -37166,1714:499,149,79,0,0,0.0755998 -37167,1715:390,150,79,0,0,0.0754562 -37168,1715:391,151,79,0,0,0.0756572 -37169,1715:392,152,79,0,0,0.0754849 -37170,1715:393,153,79,0,0,0.0755135 -37171,1715:394,154,79,0,0,0.0755494 -37172,1715:495,155,79,0,0,0.0755567 -37173,1715:496,156,79,0,0,0.0755639 -37174,1715:497,157,79,0,0,0.0755998 -37175,1715:498,158,79,0,0,0.075758 -37176,1715:499,159,79,0,0,0.0758586 -37177,1716:390,160,79,0,0,0.0758515 -37178,1716:391,161,79,0,0,0.0758586 -37179,1716:392,162,79,0,0,0.0759234 -37180,1716:393,163,79,0,0,0.0760245 -37181,1716:394,164,79,0,0,0.0761183 -37182,1716:495,165,79,0,0,0.0761545 -37183,1716:496,166,79,0,0,0.0761761 -37184,1716:497,167,79,0,0,0.0761978 -37185,1716:498,168,79,0,0,0.0762123 -37186,1716:499,169,79,0,0,0.0762196 -37187,1717:390,170,79,0,0,0.0762267 -37188,1717:391,171,79,0,0,0.0762196 -37189,1717:392,172,79,0,0,0.0762123 -37190,1717:393,173,79,0,0,0.0762123 -37191,1717:394,174,79,0,0,0.076234 -37192,1717:495,175,79,0,0,0.0762558 -37193,1717:496,176,79,0,0,0.0762775 -37194,1717:497,177,79,0,0,0.0762848 -37195,1717:498,178,79,0,0,0.0762702 -37196,1717:499,179,79,0,0,0.0762702 -37197,1718:390,180,79,0,0,0.0762702 -37198,7818:100,-180,80,0,0,0.0762629 -37199,7817:209,-179,80,0,0,0.0762629 -37200,7817:208,-178,80,0,0,0.0762702 -37201,7817:207,-177,80,0,0,0.0762848 -37202,7817:206,-176,80,0,0,0.0763137 -37203,7817:205,-175,80,0,0,0.0763643 -37204,7817:104,-174,80,0,0,0.076386 -37205,7817:103,-173,80,0,0,0.0764079 -37206,7817:102,-172,80,0,0,0.0764369 -37207,7817:101,-171,80,0,0,0.0764586 -37208,7817:100,-170,80,0,0,0.076415 -37209,7816:209,-169,80,0,0,0.076386 -37210,7816:208,-168,80,0,0,0.0763789 -37211,7816:207,-167,80,0,0,0.0763716 -37212,7816:206,-166,80,0,0,0.07635 -37213,7816:205,-165,80,0,0,0.0763571 -37214,7816:104,-164,80,0,0,0.0764586 -37215,7816:103,-163,80,0,0,0.0765747 -37216,7816:102,-162,80,0,0,0.0764513 -37217,7816:101,-161,80,0,0,0.076582 -37218,7816:100,-160,80,0,0,0.0766328 -37219,7815:209,-159,80,0,0,0.0766983 -37220,7815:103,-153,80,0,0,0.0765166 -37221,7815:102,-152,80,0,0,0.0765022 -37222,7815:101,-151,80,0,0,0.0765967 -37223,7815:100,-150,80,0,0,0.0766839 -37224,7814:209,-149,80,0,0,0.0767056 -37225,7814:208,-148,80,0,0,0.0766184 -37226,7813:205,-135,80,0,0,0.0778116 -37227,7813:104,-134,80,0,0,0.0776055 -37228,7813:103,-133,80,0,0,0.0777821 -37229,7813:102,-132,80,0,0,0.0779445 -37230,7813:101,-131,80,0,0,0.0785744 -37231,7808:100,-80,80,0,0,0.0776201 -37232,7807:209,-79,80,0,0,0.0779149 -37233,7807:101,-71,80,0,0,0.0769825 -37234,7807:100,-70,80,0,0,0.0769681 -37235,7806:209,-69,80,0,0,0.0769389 -37236,7806:208,-68,80,0,0,0.0769534 -37237,7806:207,-67,80,0,0,0.0769242 -37238,7806:206,-66,80,0,0,0.0768806 -37239,7806:205,-65,80,0,0,0.0768294 -37240,7806:104,-64,80,0,0,0.0767567 -37241,7806:103,-63,80,0,0,0.0766621 -37242,7806:102,-62,80,0,0,0.0765747 -37243,7806:101,-61,80,0,0,0.0764659 -37244,7806:100,-60,80,0,0,0.076415 -37245,7805:209,-59,80,0,0,0.0764296 -37246,7805:208,-58,80,0,0,0.0763789 -37247,7805:205,-55,80,0,0,0.0765747 -37248,7805:104,-54,80,0,0,0.076582 -37249,7805:103,-53,80,0,0,0.0765603 -37250,7805:102,-52,80,0,0,0.0764586 -37251,7804:209,-49,80,0,0,0.0764223 -37252,7804:208,-48,80,0,0,0.0764586 -37253,7804:207,-47,80,0,0,0.0765603 -37254,7804:206,-46,80,0,0,0.0765747 -37255,7804:205,-45,80,0,0,0.0765747 -37256,7804:104,-44,80,0,0,0.0765313 -37257,7804:103,-43,80,0,0,0.0764659 -37258,7804:102,-42,80,0,0,0.076386 -37259,7804:101,-41,80,0,0,0.0763064 -37260,7804:100,-40,80,0,0,0.0762918 -37261,7803:209,-39,80,0,0,0.0763064 -37262,7803:208,-38,80,0,0,0.0762991 -37263,7803:207,-37,80,0,0,0.0762991 -37264,7803:206,-36,80,0,0,0.0762991 -37265,7803:205,-35,80,0,0,0.0762918 -37266,7803:104,-34,80,0,0,0.0762775 -37267,7803:103,-33,80,0,0,0.0762775 -37268,7803:102,-32,80,0,0,0.0762991 -37269,7803:101,-31,80,0,0,0.0762991 -37270,7803:100,-30,80,0,0,0.0762848 -37271,7802:209,-29,80,0,0,0.0762775 -37272,7802:208,-28,80,0,0,0.0762775 -37273,7802:207,-27,80,0,0,0.0762918 -37274,7802:206,-26,80,0,0,0.0762918 -37275,7802:205,-25,80,0,0,0.0762918 -37276,7802:104,-24,80,0,0,0.0762775 -37277,7802:103,-23,80,0,0,0.0762267 -37278,7802:102,-22,80,0,0,0.0761761 -37279,7802:101,-21,80,0,0,0.0761256 -37280,7802:100,-20,80,0,0,0.0760533 -37281,7801:209,-19,80,0,0,0.0760317 -37282,7801:208,-18,80,0,0,0.0759307 -37283,7801:207,-17,80,0,0,0.0758443 -37284,7801:206,-16,80,0,0,0.0757435 -37285,7801:205,-15,80,0,0,0.0755854 -37286,7801:104,-14,80,0,0,0.0753775 -37287,7801:103,-13,80,0,0,0.0753058 -37288,7801:102,-12,80,0,0,0.0752631 -37289,7801:101,-11,80,0,0,0.0752631 -37290,7801:100,-10,80,0,0,0.0752916 -37291,7800:209,-9,80,0,0,0.0753989 -37292,7800:208,-8,80,0,0,0.0755711 -37293,7800:207,-7,80,0,0,0.0766038 -37294,7800:206,-6,80,0,0,0.077797 -37295,7800:205,-5,80,0,0,0.0784108 -37296,7800:104,-4,80,0,0,0.0783812 -37297,7800:103,-3,80,0,0,0.0785819 -37298,7800:101,-1,80,0,0,0.0774584 -37299,1800:101,0,80,0,0,0.0770556 -37300,1800:101,1,80,0,0,0.0771141 -37301,1800:102,2,80,0,0,0.0769754 -37302,1800:103,3,80,0,0,0.0765022 -37303,1800:104,4,80,0,0,0.077224 -37304,1800:205,5,80,0,0,0.0793366 -37305,1800:206,6,80,0,0,0.0829205 -37306,1800:207,7,80,0,0,0.0865453 -37307,1800:209,9,80,0,0,0.0787905 -37308,1801:100,10,80,0,0,0.0772018 -37309,1801:101,11,80,0,0,0.0761761 -37310,1801:102,12,80,0,0,0.0761472 -37311,1801:103,13,80,0,0,0.0762196 -37312,1801:104,14,80,0,0,0.076386 -37313,1801:205,15,80,0,0,0.0769462 -37314,1801:206,16,80,0,0,0.0773263 -37315,1801:207,17,80,0,0,0.0774439 -37316,1801:208,18,80,0,0,0.0772825 -37317,1802:205,25,80,0,0,0.0786936 -37318,1812:100,120,80,0,0,0.0895312 -37319,1812:101,121,80,0,0,0.089523 -37320,1813:100,130,80,0,0,0.085431 -37321,1813:101,131,80,0,0,0.0826707 -37322,1813:102,132,80,0,0,0.079939 -37323,1813:103,133,80,0,0,0.0801962 -37324,1813:104,134,80,0,0,0.0798332 -37325,1813:205,135,80,0,0,0.0780701 -37326,1813:206,136,80,0,0,0.0762918 -37327,1813:207,137,80,0,0,0.076039 -37328,1813:208,138,80,0,0,0.0759307 -37329,1813:209,139,80,0,0,0.0758946 -37330,1814:100,140,80,0,0,0.0757002 -37331,1814:101,141,80,0,0,0.075801 -37332,1814:102,142,80,0,0,0.0755639 -37333,1814:103,143,80,0,0,0.0752772 -37334,1814:104,144,80,0,0,0.075528 -37335,1814:205,145,80,0,0,0.0759019 -37336,1814:206,146,80,0,0,0.0760967 -37337,1814:207,147,80,0,0,0.0763789 -37338,1814:208,148,80,0,0,0.0763354 -37339,1814:209,149,80,0,0,0.0762848 -37340,1815:100,150,80,0,0,0.0760822 -37341,1815:101,151,80,0,0,0.0755135 -37342,1815:102,152,80,0,0,0.0754275 -37343,1815:103,153,80,0,0,0.0755065 -37344,1815:104,154,80,0,0,0.0755207 -37345,1815:205,155,80,0,0,0.0755065 -37346,1815:206,156,80,0,0,0.0755424 -37347,1815:207,157,80,0,0,0.0756285 -37348,1815:208,158,80,0,0,0.075722 -37349,1815:209,159,80,0,0,0.0758082 -37350,1816:100,160,80,0,0,0.0758082 -37351,1816:101,161,80,0,0,0.0758155 -37352,1816:102,162,80,0,0,0.0758658 -37353,1816:103,163,80,0,0,0.0759523 -37354,1816:104,164,80,0,0,0.0760679 -37355,1816:205,165,80,0,0,0.07614 -37356,1816:206,166,80,0,0,0.0761545 -37357,1816:207,167,80,0,0,0.0761834 -37358,1816:208,168,80,0,0,0.0762196 -37359,1816:209,169,80,0,0,0.0762267 -37360,1817:100,170,80,0,0,0.076234 -37361,1817:101,171,80,0,0,0.0762485 -37362,1817:102,172,80,0,0,0.0762485 -37363,1817:103,173,80,0,0,0.076234 -37364,1817:104,174,80,0,0,0.0762413 -37365,1817:205,175,80,0,0,0.0762558 -37366,1817:206,176,80,0,0,0.0762629 -37367,1817:207,177,80,0,0,0.0762702 -37368,1817:208,178,80,0,0,0.0762702 -37369,1817:209,179,80,0,0,0.0762702 -37370,1818:100,180,80,0,0,0.0762629 -37371,7818:110,-180,81,0,0,0.0762558 -37372,7817:219,-179,81,0,0,0.0762485 -37373,7817:218,-178,81,0,0,0.0762558 -37374,7817:217,-177,81,0,0,0.0762775 -37375,7817:216,-176,81,0,0,0.0763427 -37376,7817:215,-175,81,0,0,0.0763716 -37377,7817:114,-174,81,0,0,0.0763789 -37378,7817:113,-173,81,0,0,0.0763933 -37379,7817:112,-172,81,0,0,0.076415 -37380,7817:111,-171,81,0,0,0.076415 -37381,7817:110,-170,81,0,0,0.0763933 -37382,7816:219,-169,81,0,0,0.0763789 -37383,7816:218,-168,81,0,0,0.0763571 -37384,7816:217,-167,81,0,0,0.0763643 -37385,7816:216,-166,81,0,0,0.0763716 -37386,7816:215,-165,81,0,0,0.0764006 -37387,7816:111,-161,81,0,0,0.0766257 -37388,7816:110,-160,81,0,0,0.076713 -37389,7815:219,-159,81,0,0,0.0767785 -37390,7815:218,-158,81,0,0,0.0768149 -37391,7815:217,-157,81,0,0,0.0768294 -37392,7815:114,-154,81,0,0,0.0763716 -37393,7815:113,-153,81,0,0,0.0763789 -37394,7815:112,-152,81,0,0,0.0764659 -37395,7815:111,-151,81,0,0,0.0765893 -37396,7815:110,-150,81,0,0,0.0766765 -37397,7814:219,-149,81,0,0,0.0767056 -37398,7813:215,-135,81,0,0,0.0777453 -37399,7813:111,-131,81,0,0,0.0781514 -37400,7813:110,-130,81,0,0,0.0784036 -37401,7812:219,-129,81,0,0,0.0790294 -37402,7812:218,-128,81,0,0,0.0790743 -37403,7812:217,-127,81,0,0,0.0791417 -37404,7807:218,-78,81,0,0,0.0778706 -37405,7806:218,-68,81,0,0,0.0769607 -37406,7806:217,-67,81,0,0,0.0769899 -37407,7806:216,-66,81,0,0,0.0769168 -37408,7806:215,-65,81,0,0,0.0767929 -37409,7806:114,-64,81,0,0,0.0767203 -37410,7806:113,-63,81,0,0,0.0766475 -37411,7806:112,-62,81,0,0,0.0765457 -37412,7806:111,-61,81,0,0,0.076415 -37413,7806:110,-60,81,0,0,0.0763716 -37414,7805:219,-59,81,0,0,0.0763571 -37415,7805:218,-58,81,0,0,0.0764006 -37416,7805:217,-57,81,0,0,0.0764369 -37417,7805:215,-55,81,0,0,0.0764876 -37418,7805:114,-54,81,0,0,0.0765093 -37419,7805:113,-53,81,0,0,0.0764803 -37420,7805:112,-52,81,0,0,0.0764586 -37421,7805:111,-51,81,0,0,0.076415 -37422,7804:218,-48,81,0,0,0.0764006 -37423,7804:217,-47,81,0,0,0.0765967 -37424,7804:216,-46,81,0,0,0.0766184 -37425,7804:215,-45,81,0,0,0.0765676 -37426,7804:114,-44,81,0,0,0.0763933 -37427,7804:113,-43,81,0,0,0.0762991 -37428,7804:112,-42,81,0,0,0.0762848 -37429,7804:111,-41,81,0,0,0.0763064 -37430,7804:110,-40,81,0,0,0.0763354 -37431,7803:219,-39,81,0,0,0.0763354 -37432,7803:218,-38,81,0,0,0.0763281 -37433,7803:217,-37,81,0,0,0.0763208 -37434,7803:216,-36,81,0,0,0.0763137 -37435,7803:215,-35,81,0,0,0.0763064 -37436,7803:114,-34,81,0,0,0.0762991 -37437,7803:113,-33,81,0,0,0.0762918 -37438,7803:112,-32,81,0,0,0.0763064 -37439,7803:111,-31,81,0,0,0.0763137 -37440,7803:110,-30,81,0,0,0.0762918 -37441,7802:219,-29,81,0,0,0.0762918 -37442,7802:218,-28,81,0,0,0.0762918 -37443,7802:217,-27,81,0,0,0.0762918 -37444,7802:216,-26,81,0,0,0.0763064 -37445,7802:215,-25,81,0,0,0.0763137 -37446,7802:114,-24,81,0,0,0.0762848 -37447,7802:113,-23,81,0,0,0.076234 -37448,7802:112,-22,81,0,0,0.0761907 -37449,7802:111,-21,81,0,0,0.0761689 -37450,7802:110,-20,81,0,0,0.0761327 -37451,7801:219,-19,81,0,0,0.0760822 -37452,7801:218,-18,81,0,0,0.0759595 -37453,7801:217,-17,81,0,0,0.0758155 -37454,7801:216,-16,81,0,0,0.0757075 -37455,7801:215,-15,81,0,0,0.075528 -37456,7801:114,-14,81,0,0,0.075442 -37457,7801:113,-13,81,0,0,0.0753631 -37458,7801:112,-12,81,0,0,0.0753272 -37459,7801:111,-11,81,0,0,0.075313 -37460,7801:110,-10,81,0,0,0.0752916 -37461,7800:219,-9,81,0,0,0.0752986 -37462,7800:218,-8,81,0,0,0.0754133 -37463,7800:217,-7,81,0,0,0.0759307 -37464,7800:216,-6,81,0,0,0.0765747 -37465,7800:215,-5,81,0,0,0.077532 -37466,7800:114,-4,81,0,0,0.0781812 -37467,7800:113,-3,81,0,0,0.0784108 -37468,7800:112,-2,81,0,0,0.0787159 -37469,7800:111,-1,81,0,0,0.0784777 -37470,1800:111,0,81,0,0,0.0777307 -37471,1800:111,1,81,0,0,0.0770338 -37472,1800:112,2,81,0,0,0.0769462 -37473,1800:113,3,81,0,0,0.0763137 -37474,1800:114,4,81,0,0,0.0763208 -37475,1800:215,5,81,0,0,0.0772018 -37476,1800:216,6,81,0,0,0.0779445 -37477,1800:219,9,81,0,0,0.07888 -37478,1801:110,10,81,0,0,0.076415 -37479,1801:111,11,81,0,0,0.0771873 -37480,1801:112,12,81,0,0,0.0779591 -37481,1801:113,13,81,0,0,0.0787382 -37482,1801:114,14,81,0,0,0.079254 -37483,1801:215,15,81,0,0,0.0802039 -37484,1812:217,127,81,0,0,0.0857286 -37485,1812:219,129,81,0,0,0.085359 -37486,1813:110,130,81,0,0,0.0858415 -37487,1813:111,131,81,0,0,0.084831 -37488,1813:112,132,81,0,0,0.0800146 -37489,1813:113,133,81,0,0,0.0806751 -37490,1813:114,134,81,0,0,0.0795092 -37491,1813:215,135,81,0,0,0.0774658 -37492,1813:216,136,81,0,0,0.0768221 -37493,1813:217,137,81,0,0,0.0763064 -37494,1813:218,138,81,0,0,0.0765022 -37495,1813:219,139,81,0,0,0.0764442 -37496,1814:110,140,81,0,0,0.0763933 -37497,1814:111,141,81,0,0,0.0762775 -37498,1814:112,142,81,0,0,0.076415 -37499,1814:113,143,81,0,0,0.0761907 -37500,1814:114,144,81,0,0,0.0759379 -37501,1814:215,145,81,0,0,0.075765 -37502,1814:216,146,81,0,0,0.0760749 -37503,1814:217,147,81,0,0,0.0762196 -37504,1814:218,148,81,0,0,0.0763208 -37505,1814:219,149,81,0,0,0.0766328 -37506,1815:110,150,81,0,0,0.0764223 -37507,1815:111,151,81,0,0,0.0755065 -37508,1815:112,152,81,0,0,0.0753917 -37509,1815:113,153,81,0,0,0.0754706 -37510,1815:114,154,81,0,0,0.075442 -37511,1815:215,155,81,0,0,0.0754634 -37512,1815:216,156,81,0,0,0.0754562 -37513,1815:217,157,81,0,0,0.0755207 -37514,1815:218,158,81,0,0,0.07565 -37515,1815:219,159,81,0,0,0.075758 -37516,1816:110,160,81,0,0,0.0757722 -37517,1816:111,161,81,0,0,0.0757937 -37518,1816:112,162,81,0,0,0.0758225 -37519,1816:113,163,81,0,0,0.0758803 -37520,1816:114,164,81,0,0,0.075974 -37521,1816:215,165,81,0,0,0.0761038 -37522,1816:216,166,81,0,0,0.0761761 -37523,1816:217,167,81,0,0,0.076205 -37524,1816:218,168,81,0,0,0.0762196 -37525,1816:219,169,81,0,0,0.076234 -37526,1817:110,170,81,0,0,0.0762558 -37527,1817:111,171,81,0,0,0.0762702 -37528,1817:112,172,81,0,0,0.0762558 -37529,1817:113,173,81,0,0,0.0762485 -37530,1817:114,174,81,0,0,0.0762558 -37531,1817:215,175,81,0,0,0.0762702 -37532,1817:216,176,81,0,0,0.0762848 -37533,1817:217,177,81,0,0,0.0762848 -37534,1817:218,178,81,0,0,0.0762918 -37535,1817:219,179,81,0,0,0.0762702 -37536,1818:110,180,81,0,0,0.0762558 -37537,7818:120,-180,82,0,0,0.0762629 -37538,7817:229,-179,82,0,0,0.0762629 -37539,7817:228,-178,82,0,0,0.0762848 -37540,7817:227,-177,82,0,0,0.0763137 -37541,7817:226,-176,82,0,0,0.07635 -37542,7817:225,-175,82,0,0,0.0763643 -37543,7817:124,-174,82,0,0,0.0763789 -37544,7817:123,-173,82,0,0,0.076386 -37545,7817:122,-172,82,0,0,0.0763933 -37546,7817:121,-171,82,0,0,0.0763933 -37547,7817:120,-170,82,0,0,0.0763716 -37548,7816:229,-169,82,0,0,0.0763427 -37549,7816:228,-168,82,0,0,0.0763354 -37550,7816:227,-167,82,0,0,0.0763643 -37551,7816:226,-166,82,0,0,0.0764732 -37552,7816:225,-165,82,0,0,0.0764949 -37553,7816:124,-164,82,0,0,0.0764369 -37554,7816:123,-163,82,0,0,0.0764803 -37555,7816:122,-162,82,0,0,0.0765384 -37556,7816:121,-161,82,0,0,0.0765893 -37557,7816:120,-160,82,0,0,0.0766692 -37558,7815:124,-154,82,0,0,0.0762558 -37559,7815:123,-153,82,0,0,0.07635 -37560,7815:122,-152,82,0,0,0.0765093 -37561,7815:121,-151,82,0,0,0.0766548 -37562,7815:120,-150,82,0,0,0.0766839 -37563,7814:228,-148,82,0,0,0.0767567 -37564,7814:227,-147,82,0,0,0.0768294 -37565,7814:226,-146,82,0,0,0.0768294 -37566,7813:226,-136,82,0,0,0.0777084 -37567,7813:225,-135,82,0,0,0.0776421 -37568,7813:123,-133,82,0,0,0.0789397 -37569,7808:120,-80,82,0,0,0.0803708 -37570,7807:228,-78,82,0,0,0.0778116 -37571,7807:227,-77,82,0,0,0.0776718 -37572,7806:122,-62,82,0,0,0.0765676 -37573,7806:121,-61,82,0,0,0.0763643 -37574,7806:120,-60,82,0,0,0.0763281 -37575,7805:229,-59,82,0,0,0.0763933 -37576,7805:228,-58,82,0,0,0.076386 -37577,7805:226,-56,82,0,0,0.0765313 -37578,7805:225,-55,82,0,0,0.0764803 -37579,7805:124,-54,82,0,0,0.0765166 -37580,7805:122,-52,82,0,0,0.0764659 -37581,7805:121,-51,82,0,0,0.0764876 -37582,7804:229,-49,82,0,0,0.0765313 -37583,7804:227,-47,82,0,0,0.0766692 -37584,7804:226,-46,82,0,0,0.0766401 -37585,7804:225,-45,82,0,0,0.0764296 -37586,7804:124,-44,82,0,0,0.0763281 -37587,7804:123,-43,82,0,0,0.0763354 -37588,7804:122,-42,82,0,0,0.0763427 -37589,7804:121,-41,82,0,0,0.07635 -37590,7804:120,-40,82,0,0,0.07635 -37591,7803:229,-39,82,0,0,0.0763427 -37592,7803:228,-38,82,0,0,0.07635 -37593,7803:227,-37,82,0,0,0.0763427 -37594,7803:226,-36,82,0,0,0.0763208 -37595,7803:225,-35,82,0,0,0.0762991 -37596,7803:124,-34,82,0,0,0.0762918 -37597,7803:123,-33,82,0,0,0.0762918 -37598,7803:122,-32,82,0,0,0.0762918 -37599,7803:121,-31,82,0,0,0.0763064 -37600,7803:120,-30,82,0,0,0.0762991 -37601,7802:229,-29,82,0,0,0.0762918 -37602,7802:228,-28,82,0,0,0.0762991 -37603,7802:227,-27,82,0,0,0.0763137 -37604,7802:226,-26,82,0,0,0.0763208 -37605,7802:225,-25,82,0,0,0.0763137 -37606,7802:124,-24,82,0,0,0.0762918 -37607,7802:123,-23,82,0,0,0.0762413 -37608,7802:122,-22,82,0,0,0.0761978 -37609,7802:121,-21,82,0,0,0.0761618 -37610,7802:120,-20,82,0,0,0.0760679 -37611,7801:229,-19,82,0,0,0.0759884 -37612,7801:228,-18,82,0,0,0.0759234 -37613,7801:227,-17,82,0,0,0.0758082 -37614,7801:226,-16,82,0,0,0.0756285 -37615,7801:225,-15,82,0,0,0.0755854 -37616,7801:124,-14,82,0,0,0.0756068 -37617,7801:123,-13,82,0,0,0.0754993 -37618,7801:122,-12,82,0,0,0.0753561 -37619,7801:121,-11,82,0,0,0.0753489 -37620,7801:120,-10,82,0,0,0.0753272 -37621,7800:229,-9,82,0,0,0.0753344 -37622,7800:228,-8,82,0,0,0.0753489 -37623,7800:227,-7,82,0,0,0.0754779 -37624,7800:226,-6,82,0,0,0.07614 -37625,7800:225,-5,82,0,0,0.0769024 -37626,7800:124,-4,82,0,0,0.0766983 -37627,7800:123,-3,82,0,0,0.0765166 -37628,7800:122,-2,82,0,0,0.0766111 -37629,7800:121,-1,82,0,0,0.0768585 -37630,1800:121,0,82,0,0,0.0766475 -37631,1800:121,1,82,0,0,0.076205 -37632,1800:122,2,82,0,0,0.0762196 -37633,1800:123,3,82,0,0,0.0760749 -37634,1800:124,4,82,0,0,0.0771433 -37635,1800:225,5,82,0,0,0.080022 -37636,1800:226,6,82,0,0,0.0803859 -37637,1800:227,7,82,0,0,0.079939 -37638,1800:228,8,82,0,0,0.080614 -37639,1800:229,9,82,0,0,0.0764949 -37640,1801:120,10,82,0,0,0.0772459 -37641,1801:121,11,82,0,0,0.0781884 -37642,1801:122,12,82,0,0,0.0795545 -37643,1801:123,13,82,0,0,0.0806445 -37644,1801:124,14,82,0,0,0.081471 -37645,1803:120,30,82,0,0,0.0895312 -37646,1811:228,118,82,0,0,0.089523 -37647,1811:229,119,82,0,0,0.0895062 -37648,1812:120,120,82,0,0,0.0895062 -37649,1812:121,121,82,0,0,0.0895062 -37650,1812:229,129,82,0,0,0.0830534 -37651,1813:120,130,82,0,0,0.0824683 -37652,1813:121,131,82,0,0,0.0837446 -37653,1813:122,132,82,0,0,0.0818408 -37654,1813:123,133,82,0,0,0.0807056 -37655,1813:124,134,82,0,0,0.0800296 -37656,1813:225,135,82,0,0,0.0785968 -37657,1813:226,136,82,0,0,0.0777821 -37658,1813:227,137,82,0,0,0.0770775 -37659,1813:228,138,82,0,0,0.0764223 -37660,1813:229,139,82,0,0,0.0762702 -37661,1814:120,140,82,0,0,0.0788053 -37662,1814:121,141,82,0,0,0.0789771 -37663,1814:122,142,82,0,0,0.0783812 -37664,1814:123,143,82,0,0,0.0779961 -37665,1814:124,144,82,0,0,0.0777821 -37666,1814:225,145,82,0,0,0.0759668 -37667,1814:226,146,82,0,0,0.0765313 -37668,1814:227,147,82,0,0,0.0759668 -37669,1814:228,148,82,0,0,0.0755854 -37670,1814:229,149,82,0,0,0.0771799 -37671,1815:120,150,82,0,0,0.0768294 -37672,1815:121,151,82,0,0,0.0755494 -37673,1815:122,152,82,0,0,0.0753917 -37674,1815:123,153,82,0,0,0.0753775 -37675,1815:124,154,82,0,0,0.0753272 -37676,1815:225,155,82,0,0,0.0753561 -37677,1815:226,156,82,0,0,0.0754203 -37678,1815:227,157,82,0,0,0.0754061 -37679,1815:228,158,82,0,0,0.0754921 -37680,1815:229,159,82,0,0,0.0756355 -37681,1816:120,160,82,0,0,0.0757362 -37682,1816:121,161,82,0,0,0.075765 -37683,1816:122,162,82,0,0,0.075765 -37684,1816:123,163,82,0,0,0.0757937 -37685,1816:124,164,82,0,0,0.0758803 -37686,1816:225,165,82,0,0,0.0760533 -37687,1816:226,166,82,0,0,0.0761545 -37688,1816:227,167,82,0,0,0.076205 -37689,1816:228,168,82,0,0,0.0762196 -37690,1816:229,169,82,0,0,0.0762413 -37691,1817:120,170,82,0,0,0.0762702 -37692,1817:121,171,82,0,0,0.0762775 -37693,1817:122,172,82,0,0,0.0762629 -37694,1817:123,173,82,0,0,0.0762629 -37695,1817:124,174,82,0,0,0.0762775 -37696,1817:225,175,82,0,0,0.0762848 -37697,1817:226,176,82,0,0,0.0762848 -37698,1817:227,177,82,0,0,0.0762848 -37699,1817:228,178,82,0,0,0.0762918 -37700,1817:229,179,82,0,0,0.0762775 -37701,1818:120,180,82,0,0,0.0762629 -37702,7818:130,-180,83,0,0,0.0762775 -37703,7817:239,-179,83,0,0,0.0762848 -37704,7817:238,-178,83,0,0,0.0763137 -37705,7817:237,-177,83,0,0,0.0763354 -37706,7817:236,-176,83,0,0,0.07635 -37707,7817:235,-175,83,0,0,0.0763571 -37708,7817:134,-174,83,0,0,0.0763571 -37709,7817:133,-173,83,0,0,0.0763643 -37710,7817:132,-172,83,0,0,0.0763716 -37711,7817:131,-171,83,0,0,0.0763643 -37712,7817:130,-170,83,0,0,0.0763354 -37713,7816:239,-169,83,0,0,0.0763354 -37714,7816:238,-168,83,0,0,0.0765313 -37715,7816:237,-167,83,0,0,0.0766184 -37716,7816:236,-166,83,0,0,0.0766257 -37717,7816:235,-165,83,0,0,0.0766038 -37718,7816:134,-164,83,0,0,0.0765457 -37719,7816:133,-163,83,0,0,0.0765022 -37720,7816:132,-162,83,0,0,0.0765022 -37721,7816:131,-161,83,0,0,0.0765384 -37722,7816:130,-160,83,0,0,0.0765384 -37723,7815:239,-159,83,0,0,0.0765022 -37724,7815:238,-158,83,0,0,0.0766692 -37725,7815:134,-154,83,0,0,0.0762775 -37726,7815:133,-153,83,0,0,0.0763571 -37727,7815:132,-152,83,0,0,0.076553 -37728,7815:131,-151,83,0,0,0.0766548 -37729,7815:130,-150,83,0,0,0.0766621 -37730,7813:237,-137,83,0,0,0.0776055 -37731,7813:236,-136,83,0,0,0.0777675 -37732,7813:133,-133,83,0,0,0.0792391 -37733,7808:131,-81,83,0,0,0.0791266 -37734,7807:238,-78,83,0,0,0.0777527 -37735,7806:134,-64,83,0,0,0.0766621 -37736,7806:133,-63,83,0,0,0.0766475 -37737,7806:132,-62,83,0,0,0.0765457 -37738,7806:131,-61,83,0,0,0.0763571 -37739,7806:130,-60,83,0,0,0.0762629 -37740,7805:236,-56,83,0,0,0.0766912 -37741,7805:235,-55,83,0,0,0.0765676 -37742,7805:134,-54,83,0,0,0.076582 -37743,7805:133,-53,83,0,0,0.076553 -37744,7805:132,-52,83,0,0,0.0765022 -37745,7805:131,-51,83,0,0,0.0765093 -37746,7805:130,-50,83,0,0,0.076553 -37747,7804:239,-49,83,0,0,0.0765967 -37748,7804:238,-48,83,0,0,0.0766038 -37749,7804:237,-47,83,0,0,0.0765384 -37750,7804:236,-46,83,0,0,0.0764513 -37751,7804:235,-45,83,0,0,0.0763281 -37752,7804:134,-44,83,0,0,0.07635 -37753,7804:133,-43,83,0,0,0.0763789 -37754,7804:132,-42,83,0,0,0.076386 -37755,7804:131,-41,83,0,0,0.0763716 -37756,7804:130,-40,83,0,0,0.0763643 -37757,7803:239,-39,83,0,0,0.0763571 -37758,7803:238,-38,83,0,0,0.0763571 -37759,7803:237,-37,83,0,0,0.0763354 -37760,7803:236,-36,83,0,0,0.0763064 -37761,7803:235,-35,83,0,0,0.0762775 -37762,7803:134,-34,83,0,0,0.0762702 -37763,7803:133,-33,83,0,0,0.0762848 -37764,7803:132,-32,83,0,0,0.0762848 -37765,7803:131,-31,83,0,0,0.0762848 -37766,7803:130,-30,83,0,0,0.0762918 -37767,7802:239,-29,83,0,0,0.0762848 -37768,7802:238,-28,83,0,0,0.0762775 -37769,7802:237,-27,83,0,0,0.0762775 -37770,7802:236,-26,83,0,0,0.0762702 -37771,7802:235,-25,83,0,0,0.0762848 -37772,7802:134,-24,83,0,0,0.0762775 -37773,7802:133,-23,83,0,0,0.0762413 -37774,7802:132,-22,83,0,0,0.0762123 -37775,7802:131,-21,83,0,0,0.0761689 -37776,7802:130,-20,83,0,0,0.0760895 -37777,7801:239,-19,83,0,0,0.0760245 -37778,7801:238,-18,83,0,0,0.0758658 -37779,7801:237,-17,83,0,0,0.0757435 -37780,7801:236,-16,83,0,0,0.075686 -37781,7801:235,-15,83,0,0,0.0757075 -37782,7801:134,-14,83,0,0,0.0757147 -37783,7801:133,-13,83,0,0,0.0755998 -37784,7801:132,-12,83,0,0,0.0754133 -37785,7801:131,-11,83,0,0,0.0753847 -37786,7801:130,-10,83,0,0,0.0753917 -37787,7800:239,-9,83,0,0,0.0753703 -37788,7800:238,-8,83,0,0,0.075313 -37789,7800:237,-7,83,0,0,0.0754275 -37790,7800:236,-6,83,0,0,0.0755926 -37791,7800:235,-5,83,0,0,0.076046 -37792,7800:134,-4,83,0,0,0.0760245 -37793,7800:133,-3,83,0,0,0.077063 -37794,7800:132,-2,83,0,0,0.0774584 -37795,7800:131,-1,83,0,0,0.0775762 -37796,1800:131,0,83,0,0,0.0777084 -37797,1800:131,1,83,0,0,0.0778634 -37798,1800:132,2,83,0,0,0.0776421 -37799,1800:133,3,83,0,0,0.0779149 -37800,1800:134,4,83,0,0,0.0781292 -37801,1800:235,5,83,0,0,0.0797805 -37802,1800:236,6,83,0,0,0.0799466 -37803,1800:237,7,83,0,0,0.0786861 -37804,1800:238,8,83,0,0,0.0762196 -37805,1800:239,9,83,0,0,0.0767785 -37806,1801:130,10,83,0,0,0.0780405 -37807,1801:131,11,83,0,0,0.0794416 -37808,1801:132,12,83,0,0,0.0802948 -37809,1801:133,13,83,0,0,0.081448 -37810,1801:134,14,83,0,0,0.0822588 -37811,1801:235,15,83,0,0,0.0829675 -37812,1801:236,16,83,0,0,0.0827254 -37813,1801:237,17,83,0,0,0.0852147 -37814,1801:238,18,83,0,0,0.0885065 -37815,1802:130,20,83,0,0,0.0895146 -37816,1802:131,21,83,0,0,0.0895146 -37817,1802:132,22,83,0,0,0.089523 -37818,1802:133,23,83,0,0,0.089523 -37819,1802:134,24,83,0,0,0.0895146 -37820,1802:235,25,83,0,0,0.0895146 -37821,1802:237,27,83,0,0,0.0894895 -37822,1802:238,28,83,0,0,0.0895062 -37823,1802:239,29,83,0,0,0.0895312 -37824,1811:237,117,83,0,0,0.089523 -37825,1811:238,118,83,0,0,0.0895062 -37826,1812:131,121,83,0,0,0.089523 -37827,1812:132,122,83,0,0,0.089523 -37828,1812:133,123,83,0,0,0.089523 -37829,1812:134,124,83,0,0,0.089523 -37830,1812:236,126,83,0,0,0.0895146 -37831,1812:237,127,83,0,0,0.0894977 -37832,1812:238,128,83,0,0,0.0885232 -37833,1813:130,130,83,0,0,0.0831004 -37834,1813:131,131,83,0,0,0.08222 -37835,1813:132,132,83,0,0,0.0818873 -37836,1813:133,133,83,0,0,0.0807971 -37837,1813:134,134,83,0,0,0.0799542 -37838,1813:235,135,83,0,0,0.0793815 -37839,1813:236,136,83,0,0,0.0776055 -37840,1813:237,137,83,0,0,0.0763208 -37841,1813:238,138,83,0,0,0.0769315 -37842,1813:239,139,83,0,0,0.080128 -37843,1814:130,140,83,0,0,0.0801509 -37844,1814:131,141,83,0,0,0.0799542 -37845,1814:132,142,83,0,0,0.0773852 -37846,1814:133,143,83,0,0,0.0765457 -37847,1814:134,144,83,0,0,0.0763281 -37848,1814:235,145,83,0,0,0.0764079 -37849,1814:236,146,83,0,0,0.0765022 -37850,1814:237,147,83,0,0,0.0766038 -37851,1814:238,148,83,0,0,0.0766111 -37852,1814:239,149,83,0,0,0.0763933 -37853,1815:130,150,83,0,0,0.0762196 -37854,1815:131,151,83,0,0,0.0763933 -37855,1815:132,152,83,0,0,0.0756932 -37856,1815:133,153,83,0,0,0.075442 -37857,1815:134,154,83,0,0,0.0753203 -37858,1815:235,155,83,0,0,0.0753561 -37859,1815:236,156,83,0,0,0.0753631 -37860,1815:237,157,83,0,0,0.0753775 -37861,1815:238,158,83,0,0,0.0753847 -37862,1815:239,159,83,0,0,0.0755781 -37863,1816:130,160,83,0,0,0.0756932 -37864,1816:131,161,83,0,0,0.0756645 -37865,1816:132,162,83,0,0,0.07565 -37866,1816:133,163,83,0,0,0.0757507 -37867,1816:134,164,83,0,0,0.0758874 -37868,1816:235,165,83,0,0,0.0759956 -37869,1816:236,166,83,0,0,0.0760606 -37870,1816:237,167,83,0,0,0.0761618 -37871,1816:238,168,83,0,0,0.0762123 -37872,1816:239,169,83,0,0,0.0762413 -37873,1817:130,170,83,0,0,0.0762848 -37874,1817:131,171,83,0,0,0.0762918 -37875,1817:132,172,83,0,0,0.0762848 -37876,1817:133,173,83,0,0,0.0762848 -37877,1817:134,174,83,0,0,0.0762848 -37878,1817:235,175,83,0,0,0.0762848 -37879,1817:236,176,83,0,0,0.0762918 -37880,1817:237,177,83,0,0,0.0762918 -37881,1817:238,178,83,0,0,0.0762848 -37882,1817:239,179,83,0,0,0.0762918 -37883,1818:130,180,83,0,0,0.0762775 -37884,7918:100,-180,90,0,0,0.0749916 -37885,7917:209,-179,90,0,0,0.0750201 -37886,7917:208,-178,90,0,0,0.0750201 -37887,7917:207,-177,90,0,0,0.0750416 -37888,7917:206,-176,90,0,0,0.0750488 -37889,7917:205,-175,90,0,0,0.0750558 -37890,7917:104,-174,90,0,0,0.0750702 -37891,7917:103,-173,90,0,0,0.0750773 -37892,7917:102,-172,90,0,0,0.0750843 -37893,7917:101,-171,90,0,0,0.0750843 -37894,7917:100,-170,90,0,0,0.0750915 -37895,7916:209,-169,90,0,0,0.0750987 -37896,7916:208,-168,90,0,0,0.0751059 -37897,7916:207,-167,90,0,0,0.0751128 -37898,7916:206,-166,90,0,0,0.0751059 -37899,7916:205,-165,90,0,0,0.0751059 -37900,7916:104,-164,90,0,0,0.0751059 -37901,7916:103,-163,90,0,0,0.0751128 -37902,7916:102,-162,90,0,0,0.0751128 -37903,7916:101,-161,90,0,0,0.07512 -37904,7916:100,-160,90,0,0,0.0751344 -37905,7915:209,-159,90,0,0,0.0751416 -37906,7915:208,-158,90,0,0,0.0751558 -37907,7915:207,-157,90,0,0,0.0751486 -37908,7915:206,-156,90,0,0,0.0751558 -37909,7915:205,-155,90,0,0,0.075163 -37910,7915:104,-154,90,0,0,0.0751486 -37911,7915:103,-153,90,0,0,0.075163 -37912,7915:102,-152,90,0,0,0.0751558 -37913,7915:101,-151,90,0,0,0.0751416 -37914,7915:100,-150,90,0,0,0.0751416 -37915,7914:209,-149,90,0,0,0.0751344 -37916,7914:208,-148,90,0,0,0.0751344 -37917,7914:207,-147,90,0,0,0.0751272 -37918,7914:206,-146,90,0,0,0.07512 -37919,7914:205,-145,90,0,0,0.07512 -37920,7914:104,-144,90,0,0,0.0751128 -37921,7914:103,-143,90,0,0,0.07512 -37922,7914:102,-142,90,0,0,0.0751128 -37923,7914:101,-141,90,0,0,0.0751128 -37924,7914:100,-140,90,0,0,0.07512 -37925,7913:209,-139,90,0,0,0.07512 -37926,7913:208,-138,90,0,0,0.0751272 -37927,7913:207,-137,90,0,0,0.07527 -37928,7913:206,-136,90,0,0,0.0758155 -37929,7913:205,-135,90,0,0,0.0776421 -37930,7913:104,-134,90,0,0,0.0779001 -37931,7911:100,-110,90,0,0,0.0832649 -37932,7910:209,-109,90,0,0,0.0880188 -37933,7910:206,-106,90,0,0,0.0759162 -37934,7910:205,-105,90,0,0,0.0753775 -37935,7910:104,-104,90,0,0,0.0768514 -37936,7910:103,-103,90,0,0,0.0810109 -37937,7906:101,-61,90,0,0,0.0753489 -37938,7906:100,-60,90,0,0,0.075163 -37939,7905:209,-59,90,0,0,0.0750201 -37940,7905:208,-58,90,0,0,0.074949 -37941,7905:207,-57,90,0,0,0.0749346 -37942,7905:206,-56,90,0,0,0.0749275 -37943,7905:205,-55,90,0,0,0.0749346 -37944,7905:104,-54,90,0,0,0.0749346 -37945,7905:103,-53,90,0,0,0.0749418 -37946,7905:102,-52,90,0,0,0.0749562 -37947,7905:101,-51,90,0,0,0.0749631 -37948,7905:100,-50,90,0,0,0.0749631 -37949,7904:209,-49,90,0,0,0.0749631 -37950,7904:208,-48,90,0,0,0.074949 -37951,7904:207,-47,90,0,0,0.0749703 -37952,7904:206,-46,90,0,0,0.0749988 -37953,7904:205,-45,90,0,0,0.0750273 -37954,7904:104,-44,90,0,0,0.0750201 -37955,7904:103,-43,90,0,0,0.0750201 -37956,7904:102,-42,90,0,0,0.0750131 -37957,7904:101,-41,90,0,0,0.0750201 -37958,7904:100,-40,90,0,0,0.0750345 -37959,7903:209,-39,90,0,0,0.0750345 -37960,7903:208,-38,90,0,0,0.0750345 -37961,7903:207,-37,90,0,0,0.0750345 -37962,7903:206,-36,90,0,0,0.0750345 -37963,7903:205,-35,90,0,0,0.0750416 -37964,7903:104,-34,90,0,0,0.0750345 -37965,7903:103,-33,90,0,0,0.0750345 -37966,7903:102,-32,90,0,0,0.0750416 -37967,7903:101,-31,90,0,0,0.0750488 -37968,7903:100,-30,90,0,0,0.0750488 -37969,7902:209,-29,90,0,0,0.0750488 -37970,7902:208,-28,90,0,0,0.0750345 -37971,7902:207,-27,90,0,0,0.0750201 -37972,7902:206,-26,90,0,0,0.0761183 -37973,7902:205,-25,90,0,0,0.0756715 -37974,7902:104,-24,90,0,0,0.0789397 -37975,1916:206,166,90,0,0,0.0752487 -37976,1916:207,167,90,0,0,0.075063 -37977,1916:208,168,90,0,0,0.0749846 -37978,1916:209,169,90,0,0,0.074899 -37979,1917:100,170,90,0,0,0.074892 -37980,1917:101,171,90,0,0,0.0748777 -37981,1917:102,172,90,0,0,0.0807894 -37982,1917:103,173,90,0,0,0.0878209 -37983,1917:104,174,90,0,0,0.087558 -37984,1917:205,175,90,0,0,0.0873776 -37985,1917:206,176,90,0,0,0.0863183 -37986,1917:207,177,90,0,0,0.0752844 -37987,1917:208,178,90,0,0,0.0748849 -37988,1917:209,179,90,0,0,0.074949 -37989,1918:100,180,90,0,0,0.0749916 - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/ZFZ2WWxZTlE4Q3R1OUtmNGlWNFVMUFhoZVlDNStTVDJHbWJQNStIS0N6Yz0 - The warnings from the underlying MaxEnt model - text/csv - - - http://data-d.d4science.org/OXhhdUF6MTN4VUZ1OUtmNGlWNFVMTSs1R2F4NVRsMlZHbWJQNStIS0N6Yz0 - ASCII Maps of the environmental layers for checking features aligments - text/csv - - - http://data-d.d4science.org/RlVOTU12QWxXSFZ1OUtmNGlWNFVMTWg4OGhtc09TZkFHbWJQNStIS0N6Yz0 - World Thumbnail - image/png - - - http://data-d.d4science.org/ZFgvV1M2SEQySjF1OUtmNGlWNFVMTW0vTzArMDhlb3dHbWJQNStIS0N6Yz0 - ROC Curve - image/png - - - http://data-d.d4science.org/MXI0K1cvaklVa051OUtmNGlWNFVMRlUvN3FaWWl3Y0NHbWJQNStIS0N6Yz0 - Omission-Commission Curve - image/png - - - http://data-d.d4science.org/cks0OTc1eXFrQjl1OUtmNGlWNFVMRGI3ZS9WTklRMEhHbWJQNStIS0N6Yz0 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - text/csv - - - - - - - - -2016-05-06 11:41:23 DEBUG SClient4WPS:970 - Process Executed -2016-05-06 11:41:23 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-06 11:41:23 DEBUG SClient4WPS:574 - Node Name: #text -2016-05-06 11:41:23 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-06 11:41:23 DEBUG SClient4WPS:574 - Node Name: #text -2016-05-06 11:41:23 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-06 11:41:23 DEBUG SClient4WPS:574 - Node Name: ogr:FeatureCollection -2016-05-06 11:41:23 DEBUG SClient4WPS:574 - Node Name: gml:featureMember -2016-05-06 11:41:23 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/ZFZ2WWxZTlE4Q3R1OUtmNGlWNFVMUFhoZVlDNStTVDJHbWJQNStIS0N6Yz0 -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:The warnings from the underlying MaxEnt model -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:text/csv -2016-05-06 11:41:23 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/OXhhdUF6MTN4VUZ1OUtmNGlWNFVMTSs1R2F4NVRsMlZHbWJQNStIS0N6Yz0 -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:ASCII Maps of the environmental layers for checking features aligments -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:text/csv -2016-05-06 11:41:23 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/RlVOTU12QWxXSFZ1OUtmNGlWNFVMTWg4OGhtc09TZkFHbWJQNStIS0N6Yz0 -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:World Thumbnail -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:image/png -2016-05-06 11:41:23 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/ZFgvV1M2SEQySjF1OUtmNGlWNFVMTW0vTzArMDhlb3dHbWJQNStIS0N6Yz0 -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:ROC Curve -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:image/png -2016-05-06 11:41:23 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/MXI0K1cvaklVa051OUtmNGlWNFVMRlUvN3FaWWl3Y0NHbWJQNStIS0N6Yz0 -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:Omission-Commission Curve -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:image/png -2016-05-06 11:41:23 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/cks0OTc1eXFrQjl1OUtmNGlWNFVMRGI3ZS9WTklRMEhHbWJQNStIS0N6Yz0 -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-06 11:41:23 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:text/csv -2016-05-06 11:41:23 DEBUG SClient4WPS:516 - ResponseWPS Map: F0-->ResponseWPS [data=http://data-d.d4science.org/ZFZ2WWxZTlE4Q3R1OUtmNGlWNFVMUFhoZVlDNStTVDJHbWJQNStIS0N6Yz0, description=The warnings from the underlying MaxEnt model, mimeType=text/csv] -2016-05-06 11:41:23 DEBUG SClient4WPS:516 - ResponseWPS Map: F1-->ResponseWPS [data=http://data-d.d4science.org/OXhhdUF6MTN4VUZ1OUtmNGlWNFVMTSs1R2F4NVRsMlZHbWJQNStIS0N6Yz0, description=ASCII Maps of the environmental layers for checking features aligments, mimeType=text/csv] -2016-05-06 11:41:23 DEBUG SClient4WPS:516 - ResponseWPS Map: F2-->ResponseWPS [data=http://data-d.d4science.org/RlVOTU12QWxXSFZ1OUtmNGlWNFVMTWg4OGhtc09TZkFHbWJQNStIS0N6Yz0, description=World Thumbnail, mimeType=image/png] -2016-05-06 11:41:23 DEBUG SClient4WPS:516 - ResponseWPS Map: F3-->ResponseWPS [data=http://data-d.d4science.org/ZFgvV1M2SEQySjF1OUtmNGlWNFVMTW0vTzArMDhlb3dHbWJQNStIS0N6Yz0, description=ROC Curve, mimeType=image/png] -2016-05-06 11:41:23 DEBUG SClient4WPS:516 - ResponseWPS Map: F4-->ResponseWPS [data=http://data-d.d4science.org/MXI0K1cvaklVa051OUtmNGlWNFVMRlUvN3FaWWl3Y0NHbWJQNStIS0N6Yz0, description=Omission-Commission Curve, mimeType=image/png] -2016-05-06 11:41:23 DEBUG SClient4WPS:516 - ResponseWPS Map: F5-->ResponseWPS [data=http://data-d.d4science.org/cks0OTc1eXFrQjl1OUtmNGlWNFVMRGI3ZS9WTklRMEhHbWJQNStIS0N6Yz0, description=Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding], mimeType=text/csv] -2016-05-06 11:41:23 DEBUG SClient4WPS:1018 - Adding OBJ:F0 -2016-05-06 11:41:23 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/ZFZ2WWxZTlE4Q3R1OUtmNGlWNFVMUFhoZVlDNStTVDJHbWJQNStIS0N6Yz0, name=F0, description=The warnings from the underlying MaxEnt model, typology=OBJECT] -2016-05-06 11:41:23 DEBUG SClient4WPS:1018 - Adding OBJ:F1 -2016-05-06 11:41:23 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/OXhhdUF6MTN4VUZ1OUtmNGlWNFVMTSs1R2F4NVRsMlZHbWJQNStIS0N6Yz0, name=F1, description=ASCII Maps of the environmental layers for checking features aligments, typology=OBJECT] -2016-05-06 11:41:23 DEBUG SClient4WPS:1018 - Adding OBJ:F2 -2016-05-06 11:41:23 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/RlVOTU12QWxXSFZ1OUtmNGlWNFVMTWg4OGhtc09TZkFHbWJQNStIS0N6Yz0, name=F2, description=World Thumbnail, typology=OBJECT] -2016-05-06 11:41:23 DEBUG SClient4WPS:1018 - Adding OBJ:F3 -2016-05-06 11:41:23 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/ZFgvV1M2SEQySjF1OUtmNGlWNFVMTW0vTzArMDhlb3dHbWJQNStIS0N6Yz0, name=F3, description=ROC Curve, typology=OBJECT] -2016-05-06 11:41:23 DEBUG SClient4WPS:1018 - Adding OBJ:F4 -2016-05-06 11:41:23 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/MXI0K1cvaklVa051OUtmNGlWNFVMRlUvN3FaWWl3Y0NHbWJQNStIS0N6Yz0, name=F4, description=Omission-Commission Curve, typology=OBJECT] -2016-05-06 11:41:23 DEBUG SClient4WPS:1018 - Adding OBJ:F5 -2016-05-06 11:41:23 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/cks0OTc1eXFrQjl1OUtmNGlWNFVMRGI3ZS9WTklRMEhHbWJQNStIS0N6Yz0, name=F5, description=Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding], typology=OBJECT] -2016-05-06 11:41:23 DEBUG Log:91 - Resoure: MapResource [map={F0=FileResource [url=http://data-d.d4science.org/ZFZ2WWxZTlE4Q3R1OUtmNGlWNFVMUFhoZVlDNStTVDJHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F0, getName()=The warnings from the underlying MaxEnt model, getDescription()=The warnings from the underlying MaxEnt model, getResourceType()=FILE], F1=FileResource [url=http://data-d.d4science.org/OXhhdUF6MTN4VUZ1OUtmNGlWNFVMTSs1R2F4NVRsMlZHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F1, getName()=ASCII Maps of the environmental layers for checking features aligments, getDescription()=ASCII Maps of the environmental layers for checking features aligments, getResourceType()=FILE], F2=ImagesResource [link=http://data-d.d4science.org/RlVOTU12QWxXSFZ1OUtmNGlWNFVMTWg4OGhtc09TZkFHbWJQNStIS0N6Yz0, mimeType=image/png, getResourceId()=F2, getName()=World Thumbnail, getDescription()=World Thumbnail, getResourceType()=IMAGES], F3=ImagesResource [link=http://data-d.d4science.org/ZFgvV1M2SEQySjF1OUtmNGlWNFVMTW0vTzArMDhlb3dHbWJQNStIS0N6Yz0, mimeType=image/png, getResourceId()=F3, getName()=ROC Curve, getDescription()=ROC Curve, getResourceType()=IMAGES], F4=ImagesResource [link=http://data-d.d4science.org/MXI0K1cvaklVa051OUtmNGlWNFVMRlUvN3FaWWl3Y0NHbWJQNStIS0N6Yz0, mimeType=image/png, getResourceId()=F4, getName()=Omission-Commission Curve, getDescription()=Omission-Commission Curve, getResourceType()=IMAGES], F5=FileResource [url=http://data-d.d4science.org/cks0OTc1eXFrQjl1OUtmNGlWNFVMRGI3ZS9WTklRMEhHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F5, getName()=Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding], getDescription()=Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding], getResourceType()=FILE]}, getResourceId()=mapResource, getName()=Resources, getDescription()=Resources, getResourceType()=MAP] -2016-05-06 11:41:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:41:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:41:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:41:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:41:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:41:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:41:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:41:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:41:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:41:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:41:41 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:41:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:41:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:41:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:41:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:41:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:41:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:41:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:41:41 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 11:41:41 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 11:41:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:41:41 INFO JCRServlets:697 - Calling Servlet get Parents By Id f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 11:41:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:41:41 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 11:41:41 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 11:41:41 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:41:41 DEBUG WorkspaceExplorerServiceImpl:416 - item and parent limit are identical element, returning -2016-05-06 11:41:41 INFO WorkspaceExplorerServiceImpl:178 - end time - 107 msc 0 sec -2016-05-06 11:41:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:41:46 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:41:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:41:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:41:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:41:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:41:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:41:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:41:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:41:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:41:46 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:41:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:41:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:41:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:41:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:41:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:41:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:41:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:41:48 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 11:41:48 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 11:41:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:41:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:41:49 INFO JCRServlets:697 - Calling Servlet get Parents By Id f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 11:41:49 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 11:41:49 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 11:41:49 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:41:49 DEBUG WorkspaceExplorerServiceImpl:416 - item and parent limit are identical element, returning -2016-05-06 11:41:49 INFO WorkspaceExplorerServiceImpl:178 - end time - 432 msc 0 sec -2016-05-06 11:41:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:41:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:42:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:42:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:43:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:43:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:44:44 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 11:44:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:44:44 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 11:44:44 WARN SessionCheckerServiceImpl:80 - Scope is null at Fri May 06 11:44:44 CEST 2016 -2016-05-06 11:44:44 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 11:45:59 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-06 11:45:59 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-06 11:45:59 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-06 11:45:59 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 11:45:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:45:59 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 11:45:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi null -2016-05-06 11:45:59 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 11:45:59 DEBUG ASLSession:311 - Scope is null, returning null -2016-05-06 11:45:59 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=null, scopeName=null, userEmailAddress=null, userFullName=null] -2016-05-06 11:46:01 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 11:46:01 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:46:01 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 11:46:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi null -2016-05-06 11:46:01 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 11:46:02 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:46:02 DEBUG SClient4WPS:255 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-06 11:46:04 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 11:46:04 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-06 11:46:04 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 11:46:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi null -2016-05-06 11:46:04 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-06 11:46:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:46:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:46:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:46:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:46:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:46:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:46:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:46:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:46:04 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 11:46:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-06 11:46:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:46:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:46:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:46:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:46:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:46:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:46:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:46:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:46:04 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 11:46:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-06 11:46:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:46:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:46:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:46:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:46:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:46:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:46:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:46:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:46:05 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 11:46:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-06 11:46:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:46:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:46:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:46:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:46:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:46:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:46:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:46:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:46:06 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 11:46:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-06 11:46:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:46:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:48:04 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-06 11:48:04 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-06 11:48:04 INFO DataMinerManagerServiceImpl:53 - DataMinerManager started! -2016-05-06 11:48:04 INFO SessionUtil:49 - no user found in session, use test user -2016-05-06 11:48:04 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 11:48:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:48:04 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-06 11:48:04 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@277142ae -2016-05-06 11:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:48:04 INFO ASLSession:352 - Logging the entrance -2016-05-06 11:48:04 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-06 11:48:04 DEBUG TemplateModel:83 - 2016-05-06 11:48:04, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-06 11:48:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:48:04 DEBUG DataMinerManagerServiceImpl:72 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-06 11:48:07 INFO SessionUtil:49 - no user found in session, use test user -2016-05-06 11:48:07 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 11:48:07 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:48:07 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-06 11:48:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:48:07 INFO ASLSession:352 - Logging the entrance -2016-05-06 11:48:07 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-06 11:48:07 DEBUG TemplateModel:83 - 2016-05-06 11:48:07, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-06 11:48:07 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:48:07 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-06 11:48:07 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 141 ms -2016-05-06 11:48:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-06 11:48:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-06 11:48:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-06 11:48:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-06 11:48:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-06 11:48:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-06 11:48:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-06 11:48:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-06 11:48:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-06 11:48:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-06 11:48:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-06 11:48:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-06 11:48:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-06 11:48:07 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-06 11:48:07 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-06 11:48:08 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:48:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-06 11:48:08 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@a5d1a55 -2016-05-06 11:48:08 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@7b3192e7 -2016-05-06 11:48:08 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@4456bdb6 -2016-05-06 11:48:08 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@78eab37d -2016-05-06 11:48:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 121 ms -2016-05-06 11:48:08 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-06 11:48:08 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-06 11:48:08 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 11:48:08 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-06 11:48:08 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-06 11:48:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:48:08 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:48:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-06 11:48:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 24 ms -2016-05-06 11:48:08 DEBUG SClient4WPS:118 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-06 11:48:08 INFO SClient4WPS:123 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:48:08 DEBUG SClient4WPS:134 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-06 11:48:08 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 11:48:08 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-06 11:48:08 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-06 11:48:08 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-06 11:48:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:48:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:48:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 11:48:08 DEBUG DataMinerManagerServiceImpl:260 - getDataMinerWorkArea() -2016-05-06 11:48:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:48:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:48:08 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-06 11:48:08 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-06 11:48:08 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-06 11:48:08 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-06 11:48:08 DEBUG JCRRepository:271 - Initialize repository -2016-05-06 11:48:08 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-06 11:48:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-06 11:48:08 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:48:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-06 11:48:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 24 ms -2016-05-06 11:48:08 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-06 11:48:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:48:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:48:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:48:08 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-06 11:48:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:48:08 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-06 11:48:09 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-06 11:48:09 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-06 11:48:09 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-06 11:48:09 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-06 11:48:09 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-06 11:48:09 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-06 11:48:09 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-06 11:48:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:48:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:48:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:48:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:48:09 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 11:48:09 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 11:48:09 DEBUG SClient4WPS:255 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-06 11:48:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-06 11:48:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:48:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:48:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:48:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:48:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:48:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:48:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:48:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:48:09 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 11:48:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-06 11:48:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:48:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:48:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:48:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:48:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:48:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:48:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:48:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:48:09 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 11:48:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-06 11:48:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:48:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:48:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:48:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:48:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:48:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:48:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:48:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:48:09 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 11:48:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-06 11:48:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:48:11 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-06 11:48:11 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-06 11:48:11 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-06 11:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 11:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:48:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:48:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:48:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:48:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:48:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:48:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:48:11 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-06 11:48:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:48:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:48:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:48:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:48:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:48:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:48:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:48:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:48:11 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-06 11:48:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:48:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-06 11:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-06 11:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-06 11:48:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:48:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:48:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:48:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:48:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:48:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:48:11 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 11:48:11 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-06 11:48:11 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-06 11:48:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 11:48:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 11:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 11:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:48:11 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:48:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 11:48:11 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 11:48:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-06 11:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 11:48:11 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:48:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-06 11:48:11 INFO WorkspaceExplorerServiceImpl:178 - end time - 140 msc 0 sec -2016-05-06 11:48:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 25 ms -2016-05-06 11:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-06 11:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:48:11 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-06 11:48:11 INFO ISClientConnector:82 - found only one RR, take it -2016-05-06 11:48:11 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-06 11:48:11 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-06 11:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 11:48:11 DEBUG StorageClient:517 - set scope: /gcube -2016-05-06 11:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 11:48:12 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:48:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 11:48:12 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:48:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 11:48:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-06 11:48:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 24 ms -2016-05-06 11:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-06 11:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 11:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 11:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 11:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 11:48:12 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:48:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-06 11:48:12 INFO WorkspaceExplorerServiceImpl:178 - end time - 420 msc 0 sec -2016-05-06 11:48:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 21 ms -2016-05-06 11:48:12 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-06 11:48:12 INFO ISClientConnector:61 - ISCACHE: ELEMENT EXTRACTED -2016-05-06 11:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-06 11:48:12 DEBUG StorageClient:517 - set scope: /gcube -2016-05-06 11:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-06 11:48:12 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 11:48:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 11:48:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-06 11:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-06 11:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-06 11:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-06 11:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:48:12 INFO WorkspaceExplorerServiceImpl:178 - end time - 443 msc 0 sec -2016-05-06 11:48:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:48:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:49:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-06 11:49:03 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-06 11:49:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-06 11:49:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:49:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:49:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:49:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:49:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:49:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:49:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:49:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:49:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:49:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 11:49:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 11:49:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 11:49:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 11:49:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 11:49:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 11:49:03 INFO JCRServlets:267 - Servlet getItemById 2c0348d8-6786-4573-8b26-b0ff5c073311 -2016-05-06 11:49:03 INFO JCRServlets:267 - Servlet getItemById 2c0348d8-6786-4573-8b26-b0ff5c073311 -2016-05-06 11:49:03 INFO JCRServlets:142 - Calling servlet getChildrenById 2c0348d8-6786-4573-8b26-b0ff5c073311 by giancarlo.panichi -2016-05-06 11:49:03 INFO JCRServlets:697 - Calling Servlet get Parents By Id 2c0348d8-6786-4573-8b26-b0ff5c073311 by giancarlo.panichi -2016-05-06 11:49:03 INFO WorkspaceExplorerServiceImpl:178 - end time - 69 msc 0 sec -2016-05-06 11:49:03 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 11:49:03 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=2c0348d8-6786-4573-8b26-b0ff5c073311, name=MAX_ENT_NICHE_MODELLING_ID_6071f298-fe8e-4530-8325-04792901214d, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:49:03 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 11:49:03 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 11:49:03 INFO WorkspaceExplorerServiceImpl:431 - reached parent limit f7245109-f1c3-4c5a-828d-3381919a5f5a, break -2016-05-06 11:49:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:49:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:50:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-06 11:50:49 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-06 11:51:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-06 11:51:44 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-06 11:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:52:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:53:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:53:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:54:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:54:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:55:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 11:55:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 11:56:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:56:19 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 11:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 11:57:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 11:58:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:58:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:59:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 11:59:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 11:59:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 11:59:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 12:00:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 12:00:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 12:01:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 12:01:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 12:02:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 12:02:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 12:03:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 12:03:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 12:04:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 12:04:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 12:05:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 12:05:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 12:06:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 12:06:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 12:07:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 12:07:19 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 12:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 12:08:14 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 12:09:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 12:09:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 12:09:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 12:09:42 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 12:09:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 12:09:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 12:09:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 12:09:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 12:09:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-06 12:09:42 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-06 12:09:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 12:09:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 12:09:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 12:09:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-06 12:09:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 12:09:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 12:09:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 12:09:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 12:09:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 12:09:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 12:09:42 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 12:09:42 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 12:09:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 12:09:42 INFO JCRServlets:697 - Calling Servlet get Parents By Id f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 12:09:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 12:09:42 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 12:09:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 12:09:42 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 12:09:42 DEBUG WorkspaceExplorerServiceImpl:416 - item and parent limit are identical element, returning -2016-05-06 12:09:42 INFO WorkspaceExplorerServiceImpl:178 - end time - 107 msc 0 sec -2016-05-06 12:09:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 12:09:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 12:09:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 12:09:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 12:09:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 12:09:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 12:09:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 12:09:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 12:09:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 12:09:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 12:09:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 12:09:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 12:09:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 12:09:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 12:09:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 12:09:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 12:09:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 12:09:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 12:09:52 INFO JCRServlets:267 - Servlet getItemById 2c0348d8-6786-4573-8b26-b0ff5c073311 -2016-05-06 12:09:52 INFO JCRServlets:267 - Servlet getItemById 2c0348d8-6786-4573-8b26-b0ff5c073311 -2016-05-06 12:09:52 INFO JCRServlets:697 - Calling Servlet get Parents By Id 2c0348d8-6786-4573-8b26-b0ff5c073311 by giancarlo.panichi -2016-05-06 12:09:52 INFO JCRServlets:142 - Calling servlet getChildrenById 2c0348d8-6786-4573-8b26-b0ff5c073311 by giancarlo.panichi -2016-05-06 12:09:52 INFO WorkspaceExplorerServiceImpl:178 - end time - 55 msc 0 sec -2016-05-06 12:09:52 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 12:09:52 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=2c0348d8-6786-4573-8b26-b0ff5c073311, name=MAX_ENT_NICHE_MODELLING_ID_6071f298-fe8e-4530-8325-04792901214d, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 12:09:52 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 12:09:52 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 12:09:52 INFO WorkspaceExplorerServiceImpl:431 - reached parent limit f7245109-f1c3-4c5a-828d-3381919a5f5a, break -2016-05-06 12:10:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 12:10:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 12:10:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 12:10:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 12:11:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-06 12:11:54 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-06 12:12:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 12:12:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 12:12:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 12:12:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 12:12:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 12:12:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 12:12:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 12:12:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 12:12:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 12:12:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-06 12:12:14 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-06 12:12:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-06 12:12:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 12:12:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 12:12:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 12:12:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 12:12:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 12:12:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 12:12:14 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 12:12:14 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 12:12:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 12:12:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 12:12:14 INFO JCRServlets:697 - Calling Servlet get Parents By Id f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 12:12:14 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 12:12:14 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 12:12:14 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 12:12:14 DEBUG WorkspaceExplorerServiceImpl:416 - item and parent limit are identical element, returning -2016-05-06 12:12:14 INFO WorkspaceExplorerServiceImpl:178 - end time - 94 msc 0 sec -2016-05-06 12:12:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 12:12:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 12:12:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 12:12:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 12:12:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 12:12:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 12:12:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 12:12:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 12:12:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 12:12:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 12:12:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 12:12:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 12:12:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 12:12:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 12:12:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 12:12:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 12:12:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 12:12:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 12:12:18 INFO JCRServlets:267 - Servlet getItemById 2c0348d8-6786-4573-8b26-b0ff5c073311 -2016-05-06 12:12:18 INFO JCRServlets:267 - Servlet getItemById 2c0348d8-6786-4573-8b26-b0ff5c073311 -2016-05-06 12:12:18 INFO JCRServlets:142 - Calling servlet getChildrenById 2c0348d8-6786-4573-8b26-b0ff5c073311 by giancarlo.panichi -2016-05-06 12:12:18 INFO JCRServlets:697 - Calling Servlet get Parents By Id 2c0348d8-6786-4573-8b26-b0ff5c073311 by giancarlo.panichi -2016-05-06 12:12:18 INFO WorkspaceExplorerServiceImpl:178 - end time - 53 msc 0 sec -2016-05-06 12:12:18 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 12:12:18 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=2c0348d8-6786-4573-8b26-b0ff5c073311, name=MAX_ENT_NICHE_MODELLING_ID_6071f298-fe8e-4530-8325-04792901214d, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 12:12:18 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 12:12:18 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 12:12:18 INFO WorkspaceExplorerServiceImpl:431 - reached parent limit f7245109-f1c3-4c5a-828d-3381919a5f5a, break -2016-05-06 12:12:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 12:12:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 12:13:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 12:13:44 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 12:14:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 12:14:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 12:15:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 12:15:34 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 12:16:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 12:16:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 12:17:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 12:17:24 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 12:18:19 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 12:18:19 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 12:18:19 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 12:18:19 WARN SessionCheckerServiceImpl:80 - Scope is null at Fri May 06 12:18:19 CEST 2016 -2016-05-06 12:18:19 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 12:23:04 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-06 12:23:04 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-06 12:23:04 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-06 17:02:43 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-06 17:02:43 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-06 17:02:43 INFO DataMinerManagerServiceImpl:54 - DataMinerManager started! -2016-05-06 17:02:43 INFO SessionUtil:49 - no user found in session, use test user -2016-05-06 17:02:43 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 17:02:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:02:43 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-06 17:02:43 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@7593d812 -2016-05-06 17:02:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:02:43 INFO ASLSession:352 - Logging the entrance -2016-05-06 17:02:43 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-06 17:02:43 DEBUG TemplateModel:83 - 2016-05-06 17:02:43, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-06 17:02:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:02:43 DEBUG DataMinerManagerServiceImpl:73 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-06 17:02:45 INFO SessionUtil:49 - no user found in session, use test user -2016-05-06 17:02:45 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 17:02:45 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 17:02:45 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-06 17:02:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:02:45 INFO ASLSession:352 - Logging the entrance -2016-05-06 17:02:45 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-06 17:02:45 DEBUG TemplateModel:83 - 2016-05-06 17:02:45, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-06 17:02:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:02:45 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-06 17:02:45 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 127 ms -2016-05-06 17:02:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-06 17:02:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-06 17:02:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-06 17:02:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-06 17:02:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-06 17:02:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-06 17:02:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-06 17:02:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-06 17:02:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-06 17:02:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-06 17:02:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-06 17:02:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-06 17:02:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-06 17:02:45 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-06 17:02:45 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-06 17:02:45 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:02:45 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-06 17:02:45 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@f01f947 -2016-05-06 17:02:45 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@59dedcde -2016-05-06 17:02:45 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@7b440ad -2016-05-06 17:02:45 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@a5f6840 -2016-05-06 17:02:45 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 120 ms -2016-05-06 17:02:45 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-06 17:02:45 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-06 17:02:45 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:02:45 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-06 17:02:45 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-06 17:02:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:02:46 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:02:46 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-06 17:02:46 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 17 ms -2016-05-06 17:02:46 DEBUG SClient4WPS:118 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-06 17:02:46 INFO SClient4WPS:123 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 17:02:46 DEBUG SClient4WPS:134 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-06 17:02:46 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 17:02:46 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-06 17:02:46 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-06 17:02:46 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-06 17:02:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:02:46 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:02:46 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:02:46 DEBUG DataMinerManagerServiceImpl:264 - getDataMinerWorkArea() -2016-05-06 17:02:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:02:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:02:46 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-06 17:02:46 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-06 17:02:46 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-06 17:02:46 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-06 17:02:46 DEBUG JCRRepository:271 - Initialize repository -2016-05-06 17:02:46 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-06 17:02:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-06 17:02:46 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:02:46 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-06 17:02:46 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 136 ms -2016-05-06 17:02:46 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-06 17:02:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:02:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:02:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:02:46 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-06 17:02:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:02:46 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-06 17:02:47 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-06 17:02:47 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-06 17:02:47 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-06 17:02:47 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-06 17:02:47 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-06 17:02:47 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-06 17:02:47 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-06 17:02:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:02:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:02:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:02:47 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 17:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-06 17:02:47 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 17:02:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:02:47 DEBUG SClient4WPS:255 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-06 17:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:02:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:02:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:02:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:02:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:02:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:02:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:02:47 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 17:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-06 17:02:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:02:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:02:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:02:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:02:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:02:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:02:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:02:47 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 17:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-06 17:02:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:02:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:02:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:02:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:02:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:02:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:02:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:02:47 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 17:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-06 17:02:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:02:48 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-06 17:02:48 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-06 17:02:48 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-06 17:02:48 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-06 17:02:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:02:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:02:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:02:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:02:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:02:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:02:48 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-06 17:02:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:02:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:02:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:02:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:02:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:02:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:02:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:02:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:02:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:02:48 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-06 17:02:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:02:48 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-06 17:02:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:02:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:02:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:02:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:02:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:02:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:02:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:02:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:02:48 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-06 17:02:48 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-06 17:02:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:02:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 17:02:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:02:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:02:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-06 17:02:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:02:48 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 17:02:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-06 17:02:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-06 17:02:48 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-06 17:02:48 INFO ISClientConnector:82 - found only one RR, take it -2016-05-06 17:02:48 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-06 17:02:48 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-06 17:02:48 DEBUG StorageClient:517 - set scope: /gcube -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-06 17:02:48 INFO WorkspaceExplorerServiceImpl:178 - end time - 112 msc 0 sec -2016-05-06 17:02:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:02:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:02:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:02:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 17:02:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-06 17:02:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 17:02:48 INFO WorkspaceExplorerServiceImpl:178 - end time - 374 msc 0 sec -2016-05-06 17:02:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:02:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-06 17:02:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-06 17:02:48 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-06 17:02:48 INFO ISClientConnector:61 - ISCACHE: ELEMENT EXTRACTED -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 17:02:48 DEBUG StorageClient:517 - set scope: /gcube -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 17:02:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:02:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 17:02:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 17:02:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:02:48 INFO WorkspaceExplorerServiceImpl:178 - end time - 387 msc 0 sec -2016-05-06 17:02:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:02:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-06 17:02:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:02:53 DEBUG DataMinerManagerServiceImpl:225 - DeleteItem(): ItemDescription [id=c5429391-5174-4e70-9be8-5d73c4a45123, name=DBSCAN_ID_b548e220-6a15-4914-8e7b-a7861fc280e1, owner=giancarlo.panichi, path=/Workspace/DataMiner/Computations/DBSCAN_ID_b548e220-6a15-4914-8e7b-a7861fc280e1, type=FOLDER, publicLink=null] -2016-05-06 17:02:53 DEBUG StorageUtil:280 - User: giancarlo.panichi, ItemId:c5429391-5174-4e70-9be8-5d73c4a45123 -2016-05-06 17:02:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:02:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:02:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:02:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:02:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:02:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:02:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/Trash by giancarlo.panichi -2016-05-06 17:02:53 INFO JCRServlets:267 - Servlet getItemById c5429391-5174-4e70-9be8-5d73c4a45123 -2016-05-06 17:02:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:02:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:02:53 DEBUG ServiceEngine:802 - put() - start -2016-05-06 17:02:53 INFO ServiceEngine:19 - file gCube parameter before: null null -2016-05-06 17:02:53 DEBUG BucketCoding:32 - Coding name: path: /Workspace/Trash/c5429391-5174-4e70-9be8-5d73c4a45123 rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:02:53 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:02:53 DEBUG ServiceEngine:62 - path(String) - name: c5429391-5174-4e70-9be8-5d73c4a45123 -2016-05-06 17:02:53 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Workspace/Trash/ -2016-05-06 17:02:53 INFO ServiceEngine:27 - file gCube parameter after: null null -2016-05-06 17:02:53 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 17:02:53 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 17:02:53 INFO OperationFactory:39 - getOperation(String) - start move_dir -2016-05-06 17:02:53 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 17:02:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/DataMiner/Computations/DBSCAN_ID_b548e220-6a15-4914-8e7b-a7861fc280e1 rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:02:53 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:02:53 DEBUG BucketCoding:32 - Coding name: path: /Workspace/Trash/c5429391-5174-4e70-9be8-5d73c4a45123 rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:02:53 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:02:53 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 17:02:53 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 17:02:53 DEBUG MongoIO:77 - open mongo connection -2016-05-06 17:02:53 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 17:02:53 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:02:53 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:02:53 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:02:54 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a5a311cb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5cd69c1, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@70da00e0, socketFactory=javax.net.DefaultSocketFactory@786fac01, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 17:02:54 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 17:02:54 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 17:02:54 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1956712}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1552999, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:02:54 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 17:02:54 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:02:54 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:02:54 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:02:54 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:332991}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:02:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:02:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1341498, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:02:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:02:54 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2206380}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:02:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:02:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1102476, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:02:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:02:54 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1956713}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:54 DEBUG command:56 - Command execution completed -2016-05-06 17:02:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:54 DEBUG command:56 - Command execution completed -2016-05-06 17:02:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:54 DEBUG command:56 - Command execution completed -2016-05-06 17:02:54 DEBUG DefaultMongoClient:1234 - parent folder extracted: DBSCAN_ID_b548e220-6a15-4914-8e7b-a7861fc280e1 -2016-05-06 17:02:54 DEBUG DefaultMongoClient:1187 - moveDir operation on Mongo backend, parameters: source path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/DataMiner/Computations/DBSCAN_ID_b548e220-6a15-4914-8e7b-a7861fc280e1/ destination path: /gcube/home/org.gcube.portlets.user/test-home-library/Workspace/Trash/c5429391-5174-4e70-9be8-5d73c4a45123/ -2016-05-06 17:02:54 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1620329}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:02:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:02:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1201720, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:02:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-06 17:02:54 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:54 DEBUG query:56 - Query completed -2016-05-06 17:02:54 INFO DefaultMongoClient:1491 - set last operation: MOVE_DIR -2016-05-06 17:02:54 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG update:56 - Update completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG update:56 - Update completed -2016-05-06 17:02:55 DEBUG MongoIO:438 - Create new object with name: c5429391-5174-4e70-9be8-5d73c4a45123 dir: /gcube/home/org.gcube.portlets.user/test-home-library/Workspace/Trash/ type= dir -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG update:56 - Update completed -2016-05-06 17:02:55 DEBUG MongoIO:438 - Create new object with name: DBSCAN_ID_b548e220-6a15-4914-8e7b-a7861fc280e1 dir: /gcube/home/org.gcube.portlets.user/test-home-library/Workspace/Trash/c5429391-5174-4e70-9be8-5d73c4a45123/ type= dir -2016-05-06 17:02:55 INFO DefaultMongoClient:1491 - set last operation: MOVE_DIR -2016-05-06 17:02:55 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG update:56 - Update completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG update:56 - Update completed -2016-05-06 17:02:55 DEBUG MongoIO:438 - Create new object with name: Input Data Sets dir: /gcube/home/org.gcube.portlets.user/test-home-library/Workspace/Trash/c5429391-5174-4e70-9be8-5d73c4a45123/DBSCAN_ID_b548e220-6a15-4914-8e7b-a7861fc280e1/ type= dir -2016-05-06 17:02:55 INFO DefaultMongoClient:1491 - set last operation: MOVE_DIR -2016-05-06 17:02:55 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG update:56 - Update completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG query:56 - Query completed -2016-05-06 17:02:55 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956713}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:02:55 DEBUG update:56 - Update completed -2016-05-06 17:02:55 DEBUG MongoIO:438 - Create new object with name: Output Data Sets dir: /gcube/home/org.gcube.portlets.user/test-home-library/Workspace/Trash/c5429391-5174-4e70-9be8-5d73c4a45123/DBSCAN_ID_b548e220-6a15-4914-8e7b-a7861fc280e1/ type= dir -2016-05-06 17:02:55 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2206380} -2016-05-06 17:02:55 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:332991} -2016-05-06 17:02:55 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1956713}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 17:02:55 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1620329} -2016-05-06 17:02:55 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1956713} -2016-05-06 17:02:55 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1956712} -2016-05-06 17:02:55 INFO MongoIO:508 - Mongo has been closed -2016-05-06 17:02:55 INFO JCRServlets:197 - Calling Servlet MoveToTrashIds on 1 by giancarlo.panichi -2016-05-06 17:02:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:02:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 17:02:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:02:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:02:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:02:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:02:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:02:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:02:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:02:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:02:55 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:02:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:02:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:02:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:02:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:02:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:02:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:02:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:02:55 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 17:02:55 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 17:02:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:02:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:02:55 INFO JCRServlets:697 - Calling Servlet get Parents By Id f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 17:02:55 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 17:02:55 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 17:02:55 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 17:02:55 DEBUG WorkspaceExplorerServiceImpl:416 - item and parent limit are identical element, returning -2016-05-06 17:02:55 INFO WorkspaceExplorerServiceImpl:178 - end time - 96 msc 0 sec -2016-05-06 17:03:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:03:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:03:34 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:03:34 DEBUG DataMinerManagerServiceImpl:225 - DeleteItem(): ItemDescription [id=2c0348d8-6786-4573-8b26-b0ff5c073311, name=MAX_ENT_NICHE_MODELLING_ID_6071f298-fe8e-4530-8325-04792901214d, owner=giancarlo.panichi, path=/Workspace/DataMiner/Computations/MAX_ENT_NICHE_MODELLING_ID_6071f298-fe8e-4530-8325-04792901214d, type=FOLDER, publicLink=null] -2016-05-06 17:03:34 DEBUG StorageUtil:280 - User: giancarlo.panichi, ItemId:2c0348d8-6786-4573-8b26-b0ff5c073311 -2016-05-06 17:03:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:03:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:03:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:03:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:03:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:03:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:03:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/Trash by giancarlo.panichi -2016-05-06 17:03:34 INFO JCRServlets:267 - Servlet getItemById 2c0348d8-6786-4573-8b26-b0ff5c073311 -2016-05-06 17:03:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:03:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:03:34 DEBUG ServiceEngine:802 - put() - start -2016-05-06 17:03:34 INFO ServiceEngine:19 - file gCube parameter before: null null -2016-05-06 17:03:34 DEBUG BucketCoding:32 - Coding name: path: /Workspace/Trash/2c0348d8-6786-4573-8b26-b0ff5c073311 rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:03:34 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:03:34 DEBUG ServiceEngine:62 - path(String) - name: 2c0348d8-6786-4573-8b26-b0ff5c073311 -2016-05-06 17:03:34 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Workspace/Trash/ -2016-05-06 17:03:34 INFO ServiceEngine:27 - file gCube parameter after: null null -2016-05-06 17:03:34 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 17:03:34 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 17:03:34 INFO OperationFactory:39 - getOperation(String) - start move_dir -2016-05-06 17:03:34 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 17:03:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/DataMiner/Computations/MAX_ENT_NICHE_MODELLING_ID_6071f298-fe8e-4530-8325-04792901214d rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:03:34 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:03:34 DEBUG BucketCoding:32 - Coding name: path: /Workspace/Trash/2c0348d8-6786-4573-8b26-b0ff5c073311 rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:03:34 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:03:34 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 17:03:34 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 17:03:34 DEBUG MongoIO:77 - open mongo connection -2016-05-06 17:03:34 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 17:03:34 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:03:34 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:03:34 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:03:34 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a5a311cb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@5cd69c1, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@70da00e0, socketFactory=javax.net.DefaultSocketFactory@786fac01, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 17:03:34 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 17:03:34 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 17:03:34 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:333008}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:03:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:03:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1391623, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:03:34 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 17:03:34 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:03:34 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:03:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:03:34 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1620344}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:03:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:03:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1780481, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:03:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-06 17:03:34 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2206395}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:03:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:03:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1440451, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:03:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-06 17:03:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:03:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-06 17:03:35 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:03:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-06 17:03:35 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1956737}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:35 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1441186, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:03:35 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-06 17:03:35 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1956738}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:35 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:35 DEBUG command:56 - Command execution completed -2016-05-06 17:03:35 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:03:35 DEBUG command:56 - Command execution completed -2016-05-06 17:03:35 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-06 17:03:35 DEBUG command:56 - Command execution completed -2016-05-06 17:03:35 DEBUG DefaultMongoClient:1234 - parent folder extracted: MAX_ENT_NICHE_MODELLING_ID_6071f298-fe8e-4530-8325-04792901214d -2016-05-06 17:03:35 DEBUG DefaultMongoClient:1187 - moveDir operation on Mongo backend, parameters: source path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/DataMiner/Computations/MAX_ENT_NICHE_MODELLING_ID_6071f298-fe8e-4530-8325-04792901214d/ destination path: /gcube/home/org.gcube.portlets.user/test-home-library/Workspace/Trash/2c0348d8-6786-4573-8b26-b0ff5c073311/ -2016-05-06 17:03:35 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:03:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-06 17:03:35 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:03:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 INFO DefaultMongoClient:1491 - set last operation: MOVE_DIR -2016-05-06 17:03:36 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG update:56 - Update completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG update:56 - Update completed -2016-05-06 17:03:36 DEBUG MongoIO:438 - Create new object with name: 2c0348d8-6786-4573-8b26-b0ff5c073311 dir: /gcube/home/org.gcube.portlets.user/test-home-library/Workspace/Trash/ type= dir -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG update:56 - Update completed -2016-05-06 17:03:36 DEBUG MongoIO:438 - Create new object with name: MAX_ENT_NICHE_MODELLING_ID_6071f298-fe8e-4530-8325-04792901214d dir: /gcube/home/org.gcube.portlets.user/test-home-library/Workspace/Trash/2c0348d8-6786-4573-8b26-b0ff5c073311/ type= dir -2016-05-06 17:03:36 INFO DefaultMongoClient:1491 - set last operation: MOVE_DIR -2016-05-06 17:03:36 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG update:56 - Update completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG update:56 - Update completed -2016-05-06 17:03:36 DEBUG MongoIO:438 - Create new object with name: Input Data Sets dir: /gcube/home/org.gcube.portlets.user/test-home-library/Workspace/Trash/2c0348d8-6786-4573-8b26-b0ff5c073311/MAX_ENT_NICHE_MODELLING_ID_6071f298-fe8e-4530-8325-04792901214d/ type= dir -2016-05-06 17:03:36 INFO DefaultMongoClient:1491 - set last operation: MOVE_DIR -2016-05-06 17:03:36 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG update:56 - Update completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG update:56 - Update completed -2016-05-06 17:03:36 DEBUG MongoIO:438 - Create new object with name: Output Data Sets dir: /gcube/home/org.gcube.portlets.user/test-home-library/Workspace/Trash/2c0348d8-6786-4573-8b26-b0ff5c073311/MAX_ENT_NICHE_MODELLING_ID_6071f298-fe8e-4530-8325-04792901214d/ type= dir -2016-05-06 17:03:36 INFO DefaultMongoClient:1491 - set last operation: MOVE_DIR -2016-05-06 17:03:36 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG update:56 - Update completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 INFO DefaultMongoClient:1491 - set last operation: MOVE_DIR -2016-05-06 17:03:36 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG update:56 - Update completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 INFO DefaultMongoClient:1491 - set last operation: MOVE_DIR -2016-05-06 17:03:36 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG update:56 - Update completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 INFO DefaultMongoClient:1491 - set last operation: MOVE_DIR -2016-05-06 17:03:36 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG update:56 - Update completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 INFO DefaultMongoClient:1491 - set last operation: MOVE_DIR -2016-05-06 17:03:36 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG update:56 - Update completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956738}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:03:36 DEBUG query:56 - Query completed -2016-05-06 17:03:36 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2206395} -2016-05-06 17:03:36 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:333008} -2016-05-06 17:03:36 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1956738}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 17:03:36 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1620344} -2016-05-06 17:03:36 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1956738} -2016-05-06 17:03:36 INFO MongoIO:508 - Mongo has been closed -2016-05-06 17:03:36 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1956737} -2016-05-06 17:03:36 INFO JCRServlets:197 - Calling Servlet MoveToTrashIds on 1 by giancarlo.panichi -2016-05-06 17:03:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:03:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 17:03:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:03:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:03:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:03:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:03:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-06 17:03:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:03:36 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-06 17:03:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:03:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-06 17:03:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:03:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:03:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:03:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:03:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:03:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:03:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:03:36 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 17:03:36 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 17:03:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:03:36 INFO JCRServlets:697 - Calling Servlet get Parents By Id f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 17:03:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:03:36 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 17:03:36 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 17:03:36 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 17:03:36 DEBUG WorkspaceExplorerServiceImpl:416 - item and parent limit are identical element, returning -2016-05-06 17:03:36 INFO WorkspaceExplorerServiceImpl:178 - end time - 84 msc 0 sec -2016-05-06 17:03:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:03:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-06 17:04:20 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-06 17:04:20 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-06 17:04:20 INFO DataMinerManagerServiceImpl:54 - DataMinerManager started! -2016-05-06 17:04:20 INFO SessionUtil:49 - no user found in session, use test user -2016-05-06 17:04:20 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 17:04:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-06 17:04:20 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-06 17:04:20 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@768a8828 -2016-05-06 17:04:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:04:20 INFO ASLSession:352 - Logging the entrance -2016-05-06 17:04:20 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-06 17:04:20 DEBUG TemplateModel:83 - 2016-05-06 17:04:20, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-06 17:04:20 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:04:20 DEBUG DataMinerManagerServiceImpl:73 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-06 17:04:21 INFO SessionUtil:49 - no user found in session, use test user -2016-05-06 17:04:21 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 17:04:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-06 17:04:21 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-06 17:04:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-06 17:04:21 INFO ASLSession:352 - Logging the entrance -2016-05-06 17:04:21 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-06 17:04:21 DEBUG TemplateModel:83 - 2016-05-06 17:04:21, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-06 17:04:21 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:04:22 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-06 17:04:22 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 136 ms -2016-05-06 17:04:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-06 17:04:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-06 17:04:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-06 17:04:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-06 17:04:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-06 17:04:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-06 17:04:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-06 17:04:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-06 17:04:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-06 17:04:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-06 17:04:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-06 17:04:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-06 17:04:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-06 17:04:22 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-06 17:04:22 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-06 17:04:22 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:04:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-06 17:04:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@2981b170 -2016-05-06 17:04:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@6553e136 -2016-05-06 17:04:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@90d677f -2016-05-06 17:04:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@42359b90 -2016-05-06 17:04:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 122 ms -2016-05-06 17:04:22 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-06 17:04:22 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-06 17:04:22 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:04:22 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-06 17:04:22 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-06 17:04:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-06 17:04:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:04:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-06 17:04:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 19 ms -2016-05-06 17:04:22 DEBUG SClient4WPS:118 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-06 17:04:22 INFO SClient4WPS:123 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 17:04:22 DEBUG SClient4WPS:134 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-06 17:04:22 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 17:04:22 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-06 17:04:22 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-06 17:04:22 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-06 17:04:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:04:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-06 17:04:22 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:04:22 DEBUG DataMinerManagerServiceImpl:264 - getDataMinerWorkArea() -2016-05-06 17:04:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:04:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:04:23 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-06 17:04:23 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-06 17:04:23 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-06 17:04:23 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-06 17:04:23 DEBUG JCRRepository:271 - Initialize repository -2016-05-06 17:04:23 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-06 17:04:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-06 17:04:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:04:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-06 17:04:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 153 ms -2016-05-06 17:04:23 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-06 17:04:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:04:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:04:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:04:23 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-06 17:04:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:04:23 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-06 17:04:23 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 17:04:23 DEBUG SClient4WPS:255 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-06 17:04:23 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-06 17:04:23 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-06 17:04:23 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-06 17:04:23 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-06 17:04:23 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-06 17:04:23 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-06 17:04:23 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-06 17:04:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:04:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:04:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:04:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:04:24 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 17:04:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-06 17:04:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:04:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:04:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:04:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:04:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:04:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:04:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:04:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:04:24 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 17:04:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-06 17:04:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:04:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:04:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:04:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:04:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:04:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:04:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:04:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:04:24 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 17:04:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-06 17:04:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:04:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:04:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:04:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:04:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:04:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:04:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:04:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:04:24 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 17:04:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-06 17:04:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:04:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:04:25 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-06 17:04:25 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-06 17:04:25 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:04:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:04:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:04:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:04:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:04:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:04:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:04:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:04:25 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-06 17:04:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:04:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-06 17:04:25 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-06 17:04:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:04:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:04:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:04:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:04:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:04:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:04:25 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-06 17:04:25 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-06 17:04:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:04:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:04:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:04:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:04:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:04:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:04:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:04:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:04:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:04:25 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 17:04:25 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:04:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:04:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 17:04:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:04:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:04:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 29 ms -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 17:04:25 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 17:04:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:04:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-06 17:04:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-06 17:04:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:04:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 17:04:25 INFO WorkspaceExplorerServiceImpl:178 - end time - 93 msc 0 sec -2016-05-06 17:04:25 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-06 17:04:25 INFO ISClientConnector:82 - found only one RR, take it -2016-05-06 17:04:25 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-06 17:04:25 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 17:04:25 DEBUG StorageClient:517 - set scope: /gcube -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 17:04:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:04:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 17:04:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 32 ms -2016-05-06 17:04:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:04:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:04:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-06 17:04:25 INFO WorkspaceExplorerServiceImpl:178 - end time - 368 msc 0 sec -2016-05-06 17:04:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-06 17:04:25 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-06 17:04:25 INFO ISClientConnector:61 - ISCACHE: ELEMENT EXTRACTED -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-06 17:04:25 DEBUG StorageClient:517 - set scope: /gcube -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-06 17:04:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:04:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 17:04:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 17 ms -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-06 17:04:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-06 17:04:25 INFO WorkspaceExplorerServiceImpl:178 - end time - 340 msc 0 sec -2016-05-06 17:04:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:04:31 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:04:31 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:04:31 DEBUG DataMinerManagerServiceImpl:225 - DeleteItem(): ItemDescription [id=023ce370-1f2a-4c42-9a2f-0a8587182076, name=BIOCLIMATE_HCAF_ID_24795f1e-4d07-4bb2-97e9-8d3e6b051219, owner=giancarlo.panichi, path=/Workspace/DataMiner/Computations/BIOCLIMATE_HCAF_ID_24795f1e-4d07-4bb2-97e9-8d3e6b051219, type=GCUBE_ITEM, publicLink=null] -2016-05-06 17:04:31 DEBUG StorageUtil:280 - User: giancarlo.panichi, ItemId:023ce370-1f2a-4c42-9a2f-0a8587182076 -2016-05-06 17:04:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:04:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:04:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:04:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:04:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:04:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:04:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/Trash by giancarlo.panichi -2016-05-06 17:04:31 INFO JCRServlets:267 - Servlet getItemById 023ce370-1f2a-4c42-9a2f-0a8587182076 -2016-05-06 17:04:31 INFO JCRServlets:197 - Calling Servlet MoveToTrashIds on 1 by giancarlo.panichi -2016-05-06 17:04:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:04:31 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 17:04:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:04:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:04:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:04:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-06 17:04:31 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-06 17:04:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:04:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:04:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-06 17:04:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:04:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:04:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:04:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:04:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:04:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:04:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:04:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:04:31 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 17:04:31 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 17:04:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:04:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:04:31 INFO JCRServlets:697 - Calling Servlet get Parents By Id f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 17:04:31 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 17:04:31 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 17:04:31 INFO WorkspaceExplorerServiceImpl:178 - end time - 70 msc 0 sec -2016-05-06 17:04:31 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=f7245109-f1c3-4c5a-828d-3381919a5f5a, name=Computations, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 17:04:31 DEBUG WorkspaceExplorerServiceImpl:416 - item and parent limit are identical element, returning -2016-05-06 17:05:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:05:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:06:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:06:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:07:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:07:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 17:08:08 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-06 17:08:09 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-06 17:08:09 INFO DataMinerManagerServiceImpl:54 - DataMinerManager started! -2016-05-06 17:08:09 INFO SessionUtil:49 - no user found in session, use test user -2016-05-06 17:08:09 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 17:08:09 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:08:09 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-06 17:08:09 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@2f803eb9 -2016-05-06 17:08:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:08:09 INFO ASLSession:352 - Logging the entrance -2016-05-06 17:08:09 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-06 17:08:09 DEBUG TemplateModel:83 - 2016-05-06 17:08:09, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-06 17:08:09 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:08:09 DEBUG DataMinerManagerServiceImpl:73 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-06 17:08:10 INFO SessionUtil:49 - no user found in session, use test user -2016-05-06 17:08:10 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-06 17:08:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 17:08:10 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-06 17:08:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:08:10 INFO ASLSession:352 - Logging the entrance -2016-05-06 17:08:10 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-06 17:08:10 DEBUG TemplateModel:83 - 2016-05-06 17:08:10, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-06 17:08:10 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:08:10 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-06 17:08:10 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 121 ms -2016-05-06 17:08:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-06 17:08:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-06 17:08:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-06 17:08:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-06 17:08:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-06 17:08:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-06 17:08:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-06 17:08:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-06 17:08:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-06 17:08:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-06 17:08:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-06 17:08:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-06 17:08:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-06 17:08:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-06 17:08:11 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-06 17:08:11 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:08:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-06 17:08:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@12ed2889 -2016-05-06 17:08:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@1e6c1163 -2016-05-06 17:08:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@1ba23a6d -2016-05-06 17:08:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@b78fe2 -2016-05-06 17:08:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 90 ms -2016-05-06 17:08:11 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-06 17:08:11 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-06 17:08:11 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:08:11 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-06 17:08:11 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-06 17:08:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:08:11 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:08:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-06 17:08:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-06 17:08:11 DEBUG SClient4WPS:118 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-06 17:08:11 INFO SClient4WPS:123 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 17:08:11 DEBUG SClient4WPS:134 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-06 17:08:11 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 17:08:11 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-06 17:08:11 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-06 17:08:11 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-06 17:08:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:08:11 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:08:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:08:11 DEBUG DataMinerManagerServiceImpl:264 - getDataMinerWorkArea() -2016-05-06 17:08:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:11 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-06 17:08:11 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-06 17:08:11 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-06 17:08:11 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-06 17:08:11 DEBUG JCRRepository:271 - Initialize repository -2016-05-06 17:08:11 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-06 17:08:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-06 17:08:11 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:08:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-06 17:08:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 82 ms -2016-05-06 17:08:12 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-06 17:08:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:08:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:12 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-06 17:08:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:12 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-06 17:08:12 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-06 17:08:12 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-06 17:08:12 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-06 17:08:12 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-06 17:08:12 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-06 17:08:12 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-06 17:08:12 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-06 17:08:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:12 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 17:08:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-06 17:08:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:12 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 17:08:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-06 17:08:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:12 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 17:08:12 DEBUG SClient4WPS:255 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-06 17:08:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:12 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 17:08:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-06 17:08:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:13 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-06 17:08:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-06 17:08:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:14 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-06 17:08:14 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-06 17:08:14 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-06 17:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:08:14 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:08:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:14 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-06 17:08:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:08:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 17:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:08:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:14 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-06 17:08:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:14 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-06 17:08:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:08:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:08:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-06 17:08:14 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-06 17:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:08:14 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-06 17:08:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:08:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 17:08:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-05-06 17:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-06 17:08:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:08:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-06 17:08:14 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-06 17:08:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 21 ms -2016-05-06 17:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-06 17:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:08:14 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-06 17:08:14 INFO ISClientConnector:82 - found only one RR, take it -2016-05-06 17:08:14 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-06 17:08:14 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-06 17:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-06 17:08:14 DEBUG StorageClient:517 - set scope: /gcube -2016-05-06 17:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-06 17:08:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:08:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 17:08:14 INFO WorkspaceExplorerServiceImpl:178 - end time - 96 msc 0 sec -2016-05-06 17:08:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:08:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 17:08:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 24 ms -2016-05-06 17:08:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-06 17:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-06 17:08:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:08:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-06 17:08:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-06 17:08:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-06 17:08:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-06 17:08:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:08:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-06 17:08:15 INFO WorkspaceExplorerServiceImpl:178 - end time - 354 msc 0 sec -2016-05-06 17:08:15 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-06 17:08:15 INFO ISClientConnector:61 - ISCACHE: ELEMENT EXTRACTED -2016-05-06 17:08:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-06 17:08:15 DEBUG StorageClient:517 - set scope: /gcube -2016-05-06 17:08:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-06 17:08:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-06 17:08:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-06 17:08:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-06 17:08:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-06 17:08:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-06 17:08:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-06 17:08:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:08:15 INFO WorkspaceExplorerServiceImpl:178 - end time - 334 msc 0 sec -2016-05-06 17:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:08:17 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:08:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:08:17 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-06 17:08:17 DEBUG SClient4WPS:274 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 17:08:17 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 17:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:08:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 17:08:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:08:17 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-06 17:08:17 DEBUG SClient4WPS:274 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 17:08:17 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 17:08:18 DEBUG SClient4WPS:297 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-06 17:08:18 DEBUG SClient4WPS:301 - WPSClient->Fetching Inputs -2016-05-06 17:08:18 DEBUG SClient4WPS:303 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-06 17:08:18 DEBUG SClient4WPS:303 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-06 17:08:18 DEBUG SClient4WPS:303 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-06 17:08:18 DEBUG SClient4WPS:303 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-06 17:08:18 DEBUG SClient4WPS:303 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-06 17:08:18 DEBUG SClient4WPS:308 - WPSClient->Fetching Outputs -2016-05-06 17:08:18 DEBUG SClient4WPS:310 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-06 17:08:18 DEBUG SClient4WPS:310 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-06 17:08:18 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 17:08:18 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-06 17:08:18 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-06 17:08:18 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-06 17:08:18 DEBUG WPS2SM:208 - Default Schema: null -2016-05-06 17:08:18 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-06 17:08:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-06 17:08:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-06 17:08:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:08:18 DEBUG SClient4WPS:652 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-06 17:08:18 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-06 17:08:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:08:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:08:18 DEBUG WPS2SM:100 - Guessed default value: -2016-05-06 17:08:18 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-06 17:08:18 DEBUG WPS2SM:111 - Machter find: true -2016-05-06 17:08:18 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-06 17:08:18 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-06 17:08:18 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-06 17:08:18 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-06 17:08:18 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-06 17:08:18 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-06 17:08:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-06 17:08:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-06 17:08:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:08:18 DEBUG SClient4WPS:652 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-06 17:08:18 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-06 17:08:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:08:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:08:18 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-06 17:08:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-06 17:08:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-06 17:08:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:08:18 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-06 17:08:18 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-06 17:08:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:08:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 17:08:18 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-06 17:08:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-06 17:08:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-06 17:08:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:08:18 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-06 17:08:18 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-06 17:08:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:08:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 17:08:18 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-06 17:08:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-06 17:08:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-06 17:08:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:08:18 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-06 17:08:18 DEBUG SClient4WPS:656 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-06 17:08:18 DEBUG SClient4WPS:297 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-06 17:08:18 DEBUG SClient4WPS:301 - WPSClient->Fetching Inputs -2016-05-06 17:08:18 DEBUG SClient4WPS:303 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-06 17:08:18 DEBUG SClient4WPS:303 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-06 17:08:18 DEBUG SClient4WPS:303 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-06 17:08:18 DEBUG SClient4WPS:303 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-06 17:08:18 DEBUG SClient4WPS:303 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-06 17:08:18 DEBUG SClient4WPS:308 - WPSClient->Fetching Outputs -2016-05-06 17:08:18 DEBUG SClient4WPS:310 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-06 17:08:18 DEBUG SClient4WPS:310 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-06 17:08:18 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-06 17:08:18 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-06 17:08:18 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-06 17:08:18 DEBUG WPS2SM:208 - Default Schema: null -2016-05-06 17:08:18 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-06 17:08:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-06 17:08:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-06 17:08:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:08:18 DEBUG SClient4WPS:652 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-06 17:08:18 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-06 17:08:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:08:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:08:18 DEBUG WPS2SM:100 - Guessed default value: -2016-05-06 17:08:18 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-06 17:08:18 DEBUG WPS2SM:111 - Machter find: true -2016-05-06 17:08:18 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-06 17:08:18 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-06 17:08:18 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-06 17:08:18 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-06 17:08:18 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-06 17:08:18 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-06 17:08:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-06 17:08:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-06 17:08:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:08:18 DEBUG SClient4WPS:652 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-06 17:08:18 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-06 17:08:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:08:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:08:18 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-06 17:08:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-06 17:08:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-06 17:08:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:08:18 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-06 17:08:18 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-06 17:08:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:08:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 17:08:18 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-06 17:08:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-06 17:08:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-06 17:08:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:08:18 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-06 17:08:18 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-06 17:08:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:08:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 17:08:18 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-06 17:08:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-06 17:08:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-06 17:08:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:08:18 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-06 17:08:18 DEBUG SClient4WPS:656 - Parameters: [TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-06 17:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:08:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 17:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:08:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:08:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-06 17:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:08:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:18 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-06 17:08:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-06 17:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:08:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 17:08:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:08:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:08:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:08:18 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:08:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:08:18 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:08:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:18 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-06 17:08:18 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-06 17:08:18 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-06 17:08:18 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-06 17:08:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 17:08:18 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-06 17:08:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 17:08:18 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-06 17:08:18 INFO WorkspaceExplorerServiceImpl:138 - end time - 318 msc 0 sec -2016-05-06 17:08:18 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-06 17:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 17:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:08:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 17:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:08:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:19 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-06 17:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-06 17:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:08:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 17:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:08:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:08:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-06 17:08:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-06 17:08:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-06 17:08:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-06 17:08:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 17:08:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-06 17:08:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 17:08:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-06 17:08:20 INFO WorkspaceExplorerServiceImpl:138 - end time - 180 msc 0 sec -2016-05-06 17:08:20 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-06 17:08:37 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:08:37 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 17:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:08:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:37 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-06 17:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:08:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:37 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:08:37 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:08:37 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 17:08:37 DEBUG ServiceEngine:306 - get() - start -2016-05-06 17:08:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:08:37 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:08:37 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-06 17:08:37 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-06 17:08:37 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 17:08:37 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 17:08:37 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-06 17:08:37 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 17:08:37 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-06 17:08:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:08:37 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:08:37 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 17:08:37 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 17:08:37 DEBUG MongoIO:77 - open mongo connection -2016-05-06 17:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 17:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:08:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 17:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:08:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:37 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:08:37 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:08:37 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 17:08:37 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:37 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 17:08:37 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 17:08:37 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:37 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:37 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8c1b4c5b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@729517ab, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a451652, socketFactory=javax.net.DefaultSocketFactory@2dbc6ef7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 17:08:37 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 17:08:37 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 17:08:37 INFO WorkspaceExplorerServiceImpl:178 - end time - 50 msc 0 sec -2016-05-06 17:08:37 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 17:08:37 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 17:08:37 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-06 17:08:37 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:333060}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:08:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:08:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1441378, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:08:37 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 17:08:37 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:37 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:37 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2206456}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:08:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:08:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1400645, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:08:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:08:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:38 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1956799}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1458903, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:08:38 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:38 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1956800}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1956800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG command:56 - Command execution completed -2016-05-06 17:08:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1956800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG command:56 - Command execution completed -2016-05-06 17:08:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1956800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG command:56 - Command execution completed -2016-05-06 17:08:38 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 17:08:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1956800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG command:56 - Command execution completed -2016-05-06 17:08:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1956800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG command:56 - Command execution completed -2016-05-06 17:08:38 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1956800}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:38 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-06 17:08:38 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-06 17:08:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:08:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-06 17:08:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:08:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:38 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-06 17:08:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:08:38 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 17:08:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:08:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:38 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-06 17:08:38 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-06 17:08:38 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-06 17:08:38 DEBUG ServiceEngine:306 - get() - start -2016-05-06 17:08:38 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:08:38 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:08:38 DEBUG ServiceEngine:62 - path(String) - name: DBScan -2016-05-06 17:08:38 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-06 17:08:38 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 17:08:38 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 17:08:38 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-06 17:08:38 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 17:08:38 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-06 17:08:38 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:08:38 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:08:38 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 17:08:38 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 17:08:38 DEBUG MongoIO:77 - open mongo connection -2016-05-06 17:08:38 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 17:08:38 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:38 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:38 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:38 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8c1b4c5b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@729517ab, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a451652, socketFactory=javax.net.DefaultSocketFactory@2dbc6ef7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 17:08:38 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 17:08:38 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 17:08:38 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1956801}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:333061}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1441488, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:08:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1403751, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:08:38 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 17:08:38 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:38 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:38 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:38 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2206457}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=917928, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:08:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:08:38 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:08:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:08:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:08:38 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:08:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:08:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:38 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-06 17:08:38 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-05-06 17:08:38 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1956802}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1956802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG command:56 - Command execution completed -2016-05-06 17:08:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1956802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG command:56 - Command execution completed -2016-05-06 17:08:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1956802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG command:56 - Command execution completed -2016-05-06 17:08:38 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-06 17:08:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1956802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-06 17:08:38 INFO JCRServlets:697 - Calling Servlet get Parents By Id 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-05-06 17:08:38 DEBUG command:56 - Command execution completed -2016-05-06 17:08:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1956802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 DEBUG command:56 - Command execution completed -2016-05-06 17:08:38 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1956802}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:38 INFO WorkspaceExplorerServiceImpl:178 - end time - 45 msc 0 sec -2016-05-06 17:08:38 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:08:38 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=7ba62008-739a-4787-ae33-7938ad109a54, name=DBScan, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 17:08:38 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 17:08:38 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 17:08:38 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-06 17:08:39 DEBUG query:56 - Query completed -2016-05-06 17:08:39 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-06 17:08:39 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2206456} -2016-05-06 17:08:39 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:333060} -2016-05-06 17:08:39 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1956800}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 17:08:39 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1956800} -2016-05-06 17:08:39 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1956799} -2016-05-06 17:08:39 INFO MongoIO:508 - Mongo has been closed -2016-05-06 17:08:39 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 17:08:39 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 17:08:39 INFO WorkspaceExplorerServiceImpl:491 - returning size: 4033313 -2016-05-06 17:08:39 DEBUG connection:56 - Closing connection connectionId{localValue:3} -2016-05-06 17:08:39 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1620405}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:08:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:08:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2039218, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:08:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-06 17:08:39 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 17:08:39 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 17:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:08:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:39 INFO WorkspaceExplorerServiceImpl:506 - get MimeType By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 17:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:08:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:39 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 17:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 17:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:08:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:39 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 17:08:39 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 17:08:39 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 17:08:39 INFO WorkspaceExplorerServiceImpl:491 - returning size: 849 -2016-05-06 17:08:39 DEBUG query:56 - Query completed -2016-05-06 17:08:39 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-05-06 17:08:39 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2206457} -2016-05-06 17:08:39 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:333061} -2016-05-06 17:08:39 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1956802}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 17:08:39 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1956802} -2016-05-06 17:08:39 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1620405} -2016-05-06 17:08:39 INFO MongoIO:508 - Mongo has been closed -2016-05-06 17:08:39 INFO DefaultMongoClient:1329 - getFolderTotalVolume 849 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-06 17:08:39 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1956801} -2016-05-06 17:08:39 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-05-06 17:08:39 INFO WorkspaceExplorerServiceImpl:491 - returning size: 849 -2016-05-06 17:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 17:08:40 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:08:40 DEBUG DataMinerManagerServiceImpl:245 - retrieveTableInformation(): Item [id=13d0382e-8833-4df7-b4dc-61bbba61b3e5, name=hcaf_filtered.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 17:10:22 CET 2016] -2016-05-06 17:08:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:40 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 17:08:40 DEBUG ServiceEngine:193 - get() - start -2016-05-06 17:08:40 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:08:40 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:08:40 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-06 17:08:40 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-06 17:08:40 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 17:08:40 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 17:08:40 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-06 17:08:40 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 17:08:40 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:08:40 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:08:40 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-06 17:08:40 DEBUG Operation:173 - get(String) - start -2016-05-06 17:08:40 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 17:08:40 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 17:08:40 DEBUG MongoIO:77 - open mongo connection -2016-05-06 17:08:40 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 17:08:40 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:40 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:40 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:40 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8c1b4c5b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@729517ab, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a451652, socketFactory=javax.net.DefaultSocketFactory@2dbc6ef7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 17:08:40 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 17:08:40 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 17:08:40 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:333063}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:08:40 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:08:40 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1956803}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:40 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:40 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1294528, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:08:40 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 17:08:40 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:40 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:40 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1672566, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:08:40 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:40 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2206458}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:08:40 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:08:40 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=882074, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:08:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:41 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1620407}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1298050, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:08:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-06 17:08:41 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1956804}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1956804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG command:56 - Command execution completed -2016-05-06 17:08:41 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1956804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG command:56 - Command execution completed -2016-05-06 17:08:41 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1956804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG command:56 - Command execution completed -2016-05-06 17:08:41 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-06 17:08:41 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1956804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG command:56 - Command execution completed -2016-05-06 17:08:41 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1956804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG command:56 - Command execution completed -2016-05-06 17:08:41 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-06 17:08:41 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1956804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG command:56 - Command execution completed -2016-05-06 17:08:41 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1956804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG command:56 - Command execution completed -2016-05-06 17:08:41 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-06 17:08:41 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1956804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG query:56 - Query completed -2016-05-06 17:08:41 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-06 17:08:41 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-06 17:08:41 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-06 17:08:41 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1956804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG update:56 - Update completed -2016-05-06 17:08:41 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1956804}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG query:56 - Query completed -2016-05-06 17:08:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:08:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:08:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:08:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:08:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:08:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:08:41 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-05-06 17:08:41 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered.csv -2016-05-06 17:08:41 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-06 17:08:41 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-06 17:08:41 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:08:41 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:08:41 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-05-06 17:08:41 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-05-06 17:08:41 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-06 17:08:41 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 17:08:41 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-06 17:08:41 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-06 17:08:41 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 17:08:41 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:08:41 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:08:41 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 17:08:41 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 17:08:41 DEBUG MongoIO:77 - open mongo connection -2016-05-06 17:08:41 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 17:08:41 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:41 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:41 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:41 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8c1b4c5b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@729517ab, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a451652, socketFactory=javax.net.DefaultSocketFactory@2dbc6ef7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 17:08:41 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 17:08:41 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 17:08:41 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1956805}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1153203, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:08:41 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 17:08:41 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:41 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:08:41 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:41 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:333064}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1154214, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:08:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:41 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2206459}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=830602, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:08:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:08:41 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1620408}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1215452, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:08:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-06 17:08:41 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1956806}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1956806}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG command:56 - Command execution completed -2016-05-06 17:08:41 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1956806}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG command:56 - Command execution completed -2016-05-06 17:08:41 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1956806}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG command:56 - Command execution completed -2016-05-06 17:08:41 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-06 17:08:41 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-06 17:08:41 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1956806}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG command:56 - Command execution completed -2016-05-06 17:08:41 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1956806}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG command:56 - Command execution completed -2016-05-06 17:08:41 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-06 17:08:41 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1956806}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG query:56 - Query completed -2016-05-06 17:08:41 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-05-06 17:08:41 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2206459} -2016-05-06 17:08:41 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1620408} -2016-05-06 17:08:41 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1956806}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 17:08:41 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:333064} -2016-05-06 17:08:41 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1956806} -2016-05-06 17:08:41 INFO MongoIO:508 - Mongo has been closed -2016-05-06 17:08:41 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1956805} -2016-05-06 17:08:41 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-05-06 17:08:41 INFO Operation:55 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-06 17:08:41 INFO Operation:57 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-06 17:08:41 DEBUG Operation:87 - translating: http://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-06 17:08:41 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-06 17:08:41 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-05-06 17:08:41 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-06 17:08:41 INFO Operation:65 - URL translated: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-06 17:08:41 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:08:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-06 17:08:42 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2206458} -2016-05-06 17:08:42 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1956804}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 17:08:42 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1620407} -2016-05-06 17:08:42 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:333063} -2016-05-06 17:08:42 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1956804} -2016-05-06 17:08:42 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1956803} -2016-05-06 17:08:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:08:53 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 17:08:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:08:53 DEBUG DataMinerManagerServiceImpl:135 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-05-06 17:08:53 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-06 17:08:53 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-06 17:08:53 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-06 17:08:53 DEBUG WPS2SM:208 - Default Schema: null -2016-05-06 17:08:53 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-06 17:08:53 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-06 17:08:53 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-06 17:08:53 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:08:53 DEBUG SClient4WPS:683 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-06 17:08:53 DEBUG WPS2SM:300 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-06 17:08:53 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:08:53 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:08:53 DEBUG WPS2SM:100 - Guessed default value: -2016-05-06 17:08:53 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-06 17:08:53 DEBUG WPS2SM:111 - Machter find: true -2016-05-06 17:08:53 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-06 17:08:53 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-06 17:08:53 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-06 17:08:53 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-06 17:08:53 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-06 17:08:53 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-06 17:08:53 DEBUG WPS2SM:339 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-06 17:08:53 DEBUG WPS2SM:340 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-06 17:08:53 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:08:53 DEBUG SClient4WPS:683 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-06 17:08:53 DEBUG WPS2SM:300 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-06 17:08:53 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:08:53 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:08:53 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-06 17:08:53 DEBUG WPS2SM:339 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-06 17:08:53 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-06 17:08:53 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:08:53 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-06 17:08:53 DEBUG WPS2SM:300 - Conversion to SM Type->epsilon is a Literal Input -2016-05-06 17:08:53 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:08:53 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 17:08:53 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-06 17:08:53 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-06 17:08:53 DEBUG WPS2SM:340 - Conversion to SM Type->Name:epsilon -2016-05-06 17:08:53 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:08:53 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-06 17:08:53 DEBUG WPS2SM:300 - Conversion to SM Type->min_points is a Literal Input -2016-05-06 17:08:53 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:08:53 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 17:08:53 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-06 17:08:53 DEBUG WPS2SM:339 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-06 17:08:53 DEBUG WPS2SM:340 - Conversion to SM Type->Name:min_points -2016-05-06 17:08:53 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:08:53 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-06 17:08:53 DEBUG SClient4WPS:691 - UserInputs[key=OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0] -2016-05-06 17:08:53 DEBUG SClient4WPS:691 - UserInputs[key=FeaturesColumnNames, value=depthmean|sstmnmax|salinitymean] -2016-05-06 17:08:53 DEBUG SClient4WPS:691 - UserInputs[key=OccurrencePointsClusterLabel, value=test] -2016-05-06 17:08:53 DEBUG SClient4WPS:691 - UserInputs[key=epsilon, value=10] -2016-05-06 17:08:53 DEBUG SClient4WPS:691 - UserInputs[key=min_points, value=1] -2016-05-06 17:08:53 DEBUG SClient4WPS:744 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-05-06 17:08:53 DEBUG SClient4WPS:727 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymean -2016-05-06 17:08:53 DEBUG SClient4WPS:727 - Configuring Literal: OccurrencePointsClusterLabel to: test -2016-05-06 17:08:53 DEBUG SClient4WPS:727 - Configuring Literal: epsilon to: 10 -2016-05-06 17:08:53 DEBUG SClient4WPS:727 - Configuring Literal: min_points to: 1 -2016-05-06 17:08:53 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 17:08:59 DEBUG SClient4WPS:388 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - - - OccurrencePointsTable - - - - FeaturesColumnNames - - depthmean|sstmnmax|salinitymean - - - - OccurrencePointsClusterLabel - - test - - - - epsilon - - 10 - - - - min_points - - 1 - - - - - - - OutputTable - - - non_deterministic_output - - - - -2016-05-06 17:08:59 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-06 17:08:59 DEBUG SClient4WPS:415 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=7c7e6c26-84f5-4757-a590-baf5b54554d4 -2016-05-06 17:08:59 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 17:08:59 DEBUG SClient4WPS:787 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=7c7e6c26-84f5-4757-a590-baf5b54554d4 -2016-05-06 17:08:59 DEBUG SClient4WPS:697 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=7c7e6c26-84f5-4757-a590-baf5b54554d4 -2016-05-06 17:08:59 DEBUG SClient4WPS:708 - ComputationId: ComputationId [id=7c7e6c26-84f5-4757-a590-baf5b54554d4, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=7c7e6c26-84f5-4757-a590-baf5b54554d4] -2016-05-06 17:09:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:09:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 17:09:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:09:09 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:09:09 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:09:09 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=7c7e6c26-84f5-4757-a590-baf5b54554d4, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=7c7e6c26-84f5-4757-a590-baf5b54554d4] -2016-05-06 17:09:09 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 17:09:09 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 17:09:09 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=7c7e6c26-84f5-4757-a590-baf5b54554d4 -2016-05-06 17:09:09 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:09:09 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 17:09:09 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 17:09:09 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymean,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/UHJZZGlmMHc5RE51OUtmNGlWNFVMQjZra1N4RTBvNThHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-05-06 17:09:09 DEBUG SClient4WPS:875 - WPS SUCCESS -2016-05-06 17:09:09 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=100.0, status=COMPLETE, endDate=null, message=null, errResource=null] -2016-05-06 17:09:10 DEBUG Log:91 - getResourceByComputationId: ComputationId [id=7c7e6c26-84f5-4757-a590-baf5b54554d4, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=7c7e6c26-84f5-4757-a590-baf5b54554d4] -2016-05-06 17:09:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:09:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 17:09:10 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:09:10 DEBUG SClient4WPS:436 - RetrieveProcessResult: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=7c7e6c26-84f5-4757-a590-baf5b54554d4 -2016-05-06 17:09:10 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=7c7e6c26-84f5-4757-a590-baf5b54554d4 -2016-05-06 17:09:10 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:09:10 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 17:09:10 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 17:09:10 DEBUG SClient4WPS:447 - Response: - - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymean,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/UHJZZGlmMHc5RE51OUtmNGlWNFVMQjZra1N4RTBvNThHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-05-06 17:09:10 DEBUG SClient4WPS:970 - Process Executed -2016-05-06 17:09:10 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-06 17:09:10 DEBUG SClient4WPS:574 - Node Name: #text -2016-05-06 17:09:10 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-06 17:09:10 DEBUG SClient4WPS:574 - Node Name: ogr:FeatureCollection -2016-05-06 17:09:10 DEBUG SClient4WPS:574 - Node Name: gml:featureMember -2016-05-06 17:09:10 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 17:09:10 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/UHJZZGlmMHc5RE51OUtmNGlWNFVMQjZra1N4RTBvNThHbWJQNStIS0N6Yz0 -2016-05-06 17:09:10 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] -2016-05-06 17:09:10 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:text/csv -2016-05-06 17:09:10 DEBUG SClient4WPS:516 - ResponseWPS Map: F0-->ResponseWPS [data=http://data-d.d4science.org/UHJZZGlmMHc5RE51OUtmNGlWNFVMQjZra1N4RTBvNThHbWJQNStIS0N6Yz0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], mimeType=text/csv] -2016-05-06 17:09:10 DEBUG SClient4WPS:1018 - Adding OBJ:F0 -2016-05-06 17:09:10 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/UHJZZGlmMHc5RE51OUtmNGlWNFVMQjZra1N4RTBvNThHbWJQNStIS0N6Yz0, name=F0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], typology=OBJECT] -2016-05-06 17:09:10 DEBUG Log:91 - Resoure: MapResource [map={F0=FileResource [url=http://data-d.d4science.org/UHJZZGlmMHc5RE51OUtmNGlWNFVMQjZra1N4RTBvNThHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F0, getName()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getDescription()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getResourceType()=FILE]}, getResourceId()=mapResource, getName()=Resources, getDescription()=Resources, getResourceType()=MAP] -2016-05-06 17:09:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:09:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 17:09:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:09:17 INFO SClient4WPS:635 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING -2016-05-06 17:09:17 DEBUG SClient4WPS:274 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 17:09:17 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 17:09:18 DEBUG SClient4WPS:297 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt - - - OutputTableLabel - The name of the table to produce - Name of the parameter: OutputTableLabel. The name of the table to produce - - - - maxent_ - - - - SpeciesName - The name of the species to model and the occurrence records refer to - Name of the parameter: SpeciesName. The name of the species to model and the occurrence records refer to - - - - generic_species - - - - MaxIterations - The number of learning iterations of the MaxEnt algorithm - Name of the parameter: MaxIterations. The number of learning iterations of the MaxEnt algorithm - - - - 1000 - - - - DefaultPrevalence - A priori probability of presence at ordinary occurrence points - Name of the parameter: DefaultPrevalence. A priori probability of presence at ordinary occurrence points - - - - 0.5 - - - - OccurrencesTable - A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - Name of the parameter: OccurrencesTable. A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - LongitudeColumn - The column containing longitude values [the name of a column from OccurrencesTable] - Name of the parameter: LongitudeColumn. The column containing longitude values [the name of a column from OccurrencesTable] - - - - decimallongitude - - - - LatitudeColumn - The column containing latitude values [the name of a column from OccurrencesTable] - Name of the parameter: LatitudeColumn. The column containing latitude values [the name of a column from OccurrencesTable] - - - - decimallatitude - - - - XResolution - Model projection resolution on the X axis in decimal degrees - Name of the parameter: XResolution. Model projection resolution on the X axis in decimal degrees - - - - 1 - - - - YResolution - Model projection resolution on the Y axis in decimal degrees - Name of the parameter: YResolution. Model projection resolution on the Y axis in decimal degrees - - - - 1 - - - - Layers - The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - Name of the parameter: Layers. The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - - - - - - - Z - Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - - - TimeIndex - Time Index. The default is the first time indexed in the input environmental datasets - Name of the parameter: TimeIndex. Time Index. The default is the first time indexed in the input environmental datasets - - - - 0 - - - - - - Best Threshold - Best threshold for transforming MaxEnt values into 0/1 probability assignments - Name of the parameter: Best Threshold. Best threshold for transforming MaxEnt values into 0/1 probability assignments - - - - - - Estimated Prevalence - The a posteriori estimated prevalence of the species - Name of the parameter: Estimated Prevalence. The a posteriori estimated prevalence of the species - - - - - - Variables contributions - The contribution of each variable to the MaxEnt values estimates - Name of the parameter: Variables contributions. The contribution of each variable to the MaxEnt values estimates - - - - - - Variables Permutations Importance - The importance of the permutations of the variables during the training - Name of the parameter: Variables Permutations Importance. The importance of the permutations of the variables during the training - - - - - - ASCII Maps of the environmental layers for checking features aligments - ASCII Maps of the environmental layers for checking features aligments - Name of the parameter: ASCII Maps of the environmental layers for checking features aligments. ASCII Maps of the environmental layers for checking features aligments - - - - application/d4science - - - - - application/d4science - - - - - - OutputTable7 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable7. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-06 17:09:18 DEBUG SClient4WPS:301 - WPSClient->Fetching Inputs -2016-05-06 17:09:18 DEBUG SClient4WPS:303 - WPSClient->Input: - OutputTableLabel - The name of the table to produce - Name of the parameter: OutputTableLabel. The name of the table to produce - - - - maxent_ - - -2016-05-06 17:09:18 DEBUG SClient4WPS:303 - WPSClient->Input: - SpeciesName - The name of the species to model and the occurrence records refer to - Name of the parameter: SpeciesName. The name of the species to model and the occurrence records refer to - - - - generic_species - - -2016-05-06 17:09:18 DEBUG SClient4WPS:303 - WPSClient->Input: - MaxIterations - The number of learning iterations of the MaxEnt algorithm - Name of the parameter: MaxIterations. The number of learning iterations of the MaxEnt algorithm - - - - 1000 - - -2016-05-06 17:09:18 DEBUG SClient4WPS:303 - WPSClient->Input: - DefaultPrevalence - A priori probability of presence at ordinary occurrence points - Name of the parameter: DefaultPrevalence. A priori probability of presence at ordinary occurrence points - - - - 0.5 - - -2016-05-06 17:09:18 DEBUG SClient4WPS:303 - WPSClient->Input: - OccurrencesTable - A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - Name of the parameter: OccurrencesTable. A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-06 17:09:18 DEBUG SClient4WPS:303 - WPSClient->Input: - LongitudeColumn - The column containing longitude values [the name of a column from OccurrencesTable] - Name of the parameter: LongitudeColumn. The column containing longitude values [the name of a column from OccurrencesTable] - - - - decimallongitude - - -2016-05-06 17:09:18 DEBUG SClient4WPS:303 - WPSClient->Input: - LatitudeColumn - The column containing latitude values [the name of a column from OccurrencesTable] - Name of the parameter: LatitudeColumn. The column containing latitude values [the name of a column from OccurrencesTable] - - - - decimallatitude - - -2016-05-06 17:09:18 DEBUG SClient4WPS:303 - WPSClient->Input: - XResolution - Model projection resolution on the X axis in decimal degrees - Name of the parameter: XResolution. Model projection resolution on the X axis in decimal degrees - - - - 1 - - -2016-05-06 17:09:18 DEBUG SClient4WPS:303 - WPSClient->Input: - YResolution - Model projection resolution on the Y axis in decimal degrees - Name of the parameter: YResolution. Model projection resolution on the Y axis in decimal degrees - - - - 1 - - -2016-05-06 17:09:18 DEBUG SClient4WPS:303 - WPSClient->Input: - Layers - The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - Name of the parameter: Layers. The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - - - - - -2016-05-06 17:09:18 DEBUG SClient4WPS:303 - WPSClient->Input: - Z - Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - -2016-05-06 17:09:18 DEBUG SClient4WPS:303 - WPSClient->Input: - TimeIndex - Time Index. The default is the first time indexed in the input environmental datasets - Name of the parameter: TimeIndex. Time Index. The default is the first time indexed in the input environmental datasets - - - - 0 - - -2016-05-06 17:09:18 DEBUG SClient4WPS:308 - WPSClient->Fetching Outputs -2016-05-06 17:09:18 DEBUG SClient4WPS:310 - WPSClient->Output: - Best Threshold - Best threshold for transforming MaxEnt values into 0/1 probability assignments - Name of the parameter: Best Threshold. Best threshold for transforming MaxEnt values into 0/1 probability assignments - - - - -2016-05-06 17:09:18 DEBUG SClient4WPS:310 - WPSClient->Output: - Estimated Prevalence - The a posteriori estimated prevalence of the species - Name of the parameter: Estimated Prevalence. The a posteriori estimated prevalence of the species - - - - -2016-05-06 17:09:18 DEBUG SClient4WPS:310 - WPSClient->Output: - Variables contributions - The contribution of each variable to the MaxEnt values estimates - Name of the parameter: Variables contributions. The contribution of each variable to the MaxEnt values estimates - - - - -2016-05-06 17:09:18 DEBUG SClient4WPS:310 - WPSClient->Output: - Variables Permutations Importance - The importance of the permutations of the variables during the training - Name of the parameter: Variables Permutations Importance. The importance of the permutations of the variables during the training - - - - -2016-05-06 17:09:18 DEBUG SClient4WPS:310 - WPSClient->Output: - ASCII Maps of the environmental layers for checking features aligments - ASCII Maps of the environmental layers for checking features aligments - Name of the parameter: ASCII Maps of the environmental layers for checking features aligments. ASCII Maps of the environmental layers for checking features aligments - - - - application/d4science - - - - - application/d4science - - - - -2016-05-06 17:09:18 DEBUG SClient4WPS:310 - WPSClient->Output: - OutputTable7 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable7. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-06 17:09:18 DEBUG SClient4WPS:310 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-06 17:09:18 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 17:09:18 DEBUG WPS2SM:300 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-06 17:09:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:09:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:09:18 DEBUG WPS2SM:100 - Guessed default value: maxent_ -2016-05-06 17:09:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The name of the table to produce -2016-05-06 17:09:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OutputTableLabel -2016-05-06 17:09:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:09:18 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=maxent_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:maxent_], typology=OBJECT] -2016-05-06 17:09:18 DEBUG WPS2SM:300 - Conversion to SM Type->SpeciesName is a Literal Input -2016-05-06 17:09:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:09:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:09:18 DEBUG WPS2SM:100 - Guessed default value: generic_species -2016-05-06 17:09:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The name of the species to model and the occurrence records refer to -2016-05-06 17:09:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:SpeciesName -2016-05-06 17:09:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:09:18 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=generic_species, value=null, name=SpeciesName, description=The name of the species to model and the occurrence records refer to [Min N. of Entries:1; Max N. of Entries:1; default:generic_species], typology=OBJECT] -2016-05-06 17:09:18 DEBUG WPS2SM:300 - Conversion to SM Type->MaxIterations is a Literal Input -2016-05-06 17:09:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:09:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 17:09:18 DEBUG WPS2SM:100 - Guessed default value: 1000 -2016-05-06 17:09:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The number of learning iterations of the MaxEnt algorithm -2016-05-06 17:09:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:MaxIterations -2016-05-06 17:09:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:09:18 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1000, value=null, name=MaxIterations, description=The number of learning iterations of the MaxEnt algorithm [Min N. of Entries:1; Max N. of Entries:1; default:1000], typology=OBJECT] -2016-05-06 17:09:18 DEBUG WPS2SM:300 - Conversion to SM Type->DefaultPrevalence is a Literal Input -2016-05-06 17:09:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:09:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 17:09:18 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-06 17:09:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:A priori probability of presence at ordinary occurrence points -2016-05-06 17:09:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:DefaultPrevalence -2016-05-06 17:09:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:09:18 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=DefaultPrevalence, description=A priori probability of presence at ordinary occurrence points [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-06 17:09:18 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencesTable is a Complex Input -2016-05-06 17:09:18 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-06 17:09:18 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-06 17:09:18 DEBUG WPS2SM:208 - Default Schema: null -2016-05-06 17:09:18 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-06 17:09:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] -2016-05-06 17:09:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencesTable -2016-05-06 17:09:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:09:18 DEBUG SClient4WPS:652 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-06 17:09:18 DEBUG WPS2SM:300 - Conversion to SM Type->LongitudeColumn is a Literal Input -2016-05-06 17:09:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:09:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:09:18 DEBUG WPS2SM:100 - Guessed default value: decimallongitude -2016-05-06 17:09:18 DEBUG WPS2SM:129 - Machter title: The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude] -2016-05-06 17:09:18 DEBUG WPS2SM:130 - Machter find: true -2016-05-06 17:09:18 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrencesTable -2016-05-06 17:09:18 DEBUG WPS2SM:132 - Machter start: 40 -2016-05-06 17:09:18 DEBUG WPS2SM:133 - Machter end: 82 -2016-05-06 17:09:18 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-06 17:09:18 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrencesTable -2016-05-06 17:09:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The column containing longitude values [the name of a column from OccurrencesTable] -2016-05-06 17:09:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:LongitudeColumn -2016-05-06 17:09:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:09:18 DEBUG SClient4WPS:652 - InputParameter: Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN] -2016-05-06 17:09:18 DEBUG WPS2SM:300 - Conversion to SM Type->LatitudeColumn is a Literal Input -2016-05-06 17:09:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:09:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:09:18 DEBUG WPS2SM:100 - Guessed default value: decimallatitude -2016-05-06 17:09:18 DEBUG WPS2SM:129 - Machter title: The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude] -2016-05-06 17:09:18 DEBUG WPS2SM:130 - Machter find: true -2016-05-06 17:09:18 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrencesTable -2016-05-06 17:09:18 DEBUG WPS2SM:132 - Machter start: 39 -2016-05-06 17:09:18 DEBUG WPS2SM:133 - Machter end: 81 -2016-05-06 17:09:18 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-06 17:09:18 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrencesTable -2016-05-06 17:09:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The column containing latitude values [the name of a column from OccurrencesTable] -2016-05-06 17:09:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:LatitudeColumn -2016-05-06 17:09:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:09:18 DEBUG SClient4WPS:652 - InputParameter: Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN] -2016-05-06 17:09:18 DEBUG WPS2SM:300 - Conversion to SM Type->XResolution is a Literal Input -2016-05-06 17:09:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:09:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 17:09:18 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-06 17:09:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Model projection resolution on the X axis in decimal degrees -2016-05-06 17:09:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:XResolution -2016-05-06 17:09:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:09:18 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=XResolution, description=Model projection resolution on the X axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-06 17:09:18 DEBUG WPS2SM:300 - Conversion to SM Type->YResolution is a Literal Input -2016-05-06 17:09:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:09:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 17:09:18 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-06 17:09:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Model projection resolution on the Y axis in decimal degrees -2016-05-06 17:09:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:YResolution -2016-05-06 17:09:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:09:18 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=YResolution, description=Model projection resolution on the Y axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-06 17:09:18 DEBUG WPS2SM:300 - Conversion to SM Type->Layers is a Literal Input -2016-05-06 17:09:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:09:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:09:18 DEBUG WPS2SM:100 - Guessed default value: -2016-05-06 17:09:18 DEBUG WPS2SM:148 - Machter title: The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-06 17:09:18 DEBUG WPS2SM:149 - Machter find: true -2016-05-06 17:09:18 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-06 17:09:18 DEBUG WPS2SM:151 - Machter start: 501 -2016-05-06 17:09:18 DEBUG WPS2SM:152 - Machter end: 536 -2016-05-06 17:09:18 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-06 17:09:18 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-06 17:09:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) -2016-05-06 17:09:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:Layers -2016-05-06 17:09:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:09:18 DEBUG SClient4WPS:652 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-06 17:09:18 DEBUG WPS2SM:300 - Conversion to SM Type->Z is a Literal Input -2016-05-06 17:09:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:09:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 17:09:18 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-06 17:09:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer -2016-05-06 17:09:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:Z -2016-05-06 17:09:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:09:18 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-06 17:09:18 DEBUG WPS2SM:300 - Conversion to SM Type->TimeIndex is a Literal Input -2016-05-06 17:09:18 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:09:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 17:09:18 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-06 17:09:18 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Time Index. The default is the first time indexed in the input environmental datasets -2016-05-06 17:09:18 DEBUG WPS2SM:340 - Conversion to SM Type->Name:TimeIndex -2016-05-06 17:09:18 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:09:18 DEBUG SClient4WPS:652 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=TimeIndex, description=Time Index. The default is the first time indexed in the input environmental datasets [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-06 17:09:18 DEBUG SClient4WPS:656 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue=maxent_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:maxent_], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=generic_species, value=null, name=SpeciesName, description=The name of the species to model and the occurrence records refer to [Min N. of Entries:1; Max N. of Entries:1; default:generic_species], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1000, value=null, name=MaxIterations, description=The number of learning iterations of the MaxEnt algorithm [Min N. of Entries:1; Max N. of Entries:1; default:1000], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=DefaultPrevalence, description=A priori probability of presence at ordinary occurrence points [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN], Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN], ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=XResolution, description=Model projection resolution on the X axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=YResolution, description=Model projection resolution on the Y axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ListParameter [type=java.lang.String, value=null, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=TimeIndex, description=Time Index. The default is the first time indexed in the input environmental datasets [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-06 17:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:09:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 17:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:09:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:09:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:09:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:18 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-06 17:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:09:18 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:09:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-06 17:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:09:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:09:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:09:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:09:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-06 17:09:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:09:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:09:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:09:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 17:09:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:09:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:09:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:09:22 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:09:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:09:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-06 17:09:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:09:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:09:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:09:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-06 17:09:22 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-06 17:09:22 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-06 17:09:22 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-06 17:09:22 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-06 17:09:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 17:09:22 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-06 17:09:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-06 17:09:22 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-06 17:09:22 INFO WorkspaceExplorerServiceImpl:138 - end time - 284 msc 0 sec -2016-05-06 17:09:22 INFO WorkspaceExplorerServiceImpl:141 - Returning children size: 41 -2016-05-06 17:09:26 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:09:26 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:09:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:09:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-06 17:09:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:09:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:26 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:09:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:09:26 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 17:09:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:09:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:09:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:09:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:09:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:09:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 17:09:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:09:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:27 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:09:27 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:09:27 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:09:27 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:09:27 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 17:09:27 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 17:09:27 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-06 17:09:27 DEBUG ServiceEngine:306 - get() - start -2016-05-06 17:09:27 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:09:27 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:09:27 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-06 17:09:27 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-06 17:09:27 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 17:09:27 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 17:09:27 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-06 17:09:27 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 17:09:27 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-06 17:09:27 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:09:27 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:09:27 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 17:09:27 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 17:09:27 DEBUG MongoIO:77 - open mongo connection -2016-05-06 17:09:27 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 17:09:27 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:27 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:27 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:27 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8c1b4c5b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@729517ab, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a451652, socketFactory=javax.net.DefaultSocketFactory@2dbc6ef7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 17:09:27 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 17:09:27 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 17:09:27 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:333136}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:09:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:09:27 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1956907}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1171764, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:27 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 17:09:27 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1897007, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:27 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:27 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:27 INFO WorkspaceExplorerServiceImpl:178 - end time - 201 msc 0 sec -2016-05-06 17:09:27 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2206515}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:09:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:09:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2554108, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:27 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1620464}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:09:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:09:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1341307, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-06 17:09:27 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1956908}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1956908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:27 DEBUG command:56 - Command execution completed -2016-05-06 17:09:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1956908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:27 DEBUG command:56 - Command execution completed -2016-05-06 17:09:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1956908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:27 DEBUG command:56 - Command execution completed -2016-05-06 17:09:27 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 17:09:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1956908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:27 DEBUG command:56 - Command execution completed -2016-05-06 17:09:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1956908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:27 DEBUG command:56 - Command execution completed -2016-05-06 17:09:27 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1956908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:09:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-06 17:09:28 DEBUG query:56 - Query completed -2016-05-06 17:09:28 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-06 17:09:28 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2206515} -2016-05-06 17:09:28 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:333136} -2016-05-06 17:09:28 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1620464} -2016-05-06 17:09:28 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1956908}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 17:09:28 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1956908} -2016-05-06 17:09:28 INFO MongoIO:508 - Mongo has been closed -2016-05-06 17:09:28 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 17:09:28 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1956907} -2016-05-06 17:09:28 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-06 17:09:28 INFO WorkspaceExplorerServiceImpl:491 - returning size: 4033313 -2016-05-06 17:09:29 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId e8663e07-6286-4212-920c-54dd7bbf205c -2016-05-06 17:09:29 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId e8663e07-6286-4212-920c-54dd7bbf205c -2016-05-06 17:09:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:09:29 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 17:09:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:09:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:29 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: e8663e07-6286-4212-920c-54dd7bbf205c -2016-05-06 17:09:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:09:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 17:09:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:09:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:09:29 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-06 17:09:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:09:29 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:09:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:09:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:09:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:29 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 17:09:29 INFO JCRServlets:267 - Servlet getItemById e8663e07-6286-4212-920c-54dd7bbf205c -2016-05-06 17:09:29 INFO JCRServlets:267 - Servlet getItemById e8663e07-6286-4212-920c-54dd7bbf205c -2016-05-06 17:09:29 INFO JCRServlets:267 - Servlet getItemById e8663e07-6286-4212-920c-54dd7bbf205c -2016-05-06 17:09:29 INFO JCRServlets:267 - Servlet getItemById e8663e07-6286-4212-920c-54dd7bbf205c -2016-05-06 17:09:29 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 17:09:29 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-06 17:09:29 INFO JCRServlets:142 - Calling servlet getChildrenById e8663e07-6286-4212-920c-54dd7bbf205c by giancarlo.panichi -2016-05-06 17:09:29 INFO JCRServlets:697 - Calling Servlet get Parents By Id e8663e07-6286-4212-920c-54dd7bbf205c by giancarlo.panichi -2016-05-06 17:09:29 INFO JCRServlets:142 - Calling servlet getChildrenById e8663e07-6286-4212-920c-54dd7bbf205c by giancarlo.panichi -2016-05-06 17:09:29 DEBUG ServiceEngine:306 - get() - start -2016-05-06 17:09:29 INFO WorkspaceExplorerServiceImpl:178 - end time - 50 msc 0 sec -2016-05-06 17:09:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:09:29 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:09:29 DEBUG ServiceEngine:62 - path(String) - name: Max_Ent_Niche_Modelling -2016-05-06 17:09:29 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-06 17:09:29 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 17:09:29 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 17:09:29 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-06 17:09:29 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 17:09:29 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/ -2016-05-06 17:09:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:09:29 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:09:29 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 17:09:29 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 17:09:29 DEBUG MongoIO:77 - open mongo connection -2016-05-06 17:09:29 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 17:09:29 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:29 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:29 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:29 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8c1b4c5b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@729517ab, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a451652, socketFactory=javax.net.DefaultSocketFactory@2dbc6ef7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 17:09:29 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 17:09:29 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 17:09:29 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:333137}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:09:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:09:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1191041, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:29 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 17:09:29 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:29 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:29 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2206517}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:09:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:09:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=924700, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:29 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1956909}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1643891, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:29 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:29 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1620465}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:09:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:09:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1729780, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-06 17:09:29 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1956910}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1956910}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:29 DEBUG command:56 - Command execution completed -2016-05-06 17:09:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1956910}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:29 DEBUG command:56 - Command execution completed -2016-05-06 17:09:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1956910}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:29 DEBUG command:56 - Command execution completed -2016-05-06 17:09:29 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling -2016-05-06 17:09:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1956910}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:29 DEBUG command:56 - Command execution completed -2016-05-06 17:09:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1956910}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:29 DEBUG command:56 - Command execution completed -2016-05-06 17:09:29 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1956910}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:30 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:09:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-06 17:09:30 INFO WorkspaceExplorerServiceImpl:588 - getFormattedSize ByItemId 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 17:09:30 INFO WorkspaceExplorerServiceImpl:474 - get Size By ItemId 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 17:09:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:09:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:09:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:09:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:30 INFO WorkspaceExplorerServiceImpl:506 - get MimeType By ItemId 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 17:09:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:09:30 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-06 17:09:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-06 17:09:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:30 INFO WorkspaceExplorerServiceImpl:537 - Get user ACL to FOLDER id: 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 17:09:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:09:30 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:09:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:09:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:30 DEBUG query:56 - Query completed -2016-05-06 17:09:30 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-05-06 17:09:30 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2206517} -2016-05-06 17:09:30 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:333137} -2016-05-06 17:09:30 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1620465} -2016-05-06 17:09:30 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1956910}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 17:09:30 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1956910} -2016-05-06 17:09:30 INFO MongoIO:508 - Mongo has been closed -2016-05-06 17:09:30 INFO DefaultMongoClient:1329 - getFolderTotalVolume 96531 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling -2016-05-06 17:09:30 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling -2016-05-06 17:09:30 INFO WorkspaceExplorerServiceImpl:491 - returning size: 96531 -2016-05-06 17:09:30 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1956909} -2016-05-06 17:09:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:09:32 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 17:09:32 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:09:32 DEBUG DataMinerManagerServiceImpl:245 - retrieveTableInformation(): Item [id=8e60c918-6148-4c5b-9fd0-2dcefa90fa90, name=Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 18:11:30 CET 2016] -2016-05-06 17:09:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:39 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-06 17:09:39 INFO JCRServlets:267 - Servlet getItemById 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 17:09:39 INFO JCRServlets:267 - Servlet getItemById 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 17:09:39 INFO JCRServlets:267 - Servlet getItemById 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 17:09:39 INFO JCRServlets:267 - Servlet getItemById 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 17:09:39 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=e8663e07-6286-4212-920c-54dd7bbf205c, name=Max_Ent_Niche_Modelling, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 17:09:39 INFO WorkspaceExplorerServiceImpl:491 - returning size: 96531 -2016-05-06 17:09:39 DEBUG ServiceEngine:193 - get() - start -2016-05-06 17:09:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:09:39 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:09:39 DEBUG ServiceEngine:62 - path(String) - name: Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 17:09:39 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/ -2016-05-06 17:09:39 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 17:09:39 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-06 17:09:39 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-06 17:09:39 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 17:09:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:09:39 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:09:39 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 17:09:39 DEBUG Operation:173 - get(String) - start -2016-05-06 17:09:39 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 17:09:39 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 17:09:39 DEBUG MongoIO:77 - open mongo connection -2016-05-06 17:09:39 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 17:09:39 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:39 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:39 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:39 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8c1b4c5b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@729517ab, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a451652, socketFactory=javax.net.DefaultSocketFactory@2dbc6ef7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 17:09:39 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 17:09:39 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 17:09:39 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-06 17:09:39 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:333149}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1956927}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1302181, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1076547, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:39 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 17:09:39 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:39 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:39 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:39 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2206527}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1107049, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:39 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-06 17:09:39 DEBUG ItemBuilder:389 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-06 17:09:39 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1956930}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1956930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG command:56 - Command execution completed -2016-05-06 17:09:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1956930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1620476}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG command:56 - Command execution completed -2016-05-06 17:09:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1956930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1381755, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-06 17:09:39 DEBUG command:56 - Command execution completed -2016-05-06 17:09:39 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-06 17:09:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1956930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG command:56 - Command execution completed -2016-05-06 17:09:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1956930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG command:56 - Command execution completed -2016-05-06 17:09:39 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 17:09:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1956930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG command:56 - Command execution completed -2016-05-06 17:09:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1956930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG command:56 - Command execution completed -2016-05-06 17:09:39 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 17:09:39 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1956930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG query:56 - Query completed -2016-05-06 17:09:39 INFO MongoIO:186 - object found Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 17:09:39 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-06 17:09:39 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-06 17:09:39 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1956930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG update:56 - Update completed -2016-05-06 17:09:39 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1956930}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG query:56 - Query completed -2016-05-06 17:09:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-06 17:09:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-06 17:09:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-06 17:09:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-06 17:09:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-06 17:09:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-06 17:09:39 INFO JCRServlets:267 - Servlet getItemById 8e60c918-6148-4c5b-9fd0-2dcefa90fa90 -2016-05-06 17:09:39 INFO JCRWorkspaceItem:998 - get PublicLink for item: Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 17:09:39 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-06 17:09:39 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-06 17:09:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:09:39 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:09:39 DEBUG ServiceEngine:62 - path(String) - name: Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 17:09:39 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/ -2016-05-06 17:09:39 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-06 17:09:39 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-06 17:09:39 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-06 17:09:39 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-06 17:09:39 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-06 17:09:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-06 17:09:39 DEBUG BucketCoding:42 - coding name done -2016-05-06 17:09:39 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-06 17:09:39 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-06 17:09:39 DEBUG MongoIO:77 - open mongo connection -2016-05-06 17:09:39 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-06 17:09:39 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:39 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:39 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:39 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8c1b4c5b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@729517ab, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1a451652, socketFactory=javax.net.DefaultSocketFactory@2dbc6ef7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-06 17:09:39 INFO MongoIO:106 - new mongo connection pool opened -2016-05-06 17:09:39 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-06 17:09:39 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1956931}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2043724, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:39 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-06 17:09:39 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:39 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-06 17:09:39 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:39 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2206528}] to mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=901995, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:39 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:333151}] to mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=922934, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-06 17:09:39 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1956933}] to mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1956933}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG command:56 - Command execution completed -2016-05-06 17:09:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1956933}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG command:56 - Command execution completed -2016-05-06 17:09:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1956933}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG command:56 - Command execution completed -2016-05-06 17:09:39 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 17:09:39 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 17:09:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1956933}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1620477}] to mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG command:56 - Command execution completed -2016-05-06 17:09:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1956933}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 DEBUG command:56 - Command execution completed -2016-05-06 17:09:39 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 17:09:39 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1956933}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2162871, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-06 17:09:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-06 17:09:39 DEBUG query:56 - Query completed -2016-05-06 17:09:39 INFO MongoIO:186 - object found Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 17:09:39 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2206528} -2016-05-06 17:09:39 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:333151} -2016-05-06 17:09:39 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1956933}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 17:09:39 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1620477} -2016-05-06 17:09:39 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1956933} -2016-05-06 17:09:39 INFO MongoIO:508 - Mongo has been closed -2016-05-06 17:09:39 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1956931} -2016-05-06 17:09:39 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Max_Ent_Niche_Modelling/Latimeria_chalumnae_scientific_name_occurrences_from_OBISGBIF_-_CSV_STANDARD.csv -2016-05-06 17:09:39 INFO Operation:55 - URL generated: smp://data-d.d4science.org/mVHKwdH+VOfVW2bfDjeAkGie6DAgHZc0GmbP5+HKCzc= -2016-05-06 17:09:39 INFO Operation:57 - URL generated: smp://data-d.d4science.org/mVHKwdH+VOfVW2bfDjeAkGie6DAgHZc0GmbP5+HKCzc= -2016-05-06 17:09:39 DEBUG Operation:87 - translating: http://data-d.d4science.org/mVHKwdH+VOfVW2bfDjeAkGie6DAgHZc0GmbP5+HKCzc= -2016-05-06 17:09:39 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-06 17:09:39 DEBUG Operation:93 - get params: http://data-d.d4science.org/ mVHKwdH+VOfVW2bfDjeAkGie6DAgHZc0GmbP5+HKCzc= -2016-05-06 17:09:39 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/bVZIS3dkSCtWT2ZWVzJiZkRqZUFrR2llNkRBZ0haYzBHbWJQNStIS0N6Yz0 -2016-05-06 17:09:39 INFO Operation:65 - URL translated: http://data-d.d4science.org/bVZIS3dkSCtWT2ZWVzJiZkRqZUFrR2llNkRBZ0haYzBHbWJQNStIS0N6Yz0 -2016-05-06 17:09:49 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-06 17:09:49 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-06 17:09:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-06 17:09:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-06 17:09:49 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-06 17:09:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-06 17:09:49 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-06 17:09:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-06 17:09:53 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2206527} -2016-05-06 17:09:53 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1956930}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-06 17:09:53 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1956930} -2016-05-06 17:09:53 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:333149} -2016-05-06 17:09:53 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1956927} -2016-05-06 17:09:53 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1620476} -2016-05-06 17:09:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:09:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 17:10:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:10:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 17:10:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:10:13 DEBUG DataMinerManagerServiceImpl:135 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[ObjectParameter [type=java.lang.String, defaultValue=maxent_, value=maxent_, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:maxent_], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=generic_species, value=Latimeria, name=SpeciesName, description=The name of the species to model and the occurrence records refer to [Min N. of Entries:1; Max N. of Entries:1; default:generic_species], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1000, value=1000, name=MaxIterations, description=The number of learning iterations of the MaxEnt algorithm [Min N. of Entries:1; Max N. of Entries:1; default:1000], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=0.5, name=DefaultPrevalence, description=A priori probability of presence at ordinary occurrence points [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], TabularParameter [tableName=http://data-d.d4science.org/bVZIS3dkSCtWT2ZWVzJiZkRqZUFrR2llNkRBZ0haYzBHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN], Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN], ObjectParameter [type=java.lang.Double, defaultValue=1, value=1.0, name=XResolution, description=Model projection resolution on the X axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=1, value=1.0, name=YResolution, description=Model projection resolution on the Y axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ListParameter [type=java.lang.String, value=fc9ac2f4-a2bd-43d1-a361-ac67c5ceac31, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ObjectParameter [type=java.lang.Double, defaultValue=0, value=0.0, name=Z, description=Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=0, name=TimeIndex, description=Time Index. The default is the first time indexed in the input environmental datasets [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]], hasImage=false]] -2016-05-06 17:10:13 DEBUG WPS2SM:300 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-06 17:10:13 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:10:13 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:10:13 DEBUG WPS2SM:100 - Guessed default value: maxent_ -2016-05-06 17:10:13 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The name of the table to produce -2016-05-06 17:10:13 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OutputTableLabel -2016-05-06 17:10:13 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:10:13 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=maxent_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:maxent_], typology=OBJECT] -2016-05-06 17:10:13 DEBUG WPS2SM:300 - Conversion to SM Type->SpeciesName is a Literal Input -2016-05-06 17:10:13 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:10:13 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:10:13 DEBUG WPS2SM:100 - Guessed default value: generic_species -2016-05-06 17:10:13 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The name of the species to model and the occurrence records refer to -2016-05-06 17:10:13 DEBUG WPS2SM:340 - Conversion to SM Type->Name:SpeciesName -2016-05-06 17:10:13 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:10:13 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=generic_species, value=null, name=SpeciesName, description=The name of the species to model and the occurrence records refer to [Min N. of Entries:1; Max N. of Entries:1; default:generic_species], typology=OBJECT] -2016-05-06 17:10:13 DEBUG WPS2SM:300 - Conversion to SM Type->MaxIterations is a Literal Input -2016-05-06 17:10:13 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:10:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 17:10:13 DEBUG WPS2SM:100 - Guessed default value: 1000 -2016-05-06 17:10:13 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The number of learning iterations of the MaxEnt algorithm -2016-05-06 17:10:13 DEBUG WPS2SM:340 - Conversion to SM Type->Name:MaxIterations -2016-05-06 17:10:13 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:10:13 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1000, value=null, name=MaxIterations, description=The number of learning iterations of the MaxEnt algorithm [Min N. of Entries:1; Max N. of Entries:1; default:1000], typology=OBJECT] -2016-05-06 17:10:13 DEBUG WPS2SM:300 - Conversion to SM Type->DefaultPrevalence is a Literal Input -2016-05-06 17:10:13 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:10:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 17:10:13 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-06 17:10:13 DEBUG WPS2SM:339 - Conversion to SM Type->Title:A priori probability of presence at ordinary occurrence points -2016-05-06 17:10:13 DEBUG WPS2SM:340 - Conversion to SM Type->Name:DefaultPrevalence -2016-05-06 17:10:13 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:10:13 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=DefaultPrevalence, description=A priori probability of presence at ordinary occurrence points [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-06 17:10:13 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencesTable is a Complex Input -2016-05-06 17:10:13 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-06 17:10:13 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-06 17:10:13 DEBUG WPS2SM:208 - Default Schema: null -2016-05-06 17:10:13 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-06 17:10:13 DEBUG WPS2SM:339 - Conversion to SM Type->Title:A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] -2016-05-06 17:10:13 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencesTable -2016-05-06 17:10:13 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:10:13 DEBUG SClient4WPS:683 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-06 17:10:13 DEBUG WPS2SM:300 - Conversion to SM Type->LongitudeColumn is a Literal Input -2016-05-06 17:10:13 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:10:13 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:10:13 DEBUG WPS2SM:100 - Guessed default value: decimallongitude -2016-05-06 17:10:13 DEBUG WPS2SM:129 - Machter title: The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude] -2016-05-06 17:10:13 DEBUG WPS2SM:130 - Machter find: true -2016-05-06 17:10:13 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrencesTable -2016-05-06 17:10:13 DEBUG WPS2SM:132 - Machter start: 40 -2016-05-06 17:10:13 DEBUG WPS2SM:133 - Machter end: 82 -2016-05-06 17:10:13 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-06 17:10:13 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrencesTable -2016-05-06 17:10:13 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The column containing longitude values [the name of a column from OccurrencesTable] -2016-05-06 17:10:13 DEBUG WPS2SM:340 - Conversion to SM Type->Name:LongitudeColumn -2016-05-06 17:10:13 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:10:13 DEBUG SClient4WPS:683 - InputParameter: Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN] -2016-05-06 17:10:13 DEBUG WPS2SM:300 - Conversion to SM Type->LatitudeColumn is a Literal Input -2016-05-06 17:10:13 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:10:13 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:10:13 DEBUG WPS2SM:100 - Guessed default value: decimallatitude -2016-05-06 17:10:13 DEBUG WPS2SM:129 - Machter title: The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude] -2016-05-06 17:10:13 DEBUG WPS2SM:130 - Machter find: true -2016-05-06 17:10:13 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrencesTable -2016-05-06 17:10:13 DEBUG WPS2SM:132 - Machter start: 39 -2016-05-06 17:10:13 DEBUG WPS2SM:133 - Machter end: 81 -2016-05-06 17:10:13 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-06 17:10:13 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrencesTable -2016-05-06 17:10:13 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The column containing latitude values [the name of a column from OccurrencesTable] -2016-05-06 17:10:13 DEBUG WPS2SM:340 - Conversion to SM Type->Name:LatitudeColumn -2016-05-06 17:10:13 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:10:13 DEBUG SClient4WPS:683 - InputParameter: Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN] -2016-05-06 17:10:13 DEBUG WPS2SM:300 - Conversion to SM Type->XResolution is a Literal Input -2016-05-06 17:10:13 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:10:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 17:10:13 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-06 17:10:13 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Model projection resolution on the X axis in decimal degrees -2016-05-06 17:10:13 DEBUG WPS2SM:340 - Conversion to SM Type->Name:XResolution -2016-05-06 17:10:13 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:10:13 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=XResolution, description=Model projection resolution on the X axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-06 17:10:13 DEBUG WPS2SM:300 - Conversion to SM Type->YResolution is a Literal Input -2016-05-06 17:10:13 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:10:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 17:10:13 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-06 17:10:13 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Model projection resolution on the Y axis in decimal degrees -2016-05-06 17:10:13 DEBUG WPS2SM:340 - Conversion to SM Type->Name:YResolution -2016-05-06 17:10:13 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:10:13 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=YResolution, description=Model projection resolution on the Y axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-06 17:10:13 DEBUG WPS2SM:300 - Conversion to SM Type->Layers is a Literal Input -2016-05-06 17:10:13 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:10:13 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:10:13 DEBUG WPS2SM:100 - Guessed default value: -2016-05-06 17:10:13 DEBUG WPS2SM:148 - Machter title: The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-06 17:10:13 DEBUG WPS2SM:149 - Machter find: true -2016-05-06 17:10:13 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-06 17:10:13 DEBUG WPS2SM:151 - Machter start: 501 -2016-05-06 17:10:13 DEBUG WPS2SM:152 - Machter end: 536 -2016-05-06 17:10:13 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-06 17:10:13 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-06 17:10:13 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) -2016-05-06 17:10:13 DEBUG WPS2SM:340 - Conversion to SM Type->Name:Layers -2016-05-06 17:10:13 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:10:13 DEBUG SClient4WPS:683 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-06 17:10:13 DEBUG WPS2SM:300 - Conversion to SM Type->Z is a Literal Input -2016-05-06 17:10:13 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:10:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 17:10:13 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-06 17:10:13 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer -2016-05-06 17:10:13 DEBUG WPS2SM:340 - Conversion to SM Type->Name:Z -2016-05-06 17:10:13 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:10:13 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-06 17:10:13 DEBUG WPS2SM:300 - Conversion to SM Type->TimeIndex is a Literal Input -2016-05-06 17:10:13 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:10:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 17:10:13 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-06 17:10:13 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Time Index. The default is the first time indexed in the input environmental datasets -2016-05-06 17:10:13 DEBUG WPS2SM:340 - Conversion to SM Type->Name:TimeIndex -2016-05-06 17:10:13 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:10:13 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=TimeIndex, description=Time Index. The default is the first time indexed in the input environmental datasets [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-06 17:10:13 DEBUG SClient4WPS:691 - UserInputs[key=OutputTableLabel, value=maxent_] -2016-05-06 17:10:13 DEBUG SClient4WPS:691 - UserInputs[key=SpeciesName, value=Latimeria] -2016-05-06 17:10:13 DEBUG SClient4WPS:691 - UserInputs[key=MaxIterations, value=1000] -2016-05-06 17:10:13 DEBUG SClient4WPS:691 - UserInputs[key=DefaultPrevalence, value=0.5] -2016-05-06 17:10:13 DEBUG SClient4WPS:691 - UserInputs[key=OccurrencesTable, value=http://data-d.d4science.org/bVZIS3dkSCtWT2ZWVzJiZkRqZUFrR2llNkRBZ0haYzBHbWJQNStIS0N6Yz0] -2016-05-06 17:10:13 DEBUG SClient4WPS:691 - UserInputs[key=LongitudeColumn, value=decimalLongitude] -2016-05-06 17:10:13 DEBUG SClient4WPS:691 - UserInputs[key=LatitudeColumn, value=decimalLatitude] -2016-05-06 17:10:13 DEBUG SClient4WPS:691 - UserInputs[key=XResolution, value=1.0] -2016-05-06 17:10:13 DEBUG SClient4WPS:691 - UserInputs[key=YResolution, value=1.0] -2016-05-06 17:10:13 DEBUG SClient4WPS:691 - UserInputs[key=Layers, value=fc9ac2f4-a2bd-43d1-a361-ac67c5ceac31] -2016-05-06 17:10:13 DEBUG SClient4WPS:691 - UserInputs[key=Z, value=0.0] -2016-05-06 17:10:13 DEBUG SClient4WPS:691 - UserInputs[key=TimeIndex, value=0] -2016-05-06 17:10:13 DEBUG SClient4WPS:727 - Configuring Literal: OutputTableLabel to: maxent_ -2016-05-06 17:10:13 DEBUG SClient4WPS:727 - Configuring Literal: SpeciesName to: Latimeria -2016-05-06 17:10:13 DEBUG SClient4WPS:727 - Configuring Literal: MaxIterations to: 1000 -2016-05-06 17:10:13 DEBUG SClient4WPS:727 - Configuring Literal: DefaultPrevalence to: 0.5 -2016-05-06 17:10:13 DEBUG SClient4WPS:744 - Configuring Complex: OccurrencesTable to: http://data-d.d4science.org/bVZIS3dkSCtWT2ZWVzJiZkRqZUFrR2llNkRBZ0haYzBHbWJQNStIS0N6Yz0 -2016-05-06 17:10:13 DEBUG SClient4WPS:727 - Configuring Literal: LongitudeColumn to: decimalLongitude -2016-05-06 17:10:13 DEBUG SClient4WPS:727 - Configuring Literal: LatitudeColumn to: decimalLatitude -2016-05-06 17:10:13 DEBUG SClient4WPS:727 - Configuring Literal: XResolution to: 1.0 -2016-05-06 17:10:13 DEBUG SClient4WPS:727 - Configuring Literal: YResolution to: 1.0 -2016-05-06 17:10:13 DEBUG SClient4WPS:727 - Configuring Literal: Layers to: fc9ac2f4-a2bd-43d1-a361-ac67c5ceac31 -2016-05-06 17:10:13 DEBUG SClient4WPS:727 - Configuring Literal: Z to: 0.0 -2016-05-06 17:10:13 DEBUG SClient4WPS:727 - Configuring Literal: TimeIndex to: 0 -2016-05-06 17:10:13 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 17:10:13 DEBUG SClient4WPS:388 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - - - OutputTableLabel - - maxent_ - - - - SpeciesName - - Latimeria - - - - MaxIterations - - 1000 - - - - DefaultPrevalence - - 0.5 - - - - OccurrencesTable - - - - LongitudeColumn - - decimalLongitude - - - - LatitudeColumn - - decimalLatitude - - - - XResolution - - 1.0 - - - - YResolution - - 1.0 - - - - Layers - - fc9ac2f4-a2bd-43d1-a361-ac67c5ceac31 - - - - Z - - 0.0 - - - - TimeIndex - - 0 - - - - - - - ASCII Maps of the environmental layers for checking features aligments - - - OutputTable7 - - - non_deterministic_output - - - - -2016-05-06 17:10:13 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-06 17:10:13 DEBUG SClient4WPS:415 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f -2016-05-06 17:10:13 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 17:10:13 DEBUG SClient4WPS:787 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f -2016-05-06 17:10:13 DEBUG SClient4WPS:697 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f -2016-05-06 17:10:13 DEBUG SClient4WPS:708 - ComputationId: ComputationId [id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f] -2016-05-06 17:10:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:10:23 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:10:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:10:23 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f] -2016-05-06 17:10:23 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 17:10:23 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 17:10:23 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f -2016-05-06 17:10:23 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:10:23 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 17:10:23 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 17:10:23 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - - - -2016-05-06 17:10:23 DEBUG SClient4WPS:889 - WPS STATUS:0.0 -2016-05-06 17:10:23 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=0.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-06 17:10:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:10:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-06 17:10:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:10:33 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f] -2016-05-06 17:10:33 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 17:10:33 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 17:10:33 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f -2016-05-06 17:10:33 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:10:33 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 17:10:33 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 17:10:33 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - - - -2016-05-06 17:10:33 DEBUG SClient4WPS:889 - WPS STATUS:30.0 -2016-05-06 17:10:33 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=30.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-06 17:10:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:10:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 17:10:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:10:43 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f] -2016-05-06 17:10:43 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 17:10:43 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 17:10:43 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f -2016-05-06 17:10:43 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:10:43 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 17:10:43 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 17:10:43 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - - - -2016-05-06 17:10:43 DEBUG SClient4WPS:889 - WPS STATUS:30.0 -2016-05-06 17:10:43 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=30.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-06 17:10:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-06 17:10:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-06 17:10:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:10:53 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f] -2016-05-06 17:10:53 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 17:10:53 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 17:10:53 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f -2016-05-06 17:10:53 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:10:53 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 17:10:53 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 17:10:53 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - - - -2016-05-06 17:10:53 DEBUG SClient4WPS:889 - WPS STATUS:80.0 -2016-05-06 17:10:53 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=80.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-06 17:10:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:10:54 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:11:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:11:03 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-06 17:11:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:11:03 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f] -2016-05-06 17:11:03 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 17:11:03 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 17:11:03 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f -2016-05-06 17:11:03 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:11:03 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 17:11:03 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 17:11:03 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - Process successful - - - - ASCII Maps of the environmental layers for checking features aligments - ASCII Maps of the environmental layers for checking features aligments - - _______________________________________________ __ ____ ______________________________________ _______________ - - - - - - -_______________________ _____ __ _ _ _ _____ ___________________________________________________________________________ ______ ___ __ ____ ___ ___________________________________________________ -_____________________ _____ ___ __ _ _ __ _____ ___ __ _ ______________________________________________________________ _ ____ ____________________________________________________ -________________ _____ ______ _ _____ _ ____________ _____ _______________________________________________________ _______ _ ____________________________________________________ -______________________ ______ _____ __ ______________ ____ _______________________________________________ _________ __________ _ __ ___________________________________________________ -__________________ __ _ ____ ____ ___ ______ __ ____ ____ _ _ _____________________________________ _ ________ _______________ _ ________________________________________________ -__________________ __ _____ _ _ ___ ___ _ ______ _________ _ __ _ ____________________________________ __________ _____________ ______________ _______________________________ -___________________ _ ____ _ _ ___ ___ __ _____ ___ __ ___ __ _________________________________ ____________ ___________ _________ ________________________________ -____________________ ______ _ ___ ______________ ___ __ ___ _ ____ _ _____________________________________________ ________ _______ _________________________________ -_________________________ __ _ _ ______ ____ ___________ __ __ _ ______________________________________________ __________ _____ _________________________________ -________________________ _______ __ _ ___ _ ___ __ __ _ _________________________________________________ _____ _______________________________________ -___________________________ ________ __ __________ __ ______ _ __ _______________________________________ ______ ____________________________________ -____________________________ ______ _____ _____ __ _ ____ ____ _______________ ____________________________ _ _____________________________________ -_____________________________________ _____ _ ___ ______ ________ __ ___________ _____________________________ ___________________________________ -____________________________________ ____ _ _ ___________ _________ _______________________ _ ____________________________________ -___________________________________ _____ _ ________ ___________ ____________________________ ________________________________________ -________________________________ ____ _ __________ _______________ ________________________ __ ________________________________________ -_______________________________ ___ _ _____________ _ _________________________________________ ______________________________________ -_______________________________ ___ __ _____________ _____________________________________________ ______________________________________ -_____________________________ _ _ ______________ ___________________________________ __ _______ ________________________ -_____________________________ ____ _ ____________ _ ____________________________ _ _ ______ _______________________ -__________________________ _ _ _______ ___________ ____________________________ __ ____________ ____________________ -______________________ _ _ ________ _ __________ __________________________ ______ __ ______ _________________________ -_______________ ______ _________ _ _________ __________________________ __ _ ___ _________________________ -____________ _________ ____________ _____________ __________________________ ______________________ -___________ ___________ __________ ___________ __________________________ ______________________ -__________ ________________ ___ __ ________ _ __________________________ ______________ __ -__________ ______________ ______ _ __________ _ __________________________ ___ ________________ -________ ____________________ ___ _ _______ ___________________________ ___ _ ___ ____ -___________ __________________ ________ _ ________ _____________________________ _ _ _ - ___________ ____________________ _____ ___________ __________________________________ __ - _ __ __________________ __ _ ___________ ___________________________________ ___ __ - ____ _________________ ___ _____________ _____________ ____________________ ____ __ _ -___ __________ _________________ __________________ ______________ _________________ ________ __ -____________ _ _ ______________ _________________ _______________ _________________ _____ ____ -____________ _ __________ ____________ ___________________ __________________ ____________________ ____ __ ___ -____________ _ _____________ _ ____________ ____ ______________ ________________________________________ _______ _ __ -_____________ __ _______________ ___________ __ ______________ _ ___________________________________ _____ _ __ ___ _ ______ -___________ ___ ____________________ _______ __ ________________ ___________________________________________ __ _____ __ _______ ________ -________________ ___ _ ___________________ _ ______ ________________________________________________________________ _ ____ __________ _____ ________________ -____________________ _ ________________________ ___ __________________________________________________ _ ___________ __ _____ ___________________ ________________ -___________________ _________________________ _ ___ __________________________________________________ _________ _____ __________________ ________________ -_________________ ___________________________ ___ __ ___________________________________________________ ___________ ___ _ __ ________________ ________________ -________________ __________________________________ ___ _________________________________________________ __________ __________________ _________________ -____________________________________________________ __ _____________________________________________ __ ______ ______________ ___ _____________ -____________ ______________________________________ ___________________________________________ _ ___ ____________ ____________________ -_____________________________________________________ _ ____________________________________________ __ __ _ ____________ _____________________ -_______________________________________________________ __ ___________________________________________ _____ _ _ ____________ _____________________ -_______________________________________________________ ____ _____ _________________________________________________ ____ _ ___________ _______________________ -________________________________________________________ _ ______ __________________________________________________ ___ __ ____________________________________ -________________________________________________________ ______ _______________________________________________ ___ __ ________________________________________ -________________________________________________________ ____ ______ _________________________________________________ __________ ___ ____________________________________ -________________________________________________________ __ __________________________________________________________ _ ____________ __________________________________________ -________________________________________________________ _ _____________________________________________________________ ___ _____________ _____ _____________________________________ -________________________________________________________ ____ ______________________________________________________________ ___ ____ ______________ _______ ___________________________________ -________________________________________________________ _____________________________________________________________ ________ _____ ___ _ __________ ____________________________________ -________________________________________________________ _____________________________________________________________ __________ __ __ __ _ __________ _______________________________________ -_________________________________________________________ ________________________________________________________________ _______ ______ ___ ___ ___ __ ____________ ______________________________________ -_________________________________________________________ __________________________________________________________________ ________ ______ ____ ___ _______ ____________ ______________________________________ -__________________________________________________________ _______________________________________________ ___________________ _____________ ______ ____ _ _____ __________ _______________________________________ -___________________________________________________________ ___________________________________________________________________ ________ _ ____________ ______ _ __ _____ _________ _______________________________________ -___________________________________________________________ ___________________________________________________________________________ _________________________ _______ _______ _______________________________________ -____________________________________________________________ _______________________________________________________________________ _________________________ ______ ____ _ _ __________________________________________ -_______________________________________________________________ ________________________________________________________________________ ________________________ _____ ___ _______________________________________________ -________________________________________________________________ _______________________________________________________________________ ____ ___________ __________ _________________________________________________ -________________________________________________________________ _ _______________________________________________________________________ __ _ __________________________________________________________ -_________________________________________________________________ _ ___ ______ _______________________________________________________________________ ___ __________________________________________________________ -__________________________________________________________________ _ ______________ _______________________________________________________________ _____ _ ___ ___________________________________________________________ -___________________________________________________________________ __ _______________ ___________________________________________________________________ __ ____ _ ____________________________________________________________ -____________________________________________________________________ __ ________________ __________________________________________________________________ __ ____ __ _____________________________________________________________ -_____________________________________________________________________ ___ __________________________________________________________________________________ __ __ ___________ __ __ ________________________________________________________ -__________________________________________________________________________ ______________ _______________________________________________________________ ___ _________ ____ ___________________________________________________________ -______________________ ____________________________________________________ _________ ___ ____ ___________________________________________________________ __ __________ _ _____ __ _____________________________________________________________________ -___________________________________________________________________________ ______ __________ __________________________________________________________ ____ _______________ _______ __________________________________________________________________________ -_____________________________________________________________________________ _ __________ ___ _ _ _________________________________________________ ____ ________________ __________ ___ __________ ___________________________________________________________ -________________________________________________________________________________ ________________________________________________________________________ __ _ ___________________ ____________ _____________ __________________________________________________________ -_______________________________________________________________________________________ ____________________________________________________________________ ___ _____________________ _ _________________ ____________ ___________________________________________________________ -_________________________________________________________________________________________ __________________________________________________________________ _ ________________________ _ __________________ ___________ _________________________________________________________ -_____________________________________________________________________________________________ _____________ _____________________________________________________ _ ____________________________ __ ____________ _____ _ _______________________________________________________________________ -_______________________________________________________________________________________________ _________ _ _____________________________________________________ ____ ______________________ ___ __________________ ____ ______________ _ _________________________________________ __ __________ -________________________________________________________________________________________________ _______ ________________________________________________ ______________________ ___ ___________________ ______ ____________ ___ _________________________________________________________ -__________________________________________________________________________________________________ __ ______________________________________________ _______________________ ____ __ _________________ _______________________ ______________________________________________________ -_______________________________________________________________________________________________________ ______________________________________________ ________________________ _______ __________________ _______________ _______ _______________________________________________________ -_______________________________________________________________________________________________________ ___________________________________________ ____ _______ ________________________ ______________________ __ ____________ _____________________________________________________________ -_______________________________________________________________________________________________________ _____________________________________________________________ __________________________ ________________________ __ __________ _______________________________________________________________ -______________________________________________________________________________________________________ ____________________________________________________________ ___________________________ _________________________ _ _______ _________ ____________________________________________________ -____________________________________________________________________________________________________ ____________________________________________________________ _____________________________ __________________________ ______ ___ ___ ____________________________________________________ -____________________________________________________________________________________________________ _______________________________________________________ _______________________________ _________________________ _ _____ __ _ _______ ______________________________________________ -____________________________________________________________________________________________________ _____________________________________________________ ________________________________ ____________________________ ____ ___ ___________ __ ________________________________________ -____________________________________________________________________________________________________ __________________________________________________ _________________________________ _____________________________ ________ ____ _ ____________ ________ ___________________________ -____________________________________________________________________________________________________ _______________________________________________ __________________________________ _______________________________ _____________ __ _______________ ____ __ _________________________ -_____________________________________________________________________________________________________ ________________________________________________ _________________________________ _________________________________ ________________________ _________ _______________________ -______________________________________________________________________________________________________ _________________________________________________ _________________________________ __________________________________________ ___ _____________ ___ ____________ ___________________ -______________________________________________________________________________________________________ __________________________________________________ _________________________________ _______________________________________________ __ ________________________ ______________________________ -_______________________________________________________________________________________________________ ___________________________________________________ __ _____________________________ _________________________________________________________ _ _________ _____________________________________ -________________________________________________________________________________________________________ ____________________________________________________ ________ _______________________ _________________________________________________________ _____ _____________________________________ -_________________________________________________________________________________________________________ ____________________________________________________ _______ _______________________ ____________________________________________________ _ ______ ___________________________________ -__________________________________________________________________________________________________________ ___________________________________________________ _____ _______________________ ___________________________________________________ ____ ___________________________________ -_____________________________________________________________________________________________________________ ___________________________________________________ ______ _______________________ _________________________________________________ __ __________________________________ -______________________________________________________________________________________________________________ ____________________________________________________ _________ ________________________ ________________________________________________ __________________________________ -______________________________________________________________________________________________________________ ______________________________________________________ _________ ________________________ _____________________________________________ _______________________________ -______________________________________________________________________________________________________________ _______________________________________________________ ________ _________________________ _________________________________________ _______________________________ -______________________________________________________________________________________________________________ ___________________________________________________________ ________ _________________________ _________________________________________ _____________________________ -______________________________________________________________________________________________________________ ______________________________________________________________ _________ __________________________ ________________________________________ ____________________________ -______________________________________________________________________________________________________________ _______________________________________________________________ ________________________________________ _________________________________________ ___________________________ -______________________________________________________________________________________________________________ ________________________________________________________________ ________________________________________ _________________________________________ ___________________________ -_____________________________________________________________________________________________________________ __________________________________________________________________ _________________________________________ _________________________________________ ___________________________ -_____________________________________________________________________________________________________________ ___________________________________________________________________ __________________________________________ __________________________________________ ___________________________ -_____________________________________________________________________________________________________________ _____________________________________________________________________ ___________________________________________ __________________________________________ ___________________________ -_____________________________________________________________________________________________________________ ______________________________________________________________________ _____________________________________________ __________________________________________ _________ ____________________________ -_____________________________________________________________________________________________________________ ________________________________________________________________________ ________________________________________________ __________________________________________ ________________ _ _____________________________ -____________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ _________________________________________________________________ _______________________ ______ -____________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________ ___________________________________________________________________ ________________________ _____ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ ___________________________________________________________________ __________________________ ____ -___________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________ __ -___________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ ___ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ _______________________________________________________________________ ________________________ ____ -__________________________________________________________________________________________________________ _ ________________________________________________________________________________________________________________________________________ ________________________________________________________________________ _______________________ _______ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ _________________________________________________________________________ ______________________ _______ -__________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________ _________ -__________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________ __________ -__________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ ________ ___________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -___________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -___________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_______________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_______________________________________________________________________________________________________________________ _ _________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -____________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________ ______________________ ___________________________________ _____________________________________________ -__________________________________________________________________________________________________________________ _ _____________________________________________________________________________________________________________________________________ ______________________ ________ _____________________ _____________________________________________ -__________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________ ________________ ________ _ ______ ___ _ _______ ____ __________________________________________ -________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________ _ _______________ _________ ____________________________________ -_______________________________________________________________________________________________________________ _ ___________________________________________________________________________________________________________ _ ________ ________ ___________________________________ -_________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ ___ ______ ________________________________ -_________________________________________________________________________________________________________________ ______________________________________________________________________________________________ ______ _ _____ _________________________ -____________________________________________________________________________________________________________ __ ___________________________________________________________________________________________ ____ ____ _______________________ -____________________________________________________________________________________________________________ _ ___________________________________________________________________________ ___________ ____________________ -__________________________________________________________________________________________________________ _______________________________________________________ _________________ -_________________________________________________________________________________________________________ ___________________________________________________ ____________ -___________________________________________________________________________________________________________ ________________________________________________ ___________ -_________________________________________________________________________________ _______________________ ________________________________________________ _________ -______________________________________________________________________________ ______________________ ______________________________________________ __________ -_____________________________________________________________________________ __________ ___ ____________________________________________ __________ -_____________________________________________________________________________ _____ ________________________________________ ___________ -_____________________________________________________ ______________ ______ __ _________________________________________ _____________ -_____________________________________________________ _ _ ____ ______ _________________________________________ ______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ - - - - OutputTable7 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - id,csquarecode,x,y,z,time,fvalue -1,5918:100,-180,-90,0,0,0.0749916 -2,5917:209,-179,-90,0,0,0.0750201 -3,5917:208,-178,-90,0,0,0.0750201 -4,5917:207,-177,-90,0,0,0.0750416 -5,5917:206,-176,-90,0,0,0.0750488 -6,5917:205,-175,-90,0,0,0.0750558 -7,5917:104,-174,-90,0,0,0.0750702 -8,5917:103,-173,-90,0,0,0.0750773 -9,5917:102,-172,-90,0,0,0.0750843 -10,5917:101,-171,-90,0,0,0.0750843 -11,5917:100,-170,-90,0,0,0.0750915 -12,5916:209,-169,-90,0,0,0.0750987 -13,5916:208,-168,-90,0,0,0.0751059 -14,5916:207,-167,-90,0,0,0.0751128 -15,5916:206,-166,-90,0,0,0.0751059 -16,5916:205,-165,-90,0,0,0.0751059 -17,5916:104,-164,-90,0,0,0.0751059 -18,5916:103,-163,-90,0,0,0.0751128 -19,5916:102,-162,-90,0,0,0.0751128 -20,5916:101,-161,-90,0,0,0.07512 -21,5916:100,-160,-90,0,0,0.0751344 -22,5915:209,-159,-90,0,0,0.0751416 -23,5915:208,-158,-90,0,0,0.0751558 -24,5915:207,-157,-90,0,0,0.0751486 -25,5915:206,-156,-90,0,0,0.0751558 -26,5915:205,-155,-90,0,0,0.075163 -27,5915:104,-154,-90,0,0,0.0751486 -28,5915:103,-153,-90,0,0,0.075163 -29,5915:102,-152,-90,0,0,0.0751558 -30,5915:101,-151,-90,0,0,0.0751416 -31,5915:100,-150,-90,0,0,0.0751416 -32,5914:209,-149,-90,0,0,0.0751344 -33,5914:208,-148,-90,0,0,0.0751344 -34,5914:207,-147,-90,0,0,0.0751272 -35,5914:206,-146,-90,0,0,0.07512 -36,5914:205,-145,-90,0,0,0.07512 -37,5914:104,-144,-90,0,0,0.0751128 -38,5914:103,-143,-90,0,0,0.07512 -39,5914:102,-142,-90,0,0,0.0751128 -40,5914:101,-141,-90,0,0,0.0751128 -41,5914:100,-140,-90,0,0,0.07512 -42,5913:209,-139,-90,0,0,0.07512 -43,5913:208,-138,-90,0,0,0.0751272 -44,5913:207,-137,-90,0,0,0.07527 -45,5913:206,-136,-90,0,0,0.0758155 -46,5913:205,-135,-90,0,0,0.0776421 -47,5913:104,-134,-90,0,0,0.0779001 -48,5911:100,-110,-90,0,0,0.0832649 -49,5910:209,-109,-90,0,0,0.0880188 -50,5910:206,-106,-90,0,0,0.0759162 -51,5910:205,-105,-90,0,0,0.0753775 -52,5910:104,-104,-90,0,0,0.0768514 -53,5910:103,-103,-90,0,0,0.0810109 -54,5906:101,-61,-90,0,0,0.0753489 -55,5906:100,-60,-90,0,0,0.075163 -56,5905:209,-59,-90,0,0,0.0750201 -57,5905:208,-58,-90,0,0,0.074949 -58,5905:207,-57,-90,0,0,0.0749346 -59,5905:206,-56,-90,0,0,0.0749275 -60,5905:205,-55,-90,0,0,0.0749346 -61,5905:104,-54,-90,0,0,0.0749346 -62,5905:103,-53,-90,0,0,0.0749418 -63,5905:102,-52,-90,0,0,0.0749562 -64,5905:101,-51,-90,0,0,0.0749631 -65,5905:100,-50,-90,0,0,0.0749631 -66,5904:209,-49,-90,0,0,0.0749631 -67,5904:208,-48,-90,0,0,0.074949 -68,5904:207,-47,-90,0,0,0.0749703 -69,5904:206,-46,-90,0,0,0.0749988 -70,5904:205,-45,-90,0,0,0.0750273 -71,5904:104,-44,-90,0,0,0.0750201 -72,5904:103,-43,-90,0,0,0.0750201 -73,5904:102,-42,-90,0,0,0.0750131 -74,5904:101,-41,-90,0,0,0.0750201 -75,5904:100,-40,-90,0,0,0.0750345 -76,5903:209,-39,-90,0,0,0.0750345 -77,5903:208,-38,-90,0,0,0.0750345 -78,5903:207,-37,-90,0,0,0.0750345 -79,5903:206,-36,-90,0,0,0.0750345 -80,5903:205,-35,-90,0,0,0.0750416 -81,5903:104,-34,-90,0,0,0.0750345 -82,5903:103,-33,-90,0,0,0.0750345 -83,5903:102,-32,-90,0,0,0.0750416 -84,5903:101,-31,-90,0,0,0.0750488 -85,5903:100,-30,-90,0,0,0.0750488 -86,5902:209,-29,-90,0,0,0.0750488 -87,5902:208,-28,-90,0,0,0.0750345 -88,5902:207,-27,-90,0,0,0.0750201 -89,5902:206,-26,-90,0,0,0.0761183 -90,5902:205,-25,-90,0,0,0.0756715 -91,5902:104,-24,-90,0,0,0.0789397 -92,3916:206,166,-90,0,0,0.0752487 -93,3916:207,167,-90,0,0,0.075063 -94,3916:208,168,-90,0,0,0.0749846 -95,3916:209,169,-90,0,0,0.074899 -96,3917:100,170,-90,0,0,0.074892 -97,3917:101,171,-90,0,0,0.0748777 -98,3917:102,172,-90,0,0,0.0807894 -99,3917:103,173,-90,0,0,0.0878209 -100,3917:104,174,-90,0,0,0.087558 -101,3917:205,175,-90,0,0,0.0873776 -102,3917:206,176,-90,0,0,0.0863183 -103,3917:207,177,-90,0,0,0.0752844 -104,3917:208,178,-90,0,0,0.0748849 -105,3917:209,179,-90,0,0,0.074949 -106,3918:100,180,-90,0,0,0.0749916 -107,5818:390,-180,-89,0,0,0.0749916 -108,5817:499,-179,-89,0,0,0.0750201 -109,5817:498,-178,-89,0,0,0.0750201 -110,5817:497,-177,-89,0,0,0.0750416 -111,5817:496,-176,-89,0,0,0.0750488 -112,5817:495,-175,-89,0,0,0.0750558 -113,5817:394,-174,-89,0,0,0.0750702 -114,5817:393,-173,-89,0,0,0.0750773 -115,5817:392,-172,-89,0,0,0.0750843 -116,5817:391,-171,-89,0,0,0.0750843 -117,5817:390,-170,-89,0,0,0.0750915 -118,5816:499,-169,-89,0,0,0.0750987 -119,5816:498,-168,-89,0,0,0.0751059 -120,5816:497,-167,-89,0,0,0.0751128 -121,5816:496,-166,-89,0,0,0.0751059 -122,5816:495,-165,-89,0,0,0.0751059 -123,5816:394,-164,-89,0,0,0.0751059 -124,5816:393,-163,-89,0,0,0.0751128 -125,5816:392,-162,-89,0,0,0.0751128 -126,5816:391,-161,-89,0,0,0.07512 -127,5816:390,-160,-89,0,0,0.0751344 -128,5815:499,-159,-89,0,0,0.0751416 -129,5815:498,-158,-89,0,0,0.0751558 -130,5815:497,-157,-89,0,0,0.0751486 -131,5815:496,-156,-89,0,0,0.0751558 -132,5815:495,-155,-89,0,0,0.075163 -133,5815:394,-154,-89,0,0,0.0751486 -134,5815:393,-153,-89,0,0,0.075163 -135,5815:392,-152,-89,0,0,0.0751558 -136,5815:391,-151,-89,0,0,0.0751416 -137,5815:390,-150,-89,0,0,0.0751416 -138,5814:499,-149,-89,0,0,0.0751344 -139,5814:498,-148,-89,0,0,0.0751344 -140,5814:497,-147,-89,0,0,0.0751272 -141,5814:496,-146,-89,0,0,0.07512 -142,5814:495,-145,-89,0,0,0.07512 -143,5814:394,-144,-89,0,0,0.0751128 -144,5814:393,-143,-89,0,0,0.07512 -145,5814:392,-142,-89,0,0,0.0751128 -146,5814:391,-141,-89,0,0,0.0751128 -147,5814:390,-140,-89,0,0,0.07512 -148,5813:499,-139,-89,0,0,0.07512 -149,5813:498,-138,-89,0,0,0.0751272 -150,5813:497,-137,-89,0,0,0.07527 -151,5813:496,-136,-89,0,0,0.0758155 -152,5813:495,-135,-89,0,0,0.0776421 -153,5813:394,-134,-89,0,0,0.0779001 -154,5811:390,-110,-89,0,0,0.0832649 -155,5810:499,-109,-89,0,0,0.0880188 -156,5810:496,-106,-89,0,0,0.0759162 -157,5810:495,-105,-89,0,0,0.0753775 -158,5810:394,-104,-89,0,0,0.0768514 -159,5810:393,-103,-89,0,0,0.0810109 -160,5806:391,-61,-89,0,0,0.0753489 -161,5806:390,-60,-89,0,0,0.075163 -162,5805:499,-59,-89,0,0,0.0750201 -163,5805:498,-58,-89,0,0,0.074949 -164,5805:497,-57,-89,0,0,0.0749346 -165,5805:496,-56,-89,0,0,0.0749275 -166,5805:495,-55,-89,0,0,0.0749346 -167,5805:394,-54,-89,0,0,0.0749346 -168,5805:393,-53,-89,0,0,0.0749418 -169,5805:392,-52,-89,0,0,0.0749562 -170,5805:391,-51,-89,0,0,0.0749631 -171,5805:390,-50,-89,0,0,0.0749631 -172,5804:499,-49,-89,0,0,0.0749631 -173,5804:498,-48,-89,0,0,0.074949 -174,5804:497,-47,-89,0,0,0.0749703 -175,5804:496,-46,-89,0,0,0.0749988 -176,5804:495,-45,-89,0,0,0.0750273 -177,5804:394,-44,-89,0,0,0.0750201 -178,5804:393,-43,-89,0,0,0.0750201 -179,5804:392,-42,-89,0,0,0.0750131 -180,5804:391,-41,-89,0,0,0.0750201 -181,5804:390,-40,-89,0,0,0.0750345 -182,5803:499,-39,-89,0,0,0.0750345 -183,5803:498,-38,-89,0,0,0.0750345 -184,5803:497,-37,-89,0,0,0.0750345 -185,5803:496,-36,-89,0,0,0.0750345 -186,5803:495,-35,-89,0,0,0.0750416 -187,5803:394,-34,-89,0,0,0.0750345 -188,5803:393,-33,-89,0,0,0.0750345 -189,5803:392,-32,-89,0,0,0.0750416 -190,5803:391,-31,-89,0,0,0.0750488 -191,5803:390,-30,-89,0,0,0.0750488 -192,5802:499,-29,-89,0,0,0.0750488 -193,5802:498,-28,-89,0,0,0.0750345 -194,5802:497,-27,-89,0,0,0.0750201 -195,5802:496,-26,-89,0,0,0.0761183 -196,5802:495,-25,-89,0,0,0.0756715 -197,5802:394,-24,-89,0,0,0.0789397 -198,3816:496,166,-89,0,0,0.0752487 -199,3816:497,167,-89,0,0,0.075063 -200,3816:498,168,-89,0,0,0.0749846 -201,3816:499,169,-89,0,0,0.074899 -202,3817:390,170,-89,0,0,0.074892 -203,3817:391,171,-89,0,0,0.0748777 -204,3817:392,172,-89,0,0,0.0807894 -205,3817:393,173,-89,0,0,0.0878209 -206,3817:394,174,-89,0,0,0.087558 -207,3817:495,175,-89,0,0,0.0873776 -208,3817:496,176,-89,0,0,0.0863183 -209,3817:497,177,-89,0,0,0.0752844 -210,3817:498,178,-89,0,0,0.0748849 -211,3817:499,179,-89,0,0,0.074949 -212,3818:390,180,-89,0,0,0.0749916 -213,5818:380,-180,-88,0,0,0.0749916 -214,5817:489,-179,-88,0,0,0.0750201 -215,5817:488,-178,-88,0,0,0.0750201 -216,5817:487,-177,-88,0,0,0.0750416 -217,5817:486,-176,-88,0,0,0.0750488 -218,5817:485,-175,-88,0,0,0.0750558 -219,5817:384,-174,-88,0,0,0.0750702 -220,5817:383,-173,-88,0,0,0.0750773 -221,5817:382,-172,-88,0,0,0.0750843 -222,5817:381,-171,-88,0,0,0.0750843 -223,5817:380,-170,-88,0,0,0.0750915 -224,5816:489,-169,-88,0,0,0.0750987 -225,5816:488,-168,-88,0,0,0.0751059 -226,5816:487,-167,-88,0,0,0.0751128 -227,5816:486,-166,-88,0,0,0.0751059 -228,5816:485,-165,-88,0,0,0.0751059 -229,5816:384,-164,-88,0,0,0.0751059 -230,5816:383,-163,-88,0,0,0.0751128 -231,5816:382,-162,-88,0,0,0.0751128 -232,5816:381,-161,-88,0,0,0.07512 -233,5816:380,-160,-88,0,0,0.0751344 -234,5815:489,-159,-88,0,0,0.0751416 -235,5815:488,-158,-88,0,0,0.0751558 -236,5815:487,-157,-88,0,0,0.0751486 -237,5815:486,-156,-88,0,0,0.0751558 -238,5815:485,-155,-88,0,0,0.075163 -239,5815:384,-154,-88,0,0,0.0751486 -240,5815:383,-153,-88,0,0,0.075163 -241,5815:382,-152,-88,0,0,0.0751558 -242,5815:381,-151,-88,0,0,0.0751416 -243,5815:380,-150,-88,0,0,0.0751416 -244,5814:489,-149,-88,0,0,0.0751344 -245,5814:488,-148,-88,0,0,0.0751344 -246,5814:487,-147,-88,0,0,0.0751272 -247,5814:486,-146,-88,0,0,0.07512 -248,5814:485,-145,-88,0,0,0.07512 -249,5814:384,-144,-88,0,0,0.0751128 -250,5814:383,-143,-88,0,0,0.07512 -251,5814:382,-142,-88,0,0,0.0751128 -252,5814:381,-141,-88,0,0,0.0751128 -253,5814:380,-140,-88,0,0,0.07512 -254,5813:489,-139,-88,0,0,0.07512 -255,5813:488,-138,-88,0,0,0.0751272 -256,5813:487,-137,-88,0,0,0.07527 -257,5813:486,-136,-88,0,0,0.0758155 -258,5813:485,-135,-88,0,0,0.0776421 -259,5813:384,-134,-88,0,0,0.0779001 -260,5811:380,-110,-88,0,0,0.0832649 -261,5810:489,-109,-88,0,0,0.0880188 -262,5810:486,-106,-88,0,0,0.0759162 -263,5810:485,-105,-88,0,0,0.0753775 -264,5810:384,-104,-88,0,0,0.0768514 -265,5810:383,-103,-88,0,0,0.0810109 -266,5806:381,-61,-88,0,0,0.0753489 -267,5806:380,-60,-88,0,0,0.075163 -268,5805:489,-59,-88,0,0,0.0750201 -269,5805:488,-58,-88,0,0,0.074949 -270,5805:487,-57,-88,0,0,0.0749346 -271,5805:486,-56,-88,0,0,0.0749275 -272,5805:485,-55,-88,0,0,0.0749346 -273,5805:384,-54,-88,0,0,0.0749346 -274,5805:383,-53,-88,0,0,0.0749418 -275,5805:382,-52,-88,0,0,0.0749562 -276,5805:381,-51,-88,0,0,0.0749631 -277,5805:380,-50,-88,0,0,0.0749631 -278,5804:489,-49,-88,0,0,0.0749631 -279,5804:488,-48,-88,0,0,0.074949 -280,5804:487,-47,-88,0,0,0.0749703 -281,5804:486,-46,-88,0,0,0.0749988 -282,5804:485,-45,-88,0,0,0.0750273 -283,5804:384,-44,-88,0,0,0.0750201 -284,5804:383,-43,-88,0,0,0.0750201 -285,5804:382,-42,-88,0,0,0.0750131 -286,5804:381,-41,-88,0,0,0.0750201 -287,5804:380,-40,-88,0,0,0.0750345 -288,5803:489,-39,-88,0,0,0.0750345 -289,5803:488,-38,-88,0,0,0.0750345 -290,5803:487,-37,-88,0,0,0.0750345 -291,5803:486,-36,-88,0,0,0.0750345 -292,5803:485,-35,-88,0,0,0.0750416 -293,5803:384,-34,-88,0,0,0.0750345 -294,5803:383,-33,-88,0,0,0.0750345 -295,5803:382,-32,-88,0,0,0.0750416 -296,5803:381,-31,-88,0,0,0.0750488 -297,5803:380,-30,-88,0,0,0.0750488 -298,5802:489,-29,-88,0,0,0.0750488 -299,5802:488,-28,-88,0,0,0.0750345 -300,5802:487,-27,-88,0,0,0.0750201 -301,5802:486,-26,-88,0,0,0.0761183 -302,5802:485,-25,-88,0,0,0.0756715 -303,5802:384,-24,-88,0,0,0.0789397 -304,3816:486,166,-88,0,0,0.0752487 -305,3816:487,167,-88,0,0,0.075063 -306,3816:488,168,-88,0,0,0.0749846 -307,3816:489,169,-88,0,0,0.074899 -308,3817:380,170,-88,0,0,0.074892 -309,3817:381,171,-88,0,0,0.0748777 -310,3817:382,172,-88,0,0,0.0807894 -311,3817:383,173,-88,0,0,0.0878209 -312,3817:384,174,-88,0,0,0.087558 -313,3817:485,175,-88,0,0,0.0873776 -314,3817:486,176,-88,0,0,0.0863183 -315,3817:487,177,-88,0,0,0.0752844 -316,3817:488,178,-88,0,0,0.0748849 -317,3817:489,179,-88,0,0,0.074949 -318,3818:380,180,-88,0,0,0.0749916 -319,5818:370,-180,-87,0,0,0.0749916 -320,5817:479,-179,-87,0,0,0.0750201 -321,5817:478,-178,-87,0,0,0.0750201 -322,5817:477,-177,-87,0,0,0.0750416 -323,5817:476,-176,-87,0,0,0.0750488 -324,5817:475,-175,-87,0,0,0.0750558 -325,5817:374,-174,-87,0,0,0.0750702 -326,5817:373,-173,-87,0,0,0.0750773 -327,5817:372,-172,-87,0,0,0.0750843 -328,5817:371,-171,-87,0,0,0.0750843 -329,5817:370,-170,-87,0,0,0.0750915 -330,5816:479,-169,-87,0,0,0.0750987 -331,5816:478,-168,-87,0,0,0.0751059 -332,5816:477,-167,-87,0,0,0.0751128 -333,5816:476,-166,-87,0,0,0.0751059 -334,5816:475,-165,-87,0,0,0.0751059 -335,5816:374,-164,-87,0,0,0.0751059 -336,5816:373,-163,-87,0,0,0.0751128 -337,5816:372,-162,-87,0,0,0.0751128 -338,5816:371,-161,-87,0,0,0.07512 -339,5816:370,-160,-87,0,0,0.0751344 -340,5815:479,-159,-87,0,0,0.0751416 -341,5815:478,-158,-87,0,0,0.0751558 -342,5815:477,-157,-87,0,0,0.0751486 -343,5815:476,-156,-87,0,0,0.0751558 -344,5815:475,-155,-87,0,0,0.075163 -345,5815:374,-154,-87,0,0,0.0751486 -346,5815:373,-153,-87,0,0,0.075163 -347,5815:372,-152,-87,0,0,0.0751558 -348,5815:371,-151,-87,0,0,0.0751416 -349,5815:370,-150,-87,0,0,0.0751416 -350,5814:479,-149,-87,0,0,0.0751344 -351,5814:478,-148,-87,0,0,0.0751344 -352,5814:477,-147,-87,0,0,0.0751272 -353,5814:476,-146,-87,0,0,0.07512 -354,5814:475,-145,-87,0,0,0.07512 -355,5814:374,-144,-87,0,0,0.0751128 -356,5814:373,-143,-87,0,0,0.07512 -357,5814:372,-142,-87,0,0,0.0751128 -358,5814:371,-141,-87,0,0,0.0751128 -359,5814:370,-140,-87,0,0,0.07512 -360,5813:479,-139,-87,0,0,0.07512 -361,5813:478,-138,-87,0,0,0.0751272 -362,5813:477,-137,-87,0,0,0.07527 -363,5813:476,-136,-87,0,0,0.0758155 -364,5813:475,-135,-87,0,0,0.0776421 -365,5813:374,-134,-87,0,0,0.0779001 -366,5811:370,-110,-87,0,0,0.0832649 -367,5810:479,-109,-87,0,0,0.0880188 -368,5810:476,-106,-87,0,0,0.0759162 -369,5810:475,-105,-87,0,0,0.0753775 -370,5810:374,-104,-87,0,0,0.0768514 -371,5810:373,-103,-87,0,0,0.0810109 -372,5806:371,-61,-87,0,0,0.0753489 -373,5806:370,-60,-87,0,0,0.075163 -374,5805:479,-59,-87,0,0,0.0750201 -375,5805:478,-58,-87,0,0,0.074949 -376,5805:477,-57,-87,0,0,0.0749346 -377,5805:476,-56,-87,0,0,0.0749275 -378,5805:475,-55,-87,0,0,0.0749346 -379,5805:374,-54,-87,0,0,0.0749346 -380,5805:373,-53,-87,0,0,0.0749418 -381,5805:372,-52,-87,0,0,0.0749562 -382,5805:371,-51,-87,0,0,0.0749631 -383,5805:370,-50,-87,0,0,0.0749631 -384,5804:479,-49,-87,0,0,0.0749631 -385,5804:478,-48,-87,0,0,0.074949 -386,5804:477,-47,-87,0,0,0.0749703 -387,5804:476,-46,-87,0,0,0.0749988 -388,5804:475,-45,-87,0,0,0.0750273 -389,5804:374,-44,-87,0,0,0.0750201 -390,5804:373,-43,-87,0,0,0.0750201 -391,5804:372,-42,-87,0,0,0.0750131 -392,5804:371,-41,-87,0,0,0.0750201 -393,5804:370,-40,-87,0,0,0.0750345 -394,5803:479,-39,-87,0,0,0.0750345 -395,5803:478,-38,-87,0,0,0.0750345 -396,5803:477,-37,-87,0,0,0.0750345 -397,5803:476,-36,-87,0,0,0.0750345 -398,5803:475,-35,-87,0,0,0.0750416 -399,5803:374,-34,-87,0,0,0.0750345 -400,5803:373,-33,-87,0,0,0.0750345 -401,5803:372,-32,-87,0,0,0.0750416 -402,5803:371,-31,-87,0,0,0.0750488 -403,5803:370,-30,-87,0,0,0.0750488 -404,5802:479,-29,-87,0,0,0.0750488 -405,5802:478,-28,-87,0,0,0.0750345 -406,5802:477,-27,-87,0,0,0.0750201 -407,5802:476,-26,-87,0,0,0.0761183 -408,5802:475,-25,-87,0,0,0.0756715 -409,5802:374,-24,-87,0,0,0.0789397 -410,3816:476,166,-87,0,0,0.0752487 -411,3816:477,167,-87,0,0,0.075063 -412,3816:478,168,-87,0,0,0.0749846 -413,3816:479,169,-87,0,0,0.074899 -414,3817:370,170,-87,0,0,0.074892 -415,3817:371,171,-87,0,0,0.0748777 -416,3817:372,172,-87,0,0,0.0807894 -417,3817:373,173,-87,0,0,0.0878209 -418,3817:374,174,-87,0,0,0.087558 -419,3817:475,175,-87,0,0,0.0873776 -420,3817:476,176,-87,0,0,0.0863183 -421,3817:477,177,-87,0,0,0.0752844 -422,3817:478,178,-87,0,0,0.0748849 -423,3817:479,179,-87,0,0,0.074949 -424,3818:370,180,-87,0,0,0.0749916 -425,5818:360,-180,-86,0,0,0.0749916 -426,5817:469,-179,-86,0,0,0.0750201 -427,5817:468,-178,-86,0,0,0.0750201 -428,5817:467,-177,-86,0,0,0.0750416 -429,5817:466,-176,-86,0,0,0.0750488 -430,5817:465,-175,-86,0,0,0.0750558 -431,5817:364,-174,-86,0,0,0.0750702 -432,5817:363,-173,-86,0,0,0.0750773 -433,5817:362,-172,-86,0,0,0.0750843 -434,5817:361,-171,-86,0,0,0.0750843 -435,5817:360,-170,-86,0,0,0.0750915 -436,5816:469,-169,-86,0,0,0.0750987 -437,5816:468,-168,-86,0,0,0.0751059 -438,5816:467,-167,-86,0,0,0.0751128 -439,5816:466,-166,-86,0,0,0.0751059 -440,5816:465,-165,-86,0,0,0.0751059 -441,5816:364,-164,-86,0,0,0.0751059 -442,5816:363,-163,-86,0,0,0.0751128 -443,5816:362,-162,-86,0,0,0.0751128 -444,5816:361,-161,-86,0,0,0.07512 -445,5816:360,-160,-86,0,0,0.0751344 -446,5815:469,-159,-86,0,0,0.0751416 -447,5815:468,-158,-86,0,0,0.0751558 -448,5815:467,-157,-86,0,0,0.0751486 -449,5815:466,-156,-86,0,0,0.0751558 -450,5815:465,-155,-86,0,0,0.075163 -451,5815:364,-154,-86,0,0,0.0751486 -452,5815:363,-153,-86,0,0,0.075163 -453,5815:362,-152,-86,0,0,0.0751558 -454,5815:361,-151,-86,0,0,0.0751416 -455,5815:360,-150,-86,0,0,0.0751416 -456,5814:469,-149,-86,0,0,0.0751344 -457,5814:468,-148,-86,0,0,0.0751344 -458,5814:467,-147,-86,0,0,0.0751272 -459,5814:466,-146,-86,0,0,0.07512 -460,5814:465,-145,-86,0,0,0.07512 -461,5814:364,-144,-86,0,0,0.0751128 -462,5814:363,-143,-86,0,0,0.07512 -463,5814:362,-142,-86,0,0,0.0751128 -464,5814:361,-141,-86,0,0,0.0751128 -465,5814:360,-140,-86,0,0,0.07512 -466,5813:469,-139,-86,0,0,0.07512 -467,5813:468,-138,-86,0,0,0.0751272 -468,5813:467,-137,-86,0,0,0.07527 -469,5813:466,-136,-86,0,0,0.0758155 -470,5813:465,-135,-86,0,0,0.0776421 -471,5813:364,-134,-86,0,0,0.0779001 -472,5811:360,-110,-86,0,0,0.0832649 -473,5810:469,-109,-86,0,0,0.0880188 -474,5810:466,-106,-86,0,0,0.0759162 -475,5810:465,-105,-86,0,0,0.0753775 -476,5810:364,-104,-86,0,0,0.0768514 -477,5810:363,-103,-86,0,0,0.0810109 -478,5806:361,-61,-86,0,0,0.0753489 -479,5806:360,-60,-86,0,0,0.075163 -480,5805:469,-59,-86,0,0,0.0750201 -481,5805:468,-58,-86,0,0,0.074949 -482,5805:467,-57,-86,0,0,0.0749346 -483,5805:466,-56,-86,0,0,0.0749275 -484,5805:465,-55,-86,0,0,0.0749346 -485,5805:364,-54,-86,0,0,0.0749346 -486,5805:363,-53,-86,0,0,0.0749418 -487,5805:362,-52,-86,0,0,0.0749562 -488,5805:361,-51,-86,0,0,0.0749631 -489,5805:360,-50,-86,0,0,0.0749631 -490,5804:469,-49,-86,0,0,0.0749631 -491,5804:468,-48,-86,0,0,0.074949 -492,5804:467,-47,-86,0,0,0.0749703 -493,5804:466,-46,-86,0,0,0.0749988 -494,5804:465,-45,-86,0,0,0.0750273 -495,5804:364,-44,-86,0,0,0.0750201 -496,5804:363,-43,-86,0,0,0.0750201 -497,5804:362,-42,-86,0,0,0.0750131 -498,5804:361,-41,-86,0,0,0.0750201 -499,5804:360,-40,-86,0,0,0.0750345 -500,5803:469,-39,-86,0,0,0.0750345 -501,5803:468,-38,-86,0,0,0.0750345 -502,5803:467,-37,-86,0,0,0.0750345 -503,5803:466,-36,-86,0,0,0.0750345 -504,5803:465,-35,-86,0,0,0.0750416 -505,5803:364,-34,-86,0,0,0.0750345 -506,5803:363,-33,-86,0,0,0.0750345 -507,5803:362,-32,-86,0,0,0.0750416 -508,5803:361,-31,-86,0,0,0.0750488 -509,5803:360,-30,-86,0,0,0.0750488 -510,5802:469,-29,-86,0,0,0.0750488 -511,5802:468,-28,-86,0,0,0.0750345 -512,5802:467,-27,-86,0,0,0.0750201 -513,5802:466,-26,-86,0,0,0.0761183 -514,5802:465,-25,-86,0,0,0.0756715 -515,5802:364,-24,-86,0,0,0.0789397 -516,3816:466,166,-86,0,0,0.0752487 -517,3816:467,167,-86,0,0,0.075063 -518,3816:468,168,-86,0,0,0.0749846 -519,3816:469,169,-86,0,0,0.074899 -520,3817:360,170,-86,0,0,0.074892 -521,3817:361,171,-86,0,0,0.0748777 -522,3817:362,172,-86,0,0,0.0807894 -523,3817:363,173,-86,0,0,0.0878209 -524,3817:364,174,-86,0,0,0.087558 -525,3817:465,175,-86,0,0,0.0873776 -526,3817:466,176,-86,0,0,0.0863183 -527,3817:467,177,-86,0,0,0.0752844 -528,3817:468,178,-86,0,0,0.0748849 -529,3817:469,179,-86,0,0,0.074949 -530,3818:360,180,-86,0,0,0.0749916 -531,5818:350,-180,-85,0,0,0.0749916 -532,5817:459,-179,-85,0,0,0.0750201 -533,5817:458,-178,-85,0,0,0.0750201 -534,5817:457,-177,-85,0,0,0.0750416 -535,5817:456,-176,-85,0,0,0.0750488 -536,5817:455,-175,-85,0,0,0.0750558 -537,5817:354,-174,-85,0,0,0.0750702 -538,5817:353,-173,-85,0,0,0.0750773 -539,5817:352,-172,-85,0,0,0.0750843 -540,5817:351,-171,-85,0,0,0.0750843 -541,5817:350,-170,-85,0,0,0.0750915 -542,5816:459,-169,-85,0,0,0.0750987 -543,5816:458,-168,-85,0,0,0.0751059 -544,5816:457,-167,-85,0,0,0.0751128 -545,5816:456,-166,-85,0,0,0.0751059 -546,5816:455,-165,-85,0,0,0.0751059 -547,5816:354,-164,-85,0,0,0.0751059 -548,5816:353,-163,-85,0,0,0.0751128 -549,5816:352,-162,-85,0,0,0.0751128 -550,5816:351,-161,-85,0,0,0.07512 -551,5816:350,-160,-85,0,0,0.0751344 -552,5815:459,-159,-85,0,0,0.0751416 -553,5815:458,-158,-85,0,0,0.0751558 -554,5815:457,-157,-85,0,0,0.0751486 -555,5815:456,-156,-85,0,0,0.0751558 -556,5815:455,-155,-85,0,0,0.075163 -557,5815:354,-154,-85,0,0,0.0751486 -558,5815:353,-153,-85,0,0,0.075163 -559,5815:352,-152,-85,0,0,0.0751558 -560,5815:351,-151,-85,0,0,0.0751416 -561,5815:350,-150,-85,0,0,0.0751416 -562,5814:459,-149,-85,0,0,0.0751344 -563,5814:458,-148,-85,0,0,0.0751344 -564,5814:457,-147,-85,0,0,0.0751272 -565,5814:456,-146,-85,0,0,0.07512 -566,5814:455,-145,-85,0,0,0.07512 -567,5814:354,-144,-85,0,0,0.0751128 -568,5814:353,-143,-85,0,0,0.07512 -569,5814:352,-142,-85,0,0,0.0751128 -570,5814:351,-141,-85,0,0,0.0751128 -571,5814:350,-140,-85,0,0,0.07512 -572,5813:459,-139,-85,0,0,0.07512 -573,5813:458,-138,-85,0,0,0.0751272 -574,5813:457,-137,-85,0,0,0.07527 -575,5813:456,-136,-85,0,0,0.0758155 -576,5813:455,-135,-85,0,0,0.0776421 -577,5813:354,-134,-85,0,0,0.0779001 -578,5811:350,-110,-85,0,0,0.0832649 -579,5810:459,-109,-85,0,0,0.0880188 -580,5810:456,-106,-85,0,0,0.0759162 -581,5810:455,-105,-85,0,0,0.0753775 -582,5810:354,-104,-85,0,0,0.0768514 -583,5810:353,-103,-85,0,0,0.0810109 -584,5806:351,-61,-85,0,0,0.0753489 -585,5806:350,-60,-85,0,0,0.075163 -586,5805:459,-59,-85,0,0,0.0750201 -587,5805:458,-58,-85,0,0,0.074949 -588,5805:457,-57,-85,0,0,0.0749346 -589,5805:456,-56,-85,0,0,0.0749275 -590,5805:455,-55,-85,0,0,0.0749346 -591,5805:354,-54,-85,0,0,0.0749346 -592,5805:353,-53,-85,0,0,0.0749418 -593,5805:352,-52,-85,0,0,0.0749562 -594,5805:351,-51,-85,0,0,0.0749631 -595,5805:350,-50,-85,0,0,0.0749631 -596,5804:459,-49,-85,0,0,0.0749631 -597,5804:458,-48,-85,0,0,0.074949 -598,5804:457,-47,-85,0,0,0.0749703 -599,5804:456,-46,-85,0,0,0.0749988 -600,5804:455,-45,-85,0,0,0.0750273 -601,5804:354,-44,-85,0,0,0.0750201 -602,5804:353,-43,-85,0,0,0.0750201 -603,5804:352,-42,-85,0,0,0.0750131 -604,5804:351,-41,-85,0,0,0.0750201 -605,5804:350,-40,-85,0,0,0.0750345 -606,5803:459,-39,-85,0,0,0.0750345 -607,5803:458,-38,-85,0,0,0.0750345 -608,5803:457,-37,-85,0,0,0.0750345 -609,5803:456,-36,-85,0,0,0.0750345 -610,5803:455,-35,-85,0,0,0.0750416 -611,5803:354,-34,-85,0,0,0.0750345 -612,5803:353,-33,-85,0,0,0.0750345 -613,5803:352,-32,-85,0,0,0.0750416 -614,5803:351,-31,-85,0,0,0.0750488 -615,5803:350,-30,-85,0,0,0.0750488 -616,5802:459,-29,-85,0,0,0.0750488 -617,5802:458,-28,-85,0,0,0.0750345 -618,5802:457,-27,-85,0,0,0.0750201 -619,5802:456,-26,-85,0,0,0.0761183 -620,5802:455,-25,-85,0,0,0.0756715 -621,5802:354,-24,-85,0,0,0.0789397 -622,3816:456,166,-85,0,0,0.0752487 -623,3816:457,167,-85,0,0,0.075063 -624,3816:458,168,-85,0,0,0.0749846 -625,3816:459,169,-85,0,0,0.074899 -626,3817:350,170,-85,0,0,0.074892 -627,3817:351,171,-85,0,0,0.0748777 -628,3817:352,172,-85,0,0,0.0807894 -629,3817:353,173,-85,0,0,0.0878209 -630,3817:354,174,-85,0,0,0.087558 -631,3817:455,175,-85,0,0,0.0873776 -632,3817:456,176,-85,0,0,0.0863183 -633,3817:457,177,-85,0,0,0.0752844 -634,3817:458,178,-85,0,0,0.0748849 -635,3817:459,179,-85,0,0,0.074949 -636,3818:350,180,-85,0,0,0.0749916 -637,5818:140,-180,-84,0,0,0.0749916 -638,5817:249,-179,-84,0,0,0.0750201 -639,5817:248,-178,-84,0,0,0.0750201 -640,5817:247,-177,-84,0,0,0.0750416 -641,5817:246,-176,-84,0,0,0.0750488 -642,5817:245,-175,-84,0,0,0.0750558 -643,5817:144,-174,-84,0,0,0.0750702 -644,5817:143,-173,-84,0,0,0.0750773 -645,5817:142,-172,-84,0,0,0.0750843 -646,5817:141,-171,-84,0,0,0.0750843 -647,5817:140,-170,-84,0,0,0.0750915 -648,5816:249,-169,-84,0,0,0.0750987 -649,5816:248,-168,-84,0,0,0.0751059 -650,5816:247,-167,-84,0,0,0.0751128 -651,5816:246,-166,-84,0,0,0.0751059 -652,5816:245,-165,-84,0,0,0.0751059 -653,5816:144,-164,-84,0,0,0.0751059 -654,5816:143,-163,-84,0,0,0.0751128 -655,5816:142,-162,-84,0,0,0.0751128 -656,5816:141,-161,-84,0,0,0.07512 -657,5816:140,-160,-84,0,0,0.0751344 -658,5815:249,-159,-84,0,0,0.0751416 -659,5815:248,-158,-84,0,0,0.0751558 -660,5815:247,-157,-84,0,0,0.0751486 -661,5815:246,-156,-84,0,0,0.0751558 -662,5815:245,-155,-84,0,0,0.075163 -663,5815:144,-154,-84,0,0,0.0751486 -664,5815:143,-153,-84,0,0,0.075163 -665,5815:142,-152,-84,0,0,0.0751558 -666,5815:141,-151,-84,0,0,0.0751416 -667,5815:140,-150,-84,0,0,0.0751416 -668,5814:249,-149,-84,0,0,0.0751344 -669,5814:248,-148,-84,0,0,0.0751344 -670,5814:247,-147,-84,0,0,0.0751272 -671,5814:246,-146,-84,0,0,0.07512 -672,5814:245,-145,-84,0,0,0.07512 -673,5814:144,-144,-84,0,0,0.0751128 -674,5814:143,-143,-84,0,0,0.07512 -675,5814:142,-142,-84,0,0,0.0751128 -676,5814:141,-141,-84,0,0,0.0751128 -677,5814:140,-140,-84,0,0,0.07512 -678,5813:249,-139,-84,0,0,0.07512 -679,5813:248,-138,-84,0,0,0.0751272 -680,5813:247,-137,-84,0,0,0.07527 -681,5813:246,-136,-84,0,0,0.0758155 -682,5813:245,-135,-84,0,0,0.0776421 -683,5813:144,-134,-84,0,0,0.0779001 -684,5811:140,-110,-84,0,0,0.0832649 -685,5810:249,-109,-84,0,0,0.0880188 -686,5810:246,-106,-84,0,0,0.0759162 -687,5810:245,-105,-84,0,0,0.0753775 -688,5810:144,-104,-84,0,0,0.0768514 -689,5810:143,-103,-84,0,0,0.0810109 -690,5806:141,-61,-84,0,0,0.0753489 -691,5806:140,-60,-84,0,0,0.075163 -692,5805:249,-59,-84,0,0,0.0750201 -693,5805:248,-58,-84,0,0,0.074949 -694,5805:247,-57,-84,0,0,0.0749346 -695,5805:246,-56,-84,0,0,0.0749275 -696,5805:245,-55,-84,0,0,0.0749346 -697,5805:144,-54,-84,0,0,0.0749346 -698,5805:143,-53,-84,0,0,0.0749418 -699,5805:142,-52,-84,0,0,0.0749562 -700,5805:141,-51,-84,0,0,0.0749631 -701,5805:140,-50,-84,0,0,0.0749631 -702,5804:249,-49,-84,0,0,0.0749631 -703,5804:248,-48,-84,0,0,0.074949 -704,5804:247,-47,-84,0,0,0.0749703 -705,5804:246,-46,-84,0,0,0.0749988 -706,5804:245,-45,-84,0,0,0.0750273 -707,5804:144,-44,-84,0,0,0.0750201 -708,5804:143,-43,-84,0,0,0.0750201 -709,5804:142,-42,-84,0,0,0.0750131 -710,5804:141,-41,-84,0,0,0.0750201 -711,5804:140,-40,-84,0,0,0.0750345 -712,5803:249,-39,-84,0,0,0.0750345 -713,5803:248,-38,-84,0,0,0.0750345 -714,5803:247,-37,-84,0,0,0.0750345 -715,5803:246,-36,-84,0,0,0.0750345 -716,5803:245,-35,-84,0,0,0.0750416 -717,5803:144,-34,-84,0,0,0.0750345 -718,5803:143,-33,-84,0,0,0.0750345 -719,5803:142,-32,-84,0,0,0.0750416 -720,5803:141,-31,-84,0,0,0.0750488 -721,5803:140,-30,-84,0,0,0.0750488 -722,5802:249,-29,-84,0,0,0.0750488 -723,5802:248,-28,-84,0,0,0.0750345 -724,5802:247,-27,-84,0,0,0.0750201 -725,5802:246,-26,-84,0,0,0.0761183 -726,5802:245,-25,-84,0,0,0.0756715 -727,5802:144,-24,-84,0,0,0.0789397 -728,3816:246,166,-84,0,0,0.0752487 -729,3816:247,167,-84,0,0,0.075063 -730,3816:248,168,-84,0,0,0.0749846 -731,3816:249,169,-84,0,0,0.074899 -732,3817:140,170,-84,0,0,0.074892 -733,3817:141,171,-84,0,0,0.0748777 -734,3817:142,172,-84,0,0,0.0807894 -735,3817:143,173,-84,0,0,0.0878209 -736,3817:144,174,-84,0,0,0.087558 -737,3817:245,175,-84,0,0,0.0873776 -738,3817:246,176,-84,0,0,0.0863183 -739,3817:247,177,-84,0,0,0.0752844 -740,3817:248,178,-84,0,0,0.0748849 -741,3817:249,179,-84,0,0,0.074949 -742,3818:140,180,-84,0,0,0.0749916 -743,5818:130,-180,-83,0,0,0.0749916 -744,5817:239,-179,-83,0,0,0.0750201 -745,5817:238,-178,-83,0,0,0.0750201 -746,5817:237,-177,-83,0,0,0.0750416 -747,5817:236,-176,-83,0,0,0.0750488 -748,5817:235,-175,-83,0,0,0.0750558 -749,5817:134,-174,-83,0,0,0.0750702 -750,5817:133,-173,-83,0,0,0.0750773 -751,5817:132,-172,-83,0,0,0.0750843 -752,5817:131,-171,-83,0,0,0.0750843 -753,5817:130,-170,-83,0,0,0.0750915 -754,5816:239,-169,-83,0,0,0.0750987 -755,5816:238,-168,-83,0,0,0.0751059 -756,5816:237,-167,-83,0,0,0.0751128 -757,5816:236,-166,-83,0,0,0.0751059 -758,5816:235,-165,-83,0,0,0.0751059 -759,5816:134,-164,-83,0,0,0.0751059 -760,5816:133,-163,-83,0,0,0.0751128 -761,5816:132,-162,-83,0,0,0.0751128 -762,5816:131,-161,-83,0,0,0.07512 -763,5816:130,-160,-83,0,0,0.0751344 -764,5815:239,-159,-83,0,0,0.0751416 -765,5815:238,-158,-83,0,0,0.0751558 -766,5815:237,-157,-83,0,0,0.0751486 -767,5815:236,-156,-83,0,0,0.0751558 -768,5815:235,-155,-83,0,0,0.075163 -769,5815:134,-154,-83,0,0,0.0751486 -770,5815:133,-153,-83,0,0,0.075163 -771,5815:132,-152,-83,0,0,0.0751558 -772,5815:131,-151,-83,0,0,0.0751416 -773,5815:130,-150,-83,0,0,0.0751416 -774,5814:239,-149,-83,0,0,0.0751344 -775,5814:238,-148,-83,0,0,0.0751344 -776,5814:237,-147,-83,0,0,0.0751272 -777,5814:236,-146,-83,0,0,0.07512 -778,5814:235,-145,-83,0,0,0.07512 -779,5814:134,-144,-83,0,0,0.0751128 -780,5814:133,-143,-83,0,0,0.07512 -781,5814:132,-142,-83,0,0,0.0751128 -782,5814:131,-141,-83,0,0,0.0751128 -783,5814:130,-140,-83,0,0,0.07512 -784,5813:239,-139,-83,0,0,0.07512 -785,5813:238,-138,-83,0,0,0.0751272 -786,5813:237,-137,-83,0,0,0.07527 -787,5813:236,-136,-83,0,0,0.0758155 -788,5813:235,-135,-83,0,0,0.0776421 -789,5813:134,-134,-83,0,0,0.0779001 -790,5811:130,-110,-83,0,0,0.0832649 -791,5810:239,-109,-83,0,0,0.0880188 -792,5810:236,-106,-83,0,0,0.0759162 -793,5810:235,-105,-83,0,0,0.0753775 -794,5810:134,-104,-83,0,0,0.0768514 -795,5810:133,-103,-83,0,0,0.0810109 -796,5806:131,-61,-83,0,0,0.0753489 -797,5806:130,-60,-83,0,0,0.075163 -798,5805:239,-59,-83,0,0,0.0750201 -799,5805:238,-58,-83,0,0,0.074949 -800,5805:237,-57,-83,0,0,0.0749346 -801,5805:236,-56,-83,0,0,0.0749275 -802,5805:235,-55,-83,0,0,0.0749346 -803,5805:134,-54,-83,0,0,0.0749346 -804,5805:133,-53,-83,0,0,0.0749418 -805,5805:132,-52,-83,0,0,0.0749562 -806,5805:131,-51,-83,0,0,0.0749631 -807,5805:130,-50,-83,0,0,0.0749631 -808,5804:239,-49,-83,0,0,0.0749631 -809,5804:238,-48,-83,0,0,0.074949 -810,5804:237,-47,-83,0,0,0.0749703 -811,5804:236,-46,-83,0,0,0.0749988 -812,5804:235,-45,-83,0,0,0.0750273 -813,5804:134,-44,-83,0,0,0.0750201 -814,5804:133,-43,-83,0,0,0.0750201 -815,5804:132,-42,-83,0,0,0.0750131 -816,5804:131,-41,-83,0,0,0.0750201 -817,5804:130,-40,-83,0,0,0.0750345 -818,5803:239,-39,-83,0,0,0.0750345 -819,5803:238,-38,-83,0,0,0.0750345 -820,5803:237,-37,-83,0,0,0.0750345 -821,5803:236,-36,-83,0,0,0.0750345 -822,5803:235,-35,-83,0,0,0.0750416 -823,5803:134,-34,-83,0,0,0.0750345 -824,5803:133,-33,-83,0,0,0.0750345 -825,5803:132,-32,-83,0,0,0.0750416 -826,5803:131,-31,-83,0,0,0.0750488 -827,5803:130,-30,-83,0,0,0.0750488 -828,5802:239,-29,-83,0,0,0.0750488 -829,5802:238,-28,-83,0,0,0.0750345 -830,5802:237,-27,-83,0,0,0.0750201 -831,5802:236,-26,-83,0,0,0.0761183 -832,5802:235,-25,-83,0,0,0.0756715 -833,5802:134,-24,-83,0,0,0.0789397 -834,3816:236,166,-83,0,0,0.0752487 -835,3816:237,167,-83,0,0,0.075063 -836,3816:238,168,-83,0,0,0.0749846 -837,3816:239,169,-83,0,0,0.074899 -838,3817:130,170,-83,0,0,0.074892 -839,3817:131,171,-83,0,0,0.0748777 -840,3817:132,172,-83,0,0,0.0807894 -841,3817:133,173,-83,0,0,0.0878209 -842,3817:134,174,-83,0,0,0.087558 -843,3817:235,175,-83,0,0,0.0873776 -844,3817:236,176,-83,0,0,0.0863183 -845,3817:237,177,-83,0,0,0.0752844 -846,3817:238,178,-83,0,0,0.0748849 -847,3817:239,179,-83,0,0,0.074949 -848,3818:130,180,-83,0,0,0.0749916 -849,5818:120,-180,-82,0,0,0.0749916 -850,5817:229,-179,-82,0,0,0.0750201 -851,5817:228,-178,-82,0,0,0.0750201 -852,5817:227,-177,-82,0,0,0.0750416 -853,5817:226,-176,-82,0,0,0.0750488 -854,5817:225,-175,-82,0,0,0.0750558 -855,5817:124,-174,-82,0,0,0.0750702 -856,5817:123,-173,-82,0,0,0.0750773 -857,5817:122,-172,-82,0,0,0.0750843 -858,5817:121,-171,-82,0,0,0.0750843 -859,5817:120,-170,-82,0,0,0.0750915 -860,5816:229,-169,-82,0,0,0.0750987 -861,5816:228,-168,-82,0,0,0.0751059 -862,5816:227,-167,-82,0,0,0.0751128 -863,5816:226,-166,-82,0,0,0.0751059 -864,5816:225,-165,-82,0,0,0.0751059 -865,5816:124,-164,-82,0,0,0.0751059 -866,5816:123,-163,-82,0,0,0.0751128 -867,5816:122,-162,-82,0,0,0.0751128 -868,5816:121,-161,-82,0,0,0.07512 -869,5816:120,-160,-82,0,0,0.0751344 -870,5815:229,-159,-82,0,0,0.0751416 -871,5815:228,-158,-82,0,0,0.0751558 -872,5815:227,-157,-82,0,0,0.0751486 -873,5815:226,-156,-82,0,0,0.0751558 -874,5815:225,-155,-82,0,0,0.075163 -875,5815:124,-154,-82,0,0,0.0751486 -876,5815:123,-153,-82,0,0,0.075163 -877,5815:122,-152,-82,0,0,0.0751558 -878,5815:121,-151,-82,0,0,0.0751416 -879,5815:120,-150,-82,0,0,0.0751416 -880,5814:229,-149,-82,0,0,0.0751344 -881,5814:228,-148,-82,0,0,0.0751344 -882,5814:227,-147,-82,0,0,0.0751272 -883,5814:226,-146,-82,0,0,0.07512 -884,5814:225,-145,-82,0,0,0.07512 -885,5814:124,-144,-82,0,0,0.0751128 -886,5814:123,-143,-82,0,0,0.07512 -887,5814:122,-142,-82,0,0,0.0751128 -888,5814:121,-141,-82,0,0,0.0751128 -889,5814:120,-140,-82,0,0,0.07512 -890,5813:229,-139,-82,0,0,0.07512 -891,5813:228,-138,-82,0,0,0.0751272 -892,5813:227,-137,-82,0,0,0.07527 -893,5813:226,-136,-82,0,0,0.0758155 -894,5813:225,-135,-82,0,0,0.0776421 -895,5813:124,-134,-82,0,0,0.0779001 -896,5811:120,-110,-82,0,0,0.0832649 -897,5810:229,-109,-82,0,0,0.0880188 -898,5810:226,-106,-82,0,0,0.0759162 -899,5810:225,-105,-82,0,0,0.0753775 -900,5810:124,-104,-82,0,0,0.0768514 -901,5810:123,-103,-82,0,0,0.0810109 -902,5806:121,-61,-82,0,0,0.0753489 -903,5806:120,-60,-82,0,0,0.075163 -904,5805:229,-59,-82,0,0,0.0750201 -905,5805:228,-58,-82,0,0,0.074949 -906,5805:227,-57,-82,0,0,0.0749346 -907,5805:226,-56,-82,0,0,0.0749275 -908,5805:225,-55,-82,0,0,0.0749346 -909,5805:124,-54,-82,0,0,0.0749346 -910,5805:123,-53,-82,0,0,0.0749418 -911,5805:122,-52,-82,0,0,0.0749562 -912,5805:121,-51,-82,0,0,0.0749631 -913,5805:120,-50,-82,0,0,0.0749631 -914,5804:229,-49,-82,0,0,0.0749631 -915,5804:228,-48,-82,0,0,0.074949 -916,5804:227,-47,-82,0,0,0.0749703 -917,5804:226,-46,-82,0,0,0.0749988 -918,5804:225,-45,-82,0,0,0.0750273 -919,5804:124,-44,-82,0,0,0.0750201 -920,5804:123,-43,-82,0,0,0.0750201 -921,5804:122,-42,-82,0,0,0.0750131 -922,5804:121,-41,-82,0,0,0.0750201 -923,5804:120,-40,-82,0,0,0.0750345 -924,5803:229,-39,-82,0,0,0.0750345 -925,5803:228,-38,-82,0,0,0.0750345 -926,5803:227,-37,-82,0,0,0.0750345 -927,5803:226,-36,-82,0,0,0.0750345 -928,5803:225,-35,-82,0,0,0.0750416 -929,5803:124,-34,-82,0,0,0.0750345 -930,5803:123,-33,-82,0,0,0.0750345 -931,5803:122,-32,-82,0,0,0.0750416 -932,5803:121,-31,-82,0,0,0.0750488 -933,5803:120,-30,-82,0,0,0.0750488 -934,5802:229,-29,-82,0,0,0.0750488 -935,5802:228,-28,-82,0,0,0.0750345 -936,5802:227,-27,-82,0,0,0.0750201 -937,5802:226,-26,-82,0,0,0.0761183 -938,5802:225,-25,-82,0,0,0.0756715 -939,5802:124,-24,-82,0,0,0.0789397 -940,3816:226,166,-82,0,0,0.0752487 -941,3816:227,167,-82,0,0,0.075063 -942,3816:228,168,-82,0,0,0.0749846 -943,3816:229,169,-82,0,0,0.074899 -944,3817:120,170,-82,0,0,0.074892 -945,3817:121,171,-82,0,0,0.0748777 -946,3817:122,172,-82,0,0,0.0807894 -947,3817:123,173,-82,0,0,0.0878209 -948,3817:124,174,-82,0,0,0.087558 -949,3817:225,175,-82,0,0,0.0873776 -950,3817:226,176,-82,0,0,0.0863183 -951,3817:227,177,-82,0,0,0.0752844 -952,3817:228,178,-82,0,0,0.0748849 -953,3817:229,179,-82,0,0,0.074949 -954,3818:120,180,-82,0,0,0.0749916 -955,5818:110,-180,-81,0,0,0.0749916 -956,5817:219,-179,-81,0,0,0.0750201 -957,5817:218,-178,-81,0,0,0.0750201 -958,5817:217,-177,-81,0,0,0.0750416 -959,5817:216,-176,-81,0,0,0.0750488 -960,5817:215,-175,-81,0,0,0.0750558 -961,5817:114,-174,-81,0,0,0.0750702 -962,5817:113,-173,-81,0,0,0.0750773 -963,5817:112,-172,-81,0,0,0.0750843 -964,5817:111,-171,-81,0,0,0.0750843 -965,5817:110,-170,-81,0,0,0.0750915 -966,5816:219,-169,-81,0,0,0.0750987 -967,5816:218,-168,-81,0,0,0.0751059 -968,5816:217,-167,-81,0,0,0.0751128 -969,5816:216,-166,-81,0,0,0.0751059 -970,5816:215,-165,-81,0,0,0.0751059 -971,5816:114,-164,-81,0,0,0.0751059 -972,5816:113,-163,-81,0,0,0.0751128 -973,5816:112,-162,-81,0,0,0.0751128 -974,5816:111,-161,-81,0,0,0.07512 -975,5816:110,-160,-81,0,0,0.0751344 -976,5815:219,-159,-81,0,0,0.0751416 -977,5815:218,-158,-81,0,0,0.0751558 -978,5815:217,-157,-81,0,0,0.0751486 -979,5815:216,-156,-81,0,0,0.0751558 -980,5815:215,-155,-81,0,0,0.075163 -981,5815:114,-154,-81,0,0,0.0751486 -982,5815:113,-153,-81,0,0,0.075163 -983,5815:112,-152,-81,0,0,0.0751558 -984,5815:111,-151,-81,0,0,0.0751416 -985,5815:110,-150,-81,0,0,0.0751416 -986,5814:219,-149,-81,0,0,0.0751344 -987,5814:218,-148,-81,0,0,0.0751344 -988,5814:217,-147,-81,0,0,0.0751272 -989,5814:216,-146,-81,0,0,0.07512 -990,5814:215,-145,-81,0,0,0.07512 -991,5814:114,-144,-81,0,0,0.0751128 -992,5814:113,-143,-81,0,0,0.07512 -993,5814:112,-142,-81,0,0,0.0751128 -994,5814:111,-141,-81,0,0,0.0751128 -995,5814:110,-140,-81,0,0,0.07512 -996,5813:219,-139,-81,0,0,0.07512 -997,5813:218,-138,-81,0,0,0.0751272 -998,5813:217,-137,-81,0,0,0.07527 -999,5813:216,-136,-81,0,0,0.0758155 -1000,5813:215,-135,-81,0,0,0.0776421 -1001,5813:114,-134,-81,0,0,0.0779001 -1002,5811:110,-110,-81,0,0,0.0832649 -1003,5810:219,-109,-81,0,0,0.0880188 -1004,5810:216,-106,-81,0,0,0.0759162 -1005,5810:215,-105,-81,0,0,0.0753775 -1006,5810:114,-104,-81,0,0,0.0768514 -1007,5810:113,-103,-81,0,0,0.0810109 -1008,5806:111,-61,-81,0,0,0.0753489 -1009,5806:110,-60,-81,0,0,0.075163 -1010,5805:219,-59,-81,0,0,0.0750201 -1011,5805:218,-58,-81,0,0,0.074949 -1012,5805:217,-57,-81,0,0,0.0749346 -1013,5805:216,-56,-81,0,0,0.0749275 -1014,5805:215,-55,-81,0,0,0.0749346 -1015,5805:114,-54,-81,0,0,0.0749346 -1016,5805:113,-53,-81,0,0,0.0749418 -1017,5805:112,-52,-81,0,0,0.0749562 -1018,5805:111,-51,-81,0,0,0.0749631 -1019,5805:110,-50,-81,0,0,0.0749631 -1020,5804:219,-49,-81,0,0,0.0749631 -1021,5804:218,-48,-81,0,0,0.074949 -1022,5804:217,-47,-81,0,0,0.0749703 -1023,5804:216,-46,-81,0,0,0.0749988 -1024,5804:215,-45,-81,0,0,0.0750273 -1025,5804:114,-44,-81,0,0,0.0750201 -1026,5804:113,-43,-81,0,0,0.0750201 -1027,5804:112,-42,-81,0,0,0.0750131 -1028,5804:111,-41,-81,0,0,0.0750201 -1029,5804:110,-40,-81,0,0,0.0750345 -1030,5803:219,-39,-81,0,0,0.0750345 -1031,5803:218,-38,-81,0,0,0.0750345 -1032,5803:217,-37,-81,0,0,0.0750345 -1033,5803:216,-36,-81,0,0,0.0750345 -1034,5803:215,-35,-81,0,0,0.0750416 -1035,5803:114,-34,-81,0,0,0.0750345 -1036,5803:113,-33,-81,0,0,0.0750345 -1037,5803:112,-32,-81,0,0,0.0750416 -1038,5803:111,-31,-81,0,0,0.0750488 -1039,5803:110,-30,-81,0,0,0.0750488 -1040,5802:219,-29,-81,0,0,0.0750488 -1041,5802:218,-28,-81,0,0,0.0750345 -1042,5802:217,-27,-81,0,0,0.0750201 -1043,5802:216,-26,-81,0,0,0.0761183 -1044,5802:215,-25,-81,0,0,0.0756715 -1045,5802:114,-24,-81,0,0,0.0789397 -1046,3816:216,166,-81,0,0,0.0752487 -1047,3816:217,167,-81,0,0,0.075063 -1048,3816:218,168,-81,0,0,0.0749846 -1049,3816:219,169,-81,0,0,0.074899 -1050,3817:110,170,-81,0,0,0.074892 -1051,3817:111,171,-81,0,0,0.0748777 -1052,3817:112,172,-81,0,0,0.0807894 -1053,3817:113,173,-81,0,0,0.0878209 -1054,3817:114,174,-81,0,0,0.087558 -1055,3817:215,175,-81,0,0,0.0873776 -1056,3817:216,176,-81,0,0,0.0863183 -1057,3817:217,177,-81,0,0,0.0752844 -1058,3817:218,178,-81,0,0,0.0748849 -1059,3817:219,179,-81,0,0,0.074949 -1060,3818:110,180,-81,0,0,0.0749916 -1061,5818:100,-180,-80,0,0,0.0749916 -1062,5817:209,-179,-80,0,0,0.0750201 -1063,5817:208,-178,-80,0,0,0.0750201 -1064,5817:207,-177,-80,0,0,0.0750416 -1065,5817:206,-176,-80,0,0,0.0750488 -1066,5817:205,-175,-80,0,0,0.0750558 -1067,5817:104,-174,-80,0,0,0.0750702 -1068,5817:103,-173,-80,0,0,0.0750773 -1069,5817:102,-172,-80,0,0,0.0750843 -1070,5817:101,-171,-80,0,0,0.0750843 -1071,5817:100,-170,-80,0,0,0.0750915 -1072,5816:209,-169,-80,0,0,0.0750987 -1073,5816:208,-168,-80,0,0,0.0751059 -1074,5816:207,-167,-80,0,0,0.0751128 -1075,5816:206,-166,-80,0,0,0.0751059 -1076,5816:205,-165,-80,0,0,0.0751059 -1077,5816:104,-164,-80,0,0,0.0751059 -1078,5816:103,-163,-80,0,0,0.0751128 -1079,5816:102,-162,-80,0,0,0.0751128 -1080,5816:101,-161,-80,0,0,0.07512 -1081,5816:100,-160,-80,0,0,0.0751344 -1082,5815:209,-159,-80,0,0,0.0751416 -1083,5815:208,-158,-80,0,0,0.0751558 -1084,5815:207,-157,-80,0,0,0.0751486 -1085,5815:206,-156,-80,0,0,0.0751558 -1086,5815:205,-155,-80,0,0,0.075163 -1087,5815:104,-154,-80,0,0,0.0751486 -1088,5815:103,-153,-80,0,0,0.075163 -1089,5815:102,-152,-80,0,0,0.0751558 -1090,5815:101,-151,-80,0,0,0.0751416 -1091,5815:100,-150,-80,0,0,0.0751416 -1092,5814:209,-149,-80,0,0,0.0751344 -1093,5814:208,-148,-80,0,0,0.0751344 -1094,5814:207,-147,-80,0,0,0.0751272 -1095,5814:206,-146,-80,0,0,0.07512 -1096,5814:205,-145,-80,0,0,0.07512 -1097,5814:104,-144,-80,0,0,0.0751128 -1098,5814:103,-143,-80,0,0,0.07512 -1099,5814:102,-142,-80,0,0,0.0751128 -1100,5814:101,-141,-80,0,0,0.0751128 -1101,5814:100,-140,-80,0,0,0.07512 -1102,5813:209,-139,-80,0,0,0.07512 -1103,5813:208,-138,-80,0,0,0.0751272 -1104,5813:207,-137,-80,0,0,0.07527 -1105,5813:206,-136,-80,0,0,0.0758155 -1106,5813:205,-135,-80,0,0,0.0776421 -1107,5813:104,-134,-80,0,0,0.0779001 -1108,5811:100,-110,-80,0,0,0.0832649 -1109,5810:209,-109,-80,0,0,0.0880188 -1110,5810:206,-106,-80,0,0,0.0759162 -1111,5810:205,-105,-80,0,0,0.0753775 -1112,5810:104,-104,-80,0,0,0.0768514 -1113,5810:103,-103,-80,0,0,0.0810109 -1114,5806:101,-61,-80,0,0,0.0753489 -1115,5806:100,-60,-80,0,0,0.075163 -1116,5805:209,-59,-80,0,0,0.0750201 -1117,5805:208,-58,-80,0,0,0.074949 -1118,5805:207,-57,-80,0,0,0.0749346 -1119,5805:206,-56,-80,0,0,0.0749275 -1120,5805:205,-55,-80,0,0,0.0749346 -1121,5805:104,-54,-80,0,0,0.0749346 -1122,5805:103,-53,-80,0,0,0.0749418 -1123,5805:102,-52,-80,0,0,0.0749562 -1124,5805:101,-51,-80,0,0,0.0749631 -1125,5805:100,-50,-80,0,0,0.0749631 -1126,5804:209,-49,-80,0,0,0.0749631 -1127,5804:208,-48,-80,0,0,0.074949 -1128,5804:207,-47,-80,0,0,0.0749703 -1129,5804:206,-46,-80,0,0,0.0749988 -1130,5804:205,-45,-80,0,0,0.0750273 -1131,5804:104,-44,-80,0,0,0.0750201 -1132,5804:103,-43,-80,0,0,0.0750201 -1133,5804:102,-42,-80,0,0,0.0750131 -1134,5804:101,-41,-80,0,0,0.0750201 -1135,5804:100,-40,-80,0,0,0.0750345 -1136,5803:209,-39,-80,0,0,0.0750345 -1137,5803:208,-38,-80,0,0,0.0750345 -1138,5803:207,-37,-80,0,0,0.0750345 -1139,5803:206,-36,-80,0,0,0.0750345 -1140,5803:205,-35,-80,0,0,0.0750416 -1141,5803:104,-34,-80,0,0,0.0750345 -1142,5803:103,-33,-80,0,0,0.0750345 -1143,5803:102,-32,-80,0,0,0.0750416 -1144,5803:101,-31,-80,0,0,0.0750488 -1145,5803:100,-30,-80,0,0,0.0750488 -1146,5802:209,-29,-80,0,0,0.0750488 -1147,5802:208,-28,-80,0,0,0.0750345 -1148,5802:207,-27,-80,0,0,0.0750201 -1149,5802:206,-26,-80,0,0,0.0761183 -1150,5802:205,-25,-80,0,0,0.0756715 -1151,5802:104,-24,-80,0,0,0.0789397 -1152,3816:206,166,-80,0,0,0.0752487 -1153,3816:207,167,-80,0,0,0.075063 -1154,3816:208,168,-80,0,0,0.0749846 -1155,3816:209,169,-80,0,0,0.074899 -1156,3817:100,170,-80,0,0,0.074892 -1157,3817:101,171,-80,0,0,0.0748777 -1158,3817:102,172,-80,0,0,0.0807894 -1159,3817:103,173,-80,0,0,0.0878209 -1160,3817:104,174,-80,0,0,0.087558 -1161,3817:205,175,-80,0,0,0.0873776 -1162,3817:206,176,-80,0,0,0.0863183 -1163,3817:207,177,-80,0,0,0.0752844 -1164,3817:208,178,-80,0,0,0.0748849 -1165,3817:209,179,-80,0,0,0.074949 -1166,3818:100,180,-80,0,0,0.0749916 -1167,5718:390,-180,-79,0,0,0.0749916 -1168,5717:499,-179,-79,0,0,0.0750201 -1169,5717:498,-178,-79,0,0,0.0750201 -1170,5717:497,-177,-79,0,0,0.0750416 -1171,5717:496,-176,-79,0,0,0.0750488 -1172,5717:495,-175,-79,0,0,0.0750558 -1173,5717:394,-174,-79,0,0,0.0750702 -1174,5717:393,-173,-79,0,0,0.0750773 -1175,5717:392,-172,-79,0,0,0.0750843 -1176,5717:391,-171,-79,0,0,0.0750843 -1177,5717:390,-170,-79,0,0,0.0750915 -1178,5716:499,-169,-79,0,0,0.0750987 -1179,5716:498,-168,-79,0,0,0.0751059 -1180,5716:497,-167,-79,0,0,0.0751128 -1181,5716:496,-166,-79,0,0,0.0751059 -1182,5716:495,-165,-79,0,0,0.0751059 -1183,5716:394,-164,-79,0,0,0.0751059 -1184,5716:393,-163,-79,0,0,0.0751128 -1185,5716:392,-162,-79,0,0,0.0751128 -1186,5716:391,-161,-79,0,0,0.07512 -1187,5716:390,-160,-79,0,0,0.0751344 -1188,5715:499,-159,-79,0,0,0.0751416 -1189,5715:498,-158,-79,0,0,0.0751558 -1190,5715:497,-157,-79,0,0,0.0751486 -1191,5715:496,-156,-79,0,0,0.0751558 -1192,5715:495,-155,-79,0,0,0.075163 -1193,5715:394,-154,-79,0,0,0.0751486 -1194,5715:393,-153,-79,0,0,0.075163 -1195,5715:392,-152,-79,0,0,0.0751558 -1196,5715:391,-151,-79,0,0,0.0751416 -1197,5715:390,-150,-79,0,0,0.0751416 -1198,5714:499,-149,-79,0,0,0.0751344 -1199,5714:498,-148,-79,0,0,0.0751344 -1200,5714:497,-147,-79,0,0,0.0751272 -1201,5714:496,-146,-79,0,0,0.07512 -1202,5714:495,-145,-79,0,0,0.07512 -1203,5714:394,-144,-79,0,0,0.0751128 -1204,5714:393,-143,-79,0,0,0.07512 -1205,5714:392,-142,-79,0,0,0.0751128 -1206,5714:391,-141,-79,0,0,0.0751128 -1207,5714:390,-140,-79,0,0,0.07512 -1208,5713:499,-139,-79,0,0,0.07512 -1209,5713:498,-138,-79,0,0,0.0751272 -1210,5713:497,-137,-79,0,0,0.07527 -1211,5713:496,-136,-79,0,0,0.0758155 -1212,5713:495,-135,-79,0,0,0.0776421 -1213,5713:394,-134,-79,0,0,0.0779001 -1214,5711:390,-110,-79,0,0,0.0832649 -1215,5710:499,-109,-79,0,0,0.0880188 -1216,5710:496,-106,-79,0,0,0.0759162 -1217,5710:495,-105,-79,0,0,0.0753775 -1218,5710:394,-104,-79,0,0,0.0768514 -1219,5710:393,-103,-79,0,0,0.0810109 -1220,5706:391,-61,-79,0,0,0.0753489 -1221,5706:390,-60,-79,0,0,0.075163 -1222,5705:499,-59,-79,0,0,0.0750201 -1223,5705:498,-58,-79,0,0,0.074949 -1224,5705:497,-57,-79,0,0,0.0749346 -1225,5705:496,-56,-79,0,0,0.0749275 -1226,5705:495,-55,-79,0,0,0.0749346 -1227,5705:394,-54,-79,0,0,0.0749346 -1228,5705:393,-53,-79,0,0,0.0749418 -1229,5705:392,-52,-79,0,0,0.0749562 -1230,5705:391,-51,-79,0,0,0.0749631 -1231,5705:390,-50,-79,0,0,0.0749631 -1232,5704:499,-49,-79,0,0,0.0749631 -1233,5704:498,-48,-79,0,0,0.074949 -1234,5704:497,-47,-79,0,0,0.0749703 -1235,5704:496,-46,-79,0,0,0.0749988 -1236,5704:495,-45,-79,0,0,0.0750273 -1237,5704:394,-44,-79,0,0,0.0750201 -1238,5704:393,-43,-79,0,0,0.0750201 -1239,5704:392,-42,-79,0,0,0.0750131 -1240,5704:391,-41,-79,0,0,0.0750201 -1241,5704:390,-40,-79,0,0,0.0750345 -1242,5703:499,-39,-79,0,0,0.0750345 -1243,5703:498,-38,-79,0,0,0.0750345 -1244,5703:497,-37,-79,0,0,0.0750345 -1245,5703:496,-36,-79,0,0,0.0750345 -1246,5703:495,-35,-79,0,0,0.0750416 -1247,5703:394,-34,-79,0,0,0.0750345 -1248,5703:393,-33,-79,0,0,0.0750345 -1249,5703:392,-32,-79,0,0,0.0750416 -1250,5703:391,-31,-79,0,0,0.0750488 -1251,5703:390,-30,-79,0,0,0.0750488 -1252,5702:499,-29,-79,0,0,0.0750488 -1253,5702:498,-28,-79,0,0,0.0750345 -1254,5702:497,-27,-79,0,0,0.0750201 -1255,5702:496,-26,-79,0,0,0.0761183 -1256,5702:495,-25,-79,0,0,0.0756715 -1257,5702:394,-24,-79,0,0,0.0789397 -1258,3716:496,166,-79,0,0,0.0752487 -1259,3716:497,167,-79,0,0,0.075063 -1260,3716:498,168,-79,0,0,0.0749846 -1261,3716:499,169,-79,0,0,0.074899 -1262,3717:390,170,-79,0,0,0.074892 -1263,3717:391,171,-79,0,0,0.0748777 -1264,3717:392,172,-79,0,0,0.0807894 -1265,3717:393,173,-79,0,0,0.0878209 -1266,3717:394,174,-79,0,0,0.087558 -1267,3717:495,175,-79,0,0,0.0873776 -1268,3717:496,176,-79,0,0,0.0863183 -1269,3717:497,177,-79,0,0,0.0752844 -1270,3717:498,178,-79,0,0,0.0748849 -1271,3717:499,179,-79,0,0,0.074949 -1272,3718:390,180,-79,0,0,0.0749916 -1273,5718:380,-180,-78,0,0,0.0749916 -1274,5717:489,-179,-78,0,0,0.0750201 -1275,5717:488,-178,-78,0,0,0.0750201 -1276,5717:487,-177,-78,0,0,0.0750416 -1277,5717:486,-176,-78,0,0,0.0750488 -1278,5717:485,-175,-78,0,0,0.0750558 -1279,5717:384,-174,-78,0,0,0.0750702 -1280,5717:383,-173,-78,0,0,0.0750773 -1281,5717:382,-172,-78,0,0,0.0750843 -1282,5717:381,-171,-78,0,0,0.0750843 -1283,5717:380,-170,-78,0,0,0.0750915 -1284,5716:489,-169,-78,0,0,0.0750987 -1285,5716:488,-168,-78,0,0,0.0751059 -1286,5716:487,-167,-78,0,0,0.0751128 -1287,5716:486,-166,-78,0,0,0.0751059 -1288,5716:485,-165,-78,0,0,0.0751059 -1289,5716:384,-164,-78,0,0,0.0751059 -1290,5716:383,-163,-78,0,0,0.0751128 -1291,5716:382,-162,-78,0,0,0.0751128 -1292,5716:381,-161,-78,0,0,0.07512 -1293,5716:380,-160,-78,0,0,0.0751344 -1294,5715:489,-159,-78,0,0,0.0751416 -1295,5715:488,-158,-78,0,0,0.0751558 -1296,5715:487,-157,-78,0,0,0.0751486 -1297,5715:486,-156,-78,0,0,0.0751558 -1298,5715:485,-155,-78,0,0,0.075163 -1299,5715:384,-154,-78,0,0,0.0751486 -1300,5715:383,-153,-78,0,0,0.075163 -1301,5715:382,-152,-78,0,0,0.0751558 -1302,5715:381,-151,-78,0,0,0.0751416 -1303,5715:380,-150,-78,0,0,0.0751416 -1304,5714:489,-149,-78,0,0,0.0751344 -1305,5714:488,-148,-78,0,0,0.0751344 -1306,5714:487,-147,-78,0,0,0.0751272 -1307,5714:486,-146,-78,0,0,0.07512 -1308,5714:485,-145,-78,0,0,0.07512 -1309,5714:384,-144,-78,0,0,0.0751128 -1310,5714:383,-143,-78,0,0,0.07512 -1311,5714:382,-142,-78,0,0,0.0751128 -1312,5714:381,-141,-78,0,0,0.0751128 -1313,5714:380,-140,-78,0,0,0.07512 -1314,5713:489,-139,-78,0,0,0.07512 -1315,5713:488,-138,-78,0,0,0.0751272 -1316,5713:487,-137,-78,0,0,0.07527 -1317,5713:486,-136,-78,0,0,0.0758155 -1318,5713:485,-135,-78,0,0,0.0776421 -1319,5713:384,-134,-78,0,0,0.0779001 -1320,5711:380,-110,-78,0,0,0.0832649 -1321,5710:489,-109,-78,0,0,0.0880188 -1322,5710:486,-106,-78,0,0,0.0759162 -1323,5710:485,-105,-78,0,0,0.0753775 -1324,5710:384,-104,-78,0,0,0.0768514 -1325,5710:383,-103,-78,0,0,0.0810109 -1326,5706:381,-61,-78,0,0,0.0753489 -1327,5706:380,-60,-78,0,0,0.075163 -1328,5705:489,-59,-78,0,0,0.0750201 -1329,5705:488,-58,-78,0,0,0.074949 -1330,5705:487,-57,-78,0,0,0.0749346 -1331,5705:486,-56,-78,0,0,0.0749275 -1332,5705:485,-55,-78,0,0,0.0749346 -1333,5705:384,-54,-78,0,0,0.0749346 -1334,5705:383,-53,-78,0,0,0.0749418 -1335,5705:382,-52,-78,0,0,0.0749562 -1336,5705:381,-51,-78,0,0,0.0749631 -1337,5705:380,-50,-78,0,0,0.0749631 -1338,5704:489,-49,-78,0,0,0.0749631 -1339,5704:488,-48,-78,0,0,0.074949 -1340,5704:487,-47,-78,0,0,0.0749703 -1341,5704:486,-46,-78,0,0,0.0749988 -1342,5704:485,-45,-78,0,0,0.0750273 -1343,5704:384,-44,-78,0,0,0.0750201 -1344,5704:383,-43,-78,0,0,0.0750201 -1345,5704:382,-42,-78,0,0,0.0750131 -1346,5704:381,-41,-78,0,0,0.0750201 -1347,5704:380,-40,-78,0,0,0.0750345 -1348,5703:489,-39,-78,0,0,0.0750345 -1349,5703:488,-38,-78,0,0,0.0750345 -1350,5703:487,-37,-78,0,0,0.0750345 -1351,5703:486,-36,-78,0,0,0.0750345 -1352,5703:485,-35,-78,0,0,0.0750416 -1353,5703:384,-34,-78,0,0,0.0750345 -1354,5703:383,-33,-78,0,0,0.0750345 -1355,5703:382,-32,-78,0,0,0.0750416 -1356,5703:381,-31,-78,0,0,0.0750488 -1357,5703:380,-30,-78,0,0,0.0750488 -1358,5702:489,-29,-78,0,0,0.0750488 -1359,5702:488,-28,-78,0,0,0.0750345 -1360,5702:487,-27,-78,0,0,0.0750201 -1361,5702:486,-26,-78,0,0,0.0761183 -1362,5702:485,-25,-78,0,0,0.0756715 -1363,5702:384,-24,-78,0,0,0.0789397 -1364,3716:486,166,-78,0,0,0.0752487 -1365,3716:487,167,-78,0,0,0.075063 -1366,3716:488,168,-78,0,0,0.0749846 -1367,3716:489,169,-78,0,0,0.074899 -1368,3717:380,170,-78,0,0,0.074892 -1369,3717:381,171,-78,0,0,0.0748777 -1370,3717:382,172,-78,0,0,0.0807894 -1371,3717:383,173,-78,0,0,0.0878209 -1372,3717:384,174,-78,0,0,0.087558 -1373,3717:485,175,-78,0,0,0.0873776 -1374,3717:486,176,-78,0,0,0.0863183 -1375,3717:487,177,-78,0,0,0.0752844 -1376,3717:488,178,-78,0,0,0.0748849 -1377,3717:489,179,-78,0,0,0.074949 -1378,3718:380,180,-78,0,0,0.0749916 -1379,5718:370,-180,-77,0,0,0.0749916 -1380,5717:479,-179,-77,0,0,0.0750201 -1381,5717:478,-178,-77,0,0,0.0750201 -1382,5717:477,-177,-77,0,0,0.0750416 -1383,5717:476,-176,-77,0,0,0.0750488 -1384,5717:475,-175,-77,0,0,0.0750558 -1385,5717:374,-174,-77,0,0,0.0750702 -1386,5717:373,-173,-77,0,0,0.0750773 -1387,5717:372,-172,-77,0,0,0.0750843 -1388,5717:371,-171,-77,0,0,0.0750843 -1389,5717:370,-170,-77,0,0,0.0750915 -1390,5716:479,-169,-77,0,0,0.0750987 -1391,5716:478,-168,-77,0,0,0.0751059 -1392,5716:477,-167,-77,0,0,0.0751128 -1393,5716:476,-166,-77,0,0,0.0751059 -1394,5716:475,-165,-77,0,0,0.0751059 -1395,5716:374,-164,-77,0,0,0.0751059 -1396,5716:373,-163,-77,0,0,0.0751128 -1397,5716:372,-162,-77,0,0,0.0751128 -1398,5716:371,-161,-77,0,0,0.07512 -1399,5716:370,-160,-77,0,0,0.0751344 -1400,5715:479,-159,-77,0,0,0.0751416 -1401,5715:478,-158,-77,0,0,0.0751558 -1402,5715:477,-157,-77,0,0,0.0751486 -1403,5715:476,-156,-77,0,0,0.0751558 -1404,5715:475,-155,-77,0,0,0.075163 -1405,5715:374,-154,-77,0,0,0.0751486 -1406,5715:373,-153,-77,0,0,0.075163 -1407,5715:372,-152,-77,0,0,0.0751558 -1408,5715:371,-151,-77,0,0,0.0751416 -1409,5715:370,-150,-77,0,0,0.0751416 -1410,5714:479,-149,-77,0,0,0.0751344 -1411,5714:478,-148,-77,0,0,0.0751344 -1412,5714:477,-147,-77,0,0,0.0751272 -1413,5714:476,-146,-77,0,0,0.07512 -1414,5714:475,-145,-77,0,0,0.07512 -1415,5714:374,-144,-77,0,0,0.0751128 -1416,5714:373,-143,-77,0,0,0.07512 -1417,5714:372,-142,-77,0,0,0.0751128 -1418,5714:371,-141,-77,0,0,0.0751128 -1419,5714:370,-140,-77,0,0,0.07512 -1420,5713:479,-139,-77,0,0,0.07512 -1421,5713:478,-138,-77,0,0,0.0751272 -1422,5713:477,-137,-77,0,0,0.07527 -1423,5713:476,-136,-77,0,0,0.0758155 -1424,5713:475,-135,-77,0,0,0.0776421 -1425,5713:374,-134,-77,0,0,0.0779001 -1426,5711:370,-110,-77,0,0,0.0832649 -1427,5710:479,-109,-77,0,0,0.0880188 -1428,5710:476,-106,-77,0,0,0.0759162 -1429,5710:475,-105,-77,0,0,0.0753775 -1430,5710:374,-104,-77,0,0,0.0768514 -1431,5710:373,-103,-77,0,0,0.0810109 -1432,5706:371,-61,-77,0,0,0.0753489 -1433,5706:370,-60,-77,0,0,0.075163 -1434,5705:479,-59,-77,0,0,0.0750201 -1435,5705:478,-58,-77,0,0,0.074949 -1436,5705:477,-57,-77,0,0,0.0749346 -1437,5705:476,-56,-77,0,0,0.0749275 -1438,5705:475,-55,-77,0,0,0.0749346 -1439,5705:374,-54,-77,0,0,0.0749346 -1440,5705:373,-53,-77,0,0,0.0749418 -1441,5705:372,-52,-77,0,0,0.0749562 -1442,5705:371,-51,-77,0,0,0.0749631 -1443,5705:370,-50,-77,0,0,0.0749631 -1444,5704:479,-49,-77,0,0,0.0749631 -1445,5704:478,-48,-77,0,0,0.074949 -1446,5704:477,-47,-77,0,0,0.0749703 -1447,5704:476,-46,-77,0,0,0.0749988 -1448,5704:475,-45,-77,0,0,0.0750273 -1449,5704:374,-44,-77,0,0,0.0750201 -1450,5704:373,-43,-77,0,0,0.0750201 -1451,5704:372,-42,-77,0,0,0.0750131 -1452,5704:371,-41,-77,0,0,0.0750201 -1453,5704:370,-40,-77,0,0,0.0750345 -1454,5703:479,-39,-77,0,0,0.0750345 -1455,5703:478,-38,-77,0,0,0.0750345 -1456,5703:477,-37,-77,0,0,0.0750345 -1457,5703:476,-36,-77,0,0,0.0750345 -1458,5703:475,-35,-77,0,0,0.0750416 -1459,5703:374,-34,-77,0,0,0.0750345 -1460,5703:373,-33,-77,0,0,0.0750345 -1461,5703:372,-32,-77,0,0,0.0750416 -1462,5703:371,-31,-77,0,0,0.0750488 -1463,5703:370,-30,-77,0,0,0.0750488 -1464,5702:479,-29,-77,0,0,0.0750488 -1465,5702:478,-28,-77,0,0,0.0750345 -1466,5702:477,-27,-77,0,0,0.0750201 -1467,5702:476,-26,-77,0,0,0.0761183 -1468,5702:475,-25,-77,0,0,0.0756715 -1469,5702:374,-24,-77,0,0,0.0789397 -1470,3716:476,166,-77,0,0,0.0752487 -1471,3716:477,167,-77,0,0,0.075063 -1472,3716:478,168,-77,0,0,0.0749846 -1473,3716:479,169,-77,0,0,0.074899 -1474,3717:370,170,-77,0,0,0.074892 -1475,3717:371,171,-77,0,0,0.0748777 -1476,3717:372,172,-77,0,0,0.0807894 -1477,3717:373,173,-77,0,0,0.0878209 -1478,3717:374,174,-77,0,0,0.087558 -1479,3717:475,175,-77,0,0,0.0873776 -1480,3717:476,176,-77,0,0,0.0863183 -1481,3717:477,177,-77,0,0,0.0752844 -1482,3717:478,178,-77,0,0,0.0748849 -1483,3717:479,179,-77,0,0,0.074949 -1484,3718:370,180,-77,0,0,0.0749916 -1485,5718:360,-180,-76,0,0,0.0749775 -1486,5717:469,-179,-76,0,0,0.075006 -1487,5717:468,-178,-76,0,0,0.0750345 -1488,5717:467,-177,-76,0,0,0.0750345 -1489,5717:466,-176,-76,0,0,0.0750416 -1490,5717:465,-175,-76,0,0,0.0750488 -1491,5717:364,-174,-76,0,0,0.075063 -1492,5717:363,-173,-76,0,0,0.0750702 -1493,5717:362,-172,-76,0,0,0.0750702 -1494,5717:361,-171,-76,0,0,0.0750702 -1495,5717:360,-170,-76,0,0,0.0750702 -1496,5716:469,-169,-76,0,0,0.0750702 -1497,5716:468,-168,-76,0,0,0.0750702 -1498,5716:467,-167,-76,0,0,0.0750702 -1499,5716:466,-166,-76,0,0,0.0750773 -1500,5716:465,-165,-76,0,0,0.0750843 -1501,5716:364,-164,-76,0,0,0.0750915 -1502,5716:363,-163,-76,0,0,0.0750915 -1503,5716:362,-162,-76,0,0,0.0750987 -1504,5716:361,-161,-76,0,0,0.0751059 -1505,5716:360,-160,-76,0,0,0.0751128 -1506,5715:469,-159,-76,0,0,0.0751128 -1507,5715:468,-158,-76,0,0,0.0751059 -1508,5715:467,-157,-76,0,0,0.0751128 -1509,5715:466,-156,-76,0,0,0.0751272 -1510,5715:465,-155,-76,0,0,0.0751272 -1511,5715:364,-154,-76,0,0,0.0751416 -1512,5715:363,-153,-76,0,0,0.0751558 -1513,5715:362,-152,-76,0,0,0.075163 -1514,5715:361,-151,-76,0,0,0.075163 -1515,5715:360,-150,-76,0,0,0.0751558 -1516,5714:469,-149,-76,0,0,0.0751558 -1517,5714:468,-148,-76,0,0,0.075163 -1518,5714:467,-147,-76,0,0,0.0751701 -1519,5714:466,-146,-76,0,0,0.0751701 -1520,5714:465,-145,-76,0,0,0.0751558 -1521,5714:364,-144,-76,0,0,0.0751486 -1522,5714:363,-143,-76,0,0,0.0751558 -1523,5714:362,-142,-76,0,0,0.0751558 -1524,5714:361,-141,-76,0,0,0.0751416 -1525,5714:360,-140,-76,0,0,0.0751344 -1526,5713:469,-139,-76,0,0,0.07512 -1527,5713:468,-138,-76,0,0,0.0751059 -1528,5713:467,-137,-76,0,0,0.0750987 -1529,5713:466,-136,-76,0,0,0.0750915 -1530,5713:465,-135,-76,0,0,0.0750702 -1531,5713:364,-134,-76,0,0,0.0750416 -1532,5713:363,-133,-76,0,0,0.0750488 -1533,5713:362,-132,-76,0,0,0.0752844 -1534,5713:361,-131,-76,0,0,0.0790444 -1535,5713:360,-130,-76,0,0,0.0808658 -1536,5712:469,-129,-76,0,0,0.0833984 -1537,5712:468,-128,-76,0,0,0.0821503 -1538,5711:467,-117,-76,0,0,0.0752631 -1539,5711:465,-115,-76,0,0,0.0772606 -1540,5711:363,-113,-76,0,0,0.0838865 -1541,5711:362,-112,-76,0,0,0.0835949 -1542,5711:361,-111,-76,0,0,0.0856883 -1543,5711:360,-110,-76,0,0,0.0858897 -1544,5710:467,-107,-76,0,0,0.075729 -1545,5710:466,-106,-76,0,0,0.0752916 -1546,5710:465,-105,-76,0,0,0.0752844 -1547,5710:364,-104,-76,0,0,0.0764803 -1548,5710:363,-103,-76,0,0,0.0809726 -1549,5710:362,-102,-76,0,0,0.0821503 -1550,5706:361,-61,-76,0,0,0.0754061 -1551,5706:360,-60,-76,0,0,0.0752487 -1552,5705:469,-59,-76,0,0,0.0750488 -1553,5705:468,-58,-76,0,0,0.0749775 -1554,5705:467,-57,-76,0,0,0.0749418 -1555,5705:466,-56,-76,0,0,0.0749346 -1556,5705:465,-55,-76,0,0,0.0749346 -1557,5705:364,-54,-76,0,0,0.0749418 -1558,5705:363,-53,-76,0,0,0.0749562 -1559,5705:362,-52,-76,0,0,0.0749703 -1560,5705:361,-51,-76,0,0,0.0749775 -1561,5705:360,-50,-76,0,0,0.0749846 -1562,5704:469,-49,-76,0,0,0.0749846 -1563,5704:468,-48,-76,0,0,0.0749846 -1564,5704:467,-47,-76,0,0,0.0749775 -1565,5704:466,-46,-76,0,0,0.0749916 -1566,5704:465,-45,-76,0,0,0.0750131 -1567,5704:364,-44,-76,0,0,0.0750345 -1568,5704:363,-43,-76,0,0,0.0750345 -1569,5704:362,-42,-76,0,0,0.0750416 -1570,5704:361,-41,-76,0,0,0.0750416 -1571,5704:360,-40,-76,0,0,0.0750488 -1572,5703:469,-39,-76,0,0,0.0750488 -1573,5703:468,-38,-76,0,0,0.0750488 -1574,5703:467,-37,-76,0,0,0.0750488 -1575,5703:466,-36,-76,0,0,0.0750488 -1576,5703:465,-35,-76,0,0,0.0750488 -1577,5703:364,-34,-76,0,0,0.0750558 -1578,5703:363,-33,-76,0,0,0.0750558 -1579,5703:362,-32,-76,0,0,0.0750558 -1580,5703:361,-31,-76,0,0,0.0750488 -1581,5703:360,-30,-76,0,0,0.0750488 -1582,5702:469,-29,-76,0,0,0.0750488 -1583,5702:468,-28,-76,0,0,0.0750416 -1584,5702:467,-27,-76,0,0,0.0750345 -1585,5702:466,-26,-76,0,0,0.0750345 -1586,5702:465,-25,-76,0,0,0.0754348 -1587,5702:364,-24,-76,0,0,0.0767785 -1588,5702:363,-23,-76,0,0,0.0782775 -1589,5702:362,-22,-76,0,0,0.0828814 -1590,5702:361,-21,-76,0,0,0.0866349 -1591,3716:467,167,-76,0,0,0.0752273 -1592,3716:468,168,-76,0,0,0.0750416 -1593,3716:469,169,-76,0,0,0.0749916 -1594,3717:360,170,-76,0,0,0.0749988 -1595,3717:361,171,-76,0,0,0.074892 -1596,3717:362,172,-76,0,0,0.0763427 -1597,3717:363,173,-76,0,0,0.0795393 -1598,3717:364,174,-76,0,0,0.0850706 -1599,3717:465,175,-76,0,0,0.086651 -1600,3717:466,176,-76,0,0,0.0858252 -1601,3717:467,177,-76,0,0,0.0754133 -1602,3717:468,178,-76,0,0,0.0748777 -1603,3717:469,179,-76,0,0,0.0749346 -1604,3718:360,180,-76,0,0,0.0749775 -1605,5718:350,-180,-75,0,0,0.0749775 -1606,5717:459,-179,-75,0,0,0.0749988 -1607,5717:458,-178,-75,0,0,0.0750273 -1608,5717:457,-177,-75,0,0,0.0750345 -1609,5717:456,-176,-75,0,0,0.0750488 -1610,5717:455,-175,-75,0,0,0.0750488 -1611,5717:354,-174,-75,0,0,0.075063 -1612,5717:353,-173,-75,0,0,0.075063 -1613,5717:352,-172,-75,0,0,0.0750558 -1614,5717:351,-171,-75,0,0,0.0750558 -1615,5717:350,-170,-75,0,0,0.075063 -1616,5716:459,-169,-75,0,0,0.075063 -1617,5716:458,-168,-75,0,0,0.075063 -1618,5716:457,-167,-75,0,0,0.0750702 -1619,5716:456,-166,-75,0,0,0.0750702 -1620,5716:455,-165,-75,0,0,0.0750773 -1621,5716:354,-164,-75,0,0,0.0750843 -1622,5716:353,-163,-75,0,0,0.0750843 -1623,5716:352,-162,-75,0,0,0.0750843 -1624,5716:351,-161,-75,0,0,0.0750843 -1625,5716:350,-160,-75,0,0,0.0750843 -1626,5715:459,-159,-75,0,0,0.0750843 -1627,5715:458,-158,-75,0,0,0.0750915 -1628,5715:457,-157,-75,0,0,0.0751059 -1629,5715:456,-156,-75,0,0,0.0751128 -1630,5715:455,-155,-75,0,0,0.0751272 -1631,5715:354,-154,-75,0,0,0.0751272 -1632,5715:353,-153,-75,0,0,0.0751272 -1633,5715:352,-152,-75,0,0,0.0751486 -1634,5715:351,-151,-75,0,0,0.0751558 -1635,5715:350,-150,-75,0,0,0.0751486 -1636,5714:459,-149,-75,0,0,0.0751558 -1637,5714:458,-148,-75,0,0,0.075163 -1638,5714:457,-147,-75,0,0,0.0751701 -1639,5714:456,-146,-75,0,0,0.0751843 -1640,5714:455,-145,-75,0,0,0.0751843 -1641,5714:354,-144,-75,0,0,0.0751843 -1642,5714:353,-143,-75,0,0,0.0751843 -1643,5714:352,-142,-75,0,0,0.0751771 -1644,5714:351,-141,-75,0,0,0.0751771 -1645,5714:350,-140,-75,0,0,0.0751771 -1646,5713:459,-139,-75,0,0,0.0751558 -1647,5713:458,-138,-75,0,0,0.0751272 -1648,5713:457,-137,-75,0,0,0.0750987 -1649,5713:456,-136,-75,0,0,0.0750843 -1650,5713:455,-135,-75,0,0,0.0750345 -1651,5713:354,-134,-75,0,0,0.0750416 -1652,5713:353,-133,-75,0,0,0.075063 -1653,5713:352,-132,-75,0,0,0.0750915 -1654,5713:351,-131,-75,0,0,0.075163 -1655,5713:350,-130,-75,0,0,0.0754779 -1656,5712:459,-129,-75,0,0,0.0775539 -1657,5712:458,-128,-75,0,0,0.0755207 -1658,5712:354,-124,-75,0,0,0.0766328 -1659,5712:353,-123,-75,0,0,0.0758515 -1660,5712:352,-122,-75,0,0,0.0753203 -1661,5712:351,-121,-75,0,0,0.0753989 -1662,5712:350,-120,-75,0,0,0.0753203 -1663,5711:459,-119,-75,0,0,0.0753703 -1664,5711:458,-118,-75,0,0,0.0753203 -1665,5711:457,-117,-75,0,0,0.0751987 -1666,5711:456,-116,-75,0,0,0.0752559 -1667,5711:455,-115,-75,0,0,0.0763643 -1668,5711:354,-114,-75,0,0,0.077635 -1669,5711:353,-113,-75,0,0,0.0795545 -1670,5711:352,-112,-75,0,0,0.0751771 -1671,5711:351,-111,-75,0,0,0.0754061 -1672,5710:458,-108,-75,0,0,0.0756787 -1673,5710:457,-107,-75,0,0,0.0753489 -1674,5710:456,-106,-75,0,0,0.0752559 -1675,5710:455,-105,-75,0,0,0.0753703 -1676,5710:354,-104,-75,0,0,0.0787234 -1677,5710:353,-103,-75,0,0,0.0813097 -1678,5708:353,-83,-75,0,0,0.0902963 -1679,5708:352,-82,-75,0,0,0.0903556 -1680,5706:350,-60,-75,0,0,0.0752844 -1681,5705:459,-59,-75,0,0,0.0750131 -1682,5705:458,-58,-75,0,0,0.0749703 -1683,5705:457,-57,-75,0,0,0.074949 -1684,5705:456,-56,-75,0,0,0.074949 -1685,5705:455,-55,-75,0,0,0.0749346 -1686,5705:354,-54,-75,0,0,0.0749418 -1687,5705:353,-53,-75,0,0,0.0749631 -1688,5705:352,-52,-75,0,0,0.0749703 -1689,5705:351,-51,-75,0,0,0.0749916 -1690,5705:350,-50,-75,0,0,0.0749988 -1691,5704:459,-49,-75,0,0,0.0749988 -1692,5704:458,-48,-75,0,0,0.0749988 -1693,5704:457,-47,-75,0,0,0.075006 -1694,5704:456,-46,-75,0,0,0.0750131 -1695,5704:455,-45,-75,0,0,0.0750273 -1696,5704:354,-44,-75,0,0,0.0750416 -1697,5704:353,-43,-75,0,0,0.0750488 -1698,5704:352,-42,-75,0,0,0.0750558 -1699,5704:351,-41,-75,0,0,0.0750558 -1700,5704:350,-40,-75,0,0,0.0750558 -1701,5703:459,-39,-75,0,0,0.0750558 -1702,5703:458,-38,-75,0,0,0.0750488 -1703,5703:457,-37,-75,0,0,0.0750416 -1704,5703:456,-36,-75,0,0,0.0750416 -1705,5703:455,-35,-75,0,0,0.0750416 -1706,5703:354,-34,-75,0,0,0.0750416 -1707,5703:353,-33,-75,0,0,0.0750416 -1708,5703:352,-32,-75,0,0,0.0750416 -1709,5703:351,-31,-75,0,0,0.0750416 -1710,5703:350,-30,-75,0,0,0.0750345 -1711,5702:459,-29,-75,0,0,0.0750273 -1712,5702:458,-28,-75,0,0,0.0750273 -1713,5702:457,-27,-75,0,0,0.0750201 -1714,5702:456,-26,-75,0,0,0.0750131 -1715,5702:455,-25,-75,0,0,0.0749988 -1716,5702:354,-24,-75,0,0,0.0749846 -1717,5702:353,-23,-75,0,0,0.0754706 -1718,5702:352,-22,-75,0,0,0.077937 -1719,5702:351,-21,-75,0,0,0.0846637 -1720,5702:350,-20,-75,0,0,0.0867568 -1721,3716:458,168,-75,0,0,0.0754779 -1722,3716:459,169,-75,0,0,0.0753775 -1723,3717:350,170,-75,0,0,0.0751128 -1724,3717:351,171,-75,0,0,0.074949 -1725,3717:352,172,-75,0,0,0.0749133 -1726,3717:353,173,-75,0,0,0.0766839 -1727,3717:354,174,-75,0,0,0.0805836 -1728,3717:455,175,-75,0,0,0.0810721 -1729,3717:456,176,-75,0,0,0.0829675 -1730,3717:457,177,-75,0,0,0.0764223 -1731,3717:458,178,-75,0,0,0.074892 -1732,3717:459,179,-75,0,0,0.0749346 -1733,3718:350,180,-75,0,0,0.0749775 -1734,5718:140,-180,-74,0,0,0.0749703 -1735,5717:249,-179,-74,0,0,0.075006 -1736,5717:248,-178,-74,0,0,0.0750201 -1737,5717:247,-177,-74,0,0,0.0750416 -1738,5717:246,-176,-74,0,0,0.0750416 -1739,5717:245,-175,-74,0,0,0.0750416 -1740,5717:144,-174,-74,0,0,0.0750558 -1741,5717:143,-173,-74,0,0,0.0750558 -1742,5717:142,-172,-74,0,0,0.0750488 -1743,5717:141,-171,-74,0,0,0.0750488 -1744,5717:140,-170,-74,0,0,0.0750416 -1745,5716:249,-169,-74,0,0,0.0750488 -1746,5716:248,-168,-74,0,0,0.0750558 -1747,5716:247,-167,-74,0,0,0.0750558 -1748,5716:246,-166,-74,0,0,0.075063 -1749,5716:245,-165,-74,0,0,0.0750702 -1750,5716:144,-164,-74,0,0,0.0750843 -1751,5716:143,-163,-74,0,0,0.0750843 -1752,5716:142,-162,-74,0,0,0.0750987 -1753,5716:141,-161,-74,0,0,0.0750987 -1754,5716:140,-160,-74,0,0,0.0751128 -1755,5715:249,-159,-74,0,0,0.07512 -1756,5715:248,-158,-74,0,0,0.07512 -1757,5715:247,-157,-74,0,0,0.0751272 -1758,5715:246,-156,-74,0,0,0.0751344 -1759,5715:245,-155,-74,0,0,0.0751272 -1760,5715:144,-154,-74,0,0,0.07512 -1761,5715:143,-153,-74,0,0,0.07512 -1762,5715:142,-152,-74,0,0,0.0751416 -1763,5715:141,-151,-74,0,0,0.0751486 -1764,5715:140,-150,-74,0,0,0.0751558 -1765,5714:249,-149,-74,0,0,0.0751558 -1766,5714:248,-148,-74,0,0,0.075163 -1767,5714:247,-147,-74,0,0,0.075163 -1768,5714:246,-146,-74,0,0,0.0751701 -1769,5714:245,-145,-74,0,0,0.0751701 -1770,5714:144,-144,-74,0,0,0.0751701 -1771,5714:143,-143,-74,0,0,0.0751843 -1772,5714:142,-142,-74,0,0,0.0751843 -1773,5714:141,-141,-74,0,0,0.0751771 -1774,5714:140,-140,-74,0,0,0.0751987 -1775,5713:249,-139,-74,0,0,0.0752057 -1776,5713:248,-138,-74,0,0,0.0751701 -1777,5713:247,-137,-74,0,0,0.0751416 -1778,5713:246,-136,-74,0,0,0.07512 -1779,5713:245,-135,-74,0,0,0.0750987 -1780,5713:144,-134,-74,0,0,0.075063 -1781,5713:143,-133,-74,0,0,0.0750702 -1782,5713:142,-132,-74,0,0,0.0750915 -1783,5713:141,-131,-74,0,0,0.0750915 -1784,5713:140,-130,-74,0,0,0.0751128 -1785,5712:249,-129,-74,0,0,0.0751416 -1786,5712:248,-128,-74,0,0,0.0751701 -1787,5712:247,-127,-74,0,0,0.0752057 -1788,5712:246,-126,-74,0,0,0.0752772 -1789,5712:245,-125,-74,0,0,0.0753631 -1790,5712:144,-124,-74,0,0,0.0753417 -1791,5712:143,-123,-74,0,0,0.0752772 -1792,5712:142,-122,-74,0,0,0.0752559 -1793,5712:141,-121,-74,0,0,0.0751987 -1794,5712:140,-120,-74,0,0,0.075163 -1795,5711:249,-119,-74,0,0,0.0751771 -1796,5711:248,-118,-74,0,0,0.0751701 -1797,5711:247,-117,-74,0,0,0.0751272 -1798,5711:246,-116,-74,0,0,0.0751272 -1799,5711:245,-115,-74,0,0,0.0751272 -1800,5711:144,-114,-74,0,0,0.0750843 -1801,5711:143,-113,-74,0,0,0.0750488 -1802,5711:142,-112,-74,0,0,0.0750201 -1803,5711:141,-111,-74,0,0,0.075063 -1804,5711:140,-110,-74,0,0,0.0751059 -1805,5710:249,-109,-74,0,0,0.0753058 -1806,5710:248,-108,-74,0,0,0.0752273 -1807,5710:247,-107,-74,0,0,0.0752129 -1808,5710:246,-106,-74,0,0,0.0752559 -1809,5710:245,-105,-74,0,0,0.0756932 -1810,5710:144,-104,-74,0,0,0.0807207 -1811,5708:245,-85,-74,0,0,0.0878867 -1812,5708:144,-84,-74,0,0,0.0860028 -1813,5708:143,-83,-74,0,0,0.083524 -1814,5708:142,-82,-74,0,0,0.0852306 -1815,5708:141,-81,-74,0,0,0.0884319 -1816,5705:249,-59,-74,0,0,0.0751843 -1817,5705:248,-58,-74,0,0,0.0749775 -1818,5705:247,-57,-74,0,0,0.0749631 -1819,5705:246,-56,-74,0,0,0.074949 -1820,5705:245,-55,-74,0,0,0.074949 -1821,5705:144,-54,-74,0,0,0.074949 -1822,5705:143,-53,-74,0,0,0.0749631 -1823,5705:142,-52,-74,0,0,0.0749631 -1824,5705:141,-51,-74,0,0,0.0749775 -1825,5705:140,-50,-74,0,0,0.075006 -1826,5704:249,-49,-74,0,0,0.0750201 -1827,5704:248,-48,-74,0,0,0.0750131 -1828,5704:247,-47,-74,0,0,0.075006 -1829,5704:246,-46,-74,0,0,0.0750273 -1830,5704:245,-45,-74,0,0,0.0750416 -1831,5704:144,-44,-74,0,0,0.0750488 -1832,5704:143,-43,-74,0,0,0.0750558 -1833,5704:142,-42,-74,0,0,0.0750558 -1834,5704:141,-41,-74,0,0,0.0750558 -1835,5704:140,-40,-74,0,0,0.0750558 -1836,5703:249,-39,-74,0,0,0.0750488 -1837,5703:248,-38,-74,0,0,0.0750416 -1838,5703:247,-37,-74,0,0,0.0750345 -1839,5703:246,-36,-74,0,0,0.0750273 -1840,5703:245,-35,-74,0,0,0.0750273 -1841,5703:144,-34,-74,0,0,0.0750201 -1842,5703:143,-33,-74,0,0,0.0750201 -1843,5703:142,-32,-74,0,0,0.0750273 -1844,5703:141,-31,-74,0,0,0.0750273 -1845,5703:140,-30,-74,0,0,0.0750201 -1846,5702:249,-29,-74,0,0,0.0750131 -1847,5702:248,-28,-74,0,0,0.0750131 -1848,5702:247,-27,-74,0,0,0.0750131 -1849,5702:246,-26,-74,0,0,0.0750131 -1850,5702:245,-25,-74,0,0,0.0750131 -1851,5702:144,-24,-74,0,0,0.0749988 -1852,5702:143,-23,-74,0,0,0.0749775 -1853,5702:142,-22,-74,0,0,0.0749846 -1854,5702:141,-21,-74,0,0,0.0749775 -1855,5702:140,-20,-74,0,0,0.0758082 -1856,3717:140,170,-74,0,0,0.0749988 -1857,3717:141,171,-74,0,0,0.0749562 -1858,3717:142,172,-74,0,0,0.0749562 -1859,3717:143,173,-74,0,0,0.0763716 -1860,3717:144,174,-74,0,0,0.0784555 -1861,3717:245,175,-74,0,0,0.0797202 -1862,3717:246,176,-74,0,0,0.0760172 -1863,3717:247,177,-74,0,0,0.0748777 -1864,3717:248,178,-74,0,0,0.0748849 -1865,3717:249,179,-74,0,0,0.0749346 -1866,3718:140,180,-74,0,0,0.0749703 -1867,5718:130,-180,-73,0,0,0.0749703 -1868,5717:239,-179,-73,0,0,0.0749988 -1869,5717:238,-178,-73,0,0,0.0750131 -1870,5717:237,-177,-73,0,0,0.0750201 -1871,5717:236,-176,-73,0,0,0.0750345 -1872,5717:235,-175,-73,0,0,0.0750345 -1873,5717:134,-174,-73,0,0,0.0750416 -1874,5717:133,-173,-73,0,0,0.075063 -1875,5717:132,-172,-73,0,0,0.0750558 -1876,5717:131,-171,-73,0,0,0.0750416 -1877,5717:130,-170,-73,0,0,0.0750345 -1878,5716:239,-169,-73,0,0,0.0750416 -1879,5716:238,-168,-73,0,0,0.0750416 -1880,5716:237,-167,-73,0,0,0.0750416 -1881,5716:236,-166,-73,0,0,0.0750488 -1882,5716:235,-165,-73,0,0,0.075063 -1883,5716:134,-164,-73,0,0,0.0750773 -1884,5716:133,-163,-73,0,0,0.0750843 -1885,5716:132,-162,-73,0,0,0.0750915 -1886,5716:131,-161,-73,0,0,0.0750987 -1887,5716:130,-160,-73,0,0,0.0751059 -1888,5715:239,-159,-73,0,0,0.0751128 -1889,5715:238,-158,-73,0,0,0.0751272 -1890,5715:237,-157,-73,0,0,0.0751272 -1891,5715:236,-156,-73,0,0,0.0751272 -1892,5715:235,-155,-73,0,0,0.0751272 -1893,5715:134,-154,-73,0,0,0.07512 -1894,5715:133,-153,-73,0,0,0.07512 -1895,5715:132,-152,-73,0,0,0.0751272 -1896,5715:131,-151,-73,0,0,0.0751416 -1897,5715:130,-150,-73,0,0,0.075163 -1898,5714:239,-149,-73,0,0,0.0751771 -1899,5714:238,-148,-73,0,0,0.0751843 -1900,5714:237,-147,-73,0,0,0.0751915 -1901,5714:236,-146,-73,0,0,0.0752057 -1902,5714:235,-145,-73,0,0,0.0752057 -1903,5714:134,-144,-73,0,0,0.0751987 -1904,5714:133,-143,-73,0,0,0.0751915 -1905,5714:132,-142,-73,0,0,0.0751915 -1906,5714:131,-141,-73,0,0,0.0751701 -1907,5714:130,-140,-73,0,0,0.0751558 -1908,5713:239,-139,-73,0,0,0.0751987 -1909,5713:238,-138,-73,0,0,0.0752844 -1910,5713:237,-137,-73,0,0,0.07527 -1911,5713:236,-136,-73,0,0,0.0752273 -1912,5713:235,-135,-73,0,0,0.0751558 -1913,5713:134,-134,-73,0,0,0.075063 -1914,5713:133,-133,-73,0,0,0.0750416 -1915,5713:132,-132,-73,0,0,0.0750773 -1916,5713:131,-131,-73,0,0,0.07512 -1917,5713:130,-130,-73,0,0,0.0751344 -1918,5712:239,-129,-73,0,0,0.0751416 -1919,5712:238,-128,-73,0,0,0.0751486 -1920,5712:237,-127,-73,0,0,0.0751701 -1921,5712:236,-126,-73,0,0,0.0752273 -1922,5712:235,-125,-73,0,0,0.0752343 -1923,5712:134,-124,-73,0,0,0.0751771 -1924,5712:133,-123,-73,0,0,0.0751701 -1925,5712:132,-122,-73,0,0,0.0751558 -1926,5712:131,-121,-73,0,0,0.0751486 -1927,5712:130,-120,-73,0,0,0.0751416 -1928,5711:239,-119,-73,0,0,0.0751344 -1929,5711:238,-118,-73,0,0,0.0751272 -1930,5711:237,-117,-73,0,0,0.0751128 -1931,5711:236,-116,-73,0,0,0.0750987 -1932,5711:235,-115,-73,0,0,0.0750915 -1933,5711:134,-114,-73,0,0,0.0750773 -1934,5711:133,-113,-73,0,0,0.0750702 -1935,5711:132,-112,-73,0,0,0.0750558 -1936,5711:131,-111,-73,0,0,0.075063 -1937,5711:130,-110,-73,0,0,0.0751059 -1938,5710:239,-109,-73,0,0,0.0751416 -1939,5710:238,-108,-73,0,0,0.0751701 -1940,5710:237,-107,-73,0,0,0.0752201 -1941,5710:236,-106,-73,0,0,0.0755207 -4084,5615:124,-154,-62,0,0,0.07512 -1942,5710:235,-105,-73,0,0,0.0795244 -1943,5710:134,-104,-73,0,0,0.0808353 -1944,5708:238,-88,-73,0,0,0.0757435 -1945,5708:237,-87,-73,0,0,0.0761689 -1946,5708:236,-86,-73,0,0,0.0804088 -1947,5708:235,-85,-73,0,0,0.0771507 -1948,5708:134,-84,-73,0,0,0.0756645 -1949,5708:133,-83,-73,0,0,0.0751344 -1950,5708:132,-82,-73,0,0,0.077224 -1951,5708:131,-81,-73,0,0,0.0777012 -1952,5708:130,-80,-73,0,0,0.0796298 -1953,5707:239,-79,-73,0,0,0.0822742 -1954,5707:235,-75,-73,0,0,0.0795393 -1955,5707:134,-74,-73,0,0,0.0829675 -1956,5707:133,-73,-73,0,0,0.0876811 -1957,5706:130,-60,-73,0,0,0.075313 -1958,5705:239,-59,-73,0,0,0.07512 -1959,5705:238,-58,-73,0,0,0.075006 -1960,5705:237,-57,-73,0,0,0.0749703 -1961,5705:236,-56,-73,0,0,0.0749631 -1962,5705:235,-55,-73,0,0,0.0749562 -1963,5705:134,-54,-73,0,0,0.0749562 -1964,5705:133,-53,-73,0,0,0.0749916 -1965,5705:132,-52,-73,0,0,0.0749988 -1966,5705:131,-51,-73,0,0,0.075006 -1967,5705:130,-50,-73,0,0,0.0750345 -1968,5704:239,-49,-73,0,0,0.0750201 -1969,5704:238,-48,-73,0,0,0.0750131 -1970,5704:237,-47,-73,0,0,0.0750345 -1971,5704:236,-46,-73,0,0,0.0750488 -1972,5704:235,-45,-73,0,0,0.0750488 -1973,5704:134,-44,-73,0,0,0.0750558 -1974,5704:133,-43,-73,0,0,0.0750558 -1975,5704:132,-42,-73,0,0,0.0750558 -1976,5704:131,-41,-73,0,0,0.0750488 -1977,5704:130,-40,-73,0,0,0.0750416 -1978,5703:239,-39,-73,0,0,0.0750345 -1979,5703:238,-38,-73,0,0,0.0750273 -1980,5703:237,-37,-73,0,0,0.0750201 -1981,5703:236,-36,-73,0,0,0.0750131 -1982,5703:235,-35,-73,0,0,0.0750131 -1983,5703:134,-34,-73,0,0,0.0750131 -1984,5703:133,-33,-73,0,0,0.075006 -1985,5703:132,-32,-73,0,0,0.0750131 -1986,5703:131,-31,-73,0,0,0.0750131 -1987,5703:130,-30,-73,0,0,0.075006 -1988,5702:239,-29,-73,0,0,0.075006 -1989,5702:238,-28,-73,0,0,0.0749988 -1990,5702:237,-27,-73,0,0,0.0749916 -1991,5702:236,-26,-73,0,0,0.0749988 -1992,5702:235,-25,-73,0,0,0.075006 -1993,5702:134,-24,-73,0,0,0.075006 -1994,5702:133,-23,-73,0,0,0.0750131 -1995,5702:132,-22,-73,0,0,0.0750131 -1996,5702:131,-21,-73,0,0,0.0750131 -1997,5702:130,-20,-73,0,0,0.0750131 -1998,5701:239,-19,-73,0,0,0.0750843 -1999,5701:238,-18,-73,0,0,0.0751344 -2000,5701:237,-17,-73,0,0,0.0752057 -2001,3717:131,171,-73,0,0,0.0751558 -2002,3717:132,172,-73,0,0,0.0750416 -2003,3717:133,173,-73,0,0,0.0750843 -2004,3717:134,174,-73,0,0,0.0775172 -2005,3717:235,175,-73,0,0,0.0752916 -2006,3717:236,176,-73,0,0,0.0747284 -2007,3717:237,177,-73,0,0,0.0748208 -2008,3717:238,178,-73,0,0,0.0748849 -2009,3717:239,179,-73,0,0,0.0749346 -2010,3718:130,180,-73,0,0,0.0749703 -2011,5718:120,-180,-72,0,0,0.0749631 -2012,5717:229,-179,-72,0,0,0.0749916 -2013,5717:228,-178,-72,0,0,0.075006 -2014,5717:227,-177,-72,0,0,0.0750201 -2015,5717:226,-176,-72,0,0,0.0750345 -2016,5717:225,-175,-72,0,0,0.075063 -2017,5717:124,-174,-72,0,0,0.0750702 -2018,5717:123,-173,-72,0,0,0.0750773 -2019,5717:122,-172,-72,0,0,0.075063 -2020,5717:121,-171,-72,0,0,0.0750416 -2021,5717:120,-170,-72,0,0,0.0750416 -2022,5716:229,-169,-72,0,0,0.0750416 -2023,5716:228,-168,-72,0,0,0.0750345 -2024,5716:227,-167,-72,0,0,0.0750345 -2025,5716:226,-166,-72,0,0,0.0750416 -2026,5716:225,-165,-72,0,0,0.0750488 -2027,5716:124,-164,-72,0,0,0.075063 -2028,5716:123,-163,-72,0,0,0.0750702 -2029,5716:122,-162,-72,0,0,0.0750773 -2030,5716:121,-161,-72,0,0,0.0750773 -2031,5716:120,-160,-72,0,0,0.0750843 -2032,5715:229,-159,-72,0,0,0.0750915 -2033,5715:228,-158,-72,0,0,0.0750987 -2034,5715:227,-157,-72,0,0,0.0751128 -2035,5715:226,-156,-72,0,0,0.0751272 -2036,5715:225,-155,-72,0,0,0.07512 -2037,5715:124,-154,-72,0,0,0.0751272 -2038,5715:123,-153,-72,0,0,0.07512 -2039,5715:122,-152,-72,0,0,0.0751272 -2040,5715:121,-151,-72,0,0,0.0751416 -2041,5715:120,-150,-72,0,0,0.0751558 -2042,5714:229,-149,-72,0,0,0.0751701 -2043,5714:228,-148,-72,0,0,0.0751771 -2044,5714:227,-147,-72,0,0,0.0751843 -2045,5714:226,-146,-72,0,0,0.0751987 -2046,5714:225,-145,-72,0,0,0.0751987 -2047,5714:124,-144,-72,0,0,0.0752129 -2048,5714:123,-143,-72,0,0,0.0752201 -2049,5714:122,-142,-72,0,0,0.0752057 -2050,5714:121,-141,-72,0,0,0.0751771 -2051,5714:120,-140,-72,0,0,0.0751344 -2052,5713:229,-139,-72,0,0,0.07512 -2053,5713:228,-138,-72,0,0,0.0751128 -2054,5713:227,-137,-72,0,0,0.0751344 -2055,5713:226,-136,-72,0,0,0.0752772 -2056,5713:225,-135,-72,0,0,0.0755135 -2057,5713:124,-134,-72,0,0,0.0751558 -2058,5713:123,-133,-72,0,0,0.0750416 -2059,5713:122,-132,-72,0,0,0.0750702 -2060,5713:121,-131,-72,0,0,0.0751059 -2061,5713:120,-130,-72,0,0,0.0751344 -2062,5712:229,-129,-72,0,0,0.0751558 -2063,5712:228,-128,-72,0,0,0.0751558 -2064,5712:227,-127,-72,0,0,0.0751558 -2065,5712:226,-126,-72,0,0,0.0751558 -2066,5712:225,-125,-72,0,0,0.0751558 -2067,5712:124,-124,-72,0,0,0.075163 -2068,5712:123,-123,-72,0,0,0.075163 -2069,5712:122,-122,-72,0,0,0.0751558 -2070,5712:121,-121,-72,0,0,0.0751486 -2071,5712:120,-120,-72,0,0,0.0751344 -2072,5711:229,-119,-72,0,0,0.07512 -2073,5711:228,-118,-72,0,0,0.0751128 -2074,5711:227,-117,-72,0,0,0.0751059 -2075,5711:226,-116,-72,0,0,0.0750987 -2076,5711:225,-115,-72,0,0,0.0750915 -2077,5711:124,-114,-72,0,0,0.0750843 -2078,5711:123,-113,-72,0,0,0.0750773 -2079,5711:122,-112,-72,0,0,0.0750773 -2080,5711:121,-111,-72,0,0,0.0750843 -2081,5711:120,-110,-72,0,0,0.0750987 -2082,5710:229,-109,-72,0,0,0.0751128 -2083,5710:228,-108,-72,0,0,0.0751272 -2084,5710:227,-107,-72,0,0,0.0751344 -2085,5710:226,-106,-72,0,0,0.0752343 -2086,5710:225,-105,-72,0,0,0.0770849 -2087,5710:124,-104,-72,0,0,0.0783218 -2088,5710:123,-103,-72,0,0,0.0787159 -2089,5709:225,-95,-72,0,0,0.0756428 -2090,5709:124,-94,-72,0,0,0.0752487 -2091,5709:123,-93,-72,0,0,0.0752201 -2092,5709:122,-92,-72,0,0,0.0752343 -2093,5709:121,-91,-72,0,0,0.0752631 -2094,5709:120,-90,-72,0,0,0.07527 -2095,5708:229,-89,-72,0,0,0.0752559 -2096,5708:228,-88,-72,0,0,0.0752559 -2097,5708:227,-87,-72,0,0,0.0752631 -2098,5708:226,-86,-72,0,0,0.0751771 -2099,5708:225,-85,-72,0,0,0.0750345 -2100,5708:124,-84,-72,0,0,0.0760822 -2101,5708:123,-83,-72,0,0,0.0769681 -2102,5708:122,-82,-72,0,0,0.0764732 -2103,5708:121,-81,-72,0,0,0.0775613 -2104,5708:120,-80,-72,0,0,0.0770775 -2105,5707:229,-79,-72,0,0,0.0770775 -2106,5707:228,-78,-72,0,0,0.0770117 -2107,5707:227,-77,-72,0,0,0.0805912 -2108,5707:226,-76,-72,0,0,0.0820961 -2109,5707:225,-75,-72,0,0,0.0824297 -2110,5707:124,-74,-72,0,0,0.0878126 -2111,5706:120,-60,-72,0,0,0.0753489 -2112,5705:229,-59,-72,0,0,0.0751059 -2113,5705:228,-58,-72,0,0,0.0749916 -2114,5705:227,-57,-72,0,0,0.0749775 -2115,5705:226,-56,-72,0,0,0.0749703 -2116,5705:225,-55,-72,0,0,0.0749775 -2117,5705:124,-54,-72,0,0,0.075006 -2118,5705:123,-53,-72,0,0,0.0750345 -2119,5705:122,-52,-72,0,0,0.0750345 -2120,5705:121,-51,-72,0,0,0.0750345 -2121,5705:120,-50,-72,0,0,0.0750345 -2122,5704:229,-49,-72,0,0,0.0750416 -2123,5704:228,-48,-72,0,0,0.0750488 -2124,5704:227,-47,-72,0,0,0.0750488 -2125,5704:226,-46,-72,0,0,0.0750488 -2126,5704:225,-45,-72,0,0,0.0750558 -2127,5704:124,-44,-72,0,0,0.0750488 -2128,5704:123,-43,-72,0,0,0.0750488 -2129,5704:122,-42,-72,0,0,0.0750416 -2130,5704:121,-41,-72,0,0,0.0750345 -2131,5704:120,-40,-72,0,0,0.0750201 -2132,5703:229,-39,-72,0,0,0.0750131 -2133,5703:228,-38,-72,0,0,0.0750131 -2134,5703:227,-37,-72,0,0,0.0750131 -2135,5703:226,-36,-72,0,0,0.0750131 -2136,5703:225,-35,-72,0,0,0.0750131 -2137,5703:124,-34,-72,0,0,0.0750131 -2138,5703:123,-33,-72,0,0,0.075006 -2139,5703:122,-32,-72,0,0,0.075006 -2140,5703:121,-31,-72,0,0,0.075006 -2141,5703:120,-30,-72,0,0,0.0750131 -2142,5702:229,-29,-72,0,0,0.0750131 -2143,5702:228,-28,-72,0,0,0.075006 -2144,5702:227,-27,-72,0,0,0.0749988 -2145,5702:226,-26,-72,0,0,0.0749916 -2146,5702:225,-25,-72,0,0,0.0749846 -2147,5702:124,-24,-72,0,0,0.0749846 -2148,5702:123,-23,-72,0,0,0.0749916 -2149,5702:122,-22,-72,0,0,0.0749988 -2150,5702:121,-21,-72,0,0,0.075006 -2151,5702:120,-20,-72,0,0,0.075006 -2152,5701:229,-19,-72,0,0,0.075006 -2153,5701:228,-18,-72,0,0,0.075006 -2154,5701:227,-17,-72,0,0,0.0750131 -2155,5701:226,-16,-72,0,0,0.0750987 -2156,5701:225,-15,-72,0,0,0.0749133 -2157,3717:121,171,-72,0,0,0.075163 -2158,3717:122,172,-72,0,0,0.075006 -2159,3717:123,173,-72,0,0,0.0753344 -2160,3717:124,174,-72,0,0,0.0755567 -2161,3717:225,175,-72,0,0,0.0748636 -2162,3717:226,176,-72,0,0,0.0748705 -2163,3717:227,177,-72,0,0,0.0748849 -2164,3717:228,178,-72,0,0,0.0749062 -2165,3717:229,179,-72,0,0,0.0749275 -2166,3718:120,180,-72,0,0,0.0749631 -2167,5718:110,-180,-71,0,0,0.0749703 -2168,5717:219,-179,-71,0,0,0.0749916 -2169,5717:218,-178,-71,0,0,0.0750131 -2170,5717:217,-177,-71,0,0,0.0750273 -2171,5717:216,-176,-71,0,0,0.0750558 -2172,5717:215,-175,-71,0,0,0.0750843 -2173,5717:114,-174,-71,0,0,0.0750915 -2174,5717:113,-173,-71,0,0,0.0750843 -2175,5717:112,-172,-71,0,0,0.075063 -2176,5717:111,-171,-71,0,0,0.0750558 -2177,5717:110,-170,-71,0,0,0.0750345 -2178,5716:219,-169,-71,0,0,0.0750273 -2179,5716:218,-168,-71,0,0,0.0750201 -2180,5716:217,-167,-71,0,0,0.0750201 -2181,5716:216,-166,-71,0,0,0.0750201 -2182,5716:215,-165,-71,0,0,0.0750273 -2183,5716:114,-164,-71,0,0,0.0750345 -2184,5716:113,-163,-71,0,0,0.0750416 -2185,5716:112,-162,-71,0,0,0.0750488 -2186,5716:111,-161,-71,0,0,0.0750558 -2187,5716:110,-160,-71,0,0,0.075063 -2188,5715:219,-159,-71,0,0,0.075063 -2189,5715:218,-158,-71,0,0,0.075063 -2190,5715:217,-157,-71,0,0,0.0750773 -2191,5715:216,-156,-71,0,0,0.0750915 -2192,5715:215,-155,-71,0,0,0.0751128 -2193,5715:114,-154,-71,0,0,0.0751344 -2194,5715:113,-153,-71,0,0,0.0751344 -2195,5715:112,-152,-71,0,0,0.0751416 -2196,5715:111,-151,-71,0,0,0.0751558 -2197,5715:110,-150,-71,0,0,0.075163 -2198,5714:219,-149,-71,0,0,0.0751701 -2199,5714:218,-148,-71,0,0,0.0751915 -2200,5714:217,-147,-71,0,0,0.0751987 -2201,5714:216,-146,-71,0,0,0.0751843 -2202,5714:215,-145,-71,0,0,0.0751915 -2203,5714:114,-144,-71,0,0,0.0752129 -2204,5714:113,-143,-71,0,0,0.0752129 -2205,5714:112,-142,-71,0,0,0.0752129 -2206,5714:111,-141,-71,0,0,0.0751843 -2207,5714:110,-140,-71,0,0,0.0751344 -2208,5713:219,-139,-71,0,0,0.07512 -2209,5713:218,-138,-71,0,0,0.07512 -2210,5713:217,-137,-71,0,0,0.0753058 -2211,5713:216,-136,-71,0,0,0.0759379 -2212,5713:215,-135,-71,0,0,0.076234 -2213,5713:114,-134,-71,0,0,0.0762848 -2214,5713:113,-133,-71,0,0,0.0759956 -2215,5713:112,-132,-71,0,0,0.075722 -2216,5713:111,-131,-71,0,0,0.0753417 -2217,5713:110,-130,-71,0,0,0.07512 -2218,5712:219,-129,-71,0,0,0.0751486 -2219,5712:218,-128,-71,0,0,0.075163 -2220,5712:217,-127,-71,0,0,0.0751701 -2221,5712:216,-126,-71,0,0,0.0751701 -2222,5712:215,-125,-71,0,0,0.0751771 -2223,5712:114,-124,-71,0,0,0.0751701 -2224,5712:113,-123,-71,0,0,0.0751701 -2225,5712:112,-122,-71,0,0,0.0751701 -2226,5712:111,-121,-71,0,0,0.075163 -2227,5712:110,-120,-71,0,0,0.0751416 -2228,5711:219,-119,-71,0,0,0.0751272 -2229,5711:218,-118,-71,0,0,0.07512 -2230,5711:217,-117,-71,0,0,0.0751059 -2231,5711:216,-116,-71,0,0,0.0750987 -2232,5711:215,-115,-71,0,0,0.0750987 -2233,5711:114,-114,-71,0,0,0.0750987 -2234,5711:113,-113,-71,0,0,0.0750987 -2235,5711:112,-112,-71,0,0,0.0750987 -2236,5711:111,-111,-71,0,0,0.0751059 -2237,5711:110,-110,-71,0,0,0.0751059 -2238,5710:219,-109,-71,0,0,0.0751128 -2239,5710:218,-108,-71,0,0,0.0751059 -2240,5710:217,-107,-71,0,0,0.07512 -2241,5710:216,-106,-71,0,0,0.0751344 -2242,5710:215,-105,-71,0,0,0.0751771 -2243,5710:114,-104,-71,0,0,0.0751987 -2244,5710:113,-103,-71,0,0,0.0752631 -2245,5710:112,-102,-71,0,0,0.0754849 -2246,5710:111,-101,-71,0,0,0.0769462 -2247,5710:110,-100,-71,0,0,0.0763427 -2248,5709:218,-98,-71,0,0,0.0751987 -2249,5709:217,-97,-71,0,0,0.0753058 -2250,5709:216,-96,-71,0,0,0.0754634 -2251,5709:215,-95,-71,0,0,0.0752559 -2252,5709:114,-94,-71,0,0,0.0751486 -2253,5709:113,-93,-71,0,0,0.0751486 -2254,5709:112,-92,-71,0,0,0.0751701 -2255,5709:111,-91,-71,0,0,0.0751558 -2256,5709:110,-90,-71,0,0,0.0750773 -2257,5708:219,-89,-71,0,0,0.0750416 -2258,5708:218,-88,-71,0,0,0.0750345 -2259,5708:217,-87,-71,0,0,0.0749988 -2260,5708:216,-86,-71,0,0,0.074949 -2261,5708:215,-85,-71,0,0,0.0749205 -2262,5708:114,-84,-71,0,0,0.0749275 -2263,5708:113,-83,-71,0,0,0.0754133 -2264,5708:112,-82,-71,0,0,0.0771215 -2265,5708:111,-81,-71,0,0,0.0774952 -2266,5708:110,-80,-71,0,0,0.0775981 -2267,5707:219,-79,-71,0,0,0.0783886 -2268,5707:218,-78,-71,0,0,0.0788351 -2269,5707:217,-77,-71,0,0,0.079532 -2270,5707:216,-76,-71,0,0,0.0831709 -2271,5706:110,-60,-71,0,0,0.0753631 -2272,5705:219,-59,-71,0,0,0.0751059 -2273,5705:218,-58,-71,0,0,0.0750273 -2274,5705:217,-57,-71,0,0,0.0750201 -2275,5705:216,-56,-71,0,0,0.0749916 -2276,5705:215,-55,-71,0,0,0.0750131 -2277,5705:114,-54,-71,0,0,0.0750345 -2278,5705:113,-53,-71,0,0,0.0750345 -2279,5705:112,-52,-71,0,0,0.0750416 -2280,5705:111,-51,-71,0,0,0.0750416 -2281,5705:110,-50,-71,0,0,0.0750488 -2282,5704:219,-49,-71,0,0,0.0750488 -2283,5704:218,-48,-71,0,0,0.0750488 -2284,5704:217,-47,-71,0,0,0.0750558 -2285,5704:216,-46,-71,0,0,0.0750488 -2286,5704:215,-45,-71,0,0,0.0750416 -2287,5704:114,-44,-71,0,0,0.0750345 -2288,5704:113,-43,-71,0,0,0.0750273 -2289,5704:112,-42,-71,0,0,0.0750201 -2290,5704:111,-41,-71,0,0,0.0750131 -2291,5704:110,-40,-71,0,0,0.075006 -2292,5703:219,-39,-71,0,0,0.0749988 -2293,5703:218,-38,-71,0,0,0.0749916 -2294,5703:217,-37,-71,0,0,0.0749916 -2295,5703:216,-36,-71,0,0,0.0749916 -2296,5703:215,-35,-71,0,0,0.0749916 -2297,5703:114,-34,-71,0,0,0.0749916 -2298,5703:113,-33,-71,0,0,0.0749988 -2299,5703:112,-32,-71,0,0,0.0749988 -2300,5703:111,-31,-71,0,0,0.0749988 -2301,5703:110,-30,-71,0,0,0.0749988 -2302,5702:219,-29,-71,0,0,0.0750131 -2303,5702:218,-28,-71,0,0,0.0750201 -2304,5702:217,-27,-71,0,0,0.0750201 -2305,5702:216,-26,-71,0,0,0.075006 -2306,5702:215,-25,-71,0,0,0.0749846 -2307,5702:114,-24,-71,0,0,0.0749775 -2308,5702:113,-23,-71,0,0,0.0749775 -2309,5702:112,-22,-71,0,0,0.0749846 -2310,5702:111,-21,-71,0,0,0.0749916 -2311,5702:110,-20,-71,0,0,0.075006 -2312,5701:219,-19,-71,0,0,0.075006 -2313,5701:218,-18,-71,0,0,0.075006 -2314,5701:217,-17,-71,0,0,0.0750131 -2315,5701:216,-16,-71,0,0,0.0750131 -2316,5701:215,-15,-71,0,0,0.0750131 -2317,5701:114,-14,-71,0,0,0.0750558 -2318,5701:113,-13,-71,0,0,0.0786041 -2319,3717:112,172,-71,0,0,0.0750201 -2320,3717:113,173,-71,0,0,0.0750702 -2321,3717:114,174,-71,0,0,0.0749703 -2322,3717:215,175,-71,0,0,0.0749703 -2323,3717:216,176,-71,0,0,0.0749562 -2324,3717:217,177,-71,0,0,0.074949 -2325,3717:218,178,-71,0,0,0.074949 -2326,3717:219,179,-71,0,0,0.0749631 -2327,3718:110,180,-71,0,0,0.0749703 -2328,5718:100,-180,-70,0,0,0.075006 -2329,5717:209,-179,-70,0,0,0.0750273 -2330,5717:208,-178,-70,0,0,0.0750416 -2331,5717:207,-177,-70,0,0,0.075063 -2332,5717:206,-176,-70,0,0,0.0750987 -2333,5717:205,-175,-70,0,0,0.0751128 -2334,5717:104,-174,-70,0,0,0.0750915 -2335,5717:103,-173,-70,0,0,0.0750773 -2336,5717:102,-172,-70,0,0,0.0750702 -2337,5717:101,-171,-70,0,0,0.0750416 -2338,5717:100,-170,-70,0,0,0.0750273 -2339,5716:209,-169,-70,0,0,0.0750201 -2340,5716:208,-168,-70,0,0,0.0750131 -2341,5716:207,-167,-70,0,0,0.0750131 -2342,5716:206,-166,-70,0,0,0.0749988 -2343,5716:205,-165,-70,0,0,0.075006 -2344,5716:104,-164,-70,0,0,0.0750131 -2345,5716:103,-163,-70,0,0,0.0750131 -2346,5716:102,-162,-70,0,0,0.0750131 -2347,5716:101,-161,-70,0,0,0.0750201 -2348,5716:100,-160,-70,0,0,0.0750345 -2349,5715:209,-159,-70,0,0,0.0750488 -2350,5715:208,-158,-70,0,0,0.0750558 -2351,5715:207,-157,-70,0,0,0.0750702 -2352,5715:206,-156,-70,0,0,0.0750843 -2353,5715:205,-155,-70,0,0,0.0751059 -2354,5715:104,-154,-70,0,0,0.07512 -2355,5715:103,-153,-70,0,0,0.07512 -2356,5715:102,-152,-70,0,0,0.0751416 -2357,5715:101,-151,-70,0,0,0.075163 -2358,5715:100,-150,-70,0,0,0.0751701 -2359,5714:209,-149,-70,0,0,0.0751771 -2360,5714:208,-148,-70,0,0,0.0751843 -2361,5714:207,-147,-70,0,0,0.0751843 -2362,5714:206,-146,-70,0,0,0.0751843 -2363,5714:205,-145,-70,0,0,0.0751843 -2364,5714:104,-144,-70,0,0,0.0751915 -2365,5714:103,-143,-70,0,0,0.0752129 -2366,5714:102,-142,-70,0,0,0.0752057 -2367,5714:101,-141,-70,0,0,0.0751701 -2368,5714:100,-140,-70,0,0,0.0751272 -2369,5713:209,-139,-70,0,0,0.0751128 -2370,5713:208,-138,-70,0,0,0.0751128 -2371,5713:207,-137,-70,0,0,0.075163 -2372,5713:206,-136,-70,0,0,0.0754492 -2373,5713:205,-135,-70,0,0,0.0759234 -2374,5713:104,-134,-70,0,0,0.0755424 -2375,5713:103,-133,-70,0,0,0.0758443 -2376,5713:102,-132,-70,0,0,0.0760749 -2377,5713:101,-131,-70,0,0,0.0757795 -2378,5713:100,-130,-70,0,0,0.0754562 -2379,5712:209,-129,-70,0,0,0.0752916 -2380,5712:208,-128,-70,0,0,0.0751416 -2381,5712:207,-127,-70,0,0,0.0751558 -2382,5712:206,-126,-70,0,0,0.075163 -2383,5712:205,-125,-70,0,0,0.0751701 -2384,5712:104,-124,-70,0,0,0.0751701 -2385,5712:103,-123,-70,0,0,0.0751701 -2386,5712:102,-122,-70,0,0,0.0751701 -2387,5712:101,-121,-70,0,0,0.075163 -2388,5712:100,-120,-70,0,0,0.0751486 -2389,5711:209,-119,-70,0,0,0.0751344 -2390,5711:208,-118,-70,0,0,0.07512 -2391,5711:207,-117,-70,0,0,0.0751128 -2392,5711:206,-116,-70,0,0,0.0751059 -2393,5711:205,-115,-70,0,0,0.0750987 -2394,5711:104,-114,-70,0,0,0.0750987 -2395,5711:103,-113,-70,0,0,0.0750987 -2396,5711:102,-112,-70,0,0,0.0750987 -2397,5711:101,-111,-70,0,0,0.0750987 -2398,5711:100,-110,-70,0,0,0.0750987 -2399,5710:209,-109,-70,0,0,0.0751059 -2400,5710:208,-108,-70,0,0,0.0751128 -2401,5710:207,-107,-70,0,0,0.0751128 -2402,5710:206,-106,-70,0,0,0.0751128 -2403,5710:205,-105,-70,0,0,0.07512 -2404,5710:104,-104,-70,0,0,0.0751486 -2405,5710:103,-103,-70,0,0,0.0751344 -2406,5710:102,-102,-70,0,0,0.0751771 -2407,5710:101,-101,-70,0,0,0.0752415 -2408,5710:100,-100,-70,0,0,0.07527 -2409,5709:209,-99,-70,0,0,0.0752343 -2410,5709:208,-98,-70,0,0,0.0752129 -2411,5709:207,-97,-70,0,0,0.0751843 -2412,5709:206,-96,-70,0,0,0.0751771 -2413,5709:205,-95,-70,0,0,0.0751486 -2414,5709:104,-94,-70,0,0,0.0751344 -2415,5709:103,-93,-70,0,0,0.0751272 -2416,5709:102,-92,-70,0,0,0.0751128 -2417,5709:101,-91,-70,0,0,0.075063 -2418,5709:100,-90,-70,0,0,0.0750273 -2419,5708:209,-89,-70,0,0,0.0749846 -2420,5708:208,-88,-70,0,0,0.0749775 -2421,5708:207,-87,-70,0,0,0.0749703 -2422,5708:206,-86,-70,0,0,0.0749418 -2423,5708:205,-85,-70,0,0,0.0749346 -2424,5708:104,-84,-70,0,0,0.0749346 -2425,5708:103,-83,-70,0,0,0.0749418 -2426,5708:102,-82,-70,0,0,0.0749562 -2427,5708:101,-81,-70,0,0,0.0750131 -2428,5708:100,-80,-70,0,0,0.0750702 -2429,5707:209,-79,-70,0,0,0.0761907 -2430,5707:208,-78,-70,0,0,0.0779075 -2431,5707:207,-77,-70,0,0,0.0796974 -2432,5707:206,-76,-70,0,0,0.0819491 -2433,5707:205,-75,-70,0,0,0.0833749 -2434,5707:104,-74,-70,0,0,0.0866999 -2435,5706:100,-60,-70,0,0,0.0752772 -2436,5705:209,-59,-70,0,0,0.0751272 -2437,5705:208,-58,-70,0,0,0.0750345 -2438,5705:207,-57,-70,0,0,0.0750416 -2439,5705:206,-56,-70,0,0,0.0750273 -2440,5705:205,-55,-70,0,0,0.0750416 -2441,5705:104,-54,-70,0,0,0.0750416 -2442,5705:103,-53,-70,0,0,0.0750488 -2443,5705:102,-52,-70,0,0,0.0750488 -2444,5705:101,-51,-70,0,0,0.0750488 -2445,5705:100,-50,-70,0,0,0.0750416 -2446,5704:209,-49,-70,0,0,0.0750488 -2447,5704:208,-48,-70,0,0,0.0750488 -2448,5704:207,-47,-70,0,0,0.0750416 -2449,5704:206,-46,-70,0,0,0.0750345 -2450,5704:205,-45,-70,0,0,0.0750273 -2451,5704:104,-44,-70,0,0,0.0750131 -2452,5704:103,-43,-70,0,0,0.0750131 -2453,5704:102,-42,-70,0,0,0.0749988 -2454,5704:101,-41,-70,0,0,0.0749846 -2455,5704:100,-40,-70,0,0,0.0749703 -2456,5703:209,-39,-70,0,0,0.0749703 -2457,5703:208,-38,-70,0,0,0.0749703 -2458,5703:207,-37,-70,0,0,0.0749703 -2459,5703:206,-36,-70,0,0,0.0749775 -2460,5703:205,-35,-70,0,0,0.0749775 -2461,5703:104,-34,-70,0,0,0.0749846 -2462,5703:103,-33,-70,0,0,0.0749916 -2463,5703:102,-32,-70,0,0,0.0749916 -2464,5703:101,-31,-70,0,0,0.0749988 -2465,5703:100,-30,-70,0,0,0.0749988 -2466,5702:209,-29,-70,0,0,0.075006 -2467,5702:208,-28,-70,0,0,0.075006 -2468,5702:207,-27,-70,0,0,0.0750131 -2469,5702:206,-26,-70,0,0,0.0750131 -2470,5702:205,-25,-70,0,0,0.0749775 -2471,5702:104,-24,-70,0,0,0.0749775 -2472,5702:103,-23,-70,0,0,0.0749775 -2473,5702:102,-22,-70,0,0,0.0749775 -2474,5702:101,-21,-70,0,0,0.0749775 -2475,5702:100,-20,-70,0,0,0.0749846 -2476,5701:209,-19,-70,0,0,0.0749916 -2477,5701:208,-18,-70,0,0,0.0749988 -2478,5701:207,-17,-70,0,0,0.075006 -2479,5701:206,-16,-70,0,0,0.075006 -2480,5701:205,-15,-70,0,0,0.0750273 -2481,5701:104,-14,-70,0,0,0.0750843 -2482,5701:103,-13,-70,0,0,0.07512 -2483,3717:100,170,-70,0,0,0.0751416 -2484,3717:101,171,-70,0,0,0.0750131 -2485,3717:102,172,-70,0,0,0.075006 -2486,3717:103,173,-70,0,0,0.0750131 -2487,3717:104,174,-70,0,0,0.075006 -2488,3717:205,175,-70,0,0,0.0749988 -2489,3717:206,176,-70,0,0,0.0749916 -2490,3717:207,177,-70,0,0,0.0749916 -2491,3717:208,178,-70,0,0,0.0749846 -2492,3717:209,179,-70,0,0,0.0749916 -2493,3718:100,180,-70,0,0,0.075006 -2494,5618:390,-180,-69,0,0,0.0750416 -2495,5617:499,-179,-69,0,0,0.0750488 -2496,5617:498,-178,-69,0,0,0.0750702 -2497,5617:497,-177,-69,0,0,0.0750987 -2498,5617:496,-176,-69,0,0,0.0751059 -2499,5617:495,-175,-69,0,0,0.0750915 -2500,5617:394,-174,-69,0,0,0.0750843 -2501,5617:393,-173,-69,0,0,0.0750773 -2502,5617:392,-172,-69,0,0,0.0750558 -2503,5617:391,-171,-69,0,0,0.0750416 -2504,5617:390,-170,-69,0,0,0.0750273 -2505,5616:499,-169,-69,0,0,0.0750131 -2506,5616:498,-168,-69,0,0,0.075006 -2507,5616:497,-167,-69,0,0,0.075006 -2508,5616:496,-166,-69,0,0,0.0749916 -2509,5616:495,-165,-69,0,0,0.0749775 -2510,5616:394,-164,-69,0,0,0.0749775 -2511,5616:393,-163,-69,0,0,0.0749775 -2512,5616:392,-162,-69,0,0,0.0749775 -2513,5616:391,-161,-69,0,0,0.0749916 -2514,5616:390,-160,-69,0,0,0.0750131 -2515,5615:499,-159,-69,0,0,0.0750345 -2516,5615:498,-158,-69,0,0,0.0750488 -2517,5615:497,-157,-69,0,0,0.075063 -2518,5615:496,-156,-69,0,0,0.0750843 -2519,5615:495,-155,-69,0,0,0.0750987 -2520,5615:394,-154,-69,0,0,0.0751128 -2521,5615:393,-153,-69,0,0,0.0751128 -2522,5615:392,-152,-69,0,0,0.0751344 -2523,5615:391,-151,-69,0,0,0.0751558 -2524,5615:390,-150,-69,0,0,0.0751701 -2525,5614:499,-149,-69,0,0,0.0751771 -2526,5614:498,-148,-69,0,0,0.0751843 -2527,5614:497,-147,-69,0,0,0.0751771 -2528,5614:496,-146,-69,0,0,0.0751701 -2529,5614:495,-145,-69,0,0,0.0751771 -2530,5614:394,-144,-69,0,0,0.0751843 -2531,5614:393,-143,-69,0,0,0.0751915 -2532,5614:392,-142,-69,0,0,0.0751915 -2533,5614:391,-141,-69,0,0,0.0751843 -2534,5614:390,-140,-69,0,0,0.0751701 -2535,5613:499,-139,-69,0,0,0.0751344 -2536,5613:498,-138,-69,0,0,0.0751344 -2537,5613:497,-137,-69,0,0,0.0751701 -2538,5613:496,-136,-69,0,0,0.0752487 -2539,5613:495,-135,-69,0,0,0.0752916 -2540,5613:394,-134,-69,0,0,0.0753561 -2541,5613:393,-133,-69,0,0,0.0754562 -2542,5613:392,-132,-69,0,0,0.0754634 -2543,5613:391,-131,-69,0,0,0.0759379 -2544,5613:390,-130,-69,0,0,0.075758 -2545,5612:499,-129,-69,0,0,0.0754779 -2546,5612:498,-128,-69,0,0,0.0754348 -2547,5612:497,-127,-69,0,0,0.0754921 -2548,5612:496,-126,-69,0,0,0.0753561 -2549,5612:495,-125,-69,0,0,0.0751486 -2550,5612:394,-124,-69,0,0,0.0751558 -2551,5612:393,-123,-69,0,0,0.0751558 -2552,5612:392,-122,-69,0,0,0.0751558 -2553,5612:391,-121,-69,0,0,0.0751558 -2554,5612:390,-120,-69,0,0,0.0751344 -2555,5611:499,-119,-69,0,0,0.0751272 -2556,5611:498,-118,-69,0,0,0.0751272 -2557,5611:497,-117,-69,0,0,0.0751128 -2558,5611:496,-116,-69,0,0,0.0751059 -2559,5611:495,-115,-69,0,0,0.0751128 -2560,5611:394,-114,-69,0,0,0.0751059 -2561,5611:393,-113,-69,0,0,0.0751059 -2562,5611:392,-112,-69,0,0,0.0751059 -2563,5611:391,-111,-69,0,0,0.0751059 -2564,5611:390,-110,-69,0,0,0.0751059 -2565,5610:499,-109,-69,0,0,0.0751059 -2566,5610:498,-108,-69,0,0,0.0751059 -2567,5610:497,-107,-69,0,0,0.0751128 -2568,5610:496,-106,-69,0,0,0.07512 -2569,5610:495,-105,-69,0,0,0.07512 -2570,5610:394,-104,-69,0,0,0.07512 -2571,5610:393,-103,-69,0,0,0.07512 -2572,5610:392,-102,-69,0,0,0.0751128 -2573,5610:391,-101,-69,0,0,0.07512 -2574,5610:390,-100,-69,0,0,0.0751344 -2575,5609:499,-99,-69,0,0,0.0751701 -2576,5609:498,-98,-69,0,0,0.0751915 -2577,5609:497,-97,-69,0,0,0.0751843 -2578,5609:496,-96,-69,0,0,0.0751701 -2579,5609:495,-95,-69,0,0,0.075163 -2580,5609:394,-94,-69,0,0,0.0751344 -2581,5609:393,-93,-69,0,0,0.0750987 -2582,5609:392,-92,-69,0,0,0.0750558 -2583,5609:391,-91,-69,0,0,0.0750416 -2584,5609:390,-90,-69,0,0,0.0750273 -2585,5608:499,-89,-69,0,0,0.0750201 -2586,5608:498,-88,-69,0,0,0.075006 -2587,5608:497,-87,-69,0,0,0.0749988 -2588,5608:496,-86,-69,0,0,0.0749775 -2589,5608:495,-85,-69,0,0,0.0749631 -2590,5608:394,-84,-69,0,0,0.0749562 -2591,5608:393,-83,-69,0,0,0.0749631 -2592,5608:392,-82,-69,0,0,0.0749846 -2593,5608:391,-81,-69,0,0,0.0750345 -2594,5608:390,-80,-69,0,0,0.0750843 -2595,5607:499,-79,-69,0,0,0.0753203 -2596,5607:498,-78,-69,0,0,0.0772018 -2597,5607:497,-77,-69,0,0,0.0779296 -2598,5607:496,-76,-69,0,0,0.078011 -2599,5606:390,-60,-69,0,0,0.0753344 -2600,5605:499,-59,-69,0,0,0.0750558 -2601,5605:498,-58,-69,0,0,0.0750345 -2602,5605:497,-57,-69,0,0,0.0750488 -2603,5605:496,-56,-69,0,0,0.0750416 -2604,5605:495,-55,-69,0,0,0.0750488 -2605,5605:394,-54,-69,0,0,0.0750488 -2606,5605:393,-53,-69,0,0,0.0750488 -2607,5605:392,-52,-69,0,0,0.0750416 -2608,5605:391,-51,-69,0,0,0.0750416 -2609,5605:390,-50,-69,0,0,0.0750416 -2610,5604:499,-49,-69,0,0,0.0750345 -2611,5604:498,-48,-69,0,0,0.0750345 -2612,5604:497,-47,-69,0,0,0.0750273 -2613,5604:496,-46,-69,0,0,0.0750201 -2614,5604:495,-45,-69,0,0,0.075006 -2615,5604:394,-44,-69,0,0,0.0749916 -2616,5604:393,-43,-69,0,0,0.0749775 -2617,5604:392,-42,-69,0,0,0.0749703 -2618,5604:391,-41,-69,0,0,0.0749703 -2619,5604:390,-40,-69,0,0,0.0749631 -2620,5603:499,-39,-69,0,0,0.0749631 -2621,5603:498,-38,-69,0,0,0.0749631 -2622,5603:497,-37,-69,0,0,0.0749703 -2623,5603:496,-36,-69,0,0,0.0749775 -2624,5603:495,-35,-69,0,0,0.0749775 -2625,5603:394,-34,-69,0,0,0.0749846 -2626,5603:393,-33,-69,0,0,0.0749846 -2627,5603:392,-32,-69,0,0,0.0749988 -2628,5603:391,-31,-69,0,0,0.0749846 -2629,5603:390,-30,-69,0,0,0.0749916 -2630,5602:499,-29,-69,0,0,0.0749846 -2631,5602:498,-28,-69,0,0,0.0749846 -2632,5602:497,-27,-69,0,0,0.0749846 -2633,5602:496,-26,-69,0,0,0.0749846 -2634,5602:495,-25,-69,0,0,0.0749775 -2635,5602:394,-24,-69,0,0,0.0749703 -2636,5602:393,-23,-69,0,0,0.0749703 -2637,5602:392,-22,-69,0,0,0.0749631 -2638,5602:391,-21,-69,0,0,0.0749562 -2639,5602:390,-20,-69,0,0,0.0749703 -2640,5601:499,-19,-69,0,0,0.0749775 -2641,5601:498,-18,-69,0,0,0.0749846 -2642,5601:497,-17,-69,0,0,0.0749916 -2643,5601:496,-16,-69,0,0,0.0749988 -2644,5601:495,-15,-69,0,0,0.075006 -2645,5601:394,-14,-69,0,0,0.0750201 -2646,5601:393,-13,-69,0,0,0.0750345 -2647,5601:392,-12,-69,0,0,0.0751486 -2648,5601:391,-11,-69,0,0,0.075528 -2649,5601:390,-10,-69,0,0,0.0758515 -2650,3616:499,169,-69,0,0,0.0752487 -2651,3617:390,170,-69,0,0,0.075006 -2652,3617:391,171,-69,0,0,0.075006 -2653,3617:392,172,-69,0,0,0.0750131 -2654,3617:393,173,-69,0,0,0.0750131 -2655,3617:394,174,-69,0,0,0.075006 -2656,3617:495,175,-69,0,0,0.0749916 -2657,3617:496,176,-69,0,0,0.0749846 -2658,3617:497,177,-69,0,0,0.0749846 -2659,3617:498,178,-69,0,0,0.0749916 -2660,3617:499,179,-69,0,0,0.0750273 -2661,3618:390,180,-69,0,0,0.0750416 -2662,5618:380,-180,-68,0,0,0.0750915 -2663,5617:489,-179,-68,0,0,0.0751059 -2664,5617:488,-178,-68,0,0,0.0751059 -2665,5617:487,-177,-68,0,0,0.0751059 -2666,5617:486,-176,-68,0,0,0.0751059 -2667,5617:485,-175,-68,0,0,0.0750915 -2668,5617:384,-174,-68,0,0,0.0750773 -2669,5617:383,-173,-68,0,0,0.0750558 -2670,5617:382,-172,-68,0,0,0.0750345 -2671,5617:381,-171,-68,0,0,0.0750273 -2672,5617:380,-170,-68,0,0,0.0750131 -2673,5616:489,-169,-68,0,0,0.075006 -2674,5616:488,-168,-68,0,0,0.0749916 -2675,5616:487,-167,-68,0,0,0.0749916 -2676,5616:486,-166,-68,0,0,0.0749631 -2677,5616:485,-165,-68,0,0,0.074949 -2678,5616:384,-164,-68,0,0,0.0749562 -2679,5616:383,-163,-68,0,0,0.0749562 -2680,5616:382,-162,-68,0,0,0.0749562 -2681,5616:381,-161,-68,0,0,0.0749631 -2682,5616:380,-160,-68,0,0,0.0749916 -2683,5615:489,-159,-68,0,0,0.0750273 -2684,5615:488,-158,-68,0,0,0.0750488 -2685,5615:487,-157,-68,0,0,0.0750702 -2686,5615:486,-156,-68,0,0,0.0750987 -2687,5615:485,-155,-68,0,0,0.0751128 -2688,5615:384,-154,-68,0,0,0.07512 -2689,5615:383,-153,-68,0,0,0.0751272 -2690,5615:382,-152,-68,0,0,0.0751344 -2691,5615:381,-151,-68,0,0,0.0751486 -2692,5615:380,-150,-68,0,0,0.0751558 -2693,5614:489,-149,-68,0,0,0.075163 -2694,5614:488,-148,-68,0,0,0.0751701 -2695,5614:487,-147,-68,0,0,0.0751771 -2696,5614:486,-146,-68,0,0,0.0751771 -2697,5614:485,-145,-68,0,0,0.0751771 -2698,5614:384,-144,-68,0,0,0.0751771 -2699,5614:383,-143,-68,0,0,0.0751915 -2700,5614:382,-142,-68,0,0,0.0751843 -2701,5614:381,-141,-68,0,0,0.0751771 -2702,5614:380,-140,-68,0,0,0.0751771 -2703,5613:489,-139,-68,0,0,0.075163 -2704,5613:488,-138,-68,0,0,0.0751486 -2705,5613:487,-137,-68,0,0,0.0751344 -2706,5613:486,-136,-68,0,0,0.07512 -2707,5613:485,-135,-68,0,0,0.0751416 -2708,5613:384,-134,-68,0,0,0.0752559 -2709,5613:383,-133,-68,0,0,0.0753917 -2710,5613:382,-132,-68,0,0,0.0755424 -2711,5613:381,-131,-68,0,0,0.0761978 -2712,5613:380,-130,-68,0,0,0.0759162 -2713,5612:489,-129,-68,0,0,0.0757937 -2714,5612:488,-128,-68,0,0,0.0758586 -2715,5612:487,-127,-68,0,0,0.0759091 -2716,5612:486,-126,-68,0,0,0.0756932 -2717,5612:485,-125,-68,0,0,0.0754562 -2718,5612:384,-124,-68,0,0,0.075313 -2719,5612:383,-123,-68,0,0,0.0751344 -2720,5612:382,-122,-68,0,0,0.0751416 -2721,5612:381,-121,-68,0,0,0.0751272 -2722,5612:380,-120,-68,0,0,0.07512 -2723,5611:489,-119,-68,0,0,0.0751128 -2724,5611:488,-118,-68,0,0,0.0751059 -2725,5611:487,-117,-68,0,0,0.0750987 -2726,5611:486,-116,-68,0,0,0.0751272 -2727,5611:485,-115,-68,0,0,0.0750915 -2728,5611:384,-114,-68,0,0,0.0750915 -2729,5611:383,-113,-68,0,0,0.0751059 -2730,5611:382,-112,-68,0,0,0.0751059 -2731,5611:381,-111,-68,0,0,0.0751059 -2732,5611:380,-110,-68,0,0,0.0751059 -2733,5610:489,-109,-68,0,0,0.0751059 -2734,5610:488,-108,-68,0,0,0.0751059 -2735,5610:487,-107,-68,0,0,0.0750987 -2736,5610:486,-106,-68,0,0,0.0750987 -2737,5610:485,-105,-68,0,0,0.0750987 -2738,5610:384,-104,-68,0,0,0.0751128 -2739,5610:383,-103,-68,0,0,0.0751128 -2740,5610:382,-102,-68,0,0,0.0751128 -2741,5610:381,-101,-68,0,0,0.0751059 -2742,5610:380,-100,-68,0,0,0.0751059 -2743,5609:489,-99,-68,0,0,0.07512 -2744,5609:488,-98,-68,0,0,0.0751272 -2745,5609:487,-97,-68,0,0,0.0751272 -2746,5609:486,-96,-68,0,0,0.0751128 -2747,5609:485,-95,-68,0,0,0.0750987 -2748,5609:384,-94,-68,0,0,0.0750558 -2749,5609:383,-93,-68,0,0,0.0750201 -2750,5609:382,-92,-68,0,0,0.075006 -2751,5609:381,-91,-68,0,0,0.075006 -2752,5609:380,-90,-68,0,0,0.0750201 -2753,5608:489,-89,-68,0,0,0.0750273 -2754,5608:488,-88,-68,0,0,0.0750273 -2755,5608:487,-87,-68,0,0,0.0750201 -2756,5608:486,-86,-68,0,0,0.0750131 -2757,5608:485,-85,-68,0,0,0.0750131 -2758,5608:384,-84,-68,0,0,0.0749988 -2759,5608:383,-83,-68,0,0,0.0749916 -2760,5608:382,-82,-68,0,0,0.075006 -2761,5608:381,-81,-68,0,0,0.0750201 -2762,5608:380,-80,-68,0,0,0.0750702 -2763,5607:489,-79,-68,0,0,0.0755781 -2764,5607:488,-78,-68,0,0,0.0769681 -2765,5607:487,-77,-68,0,0,0.0794115 -2766,5607:486,-76,-68,0,0,0.0806751 -2767,5607:485,-75,-68,0,0,0.0805304 -2768,5606:380,-60,-68,0,0,0.0752201 -2769,5605:489,-59,-68,0,0,0.0750345 -2770,5605:488,-58,-68,0,0,0.0750345 -2771,5605:487,-57,-68,0,0,0.0750488 -2772,5605:486,-56,-68,0,0,0.0750416 -2773,5605:485,-55,-68,0,0,0.0750488 -2774,5605:384,-54,-68,0,0,0.0750488 -2775,5605:383,-53,-68,0,0,0.0750416 -2776,5605:382,-52,-68,0,0,0.0750345 -2777,5605:381,-51,-68,0,0,0.0750273 -2778,5605:380,-50,-68,0,0,0.0750273 -2779,5604:489,-49,-68,0,0,0.0750201 -2780,5604:488,-48,-68,0,0,0.075006 -2781,5604:487,-47,-68,0,0,0.0749916 -2782,5604:486,-46,-68,0,0,0.0749846 -2783,5604:485,-45,-68,0,0,0.0749775 -2784,5604:384,-44,-68,0,0,0.0749703 -2785,5604:383,-43,-68,0,0,0.0749631 -2786,5604:382,-42,-68,0,0,0.0749703 -2787,5604:381,-41,-68,0,0,0.0749631 -2788,5604:380,-40,-68,0,0,0.0749631 -2789,5603:489,-39,-68,0,0,0.0749631 -2790,5603:488,-38,-68,0,0,0.0749631 -2791,5603:487,-37,-68,0,0,0.0749703 -2792,5603:486,-36,-68,0,0,0.0749703 -2793,5603:485,-35,-68,0,0,0.0749775 -2794,5603:384,-34,-68,0,0,0.0749775 -2795,5603:383,-33,-68,0,0,0.0749775 -2796,5603:382,-32,-68,0,0,0.0749775 -2797,5603:381,-31,-68,0,0,0.0749775 -2798,5603:380,-30,-68,0,0,0.0749703 -2799,5602:489,-29,-68,0,0,0.0749775 -2800,5602:488,-28,-68,0,0,0.0749775 -2801,5602:487,-27,-68,0,0,0.0749703 -2802,5602:486,-26,-68,0,0,0.0749703 -2803,5602:485,-25,-68,0,0,0.0749631 -2804,5602:384,-24,-68,0,0,0.0749562 -2805,5602:383,-23,-68,0,0,0.0749562 -2806,5602:382,-22,-68,0,0,0.0749562 -2807,5602:381,-21,-68,0,0,0.0749562 -2808,5602:380,-20,-68,0,0,0.0749562 -2809,5601:489,-19,-68,0,0,0.0749562 -2810,5601:488,-18,-68,0,0,0.0749631 -2811,5601:487,-17,-68,0,0,0.0749631 -2812,5601:486,-16,-68,0,0,0.0749631 -2813,5601:485,-15,-68,0,0,0.0749846 -2814,5601:384,-14,-68,0,0,0.0749916 -2815,5601:383,-13,-68,0,0,0.0749988 -2816,5601:382,-12,-68,0,0,0.0750201 -2817,5601:381,-11,-68,0,0,0.0750702 -2818,5601:380,-10,-68,0,0,0.0756285 -2819,5600:489,-9,-68,0,0,0.0785446 -2820,5600:488,-8,-68,0,0,0.0793891 -2821,5600:487,-7,-68,0,0,0.0797351 -2822,5600:486,-6,-68,0,0,0.082034 -2823,3616:384,164,-68,0,0,0.0772166 -2824,3616:485,165,-68,0,0,0.0765747 -2825,3616:486,166,-68,0,0,0.0751771 -2826,3616:487,167,-68,0,0,0.0750488 -2827,3616:488,168,-68,0,0,0.0750416 -2828,3616:489,169,-68,0,0,0.0750131 -2829,3617:380,170,-68,0,0,0.0750201 -2830,3617:381,171,-68,0,0,0.0750131 -2831,3617:382,172,-68,0,0,0.0750131 -2832,3617:383,173,-68,0,0,0.075006 -2833,3617:384,174,-68,0,0,0.0749988 -2834,3617:485,175,-68,0,0,0.0749703 -2835,3617:486,176,-68,0,0,0.0749631 -2836,3617:487,177,-68,0,0,0.0749846 -2837,3617:488,178,-68,0,0,0.0750131 -2838,3617:489,179,-68,0,0,0.075063 -2839,3618:380,180,-68,0,0,0.0750915 -2840,5618:370,-180,-67,0,0,0.0750773 -2841,5617:479,-179,-67,0,0,0.0750915 -2842,5617:478,-178,-67,0,0,0.0750987 -2843,5617:477,-177,-67,0,0,0.0750987 -2844,5617:476,-176,-67,0,0,0.0750843 -2845,5617:475,-175,-67,0,0,0.0750702 -2846,5617:374,-174,-67,0,0,0.075063 -2847,5617:373,-173,-67,0,0,0.0750558 -2848,5617:372,-172,-67,0,0,0.0750416 -2849,5617:371,-171,-67,0,0,0.0750201 -2850,5617:370,-170,-67,0,0,0.075006 -2851,5616:479,-169,-67,0,0,0.0749916 -2852,5616:478,-168,-67,0,0,0.0749846 -2853,5616:477,-167,-67,0,0,0.0749631 -2854,5616:476,-166,-67,0,0,0.074949 -2855,5616:475,-165,-67,0,0,0.0749418 -2856,5616:374,-164,-67,0,0,0.0749346 -2857,5616:373,-163,-67,0,0,0.074949 -2858,5616:372,-162,-67,0,0,0.074949 -2859,5616:371,-161,-67,0,0,0.0749562 -2860,5616:370,-160,-67,0,0,0.0749846 -2861,5615:479,-159,-67,0,0,0.0750131 -2862,5615:478,-158,-67,0,0,0.0750558 -2863,5615:477,-157,-67,0,0,0.0750843 -2864,5615:476,-156,-67,0,0,0.0751059 -2865,5615:475,-155,-67,0,0,0.0751128 -2866,5615:374,-154,-67,0,0,0.07512 -2867,5615:373,-153,-67,0,0,0.0751272 -2868,5615:372,-152,-67,0,0,0.0751416 -2869,5615:371,-151,-67,0,0,0.0751486 -2870,5615:370,-150,-67,0,0,0.0751486 -2871,5614:479,-149,-67,0,0,0.0751558 -2872,5614:478,-148,-67,0,0,0.0751701 -2873,5614:477,-147,-67,0,0,0.0751843 -2874,5614:476,-146,-67,0,0,0.0751701 -2875,5614:475,-145,-67,0,0,0.0751771 -2876,5614:374,-144,-67,0,0,0.0751915 -2877,5614:373,-143,-67,0,0,0.0751701 -2878,5614:372,-142,-67,0,0,0.0751486 -2879,5614:371,-141,-67,0,0,0.0751344 -2880,5614:370,-140,-67,0,0,0.0751344 -2881,5613:479,-139,-67,0,0,0.0751486 -2882,5613:478,-138,-67,0,0,0.0751987 -2883,5613:477,-137,-67,0,0,0.0753703 -2884,5613:476,-136,-67,0,0,0.075163 -2885,5613:475,-135,-67,0,0,0.0751771 -2886,5613:374,-134,-67,0,0,0.0752057 -2887,5613:373,-133,-67,0,0,0.0754779 -2888,5613:372,-132,-67,0,0,0.0753489 -2889,5613:371,-131,-67,0,0,0.0761183 -2890,5613:370,-130,-67,0,0,0.076415 -2891,5612:479,-129,-67,0,0,0.0764296 -2892,5612:478,-128,-67,0,0,0.07635 -2893,5612:477,-127,-67,0,0,0.0760967 -2894,5612:476,-126,-67,0,0,0.0759091 -2895,5612:475,-125,-67,0,0,0.0757362 -2896,5612:374,-124,-67,0,0,0.0755207 -2897,5612:373,-123,-67,0,0,0.0754203 -2898,5612:372,-122,-67,0,0,0.0753561 -2899,5612:371,-121,-67,0,0,0.0752916 -2900,5612:370,-120,-67,0,0,0.0752273 -2901,5611:479,-119,-67,0,0,0.0751701 -2902,5611:478,-118,-67,0,0,0.0752273 -2903,5611:477,-117,-67,0,0,0.076046 -2904,5611:476,-116,-67,0,0,0.0760749 -2905,5611:475,-115,-67,0,0,0.0757867 -2906,5611:374,-114,-67,0,0,0.0755494 -2907,5611:373,-113,-67,0,0,0.0754275 -2908,5611:372,-112,-67,0,0,0.07527 -2909,5611:371,-111,-67,0,0,0.0750915 -2910,5611:370,-110,-67,0,0,0.0751059 -2911,5610:479,-109,-67,0,0,0.0751059 -2912,5610:478,-108,-67,0,0,0.0750987 -2913,5610:477,-107,-67,0,0,0.0750915 -2914,5610:476,-106,-67,0,0,0.0750987 -2915,5610:475,-105,-67,0,0,0.0750915 -2916,5610:374,-104,-67,0,0,0.0750915 -2917,5610:373,-103,-67,0,0,0.0751059 -2918,5610:372,-102,-67,0,0,0.0751059 -2919,5610:371,-101,-67,0,0,0.0750987 -2920,5610:370,-100,-67,0,0,0.0750987 -2921,5609:479,-99,-67,0,0,0.0750843 -2922,5609:478,-98,-67,0,0,0.0750488 -2923,5609:477,-97,-67,0,0,0.0750201 -2924,5609:476,-96,-67,0,0,0.0750131 -2925,5609:475,-95,-67,0,0,0.0749988 -2926,5609:374,-94,-67,0,0,0.075006 -2927,5609:373,-93,-67,0,0,0.075006 -2928,5609:372,-92,-67,0,0,0.0749988 -2929,5609:371,-91,-67,0,0,0.0749988 -2930,5609:370,-90,-67,0,0,0.0749988 -2931,5608:479,-89,-67,0,0,0.0750131 -2932,5608:478,-88,-67,0,0,0.0750201 -2933,5608:477,-87,-67,0,0,0.0750273 -2934,5608:476,-86,-67,0,0,0.0750345 -2935,5608:475,-85,-67,0,0,0.0750345 -2936,5608:374,-84,-67,0,0,0.0750416 -2937,5608:373,-83,-67,0,0,0.0750488 -2938,5608:372,-82,-67,0,0,0.0750488 -2939,5608:371,-81,-67,0,0,0.0750558 -2940,5608:370,-80,-67,0,0,0.075063 -2941,5607:479,-79,-67,0,0,0.0750987 -2942,5607:478,-78,-67,0,0,0.0751701 -2943,5607:477,-77,-67,0,0,0.0752415 -2944,5607:476,-76,-67,0,0,0.0753272 -2945,5607:475,-75,-67,0,0,0.0753703 -2946,5607:374,-74,-67,0,0,0.0763354 -2947,5607:373,-73,-67,0,0,0.0768221 -2948,5606:479,-69,-67,0,0,0.0761978 -2949,5606:371,-61,-67,0,0,0.0753917 -2950,5606:370,-60,-67,0,0,0.0752273 -2951,5605:479,-59,-67,0,0,0.0750345 -2952,5605:478,-58,-67,0,0,0.0750345 -2953,5605:477,-57,-67,0,0,0.0750345 -2954,5605:476,-56,-67,0,0,0.0750416 -2955,5605:475,-55,-67,0,0,0.0750488 -2956,5605:374,-54,-67,0,0,0.0750416 -2957,5605:373,-53,-67,0,0,0.0750345 -2958,5605:372,-52,-67,0,0,0.0750201 -2959,5605:371,-51,-67,0,0,0.0749988 -2960,5605:370,-50,-67,0,0,0.0749988 -2961,5604:479,-49,-67,0,0,0.0749916 -2962,5604:478,-48,-67,0,0,0.0749775 -2963,5604:477,-47,-67,0,0,0.0749703 -2964,5604:476,-46,-67,0,0,0.0749703 -2965,5604:475,-45,-67,0,0,0.0749703 -2966,5604:374,-44,-67,0,0,0.0749703 -2967,5604:373,-43,-67,0,0,0.0749631 -2968,5604:372,-42,-67,0,0,0.0749631 -2969,5604:371,-41,-67,0,0,0.0749631 -2970,5604:370,-40,-67,0,0,0.0749631 -2971,5603:479,-39,-67,0,0,0.0749631 -2972,5603:478,-38,-67,0,0,0.0749631 -2973,5603:477,-37,-67,0,0,0.0749631 -2974,5603:476,-36,-67,0,0,0.0749631 -2975,5603:475,-35,-67,0,0,0.0749631 -2976,5603:374,-34,-67,0,0,0.0749631 -2977,5603:373,-33,-67,0,0,0.0749562 -2978,5603:372,-32,-67,0,0,0.074949 -2979,5603:371,-31,-67,0,0,0.074949 -2980,5603:370,-30,-67,0,0,0.0749418 -2981,5602:479,-29,-67,0,0,0.0749418 -2982,5602:478,-28,-67,0,0,0.074949 -2983,5602:477,-27,-67,0,0,0.074949 -2984,5602:476,-26,-67,0,0,0.0749418 -2985,5602:475,-25,-67,0,0,0.0749418 -2986,5602:374,-24,-67,0,0,0.0749346 -2987,5602:373,-23,-67,0,0,0.0749346 -2988,5602:372,-22,-67,0,0,0.0749418 -2989,5602:371,-21,-67,0,0,0.0749562 -2990,5602:370,-20,-67,0,0,0.0749562 -2991,5601:479,-19,-67,0,0,0.0749562 -2992,5601:478,-18,-67,0,0,0.0749631 -2993,5601:477,-17,-67,0,0,0.074949 -2994,5601:476,-16,-67,0,0,0.0749631 -2995,5601:475,-15,-67,0,0,0.0749631 -2996,5601:374,-14,-67,0,0,0.0749562 -2997,5601:373,-13,-67,0,0,0.0749631 -2998,5601:372,-12,-67,0,0,0.0749775 -2999,5601:371,-11,-67,0,0,0.0749703 -3000,5601:370,-10,-67,0,0,0.0749703 -3001,5600:479,-9,-67,0,0,0.0749631 -3002,5600:478,-8,-67,0,0,0.0749703 -3003,5600:477,-7,-67,0,0,0.0749775 -3004,5600:476,-6,-67,0,0,0.0750345 -3005,5600:475,-5,-67,0,0,0.0755781 -3006,5600:374,-4,-67,0,0,0.0753058 -3007,5600:373,-3,-67,0,0,0.0751128 -3008,5600:372,-2,-67,0,0,0.0754275 -3009,5600:371,-1,-67,0,0,0.0761689 -3010,3600:371,0,-67,0,0,0.0774365 -3011,3600:371,1,-67,0,0,0.0756355 -3012,3600:372,2,-67,0,0,0.0752129 -3013,3600:373,3,-67,0,0,0.075163 -3014,3600:374,4,-67,0,0,0.0766184 -3015,3600:475,5,-67,0,0,0.0768659 -3016,3600:476,6,-67,0,0,0.0768367 -3017,3600:477,7,-67,0,0,0.0773852 -3018,3600:478,8,-67,0,0,0.0782329 -3019,3600:479,9,-67,0,0,0.0786564 -3020,3601:370,10,-67,0,0,0.0775172 -3021,3601:371,11,-67,0,0,0.0789023 -3022,3601:372,12,-67,0,0,0.0800296 -3023,3601:373,13,-67,0,0,0.0814942 -3024,3601:478,18,-67,0,0,0.0759523 -3025,3601:479,19,-67,0,0,0.0750702 -3026,3602:370,20,-67,0,0,0.07512 -3027,3602:371,21,-67,0,0,0.0751344 -3028,3602:372,22,-67,0,0,0.0751059 -3029,3602:373,23,-67,0,0,0.0750558 -3030,3602:374,24,-67,0,0,0.0749846 -3031,3602:475,25,-67,0,0,0.0749275 -3032,3602:476,26,-67,0,0,0.0750201 -3033,3602:477,27,-67,0,0,0.0749346 -3034,3602:478,28,-67,0,0,0.0761761 -3035,3616:371,161,-67,0,0,0.07565 -3036,3616:372,162,-67,0,0,0.075006 -3037,3616:373,163,-67,0,0,0.0750131 -3038,3616:374,164,-67,0,0,0.0750273 -3039,3616:475,165,-67,0,0,0.0750273 -3040,3616:476,166,-67,0,0,0.0750273 -3041,3616:477,167,-67,0,0,0.0750273 -3042,3616:478,168,-67,0,0,0.0750345 -3043,3616:479,169,-67,0,0,0.0750273 -3044,3617:370,170,-67,0,0,0.0750273 -3045,3617:371,171,-67,0,0,0.0750345 -3046,3617:372,172,-67,0,0,0.0750201 -3047,3617:373,173,-67,0,0,0.0750201 -3048,3617:374,174,-67,0,0,0.0749916 -3049,3617:475,175,-67,0,0,0.0749775 -3050,3617:476,176,-67,0,0,0.0749775 -3051,3617:477,177,-67,0,0,0.075006 -3052,3617:478,178,-67,0,0,0.0750345 -3053,3617:479,179,-67,0,0,0.0750558 -3054,3618:370,180,-67,0,0,0.0750773 -3055,5618:360,-180,-66,0,0,0.0750558 -3056,5617:469,-179,-66,0,0,0.0750702 -3057,5617:468,-178,-66,0,0,0.0750915 -3058,5617:467,-177,-66,0,0,0.0750915 -3059,5617:466,-176,-66,0,0,0.0750773 -3060,5617:465,-175,-66,0,0,0.075063 -3061,5617:364,-174,-66,0,0,0.0750558 -3062,5617:363,-173,-66,0,0,0.0750488 -3063,5617:362,-172,-66,0,0,0.0750416 -3064,5617:361,-171,-66,0,0,0.0750273 -3065,5617:360,-170,-66,0,0,0.0750131 -3066,5616:469,-169,-66,0,0,0.0749988 -3067,5616:468,-168,-66,0,0,0.0749916 -3068,5616:467,-167,-66,0,0,0.0749846 -3069,5616:466,-166,-66,0,0,0.0749562 -3070,5616:465,-165,-66,0,0,0.074949 -3071,5616:364,-164,-66,0,0,0.074949 -3072,5616:363,-163,-66,0,0,0.0749562 -3073,5616:362,-162,-66,0,0,0.0749703 -3074,5616:361,-161,-66,0,0,0.0749775 -3075,5616:360,-160,-66,0,0,0.075006 -3076,5615:469,-159,-66,0,0,0.0750345 -3077,5615:468,-158,-66,0,0,0.0750558 -3078,5615:467,-157,-66,0,0,0.0750843 -3079,5615:466,-156,-66,0,0,0.0750987 -3080,5615:465,-155,-66,0,0,0.0751059 -3081,5615:364,-154,-66,0,0,0.0751128 -3082,5615:363,-153,-66,0,0,0.0751272 -3083,5615:362,-152,-66,0,0,0.0751486 -3084,5615:361,-151,-66,0,0,0.0751486 -3085,5615:360,-150,-66,0,0,0.0751486 -3086,5614:469,-149,-66,0,0,0.0751558 -3087,5614:468,-148,-66,0,0,0.0751558 -3088,5614:467,-147,-66,0,0,0.0751771 -3089,5614:466,-146,-66,0,0,0.0751701 -3090,5614:465,-145,-66,0,0,0.075163 -3091,5614:364,-144,-66,0,0,0.0751701 -3092,5614:363,-143,-66,0,0,0.075163 -3093,5614:362,-142,-66,0,0,0.0751701 -3094,5614:361,-141,-66,0,0,0.0752844 -3095,5614:360,-140,-66,0,0,0.0752844 -3096,5613:469,-139,-66,0,0,0.0753058 -3097,5613:468,-138,-66,0,0,0.0752057 -3098,5613:467,-137,-66,0,0,0.0751272 -3099,5613:466,-136,-66,0,0,0.0751915 -3100,5613:465,-135,-66,0,0,0.07527 -3101,5613:364,-134,-66,0,0,0.075686 -3102,5613:363,-133,-66,0,0,0.0760172 -3103,5613:362,-132,-66,0,0,0.0759019 -3104,5613:361,-131,-66,0,0,0.0763281 -3105,5613:360,-130,-66,0,0,0.0764369 -3106,5612:469,-129,-66,0,0,0.0763716 -3107,5612:468,-128,-66,0,0,0.076386 -3108,5612:467,-127,-66,0,0,0.0763064 -3109,5612:466,-126,-66,0,0,0.0760245 -3110,5612:465,-125,-66,0,0,0.0758803 -3111,5612:364,-124,-66,0,0,0.0757722 -3112,5612:363,-123,-66,0,0,0.075686 -3113,5612:362,-122,-66,0,0,0.0755424 -3114,5612:361,-121,-66,0,0,0.0754348 -3115,5612:360,-120,-66,0,0,0.0753989 -3116,5611:469,-119,-66,0,0,0.075442 -3117,5611:468,-118,-66,0,0,0.0756355 -3118,5611:467,-117,-66,0,0,0.0761038 -3119,5611:466,-116,-66,0,0,0.0772606 -3120,5611:465,-115,-66,0,0,0.0782997 -3121,5611:364,-114,-66,0,0,0.0782108 -3122,5611:363,-113,-66,0,0,0.0782476 -3123,5611:362,-112,-66,0,0,0.0763571 -3124,5611:361,-111,-66,0,0,0.0753272 -3125,5611:360,-110,-66,0,0,0.0750915 -3126,5610:469,-109,-66,0,0,0.0752772 -3127,5610:468,-108,-66,0,0,0.0762413 -3128,5610:467,-107,-66,0,0,0.0750915 -3129,5610:466,-106,-66,0,0,0.0750773 -3130,5610:465,-105,-66,0,0,0.075063 -3131,5610:364,-104,-66,0,0,0.0750702 -3132,5610:363,-103,-66,0,0,0.0750702 -3133,5610:362,-102,-66,0,0,0.0750558 -3134,5610:361,-101,-66,0,0,0.0750273 -3135,5610:360,-100,-66,0,0,0.0750416 -3136,5609:469,-99,-66,0,0,0.0750201 -3137,5609:468,-98,-66,0,0,0.075006 -3138,5609:467,-97,-66,0,0,0.0749988 -3139,5609:466,-96,-66,0,0,0.0749988 -3140,5609:465,-95,-66,0,0,0.0749846 -3141,5609:364,-94,-66,0,0,0.075006 -3142,5609:363,-93,-66,0,0,0.0750273 -3143,5609:362,-92,-66,0,0,0.0750131 -3144,5609:361,-91,-66,0,0,0.0749916 -3145,5609:360,-90,-66,0,0,0.0749988 -3146,5608:469,-89,-66,0,0,0.0750131 -3147,5608:468,-88,-66,0,0,0.0750273 -3148,5608:467,-87,-66,0,0,0.0750273 -3149,5608:466,-86,-66,0,0,0.0750345 -3150,5608:465,-85,-66,0,0,0.075063 -3151,5608:364,-84,-66,0,0,0.0750773 -3152,5608:363,-83,-66,0,0,0.0750773 -3153,5608:362,-82,-66,0,0,0.0750773 -3154,5608:361,-81,-66,0,0,0.0750843 -3155,5608:360,-80,-66,0,0,0.0750843 -3156,5607:469,-79,-66,0,0,0.0750773 -3157,5607:468,-78,-66,0,0,0.07512 -3158,5607:467,-77,-66,0,0,0.0752201 -3159,5607:466,-76,-66,0,0,0.0753203 -3160,5607:465,-75,-66,0,0,0.0753775 -3161,5607:364,-74,-66,0,0,0.076234 -3162,5607:363,-73,-66,0,0,0.076713 -3163,5607:360,-70,-66,0,0,0.0757867 -3164,5606:469,-69,-66,0,0,0.0759307 -3165,5606:361,-61,-66,0,0,0.0754348 -3166,5606:360,-60,-66,0,0,0.0751059 -3167,5605:469,-59,-66,0,0,0.0750345 -3168,5605:468,-58,-66,0,0,0.0750273 -3169,5605:467,-57,-66,0,0,0.0750273 -3170,5605:466,-56,-66,0,0,0.0750416 -3171,5605:465,-55,-66,0,0,0.0750488 -3172,5605:364,-54,-66,0,0,0.0750416 -3173,5605:363,-53,-66,0,0,0.0750273 -3174,5605:362,-52,-66,0,0,0.0750131 -3175,5605:361,-51,-66,0,0,0.075006 -3176,5605:360,-50,-66,0,0,0.0749916 -3177,5604:469,-49,-66,0,0,0.0749846 -3178,5604:468,-48,-66,0,0,0.0749846 -3179,5604:467,-47,-66,0,0,0.0749775 -3180,5604:466,-46,-66,0,0,0.0749775 -3181,5604:465,-45,-66,0,0,0.0749775 -3182,5604:364,-44,-66,0,0,0.0749703 -3183,5604:363,-43,-66,0,0,0.0749703 -3184,5604:362,-42,-66,0,0,0.0749703 -3185,5604:361,-41,-66,0,0,0.0749631 -3186,5604:360,-40,-66,0,0,0.0749562 -3187,5603:469,-39,-66,0,0,0.074949 -3188,5603:468,-38,-66,0,0,0.0749562 -3189,5603:467,-37,-66,0,0,0.0749631 -3190,5603:466,-36,-66,0,0,0.0749562 -3191,5603:465,-35,-66,0,0,0.0749562 -3192,5603:364,-34,-66,0,0,0.0749562 -3193,5603:363,-33,-66,0,0,0.0749562 -3194,5603:362,-32,-66,0,0,0.0749562 -3195,5603:361,-31,-66,0,0,0.074949 -3196,5603:360,-30,-66,0,0,0.0749418 -3197,5602:469,-29,-66,0,0,0.0749346 -3198,5602:468,-28,-66,0,0,0.0749418 -3199,5602:467,-27,-66,0,0,0.0749418 -3200,5602:466,-26,-66,0,0,0.0749346 -3201,5602:465,-25,-66,0,0,0.0749346 -3202,5602:364,-24,-66,0,0,0.0749275 -3203,5602:363,-23,-66,0,0,0.0749205 -3204,5602:362,-22,-66,0,0,0.0749205 -3205,5602:361,-21,-66,0,0,0.0749275 -3206,5602:360,-20,-66,0,0,0.0749346 -3207,5601:469,-19,-66,0,0,0.0749346 -3208,5601:468,-18,-66,0,0,0.0749418 -3209,5601:467,-17,-66,0,0,0.0749418 -3210,5601:466,-16,-66,0,0,0.074949 -3211,5601:465,-15,-66,0,0,0.074949 -3212,5601:364,-14,-66,0,0,0.074949 -3213,5601:363,-13,-66,0,0,0.0749418 -3214,5601:362,-12,-66,0,0,0.0749275 -3215,5601:361,-11,-66,0,0,0.0749418 -3216,5601:360,-10,-66,0,0,0.0749418 -3217,5600:469,-9,-66,0,0,0.0749205 -3218,5600:468,-8,-66,0,0,0.0749133 -3219,5600:467,-7,-66,0,0,0.0749275 -3220,5600:466,-6,-66,0,0,0.0749562 -3221,5600:465,-5,-66,0,0,0.0749703 -3222,5600:364,-4,-66,0,0,0.074949 -3223,5600:363,-3,-66,0,0,0.074899 -3224,5600:362,-2,-66,0,0,0.0748636 -3225,5600:361,-1,-66,0,0,0.0748636 -3226,3600:361,0,-66,0,0,0.0748636 -3227,3600:361,1,-66,0,0,0.0748777 -3228,3600:362,2,-66,0,0,0.074892 -3229,3600:363,3,-66,0,0,0.074892 -3230,3600:364,4,-66,0,0,0.074892 -3231,3600:465,5,-66,0,0,0.0748849 -3232,3600:466,6,-66,0,0,0.0748636 -3233,3600:467,7,-66,0,0,0.0748849 -3234,3600:468,8,-66,0,0,0.0749062 -3235,3600:469,9,-66,0,0,0.0749133 -3236,3601:360,10,-66,0,0,0.0749346 -3237,3601:361,11,-66,0,0,0.0750558 -3238,3601:362,12,-66,0,0,0.0753631 -3239,3601:363,13,-66,0,0,0.075063 -3240,3601:364,14,-66,0,0,0.0753203 -3241,3601:465,15,-66,0,0,0.075442 -3242,3601:466,16,-66,0,0,0.0750773 -3243,3601:467,17,-66,0,0,0.0751128 -3244,3601:468,18,-66,0,0,0.075006 -3245,3601:469,19,-66,0,0,0.0749775 -3246,3602:360,20,-66,0,0,0.0749775 -3247,3602:361,21,-66,0,0,0.0749775 -3248,3602:362,22,-66,0,0,0.0749846 -3249,3602:363,23,-66,0,0,0.0749846 -3250,3602:364,24,-66,0,0,0.0749703 -3251,3602:465,25,-66,0,0,0.074949 -3252,3602:466,26,-66,0,0,0.074949 -3253,3602:467,27,-66,0,0,0.0749418 -3254,3602:468,28,-66,0,0,0.0749988 -3255,3602:469,29,-66,0,0,0.0749846 -3256,3603:466,36,-66,0,0,0.0755352 -3257,3603:467,37,-66,0,0,0.0754348 -3258,3603:468,38,-66,0,0,0.0753058 -3259,3603:469,39,-66,0,0,0.0750915 -3260,3607:364,74,-66,0,0,0.0888968 -3261,3607:465,75,-66,0,0,0.0871401 -3262,3607:466,76,-66,0,0,0.0890969 -3263,3607:467,77,-66,0,0,0.0890717 -3264,3615:468,158,-66,0,0,0.0754492 -3265,3615:469,159,-66,0,0,0.0751771 -3266,3616:360,160,-66,0,0,0.0750488 -3267,3616:361,161,-66,0,0,0.0750416 -3268,3616:362,162,-66,0,0,0.0750345 -3269,3616:363,163,-66,0,0,0.0750488 -3270,3616:364,164,-66,0,0,0.075063 -3271,3616:465,165,-66,0,0,0.0750558 -3272,3616:466,166,-66,0,0,0.0750558 -3273,3616:467,167,-66,0,0,0.0750488 -3274,3616:468,168,-66,0,0,0.0750416 -3275,3616:469,169,-66,0,0,0.0750488 -3276,3617:360,170,-66,0,0,0.0750488 -3277,3617:361,171,-66,0,0,0.0750201 -3278,3617:362,172,-66,0,0,0.0750131 -3279,3617:363,173,-66,0,0,0.075006 -3280,3617:364,174,-66,0,0,0.0749846 -3281,3617:465,175,-66,0,0,0.0749846 -3282,3617:466,176,-66,0,0,0.0749916 -3283,3617:467,177,-66,0,0,0.075006 -3284,3617:468,178,-66,0,0,0.0750345 -3285,3617:469,179,-66,0,0,0.0750488 -3286,3618:360,180,-66,0,0,0.0750558 -3287,5618:350,-180,-65,0,0,0.0750488 -3288,5617:459,-179,-65,0,0,0.0750558 -3289,5617:458,-178,-65,0,0,0.0750702 -3290,5617:457,-177,-65,0,0,0.0750773 -3291,5617:456,-176,-65,0,0,0.0750702 -3292,5617:455,-175,-65,0,0,0.075063 -3293,5617:354,-174,-65,0,0,0.0750702 -3294,5617:353,-173,-65,0,0,0.0750558 -3295,5617:352,-172,-65,0,0,0.0750488 -3296,5617:351,-171,-65,0,0,0.0750345 -3297,5617:350,-170,-65,0,0,0.0750273 -3298,5616:459,-169,-65,0,0,0.0750131 -3299,5616:458,-168,-65,0,0,0.0749988 -3300,5616:457,-167,-65,0,0,0.0749916 -3301,5616:456,-166,-65,0,0,0.0749775 -3302,5616:455,-165,-65,0,0,0.0749703 -3303,5616:354,-164,-65,0,0,0.0749703 -3304,5616:353,-163,-65,0,0,0.0749775 -3305,5616:352,-162,-65,0,0,0.0749846 -3306,5616:351,-161,-65,0,0,0.0749988 -3307,5616:350,-160,-65,0,0,0.0750201 -3308,5615:459,-159,-65,0,0,0.0750488 -3309,5615:458,-158,-65,0,0,0.0750702 -3310,5615:457,-157,-65,0,0,0.0750773 -3311,5615:456,-156,-65,0,0,0.0750915 -3312,5615:455,-155,-65,0,0,0.0750987 -3313,5615:354,-154,-65,0,0,0.0751128 -3314,5615:353,-153,-65,0,0,0.0751344 -3315,5615:352,-152,-65,0,0,0.0751486 -3316,5615:351,-151,-65,0,0,0.0751558 -3317,5615:350,-150,-65,0,0,0.0751344 -3318,5614:459,-149,-65,0,0,0.0751701 -3319,5614:458,-148,-65,0,0,0.075163 -3320,5614:457,-147,-65,0,0,0.0751771 -3321,5614:456,-146,-65,0,0,0.0751558 -3322,5614:455,-145,-65,0,0,0.0751416 -3323,5614:354,-144,-65,0,0,0.075163 -3324,5614:353,-143,-65,0,0,0.0751486 -3325,5614:352,-142,-65,0,0,0.0751558 -3326,5614:351,-141,-65,0,0,0.075163 -3327,5614:350,-140,-65,0,0,0.0752631 -3328,5613:459,-139,-65,0,0,0.075313 -3329,5613:458,-138,-65,0,0,0.0752343 -3330,5613:457,-137,-65,0,0,0.0752057 -3331,5613:456,-136,-65,0,0,0.0751701 -3332,5613:455,-135,-65,0,0,0.0751843 -3333,5613:354,-134,-65,0,0,0.0759162 -3334,5613:353,-133,-65,0,0,0.0763789 -3335,5613:352,-132,-65,0,0,0.0763933 -3336,5613:351,-131,-65,0,0,0.0764006 -3337,5613:350,-130,-65,0,0,0.0764296 -3338,5612:459,-129,-65,0,0,0.0765967 -3339,5612:458,-128,-65,0,0,0.076553 -3340,5612:457,-127,-65,0,0,0.0764369 -3341,5612:456,-126,-65,0,0,0.0763643 -3342,5612:455,-125,-65,0,0,0.0763789 -3343,5612:354,-124,-65,0,0,0.0762775 -3344,5612:353,-123,-65,0,0,0.0762413 -3345,5612:352,-122,-65,0,0,0.0764586 -3346,5612:351,-121,-65,0,0,0.0766111 -3347,5612:350,-120,-65,0,0,0.075722 -3348,5611:459,-119,-65,0,0,0.0755711 -3349,5611:458,-118,-65,0,0,0.0756932 -3350,5611:457,-117,-65,0,0,0.0760606 -3351,5611:456,-116,-65,0,0,0.0784927 -3352,5611:455,-115,-65,0,0,0.0785002 -3353,5611:354,-114,-65,0,0,0.079254 -3354,5611:353,-113,-65,0,0,0.079404 -3355,5611:352,-112,-65,0,0,0.078011 -3356,5611:351,-111,-65,0,0,0.0764876 -3357,5611:350,-110,-65,0,0,0.0782255 -3358,5610:459,-109,-65,0,0,0.0797579 -3359,5610:458,-108,-65,0,0,0.0805076 -3360,5610:457,-107,-65,0,0,0.0769534 -3361,5610:456,-106,-65,0,0,0.075063 -3362,5610:455,-105,-65,0,0,0.075006 -3363,5610:354,-104,-65,0,0,0.0751059 -3364,5610:353,-103,-65,0,0,0.0750488 -3365,5610:352,-102,-65,0,0,0.0750273 -3366,5610:351,-101,-65,0,0,0.0750345 -3367,5610:350,-100,-65,0,0,0.0750558 -3368,5609:459,-99,-65,0,0,0.0750345 -3369,5609:458,-98,-65,0,0,0.0750201 -3370,5609:457,-97,-65,0,0,0.0750273 -3371,5609:456,-96,-65,0,0,0.0750131 -3372,5609:455,-95,-65,0,0,0.0749775 -3373,5609:354,-94,-65,0,0,0.0749703 -3374,5609:353,-93,-65,0,0,0.075006 -3375,5609:352,-92,-65,0,0,0.0749988 -3376,5609:351,-91,-65,0,0,0.0749775 -3377,5609:350,-90,-65,0,0,0.0749916 -3378,5608:459,-89,-65,0,0,0.0749988 -3379,5608:458,-88,-65,0,0,0.0750131 -3380,5608:457,-87,-65,0,0,0.0750201 -3381,5608:456,-86,-65,0,0,0.0750416 -3382,5608:455,-85,-65,0,0,0.075063 -3383,5608:354,-84,-65,0,0,0.0750773 -3384,5608:353,-83,-65,0,0,0.0750915 -3385,5608:352,-82,-65,0,0,0.0750915 -3386,5608:351,-81,-65,0,0,0.0750987 -3387,5608:350,-80,-65,0,0,0.0750987 -3388,5607:459,-79,-65,0,0,0.0750987 -3389,5607:458,-78,-65,0,0,0.0750915 -3390,5607:457,-77,-65,0,0,0.0751344 -3391,5607:456,-76,-65,0,0,0.0752129 -3392,5607:455,-75,-65,0,0,0.07527 -3393,5607:354,-74,-65,0,0,0.0753417 -3394,5607:353,-73,-65,0,0,0.0754133 -3395,5607:352,-72,-65,0,0,0.0755567 -3396,5607:351,-71,-65,0,0,0.075758 -3397,5607:350,-70,-65,0,0,0.0756572 -3398,5606:459,-69,-65,0,0,0.0756645 -3399,5606:458,-68,-65,0,0,0.0764949 -3400,5606:350,-60,-65,0,0,0.0753058 -3401,5605:459,-59,-65,0,0,0.0752201 -3402,5605:458,-58,-65,0,0,0.0750488 -3403,5605:457,-57,-65,0,0,0.0750273 -3404,5605:456,-56,-65,0,0,0.0750345 -3405,5605:455,-55,-65,0,0,0.0750416 -3406,5605:354,-54,-65,0,0,0.0750416 -3407,5605:353,-53,-65,0,0,0.0750273 -3408,5605:352,-52,-65,0,0,0.075006 -3409,5605:351,-51,-65,0,0,0.0749916 -3410,5605:350,-50,-65,0,0,0.0749916 -3411,5604:459,-49,-65,0,0,0.0749916 -3412,5604:458,-48,-65,0,0,0.0749846 -3413,5604:457,-47,-65,0,0,0.0749846 -3414,5604:456,-46,-65,0,0,0.0749846 -3415,5604:455,-45,-65,0,0,0.0749775 -3416,5604:354,-44,-65,0,0,0.0749775 -3417,5604:353,-43,-65,0,0,0.0749775 -3418,5604:352,-42,-65,0,0,0.0749631 -3419,5604:351,-41,-65,0,0,0.0749562 -3420,5604:350,-40,-65,0,0,0.0749562 -3421,5603:459,-39,-65,0,0,0.0749562 -3422,5603:458,-38,-65,0,0,0.0749562 -3423,5603:457,-37,-65,0,0,0.0749562 -3424,5603:456,-36,-65,0,0,0.0749631 -3425,5603:455,-35,-65,0,0,0.0749631 -3426,5603:354,-34,-65,0,0,0.0749631 -3427,5603:353,-33,-65,0,0,0.0749631 -3428,5603:352,-32,-65,0,0,0.0749562 -3429,5603:351,-31,-65,0,0,0.074949 -3430,5603:350,-30,-65,0,0,0.074949 -3431,5602:459,-29,-65,0,0,0.0749418 -3432,5602:458,-28,-65,0,0,0.0749418 -3433,5602:457,-27,-65,0,0,0.0749418 -3434,5602:456,-26,-65,0,0,0.0749418 -3435,5602:455,-25,-65,0,0,0.0749418 -3436,5602:354,-24,-65,0,0,0.0749346 -3437,5602:353,-23,-65,0,0,0.0749275 -3438,5602:352,-22,-65,0,0,0.0749205 -3439,5602:351,-21,-65,0,0,0.0749205 -3440,5602:350,-20,-65,0,0,0.0749205 -3441,5601:459,-19,-65,0,0,0.0749205 -3442,5601:458,-18,-65,0,0,0.0749205 -3443,5601:457,-17,-65,0,0,0.0749275 -3444,5601:456,-16,-65,0,0,0.0749275 -3445,5601:455,-15,-65,0,0,0.0749275 -3446,5601:354,-14,-65,0,0,0.0749275 -3447,5601:353,-13,-65,0,0,0.0749275 -3448,5601:352,-12,-65,0,0,0.0749205 -3449,5601:351,-11,-65,0,0,0.074899 -3450,5601:350,-10,-65,0,0,0.0748705 -3451,5600:459,-9,-65,0,0,0.0748777 -3452,5600:458,-8,-65,0,0,0.0748849 -3453,5600:457,-7,-65,0,0,0.074899 -3454,5600:456,-6,-65,0,0,0.0749205 -3455,5600:455,-5,-65,0,0,0.0749275 -3456,5600:354,-4,-65,0,0,0.0749275 -3457,5600:353,-3,-65,0,0,0.0749062 -3458,5600:352,-2,-65,0,0,0.0748705 -3459,5600:351,-1,-65,0,0,0.0748777 -3460,3600:351,0,-65,0,0,0.0748849 -3461,3600:351,1,-65,0,0,0.074899 -3462,3600:352,2,-65,0,0,0.0749275 -3463,3600:353,3,-65,0,0,0.074892 -3464,3600:354,4,-65,0,0,0.0748705 -3465,3600:455,5,-65,0,0,0.0748493 -3466,3600:456,6,-65,0,0,0.0748421 -3467,3600:457,7,-65,0,0,0.0748349 -3468,3600:458,8,-65,0,0,0.0748564 -3469,3600:459,9,-65,0,0,0.0749062 -3470,3601:350,10,-65,0,0,0.0749418 -3471,3601:351,11,-65,0,0,0.075006 -3472,3601:352,12,-65,0,0,0.0749846 -3473,3601:353,13,-65,0,0,0.0750131 -3474,3601:354,14,-65,0,0,0.0750201 -3475,3601:455,15,-65,0,0,0.0749846 -3476,3601:456,16,-65,0,0,0.0749775 -3477,3601:457,17,-65,0,0,0.0749846 -3478,3601:458,18,-65,0,0,0.0749418 -3479,3601:459,19,-65,0,0,0.074949 -3480,3602:350,20,-65,0,0,0.0749418 -3481,3602:351,21,-65,0,0,0.074949 -3482,3602:352,22,-65,0,0,0.074949 -3483,3602:353,23,-65,0,0,0.0749346 -3484,3602:354,24,-65,0,0,0.0749346 -3485,3602:455,25,-65,0,0,0.0749418 -3486,3602:456,26,-65,0,0,0.0749703 -3487,3602:457,27,-65,0,0,0.0749631 -3488,3602:458,28,-65,0,0,0.0749562 -3489,3602:459,29,-65,0,0,0.0749562 -3490,3603:350,30,-65,0,0,0.0749631 -3491,3603:351,31,-65,0,0,0.0749631 -3492,3603:352,32,-65,0,0,0.0750345 -3493,3603:353,33,-65,0,0,0.0773998 -3494,3603:455,35,-65,0,0,0.0754275 -3495,3603:456,36,-65,0,0,0.0754061 -3496,3603:457,37,-65,0,0,0.0750702 -3497,3603:458,38,-65,0,0,0.0750558 -3498,3603:459,39,-65,0,0,0.0751701 -3499,3604:350,40,-65,0,0,0.07512 -3500,3607:352,72,-65,0,0,0.0854231 -3501,3607:354,74,-65,0,0,0.0807361 -3502,3607:455,75,-65,0,0,0.0816328 -3503,3607:456,76,-65,0,0,0.082554 -3504,3607:457,77,-65,0,0,0.0845044 -3505,3607:458,78,-65,0,0,0.0881094 -3506,3615:456,156,-65,0,0,0.0768221 -3507,3615:457,157,-65,0,0,0.0751486 -3508,3615:458,158,-65,0,0,0.0751128 -3509,3615:459,159,-65,0,0,0.0750558 -3510,3616:350,160,-65,0,0,0.0750558 -3511,3616:351,161,-65,0,0,0.0750488 -3512,3616:352,162,-65,0,0,0.075063 -3513,3616:353,163,-65,0,0,0.0750702 -3514,3616:354,164,-65,0,0,0.0750702 -3515,3616:455,165,-65,0,0,0.075063 -3516,3616:456,166,-65,0,0,0.075063 -3517,3616:457,167,-65,0,0,0.075063 -3518,3616:458,168,-65,0,0,0.0750558 -3519,3616:459,169,-65,0,0,0.0750558 -3520,3617:350,170,-65,0,0,0.0750416 -3521,3617:351,171,-65,0,0,0.0750201 -3522,3617:352,172,-65,0,0,0.075006 -3523,3617:353,173,-65,0,0,0.0749988 -3524,3617:354,174,-65,0,0,0.0749846 -3525,3617:455,175,-65,0,0,0.0749846 -3526,3617:456,176,-65,0,0,0.0749916 -3527,3617:457,177,-65,0,0,0.075006 -3528,3617:458,178,-65,0,0,0.0750345 -3529,3617:459,179,-65,0,0,0.0750416 -3530,3618:350,180,-65,0,0,0.0750488 -3531,5618:140,-180,-64,0,0,0.0750558 -3532,5617:249,-179,-64,0,0,0.075063 -3533,5617:248,-178,-64,0,0,0.075063 -3534,5617:247,-177,-64,0,0,0.0750702 -3535,5617:246,-176,-64,0,0,0.0750702 -3536,5617:245,-175,-64,0,0,0.0750843 -3537,5617:144,-174,-64,0,0,0.0750773 -3538,5617:143,-173,-64,0,0,0.075063 -3539,5617:142,-172,-64,0,0,0.0750558 -3540,5617:141,-171,-64,0,0,0.0750488 -3541,5617:140,-170,-64,0,0,0.0750416 -3542,5616:249,-169,-64,0,0,0.0750273 -3543,5616:248,-168,-64,0,0,0.0750201 -3544,5616:247,-167,-64,0,0,0.0750131 -3545,5616:246,-166,-64,0,0,0.0749916 -3546,5616:245,-165,-64,0,0,0.0749846 -3547,5616:144,-164,-64,0,0,0.0749916 -3548,5616:143,-163,-64,0,0,0.0749988 -3549,5616:142,-162,-64,0,0,0.0750131 -3550,5616:141,-161,-64,0,0,0.0750345 -3551,5616:140,-160,-64,0,0,0.0750488 -3552,5615:249,-159,-64,0,0,0.0750558 -3553,5615:248,-158,-64,0,0,0.0750702 -3554,5615:247,-157,-64,0,0,0.0750843 -3555,5615:246,-156,-64,0,0,0.0750915 -3556,5615:245,-155,-64,0,0,0.0751059 -3557,5615:144,-154,-64,0,0,0.0751272 -3558,5615:143,-153,-64,0,0,0.0751416 -3559,5615:142,-152,-64,0,0,0.0751416 -3560,5615:141,-151,-64,0,0,0.075163 -3561,5615:140,-150,-64,0,0,0.0751558 -3562,5614:249,-149,-64,0,0,0.075163 -3563,5614:248,-148,-64,0,0,0.0751843 -3564,5614:247,-147,-64,0,0,0.0751771 -3565,5614:246,-146,-64,0,0,0.0751701 -3566,5614:245,-145,-64,0,0,0.0751701 -3567,5614:144,-144,-64,0,0,0.0751843 -3568,5614:143,-143,-64,0,0,0.0751843 -3569,5614:142,-142,-64,0,0,0.0751987 -3570,5614:141,-141,-64,0,0,0.0752415 -3571,5614:140,-140,-64,0,0,0.0751915 -3572,5613:249,-139,-64,0,0,0.0751701 -3573,5613:248,-138,-64,0,0,0.0753631 -3574,5613:247,-137,-64,0,0,0.0755926 -3575,5613:246,-136,-64,0,0,0.0752129 -3576,5613:245,-135,-64,0,0,0.0751987 -3577,5613:144,-134,-64,0,0,0.0754921 -3578,5613:143,-133,-64,0,0,0.0794943 -3579,5613:142,-132,-64,0,0,0.0803252 -3580,5613:141,-131,-64,0,0,0.0802569 -3581,5613:140,-130,-64,0,0,0.0779445 -3582,5612:249,-129,-64,0,0,0.0764659 -3583,5612:248,-128,-64,0,0,0.0764876 -3584,5612:247,-127,-64,0,0,0.0767929 -3585,5612:246,-126,-64,0,0,0.0769754 -3586,5612:245,-125,-64,0,0,0.0771799 -3587,5612:144,-124,-64,0,0,0.0778337 -3588,5612:143,-123,-64,0,0,0.0788203 -3589,5612:142,-122,-64,0,0,0.0782551 -3590,5612:141,-121,-64,0,0,0.0778042 -3591,5612:140,-120,-64,0,0,0.0768441 -3592,5611:249,-119,-64,0,0,0.076039 -3593,5611:248,-118,-64,0,0,0.0764006 -3594,5611:247,-117,-64,0,0,0.0788427 -3595,5611:246,-116,-64,0,0,0.0801433 -3596,5611:245,-115,-64,0,0,0.0808276 -3597,5611:144,-114,-64,0,0,0.0804162 -3598,5611:143,-113,-64,0,0,0.079577 -3599,5611:142,-112,-64,0,0,0.0799542 -3600,5611:141,-111,-64,0,0,0.0798408 -3601,5611:140,-110,-64,0,0,0.0809957 -3602,5610:249,-109,-64,0,0,0.080614 -3603,5610:248,-108,-64,0,0,0.0809957 -3604,5610:247,-107,-64,0,0,0.0796673 -3605,5610:246,-106,-64,0,0,0.0766765 -3606,5610:245,-105,-64,0,0,0.075837 -3607,5610:144,-104,-64,0,0,0.0759162 -3608,5610:143,-103,-64,0,0,0.0756932 -3609,5610:142,-102,-64,0,0,0.0750702 -3610,5610:141,-101,-64,0,0,0.0754993 -3611,5610:140,-100,-64,0,0,0.0777307 -3612,5609:249,-99,-64,0,0,0.0784405 -3613,5609:248,-98,-64,0,0,0.0770117 -3614,5609:247,-97,-64,0,0,0.0758225 -3615,5609:246,-96,-64,0,0,0.0751771 -3616,5609:245,-95,-64,0,0,0.0750273 -3617,5609:144,-94,-64,0,0,0.0750488 -3618,5609:143,-93,-64,0,0,0.0750987 -3619,5609:142,-92,-64,0,0,0.0750273 -3620,5609:141,-91,-64,0,0,0.0749775 -3621,5609:140,-90,-64,0,0,0.0749916 -3622,5608:249,-89,-64,0,0,0.0749916 -3623,5608:248,-88,-64,0,0,0.0750131 -3624,5608:247,-87,-64,0,0,0.0750273 -3625,5608:246,-86,-64,0,0,0.0750416 -3626,5608:245,-85,-64,0,0,0.075063 -3627,5608:144,-84,-64,0,0,0.075063 -3628,5608:143,-83,-64,0,0,0.0750702 -3629,5608:142,-82,-64,0,0,0.0750773 -3630,5608:141,-81,-64,0,0,0.0750843 -3631,5608:140,-80,-64,0,0,0.0750915 -3632,5607:249,-79,-64,0,0,0.0750843 -3633,5607:248,-78,-64,0,0,0.0750843 -3634,5607:247,-77,-64,0,0,0.0750987 -3635,5607:246,-76,-64,0,0,0.0751059 -3636,5607:245,-75,-64,0,0,0.075163 -3637,5607:144,-74,-64,0,0,0.0752559 -3638,5607:143,-73,-64,0,0,0.0753631 -3639,5607:142,-72,-64,0,0,0.0754921 -3640,5607:141,-71,-64,0,0,0.0755494 -3641,5607:140,-70,-64,0,0,0.0756787 -3642,5606:249,-69,-64,0,0,0.0768294 -3643,5606:248,-68,-64,0,0,0.0776644 -3644,5605:249,-59,-64,0,0,0.0753489 -3645,5605:248,-58,-64,0,0,0.0751128 -3646,5605:247,-57,-64,0,0,0.0750345 -3647,5605:246,-56,-64,0,0,0.0750345 -3648,5605:245,-55,-64,0,0,0.0750488 -3649,5605:144,-54,-64,0,0,0.0750416 -3650,5605:143,-53,-64,0,0,0.0750273 -3651,5605:142,-52,-64,0,0,0.0749988 -3652,5605:141,-51,-64,0,0,0.0749916 -3653,5605:140,-50,-64,0,0,0.0749916 -3654,5604:249,-49,-64,0,0,0.0749916 -3655,5604:248,-48,-64,0,0,0.0749846 -3656,5604:247,-47,-64,0,0,0.0749846 -3657,5604:246,-46,-64,0,0,0.0749846 -3658,5604:245,-45,-64,0,0,0.0749846 -3659,5604:144,-44,-64,0,0,0.0749775 -3660,5604:143,-43,-64,0,0,0.0749703 -3661,5604:142,-42,-64,0,0,0.0749631 -3662,5604:141,-41,-64,0,0,0.0749631 -3663,5604:140,-40,-64,0,0,0.0749631 -3664,5603:249,-39,-64,0,0,0.0749631 -3665,5603:248,-38,-64,0,0,0.0749631 -3666,5603:247,-37,-64,0,0,0.0749631 -3667,5603:246,-36,-64,0,0,0.0749631 -3668,5603:245,-35,-64,0,0,0.0749631 -3669,5603:144,-34,-64,0,0,0.0749631 -3670,5603:143,-33,-64,0,0,0.0749631 -3671,5603:142,-32,-64,0,0,0.0749562 -3672,5603:141,-31,-64,0,0,0.0749562 -3673,5603:140,-30,-64,0,0,0.074949 -3674,5602:249,-29,-64,0,0,0.0749562 -3675,5602:248,-28,-64,0,0,0.0749562 -3676,5602:247,-27,-64,0,0,0.0749562 -3677,5602:246,-26,-64,0,0,0.0749562 -3678,5602:245,-25,-64,0,0,0.074949 -3679,5602:144,-24,-64,0,0,0.074949 -3680,5602:143,-23,-64,0,0,0.0749418 -3681,5602:142,-22,-64,0,0,0.0749275 -3682,5602:141,-21,-64,0,0,0.0749275 -3683,5602:140,-20,-64,0,0,0.0749205 -3684,5601:249,-19,-64,0,0,0.0749133 -3685,5601:248,-18,-64,0,0,0.0749062 -3686,5601:247,-17,-64,0,0,0.0749062 -3687,5601:246,-16,-64,0,0,0.0749062 -3688,5601:245,-15,-64,0,0,0.0749062 -3689,5601:144,-14,-64,0,0,0.0749133 -3690,5601:143,-13,-64,0,0,0.0749133 -3691,5601:142,-12,-64,0,0,0.0749062 -3692,5601:141,-11,-64,0,0,0.074892 -3693,5601:140,-10,-64,0,0,0.0748636 -3694,5600:249,-9,-64,0,0,0.0748493 -3695,5600:248,-8,-64,0,0,0.0748564 -3696,5600:247,-7,-64,0,0,0.0748777 -3697,5600:246,-6,-64,0,0,0.0748705 -3698,5600:245,-5,-64,0,0,0.0748636 -3699,5600:144,-4,-64,0,0,0.0748849 -3700,5600:143,-3,-64,0,0,0.0748849 -3701,5600:142,-2,-64,0,0,0.0748636 -3702,5600:141,-1,-64,0,0,0.074828 -3703,3600:141,0,-64,0,0,0.0748137 -3704,3600:141,1,-64,0,0,0.0748137 -3705,3600:142,2,-64,0,0,0.0748349 -3706,3600:143,3,-64,0,0,0.0748777 -3707,3600:144,4,-64,0,0,0.0748849 -3708,3600:245,5,-64,0,0,0.0748636 -3709,3600:246,6,-64,0,0,0.0748493 -3710,3600:247,7,-64,0,0,0.0748349 -3711,3600:248,8,-64,0,0,0.0748208 -3712,3600:249,9,-64,0,0,0.0748636 -3713,3601:140,10,-64,0,0,0.0749062 -3714,3601:141,11,-64,0,0,0.074949 -3715,3601:142,12,-64,0,0,0.075006 -3716,3601:143,13,-64,0,0,0.0749846 -3717,3601:144,14,-64,0,0,0.0749703 -3718,3601:245,15,-64,0,0,0.0749418 -3719,3601:246,16,-64,0,0,0.0749562 -3720,3601:247,17,-64,0,0,0.0749631 -3721,3601:248,18,-64,0,0,0.074949 -3722,3601:249,19,-64,0,0,0.0749562 -3723,3602:140,20,-64,0,0,0.0749562 -3724,3602:141,21,-64,0,0,0.0749418 -3725,3602:142,22,-64,0,0,0.0749205 -3726,3602:143,23,-64,0,0,0.074899 -3727,3602:144,24,-64,0,0,0.0749062 -3728,3602:245,25,-64,0,0,0.0749133 -3729,3602:246,26,-64,0,0,0.0749346 -3730,3602:247,27,-64,0,0,0.0749346 -3731,3602:248,28,-64,0,0,0.074949 -3732,3602:249,29,-64,0,0,0.0749631 -3733,3603:140,30,-64,0,0,0.0749703 -3734,3603:141,31,-64,0,0,0.0749703 -3735,3603:142,32,-64,0,0,0.0750273 -3736,3603:143,33,-64,0,0,0.0751344 -3737,3603:144,34,-64,0,0,0.07512 -3738,3603:245,35,-64,0,0,0.0750702 -3739,3603:246,36,-64,0,0,0.0750702 -3740,3603:247,37,-64,0,0,0.0750702 -3741,3603:248,38,-64,0,0,0.075063 -3742,3603:249,39,-64,0,0,0.0750773 -3743,3604:140,40,-64,0,0,0.0750488 -3744,3604:141,41,-64,0,0,0.075063 -3745,3604:142,42,-64,0,0,0.0750915 -3746,3607:140,70,-64,0,0,0.0826319 -3747,3607:141,71,-64,0,0,0.07969 -3748,3607:142,72,-64,0,0,0.0793591 -3749,3607:144,74,-64,0,0,0.0794792 -3750,3607:245,75,-64,0,0,0.0795694 -3751,3607:246,76,-64,0,0,0.079871 -3752,3607:247,77,-64,0,0,0.0808427 -3753,3607:248,78,-64,0,0,0.0858415 -3754,3607:249,79,-64,0,0,0.091212 -3755,3614:249,149,-64,0,0,0.0833198 -3756,3615:140,150,-64,0,0,0.0818642 -3757,3615:141,151,-64,0,0,0.0815327 -3758,3615:142,152,-64,0,0,0.0800599 -3759,3615:143,153,-64,0,0,0.0774806 -3760,3615:144,154,-64,0,0,0.0758658 -3761,3615:245,155,-64,0,0,0.0755135 -3762,3615:246,156,-64,0,0,0.075063 -3763,3615:247,157,-64,0,0,0.0750773 -3764,3615:248,158,-64,0,0,0.0750702 -3765,3615:249,159,-64,0,0,0.0750488 -3766,3616:140,160,-64,0,0,0.0750273 -3767,3616:141,161,-64,0,0,0.0750273 -3768,3616:142,162,-64,0,0,0.0750131 -3769,3616:143,163,-64,0,0,0.0750345 -3770,3616:144,164,-64,0,0,0.075063 -3771,3616:245,165,-64,0,0,0.0750416 -3772,3616:246,166,-64,0,0,0.0750488 -3773,3616:247,167,-64,0,0,0.0750488 -3774,3616:248,168,-64,0,0,0.0750416 -3775,3616:249,169,-64,0,0,0.0750416 -3776,3617:140,170,-64,0,0,0.0750345 -3777,3617:141,171,-64,0,0,0.0750273 -3778,3617:142,172,-64,0,0,0.0750131 -3779,3617:143,173,-64,0,0,0.075006 -3780,3617:144,174,-64,0,0,0.0749988 -3781,3617:245,175,-64,0,0,0.0750131 -3782,3617:246,176,-64,0,0,0.0750201 -3783,3617:247,177,-64,0,0,0.0750273 -3784,3617:248,178,-64,0,0,0.0750345 -3785,3617:249,179,-64,0,0,0.0750488 -3786,3618:140,180,-64,0,0,0.0750558 -3787,5618:130,-180,-63,0,0,0.0750558 -3788,5617:239,-179,-63,0,0,0.075063 -3789,5617:238,-178,-63,0,0,0.075063 -3790,5617:237,-177,-63,0,0,0.075063 -3791,5617:236,-176,-63,0,0,0.0750915 -3792,5617:235,-175,-63,0,0,0.0751128 -3793,5617:134,-174,-63,0,0,0.0750843 -3794,5617:133,-173,-63,0,0,0.075063 -3795,5617:132,-172,-63,0,0,0.0750558 -3796,5617:131,-171,-63,0,0,0.0750416 -3797,5617:130,-170,-63,0,0,0.0750416 -3798,5616:239,-169,-63,0,0,0.0750345 -3799,5616:238,-168,-63,0,0,0.0750273 -3800,5616:237,-167,-63,0,0,0.0750201 -3801,5616:236,-166,-63,0,0,0.075006 -3802,5616:235,-165,-63,0,0,0.0749988 -3803,5616:134,-164,-63,0,0,0.075006 -3804,5616:133,-163,-63,0,0,0.0750201 -3805,5616:132,-162,-63,0,0,0.0750345 -3806,5616:131,-161,-63,0,0,0.0750488 -3807,5616:130,-160,-63,0,0,0.075063 -3808,5615:239,-159,-63,0,0,0.0750702 -3809,5615:238,-158,-63,0,0,0.0750773 -3810,5615:237,-157,-63,0,0,0.0750843 -3811,5615:236,-156,-63,0,0,0.0750915 -3812,5615:235,-155,-63,0,0,0.0751059 -3813,5615:134,-154,-63,0,0,0.07512 -3814,5615:133,-153,-63,0,0,0.0751416 -3815,5615:132,-152,-63,0,0,0.0751558 -3816,5615:131,-151,-63,0,0,0.075163 -3817,5615:130,-150,-63,0,0,0.0751701 -3818,5614:239,-149,-63,0,0,0.075163 -3819,5614:238,-148,-63,0,0,0.0751771 -3820,5614:237,-147,-63,0,0,0.0751771 -3821,5614:236,-146,-63,0,0,0.0752057 -3822,5614:235,-145,-63,0,0,0.0752201 -3823,5614:134,-144,-63,0,0,0.0751915 -3824,5614:133,-143,-63,0,0,0.0752415 -3825,5614:132,-142,-63,0,0,0.0754779 -3826,5614:131,-141,-63,0,0,0.0773559 -3827,5614:130,-140,-63,0,0,0.0762918 -3828,5613:239,-139,-63,0,0,0.0759956 -3829,5613:238,-138,-63,0,0,0.076234 -3830,5613:237,-137,-63,0,0,0.0762918 -3831,5613:236,-136,-63,0,0,0.0760245 -3832,5613:235,-135,-63,0,0,0.0758443 -3833,5613:134,-134,-63,0,0,0.0752844 -3834,5613:133,-133,-63,0,0,0.0756213 -3835,5613:132,-132,-63,0,0,0.0794792 -3836,5613:131,-131,-63,0,0,0.0815017 -3837,5613:130,-130,-63,0,0,0.0837208 -3838,5612:239,-129,-63,0,0,0.0777084 -3839,5612:238,-128,-63,0,0,0.0780552 -3840,5612:237,-127,-63,0,0,0.0810952 -3841,5612:236,-126,-63,0,0,0.0799164 -3842,5612:235,-125,-63,0,0,0.0789621 -3843,5612:134,-124,-63,0,0,0.0798256 -3844,5612:133,-123,-63,0,0,0.0796599 -3845,5612:132,-122,-63,0,0,0.0788427 -3846,5612:131,-121,-63,0,0,0.0789472 -3847,5612:130,-120,-63,0,0,0.0788351 -3848,5611:239,-119,-63,0,0,0.0790816 -3849,5611:238,-118,-63,0,0,0.0799314 -3850,5611:237,-117,-63,0,0,0.0799088 -3851,5611:236,-116,-63,0,0,0.0799542 -3852,5611:235,-115,-63,0,0,0.0807589 -3853,5611:134,-114,-63,0,0,0.0820496 -3854,5611:133,-113,-63,0,0,0.0816636 -3855,5611:132,-112,-63,0,0,0.0810415 -3856,5611:131,-111,-63,0,0,0.0808048 -3857,5611:130,-110,-63,0,0,0.081302 -3858,5610:239,-109,-63,0,0,0.0811258 -3859,5610:238,-108,-63,0,0,0.081571 -3860,5610:237,-107,-63,0,0,0.0825851 -3861,5610:236,-106,-63,0,0,0.0837367 -3862,5610:235,-105,-63,0,0,0.0824918 -3863,5610:134,-104,-63,0,0,0.082819 -3864,5610:133,-103,-63,0,0,0.0817175 -3865,5610:132,-102,-63,0,0,0.0810569 -3866,5610:131,-101,-63,0,0,0.0793366 -3867,5610:130,-100,-63,0,0,0.0780405 -3868,5609:239,-99,-63,0,0,0.077532 -3869,5609:238,-98,-63,0,0,0.0752129 -3870,5609:237,-97,-63,0,0,0.0750987 -3871,5609:236,-96,-63,0,0,0.0750987 -3872,5609:235,-95,-63,0,0,0.0750416 -3873,5609:134,-94,-63,0,0,0.0750915 -3874,5609:133,-93,-63,0,0,0.0752631 -3875,5609:132,-92,-63,0,0,0.0753272 -3876,5609:131,-91,-63,0,0,0.0751272 -3877,5609:130,-90,-63,0,0,0.075006 -3878,5608:239,-89,-63,0,0,0.0750345 -3879,5608:238,-88,-63,0,0,0.0750131 -3880,5608:237,-87,-63,0,0,0.0750131 -3881,5608:236,-86,-63,0,0,0.0750345 -3882,5608:235,-85,-63,0,0,0.0750345 -3883,5608:134,-84,-63,0,0,0.0750488 -3884,5608:133,-83,-63,0,0,0.0750558 -3885,5608:132,-82,-63,0,0,0.0750915 -3886,5608:131,-81,-63,0,0,0.0750843 -3887,5608:130,-80,-63,0,0,0.0750702 -3888,5607:239,-79,-63,0,0,0.075063 -3889,5607:238,-78,-63,0,0,0.0750702 -3890,5607:237,-77,-63,0,0,0.075063 -3891,5607:236,-76,-63,0,0,0.0750702 -3892,5607:235,-75,-63,0,0,0.0750558 -3893,5607:134,-74,-63,0,0,0.075313 -3894,5607:133,-73,-63,0,0,0.075442 -3895,5607:132,-72,-63,0,0,0.0756141 -3896,5607:131,-71,-63,0,0,0.0761834 -3897,5607:130,-70,-63,0,0,0.076713 -3898,5606:238,-68,-63,0,0,0.0829126 -3899,5606:130,-60,-63,0,0,0.0759523 -3900,5605:239,-59,-63,0,0,0.0754275 -3901,5605:238,-58,-63,0,0,0.0751344 -3902,5605:237,-57,-63,0,0,0.0750416 -3903,5605:236,-56,-63,0,0,0.0750345 -3904,5605:235,-55,-63,0,0,0.0750416 -3905,5605:134,-54,-63,0,0,0.0750416 -3906,5605:133,-53,-63,0,0,0.0750201 -3907,5605:132,-52,-63,0,0,0.0749988 -3908,5605:131,-51,-63,0,0,0.0749988 -3909,5605:130,-50,-63,0,0,0.0749916 -3910,5604:239,-49,-63,0,0,0.0749916 -3911,5604:238,-48,-63,0,0,0.0749846 -3912,5604:237,-47,-63,0,0,0.0749775 -3913,5604:236,-46,-63,0,0,0.0749775 -3914,5604:235,-45,-63,0,0,0.0749775 -3915,5604:134,-44,-63,0,0,0.0749775 -3916,5604:133,-43,-63,0,0,0.0749703 -3917,5604:132,-42,-63,0,0,0.0749703 -3918,5604:131,-41,-63,0,0,0.0749703 -3919,5604:130,-40,-63,0,0,0.0749703 -3920,5603:239,-39,-63,0,0,0.0749703 -3921,5603:238,-38,-63,0,0,0.0749631 -3922,5603:237,-37,-63,0,0,0.0749631 -3923,5603:236,-36,-63,0,0,0.0749631 -3924,5603:235,-35,-63,0,0,0.0749631 -3925,5603:134,-34,-63,0,0,0.0749631 -3926,5603:133,-33,-63,0,0,0.0749562 -3927,5603:132,-32,-63,0,0,0.0749562 -3928,5603:131,-31,-63,0,0,0.0749562 -3929,5603:130,-30,-63,0,0,0.0749631 -3930,5602:239,-29,-63,0,0,0.0749631 -3931,5602:238,-28,-63,0,0,0.0749631 -3932,5602:237,-27,-63,0,0,0.0749631 -3933,5602:236,-26,-63,0,0,0.0749631 -3934,5602:235,-25,-63,0,0,0.0749562 -3935,5602:134,-24,-63,0,0,0.0749562 -3936,5602:133,-23,-63,0,0,0.074949 -3937,5602:132,-22,-63,0,0,0.0749418 -3938,5602:131,-21,-63,0,0,0.0749346 -3939,5602:130,-20,-63,0,0,0.0749275 -3940,5601:239,-19,-63,0,0,0.0749205 -3941,5601:238,-18,-63,0,0,0.0749062 -3942,5601:237,-17,-63,0,0,0.074899 -3943,5601:236,-16,-63,0,0,0.074892 -3944,5601:235,-15,-63,0,0,0.0748849 -3945,5601:134,-14,-63,0,0,0.074892 -3946,5601:133,-13,-63,0,0,0.074892 -3947,5601:132,-12,-63,0,0,0.0748849 -3948,5601:131,-11,-63,0,0,0.0748777 -3949,5601:130,-10,-63,0,0,0.0748705 -3950,5600:239,-9,-63,0,0,0.0748705 -3951,5600:238,-8,-63,0,0,0.0748636 -3952,5600:237,-7,-63,0,0,0.0748564 -3953,5600:236,-6,-63,0,0,0.0748493 -3954,5600:235,-5,-63,0,0,0.0748349 -3955,5600:134,-4,-63,0,0,0.074828 -3956,5600:133,-3,-63,0,0,0.0748137 -3957,5600:132,-2,-63,0,0,0.0748137 -3958,5600:131,-1,-63,0,0,0.074828 -3959,3600:131,0,-63,0,0,0.0748349 -3960,3600:131,1,-63,0,0,0.0748705 -3961,3600:132,2,-63,0,0,0.0748349 -3962,3600:133,3,-63,0,0,0.0748208 -3963,3600:134,4,-63,0,0,0.0748208 -3964,3600:235,5,-63,0,0,0.074828 -3965,3600:236,6,-63,0,0,0.074828 -3966,3600:237,7,-63,0,0,0.0748564 -3967,3600:238,8,-63,0,0,0.0748493 -3968,3600:239,9,-63,0,0,0.0748564 -3969,3601:130,10,-63,0,0,0.074899 -3970,3601:131,11,-63,0,0,0.0749275 -3971,3601:132,12,-63,0,0,0.074949 -3972,3601:133,13,-63,0,0,0.0749562 -3973,3601:134,14,-63,0,0,0.0749631 -3974,3601:235,15,-63,0,0,0.0749418 -3975,3601:236,16,-63,0,0,0.0749418 -3976,3601:237,17,-63,0,0,0.0749346 -3977,3601:238,18,-63,0,0,0.0749133 -3978,3601:239,19,-63,0,0,0.0749275 -3979,3602:130,20,-63,0,0,0.0749205 -3980,3602:131,21,-63,0,0,0.0749133 -3981,3602:132,22,-63,0,0,0.0749133 -3982,3602:133,23,-63,0,0,0.0749205 -3983,3602:134,24,-63,0,0,0.0749205 -3984,3602:235,25,-63,0,0,0.0749205 -3985,3602:236,26,-63,0,0,0.0749275 -3986,3602:237,27,-63,0,0,0.0749275 -3987,3602:238,28,-63,0,0,0.0749346 -3988,3602:239,29,-63,0,0,0.0749562 -3989,3603:130,30,-63,0,0,0.0749562 -3990,3603:131,31,-63,0,0,0.0749775 -3991,3603:132,32,-63,0,0,0.0749916 -3992,3603:133,33,-63,0,0,0.0750345 -3993,3603:134,34,-63,0,0,0.0750345 -3994,3603:235,35,-63,0,0,0.0750416 -3995,3603:236,36,-63,0,0,0.0750702 -3996,3603:237,37,-63,0,0,0.0750488 -3997,3603:238,38,-63,0,0,0.0750345 -3998,3603:239,39,-63,0,0,0.0750345 -3999,3604:130,40,-63,0,0,0.0750416 -4000,3604:131,41,-63,0,0,0.0750558 -4001,3604:132,42,-63,0,0,0.0750558 -4002,3604:133,43,-63,0,0,0.0750488 -4003,3604:134,44,-63,0,0,0.0750558 -4004,3604:235,45,-63,0,0,0.0750201 -4005,3604:236,46,-63,0,0,0.0747568 -4006,3604:238,48,-63,0,0,0.0815402 -4007,3606:235,65,-63,0,0,0.0795694 -4008,3606:236,66,-63,0,0,0.0792915 -4009,3606:237,67,-63,0,0,0.0787159 -4010,3606:238,68,-63,0,0,0.0776718 -4011,3606:239,69,-63,0,0,0.0785446 -4012,3607:130,70,-63,0,0,0.07751 -4013,3607:131,71,-63,0,0,0.0774658 -4014,3607:132,72,-63,0,0,0.0777307 -4015,3607:134,74,-63,0,0,0.0773852 -4016,3607:235,75,-63,0,0,0.0774584 -4017,3607:236,76,-63,0,0,0.0788276 -4018,3607:237,77,-63,0,0,0.0794342 -4019,3607:238,78,-63,0,0,0.081302 -4020,3607:239,79,-63,0,0,0.0837367 -4021,3608:130,80,-63,0,0,0.0864804 -4022,3608:131,81,-63,0,0,0.0908889 -4023,3614:236,146,-63,0,0,0.0848948 -4024,3614:237,147,-63,0,0,0.0829987 -4025,3614:238,148,-63,0,0,0.0812406 -4026,3614:239,149,-63,0,0,0.0810415 -4027,3615:130,150,-63,0,0,0.0785893 -4028,3615:131,151,-63,0,0,0.0766257 -4029,3615:132,152,-63,0,0,0.0750843 -4030,3615:133,153,-63,0,0,0.0750987 -4031,3615:134,154,-63,0,0,0.0750987 -4032,3615:235,155,-63,0,0,0.0750843 -4033,3615:236,156,-63,0,0,0.0750987 -4034,3615:237,157,-63,0,0,0.0750843 -4035,3615:238,158,-63,0,0,0.0750273 -4036,3615:239,159,-63,0,0,0.0749988 -4037,3616:130,160,-63,0,0,0.075006 -4038,3616:131,161,-63,0,0,0.0750131 -4039,3616:132,162,-63,0,0,0.0750201 -4040,3616:133,163,-63,0,0,0.0750201 -4041,3616:134,164,-63,0,0,0.0749346 -4042,3616:235,165,-63,0,0,0.0751843 -4043,3616:236,166,-63,0,0,0.0750416 -4044,3616:237,167,-63,0,0,0.0750345 -4045,3616:238,168,-63,0,0,0.0750345 -4046,3616:239,169,-63,0,0,0.0750345 -4047,3617:130,170,-63,0,0,0.0750273 -4048,3617:131,171,-63,0,0,0.0750273 -4049,3617:132,172,-63,0,0,0.0750273 -4050,3617:133,173,-63,0,0,0.0750273 -4051,3617:134,174,-63,0,0,0.0750201 -4052,3617:235,175,-63,0,0,0.0750131 -4053,3617:236,176,-63,0,0,0.0750345 -4054,3617:237,177,-63,0,0,0.0750416 -4055,3617:238,178,-63,0,0,0.0750488 -4056,3617:239,179,-63,0,0,0.0750558 -4057,3618:130,180,-63,0,0,0.0750558 -4058,5618:120,-180,-62,0,0,0.0750416 -4059,5617:229,-179,-62,0,0,0.0750416 -4060,5617:228,-178,-62,0,0,0.075063 -4061,5617:227,-177,-62,0,0,0.0751059 -4062,5617:226,-176,-62,0,0,0.0752057 -4063,5617:225,-175,-62,0,0,0.07512 -4064,5617:124,-174,-62,0,0,0.0750773 -4065,5617:123,-173,-62,0,0,0.075063 -4066,5617:122,-172,-62,0,0,0.0750488 -4067,5617:121,-171,-62,0,0,0.0750416 -4068,5617:120,-170,-62,0,0,0.0750273 -4069,5616:229,-169,-62,0,0,0.0750201 -4070,5616:228,-168,-62,0,0,0.0750131 -4071,5616:227,-167,-62,0,0,0.0750131 -4072,5616:226,-166,-62,0,0,0.0750131 -4073,5616:225,-165,-62,0,0,0.0750131 -4074,5616:124,-164,-62,0,0,0.0750201 -4075,5616:123,-163,-62,0,0,0.0750345 -4076,5616:122,-162,-62,0,0,0.0750488 -4077,5616:121,-161,-62,0,0,0.0750488 -4078,5616:120,-160,-62,0,0,0.075063 -4079,5615:229,-159,-62,0,0,0.0750773 -4080,5615:228,-158,-62,0,0,0.0750843 -4081,5615:227,-157,-62,0,0,0.0750915 -4082,5615:226,-156,-62,0,0,0.0750987 -4083,5615:225,-155,-62,0,0,0.0751128 -4085,5615:123,-153,-62,0,0,0.0751344 -4086,5615:122,-152,-62,0,0,0.0751486 -4087,5615:121,-151,-62,0,0,0.0751558 -4088,5615:120,-150,-62,0,0,0.075163 -4089,5614:229,-149,-62,0,0,0.0751701 -4090,5614:228,-148,-62,0,0,0.0751843 -4091,5614:227,-147,-62,0,0,0.0751843 -4092,5614:226,-146,-62,0,0,0.0751987 -4093,5614:225,-145,-62,0,0,0.0753703 -4094,5614:124,-144,-62,0,0,0.0751987 -4095,5614:123,-143,-62,0,0,0.0752631 -4096,5614:122,-142,-62,0,0,0.0757435 -4097,5614:121,-141,-62,0,0,0.0783144 -4098,5614:120,-140,-62,0,0,0.0788128 -4099,5613:229,-139,-62,0,0,0.0773118 -4100,5613:228,-138,-62,0,0,0.0775465 -4101,5613:227,-137,-62,0,0,0.0817175 -4102,5613:226,-136,-62,0,0,0.0809803 -4103,5613:225,-135,-62,0,0,0.082983 -4104,5613:124,-134,-62,0,0,0.0855597 -4105,5613:123,-133,-62,0,0,0.0837997 -4106,5613:122,-132,-62,0,0,0.078448 -4107,5613:121,-131,-62,0,0,0.0803405 -4108,5613:120,-130,-62,0,0,0.0836184 -4109,5612:229,-129,-62,0,0,0.0854633 -4110,5612:228,-128,-62,0,0,0.0803252 -4111,5612:227,-127,-62,0,0,0.0811716 -4112,5612:226,-126,-62,0,0,0.0819955 -4113,5612:225,-125,-62,0,0,0.0813559 -4114,5612:124,-124,-62,0,0,0.0810263 -4115,5612:123,-123,-62,0,0,0.0807817 -4116,5612:122,-122,-62,0,0,0.0809192 -4117,5612:121,-121,-62,0,0,0.0812254 -4118,5612:120,-120,-62,0,0,0.0816481 -4119,5611:229,-119,-62,0,0,0.0829987 -4120,5611:228,-118,-62,0,0,0.0849747 -4121,5611:227,-117,-62,0,0,0.0844726 -4122,5611:226,-116,-62,0,0,0.0840287 -4123,5611:225,-115,-62,0,0,0.0869933 -4124,5611:124,-114,-62,0,0,0.0839655 -4125,5611:123,-113,-62,0,0,0.0840526 -4126,5611:122,-112,-62,0,0,0.0841712 -4127,5611:121,-111,-62,0,0,0.0825308 -4128,5611:120,-110,-62,0,0,0.0823131 -4129,5610:229,-109,-62,0,0,0.0817405 -4130,5610:228,-108,-62,0,0,0.0815557 -4131,5610:227,-107,-62,0,0,0.083116 -4132,5610:226,-106,-62,0,0,0.0863913 -4133,5610:225,-105,-62,0,0,0.0846556 -4134,5610:124,-104,-62,0,0,0.0829205 -4135,5610:123,-103,-62,0,0,0.0817947 -4136,5610:122,-102,-62,0,0,0.0813252 -4137,5610:121,-101,-62,0,0,0.0804847 -4138,5610:120,-100,-62,0,0,0.0766983 -4139,5609:229,-99,-62,0,0,0.0765457 -4140,5609:228,-98,-62,0,0,0.0750345 -4141,5609:227,-97,-62,0,0,0.0750702 -4142,5609:226,-96,-62,0,0,0.0750488 -4143,5609:225,-95,-62,0,0,0.0754492 -4144,5609:124,-94,-62,0,0,0.0756285 -4145,5609:123,-93,-62,0,0,0.0755998 -4146,5609:122,-92,-62,0,0,0.0752916 -4147,5609:121,-91,-62,0,0,0.0753489 -4148,5609:120,-90,-62,0,0,0.0751771 -4149,5608:229,-89,-62,0,0,0.0750773 -4150,5608:228,-88,-62,0,0,0.0751344 -4151,5608:227,-87,-62,0,0,0.0752986 -4152,5608:226,-86,-62,0,0,0.0750488 -4153,5608:225,-85,-62,0,0,0.075729 -4154,5608:124,-84,-62,0,0,0.075837 -4155,5608:123,-83,-62,0,0,0.0758515 -4156,5608:122,-82,-62,0,0,0.0758298 -4157,5608:121,-81,-62,0,0,0.0763427 -4158,5608:120,-80,-62,0,0,0.0764803 -4159,5607:229,-79,-62,0,0,0.0766912 -4160,5607:228,-78,-62,0,0,0.0772899 -4161,5607:227,-77,-62,0,0,0.0756787 -4162,5607:226,-76,-62,0,0,0.0754061 -4163,5607:225,-75,-62,0,0,0.0756787 -4164,5607:124,-74,-62,0,0,0.0764949 -4165,5607:123,-73,-62,0,0,0.0765457 -4166,5607:122,-72,-62,0,0,0.0772092 -4167,5607:121,-71,-62,0,0,0.0769462 -4168,5607:120,-70,-62,0,0,0.0766912 -4169,5606:229,-69,-62,0,0,0.0785299 -4170,5606:120,-60,-62,0,0,0.0774217 -4171,5605:229,-59,-62,0,0,0.0752487 -4172,5605:228,-58,-62,0,0,0.0751344 -4173,5605:227,-57,-62,0,0,0.0751128 -4174,5605:226,-56,-62,0,0,0.0750558 -4175,5605:225,-55,-62,0,0,0.0750416 -4176,5605:124,-54,-62,0,0,0.0750488 -4177,5605:123,-53,-62,0,0,0.0750273 -4178,5605:122,-52,-62,0,0,0.075006 -4179,5605:121,-51,-62,0,0,0.0749988 -4180,5605:120,-50,-62,0,0,0.0749916 -4181,5604:229,-49,-62,0,0,0.0749846 -4182,5604:228,-48,-62,0,0,0.0749846 -4183,5604:227,-47,-62,0,0,0.0749775 -4184,5604:226,-46,-62,0,0,0.0749703 -4185,5604:225,-45,-62,0,0,0.0749775 -4186,5604:124,-44,-62,0,0,0.0749703 -4187,5604:123,-43,-62,0,0,0.0749703 -4188,5604:122,-42,-62,0,0,0.0749775 -4189,5604:121,-41,-62,0,0,0.0749775 -4190,5604:120,-40,-62,0,0,0.0749703 -4191,5603:229,-39,-62,0,0,0.0749703 -4192,5603:228,-38,-62,0,0,0.0749631 -4193,5603:227,-37,-62,0,0,0.0749631 -4194,5603:226,-36,-62,0,0,0.0749631 -4195,5603:225,-35,-62,0,0,0.0749631 -4196,5603:124,-34,-62,0,0,0.0749631 -4197,5603:123,-33,-62,0,0,0.0749631 -4198,5603:122,-32,-62,0,0,0.0749631 -4199,5603:121,-31,-62,0,0,0.0749703 -4200,5603:120,-30,-62,0,0,0.0749631 -4201,5602:229,-29,-62,0,0,0.0749631 -4202,5602:228,-28,-62,0,0,0.0749631 -4203,5602:227,-27,-62,0,0,0.0749631 -4204,5602:226,-26,-62,0,0,0.0749631 -4205,5602:225,-25,-62,0,0,0.0749631 -4206,5602:124,-24,-62,0,0,0.0749562 -4207,5602:123,-23,-62,0,0,0.074949 -4208,5602:122,-22,-62,0,0,0.074949 -4209,5602:121,-21,-62,0,0,0.0749346 -4210,5602:120,-20,-62,0,0,0.0749275 -4211,5601:229,-19,-62,0,0,0.0749205 -4212,5601:228,-18,-62,0,0,0.0749062 -4213,5601:227,-17,-62,0,0,0.074892 -4214,5601:226,-16,-62,0,0,0.0748777 -4215,5601:225,-15,-62,0,0,0.0748705 -4216,5601:124,-14,-62,0,0,0.0748705 -4217,5601:123,-13,-62,0,0,0.0748777 -4218,5601:122,-12,-62,0,0,0.0748777 -4219,5601:121,-11,-62,0,0,0.0748705 -4220,5601:120,-10,-62,0,0,0.0748705 -4221,5600:229,-9,-62,0,0,0.0748636 -4222,5600:228,-8,-62,0,0,0.0748636 -4223,5600:227,-7,-62,0,0,0.0748636 -4224,5600:226,-6,-62,0,0,0.0748705 -4225,5600:225,-5,-62,0,0,0.0748705 -4226,5600:124,-4,-62,0,0,0.0748564 -4227,5600:123,-3,-62,0,0,0.0748421 -4228,5600:122,-2,-62,0,0,0.0748349 -4229,5600:121,-1,-62,0,0,0.0748349 -4230,3600:121,0,-62,0,0,0.0748421 -4231,3600:121,1,-62,0,0,0.0748493 -4232,3600:122,2,-62,0,0,0.074828 -4233,3600:123,3,-62,0,0,0.0748349 -4234,3600:124,4,-62,0,0,0.074828 -4235,3600:225,5,-62,0,0,0.0748564 -4236,3600:226,6,-62,0,0,0.074828 -4237,3600:227,7,-62,0,0,0.0748421 -4238,3600:228,8,-62,0,0,0.0748564 -4239,3600:229,9,-62,0,0,0.0748705 -4240,3601:120,10,-62,0,0,0.0748777 -4241,3601:121,11,-62,0,0,0.0749133 -4242,3601:122,12,-62,0,0,0.0749205 -4243,3601:123,13,-62,0,0,0.0749205 -4244,3601:124,14,-62,0,0,0.0749133 -4245,3601:225,15,-62,0,0,0.0749133 -4246,3601:226,16,-62,0,0,0.0749133 -4247,3601:227,17,-62,0,0,0.0749062 -4248,3601:228,18,-62,0,0,0.0749062 -4249,3601:229,19,-62,0,0,0.0749062 -4250,3602:120,20,-62,0,0,0.074899 -4251,3602:121,21,-62,0,0,0.0749062 -4252,3602:122,22,-62,0,0,0.0749133 -4253,3602:123,23,-62,0,0,0.0749133 -4254,3602:124,24,-62,0,0,0.0749062 -4255,3602:225,25,-62,0,0,0.0749133 -4256,3602:226,26,-62,0,0,0.0749133 -4257,3602:227,27,-62,0,0,0.0749133 -4258,3602:228,28,-62,0,0,0.0749275 -4259,3602:229,29,-62,0,0,0.0749418 -4260,3603:120,30,-62,0,0,0.0749631 -4261,3603:121,31,-62,0,0,0.0749775 -4262,3603:122,32,-62,0,0,0.0749846 -4263,3603:123,33,-62,0,0,0.0750131 -4264,3603:124,34,-62,0,0,0.0750416 -4265,3603:225,35,-62,0,0,0.0750345 -4266,3603:226,36,-62,0,0,0.0749846 -4267,3603:227,37,-62,0,0,0.0749916 -4268,3603:228,38,-62,0,0,0.0749988 -4269,3603:229,39,-62,0,0,0.075006 -4270,3604:120,40,-62,0,0,0.0750201 -4271,3604:121,41,-62,0,0,0.0750131 -4272,3604:122,42,-62,0,0,0.0750131 -4273,3604:123,43,-62,0,0,0.0750201 -4274,3604:124,44,-62,0,0,0.0750201 -4275,3604:225,45,-62,0,0,0.075006 -4276,3604:226,46,-62,0,0,0.0749988 -4277,3604:227,47,-62,0,0,0.0766983 -4278,3604:228,48,-62,0,0,0.0794943 -4279,3605:120,50,-62,0,0,0.0826631 -4280,3605:228,58,-62,0,0,0.0752844 -4281,3605:229,59,-62,0,0,0.0751915 -4282,3606:120,60,-62,0,0,0.0751128 -4283,3606:121,61,-62,0,0,0.0752343 -4284,3606:122,62,-62,0,0,0.0756141 -4285,3606:123,63,-62,0,0,0.0759956 -4286,3606:124,64,-62,0,0,0.077063 -4287,3606:225,65,-62,0,0,0.0767567 -4288,3606:226,66,-62,0,0,0.0762918 -4289,3606:227,67,-62,0,0,0.0752631 -4290,3606:228,68,-62,0,0,0.0748849 -4291,3606:229,69,-62,0,0,0.0749631 -4292,3607:120,70,-62,0,0,0.0749846 -4293,3607:121,71,-62,0,0,0.0751059 -4294,3607:122,72,-62,0,0,0.0750558 -4295,3607:124,74,-62,0,0,0.0752415 -4296,3607:225,75,-62,0,0,0.0774584 -4297,3607:226,76,-62,0,0,0.0774439 -4298,3607:227,77,-62,0,0,0.077797 -4299,3607:228,78,-62,0,0,0.0788502 -4300,3607:229,79,-62,0,0,0.0791417 -4301,3608:120,80,-62,0,0,0.0805 -4302,3608:121,81,-62,0,0,0.0830691 -4303,3608:122,82,-62,0,0,0.0904737 -4304,3614:225,145,-62,0,0,0.0787978 -4305,3614:226,146,-62,0,0,0.0792615 -4306,3614:227,147,-62,0,0,0.0751128 -4307,3614:228,148,-62,0,0,0.07512 -4308,3614:229,149,-62,0,0,0.075063 -4309,3615:120,150,-62,0,0,0.0750702 -4310,3615:121,151,-62,0,0,0.0750773 -4311,3615:122,152,-62,0,0,0.0750915 -4312,3615:123,153,-62,0,0,0.0750773 -4313,3615:124,154,-62,0,0,0.0750773 -4314,3615:225,155,-62,0,0,0.075063 -4315,3615:226,156,-62,0,0,0.0750488 -4316,3615:227,157,-62,0,0,0.0750201 -4317,3615:228,158,-62,0,0,0.0749988 -4318,3615:229,159,-62,0,0,0.075006 -4319,3616:120,160,-62,0,0,0.0750201 -4320,3616:121,161,-62,0,0,0.0750131 -4321,3616:122,162,-62,0,0,0.075006 -4322,3616:123,163,-62,0,0,0.075006 -4323,3616:124,164,-62,0,0,0.0750345 -4324,3616:225,165,-62,0,0,0.0750416 -4325,3616:226,166,-62,0,0,0.0750488 -4326,3616:227,167,-62,0,0,0.0750488 -4327,3616:228,168,-62,0,0,0.0750416 -4328,3616:229,169,-62,0,0,0.0750345 -4329,3617:120,170,-62,0,0,0.0750273 -4330,3617:121,171,-62,0,0,0.0750345 -4331,3617:122,172,-62,0,0,0.0750416 -4332,3617:123,173,-62,0,0,0.0750416 -4333,3617:124,174,-62,0,0,0.0750416 -4334,3617:225,175,-62,0,0,0.0750345 -4335,3617:226,176,-62,0,0,0.0750273 -4336,3617:227,177,-62,0,0,0.0750273 -4337,3617:228,178,-62,0,0,0.0750488 -4338,3617:229,179,-62,0,0,0.0750488 -4339,3618:120,180,-62,0,0,0.0750416 -4340,5618:110,-180,-61,0,0,0.075063 -4341,5617:219,-179,-61,0,0,0.07512 -4342,5617:218,-178,-61,0,0,0.0752986 -4343,5617:217,-177,-61,0,0,0.0757507 -4344,5617:216,-176,-61,0,0,0.0755854 -4345,5617:215,-175,-61,0,0,0.0752916 -4346,5617:114,-174,-61,0,0,0.0750702 -4347,5617:113,-173,-61,0,0,0.075063 -4348,5617:112,-172,-61,0,0,0.0750416 -4349,5617:111,-171,-61,0,0,0.0750273 -4350,5617:110,-170,-61,0,0,0.0750131 -4351,5616:219,-169,-61,0,0,0.075006 -4352,5616:218,-168,-61,0,0,0.0749988 -4353,5616:217,-167,-61,0,0,0.0749988 -4354,5616:216,-166,-61,0,0,0.075006 -4355,5616:215,-165,-61,0,0,0.0750131 -4356,5616:114,-164,-61,0,0,0.0750201 -4357,5616:113,-163,-61,0,0,0.0750345 -4358,5616:112,-162,-61,0,0,0.0750488 -4359,5616:111,-161,-61,0,0,0.0750558 -4360,5616:110,-160,-61,0,0,0.0750702 -4361,5615:219,-159,-61,0,0,0.0750773 -4362,5615:218,-158,-61,0,0,0.0750843 -4363,5615:217,-157,-61,0,0,0.0750843 -4364,5615:216,-156,-61,0,0,0.0750915 -4365,5615:215,-155,-61,0,0,0.0751558 -4366,5615:114,-154,-61,0,0,0.0752631 -4367,5615:113,-153,-61,0,0,0.0752916 -4368,5615:112,-152,-61,0,0,0.0752273 -4369,5615:111,-151,-61,0,0,0.0751915 -4370,5615:110,-150,-61,0,0,0.0752487 -4371,5614:219,-149,-61,0,0,0.0754779 -4372,5614:218,-148,-61,0,0,0.0753489 -4373,5614:217,-147,-61,0,0,0.0754921 -4374,5614:216,-146,-61,0,0,0.0758298 -4375,5614:215,-145,-61,0,0,0.0765457 -4376,5614:114,-144,-61,0,0,0.0781588 -4377,5614:113,-143,-61,0,0,0.0796523 -4378,5614:112,-142,-61,0,0,0.0805761 -4379,5614:111,-141,-61,0,0,0.0809803 -4380,5614:110,-140,-61,0,0,0.0814787 -4381,5613:219,-139,-61,0,0,0.0810646 -4382,5613:218,-138,-61,0,0,0.082593 -4383,5613:217,-137,-61,0,0,0.0850864 -4384,5613:216,-136,-61,0,0,0.0848468 -4385,5613:215,-135,-61,0,0,0.0847113 -4386,5613:114,-134,-61,0,0,0.0870421 -4387,5613:113,-133,-61,0,0,0.0873121 -4388,5613:112,-132,-61,0,0,0.0861402 -4389,5613:111,-131,-61,0,0,0.0817483 -4390,5613:110,-130,-61,0,0,0.082819 -4391,5612:219,-129,-61,0,0,0.0875743 -4392,5612:218,-128,-61,0,0,0.0855195 -4393,5612:217,-127,-61,0,0,0.0855756 -4394,5612:216,-126,-61,0,0,0.0850225 -4395,5612:215,-125,-61,0,0,0.0828892 -4396,5612:114,-124,-61,0,0,0.0830064 -4397,5612:113,-123,-61,0,0,0.0907447 -4398,5612:112,-122,-61,0,0,0.092627 -4399,5612:111,-121,-61,0,0,0.0867893 -4400,5612:110,-120,-61,0,0,0.0863913 -4401,5611:219,-119,-61,0,0,0.0897912 -4402,5611:218,-118,-61,0,0,0.090626 -4403,5611:217,-117,-61,0,0,0.0855837 -4404,5611:216,-116,-61,0,0,0.0881755 -4405,5611:215,-115,-61,0,0,0.0911184 -4406,5611:114,-114,-61,0,0,0.0909399 -4407,5611:113,-113,-61,0,0,0.0931205 -4408,5611:112,-112,-61,0,0,0.0903556 -4409,5611:111,-111,-61,0,0,0.0860997 -4410,5611:110,-110,-61,0,0,0.0860432 -4411,5610:219,-109,-61,0,0,0.086132 -4412,5610:218,-108,-61,0,0,0.0852548 -4413,5610:217,-107,-61,0,0,0.0890384 -4414,5610:216,-106,-61,0,0,0.090533 -4415,5610:215,-105,-61,0,0,0.0857849 -4416,5610:114,-104,-61,0,0,0.0862617 -4417,5610:113,-103,-61,0,0,0.0854793 -4418,5610:112,-102,-61,0,0,0.0835869 -4419,5610:111,-101,-61,0,0,0.0823363 -4420,5610:110,-100,-61,0,0,0.079007 -4421,5609:219,-99,-61,0,0,0.0764296 -4422,5609:218,-98,-61,0,0,0.077297 -4423,5609:217,-97,-61,0,0,0.0780184 -4424,5609:216,-96,-61,0,0,0.0777158 -4425,5609:215,-95,-61,0,0,0.0758298 -4426,5609:114,-94,-61,0,0,0.0769168 -4427,5609:113,-93,-61,0,0,0.0765384 -4428,5609:112,-92,-61,0,0,0.0754203 -4429,5609:111,-91,-61,0,0,0.0755998 -4430,5609:110,-90,-61,0,0,0.0759668 -4431,5608:219,-89,-61,0,0,0.0773485 -4432,5608:218,-88,-61,0,0,0.0854151 -4433,5608:217,-87,-61,0,0,0.0874924 -4434,5608:216,-86,-61,0,0,0.0807817 -4435,5608:215,-85,-61,0,0,0.0769973 -4436,5608:114,-84,-61,0,0,0.0758225 -4437,5608:113,-83,-61,0,0,0.0756932 -4438,5608:112,-82,-61,0,0,0.0762267 -4439,5608:111,-81,-61,0,0,0.0762196 -4440,5608:110,-80,-61,0,0,0.0758946 -4441,5607:219,-79,-61,0,0,0.0758443 -4442,5607:218,-78,-61,0,0,0.0760245 -4443,5607:217,-77,-61,0,0,0.0765893 -4444,5607:216,-76,-61,0,0,0.0770338 -4445,5607:215,-75,-61,0,0,0.0768514 -4446,5607:114,-74,-61,0,0,0.0789397 -4447,5607:113,-73,-61,0,0,0.0826319 -4448,5607:112,-72,-61,0,0,0.0796146 -4449,5607:111,-71,-61,0,0,0.0780184 -4450,5607:110,-70,-61,0,0,0.0775613 -4451,5606:219,-69,-61,0,0,0.0772899 -4452,5606:218,-68,-61,0,0,0.0771215 -4453,5606:217,-67,-61,0,0,0.0806293 -4454,5606:110,-60,-61,0,0,0.0801433 -4455,5605:219,-59,-61,0,0,0.0774806 -4456,5605:218,-58,-61,0,0,0.0753344 -4457,5605:217,-57,-61,0,0,0.0752631 -4458,5605:216,-56,-61,0,0,0.0751915 -4459,5605:215,-55,-61,0,0,0.0750915 -4460,5605:114,-54,-61,0,0,0.0750416 -4461,5605:113,-53,-61,0,0,0.0750416 -4462,5605:112,-52,-61,0,0,0.0750201 -4463,5605:111,-51,-61,0,0,0.0749988 -4464,5605:110,-50,-61,0,0,0.0749846 -4465,5604:219,-49,-61,0,0,0.0749775 -4466,5604:218,-48,-61,0,0,0.0749775 -4467,5604:217,-47,-61,0,0,0.0749631 -4468,5604:216,-46,-61,0,0,0.0749703 -4469,5604:215,-45,-61,0,0,0.0749775 -4470,5604:114,-44,-61,0,0,0.0749775 -4471,5604:113,-43,-61,0,0,0.0749703 -4472,5604:112,-42,-61,0,0,0.0749703 -4473,5604:111,-41,-61,0,0,0.0749703 -4474,5604:110,-40,-61,0,0,0.0749703 -4475,5603:219,-39,-61,0,0,0.0749703 -4476,5603:218,-38,-61,0,0,0.0749703 -4477,5603:217,-37,-61,0,0,0.0749703 -4478,5603:216,-36,-61,0,0,0.0749703 -4479,5603:215,-35,-61,0,0,0.0749703 -4480,5603:114,-34,-61,0,0,0.0749703 -4481,5603:113,-33,-61,0,0,0.0749703 -4482,5603:112,-32,-61,0,0,0.0749703 -4483,5603:111,-31,-61,0,0,0.0749703 -4484,5603:110,-30,-61,0,0,0.0749703 -4485,5602:219,-29,-61,0,0,0.0749703 -4486,5602:218,-28,-61,0,0,0.0749703 -4487,5602:217,-27,-61,0,0,0.0749703 -4488,5602:216,-26,-61,0,0,0.0749631 -4489,5602:215,-25,-61,0,0,0.0749631 -4490,5602:114,-24,-61,0,0,0.0749562 -4491,5602:113,-23,-61,0,0,0.0749562 -4492,5602:112,-22,-61,0,0,0.0749418 -4493,5602:111,-21,-61,0,0,0.0749346 -4494,5602:110,-20,-61,0,0,0.0749275 -4495,5601:219,-19,-61,0,0,0.0749205 -4496,5601:218,-18,-61,0,0,0.0749062 -4497,5601:217,-17,-61,0,0,0.074892 -4498,5601:216,-16,-61,0,0,0.0748705 -4499,5601:215,-15,-61,0,0,0.0748636 -4500,5601:114,-14,-61,0,0,0.0748705 -4501,5601:113,-13,-61,0,0,0.0748705 -4502,5601:112,-12,-61,0,0,0.0748705 -4503,5601:111,-11,-61,0,0,0.0748636 -4504,5601:110,-10,-61,0,0,0.0748705 -4505,5600:219,-9,-61,0,0,0.0748705 -4506,5600:218,-8,-61,0,0,0.0748705 -4507,5600:217,-7,-61,0,0,0.0748636 -4508,5600:216,-6,-61,0,0,0.0748636 -4509,5600:215,-5,-61,0,0,0.0748777 -4510,5600:114,-4,-61,0,0,0.0748777 -4511,5600:113,-3,-61,0,0,0.0748705 -4512,5600:112,-2,-61,0,0,0.0748636 -4513,5600:111,-1,-61,0,0,0.0748636 -4514,3600:111,0,-61,0,0,0.0748636 -4515,3600:111,1,-61,0,0,0.0748564 -4516,3600:112,2,-61,0,0,0.0748493 -4517,3600:113,3,-61,0,0,0.0748493 -4518,3600:114,4,-61,0,0,0.0748421 -4519,3600:215,5,-61,0,0,0.0748705 -4520,3600:216,6,-61,0,0,0.0748564 -4521,3600:217,7,-61,0,0,0.0748493 -4522,3600:218,8,-61,0,0,0.0748493 -4523,3600:219,9,-61,0,0,0.0748636 -4524,3601:110,10,-61,0,0,0.0748705 -4525,3601:111,11,-61,0,0,0.0748849 -4526,3601:112,12,-61,0,0,0.0748777 -4527,3601:113,13,-61,0,0,0.0748777 -4528,3601:114,14,-61,0,0,0.0748777 -4529,3601:215,15,-61,0,0,0.074892 -4530,3601:216,16,-61,0,0,0.074899 -4531,3601:217,17,-61,0,0,0.074892 -4532,3601:218,18,-61,0,0,0.0748705 -4533,3601:219,19,-61,0,0,0.0748564 -4534,3602:110,20,-61,0,0,0.0748636 -4535,3602:111,21,-61,0,0,0.0748564 -4536,3602:112,22,-61,0,0,0.0748636 -4537,3602:113,23,-61,0,0,0.0748705 -4538,3602:114,24,-61,0,0,0.0748777 -4539,3602:215,25,-61,0,0,0.074892 -4540,3602:216,26,-61,0,0,0.074892 -4541,3602:217,27,-61,0,0,0.074899 -4542,3602:218,28,-61,0,0,0.0749205 -4543,3602:219,29,-61,0,0,0.0749205 -4544,3603:110,30,-61,0,0,0.0749346 -4545,3603:111,31,-61,0,0,0.074949 -4546,3603:112,32,-61,0,0,0.0749562 -4547,3603:113,33,-61,0,0,0.0749703 -4548,3603:114,34,-61,0,0,0.0750273 -4549,3603:215,35,-61,0,0,0.0749775 -4550,3603:216,36,-61,0,0,0.0749775 -4551,3603:217,37,-61,0,0,0.0749703 -4552,3603:218,38,-61,0,0,0.0749775 -4553,3603:219,39,-61,0,0,0.0749703 -4554,3604:110,40,-61,0,0,0.0749775 -4555,3604:111,41,-61,0,0,0.0749916 -4556,3604:112,42,-61,0,0,0.0749846 -4557,3604:113,43,-61,0,0,0.0749846 -4558,3604:114,44,-61,0,0,0.0749916 -4559,3604:215,45,-61,0,0,0.0750131 -4560,3604:216,46,-61,0,0,0.075006 -4561,3604:217,47,-61,0,0,0.075006 -4562,3604:218,48,-61,0,0,0.0750201 -4563,3604:219,49,-61,0,0,0.0751128 -4564,3605:110,50,-61,0,0,0.0749275 -4565,3605:217,57,-61,0,0,0.0752343 -4566,3605:218,58,-61,0,0,0.0752129 -4567,3605:219,59,-61,0,0,0.0751128 -4568,3606:110,60,-61,0,0,0.0751128 -4569,3606:111,61,-61,0,0,0.0750416 -4570,3606:112,62,-61,0,0,0.0749916 -4571,3606:113,63,-61,0,0,0.0749775 -4572,3606:114,64,-61,0,0,0.0749062 -4573,3606:215,65,-61,0,0,0.0749205 -4574,3606:216,66,-61,0,0,0.0749205 -4575,3606:217,67,-61,0,0,0.0749346 -4576,3606:218,68,-61,0,0,0.0749418 -4577,3606:219,69,-61,0,0,0.074949 -4578,3607:110,70,-61,0,0,0.074949 -4579,3607:111,71,-61,0,0,0.0749418 -4580,3607:112,72,-61,0,0,0.0749418 -4581,3607:114,74,-61,0,0,0.075722 -4582,3607:215,75,-61,0,0,0.074949 -4583,3607:216,76,-61,0,0,0.0749346 -4584,3607:217,77,-61,0,0,0.0751059 -4585,3607:218,78,-61,0,0,0.0749062 -4586,3607:219,79,-61,0,0,0.0749346 -4587,3608:110,80,-61,0,0,0.0749346 -4588,3608:111,81,-61,0,0,0.0752772 -4589,3608:113,83,-61,0,0,0.0753847 -4590,3608:219,89,-61,0,0,0.0753344 -4591,3609:110,90,-61,0,0,0.0753489 -4592,3609:111,91,-61,0,0,0.0756068 -4593,3609:112,92,-61,0,0,0.0771215 -4594,3609:113,93,-61,0,0,0.0784555 -4595,3609:114,94,-61,0,0,0.0869034 -4596,3610:218,108,-61,0,0,0.0750488 -4597,3610:219,109,-61,0,0,0.0792915 -4598,3611:110,110,-61,0,0,0.0853428 -4599,3611:215,115,-61,0,0,0.0755352 -4600,3611:217,117,-61,0,0,0.0753775 -4601,3611:218,118,-61,0,0,0.0751558 -4602,3611:219,119,-61,0,0,0.0750773 -4603,3612:110,120,-61,0,0,0.0750488 -4604,3612:111,121,-61,0,0,0.0751486 -4605,3612:112,122,-61,0,0,0.0752343 -4606,3612:113,123,-61,0,0,0.0750416 -4607,3612:217,127,-61,0,0,0.0802948 -4608,3612:218,128,-61,0,0,0.0803859 -4609,3612:219,129,-61,0,0,0.0774658 -4610,3613:110,130,-61,0,0,0.0819568 -4611,3613:219,139,-61,0,0,0.0893055 -4612,3614:110,140,-61,0,0,0.0890384 -4613,3614:111,141,-61,0,0,0.0883988 -4614,3614:112,142,-61,0,0,0.0878458 -4615,3614:113,143,-61,0,0,0.0862454 -4616,3614:114,144,-61,0,0,0.0871566 -4617,3614:215,145,-61,0,0,0.0834139 -4618,3614:216,146,-61,0,0,0.0768076 -4619,3614:217,147,-61,0,0,0.0752201 -4620,3614:218,148,-61,0,0,0.0750702 -4621,3614:219,149,-61,0,0,0.0750416 -4622,3615:110,150,-61,0,0,0.0750416 -4623,3615:111,151,-61,0,0,0.0750488 -4624,3615:112,152,-61,0,0,0.0750416 -4625,3615:113,153,-61,0,0,0.0750201 -4626,3615:114,154,-61,0,0,0.075006 -4627,3615:215,155,-61,0,0,0.0749916 -4628,3615:216,156,-61,0,0,0.0749846 -4629,3615:217,157,-61,0,0,0.0749916 -4630,3615:218,158,-61,0,0,0.0750131 -4631,3615:219,159,-61,0,0,0.0750345 -4632,3616:110,160,-61,0,0,0.0750131 -4633,3616:111,161,-61,0,0,0.0749703 -4634,3616:112,162,-61,0,0,0.0749205 -4635,3616:113,163,-61,0,0,0.075063 -4636,3616:114,164,-61,0,0,0.0750488 -4637,3616:215,165,-61,0,0,0.0750345 -4638,3616:216,166,-61,0,0,0.0750558 -4639,3616:217,167,-61,0,0,0.0750488 -4640,3616:218,168,-61,0,0,0.0750345 -4641,3616:219,169,-61,0,0,0.0750273 -4642,3617:110,170,-61,0,0,0.0750345 -4643,3617:111,171,-61,0,0,0.0750488 -4644,3617:112,172,-61,0,0,0.0750488 -4645,3617:113,173,-61,0,0,0.0750416 -4646,3617:114,174,-61,0,0,0.0750416 -4647,3617:215,175,-61,0,0,0.0750201 -4648,3617:216,176,-61,0,0,0.0750201 -4649,3617:217,177,-61,0,0,0.0750345 -4650,3617:218,178,-61,0,0,0.0750416 -4651,3617:219,179,-61,0,0,0.0750488 -4652,3618:110,180,-61,0,0,0.075063 -4653,5618:100,-180,-60,0,0,0.0751701 -4654,5617:209,-179,-60,0,0,0.075729 -4655,5617:208,-178,-60,0,0,0.0763789 -4656,5617:207,-177,-60,0,0,0.0755781 -4657,5617:206,-176,-60,0,0,0.0756068 -4658,5617:205,-175,-60,0,0,0.0756932 -4659,5617:104,-174,-60,0,0,0.0753703 -4660,5617:103,-173,-60,0,0,0.0751416 -4661,5617:102,-172,-60,0,0,0.0750702 -4662,5617:101,-171,-60,0,0,0.0750488 -4663,5617:100,-170,-60,0,0,0.0750273 -4664,5616:209,-169,-60,0,0,0.0750201 -4665,5616:208,-168,-60,0,0,0.0750131 -4666,5616:207,-167,-60,0,0,0.0750131 -4667,5616:206,-166,-60,0,0,0.075006 -4668,5616:205,-165,-60,0,0,0.0751558 -4669,5616:104,-164,-60,0,0,0.0753489 -4670,5616:103,-163,-60,0,0,0.0750488 -4671,5616:102,-162,-60,0,0,0.0750416 -4672,5616:101,-161,-60,0,0,0.0750558 -4673,5616:100,-160,-60,0,0,0.0751059 -4674,5615:209,-159,-60,0,0,0.0753703 -4675,5615:208,-158,-60,0,0,0.0757937 -4676,5615:207,-157,-60,0,0,0.0766184 -4677,5615:206,-156,-60,0,0,0.0773118 -4678,5615:205,-155,-60,0,0,0.0774952 -4679,5615:104,-154,-60,0,0,0.077657 -4680,5615:103,-153,-60,0,0,0.078783 -4681,5615:102,-152,-60,0,0,0.0799844 -4682,5615:101,-151,-60,0,0,0.0774145 -4683,5615:100,-150,-60,0,0,0.0783515 -4684,5614:209,-149,-60,0,0,0.0816789 -4685,5614:208,-148,-60,0,0,0.079374 -4686,5614:207,-147,-60,0,0,0.0785371 -4687,5614:206,-146,-60,0,0,0.0794342 -4688,5614:205,-145,-60,0,0,0.0803175 -4689,5614:104,-144,-60,0,0,0.0832023 -4690,5614:103,-143,-60,0,0,0.0842505 -4691,5614:102,-142,-60,0,0,0.0829596 -4692,5614:101,-141,-60,0,0,0.0832099 -4693,5614:100,-140,-60,0,0,0.0830455 -4694,5613:209,-139,-60,0,0,0.0818717 -4695,5613:208,-138,-60,0,0,0.0832884 -4696,5613:207,-137,-60,0,0,0.0859382 -4697,5613:206,-136,-60,0,0,0.0842505 -4698,5613:205,-135,-60,0,0,0.0849906 -4699,5613:104,-134,-60,0,0,0.0876811 -4700,5613:103,-133,-60,0,0,0.0903893 -4701,5613:102,-132,-60,0,0,0.0916986 -4702,5613:101,-131,-60,0,0,0.0872464 -4703,5613:100,-130,-60,0,0,0.0853348 -4704,5612:209,-129,-60,0,0,0.0891885 -4705,5612:208,-128,-60,0,0,0.088465 -4706,5612:207,-127,-60,0,0,0.0868383 -4707,5612:206,-126,-60,0,0,0.084831 -4708,5612:205,-125,-60,0,0,0.085624 -4709,5612:104,-124,-60,0,0,0.0901699 -4710,5612:103,-123,-60,0,0,0.0965957 -4711,5612:102,-122,-60,0,0,0.0970269 -4712,5612:101,-121,-60,0,0,0.0968562 -4713,5612:100,-120,-60,0,0,0.0966137 -4714,5611:209,-119,-60,0,0,0.0969459 -4715,5611:208,-118,-60,0,0,0.0979491 -4716,5611:207,-117,-60,0,0,0.0976951 -4717,5611:206,-116,-60,0,0,0.0945267 -4718,5611:205,-115,-60,0,0,0.0911013 -4719,5611:104,-114,-60,0,0,0.0927135 -4720,5611:103,-113,-60,0,0,0.0949233 -4721,5611:102,-112,-60,0,0,0.0957562 -4722,5611:101,-111,-60,0,0,0.0957296 -4723,5611:100,-110,-60,0,0,0.0949055 -4724,5610:209,-109,-60,0,0,0.0953833 -4725,5610:208,-108,-60,0,0,0.0957652 -4726,5610:207,-107,-60,0,0,0.0945707 -4727,5610:206,-106,-60,0,0,0.0902373 -4728,5610:205,-105,-60,0,0,0.0951441 -4729,5610:104,-104,-60,0,0,0.0989888 -4730,5610:103,-103,-60,0,0,0.090533 -4731,5610:102,-102,-60,0,0,0.0855756 -4732,5610:101,-101,-60,0,0,0.083257 -4733,5610:100,-100,-60,0,0,0.082414 -4734,5609:209,-99,-60,0,0,0.0842585 -4735,5609:208,-98,-60,0,0,0.088349 -4736,5609:207,-97,-60,0,0,0.0862859 -4737,5609:206,-96,-60,0,0,0.0785744 -4738,5609:205,-95,-60,0,0,0.0778634 -4739,5609:104,-94,-60,0,0,0.0809192 -4740,5609:103,-93,-60,0,0,0.0830925 -4741,5609:102,-92,-60,0,0,0.0836814 -4742,5609:101,-91,-60,0,0,0.0849825 -4743,5609:100,-90,-60,0,0,0.0871975 -4744,5608:209,-89,-60,0,0,0.0871648 -4745,5608:208,-88,-60,0,0,0.0885149 -4746,5608:207,-87,-60,0,0,0.0921703 -4747,5608:206,-86,-60,0,0,0.0874103 -4748,5608:205,-85,-60,0,0,0.0789322 -4749,5608:104,-84,-60,0,0,0.0759668 -4750,5608:103,-83,-60,0,0,0.0763354 -4751,5608:102,-82,-60,0,0,0.0761111 -4752,5608:101,-81,-60,0,0,0.0761761 -4753,5608:100,-80,-60,0,0,0.0754849 -4754,5607:209,-79,-60,0,0,0.0757147 -4755,5607:208,-78,-60,0,0,0.0786266 -4756,5607:207,-77,-60,0,0,0.0835399 -4757,5607:206,-76,-60,0,0,0.0795921 -4758,5607:205,-75,-60,0,0,0.0792691 -4759,5607:104,-74,-60,0,0,0.0847113 -4760,5607:103,-73,-60,0,0,0.089699 -4761,5607:102,-72,-60,0,0,0.0860837 -4762,5607:101,-71,-60,0,0,0.0802948 -4763,5607:100,-70,-60,0,0,0.0785968 -4764,5606:209,-69,-60,0,0,0.0780922 -4765,5606:208,-68,-60,0,0,0.0777601 -4766,5606:207,-67,-60,0,0,0.078463 -4767,5606:205,-65,-60,0,0,0.0924201 -4768,5606:100,-60,-60,0,0,0.0801736 -4769,5605:209,-59,-60,0,0,0.0795168 -4770,5605:208,-58,-60,0,0,0.0775026 -4771,5605:207,-57,-60,0,0,0.075313 -4772,5605:206,-56,-60,0,0,0.0752559 -4773,5605:205,-55,-60,0,0,0.0751701 -4774,5605:104,-54,-60,0,0,0.0750558 -4775,5605:103,-53,-60,0,0,0.0750345 -4776,5605:102,-52,-60,0,0,0.0750345 -4777,5605:101,-51,-60,0,0,0.0749988 -4778,5605:100,-50,-60,0,0,0.0749846 -4779,5604:209,-49,-60,0,0,0.0749846 -4780,5604:208,-48,-60,0,0,0.0749703 -4781,5604:207,-47,-60,0,0,0.0749703 -4782,5604:206,-46,-60,0,0,0.0749703 -4783,5604:205,-45,-60,0,0,0.0749631 -4784,5604:104,-44,-60,0,0,0.0749631 -4785,5604:103,-43,-60,0,0,0.0749631 -4786,5604:102,-42,-60,0,0,0.0749631 -4787,5604:101,-41,-60,0,0,0.0749631 -4788,5604:100,-40,-60,0,0,0.0749703 -4789,5603:209,-39,-60,0,0,0.0749703 -4790,5603:208,-38,-60,0,0,0.0749703 -4791,5603:207,-37,-60,0,0,0.0749703 -4792,5603:206,-36,-60,0,0,0.0749703 -4793,5603:205,-35,-60,0,0,0.0749703 -4794,5603:104,-34,-60,0,0,0.0749703 -4795,5603:103,-33,-60,0,0,0.0749703 -4796,5603:102,-32,-60,0,0,0.0749703 -4797,5603:101,-31,-60,0,0,0.0749775 -4798,5603:100,-30,-60,0,0,0.0749775 -4799,5602:209,-29,-60,0,0,0.0749703 -4800,5602:208,-28,-60,0,0,0.0749703 -4801,5602:207,-27,-60,0,0,0.0749631 -4802,5602:206,-26,-60,0,0,0.0749631 -4803,5602:205,-25,-60,0,0,0.0749631 -4804,5602:104,-24,-60,0,0,0.0749562 -4805,5602:103,-23,-60,0,0,0.074949 -4806,5602:102,-22,-60,0,0,0.0749418 -4807,5602:101,-21,-60,0,0,0.0749346 -4808,5602:100,-20,-60,0,0,0.0749275 -4809,5601:209,-19,-60,0,0,0.0749205 -4810,5601:208,-18,-60,0,0,0.0749062 -4811,5601:207,-17,-60,0,0,0.074892 -4812,5601:206,-16,-60,0,0,0.0748777 -4813,5601:205,-15,-60,0,0,0.0748636 -4814,5601:104,-14,-60,0,0,0.0748636 -4815,5601:103,-13,-60,0,0,0.0748705 -4816,5601:102,-12,-60,0,0,0.0748636 -4817,5601:101,-11,-60,0,0,0.0748564 -4818,5601:100,-10,-60,0,0,0.0748564 -4819,5600:209,-9,-60,0,0,0.0748636 -4820,5600:208,-8,-60,0,0,0.0748705 -4821,5600:207,-7,-60,0,0,0.0748636 -4822,5600:206,-6,-60,0,0,0.0748564 -4823,5600:205,-5,-60,0,0,0.0748564 -4824,5600:104,-4,-60,0,0,0.0748636 -4825,5600:103,-3,-60,0,0,0.0748636 -4826,5600:102,-2,-60,0,0,0.0748636 -4827,5600:101,-1,-60,0,0,0.0748705 -4828,3600:101,0,-60,0,0,0.0748777 -4829,3600:101,1,-60,0,0,0.0748636 -4830,3600:102,2,-60,0,0,0.0748636 -4831,3600:103,3,-60,0,0,0.0748636 -4832,3600:104,4,-60,0,0,0.0748705 -4833,3600:205,5,-60,0,0,0.0748705 -4834,3600:206,6,-60,0,0,0.0748777 -4835,3600:207,7,-60,0,0,0.0748777 -4836,3600:208,8,-60,0,0,0.0748705 -4837,3600:209,9,-60,0,0,0.0748636 -4838,3601:100,10,-60,0,0,0.0748564 -4839,3601:101,11,-60,0,0,0.0748636 -4840,3601:102,12,-60,0,0,0.0748564 -4841,3601:103,13,-60,0,0,0.0748705 -4842,3601:104,14,-60,0,0,0.0748777 -4843,3601:205,15,-60,0,0,0.0748636 -4844,3601:206,16,-60,0,0,0.0748636 -4845,3601:207,17,-60,0,0,0.0748636 -4846,3601:208,18,-60,0,0,0.0748493 -4847,3601:209,19,-60,0,0,0.074828 -4848,3602:100,20,-60,0,0,0.0748349 -4849,3602:101,21,-60,0,0,0.0748421 -4850,3602:102,22,-60,0,0,0.0748421 -4851,3602:103,23,-60,0,0,0.0748493 -4852,3602:104,24,-60,0,0,0.0748564 -4853,3602:205,25,-60,0,0,0.0748636 -4854,3602:206,26,-60,0,0,0.0748777 -4855,3602:207,27,-60,0,0,0.074892 -4856,3602:208,28,-60,0,0,0.0749133 -4857,3602:209,29,-60,0,0,0.0749205 -4858,3603:100,30,-60,0,0,0.0748849 -4859,3603:101,31,-60,0,0,0.0748636 -4860,3603:102,32,-60,0,0,0.0749205 -4861,3603:103,33,-60,0,0,0.0749562 -4862,3603:104,34,-60,0,0,0.0749916 -4863,3603:205,35,-60,0,0,0.0749703 -4864,3603:206,36,-60,0,0,0.0749418 -4865,3603:207,37,-60,0,0,0.0749205 -4866,3603:208,38,-60,0,0,0.0749133 -4867,3603:209,39,-60,0,0,0.074892 -4868,3604:100,40,-60,0,0,0.074899 -4869,3604:101,41,-60,0,0,0.0749275 -4870,3604:102,42,-60,0,0,0.0749418 -4871,3604:103,43,-60,0,0,0.0749916 -4872,3604:104,44,-60,0,0,0.0749846 -4873,3604:205,45,-60,0,0,0.0749916 -4874,3604:206,46,-60,0,0,0.0750131 -4875,3604:207,47,-60,0,0,0.0750416 -4876,3604:208,48,-60,0,0,0.0750558 -4877,3604:209,49,-60,0,0,0.0750773 -4878,3605:100,50,-60,0,0,0.0750773 -4879,3605:101,51,-60,0,0,0.0750843 -4880,3605:102,52,-60,0,0,0.0750915 -4881,3605:103,53,-60,0,0,0.0750488 -4882,3605:104,54,-60,0,0,0.0750273 -4883,3605:205,55,-60,0,0,0.0751128 -4884,3605:206,56,-60,0,0,0.0751558 -4885,3605:207,57,-60,0,0,0.0751344 -4886,3605:208,58,-60,0,0,0.0751128 -4887,3605:209,59,-60,0,0,0.0750843 -4888,3606:100,60,-60,0,0,0.0750201 -4889,3606:101,61,-60,0,0,0.0749916 -4890,3606:102,62,-60,0,0,0.0749988 -4891,3606:103,63,-60,0,0,0.0749988 -4892,3606:104,64,-60,0,0,0.0749703 -4893,3606:205,65,-60,0,0,0.074949 -4894,3606:206,66,-60,0,0,0.0749562 -4895,3606:207,67,-60,0,0,0.0749346 -4896,3606:208,68,-60,0,0,0.074949 -4897,3606:209,69,-60,0,0,0.074949 -4898,3607:100,70,-60,0,0,0.0749418 -4899,3607:101,71,-60,0,0,0.0749346 -4900,3607:102,72,-60,0,0,0.074949 -4901,3607:104,74,-60,0,0,0.0750131 -4902,3607:205,75,-60,0,0,0.0749631 -4903,3607:206,76,-60,0,0,0.0749418 -4904,3607:207,77,-60,0,0,0.074949 -4905,3607:208,78,-60,0,0,0.074949 -4906,3607:209,79,-60,0,0,0.0749631 -4907,3608:100,80,-60,0,0,0.0749846 -4908,3608:101,81,-60,0,0,0.0750345 -4909,3608:102,82,-60,0,0,0.07512 -4910,3608:103,83,-60,0,0,0.0751416 -4911,3608:104,84,-60,0,0,0.0751128 -4912,3608:205,85,-60,0,0,0.0751272 -4913,3608:206,86,-60,0,0,0.0751272 -4914,3608:207,87,-60,0,0,0.07512 -4915,3608:208,88,-60,0,0,0.07512 -4916,3608:209,89,-60,0,0,0.0750843 -4917,3609:100,90,-60,0,0,0.0750773 -4918,3609:101,91,-60,0,0,0.0750558 -4919,3609:102,92,-60,0,0,0.0750558 -4920,3609:103,93,-60,0,0,0.0750488 -4921,3609:104,94,-60,0,0,0.0750488 -4922,3609:205,95,-60,0,0,0.0770704 -4923,3610:205,105,-60,0,0,0.075313 -4924,3610:206,106,-60,0,0,0.0752343 -4925,3610:207,107,-60,0,0,0.0751059 -4926,3610:208,108,-60,0,0,0.0749562 -4927,3610:209,109,-60,0,0,0.074899 -4928,3611:100,110,-60,0,0,0.0749703 -4929,3611:101,111,-60,0,0,0.0750915 -4930,3611:102,112,-60,0,0,0.0750773 -4931,3611:104,114,-60,0,0,0.0753703 -4932,3611:205,115,-60,0,0,0.0752343 -4933,3611:206,116,-60,0,0,0.0751059 -4934,3611:207,117,-60,0,0,0.0751059 -4935,3611:208,118,-60,0,0,0.0750915 -4936,3611:209,119,-60,0,0,0.075063 -4937,3612:100,120,-60,0,0,0.0749916 -4938,3612:101,121,-60,0,0,0.075006 -4939,3612:102,122,-60,0,0,0.0750843 -4940,3612:103,123,-60,0,0,0.0750488 -4941,3612:104,124,-60,0,0,0.0749988 -4942,3612:205,125,-60,0,0,0.0749846 -4943,3612:206,126,-60,0,0,0.0749775 -4944,3612:207,127,-60,0,0,0.0749703 -4945,3612:208,128,-60,0,0,0.0753631 -4946,3612:209,129,-60,0,0,0.0751416 -4947,3613:100,130,-60,0,0,0.0752415 -4948,3613:101,131,-60,0,0,0.0760679 -4949,3613:102,132,-60,0,0,0.0790816 -4950,3613:103,133,-60,0,0,0.082858 -4951,3613:104,134,-60,0,0,0.0856321 -4952,3613:206,136,-60,0,0,0.0754779 -4953,3613:207,137,-60,0,0,0.075722 -4954,3613:208,138,-60,0,0,0.0787532 -4955,3613:209,139,-60,0,0,0.0811794 -4956,3614:100,140,-60,0,0,0.0817097 -4957,3614:101,141,-60,0,0,0.0829596 -4958,3614:102,142,-60,0,0,0.0820496 -4959,3614:103,143,-60,0,0,0.0796372 -4960,3614:104,144,-60,0,0,0.0785224 -4961,3614:205,145,-60,0,0,0.0757147 -4962,3614:206,146,-60,0,0,0.0750915 -4963,3614:207,147,-60,0,0,0.0750345 -4964,3614:208,148,-60,0,0,0.0749775 -4965,3614:209,149,-60,0,0,0.0749916 -4966,3615:100,150,-60,0,0,0.075006 -4967,3615:101,151,-60,0,0,0.0750131 -4968,3615:102,152,-60,0,0,0.0749988 -4969,3615:103,153,-60,0,0,0.0750201 -4970,3615:104,154,-60,0,0,0.0750416 -4971,3615:205,155,-60,0,0,0.0750416 -4972,3615:206,156,-60,0,0,0.0750416 -4973,3615:207,157,-60,0,0,0.0750416 -4974,3615:208,158,-60,0,0,0.0750273 -4975,3615:209,159,-60,0,0,0.0750273 -4976,3616:100,160,-60,0,0,0.0750201 -4977,3616:101,161,-60,0,0,0.0750131 -4978,3616:102,162,-60,0,0,0.0750345 -4979,3616:103,163,-60,0,0,0.0750416 -4980,3616:104,164,-60,0,0,0.0750558 -4981,3616:205,165,-60,0,0,0.0750558 -4982,3616:206,166,-60,0,0,0.0750702 -4983,3616:207,167,-60,0,0,0.0750702 -4984,3616:208,168,-60,0,0,0.0750558 -4985,3616:209,169,-60,0,0,0.0750488 -4986,3617:100,170,-60,0,0,0.0750488 -4987,3617:101,171,-60,0,0,0.0750488 -4988,3617:102,172,-60,0,0,0.0750416 -4989,3617:103,173,-60,0,0,0.0750416 -4990,3617:104,174,-60,0,0,0.0750345 -4991,3617:205,175,-60,0,0,0.0750345 -4992,3617:206,176,-60,0,0,0.0750416 -4993,3617:207,177,-60,0,0,0.0750416 -4994,3617:208,178,-60,0,0,0.0750488 -4995,3617:209,179,-60,0,0,0.0750773 -4996,3618:100,180,-60,0,0,0.0751701 -4997,5518:390,-180,-59,0,0,0.0776864 -4998,5517:499,-179,-59,0,0,0.0785224 -4999,5517:498,-178,-59,0,0,0.0758443 -5000,5517:497,-177,-59,0,0,0.0774806 -5001,5517:496,-176,-59,0,0,0.0819026 -5002,5517:495,-175,-59,0,0,0.0766184 -5003,5517:394,-174,-59,0,0,0.0753561 -5004,5517:393,-173,-59,0,0,0.0771067 -5005,5517:392,-172,-59,0,0,0.0764732 -5006,5517:391,-171,-59,0,0,0.0751344 -5007,5517:390,-170,-59,0,0,0.0750987 -5008,5516:499,-169,-59,0,0,0.0751987 -5009,5516:498,-168,-59,0,0,0.075313 -5010,5516:497,-167,-59,0,0,0.0751771 -5011,5516:496,-166,-59,0,0,0.0757147 -5012,5516:495,-165,-59,0,0,0.0757867 -5013,5516:394,-164,-59,0,0,0.0758443 -5014,5516:393,-163,-59,0,0,0.0769973 -5015,5516:392,-162,-59,0,0,0.0789545 -5016,5516:391,-161,-59,0,0,0.0805608 -5017,5516:390,-160,-59,0,0,0.0806521 -5018,5515:499,-159,-59,0,0,0.0822588 -5019,5515:498,-158,-59,0,0,0.0830847 -5020,5515:497,-157,-59,0,0,0.0830379 -5021,5515:496,-156,-59,0,0,0.0827644 -5022,5515:495,-155,-59,0,0,0.0823673 -5023,5515:394,-154,-59,0,0,0.0821037 -5024,5515:393,-153,-59,0,0,0.0822354 -5025,5515:392,-152,-59,0,0,0.0825462 -5026,5515:391,-151,-59,0,0,0.0836578 -5027,5515:390,-150,-59,0,0,0.0839419 -5028,5514:499,-149,-59,0,0,0.0832805 -5029,5514:498,-148,-59,0,0,0.0832649 -5030,5514:497,-147,-59,0,0,0.0834298 -5031,5514:496,-146,-59,0,0,0.0837682 -5032,5514:495,-145,-59,0,0,0.0844886 -5033,5514:394,-144,-59,0,0,0.0849986 -5034,5514:393,-143,-59,0,0,0.0860837 -5035,5514:392,-142,-59,0,0,0.0851426 -5036,5514:391,-141,-59,0,0,0.0848867 -5037,5514:390,-140,-59,0,0,0.0840683 -5038,5513:499,-139,-59,0,0,0.0837682 -5039,5513:498,-138,-59,0,0,0.0874842 -5040,5513:497,-137,-59,0,0,0.0869034 -5041,5513:496,-136,-59,0,0,0.0866756 -5042,5513:495,-135,-59,0,0,0.0849428 -5043,5513:394,-134,-59,0,0,0.0871648 -5044,5513:393,-133,-59,0,0,0.0872384 -5045,5513:392,-132,-59,0,0,0.092558 -5046,5513:391,-131,-59,0,0,0.0932768 -5047,5513:390,-130,-59,0,0,0.0916047 -5048,5512:499,-129,-59,0,0,0.0914764 -5049,5512:498,-128,-59,0,0,0.0911525 -5050,5512:497,-127,-59,0,0,0.0910333 -5051,5512:496,-126,-59,0,0,0.0935291 -5052,5512:495,-125,-59,0,0,0.0975683 -5053,5512:394,-124,-59,0,0,0.0982671 -5054,5512:393,-123,-59,0,0,0.0954277 -5055,5512:392,-122,-59,0,0,0.0962645 -5056,5512:391,-121,-59,0,0,0.0989063 -5057,5512:390,-120,-59,0,0,0.0997151 -5058,5511:499,-119,-59,0,0,0.100075 -5059,5511:498,-118,-59,0,0,0.099752 -5060,5511:497,-117,-59,0,0,0.0995399 -5061,5511:496,-116,-59,0,0,0.0994388 -5062,5511:495,-115,-59,0,0,0.097795 -5063,5511:394,-114,-59,0,0,0.0966586 -5064,5511:393,-113,-59,0,0,0.0988423 -5065,5511:392,-112,-59,0,0,0.100325 -5066,5511:391,-111,-59,0,0,0.0996136 -5067,5511:390,-110,-59,0,0,0.0975774 -5068,5510:499,-109,-59,0,0,0.0973967 -5069,5510:498,-108,-59,0,0,0.0979854 -5070,5510:497,-107,-59,0,0,0.0980489 -5071,5510:496,-106,-59,0,0,0.0965511 -5072,5510:495,-105,-59,0,0,0.0995031 -5073,5510:394,-104,-59,0,0,0.100335 -5074,5510:393,-103,-59,0,0,0.0971171 -5075,5510:392,-102,-59,0,0,0.0984222 -5076,5510:391,-101,-59,0,0,0.0968921 -5077,5510:390,-100,-59,0,0,0.0983947 -5078,5509:499,-99,-59,0,0,0.0986869 -5079,5509:498,-98,-59,0,0,0.0964076 -5080,5509:497,-97,-59,0,0,0.091673 -5081,5509:496,-96,-59,0,0,0.0808887 -5082,5509:495,-95,-59,0,0,0.0802872 -5083,5509:394,-94,-59,0,0,0.0830613 -5084,5509:393,-93,-59,0,0,0.0829047 -5085,5509:392,-92,-59,0,0,0.0886642 -5086,5509:391,-91,-59,0,0,0.0936597 -5087,5509:390,-90,-59,0,0,0.0986503 -5088,5508:499,-89,-59,0,0,0.0986685 -5089,5508:498,-88,-59,0,0,0.0993285 -5090,5508:497,-87,-59,0,0,0.101753 -5091,5508:496,-86,-59,0,0,0.102365 -5092,5508:495,-85,-59,0,0,0.102592 -5093,5508:394,-84,-59,0,0,0.102715 -5094,5508:393,-83,-59,0,0,0.0894142 -5095,5508:392,-82,-59,0,0,0.0825462 -5096,5508:391,-81,-59,0,0,0.0857446 -5097,5508:390,-80,-59,0,0,0.0766839 -5098,5507:499,-79,-59,0,0,0.0778411 -5099,5507:498,-78,-59,0,0,0.0879363 -5100,5507:497,-77,-59,0,0,0.0968562 -5101,5507:496,-76,-59,0,0,0.0967123 -5102,5507:495,-75,-59,0,0,0.0933288 -5103,5507:394,-74,-59,0,0,0.0936684 -5104,5507:393,-73,-59,0,0,0.0948086 -5105,5507:392,-72,-59,0,0,0.0913995 -5106,5507:391,-71,-59,0,0,0.0853267 -5107,5507:390,-70,-59,0,0,0.0818795 -5108,5506:499,-69,-59,0,0,0.0791191 -5109,5506:498,-68,-59,0,0,0.0783886 -5110,5506:497,-67,-59,0,0,0.0795393 -5111,5506:496,-66,-59,0,0,0.082772 -5112,5506:495,-65,-59,0,0,0.0894895 -5113,5505:499,-59,-59,0,0,0.0801583 -5114,5505:498,-58,-59,0,0,0.078768 -5115,5505:497,-57,-59,0,0,0.0766475 -5116,5505:496,-56,-59,0,0,0.0752201 -5117,5505:495,-55,-59,0,0,0.0751486 -5118,5505:394,-54,-59,0,0,0.0750558 -5119,5505:393,-53,-59,0,0,0.0750416 -5120,5505:392,-52,-59,0,0,0.0750273 -5121,5505:391,-51,-59,0,0,0.0749916 -5122,5505:390,-50,-59,0,0,0.0749916 -5123,5504:499,-49,-59,0,0,0.0749988 -5124,5504:498,-48,-59,0,0,0.0749703 -5125,5504:497,-47,-59,0,0,0.0749631 -5126,5504:496,-46,-59,0,0,0.0749631 -5127,5504:495,-45,-59,0,0,0.0749562 -5128,5504:394,-44,-59,0,0,0.0749631 -5129,5504:393,-43,-59,0,0,0.0749631 -5130,5504:392,-42,-59,0,0,0.0749631 -5131,5504:391,-41,-59,0,0,0.0749703 -5132,5504:390,-40,-59,0,0,0.0749703 -5133,5503:499,-39,-59,0,0,0.0749775 -5134,5503:498,-38,-59,0,0,0.0749775 -5135,5503:497,-37,-59,0,0,0.0749775 -5136,5503:496,-36,-59,0,0,0.0749775 -5137,5503:495,-35,-59,0,0,0.0749775 -5138,5503:394,-34,-59,0,0,0.0749775 -5139,5503:393,-33,-59,0,0,0.0749775 -5140,5503:392,-32,-59,0,0,0.0749775 -5141,5503:391,-31,-59,0,0,0.0749846 -5142,5503:390,-30,-59,0,0,0.0749775 -5143,5502:499,-29,-59,0,0,0.0749775 -5144,5502:498,-28,-59,0,0,0.0749703 -5145,5502:497,-27,-59,0,0,0.0749703 -5146,5502:496,-26,-59,0,0,0.0749631 -5147,5502:495,-25,-59,0,0,0.0749631 -5148,5502:394,-24,-59,0,0,0.0749631 -5149,5502:393,-23,-59,0,0,0.0749562 -5150,5502:392,-22,-59,0,0,0.074949 -5151,5502:391,-21,-59,0,0,0.0749346 -5152,5502:390,-20,-59,0,0,0.0749205 -5153,5501:499,-19,-59,0,0,0.0749133 -5154,5501:498,-18,-59,0,0,0.0749062 -5155,5501:497,-17,-59,0,0,0.0748849 -5156,5501:496,-16,-59,0,0,0.0748705 -5157,5501:495,-15,-59,0,0,0.0748564 -5158,5501:394,-14,-59,0,0,0.0748564 -5159,5501:393,-13,-59,0,0,0.0748564 -5160,5501:392,-12,-59,0,0,0.0748564 -5161,5501:391,-11,-59,0,0,0.0748493 -5162,5501:390,-10,-59,0,0,0.0748564 -5163,5500:499,-9,-59,0,0,0.0748705 -5164,5500:498,-8,-59,0,0,0.0748705 -5165,5500:497,-7,-59,0,0,0.0748705 -5166,5500:496,-6,-59,0,0,0.0748636 -5167,5500:495,-5,-59,0,0,0.0748564 -5168,5500:394,-4,-59,0,0,0.0748636 -5169,5500:393,-3,-59,0,0,0.0748636 -5170,5500:392,-2,-59,0,0,0.0748705 -5171,5500:391,-1,-59,0,0,0.0748849 -5172,3500:391,0,-59,0,0,0.074892 -5173,3500:391,1,-59,0,0,0.0748705 -5174,3500:392,2,-59,0,0,0.0748636 -5175,3500:393,3,-59,0,0,0.0748636 -5176,3500:394,4,-59,0,0,0.0748705 -5177,3500:495,5,-59,0,0,0.0748849 -5178,3500:496,6,-59,0,0,0.074892 -5179,3500:497,7,-59,0,0,0.074892 -5180,3500:498,8,-59,0,0,0.0748849 -5181,3500:499,9,-59,0,0,0.074892 -5182,3501:390,10,-59,0,0,0.0748777 -5183,3501:391,11,-59,0,0,0.0748777 -5184,3501:392,12,-59,0,0,0.0748636 -5185,3501:393,13,-59,0,0,0.0748564 -5186,3501:394,14,-59,0,0,0.0748636 -5187,3501:495,15,-59,0,0,0.0748564 -5188,3501:496,16,-59,0,0,0.0748564 -5189,3501:497,17,-59,0,0,0.0748421 -5190,3501:498,18,-59,0,0,0.0748065 -5191,3501:499,19,-59,0,0,0.0747996 -5192,3502:390,20,-59,0,0,0.0748208 -5193,3502:391,21,-59,0,0,0.074828 -5194,3502:392,22,-59,0,0,0.0748137 -5195,3502:393,23,-59,0,0,0.0748137 -5196,3502:394,24,-59,0,0,0.0748208 -5197,3502:495,25,-59,0,0,0.074828 -5198,3502:496,26,-59,0,0,0.074828 -5199,3502:497,27,-59,0,0,0.074828 -5200,3502:498,28,-59,0,0,0.074828 -5201,3502:499,29,-59,0,0,0.074828 -5202,3503:390,30,-59,0,0,0.074828 -5203,3503:391,31,-59,0,0,0.0748137 -5204,3503:392,32,-59,0,0,0.074899 -5205,3503:393,33,-59,0,0,0.0749346 -5206,3503:394,34,-59,0,0,0.0749562 -5207,3503:495,35,-59,0,0,0.0749562 -5208,3503:496,36,-59,0,0,0.0749275 -5209,3503:497,37,-59,0,0,0.074892 -5210,3503:498,38,-59,0,0,0.0748777 -5211,3503:499,39,-59,0,0,0.0748636 -5212,3504:390,40,-59,0,0,0.0748777 -5213,3504:391,41,-59,0,0,0.074899 -5214,3504:392,42,-59,0,0,0.0749275 -5215,3504:393,43,-59,0,0,0.0749418 -5216,3504:394,44,-59,0,0,0.074949 -5217,3504:495,45,-59,0,0,0.0749562 -5218,3504:496,46,-59,0,0,0.0749846 -5219,3504:497,47,-59,0,0,0.0749988 -5220,3504:498,48,-59,0,0,0.0750273 -5221,3504:499,49,-59,0,0,0.0750558 -5222,3505:390,50,-59,0,0,0.075063 -5223,3505:391,51,-59,0,0,0.0751059 -5224,3505:392,52,-59,0,0,0.0751128 -5225,3505:393,53,-59,0,0,0.07512 -5226,3505:394,54,-59,0,0,0.0751272 -5227,3505:495,55,-59,0,0,0.0751059 -5228,3505:496,56,-59,0,0,0.0750843 -5229,3505:497,57,-59,0,0,0.0750558 -5230,3505:498,58,-59,0,0,0.0749775 -5231,3505:499,59,-59,0,0,0.074949 -5232,3506:390,60,-59,0,0,0.0749346 -5233,3506:391,61,-59,0,0,0.0749133 -5234,3506:392,62,-59,0,0,0.074949 -5235,3506:393,63,-59,0,0,0.0749418 -5236,3506:394,64,-59,0,0,0.0749703 -5237,3506:495,65,-59,0,0,0.0749703 -5238,3506:496,66,-59,0,0,0.0749703 -5239,3506:497,67,-59,0,0,0.0749562 -5240,3506:498,68,-59,0,0,0.074949 -5241,3506:499,69,-59,0,0,0.0749418 -5242,3507:390,70,-59,0,0,0.0749346 -5243,3507:391,71,-59,0,0,0.0749346 -5244,3507:392,72,-59,0,0,0.0749418 -5245,3507:394,74,-59,0,0,0.074949 -5246,3507:495,75,-59,0,0,0.0749562 -5247,3507:496,76,-59,0,0,0.074949 -5248,3507:497,77,-59,0,0,0.0749562 -5249,3507:498,78,-59,0,0,0.0749562 -5250,3507:499,79,-59,0,0,0.074949 -5251,3508:390,80,-59,0,0,0.0749631 -5252,3508:391,81,-59,0,0,0.0749916 -5253,3508:392,82,-59,0,0,0.0750273 -5254,3508:393,83,-59,0,0,0.0750558 -5255,3508:394,84,-59,0,0,0.0750773 -5256,3508:495,85,-59,0,0,0.0750702 -5257,3508:496,86,-59,0,0,0.0750702 -5258,3508:497,87,-59,0,0,0.0750843 -5259,3508:498,88,-59,0,0,0.075063 -5260,3508:499,89,-59,0,0,0.0750488 -5261,3509:390,90,-59,0,0,0.0750345 -5262,3509:391,91,-59,0,0,0.0750558 -5263,3509:392,92,-59,0,0,0.0750702 -5264,3509:393,93,-59,0,0,0.0750843 -5265,3509:394,94,-59,0,0,0.0751272 -5266,3509:495,95,-59,0,0,0.0751344 -5267,3510:390,100,-59,0,0,0.0754492 -5268,3510:391,101,-59,0,0,0.075313 -5269,3510:392,102,-59,0,0,0.0752487 -5270,3510:393,103,-59,0,0,0.0751416 -5271,3510:394,104,-59,0,0,0.0751416 -5272,3510:495,105,-59,0,0,0.0751416 -5273,3510:496,106,-59,0,0,0.0751915 -5274,3510:497,107,-59,0,0,0.0749916 -5275,3510:498,108,-59,0,0,0.0749418 -5276,3510:499,109,-59,0,0,0.0749562 -5277,3511:390,110,-59,0,0,0.0749846 -5278,3511:391,111,-59,0,0,0.0749916 -5279,3511:392,112,-59,0,0,0.0750201 -5280,3511:393,113,-59,0,0,0.075063 -5281,3511:394,114,-59,0,0,0.0750915 -5282,3511:495,115,-59,0,0,0.0750915 -5283,3511:496,116,-59,0,0,0.0750915 -5284,3511:497,117,-59,0,0,0.0750702 -5285,3511:498,118,-59,0,0,0.0750416 -5286,3511:499,119,-59,0,0,0.075006 -5287,3512:390,120,-59,0,0,0.075006 -5288,3512:391,121,-59,0,0,0.0750558 -5289,3512:392,122,-59,0,0,0.07527 -5290,3512:393,123,-59,0,0,0.0749846 -5291,3512:394,124,-59,0,0,0.0750201 -5292,3512:495,125,-59,0,0,0.0755854 -5293,3512:496,126,-59,0,0,0.0756787 -5294,3512:497,127,-59,0,0,0.0757722 -5295,3512:498,128,-59,0,0,0.0758586 -5296,3512:499,129,-59,0,0,0.0758298 -5297,3513:390,130,-59,0,0,0.0758515 -5298,3513:391,131,-59,0,0,0.0759811 -5299,3513:392,132,-59,0,0,0.0749205 -5300,3513:393,133,-59,0,0,0.0749275 -5301,3513:394,134,-59,0,0,0.0749703 -5302,3513:496,136,-59,0,0,0.0752129 -5303,3513:497,137,-59,0,0,0.0764296 -5304,3513:498,138,-59,0,0,0.0760317 -5305,3513:499,139,-59,0,0,0.0757795 -5306,3514:390,140,-59,0,0,0.0753703 -5307,3514:391,141,-59,0,0,0.075163 -5308,3514:392,142,-59,0,0,0.0749775 -5309,3514:393,143,-59,0,0,0.0748777 -5310,3514:394,144,-59,0,0,0.0749062 -5311,3514:495,145,-59,0,0,0.0749275 -5312,3514:496,146,-59,0,0,0.0749562 -5313,3514:497,147,-59,0,0,0.0749916 -5314,3514:498,148,-59,0,0,0.0749988 -5315,3514:499,149,-59,0,0,0.0750201 -5316,3515:390,150,-59,0,0,0.0749988 -5317,3515:391,151,-59,0,0,0.0750201 -5318,3515:392,152,-59,0,0,0.0750558 -5319,3515:393,153,-59,0,0,0.0750843 -5320,3515:394,154,-59,0,0,0.0750773 -5321,3515:495,155,-59,0,0,0.0750843 -5322,3515:496,156,-59,0,0,0.075063 -5323,3515:497,157,-59,0,0,0.0750416 -5324,3515:498,158,-59,0,0,0.0750345 -5325,3515:499,159,-59,0,0,0.0750201 -5326,3516:390,160,-59,0,0,0.0750345 -5327,3516:391,161,-59,0,0,0.0750201 -5328,3516:392,162,-59,0,0,0.0750558 -5329,3516:393,163,-59,0,0,0.0750773 -5330,3516:394,164,-59,0,0,0.0750843 -5331,3516:495,165,-59,0,0,0.0750915 -5332,3516:496,166,-59,0,0,0.0750773 -5333,3516:497,167,-59,0,0,0.0750773 -5334,3516:498,168,-59,0,0,0.0750773 -5335,3516:499,169,-59,0,0,0.075063 -5336,3517:390,170,-59,0,0,0.0750488 -5337,3517:391,171,-59,0,0,0.0751059 -5338,3517:392,172,-59,0,0,0.0751416 -5339,3517:393,173,-59,0,0,0.0750702 -5340,3517:394,174,-59,0,0,0.0750702 -5341,3517:495,175,-59,0,0,0.0750773 -5342,3517:496,176,-59,0,0,0.0750558 -5343,3517:497,177,-59,0,0,0.0750843 -5344,3517:498,178,-59,0,0,0.0752129 -5345,3517:499,179,-59,0,0,0.0753344 -5346,3518:390,180,-59,0,0,0.0776864 -5347,5518:380,-180,-58,0,0,0.0818408 -5348,5517:489,-179,-58,0,0,0.084584 -5349,5517:488,-178,-58,0,0,0.0898166 -5350,5517:487,-177,-58,0,0,0.089657 -5351,5517:486,-176,-58,0,0,0.0842902 -5352,5517:485,-175,-58,0,0,0.0836893 -5353,5517:384,-174,-58,0,0,0.0840999 -5354,5517:383,-173,-58,0,0,0.0840603 -5355,5517:382,-172,-58,0,0,0.0800675 -5356,5517:381,-171,-58,0,0,0.0776495 -5357,5517:380,-170,-58,0,0,0.0785521 -5358,5516:489,-169,-58,0,0,0.0799616 -5359,5516:488,-168,-58,0,0,0.0784852 -5360,5516:487,-167,-58,0,0,0.0766184 -5361,5516:486,-166,-58,0,0,0.0775026 -5362,5516:485,-165,-58,0,0,0.0790444 -5363,5516:384,-164,-58,0,0,0.0819491 -5364,5516:383,-163,-58,0,0,0.0834453 -5365,5516:382,-162,-58,0,0,0.0835949 -5366,5516:381,-161,-58,0,0,0.0842822 -5367,5516:380,-160,-58,0,0,0.0845522 -5368,5515:489,-159,-58,0,0,0.0846795 -5369,5515:488,-158,-58,0,0,0.084775 -5370,5515:487,-157,-58,0,0,0.0843457 -5371,5515:486,-156,-58,0,0,0.0833042 -5372,5515:485,-155,-58,0,0,0.0829987 -5373,5515:384,-154,-58,0,0,0.083163 -5374,5515:383,-153,-58,0,0,0.0839024 -5375,5515:382,-152,-58,0,0,0.0853027 -5376,5515:381,-151,-58,0,0,0.0853267 -5377,5515:380,-150,-58,0,0,0.0843059 -5378,5514:489,-149,-58,0,0,0.0844251 -5379,5514:488,-148,-58,0,0,0.0844569 -5380,5514:487,-147,-58,0,0,0.0849825 -5381,5514:486,-146,-58,0,0,0.0861239 -5382,5514:485,-145,-58,0,0,0.0869933 -5383,5514:384,-144,-58,0,0,0.0857367 -5384,5514:383,-143,-58,0,0,0.0860592 -5385,5514:382,-142,-58,0,0,0.0863183 -5386,5514:381,-141,-58,0,0,0.0890633 -5387,5514:380,-140,-58,0,0,0.087181 -5388,5513:489,-139,-58,0,0,0.0848867 -5389,5513:488,-138,-58,0,0,0.087895 -5390,5513:487,-137,-58,0,0,0.08903 -5391,5513:486,-136,-58,0,0,0.0866024 -5392,5513:485,-135,-58,0,0,0.0865374 -5393,5513:384,-134,-58,0,0,0.0919041 -5394,5513:383,-133,-58,0,0,0.0956496 -5395,5513:382,-132,-58,0,0,0.0973695 -5396,5513:381,-131,-58,0,0,0.0950645 -5397,5513:380,-130,-58,0,0,0.0941407 -5398,5512:489,-129,-58,0,0,0.0952857 -5399,5512:488,-128,-58,0,0,0.0993007 -5400,5512:487,-127,-58,0,0,0.101678 -5401,5512:486,-126,-58,0,0,0.102007 -5402,5512:485,-125,-58,0,0,0.100205 -5403,5512:384,-124,-58,0,0,0.100047 -5404,5512:383,-123,-58,0,0,0.100279 -5405,5512:382,-122,-58,0,0,0.0999183 -5406,5512:381,-121,-58,0,0,0.100363 -5407,5512:380,-120,-58,0,0,0.10053 -5408,5511:489,-119,-58,0,0,0.100307 -5409,5511:488,-118,-58,0,0,0.101584 -5410,5511:487,-117,-58,0,0,0.10263 -5411,5511:486,-116,-58,0,0,0.102876 -5412,5511:485,-115,-58,0,0,0.104779 -5413,5511:384,-114,-58,0,0,0.106321 -5414,5511:383,-113,-58,0,0,0.106987 -5415,5511:382,-112,-58,0,0,0.106379 -5416,5511:381,-111,-58,0,0,0.105039 -5417,5511:380,-110,-58,0,0,0.104471 -5418,5510:489,-109,-58,0,0,0.105184 -5419,5510:488,-108,-58,0,0,0.106653 -5420,5510:487,-107,-58,0,0,0.105039 -5421,5510:486,-106,-58,0,0,0.101847 -5422,5510:485,-105,-58,0,0,0.10039 -5423,5510:384,-104,-58,0,0,0.102158 -5424,5510:383,-103,-58,0,0,0.10337 -5425,5510:382,-102,-58,0,0,0.1004 -5426,5510:381,-101,-58,0,0,0.0978583 -5427,5510:380,-100,-58,0,0,0.0989706 -5428,5509:489,-99,-58,0,0,0.0998351 -5429,5509:488,-98,-58,0,0,0.0987781 -5430,5509:487,-97,-58,0,0,0.0998258 -5431,5509:486,-96,-58,0,0,0.0995767 -5432,5509:485,-95,-58,0,0,0.0971531 -5433,5509:384,-94,-58,0,0,0.0966496 -5434,5509:383,-93,-58,0,0,0.098486 -5435,5509:382,-92,-58,0,0,0.0926703 -5436,5509:381,-91,-58,0,0,0.0962555 -5437,5509:380,-90,-58,0,0,0.100716 -5438,5508:489,-89,-58,0,0,0.103332 -5439,5508:488,-88,-58,0,0,0.103676 -5440,5508:487,-87,-58,0,0,0.103752 -5441,5508:486,-86,-58,0,0,0.102479 -5442,5508:485,-85,-58,0,0,0.103361 -5443,5508:384,-84,-58,0,0,0.102337 -5444,5508:383,-83,-58,0,0,0.101257 -5445,5508:382,-82,-58,0,0,0.0910419 -5446,5508:381,-81,-58,0,0,0.0810186 -5447,5508:380,-80,-58,0,0,0.0852868 -5448,5507:489,-79,-58,0,0,0.0895731 -5449,5507:488,-78,-58,0,0,0.0977496 -5450,5507:487,-77,-58,0,0,0.100057 -5451,5507:486,-76,-58,0,0,0.100075 -5452,5507:485,-75,-58,0,0,0.0994295 -5453,5507:384,-74,-58,0,0,0.0989247 -5454,5507:383,-73,-58,0,0,0.0985132 -5455,5507:382,-72,-58,0,0,0.0945707 -5456,5507:381,-71,-58,0,0,0.0883243 -5457,5507:380,-70,-58,0,0,0.0850147 -5458,5506:489,-69,-58,0,0,0.0822278 -5459,5506:488,-68,-58,0,0,0.0799088 -5460,5506:487,-67,-58,0,0,0.0788725 -5461,5506:486,-66,-58,0,0,0.0787009 -5462,5506:485,-65,-58,0,0,0.083367 -5463,5506:384,-64,-58,0,0,0.0901108 -5464,5506:383,-63,-58,0,0,0.0913826 -5465,5506:382,-62,-58,0,0,0.0934071 -5466,5505:488,-58,-58,0,0,0.0794868 -5467,5505:486,-56,-58,0,0,0.0778265 -5468,5505:485,-55,-58,0,0,0.0767056 -5469,5505:384,-54,-58,0,0,0.0750416 -5470,5505:383,-53,-58,0,0,0.0750488 -5471,5505:382,-52,-58,0,0,0.0750416 -5472,5505:381,-51,-58,0,0,0.0750201 -5473,5505:380,-50,-58,0,0,0.0749988 -5474,5504:489,-49,-58,0,0,0.0750131 -5475,5504:488,-48,-58,0,0,0.0749775 -5476,5504:487,-47,-58,0,0,0.0749631 -5477,5504:486,-46,-58,0,0,0.0749562 -5478,5504:485,-45,-58,0,0,0.0749562 -5479,5504:384,-44,-58,0,0,0.0749631 -5480,5504:383,-43,-58,0,0,0.0749631 -5481,5504:382,-42,-58,0,0,0.0749631 -5482,5504:381,-41,-58,0,0,0.0749631 -5483,5504:380,-40,-58,0,0,0.0749703 -5484,5503:489,-39,-58,0,0,0.0749775 -5485,5503:488,-38,-58,0,0,0.0749846 -5486,5503:487,-37,-58,0,0,0.0749916 -5487,5503:486,-36,-58,0,0,0.0749916 -5488,5503:485,-35,-58,0,0,0.0749916 -5489,5503:384,-34,-58,0,0,0.0749916 -5490,5503:383,-33,-58,0,0,0.0749916 -5491,5503:382,-32,-58,0,0,0.0749916 -5492,5503:381,-31,-58,0,0,0.0749916 -5493,5503:380,-30,-58,0,0,0.0749846 -5494,5502:489,-29,-58,0,0,0.0749846 -5495,5502:488,-28,-58,0,0,0.0749846 -5496,5502:487,-27,-58,0,0,0.0749775 -5497,5502:486,-26,-58,0,0,0.0749775 -5498,5502:485,-25,-58,0,0,0.0749703 -5499,5502:384,-24,-58,0,0,0.0749631 -5500,5502:383,-23,-58,0,0,0.0749562 -5501,5502:382,-22,-58,0,0,0.074949 -5502,5502:381,-21,-58,0,0,0.0749418 -5503,5502:380,-20,-58,0,0,0.0749275 -5504,5501:489,-19,-58,0,0,0.0749062 -5505,5501:488,-18,-58,0,0,0.074892 -5506,5501:487,-17,-58,0,0,0.0748777 -5507,5501:486,-16,-58,0,0,0.0748564 -5508,5501:485,-15,-58,0,0,0.0748493 -5509,5501:384,-14,-58,0,0,0.0748493 -5510,5501:383,-13,-58,0,0,0.0748493 -5511,5501:382,-12,-58,0,0,0.0748564 -5512,5501:381,-11,-58,0,0,0.0748636 -5513,5501:380,-10,-58,0,0,0.0748636 -5514,5500:489,-9,-58,0,0,0.0748777 -5515,5500:488,-8,-58,0,0,0.0748849 -5516,5500:487,-7,-58,0,0,0.0748849 -5517,5500:486,-6,-58,0,0,0.0748636 -5518,5500:485,-5,-58,0,0,0.0748564 -5519,5500:384,-4,-58,0,0,0.0748493 -5520,5500:383,-3,-58,0,0,0.0748421 -5521,5500:382,-2,-58,0,0,0.0748564 -5522,5500:381,-1,-58,0,0,0.0748777 -5523,3500:381,0,-58,0,0,0.074892 -5524,3500:381,1,-58,0,0,0.0749062 -5525,3500:382,2,-58,0,0,0.0748777 -5526,3500:383,3,-58,0,0,0.0748636 -5527,3500:384,4,-58,0,0,0.0748705 -5528,3500:485,5,-58,0,0,0.0748849 -5529,3500:486,6,-58,0,0,0.074899 -5530,3500:487,7,-58,0,0,0.0749062 -5531,3500:488,8,-58,0,0,0.0749275 -5532,3500:489,9,-58,0,0,0.0749418 -5533,3501:380,10,-58,0,0,0.0749562 -5534,3501:381,11,-58,0,0,0.0749631 -5535,3501:382,12,-58,0,0,0.0749562 -5536,3501:383,13,-58,0,0,0.074949 -5537,3501:384,14,-58,0,0,0.0748777 -5538,3501:485,15,-58,0,0,0.0748493 -5539,3501:486,16,-58,0,0,0.0748137 -5540,3501:487,17,-58,0,0,0.0747852 -5541,3501:488,18,-58,0,0,0.0747711 -5542,3501:489,19,-58,0,0,0.0747711 -5543,3502:380,20,-58,0,0,0.0747781 -5544,3502:381,21,-58,0,0,0.0747781 -5545,3502:382,22,-58,0,0,0.0747781 -5546,3502:383,23,-58,0,0,0.0747711 -5547,3502:384,24,-58,0,0,0.0747781 -5548,3502:485,25,-58,0,0,0.074764 -5549,3502:486,26,-58,0,0,0.0748208 -5550,3502:487,27,-58,0,0,0.0748493 -5551,3502:488,28,-58,0,0,0.0748849 -5552,3502:489,29,-58,0,0,0.0749275 -5553,3503:380,30,-58,0,0,0.0749775 -5554,3503:381,31,-58,0,0,0.0749703 -5555,3503:382,32,-58,0,0,0.0748705 -5556,3503:383,33,-58,0,0,0.0749062 -5557,3503:384,34,-58,0,0,0.0749133 -5558,3503:485,35,-58,0,0,0.0749062 -5559,3503:486,36,-58,0,0,0.0749062 -5560,3503:487,37,-58,0,0,0.0748705 -5561,3503:488,38,-58,0,0,0.0748421 -5562,3503:489,39,-58,0,0,0.0748349 -5563,3504:380,40,-58,0,0,0.0748349 -5564,3504:381,41,-58,0,0,0.074828 -5565,3504:382,42,-58,0,0,0.0748493 -5566,3504:383,43,-58,0,0,0.0748849 -5567,3504:384,44,-58,0,0,0.0749133 -5568,3504:485,45,-58,0,0,0.0749275 -5569,3504:486,46,-58,0,0,0.0749346 -5570,3504:487,47,-58,0,0,0.0749418 -5571,3504:488,48,-58,0,0,0.0749631 -5572,3504:489,49,-58,0,0,0.0749562 -5573,3505:380,50,-58,0,0,0.0749775 -5574,3505:381,51,-58,0,0,0.0749775 -5575,3505:382,52,-58,0,0,0.0750201 -5576,3505:383,53,-58,0,0,0.0750201 -5577,3505:384,54,-58,0,0,0.0750273 -5578,3505:485,55,-58,0,0,0.0750131 -5579,3505:486,56,-58,0,0,0.0749775 -5580,3505:487,57,-58,0,0,0.0749562 -5581,3505:488,58,-58,0,0,0.0749418 -5582,3505:489,59,-58,0,0,0.0749346 -5583,3506:380,60,-58,0,0,0.0749275 -5584,3506:381,61,-58,0,0,0.0749133 -5585,3506:382,62,-58,0,0,0.0750273 -5586,3506:383,63,-58,0,0,0.0749133 -5587,3506:384,64,-58,0,0,0.0749275 -5588,3506:485,65,-58,0,0,0.0749418 -5589,3506:486,66,-58,0,0,0.0749562 -5590,3506:487,67,-58,0,0,0.0749703 -5591,3506:488,68,-58,0,0,0.0749703 -5592,3506:489,69,-58,0,0,0.074949 -5593,3507:380,70,-58,0,0,0.0749205 -5594,3507:381,71,-58,0,0,0.074892 -5595,3507:382,72,-58,0,0,0.074899 -5596,3507:384,74,-58,0,0,0.0749562 -5597,3507:485,75,-58,0,0,0.0749275 -5598,3507:486,76,-58,0,0,0.074899 -5599,3507:487,77,-58,0,0,0.0749133 -5600,3507:488,78,-58,0,0,0.0749205 -5601,3507:489,79,-58,0,0,0.0749418 -5602,3508:380,80,-58,0,0,0.074949 -5603,3508:381,81,-58,0,0,0.0749346 -5604,3508:382,82,-58,0,0,0.0749346 -5605,3508:383,83,-58,0,0,0.0749846 -5606,3508:384,84,-58,0,0,0.0749916 -5607,3508:485,85,-58,0,0,0.0749846 -5608,3508:486,86,-58,0,0,0.0749846 -5609,3508:487,87,-58,0,0,0.0749846 -5610,3508:488,88,-58,0,0,0.0749631 -5611,3508:489,89,-58,0,0,0.0751771 -5612,3509:380,90,-58,0,0,0.0758803 -5613,3509:381,91,-58,0,0,0.0749916 -5614,3509:382,92,-58,0,0,0.075006 -5615,3509:383,93,-58,0,0,0.0750273 -5616,3509:384,94,-58,0,0,0.0750488 -5617,3509:485,95,-58,0,0,0.0750702 -5618,3509:486,96,-58,0,0,0.0751128 -5619,3509:487,97,-58,0,0,0.0751701 -5620,3509:488,98,-58,0,0,0.0752129 -5621,3509:489,99,-58,0,0,0.0752487 -5622,3510:380,100,-58,0,0,0.0751128 -5623,3510:381,101,-58,0,0,0.0750843 -5624,3510:382,102,-58,0,0,0.0750843 -5625,3510:383,103,-58,0,0,0.075063 -5626,3510:384,104,-58,0,0,0.0750558 -5627,3510:485,105,-58,0,0,0.0750273 -5628,3510:486,106,-58,0,0,0.075006 -5629,3510:487,107,-58,0,0,0.0749846 -5630,3510:488,108,-58,0,0,0.0749775 -5631,3510:489,109,-58,0,0,0.0749775 -5632,3511:380,110,-58,0,0,0.0749846 -5633,3511:381,111,-58,0,0,0.0749775 -5634,3511:382,112,-58,0,0,0.0749562 -5635,3511:383,113,-58,0,0,0.0749846 -5636,3511:384,114,-58,0,0,0.0750131 -5637,3511:485,115,-58,0,0,0.075006 -5638,3511:486,116,-58,0,0,0.0749988 -5639,3511:487,117,-58,0,0,0.0750702 -5640,3511:488,118,-58,0,0,0.0753489 -5641,3511:489,119,-58,0,0,0.0773192 -5642,3512:380,120,-58,0,0,0.0819182 -5643,3512:381,121,-58,0,0,0.0841872 -5644,3512:382,122,-58,0,0,0.0844251 -5645,3512:383,123,-58,0,0,0.084775 -5646,3512:384,124,-58,0,0,0.0836814 -5647,3512:485,125,-58,0,0,0.0772092 -5648,3512:486,126,-58,0,0,0.0794491 -5649,3512:487,127,-58,0,0,0.076234 -5650,3512:488,128,-58,0,0,0.0765384 -5651,3512:489,129,-58,0,0,0.0774584 -5652,3513:380,130,-58,0,0,0.0779296 -5653,3513:381,131,-58,0,0,0.0768076 -5654,3513:382,132,-58,0,0,0.0752916 -5655,3513:383,133,-58,0,0,0.0753203 -5656,3513:384,134,-58,0,0,0.0755207 -5657,3513:485,135,-58,0,0,0.0756355 -5658,3513:486,136,-58,0,0,0.0756932 -5659,3513:487,137,-58,0,0,0.07565 -5660,3513:488,138,-58,0,0,0.0755926 -5661,3513:489,139,-58,0,0,0.0755639 -5662,3514:380,140,-58,0,0,0.0758443 -5663,3514:381,141,-58,0,0,0.0761327 -5664,3514:382,142,-58,0,0,0.0762413 -5665,3514:383,143,-58,0,0,0.0763137 -5666,3514:384,144,-58,0,0,0.0769462 -5667,3514:485,145,-58,0,0,0.0766475 -5668,3514:486,146,-58,0,0,0.0770046 -5669,3514:487,147,-58,0,0,0.075765 -5670,3514:488,148,-58,0,0,0.0753489 -5671,3514:489,149,-58,0,0,0.0755998 -5672,3515:380,150,-58,0,0,0.0752916 -5673,3515:381,151,-58,0,0,0.0750558 -5674,3515:382,152,-58,0,0,0.0750201 -5675,3515:383,153,-58,0,0,0.0751486 -5676,3515:384,154,-58,0,0,0.0750702 -5677,3515:485,155,-58,0,0,0.0750987 -5678,3515:486,156,-58,0,0,0.0750702 -5679,3515:487,157,-58,0,0,0.0750488 -5680,3515:488,158,-58,0,0,0.0750416 -5681,3515:489,159,-58,0,0,0.0750345 -5682,3516:380,160,-58,0,0,0.0750558 -5683,3516:381,161,-58,0,0,0.0750488 -5684,3516:382,162,-58,0,0,0.075063 -5685,3516:383,163,-58,0,0,0.0750843 -5686,3516:384,164,-58,0,0,0.0750843 -5687,3516:485,165,-58,0,0,0.0750702 -5688,3516:486,166,-58,0,0,0.0750987 -5689,3516:487,167,-58,0,0,0.0751059 -5690,3516:488,168,-58,0,0,0.0750987 -5691,3516:489,169,-58,0,0,0.0750915 -5692,3517:380,170,-58,0,0,0.0750702 -5693,3517:381,171,-58,0,0,0.0752559 -5694,3517:382,172,-58,0,0,0.0755854 -5695,3517:383,173,-58,0,0,0.075528 -5696,3517:384,174,-58,0,0,0.0751701 -5697,3517:485,175,-58,0,0,0.0751059 -5698,3517:486,176,-58,0,0,0.0774291 -5699,3517:487,177,-58,0,0,0.0803479 -5700,3517:488,178,-58,0,0,0.0784777 -5701,3517:489,179,-58,0,0,0.0764659 -5702,3518:380,180,-58,0,0,0.0818408 -5703,5518:370,-180,-57,0,0,0.0915705 -5704,5517:479,-179,-57,0,0,0.0912632 -5705,5517:478,-178,-57,0,0,0.0919986 -5706,5517:477,-177,-57,0,0,0.0913909 -5707,5517:476,-176,-57,0,0,0.0899762 -5708,5517:475,-175,-57,0,0,0.0895396 -5709,5517:374,-174,-57,0,0,0.0876071 -5710,5517:373,-173,-57,0,0,0.0861565 -5711,5517:372,-172,-57,0,0,0.0849267 -5712,5517:371,-171,-57,0,0,0.0846875 -5713,5517:370,-170,-57,0,0,0.0871157 -5714,5516:479,-169,-57,0,0,0.0828892 -5715,5516:478,-168,-57,0,0,0.0818255 -5716,5516:477,-167,-57,0,0,0.0801357 -5717,5516:476,-166,-57,0,0,0.0788502 -5718,5516:475,-165,-57,0,0,0.0793366 -5719,5516:374,-164,-57,0,0,0.0808504 -5720,5516:373,-163,-57,0,0,0.0821656 -5721,5516:372,-162,-57,0,0,0.0839735 -5722,5516:371,-161,-57,0,0,0.084576 -5723,5516:370,-160,-57,0,0,0.0849347 -5724,5515:479,-159,-57,0,0,0.085648 -5725,5515:478,-158,-57,0,0,0.0860109 -5726,5515:477,-157,-57,0,0,0.0855435 -5727,5515:476,-156,-57,0,0,0.0848548 -5728,5515:475,-155,-57,0,0,0.084839 -5729,5515:374,-154,-57,0,0,0.0845602 -5730,5515:373,-153,-57,0,0,0.0844806 -5731,5515:372,-152,-57,0,0,0.0850786 -5732,5515:371,-151,-57,0,0,0.0852626 -5733,5515:370,-150,-57,0,0,0.0882168 -5734,5514:479,-149,-57,0,0,0.0860837 -5735,5514:478,-148,-57,0,0,0.0846795 -5736,5514:477,-147,-57,0,0,0.0860028 -5737,5514:476,-146,-57,0,0,0.0891717 -5738,5514:475,-145,-57,0,0,0.0893639 -5739,5514:374,-144,-57,0,0,0.0894561 -5740,5514:373,-143,-57,0,0,0.0884567 -5741,5514:372,-142,-57,0,0,0.0898081 -5742,5514:371,-141,-57,0,0,0.0917159 -5743,5514:370,-140,-57,0,0,0.0890969 -5744,5513:479,-139,-57,0,0,0.0930771 -5745,5513:478,-138,-57,0,0,0.0958986 -5746,5513:477,-137,-57,0,0,0.0950912 -5747,5513:476,-136,-57,0,0,0.0909228 -5748,5513:475,-135,-57,0,0,0.092489 -5749,5513:374,-134,-57,0,0,0.0966228 -5750,5513:373,-133,-57,0,0,0.0979763 -5751,5513:372,-132,-57,0,0,0.0996966 -5752,5513:371,-131,-57,0,0,0.099586 -5753,5513:370,-130,-57,0,0,0.0992458 -5754,5512:479,-129,-57,0,0,0.100344 -5755,5512:478,-128,-57,0,0,0.10136 -5756,5512:477,-127,-57,0,0,0.102082 -5757,5512:476,-126,-57,0,0,0.103247 -5758,5512:475,-125,-57,0,0,0.10228 -5759,5512:374,-124,-57,0,0,0.100911 -5760,5512:373,-123,-57,0,0,0.0999736 -5761,5512:372,-122,-57,0,0,0.100474 -5762,5512:371,-121,-57,0,0,0.101182 -5763,5512:370,-120,-57,0,0,0.10319 -5764,5511:479,-119,-57,0,0,0.103028 -5765,5511:478,-118,-57,0,0,0.104327 -5766,5511:477,-117,-57,0,0,0.106507 -5767,5511:476,-116,-57,0,0,0.108667 -5768,5511:475,-115,-57,0,0,0.107587 -5769,5511:374,-114,-57,0,0,0.110714 -5770,5511:373,-113,-57,0,0,0.11117 -5771,5511:372,-112,-57,0,0,0.112322 -5772,5511:371,-111,-57,0,0,0.109756 -5773,5511:370,-110,-57,0,0,0.106331 -5774,5510:479,-109,-57,0,0,0.108071 -5775,5510:478,-108,-57,0,0,0.11037 -5776,5510:477,-107,-57,0,0,0.110562 -5777,5510:476,-106,-57,0,0,0.110249 -5778,5510:475,-105,-57,0,0,0.109566 -5779,5510:374,-104,-57,0,0,0.108687 -5780,5510:373,-103,-57,0,0,0.107429 -5781,5510:372,-102,-57,0,0,0.104077 -5782,5510:371,-101,-57,0,0,0.101556 -5783,5510:370,-100,-57,0,0,0.103323 -5784,5509:479,-99,-57,0,0,0.102649 -5785,5509:478,-98,-57,0,0,0.100112 -5786,5509:477,-97,-57,0,0,0.099586 -5787,5509:476,-96,-57,0,0,0.100818 -5788,5509:475,-95,-57,0,0,0.0996136 -5789,5509:374,-94,-57,0,0,0.0997334 -5790,5509:373,-93,-57,0,0,0.100455 -5791,5509:372,-92,-57,0,0,0.100958 -5792,5509:371,-91,-57,0,0,0.0986869 -5793,5509:370,-90,-57,0,0,0.102148 -5794,5508:479,-89,-57,0,0,0.101763 -5795,5508:478,-88,-57,0,0,0.107016 -5796,5508:477,-87,-57,0,0,0.110774 -5797,5508:476,-86,-57,0,0,0.108468 -5798,5508:475,-85,-57,0,0,0.103991 -5799,5508:374,-84,-57,0,0,0.103609 -5800,5508:373,-83,-57,0,0,0.105339 -5801,5508:372,-82,-57,0,0,0.106448 -5802,5508:371,-81,-57,0,0,0.100874 -5803,5508:370,-80,-57,0,0,0.0867406 -5804,5507:479,-79,-57,0,0,0.0863265 -5805,5507:478,-78,-57,0,0,0.088316 -5806,5507:477,-77,-57,0,0,0.0939216 -5807,5507:476,-76,-57,0,0,0.100011 -5808,5507:475,-75,-57,0,0,0.0989614 -5809,5507:374,-74,-57,0,0,0.100409 -5810,5507:373,-73,-57,0,0,0.10196 -5811,5507:372,-72,-57,0,0,0.100298 -5812,5507:371,-71,-57,0,0,0.0977767 -5813,5507:370,-70,-57,0,0,0.092558 -5814,5506:479,-69,-57,0,0,0.0889802 -5815,5506:478,-68,-57,0,0,0.0819335 -5816,5506:477,-67,-57,0,0,0.0851426 -5817,5506:476,-66,-57,0,0,0.0820652 -5818,5506:475,-65,-57,0,0,0.0817328 -5819,5506:374,-64,-57,0,0,0.0815943 -5820,5506:373,-63,-57,0,0,0.081548 -5821,5506:372,-62,-57,0,0,0.0876976 -5822,5506:371,-61,-57,0,0,0.0820574 -5823,5506:370,-60,-57,0,0,0.0871483 -5824,5505:477,-57,-57,0,0,0.0793666 -5825,5505:476,-56,-57,0,0,0.0771141 -5826,5505:475,-55,-57,0,0,0.0766111 -5827,5505:374,-54,-57,0,0,0.0759379 -5828,5505:373,-53,-57,0,0,0.07565 -5829,5505:372,-52,-57,0,0,0.0749775 -5830,5505:371,-51,-57,0,0,0.0750273 -5831,5505:370,-50,-57,0,0,0.0750131 -5832,5504:479,-49,-57,0,0,0.0749988 -5833,5504:478,-48,-57,0,0,0.0749846 -5834,5504:477,-47,-57,0,0,0.0749703 -5835,5504:476,-46,-57,0,0,0.0749703 -5836,5504:475,-45,-57,0,0,0.0749775 -5837,5504:374,-44,-57,0,0,0.0749703 -5838,5504:373,-43,-57,0,0,0.074949 -5839,5504:372,-42,-57,0,0,0.0749418 -5840,5504:371,-41,-57,0,0,0.074949 -5841,5504:370,-40,-57,0,0,0.0749562 -5842,5503:479,-39,-57,0,0,0.0749631 -5843,5503:478,-38,-57,0,0,0.0749631 -5844,5503:477,-37,-57,0,0,0.0749703 -5845,5503:476,-36,-57,0,0,0.0749775 -5846,5503:475,-35,-57,0,0,0.0749916 -5847,5503:374,-34,-57,0,0,0.0749988 -5848,5503:373,-33,-57,0,0,0.0749988 -5849,5503:372,-32,-57,0,0,0.0749988 -5850,5503:371,-31,-57,0,0,0.0749916 -5851,5503:370,-30,-57,0,0,0.0749916 -5852,5502:479,-29,-57,0,0,0.0749916 -5853,5502:478,-28,-57,0,0,0.0749916 -5854,5502:477,-27,-57,0,0,0.0749846 -5855,5502:476,-26,-57,0,0,0.0749846 -5856,5502:475,-25,-57,0,0,0.0749775 -5857,5502:374,-24,-57,0,0,0.0749703 -5858,5502:373,-23,-57,0,0,0.0749631 -5859,5502:372,-22,-57,0,0,0.074949 -5860,5502:371,-21,-57,0,0,0.0749346 -5861,5502:370,-20,-57,0,0,0.0749205 -5862,5501:479,-19,-57,0,0,0.074899 -5863,5501:478,-18,-57,0,0,0.0748777 -5864,5501:477,-17,-57,0,0,0.0748636 -5865,5501:476,-16,-57,0,0,0.0748564 -5866,5501:475,-15,-57,0,0,0.0748493 -5867,5501:374,-14,-57,0,0,0.0748493 -5868,5501:373,-13,-57,0,0,0.0748564 -5869,5501:372,-12,-57,0,0,0.0748564 -5870,5501:371,-11,-57,0,0,0.0748705 -5871,5501:370,-10,-57,0,0,0.0748777 -5872,5500:479,-9,-57,0,0,0.0748705 -5873,5500:478,-8,-57,0,0,0.0748705 -5874,5500:477,-7,-57,0,0,0.0748705 -5875,5500:476,-6,-57,0,0,0.0748705 -5876,5500:475,-5,-57,0,0,0.0748636 -5877,5500:374,-4,-57,0,0,0.0748564 -5878,5500:373,-3,-57,0,0,0.0748493 -5879,5500:372,-2,-57,0,0,0.0748564 -5880,5500:371,-1,-57,0,0,0.0748564 -5881,3500:371,0,-57,0,0,0.0748636 -5882,3500:371,1,-57,0,0,0.0748705 -5883,3500:372,2,-57,0,0,0.074892 -5884,3500:373,3,-57,0,0,0.0748849 -5885,3500:374,4,-57,0,0,0.0748777 -5886,3500:475,5,-57,0,0,0.0748777 -5887,3500:476,6,-57,0,0,0.074892 -5888,3500:477,7,-57,0,0,0.0749062 -5889,3500:478,8,-57,0,0,0.0749133 -5890,3500:479,9,-57,0,0,0.0749275 -5891,3501:370,10,-57,0,0,0.074949 -5892,3501:371,11,-57,0,0,0.0749703 -5893,3501:372,12,-57,0,0,0.0749562 -5894,3501:373,13,-57,0,0,0.0749562 -5895,3501:374,14,-57,0,0,0.0749562 -5896,3501:475,15,-57,0,0,0.0749133 -5897,3501:476,16,-57,0,0,0.0748636 -5898,3501:477,17,-57,0,0,0.0748349 -5899,3501:478,18,-57,0,0,0.0747711 -5900,3501:479,19,-57,0,0,0.0747425 -5901,3502:370,20,-57,0,0,0.0748137 -5902,3502:371,21,-57,0,0,0.0748065 -5903,3502:372,22,-57,0,0,0.074764 -5904,3502:373,23,-57,0,0,0.074764 -5905,3502:374,24,-57,0,0,0.074764 -5906,3502:475,25,-57,0,0,0.0747497 -5907,3502:476,26,-57,0,0,0.074892 -5908,3502:477,27,-57,0,0,0.0750558 -5909,3502:478,28,-57,0,0,0.0753272 -5910,3502:479,29,-57,0,0,0.0753344 -5911,3503:370,30,-57,0,0,0.0752273 -5912,3503:371,31,-57,0,0,0.0751987 -5913,3503:372,32,-57,0,0,0.0750843 -5914,3503:373,33,-57,0,0,0.0748137 -5915,3503:374,34,-57,0,0,0.0748493 -5916,3503:475,35,-57,0,0,0.0748636 -5917,3503:476,36,-57,0,0,0.0748705 -5918,3503:477,37,-57,0,0,0.0748705 -5919,3503:478,38,-57,0,0,0.0748636 -5920,3503:479,39,-57,0,0,0.0748564 -5921,3504:370,40,-57,0,0,0.074828 -5922,3504:371,41,-57,0,0,0.0748493 -5923,3504:372,42,-57,0,0,0.0749062 -5924,3504:373,43,-57,0,0,0.0749631 -5925,3504:374,44,-57,0,0,0.0748349 -5926,3504:475,45,-57,0,0,0.0748493 -5927,3504:476,46,-57,0,0,0.0748705 -5928,3504:477,47,-57,0,0,0.0748777 -5929,3504:478,48,-57,0,0,0.0748705 -5930,3504:479,49,-57,0,0,0.0748705 -5931,3505:370,50,-57,0,0,0.0748849 -5932,3505:371,51,-57,0,0,0.0749062 -5933,3505:372,52,-57,0,0,0.0749133 -5934,3505:373,53,-57,0,0,0.0749275 -5935,3505:374,54,-57,0,0,0.0749346 -5936,3505:475,55,-57,0,0,0.0749275 -5937,3505:476,56,-57,0,0,0.0749775 -5938,3505:477,57,-57,0,0,0.0749346 -5939,3505:478,58,-57,0,0,0.0749418 -5940,3505:479,59,-57,0,0,0.0749418 -5941,3506:370,60,-57,0,0,0.0749418 -5942,3506:371,61,-57,0,0,0.0749631 -5943,3506:372,62,-57,0,0,0.0749562 -5944,3506:373,63,-57,0,0,0.0749562 -5945,3506:374,64,-57,0,0,0.0749631 -5946,3506:475,65,-57,0,0,0.0749703 -5947,3506:476,66,-57,0,0,0.0749846 -5948,3506:477,67,-57,0,0,0.0749916 -5949,3506:478,68,-57,0,0,0.0749775 -5950,3506:479,69,-57,0,0,0.0750131 -5951,3507:370,70,-57,0,0,0.0749562 -5952,3507:371,71,-57,0,0,0.0751059 -5953,3507:372,72,-57,0,0,0.0749275 -5954,3507:374,74,-57,0,0,0.0752559 -5955,3507:475,75,-57,0,0,0.0757937 -5956,3507:476,76,-57,0,0,0.0749846 -5957,3507:477,77,-57,0,0,0.074899 -5958,3507:478,78,-57,0,0,0.0753417 -5959,3507:479,79,-57,0,0,0.0749916 -5960,3508:370,80,-57,0,0,0.0749631 -5961,3508:371,81,-57,0,0,0.0750273 -5962,3508:372,82,-57,0,0,0.075063 -5963,3508:373,83,-57,0,0,0.0754562 -5964,3508:374,84,-57,0,0,0.0748705 -5965,3508:475,85,-57,0,0,0.0749346 -5966,3508:476,86,-57,0,0,0.0749418 -5967,3508:477,87,-57,0,0,0.0749346 -5968,3508:478,88,-57,0,0,0.074892 -5969,3508:479,89,-57,0,0,0.0755424 -5970,3509:370,90,-57,0,0,0.0758155 -5971,3509:371,91,-57,0,0,0.0770046 -5972,3509:372,92,-57,0,0,0.0764296 -5973,3509:373,93,-57,0,0,0.0754779 -5974,3509:374,94,-57,0,0,0.0749916 -5975,3509:475,95,-57,0,0,0.0750201 -5976,3509:476,96,-57,0,0,0.0750416 -5977,3509:477,97,-57,0,0,0.075063 -5978,3509:478,98,-57,0,0,0.0750702 -5979,3509:479,99,-57,0,0,0.0750773 -5980,3510:370,100,-57,0,0,0.0750773 -5981,3510:371,101,-57,0,0,0.075063 -5982,3510:372,102,-57,0,0,0.0750488 -5983,3510:373,103,-57,0,0,0.075006 -5984,3510:374,104,-57,0,0,0.075006 -5985,3510:475,105,-57,0,0,0.0750131 -5986,3510:476,106,-57,0,0,0.0749916 -5987,3510:477,107,-57,0,0,0.0749916 -5988,3510:478,108,-57,0,0,0.0749916 -5989,3510:479,109,-57,0,0,0.0749846 -5990,3511:370,110,-57,0,0,0.0749631 -5991,3511:371,111,-57,0,0,0.0749562 -5992,3511:372,112,-57,0,0,0.0749631 -5993,3511:373,113,-57,0,0,0.0749346 -5994,3511:374,114,-57,0,0,0.0757722 -5995,3511:475,115,-57,0,0,0.0779075 -5996,3511:476,116,-57,0,0,0.0752415 -5997,3511:477,117,-57,0,0,0.0751558 -5998,3511:478,118,-57,0,0,0.0784555 -5999,3511:479,119,-57,0,0,0.0795921 -6000,3512:370,120,-57,0,0,0.0804619 -6001,3512:371,121,-57,0,0,0.0847113 -6002,3512:372,122,-57,0,0,0.0877551 -6003,3512:373,123,-57,0,0,0.0883079 -6004,3512:374,124,-57,0,0,0.0889802 -6005,3512:475,125,-57,0,0,0.0891717 -6006,3512:476,126,-57,0,0,0.0889469 -6007,3512:477,127,-57,0,0,0.0878704 -6008,3512:478,128,-57,0,0,0.0874676 -6009,3512:479,129,-57,0,0,0.0853911 -6010,3513:370,130,-57,0,0,0.0864725 -6011,3513:371,131,-57,0,0,0.0867814 -6012,3513:372,132,-57,0,0,0.0906516 -6013,3513:373,133,-57,0,0,0.08959 -6014,3513:374,134,-57,0,0,0.0781663 -6015,3513:475,135,-57,0,0,0.0827956 -6016,3513:476,136,-57,0,0,0.0795168 -6017,3513:477,137,-57,0,0,0.0800599 -6018,3513:478,138,-57,0,0,0.0754562 -6019,3513:479,139,-57,0,0,0.0753703 -6020,3514:370,140,-57,0,0,0.0765166 -6021,3514:371,141,-57,0,0,0.0780775 -6022,3514:372,142,-57,0,0,0.079577 -6023,3514:373,143,-57,0,0,0.0798634 -6024,3514:374,144,-57,0,0,0.0796146 -6025,3514:475,145,-57,0,0,0.0822899 -6026,3514:476,146,-57,0,0,0.0803785 -6027,3514:477,147,-57,0,0,0.0760606 -6028,3514:478,148,-57,0,0,0.0759019 -6029,3514:479,149,-57,0,0,0.0756141 -6030,3515:370,150,-57,0,0,0.0756787 -6031,3515:371,151,-57,0,0,0.075686 -6032,3515:372,152,-57,0,0,0.0754275 -6033,3515:373,153,-57,0,0,0.0753203 -6034,3515:374,154,-57,0,0,0.0753489 -6035,3515:475,155,-57,0,0,0.0752343 -6036,3515:476,156,-57,0,0,0.0751558 -6037,3515:477,157,-57,0,0,0.0750773 -6038,3515:478,158,-57,0,0,0.0750773 -6039,3515:479,159,-57,0,0,0.075063 -6040,3516:370,160,-57,0,0,0.0750702 -6041,3516:371,161,-57,0,0,0.0750773 -6042,3516:372,162,-57,0,0,0.0750702 -6043,3516:373,163,-57,0,0,0.0750843 -6044,3516:374,164,-57,0,0,0.0750915 -6045,3516:475,165,-57,0,0,0.0751486 -6046,3516:476,166,-57,0,0,0.0752129 -6047,3516:477,167,-57,0,0,0.0752559 -6048,3516:478,168,-57,0,0,0.0758225 -6049,3516:479,169,-57,0,0,0.0782775 -6050,3517:370,170,-57,0,0,0.0796146 -6051,3517:371,171,-57,0,0,0.07969 -6052,3517:372,172,-57,0,0,0.0821503 -6053,3517:373,173,-57,0,0,0.0782108 -6054,3517:374,174,-57,0,0,0.0756285 -6055,3517:475,175,-57,0,0,0.0769462 -6056,3517:476,176,-57,0,0,0.090533 -6057,3517:477,177,-57,0,0,0.088316 -6058,3517:478,178,-57,0,0,0.0825073 -6059,3517:479,179,-57,0,0,0.0931811 -6060,3518:370,180,-57,0,0,0.0915705 -6061,5518:360,-180,-56,0,0,0.110138 -6062,5517:469,-179,-56,0,0,0.0982946 -6063,5517:468,-178,-56,0,0,0.0975051 -6064,5517:467,-177,-56,0,0,0.0968562 -6065,5517:466,-176,-56,0,0,0.0947733 -6066,5517:465,-175,-56,0,0,0.0946147 -6067,5517:364,-174,-56,0,0,0.0952592 -6068,5517:363,-173,-56,0,0,0.0917072 -6069,5517:362,-172,-56,0,0,0.0933723 -6070,5517:361,-171,-56,0,0,0.0919986 -6071,5517:360,-170,-56,0,0,0.0904146 -6072,5516:469,-169,-56,0,0,0.0873611 -6073,5516:468,-168,-56,0,0,0.0859705 -6074,5516:467,-167,-56,0,0,0.0862535 -6075,5516:466,-166,-56,0,0,0.0862212 -6076,5516:465,-165,-56,0,0,0.0856399 -6077,5516:364,-164,-56,0,0,0.0855033 -6078,5516:363,-163,-56,0,0,0.0842109 -6079,5516:362,-162,-56,0,0,0.083926 -6080,5516:361,-161,-56,0,0,0.0845124 -6081,5516:360,-160,-56,0,0,0.0849187 -6082,5515:469,-159,-56,0,0,0.0852946 -6083,5515:468,-158,-56,0,0,0.0856802 -6084,5515:467,-157,-56,0,0,0.0861402 -6085,5515:466,-156,-56,0,0,0.0862535 -6086,5515:465,-155,-56,0,0,0.0866024 -6087,5515:364,-154,-56,0,0,0.0862859 -6088,5515:363,-153,-56,0,0,0.0854954 -6089,5515:362,-152,-56,0,0,0.0860514 -6090,5515:361,-151,-56,0,0,0.0871648 -6091,5515:360,-150,-56,0,0,0.0913058 -6092,5514:469,-149,-56,0,0,0.0929644 -6093,5514:468,-148,-56,0,0,0.092222 -6094,5514:467,-147,-56,0,0,0.0868791 -6095,5514:466,-146,-56,0,0,0.087714 -6096,5514:465,-145,-56,0,0,0.0875908 -6097,5514:364,-144,-56,0,0,0.0921619 -6098,5514:363,-143,-56,0,0,0.0917328 -6099,5514:362,-142,-56,0,0,0.0898753 -6100,5514:361,-141,-56,0,0,0.090855 -6101,5514:360,-140,-56,0,0,0.0914594 -6102,5513:469,-139,-56,0,0,0.0941056 -6103,5513:468,-138,-56,0,0,0.0958899 -6104,5513:467,-137,-56,0,0,0.0957386 -6105,5513:466,-136,-56,0,0,0.0949674 -6106,5513:465,-135,-56,0,0,0.0973334 -6107,5513:364,-134,-56,0,0,0.0989247 -6108,5513:363,-133,-56,0,0,0.0990439 -6109,5513:362,-132,-56,0,0,0.0991813 -6110,5513:361,-131,-56,0,0,0.099752 -6111,5513:360,-130,-56,0,0,0.100502 -6112,5512:469,-129,-56,0,0,0.103066 -6113,5512:468,-128,-56,0,0,0.1028 -6114,5512:467,-127,-56,0,0,0.103418 -6115,5512:466,-126,-56,0,0,0.104567 -6116,5512:465,-125,-56,0,0,0.104058 -6117,5512:364,-124,-56,0,0,0.102167 -6118,5512:363,-123,-56,0,0,0.101537 -6119,5512:362,-122,-56,0,0,0.100837 -6120,5512:361,-121,-56,0,0,0.101904 -6121,5512:360,-120,-56,0,0,0.105029 -6122,5511:469,-119,-56,0,0,0.106663 -6123,5511:468,-118,-56,0,0,0.107301 -6124,5511:467,-117,-56,0,0,0.10817 -6125,5511:466,-116,-56,0,0,0.109235 -6126,5511:465,-115,-56,0,0,0.109857 -6127,5511:364,-114,-56,0,0,0.110108 -6128,5511:363,-113,-56,0,0,0.111668 -6129,5511:362,-112,-56,0,0,0.113795 -6130,5511:361,-111,-56,0,0,0.113774 -6131,5511:360,-110,-56,0,0,0.110229 -6132,5510:469,-109,-56,0,0,0.108866 -6133,5510:468,-108,-56,0,0,0.111587 -6134,5510:467,-107,-56,0,0,0.113495 -6135,5510:466,-106,-56,0,0,0.112476 -6136,5510:465,-105,-56,0,0,0.108458 -6137,5510:364,-104,-56,0,0,0.106262 -6138,5510:363,-103,-56,0,0,0.105252 -6139,5510:362,-102,-56,0,0,0.104827 -6140,5510:361,-101,-56,0,0,0.104576 -6141,5510:360,-100,-56,0,0,0.103304 -6142,5509:469,-99,-56,0,0,0.10212 -6143,5509:468,-98,-56,0,0,0.100837 -6144,5509:467,-97,-56,0,0,0.102857 -6145,5509:466,-96,-56,0,0,0.105252 -6146,5509:465,-95,-56,0,0,0.103886 -6147,5509:364,-94,-56,0,0,0.102271 -6148,5509:363,-93,-56,0,0,0.101547 -6149,5509:362,-92,-56,0,0,0.102205 -6150,5509:361,-91,-56,0,0,0.103953 -6151,5509:360,-90,-56,0,0,0.101988 -6152,5508:469,-89,-56,0,0,0.10165 -6153,5508:468,-88,-56,0,0,0.111485 -6154,5508:467,-87,-56,0,0,0.112887 -6155,5508:466,-86,-56,0,0,0.11032 -6156,5508:465,-85,-56,0,0,0.107301 -6157,5508:364,-84,-56,0,0,0.105912 -6158,5508:363,-83,-56,0,0,0.10814 -6159,5508:362,-82,-56,0,0,0.109606 -6160,5508:361,-81,-56,0,0,0.111893 -6161,5508:360,-80,-56,0,0,0.110299 -6162,5507:469,-79,-56,0,0,0.10027 -6163,5507:468,-78,-56,0,0,0.0920156 -6164,5507:467,-77,-56,0,0,0.0899004 -6165,5507:466,-76,-56,0,0,0.0922133 -6166,5507:465,-75,-56,0,0,0.0959255 -6167,5507:364,-74,-56,0,0,0.0987326 -6168,5507:363,-73,-56,0,0,0.108916 -6169,5507:362,-72,-56,0,0,0.104106 -6170,5507:361,-71,-56,0,0,0.105155 -6171,5507:360,-70,-56,0,0,0.10531 -6172,5506:469,-69,-56,0,0,0.10357 -6173,5506:468,-68,-56,0,0,0.0978492 -6174,5506:467,-67,-56,0,0,0.0966945 -6175,5506:466,-66,-56,0,0,0.0886891 -6176,5506:465,-65,-56,0,0,0.0808733 -6177,5506:364,-64,-56,0,0,0.0796146 -6178,5506:363,-63,-56,0,0,0.0793591 -6179,5506:362,-62,-56,0,0,0.0796071 -6180,5506:361,-61,-56,0,0,0.0796447 -6181,5506:360,-60,-56,0,0,0.0797653 -6182,5505:469,-59,-56,0,0,0.0799164 -6183,5505:468,-58,-56,0,0,0.080007 -6184,5505:467,-57,-56,0,0,0.0780996 -6185,5505:466,-56,-56,0,0,0.0784333 -6186,5505:465,-55,-56,0,0,0.0775981 -6187,5505:364,-54,-56,0,0,0.0763281 -6188,5505:363,-53,-56,0,0,0.0751059 -6189,5505:362,-52,-56,0,0,0.0751059 -6190,5505:361,-51,-56,0,0,0.0749988 -6191,5505:360,-50,-56,0,0,0.0749846 -6192,5504:469,-49,-56,0,0,0.0749775 -6193,5504:468,-48,-56,0,0,0.0749846 -6194,5504:467,-47,-56,0,0,0.0749916 -6195,5504:466,-46,-56,0,0,0.075006 -6196,5504:465,-45,-56,0,0,0.0749988 -6197,5504:364,-44,-56,0,0,0.0749775 -6198,5504:363,-43,-56,0,0,0.0749631 -6199,5504:362,-42,-56,0,0,0.074949 -6200,5504:361,-41,-56,0,0,0.0749275 -6201,5504:360,-40,-56,0,0,0.0749133 -6202,5503:469,-39,-56,0,0,0.0749062 -6203,5503:468,-38,-56,0,0,0.0749205 -6204,5503:467,-37,-56,0,0,0.0749346 -6205,5503:466,-36,-56,0,0,0.0749418 -6206,5503:465,-35,-56,0,0,0.0749703 -6207,5503:364,-34,-56,0,0,0.0749846 -6208,5503:363,-33,-56,0,0,0.0749846 -6209,5503:362,-32,-56,0,0,0.0749916 -6210,5503:361,-31,-56,0,0,0.0749988 -6211,5503:360,-30,-56,0,0,0.0749916 -6212,5502:469,-29,-56,0,0,0.0749916 -6213,5502:468,-28,-56,0,0,0.0749846 -6214,5502:467,-27,-56,0,0,0.0749846 -6215,5502:466,-26,-56,0,0,0.0749846 -6216,5502:465,-25,-56,0,0,0.0749846 -6217,5502:364,-24,-56,0,0,0.0749703 -6218,5502:363,-23,-56,0,0,0.0749631 -6219,5502:362,-22,-56,0,0,0.0749418 -6220,5502:361,-21,-56,0,0,0.0749275 -6221,5502:360,-20,-56,0,0,0.0749133 -6222,5501:469,-19,-56,0,0,0.074899 -6223,5501:468,-18,-56,0,0,0.0748777 -6224,5501:467,-17,-56,0,0,0.0748636 -6225,5501:466,-16,-56,0,0,0.074892 -6226,5501:465,-15,-56,0,0,0.0749275 -6227,5501:364,-14,-56,0,0,0.0749133 -6228,5501:363,-13,-56,0,0,0.0748849 -6229,5501:362,-12,-56,0,0,0.0748777 -6230,5501:361,-11,-56,0,0,0.0748705 -6231,5501:360,-10,-56,0,0,0.0748636 -6232,5500:469,-9,-56,0,0,0.0748705 -6233,5500:468,-8,-56,0,0,0.0748636 -6234,5500:467,-7,-56,0,0,0.0748564 -6235,5500:466,-6,-56,0,0,0.0748636 -6236,5500:465,-5,-56,0,0,0.0748636 -6237,5500:364,-4,-56,0,0,0.0748705 -6238,5500:363,-3,-56,0,0,0.0748705 -6239,5500:362,-2,-56,0,0,0.0748705 -6240,5500:361,-1,-56,0,0,0.0748636 -6241,3500:361,0,-56,0,0,0.0748777 -6242,3500:361,1,-56,0,0,0.0748849 -6243,3500:362,2,-56,0,0,0.0748849 -6244,3500:363,3,-56,0,0,0.0748777 -6245,3500:364,4,-56,0,0,0.0748705 -6246,3500:465,5,-56,0,0,0.0748849 -6247,3500:466,6,-56,0,0,0.074899 -6248,3500:467,7,-56,0,0,0.0749205 -6249,3500:468,8,-56,0,0,0.0749275 -6250,3500:469,9,-56,0,0,0.0749346 -6251,3501:360,10,-56,0,0,0.074949 -6252,3501:361,11,-56,0,0,0.0749418 -6253,3501:362,12,-56,0,0,0.074949 -6254,3501:363,13,-56,0,0,0.0749631 -6255,3501:364,14,-56,0,0,0.074949 -6256,3501:465,15,-56,0,0,0.0749205 -6257,3501:466,16,-56,0,0,0.0749062 -6258,3501:467,17,-56,0,0,0.0748849 -6259,3501:468,18,-56,0,0,0.0748636 -6260,3501:469,19,-56,0,0,0.0747996 -6261,3502:360,20,-56,0,0,0.0747425 -6262,3502:361,21,-56,0,0,0.0748208 -6263,3502:362,22,-56,0,0,0.0748777 -6264,3502:363,23,-56,0,0,0.0748777 -6265,3502:364,24,-56,0,0,0.0748564 -6266,3502:465,25,-56,0,0,0.0748564 -6267,3502:466,26,-56,0,0,0.0748564 -6268,3502:467,27,-56,0,0,0.0748849 -6269,3502:468,28,-56,0,0,0.075006 -6270,3502:469,29,-56,0,0,0.0753417 -6271,3503:360,30,-56,0,0,0.0753631 -6272,3503:361,31,-56,0,0,0.0751486 -6273,3503:362,32,-56,0,0,0.0751771 -6274,3503:363,33,-56,0,0,0.0751843 -6275,3503:364,34,-56,0,0,0.0751344 -6276,3503:465,35,-56,0,0,0.0749062 -6277,3503:466,36,-56,0,0,0.0748849 -6278,3503:467,37,-56,0,0,0.0748636 -6279,3503:468,38,-56,0,0,0.0748705 -6280,3503:469,39,-56,0,0,0.0748777 -6281,3504:360,40,-56,0,0,0.0748705 -6282,3504:361,41,-56,0,0,0.0748493 -6283,3504:362,42,-56,0,0,0.0748705 -6284,3504:363,43,-56,0,0,0.0749346 -6285,3504:364,44,-56,0,0,0.0750201 -6286,3504:465,45,-56,0,0,0.0754061 -6287,3504:466,46,-56,0,0,0.0751987 -6288,3504:467,47,-56,0,0,0.0748137 -6289,3504:468,48,-56,0,0,0.074828 -6290,3504:469,49,-56,0,0,0.0748349 -6291,3505:360,50,-56,0,0,0.0748421 -6292,3505:361,51,-56,0,0,0.0748564 -6293,3505:362,52,-56,0,0,0.0748636 -6294,3505:363,53,-56,0,0,0.0748636 -6295,3505:364,54,-56,0,0,0.0748564 -6296,3505:465,55,-56,0,0,0.0752844 -6297,3505:466,56,-56,0,0,0.0750773 -6298,3505:467,57,-56,0,0,0.074949 -6299,3505:468,58,-56,0,0,0.0749275 -6300,3505:469,59,-56,0,0,0.0749418 -6301,3506:360,60,-56,0,0,0.0749562 -6302,3506:361,61,-56,0,0,0.0749562 -6303,3506:362,62,-56,0,0,0.0750843 -6304,3506:363,63,-56,0,0,0.0749846 -6305,3506:364,64,-56,0,0,0.0750131 -6306,3506:465,65,-56,0,0,0.0751344 -6307,3506:466,66,-56,0,0,0.0750273 -6308,3506:467,67,-56,0,0,0.0750558 -6309,3506:468,68,-56,0,0,0.0758586 -6310,3506:469,69,-56,0,0,0.0779591 -6311,3507:360,70,-56,0,0,0.0765967 -6312,3507:361,71,-56,0,0,0.075974 -6313,3507:362,72,-56,0,0,0.0764296 -6314,3507:364,74,-56,0,0,0.0756285 -6315,3507:465,75,-56,0,0,0.0759452 -6316,3507:466,76,-56,0,0,0.0761256 -6317,3507:467,77,-56,0,0,0.0755926 -6318,3507:468,78,-56,0,0,0.0754921 -6319,3507:469,79,-56,0,0,0.0755207 -6320,3508:360,80,-56,0,0,0.07565 -6321,3508:361,81,-56,0,0,0.0754849 -6322,3508:362,82,-56,0,0,0.0757795 -6323,3508:363,83,-56,0,0,0.0766839 -6324,3508:364,84,-56,0,0,0.0765166 -6325,3508:465,85,-56,0,0,0.076039 -6326,3508:466,86,-56,0,0,0.0747852 -6327,3508:467,87,-56,0,0,0.074892 -6328,3508:468,88,-56,0,0,0.0749062 -6329,3508:469,89,-56,0,0,0.074899 -6330,3509:360,90,-56,0,0,0.0749631 -6331,3509:361,91,-56,0,0,0.0759452 -6332,3509:362,92,-56,0,0,0.0774365 -6333,3509:363,93,-56,0,0,0.0774658 -6334,3509:364,94,-56,0,0,0.0768877 -6335,3509:465,95,-56,0,0,0.0751059 -6336,3509:466,96,-56,0,0,0.0749846 -6337,3509:467,97,-56,0,0,0.0750201 -6338,3509:468,98,-56,0,0,0.0750345 -6339,3509:469,99,-56,0,0,0.0750273 -6340,3510:360,100,-56,0,0,0.0750131 -6341,3510:361,101,-56,0,0,0.075006 -6342,3510:362,102,-56,0,0,0.075006 -6343,3510:363,103,-56,0,0,0.0749988 -6344,3510:364,104,-56,0,0,0.0749916 -6345,3510:465,105,-56,0,0,0.0749988 -6346,3510:466,106,-56,0,0,0.0749988 -6347,3510:467,107,-56,0,0,0.0749846 -6348,3510:468,108,-56,0,0,0.074949 -6349,3510:469,109,-56,0,0,0.0750558 -6350,3511:360,110,-56,0,0,0.0753272 -6351,3511:361,111,-56,0,0,0.0764659 -6352,3511:362,112,-56,0,0,0.0786116 -6353,3511:363,113,-56,0,0,0.0788128 -6354,3511:364,114,-56,0,0,0.0751272 -6355,3511:465,115,-56,0,0,0.0783071 -6356,3511:466,116,-56,0,0,0.0798182 -6357,3511:467,117,-56,0,0,0.0818717 -6358,3511:468,118,-56,0,0,0.0834847 -6359,3511:469,119,-56,0,0,0.083532 -6360,3512:360,120,-56,0,0,0.0847592 -6361,3512:361,121,-56,0,0,0.0846637 -6362,3512:362,122,-56,0,0,0.0854151 -6363,3512:363,123,-56,0,0,0.0881755 -6364,3512:364,124,-56,0,0,0.0888054 -6365,3512:465,125,-56,0,0,0.0896821 -6366,3512:466,126,-56,0,0,0.0895731 -6367,3512:467,127,-56,0,0,0.0901193 -6368,3512:468,128,-56,0,0,0.0904316 -6369,3512:469,129,-56,0,0,0.0912717 -6370,3513:360,130,-56,0,0,0.0931639 -6371,3513:361,131,-56,0,0,0.0930771 -6372,3513:362,132,-56,0,0,0.0912886 -6373,3513:363,133,-56,0,0,0.0934679 -6374,3513:364,134,-56,0,0,0.0952946 -6375,3513:465,135,-56,0,0,0.0940092 -6376,3513:466,136,-56,0,0,0.0893724 -6377,3513:467,137,-56,0,0,0.0870748 -6378,3513:468,138,-56,0,0,0.0881921 -6379,3513:469,139,-56,0,0,0.0833749 -6380,3514:360,140,-56,0,0,0.0811335 -6381,3514:361,141,-56,0,0,0.0838944 -6382,3514:362,142,-56,0,0,0.0841632 -6383,3514:363,143,-56,0,0,0.0868791 -6384,3514:364,144,-56,0,0,0.0855999 -6385,3514:465,145,-56,0,0,0.0886475 -6386,3514:466,146,-56,0,0,0.084021 -6387,3514:467,147,-56,0,0,0.0797653 -6388,3514:468,148,-56,0,0,0.0806217 -6389,3514:469,149,-56,0,0,0.0767638 -6390,3515:360,150,-56,0,0,0.0758225 -6391,3515:361,151,-56,0,0,0.0756932 -6392,3515:362,152,-56,0,0,0.0767494 -6393,3515:363,153,-56,0,0,0.07614 -6394,3515:364,154,-56,0,0,0.0752916 -6395,3515:465,155,-56,0,0,0.0751272 -6396,3515:466,156,-56,0,0,0.0751128 -6397,3515:467,157,-56,0,0,0.0750987 -6398,3515:468,158,-56,0,0,0.0750915 -6399,3515:469,159,-56,0,0,0.0750702 -6400,3516:360,160,-56,0,0,0.0750702 -6401,3516:361,161,-56,0,0,0.0750702 -6402,3516:362,162,-56,0,0,0.0750558 -6403,3516:363,163,-56,0,0,0.075063 -6404,3516:364,164,-56,0,0,0.0750773 -6405,3516:465,165,-56,0,0,0.0751272 -6406,3516:466,166,-56,0,0,0.0755639 -6407,3516:467,167,-56,0,0,0.0813636 -6408,3516:468,168,-56,0,0,0.086448 -6409,3516:469,169,-56,0,0,0.0851905 -6410,3517:360,170,-56,0,0,0.0861402 -6411,3517:361,171,-56,0,0,0.0845522 -6412,3517:362,172,-56,0,0,0.0836263 -6413,3517:363,173,-56,0,0,0.0799012 -6414,3517:364,174,-56,0,0,0.0816328 -6415,3517:465,175,-56,0,0,0.102243 -6416,3517:466,176,-56,0,0,0.11119 -6417,3517:467,177,-56,0,0,0.109016 -6418,3517:468,178,-56,0,0,0.107065 -6419,3517:469,179,-56,0,0,0.110795 -6420,3518:360,180,-56,0,0,0.110138 -6421,5518:350,-180,-55,0,0,0.109736 -6422,5517:459,-179,-55,0,0,0.104942 -6423,5517:458,-178,-55,0,0,0.102092 -6424,5517:457,-177,-55,0,0,0.105339 -6425,5517:456,-176,-55,0,0,0.106145 -6426,5517:455,-175,-55,0,0,0.103446 -6427,5517:354,-174,-55,0,0,0.100967 -6428,5517:353,-173,-55,0,0,0.0978583 -6429,5517:352,-172,-55,0,0,0.0953124 -6430,5517:351,-171,-55,0,0,0.0923426 -6431,5517:350,-170,-55,0,0,0.0912205 -6432,5516:459,-169,-55,0,0,0.0885313 -6433,5516:458,-168,-55,0,0,0.0874349 -6434,5516:457,-167,-55,0,0,0.0874759 -6435,5516:456,-166,-55,0,0,0.0876154 -6436,5516:455,-165,-55,0,0,0.0873693 -6437,5516:354,-164,-55,0,0,0.0872629 -6438,5516:353,-163,-55,0,0,0.0872956 -6439,5516:352,-162,-55,0,0,0.086586 -6440,5516:351,-161,-55,0,0,0.0871321 -6441,5516:350,-160,-55,0,0,0.0877222 -6442,5515:459,-159,-55,0,0,0.087181 -6443,5515:458,-158,-55,0,0,0.0880847 -6444,5515:457,-157,-55,0,0,0.0885397 -6445,5515:456,-156,-55,0,0,0.0877551 -6446,5515:455,-155,-55,0,0,0.0870177 -6447,5515:354,-154,-55,0,0,0.0869851 -6448,5515:353,-153,-55,0,0,0.0868547 -6449,5515:352,-152,-55,0,0,0.0864643 -6450,5515:351,-151,-55,0,0,0.0901025 -6451,5515:350,-150,-55,0,0,0.090626 -6452,5514:459,-149,-55,0,0,0.0964972 -6453,5514:458,-148,-55,0,0,0.0951266 -6454,5514:457,-147,-55,0,0,0.0955961 -6455,5514:456,-146,-55,0,0,0.0920672 -6456,5514:455,-145,-55,0,0,0.0939392 -6457,5514:354,-144,-55,0,0,0.096865 -6458,5514:353,-143,-55,0,0,0.0978946 -6459,5514:352,-142,-55,0,0,0.09784 -6460,5514:351,-141,-55,0,0,0.0980218 -6461,5514:350,-140,-55,0,0,0.101135 -6462,5513:459,-139,-55,0,0,0.103466 -6463,5513:458,-138,-55,0,0,0.0984495 -6464,5513:457,-137,-55,0,0,0.095277 -6465,5513:456,-136,-55,0,0,0.0966854 -6466,5513:455,-135,-55,0,0,0.103637 -6467,5513:354,-134,-55,0,0,0.10165 -6468,5513:353,-133,-55,0,0,0.100149 -6469,5513:352,-132,-55,0,0,0.103095 -6470,5513:351,-131,-55,0,0,0.105068 -6471,5513:350,-130,-55,0,0,0.103342 -6472,5512:459,-129,-55,0,0,0.103676 -6473,5512:458,-128,-55,0,0,0.104682 -6474,5512:457,-127,-55,0,0,0.105513 -6475,5512:456,-126,-55,0,0,0.105649 -6476,5512:455,-125,-55,0,0,0.10449 -6477,5512:354,-124,-55,0,0,0.103867 -6478,5512:353,-123,-55,0,0,0.102687 -6479,5512:352,-122,-55,0,0,0.102573 -6480,5512:351,-121,-55,0,0,0.104653 -6481,5512:350,-120,-55,0,0,0.105834 -6482,5511:459,-119,-55,0,0,0.106653 -6483,5511:458,-118,-55,0,0,0.108637 -6484,5511:457,-117,-55,0,0,0.111689 -6485,5511:456,-116,-55,0,0,0.112753 -6486,5511:455,-115,-55,0,0,0.112209 -6487,5511:354,-114,-55,0,0,0.112189 -6488,5511:353,-113,-55,0,0,0.114752 -6489,5511:352,-112,-55,0,0,0.113072 -6490,5511:351,-111,-55,0,0,0.113175 -6491,5511:350,-110,-55,0,0,0.112928 -6492,5510:459,-109,-55,0,0,0.111607 -6493,5510:458,-108,-55,0,0,0.114252 -6494,5510:457,-107,-55,0,0,0.113661 -6495,5510:456,-106,-55,0,0,0.109816 -6496,5510:455,-105,-55,0,0,0.108002 -6497,5510:354,-104,-55,0,0,0.106928 -6498,5510:353,-103,-55,0,0,0.106175 -6499,5510:352,-102,-55,0,0,0.107498 -6500,5510:351,-101,-55,0,0,0.110249 -6501,5510:350,-100,-55,0,0,0.109245 -6502,5509:459,-99,-55,0,0,0.105902 -6503,5509:458,-98,-55,0,0,0.106009 -6504,5509:457,-97,-55,0,0,0.112825 -6505,5509:456,-96,-55,0,0,0.111597 -6506,5509:455,-95,-55,0,0,0.108081 -6507,5509:354,-94,-55,0,0,0.106741 -6508,5509:353,-93,-55,0,0,0.104875 -6509,5509:352,-92,-55,0,0,0.1056 -6510,5509:351,-91,-55,0,0,0.111078 -6511,5509:350,-90,-55,0,0,0.109335 -6512,5508:459,-89,-55,0,0,0.107666 -6513,5508:458,-88,-55,0,0,0.111872 -6514,5508:457,-87,-55,0,0,0.112353 -6515,5508:456,-86,-55,0,0,0.112969 -6516,5508:455,-85,-55,0,0,0.113392 -6517,5508:354,-84,-55,0,0,0.112804 -6518,5508:353,-83,-55,0,0,0.111709 -6519,5508:352,-82,-55,0,0,0.110179 -6520,5508:351,-81,-55,0,0,0.110815 -6521,5508:350,-80,-55,0,0,0.112281 -6522,5507:459,-79,-55,0,0,0.11419 -6523,5507:458,-78,-55,0,0,0.115024 -6524,5507:457,-77,-55,0,0,0.114231 -6525,5507:456,-76,-55,0,0,0.109045 -6526,5507:455,-75,-55,0,0,0.100242 -6527,5507:354,-74,-55,0,0,0.101669 -6528,5507:353,-73,-55,0,0,0.111505 -6529,5507:352,-72,-55,0,0,0.108856 -6530,5507:351,-71,-55,0,0,0.105824 -6531,5507:350,-70,-55,0,0,0.105533 -6532,5506:459,-69,-55,0,0,0.106898 -6533,5506:458,-68,-55,0,0,0.105387 -6534,5506:457,-67,-55,0,0,0.0937209 -6535,5506:456,-66,-55,0,0,0.0846238 -6536,5506:455,-65,-55,0,0,0.0853189 -6537,5506:354,-64,-55,0,0,0.0848548 -6538,5506:353,-63,-55,0,0,0.080774 -6539,5506:352,-62,-55,0,0,0.0827799 -6540,5506:351,-61,-55,0,0,0.0832963 -6541,5506:350,-60,-55,0,0,0.0844091 -6542,5505:459,-59,-55,0,0,0.0805608 -6543,5505:458,-58,-55,0,0,0.0797805 -6544,5505:457,-57,-55,0,0,0.0785299 -6545,5505:456,-56,-55,0,0,0.0779591 -6546,5505:455,-55,-55,0,0,0.0773044 -6547,5505:354,-54,-55,0,0,0.0759595 -6548,5505:353,-53,-55,0,0,0.0750201 -6549,5505:352,-52,-55,0,0,0.0749988 -6550,5505:351,-51,-55,0,0,0.0749916 -6551,5505:350,-50,-55,0,0,0.0750131 -6552,5504:459,-49,-55,0,0,0.0750201 -6553,5504:458,-48,-55,0,0,0.0750201 -6554,5504:457,-47,-55,0,0,0.0750201 -6555,5504:456,-46,-55,0,0,0.075006 -6556,5504:455,-45,-55,0,0,0.0749846 -6557,5504:354,-44,-55,0,0,0.0749846 -6558,5504:353,-43,-55,0,0,0.0749703 -6559,5504:352,-42,-55,0,0,0.0749562 -6560,5504:351,-41,-55,0,0,0.0749418 -6561,5504:350,-40,-55,0,0,0.0749275 -6562,5503:459,-39,-55,0,0,0.0749205 -6563,5503:458,-38,-55,0,0,0.0749205 -6564,5503:457,-37,-55,0,0,0.0749133 -6565,5503:456,-36,-55,0,0,0.0749346 -6566,5503:455,-35,-55,0,0,0.074949 -6567,5503:354,-34,-55,0,0,0.0749631 -6568,5503:353,-33,-55,0,0,0.0749846 -6569,5503:352,-32,-55,0,0,0.0749916 -6570,5503:351,-31,-55,0,0,0.0749916 -6571,5503:350,-30,-55,0,0,0.0749916 -6572,5502:459,-29,-55,0,0,0.0749916 -6573,5502:458,-28,-55,0,0,0.0749916 -6574,5502:457,-27,-55,0,0,0.0749916 -6575,5502:456,-26,-55,0,0,0.0749916 -6576,5502:455,-25,-55,0,0,0.0749846 -6577,5502:354,-24,-55,0,0,0.0749775 -6578,5502:353,-23,-55,0,0,0.0749562 -6579,5502:352,-22,-55,0,0,0.0749418 -6580,5502:351,-21,-55,0,0,0.0749275 -6581,5502:350,-20,-55,0,0,0.0749133 -6582,5501:459,-19,-55,0,0,0.0749062 -6583,5501:458,-18,-55,0,0,0.074892 -6584,5501:457,-17,-55,0,0,0.074899 -6585,5501:456,-16,-55,0,0,0.0749275 -6586,5501:455,-15,-55,0,0,0.0749988 -6587,5501:354,-14,-55,0,0,0.075006 -6588,5501:353,-13,-55,0,0,0.074949 -6589,5501:352,-12,-55,0,0,0.0749275 -6590,5501:351,-11,-55,0,0,0.0749062 -6591,5501:350,-10,-55,0,0,0.074892 -6592,5500:459,-9,-55,0,0,0.0749062 -6593,5500:458,-8,-55,0,0,0.074892 -6594,5500:457,-7,-55,0,0,0.0748777 -6595,5500:456,-6,-55,0,0,0.0748705 -6596,5500:455,-5,-55,0,0,0.0748849 -6597,5500:354,-4,-55,0,0,0.074892 -6598,5500:353,-3,-55,0,0,0.074899 -6599,5500:352,-2,-55,0,0,0.074892 -6600,5500:351,-1,-55,0,0,0.0748636 -6601,3500:351,0,-55,0,0,0.0748777 -6602,3500:351,1,-55,0,0,0.0748705 -6603,3500:352,2,-55,0,0,0.0748564 -6604,3500:353,3,-55,0,0,0.0748493 -6605,3500:354,4,-55,0,0,0.0748349 -6606,3500:455,5,-55,0,0,0.0748421 -6607,3500:456,6,-55,0,0,0.0748564 -6608,3500:457,7,-55,0,0,0.0748777 -6609,3500:458,8,-55,0,0,0.074899 -6610,3500:459,9,-55,0,0,0.0749133 -6611,3501:350,10,-55,0,0,0.0749346 -6612,3501:351,11,-55,0,0,0.074949 -6613,3501:352,12,-55,0,0,0.0749275 -6614,3501:353,13,-55,0,0,0.0749346 -6615,3501:354,14,-55,0,0,0.0749418 -6616,3501:455,15,-55,0,0,0.074949 -6617,3501:456,16,-55,0,0,0.0749346 -6618,3501:457,17,-55,0,0,0.0749205 -6619,3501:458,18,-55,0,0,0.0749133 -6620,3501:459,19,-55,0,0,0.0748636 -6621,3502:350,20,-55,0,0,0.0748493 -6622,3502:351,21,-55,0,0,0.0748137 -6623,3502:352,22,-55,0,0,0.0747852 -6624,3502:353,23,-55,0,0,0.0748564 -6625,3502:354,24,-55,0,0,0.074949 -6626,3502:455,25,-55,0,0,0.0749631 -6627,3502:456,26,-55,0,0,0.0749988 -6628,3502:457,27,-55,0,0,0.0750201 -6629,3502:458,28,-55,0,0,0.0751486 -6630,3502:459,29,-55,0,0,0.075313 -6631,3503:350,30,-55,0,0,0.0753847 -6632,3503:351,31,-55,0,0,0.0754634 -6633,3503:352,32,-55,0,0,0.0753847 -6634,3503:353,33,-55,0,0,0.0754849 -6635,3503:354,34,-55,0,0,0.0759019 -6636,3503:455,35,-55,0,0,0.0753775 -6637,3503:456,36,-55,0,0,0.0751486 -6638,3503:457,37,-55,0,0,0.0751272 -6639,3503:458,38,-55,0,0,0.0749703 -6640,3503:459,39,-55,0,0,0.0748636 -6641,3504:350,40,-55,0,0,0.0748564 -6642,3504:351,41,-55,0,0,0.0748564 -6643,3504:352,42,-55,0,0,0.0748564 -6644,3504:353,43,-55,0,0,0.0748777 -6645,3504:354,44,-55,0,0,0.0749418 -6646,3504:455,45,-55,0,0,0.0749775 -6647,3504:456,46,-55,0,0,0.0750843 -6648,3504:457,47,-55,0,0,0.0754921 -6649,3504:458,48,-55,0,0,0.0755711 -6650,3504:459,49,-55,0,0,0.0755639 -6651,3505:350,50,-55,0,0,0.0754061 -6652,3505:351,51,-55,0,0,0.0751843 -6653,3505:352,52,-55,0,0,0.0751128 -6654,3505:353,53,-55,0,0,0.0750702 -6655,3505:354,54,-55,0,0,0.0749062 -6656,3505:455,55,-55,0,0,0.074899 -6657,3505:456,56,-55,0,0,0.0749205 -6658,3505:457,57,-55,0,0,0.0749205 -6659,3505:458,58,-55,0,0,0.0749346 -6660,3505:459,59,-55,0,0,0.0749418 -6661,3506:350,60,-55,0,0,0.0749631 -6662,3506:351,61,-55,0,0,0.0750131 -6663,3506:352,62,-55,0,0,0.0753417 -6664,3506:353,63,-55,0,0,0.0750558 -6665,3506:354,64,-55,0,0,0.075837 -6666,3506:455,65,-55,0,0,0.0768806 -6667,3506:456,66,-55,0,0,0.0773118 -6668,3506:457,67,-55,0,0,0.0758298 -6669,3506:458,68,-55,0,0,0.0754203 -6670,3506:459,69,-55,0,0,0.0776644 -6671,3507:350,70,-55,0,0,0.0775539 -6672,3507:351,71,-55,0,0,0.0765313 -6673,3507:352,72,-55,0,0,0.0760317 -6674,3507:354,74,-55,0,0,0.0762267 -6675,3507:455,75,-55,0,0,0.0755352 -6676,3507:456,76,-55,0,0,0.0755352 -6677,3507:457,77,-55,0,0,0.075528 -6678,3507:458,78,-55,0,0,0.0758874 -6679,3507:459,79,-55,0,0,0.0761618 -6680,3508:350,80,-55,0,0,0.0764006 -6681,3508:351,81,-55,0,0,0.0766328 -6682,3508:352,82,-55,0,0,0.0764513 -6683,3508:353,83,-55,0,0,0.0763427 -6684,3508:354,84,-55,0,0,0.076742 -6685,3508:455,85,-55,0,0,0.0764949 -6686,3508:456,86,-55,0,0,0.0757075 -6687,3508:457,87,-55,0,0,0.0749562 -6688,3508:458,88,-55,0,0,0.0749062 -6689,3508:459,89,-55,0,0,0.074949 -6690,3509:350,90,-55,0,0,0.075006 -6691,3509:351,91,-55,0,0,0.0751272 -6692,3509:352,92,-55,0,0,0.0764442 -6693,3509:353,93,-55,0,0,0.0783812 -6694,3509:354,94,-55,0,0,0.07827 -6695,3509:455,95,-55,0,0,0.0776127 -6696,3509:456,96,-55,0,0,0.0777896 -6697,3509:457,97,-55,0,0,0.0779001 -6698,3509:458,98,-55,0,0,0.0754203 -6699,3509:459,99,-55,0,0,0.0754203 -6700,3510:350,100,-55,0,0,0.076742 -6701,3510:351,101,-55,0,0,0.0782329 -6702,3510:352,102,-55,0,0,0.0762558 -6703,3510:353,103,-55,0,0,0.0763208 -6704,3510:354,104,-55,0,0,0.0751344 -6705,3510:455,105,-55,0,0,0.0750345 -6706,3510:456,106,-55,0,0,0.0750416 -6707,3510:457,107,-55,0,0,0.0750345 -6708,3510:458,108,-55,0,0,0.074949 -6709,3510:459,109,-55,0,0,0.0749205 -6710,3511:350,110,-55,0,0,0.0751987 -6711,3511:351,111,-55,0,0,0.0777601 -6712,3511:352,112,-55,0,0,0.0801583 -6713,3511:353,113,-55,0,0,0.083116 -6714,3511:354,114,-55,0,0,0.0841632 -6715,3511:455,115,-55,0,0,0.0853989 -6716,3511:456,116,-55,0,0,0.0831786 -6717,3511:457,117,-55,0,0,0.0840843 -6718,3511:458,118,-55,0,0,0.0857045 -6719,3511:459,119,-55,0,0,0.0854552 -6720,3512:350,120,-55,0,0,0.0876811 -6721,3512:351,121,-55,0,0,0.0888552 -6722,3512:352,122,-55,0,0,0.0906854 -6723,3512:353,123,-55,0,0,0.0906769 -6724,3512:354,124,-55,0,0,0.0915105 -6725,3512:455,125,-55,0,0,0.0930943 -6726,3512:456,126,-55,0,0,0.0932071 -6727,3512:457,127,-55,0,0,0.0921189 -6728,3512:458,128,-55,0,0,0.0925061 -6729,3512:459,129,-55,0,0,0.095623 -6730,3513:350,130,-55,0,0,0.0984403 -6731,3513:351,131,-55,0,0,0.0987692 -6732,3513:352,132,-55,0,0,0.0967123 -6733,3513:353,133,-55,0,0,0.0954452 -6734,3513:354,134,-55,0,0,0.0952416 -6735,3513:455,135,-55,0,0,0.0939131 -6736,3513:456,136,-55,0,0,0.093747 -6737,3513:457,137,-55,0,0,0.0933288 -6738,3513:458,138,-55,0,0,0.0923941 -6739,3513:459,139,-55,0,0,0.0906177 -6740,3514:350,140,-55,0,0,0.0906769 -6741,3514:351,141,-55,0,0,0.0920243 -6742,3514:352,142,-55,0,0,0.0920072 -6743,3514:353,143,-55,0,0,0.0925751 -6744,3514:354,144,-55,0,0,0.0928259 -6745,3514:455,145,-55,0,0,0.0909568 -6746,3514:456,146,-55,0,0,0.0885895 -6747,3514:457,147,-55,0,0,0.0897241 -6748,3514:458,148,-55,0,0,0.0851585 -6749,3514:459,149,-55,0,0,0.0798862 -6750,3515:350,150,-55,0,0,0.0769825 -6751,3515:351,151,-55,0,0,0.0768003 -6752,3515:352,152,-55,0,0,0.079705 -6753,3515:353,153,-55,0,0,0.0759019 -6754,3515:354,154,-55,0,0,0.0752559 -6755,3515:455,155,-55,0,0,0.0753489 -6756,3515:456,156,-55,0,0,0.0751701 -6757,3515:457,157,-55,0,0,0.0752129 -6758,3515:458,158,-55,0,0,0.0755065 -6759,3515:459,159,-55,0,0,0.075442 -6760,3516:350,160,-55,0,0,0.07527 -6761,3516:351,161,-55,0,0,0.0752343 -6762,3516:352,162,-55,0,0,0.0754849 -6763,3516:353,163,-55,0,0,0.0754849 -6764,3516:354,164,-55,0,0,0.0775762 -6765,3516:455,165,-55,0,0,0.0775833 -6766,3516:456,166,-55,0,0,0.0855597 -6767,3516:457,167,-55,0,0,0.0952062 -6768,3516:458,168,-55,0,0,0.0955696 -6769,3516:459,169,-55,0,0,0.0929039 -6770,3517:350,170,-55,0,0,0.0924546 -6771,3517:351,171,-55,0,0,0.0995124 -6772,3517:352,172,-55,0,0,0.109125 -6773,3517:353,173,-55,0,0,0.116031 -6774,3517:354,174,-55,0,0,0.120303 -6775,3517:455,175,-55,0,0,0.118156 -6776,3517:456,176,-55,0,0,0.111811 -6777,3517:457,177,-55,0,0,0.11034 -6778,3517:458,178,-55,0,0,0.111658 -6779,3517:459,179,-55,0,0,0.113899 -6780,3518:350,180,-55,0,0,0.109736 -6781,5518:140,-180,-54,0,0,0.117249 -6782,5517:249,-179,-54,0,0,0.113186 -6783,5517:248,-178,-54,0,0,0.111312 -6784,5517:247,-177,-54,0,0,0.109245 -6785,5517:246,-176,-54,0,0,0.105175 -6786,5517:245,-175,-54,0,0,0.100316 -6787,5517:144,-174,-54,0,0,0.0984495 -6788,5517:143,-173,-54,0,0,0.0981216 -6789,5517:142,-172,-54,0,0,0.096865 -6790,5517:141,-171,-54,0,0,0.0954542 -6791,5517:140,-170,-54,0,0,0.0936511 -6792,5516:249,-169,-54,0,0,0.0906599 -6793,5516:248,-168,-54,0,0,0.0898838 -6794,5516:247,-167,-54,0,0,0.0899762 -6795,5516:246,-166,-54,0,0,0.0900267 -6796,5516:245,-165,-54,0,0,0.0900856 -6797,5516:144,-164,-54,0,0,0.0909399 -6798,5516:143,-163,-54,0,0,0.0918356 -6799,5516:142,-162,-54,0,0,0.0944564 -6800,5516:141,-161,-54,0,0,0.0980581 -6801,5516:140,-160,-54,0,0,0.0920759 -6802,5515:249,-159,-54,0,0,0.0899931 -6803,5515:248,-158,-54,0,0,0.0904484 -6804,5515:247,-157,-54,0,0,0.0914422 -6805,5515:246,-156,-54,0,0,0.0888136 -6806,5515:245,-155,-54,0,0,0.0895396 -6807,5515:144,-154,-54,0,0,0.0884817 -6808,5515:143,-153,-54,0,0,0.0875743 -6809,5515:142,-152,-54,0,0,0.0872219 -6810,5515:141,-151,-54,0,0,0.0939742 -6811,5515:140,-150,-54,0,0,0.0975595 -6812,5514:249,-149,-54,0,0,0.0974238 -6813,5514:248,-148,-54,0,0,0.0981216 -6814,5514:247,-147,-54,0,0,0.0985773 -6815,5514:246,-146,-54,0,0,0.104211 -6816,5514:245,-145,-54,0,0,0.106184 -6817,5514:144,-144,-54,0,0,0.102782 -6818,5514:143,-143,-54,0,0,0.105727 -6819,5514:142,-142,-54,0,0,0.122362 -6820,5514:141,-141,-54,0,0,0.124005 -6821,5514:140,-140,-54,0,0,0.108022 -6822,5513:249,-139,-54,0,0,0.101472 -6823,5513:248,-138,-54,0,0,0.101481 -6824,5513:247,-137,-54,0,0,0.104451 -6825,5513:246,-136,-54,0,0,0.108121 -6826,5513:245,-135,-54,0,0,0.109315 -6827,5513:144,-134,-54,0,0,0.109125 -6828,5513:143,-133,-54,0,0,0.102516 -6829,5513:142,-132,-54,0,0,0.103085 -6830,5513:141,-131,-54,0,0,0.107163 -6831,5513:140,-130,-54,0,0,0.108597 -6832,5512:249,-129,-54,0,0,0.105542 -6833,5512:248,-128,-54,0,0,0.103943 -6834,5512:247,-127,-54,0,0,0.103848 -6835,5512:246,-126,-54,0,0,0.104663 -6836,5512:245,-125,-54,0,0,0.105436 -6837,5512:144,-124,-54,0,0,0.10682 -6838,5512:143,-123,-54,0,0,0.107597 -6839,5512:142,-122,-54,0,0,0.108786 -6840,5512:141,-121,-54,0,0,0.110845 -6841,5512:140,-120,-54,0,0,0.113216 -6842,5511:249,-119,-54,0,0,0.112507 -6843,5511:248,-118,-54,0,0,0.113743 -6844,5511:247,-117,-54,0,0,0.118595 -6845,5511:246,-116,-54,0,0,0.118832 -6846,5511:245,-115,-54,0,0,0.118295 -6847,5511:144,-114,-54,0,0,0.116633 -6848,5511:143,-113,-54,0,0,0.115254 -6849,5511:142,-112,-54,0,0,0.112435 -6850,5511:141,-111,-54,0,0,0.113 -6851,5511:140,-110,-54,0,0,0.112589 -6852,5510:249,-109,-54,0,0,0.113568 -6853,5510:248,-108,-54,0,0,0.116432 -6854,5510:247,-107,-54,0,0,0.111995 -6855,5510:246,-106,-54,0,0,0.109666 -6856,5510:245,-105,-54,0,0,0.109315 -6857,5510:144,-104,-54,0,0,0.108986 -6858,5510:143,-103,-54,0,0,0.111312 -6859,5510:142,-102,-54,0,0,0.113505 -6860,5510:141,-101,-54,0,0,0.113247 -6861,5510:140,-100,-54,0,0,0.113764 -6862,5509:249,-99,-54,0,0,0.114543 -6863,5509:248,-98,-54,0,0,0.114564 -6864,5509:247,-97,-54,0,0,0.11639 -6865,5509:246,-96,-54,0,0,0.117089 -6866,5509:245,-95,-54,0,0,0.114877 -6867,5509:144,-94,-54,0,0,0.111312 -6868,5509:143,-93,-54,0,0,0.108816 -6869,5509:142,-92,-54,0,0,0.113186 -6870,5509:141,-91,-54,0,0,0.114034 -7192,5512:239,-129,-53,0,0,0.10679 -6871,5509:140,-90,-54,0,0,0.111913 -6872,5508:249,-89,-54,0,0,0.109135 -6873,5508:248,-88,-54,0,0,0.108269 -6874,5508:247,-87,-54,0,0,0.11034 -6875,5508:246,-86,-54,0,0,0.11392 -6876,5508:245,-85,-54,0,0,0.114961 -6877,5508:144,-84,-54,0,0,0.114242 -6878,5508:143,-83,-54,0,0,0.112691 -6879,5508:142,-82,-54,0,0,0.112804 -6880,5508:141,-81,-54,0,0,0.115832 -6881,5508:140,-80,-54,0,0,0.119684 -6882,5507:249,-79,-54,0,0,0.118424 -6883,5507:248,-78,-54,0,0,0.117111 -6884,5507:247,-77,-54,0,0,0.117292 -6885,5507:246,-76,-54,0,0,0.116581 -6886,5507:245,-75,-54,0,0,0.115705 -6887,5507:144,-74,-54,0,0,0.115516 -6888,5507:143,-73,-54,0,0,0.116053 -6889,5507:142,-72,-54,0,0,0.117771 -6890,5507:141,-71,-54,0,0,0.11302 -6891,5507:140,-70,-54,0,0,0.110491 -6892,5506:249,-69,-54,0,0,0.109576 -6893,5506:248,-68,-54,0,0,0.105513 -6894,5506:247,-67,-54,0,0,0.0905415 -6895,5506:246,-66,-54,0,0,0.0934331 -6896,5506:245,-65,-54,0,0,0.0970901 -6897,5506:144,-64,-54,0,0,0.0927998 -6898,5506:143,-63,-54,0,0,0.0821812 -6899,5506:142,-62,-54,0,0,0.0818951 -6900,5506:141,-61,-54,0,0,0.0834377 -6901,5506:140,-60,-54,0,0,0.082772 -6902,5505:249,-59,-54,0,0,0.0818642 -6903,5505:248,-58,-54,0,0,0.0808733 -6904,5505:247,-57,-54,0,0,0.0792165 -6905,5505:246,-56,-54,0,0,0.0784852 -6906,5505:245,-55,-54,0,0,0.0778042 -6907,5505:144,-54,-54,0,0,0.0774439 -6908,5505:143,-53,-54,0,0,0.076895 -6909,5505:142,-52,-54,0,0,0.0757147 -6910,5505:141,-51,-54,0,0,0.0752487 -6911,5505:140,-50,-54,0,0,0.0757722 -6912,5504:249,-49,-54,0,0,0.0751416 -6913,5504:248,-48,-54,0,0,0.0750201 -6914,5504:247,-47,-54,0,0,0.0749988 -6915,5504:246,-46,-54,0,0,0.0750131 -6916,5504:245,-45,-54,0,0,0.0749988 -6917,5504:144,-44,-54,0,0,0.0749775 -6918,5504:143,-43,-54,0,0,0.0749846 -6919,5504:142,-42,-54,0,0,0.0749988 -6920,5504:141,-41,-54,0,0,0.0749775 -6921,5504:140,-40,-54,0,0,0.0749703 -6922,5503:249,-39,-54,0,0,0.0749631 -6923,5503:248,-38,-54,0,0,0.0749562 -6924,5503:247,-37,-54,0,0,0.0749562 -6925,5503:246,-36,-54,0,0,0.0749631 -6926,5503:245,-35,-54,0,0,0.0749631 -6927,5503:144,-34,-54,0,0,0.0749631 -6928,5503:143,-33,-54,0,0,0.0749775 -6929,5503:142,-32,-54,0,0,0.0749988 -6930,5503:141,-31,-54,0,0,0.0749916 -6931,5503:140,-30,-54,0,0,0.0749846 -6932,5502:249,-29,-54,0,0,0.0749846 -6933,5502:248,-28,-54,0,0,0.0749846 -6934,5502:247,-27,-54,0,0,0.0749775 -6935,5502:246,-26,-54,0,0,0.0749775 -6936,5502:245,-25,-54,0,0,0.0749846 -6937,5502:144,-24,-54,0,0,0.0749846 -6938,5502:143,-23,-54,0,0,0.0749703 -6939,5502:142,-22,-54,0,0,0.0749562 -6940,5502:141,-21,-54,0,0,0.0749346 -6941,5502:140,-20,-54,0,0,0.0749988 -6942,5501:249,-19,-54,0,0,0.0751344 -6943,5501:248,-18,-54,0,0,0.0750273 -6944,5501:247,-17,-54,0,0,0.0749346 -6945,5501:246,-16,-54,0,0,0.0749205 -6946,5501:245,-15,-54,0,0,0.0749205 -6947,5501:144,-14,-54,0,0,0.0749346 -6948,5501:143,-13,-54,0,0,0.074949 -6949,5501:142,-12,-54,0,0,0.0749418 -6950,5501:141,-11,-54,0,0,0.0749275 -6951,5501:140,-10,-54,0,0,0.0749133 -6952,5500:249,-9,-54,0,0,0.0749133 -6953,5500:248,-8,-54,0,0,0.0749275 -6954,5500:247,-7,-54,0,0,0.0749275 -6955,5500:246,-6,-54,0,0,0.0749133 -6956,5500:245,-5,-54,0,0,0.074899 -6957,5500:144,-4,-54,0,0,0.074899 -6958,5500:143,-3,-54,0,0,0.0748849 -6959,5500:142,-2,-54,0,0,0.0748777 -6960,5500:141,-1,-54,0,0,0.0748636 -6961,3500:141,0,-54,0,0,0.0748636 -6962,3500:141,1,-54,0,0,0.0749205 -6963,3500:142,2,-54,0,0,0.0749703 -6964,3500:143,3,-54,0,0,0.075006 -6965,3500:144,4,-54,0,0,0.0750416 -6966,3500:245,5,-54,0,0,0.0750843 -6967,3500:246,6,-54,0,0,0.0750131 -6968,3500:247,7,-54,0,0,0.074949 -6969,3500:248,8,-54,0,0,0.0748564 -6970,3500:249,9,-54,0,0,0.0748777 -6971,3501:140,10,-54,0,0,0.074892 -6972,3501:141,11,-54,0,0,0.0749062 -6973,3501:142,12,-54,0,0,0.0749205 -6974,3501:143,13,-54,0,0,0.0749275 -6975,3501:144,14,-54,0,0,0.0749275 -6976,3501:245,15,-54,0,0,0.0749346 -6977,3501:246,16,-54,0,0,0.0749205 -6978,3501:247,17,-54,0,0,0.0749205 -6979,3501:248,18,-54,0,0,0.074949 -6980,3501:249,19,-54,0,0,0.0749988 -6981,3502:140,20,-54,0,0,0.075006 -6982,3502:141,21,-54,0,0,0.0749916 -6983,3502:142,22,-54,0,0,0.0749775 -6984,3502:143,23,-54,0,0,0.0749062 -6985,3502:144,24,-54,0,0,0.0749703 -6986,3502:245,25,-54,0,0,0.0751272 -6987,3502:246,26,-54,0,0,0.0751344 -6988,3502:247,27,-54,0,0,0.0749703 -6989,3502:248,28,-54,0,0,0.075006 -6990,3502:249,29,-54,0,0,0.0750558 -6991,3503:140,30,-54,0,0,0.0750987 -6992,3503:141,31,-54,0,0,0.0756068 -6993,3503:142,32,-54,0,0,0.0758946 -6994,3503:143,33,-54,0,0,0.0759019 -6995,3503:144,34,-54,0,0,0.0761978 -6996,3503:245,35,-54,0,0,0.0759452 -6997,3503:246,36,-54,0,0,0.075686 -6998,3503:247,37,-54,0,0,0.0755926 -6999,3503:248,38,-54,0,0,0.075729 -7000,3503:249,39,-54,0,0,0.0758155 -7001,3504:140,40,-54,0,0,0.075765 -7002,3504:141,41,-54,0,0,0.0755065 -7003,3504:142,42,-54,0,0,0.0752273 -7004,3504:143,43,-54,0,0,0.0751272 -7005,3504:144,44,-54,0,0,0.0749988 -7006,3504:245,45,-54,0,0,0.0749703 -7007,3504:246,46,-54,0,0,0.0749631 -7008,3504:247,47,-54,0,0,0.0756715 -7009,3504:248,48,-54,0,0,0.0759091 -7010,3504:249,49,-54,0,0,0.0757867 -7011,3505:140,50,-54,0,0,0.0756645 -7012,3505:141,51,-54,0,0,0.0756068 -7013,3505:142,52,-54,0,0,0.0754706 -7014,3505:143,53,-54,0,0,0.0753847 -7015,3505:144,54,-54,0,0,0.075163 -7016,3505:245,55,-54,0,0,0.0750201 -7017,3505:246,56,-54,0,0,0.0749775 -7018,3505:247,57,-54,0,0,0.0749703 -7019,3505:248,58,-54,0,0,0.0749631 -7020,3505:249,59,-54,0,0,0.0750131 -7021,3506:140,60,-54,0,0,0.0752916 -7022,3506:141,61,-54,0,0,0.0757795 -7023,3506:142,62,-54,0,0,0.0765166 -7024,3506:143,63,-54,0,0,0.0762629 -7025,3506:144,64,-54,0,0,0.0752772 -7026,3506:245,65,-54,0,0,0.0760029 -7027,3506:246,66,-54,0,0,0.0768367 -7028,3506:247,67,-54,0,0,0.0800146 -7029,3506:248,68,-54,0,0,0.0792091 -7030,3506:249,69,-54,0,0,0.0772899 -7031,3507:140,70,-54,0,0,0.0805151 -7032,3507:141,71,-54,0,0,0.0820961 -7033,3507:142,72,-54,0,0,0.0783515 -7034,3507:144,74,-54,0,0,0.0767494 -7035,3507:245,75,-54,0,0,0.076713 -7036,3507:246,76,-54,0,0,0.0769607 -7037,3507:247,77,-54,0,0,0.0771947 -7038,3507:248,78,-54,0,0,0.077657 -7039,3507:249,79,-54,0,0,0.0767929 -7040,3508:140,80,-54,0,0,0.0767274 -7041,3508:141,81,-54,0,0,0.0764803 -7042,3508:142,82,-54,0,0,0.0759595 -7043,3508:143,83,-54,0,0,0.0758082 -7044,3508:144,84,-54,0,0,0.0762267 -7045,3508:245,85,-54,0,0,0.0766475 -7046,3508:246,86,-54,0,0,0.0759162 -7047,3508:247,87,-54,0,0,0.0755854 -7048,3508:248,88,-54,0,0,0.0765166 -7049,3508:249,89,-54,0,0,0.0757362 -7050,3509:140,90,-54,0,0,0.0758874 -7051,3509:141,91,-54,0,0,0.0771141 -7052,3509:142,92,-54,0,0,0.0789919 -7053,3509:143,93,-54,0,0,0.0798862 -7054,3509:144,94,-54,0,0,0.0801054 -7055,3509:245,95,-54,0,0,0.0812484 -7056,3509:246,96,-54,0,0,0.0808427 -7057,3509:247,97,-54,0,0,0.0799466 -7058,3509:248,98,-54,0,0,0.0793966 -7059,3509:249,99,-54,0,0,0.0795845 -7060,3510:140,100,-54,0,0,0.0813788 -7061,3510:141,101,-54,0,0,0.0852147 -7062,3510:142,102,-54,0,0,0.0866999 -7063,3510:143,103,-54,0,0,0.0849347 -7064,3510:144,104,-54,0,0,0.0786861 -7065,3510:245,105,-54,0,0,0.0782775 -7066,3510:246,106,-54,0,0,0.0831944 -7067,3510:247,107,-54,0,0,0.0844489 -7068,3510:248,108,-54,0,0,0.0849109 -7069,3510:249,109,-54,0,0,0.0819568 -7070,3511:140,110,-54,0,0,0.0814328 -7071,3511:141,111,-54,0,0,0.085431 -7072,3511:142,112,-54,0,0,0.0855516 -7073,3511:143,113,-54,0,0,0.0863507 -7074,3511:144,114,-54,0,0,0.0882168 -7075,3511:245,115,-54,0,0,0.0883657 -7076,3511:246,116,-54,0,0,0.088465 -7077,3511:247,117,-54,0,0,0.0894224 -7078,3511:248,118,-54,0,0,0.0908125 -7079,3511:249,119,-54,0,0,0.0910247 -7080,3512:140,120,-54,0,0,0.0885644 -7081,3512:141,121,-54,0,0,0.0910419 -7082,3512:142,122,-54,0,0,0.0913995 -7083,3512:143,123,-54,0,0,0.0917843 -7084,3512:144,124,-54,0,0,0.0927135 -7085,3512:245,125,-54,0,0,0.0932421 -7086,3512:246,126,-54,0,0,0.0950292 -7087,3512:247,127,-54,0,0,0.0962465 -7088,3512:248,128,-54,0,0,0.0969459 -7089,3512:249,129,-54,0,0,0.0978129 -7090,3513:140,130,-54,0,0,0.0986961 -7091,3513:141,131,-54,0,0,0.101126 -7092,3513:142,132,-54,0,0,0.0991998 -7093,3513:143,133,-54,0,0,0.0962735 -7094,3513:144,134,-54,0,0,0.0974869 -7095,3513:245,135,-54,0,0,0.0971712 -7096,3513:246,136,-54,0,0,0.096336 -7097,3513:247,137,-54,0,0,0.0945267 -7098,3513:248,138,-54,0,0,0.0942546 -7099,3513:249,139,-54,0,0,0.095623 -7100,3514:140,140,-54,0,0,0.095552 -7101,3514:141,141,-54,0,0,0.0954986 -7102,3514:142,142,-54,0,0,0.0939918 -7103,3514:143,143,-54,0,0,0.093983 -7104,3514:144,144,-54,0,0,0.0936684 -7105,3514:245,145,-54,0,0,0.0913313 -7106,3514:246,146,-54,0,0,0.0925235 -7107,3514:247,147,-54,0,0,0.0929557 -7108,3514:248,148,-54,0,0,0.0861725 -7109,3514:249,149,-54,0,0,0.0844886 -7110,3515:140,150,-54,0,0,0.0849506 -7111,3515:141,151,-54,0,0,0.0851985 -7112,3515:142,152,-54,0,0,0.0801886 -7113,3515:143,153,-54,0,0,0.0767056 -7114,3515:144,154,-54,0,0,0.0761038 -7115,3515:245,155,-54,0,0,0.08181 -7116,3515:246,156,-54,0,0,0.0894224 -7117,3515:247,157,-54,0,0,0.0868383 -7118,3515:248,158,-54,0,0,0.0797954 -7119,3515:249,159,-54,0,0,0.081571 -7120,3516:140,160,-54,0,0,0.0793366 -7121,3516:141,161,-54,0,0,0.0792991 -7122,3516:142,162,-54,0,0,0.0855354 -7123,3516:143,163,-54,0,0,0.0873693 -7124,3516:144,164,-54,0,0,0.0852225 -7125,3516:245,165,-54,0,0,0.0825151 -7126,3516:246,166,-54,0,0,0.0847273 -7127,3516:247,167,-54,0,0,0.101257 -7128,3516:248,168,-54,0,0,0.102933 -7129,3516:249,169,-54,0,0,0.104144 -7130,3517:140,170,-54,0,0,0.111119 -7131,3517:141,171,-54,0,0,0.109166 -7132,3517:142,172,-54,0,0,0.113868 -7133,3517:143,173,-54,0,0,0.122119 -7134,3517:144,174,-54,0,0,0.121449 -7135,3517:245,175,-54,0,0,0.118972 -7136,3517:246,176,-54,0,0,0.113278 -7137,3517:247,177,-54,0,0,0.109666 -7138,3517:248,178,-54,0,0,0.116697 -7139,3517:249,179,-54,0,0,0.121856 -7140,3518:140,180,-54,0,0,0.117249 -7141,5518:130,-180,-53,0,0,0.120314 -7142,5517:239,-179,-53,0,0,0.115642 -7143,5517:238,-178,-53,0,0,0.111454 -7144,5517:237,-177,-53,0,0,0.106516 -7145,5517:236,-176,-53,0,0,0.102867 -7146,5517:235,-175,-53,0,0,0.100921 -7147,5517:134,-174,-53,0,0,0.100001 -7148,5517:133,-173,-53,0,0,0.0991264 -7149,5517:132,-172,-53,0,0,0.0983766 -7150,5517:131,-171,-53,0,0,0.0975142 -7151,5517:130,-170,-53,0,0,0.0953389 -7152,5516:239,-169,-53,0,0,0.094123 -7153,5516:238,-168,-53,0,0,0.0945618 -7154,5516:237,-167,-53,0,0,0.093983 -7155,5516:236,-166,-53,0,0,0.0949674 -7156,5516:235,-165,-53,0,0,0.0965511 -7157,5516:134,-164,-53,0,0,0.0982763 -7158,5516:133,-163,-53,0,0,0.0976589 -7159,5516:132,-162,-53,0,0,0.0972703 -7160,5516:131,-161,-53,0,0,0.0988515 -7161,5516:130,-160,-53,0,0,0.0950117 -7162,5515:239,-159,-53,0,0,0.0920243 -7163,5515:238,-158,-53,0,0,0.0932593 -7164,5515:237,-157,-53,0,0,0.0993652 -7165,5515:236,-156,-53,0,0,0.0999736 -7166,5515:235,-155,-53,0,0,0.0925061 -7167,5515:134,-154,-53,0,0,0.0889136 -7168,5515:133,-153,-53,0,0,0.0881755 -7169,5515:132,-152,-53,0,0,0.0900771 -7170,5515:131,-151,-53,0,0,0.096327 -7171,5515:130,-150,-53,0,0,0.0970989 -7172,5514:239,-149,-53,0,0,0.0963003 -7173,5514:238,-148,-53,0,0,0.0998258 -7174,5514:237,-147,-53,0,0,0.107085 -7175,5514:236,-146,-53,0,0,0.111566 -7176,5514:235,-145,-53,0,0,0.117387 -7177,5514:134,-144,-53,0,0,0.124754 -7178,5514:133,-143,-53,0,0,0.130694 -7179,5514:132,-142,-53,0,0,0.135627 -7180,5514:131,-141,-53,0,0,0.134379 -7181,5514:130,-140,-53,0,0,0.136545 -7182,5513:239,-139,-53,0,0,0.128056 -7183,5513:238,-138,-53,0,0,0.120303 -7184,5513:237,-137,-53,0,0,0.112702 -7185,5513:236,-136,-53,0,0,0.110633 -7186,5513:235,-135,-53,0,0,0.107616 -7187,5513:134,-134,-53,0,0,0.105746 -7188,5513:133,-133,-53,0,0,0.106292 -7189,5513:132,-132,-53,0,0,0.108647 -7190,5513:131,-131,-53,0,0,0.111129 -7191,5513:130,-130,-53,0,0,0.109977 -7193,5512:238,-128,-53,0,0,0.106879 -7194,5512:237,-127,-53,0,0,0.109937 -7195,5512:236,-126,-53,0,0,0.112804 -7196,5512:235,-125,-53,0,0,0.115045 -7197,5512:134,-124,-53,0,0,0.117185 -7198,5512:133,-123,-53,0,0,0.119047 -7199,5512:132,-122,-53,0,0,0.115779 -7200,5512:131,-121,-53,0,0,0.116994 -7201,5512:130,-120,-53,0,0,0.120444 -7202,5511:239,-119,-53,0,0,0.115537 -7203,5511:238,-118,-53,0,0,0.119004 -7204,5511:237,-117,-53,0,0,0.120129 -7205,5511:236,-116,-53,0,0,0.120531 -7206,5511:235,-115,-53,0,0,0.12146 -7207,5511:134,-114,-53,0,0,0.121296 -7208,5511:133,-113,-53,0,0,0.114836 -7209,5511:132,-112,-53,0,0,0.118682 -7210,5511:131,-111,-53,0,0,0.121702 -7211,5511:130,-110,-53,0,0,0.121691 -7212,5510:239,-109,-53,0,0,0.118156 -7213,5510:238,-108,-53,0,0,0.116729 -7214,5510:237,-107,-53,0,0,0.115842 -7215,5510:236,-106,-53,0,0,0.11175 -7216,5510:235,-105,-53,0,0,0.112866 -7217,5510:134,-104,-53,0,0,0.114263 -7218,5510:133,-103,-53,0,0,0.115244 -7219,5510:132,-102,-53,0,0,0.115139 -7220,5510:131,-101,-53,0,0,0.114346 -7221,5510:130,-100,-53,0,0,0.116633 -7222,5509:239,-99,-53,0,0,0.123014 -7223,5509:238,-98,-53,0,0,0.12526 -7224,5509:237,-97,-53,0,0,0.120096 -7225,5509:236,-96,-53,0,0,0.119847 -7226,5509:235,-95,-53,0,0,0.120717 -7227,5509:134,-94,-53,0,0,0.118381 -7228,5509:133,-93,-53,0,0,0.115076 -7229,5509:132,-92,-53,0,0,0.114252 -7230,5509:131,-91,-53,0,0,0.114086 -7231,5509:130,-90,-53,0,0,0.116179 -7232,5508:239,-89,-53,0,0,0.121581 -7233,5508:238,-88,-53,0,0,0.122329 -7234,5508:237,-87,-53,0,0,0.12123 -7235,5508:236,-86,-53,0,0,0.120815 -7236,5508:235,-85,-53,0,0,0.120466 -7237,5508:134,-84,-53,0,0,0.117164 -7238,5508:133,-83,-53,0,0,0.118017 -7239,5508:132,-82,-53,0,0,0.119576 -7240,5508:131,-81,-53,0,0,0.12202 -7241,5508:130,-80,-53,0,0,0.12123 -7242,5507:239,-79,-53,0,0,0.12064 -7243,5507:238,-78,-53,0,0,0.121186 -7244,5507:237,-77,-53,0,0,0.118081 -7245,5507:236,-76,-53,0,0,0.118092 -7246,5507:235,-75,-53,0,0,0.121285 -7247,5507:134,-74,-53,0,0,0.122395 -7248,5507:133,-73,-53,0,0,0.119858 -7249,5507:132,-72,-53,0,0,0.11619 -7250,5507:131,-71,-53,0,0,0.116613 -7251,5507:130,-70,-53,0,0,0.11866 -7252,5506:239,-69,-53,0,0,0.117089 -7253,5506:238,-68,-53,0,0,0.111281 -7254,5506:237,-67,-53,0,0,0.103943 -7255,5506:236,-66,-53,0,0,0.103209 -7256,5506:235,-65,-53,0,0,0.102981 -7257,5506:134,-64,-53,0,0,0.0925667 -7258,5506:133,-63,-53,0,0,0.0860837 -7259,5506:132,-62,-53,0,0,0.085648 -7260,5506:131,-61,-53,0,0,0.0819259 -7261,5506:130,-60,-53,0,0,0.0846795 -7262,5505:239,-59,-53,0,0,0.0859947 -7263,5505:238,-58,-53,0,0,0.0861967 -7264,5505:237,-57,-53,0,0,0.0816711 -7265,5505:236,-56,-53,0,0,0.078865 -7266,5505:235,-55,-53,0,0,0.0779889 -7267,5505:134,-54,-53,0,0,0.077063 -7268,5505:133,-53,-53,0,0,0.0773924 -7269,5505:132,-52,-53,0,0,0.07565 -7270,5505:131,-51,-53,0,0,0.0752487 -7271,5505:130,-50,-53,0,0,0.0756213 -7272,5504:239,-49,-53,0,0,0.0752201 -7273,5504:238,-48,-53,0,0,0.0749562 -7274,5504:237,-47,-53,0,0,0.075006 -7275,5504:236,-46,-53,0,0,0.0750273 -7276,5504:235,-45,-53,0,0,0.0750416 -7277,5504:134,-44,-53,0,0,0.0749703 -7278,5504:133,-43,-53,0,0,0.0749775 -7279,5504:132,-42,-53,0,0,0.0750273 -7280,5504:131,-41,-53,0,0,0.0750201 -7281,5504:130,-40,-53,0,0,0.0749988 -7282,5503:239,-39,-53,0,0,0.0750558 -7283,5503:238,-38,-53,0,0,0.0751558 -7284,5503:237,-37,-53,0,0,0.0749916 -7285,5503:236,-36,-53,0,0,0.0749703 -7286,5503:235,-35,-53,0,0,0.0749775 -7287,5503:134,-34,-53,0,0,0.0749846 -7288,5503:133,-33,-53,0,0,0.0749846 -7289,5503:132,-32,-53,0,0,0.0749846 -7290,5503:131,-31,-53,0,0,0.0749846 -7291,5503:130,-30,-53,0,0,0.0749916 -7292,5502:239,-29,-53,0,0,0.0749846 -7293,5502:238,-28,-53,0,0,0.0749775 -7294,5502:237,-27,-53,0,0,0.0749775 -7295,5502:236,-26,-53,0,0,0.0749988 -7296,5502:235,-25,-53,0,0,0.0750773 -7297,5502:134,-24,-53,0,0,0.0749988 -7298,5502:133,-23,-53,0,0,0.0750201 -7299,5502:132,-22,-53,0,0,0.0750558 -7300,5502:131,-21,-53,0,0,0.0750488 -7301,5502:130,-20,-53,0,0,0.07512 -7302,5501:239,-19,-53,0,0,0.0751701 -7303,5501:238,-18,-53,0,0,0.0752057 -7304,5501:237,-17,-53,0,0,0.0749988 -7305,5501:236,-16,-53,0,0,0.0749562 -7306,5501:235,-15,-53,0,0,0.0749562 -7307,5501:134,-14,-53,0,0,0.0749418 -7308,5501:133,-13,-53,0,0,0.0749275 -7309,5501:132,-12,-53,0,0,0.0749562 -7310,5501:131,-11,-53,0,0,0.0749846 -7311,5501:130,-10,-53,0,0,0.0749418 -7312,5500:239,-9,-53,0,0,0.0749205 -7313,5500:238,-8,-53,0,0,0.074949 -7314,5500:237,-7,-53,0,0,0.0749775 -7315,5500:236,-6,-53,0,0,0.0749418 -7316,5500:235,-5,-53,0,0,0.0749205 -7317,5500:134,-4,-53,0,0,0.0749133 -7318,5500:133,-3,-53,0,0,0.074899 -7319,5500:132,-2,-53,0,0,0.0748777 -7320,5500:131,-1,-53,0,0,0.0748705 -7321,3500:131,0,-53,0,0,0.0749418 -7322,3500:131,1,-53,0,0,0.0750416 -7323,3500:132,2,-53,0,0,0.0752129 -7324,3500:133,3,-53,0,0,0.0752559 -7325,3500:134,4,-53,0,0,0.0754133 -7326,3500:235,5,-53,0,0,0.0754779 -7327,3500:236,6,-53,0,0,0.0753917 -7328,3500:237,7,-53,0,0,0.0752343 -7329,3500:238,8,-53,0,0,0.0750702 -7330,3500:239,9,-53,0,0,0.0749775 -7331,3501:130,10,-53,0,0,0.0749062 -7332,3501:131,11,-53,0,0,0.0748849 -7333,3501:132,12,-53,0,0,0.0749062 -7334,3501:133,13,-53,0,0,0.0749062 -7335,3501:134,14,-53,0,0,0.0749062 -7336,3501:235,15,-53,0,0,0.0749205 -7337,3501:236,16,-53,0,0,0.0749205 -7338,3501:237,17,-53,0,0,0.0749275 -7339,3501:238,18,-53,0,0,0.074949 -7340,3501:239,19,-53,0,0,0.0749703 -7341,3502:130,20,-53,0,0,0.0749631 -7342,3502:131,21,-53,0,0,0.0749631 -7343,3502:132,22,-53,0,0,0.0749631 -7344,3502:133,23,-53,0,0,0.0749562 -7345,3502:134,24,-53,0,0,0.074949 -7346,3502:235,25,-53,0,0,0.0749916 -7347,3502:236,26,-53,0,0,0.0749562 -7348,3502:237,27,-53,0,0,0.0750558 -7349,3502:238,28,-53,0,0,0.0750843 -7350,3502:239,29,-53,0,0,0.0750416 -7351,3503:130,30,-53,0,0,0.0750273 -7352,3503:131,31,-53,0,0,0.0750558 -7353,3503:132,32,-53,0,0,0.0750843 -7354,3503:133,33,-53,0,0,0.0754348 -7355,3503:134,34,-53,0,0,0.0754061 -7356,3503:235,35,-53,0,0,0.0756787 -7357,3503:236,36,-53,0,0,0.0761327 -7358,3503:237,37,-53,0,0,0.0760172 -7359,3503:238,38,-53,0,0,0.0758946 -7360,3503:239,39,-53,0,0,0.0761472 -7361,3504:130,40,-53,0,0,0.0763789 -7362,3504:131,41,-53,0,0,0.0763064 -7363,3504:132,42,-53,0,0,0.0762848 -7364,3504:133,43,-53,0,0,0.0758803 -7365,3504:134,44,-53,0,0,0.0754849 -7366,3504:235,45,-53,0,0,0.0753272 -7367,3504:236,46,-53,0,0,0.0753631 -7368,3504:237,47,-53,0,0,0.0751128 -7369,3504:238,48,-53,0,0,0.0754275 -7370,3504:239,49,-53,0,0,0.0749916 -7371,3505:130,50,-53,0,0,0.0749916 -7372,3505:131,51,-53,0,0,0.0754706 -7373,3505:132,52,-53,0,0,0.0755207 -7374,3505:133,53,-53,0,0,0.0754203 -7375,3505:134,54,-53,0,0,0.075313 -7376,3505:235,55,-53,0,0,0.0751771 -7377,3505:236,56,-53,0,0,0.0751128 -7378,3505:237,57,-53,0,0,0.0750558 -7379,3505:238,58,-53,0,0,0.0750702 -7380,3505:239,59,-53,0,0,0.0750345 -7381,3506:130,60,-53,0,0,0.0757867 -7382,3506:131,61,-53,0,0,0.0760967 -7383,3506:132,62,-53,0,0,0.0768877 -7384,3506:133,63,-53,0,0,0.077856 -7385,3506:134,64,-53,0,0,0.0782329 -7386,3506:235,65,-53,0,0,0.0779445 -7387,3506:236,66,-53,0,0,0.0784258 -7388,3506:237,67,-53,0,0,0.0822044 -7389,3506:238,68,-53,0,0,0.0845362 -7390,3506:239,69,-53,0,0,0.0839103 -7391,3507:130,70,-53,0,0,0.0849428 -7392,3507:131,71,-53,0,0,0.0852225 -7393,3507:132,72,-53,0,0,0.0825384 -7394,3507:134,74,-53,0,0,0.0807435 -7395,3507:235,75,-53,0,0,0.0814865 -7396,3507:236,76,-53,0,0,0.0816711 -7397,3507:237,77,-53,0,0,0.0803025 -7398,3507:238,78,-53,0,0,0.0785968 -7399,3507:239,79,-53,0,0,0.0778116 -7400,3508:130,80,-53,0,0,0.0773559 -7401,3508:131,81,-53,0,0,0.0766184 -7402,3508:132,82,-53,0,0,0.0763208 -7403,3508:133,83,-53,0,0,0.0758874 -7404,3508:134,84,-53,0,0,0.0759811 -7405,3508:235,85,-53,0,0,0.0763281 -7406,3508:236,86,-53,0,0,0.0764296 -7407,3508:237,87,-53,0,0,0.0769242 -7408,3508:238,88,-53,0,0,0.0769242 -7409,3508:239,89,-53,0,0,0.0775762 -7410,3509:130,90,-53,0,0,0.0776127 -7411,3509:131,91,-53,0,0,0.0785893 -7412,3509:132,92,-53,0,0,0.0799164 -7413,3509:133,93,-53,0,0,0.0829126 -7414,3509:134,94,-53,0,0,0.0839655 -7415,3509:235,95,-53,0,0,0.0837523 -7416,3509:236,96,-53,0,0,0.0842266 -7417,3509:237,97,-53,0,0,0.0854552 -7418,3509:238,98,-53,0,0,0.086116 -7419,3509:239,99,-53,0,0,0.0860028 -7420,3510:130,100,-53,0,0,0.0860837 -7421,3510:131,101,-53,0,0,0.0875991 -7422,3510:132,102,-53,0,0,0.0896151 -7423,3510:133,103,-53,0,0,0.0891801 -7424,3510:134,104,-53,0,0,0.0893389 -7425,3510:235,105,-53,0,0,0.0898166 -7426,3510:236,106,-53,0,0,0.0886475 -7427,3510:237,107,-53,0,0,0.0849267 -7428,3510:238,108,-53,0,0,0.0863265 -7429,3510:239,109,-53,0,0,0.0864237 -7430,3511:130,110,-53,0,0,0.0863425 -7431,3511:131,111,-53,0,0,0.0869281 -7432,3511:132,112,-53,0,0,0.0881177 -7433,3511:133,113,-53,0,0,0.0888968 -7434,3511:134,114,-53,0,0,0.0899425 -7435,3511:235,115,-53,0,0,0.0923426 -7436,3511:236,116,-53,0,0,0.0938517 -7437,3511:237,117,-53,0,0,0.0928864 -7438,3511:238,118,-53,0,0,0.0904737 -7439,3511:239,119,-53,0,0,0.0910333 -7440,3512:130,120,-53,0,0,0.0915191 -7441,3512:131,121,-53,0,0,0.0930165 -7442,3512:132,122,-53,0,0,0.0934855 -7443,3512:133,123,-53,0,0,0.0950645 -7444,3512:134,124,-53,0,0,0.097 -7445,3512:235,125,-53,0,0,0.0973786 -7446,3512:236,126,-53,0,0,0.0962021 -7447,3512:237,127,-53,0,0,0.0961751 -7448,3512:238,128,-53,0,0,0.096919 -7449,3512:239,129,-53,0,0,0.0971622 -7450,3513:130,130,-53,0,0,0.0997796 -7451,3513:131,131,-53,0,0,0.10448 -7452,3513:132,132,-53,0,0,0.103114 -7453,3513:133,133,-53,0,0,0.099909 -7454,3513:134,134,-53,0,0,0.0987234 -7455,3513:235,135,-53,0,0,0.0997703 -7456,3513:236,136,-53,0,0,0.100958 -7457,3513:237,137,-53,0,0,0.0986138 -7458,3513:238,138,-53,0,0,0.0974869 -7459,3513:239,139,-53,0,0,0.099872 -7460,3514:130,140,-53,0,0,0.0989063 -7461,3514:131,141,-53,0,0,0.0968562 -7462,3514:132,142,-53,0,0,0.0950823 -7463,3514:133,143,-53,0,0,0.0954009 -7464,3514:134,144,-53,0,0,0.0983674 -7465,3514:235,145,-53,0,0,0.0966496 -7466,3514:236,146,-53,0,0,0.0961841 -7467,3514:237,147,-53,0,0,0.0955251 -7468,3514:238,148,-53,0,0,0.0935463 -7469,3514:239,149,-53,0,0,0.0919214 -7470,3515:130,150,-53,0,0,0.0924372 -7471,3515:131,151,-53,0,0,0.0855276 -7472,3515:132,152,-53,0,0,0.0848787 -7473,3515:133,153,-53,0,0,0.0850467 -7474,3515:134,154,-53,0,0,0.0792691 -7475,3515:235,155,-53,0,0,0.0848948 -7476,3515:236,156,-53,0,0,0.0933116 -7477,3515:237,157,-53,0,0,0.0943248 -7478,3515:238,158,-53,0,0,0.0933288 -7479,3515:239,159,-53,0,0,0.0951266 -7480,3516:130,160,-53,0,0,0.0937819 -7481,3516:131,161,-53,0,0,0.0905922 -7482,3516:132,162,-53,0,0,0.104471 -7483,3516:133,163,-53,0,0,0.107262 -7484,3516:134,164,-53,0,0,0.103133 -7485,3516:235,165,-53,0,0,0.107528 -7486,3516:236,166,-53,0,0,0.103009 -7487,3516:237,167,-53,0,0,0.106184 -7488,3516:238,168,-53,0,0,0.107134 -7489,3516:239,169,-53,0,0,0.109195 -7490,3517:130,170,-53,0,0,0.11909 -7491,3517:131,171,-53,0,0,0.125847 -7492,3517:132,172,-53,0,0,0.128216 -7493,3517:133,173,-53,0,0,0.127838 -7494,3517:134,174,-53,0,0,0.125756 -7495,3517:235,175,-53,0,0,0.123347 -7496,3517:236,176,-53,0,0,0.120782 -7497,3517:237,177,-53,0,0,0.121691 -7498,3517:238,178,-53,0,0,0.123659 -7499,3517:239,179,-53,0,0,0.121033 -7500,3518:130,180,-53,0,0,0.120314 -7501,5518:120,-180,-52,0,0,0.11299 -7502,5517:229,-179,-52,0,0,0.108389 -7503,5517:228,-178,-52,0,0,0.110602 -7504,5517:227,-177,-52,0,0,0.109166 -7505,5517:226,-176,-52,0,0,0.11038 -7506,5517:225,-175,-52,0,0,0.110451 -7507,5517:124,-174,-52,0,0,0.105805 -7508,5517:123,-173,-52,0,0,0.107725 -7509,5517:122,-172,-52,0,0,0.107508 -7510,5517:121,-171,-52,0,0,0.107232 -7511,5517:120,-170,-52,0,0,0.105902 -7512,5516:229,-169,-52,0,0,0.102696 -7513,5516:228,-168,-52,0,0,0.102857 -7514,5516:227,-167,-52,0,0,0.103895 -7515,5516:226,-166,-52,0,0,0.105717 -7516,5516:225,-165,-52,0,0,0.109105 -7517,5516:124,-164,-52,0,0,0.11121 -7518,5516:123,-163,-52,0,0,0.107903 -7519,5516:122,-162,-52,0,0,0.105873 -7520,5516:121,-161,-52,0,0,0.106908 -7521,5516:120,-160,-52,0,0,0.105068 -7522,5515:229,-159,-52,0,0,0.102791 -7523,5515:228,-158,-52,0,0,0.106849 -7524,5515:227,-157,-52,0,0,0.112097 -7525,5515:226,-156,-52,0,0,0.112097 -7526,5515:225,-155,-52,0,0,0.0998813 -7527,5515:124,-154,-52,0,0,0.0886974 -7528,5515:123,-153,-52,0,0,0.0888136 -7529,5515:122,-152,-52,0,0,0.0898417 -7530,5515:121,-151,-52,0,0,0.089892 -7531,5515:120,-150,-52,0,0,0.0937209 -7532,5514:229,-149,-52,0,0,0.0949233 -7533,5514:228,-148,-52,0,0,0.0956051 -7534,5514:227,-147,-52,0,0,0.10678 -7535,5514:226,-146,-52,0,0,0.10823 -7536,5514:225,-145,-52,0,0,0.115338 -7537,5514:124,-144,-52,0,0,0.12357 -7538,5514:123,-143,-52,0,0,0.126401 -7539,5514:122,-142,-52,0,0,0.129902 -7540,5514:121,-141,-52,0,0,0.136775 -7541,5514:120,-140,-52,0,0,0.13663 -7542,5513:229,-139,-52,0,0,0.130344 -7543,5513:228,-138,-52,0,0,0.123281 -7544,5513:227,-137,-52,0,0,0.11638 -7545,5513:226,-136,-52,0,0,0.115716 -7546,5513:225,-135,-52,0,0,0.116443 -7547,5513:124,-134,-52,0,0,0.11333 -7548,5513:123,-133,-52,0,0,0.116401 -7549,5513:122,-132,-52,0,0,0.1147 -7550,5513:121,-131,-52,0,0,0.116686 -7551,5513:120,-130,-52,0,0,0.117568 -7552,5512:229,-129,-52,0,0,0.118961 -7553,5512:228,-128,-52,0,0,0.11495 -7554,5512:227,-127,-52,0,0,0.115306 -7555,5512:226,-126,-52,0,0,0.119123 -7556,5512:225,-125,-52,0,0,0.119522 -7557,5512:124,-124,-52,0,0,0.127095 -7558,5512:123,-123,-52,0,0,0.128136 -7559,5512:122,-122,-52,0,0,0.12499 -7560,5512:121,-121,-52,0,0,0.121154 -7561,5512:120,-120,-52,0,0,0.120433 -7562,5511:229,-119,-52,0,0,0.117686 -7563,5511:228,-118,-52,0,0,0.118638 -7564,5511:227,-117,-52,0,0,0.120597 -7565,5511:226,-116,-52,0,0,0.122318 -7566,5511:225,-115,-52,0,0,0.121438 -7567,5511:124,-114,-52,0,0,0.121175 -7568,5511:123,-113,-52,0,0,0.124418 -7569,5511:122,-112,-52,0,0,0.117824 -7570,5511:121,-111,-52,0,0,0.119349 -7571,5511:120,-110,-52,0,0,0.123882 -7572,5510:229,-109,-52,0,0,0.121932 -7573,5510:228,-108,-52,0,0,0.120488 -7574,5510:227,-107,-52,0,0,0.120902 -7575,5510:226,-106,-52,0,0,0.119047 -7576,5510:225,-105,-52,0,0,0.115863 -7577,5510:124,-104,-52,0,0,0.119112 -7578,5510:123,-103,-52,0,0,0.12434 -7579,5510:122,-102,-52,0,0,0.130403 -7580,5510:121,-101,-52,0,0,0.129763 -7581,5510:120,-100,-52,0,0,0.12367 -7582,5509:229,-99,-52,0,0,0.124575 -7583,5509:228,-98,-52,0,0,0.128699 -7584,5509:227,-97,-52,0,0,0.122804 -7585,5509:226,-96,-52,0,0,0.119328 -7586,5509:225,-95,-52,0,0,0.120859 -7587,5509:124,-94,-52,0,0,0.125305 -7588,5509:123,-93,-52,0,0,0.120782 -7589,5509:122,-92,-52,0,0,0.115191 -7590,5509:121,-91,-52,0,0,0.114992 -7591,5509:120,-90,-52,0,0,0.11494 -7592,5508:229,-89,-52,0,0,0.120608 -7593,5508:228,-88,-52,0,0,0.12337 -7594,5508:227,-87,-52,0,0,0.121812 -7595,5508:226,-86,-52,0,0,0.122693 -7596,5508:225,-85,-52,0,0,0.122528 -7597,5508:124,-84,-52,0,0,0.122274 -7598,5508:123,-83,-52,0,0,0.123659 -7599,5508:122,-82,-52,0,0,0.126265 -7600,5508:121,-81,-52,0,0,0.126856 -7601,5508:120,-80,-52,0,0,0.124586 -7602,5507:229,-79,-52,0,0,0.122738 -7603,5507:228,-78,-52,0,0,0.128102 -7604,5507:227,-77,-52,0,0,0.12952 -7605,5507:226,-76,-52,0,0,0.127964 -7606,5507:225,-75,-52,0,0,0.127015 -7607,5507:124,-74,-52,0,0,0.124631 -7608,5507:123,-73,-52,0,0,0.119641 -7609,5507:122,-72,-52,0,0,0.120053 -7610,5507:121,-71,-52,0,0,0.117334 -7611,5507:120,-70,-52,0,0,0.116898 -7612,5506:229,-69,-52,0,0,0.115181 -7613,5506:228,-68,-52,0,0,0.10637 -7614,5506:227,-67,-52,0,0,0.108766 -7615,5506:226,-66,-52,0,0,0.107488 -7616,5506:225,-65,-52,0,0,0.101519 -7617,5506:124,-64,-52,0,0,0.0909228 -7618,5506:123,-63,-52,0,0,0.090906 -7619,5506:122,-62,-52,0,0,0.0925925 -7620,5506:121,-61,-52,0,0,0.0946325 -7621,5506:120,-60,-52,0,0,0.0966586 -7622,5505:229,-59,-52,0,0,0.096865 -7623,5505:228,-58,-52,0,0,0.0926012 -7624,5505:227,-57,-52,0,0,0.0885644 -7625,5505:226,-56,-52,0,0,0.0821193 -7626,5505:225,-55,-52,0,0,0.0825462 -7627,5505:124,-54,-52,0,0,0.0817947 -7628,5505:123,-53,-52,0,0,0.077451 -7629,5505:122,-52,-52,0,0,0.0769315 -7630,5505:121,-51,-52,0,0,0.0763064 -7631,5505:120,-50,-52,0,0,0.0764006 -7632,5504:229,-49,-52,0,0,0.0752201 -7633,5504:228,-48,-52,0,0,0.0753703 -7634,5504:227,-47,-52,0,0,0.0751701 -7635,5504:226,-46,-52,0,0,0.0754203 -7636,5504:225,-45,-52,0,0,0.0756715 -7637,5504:124,-44,-52,0,0,0.0756715 -7638,5504:123,-43,-52,0,0,0.0787084 -7639,5504:122,-42,-52,0,0,0.0788427 -7640,5504:121,-41,-52,0,0,0.0773337 -7641,5504:120,-40,-52,0,0,0.0770922 -7642,5503:229,-39,-52,0,0,0.0776718 -7643,5503:228,-38,-52,0,0,0.084021 -7644,5503:227,-37,-52,0,0,0.0804543 -7645,5503:226,-36,-52,0,0,0.0763427 -7646,5503:225,-35,-52,0,0,0.0769973 -7647,5503:124,-34,-52,0,0,0.0775026 -7648,5503:123,-33,-52,0,0,0.0764079 -7649,5503:122,-32,-52,0,0,0.0749275 -7650,5503:121,-31,-52,0,0,0.0754993 -7651,5503:120,-30,-52,0,0,0.0749703 -7652,5502:229,-29,-52,0,0,0.0749988 -7653,5502:228,-28,-52,0,0,0.0749916 -7654,5502:227,-27,-52,0,0,0.0749775 -7655,5502:226,-26,-52,0,0,0.0750558 -7656,5502:225,-25,-52,0,0,0.0771726 -7657,5502:124,-24,-52,0,0,0.0836814 -7658,5502:123,-23,-52,0,0,0.0803405 -7659,5502:122,-22,-52,0,0,0.079532 -7660,5502:121,-21,-52,0,0,0.0767712 -7661,5502:120,-20,-52,0,0,0.0760749 -7662,5501:229,-19,-52,0,0,0.0772899 -7663,5501:228,-18,-52,0,0,0.0759811 -7664,5501:227,-17,-52,0,0,0.0755567 -7665,5501:226,-16,-52,0,0,0.0755135 -7666,5501:225,-15,-52,0,0,0.0758082 -7667,5501:124,-14,-52,0,0,0.075442 -7668,5501:123,-13,-52,0,0,0.0749775 -7669,5501:122,-12,-52,0,0,0.0749562 -7670,5501:121,-11,-52,0,0,0.0749562 -7671,5501:120,-10,-52,0,0,0.074949 -7672,5500:229,-9,-52,0,0,0.0749631 -7673,5500:228,-8,-52,0,0,0.0749703 -7674,5500:227,-7,-52,0,0,0.0749631 -7675,5500:226,-6,-52,0,0,0.074949 -7676,5500:225,-5,-52,0,0,0.0749418 -7677,5500:124,-4,-52,0,0,0.0749275 -7678,5500:123,-3,-52,0,0,0.0749133 -7679,5500:122,-2,-52,0,0,0.074899 -7680,5500:121,-1,-52,0,0,0.0749133 -7681,3500:121,0,-52,0,0,0.0749275 -7682,3500:121,1,-52,0,0,0.0749562 -7683,3500:122,2,-52,0,0,0.0753203 -7684,3500:123,3,-52,0,0,0.0755065 -7685,3500:124,4,-52,0,0,0.0756285 -7686,3500:225,5,-52,0,0,0.0757507 -7687,3500:226,6,-52,0,0,0.0757362 -7688,3500:227,7,-52,0,0,0.0756787 -7689,3500:228,8,-52,0,0,0.0754706 -7690,3500:229,9,-52,0,0,0.0751771 -7691,3501:120,10,-52,0,0,0.0750273 -7692,3501:121,11,-52,0,0,0.075006 -7693,3501:122,12,-52,0,0,0.074899 -7694,3501:123,13,-52,0,0,0.0749062 -7695,3501:124,14,-52,0,0,0.0749275 -7696,3501:225,15,-52,0,0,0.0749275 -7697,3501:226,16,-52,0,0,0.0749275 -7698,3501:227,17,-52,0,0,0.0749418 -7699,3501:228,18,-52,0,0,0.0749418 -7700,3501:229,19,-52,0,0,0.0749562 -7701,3502:120,20,-52,0,0,0.074949 -7702,3502:121,21,-52,0,0,0.0749562 -7703,3502:122,22,-52,0,0,0.0749631 -7704,3502:123,23,-52,0,0,0.0749631 -7705,3502:124,24,-52,0,0,0.0750131 -7706,3502:225,25,-52,0,0,0.0749988 -7707,3502:226,26,-52,0,0,0.0750273 -7708,3502:227,27,-52,0,0,0.0752415 -7709,3502:228,28,-52,0,0,0.0753058 -7710,3502:229,29,-52,0,0,0.0751701 -7711,3503:120,30,-52,0,0,0.0751843 -7712,3503:121,31,-52,0,0,0.0753703 -7713,3503:122,32,-52,0,0,0.0754634 -7714,3503:123,33,-52,0,0,0.0754348 -7715,3503:124,34,-52,0,0,0.075313 -7716,3503:225,35,-52,0,0,0.0754203 -7717,3503:226,36,-52,0,0,0.0755711 -7718,3503:227,37,-52,0,0,0.0757362 -7719,3503:228,38,-52,0,0,0.0759091 -7720,3503:229,39,-52,0,0,0.076046 -7721,3504:120,40,-52,0,0,0.0764513 -7722,3504:121,41,-52,0,0,0.0765384 -7723,3504:122,42,-52,0,0,0.0766839 -7724,3504:123,43,-52,0,0,0.0764442 -7725,3504:124,44,-52,0,0,0.0762775 -7726,3504:225,45,-52,0,0,0.0761907 -7727,3504:226,46,-52,0,0,0.0762848 -7728,3504:227,47,-52,0,0,0.0753847 -7729,3504:228,48,-52,0,0,0.075163 -7730,3504:229,49,-52,0,0,0.0751701 -7731,3505:120,50,-52,0,0,0.0752343 -7732,3505:121,51,-52,0,0,0.0750416 -7733,3505:122,52,-52,0,0,0.0753272 -7734,3505:123,53,-52,0,0,0.0755352 -7735,3505:124,54,-52,0,0,0.0754492 -7736,3505:225,55,-52,0,0,0.0754779 -7737,3505:226,56,-52,0,0,0.0753917 -7738,3505:227,57,-52,0,0,0.0750702 -7739,3505:228,58,-52,0,0,0.075313 -7740,3505:229,59,-52,0,0,0.0755567 -7741,3506:120,60,-52,0,0,0.0752487 -7742,3506:121,61,-52,0,0,0.075837 -7743,3506:122,62,-52,0,0,0.0763064 -7744,3506:123,63,-52,0,0,0.0771067 -7745,3506:124,64,-52,0,0,0.0848548 -7746,3506:225,65,-52,0,0,0.0809651 -7747,3506:226,66,-52,0,0,0.0812332 -7748,3506:227,67,-52,0,0,0.0824607 -7749,3506:228,68,-52,0,0,0.0854151 -7750,3506:229,69,-52,0,0,0.0870994 -7751,3507:120,70,-52,0,0,0.0886974 -7752,3507:121,71,-52,0,0,0.0876154 -7753,3507:122,72,-52,0,0,0.0828347 -7754,3507:124,74,-52,0,0,0.0820961 -7755,3507:225,75,-52,0,0,0.0800373 -7756,3507:226,76,-52,0,0,0.0791191 -7757,3507:227,77,-52,0,0,0.0784258 -7758,3507:228,78,-52,0,0,0.077657 -7759,3507:229,79,-52,0,0,0.0774732 -7760,3508:120,80,-52,0,0,0.0769973 -7761,3508:121,81,-52,0,0,0.0766328 -7762,3508:122,82,-52,0,0,0.0762702 -7763,3508:123,83,-52,0,0,0.0760822 -7764,3508:124,84,-52,0,0,0.0765313 -7765,3508:225,85,-52,0,0,0.0763571 -7766,3508:226,86,-52,0,0,0.0761834 -7767,3508:227,87,-52,0,0,0.0801962 -7768,3508:228,88,-52,0,0,0.0857367 -7769,3508:229,89,-52,0,0,0.0842346 -7770,3509:120,90,-52,0,0,0.0846955 -7771,3509:121,91,-52,0,0,0.0900689 -7772,3509:122,92,-52,0,0,0.0910673 -7773,3509:123,93,-52,0,0,0.0846078 -7774,3509:124,94,-52,0,0,0.0869686 -7775,3509:225,95,-52,0,0,0.0858575 -7776,3509:226,96,-52,0,0,0.0878787 -7777,3509:227,97,-52,0,0,0.0884155 -7778,3509:228,98,-52,0,0,0.0900689 -7779,3509:229,99,-52,0,0,0.091485 -7780,3510:120,100,-52,0,0,0.090533 -7781,3510:121,101,-52,0,0,0.0891801 -7782,3510:122,102,-52,0,0,0.0903723 -7783,3510:123,103,-52,0,0,0.0931986 -7784,3510:124,104,-52,0,0,0.0941931 -7785,3510:225,105,-52,0,0,0.0892971 -7786,3510:226,106,-52,0,0,0.0892887 -7787,3510:227,107,-52,0,0,0.0893389 -7788,3510:228,108,-52,0,0,0.0871321 -7789,3510:229,109,-52,0,0,0.0870342 -7790,3511:120,110,-52,0,0,0.0879529 -7791,3511:121,111,-52,0,0,0.0875169 -7792,3511:122,112,-52,0,0,0.0872464 -7793,3511:123,113,-52,0,0,0.0878046 -7794,3511:124,114,-52,0,0,0.0913654 -7795,3511:225,115,-52,0,0,0.093686 -7796,3511:226,116,-52,0,0,0.095703 -7797,3511:227,117,-52,0,0,0.0973606 -7798,3511:228,118,-52,0,0,0.0988423 -7799,3511:229,119,-52,0,0,0.0997151 -7800,3512:120,120,-52,0,0,0.0998258 -7801,3512:121,121,-52,0,0,0.0988239 -7802,3512:122,122,-52,0,0,0.0979763 -7803,3512:123,123,-52,0,0,0.0999829 -7804,3512:124,124,-52,0,0,0.10245 -7805,3512:225,125,-52,0,0,0.101828 -7806,3512:226,126,-52,0,0,0.103294 -7807,3512:227,127,-52,0,0,0.103828 -7808,3512:228,128,-52,0,0,0.101734 -7809,3512:229,129,-52,0,0,0.101051 -7810,3513:120,130,-52,0,0,0.10563 -7811,3513:121,131,-52,0,0,0.104384 -7812,3513:122,132,-52,0,0,0.103924 -7813,3513:123,133,-52,0,0,0.102905 -7814,3513:124,134,-52,0,0,0.101294 -7815,3513:225,135,-52,0,0,0.10066 -7816,3513:226,136,-52,0,0,0.102403 -7817,3513:227,137,-52,0,0,0.102082 -7818,3513:228,138,-52,0,0,0.100186 -7819,3513:229,139,-52,0,0,0.10136 -7820,3514:120,140,-52,0,0,0.100261 -7821,3514:121,141,-52,0,0,0.0990528 -7822,3514:122,142,-52,0,0,0.0986685 -7823,3514:123,143,-52,0,0,0.100112 -7824,3514:124,144,-52,0,0,0.101725 -7825,3514:225,145,-52,0,0,0.0995217 -7826,3514:226,146,-52,0,0,0.0990162 -7827,3514:227,147,-52,0,0,0.099909 -7828,3514:228,148,-52,0,0,0.0986227 -7829,3514:229,149,-52,0,0,0.0964792 -7830,3515:120,150,-52,0,0,0.0896486 -7831,3515:121,151,-52,0,0,0.0827566 -7832,3515:122,152,-52,0,0,0.0885397 -7833,3515:123,153,-52,0,0,0.0919813 -7834,3515:124,154,-52,0,0,0.0936424 -7835,3515:225,155,-52,0,0,0.099411 -7836,3515:226,156,-52,0,0,0.101229 -7837,3515:227,157,-52,0,0,0.0970541 -7838,3515:228,158,-52,0,0,0.0975683 -8162,3512:112,122,-51,0,0,0.10213 -7839,3515:229,159,-52,0,0,0.0980218 -7840,3516:120,160,-52,0,0,0.0988789 -7841,3516:121,161,-52,0,0,0.100567 -7842,3516:122,162,-52,0,0,0.103867 -7843,3516:123,163,-52,0,0,0.103848 -7844,3516:124,164,-52,0,0,0.10815 -7845,3516:225,165,-52,0,0,0.110159 -7846,3516:226,166,-52,0,0,0.111739 -7847,3516:227,167,-52,0,0,0.114971 -7848,3516:228,168,-52,0,0,0.119814 -7849,3516:229,169,-52,0,0,0.124608 -7850,3517:120,170,-52,0,0,0.12863 -7851,3517:121,171,-52,0,0,0.127918 -7852,3517:122,172,-52,0,0,0.126833 -7853,3517:123,173,-52,0,0,0.127529 -7854,3517:124,174,-52,0,0,0.127849 -7855,3517:225,175,-52,0,0,0.127574 -7856,3517:226,176,-52,0,0,0.126731 -7857,3517:227,177,-52,0,0,0.123403 -7858,3517:228,178,-52,0,0,0.120173 -7859,3517:229,179,-52,0,0,0.118886 -7860,3518:120,180,-52,0,0,0.11299 -7861,5518:110,-180,-51,0,0,0.120129 -7862,5517:219,-179,-51,0,0,0.119771 -7863,5517:218,-178,-51,0,0,0.119858 -7864,5517:217,-177,-51,0,0,0.118038 -7865,5517:216,-176,-51,0,0,0.115443 -7866,5517:215,-175,-51,0,0,0.115947 -7867,5517:114,-174,-51,0,0,0.115695 -7868,5517:113,-173,-51,0,0,0.116665 -7869,5517:112,-172,-51,0,0,0.115045 -7870,5517:111,-171,-51,0,0,0.113309 -7871,5517:110,-170,-51,0,0,0.115464 -7872,5516:219,-169,-51,0,0,0.114596 -7873,5516:218,-168,-51,0,0,0.112887 -7874,5516:217,-167,-51,0,0,0.113785 -7875,5516:216,-166,-51,0,0,0.114909 -7876,5516:215,-165,-51,0,0,0.115485 -7877,5516:114,-164,-51,0,0,0.115684 -7878,5516:113,-163,-51,0,0,0.114523 -7879,5516:112,-162,-51,0,0,0.114127 -7880,5516:111,-161,-51,0,0,0.11176 -7881,5516:110,-160,-51,0,0,0.108022 -7882,5515:219,-159,-51,0,0,0.107183 -7883,5515:218,-158,-51,0,0,0.110451 -7884,5515:217,-157,-51,0,0,0.115705 -7885,5515:216,-156,-51,0,0,0.11495 -7886,5515:215,-155,-51,0,0,0.111984 -7887,5515:114,-154,-51,0,0,0.108976 -7888,5515:113,-153,-51,0,0,0.091127 -7889,5515:112,-152,-51,0,0,0.0916644 -7890,5515:111,-151,-51,0,0,0.091947 -7891,5515:110,-150,-51,0,0,0.0950117 -7892,5514:219,-149,-51,0,0,0.0948263 -7893,5514:218,-148,-51,0,0,0.0967931 -7894,5514:217,-147,-51,0,0,0.107429 -7895,5514:216,-146,-51,0,0,0.111129 -7896,5514:215,-145,-51,0,0,0.120433 -7897,5514:114,-144,-51,0,0,0.125215 -7898,5514:113,-143,-51,0,0,0.119004 -7899,5514:112,-142,-51,0,0,0.122263 -7900,5514:111,-141,-51,0,0,0.13541 -7901,5514:110,-140,-51,0,0,0.132609 -7902,5513:219,-139,-51,0,0,0.12499 -7903,5513:218,-138,-51,0,0,0.121943 -7904,5513:217,-137,-51,0,0,0.121427 -7905,5513:216,-136,-51,0,0,0.124631 -7906,5513:215,-135,-51,0,0,0.129011 -7907,5513:114,-134,-51,0,0,0.129196 -7908,5513:113,-133,-51,0,0,0.124788 -7909,5513:112,-132,-51,0,0,0.121121 -7910,5513:111,-131,-51,0,0,0.120118 -7911,5513:110,-130,-51,0,0,0.138115 -7912,5512:219,-129,-51,0,0,0.13922 -7913,5512:218,-128,-51,0,0,0.140394 -7914,5512:217,-127,-51,0,0,0.138128 -7915,5512:216,-126,-51,0,0,0.13395 -7916,5512:215,-125,-51,0,0,0.124642 -7917,5512:114,-124,-51,0,0,0.123214 -7918,5512:113,-123,-51,0,0,0.127278 -7919,5512:112,-122,-51,0,0,0.124653 -7920,5512:111,-121,-51,0,0,0.121999 -7921,5512:110,-120,-51,0,0,0.120804 -7922,5511:219,-119,-51,0,0,0.124608 -7923,5511:218,-118,-51,0,0,0.13389 -7924,5511:217,-117,-51,0,0,0.137956 -7925,5511:216,-116,-51,0,0,0.138507 -7926,5511:215,-115,-51,0,0,0.136388 -7927,5511:114,-114,-51,0,0,0.128768 -7928,5511:113,-113,-51,0,0,0.126572 -7929,5511:112,-112,-51,0,0,0.124923 -7930,5511:111,-111,-51,0,0,0.122771 -7931,5511:110,-110,-51,0,0,0.12605 -7932,5510:219,-109,-51,0,0,0.124687 -7933,5510:218,-108,-51,0,0,0.123392 -7934,5510:217,-107,-51,0,0,0.12276 -7935,5510:216,-106,-51,0,0,0.121976 -7936,5510:215,-105,-51,0,0,0.126061 -7937,5510:114,-104,-51,0,0,0.131525 -7938,5510:113,-103,-51,0,0,0.13487 -7939,5510:112,-102,-51,0,0,0.133046 -7940,5510:111,-101,-51,0,0,0.131877 -7941,5510:110,-100,-51,0,0,0.131291 -7942,5509:219,-99,-51,0,0,0.129833 -7943,5509:218,-98,-51,0,0,0.130158 -7944,5509:217,-97,-51,0,0,0.125102 -7945,5509:216,-96,-51,0,0,0.120542 -7946,5509:215,-95,-51,0,0,0.12656 -8271,5513:100,-130,-50,0,0,0.13511 -7947,5509:114,-94,-51,0,0,0.130146 -7948,5509:113,-93,-51,0,0,0.128734 -7949,5509:112,-92,-51,0,0,0.128274 -7950,5509:111,-91,-51,0,0,0.12801 -7951,5509:110,-90,-51,0,0,0.126879 -7952,5508:219,-89,-51,0,0,0.126981 -7953,5508:218,-88,-51,0,0,0.126027 -7954,5508:217,-87,-51,0,0,0.125181 -7955,5508:216,-86,-51,0,0,0.126345 -7956,5508:215,-85,-51,0,0,0.128607 -7957,5508:114,-84,-51,0,0,0.131713 -7958,5508:113,-83,-51,0,0,0.129612 -7959,5508:112,-82,-51,0,0,0.128458 -7960,5508:111,-81,-51,0,0,0.127221 -7961,5508:110,-80,-51,0,0,0.126413 -7962,5507:219,-79,-51,0,0,0.129786 -7963,5507:218,-78,-51,0,0,0.131021 -7964,5507:217,-77,-51,0,0,0.131877 -7965,5507:216,-76,-51,0,0,0.131033 -7966,5507:215,-75,-51,0,0,0.128481 -7967,5507:114,-74,-51,0,0,0.125858 -7968,5507:113,-73,-51,0,0,0.123004 -7969,5507:112,-72,-51,0,0,0.123681 -7970,5507:111,-71,-51,0,0,0.122153 -7971,5507:110,-70,-51,0,0,0.119231 -7972,5506:219,-69,-51,0,0,0.111414 -7973,5506:218,-68,-51,0,0,0.105912 -7974,5506:217,-67,-51,0,0,0.104394 -7975,5506:216,-66,-51,0,0,0.101416 -7976,5506:215,-65,-51,0,0,0.100455 -7977,5506:114,-64,-51,0,0,0.0981216 -7978,5506:113,-63,-51,0,0,0.100085 -7979,5506:112,-62,-51,0,0,0.0961664 -7980,5506:111,-61,-51,0,0,0.0950912 -7981,5506:110,-60,-51,0,0,0.101163 -7982,5505:219,-59,-51,0,0,0.0985773 -7983,5505:218,-58,-51,0,0,0.0959967 -7984,5505:217,-57,-51,0,0,0.0936597 -7985,5505:216,-56,-51,0,0,0.0864886 -7986,5505:215,-55,-51,0,0,0.0884982 -7987,5505:114,-54,-51,0,0,0.0886559 -7988,5505:113,-53,-51,0,0,0.0882498 -7989,5505:112,-52,-51,0,0,0.0839735 -7990,5505:111,-51,-51,0,0,0.0790218 -7991,5505:110,-50,-51,0,0,0.0789771 -7992,5504:219,-49,-51,0,0,0.0794191 -7993,5504:218,-48,-51,0,0,0.0813636 -7994,5504:217,-47,-51,0,0,0.0882004 -7995,5504:216,-46,-51,0,0,0.0944829 -7996,5504:215,-45,-51,0,0,0.0912886 -7997,5504:114,-44,-51,0,0,0.0804239 -7998,5504:113,-43,-51,0,0,0.0840447 -7999,5504:112,-42,-51,0,0,0.0849506 -8000,5504:111,-41,-51,0,0,0.0848468 -8001,5504:110,-40,-51,0,0,0.0820805 -8002,5503:219,-39,-51,0,0,0.0832728 -8003,5503:218,-38,-51,0,0,0.0866592 -8004,5503:217,-37,-51,0,0,0.0844806 -8005,5503:216,-36,-51,0,0,0.0807284 -8006,5503:215,-35,-51,0,0,0.0843616 -8007,5503:114,-34,-51,0,0,0.0847035 -8008,5503:113,-33,-51,0,0,0.084298 -8009,5503:112,-32,-51,0,0,0.0815402 -8010,5503:111,-31,-51,0,0,0.0816018 -8011,5503:110,-30,-51,0,0,0.0802492 -8012,5502:219,-29,-51,0,0,0.0808581 -8013,5502:218,-28,-51,0,0,0.0780035 -8014,5502:217,-27,-51,0,0,0.0777601 -8015,5502:216,-26,-51,0,0,0.0778042 -8016,5502:215,-25,-51,0,0,0.0785446 -8017,5502:114,-24,-51,0,0,0.088093 -8018,5502:113,-23,-51,0,0,0.0895731 -8019,5502:112,-22,-51,0,0,0.0888219 -8020,5502:111,-21,-51,0,0,0.0857527 -8021,5502:110,-20,-51,0,0,0.0819646 -8022,5501:219,-19,-51,0,0,0.082983 -8023,5501:218,-18,-51,0,0,0.0825695 -8024,5501:217,-17,-51,0,0,0.0804315 -8025,5501:216,-16,-51,0,0,0.0786489 -8026,5501:215,-15,-51,0,0,0.0785149 -8027,5501:114,-14,-51,0,0,0.0787755 -8028,5501:113,-13,-51,0,0,0.0797653 -8029,5501:112,-12,-51,0,0,0.0804315 -8030,5501:111,-11,-51,0,0,0.080022 -8031,5501:110,-10,-51,0,0,0.0787755 -8032,5500:219,-9,-51,0,0,0.0793366 -8033,5500:218,-8,-51,0,0,0.079788 -8034,5500:217,-7,-51,0,0,0.0796447 -8035,5500:216,-6,-51,0,0,0.0776127 -8036,5500:215,-5,-51,0,0,0.0771141 -8037,5500:114,-4,-51,0,0,0.0756428 -8038,5500:113,-3,-51,0,0,0.0754993 -8039,5500:112,-2,-51,0,0,0.0754275 -8040,5500:111,-1,-51,0,0,0.0751344 -8041,3500:111,0,-51,0,0,0.074899 -8042,3500:111,1,-51,0,0,0.074828 -8043,3500:112,2,-51,0,0,0.0749205 -8044,3500:113,3,-51,0,0,0.0755567 -8045,3500:114,4,-51,0,0,0.07565 -8046,3500:215,5,-51,0,0,0.0755207 -8047,3500:216,6,-51,0,0,0.0752343 -8048,3500:217,7,-51,0,0,0.0749631 -8049,3500:218,8,-51,0,0,0.075006 -8050,3500:219,9,-51,0,0,0.0750843 -8051,3501:110,10,-51,0,0,0.0748493 -8052,3501:111,11,-51,0,0,0.0747996 -8053,3501:112,12,-51,0,0,0.0748208 -8054,3501:113,13,-51,0,0,0.0748564 -8055,3501:114,14,-51,0,0,0.074899 -8056,3501:215,15,-51,0,0,0.0748705 -8057,3501:216,16,-51,0,0,0.0748636 -8058,3501:217,17,-51,0,0,0.0748421 -8059,3501:218,18,-51,0,0,0.074828 -8060,3501:219,19,-51,0,0,0.0748208 -8061,3502:110,20,-51,0,0,0.0747924 -8062,3502:111,21,-51,0,0,0.0749846 -8063,3502:112,22,-51,0,0,0.0749275 -8064,3502:113,23,-51,0,0,0.0748421 -8065,3502:114,24,-51,0,0,0.0748564 -8066,3502:215,25,-51,0,0,0.0749703 -8067,3502:216,26,-51,0,0,0.0751059 -8068,3502:217,27,-51,0,0,0.0751344 -8069,3502:218,28,-51,0,0,0.0749346 -8070,3502:219,29,-51,0,0,0.0750201 -8071,3503:110,30,-51,0,0,0.0750345 -8072,3503:111,31,-51,0,0,0.0752343 -8073,3503:112,32,-51,0,0,0.075063 -8074,3503:113,33,-51,0,0,0.0752057 -8075,3503:114,34,-51,0,0,0.07635 -8076,3503:215,35,-51,0,0,0.07827 -8077,3503:216,36,-51,0,0,0.0774217 -8078,3503:217,37,-51,0,0,0.0757795 -8079,3503:218,38,-51,0,0,0.0777232 -8080,3503:219,39,-51,0,0,0.0767347 -8081,3504:110,40,-51,0,0,0.0772092 -8082,3504:111,41,-51,0,0,0.0778634 -8083,3504:112,42,-51,0,0,0.0780405 -8084,3504:113,43,-51,0,0,0.0780405 -8085,3504:114,44,-51,0,0,0.077635 -8086,3504:215,45,-51,0,0,0.0769681 -8087,3504:216,46,-51,0,0,0.0771799 -8088,3504:217,47,-51,0,0,0.0778116 -8089,3504:218,48,-51,0,0,0.0774878 -8090,3504:219,49,-51,0,0,0.0766184 -8091,3505:110,50,-51,0,0,0.0766184 -8092,3505:111,51,-51,0,0,0.0758515 -8093,3505:112,52,-51,0,0,0.0772092 -8094,3505:113,53,-51,0,0,0.0790145 -8095,3505:114,54,-51,0,0,0.0758225 -8096,3505:215,55,-51,0,0,0.0774952 -8097,3505:216,56,-51,0,0,0.0762485 -8098,3505:217,57,-51,0,0,0.07565 -8099,3505:218,58,-51,0,0,0.0778116 -8100,3505:219,59,-51,0,0,0.0843219 -8101,3506:110,60,-51,0,0,0.0788873 -8102,3506:111,61,-51,0,0,0.0832336 -8103,3506:112,62,-51,0,0,0.0826864 -8104,3506:113,63,-51,0,0,0.0781588 -8105,3506:114,64,-51,0,0,0.0817638 -8106,3506:215,65,-51,0,0,0.0872057 -8107,3506:216,66,-51,0,0,0.0877551 -8108,3506:217,67,-51,0,0,0.0856078 -8109,3506:218,68,-51,0,0,0.0868708 -8110,3506:219,69,-51,0,0,0.0878867 -8111,3507:110,70,-51,0,0,0.088316 -8112,3507:111,71,-51,0,0,0.0902036 -8113,3507:112,72,-51,0,0,0.08303 -8114,3507:114,74,-51,0,0,0.0800978 -8115,3507:215,75,-51,0,0,0.0794491 -8116,3507:216,76,-51,0,0,0.0790145 -8117,3507:217,77,-51,0,0,0.0793891 -8118,3507:218,78,-51,0,0,0.0792691 -8119,3507:219,79,-51,0,0,0.077532 -8120,3508:110,80,-51,0,0,0.0770996 -8121,3508:111,81,-51,0,0,0.0770849 -8122,3508:112,82,-51,0,0,0.0773044 -8123,3508:113,83,-51,0,0,0.0772459 -8124,3508:114,84,-51,0,0,0.0773924 -8125,3508:215,85,-51,0,0,0.0768806 -8126,3508:216,86,-51,0,0,0.0779149 -8127,3508:217,87,-51,0,0,0.0880351 -8128,3508:218,88,-51,0,0,0.0964704 -8129,3508:219,89,-51,0,0,0.0910673 -8130,3509:110,90,-51,0,0,0.0889718 -8131,3509:111,91,-51,0,0,0.0898333 -8132,3509:112,92,-51,0,0,0.090855 -8133,3509:113,93,-51,0,0,0.0909568 -8134,3509:114,94,-51,0,0,0.0901699 -8135,3509:215,95,-51,0,0,0.089741 -8136,3509:216,96,-51,0,0,0.0877963 -8137,3509:217,97,-51,0,0,0.0874759 -8138,3509:218,98,-51,0,0,0.0881507 -8139,3509:219,99,-51,0,0,0.0895481 -8140,3510:110,100,-51,0,0,0.0918871 -8141,3510:111,101,-51,0,0,0.0916302 -8142,3510:112,102,-51,0,0,0.0913909 -8143,3510:113,103,-51,0,0,0.0947733 -8144,3510:114,104,-51,0,0,0.0965688 -8145,3510:215,105,-51,0,0,0.0955696 -8146,3510:216,106,-51,0,0,0.0950292 -8147,3510:217,107,-51,0,0,0.0928259 -8148,3510:218,108,-51,0,0,0.0904992 -8149,3510:219,109,-51,0,0,0.09533 -8150,3511:110,110,-51,0,0,0.0971891 -8151,3511:111,111,-51,0,0,0.0970091 -8152,3511:112,112,-51,0,0,0.0944038 -8153,3511:113,113,-51,0,0,0.101285 -8154,3511:114,114,-51,0,0,0.104029 -8155,3511:215,115,-51,0,0,0.0977858 -8156,3511:216,116,-51,0,0,0.0976136 -8157,3511:217,117,-51,0,0,0.0986411 -8158,3511:218,118,-51,0,0,0.0989795 -8159,3511:219,119,-51,0,0,0.100781 -8160,3512:110,120,-51,0,0,0.100892 -8161,3512:111,121,-51,0,0,0.102252 -8163,3512:113,123,-51,0,0,0.102943 -8164,3512:114,124,-51,0,0,0.103047 -8165,3512:215,125,-51,0,0,0.102848 -8166,3512:216,126,-51,0,0,0.103114 -8167,3512:217,127,-51,0,0,0.104653 -8168,3512:218,128,-51,0,0,0.105824 -8169,3512:219,129,-51,0,0,0.106869 -8170,3513:110,130,-51,0,0,0.107873 -8171,3513:111,131,-51,0,0,0.108042 -8172,3513:112,132,-51,0,0,0.108329 -8173,3513:113,133,-51,0,0,0.108071 -8174,3513:114,134,-51,0,0,0.104827 -8175,3513:215,135,-51,0,0,0.1028 -8176,3513:216,136,-51,0,0,0.104096 -8177,3513:217,137,-51,0,0,0.103924 -8178,3513:218,138,-51,0,0,0.10319 -8179,3513:219,139,-51,0,0,0.103266 -8180,3514:110,140,-51,0,0,0.102469 -8181,3514:111,141,-51,0,0,0.102962 -8182,3514:112,142,-51,0,0,0.103943 -8183,3514:113,143,-51,0,0,0.10561 -8184,3514:114,144,-51,0,0,0.105339 -8185,3514:215,145,-51,0,0,0.104596 -8186,3514:216,146,-51,0,0,0.103838 -8187,3514:217,147,-51,0,0,0.101838 -8188,3514:218,148,-51,0,0,0.099108 -8189,3514:219,149,-51,0,0,0.0956672 -8190,3515:110,150,-51,0,0,0.0862049 -8191,3515:111,151,-51,0,0,0.0895984 -8192,3515:112,152,-51,0,0,0.0901951 -8193,3515:113,153,-51,0,0,0.0927307 -8194,3515:114,154,-51,0,0,0.0945707 -8195,3515:215,155,-51,0,0,0.0990162 -8196,3515:216,156,-51,0,0,0.100846 -8197,3515:217,157,-51,0,0,0.0997059 -8198,3515:218,158,-51,0,0,0.0996873 -8199,3515:219,159,-51,0,0,0.100753 -8200,3516:110,160,-51,0,0,0.108289 -8201,3516:111,161,-51,0,0,0.111638 -8202,3516:112,162,-51,0,0,0.12778 -8203,3516:113,163,-51,0,0,0.129937 -8204,3516:114,164,-51,0,0,0.131936 -8205,3516:215,165,-51,0,0,0.128607 -8206,3516:216,166,-51,0,0,0.120837 -8207,3516:217,167,-51,0,0,0.130706 -8208,3516:218,168,-51,0,0,0.132019 -8209,3516:219,169,-51,0,0,0.13196 -8210,3517:110,170,-51,0,0,0.130753 -8211,3517:111,171,-51,0,0,0.12762 -8212,3517:112,172,-51,0,0,0.12801 -8213,3517:113,173,-51,0,0,0.128228 -8214,3517:114,174,-51,0,0,0.127998 -8215,3517:215,175,-51,0,0,0.126526 -8216,3517:216,176,-51,0,0,0.124743 -8217,3517:217,177,-51,0,0,0.122252 -8218,3517:218,178,-51,0,0,0.123303 -8219,3517:219,179,-51,0,0,0.123037 -8220,3518:110,180,-51,0,0,0.120129 -8221,5518:100,-180,-50,0,0,0.132585 -8222,5517:209,-179,-50,0,0,0.125994 -8223,5517:208,-178,-50,0,0,0.120608 -8224,5517:207,-177,-50,0,0,0.122583 -8225,5517:206,-176,-50,0,0,0.123904 -8226,5517:205,-175,-50,0,0,0.125756 -8227,5517:104,-174,-50,0,0,0.125835 -8228,5517:103,-173,-50,0,0,0.123481 -8229,5517:102,-172,-50,0,0,0.12202 -8230,5517:101,-171,-50,0,0,0.123626 -8231,5517:100,-170,-50,0,0,0.125361 -8232,5516:209,-169,-50,0,0,0.121746 -8233,5516:208,-168,-50,0,0,0.118477 -8234,5516:207,-167,-50,0,0,0.119912 -8235,5516:206,-166,-50,0,0,0.124071 -8236,5516:205,-165,-50,0,0,0.12287 -8237,5516:104,-164,-50,0,0,0.121077 -8238,5516:103,-163,-50,0,0,0.120979 -8239,5516:102,-162,-50,0,0,0.120183 -8240,5516:101,-161,-50,0,0,0.119177 -8241,5516:100,-160,-50,0,0,0.117622 -8242,5515:209,-159,-50,0,0,0.116348 -8243,5515:208,-158,-50,0,0,0.121164 -8244,5515:207,-157,-50,0,0,0.127038 -8245,5515:206,-156,-50,0,0,0.121515 -8246,5515:205,-155,-50,0,0,0.118617 -8247,5515:104,-154,-50,0,0,0.116697 -8248,5515:103,-153,-50,0,0,0.110673 -8249,5515:102,-152,-50,0,0,0.0973155 -8250,5515:101,-151,-50,0,0,0.0973967 -8251,5515:100,-150,-50,0,0,0.101659 -8252,5514:209,-149,-50,0,0,0.10027 -8253,5514:208,-148,-50,0,0,0.0973786 -8254,5514:207,-147,-50,0,0,0.108121 -8255,5514:206,-146,-50,0,0,0.116063 -8256,5514:205,-145,-50,0,0,0.12134 -8257,5514:104,-144,-50,0,0,0.122351 -8258,5514:103,-143,-50,0,0,0.121285 -8259,5514:102,-142,-50,0,0,0.123336 -8260,5514:101,-141,-50,0,0,0.13196 -8261,5514:100,-140,-50,0,0,0.138949 -8262,5513:209,-139,-50,0,0,0.136146 -8263,5513:208,-138,-50,0,0,0.128964 -8264,5513:207,-137,-50,0,0,0.133938 -8265,5513:206,-136,-50,0,0,0.135038 -8266,5513:205,-135,-50,0,0,0.135422 -8267,5513:104,-134,-50,0,0,0.130461 -8268,5513:103,-133,-50,0,0,0.128251 -8269,5513:102,-132,-50,0,0,0.125767 -8270,5513:101,-131,-50,0,0,0.12553 -8272,5512:209,-129,-50,0,0,0.137481 -8273,5512:208,-128,-50,0,0,0.143851 -8274,5512:207,-127,-50,0,0,0.153965 -8275,5512:206,-126,-50,0,0,0.154353 -8276,5512:205,-125,-50,0,0,0.148 -8277,5512:104,-124,-50,0,0,0.135134 -8278,5512:103,-123,-50,0,0,0.128918 -8279,5512:102,-122,-50,0,0,0.123737 -8280,5512:101,-121,-50,0,0,0.127163 -8281,5512:100,-120,-50,0,0,0.129427 -8282,5511:209,-119,-50,0,0,0.132372 -8283,5511:208,-118,-50,0,0,0.135386 -8284,5511:207,-117,-50,0,0,0.13922 -8285,5511:206,-116,-50,0,0,0.138802 -8286,5511:205,-115,-50,0,0,0.13697 -8287,5511:104,-114,-50,0,0,0.129057 -8288,5511:103,-113,-50,0,0,0.128734 -8289,5511:102,-112,-50,0,0,0.129392 -8290,5511:101,-111,-50,0,0,0.131267 -8291,5511:100,-110,-50,0,0,0.13281 -8292,5510:209,-109,-50,0,0,0.134069 -8293,5510:208,-108,-50,0,0,0.133985 -8294,5510:207,-107,-50,0,0,0.131631 -8295,5510:206,-106,-50,0,0,0.129462 -8296,5510:205,-105,-50,0,0,0.13196 -8297,5510:104,-104,-50,0,0,0.137346 -8298,5510:103,-103,-50,0,0,0.137201 -8299,5510:102,-102,-50,0,0,0.132195 -8300,5510:101,-101,-50,0,0,0.134571 -8301,5510:100,-100,-50,0,0,0.132184 -8302,5509:209,-99,-50,0,0,0.130869 -8303,5509:208,-98,-50,0,0,0.129833 -8304,5509:207,-97,-50,0,0,0.126333 -8305,5509:206,-96,-50,0,0,0.126787 -8306,5509:205,-95,-50,0,0,0.130589 -8307,5509:104,-94,-50,0,0,0.13216 -8308,5509:103,-93,-50,0,0,0.130472 -8309,5509:102,-92,-50,0,0,0.130916 -8310,5509:101,-91,-50,0,0,0.133902 -8311,5509:100,-90,-50,0,0,0.132738 -8312,5508:209,-89,-50,0,0,0.130181 -8313,5508:208,-88,-50,0,0,0.128113 -8314,5508:207,-87,-50,0,0,0.129323 -8315,5508:206,-86,-50,0,0,0.130205 -8316,5508:205,-85,-50,0,0,0.132999 -8317,5508:104,-84,-50,0,0,0.134296 -8318,5508:103,-83,-50,0,0,0.130706 -8319,5508:102,-82,-50,0,0,0.13024 -8320,5508:101,-81,-50,0,0,0.132349 -8321,5508:100,-80,-50,0,0,0.131725 -8322,5507:209,-79,-50,0,0,0.129949 -8323,5507:208,-78,-50,0,0,0.130577 -8324,5507:207,-77,-50,0,0,0.133319 -8325,5507:206,-76,-50,0,0,0.134774 -8326,5507:205,-75,-50,0,0,0.133628 -8327,5507:104,-74,-50,0,0,0.13242 -8328,5507:103,-73,-50,0,0,0.134607 -8329,5507:102,-72,-50,0,0,0.13714 -8330,5507:101,-71,-50,0,0,0.136049 -8331,5507:100,-70,-50,0,0,0.132077 -8332,5506:209,-69,-50,0,0,0.126208 -8333,5506:208,-68,-50,0,0,0.114689 -8334,5506:207,-67,-50,0,0,0.108936 -8335,5506:206,-66,-50,0,0,0.109546 -8336,5506:205,-65,-50,0,0,0.110936 -8337,5506:104,-64,-50,0,0,0.114898 -8338,5506:103,-63,-50,0,0,0.121625 -8339,5506:102,-62,-50,0,0,0.121186 -8340,5506:101,-61,-50,0,0,0.115359 -8341,5506:100,-60,-50,0,0,0.101763 -8342,5505:209,-59,-50,0,0,0.100911 -8343,5505:208,-58,-50,0,0,0.0947997 -8344,5505:207,-57,-50,0,0,0.0942632 -8345,5505:206,-56,-50,0,0,0.0917757 -8346,5505:205,-55,-50,0,0,0.0913568 -8347,5505:104,-54,-50,0,0,0.0964076 -8348,5505:103,-53,-50,0,0,0.0952238 -8349,5505:102,-52,-50,0,0,0.0911951 -8350,5505:101,-51,-50,0,0,0.0883657 -8351,5505:100,-50,-50,0,0,0.0859705 -8352,5504:209,-49,-50,0,0,0.088631 -8353,5504:208,-48,-50,0,0,0.0954807 -8354,5504:207,-47,-50,0,0,0.0964346 -8355,5504:206,-46,-50,0,0,0.0926961 -8356,5504:205,-45,-50,0,0,0.0904316 -8357,5504:104,-44,-50,0,0,0.0886891 -8358,5504:103,-43,-50,0,0,0.0861644 -8359,5504:102,-42,-50,0,0,0.0917328 -8360,5504:101,-41,-50,0,0,0.0892303 -8361,5504:100,-40,-50,0,0,0.0904737 -8362,5503:209,-39,-50,0,0,0.0924285 -8363,5503:208,-38,-50,0,0,0.0875252 -8364,5503:207,-37,-50,0,0,0.0876565 -8365,5503:206,-36,-50,0,0,0.0876319 -8366,5503:205,-35,-50,0,0,0.0882582 -8367,5503:104,-34,-50,0,0,0.0855837 -8368,5503:103,-33,-50,0,0,0.0845044 -8369,5503:102,-32,-50,0,0,0.084775 -8370,5503:101,-31,-50,0,0,0.0850225 -8371,5503:100,-30,-50,0,0,0.0836658 -8372,5502:209,-29,-50,0,0,0.0838944 -8373,5502:208,-28,-50,0,0,0.0837052 -8374,5502:207,-27,-50,0,0,0.0825851 -8375,5502:206,-26,-50,0,0,0.0841712 -8376,5502:205,-25,-50,0,0,0.0847991 -8377,5502:104,-24,-50,0,0,0.0894058 -8378,5502:103,-23,-50,0,0,0.0913485 -8379,5502:102,-22,-50,0,0,0.0870503 -8380,5502:101,-21,-50,0,0,0.0863749 -8381,5502:100,-20,-50,0,0,0.0857205 -8382,5501:209,-19,-50,0,0,0.0850545 -8383,5501:208,-18,-50,0,0,0.0861725 -8384,5501:207,-17,-50,0,0,0.0853267 -8385,5501:206,-16,-50,0,0,0.0851507 -8386,5501:205,-15,-50,0,0,0.0838708 -8387,5501:104,-14,-50,0,0,0.0827956 -8388,5501:103,-13,-50,0,0,0.0830847 -8389,5501:102,-12,-50,0,0,0.0840287 -8390,5501:101,-11,-50,0,0,0.085624 -8391,5501:100,-10,-50,0,0,0.0846476 -8392,5500:209,-9,-50,0,0,0.0830142 -8393,5500:208,-8,-50,0,0,0.0839814 -8394,5500:207,-7,-50,0,0,0.0828423 -8395,5500:206,-6,-50,0,0,0.0827799 -8396,5500:205,-5,-50,0,0,0.0814787 -8397,5500:104,-4,-50,0,0,0.0821271 -8398,5500:103,-3,-50,0,0,0.0804012 -8399,5500:102,-2,-50,0,0,0.0813943 -8400,5500:101,-1,-50,0,0,0.0813174 -8401,3500:101,0,-50,0,0,0.0806066 -8402,3500:101,1,-50,0,0,0.0794792 -8403,3500:102,2,-50,0,0,0.0790218 -8404,3500:103,3,-50,0,0,0.0770775 -8405,3500:104,4,-50,0,0,0.0766184 -8406,3500:205,5,-50,0,0,0.0761689 -8407,3500:206,6,-50,0,0,0.0768003 -8408,3500:207,7,-50,0,0,0.0769315 -8409,3500:208,8,-50,0,0,0.0769389 -8410,3500:209,9,-50,0,0,0.0772092 -8411,3501:100,10,-50,0,0,0.0758803 -8412,3501:101,11,-50,0,0,0.0749846 -8413,3501:102,12,-50,0,0,0.0749703 -8414,3501:103,13,-50,0,0,0.0750702 -8415,3501:104,14,-50,0,0,0.0749916 -8416,3501:205,15,-50,0,0,0.0749133 -8417,3501:206,16,-50,0,0,0.0748777 -8418,3501:207,17,-50,0,0,0.0748421 -8419,3501:208,18,-50,0,0,0.0748208 -8420,3501:209,19,-50,0,0,0.0749062 -8421,3502:100,20,-50,0,0,0.075313 -8422,3502:101,21,-50,0,0,0.075765 -8423,3502:102,22,-50,0,0,0.0757002 -8424,3502:103,23,-50,0,0,0.0753847 -8425,3502:104,24,-50,0,0,0.0754849 -8426,3502:205,25,-50,0,0,0.07614 -8427,3502:206,26,-50,0,0,0.0765676 -8428,3502:207,27,-50,0,0,0.0763354 -8429,3502:208,28,-50,0,0,0.0754921 -8430,3502:209,29,-50,0,0,0.0762918 -8431,3503:100,30,-50,0,0,0.0773559 -8432,3503:101,31,-50,0,0,0.0766401 -8433,3503:102,32,-50,0,0,0.0765747 -8434,3503:103,33,-50,0,0,0.0759595 -8435,3503:104,34,-50,0,0,0.0772018 -8436,3503:205,35,-50,0,0,0.0805761 -8437,3503:206,36,-50,0,0,0.0787605 -8438,3503:207,37,-50,0,0,0.0793815 -8439,3503:208,38,-50,0,0,0.0794868 -8440,3503:209,39,-50,0,0,0.079254 -8441,3504:100,40,-50,0,0,0.0790218 -8442,3504:101,41,-50,0,0,0.0793064 -8443,3504:102,42,-50,0,0,0.0794792 -8444,3504:103,43,-50,0,0,0.0799768 -8445,3504:104,44,-50,0,0,0.0807435 -8446,3504:205,45,-50,0,0,0.0853509 -8447,3504:206,46,-50,0,0,0.083926 -8448,3504:207,47,-50,0,0,0.0803025 -8449,3504:208,48,-50,0,0,0.0791191 -8450,3504:209,49,-50,0,0,0.0800525 -8451,3505:100,50,-50,0,0,0.0812713 -8452,3505:101,51,-50,0,0,0.08181 -8453,3505:102,52,-50,0,0,0.0866185 -8454,3505:103,53,-50,0,0,0.0898584 -8455,3505:104,54,-50,0,0,0.0872546 -8456,3505:205,55,-50,0,0,0.0819491 -8457,3505:206,56,-50,0,0,0.0839183 -8458,3505:207,57,-50,0,0,0.084584 -8459,3505:208,58,-50,0,0,0.0852626 -8460,3505:209,59,-50,0,0,0.0876482 -8461,3506:100,60,-50,0,0,0.0880434 -8462,3506:101,61,-50,0,0,0.085648 -8463,3506:102,62,-50,0,0,0.0886723 -8464,3506:103,63,-50,0,0,0.0886723 -8465,3506:104,64,-50,0,0,0.0931292 -8466,3506:205,65,-50,0,0,0.0961394 -8467,3506:206,66,-50,0,0,0.0933288 -8468,3506:207,67,-50,0,0,0.0863344 -8469,3506:208,68,-50,0,0,0.0893639 -8470,3506:209,69,-50,0,0,0.0889469 -8471,3507:100,70,-50,0,0,0.0915277 -8472,3507:101,71,-50,0,0,0.0919986 -8473,3507:102,72,-50,0,0,0.0889634 -8474,3507:104,74,-50,0,0,0.0829205 -8475,3507:205,75,-50,0,0,0.0846955 -8476,3507:206,76,-50,0,0,0.0849267 -8477,3507:207,77,-50,0,0,0.0841159 -8478,3507:208,78,-50,0,0,0.0838313 -8479,3507:209,79,-50,0,0,0.0827644 -8480,3508:100,80,-50,0,0,0.0805531 -8481,3508:101,81,-50,0,0,0.0800828 -8482,3508:102,82,-50,0,0,0.079284 -8483,3508:103,83,-50,0,0,0.0777084 -8484,3508:104,84,-50,0,0,0.077224 -8485,3508:205,85,-50,0,0,0.0772385 -8486,3508:206,86,-50,0,0,0.0807971 -8487,3508:207,87,-50,0,0,0.0984222 -8488,3508:208,88,-50,0,0,0.099872 -8489,3508:209,89,-50,0,0,0.0976772 -8490,3509:100,90,-50,0,0,0.0961394 -8491,3509:101,91,-50,0,0,0.0968471 -8492,3509:102,92,-50,0,0,0.0948174 -8493,3509:103,93,-50,0,0,0.0928259 -8494,3509:104,94,-50,0,0,0.0932421 -8495,3509:205,95,-50,0,0,0.0911525 -8496,3509:206,96,-50,0,0,0.0893974 -8497,3509:207,97,-50,0,0,0.0909568 -8498,3509:208,98,-50,0,0,0.0908464 -8499,3509:209,99,-50,0,0,0.0888636 -8500,3510:100,100,-50,0,0,0.0915191 -8501,3510:101,101,-50,0,0,0.093103 -8502,3510:102,102,-50,0,0,0.0940268 -8503,3510:103,103,-50,0,0,0.0972433 -8504,3510:104,104,-50,0,0,0.0982307 -8505,3510:205,105,-50,0,0,0.0987965 -8506,3510:206,106,-50,0,0,0.100122 -8507,3510:207,107,-50,0,0,0.100094 -8508,3510:208,108,-50,0,0,0.10079 -8509,3510:209,109,-50,0,0,0.101341 -8510,3511:100,110,-50,0,0,0.101033 -8511,3511:101,111,-50,0,0,0.102791 -8512,3511:102,112,-50,0,0,0.10107 -8513,3511:103,113,-50,0,0,0.100818 -8514,3511:104,114,-50,0,0,0.105194 -8515,3511:205,115,-50,0,0,0.104788 -8516,3511:206,116,-50,0,0,0.108101 -8517,3511:207,117,-50,0,0,0.109917 -8518,3511:208,118,-50,0,0,0.109506 -8519,3511:209,119,-50,0,0,0.109877 -8520,3512:100,120,-50,0,0,0.106077 -8521,3512:101,121,-50,0,0,0.103399 -8522,3512:102,122,-50,0,0,0.104856 -8523,3512:103,123,-50,0,0,0.105921 -8524,3512:104,124,-50,0,0,0.103523 -8525,3512:205,125,-50,0,0,0.103475 -8526,3512:206,126,-50,0,0,0.107173 -8527,3512:207,127,-50,0,0,0.110279 -8528,3512:208,128,-50,0,0,0.109676 -8529,3512:209,129,-50,0,0,0.107715 -8530,3513:100,130,-50,0,0,0.107468 -8531,3513:101,131,-50,0,0,0.107745 -8532,3513:102,132,-50,0,0,0.108786 -8533,3513:103,133,-50,0,0,0.108776 -8534,3513:104,134,-50,0,0,0.107508 -8535,3513:205,135,-50,0,0,0.105252 -8536,3513:206,136,-50,0,0,0.105912 -8537,3513:207,137,-50,0,0,0.106526 -8538,3513:208,138,-50,0,0,0.107232 -8539,3513:209,139,-50,0,0,0.105001 -8540,3514:100,140,-50,0,0,0.104991 -8541,3514:101,141,-50,0,0,0.106448 -8542,3514:102,142,-50,0,0,0.108032 -8543,3514:103,143,-50,0,0,0.109085 -8544,3514:104,144,-50,0,0,0.109166 -8545,3514:205,145,-50,0,0,0.108836 -8546,3514:206,146,-50,0,0,0.10817 -8547,3514:207,147,-50,0,0,0.105775 -8548,3514:208,148,-50,0,0,0.104067 -8549,3514:209,149,-50,0,0,0.0988605 -8550,3515:100,150,-50,0,0,0.0882415 -8551,3515:101,151,-50,0,0,0.0948438 -8552,3515:102,152,-50,0,0,0.0945973 -8553,3515:103,153,-50,0,0,0.097795 -8554,3515:104,154,-50,0,0,0.118231 -8555,3515:205,155,-50,0,0,0.120401 -8556,3515:206,156,-50,0,0,0.101904 -8557,3515:207,157,-50,0,0,0.101107 -8558,3515:208,158,-50,0,0,0.107036 -8559,3515:209,159,-50,0,0,0.112015 -8560,3516:100,160,-50,0,0,0.111566 -8561,3516:101,161,-50,0,0,0.109947 -8562,3516:102,162,-50,0,0,0.12202 -8563,3516:103,163,-50,0,0,0.120053 -8564,3516:104,164,-50,0,0,0.134367 -8565,3516:205,165,-50,0,0,0.132656 -8566,3516:206,166,-50,0,0,0.13383 -8567,3516:207,167,-50,0,0,0.13149 -8568,3516:208,168,-50,0,0,0.131232 -8569,3516:209,169,-50,0,0,0.131033 -8570,3517:100,170,-50,0,0,0.130694 -8571,3517:101,171,-50,0,0,0.129612 -8572,3517:102,172,-50,0,0,0.13203 -8573,3517:103,173,-50,0,0,0.131244 -8574,3517:104,174,-50,0,0,0.130717 -8575,3517:205,175,-50,0,0,0.128665 -8576,3517:206,176,-50,0,0,0.127403 -8577,3517:207,177,-50,0,0,0.12499 -8578,3517:208,178,-50,0,0,0.125632 -8579,3517:209,179,-50,0,0,0.126981 -8580,3518:100,180,-50,0,0,0.132585 -8581,5418:390,-180,-49,0,0,0.137018 -8582,5417:499,-179,-49,0,0,0.134511 -8583,5417:498,-178,-49,0,0,0.126277 -8584,5417:497,-177,-49,0,0,0.126503 -8585,5417:496,-176,-49,0,0,0.136509 -8586,5417:495,-175,-49,0,0,0.135663 -8587,5417:394,-174,-49,0,0,0.134224 -8588,5417:393,-173,-49,0,0,0.13281 -8589,5417:392,-172,-49,0,0,0.132656 -8590,5417:391,-171,-49,0,0,0.135038 -8591,5417:390,-170,-49,0,0,0.133474 -8592,5416:499,-169,-49,0,0,0.126913 -8593,5416:498,-168,-49,0,0,0.122561 -8594,5416:497,-167,-49,0,0,0.125384 -8595,5416:496,-166,-49,0,0,0.131056 -8596,5416:495,-165,-49,0,0,0.130741 -8597,5416:394,-164,-49,0,0,0.127643 -8598,5416:393,-163,-49,0,0,0.124317 -8599,5416:392,-162,-49,0,0,0.123214 -8600,5416:391,-161,-49,0,0,0.124822 -8601,5416:390,-160,-49,0,0,0.128849 -8602,5415:499,-159,-49,0,0,0.130822 -8603,5415:498,-158,-49,0,0,0.13307 -8604,5415:497,-157,-49,0,0,0.136037 -8605,5415:496,-156,-49,0,0,0.131713 -8606,5415:495,-155,-49,0,0,0.125159 -8607,5415:394,-154,-49,0,0,0.118327 -8608,5415:393,-153,-49,0,0,0.113568 -8609,5415:392,-152,-49,0,0,0.110431 -8610,5415:391,-151,-49,0,0,0.10531 -8611,5415:390,-150,-49,0,0,0.103332 -8612,5414:499,-149,-49,0,0,0.106067 -8613,5414:498,-148,-49,0,0,0.100623 -8614,5414:497,-147,-49,0,0,0.102431 -8615,5414:496,-146,-49,0,0,0.104846 -8616,5414:495,-145,-49,0,0,0.11224 -8617,5414:394,-144,-49,0,0,0.120303 -8618,5414:393,-143,-49,0,0,0.1342 -8619,5414:392,-142,-49,0,0,0.144688 -8620,5414:391,-141,-49,0,0,0.150504 -8621,5414:390,-140,-49,0,0,0.136921 -8622,5413:499,-139,-49,0,0,0.139454 -8623,5413:498,-138,-49,0,0,0.142239 -8624,5413:497,-137,-49,0,0,0.142251 -8625,5413:496,-136,-49,0,0,0.140903 -8626,5413:495,-135,-49,0,0,0.140381 -8627,5413:394,-134,-49,0,0,0.150255 -8628,5413:393,-133,-49,0,0,0.153697 -8629,5413:392,-132,-49,0,0,0.142967 -8630,5413:391,-131,-49,0,0,0.131513 -8631,5413:390,-130,-49,0,0,0.134117 -8632,5412:499,-129,-49,0,0,0.14437 -8633,5412:498,-128,-49,0,0,0.141239 -8634,5412:497,-127,-49,0,0,0.151123 -8635,5412:496,-126,-49,0,0,0.164046 -8636,5412:495,-125,-49,0,0,0.161193 -8637,5412:394,-124,-49,0,0,0.155713 -8638,5412:393,-123,-49,0,0,0.139874 -8639,5412:392,-122,-49,0,0,0.126753 -8640,5412:391,-121,-49,0,0,0.126913 -8641,5412:390,-120,-49,0,0,0.133331 -8642,5411:499,-119,-49,0,0,0.137895 -8643,5411:498,-118,-49,0,0,0.135314 -8644,5411:497,-117,-49,0,0,0.136764 -8645,5411:496,-116,-49,0,0,0.140716 -8646,5411:495,-115,-49,0,0,0.136339 -8647,5411:394,-114,-49,0,0,0.134918 -8648,5411:393,-113,-49,0,0,0.137822 -8649,5411:392,-112,-49,0,0,0.142164 -8650,5411:391,-111,-49,0,0,0.143649 -8651,5411:390,-110,-49,0,0,0.14493 -8652,5410:499,-109,-49,0,0,0.147237 -8653,5410:498,-108,-49,0,0,0.148142 -8654,5410:497,-107,-49,0,0,0.146451 -8655,5410:496,-106,-49,0,0,0.143914 -8656,5410:495,-105,-49,0,0,0.142942 -8657,5410:394,-104,-49,0,0,0.142917 -8658,5410:393,-103,-49,0,0,0.139898 -8659,5410:392,-102,-49,0,0,0.133676 -8660,5410:391,-101,-49,0,0,0.134738 -8661,5410:390,-100,-49,0,0,0.134595 -8662,5409:499,-99,-49,0,0,0.135687 -8663,5409:498,-98,-49,0,0,0.137042 -8664,5409:497,-97,-49,0,0,0.135447 -8665,5409:496,-96,-49,0,0,0.132928 -8666,5409:495,-95,-49,0,0,0.133343 -8667,5409:394,-94,-49,0,0,0.136642 -8668,5409:393,-93,-49,0,0,0.136049 -8669,5409:392,-92,-49,0,0,0.133296 -8670,5409:391,-91,-49,0,0,0.134654 -8671,5409:390,-90,-49,0,0,0.133628 -8672,5408:499,-89,-49,0,0,0.13481 -8673,5408:498,-88,-49,0,0,0.136134 -8674,5408:497,-87,-49,0,0,0.136097 -8675,5408:496,-86,-49,0,0,0.135507 -8676,5408:495,-85,-49,0,0,0.13646 -8677,5408:394,-84,-49,0,0,0.136279 -8678,5408:393,-83,-49,0,0,0.134475 -8679,5408:392,-82,-49,0,0,0.135206 -8680,5408:391,-81,-49,0,0,0.136788 -8681,5408:390,-80,-49,0,0,0.135904 -8682,5407:499,-79,-49,0,0,0.134679 -8683,5407:498,-78,-49,0,0,0.135459 -8684,5407:497,-77,-49,0,0,0.137225 -8685,5407:496,-76,-49,0,0,0.13731 -8686,5407:495,-75,-49,0,0,0.137116 -8687,5407:394,-74,-49,0,0,0.139997 -8688,5407:393,-73,-49,0,0,0.142703 -8689,5407:392,-72,-49,0,0,0.140766 -8690,5407:391,-71,-49,0,0,0.141563 -8691,5407:390,-70,-49,0,0,0.144155 -8692,5406:499,-69,-49,0,0,0.135796 -8693,5406:498,-68,-49,0,0,0.130135 -8694,5406:497,-67,-49,0,0,0.119944 -8695,5406:496,-66,-49,0,0,0.114762 -8696,5406:495,-65,-49,0,0,0.120194 -8697,5406:394,-64,-49,0,0,0.124474 -8698,5406:393,-63,-49,0,0,0.123225 -8699,5406:392,-62,-49,0,0,0.122064 -8700,5406:391,-61,-49,0,0,0.119739 -8701,5406:390,-60,-49,0,0,0.111444 -8702,5405:499,-59,-49,0,0,0.100706 -8703,5405:498,-58,-49,0,0,0.100855 -8704,5405:497,-57,-49,0,0,0.101135 -8705,5405:496,-56,-49,0,0,0.0999736 -8706,5405:495,-55,-49,0,0,0.0958187 -8707,5405:394,-54,-49,0,0,0.101575 -8708,5405:393,-53,-49,0,0,0.106331 -8709,5405:392,-52,-49,0,0,0.0954277 -8710,5405:391,-51,-49,0,0,0.0954452 -8711,5405:390,-50,-49,0,0,0.0975231 -8712,5404:499,-49,-49,0,0,0.0948527 -8713,5404:498,-48,-49,0,0,0.0978038 -8714,5404:497,-47,-49,0,0,0.0975142 -8715,5404:496,-46,-49,0,0,0.0984311 -8716,5404:495,-45,-49,0,0,0.0937731 -8717,5404:394,-44,-49,0,0,0.0922307 -8718,5404:393,-43,-49,0,0,0.0914936 -8719,5404:392,-42,-49,0,0,0.096068 -8720,5404:391,-41,-49,0,0,0.0979854 -8721,5404:390,-40,-49,0,0,0.0961931 -8722,5403:499,-39,-49,0,0,0.0967394 -8723,5403:498,-38,-49,0,0,0.09359 -8724,5403:497,-37,-49,0,0,0.0895649 -8725,5403:496,-36,-49,0,0,0.08959 -8726,5403:495,-35,-49,0,0,0.0900941 -8727,5403:394,-34,-49,0,0,0.0878538 -8728,5403:393,-33,-49,0,0,0.0852467 -8729,5403:392,-32,-49,0,0,0.0858656 -8730,5403:391,-31,-49,0,0,0.0869769 -8731,5403:390,-30,-49,0,0,0.0853348 -8732,5402:499,-29,-49,0,0,0.0849347 -8733,5402:498,-28,-49,0,0,0.0848468 -8734,5402:497,-27,-49,0,0,0.0836658 -8735,5402:496,-26,-49,0,0,0.0851665 -8736,5402:495,-25,-49,0,0,0.0883079 -8737,5402:394,-24,-49,0,0,0.0882251 -8738,5402:393,-23,-49,0,0,0.0911099 -8739,5402:392,-22,-49,0,0,0.091596 -8740,5402:391,-21,-49,0,0,0.0902711 -8741,5402:390,-20,-49,0,0,0.0936945 -8742,5401:499,-19,-49,0,0,0.0915447 -8743,5401:498,-18,-49,0,0,0.0905836 -8744,5401:497,-17,-49,0,0,0.0923426 -8745,5401:496,-16,-49,0,0,0.0924285 -8746,5401:495,-15,-49,0,0,0.0891801 -8747,5401:394,-14,-49,0,0,0.0874924 -8748,5401:393,-13,-49,0,0,0.0891302 -8749,5401:392,-12,-49,0,0,0.0909825 -8750,5401:391,-11,-49,0,0,0.0909993 -8751,5401:390,-10,-49,0,0,0.0892887 -8752,5400:499,-9,-49,0,0,0.0891552 -8753,5400:498,-8,-49,0,0,0.0897326 -8754,5400:497,-7,-49,0,0,0.0884486 -8755,5400:496,-6,-49,0,0,0.0869525 -8756,5400:495,-5,-49,0,0,0.0855435 -8757,5400:394,-4,-49,0,0,0.0848548 -8758,5400:393,-3,-49,0,0,0.0846078 -8759,5400:392,-2,-49,0,0,0.0836893 -8760,5400:391,-1,-49,0,0,0.0829047 -8761,3400:391,0,-49,0,0,0.0828423 -8762,3400:391,1,-49,0,0,0.0825851 -8763,3400:392,2,-49,0,0,0.0818486 -8764,3400:393,3,-49,0,0,0.0809115 -8765,3400:394,4,-49,0,0,0.0803859 -8766,3400:495,5,-49,0,0,0.0802418 -8767,3400:496,6,-49,0,0,0.0800828 -8768,3400:497,7,-49,0,0,0.0795469 -8769,3400:498,8,-49,0,0,0.0786786 -8770,3400:499,9,-49,0,0,0.079224 -8771,3401:390,10,-49,0,0,0.0784183 -8772,3401:391,11,-49,0,0,0.078344 -8773,3401:392,12,-49,0,0,0.0784258 -8774,3401:393,13,-49,0,0,0.0784927 -8775,3401:394,14,-49,0,0,0.0783071 -8776,3401:495,15,-49,0,0,0.0777527 -8777,3401:496,16,-49,0,0,0.0779224 -8778,3401:497,17,-49,0,0,0.0762629 -8779,3401:498,18,-49,0,0,0.0759452 -8780,3401:499,19,-49,0,0,0.0758658 -8781,3402:390,20,-49,0,0,0.0760317 -8782,3402:391,21,-49,0,0,0.0762991 -8783,3402:392,22,-49,0,0,0.0763281 -8784,3402:393,23,-49,0,0,0.0760895 -8785,3402:394,24,-49,0,0,0.0760245 -8786,3402:495,25,-49,0,0,0.0770117 -8787,3402:496,26,-49,0,0,0.0776864 -8788,3402:497,27,-49,0,0,0.079007 -8789,3402:498,28,-49,0,0,0.0797277 -8790,3402:499,29,-49,0,0,0.0802039 -8791,3403:390,30,-49,0,0,0.079803 -8792,3403:391,31,-49,0,0,0.0790517 -8793,3403:392,32,-49,0,0,0.0784852 -8794,3403:393,33,-49,0,0,0.0777453 -8795,3403:394,34,-49,0,0,0.0786711 -8796,3403:495,35,-49,0,0,0.079788 -8797,3403:496,36,-49,0,0,0.0850706 -8798,3403:497,37,-49,0,0,0.0846238 -8799,3403:498,38,-49,0,0,0.0802265 -8800,3403:499,39,-49,0,0,0.0795921 -8801,3404:390,40,-49,0,0,0.0805227 -8802,3404:391,41,-49,0,0,0.0844091 -8803,3404:392,42,-49,0,0,0.0811948 -8804,3404:393,43,-49,0,0,0.0810875 -8805,3404:394,44,-49,0,0,0.0840447 -8806,3404:495,45,-49,0,0,0.0858897 -8807,3404:496,46,-49,0,0,0.0852147 -8808,3404:497,47,-49,0,0,0.0852868 -8809,3404:498,48,-49,0,0,0.0881261 -8810,3404:499,49,-49,0,0,0.0891801 -8811,3405:390,50,-49,0,0,0.0879033 -8812,3405:391,51,-49,0,0,0.0850386 -8813,3405:392,52,-49,0,0,0.0861565 -8814,3405:393,53,-49,0,0,0.0891302 -8815,3405:394,54,-49,0,0,0.0886891 -8816,3405:495,55,-49,0,0,0.0868057 -8817,3405:496,56,-49,0,0,0.0858252 -8818,3405:497,57,-49,0,0,0.0867893 -8819,3405:498,58,-49,0,0,0.08764 -8820,3405:499,59,-49,0,0,0.0872464 -8821,3406:390,60,-49,0,0,0.0887971 -8822,3406:391,61,-49,0,0,0.089951 -8823,3406:392,62,-49,0,0,0.0901614 -8824,3406:393,63,-49,0,0,0.09077 -8825,3406:394,64,-49,0,0,0.0939392 -8826,3406:495,65,-49,0,0,0.096964 -8827,3406:496,66,-49,0,0,0.0967394 -8828,3406:497,67,-49,0,0,0.0899341 -8829,3406:498,68,-49,0,0,0.0889217 -8830,3406:499,69,-49,0,0,0.0911525 -8831,3407:390,70,-49,0,0,0.0930596 -8832,3407:391,71,-49,0,0,0.0940792 -8833,3407:392,72,-49,0,0,0.0912291 -8834,3407:394,74,-49,0,0,0.0885976 -8835,3407:495,75,-49,0,0,0.0898584 -8836,3407:496,76,-49,0,0,0.0837682 -8837,3407:497,77,-49,0,0,0.0856802 -8838,3407:498,78,-49,0,0,0.084775 -8839,3407:499,79,-49,0,0,0.084092 -8840,3408:390,80,-49,0,0,0.0837762 -8841,3408:391,81,-49,0,0,0.0843139 -8842,3408:392,82,-49,0,0,0.0818178 -8843,3408:393,83,-49,0,0,0.0789771 -8844,3408:394,84,-49,0,0,0.0848948 -8845,3408:495,85,-49,0,0,0.0989706 -8846,3408:496,86,-49,0,0,0.102838 -8847,3408:497,87,-49,0,0,0.101566 -8848,3408:498,88,-49,0,0,0.1015 -8849,3408:499,89,-49,0,0,0.0994295 -8850,3409:390,90,-49,0,0,0.0966586 -8851,3409:391,91,-49,0,0,0.0950203 -8852,3409:392,92,-49,0,0,0.0934331 -8853,3409:393,93,-49,0,0,0.0918785 -8854,3409:394,94,-49,0,0,0.0904569 -8855,3409:495,95,-49,0,0,0.0906007 -8856,3409:496,96,-49,0,0,0.0926874 -8857,3409:497,97,-49,0,0,0.0968022 -8858,3409:498,98,-49,0,0,0.0980306 -8859,3409:499,99,-49,0,0,0.0948969 -8860,3410:390,100,-49,0,0,0.0956496 -8861,3410:391,101,-49,0,0,0.0978583 -8862,3410:392,102,-49,0,0,0.0937209 -8863,3410:393,103,-49,0,0,0.0956317 -8864,3410:394,104,-49,0,0,0.10066 -8865,3410:495,105,-49,0,0,0.101163 -8866,3410:496,106,-49,0,0,0.100298 -8867,3410:497,107,-49,0,0,0.100762 -8868,3410:498,108,-49,0,0,0.102158 -8869,3410:499,109,-49,0,0,0.103047 -8870,3411:390,110,-49,0,0,0.103209 -8871,3411:391,111,-49,0,0,0.10595 -8872,3411:392,112,-49,0,0,0.103943 -8873,3411:393,113,-49,0,0,0.100567 -8874,3411:394,114,-49,0,0,0.102753 -8875,3411:495,115,-49,0,0,0.1038 -8876,3411:496,116,-49,0,0,0.109355 -8877,3411:497,117,-49,0,0,0.109215 -8878,3411:498,118,-49,0,0,0.108896 -8879,3411:499,119,-49,0,0,0.108498 -8880,3412:390,120,-49,0,0,0.10679 -8881,3412:391,121,-49,0,0,0.109335 -8882,3412:392,122,-49,0,0,0.114992 -8883,3412:393,123,-49,0,0,0.117707 -8884,3412:394,124,-49,0,0,0.114846 -8885,3412:495,125,-49,0,0,0.113754 -8886,3412:496,126,-49,0,0,0.1147 -8887,3412:497,127,-49,0,0,0.115097 -8888,3412:498,128,-49,0,0,0.113816 -8889,3412:499,129,-49,0,0,0.112015 -8890,3413:390,130,-49,0,0,0.110098 -8891,3413:391,131,-49,0,0,0.110279 -8892,3413:392,132,-49,0,0,0.110754 -8893,3413:393,133,-49,0,0,0.11037 -8894,3413:394,134,-49,0,0,0.112373 -8895,3413:495,135,-49,0,0,0.111352 -8896,3413:496,136,-49,0,0,0.109215 -8897,3413:497,137,-49,0,0,0.108617 -8898,3413:498,138,-49,0,0,0.108398 -8899,3413:499,139,-49,0,0,0.10818 -8900,3414:390,140,-49,0,0,0.108647 -8901,3414:391,141,-49,0,0,0.111678 -8902,3414:392,142,-49,0,0,0.115191 -8903,3414:393,143,-49,0,0,0.114575 -8904,3414:394,144,-49,0,0,0.113072 -8905,3414:495,145,-49,0,0,0.112476 -8906,3414:496,146,-49,0,0,0.111038 -8907,3414:497,147,-49,0,0,0.108002 -8908,3414:498,148,-49,0,0,0.102999 -8909,3414:499,149,-49,0,0,0.0938344 -8910,3415:390,150,-49,0,0,0.0952416 -8911,3415:391,151,-49,0,0,0.100057 -8912,3415:392,152,-49,0,0,0.102205 -8913,3415:393,153,-49,0,0,0.121274 -8914,3415:394,154,-49,0,0,0.122561 -8915,3415:495,155,-49,0,0,0.121384 -8916,3415:496,156,-49,0,0,0.114169 -8917,3415:497,157,-49,0,0,0.102981 -8918,3415:498,158,-49,0,0,0.106019 -8919,3415:499,159,-49,0,0,0.119274 -8920,3416:390,160,-49,0,0,0.11909 -8921,3416:391,161,-49,0,0,0.114075 -8922,3416:392,162,-49,0,0,0.122318 -8923,3416:393,163,-49,0,0,0.124183 -8924,3416:394,164,-49,0,0,0.137651 -8925,3416:495,165,-49,0,0,0.136376 -8926,3416:496,166,-49,0,0,0.133355 -8927,3416:497,167,-49,0,0,0.132609 -8928,3416:498,168,-49,0,0,0.131901 -8929,3416:499,169,-49,0,0,0.133878 -8930,3417:390,170,-49,0,0,0.135519 -8931,3417:391,171,-49,0,0,0.134248 -8932,3417:392,172,-49,0,0,0.136885 -8933,3417:393,173,-49,0,0,0.144472 -8934,3417:394,174,-49,0,0,0.1459 -8935,3417:495,175,-49,0,0,0.146992 -8936,3417:496,176,-49,0,0,0.145287 -8937,3417:497,177,-49,0,0,0.133605 -8938,3417:498,178,-49,0,0,0.12639 -8939,3417:499,179,-49,0,0,0.127907 -8940,3418:390,180,-49,0,0,0.137018 -8941,5418:380,-180,-48,0,0,0.141015 -8942,5417:489,-179,-48,0,0,0.144015 -8943,5417:488,-178,-48,0,0,0.144943 -8944,5417:487,-177,-48,0,0,0.133355 -8945,5417:486,-176,-48,0,0,0.134403 -8946,5417:485,-175,-48,0,0,0.139948 -8947,5417:384,-174,-48,0,0,0.140654 -8948,5417:383,-173,-48,0,0,0.140729 -8949,5417:382,-172,-48,0,0,0.140592 -8950,5417:381,-171,-48,0,0,0.14249 -8951,5417:380,-170,-48,0,0,0.141776 -8952,5416:489,-169,-48,0,0,0.132502 -8953,5416:488,-168,-48,0,0,0.128343 -8954,5416:487,-167,-48,0,0,0.128665 -8955,5416:486,-166,-48,0,0,0.130216 -8956,5416:485,-165,-48,0,0,0.133296 -8957,5416:384,-164,-48,0,0,0.134595 -8958,5416:383,-163,-48,0,0,0.131396 -8959,5416:382,-162,-48,0,0,0.129589 -8960,5416:381,-161,-48,0,0,0.133807 -8961,5416:380,-160,-48,0,0,0.137993 -8962,5415:489,-159,-48,0,0,0.13731 -8963,5415:488,-158,-48,0,0,0.140542 -8964,5415:487,-157,-48,0,0,0.143219 -8965,5415:486,-156,-48,0,0,0.141963 -8966,5415:485,-155,-48,0,0,0.136279 -8967,5415:384,-154,-48,0,0,0.130822 -8968,5415:383,-153,-48,0,0,0.121515 -8969,5415:382,-152,-48,0,0,0.120162 -8970,5415:381,-151,-48,0,0,0.115842 -8971,5415:380,-150,-48,0,0,0.11038 -8972,5414:489,-149,-48,0,0,0.107183 -8973,5414:488,-148,-48,0,0,0.10683 -8974,5414:487,-147,-48,0,0,0.106048 -8975,5414:486,-146,-48,0,0,0.105649 -8976,5414:485,-145,-48,0,0,0.110795 -8977,5414:384,-144,-48,0,0,0.12377 -8978,5414:383,-143,-48,0,0,0.130636 -8979,5414:382,-142,-48,0,0,0.132243 -8980,5414:381,-141,-48,0,0,0.130904 -8981,5414:380,-140,-48,0,0,0.135026 -8982,5413:489,-139,-48,0,0,0.141388 -8983,5413:488,-138,-48,0,0,0.147095 -8984,5413:487,-137,-48,0,0,0.149117 -8985,5413:486,-136,-48,0,0,0.150124 -8986,5413:485,-135,-48,0,0,0.153177 -8987,5413:384,-134,-48,0,0,0.157559 -8988,5413:383,-133,-48,0,0,0.155861 -8989,5413:382,-132,-48,0,0,0.148259 -8990,5413:381,-131,-48,0,0,0.142414 -8991,5413:380,-130,-48,0,0,0.161554 -8992,5412:489,-129,-48,0,0,0.168692 -8993,5412:488,-128,-48,0,0,0.163259 -8994,5412:487,-127,-48,0,0,0.166927 -8995,5412:486,-126,-48,0,0,0.169355 -8996,5412:485,-125,-48,0,0,0.171126 -8997,5412:384,-124,-48,0,0,0.169182 -8998,5412:383,-123,-48,0,0,0.158406 -8999,5412:382,-122,-48,0,0,0.151321 -9000,5412:381,-121,-48,0,0,0.139997 -9001,5412:380,-120,-48,0,0,0.137225 -9002,5411:489,-119,-48,0,0,0.142439 -9003,5411:488,-118,-48,0,0,0.147948 -9004,5411:487,-117,-48,0,0,0.148557 -9005,5411:486,-116,-48,0,0,0.149052 -9006,5411:485,-115,-48,0,0,0.153952 -9007,5411:384,-114,-48,0,0,0.153724 -9008,5411:383,-113,-48,0,0,0.155146 -9009,5411:382,-112,-48,0,0,0.155942 -9010,5411:381,-111,-48,0,0,0.150543 -9011,5411:380,-110,-48,0,0,0.147805 -9012,5410:489,-109,-48,0,0,0.14567 -9013,5410:488,-108,-48,0,0,0.144688 -9014,5410:487,-107,-48,0,0,0.143762 -9015,5410:486,-106,-48,0,0,0.143661 -9016,5410:485,-105,-48,0,0,0.144764 -9017,5410:384,-104,-48,0,0,0.143509 -9018,5410:383,-103,-48,0,0,0.138777 -9019,5410:382,-102,-48,0,0,0.141289 -9020,5410:381,-101,-48,0,0,0.141551 -9021,5410:380,-100,-48,0,0,0.141401 -9022,5409:489,-99,-48,0,0,0.142151 -9023,5409:488,-98,-48,0,0,0.142264 -9024,5409:487,-97,-48,0,0,0.141438 -9025,5409:486,-96,-48,0,0,0.139417 -9026,5409:485,-95,-48,0,0,0.137456 -9027,5409:384,-94,-48,0,0,0.139195 -9028,5409:383,-93,-48,0,0,0.138177 -9029,5409:382,-92,-48,0,0,0.137554 -9030,5409:381,-91,-48,0,0,0.137444 -9031,5409:380,-90,-48,0,0,0.13617 -9032,5408:489,-89,-48,0,0,0.138544 -9033,5408:488,-88,-48,0,0,0.140903 -9034,5408:487,-87,-48,0,0,0.140406 -9035,5408:486,-86,-48,0,0,0.139626 -9036,5408:485,-85,-48,0,0,0.138666 -9037,5408:384,-84,-48,0,0,0.138042 -9038,5408:383,-83,-48,0,0,0.138262 -9039,5408:382,-82,-48,0,0,0.138544 -9040,5408:381,-81,-48,0,0,0.138986 -9041,5408:380,-80,-48,0,0,0.140295 -9042,5407:489,-79,-48,0,0,0.141538 -9043,5407:488,-78,-48,0,0,0.140965 -9044,5407:487,-77,-48,0,0,0.140357 -9045,5407:486,-76,-48,0,0,0.140381 -9046,5407:485,-75,-48,0,0,0.141401 -9047,5407:384,-74,-48,0,0,0.148064 -9048,5407:383,-73,-48,0,0,0.145798 -9049,5407:382,-72,-48,0,0,0.142013 -9050,5407:381,-71,-48,0,0,0.146195 -9051,5407:380,-70,-48,0,0,0.147005 -9052,5406:489,-69,-48,0,0,0.148791 -9053,5406:488,-68,-48,0,0,0.148103 -9054,5406:487,-67,-48,0,0,0.139318 -9055,5406:486,-66,-48,0,0,0.123081 -9056,5406:485,-65,-48,0,0,0.123715 -9057,5406:384,-64,-48,0,0,0.126481 -9058,5406:383,-63,-48,0,0,0.123103 -9059,5406:382,-62,-48,0,0,0.124586 -9060,5406:381,-61,-48,0,0,0.123281 -9061,5406:380,-60,-48,0,0,0.11837 -9062,5405:489,-59,-48,0,0,0.117867 -9063,5405:488,-58,-48,0,0,0.125046 -9064,5405:487,-57,-48,0,0,0.126765 -9065,5405:486,-56,-48,0,0,0.119728 -9066,5405:485,-55,-48,0,0,0.101201 -9067,5405:384,-54,-48,0,0,0.102554 -9068,5405:383,-53,-48,0,0,0.108846 -9069,5405:382,-52,-48,0,0,0.110088 -9070,5405:381,-51,-48,0,0,0.106214 -9071,5405:380,-50,-48,0,0,0.103028 -9072,5404:489,-49,-48,0,0,0.0985681 -9073,5404:488,-48,-48,0,0,0.0988515 -9074,5404:487,-47,-48,0,0,0.101669 -9075,5404:486,-46,-48,0,0,0.101885 -9076,5404:485,-45,-48,0,0,0.10359 -9077,5404:384,-44,-48,0,0,0.097036 -9078,5404:383,-43,-48,0,0,0.0981854 -9079,5404:382,-42,-48,0,0,0.0996321 -9080,5404:381,-41,-48,0,0,0.100075 -9081,5404:380,-40,-48,0,0,0.0961664 -9082,5403:489,-39,-48,0,0,0.0963628 -9083,5403:488,-38,-48,0,0,0.0931205 -9084,5403:487,-37,-48,0,0,0.0915788 -9085,5403:486,-36,-48,0,0,0.0916388 -9086,5403:485,-35,-48,0,0,0.0924975 -9087,5403:384,-34,-48,0,0,0.0918957 -9088,5403:383,-33,-48,0,0,0.0888636 -9089,5403:382,-32,-48,0,0,0.0877468 -9090,5403:381,-31,-48,0,0,0.0880434 -9091,5403:380,-30,-48,0,0,0.0859542 -9092,5402:489,-29,-48,0,0,0.085922 -9093,5402:488,-28,-48,0,0,0.0864319 -9094,5402:487,-27,-48,0,0,0.084823 -9095,5402:486,-26,-48,0,0,0.0871157 -9096,5402:485,-25,-48,0,0,0.0874759 -9097,5402:384,-24,-48,0,0,0.0924372 -9098,5402:383,-23,-48,0,0,0.0983766 -9099,5402:382,-22,-48,0,0,0.0947203 -9100,5402:381,-21,-48,0,0,0.0920243 -9101,5402:380,-20,-48,0,0,0.0933984 -9102,5401:489,-19,-48,0,0,0.0957741 -9103,5401:488,-18,-48,0,0,0.0952592 -9104,5401:487,-17,-48,0,0,0.0935812 -9105,5401:486,-16,-48,0,0,0.095623 -9106,5401:485,-15,-48,0,0,0.096345 -9107,5401:384,-14,-48,0,0,0.0944478 -9108,5401:383,-13,-48,0,0,0.0941842 -9109,5401:382,-12,-48,0,0,0.0958899 -9110,5401:381,-11,-48,0,0,0.0961394 -9111,5401:380,-10,-48,0,0,0.0925061 -9112,5400:489,-9,-48,0,0,0.0887722 -9113,5400:488,-8,-48,0,0,0.0894308 -9114,5400:487,-7,-48,0,0,0.0882829 -9115,5400:486,-6,-48,0,0,0.0874759 -9116,5400:485,-5,-48,0,0,0.0862049 -9117,5400:384,-4,-48,0,0,0.0857205 -9118,5400:383,-3,-48,0,0,0.0851106 -9119,5400:382,-2,-48,0,0,0.0844726 -9120,5400:381,-1,-48,0,0,0.0836028 -9121,3400:381,0,-48,0,0,0.0831786 -9122,3400:381,1,-48,0,0,0.0826084 -9123,3400:382,2,-48,0,0,0.0827799 -9124,3400:383,3,-48,0,0,0.0823673 -9125,3400:384,4,-48,0,0,0.0810186 -9126,3400:485,5,-48,0,0,0.0813481 -9127,3400:486,6,-48,0,0,0.080942 -9128,3400:487,7,-48,0,0,0.0822432 -9129,3400:488,8,-48,0,0,0.0823363 -9130,3400:489,9,-48,0,0,0.0820496 -9131,3401:380,10,-48,0,0,0.0813329 -9132,3401:381,11,-48,0,0,0.0800828 -9133,3401:382,12,-48,0,0,0.0798634 -9134,3401:383,13,-48,0,0,0.0800901 -9135,3401:384,14,-48,0,0,0.0796974 -9136,3401:485,15,-48,0,0,0.0791865 -9137,3401:486,16,-48,0,0,0.0790967 -9138,3401:487,17,-48,0,0,0.0786861 -9139,3401:488,18,-48,0,0,0.0785968 -9140,3401:489,19,-48,0,0,0.0785893 -9141,3402:380,20,-48,0,0,0.0784333 -9142,3402:381,21,-48,0,0,0.0777379 -9143,3402:382,22,-48,0,0,0.0781145 -9144,3402:383,23,-48,0,0,0.0770483 -9145,3402:384,24,-48,0,0,0.076524 -9146,3402:485,25,-48,0,0,0.0784405 -9147,3402:486,26,-48,0,0,0.0777453 -9148,3402:487,27,-48,0,0,0.0783812 -9149,3402:488,28,-48,0,0,0.0826241 -9150,3402:489,29,-48,0,0,0.0835476 -9151,3403:380,30,-48,0,0,0.0849825 -9152,3403:381,31,-48,0,0,0.0871483 -9153,3403:382,32,-48,0,0,0.0901108 -9154,3403:383,33,-48,0,0,0.0887803 -9155,3403:384,34,-48,0,0,0.0831238 -9156,3403:485,35,-48,0,0,0.0820418 -9157,3403:486,36,-48,0,0,0.0841792 -9158,3403:487,37,-48,0,0,0.087083 -9159,3403:488,38,-48,0,0,0.0856399 -9160,3403:489,39,-48,0,0,0.0872874 -9161,3404:380,40,-48,0,0,0.0879858 -9162,3404:381,41,-48,0,0,0.0853911 -9163,3404:382,42,-48,0,0,0.0861725 -9164,3404:383,43,-48,0,0,0.0875415 -9165,3404:384,44,-48,0,0,0.0870342 -9166,3404:485,45,-48,0,0,0.0867406 -9167,3404:486,46,-48,0,0,0.0865535 -9168,3404:487,47,-48,0,0,0.0874514 -9169,3404:488,48,-48,0,0,0.0887139 -9170,3404:489,49,-48,0,0,0.0911184 -9171,3405:380,50,-48,0,0,0.0903133 -9172,3405:381,51,-48,0,0,0.0893808 -9173,3405:382,52,-48,0,0,0.0890552 -9174,3405:383,53,-48,0,0,0.0951266 -9175,3405:384,54,-48,0,0,0.0874759 -9176,3405:485,55,-48,0,0,0.0876894 -9177,3405:486,56,-48,0,0,0.0891384 -9178,3405:487,57,-48,0,0,0.0922047 -9179,3405:488,58,-48,0,0,0.0939131 -9180,3405:489,59,-48,0,0,0.0936684 -9181,3406:380,60,-48,0,0,0.0911779 -9182,3406:381,61,-48,0,0,0.0920929 -9183,3406:382,62,-48,0,0,0.0941318 -9184,3406:383,63,-48,0,0,0.0924114 -9185,3406:384,64,-48,0,0,0.0936945 -9186,3406:485,65,-48,0,0,0.098998 -9187,3406:486,66,-48,0,0,0.0986227 -9188,3406:487,67,-48,0,0,0.0965957 -9189,3406:488,68,-48,0,0,0.0961037 -9190,3406:489,69,-48,0,0,0.0955961 -9191,3407:380,70,-48,0,0,0.0948438 -9192,3407:381,71,-48,0,0,0.094888 -9193,3407:382,72,-48,0,0,0.0951884 -9194,3407:384,74,-48,0,0,0.0931986 -9195,3407:485,75,-48,0,0,0.0932333 -9196,3407:486,76,-48,0,0,0.090533 -9197,3407:487,77,-48,0,0,0.0850786 -9198,3407:488,78,-48,0,0,0.0874759 -9199,3407:489,79,-48,0,0,0.086132 -9200,3408:380,80,-48,0,0,0.0853428 -9201,3408:381,81,-48,0,0,0.0848149 -9202,3408:382,82,-48,0,0,0.0883243 -9203,3408:383,83,-48,0,0,0.0895396 -9204,3408:384,84,-48,0,0,0.0949055 -9205,3408:485,85,-48,0,0,0.107518 -9206,3408:486,86,-48,0,0,0.107016 -9207,3408:487,87,-48,0,0,0.10821 -9208,3408:488,88,-48,0,0,0.107597 -9209,3408:489,89,-48,0,0,0.103819 -9210,3409:380,90,-48,0,0,0.101275 -9211,3409:381,91,-48,0,0,0.103924 -9212,3409:382,92,-48,0,0,0.10318 -9213,3409:383,93,-48,0,0,0.102092 -9214,3409:384,94,-48,0,0,0.0996783 -9215,3409:485,95,-48,0,0,0.0937995 -9216,3409:486,96,-48,0,0,0.0983038 -9217,3409:487,97,-48,0,0,0.105921 -9218,3409:488,98,-48,0,0,0.100976 -9219,3409:489,99,-48,0,0,0.0967394 -9220,3410:380,100,-48,0,0,0.102309 -9221,3410:381,101,-48,0,0,0.103972 -9222,3410:382,102,-48,0,0,0.0963093 -9223,3410:383,103,-48,0,0,0.0963628 -9224,3410:384,104,-48,0,0,0.0999645 -9225,3410:485,105,-48,0,0,0.09931 -9226,3410:486,106,-48,0,0,0.099872 -9227,3410:487,107,-48,0,0,0.10065 -9228,3410:488,108,-48,0,0,0.101042 -9229,3410:489,109,-48,0,0,0.102611 -9230,3411:380,110,-48,0,0,0.106194 -9231,3411:381,111,-48,0,0,0.110018 -9232,3411:382,112,-48,0,0,0.115705 -9233,3411:383,113,-48,0,0,0.115705 -9234,3411:384,114,-48,0,0,0.110098 -9235,3411:485,115,-48,0,0,0.106624 -9236,3411:486,116,-48,0,0,0.112046 -9237,3411:487,117,-48,0,0,0.110148 -9238,3411:488,118,-48,0,0,0.108408 -9239,3411:489,119,-48,0,0,0.108408 -10426,5412:249,-129,-44,0,0,0.18985 -9240,3412:380,120,-48,0,0,0.109646 -9241,3412:381,121,-48,0,0,0.110461 -9242,3412:382,122,-48,0,0,0.115317 -9243,3412:383,123,-48,0,0,0.11559 -9244,3412:384,124,-48,0,0,0.116528 -9245,3412:485,125,-48,0,0,0.114481 -9246,3412:486,126,-48,0,0,0.114387 -9247,3412:487,127,-48,0,0,0.114794 -9248,3412:488,128,-48,0,0,0.116464 -9249,3412:489,129,-48,0,0,0.115296 -9250,3413:380,130,-48,0,0,0.112599 -9251,3413:381,131,-48,0,0,0.112261 -9252,3413:382,132,-48,0,0,0.114481 -9253,3413:383,133,-48,0,0,0.116962 -9254,3413:384,134,-48,0,0,0.114898 -9255,3413:485,135,-48,0,0,0.113413 -9256,3413:486,136,-48,0,0,0.114752 -9257,3413:487,137,-48,0,0,0.112486 -9258,3413:488,138,-48,0,0,0.110552 -9259,3413:489,139,-48,0,0,0.11265 -9260,3414:380,140,-48,0,0,0.116454 -9261,3414:381,141,-48,0,0,0.117249 -9262,3414:382,142,-48,0,0,0.116021 -9263,3414:383,143,-48,0,0,0.117132 -9264,3414:384,144,-48,0,0,0.117696 -9265,3414:485,145,-48,0,0,0.117782 -9266,3414:486,146,-48,0,0,0.114575 -9267,3414:487,147,-48,0,0,0.109026 -9268,3414:488,148,-48,0,0,0.0994938 -9269,3414:489,149,-48,0,0,0.0951884 -9270,3415:380,150,-48,0,0,0.124608 -9271,3415:381,151,-48,0,0,0.128653 -9272,3415:382,152,-48,0,0,0.106702 -9273,3415:383,153,-48,0,0,0.117515 -9274,3415:384,154,-48,0,0,0.126583 -9275,3415:485,155,-48,0,0,0.134487 -9276,3415:486,156,-48,0,0,0.13364 -9277,3415:487,157,-48,0,0,0.117547 -9278,3415:488,158,-48,0,0,0.115705 -9279,3415:489,159,-48,0,0,0.121778 -9280,3416:380,160,-48,0,0,0.119155 -9281,3416:381,161,-48,0,0,0.121921 -9282,3416:382,162,-48,0,0,0.118263 -9283,3416:383,163,-48,0,0,0.135687 -9284,3416:384,164,-48,0,0,0.141202 -9285,3416:485,165,-48,0,0,0.142942 -9286,3416:486,166,-48,0,0,0.142967 -9287,3416:487,167,-48,0,0,0.139763 -9288,3416:488,168,-48,0,0,0.135603 -9289,3416:489,169,-48,0,0,0.13617 -9290,3417:380,170,-48,0,0,0.138519 -9291,3417:381,171,-48,0,0,0.140406 -9292,3417:382,172,-48,0,0,0.142741 -9293,3417:383,173,-48,0,0,0.144053 -9294,3417:384,174,-48,0,0,0.148596 -9295,3417:485,175,-48,0,0,0.151387 -9296,3417:486,176,-48,0,0,0.15339 -9297,3417:487,177,-48,0,0,0.151505 -9298,3417:488,178,-48,0,0,0.148116 -9299,3417:489,179,-48,0,0,0.140084 -9300,3418:380,180,-48,0,0,0.141015 -9301,5418:370,-180,-47,0,0,0.140753 -9302,5417:479,-179,-47,0,0,0.142678 -9303,5417:478,-178,-47,0,0,0.150465 -9304,5417:477,-177,-47,0,0,0.156959 -9305,5417:476,-176,-47,0,0,0.15597 -9306,5417:475,-175,-47,0,0,0.152485 -9307,5417:374,-174,-47,0,0,0.150137 -9308,5417:373,-173,-47,0,0,0.142101 -9309,5417:372,-172,-47,0,0,0.140878 -9310,5417:371,-171,-47,0,0,0.146992 -9311,5417:370,-170,-47,0,0,0.145057 -9312,5416:479,-169,-47,0,0,0.146927 -9313,5416:478,-168,-47,0,0,0.144574 -9314,5416:477,-167,-47,0,0,0.140766 -9315,5416:476,-166,-47,0,0,0.136836 -9316,5416:475,-165,-47,0,0,0.135098 -9317,5416:374,-164,-47,0,0,0.136122 -9318,5416:373,-163,-47,0,0,0.137749 -9319,5416:372,-162,-47,0,0,0.136146 -9320,5416:371,-161,-47,0,0,0.137773 -9321,5416:370,-160,-47,0,0,0.140605 -9322,5415:479,-159,-47,0,0,0.144802 -9323,5415:478,-158,-47,0,0,0.149548 -9324,5415:477,-157,-47,0,0,0.152313 -9325,5415:476,-156,-47,0,0,0.147857 -9326,5415:475,-155,-47,0,0,0.13836 -9327,5415:374,-154,-47,0,0,0.133486 -9328,5415:373,-153,-47,0,0,0.128976 -9329,5415:372,-152,-47,0,0,0.125824 -9330,5415:371,-151,-47,0,0,0.126163 -9331,5415:370,-150,-47,0,0,0.124866 -9332,5414:479,-149,-47,0,0,0.123603 -9333,5414:478,-148,-47,0,0,0.118692 -9334,5414:477,-147,-47,0,0,0.111414 -9335,5414:476,-146,-47,0,0,0.115045 -9336,5414:475,-145,-47,0,0,0.114221 -9337,5414:374,-144,-47,0,0,0.11517 -9338,5414:373,-143,-47,0,0,0.119803 -9339,5414:372,-142,-47,0,0,0.11881 -9340,5414:371,-141,-47,0,0,0.125282 -9341,5414:370,-140,-47,0,0,0.149365 -9342,5413:479,-139,-47,0,0,0.155483 -9343,5413:478,-138,-47,0,0,0.152459 -9344,5413:477,-137,-47,0,0,0.145402 -9345,5413:476,-136,-47,0,0,0.152977 -9346,5413:475,-135,-47,0,0,0.156335 -9347,5413:374,-134,-47,0,0,0.157982 -9348,5413:373,-133,-47,0,0,0.158502 -9349,5413:372,-132,-47,0,0,0.162979 -9350,5413:371,-131,-47,0,0,0.165858 -9351,5413:370,-130,-47,0,0,0.168289 -9352,5412:479,-129,-47,0,0,0.164682 -9353,5412:478,-128,-47,0,0,0.163441 -9354,5412:477,-127,-47,0,0,0.165787 -9355,5412:476,-126,-47,0,0,0.171973 -9356,5412:475,-125,-47,0,0,0.174622 -9357,5412:374,-124,-47,0,0,0.171053 -9358,5412:373,-123,-47,0,0,0.169558 -9359,5412:372,-122,-47,0,0,0.170137 -9360,5412:371,-121,-47,0,0,0.16803 -9361,5412:370,-120,-47,0,0,0.163427 -9362,5411:479,-119,-47,0,0,0.157941 -9363,5411:478,-118,-47,0,0,0.15438 -9364,5411:477,-117,-47,0,0,0.15624 -9365,5411:476,-116,-47,0,0,0.155429 -9366,5411:475,-115,-47,0,0,0.154756 -9367,5411:374,-114,-47,0,0,0.154595 -9368,5411:373,-113,-47,0,0,0.15477 -9369,5411:372,-112,-47,0,0,0.156932 -9370,5411:371,-111,-47,0,0,0.157586 -9371,5411:370,-110,-47,0,0,0.150438 -9372,5410:479,-109,-47,0,0,0.150793 -9373,5410:478,-108,-47,0,0,0.14809 -9374,5410:477,-107,-47,0,0,0.145338 -9375,5410:476,-106,-47,0,0,0.144586 -9376,5410:475,-105,-47,0,0,0.144472 -9377,5410:374,-104,-47,0,0,0.143409 -9378,5410:373,-103,-47,0,0,0.144409 -9379,5410:372,-102,-47,0,0,0.145184 -9380,5410:371,-101,-47,0,0,0.14599 -9381,5410:370,-100,-47,0,0,0.144294 -9382,5409:479,-99,-47,0,0,0.143118 -9383,5409:478,-98,-47,0,0,0.142678 -9384,5409:477,-97,-47,0,0,0.142026 -9385,5409:476,-96,-47,0,0,0.140084 -9386,5409:475,-95,-47,0,0,0.140171 -9387,5409:374,-94,-47,0,0,0.141813 -9388,5409:373,-93,-47,0,0,0.142603 -9389,5409:372,-92,-47,0,0,0.142314 -9390,5409:371,-91,-47,0,0,0.141189 -9391,5409:370,-90,-47,0,0,0.14165 -9392,5408:479,-89,-47,0,0,0.142766 -9393,5408:478,-88,-47,0,0,0.142854 -9394,5408:477,-87,-47,0,0,0.141801 -9395,5408:476,-86,-47,0,0,0.141114 -9396,5408:475,-85,-47,0,0,0.141102 -9397,5408:374,-84,-47,0,0,0.141164 -9398,5408:373,-83,-47,0,0,0.142741 -9399,5408:372,-82,-47,0,0,0.143712 -9400,5408:371,-81,-47,0,0,0.142026 -9401,5408:370,-80,-47,0,0,0.143522 -9402,5407:479,-79,-47,0,0,0.146079 -9403,5407:478,-78,-47,0,0,0.145555 -9404,5407:477,-77,-47,0,0,0.143762 -9405,5407:476,-76,-47,0,0,0.145108 -9406,5407:475,-75,-47,0,0,0.146529 -9407,5407:374,-74,-47,0,0,0.150333 -9408,5407:373,-73,-47,0,0,0.146966 -9409,5407:372,-72,-47,0,0,0.143762 -9410,5407:371,-71,-47,0,0,0.145044 -9411,5407:370,-70,-47,0,0,0.156959 -9412,5406:479,-69,-47,0,0,0.161359 -9413,5406:478,-68,-47,0,0,0.16186 -9414,5406:477,-67,-47,0,0,0.157941 -9415,5406:476,-66,-47,0,0,0.140704 -9416,5406:475,-65,-47,0,0,0.125982 -9417,5406:374,-64,-47,0,0,0.125666 -9418,5406:373,-63,-47,0,0,0.128895 -9419,5406:372,-62,-47,0,0,0.125395 -9420,5406:371,-61,-47,0,0,0.127586 -9421,5406:370,-60,-47,0,0,0.130986 -9422,5405:479,-59,-47,0,0,0.130612 -9423,5405:478,-58,-47,0,0,0.131103 -9424,5405:477,-57,-47,0,0,0.127529 -9425,5405:476,-56,-47,0,0,0.121099 -9426,5405:475,-55,-47,0,0,0.104856 -9427,5405:374,-54,-47,0,0,0.104981 -9428,5405:373,-53,-47,0,0,0.116888 -9429,5405:372,-52,-47,0,0,0.114919 -9430,5405:371,-51,-47,0,0,0.107518 -9431,5405:370,-50,-47,0,0,0.113072 -9432,5404:479,-49,-47,0,0,0.113113 -9433,5404:478,-48,-47,0,0,0.10741 -9434,5404:477,-47,-47,0,0,0.109085 -9435,5404:476,-46,-47,0,0,0.114044 -9436,5404:475,-45,-47,0,0,0.112425 -9437,5404:374,-44,-47,0,0,0.111811 -9438,5404:373,-43,-47,0,0,0.107232 -9439,5404:372,-42,-47,0,0,0.103523 -9440,5404:371,-41,-47,0,0,0.101033 -9441,5404:370,-40,-47,0,0,0.0961037 -9442,5403:479,-39,-47,0,0,0.0956585 -9443,5403:478,-38,-47,0,0,0.0922047 -9444,5403:477,-37,-47,0,0,0.0928777 -9445,5403:476,-36,-47,0,0,0.0946236 -9446,5403:475,-35,-47,0,0,0.0967304 -9447,5403:374,-34,-47,0,0,0.0973246 -9448,5403:373,-33,-47,0,0,0.0955341 -9449,5403:372,-32,-47,0,0,0.0917671 -9450,5403:371,-31,-47,0,0,0.0896401 -9451,5403:370,-30,-47,0,0,0.0881921 -9452,5402:479,-29,-47,0,0,0.0866349 -9453,5402:478,-28,-47,0,0,0.0870421 -9454,5402:477,-27,-47,0,0,0.0857367 -9455,5402:476,-26,-47,0,0,0.0867568 -9456,5402:475,-25,-47,0,0,0.0906177 -9457,5402:374,-24,-47,0,0,0.0915533 -9458,5402:373,-23,-47,0,0,0.09784 -9459,5402:372,-22,-47,0,0,0.0958899 -9460,5402:371,-21,-47,0,0,0.0944213 -9461,5402:370,-20,-47,0,0,0.0981308 -9462,5401:479,-19,-47,0,0,0.097958 -9463,5401:478,-18,-47,0,0,0.0963628 -9464,5401:477,-17,-47,0,0,0.0953922 -9465,5401:476,-16,-47,0,0,0.0965598 -9466,5401:475,-15,-47,0,0,0.0945267 -9467,5401:374,-14,-47,0,0,0.0975957 -9468,5401:373,-13,-47,0,0,0.0968203 -9469,5401:372,-12,-47,0,0,0.0980853 -9470,5401:371,-11,-47,0,0,0.0973155 -9471,5401:370,-10,-47,0,0,0.0975142 -9472,5400:479,-9,-47,0,0,0.0994481 -9473,5400:478,-8,-47,0,0,0.0992915 -9474,5400:477,-7,-47,0,0,0.0940968 -9475,5400:476,-6,-47,0,0,0.0899004 -9476,5400:475,-5,-47,0,0,0.0926961 -9477,5400:374,-4,-47,0,0,0.0871483 -9478,5400:373,-3,-47,0,0,0.0850706 -9479,5400:372,-2,-47,0,0,0.0846955 -9480,5400:371,-1,-47,0,0,0.0841872 -9481,3400:371,0,-47,0,0,0.0837131 -9482,3400:371,1,-47,0,0,0.0830925 -9483,3400:372,2,-47,0,0,0.0833432 -9484,3400:373,3,-47,0,0,0.0837208 -9485,3400:374,4,-47,0,0,0.0839576 -9486,3400:475,5,-47,0,0,0.0834453 -9487,3400:476,6,-47,0,0,0.0824373 -9488,3400:477,7,-47,0,0,0.0824997 -9489,3400:478,8,-47,0,0,0.0838233 -9490,3400:479,9,-47,0,0,0.0839735 -9491,3401:370,10,-47,0,0,0.0838865 -9492,3401:371,11,-47,0,0,0.0830534 -9493,3401:372,12,-47,0,0,0.0820883 -9494,3401:373,13,-47,0,0,0.0815402 -9495,3401:374,14,-47,0,0,0.0813481 -9496,3401:475,15,-47,0,0,0.0803708 -9497,3401:476,16,-47,0,0,0.0803328 -9498,3401:477,17,-47,0,0,0.0798484 -9499,3401:478,18,-47,0,0,0.0802645 -9500,3401:479,19,-47,0,0,0.0800751 -9501,3402:370,20,-47,0,0,0.0828735 -9502,3402:371,21,-47,0,0,0.0846955 -9503,3402:372,22,-47,0,0,0.0804696 -9504,3402:373,23,-47,0,0,0.0789844 -9505,3402:374,24,-47,0,0,0.0783144 -9506,3402:475,25,-47,0,0,0.0792915 -9507,3402:476,26,-47,0,0,0.0849028 -9508,3402:477,27,-47,0,0,0.0836737 -9509,3402:478,28,-47,0,0,0.0877634 -9510,3402:479,29,-47,0,0,0.0848149 -9511,3403:370,30,-47,0,0,0.0872219 -9512,3403:371,31,-47,0,0,0.0881838 -9513,3403:372,32,-47,0,0,0.0912717 -9514,3403:373,33,-47,0,0,0.0912717 -9515,3403:374,34,-47,0,0,0.0904737 -9516,3403:475,35,-47,0,0,0.0900519 -9517,3403:476,36,-47,0,0,0.0862696 -9518,3403:477,37,-47,0,0,0.091212 -9519,3403:478,38,-47,0,0,0.0901866 -9520,3403:479,39,-47,0,0,0.0912632 -9521,3404:370,40,-47,0,0,0.0938168 -9522,3404:371,41,-47,0,0,0.0902881 -9523,3404:372,42,-47,0,0,0.0918785 -9524,3404:373,43,-47,0,0,0.0910587 -9525,3404:374,44,-47,0,0,0.0913485 -9526,3404:475,45,-47,0,0,0.0927826 -9527,3404:476,46,-47,0,0,0.0896151 -9528,3404:477,47,-47,0,0,0.0881507 -9529,3404:478,48,-47,0,0,0.0906769 -9530,3404:479,49,-47,0,0,0.0913058 -9531,3405:370,50,-47,0,0,0.0906345 -9532,3405:371,51,-47,0,0,0.0897912 -9533,3405:372,52,-47,0,0,0.0900183 -9534,3405:373,53,-47,0,0,0.0945618 -9535,3405:374,54,-47,0,0,0.0967663 -9536,3405:475,55,-47,0,0,0.0914594 -9537,3405:476,56,-47,0,0,0.0893889 -9538,3405:477,57,-47,0,0,0.0963718 -9539,3405:478,58,-47,0,0,0.0941056 -9540,3405:479,59,-47,0,0,0.0939392 -9541,3406:370,60,-47,0,0,0.0948791 -9542,3406:371,61,-47,0,0,0.0966228 -9543,3406:372,62,-47,0,0,0.0989063 -9544,3406:373,63,-47,0,0,0.0958007 -9545,3406:374,64,-47,0,0,0.0970629 -9546,3406:475,65,-47,0,0,0.101734 -9547,3406:476,66,-47,0,0,0.0994848 -9548,3406:477,67,-47,0,0,0.096345 -9549,3406:478,68,-47,0,0,0.0970178 -9550,3406:479,69,-47,0,0,0.0970901 -9551,3407:370,70,-47,0,0,0.097958 -9552,3407:371,71,-47,0,0,0.0969009 -9553,3407:372,72,-47,0,0,0.0958273 -9554,3407:374,74,-47,0,0,0.0941142 -9555,3407:475,75,-47,0,0,0.0928777 -9556,3407:476,76,-47,0,0,0.0919813 -9557,3407:477,77,-47,0,0,0.086213 -9558,3407:478,78,-47,0,0,0.0856078 -9559,3407:479,79,-47,0,0,0.0877388 -9560,3408:370,80,-47,0,0,0.0882498 -9561,3408:371,81,-47,0,0,0.0952502 -9562,3408:372,82,-47,0,0,0.10136 -9563,3408:373,83,-47,0,0,0.105049 -9564,3408:374,84,-47,0,0,0.1056 -9565,3408:475,85,-47,0,0,0.106233 -9566,3408:476,86,-47,0,0,0.105834 -9567,3408:477,87,-47,0,0,0.106448 -9568,3408:478,88,-47,0,0,0.109305 -9569,3408:479,89,-47,0,0,0.10825 -9570,3409:370,90,-47,0,0,0.103275 -9571,3409:371,91,-47,0,0,0.102007 -9572,3409:372,92,-47,0,0,0.101697 -9573,3409:373,93,-47,0,0,0.101716 -9574,3409:374,94,-47,0,0,0.101491 -9575,3409:475,95,-47,0,0,0.109907 -9576,3409:476,96,-47,0,0,0.11225 -9577,3409:477,97,-47,0,0,0.110957 -9578,3409:478,98,-47,0,0,0.106067 -9579,3409:479,99,-47,0,0,0.107026 -9580,3410:370,100,-47,0,0,0.106262 -9581,3410:371,101,-47,0,0,0.102848 -9582,3410:372,102,-47,0,0,0.0954986 -9583,3410:373,103,-47,0,0,0.0957918 -9584,3410:374,104,-47,0,0,0.0975866 -9585,3410:475,105,-47,0,0,0.0970901 -9586,3410:476,106,-47,0,0,0.102111 -9587,3410:477,107,-47,0,0,0.104307 -9588,3410:478,108,-47,0,0,0.103676 -9589,3410:479,109,-47,0,0,0.104039 -9590,3411:370,110,-47,0,0,0.104115 -9591,3411:371,111,-47,0,0,0.112219 -9592,3411:372,112,-47,0,0,0.115369 -9593,3411:373,113,-47,0,0,0.123848 -9594,3411:374,114,-47,0,0,0.114585 -9595,3411:475,115,-47,0,0,0.114815 -9596,3411:476,116,-47,0,0,0.115516 -9597,3411:477,117,-47,0,0,0.111617 -9598,3411:478,118,-47,0,0,0.11121 -9599,3411:479,119,-47,0,0,0.111495 -9600,3412:370,120,-47,0,0,0.111995 -9601,3412:371,121,-47,0,0,0.110926 -9602,3412:372,122,-47,0,0,0.113598 -9603,3412:373,123,-47,0,0,0.114065 -9604,3412:374,124,-47,0,0,0.113692 -9605,3412:475,125,-47,0,0,0.117728 -9606,3412:476,126,-47,0,0,0.117654 -9607,3412:477,127,-47,0,0,0.116095 -9608,3412:478,128,-47,0,0,0.11909 -9609,3412:479,129,-47,0,0,0.123871 -9610,3413:370,130,-47,0,0,0.121757 -9611,3413:371,131,-47,0,0,0.118177 -9612,3413:372,132,-47,0,0,0.11639 -9613,3413:373,133,-47,0,0,0.117792 -9614,3413:374,134,-47,0,0,0.118552 -9615,3413:475,135,-47,0,0,0.119392 -9616,3413:476,136,-47,0,0,0.121647 -9617,3413:477,137,-47,0,0,0.118671 -9618,3413:478,138,-47,0,0,0.114585 -9619,3413:479,139,-47,0,0,0.117005 -9620,3414:370,140,-47,0,0,0.128492 -9621,3414:371,141,-47,0,0,0.133248 -9622,3414:372,142,-47,0,0,0.129531 -9623,3414:373,143,-47,0,0,0.124351 -9624,3414:374,144,-47,0,0,0.119058 -9625,3414:475,145,-47,0,0,0.117005 -9626,3414:476,146,-47,0,0,0.114335 -9627,3414:477,147,-47,0,0,0.108071 -9628,3414:478,148,-47,0,0,0.0977676 -9629,3414:479,149,-47,0,0,0.096345 -9630,3415:370,150,-47,0,0,0.12908 -9631,3415:371,151,-47,0,0,0.123871 -9632,3415:372,152,-47,0,0,0.112774 -9633,3415:373,153,-47,0,0,0.116285 -9634,3415:374,154,-47,0,0,0.126084 -9635,3415:475,155,-47,0,0,0.127517 -9636,3415:476,156,-47,0,0,0.140233 -9637,3415:477,157,-47,0,0,0.138568 -9638,3415:478,158,-47,0,0,0.140047 -9639,3415:479,159,-47,0,0,0.130659 -9640,3416:370,160,-47,0,0,0.125091 -9641,3416:371,161,-47,0,0,0.129647 -9642,3416:372,162,-47,0,0,0.135591 -9643,3416:373,163,-47,0,0,0.139973 -9644,3416:374,164,-47,0,0,0.144726 -9645,3416:475,165,-47,0,0,0.142653 -9646,3416:476,166,-47,0,0,0.147211 -9647,3416:477,167,-47,0,0,0.149052 -9648,3416:478,168,-47,0,0,0.148038 -9649,3416:479,169,-47,0,0,0.147663 -9650,3417:370,170,-47,0,0,0.145402 -9651,3417:371,171,-47,0,0,0.142553 -9652,3417:372,172,-47,0,0,0.1459 -9653,3417:373,173,-47,0,0,0.147327 -9654,3417:374,174,-47,0,0,0.151057 -9655,3417:475,175,-47,0,0,0.155821 -9656,3417:476,176,-47,0,0,0.159257 -9657,3417:477,177,-47,0,0,0.155983 -9658,3417:478,178,-47,0,0,0.147637 -9659,3417:479,179,-47,0,0,0.144028 -9660,3418:370,180,-47,0,0,0.140753 -9661,5418:360,-180,-46,0,0,0.16717 -9662,5417:469,-179,-46,0,0,0.165815 -9663,5417:468,-178,-46,0,0,0.163962 -9664,5417:467,-177,-46,0,0,0.163498 -9665,5417:466,-176,-46,0,0,0.161847 -9666,5417:465,-175,-46,0,0,0.161512 -9667,5417:364,-174,-46,0,0,0.163498 -9668,5417:363,-173,-46,0,0,0.159629 -9669,5417:362,-172,-46,0,0,0.152911 -9670,5417:361,-171,-46,0,0,0.15327 -9671,5417:360,-170,-46,0,0,0.155416 -9672,5416:469,-169,-46,0,0,0.152392 -9673,5416:468,-168,-46,0,0,0.150425 -9674,5416:467,-167,-46,0,0,0.151823 -9675,5416:466,-166,-46,0,0,0.147069 -9676,5416:465,-165,-46,0,0,0.152286 -9677,5416:364,-164,-46,0,0,0.154461 -9678,5416:363,-163,-46,0,0,0.155321 -9679,5416:362,-162,-46,0,0,0.152286 -9680,5416:361,-161,-46,0,0,0.146233 -9681,5416:360,-160,-46,0,0,0.14507 -9682,5415:469,-159,-46,0,0,0.152924 -9683,5415:468,-158,-46,0,0,0.158255 -9684,5415:467,-157,-46,0,0,0.162335 -9685,5415:466,-156,-46,0,0,0.155699 -9686,5415:465,-155,-46,0,0,0.149691 -9687,5415:364,-154,-46,0,0,0.152366 -9688,5415:363,-153,-46,0,0,0.151413 -9689,5415:362,-152,-46,0,0,0.141376 -9690,5415:361,-151,-46,0,0,0.150517 -9691,5415:360,-150,-46,0,0,0.166057 -9692,5414:469,-149,-46,0,0,0.160319 -9693,5414:468,-148,-46,0,0,0.151307 -9694,5414:467,-147,-46,0,0,0.12656 -9695,5414:466,-146,-46,0,0,0.138372 -9696,5414:465,-145,-46,0,0,0.160236 -9697,5414:364,-144,-46,0,0,0.162433 -9698,5414:363,-143,-46,0,0,0.176213 -9699,5414:362,-142,-46,0,0,0.175929 -9700,5414:361,-141,-46,0,0,0.15923 -9701,5414:360,-140,-46,0,0,0.160832 -9702,5413:469,-139,-46,0,0,0.165177 -9703,5413:468,-138,-46,0,0,0.160776 -9704,5413:467,-137,-46,0,0,0.154917 -9705,5413:466,-136,-46,0,0,0.14857 -9706,5413:465,-135,-46,0,0,0.148908 -9707,5413:364,-134,-46,0,0,0.153871 -9708,5413:363,-133,-46,0,0,0.154998 -9709,5413:362,-132,-46,0,0,0.156756 -9710,5413:361,-131,-46,0,0,0.1719 -9711,5413:360,-130,-46,0,0,0.187491 -9712,5412:469,-129,-46,0,0,0.183363 -9713,5412:468,-128,-46,0,0,0.180428 -9714,5412:467,-127,-46,0,0,0.180565 -9715,5412:466,-126,-46,0,0,0.177979 -9716,5412:465,-125,-46,0,0,0.17483 -9717,5412:364,-124,-46,0,0,0.173088 -9718,5412:363,-123,-46,0,0,0.16911 -9719,5412:362,-122,-46,0,0,0.16911 -9720,5412:361,-121,-46,0,0,0.170457 -9721,5412:360,-120,-46,0,0,0.16862 -9722,5411:469,-119,-46,0,0,0.163807 -9723,5411:468,-118,-46,0,0,0.160624 -9724,5411:467,-117,-46,0,0,0.163427 -9725,5411:466,-116,-46,0,0,0.162923 -9726,5411:465,-115,-46,0,0,0.157504 -9727,5411:364,-114,-46,0,0,0.156484 -9728,5411:363,-113,-46,0,0,0.159587 -9729,5411:362,-112,-46,0,0,0.161387 -9730,5411:361,-111,-46,0,0,0.157368 -9731,5411:360,-110,-46,0,0,0.15347 -9732,5410:469,-109,-46,0,0,0.152977 -9733,5410:468,-108,-46,0,0,0.150688 -9734,5410:467,-107,-46,0,0,0.148727 -9735,5410:466,-106,-46,0,0,0.147146 -9736,5410:465,-105,-46,0,0,0.146992 -9737,5410:364,-104,-46,0,0,0.147624 -9738,5410:363,-103,-46,0,0,0.148311 -9739,5410:362,-102,-46,0,0,0.148804 -9740,5410:361,-101,-46,0,0,0.148376 -9741,5410:360,-100,-46,0,0,0.147133 -9742,5409:469,-99,-46,0,0,0.144955 -9743,5409:468,-98,-46,0,0,0.145287 -9744,5409:467,-97,-46,0,0,0.146131 -9745,5409:466,-96,-46,0,0,0.144396 -9746,5409:465,-95,-46,0,0,0.144612 -9747,5409:364,-94,-46,0,0,0.148077 -9748,5409:363,-93,-46,0,0,0.146966 -9749,5409:362,-92,-46,0,0,0.145312 -9750,5409:361,-91,-46,0,0,0.145389 -9751,5409:360,-90,-46,0,0,0.146221 -9752,5408:469,-89,-46,0,0,0.145555 -9753,5408:468,-88,-46,0,0,0.146593 -9754,5408:467,-87,-46,0,0,0.146464 -9755,5408:466,-86,-46,0,0,0.145746 -9756,5408:465,-85,-46,0,0,0.146015 -9757,5408:364,-84,-46,0,0,0.145402 -9758,5408:363,-83,-46,0,0,0.146426 -9759,5408:362,-82,-46,0,0,0.146979 -9760,5408:361,-81,-46,0,0,0.144828 -9761,5408:360,-80,-46,0,0,0.145414 -9762,5407:469,-79,-46,0,0,0.148103 -9763,5407:468,-78,-46,0,0,0.153097 -9764,5407:467,-77,-46,0,0,0.14796 -9765,5407:466,-76,-46,0,0,0.14822 -9766,5407:465,-75,-46,0,0,0.154662 -9767,5407:364,-74,-46,0,0,0.155807 -9768,5407:363,-73,-46,0,0,0.154193 -9769,5407:362,-72,-46,0,0,0.157668 -9770,5407:361,-71,-46,0,0,0.163765 -9771,5407:360,-70,-46,0,0,0.171973 -9772,5406:468,-68,-46,0,0,0.176198 -9773,5406:467,-67,-46,0,0,0.176093 -9774,5406:466,-66,-46,0,0,0.154541 -9775,5406:465,-65,-46,0,0,0.143876 -9776,5406:364,-64,-46,0,0,0.137359 -9777,5406:363,-63,-46,0,0,0.133094 -9778,5406:362,-62,-46,0,0,0.131419 -9779,5406:361,-61,-46,0,0,0.132869 -9780,5406:360,-60,-46,0,0,0.134595 -9781,5405:469,-59,-46,0,0,0.134702 -9782,5405:468,-58,-46,0,0,0.136013 -9783,5405:467,-57,-46,0,0,0.137395 -9784,5405:466,-56,-46,0,0,0.13617 -9785,5405:465,-55,-46,0,0,0.132325 -9786,5405:364,-54,-46,0,0,0.123581 -9787,5405:363,-53,-46,0,0,0.126481 -9788,5405:362,-52,-46,0,0,0.112445 -9789,5405:361,-51,-46,0,0,0.114836 -9790,5405:360,-50,-46,0,0,0.114658 -9791,5404:469,-49,-46,0,0,0.111434 -9792,5404:468,-48,-46,0,0,0.108986 -9793,5404:467,-47,-46,0,0,0.116116 -9794,5404:466,-46,-46,0,0,0.114366 -9795,5404:465,-45,-46,0,0,0.111048 -9796,5404:364,-44,-46,0,0,0.11035 -9797,5404:363,-43,-46,0,0,0.109435 -9798,5404:362,-42,-46,0,0,0.108667 -9799,5404:361,-41,-46,0,0,0.1038 -9800,5404:360,-40,-46,0,0,0.0988789 -9801,5403:469,-39,-46,0,0,0.094694 -9802,5403:468,-38,-46,0,0,0.0965869 -9803,5403:467,-37,-46,0,0,0.102299 -9804,5403:466,-36,-46,0,0,0.103428 -9805,5403:465,-35,-46,0,0,0.102309 -9806,5403:364,-34,-46,0,0,0.100335 -9807,5403:363,-33,-46,0,0,0.0946763 -9808,5403:362,-32,-46,0,0,0.0932593 -9809,5403:361,-31,-46,0,0,0.0918614 -9810,5403:360,-30,-46,0,0,0.0907279 -9811,5402:469,-29,-46,0,0,0.088606 -9812,5402:468,-28,-46,0,0,0.0876728 -9813,5402:467,-27,-46,0,0,0.0886143 -9814,5402:466,-26,-46,0,0,0.0957117 -9815,5402:465,-25,-46,0,0,0.100344 -9816,5402:364,-24,-46,0,0,0.0997796 -9817,5402:363,-23,-46,0,0,0.0989429 -9818,5402:362,-22,-46,0,0,0.0968112 -9819,5402:361,-21,-46,0,0,0.09718 -9820,5402:360,-20,-46,0,0,0.0996597 -9821,5401:469,-19,-46,0,0,0.101612 -9822,5401:468,-18,-46,0,0,0.103161 -9823,5401:467,-17,-46,0,0,0.102819 -9824,5401:466,-16,-46,0,0,0.104586 -9825,5401:465,-15,-46,0,0,0.100827 -9826,5401:364,-14,-46,0,0,0.100827 -9827,5401:363,-13,-46,0,0,0.103209 -9828,5401:362,-12,-46,0,0,0.102441 -9829,5401:361,-11,-46,0,0,0.100446 -9830,5401:360,-10,-46,0,0,0.103905 -9831,5400:469,-9,-46,0,0,0.106487 -9832,5400:468,-8,-46,0,0,0.103104 -9833,5400:467,-7,-46,0,0,0.0957828 -9834,5400:466,-6,-46,0,0,0.0961664 -9835,5400:465,-5,-46,0,0,0.0993285 -9836,5400:364,-4,-46,0,0,0.0965062 -9837,5400:363,-3,-46,0,0,0.0940092 -9838,5400:362,-2,-46,0,0,0.0922821 -9839,5400:361,-1,-46,0,0,0.0915361 -9840,3400:361,0,-46,0,0,0.0894224 -9841,3400:361,1,-46,0,0,0.0850625 -9842,3400:362,2,-46,0,0,0.0847354 -9843,3400:363,3,-46,0,0,0.0876728 -9844,3400:364,4,-46,0,0,0.0872137 -9845,3400:465,5,-46,0,0,0.0853428 -9846,3400:466,6,-46,0,0,0.0845522 -9847,3400:467,7,-46,0,0,0.0840447 -9848,3400:468,8,-46,0,0,0.0836893 -9849,3400:469,9,-46,0,0,0.0829908 -9850,3401:360,10,-46,0,0,0.0831238 -9851,3401:361,11,-46,0,0,0.0837288 -9852,3401:362,12,-46,0,0,0.0828814 -9853,3401:363,13,-46,0,0,0.0825151 -9854,3401:364,14,-46,0,0,0.0820727 -9855,3401:465,15,-46,0,0,0.0819491 -9856,3401:466,16,-46,0,0,0.0823209 -9857,3401:467,17,-46,0,0,0.0838549 -9858,3401:468,18,-46,0,0,0.0849667 -9859,3401:469,19,-46,0,0,0.0855678 -9860,3402:360,20,-46,0,0,0.0858093 -9861,3402:361,21,-46,0,0,0.0856883 -9862,3402:362,22,-46,0,0,0.0834926 -9863,3402:363,23,-46,0,0,0.0829283 -9864,3402:364,24,-46,0,0,0.0834453 -9865,3402:465,25,-46,0,0,0.0871892 -9866,3402:466,26,-46,0,0,0.0888387 -9867,3402:467,27,-46,0,0,0.0887306 -9868,3402:468,28,-46,0,0,0.0872794 -9869,3402:469,29,-46,0,0,0.0843616 -9870,3403:360,30,-46,0,0,0.0857527 -9871,3403:361,31,-46,0,0,0.0882168 -9872,3403:362,32,-46,0,0,0.0884567 -9873,3403:363,33,-46,0,0,0.0907618 -9874,3403:364,34,-46,0,0,0.0913058 -9875,3403:465,35,-46,0,0,0.0932593 -9876,3403:466,36,-46,0,0,0.0876728 -9877,3403:467,37,-46,0,0,0.0916472 -9878,3403:468,38,-46,0,0,0.0962378 -9879,3403:469,39,-46,0,0,0.0952416 -9880,3404:360,40,-46,0,0,0.0957652 -9881,3404:361,41,-46,0,0,0.0946325 -9882,3404:362,42,-46,0,0,0.0932593 -9883,3404:363,43,-46,0,0,0.0938517 -9884,3404:364,44,-46,0,0,0.0941407 -9885,3404:465,45,-46,0,0,0.0942546 -11940,5402:103,-23,-40,0,0,0.14048 -9886,3404:466,46,-46,0,0,0.0934594 -9887,3404:467,47,-46,0,0,0.092489 -9888,3404:468,48,-46,0,0,0.0924975 -9889,3404:469,49,-46,0,0,0.0926357 -9890,3405:360,50,-46,0,0,0.0938256 -9891,3405:361,51,-46,0,0,0.0945884 -9892,3405:362,52,-46,0,0,0.0947203 -9893,3405:363,53,-46,0,0,0.0966854 -9894,3405:364,54,-46,0,0,0.099669 -9895,3405:465,55,-46,0,0,0.0957206 -9896,3405:466,56,-46,0,0,0.0959967 -9897,3405:467,57,-46,0,0,0.0987965 -9898,3405:468,58,-46,0,0,0.0982763 -9899,3405:469,59,-46,0,0,0.0951088 -9900,3406:360,60,-46,0,0,0.0953389 -9901,3406:361,61,-46,0,0,0.0961931 -9902,3406:362,62,-46,0,0,0.0970178 -9903,3406:363,63,-46,0,0,0.100697 -9904,3406:364,64,-46,0,0,0.102696 -9905,3406:465,65,-46,0,0,0.102791 -9906,3406:466,66,-46,0,0,0.101622 -9907,3406:467,67,-46,0,0,0.101697 -9908,3406:468,68,-46,0,0,0.102819 -9909,3406:469,69,-46,0,0,0.102649 -9910,3407:360,70,-46,0,0,0.101491 -9911,3407:361,71,-46,0,0,0.0997613 -9912,3407:362,72,-46,0,0,0.0990346 -9913,3407:364,74,-46,0,0,0.0988331 -9914,3407:465,75,-46,0,0,0.0979763 -9915,3407:466,76,-46,0,0,0.0978763 -9916,3407:467,77,-46,0,0,0.0971712 -9917,3407:468,78,-46,0,0,0.0940354 -9918,3407:469,79,-46,0,0,0.0864886 -9919,3408:360,80,-46,0,0,0.091425 -9920,3408:361,81,-46,0,0,0.094123 -9921,3408:362,82,-46,0,0,0.101378 -9922,3408:363,83,-46,0,0,0.0988697 -9923,3408:364,84,-46,0,0,0.0974329 -9924,3408:465,85,-46,0,0,0.111068 -9925,3408:466,86,-46,0,0,0.110138 -9926,3408:467,87,-46,0,0,0.107774 -9927,3408:468,88,-46,0,0,0.110007 -9928,3408:469,89,-46,0,0,0.111862 -9929,3409:360,90,-46,0,0,0.109275 -9930,3409:361,91,-46,0,0,0.108398 -9931,3409:362,92,-46,0,0,0.109857 -9932,3409:363,93,-46,0,0,0.115674 -9933,3409:364,94,-46,0,0,0.109375 -9934,3409:465,95,-46,0,0,0.107695 -9935,3409:466,96,-46,0,0,0.112199 -9936,3409:467,97,-46,0,0,0.111302 -9937,3409:468,98,-46,0,0,0.110038 -9938,3409:469,99,-46,0,0,0.107163 -9939,3410:360,100,-46,0,0,0.101612 -9940,3410:361,101,-46,0,0,0.101088 -9941,3410:362,102,-46,0,0,0.0992365 -9942,3410:363,103,-46,0,0,0.0978946 -9943,3410:364,104,-46,0,0,0.0960144 -9944,3410:465,105,-46,0,0,0.100474 -9945,3410:466,106,-46,0,0,0.106741 -9946,3410:467,107,-46,0,0,0.108896 -9947,3410:468,108,-46,0,0,0.106732 -9948,3410:469,109,-46,0,0,0.104962 -9949,3411:360,110,-46,0,0,0.106048 -9950,3411:361,111,-46,0,0,0.111119 -9951,3411:362,112,-46,0,0,0.111648 -9952,3411:363,113,-46,0,0,0.117068 -9953,3411:364,114,-46,0,0,0.123503 -9954,3411:465,115,-46,0,0,0.118167 -9955,3411:466,116,-46,0,0,0.116158 -9956,3411:467,117,-46,0,0,0.117377 -9957,3411:468,118,-46,0,0,0.118649 -9958,3411:469,119,-46,0,0,0.117079 -9959,3412:360,120,-46,0,0,0.119923 -9960,3412:361,121,-46,0,0,0.116941 -9961,3412:362,122,-46,0,0,0.111444 -9962,3412:363,123,-46,0,0,0.111831 -9963,3412:364,124,-46,0,0,0.117185 -9964,3412:465,125,-46,0,0,0.117963 -9965,3412:466,126,-46,0,0,0.120205 -9966,3412:467,127,-46,0,0,0.123882 -9967,3412:468,128,-46,0,0,0.127494 -9968,3412:469,129,-46,0,0,0.128113 -9969,3413:360,130,-46,0,0,0.128067 -9970,3413:361,131,-46,0,0,0.125722 -9971,3413:362,132,-46,0,0,0.120728 -9972,3413:363,133,-46,0,0,0.121746 -9973,3413:364,134,-46,0,0,0.123926 -9974,3413:465,135,-46,0,0,0.123459 -9975,3413:466,136,-46,0,0,0.122738 -9976,3413:467,137,-46,0,0,0.124597 -9977,3413:468,138,-46,0,0,0.122473 -9978,3413:469,139,-46,0,0,0.125316 -9979,3414:360,140,-46,0,0,0.136812 -9980,3414:361,141,-46,0,0,0.13523 -9981,3414:362,142,-46,0,0,0.131701 -9982,3414:363,143,-46,0,0,0.128147 -9983,3414:364,144,-46,0,0,0.118467 -9984,3414:465,145,-46,0,0,0.113661 -9985,3414:466,146,-46,0,0,0.111515 -9986,3414:467,147,-46,0,0,0.107626 -9987,3414:468,148,-46,0,0,0.118467 -9988,3414:469,149,-46,0,0,0.14977 -9989,3415:360,150,-46,0,0,0.150531 -9990,3415:361,151,-46,0,0,0.13176 -9991,3415:362,152,-46,0,0,0.136013 -9992,3415:363,153,-46,0,0,0.152339 -9993,3415:364,154,-46,0,0,0.151452 -9994,3415:465,155,-46,0,0,0.14599 -9995,3415:466,156,-46,0,0,0.154487 -9996,3415:467,157,-46,0,0,0.147379 -9997,3415:468,158,-46,0,0,0.144675 -9998,3415:469,159,-46,0,0,0.145606 -9999,3416:360,160,-46,0,0,0.126742 -10000,3416:361,161,-46,0,0,0.146015 -10001,3416:362,162,-46,0,0,0.161874 -10002,3416:363,163,-46,0,0,0.151479 -10003,3416:364,164,-46,0,0,0.142917 -10004,3416:465,165,-46,0,0,0.152379 -10005,3416:466,166,-46,0,0,0.173662 -10006,3416:467,167,-46,0,0,0.180109 -10007,3416:468,168,-46,0,0,0.179533 -10008,3416:469,169,-46,0,0,0.17443 -10009,3417:360,170,-46,0,0,0.160084 -10010,3417:361,171,-46,0,0,0.150964 -10011,3417:362,172,-46,0,0,0.146272 -10012,3417:363,173,-46,0,0,0.148233 -10013,3417:364,174,-46,0,0,0.148831 -10014,3417:465,175,-46,0,0,0.152167 -10015,3417:466,176,-46,0,0,0.158406 -10016,3417:467,177,-46,0,0,0.157777 -10017,3417:468,178,-46,0,0,0.165064 -10018,3417:469,179,-46,0,0,0.166969 -10019,3418:360,180,-46,0,0,0.16717 -10020,5418:350,-180,-45,0,0,0.166656 -10021,5417:459,-179,-45,0,0,0.168836 -10022,5417:458,-178,-45,0,0,0.172031 -10023,5417:457,-177,-45,0,0,0.174637 -10024,5417:456,-176,-45,0,0,0.175795 -10025,5417:455,-175,-45,0,0,0.172735 -10026,5417:354,-174,-45,0,0,0.169891 -10027,5417:353,-173,-45,0,0,0.163231 -10028,5417:352,-172,-45,0,0,0.155753 -10029,5417:351,-171,-45,0,0,0.155295 -10030,5417:350,-170,-45,0,0,0.159147 -10031,5416:459,-169,-45,0,0,0.160915 -10032,5416:458,-168,-45,0,0,0.162209 -10033,5416:457,-167,-45,0,0,0.154326 -10034,5416:456,-166,-45,0,0,0.156186 -10035,5416:455,-165,-45,0,0,0.157927 -10036,5416:354,-164,-45,0,0,0.158201 -10037,5416:353,-163,-45,0,0,0.16072 -10038,5416:352,-162,-45,0,0,0.166556 -10039,5416:351,-161,-45,0,0,0.162824 -10040,5416:350,-160,-45,0,0,0.15551 -10041,5415:459,-159,-45,0,0,0.158379 -10042,5415:458,-158,-45,0,0,0.161596 -10043,5415:457,-157,-45,0,0,0.165517 -10044,5415:456,-156,-45,0,0,0.165531 -10045,5415:455,-155,-45,0,0,0.166541 -10046,5415:354,-154,-45,0,0,0.160568 -10047,5415:353,-153,-45,0,0,0.154434 -10048,5415:352,-152,-45,0,0,0.155025 -10049,5415:351,-151,-45,0,0,0.160679 -10050,5415:350,-150,-45,0,0,0.174652 -10051,5414:459,-149,-45,0,0,0.173677 -10052,5414:458,-148,-45,0,0,0.168763 -10053,5414:457,-147,-45,0,0,0.170471 -10054,5414:456,-146,-45,0,0,0.184272 -10055,5414:455,-145,-45,0,0,0.184257 -10056,5414:354,-144,-45,0,0,0.186756 -10057,5414:353,-143,-45,0,0,0.185682 -10058,5414:352,-142,-45,0,0,0.187319 -10059,5414:351,-141,-45,0,0,0.157177 -10060,5414:350,-140,-45,0,0,0.175513 -10061,5413:459,-139,-45,0,0,0.172838 -10062,5413:458,-138,-45,0,0,0.16992 -10063,5413:457,-137,-45,0,0,0.16885 -10064,5413:456,-136,-45,0,0,0.165602 -10065,5413:455,-135,-45,0,0,0.161526 -10066,5413:354,-134,-45,0,0,0.158831 -10067,5413:353,-133,-45,0,0,0.159753 -10068,5413:352,-132,-45,0,0,0.172368 -10069,5413:351,-131,-45,0,0,0.193928 -10070,5413:350,-130,-45,0,0,0.187976 -10071,5412:459,-129,-45,0,0,0.18261 -10072,5412:458,-128,-45,0,0,0.182411 -10073,5412:457,-127,-45,0,0,0.17831 -10074,5412:456,-126,-45,0,0,0.177319 -10075,5412:455,-125,-45,0,0,0.176034 -10076,5412:354,-124,-45,0,0,0.17275 -10077,5412:353,-123,-45,0,0,0.168763 -10078,5412:352,-122,-45,0,0,0.169905 -10079,5412:351,-121,-45,0,0,0.167227 -10080,5412:350,-120,-45,0,0,0.165163 -10081,5411:459,-119,-45,0,0,0.164667 -10082,5411:458,-118,-45,0,0,0.165219 -10083,5411:457,-117,-45,0,0,0.166656 -10084,5411:456,-116,-45,0,0,0.165631 -10085,5411:455,-115,-45,0,0,0.164371 -10086,5411:354,-114,-45,0,0,0.164117 -10087,5411:353,-113,-45,0,0,0.163343 -10088,5411:352,-112,-45,0,0,0.160554 -10089,5411:351,-111,-45,0,0,0.157408 -10090,5411:350,-110,-45,0,0,0.157518 -10091,5410:459,-109,-45,0,0,0.156457 -10092,5410:458,-108,-45,0,0,0.154528 -10093,5410:457,-107,-45,0,0,0.153484 -10094,5410:456,-106,-45,0,0,0.153684 -10095,5410:455,-105,-45,0,0,0.155402 -10096,5410:354,-104,-45,0,0,0.154273 -10097,5410:353,-103,-45,0,0,0.152246 -10098,5410:352,-102,-45,0,0,0.152844 -10099,5410:351,-101,-45,0,0,0.150557 -10100,5410:350,-100,-45,0,0,0.152578 -10101,5409:459,-99,-45,0,0,0.154877 -10102,5409:458,-98,-45,0,0,0.151479 -10103,5409:457,-97,-45,0,0,0.149313 -10104,5409:456,-96,-45,0,0,0.149809 -10105,5409:455,-95,-45,0,0,0.150137 -10106,5409:354,-94,-45,0,0,0.151294 -10107,5409:353,-93,-45,0,0,0.14977 -10108,5409:352,-92,-45,0,0,0.149195 -10109,5409:351,-91,-45,0,0,0.150333 -10110,5409:350,-90,-45,0,0,0.150176 -10111,5408:459,-89,-45,0,0,0.150307 -10112,5408:458,-88,-45,0,0,0.151149 -10113,5408:457,-87,-45,0,0,0.151188 -10114,5408:456,-86,-45,0,0,0.152591 -10115,5408:455,-85,-45,0,0,0.151955 -10116,5408:354,-84,-45,0,0,0.150084 -10117,5408:353,-83,-45,0,0,0.15082 -10118,5408:352,-82,-45,0,0,0.149914 -10119,5408:351,-81,-45,0,0,0.149052 -10120,5408:350,-80,-45,0,0,0.150465 -10121,5407:459,-79,-45,0,0,0.151809 -10122,5407:458,-78,-45,0,0,0.158927 -10123,5407:457,-77,-45,0,0,0.155349 -10124,5407:456,-76,-45,0,0,0.154434 -10125,5407:455,-75,-45,0,0,0.158639 -10126,5407:354,-74,-45,0,0,0.164865 -10127,5407:353,-73,-45,0,0,0.173338 -10128,5407:352,-72,-45,0,0,0.181448 -10129,5406:456,-66,-45,0,0,0.184443 -10130,5406:455,-65,-45,0,0,0.160388 -10131,5406:354,-64,-45,0,0,0.153217 -10132,5406:353,-63,-45,0,0,0.152618 -10133,5406:352,-62,-45,0,0,0.15015 -10134,5406:351,-61,-45,0,0,0.147637 -10135,5406:350,-60,-45,0,0,0.149901 -10136,5405:459,-59,-45,0,0,0.154126 -10137,5405:458,-58,-45,0,0,0.154958 -10138,5405:457,-57,-45,0,0,0.154568 -10139,5405:456,-56,-45,0,0,0.149835 -10140,5405:455,-55,-45,0,0,0.142904 -10141,5405:354,-54,-45,0,0,0.136388 -10142,5405:353,-53,-45,0,0,0.134188 -10143,5405:352,-52,-45,0,0,0.133319 -10144,5405:351,-51,-45,0,0,0.127609 -10145,5405:350,-50,-45,0,0,0.122274 -10146,5404:459,-49,-45,0,0,0.118102 -10147,5404:458,-48,-45,0,0,0.120695 -10148,5404:457,-47,-45,0,0,0.116686 -10149,5404:456,-46,-45,0,0,0.114596 -10150,5404:455,-45,-45,0,0,0.113847 -10151,5404:354,-44,-45,0,0,0.113454 -10152,5404:353,-43,-45,0,0,0.110269 -10153,5404:352,-42,-45,0,0,0.108956 -10154,5404:351,-41,-45,0,0,0.108359 -10155,5404:350,-40,-45,0,0,0.107843 -10156,5403:459,-39,-45,0,0,0.112086 -10157,5403:458,-38,-45,0,0,0.106292 -10158,5403:457,-37,-45,0,0,0.110967 -10159,5403:456,-36,-45,0,0,0.107045 -10160,5403:455,-35,-45,0,0,0.100725 -10161,5403:354,-34,-45,0,0,0.0964882 -10162,5403:353,-33,-45,0,0,0.0970901 -10163,5403:352,-32,-45,0,0,0.10564 -10164,5403:351,-31,-45,0,0,0.104962 -10165,5403:350,-30,-45,0,0,0.0949939 -10166,5402:459,-29,-45,0,0,0.0927307 -10167,5402:458,-28,-45,0,0,0.0905922 -10168,5402:457,-27,-45,0,0,0.0931292 -10169,5402:456,-26,-45,0,0,0.097144 -10170,5402:455,-25,-45,0,0,0.0967304 -10171,5402:354,-24,-45,0,0,0.104557 -10172,5402:353,-23,-45,0,0,0.102905 -10173,5402:352,-22,-45,0,0,0.106253 -10174,5402:351,-21,-45,0,0,0.10814 -10175,5402:350,-20,-45,0,0,0.106507 -10176,5401:459,-19,-45,0,0,0.107498 -10177,5401:458,-18,-45,0,0,0.104519 -10178,5401:457,-17,-45,0,0,0.105581 -10179,5401:456,-16,-45,0,0,0.110855 -10180,5401:455,-15,-45,0,0,0.104451 -10181,5401:354,-14,-45,0,0,0.105853 -10182,5401:353,-13,-45,0,0,0.108607 -10183,5401:352,-12,-45,0,0,0.110946 -10184,5401:351,-11,-45,0,0,0.109496 -10185,5401:350,-10,-45,0,0,0.107065 -10186,5400:459,-9,-45,0,0,0.104885 -10187,5400:458,-8,-45,0,0,0.105155 -10188,5400:457,-7,-45,0,0,0.104029 -10189,5400:456,-6,-45,0,0,0.101088 -10190,5400:455,-5,-45,0,0,0.097081 -10191,5400:354,-4,-45,0,0,0.0954897 -10192,5400:353,-3,-45,0,0,0.0936597 -10193,5400:352,-2,-45,0,0,0.0921189 -10194,5400:351,-1,-45,0,0,0.0917757 -10195,3400:351,0,-45,0,0,0.0927048 -10196,3400:351,1,-45,0,0,0.091485 -10197,3400:352,2,-45,0,0,0.0892637 -10198,3400:353,3,-45,0,0,0.0858011 -10199,3400:354,4,-45,0,0,0.0863425 -10200,3400:455,5,-45,0,0,0.0855597 -10201,3400:456,6,-45,0,0,0.0850706 -10202,3400:457,7,-45,0,0,0.084783 -10203,3400:458,8,-45,0,0,0.0844171 -10204,3400:459,9,-45,0,0,0.0843297 -10205,3401:350,10,-45,0,0,0.0840287 -10206,3401:351,11,-45,0,0,0.0836973 -10207,3401:352,12,-45,0,0,0.0849187 -10208,3401:353,13,-45,0,0,0.085407 -10209,3401:354,14,-45,0,0,0.0853509 -10210,3401:455,15,-45,0,0,0.0857689 -10211,3401:456,16,-45,0,0,0.0859865 -10212,3401:457,17,-45,0,0,0.0856964 -10213,3401:458,18,-45,0,0,0.085431 -10214,3401:459,19,-45,0,0,0.0859705 -10215,3402:350,20,-45,0,0,0.0867893 -10216,3402:351,21,-45,0,0,0.0870177 -10217,3402:352,22,-45,0,0,0.0863101 -10218,3402:353,23,-45,0,0,0.0846 -10219,3402:354,24,-45,0,0,0.0861888 -10220,3402:455,25,-45,0,0,0.0869933 -10221,3402:456,26,-45,0,0,0.0857527 -10222,3402:457,27,-45,0,0,0.0887055 -10223,3402:458,28,-45,0,0,0.0881671 -10224,3402:459,29,-45,0,0,0.0906007 -10225,3403:350,30,-45,0,0,0.0954366 -10226,3403:351,31,-45,0,0,0.0976136 -10227,3403:352,32,-45,0,0,0.0972073 -10228,3403:353,33,-45,0,0,0.0917671 -10229,3403:354,34,-45,0,0,0.0933984 -10230,3403:455,35,-45,0,0,0.0957828 -10231,3403:456,36,-45,0,0,0.0940354 -10232,3403:457,37,-45,0,0,0.0968921 -10233,3403:458,38,-45,0,0,0.0993467 -10234,3403:459,39,-45,0,0,0.0960234 -10235,3404:350,40,-45,0,0,0.097072 -10236,3404:351,41,-45,0,0,0.0959075 -10237,3404:352,42,-45,0,0,0.0936684 -10238,3404:353,43,-45,0,0,0.0933201 -10239,3404:354,44,-45,0,0,0.094395 -10240,3404:455,45,-45,0,0,0.0942546 -10241,3404:456,46,-45,0,0,0.0945004 -10242,3404:457,47,-45,0,0,0.0952238 -10243,3404:458,48,-45,0,0,0.0961304 -10244,3404:459,49,-45,0,0,0.0960144 -10245,3405:350,50,-45,0,0,0.0967035 -10246,3405:351,51,-45,0,0,0.0975866 -10247,3405:352,52,-45,0,0,0.097 -10248,3405:353,53,-45,0,0,0.100604 -10249,3405:354,54,-45,0,0,0.102791 -10250,3405:455,55,-45,0,0,0.100409 -10251,3405:456,56,-45,0,0,0.0961217 -10252,3405:457,57,-45,0,0,0.0972612 -10253,3405:458,58,-45,0,0,0.101098 -10254,3405:459,59,-45,0,0,0.101303 -10255,3406:350,60,-45,0,0,0.100865 -10256,3406:351,61,-45,0,0,0.10039 -10257,3406:352,62,-45,0,0,0.0991813 -10258,3406:353,63,-45,0,0,0.10136 -10259,3406:354,64,-45,0,0,0.102139 -10260,3406:455,65,-45,0,0,0.103313 -10261,3406:456,66,-45,0,0,0.104952 -10262,3406:457,67,-45,0,0,0.104952 -10263,3406:458,68,-45,0,0,0.103857 -10264,3406:459,69,-45,0,0,0.103628 -10265,3407:350,70,-45,0,0,0.102394 -10266,3407:351,71,-45,0,0,0.100744 -10267,3407:352,72,-45,0,0,0.0987781 -10268,3407:354,74,-45,0,0,0.0984495 -10269,3407:455,75,-45,0,0,0.0986227 -10270,3407:456,76,-45,0,0,0.0994938 -10271,3407:457,77,-45,0,0,0.0984495 -10272,3407:458,78,-45,0,0,0.0951088 -10273,3407:459,79,-45,0,0,0.0871648 -10274,3408:350,80,-45,0,0,0.092679 -10275,3408:351,81,-45,0,0,0.097108 -10276,3408:352,82,-45,0,0,0.0975957 -10277,3408:353,83,-45,0,0,0.0971531 -10278,3408:354,84,-45,0,0,0.0964346 -10279,3408:455,85,-45,0,0,0.114055 -10280,3408:456,86,-45,0,0,0.111352 -10281,3408:457,87,-45,0,0,0.111964 -10282,3408:458,88,-45,0,0,0.113268 -10283,3408:459,89,-45,0,0,0.122274 -10284,3409:350,90,-45,0,0,0.120957 -10285,3409:351,91,-45,0,0,0.11656 -10286,3409:352,92,-45,0,0,0.115222 -10287,3409:353,93,-45,0,0,0.120075 -10288,3409:354,94,-45,0,0,0.118102 -10289,3409:455,95,-45,0,0,0.116263 -10290,3409:456,96,-45,0,0,0.11334 -10291,3409:457,97,-45,0,0,0.110835 -10292,3409:458,98,-45,0,0,0.106977 -10293,3409:459,99,-45,0,0,0.106399 -10294,3410:350,100,-45,0,0,0.102139 -10295,3410:351,101,-45,0,0,0.102668 -10296,3410:352,102,-45,0,0,0.102791 -10297,3410:353,103,-45,0,0,0.102045 -10298,3410:354,104,-45,0,0,0.0981036 -10299,3410:455,105,-45,0,0,0.103095 -10300,3410:456,106,-45,0,0,0.106379 -10301,3410:457,107,-45,0,0,0.109385 -10302,3410:458,108,-45,0,0,0.111944 -10303,3410:459,109,-45,0,0,0.109736 -10304,3411:350,110,-45,0,0,0.106732 -10305,3411:351,111,-45,0,0,0.111119 -10306,3411:352,112,-45,0,0,0.111078 -10307,3411:353,113,-45,0,0,0.112804 -10308,3411:354,114,-45,0,0,0.12396 -10309,3411:455,115,-45,0,0,0.12481 -10310,3411:456,116,-45,0,0,0.125046 -10311,3411:457,117,-45,0,0,0.130054 -10312,3411:458,118,-45,0,0,0.133331 -10313,3411:459,119,-45,0,0,0.131924 -10314,3412:350,120,-45,0,0,0.122142 -10315,3412:351,121,-45,0,0,0.121405 -10316,3412:352,122,-45,0,0,0.120488 -10317,3412:353,123,-45,0,0,0.124194 -10318,3412:354,124,-45,0,0,0.131783 -10319,3412:455,125,-45,0,0,0.119793 -10320,3412:456,126,-45,0,0,0.124575 -10321,3412:457,127,-45,0,0,0.12605 -10322,3412:458,128,-45,0,0,0.126413 -10323,3412:459,129,-45,0,0,0.129984 -10324,3413:350,130,-45,0,0,0.1301 -10325,3413:351,131,-45,0,0,0.129995 -10326,3413:352,132,-45,0,0,0.125756 -10327,3413:353,133,-45,0,0,0.126538 -10328,3413:354,134,-45,0,0,0.13262 -10329,3413:455,135,-45,0,0,0.13262 -10330,3413:456,136,-45,0,0,0.133938 -10331,3413:457,137,-45,0,0,0.134117 -10332,3413:458,138,-45,0,0,0.129508 -10333,3413:459,139,-45,0,0,0.127529 -10334,3414:350,140,-45,0,0,0.133284 -10335,3414:351,141,-45,0,0,0.136049 -10336,3414:352,142,-45,0,0,0.138704 -10337,3414:353,143,-45,0,0,0.129473 -10338,3414:354,144,-45,0,0,0.116856 -10339,3414:455,145,-45,0,0,0.117696 -10340,3414:456,146,-45,0,0,0.118552 -10341,3414:457,147,-45,0,0,0.129995 -10342,3414:458,148,-45,0,0,0.14567 -10343,3414:459,149,-45,0,0,0.168418 -10344,3415:350,150,-45,0,0,0.161054 -10345,3415:351,151,-45,0,0,0.141538 -10346,3415:352,152,-45,0,0,0.149117 -10347,3415:353,153,-45,0,0,0.156132 -10348,3415:354,154,-45,0,0,0.166271 -10349,3415:455,155,-45,0,0,0.156647 -10350,3415:456,156,-45,0,0,0.158721 -10351,3415:457,157,-45,0,0,0.148194 -10352,3415:458,158,-45,0,0,0.149052 -10353,3415:459,159,-45,0,0,0.151902 -10354,3416:350,160,-45,0,0,0.131384 -10355,3416:351,161,-45,0,0,0.137981 -10356,3416:352,162,-45,0,0,0.150386 -10357,3416:353,163,-45,0,0,0.146644 -10358,3416:354,164,-45,0,0,0.149744 -10359,3416:455,165,-45,0,0,0.172397 -10360,3416:456,166,-45,0,0,0.18517 -10361,3416:457,167,-45,0,0,0.180701 -10362,3416:458,168,-45,0,0,0.179836 -10363,3416:459,169,-45,0,0,0.180276 -10364,3417:350,170,-45,0,0,0.180382 -10365,3417:351,171,-45,0,0,0.177769 -10366,3417:352,172,-45,0,0,0.166598 -10367,3417:353,173,-45,0,0,0.156769 -10368,3417:354,174,-45,0,0,0.150137 -10369,3417:455,175,-45,0,0,0.149156 -10370,3417:456,176,-45,0,0,0.159216 -10371,3417:457,177,-45,0,0,0.157982 -10372,3417:458,178,-45,0,0,0.159243 -10373,3417:459,179,-45,0,0,0.167585 -10374,3418:350,180,-45,0,0,0.166656 -10375,5418:140,-180,-44,0,0,0.167213 -10376,5417:249,-179,-44,0,0,0.170806 -10377,5417:248,-178,-44,0,0,0.17675 -10378,5417:247,-177,-44,0,0,0.180018 -10379,5417:246,-176,-44,0,0,0.179669 -10380,5417:245,-175,-44,0,0,0.17979 -10381,5417:144,-174,-44,0,0,0.188087 -10382,5417:143,-173,-44,0,0,0.187116 -10383,5417:142,-172,-44,0,0,0.183594 -10384,5417:141,-171,-44,0,0,0.176049 -10385,5417:140,-170,-44,0,0,0.167499 -10386,5416:249,-169,-44,0,0,0.172236 -10387,5416:248,-168,-44,0,0,0.172442 -10388,5416:247,-167,-44,0,0,0.161582 -10389,5416:246,-166,-44,0,0,0.15601 -10390,5416:245,-165,-44,0,0,0.157927 -10391,5416:144,-164,-44,0,0,0.158831 -10392,5416:143,-163,-44,0,0,0.15967 -10393,5416:142,-162,-44,0,0,0.167915 -10394,5416:141,-161,-44,0,0,0.170776 -10395,5416:140,-160,-44,0,0,0.167485 -10396,5415:249,-159,-44,0,0,0.174889 -10397,5415:248,-158,-44,0,0,0.179957 -10398,5415:247,-157,-44,0,0,0.166328 -10399,5415:246,-156,-44,0,0,0.170733 -10400,5415:245,-155,-44,0,0,0.177724 -10401,5415:144,-154,-44,0,0,0.19356 -10402,5415:143,-153,-44,0,0,0.193383 -10403,5415:142,-152,-44,0,0,0.1859 -10404,5415:141,-151,-44,0,0,0.17923 -10405,5415:140,-150,-44,0,0,0.171359 -10406,5414:249,-149,-44,0,0,0.171724 -10407,5414:248,-148,-44,0,0,0.175097 -10408,5414:247,-147,-44,0,0,0.184242 -10409,5414:246,-146,-44,0,0,0.188683 -10410,5414:245,-145,-44,0,0,0.181158 -10411,5414:144,-144,-44,0,0,0.178341 -10412,5414:143,-143,-44,0,0,0.175929 -10413,5414:142,-142,-44,0,0,0.1735 -10414,5414:141,-141,-44,0,0,0.184303 -10415,5414:140,-140,-44,0,0,0.182258 -10416,5413:249,-139,-44,0,0,0.179019 -10417,5413:248,-138,-44,0,0,0.179215 -10418,5413:247,-137,-44,0,0,0.185372 -10419,5413:246,-136,-44,0,0,0.188243 -10420,5413:245,-135,-44,0,0,0.190737 -10421,5413:144,-134,-44,0,0,0.193143 -10422,5413:143,-133,-44,0,0,0.196365 -10423,5413:142,-132,-44,0,0,0.199234 -10424,5413:141,-131,-44,0,0,0.198367 -10425,5413:140,-130,-44,0,0,0.19034 -10427,5412:248,-128,-44,0,0,0.183625 -10428,5412:247,-127,-44,0,0,0.181112 -10429,5412:246,-126,-44,0,0,0.181371 -10430,5412:245,-125,-44,0,0,0.181097 -10431,5412:144,-124,-44,0,0,0.179684 -10432,5412:143,-123,-44,0,0,0.177439 -10433,5412:142,-122,-44,0,0,0.175825 -10434,5412:141,-121,-44,0,0,0.17443 -10435,5412:140,-120,-44,0,0,0.175825 -10436,5411:249,-119,-44,0,0,0.176034 -10437,5411:248,-118,-44,0,0,0.174549 -10438,5411:247,-117,-44,0,0,0.170573 -10439,5411:246,-116,-44,0,0,0.168836 -10440,5411:245,-115,-44,0,0,0.17034 -10441,5411:144,-114,-44,0,0,0.168865 -10442,5411:143,-113,-44,0,0,0.165744 -10443,5411:142,-112,-44,0,0,0.162629 -10444,5411:141,-111,-44,0,0,0.162586 -10445,5411:140,-110,-44,0,0,0.161791 -10446,5410:249,-109,-44,0,0,0.161498 -10447,5410:248,-108,-44,0,0,0.162321 -10448,5410:247,-107,-44,0,0,0.159477 -10449,5410:246,-106,-44,0,0,0.159257 -10450,5410:245,-105,-44,0,0,0.161262 -10451,5410:144,-104,-44,0,0,0.158078 -10452,5410:143,-103,-44,0,0,0.157096 -10453,5410:142,-102,-44,0,0,0.159381 -10454,5410:141,-101,-44,0,0,0.15601 -10455,5410:140,-100,-44,0,0,0.157341 -10456,5409:249,-99,-44,0,0,0.158625 -10457,5409:248,-98,-44,0,0,0.156416 -10458,5409:247,-97,-44,0,0,0.155349 -10459,5409:246,-96,-44,0,0,0.15516 -10460,5409:245,-95,-44,0,0,0.155888 -10461,5409:144,-94,-44,0,0,0.15681 -10462,5409:143,-93,-44,0,0,0.156525 -10463,5409:142,-92,-44,0,0,0.155416 -10464,5409:141,-91,-44,0,0,0.154756 -10465,5409:140,-90,-44,0,0,0.156579 -10466,5408:249,-89,-44,0,0,0.157231 -10467,5408:248,-88,-44,0,0,0.155497 -10468,5408:247,-87,-44,0,0,0.156471 -10469,5408:246,-86,-44,0,0,0.156851 -10470,5408:245,-85,-44,0,0,0.155686 -10471,5408:144,-84,-44,0,0,0.155672 -10472,5408:143,-83,-44,0,0,0.15516 -10473,5408:142,-82,-44,0,0,0.154662 -10474,5408:141,-81,-44,0,0,0.155848 -10475,5408:140,-80,-44,0,0,0.155564 -10476,5407:249,-79,-44,0,0,0.157763 -10477,5407:248,-78,-44,0,0,0.162377 -10478,5407:247,-77,-44,0,0,0.160568 -10479,5407:246,-76,-44,0,0,0.158859 -10480,5407:245,-75,-44,0,0,0.163878 -10481,5407:144,-74,-44,0,0,0.179397 -10482,5406:247,-67,-44,0,0,0.171914 -10483,5406:246,-66,-44,0,0,0.162167 -10484,5406:245,-65,-44,0,0,0.157096 -10485,5406:144,-64,-44,0,0,0.150517 -10486,5406:143,-63,-44,0,0,0.152512 -10487,5406:142,-62,-44,0,0,0.150793 -10488,5406:141,-61,-44,0,0,0.15032 -10489,5406:140,-60,-44,0,0,0.152857 -10490,5405:249,-59,-44,0,0,0.153457 -10491,5405:248,-58,-44,0,0,0.150951 -10492,5405:247,-57,-44,0,0,0.14787 -10493,5405:246,-56,-44,0,0,0.143825 -10494,5405:245,-55,-44,0,0,0.141976 -10495,5405:144,-54,-44,0,0,0.141214 -10496,5405:143,-53,-44,0,0,0.141077 -10497,5405:142,-52,-44,0,0,0.140158 -10498,5405:141,-51,-44,0,0,0.137822 -10499,5405:140,-50,-44,0,0,0.13588 -10500,5404:249,-49,-44,0,0,0.130647 -10501,5404:248,-48,-44,0,0,0.122528 -10502,5404:247,-47,-44,0,0,0.120902 -10503,5404:246,-46,-44,0,0,0.118628 -10504,5404:245,-45,-44,0,0,0.112517 -10505,5404:144,-44,-44,0,0,0.111627 -10506,5404:143,-43,-44,0,0,0.112671 -10507,5404:142,-42,-44,0,0,0.111597 -10508,5404:141,-41,-44,0,0,0.111261 -10509,5404:140,-40,-44,0,0,0.109967 -10510,5403:249,-39,-44,0,0,0.108806 -10511,5403:248,-38,-44,0,0,0.107291 -10512,5403:247,-37,-44,0,0,0.103876 -10513,5403:246,-36,-44,0,0,0.101014 -10514,5403:245,-35,-44,0,0,0.0997427 -10515,5403:144,-34,-44,0,0,0.0984495 -10516,5403:143,-33,-44,0,0,0.0959701 -10517,5403:142,-32,-44,0,0,0.101988 -10518,5403:141,-31,-44,0,0,0.111271 -10519,5403:140,-30,-44,0,0,0.112199 -10520,5402:249,-29,-44,0,0,0.111099 -10521,5402:248,-28,-44,0,0,0.108727 -10522,5402:247,-27,-44,0,0,0.104269 -10523,5402:246,-26,-44,0,0,0.101369 -10524,5402:245,-25,-44,0,0,0.105107 -10525,5402:144,-24,-44,0,0,0.111546 -10526,5402:143,-23,-44,0,0,0.106702 -10527,5402:142,-22,-44,0,0,0.105853 -10528,5402:141,-21,-44,0,0,0.110159 -10529,5402:140,-20,-44,0,0,0.112025 -10530,5401:249,-19,-44,0,0,0.108527 -10531,5401:248,-18,-44,0,0,0.106165 -10532,5401:247,-17,-44,0,0,0.112496 -10533,5401:246,-16,-44,0,0,0.111933 -10534,5401:245,-15,-44,0,0,0.107774 -10535,5401:144,-14,-44,0,0,0.110028 -10536,5401:143,-13,-44,0,0,0.113288 -10537,5401:142,-12,-44,0,0,0.113578 -10538,5401:141,-11,-44,0,0,0.108687 -10539,5401:140,-10,-44,0,0,0.104653 -10540,5400:249,-9,-44,0,0,0.104596 -10541,5400:248,-8,-44,0,0,0.104403 -10542,5400:247,-7,-44,0,0,0.102413 -10543,5400:246,-6,-44,0,0,0.0957828 -10544,5400:245,-5,-44,0,0,0.0934507 -10545,5400:144,-4,-44,0,0,0.0932421 -10546,5400:143,-3,-44,0,0,0.0927913 -10547,5400:142,-2,-44,0,0,0.0913568 -10548,5400:141,-1,-44,0,0,0.0903471 -10549,3400:141,0,-44,0,0,0.0900771 -10550,3400:141,1,-44,0,0,0.0907786 -10551,3400:142,2,-44,0,0,0.0902373 -10552,3400:143,3,-44,0,0,0.0867163 -10553,3400:144,4,-44,0,0,0.0869686 -10554,3400:245,5,-44,0,0,0.0857045 -10555,3400:246,6,-44,0,0,0.0852386 -10556,3400:247,7,-44,0,0,0.0850945 -10557,3400:248,8,-44,0,0,0.0849986 -10558,3400:249,9,-44,0,0,0.0849028 -10559,3401:140,10,-44,0,0,0.0889301 -10560,3401:141,11,-44,0,0,0.0849586 -10561,3401:142,12,-44,0,0,0.0844886 -10562,3401:143,13,-44,0,0,0.0844726 -10563,3401:144,14,-44,0,0,0.0850386 -10564,3401:245,15,-44,0,0,0.0850306 -10565,3401:246,16,-44,0,0,0.0856078 -10566,3401:247,17,-44,0,0,0.085624 -10567,3401:248,18,-44,0,0,0.0861725 -10568,3401:249,19,-44,0,0,0.0869443 -10569,3402:140,20,-44,0,0,0.0878704 -10570,3402:141,21,-44,0,0,0.0883905 -10571,3402:142,22,-44,0,0,0.0881507 -10572,3402:143,23,-44,0,0,0.0875332 -10573,3402:144,24,-44,0,0,0.0858415 -10574,3402:245,25,-44,0,0,0.0855837 -10575,3402:246,26,-44,0,0,0.0960144 -10576,3402:247,27,-44,0,0,0.101369 -10577,3402:248,28,-44,0,0,0.0995677 -10578,3402:249,29,-44,0,0,0.0906599 -10579,3403:140,30,-44,0,0,0.0975957 -10580,3403:141,31,-44,0,0,0.0964792 -10581,3403:142,32,-44,0,0,0.096327 -10582,3403:143,33,-44,0,0,0.0929039 -10583,3403:144,34,-44,0,0,0.0970091 -10584,3403:245,35,-44,0,0,0.099356 -10585,3403:246,36,-44,0,0,0.0988423 -10586,3403:247,37,-44,0,0,0.0995953 -10587,3403:248,38,-44,0,0,0.101453 -10588,3403:249,39,-44,0,0,0.101051 -10589,3404:140,40,-44,0,0,0.099062 -10590,3404:141,41,-44,0,0,0.0990528 -10591,3404:142,42,-44,0,0,0.0985405 -10592,3404:143,43,-44,0,0,0.0972973 -10593,3404:144,44,-44,0,0,0.0974508 -10594,3404:245,45,-44,0,0,0.0975866 -10595,3404:246,46,-44,0,0,0.0977134 -10596,3404:247,47,-44,0,0,0.100613 -10597,3404:248,48,-44,0,0,0.0979491 -10598,3404:249,49,-44,0,0,0.0986777 -10599,3405:140,50,-44,0,0,0.101866 -10600,3405:141,51,-44,0,0,0.0988971 -10601,3405:142,52,-44,0,0,0.0996046 -10602,3405:143,53,-44,0,0,0.10093 -10603,3405:144,54,-44,0,0,0.10359 -10604,3405:245,55,-44,0,0,0.104048 -10605,3405:246,56,-44,0,0,0.101472 -10606,3405:247,57,-44,0,0,0.0985041 -10607,3405:248,58,-44,0,0,0.101341 -10608,3405:249,59,-44,0,0,0.103914 -10609,3406:140,60,-44,0,0,0.102214 -10610,3406:141,61,-44,0,0,0.102479 -10611,3406:142,62,-44,0,0,0.101641 -10612,3406:143,63,-44,0,0,0.103351 -10613,3406:144,64,-44,0,0,0.105795 -10614,3406:245,65,-44,0,0,0.104355 -10615,3406:246,66,-44,0,0,0.104875 -10616,3406:247,67,-44,0,0,0.106301 -10617,3406:248,68,-44,0,0,0.106409 -10618,3406:249,69,-44,0,0,0.103171 -10619,3407:140,70,-44,0,0,0.102271 -10620,3407:141,71,-44,0,0,0.100279 -10621,3407:142,72,-44,0,0,0.0993192 -10622,3407:144,74,-44,0,0,0.0996229 -10623,3407:245,75,-44,0,0,0.0995124 -10624,3407:246,76,-44,0,0,0.10002 -10625,3407:247,77,-44,0,0,0.100149 -10626,3407:248,78,-44,0,0,0.0967931 -10627,3407:249,79,-44,0,0,0.0893137 -10628,3408:140,80,-44,0,0,0.0895312 -10629,3408:141,81,-44,0,0,0.0892303 -10630,3408:142,82,-44,0,0,0.0891636 -10631,3408:143,83,-44,0,0,0.10053 -10632,3408:144,84,-44,0,0,0.110542 -10633,3408:245,85,-44,0,0,0.105834 -10634,3408:246,86,-44,0,0,0.108687 -10635,3408:247,87,-44,0,0,0.116158 -10636,3408:248,88,-44,0,0,0.115474 -10637,3408:249,89,-44,0,0,0.122473 -10638,3409:140,90,-44,0,0,0.128746 -10639,3409:141,91,-44,0,0,0.121899 -10640,3409:142,92,-44,0,0,0.123414 -10641,3409:143,93,-44,0,0,0.125485 -12589,5308:486,-86,-38,0,0,0.18873 -10642,3409:144,94,-44,0,0,0.121296 -10643,3409:245,95,-44,0,0,0.115013 -10644,3409:246,96,-44,0,0,0.114783 -10645,3409:247,97,-44,0,0,0.115003 -10646,3409:248,98,-44,0,0,0.115202 -10647,3409:249,99,-44,0,0,0.116168 -10648,3410:140,100,-44,0,0,0.117472 -10649,3410:141,101,-44,0,0,0.111903 -10650,3410:142,102,-44,0,0,0.104173 -10651,3410:143,103,-44,0,0,0.103247 -10652,3410:144,104,-44,0,0,0.104663 -10653,3410:245,105,-44,0,0,0.105814 -10654,3410:246,106,-44,0,0,0.108756 -10655,3410:247,107,-44,0,0,0.115537 -10656,3410:248,108,-44,0,0,0.117408 -10657,3410:249,109,-44,0,0,0.1156 -10658,3411:140,110,-44,0,0,0.11038 -10659,3411:141,111,-44,0,0,0.11039 -10660,3411:142,112,-44,0,0,0.111729 -10661,3411:143,113,-44,0,0,0.114794 -10662,3411:144,114,-44,0,0,0.124597 -10663,3411:245,115,-44,0,0,0.131349 -10664,3411:246,116,-44,0,0,0.12832 -10665,3411:247,117,-44,0,0,0.128056 -10666,3411:248,118,-44,0,0,0.128331 -10667,3411:249,119,-44,0,0,0.138397 -10668,3412:140,120,-44,0,0,0.136025 -10669,3412:141,121,-44,0,0,0.129775 -10670,3412:142,122,-44,0,0,0.140704 -10671,3412:143,123,-44,0,0,0.139503 -10672,3412:144,124,-44,0,0,0.13364 -10673,3412:245,125,-44,0,0,0.12681 -10674,3412:246,126,-44,0,0,0.133307 -10675,3412:247,127,-44,0,0,0.141588 -10676,3412:248,128,-44,0,0,0.137055 -10677,3412:249,129,-44,0,0,0.133938 -10678,3413:140,130,-44,0,0,0.134738 -10679,3413:141,131,-44,0,0,0.133688 -10680,3413:142,132,-44,0,0,0.1332 -10681,3413:143,133,-44,0,0,0.128584 -10682,3413:144,134,-44,0,0,0.140903 -10683,3413:245,135,-44,0,0,0.146054 -10684,3413:246,136,-44,0,0,0.142678 -10685,3413:247,137,-44,0,0,0.136885 -10686,3413:248,138,-44,0,0,0.137542 -10687,3413:249,139,-44,0,0,0.138716 -10688,3414:140,140,-44,0,0,0.139553 -10689,3414:141,141,-44,0,0,0.136025 -10690,3414:142,142,-44,0,0,0.130018 -10691,3414:143,143,-44,0,0,0.122616 -10692,3414:144,144,-44,0,0,0.11656 -10693,3414:245,145,-44,0,0,0.123826 -10694,3414:246,146,-44,0,0,0.129022 -10695,3414:247,147,-44,0,0,0.135977 -10696,3414:248,148,-44,0,0,0.132656 -10697,3414:249,149,-44,0,0,0.156064 -10698,3415:140,150,-44,0,0,0.167241 -10699,3415:141,151,-44,0,0,0.157136 -10700,3415:142,152,-44,0,0,0.15351 -10701,3415:143,153,-44,0,0,0.160236 -10702,3415:144,154,-44,0,0,0.173176 -10703,3415:245,155,-44,0,0,0.17406 -10704,3415:246,156,-44,0,0,0.167958 -10705,3415:247,157,-44,0,0,0.155456 -10706,3415:248,158,-44,0,0,0.157082 -10707,3415:249,159,-44,0,0,0.157313 -10708,3416:140,160,-44,0,0,0.154005 -10709,3416:141,161,-44,0,0,0.145376 -10710,3416:142,162,-44,0,0,0.14507 -10711,3416:143,163,-44,0,0,0.150281 -10712,3416:144,164,-44,0,0,0.153992 -10713,3416:245,165,-44,0,0,0.172809 -10714,3416:246,166,-44,0,0,0.18782 -10715,3416:247,167,-44,0,0,0.182013 -10716,3416:248,168,-44,0,0,0.180063 -10717,3416:249,169,-44,0,0,0.17911 -10718,3417:140,170,-44,0,0,0.178853 -10719,3417:141,171,-44,0,0,0.179004 -10720,3417:142,172,-44,0,0,0.179821 -10721,3417:143,173,-44,0,0,0.179942 -10722,3417:144,174,-44,0,0,0.175439 -10723,3417:245,175,-44,0,0,0.160998 -10724,3417:246,176,-44,0,0,0.156566 -10725,3417:247,177,-44,0,0,0.16025 -10726,3417:248,178,-44,0,0,0.164484 -10727,3417:249,179,-44,0,0,0.163498 -10728,3418:140,180,-44,0,0,0.167213 -10729,5418:130,-180,-43,0,0,0.176825 -10730,5417:239,-179,-43,0,0,0.179503 -10731,5417:238,-178,-43,0,0,0.179942 -10732,5417:237,-177,-43,0,0,0.180732 -10733,5417:236,-176,-43,0,0,0.181463 -10734,5417:235,-175,-43,0,0,0.184149 -10735,5417:134,-174,-43,0,0,0.189345 -10736,5417:133,-173,-43,0,0,0.185822 -10737,5417:132,-172,-43,0,0,0.187225 -10738,5417:131,-171,-43,0,0,0.181448 -10739,5417:130,-170,-43,0,0,0.176302 -10740,5416:239,-169,-43,0,0,0.182748 -10741,5416:238,-168,-43,0,0,0.187647 -10742,5416:237,-167,-43,0,0,0.18562 -10743,5416:236,-166,-43,0,0,0.183779 -10744,5416:235,-165,-43,0,0,0.181768 -10745,5416:134,-164,-43,0,0,0.176825 -10746,5416:133,-163,-43,0,0,0.168519 -10747,5416:132,-162,-43,0,0,0.172193 -10748,5416:131,-161,-43,0,0,0.177619 -10749,5416:130,-160,-43,0,0,0.177514 -10750,5415:239,-159,-43,0,0,0.186491 -10751,5415:238,-158,-43,0,0,0.192104 -10752,5415:237,-157,-43,0,0,0.176227 -10753,5415:236,-156,-43,0,0,0.171812 -10754,5415:235,-155,-43,0,0,0.192615 -10755,5415:134,-154,-43,0,0,0.214606 -10756,5415:133,-153,-43,0,0,0.215213 -10757,5415:132,-152,-43,0,0,0.213569 -10758,5415:131,-151,-43,0,0,0.213689 -10759,5415:130,-150,-43,0,0,0.212965 -10760,5414:239,-149,-43,0,0,0.206612 -10761,5414:238,-148,-43,0,0,0.197096 -10762,5414:237,-147,-43,0,0,0.193239 -10763,5414:236,-146,-43,0,0,0.200105 -10764,5414:235,-145,-43,0,0,0.197633 -10765,5414:134,-144,-43,0,0,0.188526 -10766,5414:133,-143,-43,0,0,0.196219 -10767,5414:132,-142,-43,0,0,0.206781 -10768,5414:131,-141,-43,0,0,0.204147 -10769,5414:130,-140,-43,0,0,0.194363 -10770,5413:239,-139,-43,0,0,0.182442 -10771,5413:238,-138,-43,0,0,0.188904 -10772,5413:237,-137,-43,0,0,0.203514 -10773,5413:236,-136,-43,0,0,0.207185 -10774,5413:235,-135,-43,0,0,0.211882 -10775,5413:134,-134,-43,0,0,0.210854 -10776,5413:133,-133,-43,0,0,0.208183 -10777,5413:132,-132,-43,0,0,0.205956 -10778,5413:131,-131,-43,0,0,0.200714 -10779,5413:130,-130,-43,0,0,0.198433 -10780,5412:239,-129,-43,0,0,0.195394 -10781,5412:238,-128,-43,0,0,0.19212 -10782,5412:237,-127,-43,0,0,0.18746 -10783,5412:236,-126,-43,0,0,0.189219 -10784,5412:235,-125,-43,0,0,0.189629 -10785,5412:134,-124,-43,0,0,0.184381 -10786,5412:133,-123,-43,0,0,0.183009 -10787,5412:132,-122,-43,0,0,0.181188 -10788,5412:131,-121,-43,0,0,0.17837 -10789,5412:130,-120,-43,0,0,0.177694 -10790,5411:239,-119,-43,0,0,0.176855 -10791,5411:238,-118,-43,0,0,0.175008 -10792,5411:237,-117,-43,0,0,0.173161 -10793,5411:236,-116,-43,0,0,0.177484 -10794,5411:235,-115,-43,0,0,0.181387 -10795,5411:134,-114,-43,0,0,0.178898 -10796,5411:133,-113,-43,0,0,0.173662 -10797,5411:132,-112,-43,0,0,0.169298 -10798,5411:131,-111,-43,0,0,0.169688 -10799,5411:130,-110,-43,0,0,0.168231 -10800,5410:239,-109,-43,0,0,0.166784 -10801,5410:238,-108,-43,0,0,0.166827 -10802,5410:237,-107,-43,0,0,0.16478 -10803,5410:236,-106,-43,0,0,0.167213 -10804,5410:235,-105,-43,0,0,0.165617 -10805,5410:134,-104,-43,0,0,0.161484 -10806,5410:133,-103,-43,0,0,0.16347 -10807,5410:132,-102,-43,0,0,0.165191 -10808,5410:131,-101,-43,0,0,0.161833 -10809,5410:130,-100,-43,0,0,0.161874 -10810,5409:239,-99,-43,0,0,0.16354 -10811,5409:238,-98,-43,0,0,0.16274 -10812,5409:237,-97,-43,0,0,0.16097 -10813,5409:236,-96,-43,0,0,0.161429 -10814,5409:235,-95,-43,0,0,0.162642 -10815,5409:134,-94,-43,0,0,0.164724 -10816,5409:133,-93,-43,0,0,0.162279 -10817,5409:132,-92,-43,0,0,0.159326 -10818,5409:131,-91,-43,0,0,0.160624 -10819,5409:130,-90,-43,0,0,0.163259 -10820,5408:239,-89,-43,0,0,0.161456 -10821,5408:238,-88,-43,0,0,0.16072 -10822,5408:237,-87,-43,0,0,0.162125 -10823,5408:236,-86,-43,0,0,0.160929 -10824,5408:235,-85,-43,0,0,0.160652 -10825,5408:134,-84,-43,0,0,0.160887 -10826,5408:133,-83,-43,0,0,0.159905 -10827,5408:132,-82,-43,0,0,0.159161 -10828,5408:131,-81,-43,0,0,0.159119 -10829,5408:130,-80,-43,0,0,0.158968 -10830,5407:239,-79,-43,0,0,0.162223 -10831,5407:238,-78,-43,0,0,0.163203 -10832,5407:237,-77,-43,0,0,0.164413 -10833,5407:236,-76,-43,0,0,0.169413 -10834,5407:235,-75,-43,0,0,0.180808 -10835,5407:134,-74,-43,0,0,0.192663 -10836,5406:238,-68,-43,0,0,0.17807 -10837,5406:237,-67,-43,0,0,0.165517 -10838,5406:236,-66,-43,0,0,0.161026 -10839,5406:235,-65,-43,0,0,0.159988 -10840,5406:134,-64,-43,0,0,0.156987 -10841,5406:133,-63,-43,0,0,0.158461 -10842,5406:132,-62,-43,0,0,0.158872 -10843,5406:131,-61,-43,0,0,0.16122 -10844,5406:130,-60,-43,0,0,0.165531 -10845,5405:239,-59,-43,0,0,0.166912 -10846,5405:238,-58,-43,0,0,0.162629 -10847,5405:237,-57,-43,0,0,0.157982 -10848,5405:236,-56,-43,0,0,0.151968 -10849,5405:235,-55,-43,0,0,0.145389 -10850,5405:134,-54,-43,0,0,0.143914 -10851,5405:133,-53,-43,0,0,0.142892 -10852,5405:132,-52,-43,0,0,0.139861 -10853,5405:131,-51,-43,0,0,0.138998 -10854,5405:130,-50,-43,0,0,0.136788 -10855,5404:239,-49,-43,0,0,0.132668 -10856,5404:238,-48,-43,0,0,0.124407 -10857,5404:237,-47,-43,0,0,0.123949 -10858,5404:236,-46,-43,0,0,0.122031 -10859,5404:235,-45,-43,0,0,0.120717 -10860,5404:134,-44,-43,0,0,0.119999 -10861,5404:133,-43,-43,0,0,0.117313 -10862,5404:132,-42,-43,0,0,0.115453 -10863,5404:131,-41,-43,0,0,0.121669 -10864,5404:130,-40,-43,0,0,0.12063 -10865,5403:239,-39,-43,0,0,0.118241 -10866,5403:238,-38,-43,0,0,0.110653 -10867,5403:237,-37,-43,0,0,0.108756 -10868,5403:236,-36,-43,0,0,0.111271 -10869,5403:235,-35,-43,0,0,0.107646 -10870,5403:134,-34,-43,0,0,0.108647 -10871,5403:133,-33,-43,0,0,0.101341 -10872,5403:132,-32,-43,0,0,0.105814 -10873,5403:131,-31,-43,0,0,0.111719 -10874,5403:130,-30,-43,0,0,0.110714 -10875,5402:239,-29,-43,0,0,0.114617 -10876,5402:238,-28,-43,0,0,0.12088 -10877,5402:237,-27,-43,0,0,0.115947 -10878,5402:236,-26,-43,0,0,0.112332 -10879,5402:235,-25,-43,0,0,0.11471 -10880,5402:134,-24,-43,0,0,0.115632 -10881,5402:133,-23,-43,0,0,0.118983 -10882,5402:132,-22,-43,0,0,0.115233 -10883,5402:131,-21,-43,0,0,0.112005 -10884,5402:130,-20,-43,0,0,0.115737 -10885,5401:239,-19,-43,0,0,0.112558 -10886,5401:238,-18,-43,0,0,0.118392 -10887,5401:237,-17,-43,0,0,0.116983 -10888,5401:236,-16,-43,0,0,0.116686 -10889,5401:235,-15,-43,0,0,0.115958 -10890,5401:134,-14,-43,0,0,0.112076 -10891,5401:133,-13,-43,0,0,0.114148 -10892,5401:132,-12,-43,0,0,0.116814 -10893,5401:131,-11,-43,0,0,0.114731 -10894,5401:130,-10,-43,0,0,0.107685 -10895,5400:239,-9,-43,0,0,0.105902 -10896,5400:238,-8,-43,0,0,0.10473 -10897,5400:237,-7,-43,0,0,0.104548 -10898,5400:236,-6,-43,0,0,0.101247 -10899,5400:235,-5,-43,0,0,0.0943861 -10900,5400:134,-4,-43,0,0,0.0949763 -10901,5400:133,-3,-43,0,0,0.0954366 -10902,5400:132,-2,-43,0,0,0.0932159 -10903,5400:131,-1,-43,0,0,0.0907108 -10904,3400:131,0,-43,0,0,0.0905077 -10905,3400:131,1,-43,0,0,0.0904992 -10906,3400:132,2,-43,0,0,0.0898333 -10907,3400:133,3,-43,0,0,0.0882168 -10908,3400:134,4,-43,0,0,0.092179 -10909,3400:235,5,-43,0,0,0.0966764 -10910,3400:236,6,-43,0,0,0.093103 -10911,3400:237,7,-43,0,0,0.0889469 -10912,3400:238,8,-43,0,0,0.0913826 -10913,3400:239,9,-43,0,0,0.0878126 -10914,3401:130,10,-43,0,0,0.0939304 -10915,3401:131,11,-43,0,0,0.0994756 -10916,3401:132,12,-43,0,0,0.0905415 -10917,3401:133,13,-43,0,0,0.0862212 -10918,3401:134,14,-43,0,0,0.0873448 -10919,3401:235,15,-43,0,0,0.0904907 -10920,3401:236,16,-43,0,0,0.0930249 -10921,3401:237,17,-43,0,0,0.09359 -10922,3401:238,18,-43,0,0,0.0921359 -10923,3401:239,19,-43,0,0,0.0921533 -10924,3402:130,20,-43,0,0,0.0922737 -10925,3402:131,21,-43,0,0,0.0901447 -10926,3402:132,22,-43,0,0,0.0872874 -10927,3402:133,23,-43,0,0,0.0871483 -10928,3402:134,24,-43,0,0,0.0884486 -10929,3402:235,25,-43,0,0,0.088341 -10930,3402:236,26,-43,0,0,0.0923165 -10931,3402:237,27,-43,0,0,0.096336 -10932,3402:238,28,-43,0,0,0.0928085 -10933,3402:239,29,-43,0,0,0.097 -10934,3403:130,30,-43,0,0,0.100409 -10935,3403:131,31,-43,0,0,0.11029 -10936,3403:132,32,-43,0,0,0.0965869 -10937,3403:133,33,-43,0,0,0.0968471 -10938,3403:134,34,-43,0,0,0.098249 -10939,3403:235,35,-43,0,0,0.0994295 -10940,3403:236,36,-43,0,0,0.103494 -10941,3403:237,37,-43,0,0,0.105097 -10942,3403:238,38,-43,0,0,0.105863 -10943,3403:239,39,-43,0,0,0.102545 -10944,3404:130,40,-43,0,0,0.101219 -10945,3404:131,41,-43,0,0,0.10181 -10946,3404:132,42,-43,0,0,0.100131 -10947,3404:133,43,-43,0,0,0.101257 -10948,3404:134,44,-43,0,0,0.100781 -10949,3404:235,45,-43,0,0,0.100949 -10950,3404:236,46,-43,0,0,0.104144 -10951,3404:237,47,-43,0,0,0.104827 -10952,3404:238,48,-43,0,0,0.103838 -10953,3404:239,49,-43,0,0,0.107449 -10954,3405:130,50,-43,0,0,0.108816 -10955,3405:131,51,-43,0,0,0.107321 -10956,3405:132,52,-43,0,0,0.103256 -10957,3405:133,53,-43,0,0,0.108042 -10958,3405:134,54,-43,0,0,0.106869 -10959,3405:235,55,-43,0,0,0.105165 -10960,3405:236,56,-43,0,0,0.105931 -10961,3405:237,57,-43,0,0,0.106683 -10962,3405:238,58,-43,0,0,0.103389 -10963,3405:239,59,-43,0,0,0.104269 -10964,3406:130,60,-43,0,0,0.108468 -10965,3406:131,61,-43,0,0,0.109716 -10966,3406:132,62,-43,0,0,0.107666 -10967,3406:133,63,-43,0,0,0.105591 -10968,3406:134,64,-43,0,0,0.10818 -10969,3406:235,65,-43,0,0,0.107036 -10970,3406:236,66,-43,0,0,0.107134 -10971,3406:237,67,-43,0,0,0.108746 -10972,3406:238,68,-43,0,0,0.109055 -10973,3406:239,69,-43,0,0,0.109385 -10974,3407:130,70,-43,0,0,0.104471 -10975,3407:131,71,-43,0,0,0.100753 -10976,3407:132,72,-43,0,0,0.101154 -10977,3407:134,74,-43,0,0,0.102101 -10978,3407:235,75,-43,0,0,0.101547 -10979,3407:236,76,-43,0,0,0.101107 -10980,3407:237,77,-43,0,0,0.0998351 -10981,3407:238,78,-43,0,0,0.0981854 -10982,3407:239,79,-43,0,0,0.0919041 -10983,3408:130,80,-43,0,0,0.0935812 -10984,3408:131,81,-43,0,0,0.093808 -10985,3408:132,82,-43,0,0,0.0972794 -10986,3408:133,83,-43,0,0,0.10121 -10987,3408:134,84,-43,0,0,0.122153 -10988,3408:235,85,-43,0,0,0.11936 -10989,3408:236,86,-43,0,0,0.112291 -10990,3408:237,87,-43,0,0,0.113516 -10991,3408:238,88,-43,0,0,0.116877 -10992,3408:239,89,-43,0,0,0.120412 -10993,3409:130,90,-43,0,0,0.12754 -10994,3409:131,91,-43,0,0,0.13024 -10995,3409:132,92,-43,0,0,0.12923 -10996,3409:133,93,-43,0,0,0.122948 -10997,3409:134,94,-43,0,0,0.120531 -10998,3409:235,95,-43,0,0,0.116707 -10999,3409:236,96,-43,0,0,0.120924 -11000,3409:237,97,-43,0,0,0.12327 -11001,3409:238,98,-43,0,0,0.128757 -11002,3409:239,99,-43,0,0,0.126867 -11003,3410:130,100,-43,0,0,0.125035 -11004,3410:131,101,-43,0,0,0.121416 -11005,3410:132,102,-43,0,0,0.1176 -11006,3410:133,103,-43,0,0,0.112763 -11007,3410:134,104,-43,0,0,0.112753 -11008,3410:235,105,-43,0,0,0.114971 -11009,3410:236,106,-43,0,0,0.113309 -11010,3410:237,107,-43,0,0,0.120433 -11011,3410:238,108,-43,0,0,0.120575 -11012,3410:239,109,-43,0,0,0.115779 -11013,3411:130,110,-43,0,0,0.112866 -11014,3411:131,111,-43,0,0,0.115863 -11015,3411:132,112,-43,0,0,0.120162 -11016,3411:133,113,-43,0,0,0.120303 -11017,3411:134,114,-43,0,0,0.123648 -11018,3411:235,115,-43,0,0,0.140307 -11019,3411:236,116,-43,0,0,0.151017 -11020,3411:237,117,-43,0,0,0.147482 -11021,3411:238,118,-43,0,0,0.133973 -11022,3411:239,119,-43,0,0,0.137067 -11023,3412:130,120,-43,0,0,0.136218 -11024,3412:131,121,-43,0,0,0.141251 -11025,3412:132,122,-43,0,0,0.149339 -11026,3412:133,123,-43,0,0,0.150714 -11027,3412:134,124,-43,0,0,0.147624 -11028,3412:235,125,-43,0,0,0.136267 -11029,3412:236,126,-43,0,0,0.139602 -11030,3412:237,127,-43,0,0,0.145287 -11031,3412:238,128,-43,0,0,0.140816 -11032,3412:239,129,-43,0,0,0.143421 -11033,3413:130,130,-43,0,0,0.140493 -11034,3413:131,131,-43,0,0,0.13847 -11035,3413:132,132,-43,0,0,0.136982 -11036,3413:133,133,-43,0,0,0.140332 -11037,3413:134,134,-43,0,0,0.144459 -11038,3413:235,135,-43,0,0,0.155618 -11039,3413:236,136,-43,0,0,0.161373 -11040,3413:237,137,-43,0,0,0.16025 -11041,3413:238,138,-43,0,0,0.160943 -11042,3413:239,139,-43,0,0,0.160679 -11043,3414:130,140,-43,0,0,0.158845 -11044,3414:131,141,-43,0,0,0.14451 -11045,3414:132,142,-43,0,0,0.136327 -11046,3414:133,143,-43,0,0,0.144612 -11047,3414:134,144,-43,0,0,0.136569 -11048,3414:235,145,-43,0,0,0.127677 -11049,3414:236,146,-43,0,0,0.13383 -11050,3414:237,147,-43,0,0,0.136363 -11051,3414:238,148,-43,0,0,0.150754 -11052,3414:239,149,-43,0,0,0.172588 -11053,3415:130,150,-43,0,0,0.164582 -11054,3415:131,151,-43,0,0,0.171155 -11055,3415:132,152,-43,0,0,0.175706 -11056,3415:133,153,-43,0,0,0.174045 -11057,3415:134,154,-43,0,0,0.177319 -11058,3415:235,155,-43,0,0,0.174282 -11059,3415:236,156,-43,0,0,0.164597 -11060,3415:237,157,-43,0,0,0.16454 -11061,3415:238,158,-43,0,0,0.166399 -11062,3415:239,159,-43,0,0,0.168692 -11063,3416:130,160,-43,0,0,0.17443 -11064,3416:131,161,-43,0,0,0.180762 -11065,3416:132,162,-43,0,0,0.183902 -11066,3416:133,163,-43,0,0,0.179897 -11067,3416:134,164,-43,0,0,0.175766 -11068,3416:235,165,-43,0,0,0.176795 -11069,3416:236,166,-43,0,0,0.19004 -11070,3416:237,167,-43,0,0,0.184612 -11071,3416:238,168,-43,0,0,0.18186 -11072,3416:239,169,-43,0,0,0.179821 -11073,3417:130,170,-43,0,0,0.178235 -11074,3417:131,171,-43,0,0,0.176586 -11075,3417:132,172,-43,0,0,0.17678 -11076,3417:133,173,-43,0,0,0.179261 -11077,3417:134,174,-43,0,0,0.181616 -11078,3417:235,175,-43,0,0,0.171359 -11079,3417:236,176,-43,0,0,0.159422 -11080,3417:237,177,-43,0,0,0.164964 -11081,3417:238,178,-43,0,0,0.164922 -11082,3417:239,179,-43,0,0,0.167113 -11083,3418:130,180,-43,0,0,0.176825 -11084,5418:120,-180,-42,0,0,0.173352 -11085,5417:229,-179,-42,0,0,0.174031 -11086,5417:228,-178,-42,0,0,0.17587 -11087,5417:227,-177,-42,0,0,0.180503 -11088,5417:226,-176,-42,0,0,0.182028 -11089,5417:225,-175,-42,0,0,0.186569 -11090,5417:124,-174,-42,0,0,0.193014 -11091,5417:123,-173,-42,0,0,0.188102 -11092,5417:122,-172,-42,0,0,0.18534 -11093,5417:121,-171,-42,0,0,0.17917 -11094,5417:120,-170,-42,0,0,0.175959 -11095,5416:229,-169,-42,0,0,0.174934 -11096,5416:228,-168,-42,0,0,0.191945 -11097,5416:227,-167,-42,0,0,0.192439 -11098,5416:226,-166,-42,0,0,0.194266 -11099,5416:225,-165,-42,0,0,0.194669 -11100,5416:124,-164,-42,0,0,0.191022 -11101,5416:123,-163,-42,0,0,0.179548 -11102,5416:122,-162,-42,0,0,0.182319 -11103,5416:121,-161,-42,0,0,0.193993 -11104,5416:120,-160,-42,0,0,0.194491 -11105,5415:229,-159,-42,0,0,0.193511 -11106,5415:228,-158,-42,0,0,0.200253 -11107,5415:227,-157,-42,0,0,0.2082 -11108,5415:226,-156,-42,0,0,0.212346 -11109,5415:225,-155,-42,0,0,0.209916 -11110,5415:124,-154,-42,0,0,0.214087 -11111,5415:123,-153,-42,0,0,0.220746 -11112,5415:122,-152,-42,0,0,0.221738 -11113,5415:121,-151,-42,0,0,0.21909 -11114,5415:120,-150,-42,0,0,0.218212 -11115,5414:229,-149,-42,0,0,0.217302 -11116,5414:228,-148,-42,0,0,0.211214 -11117,5414:227,-147,-42,0,0,0.206107 -11118,5414:226,-146,-42,0,0,0.210598 -11119,5414:225,-145,-42,0,0,0.21381 -11120,5414:124,-144,-42,0,0,0.212827 -11121,5414:123,-143,-42,0,0,0.215369 -11122,5414:122,-142,-42,0,0,0.212638 -11123,5414:121,-141,-42,0,0,0.202019 -11124,5414:120,-140,-42,0,0,0.20187 -11125,5413:229,-139,-42,0,0,0.208777 -11126,5413:228,-138,-42,0,0,0.214381 -11127,5413:227,-137,-42,0,0,0.212054 -11128,5413:226,-136,-42,0,0,0.215091 -11129,5413:225,-135,-42,0,0,0.214415 -11130,5413:124,-134,-42,0,0,0.209337 -11131,5413:123,-133,-42,0,0,0.209082 -11132,5413:122,-132,-42,0,0,0.205318 -11133,5413:121,-131,-42,0,0,0.207506 -11134,5413:120,-130,-42,0,0,0.206377 -11135,5412:229,-129,-42,0,0,0.203164 -11136,5412:228,-128,-42,0,0,0.205519 -11137,5412:227,-127,-42,0,0,0.203681 -11138,5412:226,-126,-42,0,0,0.194894 -11139,5412:225,-125,-42,0,0,0.199349 -11140,5412:124,-124,-42,0,0,0.200714 -11141,5412:123,-123,-42,0,0,0.190578 -11142,5412:122,-122,-42,0,0,0.183763 -11143,5412:121,-121,-42,0,0,0.183056 -11144,5412:120,-120,-42,0,0,0.183594 -11145,5411:229,-119,-42,0,0,0.181738 -11146,5411:228,-118,-42,0,0,0.181478 -11147,5411:227,-117,-42,0,0,0.186351 -11148,5411:226,-116,-42,0,0,0.187053 -11149,5411:225,-115,-42,0,0,0.182396 -11150,5411:124,-114,-42,0,0,0.180306 -11151,5411:123,-113,-42,0,0,0.176601 -11152,5411:122,-112,-42,0,0,0.176362 -11153,5411:121,-111,-42,0,0,0.176183 -11154,5411:120,-110,-42,0,0,0.173367 -11155,5410:229,-109,-42,0,0,0.173942 -11156,5410:228,-108,-42,0,0,0.174075 -11157,5410:227,-107,-42,0,0,0.170922 -11158,5410:226,-106,-42,0,0,0.172354 -11159,5410:225,-105,-42,0,0,0.169862 -11160,5410:124,-104,-42,0,0,0.170079 -11161,5410:123,-103,-42,0,0,0.172383 -11162,5410:122,-102,-42,0,0,0.171608 -11163,5410:121,-101,-42,0,0,0.167958 -11164,5410:120,-100,-42,0,0,0.167714 -11165,5409:229,-99,-42,0,0,0.168677 -11166,5409:228,-98,-42,0,0,0.16803 -11167,5409:227,-97,-42,0,0,0.166071 -11168,5409:226,-96,-42,0,0,0.166998 -11169,5409:225,-95,-42,0,0,0.166285 -11170,5409:124,-94,-42,0,0,0.167915 -11171,5409:123,-93,-42,0,0,0.16803 -11172,5409:122,-92,-42,0,0,0.166684 -11173,5409:121,-91,-42,0,0,0.165276 -11174,5409:120,-90,-42,0,0,0.167456 -11175,5408:229,-89,-42,0,0,0.167084 -11176,5408:228,-88,-42,0,0,0.166584 -11177,5408:227,-87,-42,0,0,0.165673 -11178,5408:226,-86,-42,0,0,0.164696 -11179,5408:225,-85,-42,0,0,0.164625 -11180,5408:124,-84,-42,0,0,0.163709 -11181,5408:123,-83,-42,0,0,0.162908 -11182,5408:122,-82,-42,0,0,0.16267 -11183,5408:121,-81,-42,0,0,0.166399 -11184,5408:120,-80,-42,0,0,0.167385 -11185,5407:229,-79,-42,0,0,0.16423 -11186,5407:228,-78,-42,0,0,0.167843 -11187,5407:227,-77,-42,0,0,0.171316 -11188,5407:226,-76,-42,0,0,0.184087 -11189,5407:225,-75,-42,0,0,0.19554 -11190,5406:228,-68,-42,0,0,0.184953 -11191,5406:227,-67,-42,0,0,0.167528 -11192,5406:226,-66,-42,0,0,0.16361 -11193,5406:225,-65,-42,0,0,0.16361 -11194,5406:124,-64,-42,0,0,0.165347 -11195,5406:123,-63,-42,0,0,0.1661 -11196,5406:122,-62,-42,0,0,0.167786 -11197,5406:121,-61,-42,0,0,0.177679 -11198,5405:228,-58,-42,0,0,0.200417 -11199,5405:227,-57,-42,0,0,0.166798 -11200,5405:226,-56,-42,0,0,0.158653 -11201,5405:225,-55,-42,0,0,0.152964 -11202,5405:124,-54,-42,0,0,0.145631 -11203,5405:123,-53,-42,0,0,0.144434 -11204,5405:122,-52,-42,0,0,0.145849 -11205,5405:121,-51,-42,0,0,0.145926 -11206,5405:120,-50,-42,0,0,0.143144 -11207,5404:229,-49,-42,0,0,0.13426 -11208,5404:228,-48,-42,0,0,0.132644 -11209,5404:227,-47,-42,0,0,0.127289 -11210,5404:226,-46,-42,0,0,0.126696 -11211,5404:225,-45,-42,0,0,0.128699 -11212,5404:124,-44,-42,0,0,0.130077 -11213,5404:123,-43,-42,0,0,0.130612 -11214,5404:122,-42,-42,0,0,0.127152 -11215,5404:121,-41,-42,0,0,0.119533 -11216,5404:120,-40,-42,0,0,0.123303 -11217,5403:229,-39,-42,0,0,0.123181 -11218,5403:228,-38,-42,0,0,0.122716 -11219,5403:227,-37,-42,0,0,0.117058 -11220,5403:226,-36,-42,0,0,0.120859 -11221,5403:225,-35,-42,0,0,0.117824 -11222,5403:124,-34,-42,0,0,0.114648 -11223,5403:123,-33,-42,0,0,0.103905 -11224,5403:122,-32,-42,0,0,0.107824 -11225,5403:121,-31,-42,0,0,0.109066 -11226,5403:120,-30,-42,0,0,0.110179 -11227,5402:229,-29,-42,0,0,0.119317 -11228,5402:228,-28,-42,0,0,0.12588 -11229,5402:227,-27,-42,0,0,0.121361 -11230,5402:226,-26,-42,0,0,0.121844 -11231,5402:225,-25,-42,0,0,0.121449 -11232,5402:124,-24,-42,0,0,0.124161 -11233,5402:123,-23,-42,0,0,0.120891 -11234,5402:122,-22,-42,0,0,0.120979 -11235,5402:121,-21,-42,0,0,0.118649 -11236,5402:120,-20,-42,0,0,0.119392 -11237,5401:229,-19,-42,0,0,0.115905 -11238,5401:228,-18,-42,0,0,0.125655 -11239,5401:227,-17,-42,0,0,0.12974 -11240,5401:226,-16,-42,0,0,0.123358 -11241,5401:225,-15,-42,0,0,0.122682 -11242,5401:124,-14,-42,0,0,0.120782 -11243,5401:123,-13,-42,0,0,0.127769 -11244,5401:122,-12,-42,0,0,0.129798 -11245,5401:121,-11,-42,0,0,0.119934 -11246,5401:120,-10,-42,0,0,0.112835 -11247,5400:229,-9,-42,0,0,0.104653 -11248,5400:228,-8,-42,0,0,0.105097 -11249,5400:227,-7,-42,0,0,0.104355 -11250,5400:226,-6,-42,0,0,0.103819 -11251,5400:225,-5,-42,0,0,0.0984587 -11252,5400:124,-4,-42,0,0,0.0976589 -11253,5400:123,-3,-42,0,0,0.103428 -11254,5400:122,-2,-42,0,0,0.0985862 -11255,5400:121,-1,-42,0,0,0.0986227 -11256,3400:121,0,-42,0,0,0.0963628 -11257,3400:121,1,-42,0,0,0.0942546 -11258,3400:122,2,-42,0,0,0.0951352 -11259,3400:123,3,-42,0,0,0.0961304 -11260,3400:124,4,-42,0,0,0.0948616 -11261,3400:225,5,-42,0,0,0.0990713 -11262,3400:226,6,-42,0,0,0.114564 -11263,3400:227,7,-42,0,0,0.112804 -11264,3400:228,8,-42,0,0,0.108448 -11265,3400:229,9,-42,0,0,0.102205 -11266,3401:120,10,-42,0,0,0.107163 -11267,3401:121,11,-42,0,0,0.10823 -11268,3401:122,12,-42,0,0,0.106292 -11269,3401:123,13,-42,0,0,0.094747 -11270,3401:124,14,-42,0,0,0.0988881 -11271,3401:225,15,-42,0,0,0.0981399 -11272,3401:226,16,-42,0,0,0.0963898 -11273,3401:227,17,-42,0,0,0.0960144 -11274,3401:228,18,-42,0,0,0.0967753 -11275,3401:229,19,-42,0,0,0.0940442 -11276,3402:120,20,-42,0,0,0.0987781 -11277,3402:121,21,-42,0,0,0.0998444 -11278,3402:122,22,-42,0,0,0.0947117 -11279,3402:123,23,-42,0,0,0.0944478 -11280,3402:124,24,-42,0,0,0.101117 -11281,3402:225,25,-42,0,0,0.105175 -11282,3402:226,26,-42,0,0,0.104663 -11283,3402:227,27,-42,0,0,0.105834 -11284,3402:228,28,-42,0,0,0.100567 -11285,3402:229,29,-42,0,0,0.0969731 -11286,3403:120,30,-42,0,0,0.107134 -11287,3403:121,31,-42,0,0,0.118897 -11288,3403:122,32,-42,0,0,0.11302 -11289,3403:123,33,-42,0,0,0.106438 -11290,3403:124,34,-42,0,0,0.103485 -11291,3403:225,35,-42,0,0,0.102782 -11292,3403:226,36,-42,0,0,0.105475 -11293,3403:227,37,-42,0,0,0.10636 -11294,3403:228,38,-42,0,0,0.108002 -11295,3403:229,39,-42,0,0,0.103981 -11296,3404:120,40,-42,0,0,0.104615 -11297,3404:121,41,-42,0,0,0.104394 -11298,3404:122,42,-42,0,0,0.103047 -11299,3404:123,43,-42,0,0,0.105795 -11300,3404:124,44,-42,0,0,0.106644 -11301,3404:225,45,-42,0,0,0.109887 -11302,3404:226,46,-42,0,0,0.111546 -11303,3404:227,47,-42,0,0,0.109095 -11304,3404:228,48,-42,0,0,0.107468 -11305,3404:229,49,-42,0,0,0.112394 -11306,3405:120,50,-42,0,0,0.110058 -11307,3405:121,51,-42,0,0,0.110138 -11308,3405:122,52,-42,0,0,0.110491 -11309,3405:123,53,-42,0,0,0.110582 -11310,3405:124,54,-42,0,0,0.108498 -11311,3405:225,55,-42,0,0,0.106898 -11312,3405:226,56,-42,0,0,0.109526 -11313,3405:227,57,-42,0,0,0.112486 -11314,3405:228,58,-42,0,0,0.109636 -11315,3405:229,59,-42,0,0,0.107962 -11316,3406:120,60,-42,0,0,0.113712 -11317,3406:121,61,-42,0,0,0.113619 -11318,3406:122,62,-42,0,0,0.112281 -11319,3406:123,63,-42,0,0,0.111119 -11320,3406:124,64,-42,0,0,0.111862 -11321,3406:225,65,-42,0,0,0.112877 -11322,3406:226,66,-42,0,0,0.112086 -11323,3406:227,67,-42,0,0,0.111139 -11324,3406:228,68,-42,0,0,0.109335 -11325,3406:229,69,-42,0,0,0.106175 -11326,3407:120,70,-42,0,0,0.103723 -11327,3407:121,71,-42,0,0,0.102394 -11328,3407:122,72,-42,0,0,0.103446 -11329,3407:124,74,-42,0,0,0.10474 -11330,3407:225,75,-42,0,0,0.10378 -11331,3407:226,76,-42,0,0,0.101191 -11332,3407:227,77,-42,0,0,0.0959165 -11333,3407:228,78,-42,0,0,0.0929903 -11334,3407:229,79,-42,0,0,0.109385 -11335,3408:120,80,-42,0,0,0.123148 -11336,3408:121,81,-42,0,0,0.129057 -11337,3408:122,82,-42,0,0,0.122274 -11338,3408:123,83,-42,0,0,0.126879 -11339,3408:124,84,-42,0,0,0.129577 -11340,3408:225,85,-42,0,0,0.135579 -11341,3408:226,86,-42,0,0,0.129555 -11342,3408:227,87,-42,0,0,0.126367 -11343,3408:228,88,-42,0,0,0.130449 -11344,3408:229,89,-42,0,0,0.133914 -11345,3409:120,90,-42,0,0,0.143093 -11346,3409:121,91,-42,0,0,0.147572 -11347,3409:122,92,-42,0,0,0.135868 -11348,3409:123,93,-42,0,0,0.127209 -11349,3409:124,94,-42,0,0,0.123748 -11350,3409:225,95,-42,0,0,0.126084 -11351,3409:226,96,-42,0,0,0.12801 -11352,3409:227,97,-42,0,0,0.128688 -11353,3409:228,98,-42,0,0,0.132833 -11354,3409:229,99,-42,0,0,0.13122 -11355,3410:120,100,-42,0,0,0.127243 -11356,3410:121,101,-42,0,0,0.123059 -11357,3410:122,102,-42,0,0,0.122208 -11358,3410:123,103,-42,0,0,0.12276 -11359,3410:124,104,-42,0,0,0.121789 -11360,3410:225,105,-42,0,0,0.120488 -11361,3410:226,106,-42,0,0,0.117494 -11362,3410:227,107,-42,0,0,0.119231 -11363,3410:228,108,-42,0,0,0.121537 -11364,3410:229,109,-42,0,0,0.126129 -11365,3411:120,110,-42,0,0,0.12357 -11366,3411:121,111,-42,0,0,0.132408 -11367,3411:122,112,-42,0,0,0.132125 -11368,3411:123,113,-42,0,0,0.128331 -11369,3411:124,114,-42,0,0,0.134786 -11370,3411:225,115,-42,0,0,0.13863 -11371,3411:226,116,-42,0,0,0.15363 -11372,3411:227,117,-42,0,0,0.153978 -11373,3411:228,118,-42,0,0,0.144447 -11374,3411:229,119,-42,0,0,0.138372 -11375,3412:120,120,-42,0,0,0.141838 -11376,3412:121,121,-42,0,0,0.143169 -11377,3412:122,122,-42,0,0,0.145695 -11378,3412:123,123,-42,0,0,0.15032 -11379,3412:124,124,-42,0,0,0.150754 -11380,3412:225,125,-42,0,0,0.154635 -11381,3412:226,126,-42,0,0,0.15339 -11382,3412:227,127,-42,0,0,0.147818 -11383,3412:228,128,-42,0,0,0.175186 -11384,3412:229,129,-42,0,0,0.1797 -11385,3413:120,130,-42,0,0,0.178672 -11386,3413:121,131,-42,0,0,0.174711 -11387,3413:122,132,-42,0,0,0.169052 -11388,3413:123,133,-42,0,0,0.171797 -11389,3413:124,134,-42,0,0,0.175691 -11390,3413:225,135,-42,0,0,0.17529 -11391,3413:226,136,-42,0,0,0.174193 -11392,3413:227,137,-42,0,0,0.170108 -11393,3413:228,138,-42,0,0,0.161345 -11394,3413:229,139,-42,0,0,0.163695 -11395,3414:120,140,-42,0,0,0.158338 -11396,3414:121,141,-42,0,0,0.143649 -11397,3414:122,142,-42,0,0,0.143876 -11398,3414:123,143,-42,0,0,0.160388 -11399,3414:124,144,-42,0,0,0.159119 -11400,3414:225,145,-42,0,0,0.148817 -11401,3414:226,146,-42,0,0,0.137822 -11402,3414:227,147,-42,0,0,0.167399 -11403,3414:228,148,-42,0,0,0.187162 -11404,3414:229,149,-42,0,0,0.184149 -11405,3415:120,150,-42,0,0,0.165773 -11406,3415:121,151,-42,0,0,0.170457 -11407,3415:122,152,-42,0,0,0.172691 -11408,3415:123,153,-42,0,0,0.174134 -11409,3415:124,154,-42,0,0,0.182136 -11410,3415:225,155,-42,0,0,0.18258 -11411,3415:226,156,-42,0,0,0.17486 -11412,3415:227,157,-42,0,0,0.173574 -11413,3415:228,158,-42,0,0,0.182795 -11414,3415:229,159,-42,0,0,0.18401 -11415,3416:120,160,-42,0,0,0.18884 -11416,3416:121,161,-42,0,0,0.190657 -11417,3416:122,162,-42,0,0,0.191006 -11418,3416:123,163,-42,0,0,0.190325 -11419,3416:124,164,-42,0,0,0.185869 -11420,3416:225,165,-42,0,0,0.185511 -11421,3416:226,166,-42,0,0,0.192743 -11422,3416:227,167,-42,0,0,0.191754 -11423,3416:228,168,-42,0,0,0.189582 -11424,3416:229,169,-42,0,0,0.183163 -11425,3417:120,170,-42,0,0,0.17917 -11426,3417:121,171,-42,0,0,0.177574 -11427,3417:122,172,-42,0,0,0.17825 -11428,3417:123,173,-42,0,0,0.179019 -11429,3417:124,174,-42,0,0,0.180823 -11430,3417:225,175,-42,0,0,0.180018 -11431,3417:226,176,-42,0,0,0.164625 -11432,3417:227,177,-42,0,0,0.164442 -11433,3417:228,178,-42,0,0,0.167141 -11434,3417:229,179,-42,0,0,0.173441 -11435,3418:120,180,-42,0,0,0.173352 -11436,5418:110,-180,-41,0,0,0.173191 -11437,5417:219,-179,-41,0,0,0.171549 -11438,5417:218,-178,-41,0,0,0.17322 -11439,5417:217,-177,-41,0,0,0.190546 -11440,5417:216,-176,-41,0,0,0.192232 -11441,5417:215,-175,-41,0,0,0.188322 -11442,5417:114,-174,-41,0,0,0.194943 -11443,5417:113,-173,-41,0,0,0.19433 -11444,5417:112,-172,-41,0,0,0.200648 -11445,5417:111,-171,-41,0,0,0.191006 -11446,5417:110,-170,-41,0,0,0.190245 -11447,5416:219,-169,-41,0,0,0.187788 -11448,5416:218,-168,-41,0,0,0.18903 -11449,5416:217,-167,-41,0,0,0.183579 -11450,5416:216,-166,-41,0,0,0.188385 -11451,5416:215,-165,-41,0,0,0.187773 -11452,5416:114,-164,-41,0,0,0.199136 -11453,5416:113,-163,-41,0,0,0.213741 -11454,5416:112,-162,-41,0,0,0.195007 -11455,5416:111,-161,-41,0,0,0.196219 -11456,5416:110,-160,-41,0,0,0.202616 -11457,5415:219,-159,-41,0,0,0.213707 -11458,5415:218,-158,-41,0,0,0.22622 -11459,5415:217,-157,-41,0,0,0.232668 -11460,5415:216,-156,-41,0,0,0.232173 -11461,5415:215,-155,-41,0,0,0.225843 -11462,5415:114,-154,-41,0,0,0.213189 -11463,5415:113,-153,-41,0,0,0.218703 -11464,5415:112,-152,-41,0,0,0.230074 -11465,5415:111,-151,-41,0,0,0.223998 -11466,5415:110,-150,-41,0,0,0.222306 -11467,5414:219,-149,-41,0,0,0.217232 -11468,5414:218,-148,-41,0,0,0.2208 -11469,5414:217,-147,-41,0,0,0.226832 -11470,5414:216,-146,-41,0,0,0.227716 -11471,5414:215,-145,-41,0,0,0.226688 -11472,5414:114,-144,-41,0,0,0.225448 -11473,5414:113,-143,-41,0,0,0.221419 -11474,5414:112,-142,-41,0,0,0.218914 -11475,5414:111,-141,-41,0,0,0.221968 -11476,5414:110,-140,-41,0,0,0.226544 -11477,5413:219,-139,-41,0,0,0.227463 -11478,5413:218,-138,-41,0,0,0.224391 -11479,5413:217,-137,-41,0,0,0.222413 -11480,5413:216,-136,-41,0,0,0.223605 -11481,5413:215,-135,-41,0,0,0.221826 -11482,5413:114,-134,-41,0,0,0.220252 -11483,5413:113,-133,-41,0,0,0.219846 -11484,5413:112,-132,-41,0,0,0.217704 -11485,5413:111,-131,-41,0,0,0.216709 -11486,5413:110,-130,-41,0,0,0.216482 -11487,5412:219,-129,-41,0,0,0.216133 -11488,5412:218,-128,-41,0,0,0.215612 -11489,5412:217,-127,-41,0,0,0.213638 -11490,5412:216,-126,-41,0,0,0.201258 -11491,5412:215,-125,-41,0,0,0.201275 -11492,5412:114,-124,-41,0,0,0.204648 -11493,5412:113,-123,-41,0,0,0.205034 -11494,5412:112,-122,-41,0,0,0.193399 -11495,5412:111,-121,-41,0,0,0.196625 -11496,5412:110,-120,-41,0,0,0.191117 -11497,5411:219,-119,-41,0,0,0.191244 -11498,5411:218,-118,-41,0,0,0.194185 -11499,5411:217,-117,-41,0,0,0.192535 -11500,5411:216,-116,-41,0,0,0.192903 -11501,5411:215,-115,-41,0,0,0.194749 -11502,5411:114,-114,-41,0,0,0.195766 -11503,5411:113,-113,-41,0,0,0.192903 -11504,5411:112,-112,-41,0,0,0.187366 -11505,5411:111,-111,-41,0,0,0.181707 -11506,5411:110,-110,-41,0,0,0.182136 -11507,5410:219,-109,-41,0,0,0.182564 -11508,5410:218,-108,-41,0,0,0.178551 -11509,5410:217,-107,-41,0,0,0.180884 -11510,5410:216,-106,-41,0,0,0.180625 -11511,5410:215,-105,-41,0,0,0.181097 -11512,5410:114,-104,-41,0,0,0.182166 -11513,5410:113,-103,-41,0,0,0.179518 -11514,5410:112,-102,-41,0,0,0.176347 -11515,5410:111,-101,-41,0,0,0.176153 -11516,5410:110,-100,-41,0,0,0.177409 -11517,5409:219,-99,-41,0,0,0.176272 -11518,5409:218,-98,-41,0,0,0.173603 -11519,5409:217,-97,-41,0,0,0.171534 -11520,5409:216,-96,-41,0,0,0.172412 -11521,5409:215,-95,-41,0,0,0.171155 -11522,5409:114,-94,-41,0,0,0.17114 -11523,5409:113,-93,-41,0,0,0.172706 -11524,5409:112,-92,-41,0,0,0.174164 -11525,5409:111,-91,-41,0,0,0.172134 -11526,5409:110,-90,-41,0,0,0.171608 -11527,5408:219,-89,-41,0,0,0.170879 -11528,5408:218,-88,-41,0,0,0.169847 -11529,5408:217,-87,-41,0,0,0.169298 -11530,5408:216,-86,-41,0,0,0.169182 -11531,5408:215,-85,-41,0,0,0.168922 -11532,5408:114,-84,-41,0,0,0.168548 -11533,5408:113,-83,-41,0,0,0.167485 -11534,5408:112,-82,-41,0,0,0.174874 -11535,5408:111,-81,-41,0,0,0.1744 -11536,5408:110,-80,-41,0,0,0.177949 -11537,5407:219,-79,-41,0,0,0.179669 -11538,5407:218,-78,-41,0,0,0.175112 -11539,5407:217,-77,-41,0,0,0.179942 -11540,5407:216,-76,-41,0,0,0.194009 -11541,5407:215,-75,-41,0,0,0.210104 -11542,5406:219,-69,-41,0,0,0.204515 -11543,5406:218,-68,-41,0,0,0.183671 -11544,5406:217,-67,-41,0,0,0.180139 -11545,5406:216,-66,-41,0,0,0.178883 -11546,5406:215,-65,-41,0,0,0.17587 -11547,5406:114,-64,-41,0,0,0.174371 -11548,5406:113,-63,-41,0,0,0.174178 -11549,5406:112,-62,-41,0,0,0.176825 -11550,5406:111,-61,-41,0,0,0.189077 -11551,5406:110,-60,-41,0,0,0.195588 -11552,5405:219,-59,-41,0,0,0.194057 -11553,5405:218,-58,-41,0,0,0.18128 -11554,5405:217,-57,-41,0,0,0.169891 -11555,5405:216,-56,-41,0,0,0.162279 -11556,5405:215,-55,-41,0,0,0.157096 -11557,5405:114,-54,-41,0,0,0.148454 -11558,5405:113,-53,-41,0,0,0.146413 -11559,5405:112,-52,-41,0,0,0.148791 -11560,5405:111,-51,-41,0,0,0.149182 -11561,5405:110,-50,-41,0,0,0.140456 -11562,5404:219,-49,-41,0,0,0.137091 -11563,5404:218,-48,-41,0,0,0.135784 -11564,5404:217,-47,-41,0,0,0.140121 -11565,5404:216,-46,-41,0,0,0.138679 -11566,5404:215,-45,-41,0,0,0.137407 -11567,5404:114,-44,-41,0,0,0.137055 -11568,5404:113,-43,-41,0,0,0.138201 -11569,5404:112,-42,-41,0,0,0.135062 -11570,5404:111,-41,-41,0,0,0.131244 -11571,5404:110,-40,-41,0,0,0.125181 -11572,5403:219,-39,-41,0,0,0.139799 -11573,5403:218,-38,-41,0,0,0.145555 -11574,5403:217,-37,-41,0,0,0.146683 -11575,5403:216,-36,-41,0,0,0.141788 -11576,5403:215,-35,-41,0,0,0.130577 -11577,5403:114,-34,-41,0,0,0.131513 -11578,5403:113,-33,-41,0,0,0.133688 -11579,5403:112,-32,-41,0,0,0.127849 -11580,5403:111,-31,-41,0,0,0.130228 -11581,5403:110,-30,-41,0,0,0.133177 -11582,5402:219,-29,-41,0,0,0.131631 -11583,5402:218,-28,-41,0,0,0.134654 -11584,5402:217,-27,-41,0,0,0.131314 -11585,5402:216,-26,-41,0,0,0.126129 -11586,5402:215,-25,-41,0,0,0.130787 -11587,5402:114,-24,-41,0,0,0.131314 -11588,5402:113,-23,-41,0,0,0.133533 -11589,5402:112,-22,-41,0,0,0.133581 -11590,5402:111,-21,-41,0,0,0.126333 -11591,5402:110,-20,-41,0,0,0.12562 -11592,5401:219,-19,-41,0,0,0.125542 -11593,5401:218,-18,-41,0,0,0.124083 -11594,5401:217,-17,-41,0,0,0.135002 -11595,5401:216,-16,-41,0,0,0.131291 -11596,5401:215,-15,-41,0,0,0.129381 -11597,5401:114,-14,-41,0,0,0.133284 -11598,5401:113,-13,-41,0,0,0.139011 -11599,5401:112,-12,-41,0,0,0.135543 -11600,5401:111,-11,-41,0,0,0.13156 -11601,5401:110,-10,-41,0,0,0.129103 -11602,5400:219,-9,-41,0,0,0.11908 -11603,5400:218,-8,-41,0,0,0.107301 -11604,5400:217,-7,-41,0,0,0.106839 -11605,5400:216,-6,-41,0,0,0.101913 -11606,5400:215,-5,-41,0,0,0.101781 -11607,5400:114,-4,-41,0,0,0.103523 -11608,5400:113,-3,-41,0,0,0.11121 -11609,5400:112,-2,-41,0,0,0.107242 -11610,5400:111,-1,-41,0,0,0.109255 -11611,3400:111,0,-41,0,0,0.11175 -11612,3400:111,1,-41,0,0,0.102886 -11613,3400:112,2,-41,0,0,0.102715 -11614,3400:113,3,-41,0,0,0.103332 -11615,3400:114,4,-41,0,0,0.101117 -11616,3400:215,5,-41,0,0,0.107104 -11617,3400:216,6,-41,0,0,0.122329 -11618,3400:217,7,-41,0,0,0.108796 -11619,3400:218,8,-41,0,0,0.112086 -11620,3400:219,9,-41,0,0,0.115852 -11621,3401:110,10,-41,0,0,0.115464 -11622,3401:111,11,-41,0,0,0.109405 -11623,3401:112,12,-41,0,0,0.111018 -11624,3401:113,13,-41,0,0,0.108032 -11625,3401:114,14,-41,0,0,0.101631 -11626,3401:215,15,-41,0,0,0.104644 -11627,3401:216,16,-41,0,0,0.113733 -11628,3401:217,17,-41,0,0,0.113702 -11629,3401:218,18,-41,0,0,0.113992 -11630,3401:219,19,-41,0,0,0.103848 -11631,3402:110,20,-41,0,0,0.101014 -11632,3402:111,21,-41,0,0,0.104653 -11633,3402:112,22,-41,0,0,0.114658 -11634,3402:113,23,-41,0,0,0.102526 -11635,3402:114,24,-41,0,0,0.101285 -11636,3402:215,25,-41,0,0,0.106869 -11637,3402:216,26,-41,0,0,0.104211 -11638,3402:217,27,-41,0,0,0.117259 -11639,3402:218,28,-41,0,0,0.127323 -11640,3402:219,29,-41,0,0,0.110602 -11641,3403:110,30,-41,0,0,0.12088 -11642,3403:111,31,-41,0,0,0.116338 -11643,3403:112,32,-41,0,0,0.109166 -11644,3403:113,33,-41,0,0,0.10502 -11645,3403:114,34,-41,0,0,0.106301 -11646,3403:215,35,-41,0,0,0.110572 -11647,3403:216,36,-41,0,0,0.111403 -11648,3403:217,37,-41,0,0,0.107932 -11649,3403:218,38,-41,0,0,0.110865 -11650,3403:219,39,-41,0,0,0.115884 -11651,3404:110,40,-41,0,0,0.108736 -11652,3404:111,41,-41,0,0,0.108597 -11653,3404:112,42,-41,0,0,0.109887 -11654,3404:113,43,-41,0,0,0.110471 -11655,3404:114,44,-41,0,0,0.115348 -11656,3404:215,45,-41,0,0,0.117121 -11657,3404:216,46,-41,0,0,0.116274 -11658,3404:217,47,-41,0,0,0.112036 -11659,3404:218,48,-41,0,0,0.11033 -11660,3404:219,49,-41,0,0,0.114637 -11661,3405:110,50,-41,0,0,0.111801 -11662,3405:111,51,-41,0,0,0.113216 -11663,3405:112,52,-41,0,0,0.114242 -11664,3405:113,53,-41,0,0,0.114335 -11665,3405:114,54,-41,0,0,0.115516 -11666,3405:215,55,-41,0,0,0.113495 -11667,3405:216,56,-41,0,0,0.110653 -11668,3405:217,57,-41,0,0,0.114387 -11669,3405:218,58,-41,0,0,0.11224 -11670,3405:219,59,-41,0,0,0.119155 -11671,3406:110,60,-41,0,0,0.118509 -11672,3406:111,61,-41,0,0,0.117398 -11673,3406:112,62,-41,0,0,0.116909 -11674,3406:113,63,-41,0,0,0.115632 -11675,3406:114,64,-41,0,0,0.113909 -11676,3406:215,65,-41,0,0,0.11301 -11677,3406:216,66,-41,0,0,0.111719 -11678,3406:217,67,-41,0,0,0.108906 -11679,3406:218,68,-41,0,0,0.109085 -11680,3406:219,69,-41,0,0,0.109185 -11681,3407:110,70,-41,0,0,0.109095 -11682,3407:111,71,-41,0,0,0.107114 -11683,3407:112,72,-41,0,0,0.107282 -11684,3407:114,74,-41,0,0,0.107291 -11685,3407:215,75,-41,0,0,0.103123 -11686,3407:216,76,-41,0,0,0.0969009 -11687,3407:217,77,-41,0,0,0.11033 -11688,3407:218,78,-41,0,0,0.113826 -11689,3407:219,79,-41,0,0,0.11034 -11690,3408:110,80,-41,0,0,0.141851 -11691,3408:111,81,-41,0,0,0.14493 -11692,3408:112,82,-41,0,0,0.143131 -11693,3408:113,83,-41,0,0,0.138152 -11694,3408:114,84,-41,0,0,0.141976 -11695,3408:215,85,-41,0,0,0.14649 -11696,3408:216,86,-41,0,0,0.144828 -11697,3408:217,87,-41,0,0,0.141214 -11698,3408:218,88,-41,0,0,0.143409 -11699,3408:219,89,-41,0,0,0.155133 -11700,3409:110,90,-41,0,0,0.152911 -11701,3409:111,91,-41,0,0,0.161137 -11702,3409:112,92,-41,0,0,0.153444 -11703,3409:113,93,-41,0,0,0.14094 -11704,3409:114,94,-41,0,0,0.146914 -11705,3409:215,95,-41,0,0,0.151399 -11706,3409:216,96,-41,0,0,0.147779 -11707,3409:217,97,-41,0,0,0.144485 -11708,3409:218,98,-41,0,0,0.140828 -11709,3409:219,99,-41,0,0,0.138323 -11710,3410:110,100,-41,0,0,0.138789 -11711,3410:111,101,-41,0,0,0.139121 -11712,3410:112,102,-41,0,0,0.137176 -11713,3410:113,103,-41,0,0,0.129473 -11714,3410:114,104,-41,0,0,0.127918 -11715,3410:215,105,-41,0,0,0.130566 -11716,3410:216,106,-41,0,0,0.127929 -11717,3410:217,107,-41,0,0,0.123815 -11718,3410:218,108,-41,0,0,0.134415 -11719,3410:219,109,-41,0,0,0.134403 -11720,3411:110,110,-41,0,0,0.129172 -11721,3411:111,111,-41,0,0,0.129462 -11722,3411:112,112,-41,0,0,0.132952 -11723,3411:113,113,-41,0,0,0.139207 -11724,3411:114,114,-41,0,0,0.141988 -11725,3411:215,115,-41,0,0,0.147379 -11726,3411:216,116,-41,0,0,0.154206 -11727,3411:217,117,-41,0,0,0.148401 -11728,3411:218,118,-41,0,0,0.142879 -11729,3411:219,119,-41,0,0,0.143396 -11730,3412:110,120,-41,0,0,0.148376 -11731,3412:111,121,-41,0,0,0.163259 -11732,3412:112,122,-41,0,0,0.168533 -11733,3412:113,123,-41,0,0,0.166143 -11734,3412:114,124,-41,0,0,0.1579 -11735,3412:215,125,-41,0,0,0.158201 -11736,3412:216,126,-41,0,0,0.159601 -11737,3412:217,127,-41,0,0,0.170021 -11738,3412:218,128,-41,0,0,0.185062 -11739,3412:219,129,-41,0,0,0.17917 -11740,3413:110,130,-41,0,0,0.178235 -11741,3413:111,131,-41,0,0,0.177769 -11742,3413:112,132,-41,0,0,0.177019 -11743,3413:113,133,-41,0,0,0.174578 -11744,3413:114,134,-41,0,0,0.173868 -11745,3413:215,135,-41,0,0,0.171432 -11746,3413:216,136,-41,0,0,0.168289 -11747,3413:217,137,-41,0,0,0.16368 -11748,3413:218,138,-41,0,0,0.162447 -11749,3413:219,139,-41,0,0,0.171432 -11750,3414:110,140,-41,0,0,0.172002 -11751,3414:111,141,-41,0,0,0.197926 -11752,3414:112,142,-41,0,0,0.2025 -11753,3414:113,143,-41,0,0,0.200088 -11754,3414:114,144,-41,0,0,0.178657 -11755,3414:215,145,-41,0,0,0.168663 -11756,3414:216,146,-41,0,0,0.180412 -11757,3414:217,147,-41,0,0,0.192823 -11758,3414:218,148,-41,0,0,0.198481 -11759,3414:219,149,-41,0,0,0.190721 -11760,3415:110,150,-41,0,0,0.186756 -11761,3415:111,151,-41,0,0,0.17272 -11762,3415:112,152,-41,0,0,0.172823 -11763,3415:113,153,-41,0,0,0.189771 -11764,3415:114,154,-41,0,0,0.217599 -11765,3415:215,155,-41,0,0,0.217827 -11766,3415:216,156,-41,0,0,0.206208 -11767,3415:217,157,-41,0,0,0.180184 -11768,3415:218,158,-41,0,0,0.196446 -11769,3415:219,159,-41,0,0,0.204749 -11770,3416:110,160,-41,0,0,0.198907 -11771,3416:111,161,-41,0,0,0.200763 -11772,3416:112,162,-41,0,0,0.201903 -11773,3416:113,163,-41,0,0,0.191913 -11774,3416:114,164,-41,0,0,0.191388 -11775,3416:215,165,-41,0,0,0.193575 -11776,3416:216,166,-41,0,0,0.196738 -11777,3416:217,167,-41,0,0,0.194314 -11778,3416:218,168,-41,0,0,0.192583 -11779,3416:219,169,-41,0,0,0.186881 -11780,3417:110,170,-41,0,0,0.185263 -11781,3417:111,171,-41,0,0,0.182626 -11782,3417:112,172,-41,0,0,0.181524 -11783,3417:113,173,-41,0,0,0.181829 -11784,3417:114,174,-41,0,0,0.181799 -11785,3417:215,175,-41,0,0,0.182335 -11786,3417:216,176,-41,0,0,0.177109 -11787,3417:217,177,-41,0,0,0.172794 -11788,3417:218,178,-41,0,0,0.172765 -11789,3417:219,179,-41,0,0,0.173603 -11790,3418:110,180,-41,0,0,0.173191 -11791,5418:100,-180,-40,0,0,0.180336 -11792,5417:209,-179,-40,0,0,0.173706 -11793,5417:208,-178,-40,0,0,0.177379 -11794,5417:207,-177,-40,0,0,0.200533 -11795,5417:206,-176,-40,0,0,0.193752 -11796,5417:205,-175,-40,0,0,0.191467 -11797,5417:104,-174,-40,0,0,0.189518 -11798,5417:103,-173,-40,0,0,0.191801 -11799,5417:102,-172,-40,0,0,0.209984 -11800,5417:101,-171,-40,0,0,0.210206 -11801,5417:100,-170,-40,0,0,0.206596 -11802,5416:209,-169,-40,0,0,0.219002 -11803,5416:208,-168,-40,0,0,0.225466 -11804,5416:207,-167,-40,0,0,0.227048 -11805,5416:206,-166,-40,0,0,0.214883 -11806,5416:205,-165,-40,0,0,0.198498 -11807,5416:104,-164,-40,0,0,0.208675 -11808,5416:103,-163,-40,0,0,0.218984 -11809,5416:102,-162,-40,0,0,0.220764 -11810,5416:101,-161,-40,0,0,0.218826 -11811,5416:100,-160,-40,0,0,0.22133 -11812,5415:209,-159,-40,0,0,0.225968 -11813,5415:208,-158,-40,0,0,0.233826 -11814,5415:207,-157,-40,0,0,0.237844 -11815,5415:206,-156,-40,0,0,0.230875 -11816,5415:205,-155,-40,0,0,0.23042 -11817,5415:104,-154,-40,0,0,0.227355 -11818,5415:103,-153,-40,0,0,0.229873 -11819,5415:102,-152,-40,0,0,0.2346 -11820,5415:101,-151,-40,0,0,0.233771 -11821,5415:100,-150,-40,0,0,0.23632 -11822,5414:209,-149,-40,0,0,0.235431 -11823,5414:208,-148,-40,0,0,0.233035 -11824,5414:207,-147,-40,0,0,0.233587 -11825,5414:206,-146,-40,0,0,0.235931 -11826,5414:205,-145,-40,0,0,0.234213 -11827,5414:104,-144,-40,0,0,0.232797 -11828,5414:103,-143,-40,0,0,0.230912 -11829,5414:102,-142,-40,0,0,0.231022 -11830,5414:101,-141,-40,0,0,0.235505 -11831,5414:100,-140,-40,0,0,0.234286 -11832,5413:209,-139,-40,0,0,0.231551 -11833,5413:208,-138,-40,0,0,0.230912 -11834,5413:207,-137,-40,0,0,0.229601 -11835,5413:206,-136,-40,0,0,0.228132 -11836,5413:205,-135,-40,0,0,0.227662 -11837,5413:104,-134,-40,0,0,0.225861 -11838,5413:103,-133,-40,0,0,0.223498 -11839,5413:102,-132,-40,0,0,0.223498 -11840,5413:101,-131,-40,0,0,0.222217 -11841,5413:100,-130,-40,0,0,0.222057 -11842,5412:209,-129,-40,0,0,0.221968 -11843,5412:208,-128,-40,0,0,0.221383 -11844,5412:207,-127,-40,0,0,0.220499 -11845,5412:206,-126,-40,0,0,0.220658 -11846,5412:205,-125,-40,0,0,0.218405 -11847,5412:104,-124,-40,0,0,0.213931 -11848,5412:103,-123,-40,0,0,0.205436 -11849,5412:102,-122,-40,0,0,0.204766 -11850,5412:101,-121,-40,0,0,0.204398 -11851,5412:100,-120,-40,0,0,0.203364 -11852,5411:209,-119,-40,0,0,0.199169 -11853,5411:208,-118,-40,0,0,0.200846 -11854,5411:207,-117,-40,0,0,0.197796 -11855,5411:206,-116,-40,0,0,0.19858 -11856,5411:205,-115,-40,0,0,0.203031 -11857,5411:104,-114,-40,0,0,0.202799 -11858,5411:103,-113,-40,0,0,0.199284 -11859,5411:102,-112,-40,0,0,0.192599 -11860,5411:101,-111,-40,0,0,0.186055 -11861,5411:100,-110,-40,0,0,0.189487 -11862,5410:209,-109,-40,0,0,0.19034 -11863,5410:208,-108,-40,0,0,0.183948 -11864,5410:207,-107,-40,0,0,0.187272 -11865,5410:206,-106,-40,0,0,0.19034 -11866,5410:205,-105,-40,0,0,0.187131 -11867,5410:104,-104,-40,0,0,0.186866 -11868,5410:103,-103,-40,0,0,0.183271 -11869,5410:102,-102,-40,0,0,0.181723 -11870,5410:101,-101,-40,0,0,0.184319 -11871,5410:100,-100,-40,0,0,0.183733 -11872,5409:209,-99,-40,0,0,0.180412 -11873,5409:208,-98,-40,0,0,0.179669 -11874,5409:207,-97,-40,0,0,0.177529 -11875,5409:206,-96,-40,0,0,0.1769 -11876,5409:205,-95,-40,0,0,0.175498 -11877,5409:104,-94,-40,0,0,0.177934 -11878,5409:103,-93,-40,0,0,0.179049 -11879,5409:102,-92,-40,0,0,0.177364 -11880,5409:101,-91,-40,0,0,0.176795 -11881,5409:100,-90,-40,0,0,0.175989 -11882,5408:209,-89,-40,0,0,0.176123 -11883,5408:208,-88,-40,0,0,0.176108 -11884,5408:207,-87,-40,0,0,0.176975 -11885,5408:206,-86,-40,0,0,0.173441 -11886,5408:205,-85,-40,0,0,0.174578 -11887,5408:104,-84,-40,0,0,0.173323 -11888,5408:103,-83,-40,0,0,0.17446 -11889,5408:102,-82,-40,0,0,0.17911 -11890,5408:101,-81,-40,0,0,0.185604 -11891,5408:100,-80,-40,0,0,0.185511 -11892,5407:209,-79,-40,0,0,0.184937 -11893,5407:208,-78,-40,0,0,0.182641 -11894,5407:207,-77,-40,0,0,0.183102 -11895,5407:206,-76,-40,0,0,0.20197 -11896,5406:207,-67,-40,0,0,0.206074 -11897,5406:206,-66,-40,0,0,0.195621 -11898,5406:205,-65,-40,0,0,0.190087 -11899,5406:104,-64,-40,0,0,0.185465 -11900,5406:103,-63,-40,0,0,0.186912 -11901,5406:102,-62,-40,0,0,0.18671 -11902,5406:101,-61,-40,0,0,0.197861 -11903,5406:100,-60,-40,0,0,0.196203 -11904,5405:209,-59,-40,0,0,0.188526 -11905,5405:208,-58,-40,0,0,0.182197 -11906,5405:207,-57,-40,0,0,0.174386 -11907,5405:206,-56,-40,0,0,0.166755 -11908,5405:205,-55,-40,0,0,0.16072 -11909,5405:104,-54,-40,0,0,0.149822 -11910,5405:103,-53,-40,0,0,0.152512 -11911,5405:102,-52,-40,0,0,0.153364 -11912,5405:101,-51,-40,0,0,0.15749 -11913,5405:100,-50,-40,0,0,0.144332 -11914,5404:209,-49,-40,0,0,0.146696 -11915,5404:208,-48,-40,0,0,0.144421 -11916,5404:207,-47,-40,0,0,0.146195 -11917,5404:206,-46,-40,0,0,0.153791 -11918,5404:205,-45,-40,0,0,0.149299 -11919,5404:104,-44,-40,0,0,0.152127 -11920,5404:103,-43,-40,0,0,0.144802 -11921,5404:102,-42,-40,0,0,0.139134 -11922,5404:101,-41,-40,0,0,0.134559 -11923,5404:100,-40,-40,0,0,0.132609 -11924,5403:209,-39,-40,0,0,0.142439 -11925,5403:208,-38,-40,0,0,0.146323 -11926,5403:207,-37,-40,0,0,0.14658 -11927,5403:206,-36,-40,0,0,0.141064 -11928,5403:205,-35,-40,0,0,0.140146 -11929,5403:104,-34,-40,0,0,0.140295 -11930,5403:103,-33,-40,0,0,0.138152 -11931,5403:102,-32,-40,0,0,0.137712 -11932,5403:101,-31,-40,0,0,0.138655 -11933,5403:100,-30,-40,0,0,0.138348 -11934,5402:209,-29,-40,0,0,0.138458 -11935,5402:208,-28,-40,0,0,0.143952 -11936,5402:207,-27,-40,0,0,0.141763 -11937,5402:206,-26,-40,0,0,0.13588 -11938,5402:205,-25,-40,0,0,0.139097 -11939,5402:104,-24,-40,0,0,0.133486 -11941,5402:102,-22,-40,0,0,0.143712 -11942,5402:101,-21,-40,0,0,0.142289 -11943,5402:100,-20,-40,0,0,0.143333 -11944,5401:209,-19,-40,0,0,0.142577 -11945,5401:208,-18,-40,0,0,0.136788 -11946,5401:207,-17,-40,0,0,0.134846 -11947,5401:206,-16,-40,0,0,0.147766 -11948,5401:205,-15,-40,0,0,0.152671 -11949,5401:104,-14,-40,0,0,0.145414 -11950,5401:103,-13,-40,0,0,0.144041 -11951,5401:102,-12,-40,0,0,0.136654 -11952,5401:101,-11,-40,0,0,0.126152 -11953,5401:100,-10,-40,0,0,0.126708 -11954,5400:209,-9,-40,0,0,0.12223 -11955,5400:208,-8,-40,0,0,0.114481 -11956,5400:207,-7,-40,0,0,0.115768 -11957,5400:206,-6,-40,0,0,0.117643 -11958,5400:205,-5,-40,0,0,0.12287 -11959,5400:104,-4,-40,0,0,0.128907 -11960,5400:103,-3,-40,0,0,0.127494 -11961,5400:102,-2,-40,0,0,0.118606 -11962,5400:101,-1,-40,0,0,0.125847 -11963,3400:101,0,-40,0,0,0.143927 -11964,3400:101,1,-40,0,0,0.151756 -11965,3400:102,2,-40,0,0,0.144663 -11966,3400:103,3,-40,0,0,0.131877 -11967,3400:104,4,-40,0,0,0.123904 -11968,3400:205,5,-40,0,0,0.12027 -11969,3400:206,6,-40,0,0,0.125971 -11970,3400:207,7,-40,0,0,0.127186 -11971,3400:208,8,-40,0,0,0.112128 -11972,3400:209,9,-40,0,0,0.121296 -11973,3401:100,10,-40,0,0,0.122119 -11974,3401:101,11,-40,0,0,0.124519 -11975,3401:102,12,-40,0,0,0.124765 -11976,3401:103,13,-40,0,0,0.124664 -11977,3401:104,14,-40,0,0,0.119944 -11978,3401:205,15,-40,0,0,0.121801 -11979,3401:206,16,-40,0,0,0.136122 -11980,3401:207,17,-40,0,0,0.133711 -11981,3401:208,18,-40,0,0,0.117921 -11982,3401:209,19,-40,0,0,0.118413 -11983,3402:100,20,-40,0,0,0.126039 -11984,3402:101,21,-40,0,0,0.119501 -11985,3402:102,22,-40,0,0,0.123871 -11986,3402:103,23,-40,0,0,0.114961 -11987,3402:104,24,-40,0,0,0.118918 -11988,3402:205,25,-40,0,0,0.123971 -11989,3402:206,26,-40,0,0,0.120738 -11990,3402:207,27,-40,0,0,0.116475 -11991,3402:208,28,-40,0,0,0.126492 -11992,3402:209,29,-40,0,0,0.119619 -11993,3403:100,30,-40,0,0,0.11538 -11994,3403:101,31,-40,0,0,0.11744 -11995,3403:102,32,-40,0,0,0.123037 -11996,3403:103,33,-40,0,0,0.121658 -11997,3403:104,34,-40,0,0,0.114106 -11998,3403:205,35,-40,0,0,0.12111 -11999,3403:206,36,-40,0,0,0.120096 -12000,3403:207,37,-40,0,0,0.115495 -12001,3403:208,38,-40,0,0,0.110481 -12002,3403:209,39,-40,0,0,0.119544 -12003,3404:100,40,-40,0,0,0.126231 -12004,3404:101,41,-40,0,0,0.125655 -12005,3404:102,42,-40,0,0,0.122054 -12006,3404:103,43,-40,0,0,0.119641 -12007,3404:104,44,-40,0,0,0.11909 -12008,3404:205,45,-40,0,0,0.117121 -12009,3404:206,46,-40,0,0,0.114856 -12010,3404:207,47,-40,0,0,0.11334 -12011,3404:208,48,-40,0,0,0.124418 -12012,3404:209,49,-40,0,0,0.125824 -12013,3405:100,50,-40,0,0,0.118918 -12014,3405:101,51,-40,0,0,0.119274 -12015,3405:102,52,-40,0,0,0.119522 -12016,3405:103,53,-40,0,0,0.11881 -12017,3405:104,54,-40,0,0,0.11743 -12018,3405:205,55,-40,0,0,0.119684 -12019,3405:206,56,-40,0,0,0.119188 -12020,3405:207,57,-40,0,0,0.117942 -12021,3405:208,58,-40,0,0,0.11881 -12022,3405:209,59,-40,0,0,0.120053 -12023,3406:100,60,-40,0,0,0.121537 -12024,3406:101,61,-40,0,0,0.12234 -12025,3406:102,62,-40,0,0,0.119977 -12026,3406:103,63,-40,0,0,0.116179 -12027,3406:104,64,-40,0,0,0.115642 -12028,3406:205,65,-40,0,0,0.113774 -12029,3406:206,66,-40,0,0,0.112712 -12030,3406:207,67,-40,0,0,0.114606 -12031,3406:208,68,-40,0,0,0.11538 -12032,3406:209,69,-40,0,0,0.117622 -12033,3407:100,70,-40,0,0,0.115212 -12034,3407:101,71,-40,0,0,0.111485 -12035,3407:102,72,-40,0,0,0.110855 -12036,3407:104,74,-40,0,0,0.107262 -12037,3407:205,75,-40,0,0,0.11364 -12038,3407:206,76,-40,0,0,0.1301 -12039,3407:207,77,-40,0,0,0.138201 -12040,3407:208,78,-40,0,0,0.140245 -12041,3407:209,79,-40,0,0,0.133747 -12042,3408:100,80,-40,0,0,0.14567 -12043,3408:101,81,-40,0,0,0.142502 -12044,3408:102,82,-40,0,0,0.138262 -12045,3408:103,83,-40,0,0,0.155308 -12046,3408:104,84,-40,0,0,0.154407 -12047,3408:205,85,-40,0,0,0.144028 -12048,3408:206,86,-40,0,0,0.140418 -12049,3408:207,87,-40,0,0,0.141413 -12050,3408:208,88,-40,0,0,0.166656 -12051,3408:209,89,-40,0,0,0.174282 -12052,3409:100,90,-40,0,0,0.157791 -12053,3409:101,91,-40,0,0,0.159587 -12054,3409:102,92,-40,0,0,0.157395 -12055,3409:103,93,-40,0,0,0.155483 -12056,3409:104,94,-40,0,0,0.159822 -12057,3409:205,95,-40,0,0,0.159381 -12058,3409:206,96,-40,0,0,0.152871 -12059,3409:207,97,-40,0,0,0.153084 -12060,3409:208,98,-40,0,0,0.153871 -12061,3409:209,99,-40,0,0,0.151413 -12062,3410:100,100,-40,0,0,0.138949 -12063,3410:101,101,-40,0,0,0.135422 -12064,3410:102,102,-40,0,0,0.135122 -12065,3410:103,103,-40,0,0,0.136231 -12066,3410:104,104,-40,0,0,0.139725 -12067,3410:205,105,-40,0,0,0.142452 -12068,3410:206,106,-40,0,0,0.140629 -12069,3410:207,107,-40,0,0,0.132278 -12070,3410:208,108,-40,0,0,0.139097 -12071,3410:209,109,-40,0,0,0.140022 -12072,3411:100,110,-40,0,0,0.138961 -12073,3411:101,111,-40,0,0,0.142038 -12074,3411:102,112,-40,0,0,0.139787 -12075,3411:103,113,-40,0,0,0.148414 -12076,3411:104,114,-40,0,0,0.151836 -12077,3411:205,115,-40,0,0,0.152353 -12078,3411:206,116,-40,0,0,0.153551 -12079,3411:207,117,-40,0,0,0.153257 -12080,3411:208,118,-40,0,0,0.159037 -12081,3411:209,119,-40,0,0,0.161151 -12082,3412:100,120,-40,0,0,0.166584 -12083,3412:101,121,-40,0,0,0.186226 -12084,3412:102,122,-40,0,0,0.178853 -12085,3412:103,123,-40,0,0,0.175052 -12086,3412:104,124,-40,0,0,0.170864 -12087,3412:205,125,-40,0,0,0.168922 -12088,3412:206,126,-40,0,0,0.166043 -12089,3412:207,127,-40,0,0,0.184907 -12090,3412:208,128,-40,0,0,0.187397 -12091,3412:209,129,-40,0,0,0.187867 -12092,3413:100,130,-40,0,0,0.188243 -12093,3413:101,131,-40,0,0,0.19161 -12094,3413:102,132,-40,0,0,0.192599 -12095,3413:103,133,-40,0,0,0.189187 -12096,3413:104,134,-40,0,0,0.181906 -12097,3413:205,135,-40,0,0,0.188118 -12098,3413:206,136,-40,0,0,0.191181 -12099,3413:207,137,-40,0,0,0.192791 -12100,3413:208,138,-40,0,0,0.183563 -12101,3413:209,139,-40,0,0,0.170587 -12102,3414:100,140,-40,0,0,0.187491 -12103,3414:101,141,-40,0,0,0.199202 -12104,3414:102,142,-40,0,0,0.197421 -12105,3414:103,143,-40,0,0,0.186523 -12106,3414:104,144,-40,0,0,0.170907 -12107,3414:205,145,-40,0,0,0.178325 -12108,3414:206,146,-40,0,0,0.183333 -12109,3414:207,147,-40,0,0,0.198498 -12110,3414:208,148,-40,0,0,0.205067 -12111,3414:209,149,-40,0,0,0.203364 -12112,3415:100,150,-40,0,0,0.196349 -12113,3415:101,151,-40,0,0,0.191181 -12114,3415:102,152,-40,0,0,0.187084 -12115,3415:103,153,-40,0,0,0.215977 -12116,3415:104,154,-40,0,0,0.211094 -12117,3415:205,155,-40,0,0,0.207794 -12118,3415:206,156,-40,0,0,0.215838 -12119,3415:207,157,-40,0,0,0.209933 -12120,3415:208,158,-40,0,0,0.208031 -12121,3415:209,159,-40,0,0,0.205788 -12122,3416:100,160,-40,0,0,0.203314 -12123,3416:101,161,-40,0,0,0.202799 -12124,3416:102,162,-40,0,0,0.200846 -12125,3416:103,163,-40,0,0,0.200203 -12126,3416:104,164,-40,0,0,0.200598 -12127,3416:205,165,-40,0,0,0.198383 -12128,3416:206,166,-40,0,0,0.202019 -12129,3416:207,167,-40,0,0,0.195362 -12130,3416:208,168,-40,0,0,0.193624 -12131,3416:209,169,-40,0,0,0.190451 -12132,3417:100,170,-40,0,0,0.190467 -12133,3417:101,171,-40,0,0,0.189045 -12134,3417:102,172,-40,0,0,0.187569 -12135,3417:103,173,-40,0,0,0.185884 -12136,3417:104,174,-40,0,0,0.184783 -12137,3417:205,175,-40,0,0,0.184535 -12138,3417:206,176,-40,0,0,0.182396 -12139,3417:207,177,-40,0,0,0.179593 -12140,3417:208,178,-40,0,0,0.179987 -12141,3417:209,179,-40,0,0,0.180033 -12142,3418:100,180,-40,0,0,0.180336 -12143,5318:390,-180,-39,0,0,0.18531 -12144,5317:499,-179,-39,0,0,0.177694 -12145,5317:498,-178,-39,0,0,0.179336 -12146,5317:497,-177,-39,0,0,0.204515 -12147,5317:496,-176,-39,0,0,0.211934 -12148,5317:495,-175,-39,0,0,0.209711 -12149,5317:394,-174,-39,0,0,0.205301 -12150,5317:393,-173,-39,0,0,0.216186 -12151,5317:392,-172,-39,0,0,0.224856 -12152,5317:391,-171,-39,0,0,0.218072 -12153,5317:390,-170,-39,0,0,0.216952 -12154,5316:499,-169,-39,0,0,0.222644 -12155,5316:498,-168,-39,0,0,0.228222 -12156,5316:497,-167,-39,0,0,0.227138 -12157,5316:496,-166,-39,0,0,0.222608 -12158,5316:495,-165,-39,0,0,0.216848 -12159,5316:394,-164,-39,0,0,0.221614 -12160,5316:393,-163,-39,0,0,0.224087 -12161,5316:392,-162,-39,0,0,0.232999 -12162,5316:391,-161,-39,0,0,0.24431 -12163,5316:390,-160,-39,0,0,0.240367 -12164,5315:499,-159,-39,0,0,0.233238 -12165,5315:498,-158,-39,0,0,0.239113 -12166,5315:497,-157,-39,0,0,0.237881 -12167,5315:496,-156,-39,0,0,0.243155 -12168,5315:495,-155,-39,0,0,0.235154 -12169,5315:394,-154,-39,0,0,0.234194 -12170,5315:393,-153,-39,0,0,0.234858 -12171,5315:392,-152,-39,0,0,0.238515 -12172,5315:391,-151,-39,0,0,0.242833 -12173,5315:390,-150,-39,0,0,0.243401 -12174,5314:499,-149,-39,0,0,0.239973 -12175,5314:498,-148,-39,0,0,0.241269 -12176,5314:497,-147,-39,0,0,0.244728 -12177,5314:496,-146,-39,0,0,0.244291 -12178,5314:495,-145,-39,0,0,0.241871 -12179,5314:394,-144,-39,0,0,0.242192 -12180,5314:393,-143,-39,0,0,0.242381 -12181,5314:392,-142,-39,0,0,0.242267 -12182,5314:391,-141,-39,0,0,0.242211 -12183,5314:390,-140,-39,0,0,0.239356 -12184,5313:499,-139,-39,0,0,0.237788 -12185,5313:498,-138,-39,0,0,0.238049 -12186,5313:497,-137,-39,0,0,0.235801 -12187,5313:496,-136,-39,0,0,0.232797 -12188,5313:495,-135,-39,0,0,0.231551 -12189,5313:394,-134,-39,0,0,0.229111 -12190,5313:393,-133,-39,0,0,0.230565 -12191,5313:392,-132,-39,0,0,0.231643 -12192,5313:391,-131,-39,0,0,0.230383 -12193,5313:390,-130,-39,0,0,0.230347 -12194,5312:499,-129,-39,0,0,0.229892 -12195,5312:498,-128,-39,0,0,0.230165 -12196,5312:497,-127,-39,0,0,0.230274 -12197,5312:496,-126,-39,0,0,0.229328 -12198,5312:495,-125,-39,0,0,0.225933 -12199,5312:394,-124,-39,0,0,0.219952 -12200,5312:393,-123,-39,0,0,0.215369 -12201,5312:392,-122,-39,0,0,0.21556 -12202,5312:391,-121,-39,0,0,0.213327 -12203,5312:390,-120,-39,0,0,0.216047 -12204,5311:499,-119,-39,0,0,0.218668 -12205,5311:498,-118,-39,0,0,0.217145 -12206,5311:497,-117,-39,0,0,0.215264 -12207,5311:496,-116,-39,0,0,0.212569 -12208,5311:495,-115,-39,0,0,0.206141 -12209,5311:394,-114,-39,0,0,0.200105 -12210,5311:393,-113,-39,0,0,0.197438 -12211,5311:392,-112,-39,0,0,0.194717 -12212,5311:391,-111,-39,0,0,0.203481 -12213,5311:390,-110,-39,0,0,0.204917 -12214,5310:499,-109,-39,0,0,0.200549 -12215,5310:498,-108,-39,0,0,0.194717 -12216,5310:497,-107,-39,0,0,0.19356 -12217,5310:496,-106,-39,0,0,0.196073 -12218,5310:495,-105,-39,0,0,0.195863 -12219,5310:394,-104,-39,0,0,0.192935 -12220,5310:393,-103,-39,0,0,0.190562 -12221,5310:392,-102,-39,0,0,0.187178 -12222,5310:391,-101,-39,0,0,0.189282 -12223,5310:390,-100,-39,0,0,0.187992 -12224,5309:499,-99,-39,0,0,0.18435 -12225,5309:498,-98,-39,0,0,0.184134 -12226,5309:497,-97,-39,0,0,0.183102 -12227,5309:496,-96,-39,0,0,0.181753 -12228,5309:495,-95,-39,0,0,0.18261 -12229,5309:394,-94,-39,0,0,0.183163 -12230,5309:393,-93,-39,0,0,0.182994 -12231,5309:392,-92,-39,0,0,0.183225 -12232,5309:391,-91,-39,0,0,0.18435 -12233,5309:390,-90,-39,0,0,0.185511 -12234,5308:499,-89,-39,0,0,0.185635 -12235,5308:498,-88,-39,0,0,0.185698 -12236,5308:497,-87,-39,0,0,0.184644 -12237,5308:496,-86,-39,0,0,0.180291 -12238,5308:495,-85,-39,0,0,0.181554 -12239,5308:394,-84,-39,0,0,0.17973 -12240,5308:393,-83,-39,0,0,0.182994 -12241,5308:392,-82,-39,0,0,0.191674 -12242,5308:391,-81,-39,0,0,0.189424 -12243,5308:390,-80,-39,0,0,0.194894 -12244,5307:499,-79,-39,0,0,0.192631 -12245,5307:498,-78,-39,0,0,0.196025 -12246,5307:497,-77,-39,0,0,0.195184 -12247,5307:496,-76,-39,0,0,0.208539 -12248,5306:497,-67,-39,0,0,0.223998 -12249,5306:496,-66,-39,0,0,0.211026 -12250,5306:495,-65,-39,0,0,0.205268 -12251,5306:394,-64,-39,0,0,0.199284 -12252,5306:393,-63,-39,0,0,0.199202 -12253,5306:392,-62,-39,0,0,0.19953 -12254,5306:391,-61,-39,0,0,0.206899 -12255,5306:390,-60,-39,0,0,0.199169 -12256,5305:499,-59,-39,0,0,0.188134 -12257,5305:498,-58,-39,0,0,0.177694 -12258,5305:497,-57,-39,0,0,0.173 -12259,5305:496,-56,-39,0,0,0.163035 -12260,5305:495,-55,-39,0,0,0.153204 -12261,5305:394,-54,-39,0,0,0.165475 -12262,5305:393,-53,-39,0,0,0.205654 -12263,5305:392,-52,-39,0,0,0.210872 -12264,5305:391,-51,-39,0,0,0.217284 -12265,5305:390,-50,-39,0,0,0.219037 -12266,5304:499,-49,-39,0,0,0.211162 -12267,5304:498,-48,-39,0,0,0.207658 -12268,5304:497,-47,-39,0,0,0.199957 -12269,5304:496,-46,-39,0,0,0.184149 -12270,5304:495,-45,-39,0,0,0.166713 -12271,5304:394,-44,-39,0,0,0.172926 -12272,5304:393,-43,-39,0,0,0.17979 -12273,5304:392,-42,-39,0,0,0.154971 -12274,5304:391,-41,-39,0,0,0.15335 -12275,5304:390,-40,-39,0,0,0.163554 -12276,5303:499,-39,-39,0,0,0.163231 -12277,5303:498,-38,-39,0,0,0.156701 -12278,5303:497,-37,-39,0,0,0.150399 -12279,5303:496,-36,-39,0,0,0.15107 -12280,5303:495,-35,-39,0,0,0.154662 -12281,5303:394,-34,-39,0,0,0.163863 -12282,5303:393,-33,-39,0,0,0.163554 -12283,5303:392,-32,-39,0,0,0.161749 -12284,5303:391,-31,-39,0,0,0.154837 -12285,5303:390,-30,-39,0,0,0.152685 -12286,5302:499,-29,-39,0,0,0.150373 -12287,5302:498,-28,-39,0,0,0.146889 -12288,5302:497,-27,-39,0,0,0.142439 -12289,5302:496,-26,-39,0,0,0.155956 -12290,5302:495,-25,-39,0,0,0.156606 -12291,5302:394,-24,-39,0,0,0.149221 -12292,5302:393,-23,-39,0,0,0.143965 -12293,5302:392,-22,-39,0,0,0.14977 -12294,5302:391,-21,-39,0,0,0.156254 -12295,5302:390,-20,-39,0,0,0.156227 -12296,5301:499,-19,-39,0,0,0.15173 -12297,5301:498,-18,-39,0,0,0.155039 -12298,5301:497,-17,-39,0,0,0.166541 -12299,5301:496,-16,-39,0,0,0.163554 -12300,5301:495,-15,-39,0,0,0.151109 -12301,5301:394,-14,-39,0,0,0.151268 -12302,5301:393,-13,-39,0,0,0.150622 -12303,5301:392,-12,-39,0,0,0.149091 -12304,5301:391,-11,-39,0,0,0.141638 -12305,5301:390,-10,-39,0,0,0.135459 -12306,5300:499,-9,-39,0,0,0.12967 -12307,5300:498,-8,-39,0,0,0.130822 -12308,5300:497,-7,-39,0,0,0.142101 -12309,5300:496,-6,-39,0,0,0.166941 -12310,5300:495,-5,-39,0,0,0.169442 -12311,5300:394,-4,-39,0,0,0.164173 -12312,5300:393,-3,-39,0,0,0.150268 -12313,5300:392,-2,-39,0,0,0.153337 -12314,5300:391,-1,-39,0,0,0.156159 -12315,3300:391,0,-39,0,0,0.15775 -12316,3300:391,1,-39,0,0,0.150124 -12317,3300:392,2,-39,0,0,0.142791 -12318,3300:393,3,-39,0,0,0.151202 -12319,3300:394,4,-39,0,0,0.146722 -12320,3300:495,5,-39,0,0,0.13703 -12321,3300:496,6,-39,0,0,0.136509 -12322,3300:497,7,-39,0,0,0.135459 -12323,3300:498,8,-39,0,0,0.118488 -12324,3300:499,9,-39,0,0,0.116232 -12325,3301:390,10,-39,0,0,0.117889 -12326,3301:391,11,-39,0,0,0.127952 -12327,3301:392,12,-39,0,0,0.139146 -12328,3301:393,13,-39,0,0,0.134081 -12329,3301:394,14,-39,0,0,0.132313 -12330,3301:495,15,-39,0,0,0.132738 -12331,3301:496,16,-39,0,0,0.136315 -12332,3301:497,17,-39,0,0,0.130846 -12333,3301:498,18,-39,0,0,0.124239 -12334,3301:499,19,-39,0,0,0.132467 -12335,3302:390,20,-39,0,0,0.128768 -12336,3302:391,21,-39,0,0,0.124698 -12337,3302:392,22,-39,0,0,0.131936 -12338,3302:393,23,-39,0,0,0.11988 -12339,3302:394,24,-39,0,0,0.125812 -12340,3302:495,25,-39,0,0,0.126515 -12341,3302:496,26,-39,0,0,0.122528 -12342,3302:497,27,-39,0,0,0.129311 -12343,3302:498,28,-39,0,0,0.135989 -12344,3302:499,29,-39,0,0,0.137932 -12345,3303:390,30,-39,0,0,0.120379 -12346,3303:391,31,-39,0,0,0.115254 -12347,3303:392,32,-39,0,0,0.126856 -12348,3303:393,33,-39,0,0,0.128044 -12349,3303:394,34,-39,0,0,0.126515 -12350,3303:495,35,-39,0,0,0.127221 -12351,3303:496,36,-39,0,0,0.128274 -12352,3303:497,37,-39,0,0,0.131877 -12353,3303:498,38,-39,0,0,0.130228 -12354,3303:499,39,-39,0,0,0.122219 -12355,3304:390,40,-39,0,0,0.126016 -12356,3304:391,41,-39,0,0,0.13216 -12357,3304:392,42,-39,0,0,0.133581 -12358,3304:393,43,-39,0,0,0.133735 -12359,3304:394,44,-39,0,0,0.122119 -12360,3304:495,45,-39,0,0,0.123547 -12361,3304:496,46,-39,0,0,0.123882 -12362,3304:497,47,-39,0,0,0.125598 -12363,3304:498,48,-39,0,0,0.128469 -12364,3304:499,49,-39,0,0,0.127552 -12365,3305:390,50,-39,0,0,0.125609 -12366,3305:391,51,-39,0,0,0.126424 -12367,3305:392,52,-39,0,0,0.129358 -12368,3305:393,53,-39,0,0,0.13307 -12369,3305:394,54,-39,0,0,0.135977 -12370,3305:495,55,-39,0,0,0.133569 -12371,3305:496,56,-39,0,0,0.124373 -12372,3305:497,57,-39,0,0,0.123081 -12373,3305:498,58,-39,0,0,0.127792 -12374,3305:499,59,-39,0,0,0.125666 -12375,3306:390,60,-39,0,0,0.130158 -12376,3306:391,61,-39,0,0,0.127872 -12377,3306:392,62,-39,0,0,0.120281 -12378,3306:393,63,-39,0,0,0.119457 -12379,3306:394,64,-39,0,0,0.119123 -12380,3306:495,65,-39,0,0,0.118746 -12381,3306:496,66,-39,0,0,0.12681 -12382,3306:497,67,-39,0,0,0.122561 -12383,3306:498,68,-39,0,0,0.121044 -12384,3306:499,69,-39,0,0,0.124328 -12385,3307:390,70,-39,0,0,0.128182 -12386,3307:391,71,-39,0,0,0.113309 -12387,3307:392,72,-39,0,0,0.118864 -12388,3307:394,74,-39,0,0,0.121416 -12389,3307:495,75,-39,0,0,0.12168 -12390,3307:496,76,-39,0,0,0.13825 -12391,3307:497,77,-39,0,0,0.144841 -12392,3307:498,78,-39,0,0,0.147534 -12393,3307:499,79,-39,0,0,0.153657 -12394,3308:390,80,-39,0,0,0.15011 -12395,3308:391,81,-39,0,0,0.146105 -12396,3308:392,82,-39,0,0,0.148675 -12397,3308:393,83,-39,0,0,0.161721 -12398,3308:394,84,-39,0,0,0.159161 -12399,3308:495,85,-39,0,0,0.170675 -12400,3308:496,86,-39,0,0,0.177679 -12401,3308:497,87,-39,0,0,0.180519 -12402,3308:498,88,-39,0,0,0.173647 -12403,3308:499,89,-39,0,0,0.170602 -12404,3309:390,90,-39,0,0,0.176004 -12405,3309:391,91,-39,0,0,0.179442 -12406,3309:392,92,-39,0,0,0.181982 -12407,3309:393,93,-39,0,0,0.168087 -12408,3309:394,94,-39,0,0,0.161791 -12409,3309:495,95,-39,0,0,0.159946 -12410,3309:496,96,-39,0,0,0.156796 -12411,3309:497,97,-39,0,0,0.156281 -12412,3309:498,98,-39,0,0,0.155214 -12413,3309:499,99,-39,0,0,0.147715 -12414,3310:390,100,-39,0,0,0.140654 -12415,3310:391,101,-39,0,0,0.141301 -12416,3310:392,102,-39,0,0,0.143081 -12417,3310:393,103,-39,0,0,0.146169 -12418,3310:394,104,-39,0,0,0.148557 -12419,3310:495,105,-39,0,0,0.142879 -12420,3310:496,106,-39,0,0,0.139515 -12421,3310:497,107,-39,0,0,0.153952 -12422,3310:498,108,-39,0,0,0.155079 -12423,3310:499,109,-39,0,0,0.147534 -12424,3311:390,110,-39,0,0,0.147935 -12425,3311:391,111,-39,0,0,0.155402 -12426,3311:392,112,-39,0,0,0.172632 -12427,3311:393,113,-39,0,0,0.182166 -12428,3311:394,114,-39,0,0,0.184334 -12429,3311:495,115,-39,0,0,0.165404 -12430,3311:496,116,-39,0,0,0.160776 -12431,3311:497,117,-39,0,0,0.182764 -12432,3311:498,118,-39,0,0,0.188338 -12433,3311:499,119,-39,0,0,0.176586 -12434,3312:390,120,-39,0,0,0.161679 -12435,3312:391,121,-39,0,0,0.186569 -12436,3312:392,122,-39,0,0,0.184118 -12437,3312:393,123,-39,0,0,0.188416 -12438,3312:394,124,-39,0,0,0.187851 -12439,3312:495,125,-39,0,0,0.172017 -12440,3312:496,126,-39,0,0,0.179503 -12441,3312:497,127,-39,0,0,0.185698 -12442,3312:498,128,-39,0,0,0.197275 -12443,3312:499,129,-39,0,0,0.198858 -12444,3313:390,130,-39,0,0,0.189834 -12445,3313:391,131,-39,0,0,0.191754 -12446,3313:392,132,-39,0,0,0.196657 -12447,3313:393,133,-39,0,0,0.202433 -12448,3313:394,134,-39,0,0,0.19554 -12449,3313:495,135,-39,0,0,0.191833 -12450,3313:496,136,-39,0,0,0.19721 -12451,3313:497,137,-39,0,0,0.205687 -12452,3313:498,138,-39,0,0,0.206646 -12453,3313:499,139,-39,0,0,0.192967 -12454,3314:390,140,-39,0,0,0.191722 -12455,3314:391,141,-39,0,0,0.204598 -12456,3314:392,142,-39,0,0,0.202699 -12457,3314:393,143,-39,0,0,0.198759 -12458,3314:394,144,-39,0,0,0.199907 -12459,3314:495,145,-39,0,0,0.201754 -12460,3314:496,146,-39,0,0,0.204231 -12461,3314:497,147,-39,0,0,0.211522 -12462,3314:498,148,-39,0,0,0.207017 -12463,3314:499,149,-39,0,0,0.203364 -12464,3315:390,150,-39,0,0,0.199349 -12465,3315:391,151,-39,0,0,0.213103 -12466,3315:392,152,-39,0,0,0.235912 -12467,3315:393,153,-39,0,0,0.213172 -12468,3315:394,154,-39,0,0,0.213655 -12469,3315:495,155,-39,0,0,0.214727 -12470,3315:496,156,-39,0,0,0.213948 -12471,3315:497,157,-39,0,0,0.210376 -12472,3315:498,158,-39,0,0,0.207422 -12473,3315:499,159,-39,0,0,0.207084 -12474,3316:390,160,-39,0,0,0.205973 -12475,3316:391,161,-39,0,0,0.203198 -12476,3316:392,162,-39,0,0,0.209916 -12477,3316:393,163,-39,0,0,0.203847 -12478,3316:394,164,-39,0,0,0.208895 -12479,3316:495,165,-39,0,0,0.205687 -12480,3316:496,166,-39,0,0,0.203297 -12481,3316:497,167,-39,0,0,0.214762 -12482,3316:498,168,-39,0,0,0.202516 -12483,3316:499,169,-39,0,0,0.197372 -12484,3317:390,170,-39,0,0,0.193832 -12485,3317:391,171,-39,0,0,0.192631 -12486,3317:392,172,-39,0,0,0.190927 -12487,3317:393,173,-39,0,0,0.190008 -12488,3317:394,174,-39,0,0,0.189424 -12489,3317:495,175,-39,0,0,0.187616 -12490,3317:496,176,-39,0,0,0.185092 -12491,3317:497,177,-39,0,0,0.184272 -12492,3317:498,178,-39,0,0,0.190927 -12493,3317:499,179,-39,0,0,0.190609 -12494,3318:390,180,-39,0,0,0.18531 -12495,5318:380,-180,-38,0,0,0.196609 -12496,5317:489,-179,-38,0,0,0.185589 -12497,5317:488,-178,-38,0,0,0.18017 -12498,5317:487,-177,-38,0,0,0.21226 -12499,5317:486,-176,-38,0,0,0.224749 -12500,5317:485,-175,-38,0,0,0.224516 -12501,5317:384,-174,-38,0,0,0.216709 -12502,5317:383,-173,-38,0,0,0.223962 -12503,5317:382,-172,-38,0,0,0.223748 -12504,5317:381,-171,-38,0,0,0.215091 -12505,5317:380,-170,-38,0,0,0.212965 -12506,5316:489,-169,-38,0,0,0.240949 -12507,5316:488,-168,-38,0,0,0.233734 -12508,5316:487,-167,-38,0,0,0.224749 -12509,5316:486,-166,-38,0,0,0.232558 -12510,5316:485,-165,-38,0,0,0.230402 -12511,5316:384,-164,-38,0,0,0.223748 -12512,5316:383,-163,-38,0,0,0.225161 -12513,5316:382,-162,-38,0,0,0.233568 -12514,5316:381,-161,-38,0,0,0.248334 -12515,5316:380,-160,-38,0,0,0.243155 -12516,5315:489,-159,-38,0,0,0.242493 -12517,5315:488,-158,-38,0,0,0.245317 -12518,5315:487,-157,-38,0,0,0.243249 -12519,5315:486,-156,-38,0,0,0.249333 -12520,5315:485,-155,-38,0,0,0.250566 -12521,5315:384,-154,-38,0,0,0.248776 -12522,5315:383,-153,-38,0,0,0.248527 -12523,5315:382,-152,-38,0,0,0.247511 -12524,5315:381,-151,-38,0,0,0.252113 -12525,5315:380,-150,-38,0,0,0.253626 -12526,5314:489,-149,-38,0,0,0.250026 -12527,5314:488,-148,-38,0,0,0.251745 -12528,5314:487,-147,-38,0,0,0.252713 -12529,5314:486,-146,-38,0,0,0.251048 -12530,5314:485,-145,-38,0,0,0.248584 -12531,5314:384,-144,-38,0,0,0.247893 -12532,5314:383,-143,-38,0,0,0.24941 -12533,5314:382,-142,-38,0,0,0.249583 -12534,5314:381,-141,-38,0,0,0.245964 -12535,5314:380,-140,-38,0,0,0.247645 -12536,5313:489,-139,-38,0,0,0.246975 -12537,5313:488,-138,-38,0,0,0.245107 -12538,5313:487,-137,-38,0,0,0.241852 -12539,5313:486,-136,-38,0,0,0.2393 -12540,5313:485,-135,-38,0,0,0.23915 -12541,5313:384,-134,-38,0,0,0.237193 -12542,5313:383,-133,-38,0,0,0.233293 -12543,5313:382,-132,-38,0,0,0.235986 -12544,5313:381,-131,-38,0,0,0.238384 -12545,5313:380,-130,-38,0,0,0.240949 -12546,5312:489,-129,-38,0,0,0.239486 -12547,5312:488,-128,-38,0,0,0.237211 -12548,5312:487,-127,-38,0,0,0.23532 -12549,5312:486,-126,-38,0,0,0.233458 -12550,5312:485,-125,-38,0,0,0.23104 -12551,5312:384,-124,-38,0,0,0.228168 -12552,5312:383,-123,-38,0,0,0.226526 -12553,5312:382,-122,-38,0,0,0.227012 -12554,5312:381,-121,-38,0,0,0.230347 -12555,5312:380,-120,-38,0,0,0.231058 -12556,5311:489,-119,-38,0,0,0.225556 -12557,5311:488,-118,-38,0,0,0.222413 -12558,5311:487,-117,-38,0,0,0.219037 -12559,5311:486,-116,-38,0,0,0.217792 -12560,5311:485,-115,-38,0,0,0.219301 -12561,5311:384,-114,-38,0,0,0.214865 -12562,5311:383,-113,-38,0,0,0.206781 -12563,5311:382,-112,-38,0,0,0.207794 -12564,5311:381,-111,-38,0,0,0.216133 -12565,5311:380,-110,-38,0,0,0.207185 -12566,5310:489,-109,-38,0,0,0.204431 -12567,5310:488,-108,-38,0,0,0.201357 -12568,5310:487,-107,-38,0,0,0.200203 -12569,5310:486,-106,-38,0,0,0.202152 -12570,5310:485,-105,-38,0,0,0.200549 -12571,5310:384,-104,-38,0,0,0.197943 -12572,5310:383,-103,-38,0,0,0.19554 -12573,5310:382,-102,-38,0,0,0.194556 -12574,5310:381,-101,-38,0,0,0.194943 -12575,5310:380,-100,-38,0,0,0.195362 -12576,5309:489,-99,-38,0,0,0.194862 -12577,5309:488,-98,-38,0,0,0.191961 -12578,5309:487,-97,-38,0,0,0.190134 -12579,5309:486,-96,-38,0,0,0.189802 -12580,5309:485,-95,-38,0,0,0.19169 -12581,5309:384,-94,-38,0,0,0.191626 -12582,5309:383,-93,-38,0,0,0.18966 -12583,5309:382,-92,-38,0,0,0.188102 -12584,5309:381,-91,-38,0,0,0.194459 -12585,5309:380,-90,-38,0,0,0.192487 -12586,5308:489,-89,-38,0,0,0.199481 -12587,5308:488,-88,-38,0,0,0.191499 -12588,5308:487,-87,-38,0,0,0.192471 -12590,5308:485,-85,-38,0,0,0.194266 -12591,5308:384,-84,-38,0,0,0.191738 -12592,5308:383,-83,-38,0,0,0.195944 -12593,5308:382,-82,-38,0,0,0.197193 -12594,5308:381,-81,-38,0,0,0.202516 -12595,5308:380,-80,-38,0,0,0.204398 -12596,5307:489,-79,-38,0,0,0.205687 -12597,5307:488,-78,-38,0,0,0.203015 -12598,5307:487,-77,-38,0,0,0.200582 -12599,5307:486,-76,-38,0,0,0.213413 -12600,5307:485,-75,-38,0,0,0.22227 -12601,5306:485,-65,-38,0,0,0.227085 -12602,5306:384,-64,-38,0,0,0.211436 -12603,5306:383,-63,-38,0,0,0.206377 -12604,5306:382,-62,-38,0,0,0.206494 -12605,5306:381,-61,-38,0,0,0.213241 -12606,5306:380,-60,-38,0,0,0.201837 -12607,5305:489,-59,-38,0,0,0.173809 -12608,5305:488,-58,-38,0,0,0.175008 -12609,5305:487,-57,-38,0,0,0.176392 -12610,5305:486,-56,-38,0,0,0.181295 -12611,5305:485,-55,-38,0,0,0.19512 -12612,5305:384,-54,-38,0,0,0.204214 -12613,5305:383,-53,-38,0,0,0.223124 -12614,5305:382,-52,-38,0,0,0.226526 -12615,5305:381,-51,-38,0,0,0.249891 -12616,5305:380,-50,-38,0,0,0.251068 -12617,5304:489,-49,-38,0,0,0.227265 -12618,5304:488,-48,-38,0,0,0.21269 -12619,5304:487,-47,-38,0,0,0.218002 -12620,5304:486,-46,-38,0,0,0.209184 -12621,5304:485,-45,-38,0,0,0.20631 -12622,5304:384,-44,-38,0,0,0.203447 -12623,5304:383,-43,-38,0,0,0.201738 -12624,5304:382,-42,-38,0,0,0.202317 -12625,5304:381,-41,-38,0,0,0.200253 -12626,5304:380,-40,-38,0,0,0.19894 -12627,5303:489,-39,-38,0,0,0.196106 -12628,5303:488,-38,-38,0,0,0.19372 -12629,5303:487,-37,-38,0,0,0.190737 -12630,5303:486,-36,-38,0,0,0.188322 -12631,5303:485,-35,-38,0,0,0.175691 -12632,5303:384,-34,-38,0,0,0.159051 -12633,5303:383,-33,-38,0,0,0.156987 -12634,5303:382,-32,-38,0,0,0.156348 -12635,5303:381,-31,-38,0,0,0.154958 -12636,5303:380,-30,-38,0,0,0.156145 -12637,5302:489,-29,-38,0,0,0.156946 -12638,5302:488,-28,-38,0,0,0.152061 -12639,5302:487,-27,-38,0,0,0.154622 -12640,5302:486,-26,-38,0,0,0.165475 -12641,5302:485,-25,-38,0,0,0.16104 -12642,5302:384,-24,-38,0,0,0.160859 -12643,5302:383,-23,-38,0,0,0.15601 -12644,5302:382,-22,-38,0,0,0.152114 -12645,5302:381,-21,-38,0,0,0.163315 -12646,5302:380,-20,-38,0,0,0.175542 -12647,5301:489,-19,-38,0,0,0.161429 -12648,5301:488,-18,-38,0,0,0.175141 -12649,5301:487,-17,-38,0,0,0.179321 -12650,5301:486,-16,-38,0,0,0.166513 -12651,5301:485,-15,-38,0,0,0.156701 -12652,5301:384,-14,-38,0,0,0.152884 -12653,5301:383,-13,-38,0,0,0.148596 -12654,5301:382,-12,-38,0,0,0.142653 -12655,5301:381,-11,-38,0,0,0.142477 -12656,5301:380,-10,-38,0,0,0.136206 -12657,5300:489,-9,-38,0,0,0.132349 -12658,5300:488,-8,-38,0,0,0.139368 -12659,5300:487,-7,-38,0,0,0.150688 -12660,5300:486,-6,-38,0,0,0.161484 -12661,5300:485,-5,-38,0,0,0.16862 -12662,5300:384,-4,-38,0,0,0.167399 -12663,5300:383,-3,-38,0,0,0.161498 -12664,5300:382,-2,-38,0,0,0.158707 -12665,5300:381,-1,-38,0,0,0.159877 -12666,3300:381,0,-38,0,0,0.16295 -12667,3300:381,1,-38,0,0,0.168102 -12668,3300:382,2,-38,0,0,0.158105 -12669,3300:383,3,-38,0,0,0.166299 -12670,3300:384,4,-38,0,0,0.162139 -12671,3300:485,5,-38,0,0,0.148687 -12672,3300:486,6,-38,0,0,0.141513 -12673,3300:487,7,-38,0,0,0.137859 -12674,3300:488,8,-38,0,0,0.134331 -12675,3300:489,9,-38,0,0,0.12535 -12676,3301:380,10,-38,0,0,0.139072 -12677,3301:381,11,-38,0,0,0.155429 -12678,3301:382,12,-38,0,0,0.154219 -12679,3301:383,13,-38,0,0,0.147883 -12680,3301:384,14,-38,0,0,0.141538 -12681,3301:485,15,-38,0,0,0.136775 -12682,3301:486,16,-38,0,0,0.136001 -12683,3301:487,17,-38,0,0,0.133035 -12684,3301:488,18,-38,0,0,0.147172 -12685,3301:489,19,-38,0,0,0.146979 -12686,3302:380,20,-38,0,0,0.148466 -12687,3302:381,21,-38,0,0,0.151307 -12688,3302:382,22,-38,0,0,0.144853 -12689,3302:383,23,-38,0,0,0.129612 -12690,3302:384,24,-38,0,0,0.127175 -12691,3302:485,25,-38,0,0,0.141551 -12692,3302:486,26,-38,0,0,0.145184 -12693,3302:487,27,-38,0,0,0.141776 -12694,3302:488,28,-38,0,0,0.14631 -12695,3302:489,29,-38,0,0,0.141176 -12696,3303:380,30,-38,0,0,0.150137 -12697,3303:381,31,-38,0,0,0.17322 -12698,3303:382,32,-38,0,0,0.174889 -12699,3303:383,33,-38,0,0,0.171418 -12700,3303:384,34,-38,0,0,0.145299 -12701,3303:485,35,-38,0,0,0.126628 -12702,3303:486,36,-38,0,0,0.127209 -12703,3303:487,37,-38,0,0,0.131349 -12704,3303:488,38,-38,0,0,0.13541 -12705,3303:489,39,-38,0,0,0.130671 -12706,3304:380,40,-38,0,0,0.130787 -12707,3304:381,41,-38,0,0,0.132077 -12708,3304:382,42,-38,0,0,0.135386 -12709,3304:383,43,-38,0,0,0.14418 -12710,3304:384,44,-38,0,0,0.140642 -12711,3304:485,45,-38,0,0,0.136509 -12712,3304:486,46,-38,0,0,0.137871 -12713,3304:487,47,-38,0,0,0.137079 -12714,3304:488,48,-38,0,0,0.129856 -12715,3304:489,49,-38,0,0,0.128343 -12716,3305:380,50,-38,0,0,0.130566 -12717,3305:381,51,-38,0,0,0.131302 -12718,3305:382,52,-38,0,0,0.132668 -12719,3305:383,53,-38,0,0,0.136279 -12720,3305:384,54,-38,0,0,0.13703 -12721,3305:485,55,-38,0,0,0.148285 -12722,3305:486,56,-38,0,0,0.137249 -12723,3305:487,57,-38,0,0,0.135531 -12724,3305:488,58,-38,0,0,0.135615 -12725,3305:489,59,-38,0,0,0.133818 -12726,3306:380,60,-38,0,0,0.143081 -12727,3306:381,61,-38,0,0,0.140282 -12728,3306:382,62,-38,0,0,0.124721 -12729,3306:383,63,-38,0,0,0.127472 -12730,3306:384,64,-38,0,0,0.125666 -12731,3306:485,65,-38,0,0,0.125508 -12732,3306:486,66,-38,0,0,0.138103 -12733,3306:487,67,-38,0,0,0.13196 -12734,3306:488,68,-38,0,0,0.12945 -12735,3306:489,69,-38,0,0,0.128538 -12736,3307:380,70,-38,0,0,0.128826 -12737,3307:381,71,-38,0,0,0.118628 -12738,3307:382,72,-38,0,0,0.116528 -12739,3307:384,74,-38,0,0,0.137249 -12740,3307:485,75,-38,0,0,0.143358 -12741,3307:486,76,-38,0,0,0.144472 -12742,3307:487,77,-38,0,0,0.140903 -12743,3307:488,78,-38,0,0,0.140691 -12744,3307:489,79,-38,0,0,0.160859 -12745,3308:380,80,-38,0,0,0.16385 -12746,3308:381,81,-38,0,0,0.169182 -12747,3308:382,82,-38,0,0,0.166 -12748,3308:383,83,-38,0,0,0.173986 -12749,3308:384,84,-38,0,0,0.175661 -12750,3308:485,85,-38,0,0,0.173677 -12751,3308:486,86,-38,0,0,0.177334 -12752,3308:487,87,-38,0,0,0.192631 -12753,3308:488,88,-38,0,0,0.195459 -12754,3308:489,89,-38,0,0,0.195427 -12755,3309:380,90,-38,0,0,0.190419 -12756,3309:381,91,-38,0,0,0.189723 -12757,3309:382,92,-38,0,0,0.182105 -12758,3309:383,93,-38,0,0,0.16677 -12759,3309:384,94,-38,0,0,0.168836 -12760,3309:485,95,-38,0,0,0.161554 -12761,3309:486,96,-38,0,0,0.156267 -12762,3309:487,97,-38,0,0,0.15434 -12763,3309:488,98,-38,0,0,0.154394 -12764,3309:489,99,-38,0,0,0.152685 -12765,3310:380,100,-38,0,0,0.14703 -12766,3310:381,101,-38,0,0,0.153911 -12767,3310:382,102,-38,0,0,0.155214 -12768,3310:383,103,-38,0,0,0.152498 -12769,3310:384,104,-38,0,0,0.1579 -12770,3310:485,105,-38,0,0,0.160624 -12771,3310:486,106,-38,0,0,0.156796 -12772,3310:487,107,-38,0,0,0.165106 -12773,3310:488,108,-38,0,0,0.165177 -12774,3310:489,109,-38,0,0,0.15764 -12775,3311:380,110,-38,0,0,0.170559 -12776,3311:381,111,-38,0,0,0.173868 -12777,3311:382,112,-38,0,0,0.19169 -12778,3311:383,113,-38,0,0,0.200961 -12779,3311:384,114,-38,0,0,0.18632 -12780,3311:485,115,-38,0,0,0.185915 -12781,3311:486,116,-38,0,0,0.18925 -12782,3311:487,117,-38,0,0,0.193864 -12783,3311:488,118,-38,0,0,0.194153 -12784,3311:489,119,-38,0,0,0.198989 -12785,3312:380,120,-38,0,0,0.205201 -12786,3312:381,121,-38,0,0,0.197015 -12787,3312:382,122,-38,0,0,0.183918 -12788,3312:383,123,-38,0,0,0.189487 -12789,3312:384,124,-38,0,0,0.20149 -12790,3312:485,125,-38,0,0,0.19372 -12791,3312:486,126,-38,0,0,0.181036 -12792,3312:487,127,-38,0,0,0.196625 -12793,3312:488,128,-38,0,0,0.214536 -12794,3312:489,129,-38,0,0,0.213017 -12795,3313:380,130,-38,0,0,0.211231 -12796,3313:381,131,-38,0,0,0.209456 -12797,3313:382,132,-38,0,0,0.211848 -12798,3313:383,133,-38,0,0,0.211556 -12799,3313:384,134,-38,0,0,0.207811 -12800,3313:485,135,-38,0,0,0.203631 -12801,3313:486,136,-38,0,0,0.207017 -12802,3313:487,137,-38,0,0,0.213258 -12803,3313:488,138,-38,0,0,0.20932 -12804,3313:489,139,-38,0,0,0.202865 -12805,3314:380,140,-38,0,0,0.205755 -12806,3314:381,141,-38,0,0,0.215577 -12807,3314:382,142,-38,0,0,0.221543 -12808,3314:383,143,-38,0,0,0.221915 -12809,3314:384,144,-38,0,0,0.226706 -12810,3314:485,145,-38,0,0,0.230274 -12811,3314:486,146,-38,0,0,0.223124 -12812,3314:487,147,-38,0,0,0.208912 -12813,3314:488,148,-38,0,0,0.207591 -12814,3314:489,149,-38,0,0,0.204532 -12815,3315:380,150,-38,0,0,0.206107 -12816,3315:381,151,-38,0,0,0.208573 -12817,3315:382,152,-38,0,0,0.222075 -12818,3315:383,153,-38,0,0,0.225196 -12819,3315:384,154,-38,0,0,0.215681 -12820,3315:485,155,-38,0,0,0.225251 -12821,3315:486,156,-38,0,0,0.223178 -12822,3315:487,157,-38,0,0,0.217792 -12823,3315:488,158,-38,0,0,0.211934 -12824,3315:489,159,-38,0,0,0.214225 -12825,3316:380,160,-38,0,0,0.215299 -12826,3316:381,161,-38,0,0,0.220217 -12827,3316:382,162,-38,0,0,0.217652 -12828,3316:383,163,-38,0,0,0.2196 -12829,3316:384,164,-38,0,0,0.222466 -12830,3316:485,165,-38,0,0,0.221224 -12831,3316:486,166,-38,0,0,0.217792 -12832,3316:487,167,-38,0,0,0.225 -12833,3316:488,168,-38,0,0,0.220393 -12834,3316:489,169,-38,0,0,0.208624 -12835,3317:380,170,-38,0,0,0.199809 -12836,3317:381,171,-38,0,0,0.193736 -12837,3317:382,172,-38,0,0,0.191499 -12838,3317:383,173,-38,0,0,0.19126 -12839,3317:384,174,-38,0,0,0.190641 -12840,3317:485,175,-38,0,0,0.188919 -12841,3317:486,176,-38,0,0,0.188919 -12842,3317:487,177,-38,0,0,0.194765 -12843,3317:488,178,-38,0,0,0.196738 -12844,3317:489,179,-38,0,0,0.196852 -12845,3318:380,180,-38,0,0,0.196609 -12846,5318:370,-180,-37,0,0,0.190451 -12847,5317:479,-179,-37,0,0,0.19999 -12848,5317:478,-178,-37,0,0,0.217442 -12849,5317:477,-177,-37,0,0,0.22027 -12850,5317:476,-176,-37,0,0,0.225018 -12851,5317:475,-175,-37,0,0,0.22922 -12852,5317:374,-174,-37,0,0,0.236005 -12853,5317:373,-173,-37,0,0,0.22482 -12854,5317:372,-172,-37,0,0,0.227608 -12855,5317:371,-171,-37,0,0,0.240067 -12856,5317:370,-170,-37,0,0,0.258795 -12857,5316:479,-169,-37,0,0,0.256144 -12858,5316:478,-168,-37,0,0,0.254152 -12859,5316:477,-167,-37,0,0,0.248488 -12860,5316:476,-166,-37,0,0,0.248162 -12861,5316:475,-165,-37,0,0,0.248661 -12862,5316:374,-164,-37,0,0,0.248392 -12863,5316:373,-163,-37,0,0,0.242343 -12864,5316:372,-162,-37,0,0,0.242324 -12865,5316:371,-161,-37,0,0,0.252655 -12866,5316:370,-160,-37,0,0,0.251551 -12867,5315:479,-159,-37,0,0,0.2513 -12868,5315:478,-158,-37,0,0,0.252539 -12869,5315:477,-157,-37,0,0,0.257084 -12870,5315:476,-156,-37,0,0,0.256692 -12871,5315:475,-155,-37,0,0,0.257045 -12872,5315:374,-154,-37,0,0,0.257654 -12873,5315:373,-153,-37,0,0,0.256594 -12874,5315:372,-152,-37,0,0,0.257949 -12875,5315:371,-151,-37,0,0,0.261961 -12876,5315:370,-150,-37,0,0,0.258775 -12877,5314:479,-149,-37,0,0,0.259999 -12878,5314:478,-148,-37,0,0,0.26085 -12879,5314:477,-147,-37,0,0,0.259032 -12880,5314:476,-146,-37,0,0,0.255596 -12881,5314:475,-145,-37,0,0,0.252539 -12882,5314:374,-144,-37,0,0,0.256281 -12883,5314:373,-143,-37,0,0,0.259269 -12884,5314:372,-142,-37,0,0,0.255948 -12885,5314:371,-141,-37,0,0,0.253977 -12886,5314:370,-140,-37,0,0,0.259012 -12887,5313:479,-139,-37,0,0,0.255928 -12888,5313:478,-138,-37,0,0,0.25072 -12889,5313:477,-137,-37,0,0,0.249141 -12890,5313:476,-136,-37,0,0,0.249795 -12891,5313:475,-135,-37,0,0,0.248641 -12892,5313:374,-134,-37,0,0,0.24545 -12893,5313:373,-133,-37,0,0,0.243798 -12894,5313:372,-132,-37,0,0,0.245869 -12895,5313:371,-131,-37,0,0,0.246193 -12896,5313:370,-130,-37,0,0,0.244424 -12897,5312:479,-129,-37,0,0,0.247224 -12898,5312:478,-128,-37,0,0,0.248277 -12899,5312:477,-127,-37,0,0,0.246765 -12900,5312:476,-126,-37,0,0,0.246632 -12901,5312:475,-125,-37,0,0,0.24688 -12902,5312:374,-124,-37,0,0,0.246727 -12903,5312:373,-123,-37,0,0,0.25072 -12904,5312:372,-122,-37,0,0,0.244443 -12905,5312:371,-121,-37,0,0,0.243741 -12906,5312:370,-120,-37,0,0,0.23859 -12907,5311:479,-119,-37,0,0,0.240424 -12908,5311:478,-118,-37,0,0,0.233899 -12909,5311:477,-117,-37,0,0,0.235968 -12910,5311:476,-116,-37,0,0,0.234637 -12911,5311:475,-115,-37,0,0,0.227428 -12912,5311:374,-114,-37,0,0,0.222981 -12913,5311:373,-113,-37,0,0,0.219301 -12914,5311:372,-112,-37,0,0,0.22087 -12915,5311:371,-111,-37,0,0,0.225591 -12916,5311:370,-110,-37,0,0,0.21516 -12917,5310:479,-109,-37,0,0,0.2125 -12918,5310:478,-108,-37,0,0,0.212793 -12919,5310:477,-107,-37,0,0,0.212655 -12920,5310:476,-106,-37,0,0,0.210564 -12921,5310:475,-105,-37,0,0,0.208692 -12922,5310:374,-104,-37,0,0,0.210188 -12923,5310:373,-103,-37,0,0,0.204231 -12924,5310:372,-102,-37,0,0,0.205452 -12925,5310:371,-101,-37,0,0,0.205184 -12926,5310:370,-100,-37,0,0,0.207506 -12927,5309:479,-99,-37,0,0,0.205603 -12928,5309:478,-98,-37,0,0,0.204264 -12929,5309:477,-97,-37,0,0,0.199874 -12930,5309:476,-96,-37,0,0,0.201672 -12931,5309:475,-95,-37,0,0,0.20255 -12932,5309:374,-94,-37,0,0,0.20358 -12933,5309:373,-93,-37,0,0,0.199957 -12934,5309:372,-92,-37,0,0,0.199661 -12935,5309:371,-91,-37,0,0,0.200615 -12936,5309:370,-90,-37,0,0,0.202268 -12937,5308:479,-89,-37,0,0,0.202832 -12938,5308:478,-88,-37,0,0,0.203864 -12939,5308:477,-87,-37,0,0,0.199907 -12940,5308:476,-86,-37,0,0,0.203447 -12941,5308:475,-85,-37,0,0,0.198612 -12942,5308:374,-84,-37,0,0,0.200994 -12943,5308:373,-83,-37,0,0,0.204532 -12944,5308:372,-82,-37,0,0,0.20599 -12945,5308:371,-81,-37,0,0,0.204699 -12946,5308:370,-80,-37,0,0,0.209473 -12947,5307:479,-79,-37,0,0,0.21238 -12948,5307:478,-78,-37,0,0,0.211848 -12949,5307:477,-77,-37,0,0,0.207624 -12950,5307:476,-76,-37,0,0,0.218633 -12951,5307:475,-75,-37,0,0,0.217617 -12952,5306:477,-67,-37,0,0,0.252035 -12953,5306:476,-66,-37,0,0,0.24431 -12954,5306:475,-65,-37,0,0,0.234673 -12955,5306:374,-64,-37,0,0,0.231076 -12956,5306:373,-63,-37,0,0,0.225196 -12957,5306:372,-62,-37,0,0,0.225609 -12958,5306:371,-61,-37,0,0,0.222004 -12959,5306:370,-60,-37,0,0,0.208166 -12960,5305:479,-59,-37,0,0,0.178778 -12961,5305:478,-58,-37,0,0,0.193207 -12962,5305:477,-57,-37,0,0,0.22316 -12963,5305:476,-56,-37,0,0,0.222697 -12964,5305:475,-55,-37,0,0,0.222572 -12965,5305:374,-54,-37,0,0,0.237304 -12966,5305:373,-53,-37,0,0,0.238889 -12967,5305:372,-52,-37,0,0,0.243004 -12968,5305:371,-51,-37,0,0,0.270572 -12969,5305:370,-50,-37,0,0,0.269215 -12970,5304:479,-49,-37,0,0,0.237881 -12971,5304:478,-48,-37,0,0,0.222572 -12972,5304:477,-47,-37,0,0,0.222803 -12973,5304:476,-46,-37,0,0,0.220058 -12974,5304:475,-45,-37,0,0,0.219424 -12975,5304:374,-44,-37,0,0,0.21464 -12976,5304:373,-43,-37,0,0,0.203998 -12977,5304:372,-42,-37,0,0,0.2049 -12978,5304:371,-41,-37,0,0,0.202849 -12979,5304:370,-40,-37,0,0,0.198204 -12980,5303:479,-39,-37,0,0,0.199628 -12981,5303:478,-38,-37,0,0,0.201341 -12982,5303:477,-37,-37,0,0,0.19669 -12983,5303:476,-36,-37,0,0,0.192823 -12984,5303:475,-35,-37,0,0,0.184411 -12985,5303:374,-34,-37,0,0,0.168346 -12986,5303:373,-33,-37,0,0,0.168735 -12987,5303:372,-32,-37,0,0,0.169211 -12988,5303:371,-31,-37,0,0,0.165106 -12989,5303:370,-30,-37,0,0,0.166057 -12990,5302:479,-29,-37,0,0,0.177649 -12991,5302:478,-28,-37,0,0,0.173471 -12992,5302:477,-27,-37,0,0,0.165929 -12993,5302:476,-26,-37,0,0,0.179821 -12994,5302:475,-25,-37,0,0,0.167743 -12995,5302:374,-24,-37,0,0,0.185744 -12996,5302:373,-23,-37,0,0,0.177394 -12997,5302:372,-22,-37,0,0,0.189692 -12998,5302:371,-21,-37,0,0,0.209048 -12999,5302:370,-20,-37,0,0,0.201738 -13000,5301:479,-19,-37,0,0,0.16573 -13001,5301:478,-18,-37,0,0,0.184427 -13002,5301:477,-17,-37,0,0,0.173721 -13003,5301:476,-16,-37,0,0,0.159905 -13004,5301:475,-15,-37,0,0,0.166969 -13005,5301:374,-14,-37,0,0,0.153737 -13006,5301:373,-13,-37,0,0,0.146901 -13007,5301:372,-12,-37,0,0,0.150859 -13008,5301:371,-11,-37,0,0,0.15299 -13009,5301:370,-10,-37,0,0,0.160957 -13010,5300:479,-9,-37,0,0,0.153938 -13011,5300:478,-8,-37,0,0,0.158639 -13012,5300:477,-7,-37,0,0,0.163441 -13013,5300:476,-6,-37,0,0,0.184535 -13014,5300:475,-5,-37,0,0,0.180534 -13015,5300:374,-4,-37,0,0,0.177919 -13016,5300:373,-3,-37,0,0,0.189471 -13017,5300:372,-2,-37,0,0,0.197812 -13018,5300:371,-1,-37,0,0,0.196511 -13019,3300:371,0,-37,0,0,0.181143 -13020,3300:371,1,-37,0,0,0.168648 -13021,3300:372,2,-37,0,0,0.17678 -13022,3300:373,3,-37,0,0,0.174252 -13023,3300:374,4,-37,0,0,0.174622 -13889,3317:455,175,-35,0,0,0.22211 -13024,3300:475,5,-37,0,0,0.166328 -13025,3300:476,6,-37,0,0,0.161415 -13026,3300:477,7,-37,0,0,0.155537 -13027,3300:478,8,-37,0,0,0.156362 -13028,3300:479,9,-37,0,0,0.159257 -13029,3301:370,10,-37,0,0,0.16849 -13030,3301:371,11,-37,0,0,0.167213 -13031,3301:372,12,-37,0,0,0.156444 -13032,3301:373,13,-37,0,0,0.155564 -13033,3301:374,14,-37,0,0,0.162629 -13034,3301:475,15,-37,0,0,0.169023 -13035,3301:476,16,-37,0,0,0.175052 -13036,3301:477,17,-37,0,0,0.1589 -13037,3301:478,18,-37,0,0,0.146464 -13038,3301:479,19,-37,0,0,0.142703 -13039,3302:370,20,-37,0,0,0.148896 -13040,3302:371,21,-37,0,0,0.154904 -13041,3302:372,22,-37,0,0,0.159877 -13042,3302:373,23,-37,0,0,0.159849 -13043,3302:374,24,-37,0,0,0.166143 -13044,3302:475,25,-37,0,0,0.167786 -13045,3302:476,26,-37,0,0,0.165163 -13046,3302:477,27,-37,0,0,0.151558 -13047,3302:478,28,-37,0,0,0.150491 -13048,3302:479,29,-37,0,0,0.163245 -13049,3303:370,30,-37,0,0,0.17587 -13050,3303:371,31,-37,0,0,0.175646 -13051,3303:372,32,-37,0,0,0.174519 -13052,3303:373,33,-37,0,0,0.170864 -13053,3303:374,34,-37,0,0,0.166827 -13054,3303:475,35,-37,0,0,0.15956 -13055,3303:476,36,-37,0,0,0.154474 -13056,3303:477,37,-37,0,0,0.157627 -13057,3303:478,38,-37,0,0,0.156634 -13058,3303:479,39,-37,0,0,0.151241 -13059,3304:370,40,-37,0,0,0.14703 -13060,3304:371,41,-37,0,0,0.149352 -13061,3304:372,42,-37,0,0,0.161081 -13062,3304:373,43,-37,0,0,0.160832 -13063,3304:374,44,-37,0,0,0.161637 -13064,3304:475,45,-37,0,0,0.157859 -13065,3304:476,46,-37,0,0,0.154743 -13066,3304:477,47,-37,0,0,0.150478 -13067,3304:478,48,-37,0,0,0.142301 -13068,3304:479,49,-37,0,0,0.137103 -13069,3305:370,50,-37,0,0,0.137822 -13070,3305:371,51,-37,0,0,0.138789 -13071,3305:372,52,-37,0,0,0.137274 -13072,3305:373,53,-37,0,0,0.133711 -13073,3305:374,54,-37,0,0,0.142088 -13074,3305:475,55,-37,0,0,0.155456 -13075,3305:476,56,-37,0,0,0.148389 -13076,3305:477,57,-37,0,0,0.14249 -13077,3305:478,58,-37,0,0,0.143282 -13078,3305:479,59,-37,0,0,0.14977 -13079,3306:370,60,-37,0,0,0.162265 -13080,3306:371,61,-37,0,0,0.180519 -13081,3306:372,62,-37,0,0,0.146786 -13082,3306:373,63,-37,0,0,0.13426 -13083,3306:374,64,-37,0,0,0.142766 -13084,3306:475,65,-37,0,0,0.128746 -13085,3306:476,66,-37,0,0,0.140518 -13086,3306:477,67,-37,0,0,0.138838 -13087,3306:478,68,-37,0,0,0.139701 -13088,3306:479,69,-37,0,0,0.147883 -13089,3307:370,70,-37,0,0,0.14725 -13090,3307:371,71,-37,0,0,0.146208 -13091,3307:372,72,-37,0,0,0.156823 -13092,3307:374,74,-37,0,0,0.178566 -13093,3307:475,75,-37,0,0,0.18093 -13094,3307:476,76,-37,0,0,0.17584 -13095,3307:477,77,-37,0,0,0.18093 -13096,3307:478,78,-37,0,0,0.176108 -13097,3307:479,79,-37,0,0,0.178898 -13098,3308:370,80,-37,0,0,0.175706 -13099,3308:371,81,-37,0,0,0.180792 -13100,3308:372,82,-37,0,0,0.170602 -13101,3308:373,83,-37,0,0,0.201622 -13102,3308:374,84,-37,0,0,0.191642 -13103,3308:475,85,-37,0,0,0.174312 -13104,3308:476,86,-37,0,0,0.190499 -13105,3308:477,87,-37,0,0,0.199349 -13106,3308:478,88,-37,0,0,0.205352 -13107,3308:479,89,-37,0,0,0.200138 -13108,3309:370,90,-37,0,0,0.18884 -13109,3309:371,91,-37,0,0,0.186741 -13110,3309:372,92,-37,0,0,0.186866 -13111,3309:373,93,-37,0,0,0.184041 -13112,3309:374,94,-37,0,0,0.179593 -13113,3309:475,95,-37,0,0,0.16849 -13114,3309:476,96,-37,0,0,0.16354 -13115,3309:477,97,-37,0,0,0.157914 -13116,3309:478,98,-37,0,0,0.162937 -13117,3309:479,99,-37,0,0,0.170559 -13118,3310:370,100,-37,0,0,0.172354 -13119,3310:371,101,-37,0,0,0.15996 -13120,3310:372,102,-37,0,0,0.170893 -13121,3310:373,103,-37,0,0,0.166927 -13122,3310:374,104,-37,0,0,0.175676 -13123,3310:475,105,-37,0,0,0.181265 -13124,3310:476,106,-37,0,0,0.180853 -13125,3310:477,107,-37,0,0,0.190134 -13126,3310:478,108,-37,0,0,0.190467 -13127,3310:479,109,-37,0,0,0.167241 -13128,3311:370,110,-37,0,0,0.173102 -13129,3311:371,111,-37,0,0,0.20187 -13130,3311:372,112,-37,0,0,0.216047 -13131,3311:373,113,-37,0,0,0.216639 -13132,3311:374,114,-37,0,0,0.202334 -13133,3311:475,115,-37,0,0,0.189329 -13134,3311:476,116,-37,0,0,0.196771 -13135,3311:477,117,-37,0,0,0.201936 -13136,3311:478,118,-37,0,0,0.193543 -13137,3311:479,119,-37,0,0,0.192903 -13138,3312:370,120,-37,0,0,0.211471 -13139,3312:371,121,-37,0,0,0.21711 -13140,3312:372,122,-37,0,0,0.213672 -13141,3312:373,123,-37,0,0,0.213516 -13142,3312:374,124,-37,0,0,0.214156 -13143,3312:475,125,-37,0,0,0.213223 -13144,3312:476,126,-37,0,0,0.210974 -13145,3312:477,127,-37,0,0,0.215091 -13146,3312:478,128,-37,0,0,0.216604 -13147,3312:479,129,-37,0,0,0.214087 -13148,3313:370,130,-37,0,0,0.214259 -13149,3313:371,131,-37,0,0,0.21556 -13150,3313:372,132,-37,0,0,0.214311 -13151,3313:373,133,-37,0,0,0.21238 -13152,3313:374,134,-37,0,0,0.211197 -13153,3313:475,135,-37,0,0,0.212294 -13154,3313:476,136,-37,0,0,0.216988 -13155,3313:477,137,-37,0,0,0.217232 -13156,3313:478,138,-37,0,0,0.211162 -13157,3313:479,139,-37,0,0,0.210478 -13158,3314:370,140,-37,0,0,0.222306 -13159,3314:371,141,-37,0,0,0.220041 -13160,3314:372,142,-37,0,0,0.223552 -13161,3314:373,143,-37,0,0,0.226544 -13162,3314:374,144,-37,0,0,0.231734 -13163,3314:475,145,-37,0,0,0.245564 -13164,3314:476,146,-37,0,0,0.242777 -13165,3314:477,147,-37,0,0,0.219846 -13166,3314:478,148,-37,0,0,0.216621 -13167,3314:479,149,-37,0,0,0.220693 -13168,3315:370,150,-37,0,0,0.232045 -13169,3315:371,151,-37,0,0,0.235912 -13170,3315:372,152,-37,0,0,0.244177 -13171,3315:373,153,-37,0,0,0.242078 -13172,3315:374,154,-37,0,0,0.222981 -13173,3315:475,155,-37,0,0,0.229583 -13174,3315:476,156,-37,0,0,0.223195 -13175,3315:477,157,-37,0,0,0.222057 -13176,3315:478,158,-37,0,0,0.223855 -13177,3315:479,159,-37,0,0,0.229419 -13178,3316:370,160,-37,0,0,0.231022 -13179,3316:371,161,-37,0,0,0.227138 -13180,3316:372,162,-37,0,0,0.232466 -13181,3316:373,163,-37,0,0,0.230383 -13182,3316:374,164,-37,0,0,0.232705 -13183,3316:475,165,-37,0,0,0.234692 -13184,3316:476,166,-37,0,0,0.23532 -13185,3316:477,167,-37,0,0,0.234526 -13186,3316:478,168,-37,0,0,0.244594 -13187,3316:479,169,-37,0,0,0.243079 -13188,3317:370,170,-37,0,0,0.229619 -13189,3317:371,171,-37,0,0,0.201539 -13190,3317:372,172,-37,0,0,0.196885 -13191,3317:373,173,-37,0,0,0.2024 -13192,3317:374,174,-37,0,0,0.201655 -13193,3317:475,175,-37,0,0,0.200549 -13194,3317:476,176,-37,0,0,0.198351 -13195,3317:477,177,-37,0,0,0.195055 -13196,3317:478,178,-37,0,0,0.191531 -13197,3317:479,179,-37,0,0,0.189992 -13198,3318:370,180,-37,0,0,0.190451 -13199,5318:360,-180,-36,0,0,0.22027 -13200,5317:469,-179,-36,0,0,0.222039 -13201,5317:468,-178,-36,0,0,0.223748 -13202,5317:467,-177,-36,0,0,0.227428 -13203,5317:466,-176,-36,0,0,0.22631 -13204,5317:465,-175,-36,0,0,0.223516 -13205,5317:364,-174,-36,0,0,0.226778 -13206,5317:363,-173,-36,0,0,0.242852 -13207,5317:362,-172,-36,0,0,0.237044 -13208,5317:361,-171,-36,0,0,0.244367 -13209,5317:360,-170,-36,0,0,0.253996 -13210,5316:469,-169,-36,0,0,0.262896 -13211,5316:468,-168,-36,0,0,0.252617 -13212,5316:467,-167,-36,0,0,0.249064 -13213,5316:466,-166,-36,0,0,0.251087 -13214,5316:465,-165,-36,0,0,0.25283 -13215,5316:364,-164,-36,0,0,0.251977 -13216,5316:363,-163,-36,0,0,0.25283 -13217,5316:362,-162,-36,0,0,0.257673 -13218,5316:361,-161,-36,0,0,0.258421 -13219,5316:360,-160,-36,0,0,0.258953 -13220,5315:469,-159,-36,0,0,0.258973 -13221,5315:468,-158,-36,0,0,0.260256 -13222,5315:467,-157,-36,0,0,0.265092 -13223,5315:466,-156,-36,0,0,0.267682 -13224,5315:465,-155,-36,0,0,0.268407 -13225,5315:364,-154,-36,0,0,0.268791 -13226,5315:363,-153,-36,0,0,0.272258 -13227,5315:362,-152,-36,0,0,0.27342 -13228,5315:361,-151,-36,0,0,0.270025 -13229,5315:360,-150,-36,0,0,0.268367 -13230,5314:469,-149,-36,0,0,0.272401 -13231,5314:468,-148,-36,0,0,0.270633 -13232,5314:467,-147,-36,0,0,0.270531 -13233,5314:466,-146,-36,0,0,0.270207 -13234,5314:465,-145,-36,0,0,0.268529 -13235,5314:364,-144,-36,0,0,0.269964 -13236,5314:363,-143,-36,0,0,0.274462 -13237,5314:362,-142,-36,0,0,0.275036 -13238,5314:361,-141,-36,0,0,0.272523 -13239,5314:360,-140,-36,0,0,0.272075 -13240,5313:469,-139,-36,0,0,0.269195 -13241,5313:468,-138,-36,0,0,0.264312 -13242,5313:467,-137,-36,0,0,0.260514 -13243,5313:466,-136,-36,0,0,0.260415 -13244,5313:465,-135,-36,0,0,0.258579 -13245,5313:364,-134,-36,0,0,0.257399 -13246,5313:363,-133,-36,0,0,0.25996 -13247,5313:362,-132,-36,0,0,0.261902 -13248,5313:361,-131,-36,0,0,0.258775 -13249,5313:360,-130,-36,0,0,0.255557 -13250,5312:469,-129,-36,0,0,0.255674 -13251,5312:468,-128,-36,0,0,0.260039 -13252,5312:467,-127,-36,0,0,0.263633 -13253,5312:466,-126,-36,0,0,0.261167 -13254,5312:465,-125,-36,0,0,0.26083 -13255,5312:364,-124,-36,0,0,0.259762 -13256,5312:363,-123,-36,0,0,0.259288 -13257,5312:362,-122,-36,0,0,0.256281 -13258,5312:361,-121,-36,0,0,0.253782 -13259,5312:360,-120,-36,0,0,0.252345 -13260,5311:469,-119,-36,0,0,0.247186 -13261,5311:468,-118,-36,0,0,0.248085 -13262,5311:467,-117,-36,0,0,0.244689 -13263,5311:466,-116,-36,0,0,0.24507 -13264,5311:465,-115,-36,0,0,0.243969 -13265,5311:364,-114,-36,0,0,0.241947 -13266,5311:363,-113,-36,0,0,0.232595 -13267,5311:362,-112,-36,0,0,0.233992 -13268,5311:361,-111,-36,0,0,0.2393 -13269,5311:360,-110,-36,0,0,0.230402 -13270,5310:469,-109,-36,0,0,0.225896 -13271,5310:468,-108,-36,0,0,0.22275 -13272,5310:467,-107,-36,0,0,0.223605 -13273,5310:466,-106,-36,0,0,0.226166 -13274,5310:465,-105,-36,0,0,0.221189 -13275,5310:364,-104,-36,0,0,0.219266 -13276,5310:363,-103,-36,0,0,0.222341 -13277,5310:362,-102,-36,0,0,0.214346 -13278,5310:361,-101,-36,0,0,0.215595 -13279,5310:360,-100,-36,0,0,0.219142 -13280,5309:469,-99,-36,0,0,0.219935 -13281,5309:468,-98,-36,0,0,0.216604 -13282,5309:467,-97,-36,0,0,0.213051 -13283,5309:466,-96,-36,0,0,0.210838 -13284,5309:465,-95,-36,0,0,0.211762 -13285,5309:364,-94,-36,0,0,0.213292 -13286,5309:363,-93,-36,0,0,0.215768 -13287,5309:362,-92,-36,0,0,0.216883 -13288,5309:361,-91,-36,0,0,0.211334 -13289,5309:360,-90,-36,0,0,0.216429 -13290,5308:469,-89,-36,0,0,0.214744 -13291,5308:468,-88,-36,0,0,0.211676 -13292,5308:467,-87,-36,0,0,0.212483 -13293,5308:466,-86,-36,0,0,0.209507 -13294,5308:465,-85,-36,0,0,0.21697 -13295,5308:364,-84,-36,0,0,0.214779 -13296,5308:363,-83,-36,0,0,0.211556 -13297,5308:362,-82,-36,0,0,0.212071 -13298,5308:361,-81,-36,0,0,0.215664 -13299,5308:360,-80,-36,0,0,0.216029 -13300,5307:469,-79,-36,0,0,0.2208 -13301,5307:468,-78,-36,0,0,0.220905 -13302,5307:467,-77,-36,0,0,0.219494 -13303,5307:466,-76,-36,0,0,0.218879 -13304,5307:465,-75,-36,0,0,0.230475 -13305,5306:467,-67,-36,0,0,0.25681 -13306,5306:466,-66,-36,0,0,0.251107 -13307,5306:465,-65,-36,0,0,0.253141 -13308,5306:364,-64,-36,0,0,0.249891 -13309,5306:363,-63,-36,0,0,0.243912 -13310,5306:362,-62,-36,0,0,0.247664 -13311,5306:361,-61,-36,0,0,0.246574 -13312,5306:360,-60,-36,0,0,0.220058 -13313,5305:469,-59,-36,0,0,0.186788 -13314,5305:468,-58,-36,0,0,0.214225 -13315,5305:467,-57,-36,0,0,0.264872 -13316,5305:466,-56,-36,0,0,0.28056 -13317,5305:465,-55,-36,0,0,0.305211 -13318,5305:364,-54,-36,0,0,0.342157 -13319,5305:363,-53,-36,0,0,0.349454 -13320,5305:362,-52,-36,0,0,0.300547 -13321,5305:361,-51,-36,0,0,0.279172 -13322,5305:360,-50,-36,0,0,0.243647 -13323,5304:469,-49,-36,0,0,0.233789 -13324,5304:468,-48,-36,0,0,0.235468 -13325,5304:467,-47,-36,0,0,0.235672 -13326,5304:466,-46,-36,0,0,0.22951 -13327,5304:465,-45,-36,0,0,0.222306 -13328,5304:364,-44,-36,0,0,0.217844 -13329,5304:363,-43,-36,0,0,0.214173 -13330,5304:362,-42,-36,0,0,0.210376 -13331,5304:361,-41,-36,0,0,0.210872 -13332,5304:360,-40,-36,0,0,0.210427 -13333,5303:469,-39,-36,0,0,0.200961 -13334,5303:468,-38,-36,0,0,0.202135 -13335,5303:467,-37,-36,0,0,0.200879 -13336,5303:466,-36,-36,0,0,0.193303 -13337,5303:465,-35,-36,0,0,0.186538 -13338,5303:364,-34,-36,0,0,0.182166 -13339,5303:363,-33,-36,0,0,0.19023 -13340,5303:362,-32,-36,0,0,0.189534 -13341,5303:361,-31,-36,0,0,0.176079 -13342,5303:360,-30,-36,0,0,0.172809 -13343,5302:469,-29,-36,0,0,0.185853 -13344,5302:468,-28,-36,0,0,0.178325 -13345,5302:467,-27,-36,0,0,0.178717 -13346,5302:466,-26,-36,0,0,0.193463 -13347,5302:465,-25,-36,0,0,0.178853 -13348,5302:364,-24,-36,0,0,0.195976 -13349,5302:363,-23,-36,0,0,0.199251 -13350,5302:362,-22,-36,0,0,0.209694 -13351,5302:361,-21,-36,0,0,0.208912 -13352,5302:360,-20,-36,0,0,0.200154 -13353,5301:469,-19,-36,0,0,0.17816 -13354,5301:468,-18,-36,0,0,0.198122 -13355,5301:467,-17,-36,0,0,0.18364 -13356,5301:466,-16,-36,0,0,0.162811 -13357,5301:465,-15,-36,0,0,0.169139 -13358,5301:364,-14,-36,0,0,0.171534 -13359,5301:363,-13,-36,0,0,0.172061 -13360,5301:362,-12,-36,0,0,0.187694 -13361,5301:361,-11,-36,0,0,0.184566 -13362,5301:360,-10,-36,0,0,0.181707 -13363,5300:469,-9,-36,0,0,0.182136 -13364,5300:468,-8,-36,0,0,0.18985 -13365,5300:467,-7,-36,0,0,0.193383 -13366,5300:466,-6,-36,0,0,0.19034 -13367,5300:465,-5,-36,0,0,0.197275 -13368,5300:364,-4,-36,0,0,0.187835 -13369,5300:363,-3,-36,0,0,0.184891 -13370,5300:362,-2,-36,0,0,0.203497 -13371,5300:361,-1,-36,0,0,0.198236 -13372,3300:361,0,-36,0,0,0.189882 -13373,3300:361,1,-36,0,0,0.19142 -13374,3300:362,2,-36,0,0,0.187835 -13375,3300:363,3,-36,0,0,0.174963 -13376,3300:364,4,-36,0,0,0.176242 -13377,3300:465,5,-36,0,0,0.180033 -13378,3300:466,6,-36,0,0,0.173854 -13379,3300:467,7,-36,0,0,0.183194 -13380,3300:468,8,-36,0,0,0.193575 -13381,3300:469,9,-36,0,0,0.200483 -13382,3301:360,10,-36,0,0,0.19372 -13383,3301:361,11,-36,0,0,0.17005 -13384,3301:362,12,-36,0,0,0.167227 -13385,3301:363,13,-36,0,0,0.182902 -13386,3301:364,14,-36,0,0,0.184164 -13387,3301:465,15,-36,0,0,0.176138 -13388,3301:466,16,-36,0,0,0.175899 -13389,3301:467,17,-36,0,0,0.17325 -13390,3301:468,18,-36,0,0,0.157054 -13391,3301:469,19,-36,0,0,0.149809 -13392,3302:360,20,-36,0,0,0.155146 -13393,3302:361,21,-36,0,0,0.164103 -13394,3302:362,22,-36,0,0,0.163399 -13395,3302:363,23,-36,0,0,0.165617 -13396,3302:364,24,-36,0,0,0.178325 -13397,3302:465,25,-36,0,0,0.173132 -13398,3302:466,26,-36,0,0,0.180914 -13399,3302:467,27,-36,0,0,0.183363 -13400,3302:468,28,-36,0,0,0.173014 -13401,3302:469,29,-36,0,0,0.165418 -13402,3303:360,30,-36,0,0,0.190435 -13403,3303:361,31,-36,0,0,0.185589 -13404,3303:362,32,-36,0,0,0.172442 -13405,3303:363,33,-36,0,0,0.171958 -13406,3303:364,34,-36,0,0,0.171724 -13407,3303:465,35,-36,0,0,0.173559 -13408,3303:466,36,-36,0,0,0.167614 -13409,3303:467,37,-36,0,0,0.160582 -13410,3303:468,38,-36,0,0,0.160804 -13411,3303:469,39,-36,0,0,0.16354 -13412,3304:360,40,-36,0,0,0.16687 -13413,3304:361,41,-36,0,0,0.177739 -13414,3304:362,42,-36,0,0,0.169081 -13415,3304:363,43,-36,0,0,0.167413 -13416,3304:364,44,-36,0,0,0.164922 -13417,3304:465,45,-36,0,0,0.162419 -13418,3304:466,46,-36,0,0,0.158804 -13419,3304:467,47,-36,0,0,0.149299 -13420,3304:468,48,-36,0,0,0.141901 -13421,3304:469,49,-36,0,0,0.147663 -13422,3305:360,50,-36,0,0,0.141726 -13423,3305:361,51,-36,0,0,0.141276 -13424,3305:362,52,-36,0,0,0.136569 -13425,3305:363,53,-36,0,0,0.141926 -13426,3305:364,54,-36,0,0,0.148791 -13427,3305:465,55,-36,0,0,0.155416 -13428,3305:466,56,-36,0,0,0.195507 -13429,3305:467,57,-36,0,0,0.170399 -13430,3305:468,58,-36,0,0,0.163245 -13431,3305:469,59,-36,0,0,0.203797 -13432,3306:360,60,-36,0,0,0.226112 -13433,3306:361,61,-36,0,0,0.202699 -13434,3306:362,62,-36,0,0,0.207253 -13435,3306:363,63,-36,0,0,0.148609 -13436,3306:364,64,-36,0,0,0.16717 -13437,3306:465,65,-36,0,0,0.188322 -13438,3306:466,66,-36,0,0,0.146156 -13439,3306:467,67,-36,0,0,0.135278 -13440,3306:468,68,-36,0,0,0.141226 -13441,3306:469,69,-36,0,0,0.151479 -13442,3307:360,70,-36,0,0,0.162447 -13443,3307:361,71,-36,0,0,0.181601 -13444,3307:362,72,-36,0,0,0.198907 -13445,3307:364,74,-36,0,0,0.238459 -13446,3307:465,75,-36,0,0,0.238571 -13447,3307:466,76,-36,0,0,0.211008 -13448,3307:467,77,-36,0,0,0.197503 -13449,3307:468,78,-36,0,0,0.200499 -13450,3307:469,79,-36,0,0,0.196252 -13451,3308:360,80,-36,0,0,0.192583 -13452,3308:361,81,-36,0,0,0.196106 -13453,3308:362,82,-36,0,0,0.19417 -13454,3308:363,83,-36,0,0,0.205436 -13455,3308:364,84,-36,0,0,0.198792 -13456,3308:465,85,-36,0,0,0.191992 -13457,3308:466,86,-36,0,0,0.199415 -13458,3308:467,87,-36,0,0,0.211265 -13459,3308:468,88,-36,0,0,0.204749 -13460,3308:469,89,-36,0,0,0.195944 -13461,3309:360,90,-36,0,0,0.187084 -13462,3309:361,91,-36,0,0,0.184891 -13463,3309:362,92,-36,0,0,0.186632 -13464,3309:363,93,-36,0,0,0.184535 -13465,3309:364,94,-36,0,0,0.176064 -13466,3309:465,95,-36,0,0,0.171783 -13467,3309:466,96,-36,0,0,0.175453 -13468,3309:467,97,-36,0,0,0.175646 -13469,3309:468,98,-36,0,0,0.163484 -13470,3309:469,99,-36,0,0,0.176855 -13471,3310:360,100,-36,0,0,0.191133 -13472,3310:361,101,-36,0,0,0.174563 -13473,3310:362,102,-36,0,0,0.173957 -13474,3310:363,103,-36,0,0,0.184365 -13475,3310:364,104,-36,0,0,0.18096 -13476,3310:465,105,-36,0,0,0.17831 -13477,3310:466,106,-36,0,0,0.182733 -13478,3310:467,107,-36,0,0,0.221366 -13479,3310:468,108,-36,0,0,0.218387 -13480,3310:469,109,-36,0,0,0.192503 -13481,3311:360,110,-36,0,0,0.217267 -13482,3311:361,111,-36,0,0,0.217127 -13483,3311:362,112,-36,0,0,0.213793 -13484,3311:363,113,-36,0,0,0.214242 -13485,3311:364,114,-36,0,0,0.212002 -13486,3311:465,115,-36,0,0,0.208709 -13487,3311:466,116,-36,0,0,0.223337 -13488,3311:467,117,-36,0,0,0.222946 -13489,3311:468,118,-36,0,0,0.221454 -13490,3311:469,119,-36,0,0,0.217145 -13491,3312:360,120,-36,0,0,0.218019 -13492,3312:361,121,-36,0,0,0.221366 -13493,3312:362,122,-36,0,0,0.218317 -13494,3312:363,123,-36,0,0,0.21636 -13495,3312:364,124,-36,0,0,0.216883 -13496,3312:465,125,-36,0,0,0.217879 -13497,3312:466,126,-36,0,0,0.22057 -13498,3312:467,127,-36,0,0,0.222537 -13499,3312:468,128,-36,0,0,0.22373 -13500,3312:469,129,-36,0,0,0.223071 -13501,3313:360,130,-36,0,0,0.219617 -13502,3313:361,131,-36,0,0,0.219424 -13503,3313:362,132,-36,0,0,0.219213 -13504,3313:363,133,-36,0,0,0.218177 -13505,3313:364,134,-36,0,0,0.219565 -13506,3313:465,135,-36,0,0,0.222039 -13507,3313:466,136,-36,0,0,0.220517 -13508,3313:467,137,-36,0,0,0.219142 -13509,3313:468,138,-36,0,0,0.22482 -13510,3313:469,139,-36,0,0,0.231204 -13511,3314:360,140,-36,0,0,0.235006 -13512,3314:361,141,-36,0,0,0.253821 -13513,3314:362,142,-36,0,0,0.256574 -13514,3314:363,143,-36,0,0,0.240687 -13515,3314:364,144,-36,0,0,0.234582 -13516,3314:465,145,-36,0,0,0.25583 -13517,3314:466,146,-36,0,0,0.259624 -13518,3314:467,147,-36,0,0,0.260395 -13519,3314:468,148,-36,0,0,0.291978 -13520,3314:469,149,-36,0,0,0.278202 -13521,3315:360,150,-36,0,0,0.266556 -13522,3315:361,151,-36,0,0,0.258362 -13523,3315:362,152,-36,0,0,0.252093 -13524,3315:363,153,-36,0,0,0.236932 -13525,3315:364,154,-36,0,0,0.23671 -13526,3315:465,155,-36,0,0,0.238403 -13527,3315:466,156,-36,0,0,0.236765 -13528,3315:467,157,-36,0,0,0.241099 -13529,3315:468,158,-36,0,0,0.242588 -13530,3315:469,159,-36,0,0,0.241062 -13531,3316:360,160,-36,0,0,0.241758 -13532,3316:361,161,-36,0,0,0.237825 -13533,3316:362,162,-36,0,0,0.242381 -13534,3316:363,163,-36,0,0,0.246975 -13535,3316:364,164,-36,0,0,0.251242 -13536,3316:465,165,-36,0,0,0.250065 -13537,3316:466,166,-36,0,0,0.247836 -13538,3317:361,171,-36,0,0,0.248162 -13539,3317:362,172,-36,0,0,0.204917 -13540,3317:363,173,-36,0,0,0.20485 -13541,3317:364,174,-36,0,0,0.209541 -13542,3317:465,175,-36,0,0,0.212604 -13543,3317:466,176,-36,0,0,0.207067 -13544,3317:467,177,-36,0,0,0.204114 -13545,3317:468,178,-36,0,0,0.206427 -13546,3317:469,179,-36,0,0,0.21381 -13547,3318:360,180,-36,0,0,0.22027 -13548,5318:350,-180,-35,0,0,0.216412 -13549,5317:459,-179,-35,0,0,0.223766 -13550,5317:458,-178,-35,0,0,0.230056 -13551,5317:457,-177,-35,0,0,0.236042 -13552,5317:456,-176,-35,0,0,0.242418 -13553,5317:455,-175,-35,0,0,0.235246 -13554,5317:354,-174,-35,0,0,0.234858 -13555,5317:353,-173,-35,0,0,0.281016 -13556,5317:352,-172,-35,0,0,0.282972 -13557,5317:351,-171,-35,0,0,0.26867 -13558,5317:350,-170,-35,0,0,0.246861 -13559,5316:459,-169,-35,0,0,0.260692 -13560,5316:458,-168,-35,0,0,0.270126 -13561,5316:457,-167,-35,0,0,0.257713 -13562,5316:456,-166,-35,0,0,0.258343 -13563,5316:455,-165,-35,0,0,0.262398 -13564,5316:354,-164,-35,0,0,0.263633 -13565,5316:353,-163,-35,0,0,0.263234 -13566,5316:352,-162,-35,0,0,0.264512 -13567,5316:351,-161,-35,0,0,0.266455 -13568,5316:350,-160,-35,0,0,0.269094 -13569,5315:459,-159,-35,0,0,0.269276 -13570,5315:458,-158,-35,0,0,0.27116 -13571,5315:457,-157,-35,0,0,0.276657 -13572,5315:456,-156,-35,0,0,0.281577 -13573,5315:455,-155,-35,0,0,0.284621 -13574,5315:354,-154,-35,0,0,0.285836 -13575,5315:353,-153,-35,0,0,0.286781 -13576,5315:352,-152,-35,0,0,0.284496 -13577,5315:351,-151,-35,0,0,0.281286 -13578,5315:350,-150,-35,0,0,0.28412 -13579,5314:459,-149,-35,0,0,0.289584 -13580,5314:458,-148,-35,0,0,0.28933 -13581,5314:457,-147,-35,0,0,0.285459 -13582,5314:456,-146,-35,0,0,0.287728 -13583,5314:455,-145,-35,0,0,0.291215 -13584,5314:354,-144,-35,0,0,0.294406 -13585,5314:353,-143,-35,0,0,0.294555 -13586,5314:352,-142,-35,0,0,0.293808 -13587,5314:351,-141,-35,0,0,0.290642 -13588,5314:350,-140,-35,0,0,0.288507 -13589,5313:459,-139,-35,0,0,0.286823 -13590,5313:458,-138,-35,0,0,0.281245 -13591,5313:457,-137,-35,0,0,0.276267 -13592,5313:456,-136,-35,0,0,0.274688 -13593,5313:455,-135,-35,0,0,0.276637 -13594,5313:354,-134,-35,0,0,0.276739 -13595,5313:353,-133,-35,0,0,0.276739 -13596,5313:352,-132,-35,0,0,0.27524 -13597,5313:351,-131,-35,0,0,0.274462 -13598,5313:350,-130,-35,0,0,0.278367 -13599,5312:459,-129,-35,0,0,0.27847 -13600,5312:458,-128,-35,0,0,0.276616 -13601,5312:457,-127,-35,0,0,0.278057 -13602,5312:456,-126,-35,0,0,0.277357 -13603,5312:455,-125,-35,0,0,0.276677 -13604,5312:354,-124,-35,0,0,0.273849 -13605,5312:353,-123,-35,0,0,0.273012 -13606,5312:352,-122,-35,0,0,0.271384 -13607,5312:351,-121,-35,0,0,0.268488 -13608,5312:350,-120,-35,0,0,0.264432 -13609,5311:459,-119,-35,0,0,0.263733 -13610,5311:458,-118,-35,0,0,0.26212 -13611,5311:457,-117,-35,0,0,0.258263 -13612,5311:456,-116,-35,0,0,0.256732 -13613,5311:455,-115,-35,0,0,0.260474 -13614,5311:354,-114,-35,0,0,0.257261 -13615,5311:353,-113,-35,0,0,0.24709 -13616,5311:352,-112,-35,0,0,0.248124 -13617,5311:351,-111,-35,0,0,0.252345 -13618,5311:350,-110,-35,0,0,0.253568 -13619,5310:459,-109,-35,0,0,0.246784 -13620,5310:458,-108,-35,0,0,0.241495 -13621,5310:457,-107,-35,0,0,0.236672 -13622,5310:456,-106,-35,0,0,0.234932 -13623,5310:455,-105,-35,0,0,0.235801 -13624,5310:354,-104,-35,0,0,0.231149 -13625,5310:353,-103,-35,0,0,0.234342 -13626,5310:352,-102,-35,0,0,0.228712 -13627,5310:351,-101,-35,0,0,0.228259 -13628,5310:350,-100,-35,0,0,0.229038 -13629,5309:459,-99,-35,0,0,0.230292 -13630,5309:458,-98,-35,0,0,0.228277 -13631,5309:457,-97,-35,0,0,0.228585 -13632,5309:456,-96,-35,0,0,0.232595 -13633,5309:455,-95,-35,0,0,0.226778 -13634,5309:354,-94,-35,0,0,0.222217 -13635,5309:353,-93,-35,0,0,0.225035 -13636,5309:352,-92,-35,0,0,0.229419 -13637,5309:351,-91,-35,0,0,0.227698 -13638,5309:350,-90,-35,0,0,0.225071 -13639,5308:459,-89,-35,0,0,0.221224 -13640,5308:458,-88,-35,0,0,0.221012 -13641,5308:457,-87,-35,0,0,0.223801 -13642,5308:456,-86,-35,0,0,0.225107 -13643,5308:455,-85,-35,0,0,0.223284 -13644,5308:354,-84,-35,0,0,0.222555 -13645,5308:353,-83,-35,0,0,0.21858 -13646,5308:352,-82,-35,0,0,0.222128 -13647,5308:351,-81,-35,0,0,0.223498 -13648,5308:350,-80,-35,0,0,0.225018 -13649,5307:459,-79,-35,0,0,0.227626 -13650,5307:458,-78,-35,0,0,0.228639 -13651,5307:457,-77,-35,0,0,0.230201 -13652,5307:456,-76,-35,0,0,0.229383 -13653,5307:455,-75,-35,0,0,0.23988 -13654,5306:455,-65,-35,0,0,0.269883 -13655,5306:354,-64,-35,0,0,0.267199 -13656,5306:353,-63,-35,0,0,0.266576 -13657,5306:352,-62,-35,0,0,0.267259 -13658,5306:351,-61,-35,0,0,0.264932 -13659,5306:350,-60,-35,0,0,0.233605 -13660,5305:459,-59,-35,0,0,0.196544 -13661,5305:458,-58,-35,0,0,0.249853 -13662,5305:457,-57,-35,0,0,0.275425 -13663,5305:456,-56,-35,0,0,0.275691 -13664,5305:455,-55,-35,0,0,0.313353 -13665,5305:354,-54,-35,0,0,0.335413 -13666,5305:353,-53,-35,0,0,0.321478 -13667,5305:352,-52,-35,0,0,0.286886 -13668,5305:351,-51,-35,0,0,0.25353 -13669,5305:350,-50,-35,0,0,0.244784 -13670,5304:459,-49,-35,0,0,0.244879 -13671,5304:458,-48,-35,0,0,0.250219 -13672,5304:457,-47,-35,0,0,0.238757 -13673,5304:456,-46,-35,0,0,0.234286 -13674,5304:455,-45,-35,0,0,0.227319 -13675,5304:354,-44,-35,0,0,0.220587 -13676,5304:353,-43,-35,0,0,0.216778 -13677,5304:352,-42,-35,0,0,0.214623 -13678,5304:351,-41,-35,0,0,0.212449 -13679,5304:350,-40,-35,0,0,0.212724 -13680,5303:459,-39,-35,0,0,0.208284 -13681,5303:458,-38,-35,0,0,0.20495 -13682,5303:457,-37,-35,0,0,0.199563 -13683,5303:456,-36,-35,0,0,0.197959 -13684,5303:455,-35,-35,0,0,0.195588 -13685,5303:354,-34,-35,0,0,0.196836 -13686,5303:353,-33,-35,0,0,0.189676 -13687,5303:352,-32,-35,0,0,0.184969 -13688,5303:351,-31,-35,0,0,0.181265 -13689,5303:350,-30,-35,0,0,0.197438 -13690,5302:459,-29,-35,0,0,0.219653 -13691,5302:458,-28,-35,0,0,0.208369 -13692,5302:457,-27,-35,0,0,0.206949 -13693,5302:456,-26,-35,0,0,0.211111 -13694,5302:455,-25,-35,0,0,0.195281 -13695,5302:354,-24,-35,0,0,0.204231 -13696,5302:353,-23,-35,0,0,0.220393 -13697,5302:352,-22,-35,0,0,0.228187 -13698,5302:351,-21,-35,0,0,0.216099 -13699,5302:350,-20,-35,0,0,0.211848 -13700,5301:459,-19,-35,0,0,0.211882 -13701,5301:458,-18,-35,0,0,0.207743 -13702,5301:457,-17,-35,0,0,0.206679 -13703,5301:456,-16,-35,0,0,0.17816 -13704,5301:455,-15,-35,0,0,0.170631 -13705,5301:354,-14,-35,0,0,0.199365 -13706,5301:353,-13,-35,0,0,0.218072 -13707,5301:352,-12,-35,0,0,0.234102 -13708,5301:351,-11,-35,0,0,0.230056 -13709,5301:350,-10,-35,0,0,0.228349 -13710,5300:459,-9,-35,0,0,0.242343 -13711,5300:458,-8,-35,0,0,0.236246 -13712,5300:457,-7,-35,0,0,0.237025 -13713,5300:456,-6,-35,0,0,0.226418 -13714,5300:455,-5,-35,0,0,0.209031 -13715,5300:354,-4,-35,0,0,0.210155 -13716,5300:353,-3,-35,0,0,0.224838 -13717,5300:352,-2,-35,0,0,0.227283 -13718,5300:351,-1,-35,0,0,0.218072 -13719,3300:351,0,-35,0,0,0.218089 -13720,3300:351,1,-35,0,0,0.220729 -13721,3300:352,2,-35,0,0,0.219829 -13722,3300:353,3,-35,0,0,0.217512 -13723,3300:354,4,-35,0,0,0.211162 -13724,3300:455,5,-35,0,0,0.199907 -13725,3300:456,6,-35,0,0,0.188699 -13726,3300:457,7,-35,0,0,0.193672 -13727,3300:458,8,-35,0,0,0.197112 -13728,3300:459,9,-35,0,0,0.205788 -13729,3301:350,10,-35,0,0,0.197584 -13730,3301:351,11,-35,0,0,0.189093 -13731,3301:352,12,-35,0,0,0.193639 -13732,3301:353,13,-35,0,0,0.21106 -13733,3301:354,14,-35,0,0,0.195265 -13734,3301:455,15,-35,0,0,0.209116 -13735,3301:456,16,-35,0,0,0.221561 -13736,3301:457,17,-35,0,0,0.202218 -13737,3301:458,18,-35,0,0,0.200105 -13738,3301:459,19,-35,0,0,0.210547 -13739,3302:350,20,-35,0,0,0.204465 -13740,3302:351,21,-35,0,0,0.195152 -13741,3302:352,22,-35,0,0,0.217564 -13742,3302:353,23,-35,0,0,0.229655 -13743,3302:354,24,-35,0,0,0.188605 -13744,3302:455,25,-35,0,0,0.187585 -13745,3302:456,26,-35,0,0,0.195669 -13746,3302:457,27,-35,0,0,0.19708 -13747,3302:458,28,-35,0,0,0.200253 -13748,3302:459,29,-35,0,0,0.187131 -13749,3303:350,30,-35,0,0,0.202516 -13750,3303:351,31,-35,0,0,0.225879 -13751,3303:352,32,-35,0,0,0.223569 -13752,3303:353,33,-35,0,0,0.202782 -13753,3303:354,34,-35,0,0,0.189109 -13754,3303:455,35,-35,0,0,0.18604 -13755,3303:456,36,-35,0,0,0.187053 -13756,3303:457,37,-35,0,0,0.182657 -13757,3303:458,38,-35,0,0,0.1769 -13758,3303:459,39,-35,0,0,0.174297 -13759,3304:350,40,-35,0,0,0.179321 -13760,3304:351,41,-35,0,0,0.182258 -13761,3304:352,42,-35,0,0,0.172236 -13762,3304:353,43,-35,0,0,0.168735 -13763,3304:354,44,-35,0,0,0.167084 -13764,3304:455,45,-35,0,0,0.162852 -13765,3304:456,46,-35,0,0,0.155416 -13766,3304:457,47,-35,0,0,0.147495 -13767,3304:458,48,-35,0,0,0.1496 -13768,3304:459,49,-35,0,0,0.152751 -13769,3305:350,50,-35,0,0,0.145032 -13770,3305:351,51,-35,0,0,0.144142 -13771,3305:352,52,-35,0,0,0.156674 -13772,3305:353,53,-35,0,0,0.162251 -13773,3305:354,54,-35,0,0,0.17973 -13774,3305:455,55,-35,0,0,0.178747 -13775,3305:456,56,-35,0,0,0.180321 -13776,3305:457,57,-35,0,0,0.240743 -13777,3305:458,58,-35,0,0,0.253024 -13778,3305:459,59,-35,0,0,0.279938 -13779,3306:350,60,-35,0,0,0.292744 -13780,3306:351,61,-35,0,0,0.278408 -13781,3306:352,62,-35,0,0,0.227175 -13782,3306:353,63,-35,0,0,0.236598 -13783,3306:354,64,-35,0,0,0.263534 -13784,3306:455,65,-35,0,0,0.270085 -13785,3306:456,66,-35,0,0,0.204632 -13786,3306:457,67,-35,0,0,0.205318 -13787,3306:458,68,-35,0,0,0.262458 -13788,3306:459,69,-35,0,0,0.271221 -13789,3307:350,70,-35,0,0,0.269822 -13790,3307:351,71,-35,0,0,0.26087 -13791,3307:352,72,-35,0,0,0.231387 -13792,3307:354,74,-35,0,0,0.25583 -13793,3307:455,75,-35,0,0,0.255205 -13794,3307:456,76,-35,0,0,0.221047 -13795,3307:457,77,-35,0,0,0.21556 -13796,3307:458,78,-35,0,0,0.228929 -13797,3307:459,79,-35,0,0,0.240574 -13798,3308:350,80,-35,0,0,0.235376 -13799,3308:351,81,-35,0,0,0.235394 -13800,3308:352,82,-35,0,0,0.229074 -13801,3308:353,83,-35,0,0,0.214519 -13802,3308:354,84,-35,0,0,0.209048 -13803,3308:455,85,-35,0,0,0.217284 -13804,3308:456,86,-35,0,0,0.230056 -13805,3308:457,87,-35,0,0,0.213344 -13806,3308:458,88,-35,0,0,0.20557 -13807,3308:459,89,-35,0,0,0.201258 -13808,3309:350,90,-35,0,0,0.195847 -13809,3309:351,91,-35,0,0,0.19609 -13810,3309:352,92,-35,0,0,0.195184 -13811,3309:353,93,-35,0,0,0.195523 -13812,3309:354,94,-35,0,0,0.192519 -13813,3309:455,95,-35,0,0,0.187616 -13814,3309:456,96,-35,0,0,0.200335 -13815,3309:457,97,-35,0,0,0.207405 -13816,3309:458,98,-35,0,0,0.216168 -13817,3309:459,99,-35,0,0,0.238497 -13818,3310:350,100,-35,0,0,0.236932 -13819,3310:351,101,-35,0,0,0.1938 -13820,3310:352,102,-35,0,0,0.190261 -13821,3310:353,103,-35,0,0,0.229837 -13822,3310:354,104,-35,0,0,0.228187 -13823,3310:455,105,-35,0,0,0.205402 -13824,3310:456,106,-35,0,0,0.207422 -13825,3310:457,107,-35,0,0,0.229456 -13826,3310:458,108,-35,0,0,0.207709 -13827,3310:459,109,-35,0,0,0.202384 -13828,3311:350,110,-35,0,0,0.230657 -13829,3311:351,111,-35,0,0,0.220287 -13830,3311:352,112,-35,0,0,0.214311 -13831,3311:353,113,-35,0,0,0.220835 -13832,3311:354,114,-35,0,0,0.225233 -13833,3311:455,115,-35,0,0,0.227283 -13834,3311:456,116,-35,0,0,0.226634 -13835,3311:457,117,-35,0,0,0.224194 -13836,3311:458,118,-35,0,0,0.222537 -13837,3311:459,119,-35,0,0,0.222395 -13838,3312:350,120,-35,0,0,0.223534 -13839,3312:351,121,-35,0,0,0.228241 -13840,3312:352,122,-35,0,0,0.224337 -13841,3312:353,123,-35,0,0,0.22332 -13842,3312:354,124,-35,0,0,0.224856 -13843,3312:455,125,-35,0,0,0.226076 -13844,3312:456,126,-35,0,0,0.227879 -13845,3312:457,127,-35,0,0,0.228385 -13846,3312:458,128,-35,0,0,0.228802 -13847,3312:459,129,-35,0,0,0.231095 -13848,3313:350,130,-35,0,0,0.229655 -13849,3313:351,131,-35,0,0,0.228984 -13850,3313:352,132,-35,0,0,0.229456 -13851,3313:353,133,-35,0,0,0.227987 -13852,3313:354,134,-35,0,0,0.227861 -13853,3313:455,135,-35,0,0,0.227085 -13854,3313:456,136,-35,0,0,0.229437 -13855,3313:457,137,-35,0,0,0.227933 -13856,3313:458,138,-35,0,0,0.229819 -13857,3313:459,139,-35,0,0,0.238142 -13858,3314:350,140,-35,0,0,0.240762 -13859,3314:351,141,-35,0,0,0.264952 -13860,3314:352,142,-35,0,0,0.260613 -13861,3314:353,143,-35,0,0,0.254367 -13862,3314:354,144,-35,0,0,0.257673 -13863,3314:455,145,-35,0,0,0.261108 -13864,3314:456,146,-35,0,0,0.271018 -13865,3314:457,147,-35,0,0,0.290939 -13866,3314:458,148,-35,0,0,0.309146 -13867,3314:459,149,-35,0,0,0.270937 -13868,3315:350,150,-35,0,0,0.261386 -13869,3315:351,151,-35,0,0,0.258362 -13870,3315:352,152,-35,0,0,0.253646 -13871,3315:353,153,-35,0,0,0.255596 -13872,3315:354,154,-35,0,0,0.263514 -13873,3315:455,155,-35,0,0,0.263195 -13874,3315:456,156,-35,0,0,0.259367 -13875,3315:457,157,-35,0,0,0.258008 -13876,3315:458,158,-35,0,0,0.255576 -13877,3315:459,159,-35,0,0,0.255909 -13878,3316:350,160,-35,0,0,0.262955 -13879,3316:351,161,-35,0,0,0.257792 -13880,3316:352,162,-35,0,0,0.255928 -13881,3316:353,163,-35,0,0,0.263075 -13882,3316:354,164,-35,0,0,0.263234 -13883,3316:455,165,-35,0,0,0.262578 -13884,3316:456,166,-35,0,0,0.265312 -13885,3316:457,167,-35,0,0,0.266335 -13886,3317:352,172,-35,0,0,0.238608 -13887,3317:353,173,-35,0,0,0.223498 -13888,3317:354,174,-35,0,0,0.218072 -13890,3317:456,176,-35,0,0,0.221951 -13891,3317:457,177,-35,0,0,0.215508 -13892,3317:458,178,-35,0,0,0.214848 -13893,3317:459,179,-35,0,0,0.213879 -13894,3318:350,180,-35,0,0,0.216412 -13895,5318:140,-180,-34,0,0,0.260039 -13896,5317:249,-179,-34,0,0,0.252694 -13897,5317:248,-178,-34,0,0,0.262001 -13898,5317:247,-177,-34,0,0,0.263334 -13899,5317:246,-176,-34,0,0,0.259466 -13900,5317:245,-175,-34,0,0,0.250933 -13901,5317:144,-174,-34,0,0,0.27816 -13902,5317:143,-173,-34,0,0,0.296394 -13903,5317:142,-172,-34,0,0,0.28164 -13904,5317:141,-171,-34,0,0,0.280809 -13905,5317:140,-170,-34,0,0,0.274503 -13906,5316:249,-169,-34,0,0,0.274974 -13907,5316:248,-168,-34,0,0,0.271445 -13908,5316:247,-167,-34,0,0,0.267763 -13909,5316:246,-166,-34,0,0,0.275917 -13910,5316:245,-165,-34,0,0,0.273788 -13911,5316:144,-164,-34,0,0,0.275118 -13912,5316:143,-163,-34,0,0,0.273951 -13913,5316:142,-162,-34,0,0,0.27604 -13914,5316:141,-161,-34,0,0,0.278449 -13915,5316:140,-160,-34,0,0,0.280809 -13916,5315:249,-159,-34,0,0,0.283305 -13917,5315:248,-158,-34,0,0,0.285417 -13918,5315:247,-157,-34,0,0,0.292 -13919,5315:246,-156,-34,0,0,0.296266 -13920,5315:245,-155,-34,0,0,0.300806 -13921,5315:144,-154,-34,0,0,0.302646 -13922,5315:143,-153,-34,0,0,0.300201 -13923,5315:142,-152,-34,0,0,0.297081 -13924,5315:141,-151,-34,0,0,0.296866 -13925,5315:140,-150,-34,0,0,0.302624 -13926,5314:249,-149,-34,0,0,0.306497 -13927,5314:248,-148,-34,0,0,0.304448 -13928,5314:247,-147,-34,0,0,0.305232 -13929,5314:246,-146,-34,0,0,0.313552 -13930,5314:245,-145,-34,0,0,0.311499 -13931,5314:144,-144,-34,0,0,0.308883 -13932,5314:143,-143,-34,0,0,0.308905 -13933,5314:142,-142,-34,0,0,0.309497 -13934,5314:141,-141,-34,0,0,0.306192 -13935,5314:140,-140,-34,0,0,0.305865 -13936,5313:249,-139,-34,0,0,0.30484 -13937,5313:248,-138,-34,0,0,0.300589 -13938,5313:247,-137,-34,0,0,0.297424 -13939,5313:246,-136,-34,0,0,0.295666 -13940,5313:245,-135,-34,0,0,0.295559 -13941,5313:144,-134,-34,0,0,0.292339 -13942,5313:143,-133,-34,0,0,0.289521 -13943,5313:142,-132,-34,0,0,0.293297 -13944,5313:141,-131,-34,0,0,0.290113 -13945,5313:140,-130,-34,0,0,0.291639 -13946,5312:249,-129,-34,0,0,0.29096 -13947,5312:248,-128,-34,0,0,0.295175 -13948,5312:247,-127,-34,0,0,0.295859 -13949,5312:246,-126,-34,0,0,0.298735 -13950,5312:245,-125,-34,0,0,0.296266 -13951,5312:144,-124,-34,0,0,0.292319 -13952,5312:143,-123,-34,0,0,0.290769 -13953,5312:142,-122,-34,0,0,0.286949 -13954,5312:141,-121,-34,0,0,0.28366 -13955,5312:140,-120,-34,0,0,0.284224 -13956,5311:249,-119,-34,0,0,0.278945 -13957,5311:248,-118,-34,0,0,0.27878 -13958,5311:247,-117,-34,0,0,0.27238 -13959,5311:246,-116,-34,0,0,0.268266 -13960,5311:245,-115,-34,0,0,0.268973 -13961,5311:144,-114,-34,0,0,0.275261 -13962,5311:143,-113,-34,0,0,0.270754 -13963,5311:142,-112,-34,0,0,0.268206 -13964,5311:141,-111,-34,0,0,0.263953 -13965,5311:140,-110,-34,0,0,0.262518 -13966,5310:249,-109,-34,0,0,0.259821 -13967,5310:248,-108,-34,0,0,0.255596 -13968,5310:247,-107,-34,0,0,0.25159 -13969,5310:246,-106,-34,0,0,0.247626 -13970,5310:245,-105,-34,0,0,0.243666 -13971,5310:144,-104,-34,0,0,0.243685 -13972,5310:143,-103,-34,0,0,0.250354 -13973,5310:142,-102,-34,0,0,0.248565 -13974,5310:141,-101,-34,0,0,0.245393 -13975,5310:140,-100,-34,0,0,0.245754 -13976,5309:249,-99,-34,0,0,0.242777 -13977,5309:248,-98,-34,0,0,0.238571 -13978,5309:247,-97,-34,0,0,0.244158 -13979,5309:246,-96,-34,0,0,0.244557 -13980,5309:245,-95,-34,0,0,0.249064 -13981,5309:144,-94,-34,0,0,0.244367 -13982,5309:143,-93,-34,0,0,0.236858 -13983,5309:142,-92,-34,0,0,0.242381 -13984,5309:141,-91,-34,0,0,0.237974 -13985,5309:140,-90,-34,0,0,0.244405 -13986,5308:249,-89,-34,0,0,0.238739 -13987,5308:248,-88,-34,0,0,0.235986 -13988,5308:247,-87,-34,0,0,0.241608 -13989,5308:246,-86,-34,0,0,0.238384 -13990,5308:245,-85,-34,0,0,0.236877 -13991,5308:144,-84,-34,0,0,0.241721 -13992,5308:143,-83,-34,0,0,0.233605 -13993,5308:142,-82,-34,0,0,0.236209 -13994,5308:141,-81,-34,0,0,0.236784 -13995,5308:140,-80,-34,0,0,0.236839 -13996,5307:249,-79,-34,0,0,0.23645 -13997,5307:248,-78,-34,0,0,0.238926 -13998,5307:247,-77,-34,0,0,0.241175 -13999,5307:246,-76,-34,0,0,0.240123 -14000,5307:245,-75,-34,0,0,0.245259 -14001,5307:144,-74,-34,0,0,0.257693 -14002,5306:245,-65,-34,0,0,0.299489 -14003,5306:144,-64,-34,0,0,0.294876 -14004,5306:143,-63,-34,0,0,0.29007 -14005,5306:142,-62,-34,0,0,0.286949 -14006,5306:141,-61,-34,0,0,0.287622 -14007,5306:140,-60,-34,0,0,0.282471 -14008,5305:249,-59,-34,0,0,0.216726 -14009,5305:248,-58,-34,0,0,0.247033 -14010,5305:247,-57,-34,0,0,0.276698 -14011,5305:246,-56,-34,0,0,0.282972 -14012,5305:245,-55,-34,0,0,0.312668 -14013,5305:144,-54,-34,0,0,0.349688 -14014,5305:143,-53,-34,0,0,0.271343 -14015,5305:142,-52,-34,0,0,0.289077 -14016,5305:141,-51,-34,0,0,0.288929 -14017,5305:140,-50,-34,0,0,0.265833 -14018,5304:249,-49,-34,0,0,0.256065 -14019,5304:248,-48,-34,0,0,0.253977 -14020,5304:247,-47,-34,0,0,0.241175 -14021,5304:246,-46,-34,0,0,0.234913 -14022,5304:245,-45,-34,0,0,0.227626 -14023,5304:144,-44,-34,0,0,0.227572 -14024,5304:143,-43,-34,0,0,0.227337 -14025,5304:142,-42,-34,0,0,0.224445 -14026,5304:141,-41,-34,0,0,0.224463 -14027,5304:140,-40,-34,0,0,0.222341 -14028,5303:249,-39,-34,0,0,0.21445 -14029,5303:248,-38,-34,0,0,0.210104 -14030,5303:247,-37,-34,0,0,0.209507 -14031,5303:246,-36,-34,0,0,0.209065 -14032,5303:245,-35,-34,0,0,0.210155 -14033,5303:144,-34,-34,0,0,0.212002 -14034,5303:143,-33,-34,0,0,0.226292 -14035,5303:142,-32,-34,0,0,0.22259 -14036,5303:141,-31,-34,0,0,0.235098 -14037,5303:140,-30,-34,0,0,0.235968 -14038,5302:249,-29,-34,0,0,0.22622 -14039,5302:248,-28,-34,0,0,0.230128 -14040,5302:247,-27,-34,0,0,0.236746 -14041,5302:246,-26,-34,0,0,0.211214 -14042,5302:245,-25,-34,0,0,0.212535 -14043,5302:144,-24,-34,0,0,0.237118 -14044,5302:143,-23,-34,0,0,0.253413 -14045,5302:142,-22,-34,0,0,0.241627 -14046,5302:141,-21,-34,0,0,0.238552 -14047,5302:140,-20,-34,0,0,0.222004 -14048,5301:249,-19,-34,0,0,0.211848 -14049,5301:248,-18,-34,0,0,0.207726 -14050,5301:247,-17,-34,0,0,0.20144 -14051,5301:246,-16,-34,0,0,0.181662 -14052,5301:245,-15,-34,0,0,0.189361 -14053,5301:144,-14,-34,0,0,0.230256 -14054,5301:143,-13,-34,0,0,0.258677 -14055,5301:142,-12,-34,0,0,0.252752 -14056,5301:141,-11,-34,0,0,0.242607 -14057,5301:140,-10,-34,0,0,0.239318 -14058,5300:249,-9,-34,0,0,0.233826 -14059,5300:248,-8,-34,0,0,0.230147 -14060,5300:247,-7,-34,0,0,0.23915 -14061,5300:246,-6,-34,0,0,0.236691 -14062,5300:245,-5,-34,0,0,0.235062 -14063,5300:144,-4,-34,0,0,0.231844 -14064,5300:143,-3,-34,0,0,0.230056 -14065,5300:142,-2,-34,0,0,0.224659 -14066,5300:141,-1,-34,0,0,0.225 -14067,3300:141,0,-34,0,0,0.224713 -14068,3300:141,1,-34,0,0,0.225896 -14069,3300:142,2,-34,0,0,0.220976 -14070,3300:143,3,-34,0,0,0.218335 -14071,3300:144,4,-34,0,0,0.217337 -14072,3300:245,5,-34,0,0,0.21082 -14073,3300:246,6,-34,0,0,0.19778 -14074,3300:247,7,-34,0,0,0.197226 -14075,3300:248,8,-34,0,0,0.199398 -14076,3300:249,9,-34,0,0,0.199447 -14077,3301:140,10,-34,0,0,0.214242 -14078,3301:141,11,-34,0,0,0.213482 -14079,3301:142,12,-34,0,0,0.219758 -14080,3301:143,13,-34,0,0,0.222093 -14081,3301:144,14,-34,0,0,0.209558 -14082,3301:245,15,-34,0,0,0.241758 -14083,3301:246,16,-34,0,0,0.264632 -14084,3301:247,17,-34,0,0,0.218861 -14085,3301:248,18,-34,0,0,0.281806 -14086,3301:249,19,-34,0,0,0.267883 -14087,3302:140,20,-34,0,0,0.248469 -14088,3302:141,21,-34,0,0,0.271425 -14089,3302:142,22,-34,0,0,0.263055 -14090,3302:143,23,-34,0,0,0.277048 -14091,3302:144,24,-34,0,0,0.258343 -14092,3302:245,25,-34,0,0,0.230292 -14093,3302:246,26,-34,0,0,0.249429 -14094,3302:247,27,-34,0,0,0.250084 -14095,3302:248,28,-34,0,0,0.252752 -14096,3302:249,29,-34,0,0,0.236746 -14097,3303:140,30,-34,0,0,0.223106 -14098,3303:141,31,-34,0,0,0.241627 -14099,3303:142,32,-34,0,0,0.20393 -14100,3303:143,33,-34,0,0,0.199021 -14101,3303:144,34,-34,0,0,0.201291 -14102,3303:245,35,-34,0,0,0.200566 -14103,3303:246,36,-34,0,0,0.212105 -14104,3303:247,37,-34,0,0,0.189187 -14105,3303:248,38,-34,0,0,0.186148 -14106,3303:249,39,-34,0,0,0.200088 -14107,3304:140,40,-34,0,0,0.202599 -14108,3304:141,41,-34,0,0,0.194234 -14109,3304:142,42,-34,0,0,0.184891 -14110,3304:143,43,-34,0,0,0.176646 -14111,3304:144,44,-34,0,0,0.170428 -14112,3304:245,45,-34,0,0,0.163709 -14113,3304:246,46,-34,0,0,0.157395 -14114,3304:247,47,-34,0,0,0.152114 -14115,3304:248,48,-34,0,0,0.157408 -14116,3304:249,49,-34,0,0,0.160943 -14117,3305:140,50,-34,0,0,0.165389 -14118,3305:141,51,-34,0,0,0.165872 -14119,3305:142,52,-34,0,0,0.205268 -14120,3305:143,53,-34,0,0,0.251513 -14121,3305:144,54,-34,0,0,0.260811 -14122,3305:245,55,-34,0,0,0.258874 -14123,3305:246,56,-34,0,0,0.228621 -14124,3305:247,57,-34,0,0,0.235062 -14125,3305:248,58,-34,0,0,0.239543 -14126,3305:249,59,-34,0,0,0.250065 -14127,3306:140,60,-34,0,0,0.299101 -14128,3306:141,61,-34,0,0,0.286319 -14129,3306:142,62,-34,0,0,0.266475 -14130,3306:143,63,-34,0,0,0.243344 -14131,3306:144,64,-34,0,0,0.256653 -14132,3306:245,65,-34,0,0,0.267662 -14133,3306:246,66,-34,0,0,0.269438 -14134,3306:247,67,-34,0,0,0.231533 -14135,3306:248,68,-34,0,0,0.279358 -14136,3306:249,69,-34,0,0,0.265712 -14137,3307:140,70,-34,0,0,0.263633 -14138,3307:141,71,-34,0,0,0.256594 -14139,3307:142,72,-34,0,0,0.235062 -14140,3307:144,74,-34,0,0,0.249199 -14141,3307:245,75,-34,0,0,0.244139 -14142,3307:246,76,-34,0,0,0.246117 -14143,3307:247,77,-34,0,0,0.253841 -14144,3307:248,78,-34,0,0,0.258599 -14145,3307:249,79,-34,0,0,0.248392 -14146,3308:140,80,-34,0,0,0.242399 -14147,3308:141,81,-34,0,0,0.242022 -14148,3308:142,82,-34,0,0,0.247281 -14149,3308:143,83,-34,0,0,0.244841 -14150,3308:144,84,-34,0,0,0.241758 -14151,3308:245,85,-34,0,0,0.244784 -14152,3308:246,86,-34,0,0,0.242626 -14153,3308:247,87,-34,0,0,0.229601 -14154,3308:248,88,-34,0,0,0.210445 -14155,3308:249,89,-34,0,0,0.216064 -14156,3309:140,90,-34,0,0,0.222679 -14157,3309:141,91,-34,0,0,0.222999 -14158,3309:142,92,-34,0,0,0.209303 -14159,3309:143,93,-34,0,0,0.200846 -14160,3309:144,94,-34,0,0,0.200335 -14161,3309:245,95,-34,0,0,0.201672 -14162,3309:246,96,-34,0,0,0.203614 -14163,3309:247,97,-34,0,0,0.206326 -14164,3309:248,98,-34,0,0,0.206461 -14165,3309:249,99,-34,0,0,0.226148 -14166,3310:140,100,-34,0,0,0.242531 -14167,3310:141,101,-34,0,0,0.238552 -14168,3310:142,102,-34,0,0,0.237658 -14169,3310:143,103,-34,0,0,0.235764 -14170,3310:144,104,-34,0,0,0.230201 -14171,3310:245,105,-34,0,0,0.216029 -14172,3310:246,106,-34,0,0,0.228838 -14173,3310:247,107,-34,0,0,0.240874 -14174,3310:248,108,-34,0,0,0.234268 -14175,3310:249,109,-34,0,0,0.233734 -14176,3311:140,110,-34,0,0,0.23723 -14177,3311:141,111,-34,0,0,0.232485 -14178,3311:142,112,-34,0,0,0.232668 -14179,3311:143,113,-34,0,0,0.235136 -14180,3311:144,114,-34,0,0,0.232925 -14181,3311:245,115,-34,0,0,0.231478 -14182,3311:246,116,-34,0,0,0.233495 -14183,3311:247,117,-34,0,0,0.233293 -14184,3311:248,118,-34,0,0,0.23276 -14185,3311:249,119,-34,0,0,0.234305 -14186,3312:140,120,-34,0,0,0.236246 -14187,3312:141,121,-34,0,0,0.239412 -14188,3312:142,122,-34,0,0,0.237695 -14189,3312:143,123,-34,0,0,0.235746 -14190,3312:144,124,-34,0,0,0.234526 -14191,3312:245,125,-34,0,0,0.235468 -14192,3312:246,126,-34,0,0,0.23645 -14193,3312:247,127,-34,0,0,0.235764 -14194,3312:248,128,-34,0,0,0.240799 -14195,3312:249,129,-34,0,0,0.237304 -14196,3313:140,130,-34,0,0,0.238142 -14197,3313:141,131,-34,0,0,0.238776 -14198,3313:142,132,-34,0,0,0.240893 -14199,3313:143,133,-34,0,0,0.242418 -14200,3313:144,134,-34,0,0,0.240067 -14201,3313:245,135,-34,0,0,0.235746 -14202,3313:246,136,-34,0,0,0.24003 -14203,3313:247,137,-34,0,0,0.239486 -14204,3313:248,138,-34,0,0,0.242928 -14205,3313:249,139,-34,0,0,0.253626 -14206,3314:140,140,-34,0,0,0.270045 -14207,3314:141,141,-34,0,0,0.26214 -14208,3314:142,142,-34,0,0,0.272706 -14209,3314:143,143,-34,0,0,0.263295 -14210,3314:144,144,-34,0,0,0.269721 -14211,3314:245,145,-34,0,0,0.2794 -14212,3314:246,146,-34,0,0,0.306913 -14213,3314:248,148,-34,0,0,0.291024 -14214,3314:249,149,-34,0,0,0.331486 -14215,3315:140,150,-34,0,0,0.293276 -14216,3315:141,151,-34,0,0,0.291024 -14217,3315:142,152,-34,0,0,0.271343 -14218,3315:143,153,-34,0,0,0.278202 -14219,3315:144,154,-34,0,0,0.287159 -14220,3315:245,155,-34,0,0,0.284956 -14221,3315:246,156,-34,0,0,0.278945 -14222,3315:247,157,-34,0,0,0.273441 -14223,3315:248,158,-34,0,0,0.27678 -14224,3315:249,159,-34,0,0,0.275917 -14225,3316:140,160,-34,0,0,0.280933 -14226,3316:141,161,-34,0,0,0.276719 -14227,3316:142,162,-34,0,0,0.27604 -14228,3316:143,163,-34,0,0,0.277769 -14229,3316:144,164,-34,0,0,0.27783 -14230,3316:245,165,-34,0,0,0.280622 -14231,3316:246,166,-34,0,0,0.281349 -14232,3316:247,167,-34,0,0,0.278656 -14233,3316:248,168,-34,0,0,0.281785 -14234,3316:249,169,-34,0,0,0.279958 -14235,3317:144,174,-34,0,0,0.242852 -14236,3317:245,175,-34,0,0,0.269074 -14237,3317:246,176,-34,0,0,0.262279 -14238,3317:247,177,-34,0,0,0.253899 -14239,3317:248,178,-34,0,0,0.249544 -14240,3317:249,179,-34,0,0,0.247836 -14241,3318:140,180,-34,0,0,0.260039 -14242,5318:130,-180,-33,0,0,0.294961 -14243,5317:239,-179,-33,0,0,0.30665 -14244,5317:238,-178,-33,0,0,0.318638 -14245,5317:237,-177,-33,0,0,0.317079 -14246,5317:236,-176,-33,0,0,0.316434 -14247,5317:235,-175,-33,0,0,0.317412 -14248,5317:134,-174,-33,0,0,0.316123 -14249,5317:133,-173,-33,0,0,0.308532 -14250,5317:132,-172,-33,0,0,0.292106 -14251,5317:131,-171,-33,0,0,0.28697 -14252,5317:130,-170,-33,0,0,0.28933 -14253,5316:239,-169,-33,0,0,0.281826 -14254,5316:238,-168,-33,0,0,0.281826 -14255,5316:237,-167,-33,0,0,0.283368 -14256,5316:236,-166,-33,0,0,0.289352 -14257,5316:235,-165,-33,0,0,0.287412 -14258,5316:134,-164,-33,0,0,0.293958 -14259,5316:133,-163,-33,0,0,0.293404 -14260,5316:132,-162,-33,0,0,0.29079 -14261,5316:131,-161,-33,0,0,0.294 -14262,5316:130,-160,-33,0,0,0.301324 -14263,5315:239,-159,-33,0,0,0.301584 -14264,5315:238,-158,-33,0,0,0.308708 -14265,5315:237,-157,-33,0,0,0.310266 -14266,5315:236,-156,-33,0,0,0.317012 -14267,5315:235,-155,-33,0,0,0.318861 -14268,5315:134,-154,-33,0,0,0.324173 -14269,5315:133,-153,-33,0,0,0.322375 -14270,5315:132,-152,-33,0,0,0.323813 -14271,5315:131,-151,-33,0,0,0.321926 -14272,5315:130,-150,-33,0,0,0.323183 -14273,5314:239,-149,-33,0,0,0.321141 -14274,5314:238,-148,-33,0,0,0.321949 -14275,5314:237,-147,-33,0,0,0.3274 -14276,5314:236,-146,-33,0,0,0.327106 -14277,5314:235,-145,-33,0,0,0.324668 -14278,5314:134,-144,-33,0,0,0.325705 -14279,5314:133,-143,-33,0,0,0.325638 -14280,5314:132,-142,-33,0,0,0.323071 -14281,5314:131,-141,-33,0,0,0.320828 -14282,5314:130,-140,-33,0,0,0.324038 -14283,5313:239,-139,-33,0,0,0.322061 -14284,5313:238,-138,-33,0,0,0.315901 -14285,5313:237,-137,-33,0,0,0.31866 -14286,5313:236,-136,-33,0,0,0.311653 -14287,5313:235,-135,-33,0,0,0.310728 -14288,5313:134,-134,-33,0,0,0.310948 -14289,5313:133,-133,-33,0,0,0.310113 -14290,5313:132,-132,-33,0,0,0.308335 -14291,5313:131,-131,-33,0,0,0.306148 -14292,5313:130,-130,-33,0,0,0.311455 -14293,5312:239,-129,-33,0,0,0.311345 -14294,5312:238,-128,-33,0,0,0.308181 -14295,5312:237,-127,-33,0,0,0.310904 -14296,5312:236,-126,-33,0,0,0.313861 -14297,5312:235,-125,-33,0,0,0.308686 -14298,5312:134,-124,-33,0,0,0.309432 -14299,5312:133,-123,-33,0,0,0.300481 -14300,5312:132,-122,-33,0,0,0.30397 -14301,5312:131,-121,-33,0,0,0.303992 -14302,5312:130,-120,-33,0,0,0.298326 -14303,5311:239,-119,-33,0,0,0.292872 -14304,5311:238,-118,-33,0,0,0.293467 -14305,5311:237,-117,-33,0,0,0.293489 -14306,5311:236,-116,-33,0,0,0.292892 -14307,5311:235,-115,-33,0,0,0.290939 -14308,5311:134,-114,-33,0,0,0.289859 -14309,5311:133,-113,-33,0,0,0.290918 -14310,5311:132,-112,-33,0,0,0.280975 -14311,5311:131,-111,-33,0,0,0.275589 -14312,5311:130,-110,-33,0,0,0.269984 -14313,5310:239,-109,-33,0,0,0.262856 -14314,5310:238,-108,-33,0,0,0.261346 -14315,5310:237,-107,-33,0,0,0.259269 -14316,5310:236,-106,-33,0,0,0.263514 -14317,5310:235,-105,-33,0,0,0.259091 -14318,5310:134,-104,-33,0,0,0.259703 -14319,5310:133,-103,-33,0,0,0.266154 -14320,5310:132,-102,-33,0,0,0.265993 -14321,5310:131,-101,-33,0,0,0.258874 -14322,5310:130,-100,-33,0,0,0.257084 -14323,5309:239,-99,-33,0,0,0.258795 -14324,5309:238,-98,-33,0,0,0.258165 -14325,5309:237,-97,-33,0,0,0.252578 -14326,5309:236,-96,-33,0,0,0.259486 -14327,5309:235,-95,-33,0,0,0.251435 -14328,5309:134,-94,-33,0,0,0.257673 -14329,5309:133,-93,-33,0,0,0.255518 -14330,5309:132,-92,-33,0,0,0.252442 -14331,5309:131,-91,-33,0,0,0.246689 -14332,5309:130,-90,-33,0,0,0.254152 -14333,5308:239,-89,-33,0,0,0.249064 -14334,5308:238,-88,-33,0,0,0.24753 -14335,5308:237,-87,-33,0,0,0.247472 -14336,5308:236,-86,-33,0,0,0.254327 -14337,5308:235,-85,-33,0,0,0.251996 -14338,5308:134,-84,-33,0,0,0.251745 -14339,5308:133,-83,-33,0,0,0.246498 -14340,5308:132,-82,-33,0,0,0.251377 -14341,5308:131,-81,-33,0,0,0.247128 -14342,5308:130,-80,-33,0,0,0.248334 -14343,5307:239,-79,-33,0,0,0.251339 -14344,5307:238,-78,-33,0,0,0.251532 -14345,5307:237,-77,-33,0,0,0.252268 -14346,5307:236,-76,-33,0,0,0.253082 -14347,5307:235,-75,-33,0,0,0.256771 -14348,5307:133,-73,-33,0,0,0.28058 -14349,5306:133,-63,-33,0,0,0.310091 -14350,5306:132,-62,-33,0,0,0.311543 -14351,5306:131,-61,-33,0,0,0.32242 -14352,5306:130,-60,-33,0,0,0.317569 -14353,5305:239,-59,-33,0,0,0.287559 -14354,5305:238,-58,-33,0,0,0.231058 -14355,5305:237,-57,-33,0,0,0.251474 -14356,5305:236,-56,-33,0,0,0.281037 -14357,5305:235,-55,-33,0,0,0.343801 -14358,5305:134,-54,-33,0,0,0.33971 -14359,5305:133,-53,-33,0,0,0.285291 -14360,5305:132,-52,-33,0,0,0.311675 -14361,5305:131,-51,-33,0,0,0.332351 -14362,5305:130,-50,-33,0,0,0.361791 -14363,5304:239,-49,-33,0,0,0.362479 -14364,5304:238,-48,-33,0,0,0.306279 -14365,5304:237,-47,-33,0,0,0.270471 -14366,5304:236,-46,-33,0,0,0.257359 -14367,5304:235,-45,-33,0,0,0.26216 -14368,5304:134,-44,-33,0,0,0.264152 -14369,5304:133,-43,-33,0,0,0.262796 -14370,5304:132,-42,-33,0,0,0.264692 -14371,5304:131,-41,-33,0,0,0.257792 -14372,5304:130,-40,-33,0,0,0.235764 -14373,5303:239,-39,-33,0,0,0.225753 -14374,5303:238,-38,-33,0,0,0.229583 -14375,5303:237,-37,-33,0,0,0.237993 -14376,5303:236,-36,-33,0,0,0.252403 -14377,5303:235,-35,-33,0,0,0.254698 -14378,5303:134,-34,-33,0,0,0.230165 -14379,5303:133,-33,-33,0,0,0.235542 -14380,5303:132,-32,-33,0,0,0.242947 -14381,5303:131,-31,-33,0,0,0.259012 -14382,5303:130,-30,-33,0,0,0.249544 -14383,5302:239,-29,-33,0,0,0.24359 -14384,5302:238,-28,-33,0,0,0.24359 -14385,5302:237,-27,-33,0,0,0.251048 -14386,5302:236,-26,-33,0,0,0.246117 -14387,5302:235,-25,-33,0,0,0.266596 -14388,5302:134,-24,-33,0,0,0.272462 -14389,5302:133,-23,-33,0,0,0.25992 -14390,5302:132,-22,-33,0,0,0.264692 -14391,5302:131,-21,-33,0,0,0.257988 -14392,5302:130,-20,-33,0,0,0.236079 -14393,5301:239,-19,-33,0,0,0.224051 -14394,5301:238,-18,-33,0,0,0.207658 -14395,5301:237,-17,-33,0,0,0.200269 -14396,5301:236,-16,-33,0,0,0.194298 -14397,5301:235,-15,-33,0,0,0.219882 -14398,5301:134,-14,-33,0,0,0.266174 -14399,5301:133,-13,-33,0,0,0.255772 -14400,5301:132,-12,-33,0,0,0.240874 -14401,5301:131,-11,-33,0,0,0.239449 -14402,5301:130,-10,-33,0,0,0.238646 -14403,5300:239,-9,-33,0,0,0.235468 -14404,5300:238,-8,-33,0,0,0.235376 -14405,5300:237,-7,-33,0,0,0.251532 -14406,5300:236,-6,-33,0,0,0.24063 -14407,5300:235,-5,-33,0,0,0.231314 -14408,5300:134,-4,-33,0,0,0.230967 -14409,5300:133,-3,-33,0,0,0.233385 -14410,5300:132,-2,-33,0,0,0.235764 -14411,5300:131,-1,-33,0,0,0.235949 -14412,3300:131,0,-33,0,0,0.231624 -14413,3300:131,1,-33,0,0,0.230857 -14414,3300:132,2,-33,0,0,0.23146 -14415,3300:133,3,-33,0,0,0.220358 -14416,3300:134,4,-33,0,0,0.21683 -14417,3300:235,5,-33,0,0,0.221756 -14418,3300:236,6,-33,0,0,0.232228 -14419,3300:237,7,-33,0,0,0.230311 -14420,3300:238,8,-33,0,0,0.227554 -14421,3300:239,9,-33,0,0,0.21497 -14422,3301:130,10,-33,0,0,0.210257 -14423,3301:131,11,-33,0,0,0.214104 -14424,3301:132,12,-33,0,0,0.22931 -14425,3301:133,13,-33,0,0,0.235672 -14426,3301:134,14,-33,0,0,0.243136 -14427,3301:235,15,-33,0,0,0.276143 -14428,3301:236,16,-33,0,0,0.280871 -14429,3301:237,17,-33,0,0,0.305102 -14430,3301:238,18,-33,0,0,0.322981 -14431,3301:239,19,-33,0,0,0.302863 -14432,3302:130,20,-33,0,0,0.30862 -14433,3302:131,21,-33,0,0,0.312734 -14434,3302:132,22,-33,0,0,0.300352 -14435,3302:133,23,-33,0,0,0.307328 -14436,3302:134,24,-33,0,0,0.284496 -14437,3302:235,25,-33,0,0,0.248968 -14438,3302:236,26,-33,0,0,0.235117 -14439,3302:237,27,-33,0,0,0.240593 -14440,3302:238,28,-33,0,0,0.26867 -14441,3302:239,29,-33,0,0,0.249987 -14442,3303:130,30,-33,0,0,0.278738 -14443,3303:131,31,-33,0,0,0.286613 -14444,3303:132,32,-33,0,0,0.258716 -14445,3303:133,33,-33,0,0,0.24272 -14446,3303:134,34,-33,0,0,0.271607 -14447,3303:235,35,-33,0,0,0.279483 -14448,3303:236,36,-33,0,0,0.266756 -14449,3303:237,37,-33,0,0,0.250431 -14450,3303:238,38,-33,0,0,0.257733 -14451,3303:239,39,-33,0,0,0.248009 -14452,3304:130,40,-33,0,0,0.20754 -14453,3304:131,41,-33,0,0,0.207676 -14454,3304:132,42,-33,0,0,0.220128 -14455,3304:133,43,-33,0,0,0.246842 -14456,3304:134,44,-33,0,0,0.227735 -14457,3304:235,45,-33,0,0,0.206646 -14458,3304:236,46,-33,0,0,0.207337 -14459,3304:237,47,-33,0,0,0.240067 -14460,3304:238,48,-33,0,0,0.244007 -14461,3304:239,49,-33,0,0,0.233238 -14462,3305:130,50,-33,0,0,0.237397 -14463,3305:131,51,-33,0,0,0.207523 -14464,3305:132,52,-33,0,0,0.237379 -14465,3305:133,53,-33,0,0,0.255635 -14466,3305:134,54,-33,0,0,0.255928 -14467,3305:235,55,-33,0,0,0.269741 -14468,3305:236,56,-33,0,0,0.2554 -14469,3305:237,57,-33,0,0,0.241796 -14470,3305:238,58,-33,0,0,0.237806 -14471,3305:239,59,-33,0,0,0.280124 -14472,3306:130,60,-33,0,0,0.311014 -14473,3306:131,61,-33,0,0,0.309937 -14474,3306:132,62,-33,0,0,0.301584 -14475,3306:133,63,-33,0,0,0.293276 -14476,3306:134,64,-33,0,0,0.30005 -14477,3306:235,65,-33,0,0,0.291873 -14478,3306:236,66,-33,0,0,0.283493 -14479,3306:237,67,-33,0,0,0.225771 -14480,3306:238,68,-33,0,0,0.238739 -14481,3306:239,69,-33,0,0,0.282243 -14482,3307:130,70,-33,0,0,0.279607 -14483,3307:131,71,-33,0,0,0.276657 -14484,3307:132,72,-33,0,0,0.27238 -14485,3307:134,74,-33,0,0,0.254737 -14486,3307:235,75,-33,0,0,0.25846 -14487,3307:236,76,-33,0,0,0.277872 -14488,3307:237,77,-33,0,0,0.265853 -14489,3307:238,78,-33,0,0,0.244671 -14490,3307:239,79,-33,0,0,0.24845 -14491,3308:130,80,-33,0,0,0.259052 -14492,3308:131,81,-33,0,0,0.268973 -14493,3308:132,82,-33,0,0,0.263773 -14494,3308:133,83,-33,0,0,0.261069 -14495,3308:134,84,-33,0,0,0.252403 -14496,3308:235,85,-33,0,0,0.2379 -14497,3308:236,86,-33,0,0,0.230967 -14498,3308:237,87,-33,0,0,0.233366 -14499,3308:238,88,-33,0,0,0.236988 -14500,3308:239,89,-33,0,0,0.236209 -14501,3309:130,90,-33,0,0,0.233274 -14502,3309:131,91,-33,0,0,0.234711 -14503,3309:132,92,-33,0,0,0.232687 -14504,3309:133,93,-33,0,0,0.227121 -14505,3309:134,94,-33,0,0,0.231478 -14506,3309:235,95,-33,0,0,0.247128 -14507,3309:236,96,-33,0,0,0.254561 -14508,3309:237,97,-33,0,0,0.251861 -14509,3309:238,98,-33,0,0,0.244215 -14510,3309:239,99,-33,0,0,0.248258 -14511,3310:130,100,-33,0,0,0.244804 -14512,3310:131,101,-33,0,0,0.244481 -14513,3310:132,102,-33,0,0,0.240086 -14514,3310:133,103,-33,0,0,0.23658 -14515,3310:134,104,-33,0,0,0.233109 -14516,3310:235,105,-33,0,0,0.237063 -14517,3310:236,106,-33,0,0,0.248641 -14518,3310:237,107,-33,0,0,0.249141 -14519,3310:238,108,-33,0,0,0.246193 -14520,3310:239,109,-33,0,0,0.244291 -14521,3311:130,110,-33,0,0,0.24125 -14522,3311:131,111,-33,0,0,0.241476 -14523,3311:132,112,-33,0,0,0.242947 -14524,3311:133,113,-33,0,0,0.239431 -14525,3311:134,114,-33,0,0,0.241589 -14526,3311:235,115,-33,0,0,0.240855 -14527,3311:236,116,-33,0,0,0.240818 -14528,3311:237,117,-33,0,0,0.242682 -14529,3311:238,118,-33,0,0,0.245907 -14530,3311:239,119,-33,0,0,0.247186 -14531,3312:130,120,-33,0,0,0.249699 -14532,3312:131,121,-33,0,0,0.252365 -14533,3312:132,122,-33,0,0,0.251068 -14534,3312:133,123,-33,0,0,0.250546 -14535,3312:134,124,-33,0,0,0.248219 -14536,3312:235,125,-33,0,0,0.245355 -14537,3312:236,126,-33,0,0,0.245183 -14538,3312:237,127,-33,0,0,0.254776 -14539,3312:238,128,-33,0,0,0.261286 -14540,3312:239,129,-33,0,0,0.248334 -14541,3313:130,130,-33,0,0,0.253374 -14542,3313:131,131,-33,0,0,0.250624 -14543,3313:132,132,-33,0,0,0.253432 -14544,3313:133,133,-33,0,0,0.251068 -14545,3313:134,134,-33,0,0,0.25501 -14546,3313:235,135,-33,0,0,0.254561 -14547,3313:236,136,-33,0,0,0.252287 -14548,3313:237,137,-33,0,0,0.253938 -14549,3313:238,138,-33,0,0,0.258205 -14550,3313:239,139,-33,0,0,0.283848 -14551,3314:130,140,-33,0,0,0.285774 -14552,3314:131,141,-33,0,0,0.294897 -14553,3314:132,142,-33,0,0,0.287812 -14554,3314:133,143,-33,0,0,0.292254 -14555,3314:134,144,-33,0,0,0.289732 -14556,3314:235,145,-33,0,0,0.317012 -14557,3314:239,149,-33,0,0,0.336078 -14558,3315:130,150,-33,0,0,0.31904 -14559,3315:131,151,-33,0,0,0.318215 -14560,3315:132,152,-33,0,0,0.305102 -14561,3315:133,153,-33,0,0,0.301995 -14562,3315:134,154,-33,0,0,0.309014 -14563,3315:235,155,-33,0,0,0.306803 -14564,3315:236,156,-33,0,0,0.30397 -14565,3315:237,157,-33,0,0,0.296931 -14566,3315:238,158,-33,0,0,0.295816 -14567,3315:239,159,-33,0,0,0.301606 -14568,3316:130,160,-33,0,0,0.30321 -14569,3316:131,161,-33,0,0,0.294876 -14570,3316:132,162,-33,0,0,0.290007 -14571,3316:133,163,-33,0,0,0.289436 -14572,3316:134,164,-33,0,0,0.289626 -14573,3316:235,165,-33,0,0,0.29113 -14574,3316:236,166,-33,0,0,0.291321 -14575,3316:237,167,-33,0,0,0.291448 -14576,3316:238,168,-33,0,0,0.295602 -14577,3316:239,169,-33,0,0,0.300806 -14578,3317:130,170,-33,0,0,0.294918 -14579,3317:131,171,-33,0,0,0.291405 -14580,3317:134,174,-33,0,0,0.259348 -14581,3317:235,175,-33,0,0,0.281037 -14582,3317:236,176,-33,0,0,0.305276 -14583,3317:237,177,-33,0,0,0.317212 -14584,3317:238,178,-33,0,0,0.346192 -14585,3317:239,179,-33,0,0,0.32919 -14586,3318:130,180,-33,0,0,0.294961 -14587,5318:120,-180,-32,0,0,0.335047 -14588,5317:229,-179,-32,0,0,0.325209 -14589,5317:228,-178,-32,0,0,0.324826 -14590,5317:227,-177,-32,0,0,0.323858 -14591,5317:226,-176,-32,0,0,0.322689 -14592,5317:225,-175,-32,0,0,0.331805 -14593,5317:124,-174,-32,0,0,0.327739 -14594,5317:123,-173,-32,0,0,0.310376 -14595,5317:122,-172,-32,0,0,0.301844 -14596,5317:121,-171,-32,0,0,0.308291 -14597,5317:120,-170,-32,0,0,0.308576 -14598,5316:229,-169,-32,0,0,0.302646 -14599,5316:228,-168,-32,0,0,0.30617 -14600,5316:227,-167,-32,0,0,0.307766 -14601,5316:226,-166,-32,0,0,0.309124 -14602,5316:225,-165,-32,0,0,0.312734 -14603,5316:124,-164,-32,0,0,0.307503 -14604,5316:123,-163,-32,0,0,0.312271 -14605,5316:122,-162,-32,0,0,0.311918 -14606,5316:121,-161,-32,0,0,0.319307 -14607,5316:120,-160,-32,0,0,0.327377 -14608,5315:229,-159,-32,0,0,0.328464 -14609,5315:228,-158,-32,0,0,0.329145 -14610,5315:227,-157,-32,0,0,0.329553 -14611,5315:226,-156,-32,0,0,0.334498 -14612,5315:225,-155,-32,0,0,0.337386 -14613,5315:124,-154,-32,0,0,0.341163 -14614,5315:123,-153,-32,0,0,0.340794 -14615,5315:122,-152,-32,0,0,0.341417 -14616,5315:121,-151,-32,0,0,0.33941 -14617,5315:120,-150,-32,0,0,0.338811 -14618,5314:229,-149,-32,0,0,0.341047 -14619,5314:228,-148,-32,0,0,0.346843 -14620,5314:227,-147,-32,0,0,0.346238 -14621,5314:226,-146,-32,0,0,0.345866 -14622,5314:225,-145,-32,0,0,0.343291 -14623,5314:124,-144,-32,0,0,0.344542 -14624,5314:123,-143,-32,0,0,0.346843 -14625,5314:122,-142,-32,0,0,0.345843 -14626,5314:121,-141,-32,0,0,0.343893 -14627,5314:120,-140,-32,0,0,0.342341 -14628,5313:229,-139,-32,0,0,0.341347 -14629,5313:228,-138,-32,0,0,0.338443 -14630,5313:227,-137,-32,0,0,0.334887 -14631,5313:226,-136,-32,0,0,0.332465 -14632,5313:225,-135,-32,0,0,0.332465 -14633,5313:124,-134,-32,0,0,0.331896 -14634,5313:123,-133,-32,0,0,0.33242 -14635,5313:122,-132,-32,0,0,0.328601 -14636,5313:121,-131,-32,0,0,0.331212 -14637,5313:120,-130,-32,0,0,0.333675 -14638,5312:229,-129,-32,0,0,0.332488 -14639,5312:228,-128,-32,0,0,0.329372 -14640,5312:227,-127,-32,0,0,0.331691 -14641,5312:226,-126,-32,0,0,0.326812 -14642,5312:225,-125,-32,0,0,0.327785 -14643,5312:124,-124,-32,0,0,0.324466 -14644,5312:123,-123,-32,0,0,0.326022 -14645,5312:122,-122,-32,0,0,0.315435 -14646,5312:121,-121,-32,0,0,0.318594 -14647,5312:120,-120,-32,0,0,0.311411 -14648,5311:229,-119,-32,0,0,0.311411 -14649,5311:228,-118,-32,0,0,0.312933 -14650,5311:227,-117,-32,0,0,0.317836 -14651,5311:226,-116,-32,0,0,0.31837 -14652,5311:225,-115,-32,0,0,0.316367 -14653,5311:124,-114,-32,0,0,0.315945 -14654,5311:123,-113,-32,0,0,0.310025 -14655,5311:122,-112,-32,0,0,0.29663 -14656,5311:121,-111,-32,0,0,0.28293 -14657,5311:120,-110,-32,0,0,0.287327 -14658,5310:229,-109,-32,0,0,0.284182 -14659,5310:228,-108,-32,0,0,0.279876 -14660,5310:227,-107,-32,0,0,0.277893 -14661,5310:226,-106,-32,0,0,0.276719 -14662,5310:225,-105,-32,0,0,0.281141 -14663,5310:124,-104,-32,0,0,0.279669 -14664,5310:123,-103,-32,0,0,0.277521 -14665,5310:122,-102,-32,0,0,0.285375 -14666,5310:121,-101,-32,0,0,0.27911 -14667,5310:120,-100,-32,0,0,0.278759 -14668,5309:229,-99,-32,0,0,0.276616 -14669,5309:228,-98,-32,0,0,0.278387 -14670,5309:227,-97,-32,0,0,0.271506 -14671,5309:226,-96,-32,0,0,0.275036 -14672,5309:225,-95,-32,0,0,0.271933 -14673,5309:124,-94,-32,0,0,0.272564 -14674,5309:123,-93,-32,0,0,0.275138 -14675,5309:122,-92,-32,0,0,0.27116 -14676,5309:121,-91,-32,0,0,0.267803 -14677,5309:120,-90,-32,0,0,0.26962 -14678,5308:229,-89,-32,0,0,0.266817 -14679,5308:228,-88,-32,0,0,0.268165 -14680,5308:227,-87,-32,0,0,0.265192 -14681,5308:226,-86,-32,0,0,0.267823 -14682,5308:225,-85,-32,0,0,0.27438 -14683,5308:124,-84,-32,0,0,0.272095 -14684,5308:123,-83,-32,0,0,0.269276 -14685,5308:122,-82,-32,0,0,0.26214 -14686,5308:121,-81,-32,0,0,0.261842 -14687,5308:120,-80,-32,0,0,0.263195 -14688,5307:229,-79,-32,0,0,0.266034 -14689,5307:228,-78,-32,0,0,0.268065 -14690,5307:227,-77,-32,0,0,0.266495 -14691,5307:226,-76,-32,0,0,0.273032 -14692,5307:225,-75,-32,0,0,0.275097 -14693,5307:124,-74,-32,0,0,0.275897 -14694,5306:225,-65,-32,0,0,0.342851 -14695,5306:124,-64,-32,0,0,0.349805 -14696,5306:123,-63,-32,0,0,0.354752 -14697,5306:122,-62,-32,0,0,0.343917 -14698,5306:121,-61,-32,0,0,0.342481 -14699,5306:120,-60,-32,0,0,0.346634 -14700,5305:229,-59,-32,0,0,0.332967 -14701,5305:228,-58,-32,0,0,0.305821 -14702,5305:227,-57,-32,0,0,0.25351 -14703,5305:226,-56,-32,0,0,0.250894 -14704,5305:225,-55,-32,0,0,0.296952 -14705,5305:124,-54,-32,0,0,0.345076 -14706,5305:123,-53,-32,0,0,0.299015 -14707,5305:122,-52,-32,0,0,0.305102 -14708,5305:121,-51,-32,0,0,0.316456 -14709,5305:120,-50,-32,0,0,0.35353 -14710,5304:229,-49,-32,0,0,0.392772 -14711,5304:228,-48,-32,0,0,0.336284 -14712,5304:227,-47,-32,0,0,0.280435 -14713,5304:226,-46,-32,0,0,0.283472 -14714,5304:225,-45,-32,0,0,0.275097 -14715,5304:124,-44,-32,0,0,0.275179 -14716,5304:123,-43,-32,0,0,0.274872 -14717,5304:122,-42,-32,0,0,0.277068 -14718,5304:121,-41,-32,0,0,0.303948 -14719,5304:120,-40,-32,0,0,0.311455 -14720,5303:229,-39,-32,0,0,0.293681 -14721,5303:228,-38,-32,0,0,0.272686 -14722,5303:227,-37,-32,0,0,0.274094 -14723,5303:226,-36,-32,0,0,0.270187 -14724,5303:225,-35,-32,0,0,0.266817 -14725,5303:124,-34,-32,0,0,0.257026 -14726,5303:123,-33,-32,0,0,0.266234 -14727,5303:122,-32,-32,0,0,0.273053 -14728,5303:121,-31,-32,0,0,0.275691 -14729,5303:120,-30,-32,0,0,0.281037 -14730,5302:229,-29,-32,0,0,0.288001 -14731,5302:228,-28,-32,0,0,0.284412 -14732,5302:227,-27,-32,0,0,0.274115 -14733,5302:226,-26,-32,0,0,0.271302 -14734,5302:225,-25,-32,0,0,0.276924 -14735,5302:124,-24,-32,0,0,0.285145 -14736,5302:123,-23,-32,0,0,0.284308 -14737,5302:122,-22,-32,0,0,0.274954 -14738,5302:121,-21,-32,0,0,0.263813 -14739,5302:120,-20,-32,0,0,0.258244 -14740,5301:229,-19,-32,0,0,0.241947 -14741,5301:228,-18,-32,0,0,0.232577 -14742,5301:227,-17,-32,0,0,0.211899 -14743,5301:226,-16,-32,0,0,0.21082 -14744,5301:225,-15,-32,0,0,0.250026 -14745,5301:124,-14,-32,0,0,0.275445 -14746,5301:123,-13,-32,0,0,0.26746 -14747,5301:122,-12,-32,0,0,0.266556 -14748,5301:121,-11,-32,0,0,0.254912 -14749,5301:120,-10,-32,0,0,0.254191 -14750,5300:229,-9,-32,0,0,0.25316 -14751,5300:228,-8,-32,0,0,0.25501 -14752,5300:227,-7,-32,0,0,0.265632 -14753,5300:226,-6,-32,0,0,0.25791 -14754,5300:225,-5,-32,0,0,0.251319 -14755,5300:124,-4,-32,0,0,0.246326 -14756,5300:123,-3,-32,0,0,0.247702 -14757,5300:122,-2,-32,0,0,0.248987 -14758,5300:121,-1,-32,0,0,0.246117 -14759,3300:121,0,-32,0,0,0.248833 -14760,3300:121,1,-32,0,0,0.252326 -14761,3300:122,2,-32,0,0,0.251358 -14762,3300:123,3,-32,0,0,0.244652 -14763,3300:124,4,-32,0,0,0.249371 -14764,3300:225,5,-32,0,0,0.252869 -14765,3300:226,6,-32,0,0,0.248201 -14766,3300:227,7,-32,0,0,0.254152 -14767,3300:228,8,-32,0,0,0.23859 -14768,3300:229,9,-32,0,0,0.238832 -14769,3301:120,10,-32,0,0,0.24776 -14770,3301:121,11,-32,0,0,0.249795 -14771,3301:122,12,-32,0,0,0.259841 -14772,3301:123,13,-32,0,0,0.247568 -14773,3301:124,14,-32,0,0,0.273828 -14774,3301:225,15,-32,0,0,0.309081 -14775,3301:226,16,-32,0,0,0.349595 -14776,3301:227,17,-32,0,0,0.40856 -14777,3301:228,18,-32,0,0,0.4102 -14778,3301:229,19,-32,0,0,0.40106 -14779,3302:120,20,-32,0,0,0.345634 -14780,3302:121,21,-32,0,0,0.333287 -14781,3302:122,22,-32,0,0,0.365857 -14782,3302:123,23,-32,0,0,0.372341 -14783,3302:124,24,-32,0,0,0.371213 -14784,3302:225,25,-32,0,0,0.378267 -14785,3302:226,26,-32,0,0,0.369536 -14786,3302:227,27,-32,0,0,0.344079 -14787,3302:228,28,-32,0,0,0.275794 -14788,3302:229,29,-32,0,0,0.308905 -14789,3303:120,30,-32,0,0,0.336032 -14790,3303:121,31,-32,0,0,0.348101 -14791,3303:122,32,-32,0,0,0.330393 -14792,3303:123,33,-32,0,0,0.30434 -14793,3303:124,34,-32,0,0,0.318036 -14794,3303:225,35,-32,0,0,0.329122 -14795,3303:226,36,-32,0,0,0.371573 -14796,3303:227,37,-32,0,0,0.360227 -14797,3303:228,38,-32,0,0,0.323813 -14798,3303:229,39,-32,0,0,0.315279 -14799,3304:120,40,-32,0,0,0.33242 -14800,3304:121,41,-32,0,0,0.334429 -14801,3304:122,42,-32,0,0,0.286403 -14802,3304:123,43,-32,0,0,0.254191 -14803,3304:124,44,-32,0,0,0.296352 -14804,3304:225,45,-32,0,0,0.3274 -14805,3304:226,46,-32,0,0,0.343824 -14806,3304:227,47,-32,0,0,0.31053 -14807,3304:228,48,-32,0,0,0.247301 -14808,3304:229,49,-32,0,0,0.305646 -14809,3305:120,50,-32,0,0,0.34054 -14810,3305:121,51,-32,0,0,0.339663 -14811,3305:122,52,-32,0,0,0.320448 -14812,3305:123,53,-32,0,0,0.265813 -14813,3305:124,54,-32,0,0,0.260929 -14814,3305:225,55,-32,0,0,0.3253 -14815,3305:226,56,-32,0,0,0.308839 -14816,3305:227,57,-32,0,0,0.310091 -14817,3305:228,58,-32,0,0,0.310223 -14818,3305:229,59,-32,0,0,0.309541 -14819,3306:120,60,-32,0,0,0.305211 -14820,3306:121,61,-32,0,0,0.310134 -14821,3306:122,62,-32,0,0,0.308313 -14822,3306:123,63,-32,0,0,0.295431 -14823,3306:124,64,-32,0,0,0.300439 -14824,3306:225,65,-32,0,0,0.292021 -14825,3306:226,66,-32,0,0,0.295367 -14826,3306:227,67,-32,0,0,0.290981 -14827,3306:228,68,-32,0,0,0.277893 -14828,3306:229,69,-32,0,0,0.290473 -14829,3307:120,70,-32,0,0,0.286466 -14830,3307:121,71,-32,0,0,0.293808 -14831,3307:122,72,-32,0,0,0.289563 -14832,3307:124,74,-32,0,0,0.277893 -14833,3307:225,75,-32,0,0,0.286277 -14834,3307:226,76,-32,0,0,0.287728 -14835,3307:227,77,-32,0,0,0.27236 -14836,3307:228,78,-32,0,0,0.264771 -14837,3307:229,79,-32,0,0,0.279255 -14838,3308:120,80,-32,0,0,0.279876 -14839,3308:121,81,-32,0,0,0.264272 -14840,3308:122,82,-32,0,0,0.257693 -14841,3308:123,83,-32,0,0,0.264672 -14842,3308:124,84,-32,0,0,0.26734 -14843,3308:225,85,-32,0,0,0.265172 -14844,3308:226,86,-32,0,0,0.248124 -14845,3308:227,87,-32,0,0,0.253899 -14846,3308:228,88,-32,0,0,0.263673 -14847,3308:229,89,-32,0,0,0.250392 -14848,3309:120,90,-32,0,0,0.249641 -14849,3309:121,91,-32,0,0,0.265032 -14850,3309:122,92,-32,0,0,0.268126 -14851,3309:123,93,-32,0,0,0.266395 -14852,3309:124,94,-32,0,0,0.26212 -14853,3309:225,95,-32,0,0,0.25992 -14854,3309:226,96,-32,0,0,0.258027 -14855,3309:227,97,-32,0,0,0.256183 -14856,3309:228,98,-32,0,0,0.25353 -14857,3309:229,99,-32,0,0,0.251609 -14858,3310:120,100,-32,0,0,0.257182 -14859,3310:121,101,-32,0,0,0.260276 -14860,3310:122,102,-32,0,0,0.259052 -14861,3310:123,103,-32,0,0,0.258146 -14862,3310:124,104,-32,0,0,0.257104 -14863,3310:225,105,-32,0,0,0.258599 -14864,3310:226,106,-32,0,0,0.25587 -14865,3310:227,107,-32,0,0,0.254405 -14866,3310:228,108,-32,0,0,0.253024 -14867,3310:229,109,-32,0,0,0.251706 -14868,3311:120,110,-32,0,0,0.253549 -14869,3311:121,111,-32,0,0,0.252791 -14870,3311:122,112,-32,0,0,0.253685 -14871,3311:123,113,-32,0,0,0.251822 -14872,3311:124,114,-32,0,0,0.255694 -14873,3311:225,115,-32,0,0,0.259664 -14874,3311:226,116,-32,0,0,0.261246 -14875,3311:227,117,-32,0,0,0.261386 -14876,3311:228,118,-32,0,0,0.261386 -14877,3311:229,119,-32,0,0,0.263912 -14878,3312:120,120,-32,0,0,0.265492 -14879,3312:121,121,-32,0,0,0.265412 -14880,3312:122,122,-32,0,0,0.266054 -14881,3312:123,123,-32,0,0,0.269701 -14882,3312:124,124,-32,0,0,0.269458 -14883,3312:225,125,-32,0,0,0.265352 -14884,3312:226,126,-32,0,0,0.265012 -14885,3312:227,127,-32,0,0,0.271282 -14886,3312:228,128,-32,0,0,0.271668 -14887,3312:229,129,-32,0,0,0.271364 -14888,3313:120,130,-32,0,0,0.270511 -14889,3313:121,131,-32,0,0,0.272279 -14890,3313:122,132,-32,0,0,0.273338 -14891,3313:123,133,-32,0,0,0.270876 -14892,3313:124,134,-32,0,0,0.276369 -14893,3313:225,135,-32,0,0,0.283118 -14894,3313:226,136,-32,0,0,0.289183 -14895,3313:227,137,-32,0,0,0.297875 -14896,3313:228,138,-32,0,0,0.295624 -14897,3313:229,139,-32,0,0,0.31172 -14898,3314:120,140,-32,0,0,0.316501 -14899,3314:121,141,-32,0,0,0.307503 -14900,3314:122,142,-32,0,0,0.303752 -14901,3314:123,143,-32,0,0,0.314371 -14902,3314:124,144,-32,0,0,0.321164 -14903,3314:229,149,-32,0,0,0.355316 -14904,3315:120,150,-32,0,0,0.345193 -14905,3315:121,151,-32,0,0,0.357508 -14906,3315:122,152,-32,0,0,0.347262 -14907,3315:123,153,-32,0,0,0.346518 -14908,3315:124,154,-32,0,0,0.335986 -14909,3315:225,155,-32,0,0,0.327468 -14910,3315:226,156,-32,0,0,0.328328 -14911,3315:227,157,-32,0,0,0.326383 -14912,3315:228,158,-32,0,0,0.329008 -14913,3315:229,159,-32,0,0,0.331554 -14914,3316:120,160,-32,0,0,0.329689 -14915,3316:121,161,-32,0,0,0.324016 -14916,3316:122,162,-32,0,0,0.321657 -14917,3316:123,163,-32,0,0,0.317457 -14918,3316:124,164,-32,0,0,0.31183 -14919,3316:225,165,-32,0,0,0.310992 -14920,3316:226,166,-32,0,0,0.311786 -14921,3316:227,167,-32,0,0,0.315258 -14922,3316:228,168,-32,0,0,0.311984 -14923,3316:229,169,-32,0,0,0.314482 -14924,3317:120,170,-32,0,0,0.313419 -14925,3317:121,171,-32,0,0,0.306607 -14926,3317:122,172,-32,0,0,0.301238 -14927,3317:227,177,-32,0,0,0.328601 -14928,3317:228,178,-32,0,0,0.339571 -14929,3317:229,179,-32,0,0,0.32233 -14930,3318:120,180,-32,0,0,0.335047 -14931,5318:110,-180,-31,0,0,0.345727 -14932,5317:219,-179,-31,0,0,0.338903 -14933,5317:218,-178,-31,0,0,0.329962 -14934,5317:217,-177,-31,0,0,0.334956 -14935,5317:216,-176,-31,0,0,0.334475 -14936,5317:215,-175,-31,0,0,0.330144 -14937,5317:114,-174,-31,0,0,0.325345 -14938,5317:113,-173,-31,0,0,0.31837 -14939,5317:112,-172,-31,0,0,0.323926 -14940,5317:111,-171,-31,0,0,0.332374 -14941,5317:110,-170,-31,0,0,0.326428 -14942,5316:219,-169,-31,0,0,0.323116 -14943,5316:218,-168,-31,0,0,0.324556 -14944,5316:217,-167,-31,0,0,0.324443 -14945,5316:216,-166,-31,0,0,0.323678 -14946,5316:215,-165,-31,0,0,0.325435 -14947,5316:114,-164,-31,0,0,0.320716 -14948,5316:113,-163,-31,0,0,0.325886 -14949,5316:112,-162,-31,0,0,0.329349 -14950,5316:111,-161,-31,0,0,0.342874 -14951,5316:110,-160,-31,0,0,0.343986 -14952,5315:219,-159,-31,0,0,0.342203 -14953,5315:218,-158,-31,0,0,0.345611 -14954,5315:217,-157,-31,0,0,0.343963 -14955,5315:216,-156,-31,0,0,0.345425 -14956,5315:215,-155,-31,0,0,0.347845 -14957,5315:114,-154,-31,0,0,0.352333 -14958,5315:113,-153,-31,0,0,0.354893 -14959,5315:112,-152,-31,0,0,0.358713 -14960,5315:111,-151,-31,0,0,0.355834 -14961,5315:110,-150,-31,0,0,0.358453 -14962,5314:219,-149,-31,0,0,0.36044 -14963,5314:218,-148,-31,0,0,0.363786 -14964,5314:217,-147,-31,0,0,0.362052 -14965,5314:216,-146,-31,0,0,0.362265 -14966,5314:215,-145,-31,0,0,0.361648 -14967,5314:114,-144,-31,0,0,0.359967 -14968,5314:113,-143,-31,0,0,0.363168 -14969,5314:112,-142,-31,0,0,0.362218 -14970,5314:111,-141,-31,0,0,0.358052 -14971,5314:110,-140,-31,0,0,0.357956 -14972,5313:219,-139,-31,0,0,0.354117 -14973,5313:218,-138,-31,0,0,0.352756 -14974,5313:217,-137,-31,0,0,0.349852 -14975,5313:216,-136,-31,0,0,0.347123 -14976,5313:215,-135,-31,0,0,0.349782 -14977,5313:114,-134,-31,0,0,0.349151 -14978,5313:113,-133,-31,0,0,0.349688 -14979,5313:112,-132,-31,0,0,0.350039 -14980,5313:111,-131,-31,0,0,0.347985 -14981,5313:110,-130,-31,0,0,0.347542 -14982,5312:219,-129,-31,0,0,0.346611 -14983,5312:218,-128,-31,0,0,0.342411 -14984,5312:217,-127,-31,0,0,0.335162 -14985,5312:216,-126,-31,0,0,0.335436 -14986,5312:215,-125,-31,0,0,0.33649 -14987,5312:114,-124,-31,0,0,0.33842 -14988,5312:113,-123,-31,0,0,0.333675 -14989,5312:112,-122,-31,0,0,0.331941 -14990,5312:111,-121,-31,0,0,0.324984 -14991,5312:110,-120,-31,0,0,0.321545 -14992,5311:219,-119,-31,0,0,0.326315 -14993,5311:218,-118,-31,0,0,0.332488 -14994,5311:217,-117,-31,0,0,0.33594 -14995,5311:216,-116,-31,0,0,0.336995 -14996,5311:215,-115,-31,0,0,0.333104 -14997,5311:114,-114,-31,0,0,0.31962 -14998,5311:113,-113,-31,0,0,0.31508 -14999,5311:112,-112,-31,0,0,0.310486 -15000,5311:111,-111,-31,0,0,0.297037 -15001,5311:110,-110,-31,0,0,0.294257 -15002,5310:219,-109,-31,0,0,0.304993 -15003,5310:218,-108,-31,0,0,0.296995 -15004,5310:217,-107,-31,0,0,0.29183 -15005,5310:216,-106,-31,0,0,0.296887 -15006,5310:215,-105,-31,0,0,0.293446 -15007,5310:114,-104,-31,0,0,0.299899 -15008,5310:113,-103,-31,0,0,0.294683 -15009,5310:112,-102,-31,0,0,0.294384 -15010,5310:111,-101,-31,0,0,0.295945 -15011,5310:110,-100,-31,0,0,0.291341 -15012,5309:219,-99,-31,0,0,0.296116 -15013,5309:218,-98,-31,0,0,0.298348 -15014,5309:217,-97,-31,0,0,0.291002 -15015,5309:216,-96,-31,0,0,0.294107 -15016,5309:215,-95,-31,0,0,0.29268 -15017,5309:114,-94,-31,0,0,0.298649 -15018,5309:113,-93,-31,0,0,0.300762 -15019,5309:112,-92,-31,0,0,0.288971 -15020,5309:111,-91,-31,0,0,0.283806 -15021,5309:110,-90,-31,0,0,0.282825 -15022,5308:219,-89,-31,0,0,0.284287 -15023,5308:218,-88,-31,0,0,0.284663 -15024,5308:217,-87,-31,0,0,0.287265 -15025,5308:216,-86,-31,0,0,0.288845 -15026,5308:215,-85,-31,0,0,0.286844 -15027,5308:114,-84,-31,0,0,0.279483 -15028,5308:113,-83,-31,0,0,0.276267 -15029,5308:112,-82,-31,0,0,0.271648 -15030,5308:111,-81,-31,0,0,0.276965 -15031,5308:110,-80,-31,0,0,0.278863 -15032,5307:219,-79,-31,0,0,0.281099 -15033,5307:218,-78,-31,0,0,0.282763 -15034,5307:217,-77,-31,0,0,0.28817 -15035,5307:216,-76,-31,0,0,0.287433 -15036,5307:215,-75,-31,0,0,0.288233 -15037,5307:114,-74,-31,0,0,0.291045 -15038,5306:112,-62,-31,0,0,0.424414 -15039,5306:111,-61,-31,0,0,0.370662 -15040,5306:110,-60,-31,0,0,0.366072 -15041,5305:219,-59,-31,0,0,0.35567 -15042,5305:218,-58,-31,0,0,0.346797 -15043,5305:217,-57,-31,0,0,0.330553 -15044,5305:216,-56,-31,0,0,0.263175 -15045,5305:215,-55,-31,0,0,0.263713 -15046,5305:114,-54,-31,0,0,0.33711 -15047,5305:113,-53,-31,0,0,0.39358 -15048,5305:112,-52,-31,0,0,0.32397 -15049,5305:111,-51,-31,0,0,0.339295 -15050,5305:110,-50,-31,0,0,0.399383 -15051,5304:219,-49,-31,0,0,0.409553 -15052,5304:218,-48,-31,0,0,0.350179 -15053,5304:217,-47,-31,0,0,0.374288 -15054,5304:216,-46,-31,0,0,0.381849 -15055,5304:215,-45,-31,0,0,0.356847 -15056,5304:114,-44,-31,0,0,0.302104 -15057,5304:113,-43,-31,0,0,0.288381 -15058,5304:112,-42,-31,0,0,0.32103 -15059,5304:111,-41,-31,0,0,0.337432 -15060,5304:110,-40,-31,0,0,0.324016 -15061,5303:219,-39,-31,0,0,0.303709 -15062,5303:218,-38,-31,0,0,0.289648 -15063,5303:217,-37,-31,0,0,0.281681 -15064,5303:216,-36,-31,0,0,0.292042 -15065,5303:215,-35,-31,0,0,0.296159 -15066,5303:114,-34,-31,0,0,0.292042 -15067,5303:113,-33,-31,0,0,0.296266 -15068,5303:112,-32,-31,0,0,0.308203 -15069,5303:111,-31,-31,0,0,0.309695 -15070,5303:110,-30,-31,0,0,0.308401 -15071,5302:219,-29,-31,0,0,0.318348 -15072,5302:218,-28,-31,0,0,0.307284 -15073,5302:217,-27,-31,0,0,0.30593 -15074,5302:216,-26,-31,0,0,0.305777 -15075,5302:215,-25,-31,0,0,0.302797 -15076,5302:114,-24,-31,0,0,0.30033 -15077,5302:113,-23,-31,0,0,0.298413 -15078,5302:112,-22,-31,0,0,0.29166 -15079,5302:111,-21,-31,0,0,0.28527 -15080,5302:110,-20,-31,0,0,0.2621 -15081,5301:219,-19,-31,0,0,0.26087 -15082,5301:218,-18,-31,0,0,0.271546 -15083,5301:217,-17,-31,0,0,0.275405 -15084,5301:216,-16,-31,0,0,0.276389 -15085,5301:215,-15,-31,0,0,0.290769 -15086,5301:114,-14,-31,0,0,0.288739 -15087,5301:113,-13,-31,0,0,0.274851 -15088,5301:112,-12,-31,0,0,0.279607 -15089,5301:111,-11,-31,0,0,0.282721 -15090,5301:110,-10,-31,0,0,0.277851 -15091,5300:219,-9,-31,0,0,0.280373 -15092,5300:218,-8,-31,0,0,0.277439 -15093,5300:217,-7,-31,0,0,0.274565 -15094,5300:216,-6,-31,0,0,0.271851 -15095,5300:215,-5,-31,0,0,0.277233 -15096,5300:114,-4,-31,0,0,0.274954 -15097,5300:113,-3,-31,0,0,0.262081 -15098,5300:112,-2,-31,0,0,0.265973 -15099,5300:111,-1,-31,0,0,0.262219 -15100,3300:111,0,-31,0,0,0.265813 -15101,3300:111,1,-31,0,0,0.258618 -15102,3300:112,2,-31,0,0,0.258244 -15103,3300:113,3,-31,0,0,0.266596 -15104,3300:114,4,-31,0,0,0.28139 -15105,3300:215,5,-31,0,0,0.281099 -15106,3300:216,6,-31,0,0,0.288064 -15107,3300:217,7,-31,0,0,0.308839 -15108,3300:218,8,-31,0,0,0.317546 -15109,3300:219,9,-31,0,0,0.310068 -15110,3301:110,10,-31,0,0,0.307766 -15111,3301:111,11,-31,0,0,0.358926 -15112,3301:112,12,-31,0,0,0.348591 -15113,3301:113,13,-31,0,0,0.366406 -15114,3301:114,14,-31,0,0,0.371957 -15115,3301:215,15,-31,0,0,0.344148 -15116,3301:216,16,-31,0,0,0.347355 -15117,3301:217,17,-31,0,0,0.425418 -15118,3301:218,18,-31,0,0,0.422533 -15119,3301:219,19,-31,0,0,0.430398 -15120,3302:110,20,-31,0,0,0.408983 -15121,3302:111,21,-31,0,0,0.359895 -15122,3302:112,22,-31,0,0,0.379306 -15123,3302:113,23,-31,0,0,0.40784 -15124,3302:114,24,-31,0,0,0.392085 -15125,3302:215,25,-31,0,0,0.364667 -15126,3302:216,26,-31,0,0,0.359753 -15127,3302:217,27,-31,0,0,0.328918 -15128,3302:218,28,-31,0,0,0.325164 -15129,3302:219,29,-31,0,0,0.356989 -15130,3303:110,30,-31,0,0,0.411045 -15131,3303:111,31,-31,0,0,0.414706 -15132,3303:112,32,-31,0,0,0.398816 -15133,3303:113,33,-31,0,0,0.321657 -15134,3303:114,34,-31,0,0,0.322173 -15135,3303:215,35,-31,0,0,0.390128 -15136,3303:216,36,-31,0,0,0.381971 -15137,3303:217,37,-31,0,0,0.383549 -15138,3303:218,38,-31,0,0,0.335505 -15139,3303:219,39,-31,0,0,0.321366 -15140,3304:110,40,-31,0,0,0.353131 -15141,3304:111,41,-31,0,0,0.371046 -15142,3304:112,42,-31,0,0,0.368077 -15143,3304:113,43,-31,0,0,0.345564 -15144,3304:114,44,-31,0,0,0.323431 -15145,3304:215,45,-31,0,0,0.357414 -15146,3304:216,46,-31,0,0,0.352778 -15147,3304:217,47,-31,0,0,0.351607 -15148,3304:218,48,-31,0,0,0.338604 -15149,3304:219,49,-31,0,0,0.339917 -15150,3305:110,50,-31,0,0,0.345843 -15151,3305:111,51,-31,0,0,0.328283 -15152,3305:112,52,-31,0,0,0.336376 -15153,3305:113,53,-31,0,0,0.30087 -15154,3305:114,54,-31,0,0,0.301497 -15155,3305:215,55,-31,0,0,0.330258 -15156,3305:216,56,-31,0,0,0.307722 -15157,3305:217,57,-31,0,0,0.306541 -15158,3305:218,58,-31,0,0,0.302971 -15159,3305:219,59,-31,0,0,0.305254 -15160,3306:110,60,-31,0,0,0.311918 -15161,3306:111,61,-31,0,0,0.313928 -15162,3306:112,62,-31,0,0,0.309849 -15163,3306:113,63,-31,0,0,0.305341 -15164,3306:114,64,-31,0,0,0.309387 -15165,3306:215,65,-31,0,0,0.305211 -15166,3306:216,66,-31,0,0,0.306497 -15167,3306:217,67,-31,0,0,0.305777 -15168,3306:218,68,-31,0,0,0.307831 -15169,3306:219,69,-31,0,0,0.305668 -15170,3307:110,70,-31,0,0,0.294705 -15171,3307:111,71,-31,0,0,0.302342 -15172,3307:112,72,-31,0,0,0.29588 -15173,3307:114,74,-31,0,0,0.298821 -15174,3307:215,75,-31,0,0,0.300892 -15175,3307:216,76,-31,0,0,0.299425 -15176,3307:217,77,-31,0,0,0.29464 -15177,3307:218,78,-31,0,0,0.288528 -15178,3307:219,79,-31,0,0,0.29268 -15179,3308:110,80,-31,0,0,0.290261 -15180,3308:111,81,-31,0,0,0.282471 -15181,3308:112,82,-31,0,0,0.274156 -15182,3308:113,83,-31,0,0,0.28697 -15183,3308:114,84,-31,0,0,0.289204 -15184,3308:215,85,-31,0,0,0.284601 -15185,3308:216,86,-31,0,0,0.277727 -15186,3308:217,87,-31,0,0,0.281494 -15187,3308:218,88,-31,0,0,0.280104 -15188,3308:219,89,-31,0,0,0.270795 -15189,3309:110,90,-31,0,0,0.273441 -15190,3309:111,91,-31,0,0,0.271607 -15191,3309:112,92,-31,0,0,0.270471 -15192,3309:113,93,-31,0,0,0.269822 -15193,3309:114,94,-31,0,0,0.269418 -15194,3309:215,95,-31,0,0,0.268085 -15195,3309:216,96,-31,0,0,0.265172 -15196,3309:217,97,-31,0,0,0.261445 -15197,3309:218,98,-31,0,0,0.259762 -15198,3309:219,99,-31,0,0,0.262637 -15199,3310:110,100,-31,0,0,0.267219 -15200,3310:111,101,-31,0,0,0.266737 -15201,3310:112,102,-31,0,0,0.265813 -15202,3310:113,103,-31,0,0,0.265933 -15203,3310:114,104,-31,0,0,0.266737 -15204,3310:215,105,-31,0,0,0.266676 -15205,3310:216,106,-31,0,0,0.266737 -15206,3310:217,107,-31,0,0,0.265954 -15207,3310:218,108,-31,0,0,0.264252 -15208,3310:219,109,-31,0,0,0.264332 -15209,3311:110,110,-31,0,0,0.265753 -15210,3311:111,111,-31,0,0,0.270045 -15211,3311:112,112,-31,0,0,0.311257 -15212,3311:113,113,-31,0,0,0.277006 -15213,3311:114,114,-31,0,0,0.27039 -15214,3311:215,115,-31,0,0,0.277769 -15215,3311:216,116,-31,0,0,0.28412 -15216,3311:217,117,-31,0,0,0.284998 -15217,3311:218,118,-31,0,0,0.28504 -15218,3311:219,119,-31,0,0,0.285124 -15219,3312:110,120,-31,0,0,0.281785 -15220,3312:111,121,-31,0,0,0.282618 -15221,3312:112,122,-31,0,0,0.289711 -15222,3312:113,123,-31,0,0,0.289901 -15223,3312:114,124,-31,0,0,0.289352 -15224,3312:215,125,-31,0,0,0.283848 -15225,3312:216,126,-31,0,0,0.2794 -15226,3312:217,127,-31,0,0,0.288381 -15227,3312:218,128,-31,0,0,0.285312 -15228,3312:219,129,-31,0,0,0.284182 -15229,3313:110,130,-31,0,0,0.28718 -15230,3313:111,131,-31,0,0,0.290685 -15231,3313:112,132,-31,0,0,0.290303 -15232,3313:113,133,-31,0,0,0.292786 -15233,3313:114,134,-31,0,0,0.294598 -15234,3313:215,135,-31,0,0,0.300654 -15235,3313:216,136,-31,0,0,0.311102 -15236,3313:217,137,-31,0,0,0.30545 -15237,3313:218,138,-31,0,0,0.317969 -15238,3313:219,139,-31,0,0,0.329372 -15239,3314:110,140,-31,0,0,0.325007 -15240,3314:111,141,-31,0,0,0.332876 -15241,3314:112,142,-31,0,0,0.334521 -15242,3314:113,143,-31,0,0,0.335162 -15243,3314:114,144,-31,0,0,0.347635 -15244,3314:215,145,-31,0,0,0.353999 -15245,3314:216,146,-31,0,0,0.343222 -15246,3314:217,147,-31,0,0,0.343291 -15247,3314:218,148,-31,0,0,0.372437 -15248,3314:219,149,-31,0,0,0.3655 -15249,3315:110,150,-31,0,0,0.354422 -15250,3315:111,151,-31,0,0,0.360843 -15251,3315:112,152,-31,0,0,0.38134 -15252,3315:113,153,-31,0,0,0.367982 -15253,3315:114,154,-31,0,0,0.352919 -15254,3315:215,155,-31,0,0,0.352756 -15255,3315:216,156,-31,0,0,0.357862 -15256,3315:217,157,-31,0,0,0.358783 -15257,3315:218,158,-31,0,0,0.359493 -15258,3315:219,159,-31,0,0,0.364952 -15259,3316:110,160,-31,0,0,0.364286 -15260,3316:111,161,-31,0,0,0.362337 -15261,3316:112,162,-31,0,0,0.350554 -15262,3316:113,163,-31,0,0,0.34024 -15263,3316:114,164,-31,0,0,0.33331 -15264,3316:215,165,-31,0,0,0.337501 -15265,3316:216,166,-31,0,0,0.336651 -15266,3316:217,167,-31,0,0,0.330416 -15267,3316:218,168,-31,0,0,0.324173 -15268,3316:219,169,-31,0,0,0.323318 -15269,3317:110,170,-31,0,0,0.323431 -15270,3317:111,171,-31,0,0,0.322599 -15271,3317:112,172,-31,0,0,0.311235 -15272,3317:113,173,-31,0,0,0.308795 -15273,3317:114,174,-31,0,0,0.312271 -15274,3317:215,175,-31,0,0,0.332922 -15275,3317:218,178,-31,0,0,0.378556 -15276,3317:219,179,-31,0,0,0.367767 -15277,3318:110,180,-31,0,0,0.345727 -15278,5318:100,-180,-30,0,0,0.369967 -15279,5317:209,-179,-30,0,0,0.347402 -15280,5317:208,-178,-30,0,0,0.345588 -15281,5317:207,-177,-30,0,0,0.345866 -15282,5317:206,-176,-30,0,0,0.338259 -15283,5317:205,-175,-30,0,0,0.335574 -15284,5317:104,-174,-30,0,0,0.337018 -15285,5317:103,-173,-30,0,0,0.340078 -15286,5317:102,-172,-30,0,0,0.351396 -15287,5317:101,-171,-30,0,0,0.349338 -15288,5317:100,-170,-30,0,0,0.346215 -15289,5316:209,-169,-30,0,0,0.340725 -15290,5316:208,-168,-30,0,0,0.337225 -15291,5316:207,-167,-30,0,0,0.336628 -15292,5316:206,-166,-30,0,0,0.340309 -15293,5316:205,-165,-30,0,0,0.343198 -15294,5316:104,-164,-30,0,0,0.345425 -15295,5316:103,-163,-30,0,0,0.349571 -15296,5316:102,-162,-30,0,0,0.350296 -15297,5316:101,-161,-30,0,0,0.355481 -15298,5316:100,-160,-30,0,0,0.355222 -15299,5315:209,-159,-30,0,0,0.358406 -15300,5315:208,-158,-30,0,0,0.358359 -15301,5315:207,-157,-30,0,0,0.35454 -15302,5315:206,-156,-30,0,0,0.354305 -15303,5315:205,-155,-30,0,0,0.35824 -15304,5315:104,-154,-30,0,0,0.363763 -15305,5315:103,-153,-30,0,0,0.365357 -15306,5315:102,-152,-30,0,0,0.365286 -15307,5315:101,-151,-30,0,0,0.367002 -15308,5315:100,-150,-30,0,0,0.36968 -15309,5314:209,-149,-30,0,0,0.371837 -15310,5314:208,-148,-30,0,0,0.370231 -15311,5314:207,-147,-30,0,0,0.370207 -15312,5314:206,-146,-30,0,0,0.374048 -15313,5314:205,-145,-30,0,0,0.379935 -15314,5314:104,-144,-30,0,0,0.377591 -15315,5314:103,-143,-30,0,0,0.375107 -15316,5314:102,-142,-30,0,0,0.375492 -15317,5314:101,-141,-30,0,0,0.37566 -15318,5314:100,-140,-30,0,0,0.372653 -15319,5313:209,-139,-30,0,0,0.371933 -15320,5313:208,-138,-30,0,0,0.372413 -15321,5313:207,-137,-30,0,0,0.368722 -15322,5313:206,-136,-30,0,0,0.36674 -15323,5313:205,-135,-30,0,0,0.367599 -15324,5313:104,-134,-30,0,0,0.363026 -15325,5313:103,-133,-30,0,0,0.366215 -15326,5313:102,-132,-30,0,0,0.36153 -15327,5313:101,-131,-30,0,0,0.359375 -15328,5313:100,-130,-30,0,0,0.35574 -15329,5312:209,-129,-30,0,0,0.35567 -15330,5312:208,-128,-30,0,0,0.350764 -15331,5312:207,-127,-30,0,0,0.347355 -15332,5312:206,-126,-30,0,0,0.3471 -15333,5312:205,-125,-30,0,0,0.348125 -15334,5312:104,-124,-30,0,0,0.343291 -15335,5312:103,-123,-30,0,0,0.344682 -15336,5312:102,-122,-30,0,0,0.341186 -15337,5312:101,-121,-30,0,0,0.342781 -15338,5312:100,-120,-30,0,0,0.345518 -15339,5311:209,-119,-30,0,0,0.343013 -15340,5311:208,-118,-30,0,0,0.34181 -15341,5311:207,-117,-30,0,0,0.34336 -15342,5311:206,-116,-30,0,0,0.342712 -15343,5311:205,-115,-30,0,0,0.334201 -15344,5311:104,-114,-30,0,0,0.330871 -15345,5311:103,-113,-30,0,0,0.334017 -15346,5311:102,-112,-30,0,0,0.330439 -15347,5311:101,-111,-30,0,0,0.313707 -15348,5311:100,-110,-30,0,0,0.323026 -15349,5310:209,-109,-30,0,0,0.318527 -15350,5310:208,-108,-30,0,0,0.319732 -15351,5310:207,-107,-30,0,0,0.321478 -15352,5310:206,-106,-30,0,0,0.310883 -15353,5310:205,-105,-30,0,0,0.31875 -15354,5310:104,-104,-30,0,0,0.315435 -15355,5310:103,-103,-30,0,0,0.312535 -15356,5310:102,-102,-30,0,0,0.314947 -15357,5310:101,-101,-30,0,0,0.310332 -15358,5310:100,-100,-30,0,0,0.31477 -15359,5309:209,-99,-30,0,0,0.307437 -15360,5309:208,-98,-30,0,0,0.307153 -15361,5309:207,-97,-30,0,0,0.304644 -15362,5309:206,-96,-30,0,0,0.307175 -15363,5309:205,-95,-30,0,0,0.317813 -15364,5309:104,-94,-30,0,0,0.317524 -15365,5309:103,-93,-30,0,0,0.312315 -15366,5309:102,-92,-30,0,0,0.307569 -15367,5309:101,-91,-30,0,0,0.306017 -15368,5309:100,-90,-30,0,0,0.304188 -15369,5308:209,-89,-30,0,0,0.296116 -15370,5308:208,-88,-30,0,0,0.29809 -15371,5308:207,-87,-30,0,0,0.303992 -15372,5308:206,-86,-30,0,0,0.307088 -15373,5308:205,-85,-30,0,0,0.303514 -15374,5308:104,-84,-30,0,0,0.29633 -15375,5308:103,-83,-30,0,0,0.291787 -15376,5308:102,-82,-30,0,0,0.294961 -15377,5308:101,-81,-30,0,0,0.293787 -15378,5308:100,-80,-30,0,0,0.30033 -15379,5307:209,-79,-30,0,0,0.300439 -15380,5307:208,-78,-30,0,0,0.295773 -15381,5307:207,-77,-30,0,0,0.301281 -15382,5307:206,-76,-30,0,0,0.301887 -15383,5307:205,-75,-30,0,0,0.298133 -15384,5307:104,-74,-30,0,0,0.307021 -15385,5306:100,-60,-30,0,0,0.393262 -15386,5305:209,-59,-30,0,0,0.375396 -15387,5305:208,-58,-30,0,0,0.384836 -15388,5305:207,-57,-30,0,0,0.362527 -15389,5305:206,-56,-30,0,0,0.316523 -15390,5305:205,-55,-30,0,0,0.271709 -15391,5305:104,-54,-30,0,0,0.340194 -15392,5305:103,-53,-30,0,0,0.401356 -15393,5305:102,-52,-30,0,0,0.351865 -15394,5305:101,-51,-30,0,0,0.360937 -15395,5305:100,-50,-30,0,0,0.411518 -15396,5304:209,-49,-30,0,0,0.407146 -15397,5304:208,-48,-30,0,0,0.385445 -15398,5304:207,-47,-30,0,0,0.403085 -15399,5304:206,-46,-30,0,0,0.396969 -15400,5304:205,-45,-30,0,0,0.381437 -15401,5304:104,-44,-30,0,0,0.361222 -15402,5304:103,-43,-30,0,0,0.351677 -15403,5304:102,-42,-30,0,0,0.348428 -15404,5304:101,-41,-30,0,0,0.364309 -15405,5304:100,-40,-30,0,0,0.33315 -15406,5303:209,-39,-30,0,0,0.300806 -15407,5303:208,-38,-30,0,0,0.303579 -15408,5303:207,-37,-30,0,0,0.312226 -15409,5303:206,-36,-30,0,0,0.326745 -15410,5303:205,-35,-30,0,0,0.332146 -15411,5303:104,-34,-30,0,0,0.332739 -15412,5303:103,-33,-30,0,0,0.324398 -15413,5303:102,-32,-30,0,0,0.322622 -15414,5303:101,-31,-30,0,0,0.322555 -15415,5303:100,-30,-30,0,0,0.322061 -15416,5302:209,-29,-30,0,0,0.316212 -15417,5302:208,-28,-30,0,0,0.310728 -15418,5302:207,-27,-30,0,0,0.308247 -15419,5302:206,-26,-30,0,0,0.308269 -15420,5302:205,-25,-30,0,0,0.305887 -15421,5302:104,-24,-30,0,0,0.304079 -15422,5302:103,-23,-30,0,0,0.302732 -15423,5302:102,-22,-30,0,0,0.302494 -15424,5302:101,-21,-30,0,0,0.301476 -15425,5302:100,-20,-30,0,0,0.299748 -15426,5301:209,-19,-30,0,0,0.303275 -15427,5301:208,-18,-30,0,0,0.312381 -15428,5301:207,-17,-30,0,0,0.306759 -15429,5301:206,-16,-30,0,0,0.303687 -15430,5301:205,-15,-30,0,0,0.301865 -15431,5301:104,-14,-30,0,0,0.311675 -15432,5301:103,-13,-30,0,0,0.306737 -15433,5301:102,-12,-30,0,0,0.297982 -15434,5301:101,-11,-30,0,0,0.292935 -15435,5301:100,-10,-30,0,0,0.295517 -15436,5300:209,-9,-30,0,0,0.293808 -15437,5300:208,-8,-30,0,0,0.302949 -15438,5300:207,-7,-30,0,0,0.297381 -15439,5300:206,-6,-30,0,0,0.30271 -15440,5300:205,-5,-30,0,0,0.294598 -15441,5300:104,-4,-30,0,0,0.290155 -15442,5300:103,-3,-30,0,0,0.277336 -15443,5300:102,-2,-30,0,0,0.283806 -15444,5300:101,-1,-30,0,0,0.294235 -15445,3300:101,0,-30,0,0,0.295153 -15446,3300:101,1,-30,0,0,0.280477 -15447,3300:102,2,-30,0,0,0.286004 -15448,3300:103,3,-30,0,0,0.284454 -15449,3300:104,4,-30,0,0,0.289035 -15450,3300:205,5,-30,0,0,0.298413 -15451,3300:206,6,-30,0,0,0.30321 -15452,3300:207,7,-30,0,0,0.302126 -15453,3300:208,8,-30,0,0,0.321792 -15454,3300:209,9,-30,0,0,0.323139 -15455,3301:100,10,-30,0,0,0.351489 -15456,3301:101,11,-30,0,0,0.379137 -15457,3301:102,12,-30,0,0,0.38598 -15458,3301:103,13,-30,0,0,0.387589 -15459,3301:104,14,-30,0,0,0.391743 -15460,3301:205,15,-30,0,0,0.387491 -15461,3301:206,16,-30,0,0,0.405857 -15462,3301:207,17,-30,0,0,0.432767 -15463,3301:208,18,-30,0,0,0.425996 -15464,3301:209,19,-30,0,0,0.429592 -15465,3302:100,20,-30,0,0,0.421656 -15466,3302:101,21,-30,0,0,0.415978 -15467,3302:102,22,-30,0,0,0.42316 -15468,3302:103,23,-30,0,0,0.426624 -15469,3302:104,24,-30,0,0,0.389102 -15470,3302:205,25,-30,0,0,0.398964 -15471,3302:206,26,-30,0,0,0.392796 -15472,3302:207,27,-30,0,0,0.333058 -15473,3302:208,28,-30,0,0,0.35574 -15474,3302:209,29,-30,0,0,0.401356 -15475,3303:100,30,-30,0,0,0.417152 -15476,3303:101,31,-30,0,0,0.402516 -15477,3303:102,32,-30,0,0,0.414058 -15478,3303:103,33,-30,0,0,0.327129 -15479,3303:104,34,-30,0,0,0.340217 -15480,3303:205,35,-30,0,0,0.401183 -15481,3303:206,36,-30,0,0,0.378533 -15482,3303:207,37,-30,0,0,0.377059 -15483,3303:208,38,-30,0,0,0.365452 -15484,3303:209,39,-30,0,0,0.341071 -15485,3304:100,40,-30,0,0,0.375107 -15486,3304:101,41,-30,0,0,0.365977 -15487,3304:102,42,-30,0,0,0.361625 -15488,3304:103,43,-30,0,0,0.365238 -15489,3304:104,44,-30,0,0,0.36581 -15490,3304:205,45,-30,0,0,0.358996 -15491,3304:206,46,-30,0,0,0.355552 -15492,3304:207,47,-30,0,0,0.35238 -15493,3304:208,48,-30,0,0,0.356117 -15494,3304:209,49,-30,0,0,0.358335 -15495,3305:100,50,-30,0,0,0.348218 -15496,3305:101,51,-30,0,0,0.340378 -15497,3305:102,52,-30,0,0,0.337592 -15498,3305:103,53,-30,0,0,0.320359 -15499,3305:104,54,-30,0,0,0.33617 -15500,3305:205,55,-30,0,0,0.33918 -15501,3305:206,56,-30,0,0,0.318705 -15502,3305:207,57,-30,0,0,0.322083 -15503,3305:208,58,-30,0,0,0.328713 -15504,3305:209,59,-30,0,0,0.323701 -15505,3306:100,60,-30,0,0,0.320359 -15506,3306:101,61,-30,0,0,0.322914 -15507,3306:102,62,-30,0,0,0.328464 -15508,3306:103,63,-30,0,0,0.327264 -15509,3306:104,64,-30,0,0,0.321836 -15510,3306:205,65,-30,0,0,0.318616 -15511,3306:206,66,-30,0,0,0.322465 -15512,3306:207,67,-30,0,0,0.320492 -15513,3306:208,68,-30,0,0,0.313707 -15514,3306:209,69,-30,0,0,0.314548 -15515,3307:100,70,-30,0,0,0.31457 -15516,3307:101,71,-30,0,0,0.313818 -15517,3307:102,72,-30,0,0,0.311278 -15518,3307:104,74,-30,0,0,0.313773 -15519,3307:205,75,-30,0,0,0.311631 -15520,3307:206,76,-30,0,0,0.300611 -15521,3307:207,77,-30,0,0,0.295068 -15522,3307:208,78,-30,0,0,0.295367 -15523,3307:209,79,-30,0,0,0.301043 -15524,3308:100,80,-30,0,0,0.296266 -15525,3308:101,81,-30,0,0,0.294939 -15526,3308:102,82,-30,0,0,0.296394 -15527,3308:103,83,-30,0,0,0.294576 -15528,3308:104,84,-30,0,0,0.292106 -15529,3308:205,85,-30,0,0,0.291597 -15530,3308:206,86,-30,0,0,0.296501 -15531,3308:207,87,-30,0,0,0.295324 -15532,3308:208,88,-30,0,0,0.29432 -15533,3308:209,89,-30,0,0,0.291915 -15534,3309:100,90,-30,0,0,0.285354 -15535,3309:101,91,-30,0,0,0.286277 -15536,3309:102,92,-30,0,0,0.285774 -15537,3309:103,93,-30,0,0,0.284287 -15538,3309:104,94,-30,0,0,0.28293 -15539,3309:205,95,-30,0,0,0.280913 -15540,3309:206,96,-30,0,0,0.277913 -15541,3309:207,97,-30,0,0,0.276965 -15542,3309:208,98,-30,0,0,0.279772 -15543,3309:209,99,-30,0,0,0.277789 -15544,3310:100,100,-30,0,0,0.276657 -15545,3310:101,101,-30,0,0,0.279876 -15546,3310:102,102,-30,0,0,0.27713 -15547,3310:103,103,-30,0,0,0.277893 -15548,3310:104,104,-30,0,0,0.28191 -15549,3310:205,105,-30,0,0,0.279793 -15550,3310:206,106,-30,0,0,0.278614 -15551,3310:207,107,-30,0,0,0.276822 -15552,3310:208,108,-30,0,0,0.277851 -15553,3310:209,109,-30,0,0,0.280373 -15554,3311:100,110,-30,0,0,0.302754 -15555,3311:101,111,-30,0,0,0.31962 -15556,3311:102,112,-30,0,0,0.326338 -15557,3311:103,113,-30,0,0,0.319688 -15558,3311:104,114,-30,0,0,0.329235 -15559,3311:205,115,-30,0,0,0.313928 -15560,3311:206,116,-30,0,0,0.30139 -15561,3311:207,117,-30,0,0,0.309981 -15562,3311:208,118,-30,0,0,0.305515 -15563,3311:209,119,-30,0,0,0.305385 -15564,3312:100,120,-30,0,0,0.308686 -15565,3312:101,121,-30,0,0,0.317435 -15566,3312:102,122,-30,0,0,0.309695 -15567,3312:103,123,-30,0,0,0.305559 -15568,3312:104,124,-30,0,0,0.308313 -15569,3312:205,125,-30,0,0,0.311675 -15570,3312:206,126,-30,0,0,0.311081 -15571,3312:207,127,-30,0,0,0.310244 -15572,3312:208,128,-30,0,0,0.303253 -15573,3312:209,129,-30,0,0,0.298735 -15574,3313:100,130,-30,0,0,0.303796 -15575,3313:101,131,-30,0,0,0.308401 -15576,3313:102,132,-30,0,0,0.31579 -15577,3313:103,133,-30,0,0,0.311102 -15578,3313:104,134,-30,0,0,0.320761 -15579,3313:205,135,-30,0,0,0.334429 -15580,3313:206,136,-30,0,0,0.330371 -15581,3313:207,137,-30,0,0,0.326496 -15582,3313:208,138,-30,0,0,0.327333 -15583,3313:209,139,-30,0,0,0.342087 -15584,3314:100,140,-30,0,0,0.340147 -15585,3314:101,141,-30,0,0,0.35156 -15586,3314:102,142,-30,0,0,0.357248 -15587,3314:103,143,-30,0,0,0.363382 -15588,3314:104,144,-30,0,0,0.367361 -15589,3314:205,145,-30,0,0,0.363263 -15590,3314:206,146,-30,0,0,0.375396 -15591,3314:207,147,-30,0,0,0.38384 -15592,3314:208,148,-30,0,0,0.366597 -15593,3314:209,149,-30,0,0,0.389737 -15594,3315:100,150,-30,0,0,0.423686 -15595,3315:101,151,-30,0,0,0.427152 -15596,3315:102,152,-30,0,0,0.425418 -15597,3315:103,153,-30,0,0,0.387784 -15598,3315:104,154,-30,0,0,0.411742 -15599,3315:205,155,-30,0,0,0.382116 -15600,3315:206,156,-30,0,0,0.409851 -15601,3315:207,157,-30,0,0,0.386663 -15602,3315:208,158,-30,0,0,0.39211 -15603,3315:209,159,-30,0,0,0.390984 -15604,3316:100,160,-30,0,0,0.389566 -15605,3316:101,161,-30,0,0,0.383718 -15606,3316:102,162,-30,0,0,0.375685 -15607,3316:103,163,-30,0,0,0.362931 -15608,3316:104,164,-30,0,0,0.359351 -15609,3316:205,165,-30,0,0,0.356447 -15610,3316:206,166,-30,0,0,0.352122 -15611,3316:207,167,-30,0,0,0.348941 -15612,3316:208,168,-30,0,0,0.348171 -15613,3316:209,169,-30,0,0,0.340932 -15614,3317:100,170,-30,0,0,0.338328 -15615,3317:101,171,-30,0,0,0.336766 -15616,3317:102,172,-30,0,0,0.335276 -15617,3317:103,173,-30,0,0,0.332238 -15618,3317:104,174,-30,0,0,0.343592 -15619,3317:209,179,-30,0,0,0.389346 -15620,3318:100,180,-30,0,0,0.369967 -15621,5218:390,-180,-29,0,0,0.392821 -15622,5217:499,-179,-29,0,0,0.379282 -15623,5217:498,-178,-29,0,0,0.364214 -15624,5217:497,-177,-29,0,0,0.355716 -15625,5217:496,-176,-29,0,0,0.352263 -15626,5217:495,-175,-29,0,0,0.350086 -15627,5217:394,-174,-29,0,0,0.351302 -15628,5217:393,-173,-29,0,0,0.352451 -15629,5217:392,-172,-29,0,0,0.363097 -15630,5217:391,-171,-29,0,0,0.371117 -15631,5217:390,-170,-29,0,0,0.367623 -15632,5216:499,-169,-29,0,0,0.358571 -15633,5216:498,-168,-29,0,0,0.354516 -15634,5216:497,-167,-29,0,0,0.348754 -15635,5216:496,-166,-29,0,0,0.355575 -15636,5216:495,-165,-29,0,0,0.359398 -15637,5216:394,-164,-29,0,0,0.360582 -15638,5216:393,-163,-29,0,0,0.366668 -15639,5216:392,-162,-29,0,0,0.367767 -15640,5216:391,-161,-29,0,0,0.366311 -15641,5216:390,-160,-29,0,0,0.370039 -15642,5215:499,-159,-29,0,0,0.369129 -15643,5215:498,-158,-29,0,0,0.369081 -15644,5215:497,-157,-29,0,0,0.371765 -15645,5215:496,-156,-29,0,0,0.367575 -15646,5215:495,-155,-29,0,0,0.367838 -15647,5215:394,-154,-29,0,0,0.372437 -15648,5215:393,-153,-29,0,0,0.374216 -15649,5215:392,-152,-29,0,0,0.373879 -15650,5215:391,-151,-29,0,0,0.379306 -15651,5215:390,-150,-29,0,0,0.382893 -15652,5214:499,-149,-29,0,0,0.385056 -15653,5214:498,-148,-29,0,0,0.381995 -15654,5214:497,-147,-29,0,0,0.381582 -15655,5214:496,-146,-29,0,0,0.38367 -15656,5214:495,-145,-29,0,0,0.383646 -15657,5214:394,-144,-29,0,0,0.386443 -15658,5214:393,-143,-29,0,0,0.387711 -15659,5214:392,-142,-29,0,0,0.38715 -15660,5214:391,-141,-29,0,0,0.385907 -15661,5214:390,-140,-29,0,0,0.384739 -15662,5213:499,-139,-29,0,0,0.385713 -15663,5213:498,-138,-29,0,0,0.383791 -15664,5213:497,-137,-29,0,0,0.379645 -15665,5213:496,-136,-29,0,0,0.377059 -15666,5213:495,-135,-29,0,0,0.379113 -15667,5213:394,-134,-29,0,0,0.372149 -15668,5213:393,-133,-29,0,0,0.375443 -15669,5213:392,-132,-29,0,0,0.369775 -15670,5213:391,-131,-29,0,0,0.364833 -15671,5213:390,-130,-29,0,0,0.363596 -15672,5212:499,-129,-29,0,0,0.363525 -15673,5212:498,-128,-29,0,0,0.361198 -15674,5212:497,-127,-29,0,0,0.360203 -15675,5212:496,-126,-29,0,0,0.358122 -15676,5212:495,-125,-29,0,0,0.357084 -15677,5212:394,-124,-29,0,0,0.35673 -15678,5212:393,-123,-29,0,0,0.352263 -15679,5212:392,-122,-29,0,0,0.349268 -15680,5212:391,-121,-29,0,0,0.352122 -15681,5212:390,-120,-29,0,0,0.354211 -15682,5211:499,-119,-29,0,0,0.353366 -15683,5211:498,-118,-29,0,0,0.355552 -15684,5211:497,-117,-29,0,0,0.3564 -15685,5211:496,-116,-29,0,0,0.351958 -15686,5211:495,-115,-29,0,0,0.345936 -15687,5211:394,-114,-29,0,0,0.347193 -15688,5211:393,-113,-29,0,0,0.345634 -15689,5211:392,-112,-29,0,0,0.342157 -15690,5211:391,-111,-29,0,0,0.335139 -15691,5211:390,-110,-29,0,0,0.341094 -15692,5210:499,-109,-29,0,0,0.347262 -15693,5210:498,-108,-29,0,0,0.340055 -15694,5210:497,-107,-29,0,0,0.334063 -15695,5210:496,-106,-29,0,0,0.330644 -15696,5210:495,-105,-29,0,0,0.332533 -15697,5210:394,-104,-29,0,0,0.33003 -15698,5210:393,-103,-29,0,0,0.329145 -15699,5210:392,-102,-29,0,0,0.321478 -15700,5210:391,-101,-29,0,0,0.328057 -15701,5210:390,-100,-29,0,0,0.323026 -15702,5209:499,-99,-29,0,0,0.320671 -15703,5209:498,-98,-29,0,0,0.325592 -15704,5209:497,-97,-29,0,0,0.327717 -15705,5209:496,-96,-29,0,0,0.325548 -15706,5209:495,-95,-29,0,0,0.331873 -15707,5209:394,-94,-29,0,0,0.326948 -15708,5209:393,-93,-29,0,0,0.331599 -15709,5209:392,-92,-29,0,0,0.324714 -15710,5209:391,-91,-29,0,0,0.321231 -15711,5209:390,-90,-29,0,0,0.317836 -15712,5208:499,-89,-29,0,0,0.322555 -15713,5208:498,-88,-29,0,0,0.315213 -15714,5208:497,-87,-29,0,0,0.312271 -15715,5208:496,-86,-29,0,0,0.31904 -15716,5208:495,-85,-29,0,0,0.320716 -15717,5208:394,-84,-29,0,0,0.316167 -15718,5208:393,-83,-29,0,0,0.315058 -15719,5208:392,-82,-29,0,0,0.319643 -15720,5208:391,-81,-29,0,0,0.317992 -15721,5208:390,-80,-29,0,0,0.3128 -15722,5207:499,-79,-29,0,0,0.315279 -15723,5207:498,-78,-29,0,0,0.315612 -15724,5207:497,-77,-29,0,0,0.318727 -15725,5207:496,-76,-29,0,0,0.315901 -15726,5207:495,-75,-29,0,0,0.315169 -15727,5207:394,-74,-29,0,0,0.319665 -15728,5205:497,-57,-29,0,0,0.432969 -15729,5205:496,-56,-29,0,0,0.40856 -15730,5205:495,-55,-29,0,0,0.307065 -15731,5205:394,-54,-29,0,0,0.336766 -15732,5205:393,-53,-29,0,0,0.397216 -15733,5205:392,-52,-29,0,0,0.391229 -15734,5205:391,-51,-29,0,0,0.43711 -15735,5205:390,-50,-29,0,0,0.432944 -15736,5204:499,-49,-29,0,0,0.432313 -15737,5204:498,-48,-29,0,0,0.394218 -15738,5204:497,-47,-29,0,0,0.39412 -15739,5204:496,-46,-29,0,0,0.411194 -15740,5204:495,-45,-29,0,0,0.418852 -15741,5204:394,-44,-29,0,0,0.386785 -15742,5204:393,-43,-29,0,0,0.346238 -15743,5204:392,-42,-29,0,0,0.350881 -15744,5204:391,-41,-29,0,0,0.357013 -15745,5204:390,-40,-29,0,0,0.372894 -15746,5203:499,-39,-29,0,0,0.356094 -15747,5203:498,-38,-29,0,0,0.353577 -15748,5203:497,-37,-29,0,0,0.347286 -15749,5203:496,-36,-29,0,0,0.343268 -15750,5203:495,-35,-29,0,0,0.33688 -15751,5203:394,-34,-29,0,0,0.335826 -15752,5203:393,-33,-29,0,0,0.339848 -15753,5203:392,-32,-29,0,0,0.349432 -15754,5203:391,-31,-29,0,0,0.342319 -15755,5203:390,-30,-29,0,0,0.338006 -15756,5202:499,-29,-29,0,0,0.33372 -15757,5202:498,-28,-29,0,0,0.32424 -15758,5202:497,-27,-29,0,0,0.329054 -15759,5202:496,-26,-29,0,0,0.330121 -15760,5202:495,-25,-29,0,0,0.314326 -15761,5202:394,-24,-29,0,0,0.316501 -15762,5202:393,-23,-29,0,0,0.323498 -15763,5202:392,-22,-29,0,0,0.327174 -15764,5202:391,-21,-29,0,0,0.327151 -15765,5202:390,-20,-29,0,0,0.335482 -15766,5201:499,-19,-29,0,0,0.327717 -15767,5201:498,-18,-29,0,0,0.325458 -15768,5201:497,-17,-29,0,0,0.311742 -15769,5201:496,-16,-29,0,0,0.312535 -15770,5201:495,-15,-29,0,0,0.317925 -15771,5201:394,-14,-29,0,0,0.326248 -15772,5201:393,-13,-29,0,0,0.321522 -15773,5201:392,-12,-29,0,0,0.31904 -15774,5201:391,-11,-29,0,0,0.319174 -15775,5201:390,-10,-29,0,0,0.315612 -15776,5200:499,-9,-29,0,0,0.319822 -15777,5200:498,-8,-29,0,0,0.316901 -15778,5200:497,-7,-29,0,0,0.313685 -15779,5200:496,-6,-29,0,0,0.319598 -15780,5200:495,-5,-29,0,0,0.321433 -15781,5200:394,-4,-29,0,0,0.32224 -15782,5200:393,-3,-29,0,0,0.310376 -15783,5200:392,-2,-29,0,0,0.309519 -15784,5200:391,-1,-29,0,0,0.321634 -15785,3200:391,0,-29,0,0,0.316968 -15786,3200:391,1,-29,0,0,0.310509 -15787,3200:392,2,-29,0,0,0.314017 -15788,3200:393,3,-29,0,0,0.311345 -15789,3200:394,4,-29,0,0,0.303905 -15790,3200:495,5,-29,0,0,0.305014 -15791,3200:496,6,-29,0,0,0.303318 -15792,3200:497,7,-29,0,0,0.313662 -15793,3200:498,8,-29,0,0,0.331827 -15794,3200:499,9,-29,0,0,0.334132 -15795,3201:390,10,-29,0,0,0.343314 -15796,3201:391,11,-29,0,0,0.35947 -15797,3201:392,12,-29,0,0,0.367122 -15798,3201:393,13,-29,0,0,0.381801 -15799,3201:394,14,-29,0,0,0.387711 -15800,3201:495,15,-29,0,0,0.389517 -15801,3201:496,16,-29,0,0,0.391278 -15802,3201:497,17,-29,0,0,0.418477 -15803,3201:498,18,-29,0,0,0.446638 -15804,3201:499,19,-29,0,0,0.455338 -15805,3202:390,20,-29,0,0,0.442021 -15806,3202:391,21,-29,0,0,0.435064 -15807,3202:392,22,-29,0,0,0.438148 -15808,3202:393,23,-29,0,0,0.433322 -15809,3202:394,24,-29,0,0,0.420403 -15810,3202:495,25,-29,0,0,0.433297 -15811,3202:496,26,-29,0,0,0.430675 -15812,3202:497,27,-29,0,0,0.419677 -15813,3202:498,28,-29,0,0,0.370326 -15814,3202:499,29,-29,0,0,0.427956 -15815,3203:390,30,-29,0,0,0.422031 -15816,3203:391,31,-29,0,0,0.402665 -15817,3203:392,32,-29,0,0,0.404396 -15818,3203:393,33,-29,0,0,0.410871 -15819,3203:394,34,-29,0,0,0.41538 -15820,3203:495,35,-29,0,0,0.393434 -15821,3203:496,36,-29,0,0,0.383694 -15822,3203:497,37,-29,0,0,0.379766 -15823,3203:498,38,-29,0,0,0.380226 -15824,3203:499,39,-29,0,0,0.38316 -15825,3204:390,40,-29,0,0,0.381098 -15826,3204:391,41,-29,0,0,0.366382 -15827,3204:392,42,-29,0,0,0.368603 -15828,3204:393,43,-29,0,0,0.366907 -15829,3204:394,44,-29,0,0,0.365071 -15830,3204:495,45,-29,0,0,0.364309 -15831,3204:496,46,-29,0,0,0.367122 -15832,3204:497,47,-29,0,0,0.364 -15833,3204:498,48,-29,0,0,0.357296 -15834,3204:499,49,-29,0,0,0.349595 -15835,3205:390,50,-29,0,0,0.345076 -15836,3205:391,51,-29,0,0,0.344102 -15837,3205:392,52,-29,0,0,0.346308 -15838,3205:393,53,-29,0,0,0.347822 -15839,3205:394,54,-29,0,0,0.34568 -15840,3205:495,55,-29,0,0,0.342504 -15841,3205:496,56,-29,0,0,0.32885 -15842,3205:497,57,-29,0,0,0.331827 -15843,3205:498,58,-29,0,0,0.338466 -15844,3205:499,59,-29,0,0,0.334178 -15845,3206:390,60,-29,0,0,0.33119 -15846,3206:391,61,-29,0,0,0.33404 -15847,3206:392,62,-29,0,0,0.33711 -15848,3206:393,63,-29,0,0,0.335207 -15849,3206:394,64,-29,0,0,0.33888 -15850,3206:495,65,-29,0,0,0.337822 -15851,3206:496,66,-29,0,0,0.335803 -15852,3206:497,67,-29,0,0,0.333035 -15853,3206:498,68,-29,0,0,0.330598 -15854,3206:499,69,-29,0,0,0.331782 -15855,3207:390,70,-29,0,0,0.327875 -15856,3207:391,71,-29,0,0,0.327513 -15857,3207:392,72,-29,0,0,0.325841 -15858,3207:394,74,-29,0,0,0.323318 -15859,3207:495,75,-29,0,0,0.323408 -15860,3207:496,76,-29,0,0,0.322599 -15861,3207:497,77,-29,0,0,0.317969 -15862,3207:498,78,-29,0,0,0.31205 -15863,3207:499,79,-29,0,0,0.313662 -15864,3208:390,80,-29,0,0,0.308247 -15865,3208:391,81,-29,0,0,0.309036 -15866,3208:392,82,-29,0,0,0.312624 -15867,3208:393,83,-29,0,0,0.314504 -15868,3208:394,84,-29,0,0,0.315346 -15869,3208:495,85,-29,0,0,0.315302 -15870,3208:496,86,-29,0,0,0.311918 -15871,3208:497,87,-29,0,0,0.306825 -15872,3208:498,88,-29,0,0,0.303492 -15873,3208:499,89,-29,0,0,0.300935 -15874,3209:390,90,-29,0,0,0.300633 -15875,3209:391,91,-29,0,0,0.301909 -15876,3209:392,92,-29,0,0,0.301173 -15877,3209:393,93,-29,0,0,0.299145 -15878,3209:394,94,-29,0,0,0.293254 -15879,3209:495,95,-29,0,0,0.29464 -15880,3209:496,96,-29,0,0,0.295281 -15881,3209:497,97,-29,0,0,0.295303 -15882,3209:498,98,-29,0,0,0.300395 -15883,3209:499,99,-29,0,0,0.296523 -15884,3210:390,100,-29,0,0,0.296694 -15885,3210:391,101,-29,0,0,0.29285 -15886,3210:392,102,-29,0,0,0.292489 -15887,3210:393,103,-29,0,0,0.299877 -15888,3210:394,104,-29,0,0,0.299467 -15889,3210:495,105,-29,0,0,0.298326 -15890,3210:496,106,-29,0,0,0.298843 -15891,3210:497,107,-29,0,0,0.297445 -15892,3210:498,108,-29,0,0,0.301865 -15893,3210:499,109,-29,0,0,0.307175 -15894,3211:390,110,-29,0,0,0.347729 -15895,3211:391,111,-29,0,0,0.362408 -15896,3211:392,112,-29,0,0,0.352708 -15897,3211:393,113,-29,0,0,0.351466 -15898,3211:394,114,-29,0,0,0.35156 -15899,3211:495,115,-29,0,0,0.358169 -15900,3211:496,116,-29,0,0,0.340863 -15901,3211:497,117,-29,0,0,0.338282 -15902,3211:498,118,-29,0,0,0.3451 -15903,3211:499,119,-29,0,0,0.354094 -15904,3212:390,120,-29,0,0,0.340725 -15905,3212:391,121,-29,0,0,0.331258 -15906,3212:392,122,-29,0,0,0.338489 -15907,3212:393,123,-29,0,0,0.339825 -15908,3212:394,124,-29,0,0,0.340194 -15909,3212:495,125,-29,0,0,0.330644 -15910,3212:496,126,-29,0,0,0.33819 -15911,3212:497,127,-29,0,0,0.334681 -15912,3212:498,128,-29,0,0,0.331622 -15913,3212:499,129,-29,0,0,0.326451 -15914,3213:390,130,-29,0,0,0.324286 -15915,3213:391,131,-29,0,0,0.328442 -15916,3213:392,132,-29,0,0,0.336628 -15917,3213:393,133,-29,0,0,0.350179 -15918,3213:394,134,-29,0,0,0.345983 -15919,3213:495,135,-29,0,0,0.345425 -15920,3213:496,136,-29,0,0,0.345169 -15921,3213:497,137,-29,0,0,0.34343 -15922,3213:498,138,-29,0,0,0.356094 -15923,3213:499,139,-29,0,0,0.359848 -15924,3214:390,140,-29,0,0,0.380662 -15925,3215:390,150,-29,0,0,0.408138 -15926,3215:391,151,-29,0,0,0.432793 -15927,3215:392,152,-29,0,0,0.423009 -15928,3215:393,153,-29,0,0,0.425795 -15929,3215:394,154,-29,0,0,0.420729 -15930,3215:495,155,-29,0,0,0.415554 -15931,3215:496,156,-29,0,0,0.426197 -15932,3215:497,157,-29,0,0,0.425845 -15933,3215:498,158,-29,0,0,0.438426 -15934,3215:499,159,-29,0,0,0.43128 -15935,3216:390,160,-29,0,0,0.418577 -15936,3216:391,161,-29,0,0,0.412762 -15937,3216:392,162,-29,0,0,0.399038 -15938,3216:393,163,-29,0,0,0.376191 -15939,3216:394,164,-29,0,0,0.376674 -15940,3216:495,165,-29,0,0,0.370854 -15941,3216:496,166,-29,0,0,0.369201 -15942,3216:497,167,-29,0,0,0.364928 -15943,3216:498,168,-29,0,0,0.362455 -15944,3216:499,169,-29,0,0,0.36172 -15945,3217:390,170,-29,0,0,0.363311 -15946,3217:391,171,-29,0,0,0.360748 -15947,3217:392,172,-29,0,0,0.354376 -15948,3217:393,173,-29,0,0,0.349618 -15949,3217:394,174,-29,0,0,0.35032 -15950,3217:495,175,-29,0,0,0.375902 -15951,3217:497,177,-29,0,0,0.383816 -15952,3217:498,178,-29,0,0,0.386054 -15953,3217:499,179,-29,0,0,0.379452 -15954,3218:390,180,-29,0,0,0.392821 -15955,5218:380,-180,-28,0,0,0.395716 -15956,5217:489,-179,-28,0,0,0.387613 -15957,5217:488,-178,-28,0,0,0.370063 -15958,5217:487,-177,-28,0,0,0.370806 -15959,5217:486,-176,-28,0,0,0.374216 -15960,5217:485,-175,-28,0,0,0.373639 -15961,5217:384,-174,-28,0,0,0.373518 -15962,5217:383,-173,-28,0,0,0.378025 -15963,5217:382,-172,-28,0,0,0.375034 -15964,5217:381,-171,-28,0,0,0.378073 -15965,5217:380,-170,-28,0,0,0.379669 -15966,5216:489,-169,-28,0,0,0.38168 -15967,5216:488,-168,-28,0,0,0.376504 -15968,5216:487,-167,-28,0,0,0.373518 -15969,5216:486,-166,-28,0,0,0.370781 -15970,5216:485,-165,-28,0,0,0.372485 -15971,5216:384,-164,-28,0,0,0.373711 -15972,5216:383,-163,-28,0,0,0.377325 -15973,5216:382,-162,-28,0,0,0.376529 -15974,5216:381,-161,-28,0,0,0.375637 -15975,5216:380,-160,-28,0,0,0.378049 -15976,5215:489,-159,-28,0,0,0.381219 -15977,5215:488,-158,-28,0,0,0.382868 -15978,5215:487,-157,-28,0,0,0.380081 -15979,5215:486,-156,-28,0,0,0.381413 -15980,5215:485,-155,-28,0,0,0.384132 -15981,5215:384,-154,-28,0,0,0.382577 -15982,5215:383,-153,-28,0,0,0.385445 -15983,5215:382,-152,-28,0,0,0.38859 -15984,5215:381,-151,-28,0,0,0.389493 -15985,5215:380,-150,-28,0,0,0.392698 -15986,5214:489,-149,-28,0,0,0.394733 -15987,5214:488,-148,-28,0,0,0.389322 -15988,5214:487,-147,-28,0,0,0.38754 -15989,5214:486,-146,-28,0,0,0.391351 -15990,5214:485,-145,-28,0,0,0.393482 -15991,5214:384,-144,-28,0,0,0.391253 -15992,5214:383,-143,-28,0,0,0.390446 -15993,5214:382,-142,-28,0,0,0.390593 -15994,5214:381,-141,-28,0,0,0.389224 -15995,5214:380,-140,-28,0,0,0.388565 -15996,5213:489,-139,-28,0,0,0.390568 -15997,5213:488,-138,-28,0,0,0.39189 -15998,5213:487,-137,-28,0,0,0.389908 -15999,5213:486,-136,-28,0,0,0.386736 -16000,5213:485,-135,-28,0,0,0.383233 -16001,5213:384,-134,-28,0,0,0.381753 -16002,5213:383,-133,-28,0,0,0.379766 -16003,5213:382,-132,-28,0,0,0.382528 -16004,5213:381,-131,-28,0,0,0.381316 -16005,5213:380,-130,-28,0,0,0.376866 -16006,5212:489,-129,-28,0,0,0.375034 -16007,5212:488,-128,-28,0,0,0.373158 -16008,5212:487,-127,-28,0,0,0.373038 -16009,5212:486,-126,-28,0,0,0.369919 -16010,5212:485,-125,-28,0,0,0.367886 -16011,5212:384,-124,-28,0,0,0.370182 -16012,5212:383,-123,-28,0,0,0.370039 -16013,5212:382,-122,-28,0,0,0.367193 -16014,5212:381,-121,-28,0,0,0.366573 -16015,5212:380,-120,-28,0,0,0.365881 -16016,5211:489,-119,-28,0,0,0.364095 -16017,5211:488,-118,-28,0,0,0.363477 -16018,5211:487,-117,-28,0,0,0.363786 -16019,5211:486,-116,-28,0,0,0.358642 -16020,5211:485,-115,-28,0,0,0.355952 -16021,5211:384,-114,-28,0,0,0.35706 -16022,5211:383,-113,-28,0,0,0.363002 -16023,5211:382,-112,-28,0,0,0.36343 -16024,5211:381,-111,-28,0,0,0.357768 -16025,5211:380,-110,-28,0,0,0.352169 -16026,5210:489,-109,-28,0,0,0.352216 -16027,5210:488,-108,-28,0,0,0.367814 -16028,5210:487,-107,-28,0,0,0.362432 -16029,5210:486,-106,-28,0,0,0.358052 -16030,5210:485,-105,-28,0,0,0.348801 -16031,5210:384,-104,-28,0,0,0.348311 -16032,5210:383,-103,-28,0,0,0.338765 -16033,5210:382,-102,-28,0,0,0.33711 -16034,5210:381,-101,-28,0,0,0.348264 -16035,5210:380,-100,-28,0,0,0.345588 -16036,5209:489,-99,-28,0,0,0.34218 -16037,5209:488,-98,-28,0,0,0.337754 -16038,5209:487,-97,-28,0,0,0.348754 -16039,5209:486,-96,-28,0,0,0.345564 -16040,5209:485,-95,-28,0,0,0.344984 -16041,5209:384,-94,-28,0,0,0.343383 -16042,5209:383,-93,-28,0,0,0.341047 -16043,5209:382,-92,-28,0,0,0.34575 -16044,5209:381,-91,-28,0,0,0.339825 -16045,5209:380,-90,-28,0,0,0.340517 -16046,5208:489,-89,-28,0,0,0.343082 -16047,5208:488,-88,-28,0,0,0.341094 -16048,5208:487,-87,-28,0,0,0.336766 -16049,5208:486,-86,-28,0,0,0.337731 -16050,5208:485,-85,-28,0,0,0.33226 -16051,5208:384,-84,-28,0,0,0.334887 -16052,5208:383,-83,-28,0,0,0.333675 -16053,5208:382,-82,-28,0,0,0.332602 -16054,5208:381,-81,-28,0,0,0.331303 -16055,5208:380,-80,-28,0,0,0.334155 -16056,5207:489,-79,-28,0,0,0.334201 -16057,5207:488,-78,-28,0,0,0.329122 -16058,5207:487,-77,-28,0,0,0.327853 -16059,5207:486,-76,-28,0,0,0.333446 -16060,5207:485,-75,-28,0,0,0.324466 -16061,5207:384,-74,-28,0,0,0.327966 -16062,5207:383,-73,-28,0,0,0.304296 -16063,5205:486,-56,-28,0,0,0.441286 -16064,5205:485,-55,-28,0,0,0.416228 -16065,5205:384,-54,-28,0,0,0.361056 -16066,5205:383,-53,-28,0,0,0.376432 -16067,5205:382,-52,-28,0,0,0.405956 -16068,5205:381,-51,-28,0,0,0.492155 -16069,5205:380,-50,-28,0,0,0.474351 -16070,5204:489,-49,-28,0,0,0.490126 -16071,5204:488,-48,-28,0,0,0.455771 -16072,5204:487,-47,-28,0,0,0.438047 -16073,5204:486,-46,-28,0,0,0.441134 -16074,5204:485,-45,-28,0,0,0.436732 -16075,5204:384,-44,-28,0,0,0.428813 -16076,5204:383,-43,-28,0,0,0.420028 -16077,5204:382,-42,-28,0,0,0.410722 -16078,5204:381,-41,-28,0,0,0.402097 -16079,5204:380,-40,-28,0,0,0.390324 -16080,5203:489,-39,-28,0,0,0.372341 -16081,5203:488,-38,-28,0,0,0.354704 -16082,5203:487,-37,-28,0,0,0.360653 -16083,5203:486,-36,-28,0,0,0.371477 -16084,5203:485,-35,-28,0,0,0.364691 -16085,5203:384,-34,-28,0,0,0.366263 -16086,5203:383,-33,-28,0,0,0.361696 -16087,5203:382,-32,-28,0,0,0.359327 -16088,5203:381,-31,-28,0,0,0.3585 -16089,5203:380,-30,-28,0,0,0.349385 -16090,5202:489,-29,-28,0,0,0.35501 -16091,5202:488,-28,-28,0,0,0.348195 -16092,5202:487,-27,-28,0,0,0.356541 -16093,5202:486,-26,-28,0,0,0.356753 -16094,5202:485,-25,-28,0,0,0.351209 -16095,5202:384,-24,-28,0,0,0.344473 -16096,5202:383,-23,-28,0,0,0.348171 -16097,5202:382,-22,-28,0,0,0.351115 -16098,5202:381,-21,-28,0,0,0.346099 -16099,5202:380,-20,-28,0,0,0.342296 -16100,5201:489,-19,-28,0,0,0.35574 -16101,5201:488,-18,-28,0,0,0.348988 -16102,5201:487,-17,-28,0,0,0.341856 -16103,5201:486,-16,-28,0,0,0.342041 -16104,5201:485,-15,-28,0,0,0.343129 -16105,5201:384,-14,-28,0,0,0.339019 -16106,5201:383,-13,-28,0,0,0.343685 -16107,5201:382,-12,-28,0,0,0.33594 -16108,5201:381,-11,-28,0,0,0.334315 -16109,5201:380,-10,-28,0,0,0.332876 -16110,5200:489,-9,-28,0,0,0.333904 -16111,5200:488,-8,-28,0,0,0.337547 -16112,5200:487,-7,-28,0,0,0.336078 -16113,5200:486,-6,-28,0,0,0.345286 -16114,5200:485,-5,-28,0,0,0.34336 -16115,5200:384,-4,-28,0,0,0.337662 -16116,5200:383,-3,-28,0,0,0.334567 -16117,5200:382,-2,-28,0,0,0.331736 -16118,5200:381,-1,-28,0,0,0.330371 -16119,3200:381,0,-28,0,0,0.335528 -16120,3200:381,1,-28,0,0,0.33842 -16121,3200:382,2,-28,0,0,0.335505 -16122,3200:383,3,-28,0,0,0.341995 -16123,3200:384,4,-28,0,0,0.330325 -16124,3200:485,5,-28,0,0,0.326112 -16125,3200:486,6,-28,0,0,0.318906 -16126,3200:487,7,-28,0,0,0.316923 -16127,3200:488,8,-28,0,0,0.335139 -16128,3200:489,9,-28,0,0,0.342504 -16129,3201:380,10,-28,0,0,0.346308 -16130,3201:381,11,-28,0,0,0.352849 -16131,3201:382,12,-28,0,0,0.377156 -16132,3201:383,13,-28,0,0,0.395839 -16133,3201:384,14,-28,0,0,0.392894 -16134,3201:485,15,-28,0,0,0.388492 -16135,3201:486,16,-28,0,0,0.401825 -16136,3201:487,17,-28,0,0,0.397757 -16137,3201:488,18,-28,0,0,0.425619 -16138,3201:489,19,-28,0,0,0.438148 -16139,3202:380,20,-28,0,0,0.440071 -16140,3202:381,21,-28,0,0,0.459852 -16141,3202:382,22,-28,0,0,0.482067 -16142,3202:383,23,-28,0,0,0.457071 -16143,3202:384,24,-28,0,0,0.465011 -16144,3202:485,25,-28,0,0,0.472405 -16145,3202:486,26,-28,0,0,0.461128 -16146,3202:487,27,-28,0,0,0.436554 -16147,3202:488,28,-28,0,0,0.438223 -16148,3202:489,29,-28,0,0,0.446485 -16149,3203:380,30,-28,0,0,0.420078 -16150,3203:381,31,-28,0,0,0.408485 -16151,3203:382,32,-28,0,0,0.407915 -16152,3203:383,33,-28,0,0,0.408983 -16153,3203:384,34,-28,0,0,0.403579 -16154,3203:485,35,-28,0,0,0.401528 -16155,3203:486,36,-28,0,0,0.391939 -16156,3203:487,37,-28,0,0,0.388126 -16157,3203:488,38,-28,0,0,0.386857 -16158,3203:489,39,-28,0,0,0.382626 -16159,3204:380,40,-28,0,0,0.379669 -16160,3204:381,41,-28,0,0,0.377421 -16161,3204:382,42,-28,0,0,0.374914 -16162,3204:383,43,-28,0,0,0.373494 -16163,3204:384,44,-28,0,0,0.373014 -16164,3204:485,45,-28,0,0,0.372942 -16165,3204:486,46,-28,0,0,0.372005 -16166,3204:487,47,-28,0,0,0.367504 -16167,3204:488,48,-28,0,0,0.362503 -16168,3204:489,49,-28,0,0,0.359683 -16169,3205:380,50,-28,0,0,0.354587 -16170,3205:381,51,-28,0,0,0.35501 -16171,3205:382,52,-28,0,0,0.35706 -16172,3205:383,53,-28,0,0,0.357673 -16173,3205:384,54,-28,0,0,0.352075 -16174,3205:485,55,-28,0,0,0.348754 -16175,3205:486,56,-28,0,0,0.34575 -16176,3205:487,57,-28,0,0,0.345286 -16177,3205:488,58,-28,0,0,0.347169 -16178,3205:489,59,-28,0,0,0.344055 -16179,3206:380,60,-28,0,0,0.34218 -16180,3206:381,61,-28,0,0,0.344195 -16181,3206:382,62,-28,0,0,0.348125 -16182,3206:383,63,-28,0,0,0.349852 -16183,3206:384,64,-28,0,0,0.352849 -16184,3206:485,65,-28,0,0,0.351419 -16185,3206:486,66,-28,0,0,0.346006 -16186,3206:487,67,-28,0,0,0.347193 -16187,3206:488,68,-28,0,0,0.351256 -16188,3206:489,69,-28,0,0,0.346308 -16189,3207:380,70,-28,0,0,0.346029 -16190,3207:381,71,-28,0,0,0.349829 -16191,3207:382,72,-28,0,0,0.344241 -16192,3207:384,74,-28,0,0,0.340425 -16193,3207:485,75,-28,0,0,0.344775 -16194,3207:486,76,-28,0,0,0.345843 -16195,3207:487,77,-28,0,0,0.339249 -16196,3207:488,78,-28,0,0,0.335734 -16197,3207:489,79,-28,0,0,0.333949 -16198,3208:380,80,-28,0,0,0.329168 -16199,3208:381,81,-28,0,0,0.331691 -16200,3208:382,82,-28,0,0,0.337271 -16201,3208:383,83,-28,0,0,0.33578 -16202,3208:384,84,-28,0,0,0.332785 -16203,3208:485,85,-28,0,0,0.329576 -16204,3208:486,86,-28,0,0,0.327264 -16205,3208:487,87,-28,0,0,0.325097 -16206,3208:488,88,-28,0,0,0.322083 -16207,3208:489,89,-28,0,0,0.321567 -16208,3209:380,90,-28,0,0,0.321567 -16209,3209:381,91,-28,0,0,0.321321 -16210,3209:382,92,-28,0,0,0.323723 -16211,3209:383,93,-28,0,0,0.322734 -16212,3209:384,94,-28,0,0,0.320761 -16213,3209:485,95,-28,0,0,0.321052 -16214,3209:486,96,-28,0,0,0.319286 -16215,3209:487,97,-28,0,0,0.320291 -16216,3209:488,98,-28,0,0,0.321299 -16217,3209:489,99,-28,0,0,0.317791 -16218,3210:380,100,-28,0,0,0.317168 -16219,3210:381,101,-28,0,0,0.322734 -16220,3210:382,102,-28,0,0,0.317658 -16221,3210:383,103,-28,0,0,0.32697 -16222,3210:384,104,-28,0,0,0.320828 -16223,3210:485,105,-28,0,0,0.321994 -16224,3210:486,106,-28,0,0,0.32826 -16225,3210:487,107,-28,0,0,0.327943 -16226,3210:488,108,-28,0,0,0.331508 -16227,3210:489,109,-28,0,0,0.339894 -16228,3211:380,110,-28,0,0,0.358075 -16229,3211:381,111,-28,0,0,0.369177 -16230,3211:382,112,-28,0,0,0.355246 -16231,3211:383,113,-28,0,0,0.373061 -16232,3211:384,114,-28,0,0,0.381801 -16233,3211:485,115,-28,0,0,0.379403 -16234,3211:486,116,-28,0,0,0.361838 -16235,3211:487,117,-28,0,0,0.367599 -16236,3211:488,118,-28,0,0,0.382043 -16237,3211:489,119,-28,0,0,0.377445 -16238,3212:380,120,-28,0,0,0.374866 -16239,3212:381,121,-28,0,0,0.352451 -16240,3212:382,122,-28,0,0,0.362384 -16241,3212:383,123,-28,0,0,0.358902 -16242,3212:384,124,-28,0,0,0.362337 -16243,3212:485,125,-28,0,0,0.357366 -16244,3212:486,126,-28,0,0,0.360061 -16245,3212:487,127,-28,0,0,0.347379 -16246,3212:488,128,-28,0,0,0.348847 -16247,3212:489,129,-28,0,0,0.352591 -16248,3213:380,130,-28,0,0,0.367408 -16249,3213:381,131,-28,0,0,0.365476 -16250,3213:382,132,-28,0,0,0.352826 -16251,3213:383,133,-28,0,0,0.364072 -16252,3213:384,134,-28,0,0,0.357461 -16253,3213:485,135,-28,0,0,0.361151 -16254,3213:486,136,-28,0,0,0.368173 -16255,3213:487,137,-28,0,0,0.379984 -16256,3213:488,138,-28,0,0,0.38025 -16257,3213:489,139,-28,0,0,0.385177 -16258,3214:380,140,-28,0,0,0.42133 -16259,3215:381,151,-28,0,0,0.476811 -16260,3215:382,152,-28,0,0,0.480118 -16261,3215:383,153,-28,0,0,0.480605 -16262,3215:384,154,-28,0,0,0.466161 -16263,3215:485,155,-28,0,0,0.441667 -16264,3215:486,156,-28,0,0,0.444886 -16265,3215:487,157,-28,0,0,0.466391 -16266,3215:488,158,-28,0,0,0.453046 -16267,3215:489,159,-28,0,0,0.443187 -16268,3216:380,160,-28,0,0,0.450679 -16269,3216:381,161,-28,0,0,0.454013 -16270,3216:382,162,-28,0,0,0.433676 -16271,3216:383,163,-28,0,0,0.420628 -16272,3216:384,164,-28,0,0,0.413859 -16273,3216:485,165,-28,0,0,0.3926 -16274,3216:486,166,-28,0,0,0.391939 -16275,3216:487,167,-28,0,0,0.391229 -16276,3216:488,168,-28,0,0,0.390666 -16277,3216:489,169,-28,0,0,0.381607 -16278,3217:380,170,-28,0,0,0.380178 -16279,3217:381,171,-28,0,0,0.374721 -16280,3217:382,172,-28,0,0,0.37359 -16281,3217:383,173,-28,0,0,0.365333 -16282,3217:384,174,-28,0,0,0.373999 -16283,3217:486,176,-28,0,0,0.396035 -16284,3217:487,177,-28,0,0,0.40101 -16285,3217:488,178,-28,0,0,0.395962 -16286,3217:489,179,-28,0,0,0.393875 -16287,3218:380,180,-28,0,0,0.395716 -16288,5218:370,-180,-27,0,0,0.391229 -16289,5217:479,-179,-27,0,0,0.396232 -16290,5217:478,-178,-27,0,0,0.390226 -16291,5217:477,-177,-27,0,0,0.387321 -16292,5217:476,-176,-27,0,0,0.390324 -16293,5217:475,-175,-27,0,0,0.394587 -16294,5217:374,-174,-27,0,0,0.398914 -16295,5217:373,-173,-27,0,0,0.398102 -16296,5217:372,-172,-27,0,0,0.393017 -16297,5217:371,-171,-27,0,0,0.393752 -16298,5217:370,-170,-27,0,0,0.3952 -16299,5216:479,-169,-27,0,0,0.396109 -16300,5216:478,-168,-27,0,0,0.394685 -16301,5216:477,-167,-27,0,0,0.390984 -16302,5216:476,-166,-27,0,0,0.387711 -16303,5216:475,-165,-27,0,0,0.38659 -16304,5216:374,-164,-27,0,0,0.387638 -16305,5216:373,-163,-27,0,0,0.387662 -16306,5216:372,-162,-27,0,0,0.387516 -16307,5216:371,-161,-27,0,0,0.388003 -16308,5216:370,-160,-27,0,0,0.388955 -16309,5215:479,-159,-27,0,0,0.390666 -16310,5215:478,-158,-27,0,0,0.393826 -16311,5215:477,-157,-27,0,0,0.397683 -16312,5215:476,-156,-27,0,0,0.39921 -16313,5215:475,-155,-27,0,0,0.396969 -16314,5215:374,-154,-27,0,0,0.395053 -16315,5215:373,-153,-27,0,0,0.398914 -16316,5215:372,-152,-27,0,0,0.401874 -16317,5215:371,-151,-27,0,0,0.402764 -16318,5215:370,-150,-27,0,0,0.40494 -16319,5214:479,-149,-27,0,0,0.404693 -16320,5214:478,-148,-27,0,0,0.401282 -16321,5214:477,-147,-27,0,0,0.397634 -16322,5214:476,-146,-27,0,0,0.397117 -16323,5214:475,-145,-27,0,0,0.401652 -16324,5214:374,-144,-27,0,0,0.397929 -16325,5214:373,-143,-27,0,0,0.394439 -16326,5214:372,-142,-27,0,0,0.394513 -16327,5214:371,-141,-27,0,0,0.393899 -16328,5214:370,-140,-27,0,0,0.392674 -16329,5213:479,-139,-27,0,0,0.395519 -16330,5213:478,-138,-27,0,0,0.397044 -16331,5213:477,-137,-27,0,0,0.396994 -16332,5213:476,-136,-27,0,0,0.398077 -16333,5213:475,-135,-27,0,0,0.399407 -16334,5213:374,-134,-27,0,0,0.396428 -16335,5213:373,-133,-27,0,0,0.395495 -16336,5213:372,-132,-27,0,0,0.394906 -16337,5213:371,-131,-27,0,0,0.391205 -16338,5213:370,-130,-27,0,0,0.390006 -16339,5212:479,-129,-27,0,0,0.388663 -16340,5212:478,-128,-27,0,0,0.383306 -16341,5212:477,-127,-27,0,0,0.382189 -16342,5212:476,-126,-27,0,0,0.383208 -16343,5212:475,-125,-27,0,0,0.380686 -16344,5212:374,-124,-27,0,0,0.381946 -16345,5212:373,-123,-27,0,0,0.382019 -16346,5212:372,-122,-27,0,0,0.380953 -16347,5212:371,-121,-27,0,0,0.379427 -16348,5212:370,-120,-27,0,0,0.379355 -16349,5211:479,-119,-27,0,0,0.37933 -16350,5211:478,-118,-27,0,0,0.372317 -16351,5211:477,-117,-27,0,0,0.366597 -16352,5211:476,-116,-27,0,0,0.368675 -16353,5211:475,-115,-27,0,0,0.37436 -16354,5211:374,-114,-27,0,0,0.378895 -16355,5211:373,-113,-27,0,0,0.382505 -16356,5211:372,-112,-27,0,0,0.378267 -16357,5211:371,-111,-27,0,0,0.375902 -16358,5211:370,-110,-27,0,0,0.379476 -16359,5210:479,-109,-27,0,0,0.379452 -16360,5210:478,-108,-27,0,0,0.387516 -16361,5210:477,-107,-27,0,0,0.377735 -16362,5210:476,-106,-27,0,0,0.375058 -16363,5210:475,-105,-27,0,0,0.37846 -16364,5210:374,-104,-27,0,0,0.360653 -16365,5210:373,-103,-27,0,0,0.371861 -16366,5210:372,-102,-27,0,0,0.369129 -16367,5210:371,-101,-27,0,0,0.367934 -16368,5210:370,-100,-27,0,0,0.356801 -16369,5209:479,-99,-27,0,0,0.362218 -16370,5209:478,-98,-27,0,0,0.365143 -16371,5209:477,-97,-27,0,0,0.362194 -16372,5209:476,-96,-27,0,0,0.35494 -16373,5209:475,-95,-27,0,0,0.360605 -16374,5209:374,-94,-27,0,0,0.357956 -16375,5209:373,-93,-27,0,0,0.355105 -16376,5209:372,-92,-27,0,0,0.365523 -16377,5209:371,-91,-27,0,0,0.358028 -16378,5209:370,-90,-27,0,0,0.361886 -16379,5208:479,-89,-27,0,0,0.362978 -16380,5208:478,-88,-27,0,0,0.360701 -16381,5208:477,-87,-27,0,0,0.358193 -16382,5208:476,-86,-27,0,0,0.35224 -16383,5208:475,-85,-27,0,0,0.349315 -16384,5208:374,-84,-27,0,0,0.349758 -16385,5208:373,-83,-27,0,0,0.347938 -16386,5208:372,-82,-27,0,0,0.346122 -16387,5208:371,-81,-27,0,0,0.343407 -16388,5208:370,-80,-27,0,0,0.341671 -16389,5207:479,-79,-27,0,0,0.350881 -16390,5207:478,-78,-27,0,0,0.346983 -16391,5207:477,-77,-27,0,0,0.346727 -16392,5207:476,-76,-27,0,0,0.343337 -16393,5207:475,-75,-27,0,0,0.335368 -16394,5207:374,-74,-27,0,0,0.332602 -16395,5207:373,-73,-27,0,0,0.325999 -16396,5205:477,-57,-27,0,0,0.503071 -16397,5205:476,-56,-27,0,0,0.466212 -16398,5205:475,-55,-27,0,0,0.408983 -16399,5205:374,-54,-27,0,0,0.403852 -16400,5205:373,-53,-27,0,0,0.405312 -16401,5205:372,-52,-27,0,0,0.447222 -16402,5205:371,-51,-27,0,0,0.5004 -16403,5205:370,-50,-27,0,0,0.475402 -16404,5204:479,-49,-27,0,0,0.466979 -16405,5204:478,-48,-27,0,0,0.457964 -16406,5204:477,-47,-27,0,0,0.463068 -16407,5204:476,-46,-27,0,0,0.439311 -16408,5204:475,-45,-27,0,0,0.432717 -16409,5204:374,-44,-27,0,0,0.41199 -16410,5204:373,-43,-27,0,0,0.407815 -16411,5204:372,-42,-27,0,0,0.399654 -16412,5204:371,-41,-27,0,0,0.403357 -16413,5204:370,-40,-27,0,0,0.396921 -16414,5203:479,-39,-27,0,0,0.39412 -16415,5203:478,-38,-27,0,0,0.387077 -16416,5203:477,-37,-27,0,0,0.376047 -16417,5203:476,-36,-27,0,0,0.379863 -16418,5203:475,-35,-27,0,0,0.373447 -16419,5203:374,-34,-27,0,0,0.370926 -16420,5203:373,-33,-27,0,0,0.377277 -16421,5203:372,-32,-27,0,0,0.36674 -16422,5203:371,-31,-27,0,0,0.369201 -16423,5203:370,-30,-27,0,0,0.366812 -16424,5202:479,-29,-27,0,0,0.363311 -16425,5202:478,-28,-27,0,0,0.367599 -16426,5202:477,-27,-27,0,0,0.371381 -16427,5202:476,-26,-27,0,0,0.36968 -16428,5202:475,-25,-27,0,0,0.366549 -16429,5202:374,-24,-27,0,0,0.364357 -16430,5202:373,-23,-27,0,0,0.359327 -16431,5202:372,-22,-27,0,0,0.360297 -16432,5202:371,-21,-27,0,0,0.366931 -16433,5202:370,-20,-27,0,0,0.364833 -16434,5201:479,-19,-27,0,0,0.363644 -16435,5201:478,-18,-27,0,0,0.362313 -16436,5201:477,-17,-27,0,0,0.361009 -16437,5201:476,-16,-27,0,0,0.351045 -16438,5201:475,-15,-27,0,0,0.348288 -16439,5201:374,-14,-27,0,0,0.355364 -16440,5201:373,-13,-27,0,0,0.354964 -16441,5201:372,-12,-27,0,0,0.365071 -16442,5201:371,-11,-27,0,0,0.351981 -16443,5201:370,-10,-27,0,0,0.36748 -16444,5200:479,-9,-27,0,0,0.357296 -16445,5200:478,-8,-27,0,0,0.362883 -16446,5200:477,-7,-27,0,0,0.361483 -16447,5200:476,-6,-27,0,0,0.363121 -16448,5200:475,-5,-27,0,0,0.362527 -16449,5200:374,-4,-27,0,0,0.36108 -16450,5200:373,-3,-27,0,0,0.354446 -16451,5200:372,-2,-27,0,0,0.352497 -16452,5200:371,-1,-27,0,0,0.347589 -16453,3200:371,0,-27,0,0,0.352451 -16454,3200:371,1,-27,0,0,0.354822 -16455,3200:372,2,-27,0,0,0.35928 -16456,3200:373,3,-27,0,0,0.358807 -16457,3200:374,4,-27,0,0,0.354658 -16458,3200:475,5,-27,0,0,0.353859 -16459,3200:476,6,-27,0,0,0.358902 -16460,3200:477,7,-27,0,0,0.362265 -16461,3200:478,8,-27,0,0,0.37424 -16462,3200:479,9,-27,0,0,0.378847 -16463,3201:370,10,-27,0,0,0.377977 -16464,3201:371,11,-27,0,0,0.367647 -16465,3201:372,12,-27,0,0,0.39233 -16466,3201:373,13,-27,0,0,0.396724 -16467,3201:374,14,-27,0,0,0.391082 -16468,3201:475,15,-27,0,0,0.393213 -16469,3201:476,16,-27,0,0,0.400196 -16470,3201:477,17,-27,0,0,0.397216 -16471,3201:478,18,-27,0,0,0.423761 -16472,3201:479,19,-27,0,0,0.424364 -16473,3202:370,20,-27,0,0,0.41513 -16474,3202:371,21,-27,0,0,0.416378 -16475,3202:372,22,-27,0,0,0.438122 -16476,3202:373,23,-27,0,0,0.48507 -16477,3202:374,24,-27,0,0,0.492977 -16478,3202:475,25,-27,0,0,0.487842 -16479,3202:476,26,-27,0,0,0.480426 -16480,3202:477,27,-27,0,0,0.482042 -16481,3202:478,28,-27,0,0,0.488355 -16482,3202:479,29,-27,0,0,0.452536 -16483,3203:370,30,-27,0,0,0.444049 -16484,3203:371,31,-27,0,0,0.416428 -16485,3203:372,32,-27,0,0,0.413609 -16486,3203:373,33,-27,0,0,0.411941 -16487,3203:374,34,-27,0,0,0.409578 -16488,3203:475,35,-27,0,0,0.418427 -16489,3203:476,36,-27,0,0,0.408262 -16490,3203:477,37,-27,0,0,0.39958 -16491,3203:478,38,-27,0,0,0.399974 -16492,3203:479,39,-27,0,0,0.404569 -16493,3204:370,40,-27,0,0,0.394488 -16494,3204:371,41,-27,0,0,0.38776 -16495,3204:372,42,-27,0,0,0.387247 -16496,3204:373,43,-27,0,0,0.386687 -16497,3204:374,44,-27,0,0,0.386176 -16498,3204:475,45,-27,0,0,0.386882 -16499,3204:476,46,-27,0,0,0.38384 -16500,3204:477,47,-27,0,0,0.379282 -16501,3204:478,48,-27,0,0,0.377301 -16502,3204:479,49,-27,0,0,0.374649 -16503,3205:370,50,-27,0,0,0.372509 -16504,3205:371,51,-27,0,0,0.37047 -16505,3205:372,52,-27,0,0,0.373374 -16506,3205:373,53,-27,0,0,0.366549 -16507,3205:374,54,-27,0,0,0.366406 -16508,3205:475,55,-27,0,0,0.362503 -16509,3205:476,56,-27,0,0,0.36255 -16510,3205:477,57,-27,0,0,0.3621 -16511,3205:478,58,-27,0,0,0.363525 -16512,3205:479,59,-27,0,0,0.368244 -16513,3206:370,60,-27,0,0,0.367982 -16514,3206:371,61,-27,0,0,0.369488 -16515,3206:372,62,-27,0,0,0.367671 -16516,3206:373,63,-27,0,0,0.369512 -16517,3206:374,64,-27,0,0,0.369943 -16518,3206:475,65,-27,0,0,0.369488 -16519,3206:476,66,-27,0,0,0.370926 -16520,3206:477,67,-27,0,0,0.36581 -16521,3206:478,68,-27,0,0,0.369225 -16522,3206:479,69,-27,0,0,0.365523 -16523,3207:370,70,-27,0,0,0.366096 -16524,3207:371,71,-27,0,0,0.367026 -16525,3207:372,72,-27,0,0,0.364691 -16526,3207:374,74,-27,0,0,0.372437 -16527,3207:475,75,-27,0,0,0.371357 -16528,3207:476,76,-27,0,0,0.377084 -16529,3207:477,77,-27,0,0,0.364072 -16530,3207:478,78,-27,0,0,0.358571 -16531,3207:479,79,-27,0,0,0.362289 -16532,3208:370,80,-27,0,0,0.359304 -16533,3208:371,81,-27,0,0,0.358594 -16534,3208:372,82,-27,0,0,0.363263 -16535,3208:373,83,-27,0,0,0.362337 -16536,3208:374,84,-27,0,0,0.357886 -16537,3208:475,85,-27,0,0,0.354681 -16538,3208:476,86,-27,0,0,0.355882 -16539,3208:477,87,-27,0,0,0.356659 -16540,3208:478,88,-27,0,0,0.354164 -16541,3208:479,89,-27,0,0,0.348242 -16542,3209:370,90,-27,0,0,0.350179 -16543,3209:371,91,-27,0,0,0.350974 -16544,3209:372,92,-27,0,0,0.349758 -16545,3209:373,93,-27,0,0,0.349782 -16546,3209:374,94,-27,0,0,0.344473 -16547,3209:475,95,-27,0,0,0.342319 -16548,3209:476,96,-27,0,0,0.343268 -16549,3209:477,97,-27,0,0,0.344914 -16550,3209:478,98,-27,0,0,0.344032 -16551,3209:479,99,-27,0,0,0.344195 -16552,3210:370,100,-27,0,0,0.345588 -16553,3210:371,101,-27,0,0,0.346029 -16554,3210:372,102,-27,0,0,0.339686 -16555,3210:373,103,-27,0,0,0.340217 -16556,3210:374,104,-27,0,0,0.339134 -16557,3210:475,105,-27,0,0,0.347379 -16558,3210:476,106,-27,0,0,0.350437 -16559,3210:477,107,-27,0,0,0.355764 -16560,3210:478,108,-27,0,0,0.349642 -16561,3210:479,109,-27,0,0,0.361269 -16562,3211:370,110,-27,0,0,0.377132 -16563,3211:371,111,-27,0,0,0.381267 -16564,3211:372,112,-27,0,0,0.38105 -16565,3211:373,113,-27,0,0,0.399086 -16566,3211:374,114,-27,0,0,0.424841 -16567,3211:475,115,-27,0,0,0.440071 -16568,3211:476,116,-27,0,0,0.437338 -16569,3211:477,117,-27,0,0,0.438299 -16570,3211:478,118,-27,0,0,0.430852 -16571,3211:479,119,-27,0,0,0.418802 -16572,3212:370,120,-27,0,0,0.396674 -16573,3212:371,121,-27,0,0,0.372461 -16574,3212:372,122,-27,0,0,0.38316 -16575,3212:373,123,-27,0,0,0.376166 -16576,3212:374,124,-27,0,0,0.369608 -16577,3212:475,125,-27,0,0,0.370063 -16578,3212:476,126,-27,0,0,0.368507 -16579,3212:477,127,-27,0,0,0.36901 -16580,3212:478,128,-27,0,0,0.365833 -16581,3212:479,129,-27,0,0,0.36612 -16582,3213:370,130,-27,0,0,0.373182 -16583,3213:371,131,-27,0,0,0.372581 -16584,3213:372,132,-27,0,0,0.368053 -16585,3213:373,133,-27,0,0,0.385932 -16586,3213:374,134,-27,0,0,0.389517 -16587,3213:475,135,-27,0,0,0.389102 -16588,3213:476,136,-27,0,0,0.393262 -16589,3213:477,137,-27,0,0,0.421079 -16590,3213:478,138,-27,0,0,0.412364 -16591,3215:371,151,-27,0,0,0.495108 -16592,3215:372,152,-27,0,0,0.478042 -16593,3215:373,153,-27,0,0,0.485942 -16594,3215:374,154,-27,0,0,0.510596 -16595,3215:475,155,-27,0,0,0.528828 -16596,3215:476,156,-27,0,0,0.502044 -16597,3215:477,157,-27,0,0,0.50302 -16598,3215:478,158,-27,0,0,0.475171 -16599,3215:479,159,-27,0,0,0.484018 -16600,3216:370,160,-27,0,0,0.50284 -16601,3216:371,161,-27,0,0,0.504869 -16602,3216:372,162,-27,0,0,0.450959 -16603,3216:373,163,-27,0,0,0.464985 -16604,3216:374,164,-27,0,0,0.438527 -16605,3216:475,165,-27,0,0,0.412339 -16606,3216:476,166,-27,0,0,0.41341 -16607,3216:477,167,-27,0,0,0.40866 -16608,3216:478,168,-27,0,0,0.402813 -16609,3216:479,169,-27,0,0,0.397437 -16610,3217:370,170,-27,0,0,0.391278 -16611,3217:371,171,-27,0,0,0.390421 -16612,3217:372,172,-27,0,0,0.38316 -16613,3217:373,173,-27,0,0,0.382505 -16614,3217:475,175,-27,0,0,0.397511 -16615,3217:476,176,-27,0,0,0.410647 -16616,3217:477,177,-27,0,0,0.406204 -16617,3217:478,178,-27,0,0,0.401085 -16618,3217:479,179,-27,0,0,0.397265 -16619,3218:370,180,-27,0,0,0.391229 -16620,5218:360,-180,-26,0,0,0.410747 -16621,5217:469,-179,-26,0,0,0.411617 -16622,5217:468,-178,-26,0,0,0.412837 -16623,5217:467,-177,-26,0,0,0.415155 -16624,5217:466,-176,-26,0,0,0.414307 -16625,5217:465,-175,-26,0,0,0.408734 -16626,5217:364,-174,-26,0,0,0.406352 -16627,5217:363,-173,-26,0,0,0.413111 -16628,5217:362,-172,-26,0,0,0.415454 -16629,5217:361,-171,-26,0,0,0.417427 -16630,5217:360,-170,-26,0,0,0.412638 -16631,5216:469,-169,-26,0,0,0.414157 -16632,5216:468,-168,-26,0,0,0.407146 -16633,5216:467,-167,-26,0,0,0.407047 -16634,5216:466,-166,-26,0,0,0.403802 -16635,5216:465,-165,-26,0,0,0.400024 -16636,5216:364,-164,-26,0,0,0.401479 -16637,5216:363,-163,-26,0,0,0.405485 -16638,5216:362,-162,-26,0,0,0.405956 -16639,5216:361,-161,-26,0,0,0.403678 -16640,5216:360,-160,-26,0,0,0.404717 -16641,5215:469,-159,-26,0,0,0.404965 -16642,5215:468,-158,-26,0,0,0.403134 -16643,5215:467,-157,-26,0,0,0.404445 -16644,5215:466,-156,-26,0,0,0.407393 -16645,5215:465,-155,-26,0,0,0.408958 -16646,5215:364,-154,-26,0,0,0.409802 -16647,5215:363,-153,-26,0,0,0.414831 -16648,5215:362,-152,-26,0,0,0.415554 -16649,5215:361,-151,-26,0,0,0.417028 -16650,5215:360,-150,-26,0,0,0.415679 -16651,5214:469,-149,-26,0,0,0.415804 -16652,5214:468,-148,-26,0,0,0.411941 -16653,5214:467,-147,-26,0,0,0.409082 -16654,5214:466,-146,-26,0,0,0.411891 -16655,5214:465,-145,-26,0,0,0.411518 -16656,5214:364,-144,-26,0,0,0.411841 -16657,5214:363,-143,-26,0,0,0.408014 -16658,5214:362,-142,-26,0,0,0.403332 -16659,5214:361,-141,-26,0,0,0.403407 -16660,5214:360,-140,-26,0,0,0.404916 -16661,5213:469,-139,-26,0,0,0.403777 -16662,5213:468,-138,-26,0,0,0.407418 -16663,5213:467,-137,-26,0,0,0.410846 -16664,5213:466,-136,-26,0,0,0.411717 -16665,5213:465,-135,-26,0,0,0.41229 -16666,5213:364,-134,-26,0,0,0.411916 -16667,5213:363,-133,-26,0,0,0.408138 -16668,5213:362,-132,-26,0,0,0.406352 -16669,5213:361,-131,-26,0,0,0.405758 -16670,5213:360,-130,-26,0,0,0.40306 -16671,5212:469,-129,-26,0,0,0.399086 -16672,5212:468,-128,-26,0,0,0.393949 -16673,5212:467,-127,-26,0,0,0.393507 -16674,5212:466,-126,-26,0,0,0.396748 -16675,5212:465,-125,-26,0,0,0.397462 -16676,5212:364,-124,-26,0,0,0.396576 -16677,5212:363,-123,-26,0,0,0.394979 -16678,5212:362,-122,-26,0,0,0.393605 -16679,5212:361,-121,-26,0,0,0.392135 -16680,5212:360,-120,-26,0,0,0.391645 -16681,5211:469,-119,-26,0,0,0.391816 -16682,5211:468,-118,-26,0,0,0.389981 -16683,5211:467,-117,-26,0,0,0.38793 -16684,5211:466,-116,-26,0,0,0.391523 -16685,5211:465,-115,-26,0,0,0.395814 -16686,5211:364,-114,-26,0,0,0.395053 -16687,5211:363,-113,-26,0,0,0.392526 -16688,5211:362,-112,-26,0,0,0.395667 -16689,5211:361,-111,-26,0,0,0.394685 -16690,5211:360,-110,-26,0,0,0.39439 -16691,5210:469,-109,-26,0,0,0.397068 -16692,5210:468,-108,-26,0,0,0.399629 -16693,5210:467,-107,-26,0,0,0.397732 -16694,5210:466,-106,-26,0,0,0.392649 -16695,5210:465,-105,-26,0,0,0.392943 -16696,5210:364,-104,-26,0,0,0.397634 -16697,5210:363,-103,-26,0,0,0.407865 -16698,5210:362,-102,-26,0,0,0.39788 -16699,5210:361,-101,-26,0,0,0.384472 -16700,5210:360,-100,-26,0,0,0.38859 -16701,5209:469,-99,-26,0,0,0.384132 -16702,5209:468,-98,-26,0,0,0.37718 -16703,5209:467,-97,-26,0,0,0.378871 -16704,5209:466,-96,-26,0,0,0.380105 -16705,5209:465,-95,-26,0,0,0.379379 -16706,5209:364,-94,-26,0,0,0.373711 -16707,5209:363,-93,-26,0,0,0.380928 -16708,5209:362,-92,-26,0,0,0.38054 -16709,5209:361,-91,-26,0,0,0.378919 -16710,5209:360,-90,-26,0,0,0.381849 -16711,5208:469,-89,-26,0,0,0.378122 -16712,5208:468,-88,-26,0,0,0.379379 -16713,5208:467,-87,-26,0,0,0.373686 -16714,5208:466,-86,-26,0,0,0.370135 -16715,5208:465,-85,-26,0,0,0.369129 -16716,5208:364,-84,-26,0,0,0.365381 -16717,5208:363,-83,-26,0,0,0.365357 -16718,5208:362,-82,-26,0,0,0.363691 -16719,5208:361,-81,-26,0,0,0.362123 -16720,5208:360,-80,-26,0,0,0.358311 -16721,5207:469,-79,-26,0,0,0.365286 -16722,5207:468,-78,-26,0,0,0.366573 -16723,5207:467,-77,-26,0,0,0.364404 -16724,5207:466,-76,-26,0,0,0.35567 -16725,5207:465,-75,-26,0,0,0.348847 -16726,5207:364,-74,-26,0,0,0.343824 -16727,5207:363,-73,-26,0,0,0.339641 -16728,5207:362,-72,-26,0,0,0.306694 -16729,5205:363,-53,-26,0,0,0.437768 -16730,5205:362,-52,-26,0,0,0.431079 -16731,5205:361,-51,-26,0,0,0.530696 -16732,5205:360,-50,-26,0,0,0.541683 -16733,5204:469,-49,-26,0,0,0.512341 -16734,5204:468,-48,-26,0,0,0.483478 -16735,5204:467,-47,-26,0,0,0.496753 -16736,5204:466,-46,-26,0,0,0.472507 -16737,5204:465,-45,-26,0,0,0.461638 -16738,5204:364,-44,-26,0,0,0.426624 -16739,5204:363,-43,-26,0,0,0.42846 -16740,5204:362,-42,-26,0,0,0.429014 -16741,5204:361,-41,-26,0,0,0.417752 -16742,5204:360,-40,-26,0,0,0.408485 -16743,5203:469,-39,-26,0,0,0.41092 -16744,5203:468,-38,-26,0,0,0.395077 -16745,5203:467,-37,-26,0,0,0.401479 -16746,5203:466,-36,-26,0,0,0.391792 -16747,5203:465,-35,-26,0,0,0.393458 -16748,5203:364,-34,-26,0,0,0.391498 -16749,5203:363,-33,-26,0,0,0.381267 -16750,5203:362,-32,-26,0,0,0.38054 -16751,5203:361,-31,-26,0,0,0.382165 -16752,5203:360,-30,-26,0,0,0.386638 -16753,5202:469,-29,-26,0,0,0.382577 -16754,5202:468,-28,-26,0,0,0.381631 -16755,5202:467,-27,-26,0,0,0.389835 -16756,5202:466,-26,-26,0,0,0.391473 -16757,5202:465,-25,-26,0,0,0.384204 -16758,5202:364,-24,-26,0,0,0.3892 -16759,5202:363,-23,-26,0,0,0.393311 -16760,5202:362,-22,-26,0,0,0.389933 -16761,5202:361,-21,-26,0,0,0.388003 -16762,5202:360,-20,-26,0,0,0.383111 -16763,5201:469,-19,-26,0,0,0.38134 -16764,5201:468,-18,-26,0,0,0.375324 -16765,5201:467,-17,-26,0,0,0.377808 -16766,5201:466,-16,-26,0,0,0.373903 -16767,5201:465,-15,-26,0,0,0.381316 -16768,5201:364,-14,-26,0,0,0.37477 -16769,5201:363,-13,-26,0,0,0.372797 -16770,5201:362,-12,-26,0,0,0.383694 -16771,5201:361,-11,-26,0,0,0.372293 -16772,5201:360,-10,-26,0,0,0.383791 -16773,5200:469,-9,-26,0,0,0.378654 -16774,5200:468,-8,-26,0,0,0.383354 -16775,5200:467,-7,-26,0,0,0.384132 -16776,5200:466,-6,-26,0,0,0.38025 -16777,5200:465,-5,-26,0,0,0.382674 -16778,5200:364,-4,-26,0,0,0.383549 -16779,5200:363,-3,-26,0,0,0.387711 -16780,5200:362,-2,-26,0,0,0.384083 -16781,5200:361,-1,-26,0,0,0.373278 -16782,3200:361,0,-26,0,0,0.372053 -16783,3200:361,1,-26,0,0,0.37875 -16784,3200:362,2,-26,0,0,0.377905 -16785,3200:363,3,-26,0,0,0.377301 -16786,3200:364,4,-26,0,0,0.376674 -16787,3200:465,5,-26,0,0,0.377735 -16788,3200:466,6,-26,0,0,0.386029 -16789,3200:467,7,-26,0,0,0.387833 -16790,3200:468,8,-26,0,0,0.383962 -16791,3200:469,9,-26,0,0,0.38042 -16792,3201:360,10,-26,0,0,0.379137 -16793,3201:361,11,-26,0,0,0.37933 -16794,3201:362,12,-26,0,0,0.390031 -16795,3201:363,13,-26,0,0,0.402467 -16796,3201:364,14,-26,0,0,0.401356 -16797,3201:465,15,-26,0,0,0.401232 -16798,3201:466,16,-26,0,0,0.407096 -16799,3201:467,17,-26,0,0,0.41518 -16800,3201:468,18,-26,0,0,0.393213 -16801,3202:465,25,-26,0,0,0.421631 -16802,3202:466,26,-26,0,0,0.463452 -16803,3202:467,27,-26,0,0,0.520243 -16804,3202:468,28,-26,0,0,0.505896 -16805,3202:469,29,-26,0,0,0.502865 -16806,3203:360,30,-26,0,0,0.49927 -16807,3203:361,31,-26,0,0,0.451314 -16808,3203:362,32,-26,0,0,0.446232 -16809,3203:363,33,-26,0,0,0.444404 -16810,3203:364,34,-26,0,0,0.439185 -17135,3204:457,47,-25,0,0,0.42133 -16811,3203:465,35,-26,0,0,0.435746 -16812,3203:466,36,-26,0,0,0.427479 -16813,3203:467,37,-26,0,0,0.427781 -16814,3203:468,38,-26,0,0,0.427755 -16815,3203:469,39,-26,0,0,0.426373 -16816,3204:360,40,-26,0,0,0.419878 -16817,3204:361,41,-26,0,0,0.411393 -16818,3204:362,42,-26,0,0,0.407791 -16819,3204:363,43,-26,0,0,0.405634 -16820,3204:364,44,-26,0,0,0.408585 -16821,3204:465,45,-26,0,0,0.40861 -16822,3204:466,46,-26,0,0,0.401381 -16823,3204:467,47,-26,0,0,0.397019 -16824,3204:468,48,-26,0,0,0.400368 -16825,3204:469,49,-26,0,0,0.393409 -16826,3205:360,50,-26,0,0,0.393654 -16827,3205:361,51,-26,0,0,0.391473 -16828,3205:362,52,-26,0,0,0.390739 -16829,3205:363,53,-26,0,0,0.392919 -16830,3205:364,54,-26,0,0,0.390837 -16831,3205:465,55,-26,0,0,0.387686 -16832,3205:466,56,-26,0,0,0.383063 -16833,3205:467,57,-26,0,0,0.38134 -16834,3205:468,58,-26,0,0,0.382505 -16835,3205:469,59,-26,0,0,0.386395 -16836,3206:360,60,-26,0,0,0.393654 -16837,3206:361,61,-26,0,0,0.395962 -16838,3206:362,62,-26,0,0,0.394979 -16839,3206:363,63,-26,0,0,0.391498 -16840,3206:364,64,-26,0,0,0.386054 -16841,3206:465,65,-26,0,0,0.394194 -16842,3206:466,66,-26,0,0,0.391718 -16843,3206:467,67,-26,0,0,0.388053 -16844,3206:468,68,-26,0,0,0.388663 -16845,3206:469,69,-26,0,0,0.389053 -16846,3207:360,70,-26,0,0,0.386516 -16847,3207:361,71,-26,0,0,0.387589 -16848,3207:362,72,-26,0,0,0.390275 -16849,3207:364,74,-26,0,0,0.395962 -16850,3207:465,75,-26,0,0,0.401306 -16851,3207:466,76,-26,0,0,0.40442 -16852,3207:467,77,-26,0,0,0.398594 -16853,3207:468,78,-26,0,0,0.398544 -16854,3207:469,79,-26,0,0,0.396551 -16855,3208:360,80,-26,0,0,0.398027 -16856,3208:361,81,-26,0,0,0.396404 -16857,3208:362,82,-26,0,0,0.39189 -16858,3208:363,83,-26,0,0,0.387199 -16859,3208:364,84,-26,0,0,0.387077 -16860,3208:465,85,-26,0,0,0.388394 -16861,3208:466,86,-26,0,0,0.386492 -16862,3208:467,87,-26,0,0,0.387077 -16863,3208:468,88,-26,0,0,0.383403 -16864,3208:469,89,-26,0,0,0.379185 -16865,3209:360,90,-26,0,0,0.377832 -16866,3209:361,91,-26,0,0,0.376119 -16867,3209:362,92,-26,0,0,0.376022 -16868,3209:363,93,-26,0,0,0.371405 -16869,3209:364,94,-26,0,0,0.36834 -16870,3209:465,95,-26,0,0,0.371309 -16871,3209:466,96,-26,0,0,0.37424 -16872,3209:467,97,-26,0,0,0.368005 -16873,3209:468,98,-26,0,0,0.363668 -16874,3209:469,99,-26,0,0,0.365452 -16875,3210:360,100,-26,0,0,0.3621 -16876,3210:361,101,-26,0,0,0.363311 -16877,3210:362,102,-26,0,0,0.369106 -16878,3210:363,103,-26,0,0,0.366287 -16879,3210:364,104,-26,0,0,0.357248 -16880,3210:465,105,-26,0,0,0.355622 -16881,3210:466,106,-26,0,0,0.364691 -16882,3210:467,107,-26,0,0,0.373879 -16883,3210:468,108,-26,0,0,0.381122 -16884,3210:469,109,-26,0,0,0.389908 -16885,3211:360,110,-26,0,0,0.400689 -16886,3211:361,111,-26,0,0,0.407146 -16887,3211:362,112,-26,0,0,0.412663 -16888,3211:363,113,-26,0,0,0.417627 -16889,3211:364,114,-26,0,0,0.421355 -16890,3211:465,115,-26,0,0,0.449992 -16891,3212:360,120,-26,0,0,0.419527 -16892,3212:361,121,-26,0,0,0.420328 -16893,3212:362,122,-26,0,0,0.420628 -16894,3212:363,123,-26,0,0,0.415904 -16895,3212:364,124,-26,0,0,0.403258 -16896,3212:465,125,-26,0,0,0.390446 -16897,3212:466,126,-26,0,0,0.372533 -16898,3212:467,127,-26,0,0,0.37323 -16899,3212:468,128,-26,0,0,0.383888 -16900,3212:469,129,-26,0,0,0.394464 -16901,3213:360,130,-26,0,0,0.398988 -16902,3213:361,131,-26,0,0,0.398569 -16903,3213:362,132,-26,0,0,0.403283 -16904,3213:363,133,-26,0,0,0.40301 -16905,3213:364,134,-26,0,0,0.411319 -16906,3213:465,135,-26,0,0,0.422457 -16907,3213:467,137,-26,0,0,0.449255 -16908,3215:362,152,-26,0,0,0.494595 -16909,3215:363,153,-26,0,0,0.498294 -16910,3215:364,154,-26,0,0,0.5614 -16911,3215:465,155,-26,0,0,0.552883 -16912,3215:466,156,-26,0,0,0.560084 -16913,3215:467,157,-26,0,0,0.529186 -16914,3215:468,158,-26,0,0,0.5365 -16915,3215:469,159,-26,0,0,0.531617 -16916,3216:360,160,-26,0,0,0.515678 -16917,3216:361,161,-26,0,0,0.50849 -16918,3216:362,162,-26,0,0,0.483376 -16919,3216:363,163,-26,0,0,0.488688 -16920,3216:364,164,-26,0,0,0.467797 -16921,3216:465,165,-26,0,0,0.444734 -16922,3216:466,166,-26,0,0,0.448975 -16923,3216:467,167,-26,0,0,0.445648 -16924,3216:468,168,-26,0,0,0.422633 -16925,3216:469,169,-26,0,0,0.411493 -16926,3217:360,170,-26,0,0,0.405287 -16927,3217:361,171,-26,0,0,0.40353 -16928,3217:362,172,-26,0,0,0.394022 -16929,3217:363,173,-26,0,0,0.401454 -16930,3217:364,174,-26,0,0,0.434079 -16931,3217:465,175,-26,0,0,0.423938 -16932,3217:466,176,-26,0,0,0.42158 -16933,3217:467,177,-26,0,0,0.407096 -16934,3217:468,178,-26,0,0,0.419427 -16935,3217:469,179,-26,0,0,0.417527 -16936,3218:360,180,-26,0,0,0.410747 -16937,5218:350,-180,-25,0,0,0.427529 -16938,5217:459,-179,-25,0,0,0.428234 -16939,5217:458,-178,-25,0,0,0.43754 -16940,5217:457,-177,-25,0,0,0.438653 -16941,5217:456,-176,-25,0,0,0.435014 -16942,5217:455,-175,-25,0,0,0.435897 -16943,5217:354,-174,-25,0,0,0.433903 -16944,5217:353,-173,-25,0,0,0.433676 -16945,5217:352,-172,-25,0,0,0.434281 -16946,5217:351,-171,-25,0,0,0.431557 -16947,5217:350,-170,-25,0,0,0.429895 -16948,5216:459,-169,-25,0,0,0.425444 -16949,5216:458,-168,-25,0,0,0.423435 -16950,5216:457,-167,-25,0,0,0.422433 -16951,5216:456,-166,-25,0,0,0.421831 -16952,5216:455,-165,-25,0,0,0.417677 -16953,5216:354,-164,-25,0,0,0.416128 -16954,5216:353,-163,-25,0,0,0.420379 -16955,5216:352,-162,-25,0,0,0.42138 -16956,5216:351,-161,-25,0,0,0.419327 -16957,5216:350,-160,-25,0,0,0.42123 -16958,5215:459,-159,-25,0,0,0.423812 -16959,5215:458,-158,-25,0,0,0.42103 -16960,5215:457,-157,-25,0,0,0.418327 -16961,5215:456,-156,-25,0,0,0.420078 -16962,5215:455,-155,-25,0,0,0.423787 -16963,5215:354,-154,-25,0,0,0.429064 -16964,5215:353,-153,-25,0,0,0.434231 -16965,5215:352,-152,-25,0,0,0.432742 -16966,5215:351,-151,-25,0,0,0.440146 -16967,5215:350,-150,-25,0,0,0.437389 -16968,5214:459,-149,-25,0,0,0.434408 -16969,5214:458,-148,-25,0,0,0.434281 -16970,5214:457,-147,-25,0,0,0.425167 -16971,5214:456,-146,-25,0,0,0.431255 -16972,5214:455,-145,-25,0,0,0.429391 -16973,5214:354,-144,-25,0,0,0.432641 -16974,5214:353,-143,-25,0,0,0.425845 -16975,5214:352,-142,-25,0,0,0.422232 -16976,5214:351,-141,-25,0,0,0.421881 -16977,5214:350,-140,-25,0,0,0.417902 -16978,5213:459,-139,-25,0,0,0.420379 -16979,5213:458,-138,-25,0,0,0.425192 -16980,5213:457,-137,-25,0,0,0.430953 -16981,5213:456,-136,-25,0,0,0.426097 -16982,5213:455,-135,-25,0,0,0.427303 -16983,5213:354,-134,-25,0,0,0.425468 -16984,5213:353,-133,-25,0,0,0.427629 -16985,5213:352,-132,-25,0,0,0.427932 -16986,5213:351,-131,-25,0,0,0.422934 -16987,5213:350,-130,-25,0,0,0.416553 -16988,5212:459,-129,-25,0,0,0.419903 -16989,5212:458,-128,-25,0,0,0.419828 -16990,5212:457,-127,-25,0,0,0.416778 -16991,5212:456,-126,-25,0,0,0.417802 -16992,5212:455,-125,-25,0,0,0.417902 -16993,5212:354,-124,-25,0,0,0.418226 -16994,5212:353,-123,-25,0,0,0.416103 -16995,5212:352,-122,-25,0,0,0.410722 -16996,5212:351,-121,-25,0,0,0.406055 -16997,5212:350,-120,-25,0,0,0.405659 -16998,5211:459,-119,-25,0,0,0.410448 -16999,5211:458,-118,-25,0,0,0.407543 -17000,5211:457,-117,-25,0,0,0.418127 -17001,5211:456,-116,-25,0,0,0.417877 -17002,5211:455,-115,-25,0,0,0.414357 -17003,5211:354,-114,-25,0,0,0.411021 -17004,5211:353,-113,-25,0,0,0.405238 -17005,5211:352,-112,-25,0,0,0.413884 -17006,5211:351,-111,-25,0,0,0.415704 -17007,5211:350,-110,-25,0,0,0.40722 -17008,5210:459,-109,-25,0,0,0.407171 -17009,5210:458,-108,-25,0,0,0.409802 -17010,5210:457,-107,-25,0,0,0.420954 -17011,5210:456,-106,-25,0,0,0.425142 -17012,5210:455,-105,-25,0,0,0.420879 -17013,5210:354,-104,-25,0,0,0.419503 -17014,5210:353,-103,-25,0,0,0.423736 -17015,5210:352,-102,-25,0,0,0.42113 -17016,5210:351,-101,-25,0,0,0.414706 -17017,5210:350,-100,-25,0,0,0.406898 -17018,5209:459,-99,-25,0,0,0.400886 -17019,5209:458,-98,-25,0,0,0.401331 -17020,5209:457,-97,-25,0,0,0.400418 -17021,5209:456,-96,-25,0,0,0.396969 -17022,5209:455,-95,-25,0,0,0.397265 -17023,5209:354,-94,-25,0,0,0.398348 -17024,5209:353,-93,-25,0,0,0.399235 -17025,5209:352,-92,-25,0,0,0.401578 -17026,5209:351,-91,-25,0,0,0.401751 -17027,5209:350,-90,-25,0,0,0.399974 -17028,5208:459,-89,-25,0,0,0.393409 -17029,5208:458,-88,-25,0,0,0.390373 -17030,5208:457,-87,-25,0,0,0.387589 -17031,5208:456,-86,-25,0,0,0.386127 -17032,5208:455,-85,-25,0,0,0.385907 -17033,5208:354,-84,-25,0,0,0.382674 -17034,5208:353,-83,-25,0,0,0.378219 -17035,5208:352,-82,-25,0,0,0.378508 -17036,5208:351,-81,-25,0,0,0.378242 -17037,5208:350,-80,-25,0,0,0.381825 -17038,5207:459,-79,-25,0,0,0.38042 -17039,5207:458,-78,-25,0,0,0.379282 -17040,5207:457,-77,-25,0,0,0.376601 -17041,5207:456,-76,-25,0,0,0.367241 -17042,5207:455,-75,-25,0,0,0.361838 -17043,5207:354,-74,-25,0,0,0.350951 -17044,5207:353,-73,-25,0,0,0.351372 -17045,5207:352,-72,-25,0,0,0.344798 -17046,5205:352,-52,-25,0,0,0.480298 -17047,5205:351,-51,-25,0,0,0.496136 -17048,5205:350,-50,-25,0,0,0.561274 -17049,5204:459,-49,-25,0,0,0.513445 -17050,5204:458,-48,-25,0,0,0.509722 -17051,5204:457,-47,-25,0,0,0.50546 -17052,5204:456,-46,-25,0,0,0.473147 -17053,5204:455,-45,-25,0,0,0.456893 -17054,5204:354,-44,-25,0,0,0.447349 -17055,5204:353,-43,-25,0,0,0.444683 -17056,5204:352,-42,-25,0,0,0.439969 -17057,5204:351,-41,-25,0,0,0.43249 -17058,5204:350,-40,-25,0,0,0.438704 -17059,5203:459,-39,-25,0,0,0.432767 -17060,5203:458,-38,-25,0,0,0.417253 -17061,5203:457,-37,-25,0,0,0.425218 -17062,5203:456,-36,-25,0,0,0.422107 -17063,5203:455,-35,-25,0,0,0.426197 -17064,5203:354,-34,-25,0,0,0.414931 -17065,5203:353,-33,-25,0,0,0.416378 -17066,5203:352,-32,-25,0,0,0.402739 -17067,5203:351,-31,-25,0,0,0.41092 -17068,5203:350,-30,-25,0,0,0.417527 -17069,5202:459,-29,-25,0,0,0.415954 -17070,5202:458,-28,-25,0,0,0.404173 -17071,5202:457,-27,-25,0,0,0.41092 -17072,5202:456,-26,-25,0,0,0.417602 -17073,5202:455,-25,-25,0,0,0.411244 -17074,5202:354,-24,-25,0,0,0.403753 -17075,5202:353,-23,-25,0,0,0.415305 -17076,5202:352,-22,-25,0,0,0.404767 -17077,5202:351,-21,-25,0,0,0.397536 -17078,5202:350,-20,-25,0,0,0.405659 -17079,5201:459,-19,-25,0,0,0.407939 -17080,5201:458,-18,-25,0,0,0.401924 -17081,5201:457,-17,-25,0,0,0.403209 -17082,5201:456,-16,-25,0,0,0.403926 -17083,5201:455,-15,-25,0,0,0.400467 -17084,5201:354,-14,-25,0,0,0.401899 -17085,5201:353,-13,-25,0,0,0.403653 -17086,5201:352,-12,-25,0,0,0.390055 -17087,5201:351,-11,-25,0,0,0.400368 -17088,5201:350,-10,-25,0,0,0.405733 -17089,5200:459,-9,-25,0,0,0.401652 -17090,5200:458,-8,-25,0,0,0.400961 -17091,5200:457,-7,-25,0,0,0.408361 -17092,5200:456,-6,-25,0,0,0.404223 -17093,5200:455,-5,-25,0,0,0.403728 -17094,5200:354,-4,-25,0,0,0.406055 -17095,5200:353,-3,-25,0,0,0.404297 -17096,5200:352,-2,-25,0,0,0.400788 -17097,5200:351,-1,-25,0,0,0.399185 -17098,3200:351,0,-25,0,0,0.395912 -17099,3200:351,1,-25,0,0,0.393703 -17100,3200:352,2,-25,0,0,0.393728 -17101,3200:353,3,-25,0,0,0.393115 -17102,3200:354,4,-25,0,0,0.394316 -17103,3200:455,5,-25,0,0,0.392085 -17104,3200:456,6,-25,0,0,0.394856 -17105,3200:457,7,-25,0,0,0.397634 -17106,3200:458,8,-25,0,0,0.396798 -17107,3200:459,9,-25,0,0,0.400443 -17108,3201:350,10,-25,0,0,0.406824 -17109,3201:351,11,-25,0,0,0.408833 -17110,3201:352,12,-25,0,0,0.40933 -17111,3201:353,13,-25,0,0,0.412688 -17112,3201:354,14,-25,0,0,0.415679 -17113,3201:455,15,-25,0,0,0.418102 -17114,3201:456,16,-25,0,0,0.426197 -17115,3201:457,17,-25,0,0,0.419652 -17116,3202:458,28,-25,0,0,0.496778 -17117,3202:459,29,-25,0,0,0.53885 -17118,3203:350,30,-25,0,0,0.523397 -17119,3203:351,31,-25,0,0,0.518781 -17120,3203:352,32,-25,0,0,0.486584 -17121,3203:353,33,-25,0,0,0.455669 -17122,3203:354,34,-25,0,0,0.454217 -17123,3203:455,35,-25,0,0,0.445267 -17124,3203:456,36,-25,0,0,0.441235 -17125,3203:457,37,-25,0,0,0.448975 -17126,3203:458,38,-25,0,0,0.461817 -17127,3203:459,39,-25,0,0,0.476093 -17128,3204:350,40,-25,0,0,0.4774 -17129,3204:351,41,-25,0,0,0.453351 -17130,3204:352,42,-25,0,0,0.440729 -17131,3204:353,43,-25,0,0,0.430499 -17132,3204:354,44,-25,0,0,0.431936 -17133,3204:455,45,-25,0,0,0.43471 -17134,3204:456,46,-25,0,0,0.427705 -17136,3204:458,48,-25,0,0,0.421956 -17137,3204:459,49,-25,0,0,0.427227 -17138,3205:350,50,-25,0,0,0.413111 -17139,3205:351,51,-25,0,0,0.415454 -17140,3205:352,52,-25,0,0,0.412986 -17141,3205:353,53,-25,0,0,0.419677 -17142,3205:354,54,-25,0,0,0.425343 -17143,3205:455,55,-25,0,0,0.416128 -17144,3205:456,56,-25,0,0,0.410324 -17145,3205:457,57,-25,0,0,0.4101 -17146,3205:458,58,-25,0,0,0.410423 -17147,3205:459,59,-25,0,0,0.41331 -17148,3206:350,60,-25,0,0,0.416852 -17149,3206:351,61,-25,0,0,0.421405 -17150,3206:352,62,-25,0,0,0.422759 -17151,3206:353,63,-25,0,0,0.423736 -17152,3206:354,64,-25,0,0,0.419503 -17153,3206:455,65,-25,0,0,0.414557 -17154,3206:456,66,-25,0,0,0.419152 -17155,3206:457,67,-25,0,0,0.413983 -17156,3206:458,68,-25,0,0,0.410523 -17157,3206:459,69,-25,0,0,0.408958 -17158,3207:350,70,-25,0,0,0.413859 -17159,3207:351,71,-25,0,0,0.431986 -17160,3207:352,72,-25,0,0,0.428032 -17161,3207:354,74,-25,0,0,0.430071 -17162,3207:455,75,-25,0,0,0.436075 -17163,3207:456,76,-25,0,0,0.443871 -17164,3207:457,77,-25,0,0,0.429467 -17165,3207:458,78,-25,0,0,0.427202 -17166,3207:459,79,-25,0,0,0.425519 -17167,3208:350,80,-25,0,0,0.426926 -17168,3208:351,81,-25,0,0,0.426499 -17169,3208:352,82,-25,0,0,0.424213 -17170,3208:353,83,-25,0,0,0.422658 -17171,3208:354,84,-25,0,0,0.418226 -17172,3208:455,85,-25,0,0,0.411443 -17173,3208:456,86,-25,0,0,0.410473 -17174,3208:457,87,-25,0,0,0.414881 -17175,3208:458,88,-25,0,0,0.411319 -17176,3208:459,89,-25,0,0,0.407418 -17177,3209:350,90,-25,0,0,0.401627 -17178,3209:351,91,-25,0,0,0.39633 -17179,3209:352,92,-25,0,0,0.399407 -17180,3209:353,93,-25,0,0,0.394145 -17181,3209:354,94,-25,0,0,0.394414 -17182,3209:455,95,-25,0,0,0.397265 -17183,3209:456,96,-25,0,0,0.396822 -17184,3209:457,97,-25,0,0,0.3835 -17185,3209:458,98,-25,0,0,0.380105 -17186,3209:459,99,-25,0,0,0.382334 -17187,3210:350,100,-25,0,0,0.375299 -17188,3210:351,101,-25,0,0,0.378533 -17189,3210:352,102,-25,0,0,0.386395 -17190,3210:353,103,-25,0,0,0.375443 -17191,3210:354,104,-25,0,0,0.379234 -17192,3210:455,105,-25,0,0,0.379694 -17193,3210:456,106,-25,0,0,0.390691 -17194,3210:457,107,-25,0,0,0.389664 -17195,3210:458,108,-25,0,0,0.398274 -17196,3210:459,109,-25,0,0,0.393507 -17197,3211:350,110,-25,0,0,0.393924 -17198,3211:351,111,-25,0,0,0.421054 -17199,3211:352,112,-25,0,0,0.42123 -17200,3211:353,113,-25,0,0,0.43466 -17201,3211:354,114,-25,0,0,0.4598 -17202,3211:455,115,-25,0,0,0.469281 -17203,3212:456,126,-25,0,0,0.39466 -17204,3212:457,127,-25,0,0,0.391523 -17205,3212:458,128,-25,0,0,0.393213 -17206,3212:459,129,-25,0,0,0.40027 -17207,3213:350,130,-25,0,0,0.408958 -17208,3213:351,131,-25,0,0,0.411393 -17209,3213:352,132,-25,0,0,0.418402 -17210,3213:353,133,-25,0,0,0.442274 -17211,3213:354,134,-25,0,0,0.465061 -17212,3215:353,153,-25,0,0,0.546321 -17213,3215:354,154,-25,0,0,0.550469 -17214,3215:455,155,-25,0,0,0.535095 -17215,3215:456,156,-25,0,0,0.559198 -17216,3215:457,157,-25,0,0,0.530414 -17217,3215:458,158,-25,0,0,0.546754 -17218,3215:459,159,-25,0,0,0.527009 -17219,3216:350,160,-25,0,0,0.524576 -17220,3216:351,161,-25,0,0,0.515831 -17221,3216:352,162,-25,0,0,0.498602 -17222,3216:353,163,-25,0,0,0.496033 -17223,3216:354,164,-25,0,0,0.491128 -17224,3216:455,165,-25,0,0,0.492515 -17225,3216:456,166,-25,0,0,0.466545 -17226,3216:457,167,-25,0,0,0.455465 -17227,3216:458,168,-25,0,0,0.449407 -17228,3216:459,169,-25,0,0,0.43509 -17229,3217:350,170,-25,0,0,0.442451 -17230,3217:351,171,-25,0,0,0.441413 -17231,3217:352,172,-25,0,0,0.433852 -17232,3217:353,173,-25,0,0,0.433701 -17233,3217:354,174,-25,0,0,0.435544 -17234,3217:455,175,-25,0,0,0.425468 -17235,3217:456,176,-25,0,0,0.420954 -17236,3217:457,177,-25,0,0,0.426423 -17237,3217:458,178,-25,0,0,0.437667 -17238,3217:459,179,-25,0,0,0.430877 -17239,3218:350,180,-25,0,0,0.427529 -17240,5218:140,-180,-24,0,0,0.450069 -17241,5217:249,-179,-24,0,0,0.450551 -17242,5217:248,-178,-24,0,0,0.452816 -17243,5217:247,-177,-24,0,0,0.458703 -17244,5217:246,-176,-24,0,0,0.452205 -17245,5217:245,-175,-24,0,0,0.453453 -17246,5217:144,-174,-24,0,0,0.451085 -17247,5217:143,-173,-24,0,0,0.451314 -17248,5217:142,-172,-24,0,0,0.44806 -17249,5217:141,-171,-24,0,0,0.448035 -17250,5217:140,-170,-24,0,0,0.447349 -17251,5216:249,-169,-24,0,0,0.444683 -17252,5216:248,-168,-24,0,0,0.448111 -17253,5216:247,-167,-24,0,0,0.445648 -17254,5216:246,-166,-24,0,0,0.443821 -17255,5216:245,-165,-24,0,0,0.4458 -17256,5216:144,-164,-24,0,0,0.442756 -17257,5216:143,-163,-24,0,0,0.439817 -17258,5216:142,-162,-24,0,0,0.441008 -17259,5216:141,-161,-24,0,0,0.441616 -17260,5216:140,-160,-24,0,0,0.444658 -17261,5215:249,-159,-24,0,0,0.442654 -17262,5215:248,-158,-24,0,0,0.446562 -17263,5215:247,-157,-24,0,0,0.450119 -17264,5215:246,-156,-24,0,0,0.446155 -17265,5215:245,-155,-24,0,0,0.450196 -17266,5215:144,-154,-24,0,0,0.453478 -17267,5215:143,-153,-24,0,0,0.45855 -17268,5215:142,-152,-24,0,0,0.464755 -17269,5215:141,-151,-24,0,0,0.46726 -17270,5215:140,-150,-24,0,0,0.456127 -17271,5214:249,-149,-24,0,0,0.454497 -17272,5214:248,-148,-24,0,0,0.455949 -17273,5214:247,-147,-24,0,0,0.44372 -17274,5214:246,-146,-24,0,0,0.451085 -17275,5214:245,-145,-24,0,0,0.448035 -17276,5214:144,-144,-24,0,0,0.4441 -17277,5214:143,-143,-24,0,0,0.440273 -17278,5214:142,-142,-24,0,0,0.4423 -17279,5214:141,-141,-24,0,0,0.443212 -17280,5214:140,-140,-24,0,0,0.441793 -17281,5213:249,-139,-24,0,0,0.444988 -17282,5213:248,-138,-24,0,0,0.445927 -17283,5213:247,-137,-24,0,0,0.439185 -17284,5213:246,-136,-24,0,0,0.448975 -17285,5213:245,-135,-24,0,0,0.443289 -17286,5213:144,-134,-24,0,0,0.440628 -17287,5213:143,-133,-24,0,0,0.439261 -17288,5213:142,-132,-24,0,0,0.441008 -17289,5213:141,-131,-24,0,0,0.444937 -17290,5213:140,-130,-24,0,0,0.440045 -17291,5212:249,-129,-24,0,0,0.440096 -17292,5212:248,-128,-24,0,0,0.441286 -17293,5212:247,-127,-24,0,0,0.441742 -17294,5212:246,-126,-24,0,0,0.434686 -17295,5212:245,-125,-24,0,0,0.44268 -17296,5212:144,-124,-24,0,0,0.438502 -17297,5212:143,-123,-24,0,0,0.430801 -17298,5212:142,-122,-24,0,0,0.429542 -17299,5212:141,-121,-24,0,0,0.425996 -17300,5212:140,-120,-24,0,0,0.426222 -17301,5211:249,-119,-24,0,0,0.438324 -17302,5211:248,-118,-24,0,0,0.43567 -17303,5211:247,-117,-24,0,0,0.4306 -17304,5211:246,-116,-24,0,0,0.428813 -17305,5211:245,-115,-24,0,0,0.437819 -17306,5211:144,-114,-24,0,0,0.440881 -17307,5211:143,-113,-24,0,0,0.431406 -17308,5211:142,-112,-24,0,0,0.435392 -17309,5211:141,-111,-24,0,0,0.425243 -17310,5211:140,-110,-24,0,0,0.432692 -17311,5210:249,-109,-24,0,0,0.428082 -17312,5210:248,-108,-24,0,0,0.437313 -17313,5210:247,-107,-24,0,0,0.439185 -17314,5210:246,-106,-24,0,0,0.442427 -17315,5210:245,-105,-24,0,0,0.438021 -17316,5210:144,-104,-24,0,0,0.437742 -17317,5210:143,-103,-24,0,0,0.431431 -17318,5210:142,-102,-24,0,0,0.431356 -17319,5210:141,-101,-24,0,0,0.431557 -17320,5210:140,-100,-24,0,0,0.427202 -17321,5209:249,-99,-24,0,0,0.420278 -17322,5209:248,-98,-24,0,0,0.415654 -17323,5209:247,-97,-24,0,0,0.414706 -17324,5209:246,-96,-24,0,0,0.415679 -17325,5209:245,-95,-24,0,0,0.414731 -17326,5209:144,-94,-24,0,0,0.415879 -17327,5209:143,-93,-24,0,0,0.417577 -17328,5209:142,-92,-24,0,0,0.417377 -17329,5209:141,-91,-24,0,0,0.414108 -17330,5209:140,-90,-24,0,0,0.408833 -17331,5208:249,-89,-24,0,0,0.408064 -17332,5208:248,-88,-24,0,0,0.406204 -17333,5208:247,-87,-24,0,0,0.403283 -17334,5208:246,-86,-24,0,0,0.401504 -17335,5208:245,-85,-24,0,0,0.397609 -17336,5208:144,-84,-24,0,0,0.3952 -17337,5208:143,-83,-24,0,0,0.394366 -17338,5208:142,-82,-24,0,0,0.395053 -17339,5208:141,-81,-24,0,0,0.39118 -17340,5208:140,-80,-24,0,0,0.391009 -17341,5207:249,-79,-24,0,0,0.393507 -17342,5207:248,-78,-24,0,0,0.389298 -17343,5207:247,-77,-24,0,0,0.384204 -17344,5207:246,-76,-24,0,0,0.380202 -17345,5207:245,-75,-24,0,0,0.370926 -17346,5207:144,-74,-24,0,0,0.363715 -17347,5207:143,-73,-24,0,0,0.360061 -17348,5207:142,-72,-24,0,0,0.345495 -17349,5205:141,-51,-24,0,0,0.519782 -17350,5205:140,-50,-24,0,0,0.551333 -17351,5204:249,-49,-24,0,0,0.570914 -17352,5204:248,-48,-24,0,0,0.538773 -17353,5204:247,-47,-24,0,0,0.513727 -17354,5204:246,-46,-24,0,0,0.48394 -17355,5204:245,-45,-24,0,0,0.474197 -17356,5204:144,-44,-24,0,0,0.465266 -17357,5204:143,-43,-24,0,0,0.461153 -17358,5204:142,-42,-24,0,0,0.463962 -17359,5204:141,-41,-24,0,0,0.465573 -17360,5204:140,-40,-24,0,0,0.465854 -17361,5203:249,-39,-24,0,0,0.464397 -17362,5203:248,-38,-24,0,0,0.451518 -17363,5203:247,-37,-24,0,0,0.452994 -17364,5203:246,-36,-24,0,0,0.450196 -17365,5203:245,-35,-24,0,0,0.455847 -17366,5203:144,-34,-24,0,0,0.454191 -17367,5203:143,-33,-24,0,0,0.443313 -17368,5203:142,-32,-24,0,0,0.43797 -17369,5203:141,-31,-24,0,0,0.442376 -17370,5203:140,-30,-24,0,0,0.451951 -17371,5202:249,-29,-24,0,0,0.445723 -17372,5202:248,-28,-24,0,0,0.441312 -17373,5202:247,-27,-24,0,0,0.439438 -17374,5202:246,-26,-24,0,0,0.43883 -17375,5202:245,-25,-24,0,0,0.443035 -17376,5202:144,-24,-24,0,0,0.443694 -17377,5202:143,-23,-24,0,0,0.441564 -17378,5202:142,-22,-24,0,0,0.448899 -17379,5202:141,-21,-24,0,0,0.443035 -17380,5202:140,-20,-24,0,0,0.427806 -17381,5201:249,-19,-24,0,0,0.428435 -17382,5201:248,-18,-24,0,0,0.422934 -17383,5201:247,-17,-24,0,0,0.42919 -17384,5201:246,-16,-24,0,0,0.42851 -17385,5201:245,-15,-24,0,0,0.428334 -17386,5201:144,-14,-24,0,0,0.420028 -17387,5201:143,-13,-24,0,0,0.41538 -17388,5201:142,-12,-24,0,0,0.412065 -17389,5201:141,-11,-24,0,0,0.43921 -17390,5201:140,-10,-24,0,0,0.439387 -17391,5200:249,-9,-24,0,0,0.433045 -17392,5200:248,-8,-24,0,0,0.438679 -17393,5200:247,-7,-24,0,0,0.431709 -17394,5200:246,-6,-24,0,0,0.43186 -17395,5200:245,-5,-24,0,0,0.429945 -17396,5200:144,-4,-24,0,0,0.426448 -17397,5200:143,-3,-24,0,0,0.431229 -17398,5200:142,-2,-24,0,0,0.43191 -17399,5200:141,-1,-24,0,0,0.430801 -17400,3200:141,0,-24,0,0,0.42316 -17401,3200:141,1,-24,0,0,0.415604 -17402,3200:142,2,-24,0,0,0.411617 -17403,3200:143,3,-24,0,0,0.405708 -17404,3200:144,4,-24,0,0,0.405312 -17405,3200:245,5,-24,0,0,0.404965 -17406,3200:246,6,-24,0,0,0.410622 -17407,3200:247,7,-24,0,0,0.411244 -17408,3200:248,8,-24,0,0,0.40789 -17409,3200:249,9,-24,0,0,0.410797 -17410,3201:140,10,-24,0,0,0.411368 -17411,3201:141,11,-24,0,0,0.411294 -17412,3201:142,12,-24,0,0,0.417202 -17413,3201:143,13,-24,0,0,0.417952 -17414,3201:144,14,-24,0,0,0.428963 -17415,3201:245,15,-24,0,0,0.437313 -17416,3201:246,16,-24,0,0,0.439969 -17417,3201:247,17,-24,0,0,0.430877 -17418,3203:140,30,-24,0,0,0.549426 -17419,3203:141,31,-24,0,0,0.558894 -17420,3203:142,32,-24,0,0,0.536194 -17421,3203:143,33,-24,0,0,0.516217 -17422,3203:144,34,-24,0,0,0.485326 -17423,3203:245,35,-24,0,0,0.499809 -17424,3203:246,36,-24,0,0,0.512752 -17425,3203:247,37,-24,0,0,0.510133 -17426,3203:248,38,-24,0,0,0.480426 -17427,3203:249,39,-24,0,0,0.492694 -17428,3204:140,40,-24,0,0,0.495031 -17429,3204:141,41,-24,0,0,0.490794 -17430,3204:142,42,-24,0,0,0.488304 -17431,3204:143,43,-24,0,0,0.484326 -17432,3204:144,44,-24,0,0,0.480862 -17433,3204:245,45,-24,0,0,0.473583 -17434,3204:246,46,-24,0,0,0.466442 -17435,3204:247,47,-24,0,0,0.447527 -17436,3204:248,48,-24,0,0,0.453886 -17437,3204:249,49,-24,0,0,0.453987 -17438,3205:140,50,-24,0,0,0.454522 -17439,3205:141,51,-24,0,0,0.448518 -17440,3205:142,52,-24,0,0,0.449865 -17441,3205:143,53,-24,0,0,0.452562 -17442,3205:144,54,-24,0,0,0.444607 -17443,3205:245,55,-24,0,0,0.446993 -17444,3205:246,56,-24,0,0,0.437136 -17445,3205:247,57,-24,0,0,0.436554 -17446,3205:248,58,-24,0,0,0.43835 -17447,3205:249,59,-24,0,0,0.440653 -17448,3206:140,60,-24,0,0,0.446435 -17449,3206:141,61,-24,0,0,0.449204 -17450,3206:142,62,-24,0,0,0.449382 -17451,3206:143,63,-24,0,0,0.446587 -17452,3206:144,64,-24,0,0,0.446866 -17453,3206:245,65,-24,0,0,0.441033 -17454,3206:246,66,-24,0,0,0.44235 -17455,3206:247,67,-24,0,0,0.441159 -17456,3206:248,68,-24,0,0,0.439058 -17457,3206:249,69,-24,0,0,0.447171 -17458,3207:140,70,-24,0,0,0.457708 -17459,3207:141,71,-24,0,0,0.454548 -17460,3207:142,72,-24,0,0,0.465956 -17461,3207:144,74,-24,0,0,0.468003 -17462,3207:245,75,-24,0,0,0.467362 -17463,3207:246,76,-24,0,0,0.466621 -17464,3207:247,77,-24,0,0,0.457249 -17465,3207:248,78,-24,0,0,0.452867 -17466,3207:249,79,-24,0,0,0.460668 -17467,3208:140,80,-24,0,0,0.462455 -17468,3208:141,81,-24,0,0,0.461817 -17469,3208:142,82,-24,0,0,0.449127 -17470,3208:143,83,-24,0,0,0.45302 -17471,3208:144,84,-24,0,0,0.447171 -17472,3208:245,85,-24,0,0,0.43959 -17473,3208:246,86,-24,0,0,0.441844 -17474,3208:247,87,-24,0,0,0.436201 -17475,3208:248,88,-24,0,0,0.438653 -17476,3208:249,89,-24,0,0,0.429265 -17477,3209:140,90,-24,0,0,0.427001 -17478,3209:141,91,-24,0,0,0.423034 -17479,3209:142,92,-24,0,0,0.423335 -17480,3209:143,93,-24,0,0,0.419603 -17481,3209:144,94,-24,0,0,0.412713 -17482,3209:245,95,-24,0,0,0.405683 -17483,3209:246,96,-24,0,0,0.410423 -17484,3209:247,97,-24,0,0,0.400073 -17485,3209:248,98,-24,0,0,0.391718 -17486,3209:249,99,-24,0,0,0.39118 -17487,3210:140,100,-24,0,0,0.390446 -17488,3210:141,101,-24,0,0,0.390471 -17489,3210:142,102,-24,0,0,0.386833 -17490,3210:143,103,-24,0,0,0.396626 -17491,3210:144,104,-24,0,0,0.398865 -17492,3210:245,105,-24,0,0,0.388516 -17493,3210:246,106,-24,0,0,0.404965 -17494,3210:247,107,-24,0,0,0.401849 -17495,3210:248,108,-24,0,0,0.406228 -17496,3210:249,109,-24,0,0,0.411493 -17497,3211:140,110,-24,0,0,0.413833 -17498,3211:141,111,-24,0,0,0.443313 -17499,3211:142,112,-24,0,0,0.446308 -17500,3211:143,113,-24,0,0,0.454624 -17501,3211:144,114,-24,0,0,0.473019 -17502,3211:245,115,-24,0,0,0.487944 -17503,3215:144,154,-24,0,0,0.565772 -17504,3215:245,155,-24,0,0,0.545175 -17505,3215:246,156,-24,0,0,0.55273 -17506,3215:247,157,-24,0,0,0.552959 -17507,3215:248,158,-24,0,0,0.535069 -17508,3215:249,159,-24,0,0,0.529237 -17509,3216:140,160,-24,0,0,0.53131 -17510,3216:141,161,-24,0,0,0.518115 -17511,3216:142,162,-24,0,0,0.511905 -17512,3216:143,163,-24,0,0,0.50849 -17513,3216:144,164,-24,0,0,0.502814 -17514,3216:245,165,-24,0,0,0.499963 -17515,3216:246,166,-24,0,0,0.473839 -17516,3216:247,167,-24,0,0,0.466417 -17517,3216:248,168,-24,0,0,0.46312 -17518,3216:249,169,-24,0,0,0.45781 -17519,3217:140,170,-24,0,0,0.450374 -17520,3217:141,171,-24,0,0,0.447755 -17521,3217:142,172,-24,0,0,0.447628 -17522,3217:143,173,-24,0,0,0.448136 -17523,3217:144,174,-24,0,0,0.450322 -17524,3217:245,175,-24,0,0,0.442223 -17525,3217:246,176,-24,0,0,0.446968 -17526,3217:247,177,-24,0,0,0.44984 -17527,3217:248,178,-24,0,0,0.452002 -17528,3217:249,179,-24,0,0,0.455873 -17529,3218:140,180,-24,0,0,0.450069 -17530,5218:130,-180,-23,0,0,0.465547 -17531,5217:239,-179,-23,0,0,0.464857 -17532,5217:238,-178,-23,0,0,0.467286 -17533,5217:237,-177,-23,0,0,0.473839 -17534,5217:236,-176,-23,0,0,0.465803 -17535,5217:235,-175,-23,0,0,0.461511 -17536,5217:134,-174,-23,0,0,0.461383 -17537,5217:133,-173,-23,0,0,0.457504 -17538,5217:132,-172,-23,0,0,0.461281 -17539,5217:131,-171,-23,0,0,0.47243 -17540,5217:130,-170,-23,0,0,0.460234 -17541,5216:239,-169,-23,0,0,0.465726 -17542,5216:238,-168,-23,0,0,0.465752 -17543,5216:237,-167,-23,0,0,0.461613 -17544,5216:236,-166,-23,0,0,0.457606 -17545,5216:235,-165,-23,0,0,0.457683 -17546,5216:134,-164,-23,0,0,0.460617 -17547,5216:133,-163,-23,0,0,0.453198 -17548,5216:132,-162,-23,0,0,0.458601 -17549,5216:131,-161,-23,0,0,0.461025 -17550,5216:130,-160,-23,0,0,0.460745 -17551,5215:239,-159,-23,0,0,0.4657 -17552,5215:238,-158,-23,0,0,0.460489 -17553,5215:237,-157,-23,0,0,0.457249 -17554,5215:236,-156,-23,0,0,0.46335 -17555,5215:235,-155,-23,0,0,0.466084 -17556,5215:134,-154,-23,0,0,0.470791 -17557,5215:133,-153,-23,0,0,0.472866 -17558,5215:132,-152,-23,0,0,0.47535 -17559,5215:131,-151,-23,0,0,0.479811 -17560,5215:130,-150,-23,0,0,0.478733 -17561,5214:239,-149,-23,0,0,0.473659 -17562,5214:238,-148,-23,0,0,0.465369 -17563,5214:237,-147,-23,0,0,0.468284 -17564,5214:236,-146,-23,0,0,0.466595 -17565,5214:235,-145,-23,0,0,0.465778 -17566,5214:134,-144,-23,0,0,0.469973 -17567,5214:133,-143,-23,0,0,0.464116 -17568,5214:132,-142,-23,0,0,0.467107 -17569,5214:131,-141,-23,0,0,0.461536 -17570,5214:130,-140,-23,0,0,0.463707 -17571,5213:239,-139,-23,0,0,0.46657 -17572,5213:238,-138,-23,0,0,0.465956 -17573,5213:237,-137,-23,0,0,0.457556 -17574,5213:236,-136,-23,0,0,0.466903 -17575,5213:235,-135,-23,0,0,0.456382 -17576,5213:134,-134,-23,0,0,0.458907 -17577,5213:133,-133,-23,0,0,0.460106 -17578,5213:132,-132,-23,0,0,0.465522 -17579,5213:131,-131,-23,0,0,0.459877 -17580,5213:130,-130,-23,0,0,0.458703 -17581,5212:239,-129,-23,0,0,0.473454 -17582,5212:238,-128,-23,0,0,0.466979 -17583,5212:237,-127,-23,0,0,0.45493 -17584,5212:236,-126,-23,0,0,0.458652 -17585,5212:235,-125,-23,0,0,0.456 -17586,5212:134,-124,-23,0,0,0.451188 -17587,5212:133,-123,-23,0,0,0.447654 -17588,5212:132,-122,-23,0,0,0.439817 -17589,5212:131,-121,-23,0,0,0.443111 -17590,5212:130,-120,-23,0,0,0.451238 -17591,5211:239,-119,-23,0,0,0.448645 -17592,5211:238,-118,-23,0,0,0.446638 -17593,5211:237,-117,-23,0,0,0.451238 -17594,5211:236,-116,-23,0,0,0.450348 -17595,5211:235,-115,-23,0,0,0.456841 -17596,5211:134,-114,-23,0,0,0.454853 -17597,5211:133,-113,-23,0,0,0.454217 -17598,5211:132,-112,-23,0,0,0.444074 -17599,5211:131,-111,-23,0,0,0.445292 -17600,5211:130,-110,-23,0,0,0.446562 -17601,5210:239,-109,-23,0,0,0.450628 -17602,5210:238,-108,-23,0,0,0.454217 -17603,5210:237,-107,-23,0,0,0.453172 -17604,5210:236,-106,-23,0,0,0.452231 -17605,5210:235,-105,-23,0,0,0.453733 -17606,5210:134,-104,-23,0,0,0.4519 -17607,5210:133,-103,-23,0,0,0.451951 -17608,5210:132,-102,-23,0,0,0.450297 -17609,5210:131,-101,-23,0,0,0.447527 -17610,5210:130,-100,-23,0,0,0.44339 -17611,5209:239,-99,-23,0,0,0.437667 -17612,5209:238,-98,-23,0,0,0.437465 -17613,5209:237,-97,-23,0,0,0.43792 -17614,5209:236,-96,-23,0,0,0.438249 -17615,5209:235,-95,-23,0,0,0.436605 -17616,5209:134,-94,-23,0,0,0.436378 -17617,5209:133,-93,-23,0,0,0.433676 -17618,5209:132,-92,-23,0,0,0.429668 -17619,5209:131,-91,-23,0,0,0.425218 -17620,5209:130,-90,-23,0,0,0.419303 -17621,5208:239,-89,-23,0,0,0.415879 -17622,5208:238,-88,-23,0,0,0.414208 -17623,5208:237,-87,-23,0,0,0.411543 -17624,5208:236,-86,-23,0,0,0.409528 -17625,5208:235,-85,-23,0,0,0.408262 -17626,5208:134,-84,-23,0,0,0.40933 -17627,5208:133,-83,-23,0,0,0.408908 -17628,5208:132,-82,-23,0,0,0.404767 -17629,5208:131,-81,-23,0,0,0.400911 -17630,5208:130,-80,-23,0,0,0.398644 -17631,5207:239,-79,-23,0,0,0.399727 -17632,5207:238,-78,-23,0,0,0.39638 -17633,5207:237,-77,-23,0,0,0.386663 -17634,5207:236,-76,-23,0,0,0.385591 -17635,5207:235,-75,-23,0,0,0.374986 -17636,5207:134,-74,-23,0,0,0.367575 -17637,5207:133,-73,-23,0,0,0.360297 -17638,5207:132,-72,-23,0,0,0.35238 -17639,5205:130,-50,-23,0,0,0.529826 -17640,5204:239,-49,-23,0,0,0.564105 -17641,5204:238,-48,-23,0,0,0.582876 -17642,5204:237,-47,-23,0,0,0.530261 -17643,5204:236,-46,-23,0,0,0.535836 -17644,5204:235,-45,-23,0,0,0.509183 -17645,5204:134,-44,-23,0,0,0.504201 -17646,5204:133,-43,-23,0,0,0.494595 -17647,5204:132,-42,-23,0,0,0.493259 -17648,5204:131,-41,-23,0,0,0.50492 -17649,5204:130,-40,-23,0,0,0.50379 -17650,5203:239,-39,-23,0,0,0.492746 -17651,5203:238,-38,-23,0,0,0.496187 -17652,5203:237,-37,-23,0,0,0.484762 -17653,5203:236,-36,-23,0,0,0.476401 -17654,5203:235,-35,-23,0,0,0.472891 -17655,5203:134,-34,-23,0,0,0.472866 -17656,5203:133,-33,-23,0,0,0.467312 -17657,5203:132,-32,-23,0,0,0.470305 -17658,5203:131,-31,-23,0,0,0.474146 -17659,5203:130,-30,-23,0,0,0.469895 -17660,5202:239,-29,-23,0,0,0.471022 -17661,5202:238,-28,-23,0,0,0.481119 -17662,5202:237,-27,-23,0,0,0.46964 -17663,5202:236,-26,-23,0,0,0.466161 -17664,5202:235,-25,-23,0,0,0.463196 -17665,5202:134,-24,-23,0,0,0.469307 -17666,5202:133,-23,-23,0,0,0.468514 -17667,5202:132,-22,-23,0,0,0.46611 -17668,5202:131,-21,-23,0,0,0.460081 -17669,5202:130,-20,-23,0,0,0.458066 -17670,5201:239,-19,-23,0,0,0.450984 -17671,5201:238,-18,-23,0,0,0.450526 -17672,5201:237,-17,-23,0,0,0.452155 -17673,5201:236,-16,-23,0,0,0.449204 -17674,5201:235,-15,-23,0,0,0.450145 -17675,5201:134,-14,-23,0,0,0.441667 -17676,5201:133,-13,-23,0,0,0.441919 -17677,5201:132,-12,-23,0,0,0.456765 -17678,5201:131,-11,-23,0,0,0.465394 -17679,5201:130,-10,-23,0,0,0.459162 -17680,5200:239,-9,-23,0,0,0.456153 -17681,5200:238,-8,-23,0,0,0.454879 -17682,5200:237,-7,-23,0,0,0.451926 -17683,5200:236,-6,-23,0,0,0.449788 -17684,5200:235,-5,-23,0,0,0.448086 -17685,5200:134,-4,-23,0,0,0.447527 -17686,5200:133,-3,-23,0,0,0.449661 -17687,5200:132,-2,-23,0,0,0.446003 -17688,5200:131,-1,-23,0,0,0.437869 -17689,3200:131,0,-23,0,0,0.433373 -17690,3200:131,1,-23,0,0,0.429442 -17691,3200:132,2,-23,0,0,0.422232 -17692,3200:133,3,-23,0,0,0.424013 -17693,3200:134,4,-23,0,0,0.425167 -17694,3200:235,5,-23,0,0,0.419477 -17695,3200:236,6,-23,0,0,0.423837 -17696,3200:237,7,-23,0,0,0.423461 -17697,3200:238,8,-23,0,0,0.423461 -17698,3200:239,9,-23,0,0,0.426046 -17699,3201:130,10,-23,0,0,0.423109 -17700,3201:131,11,-23,0,0,0.427278 -17701,3201:132,12,-23,0,0,0.431129 -17702,3201:133,13,-23,0,0,0.427303 -17703,3201:134,14,-23,0,0,0.437566 -17704,3201:235,15,-23,0,0,0.442046 -17705,3201:236,16,-23,0,0,0.442427 -17706,3203:131,31,-23,0,0,0.567538 -17707,3203:132,32,-23,0,0,0.575313 -17708,3203:133,33,-23,0,0,0.557855 -17709,3203:134,34,-23,0,0,0.531873 -17710,3203:235,35,-23,0,0,0.531873 -17711,3203:236,36,-23,0,0,0.542728 -17712,3203:237,37,-23,0,0,0.524832 -17713,3203:238,38,-23,0,0,0.513932 -17714,3203:239,39,-23,0,0,0.522653 -17715,3204:130,40,-23,0,0,0.526293 -17716,3204:131,41,-23,0,0,0.521808 -17717,3204:132,42,-23,0,0,0.521782 -17718,3204:133,43,-23,0,0,0.514702 -17719,3204:134,44,-23,0,0,0.484736 -17720,3204:235,45,-23,0,0,0.470663 -17721,3204:236,46,-23,0,0,0.474838 -17722,3204:237,47,-23,0,0,0.491154 -17723,3204:238,48,-23,0,0,0.489408 -17724,3204:239,49,-23,0,0,0.480759 -17725,3205:130,50,-23,0,0,0.491462 -17726,3205:131,51,-23,0,0,0.478426 -17727,3205:132,52,-23,0,0,0.472968 -17728,3205:133,53,-23,0,0,0.466468 -17729,3205:134,54,-23,0,0,0.465061 -17730,3205:235,55,-23,0,0,0.467644 -17731,3205:236,56,-23,0,0,0.474479 -17732,3205:237,57,-23,0,0,0.469666 -17733,3205:238,58,-23,0,0,0.468668 -17734,3205:239,59,-23,0,0,0.472353 -17735,3206:130,60,-23,0,0,0.473608 -17736,3206:131,61,-23,0,0,0.473506 -17737,3206:132,62,-23,0,0,0.47138 -17738,3206:133,63,-23,0,0,0.47266 -17739,3206:134,64,-23,0,0,0.473634 -17740,3206:235,65,-23,0,0,0.471304 -17741,3206:236,66,-23,0,0,0.469921 -17742,3206:237,67,-23,0,0,0.473941 -17743,3206:238,68,-23,0,0,0.483582 -17744,3206:239,69,-23,0,0,0.478554 -17745,3207:130,70,-23,0,0,0.482248 -17746,3207:131,71,-23,0,0,0.48294 -17747,3207:132,72,-23,0,0,0.485429 -17748,3207:134,74,-23,0,0,0.487379 -17749,3207:235,75,-23,0,0,0.483068 -17750,3207:236,76,-23,0,0,0.486481 -17751,3207:237,77,-23,0,0,0.483299 -17752,3207:238,78,-23,0,0,0.478118 -17753,3207:239,79,-23,0,0,0.488612 -17754,3208:130,80,-23,0,0,0.485326 -17755,3208:131,81,-23,0,0,0.480914 -17756,3208:132,82,-23,0,0,0.469742 -17757,3208:133,83,-23,0,0,0.467797 -17758,3208:134,84,-23,0,0,0.465828 -17759,3208:235,85,-23,0,0,0.469563 -17760,3208:236,86,-23,0,0,0.456765 -17761,3208:237,87,-23,0,0,0.449916 -17762,3208:238,88,-23,0,0,0.449967 -17763,3208:239,89,-23,0,0,0.440754 -17764,3209:130,90,-23,0,0,0.4336 -17765,3209:131,91,-23,0,0,0.435796 -17766,3209:132,92,-23,0,0,0.434155 -17767,3209:133,93,-23,0,0,0.431179 -17768,3209:134,94,-23,0,0,0.434079 -17769,3209:235,95,-23,0,0,0.425946 -17770,3209:236,96,-23,0,0,0.420228 -17771,3209:237,97,-23,0,0,0.412389 -17772,3209:238,98,-23,0,0,0.416503 -17773,3209:239,99,-23,0,0,0.408983 -17774,3210:130,100,-23,0,0,0.420904 -17775,3210:131,101,-23,0,0,0.40727 -17776,3210:132,102,-23,0,0,0.408238 -17777,3210:133,103,-23,0,0,0.41199 -17778,3210:134,104,-23,0,0,0.427177 -17779,3210:235,105,-23,0,0,0.408361 -17780,3210:236,106,-23,0,0,0.421731 -17781,3210:237,107,-23,0,0,0.415679 -17782,3210:238,108,-23,0,0,0.420078 -17783,3210:239,109,-23,0,0,0.429265 -17784,3211:130,110,-23,0,0,0.441717 -17785,3211:131,111,-23,0,0,0.457862 -17786,3211:132,112,-23,0,0,0.45251 -17787,3211:133,113,-23,0,0,0.467184 -17788,3211:134,114,-23,0,0,0.491308 -17789,3211:235,115,-23,0,0,0.490538 -17790,3215:134,154,-23,0,0,0.576066 -17791,3215:235,155,-23,0,0,0.568874 -17792,3215:236,156,-23,0,0,0.541249 -17793,3215:237,157,-23,0,0,0.539769 -17794,3215:238,158,-23,0,0,0.534763 -17795,3215:239,159,-23,0,0,0.520295 -17796,3216:130,160,-23,0,0,0.515318 -17797,3216:131,161,-23,0,0,0.511802 -17798,3216:132,162,-23,0,0,0.51021 -17799,3216:133,163,-23,0,0,0.511468 -17800,3216:134,164,-23,0,0,0.508798 -17801,3216:235,165,-23,0,0,0.506821 -17802,3216:236,166,-23,0,0,0.493798 -17803,3216:237,167,-23,0,0,0.470945 -17804,3216:238,168,-23,0,0,0.466468 -17805,3216:239,169,-23,0,0,0.464933 -17806,3217:130,170,-23,0,0,0.462864 -17807,3217:131,171,-23,0,0,0.462481 -17808,3217:132,172,-23,0,0,0.464065 -17809,3217:133,173,-23,0,0,0.46432 -17810,3217:134,174,-23,0,0,0.466877 -17811,3217:235,175,-23,0,0,0.462736 -17812,3217:236,176,-23,0,0,0.462558 -17813,3217:237,177,-23,0,0,0.471534 -17814,3217:238,178,-23,0,0,0.470177 -17815,3217:239,179,-23,0,0,0.469666 -17816,3218:130,180,-23,0,0,0.465547 -17817,5218:120,-180,-22,0,0,0.482812 -17818,5217:229,-179,-22,0,0,0.492746 -17819,5217:228,-178,-22,0,0,0.486969 -17820,5217:227,-177,-22,0,0,0.481683 -17821,5217:226,-176,-22,0,0,0.478426 -17822,5217:225,-175,-22,0,0,0.479502 -17823,5217:124,-174,-22,0,0,0.485532 -17824,5217:123,-173,-22,0,0,0.487072 -17825,5217:122,-172,-22,0,0,0.482427 -17826,5217:121,-171,-22,0,0,0.492746 -17827,5217:120,-170,-22,0,0,0.480169 -17828,5216:229,-169,-22,0,0,0.476247 -17829,5216:228,-168,-22,0,0,0.478682 -17830,5216:227,-167,-22,0,0,0.473557 -17831,5216:226,-166,-22,0,0,0.472584 -17832,5216:225,-165,-22,0,0,0.468488 -17833,5216:124,-164,-22,0,0,0.47512 -17834,5216:123,-163,-22,0,0,0.470356 -17835,5216:122,-162,-22,0,0,0.47028 -17836,5216:121,-161,-22,0,0,0.469205 -17837,5216:120,-160,-22,0,0,0.47412 -17838,5215:229,-159,-22,0,0,0.481195 -17839,5215:228,-158,-22,0,0,0.481811 -17840,5215:227,-157,-22,0,0,0.479939 -17841,5215:226,-156,-22,0,0,0.480605 -17842,5215:225,-155,-22,0,0,0.488381 -17843,5215:124,-154,-22,0,0,0.49159 -17844,5215:123,-153,-22,0,0,0.490794 -17845,5215:122,-152,-22,0,0,0.487893 -17846,5215:121,-151,-22,0,0,0.493002 -17847,5215:120,-150,-22,0,0,0.500913 -17848,5214:229,-149,-22,0,0,0.49367 -17849,5214:228,-148,-22,0,0,0.493748 -17850,5214:227,-147,-22,0,0,0.490024 -17851,5214:226,-146,-22,0,0,0.490512 -17852,5214:225,-145,-22,0,0,0.491873 -17853,5214:124,-144,-22,0,0,0.492181 -17854,5214:123,-143,-22,0,0,0.485172 -17855,5214:122,-142,-22,0,0,0.481631 -17856,5214:121,-141,-22,0,0,0.48987 -17857,5214:120,-140,-22,0,0,0.480349 -17858,5213:229,-139,-22,0,0,0.487765 -17859,5213:228,-138,-22,0,0,0.485044 -17860,5213:227,-137,-22,0,0,0.476298 -17861,5213:226,-136,-22,0,0,0.477708 -17862,5213:225,-135,-22,0,0,0.469153 -17863,5213:124,-134,-22,0,0,0.470561 -17864,5213:123,-133,-22,0,0,0.478118 -17865,5213:122,-132,-22,0,0,0.475043 -17866,5213:121,-131,-22,0,0,0.491795 -17867,5213:120,-130,-22,0,0,0.496136 -17868,5212:229,-129,-22,0,0,0.489202 -17869,5212:228,-128,-22,0,0,0.479759 -17870,5212:227,-127,-22,0,0,0.473121 -17871,5212:226,-126,-22,0,0,0.476401 -17872,5212:225,-125,-22,0,0,0.471765 -17873,5212:124,-124,-22,0,0,0.465369 -17874,5212:123,-123,-22,0,0,0.4634 -17875,5212:122,-122,-22,0,0,0.465778 -17876,5212:121,-121,-22,0,0,0.458729 -17877,5212:120,-120,-22,0,0,0.467516 -17878,5211:229,-119,-22,0,0,0.463375 -17879,5211:228,-118,-22,0,0,0.468003 -17880,5211:227,-117,-22,0,0,0.465189 -17881,5211:226,-116,-22,0,0,0.461255 -17882,5211:225,-115,-22,0,0,0.46749 -17883,5211:124,-114,-22,0,0,0.467542 -17884,5211:123,-113,-22,0,0,0.468693 -17885,5211:122,-112,-22,0,0,0.456204 -17886,5211:121,-111,-22,0,0,0.463043 -17887,5211:120,-110,-22,0,0,0.463502 -17888,5210:229,-109,-22,0,0,0.467286 -17889,5210:228,-108,-22,0,0,0.471585 -17890,5210:227,-107,-22,0,0,0.473096 -17891,5210:226,-106,-22,0,0,0.47028 -17892,5210:225,-105,-22,0,0,0.470971 -17893,5210:124,-104,-22,0,0,0.469947 -17894,5210:123,-103,-22,0,0,0.468949 -17895,5210:122,-102,-22,0,0,0.466621 -17896,5210:121,-101,-22,0,0,0.462302 -17897,5210:120,-100,-22,0,0,0.45975 -17898,5209:229,-99,-22,0,0,0.454497 -17899,5209:228,-98,-22,0,0,0.455465 -17900,5209:227,-97,-22,0,0,0.453911 -17901,5209:226,-96,-22,0,0,0.448899 -17902,5209:225,-95,-22,0,0,0.447425 -17903,5209:124,-94,-22,0,0,0.444506 -17904,5209:123,-93,-22,0,0,0.439185 -17905,5209:122,-92,-22,0,0,0.43466 -17906,5209:121,-91,-22,0,0,0.429542 -17907,5209:120,-90,-22,0,0,0.425343 -17908,5208:229,-89,-22,0,0,0.421831 -17909,5208:228,-88,-22,0,0,0.420453 -17910,5208:227,-87,-22,0,0,0.417502 -17911,5208:226,-86,-22,0,0,0.414806 -17912,5208:225,-85,-22,0,0,0.416203 -17913,5208:124,-84,-22,0,0,0.414856 -17914,5208:123,-83,-22,0,0,0.412563 -17915,5208:122,-82,-22,0,0,0.411966 -17916,5208:121,-81,-22,0,0,0.411319 -17917,5208:120,-80,-22,0,0,0.406501 -17918,5207:229,-79,-22,0,0,0.401232 -17919,5207:228,-78,-22,0,0,0.399308 -17920,5207:227,-77,-22,0,0,0.397486 -17921,5207:226,-76,-22,0,0,0.388053 -17922,5207:225,-75,-22,0,0,0.384083 -17923,5207:124,-74,-22,0,0,0.372101 -17924,5207:123,-73,-22,0,0,0.358831 -17925,5207:122,-72,-22,0,0,0.364786 -17926,5204:229,-49,-22,0,0,0.540841 -17927,5204:228,-48,-22,0,0,0.575514 -17928,5204:227,-47,-22,0,0,0.571845 -17929,5204:226,-46,-22,0,0,0.541657 -17930,5204:225,-45,-22,0,0,0.529749 -17931,5204:124,-44,-22,0,0,0.528085 -17932,5204:123,-43,-22,0,0,0.53241 -17933,5204:122,-42,-22,0,0,0.530184 -17934,5204:121,-41,-22,0,0,0.531949 -17935,5204:120,-40,-22,0,0,0.516806 -17936,5203:229,-39,-22,0,0,0.523833 -17937,5203:228,-38,-22,0,0,0.517678 -17938,5203:227,-37,-22,0,0,0.507823 -17939,5203:226,-36,-22,0,0,0.502018 -17940,5203:225,-35,-22,0,0,0.494672 -17941,5203:124,-34,-22,0,0,0.492489 -17942,5203:123,-33,-22,0,0,0.491976 -17943,5203:122,-32,-22,0,0,0.500477 -17944,5203:121,-31,-22,0,0,0.50415 -17945,5203:120,-30,-22,0,0,0.502429 -17946,5202:229,-29,-22,0,0,0.506281 -17947,5202:228,-28,-22,0,0,0.509902 -17948,5202:227,-27,-22,0,0,0.50492 -17949,5202:226,-26,-22,0,0,0.502788 -17950,5202:225,-25,-22,0,0,0.502762 -17951,5202:124,-24,-22,0,0,0.500374 -17952,5202:123,-23,-22,0,0,0.497137 -17953,5202:122,-22,-22,0,0,0.487328 -17954,5202:121,-21,-22,0,0,0.481683 -17955,5202:120,-20,-22,0,0,0.476606 -17956,5201:229,-19,-22,0,0,0.482427 -17957,5201:228,-18,-22,0,0,0.483838 -17958,5201:227,-17,-22,0,0,0.478733 -17959,5201:226,-16,-22,0,0,0.480759 -17960,5201:225,-15,-22,0,0,0.479502 -17961,5201:124,-14,-22,0,0,0.482889 -17962,5201:123,-13,-22,0,0,0.480709 -17963,5201:122,-12,-22,0,0,0.483068 -17964,5201:121,-11,-22,0,0,0.47817 -17965,5201:120,-10,-22,0,0,0.479528 -17966,5200:229,-9,-22,0,0,0.483735 -17967,5200:228,-8,-22,0,0,0.483325 -17968,5200:227,-7,-22,0,0,0.48058 -17969,5200:226,-6,-22,0,0,0.477195 -17970,5200:225,-5,-22,0,0,0.472533 -17971,5200:124,-4,-22,0,0,0.466775 -17972,5200:123,-3,-22,0,0,0.463707 -17973,5200:122,-2,-22,0,0,0.461383 -17974,5200:121,-1,-22,0,0,0.452715 -17975,3200:121,0,-22,0,0,0.442933 -17976,3200:121,1,-22,0,0,0.440247 -17977,3200:122,2,-22,0,0,0.446029 -17978,3200:123,3,-22,0,0,0.444074 -17979,3200:124,4,-22,0,0,0.433928 -17980,3200:225,5,-22,0,0,0.437364 -17981,3200:226,6,-22,0,0,0.436125 -17982,3200:227,7,-22,0,0,0.433878 -17983,3200:228,8,-22,0,0,0.433726 -17984,3200:229,9,-22,0,0,0.431734 -17985,3201:120,10,-22,0,0,0.431633 -17986,3201:121,11,-22,0,0,0.434686 -17987,3201:122,12,-22,0,0,0.435266 -17988,3201:123,13,-22,0,0,0.437085 -17989,3201:124,14,-22,0,0,0.436908 -17990,3201:225,15,-22,0,0,0.434433 -17991,3201:226,16,-22,0,0,0.41356 -17992,3203:122,32,-22,0,0,0.572121 -17993,3203:123,33,-22,0,0,0.58395 -17994,3203:124,34,-22,0,0,0.562286 -17995,3203:225,35,-22,0,0,0.550341 -17996,3203:226,36,-22,0,0,0.559224 -17997,3203:227,37,-22,0,0,0.533766 -17998,3203:228,38,-22,0,0,0.538339 -17999,3203:229,39,-22,0,0,0.541988 -18000,3204:120,40,-22,0,0,0.539514 -18001,3204:121,41,-22,0,0,0.539386 -18002,3204:122,42,-22,0,0,0.537956 -18003,3204:123,43,-22,0,0,0.528289 -18004,3204:124,44,-22,0,0,0.532589 -18005,3204:225,45,-22,0,0,0.529749 -18006,3204:226,46,-22,0,0,0.511802 -18007,3204:227,47,-22,0,0,0.520243 -18008,3204:228,48,-22,0,0,0.522936 -18009,3204:229,49,-22,0,0,0.508772 -18010,3205:120,50,-22,0,0,0.518269 -18011,3205:121,51,-22,0,0,0.503738 -18012,3205:122,52,-22,0,0,0.507155 -18013,3205:123,53,-22,0,0,0.499346 -18014,3205:124,54,-22,0,0,0.495134 -18015,3205:225,55,-22,0,0,0.503277 -18016,3205:226,56,-22,0,0,0.505202 -18017,3205:227,57,-22,0,0,0.509851 -18018,3205:228,58,-22,0,0,0.50343 -18019,3205:229,59,-22,0,0,0.503636 -18020,3206:120,60,-22,0,0,0.499654 -18021,3206:121,61,-22,0,0,0.504175 -18022,3206:122,62,-22,0,0,0.505562 -18023,3206:123,63,-22,0,0,0.499115 -18024,3206:124,64,-22,0,0,0.508156 -18025,3206:225,65,-22,0,0,0.500425 -18026,3206:226,66,-22,0,0,0.502352 -18027,3206:227,67,-22,0,0,0.501632 -18028,3206:228,68,-22,0,0,0.50795 -18029,3206:229,69,-22,0,0,0.514933 -18030,3207:120,70,-22,0,0,0.517807 -18031,3207:121,71,-22,0,0,0.510158 -18032,3207:122,72,-22,0,0,0.504329 -18033,3207:124,74,-22,0,0,0.499988 -18034,3207:225,75,-22,0,0,0.506025 -18035,3207:226,76,-22,0,0,0.507386 -18036,3207:227,77,-22,0,0,0.506538 -18037,3207:228,78,-22,0,0,0.502506 -18038,3207:229,79,-22,0,0,0.50212 -18039,3208:120,80,-22,0,0,0.506641 -18040,3208:121,81,-22,0,0,0.494287 -18041,3208:122,82,-22,0,0,0.501915 -18042,3208:123,83,-22,0,0,0.49236 -18043,3208:124,84,-22,0,0,0.488149 -18044,3208:225,85,-22,0,0,0.478247 -18045,3208:226,86,-22,0,0,0.47512 -18046,3208:227,87,-22,0,0,0.467516 -18047,3208:228,88,-22,0,0,0.459724 -18048,3208:229,89,-22,0,0,0.459698 -18049,3209:120,90,-22,0,0,0.461459 -18050,3209:121,91,-22,0,0,0.455899 -18051,3209:122,92,-22,0,0,0.447069 -18052,3209:123,93,-22,0,0,0.446232 -18053,3209:124,94,-22,0,0,0.449814 -18054,3209:225,95,-22,0,0,0.441286 -18055,3209:226,96,-22,0,0,0.431306 -18056,3209:227,97,-22,0,0,0.441312 -18057,3209:228,98,-22,0,0,0.430373 -18058,3209:229,99,-22,0,0,0.437085 -18059,3210:120,100,-22,0,0,0.422959 -18060,3210:121,101,-22,0,0,0.418302 -18061,3210:122,102,-22,0,0,0.42924 -18062,3210:123,103,-22,0,0,0.43509 -18063,3210:124,104,-22,0,0,0.435064 -18064,3210:225,105,-22,0,0,0.428561 -18065,3210:226,106,-22,0,0,0.430071 -18066,3210:227,107,-22,0,0,0.427379 -18067,3210:228,108,-22,0,0,0.435772 -18068,3210:229,109,-22,0,0,0.444632 -18069,3211:120,110,-22,0,0,0.466468 -18070,3211:121,111,-22,0,0,0.471432 -18071,3211:122,112,-22,0,0,0.47389 -18072,3211:123,113,-22,0,0,0.494672 -18073,3211:124,114,-22,0,0,0.509466 -18074,3215:124,154,-22,0,0,0.578473 -18075,3215:225,155,-22,0,0,0.568395 -18076,3215:226,156,-22,0,0,0.552933 -18077,3215:227,157,-22,0,0,0.530005 -18078,3215:228,158,-22,0,0,0.53021 -18079,3215:229,159,-22,0,0,0.523551 -18080,3216:120,160,-22,0,0,0.517063 -18081,3216:121,161,-22,0,0,0.515447 -18082,3216:122,162,-22,0,0,0.515447 -18083,3216:123,163,-22,0,0,0.51519 -18084,3216:124,164,-22,0,0,0.513419 -18085,3216:225,165,-22,0,0,0.514497 -18086,3216:226,166,-22,0,0,0.503508 -18087,3216:227,167,-22,0,0,0.485403 -18088,3216:228,168,-22,0,0,0.477042 -18089,3216:229,169,-22,0,0,0.481811 -18090,3217:120,170,-22,0,0,0.48471 -18091,3217:121,171,-22,0,0,0.488766 -18092,3217:122,172,-22,0,0,0.490281 -18093,3217:123,173,-22,0,0,0.491154 -18094,3217:124,174,-22,0,0,0.488099 -18095,3217:225,175,-22,0,0,0.488099 -18096,3217:226,176,-22,0,0,0.488047 -18097,3217:227,177,-22,0,0,0.483992 -18098,3217:228,178,-22,0,0,0.49236 -18099,3217:229,179,-22,0,0,0.492874 -18100,3218:120,180,-22,0,0,0.482812 -18101,5218:110,-180,-21,0,0,0.495314 -18102,5217:219,-179,-21,0,0,0.497857 -18103,5217:218,-178,-21,0,0,0.495776 -18104,5217:217,-177,-21,0,0,0.497497 -18105,5217:216,-176,-21,0,0,0.500759 -18106,5217:215,-175,-21,0,0,0.503713 -18107,5217:114,-174,-21,0,0,0.490948 -18108,5217:113,-173,-21,0,0,0.49927 -18109,5217:112,-172,-21,0,0,0.495982 -18110,5217:111,-171,-21,0,0,0.494723 -18111,5217:110,-170,-21,0,0,0.495622 -18112,5216:219,-169,-21,0,0,0.487482 -18113,5216:218,-168,-21,0,0,0.500014 -18114,5216:217,-167,-21,0,0,0.495622 -18115,5216:216,-166,-21,0,0,0.485146 -18116,5216:215,-165,-21,0,0,0.487379 -18117,5216:114,-164,-21,0,0,0.482298 -18118,5216:113,-163,-21,0,0,0.481452 -18119,5216:112,-162,-21,0,0,0.487687 -18120,5216:111,-161,-21,0,0,0.490769 -18121,5216:110,-160,-21,0,0,0.492694 -18122,5215:219,-159,-21,0,0,0.502506 -18123,5215:218,-158,-21,0,0,0.494132 -18124,5215:217,-157,-21,0,0,0.500605 -18125,5215:216,-156,-21,0,0,0.499783 -18126,5215:215,-155,-21,0,0,0.500477 -18127,5215:114,-154,-21,0,0,0.508387 -18128,5215:113,-153,-21,0,0,0.512597 -18129,5215:112,-152,-21,0,0,0.514318 -18130,5215:111,-151,-21,0,0,0.515986 -18131,5215:110,-150,-21,0,0,0.513317 -18132,5214:219,-149,-21,0,0,0.513034 -18133,5214:218,-148,-21,0,0,0.520705 -18134,5214:217,-147,-21,0,0,0.515678 -18135,5214:216,-146,-21,0,0,0.512726 -18136,5214:215,-145,-21,0,0,0.508695 -18137,5214:114,-144,-21,0,0,0.515164 -18138,5214:113,-143,-21,0,0,0.506281 -18139,5214:112,-142,-21,0,0,0.509774 -18140,5214:111,-141,-21,0,0,0.505691 -18141,5214:110,-140,-21,0,0,0.503636 -18142,5213:219,-139,-21,0,0,0.500194 -18143,5213:218,-138,-21,0,0,0.500246 -18144,5213:217,-137,-21,0,0,0.496341 -18145,5213:216,-136,-21,0,0,0.496958 -18146,5213:215,-135,-21,0,0,0.498345 -18147,5213:114,-134,-21,0,0,0.503687 -18148,5213:113,-133,-21,0,0,0.506615 -18149,5213:112,-132,-21,0,0,0.503713 -18150,5213:111,-131,-21,0,0,0.495622 -18151,5213:110,-130,-21,0,0,0.511956 -18152,5212:219,-129,-21,0,0,0.496238 -18153,5212:218,-128,-21,0,0,0.506307 -18154,5212:217,-127,-21,0,0,0.495802 -18155,5212:216,-126,-21,0,0,0.49272 -18156,5212:215,-125,-21,0,0,0.488945 -18157,5212:114,-124,-21,0,0,0.481965 -18158,5212:113,-123,-21,0,0,0.477067 -18159,5212:112,-122,-21,0,0,0.480016 -18160,5212:111,-121,-21,0,0,0.475683 -18161,5212:110,-120,-21,0,0,0.482837 -18162,5211:219,-119,-21,0,0,0.478067 -18163,5211:218,-118,-21,0,0,0.481452 -18164,5211:217,-117,-21,0,0,0.479118 -18165,5211:216,-116,-21,0,0,0.48135 -18166,5211:215,-115,-21,0,0,0.484659 -18167,5211:114,-114,-21,0,0,0.487123 -18168,5211:113,-113,-21,0,0,0.48507 -18169,5211:112,-112,-21,0,0,0.479118 -18170,5211:111,-111,-21,0,0,0.482375 -18171,5211:110,-110,-21,0,0,0.482991 -18172,5210:219,-109,-21,0,0,0.48471 -18173,5210:218,-108,-21,0,0,0.485839 -18174,5210:217,-107,-21,0,0,0.489202 -18175,5210:216,-106,-21,0,0,0.485686 -18176,5210:215,-105,-21,0,0,0.485121 -18177,5210:114,-104,-21,0,0,0.486892 -18178,5210:113,-103,-21,0,0,0.484223 -18179,5210:112,-102,-21,0,0,0.479067 -18180,5210:111,-101,-21,0,0,0.475632 -18181,5210:110,-100,-21,0,0,0.474428 -18182,5209:219,-99,-21,0,0,0.472763 -18183,5209:218,-98,-21,0,0,0.471176 -18184,5209:217,-97,-21,0,0,0.465624 -18185,5209:216,-96,-21,0,0,0.458397 -18186,5209:215,-95,-21,0,0,0.455312 -18187,5209:114,-94,-21,0,0,0.451264 -18188,5209:113,-93,-21,0,0,0.446384 -18189,5209:112,-92,-21,0,0,0.440146 -18190,5209:111,-91,-21,0,0,0.434862 -18191,5209:110,-90,-21,0,0,0.429794 -18192,5208:219,-89,-21,0,0,0.426298 -18193,5208:218,-88,-21,0,0,0.424288 -18194,5208:217,-87,-21,0,0,0.422332 -18195,5208:216,-86,-21,0,0,0.420353 -18196,5208:215,-85,-21,0,0,0.418752 -18197,5208:114,-84,-21,0,0,0.419403 -18198,5208:113,-83,-21,0,0,0.419227 -18199,5208:112,-82,-21,0,0,0.418352 -18200,5208:111,-81,-21,0,0,0.415081 -18201,5208:110,-80,-21,0,0,0.40608 -18202,5207:219,-79,-21,0,0,0.406873 -18203,5207:218,-78,-21,0,0,0.404792 -18204,5207:217,-77,-21,0,0,0.399161 -18205,5207:216,-76,-21,0,0,0.394709 -18206,5207:215,-75,-21,0,0,0.384594 -18207,5207:114,-74,-21,0,0,0.377566 -18208,5207:113,-73,-21,0,0,0.367767 -18209,5207:112,-72,-21,0,0,0.382408 -18210,5207:111,-71,-21,0,0,0.346727 -18211,5204:218,-48,-21,0,0,0.580876 -18212,5204:217,-47,-21,0,0,0.594889 -18213,5204:216,-46,-21,0,0,0.566605 -18214,5204:215,-45,-21,0,0,0.564737 -18215,5204:114,-44,-21,0,0,0.558742 -18216,5204:113,-43,-21,0,0,0.561729 -18217,5204:112,-42,-21,0,0,0.551816 -18218,5204:111,-41,-21,0,0,0.547951 -18219,5204:110,-40,-21,0,0,0.549884 -18220,5203:219,-39,-21,0,0,0.548612 -18221,5203:218,-38,-21,0,0,0.543544 -18222,5203:217,-37,-21,0,0,0.543697 -18223,5203:216,-36,-21,0,0,0.535095 -18224,5203:215,-35,-21,0,0,0.522731 -18225,5203:114,-34,-21,0,0,0.526523 -18226,5203:113,-33,-21,0,0,0.532512 -18227,5203:112,-32,-21,0,0,0.53535 -18228,5203:111,-31,-21,0,0,0.530286 -18229,5203:110,-30,-21,0,0,0.532845 -18230,5202:219,-29,-21,0,0,0.533996 -18231,5202:218,-28,-21,0,0,0.531899 -18232,5202:217,-27,-21,0,0,0.532027 -18233,5202:216,-26,-21,0,0,0.53241 -18234,5202:215,-25,-21,0,0,0.527342 -18235,5202:114,-24,-21,0,0,0.521423 -18236,5202:113,-23,-21,0,0,0.514625 -18237,5202:112,-22,-21,0,0,0.508901 -18238,5202:111,-21,-21,0,0,0.504355 -18239,5202:110,-20,-21,0,0,0.502891 -18240,5201:219,-19,-21,0,0,0.506975 -18241,5201:218,-18,-21,0,0,0.511494 -18242,5201:217,-17,-21,0,0,0.510184 -18243,5201:216,-16,-21,0,0,0.515216 -18244,5201:215,-15,-21,0,0,0.513137 -18245,5201:114,-14,-21,0,0,0.514549 -18246,5201:113,-13,-21,0,0,0.511057 -18247,5201:112,-12,-21,0,0,0.506846 -18248,5201:111,-11,-21,0,0,0.508284 -18249,5201:110,-10,-21,0,0,0.508284 -18250,5200:219,-9,-21,0,0,0.50415 -18251,5200:218,-8,-21,0,0,0.500117 -18252,5200:217,-7,-21,0,0,0.496162 -18253,5200:216,-6,-21,0,0,0.492668 -18254,5200:215,-5,-21,0,0,0.489536 -18255,5200:114,-4,-21,0,0,0.486712 -18256,5200:113,-3,-21,0,0,0.482786 -18257,5200:112,-2,-21,0,0,0.47576 -18258,5200:111,-1,-21,0,0,0.471099 -18259,3200:111,0,-21,0,0,0.471559 -18260,3200:111,1,-21,0,0,0.469793 -18261,3200:112,2,-21,0,0,0.466545 -18262,3200:113,3,-21,0,0,0.456408 -18263,3200:114,4,-21,0,0,0.449687 -18264,3200:215,5,-21,0,0,0.446638 -18265,3200:216,6,-21,0,0,0.443237 -18266,3200:217,7,-21,0,0,0.440856 -18267,3200:218,8,-21,0,0,0.439894 -18268,3200:219,9,-21,0,0,0.437085 -18269,3201:110,10,-21,0,0,0.436327 -18270,3201:111,11,-21,0,0,0.43921 -18271,3201:112,12,-21,0,0,0.439463 -18272,3201:113,13,-21,0,0,0.441438 -18273,3201:114,14,-21,0,0,0.437085 -18274,3201:215,15,-21,0,0,0.39633 -18275,3203:113,33,-21,0,0,0.589132 -18276,3203:114,34,-21,0,0,0.59112 -18277,3203:215,35,-21,0,0,0.587763 -18278,3203:216,36,-21,0,0,0.556689 -18279,3203:217,37,-21,0,0,0.551994 -18280,3203:218,38,-21,0,0,0.547747 -18281,3203:219,39,-21,0,0,0.550443 -18282,3204:110,40,-21,0,0,0.553543 -18283,3204:111,41,-21,0,0,0.56365 -18284,3204:112,42,-21,0,0,0.566428 -18285,3204:113,43,-21,0,0,0.568042 -18286,3204:114,44,-21,0,0,0.568521 -18287,3204:215,45,-21,0,0,0.552705 -18288,3204:216,46,-21,0,0,0.545404 -18289,3204:217,47,-21,0,0,0.542167 -18290,3204:218,48,-21,0,0,0.544614 -18291,3204:219,49,-21,0,0,0.536014 -18292,3205:110,50,-21,0,0,0.536398 -18293,3205:111,51,-21,0,0,0.54181 -18294,3205:112,52,-21,0,0,0.531029 -18295,3205:113,53,-21,0,0,0.534277 -18296,3205:114,54,-21,0,0,0.534993 -18297,3205:215,55,-21,0,0,0.53131 -18298,3205:216,56,-21,0,0,0.527803 -18299,3205:217,57,-21,0,0,0.529211 -18300,3205:218,58,-21,0,0,0.533254 -18301,3205:219,59,-21,0,0,0.53218 -18302,3206:110,60,-21,0,0,0.524909 -18303,3206:111,61,-21,0,0,0.52496 -18304,3206:112,62,-21,0,0,0.532231 -18305,3206:113,63,-21,0,0,0.51991 -18306,3206:114,64,-21,0,0,0.527188 -18307,3206:215,65,-21,0,0,0.530466 -18308,3206:216,66,-21,0,0,0.523295 -18309,3206:217,67,-21,0,0,0.529365 -18310,3206:218,68,-21,0,0,0.533663 -18311,3206:219,69,-21,0,0,0.531847 -18312,3207:110,70,-21,0,0,0.522423 -18313,3207:111,71,-21,0,0,0.523115 -18314,3207:112,72,-21,0,0,0.5266 -18315,3207:114,74,-21,0,0,0.517473 -18316,3207:215,75,-21,0,0,0.518885 -18317,3207:216,76,-21,0,0,0.524038 -18318,3207:217,77,-21,0,0,0.522372 -18319,3207:218,78,-21,0,0,0.515216 -18320,3207:219,79,-21,0,0,0.518218 -18321,3208:110,80,-21,0,0,0.516832 -18322,3208:111,81,-21,0,0,0.508824 -18323,3208:112,82,-21,0,0,0.508952 -18649,3216:206,166,-20,0,0,0.53264 -18324,3208:113,83,-21,0,0,0.496367 -18325,3208:114,84,-21,0,0,0.50415 -18326,3208:215,85,-21,0,0,0.497985 -18327,3208:216,86,-21,0,0,0.49367 -18328,3208:217,87,-21,0,0,0.487534 -18329,3208:218,88,-21,0,0,0.481426 -18330,3208:219,89,-21,0,0,0.481016 -18331,3209:110,90,-21,0,0,0.479888 -18332,3209:111,91,-21,0,0,0.469486 -18333,3209:112,92,-21,0,0,0.463707 -18334,3209:113,93,-21,0,0,0.460515 -18335,3209:114,94,-21,0,0,0.460694 -18336,3209:215,95,-21,0,0,0.460106 -18337,3209:216,96,-21,0,0,0.453733 -18338,3209:217,97,-21,0,0,0.453962 -18339,3209:218,98,-21,0,0,0.448924 -18340,3209:219,99,-21,0,0,0.449077 -18341,3210:110,100,-21,0,0,0.464346 -18342,3210:111,101,-21,0,0,0.45437 -18343,3210:112,102,-21,0,0,0.443136 -18344,3210:113,103,-21,0,0,0.441387 -18345,3210:114,104,-21,0,0,0.444354 -18346,3210:215,105,-21,0,0,0.466595 -18347,3210:216,106,-21,0,0,0.470791 -18348,3210:217,107,-21,0,0,0.459086 -18349,3210:218,108,-21,0,0,0.472968 -18350,3210:219,109,-21,0,0,0.465675 -18351,3211:110,110,-21,0,0,0.472891 -18352,3211:111,111,-21,0,0,0.476504 -18353,3211:112,112,-21,0,0,0.519988 -18354,3211:113,113,-21,0,0,0.533254 -18355,3211:114,114,-21,0,0,0.518551 -18356,3215:114,154,-21,0,0,0.586244 -18357,3215:215,155,-21,0,0,0.563929 -18358,3215:216,156,-21,0,0,0.54232 -18359,3215:217,157,-21,0,0,0.534583 -18360,3215:218,158,-21,0,0,0.53154 -18361,3215:219,159,-21,0,0,0.527829 -18362,3216:110,160,-21,0,0,0.523935 -18363,3216:111,161,-21,0,0,0.521628 -18364,3216:112,162,-21,0,0,0.527803 -18365,3216:113,163,-21,0,0,0.527471 -18366,3216:114,164,-21,0,0,0.523269 -18367,3216:215,165,-21,0,0,0.519012 -18368,3216:216,166,-21,0,0,0.513624 -18369,3216:217,167,-21,0,0,0.508541 -18370,3216:218,168,-21,0,0,0.49891 -18371,3216:219,169,-21,0,0,0.508438 -18372,3217:110,170,-21,0,0,0.504227 -18373,3217:111,171,-21,0,0,0.500348 -18374,3217:112,172,-21,0,0,0.50397 -18375,3217:113,173,-21,0,0,0.508464 -18376,3217:114,174,-21,0,0,0.506127 -18377,3217:215,175,-21,0,0,0.503379 -18378,3217:216,176,-21,0,0,0.505126 -18379,3217:217,177,-21,0,0,0.505049 -18380,3217:218,178,-21,0,0,0.502557 -18381,3217:219,179,-21,0,0,0.496393 -18382,3218:110,180,-21,0,0,0.495314 -18383,5218:100,-180,-20,0,0,0.514805 -18384,5217:209,-179,-20,0,0,0.512213 -18385,5217:208,-178,-20,0,0,0.512213 -18386,5217:207,-177,-20,0,0,0.510184 -18387,5217:206,-176,-20,0,0,0.50397 -18388,5217:205,-175,-20,0,0,0.514625 -18389,5217:104,-174,-20,0,0,0.509388 -18390,5217:103,-173,-20,0,0,0.506846 -18391,5217:102,-172,-20,0,0,0.508593 -18392,5217:101,-171,-20,0,0,0.511596 -18393,5217:100,-170,-20,0,0,0.503611 -18394,5216:209,-169,-20,0,0,0.508028 -18395,5216:208,-168,-20,0,0,0.506512 -18396,5216:207,-167,-20,0,0,0.510005 -18397,5216:206,-166,-20,0,0,0.499012 -18398,5216:205,-165,-20,0,0,0.508515 -18399,5216:104,-164,-20,0,0,0.499988 -18400,5216:103,-163,-20,0,0,0.510878 -18401,5216:102,-162,-20,0,0,0.512213 -18402,5216:101,-161,-20,0,0,0.509363 -18403,5216:100,-160,-20,0,0,0.504715 -18404,5215:209,-159,-20,0,0,0.512726 -18405,5215:208,-158,-20,0,0,0.519731 -18406,5215:207,-157,-20,0,0,0.523115 -18407,5215:206,-156,-20,0,0,0.522448 -18408,5215:205,-155,-20,0,0,0.523448 -18409,5215:104,-154,-20,0,0,0.525908 -18410,5215:103,-153,-20,0,0,0.526548 -18411,5215:102,-152,-20,0,0,0.529544 -18412,5215:101,-151,-20,0,0,0.527803 -18413,5215:100,-150,-20,0,0,0.527957 -18414,5214:209,-149,-20,0,0,0.534558 -18415,5214:208,-148,-20,0,0,0.533203 -18416,5214:207,-147,-20,0,0,0.534149 -18417,5214:206,-146,-20,0,0,0.52852 -18418,5214:205,-145,-20,0,0,0.531847 -18419,5214:104,-144,-20,0,0,0.530414 -18420,5214:103,-143,-20,0,0,0.526241 -18421,5214:102,-142,-20,0,0,0.525882 -18422,5214:101,-141,-20,0,0,0.523397 -18423,5214:100,-140,-20,0,0,0.520628 -18424,5213:209,-139,-20,0,0,0.515062 -18425,5213:208,-138,-20,0,0,0.523628 -18426,5213:207,-137,-20,0,0,0.525652 -18427,5213:206,-136,-20,0,0,0.521398 -18428,5213:205,-135,-20,0,0,0.52209 -18429,5213:104,-134,-20,0,0,0.521962 -18430,5213:103,-133,-20,0,0,0.521936 -18431,5213:102,-132,-20,0,0,0.527086 -18432,5213:101,-131,-20,0,0,0.524064 -18433,5213:100,-130,-20,0,0,0.52232 -18434,5212:209,-129,-20,0,0,0.516601 -18435,5212:208,-128,-20,0,0,0.509106 -18436,5212:207,-127,-20,0,0,0.506435 -18437,5212:206,-126,-20,0,0,0.501427 -18438,5212:205,-125,-20,0,0,0.497985 -18439,5212:104,-124,-20,0,0,0.501787 -18440,5212:103,-123,-20,0,0,0.495648 -18441,5212:102,-122,-20,0,0,0.492849 -18442,5212:101,-121,-20,0,0,0.498088 -18443,5212:100,-120,-20,0,0,0.495031 -18444,5211:209,-119,-20,0,0,0.499526 -18445,5211:208,-118,-20,0,0,0.500811 -18446,5211:207,-117,-20,0,0,0.497754 -18447,5211:206,-116,-20,0,0,0.499809 -18448,5211:205,-115,-20,0,0,0.501453 -18449,5211:104,-114,-20,0,0,0.50397 -18450,5211:103,-113,-20,0,0,0.501863 -18451,5211:102,-112,-20,0,0,0.500888 -18452,5211:101,-111,-20,0,0,0.504971 -18453,5211:100,-110,-20,0,0,0.50492 -18454,5210:209,-109,-20,0,0,0.505614 -18455,5210:208,-108,-20,0,0,0.505614 -18456,5210:207,-107,-20,0,0,0.501581 -18457,5210:206,-106,-20,0,0,0.497574 -18458,5210:205,-105,-20,0,0,0.499937 -18459,5210:104,-104,-20,0,0,0.504201 -18460,5210:103,-103,-20,0,0,0.50266 -18461,5210:102,-102,-20,0,0,0.494621 -18462,5210:101,-101,-20,0,0,0.490126 -18463,5210:100,-100,-20,0,0,0.490717 -18464,5209:209,-99,-20,0,0,0.488406 -18465,5209:208,-98,-20,0,0,0.484428 -18466,5209:207,-97,-20,0,0,0.478144 -18467,5209:206,-96,-20,0,0,0.470151 -18468,5209:205,-95,-20,0,0,0.465803 -18469,5209:104,-94,-20,0,0,0.46174 -18470,5209:103,-93,-20,0,0,0.45358 -18471,5209:102,-92,-20,0,0,0.446181 -18472,5209:101,-91,-20,0,0,0.441691 -18473,5209:100,-90,-20,0,0,0.43711 -18474,5208:209,-89,-20,0,0,0.431784 -18475,5208:208,-88,-20,0,0,0.429039 -18476,5208:207,-87,-20,0,0,0.426172 -18477,5208:206,-86,-20,0,0,0.423209 -18478,5208:205,-85,-20,0,0,0.421605 -18479,5208:104,-84,-20,0,0,0.423837 -18480,5208:103,-83,-20,0,0,0.422683 -18481,5208:102,-82,-20,0,0,0.418152 -18482,5208:101,-81,-20,0,0,0.410772 -18483,5208:100,-80,-20,0,0,0.409131 -18484,5207:209,-79,-20,0,0,0.408014 -18485,5207:208,-78,-20,0,0,0.403802 -18486,5207:207,-77,-20,0,0,0.39385 -18487,5207:206,-76,-20,0,0,0.386687 -18488,5207:205,-75,-20,0,0,0.382941 -18489,5207:104,-74,-20,0,0,0.384691 -18490,5207:103,-73,-20,0,0,0.386054 -18491,5207:102,-72,-20,0,0,0.394808 -18492,5207:101,-71,-20,0,0,0.38299 -18493,5204:208,-48,-20,0,0,0.591046 -18494,5204:207,-47,-20,0,0,0.581576 -18495,5204:206,-46,-20,0,0,0.601015 -18496,5204:205,-45,-20,0,0,0.588858 -18497,5204:104,-44,-20,0,0,0.590996 -18498,5204:103,-43,-20,0,0,0.593948 -18499,5204:102,-42,-20,0,0,0.578272 -18500,5204:101,-41,-20,0,0,0.577144 -18501,5204:100,-40,-20,0,0,0.579074 -18502,5203:209,-39,-20,0,0,0.577395 -18503,5203:208,-38,-20,0,0,0.57594 -18504,5203:207,-37,-20,0,0,0.578222 -18505,5203:206,-36,-20,0,0,0.571845 -18506,5203:205,-35,-20,0,0,0.55859 -18507,5203:104,-34,-20,0,0,0.561856 -18508,5203:103,-33,-20,0,0,0.560894 -18509,5203:102,-32,-20,0,0,0.558818 -18510,5203:101,-31,-20,0,0,0.55466 -18511,5203:100,-30,-20,0,0,0.553848 -18512,5202:209,-29,-20,0,0,0.556943 -18513,5202:208,-28,-20,0,0,0.554812 -18514,5202:207,-27,-20,0,0,0.550672 -18515,5202:206,-26,-20,0,0,0.547543 -18516,5202:205,-25,-20,0,0,0.542855 -18517,5202:104,-24,-20,0,0,0.539998 -18518,5202:103,-23,-20,0,0,0.537164 -18519,5202:102,-22,-20,0,0,0.5365 -18520,5202:101,-21,-20,0,0,0.535452 -18521,5202:100,-20,-20,0,0,0.537062 -18522,5201:209,-19,-20,0,0,0.535555 -18523,5201:208,-18,-20,0,0,0.535069 -18524,5201:207,-17,-20,0,0,0.534685 -18525,5201:206,-16,-20,0,0,0.534021 -18526,5201:205,-15,-20,0,0,0.533126 -18527,5201:104,-14,-20,0,0,0.533331 -18528,5201:103,-13,-20,0,0,0.527982 -18529,5201:102,-12,-20,0,0,0.526958 -18530,5201:101,-11,-20,0,0,0.526933 -18531,5201:100,-10,-20,0,0,0.523781 -18532,5200:209,-9,-20,0,0,0.518756 -18533,5200:208,-8,-20,0,0,0.51478 -18534,5200:207,-7,-20,0,0,0.513445 -18535,5200:206,-6,-20,0,0,0.509928 -18536,5200:205,-5,-20,0,0,0.506461 -18537,5200:104,-4,-20,0,0,0.502634 -18538,5200:103,-3,-20,0,0,0.497728 -18539,5200:102,-2,-20,0,0,0.491821 -20488,3107:131,71,-13,0,0,0.60728 -18540,5200:101,-1,-20,0,0,0.487277 -18541,3200:101,0,-20,0,0,0.484813 -18542,3200:101,1,-20,0,0,0.481862 -18543,3200:102,2,-20,0,0,0.472507 -18544,3200:103,3,-20,0,0,0.46335 -18545,3200:104,4,-20,0,0,0.458066 -18546,3200:205,5,-20,0,0,0.453427 -18547,3200:206,6,-20,0,0,0.450374 -18548,3200:207,7,-20,0,0,0.446638 -18549,3200:208,8,-20,0,0,0.444683 -18550,3200:209,9,-20,0,0,0.444176 -18551,3201:100,10,-20,0,0,0.443289 -18552,3201:101,11,-20,0,0,0.44339 -18553,3201:102,12,-20,0,0,0.439767 -18554,3201:103,13,-20,0,0,0.435544 -18555,3201:104,14,-20,0,0,0.422332 -18556,3203:103,33,-20,0,0,0.592014 -18557,3203:104,34,-20,0,0,0.60728 -18558,3203:205,35,-20,0,0,0.610901 -18559,3203:206,36,-20,0,0,0.60652 -18560,3203:207,37,-20,0,0,0.58739 -18561,3203:208,38,-20,0,0,0.561704 -18562,3203:209,39,-20,0,0,0.568471 -18563,3204:100,40,-20,0,0,0.581651 -18564,3204:101,41,-20,0,0,0.581676 -18565,3204:102,42,-20,0,0,0.582501 -18566,3204:103,43,-20,0,0,0.59422 -18567,3204:104,44,-20,0,0,0.612146 -18568,3204:205,45,-20,0,0,0.579349 -18569,3204:206,46,-20,0,0,0.570158 -18570,3204:207,47,-20,0,0,0.567916 -18571,3204:208,48,-20,0,0,0.563828 -18572,3204:209,49,-20,0,0,0.569302 -18573,3205:100,50,-20,0,0,0.559046 -18574,3205:101,51,-20,0,0,0.558615 -18575,3205:102,52,-20,0,0,0.561755 -18576,3205:103,53,-20,0,0,0.554279 -18577,3205:104,54,-20,0,0,0.554279 -18578,3205:205,55,-20,0,0,0.557044 -18579,3205:206,56,-20,0,0,0.551104 -18580,3205:207,57,-20,0,0,0.546627 -18581,3205:208,58,-20,0,0,0.555751 -18582,3205:209,59,-20,0,0,0.558033 -18583,3206:100,60,-20,0,0,0.545022 -18584,3206:101,61,-20,0,0,0.542498 -18585,3206:102,62,-20,0,0,0.554051 -18586,3206:103,63,-20,0,0,0.553645 -18587,3206:104,64,-20,0,0,0.552527 -18588,3206:205,65,-20,0,0,0.550062 -18589,3206:206,66,-20,0,0,0.550951 -18590,3206:207,67,-20,0,0,0.547213 -18591,3206:208,68,-20,0,0,0.543799 -18592,3206:209,69,-20,0,0,0.543493 -18593,3207:100,70,-20,0,0,0.53862 -18594,3207:101,71,-20,0,0,0.533075 -18595,3207:102,72,-20,0,0,0.532027 -18596,3207:104,74,-20,0,0,0.528546 -18597,3207:205,75,-20,0,0,0.530849 -18598,3207:206,76,-20,0,0,0.525856 -18599,3207:207,77,-20,0,0,0.520141 -18600,3207:208,78,-20,0,0,0.521218 -18601,3207:209,79,-20,0,0,0.515703 -18602,3208:100,80,-20,0,0,0.513162 -18603,3208:101,81,-20,0,0,0.51365 -18604,3208:102,82,-20,0,0,0.506846 -18605,3208:103,83,-20,0,0,0.507976 -18606,3208:104,84,-20,0,0,0.509466 -18607,3208:205,85,-20,0,0,0.49629 -18608,3208:206,86,-20,0,0,0.496238 -18609,3208:207,87,-20,0,0,0.49082 -18610,3208:208,88,-20,0,0,0.48987 -18611,3208:209,89,-20,0,0,0.483376 -18612,3209:100,90,-20,0,0,0.479118 -18613,3209:101,91,-20,0,0,0.473941 -18614,3209:102,92,-20,0,0,0.476657 -18615,3209:103,93,-20,0,0,0.477657 -18616,3209:104,94,-20,0,0,0.475786 -18617,3209:205,95,-20,0,0,0.46634 -18618,3209:206,96,-20,0,0,0.467235 -18619,3209:207,97,-20,0,0,0.47594 -18620,3209:208,98,-20,0,0,0.458142 -18621,3209:209,99,-20,0,0,0.462175 -18622,3210:100,100,-20,0,0,0.481529 -18623,3210:101,101,-20,0,0,0.474838 -18624,3210:102,102,-20,0,0,0.466417 -18625,3210:103,103,-20,0,0,0.465087 -18626,3210:104,104,-20,0,0,0.480759 -18627,3210:205,105,-20,0,0,0.472814 -18628,3210:206,106,-20,0,0,0.47389 -18629,3210:207,107,-20,0,0,0.492335 -18630,3210:208,108,-20,0,0,0.488047 -18631,3210:209,109,-20,0,0,0.490563 -18632,3211:100,110,-20,0,0,0.501581 -18633,3211:101,111,-20,0,0,0.50908 -18634,3211:102,112,-20,0,0,0.531821 -18635,3211:103,113,-20,0,0,0.540382 -18636,3211:104,114,-20,0,0,0.565949 -18637,3215:104,154,-20,0,0,0.587689 -18638,3215:205,155,-20,0,0,0.568446 -18639,3215:206,156,-20,0,0,0.563575 -18640,3215:207,157,-20,0,0,0.544666 -18641,3215:208,158,-20,0,0,0.540202 -18642,3215:209,159,-20,0,0,0.538313 -18643,3216:100,160,-20,0,0,0.531847 -18644,3216:101,161,-20,0,0,0.531233 -18645,3216:102,162,-20,0,0,0.535606 -18646,3216:103,163,-20,0,0,0.529416 -18647,3216:104,164,-20,0,0,0.52765 -18648,3216:205,165,-20,0,0,0.530977 -18650,3216:207,167,-20,0,0,0.520013 -18651,3216:208,168,-20,0,0,0.514677 -18652,3216:209,169,-20,0,0,0.518654 -18653,3217:100,170,-20,0,0,0.519295 -18654,3217:101,171,-20,0,0,0.520731 -18655,3217:102,172,-20,0,0,0.513291 -18656,3217:103,173,-20,0,0,0.517551 -18657,3217:104,174,-20,0,0,0.515164 -18658,3217:205,175,-20,0,0,0.51714 -18659,3217:206,176,-20,0,0,0.513496 -18660,3217:207,177,-20,0,0,0.509876 -18661,3217:208,178,-20,0,0,0.510287 -18662,3217:209,179,-20,0,0,0.512957 -18663,3218:100,180,-20,0,0,0.514805 -18664,5118:390,-180,-19,0,0,0.526318 -18665,5117:499,-179,-19,0,0,0.530107 -18666,5117:498,-178,-19,0,0,0.535734 -18667,5117:497,-177,-19,0,0,0.529365 -18668,5117:496,-176,-19,0,0,0.530031 -18669,5117:495,-175,-19,0,0,0.525011 -18670,5117:394,-174,-19,0,0,0.524627 -18671,5117:393,-173,-19,0,0,0.527547 -18672,5117:392,-172,-19,0,0,0.529544 -18673,5117:391,-171,-19,0,0,0.517551 -18674,5117:390,-170,-19,0,0,0.523859 -18675,5116:499,-169,-19,0,0,0.525549 -18676,5116:498,-168,-19,0,0,0.526626 -18677,5116:497,-167,-19,0,0,0.523833 -18678,5116:496,-166,-19,0,0,0.518936 -18679,5116:495,-165,-19,0,0,0.533996 -18680,5116:394,-164,-19,0,0,0.527086 -18681,5116:393,-163,-19,0,0,0.518371 -18682,5116:392,-162,-19,0,0,0.529929 -18683,5116:391,-161,-19,0,0,0.527342 -18684,5116:390,-160,-19,0,0,0.53742 -18685,5115:499,-159,-19,0,0,0.5365 -18686,5115:498,-158,-19,0,0,0.532027 -18687,5115:497,-157,-19,0,0,0.53021 -18688,5115:496,-156,-19,0,0,0.540458 -18689,5115:495,-155,-19,0,0,0.539973 -18690,5115:394,-154,-19,0,0,0.542983 -18691,5115:393,-153,-19,0,0,0.543468 -18692,5115:392,-152,-19,0,0,0.53982 -18693,5115:391,-151,-19,0,0,0.551053 -18694,5115:390,-150,-19,0,0,0.547467 -18695,5114:499,-149,-19,0,0,0.546398 -18696,5114:498,-148,-19,0,0,0.546448 -18697,5114:497,-147,-19,0,0,0.548383 -18698,5114:496,-146,-19,0,0,0.551511 -18699,5114:495,-145,-19,0,0,0.546627 -18700,5114:394,-144,-19,0,0,0.545073 -18701,5114:393,-143,-19,0,0,0.541453 -18702,5114:392,-142,-19,0,0,0.540126 -18703,5114:391,-141,-19,0,0,0.541351 -18704,5114:390,-140,-19,0,0,0.54907 -18705,5113:499,-139,-19,0,0,0.545761 -18706,5113:498,-138,-19,0,0,0.545506 -18707,5113:497,-137,-19,0,0,0.549248 -18708,5113:496,-136,-19,0,0,0.545965 -18709,5113:495,-135,-19,0,0,0.552578 -18710,5113:394,-134,-19,0,0,0.543442 -18711,5113:393,-133,-19,0,0,0.552374 -18712,5113:392,-132,-19,0,0,0.534839 -18713,5113:391,-131,-19,0,0,0.544105 -18714,5113:390,-130,-19,0,0,0.539029 -18715,5112:499,-129,-19,0,0,0.533816 -18716,5112:498,-128,-19,0,0,0.531361 -18717,5112:497,-127,-19,0,0,0.52683 -18718,5112:496,-126,-19,0,0,0.524909 -18719,5112:495,-125,-19,0,0,0.523628 -18720,5112:394,-124,-19,0,0,0.516499 -18721,5112:393,-123,-19,0,0,0.51832 -18722,5112:392,-122,-19,0,0,0.520988 -18723,5112:391,-121,-19,0,0,0.520013 -18724,5112:390,-120,-19,0,0,0.517704 -18725,5111:499,-119,-19,0,0,0.518423 -18726,5111:498,-118,-19,0,0,0.516293 -18727,5111:497,-117,-19,0,0,0.514241 -18728,5111:496,-116,-19,0,0,0.519474 -18729,5111:495,-115,-19,0,0,0.521833 -18730,5111:394,-114,-19,0,0,0.523192 -18731,5111:393,-113,-19,0,0,0.521398 -18732,5111:392,-112,-19,0,0,0.522115 -18733,5111:391,-111,-19,0,0,0.521244 -18734,5111:390,-110,-19,0,0,0.517551 -18735,5110:499,-109,-19,0,0,0.518243 -18736,5110:498,-108,-19,0,0,0.51832 -18737,5110:497,-107,-19,0,0,0.513624 -18738,5110:496,-106,-19,0,0,0.512546 -18739,5110:495,-105,-19,0,0,0.517576 -18740,5110:394,-104,-19,0,0,0.514061 -18741,5110:393,-103,-19,0,0,0.510596 -18742,5110:392,-102,-19,0,0,0.510672 -18743,5110:391,-101,-19,0,0,0.507052 -18744,5110:390,-100,-19,0,0,0.503328 -18745,5109:499,-99,-19,0,0,0.498576 -18746,5109:498,-98,-19,0,0,0.489947 -18747,5109:497,-97,-19,0,0,0.483915 -18748,5109:496,-96,-19,0,0,0.475504 -18749,5109:495,-95,-19,0,0,0.467695 -18750,5109:394,-94,-19,0,0,0.46003 -18751,5109:393,-93,-19,0,0,0.453224 -18752,5109:392,-92,-19,0,0,0.446333 -18753,5109:391,-91,-19,0,0,0.441717 -18754,5109:390,-90,-19,0,0,0.438223 -18755,5108:499,-89,-19,0,0,0.435468 -18756,5108:498,-88,-19,0,0,0.431936 -18757,5108:497,-87,-19,0,0,0.429215 -18758,5108:496,-86,-19,0,0,0.424615 -18759,5108:495,-85,-19,0,0,0.423009 -18760,5108:394,-84,-19,0,0,0.422157 -18761,5108:393,-83,-19,0,0,0.418002 -18762,5108:392,-82,-19,0,0,0.413161 -18763,5108:391,-81,-19,0,0,0.412514 -18764,5108:390,-80,-19,0,0,0.409504 -18765,5107:499,-79,-19,0,0,0.406824 -18766,5107:498,-78,-19,0,0,0.400344 -18767,5107:497,-77,-19,0,0,0.394906 -18768,5107:496,-76,-19,0,0,0.394145 -18769,5107:495,-75,-19,0,0,0.39211 -18770,5107:394,-74,-19,0,0,0.391939 -18771,5107:393,-73,-19,0,0,0.398594 -18772,5107:392,-72,-19,0,0,0.407468 -18773,5107:391,-71,-19,0,0,0.394832 -18774,5104:497,-47,-19,0,0,0.577871 -18775,5104:496,-46,-19,0,0,0.554762 -18776,5104:495,-45,-19,0,0,0.604802 -18777,5104:394,-44,-19,0,0,0.611511 -18778,5104:393,-43,-19,0,0,0.608236 -18779,5104:392,-42,-19,0,0,0.600275 -18780,5104:391,-41,-19,0,0,0.603378 -18781,5104:390,-40,-19,0,0,0.6063 -18782,5103:499,-39,-19,0,0,0.602812 -18783,5103:498,-38,-19,0,0,0.599708 -18784,5103:497,-37,-19,0,0,0.598894 -18785,5103:496,-36,-19,0,0,0.596349 -18786,5103:495,-35,-19,0,0,0.588609 -18787,5103:394,-34,-19,0,0,0.583326 -18788,5103:393,-33,-19,0,0,0.582726 -18789,5103:392,-32,-19,0,0,0.58355 -18790,5103:391,-31,-19,0,0,0.581951 -18791,5103:390,-30,-19,0,0,0.58035 -18792,5102:499,-29,-19,0,0,0.574836 -18793,5102:498,-28,-19,0,0,0.568874 -18794,5102:497,-27,-19,0,0,0.565015 -18795,5102:496,-26,-19,0,0,0.563145 -18796,5102:495,-25,-19,0,0,0.560565 -18797,5102:394,-24,-19,0,0,0.561982 -18798,5102:393,-23,-19,0,0,0.557247 -18799,5102:392,-22,-19,0,0,0.55745 -18800,5102:391,-21,-19,0,0,0.555954 -18801,5102:390,-20,-19,0,0,0.552908 -18802,5101:499,-19,-19,0,0,0.552984 -18803,5101:498,-18,-19,0,0,0.552629 -18804,5101:497,-17,-19,0,0,0.549146 -18805,5101:496,-16,-19,0,0,0.551918 -18806,5101:495,-15,-19,0,0,0.551663 -18807,5101:394,-14,-19,0,0,0.550367 -18808,5101:393,-13,-19,0,0,0.549324 -18809,5101:392,-12,-19,0,0,0.545328 -18810,5101:391,-11,-19,0,0,0.541529 -18811,5101:390,-10,-19,0,0,0.54028 -18812,5100:499,-9,-19,0,0,0.539437 -18813,5100:498,-8,-19,0,0,0.537522 -18814,5100:497,-7,-19,0,0,0.532896 -18815,5100:496,-6,-19,0,0,0.524217 -18816,5100:495,-5,-19,0,0,0.517166 -18817,5100:394,-4,-19,0,0,0.513522 -18818,5100:393,-3,-19,0,0,0.508181 -18819,5100:392,-2,-19,0,0,0.503302 -18820,5100:391,-1,-19,0,0,0.494723 -18821,3100:391,0,-19,0,0,0.487662 -18822,3100:391,1,-19,0,0,0.481272 -18823,3100:392,2,-19,0,0,0.472123 -18824,3100:393,3,-19,0,0,0.46404 -18825,3100:394,4,-19,0,0,0.45855 -18826,3100:495,5,-19,0,0,0.45465 -18827,3100:496,6,-19,0,0,0.452638 -18828,3100:497,7,-19,0,0,0.452486 -18829,3100:498,8,-19,0,0,0.44801 -18830,3100:499,9,-19,0,0,0.449306 -18831,3101:390,10,-19,0,0,0.446815 -18832,3101:391,11,-19,0,0,0.450119 -18833,3101:392,12,-19,0,0,0.450374 -18834,3101:393,13,-19,0,0,0.446942 -18835,3101:394,14,-19,0,0,0.417727 -18836,3103:495,35,-19,0,0,0.606055 -18837,3103:496,36,-19,0,0,0.618274 -18838,3103:497,37,-19,0,0,0.605932 -18839,3103:498,38,-19,0,0,0.604213 -18840,3103:499,39,-19,0,0,0.594369 -18841,3104:390,40,-19,0,0,0.606079 -18842,3104:391,41,-19,0,0,0.596794 -18843,3104:392,42,-19,0,0,0.607893 -18844,3104:393,43,-19,0,0,0.639965 -18845,3104:497,47,-19,0,0,0.575036 -18846,3104:498,48,-19,0,0,0.602443 -18847,3104:499,49,-19,0,0,0.590599 -18848,3105:390,50,-19,0,0,0.58953 -18849,3105:391,51,-19,0,0,0.571593 -18850,3105:392,52,-19,0,0,0.579925 -18851,3105:393,53,-19,0,0,0.57363 -18852,3105:394,54,-19,0,0,0.564181 -18853,3105:495,55,-19,0,0,0.565015 -18854,3105:496,56,-19,0,0,0.572976 -18855,3105:497,57,-19,0,0,0.568143 -18856,3105:498,58,-19,0,0,0.569882 -18857,3105:499,59,-19,0,0,0.576492 -18858,3106:390,60,-19,0,0,0.551333 -18859,3106:391,61,-19,0,0,0.563094 -18860,3106:392,62,-19,0,0,0.566756 -18861,3106:393,63,-19,0,0,0.56312 -18862,3106:394,64,-19,0,0,0.558362 -18863,3106:495,65,-19,0,0,0.562108 -18864,3106:496,66,-19,0,0,0.552578 -18865,3106:497,67,-19,0,0,0.554102 -18866,3106:498,68,-19,0,0,0.551155 -18867,3106:499,69,-19,0,0,0.546474 -18868,3107:390,70,-19,0,0,0.53982 -18869,3107:391,71,-19,0,0,0.535964 -18870,3107:392,72,-19,0,0,0.540509 -18871,3107:394,74,-19,0,0,0.538365 -18872,3107:495,75,-19,0,0,0.530056 -18873,3107:496,76,-19,0,0,0.529135 -18874,3107:497,77,-19,0,0,0.525652 -18875,3107:498,78,-19,0,0,0.523064 -18876,3107:499,79,-19,0,0,0.516524 -18877,3108:390,80,-19,0,0,0.516011 -18878,3108:391,81,-19,0,0,0.519552 -18879,3108:392,82,-19,0,0,0.519654 -18880,3108:393,83,-19,0,0,0.512161 -18881,3108:394,84,-19,0,0,0.510929 -18882,3108:495,85,-19,0,0,0.509517 -18883,3108:496,86,-19,0,0,0.505074 -18884,3108:497,87,-19,0,0,0.502249 -18885,3108:498,88,-19,0,0,0.493388 -18886,3108:499,89,-19,0,0,0.489074 -18887,3109:390,90,-19,0,0,0.491898 -18888,3109:391,91,-19,0,0,0.48987 -18889,3109:392,92,-19,0,0,0.48602 -18890,3109:393,93,-19,0,0,0.48643 -18891,3109:394,94,-19,0,0,0.490614 -18892,3109:495,95,-19,0,0,0.480631 -18893,3109:496,96,-19,0,0,0.48058 -18894,3109:497,97,-19,0,0,0.488817 -18895,3109:498,98,-19,0,0,0.492438 -18896,3109:499,99,-19,0,0,0.490178 -18897,3110:390,100,-19,0,0,0.481606 -18898,3110:391,101,-19,0,0,0.4794 -18899,3110:392,102,-19,0,0,0.476504 -18900,3110:393,103,-19,0,0,0.493233 -18901,3110:394,104,-19,0,0,0.491719 -18902,3110:495,105,-19,0,0,0.48276 -18903,3110:496,106,-19,0,0,0.480144 -18904,3110:497,107,-19,0,0,0.498011 -18905,3110:498,108,-19,0,0,0.503302 -18906,3110:499,109,-19,0,0,0.502454 -18907,3111:390,110,-19,0,0,0.507565 -18908,3111:391,111,-19,0,0,0.534353 -18909,3111:392,112,-19,0,0,0.542218 -18910,3111:393,113,-19,0,0,0.559781 -18911,3115:393,153,-19,0,0,0.594716 -18912,3115:394,154,-19,0,0,0.595161 -18913,3115:495,155,-19,0,0,0.572273 -18914,3115:496,156,-19,0,0,0.565646 -18915,3115:497,157,-19,0,0,0.569428 -18916,3115:498,158,-19,0,0,0.566832 -18917,3115:499,159,-19,0,0,0.554762 -18918,3116:390,160,-19,0,0,0.542014 -18919,3116:391,161,-19,0,0,0.544818 -18920,3116:392,162,-19,0,0,0.544029 -18921,3116:393,163,-19,0,0,0.551409 -18922,3116:394,164,-19,0,0,0.554381 -18923,3116:495,165,-19,0,0,0.545302 -18924,3116:496,166,-19,0,0,0.535043 -18925,3116:497,167,-19,0,0,0.53627 -18926,3116:498,168,-19,0,0,0.539514 -18927,3116:499,169,-19,0,0,0.542805 -18928,3117:390,170,-19,0,0,0.533663 -18929,3117:391,171,-19,0,0,0.533918 -18930,3117:392,172,-19,0,0,0.537292 -18931,3117:393,173,-19,0,0,0.530696 -18932,3117:394,174,-19,0,0,0.524806 -18933,3117:495,175,-19,0,0,0.527266 -18934,3117:496,176,-19,0,0,0.527317 -18935,3117:497,177,-19,0,0,0.522474 -18936,3117:498,178,-19,0,0,0.52537 -18937,3117:499,179,-19,0,0,0.524627 -18938,3118:390,180,-19,0,0,0.526318 -18939,5118:380,-180,-18,0,0,0.546474 -18940,5117:489,-179,-18,0,0,0.541427 -18941,5117:488,-178,-18,0,0,0.547976 -18942,5117:487,-177,-18,0,0,0.539718 -18943,5117:486,-176,-18,0,0,0.539565 -18944,5117:485,-175,-18,0,0,0.53742 -18945,5117:384,-174,-18,0,0,0.531438 -18946,5117:383,-173,-18,0,0,0.534788 -18947,5117:382,-172,-18,0,0,0.535632 -18948,5117:381,-171,-18,0,0,0.536014 -18949,5117:380,-170,-18,0,0,0.53131 -18950,5116:489,-169,-18,0,0,0.534558 -18951,5116:488,-168,-18,0,0,0.537369 -18952,5116:487,-167,-18,0,0,0.534328 -18953,5116:486,-166,-18,0,0,0.539054 -18954,5116:485,-165,-18,0,0,0.543442 -18955,5116:384,-164,-18,0,0,0.54907 -18956,5116:383,-163,-18,0,0,0.540738 -18957,5116:382,-162,-18,0,0,0.540841 -18958,5116:381,-161,-18,0,0,0.54209 -18959,5116:380,-160,-18,0,0,0.549579 -18960,5115:489,-159,-18,0,0,0.549579 -18961,5115:488,-158,-18,0,0,0.548357 -18962,5115:487,-157,-18,0,0,0.550316 -18963,5115:486,-156,-18,0,0,0.548103 -18964,5115:485,-155,-18,0,0,0.549782 -18965,5115:384,-154,-18,0,0,0.55499 -18966,5115:383,-153,-18,0,0,0.550825 -18967,5115:382,-152,-18,0,0,0.560489 -18968,5115:381,-151,-18,0,0,0.564813 -18969,5115:380,-150,-18,0,0,0.563499 -18970,5114:489,-149,-18,0,0,0.561223 -18971,5114:488,-148,-18,0,0,0.566227 -18972,5114:487,-147,-18,0,0,0.569655 -18973,5114:486,-146,-18,0,0,0.563701 -21244,5108:103,-83,-10,0,0,0.47179 -18974,5114:485,-145,-18,0,0,0.557678 -18975,5114:384,-144,-18,0,0,0.561173 -18976,5114:383,-143,-18,0,0,0.559299 -18977,5114:382,-142,-18,0,0,0.566478 -18978,5114:381,-141,-18,0,0,0.563448 -18979,5114:380,-140,-18,0,0,0.572775 -18980,5113:489,-139,-18,0,0,0.5727 -18981,5113:488,-138,-18,0,0,0.57099 -18982,5113:487,-137,-18,0,0,0.572574 -18983,5113:486,-136,-18,0,0,0.573806 -18984,5113:485,-135,-18,0,0,0.570158 -18985,5113:384,-134,-18,0,0,0.571166 -18986,5113:383,-133,-18,0,0,0.570687 -18987,5113:382,-132,-18,0,0,0.557374 -18988,5113:381,-131,-18,0,0,0.561856 -18989,5113:380,-130,-18,0,0,0.550799 -18990,5112:489,-129,-18,0,0,0.552553 -18991,5112:488,-128,-18,0,0,0.550774 -18992,5112:487,-127,-18,0,0,0.545837 -18993,5112:486,-126,-18,0,0,0.541249 -18994,5112:485,-125,-18,0,0,0.542498 -18995,5112:384,-124,-18,0,0,0.538186 -18996,5112:383,-123,-18,0,0,0.542779 -18997,5112:382,-122,-18,0,0,0.542014 -18998,5112:381,-121,-18,0,0,0.542907 -18999,5112:380,-120,-18,0,0,0.537726 -19000,5111:489,-119,-18,0,0,0.536756 -19001,5111:488,-118,-18,0,0,0.537726 -19002,5111:487,-117,-18,0,0,0.538467 -19003,5111:486,-116,-18,0,0,0.53862 -19004,5111:485,-115,-18,0,0,0.541249 -19005,5111:384,-114,-18,0,0,0.543314 -19006,5111:383,-113,-18,0,0,0.542269 -19007,5111:382,-112,-18,0,0,0.542192 -19008,5111:381,-111,-18,0,0,0.537981 -19009,5111:380,-110,-18,0,0,0.531873 -19010,5110:489,-109,-18,0,0,0.530286 -19011,5110:488,-108,-18,0,0,0.531924 -19012,5110:487,-107,-18,0,0,0.530158 -19013,5110:486,-106,-18,0,0,0.528008 -19014,5110:485,-105,-18,0,0,0.524883 -19015,5110:384,-104,-18,0,0,0.522295 -19016,5110:383,-103,-18,0,0,0.51991 -19017,5110:382,-102,-18,0,0,0.515472 -19018,5110:381,-101,-18,0,0,0.510031 -19019,5110:380,-100,-18,0,0,0.504253 -19020,5109:489,-99,-18,0,0,0.49629 -19021,5109:488,-98,-18,0,0,0.49064 -19022,5109:487,-97,-18,0,0,0.482427 -19023,5109:486,-96,-18,0,0,0.475888 -19024,5109:485,-95,-18,0,0,0.470356 -19025,5109:384,-94,-18,0,0,0.466212 -19026,5109:383,-93,-18,0,0,0.460566 -19027,5109:382,-92,-18,0,0,0.452358 -19028,5109:381,-91,-18,0,0,0.444912 -19029,5109:380,-90,-18,0,0,0.438628 -19030,5108:489,-89,-18,0,0,0.43653 -19031,5108:488,-88,-18,0,0,0.433751 -19032,5108:487,-87,-18,0,0,0.430096 -19033,5108:486,-86,-18,0,0,0.426499 -19034,5108:485,-85,-18,0,0,0.421605 -19035,5108:384,-84,-18,0,0,0.418352 -19036,5108:383,-83,-18,0,0,0.41331 -19037,5108:382,-82,-18,0,0,0.406824 -19038,5108:381,-81,-18,0,0,0.401405 -19039,5108:380,-80,-18,0,0,0.398939 -19040,5107:489,-79,-18,0,0,0.395937 -19041,5107:488,-78,-18,0,0,0.394464 -19042,5107:487,-77,-18,0,0,0.394587 -19043,5107:486,-76,-18,0,0,0.395029 -19044,5107:485,-75,-18,0,0,0.395225 -19045,5107:384,-74,-18,0,0,0.397388 -19046,5107:383,-73,-18,0,0,0.403456 -19047,5107:382,-72,-18,0,0,0.419327 -19048,5107:381,-71,-18,0,0,0.411219 -19049,5104:384,-44,-18,0,0,0.56269 -19050,5104:383,-43,-18,0,0,0.604361 -19051,5104:382,-42,-18,0,0,0.606201 -19052,5104:381,-41,-18,0,0,0.623354 -19053,5104:380,-40,-18,0,0,0.623812 -19054,5103:489,-39,-18,0,0,0.620575 -19055,5103:488,-38,-18,0,0,0.615579 -19056,5103:487,-37,-18,0,0,0.611731 -19057,5103:486,-36,-18,0,0,0.605736 -19058,5103:485,-35,-18,0,0,0.603353 -19059,5103:384,-34,-18,0,0,0.603451 -19060,5103:383,-33,-18,0,0,0.607403 -19061,5103:382,-32,-18,0,0,0.603451 -19062,5103:381,-31,-18,0,0,0.601408 -19063,5103:380,-30,-18,0,0,0.597857 -19064,5102:489,-29,-18,0,0,0.587091 -19065,5102:488,-28,-18,0,0,0.57995 -19066,5102:487,-27,-18,0,0,0.577746 -19067,5102:486,-26,-18,0,0,0.578874 -19068,5102:485,-25,-18,0,0,0.577922 -19069,5102:384,-24,-18,0,0,0.576442 -19070,5102:383,-23,-18,0,0,0.574434 -19071,5102:382,-22,-18,0,0,0.57461 -19072,5102:381,-21,-18,0,0,0.576743 -19073,5102:380,-20,-18,0,0,0.576642 -19074,5101:489,-19,-18,0,0,0.574383 -19075,5101:488,-18,-18,0,0,0.576015 -19076,5101:487,-17,-18,0,0,0.574308 -19077,5101:486,-16,-18,0,0,0.57192 -19078,5101:485,-15,-18,0,0,0.568345 -19079,5101:384,-14,-18,0,0,0.563094 -19080,5101:383,-13,-18,0,0,0.558083 -19081,5101:382,-12,-18,0,0,0.555802 -19082,5101:381,-11,-18,0,0,0.552578 -19083,5101:380,-10,-18,0,0,0.547365 -19084,5100:489,-9,-18,0,0,0.540738 -19085,5100:488,-8,-18,0,0,0.534251 -19086,5100:487,-7,-18,0,0,0.526676 -19087,5100:486,-6,-18,0,0,0.518218 -19088,5100:485,-5,-18,0,0,0.513265 -19089,5100:384,-4,-18,0,0,0.505896 -19090,5100:383,-3,-18,0,0,0.498653 -19091,5100:382,-2,-18,0,0,0.49308 -19092,5100:381,-1,-18,0,0,0.486584 -19093,3100:381,0,-18,0,0,0.480247 -19094,3100:381,1,-18,0,0,0.474607 -19095,3100:382,2,-18,0,0,0.469973 -19096,3100:383,3,-18,0,0,0.464601 -19097,3100:384,4,-18,0,0,0.460668 -19098,3100:485,5,-18,0,0,0.460438 -19099,3100:486,6,-18,0,0,0.45804 -19100,3100:487,7,-18,0,0,0.456255 -19101,3100:488,8,-18,0,0,0.454446 -19102,3100:489,9,-18,0,0,0.455108 -19103,3101:380,10,-18,0,0,0.455949 -19104,3101:381,11,-18,0,0,0.455261 -19105,3101:382,12,-18,0,0,0.450196 -19106,3101:383,13,-18,0,0,0.443897 -19107,3101:384,14,-18,0,0,0.385566 -19108,3103:486,36,-18,0,0,0.632308 -19109,3103:487,37,-18,0,0,0.615968 -19110,3103:488,38,-18,0,0,0.613681 -19111,3103:489,39,-18,0,0,0.611438 -19112,3104:380,40,-18,0,0,0.617693 -19113,3104:381,41,-18,0,0,0.625763 -19114,3104:382,42,-18,0,0,0.648068 -19115,3104:383,43,-18,0,0,0.666784 -19116,3104:488,48,-18,0,0,0.61217 -19117,3104:489,49,-18,0,0,0.597956 -19118,3105:380,50,-18,0,0,0.598845 -19119,3105:381,51,-18,0,0,0.593526 -19120,3105:382,52,-18,0,0,0.590151 -19121,3105:383,53,-18,0,0,0.581176 -19122,3105:384,54,-18,0,0,0.576166 -19123,3105:485,55,-18,0,0,0.580376 -19124,3105:486,56,-18,0,0,0.5833 -19125,3105:487,57,-18,0,0,0.585322 -19126,3105:488,58,-18,0,0,0.585048 -19127,3105:489,59,-18,0,0,0.585097 -19128,3106:380,60,-18,0,0,0.57985 -19129,3106:381,61,-18,0,0,0.570788 -19130,3106:382,62,-18,0,0,0.569604 -19131,3106:383,63,-18,0,0,0.574509 -19132,3106:384,64,-18,0,0,0.570536 -19133,3106:485,65,-18,0,0,0.567639 -19134,3106:486,66,-18,0,0,0.561071 -19135,3106:487,67,-18,0,0,0.556588 -19136,3106:488,68,-18,0,0,0.553315 -19137,3106:489,69,-18,0,0,0.547874 -19138,3107:380,70,-18,0,0,0.549884 -19139,3107:381,71,-18,0,0,0.545684 -19140,3107:382,72,-18,0,0,0.542754 -19141,3107:384,74,-18,0,0,0.535912 -19142,3107:485,75,-18,0,0,0.533024 -19143,3107:486,76,-18,0,0,0.538211 -19144,3107:487,77,-18,0,0,0.533816 -19145,3107:488,78,-18,0,0,0.530312 -19146,3107:489,79,-18,0,0,0.530261 -19147,3108:380,80,-18,0,0,0.525882 -19148,3108:381,81,-18,0,0,0.527291 -19149,3108:382,82,-18,0,0,0.518551 -19150,3108:383,83,-18,0,0,0.523755 -19151,3108:384,84,-18,0,0,0.520833 -19152,3108:485,85,-18,0,0,0.513753 -19153,3108:486,86,-18,0,0,0.516396 -19154,3108:487,87,-18,0,0,0.509235 -19155,3108:488,88,-18,0,0,0.507745 -19156,3108:489,89,-18,0,0,0.509671 -19157,3109:380,90,-18,0,0,0.5117 -19158,3109:381,91,-18,0,0,0.506076 -19159,3109:382,92,-18,0,0,0.506051 -19160,3109:383,93,-18,0,0,0.510904 -19161,3109:384,94,-18,0,0,0.508079 -19162,3109:485,95,-18,0,0,0.501761 -19163,3109:486,96,-18,0,0,0.503251 -19164,3109:487,97,-18,0,0,0.496958 -19165,3109:488,98,-18,0,0,0.499398 -19166,3109:489,99,-18,0,0,0.491976 -19167,3110:380,100,-18,0,0,0.497677 -19168,3110:381,101,-18,0,0,0.491411 -19169,3110:382,102,-18,0,0,0.497651 -19170,3110:383,103,-18,0,0,0.507411 -19171,3110:384,104,-18,0,0,0.501478 -19172,3110:485,105,-18,0,0,0.500322 -19173,3110:486,106,-18,0,0,0.507771 -19174,3110:487,107,-18,0,0,0.517371 -19175,3110:488,108,-18,0,0,0.521577 -19176,3110:489,109,-18,0,0,0.529851 -19177,3111:380,110,-18,0,0,0.529288 -19178,3111:381,111,-18,0,0,0.532589 -19179,3111:382,112,-18,0,0,0.557956 -19180,3111:383,113,-18,0,0,0.570032 -19181,3111:384,114,-18,0,0,0.565318 -19182,3115:382,152,-18,0,0,0.591641 -19183,3115:383,153,-18,0,0,0.588734 -19184,3115:384,154,-18,0,0,0.594245 -19185,3115:485,155,-18,0,0,0.588336 -19186,3115:486,156,-18,0,0,0.568546 -19187,3115:487,157,-18,0,0,0.574509 -19188,3115:488,158,-18,0,0,0.571694 -19189,3115:489,159,-18,0,0,0.560565 -19190,3116:380,160,-18,0,0,0.558438 -19191,3116:381,161,-18,0,0,0.568848 -19192,3116:382,162,-18,0,0,0.564661 -19193,3116:383,163,-18,0,0,0.561729 -19194,3116:384,164,-18,0,0,0.566277 -19195,3116:485,165,-18,0,0,0.558007 -19196,3116:486,166,-18,0,0,0.552451 -19197,3116:487,167,-18,0,0,0.551562 -19198,3116:488,168,-18,0,0,0.54996 -19199,3116:489,169,-18,0,0,0.556918 -19200,3117:380,170,-18,0,0,0.54851 -19201,3117:381,171,-18,0,0,0.543238 -19202,3117:382,172,-18,0,0,0.543111 -19203,3117:383,173,-18,0,0,0.542907 -19204,3117:384,174,-18,0,0,0.535708 -19205,3117:485,175,-18,0,0,0.534737 -19206,3117:486,176,-18,0,0,0.543391 -19207,3117:487,177,-18,0,0,0.541988 -19208,3117:488,178,-18,0,0,0.535606 -19209,3117:489,179,-18,0,0,0.542957 -19210,3118:380,180,-18,0,0,0.546474 -19211,5118:370,-180,-17,0,0,0.544283 -19212,5117:479,-179,-17,0,0,0.546882 -19213,5117:478,-178,-17,0,0,0.54968 -19214,5117:477,-177,-17,0,0,0.546499 -19215,5117:476,-176,-17,0,0,0.548154 -19216,5117:475,-175,-17,0,0,0.542422 -19217,5117:374,-174,-17,0,0,0.541912 -19218,5117:373,-173,-17,0,0,0.542192 -19219,5117:372,-172,-17,0,0,0.553492 -19220,5117:371,-171,-17,0,0,0.545761 -19221,5117:370,-170,-17,0,0,0.55085 -19222,5116:479,-169,-17,0,0,0.560869 -19223,5116:478,-168,-17,0,0,0.552248 -19224,5116:477,-167,-17,0,0,0.555396 -19225,5116:476,-166,-17,0,0,0.546677 -19226,5116:475,-165,-17,0,0,0.551333 -19227,5116:374,-164,-17,0,0,0.55897 -19228,5116:373,-163,-17,0,0,0.554838 -19229,5116:372,-162,-17,0,0,0.556866 -19230,5116:371,-161,-17,0,0,0.554736 -19231,5116:370,-160,-17,0,0,0.559932 -19232,5115:479,-159,-17,0,0,0.560691 -19233,5115:478,-158,-17,0,0,0.564838 -19234,5115:477,-157,-17,0,0,0.564054 -19235,5115:476,-156,-17,0,0,0.566403 -19236,5115:475,-155,-17,0,0,0.561957 -19237,5115:374,-154,-17,0,0,0.569353 -19238,5115:373,-153,-17,0,0,0.574359 -19239,5115:372,-152,-17,0,0,0.579449 -19240,5115:371,-151,-17,0,0,0.588012 -19241,5115:370,-150,-17,0,0,0.58035 -19242,5114:479,-149,-17,0,0,0.587016 -19243,5114:478,-148,-17,0,0,0.585247 -19244,5114:477,-147,-17,0,0,0.58395 -19245,5114:476,-146,-17,0,0,0.584298 -19246,5114:475,-145,-17,0,0,0.58597 -19247,5114:374,-144,-17,0,0,0.58345 -19248,5114:373,-143,-17,0,0,0.585023 -19249,5114:372,-142,-17,0,0,0.585247 -19250,5114:371,-141,-17,0,0,0.587838 -19251,5114:370,-140,-17,0,0,0.59107 -19252,5113:479,-139,-17,0,0,0.589331 -19253,5113:478,-138,-17,0,0,0.588385 -19254,5113:477,-137,-17,0,0,0.590325 -19255,5113:476,-136,-17,0,0,0.591244 -19256,5113:475,-135,-17,0,0,0.589927 -19257,5113:374,-134,-17,0,0,0.587962 -19258,5113:373,-133,-17,0,0,0.583375 -19259,5113:372,-132,-17,0,0,0.579474 -19260,5113:371,-131,-17,0,0,0.575062 -19261,5113:370,-130,-17,0,0,0.575213 -19262,5112:479,-129,-17,0,0,0.573479 -19263,5112:478,-128,-17,0,0,0.570008 -19264,5112:477,-127,-17,0,0,0.564938 -19265,5112:476,-126,-17,0,0,0.564408 -19266,5112:475,-125,-17,0,0,0.561527 -19267,5112:374,-124,-17,0,0,0.560768 -19268,5112:373,-123,-17,0,0,0.559071 -19269,5112:372,-122,-17,0,0,0.559122 -19270,5112:371,-121,-17,0,0,0.55674 -19271,5112:370,-120,-17,0,0,0.55306 -19272,5111:479,-119,-17,0,0,0.555167 -19273,5111:478,-118,-17,0,0,0.558007 -19274,5111:477,-117,-17,0,0,0.559704 -19275,5111:476,-116,-17,0,0,0.562563 -19276,5111:475,-115,-17,0,0,0.566277 -19277,5111:374,-114,-17,0,0,0.5636 -19278,5111:373,-113,-17,0,0,0.557906 -19279,5111:372,-112,-17,0,0,0.556689 -19280,5111:371,-111,-17,0,0,0.553822 -19281,5111:370,-110,-17,0,0,0.549935 -19282,5110:479,-109,-17,0,0,0.548816 -19283,5110:478,-108,-17,0,0,0.545863 -19284,5110:477,-107,-17,0,0,0.543187 -19285,5110:476,-106,-17,0,0,0.539233 -19286,5110:475,-105,-17,0,0,0.531361 -19287,5110:374,-104,-17,0,0,0.523423 -19288,5110:373,-103,-17,0,0,0.515318 -19289,5110:372,-102,-17,0,0,0.508567 -19290,5110:371,-101,-17,0,0,0.503302 -19291,5110:370,-100,-17,0,0,0.498987 -19292,5109:479,-99,-17,0,0,0.495314 -19293,5109:478,-98,-17,0,0,0.489408 -19294,5109:477,-97,-17,0,0,0.483735 -19295,5109:476,-96,-17,0,0,0.477631 -19296,5109:475,-95,-17,0,0,0.468053 -19297,5109:374,-94,-17,0,0,0.458703 -19298,5109:373,-93,-17,0,0,0.453936 -19299,5109:372,-92,-17,0,0,0.449204 -19300,5109:371,-91,-17,0,0,0.441641 -19301,5109:370,-90,-17,0,0,0.437591 -19302,5108:479,-89,-17,0,0,0.435367 -19303,5108:478,-88,-17,0,0,0.429643 -19304,5108:477,-87,-17,0,0,0.424062 -19305,5108:476,-86,-17,0,0,0.421405 -19306,5108:475,-85,-17,0,0,0.417177 -19307,5108:374,-84,-17,0,0,0.412239 -19308,5108:373,-83,-17,0,0,0.407543 -19309,5108:372,-82,-17,0,0,0.404916 -19310,5108:371,-81,-17,0,0,0.404346 -19311,5108:370,-80,-17,0,0,0.404594 -19312,5107:479,-79,-17,0,0,0.401627 -19313,5107:478,-78,-17,0,0,0.396994 -19314,5107:477,-77,-17,0,0,0.395077 -19315,5107:476,-76,-17,0,0,0.395298 -19316,5107:475,-75,-17,0,0,0.399826 -19317,5107:374,-74,-17,0,0,0.406799 -19318,5107:373,-73,-17,0,0,0.424966 -19319,5107:372,-72,-17,0,0,0.438881 -19320,5107:371,-71,-17,0,0,0.447349 -19321,5104:371,-41,-17,0,0,0.622944 -19322,5104:370,-40,-17,0,0,0.628118 -19323,5103:479,-39,-17,0,0,0.628502 -19324,5103:478,-38,-17,0,0,0.623209 -19325,5103:477,-37,-17,0,0,0.619462 -19326,5103:476,-36,-17,0,0,0.617037 -19327,5103:475,-35,-17,0,0,0.617328 -19328,5103:374,-34,-17,0,0,0.617596 -19329,5103:373,-33,-17,0,0,0.618468 -19330,5103:372,-32,-17,0,0,0.619293 -19331,5103:371,-31,-17,0,0,0.617838 -19332,5103:370,-30,-17,0,0,0.614972 -19333,5102:479,-29,-17,0,0,0.604704 -19334,5102:478,-28,-17,0,0,0.588435 -19335,5102:477,-27,-17,0,0,0.582726 -19336,5102:476,-26,-17,0,0,0.584224 -19337,5102:475,-25,-17,0,0,0.586667 -19338,5102:374,-24,-17,0,0,0.586792 -19339,5102:373,-23,-17,0,0,0.586867 -19340,5102:372,-22,-17,0,0,0.587365 -19341,5102:371,-21,-17,0,0,0.585695 -19342,5102:370,-20,-17,0,0,0.58325 -19343,5101:479,-19,-17,0,0,0.581426 -19344,5101:478,-18,-17,0,0,0.580301 -19345,5101:477,-17,-17,0,0,0.578197 -19346,5101:476,-16,-17,0,0,0.573881 -19347,5101:475,-15,-17,0,0,0.568345 -19348,5101:374,-14,-17,0,0,0.563044 -19349,5101:373,-13,-17,0,0,0.556157 -19350,5101:372,-12,-17,0,0,0.550265 -19351,5101:371,-11,-17,0,0,0.543875 -19352,5101:370,-10,-17,0,0,0.535989 -19353,5100:479,-9,-17,0,0,0.52934 -19354,5100:478,-8,-17,0,0,0.524012 -19355,5100:477,-7,-17,0,0,0.515986 -19356,5100:476,-6,-17,0,0,0.508515 -19357,5100:475,-5,-17,0,0,0.50207 -19358,5100:374,-4,-17,0,0,0.497266 -19359,5100:373,-3,-17,0,0,0.492104 -19360,5100:372,-2,-17,0,0,0.483248 -19361,5100:371,-1,-17,0,0,0.478836 -19362,3100:371,0,-17,0,0,0.475376 -19363,3100:371,1,-17,0,0,0.472148 -19364,3100:372,2,-17,0,0,0.467414 -19365,3100:373,3,-17,0,0,0.46386 -19366,3100:374,4,-17,0,0,0.462736 -19367,3100:475,5,-17,0,0,0.461817 -19368,3100:476,6,-17,0,0,0.460974 -19369,3100:477,7,-17,0,0,0.458856 -19370,3100:478,8,-17,0,0,0.458881 -19371,3100:479,9,-17,0,0,0.461459 -19372,3101:370,10,-17,0,0,0.460004 -19373,3101:371,11,-17,0,0,0.455414 -19374,3101:372,12,-17,0,0,0.451162 -19375,3101:373,13,-17,0,0,0.445267 -19376,3103:476,36,-17,0,0,0.639823 -19377,3103:477,37,-17,0,0,0.623498 -19378,3103:478,38,-17,0,0,0.630299 -19379,3103:479,39,-17,0,0,0.62545 -19380,3104:370,40,-17,0,0,0.64006 -19381,3104:371,41,-17,0,0,0.656364 -19382,3104:372,42,-17,0,0,0.67362 -19383,3104:373,43,-17,0,0,0.671402 -19384,3104:478,48,-17,0,0,0.619849 -19385,3104:479,49,-17,0,0,0.609753 -19386,3105:370,50,-17,0,0,0.600966 -19387,3105:371,51,-17,0,0,0.593923 -19388,3105:372,52,-17,0,0,0.590673 -19389,3105:373,53,-17,0,0,0.593155 -19390,3105:374,54,-17,0,0,0.58953 -19391,3105:475,55,-17,0,0,0.585771 -19392,3105:476,56,-17,0,0,0.587863 -19393,3105:477,57,-17,0,0,0.598647 -19394,3105:478,58,-17,0,0,0.595582 -19395,3105:479,59,-17,0,0,0.592733 -19396,3106:370,60,-17,0,0,0.589604 -19397,3106:371,61,-17,0,0,0.584972 -19398,3106:372,62,-17,0,0,0.578197 -19399,3106:373,63,-17,0,0,0.575313 -19400,3106:374,64,-17,0,0,0.569075 -19401,3106:475,65,-17,0,0,0.567942 -19402,3106:476,66,-17,0,0,0.567185 -19403,3106:477,67,-17,0,0,0.561779 -19404,3106:478,68,-17,0,0,0.560565 -19405,3106:479,69,-17,0,0,0.556715 -19406,3107:370,70,-17,0,0,0.550698 -19407,3107:371,71,-17,0,0,0.558843 -19408,3107:372,72,-17,0,0,0.552527 -19409,3107:374,74,-17,0,0,0.549655 -19410,3107:475,75,-17,0,0,0.54767 -19411,3107:476,76,-17,0,0,0.54181 -19412,3107:477,77,-17,0,0,0.541479 -19413,3107:478,78,-17,0,0,0.536551 -19414,3107:479,79,-17,0,0,0.538467 -19415,3108:370,80,-17,0,0,0.536654 -19416,3108:371,81,-17,0,0,0.534021 -19417,3108:372,82,-17,0,0,0.526805 -19418,3108:373,83,-17,0,0,0.537343 -19419,3108:374,84,-17,0,0,0.53021 -19420,3108:475,85,-17,0,0,0.528853 -19421,3108:476,86,-17,0,0,0.531029 -19422,3108:477,87,-17,0,0,0.532845 -19423,3108:478,88,-17,0,0,0.521987 -19424,3108:479,89,-17,0,0,0.535555 -19425,3109:370,90,-17,0,0,0.538416 -19426,3109:371,91,-17,0,0,0.515113 -19427,3109:372,92,-17,0,0,0.532154 -19428,3109:373,93,-17,0,0,0.519885 -19429,3109:374,94,-17,0,0,0.5298 -19430,3109:475,95,-17,0,0,0.527291 -19431,3109:476,96,-17,0,0,0.52209 -19432,3109:477,97,-17,0,0,0.528776 -19433,3109:478,98,-17,0,0,0.527547 -19434,3109:479,99,-17,0,0,0.509054 -19435,3110:370,100,-17,0,0,0.510749 -19436,3110:371,101,-17,0,0,0.522987 -19437,3110:372,102,-17,0,0,0.528213 -19438,3110:373,103,-17,0,0,0.523961 -19439,3110:374,104,-17,0,0,0.524243 -19440,3110:475,105,-17,0,0,0.534558 -19441,3110:476,106,-17,0,0,0.53535 -19442,3110:477,107,-17,0,0,0.52893 -19443,3110:478,108,-17,0,0,0.53108 -19444,3110:479,109,-17,0,0,0.540636 -19445,3111:370,110,-17,0,0,0.548103 -19446,3111:371,111,-17,0,0,0.56183 -19447,3111:372,112,-17,0,0,0.561501 -19448,3111:373,113,-17,0,0,0.573982 -19449,3111:374,114,-17,0,0,0.581376 -19450,3115:370,150,-17,0,0,0.624968 -19451,3115:371,151,-17,0,0,0.60136 -19452,3115:372,152,-17,0,0,0.610901 -19453,3115:373,153,-17,0,0,0.601408 -19454,3115:374,154,-17,0,0,0.597585 -19455,3115:475,155,-17,0,0,0.586394 -19456,3115:476,156,-17,0,0,0.5833 -19457,3115:477,157,-17,0,0,0.57368 -19458,3115:478,158,-17,0,0,0.580951 -19459,3115:479,159,-17,0,0,0.571291 -19460,3116:370,160,-17,0,0,0.568521 -19461,3116:371,161,-17,0,0,0.580801 -19462,3116:372,162,-17,0,0,0.576642 -19463,3116:373,163,-17,0,0,0.580225 -19464,3116:374,164,-17,0,0,0.5801 -19465,3116:475,165,-17,0,0,0.572876 -19466,3116:476,166,-17,0,0,0.545226 -19467,3116:477,167,-17,0,0,0.550799 -19468,3116:478,168,-17,0,0,0.562286 -19469,3116:479,169,-17,0,0,0.565368 -19470,3117:370,170,-17,0,0,0.559628 -19471,3117:371,171,-17,0,0,0.551383 -19472,3117:372,172,-17,0,0,0.556309 -19473,3117:373,173,-17,0,0,0.552806 -19474,3117:374,174,-17,0,0,0.55024 -19475,3117:475,175,-17,0,0,0.544895 -19476,3117:476,176,-17,0,0,0.551231 -19477,3117:477,177,-17,0,0,0.543824 -19478,3117:478,178,-17,0,0,0.539616 -19479,3117:479,179,-17,0,0,0.554736 -19480,3118:370,180,-17,0,0,0.544283 -19481,5118:360,-180,-16,0,0,0.559046 -19482,5117:469,-179,-16,0,0,0.556918 -19483,5117:468,-178,-16,0,0,0.559476 -19484,5117:467,-177,-16,0,0,0.565519 -19485,5117:466,-176,-16,0,0,0.563347 -19486,5117:465,-175,-16,0,0,0.563802 -19487,5117:364,-174,-16,0,0,0.555954 -19488,5117:363,-173,-16,0,0,0.563575 -19489,5117:362,-172,-16,0,0,0.562867 -19490,5117:361,-171,-16,0,0,0.558083 -19491,5117:360,-170,-16,0,0,0.569932 -19492,5116:469,-169,-16,0,0,0.566983 -19493,5116:468,-168,-16,0,0,0.56615 -19494,5116:467,-167,-16,0,0,0.564282 -19495,5116:466,-166,-16,0,0,0.569227 -19496,5116:465,-165,-16,0,0,0.565116 -19497,5116:364,-164,-16,0,0,0.568647 -19498,5116:363,-163,-16,0,0,0.572474 -19499,5116:362,-162,-16,0,0,0.571392 -19500,5116:361,-161,-16,0,0,0.573504 -19501,5116:360,-160,-16,0,0,0.579249 -19502,5115:469,-159,-16,0,0,0.582101 -19503,5115:468,-158,-16,0,0,0.5829 -19504,5115:467,-157,-16,0,0,0.586493 -19505,5115:466,-156,-16,0,0,0.589405 -19506,5115:465,-155,-16,0,0,0.593824 -19507,5115:364,-154,-16,0,0,0.595384 -19508,5115:363,-153,-16,0,0,0.600103 -19509,5115:362,-152,-16,0,0,0.60163 -19510,5115:361,-151,-16,0,0,0.603131 -19511,5115:360,-150,-16,0,0,0.605319 -19512,5114:469,-149,-16,0,0,0.605171 -19513,5114:468,-148,-16,0,0,0.607035 -19514,5114:467,-147,-16,0,0,0.609654 -19515,5114:466,-146,-16,0,0,0.609801 -19516,5114:465,-145,-16,0,0,0.610144 -19517,5114:364,-144,-16,0,0,0.609067 -19518,5114:363,-143,-16,0,0,0.60804 -19519,5114:362,-142,-16,0,0,0.608897 -19520,5114:361,-141,-16,0,0,0.609581 -19521,5114:360,-140,-16,0,0,0.609703 -19522,5113:469,-139,-16,0,0,0.609215 -19523,5113:468,-138,-16,0,0,0.608138 -19524,5113:467,-137,-16,0,0,0.606398 -19525,5113:466,-136,-16,0,0,0.605932 -19526,5113:465,-135,-16,0,0,0.604754 -19527,5113:364,-134,-16,0,0,0.603205 -19528,5113:363,-133,-16,0,0,0.600866 -19529,5113:362,-132,-16,0,0,0.596843 -19530,5113:361,-131,-16,0,0,0.594963 -19531,5113:360,-130,-16,0,0,0.59184 -19532,5112:469,-129,-16,0,0,0.58856 -19533,5112:468,-128,-16,0,0,0.586743 -19534,5112:467,-127,-16,0,0,0.587539 -19535,5112:466,-126,-16,0,0,0.586543 -19536,5112:465,-125,-16,0,0,0.583125 -19537,5112:364,-124,-16,0,0,0.585421 -19538,5112:363,-123,-16,0,0,0.584623 -19539,5112:362,-122,-16,0,0,0.585197 -19540,5112:361,-121,-16,0,0,0.5833 -19541,5112:360,-120,-16,0,0,0.580476 -19542,5111:469,-119,-16,0,0,0.581926 -19543,5111:468,-118,-16,0,0,0.582426 -19544,5111:467,-117,-16,0,0,0.583326 -19545,5111:466,-116,-16,0,0,0.582376 -19546,5111:465,-115,-16,0,0,0.578874 -19547,5111:364,-114,-16,0,0,0.575589 -19548,5111:363,-113,-16,0,0,0.572499 -19549,5111:362,-112,-16,0,0,0.566781 -19550,5111:361,-111,-16,0,0,0.562867 -19551,5111:360,-110,-16,0,0,0.559603 -19552,5110:469,-109,-16,0,0,0.555421 -19553,5110:468,-108,-16,0,0,0.550672 -19554,5110:467,-107,-16,0,0,0.546398 -19555,5110:466,-106,-16,0,0,0.540636 -19556,5110:465,-105,-16,0,0,0.534737 -19557,5110:364,-104,-16,0,0,0.52724 -19558,5110:363,-103,-16,0,0,0.519038 -19559,5110:362,-102,-16,0,0,0.513522 -19560,5110:361,-101,-16,0,0,0.508079 -19561,5110:360,-100,-16,0,0,0.503277 -19562,5109:469,-99,-16,0,0,0.49873 -19563,5109:468,-98,-16,0,0,0.494313 -19564,5109:467,-97,-16,0,0,0.487354 -19565,5109:466,-96,-16,0,0,0.476939 -19566,5109:465,-95,-16,0,0,0.470433 -19567,5109:364,-94,-16,0,0,0.466186 -19568,5109:363,-93,-16,0,0,0.459392 -19569,5109:362,-92,-16,0,0,0.451111 -19570,5109:361,-91,-16,0,0,0.444962 -19571,5109:360,-90,-16,0,0,0.437414 -19572,5108:469,-89,-16,0,0,0.432465 -19573,5108:468,-88,-16,0,0,0.42914 -19574,5108:467,-87,-16,0,0,0.424715 -19575,5108:466,-86,-16,0,0,0.418577 -19576,5108:465,-85,-16,0,0,0.410871 -19577,5108:364,-84,-16,0,0,0.40556 -19578,5108:363,-83,-16,0,0,0.403554 -19579,5108:362,-82,-16,0,0,0.400245 -19580,5108:361,-81,-16,0,0,0.400566 -19581,5108:360,-80,-16,0,0,0.398471 -19582,5107:469,-79,-16,0,0,0.397117 -19583,5107:468,-78,-16,0,0,0.397412 -19584,5107:467,-77,-16,0,0,0.40106 -19585,5107:466,-76,-16,0,0,0.403209 -19586,5107:465,-75,-16,0,0,0.410423 -19587,5107:364,-74,-16,0,0,0.42459 -19588,5107:363,-73,-16,0,0,0.437085 -19589,5107:362,-72,-16,0,0,0.456357 -19590,5107:361,-71,-16,0,0,0.446536 -19591,5104:360,-40,-16,0,0,0.636002 -19592,5103:469,-39,-16,0,0,0.632594 -19593,5103:468,-38,-16,0,0,0.629964 -19594,5103:467,-37,-16,0,0,0.623981 -19595,5103:466,-36,-16,0,0,0.623932 -19596,5103:465,-35,-16,0,0,0.626797 -19597,5103:364,-34,-16,0,0,0.627086 -19598,5103:363,-33,-16,0,0,0.625017 -19599,5103:362,-32,-16,0,0,0.623836 -19600,5103:361,-31,-16,0,0,0.620624 -19601,5103:360,-30,-16,0,0,0.615239 -19602,5102:469,-29,-16,0,0,0.609336 -19603,5102:468,-28,-16,0,0,0.595062 -19604,5102:467,-27,-16,0,0,0.583924 -19605,5102:466,-26,-16,0,0,0.583125 -19606,5102:465,-25,-16,0,0,0.584748 -19607,5102:364,-24,-16,0,0,0.585845 -19608,5102:363,-23,-16,0,0,0.585895 -19609,5102:362,-22,-16,0,0,0.584673 -19610,5102:361,-21,-16,0,0,0.582976 -19611,5102:360,-20,-16,0,0,0.581551 -19612,5101:469,-19,-16,0,0,0.578422 -19613,5101:468,-18,-16,0,0,0.572172 -19614,5101:467,-17,-16,0,0,0.567437 -19615,5101:466,-16,-16,0,0,0.562842 -19616,5101:465,-15,-16,0,0,0.558134 -19617,5101:364,-14,-16,0,0,0.553239 -19618,5101:363,-13,-16,0,0,0.546754 -19619,5101:362,-12,-16,0,0,0.538493 -19620,5101:361,-11,-16,0,0,0.529468 -19621,5101:360,-10,-16,0,0,0.523755 -19622,5100:469,-9,-16,0,0,0.517628 -19623,5100:468,-8,-16,0,0,0.512161 -19624,5100:467,-7,-16,0,0,0.505999 -19625,5100:466,-6,-16,0,0,0.499295 -19626,5100:465,-5,-16,0,0,0.491976 -19627,5100:364,-4,-16,0,0,0.486609 -19628,5100:363,-3,-16,0,0,0.484736 -19629,5100:362,-2,-16,0,0,0.480144 -19630,5100:361,-1,-16,0,0,0.477119 -19631,3100:361,0,-16,0,0,0.475581 -19632,3100:361,1,-16,0,0,0.473557 -19633,3100:362,2,-16,0,0,0.470101 -19634,3100:363,3,-16,0,0,0.467746 -19635,3100:364,4,-16,0,0,0.466058 -19636,3100:465,5,-16,0,0,0.465369 -19637,3100:466,6,-16,0,0,0.464831 -19638,3100:467,7,-16,0,0,0.464218 -19639,3100:468,8,-16,0,0,0.464269 -19640,3100:469,9,-16,0,0,0.463732 -19641,3101:360,10,-16,0,0,0.46054 -19642,3101:361,11,-16,0,0,0.461332 -19643,3101:362,12,-16,0,0,0.453172 -19644,3101:363,13,-16,0,0,0.403505 -19645,3103:465,35,-16,0,0,0.644686 -19646,3103:466,36,-16,0,0,0.646285 -19647,3103:467,37,-16,0,0,0.644168 -19648,3103:468,38,-16,0,0,0.627086 -19649,3103:469,39,-16,0,0,0.643956 -19650,3104:360,40,-16,0,0,0.655112 -19651,3104:361,41,-16,0,0,0.66156 -19652,3104:362,42,-16,0,0,0.679152 -19653,3104:363,43,-16,0,0,0.685521 -19654,3104:469,49,-16,0,0,0.619656 -19655,3105:360,50,-16,0,0,0.608481 -19656,3105:361,51,-16,0,0,0.606839 -19657,3105:362,52,-16,0,0,0.603476 -19658,3105:363,53,-16,0,0,0.601187 -19659,3105:364,54,-16,0,0,0.603795 -19660,3105:465,55,-16,0,0,0.601729 -19661,3105:466,56,-16,0,0,0.603353 -19662,3105:467,57,-16,0,0,0.603107 -19663,3105:468,58,-16,0,0,0.599017 -19664,3105:469,59,-16,0,0,0.593923 -19665,3106:360,60,-16,0,0,0.593576 -19666,3106:361,61,-16,0,0,0.591369 -19667,3106:362,62,-16,0,0,0.582476 -19668,3106:363,63,-16,0,0,0.5835 -19669,3106:364,64,-16,0,0,0.577345 -19670,3106:465,65,-16,0,0,0.571794 -19671,3106:466,66,-16,0,0,0.575162 -19672,3106:467,67,-16,0,0,0.576116 -19673,3106:468,68,-16,0,0,0.572273 -19674,3106:469,69,-16,0,0,0.567387 -19675,3107:360,70,-16,0,0,0.568219 -19676,3107:361,71,-16,0,0,0.566227 -19677,3107:362,72,-16,0,0,0.558615 -19678,3107:364,74,-16,0,0,0.557652 -19679,3107:465,75,-16,0,0,0.555497 -19680,3107:466,76,-16,0,0,0.553162 -19681,3107:467,77,-16,0,0,0.55235 -19682,3107:468,78,-16,0,0,0.552171 -19683,3107:469,79,-16,0,0,0.54464 -19684,3108:360,80,-16,0,0,0.556411 -19685,3108:361,81,-16,0,0,0.557069 -19686,3108:362,82,-16,0,0,0.552806 -19687,3108:363,83,-16,0,0,0.53742 -19688,3108:364,84,-16,0,0,0.553975 -19689,3108:465,85,-16,0,0,0.552832 -19690,3108:466,86,-16,0,0,0.540892 -19691,3108:467,87,-16,0,0,0.550977 -19692,3108:468,88,-16,0,0,0.545532 -19693,3108:469,89,-16,0,0,0.547314 -19694,3109:360,90,-16,0,0,0.55334 -19695,3109:361,91,-16,0,0,0.542957 -19696,3109:362,92,-16,0,0,0.551257 -19697,3109:363,93,-16,0,0,0.53982 -19698,3109:364,94,-16,0,0,0.540764 -19699,3109:465,95,-16,0,0,0.540815 -19700,3109:466,96,-16,0,0,0.525856 -19701,3109:467,97,-16,0,0,0.541325 -19702,3109:468,98,-16,0,0,0.527342 -19703,3109:469,99,-16,0,0,0.523551 -19704,3110:360,100,-16,0,0,0.521654 -19705,3110:361,101,-16,0,0,0.53673 -19706,3110:362,102,-16,0,0,0.532333 -19707,3110:363,103,-16,0,0,0.543289 -19708,3110:364,104,-16,0,0,0.55118 -19709,3110:465,105,-16,0,0,0.541121 -19710,3110:466,106,-16,0,0,0.543773 -19711,3110:467,107,-16,0,0,0.545761 -19712,3110:468,108,-16,0,0,0.554406 -19713,3110:469,109,-16,0,0,0.560362 -19714,3111:360,110,-16,0,0,0.566554 -19715,3111:361,111,-16,0,0,0.572976 -19716,3111:362,112,-16,0,0,0.571266 -19717,3111:363,113,-16,0,0,0.582551 -19718,3111:364,114,-16,0,0,0.595954 -19719,3111:465,115,-16,0,0,0.603083 -19720,3111:466,116,-16,0,0,0.611657 -19721,3111:467,117,-16,0,0,0.6314 -19722,3111:468,118,-16,0,0,0.65611 -19723,3115:360,150,-16,0,0,0.60706 -19724,3115:361,151,-16,0,0,0.611853 -19725,3115:362,152,-16,0,0,0.60603 -19726,3115:363,153,-16,0,0,0.605686 -19727,3115:364,154,-16,0,0,0.588361 -19728,3115:465,155,-16,0,0,0.584349 -19729,3115:466,156,-16,0,0,0.583575 -19730,3115:467,157,-16,0,0,0.591766 -21245,5108:102,-82,-10,0,0,0.47594 -19731,3115:468,158,-16,0,0,0.591741 -19732,3115:469,159,-16,0,0,0.582126 -19733,3116:360,160,-16,0,0,0.581676 -19734,3116:361,161,-16,0,0,0.595235 -19735,3116:362,162,-16,0,0,0.592957 -19736,3116:363,163,-16,0,0,0.591194 -19737,3116:364,164,-16,0,0,0.590052 -19738,3116:465,165,-16,0,0,0.584648 -19739,3116:466,166,-16,0,0,0.577846 -19740,3116:467,167,-16,0,0,0.580401 -19741,3116:468,168,-16,0,0,0.574509 -19742,3116:469,169,-16,0,0,0.569201 -19743,3117:360,170,-16,0,0,0.565166 -19744,3117:361,171,-16,0,0,0.566251 -19745,3117:362,172,-16,0,0,0.561527 -19746,3117:363,173,-16,0,0,0.555345 -19747,3117:364,174,-16,0,0,0.56461 -19748,3117:465,175,-16,0,0,0.566428 -19749,3117:466,176,-16,0,0,0.557146 -19750,3117:467,177,-16,0,0,0.566504 -19751,3117:468,178,-16,0,0,0.564257 -19752,3117:469,179,-16,0,0,0.564054 -19753,3118:360,180,-16,0,0,0.559046 -19754,5118:350,-180,-15,0,0,0.576467 -19755,5117:459,-179,-15,0,0,0.576668 -19756,5117:458,-178,-15,0,0,0.574987 -19757,5117:457,-177,-15,0,0,0.576266 -19758,5117:456,-176,-15,0,0,0.584573 -19759,5117:455,-175,-15,0,0,0.586493 -19760,5117:354,-174,-15,0,0,0.582976 -19761,5117:353,-173,-15,0,0,0.585072 -19762,5117:352,-172,-15,0,0,0.585646 -19763,5117:351,-171,-15,0,0,0.585571 -19764,5117:350,-170,-15,0,0,0.586419 -19765,5116:459,-169,-15,0,0,0.589629 -19766,5116:458,-168,-15,0,0,0.587738 -19767,5116:457,-167,-15,0,0,0.589927 -19768,5116:456,-166,-15,0,0,0.590474 -19769,5116:455,-165,-15,0,0,0.594146 -19770,5116:354,-164,-15,0,0,0.598845 -19771,5116:353,-163,-15,0,0,0.596151 -19772,5116:352,-162,-15,0,0,0.600275 -19773,5116:351,-161,-15,0,0,0.602861 -19774,5116:350,-160,-15,0,0,0.605564 -19775,5115:459,-159,-15,0,0,0.610119 -19776,5115:458,-158,-15,0,0,0.616843 -19777,5115:457,-157,-15,0,0,0.616211 -19778,5115:456,-156,-15,0,0,0.618371 -19779,5115:455,-155,-15,0,0,0.621204 -19780,5115:354,-154,-15,0,0,0.62234 -19781,5115:353,-153,-15,0,0,0.624944 -19782,5115:352,-152,-15,0,0,0.628669 -19783,5115:351,-151,-15,0,0,0.63331 -19784,5115:350,-150,-15,0,0,0.633168 -19785,5114:459,-149,-15,0,0,0.631113 -19786,5114:458,-148,-15,0,0,0.632475 -19787,5114:457,-147,-15,0,0,0.632905 -19788,5114:456,-146,-15,0,0,0.63226 -19789,5114:455,-145,-15,0,0,0.629677 -19790,5114:354,-144,-15,0,0,0.628838 -19791,5114:353,-143,-15,0,0,0.629581 -19792,5114:352,-142,-15,0,0,0.627517 -19793,5114:351,-141,-15,0,0,0.628765 -19794,5114:350,-140,-15,0,0,0.62831 -19795,5113:459,-139,-15,0,0,0.627157 -19796,5113:458,-138,-15,0,0,0.625666 -19797,5113:457,-137,-15,0,0,0.626244 -19798,5113:456,-136,-15,0,0,0.626629 -19799,5113:455,-135,-15,0,0,0.625089 -19800,5113:354,-134,-15,0,0,0.623523 -19801,5113:353,-133,-15,0,0,0.623064 -19802,5113:352,-132,-15,0,0,0.622413 -19803,5113:351,-131,-15,0,0,0.61951 -19804,5113:350,-130,-15,0,0,0.61609 -19805,5112:459,-129,-15,0,0,0.614387 -19806,5112:458,-128,-15,0,0,0.615117 -19807,5112:457,-127,-15,0,0,0.610412 -19808,5112:456,-126,-15,0,0,0.612658 -19809,5112:455,-125,-15,0,0,0.609043 -19810,5112:354,-124,-15,0,0,0.610901 -19811,5112:353,-123,-15,0,0,0.610241 -19812,5112:352,-122,-15,0,0,0.60941 -19813,5112:351,-121,-15,0,0,0.610876 -19814,5112:350,-120,-15,0,0,0.609361 -19815,5111:459,-119,-15,0,0,0.605883 -19816,5111:458,-118,-15,0,0,0.602369 -19817,5111:457,-117,-15,0,0,0.59919 -19818,5111:456,-116,-15,0,0,0.594369 -19819,5111:455,-115,-15,0,0,0.58953 -19820,5111:354,-114,-15,0,0,0.585347 -19821,5111:353,-113,-15,0,0,0.579123 -19822,5111:352,-112,-15,0,0,0.572147 -19823,5111:351,-111,-15,0,0,0.566983 -19824,5111:350,-110,-15,0,0,0.559958 -19825,5110:459,-109,-15,0,0,0.554609 -19826,5110:458,-108,-15,0,0,0.547645 -19827,5110:457,-107,-15,0,0,0.541121 -19828,5110:456,-106,-15,0,0,0.531233 -19829,5110:455,-105,-15,0,0,0.520962 -19830,5110:354,-104,-15,0,0,0.515036 -19831,5110:353,-103,-15,0,0,0.50908 -19832,5110:352,-102,-15,0,0,0.502172 -19833,5110:351,-101,-15,0,0,0.499193 -19834,5110:350,-100,-15,0,0,0.49444 -19835,5109:459,-99,-15,0,0,0.490075 -19836,5109:458,-98,-15,0,0,0.488149 -19837,5109:457,-97,-15,0,0,0.482734 -19838,5109:456,-96,-15,0,0,0.471355 -19839,5109:455,-95,-15,0,0,0.461689 -19840,5109:354,-94,-15,0,0,0.458601 -19841,5109:353,-93,-15,0,0,0.453046 -19842,5109:352,-92,-15,0,0,0.439843 -19843,5109:351,-91,-15,0,0,0.431507 -19844,5109:350,-90,-15,0,0,0.436176 -19845,5108:459,-89,-15,0,0,0.436757 -19846,5108:458,-88,-15,0,0,0.42675 -19847,5108:457,-87,-15,0,0,0.419928 -19848,5108:456,-86,-15,0,0,0.414756 -19849,5108:455,-85,-15,0,0,0.404965 -19850,5108:354,-84,-15,0,0,0.40143 -19851,5108:353,-83,-15,0,0,0.399802 -19852,5108:352,-82,-15,0,0,0.400146 -19853,5108:351,-81,-15,0,0,0.399185 -19854,5108:350,-80,-15,0,0,0.399407 -19855,5107:459,-79,-15,0,0,0.401479 -19856,5107:458,-78,-15,0,0,0.404866 -19857,5107:457,-77,-15,0,0,0.405931 -19858,5107:456,-76,-15,0,0,0.418127 -19859,5107:455,-75,-15,0,0,0.440324 -19860,5107:354,-74,-15,0,0,0.453631 -19861,5107:353,-73,-15,0,0,0.469845 -19862,5107:352,-72,-15,0,0,0.47407 -19863,5107:351,-71,-15,0,0,0.459494 -19864,5103:459,-39,-15,0,0,0.622823 -19865,5103:458,-38,-15,0,0,0.621906 -19866,5103:457,-37,-15,0,0,0.624197 -19867,5103:456,-36,-15,0,0,0.624704 -19868,5103:455,-35,-15,0,0,0.625281 -19869,5103:354,-34,-15,0,0,0.623209 -19870,5103:353,-33,-15,0,0,0.621204 -19871,5103:352,-32,-15,0,0,0.618638 -19872,5103:351,-31,-15,0,0,0.614533 -19873,5103:350,-30,-15,0,0,0.610364 -19874,5102:459,-29,-15,0,0,0.606496 -19875,5102:458,-28,-15,0,0,0.599215 -19876,5102:457,-27,-15,0,0,0.586867 -19877,5102:456,-26,-15,0,0,0.580175 -19878,5102:455,-25,-15,0,0,0.579074 -19879,5102:354,-24,-15,0,0,0.5798 -19880,5102:353,-23,-15,0,0,0.577545 -19881,5102:352,-22,-15,0,0,0.573605 -19882,5102:351,-21,-15,0,0,0.570335 -19883,5102:350,-20,-15,0,0,0.566907 -19884,5101:459,-19,-15,0,0,0.565393 -19885,5101:458,-18,-15,0,0,0.561223 -19886,5101:457,-17,-15,0,0,0.556309 -19887,5101:456,-16,-15,0,0,0.550037 -19888,5101:455,-15,-15,0,0,0.542754 -19889,5101:354,-14,-15,0,0,0.536756 -19890,5101:353,-13,-15,0,0,0.530645 -19891,5101:352,-12,-15,0,0,0.524217 -19892,5101:351,-11,-15,0,0,0.521372 -19893,5101:350,-10,-15,0,0,0.515062 -19894,5100:459,-9,-15,0,0,0.509645 -19895,5100:458,-8,-15,0,0,0.502994 -19896,5100:457,-7,-15,0,0,0.498139 -19897,5100:456,-6,-15,0,0,0.493362 -19898,5100:455,-5,-15,0,0,0.488612 -19899,5100:354,-4,-15,0,0,0.484505 -19900,5100:353,-3,-15,0,0,0.482093 -19901,5100:352,-2,-15,0,0,0.47899 -19902,5100:351,-1,-15,0,0,0.477324 -19903,3100:351,0,-15,0,0,0.476324 -19904,3100:351,1,-15,0,0,0.473787 -19905,3100:352,2,-15,0,0,0.471815 -19906,3100:353,3,-15,0,0,0.470971 -19907,3100:354,4,-15,0,0,0.470101 -19908,3100:455,5,-15,0,0,0.468897 -19909,3100:456,6,-15,0,0,0.469512 -19910,3100:457,7,-15,0,0,0.468284 -19911,3100:458,8,-15,0,0,0.469153 -19912,3100:459,9,-15,0,0,0.474044 -19913,3101:350,10,-15,0,0,0.480093 -19914,3101:351,11,-15,0,0,0.478657 -19915,3101:352,12,-15,0,0,0.43706 -19916,3103:456,36,-15,0,0,0.659694 -19917,3103:457,37,-15,0,0,0.644098 -19918,3103:458,38,-15,0,0,0.654973 -19919,3103:459,39,-15,0,0,0.647646 -19920,3104:350,40,-15,0,0,0.659209 -19921,3104:351,41,-15,0,0,0.665688 -19922,3104:352,42,-15,0,0,0.676775 -19923,3104:353,43,-15,0,0,0.68665 -19924,3104:354,44,-15,0,0,0.698029 -19925,3104:459,49,-15,0,0,0.632571 -19926,3105:350,50,-15,0,0,0.619268 -19927,3105:351,51,-15,0,0,0.613998 -19928,3105:352,52,-15,0,0,0.613535 -19929,3105:353,53,-15,0,0,0.612341 -19930,3105:354,54,-15,0,0,0.610852 -19931,3105:455,55,-15,0,0,0.61007 -19932,3105:456,56,-15,0,0,0.609508 -19933,3105:457,57,-15,0,0,0.608309 -19934,3105:458,58,-15,0,0,0.604311 -19935,3105:459,59,-15,0,0,0.601532 -19936,3106:350,60,-15,0,0,0.597511 -19937,3106:351,61,-15,0,0,0.599659 -19938,3106:352,62,-15,0,0,0.594444 -19939,3106:353,63,-15,0,0,0.591666 -19940,3106:354,64,-15,0,0,0.589082 -19941,3106:455,65,-15,0,0,0.585745 -19942,3106:456,66,-15,0,0,0.585446 -19943,3106:457,67,-15,0,0,0.584773 -19944,3106:458,68,-15,0,0,0.582726 -19945,3106:459,69,-15,0,0,0.575589 -19946,3107:350,70,-15,0,0,0.570259 -19947,3107:351,71,-15,0,0,0.579324 -19948,3107:352,72,-15,0,0,0.580626 -19949,3107:354,74,-15,0,0,0.573831 -19950,3107:455,75,-15,0,0,0.578072 -19951,3107:456,76,-15,0,0,0.572876 -19952,3107:457,77,-15,0,0,0.576392 -19953,3107:458,78,-15,0,0,0.574735 -19954,3107:459,79,-15,0,0,0.562361 -19955,3108:350,80,-15,0,0,0.574735 -19956,3108:351,81,-15,0,0,0.564813 -19957,3108:352,82,-15,0,0,0.562968 -19958,3108:353,83,-15,0,0,0.573454 -19959,3108:354,84,-15,0,0,0.577144 -19960,3108:455,85,-15,0,0,0.570864 -19961,3108:456,86,-15,0,0,0.565039 -19962,3108:457,87,-15,0,0,0.56716 -19963,3108:458,88,-15,0,0,0.566907 -19964,3108:459,89,-15,0,0,0.570838 -19965,3109:350,90,-15,0,0,0.560667 -19966,3109:351,91,-15,0,0,0.565949 -19967,3109:352,92,-15,0,0,0.561729 -19968,3109:353,93,-15,0,0,0.574434 -19969,3109:354,94,-15,0,0,0.549629 -19970,3109:455,95,-15,0,0,0.558058 -19971,3109:456,96,-15,0,0,0.550646 -19972,3109:457,97,-15,0,0,0.559071 -19973,3109:458,98,-15,0,0,0.553949 -19974,3109:459,99,-15,0,0,0.553898 -19975,3110:350,100,-15,0,0,0.557019 -19976,3110:351,101,-15,0,0,0.542575 -19977,3110:352,102,-15,0,0,0.539412 -19978,3110:353,103,-15,0,0,0.547568 -19979,3110:354,104,-15,0,0,0.561805 -19980,3110:455,105,-15,0,0,0.570335 -19981,3110:456,106,-15,0,0,0.561704 -19982,3110:457,107,-15,0,0,0.563246 -19983,3110:458,108,-15,0,0,0.566201 -19984,3110:459,109,-15,0,0,0.572322 -19985,3111:350,110,-15,0,0,0.589878 -19986,3111:351,111,-15,0,0,0.596176 -19987,3111:352,112,-15,0,0,0.611389 -19988,3111:353,113,-15,0,0,0.614752 -19989,3111:354,114,-15,0,0,0.612268 -19990,3111:455,115,-15,0,0,0.622292 -19991,3111:456,116,-15,0,0,0.62819 -19992,3111:457,117,-15,0,0,0.637381 -19993,3111:458,118,-15,0,0,0.645933 -19994,3111:459,119,-15,0,0,0.649543 -19995,3112:350,120,-15,0,0,0.650594 -19996,3112:351,121,-15,0,0,0.653508 -19997,3114:457,147,-15,0,0,0.64032 -19998,3114:458,148,-15,0,0,0.622847 -19999,3114:459,149,-15,0,0,0.623354 -20000,3115:350,150,-15,0,0,0.618032 -20001,3115:351,151,-15,0,0,0.60264 -20002,3115:352,152,-15,0,0,0.606912 -20003,3115:353,153,-15,0,0,0.611951 -20004,3115:354,154,-15,0,0,0.608945 -20005,3115:455,155,-15,0,0,0.605073 -20006,3115:456,156,-15,0,0,0.604581 -20007,3115:457,157,-15,0,0,0.606472 -20008,3115:458,158,-15,0,0,0.602295 -20009,3115:459,159,-15,0,0,0.604262 -20010,3116:350,160,-15,0,0,0.603426 -20011,3116:351,161,-15,0,0,0.598055 -20012,3116:352,162,-15,0,0,0.601039 -20013,3116:353,163,-15,0,0,0.594518 -20014,3116:354,164,-15,0,0,0.591046 -20015,3116:455,165,-15,0,0,0.589579 -20016,3116:456,166,-15,0,0,0.589455 -20017,3116:457,167,-15,0,0,0.591219 -20018,3116:458,168,-15,0,0,0.584673 -20019,3116:459,169,-15,0,0,0.586768 -20020,3117:350,170,-15,0,0,0.584823 -20021,3117:351,171,-15,0,0,0.591666 -20022,3117:352,172,-15,0,0,0.588211 -20023,3117:353,173,-15,0,0,0.58045 -20024,3117:354,174,-15,0,0,0.582776 -20025,3117:455,175,-15,0,0,0.587291 -20026,3117:456,176,-15,0,0,0.588958 -20027,3117:457,177,-15,0,0,0.590251 -20028,3117:458,178,-15,0,0,0.585895 -20029,3117:459,179,-15,0,0,0.584149 -20030,3118:350,180,-15,0,0,0.576467 -20031,5118:140,-180,-14,0,0,0.594493 -20032,5117:249,-179,-14,0,0,0.593502 -20033,5117:248,-178,-14,0,0,0.595533 -20034,5117:247,-177,-14,0,0,0.601803 -20035,5117:246,-176,-14,0,0,0.598993 -20036,5117:245,-175,-14,0,0,0.602812 -20037,5117:144,-174,-14,0,0,0.600645 -20038,5117:143,-173,-14,0,0,0.601729 -20039,5117:142,-172,-14,0,0,0.605736 -20040,5117:141,-171,-14,0,0,0.609165 -20041,5117:140,-170,-14,0,0,0.612731 -20042,5116:249,-169,-14,0,0,0.607966 -20043,5116:248,-168,-14,0,0,0.607942 -20044,5116:247,-167,-14,0,0,0.611414 -20045,5116:246,-166,-14,0,0,0.616527 -20046,5116:245,-165,-14,0,0,0.616017 -20047,5116:144,-164,-14,0,0,0.622413 -20048,5116:143,-163,-14,0,0,0.620914 -20049,5116:142,-162,-14,0,0,0.621591 -20050,5116:141,-161,-14,0,0,0.622654 -20051,5116:140,-160,-14,0,0,0.623981 -20052,5115:249,-159,-14,0,0,0.629293 -20053,5115:248,-158,-14,0,0,0.633549 -20054,5115:247,-157,-14,0,0,0.632594 -20055,5115:246,-156,-14,0,0,0.635098 -20056,5115:245,-155,-14,0,0,0.640652 -20057,5115:144,-154,-14,0,0,0.64332 -20058,5115:143,-153,-14,0,0,0.646919 -20059,5115:142,-152,-14,0,0,0.64713 -20060,5115:141,-151,-14,0,0,0.645274 -20061,5115:140,-150,-14,0,0,0.646708 -20062,5114:249,-149,-14,0,0,0.642447 -20063,5114:248,-148,-14,0,0,0.647505 -20064,5114:247,-147,-14,0,0,0.648654 -20065,5114:246,-146,-14,0,0,0.647575 -20066,5114:245,-145,-14,0,0,0.645228 -20067,5114:144,-144,-14,0,0,0.644874 -20068,5114:143,-143,-14,0,0,0.643202 -20069,5114:142,-142,-14,0,0,0.639776 -20070,5114:141,-141,-14,0,0,0.640604 -20071,5114:140,-140,-14,0,0,0.639586 -20072,5113:249,-139,-14,0,0,0.637998 -20073,5113:248,-138,-14,0,0,0.637975 -20074,5113:247,-137,-14,0,0,0.63897 -20075,5113:246,-136,-14,0,0,0.638212 -20076,5113:245,-135,-14,0,0,0.636455 -20077,5113:144,-134,-14,0,0,0.634479 -20078,5113:143,-133,-14,0,0,0.634408 -20079,5113:142,-132,-14,0,0,0.636074 -20080,5113:141,-131,-14,0,0,0.63655 -20081,5113:140,-130,-14,0,0,0.635193 -20082,5112:249,-129,-14,0,0,0.631113 -20083,5112:248,-128,-14,0,0,0.629868 -20084,5112:247,-127,-14,0,0,0.627494 -20085,5112:246,-126,-14,0,0,0.628045 -20086,5112:245,-125,-14,0,0,0.623715 -20087,5112:144,-124,-14,0,0,0.62147 -20088,5112:143,-123,-14,0,0,0.623571 -20089,5112:142,-122,-14,0,0,0.618711 -20090,5112:141,-121,-14,0,0,0.616989 -20091,5112:140,-120,-14,0,0,0.614631 -20092,5111:249,-119,-14,0,0,0.611462 -20093,5111:248,-118,-14,0,0,0.605122 -20094,5111:247,-117,-14,0,0,0.599757 -20095,5111:246,-116,-14,0,0,0.592559 -20096,5111:245,-115,-14,0,0,0.587714 -20097,5111:144,-114,-14,0,0,0.582176 -20098,5111:143,-113,-14,0,0,0.575288 -20099,5111:142,-112,-14,0,0,0.569151 -20100,5111:141,-111,-14,0,0,0.563347 -20101,5111:140,-110,-14,0,0,0.556309 -20102,5110:249,-109,-14,0,0,0.551587 -20103,5110:248,-108,-14,0,0,0.546779 -20104,5110:247,-107,-14,0,0,0.54209 -20105,5110:246,-106,-14,0,0,0.536372 -20106,5110:245,-105,-14,0,0,0.529007 -20107,5110:144,-104,-14,0,0,0.516781 -20108,5110:143,-103,-14,0,0,0.507206 -20109,5110:142,-102,-14,0,0,0.499089 -20110,5110:141,-101,-14,0,0,0.495339 -20111,5110:140,-100,-14,0,0,0.490357 -20112,5109:249,-99,-14,0,0,0.48235 -20113,5109:248,-98,-14,0,0,0.477349 -20114,5109:247,-97,-14,0,0,0.47535 -20115,5109:246,-96,-14,0,0,0.470458 -20116,5109:245,-95,-14,0,0,0.461128 -20117,5109:144,-94,-14,0,0,0.452179 -20118,5109:143,-93,-14,0,0,0.446308 -20119,5109:142,-92,-14,0,0,0.43959 -20120,5109:141,-91,-14,0,0,0.429668 -20121,5109:140,-90,-14,0,0,0.42464 -20122,5108:249,-89,-14,0,0,0.423034 -20123,5108:248,-88,-14,0,0,0.418927 -20124,5108:247,-87,-14,0,0,0.413186 -20125,5108:246,-86,-14,0,0,0.411692 -20126,5108:245,-85,-14,0,0,0.40727 -20127,5108:144,-84,-14,0,0,0.403184 -20128,5108:143,-83,-14,0,0,0.397707 -20129,5108:142,-82,-14,0,0,0.397585 -20130,5108:141,-81,-14,0,0,0.398693 -20131,5108:140,-80,-14,0,0,0.40442 -20132,5107:249,-79,-14,0,0,0.409976 -20133,5107:248,-78,-14,0,0,0.419027 -20134,5107:247,-77,-14,0,0,0.4267 -20135,5107:246,-76,-14,0,0,0.438502 -20136,5107:245,-75,-14,0,0,0.449788 -20137,5107:144,-74,-14,0,0,0.452587 -20138,5107:143,-73,-14,0,0,0.458754 -20139,5107:142,-72,-14,0,0,0.459698 -20140,5103:249,-39,-14,0,0,0.597141 -20141,5103:248,-38,-14,0,0,0.626532 -20142,5103:247,-37,-14,0,0,0.623088 -20143,5103:246,-36,-14,0,0,0.623402 -20144,5103:245,-35,-14,0,0,0.622581 -20145,5103:144,-34,-14,0,0,0.619849 -20146,5103:143,-33,-14,0,0,0.61626 -20147,5103:142,-32,-14,0,0,0.61256 -20148,5103:141,-31,-14,0,0,0.607574 -20149,5103:140,-30,-14,0,0,0.603328 -20150,5102:249,-29,-14,0,0,0.599387 -20151,5102:248,-28,-14,0,0,0.595186 -20152,5102:247,-27,-14,0,0,0.589754 -20153,5102:246,-26,-14,0,0,0.5799 -20154,5102:245,-25,-14,0,0,0.577119 -20155,5102:144,-24,-14,0,0,0.57456 -20156,5102:143,-23,-14,0,0,0.572574 -20157,5102:142,-22,-14,0,0,0.569454 -20158,5102:141,-21,-14,0,0,0.56514 -20159,5102:140,-20,-14,0,0,0.560768 -20160,5101:249,-19,-14,0,0,0.556004 -20161,5101:248,-18,-14,0,0,0.549298 -20162,5101:247,-17,-14,0,0,0.542422 -20163,5101:246,-16,-14,0,0,0.539846 -20164,5101:245,-15,-14,0,0,0.535912 -20165,5101:144,-14,-14,0,0,0.53443 -20166,5101:143,-13,-14,0,0,0.52939 -20167,5101:142,-12,-14,0,0,0.521782 -20168,5101:141,-11,-14,0,0,0.516499 -20169,5101:140,-10,-14,0,0,0.511443 -20170,5100:249,-9,-14,0,0,0.506153 -20171,5100:248,-8,-14,0,0,0.500888 -20172,5100:247,-7,-14,0,0,0.495622 -20173,5100:246,-6,-14,0,0,0.490922 -20174,5100:245,-5,-14,0,0,0.48756 -20175,5100:144,-4,-14,0,0,0.485763 -20176,5100:143,-3,-14,0,0,0.484145 -20177,5100:142,-2,-14,0,0,0.480939 -20178,5100:141,-1,-14,0,0,0.481042 -20179,3100:141,0,-14,0,0,0.479375 -20180,3100:141,1,-14,0,0,0.477221 -20181,3100:142,2,-14,0,0,0.475324 -20182,3100:143,3,-14,0,0,0.474736 -20183,3100:144,4,-14,0,0,0.474736 -20184,3100:245,5,-14,0,0,0.475735 -20185,3100:246,6,-14,0,0,0.4743 -20186,3100:247,7,-14,0,0,0.48235 -20187,3100:248,8,-14,0,0,0.489331 -20188,3100:249,9,-14,0,0,0.507334 -20189,3101:140,10,-14,0,0,0.522859 -20190,3101:141,11,-14,0,0,0.487867 -20191,3103:248,38,-14,0,0,0.639184 -20192,3103:249,39,-14,0,0,0.669131 -20193,3104:140,40,-14,0,0,0.666967 -20194,3104:141,41,-14,0,0,0.669381 -20195,3104:142,42,-14,0,0,0.678928 -20196,3104:143,43,-14,0,0,0.689384 -20197,3105:140,50,-14,0,0,0.631806 -20198,3105:141,51,-14,0,0,0.624246 -20199,3105:142,52,-14,0,0,0.616624 -20200,3105:143,53,-14,0,0,0.613657 -20201,3105:144,54,-14,0,0,0.612268 -20202,3105:245,55,-14,0,0,0.61278 -20203,3105:246,56,-14,0,0,0.614899 -20204,3105:247,57,-14,0,0,0.617474 -20205,3105:248,58,-14,0,0,0.613754 -20206,3105:249,59,-14,0,0,0.60941 -20207,3106:140,60,-14,0,0,0.608799 -20208,3106:141,61,-14,0,0,0.606153 -20209,3106:142,62,-14,0,0,0.602812 -20210,3106:143,63,-14,0,0,0.601335 -20211,3106:144,64,-14,0,0,0.599412 -20212,3106:245,65,-14,0,0,0.596843 -20213,3106:246,66,-14,0,0,0.596572 -20214,3106:247,67,-14,0,0,0.595136 -20215,3106:248,68,-14,0,0,0.594741 -20216,3106:249,69,-14,0,0,0.59422 -20217,3107:140,70,-14,0,0,0.594716 -20218,3107:141,71,-14,0,0,0.59427 -20219,3107:142,72,-14,0,0,0.59246 -20220,3107:144,74,-14,0,0,0.588261 -20221,3107:245,75,-14,0,0,0.591815 -20222,3107:246,76,-14,0,0,0.589032 -20223,3107:247,77,-14,0,0,0.587962 -20224,3107:248,78,-14,0,0,0.585571 -20225,3107:249,79,-14,0,0,0.590846 -20226,3108:140,80,-14,0,0,0.596547 -20227,3108:141,81,-14,0,0,0.59365 -20228,3108:142,82,-14,0,0,0.589232 -20229,3108:143,83,-14,0,0,0.585596 -20230,3108:144,84,-14,0,0,0.587863 -20231,3108:245,85,-14,0,0,0.594394 -20232,3108:246,86,-14,0,0,0.596176 -20233,3108:247,87,-14,0,0,0.586219 -20234,3108:248,88,-14,0,0,0.586269 -20235,3108:249,89,-14,0,0,0.588385 -20236,3109:140,90,-14,0,0,0.578197 -20237,3109:141,91,-14,0,0,0.570738 -20238,3109:142,92,-14,0,0,0.570335 -20239,3109:143,93,-14,0,0,0.582051 -20240,3109:144,94,-14,0,0,0.569075 -20241,3109:245,95,-14,0,0,0.558236 -20242,3109:246,96,-14,0,0,0.562665 -20243,3109:247,97,-14,0,0,0.575388 -20244,3109:248,98,-14,0,0,0.568798 -20245,3109:249,99,-14,0,0,0.566806 -20246,3110:140,100,-14,0,0,0.572649 -20247,3110:141,101,-14,0,0,0.572298 -20248,3110:142,102,-14,0,0,0.566781 -20249,3110:143,103,-14,0,0,0.565318 -20250,3110:144,104,-14,0,0,0.571014 -20251,3110:245,105,-14,0,0,0.577094 -20252,3110:246,106,-14,0,0,0.584124 -20253,3110:247,107,-14,0,0,0.587141 -20254,3110:248,108,-14,0,0,0.597684 -20255,3110:249,109,-14,0,0,0.598302 -20256,3111:140,110,-14,0,0,0.610559 -20257,3111:141,111,-14,0,0,0.607697 -20258,3111:142,112,-14,0,0,0.612219 -20259,3111:143,113,-14,0,0,0.620358 -20260,3111:144,114,-14,0,0,0.623715 -20261,3111:245,115,-14,0,0,0.632809 -20262,3111:246,116,-14,0,0,0.641597 -20263,3111:247,117,-14,0,0,0.647412 -20264,3111:248,118,-14,0,0,0.651715 -20265,3111:249,119,-14,0,0,0.657614 -20266,3112:140,120,-14,0,0,0.656341 -20267,3112:141,121,-14,0,0,0.667058 -20268,3112:142,122,-14,0,0,0.670653 -20269,3114:140,140,-14,0,0,0.714355 -20270,3114:141,141,-14,0,0,0.712569 -20271,3114:247,147,-14,0,0,0.635741 -20272,3114:248,148,-14,0,0,0.629101 -20273,3114:249,149,-14,0,0,0.617887 -20274,3115:140,150,-14,0,0,0.624053 -20275,3115:141,151,-14,0,0,0.622847 -20276,3115:142,152,-14,0,0,0.624149 -20277,3115:143,153,-14,0,0,0.617256 -20278,3115:144,154,-14,0,0,0.625185 -20279,3115:245,155,-14,0,0,0.623498 -20280,3115:246,156,-14,0,0,0.616576 -20281,3115:247,157,-14,0,0,0.615117 -20282,3115:248,158,-14,0,0,0.616964 -20283,3115:249,159,-14,0,0,0.61029 -20284,3116:140,160,-14,0,0,0.613316 -20285,3116:141,161,-14,0,0,0.609874 -20286,3116:142,162,-14,0,0,0.605883 -20287,3116:143,163,-14,0,0,0.605809 -20288,3116:144,164,-14,0,0,0.606275 -20289,3116:245,165,-14,0,0,0.605613 -20290,3116:246,166,-14,0,0,0.60826 -20291,3116:247,167,-14,0,0,0.604508 -20292,3116:248,168,-14,0,0,0.599066 -20293,3116:249,169,-14,0,0,0.595582 -20294,3117:140,170,-14,0,0,0.60025 -20295,3117:141,171,-14,0,0,0.598993 -20296,3117:142,172,-14,0,0,0.601483 -20297,3117:143,173,-14,0,0,0.603033 -20298,3117:144,174,-14,0,0,0.604999 -20299,3117:245,175,-14,0,0,0.605515 -20300,3117:246,176,-14,0,0,0.607182 -20301,3117:247,177,-14,0,0,0.60985 -20302,3117:248,178,-14,0,0,0.606422 -20303,3117:249,179,-14,0,0,0.593056 -20304,3118:140,180,-14,0,0,0.594493 -20305,5118:130,-180,-13,0,0,0.611536 -20306,5117:239,-179,-13,0,0,0.614192 -20307,5117:238,-178,-13,0,0,0.614582 -20308,5117:237,-177,-13,0,0,0.615117 -20309,5117:236,-176,-13,0,0,0.614777 -20310,5117:235,-175,-13,0,0,0.616892 -20311,5117:134,-174,-13,0,0,0.622702 -20312,5117:133,-173,-13,0,0,0.62622 -20313,5117:132,-172,-13,0,0,0.626052 -20314,5117:131,-171,-13,0,0,0.627278 -20315,5117:130,-170,-13,0,0,0.630418 -20316,5116:239,-169,-13,0,0,0.631639 -20317,5116:238,-168,-13,0,0,0.6297 -20318,5116:237,-167,-13,0,0,0.630825 -20319,5116:236,-166,-13,0,0,0.635217 -20320,5116:235,-165,-13,0,0,0.635979 -20321,5116:134,-164,-13,0,0,0.639634 -20322,5116:133,-163,-13,0,0,0.639752 -20323,5116:132,-162,-13,0,0,0.641952 -20324,5116:131,-161,-13,0,0,0.646426 -20325,5116:130,-160,-13,0,0,0.647412 -20326,5115:239,-159,-13,0,0,0.646073 -20327,5115:238,-158,-13,0,0,0.648817 -20328,5115:237,-157,-13,0,0,0.646144 -20329,5115:236,-156,-13,0,0,0.646966 -20330,5115:235,-155,-13,0,0,0.652764 -20331,5115:134,-154,-13,0,0,0.653531 -20332,5115:133,-153,-13,0,0,0.655367 -20333,5115:132,-152,-13,0,0,0.655413 -20334,5115:131,-151,-13,0,0,0.65699 -20335,5115:130,-150,-13,0,0,0.65884 -20336,5114:239,-149,-13,0,0,0.659024 -20337,5114:238,-148,-13,0,0,0.656943 -20338,5114:237,-147,-13,0,0,0.653508 -20339,5114:236,-146,-13,0,0,0.65253 -20340,5114:235,-145,-13,0,0,0.651575 -20341,5114:134,-144,-13,0,0,0.650945 -20342,5114:133,-143,-13,0,0,0.649379 -20343,5114:132,-142,-13,0,0,0.647904 -20344,5114:131,-141,-13,0,0,0.650104 -20345,5114:130,-140,-13,0,0,0.649285 -20346,5113:239,-139,-13,0,0,0.647786 -20347,5113:238,-138,-13,0,0,0.647575 -20348,5113:237,-137,-13,0,0,0.647013 -20349,5113:236,-136,-13,0,0,0.644804 -20350,5113:235,-135,-13,0,0,0.643273 -20351,5113:134,-134,-13,0,0,0.644686 -20352,5113:133,-133,-13,0,0,0.643037 -20353,5113:132,-132,-13,0,0,0.642282 -20354,5113:131,-131,-13,0,0,0.641881 -20355,5113:130,-130,-13,0,0,0.639729 -20356,5112:239,-129,-13,0,0,0.637286 -20357,5112:238,-128,-13,0,0,0.635859 -20358,5112:237,-127,-13,0,0,0.634813 -20359,5112:236,-126,-13,0,0,0.6314 -20360,5112:235,-125,-13,0,0,0.627205 -20361,5112:134,-124,-13,0,0,0.622364 -20362,5112:133,-123,-13,0,0,0.624222 -20363,5112:132,-122,-13,0,0,0.623378 -20364,5112:131,-121,-13,0,0,0.616867 -20365,5112:130,-120,-13,0,0,0.610901 -20366,5111:239,-119,-13,0,0,0.60603 -20367,5111:238,-118,-13,0,0,0.599609 -20368,5111:237,-117,-13,0,0,0.595607 -20369,5111:236,-116,-13,0,0,0.589132 -20370,5111:235,-115,-13,0,0,0.586618 -20371,5111:134,-114,-13,0,0,0.582351 -20372,5111:133,-113,-13,0,0,0.573479 -20373,5111:132,-112,-13,0,0,0.565848 -20374,5111:131,-111,-13,0,0,0.561147 -20375,5111:130,-110,-13,0,0,0.557703 -20376,5110:239,-109,-13,0,0,0.547568 -20377,5110:238,-108,-13,0,0,0.540126 -20378,5110:237,-107,-13,0,0,0.53397 -20379,5110:236,-106,-13,0,0,0.526933 -20380,5110:235,-105,-13,0,0,0.524832 -20381,5110:134,-104,-13,0,0,0.519423 -20382,5110:133,-103,-13,0,0,0.51057 -20383,5110:132,-102,-13,0,0,0.500143 -20384,5110:131,-101,-13,0,0,0.495083 -20385,5110:130,-100,-13,0,0,0.488175 -20386,5109:239,-99,-13,0,0,0.48058 -20387,5109:238,-98,-13,0,0,0.475376 -20388,5109:237,-97,-13,0,0,0.470458 -20389,5109:236,-96,-13,0,0,0.464397 -20390,5109:235,-95,-13,0,0,0.458295 -20391,5109:134,-94,-13,0,0,0.451747 -20392,5109:133,-93,-13,0,0,0.446029 -20393,5109:132,-92,-13,0,0,0.442553 -20394,5109:131,-91,-13,0,0,0.439691 -20395,5109:130,-90,-13,0,0,0.435569 -20396,5108:239,-89,-13,0,0,0.430348 -20397,5108:238,-88,-13,0,0,0.423386 -20398,5108:237,-87,-13,0,0,0.413709 -20399,5108:236,-86,-13,0,0,0.405882 -20400,5108:235,-85,-13,0,0,0.40353 -20401,5108:134,-84,-13,0,0,0.402467 -20402,5108:133,-83,-13,0,0,0.40222 -20403,5108:132,-82,-13,0,0,0.402566 -20404,5108:131,-81,-13,0,0,0.41209 -20405,5108:130,-80,-13,0,0,0.418427 -20406,5107:239,-79,-13,0,0,0.421731 -20407,5107:238,-78,-13,0,0,0.426951 -20408,5107:237,-77,-13,0,0,0.436226 -20409,5107:236,-76,-13,0,0,0.44154 -20410,5107:235,-75,-13,0,0,0.440628 -20411,5103:239,-39,-13,0,0,0.588709 -20412,5103:238,-38,-13,0,0,0.623812 -20413,5103:237,-37,-13,0,0,0.626075 -20414,5103:236,-36,-13,0,0,0.623498 -20415,5103:235,-35,-13,0,0,0.621083 -20416,5103:134,-34,-13,0,0,0.617499 -20417,5103:133,-33,-13,0,0,0.613754 -20418,5103:132,-32,-13,0,0,0.609141 -20419,5103:131,-31,-13,0,0,0.603942 -20420,5103:130,-30,-13,0,0,0.599338 -20421,5102:239,-29,-13,0,0,0.595384 -20422,5102:238,-28,-13,0,0,0.589878 -20423,5102:237,-27,-13,0,0,0.5837 -20424,5102:236,-26,-13,0,0,0.576618 -20425,5102:235,-25,-13,0,0,0.574459 -20426,5102:134,-24,-13,0,0,0.571291 -20427,5102:133,-23,-13,0,0,0.567815 -20428,5102:132,-22,-13,0,0,0.564307 -20429,5102:131,-21,-13,0,0,0.559882 -20430,5102:130,-20,-13,0,0,0.555243 -20431,5101:239,-19,-13,0,0,0.551053 -20432,5101:238,-18,-13,0,0,0.546575 -20433,5101:237,-17,-13,0,0,0.542575 -20434,5101:236,-16,-13,0,0,0.539233 -20435,5101:235,-15,-13,0,0,0.534891 -20436,5101:134,-14,-13,0,0,0.527035 -20437,5101:133,-13,-13,0,0,0.522705 -20438,5101:132,-12,-13,0,0,0.520449 -20439,5101:131,-11,-13,0,0,0.516499 -20440,5101:130,-10,-13,0,0,0.511057 -20441,5100:239,-9,-13,0,0,0.504458 -20442,5100:238,-8,-13,0,0,0.499038 -20443,5100:237,-7,-13,0,0,0.495596 -20444,5100:236,-6,-13,0,0,0.493798 -20445,5100:235,-5,-13,0,0,0.490589 -20446,5100:134,-4,-13,0,0,0.487713 -20447,5100:133,-3,-13,0,0,0.48684 -20448,5100:132,-2,-13,0,0,0.485686 -20449,5100:131,-1,-13,0,0,0.484197 -20450,3100:131,0,-13,0,0,0.482145 -20451,3100:131,1,-13,0,0,0.481606 -20452,3100:132,2,-13,0,0,0.484659 -20453,3100:133,3,-13,0,0,0.484659 -20454,3100:134,4,-13,0,0,0.484607 -20455,3100:235,5,-13,0,0,0.483992 -20456,3100:236,6,-13,0,0,0.485352 -20457,3100:237,7,-13,0,0,0.487611 -20458,3100:238,8,-13,0,0,0.499372 -20459,3100:239,9,-13,0,0,0.511982 -20460,3101:130,10,-13,0,0,0.538799 -20461,3101:131,11,-13,0,0,0.5185 -20462,3104:130,40,-13,0,0,0.665322 -20463,3104:131,41,-13,0,0,0.675672 -20464,3104:132,42,-13,0,0,0.681832 -20465,3104:133,43,-13,0,0,0.686252 -20466,3104:134,44,-13,0,0,0.695924 -20467,3105:130,50,-13,0,0,0.634932 -20468,3105:131,51,-13,0,0,0.63226 -20469,3105:132,52,-13,0,0,0.626316 -20470,3105:133,53,-13,0,0,0.621132 -20471,3105:134,54,-13,0,0,0.620431 -20472,3105:235,55,-13,0,0,0.622195 -20473,3105:236,56,-13,0,0,0.622267 -20474,3105:237,57,-13,0,0,0.624487 -20475,3105:238,58,-13,0,0,0.623619 -20476,3105:239,59,-13,0,0,0.620696 -20477,3106:130,60,-13,0,0,0.617717 -20478,3106:131,61,-13,0,0,0.613925 -20479,3106:132,62,-13,0,0,0.611974 -20480,3106:133,63,-13,0,0,0.610949 -20481,3106:134,64,-13,0,0,0.610217 -20482,3106:235,65,-13,0,0,0.609826 -20483,3106:236,66,-13,0,0,0.609361 -20484,3106:237,67,-13,0,0,0.60919 -20485,3106:238,68,-13,0,0,0.608113 -20486,3106:239,69,-13,0,0,0.606716 -20487,3107:130,70,-13,0,0,0.60657 -20489,3107:132,72,-13,0,0,0.608897 -20490,3107:134,74,-13,0,0,0.615142 -20491,3107:235,75,-13,0,0,0.615531 -20492,3107:236,76,-13,0,0,0.614047 -20493,3107:237,77,-13,0,0,0.613876 -20494,3107:238,78,-13,0,0,0.614606 -20495,3107:239,79,-13,0,0,0.612731 -20496,3108:130,80,-13,0,0,0.614801 -20497,3108:131,81,-13,0,0,0.61334 -20498,3108:132,82,-13,0,0,0.610217 -20499,3108:133,83,-13,0,0,0.60522 -20500,3108:134,84,-13,0,0,0.608015 -20501,3108:235,85,-13,0,0,0.599066 -20502,3108:236,86,-13,0,0,0.599289 -20503,3108:237,87,-13,0,0,0.597832 -20504,3108:238,88,-13,0,0,0.595013 -20505,3108:239,89,-13,0,0,0.598968 -20506,3109:130,90,-13,0,0,0.593625 -20507,3109:131,91,-13,0,0,0.593378 -20508,3109:132,92,-13,0,0,0.590276 -20509,3109:133,93,-13,0,0,0.588784 -20510,3109:134,94,-13,0,0,0.578097 -20511,3109:235,95,-13,0,0,0.58315 -20512,3109:236,96,-13,0,0,0.582526 -20513,3109:237,97,-13,0,0,0.580701 -20514,3109:238,98,-13,0,0,0.584947 -20515,3109:239,99,-13,0,0,0.579149 -20516,3110:130,100,-13,0,0,0.582201 -20517,3110:131,101,-13,0,0,0.589405 -20518,3110:132,102,-13,0,0,0.591964 -20519,3110:133,103,-13,0,0,0.589803 -20520,3110:134,104,-13,0,0,0.594617 -20521,3110:235,105,-13,0,0,0.594444 -20522,3110:236,106,-13,0,0,0.592287 -20523,3110:237,107,-13,0,0,0.599437 -20524,3110:238,108,-13,0,0,0.616139 -20525,3110:239,109,-13,0,0,0.612926 -20526,3111:130,110,-13,0,0,0.617741 -20527,3111:131,111,-13,0,0,0.620019 -20528,3111:132,112,-13,0,0,0.627614 -20529,3111:133,113,-13,0,0,0.632977 -20530,3111:134,114,-13,0,0,0.642872 -20531,3111:235,115,-13,0,0,0.646191 -20532,3111:236,116,-13,0,0,0.643956 -20533,3111:237,117,-13,0,0,0.653392 -20534,3111:238,118,-13,0,0,0.663007 -20535,3111:239,119,-13,0,0,0.668153 -20536,3112:130,120,-13,0,0,0.666716 -20537,3112:131,121,-13,0,0,0.676392 -20538,3112:132,122,-13,0,0,0.678301 -20539,3112:133,123,-13,0,0,0.682167 -20540,3112:134,124,-13,0,0,0.707471 -20541,3113:238,138,-13,0,0,0.714355 -20542,3113:239,139,-13,0,0,0.712927 -20543,3114:130,140,-13,0,0,0.709339 -20544,3114:131,141,-13,0,0,0.702063 -20545,3114:236,146,-13,0,0,0.641172 -20546,3114:237,147,-13,0,0,0.635859 -20547,3114:238,148,-13,0,0,0.635074 -20548,3114:239,149,-13,0,0,0.636383 -20549,3115:130,150,-13,0,0,0.633191 -20550,3115:131,151,-13,0,0,0.631089 -20551,3115:132,152,-13,0,0,0.635955 -20552,3115:133,153,-13,0,0,0.633478 -20553,3115:134,154,-13,0,0,0.633788 -20554,3115:235,155,-13,0,0,0.631209 -20555,3115:236,156,-13,0,0,0.630395 -20556,3115:237,157,-13,0,0,0.629077 -20557,3115:238,158,-13,0,0,0.628478 -20558,3115:239,159,-13,0,0,0.622654 -20559,3116:130,160,-13,0,0,0.620334 -20560,3116:131,161,-13,0,0,0.619608 -20561,3116:132,162,-13,0,0,0.619365 -20562,3116:133,163,-13,0,0,0.618905 -20563,3116:134,164,-13,0,0,0.612341 -20564,3116:235,165,-13,0,0,0.617377 -20565,3116:236,166,-13,0,0,0.618953 -20566,3116:237,167,-13,0,0,0.612316 -20567,3116:238,168,-13,0,0,0.613876 -20568,3116:239,169,-13,0,0,0.618008 -20569,3117:130,170,-13,0,0,0.621446 -20570,3117:131,171,-13,0,0,0.621712 -20571,3117:132,172,-13,0,0,0.621906 -20572,3117:133,173,-13,0,0,0.621446 -20573,3117:134,174,-13,0,0,0.621397 -20574,3117:235,175,-13,0,0,0.621978 -20575,3117:236,176,-13,0,0,0.621808 -20576,3117:237,177,-13,0,0,0.620552 -20577,3117:238,178,-13,0,0,0.617474 -20578,3117:239,179,-13,0,0,0.615895 -20579,3118:130,180,-13,0,0,0.611536 -20580,5118:120,-180,-12,0,0,0.630227 -20581,5117:229,-179,-12,0,0,0.630371 -20582,5117:228,-178,-12,0,0,0.631973 -20583,5117:227,-177,-12,0,0,0.63505 -20584,5117:226,-176,-12,0,0,0.638093 -20585,5117:225,-175,-12,0,0,0.641597 -20586,5117:124,-174,-12,0,0,0.646261 -20587,5117:123,-173,-12,0,0,0.649122 -20588,5117:122,-172,-12,0,0,0.647412 -20589,5117:121,-171,-12,0,0,0.647599 -20590,5117:120,-170,-12,0,0,0.647669 -20591,5116:229,-169,-12,0,0,0.648771 -20592,5116:228,-168,-12,0,0,0.649589 -20593,5116:227,-167,-12,0,0,0.651248 -20594,5116:226,-166,-12,0,0,0.652624 -20595,5116:225,-165,-12,0,0,0.653043 -21246,5108:101,-81,-10,0,0,0.48117 -20596,5116:124,-164,-12,0,0,0.653834 -20597,5116:123,-163,-12,0,0,0.656943 -20598,5116:122,-162,-12,0,0,0.659901 -20599,5116:121,-161,-12,0,0,0.661214 -20600,5116:120,-160,-12,0,0,0.662571 -20601,5115:229,-159,-12,0,0,0.662663 -20602,5115:228,-158,-12,0,0,0.661882 -20603,5115:227,-157,-12,0,0,0.662456 -20604,5115:226,-156,-12,0,0,0.663489 -20605,5115:225,-155,-12,0,0,0.665047 -20606,5115:124,-154,-12,0,0,0.665161 -20607,5115:123,-153,-12,0,0,0.664177 -20608,5115:122,-152,-12,0,0,0.664314 -20609,5115:121,-151,-12,0,0,0.663718 -20610,5115:120,-150,-12,0,0,0.663191 -20611,5114:229,-149,-12,0,0,0.663282 -20612,5114:228,-148,-12,0,0,0.661789 -20613,5114:227,-147,-12,0,0,0.660178 -20614,5114:226,-146,-12,0,0,0.658308 -20615,5114:225,-145,-12,0,0,0.657013 -20616,5114:124,-144,-12,0,0,0.658285 -20617,5114:123,-143,-12,0,0,0.659324 -20618,5114:122,-142,-12,0,0,0.659532 -20619,5114:121,-141,-12,0,0,0.658447 -20620,5114:120,-140,-12,0,0,0.657684 -20621,5113:229,-139,-12,0,0,0.657453 -20622,5113:228,-138,-12,0,0,0.656272 -20623,5113:227,-137,-12,0,0,0.654392 -20624,5113:226,-136,-12,0,0,0.653438 -20625,5113:225,-135,-12,0,0,0.652414 -20626,5113:124,-134,-12,0,0,0.652368 -20627,5113:123,-133,-12,0,0,0.650314 -20628,5113:122,-132,-12,0,0,0.646708 -20629,5113:121,-131,-12,0,0,0.64471 -20630,5113:120,-130,-12,0,0,0.643131 -20631,5112:229,-129,-12,0,0,0.640959 -20632,5112:228,-128,-12,0,0,0.637975 -20633,5112:227,-127,-12,0,0,0.634979 -20634,5112:226,-126,-12,0,0,0.631519 -20635,5112:225,-125,-12,0,0,0.628694 -20636,5112:124,-124,-12,0,0,0.622847 -20637,5112:123,-123,-12,0,0,0.620019 -20638,5112:122,-122,-12,0,0,0.616624 -20639,5112:121,-121,-12,0,0,0.612146 -20640,5112:120,-120,-12,0,0,0.605196 -20641,5111:229,-119,-12,0,0,0.600719 -20642,5111:228,-118,-12,0,0,0.595434 -20643,5111:227,-117,-12,0,0,0.592485 -20644,5111:226,-116,-12,0,0,0.588385 -20645,5111:225,-115,-12,0,0,0.581776 -20646,5111:124,-114,-12,0,0,0.574283 -20647,5111:123,-113,-12,0,0,0.570889 -20648,5111:122,-112,-12,0,0,0.567412 -20649,5111:121,-111,-12,0,0,0.558311 -20650,5111:120,-110,-12,0,0,0.554102 -20651,5110:229,-109,-12,0,0,0.549274 -20652,5110:228,-108,-12,0,0,0.543799 -20653,5110:227,-107,-12,0,0,0.535325 -20654,5110:226,-106,-12,0,0,0.526241 -20655,5110:225,-105,-12,0,0,0.520449 -20656,5110:124,-104,-12,0,0,0.515857 -20657,5110:123,-103,-12,0,0,0.507591 -20658,5110:122,-102,-12,0,0,0.500656 -20659,5110:121,-101,-12,0,0,0.495776 -20660,5110:120,-100,-12,0,0,0.492592 -20661,5109:229,-99,-12,0,0,0.486353 -20662,5109:228,-98,-12,0,0,0.479016 -20663,5109:227,-97,-12,0,0,0.472379 -20664,5109:226,-96,-12,0,0,0.466084 -20665,5109:225,-95,-12,0,0,0.459392 -20666,5109:124,-94,-12,0,0,0.45493 -20667,5109:123,-93,-12,0,0,0.448721 -20668,5109:122,-92,-12,0,0,0.44344 -20669,5109:121,-91,-12,0,0,0.437085 -20670,5109:120,-90,-12,0,0,0.434079 -20671,5108:229,-89,-12,0,0,0.427328 -20672,5108:228,-88,-12,0,0,0.421956 -20673,5108:227,-87,-12,0,0,0.418477 -20674,5108:226,-86,-12,0,0,0.414557 -20675,5108:225,-85,-12,0,0,0.413261 -20676,5108:124,-84,-12,0,0,0.414482 -20677,5108:123,-83,-12,0,0,0.420403 -20678,5108:122,-82,-12,0,0,0.423736 -20679,5108:121,-81,-12,0,0,0.42997 -20680,5108:120,-80,-12,0,0,0.439615 -20681,5107:229,-79,-12,0,0,0.445039 -20682,5107:228,-78,-12,0,0,0.458014 -20683,5107:227,-77,-12,0,0,0.45073 -20684,5107:226,-76,-12,0,0,0.396158 -20685,5103:229,-39,-12,0,0,0.62205 -20686,5103:228,-38,-12,0,0,0.627806 -20687,5103:227,-37,-12,0,0,0.627541 -20688,5103:226,-36,-12,0,0,0.626532 -20689,5103:225,-35,-12,0,0,0.622895 -20690,5103:124,-34,-12,0,0,0.620043 -20691,5103:123,-33,-12,0,0,0.615847 -20692,5103:122,-32,-12,0,0,0.611511 -20693,5103:121,-31,-12,0,0,0.605809 -20694,5103:120,-30,-12,0,0,0.599091 -20695,5102:229,-29,-12,0,0,0.592758 -20696,5102:228,-28,-12,0,0,0.588261 -20697,5102:227,-27,-12,0,0,0.586743 -20698,5102:226,-26,-12,0,0,0.58025 -20699,5102:225,-25,-12,0,0,0.57584 -20700,5102:124,-24,-12,0,0,0.570838 -20701,5102:123,-23,-12,0,0,0.567563 -20702,5102:122,-22,-12,0,0,0.563499 -20703,5102:121,-21,-12,0,0,0.558995 -20704,5102:120,-20,-12,0,0,0.554888 -20705,5101:229,-19,-12,0,0,0.550341 -20706,5101:228,-18,-12,0,0,0.547441 -20707,5101:227,-17,-12,0,0,0.543263 -20708,5101:226,-16,-12,0,0,0.538007 -20709,5101:225,-15,-12,0,0,0.533766 -20710,5101:124,-14,-12,0,0,0.530286 -20711,5101:123,-13,-12,0,0,0.525729 -20712,5101:122,-12,-12,0,0,0.521295 -20713,5101:121,-11,-12,0,0,0.516448 -20714,5101:120,-10,-12,0,0,0.512058 -20715,5100:229,-9,-12,0,0,0.506872 -20716,5100:228,-8,-12,0,0,0.501324 -20717,5100:227,-7,-12,0,0,0.494647 -20718,5100:226,-6,-12,0,0,0.48969 -20719,5100:225,-5,-12,0,0,0.488945 -20720,5100:124,-4,-12,0,0,0.488869 -20721,5100:123,-3,-12,0,0,0.490486 -20722,5100:122,-2,-12,0,0,0.491976 -20723,5100:121,-1,-12,0,0,0.493619 -20724,3100:121,0,-12,0,0,0.494313 -20725,3100:121,1,-12,0,0,0.49647 -20726,3100:122,2,-12,0,0,0.493876 -20727,3100:123,3,-12,0,0,0.492104 -20728,3100:124,4,-12,0,0,0.493619 -20729,3100:225,5,-12,0,0,0.498113 -20730,3100:226,6,-12,0,0,0.504201 -20731,3100:227,7,-12,0,0,0.509619 -20732,3100:228,8,-12,0,0,0.513522 -20733,3100:229,9,-12,0,0,0.528674 -20734,3101:120,10,-12,0,0,0.557297 -20735,3101:121,11,-12,0,0,0.559249 -20736,3101:122,12,-12,0,0,0.488561 -20737,3104:121,41,-12,0,0,0.677874 -20738,3104:122,42,-12,0,0,0.684101 -20739,3104:123,43,-12,0,0,0.684701 -20740,3104:124,44,-12,0,0,0.682567 -20741,3104:225,45,-12,0,0,0.68123 -20742,3104:226,46,-12,0,0,0.683413 -20743,3104:227,47,-12,0,0,0.690922 -20744,3105:120,50,-12,0,0,0.636383 -20745,3105:121,51,-12,0,0,0.63343 -20746,3105:122,52,-12,0,0,0.633597 -20747,3105:123,53,-12,0,0,0.631639 -20748,3105:124,54,-12,0,0,0.632571 -20749,3105:225,55,-12,0,0,0.63331 -20750,3105:226,56,-12,0,0,0.633096 -20751,3105:227,57,-12,0,0,0.632547 -20752,3105:228,58,-12,0,0,0.631615 -20753,3105:229,59,-12,0,0,0.629653 -20754,3106:120,60,-12,0,0,0.624583 -20755,3106:121,61,-12,0,0,0.62333 -20756,3106:122,62,-12,0,0,0.624921 -20757,3106:123,63,-12,0,0,0.620745 -20758,3106:124,64,-12,0,0,0.620745 -20759,3106:225,65,-12,0,0,0.619777 -20760,3106:226,66,-12,0,0,0.621011 -20761,3106:227,67,-12,0,0,0.623305 -20762,3106:228,68,-12,0,0,0.623426 -20763,3106:229,69,-12,0,0,0.62147 -20764,3107:120,70,-12,0,0,0.619971 -20765,3107:121,71,-12,0,0,0.619075 -20766,3107:122,72,-12,0,0,0.618566 -20767,3107:124,74,-12,0,0,0.626845 -20768,3107:225,75,-12,0,0,0.634121 -20769,3107:226,76,-12,0,0,0.635764 -20770,3107:227,77,-12,0,0,0.63517 -20771,3107:228,78,-12,0,0,0.632451 -20772,3107:229,79,-12,0,0,0.628934 -20773,3108:120,80,-12,0,0,0.62795 -20774,3108:121,81,-12,0,0,0.625233 -20775,3108:122,82,-12,0,0,0.620914 -20776,3108:123,83,-12,0,0,0.618783 -20777,3108:124,84,-12,0,0,0.616818 -20778,3108:225,85,-12,0,0,0.613973 -20779,3108:226,86,-12,0,0,0.610852 -20780,3108:227,87,-12,0,0,0.607084 -20781,3108:228,88,-12,0,0,0.604361 -20782,3108:229,89,-12,0,0,0.604361 -20783,3109:120,90,-12,0,0,0.60468 -20784,3109:121,91,-12,0,0,0.605613 -20785,3109:122,92,-12,0,0,0.605588 -20786,3109:123,93,-12,0,0,0.604188 -20787,3109:124,94,-12,0,0,0.603156 -20788,3109:225,95,-12,0,0,0.601877 -20789,3109:226,96,-12,0,0,0.59479 -20790,3109:227,97,-12,0,0,0.592708 -20791,3109:228,98,-12,0,0,0.593006 -20792,3109:229,99,-12,0,0,0.601803 -20793,3110:120,100,-12,0,0,0.609948 -20794,3110:121,101,-12,0,0,0.617741 -20795,3110:122,102,-12,0,0,0.627374 -20796,3110:123,103,-12,0,0,0.63312 -20797,3110:124,104,-12,0,0,0.631089 -20798,3110:225,105,-12,0,0,0.619438 -20799,3110:226,106,-12,0,0,0.616211 -20800,3110:227,107,-12,0,0,0.620503 -20801,3110:228,108,-12,0,0,0.628861 -20802,3110:229,109,-12,0,0,0.637951 -20803,3111:120,110,-12,0,0,0.63788 -20804,3111:121,111,-12,0,0,0.638425 -20805,3111:122,112,-12,0,0,0.650151 -20806,3111:123,113,-12,0,0,0.662755 -20807,3111:124,114,-12,0,0,0.671651 -20808,3111:225,115,-12,0,0,0.670109 -20809,3111:226,116,-12,0,0,0.663374 -20810,3111:227,117,-12,0,0,0.665116 -20811,3111:228,118,-12,0,0,0.67113 -21247,5108:100,-80,-10,0,0,0.4843 -20812,3111:229,119,-12,0,0,0.678345 -20813,3112:120,120,-12,0,0,0.674613 -20814,3112:121,121,-12,0,0,0.677067 -20815,3112:122,122,-12,0,0,0.680561 -20816,3112:123,123,-12,0,0,0.686295 -20817,3112:124,124,-12,0,0,0.690022 -20818,3112:225,125,-12,0,0,0.702557 -20819,3112:229,129,-12,0,0,0.714355 -20820,3113:226,136,-12,0,0,0.714355 -20821,3113:227,137,-12,0,0,0.714355 -20822,3113:228,138,-12,0,0,0.702536 -20823,3113:229,139,-12,0,0,0.693876 -20824,3114:120,140,-12,0,0,0.69123 -20825,3114:121,141,-12,0,0,0.692631 -20826,3114:226,146,-12,0,0,0.639255 -20827,3114:227,147,-12,0,0,0.640013 -20828,3114:228,148,-12,0,0,0.642896 -20829,3114:229,149,-12,0,0,0.642848 -20830,3115:120,150,-12,0,0,0.645251 -20831,3115:121,151,-12,0,0,0.644639 -20832,3115:122,152,-12,0,0,0.643886 -20833,3115:123,153,-12,0,0,0.646379 -20834,3115:124,154,-12,0,0,0.647107 -20835,3115:225,155,-12,0,0,0.646073 -20836,3115:226,156,-12,0,0,0.643108 -20837,3115:227,157,-12,0,0,0.639208 -20838,3115:228,158,-12,0,0,0.635646 -20839,3115:229,159,-12,0,0,0.634384 -20840,3116:120,160,-12,0,0,0.633168 -20841,3116:121,161,-12,0,0,0.631878 -20842,3116:122,162,-12,0,0,0.631136 -20843,3116:123,163,-12,0,0,0.630945 -20844,3116:124,164,-12,0,0,0.632045 -20845,3116:225,165,-12,0,0,0.632762 -20846,3116:226,166,-12,0,0,0.631711 -20847,3116:227,167,-12,0,0,0.62333 -20848,3116:228,168,-12,0,0,0.629484 -20849,3116:229,169,-12,0,0,0.634384 -20850,3117:120,170,-12,0,0,0.636265 -20851,3117:121,171,-12,0,0,0.637309 -20852,3117:122,172,-12,0,0,0.635622 -20853,3117:123,173,-12,0,0,0.635622 -20854,3117:124,174,-12,0,0,0.63343 -20855,3117:225,175,-12,0,0,0.631782 -20856,3117:226,176,-12,0,0,0.630706 -20857,3117:227,177,-12,0,0,0.630418 -20858,3117:228,178,-12,0,0,0.631471 -20859,3117:229,179,-12,0,0,0.630802 -20860,3118:120,180,-12,0,0,0.630227 -20861,5118:110,-180,-11,0,0,0.645345 -20862,5117:219,-179,-11,0,0,0.646966 -20863,5117:218,-178,-11,0,0,0.649052 -20864,5117:217,-177,-11,0,0,0.652204 -20865,5117:216,-176,-11,0,0,0.655413 -20866,5117:215,-175,-11,0,0,0.659716 -20867,5117:114,-174,-11,0,0,0.662984 -20868,5117:113,-173,-11,0,0,0.662226 -20869,5117:112,-172,-11,0,0,0.658007 -20870,5117:111,-171,-11,0,0,0.659255 -20871,5117:110,-170,-11,0,0,0.660063 -20872,5116:219,-169,-11,0,0,0.66172 -20873,5116:218,-168,-11,0,0,0.663443 -20874,5116:217,-167,-11,0,0,0.665161 -20875,5116:216,-166,-11,0,0,0.665779 -20876,5116:215,-165,-11,0,0,0.666716 -20877,5116:114,-164,-11,0,0,0.667583 -20878,5116:113,-163,-11,0,0,0.669131 -20879,5116:112,-162,-11,0,0,0.668882 -20880,5116:111,-161,-11,0,0,0.669904 -20881,5116:110,-160,-11,0,0,0.669381 -20882,5115:219,-159,-11,0,0,0.669927 -20883,5115:218,-158,-11,0,0,0.670767 -20884,5115:217,-157,-11,0,0,0.671832 -20885,5115:216,-156,-11,0,0,0.672014 -20886,5115:215,-155,-11,0,0,0.67113 -20887,5115:114,-154,-11,0,0,0.669472 -20888,5115:113,-153,-11,0,0,0.668722 -20889,5115:112,-152,-11,0,0,0.668745 -20890,5115:111,-151,-11,0,0,0.668586 -20891,5115:110,-150,-11,0,0,0.667583 -20892,5114:219,-149,-11,0,0,0.666761 -20893,5114:218,-148,-11,0,0,0.666191 -20894,5114:217,-147,-11,0,0,0.664131 -20895,5114:216,-146,-11,0,0,0.662019 -20896,5114:215,-145,-11,0,0,0.660523 -20897,5114:114,-144,-11,0,0,0.659671 -20898,5114:113,-143,-11,0,0,0.658932 -20899,5114:112,-142,-11,0,0,0.658424 -20900,5114:111,-141,-11,0,0,0.658516 -20901,5114:110,-140,-11,0,0,0.657198 -20902,5113:219,-139,-11,0,0,0.656735 -20903,5113:218,-138,-11,0,0,0.655112 -20904,5113:217,-137,-11,0,0,0.653927 -20905,5113:216,-136,-11,0,0,0.651201 -20906,5113:215,-135,-11,0,0,0.650407 -20907,5113:114,-134,-11,0,0,0.647575 -20908,5113:113,-133,-11,0,0,0.64605 -20909,5113:112,-132,-11,0,0,0.644969 -20910,5113:111,-131,-11,0,0,0.641786 -20911,5113:110,-130,-11,0,0,0.638852 -20912,5112:219,-129,-11,0,0,0.633835 -20913,5112:218,-128,-11,0,0,0.630203 -20914,5112:217,-127,-11,0,0,0.628526 -20915,5112:216,-126,-11,0,0,0.623378 -20916,5112:215,-125,-11,0,0,0.621422 -20917,5112:114,-124,-11,0,0,0.618783 -20918,5112:113,-123,-11,0,0,0.614972 -20919,5112:112,-122,-11,0,0,0.61134 -20920,5112:111,-121,-11,0,0,0.608652 -20921,5112:110,-120,-11,0,0,0.605122 -20922,5111:219,-119,-11,0,0,0.601113 -20923,5111:218,-118,-11,0,0,0.595211 -20924,5111:217,-117,-11,0,0,0.588585 -20925,5111:216,-116,-11,0,0,0.582126 -20926,5111:215,-115,-11,0,0,0.57476 -20927,5111:114,-114,-11,0,0,0.567992 -20928,5111:113,-113,-11,0,0,0.562943 -20929,5111:112,-112,-11,0,0,0.557273 -20930,5111:111,-111,-11,0,0,0.554812 -20931,5111:110,-110,-11,0,0,0.550393 -20932,5110:219,-109,-11,0,0,0.544564 -20933,5110:218,-108,-11,0,0,0.535171 -20934,5110:217,-107,-11,0,0,0.527112 -20935,5110:216,-106,-11,0,0,0.522167 -20936,5110:215,-105,-11,0,0,0.515755 -20937,5110:114,-104,-11,0,0,0.511109 -20938,5110:113,-103,-11,0,0,0.505793 -20939,5110:112,-102,-11,0,0,0.498679 -20940,5110:111,-101,-11,0,0,0.492027 -20941,5110:110,-100,-11,0,0,0.483684 -20942,5109:219,-99,-11,0,0,0.477862 -20943,5109:218,-98,-11,0,0,0.474966 -20944,5109:217,-97,-11,0,0,0.46813 -20945,5109:216,-96,-11,0,0,0.46409 -20946,5109:215,-95,-11,0,0,0.460489 -20947,5109:114,-94,-11,0,0,0.455899 -20948,5109:113,-93,-11,0,0,0.4519 -20949,5109:112,-92,-11,0,0,0.4441 -20950,5109:111,-91,-11,0,0,0.441919 -20951,5109:110,-90,-11,0,0,0.439995 -20952,5108:219,-89,-11,0,0,0.430046 -20953,5108:218,-88,-11,0,0,0.431154 -20954,5108:217,-87,-11,0,0,0.431885 -20955,5108:216,-86,-11,0,0,0.431582 -20956,5108:215,-85,-11,0,0,0.437768 -20957,5108:114,-84,-11,0,0,0.4404 -20958,5108:113,-83,-11,0,0,0.447501 -20959,5108:112,-82,-11,0,0,0.451696 -20960,5108:111,-81,-11,0,0,0.455923 -20961,5108:110,-80,-11,0,0,0.461076 -20962,5107:219,-79,-11,0,0,0.472302 -20963,5107:218,-78,-11,0,0,0.465778 -20964,5107:217,-77,-11,0,0,0.439185 -20965,5103:219,-39,-11,0,0,0.620914 -20966,5103:218,-38,-11,0,0,0.631615 -20967,5103:217,-37,-11,0,0,0.625907 -20968,5103:216,-36,-11,0,0,0.624318 -20969,5103:215,-35,-11,0,0,0.622944 -20970,5103:114,-34,-11,0,0,0.618517 -20971,5103:113,-33,-11,0,0,0.616211 -20972,5103:112,-32,-11,0,0,0.61256 -20973,5103:111,-31,-11,0,0,0.608358 -20974,5103:110,-30,-11,0,0,0.605417 -20975,5102:219,-29,-11,0,0,0.601606 -20976,5102:218,-28,-11,0,0,0.596275 -20977,5102:217,-27,-11,0,0,0.594344 -20978,5102:216,-26,-11,0,0,0.587141 -20979,5102:215,-25,-11,0,0,0.581851 -20980,5102:114,-24,-11,0,0,0.581576 -20981,5102:113,-23,-11,0,0,0.576316 -20982,5102:112,-22,-11,0,0,0.573605 -20983,5102:111,-21,-11,0,0,0.570511 -20984,5102:110,-20,-11,0,0,0.56663 -20985,5101:219,-19,-11,0,0,0.562538 -20986,5101:218,-18,-11,0,0,0.556664 -20987,5101:217,-17,-11,0,0,0.551435 -20988,5101:216,-16,-11,0,0,0.543646 -20989,5101:215,-15,-11,0,0,0.539182 -20990,5101:114,-14,-11,0,0,0.532333 -20991,5101:113,-13,-11,0,0,0.528136 -20992,5101:112,-12,-11,0,0,0.523448 -20993,5101:111,-11,-11,0,0,0.519269 -20994,5101:110,-10,-11,0,0,0.515062 -20995,5100:219,-9,-11,0,0,0.51116 -20996,5100:218,-8,-11,0,0,0.507283 -20997,5100:217,-7,-11,0,0,0.504253 -20998,5100:216,-6,-11,0,0,0.506101 -20999,5100:215,-5,-11,0,0,0.504869 -21000,5100:114,-4,-11,0,0,0.503045 -21001,5100:113,-3,-11,0,0,0.504663 -21002,5100:112,-2,-11,0,0,0.504715 -21003,5100:111,-1,-11,0,0,0.507129 -21004,3100:111,0,-11,0,0,0.505614 -21005,3100:111,1,-11,0,0,0.504971 -21006,3100:112,2,-11,0,0,0.502249 -21007,3100:113,3,-11,0,0,0.502223 -21008,3100:114,4,-11,0,0,0.506153 -21009,3100:215,5,-11,0,0,0.512136 -21010,3100:216,6,-11,0,0,0.522372 -21011,3100:217,7,-11,0,0,0.527599 -21012,3100:218,8,-11,0,0,0.536934 -21013,3100:219,9,-11,0,0,0.55973 -21014,3101:110,10,-11,0,0,0.578072 -21015,3101:111,11,-11,0,0,0.57358 -21016,3101:112,12,-11,0,0,0.543187 -21017,3104:111,41,-11,0,0,0.673574 -21018,3104:112,42,-11,0,0,0.673371 -21019,3104:113,43,-11,0,0,0.671153 -21020,3104:114,44,-11,0,0,0.674793 -21021,3104:215,45,-11,0,0,0.67774 -21022,3104:216,46,-11,0,0,0.664062 -21023,3104:217,47,-11,0,0,0.656295 -21024,3104:218,48,-11,0,0,0.658771 -21025,3105:110,50,-11,0,0,0.63769 -21026,3105:111,51,-11,0,0,0.638473 -21027,3105:112,52,-11,0,0,0.639776 -21028,3105:113,53,-11,0,0,0.638307 -21029,3105:114,54,-11,0,0,0.641432 -21030,3105:215,55,-11,0,0,0.644545 -21031,3105:216,56,-11,0,0,0.645815 -21032,3105:217,57,-11,0,0,0.644828 -21033,3105:218,58,-11,0,0,0.642565 -21034,3105:219,59,-11,0,0,0.639918 -21035,3106:110,60,-11,0,0,0.636574 -21036,3106:111,61,-11,0,0,0.636431 -21037,3106:112,62,-11,0,0,0.632881 -21038,3106:113,63,-11,0,0,0.629772 -21039,3106:114,64,-11,0,0,0.630778 -21040,3106:215,65,-11,0,0,0.632236 -21041,3106:216,66,-11,0,0,0.635027 -21042,3106:217,67,-11,0,0,0.63833 -21043,3106:218,68,-11,0,0,0.640391 -21044,3106:219,69,-11,0,0,0.641337 -21045,3107:110,70,-11,0,0,0.640107 -21046,3107:111,71,-11,0,0,0.638069 -21047,3107:112,72,-11,0,0,0.638662 -21048,3107:114,74,-11,0,0,0.642329 -21049,3107:215,75,-11,0,0,0.643932 -21050,3107:216,76,-11,0,0,0.64431 -21051,3107:217,77,-11,0,0,0.643202 -21052,3107:218,78,-11,0,0,0.640935 -21053,3107:219,79,-11,0,0,0.637856 -21054,3108:110,80,-11,0,0,0.633406 -21055,3108:111,81,-11,0,0,0.629221 -21056,3108:112,82,-11,0,0,0.625402 -21057,3108:113,83,-11,0,0,0.621881 -21058,3108:114,84,-11,0,0,0.61842 -21059,3108:215,85,-11,0,0,0.61592 -21060,3108:216,86,-11,0,0,0.613559 -21061,3108:217,87,-11,0,0,0.612609 -21062,3108:218,88,-11,0,0,0.612341 -21063,3108:219,89,-11,0,0,0.612755 -21064,3109:110,90,-11,0,0,0.614461 -21065,3109:111,91,-11,0,0,0.617134 -21066,3109:112,92,-11,0,0,0.617547 -21067,3109:113,93,-11,0,0,0.614339 -21068,3109:114,94,-11,0,0,0.610705 -21069,3109:215,95,-11,0,0,0.60777 -21070,3109:216,96,-11,0,0,0.606594 -21071,3109:217,97,-11,0,0,0.606986 -21072,3109:218,98,-11,0,0,0.605441 -21073,3109:219,99,-11,0,0,0.608554 -21074,3110:110,100,-11,0,0,0.614728 -21075,3110:111,101,-11,0,0,0.62557 -21076,3110:112,102,-11,0,0,0.629581 -21077,3110:113,103,-11,0,0,0.633168 -21078,3110:114,104,-11,0,0,0.636526 -21079,3110:215,105,-11,0,0,0.630203 -21080,3110:216,106,-11,0,0,0.627037 -21081,3110:217,107,-11,0,0,0.637286 -21082,3110:218,108,-11,0,0,0.647482 -21083,3110:219,109,-11,0,0,0.657407 -21084,3111:110,110,-11,0,0,0.659209 -21085,3111:111,111,-11,0,0,0.663145 -21086,3111:112,112,-11,0,0,0.668062 -21087,3111:113,113,-11,0,0,0.673168 -21088,3111:114,114,-11,0,0,0.677336 -21089,3111:215,115,-11,0,0,0.678166 -21090,3111:216,116,-11,0,0,0.67792 -21091,3111:217,117,-11,0,0,0.679532 -21092,3111:218,118,-11,0,0,0.680159 -21093,3111:219,119,-11,0,0,0.680382 -21094,3112:110,120,-11,0,0,0.679644 -21095,3112:111,121,-11,0,0,0.681632 -21096,3112:112,122,-11,0,0,0.681609 -21097,3112:113,123,-11,0,0,0.683991 -21098,3112:114,124,-11,0,0,0.691054 -21099,3112:215,125,-11,0,0,0.697292 -21100,3112:216,126,-11,0,0,0.699024 -21101,3112:217,127,-11,0,0,0.698029 -21102,3112:218,128,-11,0,0,0.69924 -21103,3112:219,129,-11,0,0,0.703244 -21104,3113:110,130,-11,0,0,0.714355 -21105,3113:217,137,-11,0,0,0.70485 -21106,3113:218,138,-11,0,0,0.683835 -21107,3113:219,139,-11,0,0,0.677224 -21108,3114:110,140,-11,0,0,0.682813 -21109,3114:111,141,-11,0,0,0.68718 -21110,3114:114,144,-11,0,0,0.664108 -21111,3114:215,145,-11,0,0,0.641904 -21112,3114:216,146,-11,0,0,0.642612 -21113,3114:217,147,-11,0,0,0.643603 -21114,3114:218,148,-11,0,0,0.648607 -21115,3114:219,149,-11,0,0,0.652787 -21116,3115:110,150,-11,0,0,0.653624 -21117,3115:111,151,-11,0,0,0.656619 -21118,3115:112,152,-11,0,0,0.655321 -21119,3115:113,153,-11,0,0,0.657638 -21120,3115:114,154,-11,0,0,0.659855 -21121,3115:215,155,-11,0,0,0.660478 -21122,3115:216,156,-11,0,0,0.658308 -21123,3115:217,157,-11,0,0,0.654183 -21124,3115:218,158,-11,0,0,0.651458 -21125,3115:219,159,-11,0,0,0.649379 -21126,3116:110,160,-11,0,0,0.646872 -21127,3116:111,161,-11,0,0,0.645134 -21128,3116:112,162,-11,0,0,0.64478 -21129,3116:113,163,-11,0,0,0.644898 -21130,3116:114,164,-11,0,0,0.645698 -21131,3116:215,165,-11,0,0,0.646215 -21132,3116:216,166,-11,0,0,0.646801 -21133,3116:217,167,-11,0,0,0.646801 -21134,3116:218,168,-11,0,0,0.646426 -21135,3116:219,169,-11,0,0,0.649356 -21136,3117:110,170,-11,0,0,0.649613 -21137,3117:111,171,-11,0,0,0.648841 -21138,3117:112,172,-11,0,0,0.64856 -21139,3117:113,173,-11,0,0,0.646849 -21140,3117:114,174,-11,0,0,0.644498 -21141,3117:215,175,-11,0,0,0.643532 -21142,3117:216,176,-11,0,0,0.643084 -21143,3117:217,177,-11,0,0,0.642117 -21144,3117:218,178,-11,0,0,0.642872 -21145,3117:219,179,-11,0,0,0.643932 -21146,3118:110,180,-11,0,0,0.645345 -21147,5118:100,-180,-10,0,0,0.655437 -21148,5117:209,-179,-10,0,0,0.658146 -21149,5117:208,-178,-10,0,0,0.66103 -21150,5117:207,-177,-10,0,0,0.66365 -21151,5117:206,-176,-10,0,0,0.667241 -21152,5117:205,-175,-10,0,0,0.669768 -21153,5117:104,-174,-10,0,0,0.670495 -21154,5117:103,-173,-10,0,0,0.669541 -21155,5117:102,-172,-10,0,0,0.668358 -21156,5117:101,-171,-10,0,0,0.668312 -21157,5117:100,-170,-10,0,0,0.668768 -21158,5116:209,-169,-10,0,0,0.668608 -21159,5116:208,-168,-10,0,0,0.668631 -21160,5116:207,-167,-10,0,0,0.670223 -21161,5116:206,-166,-10,0,0,0.673168 -21162,5116:205,-165,-10,0,0,0.673665 -21163,5116:104,-164,-10,0,0,0.674455 -21164,5116:103,-163,-10,0,0,0.674906 -21165,5116:102,-162,-10,0,0,0.675424 -21166,5116:101,-161,-10,0,0,0.676324 -21167,5116:100,-160,-10,0,0,0.67468 -21168,5115:209,-159,-10,0,0,0.675131 -21169,5115:208,-158,-10,0,0,0.674883 -21170,5115:207,-157,-10,0,0,0.674771 -21171,5115:206,-156,-10,0,0,0.675154 -21172,5115:205,-155,-10,0,0,0.673371 -21173,5115:104,-154,-10,0,0,0.671221 -21174,5115:103,-153,-10,0,0,0.669836 -21175,5115:102,-152,-10,0,0,0.669131 -21176,5115:101,-151,-10,0,0,0.667902 -21177,5115:100,-150,-10,0,0,0.667446 -21178,5114:209,-149,-10,0,0,0.666579 -21179,5114:208,-148,-10,0,0,0.665139 -21180,5114:207,-147,-10,0,0,0.663099 -21181,5114:206,-146,-10,0,0,0.662226 -21182,5114:205,-145,-10,0,0,0.660869 -21183,5114:104,-144,-10,0,0,0.658978 -21184,5114:103,-143,-10,0,0,0.656712 -21185,5114:102,-142,-10,0,0,0.655669 -21186,5114:101,-141,-10,0,0,0.653881 -21187,5114:100,-140,-10,0,0,0.652461 -21188,5113:209,-139,-10,0,0,0.651762 -21189,5113:208,-138,-10,0,0,0.648817 -21190,5113:207,-137,-10,0,0,0.647646 -21191,5113:206,-136,-10,0,0,0.64478 -21192,5113:205,-135,-10,0,0,0.642471 -21193,5113:104,-134,-10,0,0,0.64103 -21194,5113:103,-133,-10,0,0,0.639586 -21195,5113:102,-132,-10,0,0,0.637167 -21196,5113:101,-131,-10,0,0,0.632833 -21197,5113:100,-130,-10,0,0,0.633024 -21198,5112:209,-129,-10,0,0,0.629892 -21199,5112:208,-128,-10,0,0,0.62545 -21200,5112:207,-127,-10,0,0,0.621736 -21201,5112:206,-126,-10,0,0,0.621688 -21202,5112:205,-125,-10,0,0,0.615336 -21203,5112:104,-124,-10,0,0,0.615433 -21204,5112:103,-123,-10,0,0,0.609874 -21205,5112:102,-122,-10,0,0,0.603476 -21206,5112:101,-121,-10,0,0,0.600226 -21207,5112:100,-120,-10,0,0,0.595508 -21208,5111:209,-119,-10,0,0,0.593427 -21209,5111:208,-118,-10,0,0,0.587639 -21210,5111:207,-117,-10,0,0,0.582626 -21211,5111:206,-116,-10,0,0,0.578046 -21212,5111:205,-115,-10,0,0,0.572222 -21213,5111:104,-114,-10,0,0,0.566731 -21214,5111:103,-113,-10,0,0,0.559502 -21215,5111:102,-112,-10,0,0,0.55466 -21216,5111:101,-111,-10,0,0,0.552374 -21217,5111:100,-110,-10,0,0,0.544029 -21218,5110:209,-109,-10,0,0,0.540126 -21219,5110:208,-108,-10,0,0,0.533996 -21220,5110:207,-107,-10,0,0,0.527624 -21221,5110:206,-106,-10,0,0,0.522679 -21222,5110:205,-105,-10,0,0,0.515524 -21223,5110:104,-104,-10,0,0,0.509132 -21224,5110:103,-103,-10,0,0,0.50474 -21225,5110:102,-102,-10,0,0,0.502378 -21226,5110:101,-101,-10,0,0,0.496932 -21227,5110:100,-100,-10,0,0,0.490922 -21228,5109:209,-99,-10,0,0,0.485994 -21229,5109:208,-98,-10,0,0,0.480811 -21230,5109:207,-97,-10,0,0,0.476964 -21231,5109:206,-96,-10,0,0,0.472686 -21232,5109:205,-95,-10,0,0,0.464985 -21233,5109:104,-94,-10,0,0,0.457658 -21234,5109:103,-93,-10,0,0,0.458397 -21235,5109:102,-92,-10,0,0,0.457862 -21236,5109:101,-91,-10,0,0,0.459647 -21237,5109:100,-90,-10,0,0,0.458448 -21238,5108:209,-89,-10,0,0,0.456179 -21239,5108:208,-88,-10,0,0,0.454497 -21240,5108:207,-87,-10,0,0,0.45804 -21241,5108:206,-86,-10,0,0,0.462098 -21242,5108:205,-85,-10,0,0,0.464474 -21243,5108:104,-84,-10,0,0,0.467133 -21248,5107:209,-79,-10,0,0,0.486635 -21249,5107:208,-78,-10,0,0,0.463426 -21250,5103:207,-37,-10,0,0,0.626629 -21251,5103:206,-36,-10,0,0,0.625402 -21252,5103:205,-35,-10,0,0,0.622774 -21253,5103:104,-34,-10,0,0,0.619898 -21254,5103:103,-33,-10,0,0,0.616357 -21255,5103:102,-32,-10,0,0,0.614412 -21256,5103:101,-31,-10,0,0,0.609067 -21257,5103:100,-30,-10,0,0,0.606912 -21258,5102:209,-29,-10,0,0,0.602541 -21259,5102:208,-28,-10,0,0,0.598598 -21260,5102:207,-27,-10,0,0,0.59427 -21261,5102:206,-26,-10,0,0,0.591046 -21262,5102:205,-25,-10,0,0,0.588634 -21263,5102:104,-24,-10,0,0,0.583175 -21264,5102:103,-23,-10,0,0,0.582526 -21265,5102:102,-22,-10,0,0,0.577821 -21266,5102:101,-21,-10,0,0,0.573303 -21267,5102:100,-20,-10,0,0,0.569051 -21268,5101:209,-19,-10,0,0,0.563019 -21269,5101:208,-18,-10,0,0,0.557095 -21270,5101:207,-17,-10,0,0,0.55268 -21271,5101:206,-16,-10,0,0,0.551892 -21272,5101:205,-15,-10,0,0,0.551078 -21273,5101:104,-14,-10,0,0,0.54209 -21274,5101:103,-13,-10,0,0,0.537701 -21275,5101:102,-12,-10,0,0,0.535095 -21276,5101:101,-11,-10,0,0,0.533177 -21277,5101:100,-10,-10,0,0,0.534685 -21278,5100:209,-9,-10,0,0,0.526881 -21279,5100:208,-8,-10,0,0,0.523807 -21280,5100:207,-7,-10,0,0,0.521884 -21281,5100:206,-6,-10,0,0,0.528008 -21282,5100:205,-5,-10,0,0,0.522141 -21283,5100:104,-4,-10,0,0,0.522961 -21284,5100:103,-3,-10,0,0,0.521269 -21285,5100:102,-2,-10,0,0,0.519141 -21286,5100:101,-1,-10,0,0,0.517884 -21287,3100:101,0,-10,0,0,0.519679 -21288,3100:101,1,-10,0,0,0.521141 -21289,3100:102,2,-10,0,0,0.519295 -21290,3100:103,3,-10,0,0,0.523602 -21291,3100:104,4,-10,0,0,0.530977 -21292,3100:205,5,-10,0,0,0.537241 -21293,3100:206,6,-10,0,0,0.544538 -21294,3100:207,7,-10,0,0,0.550722 -21295,3100:208,8,-10,0,0,0.565999 -21296,3100:209,9,-10,0,0,0.586343 -21297,3101:100,10,-10,0,0,0.597733 -21298,3101:101,11,-10,0,0,0.606668 -21299,3101:102,12,-10,0,0,0.609312 -21300,3101:103,13,-10,0,0,0.578247 -21301,3104:101,41,-10,0,0,0.66587 -21302,3104:102,42,-10,0,0,0.661583 -21303,3104:104,44,-10,0,0,0.658701 -21304,3104:205,45,-10,0,0,0.651902 -21305,3104:206,46,-10,0,0,0.647482 -21306,3104:207,47,-10,0,0,0.64565 -21307,3104:208,48,-10,0,0,0.642188 -21308,3104:209,49,-10,0,0,0.637808 -21309,3105:100,50,-10,0,0,0.639539 -21310,3105:101,51,-10,0,0,0.643202 -21311,3105:102,52,-10,0,0,0.646943 -21312,3105:103,53,-10,0,0,0.646285 -21313,3105:104,54,-10,0,0,0.648208 -21314,3105:205,55,-10,0,0,0.651435 -21315,3105:206,56,-10,0,0,0.653112 -21316,3105:207,57,-10,0,0,0.653183 -21317,3105:208,58,-10,0,0,0.651178 -21318,3105:209,59,-10,0,0,0.648467 -21319,3106:100,60,-10,0,0,0.64565 -21320,3106:101,61,-10,0,0,0.64155 -21321,3106:102,62,-10,0,0,0.638638 -21322,3106:103,63,-10,0,0,0.641361 -21323,3106:104,64,-10,0,0,0.644969 -21324,3106:205,65,-10,0,0,0.648489 -21325,3106:206,66,-10,0,0,0.650851 -21326,3106:207,67,-10,0,0,0.652158 -21327,3106:208,68,-10,0,0,0.652671 -21328,3106:209,69,-10,0,0,0.65253 -21329,3107:100,70,-10,0,0,0.652134 -21330,3107:101,71,-10,0,0,0.652088 -21331,3107:102,72,-10,0,0,0.652601 -21332,3107:104,74,-10,0,0,0.651389 -21333,3107:205,75,-10,0,0,0.649473 -21334,3107:206,76,-10,0,0,0.647529 -21335,3107:207,77,-10,0,0,0.644945 -21336,3107:208,78,-10,0,0,0.641975 -21337,3107:209,79,-10,0,0,0.638402 -21338,3108:100,80,-10,0,0,0.635313 -21339,3108:101,81,-10,0,0,0.632356 -21340,3108:102,82,-10,0,0,0.629461 -21341,3108:103,83,-10,0,0,0.626461 -21342,3108:104,84,-10,0,0,0.624004 -21343,3108:205,85,-10,0,0,0.621688 -21344,3108:206,86,-10,0,0,0.620237 -21345,3108:207,87,-10,0,0,0.619705 -21346,3108:208,88,-10,0,0,0.619195 -21347,3108:209,89,-10,0,0,0.618105 -21348,3109:100,90,-10,0,0,0.617571 -21349,3109:101,91,-10,0,0,0.618638 -21350,3109:102,92,-10,0,0,0.621978 -21351,3109:103,93,-10,0,0,0.623836 -21352,3109:104,94,-10,0,0,0.622799 -21353,3109:205,95,-10,0,0,0.620431 -21354,3109:206,96,-10,0,0,0.618493 -21355,3109:207,97,-10,0,0,0.616576 -21356,3109:208,98,-10,0,0,0.615336 -21357,3109:209,99,-10,0,0,0.616916 -21358,3110:100,100,-10,0,0,0.622895 -21359,3110:101,101,-10,0,0,0.630514 -21360,3110:102,102,-10,0,0,0.63343 -21361,3110:103,103,-10,0,0,0.63374 -21362,3110:104,104,-10,0,0,0.635764 -21363,3110:205,105,-10,0,0,0.637975 -21364,3110:206,106,-10,0,0,0.636122 -21365,3110:207,107,-10,0,0,0.636098 -21366,3110:208,108,-10,0,0,0.648911 -21367,3110:209,109,-10,0,0,0.660846 -21368,3111:100,110,-10,0,0,0.660478 -21369,3111:101,111,-10,0,0,0.664085 -21370,3111:102,112,-10,0,0,0.669245 -21371,3111:103,113,-10,0,0,0.67319 -21372,3111:104,114,-10,0,0,0.677313 -21373,3111:205,115,-10,0,0,0.680248 -21374,3111:206,116,-10,0,0,0.681632 -21375,3111:207,117,-10,0,0,0.681743 -21376,3111:208,118,-10,0,0,0.681677 -21377,3111:209,119,-10,0,0,0.681609 -21378,3112:100,120,-10,0,0,0.680382 -21379,3112:101,121,-10,0,0,0.680739 -21380,3112:102,122,-10,0,0,0.68408 -21381,3112:103,123,-10,0,0,0.685454 -21382,3112:104,124,-10,0,0,0.683435 -21383,3112:205,125,-10,0,0,0.689692 -21384,3112:206,126,-10,0,0,0.6974 -21385,3112:207,127,-10,0,0,0.699348 -21386,3112:208,128,-10,0,0,0.703051 -21387,3112:209,129,-10,0,0,0.706343 -21388,3113:100,130,-10,0,0,0.714355 -21389,3113:102,132,-10,0,0,0.714355 -21390,3113:104,134,-10,0,0,0.714355 -21391,3113:205,135,-10,0,0,0.710101 -21392,3113:206,136,-10,0,0,0.704336 -21393,3113:207,137,-10,0,0,0.698224 -21394,3113:208,138,-10,0,0,0.673349 -21395,3113:209,139,-10,0,0,0.671606 -21396,3114:100,140,-10,0,0,0.678099 -21397,3114:101,141,-10,0,0,0.683346 -21398,3114:102,142,-10,0,0,0.688437 -21399,3114:104,144,-10,0,0,0.656156 -21400,3114:205,145,-10,0,0,0.649192 -21401,3114:206,146,-10,0,0,0.651924 -21402,3114:207,147,-10,0,0,0.647459 -21403,3114:208,148,-10,0,0,0.646731 -21404,3114:209,149,-10,0,0,0.650875 -21405,3115:100,150,-10,0,0,0.654136 -21406,3115:101,151,-10,0,0,0.66326 -21407,3115:102,152,-10,0,0,0.666465 -21408,3115:103,153,-10,0,0,0.666076 -21409,3115:104,154,-10,0,0,0.664383 -21410,3115:205,155,-10,0,0,0.671402 -21411,3115:206,156,-10,0,0,0.67172 -21412,3115:207,157,-10,0,0,0.669427 -21413,3115:208,158,-10,0,0,0.66879 -21414,3115:209,159,-10,0,0,0.667332 -21415,3116:100,160,-10,0,0,0.661697 -21416,3116:101,161,-10,0,0,0.657708 -21417,3116:102,162,-10,0,0,0.658285 -21418,3116:103,163,-10,0,0,0.658863 -21419,3116:104,164,-10,0,0,0.659647 -21420,3116:205,165,-10,0,0,0.659901 -21421,3116:206,166,-10,0,0,0.659694 -21422,3116:207,167,-10,0,0,0.660339 -21423,3116:208,168,-10,0,0,0.661168 -21424,3116:209,169,-10,0,0,0.661744 -21425,3117:100,170,-10,0,0,0.661214 -21426,3117:101,171,-10,0,0,0.659971 -21427,3117:102,172,-10,0,0,0.658216 -21428,3117:103,173,-10,0,0,0.655344 -21429,3117:104,174,-10,0,0,0.653322 -21430,3117:205,175,-10,0,0,0.653508 -21431,3117:206,176,-10,0,0,0.653322 -21432,3117:207,177,-10,0,0,0.653974 -21433,3117:208,178,-10,0,0,0.653904 -21434,3117:209,179,-10,0,0,0.653881 -21435,3118:100,180,-10,0,0,0.655437 -21436,5018:390,-180,-9,0,0,0.664246 -21437,5017:499,-179,-9,0,0,0.666191 -21438,5017:498,-178,-9,0,0,0.668085 -21439,5017:497,-177,-9,0,0,0.670699 -21440,5017:496,-176,-9,0,0,0.672784 -21441,5017:495,-175,-9,0,0,0.673439 -21442,5017:394,-174,-9,0,0,0.673733 -21443,5017:393,-173,-9,0,0,0.673755 -21444,5017:392,-172,-9,0,0,0.673326 -21445,5017:391,-171,-9,0,0,0.673032 -21446,5017:390,-170,-9,0,0,0.674026 -21447,5016:499,-169,-9,0,0,0.674793 -21448,5016:498,-168,-9,0,0,0.675334 -21449,5016:497,-167,-9,0,0,0.675109 -21450,5016:496,-166,-9,0,0,0.675379 -21451,5016:495,-165,-9,0,0,0.676437 -21452,5016:394,-164,-9,0,0,0.677852 -21453,5016:393,-163,-9,0,0,0.678211 -21454,5016:392,-162,-9,0,0,0.678211 -21455,5016:391,-161,-9,0,0,0.678413 -21456,5016:390,-160,-9,0,0,0.678323 -21457,5015:499,-159,-9,0,0,0.678189 -21458,5015:498,-158,-9,0,0,0.677874 -21459,5015:497,-157,-9,0,0,0.676909 -21460,5015:496,-156,-9,0,0,0.675424 -21461,5015:495,-155,-9,0,0,0.673258 -21462,5015:394,-154,-9,0,0,0.671923 -21463,5015:393,-153,-9,0,0,0.670336 -21464,5015:392,-152,-9,0,0,0.668494 -21465,5015:391,-151,-9,0,0,0.66699 -21466,5015:390,-150,-9,0,0,0.665665 -21467,5014:499,-149,-9,0,0,0.66507 -21468,5014:498,-148,-9,0,0,0.661237 -21469,5014:497,-147,-9,0,0,0.659579 -21470,5014:496,-146,-9,0,0,0.658262 -21471,5014:495,-145,-9,0,0,0.658816 -21472,5014:394,-144,-9,0,0,0.656318 -21473,5014:393,-143,-9,0,0,0.654136 -21474,5014:392,-142,-9,0,0,0.652018 -21475,5014:391,-141,-9,0,0,0.650174 -21476,5014:390,-140,-9,0,0,0.648654 -21477,5013:499,-139,-9,0,0,0.646261 -21478,5013:498,-138,-9,0,0,0.643532 -21479,5013:497,-137,-9,0,0,0.641928 -21480,5013:496,-136,-9,0,0,0.64025 -21481,5013:495,-135,-9,0,0,0.636288 -21482,5013:394,-134,-9,0,0,0.63312 -21483,5013:393,-133,-9,0,0,0.630011 -21484,5013:392,-132,-9,0,0,0.628838 -21485,5013:391,-131,-9,0,0,0.624294 -21486,5013:390,-130,-9,0,0,0.622436 -21487,5012:499,-129,-9,0,0,0.618396 -21488,5012:498,-128,-9,0,0,0.617183 -21489,5012:497,-127,-9,0,0,0.613681 -21490,5012:496,-126,-9,0,0,0.608897 -21491,5012:495,-125,-9,0,0,0.607329 -21492,5012:394,-124,-9,0,0,0.603869 -21493,5012:393,-123,-9,0,0,0.59998 -21494,5012:392,-122,-9,0,0,0.595805 -21495,5012:391,-121,-9,0,0,0.591964 -21496,5012:390,-120,-9,0,0,0.587738 -21497,5011:499,-119,-9,0,0,0.583774 -21498,5011:498,-118,-9,0,0,0.57717 -21499,5011:497,-117,-9,0,0,0.571745 -21500,5011:496,-116,-9,0,0,0.567942 -21501,5011:495,-115,-9,0,0,0.563145 -21502,5011:394,-114,-9,0,0,0.557146 -21503,5011:393,-113,-9,0,0,0.551359 -21504,5011:392,-112,-9,0,0,0.544945 -21505,5011:391,-111,-9,0,0,0.539948 -21506,5011:390,-110,-9,0,0,0.535836 -21507,5010:499,-109,-9,0,0,0.532077 -21508,5010:498,-108,-9,0,0,0.527599 -21509,5010:497,-107,-9,0,0,0.523243 -21510,5010:496,-106,-9,0,0,0.519038 -21511,5010:495,-105,-9,0,0,0.514625 -21512,5010:394,-104,-9,0,0,0.510904 -21513,5010:393,-103,-9,0,0,0.508849 -21514,5010:392,-102,-9,0,0,0.505819 -21515,5010:391,-101,-9,0,0,0.501016 -21516,5010:390,-100,-9,0,0,0.495108 -21517,5009:499,-99,-9,0,0,0.492668 -21518,5009:498,-98,-9,0,0,0.491898 -21519,5009:497,-97,-9,0,0,0.488638 -21520,5009:496,-96,-9,0,0,0.486225 -21521,5009:495,-95,-9,0,0,0.478708 -21522,5009:394,-94,-9,0,0,0.476068 -21523,5009:393,-93,-9,0,0,0.480093 -21524,5009:392,-92,-9,0,0,0.485146 -21525,5009:391,-91,-9,0,0,0.484454 -21526,5009:390,-90,-9,0,0,0.488304 -21527,5008:499,-89,-9,0,0,0.488278 -21528,5008:498,-88,-9,0,0,0.488175 -21529,5008:497,-87,-9,0,0,0.488124 -21530,5008:496,-86,-9,0,0,0.48951 -21531,5008:495,-85,-9,0,0,0.489792 -21532,5008:394,-84,-9,0,0,0.491025 -21533,5008:393,-83,-9,0,0,0.4929 -21534,5008:392,-82,-9,0,0,0.495005 -21535,5008:391,-81,-9,0,0,0.492951 -21536,5008:390,-80,-9,0,0,0.488278 -21537,5007:499,-79,-9,0,0,0.480169 -21538,5003:496,-36,-9,0,0,0.62316 -21539,5003:495,-35,-9,0,0,0.625209 -21540,5003:394,-34,-9,0,0,0.618905 -21541,5003:393,-33,-9,0,0,0.615263 -21542,5003:392,-32,-9,0,0,0.611633 -21543,5003:391,-31,-9,0,0,0.609141 -21544,5003:390,-30,-9,0,0,0.604729 -21545,5002:499,-29,-9,0,0,0.601163 -21546,5002:498,-28,-9,0,0,0.598153 -21547,5002:497,-27,-9,0,0,0.595508 -21548,5002:496,-26,-9,0,0,0.591791 -21549,5002:495,-25,-9,0,0,0.589355 -21550,5002:394,-24,-9,0,0,0.585621 -21551,5002:393,-23,-9,0,0,0.581526 -21552,5002:392,-22,-9,0,0,0.57965 -21553,5002:391,-21,-9,0,0,0.57481 -21554,5002:390,-20,-9,0,0,0.572574 -21555,5001:499,-19,-9,0,0,0.569227 -21556,5001:498,-18,-9,0,0,0.565166 -21557,5001:497,-17,-9,0,0,0.562185 -21558,5001:496,-16,-9,0,0,0.560793 -21559,5001:495,-15,-9,0,0,0.556537 -21560,5001:394,-14,-9,0,0,0.554914 -21561,5001:393,-13,-9,0,0,0.550367 -21562,5001:392,-12,-9,0,0,0.54818 -21563,5001:391,-11,-9,0,0,0.547721 -21564,5001:390,-10,-9,0,0,0.545302 -21565,5000:499,-9,-9,0,0,0.54033 -21566,5000:498,-8,-9,0,0,0.539054 -21567,5000:497,-7,-9,0,0,0.537062 -21568,5000:496,-6,-9,0,0,0.538697 -21569,5000:495,-5,-9,0,0,0.537675 -21570,5000:394,-4,-9,0,0,0.535043 -21571,5000:393,-3,-9,0,0,0.533459 -21572,5000:392,-2,-9,0,0,0.534149 -21573,5000:391,-1,-9,0,0,0.534635 -21574,3000:391,0,-9,0,0,0.538033 -21575,3000:391,1,-9,0,0,0.541479 -21576,3000:392,2,-9,0,0,0.543263 -21577,3000:393,3,-9,0,0,0.548307 -21578,3000:394,4,-9,0,0,0.553442 -21579,3000:495,5,-9,0,0,0.559654 -21580,3000:496,6,-9,0,0,0.56963 -21581,3000:497,7,-9,0,0,0.584349 -21582,3000:498,8,-9,0,0,0.597141 -21583,3000:499,9,-9,0,0,0.607378 -21584,3001:390,10,-9,0,0,0.614363 -21585,3001:391,11,-9,0,0,0.623667 -21586,3001:392,12,-9,0,0,0.62345 -21587,3001:393,13,-9,0,0,0.589331 -21588,3004:390,40,-9,0,0,0.660039 -21589,3004:391,41,-9,0,0,0.664062 -21590,3004:392,42,-9,0,0,0.660892 -21591,3004:393,43,-9,0,0,0.658308 -21592,3004:394,44,-9,0,0,0.655622 -21593,3004:495,45,-9,0,0,0.65288 -21594,3004:496,46,-9,0,0,0.648982 -21595,3004:497,47,-9,0,0,0.64652 -21596,3004:498,48,-9,0,0,0.646167 -21597,3004:499,49,-9,0,0,0.648373 -21598,3005:390,50,-9,0,0,0.651272 -21599,3005:391,51,-9,0,0,0.654067 -21600,3005:392,52,-9,0,0,0.655762 -21601,3005:393,53,-9,0,0,0.656202 -21602,3005:394,54,-9,0,0,0.659186 -21603,3005:495,55,-9,0,0,0.661628 -21604,3005:496,56,-9,0,0,0.662249 -21605,3005:497,57,-9,0,0,0.660431 -21606,3005:498,58,-9,0,0,0.65692 -21607,3005:499,59,-9,0,0,0.652694 -21608,3006:390,60,-9,0,0,0.647951 -21609,3006:391,61,-9,0,0,0.644027 -21610,3006:392,62,-9,0,0,0.640746 -21611,3006:393,63,-9,0,0,0.647716 -21612,3006:394,64,-9,0,0,0.649473 -21613,3006:495,65,-9,0,0,0.650851 -21614,3006:496,66,-9,0,0,0.652926 -21615,3006:497,67,-9,0,0,0.651948 -21616,3006:498,68,-9,0,0,0.65295 -21617,3006:499,69,-9,0,0,0.657059 -21618,3007:390,70,-9,0,0,0.657407 -21619,3007:391,71,-9,0,0,0.659279 -21620,3007:392,72,-9,0,0,0.660777 -21621,3007:394,74,-9,0,0,0.658632 -21622,3007:495,75,-9,0,0,0.657106 -21623,3007:496,76,-9,0,0,0.65655 -21624,3007:497,77,-9,0,0,0.656272 -21625,3007:498,78,-9,0,0,0.655576 -21626,3007:499,79,-9,0,0,0.653881 -21627,3008:390,80,-9,0,0,0.650244 -21628,3008:391,81,-9,0,0,0.645768 -21629,3008:392,82,-9,0,0,0.640439 -21630,3008:393,83,-9,0,0,0.634932 -21631,3008:394,84,-9,0,0,0.632929 -21632,3008:495,85,-9,0,0,0.632809 -21633,3008:496,86,-9,0,0,0.633072 -21634,3008:497,87,-9,0,0,0.632332 -21635,3008:498,88,-9,0,0,0.630347 -21636,3008:499,89,-9,0,0,0.62747 -21637,3009:390,90,-9,0,0,0.625715 -21638,3009:391,91,-9,0,0,0.626196 -21639,3009:392,92,-9,0,0,0.628141 -21640,3009:393,93,-9,0,0,0.63006 -21641,3009:394,94,-9,0,0,0.631089 -21642,3009:495,95,-9,0,0,0.630922 -21643,3009:496,96,-9,0,0,0.630467 -21644,3009:497,97,-9,0,0,0.629269 -21645,3009:498,98,-9,0,0,0.627517 -21646,3009:499,99,-9,0,0,0.628022 -21647,3010:390,100,-9,0,0,0.630969 -21648,3010:391,101,-9,0,0,0.635408 -21649,3010:392,102,-9,0,0,0.640557 -21650,3010:393,103,-9,0,0,0.643249 -21651,3010:394,104,-9,0,0,0.643862 -21652,3010:495,105,-9,0,0,0.646355 -21653,3010:496,106,-9,0,0,0.653555 -21654,3010:497,107,-9,0,0,0.657522 -21655,3010:498,108,-9,0,0,0.660386 -21656,3010:499,109,-9,0,0,0.662249 -21657,3011:390,110,-9,0,0,0.66303 -21658,3011:391,111,-9,0,0,0.665436 -21659,3011:392,112,-9,0,0,0.667492 -21660,3011:393,113,-9,0,0,0.668859 -21661,3011:394,114,-9,0,0,0.671175 -21662,3011:495,115,-9,0,0,0.677224 -21663,3011:496,116,-9,0,0,0.677448 -21664,3011:497,117,-9,0,0,0.675244 -21665,3011:498,118,-9,0,0,0.674116 -21666,3011:499,119,-9,0,0,0.676234 -21667,3012:390,120,-9,0,0,0.677987 -21668,3012:392,122,-9,0,0,0.682256 -21669,3012:393,123,-9,0,0,0.678861 -21670,3012:495,125,-9,0,0,0.68368 -21671,3012:496,126,-9,0,0,0.684057 -21672,3012:497,127,-9,0,0,0.682746 -21673,3012:498,128,-9,0,0,0.693046 -21674,3012:499,129,-9,0,0,0.697292 -21675,3013:390,130,-9,0,0,0.695619 -21676,3013:391,131,-9,0,0,0.699175 -21677,3013:392,132,-9,0,0,0.695793 -21678,3013:393,133,-9,0,0,0.696858 -21679,3013:394,134,-9,0,0,0.691163 -21680,3013:495,135,-9,0,0,0.683991 -21681,3013:496,136,-9,0,0,0.675672 -21682,3013:497,137,-9,0,0,0.669927 -21683,3013:498,138,-9,0,0,0.671175 -21684,3013:499,139,-9,0,0,0.675649 -21685,3014:390,140,-9,0,0,0.678032 -21686,3014:391,141,-9,0,0,0.681699 -21687,3014:392,142,-9,0,0,0.684523 -21688,3014:393,143,-9,0,0,0.67637 -21689,3014:394,144,-9,0,0,0.658216 -21690,3014:495,145,-9,0,0,0.648467 -21691,3014:496,146,-9,0,0,0.651248 -21692,3014:497,147,-9,0,0,0.659971 -21693,3014:498,148,-9,0,0,0.640912 -21694,3015:391,151,-9,0,0,0.666761 -21695,3015:392,152,-9,0,0,0.675154 -21696,3015:393,153,-9,0,0,0.677605 -21697,3015:394,154,-9,0,0,0.679689 -21698,3015:495,155,-9,0,0,0.680136 -21699,3015:496,156,-9,0,0,0.680672 -21700,3015:497,157,-9,0,0,0.681319 -21701,3015:498,158,-9,0,0,0.681699 -21702,3015:499,159,-9,0,0,0.679935 -21703,3016:390,160,-9,0,0,0.677852 -21704,3016:391,161,-9,0,0,0.674252 -21705,3016:392,162,-9,0,0,0.668107 -21706,3016:393,163,-9,0,0,0.668335 -21707,3016:394,164,-9,0,0,0.668859 -21708,3016:495,165,-9,0,0,0.669859 -21709,3016:496,166,-9,0,0,0.66945 -21710,3016:497,167,-9,0,0,0.669768 -21711,3016:498,168,-9,0,0,0.670063 -21712,3016:499,169,-9,0,0,0.6697 -21713,3017:390,170,-9,0,0,0.669109 -21714,3017:391,171,-9,0,0,0.668039 -21715,3017:392,172,-9,0,0,0.666076 -21716,3017:393,173,-9,0,0,0.666488 -21717,3017:394,174,-9,0,0,0.663053 -21718,3017:495,175,-9,0,0,0.662777 -21719,3017:496,176,-9,0,0,0.662042 -21720,3017:497,177,-9,0,0,0.661859 -21721,3017:498,178,-9,0,0,0.661904 -21722,3017:499,179,-9,0,0,0.662295 -21723,3018:390,180,-9,0,0,0.664246 -21724,5018:380,-180,-8,0,0,0.673959 -21725,5017:489,-179,-8,0,0,0.675829 -21726,5017:488,-178,-8,0,0,0.676932 -21727,5017:487,-177,-8,0,0,0.677628 -21728,5017:486,-176,-8,0,0,0.676976 -21729,5017:485,-175,-8,0,0,0.676145 -21730,5017:384,-174,-8,0,0,0.676347 -21731,5017:383,-173,-8,0,0,0.676954 -21732,5017:382,-172,-8,0,0,0.676909 -21733,5017:381,-171,-8,0,0,0.677246 -21734,5017:380,-170,-8,0,0,0.677583 -21735,5016:489,-169,-8,0,0,0.676954 -21736,5016:488,-168,-8,0,0,0.676572 -21737,5016:487,-167,-8,0,0,0.677381 -21738,5016:486,-166,-8,0,0,0.677897 -21739,5016:485,-165,-8,0,0,0.67839 -21740,5016:384,-164,-8,0,0,0.678592 -21741,5016:383,-163,-8,0,0,0.677695 -21742,5016:382,-162,-8,0,0,0.676976 -21743,5016:381,-161,-8,0,0,0.676819 -21744,5016:380,-160,-8,0,0,0.677291 -21745,5015:489,-159,-8,0,0,0.676684 -21746,5015:488,-158,-8,0,0,0.675762 -21747,5015:487,-157,-8,0,0,0.673936 -21748,5015:486,-156,-8,0,0,0.672036 -21749,5015:485,-155,-8,0,0,0.669836 -21750,5015:384,-154,-8,0,0,0.668016 -21751,5015:383,-153,-8,0,0,0.667218 -21752,5015:382,-152,-8,0,0,0.665459 -21753,5015:381,-151,-8,0,0,0.662915 -21754,5015:380,-150,-8,0,0,0.66103 -21755,5014:489,-149,-8,0,0,0.659348 -21756,5014:488,-148,-8,0,0,0.656248 -21757,5014:487,-147,-8,0,0,0.653834 -21758,5014:486,-146,-8,0,0,0.652461 -21759,5014:485,-145,-8,0,0,0.651272 -21760,5014:384,-144,-8,0,0,0.649239 -21761,5014:383,-143,-8,0,0,0.646872 -21762,5014:382,-142,-8,0,0,0.645086 -21763,5014:381,-141,-8,0,0,0.642919 -21764,5014:380,-140,-8,0,0,0.640273 -21765,5013:489,-139,-8,0,0,0.637904 -21766,5013:488,-138,-8,0,0,0.635955 -21767,5013:487,-137,-8,0,0,0.633788 -21768,5013:486,-136,-8,0,0,0.630802 -21769,5013:485,-135,-8,0,0,0.627349 -21770,5013:384,-134,-8,0,0,0.624077 -21771,5013:383,-133,-8,0,0,0.621953 -21772,5013:382,-132,-8,0,0,0.619341 -21773,5013:381,-131,-8,0,0,0.616818 -21774,5013:380,-130,-8,0,0,0.614192 -21775,5012:489,-129,-8,0,0,0.61134 -21776,5012:488,-128,-8,0,0,0.60892 -21777,5012:487,-127,-8,0,0,0.606275 -21778,5012:486,-126,-8,0,0,0.603549 -21779,5012:485,-125,-8,0,0,0.60136 -21780,5012:384,-124,-8,0,0,0.599066 -21781,5012:383,-123,-8,0,0,0.59625 -21782,5012:382,-122,-8,0,0,0.593056 -21783,5012:381,-121,-8,0,0,0.589157 -21784,5012:380,-120,-8,0,0,0.584748 -21785,5011:489,-119,-8,0,0,0.580401 -21786,5011:488,-118,-8,0,0,0.576467 -21787,5011:487,-117,-8,0,0,0.573127 -21788,5011:486,-116,-8,0,0,0.569201 -21789,5011:485,-115,-8,0,0,0.563953 -21790,5011:384,-114,-8,0,0,0.558464 -21791,5011:383,-113,-8,0,0,0.553035 -21792,5011:382,-112,-8,0,0,0.549045 -21793,5011:381,-111,-8,0,0,0.54492 -21794,5011:380,-110,-8,0,0,0.538722 -21795,5010:489,-109,-8,0,0,0.533714 -21796,5010:488,-108,-8,0,0,0.530901 -21797,5010:487,-107,-8,0,0,0.529365 -21798,5010:486,-106,-8,0,0,0.52414 -21799,5010:485,-105,-8,0,0,0.520988 -21800,5010:384,-104,-8,0,0,0.52191 -21801,5010:383,-103,-8,0,0,0.520013 -21802,5010:382,-102,-8,0,0,0.515524 -21803,5010:381,-101,-8,0,0,0.512264 -21804,5010:380,-100,-8,0,0,0.507411 -21805,5009:489,-99,-8,0,0,0.509645 -21806,5009:488,-98,-8,0,0,0.5117 -21807,5009:487,-97,-8,0,0,0.514368 -21808,5009:486,-96,-8,0,0,0.514086 -21809,5009:485,-95,-8,0,0,0.509157 -21810,5009:384,-94,-8,0,0,0.506667 -21811,5009:383,-93,-8,0,0,0.509363 -21812,5009:382,-92,-8,0,0,0.513137 -21813,5009:381,-91,-8,0,0,0.513085 -21814,5009:380,-90,-8,0,0,0.512931 -21815,5008:489,-89,-8,0,0,0.514215 -21816,5008:488,-88,-8,0,0,0.511982 -21817,5008:487,-87,-8,0,0,0.509748 -21818,5008:486,-86,-8,0,0,0.50754 -21819,5008:485,-85,-8,0,0,0.503508 -21820,5008:384,-84,-8,0,0,0.504381 -21821,5008:383,-83,-8,0,0,0.504047 -21822,5008:382,-82,-8,0,0,0.497497 -21823,5008:381,-81,-8,0,0,0.49123 -21824,5008:380,-80,-8,0,0,0.479759 -21825,5007:489,-79,-8,0,0,0.455618 -21826,5003:485,-35,-8,0,0,0.62634 -21827,5003:384,-34,-8,0,0,0.619898 -21828,5003:383,-33,-8,0,0,0.61592 -21829,5003:382,-32,-8,0,0,0.612877 -21830,5003:381,-31,-8,0,0,0.609728 -21831,5003:380,-30,-8,0,0,0.605858 -21832,5002:489,-29,-8,0,0,0.602123 -21833,5002:488,-28,-8,0,0,0.598302 -21834,5002:487,-27,-8,0,0,0.594419 -21835,5002:486,-26,-8,0,0,0.591616 -21836,5002:485,-25,-8,0,0,0.588684 -21837,5002:384,-24,-8,0,0,0.586468 -21838,5002:383,-23,-8,0,0,0.584448 -21839,5002:382,-22,-8,0,0,0.581201 -21840,5002:381,-21,-8,0,0,0.578448 -21841,5002:380,-20,-8,0,0,0.57594 -21842,5001:489,-19,-8,0,0,0.574208 -21843,5001:488,-18,-8,0,0,0.57192 -21844,5001:487,-17,-8,0,0,0.569932 -21845,5001:486,-16,-8,0,0,0.567664 -21846,5001:485,-15,-8,0,0,0.563373 -21847,5001:384,-14,-8,0,0,0.562159 -21848,5001:383,-13,-8,0,0,0.561729 -21849,5001:382,-12,-8,0,0,0.560211 -21850,5001:381,-11,-8,0,0,0.559755 -21851,5001:380,-10,-8,0,0,0.557602 -21852,5000:489,-9,-8,0,0,0.552654 -21853,5000:488,-8,-8,0,0,0.549985 -21854,5000:487,-7,-8,0,0,0.549222 -21855,5000:486,-6,-8,0,0,0.549985 -21856,5000:485,-5,-8,0,0,0.55029 -21857,5000:384,-4,-8,0,0,0.548663 -21858,5000:383,-3,-8,0,0,0.550799 -21859,5000:382,-2,-8,0,0,0.550799 -21860,5000:381,-1,-8,0,0,0.553416 -21861,3000:381,0,-8,0,0,0.559654 -21862,3000:381,1,-8,0,0,0.562462 -21863,3000:382,2,-8,0,0,0.565696 -21864,3000:383,3,-8,0,0,0.571971 -21865,3000:384,4,-8,0,0,0.57737 -21866,3000:485,5,-8,0,0,0.581776 -21867,3000:486,6,-8,0,0,0.590871 -21868,3000:487,7,-8,0,0,0.601507 -21869,3000:488,8,-8,0,0,0.613437 -21870,3000:489,9,-8,0,0,0.624077 -21871,3001:380,10,-8,0,0,0.628453 -21872,3001:381,11,-8,0,0,0.628141 -21873,3001:382,12,-8,0,0,0.612268 -21874,3001:383,13,-8,0,0,0.568219 -21875,3004:380,40,-8,0,0,0.663352 -21876,3004:381,41,-8,0,0,0.665161 -21877,3004:382,42,-8,0,0,0.66683 -21878,3004:383,43,-8,0,0,0.665093 -21879,3004:384,44,-8,0,0,0.663489 -21880,3004:485,45,-8,0,0,0.661076 -21881,3004:486,46,-8,0,0,0.657314 -21882,3004:487,47,-8,0,0,0.657823 -21883,3004:488,48,-8,0,0,0.659024 -21884,3004:489,49,-8,0,0,0.661099 -21885,3005:380,50,-8,0,0,0.66218 -21886,3005:381,51,-8,0,0,0.660892 -21887,3005:382,52,-8,0,0,0.660662 -21888,3005:383,53,-8,0,0,0.660938 -21889,3005:384,54,-8,0,0,0.663902 -21890,3005:485,55,-8,0,0,0.665367 -21891,3005:486,56,-8,0,0,0.665093 -21892,3005:487,57,-8,0,0,0.663879 -21893,3005:488,58,-8,0,0,0.660823 -21894,3005:489,59,-8,0,0,0.655019 -21895,3006:380,60,-8,0,0,0.6424 -21896,3006:381,61,-8,0,0,0.651062 -21897,3006:382,62,-8,0,0,0.652158 -21898,3006:383,63,-8,0,0,0.653415 -21899,3006:384,64,-8,0,0,0.65402 -21900,3006:485,65,-8,0,0,0.656156 -21901,3006:486,66,-8,0,0,0.658608 -21902,3006:487,67,-8,0,0,0.660339 -21903,3006:488,68,-8,0,0,0.662847 -21904,3006:489,69,-8,0,0,0.66436 -21905,3007:380,70,-8,0,0,0.665047 -21906,3007:381,71,-8,0,0,0.666807 -21907,3007:382,72,-8,0,0,0.667035 -21908,3007:384,74,-8,0,0,0.665962 -21909,3007:485,75,-8,0,0,0.665688 -21910,3007:486,76,-8,0,0,0.666076 -21911,3007:487,77,-8,0,0,0.66475 -21912,3007:488,78,-8,0,0,0.663145 -21913,3007:489,79,-8,0,0,0.661996 -21914,3008:380,80,-8,0,0,0.660984 -21915,3008:381,81,-8,0,0,0.654624 -21916,3008:382,82,-8,0,0,0.649473 -21917,3008:383,83,-8,0,0,0.64372 -21918,3008:384,84,-8,0,0,0.640107 -21919,3008:485,85,-8,0,0,0.639065 -21920,3008:486,86,-8,0,0,0.639302 -21921,3008:487,87,-8,0,0,0.640628 -21922,3008:488,88,-8,0,0,0.642377 -21923,3008:489,89,-8,0,0,0.64365 -21924,3009:380,90,-8,0,0,0.64398 -21925,3009:381,91,-8,0,0,0.642565 -21926,3009:382,92,-8,0,0,0.641881 -21927,3009:383,93,-8,0,0,0.642825 -21928,3009:384,94,-8,0,0,0.642966 -21929,3009:485,95,-8,0,0,0.641881 -21930,3009:486,96,-8,0,0,0.64025 -21931,3009:487,97,-8,0,0,0.639041 -21932,3009:488,98,-8,0,0,0.637618 -21933,3009:489,99,-8,0,0,0.637642 -21934,3010:380,100,-8,0,0,0.641077 -21935,3010:381,101,-8,0,0,0.645157 -21936,3010:382,102,-8,0,0,0.647459 -21937,3010:383,103,-8,0,0,0.649122 -21938,3010:384,104,-8,0,0,0.650478 -21939,3010:485,105,-8,0,0,0.65281 -21940,3010:486,106,-8,0,0,0.65488 -21941,3010:487,107,-8,0,0,0.656712 -21942,3010:488,108,-8,0,0,0.657777 -21943,3010:489,109,-8,0,0,0.659002 -21944,3011:380,110,-8,0,0,0.659786 -21945,3011:381,111,-8,0,0,0.660915 -21946,3011:382,112,-8,0,0,0.661145 -21947,3011:383,113,-8,0,0,0.66326 -21948,3011:384,114,-8,0,0,0.666396 -21949,3011:485,115,-8,0,0,0.665619 -21950,3012:383,123,-8,0,0,0.692325 -21951,3012:384,124,-8,0,0,0.689208 -21952,3012:485,125,-8,0,0,0.683635 -21953,3012:488,128,-8,0,0,0.680181 -21954,3012:489,129,-8,0,0,0.684701 -21955,3013:380,130,-8,0,0,0.684634 -21956,3013:381,131,-8,0,0,0.686252 -21957,3013:382,132,-8,0,0,0.688173 -21958,3013:383,133,-8,0,0,0.686583 -21959,3013:384,134,-8,0,0,0.680315 -21960,3013:485,135,-8,0,0,0.670041 -21961,3013:486,136,-8,0,0,0.672648 -21962,3013:487,137,-8,0,0,0.677089 -21963,3013:488,138,-8,0,0,0.693833 -21964,3013:489,139,-8,0,0,0.693352 -21965,3014:380,140,-8,0,0,0.692106 -21966,3014:384,144,-8,0,0,0.68923 -21967,3014:485,145,-8,0,0,0.661835 -21968,3014:486,146,-8,0,0,0.67029 -21969,3014:489,149,-8,0,0,0.671742 -21970,3015:380,150,-8,0,0,0.672896 -21971,3015:381,151,-8,0,0,0.677067 -21972,3015:382,152,-8,0,0,0.679958 -21973,3015:383,153,-8,0,0,0.683235 -21974,3015:384,154,-8,0,0,0.684945 -21975,3015:485,155,-8,0,0,0.68687 -21976,3015:486,156,-8,0,0,0.685322 -21977,3015:487,157,-8,0,0,0.686362 -21978,3015:488,158,-8,0,0,0.687401 -21979,3015:489,159,-8,0,0,0.687445 -21980,3016:380,160,-8,0,0,0.681029 -21981,3016:382,162,-8,0,0,0.678794 -21982,3016:383,163,-8,0,0,0.676504 -21983,3016:384,164,-8,0,0,0.675942 -21984,3016:485,165,-8,0,0,0.674613 -21985,3016:486,166,-8,0,0,0.674184 -21986,3016:487,167,-8,0,0,0.675019 -21987,3016:488,168,-8,0,0,0.675537 -21988,3016:489,169,-8,0,0,0.674973 -21989,3017:380,170,-8,0,0,0.674771 -21990,3017:381,171,-8,0,0,0.674861 -21991,3017:382,172,-8,0,0,0.674929 -21992,3017:383,173,-8,0,0,0.675942 -21993,3017:384,174,-8,0,0,0.6738 -21994,3017:485,175,-8,0,0,0.671832 -21995,3017:486,176,-8,0,0,0.671425 -21996,3017:487,177,-8,0,0,0.67079 -21997,3017:488,178,-8,0,0,0.670744 -21998,3017:489,179,-8,0,0,0.671697 -21999,3018:380,180,-8,0,0,0.673959 -22000,5018:370,-180,-7,0,0,0.681163 -22001,5017:479,-179,-7,0,0,0.68094 -22002,5017:478,-178,-7,0,0,0.680338 -22003,5017:477,-177,-7,0,0,0.679264 -22004,5017:476,-176,-7,0,0,0.678099 -22005,5017:475,-175,-7,0,0,0.678099 -22006,5017:374,-174,-7,0,0,0.678503 -22007,5017:373,-173,-7,0,0,0.678928 -22008,5017:372,-172,-7,0,0,0.678861 -22009,5017:371,-171,-7,0,0,0.678615 -22010,5017:370,-170,-7,0,0,0.677672 -22011,5016:479,-169,-7,0,0,0.677089 -22012,5016:478,-168,-7,0,0,0.677381 -22013,5016:477,-167,-7,0,0,0.67783 -22014,5016:476,-166,-7,0,0,0.678122 -22015,5016:475,-165,-7,0,0,0.677448 -22016,5016:374,-164,-7,0,0,0.676617 -22017,5016:373,-163,-7,0,0,0.676077 -22018,5016:372,-162,-7,0,0,0.675064 -22019,5016:371,-161,-7,0,0,0.673868 -22020,5016:370,-160,-7,0,0,0.672286 -22021,5015:479,-159,-7,0,0,0.670699 -22022,5015:478,-158,-7,0,0,0.668198 -22023,5015:477,-157,-7,0,0,0.665596 -22024,5015:476,-156,-7,0,0,0.663604 -22025,5015:475,-155,-7,0,0,0.662249 -22026,5015:374,-154,-7,0,0,0.660247 -22027,5015:373,-153,-7,0,0,0.658031 -22028,5015:372,-152,-7,0,0,0.655599 -22029,5015:371,-151,-7,0,0,0.653788 -22030,5015:370,-150,-7,0,0,0.651924 -22031,5014:479,-149,-7,0,0,0.649402 -22032,5014:478,-148,-7,0,0,0.647716 -22033,5014:477,-147,-7,0,0,0.64605 -22034,5014:476,-146,-7,0,0,0.643626 -22035,5014:475,-145,-7,0,0,0.641101 -22036,5014:374,-144,-7,0,0,0.63897 -22037,5014:373,-143,-7,0,0,0.63712 -22038,5014:372,-142,-7,0,0,0.635717 -22039,5014:371,-141,-7,0,0,0.634693 -22040,5014:370,-140,-7,0,0,0.633478 -22041,5013:479,-139,-7,0,0,0.631471 -22042,5013:478,-138,-7,0,0,0.629173 -22043,5013:477,-137,-7,0,0,0.626749 -22044,5013:476,-136,-7,0,0,0.624197 -22045,5013:475,-135,-7,0,0,0.621494 -22046,5013:374,-134,-7,0,0,0.618953 -22047,5013:373,-133,-7,0,0,0.616478 -22048,5013:372,-132,-7,0,0,0.614436 -22049,5013:371,-131,-7,0,0,0.612902 -22050,5013:370,-130,-7,0,0,0.611902 -22051,5012:479,-129,-7,0,0,0.610412 -22052,5012:478,-128,-7,0,0,0.608431 -22053,5012:477,-127,-7,0,0,0.606226 -22054,5012:476,-126,-7,0,0,0.603476 -22055,5012:475,-125,-7,0,0,0.600028 -22056,5012:374,-124,-7,0,0,0.596498 -22057,5012:373,-123,-7,0,0,0.592982 -22058,5012:372,-122,-7,0,0,0.589008 -22059,5012:371,-121,-7,0,0,0.584399 -22060,5012:370,-120,-7,0,0,0.579274 -22061,5011:479,-119,-7,0,0,0.574584 -22062,5011:478,-118,-7,0,0,0.570612 -22063,5011:477,-117,-7,0,0,0.56721 -22064,5011:476,-116,-7,0,0,0.564181 -22065,5011:475,-115,-7,0,0,0.561097 -22066,5011:374,-114,-7,0,0,0.558007 -22067,5011:373,-113,-7,0,0,0.554355 -22068,5011:372,-112,-7,0,0,0.550494 -22069,5011:371,-111,-7,0,0,0.546779 -22070,5011:370,-110,-7,0,0,0.544614 -22071,5010:479,-109,-7,0,0,0.544385 -22072,5010:478,-108,-7,0,0,0.544105 -22073,5010:477,-107,-7,0,0,0.542448 -22074,5010:476,-106,-7,0,0,0.539309 -22075,5010:475,-105,-7,0,0,0.536424 -22076,5010:374,-104,-7,0,0,0.535171 -22077,5010:373,-103,-7,0,0,0.535682 -22078,5010:372,-102,-7,0,0,0.533126 -22079,5010:371,-101,-7,0,0,0.529621 -22080,5010:370,-100,-7,0,0,0.529518 -22081,5009:479,-99,-7,0,0,0.531284 -22082,5009:478,-98,-7,0,0,0.53241 -22083,5009:477,-97,-7,0,0,0.530364 -22084,5009:476,-96,-7,0,0,0.530977 -22085,5009:475,-95,-7,0,0,0.529877 -22086,5009:374,-94,-7,0,0,0.533535 -22087,5009:373,-93,-7,0,0,0.540662 -22088,5009:372,-92,-7,0,0,0.537139 -22089,5009:371,-91,-7,0,0,0.534507 -22090,5009:370,-90,-7,0,0,0.537624 -22091,5008:479,-89,-7,0,0,0.534839 -22092,5008:478,-88,-7,0,0,0.530184 -22093,5008:477,-87,-7,0,0,0.529953 -22094,5008:476,-86,-7,0,0,0.527471 -22095,5008:475,-85,-7,0,0,0.523269 -22096,5008:374,-84,-7,0,0,0.521833 -22097,5008:373,-83,-7,0,0,0.511545 -22098,5008:372,-82,-7,0,0,0.50546 -22099,5008:371,-81,-7,0,0,0.5051 -22100,5008:370,-80,-7,0,0,0.472174 -22101,5003:475,-35,-7,0,0,0.626171 -22102,5003:374,-34,-7,0,0,0.619341 -22103,5003:373,-33,-7,0,0,0.613852 -22104,5003:372,-32,-7,0,0,0.609679 -22105,5003:371,-31,-7,0,0,0.607403 -22106,5003:370,-30,-7,0,0,0.605736 -22107,5002:479,-29,-7,0,0,0.604385 -22108,5002:478,-28,-7,0,0,0.602492 -22109,5002:477,-27,-7,0,0,0.600916 -22110,5002:476,-26,-7,0,0,0.599708 -22111,5002:475,-25,-7,0,0,0.597116 -22112,5002:374,-24,-7,0,0,0.593427 -22113,5002:373,-23,-7,0,0,0.591492 -22114,5002:372,-22,-7,0,0,0.589008 -22115,5002:371,-21,-7,0,0,0.588958 -22116,5002:370,-20,-7,0,0,0.586543 -22117,5001:479,-19,-7,0,0,0.586368 -22118,5001:478,-18,-7,0,0,0.584499 -22119,5001:477,-17,-7,0,0,0.582726 -22120,5001:476,-16,-7,0,0,0.581851 -22121,5001:475,-15,-7,0,0,0.576693 -22122,5001:374,-14,-7,0,0,0.575262 -22123,5001:373,-13,-7,0,0,0.574861 -22124,5001:372,-12,-7,0,0,0.574886 -22125,5001:371,-11,-7,0,0,0.574534 -22126,5001:370,-10,-7,0,0,0.570586 -22127,5000:479,-9,-7,0,0,0.565898 -22128,5000:478,-8,-7,0,0,0.562791 -22129,5000:477,-7,-7,0,0,0.563676 -22130,5000:476,-6,-7,0,0,0.566907 -22131,5000:475,-5,-7,0,0,0.567261 -22132,5000:374,-4,-7,0,0,0.567437 -22133,5000:373,-3,-7,0,0,0.574183 -22134,5000:372,-2,-7,0,0,0.580601 -22135,5000:371,-1,-7,0,0,0.585446 -22136,3000:371,0,-7,0,0,0.590499 -22137,3000:371,1,-7,0,0,0.5937 -22138,3000:372,2,-7,0,0,0.593774 -22139,3000:373,3,-7,0,0,0.593204 -22140,3000:374,4,-7,0,0,0.597141 -22141,3000:475,5,-7,0,0,0.603648 -22142,3000:476,6,-7,0,0,0.610168 -22143,3000:477,7,-7,0,0,0.622992 -22144,3000:478,8,-7,0,0,0.632618 -22145,3000:479,9,-7,0,0,0.635384 -22146,3001:370,10,-7,0,0,0.634717 -22147,3001:371,11,-7,0,0,0.625209 -22148,3001:372,12,-7,0,0,0.617377 -22149,3004:370,40,-7,0,0,0.666693 -22150,3004:371,41,-7,0,0,0.671855 -22151,3004:372,42,-7,0,0,0.673462 -22152,3004:373,43,-7,0,0,0.673055 -22153,3004:374,44,-7,0,0,0.671946 -22154,3004:475,45,-7,0,0,0.67079 -22155,3004:476,46,-7,0,0,0.671108 -22156,3004:477,47,-7,0,0,0.670358 -22157,3004:478,48,-7,0,0,0.669564 -22158,3004:479,49,-7,0,0,0.669154 -22159,3005:370,50,-7,0,0,0.668062 -22160,3005:371,51,-7,0,0,0.666236 -22161,3005:372,52,-7,0,0,0.662479 -22162,3005:373,53,-7,0,0,0.661859 -22163,3005:374,54,-7,0,0,0.664772 -22164,3005:475,55,-7,0,0,0.666647 -22165,3005:476,56,-7,0,0,0.667423 -22166,3005:477,57,-7,0,0,0.668381 -22167,3005:478,58,-7,0,0,0.66797 -22168,3005:479,59,-7,0,0,0.665161 -22169,3006:370,60,-7,0,0,0.66218 -22170,3006:371,61,-7,0,0,0.661376 -22171,3006:372,62,-7,0,0,0.661329 -22172,3006:373,63,-7,0,0,0.66172 -22173,3006:374,64,-7,0,0,0.661882 -22174,3006:475,65,-7,0,0,0.66218 -22175,3006:476,66,-7,0,0,0.663512 -22176,3006:477,67,-7,0,0,0.664635 -22177,3006:478,68,-7,0,0,0.66491 -22178,3006:479,69,-7,0,0,0.665161 -22179,3007:370,70,-7,0,0,0.665436 -22180,3007:371,71,-7,0,0,0.662847 -22181,3007:372,72,-7,0,0,0.668062 -22182,3007:374,74,-7,0,0,0.670086 -22183,3007:475,75,-7,0,0,0.670676 -22184,3007:476,76,-7,0,0,0.669927 -22185,3007:477,77,-7,0,0,0.668312 -22186,3007:478,78,-7,0,0,0.667651 -22187,3007:479,79,-7,0,0,0.666076 -22188,3008:370,80,-7,0,0,0.661767 -22189,3008:371,81,-7,0,0,0.658493 -22190,3008:372,82,-7,0,0,0.656874 -22191,3008:373,83,-7,0,0,0.656364 -22192,3008:374,84,-7,0,0,0.655529 -22193,3008:475,85,-7,0,0,0.655205 -22194,3008:476,86,-7,0,0,0.654229 -22195,3008:477,87,-7,0,0,0.654578 -22196,3008:478,88,-7,0,0,0.655878 -22197,3008:479,89,-7,0,0,0.65692 -22198,3009:370,90,-7,0,0,0.6578 -22199,3009:371,91,-7,0,0,0.65773 -22200,3009:372,92,-7,0,0,0.657175 -22201,3009:373,93,-7,0,0,0.656364 -22202,3009:374,94,-7,0,0,0.655112 -22203,3009:475,95,-7,0,0,0.654856 -22204,3009:476,96,-7,0,0,0.653136 -22205,3009:477,97,-7,0,0,0.651808 -22206,3009:478,98,-7,0,0,0.652065 -22207,3009:479,99,-7,0,0,0.652833 -22208,3010:370,100,-7,0,0,0.653369 -22209,3010:371,101,-7,0,0,0.654601 -22210,3010:372,102,-7,0,0,0.655483 -22211,3010:373,103,-7,0,0,0.655205 -22212,3010:374,104,-7,0,0,0.658424 -22213,3010:475,105,-7,0,0,0.664864 -22214,3010:476,106,-7,0,0,0.663879 -22215,3011:475,115,-7,0,0,0.688106 -22216,3011:476,116,-7,0,0,0.690219 -22217,3011:477,117,-7,0,0,0.677672 -22218,3011:478,118,-7,0,0,0.678749 -22219,3011:479,119,-7,0,0,0.674342 -22220,3012:370,120,-7,0,0,0.678323 -22221,3012:371,121,-7,0,0,0.687136 -22222,3012:372,122,-7,0,0,0.691953 -22223,3012:373,123,-7,0,0,0.690659 -22224,3012:374,124,-7,0,0,0.691602 -22225,3012:475,125,-7,0,0,0.690527 -22226,3012:476,126,-7,0,0,0.688371 -22227,3012:477,127,-7,0,0,0.685654 -22228,3012:478,128,-7,0,0,0.682813 -22229,3012:479,129,-7,0,0,0.684324 -22230,3013:370,130,-7,0,0,0.687379 -22231,3013:371,131,-7,0,0,0.684878 -22232,3013:372,132,-7,0,0,0.683813 -22233,3013:373,133,-7,0,0,0.67998 -22234,3013:374,134,-7,0,0,0.677134 -22235,3013:475,135,-7,0,0,0.690593 -22236,3013:476,136,-7,0,0,0.677156 -22237,3013:477,137,-7,0,0,0.675334 -22238,3013:478,138,-7,0,0,0.701719 -22239,3014:478,148,-7,0,0,0.672399 -22240,3014:479,149,-7,0,0,0.675492 -22241,3015:370,150,-7,0,0,0.676707 -22242,3015:371,151,-7,0,0,0.678794 -22243,3015:372,152,-7,0,0,0.685942 -22244,3015:373,153,-7,0,0,0.689274 -22245,3015:374,154,-7,0,0,0.690768 -22246,3015:475,155,-7,0,0,0.692018 -22247,3015:476,156,-7,0,0,0.688724 -22248,3015:478,158,-7,0,0,0.687599 -22249,3015:479,159,-7,0,0,0.68718 -22250,3016:370,160,-7,0,0,0.685344 -22251,3016:371,161,-7,0,0,0.684235 -22252,3016:372,162,-7,0,0,0.684878 -22253,3016:373,163,-7,0,0,0.684124 -22254,3016:374,164,-7,0,0,0.683569 -22255,3016:475,165,-7,0,0,0.680203 -22256,3016:476,166,-7,0,0,0.677605 -22257,3016:477,167,-7,0,0,0.677897 -22258,3016:478,168,-7,0,0,0.678615 -22259,3016:479,169,-7,0,0,0.678749 -22260,3017:370,170,-7,0,0,0.67904 -22261,3017:371,171,-7,0,0,0.678906 -22262,3017:372,172,-7,0,0,0.678143 -22263,3017:373,173,-7,0,0,0.678413 -22264,3017:374,174,-7,0,0,0.678995 -22265,3017:475,175,-7,0,0,0.679085 -22266,3017:476,176,-7,0,0,0.678211 -22267,3017:477,177,-7,0,0,0.677852 -22268,3017:478,178,-7,0,0,0.678659 -22269,3017:479,179,-7,0,0,0.67989 -22270,3018:370,180,-7,0,0,0.681163 -22271,5018:360,-180,-6,0,0,0.680382 -22272,5017:469,-179,-6,0,0,0.680159 -22273,5017:468,-178,-6,0,0,0.678503 -22274,5017:467,-177,-6,0,0,0.677134 -22275,5017:466,-176,-6,0,0,0.676504 -22276,5017:465,-175,-6,0,0,0.675919 -22277,5017:364,-174,-6,0,0,0.676842 -22278,5017:363,-173,-6,0,0,0.67774 -22279,5017:362,-172,-6,0,0,0.677583 -22280,5017:361,-171,-6,0,0,0.676954 -22281,5017:360,-170,-6,0,0,0.676167 -22282,5016:469,-169,-6,0,0,0.675176 -22283,5016:468,-168,-6,0,0,0.6745 -22284,5016:467,-167,-6,0,0,0.67459 -22285,5016:466,-166,-6,0,0,0.673032 -22286,5016:465,-165,-6,0,0,0.671765 -22287,5016:364,-164,-6,0,0,0.670881 -22288,5016:363,-163,-6,0,0,0.67029 -22289,5016:362,-162,-6,0,0,0.668882 -22290,5016:361,-161,-6,0,0,0.666738 -22291,5016:360,-160,-6,0,0,0.664406 -22292,5015:469,-159,-6,0,0,0.662019 -22293,5015:468,-158,-6,0,0,0.659971 -22294,5015:467,-157,-6,0,0,0.657985 -22295,5015:466,-156,-6,0,0,0.656526 -22296,5015:465,-155,-6,0,0,0.654717 -22297,5015:364,-154,-6,0,0,0.652833 -22298,5015:363,-153,-6,0,0,0.650594 -22299,5015:362,-152,-6,0,0,0.648513 -22300,5015:361,-151,-6,0,0,0.647013 -22301,5015:360,-150,-6,0,0,0.64565 -22302,5014:469,-149,-6,0,0,0.643886 -22303,5014:468,-148,-6,0,0,0.64207 -22304,5014:467,-147,-6,0,0,0.640628 -22305,5014:466,-146,-6,0,0,0.639255 -22306,5014:465,-145,-6,0,0,0.636906 -22307,5014:364,-144,-6,0,0,0.634765 -22308,5014:363,-143,-6,0,0,0.632714 -22309,5014:362,-142,-6,0,0,0.630347 -22310,5014:361,-141,-6,0,0,0.627445 -22311,5014:360,-140,-6,0,0,0.624824 -22312,5013:469,-139,-6,0,0,0.622944 -22313,5013:468,-138,-6,0,0,0.622243 -22314,5013:467,-137,-6,0,0,0.620769 -22315,5013:466,-136,-6,0,0,0.619438 -22316,5013:465,-135,-6,0,0,0.617838 -22317,5013:364,-134,-6,0,0,0.615823 -22318,5013:363,-133,-6,0,0,0.613292 -22319,5013:362,-132,-6,0,0,0.610094 -22320,5013:361,-131,-6,0,0,0.607305 -22321,5013:360,-130,-6,0,0,0.605784 -22322,5012:469,-129,-6,0,0,0.604213 -22323,5012:468,-128,-6,0,0,0.602492 -22324,5012:467,-127,-6,0,0,0.6003 -22325,5012:466,-126,-6,0,0,0.597906 -22326,5012:465,-125,-6,0,0,0.594914 -22327,5012:364,-124,-6,0,0,0.591319 -22328,5012:363,-123,-6,0,0,0.588261 -22329,5012:362,-122,-6,0,0,0.584798 -22330,5012:361,-121,-6,0,0,0.581476 -22331,5012:360,-120,-6,0,0,0.578948 -22332,5011:469,-119,-6,0,0,0.576417 -22333,5011:468,-118,-6,0,0,0.573605 -22334,5011:467,-117,-6,0,0,0.570788 -22335,5011:466,-116,-6,0,0,0.568319 -22336,5011:465,-115,-6,0,0,0.566327 -22337,5011:364,-114,-6,0,0,0.563953 -22338,5011:363,-113,-6,0,0,0.561248 -22339,5011:362,-112,-6,0,0,0.558311 -22340,5011:361,-111,-6,0,0,0.555294 -22341,5011:360,-110,-6,0,0,0.552984 -22342,5010:469,-109,-6,0,0,0.55179 -22343,5010:468,-108,-6,0,0,0.550926 -22344,5010:467,-107,-6,0,0,0.54851 -22345,5010:466,-106,-6,0,0,0.545073 -22346,5010:465,-105,-6,0,0,0.544793 -22347,5010:364,-104,-6,0,0,0.547034 -22348,5010:363,-103,-6,0,0,0.54599 -22349,5010:362,-102,-6,0,0,0.543748 -22350,5010:361,-101,-6,0,0,0.542142 -22351,5010:360,-100,-6,0,0,0.542677 -22352,5009:469,-99,-6,0,0,0.543595 -22353,5009:468,-98,-6,0,0,0.541912 -22354,5009:467,-97,-6,0,0,0.540611 -22355,5009:466,-96,-6,0,0,0.540738 -22356,5009:465,-95,-6,0,0,0.542371 -22357,5009:364,-94,-6,0,0,0.547213 -22358,5009:363,-93,-6,0,0,0.554279 -22359,5009:362,-92,-6,0,0,0.559654 -22360,5009:361,-91,-6,0,0,0.56102 -22361,5009:360,-90,-6,0,0,0.560185 -22362,5008:469,-89,-6,0,0,0.55783 -22363,5008:468,-88,-6,0,0,0.551612 -22364,5008:467,-87,-6,0,0,0.544155 -22365,5008:466,-86,-6,0,0,0.538237 -22366,5008:465,-85,-6,0,0,0.532129 -22367,5008:364,-84,-6,0,0,0.522731 -22368,5008:363,-83,-6,0,0,0.516217 -22369,5008:362,-82,-6,0,0,0.524627 -22370,5008:361,-81,-6,0,0,0.512778 -22371,5003:465,-35,-6,0,0,0.61711 -22372,5003:364,-34,-6,0,0,0.612219 -22373,5003:363,-33,-6,0,0,0.612975 -22374,5003:362,-32,-6,0,0,0.612877 -22375,5003:361,-31,-6,0,0,0.611389 -22376,5003:360,-30,-6,0,0,0.610461 -22377,5002:469,-29,-6,0,0,0.608113 -22378,5002:468,-28,-6,0,0,0.603894 -22379,5002:467,-27,-6,0,0,0.602073 -22380,5002:466,-26,-6,0,0,0.601015 -22381,5002:465,-25,-6,0,0,0.600669 -22382,5002:364,-24,-6,0,0,0.599585 -22383,5002:363,-23,-6,0,0,0.596843 -22384,5002:362,-22,-6,0,0,0.594617 -22385,5002:361,-21,-6,0,0,0.594096 -22386,5002:360,-20,-6,0,0,0.593898 -22387,5001:469,-19,-6,0,0,0.594369 -22388,5001:468,-18,-6,0,0,0.594468 -22389,5001:467,-17,-6,0,0,0.592982 -22390,5001:466,-16,-6,0,0,0.593279 -22391,5001:465,-15,-6,0,0,0.592436 -22392,5001:364,-14,-6,0,0,0.589431 -22393,5001:363,-13,-6,0,0,0.586942 -22394,5001:362,-12,-6,0,0,0.586244 -22395,5001:361,-11,-6,0,0,0.585097 -22396,5001:360,-10,-6,0,0,0.581076 -22397,5000:469,-9,-6,0,0,0.578999 -22398,5000:468,-8,-6,0,0,0.580701 -22399,5000:467,-7,-6,0,0,0.583924 -22400,5000:466,-6,-6,0,0,0.585796 -22401,5000:465,-5,-6,0,0,0.587962 -22402,5000:364,-4,-6,0,0,0.589654 -22403,5000:363,-3,-6,0,0,0.591791 -22404,5000:362,-2,-6,0,0,0.595879 -22405,5000:361,-1,-6,0,0,0.601138 -22406,3000:361,0,-6,0,0,0.604262 -22407,3000:361,1,-6,0,0,0.605686 -22408,3000:362,2,-6,0,0,0.606888 -22409,3000:363,3,-6,0,0,0.607109 -22410,3000:364,4,-6,0,0,0.612365 -22411,3000:465,5,-6,0,0,0.619195 -22412,3000:466,6,-6,0,0,0.625113 -22413,3000:467,7,-6,0,0,0.631304 -22414,3000:468,8,-6,0,0,0.635265 -22415,3000:469,9,-6,0,0,0.632762 -22416,3001:360,10,-6,0,0,0.621712 -22417,3001:361,11,-6,0,0,0.584124 -22418,3003:469,39,-6,0,0,0.666556 -22419,3004:360,40,-6,0,0,0.669746 -22420,3004:361,41,-6,0,0,0.676414 -22421,3004:362,42,-6,0,0,0.679062 -22422,3004:363,43,-6,0,0,0.6823 -22423,3004:364,44,-6,0,0,0.683324 -22424,3004:465,45,-6,0,0,0.680762 -22425,3004:466,46,-6,0,0,0.678592 -22426,3004:467,47,-6,0,0,0.677403 -22427,3004:468,48,-6,0,0,0.675019 -22428,3004:469,49,-6,0,0,0.672557 -22429,3005:360,50,-6,0,0,0.670041 -22430,3005:361,51,-6,0,0,0.668631 -22431,3005:362,52,-6,0,0,0.662571 -22432,3005:363,53,-6,0,0,0.659232 -22433,3005:364,54,-6,0,0,0.660293 -22434,3005:465,55,-6,0,0,0.661145 -22435,3005:466,56,-6,0,0,0.662433 -22436,3005:467,57,-6,0,0,0.666511 -22437,3005:468,58,-6,0,0,0.669359 -22438,3005:469,59,-6,0,0,0.669495 -22439,3006:360,60,-6,0,0,0.668016 -22440,3006:361,61,-6,0,0,0.667058 -22441,3006:362,62,-6,0,0,0.666099 -22442,3006:363,63,-6,0,0,0.664589 -22443,3006:364,64,-6,0,0,0.66342 -22444,3006:465,65,-6,0,0,0.662364 -22445,3006:466,66,-6,0,0,0.661697 -22446,3006:467,67,-6,0,0,0.661145 -22447,3006:468,68,-6,0,0,0.65914 -22448,3006:469,69,-6,0,0,0.658978 -22449,3007:360,70,-6,0,0,0.661859 -22450,3007:361,71,-6,0,0,0.662456 -22451,3007:362,72,-6,0,0,0.663787 -22452,3007:364,74,-6,0,0,0.666008 -22453,3007:465,75,-6,0,0,0.666693 -22454,3007:466,76,-6,0,0,0.667446 -22455,3007:467,77,-6,0,0,0.667856 -22456,3007:468,78,-6,0,0,0.667674 -22457,3007:469,79,-6,0,0,0.667469 -22458,3008:360,80,-6,0,0,0.66683 -22459,3008:361,81,-6,0,0,0.666236 -22460,3008:362,82,-6,0,0,0.666511 -22461,3008:363,83,-6,0,0,0.66667 -22462,3008:364,84,-6,0,0,0.667514 -22463,3008:465,85,-6,0,0,0.668631 -22464,3008:466,86,-6,0,0,0.668153 -22465,3008:467,87,-6,0,0,0.667058 -22466,3008:468,88,-6,0,0,0.666921 -22467,3008:469,89,-6,0,0,0.666442 -22468,3009:360,90,-6,0,0,0.666031 -22469,3009:361,91,-6,0,0,0.665711 -22470,3009:362,92,-6,0,0,0.664246 -22471,3009:363,93,-6,0,0,0.663535 -22472,3009:364,94,-6,0,0,0.662318 -22473,3009:465,95,-6,0,0,0.6608 -22474,3009:466,96,-6,0,0,0.659763 -22475,3009:467,97,-6,0,0,0.659024 -22476,3009:468,98,-6,0,0,0.659186 -22477,3009:469,99,-6,0,0,0.659647 -22478,3010:360,100,-6,0,0,0.660155 -22479,3010:361,101,-6,0,0,0.660063 -22480,3010:362,102,-6,0,0,0.65944 -22481,3010:363,103,-6,0,0,0.659394 -22482,3010:364,104,-6,0,0,0.668677 -22483,3010:467,107,-6,0,0,0.677942 -22484,3010:468,108,-6,0,0,0.674703 -22485,3010:469,109,-6,0,0,0.674703 -22486,3011:360,110,-6,0,0,0.672625 -22487,3011:361,111,-6,0,0,0.673868 -22488,3011:362,112,-6,0,0,0.675829 -22489,3011:363,113,-6,0,0,0.677336 -22490,3011:364,114,-6,0,0,0.677762 -22491,3011:465,115,-6,0,0,0.679152 -22492,3011:466,116,-6,0,0,0.683257 -22493,3011:467,117,-6,0,0,0.683946 -22494,3011:468,118,-6,0,0,0.665528 -22495,3011:469,119,-6,0,0,0.67138 -22496,3012:361,121,-6,0,0,0.678838 -22497,3012:362,122,-6,0,0,0.685055 -22498,3012:364,124,-6,0,0,0.685942 -22499,3012:465,125,-6,0,0,0.681119 -22500,3012:466,126,-6,0,0,0.686915 -22501,3012:467,127,-6,0,0,0.685477 -22502,3012:468,128,-6,0,0,0.684767 -22503,3012:469,129,-6,0,0,0.685011 -22504,3013:360,130,-6,0,0,0.684812 -22505,3013:361,131,-6,0,0,0.683191 -22506,3013:362,132,-6,0,0,0.681097 -22507,3013:363,133,-6,0,0,0.682033 -22508,3013:364,134,-6,0,0,0.685631 -22509,3013:465,135,-6,0,0,0.690197 -22510,3013:466,136,-6,0,0,0.67147 -22511,3013:467,137,-6,0,0,0.678928 -22512,3013:468,138,-6,0,0,0.702321 -22513,3014:467,147,-6,0,0,0.669881 -22514,3014:468,148,-6,0,0,0.676842 -22515,3014:469,149,-6,0,0,0.679175 -22516,3015:360,150,-6,0,0,0.680762 -22517,3015:363,153,-6,0,0,0.682211 -22518,3015:364,154,-6,0,0,0.686627 -22519,3015:466,156,-6,0,0,0.680985 -22520,3015:467,157,-6,0,0,0.681342 -22521,3015:468,158,-6,0,0,0.683346 -22522,3015:469,159,-6,0,0,0.683324 -22523,3016:360,160,-6,0,0,0.681877 -22524,3016:361,161,-6,0,0,0.676775 -22525,3016:362,162,-6,0,0,0.68279 -22526,3016:363,163,-6,0,0,0.683413 -22527,3016:364,164,-6,0,0,0.682546 -22528,3016:465,165,-6,0,0,0.681409 -22529,3016:466,166,-6,0,0,0.67904 -22530,3016:467,167,-6,0,0,0.678883 -22531,3016:468,168,-6,0,0,0.679756 -22532,3016:469,169,-6,0,0,0.679958 -22533,3017:360,170,-6,0,0,0.678794 -22534,3017:361,171,-6,0,0,0.678211 -22535,3017:362,172,-6,0,0,0.678143 -22536,3017:363,173,-6,0,0,0.678368 -22537,3017:364,174,-6,0,0,0.678503 -22538,3017:465,175,-6,0,0,0.67857 -22539,3017:466,176,-6,0,0,0.678301 -22540,3017:467,177,-6,0,0,0.678861 -22541,3017:468,178,-6,0,0,0.67942 -22542,3017:469,179,-6,0,0,0.680069 -22543,3018:360,180,-6,0,0,0.680382 -22544,5018:350,-180,-5,0,0,0.680606 -22545,5017:459,-179,-5,0,0,0.679599 -22546,5017:458,-178,-5,0,0,0.678637 -22547,5017:457,-177,-5,0,0,0.678009 -22548,5017:456,-176,-5,0,0,0.67756 -22549,5017:455,-175,-5,0,0,0.676864 -22550,5017:354,-174,-5,0,0,0.677852 -22551,5017:353,-173,-5,0,0,0.676437 -22552,5017:352,-172,-5,0,0,0.674748 -22553,5017:351,-171,-5,0,0,0.673371 -22554,5017:350,-170,-5,0,0,0.672059 -22555,5016:459,-169,-5,0,0,0.671221 -22556,5016:458,-168,-5,0,0,0.670563 -22557,5016:457,-167,-5,0,0,0.6697 -22558,5016:456,-166,-5,0,0,0.668677 -22559,5016:455,-165,-5,0,0,0.66756 -22560,5016:354,-164,-5,0,0,0.666122 -22561,5016:353,-163,-5,0,0,0.664566 -22562,5016:352,-162,-5,0,0,0.662823 -22563,5016:351,-161,-5,0,0,0.660593 -22564,5016:350,-160,-5,0,0,0.658678 -22565,5015:459,-159,-5,0,0,0.657268 -22566,5015:458,-158,-5,0,0,0.655808 -22567,5015:457,-157,-5,0,0,0.653764 -22568,5015:456,-156,-5,0,0,0.651668 -22569,5015:455,-155,-5,0,0,0.650081 -22570,5015:354,-154,-5,0,0,0.647764 -22571,5015:353,-153,-5,0,0,0.645627 -22572,5015:352,-152,-5,0,0,0.643626 -22573,5015:351,-151,-5,0,0,0.642093 -22574,5015:350,-150,-5,0,0,0.640912 -22575,5014:459,-149,-5,0,0,0.640013 -22576,5014:458,-148,-5,0,0,0.639113 -22577,5014:457,-147,-5,0,0,0.637713 -22578,5014:456,-146,-5,0,0,0.635764 -22579,5014:455,-145,-5,0,0,0.633454 -22580,5014:354,-144,-5,0,0,0.631352 -22581,5014:353,-143,-5,0,0,0.629077 -22582,5014:352,-142,-5,0,0,0.626749 -22583,5014:351,-141,-5,0,0,0.62468 -22584,5014:350,-140,-5,0,0,0.622026 -22585,5013:459,-139,-5,0,0,0.620043 -22586,5013:458,-138,-5,0,0,0.617425 -22587,5013:457,-137,-5,0,0,0.614728 -22588,5013:456,-136,-5,0,0,0.611779 -22589,5013:455,-135,-5,0,0,0.609165 -22590,5013:354,-134,-5,0,0,0.606839 -22591,5013:353,-133,-5,0,0,0.604852 -22592,5013:352,-132,-5,0,0,0.603722 -22593,5013:351,-131,-5,0,0,0.602836 -22594,5013:350,-130,-5,0,0,0.600226 -22595,5012:459,-129,-5,0,0,0.598055 -22596,5012:458,-128,-5,0,0,0.595483 -22597,5012:457,-127,-5,0,0,0.593155 -22598,5012:456,-126,-5,0,0,0.590449 -22599,5012:455,-125,-5,0,0,0.588037 -22600,5012:354,-124,-5,0,0,0.585945 -22601,5012:353,-123,-5,0,0,0.583874 -22602,5012:352,-122,-5,0,0,0.581901 -22603,5012:351,-121,-5,0,0,0.58015 -22604,5012:350,-120,-5,0,0,0.578899 -22605,5011:459,-119,-5,0,0,0.57772 -22606,5011:458,-118,-5,0,0,0.576191 -22607,5011:457,-117,-5,0,0,0.573403 -22608,5011:456,-116,-5,0,0,0.570889 -22609,5011:455,-115,-5,0,0,0.568925 -22610,5011:354,-114,-5,0,0,0.566832 -22611,5011:353,-113,-5,0,0,0.564535 -22612,5011:352,-112,-5,0,0,0.561957 -22613,5011:351,-111,-5,0,0,0.559805 -22614,5011:350,-110,-5,0,0,0.55816 -22615,5010:459,-109,-5,0,0,0.557475 -22616,5010:458,-108,-5,0,0,0.556638 -22617,5010:457,-107,-5,0,0,0.556638 -22618,5010:456,-106,-5,0,0,0.557019 -22619,5010:455,-105,-5,0,0,0.556638 -22620,5010:354,-104,-5,0,0,0.557424 -22621,5010:353,-103,-5,0,0,0.55603 -22622,5010:352,-102,-5,0,0,0.554939 -22623,5010:351,-101,-5,0,0,0.553975 -22624,5010:350,-100,-5,0,0,0.552121 -22625,5009:459,-99,-5,0,0,0.550011 -22626,5009:458,-98,-5,0,0,0.550494 -22627,5009:457,-97,-5,0,0,0.553136 -22628,5009:456,-96,-5,0,0,0.55334 -22629,5009:455,-95,-5,0,0,0.553873 -22630,5009:354,-94,-5,0,0,0.555345 -22631,5009:353,-93,-5,0,0,0.557728 -22632,5009:352,-92,-5,0,0,0.560616 -22633,5009:351,-91,-5,0,0,0.563397 -22634,5009:350,-90,-5,0,0,0.566579 -22635,5008:459,-89,-5,0,0,0.564535 -22636,5008:458,-88,-5,0,0,0.558742 -22637,5008:457,-87,-5,0,0,0.553822 -22638,5008:456,-86,-5,0,0,0.548001 -22639,5008:455,-85,-5,0,0,0.542524 -22640,5008:354,-84,-5,0,0,0.538748 -22641,5008:353,-83,-5,0,0,0.536577 -22642,5008:352,-82,-5,0,0,0.541121 -22643,5008:351,-81,-5,0,0,0.528289 -22644,5003:458,-38,-5,0,0,0.622195 -22645,5003:457,-37,-5,0,0,0.615798 -22646,5003:456,-36,-5,0,0,0.616721 -22647,5003:455,-35,-5,0,0,0.617474 -22648,5003:354,-34,-5,0,0,0.616916 -22649,5003:353,-33,-5,0,0,0.616042 -22650,5003:352,-32,-5,0,0,0.615093 -22651,5003:351,-31,-5,0,0,0.613803 -22652,5003:350,-30,-5,0,0,0.612389 -22653,5002:459,-29,-5,0,0,0.611926 -22654,5002:458,-28,-5,0,0,0.611487 -22655,5002:457,-27,-5,0,0,0.610534 -22656,5002:456,-26,-5,0,0,0.608456 -22657,5002:455,-25,-5,0,0,0.606766 -22658,5002:354,-24,-5,0,0,0.60679 -22659,5002:353,-23,-5,0,0,0.607476 -22660,5002:352,-22,-5,0,0,0.606912 -22661,5002:351,-21,-5,0,0,0.605834 -22662,5002:350,-20,-5,0,0,0.604581 -22663,5001:459,-19,-5,0,0,0.603181 -22664,5001:458,-18,-5,0,0,0.602541 -22665,5001:457,-17,-5,0,0,0.603402 -22666,5001:456,-16,-5,0,0,0.605073 -22667,5001:455,-15,-5,0,0,0.605932 -22668,5001:354,-14,-5,0,0,0.606005 -22669,5001:353,-13,-5,0,0,0.606447 -22670,5001:352,-12,-5,0,0,0.606692 -22671,5001:351,-11,-5,0,0,0.60701 -22672,5001:350,-10,-5,0,0,0.608627 -22673,5000:459,-9,-5,0,0,0.610021 -22674,5000:458,-8,-5,0,0,0.610876 -22675,5000:457,-7,-5,0,0,0.611219 -22676,5000:456,-6,-5,0,0,0.612633 -22677,5000:455,-5,-5,0,0,0.61373 -22678,5000:354,-4,-5,0,0,0.614461 -22679,5000:353,-3,-5,0,0,0.615677 -22680,5000:352,-2,-5,0,0,0.617328 -22681,5000:351,-1,-5,0,0,0.617717 -22682,3000:351,0,-5,0,0,0.616649 -22683,3000:351,1,-5,0,0,0.616867 -22684,3000:352,2,-5,0,0,0.618783 -22685,3000:353,3,-5,0,0,0.622919 -22686,3000:354,4,-5,0,0,0.626604 -22687,3000:455,5,-5,0,0,0.628502 -22688,3000:456,6,-5,0,0,0.629796 -22689,3000:457,7,-5,0,0,0.630634 -22690,3000:458,8,-5,0,0,0.627445 -22691,3000:459,9,-5,0,0,0.618008 -22692,3001:350,10,-5,0,0,0.603353 -22693,3001:351,11,-5,0,0,0.596448 -22694,3004:350,40,-5,0,0,0.655645 -22695,3004:351,41,-5,0,0,0.670948 -22696,3004:352,42,-5,0,0,0.676999 -22697,3004:353,43,-5,0,0,0.676437 -22698,3004:354,44,-5,0,0,0.67045 -22699,3004:455,45,-5,0,0,0.67423 -22700,3004:456,46,-5,0,0,0.683591 -22701,3004:457,47,-5,0,0,0.684346 -22702,3004:458,48,-5,0,0,0.681944 -22703,3004:459,49,-5,0,0,0.679443 -22704,3005:350,50,-5,0,0,0.676864 -22705,3005:351,51,-5,0,0,0.6731 -22706,3005:352,52,-5,0,0,0.669268 -22707,3005:353,53,-5,0,0,0.663742 -22708,3005:354,54,-5,0,0,0.660454 -22709,3005:455,55,-5,0,0,0.659417 -22710,3005:456,56,-5,0,0,0.661697 -22711,3005:457,57,-5,0,0,0.663397 -22712,3005:458,58,-5,0,0,0.667742 -22713,3005:459,59,-5,0,0,0.668699 -22714,3006:350,60,-5,0,0,0.668426 -22715,3006:351,61,-5,0,0,0.667674 -22716,3006:352,62,-5,0,0,0.665734 -22717,3006:353,63,-5,0,0,0.66397 -22718,3006:354,64,-5,0,0,0.662962 -22719,3006:455,65,-5,0,0,0.66156 -22720,3006:456,66,-5,0,0,0.659809 -22721,3006:457,67,-5,0,0,0.657892 -22722,3006:458,68,-5,0,0,0.656666 -22723,3006:459,69,-5,0,0,0.656225 -22724,3007:350,70,-5,0,0,0.656827 -22725,3007:351,71,-5,0,0,0.658146 -22726,3007:352,72,-5,0,0,0.659716 -22727,3007:354,74,-5,0,0,0.661329 -22728,3007:455,75,-5,0,0,0.66149 -22729,3007:456,76,-5,0,0,0.662019 -22730,3007:457,77,-5,0,0,0.662571 -22731,3007:458,78,-5,0,0,0.662732 -22732,3007:459,79,-5,0,0,0.663191 -22733,3008:350,80,-5,0,0,0.664223 -22734,3008:351,81,-5,0,0,0.665665 -22735,3008:352,82,-5,0,0,0.666761 -22736,3008:353,83,-5,0,0,0.667651 -22737,3008:354,84,-5,0,0,0.669154 -22738,3008:455,85,-5,0,0,0.670586 -22739,3008:456,86,-5,0,0,0.671855 -22740,3008:457,87,-5,0,0,0.671697 -22741,3008:458,88,-5,0,0,0.670722 -22742,3008:459,89,-5,0,0,0.670155 -22743,3009:350,90,-5,0,0,0.669109 -22744,3009:351,91,-5,0,0,0.667537 -22745,3009:352,92,-5,0,0,0.66635 -22746,3009:353,93,-5,0,0,0.665299 -22747,3009:354,94,-5,0,0,0.663948 -22748,3009:455,95,-5,0,0,0.662709 -22749,3009:456,96,-5,0,0,0.661628 -22750,3009:457,97,-5,0,0,0.660892 -22751,3009:458,98,-5,0,0,0.660431 -22752,3009:459,99,-5,0,0,0.660662 -22753,3010:350,100,-5,0,0,0.661628 -22754,3010:351,101,-5,0,0,0.663191 -22755,3010:352,102,-5,0,0,0.668972 -22756,3010:457,107,-5,0,0,0.682122 -22757,3010:458,108,-5,0,0,0.680091 -22758,3010:459,109,-5,0,0,0.674274 -22759,3011:350,110,-5,0,0,0.668995 -22760,3011:351,111,-5,0,0,0.671651 -22761,3011:352,112,-5,0,0,0.675649 -22762,3011:353,113,-5,0,0,0.677538 -22763,3011:354,114,-5,0,0,0.67942 -22764,3011:456,116,-5,0,0,0.686185 -22765,3011:457,117,-5,0,0,0.686052 -22766,3011:458,118,-5,0,0,0.677942 -22767,3011:459,119,-5,0,0,0.669655 -22768,3012:351,121,-5,0,0,0.681052 -22769,3012:353,123,-5,0,0,0.682501 -22770,3012:354,124,-5,0,0,0.685145 -22771,3012:455,125,-5,0,0,0.686163 -22772,3012:456,126,-5,0,0,0.683702 -22773,3012:457,127,-5,0,0,0.676932 -22774,3012:458,128,-5,0,0,0.681677 -22775,3012:459,129,-5,0,0,0.686849 -22776,3013:350,130,-5,0,0,0.687246 -22777,3013:351,131,-5,0,0,0.681008 -22778,3013:352,132,-5,0,0,0.680427 -22779,3013:353,133,-5,0,0,0.679935 -22780,3013:354,134,-5,0,0,0.687246 -22781,3014:455,145,-5,0,0,0.659532 -22782,3014:456,146,-5,0,0,0.673122 -22783,3014:457,147,-5,0,0,0.674387 -22784,3014:458,148,-5,0,0,0.674883 -22785,3014:459,149,-5,0,0,0.674906 -22786,3015:350,150,-5,0,0,0.677178 -22787,3015:351,151,-5,0,0,0.680494 -22788,3015:352,152,-5,0,0,0.679175 -22789,3015:354,154,-5,0,0,0.677044 -22790,3015:455,155,-5,0,0,0.67637 -22791,3015:456,156,-5,0,0,0.676796 -22792,3015:457,157,-5,0,0,0.677089 -22793,3015:458,158,-5,0,0,0.678682 -22794,3015:459,159,-5,0,0,0.678547 -22795,3016:350,160,-5,0,0,0.677381 -22796,3016:351,161,-5,0,0,0.677628 -22797,3016:352,162,-5,0,0,0.67783 -22798,3016:353,163,-5,0,0,0.678682 -22799,3016:354,164,-5,0,0,0.678749 -22800,3016:455,165,-5,0,0,0.678816 -22801,3016:456,166,-5,0,0,0.677897 -22802,3016:457,167,-5,0,0,0.677538 -22803,3016:458,168,-5,0,0,0.678189 -22804,3016:459,169,-5,0,0,0.677785 -22805,3017:350,170,-5,0,0,0.676819 -22806,3017:351,171,-5,0,0,0.676324 -22807,3017:352,172,-5,0,0,0.675717 -22808,3017:353,173,-5,0,0,0.675649 -22809,3017:354,174,-5,0,0,0.676347 -22810,3017:455,175,-5,0,0,0.676932 -22811,3017:456,176,-5,0,0,0.676707 -22812,3017:457,177,-5,0,0,0.677313 -22813,3017:458,178,-5,0,0,0.67839 -22814,3017:459,179,-5,0,0,0.679622 -22815,3018:350,180,-5,0,0,0.680606 -22816,5018:140,-180,-4,0,0,0.678032 -22817,5017:249,-179,-4,0,0,0.678099 -22818,5017:248,-178,-4,0,0,0.678009 -22819,5017:247,-177,-4,0,0,0.677785 -22820,5017:246,-176,-4,0,0,0.678143 -22821,5017:245,-175,-4,0,0,0.678816 -22822,5017:144,-174,-4,0,0,0.679287 -22823,5017:143,-173,-4,0,0,0.678861 -22824,5017:142,-172,-4,0,0,0.677246 -22825,5017:141,-171,-4,0,0,0.675492 -22826,5017:140,-170,-4,0,0,0.672896 -22827,5016:249,-169,-4,0,0,0.671402 -22828,5016:248,-168,-4,0,0,0.669995 -22829,5016:247,-167,-4,0,0,0.668631 -22830,5016:246,-166,-4,0,0,0.66731 -22831,5016:245,-165,-4,0,0,0.666236 -22832,5016:144,-164,-4,0,0,0.664727 -22833,5016:143,-163,-4,0,0,0.662663 -22834,5016:142,-162,-4,0,0,0.660754 -22835,5016:141,-161,-4,0,0,0.659024 -22836,5016:140,-160,-4,0,0,0.65773 -22837,5015:249,-159,-4,0,0,0.656225 -22838,5015:248,-158,-4,0,0,0.654508 -22839,5015:247,-157,-4,0,0,0.652554 -22840,5015:246,-156,-4,0,0,0.650385 -22841,5015:245,-155,-4,0,0,0.649169 -22842,5015:144,-154,-4,0,0,0.647154 -22843,5015:143,-153,-4,0,0,0.645345 -22844,5015:142,-152,-4,0,0,0.644027 -22845,5015:141,-151,-4,0,0,0.641904 -22846,5015:140,-150,-4,0,0,0.640415 -22847,5014:249,-149,-4,0,0,0.63814 -22848,5014:248,-148,-4,0,0,0.636383 -22849,5014:247,-147,-4,0,0,0.634216 -22850,5014:246,-146,-4,0,0,0.631471 -22851,5014:245,-145,-4,0,0,0.629173 -22852,5014:144,-144,-4,0,0,0.626941 -22853,5014:143,-143,-4,0,0,0.624776 -22854,5014:142,-142,-4,0,0,0.622654 -22855,5014:141,-141,-4,0,0,0.620164 -22856,5014:140,-140,-4,0,0,0.617814 -22857,5013:249,-139,-4,0,0,0.615749 -22858,5013:248,-138,-4,0,0,0.613292 -22859,5013:247,-137,-4,0,0,0.610852 -22860,5013:246,-136,-4,0,0,0.608383 -22861,5013:245,-135,-4,0,0,0.606177 -22862,5013:144,-134,-4,0,0,0.605023 -22863,5013:143,-133,-4,0,0,0.604115 -22864,5013:142,-132,-4,0,0,0.602713 -22865,5013:141,-131,-4,0,0,0.600818 -22866,5013:140,-130,-4,0,0,0.598573 -22867,5012:249,-129,-4,0,0,0.596498 -22868,5012:248,-128,-4,0,0,0.594963 -22869,5012:247,-127,-4,0,0,0.593675 -22870,5012:246,-126,-4,0,0,0.592559 -22871,5012:245,-125,-4,0,0,0.590723 -22872,5012:144,-124,-4,0,0,0.588137 -22873,5012:143,-123,-4,0,0,0.585421 -22874,5012:142,-122,-4,0,0,0.583201 -22875,5012:141,-121,-4,0,0,0.581576 -22876,5012:140,-120,-4,0,0,0.580526 -22877,5011:249,-119,-4,0,0,0.579074 -22878,5011:248,-118,-4,0,0,0.576868 -22879,5011:247,-117,-4,0,0,0.575313 -22880,5011:246,-116,-4,0,0,0.57358 -22881,5011:245,-115,-4,0,0,0.572096 -22882,5011:144,-114,-4,0,0,0.570032 -22883,5011:143,-113,-4,0,0,0.567462 -22884,5011:142,-112,-4,0,0,0.566251 -22885,5011:141,-111,-4,0,0,0.564586 -22886,5011:140,-110,-4,0,0,0.562361 -22887,5010:249,-109,-4,0,0,0.560211 -22888,5010:248,-108,-4,0,0,0.55935 -22889,5010:247,-107,-4,0,0,0.559805 -22890,5010:246,-106,-4,0,0,0.561097 -22891,5010:245,-105,-4,0,0,0.561173 -22892,5010:144,-104,-4,0,0,0.560261 -22893,5010:143,-103,-4,0,0,0.559021 -22894,5010:142,-102,-4,0,0,0.558007 -22895,5010:141,-101,-4,0,0,0.557273 -22896,5010:140,-100,-4,0,0,0.556664 -22897,5009:249,-99,-4,0,0,0.556664 -22898,5009:248,-98,-4,0,0,0.557146 -22899,5009:247,-97,-4,0,0,0.557247 -22900,5009:246,-96,-4,0,0,0.557475 -22901,5009:245,-95,-4,0,0,0.557932 -22902,5009:144,-94,-4,0,0,0.558236 -22903,5009:143,-93,-4,0,0,0.557956 -22904,5009:142,-92,-4,0,0,0.558007 -22905,5009:141,-91,-4,0,0,0.559476 -22906,5009:140,-90,-4,0,0,0.565494 -22907,5008:249,-89,-4,0,0,0.566832 -22908,5008:248,-88,-4,0,0,0.563701 -22909,5008:247,-87,-4,0,0,0.55816 -22910,5008:246,-86,-4,0,0,0.552121 -22911,5008:245,-85,-4,0,0,0.547696 -22912,5008:144,-84,-4,0,0,0.555015 -22913,5008:143,-83,-4,0,0,0.56231 -22914,5008:142,-82,-4,0,0,0.562867 -22915,5008:141,-81,-4,0,0,0.568521 -22916,5004:143,-43,-4,0,0,0.638164 -22917,5004:142,-42,-4,0,0,0.628334 -22918,5004:141,-41,-4,0,0,0.62622 -22919,5004:140,-40,-4,0,0,0.617571 -22920,5003:249,-39,-4,0,0,0.61876 -22921,5003:248,-38,-4,0,0,0.618978 -22922,5003:247,-37,-4,0,0,0.618056 -22923,5003:246,-36,-4,0,0,0.61762 -22924,5003:245,-35,-4,0,0,0.616867 -22925,5003:144,-34,-4,0,0,0.615628 -22926,5003:143,-33,-4,0,0,0.614533 -22927,5003:142,-32,-4,0,0,0.613292 -22928,5003:141,-31,-4,0,0,0.613608 -22929,5003:140,-30,-4,0,0,0.612877 -22930,5002:249,-29,-4,0,0,0.612024 -22931,5002:248,-28,-4,0,0,0.611145 -22932,5002:247,-27,-4,0,0,0.610632 -22933,5002:246,-26,-4,0,0,0.610192 -22934,5002:245,-25,-4,0,0,0.609728 -22935,5002:144,-24,-4,0,0,0.60919 -22936,5002:143,-23,-4,0,0,0.608823 -22937,5002:142,-22,-4,0,0,0.608554 -22938,5002:141,-21,-4,0,0,0.608309 -22939,5002:140,-20,-4,0,0,0.608284 -22940,5001:249,-19,-4,0,0,0.608431 -22941,5001:248,-18,-4,0,0,0.6087 -22942,5001:247,-17,-4,0,0,0.609165 -22943,5001:246,-16,-4,0,0,0.60919 -22944,5001:245,-15,-4,0,0,0.609972 -22945,5001:144,-14,-4,0,0,0.611438 -22946,5001:143,-13,-4,0,0,0.613292 -22947,5001:142,-12,-4,0,0,0.615628 -22948,5001:141,-11,-4,0,0,0.618032 -22949,5001:140,-10,-4,0,0,0.620043 -22950,5000:249,-9,-4,0,0,0.621397 -22951,5000:248,-8,-4,0,0,0.623016 -22952,5000:247,-7,-4,0,0,0.624004 -22953,5000:246,-6,-4,0,0,0.624872 -22954,5000:245,-5,-4,0,0,0.625498 -22955,5000:144,-4,-4,0,0,0.626003 -22956,5000:143,-3,-4,0,0,0.627037 -22957,5000:142,-2,-4,0,0,0.628262 -22958,5000:141,-1,-4,0,0,0.629844 -22959,3000:141,0,-4,0,0,0.631376 -22960,3000:141,1,-4,0,0,0.631543 -22961,3000:142,2,-4,0,0,0.631136 -22962,3000:143,3,-4,0,0,0.630155 -22963,3000:144,4,-4,0,0,0.628549 -22964,3000:245,5,-4,0,0,0.626171 -22965,3000:246,6,-4,0,0,0.623088 -22966,3000:247,7,-4,0,0,0.617838 -22967,3000:248,8,-4,0,0,0.611755 -22968,3000:249,9,-4,0,0,0.597832 -22969,3004:141,41,-4,0,0,0.626773 -22970,3004:142,42,-4,0,0,0.675334 -22971,3004:143,43,-4,0,0,0.667195 -22972,3004:144,44,-4,0,0,0.654949 -22973,3004:245,45,-4,0,0,0.662777 -22974,3004:246,46,-4,0,0,0.66995 -22975,3004:247,47,-4,0,0,0.677089 -22976,3004:248,48,-4,0,0,0.680829 -22977,3004:249,49,-4,0,0,0.679085 -22978,3005:140,50,-4,0,0,0.676999 -22979,3005:141,51,-4,0,0,0.676302 -22980,3005:142,52,-4,0,0,0.674929 -22981,3005:143,53,-4,0,0,0.671516 -22982,3005:144,54,-4,0,0,0.666511 -22983,3005:245,55,-4,0,0,0.663581 -22984,3005:246,56,-4,0,0,0.661904 -22985,3005:247,57,-4,0,0,0.660362 -22986,3005:248,58,-4,0,0,0.660108 -22987,3005:249,59,-4,0,0,0.661214 -22988,3006:140,60,-4,0,0,0.662364 -22989,3006:141,61,-4,0,0,0.661996 -22990,3006:142,62,-4,0,0,0.660846 -22991,3006:143,63,-4,0,0,0.659855 -22992,3006:144,64,-4,0,0,0.659532 -22993,3006:245,65,-4,0,0,0.659994 -22994,3006:246,66,-4,0,0,0.659624 -22995,3006:247,67,-4,0,0,0.658909 -22996,3006:248,68,-4,0,0,0.65847 -22997,3006:249,69,-4,0,0,0.657985 -22998,3007:140,70,-4,0,0,0.657915 -22999,3007:141,71,-4,0,0,0.658331 -23000,3007:142,72,-4,0,0,0.659463 -23001,3007:144,74,-4,0,0,0.660339 -23002,3007:245,75,-4,0,0,0.660454 -23003,3007:246,76,-4,0,0,0.660386 -23004,3007:247,77,-4,0,0,0.660224 -23005,3007:248,78,-4,0,0,0.659486 -23006,3007:249,79,-4,0,0,0.658886 -23007,3008:140,80,-4,0,0,0.659279 -23008,3008:141,81,-4,0,0,0.659579 -23009,3008:142,82,-4,0,0,0.660408 -23010,3008:143,83,-4,0,0,0.662226 -23011,3008:144,84,-4,0,0,0.664521 -23012,3008:245,85,-4,0,0,0.666442 -23013,3008:246,86,-4,0,0,0.66813 -23014,3008:247,87,-4,0,0,0.669564 -23015,3008:248,88,-4,0,0,0.670358 -23016,3008:249,89,-4,0,0,0.670881 -23017,3009:140,90,-4,0,0,0.669427 -23018,3009:141,91,-4,0,0,0.66756 -23019,3009:142,92,-4,0,0,0.664933 -23020,3009:143,93,-4,0,0,0.663443 -23021,3009:144,94,-4,0,0,0.661882 -23022,3009:245,95,-4,0,0,0.6605 -23023,3009:246,96,-4,0,0,0.659832 -23024,3009:247,97,-4,0,0,0.660293 -23025,3009:248,98,-4,0,0,0.661329 -23026,3009:249,99,-4,0,0,0.663076 -23027,3010:140,100,-4,0,0,0.667879 -23028,3010:141,101,-4,0,0,0.669632 -23029,3010:247,107,-4,0,0,0.67432 -23030,3010:248,108,-4,0,0,0.676347 -23031,3010:249,109,-4,0,0,0.668472 -23032,3011:140,110,-4,0,0,0.676392 -23033,3011:247,117,-4,0,0,0.68603 -23034,3011:248,118,-4,0,0,0.674004 -23035,3011:249,119,-4,0,0,0.666305 -23036,3012:143,123,-4,0,0,0.686959 -23037,3012:144,124,-4,0,0,0.688746 -23038,3012:245,125,-4,0,0,0.690022 -23039,3012:246,126,-4,0,0,0.686893 -23040,3012:247,127,-4,0,0,0.666145 -23041,3012:248,128,-4,0,0,0.666579 -23042,3012:249,129,-4,0,0,0.660892 -23043,3013:140,130,-4,0,0,0.66264 -23044,3013:141,131,-4,0,0,0.66507 -23045,3013:142,132,-4,0,0,0.684812 -23046,3013:143,133,-4,0,0,0.69844 -23047,3013:245,135,-4,0,0,0.671062 -23048,3013:246,136,-4,0,0,0.678592 -23049,3014:141,141,-4,0,0,0.657128 -23050,3014:142,142,-4,0,0,0.663352 -23051,3014:143,143,-4,0,0,0.666784 -23052,3014:144,144,-4,0,0,0.66895 -23053,3014:245,145,-4,0,0,0.67113 -23054,3014:246,146,-4,0,0,0.673213 -23055,3014:247,147,-4,0,0,0.674816 -23056,3014:248,148,-4,0,0,0.674861 -23057,3014:249,149,-4,0,0,0.67628 -23058,3015:140,150,-4,0,0,0.678233 -23059,3015:141,151,-4,0,0,0.676819 -23060,3015:142,152,-4,0,0,0.676999 -23061,3015:143,153,-4,0,0,0.67646 -23062,3015:144,154,-4,0,0,0.675829 -23063,3015:245,155,-4,0,0,0.675897 -23064,3015:246,156,-4,0,0,0.676504 -23065,3015:247,157,-4,0,0,0.676909 -23066,3015:248,158,-4,0,0,0.676482 -23067,3015:249,159,-4,0,0,0.677493 -23068,3016:140,160,-4,0,0,0.677964 -23069,3016:141,161,-4,0,0,0.677583 -23070,3016:142,162,-4,0,0,0.678009 -23071,3016:143,163,-4,0,0,0.678054 -23072,3016:144,164,-4,0,0,0.678413 -23073,3016:245,165,-4,0,0,0.678211 -23074,3016:246,166,-4,0,0,0.678099 -23075,3016:247,167,-4,0,0,0.677336 -23076,3016:248,168,-4,0,0,0.676212 -23077,3016:249,169,-4,0,0,0.675739 -23078,3017:140,170,-4,0,0,0.674816 -23079,3017:141,171,-4,0,0,0.673642 -23080,3017:142,172,-4,0,0,0.67319 -23081,3017:143,173,-4,0,0,0.6731 -23082,3017:144,174,-4,0,0,0.67441 -23083,3017:245,175,-4,0,0,0.6745 -23084,3017:246,176,-4,0,0,0.674861 -23085,3017:247,177,-4,0,0,0.675379 -23086,3017:248,178,-4,0,0,0.675965 -23087,3017:249,179,-4,0,0,0.677089 -23088,3018:140,180,-4,0,0,0.678032 -23089,5018:130,-180,-3,0,0,0.677605 -23090,5017:239,-179,-3,0,0,0.67783 -23091,5017:238,-178,-3,0,0,0.677942 -23092,5017:237,-177,-3,0,0,0.677942 -23093,5017:236,-176,-3,0,0,0.677111 -23094,5017:235,-175,-3,0,0,0.676684 -23095,5017:134,-174,-3,0,0,0.6761 -23096,5017:133,-173,-3,0,0,0.674996 -23097,5017:132,-172,-3,0,0,0.673597 -23098,5017:131,-171,-3,0,0,0.67224 -23099,5017:130,-170,-3,0,0,0.670994 -23100,5016:239,-169,-3,0,0,0.670608 -23101,5016:238,-168,-3,0,0,0.668426 -23102,5016:237,-167,-3,0,0,0.665619 -23103,5016:236,-166,-3,0,0,0.66381 -23104,5016:235,-165,-3,0,0,0.662088 -23105,5016:134,-164,-3,0,0,0.660662 -23106,5016:133,-163,-3,0,0,0.658794 -23107,5016:132,-162,-3,0,0,0.65655 -23108,5016:131,-161,-3,0,0,0.655391 -23109,5016:130,-160,-3,0,0,0.654322 -23110,5015:239,-159,-3,0,0,0.652997 -23111,5015:238,-158,-3,0,0,0.651225 -23112,5015:237,-157,-3,0,0,0.649777 -23113,5015:236,-156,-3,0,0,0.648162 -23114,5015:235,-155,-3,0,0,0.648068 -23115,5015:134,-154,-3,0,0,0.64551 -23116,5015:133,-153,-3,0,0,0.643862 -23117,5015:132,-152,-3,0,0,0.642684 -23118,5015:131,-151,-3,0,0,0.640817 -23119,5015:130,-150,-3,0,0,0.637713 -23120,5014:239,-149,-3,0,0,0.634789 -23121,5014:238,-148,-3,0,0,0.632332 -23122,5014:237,-147,-3,0,0,0.6297 -23123,5014:236,-146,-3,0,0,0.628262 -23124,5014:235,-145,-3,0,0,0.627445 -23125,5014:134,-144,-3,0,0,0.62622 -23126,5014:133,-143,-3,0,0,0.623691 -23127,5014:132,-142,-3,0,0,0.620817 -23128,5014:131,-141,-3,0,0,0.618468 -23129,5014:130,-140,-3,0,0,0.616236 -23130,5013:239,-139,-3,0,0,0.614217 -23131,5013:238,-138,-3,0,0,0.612633 -23132,5013:237,-137,-3,0,0,0.611047 -23133,5013:236,-136,-3,0,0,0.608015 -23134,5013:235,-135,-3,0,0,0.605392 -23135,5013:134,-134,-3,0,0,0.603402 -23136,5013:133,-133,-3,0,0,0.601926 -23137,5013:132,-132,-3,0,0,0.600793 -23138,5013:131,-131,-3,0,0,0.59998 -23139,5013:130,-130,-3,0,0,0.598869 -23140,5012:239,-129,-3,0,0,0.598153 -23141,5012:238,-128,-3,0,0,0.597141 -23142,5012:237,-127,-3,0,0,0.595855 -23143,5012:236,-126,-3,0,0,0.593923 -23144,5012:235,-125,-3,0,0,0.591567 -23145,5012:134,-124,-3,0,0,0.589878 -23146,5012:133,-123,-3,0,0,0.588808 -23147,5012:132,-122,-3,0,0,0.58724 -23148,5012:131,-121,-3,0,0,0.585446 -23149,5012:130,-120,-3,0,0,0.583825 -23150,5011:239,-119,-3,0,0,0.582101 -23151,5011:238,-118,-3,0,0,0.580626 -23152,5011:237,-117,-3,0,0,0.578874 -23153,5011:236,-116,-3,0,0,0.575915 -23154,5011:235,-115,-3,0,0,0.573605 -23155,5011:134,-114,-3,0,0,0.571568 -23156,5011:133,-113,-3,0,0,0.570838 -23157,5011:132,-112,-3,0,0,0.570486 -23158,5011:131,-111,-3,0,0,0.569454 -23159,5011:130,-110,-3,0,0,0.568546 -23160,5010:239,-109,-3,0,0,0.567387 -23161,5010:238,-108,-3,0,0,0.566706 -23162,5010:237,-107,-3,0,0,0.565923 -23163,5010:236,-106,-3,0,0,0.565393 -23164,5010:235,-105,-3,0,0,0.56514 -23165,5010:134,-104,-3,0,0,0.565015 -23166,5010:133,-103,-3,0,0,0.564459 -23167,5010:132,-102,-3,0,0,0.563474 -23168,5010:131,-101,-3,0,0,0.562741 -23169,5010:130,-100,-3,0,0,0.561653 -23170,5009:239,-99,-3,0,0,0.56097 -23171,5009:238,-98,-3,0,0,0.560084 -23172,5009:237,-97,-3,0,0,0.559122 -23173,5009:236,-96,-3,0,0,0.559299 -23174,5009:235,-95,-3,0,0,0.559299 -23175,5009:134,-94,-3,0,0,0.558337 -23176,5009:133,-93,-3,0,0,0.555929 -23177,5009:132,-92,-3,0,0,0.551028 -23178,5009:131,-91,-3,0,0,0.567084 -23179,5009:130,-90,-3,0,0,0.565999 -23180,5008:239,-89,-3,0,0,0.571895 -23181,5008:238,-88,-3,0,0,0.57031 -23182,5008:237,-87,-3,0,0,0.56968 -23183,5008:236,-86,-3,0,0,0.56968 -23184,5008:235,-85,-3,0,0,0.571845 -23185,5008:134,-84,-3,0,0,0.57757 -23186,5008:133,-83,-3,0,0,0.581001 -23187,5008:132,-82,-3,0,0,0.580726 -23188,5008:131,-81,-3,0,0,0.584997 -23189,5004:236,-46,-3,0,0,0.638259 -23190,5004:235,-45,-3,0,0,0.628453 -23191,5004:134,-44,-3,0,0,0.622292 -23192,5004:133,-43,-3,0,0,0.623932 -23193,5004:132,-42,-3,0,0,0.62333 -23194,5004:131,-41,-3,0,0,0.622581 -23195,5004:130,-40,-3,0,0,0.62089 -23196,5003:239,-39,-3,0,0,0.620454 -23197,5003:238,-38,-3,0,0,0.620213 -23198,5003:237,-37,-3,0,0,0.619559 -23199,5003:236,-36,-3,0,0,0.61779 -23200,5003:235,-35,-3,0,0,0.616989 -23201,5003:134,-34,-3,0,0,0.615458 -23202,5003:133,-33,-3,0,0,0.613145 -23203,5003:132,-32,-3,0,0,0.611536 -23204,5003:131,-31,-3,0,0,0.609899 -23205,5003:130,-30,-3,0,0,0.608774 -23206,5002:239,-29,-3,0,0,0.608162 -23207,5002:238,-28,-3,0,0,0.606814 -23208,5002:237,-27,-3,0,0,0.605122 -23209,5002:236,-26,-3,0,0,0.60441 -23210,5002:235,-25,-3,0,0,0.603574 -23211,5002:134,-24,-3,0,0,0.602713 -23212,5002:133,-23,-3,0,0,0.601803 -23213,5002:132,-22,-3,0,0,0.601557 -23214,5002:131,-21,-3,0,0,0.60099 -23215,5002:130,-20,-3,0,0,0.600399 -23216,5001:239,-19,-3,0,0,0.601015 -23217,5001:238,-18,-3,0,0,0.602123 -23218,5001:237,-17,-3,0,0,0.603353 -23219,5001:236,-16,-3,0,0,0.60414 -23220,5001:235,-15,-3,0,0,0.605319 -23221,5001:134,-14,-3,0,0,0.607035 -23222,5001:133,-13,-3,0,0,0.608847 -23223,5001:132,-12,-3,0,0,0.611072 -23224,5001:131,-11,-3,0,0,0.61429 -23225,5001:130,-10,-3,0,0,0.616843 -23226,5000:239,-9,-3,0,0,0.618105 -23227,5000:238,-8,-3,0,0,0.618735 -23228,5000:237,-7,-3,0,0,0.62031 -23229,5000:236,-6,-3,0,0,0.622436 -23230,5000:235,-5,-3,0,0,0.625402 -23231,5000:134,-4,-3,0,0,0.627614 -23232,5000:133,-3,-3,0,0,0.629461 -23233,5000:132,-2,-3,0,0,0.631017 -23234,5000:131,-1,-3,0,0,0.632571 -23235,3000:131,0,-3,0,0,0.632881 -23236,3000:131,1,-3,0,0,0.632069 -23237,3000:132,2,-3,0,0,0.630587 -23238,3000:133,3,-3,0,0,0.628598 -23239,3000:134,4,-3,0,0,0.626436 -23240,3000:235,5,-3,0,0,0.62427 -23241,3000:236,6,-3,0,0,0.623523 -23242,3000:237,7,-3,0,0,0.6248 -23243,3000:238,8,-3,0,0,0.626532 -23244,3004:132,42,-3,0,0,0.6087 -23245,3004:133,43,-3,0,0,0.654136 -23246,3004:134,44,-3,0,0,0.645533 -23247,3004:235,45,-3,0,0,0.645039 -23248,3004:236,46,-3,0,0,0.650992 -23249,3004:237,47,-3,0,0,0.653671 -23250,3004:238,48,-3,0,0,0.649426 -23251,3004:239,49,-3,0,0,0.651762 -23252,3005:130,50,-3,0,0,0.655947 -23253,3005:131,51,-3,0,0,0.672761 -23254,3005:132,52,-3,0,0,0.6761 -23255,3005:133,53,-3,0,0,0.676886 -23256,3005:134,54,-3,0,0,0.673552 -23257,3005:235,55,-3,0,0,0.667833 -23258,3005:236,56,-3,0,0,0.664681 -23259,3005:237,57,-3,0,0,0.664062 -23260,3005:238,58,-3,0,0,0.66287 -23261,3005:239,59,-3,0,0,0.660731 -23262,3006:130,60,-3,0,0,0.659232 -23263,3006:131,61,-3,0,0,0.658655 -23264,3006:132,62,-3,0,0,0.658747 -23265,3006:133,63,-3,0,0,0.658932 -23266,3006:134,64,-3,0,0,0.658216 -23267,3006:235,65,-3,0,0,0.657938 -23268,3006:236,66,-3,0,0,0.658239 -23269,3006:237,67,-3,0,0,0.659024 -23270,3006:238,68,-3,0,0,0.660201 -23271,3006:239,69,-3,0,0,0.661237 -23272,3007:130,70,-3,0,0,0.662456 -23273,3007:131,71,-3,0,0,0.663191 -23274,3007:132,72,-3,0,0,0.663627 -23275,3007:134,74,-3,0,0,0.663993 -23276,3007:235,75,-3,0,0,0.663604 -23277,3007:236,76,-3,0,0,0.663489 -23278,3007:237,77,-3,0,0,0.663282 -23279,3007:238,78,-3,0,0,0.662249 -23280,3007:239,79,-3,0,0,0.661352 -23281,3008:130,80,-3,0,0,0.66057 -23282,3008:131,81,-3,0,0,0.660478 -23283,3008:132,82,-3,0,0,0.660777 -23284,3008:133,83,-3,0,0,0.660961 -23285,3008:134,84,-3,0,0,0.663007 -23286,3008:235,85,-3,0,0,0.665459 -23287,3008:236,86,-3,0,0,0.666716 -23288,3008:237,87,-3,0,0,0.667765 -23289,3008:238,88,-3,0,0,0.669723 -23290,3008:239,89,-3,0,0,0.670495 -23291,3009:130,90,-3,0,0,0.668381 -23292,3009:131,91,-3,0,0,0.666602 -23293,3009:132,92,-3,0,0,0.664383 -23294,3009:133,93,-3,0,0,0.662088 -23295,3009:134,94,-3,0,0,0.660938 -23296,3009:235,95,-3,0,0,0.660316 -23297,3009:236,96,-3,0,0,0.660247 -23298,3009:237,97,-3,0,0,0.661767 -23299,3009:238,98,-3,0,0,0.66342 -23300,3010:130,100,-3,0,0,0.670041 -23301,3010:235,105,-3,0,0,0.679487 -23302,3010:236,106,-3,0,0,0.673507 -23303,3010:237,107,-3,0,0,0.66057 -23304,3010:238,108,-3,0,0,0.66126 -23305,3010:239,109,-3,0,0,0.670608 -23306,3011:238,118,-3,0,0,0.657314 -23307,3011:239,119,-3,0,0,0.659002 -23308,3012:131,121,-3,0,0,0.672784 -23309,3012:134,124,-3,0,0,0.672964 -23310,3012:235,125,-3,0,0,0.680762 -23311,3012:236,126,-3,0,0,0.683724 -23312,3012:237,127,-3,0,0,0.677672 -23313,3012:238,128,-3,0,0,0.684013 -23314,3012:239,129,-3,0,0,0.669086 -23315,3013:130,130,-3,0,0,0.667833 -23316,3013:235,135,-3,0,0,0.673755 -23317,3013:236,136,-3,0,0,0.674839 -23318,3013:237,137,-3,0,0,0.668745 -23319,3013:238,138,-3,0,0,0.665161 -23320,3013:239,139,-3,0,0,0.665825 -23321,3014:130,140,-3,0,0,0.666076 -23322,3014:131,141,-3,0,0,0.667925 -23323,3014:132,142,-3,0,0,0.6697 -23324,3014:133,143,-3,0,0,0.670948 -23325,3014:134,144,-3,0,0,0.67215 -23326,3014:235,145,-3,0,0,0.674184 -23327,3014:236,146,-3,0,0,0.675762 -23328,3014:237,147,-3,0,0,0.676932 -23329,3014:238,148,-3,0,0,0.67765 -23330,3014:239,149,-3,0,0,0.678503 -23331,3015:130,150,-3,0,0,0.679241 -23332,3015:131,151,-3,0,0,0.679129 -23333,3015:132,152,-3,0,0,0.678592 -23334,3015:133,153,-3,0,0,0.678301 -23335,3015:134,154,-3,0,0,0.67792 -23336,3015:235,155,-3,0,0,0.677359 -23337,3015:236,156,-3,0,0,0.676684 -23338,3015:237,157,-3,0,0,0.676167 -23339,3015:238,158,-3,0,0,0.676662 -23340,3015:239,159,-3,0,0,0.677538 -23341,3016:130,160,-3,0,0,0.678413 -23342,3016:131,161,-3,0,0,0.678749 -23343,3016:132,162,-3,0,0,0.678771 -23344,3016:133,163,-3,0,0,0.679175 -23345,3016:134,164,-3,0,0,0.679644 -23346,3016:235,165,-3,0,0,0.67989 -23347,3016:236,166,-3,0,0,0.680025 -23348,3016:237,167,-3,0,0,0.679331 -23349,3016:238,168,-3,0,0,0.67857 -23350,3016:239,169,-3,0,0,0.678122 -23351,3017:130,170,-3,0,0,0.677762 -23352,3017:131,171,-3,0,0,0.676954 -23353,3017:132,172,-3,0,0,0.676572 -23354,3017:133,173,-3,0,0,0.676909 -23355,3017:134,174,-3,0,0,0.677089 -23356,3017:235,175,-3,0,0,0.677313 -23357,3017:236,176,-3,0,0,0.677381 -23358,3017:237,177,-3,0,0,0.67747 -23359,3017:238,178,-3,0,0,0.677336 -23360,3017:239,179,-3,0,0,0.677583 -23361,3018:130,180,-3,0,0,0.677605 -23362,5018:120,-180,-2,0,0,0.677538 -23363,5017:229,-179,-2,0,0,0.677268 -23364,5017:228,-178,-2,0,0,0.676886 -23365,5017:227,-177,-2,0,0,0.675717 -23366,5017:226,-176,-2,0,0,0.67432 -23367,5017:225,-175,-2,0,0,0.674116 -23368,5017:124,-174,-2,0,0,0.672964 -23369,5017:123,-173,-2,0,0,0.670858 -23370,5017:122,-172,-2,0,0,0.668859 -23371,5017:121,-171,-2,0,0,0.667264 -23372,5017:120,-170,-2,0,0,0.66587 -23373,5016:229,-169,-2,0,0,0.664704 -23374,5016:228,-168,-2,0,0,0.663879 -23375,5016:227,-167,-2,0,0,0.662915 -23376,5016:226,-166,-2,0,0,0.660938 -23377,5016:225,-165,-2,0,0,0.657198 -23378,5016:124,-164,-2,0,0,0.654415 -23379,5016:123,-163,-2,0,0,0.653252 -23380,5016:122,-162,-2,0,0,0.652111 -23381,5016:121,-161,-2,0,0,0.650758 -23382,5016:120,-160,-2,0,0,0.650244 -23383,5015:229,-159,-2,0,0,0.649964 -23384,5015:228,-158,-2,0,0,0.649426 -23385,5015:227,-157,-2,0,0,0.647435 -23386,5015:226,-156,-2,0,0,0.647107 -23387,5015:225,-155,-2,0,0,0.646872 -23388,5015:124,-154,-2,0,0,0.646215 -23389,5015:123,-153,-2,0,0,0.644522 -23390,5015:122,-152,-2,0,0,0.641668 -23391,5015:121,-151,-2,0,0,0.63852 -23392,5015:120,-150,-2,0,0,0.636002 -23393,5014:229,-149,-2,0,0,0.633621 -23394,5014:228,-148,-2,0,0,0.630538 -23395,5014:227,-147,-2,0,0,0.62831 -23396,5014:226,-146,-2,0,0,0.626917 -23397,5014:225,-145,-2,0,0,0.625306 -23398,5014:124,-144,-2,0,0,0.624004 -23399,5014:123,-143,-2,0,0,0.622002 -23400,5014:122,-142,-2,0,0,0.620503 -23401,5014:121,-141,-2,0,0,0.619341 -23402,5014:120,-140,-2,0,0,0.617717 -23403,5013:229,-139,-2,0,0,0.618202 -23404,5013:228,-138,-2,0,0,0.617425 -23405,5013:227,-137,-2,0,0,0.614972 -23406,5013:226,-136,-2,0,0,0.611974 -23407,5013:225,-135,-2,0,0,0.610119 -23408,5013:124,-134,-2,0,0,0.608945 -23409,5013:123,-133,-2,0,0,0.60804 -23410,5013:122,-132,-2,0,0,0.606128 -23411,5013:121,-131,-2,0,0,0.601803 -23412,5013:120,-130,-2,0,0,0.600201 -23413,5012:229,-129,-2,0,0,0.600325 -23414,5012:228,-128,-2,0,0,0.59956 -23415,5012:227,-127,-2,0,0,0.598055 -23416,5012:226,-126,-2,0,0,0.596794 -23417,5012:225,-125,-2,0,0,0.5962 -23418,5012:124,-124,-2,0,0,0.594344 -23419,5012:123,-123,-2,0,0,0.591095 -23420,5012:122,-122,-2,0,0,0.588261 -23421,5012:121,-121,-2,0,0,0.587141 -23422,5012:120,-120,-2,0,0,0.586493 -23423,5011:229,-119,-2,0,0,0.585621 -23424,5011:228,-118,-2,0,0,0.581951 -23425,5011:227,-117,-2,0,0,0.58055 -23426,5011:226,-116,-2,0,0,0.580325 -23427,5011:225,-115,-2,0,0,0.579324 -23428,5011:124,-114,-2,0,0,0.57772 -23429,5011:123,-113,-2,0,0,0.577596 -23430,5011:122,-112,-2,0,0,0.578272 -23431,5011:121,-111,-2,0,0,0.579525 -23432,5011:120,-110,-2,0,0,0.581576 -23433,5010:229,-109,-2,0,0,0.583825 -23434,5010:228,-108,-2,0,0,0.583799 -23435,5010:227,-107,-2,0,0,0.583799 -23436,5010:226,-106,-2,0,0,0.584499 -23437,5010:225,-105,-2,0,0,0.585048 -23438,5010:124,-104,-2,0,0,0.584823 -23439,5010:123,-103,-2,0,0,0.584324 -23440,5010:122,-102,-2,0,0,0.58305 -23441,5010:121,-101,-2,0,0,0.580576 -23442,5010:120,-100,-2,0,0,0.579324 -23443,5009:229,-99,-2,0,0,0.5797 -23444,5009:228,-98,-2,0,0,0.58 -23445,5009:227,-97,-2,0,0,0.581726 -23446,5009:226,-96,-2,0,0,0.580726 -23447,5009:225,-95,-2,0,0,0.582825 -23448,5009:124,-94,-2,0,0,0.578548 -23449,5009:123,-93,-2,0,0,0.570108 -23450,5009:122,-92,-2,0,0,0.560565 -23451,5009:121,-91,-2,0,0,0.585347 -23452,5009:120,-90,-2,0,0,0.589232 -23453,5008:229,-89,-2,0,0,0.591791 -23454,5008:228,-88,-2,0,0,0.595037 -23455,5008:227,-87,-2,0,0,0.597091 -23456,5008:226,-86,-2,0,0,0.597511 -23457,5008:225,-85,-2,0,0,0.596448 -23458,5008:124,-84,-2,0,0,0.596967 -23459,5008:123,-83,-2,0,0,0.598425 -23460,5008:122,-82,-2,0,0,0.598647 -23461,5008:121,-81,-2,0,0,0.603722 -23462,5005:120,-50,-2,0,0,0.639965 -23463,5004:229,-49,-2,0,0,0.638188 -23464,5004:228,-48,-2,0,0,0.635146 -23465,5004:227,-47,-2,0,0,0.623547 -23466,5004:226,-46,-2,0,0,0.622002 -23467,5004:225,-45,-2,0,0,0.624655 -23468,5004:124,-44,-2,0,0,0.624318 -23469,5004:123,-43,-2,0,0,0.624872 -23470,5004:122,-42,-2,0,0,0.626171 -23471,5004:121,-41,-2,0,0,0.627253 -23472,5004:120,-40,-2,0,0,0.626917 -23473,5003:229,-39,-2,0,0,0.625065 -23474,5003:228,-38,-2,0,0,0.621374 -23475,5003:227,-37,-2,0,0,0.618978 -23476,5003:226,-36,-2,0,0,0.617256 -23477,5003:225,-35,-2,0,0,0.61609 -23478,5003:124,-34,-2,0,0,0.614387 -23479,5003:123,-33,-2,0,0,0.613267 -23480,5003:122,-32,-2,0,0,0.613681 -23481,5003:121,-31,-2,0,0,0.613681 -23482,5003:120,-30,-2,0,0,0.610583 -23483,5002:229,-29,-2,0,0,0.607501 -23484,5002:228,-28,-2,0,0,0.607844 -23485,5002:227,-27,-2,0,0,0.606374 -23486,5002:226,-26,-2,0,0,0.606545 -23487,5002:225,-25,-2,0,0,0.605784 -23488,5002:124,-24,-2,0,0,0.603894 -23489,5002:123,-23,-2,0,0,0.604729 -23490,5002:122,-22,-2,0,0,0.607109 -23491,5002:121,-21,-2,0,0,0.609361 -23492,5002:120,-20,-2,0,0,0.61134 -23493,5001:229,-19,-2,0,0,0.613706 -23494,5001:228,-18,-2,0,0,0.615555 -23495,5001:227,-17,-2,0,0,0.617256 -23496,5001:226,-16,-2,0,0,0.618566 -23497,5001:225,-15,-2,0,0,0.620721 -23498,5001:124,-14,-2,0,0,0.623715 -23499,5001:123,-13,-2,0,0,0.626869 -23500,5001:122,-12,-2,0,0,0.62994 -23501,5001:121,-11,-2,0,0,0.632857 -23502,5001:120,-10,-2,0,0,0.635074 -23503,5000:229,-9,-2,0,0,0.63655 -23504,5000:228,-8,-2,0,0,0.637832 -23505,5000:227,-7,-2,0,0,0.638781 -23506,5000:226,-6,-2,0,0,0.639823 -23507,5000:225,-5,-2,0,0,0.640675 -23508,5000:124,-4,-2,0,0,0.641904 -23509,5000:123,-3,-2,0,0,0.642802 -23510,5000:122,-2,-2,0,0,0.64299 -23511,5000:121,-1,-2,0,0,0.643438 -23512,3000:121,0,-2,0,0,0.644239 -23513,3000:121,1,-2,0,0,0.643838 -23514,3000:122,2,-2,0,0,0.643108 -23515,3000:123,3,-2,0,0,0.642377 -23516,3000:124,4,-2,0,0,0.642377 -23517,3000:225,5,-2,0,0,0.643202 -23518,3000:226,6,-2,0,0,0.64431 -23519,3000:227,7,-2,0,0,0.646121 -23520,3000:228,8,-2,0,0,0.646684 -23521,3000:229,9,-2,0,0,0.646872 -23522,3004:124,44,-2,0,0,0.640013 -23523,3004:225,45,-2,0,0,0.628861 -23524,3004:226,46,-2,0,0,0.633215 -23525,3004:227,47,-2,0,0,0.633191 -23526,3004:228,48,-2,0,0,0.633096 -23527,3004:229,49,-2,0,0,0.641502 -23528,3005:120,50,-2,0,0,0.64863 -23529,3005:121,51,-2,0,0,0.659002 -23530,3005:122,52,-2,0,0,0.662938 -23531,3005:123,53,-2,0,0,0.662134 -23532,3005:124,54,-2,0,0,0.668472 -23533,3005:225,55,-2,0,0,0.6745 -23534,3005:226,56,-2,0,0,0.675289 -23535,3005:227,57,-2,0,0,0.670676 -23536,3005:228,58,-2,0,0,0.661583 -23537,3005:229,59,-2,0,0,0.657708 -23538,3006:120,60,-2,0,0,0.653159 -23539,3006:121,61,-2,0,0,0.650478 -23540,3006:122,62,-2,0,0,0.649449 -23541,3006:123,63,-2,0,0,0.651015 -23542,3006:124,64,-2,0,0,0.652694 -23543,3006:225,65,-2,0,0,0.654252 -23544,3006:226,66,-2,0,0,0.656016 -23545,3006:227,67,-2,0,0,0.657476 -23546,3006:228,68,-2,0,0,0.658285 -23547,3006:229,69,-2,0,0,0.658563 -23548,3007:120,70,-2,0,0,0.658909 -23549,3007:121,71,-2,0,0,0.660523 -23550,3007:122,72,-2,0,0,0.662364 -23551,3007:124,74,-2,0,0,0.662479 -23552,3007:225,75,-2,0,0,0.664841 -23553,3007:226,76,-2,0,0,0.66507 -23554,3007:227,77,-2,0,0,0.664772 -23555,3007:228,78,-2,0,0,0.664314 -23556,3007:229,79,-2,0,0,0.663833 -23557,3008:120,80,-2,0,0,0.664108 -23558,3008:121,81,-2,0,0,0.664566 -23559,3008:122,82,-2,0,0,0.664704 -23560,3008:123,83,-2,0,0,0.664544 -23561,3008:124,84,-2,0,0,0.664498 -23562,3008:225,85,-2,0,0,0.664795 -23563,3008:226,86,-2,0,0,0.66507 -23564,3008:227,87,-2,0,0,0.665962 -23565,3008:228,88,-2,0,0,0.666488 -23566,3008:229,89,-2,0,0,0.667195 -23567,3009:120,90,-2,0,0,0.668813 -23568,3009:121,91,-2,0,0,0.669313 -23569,3009:122,92,-2,0,0,0.665596 -23570,3009:123,93,-2,0,0,0.662111 -23571,3009:124,94,-2,0,0,0.659394 -23572,3009:225,95,-2,0,0,0.659163 -23573,3009:226,96,-2,0,0,0.660408 -23574,3009:227,97,-2,0,0,0.662938 -23575,3009:228,98,-2,0,0,0.66683 -23576,3009:229,99,-2,0,0,0.673032 -23577,3010:124,104,-2,0,0,0.67371 -23578,3010:225,105,-2,0,0,0.661536 -23579,3010:226,106,-2,0,0,0.652088 -23580,3010:227,107,-2,0,0,0.655831 -23581,3010:228,108,-2,0,0,0.665917 -23582,3010:229,109,-2,0,0,0.676775 -23583,3011:228,118,-2,0,0,0.647575 -23584,3011:229,119,-2,0,0,0.649683 -23585,3012:120,120,-2,0,0,0.651552 -23586,3012:225,125,-2,0,0,0.685189 -23587,3012:226,126,-2,0,0,0.676617 -23588,3012:227,127,-2,0,0,0.671175 -23589,3012:229,129,-2,0,0,0.677268 -23590,3013:120,130,-2,0,0,0.669814 -23591,3013:121,131,-2,0,0,0.674184 -23592,3013:122,132,-2,0,0,0.672648 -23593,3013:123,133,-2,0,0,0.673122 -23594,3013:124,134,-2,0,0,0.673145 -23595,3013:225,135,-2,0,0,0.671402 -23596,3013:226,136,-2,0,0,0.66854 -23597,3013:227,137,-2,0,0,0.669609 -23598,3013:228,138,-2,0,0,0.668472 -23599,3013:229,139,-2,0,0,0.667537 -23600,3014:120,140,-2,0,0,0.667856 -23601,3014:121,141,-2,0,0,0.671175 -23602,3014:122,142,-2,0,0,0.671243 -23603,3014:123,143,-2,0,0,0.671538 -23604,3014:124,144,-2,0,0,0.673213 -23605,3014:225,145,-2,0,0,0.674726 -23606,3014:226,146,-2,0,0,0.676617 -23607,3014:227,147,-2,0,0,0.678032 -23608,3014:228,148,-2,0,0,0.678032 -23609,3014:229,149,-2,0,0,0.678189 -23610,3015:120,150,-2,0,0,0.678323 -23611,3015:121,151,-2,0,0,0.678615 -23612,3015:122,152,-2,0,0,0.678457 -23613,3015:123,153,-2,0,0,0.677605 -23614,3015:124,154,-2,0,0,0.676504 -23615,3015:225,155,-2,0,0,0.676302 -23616,3015:226,156,-2,0,0,0.676775 -23617,3015:227,157,-2,0,0,0.676842 -23618,3015:228,158,-2,0,0,0.677067 -23619,3015:229,159,-2,0,0,0.677583 -23620,3016:120,160,-2,0,0,0.678122 -23621,3016:121,161,-2,0,0,0.678143 -23622,3016:122,162,-2,0,0,0.678143 -23623,3016:123,163,-2,0,0,0.678524 -23624,3016:124,164,-2,0,0,0.678928 -23625,3016:225,165,-2,0,0,0.678816 -23626,3016:226,166,-2,0,0,0.678503 -23627,3016:227,167,-2,0,0,0.678435 -23628,3016:228,168,-2,0,0,0.67857 -23629,3016:229,169,-2,0,0,0.67857 -23630,3017:120,170,-2,0,0,0.678861 -23631,3017:121,171,-2,0,0,0.678995 -23632,3017:122,172,-2,0,0,0.678906 -23633,3017:123,173,-2,0,0,0.678099 -23634,3017:124,174,-2,0,0,0.677672 -23635,3017:225,175,-2,0,0,0.677762 -23636,3017:226,176,-2,0,0,0.67774 -23637,3017:227,177,-2,0,0,0.678143 -23638,3017:228,178,-2,0,0,0.678233 -23639,3017:229,179,-2,0,0,0.67792 -23640,3018:120,180,-2,0,0,0.677538 -23641,5018:110,-180,-1,0,0,0.675672 -23642,5017:219,-179,-1,0,0,0.674636 -23643,5017:218,-178,-1,0,0,0.672625 -23644,5017:217,-177,-1,0,0,0.672602 -23645,5017:216,-176,-1,0,0,0.672286 -23646,5017:215,-175,-1,0,0,0.671788 -23647,5017:114,-174,-1,0,0,0.67079 -23648,5017:113,-173,-1,0,0,0.669313 -23649,5017:112,-172,-1,0,0,0.666465 -23650,5017:111,-171,-1,0,0,0.663948 -23651,5017:110,-170,-1,0,0,0.661974 -23652,5016:219,-169,-1,0,0,0.659809 -23653,5016:218,-168,-1,0,0,0.661306 -23654,5016:217,-167,-1,0,0,0.661468 -23655,5016:216,-166,-1,0,0,0.658262 -23656,5016:215,-165,-1,0,0,0.655205 -23657,5016:114,-164,-1,0,0,0.655065 -23658,5016:113,-163,-1,0,0,0.656016 -23659,5016:112,-162,-1,0,0,0.656457 -23660,5016:111,-161,-1,0,0,0.65481 -23661,5016:110,-160,-1,0,0,0.650945 -23662,5015:219,-159,-1,0,0,0.650571 -23663,5015:218,-158,-1,0,0,0.652997 -23664,5015:217,-157,-1,0,0,0.654601 -23665,5015:216,-156,-1,0,0,0.65481 -23666,5015:215,-155,-1,0,0,0.654787 -23667,5015:114,-154,-1,0,0,0.651482 -23668,5015:113,-153,-1,0,0,0.647575 -23669,5015:112,-152,-1,0,0,0.643626 -23670,5015:111,-151,-1,0,0,0.643344 -23671,5015:110,-150,-1,0,0,0.641739 -23672,5014:219,-149,-1,0,0,0.636669 -23673,5014:218,-148,-1,0,0,0.634169 -23674,5014:217,-147,-1,0,0,0.633597 -23675,5014:216,-146,-1,0,0,0.632547 -23676,5014:215,-145,-1,0,0,0.633931 -23677,5014:114,-144,-1,0,0,0.634526 -23678,5014:113,-143,-1,0,0,0.633478 -23679,5014:112,-142,-1,0,0,0.631041 -23680,5014:111,-141,-1,0,0,0.628981 -23681,5014:110,-140,-1,0,0,0.627182 -23682,5013:219,-139,-1,0,0,0.627782 -23683,5013:218,-138,-1,0,0,0.629101 -23684,5013:217,-137,-1,0,0,0.627686 -23685,5013:216,-136,-1,0,0,0.624968 -23686,5013:215,-135,-1,0,0,0.62106 -23687,5013:114,-134,-1,0,0,0.6206 -23688,5013:113,-133,-1,0,0,0.621156 -23689,5013:112,-132,-1,0,0,0.622799 -23690,5013:111,-131,-1,0,0,0.62333 -23691,5013:110,-130,-1,0,0,0.618663 -23692,5012:219,-129,-1,0,0,0.616065 -23693,5012:218,-128,-1,0,0,0.613608 -23694,5012:217,-127,-1,0,0,0.614655 -23695,5012:216,-126,-1,0,0,0.613535 -23696,5012:215,-125,-1,0,0,0.611047 -23697,5012:114,-124,-1,0,0,0.611779 -23698,5012:113,-123,-1,0,0,0.610168 -23699,5012:112,-122,-1,0,0,0.604065 -23700,5012:111,-121,-1,0,0,0.600028 -23701,5012:110,-120,-1,0,0,0.598326 -23702,5011:219,-119,-1,0,0,0.60232 -23703,5011:218,-118,-1,0,0,0.605637 -23704,5011:217,-117,-1,0,0,0.606374 -23705,5011:216,-116,-1,0,0,0.605515 -23706,5011:215,-115,-1,0,0,0.602935 -23707,5011:114,-114,-1,0,0,0.601581 -23708,5011:113,-113,-1,0,0,0.60232 -23709,5011:112,-112,-1,0,0,0.602689 -23710,5011:111,-111,-1,0,0,0.604901 -23711,5011:110,-110,-1,0,0,0.608015 -23712,5010:219,-109,-1,0,0,0.609483 -23713,5010:218,-108,-1,0,0,0.61051 -23714,5010:217,-107,-1,0,0,0.61134 -23715,5010:216,-106,-1,0,0,0.61156 -23716,5010:215,-105,-1,0,0,0.611633 -23717,5010:114,-104,-1,0,0,0.611438 -23718,5010:113,-103,-1,0,0,0.611316 -23719,5010:112,-102,-1,0,0,0.610949 -23720,5010:111,-101,-1,0,0,0.610681 -23721,5010:110,-100,-1,0,0,0.611877 -23722,5009:219,-99,-1,0,0,0.61334 -23723,5009:218,-98,-1,0,0,0.614022 -23724,5009:217,-97,-1,0,0,0.614972 -23725,5009:216,-96,-1,0,0,0.615677 -23726,5009:215,-95,-1,0,0,0.616017 -23727,5009:114,-94,-1,0,0,0.614169 -23728,5009:113,-93,-1,0,0,0.610779 -23729,5009:112,-92,-1,0,0,0.611974 -23730,5009:111,-91,-1,0,0,0.6139 -23731,5009:110,-90,-1,0,0,0.617159 -23732,5008:219,-89,-1,0,0,0.619293 -23733,5008:218,-88,-1,0,0,0.62014 -23734,5008:217,-87,-1,0,0,0.619075 -23735,5008:216,-86,-1,0,0,0.616236 -23736,5008:215,-85,-1,0,0,0.61312 -23737,5008:114,-84,-1,0,0,0.611096 -23738,5008:113,-83,-1,0,0,0.61051 -23739,5008:112,-82,-1,0,0,0.609263 -23740,5008:111,-81,-1,0,0,0.61073 -23741,5008:110,-80,-1,0,0,0.613852 -23742,5007:219,-79,-1,0,0,0.619946 -23743,5005:110,-50,-1,0,0,0.639232 -23744,5004:219,-49,-1,0,0,0.633621 -23745,5004:218,-48,-1,0,0,0.620865 -23746,5004:217,-47,-1,0,0,0.624246 -23747,5004:216,-46,-1,0,0,0.625907 -23748,5004:215,-45,-1,0,0,0.628909 -23749,5004:114,-44,-1,0,0,0.630587 -23750,5004:113,-43,-1,0,0,0.631424 -23751,5004:112,-42,-1,0,0,0.631902 -23752,5004:111,-41,-1,0,0,0.631017 -23753,5004:110,-40,-1,0,0,0.629581 -23754,5003:219,-39,-1,0,0,0.626893 -23755,5003:218,-38,-1,0,0,0.624125 -23756,5003:217,-37,-1,0,0,0.622171 -23757,5003:216,-36,-1,0,0,0.621397 -23758,5003:215,-35,-1,0,0,0.620986 -23759,5003:114,-34,-1,0,0,0.620865 -23760,5003:113,-33,-1,0,0,0.620842 -23761,5003:112,-32,-1,0,0,0.62118 -23762,5003:111,-31,-1,0,0,0.621374 -23763,5003:110,-30,-1,0,0,0.623836 -23764,5002:219,-29,-1,0,0,0.625378 -23765,5002:218,-28,-1,0,0,0.625546 -23766,5002:217,-27,-1,0,0,0.626171 -23767,5002:216,-26,-1,0,0,0.627421 -23768,5002:215,-25,-1,0,0,0.627374 -23769,5002:114,-24,-1,0,0,0.627974 -23770,5002:113,-23,-1,0,0,0.627902 -23771,5002:112,-22,-1,0,0,0.628382 -23772,5002:111,-21,-1,0,0,0.629772 -23773,5002:110,-20,-1,0,0,0.630299 -23774,5001:219,-19,-1,0,0,0.632427 -23775,5001:218,-18,-1,0,0,0.633955 -23776,5001:217,-17,-1,0,0,0.634741 -23777,5001:216,-16,-1,0,0,0.636431 -23778,5001:215,-15,-1,0,0,0.638662 -23779,5001:114,-14,-1,0,0,0.640817 -23780,5001:113,-13,-1,0,0,0.643509 -23781,5001:112,-12,-1,0,0,0.64652 -23782,5001:111,-11,-1,0,0,0.649473 -23783,5001:110,-10,-1,0,0,0.652228 -23784,5000:219,-9,-1,0,0,0.654438 -23785,5000:218,-8,-1,0,0,0.656016 -23786,5000:217,-7,-1,0,0,0.657314 -23787,5000:216,-6,-1,0,0,0.658355 -23788,5000:215,-5,-1,0,0,0.659324 -23789,5000:114,-4,-1,0,0,0.659647 -23790,5000:113,-3,-1,0,0,0.659301 -23791,5000:112,-2,-1,0,0,0.659002 -23792,5000:111,-1,-1,0,0,0.658239 -23793,3000:111,0,-1,0,0,0.658101 -23794,3000:111,1,-1,0,0,0.657545 -23795,3000:112,2,-1,0,0,0.658401 -23796,3000:113,3,-1,0,0,0.657915 -23797,3000:114,4,-1,0,0,0.657036 -23798,3000:215,5,-1,0,0,0.656248 -23799,3000:216,6,-1,0,0,0.65481 -23800,3000:217,7,-1,0,0,0.655854 -23801,3000:218,8,-1,0,0,0.657106 -23802,3000:219,9,-1,0,0,0.656016 -23803,3004:216,46,-1,0,0,0.615507 -23804,3004:217,47,-1,0,0,0.631232 -23805,3004:218,48,-1,0,0,0.636288 -23806,3004:219,49,-1,0,0,0.640273 -23807,3005:110,50,-1,0,0,0.64405 -23808,3005:111,51,-1,0,0,0.650151 -23809,3005:112,52,-1,0,0,0.651995 -23810,3005:113,53,-1,0,0,0.661306 -23811,3005:114,54,-1,0,0,0.663627 -23812,3005:215,55,-1,0,0,0.660016 -23813,3005:216,56,-1,0,0,0.662548 -23814,3005:217,57,-1,0,0,0.666967 -23815,3005:218,58,-1,0,0,0.659279 -23816,3005:219,59,-1,0,0,0.651482 -23817,3006:110,60,-1,0,0,0.649145 -23818,3006:111,61,-1,0,0,0.648958 -23819,3006:112,62,-1,0,0,0.645933 -23820,3006:113,63,-1,0,0,0.646473 -23821,3006:114,64,-1,0,0,0.648021 -23822,3006:215,65,-1,0,0,0.650034 -23823,3006:216,66,-1,0,0,0.653438 -23824,3006:217,67,-1,0,0,0.656526 -23825,3006:218,68,-1,0,0,0.659071 -23826,3006:219,69,-1,0,0,0.661007 -23827,3007:110,70,-1,0,0,0.66287 -23828,3007:111,71,-1,0,0,0.663397 -23829,3007:112,72,-1,0,0,0.662548 -23830,3007:114,74,-1,0,0,0.662938 -23831,3007:215,75,-1,0,0,0.66436 -23832,3007:216,76,-1,0,0,0.663948 -23833,3007:217,77,-1,0,0,0.664338 -23834,3007:218,78,-1,0,0,0.664727 -23835,3007:219,79,-1,0,0,0.663214 -23836,3008:110,80,-1,0,0,0.662685 -23837,3008:111,81,-1,0,0,0.662042 -23838,3008:112,82,-1,0,0,0.662111 -23839,3008:113,83,-1,0,0,0.663168 -23840,3008:114,84,-1,0,0,0.66397 -23841,3008:215,85,-1,0,0,0.664887 -23842,3008:216,86,-1,0,0,0.664978 -23843,3008:217,87,-1,0,0,0.664841 -23844,3008:218,88,-1,0,0,0.663993 -23845,3008:219,89,-1,0,0,0.664291 -23846,3009:110,90,-1,0,0,0.665231 -23847,3009:111,91,-1,0,0,0.665001 -23848,3009:112,92,-1,0,0,0.661996 -23849,3009:113,93,-1,0,0,0.662066 -23850,3009:114,94,-1,0,0,0.661652 -23851,3009:215,95,-1,0,0,0.662962 -23852,3009:216,96,-1,0,0,0.666259 -23853,3009:217,97,-1,0,0,0.669495 -23854,3009:218,98,-1,0,0,0.671425 -23855,3010:112,102,-1,0,0,0.673687 -23856,3010:215,105,-1,0,0,0.645792 -23857,3010:216,106,-1,0,0,0.648091 -23858,3010:217,107,-1,0,0,0.650127 -23859,3010:218,108,-1,0,0,0.656596 -23860,3010:219,109,-1,0,0,0.671765 -23861,3011:110,110,-1,0,0,0.676864 -23862,3011:111,111,-1,0,0,0.681877 -23863,3011:219,119,-1,0,0,0.654973 -23864,3012:110,120,-1,0,0,0.661284 -23865,3012:111,121,-1,0,0,0.661675 -23866,3012:112,122,-1,0,0,0.664062 -23867,3012:113,123,-1,0,0,0.666738 -23868,3012:114,124,-1,0,0,0.668358 -23869,3012:215,125,-1,0,0,0.664223 -23870,3012:216,126,-1,0,0,0.665962 -23871,3012:217,127,-1,0,0,0.66491 -23872,3012:219,129,-1,0,0,0.672444 -23873,3013:110,130,-1,0,0,0.667606 -23874,3013:111,131,-1,0,0,0.668449 -23875,3013:112,132,-1,0,0,0.667833 -23876,3013:113,133,-1,0,0,0.667925 -23877,3013:114,134,-1,0,0,0.665917 -23878,3013:215,135,-1,0,0,0.664933 -23879,3013:216,136,-1,0,0,0.66475 -23880,3013:217,137,-1,0,0,0.664955 -23881,3013:218,138,-1,0,0,0.66397 -23882,3013:219,139,-1,0,0,0.663305 -23883,3014:110,140,-1,0,0,0.663512 -23884,3014:111,141,-1,0,0,0.665779 -23885,3014:112,142,-1,0,0,0.668062 -23886,3014:113,143,-1,0,0,0.670971 -23887,3014:114,144,-1,0,0,0.673552 -23888,3014:215,145,-1,0,0,0.674523 -23889,3014:216,146,-1,0,0,0.675762 -23890,3014:217,147,-1,0,0,0.676549 -23891,3014:218,148,-1,0,0,0.677762 -23892,3014:219,149,-1,0,0,0.678794 -23893,3015:110,150,-1,0,0,0.679264 -23894,3015:111,151,-1,0,0,0.679107 -23895,3015:112,152,-1,0,0,0.678704 -23896,3015:113,153,-1,0,0,0.677336 -23897,3015:114,154,-1,0,0,0.676392 -23898,3015:215,155,-1,0,0,0.676976 -23899,3015:216,156,-1,0,0,0.677201 -23900,3015:217,157,-1,0,0,0.676775 -23901,3015:218,158,-1,0,0,0.676302 -23902,3015:219,159,-1,0,0,0.675965 -23903,3016:110,160,-1,0,0,0.675559 -23904,3016:111,161,-1,0,0,0.675222 -23905,3016:112,162,-1,0,0,0.675289 -23906,3016:113,163,-1,0,0,0.675785 -23907,3016:114,164,-1,0,0,0.67637 -23908,3016:215,165,-1,0,0,0.676729 -23909,3016:216,166,-1,0,0,0.676752 -23910,3016:217,167,-1,0,0,0.676796 -23911,3016:218,168,-1,0,0,0.677089 -23912,3016:219,169,-1,0,0,0.676055 -23913,3017:110,170,-1,0,0,0.677874 -23914,3017:111,171,-1,0,0,0.677762 -23915,3017:112,172,-1,0,0,0.677493 -23916,3017:113,173,-1,0,0,0.677942 -23917,3017:114,174,-1,0,0,0.678435 -23918,3017:215,175,-1,0,0,0.678143 -23919,3017:216,176,-1,0,0,0.676819 -23920,3017:217,177,-1,0,0,0.67637 -23921,3017:218,178,-1,0,0,0.675807 -23922,3017:219,179,-1,0,0,0.676055 -23923,3018:110,180,-1,0,0,0.675672 -23924,7018:110,-180,0,0,0,0.670018 -23925,7017:219,-179,0,0,0,0.669245 -23926,7017:218,-178,0,0,0,0.66854 -23927,7017:217,-177,0,0,0,0.668107 -23928,7017:216,-176,0,0,0,0.667902 -23929,7017:215,-175,0,0,0,0.667628 -23930,7017:114,-174,0,0,0,0.666168 -23931,7017:113,-173,0,0,0,0.665665 -23932,7017:112,-172,0,0,0,0.665207 -23933,7017:111,-171,0,0,0,0.665024 -23934,7017:110,-170,0,0,0,0.663558 -23935,7016:219,-169,0,0,0,0.66241 -23936,7016:218,-168,0,0,0,0.66397 -23937,7016:217,-167,0,0,0,0.662685 -23938,7016:216,-166,0,0,0,0.659394 -23939,7016:215,-165,0,0,0,0.656179 -23940,7016:114,-164,0,0,0,0.654276 -23941,7016:113,-163,0,0,0,0.653462 -23942,7016:112,-162,0,0,0,0.654531 -23943,7016:111,-161,0,0,0,0.65611 -23944,7016:110,-160,0,0,0,0.653229 -23945,7015:219,-159,0,0,0,0.650641 -23946,7015:218,-158,0,0,0,0.655344 -23947,7015:217,-157,0,0,0,0.654136 -23948,7015:216,-156,0,0,0,0.653183 -23949,7015:215,-155,0,0,0,0.654833 -23950,7015:114,-154,0,0,0,0.655321 -23951,7015:113,-153,0,0,0,0.652671 -23952,7015:112,-152,0,0,0,0.649052 -23953,7015:111,-151,0,0,0,0.647271 -23954,7015:110,-150,0,0,0,0.645839 -23955,7014:219,-149,0,0,0,0.645768 -23956,7014:218,-148,0,0,0,0.64398 -23957,7014:217,-147,0,0,0,0.641574 -23958,7014:216,-146,0,0,0,0.63961 -23959,7014:215,-145,0,0,0,0.638212 -23960,7014:114,-144,0,0,0,0.639349 -23961,7014:113,-143,0,0,0,0.64214 -23962,7014:112,-142,0,0,0,0.638235 -23963,7014:111,-141,0,0,0,0.632785 -23964,7014:110,-140,0,0,0,0.633811 -23965,7013:219,-139,0,0,0,0.634193 -23966,7013:218,-138,0,0,0,0.638307 -23967,7013:217,-137,0,0,0,0.639681 -23968,7013:216,-136,0,0,0,0.638638 -23969,7013:215,-135,0,0,0,0.632762 -23970,7013:114,-134,0,0,0,0.628237 -23971,7013:113,-133,0,0,0,0.630371 -23972,7013:112,-132,0,0,0,0.632977 -23973,7013:111,-131,0,0,0,0.629269 -23974,7013:110,-130,0,0,0,0.620503 -23975,7012:219,-129,0,0,0,0.630251 -23976,7012:218,-128,0,0,0,0.632833 -23977,7012:217,-127,0,0,0,0.631256 -23978,7012:216,-126,0,0,0,0.632093 -23979,7012:215,-125,0,0,0,0.625233 -23980,7012:114,-124,0,0,0,0.621808 -23981,7012:113,-123,0,0,0,0.621132 -23982,7012:112,-122,0,0,0,0.611365 -23983,7012:111,-121,0,0,0,0.611633 -23984,7012:110,-120,0,0,0,0.612682 -23985,7011:219,-119,0,0,0,0.621567 -23986,7011:218,-118,0,0,0,0.618978 -23987,7011:217,-117,0,0,0,0.618711 -23988,7011:216,-116,0,0,0,0.620213 -23989,7011:215,-115,0,0,0,0.621422 -23990,7011:114,-114,0,0,0,0.621035 -23991,7011:113,-113,0,0,0,0.619317 -23992,7011:112,-112,0,0,0,0.618008 -23993,7011:111,-111,0,0,0,0.618881 -23994,7011:110,-110,0,0,0,0.62176 -23995,7010:219,-109,0,0,0,0.621833 -23996,7010:218,-108,0,0,0,0.620914 -23997,7010:217,-107,0,0,0,0.620842 -23998,7010:216,-106,0,0,0,0.620454 -23999,7010:215,-105,0,0,0,0.619462 -24000,7010:114,-104,0,0,0,0.618832 -24001,7010:113,-103,0,0,0,0.618663 -24002,7010:112,-102,0,0,0,0.619026 -24003,7010:111,-101,0,0,0,0.620043 -24004,7010:110,-100,0,0,0,0.620865 -24005,7009:219,-99,0,0,0,0.621833 -24006,7009:218,-98,0,0,0,0.622919 -24007,7009:217,-97,0,0,0,0.624149 -24008,7009:216,-96,0,0,0,0.62545 -24009,7009:215,-95,0,0,0,0.62557 -24010,7009:114,-94,0,0,0,0.624608 -24011,7009:113,-93,0,0,0,0.623812 -24012,7009:112,-92,0,0,0,0.623691 -24013,7009:111,-91,0,0,0,0.623643 -24014,7009:110,-90,0,0,0,0.625113 -24015,7008:219,-89,0,0,0,0.626484 -24016,7008:218,-88,0,0,0,0.627637 -24017,7008:217,-87,0,0,0,0.628118 -24018,7008:216,-86,0,0,0,0.626075 -24019,7008:215,-85,0,0,0,0.623595 -24020,7008:114,-84,0,0,0,0.622919 -24021,7008:113,-83,0,0,0,0.621108 -24022,7008:112,-82,0,0,0,0.619365 -24023,7008:111,-81,0,0,0,0.618274 -24024,7008:110,-80,0,0,0,0.618735 -24025,7007:219,-79,0,0,0,0.618008 -24026,7007:218,-78,0,0,0,0.630849 -24027,7005:111,-51,0,0,0,0.637025 -24028,7005:110,-50,0,0,0,0.629413 -24029,7004:219,-49,0,0,0,0.624487 -24030,7004:218,-48,0,0,0,0.626893 -24031,7004:217,-47,0,0,0,0.631185 -24032,7004:216,-46,0,0,0,0.63486 -24033,7004:215,-45,0,0,0,0.636217 -24034,7004:114,-44,0,0,0,0.636526 -24035,7004:113,-43,0,0,0,0.636026 -24036,7004:112,-42,0,0,0,0.634121 -24037,7004:111,-41,0,0,0,0.632857 -24038,7004:110,-40,0,0,0,0.632571 -24039,7003:219,-39,0,0,0,0.632332 -24040,7003:218,-38,0,0,0,0.630849 -24041,7003:217,-37,0,0,0,0.628981 -24042,7003:216,-36,0,0,0,0.627133 -24043,7003:215,-35,0,0,0,0.626388 -24044,7003:114,-34,0,0,0,0.626436 -24045,7003:113,-33,0,0,0,0.625859 -24046,7003:112,-32,0,0,0,0.62557 -24047,7003:111,-31,0,0,0,0.625185 -24048,7003:110,-30,0,0,0,0.625017 -24049,7002:219,-29,0,0,0,0.626965 -24050,7002:218,-28,0,0,0,0.627662 -24051,7002:217,-27,0,0,0,0.628357 -24052,7002:216,-26,0,0,0,0.629149 -24053,7002:215,-25,0,0,0,0.631041 -24054,7002:114,-24,0,0,0,0.632762 -24055,7002:113,-23,0,0,0,0.634098 -24056,7002:112,-22,0,0,0,0.635337 -24057,7002:111,-21,0,0,0,0.635432 -24058,7002:110,-20,0,0,0,0.635432 -24059,7001:219,-19,0,0,0,0.637832 -24060,7001:218,-18,0,0,0,0.638876 -24061,7001:217,-17,0,0,0,0.639989 -24062,7001:216,-16,0,0,0,0.641526 -24063,7001:215,-15,0,0,0,0.642565 -24064,7001:114,-14,0,0,0,0.644074 -24065,7001:113,-13,0,0,0,0.646544 -24066,7001:112,-12,0,0,0,0.64987 -24067,7001:111,-11,0,0,0,0.652833 -24068,7001:110,-10,0,0,0,0.655483 -24069,7000:219,-9,0,0,0,0.65699 -24070,7000:218,-8,0,0,0,0.658378 -24071,7000:217,-7,0,0,0,0.659809 -24072,7000:216,-6,0,0,0,0.661536 -24073,7000:215,-5,0,0,0,0.664017 -24074,7000:114,-4,0,0,0,0.66635 -24075,7000:113,-3,0,0,0,0.667879 -24076,7000:112,-2,0,0,0,0.668972 -24077,7000:111,-1,0,0,0,0.671584 -24078,1000:111,0,0,0,0,0.672263 -24079,1000:111,1,0,0,0,0.669427 -24080,1000:112,2,0,0,0,0.669836 -24081,1000:113,3,0,0,0,0.669972 -24082,1000:114,4,0,0,0,0.671991 -24083,1000:215,5,0,0,0,0.672625 -24084,1000:216,6,0,0,0,0.666899 -24085,1000:217,7,0,0,0,0.662594 -24086,1000:218,8,0,0,0,0.660178 -24087,1000:219,9,0,0,0,0.660247 -24088,1004:217,47,0,0,0,0.633835 -24089,1004:218,48,0,0,0,0.633859 -24090,1004:219,49,0,0,0,0.63871 -24091,1005:110,50,0,0,0,0.641715 -24092,1005:111,51,0,0,0,0.646731 -24093,1005:112,52,0,0,0,0.646825 -24094,1005:113,53,0,0,0,0.647552 -24095,1005:114,54,0,0,0,0.646637 -24096,1005:215,55,0,0,0,0.650127 -24097,1005:216,56,0,0,0,0.65488 -24098,1005:217,57,0,0,0,0.659371 -24099,1005:218,58,0,0,0,0.658216 -24100,1005:219,59,0,0,0,0.654508 -24101,1006:110,60,0,0,0,0.650898 -24102,1006:111,61,0,0,0,0.651201 -24103,1006:112,62,0,0,0,0.650594 -24104,1006:113,63,0,0,0,0.647951 -24105,1006:114,64,0,0,0,0.646989 -24106,1006:215,65,0,0,0,0.652694 -24107,1006:216,66,0,0,0,0.657291 -24108,1006:217,67,0,0,0,0.659555 -24109,1006:218,68,0,0,0,0.661376 -24110,1006:219,69,0,0,0,0.664658 -24111,1007:110,70,0,0,0,0.66635 -24112,1007:111,71,0,0,0,0.666053 -24113,1007:112,72,0,0,0,0.66475 -24114,1007:114,74,0,0,0,0.663237 -24115,1007:215,75,0,0,0,0.661789 -24116,1007:216,76,0,0,0,0.660178 -24117,1007:217,77,0,0,0,0.660016 -24118,1007:218,78,0,0,0,0.659555 -24119,1007:219,79,0,0,0,0.658932 -24120,1008:110,80,0,0,0,0.658077 -24121,1008:111,81,0,0,0,0.65817 -24122,1008:112,82,0,0,0,0.659509 -24123,1008:113,83,0,0,0,0.660708 -24124,1008:114,84,0,0,0,0.662915 -24125,1008:215,85,0,0,0,0.664772 -24126,1008:216,86,0,0,0,0.66397 -24127,1008:217,87,0,0,0,0.662938 -24128,1008:218,88,0,0,0,0.662685 -24129,1008:219,89,0,0,0,0.663099 -24130,1009:110,90,0,0,0,0.663604 -24131,1009:111,91,0,0,0,0.661767 -24132,1009:112,92,0,0,0,0.662525 -24133,1009:113,93,0,0,0,0.665322 -24134,1009:114,94,0,0,0,0.666738 -24135,1009:215,95,0,0,0,0.667765 -24136,1009:216,96,0,0,0,0.669904 -24137,1009:217,97,0,0,0,0.671493 -24138,1010:110,100,0,0,0,0.673394 -24139,1010:111,101,0,0,0,0.679354 -24140,1010:114,104,0,0,0,0.640202 -24141,1010:215,105,0,0,0,0.637499 -24142,1010:216,106,0,0,0,0.639563 -24143,1010:217,107,0,0,0,0.631567 -24144,1010:218,108,0,0,0,0.644357 -24145,1010:219,109,0,0,0,0.656573 -24146,1011:110,110,0,0,0,0.664635 -24147,1011:111,111,0,0,0,0.667378 -24148,1011:112,112,0,0,0,0.670155 -24149,1011:113,113,0,0,0,0.672942 -24150,1011:218,118,0,0,0,0.66172 -24151,1011:219,119,0,0,0,0.651155 -24152,1012:110,120,0,0,0,0.658632 -24153,1012:111,121,0,0,0,0.664017 -24154,1012:112,122,0,0,0,0.665596 -24155,1012:113,123,0,0,0,0.666944 -24156,1012:114,124,0,0,0,0.667195 -24157,1012:215,125,0,0,0,0.665847 -24158,1012:216,126,0,0,0,0.66895 -24159,1012:217,127,0,0,0,0.662042 -24160,1012:218,128,0,0,0,0.664131 -24161,1012:219,129,0,0,0,0.664589 -24162,1013:110,130,0,0,0,0.665367 -24163,1013:111,131,0,0,0,0.663099 -24164,1013:112,132,0,0,0,0.658863 -24165,1013:113,133,0,0,0,0.659094 -24166,1013:114,134,0,0,0,0.661789 -24167,1013:215,135,0,0,0,0.664589 -24168,1013:216,136,0,0,0,0.667537 -24169,1013:217,137,0,0,0,0.671062 -24170,1013:218,138,0,0,0,0.669746 -24171,1013:219,139,0,0,0,0.66929 -24172,1014:110,140,0,0,0,0.669972 -24173,1014:111,141,0,0,0,0.669586 -24174,1014:112,142,0,0,0,0.669131 -24175,1014:113,143,0,0,0,0.670268 -24176,1014:114,144,0,0,0,0.672308 -24177,1014:215,145,0,0,0,0.673981 -24178,1014:216,146,0,0,0,0.674658 -24179,1014:217,147,0,0,0,0.676055 -24180,1014:218,148,0,0,0,0.678054 -24181,1014:219,149,0,0,0,0.67839 -24182,1015:110,150,0,0,0,0.678524 -24183,1015:111,151,0,0,0,0.678189 -24184,1015:112,152,0,0,0,0.677403 -24185,1015:113,153,0,0,0,0.67637 -24186,1015:114,154,0,0,0,0.675739 -24187,1015:215,155,0,0,0,0.675357 -24188,1015:216,156,0,0,0,0.675041 -24189,1015:217,157,0,0,0,0.674297 -24190,1015:218,158,0,0,0,0.673122 -24191,1015:219,159,0,0,0,0.672217 -24192,1016:110,160,0,0,0,0.671538 -24193,1016:111,161,0,0,0,0.671357 -24194,1016:112,162,0,0,0,0.671878 -24195,1016:113,163,0,0,0,0.672602 -24196,1016:114,164,0,0,0,0.67319 -24197,1016:215,165,0,0,0,0.673258 -24198,1016:216,166,0,0,0,0.672467 -24199,1016:217,167,0,0,0,0.672105 -24200,1016:218,168,0,0,0,0.672308 -24201,1016:219,169,0,0,0,0.674342 -24202,1017:110,170,0,0,0,0.675289 -24203,1017:111,171,0,0,0,0.675199 -24204,1017:112,172,0,0,0,0.675086 -24205,1017:113,173,0,0,0,0.675041 -24206,1017:114,174,0,0,0,0.675447 -24207,1017:215,175,0,0,0,0.676864 -24208,1017:216,176,0,0,0,0.675785 -24209,1017:217,177,0,0,0,0.672942 -24210,1017:218,178,0,0,0,0.67138 -24211,1017:219,179,0,0,0,0.670971 -24212,1018:110,180,0,0,0,0.670018 -24213,7018:110,-180,1,0,0,0.667172 -24214,7017:219,-179,1,0,0,0.665939 -24215,7017:218,-178,1,0,0,0.664521 -24216,7017:217,-177,1,0,0,0.663168 -24217,7017:216,-176,1,0,0,0.662387 -24218,7017:215,-175,1,0,0,0.662433 -24219,7017:114,-174,1,0,0,0.66241 -24220,7017:113,-173,1,0,0,0.662594 -24221,7017:112,-172,1,0,0,0.661007 -24222,7017:111,-171,1,0,0,0.66057 -24223,7017:110,-170,1,0,0,0.659947 -24224,7016:219,-169,1,0,0,0.660408 -24225,7016:218,-168,1,0,0,0.660293 -24226,7016:217,-167,1,0,0,0.660408 -24227,7016:216,-166,1,0,0,0.659647 -24228,7016:215,-165,1,0,0,0.659486 -24229,7016:114,-164,1,0,0,0.659024 -24230,7016:113,-163,1,0,0,0.658539 -24231,7016:112,-162,1,0,0,0.657777 -24232,7016:111,-161,1,0,0,0.656086 -24233,7016:110,-160,1,0,0,0.655042 -24234,7015:219,-159,1,0,0,0.656132 -24235,7015:218,-158,1,0,0,0.656016 -24236,7015:217,-157,1,0,0,0.655344 -24237,7015:216,-156,1,0,0,0.654787 -24238,7015:215,-155,1,0,0,0.655089 -24239,7015:114,-154,1,0,0,0.654671 -24240,7015:113,-153,1,0,0,0.654671 -24241,7015:112,-152,1,0,0,0.653462 -24242,7015:111,-151,1,0,0,0.651715 -24243,7015:110,-150,1,0,0,0.651201 -24244,7014:219,-149,1,0,0,0.651715 -24245,7014:218,-148,1,0,0,0.651015 -24246,7014:217,-147,1,0,0,0.649823 -24247,7014:216,-146,1,0,0,0.647764 -24248,7014:215,-145,1,0,0,0.646426 -24249,7014:114,-144,1,0,0,0.647834 -24250,7014:113,-143,1,0,0,0.648841 -24251,7014:112,-142,1,0,0,0.648443 -24252,7014:111,-141,1,0,0,0.646567 -24253,7014:110,-140,1,0,0,0.648021 -24254,7013:219,-139,1,0,0,0.646027 -24255,7013:218,-138,1,0,0,0.643084 -24256,7013:217,-137,1,0,0,0.641384 -24257,7013:216,-136,1,0,0,0.641763 -24258,7013:215,-135,1,0,0,0.641763 -24259,7013:114,-134,1,0,0,0.640367 -24260,7013:113,-133,1,0,0,0.637476 -24261,7013:112,-132,1,0,0,0.640084 -24262,7013:111,-131,1,0,0,0.642518 -24263,7013:110,-130,1,0,0,0.643225 -24264,7012:219,-129,1,0,0,0.640699 -24265,7012:218,-128,1,0,0,0.643485 -24266,7012:217,-127,1,0,0,0.643084 -24267,7012:216,-126,1,0,0,0.640817 -24268,7012:215,-125,1,0,0,0.636074 -24269,7012:114,-124,1,0,0,0.640652 -24270,7012:113,-123,1,0,0,0.64103 -24271,7012:112,-122,1,0,0,0.631878 -24272,7012:111,-121,1,0,0,0.628742 -24273,7012:110,-120,1,0,0,0.635883 -24274,7011:219,-119,1,0,0,0.637998 -24275,7011:218,-118,1,0,0,0.63486 -24276,7011:217,-117,1,0,0,0.634098 -24277,7011:216,-116,1,0,0,0.634312 -24278,7011:215,-115,1,0,0,0.634264 -24279,7011:114,-114,1,0,0,0.634384 -24280,7011:113,-113,1,0,0,0.63455 -24281,7011:112,-112,1,0,0,0.635098 -24282,7011:111,-111,1,0,0,0.635408 -24283,7011:110,-110,1,0,0,0.635122 -24284,7010:219,-109,1,0,0,0.634026 -24285,7010:218,-108,1,0,0,0.632785 -24286,7010:217,-107,1,0,0,0.631567 -24287,7010:216,-106,1,0,0,0.630514 -24288,7010:215,-105,1,0,0,0.629628 -24289,7010:114,-104,1,0,0,0.628694 -24290,7010:113,-103,1,0,0,0.627902 -24291,7010:112,-102,1,0,0,0.627374 -24292,7010:111,-101,1,0,0,0.627374 -24293,7010:110,-100,1,0,0,0.62747 -24294,7009:219,-99,1,0,0,0.627902 -24295,7009:218,-98,1,0,0,0.628118 -24296,7009:217,-97,1,0,0,0.628141 -24297,7009:216,-96,1,0,0,0.628357 -24298,7009:215,-95,1,0,0,0.629054 -24299,7009:114,-94,1,0,0,0.628646 -24300,7009:113,-93,1,0,0,0.628357 -24301,7009:112,-92,1,0,0,0.62771 -24302,7009:111,-91,1,0,0,0.627157 -24303,7009:110,-90,1,0,0,0.627421 -24304,7008:219,-89,1,0,0,0.628765 -24305,7008:218,-88,1,0,0,0.630802 -24306,7008:217,-87,1,0,0,0.633669 -24307,7008:216,-86,1,0,0,0.633764 -24308,7008:215,-85,1,0,0,0.636621 -24309,7008:114,-84,1,0,0,0.636336 -24310,7008:113,-83,1,0,0,0.632451 -24311,7008:112,-82,1,0,0,0.633263 -24312,7008:111,-81,1,0,0,0.633693 -24313,7008:110,-80,1,0,0,0.633239 -24314,7007:219,-79,1,0,0,0.629724 -24315,7007:218,-78,1,0,0,0.630802 -24316,7005:112,-52,1,0,0,0.619293 -24317,7005:111,-51,1,0,0,0.625956 -24318,7005:110,-50,1,0,0,0.626893 -24319,7004:219,-49,1,0,0,0.631376 -24320,7004:218,-48,1,0,0,0.630611 -24321,7004:217,-47,1,0,0,0.630443 -24322,7004:216,-46,1,0,0,0.633573 -24323,7004:215,-45,1,0,0,0.636002 -24324,7004:114,-44,1,0,0,0.635479 -24325,7004:113,-43,1,0,0,0.632571 -24326,7004:112,-42,1,0,0,0.630922 -24327,7004:111,-41,1,0,0,0.632045 -24328,7004:110,-40,1,0,0,0.632356 -24329,7003:219,-39,1,0,0,0.63269 -24330,7003:218,-38,1,0,0,0.632499 -24331,7003:217,-37,1,0,0,0.631639 -24332,7003:216,-36,1,0,0,0.63128 -24333,7003:215,-35,1,0,0,0.630347 -24334,7003:114,-34,1,0,0,0.630323 -24335,7003:113,-33,1,0,0,0.629365 -24336,7003:112,-32,1,0,0,0.628958 -24337,7003:111,-31,1,0,0,0.629221 -24338,7003:110,-30,1,0,0,0.629557 -24339,7002:219,-29,1,0,0,0.630227 -24340,7002:218,-28,1,0,0,0.630969 -24341,7002:217,-27,1,0,0,0.632212 -24342,7002:216,-26,1,0,0,0.633072 -24343,7002:215,-25,1,0,0,0.633693 -24344,7002:114,-24,1,0,0,0.634884 -24345,7002:113,-23,1,0,0,0.635907 -24346,7002:112,-22,1,0,0,0.637381 -24347,7002:111,-21,1,0,0,0.638497 -24348,7002:110,-20,1,0,0,0.64006 -24349,7001:219,-19,1,0,0,0.642164 -24350,7001:218,-18,1,0,0,0.644992 -24351,7001:217,-17,1,0,0,0.646191 -24352,7001:216,-16,1,0,0,0.647341 -24353,7001:215,-15,1,0,0,0.648091 -24354,7001:114,-14,1,0,0,0.648185 -24355,7001:113,-13,1,0,0,0.649519 -24356,7001:112,-12,1,0,0,0.650992 -24357,7001:111,-11,1,0,0,0.655019 -24358,7001:110,-10,1,0,0,0.659901 -24359,7000:216,-6,1,0,0,0.661053 -24360,7000:215,-5,1,0,0,0.663305 -24361,7000:114,-4,1,0,0,0.665619 -24362,7000:113,-3,1,0,0,0.667993 -24363,7000:111,-1,1,0,0,0.664978 -24364,1000:111,0,1,0,0,0.673733 -24365,1000:111,1,1,0,0,0.673913 -24366,1000:112,2,1,0,0,0.673236 -24367,1000:113,3,1,0,0,0.67468 -24368,1000:114,4,1,0,0,0.676234 -24369,1000:215,5,1,0,0,0.674342 -24370,1004:219,49,1,0,0,0.631567 -24371,1005:110,50,1,0,0,0.639586 -24372,1005:111,51,1,0,0,0.63987 -24373,1005:112,52,1,0,0,0.63814 -24374,1005:113,53,1,0,0,0.638994 -24375,1005:114,54,1,0,0,0.643603 -24376,1005:215,55,1,0,0,0.648537 -24377,1005:216,56,1,0,0,0.654345 -24378,1005:217,57,1,0,0,0.656248 -24379,1005:218,58,1,0,0,0.656781 -24380,1005:219,59,1,0,0,0.654415 -24381,1006:110,60,1,0,0,0.656897 -24382,1006:111,61,1,0,0,0.654787 -24383,1006:112,62,1,0,0,0.652368 -24384,1006:113,63,1,0,0,0.651924 -24385,1006:114,64,1,0,0,0.65402 -24386,1006:215,65,1,0,0,0.656318 -24387,1006:216,66,1,0,0,0.656897 -24388,1006:217,67,1,0,0,0.659209 -24389,1006:218,68,1,0,0,0.661675 -24390,1006:219,69,1,0,0,0.662318 -24391,1007:110,70,1,0,0,0.662502 -24392,1007:111,71,1,0,0,0.662617 -24393,1007:112,72,1,0,0,0.661882 -24394,1007:114,74,1,0,0,0.657198 -24395,1007:215,75,1,0,0,0.65481 -24396,1007:216,76,1,0,0,0.653578 -24397,1007:217,77,1,0,0,0.65395 -24398,1007:218,78,1,0,0,0.654369 -24399,1007:219,79,1,0,0,0.654508 -24400,1008:110,80,1,0,0,0.652414 -24401,1008:111,81,1,0,0,0.649332 -24402,1008:112,82,1,0,0,0.652181 -24403,1008:113,83,1,0,0,0.658077 -24404,1008:114,84,1,0,0,0.660386 -24405,1008:215,85,1,0,0,0.660339 -24406,1008:216,86,1,0,0,0.659301 -24407,1008:217,87,1,0,0,0.656642 -24408,1008:218,88,1,0,0,0.655669 -24409,1008:219,89,1,0,0,0.655924 -24410,1009:110,90,1,0,0,0.654764 -24411,1009:111,91,1,0,0,0.654276 -24412,1009:112,92,1,0,0,0.65611 -24413,1009:113,93,1,0,0,0.657106 -24414,1009:114,94,1,0,0,0.659024 -24415,1009:215,95,1,0,0,0.66404 -24416,1009:219,99,1,0,0,0.662571 -24417,1010:110,100,1,0,0,0.658608 -24418,1010:114,104,1,0,0,0.638093 -24419,1010:215,105,1,0,0,0.629964 -24420,1010:216,106,1,0,0,0.629005 -24421,1010:217,107,1,0,0,0.62807 -24422,1010:218,108,1,0,0,0.633835 -24423,1010:219,109,1,0,0,0.643674 -24424,1011:110,110,1,0,0,0.646473 -24425,1011:111,111,1,0,0,0.653741 -24426,1011:112,112,1,0,0,0.658493 -24427,1011:113,113,1,0,0,0.662456 -24428,1011:114,114,1,0,0,0.66683 -24429,1011:215,115,1,0,0,0.669586 -24430,1012:110,120,1,0,0,0.662594 -24431,1012:111,121,1,0,0,0.649215 -24432,1012:112,122,1,0,0,0.65409 -24433,1012:113,123,1,0,0,0.658146 -24434,1012:114,124,1,0,0,0.654833 -24435,1012:215,125,1,0,0,0.645439 -24436,1012:216,126,1,0,0,0.644592 -24437,1012:217,127,1,0,0,0.655135 -24438,1012:218,128,1,0,0,0.663374 -24439,1012:219,129,1,0,0,0.665161 -24440,1013:110,130,1,0,0,0.666282 -24441,1013:111,131,1,0,0,0.666738 -24442,1013:112,132,1,0,0,0.664612 -24443,1013:113,133,1,0,0,0.6628 -24444,1013:114,134,1,0,0,0.664544 -24445,1013:215,135,1,0,0,0.668768 -24446,1013:216,136,1,0,0,0.672308 -24447,1013:217,137,1,0,0,0.671153 -24448,1013:218,138,1,0,0,0.667606 -24449,1013:219,139,1,0,0,0.66797 -24450,1014:110,140,1,0,0,0.669086 -24451,1014:111,141,1,0,0,0.66929 -24452,1014:112,142,1,0,0,0.670018 -24453,1014:113,143,1,0,0,0.671108 -24454,1014:114,144,1,0,0,0.672399 -24455,1014:215,145,1,0,0,0.673755 -24456,1014:216,146,1,0,0,0.674161 -24457,1014:217,147,1,0,0,0.673778 -24458,1014:218,148,1,0,0,0.673484 -24459,1014:219,149,1,0,0,0.673349 -24460,1015:110,150,1,0,0,0.674026 -24461,1015:111,151,1,0,0,0.67441 -24462,1015:112,152,1,0,0,0.673529 -24463,1015:113,153,1,0,0,0.672399 -24464,1015:114,154,1,0,0,0.66995 -24465,1015:215,155,1,0,0,0.668722 -24466,1015:216,156,1,0,0,0.669313 -24467,1015:217,157,1,0,0,0.671039 -24468,1015:218,158,1,0,0,0.671493 -24469,1015:219,159,1,0,0,0.670881 -24470,1016:110,160,1,0,0,0.670132 -24471,1016:111,161,1,0,0,0.669609 -24472,1016:112,162,1,0,0,0.669518 -24473,1016:113,163,1,0,0,0.669586 -24474,1016:114,164,1,0,0,0.669268 -24475,1016:215,165,1,0,0,0.668381 -24476,1016:216,166,1,0,0,0.668586 -24477,1016:217,167,1,0,0,0.669381 -24478,1016:218,168,1,0,0,0.670336 -24479,1016:219,169,1,0,0,0.67079 -24480,1017:110,170,1,0,0,0.670086 -24481,1017:111,171,1,0,0,0.671085 -24482,1017:112,172,1,0,0,0.672806 -24483,1017:113,173,1,0,0,0.672421 -24484,1017:114,174,1,0,0,0.670858 -24485,1017:215,175,1,0,0,0.669199 -24486,1017:216,176,1,0,0,0.669836 -24487,1017:217,177,1,0,0,0.668586 -24488,1017:218,178,1,0,0,0.667742 -24489,1017:219,179,1,0,0,0.667697 -24490,1018:110,180,1,0,0,0.667172 -24491,7018:120,-180,2,0,0,0.66149 -24492,7017:229,-179,2,0,0,0.661789 -24493,7017:228,-178,2,0,0,0.660777 -24926,1006:134,64,3,0,0,0.64438 -24494,7017:227,-177,2,0,0,0.658401 -24495,7017:226,-176,2,0,0,0.655947 -24496,7017:225,-175,2,0,0,0.654601 -24497,7017:124,-174,2,0,0,0.653927 -24498,7017:123,-173,2,0,0,0.65395 -24499,7017:122,-172,2,0,0,0.654392 -24500,7017:121,-171,2,0,0,0.654345 -24501,7017:120,-170,2,0,0,0.654043 -24502,7016:229,-169,2,0,0,0.653112 -24503,7016:228,-168,2,0,0,0.652857 -24504,7016:227,-167,2,0,0,0.651738 -24505,7016:226,-166,2,0,0,0.651505 -24506,7016:225,-165,2,0,0,0.651855 -24507,7016:124,-164,2,0,0,0.652647 -24508,7016:123,-163,2,0,0,0.652904 -24509,7016:122,-162,2,0,0,0.652717 -24510,7016:121,-161,2,0,0,0.652647 -24511,7016:120,-160,2,0,0,0.65281 -24512,7015:229,-159,2,0,0,0.653415 -24513,7015:228,-158,2,0,0,0.653531 -24514,7015:227,-157,2,0,0,0.652997 -24515,7015:226,-156,2,0,0,0.652251 -24516,7015:225,-155,2,0,0,0.651762 -24517,7015:124,-154,2,0,0,0.651668 -24518,7015:123,-153,2,0,0,0.651855 -24519,7015:122,-152,2,0,0,0.652018 -24520,7015:121,-151,2,0,0,0.651855 -24521,7015:120,-150,2,0,0,0.651248 -24522,7014:229,-149,2,0,0,0.650338 -24523,7014:228,-148,2,0,0,0.649777 -24524,7014:227,-147,2,0,0,0.649613 -24525,7014:226,-146,2,0,0,0.649753 -24526,7014:225,-145,2,0,0,0.649823 -24527,7014:124,-144,2,0,0,0.649473 -24528,7014:123,-143,2,0,0,0.649028 -24529,7014:122,-142,2,0,0,0.648817 -24530,7014:121,-141,2,0,0,0.648724 -24531,7014:120,-140,2,0,0,0.648396 -24532,7013:229,-139,2,0,0,0.648208 -24533,7013:228,-138,2,0,0,0.647505 -24534,7013:227,-137,2,0,0,0.646684 -24535,7013:226,-136,2,0,0,0.646215 -24536,7013:225,-135,2,0,0,0.645627 -24537,7013:124,-134,2,0,0,0.64471 -24538,7013:123,-133,2,0,0,0.643556 -24539,7013:122,-132,2,0,0,0.643037 -24540,7013:121,-131,2,0,0,0.643485 -24541,7013:120,-130,2,0,0,0.643626 -24542,7012:229,-129,2,0,0,0.644192 -24543,7012:228,-128,2,0,0,0.644145 -24544,7012:227,-127,2,0,0,0.642377 -24545,7012:226,-126,2,0,0,0.641172 -24546,7012:225,-125,2,0,0,0.642188 -24547,7012:124,-124,2,0,0,0.642211 -24548,7012:123,-123,2,0,0,0.641101 -24549,7012:122,-122,2,0,0,0.639349 -24550,7012:121,-121,2,0,0,0.637998 -24551,7012:120,-120,2,0,0,0.638378 -24552,7011:229,-119,2,0,0,0.639563 -24553,7011:228,-118,2,0,0,0.640178 -24554,7011:227,-117,2,0,0,0.641479 -24555,7011:226,-116,2,0,0,0.641998 -24556,7011:225,-115,2,0,0,0.641408 -24557,7011:124,-114,2,0,0,0.641337 -24558,7011:123,-113,2,0,0,0.641361 -24559,7011:122,-112,2,0,0,0.64129 -24560,7011:121,-111,2,0,0,0.640439 -24561,7011:120,-110,2,0,0,0.638947 -24562,7010:229,-109,2,0,0,0.637167 -24563,7010:228,-108,2,0,0,0.635217 -24564,7010:227,-107,2,0,0,0.63312 -24565,7010:226,-106,2,0,0,0.631519 -24566,7010:225,-105,2,0,0,0.630036 -24567,7010:124,-104,2,0,0,0.629317 -24568,7010:123,-103,2,0,0,0.628718 -24569,7010:122,-102,2,0,0,0.628598 -24570,7010:121,-101,2,0,0,0.628526 -24571,7010:120,-100,2,0,0,0.629077 -24572,7009:229,-99,2,0,0,0.629604 -24573,7009:228,-98,2,0,0,0.629653 -24574,7009:227,-97,2,0,0,0.629269 -24575,7009:226,-96,2,0,0,0.628981 -24576,7009:225,-95,2,0,0,0.628838 -24577,7009:124,-94,2,0,0,0.629413 -24578,7009:123,-93,2,0,0,0.630706 -24579,7009:122,-92,2,0,0,0.631782 -24580,7009:121,-91,2,0,0,0.631902 -24581,7009:120,-90,2,0,0,0.632188 -24582,7008:229,-89,2,0,0,0.633072 -24583,7008:228,-88,2,0,0,0.634622 -24584,7008:227,-87,2,0,0,0.638615 -24585,7008:226,-86,2,0,0,0.643909 -24586,7008:225,-85,2,0,0,0.648373 -24587,7008:124,-84,2,0,0,0.651178 -24588,7008:123,-83,2,0,0,0.652414 -24589,7008:122,-82,2,0,0,0.652041 -24590,7008:121,-81,2,0,0,0.652274 -24591,7008:120,-80,2,0,0,0.649215 -24592,7007:229,-79,2,0,0,0.644969 -24593,7007:228,-78,2,0,0,0.647412 -24594,7005:227,-57,2,0,0,0.611169 -24595,7005:226,-56,2,0,0,0.600447 -24596,7005:225,-55,2,0,0,0.600596 -24597,7005:124,-54,2,0,0,0.60468 -24598,7005:123,-53,2,0,0,0.619898 -24599,7005:122,-52,2,0,0,0.626268 -24600,7005:121,-51,2,0,0,0.629365 -24601,7005:120,-50,2,0,0,0.63006 -24602,7004:229,-49,2,0,0,0.628357 -24603,7004:228,-48,2,0,0,0.627253 -24604,7004:227,-47,2,0,0,0.628045 -24605,7004:226,-46,2,0,0,0.629508 -24606,7004:225,-45,2,0,0,0.632379 -24607,7004:124,-44,2,0,0,0.632308 -24608,7004:123,-43,2,0,0,0.627037 -24609,7004:122,-42,2,0,0,0.625185 -24610,7004:121,-41,2,0,0,0.626244 -24611,7004:120,-40,2,0,0,0.628573 -24612,7003:229,-39,2,0,0,0.629557 -24613,7003:228,-38,2,0,0,0.628262 -24614,7003:227,-37,2,0,0,0.62468 -24615,7003:226,-36,2,0,0,0.624197 -24616,7003:225,-35,2,0,0,0.625474 -24617,7003:124,-34,2,0,0,0.626148 -24618,7003:123,-33,2,0,0,0.624944 -24619,7003:122,-32,2,0,0,0.624197 -24620,7003:121,-31,2,0,0,0.624149 -24621,7003:120,-30,2,0,0,0.624583 -24622,7002:229,-29,2,0,0,0.624391 -24623,7002:228,-28,2,0,0,0.625546 -24624,7002:227,-27,2,0,0,0.62843 -24625,7002:226,-26,2,0,0,0.62994 -24626,7002:225,-25,2,0,0,0.630514 -24627,7002:124,-24,2,0,0,0.631567 -24628,7002:123,-23,2,0,0,0.633621 -24629,7002:122,-22,2,0,0,0.635812 -24630,7002:121,-21,2,0,0,0.638069 -24631,7002:120,-20,2,0,0,0.640912 -24632,7001:229,-19,2,0,0,0.64478 -24633,7001:228,-18,2,0,0,0.647927 -24634,7001:227,-17,2,0,0,0.651924 -24635,7001:226,-16,2,0,0,0.655158 -24636,7001:225,-15,2,0,0,0.656132 -24637,7001:124,-14,2,0,0,0.657499 -24638,7001:123,-13,2,0,0,0.65817 -24639,7001:122,-12,2,0,0,0.657013 -24640,1004:229,49,2,0,0,0.626268 -24641,1005:120,50,2,0,0,0.631687 -24642,1005:121,51,2,0,0,0.636098 -24643,1005:122,52,2,0,0,0.640107 -24644,1005:123,53,2,0,0,0.643179 -24645,1005:124,54,2,0,0,0.64565 -24646,1005:225,55,2,0,0,0.647224 -24647,1005:226,56,2,0,0,0.649519 -24648,1005:227,57,2,0,0,0.650945 -24649,1005:228,58,2,0,0,0.653299 -24650,1005:229,59,2,0,0,0.653322 -24651,1006:120,60,2,0,0,0.655483 -24652,1006:121,61,2,0,0,0.650548 -24653,1006:122,62,2,0,0,0.645416 -24654,1006:123,63,2,0,0,0.646731 -24655,1006:124,64,2,0,0,0.649706 -24656,1006:225,65,2,0,0,0.652088 -24657,1006:226,66,2,0,0,0.654764 -24658,1006:227,67,2,0,0,0.655228 -24659,1006:228,68,2,0,0,0.655576 -24660,1006:229,69,2,0,0,0.657499 -24661,1007:120,70,2,0,0,0.659532 -24662,1007:121,71,2,0,0,0.660132 -24663,1007:122,72,2,0,0,0.659532 -24664,1007:124,74,2,0,0,0.655808 -24665,1007:225,75,2,0,0,0.648162 -24666,1007:226,76,2,0,0,0.646614 -24667,1007:227,77,2,0,0,0.645815 -24668,1007:228,78,2,0,0,0.64431 -24669,1007:229,79,2,0,0,0.642684 -24670,1008:120,80,2,0,0,0.644404 -24671,1008:123,83,2,0,0,0.642612 -24672,1008:124,84,2,0,0,0.65253 -24673,1008:225,85,2,0,0,0.652437 -24674,1008:226,86,2,0,0,0.651131 -24675,1008:227,87,2,0,0,0.650104 -24676,1008:228,88,2,0,0,0.647857 -24677,1008:229,89,2,0,0,0.645839 -24678,1009:120,90,2,0,0,0.643792 -24679,1009:121,91,2,0,0,0.645815 -24680,1009:122,92,2,0,0,0.649379 -24681,1009:123,93,2,0,0,0.651272 -24682,1009:124,94,2,0,0,0.647294 -24683,1009:225,95,2,0,0,0.6487 -24684,1009:226,96,2,0,0,0.648654 -24685,1009:227,97,2,0,0,0.648396 -24686,1009:228,98,2,0,0,0.651575 -24687,1009:229,99,2,0,0,0.650688 -24688,1010:120,100,2,0,0,0.648467 -24689,1010:122,102,2,0,0,0.634645 -24690,1010:123,103,2,0,0,0.638283 -24691,1010:124,104,2,0,0,0.625835 -24692,1010:225,105,2,0,0,0.623354 -24693,1010:226,106,2,0,0,0.619462 -24694,1010:227,107,2,0,0,0.615166 -24695,1010:228,108,2,0,0,0.616697 -24696,1010:229,109,2,0,0,0.635527 -24697,1011:120,110,2,0,0,0.642848 -24698,1011:121,111,2,0,0,0.647669 -24699,1011:122,112,2,0,0,0.649402 -24700,1011:123,113,2,0,0,0.651575 -24701,1011:124,114,2,0,0,0.653345 -24702,1011:225,115,2,0,0,0.654531 -24703,1011:226,116,2,0,0,0.656156 -24704,1011:228,118,2,0,0,0.656202 -24705,1011:229,119,2,0,0,0.652857 -24706,1012:120,120,2,0,0,0.652694 -24707,1012:121,121,2,0,0,0.646261 -24708,1012:122,122,2,0,0,0.64299 -24709,1012:123,123,2,0,0,0.642542 -24710,1012:124,124,2,0,0,0.631519 -24711,1012:226,126,2,0,0,0.648724 -24712,1012:227,127,2,0,0,0.649075 -24713,1012:228,128,2,0,0,0.660063 -24714,1012:229,129,2,0,0,0.662456 -24715,1013:120,130,2,0,0,0.662732 -24716,1013:121,131,2,0,0,0.661007 -24717,1013:122,132,2,0,0,0.66149 -24718,1013:123,133,2,0,0,0.663099 -24719,1013:124,134,2,0,0,0.664887 -24720,1013:225,135,2,0,0,0.665711 -24721,1013:226,136,2,0,0,0.666716 -24722,1013:227,137,2,0,0,0.668312 -24723,1013:228,138,2,0,0,0.667948 -24724,1013:229,139,2,0,0,0.661237 -24725,1014:120,140,2,0,0,0.660201 -24726,1014:121,141,2,0,0,0.662226 -24727,1014:122,142,2,0,0,0.663191 -24728,1014:123,143,2,0,0,0.663948 -24729,1014:124,144,2,0,0,0.664544 -24730,1014:225,145,2,0,0,0.664589 -24731,1014:226,146,2,0,0,0.665711 -24732,1014:227,147,2,0,0,0.666465 -24733,1014:228,148,2,0,0,0.666853 -24734,1014:229,149,2,0,0,0.667081 -24735,1015:120,150,2,0,0,0.668085 -24736,1015:121,151,2,0,0,0.668859 -24737,1015:122,152,2,0,0,0.667833 -24738,1015:123,153,2,0,0,0.667172 -24739,1015:124,154,2,0,0,0.66683 -24740,1015:225,155,2,0,0,0.666807 -24741,1015:226,156,2,0,0,0.667149 -24742,1015:227,157,2,0,0,0.667401 -24743,1015:228,158,2,0,0,0.667332 -24744,1015:229,159,2,0,0,0.662456 -24745,1016:120,160,2,0,0,0.665482 -24746,1016:121,161,2,0,0,0.667035 -24747,1016:122,162,2,0,0,0.666305 -24748,1016:123,163,2,0,0,0.664978 -24749,1016:124,164,2,0,0,0.66381 -24750,1016:225,165,2,0,0,0.662915 -24751,1016:226,166,2,0,0,0.662823 -24752,1016:227,167,2,0,0,0.663833 -24753,1016:228,168,2,0,0,0.664704 -24754,1016:229,169,2,0,0,0.664406 -24755,1017:120,170,2,0,0,0.662111 -24756,1017:121,171,2,0,0,0.660639 -24757,1017:122,172,2,0,0,0.662456 -24758,1017:123,173,2,0,0,0.665344 -24759,1017:124,174,2,0,0,0.669041 -24760,1017:225,175,2,0,0,0.669359 -24761,1017:226,176,2,0,0,0.667993 -24762,1017:227,177,2,0,0,0.666533 -24763,1017:228,178,2,0,0,0.66365 -24764,1017:229,179,2,0,0,0.661468 -24765,1018:120,180,2,0,0,0.66149 -24766,7018:130,-180,3,0,0,0.648841 -24767,7017:239,-179,3,0,0,0.651482 -24768,7017:238,-178,3,0,0,0.650291 -24769,7017:237,-177,3,0,0,0.648068 -24770,7017:236,-176,3,0,0,0.646872 -24771,7017:235,-175,3,0,0,0.645157 -24772,7017:134,-174,3,0,0,0.642802 -24773,7017:133,-173,3,0,0,0.642211 -24774,7017:132,-172,3,0,0,0.642495 -24775,7017:131,-171,3,0,0,0.644404 -24776,7017:130,-170,3,0,0,0.643131 -24777,7016:239,-169,3,0,0,0.641054 -24778,7016:238,-168,3,0,0,0.638022 -24779,7016:237,-167,3,0,0,0.637547 -24780,7016:236,-166,3,0,0,0.639444 -24781,7016:235,-165,3,0,0,0.640604 -24782,7016:134,-164,3,0,0,0.640935 -24783,7016:133,-163,3,0,0,0.641267 -24784,7016:132,-162,3,0,0,0.642305 -24785,7016:131,-161,3,0,0,0.641928 -24786,7016:130,-160,3,0,0,0.640297 -24787,7015:239,-159,3,0,0,0.639421 -24788,7015:238,-158,3,0,0,0.639421 -24789,7015:237,-157,3,0,0,0.639468 -24790,7015:236,-156,3,0,0,0.639373 -24791,7015:235,-155,3,0,0,0.639255 -24792,7015:134,-154,3,0,0,0.64006 -24793,7015:133,-153,3,0,0,0.640982 -24794,7015:132,-152,3,0,0,0.639752 -24795,7015:131,-151,3,0,0,0.635098 -24796,7015:130,-150,3,0,0,0.631973 -24797,7014:239,-149,3,0,0,0.633931 -24798,7014:238,-148,3,0,0,0.635027 -24799,7014:237,-147,3,0,0,0.635574 -24800,7014:236,-146,3,0,0,0.636692 -24801,7014:235,-145,3,0,0,0.636621 -24802,7014:134,-144,3,0,0,0.635027 -24803,7014:133,-143,3,0,0,0.633716 -24804,7014:132,-142,3,0,0,0.632236 -24805,7014:131,-141,3,0,0,0.631471 -24806,7014:130,-140,3,0,0,0.633859 -24807,7013:239,-139,3,0,0,0.637143 -24808,7013:238,-138,3,0,0,0.638686 -24809,7013:237,-137,3,0,0,0.638378 -24810,7013:236,-136,3,0,0,0.638188 -24811,7013:235,-135,3,0,0,0.637404 -24812,7013:134,-134,3,0,0,0.635574 -24813,7013:133,-133,3,0,0,0.633716 -24814,7013:132,-132,3,0,0,0.632785 -24815,7013:131,-131,3,0,0,0.63226 -24816,7013:130,-130,3,0,0,0.634431 -24817,7012:239,-129,3,0,0,0.636811 -24818,7012:238,-128,3,0,0,0.637618 -24819,7012:237,-127,3,0,0,0.637262 -24820,7012:236,-126,3,0,0,0.637025 -24821,7012:235,-125,3,0,0,0.638093 -24822,7012:134,-124,3,0,0,0.639349 -24823,7012:133,-123,3,0,0,0.639942 -24824,7012:132,-122,3,0,0,0.640131 -24825,7012:131,-121,3,0,0,0.639729 -24826,7012:130,-120,3,0,0,0.639847 -24827,7011:239,-119,3,0,0,0.640935 -24828,7011:238,-118,3,0,0,0.641952 -24829,7011:237,-117,3,0,0,0.64155 -24830,7011:236,-116,3,0,0,0.640391 -24831,7011:235,-115,3,0,0,0.63961 -24832,7011:134,-114,3,0,0,0.639468 -24833,7011:133,-113,3,0,0,0.639492 -24834,7011:132,-112,3,0,0,0.637975 -24835,7011:131,-111,3,0,0,0.634979 -24836,7011:130,-110,3,0,0,0.633263 -24837,7010:239,-109,3,0,0,0.631806 -24838,7010:238,-108,3,0,0,0.629533 -24839,7010:237,-107,3,0,0,0.628382 -24840,7010:236,-106,3,0,0,0.628094 -24841,7010:235,-105,3,0,0,0.628526 -24842,7010:134,-104,3,0,0,0.628118 -24843,7010:133,-103,3,0,0,0.626316 -24844,7010:132,-102,3,0,0,0.623233 -24845,7010:131,-101,3,0,0,0.617814 -24846,7010:130,-100,3,0,0,0.614485 -24847,7009:239,-99,3,0,0,0.615993 -24848,7009:238,-98,3,0,0,0.618129 -24849,7009:237,-97,3,0,0,0.619946 -24850,7009:236,-96,3,0,0,0.620865 -24851,7009:235,-95,3,0,0,0.621808 -24852,7009:134,-94,3,0,0,0.624101 -24853,7009:133,-93,3,0,0,0.627806 -24854,7009:132,-92,3,0,0,0.628141 -24855,7009:131,-91,3,0,0,0.626148 -24856,7009:130,-90,3,0,0,0.622702 -24857,7008:239,-89,3,0,0,0.628598 -24858,7008:238,-88,3,0,0,0.636383 -24859,7008:237,-87,3,0,0,0.641125 -24860,7008:236,-86,3,0,0,0.651924 -24861,7008:235,-85,3,0,0,0.658794 -24862,7008:134,-84,3,0,0,0.660708 -24863,7008:133,-83,3,0,0,0.656434 -24864,7008:130,-80,3,0,0,0.657684 -24865,7007:239,-79,3,0,0,0.65253 -24866,7005:239,-59,3,0,0,0.624559 -24867,7005:238,-58,3,0,0,0.619487 -24868,7005:237,-57,3,0,0,0.626725 -24869,7005:236,-56,3,0,0,0.627421 -24870,7005:235,-55,3,0,0,0.626989 -24871,7005:134,-54,3,0,0,0.630825 -24872,7005:133,-53,3,0,0,0.631662 -24873,7005:132,-52,3,0,0,0.63073 -24874,7005:131,-51,3,0,0,0.629628 -24875,7005:130,-50,3,0,0,0.628382 -24876,7004:239,-49,3,0,0,0.630323 -24877,7004:238,-48,3,0,0,0.628742 -24878,7004:237,-47,3,0,0,0.628382 -24879,7004:236,-46,3,0,0,0.627541 -24880,7004:235,-45,3,0,0,0.627109 -24881,7004:134,-44,3,0,0,0.626436 -24882,7004:133,-43,3,0,0,0.625931 -24883,7004:132,-42,3,0,0,0.623908 -24884,7004:131,-41,3,0,0,0.622799 -24885,7004:130,-40,3,0,0,0.623523 -24886,7003:239,-39,3,0,0,0.623787 -24887,7003:238,-38,3,0,0,0.620213 -24888,7003:237,-37,3,0,0,0.616721 -24889,7003:236,-36,3,0,0,0.617693 -24890,7003:235,-35,3,0,0,0.619293 -24891,7003:134,-34,3,0,0,0.616649 -24892,7003:133,-33,3,0,0,0.617061 -24893,7003:132,-32,3,0,0,0.617231 -24894,7003:131,-31,3,0,0,0.619244 -24895,7003:130,-30,3,0,0,0.619777 -24896,7002:239,-29,3,0,0,0.620237 -24897,7002:238,-28,3,0,0,0.62014 -24898,7002:237,-27,3,0,0,0.621518 -24899,7002:236,-26,3,0,0,0.624921 -24900,7002:235,-25,3,0,0,0.624631 -24901,7002:134,-24,3,0,0,0.625811 -24902,7002:133,-23,3,0,0,0.629677 -24903,7002:132,-22,3,0,0,0.633263 -24904,7002:131,-21,3,0,0,0.635859 -24905,7002:130,-20,3,0,0,0.639208 -24906,7001:239,-19,3,0,0,0.645063 -24907,7001:238,-18,3,0,0,0.650268 -24908,7001:237,-17,3,0,0,0.653322 -24909,7001:236,-16,3,0,0,0.657592 -24910,7001:235,-15,3,0,0,0.657175 -24911,7001:134,-14,3,0,0,0.665482 -24912,1005:130,50,3,0,0,0.623595 -24913,1005:131,51,3,0,0,0.625402 -24914,1005:132,52,3,0,0,0.623667 -24915,1005:133,53,3,0,0,0.625763 -24916,1005:134,54,3,0,0,0.634408 -24917,1005:235,55,3,0,0,0.637666 -24918,1005:236,56,3,0,0,0.633597 -24919,1005:237,57,3,0,0,0.635883 -24920,1005:238,58,3,0,0,0.643013 -24921,1005:239,59,3,0,0,0.647716 -24922,1006:130,60,3,0,0,0.648935 -24923,1006:131,61,3,0,0,0.64471 -24924,1006:132,62,3,0,0,0.642754 -24925,1006:133,63,3,0,0,0.64058 -24927,1006:235,65,3,0,0,0.647669 -24928,1006:236,66,3,0,0,0.64966 -24929,1006:237,67,3,0,0,0.650594 -24930,1006:238,68,3,0,0,0.652065 -24931,1006:239,69,3,0,0,0.65295 -24932,1007:130,70,3,0,0,0.655367 -24933,1007:131,71,3,0,0,0.657128 -24934,1007:132,72,3,0,0,0.653438 -24935,1007:134,74,3,0,0,0.647857 -24936,1007:235,75,3,0,0,0.645627 -24937,1007:236,76,3,0,0,0.645768 -24938,1007:237,77,3,0,0,0.645462 -24939,1007:239,79,3,0,0,0.648256 -24940,1008:130,80,3,0,0,0.644498 -24941,1008:132,82,3,0,0,0.627662 -24942,1008:133,83,3,0,0,0.639208 -24943,1008:134,84,3,0,0,0.644357 -24944,1008:235,85,3,0,0,0.644216 -24945,1008:236,86,3,0,0,0.643532 -24946,1008:237,87,3,0,0,0.645039 -24947,1008:238,88,3,0,0,0.645204 -24948,1008:239,89,3,0,0,0.643556 -24949,1009:130,90,3,0,0,0.64372 -24950,1009:131,91,3,0,0,0.644027 -24951,1009:132,92,3,0,0,0.646332 -24952,1009:133,93,3,0,0,0.647412 -24953,1009:134,94,3,0,0,0.645416 -24954,1009:235,95,3,0,0,0.64645 -24955,1009:236,96,3,0,0,0.646989 -24956,1009:237,97,3,0,0,0.649519 -24957,1009:238,98,3,0,0,0.650455 -24958,1010:131,101,3,0,0,0.638402 -24959,1010:132,102,3,0,0,0.638402 -24960,1010:133,103,3,0,0,0.635717 -24961,1010:134,104,3,0,0,0.628861 -24962,1010:235,105,3,0,0,0.615823 -24963,1010:236,106,3,0,0,0.612828 -24964,1010:237,107,3,0,0,0.611072 -24965,1010:238,108,3,0,0,0.610974 -24966,1010:239,109,3,0,0,0.624174 -24967,1011:130,110,3,0,0,0.637476 -24968,1011:131,111,3,0,0,0.645134 -24969,1011:132,112,3,0,0,0.64605 -24970,1011:133,113,3,0,0,0.647435 -24971,1011:134,114,3,0,0,0.648302 -24972,1011:235,115,3,0,0,0.649964 -24973,1011:236,116,3,0,0,0.652228 -24974,1011:237,117,3,0,0,0.65288 -24975,1011:238,118,3,0,0,0.653438 -24976,1011:239,119,3,0,0,0.650758 -24977,1012:130,120,3,0,0,0.647505 -24978,1012:131,121,3,0,0,0.644616 -24979,1012:132,122,3,0,0,0.646332 -24980,1012:133,123,3,0,0,0.629293 -24981,1012:237,127,3,0,0,0.647083 -24982,1012:238,128,3,0,0,0.655391 -24983,1012:239,129,3,0,0,0.658239 -24984,1013:130,130,3,0,0,0.658978 -24985,1013:131,131,3,0,0,0.658794 -24986,1013:132,132,3,0,0,0.658655 -24987,1013:133,133,3,0,0,0.658563 -24988,1013:134,134,3,0,0,0.658447 -24989,1013:235,135,3,0,0,0.659555 -24990,1013:236,136,3,0,0,0.6628 -24991,1013:237,137,3,0,0,0.663833 -24992,1013:238,138,3,0,0,0.664658 -24993,1013:239,139,3,0,0,0.659624 -24994,1014:130,140,3,0,0,0.657846 -24995,1014:131,141,3,0,0,0.658516 -24996,1014:132,142,3,0,0,0.658493 -24997,1014:133,143,3,0,0,0.658401 -24998,1014:134,144,3,0,0,0.658771 -24999,1014:235,145,3,0,0,0.658955 -25000,1014:236,146,3,0,0,0.66149 -25001,1014:237,147,3,0,0,0.663305 -25002,1014:238,148,3,0,0,0.664246 -25003,1014:239,149,3,0,0,0.663191 -25004,1015:130,150,3,0,0,0.665184 -25005,1015:131,151,3,0,0,0.665734 -25006,1015:132,152,3,0,0,0.666008 -25007,1015:133,153,3,0,0,0.666442 -25008,1015:134,154,3,0,0,0.666031 -25009,1015:235,155,3,0,0,0.664795 -25010,1015:236,156,3,0,0,0.663948 -25011,1015:237,157,3,0,0,0.662984 -25012,1015:238,158,3,0,0,0.660915 -25013,1015:239,159,3,0,0,0.661076 -25014,1016:130,160,3,0,0,0.662157 -25015,1016:131,161,3,0,0,0.661214 -25016,1016:132,162,3,0,0,0.659186 -25017,1016:133,163,3,0,0,0.657869 -25018,1016:134,164,3,0,0,0.657499 -25019,1016:235,165,3,0,0,0.657291 -25020,1016:236,166,3,0,0,0.657892 -25021,1016:237,167,3,0,0,0.65847 -25022,1016:238,168,3,0,0,0.658724 -25023,1016:239,169,3,0,0,0.651528 -25024,1017:130,170,3,0,0,0.651389 -25025,1017:131,171,3,0,0,0.655599 -25026,1017:132,172,3,0,0,0.644451 -25027,1017:133,173,3,0,0,0.647834 -25028,1017:134,174,3,0,0,0.653531 -25029,1017:235,175,3,0,0,0.657268 -25030,1017:236,176,3,0,0,0.657106 -25031,1017:237,177,3,0,0,0.652088 -25032,1017:238,178,3,0,0,0.643603 -25033,1017:239,179,3,0,0,0.644545 -25034,1018:130,180,3,0,0,0.648841 -25035,7018:140,-180,4,0,0,0.638307 -25036,7017:249,-179,4,0,0,0.637452 -25037,7017:248,-178,4,0,0,0.636835 -25038,7017:247,-177,4,0,0,0.637238 -25039,7017:246,-176,4,0,0,0.635812 -25040,7017:245,-175,4,0,0,0.634384 -25041,7017:144,-174,4,0,0,0.63436 -25042,7017:143,-173,4,0,0,0.634717 -25043,7017:142,-172,4,0,0,0.63486 -25044,7017:141,-171,4,0,0,0.63374 -25045,7017:140,-170,4,0,0,0.630682 -25046,7016:249,-169,4,0,0,0.62759 -25047,7016:248,-168,4,0,0,0.62622 -25048,7016:247,-167,4,0,0,0.626412 -25049,7016:246,-166,4,0,0,0.628166 -25050,7016:245,-165,4,0,0,0.629197 -25051,7016:144,-164,4,0,0,0.63018 -25052,7016:143,-163,4,0,0,0.629844 -25053,7016:142,-162,4,0,0,0.629269 -25054,7016:141,-161,4,0,0,0.628357 -25055,7016:140,-160,4,0,0,0.626028 -25056,7015:249,-159,4,0,0,0.624222 -25057,7015:248,-158,4,0,0,0.623643 -25058,7015:247,-157,4,0,0,0.622243 -25059,7015:246,-156,4,0,0,0.623547 -25060,7015:245,-155,4,0,0,0.626725 -25061,7015:144,-154,4,0,0,0.627349 -25062,7015:143,-153,4,0,0,0.624391 -25063,7015:142,-152,4,0,0,0.620285 -25064,7015:141,-151,4,0,0,0.61842 -25065,7015:140,-150,4,0,0,0.618832 -25066,7014:249,-149,4,0,0,0.619244 -25067,7014:248,-148,4,0,0,0.618541 -25068,7014:247,-147,4,0,0,0.61859 -25069,7014:246,-146,4,0,0,0.619462 -25070,7014:245,-145,4,0,0,0.618978 -25071,7014:144,-144,4,0,0,0.614485 -25072,7014:143,-143,4,0,0,0.607721 -25073,7014:142,-142,4,0,0,0.607451 -25074,7014:141,-141,4,0,0,0.611096 -25075,7014:140,-140,4,0,0,0.617231 -25076,7013:249,-139,4,0,0,0.620575 -25077,7013:248,-138,4,0,0,0.621978 -25078,7013:247,-137,4,0,0,0.620696 -25079,7013:246,-136,4,0,0,0.618905 -25080,7013:245,-135,4,0,0,0.618686 -25081,7013:144,-134,4,0,0,0.618735 -25082,7013:143,-133,4,0,0,0.618274 -25083,7013:142,-132,4,0,0,0.61728 -25084,7013:141,-131,4,0,0,0.619777 -25085,7013:140,-130,4,0,0,0.624174 -25086,7012:249,-129,4,0,0,0.624848 -25087,7012:248,-128,4,0,0,0.623426 -25088,7012:247,-127,4,0,0,0.622823 -25089,7012:246,-126,4,0,0,0.624463 -25090,7012:245,-125,4,0,0,0.627637 -25091,7012:144,-124,4,0,0,0.63128 -25092,7012:143,-123,4,0,0,0.633573 -25093,7012:142,-122,4,0,0,0.634431 -25094,7012:141,-121,4,0,0,0.635217 -25095,7012:140,-120,4,0,0,0.636526 -25096,7011:249,-119,4,0,0,0.637452 -25097,7011:248,-118,4,0,0,0.637096 -25098,7011:247,-117,4,0,0,0.635883 -25099,7011:246,-116,4,0,0,0.634622 -25100,7011:245,-115,4,0,0,0.633645 -25101,7011:144,-114,4,0,0,0.633239 -25102,7011:143,-113,4,0,0,0.63343 -25103,7011:142,-112,4,0,0,0.632977 -25104,7011:141,-111,4,0,0,0.631495 -25105,7011:140,-110,4,0,0,0.630849 -25106,7010:249,-109,4,0,0,0.630802 -25107,7010:248,-108,4,0,0,0.631352 -25108,7010:247,-107,4,0,0,0.634455 -25109,7010:246,-106,4,0,0,0.636906 -25110,7010:245,-105,4,0,0,0.633811 -25111,7010:144,-104,4,0,0,0.6267 -25112,7010:143,-103,4,0,0,0.622388 -25113,7010:142,-102,4,0,0,0.619656 -25114,7010:141,-101,4,0,0,0.616867 -25115,7010:140,-100,4,0,0,0.613437 -25116,7009:249,-99,4,0,0,0.613706 -25117,7009:248,-98,4,0,0,0.614996 -25118,7009:247,-97,4,0,0,0.617328 -25119,7009:246,-96,4,0,0,0.619825 -25120,7009:245,-95,4,0,0,0.622388 -25121,7009:144,-94,4,0,0,0.625209 -25122,7009:143,-93,4,0,0,0.622847 -25123,7009:142,-92,4,0,0,0.622074 -25124,7009:141,-91,4,0,0,0.618177 -25125,7009:140,-90,4,0,0,0.612731 -25126,7008:249,-89,4,0,0,0.620648 -25127,7008:248,-88,4,0,0,0.629533 -25128,7008:247,-87,4,0,0,0.638733 -25129,7008:246,-86,4,0,0,0.657453 -25130,7008:245,-85,4,0,0,0.656573 -25131,7008:142,-82,4,0,0,0.639492 -25132,7008:141,-81,4,0,0,0.635859 -25133,7008:140,-80,4,0,0,0.641172 -25134,7007:249,-79,4,0,0,0.642919 -25135,7007:248,-78,4,0,0,0.644216 -25136,7007:247,-77,4,0,0,0.653206 -25137,7007:246,-76,4,0,0,0.648326 -25138,7006:141,-61,4,0,0,0.623088 -25139,7006:140,-60,4,0,0,0.623812 -25140,7005:249,-59,4,0,0,0.627782 -25141,7005:248,-58,4,0,0,0.630634 -25142,7005:247,-57,4,0,0,0.631185 -25143,7005:246,-56,4,0,0,0.630849 -25144,7005:245,-55,4,0,0,0.631352 -25145,7005:144,-54,4,0,0,0.629533 -25146,7005:143,-53,4,0,0,0.629748 -25147,7005:142,-52,4,0,0,0.629149 -25148,7005:141,-51,4,0,0,0.630323 -25149,7005:140,-50,4,0,0,0.629964 -25150,7004:249,-49,4,0,0,0.629245 -25151,7004:248,-48,4,0,0,0.627517 -25152,7004:247,-47,4,0,0,0.626244 -25153,7004:246,-46,4,0,0,0.625113 -25154,7004:245,-45,4,0,0,0.623643 -25155,7004:144,-44,4,0,0,0.623233 -25156,7004:143,-43,4,0,0,0.623137 -25157,7004:142,-42,4,0,0,0.620769 -25158,7004:141,-41,4,0,0,0.618663 -25159,7004:140,-40,4,0,0,0.61745 -25160,7003:249,-39,4,0,0,0.61626 -25161,7003:248,-38,4,0,0,0.612902 -25162,7003:247,-37,4,0,0,0.607893 -25163,7003:246,-36,4,0,0,0.609606 -25164,7003:245,-35,4,0,0,0.608774 -25165,7003:144,-34,4,0,0,0.60657 -25166,7003:143,-33,4,0,0,0.609972 -25167,7003:142,-32,4,0,0,0.610241 -25168,7003:141,-31,4,0,0,0.610387 -25169,7003:140,-30,4,0,0,0.608652 -25170,7002:249,-29,4,0,0,0.611706 -25171,7002:248,-28,4,0,0,0.614217 -25172,7002:247,-27,4,0,0,0.61485 -25173,7002:246,-26,4,0,0,0.614947 -25174,7002:245,-25,4,0,0,0.616746 -25175,7002:144,-24,4,0,0,0.618541 -25176,7002:143,-23,4,0,0,0.622895 -25177,7002:142,-22,4,0,0,0.631304 -25178,7002:141,-21,4,0,0,0.634884 -25179,7002:140,-20,4,0,0,0.637571 -25180,7001:249,-19,4,0,0,0.64214 -25181,7001:248,-18,4,0,0,0.647083 -25182,7001:247,-17,4,0,0,0.648935 -25183,7001:246,-16,4,0,0,0.652181 -25184,7001:245,-15,4,0,0,0.655831 -25185,7001:144,-14,4,0,0,0.675199 -25186,1005:141,51,4,0,0,0.619317 -25187,1005:142,52,4,0,0,0.618177 -25188,1005:143,53,4,0,0,0.617134 -25189,1005:144,54,4,0,0,0.615726 -25190,1005:245,55,4,0,0,0.622847 -25191,1005:246,56,4,0,0,0.627829 -25192,1005:247,57,4,0,0,0.625787 -25193,1005:248,58,4,0,0,0.629581 -25194,1005:249,59,4,0,0,0.637381 -25195,1006:140,60,4,0,0,0.641337 -25196,1006:141,61,4,0,0,0.638235 -25197,1006:142,62,4,0,0,0.637238 -25198,1006:143,63,4,0,0,0.638116 -25199,1006:144,64,4,0,0,0.638805 -25200,1006:245,65,4,0,0,0.642259 -25201,1006:246,66,4,0,0,0.643179 -25202,1006:247,67,4,0,0,0.64405 -25203,1006:248,68,4,0,0,0.645933 -25204,1006:249,69,4,0,0,0.648817 -25205,1007:140,70,4,0,0,0.651411 -25206,1007:141,71,4,0,0,0.652717 -25207,1007:142,72,4,0,0,0.652461 -25208,1007:144,74,4,0,0,0.649005 -25209,1007:245,75,4,0,0,0.648091 -25210,1007:246,76,4,0,0,0.649075 -25211,1008:140,80,4,0,0,0.629581 -25212,1008:141,81,4,0,0,0.62807 -25213,1008:142,82,4,0,0,0.629101 -25214,1008:143,83,4,0,0,0.638188 -25215,1008:144,84,4,0,0,0.640415 -25216,1008:245,85,4,0,0,0.642046 -25217,1008:246,86,4,0,0,0.642636 -25218,1008:247,87,4,0,0,0.643438 -25219,1008:248,88,4,0,0,0.643344 -25220,1008:249,89,4,0,0,0.643414 -25221,1009:140,90,4,0,0,0.643768 -25222,1009:141,91,4,0,0,0.643697 -25223,1009:142,92,4,0,0,0.642802 -25224,1009:143,93,4,0,0,0.643084 -25225,1009:144,94,4,0,0,0.643461 -25226,1009:245,95,4,0,0,0.644922 -25227,1009:246,96,4,0,0,0.646191 -25228,1009:247,97,4,0,0,0.647013 -25229,1009:248,98,4,0,0,0.649473 -25230,1010:140,100,4,0,0,0.640841 -25231,1010:141,101,4,0,0,0.641597 -25232,1010:142,102,4,0,0,0.64077 -25233,1010:143,103,4,0,0,0.63852 -25234,1010:144,104,4,0,0,0.630443 -25235,1010:245,105,4,0,0,0.623643 -25236,1010:247,107,4,0,0,0.60728 -25237,1010:248,108,4,0,0,0.601458 -25238,1010:249,109,4,0,0,0.612658 -25239,1011:140,110,4,0,0,0.631089 -25240,1011:141,111,4,0,0,0.639468 -25241,1011:142,112,4,0,0,0.64077 -25242,1011:143,113,4,0,0,0.639752 -25243,1011:144,114,4,0,0,0.643532 -25244,1011:245,115,4,0,0,0.648162 -25245,1011:246,116,4,0,0,0.64863 -25246,1011:247,117,4,0,0,0.649613 -25247,1011:248,118,4,0,0,0.648091 -25248,1012:140,120,4,0,0,0.644286 -25249,1012:141,121,4,0,0,0.642424 -25250,1012:142,122,4,0,0,0.64051 -25251,1012:144,124,4,0,0,0.639089 -25252,1012:245,125,4,0,0,0.629029 -25253,1012:246,126,4,0,0,0.635979 -25254,1012:247,127,4,0,0,0.644922 -25255,1012:248,128,4,0,0,0.651131 -25256,1012:249,129,4,0,0,0.653531 -25257,1013:140,130,4,0,0,0.654299 -25258,1013:141,131,4,0,0,0.654694 -25259,1013:142,132,4,0,0,0.655019 -25260,1013:143,133,4,0,0,0.656016 -25261,1013:144,134,4,0,0,0.657962 -25262,1013:245,135,4,0,0,0.659994 -25263,1013:246,136,4,0,0,0.659786 -25264,1013:247,137,4,0,0,0.659394 -25265,1013:248,138,4,0,0,0.659786 -25266,1013:249,139,4,0,0,0.656897 -25267,1014:140,140,4,0,0,0.654856 -25268,1014:141,141,4,0,0,0.655901 -25269,1014:142,142,4,0,0,0.655437 -25270,1014:143,143,4,0,0,0.654903 -25271,1014:144,144,4,0,0,0.655808 -25272,1014:245,145,4,0,0,0.65736 -25273,1014:246,146,4,0,0,0.658978 -25274,1014:247,147,4,0,0,0.660408 -25275,1014:248,148,4,0,0,0.66103 -25276,1014:249,149,4,0,0,0.66126 -25277,1015:140,150,4,0,0,0.659947 -25278,1015:141,151,4,0,0,0.662732 -25279,1015:142,152,4,0,0,0.662892 -25280,1015:143,153,4,0,0,0.66172 -25281,1015:144,154,4,0,0,0.660132 -25282,1015:245,155,4,0,0,0.65914 -25283,1015:246,156,4,0,0,0.658077 -25284,1015:247,157,4,0,0,0.6578 -25285,1015:248,158,4,0,0,0.657407 -25286,1015:249,159,4,0,0,0.65655 -25287,1016:140,160,4,0,0,0.655413 -25288,1016:141,161,4,0,0,0.654043 -25289,1016:142,162,4,0,0,0.65281 -25290,1016:143,163,4,0,0,0.652088 -25291,1016:144,164,4,0,0,0.651855 -25292,1016:245,165,4,0,0,0.651738 -25293,1016:246,166,4,0,0,0.649426 -25294,1016:247,167,4,0,0,0.649706 -25295,1016:248,168,4,0,0,0.645698 -25296,1016:249,169,4,0,0,0.645556 -25297,1017:140,170,4,0,0,0.643603 -25298,1017:141,171,4,0,0,0.642848 -25299,1017:142,172,4,0,0,0.643202 -25300,1017:143,173,4,0,0,0.643932 -25301,1017:144,174,4,0,0,0.64431 -25302,1017:245,175,4,0,0,0.642919 -25303,1017:246,176,4,0,0,0.63871 -25304,1017:247,177,4,0,0,0.635717 -25305,1017:248,178,4,0,0,0.635812 -25306,1017:249,179,4,0,0,0.637381 -25307,1018:140,180,4,0,0,0.638307 -25308,7018:350,-180,5,0,0,0.630418 -25309,7017:459,-179,5,0,0,0.629988 -25310,7017:458,-178,5,0,0,0.628861 -25311,7017:457,-177,5,0,0,0.62819 -25312,7017:456,-176,5,0,0,0.627614 -25313,7017:455,-175,5,0,0,0.626869 -25314,7017:354,-174,5,0,0,0.626629 -25315,7017:353,-173,5,0,0,0.626461 -25316,7017:352,-172,5,0,0,0.625498 -25317,7017:351,-171,5,0,0,0.623571 -25318,7017:350,-170,5,0,0,0.622026 -25319,7016:459,-169,5,0,0,0.621204 -25320,7016:458,-168,5,0,0,0.621639 -25321,7016:457,-167,5,0,0,0.622702 -25322,7016:456,-166,5,0,0,0.622847 -25323,7016:455,-165,5,0,0,0.621881 -25324,7016:354,-164,5,0,0,0.619971 -25325,7016:353,-163,5,0,0,0.617984 -25326,7016:352,-162,5,0,0,0.616187 -25327,7016:351,-161,5,0,0,0.615677 -25328,7016:350,-160,5,0,0,0.61502 -25329,7015:459,-159,5,0,0,0.614485 -25330,7015:458,-158,5,0,0,0.61317 -25331,7015:457,-157,5,0,0,0.612389 -25332,7015:456,-156,5,0,0,0.613023 -25333,7015:455,-155,5,0,0,0.615093 -25334,7015:354,-154,5,0,0,0.615895 -25335,7015:353,-153,5,0,0,0.615579 -25336,7015:352,-152,5,0,0,0.615069 -25337,7015:351,-151,5,0,0,0.613535 -25338,7015:350,-150,5,0,0,0.611292 -25339,7014:459,-149,5,0,0,0.60892 -25340,7014:458,-148,5,0,0,0.607501 -25341,7014:457,-147,5,0,0,0.606912 -25342,7014:456,-146,5,0,0,0.60522 -25343,7014:455,-145,5,0,0,0.603525 -25344,7014:354,-144,5,0,0,0.602885 -25345,7014:353,-143,5,0,0,0.602665 -25346,7014:352,-142,5,0,0,0.603328 -25347,7014:351,-141,5,0,0,0.603942 -25348,7014:350,-140,5,0,0,0.601015 -25349,7013:459,-139,5,0,0,0.598474 -25350,7013:458,-138,5,0,0,0.598104 -25351,7013:457,-137,5,0,0,0.601384 -25352,7013:456,-136,5,0,0,0.604311 -25353,7013:455,-135,5,0,0,0.606888 -25354,7013:354,-134,5,0,0,0.60826 -25355,7013:353,-133,5,0,0,0.605367 -25356,7013:352,-132,5,0,0,0.60323 -25357,7013:351,-131,5,0,0,0.607207 -25358,7013:350,-130,5,0,0,0.611194 -25359,7012:459,-129,5,0,0,0.612706 -25360,7012:458,-128,5,0,0,0.612877 -25361,7012:457,-127,5,0,0,0.613803 -25362,7012:456,-126,5,0,0,0.617134 -25363,7012:455,-125,5,0,0,0.620865 -25364,7012:354,-124,5,0,0,0.623523 -25365,7012:353,-123,5,0,0,0.625306 -25366,7012:352,-122,5,0,0,0.626941 -25367,7012:351,-121,5,0,0,0.629005 -25368,7012:350,-120,5,0,0,0.629317 -25369,7011:459,-119,5,0,0,0.628981 -25370,7011:458,-118,5,0,0,0.628022 -25371,7011:457,-117,5,0,0,0.627302 -25372,7011:456,-116,5,0,0,0.627061 -25373,7011:455,-115,5,0,0,0.626989 -25374,7011:354,-114,5,0,0,0.628237 -25375,7011:353,-113,5,0,0,0.629149 -25376,7011:352,-112,5,0,0,0.629964 -25377,7011:351,-111,5,0,0,0.630825 -25378,7011:350,-110,5,0,0,0.631878 -25379,7010:459,-109,5,0,0,0.632379 -25380,7010:458,-108,5,0,0,0.635455 -25381,7010:457,-107,5,0,0,0.639184 -25382,7010:456,-106,5,0,0,0.642825 -25383,7010:455,-105,5,0,0,0.6424 -25384,7010:354,-104,5,0,0,0.637404 -25385,7010:353,-103,5,0,0,0.630275 -25386,7010:352,-102,5,0,0,0.626532 -25387,7010:351,-101,5,0,0,0.625859 -25388,7010:350,-100,5,0,0,0.622219 -25389,7009:459,-99,5,0,0,0.613925 -25390,7009:458,-98,5,0,0,0.612926 -25391,7009:457,-97,5,0,0,0.61711 -25392,7009:456,-96,5,0,0,0.616211 -25393,7009:455,-95,5,0,0,0.626124 -25394,7009:354,-94,5,0,0,0.628622 -25395,7009:353,-93,5,0,0,0.62759 -25396,7009:352,-92,5,0,0,0.62994 -25397,7009:351,-91,5,0,0,0.626268 -25398,7009:350,-90,5,0,0,0.626052 -25399,7008:459,-89,5,0,0,0.6267 -25400,7008:458,-88,5,0,0,0.630418 -25401,7008:457,-87,5,0,0,0.641195 -25402,7008:456,-86,5,0,0,0.645956 -25403,7008:353,-83,5,0,0,0.63517 -25404,7008:352,-82,5,0,0,0.629197 -25405,7008:351,-81,5,0,0,0.629677 -25406,7008:350,-80,5,0,0,0.62994 -25407,7007:459,-79,5,0,0,0.63455 -25408,7007:458,-78,5,0,0,0.641054 -25409,7007:457,-77,5,0,0,0.646708 -25410,7007:456,-76,5,0,0,0.64605 -25411,7007:455,-75,5,0,0,0.629005 -25412,7007:351,-71,5,0,0,0.632451 -25413,7006:458,-68,5,0,0,0.599141 -25414,7006:457,-67,5,0,0,0.607819 -25415,7006:456,-66,5,0,0,0.610925 -25416,7006:455,-65,5,0,0,0.615726 -25417,7006:354,-64,5,0,0,0.603451 -25418,7006:353,-63,5,0,0,0.602885 -25419,7006:352,-62,5,0,0,0.618566 -25420,7006:351,-61,5,0,0,0.625281 -25421,7006:350,-60,5,0,0,0.629844 -25422,7005:459,-59,5,0,0,0.631256 -25423,7005:458,-58,5,0,0,0.631065 -25424,7005:457,-57,5,0,0,0.629916 -25425,7005:456,-56,5,0,0,0.630443 -25426,7005:455,-55,5,0,0,0.63006 -25427,7005:354,-54,5,0,0,0.629988 -25428,7005:353,-53,5,0,0,0.627998 -25429,7005:352,-52,5,0,0,0.628094 -25430,7005:351,-51,5,0,0,0.62843 -25431,7005:350,-50,5,0,0,0.627061 -25432,7004:459,-49,5,0,0,0.624993 -25433,7004:458,-48,5,0,0,0.619631 -25434,7004:457,-47,5,0,0,0.616503 -25435,7004:456,-46,5,0,0,0.61502 -25436,7004:455,-45,5,0,0,0.614095 -25437,7004:354,-44,5,0,0,0.614606 -25438,7004:353,-43,5,0,0,0.613778 -25439,7004:352,-42,5,0,0,0.608897 -25440,7004:351,-41,5,0,0,0.605736 -25441,7004:350,-40,5,0,0,0.606888 -25442,7003:459,-39,5,0,0,0.606766 -25443,7003:458,-38,5,0,0,0.603402 -25444,7003:457,-37,5,0,0,0.600349 -25445,7003:456,-36,5,0,0,0.598104 -25446,7003:455,-35,5,0,0,0.597857 -25447,7003:354,-34,5,0,0,0.598104 -25448,7003:353,-33,5,0,0,0.600966 -25449,7003:352,-32,5,0,0,0.599955 -25450,7003:351,-31,5,0,0,0.597857 -25451,7003:350,-30,5,0,0,0.599066 -25452,7002:459,-29,5,0,0,0.602197 -25453,7002:458,-28,5,0,0,0.604361 -25454,7002:457,-27,5,0,0,0.605343 -25455,7002:456,-26,5,0,0,0.607329 -25456,7002:455,-25,5,0,0,0.607819 -25457,7002:354,-24,5,0,0,0.611121 -25458,7002:353,-23,5,0,0,0.617353 -25459,7002:352,-22,5,0,0,0.619293 -25460,7002:351,-21,5,0,0,0.621156 -25461,7002:350,-20,5,0,0,0.63128 -25462,7001:459,-19,5,0,0,0.631782 -25463,7001:458,-18,5,0,0,0.635503 -25464,7001:457,-17,5,0,0,0.645134 -25465,7001:456,-16,5,0,0,0.657175 -25466,1004:354,44,5,0,0,0.598104 -25467,1004:455,45,5,0,0,0.59998 -25468,1004:456,46,5,0,0,0.59719 -25469,1004:457,47,5,0,0,0.589729 -25470,1005:351,51,5,0,0,0.599757 -25471,1005:352,52,5,0,0,0.614461 -25472,1005:353,53,5,0,0,0.614071 -25473,1005:354,54,5,0,0,0.614169 -25474,1005:455,55,5,0,0,0.614387 -25475,1005:456,56,5,0,0,0.615774 -25476,1005:457,57,5,0,0,0.616455 -25477,1005:458,58,5,0,0,0.616867 -25478,1005:459,59,5,0,0,0.623981 -25479,1006:350,60,5,0,0,0.629533 -25480,1006:351,61,5,0,0,0.629988 -25481,1006:352,62,5,0,0,0.63331 -25482,1006:353,63,5,0,0,0.636574 -25483,1006:354,64,5,0,0,0.636977 -25484,1006:455,65,5,0,0,0.638852 -25485,1006:456,66,5,0,0,0.639326 -25486,1006:457,67,5,0,0,0.639776 -25487,1006:458,68,5,0,0,0.641148 -25488,1006:459,69,5,0,0,0.645204 -25489,1007:350,70,5,0,0,0.648677 -25490,1007:351,71,5,0,0,0.650804 -25491,1007:352,72,5,0,0,0.651924 -25492,1007:354,74,5,0,0,0.652321 -25493,1007:455,75,5,0,0,0.651738 -25494,1007:456,76,5,0,0,0.652158 -25495,1008:351,81,5,0,0,0.616308 -25496,1008:352,82,5,0,0,0.628694 -25497,1008:353,83,5,0,0,0.635432 -25498,1008:354,84,5,0,0,0.633883 -25499,1008:455,85,5,0,0,0.639752 -25500,1008:456,86,5,0,0,0.641952 -25501,1008:457,87,5,0,0,0.642754 -25502,1008:458,88,5,0,0,0.64372 -25503,1008:459,89,5,0,0,0.644851 -25504,1009:350,90,5,0,0,0.644639 -25505,1009:351,91,5,0,0,0.644404 -25506,1009:352,92,5,0,0,0.644568 -25507,1009:353,93,5,0,0,0.64565 -25508,1009:354,94,5,0,0,0.643697 -25509,1009:455,95,5,0,0,0.643273 -25510,1009:456,96,5,0,0,0.64398 -25511,1009:457,97,5,0,0,0.644522 -25512,1009:458,98,5,0,0,0.646121 -25513,1010:350,100,5,0,0,0.637238 -25514,1010:351,101,5,0,0,0.63788 -25515,1010:352,102,5,0,0,0.641432 -25516,1010:353,103,5,0,0,0.636502 -25517,1010:459,109,5,0,0,0.598005 -25518,1011:350,110,5,0,0,0.615531 -25519,1011:351,111,5,0,0,0.631591 -25520,1011:352,112,5,0,0,0.634979 -25521,1011:353,113,5,0,0,0.626893 -25522,1011:354,114,5,0,0,0.632666 -25523,1011:455,115,5,0,0,0.642848 -25524,1011:456,116,5,0,0,0.646309 -25525,1011:457,117,5,0,0,0.644216 -25526,1011:458,118,5,0,0,0.647786 -25527,1011:459,119,5,0,0,0.644545 -25528,1012:350,120,5,0,0,0.641243 -25529,1012:351,121,5,0,0,0.639776 -25530,1012:352,122,5,0,0,0.637333 -25531,1012:354,124,5,0,0,0.639586 -25532,1012:456,126,5,0,0,0.633287 -25533,1012:457,127,5,0,0,0.642117 -25534,1012:458,128,5,0,0,0.647036 -25535,1012:459,129,5,0,0,0.6498 -25536,1013:350,130,5,0,0,0.651762 -25537,1013:351,131,5,0,0,0.653206 -25538,1013:352,132,5,0,0,0.654113 -25539,1013:353,133,5,0,0,0.654949 -25540,1013:354,134,5,0,0,0.656526 -25541,1013:455,135,5,0,0,0.657892 -25542,1013:456,136,5,0,0,0.655158 -25543,1013:457,137,5,0,0,0.65409 -25544,1013:458,138,5,0,0,0.653462 -25545,1013:459,139,5,0,0,0.652368 -25546,1014:350,140,5,0,0,0.652274 -25547,1014:351,141,5,0,0,0.652274 -25548,1014:352,142,5,0,0,0.652111 -25549,1014:353,143,5,0,0,0.651902 -25550,1014:354,144,5,0,0,0.651878 -25551,1014:455,145,5,0,0,0.652437 -25552,1014:456,146,5,0,0,0.653438 -25553,1014:457,147,5,0,0,0.654415 -25554,1014:458,148,5,0,0,0.654996 -25555,1014:459,149,5,0,0,0.655274 -25556,1015:350,150,5,0,0,0.655669 -25557,1015:351,151,5,0,0,0.655715 -25558,1015:352,152,5,0,0,0.655182 -25559,1015:353,153,5,0,0,0.654206 -25560,1015:354,154,5,0,0,0.653508 -25561,1015:455,155,5,0,0,0.653602 -25562,1015:456,156,5,0,0,0.653648 -25563,1015:457,157,5,0,0,0.652973 -25564,1015:458,158,5,0,0,0.652321 -25565,1015:459,159,5,0,0,0.651085 -25566,1016:350,160,5,0,0,0.649028 -25567,1016:351,161,5,0,0,0.646872 -25568,1016:352,162,5,0,0,0.64372 -25569,1016:353,163,5,0,0,0.643674 -25570,1016:354,164,5,0,0,0.644333 -25571,1016:455,165,5,0,0,0.643061 -25572,1016:456,166,5,0,0,0.640297 -25573,1016:458,168,5,0,0,0.636478 -25574,1016:459,169,5,0,0,0.638212 -25575,1017:351,171,5,0,0,0.63636 -25576,1017:352,172,5,0,0,0.635883 -25577,1017:353,173,5,0,0,0.634479 -25578,1017:354,174,5,0,0,0.632929 -25579,1017:455,175,5,0,0,0.63226 -25580,1017:456,176,5,0,0,0.631997 -25581,1017:457,177,5,0,0,0.630898 -25582,1017:458,178,5,0,0,0.629892 -25583,1017:459,179,5,0,0,0.629964 -25584,1018:350,180,5,0,0,0.630418 -25585,7018:360,-180,6,0,0,0.624077 -25586,7017:469,-179,6,0,0,0.623691 -25587,7017:468,-178,6,0,0,0.623547 -25588,7017:467,-177,6,0,0,0.623787 -25589,7017:466,-176,6,0,0,0.623691 -25590,7017:465,-175,6,0,0,0.622944 -25591,7017:364,-174,6,0,0,0.62176 -25592,7017:363,-173,6,0,0,0.620575 -25593,7017:362,-172,6,0,0,0.619753 -25594,7017:361,-171,6,0,0,0.619026 -25595,7017:360,-170,6,0,0,0.617717 -25596,7016:469,-169,6,0,0,0.617305 -25597,7016:468,-168,6,0,0,0.617134 -25598,7016:467,-167,6,0,0,0.614461 -25599,7016:466,-166,6,0,0,0.611389 -25600,7016:465,-165,6,0,0,0.609826 -25601,7016:364,-164,6,0,0,0.608994 -25602,7016:363,-163,6,0,0,0.609141 -25603,7016:362,-162,6,0,0,0.608652 -25604,7016:361,-161,6,0,0,0.607746 -25605,7016:360,-160,6,0,0,0.607256 -25606,7015:469,-159,6,0,0,0.606668 -25607,7015:468,-158,6,0,0,0.605417 -25608,7015:467,-157,6,0,0,0.604238 -25609,7015:466,-156,6,0,0,0.60495 -25610,7015:465,-155,6,0,0,0.607893 -25611,7015:364,-154,6,0,0,0.61007 -25612,7015:363,-153,6,0,0,0.608481 -25613,7015:362,-152,6,0,0,0.604975 -25614,7015:361,-151,6,0,0,0.603771 -25615,7015:360,-150,6,0,0,0.605319 -25616,7014:469,-149,6,0,0,0.604778 -25617,7014:468,-148,6,0,0,0.602443 -25618,7014:467,-147,6,0,0,0.600374 -25619,7014:466,-146,6,0,0,0.599609 -25620,7014:465,-145,6,0,0,0.597362 -25621,7014:364,-144,6,0,0,0.59484 -25622,7014:363,-143,6,0,0,0.593031 -25623,7014:362,-142,6,0,0,0.593601 -25624,7014:361,-141,6,0,0,0.596225 -25625,7014:360,-140,6,0,0,0.595359 -25626,7013:469,-139,6,0,0,0.590797 -25627,7013:468,-138,6,0,0,0.587714 -25628,7013:467,-137,6,0,0,0.591616 -25629,7013:466,-136,6,0,0,0.593873 -25630,7013:465,-135,6,0,0,0.594765 -25631,7013:364,-134,6,0,0,0.596053 -25632,7013:363,-133,6,0,0,0.598499 -25633,7013:362,-132,6,0,0,0.599881 -25634,7013:361,-131,6,0,0,0.598005 -25635,7013:360,-130,6,0,0,0.597165 -25636,7012:469,-129,6,0,0,0.597956 -25637,7012:468,-128,6,0,0,0.601138 -25638,7012:467,-127,6,0,0,0.607476 -25639,7012:466,-126,6,0,0,0.613194 -25640,7012:465,-125,6,0,0,0.616065 -25641,7012:364,-124,6,0,0,0.61762 -25642,7012:363,-123,6,0,0,0.619341 -25643,7012:362,-122,6,0,0,0.620865 -25644,7012:361,-121,6,0,0,0.622219 -25645,7012:360,-120,6,0,0,0.622678 -25646,7011:469,-119,6,0,0,0.622171 -25647,7011:468,-118,6,0,0,0.621325 -25648,7011:467,-117,6,0,0,0.621446 -25649,7011:466,-116,6,0,0,0.622122 -25650,7011:465,-115,6,0,0,0.623908 -25651,7011:364,-114,6,0,0,0.626725 -25652,7011:363,-113,6,0,0,0.629461 -25653,7011:362,-112,6,0,0,0.631424 -25654,7011:361,-111,6,0,0,0.631902 -25655,7011:360,-110,6,0,0,0.632164 -25656,7010:469,-109,6,0,0,0.632905 -25657,7010:468,-108,6,0,0,0.634336 -25658,7010:467,-107,6,0,0,0.637832 -25659,7010:466,-106,6,0,0,0.641314 -25660,7010:465,-105,6,0,0,0.642259 -25661,7010:364,-104,6,0,0,0.638733 -25662,7010:363,-103,6,0,0,0.634789 -25663,7010:362,-102,6,0,0,0.634336 -25664,7010:361,-101,6,0,0,0.642447 -25665,7010:360,-100,6,0,0,0.643792 -25666,7009:469,-99,6,0,0,0.63674 -25667,7009:468,-98,6,0,0,0.642259 -25668,7009:467,-97,6,0,0,0.622871 -25669,7009:466,-96,6,0,0,0.611219 -25670,7009:465,-95,6,0,0,0.624848 -25671,7009:364,-94,6,0,0,0.642542 -25672,7009:363,-93,6,0,0,0.641125 -25673,7009:362,-92,6,0,0,0.640486 -25674,7009:361,-91,6,0,0,0.639965 -25675,7009:360,-90,6,0,0,0.649496 -25676,7008:469,-89,6,0,0,0.647412 -25677,7008:468,-88,6,0,0,0.643956 -25678,7008:363,-83,6,0,0,0.632785 -25679,7008:362,-82,6,0,0,0.635027 -25680,7008:361,-81,6,0,0,0.63424 -25681,7008:360,-80,6,0,0,0.637167 -25682,7007:469,-79,6,0,0,0.638544 -25683,7007:468,-78,6,0,0,0.637096 -25684,7007:467,-77,6,0,0,0.634789 -25685,7007:466,-76,6,0,0,0.632881 -25686,7007:465,-75,6,0,0,0.630418 -25687,7007:364,-74,6,0,0,0.626268 -25688,7007:363,-73,6,0,0,0.62557 -25689,7007:362,-72,6,0,0,0.61694 -25690,7007:361,-71,6,0,0,0.610999 -25691,7006:469,-69,6,0,0,0.624463 -25692,7006:468,-68,6,0,0,0.62545 -25693,7006:467,-67,6,0,0,0.630587 -25694,7006:466,-66,6,0,0,0.635146 -25695,7006:465,-65,6,0,0,0.634455 -25696,7006:364,-64,6,0,0,0.633048 -25697,7006:363,-63,6,0,0,0.632785 -25698,7006:362,-62,6,0,0,0.633239 -25699,7006:361,-61,6,0,0,0.633955 -25700,7006:360,-60,6,0,0,0.632045 -25701,7005:469,-59,6,0,0,0.631328 -25702,7005:468,-58,6,0,0,0.631424 -25703,7005:467,-57,6,0,0,0.628814 -25704,7005:466,-56,6,0,0,0.627662 -25705,7005:465,-55,6,0,0,0.62771 -25706,7005:364,-54,6,0,0,0.627733 -25707,7005:363,-53,6,0,0,0.627614 -25708,7005:362,-52,6,0,0,0.626268 -25709,7005:361,-51,6,0,0,0.625113 -25710,7005:360,-50,6,0,0,0.623305 -25711,7004:469,-49,6,0,0,0.62118 -25712,7004:468,-48,6,0,0,0.618153 -25713,7004:467,-47,6,0,0,0.613437 -25714,7004:466,-46,6,0,0,0.611096 -25715,7004:465,-45,6,0,0,0.609483 -25716,7004:364,-44,6,0,0,0.608823 -25717,7004:363,-43,6,0,0,0.605784 -25718,7004:362,-42,6,0,0,0.60259 -25719,7004:361,-41,6,0,0,0.600793 -25720,7004:360,-40,6,0,0,0.598721 -25721,7003:469,-39,6,0,0,0.595954 -25722,7003:468,-38,6,0,0,0.592559 -25723,7003:467,-37,6,0,0,0.590797 -25724,7003:466,-36,6,0,0,0.590673 -25725,7003:465,-35,6,0,0,0.590499 -25726,7003:364,-34,6,0,0,0.59035 -25727,7003:363,-33,6,0,0,0.589629 -25728,7003:362,-32,6,0,0,0.589455 -25729,7003:361,-31,6,0,0,0.590574 -25730,7003:360,-30,6,0,0,0.592708 -25731,7002:469,-29,6,0,0,0.594666 -25732,7002:468,-28,6,0,0,0.593848 -25733,7002:467,-27,6,0,0,0.59246 -25734,7002:466,-26,6,0,0,0.594146 -25735,7002:465,-25,6,0,0,0.596077 -25736,7002:364,-24,6,0,0,0.600177 -25737,7002:363,-23,6,0,0,0.599831 -25738,7002:362,-22,6,0,0,0.598079 -25739,7002:361,-21,6,0,0,0.59924 -25740,7002:360,-20,6,0,0,0.609533 -25741,7001:469,-19,6,0,0,0.620334 -25742,7001:468,-18,6,0,0,0.621591 -25743,7001:467,-17,6,0,0,0.627374 -25744,1004:363,43,6,0,0,0.5984 -25745,1004:465,45,6,0,0,0.595334 -25746,1004:466,46,6,0,0,0.591269 -25747,1004:467,47,6,0,0,0.587888 -25748,1004:468,48,6,0,0,0.58612 -25749,1004:469,49,6,0,0,0.584573 -25750,1005:360,50,6,0,0,0.589654 -25751,1005:361,51,6,0,0,0.606055 -25752,1005:362,52,6,0,0,0.609238 -25753,1005:363,53,6,0,0,0.605417 -25754,1005:364,54,6,0,0,0.602492 -25755,1005:465,55,6,0,0,0.601458 -25756,1005:466,56,6,0,0,0.607599 -25757,1005:467,57,6,0,0,0.609263 -25758,1005:468,58,6,0,0,0.609336 -25759,1005:469,59,6,0,0,0.613242 -25760,1006:360,60,6,0,0,0.61609 -25761,1006:361,61,6,0,0,0.619487 -25762,1006:362,62,6,0,0,0.623908 -25763,1006:363,63,6,0,0,0.626436 -25764,1006:364,64,6,0,0,0.628118 -25765,1006:465,65,6,0,0,0.632236 -25766,1006:466,66,6,0,0,0.637381 -25767,1006:467,67,6,0,0,0.640534 -25768,1006:468,68,6,0,0,0.641006 -25769,1006:469,69,6,0,0,0.642636 -25770,1007:360,70,6,0,0,0.646943 -25771,1007:361,71,6,0,0,0.649262 -25772,1007:362,72,6,0,0,0.650478 -25773,1007:364,74,6,0,0,0.654438 -25774,1007:465,75,6,0,0,0.654485 -25775,1008:361,81,6,0,0,0.617717 -25776,1008:362,82,6,0,0,0.62234 -25777,1008:363,83,6,0,0,0.632785 -25778,1008:364,84,6,0,0,0.633454 -25779,1008:465,85,6,0,0,0.635955 -25780,1008:466,86,6,0,0,0.641243 -25781,1008:467,87,6,0,0,0.642778 -25782,1008:468,88,6,0,0,0.643249 -25783,1008:469,89,6,0,0,0.642684 -25784,1009:360,90,6,0,0,0.6424 -25785,1009:361,91,6,0,0,0.641998 -25786,1009:362,92,6,0,0,0.646895 -25787,1009:364,94,6,0,0,0.643862 -25788,1009:465,95,6,0,0,0.643344 -25789,1009:466,96,6,0,0,0.640723 -25790,1009:467,97,6,0,0,0.644098 -25791,1009:468,98,6,0,0,0.643815 -25792,1010:361,101,6,0,0,0.630945 -26226,7007:486,-76,8,0,0,0.64266 -25793,1011:360,110,6,0,0,0.591194 -25794,1011:361,111,6,0,0,0.622606 -25795,1011:362,112,6,0,0,0.621083 -25796,1011:363,113,6,0,0,0.614314 -25797,1011:364,114,6,0,0,0.608162 -25798,1011:465,115,6,0,0,0.634932 -25799,1011:466,116,6,0,0,0.642447 -25800,1011:467,117,6,0,0,0.638757 -25801,1011:468,118,6,0,0,0.635646 -25802,1011:469,119,6,0,0,0.644639 -25803,1012:360,120,6,0,0,0.641668 -25804,1012:361,121,6,0,0,0.637309 -25805,1012:362,122,6,0,0,0.63331 -25806,1012:363,123,6,0,0,0.629533 -25807,1012:364,124,6,0,0,0.616673 -25808,1012:465,125,6,0,0,0.634288 -25809,1012:466,126,6,0,0,0.634717 -25810,1012:467,127,6,0,0,0.638591 -25811,1012:468,128,6,0,0,0.642188 -25812,1012:469,129,6,0,0,0.645368 -25813,1013:360,130,6,0,0,0.648115 -25814,1013:361,131,6,0,0,0.649823 -25815,1013:362,132,6,0,0,0.650385 -25816,1013:363,133,6,0,0,0.650665 -25817,1013:364,134,6,0,0,0.65001 -25818,1013:465,135,6,0,0,0.649987 -25819,1013:466,136,6,0,0,0.650594 -25820,1013:467,137,6,0,0,0.649917 -25821,1013:468,138,6,0,0,0.648771 -25822,1013:469,139,6,0,0,0.64774 -25823,1014:360,140,6,0,0,0.647786 -25824,1014:361,141,6,0,0,0.647716 -25825,1014:362,142,6,0,0,0.64788 -25826,1014:363,143,6,0,0,0.64863 -25827,1014:364,144,6,0,0,0.649309 -25828,1014:465,145,6,0,0,0.649309 -25829,1014:466,146,6,0,0,0.64994 -25830,1014:467,147,6,0,0,0.650291 -25831,1014:468,148,6,0,0,0.650314 -25832,1014:469,149,6,0,0,0.649777 -25833,1015:360,150,6,0,0,0.648982 -25834,1015:361,151,6,0,0,0.648302 -25835,1015:362,152,6,0,0,0.647623 -25836,1015:363,153,6,0,0,0.646966 -25837,1015:364,154,6,0,0,0.646684 -25838,1015:465,155,6,0,0,0.646496 -25839,1015:466,156,6,0,0,0.645862 -25840,1015:467,157,6,0,0,0.645039 -25841,1015:468,158,6,0,0,0.644451 -25842,1015:469,159,6,0,0,0.643202 -25843,1016:360,160,6,0,0,0.641243 -25844,1016:361,161,6,0,0,0.639965 -25845,1016:362,162,6,0,0,0.6389 -25846,1016:363,163,6,0,0,0.637666 -25847,1016:364,164,6,0,0,0.636241 -25848,1016:465,165,6,0,0,0.634479 -25849,1016:466,166,6,0,0,0.633549 -25850,1016:467,167,6,0,0,0.632785 -25851,1016:468,168,6,0,0,0.630658 -25852,1016:469,169,6,0,0,0.628646 -25853,1017:360,170,6,0,0,0.62795 -25854,1017:361,171,6,0,0,0.628094 -25855,1017:362,172,6,0,0,0.629101 -25856,1017:363,173,6,0,0,0.629005 -25857,1017:364,174,6,0,0,0.628622 -25858,1017:465,175,6,0,0,0.627854 -25859,1017:466,176,6,0,0,0.626941 -25860,1017:467,177,6,0,0,0.625402 -25861,1017:468,178,6,0,0,0.62504 -25862,1017:469,179,6,0,0,0.624391 -25863,1018:360,180,6,0,0,0.624077 -25864,7018:370,-180,7,0,0,0.61762 -25865,7017:479,-179,7,0,0,0.615726 -25866,7017:478,-178,7,0,0,0.614631 -25867,7017:477,-177,7,0,0,0.614582 -25868,7017:476,-176,7,0,0,0.615312 -25869,7017:475,-175,7,0,0,0.615531 -25870,7017:374,-174,7,0,0,0.613706 -25871,7017:373,-173,7,0,0,0.611145 -25872,7017:372,-172,7,0,0,0.610803 -25873,7017:371,-171,7,0,0,0.612097 -25874,7017:370,-170,7,0,0,0.612682 -25875,7016:479,-169,7,0,0,0.612389 -25876,7016:478,-168,7,0,0,0.611438 -25877,7016:477,-167,7,0,0,0.610827 -25878,7016:476,-166,7,0,0,0.609728 -25879,7016:475,-165,7,0,0,0.608284 -25880,7016:374,-164,7,0,0,0.607231 -25881,7016:373,-163,7,0,0,0.60701 -25882,7016:372,-162,7,0,0,0.60679 -25883,7016:371,-161,7,0,0,0.60576 -25884,7016:370,-160,7,0,0,0.605662 -25885,7015:479,-159,7,0,0,0.604656 -25886,7015:478,-158,7,0,0,0.602836 -25887,7015:477,-157,7,0,0,0.601015 -25888,7015:476,-156,7,0,0,0.59877 -25889,7015:475,-155,7,0,0,0.597782 -25890,7015:374,-154,7,0,0,0.59766 -25891,7015:373,-153,7,0,0,0.598647 -25892,7015:372,-152,7,0,0,0.599091 -25893,7015:371,-151,7,0,0,0.597362 -25894,7015:370,-150,7,0,0,0.598993 -25895,7014:479,-149,7,0,0,0.601606 -25896,7014:478,-148,7,0,0,0.599042 -25897,7014:477,-147,7,0,0,0.592907 -25898,7014:476,-146,7,0,0,0.595087 -25899,7014:475,-145,7,0,0,0.593353 -25900,7014:374,-144,7,0,0,0.589505 -25901,7014:373,-143,7,0,0,0.588659 -25902,7014:372,-142,7,0,0,0.589629 -25903,7014:371,-141,7,0,0,0.591989 -25904,7014:370,-140,7,0,0,0.593006 -25905,7013:479,-139,7,0,0,0.586717 -25906,7013:478,-138,7,0,0,0.581376 -25907,7013:477,-137,7,0,0,0.584474 -25908,7013:476,-136,7,0,0,0.585147 -25909,7013:475,-135,7,0,0,0.584099 -25910,7013:374,-134,7,0,0,0.583924 -25911,7013:373,-133,7,0,0,0.585147 -25912,7013:372,-132,7,0,0,0.584124 -25913,7013:371,-131,7,0,0,0.583025 -25914,7013:370,-130,7,0,0,0.585347 -25915,7012:479,-129,7,0,0,0.590176 -25916,7012:478,-128,7,0,0,0.595186 -25917,7012:477,-127,7,0,0,0.598153 -25918,7012:476,-126,7,0,0,0.601926 -25919,7012:475,-125,7,0,0,0.604729 -25920,7012:374,-124,7,0,0,0.605588 -25921,7012:373,-123,7,0,0,0.606201 -25922,7012:372,-122,7,0,0,0.606472 -25923,7012:371,-121,7,0,0,0.607256 -25924,7012:370,-120,7,0,0,0.609312 -25925,7011:479,-119,7,0,0,0.612999 -25926,7011:478,-118,7,0,0,0.614582 -25927,7011:477,-117,7,0,0,0.615798 -25928,7011:476,-116,7,0,0,0.618105 -25929,7011:475,-115,7,0,0,0.621108 -25930,7011:374,-114,7,0,0,0.62275 -25931,7011:373,-113,7,0,0,0.622919 -25932,7011:372,-112,7,0,0,0.622967 -25933,7011:371,-111,7,0,0,0.626028 -25934,7011:370,-110,7,0,0,0.632905 -25935,7010:479,-109,7,0,0,0.637618 -25936,7010:478,-108,7,0,0,0.63852 -25937,7010:477,-107,7,0,0,0.63897 -25938,7010:476,-106,7,0,0,0.642447 -25939,7010:475,-105,7,0,0,0.648841 -25940,7010:374,-104,7,0,0,0.649426 -25941,7010:373,-103,7,0,0,0.640391 -25942,7010:372,-102,7,0,0,0.630611 -25943,7010:371,-101,7,0,0,0.632642 -25944,7010:370,-100,7,0,0,0.637998 -25945,7009:479,-99,7,0,0,0.635598 -25946,7009:478,-98,7,0,0,0.643838 -25947,7009:477,-97,7,0,0,0.638497 -25948,7009:476,-96,7,0,0,0.614314 -25949,7009:475,-95,7,0,0,0.638235 -25950,7009:374,-94,7,0,0,0.64987 -25951,7009:373,-93,7,0,0,0.645886 -25952,7009:372,-92,7,0,0,0.656596 -25953,7008:373,-83,7,0,0,0.624776 -25954,7008:372,-82,7,0,0,0.633501 -25955,7008:371,-81,7,0,0,0.639847 -25956,7008:370,-80,7,0,0,0.641857 -25957,7007:479,-79,7,0,0,0.640746 -25958,7007:478,-78,7,0,0,0.638473 -25959,7007:477,-77,7,0,0,0.635527 -25960,7007:476,-76,7,0,0,0.635646 -25961,7007:475,-75,7,0,0,0.636669 -25962,7007:374,-74,7,0,0,0.637975 -25963,7007:373,-73,7,0,0,0.636431 -25964,7007:372,-72,7,0,0,0.634003 -25965,7007:371,-71,7,0,0,0.633239 -25966,7007:370,-70,7,0,0,0.631902 -25967,7006:479,-69,7,0,0,0.630275 -25968,7006:478,-68,7,0,0,0.634288 -25969,7006:477,-67,7,0,0,0.635646 -25970,7006:476,-66,7,0,0,0.638947 -25971,7006:475,-65,7,0,0,0.6389 -25972,7006:374,-64,7,0,0,0.637143 -25973,7006:373,-63,7,0,0,0.635193 -25974,7006:372,-62,7,0,0,0.634145 -25975,7006:371,-61,7,0,0,0.631687 -25976,7006:370,-60,7,0,0,0.630802 -25977,7005:479,-59,7,0,0,0.629581 -25978,7005:478,-58,7,0,0,0.626436 -25979,7005:477,-57,7,0,0,0.62468 -25980,7005:476,-56,7,0,0,0.623305 -25981,7005:475,-55,7,0,0,0.623474 -25982,7005:374,-54,7,0,0,0.623185 -25983,7005:373,-53,7,0,0,0.622509 -25984,7005:372,-52,7,0,0,0.617862 -25985,7005:371,-51,7,0,0,0.614947 -25986,7005:370,-50,7,0,0,0.613097 -25987,7004:479,-49,7,0,0,0.61156 -25988,7004:478,-48,7,0,0,0.608554 -25989,7004:477,-47,7,0,0,0.603771 -25990,7004:476,-46,7,0,0,0.601088 -25991,7004:475,-45,7,0,0,0.60099 -25992,7004:374,-44,7,0,0,0.602246 -25993,7004:373,-43,7,0,0,0.5962 -25994,7004:372,-42,7,0,0,0.596473 -25995,7004:371,-41,7,0,0,0.595285 -25996,7004:370,-40,7,0,0,0.593204 -25997,7003:479,-39,7,0,0,0.591219 -25998,7003:478,-38,7,0,0,0.589952 -25999,7003:477,-37,7,0,0,0.589207 -26000,7003:476,-36,7,0,0,0.585297 -26001,7003:475,-35,7,0,0,0.577445 -26002,7003:374,-34,7,0,0,0.575865 -26003,7003:373,-33,7,0,0,0.57589 -26004,7003:372,-32,7,0,0,0.577144 -26005,7003:371,-31,7,0,0,0.578322 -26006,7003:370,-30,7,0,0,0.580201 -26007,7002:479,-29,7,0,0,0.579349 -26008,7002:478,-28,7,0,0,0.576116 -26009,7002:477,-27,7,0,0,0.577245 -26010,7002:476,-26,7,0,0,0.582401 -26011,7002:475,-25,7,0,0,0.584448 -26012,7002:374,-24,7,0,0,0.587141 -26013,7002:373,-23,7,0,0,0.584174 -26014,7002:372,-22,7,0,0,0.584249 -26015,7002:371,-21,7,0,0,0.588634 -26016,7002:370,-20,7,0,0,0.599091 -26017,7001:479,-19,7,0,0,0.603894 -26018,7001:478,-18,7,0,0,0.605465 -26019,1004:372,42,7,0,0,0.607672 -26020,1004:479,49,7,0,0,0.598203 -26021,1005:370,50,7,0,0,0.600966 -26022,1005:371,51,7,0,0,0.604213 -26023,1005:372,52,7,0,0,0.604361 -26024,1005:373,53,7,0,0,0.603402 -26025,1005:374,54,7,0,0,0.600818 -26026,1005:475,55,7,0,0,0.599881 -26027,1005:476,56,7,0,0,0.600325 -26028,1005:477,57,7,0,0,0.601286 -26029,1005:478,58,7,0,0,0.606153 -26030,1005:479,59,7,0,0,0.604729 -26031,1006:370,60,7,0,0,0.605539 -26032,1006:371,61,7,0,0,0.60728 -26033,1006:372,62,7,0,0,0.611853 -26034,1006:373,63,7,0,0,0.617838 -26035,1006:374,64,7,0,0,0.619172 -26036,1006:475,65,7,0,0,0.624655 -26037,1006:476,66,7,0,0,0.630802 -26038,1006:477,67,7,0,0,0.63405 -26039,1006:478,68,7,0,0,0.636645 -26040,1006:479,69,7,0,0,0.640273 -26041,1007:370,70,7,0,0,0.644686 -26042,1007:371,71,7,0,0,0.64706 -26043,1007:372,72,7,0,0,0.648841 -26044,1007:374,74,7,0,0,0.653415 -26045,1008:371,81,7,0,0,0.615409 -26046,1008:372,82,7,0,0,0.622195 -26047,1008:373,83,7,0,0,0.625715 -26048,1008:374,84,7,0,0,0.629484 -26049,1008:475,85,7,0,0,0.634884 -26050,1008:476,86,7,0,0,0.63987 -26051,1008:477,87,7,0,0,0.640982 -26052,1008:478,88,7,0,0,0.641101 -26053,1008:479,89,7,0,0,0.64398 -26054,1009:370,90,7,0,0,0.645416 -26055,1009:371,91,7,0,0,0.64511 -26056,1009:372,92,7,0,0,0.648115 -26057,1009:373,93,7,0,0,0.646544 -26058,1009:374,94,7,0,0,0.638852 -26059,1009:475,95,7,0,0,0.637642 -26060,1009:476,96,7,0,0,0.638781 -26061,1009:477,97,7,0,0,0.64051 -26062,1009:478,98,7,0,0,0.647412 -26063,1011:370,110,7,0,0,0.590375 -26064,1011:371,111,7,0,0,0.596028 -26065,1011:372,112,7,0,0,0.615871 -26066,1011:373,113,7,0,0,0.609238 -26067,1011:374,114,7,0,0,0.602 -26068,1011:475,115,7,0,0,0.616964 -26069,1011:476,116,7,0,0,0.627349 -26070,1011:477,117,7,0,0,0.622799 -26071,1011:478,118,7,0,0,0.631902 -26072,1011:479,119,7,0,0,0.641337 -26073,1012:370,120,7,0,0,0.633931 -26074,1012:374,124,7,0,0,0.618614 -26075,1012:475,125,7,0,0,0.630443 -26076,1012:476,126,7,0,0,0.631926 -26077,1012:477,127,7,0,0,0.633693 -26078,1012:478,128,7,0,0,0.635955 -26079,1012:479,129,7,0,0,0.638615 -26080,1013:370,130,7,0,0,0.641479 -26081,1013:371,131,7,0,0,0.644098 -26082,1013:372,132,7,0,0,0.646167 -26083,1013:373,133,7,0,0,0.646825 -26084,1013:374,134,7,0,0,0.646003 -26085,1013:475,135,7,0,0,0.645698 -26086,1013:476,136,7,0,0,0.644874 -26087,1013:477,137,7,0,0,0.644004 -26088,1013:478,138,7,0,0,0.644098 -26089,1013:479,139,7,0,0,0.644192 -26090,1014:370,140,7,0,0,0.644474 -26091,1014:371,141,7,0,0,0.644451 -26092,1014:372,142,7,0,0,0.64438 -26093,1014:373,143,7,0,0,0.644733 -26094,1014:374,144,7,0,0,0.645134 -26095,1014:475,145,7,0,0,0.644898 -26096,1014:476,146,7,0,0,0.64518 -26097,1014:477,147,7,0,0,0.645274 -26098,1014:478,148,7,0,0,0.644851 -26099,1014:479,149,7,0,0,0.64431 -26100,1015:370,150,7,0,0,0.64398 -26101,1015:371,151,7,0,0,0.643697 -26102,1015:372,152,7,0,0,0.643179 -26103,1015:373,153,7,0,0,0.642377 -26104,1015:374,154,7,0,0,0.641408 -26105,1015:475,155,7,0,0,0.640439 -26106,1015:476,156,7,0,0,0.639421 -26107,1015:477,157,7,0,0,0.638093 -26108,1015:478,158,7,0,0,0.636811 -26109,1015:479,159,7,0,0,0.635883 -26110,1016:370,160,7,0,0,0.63486 -26111,1016:371,161,7,0,0,0.634169 -26112,1016:372,162,7,0,0,0.633573 -26113,1016:373,163,7,0,0,0.632356 -26114,1016:374,164,7,0,0,0.630491 -26115,1016:475,165,7,0,0,0.628406 -26116,1016:476,166,7,0,0,0.6267 -26117,1016:477,167,7,0,0,0.625811 -27202,7112:226,-126,12,0,0,0.46312 -26118,1016:478,168,7,0,0,0.624752 -26119,1016:479,169,7,0,0,0.623305 -26120,1017:370,170,7,0,0,0.621881 -26121,1017:371,171,7,0,0,0.620552 -26122,1017:372,172,7,0,0,0.620431 -26123,1017:373,173,7,0,0,0.620986 -26124,1017:374,174,7,0,0,0.621446 -26125,1017:475,175,7,0,0,0.621446 -26126,1017:476,176,7,0,0,0.621083 -26127,1017:477,177,7,0,0,0.620406 -26128,1017:478,178,7,0,0,0.619825 -26129,1017:479,179,7,0,0,0.619172 -26130,1018:370,180,7,0,0,0.61762 -26131,7018:380,-180,8,0,0,0.611242 -26132,7017:489,-179,8,0,0,0.609679 -26133,7017:488,-178,8,0,0,0.607158 -26134,7017:487,-177,8,0,0,0.604188 -26135,7017:486,-176,8,0,0,0.603254 -26136,7017:485,-175,8,0,0,0.603771 -26137,7017:384,-174,8,0,0,0.603894 -26138,7017:383,-173,8,0,0,0.604065 -26139,7017:382,-172,8,0,0,0.605319 -26140,7017:381,-171,8,0,0,0.606814 -26141,7017:380,-170,8,0,0,0.605441 -26142,7016:489,-169,8,0,0,0.60195 -26143,7016:488,-168,8,0,0,0.600596 -26144,7016:487,-167,8,0,0,0.602221 -26145,7016:486,-166,8,0,0,0.604778 -26146,7016:485,-165,8,0,0,0.604483 -26147,7016:384,-164,8,0,0,0.602393 -26148,7016:383,-163,8,0,0,0.598252 -26149,7016:382,-162,8,0,0,0.594468 -26150,7016:381,-161,8,0,0,0.594344 -26151,7016:380,-160,8,0,0,0.597437 -26152,7015:489,-159,8,0,0,0.597956 -26153,7015:488,-158,8,0,0,0.596324 -26154,7015:487,-157,8,0,0,0.594518 -26155,7015:486,-156,8,0,0,0.592162 -26156,7015:485,-155,8,0,0,0.590002 -26157,7015:384,-154,8,0,0,0.590871 -26158,7015:383,-153,8,0,0,0.59184 -26159,7015:382,-152,8,0,0,0.59184 -26160,7015:381,-151,8,0,0,0.589902 -26161,7015:380,-150,8,0,0,0.588609 -26162,7014:489,-149,8,0,0,0.585596 -26163,7014:488,-148,8,0,0,0.58592 -26164,7014:487,-147,8,0,0,0.588361 -26165,7014:486,-146,8,0,0,0.585472 -26166,7014:485,-145,8,0,0,0.584947 -26167,7014:384,-144,8,0,0,0.586618 -26168,7014:383,-143,8,0,0,0.586219 -26169,7014:382,-142,8,0,0,0.584249 -26170,7014:381,-141,8,0,0,0.580726 -26171,7014:380,-140,8,0,0,0.575789 -26172,7013:489,-139,8,0,0,0.572298 -26173,7013:488,-138,8,0,0,0.57456 -26174,7013:487,-137,8,0,0,0.575288 -26175,7013:486,-136,8,0,0,0.572322 -26176,7013:485,-135,8,0,0,0.569831 -26177,7013:384,-134,8,0,0,0.567588 -26178,7013:383,-133,8,0,0,0.567412 -26179,7013:382,-132,8,0,0,0.568193 -26180,7013:381,-131,8,0,0,0.569806 -26181,7013:380,-130,8,0,0,0.564964 -26182,7012:489,-129,8,0,0,0.568068 -26183,7012:488,-128,8,0,0,0.571644 -26184,7012:487,-127,8,0,0,0.57285 -26185,7012:486,-126,8,0,0,0.577119 -26186,7012:485,-125,8,0,0,0.577671 -26187,7012:384,-124,8,0,0,0.577019 -26188,7012:383,-123,8,0,0,0.576417 -26189,7012:382,-122,8,0,0,0.58 -26190,7012:381,-121,8,0,0,0.590424 -26191,7012:380,-120,8,0,0,0.60136 -26192,7011:489,-119,8,0,0,0.603426 -26193,7011:488,-118,8,0,0,0.602665 -26194,7011:487,-117,8,0,0,0.597635 -26195,7011:486,-116,8,0,0,0.602443 -26196,7011:485,-115,8,0,0,0.602172 -26197,7011:384,-114,8,0,0,0.600866 -26198,7011:383,-113,8,0,0,0.600522 -26199,7011:382,-112,8,0,0,0.608358 -26200,7011:381,-111,8,0,0,0.617911 -26201,7011:380,-110,8,0,0,0.624776 -26202,7010:489,-109,8,0,0,0.63006 -26203,7010:488,-108,8,0,0,0.63712 -26204,7010:487,-107,8,0,0,0.640534 -26205,7010:486,-106,8,0,0,0.642848 -26206,7010:485,-105,8,0,0,0.645462 -26207,7010:384,-104,8,0,0,0.659186 -26208,7010:383,-103,8,0,0,0.663305 -26209,7010:382,-102,8,0,0,0.665825 -26210,7010:381,-101,8,0,0,0.663397 -26211,7010:380,-100,8,0,0,0.661007 -26212,7009:489,-99,8,0,0,0.653904 -26213,7009:488,-98,8,0,0,0.641125 -26214,7009:487,-97,8,0,0,0.636026 -26215,7009:486,-96,8,0,0,0.634526 -26216,7009:485,-95,8,0,0,0.639373 -26217,7009:384,-94,8,0,0,0.645039 -26218,7008:384,-84,8,0,0,0.624053 -26219,7008:383,-83,8,0,0,0.618881 -26220,7008:382,-82,8,0,0,0.626484 -26221,7008:381,-81,8,0,0,0.636098 -26222,7008:380,-80,8,0,0,0.641054 -26223,7007:489,-79,8,0,0,0.64103 -26224,7007:488,-78,8,0,0,0.640178 -26225,7007:487,-77,8,0,0,0.641314 -26227,7007:485,-75,8,0,0,0.643697 -26228,7007:384,-74,8,0,0,0.642919 -26229,7007:383,-73,8,0,0,0.64006 -26230,7007:382,-72,8,0,0,0.63769 -26231,7007:381,-71,8,0,0,0.637215 -26232,7007:380,-70,8,0,0,0.637666 -26233,7006:489,-69,8,0,0,0.638164 -26234,7006:488,-68,8,0,0,0.638497 -26235,7006:487,-67,8,0,0,0.638923 -26236,7006:486,-66,8,0,0,0.637049 -26237,7006:485,-65,8,0,0,0.637499 -26238,7006:384,-64,8,0,0,0.636122 -26239,7006:383,-63,8,0,0,0.634979 -26240,7006:382,-62,8,0,0,0.631735 -26241,7006:381,-61,8,0,0,0.627566 -26242,7006:380,-60,8,0,0,0.628526 -26243,7005:489,-59,8,0,0,0.625931 -26244,7005:488,-58,8,0,0,0.623691 -26245,7005:487,-57,8,0,0,0.621277 -26246,7005:486,-56,8,0,0,0.617741 -26247,7005:485,-55,8,0,0,0.616042 -26248,7005:384,-54,8,0,0,0.615823 -26249,7005:383,-53,8,0,0,0.613389 -26250,7005:382,-52,8,0,0,0.609043 -26251,7005:381,-51,8,0,0,0.606912 -26252,7005:380,-50,8,0,0,0.604533 -26253,7004:489,-49,8,0,0,0.602049 -26254,7004:488,-48,8,0,0,0.600201 -26255,7004:487,-47,8,0,0,0.598598 -26256,7004:486,-46,8,0,0,0.596868 -26257,7004:485,-45,8,0,0,0.594864 -26258,7004:384,-44,8,0,0,0.592312 -26259,7004:383,-43,8,0,0,0.589729 -26260,7004:382,-42,8,0,0,0.588361 -26261,7004:381,-41,8,0,0,0.58572 -26262,7004:380,-40,8,0,0,0.583825 -26263,7003:489,-39,8,0,0,0.581651 -26264,7003:488,-38,8,0,0,0.578573 -26265,7003:487,-37,8,0,0,0.576567 -26266,7003:486,-36,8,0,0,0.574886 -26267,7003:485,-35,8,0,0,0.573027 -26268,7003:384,-34,8,0,0,0.572725 -26269,7003:383,-33,8,0,0,0.569504 -26270,7003:382,-32,8,0,0,0.568748 -26271,7003:381,-31,8,0,0,0.569201 -26272,7003:380,-30,8,0,0,0.570259 -26273,7002:489,-29,8,0,0,0.569201 -26274,7002:488,-28,8,0,0,0.567286 -26275,7002:487,-27,8,0,0,0.56721 -26276,7002:486,-26,8,0,0,0.567765 -26277,7002:485,-25,8,0,0,0.566882 -26278,7002:384,-24,8,0,0,0.56779 -26279,7002:383,-23,8,0,0,0.571116 -26280,7002:382,-22,8,0,0,0.568874 -26281,7002:381,-21,8,0,0,0.573177 -26282,7002:380,-20,8,0,0,0.583425 -26283,7001:489,-19,8,0,0,0.586368 -26284,7001:488,-18,8,0,0,0.585472 -26285,7001:487,-17,8,0,0,0.559983 -26286,1004:380,40,8,0,0,0.625546 -26287,1004:381,41,8,0,0,0.616989 -26288,1004:382,42,8,0,0,0.629508 -26289,1005:382,52,8,0,0,0.595409 -26290,1005:383,53,8,0,0,0.592708 -26291,1005:384,54,8,0,0,0.590574 -26292,1005:485,55,8,0,0,0.591542 -26293,1005:486,56,8,0,0,0.596671 -26294,1005:487,57,8,0,0,0.596646 -26295,1005:488,58,8,0,0,0.59422 -26296,1005:489,59,8,0,0,0.598079 -26297,1006:380,60,8,0,0,0.601778 -26298,1006:381,61,8,0,0,0.604262 -26299,1006:382,62,8,0,0,0.610852 -26300,1006:383,63,8,0,0,0.614947 -26301,1006:384,64,8,0,0,0.620552 -26302,1006:485,65,8,0,0,0.626845 -26303,1006:486,66,8,0,0,0.630443 -26304,1006:487,67,8,0,0,0.635883 -26305,1006:488,68,8,0,0,0.638662 -26306,1006:489,69,8,0,0,0.64103 -26307,1007:380,70,8,0,0,0.643485 -26308,1007:381,71,8,0,0,0.648349 -26309,1007:382,72,8,0,0,0.654392 -26310,1007:384,74,8,0,0,0.647599 -26311,1008:381,81,8,0,0,0.611706 -26312,1008:382,82,8,0,0,0.613145 -26313,1008:383,83,8,0,0,0.622436 -26314,1008:384,84,8,0,0,0.626604 -26315,1008:485,85,8,0,0,0.630945 -26316,1008:486,86,8,0,0,0.634884 -26317,1008:487,87,8,0,0,0.636621 -26318,1008:488,88,8,0,0,0.637547 -26319,1008:489,89,8,0,0,0.64058 -26320,1009:380,90,8,0,0,0.642966 -26321,1009:381,91,8,0,0,0.645839 -26322,1009:382,92,8,0,0,0.647951 -26323,1009:383,93,8,0,0,0.642046 -26324,1009:384,94,8,0,0,0.63833 -26325,1009:485,95,8,0,0,0.634431 -26326,1009:486,96,8,0,0,0.633382 -26327,1009:487,97,8,0,0,0.637357 -26328,1010:489,109,8,0,0,0.584898 -26329,1011:380,110,8,0,0,0.587141 -26330,1011:381,111,8,0,0,0.598351 -26331,1011:382,112,8,0,0,0.599856 -26332,1011:383,113,8,0,0,0.603697 -26333,1011:384,114,8,0,0,0.607697 -26334,1011:485,115,8,0,0,0.610632 -26335,1011:486,116,8,0,0,0.613535 -26336,1011:487,117,8,0,0,0.618638 -26337,1011:488,118,8,0,0,0.628286 -26338,1011:489,119,8,0,0,0.637286 -26339,1012:380,120,8,0,0,0.620842 -26340,1012:382,122,8,0,0,0.625594 -26341,1012:383,123,8,0,0,0.627614 -26342,1012:384,124,8,0,0,0.624968 -26343,1012:485,125,8,0,0,0.623643 -26344,1012:486,126,8,0,0,0.624391 -26345,1012:487,127,8,0,0,0.626436 -26346,1012:488,128,8,0,0,0.628118 -26347,1012:489,129,8,0,0,0.629796 -26348,1013:380,130,8,0,0,0.631806 -26349,1013:381,131,8,0,0,0.635788 -26350,1013:382,132,8,0,0,0.640013 -26351,1013:383,133,8,0,0,0.640367 -26352,1013:384,134,8,0,0,0.637049 -26353,1013:485,135,8,0,0,0.636669 -26354,1013:486,136,8,0,0,0.638402 -26355,1013:487,137,8,0,0,0.638876 -26356,1013:488,138,8,0,0,0.639752 -26357,1013:489,139,8,0,0,0.640391 -26358,1014:380,140,8,0,0,0.640439 -26359,1014:381,141,8,0,0,0.640415 -26360,1014:382,142,8,0,0,0.640391 -26361,1014:383,143,8,0,0,0.640699 -26362,1014:384,144,8,0,0,0.640912 -26363,1014:485,145,8,0,0,0.641148 -26364,1014:486,146,8,0,0,0.6398 -26365,1014:487,147,8,0,0,0.640604 -26366,1014:488,148,8,0,0,0.640273 -26367,1014:489,149,8,0,0,0.640462 -26368,1015:380,150,8,0,0,0.640817 -26369,1015:381,151,8,0,0,0.641006 -26370,1015:382,152,8,0,0,0.640817 -26371,1015:383,153,8,0,0,0.640202 -26372,1015:384,154,8,0,0,0.639302 -26373,1015:485,155,8,0,0,0.638164 -26374,1015:486,156,8,0,0,0.637001 -26375,1015:487,157,8,0,0,0.635955 -26376,1015:488,158,8,0,0,0.634789 -26377,1015:489,159,8,0,0,0.633549 -26378,1016:380,160,8,0,0,0.632236 -26379,1016:381,161,8,0,0,0.631017 -26380,1016:382,162,8,0,0,0.630251 -26381,1016:383,163,8,0,0,0.629964 -26382,1016:384,164,8,0,0,0.629221 -26383,1016:485,165,8,0,0,0.627733 -26384,1016:486,166,8,0,0,0.625811 -26385,1016:487,167,8,0,0,0.624077 -26386,1016:488,168,8,0,0,0.622267 -26387,1016:489,169,8,0,0,0.620164 -26388,1017:380,170,8,0,0,0.617862 -26389,1017:381,171,8,0,0,0.616381 -26390,1017:382,172,8,0,0,0.615895 -26391,1017:383,173,8,0,0,0.615774 -26392,1017:384,174,8,0,0,0.615409 -26393,1017:485,175,8,0,0,0.61429 -26394,1017:486,176,8,0,0,0.612902 -26395,1017:487,177,8,0,0,0.612146 -26396,1017:488,178,8,0,0,0.612316 -26397,1017:489,179,8,0,0,0.612389 -26398,1018:380,180,8,0,0,0.611242 -26399,7018:390,-180,9,0,0,0.606839 -26400,7017:499,-179,9,0,0,0.60777 -26401,7017:498,-178,9,0,0,0.606741 -26402,7017:497,-177,9,0,0,0.605171 -26403,7017:496,-176,9,0,0,0.604065 -26404,7017:495,-175,9,0,0,0.601606 -26405,7017:394,-174,9,0,0,0.599338 -26406,7017:393,-173,9,0,0,0.598227 -26407,7017:392,-172,9,0,0,0.599313 -26408,7017:391,-171,9,0,0,0.600916 -26409,7017:390,-170,9,0,0,0.601113 -26410,7016:499,-169,9,0,0,0.598153 -26411,7016:498,-168,9,0,0,0.595211 -26412,7016:497,-167,9,0,0,0.594419 -26413,7016:496,-166,9,0,0,0.596918 -26414,7016:495,-165,9,0,0,0.597017 -26415,7016:394,-164,9,0,0,0.595409 -26416,7016:393,-163,9,0,0,0.592436 -26417,7016:392,-162,9,0,0,0.590276 -26418,7016:391,-161,9,0,0,0.590698 -26419,7016:390,-160,9,0,0,0.588734 -26420,7015:499,-159,9,0,0,0.590624 -26421,7015:498,-158,9,0,0,0.58739 -26422,7015:497,-157,9,0,0,0.579599 -26423,7015:496,-156,9,0,0,0.5797 -26424,7015:495,-155,9,0,0,0.58572 -26425,7015:394,-154,9,0,0,0.582851 -26426,7015:393,-153,9,0,0,0.580401 -26427,7015:392,-152,9,0,0,0.580425 -26428,7015:391,-151,9,0,0,0.578623 -26429,7015:390,-150,9,0,0,0.576618 -26430,7014:499,-149,9,0,0,0.575689 -26431,7014:498,-148,9,0,0,0.577671 -26432,7014:497,-147,9,0,0,0.579399 -26433,7014:496,-146,9,0,0,0.578297 -26434,7014:495,-145,9,0,0,0.576066 -26435,7014:394,-144,9,0,0,0.576316 -26436,7014:393,-143,9,0,0,0.568521 -26437,7014:392,-142,9,0,0,0.571946 -26438,7014:391,-141,9,0,0,0.575488 -26439,7014:390,-140,9,0,0,0.566806 -26440,7013:499,-139,9,0,0,0.556892 -26441,7013:498,-138,9,0,0,0.558413 -26442,7013:497,-137,9,0,0,0.555649 -26443,7013:496,-136,9,0,0,0.550825 -26444,7013:495,-135,9,0,0,0.553263 -26445,7013:394,-134,9,0,0,0.545124 -26446,7013:393,-133,9,0,0,0.541045 -26447,7013:392,-132,9,0,0,0.54005 -26448,7013:391,-131,9,0,0,0.538773 -26449,7013:390,-130,9,0,0,0.533203 -26450,7012:499,-129,9,0,0,0.533407 -26451,7012:498,-128,9,0,0,0.54079 -26452,7012:497,-127,9,0,0,0.537726 -26453,7012:496,-126,9,0,0,0.539156 -26454,7012:495,-125,9,0,0,0.551078 -26455,7012:394,-124,9,0,0,0.546066 -26456,7012:393,-123,9,0,0,0.553543 -26457,7012:392,-122,9,0,0,0.553289 -26458,7012:391,-121,9,0,0,0.565343 -26459,7012:390,-120,9,0,0,0.571442 -26460,7011:499,-119,9,0,0,0.578097 -26461,7011:498,-118,9,0,0,0.579099 -26462,7011:497,-117,9,0,0,0.578623 -26463,7011:496,-116,9,0,0,0.581826 -26464,7011:495,-115,9,0,0,0.58005 -26465,7011:394,-114,9,0,0,0.5827 -26466,7011:393,-113,9,0,0,0.581626 -26467,7011:392,-112,9,0,0,0.584972 -26468,7011:391,-111,9,0,0,0.597536 -26469,7011:390,-110,9,0,0,0.60826 -26470,7010:499,-109,9,0,0,0.62304 -26471,7010:498,-108,9,0,0,0.63195 -26472,7010:497,-107,9,0,0,0.636265 -26473,7010:496,-106,9,0,0,0.640226 -26474,7010:495,-105,9,0,0,0.6498 -26475,7010:394,-104,9,0,0,0.655669 -26476,7010:393,-103,9,0,0,0.659232 -26477,7010:392,-102,9,0,0,0.664841 -26478,7010:391,-101,9,0,0,0.65884 -26479,7008:498,-88,9,0,0,0.637143 -26480,7008:497,-87,9,0,0,0.635003 -26481,7008:496,-86,9,0,0,0.634264 -26482,7008:495,-85,9,0,0,0.63605 -26483,7008:394,-84,9,0,0,0.634598 -26484,7008:393,-83,9,0,0,0.634408 -26485,7008:392,-82,9,0,0,0.635313 -26486,7008:391,-81,9,0,0,0.636645 -26487,7008:390,-80,9,0,0,0.640486 -26488,7007:499,-79,9,0,0,0.640391 -26489,7007:498,-78,9,0,0,0.63769 -26490,7007:497,-77,9,0,0,0.63871 -26491,7007:496,-76,9,0,0,0.641739 -26492,7007:495,-75,9,0,0,0.638544 -26493,7007:394,-74,9,0,0,0.640793 -26494,7007:393,-73,9,0,0,0.639634 -26495,7007:392,-72,9,0,0,0.638686 -26496,7007:391,-71,9,0,0,0.636574 -26497,7007:390,-70,9,0,0,0.637167 -26498,7006:499,-69,9,0,0,0.637001 -26499,7006:498,-68,9,0,0,0.636621 -26500,7006:497,-67,9,0,0,0.635098 -26501,7006:496,-66,9,0,0,0.635479 -26502,7006:495,-65,9,0,0,0.634336 -26503,7006:394,-64,9,0,0,0.633406 -26504,7006:393,-63,9,0,0,0.63006 -26505,7006:392,-62,9,0,0,0.628861 -26506,7006:391,-61,9,0,0,0.626268 -26507,7006:390,-60,9,0,0,0.625185 -26508,7005:499,-59,9,0,0,0.62333 -26509,7005:498,-58,9,0,0,0.621277 -26510,7005:497,-57,9,0,0,0.61968 -26511,7005:496,-56,9,0,0,0.617668 -26512,7005:495,-55,9,0,0,0.615433 -26513,7005:394,-54,9,0,0,0.612877 -26514,7005:393,-53,9,0,0,0.609899 -26515,7005:392,-52,9,0,0,0.607574 -26516,7005:391,-51,9,0,0,0.605662 -26517,7005:390,-50,9,0,0,0.60441 -26518,7004:499,-49,9,0,0,0.60195 -26519,7004:498,-48,9,0,0,0.599511 -26520,7004:497,-47,9,0,0,0.596003 -26521,7004:496,-46,9,0,0,0.593526 -26522,7004:495,-45,9,0,0,0.591344 -26523,7004:394,-44,9,0,0,0.588983 -26524,7004:393,-43,9,0,0,0.586593 -26525,7004:392,-42,9,0,0,0.586394 -26526,7004:391,-41,9,0,0,0.58385 -26527,7004:390,-40,9,0,0,0.578397 -26528,7003:499,-39,9,0,0,0.57732 -26529,7003:498,-38,9,0,0,0.575665 -26530,7003:497,-37,9,0,0,0.571895 -26531,7003:496,-36,9,0,0,0.571266 -26532,7003:495,-35,9,0,0,0.570385 -26533,7003:394,-34,9,0,0,0.567336 -26534,7003:393,-33,9,0,0,0.56514 -26535,7003:392,-32,9,0,0,0.563953 -26536,7003:391,-31,9,0,0,0.564434 -26537,7003:390,-30,9,0,0,0.563524 -26538,7002:499,-29,9,0,0,0.562943 -26539,7002:498,-28,9,0,0,0.561678 -26540,7002:497,-27,9,0,0,0.561603 -26541,7002:496,-26,9,0,0,0.562209 -26542,7002:495,-25,9,0,0,0.561653 -26543,7002:394,-24,9,0,0,0.560742 -26544,7002:393,-23,9,0,0,0.55816 -26545,7002:392,-22,9,0,0,0.555269 -26546,7002:391,-21,9,0,0,0.562993 -26547,7002:390,-20,9,0,0,0.567286 -26548,7001:499,-19,9,0,0,0.565822 -26549,7001:498,-18,9,0,0,0.564938 -26550,7001:497,-17,9,0,0,0.541785 -26551,1003:499,39,9,0,0,0.643838 -26552,1004:390,40,9,0,0,0.631735 -26553,1004:392,42,9,0,0,0.642305 -26554,1005:394,54,9,0,0,0.589232 -26555,1005:495,55,9,0,0,0.588236 -26556,1005:496,56,9,0,0,0.593625 -26557,1005:497,57,9,0,0,0.59184 -26558,1005:498,58,9,0,0,0.593502 -26559,1005:499,59,9,0,0,0.591666 -26560,1006:390,60,9,0,0,0.593031 -26561,1006:391,61,9,0,0,0.602763 -26562,1006:392,62,9,0,0,0.603451 -26563,1006:393,63,9,0,0,0.605417 -26564,1006:394,64,9,0,0,0.608774 -26565,1006:495,65,9,0,0,0.611267 -26566,1006:496,66,9,0,0,0.617231 -26567,1006:497,67,9,0,0,0.622871 -26568,1006:498,68,9,0,0,0.627278 -26569,1006:499,69,9,0,0,0.636169 -26570,1007:390,70,9,0,0,0.642565 -26571,1007:391,71,9,0,0,0.647435 -26572,1007:392,72,9,0,0,0.650197 -26573,1008:393,83,9,0,0,0.604188 -26574,1008:394,84,9,0,0,0.613803 -26575,1008:495,85,9,0,0,0.614314 -26576,1008:496,86,9,0,0,0.61905 -26577,1008:497,87,9,0,0,0.627421 -26578,1008:498,88,9,0,0,0.63424 -26579,1008:499,89,9,0,0,0.634622 -26580,1009:390,90,9,0,0,0.636145 -26581,1009:391,91,9,0,0,0.638473 -26582,1009:392,92,9,0,0,0.642542 -26583,1009:393,93,9,0,0,0.641195 -26584,1009:394,94,9,0,0,0.635503 -26585,1010:498,108,9,0,0,0.575288 -26586,1010:499,109,9,0,0,0.578448 -26587,1011:390,110,9,0,0,0.579149 -26588,1011:391,111,9,0,0,0.58749 -26589,1011:392,112,9,0,0,0.588883 -26590,1011:393,113,9,0,0,0.5834 -26591,1011:394,114,9,0,0,0.592782 -26592,1011:495,115,9,0,0,0.592088 -26593,1011:496,116,9,0,0,0.592609 -26594,1011:497,117,9,0,0,0.599462 -26595,1011:498,118,9,0,0,0.617935 -26596,1011:499,119,9,0,0,0.629868 -26597,1012:390,120,9,0,0,0.619002 -26598,1012:393,123,9,0,0,0.625787 -26599,1012:394,124,9,0,0,0.616284 -26600,1012:495,125,9,0,0,0.614241 -26601,1012:496,126,9,0,0,0.614022 -26602,1012:497,127,9,0,0,0.615458 -26603,1012:498,128,9,0,0,0.616381 -26604,1012:499,129,9,0,0,0.618056 -26605,1013:390,130,9,0,0,0.620817 -26606,1013:391,131,9,0,0,0.623619 -26607,1013:392,132,9,0,0,0.626797 -26608,1013:393,133,9,0,0,0.631782 -26609,1013:394,134,9,0,0,0.633382 -26610,1013:495,135,9,0,0,0.632284 -26611,1013:496,136,9,0,0,0.632308 -26612,1013:497,137,9,0,0,0.634408 -26613,1013:498,138,9,0,0,0.635217 -26614,1013:499,139,9,0,0,0.635551 -26615,1014:390,140,9,0,0,0.63517 -26616,1014:391,141,9,0,0,0.634479 -26617,1014:392,142,9,0,0,0.634503 -26618,1014:393,143,9,0,0,0.635027 -26619,1014:394,144,9,0,0,0.635479 -26620,1014:495,145,9,0,0,0.635337 -26621,1014:496,146,9,0,0,0.634288 -26622,1014:497,147,9,0,0,0.635146 -26623,1014:498,148,9,0,0,0.635384 -26624,1014:499,149,9,0,0,0.636074 -26625,1015:390,150,9,0,0,0.636502 -26626,1015:391,151,9,0,0,0.63605 -26627,1015:392,152,9,0,0,0.636336 -26628,1015:393,153,9,0,0,0.636764 -26629,1015:394,154,9,0,0,0.637595 -26630,1015:495,155,9,0,0,0.636645 -26631,1015:496,156,9,0,0,0.635432 -26632,1015:497,157,9,0,0,0.633859 -26633,1015:498,158,9,0,0,0.632714 -26634,1015:499,159,9,0,0,0.632762 -26635,1016:390,160,9,0,0,0.632117 -26636,1016:391,161,9,0,0,0.630634 -26637,1016:392,162,9,0,0,0.628526 -26638,1016:393,163,9,0,0,0.626412 -26639,1016:394,164,9,0,0,0.624993 -26640,1016:495,165,9,0,0,0.624968 -26641,1016:496,166,9,0,0,0.625233 -26642,1016:497,167,9,0,0,0.624391 -26643,1016:498,168,9,0,0,0.621953 -26644,1016:499,169,9,0,0,0.619946 -26645,1017:390,170,9,0,0,0.61762 -26646,1017:391,171,9,0,0,0.615288 -26647,1017:392,172,9,0,0,0.613973 -26648,1017:393,173,9,0,0,0.61317 -26649,1017:394,174,9,0,0,0.612658 -26650,1017:495,175,9,0,0,0.611974 -26651,1017:496,176,9,0,0,0.610779 -26652,1017:497,177,9,0,0,0.608333 -26653,1017:498,178,9,0,0,0.606594 -26654,1017:499,179,9,0,0,0.606374 -26655,1018:390,180,9,0,0,0.606839 -26656,7118:100,-180,10,0,0,0.602763 -26657,7117:209,-179,10,0,0,0.603008 -26658,7117:208,-178,10,0,0,0.601975 -26659,7117:207,-177,10,0,0,0.597956 -26660,7117:206,-176,10,0,0,0.600004 -26661,7117:205,-175,10,0,0,0.597561 -26662,7117:104,-174,10,0,0,0.596151 -26663,7117:103,-173,10,0,0,0.594419 -26664,7117:102,-172,10,0,0,0.595334 -26665,7117:101,-171,10,0,0,0.59432 -26666,7117:100,-170,10,0,0,0.59672 -26667,7116:209,-169,10,0,0,0.59761 -26668,7116:208,-168,10,0,0,0.595756 -26669,7116:207,-167,10,0,0,0.593997 -26670,7116:206,-166,10,0,0,0.591244 -26671,7116:205,-165,10,0,0,0.589057 -26672,7116:104,-164,10,0,0,0.588311 -26673,7116:103,-163,10,0,0,0.589057 -26674,7116:102,-162,10,0,0,0.588286 -26675,7116:101,-161,10,0,0,0.587689 -26676,7116:100,-160,10,0,0,0.589132 -26677,7115:209,-159,10,0,0,0.5902 -26678,7115:208,-158,10,0,0,0.590151 -26679,7115:207,-157,10,0,0,0.577445 -26680,7115:206,-156,10,0,0,0.568949 -26681,7115:205,-155,10,0,0,0.567992 -26682,7115:104,-154,10,0,0,0.570838 -26683,7115:103,-153,10,0,0,0.569176 -26684,7115:102,-152,10,0,0,0.56514 -26685,7115:101,-151,10,0,0,0.564282 -26686,7115:100,-150,10,0,0,0.560211 -26687,7114:209,-149,10,0,0,0.562741 -26688,7114:208,-148,10,0,0,0.559122 -26689,7114:207,-147,10,0,0,0.560033 -26690,7114:206,-146,10,0,0,0.560996 -26691,7114:205,-145,10,0,0,0.566176 -26692,7114:104,-144,10,0,0,0.56509 -26693,7114:103,-143,10,0,0,0.563828 -26694,7114:102,-142,10,0,0,0.549426 -26695,7114:101,-141,10,0,0,0.544666 -26696,7114:100,-140,10,0,0,0.54762 -26697,7113:209,-139,10,0,0,0.549629 -26698,7113:208,-138,10,0,0,0.539794 -26699,7113:207,-137,10,0,0,0.530491 -26700,7113:206,-136,10,0,0,0.532205 -26701,7113:205,-135,10,0,0,0.527803 -26702,7113:104,-134,10,0,0,0.526446 -26703,7113:103,-133,10,0,0,0.522602 -26704,7113:102,-132,10,0,0,0.517217 -26705,7113:101,-131,10,0,0,0.510133 -26706,7113:100,-130,10,0,0,0.509568 -26707,7112:209,-129,10,0,0,0.50926 -26708,7112:208,-128,10,0,0,0.511776 -26709,7112:207,-127,10,0,0,0.517859 -26710,7112:206,-126,10,0,0,0.520372 -26711,7112:205,-125,10,0,0,0.516165 -26712,7112:104,-124,10,0,0,0.510723 -26713,7112:103,-123,10,0,0,0.519243 -26714,7112:102,-122,10,0,0,0.53264 -26715,7112:101,-121,10,0,0,0.542601 -26716,7112:100,-120,10,0,0,0.546244 -26717,7111:209,-119,10,0,0,0.548204 -26718,7111:208,-118,10,0,0,0.542703 -26719,7111:207,-117,10,0,0,0.546117 -26720,7111:206,-116,10,0,0,0.547772 -26721,7111:205,-115,10,0,0,0.548434 -26722,7111:104,-114,10,0,0,0.557222 -26723,7111:103,-113,10,0,0,0.565267 -26724,7111:102,-112,10,0,0,0.573956 -26725,7111:101,-111,10,0,0,0.58375 -26726,7111:100,-110,10,0,0,0.596893 -26727,7110:209,-109,10,0,0,0.615944 -26728,7110:208,-108,10,0,0,0.629557 -26729,7110:207,-107,10,0,0,0.625378 -26730,7110:206,-106,10,0,0,0.622243 -26731,7110:205,-105,10,0,0,0.637428 -26732,7110:104,-104,10,0,0,0.648045 -26733,7109:104,-94,10,0,0,0.600127 -26734,7108:208,-88,10,0,0,0.611682 -26735,7108:207,-87,10,0,0,0.633931 -26736,7108:206,-86,10,0,0,0.63655 -26737,7108:205,-85,10,0,0,0.638615 -26738,7108:104,-84,10,0,0,0.639184 -26739,7108:103,-83,10,0,0,0.638235 -26740,7108:102,-82,10,0,0,0.638615 -26741,7108:101,-81,10,0,0,0.63871 -26742,7108:100,-80,10,0,0,0.638307 -26743,7107:209,-79,10,0,0,0.638781 -26744,7107:207,-77,10,0,0,0.634765 -26745,7107:206,-76,10,0,0,0.634884 -26746,7107:205,-75,10,0,0,0.638235 -26747,7107:100,-70,10,0,0,0.62831 -26748,7106:208,-68,10,0,0,0.631902 -26749,7106:205,-65,10,0,0,0.626653 -26750,7106:104,-64,10,0,0,0.626052 -26751,7106:103,-63,10,0,0,0.626461 -26752,7106:102,-62,10,0,0,0.623667 -26753,7106:101,-61,10,0,0,0.62304 -26754,7106:100,-60,10,0,0,0.62118 -26755,7105:209,-59,10,0,0,0.618493 -26756,7105:208,-58,10,0,0,0.617231 -26757,7105:207,-57,10,0,0,0.616867 -26758,7105:206,-56,10,0,0,0.616478 -26759,7105:205,-55,10,0,0,0.613023 -26760,7105:104,-54,10,0,0,0.611169 -26761,7105:103,-53,10,0,0,0.60963 -26762,7105:102,-52,10,0,0,0.607354 -26763,7105:101,-51,10,0,0,0.60468 -26764,7105:100,-50,10,0,0,0.603254 -26765,7104:209,-49,10,0,0,0.600793 -26766,7104:208,-48,10,0,0,0.597758 -26767,7104:207,-47,10,0,0,0.592584 -26768,7104:206,-46,10,0,0,0.590499 -26769,7104:205,-45,10,0,0,0.588585 -26770,7104:104,-44,10,0,0,0.586942 -26771,7104:103,-43,10,0,0,0.585745 -26772,7104:102,-42,10,0,0,0.583825 -26773,7104:101,-41,10,0,0,0.581401 -26774,7104:100,-40,10,0,0,0.578523 -26775,7103:209,-39,10,0,0,0.575388 -26776,7103:208,-38,10,0,0,0.574007 -26777,7103:207,-37,10,0,0,0.57192 -26778,7103:206,-36,10,0,0,0.568521 -26779,7103:205,-35,10,0,0,0.565797 -26780,7103:104,-34,10,0,0,0.563373 -26781,7103:103,-33,10,0,0,0.560691 -26782,7103:102,-32,10,0,0,0.558286 -26783,7103:101,-31,10,0,0,0.556207 -26784,7103:100,-30,10,0,0,0.555929 -26785,7102:209,-29,10,0,0,0.555649 -26786,7102:208,-28,10,0,0,0.553848 -26787,7102:207,-27,10,0,0,0.554051 -26788,7102:206,-26,10,0,0,0.552146 -26789,7102:205,-25,10,0,0,0.551486 -26790,7102:104,-24,10,0,0,0.549858 -26791,7102:103,-23,10,0,0,0.55024 -26792,7102:102,-22,10,0,0,0.547772 -26793,7102:101,-21,10,0,0,0.548561 -26794,7102:100,-20,10,0,0,0.542346 -26795,7101:209,-19,10,0,0,0.536858 -26796,7101:208,-18,10,0,0,0.549375 -26797,7101:207,-17,10,0,0,0.527906 -26798,1103:208,38,10,0,0,0.642542 -26799,1103:209,39,10,0,0,0.657684 -26800,1104:100,40,10,0,0,0.665047 -26801,1104:101,41,10,0,0,0.643932 -26802,1105:207,57,10,0,0,0.581401 -26803,1105:208,58,10,0,0,0.587788 -26804,1105:209,59,10,0,0,0.588236 -26805,1106:100,60,10,0,0,0.588833 -26806,1106:101,61,10,0,0,0.594988 -26807,1106:102,62,10,0,0,0.597536 -26808,1106:103,63,10,0,0,0.596473 -26809,1106:104,64,10,0,0,0.597536 -26810,1106:205,65,10,0,0,0.600621 -26811,1106:206,66,10,0,0,0.606374 -26812,1106:207,67,10,0,0,0.610827 -26813,1106:208,68,10,0,0,0.623981 -26814,1106:209,69,10,0,0,0.63424 -26815,1107:100,70,10,0,0,0.636764 -26816,1107:101,71,10,0,0,0.632977 -26817,1107:102,72,10,0,0,0.638497 -26818,1108:205,85,10,0,0,0.598968 -26819,1108:206,86,10,0,0,0.608872 -26820,1108:207,87,10,0,0,0.61728 -26821,1108:208,88,10,0,0,0.619946 -26822,1108:209,89,10,0,0,0.627133 -26823,1109:100,90,10,0,0,0.627782 -26824,1109:101,91,10,0,0,0.626244 -26825,1109:102,92,10,0,0,0.628694 -26826,1109:103,93,10,0,0,0.635479 -26827,1109:104,94,10,0,0,0.639657 -26828,1110:207,107,10,0,0,0.544029 -26829,1110:208,108,10,0,0,0.574735 -26830,1110:209,109,10,0,0,0.552374 -26831,1111:101,111,10,0,0,0.56461 -26832,1111:102,112,10,0,0,0.571417 -26833,1111:103,113,10,0,0,0.577044 -26834,1111:104,114,10,0,0,0.578548 -26835,1111:205,115,10,0,0,0.578673 -26836,1111:206,116,10,0,0,0.586942 -26837,1111:207,117,10,0,0,0.590574 -26838,1111:208,118,10,0,0,0.592535 -26839,1111:209,119,10,0,0,0.602665 -26840,1112:100,120,10,0,0,0.611047 -26841,1112:102,122,10,0,0,0.601261 -26842,1112:103,123,10,0,0,0.620285 -26843,1112:104,124,10,0,0,0.59318 -26844,1112:205,125,10,0,0,0.602025 -26845,1112:206,126,10,0,0,0.604606 -26846,1112:207,127,10,0,0,0.60296 -26847,1112:208,128,10,0,0,0.60291 -26848,1112:209,129,10,0,0,0.606766 -26849,1113:100,130,10,0,0,0.6087 -26850,1113:101,131,10,0,0,0.610754 -26851,1113:102,132,10,0,0,0.613364 -26852,1113:103,133,10,0,0,0.617959 -26853,1113:104,134,10,0,0,0.62316 -26854,1113:205,135,10,0,0,0.623112 -26855,1113:206,136,10,0,0,0.625353 -26856,1113:207,137,10,0,0,0.628045 -26857,1113:208,138,10,0,0,0.63018 -26858,1113:209,139,10,0,0,0.630491 -26859,1114:100,140,10,0,0,0.629868 -26860,1114:101,141,10,0,0,0.629628 -26861,1114:102,142,10,0,0,0.629077 -26862,1114:103,143,10,0,0,0.628694 -26863,1114:104,144,10,0,0,0.628934 -26864,1114:205,145,10,0,0,0.628694 -26865,1114:206,146,10,0,0,0.629101 -26866,1114:207,147,10,0,0,0.629101 -26867,1114:208,148,10,0,0,0.629197 -26868,1114:209,149,10,0,0,0.628958 -26869,1115:100,150,10,0,0,0.628166 -26870,1115:101,151,10,0,0,0.629844 -26871,1115:102,152,10,0,0,0.629461 -26872,1115:103,153,10,0,0,0.628958 -26873,1115:104,154,10,0,0,0.630418 -26874,1115:205,155,10,0,0,0.629125 -26875,1115:206,156,10,0,0,0.629341 -26876,1115:207,157,10,0,0,0.628669 -26877,1115:208,158,10,0,0,0.628262 -26878,1115:209,159,10,0,0,0.627421 -26879,1116:100,160,10,0,0,0.62622 -26880,1116:101,161,10,0,0,0.627278 -26881,1116:102,162,10,0,0,0.627566 -26882,1116:103,163,10,0,0,0.625811 -26883,1116:104,164,10,0,0,0.623498 -26884,1116:205,165,10,0,0,0.620939 -26885,1116:206,166,10,0,0,0.621108 -26886,1116:207,167,10,0,0,0.620454 -26887,1116:208,168,10,0,0,0.617523 -26888,1116:209,169,10,0,0,0.618686 -26889,1117:100,170,10,0,0,0.618348 -26890,1117:101,171,10,0,0,0.616892 -26891,1117:102,172,10,0,0,0.615433 -26892,1117:103,173,10,0,0,0.614996 -26893,1117:104,174,10,0,0,0.613242 -26894,1117:205,175,10,0,0,0.61134 -26895,1117:206,176,10,0,0,0.609435 -26896,1117:207,177,10,0,0,0.607844 -26897,1117:208,178,10,0,0,0.606643 -26898,1117:209,179,10,0,0,0.605613 -26899,1118:100,180,10,0,0,0.602763 -26900,7118:110,-180,11,0,0,0.594419 -26901,7117:219,-179,11,0,0,0.59625 -26902,7117:218,-178,11,0,0,0.594171 -26903,7117:217,-177,11,0,0,0.589927 -26904,7117:216,-176,11,0,0,0.590996 -26905,7117:215,-175,11,0,0,0.586019 -26906,7117:114,-174,11,0,0,0.5834 -26907,7117:113,-173,11,0,0,0.58075 -26908,7117:112,-172,11,0,0,0.577545 -26909,7117:111,-171,11,0,0,0.576166 -26910,7117:110,-170,11,0,0,0.580701 -26911,7116:219,-169,11,0,0,0.584798 -26912,7116:218,-168,11,0,0,0.584024 -26913,7116:217,-167,11,0,0,0.584748 -26914,7116:216,-166,11,0,0,0.583025 -26915,7116:215,-165,11,0,0,0.568572 -26916,7116:114,-164,11,0,0,0.565166 -26917,7116:113,-163,11,0,0,0.565898 -26918,7116:112,-162,11,0,0,0.572725 -26919,7116:111,-161,11,0,0,0.580901 -26920,7116:110,-160,11,0,0,0.581176 -26921,7115:219,-159,11,0,0,0.577796 -26922,7115:218,-158,11,0,0,0.577645 -26923,7115:217,-157,11,0,0,0.579399 -26924,7115:216,-156,11,0,0,0.565469 -26925,7115:215,-155,11,0,0,0.558742 -26926,7115:114,-154,11,0,0,0.561426 -26927,7115:113,-153,11,0,0,0.55783 -26928,7115:112,-152,11,0,0,0.549121 -26929,7115:111,-151,11,0,0,0.545251 -26930,7115:110,-150,11,0,0,0.543391 -26931,7114:219,-149,11,0,0,0.54028 -26932,7114:218,-148,11,0,0,0.5413 -26933,7114:217,-147,11,0,0,0.538416 -26934,7114:216,-146,11,0,0,0.541249 -26935,7114:215,-145,11,0,0,0.537547 -26936,7114:114,-144,11,0,0,0.534072 -26937,7114:113,-143,11,0,0,0.531566 -26938,7114:112,-142,11,0,0,0.525268 -26939,7114:111,-141,11,0,0,0.525242 -26940,7114:110,-140,11,0,0,0.522474 -26941,7113:219,-139,11,0,0,0.517242 -26942,7113:218,-138,11,0,0,0.515318 -26943,7113:217,-137,11,0,0,0.512828 -26944,7113:216,-136,11,0,0,0.515318 -26945,7113:215,-135,11,0,0,0.508567 -26946,7113:114,-134,11,0,0,0.498499 -26947,7113:113,-133,11,0,0,0.503713 -26948,7113:112,-132,11,0,0,0.496572 -26949,7113:111,-131,11,0,0,0.491333 -26950,7113:110,-130,11,0,0,0.492617 -26951,7112:219,-129,11,0,0,0.487816 -26952,7112:218,-128,11,0,0,0.482298 -26953,7112:217,-127,11,0,0,0.483582 -26954,7112:216,-126,11,0,0,0.484479 -26955,7112:215,-125,11,0,0,0.47999 -26956,7112:114,-124,11,0,0,0.481734 -26957,7112:113,-123,11,0,0,0.480836 -26958,7112:112,-122,11,0,0,0.482915 -26959,7112:111,-121,11,0,0,0.489074 -26960,7112:110,-120,11,0,0,0.501247 -26961,7111:219,-119,11,0,0,0.508798 -26962,7111:218,-118,11,0,0,0.517935 -26963,7111:217,-117,11,0,0,0.521423 -26964,7111:216,-116,11,0,0,0.516832 -26965,7111:215,-115,11,0,0,0.521833 -26966,7111:114,-114,11,0,0,0.533791 -26967,7111:113,-113,11,0,0,0.541708 -26968,7111:112,-112,11,0,0,0.550799 -26969,7111:111,-111,11,0,0,0.557019 -26970,7111:110,-110,11,0,0,0.563296 -26971,7110:219,-109,11,0,0,0.57285 -26972,7110:218,-108,11,0,0,0.596275 -26973,7110:217,-107,11,0,0,0.605932 -26974,7110:216,-106,11,0,0,0.623281 -26975,7109:216,-96,11,0,0,0.578022 -26976,7109:215,-95,11,0,0,0.578147 -26977,7109:114,-94,11,0,0,0.584349 -26978,7109:113,-93,11,0,0,0.586917 -26979,7109:112,-92,11,0,0,0.594419 -26980,7109:111,-91,11,0,0,0.588684 -26981,7108:217,-87,11,0,0,0.632762 -26982,7108:216,-86,11,0,0,0.633048 -26983,7108:215,-85,11,0,0,0.625498 -26984,7108:114,-84,11,0,0,0.620817 -26985,7108:113,-83,11,0,0,0.616284 -26986,7108:112,-82,11,0,0,0.619075 -26987,7108:111,-81,11,0,0,0.619317 -26988,7108:110,-80,11,0,0,0.624222 -26989,7107:219,-79,11,0,0,0.626052 -26990,7107:218,-78,11,0,0,0.620213 -26991,7107:114,-74,11,0,0,0.610119 -26992,7107:113,-73,11,0,0,0.621639 -26993,7107:112,-72,11,0,0,0.61808 -26994,7107:111,-71,11,0,0,0.612902 -26995,7107:110,-70,11,0,0,0.616042 -26996,7106:219,-69,11,0,0,0.619971 -26997,7106:218,-68,11,0,0,0.623595 -26998,7106:217,-67,11,0,0,0.625257 -26999,7106:216,-66,11,0,0,0.623595 -27000,7106:215,-65,11,0,0,0.623258 -27001,7106:114,-64,11,0,0,0.623764 -27002,7106:113,-63,11,0,0,0.621785 -27003,7106:112,-62,11,0,0,0.616478 -27004,7106:111,-61,11,0,0,0.61762 -27005,7106:110,-60,11,0,0,0.615385 -27006,7105:219,-59,11,0,0,0.613608 -27007,7105:218,-58,11,0,0,0.612902 -27008,7105:217,-57,11,0,0,0.610632 -27009,7105:216,-56,11,0,0,0.608407 -27010,7105:215,-55,11,0,0,0.607549 -27011,7105:114,-54,11,0,0,0.60777 -27012,7105:113,-53,11,0,0,0.60409 -27013,7105:112,-52,11,0,0,0.599856 -27014,7105:111,-51,11,0,0,0.596126 -27015,7105:110,-50,11,0,0,0.592957 -27016,7104:219,-49,11,0,0,0.590797 -27017,7104:218,-48,11,0,0,0.59184 -27018,7104:217,-47,11,0,0,0.590027 -27019,7104:216,-46,11,0,0,0.588585 -27020,7104:215,-45,11,0,0,0.584499 -27021,7104:114,-44,11,0,0,0.579975 -27022,7104:113,-43,11,0,0,0.578422 -27023,7104:112,-42,11,0,0,0.575514 -27024,7104:111,-41,11,0,0,0.576066 -27025,7104:110,-40,11,0,0,0.575012 -27026,7103:219,-39,11,0,0,0.57104 -27027,7103:218,-38,11,0,0,0.568446 -27028,7103:217,-37,11,0,0,0.568017 -27029,7103:216,-36,11,0,0,0.565595 -27030,7103:215,-35,11,0,0,0.56269 -27031,7103:114,-34,11,0,0,0.557855 -27032,7103:113,-33,11,0,0,0.554178 -27033,7103:112,-32,11,0,0,0.553162 -27034,7103:111,-31,11,0,0,0.55085 -27035,7103:110,-30,11,0,0,0.550189 -27036,7102:219,-29,11,0,0,0.546932 -27037,7102:218,-28,11,0,0,0.545506 -27038,7102:217,-27,11,0,0,0.544079 -27039,7102:216,-26,11,0,0,0.541377 -27040,7102:215,-25,11,0,0,0.537956 -27041,7102:114,-24,11,0,0,0.535784 -27042,7102:113,-23,11,0,0,0.532231 -27043,7102:112,-22,11,0,0,0.52852 -27044,7102:111,-21,11,0,0,0.522372 -27045,7102:110,-20,11,0,0,0.50754 -27046,7101:219,-19,11,0,0,0.517191 -27047,7101:218,-18,11,0,0,0.50659 -27048,7101:217,-17,11,0,0,0.49873 -27049,1103:217,37,11,0,0,0.64077 -27050,1103:218,38,11,0,0,0.650992 -27051,1103:219,39,11,0,0,0.65597 -27052,1104:110,40,11,0,0,0.650968 -27053,1105:218,58,11,0,0,0.572625 -27054,1105:219,59,11,0,0,0.572775 -27055,1106:110,60,11,0,0,0.588286 -27056,1106:111,61,11,0,0,0.587215 -27057,1106:112,62,11,0,0,0.592038 -27058,1106:113,63,11,0,0,0.589803 -27059,1106:114,64,11,0,0,0.591964 -27060,1106:215,65,11,0,0,0.587365 -27061,1106:216,66,11,0,0,0.592807 -27062,1106:217,67,11,0,0,0.599609 -27063,1106:218,68,11,0,0,0.619631 -27064,1106:219,69,11,0,0,0.619801 -27065,1107:110,70,11,0,0,0.61779 -27066,1107:111,71,11,0,0,0.625474 -27067,1107:112,72,11,0,0,0.630107 -27068,1108:217,87,11,0,0,0.597857 -27069,1108:218,88,11,0,0,0.598449 -27070,1108:219,89,11,0,0,0.611292 -27071,1109:110,90,11,0,0,0.621518 -27072,1109:111,91,11,0,0,0.631711 -27073,1109:112,92,11,0,0,0.639918 -27074,1109:113,93,11,0,0,0.633907 -27075,1110:217,107,11,0,0,0.519321 -27076,1110:218,108,11,0,0,0.535504 -27077,1110:219,109,11,0,0,0.526805 -27078,1111:110,110,11,0,0,0.501863 -27079,1111:111,111,11,0,0,0.495879 -27080,1111:112,112,11,0,0,0.55499 -27081,1111:113,113,11,0,0,0.558995 -27082,1111:114,114,11,0,0,0.571719 -27083,1111:215,115,11,0,0,0.576919 -27084,1111:216,116,11,0,0,0.584099 -27085,1111:217,117,11,0,0,0.591046 -27086,1111:218,118,11,0,0,0.594988 -27087,1111:219,119,11,0,0,0.600177 -27088,1112:110,120,11,0,0,0.604238 -27089,1112:111,121,11,0,0,0.60136 -27090,1112:112,122,11,0,0,0.58365 -27091,1112:113,123,11,0,0,0.581301 -27092,1112:114,124,11,0,0,0.579074 -27093,1112:215,125,11,0,0,0.577997 -27094,1112:216,126,11,0,0,0.576392 -27095,1112:217,127,11,0,0,0.580201 -27096,1112:218,128,11,0,0,0.584898 -27097,1112:219,129,11,0,0,0.586892 -27098,1113:110,130,11,0,0,0.588659 -27099,1113:111,131,11,0,0,0.596077 -27100,1113:112,132,11,0,0,0.597017 -27101,1113:113,133,11,0,0,0.598623 -27102,1113:114,134,11,0,0,0.597288 -27103,1113:215,135,11,0,0,0.606912 -27104,1113:216,136,11,0,0,0.607574 -27105,1113:217,137,11,0,0,0.607893 -27106,1113:218,138,11,0,0,0.616673 -27107,1113:219,139,11,0,0,0.622702 -27108,1114:110,140,11,0,0,0.621639 -27109,1114:111,141,11,0,0,0.621785 -27110,1114:112,142,11,0,0,0.621639 -27111,1114:113,143,11,0,0,0.621591 -27112,1114:114,144,11,0,0,0.625233 -27113,1114:215,145,11,0,0,0.623547 -27114,1114:216,146,11,0,0,0.621132 -27115,1114:217,147,11,0,0,0.624125 -27116,1114:218,148,11,0,0,0.624294 -27117,1114:219,149,11,0,0,0.624318 -27118,1115:110,150,11,0,0,0.624535 -27119,1115:111,151,11,0,0,0.62263 -27120,1115:112,152,11,0,0,0.622171 -27121,1115:113,153,11,0,0,0.622099 -27122,1115:114,154,11,0,0,0.622099 -27123,1115:215,155,11,0,0,0.62386 -27124,1115:216,156,11,0,0,0.623258 -27125,1115:217,157,11,0,0,0.622002 -27126,1115:218,158,11,0,0,0.620696 -27127,1115:219,159,11,0,0,0.619608 -27128,1116:110,160,11,0,0,0.618105 -27129,1116:111,161,11,0,0,0.617377 -27130,1116:112,162,11,0,0,0.618251 -27131,1116:113,163,11,0,0,0.618953 -27132,1116:114,164,11,0,0,0.617377 -27133,1116:215,165,11,0,0,0.611657 -27134,1116:216,166,11,0,0,0.611121 -27135,1116:217,167,11,0,0,0.613778 -27136,1116:218,168,11,0,0,0.613828 -27137,1116:219,169,11,0,0,0.611999 -27138,1117:110,170,11,0,0,0.610192 -27139,1117:111,171,11,0,0,0.609117 -27140,1117:112,172,11,0,0,0.6063 -27141,1117:113,173,11,0,0,0.605515 -27142,1117:114,174,11,0,0,0.602049 -27143,1117:215,175,11,0,0,0.601705 -27144,1117:216,176,11,0,0,0.600201 -27145,1117:217,177,11,0,0,0.594518 -27146,1117:218,178,11,0,0,0.597437 -27147,1117:219,179,11,0,0,0.598128 -27148,1118:110,180,11,0,0,0.594419 -27149,7118:120,-180,12,0,0,0.583225 -27150,7117:229,-179,12,0,0,0.584548 -27151,7117:228,-178,12,0,0,0.582526 -27152,7117:227,-177,12,0,0,0.579975 -27153,7117:226,-176,12,0,0,0.579023 -27154,7117:225,-175,12,0,0,0.576893 -27155,7117:124,-174,12,0,0,0.575966 -27156,7117:123,-173,12,0,0,0.573605 -27157,7117:122,-172,12,0,0,0.571014 -27158,7117:121,-171,12,0,0,0.568017 -27159,7117:120,-170,12,0,0,0.563499 -27160,7116:229,-169,12,0,0,0.561704 -27161,7116:228,-168,12,0,0,0.560641 -27162,7116:227,-167,12,0,0,0.571518 -27163,7116:226,-166,12,0,0,0.572348 -27164,7116:225,-165,12,0,0,0.559071 -27165,7116:124,-164,12,0,0,0.558843 -27166,7116:123,-163,12,0,0,0.565166 -27167,7116:122,-162,12,0,0,0.571493 -27168,7116:121,-161,12,0,0,0.569051 -27169,7116:120,-160,12,0,0,0.558514 -27170,7115:229,-159,12,0,0,0.560388 -27171,7115:227,-157,12,0,0,0.554457 -27172,7115:226,-156,12,0,0,0.554762 -27173,7115:225,-155,12,0,0,0.555853 -27174,7115:124,-154,12,0,0,0.552374 -27175,7115:123,-153,12,0,0,0.547136 -27176,7115:122,-152,12,0,0,0.54492 -27177,7115:121,-151,12,0,0,0.539335 -27178,7115:120,-150,12,0,0,0.537394 -27179,7114:229,-149,12,0,0,0.532027 -27180,7114:228,-148,12,0,0,0.526855 -27181,7114:227,-147,12,0,0,0.524627 -27182,7114:226,-146,12,0,0,0.520603 -27183,7114:225,-145,12,0,0,0.514318 -27184,7114:124,-144,12,0,0,0.513804 -27185,7114:123,-143,12,0,0,0.512084 -27186,7114:122,-142,12,0,0,0.511596 -27187,7114:121,-141,12,0,0,0.505177 -27188,7114:120,-140,12,0,0,0.504535 -27189,7113:229,-139,12,0,0,0.495571 -27190,7113:228,-138,12,0,0,0.495108 -27191,7113:227,-137,12,0,0,0.486481 -27192,7113:226,-136,12,0,0,0.49349 -27193,7113:225,-135,12,0,0,0.495879 -27194,7113:124,-134,12,0,0,0.489895 -27195,7113:123,-133,12,0,0,0.477016 -27196,7113:122,-132,12,0,0,0.471226 -27197,7113:121,-131,12,0,0,0.47453 -27198,7113:120,-130,12,0,0,0.471944 -27199,7112:229,-129,12,0,0,0.467593 -27200,7112:228,-128,12,0,0,0.46703 -27201,7112:227,-127,12,0,0,0.462302 -27203,7112:225,-125,12,0,0,0.461945 -27204,7112:124,-124,12,0,0,0.460745 -27205,7112:123,-123,12,0,0,0.459162 -27206,7112:122,-122,12,0,0,0.461587 -27207,7112:121,-121,12,0,0,0.460872 -27208,7112:120,-120,12,0,0,0.465828 -27209,7111:229,-119,12,0,0,0.4679 -27210,7111:228,-118,12,0,0,0.474812 -27211,7111:227,-117,12,0,0,0.479092 -27212,7111:226,-116,12,0,0,0.489665 -27213,7111:225,-115,12,0,0,0.501273 -27214,7111:124,-114,12,0,0,0.517397 -27215,7111:123,-113,12,0,0,0.528443 -27216,7111:122,-112,12,0,0,0.528111 -27217,7111:121,-111,12,0,0,0.520372 -27218,7111:120,-110,12,0,0,0.536781 -27219,7110:229,-109,12,0,0,0.58395 -27220,7110:228,-108,12,0,0,0.586319 -27221,7110:227,-107,12,0,0,0.608113 -27222,7110:226,-106,12,0,0,0.60799 -27223,7109:227,-97,12,0,0,0.576191 -27224,7109:226,-96,12,0,0,0.579149 -27225,7109:225,-95,12,0,0,0.582226 -27226,7109:124,-94,12,0,0,0.584898 -27227,7109:123,-93,12,0,0,0.583799 -27228,7109:122,-92,12,0,0,0.59189 -27229,7109:121,-91,12,0,0,0.585247 -27230,7109:120,-90,12,0,0,0.580376 -27231,7108:229,-89,12,0,0,0.5836 -27232,7108:226,-86,12,0,0,0.631782 -27233,7108:225,-85,12,0,0,0.613608 -27234,7108:124,-84,12,0,0,0.611145 -27235,7108:122,-82,12,0,0,0.612755 -27236,7108:121,-81,12,0,0,0.613754 -27237,7108:120,-80,12,0,0,0.615895 -27238,7107:229,-79,12,0,0,0.592733 -27239,7107:226,-76,12,0,0,0.610803 -27240,7107:225,-75,12,0,0,0.606079 -27241,7107:124,-74,12,0,0,0.612585 -27242,7107:123,-73,12,0,0,0.612975 -27243,7107:122,-72,12,0,0,0.604606 -27244,7107:121,-71,12,0,0,0.606079 -27245,7107:120,-70,12,0,0,0.612194 -27246,7106:229,-69,12,0,0,0.612682 -27247,7106:228,-68,12,0,0,0.613194 -27248,7106:227,-67,12,0,0,0.61745 -27249,7106:226,-66,12,0,0,0.618274 -27250,7106:225,-65,12,0,0,0.614582 -27251,7106:124,-64,12,0,0,0.614947 -27252,7106:123,-63,12,0,0,0.615385 -27253,7106:122,-62,12,0,0,0.613267 -27254,7106:121,-61,12,0,0,0.613097 -27255,7106:120,-60,12,0,0,0.613511 -27256,7105:229,-59,12,0,0,0.611047 -27257,7105:228,-58,12,0,0,0.607672 -27258,7105:227,-57,12,0,0,0.606962 -27259,7105:226,-56,12,0,0,0.604434 -27260,7105:225,-55,12,0,0,0.60232 -27261,7105:124,-54,12,0,0,0.600744 -27262,7105:123,-53,12,0,0,0.59882 -27263,7105:122,-52,12,0,0,0.596597 -27264,7105:121,-51,12,0,0,0.59583 -27265,7105:120,-50,12,0,0,0.593204 -27266,7104:229,-49,12,0,0,0.588012 -27267,7104:228,-48,12,0,0,0.585646 -27268,7104:227,-47,12,0,0,0.58572 -27269,7104:226,-46,12,0,0,0.583725 -27270,7104:225,-45,12,0,0,0.580125 -27271,7104:124,-44,12,0,0,0.575765 -27272,7104:123,-43,12,0,0,0.575765 -27273,7104:122,-42,12,0,0,0.572046 -27274,7104:121,-41,12,0,0,0.570461 -27275,7104:120,-40,12,0,0,0.568572 -27276,7103:229,-39,12,0,0,0.564485 -27277,7103:228,-38,12,0,0,0.563296 -27278,7103:227,-37,12,0,0,0.562209 -27279,7103:226,-36,12,0,0,0.560515 -27280,7103:225,-35,12,0,0,0.558261 -27281,7103:124,-34,12,0,0,0.558236 -27282,7103:123,-33,12,0,0,0.554482 -27283,7103:122,-32,12,0,0,0.549909 -27284,7103:121,-31,12,0,0,0.546779 -27285,7103:120,-30,12,0,0,0.543748 -27286,7102:229,-29,12,0,0,0.541708 -27287,7102:228,-28,12,0,0,0.539948 -27288,7102:227,-27,12,0,0,0.539156 -27289,7102:226,-26,12,0,0,0.536986 -27290,7102:225,-25,12,0,0,0.534456 -27291,7102:124,-24,12,0,0,0.531259 -27292,7102:123,-23,12,0,0,0.527214 -27293,7102:122,-22,12,0,0,0.522167 -27294,7102:121,-21,12,0,0,0.517551 -27295,7102:120,-20,12,0,0,0.505691 -27296,7101:229,-19,12,0,0,0.500066 -27297,7101:228,-18,12,0,0,0.487739 -27298,1103:227,37,12,0,0,0.632427 -27299,1103:228,38,12,0,0,0.647271 -27300,1106:120,60,12,0,0,0.57985 -27301,1106:121,61,12,0,0,0.58724 -27302,1106:122,62,12,0,0,0.584548 -27303,1106:123,63,12,0,0,0.586144 -27304,1106:124,64,12,0,0,0.579674 -27305,1106:225,65,12,0,0,0.58065 -27306,1106:226,66,12,0,0,0.588808 -27307,1106:227,67,12,0,0,0.603353 -27308,1106:228,68,12,0,0,0.609508 -27309,1106:229,69,12,0,0,0.61256 -27310,1107:122,72,12,0,0,0.617911 -28933,7214:104,-144,20,0,0,0.41528 -27311,1108:228,88,12,0,0,0.582651 -27312,1108:229,89,12,0,0,0.585297 -27313,1109:120,90,12,0,0,0.585771 -27314,1109:121,91,12,0,0,0.573982 -27315,1109:122,92,12,0,0,0.606324 -27316,1110:229,109,12,0,0,0.493105 -27317,1111:120,110,12,0,0,0.47699 -27318,1111:122,112,12,0,0,0.486943 -27319,1111:123,113,12,0,0,0.506924 -27320,1111:124,114,12,0,0,0.524114 -27321,1111:225,115,12,0,0,0.542626 -27322,1111:226,116,12,0,0,0.567084 -27323,1111:227,117,12,0,0,0.575062 -27324,1111:228,118,12,0,0,0.583999 -27325,1111:229,119,12,0,0,0.576417 -27326,1112:120,120,12,0,0,0.572926 -27327,1112:121,121,12,0,0,0.569655 -27328,1112:122,122,12,0,0,0.561375 -27329,1112:123,123,12,0,0,0.556638 -27330,1112:124,124,12,0,0,0.56231 -27331,1112:225,125,12,0,0,0.560135 -27332,1112:226,126,12,0,0,0.5594 -27333,1112:227,127,12,0,0,0.561755 -27334,1112:228,128,12,0,0,0.56958 -27335,1112:229,129,12,0,0,0.576442 -27336,1113:120,130,12,0,0,0.577044 -27337,1113:121,131,12,0,0,0.575639 -27338,1113:122,132,12,0,0,0.580926 -27339,1113:123,133,12,0,0,0.587291 -27340,1113:124,134,12,0,0,0.586618 -27341,1113:225,135,12,0,0,0.593353 -27342,1113:226,136,12,0,0,0.599609 -27343,1113:227,137,12,0,0,0.608799 -27344,1113:228,138,12,0,0,0.60941 -27345,1113:229,139,12,0,0,0.60657 -27346,1114:120,140,12,0,0,0.61373 -27347,1114:121,141,12,0,0,0.611633 -27348,1114:122,142,12,0,0,0.613535 -27349,1114:123,143,12,0,0,0.610827 -27350,1114:124,144,12,0,0,0.612926 -27351,1114:225,145,12,0,0,0.617134 -27352,1114:226,146,12,0,0,0.615798 -27353,1114:227,147,12,0,0,0.613973 -27354,1114:228,148,12,0,0,0.616211 -27355,1114:229,149,12,0,0,0.618032 -27356,1115:120,150,12,0,0,0.619801 -27357,1115:121,151,12,0,0,0.617596 -27358,1115:122,152,12,0,0,0.617887 -27359,1115:123,153,12,0,0,0.616139 -27360,1115:124,154,12,0,0,0.61728 -27361,1115:225,155,12,0,0,0.61626 -27362,1115:226,156,12,0,0,0.615215 -27363,1115:227,157,12,0,0,0.615482 -27364,1115:228,158,12,0,0,0.613584 -27365,1115:229,159,12,0,0,0.613998 -27366,1116:120,160,12,0,0,0.613437 -27367,1116:121,161,12,0,0,0.611219 -27368,1116:122,162,12,0,0,0.609826 -27369,1116:123,163,12,0,0,0.610437 -27370,1116:124,164,12,0,0,0.610999 -27371,1116:225,165,12,0,0,0.606496 -27372,1116:226,166,12,0,0,0.607182 -27373,1116:227,167,12,0,0,0.606472 -27374,1116:228,168,12,0,0,0.607133 -27375,1116:229,169,12,0,0,0.606447 -27376,1117:120,170,12,0,0,0.600103 -27377,1117:121,171,12,0,0,0.596126 -27378,1117:122,172,12,0,0,0.598746 -27379,1117:123,173,12,0,0,0.598968 -27380,1117:124,174,12,0,0,0.597956 -27381,1117:225,175,12,0,0,0.595087 -27382,1117:226,176,12,0,0,0.589952 -27383,1117:227,177,12,0,0,0.584573 -27384,1117:228,178,12,0,0,0.582501 -27385,1117:229,179,12,0,0,0.582876 -27386,1118:120,180,12,0,0,0.583225 -27387,7118:130,-180,13,0,0,0.576392 -27388,7117:239,-179,13,0,0,0.573052 -27389,7117:238,-178,13,0,0,0.571467 -27390,7117:237,-177,13,0,0,0.569428 -27391,7117:236,-176,13,0,0,0.568496 -27392,7117:235,-175,13,0,0,0.568521 -27393,7117:134,-174,13,0,0,0.56456 -27394,7117:133,-173,13,0,0,0.563625 -27395,7117:132,-172,13,0,0,0.561755 -27396,7117:131,-171,13,0,0,0.559805 -27397,7117:130,-170,13,0,0,0.558666 -27398,7116:239,-169,13,0,0,0.550901 -27399,7116:238,-168,13,0,0,0.552756 -27400,7116:237,-167,13,0,0,0.560009 -27401,7116:236,-166,13,0,0,0.552374 -27402,7116:235,-165,13,0,0,0.545659 -27403,7116:134,-164,13,0,0,0.544869 -27404,7116:133,-163,13,0,0,0.550672 -27405,7116:132,-162,13,0,0,0.548307 -27406,7116:131,-161,13,0,0,0.548968 -27407,7116:130,-160,13,0,0,0.548332 -27408,7115:239,-159,13,0,0,0.545022 -27409,7115:238,-158,13,0,0,0.547339 -27410,7115:237,-157,13,0,0,0.547798 -27411,7115:236,-156,13,0,0,0.54548 -27412,7115:235,-155,13,0,0,0.541912 -27413,7115:134,-154,13,0,0,0.540406 -27414,7115:133,-153,13,0,0,0.536449 -27415,7115:132,-152,13,0,0,0.532001 -27416,7115:131,-151,13,0,0,0.527342 -27417,7115:130,-150,13,0,0,0.526548 -27418,7114:239,-149,13,0,0,0.525165 -27419,7114:238,-148,13,0,0,0.521295 -27420,7114:237,-147,13,0,0,0.516165 -27421,7114:236,-146,13,0,0,0.512084 -27422,7114:235,-145,13,0,0,0.507411 -27423,7114:134,-144,13,0,0,0.502891 -27424,7114:133,-143,13,0,0,0.499809 -27425,7114:132,-142,13,0,0,0.49498 -27426,7114:131,-141,13,0,0,0.489665 -27427,7114:130,-140,13,0,0,0.491436 -27428,7113:239,-139,13,0,0,0.484428 -27429,7113:238,-138,13,0,0,0.478836 -27430,7113:237,-137,13,0,0,0.469 -27431,7113:236,-136,13,0,0,0.468181 -27432,7113:235,-135,13,0,0,0.464295 -27433,7113:134,-134,13,0,0,0.466493 -27434,7113:133,-133,13,0,0,0.456306 -27435,7113:132,-132,13,0,0,0.454955 -27436,7113:131,-131,13,0,0,0.450577 -27437,7113:130,-130,13,0,0,0.445597 -27438,7112:239,-129,13,0,0,0.450017 -27439,7112:238,-128,13,0,0,0.44801 -27440,7112:237,-127,13,0,0,0.444176 -27441,7112:236,-126,13,0,0,0.447679 -27442,7112:235,-125,13,0,0,0.448162 -27443,7112:134,-124,13,0,0,0.448568 -27444,7112:133,-123,13,0,0,0.446892 -27445,7112:132,-122,13,0,0,0.446181 -27446,7112:131,-121,13,0,0,0.443187 -27447,7112:130,-120,13,0,0,0.444709 -27448,7111:239,-119,13,0,0,0.447247 -27449,7111:238,-118,13,0,0,0.458014 -27450,7111:237,-117,13,0,0,0.457708 -27451,7111:236,-116,13,0,0,0.463656 -27452,7111:235,-115,13,0,0,0.476401 -27453,7111:134,-114,13,0,0,0.485557 -27454,7111:133,-113,13,0,0,0.489818 -27455,7111:132,-112,13,0,0,0.504253 -27456,7111:131,-111,13,0,0,0.542396 -27457,7111:130,-110,13,0,0,0.571895 -27458,7110:239,-109,13,0,0,0.568395 -27459,7110:238,-108,13,0,0,0.581226 -27460,7110:237,-107,13,0,0,0.592832 -27461,7109:237,-97,13,0,0,0.571995 -27462,7109:236,-96,13,0,0,0.573932 -27463,7109:235,-95,13,0,0,0.576191 -27464,7109:134,-94,13,0,0,0.580401 -27465,7109:133,-93,13,0,0,0.581026 -27466,7109:132,-92,13,0,0,0.580576 -27467,7109:131,-91,13,0,0,0.57955 -27468,7109:130,-90,13,0,0,0.578397 -27469,7108:239,-89,13,0,0,0.581826 -27470,7108:238,-88,13,0,0,0.593502 -27471,7108:237,-87,13,0,0,0.622967 -27472,7108:236,-86,13,0,0,0.61502 -27473,7108:235,-85,13,0,0,0.607844 -27474,7108:134,-84,13,0,0,0.607354 -27475,7107:239,-79,13,0,0,0.602467 -27476,7107:238,-78,13,0,0,0.56779 -27477,7107:237,-77,13,0,0,0.569403 -27478,7107:236,-76,13,0,0,0.586019 -27479,7107:235,-75,13,0,0,0.596843 -27480,7107:134,-74,13,0,0,0.595756 -27481,7107:133,-73,13,0,0,0.598425 -27482,7107:132,-72,13,0,0,0.600793 -27483,7107:131,-71,13,0,0,0.603304 -27484,7107:130,-70,13,0,0,0.606201 -27485,7106:239,-69,13,0,0,0.604533 -27486,7106:238,-68,13,0,0,0.600621 -27487,7106:237,-67,13,0,0,0.601852 -27488,7106:236,-66,13,0,0,0.601803 -27489,7106:235,-65,13,0,0,0.60025 -27490,7106:134,-64,13,0,0,0.601261 -27491,7106:133,-63,13,0,0,0.602049 -27492,7106:132,-62,13,0,0,0.605343 -27493,7106:131,-61,13,0,0,0.606594 -27494,7106:130,-60,13,0,0,0.603525 -27495,7105:239,-59,13,0,0,0.600768 -27496,7105:238,-58,13,0,0,0.603378 -27497,7105:237,-57,13,0,0,0.605171 -27498,7105:236,-56,13,0,0,0.603083 -27499,7105:235,-55,13,0,0,0.598277 -27500,7105:134,-54,13,0,0,0.599042 -27501,7105:133,-53,13,0,0,0.595434 -27502,7105:132,-52,13,0,0,0.591616 -27503,7105:131,-51,13,0,0,0.590549 -27504,7105:130,-50,13,0,0,0.584324 -27505,7104:239,-49,13,0,0,0.582526 -27506,7104:238,-48,13,0,0,0.581126 -27507,7104:237,-47,13,0,0,0.57717 -27508,7104:236,-46,13,0,0,0.575488 -27509,7104:235,-45,13,0,0,0.573781 -27510,7104:134,-44,13,0,0,0.572373 -27511,7104:133,-43,13,0,0,0.571116 -27512,7104:132,-42,13,0,0,0.566529 -27513,7104:131,-41,13,0,0,0.563322 -27514,7104:130,-40,13,0,0,0.561349 -27515,7103:239,-39,13,0,0,0.557932 -27516,7103:238,-38,13,0,0,0.554914 -27517,7103:237,-37,13,0,0,0.551078 -27518,7103:236,-36,13,0,0,0.549833 -27519,7103:235,-35,13,0,0,0.550519 -27520,7103:134,-34,13,0,0,0.549732 -27521,7103:133,-33,13,0,0,0.544512 -27522,7103:132,-32,13,0,0,0.539641 -27523,7103:131,-31,13,0,0,0.539514 -27524,7103:130,-30,13,0,0,0.538543 -27525,7102:239,-29,13,0,0,0.536244 -27526,7102:238,-28,13,0,0,0.534277 -27527,7102:237,-27,13,0,0,0.533894 -27528,7102:236,-26,13,0,0,0.532717 -27529,7102:235,-25,13,0,0,0.531361 -27530,7102:134,-24,13,0,0,0.528315 -27531,7102:133,-23,13,0,0,0.525754 -27532,7102:132,-22,13,0,0,0.519474 -27533,7102:131,-21,13,0,0,0.508772 -27534,7102:130,-20,13,0,0,0.505691 -27535,7101:239,-19,13,0,0,0.485198 -27536,7101:238,-18,13,0,0,0.474838 -27537,7101:237,-17,13,0,0,0.457581 -27538,1103:236,36,13,0,0,0.588311 -27539,1103:237,37,13,0,0,0.622267 -27540,1103:238,38,13,0,0,0.629197 -27541,1106:130,60,13,0,0,0.570864 -27542,1106:131,61,13,0,0,0.57965 -27543,1106:132,62,13,0,0,0.576091 -27544,1106:133,63,13,0,0,0.575363 -27545,1106:134,64,13,0,0,0.576417 -27546,1106:235,65,13,0,0,0.579074 -27547,1106:236,66,13,0,0,0.590499 -27548,1106:237,67,13,0,0,0.596498 -27549,1106:238,68,13,0,0,0.581626 -27550,1111:237,117,13,0,0,0.489434 -27551,1111:238,118,13,0,0,0.498268 -27552,1111:239,119,13,0,0,0.522115 -27553,1112:130,120,13,0,0,0.550951 -27554,1112:132,122,13,0,0,0.56226 -27555,1112:133,123,13,0,0,0.551282 -27556,1112:134,124,13,0,0,0.553898 -27557,1112:235,125,13,0,0,0.548866 -27558,1112:236,126,13,0,0,0.550646 -27559,1112:237,127,13,0,0,0.561046 -27560,1112:238,128,13,0,0,0.568169 -27561,1112:239,129,13,0,0,0.564485 -27562,1113:130,130,13,0,0,0.558615 -27563,1113:131,131,13,0,0,0.557779 -27564,1113:132,132,13,0,0,0.568798 -27565,1113:133,133,13,0,0,0.579049 -27566,1113:134,134,13,0,0,0.573253 -27567,1113:235,135,13,0,0,0.572172 -27568,1113:236,136,13,0,0,0.5837 -27569,1113:237,137,13,0,0,0.592485 -27570,1113:238,138,13,0,0,0.589082 -27571,1113:239,139,13,0,0,0.594617 -27572,1114:130,140,13,0,0,0.597066 -27573,1114:131,141,13,0,0,0.601433 -27574,1114:132,142,13,0,0,0.603648 -27575,1114:133,143,13,0,0,0.603574 -27576,1114:134,144,13,0,0,0.605171 -27577,1114:235,145,13,0,0,0.602443 -27578,1114:236,146,13,0,0,0.604065 -27579,1114:237,147,13,0,0,0.604287 -27580,1114:238,148,13,0,0,0.607329 -27581,1114:239,149,13,0,0,0.609483 -27582,1115:130,150,13,0,0,0.609043 -27583,1115:131,151,13,0,0,0.60804 -27584,1115:132,152,13,0,0,0.603624 -27585,1115:133,153,13,0,0,0.601852 -27586,1115:134,154,13,0,0,0.602984 -27587,1115:235,155,13,0,0,0.602836 -27588,1115:236,156,13,0,0,0.605269 -27589,1115:237,157,13,0,0,0.60728 -27590,1115:238,158,13,0,0,0.609556 -27591,1115:239,159,13,0,0,0.606472 -27592,1116:130,160,13,0,0,0.607697 -27593,1116:131,161,13,0,0,0.605244 -27594,1116:132,162,13,0,0,0.60657 -27595,1116:133,163,13,0,0,0.605441 -27596,1116:134,164,13,0,0,0.604631 -27597,1116:235,165,13,0,0,0.601581 -27598,1116:236,166,13,0,0,0.601286 -27599,1116:237,167,13,0,0,0.598326 -27600,1116:238,168,13,0,0,0.596745 -27601,1116:239,169,13,0,0,0.594096 -27602,1117:130,170,13,0,0,0.595929 -27603,1117:131,171,13,0,0,0.586917 -27604,1117:132,172,13,0,0,0.588236 -27605,1117:133,173,13,0,0,0.588311 -27606,1117:134,174,13,0,0,0.579123 -27607,1117:235,175,13,0,0,0.581151 -27608,1117:236,176,13,0,0,0.583025 -27609,1117:237,177,13,0,0,0.586294 -27610,1117:238,178,13,0,0,0.5835 -27611,1117:239,179,13,0,0,0.58025 -27612,1118:130,180,13,0,0,0.576392 -27613,7118:140,-180,14,0,0,0.567311 -27614,7117:249,-179,14,0,0,0.565191 -27615,7117:248,-178,14,0,0,0.549782 -27616,7117:247,-177,14,0,0,0.558995 -27617,7117:246,-176,14,0,0,0.555877 -27618,7117:245,-175,14,0,0,0.560565 -27619,7117:144,-174,14,0,0,0.548764 -27620,7117:143,-173,14,0,0,0.549732 -27621,7117:142,-172,14,0,0,0.548663 -27622,7117:141,-171,14,0,0,0.551383 -27623,7117:140,-170,14,0,0,0.546601 -27624,7116:249,-169,14,0,0,0.545277 -27625,7116:248,-168,14,0,0,0.539003 -27626,7116:247,-167,14,0,0,0.534865 -27627,7116:246,-166,14,0,0,0.536526 -27628,7116:245,-165,14,0,0,0.533663 -27629,7116:144,-164,14,0,0,0.531156 -27630,7116:143,-163,14,0,0,0.530491 -27631,7116:142,-162,14,0,0,0.532052 -27632,7116:141,-161,14,0,0,0.533075 -27633,7116:140,-160,14,0,0,0.531617 -27634,7115:249,-159,14,0,0,0.529953 -27635,7115:248,-158,14,0,0,0.530491 -27636,7115:247,-157,14,0,0,0.530491 -27637,7115:246,-156,14,0,0,0.527957 -27638,7115:245,-155,14,0,0,0.525294 -27639,7115:144,-154,14,0,0,0.523141 -27640,7115:143,-153,14,0,0,0.5225 -27641,7115:142,-152,14,0,0,0.522372 -27642,7115:141,-151,14,0,0,0.519602 -27643,7115:140,-150,14,0,0,0.517961 -27644,7114:249,-149,14,0,0,0.516755 -27645,7114:248,-148,14,0,0,0.514574 -27646,7114:247,-147,14,0,0,0.514215 -27647,7114:246,-146,14,0,0,0.509209 -27648,7114:245,-145,14,0,0,0.502044 -27649,7114:144,-144,14,0,0,0.496753 -27650,7114:143,-143,14,0,0,0.493953 -27651,7114:142,-142,14,0,0,0.48833 -27652,7114:141,-141,14,0,0,0.485916 -27653,7114:140,-140,14,0,0,0.483376 -27654,7113:249,-139,14,0,0,0.474172 -27655,7113:248,-138,14,0,0,0.466928 -27656,7113:247,-137,14,0,0,0.461919 -27657,7113:246,-136,14,0,0,0.460592 -27658,7113:245,-135,14,0,0,0.453351 -27659,7113:144,-134,14,0,0,0.449941 -27660,7113:143,-133,14,0,0,0.445546 -27661,7113:142,-132,14,0,0,0.443744 -27662,7113:141,-131,14,0,0,0.436403 -27663,7113:140,-130,14,0,0,0.434332 -27664,7112:249,-129,14,0,0,0.434358 -27665,7112:248,-128,14,0,0,0.432112 -27666,7112:247,-127,14,0,0,0.431582 -27667,7112:246,-126,14,0,0,0.43128 -27668,7112:245,-125,14,0,0,0.432566 -27669,7112:144,-124,14,0,0,0.430222 -27670,7112:143,-123,14,0,0,0.430852 -27671,7112:142,-122,14,0,0,0.428888 -27672,7112:141,-121,14,0,0,0.432339 -27673,7112:140,-120,14,0,0,0.430978 -27674,7111:249,-119,14,0,0,0.433802 -27675,7111:248,-118,14,0,0,0.435493 -27676,7111:247,-117,14,0,0,0.448975 -27677,7111:246,-116,14,0,0,0.45386 -27678,7111:245,-115,14,0,0,0.45442 -27679,7111:144,-114,14,0,0,0.467081 -27680,7111:143,-113,14,0,0,0.531924 -27681,7111:142,-112,14,0,0,0.554051 -27682,7111:140,-110,14,0,0,0.568748 -27683,7110:249,-109,14,0,0,0.571518 -27684,7110:248,-108,14,0,0,0.568899 -27685,7109:247,-97,14,0,0,0.567815 -27686,7109:246,-96,14,0,0,0.561122 -27687,7109:245,-95,14,0,0,0.562817 -27688,7109:144,-94,14,0,0,0.568546 -27689,7109:143,-93,14,0,0,0.571518 -27690,7109:142,-92,14,0,0,0.572247 -27691,7109:141,-91,14,0,0,0.569554 -27692,7109:140,-90,14,0,0,0.566251 -27693,7108:249,-89,14,0,0,0.566529 -27694,7108:248,-88,14,0,0,0.586991 -27695,7108:247,-87,14,0,0,0.626508 -27696,7108:246,-86,14,0,0,0.60603 -27697,7108:245,-85,14,0,0,0.607549 -27698,7108:144,-84,14,0,0,0.588236 -27699,7108:143,-83,14,0,0,0.568597 -27700,7108:142,-82,14,0,0,0.572499 -27701,7108:141,-81,14,0,0,0.581801 -27702,7108:140,-80,14,0,0,0.606472 -27703,7107:249,-79,14,0,0,0.544818 -27704,7107:248,-78,14,0,0,0.548714 -27705,7107:247,-77,14,0,0,0.556258 -27706,7107:246,-76,14,0,0,0.591219 -27707,7107:245,-75,14,0,0,0.592782 -27708,7107:144,-74,14,0,0,0.588037 -27709,7107:143,-73,14,0,0,0.586892 -27710,7107:142,-72,14,0,0,0.585521 -27711,7107:141,-71,14,0,0,0.589927 -27712,7107:140,-70,14,0,0,0.586743 -27713,7106:249,-69,14,0,0,0.585222 -27714,7106:248,-68,14,0,0,0.58607 -27715,7106:247,-67,14,0,0,0.586219 -27716,7106:246,-66,14,0,0,0.585446 -27717,7106:245,-65,14,0,0,0.588137 -27718,7106:144,-64,14,0,0,0.586019 -27719,7106:143,-63,14,0,0,0.586717 -27720,7106:142,-62,14,0,0,0.585322 -27721,7106:141,-61,14,0,0,0.583974 -27722,7106:140,-60,14,0,0,0.585546 -27723,7105:249,-59,14,0,0,0.588435 -27724,7105:248,-58,14,0,0,0.587913 -27725,7105:247,-57,14,0,0,0.590077 -27726,7105:246,-56,14,0,0,0.588684 -27727,7105:245,-55,14,0,0,0.591046 -27728,7105:144,-54,14,0,0,0.591815 -27729,7105:143,-53,14,0,0,0.586568 -27730,7105:142,-52,14,0,0,0.58375 -27731,7105:141,-51,14,0,0,0.579574 -27732,7105:140,-50,14,0,0,0.573605 -27733,7104:249,-49,14,0,0,0.572096 -27734,7104:248,-48,14,0,0,0.571442 -27735,7104:247,-47,14,0,0,0.570562 -27736,7104:246,-46,14,0,0,0.566832 -27737,7104:245,-45,14,0,0,0.565519 -27738,7104:144,-44,14,0,0,0.565848 -27739,7104:143,-43,14,0,0,0.562817 -27740,7104:142,-42,14,0,0,0.55745 -27741,7104:141,-41,14,0,0,0.553924 -27742,7104:140,-40,14,0,0,0.5524 -27743,7103:249,-39,14,0,0,0.549833 -27744,7103:248,-38,14,0,0,0.54385 -27745,7103:247,-37,14,0,0,0.543213 -27746,7103:246,-36,14,0,0,0.542218 -27747,7103:245,-35,14,0,0,0.541147 -27748,7103:144,-34,14,0,0,0.539514 -27749,7103:143,-33,14,0,0,0.536117 -27750,7103:142,-32,14,0,0,0.532308 -27751,7103:141,-31,14,0,0,0.528597 -27752,7103:140,-30,14,0,0,0.52806 -27753,7102:249,-29,14,0,0,0.524166 -27754,7102:248,-28,14,0,0,0.523295 -27755,7102:247,-27,14,0,0,0.524909 -27756,7102:246,-26,14,0,0,0.525934 -27757,7102:245,-25,14,0,0,0.523833 -27758,7102:144,-24,14,0,0,0.521372 -27759,7102:143,-23,14,0,0,0.521962 -27760,7102:142,-22,14,0,0,0.517909 -27761,7102:141,-21,14,0,0,0.509671 -27762,7102:140,-20,14,0,0,0.50171 -27763,7101:249,-19,14,0,0,0.495776 -27764,7101:248,-18,14,0,0,0.487431 -27765,7101:247,-17,14,0,0,0.46174 -27766,7101:246,-16,14,0,0,0.43509 -27767,1103:246,36,14,0,0,0.594121 -27768,1103:247,37,14,0,0,0.61808 -27769,1105:142,52,14,0,0,0.551409 -27770,1105:143,53,14,0,0,0.545557 -27771,1105:247,57,14,0,0,0.55712 -27772,1105:248,58,14,0,0,0.561325 -27773,1105:249,59,14,0,0,0.564863 -27774,1106:140,60,14,0,0,0.577144 -27775,1106:141,61,14,0,0,0.570209 -27776,1106:142,62,14,0,0,0.570134 -27777,1106:143,63,14,0,0,0.575012 -27778,1106:144,64,14,0,0,0.579123 -27779,1106:245,65,14,0,0,0.582601 -27780,1106:246,66,14,0,0,0.585122 -27781,1106:247,67,14,0,0,0.553924 -27782,1111:249,119,14,0,0,0.480349 -27783,1112:140,120,14,0,0,0.540432 -27784,1112:142,122,14,0,0,0.559021 -27785,1112:143,123,14,0,0,0.543595 -27786,1112:245,125,14,0,0,0.533663 -27787,1112:246,126,14,0,0,0.539641 -27788,1112:247,127,14,0,0,0.55113 -27789,1112:248,128,14,0,0,0.553569 -27790,1112:249,129,14,0,0,0.553162 -27791,1113:140,130,14,0,0,0.547161 -27792,1113:141,131,14,0,0,0.540636 -27793,1113:142,132,14,0,0,0.539973 -27794,1113:143,133,14,0,0,0.557577 -27795,1113:144,134,14,0,0,0.567033 -27796,1113:245,135,14,0,0,0.564509 -27797,1113:246,136,14,0,0,0.57182 -27798,1113:247,137,14,0,0,0.57041 -27799,1113:248,138,14,0,0,0.57041 -27800,1113:249,139,14,0,0,0.576116 -27801,1114:140,140,14,0,0,0.585147 -27802,1114:141,141,14,0,0,0.582551 -27803,1114:142,142,14,0,0,0.581601 -27804,1114:143,143,14,0,0,0.589505 -27805,1114:144,144,14,0,0,0.594096 -27806,1114:245,145,14,0,0,0.590126 -27807,1114:246,146,14,0,0,0.589828 -27808,1114:247,147,14,0,0,0.596473 -27809,1114:248,148,14,0,0,0.59998 -27810,1114:249,149,14,0,0,0.600891 -27811,1115:140,150,14,0,0,0.598128 -27812,1115:141,151,14,0,0,0.593477 -27813,1115:142,152,14,0,0,0.590325 -27814,1115:143,153,14,0,0,0.587465 -27815,1115:144,154,14,0,0,0.58953 -27816,1115:245,155,14,0,0,0.588336 -27817,1115:246,156,14,0,0,0.593477 -27818,1115:247,157,14,0,0,0.594196 -27819,1115:248,158,14,0,0,0.591517 -27820,1115:249,159,14,0,0,0.590996 -27821,1116:140,160,14,0,0,0.587714 -27822,1116:141,161,14,0,0,0.586917 -27823,1116:142,162,14,0,0,0.590624 -27824,1116:143,163,14,0,0,0.591616 -27825,1116:144,164,14,0,0,0.590126 -27826,1116:245,165,14,0,0,0.588634 -27827,1116:246,166,14,0,0,0.590424 -27828,1116:247,167,14,0,0,0.581751 -27829,1116:248,168,14,0,0,0.589306 -27830,1116:249,169,14,0,0,0.588684 -27831,1117:140,170,14,0,0,0.583201 -27832,1117:141,171,14,0,0,0.578948 -27833,1117:142,172,14,0,0,0.575966 -27834,1117:143,173,14,0,0,0.574459 -27835,1117:144,174,14,0,0,0.566529 -27836,1117:245,175,14,0,0,0.560413 -27837,1117:246,176,14,0,0,0.563828 -27838,1117:247,177,14,0,0,0.561931 -27839,1117:248,178,14,0,0,0.559071 -27840,1117:249,179,14,0,0,0.563397 -27841,1118:140,180,14,0,0,0.567311 -27842,7118:350,-180,15,0,0,0.545149 -27843,7117:459,-179,15,0,0,0.537522 -27844,7117:458,-178,15,0,0,0.535606 -27845,7117:457,-177,15,0,0,0.534174 -27846,7117:456,-176,15,0,0,0.544232 -27847,7117:455,-175,15,0,0,0.54996 -27848,7117:354,-174,15,0,0,0.533944 -27849,7117:353,-173,15,0,0,0.53742 -27850,7117:352,-172,15,0,0,0.531847 -27851,7117:351,-171,15,0,0,0.533151 -27852,7117:350,-170,15,0,0,0.521628 -27853,7116:459,-169,15,0,0,0.529161 -27854,7116:458,-168,15,0,0,0.519397 -27855,7116:457,-167,15,0,0,0.525934 -27856,7116:456,-166,15,0,0,0.522064 -27857,7116:455,-165,15,0,0,0.518089 -27858,7116:354,-164,15,0,0,0.518576 -27859,7116:353,-163,15,0,0,0.516729 -27860,7116:352,-162,15,0,0,0.513471 -27861,7116:351,-161,15,0,0,0.514625 -27862,7116:350,-160,15,0,0,0.512828 -27863,7115:459,-159,15,0,0,0.51519 -27864,7115:458,-158,15,0,0,0.517345 -27865,7115:457,-157,15,0,0,0.51578 -27866,7115:456,-156,15,0,0,0.513522 -27867,7115:455,-155,15,0,0,0.515549 -27868,7115:354,-154,15,0,0,0.513214 -27869,7115:353,-153,15,0,0,0.505562 -27870,7115:352,-152,15,0,0,0.502891 -27871,7115:351,-151,15,0,0,0.502557 -27872,7115:350,-150,15,0,0,0.501273 -27873,7114:459,-149,15,0,0,0.500528 -27874,7114:458,-148,15,0,0,0.498088 -27875,7114:457,-147,15,0,0,0.499526 -27876,7114:456,-146,15,0,0,0.49688 -27877,7114:455,-145,15,0,0,0.489742 -27878,7114:354,-144,15,0,0,0.485814 -27879,7114:353,-143,15,0,0,0.481965 -27880,7114:352,-142,15,0,0,0.475529 -27881,7114:351,-141,15,0,0,0.468975 -27882,7114:350,-140,15,0,0,0.466033 -27883,7113:459,-139,15,0,0,0.463094 -27884,7113:458,-138,15,0,0,0.459137 -27885,7113:457,-137,15,0,0,0.453172 -27886,7113:456,-136,15,0,0,0.447145 -27887,7113:455,-135,15,0,0,0.443871 -27888,7113:354,-134,15,0,0,0.440957 -27889,7113:353,-133,15,0,0,0.440298 -27890,7113:352,-132,15,0,0,0.435519 -27891,7113:351,-131,15,0,0,0.431683 -27892,7113:350,-130,15,0,0,0.426272 -27893,7112:459,-129,15,0,0,0.423461 -27894,7112:458,-128,15,0,0,0.422533 -27895,7112:457,-127,15,0,0,0.422031 -27896,7112:456,-126,15,0,0,0.426021 -27897,7112:455,-125,15,0,0,0.421079 -27898,7112:354,-124,15,0,0,0.416453 -27899,7112:353,-123,15,0,0,0.419227 -27900,7112:352,-122,15,0,0,0.418477 -27901,7112:351,-121,15,0,0,0.413859 -27902,7112:350,-120,15,0,0,0.412787 -27903,7111:459,-119,15,0,0,0.404297 -27904,7111:458,-118,15,0,0,0.405015 -27905,7111:457,-117,15,0,0,0.420929 -27906,7111:456,-116,15,0,0,0.422808 -27907,7111:455,-115,15,0,0,0.43418 -27908,7111:354,-114,15,0,0,0.476631 -27909,7111:353,-113,15,0,0,0.523474 -27910,7111:351,-111,15,0,0,0.553721 -27911,7111:350,-110,15,0,0,0.557805 -27912,7109:457,-97,15,0,0,0.533049 -27913,7109:456,-96,15,0,0,0.559907 -27914,7109:455,-95,15,0,0,0.548993 -27915,7109:354,-94,15,0,0,0.553898 -27916,7109:353,-93,15,0,0,0.560287 -27917,7109:352,-92,15,0,0,0.570662 -27918,7109:351,-91,15,0,0,0.571317 -27919,7109:350,-90,15,0,0,0.569806 -27920,7108:459,-89,15,0,0,0.561856 -27921,7108:458,-88,15,0,0,0.57955 -27922,7108:457,-87,15,0,0,0.614631 -27923,7108:456,-86,15,0,0,0.616211 -27924,7108:455,-85,15,0,0,0.604041 -27925,7108:354,-84,15,0,0,0.543059 -27926,7108:353,-83,15,0,0,0.556715 -27927,7108:352,-82,15,0,0,0.523448 -27928,7108:350,-80,15,0,0,0.580175 -27929,7107:459,-79,15,0,0,0.532103 -27930,7107:458,-78,15,0,0,0.56509 -27931,7107:457,-77,15,0,0,0.593279 -27932,7107:456,-76,15,0,0,0.586618 -27933,7107:455,-75,15,0,0,0.583625 -27934,7107:354,-74,15,0,0,0.574283 -27935,7107:353,-73,15,0,0,0.577144 -27936,7107:352,-72,15,0,0,0.572649 -27937,7107:351,-71,15,0,0,0.574936 -27938,7107:350,-70,15,0,0,0.571568 -27939,7106:459,-69,15,0,0,0.571291 -27940,7106:458,-68,15,0,0,0.57041 -27941,7106:457,-67,15,0,0,0.567387 -27942,7106:456,-66,15,0,0,0.571266 -27943,7106:455,-65,15,0,0,0.575187 -27944,7106:354,-64,15,0,0,0.573153 -27945,7106:353,-63,15,0,0,0.573203 -27946,7106:352,-62,15,0,0,0.575413 -27947,7106:351,-61,15,0,0,0.57031 -27948,7106:350,-60,15,0,0,0.565343 -27949,7105:459,-59,15,0,0,0.572197 -27950,7105:458,-58,15,0,0,0.573253 -27951,7105:457,-57,15,0,0,0.579674 -27952,7105:456,-56,15,0,0,0.582251 -27953,7105:455,-55,15,0,0,0.583874 -27954,7105:354,-54,15,0,0,0.581901 -27955,7105:353,-53,15,0,0,0.581576 -27956,7105:352,-52,15,0,0,0.574409 -27957,7105:351,-51,15,0,0,0.567462 -27958,7105:350,-50,15,0,0,0.564485 -27959,7104:459,-49,15,0,0,0.562387 -27960,7104:458,-48,15,0,0,0.559983 -27961,7104:457,-47,15,0,0,0.555802 -27962,7104:456,-46,15,0,0,0.553594 -27963,7104:455,-45,15,0,0,0.553086 -27964,7104:354,-44,15,0,0,0.551333 -27965,7104:353,-43,15,0,0,0.550011 -27966,7104:352,-42,15,0,0,0.550164 -27967,7104:351,-41,15,0,0,0.548943 -27968,7104:350,-40,15,0,0,0.544614 -27969,7103:459,-39,15,0,0,0.541096 -27970,7103:458,-38,15,0,0,0.539412 -27971,7103:457,-37,15,0,0,0.53627 -27972,7103:456,-36,15,0,0,0.535325 -27973,7103:455,-35,15,0,0,0.533918 -27974,7103:354,-34,15,0,0,0.532333 -27975,7103:353,-33,15,0,0,0.530107 -27976,7103:352,-32,15,0,0,0.527854 -27977,7103:351,-31,15,0,0,0.52414 -27978,7103:350,-30,15,0,0,0.520243 -27979,7102:459,-29,15,0,0,0.517422 -27980,7102:458,-28,15,0,0,0.514856 -27981,7102:457,-27,15,0,0,0.514985 -27982,7102:456,-26,15,0,0,0.513342 -27983,7102:455,-25,15,0,0,0.511417 -27984,7102:354,-24,15,0,0,0.510158 -27985,7102:353,-23,15,0,0,0.511391 -27986,7102:352,-22,15,0,0,0.514574 -27987,7102:351,-21,15,0,0,0.512366 -27988,7102:350,-20,15,0,0,0.509183 -27989,7101:459,-19,15,0,0,0.505383 -27990,7101:458,-18,15,0,0,0.487482 -27991,7101:457,-17,15,0,0,0.477144 -27992,7101:456,-16,15,0,0,0.467184 -27993,7101:455,-15,15,0,0,0.429014 -27994,1103:455,35,15,0,0,0.567639 -27995,1103:456,36,15,0,0,0.597313 -27996,1105:352,52,15,0,0,0.541479 -27997,1105:353,53,15,0,0,0.547721 -27998,1105:354,54,15,0,0,0.559097 -27999,1105:455,55,15,0,0,0.564156 -28000,1105:457,57,15,0,0,0.567891 -28001,1105:458,58,15,0,0,0.569655 -28002,1112:350,120,15,0,0,0.401405 -28003,1112:351,121,15,0,0,0.500888 -28004,1112:352,122,15,0,0,0.512444 -28005,1112:353,123,15,0,0,0.548892 -28006,1112:354,124,15,0,0,0.543161 -28007,1112:455,125,15,0,0,0.537522 -28008,1112:456,126,15,0,0,0.524294 -28009,1112:457,127,15,0,0,0.53512 -28010,1112:458,128,15,0,0,0.536602 -28011,1112:459,129,15,0,0,0.539769 -28012,1113:350,130,15,0,0,0.537854 -28013,1113:351,131,15,0,0,0.529237 -28014,1113:352,132,15,0,0,0.535784 -28015,1113:353,133,15,0,0,0.536142 -28016,1113:354,134,15,0,0,0.540688 -28017,1113:455,135,15,0,0,0.527521 -28018,1113:456,136,15,0,0,0.526318 -28019,1113:457,137,15,0,0,0.545633 -28020,1113:458,138,15,0,0,0.550113 -28021,1113:459,139,15,0,0,0.554102 -28022,1114:350,140,15,0,0,0.551918 -28023,1114:351,141,15,0,0,0.561375 -28024,1114:352,142,15,0,0,0.562589 -28025,1114:353,143,15,0,0,0.560996 -28026,1114:354,144,15,0,0,0.562058 -28027,1114:455,145,15,0,0,0.570486 -28028,1114:456,146,15,0,0,0.575262 -28029,1114:457,147,15,0,0,0.582726 -28030,1114:458,148,15,0,0,0.588361 -28031,1114:459,149,15,0,0,0.58734 -28032,1115:350,150,15,0,0,0.58375 -28033,1115:351,151,15,0,0,0.578197 -28034,1115:352,152,15,0,0,0.576367 -28035,1115:353,153,15,0,0,0.578823 -28036,1115:354,154,15,0,0,0.576944 -28037,1115:455,155,15,0,0,0.576693 -28038,1115:456,156,15,0,0,0.578573 -28039,1115:457,157,15,0,0,0.579525 -28040,1115:458,158,15,0,0,0.578673 -28041,1115:459,159,15,0,0,0.573982 -28042,1116:350,160,15,0,0,0.571845 -28043,1116:351,161,15,0,0,0.571568 -28044,1116:352,162,15,0,0,0.568975 -28045,1116:353,163,15,0,0,0.567538 -28046,1116:354,164,15,0,0,0.568143 -28047,1116:455,165,15,0,0,0.567689 -28048,1116:456,166,15,0,0,0.575563 -28049,1116:457,167,15,0,0,0.575714 -28050,1116:458,168,15,0,0,0.566806 -28051,1116:459,169,15,0,0,0.567992 -28052,1117:350,170,15,0,0,0.571668 -28053,1117:351,171,15,0,0,0.570964 -28054,1117:352,172,15,0,0,0.565772 -28055,1117:353,173,15,0,0,0.563195 -28056,1117:354,174,15,0,0,0.558641 -28057,1117:455,175,15,0,0,0.553035 -28058,1117:456,176,15,0,0,0.545328 -28059,1117:457,177,15,0,0,0.551739 -28060,1117:458,178,15,0,0,0.538313 -28061,1117:459,179,15,0,0,0.535938 -28062,1118:350,180,15,0,0,0.545149 -28063,7118:360,-180,16,0,0,0.52332 -28064,7117:469,-179,16,0,0,0.509953 -28065,7117:468,-178,16,0,0,0.526523 -28066,7117:467,-177,16,0,0,0.520013 -28067,7117:466,-176,16,0,0,0.515934 -28068,7117:465,-175,16,0,0,0.506153 -28069,7117:364,-174,16,0,0,0.513471 -28070,7117:363,-173,16,0,0,0.508207 -28071,7117:362,-172,16,0,0,0.512495 -28072,7117:361,-171,16,0,0,0.509722 -28073,7117:360,-170,16,0,0,0.50004 -28074,7116:469,-169,16,0,0,0.516217 -28075,7116:468,-168,16,0,0,0.491873 -28076,7116:467,-167,16,0,0,0.501247 -28077,7116:466,-166,16,0,0,0.502531 -28078,7116:465,-165,16,0,0,0.50022 -28079,7116:364,-164,16,0,0,0.500246 -28080,7116:363,-163,16,0,0,0.501838 -28081,7116:362,-162,16,0,0,0.49629 -28082,7116:361,-161,16,0,0,0.493311 -28083,7116:360,-160,16,0,0,0.497754 -28084,7115:469,-159,16,0,0,0.497292 -28085,7115:468,-158,16,0,0,0.499835 -28086,7115:467,-157,16,0,0,0.492951 -28087,7115:466,-156,16,0,0,0.491308 -28088,7115:465,-155,16,0,0,0.493748 -28089,7115:364,-154,16,0,0,0.489999 -28090,7115:363,-153,16,0,0,0.490743 -28091,7115:362,-152,16,0,0,0.489973 -28092,7115:361,-151,16,0,0,0.488945 -28093,7115:360,-150,16,0,0,0.489485 -28094,7114:469,-149,16,0,0,0.489999 -28095,7114:468,-148,16,0,0,0.490126 -28096,7114:467,-147,16,0,0,0.486686 -28097,7114:466,-146,16,0,0,0.484197 -28098,7114:465,-145,16,0,0,0.480862 -28099,7114:364,-144,16,0,0,0.476452 -28100,7114:363,-143,16,0,0,0.472174 -28101,7114:362,-142,16,0,0,0.468668 -28102,7114:361,-141,16,0,0,0.466697 -28103,7114:360,-140,16,0,0,0.462455 -28104,7113:469,-139,16,0,0,0.456127 -28105,7113:468,-138,16,0,0,0.450908 -28106,7113:467,-137,16,0,0,0.442908 -28107,7113:466,-136,16,0,0,0.439311 -28108,7113:465,-135,16,0,0,0.433726 -28109,7113:364,-134,16,0,0,0.428183 -28110,7113:363,-133,16,0,0,0.42454 -28111,7113:362,-132,16,0,0,0.421806 -28112,7113:361,-131,16,0,0,0.418152 -28113,7113:360,-130,16,0,0,0.415604 -28114,7112:469,-129,16,0,0,0.414831 -28115,7112:468,-128,16,0,0,0.415679 -28116,7112:467,-127,16,0,0,0.411244 -28117,7112:466,-126,16,0,0,0.406402 -28118,7112:465,-125,16,0,0,0.40405 -28119,7112:364,-124,16,0,0,0.397609 -28120,7112:363,-123,16,0,0,0.391645 -28121,7112:362,-122,16,0,0,0.40101 -28122,7112:361,-121,16,0,0,0.404767 -28123,7112:360,-120,16,0,0,0.407171 -28124,7111:469,-119,16,0,0,0.397068 -28125,7111:468,-118,16,0,0,0.405312 -28126,7111:467,-117,16,0,0,0.408734 -28127,7111:466,-116,16,0,0,0.432364 -28128,7111:465,-115,16,0,0,0.479349 -28129,7111:364,-114,16,0,0,0.499886 -28130,7111:361,-111,16,0,0,0.54181 -28131,7111:360,-110,16,0,0,0.540713 -28132,7109:467,-97,16,0,0,0.514446 -28133,7109:466,-96,16,0,0,0.553492 -28134,7109:465,-95,16,0,0,0.547721 -28135,7109:364,-94,16,0,0,0.549884 -28136,7109:363,-93,16,0,0,0.550722 -28137,7109:362,-92,16,0,0,0.55207 -28138,7109:361,-91,16,0,0,0.567059 -28139,7109:360,-90,16,0,0,0.564787 -28140,7108:469,-89,16,0,0,0.547441 -28141,7108:468,-88,16,0,0,0.547518 -28142,7108:467,-87,16,0,0,0.544538 -28143,7108:466,-86,16,0,0,0.556689 -28144,7108:465,-85,16,0,0,0.536807 -28145,7108:364,-84,16,0,0,0.523859 -28146,7108:363,-83,16,0,0,0.511545 -28147,7108:360,-80,16,0,0,0.574635 -28148,7107:469,-79,16,0,0,0.533331 -28149,7107:468,-78,16,0,0,0.530952 -28150,7107:467,-77,16,0,0,0.579499 -28151,7107:466,-76,16,0,0,0.550875 -28152,7107:465,-75,16,0,0,0.550494 -28153,7107:364,-74,16,0,0,0.552527 -28154,7107:363,-73,16,0,0,0.547518 -28155,7107:362,-72,16,0,0,0.546677 -28156,7107:361,-71,16,0,0,0.54907 -28157,7107:360,-70,16,0,0,0.560338 -28158,7106:469,-69,16,0,0,0.56307 -28159,7106:468,-68,16,0,0,0.558236 -28160,7106:467,-67,16,0,0,0.553239 -28161,7106:466,-66,16,0,0,0.552374 -28162,7106:465,-65,16,0,0,0.562083 -28163,7106:364,-64,16,0,0,0.559603 -28164,7106:363,-63,16,0,0,0.556461 -28165,7106:362,-62,16,0,0,0.555979 -28166,7106:361,-61,16,0,0,0.557095 -28167,7106:360,-60,16,0,0,0.55113 -28168,7105:469,-59,16,0,0,0.547645 -28169,7105:468,-58,16,0,0,0.549477 -28170,7105:467,-57,16,0,0,0.553772 -28171,7105:466,-56,16,0,0,0.558236 -28172,7105:465,-55,16,0,0,0.548078 -28173,7105:364,-54,16,0,0,0.550011 -28174,7105:363,-53,16,0,0,0.558134 -28175,7105:362,-52,16,0,0,0.558083 -28176,7105:361,-51,16,0,0,0.553315 -28177,7105:360,-50,16,0,0,0.546092 -28178,7104:469,-49,16,0,0,0.546168 -28179,7104:468,-48,16,0,0,0.545684 -28180,7104:467,-47,16,0,0,0.543238 -28181,7104:466,-46,16,0,0,0.540688 -28182,7104:465,-45,16,0,0,0.542065 -28183,7104:364,-44,16,0,0,0.544334 -28184,7104:363,-43,16,0,0,0.54232 -28185,7104:362,-42,16,0,0,0.539998 -28186,7104:361,-41,16,0,0,0.538543 -28187,7104:360,-40,16,0,0,0.535376 -28188,7103:469,-39,16,0,0,0.533305 -28189,7103:468,-38,16,0,0,0.531975 -28190,7103:467,-37,16,0,0,0.527188 -28191,7103:466,-36,16,0,0,0.528725 -28192,7103:465,-35,16,0,0,0.522961 -28193,7103:364,-34,16,0,0,0.522193 -28194,7103:363,-33,16,0,0,0.517551 -28195,7103:362,-32,16,0,0,0.510262 -28196,7103:361,-31,16,0,0,0.517987 -28197,7103:360,-30,16,0,0,0.511648 -28198,7102:469,-29,16,0,0,0.509722 -28199,7102:468,-28,16,0,0,0.507077 -28200,7102:467,-27,16,0,0,0.506461 -28201,7102:466,-26,16,0,0,0.503867 -28202,7102:465,-25,16,0,0,0.501145 -28203,7102:364,-24,16,0,0,0.498628 -28204,7102:363,-23,16,0,0,0.499809 -28205,7102:362,-22,16,0,0,0.501632 -28206,7102:361,-21,16,0,0,0.500425 -28207,7102:360,-20,16,0,0,0.498962 -28208,7101:469,-19,16,0,0,0.495391 -28209,7101:468,-18,16,0,0,0.490229 -28210,7101:467,-17,16,0,0,0.485198 -28211,7101:466,-16,16,0,0,0.470075 -28212,7101:465,-15,16,0,0,0.46363 -28213,7101:364,-14,16,0,0,0.434938 -28214,1103:364,34,16,0,0,0.562513 -28215,1103:465,35,16,0,0,0.570335 -28216,1105:360,50,16,0,0,0.524781 -28217,1105:361,51,16,0,0,0.539335 -28218,1105:362,52,16,0,0,0.55113 -28219,1105:363,53,16,0,0,0.557602 -28220,1105:466,56,16,0,0,0.551003 -28221,1112:361,121,16,0,0,0.396798 -28222,1112:362,122,16,0,0,0.488895 -28223,1112:363,123,16,0,0,0.511853 -28224,1112:364,124,16,0,0,0.524985 -28225,1112:465,125,16,0,0,0.507308 -28226,1112:466,126,16,0,0,0.53862 -28227,1112:467,127,16,0,0,0.52514 -28228,1112:468,128,16,0,0,0.527471 -28229,1112:469,129,16,0,0,0.53021 -28230,1113:360,130,16,0,0,0.535223 -28231,1113:361,131,16,0,0,0.526395 -28232,1113:362,132,16,0,0,0.516037 -28233,1113:363,133,16,0,0,0.515472 -28234,1113:364,134,16,0,0,0.504663 -28235,1113:465,135,16,0,0,0.497087 -28236,1113:466,136,16,0,0,0.498113 -28237,1113:467,137,16,0,0,0.507925 -28238,1113:468,138,16,0,0,0.51306 -28239,1113:469,139,16,0,0,0.518038 -28240,1114:360,140,16,0,0,0.516217 -28241,1114:361,141,16,0,0,0.526036 -28242,1114:362,142,16,0,0,0.535223 -28243,1114:363,143,16,0,0,0.535478 -28244,1114:364,144,16,0,0,0.550113 -28245,1114:465,145,16,0,0,0.546372 -28246,1114:466,146,16,0,0,0.554914 -28247,1114:467,147,16,0,0,0.545404 -28248,1114:468,148,16,0,0,0.542346 -28249,1114:469,149,16,0,0,0.551028 -28250,1115:360,150,16,0,0,0.556233 -28251,1115:361,151,16,0,0,0.551078 -28252,1115:362,152,16,0,0,0.550825 -28253,1115:363,153,16,0,0,0.560135 -28254,1115:364,154,16,0,0,0.554914 -28255,1115:465,155,16,0,0,0.557374 -28256,1115:466,156,16,0,0,0.56403 -28257,1115:467,157,16,0,0,0.559704 -28258,1115:468,158,16,0,0,0.560945 -28259,1115:469,159,16,0,0,0.558869 -28260,1116:360,160,16,0,0,0.556309 -28261,1116:361,161,16,0,0,0.558438 -28262,1116:362,162,16,0,0,0.557855 -28263,1116:363,163,16,0,0,0.559578 -28264,1116:364,164,16,0,0,0.556689 -28265,1116:465,165,16,0,0,0.556866 -28266,1116:466,166,16,0,0,0.554305 -28267,1116:467,167,16,0,0,0.551942 -28268,1116:468,168,16,0,0,0.54996 -28269,1116:469,169,16,0,0,0.54818 -28270,1117:360,170,16,0,0,0.545633 -28271,1117:361,171,16,0,0,0.550799 -28272,1117:362,172,16,0,0,0.549451 -28273,1117:363,173,16,0,0,0.542626 -28274,1117:364,174,16,0,0,0.535734 -28275,1117:465,175,16,0,0,0.540406 -28276,1117:466,176,16,0,0,0.542524 -28277,1117:467,177,16,0,0,0.533484 -28278,1117:468,178,16,0,0,0.517756 -28279,1117:469,179,16,0,0,0.522372 -28280,1118:360,180,16,0,0,0.52332 -28281,7118:370,-180,17,0,0,0.489022 -28282,7117:479,-179,17,0,0,0.489022 -28283,7117:478,-178,17,0,0,0.486609 -28284,7117:477,-177,17,0,0,0.484736 -28285,7117:476,-176,17,0,0,0.478862 -28286,7117:475,-175,17,0,0,0.482427 -28287,7117:374,-174,17,0,0,0.485634 -28288,7117:373,-173,17,0,0,0.479733 -28289,7117:372,-172,17,0,0,0.488561 -28290,7117:371,-171,17,0,0,0.47635 -28291,7117:370,-170,17,0,0,0.483658 -28292,7116:479,-169,17,0,0,0.477888 -28293,7116:478,-168,17,0,0,0.470869 -28294,7116:477,-167,17,0,0,0.4804 -28295,7116:476,-166,17,0,0,0.473608 -28296,7116:475,-165,17,0,0,0.482581 -28297,7116:374,-164,17,0,0,0.474018 -28298,7116:373,-163,17,0,0,0.469051 -28299,7116:372,-162,17,0,0,0.481888 -28300,7116:371,-161,17,0,0,0.468872 -28301,7116:370,-160,17,0,0,0.479426 -28302,7115:479,-159,17,0,0,0.479785 -28303,7115:478,-158,17,0,0,0.475094 -28304,7115:477,-157,17,0,0,0.475991 -28305,7115:476,-156,17,0,0,0.474197 -28306,7115:475,-155,17,0,0,0.473199 -28307,7115:374,-154,17,0,0,0.470791 -28308,7115:373,-153,17,0,0,0.473557 -28309,7115:372,-152,17,0,0,0.479913 -28310,7115:371,-151,17,0,0,0.476145 -28311,7115:370,-150,17,0,0,0.476811 -28312,7114:479,-149,17,0,0,0.476888 -28313,7114:478,-148,17,0,0,0.476606 -28314,7114:477,-147,17,0,0,0.47717 -28315,7114:476,-146,17,0,0,0.476504 -28316,7114:475,-145,17,0,0,0.473762 -28317,7114:374,-144,17,0,0,0.47243 -28318,7114:373,-143,17,0,0,0.470101 -28319,7114:372,-142,17,0,0,0.466825 -28320,7114:371,-141,17,0,0,0.460745 -28321,7114:370,-140,17,0,0,0.456586 -28322,7113:479,-139,17,0,0,0.451518 -28323,7113:478,-138,17,0,0,0.446663 -28324,7113:477,-137,17,0,0,0.442477 -28325,7113:476,-136,17,0,0,0.437288 -28326,7113:475,-135,17,0,0,0.432414 -28327,7113:374,-134,17,0,0,0.426222 -28328,7113:373,-133,17,0,0,0.418302 -28329,7113:372,-132,17,0,0,0.41229 -28330,7113:371,-131,17,0,0,0.409355 -28331,7113:370,-130,17,0,0,0.406278 -28332,7112:479,-129,17,0,0,0.401454 -28333,7112:478,-128,17,0,0,0.399703 -28334,7112:477,-127,17,0,0,0.393776 -28335,7112:476,-126,17,0,0,0.390568 -28336,7112:475,-125,17,0,0,0.39358 -28337,7112:374,-124,17,0,0,0.386492 -28338,7112:373,-123,17,0,0,0.379379 -28339,7112:372,-122,17,0,0,0.37595 -28340,7112:371,-121,17,0,0,0.374529 -28341,7112:370,-120,17,0,0,0.37636 -28342,7111:479,-119,17,0,0,0.381922 -28343,7111:478,-118,17,0,0,0.379935 -28344,7111:477,-117,17,0,0,0.384861 -28345,7111:476,-116,17,0,0,0.450908 -28346,7111:475,-115,17,0,0,0.453834 -28347,7111:372,-112,17,0,0,0.521731 -28348,7109:476,-96,17,0,0,0.463962 -28349,7109:475,-95,17,0,0,0.488252 -28350,7109:374,-94,17,0,0,0.498396 -28351,7109:373,-93,17,0,0,0.508875 -28352,7109:372,-92,17,0,0,0.51057 -28353,7109:371,-91,17,0,0,0.513624 -28354,7109:370,-90,17,0,0,0.521654 -28355,7108:479,-89,17,0,0,0.526907 -28356,7108:478,-88,17,0,0,0.525063 -28357,7108:477,-87,17,0,0,0.523397 -28358,7108:476,-86,17,0,0,0.52724 -28359,7108:475,-85,17,0,0,0.498447 -28360,7108:374,-84,17,0,0,0.479913 -28361,7108:373,-83,17,0,0,0.443593 -28362,7108:370,-80,17,0,0,0.559755 -28363,7107:479,-79,17,0,0,0.58734 -28364,7107:478,-78,17,0,0,0.577069 -28365,7107:477,-77,17,0,0,0.574861 -28366,7107:476,-76,17,0,0,0.547543 -28367,7107:475,-75,17,0,0,0.544436 -28368,7107:374,-74,17,0,0,0.543085 -28369,7107:373,-73,17,0,0,0.543697 -28370,7107:372,-72,17,0,0,0.532384 -28371,7107:371,-71,17,0,0,0.540509 -28372,7107:370,-70,17,0,0,0.539973 -28373,7106:479,-69,17,0,0,0.53512 -28374,7106:478,-68,17,0,0,0.541479 -28375,7106:477,-67,17,0,0,0.539258 -28376,7106:476,-66,17,0,0,0.532998 -28377,7106:475,-65,17,0,0,0.533279 -28378,7106:374,-64,17,0,0,0.53558 -28379,7106:373,-63,17,0,0,0.537497 -28380,7106:372,-62,17,0,0,0.540382 -28381,7106:371,-61,17,0,0,0.543672 -28382,7106:370,-60,17,0,0,0.539386 -28383,7105:479,-59,17,0,0,0.534609 -28384,7105:478,-58,17,0,0,0.526318 -28385,7105:477,-57,17,0,0,0.517037 -28386,7105:476,-56,17,0,0,0.521398 -28387,7105:475,-55,17,0,0,0.536551 -28388,7105:374,-54,17,0,0,0.533791 -28389,7105:373,-53,17,0,0,0.525754 -28390,7105:372,-52,17,0,0,0.52724 -28391,7105:371,-51,17,0,0,0.533586 -29690,1212:131,121,23,0,0,0.21556 -28392,7105:370,-50,17,0,0,0.532231 -28393,7104:479,-49,17,0,0,0.523859 -28394,7104:478,-48,17,0,0,0.518731 -28395,7104:477,-47,17,0,0,0.523012 -28396,7104:476,-46,17,0,0,0.526267 -28397,7104:475,-45,17,0,0,0.524243 -28398,7104:374,-44,17,0,0,0.526702 -28399,7104:373,-43,17,0,0,0.527932 -28400,7104:372,-42,17,0,0,0.525088 -28401,7104:371,-41,17,0,0,0.523961 -28402,7104:370,-40,17,0,0,0.517089 -28403,7103:479,-39,17,0,0,0.516139 -28404,7103:478,-38,17,0,0,0.518269 -28405,7103:477,-37,17,0,0,0.514651 -28406,7103:476,-36,17,0,0,0.506975 -28407,7103:475,-35,17,0,0,0.503585 -28408,7103:374,-34,17,0,0,0.501555 -28409,7103:373,-33,17,0,0,0.497703 -28410,7103:372,-32,17,0,0,0.494004 -28411,7103:371,-31,17,0,0,0.493414 -28412,7103:370,-30,17,0,0,0.492438 -28413,7102:479,-29,17,0,0,0.496367 -28414,7102:478,-28,17,0,0,0.494261 -28415,7102:477,-27,17,0,0,0.490743 -28416,7102:476,-26,17,0,0,0.489818 -28417,7102:475,-25,17,0,0,0.490383 -28418,7102:374,-24,17,0,0,0.486686 -28419,7102:373,-23,17,0,0,0.489767 -28420,7102:372,-22,17,0,0,0.490075 -28421,7102:371,-21,17,0,0,0.485198 -28422,7102:370,-20,17,0,0,0.486404 -28423,7101:479,-19,17,0,0,0.487148 -28424,7101:478,-18,17,0,0,0.483402 -28425,7101:476,-16,17,0,0,0.475145 -28426,7101:475,-15,17,0,0,0.470203 -28427,7101:374,-14,17,0,0,0.450959 -28428,7101:373,-13,17,0,0,0.427202 -28429,7101:372,-12,17,0,0,0.411742 -28430,1103:373,33,17,0,0,0.515755 -28431,1104:479,49,17,0,0,0.522833 -28432,1105:370,50,17,0,0,0.539616 -28433,1105:371,51,17,0,0,0.529596 -28434,1112:372,122,17,0,0,0.356164 -28435,1112:373,123,17,0,0,0.445191 -28436,1112:374,124,17,0,0,0.464346 -28437,1112:475,125,17,0,0,0.470126 -28438,1112:476,126,17,0,0,0.506949 -28439,1112:477,127,17,0,0,0.5342 -28440,1112:478,128,17,0,0,0.523833 -28441,1112:479,129,17,0,0,0.521039 -28442,1113:370,130,17,0,0,0.519808 -28443,1113:371,131,17,0,0,0.522833 -28444,1113:372,132,17,0,0,0.522038 -28445,1113:373,133,17,0,0,0.512597 -28446,1113:374,134,17,0,0,0.502403 -28447,1113:475,135,17,0,0,0.49046 -28448,1113:476,136,17,0,0,0.483787 -28449,1113:477,137,17,0,0,0.480785 -28450,1113:478,138,17,0,0,0.48548 -28451,1113:479,139,17,0,0,0.50248 -28452,1114:370,140,17,0,0,0.508952 -28453,1114:371,141,17,0,0,0.516345 -28454,1114:372,142,17,0,0,0.521398 -28455,1114:373,143,17,0,0,0.514933 -28456,1114:374,144,17,0,0,0.512854 -28457,1114:475,145,17,0,0,0.521808 -28458,1114:476,146,17,0,0,0.52414 -28459,1114:477,147,17,0,0,0.511622 -28460,1114:478,148,17,0,0,0.515986 -28461,1114:479,149,17,0,0,0.52765 -28462,1115:370,150,17,0,0,0.525523 -28463,1115:371,151,17,0,0,0.532001 -28464,1115:372,152,17,0,0,0.53351 -28465,1115:373,153,17,0,0,0.531336 -28466,1115:374,154,17,0,0,0.532154 -28467,1115:475,155,17,0,0,0.536168 -28468,1115:476,156,17,0,0,0.533638 -28469,1115:477,157,17,0,0,0.535555 -28470,1115:478,158,17,0,0,0.535862 -28471,1115:479,159,17,0,0,0.536704 -28472,1116:370,160,17,0,0,0.537829 -28473,1116:371,161,17,0,0,0.538569 -28474,1116:372,162,17,0,0,0.53982 -28475,1116:373,163,17,0,0,0.539896 -28476,1116:374,164,17,0,0,0.540738 -28477,1116:475,165,17,0,0,0.536807 -28478,1116:476,166,17,0,0,0.534046 -28479,1116:477,167,17,0,0,0.534813 -28480,1116:478,168,17,0,0,0.533459 -28481,1116:479,169,17,0,0,0.521679 -28482,1117:370,170,17,0,0,0.512597 -28483,1117:371,171,17,0,0,0.520141 -28484,1117:372,172,17,0,0,0.525114 -28485,1117:373,173,17,0,0,0.520526 -28486,1117:374,174,17,0,0,0.508824 -28487,1117:475,175,17,0,0,0.501016 -28488,1117:476,176,17,0,0,0.510596 -28489,1117:477,177,17,0,0,0.506051 -28490,1117:478,178,17,0,0,0.504535 -28491,1117:479,179,17,0,0,0.501838 -28492,1118:370,180,17,0,0,0.489022 -28493,7118:380,-180,18,0,0,0.463707 -28494,7117:489,-179,18,0,0,0.461689 -28495,7117:488,-178,18,0,0,0.456536 -28496,7117:487,-177,18,0,0,0.45702 -28497,7117:486,-176,18,0,0,0.449382 -28498,7117:485,-175,18,0,0,0.44867 -28499,7117:384,-174,18,0,0,0.452179 -28500,7117:383,-173,18,0,0,0.444404 -28501,7117:382,-172,18,0,0,0.443136 -28502,7117:381,-171,18,0,0,0.447171 -28503,7117:380,-170,18,0,0,0.448721 -28504,7116:489,-169,18,0,0,0.445952 -28505,7116:488,-168,18,0,0,0.445267 -28506,7116:487,-167,18,0,0,0.443567 -28507,7116:486,-166,18,0,0,0.440957 -28508,7116:485,-165,18,0,0,0.441084 -28509,7116:384,-164,18,0,0,0.444379 -28510,7116:383,-163,18,0,0,0.443795 -28511,7116:382,-162,18,0,0,0.448086 -28512,7116:381,-161,18,0,0,0.452358 -28513,7116:380,-160,18,0,0,0.453784 -28514,7115:489,-159,18,0,0,0.44984 -28515,7115:488,-158,18,0,0,0.44585 -28516,7115:487,-157,18,0,0,0.446841 -28517,7115:486,-156,18,0,0,0.451671 -28518,7115:485,-155,18,0,0,0.451035 -28519,7115:384,-154,18,0,0,0.452816 -28520,7115:383,-153,18,0,0,0.452562 -28521,7115:382,-152,18,0,0,0.451009 -28522,7115:381,-151,18,0,0,0.446993 -28523,7115:380,-150,18,0,0,0.452587 -28524,7114:489,-149,18,0,0,0.45952 -28525,7114:488,-148,18,0,0,0.455975 -28526,7114:487,-147,18,0,0,0.452179 -28527,7114:486,-146,18,0,0,0.456179 -28528,7114:485,-145,18,0,0,0.449407 -28529,7114:384,-144,18,0,0,0.45045 -28530,7114:383,-143,18,0,0,0.447272 -28531,7114:382,-142,18,0,0,0.445369 -28532,7114:381,-141,18,0,0,0.441008 -28533,7114:380,-140,18,0,0,0.438173 -28534,7113:489,-139,18,0,0,0.43239 -28535,7113:488,-138,18,0,0,0.428712 -28536,7113:487,-137,18,0,0,0.42665 -28537,7113:486,-136,18,0,0,0.422984 -28538,7113:485,-135,18,0,0,0.419102 -28539,7113:384,-134,18,0,0,0.412912 -28540,7113:383,-133,18,0,0,0.410896 -28541,7113:382,-132,18,0,0,0.407022 -28542,7113:381,-131,18,0,0,0.402541 -28543,7113:380,-130,18,0,0,0.398841 -28544,7112:489,-129,18,0,0,0.392772 -28545,7112:488,-128,18,0,0,0.38384 -28546,7112:487,-127,18,0,0,0.377566 -28547,7112:486,-126,18,0,0,0.377711 -28548,7112:485,-125,18,0,0,0.381219 -28549,7112:384,-124,18,0,0,0.377277 -28550,7112:383,-123,18,0,0,0.373158 -28551,7112:382,-122,18,0,0,0.372413 -28552,7112:381,-121,18,0,0,0.370901 -28553,7112:380,-120,18,0,0,0.366215 -28554,7111:489,-119,18,0,0,0.372053 -28555,7111:488,-118,18,0,0,0.367719 -28556,7111:487,-117,18,0,0,0.374866 -28557,7111:486,-116,18,0,0,0.424239 -28558,7111:383,-113,18,0,0,0.505793 -28559,7109:384,-94,18,0,0,0.382674 -28560,7109:383,-93,18,0,0,0.385299 -28561,7109:382,-92,18,0,0,0.39412 -28562,7108:489,-89,18,0,0,0.428561 -28563,7108:488,-88,18,0,0,0.486327 -28564,7108:487,-87,18,0,0,0.51021 -28565,7108:486,-86,18,0,0,0.478452 -28566,7108:485,-85,18,0,0,0.42567 -28567,7108:384,-84,18,0,0,0.429215 -28568,7108:381,-81,18,0,0,0.498859 -28569,7108:380,-80,18,0,0,0.566024 -28570,7107:489,-79,18,0,0,0.557932 -28571,7107:488,-78,18,0,0,0.550951 -28572,7107:487,-77,18,0,0,0.551383 -28573,7107:486,-76,18,0,0,0.55273 -28574,7107:485,-75,18,0,0,0.539437 -28575,7107:384,-74,18,0,0,0.52957 -28576,7107:383,-73,18,0,0,0.52875 -28577,7107:382,-72,18,0,0,0.526753 -28578,7107:381,-71,18,0,0,0.526779 -28579,7107:380,-70,18,0,0,0.526241 -28580,7106:489,-69,18,0,0,0.521757 -28581,7106:488,-68,18,0,0,0.518602 -28582,7106:487,-67,18,0,0,0.517551 -28583,7106:486,-66,18,0,0,0.523986 -28584,7106:485,-65,18,0,0,0.521731 -28585,7106:384,-64,18,0,0,0.518987 -28586,7106:383,-63,18,0,0,0.520526 -28587,7106:382,-62,18,0,0,0.517525 -28588,7106:381,-61,18,0,0,0.512957 -28589,7106:380,-60,18,0,0,0.512521 -28590,7105:489,-59,18,0,0,0.514471 -28591,7105:488,-58,18,0,0,0.507668 -28592,7105:487,-57,18,0,0,0.503302 -28593,7105:486,-56,18,0,0,0.506512 -28594,7105:485,-55,18,0,0,0.505819 -28595,7105:384,-54,18,0,0,0.500246 -28596,7105:383,-53,18,0,0,0.504227 -28597,7105:382,-52,18,0,0,0.507848 -28598,7105:381,-51,18,0,0,0.507694 -28599,7105:380,-50,18,0,0,0.505023 -28600,7104:489,-49,18,0,0,0.501915 -28601,7104:488,-48,18,0,0,0.504637 -28602,7104:487,-47,18,0,0,0.50623 -28603,7104:486,-46,18,0,0,0.505152 -28604,7104:485,-45,18,0,0,0.508978 -28605,7104:384,-44,18,0,0,0.513573 -28606,7104:383,-43,18,0,0,0.511674 -28607,7104:382,-42,18,0,0,0.507489 -31960,7313:466,-136,36,0,0,0.20022 -28608,7104:381,-41,18,0,0,0.506359 -28609,7104:380,-40,18,0,0,0.497009 -28610,7103:489,-39,18,0,0,0.502326 -28611,7103:488,-38,18,0,0,0.500297 -28612,7103:487,-37,18,0,0,0.4976 -28613,7103:486,-36,18,0,0,0.496367 -28614,7103:485,-35,18,0,0,0.490666 -28615,7103:384,-34,18,0,0,0.48679 -28616,7103:383,-33,18,0,0,0.486456 -28617,7103:382,-32,18,0,0,0.48235 -28618,7103:381,-31,18,0,0,0.480503 -28619,7103:380,-30,18,0,0,0.480836 -28620,7102:489,-29,18,0,0,0.480169 -28621,7102:488,-28,18,0,0,0.478708 -28622,7102:487,-27,18,0,0,0.480042 -28623,7102:486,-26,18,0,0,0.48117 -28624,7102:485,-25,18,0,0,0.475914 -28625,7102:384,-24,18,0,0,0.476324 -28626,7102:383,-23,18,0,0,0.478785 -28627,7102:382,-22,18,0,0,0.474479 -28628,7102:381,-21,18,0,0,0.473967 -28629,7102:380,-20,18,0,0,0.474582 -28630,7101:489,-19,18,0,0,0.471637 -28631,7101:488,-18,18,0,0,0.47266 -28632,7101:487,-17,18,0,0,0.474377 -28633,7101:486,-16,18,0,0,0.472993 -28634,7101:485,-15,18,0,0,0.46854 -28635,7101:384,-14,18,0,0,0.463707 -28636,7101:383,-13,18,0,0,0.461434 -28637,7101:382,-12,18,0,0,0.453555 -28638,7101:381,-11,18,0,0,0.444151 -28639,1104:488,48,18,0,0,0.469921 -28640,1104:489,49,18,0,0,0.510518 -28641,1105:380,50,18,0,0,0.523781 -28642,1112:383,123,18,0,0,0.340494 -28643,1112:384,124,18,0,0,0.433827 -28644,1112:485,125,18,0,0,0.423009 -28645,1112:486,126,18,0,0,0.442731 -28646,1112:487,127,18,0,0,0.496753 -28647,1112:488,128,18,0,0,0.532077 -28648,1112:489,129,18,0,0,0.52519 -28649,1113:380,130,18,0,0,0.5225 -28650,1113:381,131,18,0,0,0.525063 -28651,1113:382,132,18,0,0,0.522731 -28652,1113:383,133,18,0,0,0.502968 -28653,1113:384,134,18,0,0,0.467286 -28654,1113:485,135,18,0,0,0.490101 -28655,1113:486,136,18,0,0,0.489151 -28656,1113:487,137,18,0,0,0.464601 -28657,1113:488,138,18,0,0,0.464295 -28658,1113:489,139,18,0,0,0.480169 -28659,1114:380,140,18,0,0,0.487046 -28660,1114:381,141,18,0,0,0.505177 -28661,1114:382,142,18,0,0,0.508028 -28662,1114:383,143,18,0,0,0.499963 -28663,1114:384,144,18,0,0,0.500605 -28664,1114:485,145,18,0,0,0.501555 -28665,1114:486,146,18,0,0,0.514549 -28666,1114:487,147,18,0,0,0.50659 -28667,1114:488,148,18,0,0,0.498962 -28668,1114:489,149,18,0,0,0.498165 -28669,1115:380,150,18,0,0,0.500271 -28670,1115:381,151,18,0,0,0.503508 -28671,1115:382,152,18,0,0,0.504098 -28672,1115:383,153,18,0,0,0.508053 -28673,1115:384,154,18,0,0,0.510544 -28674,1115:485,155,18,0,0,0.505665 -28675,1115:486,156,18,0,0,0.501863 -28676,1115:487,157,18,0,0,0.502378 -28677,1115:488,158,18,0,0,0.504355 -28678,1115:489,159,18,0,0,0.502454 -28679,1116:380,160,18,0,0,0.502095 -28680,1116:381,161,18,0,0,0.502814 -28681,1116:382,162,18,0,0,0.501941 -28682,1116:383,163,18,0,0,0.500322 -28683,1116:384,164,18,0,0,0.498987 -28684,1116:485,165,18,0,0,0.505665 -28685,1116:486,166,18,0,0,0.508207 -28686,1116:487,167,18,0,0,0.504869 -28687,1116:488,168,18,0,0,0.498653 -28688,1116:489,169,18,0,0,0.489382 -28689,1117:380,170,18,0,0,0.480375 -28690,1117:381,171,18,0,0,0.480759 -28691,1117:382,172,18,0,0,0.480785 -28692,1117:383,173,18,0,0,0.481272 -28693,1117:384,174,18,0,0,0.474658 -28694,1117:485,175,18,0,0,0.471099 -28695,1117:486,176,18,0,0,0.487226 -28696,1117:487,177,18,0,0,0.479272 -28697,1117:488,178,18,0,0,0.47179 -28698,1117:489,179,18,0,0,0.465189 -28699,1118:380,180,18,0,0,0.463707 -28700,7118:390,-180,19,0,0,0.439235 -28701,7117:499,-179,19,0,0,0.42768 -28702,7117:498,-178,19,0,0,0.435847 -28703,7117:497,-177,19,0,0,0.426499 -28704,7117:496,-176,19,0,0,0.42758 -28705,7117:495,-175,19,0,0,0.420879 -28706,7117:394,-174,19,0,0,0.418577 -28707,7117:393,-173,19,0,0,0.418802 -28708,7117:392,-172,19,0,0,0.41533 -28709,7117:391,-171,19,0,0,0.418802 -28710,7117:390,-170,19,0,0,0.417277 -28711,7116:499,-169,19,0,0,0.418277 -28712,7116:498,-168,19,0,0,0.41346 -28713,7116:497,-167,19,0,0,0.414482 -28714,7116:496,-166,19,0,0,0.414382 -28715,7116:495,-165,19,0,0,0.418802 -28716,7116:394,-164,19,0,0,0.424264 -28717,7116:393,-163,19,0,0,0.415879 -28718,7116:392,-162,19,0,0,0.411742 -28719,7116:391,-161,19,0,0,0.413759 -28720,7116:390,-160,19,0,0,0.419828 -28721,7115:499,-159,19,0,0,0.425519 -28722,7115:498,-158,19,0,0,0.423862 -28723,7115:497,-157,19,0,0,0.426926 -28724,7115:496,-156,19,0,0,0.429744 -28725,7115:495,-155,19,0,0,0.42577 -28726,7115:394,-154,19,0,0,0.418777 -28727,7115:393,-153,19,0,0,0.421305 -28728,7115:392,-152,19,0,0,0.430222 -28729,7115:391,-151,19,0,0,0.43307 -28730,7115:390,-150,19,0,0,0.429895 -28731,7114:499,-149,19,0,0,0.430776 -28732,7114:498,-148,19,0,0,0.432188 -28733,7114:497,-147,19,0,0,0.434307 -28734,7114:496,-146,19,0,0,0.435695 -28735,7114:495,-145,19,0,0,0.436504 -28736,7114:394,-144,19,0,0,0.4384 -28737,7114:393,-143,19,0,0,0.437313 -28738,7114:392,-142,19,0,0,0.434837 -28739,7114:391,-141,19,0,0,0.424916 -28740,7114:390,-140,19,0,0,0.42341 -28741,7113:499,-139,19,0,0,0.424163 -28742,7113:498,-138,19,0,0,0.423862 -28743,7113:497,-137,19,0,0,0.421631 -28744,7113:496,-136,19,0,0,0.416328 -28745,7113:495,-135,19,0,0,0.407766 -28746,7113:394,-134,19,0,0,0.399457 -28747,7113:393,-133,19,0,0,0.394316 -28748,7113:392,-132,19,0,0,0.393458 -28749,7113:391,-131,19,0,0,0.391816 -28750,7113:390,-130,19,0,0,0.390691 -28751,7112:499,-129,19,0,0,0.383646 -28752,7112:498,-128,19,0,0,0.371957 -28753,7112:497,-127,19,0,0,0.369608 -28754,7112:496,-126,19,0,0,0.364809 -28755,7112:495,-125,19,0,0,0.357343 -28756,7112:394,-124,19,0,0,0.349875 -28757,7112:393,-123,19,0,0,0.345797 -28758,7112:392,-122,19,0,0,0.339249 -28759,7112:391,-121,19,0,0,0.344264 -28760,7112:390,-120,19,0,0,0.349454 -28761,7111:499,-119,19,0,0,0.350764 -28762,7111:498,-118,19,0,0,0.361933 -28763,7111:497,-117,19,0,0,0.370207 -28764,7111:394,-114,19,0,0,0.49647 -28765,7108:391,-81,19,0,0,0.455363 -28766,7108:390,-80,19,0,0,0.517756 -28767,7107:499,-79,19,0,0,0.576567 -28768,7107:498,-78,19,0,0,0.558869 -28769,7107:497,-77,19,0,0,0.549732 -28770,7107:496,-76,19,0,0,0.555599 -28771,7107:495,-75,19,0,0,0.536602 -28772,7107:394,-74,19,0,0,0.516781 -28773,7107:393,-73,19,0,0,0.510749 -28774,7107:392,-72,19,0,0,0.518269 -28775,7107:391,-71,19,0,0,0.521731 -28776,7107:390,-70,19,0,0,0.518038 -28777,7106:499,-69,19,0,0,0.512521 -28778,7106:498,-68,19,0,0,0.508644 -28779,7106:497,-67,19,0,0,0.505717 -28780,7106:496,-66,19,0,0,0.503919 -28781,7106:495,-65,19,0,0,0.504124 -28782,7106:394,-64,19,0,0,0.50546 -28783,7106:393,-63,19,0,0,0.499089 -28784,7106:392,-62,19,0,0,0.496572 -28785,7106:391,-61,19,0,0,0.498268 -28786,7106:390,-60,19,0,0,0.491821 -28787,7105:499,-59,19,0,0,0.488432 -28788,7105:498,-58,19,0,0,0.485763 -28789,7105:497,-57,19,0,0,0.486225 -28790,7105:496,-56,19,0,0,0.484788 -28791,7105:495,-55,19,0,0,0.486635 -28792,7105:394,-54,19,0,0,0.486584 -28793,7105:393,-53,19,0,0,0.482504 -28794,7105:392,-52,19,0,0,0.478118 -28795,7105:391,-51,19,0,0,0.471969 -28796,7105:390,-50,19,0,0,0.473352 -28797,7104:499,-49,19,0,0,0.475376 -28798,7104:498,-48,19,0,0,0.481426 -28799,7104:497,-47,19,0,0,0.485019 -28800,7104:496,-46,19,0,0,0.479836 -28801,7104:495,-45,19,0,0,0.476171 -28802,7104:394,-44,19,0,0,0.486147 -28803,7104:393,-43,19,0,0,0.485275 -28804,7104:392,-42,19,0,0,0.48566 -28805,7104:391,-41,19,0,0,0.48625 -28806,7104:390,-40,19,0,0,0.486378 -28807,7103:499,-39,19,0,0,0.483042 -28808,7103:498,-38,19,0,0,0.475094 -28809,7103:497,-37,19,0,0,0.475581 -28810,7103:496,-36,19,0,0,0.476631 -28811,7103:495,-35,19,0,0,0.467721 -28812,7103:394,-34,19,0,0,0.468437 -28813,7103:393,-33,19,0,0,0.468488 -28814,7103:392,-32,19,0,0,0.471559 -28815,7103:391,-31,19,0,0,0.462328 -28816,7103:390,-30,19,0,0,0.460515 -28817,7102:499,-29,19,0,0,0.468872 -28818,7102:498,-28,19,0,0,0.462992 -28819,7102:497,-27,19,0,0,0.4598 -28820,7102:496,-26,19,0,0,0.458193 -28821,7102:495,-25,19,0,0,0.462915 -28822,7102:394,-24,19,0,0,0.465266 -28823,7102:393,-23,19,0,0,0.461204 -28824,7102:392,-22,19,0,0,0.457658 -28825,7102:391,-21,19,0,0,0.458116 -28826,7102:390,-20,19,0,0,0.460413 -28827,7101:499,-19,19,0,0,0.462123 -28828,7101:498,-18,19,0,0,0.460413 -28829,7101:497,-17,19,0,0,0.458448 -28830,7101:496,-16,19,0,0,0.454344 -28831,7101:495,-15,19,0,0,0.453427 -28832,7101:394,-14,19,0,0,0.450322 -28833,7101:393,-13,19,0,0,0.450069 -28834,7101:392,-12,19,0,0,0.443086 -28835,7101:391,-11,19,0,0,0.434408 -28836,1101:498,18,19,0,0,0.443922 -28837,1101:499,19,19,0,0,0.453809 -28838,1102:499,29,19,0,0,0.42123 -28839,1112:393,123,19,0,0,0.298907 -28840,1112:394,124,19,0,0,0.414731 -28841,1112:495,125,19,0,0,0.40846 -28842,1112:496,126,19,0,0,0.410647 -28843,1112:497,127,19,0,0,0.443086 -28844,1112:498,128,19,0,0,0.50623 -28845,1112:499,129,19,0,0,0.514805 -28846,1113:390,130,19,0,0,0.500477 -28847,1113:391,131,19,0,0,0.504894 -28848,1113:392,132,19,0,0,0.5205 -28849,1113:393,133,19,0,0,0.508028 -28850,1113:394,134,19,0,0,0.46432 -28851,1113:495,135,19,0,0,0.456255 -28852,1113:496,136,19,0,0,0.469384 -28853,1113:497,137,19,0,0,0.457938 -28854,1113:498,138,19,0,0,0.457351 -28855,1113:499,139,19,0,0,0.464781 -28856,1114:390,140,19,0,0,0.479708 -28857,1114:391,141,19,0,0,0.480785 -28858,1114:392,142,19,0,0,0.480811 -28859,1114:393,143,19,0,0,0.485711 -28860,1114:394,144,19,0,0,0.495288 -28861,1114:495,145,19,0,0,0.493722 -28862,1114:496,146,19,0,0,0.491154 -28863,1114:497,147,19,0,0,0.489177 -28864,1114:498,148,19,0,0,0.489279 -28865,1114:499,149,19,0,0,0.492694 -28866,1115:390,150,19,0,0,0.49236 -28867,1115:391,151,19,0,0,0.491128 -28868,1115:392,152,19,0,0,0.491462 -28869,1115:393,153,19,0,0,0.48951 -28870,1115:394,154,19,0,0,0.484915 -28871,1115:495,155,19,0,0,0.484659 -28872,1115:496,156,19,0,0,0.486378 -28873,1115:497,157,19,0,0,0.487072 -28874,1115:498,158,19,0,0,0.483273 -28875,1115:499,159,19,0,0,0.478426 -28876,1116:390,160,19,0,0,0.473301 -28877,1116:391,161,19,0,0,0.467388 -28878,1116:392,162,19,0,0,0.470996 -28879,1116:393,163,19,0,0,0.475017 -28880,1116:394,164,19,0,0,0.474325 -28881,1116:495,165,19,0,0,0.468437 -28882,1116:496,166,19,0,0,0.46749 -28883,1116:497,167,19,0,0,0.465036 -28884,1116:498,168,19,0,0,0.460642 -28885,1116:499,169,19,0,0,0.460719 -28886,1117:390,170,19,0,0,0.453249 -28887,1117:391,171,19,0,0,0.454472 -28888,1117:392,172,19,0,0,0.456408 -28889,1117:393,173,19,0,0,0.450577 -28890,1117:394,174,19,0,0,0.449763 -28891,1117:495,175,19,0,0,0.442072 -28892,1117:496,176,19,0,0,0.44613 -28893,1117:497,177,19,0,0,0.434736 -28894,1117:498,178,19,0,0,0.439741 -28895,1117:499,179,19,0,0,0.440223 -28896,1118:390,180,19,0,0,0.439235 -28897,7218:100,-180,20,0,0,0.407369 -28898,7217:209,-179,20,0,0,0.40259 -28899,7217:208,-178,20,0,0,0.391841 -28900,7217:207,-177,20,0,0,0.394709 -28901,7217:206,-176,20,0,0,0.389493 -28902,7217:205,-175,20,0,0,0.390471 -28903,7217:104,-174,20,0,0,0.392233 -28904,7217:103,-173,20,0,0,0.395053 -28905,7217:102,-172,20,0,0,0.396208 -28906,7217:101,-171,20,0,0,0.395544 -28907,7217:100,-170,20,0,0,0.396085 -28908,7216:209,-169,20,0,0,0.389981 -28909,7216:208,-168,20,0,0,0.379621 -28910,7216:207,-167,20,0,0,0.382747 -28911,7216:206,-166,20,0,0,0.38964 -28912,7216:205,-165,20,0,0,0.393384 -28913,7216:104,-164,20,0,0,0.395912 -28914,7216:103,-163,20,0,0,0.39788 -28915,7216:102,-162,20,0,0,0.395691 -28916,7216:101,-161,20,0,0,0.374962 -28917,7216:100,-160,20,0,0,0.40027 -28918,7215:209,-159,20,0,0,0.389127 -28919,7215:208,-158,20,0,0,0.403579 -28920,7215:207,-157,20,0,0,0.406402 -28921,7215:206,-156,20,0,0,0.401356 -28922,7215:205,-155,20,0,0,0.399086 -28923,7215:104,-154,20,0,0,0.40665 -28924,7215:103,-153,20,0,0,0.400368 -28925,7215:102,-152,20,0,0,0.41107 -28926,7215:101,-151,20,0,0,0.415604 -28927,7215:100,-150,20,0,0,0.416203 -28928,7214:209,-149,20,0,0,0.417802 -28929,7214:208,-148,20,0,0,0.415854 -28930,7214:207,-147,20,0,0,0.422733 -28931,7214:206,-146,20,0,0,0.427454 -28932,7214:205,-145,20,0,0,0.422533 -28934,7214:103,-143,20,0,0,0.415429 -28935,7214:102,-142,20,0,0,0.412165 -28936,7214:101,-141,20,0,0,0.411518 -28937,7214:100,-140,20,0,0,0.408635 -28938,7213:209,-139,20,0,0,0.408709 -28939,7213:208,-138,20,0,0,0.409355 -28940,7213:207,-137,20,0,0,0.405287 -28941,7213:206,-136,20,0,0,0.401504 -28942,7213:205,-135,20,0,0,0.392453 -28943,7213:104,-134,20,0,0,0.390397 -28944,7213:103,-133,20,0,0,0.387564 -28945,7213:102,-132,20,0,0,0.384034 -28946,7213:101,-131,20,0,0,0.376794 -28947,7213:100,-130,20,0,0,0.370351 -28948,7212:209,-129,20,0,0,0.360345 -28949,7212:208,-128,20,0,0,0.3451 -28950,7212:207,-127,20,0,0,0.348008 -28951,7212:206,-126,20,0,0,0.338995 -28952,7212:205,-125,20,0,0,0.331987 -28953,7212:104,-124,20,0,0,0.334658 -28954,7212:103,-123,20,0,0,0.327831 -28955,7212:102,-122,20,0,0,0.331349 -28956,7212:101,-121,20,0,0,0.331053 -28957,7212:100,-120,20,0,0,0.339571 -28958,7211:209,-119,20,0,0,0.348591 -28959,7211:208,-118,20,0,0,0.355976 -28960,7211:207,-117,20,0,0,0.351981 -28961,7208:100,-80,20,0,0,0.440172 -28962,7207:209,-79,20,0,0,0.506821 -28963,7207:208,-78,20,0,0,0.537854 -28964,7207:207,-77,20,0,0,0.565494 -28965,7207:206,-76,20,0,0,0.565797 -28966,7207:205,-75,20,0,0,0.540764 -28967,7207:104,-74,20,0,0,0.508002 -28968,7207:103,-73,20,0,0,0.512546 -28969,7207:102,-72,20,0,0,0.5004 -28970,7207:101,-71,20,0,0,0.511314 -28971,7207:100,-70,20,0,0,0.514625 -28972,7206:209,-69,20,0,0,0.509337 -28973,7206:208,-68,20,0,0,0.505844 -28974,7206:207,-67,20,0,0,0.500811 -28975,7206:206,-66,20,0,0,0.494158 -28976,7206:205,-65,20,0,0,0.491154 -28977,7206:104,-64,20,0,0,0.487482 -28978,7206:103,-63,20,0,0,0.486481 -28979,7206:102,-62,20,0,0,0.484813 -28980,7206:101,-61,20,0,0,0.4804 -28981,7206:100,-60,20,0,0,0.47817 -28982,7205:209,-59,20,0,0,0.477119 -28983,7205:208,-58,20,0,0,0.473583 -28984,7205:207,-57,20,0,0,0.472379 -28985,7205:206,-56,20,0,0,0.472455 -28986,7205:205,-55,20,0,0,0.471099 -28987,7205:104,-54,20,0,0,0.468642 -28988,7205:103,-53,20,0,0,0.465905 -28989,7205:102,-52,20,0,0,0.463273 -28990,7205:101,-51,20,0,0,0.459545 -28991,7205:100,-50,20,0,0,0.460056 -28992,7204:209,-49,20,0,0,0.461025 -28993,7204:208,-48,20,0,0,0.463758 -28994,7204:207,-47,20,0,0,0.460642 -28995,7204:206,-46,20,0,0,0.451035 -28996,7204:205,-45,20,0,0,0.452663 -28997,7204:104,-44,20,0,0,0.45804 -28998,7204:103,-43,20,0,0,0.466391 -28999,7204:102,-42,20,0,0,0.463273 -29000,7204:101,-41,20,0,0,0.468335 -29001,7204:100,-40,20,0,0,0.472507 -29002,7203:209,-39,20,0,0,0.469486 -29003,7203:208,-38,20,0,0,0.463273 -29004,7203:207,-37,20,0,0,0.454191 -29005,7203:206,-36,20,0,0,0.450272 -29006,7203:205,-35,20,0,0,0.45493 -29007,7203:104,-34,20,0,0,0.457862 -29008,7203:103,-33,20,0,0,0.456586 -29009,7203:102,-32,20,0,0,0.451264 -29010,7203:101,-31,20,0,0,0.447755 -29011,7203:100,-30,20,0,0,0.448899 -29012,7202:209,-29,20,0,0,0.449483 -29013,7202:208,-28,20,0,0,0.454981 -29014,7202:207,-27,20,0,0,0.447755 -29015,7202:206,-26,20,0,0,0.440881 -29016,7202:205,-25,20,0,0,0.444379 -29017,7202:104,-24,20,0,0,0.452205 -29018,7202:103,-23,20,0,0,0.448238 -29019,7202:102,-22,20,0,0,0.445242 -29020,7202:101,-21,20,0,0,0.450577 -29021,7202:100,-20,20,0,0,0.451747 -29022,7201:209,-19,20,0,0,0.450882 -29023,7201:208,-18,20,0,0,0.450043 -29024,7201:207,-17,20,0,0,0.446079 -29025,7201:206,-16,20,0,0,0.442604 -29026,7201:205,-15,20,0,0,0.445952 -29027,7201:104,-14,20,0,0,0.444632 -29028,7201:103,-13,20,0,0,0.445369 -29029,7201:102,-12,20,0,0,0.440552 -29030,7201:101,-11,20,0,0,0.423235 -29031,7201:100,-10,20,0,0,0.399161 -29032,1201:206,16,20,0,0,0.427881 -29033,1201:207,17,20,0,0,0.420779 -29034,1201:208,18,20,0,0,0.428661 -29035,1201:209,19,20,0,0,0.445064 -29036,1202:104,24,20,0,0,0.445318 -29037,1202:205,25,20,0,0,0.443618 -29038,1202:206,26,20,0,0,0.439944 -29039,1202:207,27,20,0,0,0.439362 -29040,1202:208,28,20,0,0,0.439792 -29041,1202:209,29,20,0,0,0.446511 -29042,1203:100,30,20,0,0,0.457938 -29043,1203:101,31,20,0,0,0.464499 -29044,1203:102,32,20,0,0,0.466851 -29045,1203:103,33,20,0,0,0.459672 -29046,1203:104,34,20,0,0,0.476709 -29047,1212:101,121,20,0,0,0.262279 -29048,1212:102,122,20,0,0,0.246307 -29049,1212:103,123,20,0,0,0.306759 -29050,1212:104,124,20,0,0,0.348918 -29051,1212:205,125,20,0,0,0.382116 -29052,1212:206,126,20,0,0,0.433903 -29053,1212:207,127,20,0,0,0.471687 -29054,1212:208,128,20,0,0,0.493696 -29055,1212:209,129,20,0,0,0.481195 -29056,1213:100,130,20,0,0,0.47243 -29057,1213:102,132,20,0,0,0.501787 -29058,1213:103,133,20,0,0,0.5185 -29059,1213:104,134,20,0,0,0.509414 -29060,1213:205,135,20,0,0,0.476555 -29061,1213:206,136,20,0,0,0.459086 -29062,1213:207,137,20,0,0,0.458091 -29063,1213:208,138,20,0,0,0.45975 -29064,1213:209,139,20,0,0,0.462762 -29065,1214:100,140,20,0,0,0.465982 -29066,1214:101,141,20,0,0,0.469153 -29067,1214:102,142,20,0,0,0.480016 -29068,1214:103,143,20,0,0,0.487174 -29069,1214:104,144,20,0,0,0.483658 -29070,1214:205,145,20,0,0,0.482453 -29071,1214:206,146,20,0,0,0.474197 -29072,1214:207,147,20,0,0,0.46946 -29073,1214:208,148,20,0,0,0.471637 -29074,1214:209,149,20,0,0,0.474325 -29075,1215:100,150,20,0,0,0.477119 -29076,1215:101,151,20,0,0,0.482529 -29077,1215:102,152,20,0,0,0.489074 -29078,1215:103,153,20,0,0,0.484607 -29079,1215:104,154,20,0,0,0.487328 -29080,1215:205,155,20,0,0,0.484531 -29081,1215:206,156,20,0,0,0.483146 -29082,1215:207,157,20,0,0,0.48548 -29083,1215:208,158,20,0,0,0.470715 -29084,1215:209,159,20,0,0,0.46031 -29085,1216:100,160,20,0,0,0.453478 -29086,1216:101,161,20,0,0,0.451543 -29087,1216:102,162,20,0,0,0.437945 -29088,1216:103,163,20,0,0,0.443618 -29089,1216:104,164,20,0,0,0.439488 -29090,1216:205,165,20,0,0,0.437996 -29091,1216:206,166,20,0,0,0.441641 -29092,1216:207,167,20,0,0,0.43307 -29093,1216:208,168,20,0,0,0.436807 -29094,1216:209,169,20,0,0,0.432919 -29095,1217:100,170,20,0,0,0.438552 -29096,1217:101,171,20,0,0,0.433373 -29097,1217:102,172,20,0,0,0.421656 -29098,1217:103,173,20,0,0,0.419303 -29099,1217:104,174,20,0,0,0.419027 -29100,1217:205,175,20,0,0,0.421556 -29101,1217:206,176,20,0,0,0.420528 -29102,1217:207,177,20,0,0,0.417277 -29103,1217:208,178,20,0,0,0.408983 -29104,1217:209,179,20,0,0,0.410647 -29105,1218:100,180,20,0,0,0.407369 -29106,7218:110,-180,21,0,0,0.377638 -29107,7217:219,-179,21,0,0,0.380735 -29108,7217:218,-178,21,0,0,0.374168 -29109,7217:217,-177,21,0,0,0.368436 -29110,7217:216,-176,21,0,0,0.364238 -29111,7217:215,-175,21,0,0,0.365214 -29112,7217:114,-174,21,0,0,0.372173 -29113,7217:113,-173,21,0,0,0.365857 -29114,7217:112,-172,21,0,0,0.371309 -29115,7217:111,-171,21,0,0,0.380008 -29116,7217:110,-170,21,0,0,0.381292 -29117,7216:219,-169,21,0,0,0.373518 -29118,7216:218,-168,21,0,0,0.363026 -29119,7216:217,-167,21,0,0,0.36343 -29120,7216:216,-166,21,0,0,0.365405 -29121,7216:215,-165,21,0,0,0.372245 -29122,7216:114,-164,21,0,0,0.360227 -29123,7216:113,-163,21,0,0,0.364857 -29124,7216:112,-162,21,0,0,0.357131 -29125,7216:111,-161,21,0,0,0.370662 -29126,7216:110,-160,21,0,0,0.381389 -29127,7215:219,-159,21,0,0,0.383718 -29128,7215:218,-158,21,0,0,0.377373 -29129,7215:217,-157,21,0,0,0.383694 -29130,7215:216,-156,21,0,0,0.377373 -29131,7215:215,-155,21,0,0,0.388223 -29132,7215:114,-154,21,0,0,0.382019 -29133,7215:113,-153,21,0,0,0.386224 -29134,7215:112,-152,21,0,0,0.39096 -29135,7215:111,-151,21,0,0,0.395839 -29136,7215:110,-150,21,0,0,0.399407 -29137,7214:219,-149,21,0,0,0.395519 -29138,7214:218,-148,21,0,0,0.401479 -29139,7214:217,-147,21,0,0,0.400492 -29140,7214:216,-146,21,0,0,0.400245 -29141,7214:215,-145,21,0,0,0.40551 -29142,7214:114,-144,21,0,0,0.404742 -29143,7214:113,-143,21,0,0,0.402665 -29144,7214:112,-142,21,0,0,0.399851 -29145,7214:111,-141,21,0,0,0.393286 -29146,7214:110,-140,21,0,0,0.388907 -29147,7213:219,-139,21,0,0,0.394709 -29148,7213:218,-138,21,0,0,0.399259 -29149,7213:217,-137,21,0,0,0.39211 -29150,7213:216,-136,21,0,0,0.389688 -29151,7213:215,-135,21,0,0,0.382456 -29152,7213:114,-134,21,0,0,0.380444 -29153,7213:113,-133,21,0,0,0.373543 -29154,7213:112,-132,21,0,0,0.369919 -29155,7213:111,-131,21,0,0,0.367002 -29156,7213:110,-130,21,0,0,0.349128 -29157,7212:219,-129,21,0,0,0.348311 -29158,7212:218,-128,21,0,0,0.349408 -29159,7212:217,-127,21,0,0,0.335872 -29160,7212:216,-126,21,0,0,0.334406 -29161,7212:215,-125,21,0,0,0.328079 -29162,7212:114,-124,21,0,0,0.311037 -29163,7212:113,-123,21,0,0,0.310442 -29164,7212:112,-122,21,0,0,0.317123 -29165,7212:111,-121,21,0,0,0.324961 -29166,7212:110,-120,21,0,0,0.334452 -29167,7211:219,-119,21,0,0,0.342111 -29168,7211:218,-118,21,0,0,0.336422 -29169,7207:219,-79,21,0,0,0.396798 -29170,7207:218,-78,21,0,0,0.440703 -29171,7207:217,-77,21,0,0,0.487508 -29172,7207:216,-76,21,0,0,0.55537 -29173,7207:215,-75,21,0,0,0.547568 -29174,7207:114,-74,21,0,0,0.512931 -29175,7207:113,-73,21,0,0,0.507489 -29176,7207:112,-72,21,0,0,0.500117 -29177,7207:111,-71,21,0,0,0.498165 -29178,7207:110,-70,21,0,0,0.498755 -29179,7206:219,-69,21,0,0,0.502044 -29180,7206:218,-68,21,0,0,0.503816 -29181,7206:217,-67,21,0,0,0.497292 -29182,7206:216,-66,21,0,0,0.498755 -29183,7206:215,-65,21,0,0,0.498294 -29184,7206:114,-64,21,0,0,0.498345 -29185,7206:113,-63,21,0,0,0.492617 -29186,7206:112,-62,21,0,0,0.480811 -29187,7206:111,-61,21,0,0,0.476964 -29188,7206:110,-60,21,0,0,0.477093 -29189,7205:219,-59,21,0,0,0.476247 -29190,7205:218,-58,21,0,0,0.471944 -29191,7205:217,-57,21,0,0,0.468233 -29192,7205:216,-56,21,0,0,0.467286 -29193,7205:215,-55,21,0,0,0.460413 -29194,7205:114,-54,21,0,0,0.452307 -29195,7205:113,-53,21,0,0,0.449687 -29196,7205:112,-52,21,0,0,0.448975 -29197,7205:111,-51,21,0,0,0.451671 -29198,7205:110,-50,21,0,0,0.44984 -29199,7204:219,-49,21,0,0,0.452231 -29200,7204:218,-48,21,0,0,0.449255 -29201,7204:217,-47,21,0,0,0.441616 -29202,7204:216,-46,21,0,0,0.437718 -29203,7204:215,-45,21,0,0,0.443136 -29204,7204:114,-44,21,0,0,0.439817 -29205,7204:113,-43,21,0,0,0.434888 -29206,7204:112,-42,21,0,0,0.443162 -29207,7204:111,-41,21,0,0,0.447857 -29208,7204:110,-40,21,0,0,0.445699 -29209,7203:219,-39,21,0,0,0.441919 -29210,7203:218,-38,21,0,0,0.433676 -29211,7203:217,-37,21,0,0,0.439691 -29212,7203:216,-36,21,0,0,0.442832 -29213,7203:215,-35,21,0,0,0.435923 -29214,7203:114,-34,21,0,0,0.435367 -29215,7203:113,-33,21,0,0,0.418627 -29216,7203:112,-32,21,0,0,0.440122 -29217,7203:111,-31,21,0,0,0.437718 -29218,7203:110,-30,21,0,0,0.434509 -29219,7202:219,-29,21,0,0,0.434787 -29220,7202:218,-28,21,0,0,0.439488 -29221,7202:217,-27,21,0,0,0.43128 -29222,7202:216,-26,21,0,0,0.426197 -29223,7202:215,-25,21,0,0,0.423912 -29224,7202:114,-24,21,0,0,0.427428 -29225,7202:113,-23,21,0,0,0.433827 -29226,7202:112,-22,21,0,0,0.434307 -29227,7202:111,-21,21,0,0,0.445699 -29228,7202:110,-20,21,0,0,0.443364 -29229,7201:219,-19,21,0,0,0.44154 -29230,7201:218,-18,21,0,0,0.442097 -29231,7201:217,-17,21,0,0,0.440577 -29232,7201:216,-16,21,0,0,0.437439 -29233,7201:215,-15,21,0,0,0.437894 -29234,7201:114,-14,21,0,0,0.437819 -29235,7201:113,-13,21,0,0,0.436479 -29236,7201:112,-12,21,0,0,0.435822 -29237,7201:111,-11,21,0,0,0.434382 -29238,7201:110,-10,21,0,0,0.433524 -29239,7200:219,-9,21,0,0,0.41346 -29240,7200:218,-8,21,0,0,0.394341 -29241,1201:111,11,21,0,0,0.386127 -29242,1201:112,12,21,0,0,0.408684 -29243,1201:113,13,21,0,0,0.410797 -29244,1201:114,14,21,0,0,0.419152 -29245,1201:215,15,21,0,0,0.408783 -29246,1201:216,16,21,0,0,0.425368 -29247,1201:217,17,21,0,0,0.418302 -29248,1201:218,18,21,0,0,0.40353 -29249,1201:219,19,21,0,0,0.416378 -29250,1202:110,20,21,0,0,0.413435 -29251,1202:111,21,21,0,0,0.429744 -29252,1202:112,22,21,0,0,0.43128 -29253,1202:113,23,21,0,0,0.424239 -29254,1202:114,24,21,0,0,0.424715 -29255,1202:215,25,21,0,0,0.420203 -29256,1202:216,26,21,0,0,0.428988 -29257,1202:217,27,21,0,0,0.430675 -29258,1202:218,28,21,0,0,0.426121 -29259,1202:219,29,21,0,0,0.432364 -29260,1203:110,30,21,0,0,0.43254 -29261,1203:111,31,21,0,0,0.441337 -29262,1203:112,32,21,0,0,0.441995 -29263,1203:113,33,21,0,0,0.450704 -29264,1203:114,34,21,0,0,0.479708 -29265,1212:112,122,21,0,0,0.229074 -29266,1212:113,123,21,0,0,0.302754 -29267,1212:114,124,21,0,0,0.384301 -29268,1212:215,125,21,0,0,0.417327 -29269,1212:216,126,21,0,0,0.446866 -29270,1212:218,128,21,0,0,0.481042 -29271,1212:219,129,21,0,0,0.468437 -29272,1213:110,130,21,0,0,0.402912 -29273,1213:114,134,21,0,0,0.485275 -29274,1213:215,135,21,0,0,0.497446 -29275,1213:216,136,21,0,0,0.500169 -29276,1213:217,137,21,0,0,0.504175 -29277,1213:218,138,21,0,0,0.501607 -29278,1213:219,139,21,0,0,0.494929 -29279,1214:110,140,21,0,0,0.490204 -29280,1214:111,141,21,0,0,0.480631 -29281,1214:112,142,21,0,0,0.472738 -29282,1214:113,143,21,0,0,0.478887 -29283,1214:114,144,21,0,0,0.477503 -29284,1214:215,145,21,0,0,0.470049 -29285,1214:216,146,21,0,0,0.470843 -29286,1214:217,147,21,0,0,0.473532 -29287,1214:218,148,21,0,0,0.462634 -29288,1214:219,149,21,0,0,0.461306 -29289,1215:110,150,21,0,0,0.469103 -29290,1215:111,151,21,0,0,0.473096 -29291,1215:112,152,21,0,0,0.483427 -29292,1215:113,153,21,0,0,0.483915 -29293,1215:114,154,21,0,0,0.474505 -29294,1215:215,155,21,0,0,0.476555 -29295,1215:216,156,21,0,0,0.478452 -29296,1215:217,157,21,0,0,0.478528 -29297,1215:218,158,21,0,0,0.475837 -29298,1215:219,159,21,0,0,0.463043 -29299,1216:110,160,21,0,0,0.453682 -29300,1216:111,161,21,0,0,0.431658 -29301,1216:112,162,21,0,0,0.421205 -29302,1216:113,163,21,0,0,0.417227 -29303,1216:114,164,21,0,0,0.411518 -29304,1216:215,165,21,0,0,0.41025 -29305,1216:216,166,21,0,0,0.412837 -29306,1216:217,167,21,0,0,0.413435 -29307,1216:218,168,21,0,0,0.412065 -29308,1216:219,169,21,0,0,0.408238 -29309,1217:110,170,21,0,0,0.406352 -29310,1217:111,171,21,0,0,0.403407 -29311,1217:112,172,21,0,0,0.400467 -29312,1217:113,173,21,0,0,0.395397 -29313,1217:114,174,21,0,0,0.385786 -29314,1217:215,175,21,0,0,0.379717 -29315,1217:216,176,21,0,0,0.37996 -29316,1217:217,177,21,0,0,0.380129 -29317,1217:218,178,21,0,0,0.37648 -29318,1217:219,179,21,0,0,0.375516 -29319,1218:110,180,21,0,0,0.377638 -29320,7218:120,-180,22,0,0,0.357791 -29321,7217:229,-179,22,0,0,0.353765 -29322,7217:228,-178,22,0,0,0.347472 -29323,7217:227,-177,22,0,0,0.343198 -29324,7217:226,-176,22,0,0,0.340125 -29325,7217:225,-175,22,0,0,0.340078 -29326,7217:124,-174,22,0,0,0.33918 -29327,7217:123,-173,22,0,0,0.338604 -29328,7217:122,-172,22,0,0,0.340078 -29329,7217:121,-171,22,0,0,0.342712 -29330,7217:120,-170,22,0,0,0.341325 -29331,7216:229,-169,22,0,0,0.332876 -29332,7216:228,-168,22,0,0,0.333219 -29333,7216:227,-167,22,0,0,0.33578 -29334,7216:226,-166,22,0,0,0.339203 -29335,7216:225,-165,22,0,0,0.337133 -29336,7216:124,-164,22,0,0,0.337961 -29337,7216:123,-163,22,0,0,0.335505 -29338,7216:122,-162,22,0,0,0.336147 -29339,7216:121,-161,22,0,0,0.342018 -29340,7216:120,-160,22,0,0,0.351349 -29341,7215:229,-159,22,0,0,0.359848 -29342,7215:228,-158,22,0,0,0.358075 -29343,7215:227,-157,22,0,0,0.359919 -29344,7215:226,-156,22,0,0,0.35487 -29345,7215:225,-155,22,0,0,0.358548 -29346,7215:124,-154,22,0,0,0.359233 -29347,7215:123,-153,22,0,0,0.365357 -29348,7215:122,-152,22,0,0,0.368746 -29349,7215:121,-151,22,0,0,0.370207 -29350,7215:120,-150,22,0,0,0.373855 -29351,7214:229,-149,22,0,0,0.376746 -29352,7214:228,-148,22,0,0,0.377663 -29353,7214:227,-147,22,0,0,0.382165 -29354,7214:226,-146,22,0,0,0.384448 -29355,7214:225,-145,22,0,0,0.387808 -29356,7214:124,-144,22,0,0,0.381485 -29357,7214:123,-143,22,0,0,0.379161 -29358,7214:122,-142,22,0,0,0.379717 -29359,7214:121,-141,22,0,0,0.376939 -29360,7214:120,-140,22,0,0,0.379209 -29361,7213:229,-139,22,0,0,0.377132 -29362,7213:228,-138,22,0,0,0.38435 -29363,7213:227,-137,22,0,0,0.380299 -29364,7213:226,-136,22,0,0,0.379476 -29365,7213:225,-135,22,0,0,0.372869 -29366,7213:124,-134,22,0,0,0.374529 -29367,7213:123,-133,22,0,0,0.363881 -29368,7213:122,-132,22,0,0,0.358618 -29369,7213:121,-131,22,0,0,0.355999 -29370,7213:120,-130,22,0,0,0.349128 -29371,7212:229,-129,22,0,0,0.336743 -29372,7212:228,-128,22,0,0,0.328669 -29373,7212:227,-127,22,0,0,0.322509 -29374,7212:226,-126,22,0,0,0.311014 -29375,7212:225,-125,22,0,0,0.307744 -29376,7212:124,-124,22,0,0,0.301173 -29377,7212:123,-123,22,0,0,0.300957 -29378,7212:122,-122,22,0,0,0.307088 -29379,7212:121,-121,22,0,0,0.308554 -29380,7207:227,-77,22,0,0,0.391645 -29381,7207:226,-76,22,0,0,0.454064 -29382,7207:225,-75,22,0,0,0.551435 -29383,7207:124,-74,22,0,0,0.523755 -29384,7207:123,-73,22,0,0,0.504303 -29385,7207:122,-72,22,0,0,0.484864 -29386,7207:121,-71,22,0,0,0.490974 -29387,7207:120,-70,22,0,0,0.493645 -29388,7206:229,-69,22,0,0,0.499372 -29389,7206:228,-68,22,0,0,0.499526 -29390,7206:227,-67,22,0,0,0.497728 -29391,7206:226,-66,22,0,0,0.493542 -29392,7206:225,-65,22,0,0,0.484326 -29393,7206:124,-64,22,0,0,0.47817 -29394,7206:123,-63,22,0,0,0.467644 -29395,7206:122,-62,22,0,0,0.453809 -29396,7206:121,-61,22,0,0,0.462328 -29397,7206:120,-60,22,0,0,0.467388 -29398,7205:229,-59,22,0,0,0.454089 -29399,7205:228,-58,22,0,0,0.441235 -29400,7205:227,-57,22,0,0,0.448492 -29401,7205:226,-56,22,0,0,0.439792 -29402,7205:225,-55,22,0,0,0.447121 -29403,7205:124,-54,22,0,0,0.449535 -29404,7205:123,-53,22,0,0,0.440906 -29405,7205:122,-52,22,0,0,0.441413 -29406,7205:121,-51,22,0,0,0.441463 -29407,7205:120,-50,22,0,0,0.436631 -29408,7204:229,-49,22,0,0,0.436833 -29409,7204:228,-48,22,0,0,0.436403 -29410,7204:227,-47,22,0,0,0.425017 -29411,7204:226,-46,22,0,0,0.431406 -29412,7204:225,-45,22,0,0,0.432011 -29413,7204:124,-44,22,0,0,0.426398 -29414,7204:123,-43,22,0,0,0.420353 -29415,7204:122,-42,22,0,0,0.420704 -29416,7204:121,-41,22,0,0,0.425594 -29417,7204:120,-40,22,0,0,0.432163 -29418,7203:229,-39,22,0,0,0.41528 -29419,7203:228,-38,22,0,0,0.405114 -29420,7203:227,-37,22,0,0,0.415081 -29421,7203:226,-36,22,0,0,0.417377 -29422,7203:225,-35,22,0,0,0.420003 -29423,7203:124,-34,22,0,0,0.416078 -29424,7203:123,-33,22,0,0,0.408535 -29425,7203:122,-32,22,0,0,0.412239 -29426,7203:121,-31,22,0,0,0.407171 -29427,7203:120,-30,22,0,0,0.410174 -29428,7202:229,-29,22,0,0,0.415155 -29429,7202:228,-28,22,0,0,0.419352 -29430,7202:227,-27,22,0,0,0.416627 -29431,7202:226,-26,22,0,0,0.400196 -29432,7202:225,-25,22,0,0,0.413909 -29433,7202:124,-24,22,0,0,0.411319 -29434,7202:123,-23,22,0,0,0.416528 -29435,7202:122,-22,22,0,0,0.417527 -29436,7202:121,-21,22,0,0,0.423887 -29437,7202:120,-20,22,0,0,0.425117 -29438,7201:229,-19,22,0,0,0.416952 -29439,7201:228,-18,22,0,0,0.425041 -29440,7201:227,-17,22,0,0,0.427907 -29441,7201:226,-16,22,0,0,0.43191 -29442,7201:225,-15,22,0,0,0.423335 -29443,7201:124,-14,22,0,0,0.431533 -29444,7201:123,-13,22,0,0,0.428108 -29445,7201:122,-12,22,0,0,0.427956 -29446,7201:121,-11,22,0,0,0.430801 -29447,7201:120,-10,22,0,0,0.423661 -29448,7200:229,-9,22,0,0,0.418127 -29449,7200:228,-8,22,0,0,0.408485 -29450,7200:227,-7,22,0,0,0.392649 -29451,1201:121,11,22,0,0,0.371837 -29452,1201:122,12,22,0,0,0.400591 -29453,1201:123,13,22,0,0,0.402072 -29454,1201:124,14,22,0,0,0.413261 -29455,1201:225,15,22,0,0,0.399876 -29456,1201:226,16,22,0,0,0.39466 -29457,1201:227,17,22,0,0,0.391866 -29458,1201:228,18,22,0,0,0.394954 -29459,1201:229,19,22,0,0,0.399604 -29460,1202:120,20,22,0,0,0.406327 -29461,1202:121,21,22,0,0,0.414606 -29462,1202:122,22,22,0,0,0.418952 -29463,1202:123,23,22,0,0,0.416903 -29464,1202:124,24,22,0,0,0.414482 -29465,1202:225,25,22,0,0,0.413659 -29466,1202:226,26,22,0,0,0.415779 -29467,1202:227,27,22,0,0,0.416478 -29468,1202:228,28,22,0,0,0.415829 -29469,1202:229,29,22,0,0,0.420679 -29470,1203:120,30,22,0,0,0.429014 -29471,1203:121,31,22,0,0,0.431028 -29472,1203:122,32,22,0,0,0.43754 -29473,1203:123,33,22,0,0,0.442173 -29474,1203:124,34,22,0,0,0.445064 -29475,1203:225,35,22,0,0,0.486943 -29476,1212:121,121,22,0,0,0.23859 -29477,1212:122,122,22,0,0,0.282347 -29478,1212:123,123,22,0,0,0.355316 -29479,1212:124,124,22,0,0,0.389737 -29480,1212:225,125,22,0,0,0.351162 -29481,1212:226,126,22,0,0,0.30139 -29482,1212:228,128,22,0,0,0.254367 -29483,1212:229,129,22,0,0,0.328442 -29484,1213:120,130,22,0,0,0.425694 -29485,1213:121,131,22,0,0,0.444658 -29486,1213:225,135,22,0,0,0.320604 -29487,1213:227,137,22,0,0,0.358193 -29488,1213:229,139,22,0,0,0.432414 -29489,1214:120,140,22,0,0,0.442629 -29490,1214:121,141,22,0,0,0.455057 -29491,1214:122,142,22,0,0,0.473941 -29492,1214:123,143,22,0,0,0.479247 -29493,1214:124,144,22,0,0,0.472763 -29494,1214:225,145,22,0,0,0.430877 -29495,1214:226,146,22,0,0,0.417802 -29496,1214:227,147,22,0,0,0.455618 -29497,1214:228,148,22,0,0,0.479118 -29498,1214:229,149,22,0,0,0.473121 -29499,1215:120,150,22,0,0,0.478554 -29500,1215:121,151,22,0,0,0.455236 -29501,1215:122,152,22,0,0,0.476504 -29502,1215:123,153,22,0,0,0.483633 -29503,1215:124,154,22,0,0,0.47999 -29504,1215:225,155,22,0,0,0.48135 -29505,1215:226,156,22,0,0,0.466289 -29506,1215:227,157,22,0,0,0.474941 -29507,1215:228,158,22,0,0,0.448822 -29508,1215:229,159,22,0,0,0.455057 -29509,1216:120,160,22,0,0,0.445927 -29510,1216:121,161,22,0,0,0.430474 -29511,1216:122,162,22,0,0,0.414706 -29512,1216:123,163,22,0,0,0.407692 -29513,1216:124,164,22,0,0,0.404223 -29514,1216:225,165,22,0,0,0.396921 -29515,1216:226,166,22,0,0,0.389664 -29516,1216:227,167,22,0,0,0.389713 -29517,1216:228,168,22,0,0,0.390642 -29518,1216:229,169,22,0,0,0.391523 -29519,1217:120,170,22,0,0,0.389542 -29520,1217:121,171,22,0,0,0.384642 -29521,1217:122,172,22,0,0,0.379669 -29522,1217:123,173,22,0,0,0.383452 -29523,1217:124,174,22,0,0,0.374866 -29524,1217:225,175,22,0,0,0.36956 -29525,1217:226,176,22,0,0,0.368842 -29526,1217:227,177,22,0,0,0.361293 -29527,1217:228,178,22,0,0,0.357603 -29528,1217:229,179,22,0,0,0.355811 -29529,1218:120,180,22,0,0,0.357791 -29530,7218:130,-180,23,0,0,0.334429 -29531,7217:239,-179,23,0,0,0.336513 -29532,7217:238,-178,23,0,0,0.333035 -29533,7217:237,-177,23,0,0,0.325774 -29534,7217:236,-176,23,0,0,0.327106 -29535,7217:235,-175,23,0,0,0.326745 -29536,7217:134,-174,23,0,0,0.32085 -29537,7217:133,-173,23,0,0,0.319576 -29538,7217:132,-172,23,0,0,0.318215 -29539,7217:131,-171,23,0,0,0.314925 -29540,7217:130,-170,23,0,0,0.313773 -29541,7216:239,-169,23,0,0,0.313331 -29542,7216:238,-168,23,0,0,0.316501 -29543,7216:237,-167,23,0,0,0.317969 -29544,7216:236,-166,23,0,0,0.320627 -29545,7216:235,-165,23,0,0,0.321433 -29546,7216:134,-164,23,0,0,0.321164 -29547,7216:133,-163,23,0,0,0.32085 -29548,7216:132,-162,23,0,0,0.321702 -29549,7216:131,-161,23,0,0,0.330439 -29550,7216:130,-160,23,0,0,0.330644 -29551,7215:239,-159,23,0,0,0.329213 -29552,7215:238,-158,23,0,0,0.333835 -29553,7215:237,-157,23,0,0,0.336972 -29554,7215:236,-156,23,0,0,0.337432 -29555,7215:235,-155,23,0,0,0.341025 -29556,7215:134,-154,23,0,0,0.342712 -29557,7215:133,-153,23,0,0,0.349618 -29558,7215:132,-152,23,0,0,0.352685 -29559,7215:131,-151,23,0,0,0.352286 -29560,7215:130,-150,23,0,0,0.349408 -29561,7214:239,-149,23,0,0,0.36134 -29562,7214:238,-148,23,0,0,0.353553 -29563,7214:237,-147,23,0,0,0.362836 -29564,7214:236,-146,23,0,0,0.35534 -29565,7214:235,-145,23,0,0,0.358783 -29566,7214:134,-144,23,0,0,0.361412 -29567,7214:133,-143,23,0,0,0.341533 -29568,7214:132,-142,23,0,0,0.346122 -29569,7214:131,-141,23,0,0,0.364547 -29570,7214:130,-140,23,0,0,0.355999 -29571,7213:239,-139,23,0,0,0.363145 -29572,7213:238,-138,23,0,0,0.357414 -29573,7213:237,-137,23,0,0,0.350016 -29574,7213:236,-136,23,0,0,0.364476 -29575,7213:235,-135,23,0,0,0.359848 -29576,7213:134,-134,23,0,0,0.358453 -29577,7213:133,-133,23,0,0,0.345053 -29578,7213:132,-132,23,0,0,0.340817 -29579,7213:131,-131,23,0,0,0.336032 -29580,7213:130,-130,23,0,0,0.32944 -29581,7212:239,-129,23,0,0,0.318058 -29582,7212:238,-128,23,0,0,0.307043 -29583,7212:237,-127,23,0,0,0.310904 -29584,7212:236,-126,23,0,0,0.316745 -29585,7212:235,-125,23,0,0,0.310046 -29586,7212:134,-124,23,0,0,0.293766 -29587,7212:133,-123,23,0,0,0.297274 -29588,7212:132,-122,23,0,0,0.296223 -29589,7207:235,-75,23,0,0,0.472148 -29590,7207:134,-74,23,0,0,0.540432 -29591,7207:133,-73,23,0,0,0.527496 -29592,7207:132,-72,23,0,0,0.481555 -29593,7207:131,-71,23,0,0,0.485198 -29594,7207:130,-70,23,0,0,0.502506 -29595,7206:239,-69,23,0,0,0.489228 -29596,7206:238,-68,23,0,0,0.49498 -29597,7206:237,-67,23,0,0,0.490589 -29598,7206:236,-66,23,0,0,0.474505 -29599,7206:235,-65,23,0,0,0.47284 -29600,7206:134,-64,23,0,0,0.466621 -29601,7206:133,-63,23,0,0,0.460234 -29602,7206:132,-62,23,0,0,0.462251 -29603,7206:131,-61,23,0,0,0.452791 -29604,7206:130,-60,23,0,0,0.443948 -29605,7205:239,-59,23,0,0,0.441489 -29606,7205:238,-58,23,0,0,0.435241 -29607,7205:237,-57,23,0,0,0.4306 -29608,7205:236,-56,23,0,0,0.430978 -29609,7205:235,-55,23,0,0,0.433095 -29610,7205:134,-54,23,0,0,0.428309 -29611,7205:133,-53,23,0,0,0.425946 -29612,7205:132,-52,23,0,0,0.433373 -29613,7205:131,-51,23,0,0,0.434837 -29614,7205:130,-50,23,0,0,0.424062 -29615,7204:239,-49,23,0,0,0.416103 -29616,7204:238,-48,23,0,0,0.419903 -29617,7204:237,-47,23,0,0,0.414033 -29618,7204:236,-46,23,0,0,0.416203 -29619,7204:235,-45,23,0,0,0.415305 -29620,7204:134,-44,23,0,0,0.409479 -29621,7204:133,-43,23,0,0,0.404817 -29622,7204:132,-42,23,0,0,0.400961 -29623,7204:131,-41,23,0,0,0.408213 -29624,7204:130,-40,23,0,0,0.405857 -29625,7203:239,-39,23,0,0,0.393434 -29626,7203:238,-38,23,0,0,0.39238 -29627,7203:237,-37,23,0,0,0.396158 -29628,7203:236,-36,23,0,0,0.400171 -29629,7203:235,-35,23,0,0,0.386492 -29630,7203:134,-34,23,0,0,0.396232 -29631,7203:133,-33,23,0,0,0.387394 -29632,7203:132,-32,23,0,0,0.389298 -29633,7203:131,-31,23,0,0,0.387126 -29634,7203:130,-30,23,0,0,0.385177 -29635,7202:239,-29,23,0,0,0.40222 -29636,7202:238,-28,23,0,0,0.391841 -29637,7202:237,-27,23,0,0,0.38367 -29638,7202:236,-26,23,0,0,0.391425 -29639,7202:235,-25,23,0,0,0.392453 -29640,7202:134,-24,23,0,0,0.402739 -29641,7202:133,-23,23,0,0,0.399235 -29642,7202:132,-22,23,0,0,0.406625 -29643,7202:131,-21,23,0,0,0.402443 -29644,7202:130,-20,23,0,0,0.405683 -29645,7201:239,-19,23,0,0,0.411443 -29646,7201:238,-18,23,0,0,0.410896 -29647,7201:237,-17,23,0,0,0.41356 -29648,7201:236,-16,23,0,0,0.415829 -29649,7201:235,-15,23,0,0,0.415804 -29650,7201:134,-14,23,0,0,0.410647 -29651,7201:133,-13,23,0,0,0.402566 -29652,7201:132,-12,23,0,0,0.404495 -29653,7201:131,-11,23,0,0,0.409851 -29654,7201:130,-10,23,0,0,0.383111 -29655,7200:239,-9,23,0,0,0.379548 -29656,7200:238,-8,23,0,0,0.375757 -29657,7200:237,-7,23,0,0,0.379355 -29658,7200:236,-6,23,0,0,0.357202 -29659,7200:235,-5,23,0,0,0.349688 -29660,7200:134,-4,23,0,0,0.332533 -29661,7200:133,-3,23,0,0,0.344984 -29662,7200:132,-2,23,0,0,0.352263 -29663,7200:131,-1,23,0,0,0.367552 -29664,1201:131,11,23,0,0,0.395348 -29665,1201:132,12,23,0,0,0.395987 -29666,1201:133,13,23,0,0,0.386736 -29667,1201:134,14,23,0,0,0.378798 -29668,1201:235,15,23,0,0,0.392722 -29669,1201:236,16,23,0,0,0.396674 -29670,1201:237,17,23,0,0,0.396109 -29671,1201:238,18,23,0,0,0.396724 -29672,1201:239,19,23,0,0,0.402888 -29673,1202:130,20,23,0,0,0.418252 -29674,1202:131,21,23,0,0,0.418827 -29675,1202:132,22,23,0,0,0.418952 -29676,1202:133,23,23,0,0,0.414282 -29677,1202:134,24,23,0,0,0.415879 -29678,1202:235,25,23,0,0,0.418452 -29679,1202:236,26,23,0,0,0.414931 -29680,1202:237,27,23,0,0,0.425569 -29681,1202:238,28,23,0,0,0.424916 -29682,1202:239,29,23,0,0,0.42846 -29683,1203:130,30,23,0,0,0.425041 -29684,1203:131,31,23,0,0,0.436807 -29685,1203:132,32,23,0,0,0.44989 -29686,1203:133,33,23,0,0,0.45274 -29687,1203:134,34,23,0,0,0.444937 -29688,1203:235,35,23,0,0,0.482915 -29689,1212:130,120,23,0,0,0.257359 -29691,1212:132,122,23,0,0,0.274606 -29692,1212:133,123,23,0,0,0.331486 -29693,1212:134,124,23,0,0,0.367528 -29694,1212:235,125,23,0,0,0.35238 -29695,1212:236,126,23,0,0,0.304144 -29696,1213:130,130,23,0,0,0.407171 -29697,1213:131,131,23,0,0,0.412713 -29698,1213:132,132,23,0,0,0.410374 -29699,1213:133,133,23,0,0,0.437136 -29700,1213:134,134,23,0,0,0.429416 -29701,1213:235,135,23,0,0,0.423611 -29702,1213:236,136,23,0,0,0.42459 -29703,1214:132,142,23,0,0,0.421079 -29704,1214:133,143,23,0,0,0.422558 -29705,1214:134,144,23,0,0,0.430827 -29706,1214:235,145,23,0,0,0.430524 -29707,1214:236,146,23,0,0,0.425594 -29708,1214:237,147,23,0,0,0.426499 -29709,1214:238,148,23,0,0,0.443162 -29710,1214:239,149,23,0,0,0.454905 -29711,1215:130,150,23,0,0,0.453631 -29712,1215:131,151,23,0,0,0.456638 -29713,1215:132,152,23,0,0,0.461051 -29714,1215:133,153,23,0,0,0.456688 -29715,1215:134,154,23,0,0,0.45246 -29716,1215:235,155,23,0,0,0.462813 -29717,1215:236,156,23,0,0,0.467337 -29718,1215:237,157,23,0,0,0.470101 -29719,1215:238,158,23,0,0,0.437894 -29720,1215:239,159,23,0,0,0.450551 -29721,1216:130,160,23,0,0,0.401603 -29722,1216:131,161,23,0,0,0.409156 -29723,1216:132,162,23,0,0,0.4268 -29724,1216:133,163,23,0,0,0.415854 -29725,1216:134,164,23,0,0,0.400566 -29726,1216:235,165,23,0,0,0.393728 -29727,1216:236,166,23,0,0,0.377301 -29728,1216:237,167,23,0,0,0.367862 -29729,1216:238,168,23,0,0,0.357248 -29730,1216:239,169,23,0,0,0.35238 -29731,1217:130,170,23,0,0,0.353107 -29732,1217:131,171,23,0,0,0.359659 -29733,1217:132,172,23,0,0,0.357343 -29734,1217:133,173,23,0,0,0.358193 -29735,1217:134,174,23,0,0,0.3517 -29736,1217:235,175,23,0,0,0.348521 -29737,1217:236,176,23,0,0,0.351865 -29738,1217:237,177,23,0,0,0.346564 -29739,1217:238,178,23,0,0,0.343592 -29740,1217:239,179,23,0,0,0.336307 -29741,1218:130,180,23,0,0,0.334429 -29742,7218:140,-180,24,0,0,0.301779 -29743,7217:249,-179,24,0,0,0.303536 -29744,7217:248,-178,24,0,0,0.301109 -29745,7217:247,-177,24,0,0,0.293404 -29746,7217:246,-176,24,0,0,0.298391 -29747,7217:245,-175,24,0,0,0.29992 -29748,7217:144,-174,24,0,0,0.293063 -29749,7217:143,-173,24,0,0,0.295837 -29750,7217:142,-172,24,0,0,0.301216 -29751,7217:141,-171,24,0,0,0.298886 -29752,7217:140,-170,24,0,0,0.297918 -29753,7216:249,-169,24,0,0,0.296738 -29754,7216:248,-168,24,0,0,0.298972 -29755,7216:247,-167,24,0,0,0.30508 -29756,7216:246,-166,24,0,0,0.303188 -29757,7216:245,-165,24,0,0,0.303448 -29758,7216:144,-164,24,0,0,0.300719 -29759,7216:143,-163,24,0,0,0.302797 -29760,7216:142,-162,24,0,0,0.303644 -29761,7216:141,-161,24,0,0,0.311169 -29762,7216:140,-160,24,0,0,0.306257 -29763,7215:249,-159,24,0,0,0.307744 -29764,7215:248,-158,24,0,0,0.320537 -29765,7215:247,-157,24,0,0,0.31846 -29766,7215:246,-156,24,0,0,0.324016 -29767,7215:245,-155,24,0,0,0.326157 -29768,7215:144,-154,24,0,0,0.329485 -29769,7215:143,-153,24,0,0,0.325435 -29770,7215:142,-152,24,0,0,0.319531 -29771,7215:141,-151,24,0,0,0.328238 -29772,7215:140,-150,24,0,0,0.335963 -29773,7214:249,-149,24,0,0,0.333401 -29774,7214:248,-148,24,0,0,0.339156 -29775,7214:247,-147,24,0,0,0.334087 -29776,7214:246,-146,24,0,0,0.339825 -29777,7214:245,-145,24,0,0,0.334841 -29778,7214:144,-144,24,0,0,0.344914 -29779,7214:143,-143,24,0,0,0.343685 -29780,7214:142,-142,24,0,0,0.338144 -29781,7214:141,-141,24,0,0,0.34682 -29782,7214:140,-140,24,0,0,0.336399 -29783,7213:249,-139,24,0,0,0.343685 -29784,7213:248,-138,24,0,0,0.340655 -29785,7213:247,-137,24,0,0,0.345193 -29786,7213:246,-136,24,0,0,0.352075 -29787,7213:245,-135,24,0,0,0.353624 -29788,7213:144,-134,24,0,0,0.346797 -29789,7213:143,-133,24,0,0,0.34054 -29790,7213:142,-132,24,0,0,0.337065 -29791,7213:141,-131,24,0,0,0.333355 -29792,7213:140,-130,24,0,0,0.327966 -29793,7212:249,-129,24,0,0,0.314747 -29794,7212:248,-128,24,0,0,0.300287 -29795,7212:247,-127,24,0,0,0.295196 -29796,7212:246,-126,24,0,0,0.289838 -29797,7212:245,-125,24,0,0,0.293404 -29798,7212:144,-124,24,0,0,0.29096 -29799,7212:143,-123,24,0,0,0.288845 -29800,7212:142,-122,24,0,0,0.279483 -29801,7207:246,-76,24,0,0,0.318505 -29802,7207:245,-75,24,0,0,0.420628 -29803,7207:144,-74,24,0,0,0.517807 -29804,7207:143,-73,24,0,0,0.535427 -29805,7207:142,-72,24,0,0,0.517345 -29806,7207:141,-71,24,0,0,0.498859 -29807,7207:140,-70,24,0,0,0.505254 -29808,7206:249,-69,24,0,0,0.515369 -29809,7206:248,-68,24,0,0,0.500271 -29810,7206:247,-67,24,0,0,0.48117 -29811,7206:246,-66,24,0,0,0.487379 -29812,7206:245,-65,24,0,0,0.481042 -29813,7206:144,-64,24,0,0,0.470356 -29814,7206:143,-63,24,0,0,0.465778 -29815,7206:142,-62,24,0,0,0.45549 -29816,7206:141,-61,24,0,0,0.452841 -29817,7206:140,-60,24,0,0,0.446917 -29818,7205:249,-59,24,0,0,0.444455 -29819,7205:248,-58,24,0,0,0.433726 -29820,7205:247,-57,24,0,0,0.432843 -29821,7205:246,-56,24,0,0,0.427554 -29822,7205:245,-55,24,0,0,0.427353 -29823,7205:144,-54,24,0,0,0.426775 -29824,7205:143,-53,24,0,0,0.427152 -29825,7205:142,-52,24,0,0,0.416303 -29826,7205:141,-51,24,0,0,0.411891 -29827,7205:140,-50,24,0,0,0.40665 -29828,7204:249,-49,24,0,0,0.404668 -29829,7204:248,-48,24,0,0,0.400024 -29830,7204:247,-47,24,0,0,0.403901 -29831,7204:246,-46,24,0,0,0.399358 -29832,7204:245,-45,24,0,0,0.399802 -29833,7204:144,-44,24,0,0,0.3926 -29834,7204:143,-43,24,0,0,0.391914 -29835,7204:142,-42,24,0,0,0.38859 -29836,7204:141,-41,24,0,0,0.38367 -29837,7204:140,-40,24,0,0,0.388443 -29838,7203:249,-39,24,0,0,0.387881 -29839,7203:248,-38,24,0,0,0.385543 -29840,7203:247,-37,24,0,0,0.380202 -29841,7203:246,-36,24,0,0,0.376529 -29842,7203:245,-35,24,0,0,0.378436 -29843,7203:144,-34,24,0,0,0.375805 -29844,7203:143,-33,24,0,0,0.374577 -29845,7203:142,-32,24,0,0,0.370518 -29846,7203:141,-31,24,0,0,0.368101 -29847,7203:140,-30,24,0,0,0.373326 -29848,7202:249,-29,24,0,0,0.370542 -29849,7202:248,-28,24,0,0,0.370854 -29850,7202:247,-27,24,0,0,0.368818 -29851,7202:246,-26,24,0,0,0.37513 -29852,7202:245,-25,24,0,0,0.373158 -29853,7202:144,-24,24,0,0,0.378919 -29854,7202:143,-23,24,0,0,0.382674 -29855,7202:142,-22,24,0,0,0.385883 -29856,7202:141,-21,24,0,0,0.384059 -29857,7202:140,-20,24,0,0,0.388077 -29858,7201:249,-19,24,0,0,0.393409 -29859,7201:248,-18,24,0,0,0.394832 -29860,7201:247,-17,24,0,0,0.396183 -29861,7201:246,-16,24,0,0,0.395642 -29862,7201:245,-15,24,0,0,0.393066 -29863,7201:144,-14,24,0,0,0.393997 -29864,7201:143,-13,24,0,0,0.395372 -29865,7201:142,-12,24,0,0,0.385518 -29866,7201:141,-11,24,0,0,0.382965 -29867,7201:140,-10,24,0,0,0.355222 -29868,7200:142,-2,24,0,0,0.337501 -29869,7200:141,-1,24,0,0,0.34582 -29870,1200:141,0,24,0,0,0.373014 -29871,1200:141,1,24,0,0,0.364809 -29872,1200:142,2,24,0,0,0.373014 -29873,1200:143,3,24,0,0,0.376239 -29874,1200:144,4,24,0,0,0.381437 -29875,1200:245,5,24,0,0,0.38401 -29876,1200:248,8,24,0,0,0.393826 -29877,1201:140,10,24,0,0,0.389688 -29878,1201:141,11,24,0,0,0.388053 -29879,1201:142,12,24,0,0,0.37047 -29880,1201:143,13,24,0,0,0.360843 -29881,1201:144,14,24,0,0,0.358524 -29882,1201:245,15,24,0,0,0.399727 -29883,1201:246,16,24,0,0,0.396699 -29884,1201:247,17,24,0,0,0.394587 -29885,1201:248,18,24,0,0,0.401085 -29886,1201:249,19,24,0,0,0.417952 -29887,1202:140,20,24,0,0,0.420603 -29888,1202:141,21,24,0,0,0.417377 -29889,1202:143,23,24,0,0,0.404297 -29890,1202:144,24,24,0,0,0.411294 -29891,1202:245,25,24,0,0,0.418302 -29892,1202:246,26,24,0,0,0.428007 -29893,1202:247,27,24,0,0,0.437439 -29894,1202:248,28,24,0,0,0.45544 -29895,1203:141,31,24,0,0,0.470945 -29896,1203:144,34,24,0,0,0.480503 -29897,1203:245,35,24,0,0,0.48679 -29898,1212:142,122,24,0,0,0.212397 -29899,1212:143,123,24,0,0,0.23859 -29900,1212:144,124,24,0,0,0.344729 -29901,1212:245,125,24,0,0,0.352403 -29902,1212:246,126,24,0,0,0.245259 -29903,1213:140,130,24,0,0,0.396404 -29904,1213:141,131,24,0,0,0.341764 -29905,1213:142,132,24,0,0,0.389151 -29906,1213:143,133,24,0,0,0.404272 -29907,1213:144,134,24,0,0,0.404767 -29908,1213:245,135,24,0,0,0.386443 -29909,1213:246,136,24,0,0,0.400393 -29910,1213:247,137,24,0,0,0.396896 -29911,1213:248,138,24,0,0,0.401356 -29912,1214:142,142,24,0,0,0.412239 -29913,1214:143,143,24,0,0,0.429618 -29914,1214:144,144,24,0,0,0.414133 -29915,1214:245,145,24,0,0,0.408064 -29916,1214:246,146,24,0,0,0.411966 -29917,1214:247,147,24,0,0,0.433121 -29918,1214:248,148,24,0,0,0.440374 -29919,1214:249,149,24,0,0,0.436049 -29920,1215:140,150,24,0,0,0.418502 -29921,1215:141,151,24,0,0,0.416678 -29922,1215:142,152,24,0,0,0.414507 -29923,1215:143,153,24,0,0,0.41097 -29924,1215:144,154,24,0,0,0.408833 -29925,1215:245,155,24,0,0,0.401504 -29926,1215:246,156,24,0,0,0.390471 -29927,1215:247,157,24,0,0,0.396428 -29928,1215:248,158,24,0,0,0.420904 -29929,1215:249,159,24,0,0,0.412663 -29930,1216:140,160,24,0,0,0.410697 -29931,1216:141,161,24,0,0,0.386565 -29932,1216:142,162,24,0,0,0.376987 -29933,1216:143,163,24,0,0,0.37071 -29934,1216:144,164,24,0,0,0.373615 -29935,1216:245,165,24,0,0,0.373927 -29936,1216:246,166,24,0,0,0.372269 -29937,1216:247,167,24,0,0,0.361009 -29938,1216:248,168,24,0,0,0.356117 -29939,1216:249,169,24,0,0,0.349595 -29940,1217:140,170,24,0,0,0.345193 -29941,1217:141,171,24,0,0,0.340609 -29942,1217:142,172,24,0,0,0.335734 -29943,1217:143,173,24,0,0,0.328646 -29944,1217:144,174,24,0,0,0.321209 -29945,1217:245,175,24,0,0,0.321792 -29946,1217:246,176,24,0,0,0.312624 -29947,1217:247,177,24,0,0,0.310288 -29948,1217:248,178,24,0,0,0.314282 -29949,1217:249,179,24,0,0,0.309059 -29950,1218:140,180,24,0,0,0.301779 -29951,7218:350,-180,25,0,0,0.278656 -29952,7217:459,-179,25,0,0,0.278037 -29953,7217:458,-178,25,0,0,0.282409 -29954,7217:457,-177,25,0,0,0.272829 -29955,7217:456,-176,25,0,0,0.272197 -29956,7217:455,-175,25,0,0,0.275527 -29957,7217:354,-174,25,0,0,0.275835 -29958,7217:353,-173,25,0,0,0.277851 -29959,7217:352,-172,25,0,0,0.277665 -29960,7217:351,-171,25,0,0,0.276102 -29961,7217:350,-170,25,0,0,0.278759 -29962,7216:459,-169,25,0,0,0.281847 -29963,7216:458,-168,25,0,0,0.28569 -29964,7216:457,-167,25,0,0,0.292319 -29965,7216:456,-166,25,0,0,0.284099 -29966,7216:455,-165,25,0,0,0.278697 -29967,7216:354,-164,25,0,0,0.283827 -29968,7216:353,-163,25,0,0,0.28318 -29969,7216:352,-162,25,0,0,0.282471 -29970,7216:351,-161,25,0,0,0.284391 -29971,7216:350,-160,25,0,0,0.282638 -29972,7215:459,-159,25,0,0,0.285774 -29973,7215:458,-158,25,0,0,0.293084 -29974,7215:457,-157,25,0,0,0.290473 -29975,7215:456,-156,25,0,0,0.300158 -29976,7215:455,-155,25,0,0,0.301238 -29977,7215:354,-154,25,0,0,0.303383 -29978,7215:353,-153,25,0,0,0.30018 -29979,7215:352,-152,25,0,0,0.310178 -29980,7215:351,-151,25,0,0,0.309059 -29981,7215:350,-150,25,0,0,0.31539 -29982,7214:459,-149,25,0,0,0.313751 -29983,7214:458,-148,25,0,0,0.315324 -29984,7214:457,-147,25,0,0,0.317635 -29985,7214:456,-146,25,0,0,0.315258 -29986,7214:455,-145,25,0,0,0.315124 -29987,7214:354,-144,25,0,0,0.317235 -29988,7214:353,-143,25,0,0,0.319017 -29989,7214:352,-142,25,0,0,0.321926 -29990,7214:351,-141,25,0,0,0.332465 -29991,7214:350,-140,25,0,0,0.332055 -29992,7213:459,-139,25,0,0,0.315568 -29993,7213:458,-138,25,0,0,0.330484 -29994,7213:457,-137,25,0,0,0.327558 -29995,7213:456,-136,25,0,0,0.336124 -29996,7213:455,-135,25,0,0,0.341764 -29997,7213:354,-134,25,0,0,0.342527 -29998,7213:353,-133,25,0,0,0.335642 -29999,7213:352,-132,25,0,0,0.329168 -30000,7213:351,-131,25,0,0,0.322307 -30001,7213:350,-130,25,0,0,0.326044 -30002,7212:459,-129,25,0,0,0.317168 -30003,7212:458,-128,25,0,0,0.311851 -30004,7212:457,-127,25,0,0,0.299252 -30005,7212:456,-126,25,0,0,0.289648 -30006,7212:455,-125,25,0,0,0.289014 -30007,7212:354,-124,25,0,0,0.27783 -30008,7212:353,-123,25,0,0,0.265712 -30009,7207:456,-76,25,0,0,0.288128 -30010,7207:455,-75,25,0,0,0.318839 -30011,7207:354,-74,25,0,0,0.439387 -30012,7207:353,-73,25,0,0,0.491308 -30013,7207:352,-72,25,0,0,0.50397 -30014,7207:351,-71,25,0,0,0.492643 -30015,7207:350,-70,25,0,0,0.443897 -30016,7206:459,-69,25,0,0,0.438021 -30017,7206:458,-68,25,0,0,0.490563 -30018,7206:457,-67,25,0,0,0.491103 -30019,7206:456,-66,25,0,0,0.462251 -30020,7206:455,-65,25,0,0,0.468744 -30021,7206:354,-64,25,0,0,0.472635 -30022,7206:353,-63,25,0,0,0.462277 -30023,7206:352,-62,25,0,0,0.46634 -30024,7206:351,-61,25,0,0,0.453071 -30025,7206:350,-60,25,0,0,0.426825 -30026,7205:459,-59,25,0,0,0.423561 -30027,7205:458,-58,25,0,0,0.423386 -30028,7205:457,-57,25,0,0,0.418702 -30029,7205:456,-56,25,0,0,0.414905 -30030,7205:455,-55,25,0,0,0.418727 -30031,7205:354,-54,25,0,0,0.425519 -30032,7205:353,-53,25,0,0,0.425368 -30033,7205:352,-52,25,0,0,0.417077 -30034,7205:351,-51,25,0,0,0.402813 -30035,7205:350,-50,25,0,0,0.397044 -30036,7204:459,-49,25,0,0,0.391131 -30037,7204:458,-48,25,0,0,0.388565 -30038,7204:457,-47,25,0,0,0.395691 -30039,7204:456,-46,25,0,0,0.397388 -30040,7204:455,-45,25,0,0,0.399752 -30041,7204:354,-44,25,0,0,0.399407 -30042,7204:353,-43,25,0,0,0.378146 -30043,7204:352,-42,25,0,0,0.373278 -30044,7204:351,-41,25,0,0,0.373686 -30045,7204:350,-40,25,0,0,0.372701 -30046,7203:459,-39,25,0,0,0.377228 -30047,7203:458,-38,25,0,0,0.374529 -30048,7203:457,-37,25,0,0,0.368818 -30049,7203:456,-36,25,0,0,0.371381 -30050,7203:455,-35,25,0,0,0.371813 -30051,7203:354,-34,25,0,0,0.367432 -30052,7203:353,-33,25,0,0,0.360061 -30053,7203:352,-32,25,0,0,0.359044 -30054,7203:351,-31,25,0,0,0.36324 -30055,7203:350,-30,25,0,0,0.358406 -30056,7202:458,-28,25,0,0,0.356518 -30057,7202:457,-27,25,0,0,0.351279 -30058,7202:456,-26,25,0,0,0.356541 -30059,7202:455,-25,25,0,0,0.361886 -30060,7202:354,-24,25,0,0,0.365476 -30061,7202:353,-23,25,0,0,0.35876 -30062,7202:352,-22,25,0,0,0.364119 -30063,7202:351,-21,25,0,0,0.369967 -30064,7202:350,-20,25,0,0,0.374914 -30065,7201:459,-19,25,0,0,0.368914 -30066,7201:458,-18,25,0,0,0.372726 -30067,7201:457,-17,25,0,0,0.37107 -30068,7201:456,-16,25,0,0,0.372149 -30069,7201:455,-15,25,0,0,0.373639 -30070,7201:354,-14,25,0,0,0.371309 -30071,7201:353,-13,25,0,0,0.372605 -30072,7201:352,-12,25,0,0,0.381147 -30073,7201:351,-11,25,0,0,0.374817 -30074,7201:350,-10,25,0,0,0.343801 -30075,1200:351,0,25,0,0,0.366263 -30076,1200:351,1,25,0,0,0.379379 -30077,1200:352,2,25,0,0,0.381656 -30078,1200:353,3,25,0,0,0.383913 -30079,1200:354,4,25,0,0,0.384739 -30080,1200:455,5,25,0,0,0.385372 -30081,1200:456,6,25,0,0,0.381656 -30082,1200:457,7,25,0,0,0.388931 -30083,1200:458,8,25,0,0,0.377977 -30084,1200:459,9,25,0,0,0.373061 -30085,1201:350,10,25,0,0,0.368938 -30086,1201:351,11,25,0,0,0.372845 -30087,1201:352,12,25,0,0,0.373422 -30088,1201:455,15,25,0,0,0.399481 -30089,1201:456,16,25,0,0,0.396085 -30090,1201:457,17,25,0,0,0.38854 -30091,1201:458,18,25,0,0,0.393458 -30092,1201:459,19,25,0,0,0.413684 -30093,1202:350,20,25,0,0,0.423511 -30094,1202:353,23,25,0,0,0.40264 -30095,1202:354,24,25,0,0,0.399949 -30096,1202:455,25,25,0,0,0.41518 -30097,1202:456,26,25,0,0,0.433247 -30098,1212:350,120,25,0,0,0.188275 -30099,1212:352,122,25,0,0,0.209558 -30100,1212:353,123,25,0,0,0.242814 -30101,1212:354,124,25,0,0,0.306585 -30102,1212:455,125,25,0,0,0.288634 -30103,1212:456,126,25,0,0,0.193591 -30104,1213:350,130,25,0,0,0.382747 -30105,1213:351,131,25,0,0,0.32885 -30106,1213:352,132,25,0,0,0.355716 -30107,1213:353,133,25,0,0,0.328216 -30108,1213:354,134,25,0,0,0.325232 -30109,1213:455,135,25,0,0,0.343523 -30110,1213:456,136,25,0,0,0.320962 -30111,1213:457,137,25,0,0,0.362907 -30112,1213:458,138,25,0,0,0.383524 -30113,1213:459,139,25,0,0,0.384375 -30114,1214:352,142,25,0,0,0.351068 -30115,1214:353,143,25,0,0,0.418477 -30116,1214:354,144,25,0,0,0.410299 -30117,1214:455,145,25,0,0,0.404223 -30118,1214:456,146,25,0,0,0.350109 -30119,1214:457,147,25,0,0,0.358004 -30120,1214:458,148,25,0,0,0.417627 -30121,1214:459,149,25,0,0,0.420679 -30122,1215:350,150,25,0,0,0.418277 -30123,1215:351,151,25,0,0,0.412663 -30124,1215:352,152,25,0,0,0.369775 -30125,1215:353,153,25,0,0,0.353318 -30126,1215:354,154,25,0,0,0.377277 -30127,1215:455,155,25,0,0,0.384229 -30128,1215:456,156,25,0,0,0.361886 -30129,1215:457,157,25,0,0,0.358996 -30130,1215:458,158,25,0,0,0.389444 -30131,1215:459,159,25,0,0,0.406799 -30132,1216:350,160,25,0,0,0.394856 -30133,1216:351,161,25,0,0,0.376432 -30134,1216:352,162,25,0,0,0.38637 -30135,1216:353,163,25,0,0,0.363026 -30136,1216:354,164,25,0,0,0.378436 -30137,1216:455,165,25,0,0,0.352146 -30138,1216:456,166,25,0,0,0.361696 -30139,1216:457,167,25,0,0,0.352826 -30140,1216:458,168,25,0,0,0.342504 -30141,1216:459,169,25,0,0,0.345866 -30142,1217:350,170,25,0,0,0.345169 -30143,1217:351,171,25,0,0,0.338328 -30144,1217:352,172,25,0,0,0.333995 -30145,1217:353,173,25,0,0,0.323363 -30146,1217:354,174,25,0,0,0.312779 -30147,1217:455,175,25,0,0,0.305385 -30148,1217:456,176,25,0,0,0.297102 -30149,1217:457,177,25,0,0,0.292425 -30150,1217:458,178,25,0,0,0.292127 -30151,1217:459,179,25,0,0,0.290049 -30152,1218:350,180,25,0,0,0.278656 -30153,7218:360,-180,26,0,0,0.270126 -30154,7217:469,-179,26,0,0,0.260197 -30155,7217:468,-178,26,0,0,0.264572 -30156,7217:467,-177,26,0,0,0.260138 -30157,7217:466,-176,26,0,0,0.256183 -30158,7217:465,-175,26,0,0,0.252481 -30159,7217:364,-174,26,0,0,0.249487 -30160,7217:363,-173,26,0,0,0.253432 -30161,7217:362,-172,26,0,0,0.255811 -30162,7217:361,-171,26,0,0,0.251281 -30163,7217:360,-170,26,0,0,0.254113 -30164,7216:469,-169,26,0,0,0.264712 -30165,7216:468,-168,26,0,0,0.262041 -30166,7216:467,-167,26,0,0,0.256203 -30167,7216:466,-166,26,0,0,0.253938 -30168,7216:465,-165,26,0,0,0.255205 -30169,7216:364,-164,26,0,0,0.255792 -30170,7216:363,-163,26,0,0,0.264272 -30171,7216:362,-162,26,0,0,0.264552 -30172,7216:361,-161,26,0,0,0.264232 -30173,7216:360,-160,26,0,0,0.265432 -30174,7215:469,-159,26,0,0,0.266234 -30175,7215:468,-158,26,0,0,0.26738 -30176,7215:467,-157,26,0,0,0.269438 -30177,7215:466,-156,26,0,0,0.266837 -30178,7215:465,-155,26,0,0,0.272706 -30179,7215:364,-154,26,0,0,0.279565 -30180,7215:363,-153,26,0,0,0.281515 -30181,7215:362,-152,26,0,0,0.29603 -30182,7215:361,-151,26,0,0,0.289901 -30183,7215:360,-150,26,0,0,0.291511 -30184,7214:469,-149,26,0,0,0.292382 -30185,7214:468,-148,26,0,0,0.291851 -30186,7214:467,-147,26,0,0,0.289605 -30187,7214:466,-146,26,0,0,0.297467 -30188,7214:465,-145,26,0,0,0.30805 -30189,7214:364,-144,26,0,0,0.301865 -30190,7214:363,-143,26,0,0,0.300503 -30191,7214:362,-142,26,0,0,0.300136 -30192,7214:361,-141,26,0,0,0.30206 -30193,7214:360,-140,26,0,0,0.295709 -30194,7213:469,-139,26,0,0,0.305887 -30195,7213:468,-138,26,0,0,0.312668 -30196,7213:467,-137,26,0,0,0.314593 -30197,7213:466,-136,26,0,0,0.309212 -30198,7213:465,-135,26,0,0,0.317836 -30199,7213:364,-134,26,0,0,0.321321 -30200,7213:363,-133,26,0,0,0.325232 -30201,7213:362,-132,26,0,0,0.321814 -30202,7213:361,-131,26,0,0,0.313198 -30203,7213:360,-130,26,0,0,0.31353 -30204,7212:469,-129,26,0,0,0.306475 -30205,7212:468,-128,26,0,0,0.291873 -30206,7212:467,-127,26,0,0,0.287096 -30207,7212:466,-126,26,0,0,0.286067 -30208,7212:465,-125,26,0,0,0.277089 -30209,7212:364,-124,26,0,0,0.264432 -30210,7207:465,-75,26,0,0,0.259466 -30211,7207:364,-74,26,0,0,0.295239 -30212,7207:363,-73,26,0,0,0.354964 -30213,7207:362,-72,26,0,0,0.441818 -30214,7207:361,-71,26,0,0,0.431608 -30215,7207:360,-70,26,0,0,0.436934 -30216,7206:469,-69,26,0,0,0.438249 -30217,7206:468,-68,26,0,0,0.434332 -30218,7206:467,-67,26,0,0,0.486995 -30219,7206:466,-66,26,0,0,0.477964 -30220,7206:465,-65,26,0,0,0.470075 -30221,7206:364,-64,26,0,0,0.465675 -30222,7206:363,-63,26,0,0,0.418352 -30223,7206:362,-62,26,0,0,0.418452 -30224,7206:361,-61,26,0,0,0.456739 -30225,7206:360,-60,26,0,0,0.442199 -30226,7205:469,-59,26,0,0,0.435519 -30227,7205:468,-58,26,0,0,0.431835 -30228,7205:467,-57,26,0,0,0.433196 -30229,7205:466,-56,26,0,0,0.40923 -30230,7205:465,-55,26,0,0,0.416029 -30231,7205:364,-54,26,0,0,0.424966 -30232,7205:363,-53,26,0,0,0.382165 -30233,7205:362,-52,26,0,0,0.42341 -30234,7205:361,-51,26,0,0,0.403802 -30235,7205:360,-50,26,0,0,0.395593 -30236,7204:469,-49,26,0,0,0.392772 -30237,7204:468,-48,26,0,0,0.392551 -30238,7204:467,-47,26,0,0,0.388931 -30239,7204:466,-46,26,0,0,0.381656 -30240,7204:465,-45,26,0,0,0.365167 -30241,7204:364,-44,26,0,0,0.360701 -30242,7204:363,-43,26,0,0,0.376456 -30243,7204:362,-42,26,0,0,0.38859 -30244,7204:361,-41,26,0,0,0.37335 -30245,7204:360,-40,26,0,0,0.380178 -30246,7203:469,-39,26,0,0,0.377325 -30247,7203:468,-38,26,0,0,0.370302 -30248,7203:467,-37,26,0,0,0.373182 -30249,7203:466,-36,26,0,0,0.366668 -30250,7203:465,-35,26,0,0,0.360866 -30251,7203:364,-34,26,0,0,0.359185 -30252,7203:363,-33,26,0,0,0.349478 -30253,7203:362,-32,26,0,0,0.353953 -30254,7203:361,-31,26,0,0,0.354164 -30255,7203:360,-30,26,0,0,0.346797 -30256,7202:469,-29,26,0,0,0.348847 -30257,7202:468,-28,26,0,0,0.342365 -30258,7202:467,-27,26,0,0,0.340725 -30259,7202:466,-26,26,0,0,0.346843 -30260,7202:465,-25,26,0,0,0.347309 -30261,7202:364,-24,26,0,0,0.341648 -30262,7202:363,-23,26,0,0,0.348544 -30263,7202:362,-22,26,0,0,0.342226 -30264,7202:361,-21,26,0,0,0.337248 -30265,7202:360,-20,26,0,0,0.336766 -30266,7201:469,-19,26,0,0,0.346355 -30267,7201:468,-18,26,0,0,0.346401 -30268,7201:467,-17,26,0,0,0.352662 -30269,7201:466,-16,26,0,0,0.352427 -30270,7201:465,-15,26,0,0,0.347961 -30271,7201:364,-14,26,0,0,0.350647 -30272,7201:363,-13,26,0,0,0.35574 -30273,7201:362,-12,26,0,0,0.361696 -30274,7201:361,-11,26,0,0,0.353811 -30275,7201:360,-10,26,0,0,0.32548 -30276,1200:361,0,26,0,0,0.369775 -30277,1200:361,1,26,0,0,0.371141 -30278,1200:362,2,26,0,0,0.375324 -30279,1200:363,3,26,0,0,0.379887 -30280,1200:364,4,26,0,0,0.379742 -30281,1200:465,5,26,0,0,0.381073 -30282,1200:466,6,26,0,0,0.377759 -30283,1200:467,7,26,0,0,0.371549 -30284,1201:360,10,26,0,0,0.367814 -30285,1201:361,11,26,0,0,0.373278 -30286,1201:362,12,26,0,0,0.372653 -30287,1201:363,13,26,0,0,0.369799 -30288,1201:364,14,26,0,0,0.374481 -30289,1201:465,15,26,0,0,0.377952 -30290,1201:467,17,26,0,0,0.392135 -30291,1201:468,18,26,0,0,0.390348 -30292,1201:469,19,26,0,0,0.402319 -30293,1202:360,20,26,0,0,0.419327 -30294,1202:364,24,26,0,0,0.402048 -30295,1202:465,25,26,0,0,0.413161 -30296,1202:466,26,26,0,0,0.426021 -30297,1211:469,119,26,0,0,0.18548 -30298,1212:360,120,26,0,0,0.219301 -30299,1212:361,121,26,0,0,0.246727 -30300,1212:362,122,26,0,0,0.26867 -30301,1212:363,123,26,0,0,0.261406 -30302,1212:364,124,26,0,0,0.254796 -30303,1212:465,125,26,0,0,0.223873 -30304,1212:469,129,26,0,0,0.371621 -30305,1213:360,130,26,0,0,0.326676 -30306,1213:361,131,26,0,0,0.301281 -30307,1213:362,132,26,0,0,0.328102 -30308,1213:363,133,26,0,0,0.335001 -30309,1213:364,134,26,0,0,0.294427 -30310,1213:465,135,26,0,0,0.316545 -30311,1213:466,136,26,0,0,0.275487 -30312,1213:467,137,26,0,0,0.348988 -30313,1213:468,138,26,0,0,0.304035 -30314,1213:469,139,26,0,0,0.371381 -30315,1214:360,140,26,0,0,0.373038 -30316,1214:363,143,26,0,0,0.314659 -30317,1214:364,144,26,0,0,0.40856 -30318,1214:465,145,26,0,0,0.35706 -30319,1214:466,146,26,0,0,0.297467 -30320,1214:467,147,26,0,0,0.283201 -30321,1214:468,148,26,0,0,0.29251 -30322,1214:469,149,26,0,0,0.322285 -30323,1215:360,150,26,0,0,0.326022 -30324,1215:361,151,26,0,0,0.320336 -30325,1215:362,152,26,0,0,0.32168 -30326,1215:363,153,26,0,0,0.311543 -30327,1215:364,154,26,0,0,0.319464 -30328,1215:465,155,26,0,0,0.334132 -30329,1215:466,156,26,0,0,0.323004 -30330,1215:467,157,26,0,0,0.341718 -30331,1215:468,158,26,0,0,0.344334 -30332,1215:469,159,26,0,0,0.372894 -30333,1216:360,160,26,0,0,0.331805 -30334,1216:361,161,26,0,0,0.324691 -30335,1216:362,162,26,0,0,0.364833 -30336,1216:363,163,26,0,0,0.374481 -30337,1216:364,164,26,0,0,0.316567 -30338,1216:465,165,26,0,0,0.343059 -30339,1216:466,166,26,0,0,0.335047 -30340,1216:467,167,26,0,0,0.319867 -30341,1216:468,168,26,0,0,0.317101 -30342,1216:469,169,26,0,0,0.312933 -30343,1217:360,170,26,0,0,0.307306 -30344,1217:361,171,26,0,0,0.31042 -30345,1217:362,172,26,0,0,0.307678 -30346,1217:363,173,26,0,0,0.302364 -30347,1217:364,174,26,0,0,0.285815 -30348,1217:465,175,26,0,0,0.291469 -30349,1217:466,176,26,0,0,0.288613 -30350,1217:467,177,26,0,0,0.28029 -30351,1217:468,178,26,0,0,0.265572 -30352,1217:469,179,26,0,0,0.273992 -30353,1218:360,180,26,0,0,0.270126 -30354,7218:370,-180,27,0,0,0.247568 -30355,7217:479,-179,27,0,0,0.240687 -30356,7217:478,-178,27,0,0,0.240668 -30357,7217:477,-177,27,0,0,0.236172 -30358,7217:476,-176,27,0,0,0.237955 -30359,7217:475,-175,27,0,0,0.236431 -30360,7217:374,-174,27,0,0,0.235376 -30361,7217:373,-173,27,0,0,0.23146 -30362,7217:372,-172,27,0,0,0.233421 -30363,7217:371,-171,27,0,0,0.231514 -30364,7217:370,-170,27,0,0,0.233605 -30365,7216:479,-169,27,0,0,0.235505 -30366,7216:478,-168,27,0,0,0.23062 -30367,7216:477,-167,27,0,0,0.230949 -30368,7216:476,-166,27,0,0,0.236339 -30369,7216:475,-165,27,0,0,0.238814 -30370,7216:374,-164,27,0,0,0.240818 -30371,7216:373,-163,27,0,0,0.24667 -30372,7216:372,-162,27,0,0,0.24968 -30373,7216:371,-161,27,0,0,0.248334 -30374,7216:370,-160,27,0,0,0.247071 -30375,7215:479,-159,27,0,0,0.246593 -30376,7215:478,-158,27,0,0,0.249468 -30377,7215:477,-157,27,0,0,0.254249 -30378,7215:476,-156,27,0,0,0.254834 -30379,7215:475,-155,27,0,0,0.262975 -30380,7215:374,-154,27,0,0,0.264112 -30381,7215:373,-153,27,0,0,0.264252 -30382,7215:372,-152,27,0,0,0.26869 -30383,7215:371,-151,27,0,0,0.266114 -30384,7215:370,-150,27,0,0,0.269256 -30385,7214:479,-149,27,0,0,0.275384 -30386,7214:478,-148,27,0,0,0.275425 -30387,7214:477,-147,27,0,0,0.275938 -30388,7214:476,-146,27,0,0,0.284161 -30389,7214:475,-145,27,0,0,0.284182 -30390,7214:374,-144,27,0,0,0.283702 -30391,7214:373,-143,27,0,0,0.282347 -30392,7214:372,-142,27,0,0,0.282576 -30393,7214:371,-141,27,0,0,0.283827 -30394,7214:370,-140,27,0,0,0.286361 -30395,7213:479,-139,27,0,0,0.292892 -30396,7213:478,-138,27,0,0,0.297424 -30397,7213:477,-137,27,0,0,0.293893 -30398,7213:476,-136,27,0,0,0.29663 -30399,7213:475,-135,27,0,0,0.302321 -30400,7213:374,-134,27,0,0,0.305624 -30401,7213:373,-133,27,0,0,0.310266 -30402,7213:372,-132,27,0,0,0.307503 -30403,7213:371,-131,27,0,0,0.302407 -30404,7213:370,-130,27,0,0,0.293766 -30405,7212:479,-129,27,0,0,0.286718 -30406,7212:478,-128,27,0,0,0.27438 -30407,7212:477,-127,27,0,0,0.276287 -30408,7212:476,-126,27,0,0,0.280477 -30409,7212:475,-125,27,0,0,0.273624 -30410,7212:374,-124,27,0,0,0.255654 -30411,7207:373,-73,27,0,0,0.277769 -30412,7207:372,-72,27,0,0,0.325931 -30413,7207:371,-71,27,0,0,0.355764 -30414,7207:370,-70,27,0,0,0.346215 -30415,7206:479,-69,27,0,0,0.3077 -30416,7206:478,-68,27,0,0,0.404544 -30417,7206:477,-67,27,0,0,0.44481 -30418,7206:476,-66,27,0,0,0.464678 -30419,7206:475,-65,27,0,0,0.433726 -30420,7206:374,-64,27,0,0,0.375443 -30421,7206:373,-63,27,0,0,0.425996 -30422,7206:372,-62,27,0,0,0.424163 -30423,7206:371,-61,27,0,0,0.446257 -30424,7206:370,-60,27,0,0,0.447603 -30425,7205:479,-59,27,0,0,0.405733 -30426,7205:478,-58,27,0,0,0.346099 -30427,7205:477,-57,27,0,0,0.371477 -30428,7205:476,-56,27,0,0,0.423109 -30429,7205:475,-55,27,0,0,0.420428 -30430,7205:374,-54,27,0,0,0.385056 -30431,7205:373,-53,27,0,0,0.372389 -30432,7205:372,-52,27,0,0,0.399974 -30433,7205:371,-51,27,0,0,0.412912 -30434,7205:370,-50,27,0,0,0.413435 -30435,7204:479,-49,27,0,0,0.413261 -30436,7204:478,-48,27,0,0,0.408262 -30437,7204:477,-47,27,0,0,0.404965 -30438,7204:476,-46,27,0,0,0.3892 -30439,7204:475,-45,27,0,0,0.386516 -30440,7204:374,-44,27,0,0,0.355152 -30441,7204:373,-43,27,0,0,0.35156 -30442,7204:372,-42,27,0,0,0.351045 -30443,7204:371,-41,27,0,0,0.37347 -30444,7204:370,-40,27,0,0,0.36324 -30445,7203:479,-39,27,0,0,0.347146 -30446,7203:478,-38,27,0,0,0.377349 -30447,7203:477,-37,27,0,0,0.349338 -30448,7203:476,-36,27,0,0,0.349735 -30449,7203:475,-35,27,0,0,0.359138 -30450,7203:374,-34,27,0,0,0.355058 -30451,7203:373,-33,27,0,0,0.350437 -30452,7203:372,-32,27,0,0,0.341948 -30453,7203:371,-31,27,0,0,0.344984 -30454,7203:370,-30,27,0,0,0.341671 -30455,7202:479,-29,27,0,0,0.337868 -30456,7202:478,-28,27,0,0,0.331645 -30457,7202:477,-27,27,0,0,0.331053 -30458,7202:476,-26,27,0,0,0.333173 -30459,7202:475,-25,27,0,0,0.331736 -30460,7202:374,-24,27,0,0,0.327151 -30461,7202:373,-23,27,0,0,0.330189 -30462,7202:372,-22,27,0,0,0.333355 -30463,7202:371,-21,27,0,0,0.327808 -30464,7202:370,-20,27,0,0,0.325818 -30465,7201:479,-19,27,0,0,0.329984 -30466,7201:478,-18,27,0,0,0.324601 -30467,7201:477,-17,27,0,0,0.331417 -30468,7201:476,-16,27,0,0,0.333287 -30469,7201:475,-15,27,0,0,0.330985 -30470,7201:374,-14,27,0,0,0.33372 -30471,7201:373,-13,27,0,0,0.330189 -30472,7201:372,-12,27,0,0,0.340055 -30473,7201:371,-11,27,0,0,0.343476 -30474,7201:370,-10,27,0,0,0.32103 -30475,1200:371,1,27,0,0,0.360629 -30476,1200:372,2,27,0,0,0.359493 -30477,1200:373,3,27,0,0,0.364738 -30478,1200:374,4,27,0,0,0.36846 -30479,1200:475,5,27,0,0,0.367002 -30480,1200:476,6,27,0,0,0.369608 -30481,1200:477,7,27,0,0,0.362384 -30482,1201:370,10,27,0,0,0.364119 -30483,1201:371,11,27,0,0,0.364928 -30484,1201:372,12,27,0,0,0.365071 -30485,1201:373,13,27,0,0,0.367456 -30486,1201:374,14,27,0,0,0.371213 -30487,1201:475,15,27,0,0,0.374336 -30488,1201:477,17,27,0,0,0.3914 -30489,1201:478,18,27,0,0,0.389762 -30490,1201:479,19,27,0,0,0.410597 -30491,1202:373,23,27,0,0,0.396183 -30492,1202:374,24,27,0,0,0.397782 -30493,1202:475,25,27,0,0,0.423386 -30494,1212:370,120,27,0,0,0.188039 -30495,1212:371,121,27,0,0,0.203214 -30496,1212:372,122,27,0,0,0.178702 -30497,1212:374,124,27,0,0,0.190182 -30498,1212:475,125,27,0,0,0.168605 -30499,1212:479,129,27,0,0,0.319017 -30500,1213:370,130,27,0,0,0.315901 -30501,1213:371,131,27,0,0,0.291384 -30502,1213:372,132,27,0,0,0.314482 -30503,1213:373,133,27,0,0,0.307131 -30504,1213:374,134,27,0,0,0.269397 -30505,1213:475,135,27,0,0,0.285333 -30506,1213:476,136,27,0,0,0.25283 -30507,1213:477,137,27,0,0,0.295624 -30508,1213:478,138,27,0,0,0.303774 -30509,1213:479,139,27,0,0,0.304775 -30510,1214:370,140,27,0,0,0.350764 -30511,1214:373,143,27,0,0,0.29603 -30512,1214:374,144,27,0,0,0.377398 -30513,1214:475,145,27,0,0,0.338374 -30514,1214:476,146,27,0,0,0.327264 -30515,1214:477,147,27,0,0,0.353506 -30516,1214:478,148,27,0,0,0.297639 -30517,1214:479,149,27,0,0,0.311851 -30518,1215:370,150,27,0,0,0.318928 -30519,1215:371,151,27,0,0,0.307525 -30520,1215:372,152,27,0,0,0.310552 -30521,1215:373,153,27,0,0,0.314681 -30522,1215:374,154,27,0,0,0.29479 -30523,1215:475,155,27,0,0,0.284831 -30524,1215:476,156,27,0,0,0.281951 -30525,1215:477,157,27,0,0,0.280373 -30526,1215:478,158,27,0,0,0.284475 -30527,1215:479,159,27,0,0,0.276184 -30528,1216:370,160,27,0,0,0.279214 -30529,1216:371,161,27,0,0,0.275261 -30530,1216:372,162,27,0,0,0.322509 -30531,1216:373,163,27,0,0,0.286361 -30532,1216:374,164,27,0,0,0.281349 -30533,1216:475,165,27,0,0,0.301043 -30534,1216:476,166,27,0,0,0.308247 -30535,1216:477,167,27,0,0,0.283222 -30536,1216:478,168,27,0,0,0.280414 -30537,1216:479,169,27,0,0,0.256516 -30538,1217:370,170,27,0,0,0.280497 -30539,1217:371,171,27,0,0,0.28655 -30540,1217:372,172,27,0,0,0.263853 -30541,1217:373,173,27,0,0,0.261286 -30542,1217:374,174,27,0,0,0.24993 -30543,1217:475,175,27,0,0,0.241947 -30544,1217:476,176,27,0,0,0.25423 -30545,1217:477,177,27,0,0,0.264932 -30546,1217:478,178,27,0,0,0.246689 -30547,1217:479,179,27,0,0,0.251261 -30548,1218:370,180,27,0,0,0.247568 -30549,7218:380,-180,28,0,0,0.220782 -30550,7217:489,-179,28,0,0,0.218685 -30551,7217:488,-178,28,0,0,0.218703 -30552,7217:487,-177,28,0,0,0.217494 -30553,7217:486,-176,28,0,0,0.213017 -30554,7217:485,-175,28,0,0,0.2135 -30555,7217:384,-174,28,0,0,0.215699 -30556,7217:383,-173,28,0,0,0.215264 -30557,7217:382,-172,28,0,0,0.213983 -30558,7217:381,-171,28,0,0,0.215403 -30559,7217:380,-170,28,0,0,0.217967 -30560,7216:489,-169,28,0,0,0.217494 -30561,7216:488,-168,28,0,0,0.216099 -30562,7216:487,-167,28,0,0,0.216743 -30563,7216:486,-166,28,0,0,0.221525 -30564,7216:485,-165,28,0,0,0.223801 -30565,7216:384,-164,28,0,0,0.225251 -30566,7216:383,-163,28,0,0,0.223784 -30567,7216:382,-162,28,0,0,0.223587 -30568,7216:381,-161,28,0,0,0.226904 -30569,7216:380,-160,28,0,0,0.231514 -30570,7215:489,-159,28,0,0,0.237695 -30571,7215:488,-158,28,0,0,0.240274 -30572,7215:487,-157,28,0,0,0.238086 -30573,7215:486,-156,28,0,0,0.238235 -30574,7215:485,-155,28,0,0,0.242852 -30575,7215:384,-154,28,0,0,0.240105 -30576,7215:383,-153,28,0,0,0.244405 -30577,7215:382,-152,28,0,0,0.249429 -30578,7215:381,-151,28,0,0,0.249891 -30579,7215:380,-150,28,0,0,0.253063 -30580,7214:489,-149,28,0,0,0.257634 -30581,7214:488,-148,28,0,0,0.258559 -30582,7214:487,-147,28,0,0,0.258343 -30583,7214:486,-146,28,0,0,0.263912 -30584,7214:485,-145,28,0,0,0.267984 -30585,7214:384,-144,28,0,0,0.265993 -30586,7214:383,-143,28,0,0,0.2621 -30587,7214:382,-142,28,0,0,0.266094 -30588,7214:381,-141,28,0,0,0.269762 -30589,7214:380,-140,28,0,0,0.276143 -30590,7213:489,-139,28,0,0,0.281432 -30591,7213:488,-138,28,0,0,0.285438 -30592,7213:487,-137,28,0,0,0.281993 -30593,7213:486,-136,28,0,0,0.281889 -30594,7213:485,-135,28,0,0,0.284559 -30595,7213:384,-134,28,0,0,0.28798 -30596,7213:383,-133,28,0,0,0.284935 -30597,7213:382,-132,28,0,0,0.284329 -30598,7213:381,-131,28,0,0,0.284349 -30599,7213:380,-130,28,0,0,0.284266 -30600,7212:489,-129,28,0,0,0.28243 -30601,7212:488,-128,28,0,0,0.270045 -30602,7212:487,-127,28,0,0,0.268892 -30603,7212:486,-126,28,0,0,0.265392 -30604,7212:485,-125,28,0,0,0.263354 -30605,7207:380,-70,28,0,0,0.201523 -30606,7206:489,-69,28,0,0,0.233605 -30607,7206:488,-68,28,0,0,0.261802 -30608,7206:487,-67,28,0,0,0.259486 -30609,7206:486,-66,28,0,0,0.274176 -30610,7206:485,-65,28,0,0,0.334956 -30611,7206:384,-64,28,0,0,0.299187 -30612,7206:383,-63,28,0,0,0.377759 -30613,7206:382,-62,28,0,0,0.416103 -30614,7206:381,-61,28,0,0,0.423736 -30615,7206:380,-60,28,0,0,0.407543 -30616,7205:489,-59,28,0,0,0.364738 -30617,7205:488,-58,28,0,0,0.296373 -30618,7205:487,-57,28,0,0,0.307744 -30619,7205:486,-56,28,0,0,0.302863 -30620,7205:485,-55,28,0,0,0.322577 -30621,7205:384,-54,28,0,0,0.283326 -30622,7205:383,-53,28,0,0,0.2321 -30623,7205:382,-52,28,0,0,0.231168 -30624,7205:381,-51,28,0,0,0.266174 -30625,7205:380,-50,28,0,0,0.318036 -30626,7204:489,-49,28,0,0,0.349315 -30627,7204:488,-48,28,0,0,0.375998 -30628,7204:487,-47,28,0,0,0.375275 -30629,7204:486,-46,28,0,0,0.299403 -30630,7204:485,-45,28,0,0,0.264952 -30631,7204:384,-44,28,0,0,0.374577 -30632,7204:383,-43,28,0,0,0.384059 -30633,7204:382,-42,28,0,0,0.380396 -30634,7204:381,-41,28,0,0,0.331622 -30635,7204:380,-40,28,0,0,0.346332 -30636,7203:489,-39,28,0,0,0.349198 -30637,7203:488,-38,28,0,0,0.368962 -30638,7203:487,-37,28,0,0,0.360535 -30639,7203:486,-36,28,0,0,0.362883 -30640,7203:485,-35,28,0,0,0.353624 -30641,7203:384,-34,28,0,0,0.352005 -30642,7203:383,-33,28,0,0,0.340147 -30643,7203:382,-32,28,0,0,0.331167 -30644,7203:381,-31,28,0,0,0.331303 -30645,7203:380,-30,28,0,0,0.332648 -30646,7202:489,-29,28,0,0,0.332238 -30647,7202:488,-28,28,0,0,0.331873 -30648,7202:487,-27,28,0,0,0.326157 -30649,7202:486,-26,28,0,0,0.322509 -30650,7202:485,-25,28,0,0,0.322196 -30651,7202:384,-24,28,0,0,0.32047 -30652,7202:383,-23,28,0,0,0.317346 -30653,7202:382,-22,28,0,0,0.316367 -30654,7202:381,-21,28,0,0,0.310091 -30655,7202:380,-20,28,0,0,0.316278 -30656,7201:489,-19,28,0,0,0.31639 -30657,7201:488,-18,28,0,0,0.310926 -30658,7201:487,-17,28,0,0,0.305494 -30659,7201:486,-16,28,0,0,0.310773 -30660,7201:485,-15,28,0,0,0.313884 -30661,7201:384,-14,28,0,0,0.311697 -30662,7201:383,-13,28,0,0,0.312425 -30663,7201:382,-12,28,0,0,0.31539 -30664,7201:381,-11,28,0,0,0.323701 -30665,7201:380,-10,28,0,0,0.305646 -30666,1200:383,3,28,0,0,0.346541 -30667,1200:384,4,28,0,0,0.348474 -30668,1200:485,5,28,0,0,0.356258 -30669,1200:486,6,28,0,0,0.355928 -30670,1200:487,7,28,0,0,0.35999 -30671,1200:488,8,28,0,0,0.35798 -30672,1200:489,9,28,0,0,0.366836 -30673,1201:380,10,28,0,0,0.364904 -30674,1201:381,11,28,0,0,0.363477 -30675,1201:382,12,28,0,0,0.365381 -30676,1201:487,17,28,0,0,0.364333 -30677,1201:488,18,28,0,0,0.370063 -30678,1202:384,24,28,0,0,0.349805 -30679,1202:485,25,28,0,0,0.339272 -30680,1202:487,27,28,0,0,0.313286 -30681,1202:488,28,28,0,0,0.300006 -30682,1212:382,122,28,0,0,0.158296 -30683,1213:381,131,28,0,0,0.237025 -30684,1213:382,132,28,0,0,0.261544 -30685,1213:383,133,28,0,0,0.242437 -30686,1213:384,134,28,0,0,0.269033 -30687,1213:485,135,28,0,0,0.25351 -30688,1213:486,136,28,0,0,0.240743 -30689,1213:487,137,28,0,0,0.278842 -30690,1213:488,138,28,0,0,0.269377 -30691,1213:489,139,28,0,0,0.254094 -30692,1214:380,140,28,0,0,0.255186 -30693,1214:382,142,28,0,0,0.302602 -30694,1214:383,143,28,0,0,0.283263 -30695,1214:384,144,28,0,0,0.208709 -30696,1214:485,145,28,0,0,0.284308 -30697,1214:486,146,28,0,0,0.325683 -30698,1214:487,147,28,0,0,0.321388 -30699,1214:488,148,28,0,0,0.263354 -30700,1214:489,149,28,0,0,0.293169 -30701,1215:380,150,28,0,0,0.272116 -30702,1215:381,151,28,0,0,0.272666 -30703,1215:382,152,28,0,0,0.253355 -30704,1215:383,153,28,0,0,0.268065 -30705,1215:384,154,28,0,0,0.297918 -30706,1215:485,155,28,0,0,0.290092 -30707,1215:486,156,28,0,0,0.28798 -30708,1215:487,157,28,0,0,0.275609 -30709,1215:488,158,28,0,0,0.268407 -30710,1215:489,159,28,0,0,0.266234 -30711,1216:380,160,28,0,0,0.265452 -30712,1216:381,161,28,0,0,0.246212 -30713,1216:382,162,28,0,0,0.238702 -30714,1216:383,163,28,0,0,0.261029 -30715,1216:384,164,28,0,0,0.248277 -30716,1216:485,165,28,0,0,0.257772 -30717,1216:486,166,28,0,0,0.263873 -30718,1216:487,167,28,0,0,0.25252 -30719,1216:488,168,28,0,0,0.243023 -30720,1216:489,169,28,0,0,0.235394 -30721,1217:380,170,28,0,0,0.23872 -30722,1217:381,171,28,0,0,0.251068 -30723,1217:382,172,28,0,0,0.22389 -30724,1217:383,173,28,0,0,0.218598 -30725,1217:384,174,28,0,0,0.227012 -30726,1217:485,175,28,0,0,0.226004 -30727,1217:486,176,28,0,0,0.221295 -30728,1217:487,177,28,0,0,0.221366 -30729,1217:488,178,28,0,0,0.226922 -30730,1217:489,179,28,0,0,0.22667 -30731,1218:380,180,28,0,0,0.220782 -30732,7218:390,-180,29,0,0,0.209218 -30733,7217:499,-179,29,0,0,0.207777 -30734,7217:498,-178,29,0,0,0.203198 -30735,7217:497,-177,29,0,0,0.204047 -30736,7217:496,-176,29,0,0,0.204364 -30737,7217:495,-175,29,0,0,0.201771 -30738,7217:394,-174,29,0,0,0.201423 -30739,7217:393,-173,29,0,0,0.19999 -30740,7217:392,-172,29,0,0,0.19971 -30741,7217:391,-171,29,0,0,0.20197 -30742,7217:390,-170,29,0,0,0.202815 -30743,7216:499,-169,29,0,0,0.202069 -30744,7216:498,-168,29,0,0,0.203015 -30745,7216:497,-167,29,0,0,0.205369 -30746,7216:496,-166,29,0,0,0.208777 -30747,7216:495,-165,29,0,0,0.212741 -30748,7216:394,-164,29,0,0,0.211539 -30749,7216:393,-163,29,0,0,0.208183 -30750,7216:392,-162,29,0,0,0.209048 -30751,7216:391,-161,29,0,0,0.211762 -30752,7216:390,-160,29,0,0,0.217232 -30753,7215:499,-159,29,0,0,0.222839 -30754,7215:498,-158,29,0,0,0.222075 -30755,7215:497,-157,29,0,0,0.222928 -30756,7215:496,-156,29,0,0,0.225933 -30757,7215:495,-155,29,0,0,0.226778 -30758,7215:394,-154,29,0,0,0.233109 -30759,7215:393,-153,29,0,0,0.233992 -30760,7215:392,-152,29,0,0,0.232907 -30761,7215:391,-151,29,0,0,0.237732 -30762,7215:390,-150,29,0,0,0.234286 -30763,7214:499,-149,29,0,0,0.236079 -30764,7214:498,-148,29,0,0,0.243666 -30765,7214:497,-147,29,0,0,0.244765 -30766,7214:496,-146,29,0,0,0.250643 -30767,7214:495,-145,29,0,0,0.252869 -30768,7214:394,-144,29,0,0,0.253646 -30769,7214:393,-143,29,0,0,0.252209 -30770,7214:392,-142,29,0,0,0.251319 -30771,7214:391,-141,29,0,0,0.254952 -30772,7214:390,-140,29,0,0,0.256477 -30773,7213:499,-139,29,0,0,0.257929 -30774,7213:498,-138,29,0,0,0.264372 -30775,7213:497,-137,29,0,0,0.267621 -30776,7213:496,-136,29,0,0,0.269114 -30777,7213:495,-135,29,0,0,0.267481 -30778,7213:394,-134,29,0,0,0.270856 -30779,7213:393,-133,29,0,0,0.27389 -30780,7213:392,-132,29,0,0,0.272645 -30781,7213:391,-131,29,0,0,0.273502 -30782,7213:390,-130,29,0,0,0.275897 -30783,7212:499,-129,29,0,0,0.270268 -30784,7212:498,-128,29,0,0,0.256065 -30785,7212:497,-127,29,0,0,0.25846 -30786,7212:496,-126,29,0,0,0.260415 -30787,7212:495,-125,29,0,0,0.254074 -30788,7207:390,-70,29,0,0,0.216499 -30789,7206:499,-69,29,0,0,0.216482 -30790,7206:498,-68,29,0,0,0.22398 -30791,7206:497,-67,29,0,0,0.221933 -30792,7206:496,-66,29,0,0,0.233182 -30793,7206:495,-65,29,0,0,0.233973 -30794,7206:394,-64,29,0,0,0.215455 -30795,7206:393,-63,29,0,0,0.217931 -30796,7206:392,-62,29,0,0,0.234194 -30797,7206:391,-61,29,0,0,0.230201 -30798,7206:390,-60,29,0,0,0.218282 -30799,7205:499,-59,29,0,0,0.230985 -30800,7205:498,-58,29,0,0,0.273053 -30801,7205:497,-57,29,0,0,0.279028 -30802,7205:496,-56,29,0,0,0.307328 -30803,7205:495,-55,29,0,0,0.29794 -30804,7205:394,-54,29,0,0,0.204749 -30805,7205:393,-53,29,0,0,0.213206 -30806,7205:392,-52,29,0,0,0.208895 -30807,7205:391,-51,29,0,0,0.186086 -30808,7205:390,-50,29,0,0,0.151228 -30809,7204:499,-49,29,0,0,0.131819 -30810,7204:498,-48,29,0,0,0.345378 -30811,7204:497,-47,29,0,0,0.297016 -30812,7204:496,-46,29,0,0,0.301433 -30813,7204:495,-45,29,0,0,0.247549 -30814,7204:394,-44,29,0,0,0.26738 -30815,7204:393,-43,29,0,0,0.287349 -30816,7204:392,-42,29,0,0,0.294257 -30817,7204:391,-41,29,0,0,0.329735 -30818,7204:390,-40,29,0,0,0.326225 -30819,7203:499,-39,29,0,0,0.320582 -30820,7203:498,-38,29,0,0,0.317368 -30821,7203:497,-37,29,0,0,0.289479 -30822,7203:496,-36,29,0,0,0.31579 -30823,7203:495,-35,29,0,0,0.313265 -30824,7203:394,-34,29,0,0,0.336766 -30825,7203:393,-33,29,0,0,0.317034 -30826,7203:392,-32,29,0,0,0.315812 -30827,7203:391,-31,29,0,0,0.328963 -30828,7203:390,-30,29,0,0,0.331713 -30829,7202:499,-29,29,0,0,0.329735 -30830,7202:498,-28,29,0,0,0.329213 -30831,7202:497,-27,29,0,0,0.322577 -30832,7202:496,-26,29,0,0,0.32038 -30833,7202:495,-25,29,0,0,0.317168 -30834,7202:394,-24,29,0,0,0.312425 -30835,7202:393,-23,29,0,0,0.310992 -30836,7202:392,-22,29,0,0,0.304362 -30837,7202:391,-21,29,0,0,0.30665 -30838,7202:390,-20,29,0,0,0.303383 -30839,7201:499,-19,29,0,0,0.298455 -30840,7201:498,-18,29,0,0,0.300481 -30841,7201:497,-17,29,0,0,0.296416 -30842,7201:496,-16,29,0,0,0.298413 -30843,7201:495,-15,29,0,0,0.300287 -30844,7201:394,-14,29,0,0,0.304188 -30845,7201:393,-13,29,0,0,0.296909 -30846,7201:392,-12,29,0,0,0.298176 -30847,7201:391,-11,29,0,0,0.311367 -30848,7201:390,-10,29,0,0,0.293404 -30849,1200:393,3,29,0,0,0.34218 -30850,1200:394,4,29,0,0,0.336192 -30851,1200:495,5,29,0,0,0.344334 -30852,1200:496,6,29,0,0,0.348474 -30853,1200:497,7,29,0,0,0.352427 -30854,1200:498,8,29,0,0,0.355081 -30855,1200:499,9,29,0,0,0.360961 -30856,1201:390,10,29,0,0,0.360724 -30857,1201:394,14,29,0,0,0.354328 -30858,1201:495,15,29,0,0,0.360866 -30859,1201:496,16,29,0,0,0.371885 -30860,1201:497,17,29,0,0,0.374168 -30861,1201:498,18,29,0,0,0.388077 -30862,1202:498,28,29,0,0,0.281723 -30863,1202:499,29,29,0,0,0.279669 -30864,1203:390,30,29,0,0,0.2788 -30865,1203:498,38,29,0,0,0.287538 -30866,1213:391,131,29,0,0,0.195766 -30867,1213:392,132,29,0,0,0.174119 -30868,1213:393,133,29,0,0,0.181585 -30869,1213:394,134,29,0,0,0.183009 -30870,1213:495,135,29,0,0,0.189361 -30871,1213:496,136,29,0,0,0.196398 -30872,1213:497,137,29,0,0,0.192663 -30873,1213:498,138,29,0,0,0.22491 -30874,1213:499,139,29,0,0,0.237583 -30875,1214:390,140,29,0,0,0.227897 -30876,1214:495,145,29,0,0,0.152671 -30877,1214:496,146,29,0,0,0.147069 -30878,1214:497,147,29,0,0,0.198269 -30879,1214:498,148,29,0,0,0.219635 -30880,1214:499,149,29,0,0,0.292234 -30881,1215:390,150,29,0,0,0.276822 -30882,1215:391,151,29,0,0,0.269579 -30883,1215:392,152,29,0,0,0.161317 -30884,1215:393,153,29,0,0,0.179004 -30885,1215:394,154,29,0,0,0.196625 -30886,1215:495,155,29,0,0,0.203964 -30887,1215:496,156,29,0,0,0.20727 -30888,1215:497,157,29,0,0,0.202982 -30889,1215:498,158,29,0,0,0.212157 -30890,1215:499,159,29,0,0,0.237639 -30891,1216:390,160,29,0,0,0.232999 -30892,1216:391,161,29,0,0,0.226256 -30893,1216:392,162,29,0,0,0.243249 -30894,1216:393,163,29,0,0,0.217897 -30895,1216:394,164,29,0,0,0.223623 -30896,1216:495,165,29,0,0,0.228313 -30897,1216:496,166,29,0,0,0.206444 -30898,1216:497,167,29,0,0,0.201407 -30899,1216:498,168,29,0,0,0.199349 -30900,1216:499,169,29,0,0,0.208742 -30901,1217:390,170,29,0,0,0.204883 -30902,1217:391,171,29,0,0,0.224355 -30903,1217:392,172,29,0,0,0.214363 -30904,1217:393,173,29,0,0,0.204214 -30905,1217:394,174,29,0,0,0.194459 -30906,1217:495,175,29,0,0,0.204833 -30907,1217:496,176,29,0,0,0.215525 -30908,1217:497,177,29,0,0,0.207152 -30909,1217:498,178,29,0,0,0.202268 -30910,1217:499,179,29,0,0,0.205973 -30911,1218:390,180,29,0,0,0.209218 -30912,7318:100,-180,30,0,0,0.184427 -30913,7317:209,-179,30,0,0,0.185884 -30914,7317:208,-178,30,0,0,0.191244 -30915,7317:207,-177,30,0,0,0.191038 -30916,7317:206,-176,30,0,0,0.1922 -30917,7317:205,-175,30,0,0,0.192855 -30918,7317:104,-174,30,0,0,0.190974 -30919,7317:103,-173,30,0,0,0.18955 -30920,7317:102,-172,30,0,0,0.188039 -30921,7317:101,-171,30,0,0,0.187225 -30922,7317:100,-170,30,0,0,0.188668 -30923,7316:209,-169,30,0,0,0.188856 -30924,7316:208,-168,30,0,0,0.189629 -30925,7316:207,-167,30,0,0,0.189093 -30926,7316:206,-166,30,0,0,0.192455 -30927,7316:205,-165,30,0,0,0.200401 -30928,7316:104,-164,30,0,0,0.197747 -30929,7316:103,-163,30,0,0,0.195475 -30930,7316:102,-162,30,0,0,0.19669 -30931,7316:101,-161,30,0,0,0.198286 -30932,7316:100,-160,30,0,0,0.207371 -30933,7315:209,-159,30,0,0,0.209031 -30934,7315:208,-158,30,0,0,0.204281 -30935,7315:207,-157,30,0,0,0.212965 -30936,7315:206,-156,30,0,0,0.212741 -30937,7315:205,-155,30,0,0,0.214709 -30938,7315:104,-154,30,0,0,0.218265 -30939,7315:103,-153,30,0,0,0.215316 -30940,7315:102,-152,30,0,0,0.219072 -30941,7315:101,-151,30,0,0,0.218528 -30942,7315:100,-150,30,0,0,0.2211 -30943,7314:209,-149,30,0,0,0.230894 -30944,7314:208,-148,30,0,0,0.232357 -30945,7314:207,-147,30,0,0,0.23412 -30946,7314:206,-146,30,0,0,0.2379 -30947,7314:205,-145,30,0,0,0.240349 -30948,7314:104,-144,30,0,0,0.239561 -30949,7314:103,-143,30,0,0,0.238272 -30950,7314:102,-142,30,0,0,0.23872 -30951,7314:101,-141,30,0,0,0.240123 -30952,7314:100,-140,30,0,0,0.245964 -30953,7313:209,-139,30,0,0,0.247893 -30954,7313:208,-138,30,0,0,0.259367 -30955,7313:207,-137,30,0,0,0.256124 -30956,7313:206,-136,30,0,0,0.258185 -30957,7313:205,-135,30,0,0,0.25994 -30958,7313:104,-134,30,0,0,0.264692 -30959,7313:103,-133,30,0,0,0.262796 -30960,7313:102,-132,30,0,0,0.259111 -30961,7313:101,-131,30,0,0,0.259447 -30962,7313:100,-130,30,0,0,0.259604 -30963,7312:209,-129,30,0,0,0.252287 -30964,7312:208,-128,30,0,0,0.254952 -30965,7312:207,-127,30,0,0,0.257969 -30966,7312:206,-126,30,0,0,0.247415 -30967,7312:205,-125,30,0,0,0.243798 -30968,7306:209,-69,30,0,0,0.204314 -30969,7306:208,-68,30,0,0,0.202583 -30970,7306:207,-67,30,0,0,0.203514 -30971,7306:206,-66,30,0,0,0.211556 -30972,7306:104,-64,30,0,0,0.204816 -30973,7306:103,-63,30,0,0,0.196365 -30974,7306:102,-62,30,0,0,0.190848 -30975,7306:101,-61,30,0,0,0.196219 -30976,7306:100,-60,30,0,0,0.19169 -30977,7305:209,-59,30,0,0,0.181815 -30978,7305:208,-58,30,0,0,0.16274 -30979,7305:207,-57,30,0,0,0.161415 -30980,7305:206,-56,30,0,0,0.201589 -30981,7305:205,-55,30,0,0,0.18966 -30982,7305:104,-54,30,0,0,0.165049 -30983,7305:103,-53,30,0,0,0.178611 -30984,7305:102,-52,30,0,0,0.170007 -30985,7305:101,-51,30,0,0,0.159257 -30986,7305:100,-50,30,0,0,0.150583 -30987,7304:209,-49,30,0,0,0.127426 -30988,7304:208,-48,30,0,0,0.151294 -30989,7304:207,-47,30,0,0,0.324083 -30990,7304:206,-46,30,0,0,0.311037 -30991,7304:205,-45,30,0,0,0.212243 -30992,7304:104,-44,30,0,0,0.276616 -30993,7304:103,-43,30,0,0,0.271993 -30994,7304:102,-42,30,0,0,0.291448 -30995,7304:101,-41,30,0,0,0.301195 -30996,7304:100,-40,30,0,0,0.253899 -30997,7303:209,-39,30,0,0,0.275589 -30998,7303:208,-38,30,0,0,0.274933 -30999,7303:207,-37,30,0,0,0.273481 -31000,7303:206,-36,30,0,0,0.293276 -31001,7303:205,-35,30,0,0,0.330621 -31002,7303:104,-34,30,0,0,0.329303 -31003,7303:103,-33,30,0,0,0.297402 -31004,7303:102,-32,30,0,0,0.29633 -31005,7303:101,-31,30,0,0,0.310442 -31006,7303:100,-30,30,0,0,0.318839 -31007,7302:209,-29,30,0,0,0.328306 -31008,7302:208,-28,30,0,0,0.324511 -31009,7302:207,-27,30,0,0,0.312183 -31010,7302:206,-26,30,0,0,0.308181 -31011,7302:205,-25,30,0,0,0.309454 -31012,7302:104,-24,30,0,0,0.307437 -31013,7302:103,-23,30,0,0,0.303774 -31014,7302:102,-22,30,0,0,0.299381 -31015,7302:101,-21,30,0,0,0.298047 -31016,7302:100,-20,30,0,0,0.295495 -31017,7301:209,-19,30,0,0,0.292191 -31018,7301:208,-18,30,0,0,0.294534 -31019,7301:207,-17,30,0,0,0.290769 -31020,7301:206,-16,30,0,0,0.291915 -31021,7301:205,-15,30,0,0,0.290748 -31022,7301:104,-14,30,0,0,0.293382 -31023,7301:103,-13,30,0,0,0.290621 -31024,7301:102,-12,30,0,0,0.290176 -31025,7301:101,-11,30,0,0,0.287665 -31026,7301:100,-10,30,0,0,0.287622 -31027,7300:209,-9,30,0,0,0.28988 -31028,7300:208,-8,30,0,0,0.293042 -31029,7300:207,-7,30,0,0,0.294769 -31030,7300:206,-6,30,0,0,0.295923 -31031,7300:205,-5,30,0,0,0.295303 -31032,7300:104,-4,30,0,0,0.297123 -31033,7300:103,-3,30,0,0,0.298714 -31034,1300:207,7,30,0,0,0.350179 -31035,1300:208,8,30,0,0,0.349525 -31036,1300:209,9,30,0,0,0.35487 -31037,1301:103,13,30,0,0,0.319286 -31038,1301:104,14,30,0,0,0.368675 -31039,1301:205,15,30,0,0,0.374649 -31040,1301:206,16,30,0,0,0.320045 -31041,1302:207,27,30,0,0,0.281245 -31042,1302:208,28,30,0,0,0.267944 -31043,1302:209,29,30,0,0,0.26738 -31044,1303:100,30,30,0,0,0.270876 -31045,1303:101,31,30,0,0,0.273216 -31046,1303:102,32,30,0,0,0.282118 -31047,1303:103,33,30,0,0,0.285878 -31048,1303:104,34,30,0,0,0.286298 -31049,1303:205,35,30,0,0,0.284663 -31050,1303:206,36,30,0,0,0.27604 -31051,1303:207,37,30,0,0,0.261227 -31052,1303:208,38,30,0,0,0.263095 -31053,1303:209,39,30,0,0,0.275302 -31054,1304:100,40,30,0,0,0.288107 -31055,1313:206,136,30,0,0,0.168001 -31056,1313:207,137,30,0,0,0.181173 -31057,1313:208,138,30,0,0,0.219565 -31058,1313:209,139,30,0,0,0.233605 -31059,1314:100,140,30,0,0,0.203264 -31060,1314:101,141,30,0,0,0.201126 -31061,1314:102,142,30,0,0,0.199776 -31062,1314:206,146,30,0,0,0.156294 -31063,1314:207,147,30,0,0,0.147043 -31064,1314:208,148,30,0,0,0.139109 -31065,1314:209,149,30,0,0,0.142138 -31066,1315:100,150,30,0,0,0.141114 -31067,1315:101,151,30,0,0,0.137322 -31068,1315:102,152,30,0,0,0.146683 -31069,1315:103,153,30,0,0,0.152618 -31070,1315:104,154,30,0,0,0.14658 -31071,1315:205,155,30,0,0,0.150622 -31072,1315:206,156,30,0,0,0.188904 -31073,1315:207,157,30,0,0,0.188668 -31074,1315:208,158,30,0,0,0.179866 -31075,1315:209,159,30,0,0,0.175008 -31076,1316:100,160,30,0,0,0.184427 -31077,1316:101,161,30,0,0,0.23135 -31078,1316:102,162,30,0,0,0.215751 -31079,1316:103,163,30,0,0,0.208793 -31080,1316:104,164,30,0,0,0.200796 -31081,1316:205,165,30,0,0,0.196414 -31082,1316:206,166,30,0,0,0.194943 -31083,1316:207,167,30,0,0,0.186258 -31084,1316:208,168,30,0,0,0.192519 -31085,1316:209,169,30,0,0,0.189156 -31086,1317:100,170,30,0,0,0.177559 -31087,1317:101,171,30,0,0,0.18435 -31088,1317:102,172,30,0,0,0.205234 -31089,1317:103,173,30,0,0,0.196171 -31090,1317:104,174,30,0,0,0.175171 -31091,1317:205,175,30,0,0,0.183517 -31092,1317:206,176,30,0,0,0.189929 -31093,1317:207,177,30,0,0,0.19004 -31094,1317:208,178,30,0,0,0.187366 -31095,1317:209,179,30,0,0,0.188196 -31096,1318:100,180,30,0,0,0.184427 -31097,7318:110,-180,31,0,0,0.169023 -31098,7317:219,-179,31,0,0,0.17066 -31099,7317:218,-178,31,0,0,0.177244 -31100,7317:217,-177,31,0,0,0.176108 -31101,7317:216,-176,31,0,0,0.177289 -31102,7317:215,-175,31,0,0,0.182059 -31103,7317:114,-174,31,0,0,0.177529 -31104,7317:113,-173,31,0,0,0.176944 -31105,7317:112,-172,31,0,0,0.179412 -31106,7317:111,-171,31,0,0,0.177334 -31107,7317:110,-170,31,0,0,0.176795 -31108,7316:219,-169,31,0,0,0.178702 -31109,7316:218,-168,31,0,0,0.181219 -31110,7316:217,-167,31,0,0,0.182136 -31111,7316:216,-166,31,0,0,0.183271 -31112,7316:215,-165,31,0,0,0.184628 -31113,7316:114,-164,31,0,0,0.1871 -31114,7316:113,-163,31,0,0,0.188447 -31115,7316:112,-162,31,0,0,0.189471 -31116,7316:111,-161,31,0,0,0.189266 -31117,7316:110,-160,31,0,0,0.19177 -31118,7315:219,-159,31,0,0,0.191372 -31119,7315:218,-158,31,0,0,0.189597 -31120,7315:217,-157,31,0,0,0.198204 -31121,7315:216,-156,31,0,0,0.200467 -31122,7315:215,-155,31,0,0,0.195265 -31123,7315:114,-154,31,0,0,0.194943 -31124,7315:113,-153,31,0,0,0.196625 -31125,7315:112,-152,31,0,0,0.202965 -31126,7315:111,-151,31,0,0,0.209439 -31127,7315:110,-150,31,0,0,0.209184 -31128,7314:219,-149,31,0,0,0.213017 -31129,7314:218,-148,31,0,0,0.218335 -31130,7314:217,-147,31,0,0,0.221702 -31131,7314:216,-146,31,0,0,0.22275 -31132,7314:215,-145,31,0,0,0.222359 -31133,7314:114,-144,31,0,0,0.227662 -31134,7314:113,-143,31,0,0,0.226742 -31135,7314:112,-142,31,0,0,0.227103 -31136,7314:111,-141,31,0,0,0.234157 -31137,7314:110,-140,31,0,0,0.235542 -31138,7313:219,-139,31,0,0,0.233826 -31139,7313:218,-138,31,0,0,0.242267 -31140,7313:217,-137,31,0,0,0.244823 -31141,7313:216,-136,31,0,0,0.2502 -31142,7313:215,-135,31,0,0,0.250392 -31143,7313:114,-134,31,0,0,0.250778 -31144,7313:113,-133,31,0,0,0.248488 -31145,7313:112,-132,31,0,0,0.250045 -31146,7313:111,-131,31,0,0,0.251648 -31147,7313:110,-130,31,0,0,0.249103 -31148,7312:219,-129,31,0,0,0.245374 -31149,7312:218,-128,31,0,0,0.249949 -31150,7312:217,-127,31,0,0,0.249218 -31151,7312:216,-126,31,0,0,0.247262 -31152,7312:215,-125,31,0,0,0.242116 -31153,7306:216,-66,31,0,0,0.2025 -31154,7306:112,-62,31,0,0,0.173279 -31155,7306:111,-61,31,0,0,0.1719 -31156,7306:110,-60,31,0,0,0.163259 -31157,7305:219,-59,31,0,0,0.161874 -31158,7305:218,-58,31,0,0,0.152857 -31159,7305:217,-57,31,0,0,0.146529 -31160,7305:216,-56,31,0,0,0.142063 -31161,7305:215,-55,31,0,0,0.133605 -31162,7305:114,-54,31,0,0,0.144472 -31163,7305:113,-53,31,0,0,0.142741 -31164,7305:112,-52,31,0,0,0.143005 -31165,7305:111,-51,31,0,0,0.143459 -31166,7305:110,-50,31,0,0,0.135748 -31167,7304:219,-49,31,0,0,0.129149 -31168,7304:218,-48,31,0,0,0.128988 -31169,7304:217,-47,31,0,0,0.200681 -31170,7304:216,-46,31,0,0,0.2025 -31171,7304:215,-45,31,0,0,0.237974 -31172,7304:114,-44,31,0,0,0.255303 -31173,7304:113,-43,31,0,0,0.251667 -31174,7304:112,-42,31,0,0,0.251899 -31175,7304:111,-41,31,0,0,0.249391 -31176,7304:110,-40,31,0,0,0.232705 -31177,7303:219,-39,31,0,0,0.260177 -31178,7303:218,-38,31,0,0,0.274422 -31179,7303:217,-37,31,0,0,0.268549 -31180,7303:216,-36,31,0,0,0.275118 -31181,7303:215,-35,31,0,0,0.294448 -31182,7303:114,-34,31,0,0,0.306716 -31183,7303:113,-33,31,0,0,0.275897 -31184,7303:112,-32,31,0,0,0.289267 -31185,7303:111,-31,31,0,0,0.281266 -31186,7303:110,-30,31,0,0,0.291066 -31187,7302:219,-29,31,0,0,0.323611 -31188,7302:218,-28,31,0,0,0.325007 -31189,7302:217,-27,31,0,0,0.315834 -31190,7302:216,-26,31,0,0,0.315479 -31191,7302:215,-25,31,0,0,0.315945 -31192,7302:114,-24,31,0,0,0.31042 -31193,7302:113,-23,31,0,0,0.306279 -31194,7302:112,-22,31,0,0,0.299532 -31195,7302:111,-21,31,0,0,0.29736 -31196,7302:110,-20,31,0,0,0.290155 -31197,7301:219,-19,31,0,0,0.286424 -31198,7301:218,-18,31,0,0,0.284141 -31199,7301:217,-17,31,0,0,0.284768 -31200,7301:216,-16,31,0,0,0.283451 -31201,7301:215,-15,31,0,0,0.284287 -31202,7301:114,-14,31,0,0,0.285815 -31203,7301:113,-13,31,0,0,0.281411 -31204,7301:112,-12,31,0,0,0.282139 -31205,7301:111,-11,31,0,0,0.285229 -31206,7301:110,-10,31,0,0,0.282201 -31207,7300:219,-9,31,0,0,0.281806 -31208,7300:218,-8,31,0,0,0.280394 -31209,7300:217,-7,31,0,0,0.283702 -31210,7300:216,-6,31,0,0,0.28437 -31211,7300:215,-5,31,0,0,0.288212 -31212,7300:114,-4,31,0,0,0.287054 -31213,7300:113,-3,31,0,0,0.293915 -31214,7300:112,-2,31,0,0,0.27049 -31215,1301:112,12,31,0,0,0.324421 -31216,1301:113,13,31,0,0,0.348825 -31217,1301:114,14,31,0,0,0.326405 -31218,1302:218,28,31,0,0,0.27236 -31219,1302:219,29,31,0,0,0.266696 -31220,1303:110,30,31,0,0,0.270247 -31221,1303:111,31,31,0,0,0.273624 -31222,1303:112,32,31,0,0,0.275466 -31223,1303:113,33,31,0,0,0.281058 -31224,1303:114,34,31,0,0,0.277089 -31225,1303:215,35,31,0,0,0.262458 -31226,1303:216,36,31,0,0,0.258303 -31227,1303:217,37,31,0,0,0.264792 -31228,1303:218,38,31,0,0,0.267903 -31229,1303:219,39,31,0,0,0.28166 -31230,1304:110,40,31,0,0,0.291108 -31231,1313:218,138,31,0,0,0.173574 -31232,1313:219,139,31,0,0,0.185124 -31233,1314:110,140,31,0,0,0.184551 -31234,1314:111,141,31,0,0,0.181371 -31235,1314:112,142,31,0,0,0.195055 -31236,1314:114,144,31,0,0,0.126016 -31237,1314:215,145,31,0,0,0.110916 -31238,1314:216,146,31,0,0,0.136351 -31239,1314:217,147,31,0,0,0.132207 -31240,1314:218,148,31,0,0,0.1337 -31241,1314:219,149,31,0,0,0.149561 -31242,1315:110,150,31,0,0,0.141838 -31243,1315:111,151,31,0,0,0.134248 -31244,1315:112,152,31,0,0,0.135808 -31245,1315:113,153,31,0,0,0.145913 -31246,1315:114,154,31,0,0,0.151518 -31247,1315:215,155,31,0,0,0.138287 -31248,1315:216,156,31,0,0,0.138655 -31249,1315:217,157,31,0,0,0.169891 -31250,1315:218,158,31,0,0,0.150294 -31251,1315:219,159,31,0,0,0.141676 -31252,1316:110,160,31,0,0,0.14413 -31253,1316:111,161,31,0,0,0.151347 -31254,1316:112,162,31,0,0,0.220729 -31255,1316:113,163,31,0,0,0.213189 -31256,1316:114,164,31,0,0,0.178747 -31257,1316:215,165,31,0,0,0.169587 -31258,1316:216,166,31,0,0,0.183809 -31259,1316:217,167,31,0,0,0.174608 -31260,1316:218,168,31,0,0,0.165716 -31261,1316:219,169,31,0,0,0.180382 -31262,1317:110,170,31,0,0,0.169572 -31263,1317:111,171,31,0,0,0.171053 -31264,1317:112,172,31,0,0,0.177589 -31265,1317:113,173,31,0,0,0.166969 -31266,1317:114,174,31,0,0,0.166299 -31267,1317:215,175,31,0,0,0.172354 -31268,1317:216,176,31,0,0,0.173323 -31269,1317:217,177,31,0,0,0.171491 -31270,1317:218,178,31,0,0,0.169616 -31271,1317:219,179,31,0,0,0.172809 -31272,1318:110,180,31,0,0,0.169023 -31273,7318:120,-180,32,0,0,0.16079 -31274,7317:229,-179,32,0,0,0.163779 -31275,7317:228,-178,32,0,0,0.166399 -31276,7317:227,-177,32,0,0,0.160748 -31277,7317:226,-176,32,0,0,0.162685 -31278,7317:225,-175,32,0,0,0.169442 -31279,7317:124,-174,32,0,0,0.169269 -31280,7317:123,-173,32,0,0,0.169891 -31281,7317:122,-172,32,0,0,0.170108 -31282,7317:121,-171,32,0,0,0.16849 -31283,7317:120,-170,32,0,0,0.171301 -31284,7316:229,-169,32,0,0,0.170849 -31285,7316:228,-168,32,0,0,0.173191 -31286,7316:227,-167,32,0,0,0.174874 -31287,7316:226,-166,32,0,0,0.174445 -31288,7316:225,-165,32,0,0,0.175379 -31289,7316:124,-164,32,0,0,0.178235 -31290,7316:123,-163,32,0,0,0.180382 -31291,7316:122,-162,32,0,0,0.181112 -31292,7316:121,-161,32,0,0,0.181188 -31293,7316:120,-160,32,0,0,0.180747 -31294,7315:229,-159,32,0,0,0.181952 -31295,7315:228,-158,32,0,0,0.181982 -31296,7315:227,-157,32,0,0,0.182028 -31297,7315:226,-156,32,0,0,0.181967 -31298,7315:225,-155,32,0,0,0.183625 -31299,7315:124,-154,32,0,0,0.186881 -31300,7315:123,-153,32,0,0,0.189455 -31301,7315:122,-152,32,0,0,0.192967 -31302,7315:121,-151,32,0,0,0.199054 -31303,7315:120,-150,32,0,0,0.20045 -31304,7314:229,-149,32,0,0,0.202367 -31305,7314:228,-148,32,0,0,0.206494 -31306,7314:227,-147,32,0,0,0.209882 -31307,7314:226,-146,32,0,0,0.212328 -31308,7314:225,-145,32,0,0,0.209388 -31309,7314:124,-144,32,0,0,0.216151 -31310,7314:123,-143,32,0,0,0.220252 -31311,7314:122,-142,32,0,0,0.216064 -31312,7314:121,-141,32,0,0,0.226238 -31313,7314:120,-140,32,0,0,0.224141 -31314,7313:229,-139,32,0,0,0.221685 -31315,7313:228,-138,32,0,0,0.228693 -31316,7313:227,-137,32,0,0,0.229837 -31317,7313:226,-136,32,0,0,0.239992 -31318,7313:225,-135,32,0,0,0.244329 -31319,7313:124,-134,32,0,0,0.239543 -31320,7313:123,-133,32,0,0,0.240931 -31321,7313:122,-132,32,0,0,0.244975 -31322,7313:121,-131,32,0,0,0.246498 -31323,7313:120,-130,32,0,0,0.244063 -31324,7312:229,-129,32,0,0,0.240461 -31325,7312:228,-128,32,0,0,0.241194 -31326,7312:227,-127,32,0,0,0.235986 -31327,7312:226,-126,32,0,0,0.23831 -31328,7312:225,-125,32,0,0,0.23803 -31329,7306:122,-62,32,0,0,0.134152 -31330,7306:121,-61,32,0,0,0.144447 -31331,7305:229,-59,32,0,0,0.147935 -31332,7305:228,-58,32,0,0,0.142678 -31333,7305:227,-57,32,0,0,0.140617 -31334,7305:226,-56,32,0,0,0.139011 -31335,7305:225,-55,32,0,0,0.13115 -31336,7305:124,-54,32,0,0,0.125384 -31337,7305:123,-53,32,0,0,0.117515 -31338,7305:122,-52,32,0,0,0.120444 -31339,7305:121,-51,32,0,0,0.130589 -31340,7305:120,-50,32,0,0,0.124474 -31341,7304:229,-49,32,0,0,0.129161 -31342,7304:228,-48,32,0,0,0.120728 -31343,7304:227,-47,32,0,0,0.125779 -31344,7304:226,-46,32,0,0,0.165432 -31345,7304:225,-45,32,0,0,0.165475 -31346,7304:124,-44,32,0,0,0.164795 -31347,7304:123,-43,32,0,0,0.200022 -31348,7304:122,-42,32,0,0,0.243779 -31349,7304:121,-41,32,0,0,0.241551 -31350,7304:120,-40,32,0,0,0.234231 -31351,7303:229,-39,32,0,0,0.256496 -31352,7303:228,-38,32,0,0,0.277089 -31353,7303:227,-37,32,0,0,0.276164 -31354,7303:226,-36,32,0,0,0.258047 -31355,7303:225,-35,32,0,0,0.271628 -31356,7303:124,-34,32,0,0,0.256594 -31357,7303:123,-33,32,0,0,0.248354 -31358,7303:122,-32,32,0,0,0.242984 -31359,7303:121,-31,32,0,0,0.284057 -31360,7303:120,-30,32,0,0,0.288149 -31361,7302:229,-29,32,0,0,0.314747 -31362,7302:228,-28,32,0,0,0.320157 -31363,7302:227,-27,32,0,0,0.310332 -31364,7302:226,-26,32,0,0,0.296009 -31365,7302:225,-25,32,0,0,0.291172 -31366,7302:124,-24,32,0,0,0.300072 -31367,7302:123,-23,32,0,0,0.299619 -31368,7302:122,-22,32,0,0,0.300547 -31369,7302:121,-21,32,0,0,0.292872 -31370,7302:120,-20,32,0,0,0.296266 -31371,7301:229,-19,32,0,0,0.292659 -31372,7301:228,-18,32,0,0,0.280539 -31373,7301:227,-17,32,0,0,0.276637 -31374,7301:226,-16,32,0,0,0.276431 -31375,7301:225,-15,32,0,0,0.278697 -31376,7301:124,-14,32,0,0,0.279545 -31377,7301:123,-13,32,0,0,0.275323 -31378,7301:122,-12,32,0,0,0.272645 -31379,7301:121,-11,32,0,0,0.273297 -31380,7301:120,-10,32,0,0,0.271729 -31381,7300:229,-9,32,0,0,0.272686 -31382,7300:228,-8,32,0,0,0.273665 -31383,7300:227,-7,32,0,0,0.273767 -31384,7300:226,-6,32,0,0,0.279193 -31385,7300:225,-5,32,0,0,0.278367 -31386,7300:124,-4,32,0,0,0.282909 -31387,7300:123,-3,32,0,0,0.28243 -31388,7300:122,-2,32,0,0,0.236487 -31389,1301:122,12,32,0,0,0.313861 -31390,1302:228,28,32,0,0,0.279358 -31391,1302:229,29,32,0,0,0.265032 -31392,1303:120,30,32,0,0,0.265112 -31393,1303:121,31,32,0,0,0.266998 -31394,1303:122,32,32,0,0,0.265893 -31395,1303:123,33,32,0,0,0.263773 -31396,1303:124,34,32,0,0,0.257222 -31397,1303:225,35,32,0,0,0.25501 -31398,1303:226,36,32,0,0,0.263573 -31399,1303:227,37,32,0,0,0.272218 -31400,1303:228,38,32,0,0,0.280145 -31401,1303:229,39,32,0,0,0.285312 -31402,1313:229,139,32,0,0,0.153551 -31403,1314:120,140,32,0,0,0.167155 -31404,1314:121,141,32,0,0,0.173 -31405,1314:122,142,32,0,0,0.181616 -31406,1314:123,143,32,0,0,0.122054 -31407,1314:124,144,32,0,0,0.112209 -31408,1314:225,145,32,0,0,0.107439 -31409,1314:226,146,32,0,0,0.13383 -31410,1314:227,147,32,0,0,0.139343 -31411,1314:228,148,32,0,0,0.143396 -31412,1314:229,149,32,0,0,0.142389 -31413,1315:120,150,32,0,0,0.142264 -31414,1315:121,151,32,0,0,0.145798 -31415,1315:122,152,32,0,0,0.135507 -31416,1315:123,153,32,0,0,0.128699 -31417,1315:124,154,32,0,0,0.136436 -31418,1315:225,155,32,0,0,0.14535 -31419,1315:226,156,32,0,0,0.132077 -31420,1315:227,157,32,0,0,0.132597 -31421,1315:228,158,32,0,0,0.141052 -31422,1315:229,159,32,0,0,0.142427 -31423,1316:120,160,32,0,0,0.138483 -31424,1316:121,161,32,0,0,0.13517 -31425,1316:122,162,32,0,0,0.143585 -31426,1316:123,163,32,0,0,0.153377 -31427,1316:124,164,32,0,0,0.149391 -31428,1316:225,165,32,0,0,0.154971 -31429,1316:226,166,32,0,0,0.168576 -31430,1316:227,167,32,0,0,0.14743 -31431,1316:228,168,32,0,0,0.143257 -31432,1316:229,169,32,0,0,0.150807 -31433,1317:120,170,32,0,0,0.157014 -31434,1317:121,171,32,0,0,0.154998 -31435,1317:122,172,32,0,0,0.152206 -31436,1317:123,173,32,0,0,0.150636 -31437,1317:124,174,32,0,0,0.154019 -31438,1317:225,175,32,0,0,0.156132 -31439,1317:226,176,32,0,0,0.154675 -31440,1317:227,177,32,0,0,0.157231 -31441,1317:228,178,32,0,0,0.159367 -31442,1317:229,179,32,0,0,0.160707 -31443,1318:120,180,32,0,0,0.16079 -31444,7318:130,-180,33,0,0,0.151281 -31445,7317:239,-179,33,0,0,0.154072 -31446,7317:238,-178,33,0,0,0.156416 -31447,7317:237,-177,33,0,0,0.154099 -31448,7317:236,-176,33,0,0,0.153684 -31449,7317:235,-175,33,0,0,0.153177 -31450,7317:134,-174,33,0,0,0.155066 -31451,7317:133,-173,33,0,0,0.159988 -31452,7317:132,-172,33,0,0,0.161234 -31453,7317:131,-171,33,0,0,0.161262 -31454,7317:130,-170,33,0,0,0.161944 -31455,7316:239,-169,33,0,0,0.161763 -31456,7316:238,-168,33,0,0,0.164385 -31457,7316:237,-167,33,0,0,0.167456 -31458,7316:236,-166,33,0,0,0.16826 -31459,7316:235,-165,33,0,0,0.168303 -31460,7316:134,-164,33,0,0,0.16885 -31461,7316:133,-163,33,0,0,0.17209 -31462,7316:132,-162,33,0,0,0.174726 -31463,7316:131,-161,33,0,0,0.172486 -31464,7316:130,-160,33,0,0,0.171272 -31465,7315:239,-159,33,0,0,0.175468 -31466,7315:238,-158,33,0,0,0.174534 -31467,7315:237,-157,33,0,0,0.173308 -31468,7315:236,-156,33,0,0,0.178913 -31469,7315:235,-155,33,0,0,0.182304 -31470,7315:134,-154,33,0,0,0.184907 -31471,7315:133,-153,33,0,0,0.185542 -31472,7315:132,-152,33,0,0,0.188526 -31473,7315:131,-151,33,0,0,0.192104 -31474,7315:130,-150,33,0,0,0.193848 -31475,7314:239,-149,33,0,0,0.19708 -31476,7314:238,-148,33,0,0,0.198139 -31477,7314:237,-147,33,0,0,0.19953 -31478,7314:236,-146,33,0,0,0.20022 -31479,7314:235,-145,33,0,0,0.201258 -31480,7314:134,-144,33,0,0,0.205352 -31481,7314:133,-143,33,0,0,0.207371 -31482,7314:132,-142,33,0,0,0.206831 -31483,7314:131,-141,33,0,0,0.213396 -31484,7314:130,-140,33,0,0,0.215542 -31485,7313:239,-139,33,0,0,0.217477 -31486,7313:238,-138,33,0,0,0.220234 -31487,7313:237,-137,33,0,0,0.222413 -31488,7313:236,-136,33,0,0,0.229892 -31489,7313:235,-135,33,0,0,0.230328 -31490,7313:134,-134,33,0,0,0.228802 -31491,7313:133,-133,33,0,0,0.233532 -31492,7313:132,-132,33,0,0,0.237007 -31493,7313:131,-131,33,0,0,0.237806 -31494,7313:130,-130,33,0,0,0.236672 -31495,7312:239,-129,33,0,0,0.235172 -31496,7312:238,-128,33,0,0,0.229892 -31497,7312:237,-127,33,0,0,0.227879 -31498,7312:236,-126,33,0,0,0.233771 -31499,7312:235,-125,33,0,0,0.234858 -31500,7306:134,-64,33,0,0,0.136872 -31501,7306:133,-63,33,0,0,0.151228 -31502,7306:132,-62,33,0,0,0.166299 -31503,7306:131,-61,33,0,0,0.158735 -31504,7305:239,-59,33,0,0,0.137493 -31505,7305:238,-58,33,0,0,0.14022 -31506,7305:237,-57,33,0,0,0.140629 -31507,7305:236,-56,33,0,0,0.136509 -31508,7305:235,-55,33,0,0,0.137359 -31509,7305:134,-54,33,0,0,0.131232 -31510,7305:132,-52,33,0,0,0.110098 -31511,7305:131,-51,33,0,0,0.112825 -31512,7305:130,-50,33,0,0,0.115884 -31513,7304:239,-49,33,0,0,0.116994 -31514,7304:238,-48,33,0,0,0.114909 -31515,7304:237,-47,33,0,0,0.123748 -31516,7304:236,-46,33,0,0,0.140753 -31517,7304:235,-45,33,0,0,0.145977 -31518,7304:134,-44,33,0,0,0.143674 -31519,7304:133,-43,33,0,0,0.170704 -31520,7304:132,-42,33,0,0,0.19512 -31521,7304:131,-41,33,0,0,0.207202 -31522,7304:130,-40,33,0,0,0.230128 -31523,7303:239,-39,33,0,0,0.233789 -31524,7303:238,-38,33,0,0,0.208844 -31525,7303:237,-37,33,0,0,0.215994 -31526,7303:236,-36,33,0,0,0.222022 -31527,7303:235,-35,33,0,0,0.231899 -31528,7303:134,-34,33,0,0,0.235672 -31529,7303:133,-33,33,0,0,0.229782 -31530,7303:132,-32,33,0,0,0.249487 -31531,7303:131,-31,33,0,0,0.249833 -31532,7303:130,-30,33,0,0,0.262458 -31533,7302:239,-29,33,0,0,0.300287 -31534,7302:238,-28,33,0,0,0.295517 -31535,7302:237,-27,33,0,0,0.288697 -31536,7302:236,-26,33,0,0,0.28836 -31537,7302:235,-25,33,0,0,0.280062 -31538,7302:134,-24,33,0,0,0.279462 -31539,7302:133,-23,33,0,0,0.292807 -31540,7302:132,-22,33,0,0,0.294491 -31541,7302:131,-21,33,0,0,0.285249 -31542,7302:130,-20,33,0,0,0.286193 -31543,7301:239,-19,33,0,0,0.288971 -31544,7301:238,-18,33,0,0,0.274749 -31545,7301:237,-17,33,0,0,0.274033 -31546,7301:236,-16,33,0,0,0.270917 -31547,7301:235,-15,33,0,0,0.271242 -31548,7301:134,-14,33,0,0,0.269195 -31549,7301:133,-13,33,0,0,0.270065 -31550,7301:132,-12,33,0,0,0.267662 -31551,7301:131,-11,33,0,0,0.263155 -31552,7301:130,-10,33,0,0,0.265112 -31553,7300:239,-9,33,0,0,0.265452 -31554,7300:238,-8,33,0,0,0.268407 -31555,7300:237,-7,33,0,0,0.268126 -31556,7300:236,-6,33,0,0,0.267602 -31557,7300:235,-5,33,0,0,0.274196 -31558,7300:134,-4,33,0,0,0.267883 -31559,1302:239,29,33,0,0,0.27179 -31560,1303:130,30,33,0,0,0.265032 -31561,1303:131,31,33,0,0,0.268206 -31562,1303:132,32,33,0,0,0.266114 -31563,1303:133,33,33,0,0,0.265973 -31564,1303:134,34,33,0,0,0.262398 -31565,1303:235,35,33,0,0,0.259466 -31566,1303:236,36,33,0,0,0.265673 -31567,1303:237,37,33,0,0,0.273951 -31568,1303:238,38,33,0,0,0.280228 -31569,1314:130,140,33,0,0,0.144332 -31570,1314:131,141,33,0,0,0.161498 -31571,1314:132,142,33,0,0,0.16637 -31572,1314:235,145,33,0,0,0.106771 -31573,1314:236,146,33,0,0,0.118843 -31574,1314:237,147,33,0,0,0.121526 -31575,1314:238,148,33,0,0,0.126016 -31576,1314:239,149,33,0,0,0.126822 -31577,1315:130,150,33,0,0,0.126367 -31578,1315:131,151,33,0,0,0.130963 -31579,1315:132,152,33,0,0,0.130671 -31580,1315:133,153,33,0,0,0.127792 -31581,1315:134,154,33,0,0,0.126651 -31582,1315:235,155,33,0,0,0.133569 -31583,1315:236,156,33,0,0,0.130496 -31584,1315:237,157,33,0,0,0.129555 -31585,1315:238,158,33,0,0,0.129972 -31586,1315:239,159,33,0,0,0.133533 -31587,1316:130,160,33,0,0,0.133212 -31588,1316:131,161,33,0,0,0.132443 -31589,1316:132,162,33,0,0,0.13487 -31590,1316:133,163,33,0,0,0.140716 -31591,1316:134,164,33,0,0,0.140282 -31592,1316:235,165,33,0,0,0.136836 -31593,1316:236,166,33,0,0,0.1364 -31594,1316:237,167,33,0,0,0.139787 -31595,1316:238,168,33,0,0,0.142942 -31596,1316:239,169,33,0,0,0.145146 -31597,1317:130,170,33,0,0,0.145695 -31598,1317:131,171,33,0,0,0.145695 -31599,1317:132,172,33,0,0,0.145964 -31600,1317:133,173,33,0,0,0.147857 -31601,1317:134,174,33,0,0,0.148025 -31602,1317:235,175,33,0,0,0.146631 -31603,1317:236,176,33,0,0,0.149469 -31604,1317:237,177,33,0,0,0.15319 -31605,1317:238,178,33,0,0,0.151333 -31606,1317:239,179,33,0,0,0.149026 -31607,1318:130,180,33,0,0,0.151281 -31608,7318:140,-180,34,0,0,0.147056 -31609,7317:249,-179,34,0,0,0.14658 -31610,7317:248,-178,34,0,0,0.146439 -31611,7317:247,-177,34,0,0,0.146992 -31612,7317:246,-176,34,0,0,0.147663 -31613,7317:245,-175,34,0,0,0.148856 -31614,7317:144,-174,34,0,0,0.150504 -31615,7317:143,-173,34,0,0,0.151584 -31616,7317:142,-172,34,0,0,0.15177 -31617,7317:141,-171,34,0,0,0.15363 -31618,7317:140,-170,34,0,0,0.156946 -31619,7316:249,-169,34,0,0,0.157245 -31620,7316:248,-168,34,0,0,0.157627 -31621,7316:247,-167,34,0,0,0.159546 -31622,7316:246,-166,34,0,0,0.161415 -31623,7316:245,-165,34,0,0,0.162712 -31624,7316:144,-164,34,0,0,0.163062 -31625,7316:143,-163,34,0,0,0.163119 -31626,7316:142,-162,34,0,0,0.164526 -31627,7316:141,-161,34,0,0,0.162139 -31628,7316:140,-160,34,0,0,0.16529 -31629,7315:249,-159,34,0,0,0.166827 -31630,7315:248,-158,34,0,0,0.165361 -31631,7315:247,-157,34,0,0,0.167514 -31632,7315:246,-156,34,0,0,0.17066 -31633,7315:245,-155,34,0,0,0.172765 -31634,7315:144,-154,34,0,0,0.178642 -31635,7315:143,-153,34,0,0,0.17976 -31636,7315:142,-152,34,0,0,0.184411 -31637,7315:141,-151,34,0,0,0.185962 -31638,7315:140,-150,34,0,0,0.188055 -31639,7314:249,-149,34,0,0,0.190309 -31640,7314:248,-148,34,0,0,0.190515 -31641,7314:247,-147,34,0,0,0.189156 -31642,7314:246,-146,34,0,0,0.191929 -31643,7314:245,-145,34,0,0,0.197193 -31644,7314:144,-144,34,0,0,0.198171 -31645,7314:143,-143,34,0,0,0.201705 -31646,7314:142,-142,34,0,0,0.203947 -31647,7314:141,-141,34,0,0,0.207811 -31648,7314:140,-140,34,0,0,0.209797 -31649,7313:249,-139,34,0,0,0.212896 -31650,7313:248,-138,34,0,0,0.212586 -31651,7313:247,-137,34,0,0,0.21195 -31652,7313:246,-136,34,0,0,0.214918 -31653,7313:245,-135,34,0,0,0.216099 -31654,7313:144,-134,34,0,0,0.222946 -31655,7313:143,-133,34,0,0,0.226274 -31656,7313:142,-132,34,0,0,0.226328 -31657,7313:141,-131,34,0,0,0.22991 -31658,7313:140,-130,34,0,0,0.229292 -31659,7312:249,-129,34,0,0,0.232852 -31660,7312:248,-128,34,0,0,0.229782 -31661,7312:247,-127,34,0,0,0.226202 -31662,7312:246,-126,34,0,0,0.226094 -31663,7312:245,-125,34,0,0,0.222661 -31664,7306:144,-64,34,0,0,0.136388 -31665,7306:143,-63,34,0,0,0.151017 -31666,7306:142,-62,34,0,0,0.138912 -31667,7306:141,-61,34,0,0,0.138483 -31668,7306:140,-60,34,0,0,0.135615 -31669,7305:249,-59,34,0,0,0.128251 -31670,7305:142,-52,34,0,0,0.104346 -31671,7305:141,-51,34,0,0,0.110159 -31672,7305:140,-50,34,0,0,0.112486 -31673,7304:249,-49,34,0,0,0.118274 -31674,7304:248,-48,34,0,0,0.129624 -31675,7304:247,-47,34,0,0,0.133402 -31676,7304:246,-46,34,0,0,0.132798 -31677,7304:245,-45,34,0,0,0.135627 -31678,7304:144,-44,34,0,0,0.139072 -31679,7304:143,-43,34,0,0,0.163934 -31680,7304:142,-42,34,0,0,0.187898 -31681,7304:141,-41,34,0,0,0.204031 -31682,7304:140,-40,34,0,0,0.202982 -31683,7303:249,-39,34,0,0,0.214813 -31684,7303:248,-38,34,0,0,0.194733 -31685,7303:247,-37,34,0,0,0.211574 -31686,7303:246,-36,34,0,0,0.217127 -31687,7303:245,-35,34,0,0,0.21269 -31688,7303:144,-34,34,0,0,0.221313 -31689,7303:143,-33,34,0,0,0.222217 -31690,7303:142,-32,34,0,0,0.242569 -31691,7303:141,-31,34,0,0,0.251396 -31692,7303:140,-30,34,0,0,0.252908 -31693,7302:249,-29,34,0,0,0.260276 -31694,7302:248,-28,34,0,0,0.294022 -31695,7302:247,-27,34,0,0,0.28243 -31696,7302:246,-26,34,0,0,0.287749 -31697,7302:245,-25,34,0,0,0.287223 -31698,7302:144,-24,34,0,0,0.285543 -31699,7302:143,-23,34,0,0,0.277357 -31700,7302:142,-22,34,0,0,0.283953 -31701,7302:141,-21,34,0,0,0.279586 -31702,7302:140,-20,34,0,0,0.276822 -31703,7301:249,-19,34,0,0,0.265712 -31704,7301:248,-18,34,0,0,0.271587 -31705,7301:247,-17,34,0,0,0.270349 -31706,7301:246,-16,34,0,0,0.267944 -31707,7301:245,-15,34,0,0,0.269074 -31708,7301:144,-14,34,0,0,0.261762 -31709,7301:143,-13,34,0,0,0.264012 -31710,7301:142,-12,34,0,0,0.258087 -31711,7301:141,-11,34,0,0,0.258441 -31712,7301:140,-10,34,0,0,0.260276 -31713,7300:249,-9,34,0,0,0.260534 -31714,7300:248,-8,34,0,0,0.263016 -31715,7300:247,-7,34,0,0,0.264492 -31716,7300:246,-6,34,0,0,0.257281 -31717,1302:249,29,34,0,0,0.262498 -31718,1303:140,30,34,0,0,0.269964 -31719,1303:141,31,34,0,0,0.276719 -31720,1303:245,35,34,0,0,0.266716 -31721,1303:246,36,34,0,0,0.270328 -31722,1314:141,141,34,0,0,0.110825 -31723,1314:142,142,34,0,0,0.123915 -31724,1314:143,143,34,0,0,0.130216 -31725,1314:144,144,34,0,0,0.105281 -31726,1314:245,145,34,0,0,0.103733 -31727,1314:246,146,34,0,0,0.100818 -31728,1314:247,147,34,0,0,0.112138 -31729,1314:248,148,34,0,0,0.120488 -31730,1314:249,149,34,0,0,0.122439 -31731,1315:140,150,34,0,0,0.126254 -31732,1315:141,151,34,0,0,0.127369 -31733,1315:142,152,34,0,0,0.124968 -31734,1315:143,153,34,0,0,0.122384 -31735,1315:144,154,34,0,0,0.123848 -31736,1315:245,155,34,0,0,0.119825 -31737,1315:246,156,34,0,0,0.11976 -31738,1315:247,157,34,0,0,0.13115 -31739,1315:248,158,34,0,0,0.133236 -31740,1315:249,159,34,0,0,0.131572 -31741,1316:140,160,34,0,0,0.130449 -31742,1316:141,161,34,0,0,0.130939 -31743,1316:142,162,34,0,0,0.133165 -31744,1316:143,163,34,0,0,0.141052 -31745,1316:144,164,34,0,0,0.140468 -31746,1316:245,165,34,0,0,0.132857 -31747,1316:246,166,34,0,0,0.133545 -31748,1316:247,167,34,0,0,0.137724 -31749,1316:248,168,34,0,0,0.135639 -31750,1316:249,169,34,0,0,0.141326 -31751,1317:140,170,34,0,0,0.142101 -31752,1317:141,171,34,0,0,0.141676 -31753,1317:142,172,34,0,0,0.141688 -31754,1317:143,173,34,0,0,0.141401 -31755,1317:144,174,34,0,0,0.140592 -31756,1317:245,175,34,0,0,0.140629 -31757,1317:246,176,34,0,0,0.141813 -31758,1317:247,177,34,0,0,0.143144 -31759,1317:248,178,34,0,0,0.144003 -31760,1317:249,179,34,0,0,0.146323 -31761,1318:140,180,34,0,0,0.147056 -31762,7318:350,-180,35,0,0,0.143699 -31763,7317:459,-179,35,0,0,0.143977 -31764,7317:458,-178,35,0,0,0.144879 -31765,7317:457,-177,35,0,0,0.145491 -31766,7317:456,-176,35,0,0,0.146221 -31767,7317:455,-175,35,0,0,0.147637 -31768,7317:354,-174,35,0,0,0.148012 -31769,7317:353,-173,35,0,0,0.148311 -31770,7317:352,-172,35,0,0,0.148687 -31771,7317:351,-171,35,0,0,0.150176 -31772,7317:350,-170,35,0,0,0.151664 -31773,7316:459,-169,35,0,0,0.152911 -31774,7316:458,-168,35,0,0,0.151981 -31775,7316:457,-167,35,0,0,0.151928 -31776,7316:456,-166,35,0,0,0.154407 -31777,7316:455,-165,35,0,0,0.157763 -31778,7316:354,-164,35,0,0,0.157927 -31779,7316:353,-163,35,0,0,0.155039 -31780,7316:352,-162,35,0,0,0.156091 -31781,7316:351,-161,35,0,0,0.156851 -31782,7316:350,-160,35,0,0,0.15868 -31783,7315:459,-159,35,0,0,0.158433 -31784,7315:458,-158,35,0,0,0.157518 -31785,7315:457,-157,35,0,0,0.157545 -31786,7315:456,-156,35,0,0,0.159505 -31787,7315:455,-155,35,0,0,0.161068 -31788,7315:354,-154,35,0,0,0.163161 -31789,7315:353,-153,35,0,0,0.168274 -31790,7315:352,-152,35,0,0,0.173161 -31791,7315:351,-151,35,0,0,0.177484 -31792,7315:350,-150,35,0,0,0.181784 -31793,7314:459,-149,35,0,0,0.183086 -31794,7314:458,-148,35,0,0,0.18418 -31795,7314:457,-147,35,0,0,0.180975 -31796,7314:456,-146,35,0,0,0.177589 -31797,7314:455,-145,35,0,0,0.187804 -31798,7314:354,-144,35,0,0,0.18944 -31799,7314:353,-143,35,0,0,0.188856 -31800,7314:352,-142,35,0,0,0.193993 -31801,7314:351,-141,35,0,0,0.195944 -31802,7314:350,-140,35,0,0,0.199645 -31803,7313:459,-139,35,0,0,0.200615 -31804,7313:458,-138,35,0,0,0.201903 -31805,7313:457,-137,35,0,0,0.203314 -31806,7313:456,-136,35,0,0,0.206377 -31807,7313:455,-135,35,0,0,0.2107 -31808,7313:354,-134,35,0,0,0.216621 -31809,7313:353,-133,35,0,0,0.217005 -31810,7313:352,-132,35,0,0,0.220941 -31811,7313:351,-131,35,0,0,0.221419 -31812,7313:350,-130,35,0,0,0.21851 -31813,7312:459,-129,35,0,0,0.220199 -31814,7312:458,-128,35,0,0,0.221632 -31815,7312:457,-127,35,0,0,0.223231 -31816,7312:456,-126,35,0,0,0.222963 -31817,7312:455,-125,35,0,0,0.218317 -31818,7306:458,-68,35,0,0,0.12809 -31819,7306:353,-63,35,0,0,0.122915 -31820,7306:352,-62,35,0,0,0.128504 -31821,7306:351,-61,35,0,0,0.121493 -31822,7306:350,-60,35,0,0,0.120281 -31823,7305:459,-59,35,0,0,0.126265 -31824,7305:458,-58,35,0,0,0.120902 -31825,7305:352,-52,35,0,0,0.103037 -31826,7305:351,-51,35,0,0,0.118617 -31827,7305:350,-50,35,0,0,0.11988 -31828,7304:459,-49,35,0,0,0.129254 -31829,7304:458,-48,35,0,0,0.134774 -31830,7304:457,-47,35,0,0,0.150124 -31831,7304:456,-46,35,0,0,0.154675 -31832,7304:455,-45,35,0,0,0.153537 -31833,7304:354,-44,35,0,0,0.169168 -31834,7304:353,-43,35,0,0,0.18304 -31835,7304:352,-42,35,0,0,0.19134 -31836,7304:351,-41,35,0,0,0.180884 -31837,7304:350,-40,35,0,0,0.208437 -31838,7303:459,-39,35,0,0,0.186569 -31839,7303:458,-38,35,0,0,0.195459 -31840,7303:457,-37,35,0,0,0.198825 -31841,7303:456,-36,35,0,0,0.202915 -31842,7303:455,-35,35,0,0,0.212999 -31843,7303:354,-34,35,0,0,0.211831 -31844,7303:353,-33,35,0,0,0.210581 -31845,7303:352,-32,35,0,0,0.210291 -31846,7303:351,-31,35,0,0,0.25353 -31847,7303:350,-30,35,0,0,0.273277 -31848,7302:459,-29,35,0,0,0.268367 -31849,7302:458,-28,35,0,0,0.284329 -31850,7302:457,-27,35,0,0,0.281182 -31851,7302:456,-26,35,0,0,0.274053 -31852,7302:455,-25,35,0,0,0.250219 -31853,7302:354,-24,35,0,0,0.258224 -31854,7302:353,-23,35,0,0,0.278367 -31855,7302:352,-22,35,0,0,0.280601 -31856,7302:351,-21,35,0,0,0.276801 -31857,7302:350,-20,35,0,0,0.270795 -31858,7301:459,-19,35,0,0,0.263773 -31859,7301:458,-18,35,0,0,0.269013 -31860,7301:457,-17,35,0,0,0.267944 -31861,7301:456,-16,35,0,0,0.266877 -31862,7301:455,-15,35,0,0,0.265212 -31863,7301:354,-14,35,0,0,0.259407 -31864,7301:353,-13,35,0,0,0.256516 -31865,7301:352,-12,35,0,0,0.250392 -31866,7301:351,-11,35,0,0,0.25101 -31867,7301:350,-10,35,0,0,0.25072 -31868,7300:459,-9,35,0,0,0.25157 -31869,7300:458,-8,35,0,0,0.254191 -31870,7300:457,-7,35,0,0,0.254191 -31871,7300:456,-6,35,0,0,0.256771 -31872,7300:455,-5,35,0,0,0.255811 -31873,7300:354,-4,35,0,0,0.253238 -31874,7300:353,-3,35,0,0,0.213258 -31875,1303:350,30,35,0,0,0.254074 -31876,1303:351,31,35,0,0,0.2585 -31877,1303:352,32,35,0,0,0.246822 -31878,1314:352,142,35,0,0,0.0930596 -31879,1314:353,143,35,0,0,0.105562 -31880,1314:455,145,35,0,0,0.094694 -31881,1314:456,146,35,0,0,0.0931986 -31882,1314:457,147,35,0,0,0.10741 -31883,1314:458,148,35,0,0,0.11493 -31884,1314:459,149,35,0,0,0.117408 -31885,1315:350,150,35,0,0,0.116644 -31886,1315:351,151,35,0,0,0.119652 -31887,1315:352,152,35,0,0,0.119836 -31888,1315:353,153,35,0,0,0.121263 -31889,1315:354,154,35,0,0,0.123459 -31890,1315:455,155,35,0,0,0.121285 -31891,1315:456,156,35,0,0,0.119349 -31892,1315:457,157,35,0,0,0.119446 -31893,1315:458,158,35,0,0,0.12508 -31894,1315:459,159,35,0,0,0.130344 -31895,1316:350,160,35,0,0,0.129833 -31896,1316:351,161,35,0,0,0.129566 -31897,1316:352,162,35,0,0,0.130753 -31898,1316:353,163,35,0,0,0.131396 -31899,1316:354,164,35,0,0,0.131819 -31900,1316:455,165,35,0,0,0.131866 -31901,1316:456,166,35,0,0,0.132821 -31902,1316:457,167,35,0,0,0.133795 -31903,1316:458,168,35,0,0,0.137371 -31904,1316:459,169,35,0,0,0.138556 -31905,1317:350,170,35,0,0,0.138863 -31906,1317:351,171,35,0,0,0.138617 -31907,1317:352,172,35,0,0,0.138986 -31908,1317:353,173,35,0,0,0.139849 -31909,1317:354,174,35,0,0,0.139898 -31910,1317:455,175,35,0,0,0.140084 -31911,1317:456,176,35,0,0,0.140518 -31912,1317:457,177,35,0,0,0.141189 -31913,1317:458,178,35,0,0,0.142251 -31914,1317:459,179,35,0,0,0.143106 -31915,1318:350,180,35,0,0,0.143699 -31916,7318:360,-180,36,0,0,0.143813 -31917,7317:469,-179,36,0,0,0.144332 -31918,7317:468,-178,36,0,0,0.145133 -31919,7317:467,-177,36,0,0,0.145746 -31920,7317:466,-176,36,0,0,0.146105 -31921,7317:465,-175,36,0,0,0.146349 -31922,7317:364,-174,36,0,0,0.146683 -31923,7317:363,-173,36,0,0,0.147133 -31924,7317:362,-172,36,0,0,0.147456 -31925,7317:361,-171,36,0,0,0.147288 -31926,7317:360,-170,36,0,0,0.147211 -31927,7316:469,-169,36,0,0,0.148064 -31928,7316:468,-168,36,0,0,0.148661 -31929,7316:467,-167,36,0,0,0.14926 -31930,7316:466,-166,36,0,0,0.150583 -31931,7316:465,-165,36,0,0,0.152233 -31932,7316:364,-164,36,0,0,0.152472 -31933,7316:363,-163,36,0,0,0.150609 -31934,7316:362,-162,36,0,0,0.15015 -31935,7316:361,-161,36,0,0,0.150189 -31936,7316:360,-160,36,0,0,0.151518 -31937,7315:469,-159,36,0,0,0.152392 -31938,7315:468,-158,36,0,0,0.152844 -31939,7315:467,-157,36,0,0,0.153684 -31940,7315:466,-156,36,0,0,0.155011 -31941,7315:465,-155,36,0,0,0.155443 -31942,7315:364,-154,36,0,0,0.155146 -31943,7315:363,-153,36,0,0,0.156905 -31944,7315:362,-152,36,0,0,0.16025 -31945,7315:361,-151,36,0,0,0.164653 -31946,7315:360,-150,36,0,0,0.167399 -31947,7314:469,-149,36,0,0,0.16803 -31948,7314:468,-148,36,0,0,0.169674 -31949,7314:467,-147,36,0,0,0.1719 -31950,7314:466,-146,36,0,0,0.170718 -31951,7314:465,-145,36,0,0,0.17133 -31952,7314:364,-144,36,0,0,0.178355 -31953,7314:363,-143,36,0,0,0.180519 -31954,7314:362,-142,36,0,0,0.182825 -31955,7314:361,-141,36,0,0,0.184504 -31956,7314:360,-140,36,0,0,0.187413 -31957,7313:469,-139,36,0,0,0.190784 -31958,7313:468,-138,36,0,0,0.195007 -31959,7313:467,-137,36,0,0,0.197389 -31961,7313:465,-135,36,0,0,0.206966 -31962,7313:364,-134,36,0,0,0.20978 -31963,7313:363,-133,36,0,0,0.216047 -31964,7313:362,-132,36,0,0,0.219213 -31965,7313:361,-131,36,0,0,0.21497 -31966,7313:360,-130,36,0,0,0.211265 -31967,7312:469,-129,36,0,0,0.213378 -31968,7312:468,-128,36,0,0,0.213879 -31969,7312:467,-127,36,0,0,0.216796 -31970,7312:466,-126,36,0,0,0.219072 -31971,7306:466,-66,36,0,0,0.123437 -31972,7306:465,-65,36,0,0,0.122186 -31973,7306:364,-64,36,0,0,0.123648 -31974,7306:363,-63,36,0,0,0.125001 -31975,7306:361,-61,36,0,0,0.120979 -31976,7306:360,-60,36,0,0,0.11494 -31977,7305:469,-59,36,0,0,0.112948 -31978,7305:468,-58,36,0,0,0.117952 -31979,7305:467,-57,36,0,0,0.117536 -31980,7305:465,-55,36,0,0,0.100753 -31981,7305:364,-54,36,0,0,0.09533 -31982,7305:363,-53,36,0,0,0.0979943 -31983,7305:362,-52,36,0,0,0.113733 -31984,7305:361,-51,36,0,0,0.117547 -31985,7305:360,-50,36,0,0,0.121867 -31986,7304:469,-49,36,0,0,0.13101 -31987,7304:468,-48,36,0,0,0.135675 -31988,7304:467,-47,36,0,0,0.14913 -31989,7304:466,-46,36,0,0,0.162419 -31990,7304:465,-45,36,0,0,0.163709 -31991,7304:364,-44,36,0,0,0.16161 -31992,7304:363,-43,36,0,0,0.162796 -31993,7304:362,-42,36,0,0,0.177829 -31994,7304:361,-41,36,0,0,0.169992 -31995,7304:360,-40,36,0,0,0.178295 -31996,7303:469,-39,36,0,0,0.180124 -31997,7303:468,-38,36,0,0,0.180762 -31998,7303:467,-37,36,0,0,0.194491 -31999,7303:466,-36,36,0,0,0.188055 -32000,7303:465,-35,36,0,0,0.182411 -32001,7303:364,-34,36,0,0,0.180762 -32002,7303:363,-33,36,0,0,0.181707 -32003,7303:362,-32,36,0,0,0.188825 -32004,7303:361,-31,36,0,0,0.214848 -32005,7303:360,-30,36,0,0,0.264892 -32006,7302:469,-29,36,0,0,0.23146 -32007,7302:468,-28,36,0,0,0.25587 -32008,7302:467,-27,36,0,0,0.266937 -32009,7302:466,-26,36,0,0,0.252209 -32010,7302:465,-25,36,0,0,0.233329 -32011,7302:364,-24,36,0,0,0.249718 -32012,7302:363,-23,36,0,0,0.23844 -32013,7302:362,-22,36,0,0,0.237676 -32014,7302:361,-21,36,0,0,0.243439 -32015,7302:360,-20,36,0,0,0.265613 -32016,7301:469,-19,36,0,0,0.260256 -32017,7301:468,-18,36,0,0,0.260534 -32018,7301:467,-17,36,0,0,0.262219 -32019,7301:466,-16,36,0,0,0.266254 -32020,7301:465,-15,36,0,0,0.262796 -32021,7301:364,-14,36,0,0,0.257556 -32022,7301:363,-13,36,0,0,0.253977 -32023,7301:362,-12,36,0,0,0.246422 -32024,7301:361,-11,36,0,0,0.242588 -32025,7301:360,-10,36,0,0,0.243211 -32026,7300:469,-9,36,0,0,0.244747 -32027,7300:468,-8,36,0,0,0.245697 -32028,7300:467,-7,36,0,0,0.236932 -32029,7300:364,-4,36,0,0,0.241513 -32030,7300:363,-3,36,0,0,0.246613 -32031,7300:362,-2,36,0,0,0.247052 -32032,7300:361,-1,36,0,0,0.2346 -32033,1314:363,143,36,0,0,0.0866592 -32034,1314:466,146,36,0,0,0.0921963 -32035,1314:467,147,36,0,0,0.102516 -32036,1314:468,148,36,0,0,0.11038 -32037,1314:469,149,36,0,0,0.113847 -32038,1315:360,150,36,0,0,0.116707 -32039,1315:361,151,36,0,0,0.116824 -32040,1315:362,152,36,0,0,0.119188 -32041,1315:363,153,36,0,0,0.121088 -32042,1315:364,154,36,0,0,0.123447 -32043,1315:465,155,36,0,0,0.122649 -32044,1315:466,156,36,0,0,0.119966 -32045,1315:468,158,36,0,0,0.120118 -32046,1315:469,159,36,0,0,0.118434 -32047,1316:360,160,36,0,0,0.130216 -32048,1316:361,161,36,0,0,0.129103 -32049,1316:362,162,36,0,0,0.128113 -32050,1316:363,163,36,0,0,0.131185 -32051,1316:364,164,36,0,0,0.134045 -32052,1316:465,165,36,0,0,0.134033 -32053,1316:466,166,36,0,0,0.134248 -32054,1316:467,167,36,0,0,0.136436 -32055,1316:468,168,36,0,0,0.135519 -32056,1316:469,169,36,0,0,0.135399 -32057,1317:360,170,36,0,0,0.135194 -32058,1317:361,171,36,0,0,0.135675 -32059,1317:362,172,36,0,0,0.137407 -32060,1317:363,173,36,0,0,0.13874 -32061,1317:364,174,36,0,0,0.139688 -32062,1317:465,175,36,0,0,0.139985 -32063,1317:466,176,36,0,0,0.140903 -32064,1317:467,177,36,0,0,0.1417 -32065,1317:468,178,36,0,0,0.142301 -32066,1317:469,179,36,0,0,0.143068 -32067,1318:360,180,36,0,0,0.143813 -32068,7318:370,-180,37,0,0,0.138067 -32069,7317:479,-179,37,0,0,0.140567 -32070,7317:478,-178,37,0,0,0.142026 -32071,7317:477,-177,37,0,0,0.142076 -32072,7317:476,-176,37,0,0,0.142051 -32073,7317:475,-175,37,0,0,0.143459 -32074,7317:374,-174,37,0,0,0.144015 -32075,7317:373,-173,37,0,0,0.145236 -32076,7317:372,-172,37,0,0,0.145363 -32077,7317:371,-171,37,0,0,0.145414 -32078,7317:370,-170,37,0,0,0.145657 -32079,7316:479,-169,37,0,0,0.146092 -32080,7316:478,-168,37,0,0,0.146554 -32081,7316:477,-167,37,0,0,0.147159 -32082,7316:476,-166,37,0,0,0.146811 -32083,7316:475,-165,37,0,0,0.146208 -32084,7316:374,-164,37,0,0,0.146451 -32085,7316:373,-163,37,0,0,0.14725 -32086,7316:372,-162,37,0,0,0.146992 -32087,7316:371,-161,37,0,0,0.14712 -32088,7316:370,-160,37,0,0,0.147624 -32089,7315:479,-159,37,0,0,0.14712 -32090,7315:478,-158,37,0,0,0.148 -32091,7315:477,-157,37,0,0,0.14896 -32092,7315:476,-156,37,0,0,0.149404 -32093,7315:475,-155,37,0,0,0.150084 -32094,7315:374,-154,37,0,0,0.152127 -32095,7315:373,-153,37,0,0,0.154917 -32096,7315:372,-152,37,0,0,0.15764 -32097,7315:371,-151,37,0,0,0.160845 -32098,7315:370,-150,37,0,0,0.162265 -32099,7314:479,-149,37,0,0,0.163638 -32100,7314:478,-148,37,0,0,0.16512 -32101,7314:477,-147,37,0,0,0.166385 -32102,7314:476,-146,37,0,0,0.167815 -32103,7314:475,-145,37,0,0,0.169312 -32104,7314:374,-144,37,0,0,0.17101 -32105,7314:373,-143,37,0,0,0.173559 -32106,7314:372,-142,37,0,0,0.176511 -32107,7314:371,-141,37,0,0,0.179472 -32108,7314:370,-140,37,0,0,0.183995 -32109,7313:479,-139,37,0,0,0.188322 -32110,7313:478,-138,37,0,0,0.19088 -32111,7313:477,-137,37,0,0,0.1938 -32112,7313:476,-136,37,0,0,0.199365 -32113,7313:475,-135,37,0,0,0.202666 -32114,7313:374,-134,37,0,0,0.205201 -32115,7313:373,-133,37,0,0,0.210684 -32116,7313:372,-132,37,0,0,0.209813 -32117,7313:371,-131,37,0,0,0.208675 -32118,7313:370,-130,37,0,0,0.210257 -32119,7312:479,-129,37,0,0,0.209422 -32120,7312:478,-128,37,0,0,0.211762 -32121,7312:477,-127,37,0,0,0.214865 -32122,7312:476,-126,37,0,0,0.213585 -32123,7305:477,-57,37,0,0,0.099402 -32124,7305:476,-56,37,0,0,0.101791 -32125,7305:374,-54,37,0,0,0.0913568 -32126,7305:373,-53,37,0,0,0.103599 -32127,7305:372,-52,37,0,0,0.111607 -32128,7305:371,-51,37,0,0,0.114387 -32129,7305:370,-50,37,0,0,0.117121 -32130,7304:479,-49,37,0,0,0.127357 -32131,7304:478,-48,37,0,0,0.140468 -32132,7304:477,-47,37,0,0,0.152871 -32133,7304:476,-46,37,0,0,0.156308 -32134,7304:475,-45,37,0,0,0.158817 -32135,7304:374,-44,37,0,0,0.155295 -32136,7304:373,-43,37,0,0,0.150767 -32137,7304:372,-42,37,0,0,0.15434 -32138,7304:371,-41,37,0,0,0.149091 -32139,7304:370,-40,37,0,0,0.153097 -32140,7303:479,-39,37,0,0,0.154582 -32141,7303:478,-38,37,0,0,0.163119 -32142,7303:477,-37,37,0,0,0.161623 -32143,7303:476,-36,37,0,0,0.154099 -32144,7303:475,-35,37,0,0,0.152459 -32145,7303:374,-34,37,0,0,0.158269 -32146,7303:373,-33,37,0,0,0.198155 -32147,7303:372,-32,37,0,0,0.195168 -32148,7303:371,-31,37,0,0,0.230147 -32149,7303:370,-30,37,0,0,0.244291 -32150,7302:479,-29,37,0,0,0.245412 -32151,7302:478,-28,37,0,0,0.213655 -32152,7302:477,-27,37,0,0,0.219266 -32153,7302:476,-26,37,0,0,0.218002 -32154,7302:475,-25,37,0,0,0.223641 -32155,7302:374,-24,37,0,0,0.217215 -32156,7302:373,-23,37,0,0,0.22759 -32157,7302:372,-22,37,0,0,0.24868 -32158,7302:371,-21,37,0,0,0.258579 -32159,7302:370,-20,37,0,0,0.258736 -32160,7301:479,-19,37,0,0,0.259328 -32161,7301:478,-18,37,0,0,0.25589 -32162,7301:477,-17,37,0,0,0.253626 -32163,7301:476,-16,37,0,0,0.256203 -32164,7301:475,-15,37,0,0,0.241928 -32165,7301:374,-14,37,0,0,0.249583 -32166,7301:373,-13,37,0,0,0.246689 -32167,7301:372,-12,37,0,0,0.238571 -32168,7300:479,-9,37,0,0,0.235708 -32169,7300:478,-8,37,0,0,0.235912 -32170,7300:477,-7,37,0,0,0.23606 -32171,7300:476,-6,37,0,0,0.222377 -32172,7300:475,-5,37,0,0,0.205285 -32173,1300:371,0,37,0,0,0.230985 -32174,1314:373,143,37,0,0,0.0859141 -32175,1314:476,146,37,0,0,0.0933116 -32176,1314:477,147,37,0,0,0.101575 -32177,1314:478,148,37,0,0,0.108657 -32178,1314:479,149,37,0,0,0.112845 -32179,1315:370,150,37,0,0,0.118102 -32180,1315:371,151,37,0,0,0.119134 -32181,1315:372,152,37,0,0,0.119134 -32182,1315:373,153,37,0,0,0.120379 -32183,1315:374,154,37,0,0,0.120913 -32184,1315:475,155,37,0,0,0.12076 -32185,1315:476,156,37,0,0,0.121647 -32186,1315:477,157,37,0,0,0.120815 -32187,1316:370,160,37,0,0,0.117121 -32188,1316:371,161,37,0,0,0.123514 -32189,1316:372,162,37,0,0,0.126753 -32190,1316:373,163,37,0,0,0.126186 -32191,1316:374,164,37,0,0,0.131173 -32192,1316:475,165,37,0,0,0.132892 -32193,1316:476,166,37,0,0,0.133414 -32194,1316:477,167,37,0,0,0.13262 -32195,1316:478,168,37,0,0,0.13156 -32196,1316:479,169,37,0,0,0.132738 -32197,1317:370,170,37,0,0,0.1342 -32198,1317:371,171,37,0,0,0.134631 -32199,1317:372,172,37,0,0,0.134475 -32200,1317:373,173,37,0,0,0.131419 -32201,1317:374,174,37,0,0,0.131185 -32202,1317:475,175,37,0,0,0.133545 -32203,1317:476,176,37,0,0,0.136194 -32204,1317:477,177,37,0,0,0.136933 -32205,1317:478,178,37,0,0,0.136122 -32206,1317:479,179,37,0,0,0.138274 -32207,1318:370,180,37,0,0,0.138067 -32208,7318:380,-180,38,0,0,0.135808 -32209,7317:489,-179,38,0,0,0.137712 -32210,7317:488,-178,38,0,0,0.140109 -32211,7317:487,-177,38,0,0,0.140592 -32212,7317:486,-176,38,0,0,0.141239 -32213,7317:485,-175,38,0,0,0.141851 -32214,7317:384,-174,38,0,0,0.142264 -32215,7317:383,-173,38,0,0,0.14254 -32216,7317:382,-172,38,0,0,0.144955 -32217,7317:381,-171,38,0,0,0.14535 -32218,7317:380,-170,38,0,0,0.14493 -32219,7316:489,-169,38,0,0,0.14507 -32220,7316:488,-168,38,0,0,0.145223 -32221,7316:487,-167,38,0,0,0.145951 -32222,7316:486,-166,38,0,0,0.146349 -32223,7316:485,-165,38,0,0,0.145849 -32224,7316:384,-164,38,0,0,0.145299 -32225,7316:383,-163,38,0,0,0.144993 -32226,7316:382,-162,38,0,0,0.144726 -32227,7316:381,-161,38,0,0,0.144358 -32228,7316:380,-160,38,0,0,0.143927 -32229,7315:489,-159,38,0,0,0.143649 -32230,7315:488,-158,38,0,0,0.143737 -32231,7315:487,-157,38,0,0,0.144612 -32232,7315:486,-156,38,0,0,0.146131 -32233,7315:485,-155,38,0,0,0.147831 -32234,7315:384,-154,38,0,0,0.151399 -32235,7315:383,-153,38,0,0,0.152698 -32236,7315:382,-152,38,0,0,0.154582 -32237,7315:381,-151,38,0,0,0.157463 -32238,7315:380,-150,38,0,0,0.15923 -32239,7314:489,-149,38,0,0,0.160693 -32240,7314:488,-148,38,0,0,0.163638 -32241,7314:487,-147,38,0,0,0.16385 -32242,7314:486,-146,38,0,0,0.164837 -32243,7314:485,-145,38,0,0,0.165574 -32244,7314:384,-144,38,0,0,0.167413 -32245,7314:383,-143,38,0,0,0.174075 -32246,7314:382,-142,38,0,0,0.174741 -32247,7314:381,-141,38,0,0,0.178566 -32248,7314:380,-140,38,0,0,0.185263 -32249,7313:489,-139,38,0,0,0.186273 -32250,7313:488,-138,38,0,0,0.187632 -32251,7313:487,-137,38,0,0,0.192599 -32252,7313:486,-136,38,0,0,0.196009 -32253,7313:485,-135,38,0,0,0.19809 -32254,7313:384,-134,38,0,0,0.203664 -32255,7313:383,-133,38,0,0,0.20798 -32256,7313:382,-132,38,0,0,0.206393 -32257,7313:381,-131,38,0,0,0.206477 -32258,7313:380,-130,38,0,0,0.208946 -32259,7312:489,-129,38,0,0,0.209558 -32260,7312:488,-128,38,0,0,0.202052 -32261,7312:485,-125,38,0,0,0.19099 -32262,7305:384,-54,38,0,0,0.0893389 -32263,7305:383,-53,38,0,0,0.101331 -32264,7305:382,-52,38,0,0,0.111974 -32265,7305:381,-51,38,0,0,0.110511 -32266,7305:380,-50,38,0,0,0.120075 -32267,7304:489,-49,38,0,0,0.135062 -32268,7304:488,-48,38,0,0,0.148987 -32269,7304:487,-47,38,0,0,0.154608 -32270,7304:486,-46,38,0,0,0.151241 -32271,7304:485,-45,38,0,0,0.148427 -32272,7304:384,-44,38,0,0,0.145542 -32273,7304:383,-43,38,0,0,0.149417 -32274,7304:382,-42,38,0,0,0.147133 -32275,7304:381,-41,38,0,0,0.144726 -32276,7304:380,-40,38,0,0,0.148259 -32277,7303:489,-39,38,0,0,0.145542 -32278,7303:488,-38,38,0,0,0.147779 -32279,7303:487,-37,38,0,0,0.146722 -32280,7303:486,-36,38,0,0,0.157327 -32281,7303:485,-35,38,0,0,0.158351 -32282,7303:384,-34,38,0,0,0.158872 -32283,7303:383,-33,38,0,0,0.164046 -32284,7303:382,-32,38,0,0,0.190182 -32285,7303:381,-31,38,0,0,0.204799 -32286,7303:380,-30,38,0,0,0.215229 -32287,7302:489,-29,38,0,0,0.223249 -32288,7302:488,-28,38,0,0,0.216255 -32289,7302:487,-27,38,0,0,0.212312 -32290,7302:486,-26,38,0,0,0.2049 -32291,7302:485,-25,38,0,0,0.221224 -32292,7302:384,-24,38,0,0,0.211077 -32293,7302:383,-23,38,0,0,0.222572 -32294,7302:382,-22,38,0,0,0.238198 -32295,7302:381,-21,38,0,0,0.236283 -32296,7302:380,-20,38,0,0,0.232962 -32297,7301:489,-19,38,0,0,0.230165 -32298,7301:488,-18,38,0,0,0.233385 -32299,7301:487,-17,38,0,0,0.24395 -32300,7301:486,-16,38,0,0,0.25499 -32301,7301:485,-15,38,0,0,0.241269 -32302,7301:384,-14,38,0,0,0.241721 -32303,7301:383,-13,38,0,0,0.237658 -32304,7301:382,-12,38,0,0,0.236042 -32305,7301:381,-11,38,0,0,0.228603 -32306,7300:487,-7,38,0,0,0.235043 -32307,7300:486,-6,38,0,0,0.206293 -32308,1300:381,0,38,0,0,0.222341 -32309,1300:381,1,38,0,0,0.225466 -32310,1314:383,143,38,0,0,0.0804923 -32311,1314:486,146,38,0,0,0.0912546 -32312,1314:487,147,38,0,0,0.103656 -32313,1314:488,148,38,0,0,0.108071 -32314,1314:489,149,38,0,0,0.111058 -32315,1315:380,150,38,0,0,0.113702 -32316,1315:381,151,38,0,0,0.117079 -32317,1315:382,152,38,0,0,0.119793 -32318,1315:383,153,38,0,0,0.120968 -32319,1315:384,154,38,0,0,0.121746 -32320,1315:485,155,38,0,0,0.122605 -32321,1315:486,156,38,0,0,0.123614 -32322,1315:487,157,38,0,0,0.12135 -32323,1316:380,160,38,0,0,0.116782 -32324,1316:381,161,38,0,0,0.114596 -32325,1316:382,162,38,0,0,0.119511 -32326,1316:383,163,38,0,0,0.127483 -32327,1316:384,164,38,0,0,0.128228 -32328,1316:485,165,38,0,0,0.128274 -32329,1316:486,166,38,0,0,0.129242 -32330,1316:487,167,38,0,0,0.1301 -32331,1316:488,168,38,0,0,0.13108 -32332,1316:489,169,38,0,0,0.132963 -32333,1317:380,170,38,0,0,0.133284 -32334,1317:381,171,38,0,0,0.129566 -32335,1317:382,172,38,0,0,0.126685 -32336,1317:383,173,38,0,0,0.126708 -32337,1317:384,174,38,0,0,0.127221 -32338,1317:485,175,38,0,0,0.127278 -32339,1317:486,176,38,0,0,0.129011 -32340,1317:487,177,38,0,0,0.13101 -32341,1317:488,178,38,0,0,0.132928 -32342,1317:489,179,38,0,0,0.134535 -32343,1318:380,180,38,0,0,0.135808 -32344,7318:390,-180,39,0,0,0.135242 -32345,7317:499,-179,39,0,0,0.134355 -32346,7317:498,-178,39,0,0,0.13101 -32347,7317:497,-177,39,0,0,0.130787 -32348,7317:496,-176,39,0,0,0.13122 -32349,7317:495,-175,39,0,0,0.131889 -32350,7317:394,-174,39,0,0,0.133997 -32351,7317:393,-173,39,0,0,0.136861 -32352,7317:392,-172,39,0,0,0.140158 -32353,7317:391,-171,39,0,0,0.141863 -32354,7317:390,-170,39,0,0,0.14356 -32355,7316:499,-169,39,0,0,0.144739 -32356,7316:497,-167,39,0,0,0.145032 -32357,7316:496,-166,39,0,0,0.145146 -32358,7316:495,-165,39,0,0,0.145197 -32359,7316:394,-164,39,0,0,0.144981 -32360,7316:393,-163,39,0,0,0.144815 -32361,7316:392,-162,39,0,0,0.144943 -32362,7316:391,-161,39,0,0,0.145006 -32363,7316:390,-160,39,0,0,0.143421 -32364,7315:499,-159,39,0,0,0.141963 -32365,7315:498,-158,39,0,0,0.143118 -32366,7315:497,-157,39,0,0,0.145338 -32367,7315:496,-156,39,0,0,0.146439 -32368,7315:495,-155,39,0,0,0.148765 -32369,7315:394,-154,39,0,0,0.149495 -32370,7315:393,-153,39,0,0,0.15078 -32371,7315:392,-152,39,0,0,0.152286 -32372,7315:391,-151,39,0,0,0.155349 -32373,7315:390,-150,39,0,0,0.157354 -32374,7314:499,-149,39,0,0,0.15764 -32375,7314:498,-148,39,0,0,0.157831 -32376,7314:497,-147,39,0,0,0.158913 -32377,7314:496,-146,39,0,0,0.162279 -32378,7314:495,-145,39,0,0,0.164894 -32379,7314:394,-144,39,0,0,0.166784 -32380,7314:393,-143,39,0,0,0.168404 -32381,7314:392,-142,39,0,0,0.169732 -32382,7314:391,-141,39,0,0,0.17209 -32383,7314:390,-140,39,0,0,0.177289 -32384,7313:499,-139,39,0,0,0.177499 -32385,7313:498,-138,39,0,0,0.181249 -32386,7313:497,-137,39,0,0,0.183333 -32387,7313:496,-136,39,0,0,0.185154 -32388,7313:495,-135,39,0,0,0.19034 -32389,7313:394,-134,39,0,0,0.199202 -32390,7313:393,-133,39,0,0,0.199973 -32391,7313:392,-132,39,0,0,0.200598 -32392,7313:391,-131,39,0,0,0.203631 -32393,7313:390,-130,39,0,0,0.207692 -32394,7305:394,-54,39,0,0,0.0876154 -32395,7305:393,-53,39,0,0,0.100307 -32396,7305:392,-52,39,0,0,0.106428 -32397,7305:391,-51,39,0,0,0.11036 -32398,7305:390,-50,39,0,0,0.134379 -32399,7304:499,-49,39,0,0,0.141152 -32400,7304:498,-48,39,0,0,0.148038 -32401,7304:497,-47,39,0,0,0.14558 -32402,7304:496,-46,39,0,0,0.139293 -32403,7304:495,-45,39,0,0,0.142565 -32404,7304:394,-44,39,0,0,0.147133 -32405,7304:393,-43,39,0,0,0.142314 -32406,7304:392,-42,39,0,0,0.139257 -32407,7304:391,-41,39,0,0,0.139874 -32408,7304:390,-40,39,0,0,0.143018 -32409,7303:499,-39,39,0,0,0.143383 -32410,7303:498,-38,39,0,0,0.142703 -32411,7303:497,-37,39,0,0,0.15222 -32412,7303:496,-36,39,0,0,0.158201 -32413,7303:495,-35,39,0,0,0.160402 -32414,7303:394,-34,39,0,0,0.164103 -32415,7303:393,-33,39,0,0,0.166855 -32416,7303:392,-32,39,0,0,0.180033 -32417,7303:391,-31,39,0,0,0.194862 -32418,7303:390,-30,39,0,0,0.210649 -32419,7302:499,-29,39,0,0,0.20182 -32420,7302:498,-28,39,0,0,0.209014 -32421,7302:497,-27,39,0,0,0.206629 -32422,7302:496,-26,39,0,0,0.202218 -32423,7302:495,-25,39,0,0,0.20073 -32424,7302:394,-24,39,0,0,0.202931 -32425,7302:393,-23,39,0,0,0.216639 -32426,7302:392,-22,39,0,0,0.231825 -32427,7302:391,-21,39,0,0,0.246498 -32428,7302:390,-20,39,0,0,0.247702 -32429,7301:499,-19,39,0,0,0.244689 -32430,7301:498,-18,39,0,0,0.241194 -32431,7301:497,-17,39,0,0,0.243552 -32432,7301:496,-16,39,0,0,0.252947 -32433,7301:495,-15,39,0,0,0.251107 -32434,7301:394,-14,39,0,0,0.247702 -32435,7301:393,-13,39,0,0,0.242211 -32436,7301:392,-12,39,0,0,0.234065 -32437,7300:497,-7,39,0,0,0.232045 -32438,1300:391,0,39,0,0,0.211574 -32439,1300:391,1,39,0,0,0.226346 -32440,1300:392,2,39,0,0,0.214208 -32441,1314:496,146,39,0,0,0.0884236 -32442,1314:497,147,39,0,0,0.10598 -32443,1314:498,148,39,0,0,0.108627 -32444,1314:499,149,39,0,0,0.109877 -32445,1315:390,150,39,0,0,0.114982 -32446,1315:391,151,39,0,0,0.118983 -32447,1315:392,152,39,0,0,0.121077 -32448,1315:393,153,39,0,0,0.122164 -32449,1315:394,154,39,0,0,0.12245 -32450,1315:495,155,39,0,0,0.122682 -32451,1315:496,156,39,0,0,0.12367 -32452,1315:497,157,39,0,0,0.119144 -32453,1316:391,161,39,0,0,0.112097 -32454,1316:392,162,39,0,0,0.112117 -32455,1316:393,163,39,0,0,0.117313 -32456,1316:394,164,39,0,0,0.124497 -32457,1316:495,165,39,0,0,0.123425 -32458,1316:496,166,39,0,0,0.122837 -32459,1316:497,167,39,0,0,0.127872 -32460,1316:498,168,39,0,0,0.128607 -32461,1316:499,169,39,0,0,0.131021 -32462,1317:390,170,39,0,0,0.128538 -32463,1317:391,171,39,0,0,0.127975 -32464,1317:392,172,39,0,0,0.128102 -32465,1317:393,173,39,0,0,0.125994 -32466,1317:394,174,39,0,0,0.128699 -32467,1317:495,175,39,0,0,0.130274 -32468,1317:496,176,39,0,0,0.131185 -32469,1317:497,177,39,0,0,0.131443 -32470,1317:498,178,39,0,0,0.131478 -32471,1317:499,179,39,0,0,0.13481 -32472,1318:390,180,39,0,0,0.135242 -32473,7418:100,-180,40,0,0,0.13183 -32474,7417:209,-179,40,0,0,0.13216 -32475,7417:208,-178,40,0,0,0.130834 -32476,7417:207,-177,40,0,0,0.130298 -32477,7417:206,-176,40,0,0,0.130472 -32478,7417:205,-175,40,0,0,0.130904 -32479,7417:104,-174,40,0,0,0.133557 -32480,7417:103,-173,40,0,0,0.138617 -32481,7417:102,-172,40,0,0,0.138115 -32482,7417:101,-171,40,0,0,0.140158 -32483,7417:100,-170,40,0,0,0.141863 -32484,7416:209,-169,40,0,0,0.144332 -32485,7416:208,-168,40,0,0,0.145798 -32486,7416:207,-167,40,0,0,0.145236 -32487,7416:206,-166,40,0,0,0.136569 -32488,7416:205,-165,40,0,0,0.140779 -32489,7416:104,-164,40,0,0,0.138704 -32490,7416:103,-163,40,0,0,0.14694 -32491,7416:102,-162,40,0,0,0.146876 -32492,7416:101,-161,40,0,0,0.145849 -32493,7416:100,-160,40,0,0,0.14399 -32494,7415:209,-159,40,0,0,0.143055 -32495,7415:208,-158,40,0,0,0.142051 -32496,7415:207,-157,40,0,0,0.142917 -32497,7415:206,-156,40,0,0,0.143775 -32498,7415:205,-155,40,0,0,0.143825 -32499,7415:104,-154,40,0,0,0.1459 -32500,7415:103,-153,40,0,0,0.144993 -32501,7415:102,-152,40,0,0,0.145236 -32502,7415:101,-151,40,0,0,0.149888 -32503,7415:100,-150,40,0,0,0.153217 -32504,7414:209,-149,40,0,0,0.154166 -32505,7414:208,-148,40,0,0,0.153871 -32506,7414:207,-147,40,0,0,0.153591 -32507,7414:206,-146,40,0,0,0.161206 -32508,7414:205,-145,40,0,0,0.163062 -32509,7414:104,-144,40,0,0,0.163441 -32510,7414:103,-143,40,0,0,0.167356 -32511,7414:102,-142,40,0,0,0.173117 -32512,7414:101,-141,40,0,0,0.175245 -32513,7414:100,-140,40,0,0,0.177334 -32514,7413:209,-139,40,0,0,0.17801 -32515,7413:208,-138,40,0,0,0.177634 -32516,7413:207,-137,40,0,0,0.179367 -32517,7413:206,-136,40,0,0,0.182657 -32518,7413:205,-135,40,0,0,0.192168 -32519,7413:104,-134,40,0,0,0.190356 -32520,7413:103,-133,40,0,0,0.193543 -32521,7413:102,-132,40,0,0,0.197666 -32522,7413:101,-131,40,0,0,0.199382 -32523,7413:100,-130,40,0,0,0.204498 -32524,7412:209,-129,40,0,0,0.194443 -32525,7407:209,-79,40,0,0,0.0898333 -32526,7407:208,-78,40,0,0,0.089699 -32527,7405:205,-55,40,0,0,0.0845682 -32528,7405:104,-54,40,0,0,0.0862941 -32529,7405:103,-53,40,0,0,0.0922133 -32530,7405:102,-52,40,0,0,0.0977042 -32531,7405:101,-51,40,0,0,0.121537 -32532,7405:100,-50,40,0,0,0.136751 -32533,7404:209,-49,40,0,0,0.136025 -32534,7404:208,-48,40,0,0,0.135723 -32535,7404:207,-47,40,0,0,0.136691 -32536,7404:206,-46,40,0,0,0.13576 -32537,7404:205,-45,40,0,0,0.133962 -32538,7404:104,-44,40,0,0,0.135182 -32539,7404:103,-43,40,0,0,0.134798 -32540,7404:102,-42,40,0,0,0.137749 -32541,7404:101,-41,40,0,0,0.137481 -32542,7404:100,-40,40,0,0,0.138888 -32543,7403:209,-39,40,0,0,0.141338 -32544,7403:208,-38,40,0,0,0.148389 -32545,7403:207,-37,40,0,0,0.151505 -32546,7403:206,-36,40,0,0,0.153217 -32547,7403:205,-35,40,0,0,0.157408 -32548,7403:104,-34,40,0,0,0.157599 -32549,7403:103,-33,40,0,0,0.160209 -32550,7403:102,-32,40,0,0,0.173942 -32551,7403:101,-31,40,0,0,0.181692 -32552,7403:100,-30,40,0,0,0.177394 -32553,7402:209,-29,40,0,0,0.175394 -32554,7402:208,-28,40,0,0,0.181082 -32555,7402:207,-27,40,0,0,0.201622 -32556,7402:206,-26,40,0,0,0.202152 -32557,7402:205,-25,40,0,0,0.211968 -32558,7402:104,-24,40,0,0,0.214831 -32559,7402:103,-23,40,0,0,0.207946 -32560,7402:102,-22,40,0,0,0.208675 -32561,7402:101,-21,40,0,0,0.227138 -32562,7402:100,-20,40,0,0,0.243552 -32563,7401:209,-19,40,0,0,0.248661 -32564,7401:208,-18,40,0,0,0.250412 -32565,7401:207,-17,40,0,0,0.250836 -32566,7401:206,-16,40,0,0,0.251899 -32567,7401:205,-15,40,0,0,0.24776 -32568,7401:104,-14,40,0,0,0.24665 -32569,7401:103,-13,40,0,0,0.247702 -32570,7401:102,-12,40,0,0,0.24157 -32571,7401:101,-11,40,0,0,0.228821 -32572,7400:207,-7,40,0,0,0.230147 -32573,7400:206,-6,40,0,0,0.201903 -32574,7400:102,-2,40,0,0,0.20881 -32575,7400:101,-1,40,0,0,0.207861 -32576,1400:101,0,40,0,0,0.205251 -32577,1400:101,1,40,0,0,0.208048 -32578,1400:102,2,40,0,0,0.217722 -32579,1400:103,3,40,0,0,0.19953 -32580,1414:104,144,40,0,0,0.0792464 -32581,1414:205,145,40,0,0,0.0773852 -32582,1414:206,146,40,0,0,0.0884982 -32583,1414:207,147,40,0,0,0.109135 -32584,1414:208,148,40,0,0,0.111699 -32585,1414:209,149,40,0,0,0.113702 -32586,1415:100,150,40,0,0,0.116877 -32587,1415:101,151,40,0,0,0.119058 -32588,1415:102,152,40,0,0,0.119414 -32589,1415:103,153,40,0,0,0.118402 -32590,1415:104,154,40,0,0,0.118832 -32591,1415:205,155,40,0,0,0.120695 -32592,1415:206,156,40,0,0,0.121669 -32593,1415:207,157,40,0,0,0.10563 -32594,1416:104,164,40,0,0,0.111984 -32595,1416:205,165,40,0,0,0.121822 -32596,1416:206,166,40,0,0,0.122771 -32597,1416:208,168,40,0,0,0.124016 -32598,1416:209,169,40,0,0,0.127198 -32599,1417:100,170,40,0,0,0.128262 -32600,1417:101,171,40,0,0,0.12605 -32601,1417:102,172,40,0,0,0.127723 -32602,1417:103,173,40,0,0,0.127312 -32603,1417:104,174,40,0,0,0.127884 -32604,1417:205,175,40,0,0,0.127712 -32605,1417:206,176,40,0,0,0.12809 -32606,1417:207,177,40,0,0,0.128757 -32607,1417:208,178,40,0,0,0.12817 -32608,1417:209,179,40,0,0,0.127998 -32609,1418:100,180,40,0,0,0.13183 -32610,7418:110,-180,41,0,0,0.125406 -32611,7417:219,-179,41,0,0,0.126992 -32612,7417:218,-178,41,0,0,0.128354 -32613,7417:217,-177,41,0,0,0.129068 -32614,7417:216,-176,41,0,0,0.129404 -32615,7417:215,-175,41,0,0,0.129949 -32616,7417:114,-174,41,0,0,0.134439 -32617,7417:113,-173,41,0,0,0.139146 -32618,7417:112,-172,41,0,0,0.143081 -32619,7417:111,-171,41,0,0,0.144472 -32620,7417:110,-170,41,0,0,0.145236 -32621,7416:219,-169,41,0,0,0.142289 -32622,7416:218,-168,41,0,0,0.13847 -32623,7416:217,-167,41,0,0,0.144332 -32624,7416:216,-166,41,0,0,0.140965 -32625,7416:215,-165,41,0,0,0.131936 -32626,7416:113,-163,41,0,0,0.130846 -32627,7416:112,-162,41,0,0,0.1364 -32628,7416:111,-161,41,0,0,0.132573 -32629,7416:110,-160,41,0,0,0.147469 -32630,7415:219,-159,41,0,0,0.150124 -32631,7415:218,-158,41,0,0,0.146953 -32632,7415:217,-157,41,0,0,0.143598 -32633,7415:216,-156,41,0,0,0.141551 -32634,7415:215,-155,41,0,0,0.141688 -32635,7415:114,-154,41,0,0,0.142904 -32636,7415:113,-153,41,0,0,0.141963 -32637,7415:112,-152,41,0,0,0.142164 -32638,7415:111,-151,41,0,0,0.142728 -32639,7415:110,-150,41,0,0,0.145478 -32640,7414:219,-149,41,0,0,0.146863 -32641,7414:218,-148,41,0,0,0.148922 -32642,7414:217,-147,41,0,0,0.15327 -32643,7414:216,-146,41,0,0,0.155092 -32644,7414:215,-145,41,0,0,0.158365 -32645,7414:114,-144,41,0,0,0.159257 -32646,7414:113,-143,41,0,0,0.160748 -32647,7414:112,-142,41,0,0,0.170413 -32648,7414:111,-141,41,0,0,0.174637 -32649,7414:110,-140,41,0,0,0.179185 -32650,7413:219,-139,41,0,0,0.180884 -32651,7413:218,-138,41,0,0,0.182917 -32652,7413:217,-137,41,0,0,0.182856 -32653,7413:216,-136,41,0,0,0.185713 -32654,7413:215,-135,41,0,0,0.192391 -32655,7413:114,-134,41,0,0,0.194057 -32656,7413:113,-133,41,0,0,0.196868 -32657,7413:112,-132,41,0,0,0.198514 -32658,7413:111,-131,41,0,0,0.200928 -32659,7413:110,-130,41,0,0,0.199038 -32660,7408:110,-80,41,0,0,0.0875087 -32661,7407:219,-79,41,0,0,0.0877551 -32662,7407:218,-78,41,0,0,0.0903556 -32663,7405:215,-55,41,0,0,0.0824918 -32664,7405:114,-54,41,0,0,0.0900941 -32665,7405:113,-53,41,0,0,0.0920416 -32666,7405:112,-52,41,0,0,0.107498 -32667,7405:111,-51,41,0,0,0.130893 -32668,7405:110,-50,41,0,0,0.137164 -32669,7404:219,-49,41,0,0,0.136327 -32670,7404:218,-48,41,0,0,0.135543 -32671,7404:217,-47,41,0,0,0.134798 -32672,7404:216,-46,41,0,0,0.131443 -32673,7404:215,-45,41,0,0,0.131255 -32674,7404:114,-44,41,0,0,0.132845 -32675,7404:113,-43,41,0,0,0.132384 -32676,7404:112,-42,41,0,0,0.13294 -32677,7404:111,-41,41,0,0,0.134966 -32678,7404:110,-40,41,0,0,0.134081 -32679,7403:219,-39,41,0,0,0.1364 -32680,7403:218,-38,41,0,0,0.140233 -32681,7403:217,-37,41,0,0,0.143699 -32682,7403:216,-36,41,0,0,0.152313 -32683,7403:215,-35,41,0,0,0.152273 -32684,7403:114,-34,41,0,0,0.150714 -32685,7403:113,-33,41,0,0,0.150833 -32686,7403:112,-32,41,0,0,0.154743 -32687,7403:111,-31,41,0,0,0.172031 -32688,7403:110,-30,41,0,0,0.174119 -32689,7402:219,-29,41,0,0,0.172735 -32690,7402:218,-28,41,0,0,0.190245 -32691,7402:217,-27,41,0,0,0.191801 -32692,7402:216,-26,41,0,0,0.19695 -32693,7402:215,-25,41,0,0,0.215768 -32694,7402:114,-24,41,0,0,0.21923 -32695,7402:113,-23,41,0,0,0.216499 -32696,7402:112,-22,41,0,0,0.216796 -32697,7402:111,-21,41,0,0,0.243647 -32698,7402:110,-20,41,0,0,0.239543 -32699,7401:219,-19,41,0,0,0.238235 -32700,7401:218,-18,41,0,0,0.234471 -32701,7401:217,-17,41,0,0,0.231405 -32702,7401:216,-16,41,0,0,0.238963 -32703,7401:215,-15,41,0,0,0.234673 -32704,7401:114,-14,41,0,0,0.248623 -32705,7401:113,-13,41,0,0,0.247281 -32706,7401:112,-12,41,0,0,0.244139 -32707,7401:111,-11,41,0,0,0.234766 -32708,7401:110,-10,41,0,0,0.225681 -32709,7400:219,-9,41,0,0,0.220128 -32710,7400:218,-8,41,0,0,0.228024 -32711,7400:217,-7,41,0,0,0.215525 -32712,7400:113,-3,41,0,0,0.216116 -32713,7400:112,-2,41,0,0,0.217599 -32714,7400:111,-1,41,0,0,0.198433 -32715,1400:111,0,41,0,0,0.19142 -32716,1400:111,1,41,0,0,0.204198 -32717,1400:112,2,41,0,0,0.215143 -32718,1400:113,3,41,0,0,0.217809 -32719,1400:114,4,41,0,0,0.215873 -32720,1400:215,5,41,0,0,0.207354 -32721,1400:216,6,41,0,0,0.176302 -32722,1414:110,140,41,0,0,0.0791266 -32723,1414:111,141,41,0,0,0.077451 -32724,1414:112,142,41,0,0,0.0787084 -32725,1414:113,143,41,0,0,0.0829908 -32726,1414:114,144,41,0,0,0.0857045 -32727,1414:215,145,41,0,0,0.0862049 -32728,1414:216,146,41,0,0,0.0867814 -32729,1414:217,147,41,0,0,0.107794 -32730,1414:218,148,41,0,0,0.11177 -32731,1414:219,149,41,0,0,0.111709 -32732,1415:110,150,41,0,0,0.113899 -32733,1415:111,151,41,0,0,0.11264 -32734,1415:112,152,41,0,0,0.109166 -32735,1415:113,153,41,0,0,0.109526 -32736,1415:114,154,41,0,0,0.111018 -32737,1415:215,155,41,0,0,0.116338 -32738,1415:216,156,41,0,0,0.119717 -32739,1415:217,157,41,0,0,0.103628 -32740,1416:114,164,41,0,0,0.107607 -32741,1416:215,165,41,0,0,0.112445 -32742,1416:216,166,41,0,0,0.115758 -32743,1416:217,167,41,0,0,0.1176 -32744,1416:218,168,41,0,0,0.119382 -32745,1416:219,169,41,0,0,0.124206 -32746,1417:110,170,41,0,0,0.126197 -32747,1417:111,171,41,0,0,0.118509 -32748,1417:112,172,41,0,0,0.124317 -32749,1417:113,173,41,0,0,0.125666 -32750,1417:114,174,41,0,0,0.125711 -32751,1417:215,175,41,0,0,0.126469 -32752,1417:216,176,41,0,0,0.123781 -32753,1417:217,177,41,0,0,0.123392 -32754,1417:218,178,41,0,0,0.123037 -32755,1417:219,179,41,0,0,0.123004 -32756,1418:110,180,41,0,0,0.125406 -32757,7418:120,-180,42,0,0,0.126367 -32758,7417:229,-179,42,0,0,0.126039 -32759,7417:228,-178,42,0,0,0.127895 -32760,7417:227,-177,42,0,0,0.129358 -32761,7417:226,-176,42,0,0,0.130566 -32762,7417:225,-175,42,0,0,0.135026 -32763,7417:124,-174,42,0,0,0.132077 -32764,7417:123,-173,42,0,0,0.131443 -32765,7417:122,-172,42,0,0,0.13017 -32766,7417:121,-171,42,0,0,0.127004 -32767,7417:120,-170,42,0,0,0.12893 -32768,7416:229,-169,42,0,0,0.131995 -32769,7416:228,-168,42,0,0,0.136994 -32770,7416:227,-167,42,0,0,0.141501 -32771,7416:226,-166,42,0,0,0.140629 -32772,7416:225,-165,42,0,0,0.134894 -32773,7416:124,-164,42,0,0,0.124094 -32774,7416:121,-161,42,0,0,0.142691 -32775,7416:120,-160,42,0,0,0.147534 -32776,7415:229,-159,42,0,0,0.148298 -32777,7415:228,-158,42,0,0,0.151717 -32778,7415:227,-157,42,0,0,0.150084 -32779,7415:226,-156,42,0,0,0.148233 -32780,7415:225,-155,42,0,0,0.144332 -32781,7415:124,-154,42,0,0,0.142339 -32782,7415:123,-153,42,0,0,0.141002 -32783,7415:122,-152,42,0,0,0.141538 -32784,7415:121,-151,42,0,0,0.143232 -32785,7415:120,-150,42,0,0,0.148272 -32786,7414:229,-149,42,0,0,0.150649 -32787,7414:228,-148,42,0,0,0.152021 -32788,7414:227,-147,42,0,0,0.154394 -32789,7414:226,-146,42,0,0,0.155821 -32790,7414:225,-145,42,0,0,0.163624 -32791,7414:124,-144,42,0,0,0.165645 -32792,7414:123,-143,42,0,0,0.164188 -32793,7414:122,-142,42,0,0,0.163035 -32794,7414:121,-141,42,0,0,0.169847 -32795,7414:120,-140,42,0,0,0.173957 -32796,7413:229,-139,42,0,0,0.173942 -32797,7413:228,-138,42,0,0,0.182687 -32798,7413:227,-137,42,0,0,0.186133 -32799,7413:226,-136,42,0,0,0.186304 -32800,7413:225,-135,42,0,0,0.191961 -32801,7413:123,-133,42,0,0,0.186351 -32802,7413:122,-132,42,0,0,0.197601 -32803,7413:121,-131,42,0,0,0.195088 -32804,7407:229,-79,42,0,0,0.088548 -32805,7407:228,-78,42,0,0,0.0882746 -32806,7405:228,-58,42,0,0,0.0771947 -32807,7405:227,-57,42,0,0,0.0806066 -32808,7405:226,-56,42,0,0,0.0841079 -32809,7405:225,-55,42,0,0,0.0859464 -32810,7405:124,-54,42,0,0,0.122837 -32811,7405:123,-53,42,0,0,0.139343 -32812,7405:122,-52,42,0,0,0.134858 -32813,7405:121,-51,42,0,0,0.133985 -32814,7405:120,-50,42,0,0,0.130356 -32815,7404:229,-49,42,0,0,0.133962 -32816,7404:228,-48,42,0,0,0.134188 -32817,7404:227,-47,42,0,0,0.132113 -32818,7404:226,-46,42,0,0,0.13003 -32819,7404:225,-45,42,0,0,0.129531 -32820,7404:124,-44,42,0,0,0.129138 -32821,7404:123,-43,42,0,0,0.129682 -32822,7404:122,-42,42,0,0,0.131091 -32823,7404:121,-41,42,0,0,0.131419 -32824,7404:120,-40,42,0,0,0.131689 -32825,7403:229,-39,42,0,0,0.133023 -32826,7403:228,-38,42,0,0,0.138888 -32827,7403:227,-37,42,0,0,0.139923 -32828,7403:226,-36,42,0,0,0.142967 -32829,7403:225,-35,42,0,0,0.145836 -32830,7403:124,-34,42,0,0,0.151149 -32831,7403:123,-33,42,0,0,0.15343 -32832,7403:122,-32,42,0,0,0.156606 -32833,7403:121,-31,42,0,0,0.157777 -32834,7403:120,-30,42,0,0,0.161054 -32835,7402:229,-29,42,0,0,0.164837 -32836,7402:228,-28,42,0,0,0.166242 -32837,7402:227,-27,42,0,0,0.170413 -32838,7402:226,-26,42,0,0,0.174193 -32839,7402:225,-25,42,0,0,0.180109 -32840,7402:124,-24,42,0,0,0.192088 -32841,7402:123,-23,42,0,0,0.197845 -32842,7402:122,-22,42,0,0,0.220041 -32843,7402:121,-21,42,0,0,0.240386 -32844,7402:120,-20,42,0,0,0.239356 -32845,7401:229,-19,42,0,0,0.231752 -32846,7401:228,-18,42,0,0,0.233329 -32847,7401:227,-17,42,0,0,0.222644 -32848,7401:226,-16,42,0,0,0.219406 -32849,7401:225,-15,42,0,0,0.231441 -32850,7401:124,-14,42,0,0,0.236932 -32851,7401:123,-13,42,0,0,0.244386 -32852,7401:122,-12,42,0,0,0.244633 -32853,7401:121,-11,42,0,0,0.237007 -32854,7401:120,-10,42,0,0,0.229746 -32855,7400:229,-9,42,0,0,0.213034 -32856,7400:228,-8,42,0,0,0.198923 -32857,7400:225,-5,42,0,0,0.20636 -32858,7400:124,-4,42,0,0,0.212157 -32859,7400:123,-3,42,0,0,0.212775 -32860,7400:122,-2,42,0,0,0.212312 -32861,7400:121,-1,42,0,0,0.212054 -32862,1400:121,0,42,0,0,0.204498 -32863,1400:121,1,42,0,0,0.198449 -32864,1400:122,2,42,0,0,0.205402 -32865,1400:123,3,42,0,0,0.21556 -32866,1400:124,4,42,0,0,0.209609 -32867,1400:225,5,42,0,0,0.181173 -32868,1400:227,7,42,0,0,0.16147 -32869,1400:228,8,42,0,0,0.162559 -32870,1400:229,9,42,0,0,0.168692 -32871,1401:121,11,42,0,0,0.157504 -32872,1413:229,139,42,0,0,0.0779224 -32873,1414:120,140,42,0,0,0.0787755 -32874,1414:122,142,42,0,0,0.0942107 -32875,1414:123,143,42,0,0,0.0880847 -32876,1414:124,144,42,0,0,0.0833277 -32877,1414:225,145,42,0,0,0.0848548 -32878,1414:226,146,42,0,0,0.091093 -32879,1414:227,147,42,0,0,0.0992458 -32880,1414:228,148,42,0,0,0.0993652 -32881,1414:229,149,42,0,0,0.101885 -32882,1415:120,150,42,0,0,0.105455 -32883,1415:121,151,42,0,0,0.105039 -32884,1415:122,152,42,0,0,0.103628 -32885,1415:123,153,42,0,0,0.105999 -32886,1415:124,154,42,0,0,0.108498 -32887,1415:225,155,42,0,0,0.112774 -32888,1415:226,156,42,0,0,0.116856 -32889,1415:227,157,42,0,0,0.0982854 -32890,1416:225,165,42,0,0,0.111018 -32891,1416:226,166,42,0,0,0.114804 -32892,1416:227,167,42,0,0,0.119706 -32893,1416:228,168,42,0,0,0.120738 -32894,1416:229,169,42,0,0,0.124698 -32895,1417:120,170,42,0,0,0.125982 -32896,1417:121,171,42,0,0,0.119144 -32897,1417:122,172,42,0,0,0.117739 -32898,1417:123,173,42,0,0,0.120968 -32899,1417:124,174,42,0,0,0.123425 -32900,1417:225,175,42,0,0,0.123547 -32901,1417:226,176,42,0,0,0.121955 -32902,1417:227,177,42,0,0,0.121515 -32903,1417:228,178,42,0,0,0.121537 -32904,1417:229,179,42,0,0,0.123537 -32905,1418:120,180,42,0,0,0.126367 -32906,7418:130,-180,43,0,0,0.126288 -32907,7417:239,-179,43,0,0,0.125508 -32908,7417:238,-178,43,0,0,0.124161 -32909,7417:237,-177,43,0,0,0.128584 -32910,7417:236,-176,43,0,0,0.131045 -32911,7417:235,-175,43,0,0,0.129011 -32912,7417:134,-174,43,0,0,0.123893 -32913,7417:133,-173,43,0,0,0.123781 -32914,7417:132,-172,43,0,0,0.118886 -32915,7417:131,-171,43,0,0,0.117568 -32916,7417:130,-170,43,0,0,0.123114 -32917,7416:239,-169,43,0,0,0.124911 -32918,7416:238,-168,43,0,0,0.126277 -32919,7416:237,-167,43,0,0,0.125575 -32920,7416:236,-166,43,0,0,0.124631 -32921,7416:235,-165,43,0,0,0.122406 -32922,7416:134,-164,43,0,0,0.122506 -32923,7416:133,-163,43,0,0,0.123481 -32924,7416:132,-162,43,0,0,0.1104 -32925,7416:130,-160,43,0,0,0.139171 -32926,7415:239,-159,43,0,0,0.148311 -32927,7415:238,-158,43,0,0,0.146041 -32928,7415:237,-157,43,0,0,0.145504 -32929,7415:236,-156,43,0,0,0.154434 -32930,7415:235,-155,43,0,0,0.148012 -32931,7415:134,-154,43,0,0,0.143219 -32932,7415:133,-153,43,0,0,0.141763 -32933,7415:132,-152,43,0,0,0.143409 -32934,7415:131,-151,43,0,0,0.144345 -32935,7415:130,-150,43,0,0,0.149299 -32936,7414:239,-149,43,0,0,0.150032 -32937,7414:238,-148,43,0,0,0.152871 -32938,7414:237,-147,43,0,0,0.157218 -32939,7414:236,-146,43,0,0,0.160236 -32940,7414:235,-145,43,0,0,0.163441 -32941,7414:134,-144,43,0,0,0.163441 -32942,7414:133,-143,43,0,0,0.165318 -32943,7414:132,-142,43,0,0,0.166713 -32944,7414:131,-141,43,0,0,0.167356 -32945,7414:130,-140,43,0,0,0.168836 -32946,7413:239,-139,43,0,0,0.171783 -32947,7413:238,-138,43,0,0,0.177019 -32948,7413:237,-137,43,0,0,0.18026 -32949,7413:236,-136,43,0,0,0.190657 -32950,7413:133,-133,43,0,0,0.175691 -32951,7408:130,-80,43,0,0,0.0830691 -32952,7407:239,-79,43,0,0,0.0910247 -32953,7407:238,-78,43,0,0,0.088606 -32954,7405:238,-58,43,0,0,0.0789844 -32955,7405:237,-57,43,0,0,0.0836028 -32956,7405:236,-56,43,0,0,0.0907786 -32957,7405:235,-55,43,0,0,0.118767 -32958,7405:134,-54,43,0,0,0.13938 -32959,7405:133,-53,43,0,0,0.131901 -32960,7405:132,-52,43,0,0,0.129323 -32961,7405:131,-51,43,0,0,0.128412 -32962,7405:130,-50,43,0,0,0.129381 -32963,7404:239,-49,43,0,0,0.129624 -32964,7404:238,-48,43,0,0,0.129531 -32965,7404:237,-47,43,0,0,0.130077 -32966,7404:236,-46,43,0,0,0.128942 -32967,7404:235,-45,43,0,0,0.128746 -32968,7404:134,-44,43,0,0,0.128964 -32969,7404:133,-43,43,0,0,0.13024 -32970,7404:132,-42,43,0,0,0.132125 -32971,7404:131,-41,43,0,0,0.132384 -32972,7404:130,-40,43,0,0,0.129798 -32973,7403:239,-39,43,0,0,0.130822 -32974,7403:238,-38,43,0,0,0.133818 -32975,7403:237,-37,43,0,0,0.135977 -32976,7403:236,-36,43,0,0,0.136424 -32977,7403:235,-35,43,0,0,0.138924 -32978,7403:134,-34,43,0,0,0.150596 -32979,7403:133,-33,43,0,0,0.163133 -32980,7403:132,-32,43,0,0,0.179215 -32981,7403:131,-31,43,0,0,0.179004 -32982,7403:130,-30,43,0,0,0.169804 -32983,7402:239,-29,43,0,0,0.16727 -32984,7402:238,-28,43,0,0,0.16546 -32985,7402:237,-27,43,0,0,0.168116 -32986,7402:236,-26,43,0,0,0.176123 -32987,7402:235,-25,43,0,0,0.179972 -32988,7402:134,-24,43,0,0,0.185993 -32989,7402:133,-23,43,0,0,0.194282 -32990,7402:132,-22,43,0,0,0.195831 -32991,7402:131,-21,43,0,0,0.236246 -32992,7402:130,-20,43,0,0,0.234729 -32993,7401:239,-19,43,0,0,0.231698 -32994,7401:238,-18,43,0,0,0.230949 -32995,7401:237,-17,43,0,0,0.225861 -32996,7401:236,-16,43,0,0,0.216691 -32997,7401:235,-15,43,0,0,0.218335 -32998,7401:134,-14,43,0,0,0.237806 -32999,7401:133,-13,43,0,0,0.238384 -33000,7401:132,-12,43,0,0,0.239187 -33001,7401:131,-11,43,0,0,0.23135 -33002,7401:130,-10,43,0,0,0.217302 -33003,7400:239,-9,43,0,0,0.217162 -33004,7400:134,-4,43,0,0,0.211077 -33005,7400:133,-3,43,0,0,0.211008 -33006,7400:132,-2,43,0,0,0.212724 -33007,7400:131,-1,43,0,0,0.210257 -33008,1400:131,0,43,0,0,0.207624 -33009,1400:131,1,43,0,0,0.205771 -33010,1400:132,2,43,0,0,0.205251 -33011,1400:133,3,43,0,0,0.213327 -33012,1400:134,4,43,0,0,0.200598 -33013,1400:239,9,43,0,0,0.166499 -33014,1401:130,10,43,0,0,0.187397 -33015,1401:131,11,43,0,0,0.181967 -33016,1401:132,12,43,0,0,0.198416 -33017,1401:133,13,43,0,0,0.174178 -33018,1414:131,141,43,0,0,0.0888552 -33019,1414:132,142,43,0,0,0.0926444 -33020,1414:133,143,43,0,0,0.0894308 -33021,1414:134,144,43,0,0,0.084576 -33022,1414:235,145,43,0,0,0.0848468 -33023,1414:236,146,43,0,0,0.0882829 -33024,1414:237,147,43,0,0,0.0928864 -33025,1414:238,148,43,0,0,0.0954452 -33026,1414:239,149,43,0,0,0.0972973 -33027,1415:130,150,43,0,0,0.0971171 -33028,1415:131,151,43,0,0,0.098934 -33029,1415:132,152,43,0,0,0.101791 -33030,1415:133,153,43,0,0,0.104039 -33031,1415:134,154,43,0,0,0.104125 -33032,1415:235,155,43,0,0,0.105805 -33033,1415:236,156,43,0,0,0.108896 -33034,1415:237,157,43,0,0,0.107203 -33035,1415:238,158,43,0,0,0.0952857 -33036,1416:235,165,43,0,0,0.107282 -33037,1416:236,166,43,0,0,0.111058 -33038,1416:237,167,43,0,0,0.111322 -33039,1416:238,168,43,0,0,0.116549 -33040,1416:239,169,43,0,0,0.118145 -33041,1417:130,170,43,0,0,0.118188 -33042,1417:131,171,43,0,0,0.117952 -33043,1417:132,172,43,0,0,0.11989 -33044,1417:133,173,43,0,0,0.119825 -33045,1417:134,174,43,0,0,0.119977 -33046,1417:235,175,43,0,0,0.12063 -33047,1417:236,176,43,0,0,0.121822 -33048,1417:237,177,43,0,0,0.123937 -33049,1417:238,178,43,0,0,0.124945 -33050,1417:239,179,43,0,0,0.125733 -33051,1418:130,180,43,0,0,0.126288 -33052,7418:140,-180,44,0,0,0.124485 -33053,7417:249,-179,44,0,0,0.125159 -33054,7417:248,-178,44,0,0,0.123259 -33055,7417:247,-177,44,0,0,0.122142 -33056,7417:246,-176,44,0,0,0.12307 -33057,7417:245,-175,44,0,0,0.119479 -33058,7417:144,-174,44,0,0,0.118209 -33059,7417:143,-173,44,0,0,0.115663 -33060,7417:142,-172,44,0,0,0.110957 -33061,7417:141,-171,44,0,0,0.113485 -33062,7417:140,-170,44,0,0,0.113495 -33063,7416:249,-169,44,0,0,0.11224 -33064,7416:248,-168,44,0,0,0.112722 -33065,7416:247,-167,44,0,0,0.11224 -33066,7416:246,-166,44,0,0,0.112743 -33067,7416:245,-165,44,0,0,0.11822 -33068,7416:144,-164,44,0,0,0.122738 -33069,7416:143,-163,44,0,0,0.124507 -33070,7416:142,-162,44,0,0,0.120412 -33071,7416:141,-161,44,0,0,0.100418 -33072,7415:248,-158,44,0,0,0.149979 -33073,7415:246,-156,44,0,0,0.142452 -33074,7415:245,-155,44,0,0,0.153591 -33075,7415:144,-154,44,0,0,0.155187 -33076,7415:143,-153,44,0,0,0.146297 -33077,7415:142,-152,44,0,0,0.147211 -33078,7415:141,-151,44,0,0,0.148492 -33079,7415:140,-150,44,0,0,0.149039 -33080,7414:249,-149,44,0,0,0.149849 -33081,7414:248,-148,44,0,0,0.149888 -33082,7414:247,-147,44,0,0,0.151849 -33083,7414:246,-146,44,0,0,0.157422 -33084,7414:245,-145,44,0,0,0.155861 -33085,7414:144,-144,44,0,0,0.155524 -33086,7414:143,-143,44,0,0,0.158941 -33087,7414:142,-142,44,0,0,0.162559 -33088,7414:141,-141,44,0,0,0.165163 -33089,7414:140,-140,44,0,0,0.170704 -33090,7413:249,-139,44,0,0,0.175305 -33091,7413:248,-138,44,0,0,0.175037 -33092,7413:247,-137,44,0,0,0.184319 -33093,7413:246,-136,44,0,0,0.18646 -33094,7413:245,-135,44,0,0,0.178883 -33095,7413:144,-134,44,0,0,0.175334 -33096,7413:143,-133,44,0,0,0.168937 -33097,7408:140,-80,44,0,0,0.0827333 -33098,7407:249,-79,44,0,0,0.0891717 -33099,7407:248,-78,44,0,0,0.0889469 -33100,7405:249,-59,44,0,0,0.0768076 -33101,7405:248,-58,44,0,0,0.0803935 -33102,7405:247,-57,44,0,0,0.0808581 -33103,7405:246,-56,44,0,0,0.108359 -33104,7405:245,-55,44,0,0,0.140791 -33105,7405:144,-54,44,0,0,0.137724 -33106,7405:143,-53,44,0,0,0.131326 -33107,7405:142,-52,44,0,0,0.127632 -33108,7405:141,-51,44,0,0,0.126095 -33109,7405:140,-50,44,0,0,0.126583 -33110,7404:249,-49,44,0,0,0.126243 -33111,7404:248,-48,44,0,0,0.127552 -33112,7404:247,-47,44,0,0,0.129694 -33113,7404:246,-46,44,0,0,0.131948 -33114,7404:245,-45,44,0,0,0.136848 -33115,7404:144,-44,44,0,0,0.144713 -33116,7404:143,-43,44,0,0,0.149469 -33117,7404:142,-42,44,0,0,0.14756 -33118,7404:141,-41,44,0,0,0.141214 -33119,7404:140,-40,44,0,0,0.137067 -33120,7403:249,-39,44,0,0,0.133129 -33121,7403:248,-38,44,0,0,0.131783 -33122,7403:247,-37,44,0,0,0.133866 -33123,7403:246,-36,44,0,0,0.137322 -33124,7403:245,-35,44,0,0,0.140195 -33125,7403:144,-34,44,0,0,0.145619 -33126,7403:143,-33,44,0,0,0.15136 -33127,7403:142,-32,44,0,0,0.176795 -33128,7403:141,-31,44,0,0,0.185248 -33129,7403:140,-30,44,0,0,0.184149 -33130,7402:249,-29,44,0,0,0.177139 -33131,7402:248,-28,44,0,0,0.17532 -33132,7402:247,-27,44,0,0,0.169225 -33133,7402:246,-26,44,0,0,0.167858 -33134,7402:245,-25,44,0,0,0.171812 -33135,7402:144,-24,44,0,0,0.17409 -33136,7402:143,-23,44,0,0,0.182994 -33137,7402:142,-22,44,0,0,0.184736 -33138,7402:141,-21,44,0,0,0.214018 -33139,7402:140,-20,44,0,0,0.232045 -33140,7401:249,-19,44,0,0,0.233605 -33141,7401:248,-18,44,0,0,0.228349 -33142,7401:247,-17,44,0,0,0.225214 -33143,7401:246,-16,44,0,0,0.220305 -33144,7401:245,-15,44,0,0,0.225071 -33145,7401:144,-14,44,0,0,0.232577 -33146,7401:143,-13,44,0,0,0.234526 -33147,7401:142,-12,44,0,0,0.23366 -33148,7401:141,-11,44,0,0,0.230311 -33149,7401:140,-10,44,0,0,0.219512 -33150,7400:248,-8,44,0,0,0.213465 -33151,7400:246,-6,44,0,0,0.207236 -33152,7400:245,-5,44,0,0,0.21118 -33153,7400:144,-4,44,0,0,0.210206 -33154,7400:143,-3,44,0,0,0.208759 -33155,7400:142,-2,44,0,0,0.204498 -33156,7400:141,-1,44,0,0,0.204615 -33157,1400:141,0,44,0,0,0.200796 -33158,1400:141,1,44,0,0,0.201225 -33159,1400:142,2,44,0,0,0.205486 -33160,1400:143,3,44,0,0,0.205436 -33161,1400:144,4,44,0,0,0.194926 -33162,1400:247,7,44,0,0,0.165404 -33163,1400:248,8,44,0,0,0.156701 -33164,1401:141,11,44,0,0,0.193608 -33165,1401:142,12,44,0,0,0.19778 -33166,1401:143,13,44,0,0,0.188825 -33167,1401:144,14,44,0,0,0.188762 -33168,1401:245,15,44,0,0,0.194797 -33169,1414:143,143,44,0,0,0.09169 -33170,1414:144,144,44,0,0,0.0911779 -33171,1414:245,145,44,0,0,0.0860191 -33172,1414:246,146,44,0,0,0.0868873 -33173,1414:247,147,44,0,0,0.0888968 -33174,1414:248,148,44,0,0,0.0928431 -33175,1414:249,149,44,0,0,0.094158 -33176,1415:140,150,44,0,0,0.09533 -33177,1415:141,151,44,0,0,0.0960324 -33178,1415:142,152,44,0,0,0.0974147 -33179,1415:143,153,44,0,0,0.100409 -33180,1415:144,154,44,0,0,0.101051 -33181,1415:245,155,44,0,0,0.100679 -33182,1415:246,156,44,0,0,0.0989155 -33183,1415:247,157,44,0,0,0.0963718 -33184,1415:248,158,44,0,0,0.0947908 -33185,1415:249,159,44,0,0,0.0926096 -33186,1416:140,160,44,0,0,0.090516 -33187,1416:141,161,44,0,0,0.0869851 -33188,1416:245,165,44,0,0,0.0813097 -33189,1416:246,166,44,0,0,0.103742 -33190,1416:247,167,44,0,0,0.108359 -33191,1416:248,168,44,0,0,0.107646 -33192,1416:249,169,44,0,0,0.112671 -33193,1417:140,170,44,0,0,0.115055 -33194,1417:141,171,44,0,0,0.110734 -33195,1417:142,172,44,0,0,0.111505 -33196,1417:143,173,44,0,0,0.117153 -33197,1417:144,174,44,0,0,0.117068 -33198,1417:245,175,44,0,0,0.117675 -33199,1417:246,176,44,0,0,0.114211 -33200,1417:247,177,44,0,0,0.119522 -33201,1417:248,178,44,0,0,0.119782 -33202,1417:249,179,44,0,0,0.119306 -33203,1418:140,180,44,0,0,0.124485 -33204,7418:350,-180,45,0,0,0.121044 -33205,7417:459,-179,45,0,0,0.116686 -33206,7417:458,-178,45,0,0,0.114075 -33207,7417:457,-177,45,0,0,0.107262 -33208,7417:456,-176,45,0,0,0.108508 -33209,7417:455,-175,45,0,0,0.107834 -33210,7417:354,-174,45,0,0,0.106653 -33211,7417:353,-173,45,0,0,0.106253 -33212,7417:352,-172,45,0,0,0.104904 -33213,7417:351,-171,45,0,0,0.103351 -33214,7417:350,-170,45,0,0,0.101622 -33215,7416:459,-169,45,0,0,0.0975957 -33216,7416:458,-168,45,0,0,0.0962108 -33217,7416:457,-167,45,0,0,0.0945267 -33218,7416:456,-166,45,0,0,0.0960144 -33219,7416:455,-165,45,0,0,0.0877963 -33220,7416:353,-163,45,0,0,0.085407 -33221,7416:352,-162,45,0,0,0.0841316 -33222,7416:351,-161,45,0,0,0.0887887 -33223,7415:457,-157,45,0,0,0.152937 -33224,7415:455,-155,45,0,0,0.14581 -33225,7415:354,-154,45,0,0,0.155429 -33226,7415:353,-153,45,0,0,0.159684 -33227,7415:352,-152,45,0,0,0.150741 -33228,7415:351,-151,45,0,0,0.152512 -33229,7415:350,-150,45,0,0,0.151928 -33230,7414:459,-149,45,0,0,0.151466 -33231,7414:458,-148,45,0,0,0.152101 -33232,7414:457,-147,45,0,0,0.153524 -33233,7414:456,-146,45,0,0,0.153724 -33234,7414:455,-145,45,0,0,0.156389 -33235,7414:354,-144,45,0,0,0.160319 -33236,7414:353,-143,45,0,0,0.167442 -33237,7414:352,-142,45,0,0,0.167987 -33238,7414:351,-141,45,0,0,0.165815 -33239,7414:350,-140,45,0,0,0.166998 -33240,7413:459,-139,45,0,0,0.169877 -33241,7413:458,-138,45,0,0,0.174415 -33242,7413:457,-137,45,0,0,0.183133 -33243,7413:354,-134,45,0,0,0.164385 -33244,7408:350,-80,45,0,0,0.082414 -33245,7407:459,-79,45,0,0,0.0902541 -33246,7407:458,-78,45,0,0,0.0910247 -33247,7407:457,-77,45,0,0,0.0928431 -33248,7407:456,-76,45,0,0,0.0917843 -33249,7407:455,-75,45,0,0,0.0914936 -33250,7405:458,-58,45,0,0,0.0811487 -33251,7405:457,-57,45,0,0,0.0861239 -33252,7405:456,-56,45,0,0,0.138042 -33253,7405:455,-55,45,0,0,0.144104 -33254,7405:354,-54,45,0,0,0.133035 -33255,7405:353,-53,45,0,0,0.128297 -33256,7405:352,-52,45,0,0,0.124878 -33257,7405:351,-51,45,0,0,0.125598 -33258,7405:350,-50,45,0,0,0.127323 -33259,7404:459,-49,45,0,0,0.129949 -33260,7404:458,-48,45,0,0,0.13101 -33261,7404:457,-47,45,0,0,0.134631 -33262,7404:456,-46,45,0,0,0.139836 -33263,7404:455,-45,45,0,0,0.145555 -33264,7404:354,-44,45,0,0,0.161081 -33265,7404:353,-43,45,0,0,0.157927 -33266,7404:352,-42,45,0,0,0.152206 -33267,7404:351,-41,45,0,0,0.159477 -33268,7404:350,-40,45,0,0,0.156634 -33269,7403:459,-39,45,0,0,0.138458 -33270,7403:458,-38,45,0,0,0.136315 -33271,7403:457,-37,45,0,0,0.136775 -33272,7403:456,-36,45,0,0,0.13646 -33273,7403:455,-35,45,0,0,0.138348 -33274,7403:354,-34,45,0,0,0.141813 -33275,7403:353,-33,45,0,0,0.154206 -33276,7403:352,-32,45,0,0,0.164554 -33277,7403:351,-31,45,0,0,0.18096 -33278,7403:350,-30,45,0,0,0.191022 -33279,7402:459,-29,45,0,0,0.193591 -33280,7402:458,-28,45,0,0,0.183194 -33281,7402:457,-27,45,0,0,0.176332 -33282,7402:456,-26,45,0,0,0.173456 -33283,7402:455,-25,45,0,0,0.172163 -33284,7402:354,-24,45,0,0,0.169601 -33285,7402:353,-23,45,0,0,0.179654 -33286,7402:352,-22,45,0,0,0.186616 -33287,7402:351,-21,45,0,0,0.18131 -33288,7402:350,-20,45,0,0,0.192455 -33289,7401:459,-19,45,0,0,0.207658 -33290,7401:458,-18,45,0,0,0.21118 -33291,7401:457,-17,45,0,0,0.221348 -33292,7401:456,-16,45,0,0,0.227843 -33293,7401:455,-15,45,0,0,0.217634 -33294,7401:354,-14,45,0,0,0.215247 -33295,7401:353,-13,45,0,0,0.226382 -33296,7401:352,-12,45,0,0,0.229201 -33297,7401:351,-11,45,0,0,0.228911 -33298,7401:350,-10,45,0,0,0.228929 -33299,7400:459,-9,45,0,0,0.220605 -33300,7400:458,-8,45,0,0,0.21844 -33301,7400:457,-7,45,0,0,0.219459 -33302,7400:456,-6,45,0,0,0.203814 -33303,7400:455,-5,45,0,0,0.208166 -33304,7400:354,-4,45,0,0,0.203198 -33305,7400:353,-3,45,0,0,0.199891 -33306,7400:352,-2,45,0,0,0.201688 -33307,7400:351,-1,45,0,0,0.200895 -33308,1400:351,0,45,0,0,0.200945 -33309,1400:351,1,45,0,0,0.198907 -33310,1400:352,2,45,0,0,0.201936 -33311,1400:353,3,45,0,0,0.196236 -33312,1400:354,4,45,0,0,0.19228 -33313,1400:455,5,45,0,0,0.193977 -33314,1400:457,7,45,0,0,0.162894 -33315,1401:353,13,45,0,0,0.168289 -33316,1401:354,14,45,0,0,0.180139 -33317,1401:455,15,45,0,0,0.187131 -33318,1401:456,16,45,0,0,0.189298 -33319,1414:455,145,45,0,0,0.0912546 -33320,1414:456,146,45,0,0,0.0966854 -33321,1414:457,147,45,0,0,0.093103 -33322,1414:458,148,45,0,0,0.0898502 -33323,1414:459,149,45,0,0,0.0920072 -33324,1415:350,150,45,0,0,0.0960504 -33325,1415:351,151,45,0,0,0.0993285 -33326,1415:352,152,45,0,0,0.100995 -33327,1415:353,153,45,0,0,0.101126 -33328,1415:354,154,45,0,0,0.088093 -33329,1415:458,158,45,0,0,0.0804543 -33330,1415:459,159,45,0,0,0.0877797 -33331,1416:350,160,45,0,0,0.0864398 -33332,1416:351,161,45,0,0,0.086936 -33333,1416:352,162,45,0,0,0.0866999 -33334,1416:455,165,45,0,0,0.0757937 -33335,1416:456,166,45,0,0,0.0828268 -33336,1416:457,167,45,0,0,0.0983402 -33337,1416:458,168,45,0,0,0.0961484 -33338,1416:459,169,45,0,0,0.102016 -33339,1417:350,170,45,0,0,0.0999645 -33340,1417:351,171,45,0,0,0.091596 -33341,1417:352,172,45,0,0,0.104586 -33342,1417:353,173,45,0,0,0.111576 -33343,1417:354,174,45,0,0,0.11365 -33344,1417:455,175,45,0,0,0.112066 -33345,1417:456,176,45,0,0,0.112322 -33346,1417:457,177,45,0,0,0.11419 -33347,1417:458,178,45,0,0,0.116697 -33348,1417:459,179,45,0,0,0.120205 -33349,1418:350,180,45,0,0,0.121044 -33350,7418:360,-180,46,0,0,0.114804 -33351,7417:469,-179,46,0,0,0.113031 -33352,7417:468,-178,46,0,0,0.105184 -33353,7417:467,-177,46,0,0,0.0985041 -33354,7417:466,-176,46,0,0,0.0993375 -33355,7417:465,-175,46,0,0,0.0993375 -33356,7417:364,-174,46,0,0,0.100011 -33357,7417:363,-173,46,0,0,0.100103 -33358,7417:362,-172,46,0,0,0.0952327 -33359,7417:361,-171,46,0,0,0.0875743 -33360,7417:360,-170,46,0,0,0.0805455 -33361,7416:467,-167,46,0,0,0.0791865 -33362,7416:466,-166,46,0,0,0.0802342 -33363,7416:465,-165,46,0,0,0.0799994 -33364,7415:466,-156,46,0,0,0.152034 -33365,7415:465,-155,46,0,0,0.15749 -33366,7415:364,-154,46,0,0,0.158886 -33367,7415:363,-153,46,0,0,0.163709 -33368,7415:362,-152,46,0,0,0.163161 -33369,7415:361,-151,46,0,0,0.160929 -33370,7415:360,-150,46,0,0,0.159863 -33371,7414:469,-149,46,0,0,0.158666 -33372,7414:468,-148,46,0,0,0.155848 -33373,7414:467,-147,46,0,0,0.154447 -33374,7414:466,-146,46,0,0,0.153845 -33375,7414:465,-145,46,0,0,0.157777 -33376,7414:364,-144,46,0,0,0.16399 -33377,7414:363,-143,46,0,0,0.166413 -33378,7414:362,-142,46,0,0,0.170123 -33379,7414:361,-141,46,0,0,0.168822 -33380,7414:360,-140,46,0,0,0.16937 -33381,7413:469,-139,46,0,0,0.175795 -33382,7413:468,-138,46,0,0,0.173706 -33383,7413:467,-137,46,0,0,0.16803 -33384,7408:363,-83,46,0,0,0.0814865 -33385,7408:362,-82,46,0,0,0.0854712 -33386,7408:361,-81,46,0,0,0.087083 -33387,7408:360,-80,46,0,0,0.0892387 -33388,7407:469,-79,46,0,0,0.0902963 -33389,7407:468,-78,46,0,0,0.0899677 -33390,7407:467,-77,46,0,0,0.0906092 -33391,7407:465,-75,46,0,0,0.0831865 -33392,7407:364,-74,46,0,0,0.0911525 -33393,7405:469,-59,46,0,0,0.0785371 -33394,7405:468,-58,46,0,0,0.0799012 -33395,7405:467,-57,46,0,0,0.0826008 -33396,7405:466,-56,46,0,0,0.144599 -33397,7405:465,-55,46,0,0,0.142904 -33398,7405:364,-54,46,0,0,0.129914 -33399,7405:363,-53,46,0,0,0.127483 -33400,7405:362,-52,46,0,0,0.125001 -33401,7405:361,-51,46,0,0,0.126549 -33402,7405:360,-50,46,0,0,0.126333 -33403,7404:469,-49,46,0,0,0.12697 -33404,7404:468,-48,46,0,0,0.13196 -33405,7404:467,-47,46,0,0,0.145798 -33406,7404:466,-46,46,0,0,0.155173 -33407,7404:465,-45,46,0,0,0.155335 -33408,7404:364,-44,46,0,0,0.141888 -33409,7404:361,-41,46,0,0,0.13714 -33410,7404:360,-40,46,0,0,0.161373 -33411,7403:469,-39,46,0,0,0.154085 -33412,7403:468,-38,46,0,0,0.137261 -33413,7403:467,-37,46,0,0,0.134679 -33414,7403:466,-36,46,0,0,0.134666 -33415,7403:465,-35,46,0,0,0.136182 -33416,7403:364,-34,46,0,0,0.138593 -33417,7403:363,-33,46,0,0,0.145478 -33418,7403:362,-32,46,0,0,0.156471 -33419,7403:361,-31,46,0,0,0.164809 -33420,7403:360,-30,46,0,0,0.184381 -33421,7402:469,-29,46,0,0,0.197356 -33422,7402:468,-28,46,0,0,0.202931 -33423,7402:467,-27,46,0,0,0.198743 -33424,7402:466,-26,46,0,0,0.190974 -33425,7402:465,-25,46,0,0,0.191372 -33426,7402:364,-24,46,0,0,0.18531 -33427,7402:363,-23,46,0,0,0.183579 -33428,7402:362,-22,46,0,0,0.188967 -33429,7402:361,-21,46,0,0,0.200269 -33430,7402:360,-20,46,0,0,0.200318 -33431,7401:469,-19,46,0,0,0.203864 -33432,7401:468,-18,46,0,0,0.209609 -33433,7401:467,-17,46,0,0,0.207489 -33434,7401:466,-16,46,0,0,0.225986 -33435,7401:465,-15,46,0,0,0.217249 -33436,7401:364,-14,46,0,0,0.215734 -33437,7401:363,-13,46,0,0,0.214606 -33438,7401:362,-12,46,0,0,0.220499 -33439,7401:361,-11,46,0,0,0.219283 -33440,7401:360,-10,46,0,0,0.215907 -33441,7400:469,-9,46,0,0,0.216047 -33442,7400:468,-8,46,0,0,0.222039 -33443,7400:467,-7,46,0,0,0.219829 -33444,7400:466,-6,46,0,0,0.217267 -33445,7400:465,-5,46,0,0,0.207236 -33446,7400:364,-4,46,0,0,0.20149 -33447,7400:363,-3,46,0,0,0.200697 -33448,7400:362,-2,46,0,0,0.201176 -33449,7400:361,-1,46,0,0,0.19894 -33450,1400:361,0,46,0,0,0.202218 -33451,1400:361,1,46,0,0,0.201341 -33452,1400:465,5,46,0,0,0.182181 -33453,1400:466,6,46,0,0,0.179912 -33454,1401:362,12,46,0,0,0.16186 -33455,1401:363,13,46,0,0,0.171213 -33456,1401:364,14,46,0,0,0.174134 -33457,1401:465,15,46,0,0,0.179624 -33458,1401:466,16,46,0,0,0.160776 -33459,1414:467,147,46,0,0,0.0820961 -33460,1414:468,148,46,0,0,0.0829908 -33461,1415:468,158,46,0,0,0.0797805 -33462,1415:469,159,46,0,0,0.0840999 -33463,1416:360,160,46,0,0,0.0838865 -33464,1416:361,161,46,0,0,0.0805761 -33465,1416:362,162,46,0,0,0.0789023 -33466,1416:363,163,46,0,0,0.0787978 -33467,1416:364,164,46,0,0,0.0794567 -33468,1417:363,173,46,0,0,0.0928172 -33469,1417:364,174,46,0,0,0.102952 -33470,1417:465,175,46,0,0,0.105999 -33471,1417:466,176,46,0,0,0.107498 -33472,1417:467,177,46,0,0,0.11035 -33473,1417:468,178,46,0,0,0.115254 -33474,1417:469,179,46,0,0,0.113878 -33475,1418:360,180,46,0,0,0.114804 -33476,7418:370,-180,47,0,0,0.108061 -33477,7417:479,-179,47,0,0,0.106663 -33478,7417:478,-178,47,0,0,0.0988331 -33479,7417:477,-177,47,0,0,0.0942458 -33480,7417:476,-176,47,0,0,0.0913826 -33481,7417:475,-175,47,0,0,0.0901866 -33482,7417:374,-174,47,0,0,0.0901699 -33483,7417:373,-173,47,0,0,0.0889385 -33484,7417:372,-172,47,0,0,0.0863265 -33485,7417:371,-171,47,0,0,0.0802948 -33486,7417:370,-170,47,0,0,0.0788053 -33487,7416:479,-169,47,0,0,0.0789099 -33488,7416:478,-168,47,0,0,0.0790444 -33489,7415:477,-157,47,0,0,0.113609 -33490,7415:476,-156,47,0,0,0.136497 -33491,7415:374,-154,47,0,0,0.165389 -33492,7415:373,-153,47,0,0,0.164004 -33493,7415:372,-152,47,0,0,0.165801 -33494,7415:371,-151,47,0,0,0.158927 -33495,7415:370,-150,47,0,0,0.153858 -33496,7414:479,-149,47,0,0,0.152167 -33497,7414:478,-148,47,0,0,0.154233 -33498,7414:477,-147,47,0,0,0.15597 -33499,7414:476,-146,47,0,0,0.153898 -33500,7414:475,-145,47,0,0,0.153404 -33501,7414:374,-144,47,0,0,0.159877 -33502,7414:373,-143,47,0,0,0.165234 -33503,7414:372,-142,47,0,0,0.172941 -33504,7414:371,-141,47,0,0,0.174075 -33505,7414:370,-140,47,0,0,0.175439 -33506,7408:374,-84,47,0,0,0.0809726 -33507,7408:373,-83,47,0,0,0.0867324 -33508,7408:372,-82,47,0,0,0.0883905 -33509,7408:371,-81,47,0,0,0.0888136 -33510,7408:370,-80,47,0,0,0.0893639 -33511,7407:479,-79,47,0,0,0.0896906 -33512,7407:478,-78,47,0,0,0.0896655 -33513,7407:477,-77,47,0,0,0.088374 -33514,7407:476,-76,47,0,0,0.0890885 -33515,7407:475,-75,47,0,0,0.0803708 -33516,7407:374,-74,47,0,0,0.0924975 -33517,7406:374,-64,47,0,0,0.0784108 -33518,7406:373,-63,47,0,0,0.0800901 -33519,7405:479,-59,47,0,0,0.078865 -33520,7405:478,-58,47,0,0,0.0797805 -33521,7405:477,-57,47,0,0,0.0813559 -33522,7405:476,-56,47,0,0,0.14703 -33523,7405:475,-55,47,0,0,0.14558 -33524,7405:374,-54,47,0,0,0.134033 -33525,7405:373,-53,47,0,0,0.131913 -33526,7405:372,-52,47,0,0,0.129022 -33527,7405:371,-51,47,0,0,0.125372 -33528,7405:370,-50,47,0,0,0.137042 -33529,7404:479,-49,47,0,0,0.13576 -33530,7404:478,-48,47,0,0,0.149247 -33531,7404:477,-47,47,0,0,0.154622 -33532,7404:476,-46,47,0,0,0.1416 -33533,7404:374,-44,47,0,0,0.0957472 -33534,7404:370,-40,47,0,0,0.139799 -33535,7403:479,-39,47,0,0,0.16937 -33536,7403:478,-38,47,0,0,0.15831 -33537,7403:477,-37,47,0,0,0.142678 -33538,7403:476,-36,47,0,0,0.135302 -33539,7403:475,-35,47,0,0,0.135519 -33540,7403:374,-34,47,0,0,0.13714 -33541,7403:373,-33,47,0,0,0.139293 -33542,7403:372,-32,47,0,0,0.145146 -33543,7403:371,-31,47,0,0,0.152087 -33544,7403:370,-30,47,0,0,0.171622 -33545,7402:479,-29,47,0,0,0.186118 -33546,7402:478,-28,47,0,0,0.198318 -33547,7402:477,-27,47,0,0,0.204816 -33548,7402:476,-26,47,0,0,0.204799 -33549,7402:475,-25,47,0,0,0.197405 -33550,7402:374,-24,47,0,0,0.192983 -33551,7402:373,-23,47,0,0,0.191594 -33552,7402:372,-22,47,0,0,0.191308 -33553,7402:371,-21,47,0,0,0.192791 -33554,7402:370,-20,47,0,0,0.194137 -33555,7401:479,-19,47,0,0,0.197812 -33556,7401:478,-18,47,0,0,0.200022 -33557,7401:477,-17,47,0,0,0.212036 -33558,7401:476,-16,47,0,0,0.223053 -33559,7401:475,-15,47,0,0,0.22259 -33560,7401:374,-14,47,0,0,0.219441 -33561,7401:373,-13,47,0,0,0.21851 -33562,7401:372,-12,47,0,0,0.208505 -33563,7401:371,-11,47,0,0,0.213051 -33564,7401:370,-10,47,0,0,0.185869 -33565,7400:479,-9,47,0,0,0.183933 -33566,7400:478,-8,47,0,0,0.190356 -33567,7400:477,-7,47,0,0,0.21024 -33568,7400:476,-6,47,0,0,0.215247 -33569,7400:374,-4,47,0,0,0.206007 -33570,7400:373,-3,47,0,0,0.202218 -33571,7400:372,-2,47,0,0,0.201209 -33572,7400:371,-1,47,0,0,0.196463 -33573,1400:371,0,47,0,0,0.200269 -33574,1401:372,12,47,0,0,0.173957 -33575,1401:374,14,47,0,0,0.173633 -33576,1401:475,15,47,0,0,0.18157 -33577,1416:370,160,47,0,0,0.0806445 -33578,1416:371,161,47,0,0,0.0818331 -33579,1416:372,162,47,0,0,0.0793439 -33580,1416:475,165,47,0,0,0.0797954 -33581,1417:475,175,47,0,0,0.0862696 -33582,1417:476,176,47,0,0,0.102243 -33583,1417:477,177,47,0,0,0.106126 -33584,1417:478,178,47,0,0,0.105087 -33585,1417:479,179,47,0,0,0.10318 -33586,1418:370,180,47,0,0,0.108061 -33587,7418:380,-180,48,0,0,0.0986503 -33588,7417:489,-179,48,0,0,0.0966228 -33589,7417:488,-178,48,0,0,0.0926616 -33590,7417:487,-177,48,0,0,0.090821 -33591,7417:486,-176,48,0,0,0.0882251 -33592,7417:485,-175,48,0,0,0.0844726 -33593,7417:384,-174,48,0,0,0.0806066 -33594,7417:383,-173,48,0,0,0.0792316 -33595,7417:382,-172,48,0,0,0.0786041 -33596,7417:381,-171,48,0,0,0.0780405 -33597,7417:380,-170,48,0,0,0.078344 -33598,7416:489,-169,48,0,0,0.079224 -33599,7415:486,-156,48,0,0,0.109315 -33600,7415:383,-153,48,0,0,0.167256 -33601,7415:382,-152,48,0,0,0.169399 -33602,7415:381,-151,48,0,0,0.17021 -33603,7415:380,-150,48,0,0,0.166399 -33604,7414:489,-149,48,0,0,0.156715 -33605,7414:488,-148,48,0,0,0.152871 -33606,7414:487,-147,48,0,0,0.152074 -33607,7414:486,-146,48,0,0,0.153711 -33608,7414:485,-145,48,0,0,0.15745 -33609,7414:384,-144,48,0,0,0.164357 -33610,7414:383,-143,48,0,0,0.174934 -33611,7414:382,-142,48,0,0,0.175409 -33612,7414:381,-141,48,0,0,0.174963 -33613,7413:487,-137,48,0,0,0.159106 -33614,7408:485,-85,48,0,0,0.0805455 -33615,7408:384,-84,48,0,0,0.0862212 -33616,7408:383,-83,48,0,0,0.0872546 -33617,7408:382,-82,48,0,0,0.0879446 -33618,7408:381,-81,48,0,0,0.0878126 -33619,7408:380,-80,48,0,0,0.0884319 -33620,7407:489,-79,48,0,0,0.0891885 -33621,7407:488,-78,48,0,0,0.0890384 -33622,7407:487,-77,48,0,0,0.0907193 -33623,7407:486,-76,48,0,0,0.0816944 -33624,7407:485,-75,48,0,0,0.0799164 -33625,7407:384,-74,48,0,0,0.0930424 -33626,7406:485,-65,48,0,0,0.0781588 -33627,7406:384,-64,48,0,0,0.0786936 -33628,7406:383,-63,48,0,0,0.0788053 -33629,7406:382,-62,48,0,0,0.0792464 -33630,7406:380,-60,48,0,0,0.077797 -33631,7405:489,-59,48,0,0,0.0791717 -33632,7405:488,-58,48,0,0,0.079149 -33633,7405:487,-57,48,0,0,0.0942809 -33634,7405:486,-56,48,0,0,0.149561 -33635,7405:485,-55,48,0,0,0.150163 -33636,7405:384,-54,48,0,0,0.144663 -33637,7405:383,-53,48,0,0,0.134164 -33638,7405:382,-52,48,0,0,0.140233 -33639,7405:381,-51,48,0,0,0.139985 -33640,7405:380,-50,48,0,0,0.141863 -33641,7404:489,-49,48,0,0,0.148376 -33642,7404:488,-48,48,0,0,0.153764 -33643,7404:487,-47,48,0,0,0.142904 -33644,7404:380,-40,48,0,0,0.116253 -33645,7403:489,-39,48,0,0,0.148648 -33646,7403:488,-38,48,0,0,0.169847 -33647,7403:487,-37,48,0,0,0.168145 -33648,7403:486,-36,48,0,0,0.159009 -33649,7403:485,-35,48,0,0,0.144472 -33650,7403:384,-34,48,0,0,0.142791 -33651,7403:383,-33,48,0,0,0.149078 -33652,7403:382,-32,48,0,0,0.142214 -33653,7403:381,-31,48,0,0,0.144269 -33654,7403:380,-30,48,0,0,0.155187 -33655,7402:489,-29,48,0,0,0.17529 -33656,7402:488,-28,48,0,0,0.190974 -33657,7402:487,-27,48,0,0,0.199398 -33658,7402:486,-26,48,0,0,0.20557 -33659,7402:485,-25,48,0,0,0.206141 -33660,7402:384,-24,48,0,0,0.20842 -33661,7402:383,-23,48,0,0,0.208946 -33662,7402:382,-22,48,0,0,0.209507 -33663,7402:381,-21,48,0,0,0.207912 -33664,7402:380,-20,48,0,0,0.208861 -33665,7401:489,-19,48,0,0,0.205654 -33666,7401:488,-18,48,0,0,0.204515 -33667,7401:487,-17,48,0,0,0.217337 -33668,7401:486,-16,48,0,0,0.220252 -33669,7401:485,-15,48,0,0,0.216656 -33670,7401:384,-14,48,0,0,0.215108 -33671,7401:383,-13,48,0,0,0.208319 -33672,7401:382,-12,48,0,0,0.200022 -33673,7401:381,-11,48,0,0,0.18746 -33674,7401:380,-10,48,0,0,0.183563 -33675,7400:489,-9,48,0,0,0.180777 -33676,7400:488,-8,48,0,0,0.17672 -33677,7400:487,-7,48,0,0,0.19491 -33678,7400:486,-6,48,0,0,0.204983 -33679,7400:485,-5,48,0,0,0.214208 -33680,7400:384,-4,48,0,0,0.211231 -33681,7400:383,-3,48,0,0,0.206713 -33682,7400:382,-2,48,0,0,0.208369 -33683,7400:381,-1,48,0,0,0.196446 -33684,1401:382,12,48,0,0,0.165134 -33685,1401:383,13,48,0,0,0.174445 -33686,1401:384,14,48,0,0,0.176392 -33687,1401:485,15,48,0,0,0.181387 -33688,1401:486,16,48,0,0,0.152658 -33689,1401:487,17,48,0,0,0.155268 -33690,1401:488,18,48,0,0,0.170428 -33691,1416:486,166,48,0,0,0.082554 -33692,1417:489,179,48,0,0,0.0883657 -33693,1418:380,180,48,0,0,0.0986503 -33694,7418:390,-180,49,0,0,0.0920502 -33695,7417:499,-179,49,0,0,0.0918186 -33696,7417:498,-178,49,0,0,0.0899258 -33697,7417:497,-177,49,0,0,0.0869116 -33698,7417:496,-176,49,0,0,0.0847672 -33699,7417:495,-175,49,0,0,0.0810875 -33700,7417:394,-174,49,0,0,0.0785074 -33701,7417:393,-173,49,0,0,0.0762196 -33702,7417:392,-172,49,0,0,0.0764659 -33703,7417:391,-171,49,0,0,0.0768367 -33704,7417:390,-170,49,0,0,0.0777158 -33705,7416:499,-169,49,0,0,0.0787978 -33706,7415:496,-156,49,0,0,0.0896821 -33707,7415:392,-152,49,0,0,0.153724 -33708,7415:391,-151,49,0,0,0.166969 -33709,7415:390,-150,49,0,0,0.170689 -33710,7414:499,-149,49,0,0,0.170907 -33711,7414:498,-148,49,0,0,0.170937 -33712,7414:497,-147,49,0,0,0.168922 -33713,7414:496,-146,49,0,0,0.171082 -33714,7414:495,-145,49,0,0,0.173235 -33715,7414:394,-144,49,0,0,0.174845 -33716,7414:393,-143,49,0,0,0.1748 -33717,7408:496,-86,49,0,0,0.0801054 -33718,7408:495,-85,49,0,0,0.0849906 -33719,7408:394,-84,49,0,0,0.0869686 -33720,7408:393,-83,49,0,0,0.0868221 -33721,7408:392,-82,49,0,0,0.0877057 -33722,7408:391,-81,49,0,0,0.0875498 -33723,7408:390,-80,49,0,0,0.0888219 -33724,7407:499,-79,49,0,0,0.08903 -33725,7407:498,-78,49,0,0,0.0885728 -33726,7407:497,-77,49,0,0,0.0895312 -33727,7407:496,-76,49,0,0,0.0898668 -33728,7407:495,-75,49,0,0,0.0892803 -33729,7406:495,-65,49,0,0,0.0773559 -33730,7406:394,-64,49,0,0,0.0793215 -33731,7406:393,-63,49,0,0,0.0802798 -33732,7406:392,-62,49,0,0,0.081034 -33733,7406:391,-61,49,0,0,0.0811104 -33734,7406:390,-60,49,0,0,0.0799088 -33735,7405:499,-59,49,0,0,0.0794342 -33736,7405:498,-58,49,0,0,0.0808048 -33737,7405:497,-57,49,0,0,0.109515 -33738,7405:496,-56,49,0,0,0.148 -33739,7405:495,-55,49,0,0,0.150701 -33740,7405:394,-54,49,0,0,0.150242 -33741,7405:393,-53,49,0,0,0.149993 -33742,7405:392,-52,49,0,0,0.150662 -33743,7405:391,-51,49,0,0,0.150071 -33744,7405:390,-50,49,0,0,0.151294 -33745,7404:499,-49,49,0,0,0.153257 -33746,7404:498,-48,49,0,0,0.153404 -33747,7404:497,-47,49,0,0,0.142553 -33748,7403:499,-39,49,0,0,0.112599 -33749,7403:498,-38,49,0,0,0.172002 -33750,7403:497,-37,49,0,0,0.17275 -33751,7403:496,-36,49,0,0,0.173367 -33752,7403:495,-35,49,0,0,0.172823 -33753,7403:394,-34,49,0,0,0.171608 -33754,7403:393,-33,49,0,0,0.170864 -33755,7403:392,-32,49,0,0,0.159574 -33756,7403:391,-31,49,0,0,0.155308 -33757,7403:390,-30,49,0,0,0.160485 -33758,7402:499,-29,49,0,0,0.182396 -33759,7402:498,-28,49,0,0,0.190832 -33760,7402:497,-27,49,0,0,0.203531 -33761,7402:496,-26,49,0,0,0.1984 -33762,7402:495,-25,49,0,0,0.194926 -33763,7402:394,-24,49,0,0,0.194411 -33764,7402:393,-23,49,0,0,0.195895 -33765,7402:392,-22,49,0,0,0.186678 -33766,7402:390,-20,49,0,0,0.188967 -33767,7401:499,-19,49,0,0,0.199924 -33768,7401:498,-18,49,0,0,0.211419 -33769,7401:497,-17,49,0,0,0.216447 -33770,7401:496,-16,49,0,0,0.213655 -33771,7401:495,-15,49,0,0,0.172985 -33772,7401:394,-14,49,0,0,0.176302 -33773,7401:393,-13,49,0,0,0.178989 -33774,7401:392,-12,49,0,0,0.186367 -33775,7401:391,-11,49,0,0,0.187522 -33776,7401:390,-10,49,0,0,0.178265 -33777,7400:499,-9,49,0,0,0.171797 -33778,7400:498,-8,49,0,0,0.167786 -33779,7400:497,-7,49,0,0,0.174519 -33780,7400:496,-6,49,0,0,0.196446 -33781,7400:495,-5,49,0,0,0.205285 -33782,7400:394,-4,49,0,0,0.20881 -33783,7400:393,-3,49,0,0,0.203447 -33784,7400:392,-2,49,0,0,0.198874 -33785,7400:391,-1,49,0,0,0.200055 -33786,1401:392,12,49,0,0,0.131983 -33787,1401:393,13,49,0,0,0.168663 -33788,1401:394,14,49,0,0,0.179064 -33789,1401:495,15,49,0,0,0.177484 -33790,1401:497,17,49,0,0,0.147818 -33791,1401:498,18,49,0,0,0.142126 -33792,1417:498,178,49,0,0,0.0767056 -33793,1417:499,179,49,0,0,0.0812638 -33794,1418:390,180,49,0,0,0.0920502 -33795,7518:100,-180,50,0,0,0.0828971 -33796,7517:209,-179,50,0,0,0.086651 -33797,7517:208,-178,50,0,0,0.0873283 -33798,7517:207,-177,50,0,0,0.0865617 -33799,7517:206,-176,50,0,0,0.0834298 -33800,7517:205,-175,50,0,0,0.0815327 -33801,7517:104,-174,50,0,0,0.0764732 -33802,7517:103,-173,50,0,0,0.076386 -33803,7517:102,-172,50,0,0,0.0760967 -33804,7517:101,-171,50,0,0,0.0763208 -33805,7517:100,-170,50,0,0,0.0766839 -33806,7516:209,-169,50,0,0,0.07751 -33807,7516:207,-167,50,0,0,0.0798408 -33808,7515:102,-152,50,0,0,0.139293 -33809,7508:207,-87,50,0,0,0.0820883 -33810,7508:206,-86,50,0,0,0.0854151 -33811,7508:205,-85,50,0,0,0.086132 -33812,7508:104,-84,50,0,0,0.0860837 -33813,7508:103,-83,50,0,0,0.0860514 -33814,7508:102,-82,50,0,0,0.0869686 -33815,7508:101,-81,50,0,0,0.0871648 -33816,7508:100,-80,50,0,0,0.0882582 -33817,7507:209,-79,50,0,0,0.0889802 -33818,7507:208,-78,50,0,0,0.089105 -33819,7507:207,-77,50,0,0,0.0890384 -33820,7507:206,-76,50,0,0,0.0890801 -33821,7507:205,-75,50,0,0,0.0874924 -33822,7507:104,-74,50,0,0,0.0790743 -33823,7506:104,-64,50,0,0,0.0793966 -33824,7506:103,-63,50,0,0,0.0791417 -33825,7506:102,-62,50,0,0,0.0786636 -33826,7506:101,-61,50,0,0,0.0782033 -33827,7506:100,-60,50,0,0,0.0785521 -33828,7505:209,-59,50,0,0,0.0813788 -33829,7505:208,-58,50,0,0,0.102677 -33830,7505:207,-57,50,0,0,0.120531 -33831,7505:206,-56,50,0,0,0.122616 -33832,7505:205,-55,50,0,0,0.151783 -33833,7505:104,-54,50,0,0,0.152366 -33834,7505:103,-53,50,0,0,0.15173 -33835,7505:102,-52,50,0,0,0.151637 -33836,7505:101,-51,50,0,0,0.152259 -33837,7505:100,-50,50,0,0,0.15311 -33838,7504:209,-49,50,0,0,0.152937 -33839,7504:208,-48,50,0,0,0.1459 -33840,7503:208,-38,50,0,0,0.115244 -33841,7503:207,-37,50,0,0,0.138974 -33842,7503:206,-36,50,0,0,0.141451 -33843,7503:205,-35,50,0,0,0.171973 -33844,7503:104,-34,50,0,0,0.172471 -33845,7503:103,-33,50,0,0,0.179684 -33846,7503:102,-32,50,0,0,0.181601 -33847,7503:101,-31,50,0,0,0.181768 -33848,7503:100,-30,50,0,0,0.181387 -33849,7502:209,-29,50,0,0,0.187851 -33850,7502:208,-28,50,0,0,0.198155 -33851,7502:207,-27,50,0,0,0.196917 -33852,7502:206,-26,50,0,0,0.183579 -33853,7502:205,-25,50,0,0,0.185402 -33854,7502:104,-24,50,0,0,0.17443 -33855,7501:207,-17,50,0,0,0.130496 -33856,7501:206,-16,50,0,0,0.170137 -33857,7501:205,-15,50,0,0,0.176765 -33858,7501:104,-14,50,0,0,0.120249 -33859,7501:103,-13,50,0,0,0.12908 -33860,7501:102,-12,50,0,0,0.129369 -33861,7501:101,-11,50,0,0,0.130228 -33862,7501:100,-10,50,0,0,0.14926 -33863,7500:209,-9,50,0,0,0.156878 -33864,7500:208,-8,50,0,0,0.165134 -33865,7500:207,-7,50,0,0,0.185806 -33866,7500:206,-6,50,0,0,0.191372 -33867,7500:205,-5,50,0,0,0.194781 -33868,7500:104,-4,50,0,0,0.197796 -33869,7500:103,-3,50,0,0,0.200566 -33870,7500:102,-2,50,0,0,0.202749 -33871,7500:101,-1,50,0,0,0.204615 -33872,1501:102,12,50,0,0,0.16079 -33873,1501:103,13,50,0,0,0.158982 -33874,1501:104,14,50,0,0,0.166399 -33875,1501:205,15,50,0,0,0.177199 -33876,1501:206,16,50,0,0,0.160707 -33877,1517:207,177,50,0,0,0.0804466 -33878,1517:208,178,50,0,0,0.077679 -33879,1517:209,179,50,0,0,0.0778929 -33880,1518:100,180,50,0,0,0.0828971 -33881,7518:110,-180,51,0,0,0.0767785 -33882,7517:219,-179,51,0,0,0.077797 -33883,7517:218,-178,51,0,0,0.0768732 -33884,7517:215,-175,51,0,0,0.0761689 -33885,7517:114,-174,51,0,0,0.078448 -33886,7517:113,-173,51,0,0,0.0784258 -33887,7517:112,-172,51,0,0,0.0773559 -33888,7517:111,-171,51,0,0,0.0764949 -33889,7517:110,-170,51,0,0,0.0763789 -33890,7516:219,-169,51,0,0,0.0763064 -33891,7516:218,-168,51,0,0,0.0769825 -33892,7516:217,-167,51,0,0,0.0776421 -33893,7516:216,-166,51,0,0,0.0781884 -33894,7508:219,-89,51,0,0,0.0811487 -33895,7508:218,-88,51,0,0,0.0817097 -33896,7508:217,-87,51,0,0,0.0844806 -33897,7508:216,-86,51,0,0,0.0843536 -33898,7508:215,-85,51,0,0,0.0845362 -33899,7508:114,-84,51,0,0,0.0850545 -33900,7508:113,-83,51,0,0,0.0858656 -33901,7508:112,-82,51,0,0,0.0864561 -33902,7508:111,-81,51,0,0,0.0867975 -33903,7508:110,-80,51,0,0,0.0870013 -33904,7507:219,-79,51,0,0,0.0874186 -33905,7507:218,-78,51,0,0,0.0882498 -33906,7507:217,-77,51,0,0,0.0888719 -33907,7507:216,-76,51,0,0,0.0821812 -33908,7507:215,-75,51,0,0,0.0868791 -33909,7507:114,-74,51,0,0,0.0869933 -33910,7507:113,-73,51,0,0,0.0810646 -33911,7506:215,-65,51,0,0,0.079562 -33912,7506:114,-64,51,0,0,0.0782551 -33913,7506:113,-63,51,0,0,0.0781884 -33914,7506:112,-62,51,0,0,0.0781218 -33915,7506:111,-61,51,0,0,0.0783737 -33916,7506:110,-60,51,0,0,0.079149 -33917,7505:219,-59,51,0,0,0.0780701 -33918,7505:218,-58,51,0,0,0.0791717 -33919,7505:217,-57,51,0,0,0.0819182 -33920,7505:216,-56,51,0,0,0.1056 -33921,7505:215,-55,51,0,0,0.132136 -33922,7505:114,-54,51,0,0,0.15015 -33923,7505:113,-53,51,0,0,0.152206 -33924,7505:112,-52,51,0,0,0.152512 -33925,7505:111,-51,51,0,0,0.152831 -33926,7505:110,-50,51,0,0,0.152897 -33927,7504:219,-49,51,0,0,0.150071 -33928,7504:218,-48,51,0,0,0.135386 -33929,7503:217,-37,51,0,0,0.112774 -33930,7503:216,-36,51,0,0,0.160957 -33931,7503:215,-35,51,0,0,0.153671 -33932,7503:114,-34,51,0,0,0.154528 -33933,7503:113,-33,51,0,0,0.154072 -33934,7503:112,-32,51,0,0,0.178025 -33935,7503:111,-31,51,0,0,0.185635 -33936,7503:110,-30,51,0,0,0.185387 -33937,7502:219,-29,51,0,0,0.189961 -33938,7502:218,-28,51,0,0,0.194958 -33939,7502:217,-27,51,0,0,0.182411 -33940,7502:216,-26,51,0,0,0.171871 -33941,7502:215,-25,51,0,0,0.154675 -33942,7502:114,-24,51,0,0,0.126061 -33943,7501:216,-16,51,0,0,0.120129 -33944,7501:215,-15,51,0,0,0.111454 -33945,7501:114,-14,51,0,0,0.114158 -33946,7501:113,-13,51,0,0,0.120837 -33947,7501:112,-12,51,0,0,0.1249 -33948,7501:111,-11,51,0,0,0.145478 -33949,7501:110,-10,51,0,0,0.150636 -33950,7500:219,-9,51,0,0,0.157859 -33951,7500:218,-8,51,0,0,0.161804 -33952,7500:217,-7,51,0,0,0.174741 -33953,7500:216,-6,51,0,0,0.18064 -33954,7500:215,-5,51,0,0,0.181417 -33955,7500:114,-4,51,0,0,0.185496 -33956,7500:113,-3,51,0,0,0.195588 -33957,7500:112,-2,51,0,0,0.197421 -33958,7500:111,-1,51,0,0,0.20358 -33959,1500:111,0,51,0,0,0.200533 -33960,1501:110,10,51,0,0,0.149013 -33961,1501:111,11,51,0,0,0.155011 -33962,1501:112,12,51,0,0,0.157681 -33963,1501:113,13,51,0,0,0.125609 -33964,1501:114,14,51,0,0,0.12146 -33965,1501:215,15,51,0,0,0.12967 -33966,1501:216,16,51,0,0,0.147676 -33967,1501:217,17,51,0,0,0.169124 -33968,1517:219,179,51,0,0,0.0773118 -33969,1518:110,180,51,0,0,0.0767785 -33970,7517:124,-174,52,0,0,0.0766548 -33971,7517:123,-173,52,0,0,0.0776864 -33972,7517:122,-172,52,0,0,0.0775394 -33973,7517:121,-171,52,0,0,0.0762267 -33974,7508:229,-89,52,0,0,0.0813329 -33975,7508:228,-88,52,0,0,0.0831865 -33976,7508:227,-87,52,0,0,0.0833277 -33977,7508:226,-86,52,0,0,0.0832649 -33978,7508:225,-85,52,0,0,0.0844649 -33979,7508:124,-84,52,0,0,0.0852548 -33980,7508:123,-83,52,0,0,0.0854472 -33981,7508:122,-82,52,0,0,0.0863265 -33982,7508:121,-81,52,0,0,0.0860997 -33983,7508:120,-80,52,0,0,0.0857849 -33984,7507:229,-79,52,0,0,0.0861078 -33985,7507:228,-78,52,0,0,0.0850864 -33986,7507:227,-77,52,0,0,0.0863831 -33987,7507:226,-76,52,0,0,0.0855597 -33988,7507:225,-75,52,0,0,0.0841712 -33989,7507:124,-74,52,0,0,0.0877797 -33990,7507:123,-73,52,0,0,0.087181 -33991,7506:225,-65,52,0,0,0.0788203 -33992,7506:124,-64,52,0,0,0.0787605 -33993,7506:123,-63,52,0,0,0.0782551 -33994,7506:120,-60,52,0,0,0.0794792 -33995,7505:229,-59,52,0,0,0.076205 -33996,7505:228,-58,52,0,0,0.0774952 -33997,7505:227,-57,52,0,0,0.0773044 -33998,7505:226,-56,52,0,0,0.0777527 -33999,7505:225,-55,52,0,0,0.085648 -34000,7505:124,-54,52,0,0,0.123871 -34001,7505:123,-53,52,0,0,0.140418 -34002,7505:122,-52,52,0,0,0.150543 -34003,7505:121,-51,52,0,0,0.151756 -34004,7505:120,-50,52,0,0,0.151518 -34005,7504:229,-49,52,0,0,0.144764 -34006,7504:228,-48,52,0,0,0.131115 -34007,7503:124,-34,52,0,0,0.0904399 -34008,7503:123,-33,52,0,0,0.100149 -34009,7503:122,-32,52,0,0,0.104894 -34010,7503:121,-31,52,0,0,0.104904 -34011,7503:120,-30,52,0,0,0.10165 -34012,7502:229,-29,52,0,0,0.0874103 -34013,7502:228,-28,52,0,0,0.0879692 -34014,7502:227,-27,52,0,0,0.113258 -34015,7502:226,-26,52,0,0,0.168159 -34016,7502:225,-25,52,0,0,0.138777 -34017,7502:124,-24,52,0,0,0.137225 -34018,7502:123,-23,52,0,0,0.1176 -34019,7502:122,-22,52,0,0,0.123804 -34020,7501:227,-17,52,0,0,0.119566 -34021,7501:226,-16,52,0,0,0.115149 -34022,7501:225,-15,52,0,0,0.110592 -34023,7501:124,-14,52,0,0,0.116771 -34024,7501:123,-13,52,0,0,0.115569 -34025,7501:122,-12,52,0,0,0.116761 -34026,7501:121,-11,52,0,0,0.127918 -34027,7501:120,-10,52,0,0,0.155605 -34028,7500:229,-9,52,0,0,0.160693 -34029,7500:228,-8,52,0,0,0.165064 -34030,7500:227,-7,52,0,0,0.168677 -34031,7500:226,-6,52,0,0,0.173588 -34032,7500:225,-5,52,0,0,0.175052 -34033,7500:124,-4,52,0,0,0.17678 -34034,7500:123,-3,52,0,0,0.174845 -34035,7500:122,-2,52,0,0,0.17114 -34036,7500:121,-1,52,0,0,0.200829 -34037,1500:121,0,52,0,0,0.200664 -34038,1500:121,1,52,0,0,0.189818 -34039,1500:122,2,52,0,0,0.162335 -34040,1501:120,10,52,0,0,0.160374 -34041,1501:121,11,52,0,0,0.157164 -34042,1501:122,12,52,0,0,0.16043 -34043,1501:123,13,52,0,0,0.133165 -34044,1501:228,18,52,0,0,0.163329 -34045,1501:229,19,52,0,0,0.160568 -34046,1517:229,179,52,0,0,0.0769899 -34047,7517:237,-177,53,0,0,0.0773778 -34048,7517:133,-173,53,0,0,0.077063 -34049,7517:132,-172,53,0,0,0.0760967 -34050,7508:239,-89,53,0,0,0.0817561 -34051,7508:238,-88,53,0,0,0.0824762 -34052,7508:237,-87,53,0,0,0.0833432 -34053,7508:236,-86,53,0,0,0.0841159 -34054,7508:235,-85,53,0,0,0.0847354 -34055,7508:134,-84,53,0,0,0.0845682 -34056,7508:133,-83,53,0,0,0.0848709 -34057,7508:132,-82,53,0,0,0.0846476 -34058,7508:131,-81,53,0,0,0.0849109 -34059,7508:130,-80,53,0,0,0.0848867 -34060,7507:239,-79,53,0,0,0.0844966 -34061,7507:238,-78,53,0,0,0.0836499 -34062,7507:237,-77,53,0,0,0.0847113 -34063,7507:236,-76,53,0,0,0.0837918 -34064,7507:235,-75,53,0,0,0.0829987 -34065,7507:134,-74,53,0,0,0.0847431 -34066,7507:133,-73,53,0,0,0.0843854 -34067,7507:132,-72,53,0,0,0.078783 -34068,7506:236,-66,53,0,0,0.0795921 -34069,7506:235,-65,53,0,0,0.078448 -34070,7506:131,-61,53,0,0,0.0790892 -34071,7505:238,-58,53,0,0,0.0760099 -34072,7505:237,-57,53,0,0,0.0772532 -34073,7505:236,-56,53,0,0,0.0769315 -34074,7505:235,-55,53,0,0,0.0774291 -34075,7505:134,-54,53,0,0,0.0792316 -34076,7505:133,-53,53,0,0,0.0884072 -34077,7505:132,-52,53,0,0,0.144345 -34078,7505:131,-51,53,0,0,0.145682 -34079,7505:130,-50,53,0,0,0.149809 -34080,7504:239,-49,53,0,0,0.140505 -34081,7504:238,-48,53,0,0,0.117547 -34082,7503:132,-32,53,0,0,0.0810646 -34083,7503:131,-31,53,0,0,0.0831081 -34084,7503:130,-30,53,0,0,0.0910844 -34085,7502:239,-29,53,0,0,0.0846238 -34086,7502:238,-28,53,0,0,0.0813788 -34087,7502:237,-27,53,0,0,0.079577 -34088,7502:236,-26,53,0,0,0.0845602 -34089,7502:235,-25,53,0,0,0.123148 -34090,7502:134,-24,53,0,0,0.140729 -34091,7502:133,-23,53,0,0,0.14254 -34092,7502:132,-22,53,0,0,0.129138 -34093,7502:131,-21,53,0,0,0.118284 -34094,7502:130,-20,53,0,0,0.127415 -34095,7501:239,-19,53,0,0,0.122815 -34096,7501:238,-18,53,0,0,0.119188 -34097,7501:237,-17,53,0,0,0.117526 -34098,7501:236,-16,53,0,0,0.110048 -34099,7501:235,-15,53,0,0,0.105126 -34100,7501:134,-14,53,0,0,0.111373 -34101,7501:133,-13,53,0,0,0.111923 -34102,7501:132,-12,53,0,0,0.123303 -34103,7501:131,-11,53,0,0,0.129415 -34104,7501:130,-10,53,0,0,0.14649 -34105,7500:239,-9,53,0,0,0.157068 -34106,7500:238,-8,53,0,0,0.161791 -34107,7500:237,-7,53,0,0,0.164611 -34108,7500:236,-6,53,0,0,0.152977 -34109,7500:235,-5,53,0,0,0.160943 -34110,7500:134,-4,53,0,0,0.162993 -34111,7500:133,-3,53,0,0,0.1695 -34112,7500:132,-2,53,0,0,0.18093 -34113,7500:131,-1,53,0,0,0.193897 -34114,1500:131,0,53,0,0,0.193319 -34115,1500:131,1,53,0,0,0.198139 -34116,1500:132,2,53,0,0,0.195847 -34117,1501:130,10,53,0,0,0.154917 -34118,1501:131,11,53,0,0,0.158228 -34119,1501:132,12,53,0,0,0.147547 -34120,1501:239,19,53,0,0,0.13792 -34121,1502:130,20,53,0,0,0.140022 -34122,7517:248,-178,54,0,0,0.0765093 -34123,7517:247,-177,54,0,0,0.0767056 -34124,7517:246,-176,54,0,0,0.0768806 -34125,7517:245,-175,54,0,0,0.0769754 -34126,7517:144,-174,54,0,0,0.0770704 -34127,7517:143,-173,54,0,0,0.0769168 -34128,7517:142,-172,54,0,0,0.0765603 -34129,7517:141,-171,54,0,0,0.0763427 -34130,7517:140,-170,54,0,0,0.0762775 -34131,7516:249,-169,54,0,0,0.0762267 -34132,7516:248,-168,54,0,0,0.0762991 -34133,7509:141,-91,54,0,0,0.0779519 -34134,7509:140,-90,54,0,0,0.0780184 -34135,7508:249,-89,54,0,0,0.083532 -34136,7508:248,-88,54,0,0,0.0825851 -34137,7508:247,-87,54,0,0,0.0829908 -34138,7508:246,-86,54,0,0,0.0835555 -34139,7508:245,-85,54,0,0,0.0834063 -34140,7508:144,-84,54,0,0,0.0837288 -34141,7508:143,-83,54,0,0,0.0835634 -34142,7508:142,-82,54,0,0,0.0832336 -34143,7508:141,-81,54,0,0,0.0836737 -34144,7508:140,-80,54,0,0,0.0837446 -34145,7507:249,-79,54,0,0,0.0829596 -34146,7507:248,-78,54,0,0,0.0824918 -34147,7507:247,-77,54,0,0,0.0815635 -34148,7507:246,-76,54,0,0,0.0815017 -34149,7507:245,-75,54,0,0,0.0817252 -34150,7507:144,-74,54,0,0,0.0812713 -34151,7507:143,-73,54,0,0,0.082251 -34152,7507:142,-72,54,0,0,0.0830064 -34153,7506:249,-69,54,0,0,0.0794567 -34154,7506:248,-68,54,0,0,0.079871 -34155,7506:247,-67,54,0,0,0.0804012 -34156,7506:246,-66,54,0,0,0.0783886 -34157,7506:245,-65,54,0,0,0.0797427 -34158,7505:248,-58,54,0,0,0.0768149 -34159,7505:247,-57,54,0,0,0.077856 -34160,7505:246,-56,54,0,0,0.0771873 -34161,7505:245,-55,54,0,0,0.0770046 -34162,7505:144,-54,54,0,0,0.0771799 -34163,7505:143,-53,54,0,0,0.0770338 -34164,7505:142,-52,54,0,0,0.0849986 -34165,7505:141,-51,54,0,0,0.137188 -34166,7505:140,-50,54,0,0,0.147237 -34167,7504:249,-49,54,0,0,0.134284 -34168,7504:248,-48,54,0,0,0.108846 -34169,7503:141,-31,54,0,0,0.0772018 -34170,7503:140,-30,54,0,0,0.0777232 -34171,7502:249,-29,54,0,0,0.0769024 -34172,7502:248,-28,54,0,0,0.0765093 -34173,7502:247,-27,54,0,0,0.076386 -34174,7502:246,-26,54,0,0,0.0764732 -34175,7502:245,-25,54,0,0,0.076553 -34176,7502:144,-24,54,0,0,0.0817019 -34177,7502:143,-23,54,0,0,0.0877551 -34178,7502:142,-22,54,0,0,0.0965598 -34179,7502:141,-21,54,0,0,0.103028 -34180,7502:140,-20,54,0,0,0.095623 -34181,7501:249,-19,54,0,0,0.0998351 -34182,7501:248,-18,54,0,0,0.0981943 -34183,7501:247,-17,54,0,0,0.103123 -34184,7501:246,-16,54,0,0,0.1053 -34185,7501:245,-15,54,0,0,0.108597 -34186,7501:144,-14,54,0,0,0.112969 -34187,7501:143,-13,54,0,0,0.117739 -34188,7501:142,-12,54,0,0,0.123281 -34189,7501:141,-11,54,0,0,0.132066 -34190,7501:140,-10,54,0,0,0.14544 -34191,7500:249,-9,54,0,0,0.149652 -34192,7500:248,-8,54,0,0,0.148259 -34193,7500:247,-7,54,0,0,0.150504 -34194,7500:246,-6,54,0,0,0.154501 -34195,7500:245,-5,54,0,0,0.155335 -34196,7500:144,-4,54,0,0,0.166884 -34197,7500:143,-3,54,0,0,0.175825 -34198,7500:142,-2,54,0,0,0.19356 -34199,7500:141,-1,54,0,0,0.188212 -34200,1500:141,0,54,0,0,0.18685 -34201,1500:141,1,54,0,0,0.195782 -34202,1500:142,2,54,0,0,0.187647 -34203,1501:140,10,54,0,0,0.130414 -34204,1501:141,11,54,0,0,0.134069 -34205,7518:350,-180,55,0,0,0.0768732 -34206,7517:459,-179,55,0,0,0.0768149 -34207,7517:458,-178,55,0,0,0.0767858 -34208,7517:457,-177,55,0,0,0.0767274 -34209,7517:456,-176,55,0,0,0.0771799 -34210,7517:455,-175,55,0,0,0.0775465 -34211,7517:354,-174,55,0,0,0.07751 -34212,7517:353,-173,55,0,0,0.0772459 -34213,7517:352,-172,55,0,0,0.0772166 -34214,7517:351,-171,55,0,0,0.0768149 -34215,7517:350,-170,55,0,0,0.0763064 -34216,7509:351,-91,55,0,0,0.0787307 -34217,7509:350,-90,55,0,0,0.0832649 -34218,7508:459,-89,55,0,0,0.0833825 -34219,7508:458,-88,55,0,0,0.0819335 -34220,7508:457,-87,55,0,0,0.082282 -34221,7508:456,-86,55,0,0,0.0827176 -34222,7508:455,-85,55,0,0,0.0830768 -34223,7508:354,-84,55,0,0,0.0832023 -34224,7508:353,-83,55,0,0,0.0828347 -34225,7508:352,-82,55,0,0,0.0821271 -34226,7508:351,-81,55,0,0,0.0821037 -34227,7508:350,-80,55,0,0,0.0824683 -34228,7507:459,-79,55,0,0,0.0821271 -34229,7507:458,-78,55,0,0,0.08181 -34230,7507:457,-77,55,0,0,0.0808581 -34231,7507:456,-76,55,0,0,0.0805761 -34232,7507:455,-75,55,0,0,0.0807131 -34233,7507:354,-74,55,0,0,0.0808276 -34234,7507:352,-72,55,0,0,0.0813711 -34235,7507:351,-71,55,0,0,0.0810875 -34236,7507:350,-70,55,0,0,0.0789322 -34237,7506:459,-69,55,0,0,0.0794342 -34238,7506:458,-68,55,0,0,0.0787532 -34239,7506:457,-67,55,0,0,0.078085 -34240,7506:456,-66,55,0,0,0.0787755 -34241,7506:455,-65,55,0,0,0.0758946 -34242,7505:458,-58,55,0,0,0.0788128 -34243,7505:455,-55,55,0,0,0.0762558 -34244,7505:354,-54,55,0,0,0.0770922 -34245,7505:353,-53,55,0,0,0.077136 -34246,7505:352,-52,55,0,0,0.0817252 -34247,7505:351,-51,55,0,0,0.0992915 -34248,7505:350,-50,55,0,0,0.132231 -34249,7504:459,-49,55,0,0,0.132656 -34250,7504:458,-48,55,0,0,0.108986 -34251,7502:456,-26,55,0,0,0.0763064 -34252,7502:455,-25,55,0,0,0.0762918 -34253,7502:354,-24,55,0,0,0.0765384 -34254,7502:353,-23,55,0,0,0.0769899 -34255,7502:352,-22,55,0,0,0.0782476 -34256,7502:351,-21,55,0,0,0.0815557 -34257,7502:350,-20,55,0,0,0.0879775 -34258,7501:459,-19,55,0,0,0.0981036 -34259,7501:458,-18,55,0,0,0.101088 -34260,7501:457,-17,55,0,0,0.104471 -34261,7501:456,-16,55,0,0,0.107075 -34262,7501:455,-15,55,0,0,0.109696 -34263,7501:354,-14,55,0,0,0.112107 -34264,7501:353,-13,55,0,0,0.116686 -34265,7501:352,-12,55,0,0,0.122329 -34266,7501:351,-11,55,0,0,0.12945 -34267,7501:350,-10,55,0,0,0.137481 -34268,7500:459,-9,55,0,0,0.141202 -34269,7500:458,-8,55,0,0,0.143901 -34270,7500:457,-7,55,0,0,0.147508 -34271,7500:456,-6,55,0,0,0.154917 -34272,7500:455,-5,55,0,0,0.16556 -34273,7500:354,-4,55,0,0,0.170646 -34274,7500:353,-3,55,0,0,0.174489 -34275,7500:352,-2,55,0,0,0.186678 -34276,7500:351,-1,55,0,0,0.185434 -34277,1500:351,0,55,0,0,0.183579 -34278,1500:351,1,55,0,0,0.186866 -34279,1500:352,2,55,0,0,0.191499 -34280,1501:351,11,55,0,0,0.142666 -34281,1517:351,171,55,0,0,0.0805912 -34282,1518:350,180,55,0,0,0.0768732 -34283,7518:360,-180,56,0,0,0.0766839 -34284,7517:469,-179,56,0,0,0.0765893 -34285,7517:468,-178,56,0,0,0.0768003 -34286,7517:467,-177,56,0,0,0.0775026 -34287,7517:466,-176,56,0,0,0.0781588 -34288,7517:465,-175,56,0,0,0.0780701 -34289,7517:364,-174,56,0,0,0.0775613 -34290,7517:363,-173,56,0,0,0.0770996 -34291,7509:360,-90,56,0,0,0.0822899 -34292,7508:469,-89,56,0,0,0.0820805 -34293,7508:468,-88,56,0,0,0.0815635 -34294,7508:467,-87,56,0,0,0.0817483 -34295,7508:466,-86,56,0,0,0.0822899 -34296,7508:465,-85,56,0,0,0.0828423 -34297,7508:364,-84,56,0,0,0.0819335 -34298,7508:363,-83,56,0,0,0.081548 -34299,7508:362,-82,56,0,0,0.0815635 -34300,7508:361,-81,56,0,0,0.0813866 -34301,7508:360,-80,56,0,0,0.0814942 -34302,7507:469,-79,56,0,0,0.0815327 -34303,7507:468,-78,56,0,0,0.0808887 -34304,7507:467,-77,56,0,0,0.0796824 -34305,7507:466,-76,56,0,0,0.0777379 -34306,7507:465,-75,56,0,0,0.0791266 -34307,7507:364,-74,56,0,0,0.0784555 -34308,7507:363,-73,56,0,0,0.0785299 -34309,7507:362,-72,56,0,0,0.0803101 -34310,7507:361,-71,56,0,0,0.0795393 -34311,7506:468,-68,56,0,0,0.078218 -34312,7506:467,-67,56,0,0,0.0785446 -34313,7506:466,-66,56,0,0,0.0766839 -34314,7505:468,-58,56,0,0,0.0791717 -34315,7505:363,-53,56,0,0,0.0768585 -34316,7505:362,-52,56,0,0,0.0770849 -34317,7505:361,-51,56,0,0,0.0770922 -34318,7505:360,-50,56,0,0,0.0917501 -34319,7504:469,-49,56,0,0,0.129045 -34320,7504:468,-48,56,0,0,0.101979 -34321,7504:467,-47,56,0,0,0.0865292 -34322,7502:364,-24,56,0,0,0.0766621 -34323,7502:363,-23,56,0,0,0.0764659 -34324,7502:362,-22,56,0,0,0.0764659 -34325,7502:361,-21,56,0,0,0.0781071 -34326,7502:360,-20,56,0,0,0.0923854 -34327,7501:469,-19,56,0,0,0.10002 -34328,7501:468,-18,56,0,0,0.102658 -34329,7501:467,-17,56,0,0,0.102658 -34330,7501:466,-16,56,0,0,0.104375 -34331,7501:465,-15,56,0,0,0.109185 -34332,7501:364,-14,56,0,0,0.111923 -34333,7501:363,-13,56,0,0,0.117686 -34334,7501:362,-12,56,0,0,0.123971 -34335,7501:361,-11,56,0,0,0.127689 -34336,7501:360,-10,56,0,0,0.134188 -34337,7500:469,-9,56,0,0,0.138348 -34338,7500:468,-8,56,0,0,0.137761 -34339,7500:467,-7,56,0,0,0.142666 -34340,7500:466,-6,56,0,0,0.145913 -34341,7500:465,-5,56,0,0,0.154945 -34342,7500:364,-4,56,0,0,0.161637 -34343,7500:363,-3,56,0,0,0.173898 -34344,7500:362,-2,56,0,0,0.181829 -34345,7500:361,-1,56,0,0,0.187522 -34346,1500:361,0,56,0,0,0.183625 -34347,1500:361,1,56,0,0,0.18534 -34348,1500:362,2,56,0,0,0.173102 -34349,1501:360,10,56,0,0,0.130146 -34350,1501:361,11,56,0,0,0.151452 -34351,1501:362,12,56,0,0,0.131443 -34352,1516:465,165,56,0,0,0.0793064 -34353,1516:467,167,56,0,0,0.0784258 -34354,1516:468,168,56,0,0,0.0782255 -34355,1516:469,169,56,0,0,0.077937 -34356,1517:467,177,56,0,0,0.0772166 -34357,1517:468,178,56,0,0,0.0772018 -34358,1517:469,179,56,0,0,0.0769024 -34359,1518:360,180,56,0,0,0.0766839 -34360,7518:370,-180,57,0,0,0.0772311 -34361,7517:479,-179,57,0,0,0.0771433 -34362,7517:478,-178,57,0,0,0.0776275 -34363,7517:477,-177,57,0,0,0.0777821 -34364,7517:476,-176,57,0,0,0.077974 -34365,7517:475,-175,57,0,0,0.0784036 -34366,7517:374,-174,57,0,0,0.0776938 -34367,7517:373,-173,57,0,0,0.0769315 -34368,7517:372,-172,57,0,0,0.0762123 -34369,7517:371,-171,57,0,0,0.0758443 -34370,7509:370,-90,57,0,0,0.0795845 -34371,7508:479,-89,57,0,0,0.0813329 -34372,7508:478,-88,57,0,0,0.0808276 -34373,7508:477,-87,57,0,0,0.0812254 -34374,7508:476,-86,57,0,0,0.0818486 -34375,7508:475,-85,57,0,0,0.0820961 -34376,7508:374,-84,57,0,0,0.0811487 -34377,7508:373,-83,57,0,0,0.0808504 -34378,7508:372,-82,57,0,0,0.0811487 -34379,7508:371,-81,57,0,0,0.0811104 -34380,7508:370,-80,57,0,0,0.0810109 -34381,7507:479,-79,57,0,0,0.0808581 -34382,7507:478,-78,57,0,0,0.0805227 -34383,7507:477,-77,57,0,0,0.0788502 -34384,7507:374,-74,57,0,0,0.0785074 -34385,7507:373,-73,57,0,0,0.0784927 -34386,7507:372,-72,57,0,0,0.0778706 -34387,7507:371,-71,57,0,0,0.0777821 -34388,7507:370,-70,57,0,0,0.0783071 -34389,7506:479,-69,57,0,0,0.0779961 -34390,7505:478,-58,57,0,0,0.0765747 -34391,7505:374,-54,57,0,0,0.0768585 -34392,7505:373,-53,57,0,0,0.0769534 -34393,7505:372,-52,57,0,0,0.0767347 -34394,7505:371,-51,57,0,0,0.0771288 -34395,7505:370,-50,57,0,0,0.0793215 -34396,7504:479,-49,57,0,0,0.0895396 -34397,7504:478,-48,57,0,0,0.114346 -34398,7504:477,-47,57,0,0,0.11493 -34399,7504:476,-46,57,0,0,0.109345 -34400,7504:475,-45,57,0,0,0.102111 -34401,7502:475,-25,57,0,0,0.0780701 -34402,7502:373,-23,57,0,0,0.0764369 -34403,7502:372,-22,57,0,0,0.0764369 -34404,7502:371,-21,57,0,0,0.0768367 -34405,7502:370,-20,57,0,0,0.078011 -34406,7501:479,-19,57,0,0,0.0832023 -34407,7501:478,-18,57,0,0,0.0932853 -34408,7501:477,-17,57,0,0,0.103513 -34409,7501:476,-16,57,0,0,0.106126 -34410,7501:475,-15,57,0,0,0.106879 -34411,7501:374,-14,57,0,0,0.106087 -34412,7501:373,-13,57,0,0,0.111841 -34413,7501:372,-12,57,0,0,0.126719 -34414,7501:371,-11,57,0,0,0.129057 -34415,7501:370,-10,57,0,0,0.130881 -34416,7500:479,-9,57,0,0,0.134093 -34417,7500:478,-8,57,0,0,0.135748 -34418,7500:477,-7,57,0,0,0.13742 -34419,7500:476,-6,57,0,0,0.137456 -34420,7500:475,-5,57,0,0,0.137932 -34421,7500:374,-4,57,0,0,0.14356 -34422,7500:373,-3,57,0,0,0.174785 -34423,7500:372,-2,57,0,0,0.183117 -34424,7500:371,-1,57,0,0,0.184798 -34425,1500:371,0,57,0,0,0.184736 -34426,1500:371,1,57,0,0,0.184242 -34427,1500:372,2,57,0,0,0.188495 -34428,1501:370,10,57,0,0,0.110643 -34429,1501:371,11,57,0,0,0.144104 -34430,1501:372,12,57,0,0,0.12014 -34431,1516:475,165,57,0,0,0.0791717 -34432,1516:476,166,57,0,0,0.0789247 -34433,1516:477,167,57,0,0,0.0786936 -34434,1516:478,168,57,0,0,0.0784333 -34435,1516:479,169,57,0,0,0.0781663 -34436,1517:370,170,57,0,0,0.0780331 -34437,1517:371,171,57,0,0,0.077878 -34438,1517:372,172,57,0,0,0.0777012 -34439,1517:373,173,57,0,0,0.0775762 -34440,1517:374,174,57,0,0,0.077451 -34441,1517:475,175,57,0,0,0.0773559 -34442,1517:476,176,57,0,0,0.0772459 -34443,1517:477,177,57,0,0,0.0772385 -34444,1517:478,178,57,0,0,0.0767567 -34445,1517:479,179,57,0,0,0.0768076 -34446,1518:370,180,57,0,0,0.0772311 -34447,7518:380,-180,58,0,0,0.0771433 -34448,7517:489,-179,58,0,0,0.0770556 -34449,7517:488,-178,58,0,0,0.0767785 -34450,7517:487,-177,58,0,0,0.0762629 -34451,7517:486,-176,58,0,0,0.0760822 -34452,7517:485,-175,58,0,0,0.0765603 -34453,7517:384,-174,58,0,0,0.0772532 -34454,7517:383,-173,58,0,0,0.0775687 -34455,7517:382,-172,58,0,0,0.0767929 -34456,7517:381,-171,58,0,0,0.0760317 -34457,7508:489,-89,58,0,0,0.0779001 -34458,7508:488,-88,58,0,0,0.0815095 -34459,7508:487,-87,58,0,0,0.0803405 -34460,7508:486,-86,58,0,0,0.0806751 -34461,7508:485,-85,58,0,0,0.0806826 -34462,7508:384,-84,58,0,0,0.0803632 -34463,7508:383,-83,58,0,0,0.0807284 -34464,7508:382,-82,58,0,0,0.0807512 -34465,7508:381,-81,58,0,0,0.0805912 -34466,7508:380,-80,58,0,0,0.0802265 -34467,7507:489,-79,58,0,0,0.0799542 -34468,7507:488,-78,58,0,0,0.0797351 -34469,7507:487,-77,58,0,0,0.0782551 -34470,7507:486,-76,58,0,0,0.0785299 -34471,7507:485,-75,58,0,0,0.0784777 -34472,7507:384,-74,58,0,0,0.0771726 -34473,7507:381,-71,58,0,0,0.0776938 -34474,7507:380,-70,58,0,0,0.0774584 -34475,7506:489,-69,58,0,0,0.077819 -34476,7506:485,-65,58,0,0,0.0774217 -34477,7506:384,-64,58,0,0,0.0773559 -34478,7505:384,-54,58,0,0,0.0769534 -34479,7505:383,-53,58,0,0,0.0764586 -34480,7505:382,-52,58,0,0,0.0763571 -34481,7505:381,-51,58,0,0,0.0766548 -34482,7505:380,-50,58,0,0,0.07635 -34483,7504:489,-49,58,0,0,0.0785149 -34484,7504:488,-48,58,0,0,0.0882004 -34485,7504:487,-47,58,0,0,0.0892387 -34486,7504:384,-44,58,0,0,0.104769 -34487,7502:383,-23,58,0,0,0.0763427 -34488,7502:382,-22,58,0,0,0.0764223 -34489,7502:381,-21,58,0,0,0.0769973 -34490,7502:380,-20,58,0,0,0.0805761 -34491,7501:489,-19,58,0,0,0.0882415 -34492,7501:488,-18,58,0,0,0.092627 -34493,7501:487,-17,58,0,0,0.0944564 -34494,7501:486,-16,58,0,0,0.0981854 -34495,7501:485,-15,58,0,0,0.102092 -34496,7501:384,-14,58,0,0,0.10229 -34497,7501:383,-13,58,0,0,0.104634 -34498,7501:382,-12,58,0,0,0.115716 -34499,7501:381,-11,58,0,0,0.126515 -34500,7501:380,-10,58,0,0,0.133272 -34501,7500:489,-9,58,0,0,0.142527 -34502,7500:488,-8,58,0,0,0.143345 -34503,7500:487,-7,58,0,0,0.14521 -34504,7500:486,-6,58,0,0,0.140617 -34505,7500:485,-5,58,0,0,0.139134 -34506,7500:384,-4,58,0,0,0.158941 -34507,7500:383,-3,58,0,0,0.165673 -34508,7500:382,-2,58,0,0,0.168591 -34509,7500:381,-1,58,0,0,0.178295 -34510,1500:381,0,58,0,0,0.181554 -34511,1500:381,1,58,0,0,0.183995 -34512,1500:382,2,58,0,0,0.1748 -34513,1516:383,163,58,0,0,0.0797503 -34514,1516:384,164,58,0,0,0.0794643 -34515,1516:485,165,58,0,0,0.0791342 -34516,1516:486,166,58,0,0,0.0789099 -34517,1516:487,167,58,0,0,0.0786041 -34518,1516:488,168,58,0,0,0.0782329 -34519,1516:489,169,58,0,0,0.077878 -34520,1517:380,170,58,0,0,0.0776055 -34521,1517:381,171,58,0,0,0.0774732 -34522,1517:382,172,58,0,0,0.0773704 -34523,1517:383,173,58,0,0,0.0773192 -34524,1517:384,174,58,0,0,0.0772459 -34525,1517:485,175,58,0,0,0.077063 -34526,1517:486,176,58,0,0,0.0769242 -34527,1517:489,179,58,0,0,0.0764732 -34528,1518:380,180,58,0,0,0.0771433 -34529,7518:390,-180,59,0,0,0.0767858 -34530,7517:499,-179,59,0,0,0.0771947 -34531,7517:498,-178,59,0,0,0.0769315 -34532,7517:497,-177,59,0,0,0.0768294 -34533,7517:496,-176,59,0,0,0.0765747 -34534,7517:495,-175,59,0,0,0.0769754 -34535,7517:394,-174,59,0,0,0.0772899 -34536,7517:393,-173,59,0,0,0.0767347 -34537,7517:392,-172,59,0,0,0.0768514 -34538,7517:391,-171,59,0,0,0.0768367 -34539,7517:390,-170,59,0,0,0.0762267 -34540,7508:498,-88,59,0,0,0.0765022 -34541,7508:497,-87,59,0,0,0.0792764 -34542,7508:496,-86,59,0,0,0.0810875 -34543,7508:495,-85,59,0,0,0.0816173 -34544,7508:394,-84,59,0,0,0.0814865 -34545,7508:393,-83,59,0,0,0.0806293 -34546,7508:392,-82,59,0,0,0.0801962 -34547,7508:391,-81,59,0,0,0.0800901 -34548,7508:390,-80,59,0,0,0.079803 -34549,7507:499,-79,59,0,0,0.0790369 -34550,7507:498,-78,59,0,0,0.077878 -34551,7507:392,-72,59,0,0,0.0777747 -34552,7507:391,-71,59,0,0,0.076713 -34553,7507:390,-70,59,0,0,0.0768076 -34554,7506:499,-69,59,0,0,0.0767347 -34555,7506:498,-68,59,0,0,0.0767494 -34556,7506:497,-67,59,0,0,0.0770191 -34557,7506:496,-66,59,0,0,0.0770849 -34558,7506:495,-65,59,0,0,0.0771726 -34559,7506:394,-64,59,0,0,0.0775539 -34560,7506:393,-63,59,0,0,0.0779445 -34561,7505:495,-55,59,0,0,0.0773263 -34562,7505:394,-54,59,0,0,0.076742 -34563,7505:393,-53,59,0,0,0.0764369 -34564,7505:392,-52,59,0,0,0.0764732 -34565,7505:391,-51,59,0,0,0.0765166 -34566,7505:390,-50,59,0,0,0.0764442 -34567,7504:499,-49,59,0,0,0.0762267 -34568,7504:498,-48,59,0,0,0.0769168 -34569,7504:497,-47,59,0,0,0.0837052 -34570,7504:496,-46,59,0,0,0.0862212 -34571,7504:495,-45,59,0,0,0.105262 -34572,7502:394,-24,59,0,0,0.076524 -34573,7502:393,-23,59,0,0,0.076234 -34574,7502:392,-22,59,0,0,0.0762558 -34575,7502:391,-21,59,0,0,0.0766257 -34576,7502:390,-20,59,0,0,0.0784183 -34577,7501:499,-19,59,0,0,0.0851106 -34578,7501:498,-18,59,0,0,0.0899931 -34579,7501:497,-17,59,0,0,0.0918013 -34580,7501:496,-16,59,0,0,0.0928344 -34581,7501:495,-15,59,0,0,0.0940968 -34582,7501:394,-14,59,0,0,0.0967753 -34583,7501:393,-13,59,0,0,0.0981308 -34584,7501:392,-12,59,0,0,0.0988697 -34585,7501:391,-11,59,0,0,0.108796 -34586,7501:390,-10,59,0,0,0.12656 -34587,7500:499,-9,59,0,0,0.144777 -34588,7500:498,-8,59,0,0,0.150124 -34589,7500:497,-7,59,0,0,0.148038 -34590,7500:496,-6,59,0,0,0.146696 -34591,7500:495,-5,59,0,0,0.147779 -34592,7500:394,-4,59,0,0,0.156024 -34593,7500:393,-3,59,0,0,0.157995 -34594,7500:392,-2,59,0,0,0.166827 -34595,7500:391,-1,59,0,0,0.167528 -34596,1500:391,0,59,0,0,0.176049 -34597,1500:391,1,59,0,0,0.179276 -34598,1515:499,159,59,0,0,0.0809115 -34599,1516:390,160,59,0,0,0.0806217 -34600,1516:391,161,59,0,0,0.0801812 -34601,1516:392,162,59,0,0,0.079705 -34602,1516:393,163,59,0,0,0.0794567 -34603,1516:394,164,59,0,0,0.0792615 -34604,1516:495,165,59,0,0,0.0790668 -34605,1516:496,166,59,0,0,0.0788203 -34606,1516:497,167,59,0,0,0.0785074 -34607,1516:498,168,59,0,0,0.078218 -34608,1516:499,169,59,0,0,0.0779814 -34609,1517:390,170,59,0,0,0.077819 -34610,1517:391,171,59,0,0,0.0775981 -34611,1517:392,172,59,0,0,0.0772532 -34612,1517:393,173,59,0,0,0.0770922 -34613,1517:394,174,59,0,0,0.0770409 -34614,1517:495,175,59,0,0,0.0770046 -34615,1517:496,176,59,0,0,0.0769754 -34616,1517:497,177,59,0,0,0.0769168 -34617,1517:498,178,59,0,0,0.0768149 -34618,1517:499,179,59,0,0,0.0767274 -34619,1518:390,180,59,0,0,0.0767858 -34620,7618:100,-180,60,0,0,0.0771067 -34621,7617:209,-179,60,0,0,0.0769315 -34622,7617:208,-178,60,0,0,0.0769899 -34623,7617:207,-177,60,0,0,0.0770849 -34624,7617:206,-176,60,0,0,0.0768659 -34625,7617:205,-175,60,0,0,0.0768076 -34626,7617:104,-174,60,0,0,0.0770117 -34627,7617:103,-173,60,0,0,0.0765603 -34628,7617:102,-172,60,0,0,0.0764442 -34629,7617:101,-171,60,0,0,0.076582 -34630,7617:100,-170,60,0,0,0.0767638 -34631,7616:209,-169,60,0,0,0.0767347 -34632,7608:207,-87,60,0,0,0.0756572 -34633,7608:206,-86,60,0,0,0.0757937 -34634,7608:205,-85,60,0,0,0.0770338 -34635,7608:104,-84,60,0,0,0.0787009 -34636,7608:103,-83,60,0,0,0.079562 -34637,7608:102,-82,60,0,0,0.0809726 -34638,7608:101,-81,60,0,0,0.0803405 -34639,7608:100,-80,60,0,0,0.079856 -34640,7607:209,-79,60,0,0,0.0783961 -34641,7607:102,-72,60,0,0,0.0778042 -34642,7607:101,-71,60,0,0,0.0771726 -34643,7607:100,-70,60,0,0,0.0765022 -34644,7606:209,-69,60,0,0,0.0764876 -34645,7606:208,-68,60,0,0,0.0764803 -34646,7606:207,-67,60,0,0,0.0764659 -34647,7606:206,-66,60,0,0,0.0764513 -34648,7606:205,-65,60,0,0,0.0765384 -34649,7606:104,-64,60,0,0,0.0768514 -34650,7606:103,-63,60,0,0,0.0773118 -34651,7606:102,-62,60,0,0,0.077937 -34652,7606:101,-61,60,0,0,0.07827 -34653,7605:206,-56,60,0,0,0.0779519 -34654,7605:205,-55,60,0,0,0.0778485 -34655,7605:104,-54,60,0,0,0.0768806 -34656,7605:103,-53,60,0,0,0.0766328 -34657,7605:102,-52,60,0,0,0.0765166 -34658,7605:101,-51,60,0,0,0.0763716 -34659,7605:100,-50,60,0,0,0.0763643 -34660,7604:209,-49,60,0,0,0.0763354 -34661,7604:208,-48,60,0,0,0.0764296 -34662,7604:207,-47,60,0,0,0.0769097 -34663,7604:206,-46,60,0,0,0.0779889 -34664,7604:205,-45,60,0,0,0.0823441 -34665,7604:104,-44,60,0,0,0.0925493 -34666,7602:103,-23,60,0,0,0.0762918 -34667,7602:102,-22,60,0,0,0.076046 -34668,7602:101,-21,60,0,0,0.0762629 -34669,7602:100,-20,60,0,0,0.0766839 -34670,7601:209,-19,60,0,0,0.0769534 -34671,7601:208,-18,60,0,0,0.0778634 -34672,7601:207,-17,60,0,0,0.0801736 -34673,7601:206,-16,60,0,0,0.0833825 -34674,7601:205,-15,60,0,0,0.0905498 -34675,7601:104,-14,60,0,0,0.0955341 -34676,7601:103,-13,60,0,0,0.0953213 -34677,7601:102,-12,60,0,0,0.0949144 -34678,7601:101,-11,60,0,0,0.0957741 -34679,7601:100,-10,60,0,0,0.102583 -34680,7600:209,-9,60,0,0,0.126549 -34681,7600:208,-8,60,0,0,0.137761 -34682,7600:207,-7,60,0,0,0.150006 -34683,7600:206,-6,60,0,0,0.151611 -34684,7600:205,-5,60,0,0,0.151136 -34685,7600:104,-4,60,0,0,0.150215 -34686,7600:103,-3,60,0,0,0.16104 -34687,7600:102,-2,60,0,0,0.163189 -34688,7600:101,-1,60,0,0,0.163287 -34689,1600:101,0,60,0,0,0.172926 -34690,1600:101,1,60,0,0,0.17375 -34691,1600:102,2,60,0,0,0.179745 -34692,1615:209,159,60,0,0,0.0802492 -34693,1616:100,160,60,0,0,0.0799692 -34694,1616:101,161,60,0,0,0.0797277 -34695,1616:102,162,60,0,0,0.0795995 -34696,1616:103,163,60,0,0,0.0794491 -34697,1616:104,164,60,0,0,0.0792464 -34698,1616:205,165,60,0,0,0.0790145 -34699,1616:206,166,60,0,0,0.0787084 -34700,1616:207,167,60,0,0,0.078359 -34701,1616:208,168,60,0,0,0.0780405 -34702,1616:209,169,60,0,0,0.0777675 -34703,1617:100,170,60,0,0,0.077679 -34704,1617:101,171,60,0,0,0.0775907 -34705,1617:102,172,60,0,0,0.0773263 -34706,1617:103,173,60,0,0,0.0771141 -34707,1617:104,174,60,0,0,0.0769825 -34708,1617:205,175,60,0,0,0.0769973 -34709,1617:206,176,60,0,0,0.0769168 -34710,1617:207,177,60,0,0,0.0768441 -34711,1617:208,178,60,0,0,0.0767785 -34712,1617:209,179,60,0,0,0.0766912 -34713,1618:100,180,60,0,0,0.0771067 -34714,7618:110,-180,61,0,0,0.0768877 -34715,7617:219,-179,61,0,0,0.0770556 -34716,7617:218,-178,61,0,0,0.0769754 -34717,7617:217,-177,61,0,0,0.0769681 -34718,7617:216,-176,61,0,0,0.0771141 -34719,7617:215,-175,61,0,0,0.0768659 -34720,7617:114,-174,61,0,0,0.0767567 -34721,7617:113,-173,61,0,0,0.0765457 -34722,7617:112,-172,61,0,0,0.0762558 -34723,7617:111,-171,61,0,0,0.076415 -34724,7617:110,-170,61,0,0,0.0772166 -34725,7616:219,-169,61,0,0,0.0773337 -34726,7616:218,-168,61,0,0,0.0772532 -34727,7616:217,-167,61,0,0,0.0762629 -34728,7616:216,-166,61,0,0,0.0762848 -34729,7608:112,-82,61,0,0,0.0775613 -34730,7608:111,-81,61,0,0,0.0794868 -34731,7608:110,-80,61,0,0,0.0787532 -34732,7607:219,-79,61,0,0,0.0790444 -34733,7607:218,-78,61,0,0,0.0794943 -34734,7607:217,-77,61,0,0,0.0773485 -34735,7607:113,-73,61,0,0,0.0775539 -34736,7607:112,-72,61,0,0,0.0776127 -34737,7607:111,-71,61,0,0,0.0772166 -34738,7607:110,-70,61,0,0,0.0770849 -34739,7606:219,-69,61,0,0,0.0768514 -34740,7606:218,-68,61,0,0,0.0766328 -34741,7606:217,-67,61,0,0,0.0767638 -34742,7606:216,-66,61,0,0,0.0766839 -34743,7606:215,-65,61,0,0,0.0764296 -34744,7606:111,-61,61,0,0,0.0781884 -34745,7605:114,-54,61,0,0,0.0768659 -34746,7605:113,-53,61,0,0,0.0765022 -34747,7605:112,-52,61,0,0,0.0762918 -34748,7605:111,-51,61,0,0,0.0764369 -34749,7605:110,-50,61,0,0,0.0762848 -34750,7604:219,-49,61,0,0,0.0763427 -34751,7604:218,-48,61,0,0,0.0777232 -34752,7604:217,-47,61,0,0,0.0815095 -34753,7604:216,-46,61,0,0,0.0860592 -34754,7602:112,-22,61,0,0,0.0761256 -34755,7602:111,-21,61,0,0,0.0761183 -34756,7602:110,-20,61,0,0,0.0765893 -34757,7601:219,-19,61,0,0,0.077224 -34758,7601:218,-18,61,0,0,0.0792691 -34759,7601:217,-17,61,0,0,0.0844409 -34760,7601:216,-16,61,0,0,0.0899846 -34761,7601:215,-15,61,0,0,0.0925838 -34762,7601:114,-14,61,0,0,0.094237 -34763,7601:113,-13,61,0,0,0.0932593 -34764,7601:112,-12,61,0,0,0.0927394 -34765,7601:111,-11,61,0,0,0.0931811 -34766,7601:110,-10,61,0,0,0.0948438 -34767,7600:219,-9,61,0,0,0.119112 -34768,7600:218,-8,61,0,0,0.140592 -34769,7600:217,-7,61,0,0,0.139824 -34770,7600:216,-6,61,0,0,0.148908 -34771,7600:215,-5,61,0,0,0.150229 -34772,7600:114,-4,61,0,0,0.152565 -34773,7600:113,-3,61,0,0,0.156105 -34774,7600:112,-2,61,0,0,0.153898 -34775,7600:111,-1,61,0,0,0.163161 -34776,1600:111,0,61,0,0,0.175959 -34777,1600:111,1,61,0,0,0.176183 -34778,1600:112,2,61,0,0,0.17979 -34779,1600:113,3,61,0,0,0.148817 -34780,1601:219,19,61,0,0,0.0927913 -34781,1602:110,20,61,0,0,0.094237 -34782,1602:112,22,61,0,0,0.0881838 -34783,1615:110,150,61,0,0,0.0812332 -34784,1615:111,151,61,0,0,0.0811104 -34785,1615:112,152,61,0,0,0.0810415 -34786,1615:216,156,61,0,0,0.0806751 -34787,1615:217,157,61,0,0,0.0804696 -34788,1615:218,158,61,0,0,0.0801736 -34789,1615:219,159,61,0,0,0.079939 -34790,1616:110,160,61,0,0,0.0798408 -34791,1616:111,161,61,0,0,0.0797653 -34792,1616:112,162,61,0,0,0.0796222 -34793,1616:113,163,61,0,0,0.0794643 -34794,1616:114,164,61,0,0,0.0789771 -34795,1616:215,165,61,0,0,0.0785002 -34796,1616:216,166,61,0,0,0.0780184 -34797,1616:217,167,61,0,0,0.0776127 -34798,1616:218,168,61,0,0,0.0774071 -34799,1616:219,169,61,0,0,0.0772678 -34800,1617:110,170,61,0,0,0.0772018 -34801,1617:111,171,61,0,0,0.0771654 -34802,1617:112,172,61,0,0,0.0770922 -34803,1617:113,173,61,0,0,0.0769754 -34804,1617:114,174,61,0,0,0.0768659 -34805,1617:215,175,61,0,0,0.0767274 -34806,1617:216,176,61,0,0,0.0766184 -34807,1617:217,177,61,0,0,0.0764803 -34808,1617:218,178,61,0,0,0.0764079 -34809,1617:219,179,61,0,0,0.0765603 -34810,1618:110,180,61,0,0,0.0768877 -34811,7618:120,-180,62,0,0,0.0766839 -34812,7617:229,-179,62,0,0,0.0765967 -34813,7617:228,-178,62,0,0,0.076582 -34814,7617:227,-177,62,0,0,0.0769754 -34815,7617:226,-176,62,0,0,0.0771947 -34816,7617:225,-175,62,0,0,0.0770338 -34817,7617:124,-174,62,0,0,0.0773852 -34818,7617:123,-173,62,0,0,0.0774291 -34819,7617:122,-172,62,0,0,0.0770046 -34820,7617:121,-171,62,0,0,0.0768732 -34821,7617:120,-170,62,0,0,0.0770191 -34822,7616:229,-169,62,0,0,0.0771873 -34823,7616:228,-168,62,0,0,0.0769462 -34824,7616:227,-167,62,0,0,0.0770338 -34825,7616:226,-166,62,0,0,0.0772751 -34826,7616:225,-165,62,0,0,0.0769462 -34827,7616:124,-164,62,0,0,0.0767929 -34828,7616:123,-163,62,0,0,0.0768076 -34829,7616:122,-162,62,0,0,0.0769024 -34830,7616:121,-161,62,0,0,0.0769462 -34831,7616:120,-160,62,0,0,0.076742 -34832,7615:229,-159,62,0,0,0.0770191 -34833,7607:226,-76,62,0,0,0.0766475 -34834,7607:123,-73,62,0,0,0.0777084 -34835,7607:121,-71,62,0,0,0.0768221 -34836,7607:120,-70,62,0,0,0.0771433 -34837,7606:229,-69,62,0,0,0.0768441 -34838,7606:228,-68,62,0,0,0.076742 -34839,7606:227,-67,62,0,0,0.0767567 -34840,7606:226,-66,62,0,0,0.0768732 -34841,7606:225,-65,62,0,0,0.0764586 -34842,7606:124,-64,62,0,0,0.0765457 -34843,7606:122,-62,62,0,0,0.0765457 -34844,7605:124,-54,62,0,0,0.0767274 -34845,7605:123,-53,62,0,0,0.0765457 -34846,7605:122,-52,62,0,0,0.0762485 -34847,7605:121,-51,62,0,0,0.0764006 -34848,7605:120,-50,62,0,0,0.0765384 -34849,7604:229,-49,62,0,0,0.0763933 -34850,7604:228,-48,62,0,0,0.0773559 -34851,7604:227,-47,62,0,0,0.0796673 -34852,7604:226,-46,62,0,0,0.081448 -34853,7604:225,-45,62,0,0,0.0844649 -34854,7602:121,-21,62,0,0,0.076039 -34855,7602:120,-20,62,0,0,0.0762123 -34856,7601:229,-19,62,0,0,0.0773118 -34857,7601:228,-18,62,0,0,0.0811029 -34858,7601:227,-17,62,0,0,0.0848709 -34859,7601:226,-16,62,0,0,0.0862291 -34860,7601:225,-15,62,0,0,0.087173 -34861,7601:124,-14,62,0,0,0.0886723 -34862,7601:123,-13,62,0,0,0.0909143 -34863,7601:122,-12,62,0,0,0.0928777 -34864,7601:121,-11,62,0,0,0.0933288 -34865,7601:120,-10,62,0,0,0.0938432 -34866,7600:229,-9,62,0,0,0.0978763 -34867,7600:228,-8,62,0,0,0.117942 -34868,7600:227,-7,62,0,0,0.135591 -34869,7600:226,-6,62,0,0,0.140035 -34870,7600:225,-5,62,0,0,0.15327 -34871,7600:124,-4,62,0,0,0.150964 -34872,7600:123,-3,62,0,0,0.151942 -34873,7600:122,-2,62,0,0,0.159891 -34874,7600:121,-1,62,0,0,0.167313 -34875,1600:121,0,62,0,0,0.177244 -34876,1600:121,1,62,0,0,0.180412 -34877,1600:122,2,62,0,0,0.177499 -34878,1600:123,3,62,0,0,0.179503 -34879,1600:124,4,62,0,0,0.177859 -34880,1601:226,16,62,0,0,0.0957918 -34881,1601:227,17,62,0,0,0.102706 -34882,1601:228,18,62,0,0,0.0983127 -34883,1601:229,19,62,0,0,0.0982763 -34884,1602:120,20,62,0,0,0.104087 -34885,1602:121,21,62,0,0,0.10448 -34886,1614:226,146,62,0,0,0.0821581 -34887,1614:227,147,62,0,0,0.0819182 -34888,1614:229,149,62,0,0,0.0811871 -34889,1615:120,150,62,0,0,0.0805531 -34890,1615:121,151,62,0,0,0.0802492 -34891,1615:122,152,62,0,0,0.0801509 -34892,1615:123,153,62,0,0,0.0802872 -34893,1615:124,154,62,0,0,0.0807207 -34894,1615:226,156,62,0,0,0.0807056 -34895,1615:227,157,62,0,0,0.0805531 -34896,1615:228,158,62,0,0,0.0803025 -34897,1615:229,159,62,0,0,0.0800525 -34898,1616:120,160,62,0,0,0.07969 -34899,1616:121,161,62,0,0,0.0793666 -34900,1616:122,162,62,0,0,0.0792165 -34901,1616:123,163,62,0,0,0.0787009 -34902,1616:124,164,62,0,0,0.0781514 -34903,1616:225,165,62,0,0,0.0777232 -34904,1616:226,166,62,0,0,0.0774365 -34905,1616:227,167,62,0,0,0.0772166 -34906,1616:228,168,62,0,0,0.077063 -34907,1616:229,169,62,0,0,0.0769534 -34908,1617:120,170,62,0,0,0.0768732 -34909,1617:121,171,62,0,0,0.0768221 -34910,1617:122,172,62,0,0,0.0767858 -34911,1617:123,173,62,0,0,0.0767567 -34912,1617:124,174,62,0,0,0.0767203 -34913,1617:225,175,62,0,0,0.0766839 -34914,1617:226,176,62,0,0,0.0766401 -34915,1617:227,177,62,0,0,0.0765967 -34916,1617:228,178,62,0,0,0.076415 -34917,1617:229,179,62,0,0,0.0763716 -34918,1618:120,180,62,0,0,0.0766839 -34919,7618:130,-180,63,0,0,0.0764006 -34920,7617:239,-179,63,0,0,0.0763427 -34921,7617:238,-178,63,0,0,0.0765676 -34922,7617:237,-177,63,0,0,0.077224 -34923,7617:236,-176,63,0,0,0.0773924 -34924,7617:235,-175,63,0,0,0.077297 -34925,7617:134,-174,63,0,0,0.0771507 -34926,7617:133,-173,63,0,0,0.0773263 -34927,7617:132,-172,63,0,0,0.0774584 -34928,7617:131,-171,63,0,0,0.077224 -34929,7617:130,-170,63,0,0,0.0770996 -34930,7616:239,-169,63,0,0,0.0770264 -34931,7616:238,-168,63,0,0,0.0767929 -34932,7616:237,-167,63,0,0,0.0767929 -34933,7616:236,-166,63,0,0,0.0769315 -34934,7616:235,-165,63,0,0,0.077224 -34935,7616:134,-164,63,0,0,0.0771067 -34936,7616:133,-163,63,0,0,0.0772751 -34937,7616:132,-162,63,0,0,0.0773559 -34938,7616:131,-161,63,0,0,0.0773924 -34939,7616:130,-160,63,0,0,0.0773411 -34940,7615:239,-159,63,0,0,0.0773118 -34941,7615:238,-158,63,0,0,0.0773192 -34942,7615:237,-157,63,0,0,0.0773704 -34943,7615:236,-156,63,0,0,0.0773998 -34944,7615:235,-155,63,0,0,0.0775026 -34945,7615:133,-153,63,0,0,0.0783218 -34946,7607:133,-73,63,0,0,0.0780035 -34947,7606:237,-67,63,0,0,0.0767274 -34948,7606:236,-66,63,0,0,0.0768076 -34949,7606:235,-65,63,0,0,0.0763137 -34950,7606:134,-64,63,0,0,0.0763137 -34951,7606:133,-63,63,0,0,0.0767274 -34952,7606:132,-62,63,0,0,0.0762775 -34953,7606:131,-61,63,0,0,0.0771799 -34954,7605:134,-54,63,0,0,0.076713 -34955,7605:133,-53,63,0,0,0.0762413 -34956,7605:132,-52,63,0,0,0.0760606 -34957,7605:131,-51,63,0,0,0.0762267 -34958,7605:130,-50,63,0,0,0.076386 -34959,7604:239,-49,63,0,0,0.076205 -34960,7604:238,-48,63,0,0,0.0762775 -34961,7604:237,-47,63,0,0,0.0784555 -34962,7604:236,-46,63,0,0,0.0791566 -34963,7604:235,-45,63,0,0,0.0782775 -34964,7604:134,-44,63,0,0,0.0770996 -34965,7602:132,-22,63,0,0,0.0762123 -34966,7602:131,-21,63,0,0,0.0761545 -34967,7602:130,-20,63,0,0,0.0762558 -34968,7601:239,-19,63,0,0,0.0759811 -34969,7601:238,-18,63,0,0,0.0771433 -34970,7601:237,-17,63,0,0,0.0854633 -34971,7601:236,-16,63,0,0,0.093103 -34972,7601:235,-15,63,0,0,0.08764 -34973,7601:134,-14,63,0,0,0.0888884 -34974,7601:133,-13,63,0,0,0.091212 -34975,7601:132,-12,63,0,0,0.0926961 -34976,7601:131,-11,63,0,0,0.094395 -34977,7601:130,-10,63,0,0,0.0939392 -34978,7600:239,-9,63,0,0,0.0994388 -34979,7600:238,-8,63,0,0,0.124676 -34980,7600:237,-7,63,0,0,0.147301 -34981,7600:236,-6,63,0,0,0.151743 -34982,7600:235,-5,63,0,0,0.1543 -34983,7600:134,-4,63,0,0,0.163329 -34984,7600:133,-3,63,0,0,0.168246 -34985,7600:132,-2,63,0,0,0.173147 -34986,7600:131,-1,63,0,0,0.176929 -34987,1600:131,0,63,0,0,0.175127 -34988,1600:131,1,63,0,0,0.174252 -34989,1600:132,2,63,0,0,0.173102 -34990,1600:133,3,63,0,0,0.1679 -34991,1600:134,4,63,0,0,0.176257 -34992,1600:235,5,63,0,0,0.165219 -34993,1602:130,20,63,0,0,0.109456 -34994,1602:131,21,63,0,0,0.10735 -34995,1614:237,147,63,0,0,0.0827254 -34996,1614:238,148,63,0,0,0.0820496 -34997,1614:239,149,63,0,0,0.0812254 -34998,1615:130,150,63,0,0,0.0808122 -34999,1615:131,151,63,0,0,0.0803479 -35000,1615:132,152,63,0,0,0.0801204 -35001,1615:133,153,63,0,0,0.0801812 -35002,1615:134,154,63,0,0,0.0804392 -35003,1615:235,155,63,0,0,0.0803479 -35004,1615:236,156,63,0,0,0.0803935 -35005,1615:237,157,63,0,0,0.0803101 -35006,1615:238,158,63,0,0,0.0798256 -35007,1616:131,161,63,0,0,0.0787755 -35008,1616:132,162,63,0,0,0.0782255 -35009,1616:133,163,63,0,0,0.0778634 -35010,1616:134,164,63,0,0,0.0776127 -35011,1616:235,165,63,0,0,0.0773485 -35012,1616:236,166,63,0,0,0.0770996 -35013,1616:237,167,63,0,0,0.0769024 -35014,1616:238,168,63,0,0,0.0767347 -35015,1616:239,169,63,0,0,0.0765967 -35016,1617:130,170,63,0,0,0.0765457 -35017,1617:131,171,63,0,0,0.0765384 -35018,1617:132,172,63,0,0,0.0766184 -35019,1617:133,173,63,0,0,0.0766328 -35020,1617:134,174,63,0,0,0.0765967 -35021,1617:235,175,63,0,0,0.0765603 -35022,1617:236,176,63,0,0,0.0765457 -35023,1617:237,177,63,0,0,0.0765384 -35024,1617:238,178,63,0,0,0.0765384 -35025,1617:239,179,63,0,0,0.0764803 -35026,1618:130,180,63,0,0,0.0764006 -35027,7618:140,-180,64,0,0,0.0764369 -35028,7617:249,-179,64,0,0,0.0763643 -35029,7617:248,-178,64,0,0,0.076386 -35030,7617:247,-177,64,0,0,0.0767347 -35031,7617:246,-176,64,0,0,0.0765384 -35032,7617:245,-175,64,0,0,0.0767274 -35033,7617:144,-174,64,0,0,0.0771141 -35034,7617:143,-173,64,0,0,0.0772166 -35035,7617:142,-172,64,0,0,0.0769825 -35036,7617:141,-171,64,0,0,0.0767274 -35037,7617:140,-170,64,0,0,0.076582 -35038,7616:249,-169,64,0,0,0.0765967 -35039,7616:248,-168,64,0,0,0.0766401 -35040,7616:247,-167,64,0,0,0.0766621 -35041,7616:246,-166,64,0,0,0.0766765 -35042,7616:245,-165,64,0,0,0.0767347 -35043,7616:144,-164,64,0,0,0.0766765 -35044,7616:143,-163,64,0,0,0.0767494 -35045,7616:142,-162,64,0,0,0.0767858 -35046,7616:141,-161,64,0,0,0.0769315 -35047,7616:140,-160,64,0,0,0.0770409 -35048,7615:249,-159,64,0,0,0.0770191 -35049,7615:248,-158,64,0,0,0.0768514 -35050,7615:247,-157,64,0,0,0.076742 -35051,7615:246,-156,64,0,0,0.0766475 -35052,7615:245,-155,64,0,0,0.0767347 -35053,7615:144,-154,64,0,0,0.0772311 -35054,7615:143,-153,64,0,0,0.0774365 -35055,7615:142,-152,64,0,0,0.0785446 -35056,7606:247,-67,64,0,0,0.0763354 -35057,7606:246,-66,64,0,0,0.0765022 -35058,7606:245,-65,64,0,0,0.0768441 -35059,7606:144,-64,64,0,0,0.076524 -35060,7606:142,-62,64,0,0,0.0765457 -35061,7605:245,-55,64,0,0,0.0766765 -35062,7605:144,-54,64,0,0,0.0764586 -35063,7605:143,-53,64,0,0,0.0761111 -35064,7605:142,-52,64,0,0,0.0759595 -35065,7605:141,-51,64,0,0,0.07614 -35066,7605:140,-50,64,0,0,0.0763281 -35067,7604:249,-49,64,0,0,0.0761978 -35068,7604:248,-48,64,0,0,0.0760679 -35069,7604:247,-47,64,0,0,0.0766548 -35070,7604:246,-46,64,0,0,0.0767638 -35071,7604:245,-45,64,0,0,0.0774071 -35072,7604:144,-44,64,0,0,0.0777158 -35073,7602:143,-23,64,0,0,0.0766038 -35074,7602:141,-21,64,0,0,0.0762702 -35075,7602:140,-20,64,0,0,0.0760895 -35076,7601:249,-19,64,0,0,0.0759234 -35077,7601:248,-18,64,0,0,0.0760317 -35078,7601:247,-17,64,0,0,0.0765603 -35079,7601:246,-16,64,0,0,0.0865699 -35080,7601:245,-15,64,0,0,0.0984587 -35081,7601:144,-14,64,0,0,0.0918614 -35082,7601:143,-13,64,0,0,0.101772 -35083,7601:142,-12,64,0,0,0.104039 -35084,7601:141,-11,64,0,0,0.103934 -35085,7601:140,-10,64,0,0,0.101706 -35086,7600:249,-9,64,0,0,0.112548 -35087,7600:248,-8,64,0,0,0.130437 -35088,7600:247,-7,64,0,0,0.138924 -35089,7600:246,-6,64,0,0,0.147689 -35090,7600:245,-5,64,0,0,0.14712 -35091,7600:144,-4,64,0,0,0.157886 -35092,7600:143,-3,64,0,0,0.171082 -35093,7600:142,-2,64,0,0,0.160818 -35094,7600:141,-1,64,0,0,0.163301 -35095,1600:141,0,64,0,0,0.167313 -35096,1600:141,1,64,0,0,0.166755 -35097,1600:142,2,64,0,0,0.160596 -35098,1600:143,3,64,0,0,0.163273 -35099,1600:144,4,64,0,0,0.167929 -35100,1600:245,5,64,0,0,0.174134 -35101,1600:246,6,64,0,0,0.172442 -35102,1601:140,10,64,0,0,0.160915 -35103,1602:141,21,64,0,0,0.104259 -35104,1614:248,148,64,0,0,0.0816251 -35105,1614:249,149,64,0,0,0.0802721 -35106,1615:140,150,64,0,0,0.0800599 -35107,1615:141,151,64,0,0,0.0803708 -35108,1615:142,152,64,0,0,0.0799088 -35109,1615:143,153,64,0,0,0.0797277 -35110,1615:248,158,64,0,0,0.0788053 -35111,1615:249,159,64,0,0,0.0786116 -35112,1616:140,160,64,0,0,0.0785446 -35113,1616:141,161,64,0,0,0.0782922 -35114,1616:142,162,64,0,0,0.0777747 -35115,1616:143,163,64,0,0,0.0772825 -35116,1616:144,164,64,0,0,0.0770775 -35117,1616:245,165,64,0,0,0.0769168 -35118,1616:246,166,64,0,0,0.0766621 -35119,1616:247,167,64,0,0,0.076415 -35120,1616:248,168,64,0,0,0.076234 -35121,1616:249,169,64,0,0,0.0761907 -35122,1617:140,170,64,0,0,0.0762702 -35123,1617:141,171,64,0,0,0.0763208 -35124,1617:142,172,64,0,0,0.0763643 -35125,1617:143,173,64,0,0,0.076415 -35126,1617:144,174,64,0,0,0.0764442 -35127,1617:245,175,64,0,0,0.0764659 -35128,1617:246,176,64,0,0,0.0765166 -35129,1617:247,177,64,0,0,0.0765313 -35130,1617:248,178,64,0,0,0.076524 -35131,1617:249,179,64,0,0,0.0764876 -35132,1618:140,180,64,0,0,0.0764369 -35133,7618:350,-180,65,0,0,0.0763643 -35134,7617:459,-179,65,0,0,0.0763281 -35135,7617:458,-178,65,0,0,0.0762702 -35136,7617:457,-177,65,0,0,0.0762702 -35137,7617:456,-176,65,0,0,0.0762558 -35138,7617:455,-175,65,0,0,0.0765893 -35139,7617:354,-174,65,0,0,0.0768149 -35140,7617:353,-173,65,0,0,0.0767858 -35141,7617:352,-172,65,0,0,0.0766184 -35142,7617:351,-171,65,0,0,0.0764586 -35143,7617:350,-170,65,0,0,0.0765384 -35144,7616:459,-169,65,0,0,0.076713 -35145,7616:458,-168,65,0,0,0.0767494 -35146,7616:457,-167,65,0,0,0.0766184 -35147,7616:456,-166,65,0,0,0.0766548 -35148,7616:455,-165,65,0,0,0.0766912 -35149,7616:354,-164,65,0,0,0.0767494 -35150,7616:353,-163,65,0,0,0.0767638 -35151,7616:352,-162,65,0,0,0.0768003 -35152,7616:351,-161,65,0,0,0.0766983 -35153,7616:350,-160,65,0,0,0.0767494 -35154,7615:459,-159,65,0,0,0.0766983 -35155,7615:458,-158,65,0,0,0.0765166 -35156,7615:457,-157,65,0,0,0.0764006 -35157,7615:456,-156,65,0,0,0.076386 -35158,7615:455,-155,65,0,0,0.0765022 -35159,7615:354,-154,65,0,0,0.0769168 -35160,7615:353,-153,65,0,0,0.0771433 -35161,7615:352,-152,65,0,0,0.0776127 -35162,7606:354,-64,65,0,0,0.0767567 -35163,7606:351,-61,65,0,0,0.0768221 -35164,7605:456,-56,65,0,0,0.0767274 -35165,7605:455,-55,65,0,0,0.0768003 -35166,7605:354,-54,65,0,0,0.0764803 -35167,7605:353,-53,65,0,0,0.0760317 -35168,7605:352,-52,65,0,0,0.0761834 -35169,7605:351,-51,65,0,0,0.0762629 -35170,7605:350,-50,65,0,0,0.0763064 -35171,7604:459,-49,65,0,0,0.0762485 -35172,7604:458,-48,65,0,0,0.076039 -35173,7604:457,-47,65,0,0,0.0760317 -35174,7604:456,-46,65,0,0,0.0761978 -35175,7604:455,-45,65,0,0,0.0763571 -35176,7604:354,-44,65,0,0,0.0768076 -35177,7604:353,-43,65,0,0,0.0755352 -35178,7602:351,-21,65,0,0,0.076234 -35179,7602:350,-20,65,0,0,0.0760099 -35180,7601:459,-19,65,0,0,0.0759379 -35181,7601:458,-18,65,0,0,0.0759595 -35182,7601:457,-17,65,0,0,0.0760749 -35183,7601:456,-16,65,0,0,0.0771141 -35184,7601:455,-15,65,0,0,0.0997334 -35185,7601:354,-14,65,0,0,0.112219 -35186,7601:353,-13,65,0,0,0.107311 -35187,7601:352,-12,65,0,0,0.104808 -35188,7601:351,-11,65,0,0,0.10738 -35189,7601:350,-10,65,0,0,0.117632 -35190,7600:459,-9,65,0,0,0.125102 -35191,7600:458,-8,65,0,0,0.130484 -35192,7600:457,-7,65,0,0,0.138164 -35193,7600:456,-6,65,0,0,0.150557 -35194,7600:455,-5,65,0,0,0.154246 -35195,7600:354,-4,65,0,0,0.159766 -35196,7600:353,-3,65,0,0,0.158762 -35197,7600:352,-2,65,0,0,0.139985 -35198,7600:351,-1,65,0,0,0.13863 -35199,1600:351,0,65,0,0,0.131842 -35200,1600:351,1,65,0,0,0.13996 -35201,1600:352,2,65,0,0,0.151044 -35202,1600:353,3,65,0,0,0.15715 -35203,1600:354,4,65,0,0,0.153177 -35204,1600:455,5,65,0,0,0.164399 -35205,1600:456,6,65,0,0,0.16347 -35206,1600:457,7,65,0,0,0.161456 -35207,1600:458,8,65,0,0,0.161777 -35208,1600:459,9,65,0,0,0.16637 -35209,1601:350,10,65,0,0,0.162111 -35210,1601:351,11,65,0,0,0.159546 -35211,1601:352,12,65,0,0,0.156837 -35212,1601:353,13,65,0,0,0.151875 -35213,1602:350,20,65,0,0,0.104759 -35214,1602:351,21,65,0,0,0.0974781 -35215,1614:457,147,65,0,0,0.0811335 -35216,1614:458,148,65,0,0,0.079705 -35217,1614:459,149,65,0,0,0.0790967 -35218,1615:350,150,65,0,0,0.0787905 -35219,1615:351,151,65,0,0,0.079532 -35220,1615:352,152,65,0,0,0.079705 -35221,1615:353,153,65,0,0,0.0795469 -35222,1615:457,157,65,0,0,0.0783665 -35223,1615:458,158,65,0,0,0.0781737 -35224,1615:459,159,65,0,0,0.0780184 -35225,1616:350,160,65,0,0,0.0777232 -35226,1616:351,161,65,0,0,0.0774145 -35227,1616:352,162,65,0,0,0.0771067 -35228,1616:353,163,65,0,0,0.0768514 -35229,1616:354,164,65,0,0,0.0766111 -35230,1616:455,165,65,0,0,0.076386 -35231,1616:456,166,65,0,0,0.0761907 -35232,1616:457,167,65,0,0,0.0760533 -35233,1616:458,168,65,0,0,0.0760749 -35234,1616:459,169,65,0,0,0.07614 -35235,1617:350,170,65,0,0,0.0762123 -35236,1617:351,171,65,0,0,0.0762775 -35237,1617:352,172,65,0,0,0.07635 -35238,1617:353,173,65,0,0,0.0764079 -35239,1617:354,174,65,0,0,0.0764732 -35240,1617:455,175,65,0,0,0.0765022 -35241,1617:456,176,65,0,0,0.0765022 -35242,1617:457,177,65,0,0,0.0765093 -35243,1617:458,178,65,0,0,0.0764659 -35244,1617:459,179,65,0,0,0.0764296 -35245,1618:350,180,65,0,0,0.0763643 -35246,7618:360,-180,66,0,0,0.0764223 -35247,7617:469,-179,66,0,0,0.0763571 -35248,7617:468,-178,66,0,0,0.0763208 -35249,7617:467,-177,66,0,0,0.0763064 -35250,7617:466,-176,66,0,0,0.0762991 -35251,7617:465,-175,66,0,0,0.0764732 -35252,7617:364,-174,66,0,0,0.0765457 -35253,7617:363,-173,66,0,0,0.076582 -35254,7617:362,-172,66,0,0,0.0765676 -35255,7617:361,-171,66,0,0,0.0765967 -35256,7617:360,-170,66,0,0,0.0766839 -35257,7616:469,-169,66,0,0,0.0766839 -35258,7616:468,-168,66,0,0,0.0768149 -35259,7616:467,-167,66,0,0,0.0768732 -35260,7616:466,-166,66,0,0,0.0768732 -35261,7616:465,-165,66,0,0,0.0768877 -35262,7616:364,-164,66,0,0,0.0769607 -35263,7616:363,-163,66,0,0,0.0770117 -35264,7616:362,-162,66,0,0,0.0769462 -35265,7616:361,-161,66,0,0,0.0767785 -35266,7616:360,-160,66,0,0,0.0766401 -35267,7615:469,-159,66,0,0,0.076553 -35268,7615:468,-158,66,0,0,0.0764586 -35269,7615:467,-157,66,0,0,0.076386 -35270,7615:466,-156,66,0,0,0.0763427 -35271,7615:465,-155,66,0,0,0.0763427 -35272,7615:364,-154,66,0,0,0.0764223 -35273,7615:363,-153,66,0,0,0.0767274 -35274,7615:362,-152,66,0,0,0.0767858 -35275,7615:361,-151,66,0,0,0.0773044 -35276,7615:360,-150,66,0,0,0.0774145 -35277,7607:362,-72,66,0,0,0.0779814 -35278,7607:361,-71,66,0,0,0.077679 -35279,7607:360,-70,66,0,0,0.0775246 -35280,7606:364,-64,66,0,0,0.0773411 -35281,7606:363,-63,66,0,0,0.0762267 -35282,7605:465,-55,66,0,0,0.0769534 -35283,7605:364,-54,66,0,0,0.0764949 -35284,7605:363,-53,66,0,0,0.0760679 -35285,7605:362,-52,66,0,0,0.0760606 -35286,7605:361,-51,66,0,0,0.0761111 -35287,7605:360,-50,66,0,0,0.0761256 -35288,7604:469,-49,66,0,0,0.0761256 -35289,7604:468,-48,66,0,0,0.076039 -35290,7604:467,-47,66,0,0,0.0761111 -35291,7604:466,-46,66,0,0,0.0766038 -35292,7604:465,-45,66,0,0,0.0764876 -35293,7604:364,-44,66,0,0,0.0767785 -35294,7604:363,-43,66,0,0,0.0771873 -35295,7602:362,-22,66,0,0,0.0766765 -35296,7602:361,-21,66,0,0,0.0761472 -35297,7602:360,-20,66,0,0,0.0759379 -35298,7601:469,-19,66,0,0,0.0759091 -35299,7601:468,-18,66,0,0,0.0759019 -35300,7601:467,-17,66,0,0,0.0759668 -35301,7601:466,-16,66,0,0,0.0767929 -35302,7601:465,-15,66,0,0,0.086116 -35303,7601:364,-14,66,0,0,0.115937 -35304,7601:363,-13,66,0,0,0.113433 -35305,7601:362,-12,66,0,0,0.110239 -35306,7601:361,-11,66,0,0,0.116274 -35307,7601:360,-10,66,0,0,0.121154 -35308,7600:469,-9,66,0,0,0.137578 -35309,7600:468,-8,66,0,0,0.143409 -35310,7600:467,-7,66,0,0,0.145964 -35311,7600:466,-6,66,0,0,0.151809 -35312,7600:465,-5,66,0,0,0.153657 -35313,7600:364,-4,66,0,0,0.139738 -35314,7600:363,-3,66,0,0,0.131736 -35315,7600:362,-2,66,0,0,0.115139 -35316,7600:361,-1,66,0,0,0.130181 -35317,1600:361,0,66,0,0,0.132999 -35318,1600:361,1,66,0,0,0.13249 -35319,1600:362,2,66,0,0,0.138949 -35320,1600:363,3,66,0,0,0.15057 -35321,1600:364,4,66,0,0,0.150032 -35322,1600:465,5,66,0,0,0.146374 -35323,1600:466,6,66,0,0,0.152857 -35324,1600:467,7,66,0,0,0.148596 -35325,1600:468,8,66,0,0,0.156579 -35326,1600:469,9,66,0,0,0.156905 -35327,1601:360,10,66,0,0,0.146799 -35328,1601:361,11,66,0,0,0.142841 -35329,1601:362,12,66,0,0,0.141376 -35330,1601:363,13,66,0,0,0.133094 -35331,1601:364,14,66,0,0,0.133153 -35332,1601:465,15,66,0,0,0.1377 -35333,1601:466,16,66,0,0,0.138115 -35334,1601:467,17,66,0,0,0.130414 -35335,1601:468,18,66,0,0,0.118875 -35336,1601:469,19,66,0,0,0.116148 -35337,1602:360,20,66,0,0,0.101172 -35338,1602:361,21,66,0,0,0.0881591 -35339,1602:362,22,66,0,0,0.084013 -35340,1614:363,143,66,0,0,0.0793591 -35341,1614:364,144,66,0,0,0.0807131 -35342,1614:465,145,66,0,0,0.081548 -35343,1614:466,146,66,0,0,0.081034 -35344,1614:467,147,66,0,0,0.0804315 -35345,1614:468,148,66,0,0,0.0797277 -35346,1614:469,149,66,0,0,0.0791717 -35347,1615:360,150,66,0,0,0.0783144 -35348,1615:361,151,66,0,0,0.0781812 -35349,1615:362,152,66,0,0,0.0787905 -35350,1615:363,153,66,0,0,0.0794643 -35351,1615:364,154,66,0,0,0.0793139 -35352,1615:465,155,66,0,0,0.0789844 -35353,1615:466,156,66,0,0,0.0787084 -35354,1615:467,157,66,0,0,0.078218 -35355,1615:468,158,66,0,0,0.0776864 -35356,1615:469,159,66,0,0,0.077363 -35357,1616:360,160,66,0,0,0.0770849 -35358,1616:361,161,66,0,0,0.0767712 -35359,1616:362,162,66,0,0,0.0764803 -35360,1616:363,163,66,0,0,0.0762918 -35361,1616:364,164,66,0,0,0.0761834 -35362,1616:465,165,66,0,0,0.0760967 -35363,1616:466,166,66,0,0,0.076039 -35364,1616:467,167,66,0,0,0.0760895 -35365,1616:468,168,66,0,0,0.0761761 -35366,1616:469,169,66,0,0,0.0762123 -35367,1617:360,170,66,0,0,0.0762413 -35368,1617:361,171,66,0,0,0.0762991 -35369,1617:362,172,66,0,0,0.0763643 -35370,1617:363,173,66,0,0,0.0764296 -35371,1617:364,174,66,0,0,0.0764732 -35372,1617:465,175,66,0,0,0.0764513 -35373,1617:466,176,66,0,0,0.0764513 -35374,1617:467,177,66,0,0,0.0764513 -35375,1617:468,178,66,0,0,0.0764513 -35376,1617:469,179,66,0,0,0.0764659 -35377,1618:360,180,66,0,0,0.0764223 -35378,7618:370,-180,67,0,0,0.0764803 -35379,7617:479,-179,67,0,0,0.0764732 -35380,7617:478,-178,67,0,0,0.0764369 -35381,7617:477,-177,67,0,0,0.076386 -35382,7617:476,-176,67,0,0,0.0763933 -35383,7617:475,-175,67,0,0,0.0763789 -35384,7617:374,-174,67,0,0,0.0765313 -35385,7617:373,-173,67,0,0,0.0766475 -35386,7617:372,-172,67,0,0,0.0766621 -35387,7617:371,-171,67,0,0,0.0766692 -35388,7617:370,-170,67,0,0,0.0767494 -35389,7616:479,-169,67,0,0,0.0767567 -35390,7616:478,-168,67,0,0,0.0767494 -35391,7616:477,-167,67,0,0,0.0767567 -35392,7616:476,-166,67,0,0,0.0767347 -35393,7616:475,-165,67,0,0,0.076742 -35394,7616:374,-164,67,0,0,0.0768294 -35395,7616:373,-163,67,0,0,0.0769534 -35396,7616:372,-162,67,0,0,0.0770117 -35397,7616:371,-161,67,0,0,0.0769024 -35398,7616:370,-160,67,0,0,0.076713 -35399,7615:479,-159,67,0,0,0.0765603 -35400,7615:478,-158,67,0,0,0.0764586 -35401,7615:477,-157,67,0,0,0.076415 -35402,7615:476,-156,67,0,0,0.0763716 -35403,7615:475,-155,67,0,0,0.0763571 -35404,7615:374,-154,67,0,0,0.07635 -35405,7615:373,-153,67,0,0,0.0763354 -35406,7615:372,-152,67,0,0,0.076553 -35407,7615:371,-151,67,0,0,0.076553 -35408,7615:370,-150,67,0,0,0.0761472 -35409,7607:370,-70,67,0,0,0.0771873 -35410,7606:479,-69,67,0,0,0.0773118 -35411,7606:478,-68,67,0,0,0.0775539 -35412,7606:475,-65,67,0,0,0.077797 -35413,7605:475,-55,67,0,0,0.0768585 -35414,7605:374,-54,67,0,0,0.0766912 -35415,7605:373,-53,67,0,0,0.0765022 -35416,7605:372,-52,67,0,0,0.0761183 -35417,7605:371,-51,67,0,0,0.0761111 -35418,7605:370,-50,67,0,0,0.0760533 -35419,7604:479,-49,67,0,0,0.076039 -35420,7604:478,-48,67,0,0,0.0759523 -35421,7604:477,-47,67,0,0,0.0764296 -35422,7604:476,-46,67,0,0,0.0769242 -35423,7604:475,-45,67,0,0,0.0768076 -35424,7604:374,-44,67,0,0,0.0771288 -35425,7604:373,-43,67,0,0,0.0761545 -35426,7602:373,-23,67,0,0,0.0771433 -35427,7602:371,-21,67,0,0,0.0762991 -35428,7602:370,-20,67,0,0,0.0760099 -35429,7601:479,-19,67,0,0,0.0759595 -35430,7601:478,-18,67,0,0,0.075974 -35431,7601:477,-17,67,0,0,0.0759523 -35432,7601:476,-16,67,0,0,0.0771726 -35433,7601:475,-15,67,0,0,0.103228 -35434,7601:374,-14,67,0,0,0.118864 -35435,7601:373,-13,67,0,0,0.115758 -35436,7601:372,-12,67,0,0,0.128872 -35437,7601:371,-11,67,0,0,0.133771 -35438,7601:370,-10,67,0,0,0.138998 -35439,7600:479,-9,67,0,0,0.141226 -35440,7600:478,-8,67,0,0,0.145082 -35441,7600:477,-7,67,0,0,0.1459 -35442,7600:476,-6,67,0,0,0.141813 -35443,7600:475,-5,67,0,0,0.135182 -35444,7600:374,-4,67,0,0,0.12123 -35445,7600:373,-3,67,0,0,0.106467 -35446,7600:372,-2,67,0,0,0.0980218 -35447,7600:371,-1,67,0,0,0.108736 -35448,1600:371,0,67,0,0,0.127437 -35449,1600:371,1,67,0,0,0.13505 -35450,1600:372,2,67,0,0,0.137529 -35451,1600:373,3,67,0,0,0.147069 -35452,1600:374,4,67,0,0,0.147198 -35453,1600:475,5,67,0,0,0.14451 -35454,1600:476,6,67,0,0,0.135266 -35455,1600:477,7,67,0,0,0.137944 -35456,1600:478,8,67,0,0,0.142264 -35457,1600:479,9,67,0,0,0.140381 -35458,1601:370,10,67,0,0,0.135483 -35459,1601:371,11,67,0,0,0.128504 -35460,1601:372,12,67,0,0,0.126515 -35461,1601:373,13,67,0,0,0.126538 -35462,1601:374,14,67,0,0,0.126061 -35463,1601:475,15,67,0,0,0.125192 -35464,1601:476,16,67,0,0,0.13108 -35465,1601:477,17,67,0,0,0.119999 -35466,1601:478,18,67,0,0,0.103332 -35467,1601:479,19,67,0,0,0.0954098 -35468,1614:373,143,67,0,0,0.0783961 -35469,1614:374,144,67,0,0,0.0783218 -35470,1614:475,145,67,0,0,0.0786711 -35471,1614:476,146,67,0,0,0.0788203 -35472,1614:477,147,67,0,0,0.0786116 -35473,1614:478,148,67,0,0,0.0777675 -35474,1614:479,149,67,0,0,0.0782033 -35475,1615:370,150,67,0,0,0.0781367 -35476,1615:371,151,67,0,0,0.0777601 -35477,1615:372,152,67,0,0,0.0775981 -35478,1615:373,153,67,0,0,0.0775246 -35479,1615:374,154,67,0,0,0.0780552 -35480,1615:475,155,67,0,0,0.078048 -35481,1615:476,156,67,0,0,0.0775833 -35482,1615:477,157,67,0,0,0.0771067 -35483,1615:478,158,67,0,0,0.0768076 -35484,1615:479,159,67,0,0,0.0765457 -35485,1616:370,160,67,0,0,0.07635 -35486,1616:371,161,67,0,0,0.0762196 -35487,1616:372,162,67,0,0,0.0761038 -35488,1616:373,163,67,0,0,0.0760895 -35489,1616:374,164,67,0,0,0.0760822 -35490,1616:475,165,67,0,0,0.0760245 -35491,1616:476,166,67,0,0,0.0760317 -35492,1616:477,167,67,0,0,0.0761761 -35493,1616:478,168,67,0,0,0.0762413 -35494,1616:479,169,67,0,0,0.0762702 -35495,1617:370,170,67,0,0,0.0762702 -35496,1617:371,171,67,0,0,0.0763137 -35497,1617:372,172,67,0,0,0.0763789 -35498,1617:373,173,67,0,0,0.0764296 -35499,1617:374,174,67,0,0,0.0764369 -35500,1617:475,175,67,0,0,0.0764079 -35501,1617:476,176,67,0,0,0.0764006 -35502,1617:477,177,67,0,0,0.0764079 -35503,1617:478,178,67,0,0,0.0764296 -35504,1617:479,179,67,0,0,0.0764659 -35505,1618:370,180,67,0,0,0.0764803 -35506,7618:380,-180,68,0,0,0.0764803 -35507,7617:489,-179,68,0,0,0.0764949 -35508,7617:488,-178,68,0,0,0.0765022 -35509,7617:487,-177,68,0,0,0.0765022 -35510,7617:486,-176,68,0,0,0.0764732 -35511,7617:485,-175,68,0,0,0.0764876 -35512,7617:384,-174,68,0,0,0.0766111 -35513,7617:383,-173,68,0,0,0.0767274 -35514,7617:382,-172,68,0,0,0.076742 -35515,7617:381,-171,68,0,0,0.0767712 -35516,7617:380,-170,68,0,0,0.0768003 -35517,7616:489,-169,68,0,0,0.0767638 -35518,7616:488,-168,68,0,0,0.0766621 -35519,7616:487,-167,68,0,0,0.0766401 -35520,7616:486,-166,68,0,0,0.0766257 -35521,7616:485,-165,68,0,0,0.0766184 -35522,7616:384,-164,68,0,0,0.0766548 -35523,7616:383,-163,68,0,0,0.0767347 -35524,7616:382,-162,68,0,0,0.0767858 -35525,7616:381,-161,68,0,0,0.0767347 -35526,7616:380,-160,68,0,0,0.0766765 -35527,7615:489,-159,68,0,0,0.0766257 -35528,7615:488,-158,68,0,0,0.0765747 -35529,7615:487,-157,68,0,0,0.0765676 -35530,7615:486,-156,68,0,0,0.0765384 -35531,7615:485,-155,68,0,0,0.0764079 -35532,7615:384,-154,68,0,0,0.0763427 -35533,7615:383,-153,68,0,0,0.076415 -35534,7615:382,-152,68,0,0,0.0762775 -35535,7615:381,-151,68,0,0,0.07635 -35536,7615:380,-150,68,0,0,0.0759091 -35537,7614:489,-149,68,0,0,0.0755781 -35538,7606:489,-69,68,0,0,0.0771215 -35539,7606:488,-68,68,0,0,0.0772166 -35540,7606:487,-67,68,0,0,0.0774439 -35541,7606:486,-66,68,0,0,0.0775539 -35542,7605:487,-57,68,0,0,0.0769754 -35543,7605:384,-54,68,0,0,0.0765093 -35544,7605:383,-53,68,0,0,0.0764513 -35545,7605:382,-52,68,0,0,0.0760606 -35546,7605:381,-51,68,0,0,0.075974 -35547,7605:380,-50,68,0,0,0.0759379 -35548,7604:489,-49,68,0,0,0.0760679 -35549,7604:488,-48,68,0,0,0.0763137 -35550,7604:487,-47,68,0,0,0.0764442 -35551,7604:486,-46,68,0,0,0.077136 -35552,7604:485,-45,68,0,0,0.0772311 -35553,7602:382,-22,68,0,0,0.076415 -35554,7602:381,-21,68,0,0,0.0763789 -35555,7602:380,-20,68,0,0,0.0761545 -35556,7601:489,-19,68,0,0,0.0760317 -35557,7601:488,-18,68,0,0,0.0760172 -35558,7601:487,-17,68,0,0,0.0759307 -35559,7601:486,-16,68,0,0,0.0768441 -35560,7601:485,-15,68,0,0,0.0966047 -35561,7601:384,-14,68,0,0,0.125858 -35562,7601:383,-13,68,0,0,0.130881 -35563,7601:382,-12,68,0,0,0.1342 -35564,7601:381,-11,68,0,0,0.138323 -35565,7601:380,-10,68,0,0,0.137944 -35566,7600:489,-9,68,0,0,0.131349 -35567,7600:488,-8,68,0,0,0.123081 -35568,7600:485,-5,68,0,0,0.104923 -35569,7600:384,-4,68,0,0,0.117472 -35570,7600:383,-3,68,0,0,0.104808 -35571,7600:382,-2,68,0,0,0.0934331 -35572,7600:381,-1,68,0,0,0.104576 -35573,1600:381,0,68,0,0,0.121932 -35574,1600:381,1,68,0,0,0.130367 -35575,1600:382,2,68,0,0,0.136945 -35576,1600:383,3,68,0,0,0.140766 -35577,1600:384,4,68,0,0,0.135086 -35578,1600:485,5,68,0,0,0.141251 -35579,1600:486,6,68,0,0,0.132762 -35580,1600:487,7,68,0,0,0.126515 -35581,1600:488,8,68,0,0,0.125249 -35582,1600:489,9,68,0,0,0.116074 -35583,1601:380,10,68,0,0,0.109766 -35584,1601:381,11,68,0,0,0.110926 -35585,1601:382,12,68,0,0,0.117728 -35586,1601:383,13,68,0,0,0.123236 -35587,1601:384,14,68,0,0,0.120162 -35588,1601:485,15,68,0,0,0.122263 -35589,1601:486,16,68,0,0,0.123547 -35590,1601:487,17,68,0,0,0.105232 -35591,1601:488,18,68,0,0,0.0968831 -35592,1602:381,21,68,0,0,0.0781071 -35593,1602:382,22,68,0,0,0.0845602 -35594,1614:381,141,68,0,0,0.0786414 -35595,1614:382,142,68,0,0,0.0784333 -35596,1614:383,143,68,0,0,0.0781145 -35597,1614:384,144,68,0,0,0.0775833 -35598,1614:485,145,68,0,0,0.0769899 -35599,1614:486,146,68,0,0,0.0767638 -35600,1614:487,147,68,0,0,0.0767785 -35601,1614:488,148,68,0,0,0.0766983 -35602,1614:489,149,68,0,0,0.0766983 -35603,1615:380,150,68,0,0,0.0767347 -35604,1615:381,151,68,0,0,0.076713 -35605,1615:382,152,68,0,0,0.0766038 -35606,1615:383,153,68,0,0,0.076524 -35607,1615:384,154,68,0,0,0.0764803 -35608,1615:485,155,68,0,0,0.0764586 -35609,1615:486,156,68,0,0,0.0763933 -35610,1615:487,157,68,0,0,0.0763354 -35611,1615:488,158,68,0,0,0.0762702 -35612,1615:489,159,68,0,0,0.0761327 -35613,1616:380,160,68,0,0,0.0760245 -35614,1616:381,161,68,0,0,0.0759452 -35615,1616:382,162,68,0,0,0.0759307 -35616,1616:383,163,68,0,0,0.0759884 -35617,1616:384,164,68,0,0,0.0760099 -35618,1616:485,165,68,0,0,0.0759884 -35619,1616:486,166,68,0,0,0.0760172 -35620,1616:487,167,68,0,0,0.0761689 -35621,1616:488,168,68,0,0,0.0762702 -35622,1616:489,169,68,0,0,0.0762918 -35623,1617:380,170,68,0,0,0.0763064 -35624,1617:381,171,68,0,0,0.0763571 -35625,1617:382,172,68,0,0,0.0764006 -35626,1617:383,173,68,0,0,0.0764223 -35627,1617:384,174,68,0,0,0.076415 -35628,1617:485,175,68,0,0,0.0764006 -35629,1617:486,176,68,0,0,0.0764006 -35630,1617:487,177,68,0,0,0.0764006 -35631,1617:488,178,68,0,0,0.0764296 -35632,1617:489,179,68,0,0,0.0764659 -35633,1618:380,180,68,0,0,0.0764803 -35634,7618:390,-180,69,0,0,0.076524 -35635,7617:499,-179,69,0,0,0.0765313 -35636,7617:498,-178,69,0,0,0.0765313 -35637,7617:497,-177,69,0,0,0.0765603 -35638,7617:496,-176,69,0,0,0.0765893 -35639,7617:495,-175,69,0,0,0.0765603 -35640,7617:394,-174,69,0,0,0.0766257 -35641,7617:393,-173,69,0,0,0.0767494 -35642,7617:392,-172,69,0,0,0.0767638 -35643,7617:391,-171,69,0,0,0.0767347 -35644,7617:390,-170,69,0,0,0.0766839 -35645,7616:499,-169,69,0,0,0.0766257 -35646,7616:498,-168,69,0,0,0.0766038 -35647,7616:497,-167,69,0,0,0.0766328 -35648,7616:496,-166,69,0,0,0.0766257 -35649,7616:495,-165,69,0,0,0.0766184 -35650,7616:394,-164,69,0,0,0.0765893 -35651,7616:393,-163,69,0,0,0.0765457 -35652,7616:392,-162,69,0,0,0.0765166 -35653,7616:391,-161,69,0,0,0.0765457 -35654,7616:390,-160,69,0,0,0.076582 -35655,7615:499,-159,69,0,0,0.0765893 -35656,7615:498,-158,69,0,0,0.0766328 -35657,7615:497,-157,69,0,0,0.0766765 -35658,7615:496,-156,69,0,0,0.0766401 -35659,7615:495,-155,69,0,0,0.0765093 -35660,7615:394,-154,69,0,0,0.0763427 -35661,7615:393,-153,69,0,0,0.0765166 -35662,7615:392,-152,69,0,0,0.0764803 -35663,7615:391,-151,69,0,0,0.0763427 -35664,7615:390,-150,69,0,0,0.076524 -35665,7614:499,-149,69,0,0,0.0765022 -35666,7614:498,-148,69,0,0,0.0765893 -35667,7614:497,-147,69,0,0,0.0766184 -35668,7614:496,-146,69,0,0,0.0764079 -35669,7607:391,-71,69,0,0,0.0777084 -35670,7607:390,-70,69,0,0,0.0774071 -35671,7606:499,-69,69,0,0,0.0771873 -35672,7606:498,-68,69,0,0,0.0769607 -35673,7606:497,-67,69,0,0,0.0771067 -35674,7605:497,-57,69,0,0,0.0769607 -35675,7605:394,-54,69,0,0,0.0762775 -35676,7605:393,-53,69,0,0,0.0759091 -35677,7605:392,-52,69,0,0,0.0761978 -35678,7605:391,-51,69,0,0,0.0762629 -35679,7605:390,-50,69,0,0,0.0761183 -35680,7604:499,-49,69,0,0,0.076234 -35681,7604:498,-48,69,0,0,0.0763354 -35682,7604:497,-47,69,0,0,0.0766475 -35683,7602:391,-21,69,0,0,0.0763354 -35684,7602:390,-20,69,0,0,0.0761327 -35685,7601:499,-19,69,0,0,0.0760749 -35686,7601:498,-18,69,0,0,0.0760967 -35687,7601:497,-17,69,0,0,0.0759668 -35688,7601:496,-16,69,0,0,0.0777747 -35689,7601:495,-15,69,0,0,0.108647 -35690,7601:394,-14,69,0,0,0.10637 -35691,7601:393,-13,69,0,0,0.116369 -35692,7601:392,-12,69,0,0,0.123414 -35693,7601:391,-11,69,0,0,0.12863 -35694,7600:496,-6,69,0,0,0.0882168 -35695,7600:495,-5,69,0,0,0.0864561 -35696,7600:394,-4,69,0,0,0.0860432 -35697,7600:393,-3,69,0,0,0.0975774 -35698,7600:392,-2,69,0,0,0.0852147 -35699,7600:391,-1,69,0,0,0.111109 -35700,1600:391,0,69,0,0,0.120227 -35701,1600:391,1,69,0,0,0.127838 -35702,1600:392,2,69,0,0,0.134918 -35703,1600:393,3,69,0,0,0.125779 -35704,1600:394,4,69,0,0,0.117036 -35705,1600:495,5,69,0,0,0.13268 -35706,1600:496,6,69,0,0,0.127106 -35707,1600:497,7,69,0,0,0.116232 -35708,1600:498,8,69,0,0,0.118413 -35709,1600:499,9,69,0,0,0.111058 -35710,1601:390,10,69,0,0,0.105736 -35711,1601:391,11,69,0,0,0.111546 -35712,1601:392,12,69,0,0,0.117942 -35713,1601:393,13,69,0,0,0.121012 -35714,1601:394,14,69,0,0,0.112815 -35715,1601:495,15,69,0,0,0.111862 -35716,1601:496,16,69,0,0,0.115916 -35717,1601:497,17,69,0,0,0.114148 -35718,1601:498,18,69,0,0,0.105107 -35719,1601:499,19,69,0,0,0.104442 -35720,1602:390,20,69,0,0,0.0981308 -35721,1602:391,21,69,0,0,0.0957386 -35722,1614:391,141,69,0,0,0.0797503 -35723,1614:392,142,69,0,0,0.0793366 -35724,1614:393,143,69,0,0,0.0778116 -35725,1614:394,144,69,0,0,0.0769097 -35726,1614:495,145,69,0,0,0.0767567 -35727,1614:496,146,69,0,0,0.0769024 -35728,1614:497,147,69,0,0,0.0771215 -35729,1614:498,148,69,0,0,0.0772092 -35730,1614:499,149,69,0,0,0.0769973 -35731,1615:390,150,69,0,0,0.0766548 -35732,1615:391,151,69,0,0,0.0764659 -35733,1615:392,152,69,0,0,0.0765093 -35734,1615:393,153,69,0,0,0.0765384 -35735,1615:394,154,69,0,0,0.0765093 -35736,1615:495,155,69,0,0,0.0763933 -35737,1615:496,156,69,0,0,0.0761978 -35738,1615:497,157,69,0,0,0.0760895 -35739,1615:498,158,69,0,0,0.0759811 -35740,1615:499,159,69,0,0,0.0758586 -35741,1616:390,160,69,0,0,0.0758225 -35742,1616:391,161,69,0,0,0.075837 -35743,1616:392,162,69,0,0,0.0758946 -35744,1616:393,163,69,0,0,0.0759452 -35745,1616:394,164,69,0,0,0.0760029 -35746,1616:495,165,69,0,0,0.0760679 -35747,1616:496,166,69,0,0,0.0761472 -35748,1616:497,167,69,0,0,0.0762485 -35749,1616:498,168,69,0,0,0.0762702 -35750,1616:499,169,69,0,0,0.0762775 -35751,1617:390,170,69,0,0,0.0762991 -35752,1617:391,171,69,0,0,0.0763208 -35753,1617:392,172,69,0,0,0.0763643 -35754,1617:393,173,69,0,0,0.0763933 -35755,1617:394,174,69,0,0,0.076386 -35756,1617:495,175,69,0,0,0.0763933 -35757,1617:496,176,69,0,0,0.076415 -35758,1617:497,177,69,0,0,0.0764442 -35759,1617:498,178,69,0,0,0.0764949 -35760,1617:499,179,69,0,0,0.0765093 -35761,1618:390,180,69,0,0,0.076524 -35762,7718:100,-180,70,0,0,0.0765747 -35763,7717:209,-179,70,0,0,0.0765747 -35764,7717:208,-178,70,0,0,0.0765893 -35765,7717:207,-177,70,0,0,0.0766257 -35766,7717:206,-176,70,0,0,0.0766401 -35767,7717:205,-175,70,0,0,0.0766401 -35768,7717:104,-174,70,0,0,0.0766621 -35769,7717:103,-173,70,0,0,0.076713 -35770,7717:102,-172,70,0,0,0.0766839 -35771,7717:101,-171,70,0,0,0.0766475 -35772,7717:100,-170,70,0,0,0.0766328 -35773,7716:209,-169,70,0,0,0.0766111 -35774,7716:208,-168,70,0,0,0.0765747 -35775,7716:207,-167,70,0,0,0.0766038 -35776,7716:206,-166,70,0,0,0.0766401 -35777,7716:205,-165,70,0,0,0.0766184 -35778,7716:104,-164,70,0,0,0.0765967 -35779,7716:103,-163,70,0,0,0.0765166 -35780,7716:102,-162,70,0,0,0.0764876 -35781,7716:101,-161,70,0,0,0.0764949 -35782,7716:100,-160,70,0,0,0.0764803 -35783,7715:209,-159,70,0,0,0.0764732 -35784,7715:208,-158,70,0,0,0.0764876 -35785,7715:207,-157,70,0,0,0.0765457 -35786,7715:206,-156,70,0,0,0.076553 -35787,7715:205,-155,70,0,0,0.0764949 -35788,7715:104,-154,70,0,0,0.0763933 -35789,7715:103,-153,70,0,0,0.0764223 -35790,7715:102,-152,70,0,0,0.0765384 -35791,7715:101,-151,70,0,0,0.0766692 -35792,7715:100,-150,70,0,0,0.076713 -35793,7714:209,-149,70,0,0,0.0767203 -35794,7714:208,-148,70,0,0,0.0766912 -35795,7714:207,-147,70,0,0,0.0766475 -35796,7714:206,-146,70,0,0,0.0767929 -35797,7714:205,-145,70,0,0,0.0768367 -35798,7707:100,-70,70,0,0,0.0769973 -35799,7706:209,-69,70,0,0,0.0770922 -35800,7706:208,-68,70,0,0,0.0769534 -35801,7706:207,-67,70,0,0,0.0769315 -35802,7706:205,-65,70,0,0,0.0764876 -35803,7706:102,-62,70,0,0,0.0774878 -35804,7705:206,-56,70,0,0,0.0768659 -35805,7705:205,-55,70,0,0,0.0765166 -35806,7705:104,-54,70,0,0,0.07614 -35807,7705:103,-53,70,0,0,0.0760172 -35808,7705:102,-52,70,0,0,0.0759307 -35809,7705:101,-51,70,0,0,0.0759162 -35810,7705:100,-50,70,0,0,0.0760029 -35811,7704:209,-49,70,0,0,0.0760895 -35812,7704:208,-48,70,0,0,0.076046 -35813,7704:207,-47,70,0,0,0.0766475 -35814,7704:206,-46,70,0,0,0.0777527 -35815,7702:100,-20,70,0,0,0.0760749 -35816,7701:209,-19,70,0,0,0.0760822 -35817,7701:208,-18,70,0,0,0.0761472 -35818,7701:207,-17,70,0,0,0.0758443 -35819,7701:206,-16,70,0,0,0.0807435 -35820,7701:205,-15,70,0,0,0.116962 -35821,7701:104,-14,70,0,0,0.121526 -35822,7701:103,-13,70,0,0,0.1249 -35823,7701:102,-12,70,0,0,0.127895 -35824,7700:104,-4,70,0,0,0.0790967 -35825,7700:103,-3,70,0,0,0.0843219 -35826,7700:102,-2,70,0,0,0.0853509 -35827,7700:101,-1,70,0,0,0.113278 -35828,1700:101,0,70,0,0,0.12286 -35829,1700:101,1,70,0,0,0.128124 -35830,1700:102,2,70,0,0,0.131889 -35831,1700:103,3,70,0,0,0.11266 -35832,1700:104,4,70,0,0,0.105465 -35833,1700:205,5,70,0,0,0.118231 -35834,1700:206,6,70,0,0,0.105504 -35835,1700:207,7,70,0,0,0.100921 -35836,1700:208,8,70,0,0,0.0992825 -35837,1700:209,9,70,0,0,0.103408 -35838,1701:100,10,70,0,0,0.108697 -35839,1701:101,11,70,0,0,0.115548 -35840,1701:102,12,70,0,0,0.118467 -35841,1701:103,13,70,0,0,0.117568 -35842,1701:104,14,70,0,0,0.11224 -35843,1701:205,15,70,0,0,0.115045 -35844,1701:206,16,70,0,0,0.111322 -35845,1701:207,17,70,0,0,0.109937 -35846,1701:208,18,70,0,0,0.0972521 -35847,1702:101,21,70,0,0,0.0910079 -35848,1714:205,145,70,0,0,0.0770704 -35849,1714:206,146,70,0,0,0.0771654 -35850,1714:207,147,70,0,0,0.0773559 -35851,1714:208,148,70,0,0,0.0771726 -35852,1714:209,149,70,0,0,0.0766111 -35853,1715:100,150,70,0,0,0.0761689 -35854,1715:101,151,70,0,0,0.0760606 -35855,1715:102,152,70,0,0,0.0759379 -35856,1715:103,153,70,0,0,0.0759379 -35857,1715:104,154,70,0,0,0.0759379 -35858,1715:205,155,70,0,0,0.0758515 -35859,1715:206,156,70,0,0,0.0758082 -35860,1715:207,157,70,0,0,0.0758082 -35861,1715:208,158,70,0,0,0.0758298 -35862,1715:209,159,70,0,0,0.0758515 -35863,1716:100,160,70,0,0,0.0758658 -35864,1716:101,161,70,0,0,0.0759884 -35865,1716:102,162,70,0,0,0.0760317 -35866,1716:103,163,70,0,0,0.0760967 -35867,1716:104,164,70,0,0,0.076205 -35868,1716:205,165,70,0,0,0.076234 -35869,1716:206,166,70,0,0,0.0762413 -35870,1716:207,167,70,0,0,0.0762558 -35871,1716:208,168,70,0,0,0.0762558 -35872,1716:209,169,70,0,0,0.0762629 -35873,1717:100,170,70,0,0,0.0762991 -35874,1717:101,171,70,0,0,0.0763281 -35875,1717:102,172,70,0,0,0.0763643 -35876,1717:103,173,70,0,0,0.0763643 -35877,1717:104,174,70,0,0,0.0763716 -35878,1717:205,175,70,0,0,0.0763933 -35879,1717:206,176,70,0,0,0.0764223 -35880,1717:207,177,70,0,0,0.0764442 -35881,1717:208,178,70,0,0,0.0764659 -35882,1717:209,179,70,0,0,0.0765384 -35883,1718:100,180,70,0,0,0.0765747 -35884,7718:110,-180,71,0,0,0.0765893 -35885,7717:219,-179,71,0,0,0.0766111 -35886,7717:218,-178,71,0,0,0.0765967 -35887,7717:217,-177,71,0,0,0.0765967 -35888,7717:216,-176,71,0,0,0.0766401 -35889,7717:215,-175,71,0,0,0.0766548 -35890,7717:114,-174,71,0,0,0.0766621 -35891,7717:113,-173,71,0,0,0.0766257 -35892,7717:112,-172,71,0,0,0.0765747 -35893,7717:111,-171,71,0,0,0.0766038 -35894,7717:110,-170,71,0,0,0.0766912 -35895,7716:219,-169,71,0,0,0.0766839 -35896,7716:218,-168,71,0,0,0.0766111 -35897,7716:217,-167,71,0,0,0.076582 -35898,7716:216,-166,71,0,0,0.0766111 -35899,7716:215,-165,71,0,0,0.0766111 -35900,7716:114,-164,71,0,0,0.0765603 -35901,7716:113,-163,71,0,0,0.0765093 -35902,7716:112,-162,71,0,0,0.0764949 -35903,7716:111,-161,71,0,0,0.0764803 -35904,7716:110,-160,71,0,0,0.0764586 -35905,7715:219,-159,71,0,0,0.0764586 -35906,7715:218,-158,71,0,0,0.0764732 -35907,7715:217,-157,71,0,0,0.0765166 -35908,7715:216,-156,71,0,0,0.0765676 -35909,7715:215,-155,71,0,0,0.0765313 -35910,7715:114,-154,71,0,0,0.0763716 -35911,7715:113,-153,71,0,0,0.0763716 -35912,7715:112,-152,71,0,0,0.0759523 -35913,7715:111,-151,71,0,0,0.0762485 -35914,7715:110,-150,71,0,0,0.0765967 -35915,7714:219,-149,71,0,0,0.0767056 -35916,7714:218,-148,71,0,0,0.0767347 -35917,7714:217,-147,71,0,0,0.0766401 -35918,7714:216,-146,71,0,0,0.076742 -35919,7714:215,-145,71,0,0,0.0767567 -35920,7714:114,-144,71,0,0,0.0771726 -35921,7707:218,-78,71,0,0,0.0860837 -35922,7707:217,-77,71,0,0,0.0854472 -35923,7707:216,-76,71,0,0,0.0847193 -35924,7707:215,-75,71,0,0,0.0841236 -35925,7707:114,-74,71,0,0,0.083367 -35926,7707:110,-70,71,0,0,0.0770849 -35927,7706:218,-68,71,0,0,0.0769899 -35928,7706:217,-67,71,0,0,0.0768367 -35929,7706:216,-66,71,0,0,0.0768149 -35930,7706:110,-60,71,0,0,0.0769899 -35931,7705:219,-59,71,0,0,0.0769315 -35932,7705:218,-58,71,0,0,0.076895 -35933,7705:217,-57,71,0,0,0.0769754 -35934,7705:216,-56,71,0,0,0.0768294 -35935,7705:215,-55,71,0,0,0.076386 -35936,7705:112,-52,71,0,0,0.0770775 -35937,7705:111,-51,71,0,0,0.0766983 -35938,7705:110,-50,71,0,0,0.0764369 -35939,7704:219,-49,71,0,0,0.0762848 -35940,7704:218,-48,71,0,0,0.0761111 -35941,7704:217,-47,71,0,0,0.07635 -35942,7704:216,-46,71,0,0,0.077297 -35943,7704:215,-45,71,0,0,0.0771654 -35944,7702:113,-23,71,0,0,0.0764442 -35945,7702:112,-22,71,0,0,0.0763571 -35946,7702:110,-20,71,0,0,0.0761327 -35947,7701:219,-19,71,0,0,0.0761834 -35948,7701:218,-18,71,0,0,0.0759884 -35949,7701:217,-17,71,0,0,0.0762267 -35950,7701:216,-16,71,0,0,0.0789247 -35951,7701:215,-15,71,0,0,0.0824607 -35952,7701:114,-14,71,0,0,0.0817328 -35953,7701:113,-13,71,0,0,0.0874021 -35954,7701:112,-12,71,0,0,0.116686 -35955,7701:111,-11,71,0,0,0.111058 -35956,7701:110,-10,71,0,0,0.103408 -35957,7700:217,-7,71,0,0,0.0763933 -35958,7700:216,-6,71,0,0,0.0762918 -35959,7700:215,-5,71,0,0,0.0762267 -35960,7700:114,-4,71,0,0,0.0763427 -35961,7700:113,-3,71,0,0,0.076386 -35962,7700:112,-2,71,0,0,0.0810109 -35963,7700:111,-1,71,0,0,0.102073 -35964,1700:111,0,71,0,0,0.0920502 -35965,1700:111,1,71,0,0,0.100418 -35966,1700:112,2,71,0,0,0.120303 -35967,1700:113,3,71,0,0,0.114055 -35968,1700:114,4,71,0,0,0.10819 -35969,1700:215,5,71,0,0,0.100205 -35970,1700:216,6,71,0,0,0.0947292 -35971,1700:217,7,71,0,0,0.0982218 -35972,1700:218,8,71,0,0,0.098998 -35973,1700:219,9,71,0,0,0.101098 -35974,1701:110,10,71,0,0,0.102318 -35975,1701:111,11,71,0,0,0.109786 -35976,1701:112,12,71,0,0,0.11365 -35977,1701:113,13,71,0,0,0.117259 -35978,1701:114,14,71,0,0,0.102007 -35979,1701:215,15,71,0,0,0.107252 -35980,1701:216,16,71,0,0,0.110784 -35981,1701:217,17,71,0,0,0.104154 -35982,1701:218,18,71,0,0,0.0975595 -35983,1701:219,19,71,0,0,0.0907786 -35984,1702:110,20,71,0,0,0.0880518 -35985,1702:111,21,71,0,0,0.0822122 -35986,1714:216,146,71,0,0,0.0775394 -35987,1714:217,147,71,0,0,0.0772678 -35988,1714:218,148,71,0,0,0.0766401 -35989,1714:219,149,71,0,0,0.075686 -35990,1715:110,150,71,0,0,0.0759162 -35991,1715:111,151,71,0,0,0.0758803 -35992,1715:112,152,71,0,0,0.075758 -35993,1715:113,153,71,0,0,0.075765 -35994,1715:114,154,71,0,0,0.075765 -35995,1715:215,155,71,0,0,0.0757362 -35996,1715:216,156,71,0,0,0.0757362 -35997,1715:217,157,71,0,0,0.075765 -35998,1715:218,158,71,0,0,0.0758298 -35999,1715:219,159,71,0,0,0.0759452 -36000,1716:110,160,71,0,0,0.0760895 -36001,1716:111,161,71,0,0,0.076205 -36002,1716:112,162,71,0,0,0.0762413 -36003,1716:113,163,71,0,0,0.0762558 -36004,1716:114,164,71,0,0,0.0762558 -36005,1716:215,165,71,0,0,0.0762558 -36006,1716:216,166,71,0,0,0.0762558 -36007,1716:217,167,71,0,0,0.0762629 -36008,1716:218,168,71,0,0,0.0762558 -36009,1716:219,169,71,0,0,0.0762629 -36010,1717:110,170,71,0,0,0.0762848 -36011,1717:111,171,71,0,0,0.0763137 -36012,1717:112,172,71,0,0,0.0763354 -36013,1717:113,173,71,0,0,0.07635 -36014,1717:114,174,71,0,0,0.0763571 -36015,1717:215,175,71,0,0,0.0763643 -36016,1717:216,176,71,0,0,0.0763716 -36017,1717:217,177,71,0,0,0.076386 -36018,1717:218,178,71,0,0,0.0764079 -36019,1717:219,179,71,0,0,0.0765022 -36020,1718:110,180,71,0,0,0.0765893 -36021,7718:120,-180,72,0,0,0.0764876 -36022,7717:229,-179,72,0,0,0.0765676 -36023,7717:228,-178,72,0,0,0.0765747 -36024,7717:227,-177,72,0,0,0.0766111 -36025,7717:226,-176,72,0,0,0.0766184 -36026,7717:225,-175,72,0,0,0.0766184 -36027,7717:124,-174,72,0,0,0.0766328 -36028,7717:123,-173,72,0,0,0.0766328 -36029,7717:122,-172,72,0,0,0.0766257 -36030,7717:121,-171,72,0,0,0.0766475 -36031,7717:120,-170,72,0,0,0.0766401 -36032,7716:229,-169,72,0,0,0.0766475 -36033,7716:228,-168,72,0,0,0.0766692 -36034,7716:227,-167,72,0,0,0.0766111 -36035,7716:226,-166,72,0,0,0.0766038 -36036,7716:225,-165,72,0,0,0.0766038 -36037,7716:124,-164,72,0,0,0.0765384 -36038,7716:123,-163,72,0,0,0.0764876 -36039,7716:122,-162,72,0,0,0.0764659 -36040,7716:121,-161,72,0,0,0.0764442 -36041,7716:120,-160,72,0,0,0.0764442 -36042,7715:229,-159,72,0,0,0.0764803 -36043,7715:228,-158,72,0,0,0.0765893 -36044,7715:227,-157,72,0,0,0.0766692 -36045,7715:226,-156,72,0,0,0.0765747 -36046,7715:225,-155,72,0,0,0.0763789 -36047,7715:124,-154,72,0,0,0.076524 -36048,7715:123,-153,72,0,0,0.075722 -36049,7714:227,-147,72,0,0,0.0766475 -36050,7714:226,-146,72,0,0,0.0765893 -36051,7714:225,-145,72,0,0,0.0767494 -36052,7714:124,-144,72,0,0,0.0766839 -36053,7714:123,-143,72,0,0,0.0766475 -36054,7714:122,-142,72,0,0,0.0768806 -36055,7707:226,-76,72,0,0,0.0835713 -36056,7707:225,-75,72,0,0,0.0823597 -36057,7707:124,-74,72,0,0,0.0807666 -36058,7707:123,-73,72,0,0,0.080128 -36059,7707:122,-72,72,0,0,0.0792016 -36060,7706:228,-68,72,0,0,0.0770409 -36061,7706:227,-67,72,0,0,0.0769242 -36062,7706:226,-66,72,0,0,0.0768221 -36063,7706:225,-65,72,0,0,0.0767858 -36064,7706:124,-64,72,0,0,0.0767347 -36065,7705:227,-57,72,0,0,0.0769462 -36066,7705:226,-56,72,0,0,0.0765676 -36067,7705:121,-51,72,0,0,0.0769754 -36068,7704:228,-48,72,0,0,0.076386 -36069,7704:227,-47,72,0,0,0.076234 -36070,7704:226,-46,72,0,0,0.0762196 -36071,7704:225,-45,72,0,0,0.0762918 -36072,7704:123,-43,72,0,0,0.0763354 -36073,7704:122,-42,72,0,0,0.0762413 -36074,7704:121,-41,72,0,0,0.0762196 -36075,7704:120,-40,72,0,0,0.0761978 -36076,7702:123,-23,72,0,0,0.0762702 -36077,7702:122,-22,72,0,0,0.0762196 -36078,7702:121,-21,72,0,0,0.0761978 -36079,7702:120,-20,72,0,0,0.0761978 -36080,7701:229,-19,72,0,0,0.0759956 -36081,7701:228,-18,72,0,0,0.0756715 -36082,7701:227,-17,72,0,0,0.0755065 -36083,7701:226,-16,72,0,0,0.0755567 -36084,7701:225,-15,72,0,0,0.0762848 -36085,7701:124,-14,72,0,0,0.077657 -36086,7701:123,-13,72,0,0,0.0926529 -36087,7701:122,-12,72,0,0,0.109405 -36088,7701:121,-11,72,0,0,0.117568 -36089,7701:120,-10,72,0,0,0.0980126 -36090,7700:229,-9,72,0,0,0.0794567 -36091,7700:226,-6,72,0,0,0.076895 -36092,7700:225,-5,72,0,0,0.0767858 -36093,7700:124,-4,72,0,0,0.0770409 -36094,7700:123,-3,72,0,0,0.0787009 -36095,7700:122,-2,72,0,0,0.0943773 -36096,7700:121,-1,72,0,0,0.0821968 -36097,1700:121,0,72,0,0,0.084576 -36098,1700:121,1,72,0,0,0.0831081 -36099,1700:122,2,72,0,0,0.0907532 -36100,1700:123,3,72,0,0,0.111109 -36101,1700:124,4,72,0,0,0.105329 -36102,1700:225,5,72,0,0,0.105029 -36103,1700:226,6,72,0,0,0.102337 -36104,1700:227,7,72,0,0,0.100921 -36105,1700:228,8,72,0,0,0.105262 -36106,1700:229,9,72,0,0,0.105358 -36107,1701:120,10,72,0,0,0.107095 -36108,1701:121,11,72,0,0,0.108647 -36109,1701:122,12,72,0,0,0.115233 -36110,1701:123,13,72,0,0,0.113278 -36111,1701:124,14,72,0,0,0.103542 -36112,1701:225,15,72,0,0,0.103532 -36113,1701:226,16,72,0,0,0.096068 -36114,1701:227,17,72,0,0,0.0952857 -36115,1701:228,18,72,0,0,0.0962288 -36116,1701:229,19,72,0,0,0.0928518 -36117,1702:120,20,72,0,0,0.0857124 -36118,1702:121,21,72,0,0,0.0798634 -36119,1702:123,23,72,0,0,0.0823131 -36120,1714:124,144,72,0,0,0.0771067 -36121,1714:225,145,72,0,0,0.0775465 -36122,1714:226,146,72,0,0,0.0773337 -36123,1714:227,147,72,0,0,0.0769462 -36124,1714:228,148,72,0,0,0.0760967 -36125,1714:229,149,72,0,0,0.075442 -36126,1715:120,150,72,0,0,0.0756932 -36127,1715:121,151,72,0,0,0.0757722 -36128,1715:122,152,72,0,0,0.0756068 -36129,1715:123,153,72,0,0,0.0755352 -36130,1715:124,154,72,0,0,0.0756141 -36131,1715:225,155,72,0,0,0.0757002 -36132,1715:226,156,72,0,0,0.0758155 -36133,1715:227,157,72,0,0,0.0758946 -36134,1715:228,158,72,0,0,0.0759452 -36135,1715:229,159,72,0,0,0.0759668 -36136,1716:120,160,72,0,0,0.076046 -36137,1716:121,161,72,0,0,0.0761327 -36138,1716:122,162,72,0,0,0.0762123 -36139,1716:123,163,72,0,0,0.0762558 -36140,1716:124,164,72,0,0,0.0762558 -36141,1716:225,165,72,0,0,0.0762485 -36142,1716:226,166,72,0,0,0.0762413 -36143,1716:227,167,72,0,0,0.0762413 -36144,1716:228,168,72,0,0,0.0762413 -36145,1716:229,169,72,0,0,0.0762629 -36146,1717:120,170,72,0,0,0.0762848 -36147,1717:121,171,72,0,0,0.0763137 -36148,1717:122,172,72,0,0,0.0763281 -36149,1717:123,173,72,0,0,0.0763354 -36150,1717:124,174,72,0,0,0.0763427 -36151,1717:225,175,72,0,0,0.07635 -36152,1717:226,176,72,0,0,0.07635 -36153,1717:227,177,72,0,0,0.0763354 -36154,1717:228,178,72,0,0,0.07635 -36155,1717:229,179,72,0,0,0.0764006 -36156,1718:120,180,72,0,0,0.0764876 -36157,7718:130,-180,73,0,0,0.0764442 -36158,7717:239,-179,73,0,0,0.0764949 -36159,7717:238,-178,73,0,0,0.0765093 -36160,7717:237,-177,73,0,0,0.0765313 -36161,7717:236,-176,73,0,0,0.076582 -36162,7717:235,-175,73,0,0,0.0766038 -36163,7717:134,-174,73,0,0,0.0766111 -36164,7717:133,-173,73,0,0,0.0766184 -36165,7717:132,-172,73,0,0,0.0766184 -36166,7717:131,-171,73,0,0,0.0766328 -36167,7717:130,-170,73,0,0,0.0766401 -36168,7716:239,-169,73,0,0,0.0766621 -36169,7716:238,-168,73,0,0,0.0766548 -36170,7716:237,-167,73,0,0,0.0766257 -36171,7716:236,-166,73,0,0,0.0766328 -36172,7716:235,-165,73,0,0,0.0765893 -36173,7716:134,-164,73,0,0,0.0765166 -36174,7716:133,-163,73,0,0,0.0764949 -36175,7716:132,-162,73,0,0,0.0764442 -36176,7716:131,-161,73,0,0,0.076415 -36177,7716:130,-160,73,0,0,0.076415 -36178,7715:239,-159,73,0,0,0.0764803 -36179,7715:238,-158,73,0,0,0.0766328 -36180,7715:237,-157,73,0,0,0.0766621 -36181,7715:236,-156,73,0,0,0.0766111 -36182,7715:235,-155,73,0,0,0.0759595 -36183,7715:134,-154,73,0,0,0.0755854 -36184,7714:237,-147,73,0,0,0.0768659 -36185,7714:236,-146,73,0,0,0.0767347 -36186,7714:235,-145,73,0,0,0.0765603 -36187,7714:134,-144,73,0,0,0.0766983 -36188,7714:133,-143,73,0,0,0.0767712 -36189,7714:132,-142,73,0,0,0.0766765 -36190,7714:131,-141,73,0,0,0.076524 -36191,7714:130,-140,73,0,0,0.0769754 -36192,7707:133,-73,73,0,0,0.0790369 -36193,7707:132,-72,73,0,0,0.0784405 -36194,7706:236,-66,73,0,0,0.0769315 -36195,7706:235,-65,73,0,0,0.0769462 -36196,7706:134,-64,73,0,0,0.0769825 -36197,7706:133,-63,73,0,0,0.0770264 -36198,7706:132,-62,73,0,0,0.0769899 -36199,7706:131,-61,73,0,0,0.0769754 -36200,7706:130,-60,73,0,0,0.0769681 -36201,7705:239,-59,73,0,0,0.0769534 -36202,7705:238,-58,73,0,0,0.0769097 -36203,7705:237,-57,73,0,0,0.0768806 -36204,7705:133,-53,73,0,0,0.0768076 -36205,7705:132,-52,73,0,0,0.0767567 -36206,7704:134,-44,73,0,0,0.07635 -36207,7704:133,-43,73,0,0,0.0762558 -36208,7704:132,-42,73,0,0,0.0762267 -36209,7704:131,-41,73,0,0,0.0762558 -36210,7704:130,-40,73,0,0,0.076205 -36211,7703:239,-39,73,0,0,0.0762123 -36212,7703:236,-36,73,0,0,0.0762558 -36213,7703:132,-32,73,0,0,0.0763789 -36214,7703:131,-31,73,0,0,0.0763354 -36215,7702:134,-24,73,0,0,0.076234 -36216,7702:133,-23,73,0,0,0.0762123 -36217,7702:132,-22,73,0,0,0.076205 -36218,7702:131,-21,73,0,0,0.0761256 -36219,7702:130,-20,73,0,0,0.0760606 -36220,7701:239,-19,73,0,0,0.0759234 -36221,7701:238,-18,73,0,0,0.075686 -36222,7701:237,-17,73,0,0,0.0755065 -36223,7701:236,-16,73,0,0,0.0754348 -36224,7701:235,-15,73,0,0,0.0755065 -36225,7701:134,-14,73,0,0,0.0764586 -36226,7701:133,-13,73,0,0,0.0788053 -36227,7701:132,-12,73,0,0,0.0884155 -36228,7701:131,-11,73,0,0,0.113537 -36229,7701:130,-10,73,0,0,0.114752 -36230,7700:239,-9,73,0,0,0.0945181 -36231,7700:238,-8,73,0,0,0.0860351 -36232,7700:237,-7,73,0,0,0.0841159 -36233,7700:236,-6,73,0,0,0.0820805 -36234,7700:235,-5,73,0,0,0.077451 -36235,7700:134,-4,73,0,0,0.077363 -36236,7700:133,-3,73,0,0,0.0785744 -36237,7700:132,-2,73,0,0,0.0813711 -36238,7700:131,-1,73,0,0,0.079284 -36239,1700:131,0,73,0,0,0.0800449 -36240,1700:131,1,73,0,0,0.0808276 -36241,1700:132,2,73,0,0,0.0866917 -36242,1700:133,3,73,0,0,0.0925235 -36243,1700:134,4,73,0,0,0.105078 -36244,1700:235,5,73,0,0,0.104615 -36245,1700:236,6,73,0,0,0.106467 -36246,1700:237,7,73,0,0,0.109095 -36247,1700:238,8,73,0,0,0.109666 -36248,1700:239,9,73,0,0,0.107893 -36249,1701:130,10,73,0,0,0.108826 -36250,1701:131,11,73,0,0,0.109706 -36251,1701:132,12,73,0,0,0.114491 -36252,1701:133,13,73,0,0,0.108081 -36253,1701:134,14,73,0,0,0.0931552 -36254,1701:237,17,73,0,0,0.0837997 -36255,1701:238,18,73,0,0,0.0906516 -36256,1701:239,19,73,0,0,0.092463 -36257,1702:130,20,73,0,0,0.0852306 -36258,1702:131,21,73,0,0,0.077974 -36259,1702:132,22,73,0,0,0.0769534 -36260,1714:235,145,73,0,0,0.0773998 -36261,1714:236,146,73,0,0,0.0769607 -36262,1714:237,147,73,0,0,0.0757362 -36263,1714:238,148,73,0,0,0.0756645 -36264,1714:239,149,73,0,0,0.075442 -36265,1715:130,150,73,0,0,0.0755781 -36266,1715:131,151,73,0,0,0.0756285 -36267,1715:132,152,73,0,0,0.0754706 -36268,1715:133,153,73,0,0,0.075442 -36269,1715:134,154,73,0,0,0.0755207 -36270,1715:235,155,73,0,0,0.0756068 -36271,1715:236,156,73,0,0,0.075686 -36272,1715:237,157,73,0,0,0.0758155 -36273,1715:238,158,73,0,0,0.0759595 -36274,1715:239,159,73,0,0,0.0760245 -36275,1716:130,160,73,0,0,0.0760749 -36276,1716:131,161,73,0,0,0.0761183 -36277,1716:132,162,73,0,0,0.0761761 -36278,1716:133,163,73,0,0,0.0762123 -36279,1716:134,164,73,0,0,0.0761978 -36280,1716:235,165,73,0,0,0.0761907 -36281,1716:236,166,73,0,0,0.0761834 -36282,1716:237,167,73,0,0,0.0761761 -36283,1716:238,168,73,0,0,0.0761978 -36284,1716:239,169,73,0,0,0.076234 -36285,1717:130,170,73,0,0,0.0762629 -36286,1717:131,171,73,0,0,0.0762918 -36287,1717:132,172,73,0,0,0.0763064 -36288,1717:133,173,73,0,0,0.0762991 -36289,1717:134,174,73,0,0,0.0763064 -36290,1717:235,175,73,0,0,0.0763137 -36291,1717:236,176,73,0,0,0.0763281 -36292,1717:237,177,73,0,0,0.0763427 -36293,1717:238,178,73,0,0,0.0763716 -36294,1717:239,179,73,0,0,0.076415 -36295,1718:130,180,73,0,0,0.0764442 -36296,7718:140,-180,74,0,0,0.0764369 -36297,7717:249,-179,74,0,0,0.0764369 -36298,7717:248,-178,74,0,0,0.0764513 -36299,7717:247,-177,74,0,0,0.0764803 -36300,7717:246,-176,74,0,0,0.0765093 -36301,7717:245,-175,74,0,0,0.0765313 -36302,7717:144,-174,74,0,0,0.0765603 -36303,7717:143,-173,74,0,0,0.0765676 -36304,7717:142,-172,74,0,0,0.0765603 -36305,7717:141,-171,74,0,0,0.0765384 -36306,7717:140,-170,74,0,0,0.0765384 -36307,7716:249,-169,74,0,0,0.076553 -36308,7716:248,-168,74,0,0,0.0766257 -36309,7716:247,-167,74,0,0,0.0766401 -36310,7716:246,-166,74,0,0,0.0766184 -36311,7716:245,-165,74,0,0,0.0765603 -36312,7716:144,-164,74,0,0,0.0764949 -36313,7716:143,-163,74,0,0,0.0764586 -36314,7716:142,-162,74,0,0,0.0764223 -36315,7716:141,-161,74,0,0,0.0764006 -36316,7716:140,-160,74,0,0,0.0764223 -36317,7715:249,-159,74,0,0,0.0765603 -36318,7715:248,-158,74,0,0,0.0766328 -36319,7715:247,-157,74,0,0,0.0766038 -36320,7714:249,-149,74,0,0,0.076895 -36321,7714:248,-148,74,0,0,0.0771067 -36322,7714:247,-147,74,0,0,0.0769681 -36323,7714:246,-146,74,0,0,0.0769462 -36324,7714:245,-145,74,0,0,0.0766765 -36325,7714:144,-144,74,0,0,0.0768514 -36326,7714:143,-143,74,0,0,0.0769242 -36327,7714:140,-140,74,0,0,0.0767567 -36328,7713:249,-139,74,0,0,0.0773559 -36329,7713:245,-135,74,0,0,0.077937 -36330,7707:249,-79,74,0,0,0.0797126 -36331,7707:248,-78,74,0,0,0.0804088 -36332,7707:247,-77,74,0,0,0.0808887 -36333,7707:142,-72,74,0,0,0.0779814 -36334,7706:245,-65,74,0,0,0.0769242 -36335,7706:144,-64,74,0,0,0.0770046 -36336,7706:143,-63,74,0,0,0.0770849 -36337,7705:249,-59,74,0,0,0.0769168 -36338,7705:248,-58,74,0,0,0.0769024 -36339,7705:144,-54,74,0,0,0.0766401 -36340,7705:143,-53,74,0,0,0.0766475 -36341,7703:247,-37,74,0,0,0.0762918 -36342,7703:245,-35,74,0,0,0.0762629 -36343,7703:144,-34,74,0,0,0.0762196 -36344,7703:143,-33,74,0,0,0.076234 -36345,7703:142,-32,74,0,0,0.076234 -36346,7703:141,-31,74,0,0,0.0762991 -36347,7703:140,-30,74,0,0,0.0762775 -36348,7702:249,-29,74,0,0,0.0762485 -36349,7702:248,-28,74,0,0,0.0762267 -36350,7702:247,-27,74,0,0,0.0762123 -36351,7702:246,-26,74,0,0,0.076205 -36352,7702:245,-25,74,0,0,0.076205 -36353,7702:144,-24,74,0,0,0.0762267 -36354,7702:143,-23,74,0,0,0.0762196 -36355,7702:142,-22,74,0,0,0.07614 -36356,7702:141,-21,74,0,0,0.0760029 -36357,7702:140,-20,74,0,0,0.0759091 -36358,7701:249,-19,74,0,0,0.0758803 -36359,7701:248,-18,74,0,0,0.0758298 -36360,7701:247,-17,74,0,0,0.075722 -36361,7701:246,-16,74,0,0,0.0755494 -36362,7701:245,-15,74,0,0,0.0754348 -36363,7701:144,-14,74,0,0,0.075758 -36364,7701:143,-13,74,0,0,0.0764223 -36365,7701:142,-12,74,0,0,0.076895 -36366,7701:141,-11,74,0,0,0.0783737 -36367,7701:140,-10,74,0,0,0.100521 -36368,7700:249,-9,74,0,0,0.112466 -36369,7700:248,-8,74,0,0,0.102535 -36370,7700:247,-7,74,0,0,0.0816018 -36371,7700:246,-6,74,0,0,0.0773778 -36372,7700:245,-5,74,0,0,0.0771799 -36373,7700:144,-4,74,0,0,0.077451 -36374,7700:143,-3,74,0,0,0.0770996 -36375,7700:142,-2,74,0,0,0.0783737 -36376,7700:141,-1,74,0,0,0.0782551 -36377,1700:141,0,74,0,0,0.0855999 -36378,1700:141,1,74,0,0,0.0909314 -36379,1700:142,2,74,0,0,0.0974329 -36380,1700:143,3,74,0,0,0.102158 -36381,1700:144,4,74,0,0,0.103209 -36382,1700:245,5,74,0,0,0.0963898 -36383,1700:246,6,74,0,0,0.100344 -36384,1700:247,7,74,0,0,0.10596 -36385,1700:248,8,74,0,0,0.106693 -36386,1700:249,9,74,0,0,0.102668 -36387,1701:140,10,74,0,0,0.094395 -36388,1701:141,11,74,0,0,0.104384 -36389,1701:142,12,74,0,0,0.0993467 -36390,1701:143,13,74,0,0,0.0871401 -36391,1701:249,19,74,0,0,0.0835084 -36392,1702:140,20,74,0,0,0.0870177 -36393,1702:141,21,74,0,0,0.0775394 -36394,1702:142,22,74,0,0,0.076386 -36395,1702:143,23,74,0,0,0.0766475 -36396,1714:142,142,74,0,0,0.0787084 -36397,1714:143,143,74,0,0,0.0785224 -36398,1714:144,144,74,0,0,0.0781663 -36399,1714:245,145,74,0,0,0.0773411 -36400,1714:246,146,74,0,0,0.0762629 -36401,1714:247,147,74,0,0,0.0758082 -36402,1714:248,148,74,0,0,0.075765 -36403,1714:249,149,74,0,0,0.075528 -36404,1715:140,150,74,0,0,0.0753561 -36405,1715:141,151,74,0,0,0.0755424 -36406,1715:142,152,74,0,0,0.075442 -36407,1715:143,153,74,0,0,0.0754348 -36408,1715:144,154,74,0,0,0.0755494 -36409,1715:245,155,74,0,0,0.0756141 -36410,1715:246,156,74,0,0,0.0756645 -36411,1715:247,157,74,0,0,0.075765 -36412,1715:248,158,74,0,0,0.0758658 -36413,1715:249,159,74,0,0,0.0759595 -36414,1716:140,160,74,0,0,0.0760317 -36415,1716:141,161,74,0,0,0.0760822 -36416,1716:142,162,74,0,0,0.0761327 -36417,1716:143,163,74,0,0,0.0761545 -36418,1716:144,164,74,0,0,0.0761618 -36419,1716:245,165,74,0,0,0.0761545 -36420,1716:246,166,74,0,0,0.0761472 -36421,1716:247,167,74,0,0,0.0761472 -36422,1716:248,168,74,0,0,0.0761618 -36423,1716:249,169,74,0,0,0.0761978 -36424,1717:140,170,74,0,0,0.0762267 -36425,1717:141,171,74,0,0,0.0762558 -36426,1717:142,172,74,0,0,0.0762702 -36427,1717:143,173,74,0,0,0.0762702 -36428,1717:144,174,74,0,0,0.0762702 -36429,1717:245,175,74,0,0,0.0762991 -36430,1717:246,176,74,0,0,0.0763281 -36431,1717:247,177,74,0,0,0.0763354 -36432,1717:248,178,74,0,0,0.0763427 -36433,1717:249,179,74,0,0,0.0763933 -36434,1718:140,180,74,0,0,0.0764369 -36435,7718:350,-180,75,0,0,0.0763571 -36436,7717:459,-179,75,0,0,0.0763933 -36437,7717:458,-178,75,0,0,0.076386 -36438,7717:457,-177,75,0,0,0.0764223 -36439,7717:456,-176,75,0,0,0.0764513 -36440,7717:455,-175,75,0,0,0.0764659 -36441,7717:354,-174,75,0,0,0.0764803 -36442,7717:353,-173,75,0,0,0.0765022 -36443,7717:352,-172,75,0,0,0.0765022 -36444,7717:351,-171,75,0,0,0.0764876 -36445,7717:350,-170,75,0,0,0.0764803 -36446,7716:459,-169,75,0,0,0.0764803 -36447,7716:458,-168,75,0,0,0.0765603 -36448,7716:457,-167,75,0,0,0.0766111 -36449,7716:456,-166,75,0,0,0.0765747 -36450,7716:455,-165,75,0,0,0.0765093 -36451,7716:354,-164,75,0,0,0.0764442 -36452,7716:353,-163,75,0,0,0.0764079 -36453,7716:352,-162,75,0,0,0.0763789 -36454,7716:351,-161,75,0,0,0.0764659 -36455,7716:350,-160,75,0,0,0.0765676 -36456,7715:459,-159,75,0,0,0.076582 -36457,7715:458,-158,75,0,0,0.0765893 -36458,7715:457,-157,75,0,0,0.0764296 -36459,7715:456,-156,75,0,0,0.0768221 -36460,7715:350,-150,75,0,0,0.0766983 -36461,7714:459,-149,75,0,0,0.0772018 -36462,7714:456,-146,75,0,0,0.0768806 -36463,7714:353,-143,75,0,0,0.0767929 -36464,7713:459,-139,75,0,0,0.0773118 -36465,7713:458,-138,75,0,0,0.0774291 -36466,7713:457,-137,75,0,0,0.0776421 -36467,7713:456,-136,75,0,0,0.0781218 -36468,7713:455,-135,75,0,0,0.0779519 -36469,7713:354,-134,75,0,0,0.0777896 -36470,7708:350,-80,75,0,0,0.0795694 -36471,7707:459,-79,75,0,0,0.0789322 -36472,7707:458,-78,75,0,0,0.0800599 -36473,7707:457,-77,75,0,0,0.0808963 -36474,7707:455,-75,75,0,0,0.0796523 -36475,7707:354,-74,75,0,0,0.0786861 -36476,7707:353,-73,75,0,0,0.0781071 -36477,7707:352,-72,75,0,0,0.0779296 -36478,7707:351,-71,75,0,0,0.0778337 -36479,7707:350,-70,75,0,0,0.0777601 -36480,7706:459,-69,75,0,0,0.077679 -36481,7706:458,-68,75,0,0,0.0775981 -36482,7706:457,-67,75,0,0,0.0774732 -36483,7706:456,-66,75,0,0,0.0772678 -36484,7706:455,-65,75,0,0,0.0769899 -36485,7705:459,-59,75,0,0,0.0769534 -36486,7705:458,-58,75,0,0,0.0768221 -36487,7705:354,-54,75,0,0,0.0768806 -36488,7705:353,-53,75,0,0,0.0768514 -36489,7704:459,-49,75,0,0,0.0767567 -36490,7703:354,-34,75,0,0,0.0762848 -36491,7703:353,-33,75,0,0,0.0762196 -36492,7703:352,-32,75,0,0,0.076205 -36493,7703:351,-31,75,0,0,0.0761907 -36494,7703:350,-30,75,0,0,0.0761978 -36495,7702:459,-29,75,0,0,0.0761978 -36496,7702:458,-28,75,0,0,0.0761978 -36497,7702:457,-27,75,0,0,0.0761978 -36498,7702:456,-26,75,0,0,0.076205 -36499,7702:455,-25,75,0,0,0.0762267 -36500,7702:354,-24,75,0,0,0.076234 -36501,7702:353,-23,75,0,0,0.0762485 -36502,7702:352,-22,75,0,0,0.0762123 -36503,7702:351,-21,75,0,0,0.0761183 -36504,7702:350,-20,75,0,0,0.0760317 -36505,7701:459,-19,75,0,0,0.0759956 -36506,7701:458,-18,75,0,0,0.0759234 -36507,7701:457,-17,75,0,0,0.0757795 -36508,7701:456,-16,75,0,0,0.0755854 -36509,7701:455,-15,75,0,0,0.075442 -36510,7701:354,-14,75,0,0,0.0753272 -36511,7701:353,-13,75,0,0,0.0753989 -36512,7701:352,-12,75,0,0,0.0755352 -36513,7701:351,-11,75,0,0,0.0762918 -36514,7701:350,-10,75,0,0,0.078463 -36515,7700:459,-9,75,0,0,0.089741 -36516,7700:458,-8,75,0,0,0.103047 -36517,7700:457,-7,75,0,0,0.080988 -36518,7700:456,-6,75,0,0,0.0782997 -36519,7700:455,-5,75,0,0,0.0789995 -36520,7700:354,-4,75,0,0,0.0796372 -36521,7700:353,-3,75,0,0,0.0791191 -36522,7700:352,-2,75,0,0,0.0774658 -36523,7700:351,-1,75,0,0,0.0800525 -36524,1700:351,0,75,0,0,0.0819026 -36525,1700:351,1,75,0,0,0.0916472 -36526,1700:352,2,75,0,0,0.0958097 -36527,1700:353,3,75,0,0,0.0958187 -36528,1700:354,4,75,0,0,0.0948438 -36529,1700:455,5,75,0,0,0.094237 -36530,1700:456,6,75,0,0,0.0921963 -36531,1700:457,7,75,0,0,0.102914 -36532,1700:458,8,75,0,0,0.0982218 -36533,1700:459,9,75,0,0,0.0959255 -36534,1701:350,10,75,0,0,0.0977858 -36535,1701:351,11,75,0,0,0.0978038 -36536,1701:455,15,75,0,0,0.0781663 -36537,1701:456,16,75,0,0,0.0801583 -36538,1701:457,17,75,0,0,0.0808353 -36539,1701:458,18,75,0,0,0.0815327 -36540,1701:459,19,75,0,0,0.0799844 -36541,1702:350,20,75,0,0,0.0797351 -36542,1702:351,21,75,0,0,0.0797427 -36543,1702:352,22,75,0,0,0.0762196 -36544,1702:353,23,75,0,0,0.0770117 -36545,1702:354,24,75,0,0,0.0777453 -36546,1714:350,140,75,0,0,0.0783812 -36547,1714:351,141,75,0,0,0.0780701 -36548,1714:352,142,75,0,0,0.0777158 -36549,1714:353,143,75,0,0,0.076713 -36550,1714:354,144,75,0,0,0.0757075 -36551,1714:458,148,75,0,0,0.0759091 -36552,1714:459,149,75,0,0,0.0755854 -36553,1715:350,150,75,0,0,0.0753631 -36554,1715:351,151,75,0,0,0.0753703 -36555,1715:352,152,75,0,0,0.0753703 -36556,1715:353,153,75,0,0,0.0754203 -36557,1715:354,154,75,0,0,0.0755711 -36558,1715:455,155,75,0,0,0.0756715 -36559,1715:456,156,75,0,0,0.0757002 -36560,1715:457,157,75,0,0,0.075729 -36561,1715:458,158,75,0,0,0.0758225 -36562,1715:459,159,75,0,0,0.0759307 -36563,1716:350,160,75,0,0,0.0759956 -36564,1716:351,161,75,0,0,0.076046 -36565,1716:352,162,75,0,0,0.0761111 -36566,1716:353,163,75,0,0,0.0761256 -36567,1716:354,164,75,0,0,0.0761327 -36568,1716:455,165,75,0,0,0.0761327 -36569,1716:456,166,75,0,0,0.07614 -36570,1716:457,167,75,0,0,0.0761545 -36571,1716:458,168,75,0,0,0.0761618 -36572,1716:459,169,75,0,0,0.0761907 -36573,1717:350,170,75,0,0,0.0762123 -36574,1717:351,171,75,0,0,0.0762267 -36575,1717:352,172,75,0,0,0.076234 -36576,1717:353,173,75,0,0,0.076234 -36577,1717:354,174,75,0,0,0.0762413 -36578,1717:455,175,75,0,0,0.0762629 -36579,1717:456,176,75,0,0,0.0762918 -36580,1717:457,177,75,0,0,0.0763137 -36581,1717:458,178,75,0,0,0.0763208 -36582,1717:459,179,75,0,0,0.0763208 -36583,1718:350,180,75,0,0,0.0763571 -36584,7718:360,-180,76,0,0,0.0763427 -36585,7717:469,-179,76,0,0,0.0763571 -36586,7717:468,-178,76,0,0,0.0763571 -36587,7717:467,-177,76,0,0,0.0763643 -36588,7717:466,-176,76,0,0,0.0764006 -36589,7717:465,-175,76,0,0,0.0764223 -36590,7717:364,-174,76,0,0,0.0764296 -36591,7717:363,-173,76,0,0,0.0764513 -36592,7717:362,-172,76,0,0,0.0764659 -36593,7717:361,-171,76,0,0,0.0764732 -36594,7717:360,-170,76,0,0,0.0764803 -36595,7716:469,-169,76,0,0,0.0764949 -36596,7716:468,-168,76,0,0,0.0765384 -36597,7716:467,-167,76,0,0,0.0765747 -36598,7716:466,-166,76,0,0,0.076553 -36599,7716:465,-165,76,0,0,0.0764803 -36600,7716:364,-164,76,0,0,0.0764006 -36601,7716:363,-163,76,0,0,0.0763571 -36602,7716:362,-162,76,0,0,0.0764803 -36603,7716:361,-161,76,0,0,0.0766111 -36604,7715:469,-159,76,0,0,0.0766765 -36605,7715:468,-158,76,0,0,0.0765967 -36606,7715:467,-157,76,0,0,0.0766257 -36607,7715:466,-156,76,0,0,0.0767785 -36608,7715:465,-155,76,0,0,0.0768221 -36609,7715:364,-154,76,0,0,0.0764876 -36610,7714:363,-143,76,0,0,0.0767274 -36611,7713:465,-135,76,0,0,0.077856 -36612,7713:364,-134,76,0,0,0.077878 -36613,7713:363,-133,76,0,0,0.0779296 -36614,7708:361,-81,76,0,0,0.0785819 -36615,7708:360,-80,76,0,0,0.0785744 -36616,7707:469,-79,76,0,0,0.0782922 -36617,7707:468,-78,76,0,0,0.080007 -36618,7707:467,-77,76,0,0,0.080113 -36619,7707:466,-76,76,0,0,0.0790369 -36620,7707:465,-75,76,0,0,0.0792915 -36621,7707:364,-74,76,0,0,0.0783368 -36622,7707:363,-73,76,0,0,0.078048 -36623,7707:362,-72,76,0,0,0.077797 -36624,7707:361,-71,76,0,0,0.0775394 -36625,7707:360,-70,76,0,0,0.0774806 -36626,7706:469,-69,76,0,0,0.077679 -36627,7706:468,-68,76,0,0,0.0777821 -36628,7706:364,-64,76,0,0,0.0769973 -36629,7706:363,-63,76,0,0,0.0770191 -36630,7706:362,-62,76,0,0,0.0769681 -36631,7706:360,-60,76,0,0,0.0769754 -36632,7705:469,-59,76,0,0,0.0769462 -36633,7705:467,-57,76,0,0,0.0766621 -36634,7705:466,-56,76,0,0,0.0765967 -36635,7705:465,-55,76,0,0,0.0764369 -36636,7705:362,-52,76,0,0,0.0766692 -36637,7705:360,-50,76,0,0,0.0765676 -36638,7704:469,-49,76,0,0,0.0765747 -36639,7704:468,-48,76,0,0,0.0764876 -36640,7704:467,-47,76,0,0,0.076415 -36641,7704:362,-42,76,0,0,0.0767056 -36642,7703:364,-34,76,0,0,0.0761834 -36643,7703:363,-33,76,0,0,0.0761834 -36644,7703:362,-32,76,0,0,0.0761618 -36645,7703:361,-31,76,0,0,0.0761618 -36646,7703:360,-30,76,0,0,0.0761689 -36647,7702:469,-29,76,0,0,0.0761978 -36648,7702:468,-28,76,0,0,0.076234 -36649,7702:467,-27,76,0,0,0.0762702 -36650,7702:466,-26,76,0,0,0.0762702 -36651,7702:465,-25,76,0,0,0.0762775 -36652,7702:364,-24,76,0,0,0.0762918 -36653,7702:363,-23,76,0,0,0.0762991 -36654,7702:362,-22,76,0,0,0.0762775 -36655,7702:361,-21,76,0,0,0.0761761 -36656,7702:360,-20,76,0,0,0.0761111 -36657,7701:469,-19,76,0,0,0.0759595 -36658,7701:468,-18,76,0,0,0.075729 -36659,7701:467,-17,76,0,0,0.0755998 -36660,7701:466,-16,76,0,0,0.0755711 -36661,7701:465,-15,76,0,0,0.0755781 -36662,7701:364,-14,76,0,0,0.0754706 -36663,7701:363,-13,76,0,0,0.0754133 -36664,7701:362,-12,76,0,0,0.0754562 -36665,7701:361,-11,76,0,0,0.0756141 -36666,7701:360,-10,76,0,0,0.0758874 -36667,7700:469,-9,76,0,0,0.0765384 -36668,7700:468,-8,76,0,0,0.0842266 -36669,7700:467,-7,76,0,0,0.0779075 -36670,7700:466,-6,76,0,0,0.0776495 -36671,7700:465,-5,76,0,0,0.0778854 -36672,7700:364,-4,76,0,0,0.0787159 -36673,7700:363,-3,76,0,0,0.0787605 -36674,7700:362,-2,76,0,0,0.0781663 -36675,7700:361,-1,76,0,0,0.0786636 -36676,1700:361,0,76,0,0,0.0803632 -36677,1700:361,1,76,0,0,0.0877057 -36678,1700:362,2,76,0,0,0.0847193 -36679,1700:363,3,76,0,0,0.0848149 -36680,1700:364,4,76,0,0,0.0888136 -36681,1700:465,5,76,0,0,0.0904231 -36682,1700:466,6,76,0,0,0.0990346 -36683,1700:467,7,76,0,0,0.0904992 -36684,1700:468,8,76,0,0,0.0935551 -36685,1700:469,9,76,0,0,0.0970091 -36686,1701:360,10,76,0,0,0.0937995 -36687,1701:364,14,76,0,0,0.077797 -36688,1701:465,15,76,0,0,0.0778116 -36689,1701:466,16,76,0,0,0.0773411 -36690,1701:467,17,76,0,0,0.077635 -36691,1701:468,18,76,0,0,0.0780256 -36692,1701:469,19,76,0,0,0.0789545 -36693,1702:360,20,76,0,0,0.0814173 -36694,1702:361,21,76,0,0,0.0815327 -36695,1713:469,139,76,0,0,0.0784927 -36696,1714:360,140,76,0,0,0.077974 -36697,1714:361,141,76,0,0,0.0771873 -36698,1714:362,142,76,0,0,0.0761689 -36699,1714:363,143,76,0,0,0.0755567 -36700,1714:364,144,76,0,0,0.075758 -36701,1714:465,145,76,0,0,0.0754706 -36702,1714:468,148,76,0,0,0.0758225 -36703,1714:469,149,76,0,0,0.0758298 -36704,1715:360,150,76,0,0,0.0755207 -36705,1715:361,151,76,0,0,0.0753203 -36706,1715:362,152,76,0,0,0.0753272 -36707,1715:363,153,76,0,0,0.0753561 -36708,1715:364,154,76,0,0,0.0755065 -36709,1715:465,155,76,0,0,0.0756715 -36710,1715:466,156,76,0,0,0.0757507 -36711,1715:467,157,76,0,0,0.0757937 -36712,1715:468,158,76,0,0,0.0758298 -36713,1715:469,159,76,0,0,0.0758946 -36714,1716:360,160,76,0,0,0.0759379 -36715,1716:361,161,76,0,0,0.0759884 -36716,1716:362,162,76,0,0,0.0760606 -36717,1716:363,163,76,0,0,0.0761111 -36718,1716:364,164,76,0,0,0.0761256 -36719,1716:465,165,76,0,0,0.0761327 -36720,1716:466,166,76,0,0,0.0761472 -36721,1716:467,167,76,0,0,0.0761618 -36722,1716:468,168,76,0,0,0.0761761 -36723,1716:469,169,76,0,0,0.0761761 -36724,1717:360,170,76,0,0,0.0761907 -36725,1717:361,171,76,0,0,0.0761978 -36726,1717:362,172,76,0,0,0.076205 -36727,1717:363,173,76,0,0,0.0762196 -36728,1717:364,174,76,0,0,0.076234 -36729,1717:465,175,76,0,0,0.0762558 -36730,1717:466,176,76,0,0,0.0762848 -36731,1717:467,177,76,0,0,0.0763064 -36732,1717:468,178,76,0,0,0.0763208 -36733,1717:469,179,76,0,0,0.0763281 -36734,1718:360,180,76,0,0,0.0763427 -36735,7718:370,-180,77,0,0,0.0763354 -36736,7717:479,-179,77,0,0,0.07635 -36737,7717:478,-178,77,0,0,0.07635 -36738,7717:477,-177,77,0,0,0.0763643 -36739,7717:476,-176,77,0,0,0.0763789 -36740,7717:475,-175,77,0,0,0.0764006 -36741,7717:374,-174,77,0,0,0.0764079 -36742,7717:373,-173,77,0,0,0.0764079 -36743,7717:372,-172,77,0,0,0.0764079 -36744,7717:371,-171,77,0,0,0.0764369 -36745,7717:370,-170,77,0,0,0.0764803 -36746,7716:479,-169,77,0,0,0.0765166 -36747,7716:478,-168,77,0,0,0.076524 -36748,7716:477,-167,77,0,0,0.0765384 -36749,7716:476,-166,77,0,0,0.0764949 -36750,7716:475,-165,77,0,0,0.076415 -36751,7716:374,-164,77,0,0,0.0763571 -36752,7716:373,-163,77,0,0,0.0763789 -36753,7716:372,-162,77,0,0,0.0765967 -36754,7715:479,-159,77,0,0,0.0765313 -36755,7715:477,-157,77,0,0,0.0765603 -36756,7715:476,-156,77,0,0,0.0766111 -36757,7715:475,-155,77,0,0,0.0766912 -36758,7715:374,-154,77,0,0,0.0767203 -36759,7715:371,-151,77,0,0,0.0766692 -36760,7714:372,-142,77,0,0,0.0767056 -36761,7713:475,-135,77,0,0,0.077679 -36762,7713:374,-134,77,0,0,0.0777084 -36763,7713:373,-133,77,0,0,0.0778854 -36764,7708:371,-81,77,0,0,0.0781367 -36765,7708:370,-80,77,0,0,0.0780331 -36766,7707:479,-79,77,0,0,0.0780035 -36767,7707:477,-77,77,0,0,0.0786041 -36768,7707:476,-76,77,0,0,0.0782255 -36769,7707:373,-73,77,0,0,0.0778854 -36770,7707:372,-72,77,0,0,0.0776644 -36771,7707:371,-71,77,0,0,0.0773559 -36772,7707:370,-70,77,0,0,0.0772018 -36773,7706:479,-69,77,0,0,0.0776421 -36774,7706:371,-61,77,0,0,0.0766475 -36775,7706:370,-60,77,0,0,0.0767638 -36776,7705:479,-59,77,0,0,0.0768659 -36777,7705:476,-56,77,0,0,0.0765022 -36778,7705:475,-55,77,0,0,0.0764949 -36779,7705:372,-52,77,0,0,0.0764659 -36780,7705:371,-51,77,0,0,0.0764296 -36781,7705:370,-50,77,0,0,0.0764513 -36782,7704:374,-44,77,0,0,0.0765967 -36783,7704:373,-43,77,0,0,0.0766257 -36784,7703:476,-36,77,0,0,0.0763137 -36785,7703:475,-35,77,0,0,0.0761978 -36786,7703:374,-34,77,0,0,0.0761618 -36787,7703:373,-33,77,0,0,0.0761327 -36788,7703:372,-32,77,0,0,0.0761472 -36789,7703:371,-31,77,0,0,0.0761907 -36790,7703:370,-30,77,0,0,0.076234 -36791,7702:479,-29,77,0,0,0.0762629 -36792,7702:478,-28,77,0,0,0.0762629 -36793,7702:477,-27,77,0,0,0.0762702 -36794,7702:476,-26,77,0,0,0.0762848 -36795,7702:475,-25,77,0,0,0.0762848 -36796,7702:374,-24,77,0,0,0.0762848 -36797,7702:373,-23,77,0,0,0.0762702 -36798,7702:372,-22,77,0,0,0.0762267 -36799,7702:371,-21,77,0,0,0.0761907 -36800,7702:370,-20,77,0,0,0.0761472 -36801,7701:479,-19,77,0,0,0.076046 -36802,7701:478,-18,77,0,0,0.0759307 -36803,7701:477,-17,77,0,0,0.075758 -36804,7701:476,-16,77,0,0,0.0755567 -36805,7701:475,-15,77,0,0,0.0753631 -36806,7701:374,-14,77,0,0,0.0753344 -36807,7701:373,-13,77,0,0,0.0753489 -36808,7701:372,-12,77,0,0,0.0752772 -36809,7701:371,-11,77,0,0,0.0753631 -36810,7701:370,-10,77,0,0,0.0756068 -36811,7700:479,-9,77,0,0,0.0761545 -36812,7700:478,-8,77,0,0,0.0767056 -36813,7700:477,-7,77,0,0,0.0775687 -36814,7700:476,-6,77,0,0,0.078783 -36815,7700:475,-5,77,0,0,0.0788128 -36816,7700:374,-4,77,0,0,0.0778706 -36817,7700:372,-2,77,0,0,0.0795921 -36818,7700:371,-1,77,0,0,0.0792764 -36819,1700:371,0,77,0,0,0.0839498 -36820,1700:371,1,77,0,0,0.086448 -36821,1700:372,2,77,0,0,0.0850786 -36822,1700:373,3,77,0,0,0.0836422 -36823,1700:374,4,77,0,0,0.0938867 -36824,1700:475,5,77,0,0,0.096542 -36825,1700:476,6,77,0,0,0.0947997 -36826,1700:477,7,77,0,0,0.0852225 -36827,1700:478,8,77,0,0,0.0910759 -36828,1700:479,9,77,0,0,0.0895062 -36829,1701:372,12,77,0,0,0.0771799 -36830,1701:373,13,77,0,0,0.0768149 -36831,1701:374,14,77,0,0,0.0769754 -36832,1701:475,15,77,0,0,0.0769462 -36833,1701:476,16,77,0,0,0.077063 -36834,1701:477,17,77,0,0,0.0771581 -36835,1701:478,18,77,0,0,0.0773778 -36836,1701:479,19,77,0,0,0.0779591 -36837,1702:370,20,77,0,0,0.0801736 -36838,1702:371,21,77,0,0,0.0786861 -36839,1702:372,22,77,0,0,0.0764006 -36840,1713:477,137,77,0,0,0.078783 -36841,1713:478,138,77,0,0,0.0785669 -36842,1713:479,139,77,0,0,0.0779519 -36843,1714:370,140,77,0,0,0.0769681 -36844,1714:371,141,77,0,0,0.075313 -36845,1714:372,142,77,0,0,0.0752986 -36846,1714:373,143,77,0,0,0.0754779 -36847,1714:374,144,77,0,0,0.0758443 -36848,1714:475,145,77,0,0,0.0757002 -36849,1714:479,149,77,0,0,0.0756572 -36850,1715:370,150,77,0,0,0.0758155 -36851,1715:371,151,77,0,0,0.0753561 -36852,1715:372,152,77,0,0,0.0753203 -36853,1715:373,153,77,0,0,0.0753272 -36854,1715:374,154,77,0,0,0.0754921 -36855,1715:475,155,77,0,0,0.0756428 -36856,1715:476,156,77,0,0,0.0757002 -36857,1715:477,157,77,0,0,0.0757362 -36858,1715:478,158,77,0,0,0.0757937 -36859,1715:479,159,77,0,0,0.0758731 -36860,1716:370,160,77,0,0,0.0759307 -36861,1716:371,161,77,0,0,0.0759668 -36862,1716:372,162,77,0,0,0.0760245 -36863,1716:373,163,77,0,0,0.0761038 -36864,1716:374,164,77,0,0,0.07614 -36865,1716:475,165,77,0,0,0.0761472 -36866,1716:476,166,77,0,0,0.0761545 -36867,1716:477,167,77,0,0,0.0761618 -36868,1716:478,168,77,0,0,0.0761834 -36869,1716:479,169,77,0,0,0.0761907 -36870,1717:370,170,77,0,0,0.0761907 -36871,1717:371,171,77,0,0,0.0761978 -36872,1717:372,172,77,0,0,0.076205 -36873,1717:373,173,77,0,0,0.0762196 -36874,1717:374,174,77,0,0,0.0762267 -36875,1717:475,175,77,0,0,0.0762629 -36876,1717:476,176,77,0,0,0.0762918 -36877,1717:477,177,77,0,0,0.0763064 -36878,1717:478,178,77,0,0,0.0763137 -36879,1717:479,179,77,0,0,0.0763208 -36880,1718:370,180,77,0,0,0.0763354 -36881,7718:380,-180,78,0,0,0.0763064 -36882,7717:489,-179,78,0,0,0.0763137 -36883,7717:488,-178,78,0,0,0.0763281 -36884,7717:487,-177,78,0,0,0.07635 -36885,7717:486,-176,78,0,0,0.0763643 -36886,7717:485,-175,78,0,0,0.0763789 -36887,7717:384,-174,78,0,0,0.0763716 -36888,7717:383,-173,78,0,0,0.0763643 -36889,7717:382,-172,78,0,0,0.0764006 -36890,7717:381,-171,78,0,0,0.0764442 -36891,7717:380,-170,78,0,0,0.0764949 -36892,7716:489,-169,78,0,0,0.0764949 -36893,7716:488,-168,78,0,0,0.0764949 -36894,7716:487,-167,78,0,0,0.0764803 -36895,7716:486,-166,78,0,0,0.0764223 -36896,7716:485,-165,78,0,0,0.0763643 -36897,7716:384,-164,78,0,0,0.0763427 -36898,7716:383,-163,78,0,0,0.0765093 -36899,7715:489,-159,78,0,0,0.0764949 -36900,7715:488,-158,78,0,0,0.076553 -36901,7715:485,-155,78,0,0,0.0766328 -36902,7715:384,-154,78,0,0,0.0766111 -36903,7715:383,-153,78,0,0,0.0766184 -36904,7715:382,-152,78,0,0,0.0766621 -36905,7715:381,-151,78,0,0,0.0766184 -36906,7714:489,-149,78,0,0,0.0776275 -36907,7714:382,-142,78,0,0,0.0759452 -36908,7713:485,-135,78,0,0,0.0776644 -36909,7713:384,-134,78,0,0,0.077819 -36910,7713:383,-133,78,0,0,0.0778116 -36911,7708:380,-80,78,0,0,0.0779224 -36912,7707:489,-79,78,0,0,0.077974 -36913,7707:488,-78,78,0,0,0.078085 -36914,7707:485,-75,78,0,0,0.0784405 -36915,7707:382,-72,78,0,0,0.0773411 -36916,7707:381,-71,78,0,0,0.0770117 -36917,7707:380,-70,78,0,0,0.0770191 -36918,7706:489,-69,78,0,0,0.0770922 -36919,7706:488,-68,78,0,0,0.0772311 -36920,7706:487,-67,78,0,0,0.0772459 -36921,7706:382,-62,78,0,0,0.0766692 -36922,7706:381,-61,78,0,0,0.0766038 -36923,7706:380,-60,78,0,0,0.0766257 -36924,7705:489,-59,78,0,0,0.0767203 -36925,7705:488,-58,78,0,0,0.0766111 -36926,7705:487,-57,78,0,0,0.0765093 -36927,7705:486,-56,78,0,0,0.0765022 -36928,7705:485,-55,78,0,0,0.0764949 -36929,7705:384,-54,78,0,0,0.0765166 -36930,7705:382,-52,78,0,0,0.0765093 -36931,7705:380,-50,78,0,0,0.0764513 -36932,7704:489,-49,78,0,0,0.0765384 -36933,7704:383,-43,78,0,0,0.0766111 -36934,7703:488,-38,78,0,0,0.0764006 -36935,7703:487,-37,78,0,0,0.0763137 -36936,7703:486,-36,78,0,0,0.0762629 -36937,7703:485,-35,78,0,0,0.0762775 -36938,7703:384,-34,78,0,0,0.0762413 -36939,7703:383,-33,78,0,0,0.0762123 -36940,7703:382,-32,78,0,0,0.076205 -36941,7703:381,-31,78,0,0,0.0762123 -36942,7703:380,-30,78,0,0,0.0762413 -36943,7702:489,-29,78,0,0,0.0762558 -36944,7702:488,-28,78,0,0,0.0762485 -36945,7702:487,-27,78,0,0,0.0762702 -36946,7702:486,-26,78,0,0,0.0762775 -36947,7702:485,-25,78,0,0,0.0762918 -36948,7702:384,-24,78,0,0,0.0762558 -36949,7702:383,-23,78,0,0,0.0762267 -36950,7702:382,-22,78,0,0,0.0762123 -36951,7702:381,-21,78,0,0,0.0761472 -36952,7702:380,-20,78,0,0,0.0760749 -36953,7701:489,-19,78,0,0,0.0760029 -36954,7701:488,-18,78,0,0,0.0758658 -36955,7701:487,-17,78,0,0,0.0757867 -36956,7701:486,-16,78,0,0,0.07565 -36957,7701:485,-15,78,0,0,0.0754492 -36958,7701:384,-14,78,0,0,0.075313 -36959,7701:383,-13,78,0,0,0.07527 -36960,7701:382,-12,78,0,0,0.0752559 -36961,7701:381,-11,78,0,0,0.0752631 -36962,7701:380,-10,78,0,0,0.0754061 -36963,7700:489,-9,78,0,0,0.0759162 -36964,7700:488,-8,78,0,0,0.0762775 -36965,7700:487,-7,78,0,0,0.0775026 -36966,7700:486,-6,78,0,0,0.0786266 -36967,7700:485,-5,78,0,0,0.0788053 -36968,7700:384,-4,78,0,0,0.0790369 -36969,7700:383,-3,78,0,0,0.0784852 -36970,7700:381,-1,78,0,0,0.0818642 -36971,1700:381,0,78,0,0,0.0824762 -36972,1700:381,1,78,0,0,0.0787234 -36973,1700:382,2,78,0,0,0.0782551 -36974,1700:383,3,78,0,0,0.0773411 -36975,1700:384,4,78,0,0,0.0814095 -36976,1700:485,5,78,0,0,0.0871239 -36977,1700:486,6,78,0,0,0.0884567 -36978,1700:487,7,78,0,0,0.0905415 -36979,1700:488,8,78,0,0,0.0839419 -36980,1701:381,11,78,0,0,0.0786861 -36981,1701:382,12,78,0,0,0.0769754 -36982,1701:383,13,78,0,0,0.0768514 -36983,1701:384,14,78,0,0,0.0768732 -36984,1701:485,15,78,0,0,0.0766839 -36985,1701:486,16,78,0,0,0.0769973 -36986,1701:487,17,78,0,0,0.0773118 -36987,1701:488,18,78,0,0,0.0787009 -36988,1701:489,19,78,0,0,0.0803555 -36989,1702:380,20,78,0,0,0.0803405 -36990,1702:381,21,78,0,0,0.0811335 -36991,1702:382,22,78,0,0,0.0782775 -36992,1702:383,23,78,0,0,0.0762485 -36993,1713:383,133,78,0,0,0.0802265 -36994,1713:384,134,78,0,0,0.079939 -36995,1713:485,135,78,0,0,0.0794567 -36996,1713:486,136,78,0,0,0.07827 -36997,1713:487,137,78,0,0,0.0767056 -36998,1713:488,138,78,0,0,0.0764876 -36999,1713:489,139,78,0,0,0.0758298 -37000,1714:380,140,78,0,0,0.0756355 -37001,1714:381,141,78,0,0,0.0757435 -37002,1714:382,142,78,0,0,0.0759523 -37003,1714:383,143,78,0,0,0.0760679 -37004,1714:384,144,78,0,0,0.0760606 -37005,1714:485,145,78,0,0,0.076039 -37006,1714:486,146,78,0,0,0.0755135 -37007,1715:380,150,78,0,0,0.0755424 -37008,1715:381,151,78,0,0,0.0756787 -37009,1715:382,152,78,0,0,0.0753489 -37010,1715:383,153,78,0,0,0.075313 -37011,1715:384,154,78,0,0,0.0754492 -37012,1715:485,155,78,0,0,0.0755494 -37013,1715:486,156,78,0,0,0.0755926 -37014,1715:487,157,78,0,0,0.0756285 -37015,1715:488,158,78,0,0,0.0757507 -37016,1715:489,159,78,0,0,0.0758803 -37017,1716:380,160,78,0,0,0.0759019 -37018,1716:381,161,78,0,0,0.0759234 -37019,1716:382,162,78,0,0,0.075974 -37020,1716:383,163,78,0,0,0.0760749 -37021,1716:384,164,78,0,0,0.07614 -37022,1716:485,165,78,0,0,0.0761472 -37023,1716:486,166,78,0,0,0.0761689 -37024,1716:487,167,78,0,0,0.0761834 -37025,1716:488,168,78,0,0,0.0761978 -37026,1716:489,169,78,0,0,0.0761978 -37027,1717:380,170,78,0,0,0.076205 -37028,1717:381,171,78,0,0,0.0762123 -37029,1717:382,172,78,0,0,0.0762196 -37030,1717:383,173,78,0,0,0.0762123 -37031,1717:384,174,78,0,0,0.0762267 -37032,1717:485,175,78,0,0,0.0762558 -37033,1717:486,176,78,0,0,0.0762848 -37034,1717:487,177,78,0,0,0.0762918 -37035,1717:488,178,78,0,0,0.0762918 -37036,1717:489,179,78,0,0,0.0762918 -37037,1718:380,180,78,0,0,0.0763064 -37038,7718:390,-180,79,0,0,0.0762702 -37039,7717:499,-179,79,0,0,0.0762918 -37040,7717:498,-178,79,0,0,0.0763354 -37041,7717:497,-177,79,0,0,0.0763354 -37042,7717:496,-176,79,0,0,0.0763354 -37043,7717:495,-175,79,0,0,0.0763427 -37044,7717:394,-174,79,0,0,0.0763571 -37045,7717:393,-173,79,0,0,0.076386 -37046,7717:392,-172,79,0,0,0.0764442 -37047,7717:391,-171,79,0,0,0.0764803 -37048,7717:390,-170,79,0,0,0.0764659 -37049,7716:499,-169,79,0,0,0.0764442 -37050,7716:498,-168,79,0,0,0.0764223 -37051,7716:497,-167,79,0,0,0.0763933 -37052,7716:496,-166,79,0,0,0.0763643 -37053,7716:495,-165,79,0,0,0.0763354 -37054,7716:394,-164,79,0,0,0.0763933 -37055,7716:393,-163,79,0,0,0.0765457 -37056,7716:391,-161,79,0,0,0.076553 -37057,7716:390,-160,79,0,0,0.0765747 -37058,7715:495,-155,79,0,0,0.0766184 -37059,7715:393,-153,79,0,0,0.0765457 -37060,7715:392,-152,79,0,0,0.0766038 -37061,7715:391,-151,79,0,0,0.0766184 -37062,7715:390,-150,79,0,0,0.0766328 -37063,7713:495,-135,79,0,0,0.0775687 -37064,7713:394,-134,79,0,0,0.077635 -37065,7713:393,-133,79,0,0,0.0776201 -37066,7713:392,-132,79,0,0,0.0778634 -37067,7708:391,-81,79,0,0,0.0777084 -37068,7708:390,-80,79,0,0,0.0779519 -37069,7707:499,-79,79,0,0,0.077937 -37070,7707:392,-72,79,0,0,0.0772825 -37071,7707:391,-71,79,0,0,0.0770409 -37072,7707:390,-70,79,0,0,0.0769825 -37073,7706:499,-69,79,0,0,0.0769681 -37074,7706:498,-68,79,0,0,0.0769681 -37075,7706:497,-67,79,0,0,0.0769168 -37076,7706:495,-65,79,0,0,0.077063 -37077,7706:394,-64,79,0,0,0.0769973 -37078,7706:392,-62,79,0,0,0.0767494 -37079,7706:391,-61,79,0,0,0.0765313 -37080,7706:390,-60,79,0,0,0.076524 -37081,7705:499,-59,79,0,0,0.0766328 -37082,7705:394,-54,79,0,0,0.0766257 -37083,7705:393,-53,79,0,0,0.0765676 -37084,7705:392,-52,79,0,0,0.0764659 -37085,7705:391,-51,79,0,0,0.0762991 -37086,7704:498,-48,79,0,0,0.0765384 -37087,7704:392,-42,79,0,0,0.0764803 -37088,7704:390,-40,79,0,0,0.0764513 -37089,7703:499,-39,79,0,0,0.0763281 -37090,7703:498,-38,79,0,0,0.0762775 -37091,7703:497,-37,79,0,0,0.0762702 -37092,7703:496,-36,79,0,0,0.0762702 -37093,7703:495,-35,79,0,0,0.0762991 -37094,7703:394,-34,79,0,0,0.0762918 -37095,7703:393,-33,79,0,0,0.0762413 -37096,7703:392,-32,79,0,0,0.0762413 -37097,7703:391,-31,79,0,0,0.0762413 -37098,7703:390,-30,79,0,0,0.076234 -37099,7702:499,-29,79,0,0,0.076234 -37100,7702:498,-28,79,0,0,0.076234 -37101,7702:497,-27,79,0,0,0.0762702 -37102,7702:496,-26,79,0,0,0.0762848 -37103,7702:495,-25,79,0,0,0.0762918 -37104,7702:394,-24,79,0,0,0.0762702 -37105,7702:393,-23,79,0,0,0.076205 -37106,7702:392,-22,79,0,0,0.0761689 -37107,7702:391,-21,79,0,0,0.0761472 -37108,7702:390,-20,79,0,0,0.0760967 -37109,7701:499,-19,79,0,0,0.076046 -37110,7701:498,-18,79,0,0,0.0759307 -37111,7701:497,-17,79,0,0,0.0756787 -37112,7701:496,-16,79,0,0,0.0755854 -37113,7701:495,-15,79,0,0,0.0754921 -37114,7701:394,-14,79,0,0,0.0753489 -37115,7701:393,-13,79,0,0,0.0752844 -37116,7701:392,-12,79,0,0,0.0752559 -37117,7701:391,-11,79,0,0,0.0752631 -37118,7701:390,-10,79,0,0,0.0753703 -37119,7700:499,-9,79,0,0,0.0755854 -37120,7700:498,-8,79,0,0,0.0758946 -37121,7700:497,-7,79,0,0,0.0775907 -37122,7700:496,-6,79,0,0,0.0782775 -37123,7700:495,-5,79,0,0,0.0782847 -37124,7700:394,-4,79,0,0,0.0781071 -37125,7700:392,-2,79,0,0,0.0771215 -37126,1700:391,0,79,0,0,0.0780552 -37127,1700:391,1,79,0,0,0.0799466 -37128,1700:392,2,79,0,0,0.0782626 -37129,1700:393,3,79,0,0,0.0768877 -37130,1700:394,4,79,0,0,0.0767858 -37131,1700:495,5,79,0,0,0.0778116 -37132,1700:496,6,79,0,0,0.0870013 -37133,1700:497,7,79,0,0,0.089699 -37134,1701:390,10,79,0,0,0.0787605 -37135,1701:391,11,79,0,0,0.0769899 -37136,1701:392,12,79,0,0,0.0766401 -37137,1701:393,13,79,0,0,0.076553 -37138,1701:394,14,79,0,0,0.0764442 -37139,1701:495,15,79,0,0,0.0763427 -37140,1701:496,16,79,0,0,0.0769681 -37141,1701:497,17,79,0,0,0.0784927 -37142,1701:498,18,79,0,0,0.0791042 -37143,1701:499,19,79,0,0,0.0785224 -37144,1702:390,20,79,0,0,0.0757435 -37145,1702:391,21,79,0,0,0.0759956 -37146,1702:392,22,79,0,0,0.0769681 -37147,1702:393,23,79,0,0,0.0763933 -37148,1702:394,24,79,0,0,0.0765166 -37149,1712:499,129,79,0,0,0.0892469 -37150,1713:393,133,79,0,0,0.0801812 -37151,1713:394,134,79,0,0,0.0790369 -37152,1713:495,135,79,0,0,0.0775981 -37153,1713:496,136,79,0,0,0.0762267 -37154,1713:497,137,79,0,0,0.0759091 -37155,1713:498,138,79,0,0,0.0756428 -37156,1713:499,139,79,0,0,0.0755207 -37157,1714:390,140,79,0,0,0.0754849 -37158,1714:391,141,79,0,0,0.075758 -37159,1714:392,142,79,0,0,0.0757507 -37160,1714:393,143,79,0,0,0.0755926 -37161,1714:394,144,79,0,0,0.075765 -37162,1714:495,145,79,0,0,0.0756787 -37163,1714:496,146,79,0,0,0.0756355 -37164,1714:497,147,79,0,0,0.0755926 -37165,1714:498,148,79,0,0,0.0755567 -37166,1714:499,149,79,0,0,0.0755998 -37167,1715:390,150,79,0,0,0.0754562 -37168,1715:391,151,79,0,0,0.0756572 -37169,1715:392,152,79,0,0,0.0754849 -37170,1715:393,153,79,0,0,0.0755135 -37171,1715:394,154,79,0,0,0.0755494 -37172,1715:495,155,79,0,0,0.0755567 -37173,1715:496,156,79,0,0,0.0755639 -37174,1715:497,157,79,0,0,0.0755998 -37175,1715:498,158,79,0,0,0.075758 -37176,1715:499,159,79,0,0,0.0758586 -37177,1716:390,160,79,0,0,0.0758515 -37178,1716:391,161,79,0,0,0.0758586 -37179,1716:392,162,79,0,0,0.0759234 -37180,1716:393,163,79,0,0,0.0760245 -37181,1716:394,164,79,0,0,0.0761183 -37182,1716:495,165,79,0,0,0.0761545 -37183,1716:496,166,79,0,0,0.0761761 -37184,1716:497,167,79,0,0,0.0761978 -37185,1716:498,168,79,0,0,0.0762123 -37186,1716:499,169,79,0,0,0.0762196 -37187,1717:390,170,79,0,0,0.0762267 -37188,1717:391,171,79,0,0,0.0762196 -37189,1717:392,172,79,0,0,0.0762123 -37190,1717:393,173,79,0,0,0.0762123 -37191,1717:394,174,79,0,0,0.076234 -37192,1717:495,175,79,0,0,0.0762558 -37193,1717:496,176,79,0,0,0.0762775 -37194,1717:497,177,79,0,0,0.0762848 -37195,1717:498,178,79,0,0,0.0762702 -37196,1717:499,179,79,0,0,0.0762702 -37197,1718:390,180,79,0,0,0.0762702 -37198,7818:100,-180,80,0,0,0.0762629 -37199,7817:209,-179,80,0,0,0.0762629 -37200,7817:208,-178,80,0,0,0.0762702 -37201,7817:207,-177,80,0,0,0.0762848 -37202,7817:206,-176,80,0,0,0.0763137 -37203,7817:205,-175,80,0,0,0.0763643 -37204,7817:104,-174,80,0,0,0.076386 -37205,7817:103,-173,80,0,0,0.0764079 -37206,7817:102,-172,80,0,0,0.0764369 -37207,7817:101,-171,80,0,0,0.0764586 -37208,7817:100,-170,80,0,0,0.076415 -37209,7816:209,-169,80,0,0,0.076386 -37210,7816:208,-168,80,0,0,0.0763789 -37211,7816:207,-167,80,0,0,0.0763716 -37212,7816:206,-166,80,0,0,0.07635 -37213,7816:205,-165,80,0,0,0.0763571 -37214,7816:104,-164,80,0,0,0.0764586 -37215,7816:103,-163,80,0,0,0.0765747 -37216,7816:102,-162,80,0,0,0.0764513 -37217,7816:101,-161,80,0,0,0.076582 -37218,7816:100,-160,80,0,0,0.0766328 -37219,7815:209,-159,80,0,0,0.0766983 -37220,7815:103,-153,80,0,0,0.0765166 -37221,7815:102,-152,80,0,0,0.0765022 -37222,7815:101,-151,80,0,0,0.0765967 -37223,7815:100,-150,80,0,0,0.0766839 -37224,7814:209,-149,80,0,0,0.0767056 -37225,7814:208,-148,80,0,0,0.0766184 -37226,7813:205,-135,80,0,0,0.0778116 -37227,7813:104,-134,80,0,0,0.0776055 -37228,7813:103,-133,80,0,0,0.0777821 -37229,7813:102,-132,80,0,0,0.0779445 -37230,7813:101,-131,80,0,0,0.0785744 -37231,7808:100,-80,80,0,0,0.0776201 -37232,7807:209,-79,80,0,0,0.0779149 -37233,7807:101,-71,80,0,0,0.0769825 -37234,7807:100,-70,80,0,0,0.0769681 -37235,7806:209,-69,80,0,0,0.0769389 -37236,7806:208,-68,80,0,0,0.0769534 -37237,7806:207,-67,80,0,0,0.0769242 -37238,7806:206,-66,80,0,0,0.0768806 -37239,7806:205,-65,80,0,0,0.0768294 -37240,7806:104,-64,80,0,0,0.0767567 -37241,7806:103,-63,80,0,0,0.0766621 -37242,7806:102,-62,80,0,0,0.0765747 -37243,7806:101,-61,80,0,0,0.0764659 -37244,7806:100,-60,80,0,0,0.076415 -37245,7805:209,-59,80,0,0,0.0764296 -37246,7805:208,-58,80,0,0,0.0763789 -37247,7805:205,-55,80,0,0,0.0765747 -37248,7805:104,-54,80,0,0,0.076582 -37249,7805:103,-53,80,0,0,0.0765603 -37250,7805:102,-52,80,0,0,0.0764586 -37251,7804:209,-49,80,0,0,0.0764223 -37252,7804:208,-48,80,0,0,0.0764586 -37253,7804:207,-47,80,0,0,0.0765603 -37254,7804:206,-46,80,0,0,0.0765747 -37255,7804:205,-45,80,0,0,0.0765747 -37256,7804:104,-44,80,0,0,0.0765313 -37257,7804:103,-43,80,0,0,0.0764659 -37258,7804:102,-42,80,0,0,0.076386 -37259,7804:101,-41,80,0,0,0.0763064 -37260,7804:100,-40,80,0,0,0.0762918 -37261,7803:209,-39,80,0,0,0.0763064 -37262,7803:208,-38,80,0,0,0.0762991 -37263,7803:207,-37,80,0,0,0.0762991 -37264,7803:206,-36,80,0,0,0.0762991 -37265,7803:205,-35,80,0,0,0.0762918 -37266,7803:104,-34,80,0,0,0.0762775 -37267,7803:103,-33,80,0,0,0.0762775 -37268,7803:102,-32,80,0,0,0.0762991 -37269,7803:101,-31,80,0,0,0.0762991 -37270,7803:100,-30,80,0,0,0.0762848 -37271,7802:209,-29,80,0,0,0.0762775 -37272,7802:208,-28,80,0,0,0.0762775 -37273,7802:207,-27,80,0,0,0.0762918 -37274,7802:206,-26,80,0,0,0.0762918 -37275,7802:205,-25,80,0,0,0.0762918 -37276,7802:104,-24,80,0,0,0.0762775 -37277,7802:103,-23,80,0,0,0.0762267 -37278,7802:102,-22,80,0,0,0.0761761 -37279,7802:101,-21,80,0,0,0.0761256 -37280,7802:100,-20,80,0,0,0.0760533 -37281,7801:209,-19,80,0,0,0.0760317 -37282,7801:208,-18,80,0,0,0.0759307 -37283,7801:207,-17,80,0,0,0.0758443 -37284,7801:206,-16,80,0,0,0.0757435 -37285,7801:205,-15,80,0,0,0.0755854 -37286,7801:104,-14,80,0,0,0.0753775 -37287,7801:103,-13,80,0,0,0.0753058 -37288,7801:102,-12,80,0,0,0.0752631 -37289,7801:101,-11,80,0,0,0.0752631 -37290,7801:100,-10,80,0,0,0.0752916 -37291,7800:209,-9,80,0,0,0.0753989 -37292,7800:208,-8,80,0,0,0.0755711 -37293,7800:207,-7,80,0,0,0.0766038 -37294,7800:206,-6,80,0,0,0.077797 -37295,7800:205,-5,80,0,0,0.0784108 -37296,7800:104,-4,80,0,0,0.0783812 -37297,7800:103,-3,80,0,0,0.0785819 -37298,7800:101,-1,80,0,0,0.0774584 -37299,1800:101,0,80,0,0,0.0770556 -37300,1800:101,1,80,0,0,0.0771141 -37301,1800:102,2,80,0,0,0.0769754 -37302,1800:103,3,80,0,0,0.0765022 -37303,1800:104,4,80,0,0,0.077224 -37304,1800:205,5,80,0,0,0.0793366 -37305,1800:206,6,80,0,0,0.0829205 -37306,1800:207,7,80,0,0,0.0865453 -37307,1800:209,9,80,0,0,0.0787905 -37308,1801:100,10,80,0,0,0.0772018 -37309,1801:101,11,80,0,0,0.0761761 -37310,1801:102,12,80,0,0,0.0761472 -37311,1801:103,13,80,0,0,0.0762196 -37312,1801:104,14,80,0,0,0.076386 -37313,1801:205,15,80,0,0,0.0769462 -37314,1801:206,16,80,0,0,0.0773263 -37315,1801:207,17,80,0,0,0.0774439 -37316,1801:208,18,80,0,0,0.0772825 -37317,1802:205,25,80,0,0,0.0786936 -37318,1812:100,120,80,0,0,0.0895312 -37319,1812:101,121,80,0,0,0.089523 -37320,1813:100,130,80,0,0,0.085431 -37321,1813:101,131,80,0,0,0.0826707 -37322,1813:102,132,80,0,0,0.079939 -37323,1813:103,133,80,0,0,0.0801962 -37324,1813:104,134,80,0,0,0.0798332 -37325,1813:205,135,80,0,0,0.0780701 -37326,1813:206,136,80,0,0,0.0762918 -37327,1813:207,137,80,0,0,0.076039 -37328,1813:208,138,80,0,0,0.0759307 -37329,1813:209,139,80,0,0,0.0758946 -37330,1814:100,140,80,0,0,0.0757002 -37331,1814:101,141,80,0,0,0.075801 -37332,1814:102,142,80,0,0,0.0755639 -37333,1814:103,143,80,0,0,0.0752772 -37334,1814:104,144,80,0,0,0.075528 -37335,1814:205,145,80,0,0,0.0759019 -37336,1814:206,146,80,0,0,0.0760967 -37337,1814:207,147,80,0,0,0.0763789 -37338,1814:208,148,80,0,0,0.0763354 -37339,1814:209,149,80,0,0,0.0762848 -37340,1815:100,150,80,0,0,0.0760822 -37341,1815:101,151,80,0,0,0.0755135 -37342,1815:102,152,80,0,0,0.0754275 -37343,1815:103,153,80,0,0,0.0755065 -37344,1815:104,154,80,0,0,0.0755207 -37345,1815:205,155,80,0,0,0.0755065 -37346,1815:206,156,80,0,0,0.0755424 -37347,1815:207,157,80,0,0,0.0756285 -37348,1815:208,158,80,0,0,0.075722 -37349,1815:209,159,80,0,0,0.0758082 -37350,1816:100,160,80,0,0,0.0758082 -37351,1816:101,161,80,0,0,0.0758155 -37352,1816:102,162,80,0,0,0.0758658 -37353,1816:103,163,80,0,0,0.0759523 -37354,1816:104,164,80,0,0,0.0760679 -37355,1816:205,165,80,0,0,0.07614 -37356,1816:206,166,80,0,0,0.0761545 -37357,1816:207,167,80,0,0,0.0761834 -37358,1816:208,168,80,0,0,0.0762196 -37359,1816:209,169,80,0,0,0.0762267 -37360,1817:100,170,80,0,0,0.076234 -37361,1817:101,171,80,0,0,0.0762485 -37362,1817:102,172,80,0,0,0.0762485 -37363,1817:103,173,80,0,0,0.076234 -37364,1817:104,174,80,0,0,0.0762413 -37365,1817:205,175,80,0,0,0.0762558 -37366,1817:206,176,80,0,0,0.0762629 -37367,1817:207,177,80,0,0,0.0762702 -37368,1817:208,178,80,0,0,0.0762702 -37369,1817:209,179,80,0,0,0.0762702 -37370,1818:100,180,80,0,0,0.0762629 -37371,7818:110,-180,81,0,0,0.0762558 -37372,7817:219,-179,81,0,0,0.0762485 -37373,7817:218,-178,81,0,0,0.0762558 -37374,7817:217,-177,81,0,0,0.0762775 -37375,7817:216,-176,81,0,0,0.0763427 -37376,7817:215,-175,81,0,0,0.0763716 -37377,7817:114,-174,81,0,0,0.0763789 -37378,7817:113,-173,81,0,0,0.0763933 -37379,7817:112,-172,81,0,0,0.076415 -37380,7817:111,-171,81,0,0,0.076415 -37381,7817:110,-170,81,0,0,0.0763933 -37382,7816:219,-169,81,0,0,0.0763789 -37383,7816:218,-168,81,0,0,0.0763571 -37384,7816:217,-167,81,0,0,0.0763643 -37385,7816:216,-166,81,0,0,0.0763716 -37386,7816:215,-165,81,0,0,0.0764006 -37387,7816:111,-161,81,0,0,0.0766257 -37388,7816:110,-160,81,0,0,0.076713 -37389,7815:219,-159,81,0,0,0.0767785 -37390,7815:218,-158,81,0,0,0.0768149 -37391,7815:217,-157,81,0,0,0.0768294 -37392,7815:114,-154,81,0,0,0.0763716 -37393,7815:113,-153,81,0,0,0.0763789 -37394,7815:112,-152,81,0,0,0.0764659 -37395,7815:111,-151,81,0,0,0.0765893 -37396,7815:110,-150,81,0,0,0.0766765 -37397,7814:219,-149,81,0,0,0.0767056 -37398,7813:215,-135,81,0,0,0.0777453 -37399,7813:111,-131,81,0,0,0.0781514 -37400,7813:110,-130,81,0,0,0.0784036 -37401,7812:219,-129,81,0,0,0.0790294 -37402,7812:218,-128,81,0,0,0.0790743 -37403,7812:217,-127,81,0,0,0.0791417 -37404,7807:218,-78,81,0,0,0.0778706 -37405,7806:218,-68,81,0,0,0.0769607 -37406,7806:217,-67,81,0,0,0.0769899 -37407,7806:216,-66,81,0,0,0.0769168 -37408,7806:215,-65,81,0,0,0.0767929 -37409,7806:114,-64,81,0,0,0.0767203 -37410,7806:113,-63,81,0,0,0.0766475 -37411,7806:112,-62,81,0,0,0.0765457 -37412,7806:111,-61,81,0,0,0.076415 -37413,7806:110,-60,81,0,0,0.0763716 -37414,7805:219,-59,81,0,0,0.0763571 -37415,7805:218,-58,81,0,0,0.0764006 -37416,7805:217,-57,81,0,0,0.0764369 -37417,7805:215,-55,81,0,0,0.0764876 -37418,7805:114,-54,81,0,0,0.0765093 -37419,7805:113,-53,81,0,0,0.0764803 -37420,7805:112,-52,81,0,0,0.0764586 -37421,7805:111,-51,81,0,0,0.076415 -37422,7804:218,-48,81,0,0,0.0764006 -37423,7804:217,-47,81,0,0,0.0765967 -37424,7804:216,-46,81,0,0,0.0766184 -37425,7804:215,-45,81,0,0,0.0765676 -37426,7804:114,-44,81,0,0,0.0763933 -37427,7804:113,-43,81,0,0,0.0762991 -37428,7804:112,-42,81,0,0,0.0762848 -37429,7804:111,-41,81,0,0,0.0763064 -37430,7804:110,-40,81,0,0,0.0763354 -37431,7803:219,-39,81,0,0,0.0763354 -37432,7803:218,-38,81,0,0,0.0763281 -37433,7803:217,-37,81,0,0,0.0763208 -37434,7803:216,-36,81,0,0,0.0763137 -37435,7803:215,-35,81,0,0,0.0763064 -37436,7803:114,-34,81,0,0,0.0762991 -37437,7803:113,-33,81,0,0,0.0762918 -37438,7803:112,-32,81,0,0,0.0763064 -37439,7803:111,-31,81,0,0,0.0763137 -37440,7803:110,-30,81,0,0,0.0762918 -37441,7802:219,-29,81,0,0,0.0762918 -37442,7802:218,-28,81,0,0,0.0762918 -37443,7802:217,-27,81,0,0,0.0762918 -37444,7802:216,-26,81,0,0,0.0763064 -37445,7802:215,-25,81,0,0,0.0763137 -37446,7802:114,-24,81,0,0,0.0762848 -37447,7802:113,-23,81,0,0,0.076234 -37448,7802:112,-22,81,0,0,0.0761907 -37449,7802:111,-21,81,0,0,0.0761689 -37450,7802:110,-20,81,0,0,0.0761327 -37451,7801:219,-19,81,0,0,0.0760822 -37452,7801:218,-18,81,0,0,0.0759595 -37453,7801:217,-17,81,0,0,0.0758155 -37454,7801:216,-16,81,0,0,0.0757075 -37455,7801:215,-15,81,0,0,0.075528 -37456,7801:114,-14,81,0,0,0.075442 -37457,7801:113,-13,81,0,0,0.0753631 -37458,7801:112,-12,81,0,0,0.0753272 -37459,7801:111,-11,81,0,0,0.075313 -37460,7801:110,-10,81,0,0,0.0752916 -37461,7800:219,-9,81,0,0,0.0752986 -37462,7800:218,-8,81,0,0,0.0754133 -37463,7800:217,-7,81,0,0,0.0759307 -37464,7800:216,-6,81,0,0,0.0765747 -37465,7800:215,-5,81,0,0,0.077532 -37466,7800:114,-4,81,0,0,0.0781812 -37467,7800:113,-3,81,0,0,0.0784108 -37468,7800:112,-2,81,0,0,0.0787159 -37469,7800:111,-1,81,0,0,0.0784777 -37470,1800:111,0,81,0,0,0.0777307 -37471,1800:111,1,81,0,0,0.0770338 -37472,1800:112,2,81,0,0,0.0769462 -37473,1800:113,3,81,0,0,0.0763137 -37474,1800:114,4,81,0,0,0.0763208 -37475,1800:215,5,81,0,0,0.0772018 -37476,1800:216,6,81,0,0,0.0779445 -37477,1800:219,9,81,0,0,0.07888 -37478,1801:110,10,81,0,0,0.076415 -37479,1801:111,11,81,0,0,0.0771873 -37480,1801:112,12,81,0,0,0.0779591 -37481,1801:113,13,81,0,0,0.0787382 -37482,1801:114,14,81,0,0,0.079254 -37483,1801:215,15,81,0,0,0.0802039 -37484,1812:217,127,81,0,0,0.0857286 -37485,1812:219,129,81,0,0,0.085359 -37486,1813:110,130,81,0,0,0.0858415 -37487,1813:111,131,81,0,0,0.084831 -37488,1813:112,132,81,0,0,0.0800146 -37489,1813:113,133,81,0,0,0.0806751 -37490,1813:114,134,81,0,0,0.0795092 -37491,1813:215,135,81,0,0,0.0774658 -37492,1813:216,136,81,0,0,0.0768221 -37493,1813:217,137,81,0,0,0.0763064 -37494,1813:218,138,81,0,0,0.0765022 -37495,1813:219,139,81,0,0,0.0764442 -37496,1814:110,140,81,0,0,0.0763933 -37497,1814:111,141,81,0,0,0.0762775 -37498,1814:112,142,81,0,0,0.076415 -37499,1814:113,143,81,0,0,0.0761907 -37500,1814:114,144,81,0,0,0.0759379 -37501,1814:215,145,81,0,0,0.075765 -37502,1814:216,146,81,0,0,0.0760749 -37503,1814:217,147,81,0,0,0.0762196 -37504,1814:218,148,81,0,0,0.0763208 -37505,1814:219,149,81,0,0,0.0766328 -37506,1815:110,150,81,0,0,0.0764223 -37507,1815:111,151,81,0,0,0.0755065 -37508,1815:112,152,81,0,0,0.0753917 -37509,1815:113,153,81,0,0,0.0754706 -37510,1815:114,154,81,0,0,0.075442 -37511,1815:215,155,81,0,0,0.0754634 -37512,1815:216,156,81,0,0,0.0754562 -37513,1815:217,157,81,0,0,0.0755207 -37514,1815:218,158,81,0,0,0.07565 -37515,1815:219,159,81,0,0,0.075758 -37516,1816:110,160,81,0,0,0.0757722 -37517,1816:111,161,81,0,0,0.0757937 -37518,1816:112,162,81,0,0,0.0758225 -37519,1816:113,163,81,0,0,0.0758803 -37520,1816:114,164,81,0,0,0.075974 -37521,1816:215,165,81,0,0,0.0761038 -37522,1816:216,166,81,0,0,0.0761761 -37523,1816:217,167,81,0,0,0.076205 -37524,1816:218,168,81,0,0,0.0762196 -37525,1816:219,169,81,0,0,0.076234 -37526,1817:110,170,81,0,0,0.0762558 -37527,1817:111,171,81,0,0,0.0762702 -37528,1817:112,172,81,0,0,0.0762558 -37529,1817:113,173,81,0,0,0.0762485 -37530,1817:114,174,81,0,0,0.0762558 -37531,1817:215,175,81,0,0,0.0762702 -37532,1817:216,176,81,0,0,0.0762848 -37533,1817:217,177,81,0,0,0.0762848 -37534,1817:218,178,81,0,0,0.0762918 -37535,1817:219,179,81,0,0,0.0762702 -37536,1818:110,180,81,0,0,0.0762558 -37537,7818:120,-180,82,0,0,0.0762629 -37538,7817:229,-179,82,0,0,0.0762629 -37539,7817:228,-178,82,0,0,0.0762848 -37540,7817:227,-177,82,0,0,0.0763137 -37541,7817:226,-176,82,0,0,0.07635 -37542,7817:225,-175,82,0,0,0.0763643 -37543,7817:124,-174,82,0,0,0.0763789 -37544,7817:123,-173,82,0,0,0.076386 -37545,7817:122,-172,82,0,0,0.0763933 -37546,7817:121,-171,82,0,0,0.0763933 -37547,7817:120,-170,82,0,0,0.0763716 -37548,7816:229,-169,82,0,0,0.0763427 -37549,7816:228,-168,82,0,0,0.0763354 -37550,7816:227,-167,82,0,0,0.0763643 -37551,7816:226,-166,82,0,0,0.0764732 -37552,7816:225,-165,82,0,0,0.0764949 -37553,7816:124,-164,82,0,0,0.0764369 -37554,7816:123,-163,82,0,0,0.0764803 -37555,7816:122,-162,82,0,0,0.0765384 -37556,7816:121,-161,82,0,0,0.0765893 -37557,7816:120,-160,82,0,0,0.0766692 -37558,7815:124,-154,82,0,0,0.0762558 -37559,7815:123,-153,82,0,0,0.07635 -37560,7815:122,-152,82,0,0,0.0765093 -37561,7815:121,-151,82,0,0,0.0766548 -37562,7815:120,-150,82,0,0,0.0766839 -37563,7814:228,-148,82,0,0,0.0767567 -37564,7814:227,-147,82,0,0,0.0768294 -37565,7814:226,-146,82,0,0,0.0768294 -37566,7813:226,-136,82,0,0,0.0777084 -37567,7813:225,-135,82,0,0,0.0776421 -37568,7813:123,-133,82,0,0,0.0789397 -37569,7808:120,-80,82,0,0,0.0803708 -37570,7807:228,-78,82,0,0,0.0778116 -37571,7807:227,-77,82,0,0,0.0776718 -37572,7806:122,-62,82,0,0,0.0765676 -37573,7806:121,-61,82,0,0,0.0763643 -37574,7806:120,-60,82,0,0,0.0763281 -37575,7805:229,-59,82,0,0,0.0763933 -37576,7805:228,-58,82,0,0,0.076386 -37577,7805:226,-56,82,0,0,0.0765313 -37578,7805:225,-55,82,0,0,0.0764803 -37579,7805:124,-54,82,0,0,0.0765166 -37580,7805:122,-52,82,0,0,0.0764659 -37581,7805:121,-51,82,0,0,0.0764876 -37582,7804:229,-49,82,0,0,0.0765313 -37583,7804:227,-47,82,0,0,0.0766692 -37584,7804:226,-46,82,0,0,0.0766401 -37585,7804:225,-45,82,0,0,0.0764296 -37586,7804:124,-44,82,0,0,0.0763281 -37587,7804:123,-43,82,0,0,0.0763354 -37588,7804:122,-42,82,0,0,0.0763427 -37589,7804:121,-41,82,0,0,0.07635 -37590,7804:120,-40,82,0,0,0.07635 -37591,7803:229,-39,82,0,0,0.0763427 -37592,7803:228,-38,82,0,0,0.07635 -37593,7803:227,-37,82,0,0,0.0763427 -37594,7803:226,-36,82,0,0,0.0763208 -37595,7803:225,-35,82,0,0,0.0762991 -37596,7803:124,-34,82,0,0,0.0762918 -37597,7803:123,-33,82,0,0,0.0762918 -37598,7803:122,-32,82,0,0,0.0762918 -37599,7803:121,-31,82,0,0,0.0763064 -37600,7803:120,-30,82,0,0,0.0762991 -37601,7802:229,-29,82,0,0,0.0762918 -37602,7802:228,-28,82,0,0,0.0762991 -37603,7802:227,-27,82,0,0,0.0763137 -37604,7802:226,-26,82,0,0,0.0763208 -37605,7802:225,-25,82,0,0,0.0763137 -37606,7802:124,-24,82,0,0,0.0762918 -37607,7802:123,-23,82,0,0,0.0762413 -37608,7802:122,-22,82,0,0,0.0761978 -37609,7802:121,-21,82,0,0,0.0761618 -37610,7802:120,-20,82,0,0,0.0760679 -37611,7801:229,-19,82,0,0,0.0759884 -37612,7801:228,-18,82,0,0,0.0759234 -37613,7801:227,-17,82,0,0,0.0758082 -37614,7801:226,-16,82,0,0,0.0756285 -37615,7801:225,-15,82,0,0,0.0755854 -37616,7801:124,-14,82,0,0,0.0756068 -37617,7801:123,-13,82,0,0,0.0754993 -37618,7801:122,-12,82,0,0,0.0753561 -37619,7801:121,-11,82,0,0,0.0753489 -37620,7801:120,-10,82,0,0,0.0753272 -37621,7800:229,-9,82,0,0,0.0753344 -37622,7800:228,-8,82,0,0,0.0753489 -37623,7800:227,-7,82,0,0,0.0754779 -37624,7800:226,-6,82,0,0,0.07614 -37625,7800:225,-5,82,0,0,0.0769024 -37626,7800:124,-4,82,0,0,0.0766983 -37627,7800:123,-3,82,0,0,0.0765166 -37628,7800:122,-2,82,0,0,0.0766111 -37629,7800:121,-1,82,0,0,0.0768585 -37630,1800:121,0,82,0,0,0.0766475 -37631,1800:121,1,82,0,0,0.076205 -37632,1800:122,2,82,0,0,0.0762196 -37633,1800:123,3,82,0,0,0.0760749 -37634,1800:124,4,82,0,0,0.0771433 -37635,1800:225,5,82,0,0,0.080022 -37636,1800:226,6,82,0,0,0.0803859 -37637,1800:227,7,82,0,0,0.079939 -37638,1800:228,8,82,0,0,0.080614 -37639,1800:229,9,82,0,0,0.0764949 -37640,1801:120,10,82,0,0,0.0772459 -37641,1801:121,11,82,0,0,0.0781884 -37642,1801:122,12,82,0,0,0.0795545 -37643,1801:123,13,82,0,0,0.0806445 -37644,1801:124,14,82,0,0,0.081471 -37645,1803:120,30,82,0,0,0.0895312 -37646,1811:228,118,82,0,0,0.089523 -37647,1811:229,119,82,0,0,0.0895062 -37648,1812:120,120,82,0,0,0.0895062 -37649,1812:121,121,82,0,0,0.0895062 -37650,1812:229,129,82,0,0,0.0830534 -37651,1813:120,130,82,0,0,0.0824683 -37652,1813:121,131,82,0,0,0.0837446 -37653,1813:122,132,82,0,0,0.0818408 -37654,1813:123,133,82,0,0,0.0807056 -37655,1813:124,134,82,0,0,0.0800296 -37656,1813:225,135,82,0,0,0.0785968 -37657,1813:226,136,82,0,0,0.0777821 -37658,1813:227,137,82,0,0,0.0770775 -37659,1813:228,138,82,0,0,0.0764223 -37660,1813:229,139,82,0,0,0.0762702 -37661,1814:120,140,82,0,0,0.0788053 -37662,1814:121,141,82,0,0,0.0789771 -37663,1814:122,142,82,0,0,0.0783812 -37664,1814:123,143,82,0,0,0.0779961 -37665,1814:124,144,82,0,0,0.0777821 -37666,1814:225,145,82,0,0,0.0759668 -37667,1814:226,146,82,0,0,0.0765313 -37668,1814:227,147,82,0,0,0.0759668 -37669,1814:228,148,82,0,0,0.0755854 -37670,1814:229,149,82,0,0,0.0771799 -37671,1815:120,150,82,0,0,0.0768294 -37672,1815:121,151,82,0,0,0.0755494 -37673,1815:122,152,82,0,0,0.0753917 -37674,1815:123,153,82,0,0,0.0753775 -37675,1815:124,154,82,0,0,0.0753272 -37676,1815:225,155,82,0,0,0.0753561 -37677,1815:226,156,82,0,0,0.0754203 -37678,1815:227,157,82,0,0,0.0754061 -37679,1815:228,158,82,0,0,0.0754921 -37680,1815:229,159,82,0,0,0.0756355 -37681,1816:120,160,82,0,0,0.0757362 -37682,1816:121,161,82,0,0,0.075765 -37683,1816:122,162,82,0,0,0.075765 -37684,1816:123,163,82,0,0,0.0757937 -37685,1816:124,164,82,0,0,0.0758803 -37686,1816:225,165,82,0,0,0.0760533 -37687,1816:226,166,82,0,0,0.0761545 -37688,1816:227,167,82,0,0,0.076205 -37689,1816:228,168,82,0,0,0.0762196 -37690,1816:229,169,82,0,0,0.0762413 -37691,1817:120,170,82,0,0,0.0762702 -37692,1817:121,171,82,0,0,0.0762775 -37693,1817:122,172,82,0,0,0.0762629 -37694,1817:123,173,82,0,0,0.0762629 -37695,1817:124,174,82,0,0,0.0762775 -37696,1817:225,175,82,0,0,0.0762848 -37697,1817:226,176,82,0,0,0.0762848 -37698,1817:227,177,82,0,0,0.0762848 -37699,1817:228,178,82,0,0,0.0762918 -37700,1817:229,179,82,0,0,0.0762775 -37701,1818:120,180,82,0,0,0.0762629 -37702,7818:130,-180,83,0,0,0.0762775 -37703,7817:239,-179,83,0,0,0.0762848 -37704,7817:238,-178,83,0,0,0.0763137 -37705,7817:237,-177,83,0,0,0.0763354 -37706,7817:236,-176,83,0,0,0.07635 -37707,7817:235,-175,83,0,0,0.0763571 -37708,7817:134,-174,83,0,0,0.0763571 -37709,7817:133,-173,83,0,0,0.0763643 -37710,7817:132,-172,83,0,0,0.0763716 -37711,7817:131,-171,83,0,0,0.0763643 -37712,7817:130,-170,83,0,0,0.0763354 -37713,7816:239,-169,83,0,0,0.0763354 -37714,7816:238,-168,83,0,0,0.0765313 -37715,7816:237,-167,83,0,0,0.0766184 -37716,7816:236,-166,83,0,0,0.0766257 -37717,7816:235,-165,83,0,0,0.0766038 -37718,7816:134,-164,83,0,0,0.0765457 -37719,7816:133,-163,83,0,0,0.0765022 -37720,7816:132,-162,83,0,0,0.0765022 -37721,7816:131,-161,83,0,0,0.0765384 -37722,7816:130,-160,83,0,0,0.0765384 -37723,7815:239,-159,83,0,0,0.0765022 -37724,7815:238,-158,83,0,0,0.0766692 -37725,7815:134,-154,83,0,0,0.0762775 -37726,7815:133,-153,83,0,0,0.0763571 -37727,7815:132,-152,83,0,0,0.076553 -37728,7815:131,-151,83,0,0,0.0766548 -37729,7815:130,-150,83,0,0,0.0766621 -37730,7813:237,-137,83,0,0,0.0776055 -37731,7813:236,-136,83,0,0,0.0777675 -37732,7813:133,-133,83,0,0,0.0792391 -37733,7808:131,-81,83,0,0,0.0791266 -37734,7807:238,-78,83,0,0,0.0777527 -37735,7806:134,-64,83,0,0,0.0766621 -37736,7806:133,-63,83,0,0,0.0766475 -37737,7806:132,-62,83,0,0,0.0765457 -37738,7806:131,-61,83,0,0,0.0763571 -37739,7806:130,-60,83,0,0,0.0762629 -37740,7805:236,-56,83,0,0,0.0766912 -37741,7805:235,-55,83,0,0,0.0765676 -37742,7805:134,-54,83,0,0,0.076582 -37743,7805:133,-53,83,0,0,0.076553 -37744,7805:132,-52,83,0,0,0.0765022 -37745,7805:131,-51,83,0,0,0.0765093 -37746,7805:130,-50,83,0,0,0.076553 -37747,7804:239,-49,83,0,0,0.0765967 -37748,7804:238,-48,83,0,0,0.0766038 -37749,7804:237,-47,83,0,0,0.0765384 -37750,7804:236,-46,83,0,0,0.0764513 -37751,7804:235,-45,83,0,0,0.0763281 -37752,7804:134,-44,83,0,0,0.07635 -37753,7804:133,-43,83,0,0,0.0763789 -37754,7804:132,-42,83,0,0,0.076386 -37755,7804:131,-41,83,0,0,0.0763716 -37756,7804:130,-40,83,0,0,0.0763643 -37757,7803:239,-39,83,0,0,0.0763571 -37758,7803:238,-38,83,0,0,0.0763571 -37759,7803:237,-37,83,0,0,0.0763354 -37760,7803:236,-36,83,0,0,0.0763064 -37761,7803:235,-35,83,0,0,0.0762775 -37762,7803:134,-34,83,0,0,0.0762702 -37763,7803:133,-33,83,0,0,0.0762848 -37764,7803:132,-32,83,0,0,0.0762848 -37765,7803:131,-31,83,0,0,0.0762848 -37766,7803:130,-30,83,0,0,0.0762918 -37767,7802:239,-29,83,0,0,0.0762848 -37768,7802:238,-28,83,0,0,0.0762775 -37769,7802:237,-27,83,0,0,0.0762775 -37770,7802:236,-26,83,0,0,0.0762702 -37771,7802:235,-25,83,0,0,0.0762848 -37772,7802:134,-24,83,0,0,0.0762775 -37773,7802:133,-23,83,0,0,0.0762413 -37774,7802:132,-22,83,0,0,0.0762123 -37775,7802:131,-21,83,0,0,0.0761689 -37776,7802:130,-20,83,0,0,0.0760895 -37777,7801:239,-19,83,0,0,0.0760245 -37778,7801:238,-18,83,0,0,0.0758658 -37779,7801:237,-17,83,0,0,0.0757435 -37780,7801:236,-16,83,0,0,0.075686 -37781,7801:235,-15,83,0,0,0.0757075 -37782,7801:134,-14,83,0,0,0.0757147 -37783,7801:133,-13,83,0,0,0.0755998 -37784,7801:132,-12,83,0,0,0.0754133 -37785,7801:131,-11,83,0,0,0.0753847 -37786,7801:130,-10,83,0,0,0.0753917 -37787,7800:239,-9,83,0,0,0.0753703 -37788,7800:238,-8,83,0,0,0.075313 -37789,7800:237,-7,83,0,0,0.0754275 -37790,7800:236,-6,83,0,0,0.0755926 -37791,7800:235,-5,83,0,0,0.076046 -37792,7800:134,-4,83,0,0,0.0760245 -37793,7800:133,-3,83,0,0,0.077063 -37794,7800:132,-2,83,0,0,0.0774584 -37795,7800:131,-1,83,0,0,0.0775762 -37796,1800:131,0,83,0,0,0.0777084 -37797,1800:131,1,83,0,0,0.0778634 -37798,1800:132,2,83,0,0,0.0776421 -37799,1800:133,3,83,0,0,0.0779149 -37800,1800:134,4,83,0,0,0.0781292 -37801,1800:235,5,83,0,0,0.0797805 -37802,1800:236,6,83,0,0,0.0799466 -37803,1800:237,7,83,0,0,0.0786861 -37804,1800:238,8,83,0,0,0.0762196 -37805,1800:239,9,83,0,0,0.0767785 -37806,1801:130,10,83,0,0,0.0780405 -37807,1801:131,11,83,0,0,0.0794416 -37808,1801:132,12,83,0,0,0.0802948 -37809,1801:133,13,83,0,0,0.081448 -37810,1801:134,14,83,0,0,0.0822588 -37811,1801:235,15,83,0,0,0.0829675 -37812,1801:236,16,83,0,0,0.0827254 -37813,1801:237,17,83,0,0,0.0852147 -37814,1801:238,18,83,0,0,0.0885065 -37815,1802:130,20,83,0,0,0.0895146 -37816,1802:131,21,83,0,0,0.0895146 -37817,1802:132,22,83,0,0,0.089523 -37818,1802:133,23,83,0,0,0.089523 -37819,1802:134,24,83,0,0,0.0895146 -37820,1802:235,25,83,0,0,0.0895146 -37821,1802:237,27,83,0,0,0.0894895 -37822,1802:238,28,83,0,0,0.0895062 -37823,1802:239,29,83,0,0,0.0895312 -37824,1811:237,117,83,0,0,0.089523 -37825,1811:238,118,83,0,0,0.0895062 -37826,1812:131,121,83,0,0,0.089523 -37827,1812:132,122,83,0,0,0.089523 -37828,1812:133,123,83,0,0,0.089523 -37829,1812:134,124,83,0,0,0.089523 -37830,1812:236,126,83,0,0,0.0895146 -37831,1812:237,127,83,0,0,0.0894977 -37832,1812:238,128,83,0,0,0.0885232 -37833,1813:130,130,83,0,0,0.0831004 -37834,1813:131,131,83,0,0,0.08222 -37835,1813:132,132,83,0,0,0.0818873 -37836,1813:133,133,83,0,0,0.0807971 -37837,1813:134,134,83,0,0,0.0799542 -37838,1813:235,135,83,0,0,0.0793815 -37839,1813:236,136,83,0,0,0.0776055 -37840,1813:237,137,83,0,0,0.0763208 -37841,1813:238,138,83,0,0,0.0769315 -37842,1813:239,139,83,0,0,0.080128 -37843,1814:130,140,83,0,0,0.0801509 -37844,1814:131,141,83,0,0,0.0799542 -37845,1814:132,142,83,0,0,0.0773852 -37846,1814:133,143,83,0,0,0.0765457 -37847,1814:134,144,83,0,0,0.0763281 -37848,1814:235,145,83,0,0,0.0764079 -37849,1814:236,146,83,0,0,0.0765022 -37850,1814:237,147,83,0,0,0.0766038 -37851,1814:238,148,83,0,0,0.0766111 -37852,1814:239,149,83,0,0,0.0763933 -37853,1815:130,150,83,0,0,0.0762196 -37854,1815:131,151,83,0,0,0.0763933 -37855,1815:132,152,83,0,0,0.0756932 -37856,1815:133,153,83,0,0,0.075442 -37857,1815:134,154,83,0,0,0.0753203 -37858,1815:235,155,83,0,0,0.0753561 -37859,1815:236,156,83,0,0,0.0753631 -37860,1815:237,157,83,0,0,0.0753775 -37861,1815:238,158,83,0,0,0.0753847 -37862,1815:239,159,83,0,0,0.0755781 -37863,1816:130,160,83,0,0,0.0756932 -37864,1816:131,161,83,0,0,0.0756645 -37865,1816:132,162,83,0,0,0.07565 -37866,1816:133,163,83,0,0,0.0757507 -37867,1816:134,164,83,0,0,0.0758874 -37868,1816:235,165,83,0,0,0.0759956 -37869,1816:236,166,83,0,0,0.0760606 -37870,1816:237,167,83,0,0,0.0761618 -37871,1816:238,168,83,0,0,0.0762123 -37872,1816:239,169,83,0,0,0.0762413 -37873,1817:130,170,83,0,0,0.0762848 -37874,1817:131,171,83,0,0,0.0762918 -37875,1817:132,172,83,0,0,0.0762848 -37876,1817:133,173,83,0,0,0.0762848 -37877,1817:134,174,83,0,0,0.0762848 -37878,1817:235,175,83,0,0,0.0762848 -37879,1817:236,176,83,0,0,0.0762918 -37880,1817:237,177,83,0,0,0.0762918 -37881,1817:238,178,83,0,0,0.0762848 -37882,1817:239,179,83,0,0,0.0762918 -37883,1818:130,180,83,0,0,0.0762775 -37884,7918:100,-180,90,0,0,0.0749916 -37885,7917:209,-179,90,0,0,0.0750201 -37886,7917:208,-178,90,0,0,0.0750201 -37887,7917:207,-177,90,0,0,0.0750416 -37888,7917:206,-176,90,0,0,0.0750488 -37889,7917:205,-175,90,0,0,0.0750558 -37890,7917:104,-174,90,0,0,0.0750702 -37891,7917:103,-173,90,0,0,0.0750773 -37892,7917:102,-172,90,0,0,0.0750843 -37893,7917:101,-171,90,0,0,0.0750843 -37894,7917:100,-170,90,0,0,0.0750915 -37895,7916:209,-169,90,0,0,0.0750987 -37896,7916:208,-168,90,0,0,0.0751059 -37897,7916:207,-167,90,0,0,0.0751128 -37898,7916:206,-166,90,0,0,0.0751059 -37899,7916:205,-165,90,0,0,0.0751059 -37900,7916:104,-164,90,0,0,0.0751059 -37901,7916:103,-163,90,0,0,0.0751128 -37902,7916:102,-162,90,0,0,0.0751128 -37903,7916:101,-161,90,0,0,0.07512 -37904,7916:100,-160,90,0,0,0.0751344 -37905,7915:209,-159,90,0,0,0.0751416 -37906,7915:208,-158,90,0,0,0.0751558 -37907,7915:207,-157,90,0,0,0.0751486 -37908,7915:206,-156,90,0,0,0.0751558 -37909,7915:205,-155,90,0,0,0.075163 -37910,7915:104,-154,90,0,0,0.0751486 -37911,7915:103,-153,90,0,0,0.075163 -37912,7915:102,-152,90,0,0,0.0751558 -37913,7915:101,-151,90,0,0,0.0751416 -37914,7915:100,-150,90,0,0,0.0751416 -37915,7914:209,-149,90,0,0,0.0751344 -37916,7914:208,-148,90,0,0,0.0751344 -37917,7914:207,-147,90,0,0,0.0751272 -37918,7914:206,-146,90,0,0,0.07512 -37919,7914:205,-145,90,0,0,0.07512 -37920,7914:104,-144,90,0,0,0.0751128 -37921,7914:103,-143,90,0,0,0.07512 -37922,7914:102,-142,90,0,0,0.0751128 -37923,7914:101,-141,90,0,0,0.0751128 -37924,7914:100,-140,90,0,0,0.07512 -37925,7913:209,-139,90,0,0,0.07512 -37926,7913:208,-138,90,0,0,0.0751272 -37927,7913:207,-137,90,0,0,0.07527 -37928,7913:206,-136,90,0,0,0.0758155 -37929,7913:205,-135,90,0,0,0.0776421 -37930,7913:104,-134,90,0,0,0.0779001 -37931,7911:100,-110,90,0,0,0.0832649 -37932,7910:209,-109,90,0,0,0.0880188 -37933,7910:206,-106,90,0,0,0.0759162 -37934,7910:205,-105,90,0,0,0.0753775 -37935,7910:104,-104,90,0,0,0.0768514 -37936,7910:103,-103,90,0,0,0.0810109 -37937,7906:101,-61,90,0,0,0.0753489 -37938,7906:100,-60,90,0,0,0.075163 -37939,7905:209,-59,90,0,0,0.0750201 -37940,7905:208,-58,90,0,0,0.074949 -37941,7905:207,-57,90,0,0,0.0749346 -37942,7905:206,-56,90,0,0,0.0749275 -37943,7905:205,-55,90,0,0,0.0749346 -37944,7905:104,-54,90,0,0,0.0749346 -37945,7905:103,-53,90,0,0,0.0749418 -37946,7905:102,-52,90,0,0,0.0749562 -37947,7905:101,-51,90,0,0,0.0749631 -37948,7905:100,-50,90,0,0,0.0749631 -37949,7904:209,-49,90,0,0,0.0749631 -37950,7904:208,-48,90,0,0,0.074949 -37951,7904:207,-47,90,0,0,0.0749703 -37952,7904:206,-46,90,0,0,0.0749988 -37953,7904:205,-45,90,0,0,0.0750273 -37954,7904:104,-44,90,0,0,0.0750201 -37955,7904:103,-43,90,0,0,0.0750201 -37956,7904:102,-42,90,0,0,0.0750131 -37957,7904:101,-41,90,0,0,0.0750201 -37958,7904:100,-40,90,0,0,0.0750345 -37959,7903:209,-39,90,0,0,0.0750345 -37960,7903:208,-38,90,0,0,0.0750345 -37961,7903:207,-37,90,0,0,0.0750345 -37962,7903:206,-36,90,0,0,0.0750345 -37963,7903:205,-35,90,0,0,0.0750416 -37964,7903:104,-34,90,0,0,0.0750345 -37965,7903:103,-33,90,0,0,0.0750345 -37966,7903:102,-32,90,0,0,0.0750416 -37967,7903:101,-31,90,0,0,0.0750488 -37968,7903:100,-30,90,0,0,0.0750488 -37969,7902:209,-29,90,0,0,0.0750488 -37970,7902:208,-28,90,0,0,0.0750345 -37971,7902:207,-27,90,0,0,0.0750201 -37972,7902:206,-26,90,0,0,0.0761183 -37973,7902:205,-25,90,0,0,0.0756715 -37974,7902:104,-24,90,0,0,0.0789397 -37975,1916:206,166,90,0,0,0.0752487 -37976,1916:207,167,90,0,0,0.075063 -37977,1916:208,168,90,0,0,0.0749846 -37978,1916:209,169,90,0,0,0.074899 -37979,1917:100,170,90,0,0,0.074892 -37980,1917:101,171,90,0,0,0.0748777 -37981,1917:102,172,90,0,0,0.0807894 -37982,1917:103,173,90,0,0,0.0878209 -37983,1917:104,174,90,0,0,0.087558 -37984,1917:205,175,90,0,0,0.0873776 -37985,1917:206,176,90,0,0,0.0863183 -37986,1917:207,177,90,0,0,0.0752844 -37987,1917:208,178,90,0,0,0.0748849 -37988,1917:209,179,90,0,0,0.074949 -37989,1918:100,180,90,0,0,0.0749916 - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/TGI1TlM2RjcrMmR1OUtmNGlWNFVMRVl6d09hWEYrd05HbWJQNStIS0N6Yz0 - The warnings from the underlying MaxEnt model - text/csv - - - http://data-d.d4science.org/TGI1TlM2RjcrMmR1OUtmNGlWNFVMRmEyV3I5bDJEQnFHbWJQNStIS0N6Yz0 - ASCII Maps of the environmental layers for checking features aligments - text/csv - - - http://data-d.d4science.org/NXNBN09EaVF1UFp1OUtmNGlWNFVMR05OR3FlNGpPb0NHbWJQNStIS0N6Yz0 - World Thumbnail - image/png - - - http://data-d.d4science.org/SzZaRHBaSmhwSmR1OUtmNGlWNFVMTXVqSFdROTFEUjZHbWJQNStIS0N6Yz0 - ROC Curve - image/png - - - http://data-d.d4science.org/TGJsd3BFbmhJWGx1OUtmNGlWNFVMTWZmVStUUlU0WjlHbWJQNStIS0N6Yz0 - Omission-Commission Curve - image/png - - - http://data-d.d4science.org/M1ZFbElJaGJOYjl1OUtmNGlWNFVMQzNQakl0OXc5b0ZHbWJQNStIS0N6Yz0 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - text/csv - - - - - - - - -2016-05-06 17:11:04 DEBUG SClient4WPS:875 - WPS SUCCESS -2016-05-06 17:11:04 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=100.0, status=COMPLETE, endDate=null, message=null, errResource=null] -2016-05-06 17:11:04 DEBUG Log:91 - getResourceByComputationId: ComputationId [id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f] -2016-05-06 17:11:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:11:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 17:11:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:11:04 DEBUG SClient4WPS:436 - RetrieveProcessResult: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f -2016-05-06 17:11:04 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=b56655c9-fadc-4a7d-ba52-1cf2e0d1253f -2016-05-06 17:11:04 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:11:04 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 17:11:04 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 17:11:04 DEBUG SClient4WPS:447 - Response: - - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - Process successful - - - - ASCII Maps of the environmental layers for checking features aligments - ASCII Maps of the environmental layers for checking features aligments - - _______________________________________________ __ ____ ______________________________________ _______________ - - - - - - -_______________________ _____ __ _ _ _ _____ ___________________________________________________________________________ ______ ___ __ ____ ___ ___________________________________________________ -_____________________ _____ ___ __ _ _ __ _____ ___ __ _ ______________________________________________________________ _ ____ ____________________________________________________ -________________ _____ ______ _ _____ _ ____________ _____ _______________________________________________________ _______ _ ____________________________________________________ -______________________ ______ _____ __ ______________ ____ _______________________________________________ _________ __________ _ __ ___________________________________________________ -__________________ __ _ ____ ____ ___ ______ __ ____ ____ _ _ _____________________________________ _ ________ _______________ _ ________________________________________________ -__________________ __ _____ _ _ ___ ___ _ ______ _________ _ __ _ ____________________________________ __________ _____________ ______________ _______________________________ -___________________ _ ____ _ _ ___ ___ __ _____ ___ __ ___ __ _________________________________ ____________ ___________ _________ ________________________________ -____________________ ______ _ ___ ______________ ___ __ ___ _ ____ _ _____________________________________________ ________ _______ _________________________________ -_________________________ __ _ _ ______ ____ ___________ __ __ _ ______________________________________________ __________ _____ _________________________________ -________________________ _______ __ _ ___ _ ___ __ __ _ _________________________________________________ _____ _______________________________________ -___________________________ ________ __ __________ __ ______ _ __ _______________________________________ ______ ____________________________________ -____________________________ ______ _____ _____ __ _ ____ ____ _______________ ____________________________ _ _____________________________________ -_____________________________________ _____ _ ___ ______ ________ __ ___________ _____________________________ ___________________________________ -____________________________________ ____ _ _ ___________ _________ _______________________ _ ____________________________________ -___________________________________ _____ _ ________ ___________ ____________________________ ________________________________________ -________________________________ ____ _ __________ _______________ ________________________ __ ________________________________________ -_______________________________ ___ _ _____________ _ _________________________________________ ______________________________________ -_______________________________ ___ __ _____________ _____________________________________________ ______________________________________ -_____________________________ _ _ ______________ ___________________________________ __ _______ ________________________ -_____________________________ ____ _ ____________ _ ____________________________ _ _ ______ _______________________ -__________________________ _ _ _______ ___________ ____________________________ __ ____________ ____________________ -______________________ _ _ ________ _ __________ __________________________ ______ __ ______ _________________________ -_______________ ______ _________ _ _________ __________________________ __ _ ___ _________________________ -____________ _________ ____________ _____________ __________________________ ______________________ -___________ ___________ __________ ___________ __________________________ ______________________ -__________ ________________ ___ __ ________ _ __________________________ ______________ __ -__________ ______________ ______ _ __________ _ __________________________ ___ ________________ -________ ____________________ ___ _ _______ ___________________________ ___ _ ___ ____ -___________ __________________ ________ _ ________ _____________________________ _ _ _ - ___________ ____________________ _____ ___________ __________________________________ __ - _ __ __________________ __ _ ___________ ___________________________________ ___ __ - ____ _________________ ___ _____________ _____________ ____________________ ____ __ _ -___ __________ _________________ __________________ ______________ _________________ ________ __ -____________ _ _ ______________ _________________ _______________ _________________ _____ ____ -____________ _ __________ ____________ ___________________ __________________ ____________________ ____ __ ___ -____________ _ _____________ _ ____________ ____ ______________ ________________________________________ _______ _ __ -_____________ __ _______________ ___________ __ ______________ _ ___________________________________ _____ _ __ ___ _ ______ -___________ ___ ____________________ _______ __ ________________ ___________________________________________ __ _____ __ _______ ________ -________________ ___ _ ___________________ _ ______ ________________________________________________________________ _ ____ __________ _____ ________________ -____________________ _ ________________________ ___ __________________________________________________ _ ___________ __ _____ ___________________ ________________ -___________________ _________________________ _ ___ __________________________________________________ _________ _____ __________________ ________________ -_________________ ___________________________ ___ __ ___________________________________________________ ___________ ___ _ __ ________________ ________________ -________________ __________________________________ ___ _________________________________________________ __________ __________________ _________________ -____________________________________________________ __ _____________________________________________ __ ______ ______________ ___ _____________ -____________ ______________________________________ ___________________________________________ _ ___ ____________ ____________________ -_____________________________________________________ _ ____________________________________________ __ __ _ ____________ _____________________ -_______________________________________________________ __ ___________________________________________ _____ _ _ ____________ _____________________ -_______________________________________________________ ____ _____ _________________________________________________ ____ _ ___________ _______________________ -________________________________________________________ _ ______ __________________________________________________ ___ __ ____________________________________ -________________________________________________________ ______ _______________________________________________ ___ __ ________________________________________ -________________________________________________________ ____ ______ _________________________________________________ __________ ___ ____________________________________ -________________________________________________________ __ __________________________________________________________ _ ____________ __________________________________________ -________________________________________________________ _ _____________________________________________________________ ___ _____________ _____ _____________________________________ -________________________________________________________ ____ ______________________________________________________________ ___ ____ ______________ _______ ___________________________________ -________________________________________________________ _____________________________________________________________ ________ _____ ___ _ __________ ____________________________________ -________________________________________________________ _____________________________________________________________ __________ __ __ __ _ __________ _______________________________________ -_________________________________________________________ ________________________________________________________________ _______ ______ ___ ___ ___ __ ____________ ______________________________________ -_________________________________________________________ __________________________________________________________________ ________ ______ ____ ___ _______ ____________ ______________________________________ -__________________________________________________________ _______________________________________________ ___________________ _____________ ______ ____ _ _____ __________ _______________________________________ -___________________________________________________________ ___________________________________________________________________ ________ _ ____________ ______ _ __ _____ _________ _______________________________________ -___________________________________________________________ ___________________________________________________________________________ _________________________ _______ _______ _______________________________________ -____________________________________________________________ _______________________________________________________________________ _________________________ ______ ____ _ _ __________________________________________ -_______________________________________________________________ ________________________________________________________________________ ________________________ _____ ___ _______________________________________________ -________________________________________________________________ _______________________________________________________________________ ____ ___________ __________ _________________________________________________ -________________________________________________________________ _ _______________________________________________________________________ __ _ __________________________________________________________ -_________________________________________________________________ _ ___ ______ _______________________________________________________________________ ___ __________________________________________________________ -__________________________________________________________________ _ ______________ _______________________________________________________________ _____ _ ___ ___________________________________________________________ -___________________________________________________________________ __ _______________ ___________________________________________________________________ __ ____ _ ____________________________________________________________ -____________________________________________________________________ __ ________________ __________________________________________________________________ __ ____ __ _____________________________________________________________ -_____________________________________________________________________ ___ __________________________________________________________________________________ __ __ ___________ __ __ ________________________________________________________ -__________________________________________________________________________ ______________ _______________________________________________________________ ___ _________ ____ ___________________________________________________________ -______________________ ____________________________________________________ _________ ___ ____ ___________________________________________________________ __ __________ _ _____ __ _____________________________________________________________________ -___________________________________________________________________________ ______ __________ __________________________________________________________ ____ _______________ _______ __________________________________________________________________________ -_____________________________________________________________________________ _ __________ ___ _ _ _________________________________________________ ____ ________________ __________ ___ __________ ___________________________________________________________ -________________________________________________________________________________ ________________________________________________________________________ __ _ ___________________ ____________ _____________ __________________________________________________________ -_______________________________________________________________________________________ ____________________________________________________________________ ___ _____________________ _ _________________ ____________ ___________________________________________________________ -_________________________________________________________________________________________ __________________________________________________________________ _ ________________________ _ __________________ ___________ _________________________________________________________ -_____________________________________________________________________________________________ _____________ _____________________________________________________ _ ____________________________ __ ____________ _____ _ _______________________________________________________________________ -_______________________________________________________________________________________________ _________ _ _____________________________________________________ ____ ______________________ ___ __________________ ____ ______________ _ _________________________________________ __ __________ -________________________________________________________________________________________________ _______ ________________________________________________ ______________________ ___ ___________________ ______ ____________ ___ _________________________________________________________ -__________________________________________________________________________________________________ __ ______________________________________________ _______________________ ____ __ _________________ _______________________ ______________________________________________________ -_______________________________________________________________________________________________________ ______________________________________________ ________________________ _______ __________________ _______________ _______ _______________________________________________________ -_______________________________________________________________________________________________________ ___________________________________________ ____ _______ ________________________ ______________________ __ ____________ _____________________________________________________________ -_______________________________________________________________________________________________________ _____________________________________________________________ __________________________ ________________________ __ __________ _______________________________________________________________ -______________________________________________________________________________________________________ ____________________________________________________________ ___________________________ _________________________ _ _______ _________ ____________________________________________________ -____________________________________________________________________________________________________ ____________________________________________________________ _____________________________ __________________________ ______ ___ ___ ____________________________________________________ -____________________________________________________________________________________________________ _______________________________________________________ _______________________________ _________________________ _ _____ __ _ _______ ______________________________________________ -____________________________________________________________________________________________________ _____________________________________________________ ________________________________ ____________________________ ____ ___ ___________ __ ________________________________________ -____________________________________________________________________________________________________ __________________________________________________ _________________________________ _____________________________ ________ ____ _ ____________ ________ ___________________________ -____________________________________________________________________________________________________ _______________________________________________ __________________________________ _______________________________ _____________ __ _______________ ____ __ _________________________ -_____________________________________________________________________________________________________ ________________________________________________ _________________________________ _________________________________ ________________________ _________ _______________________ -______________________________________________________________________________________________________ _________________________________________________ _________________________________ __________________________________________ ___ _____________ ___ ____________ ___________________ -______________________________________________________________________________________________________ __________________________________________________ _________________________________ _______________________________________________ __ ________________________ ______________________________ -_______________________________________________________________________________________________________ ___________________________________________________ __ _____________________________ _________________________________________________________ _ _________ _____________________________________ -________________________________________________________________________________________________________ ____________________________________________________ ________ _______________________ _________________________________________________________ _____ _____________________________________ -_________________________________________________________________________________________________________ ____________________________________________________ _______ _______________________ ____________________________________________________ _ ______ ___________________________________ -__________________________________________________________________________________________________________ ___________________________________________________ _____ _______________________ ___________________________________________________ ____ ___________________________________ -_____________________________________________________________________________________________________________ ___________________________________________________ ______ _______________________ _________________________________________________ __ __________________________________ -______________________________________________________________________________________________________________ ____________________________________________________ _________ ________________________ ________________________________________________ __________________________________ -______________________________________________________________________________________________________________ ______________________________________________________ _________ ________________________ _____________________________________________ _______________________________ -______________________________________________________________________________________________________________ _______________________________________________________ ________ _________________________ _________________________________________ _______________________________ -______________________________________________________________________________________________________________ ___________________________________________________________ ________ _________________________ _________________________________________ _____________________________ -______________________________________________________________________________________________________________ ______________________________________________________________ _________ __________________________ ________________________________________ ____________________________ -______________________________________________________________________________________________________________ _______________________________________________________________ ________________________________________ _________________________________________ ___________________________ -______________________________________________________________________________________________________________ ________________________________________________________________ ________________________________________ _________________________________________ ___________________________ -_____________________________________________________________________________________________________________ __________________________________________________________________ _________________________________________ _________________________________________ ___________________________ -_____________________________________________________________________________________________________________ ___________________________________________________________________ __________________________________________ __________________________________________ ___________________________ -_____________________________________________________________________________________________________________ _____________________________________________________________________ ___________________________________________ __________________________________________ ___________________________ -_____________________________________________________________________________________________________________ ______________________________________________________________________ _____________________________________________ __________________________________________ _________ ____________________________ -_____________________________________________________________________________________________________________ ________________________________________________________________________ ________________________________________________ __________________________________________ ________________ _ _____________________________ -____________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ _________________________________________________________________ _______________________ ______ -____________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________ ___________________________________________________________________ ________________________ _____ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ ___________________________________________________________________ __________________________ ____ -___________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________ __ -___________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ ___ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ _______________________________________________________________________ ________________________ ____ -__________________________________________________________________________________________________________ _ ________________________________________________________________________________________________________________________________________ ________________________________________________________________________ _______________________ _______ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ _________________________________________________________________________ ______________________ _______ -__________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________ _________ -__________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________ __________ -__________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ ________ ___________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -___________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -___________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_______________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_______________________________________________________________________________________________________________________ _ _________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -____________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________ ______________________ ___________________________________ _____________________________________________ -__________________________________________________________________________________________________________________ _ _____________________________________________________________________________________________________________________________________ ______________________ ________ _____________________ _____________________________________________ -__________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________ ________________ ________ _ ______ ___ _ _______ ____ __________________________________________ -________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________ _ _______________ _________ ____________________________________ -_______________________________________________________________________________________________________________ _ ___________________________________________________________________________________________________________ _ ________ ________ ___________________________________ -_________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ ___ ______ ________________________________ -_________________________________________________________________________________________________________________ ______________________________________________________________________________________________ ______ _ _____ _________________________ -____________________________________________________________________________________________________________ __ ___________________________________________________________________________________________ ____ ____ _______________________ -____________________________________________________________________________________________________________ _ ___________________________________________________________________________ ___________ ____________________ -__________________________________________________________________________________________________________ _______________________________________________________ _________________ -_________________________________________________________________________________________________________ ___________________________________________________ ____________ -___________________________________________________________________________________________________________ ________________________________________________ ___________ -_________________________________________________________________________________ _______________________ ________________________________________________ _________ -______________________________________________________________________________ ______________________ ______________________________________________ __________ -_____________________________________________________________________________ __________ ___ ____________________________________________ __________ -_____________________________________________________________________________ _____ ________________________________________ ___________ -_____________________________________________________ ______________ ______ __ _________________________________________ _____________ -_____________________________________________________ _ _ ____ ______ _________________________________________ ______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ - - - - OutputTable7 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - id,csquarecode,x,y,z,time,fvalue -1,5918:100,-180,-90,0,0,0.0749916 -2,5917:209,-179,-90,0,0,0.0750201 -3,5917:208,-178,-90,0,0,0.0750201 -4,5917:207,-177,-90,0,0,0.0750416 -5,5917:206,-176,-90,0,0,0.0750488 -6,5917:205,-175,-90,0,0,0.0750558 -7,5917:104,-174,-90,0,0,0.0750702 -8,5917:103,-173,-90,0,0,0.0750773 -9,5917:102,-172,-90,0,0,0.0750843 -10,5917:101,-171,-90,0,0,0.0750843 -11,5917:100,-170,-90,0,0,0.0750915 -12,5916:209,-169,-90,0,0,0.0750987 -13,5916:208,-168,-90,0,0,0.0751059 -14,5916:207,-167,-90,0,0,0.0751128 -15,5916:206,-166,-90,0,0,0.0751059 -16,5916:205,-165,-90,0,0,0.0751059 -17,5916:104,-164,-90,0,0,0.0751059 -18,5916:103,-163,-90,0,0,0.0751128 -19,5916:102,-162,-90,0,0,0.0751128 -20,5916:101,-161,-90,0,0,0.07512 -21,5916:100,-160,-90,0,0,0.0751344 -22,5915:209,-159,-90,0,0,0.0751416 -23,5915:208,-158,-90,0,0,0.0751558 -24,5915:207,-157,-90,0,0,0.0751486 -25,5915:206,-156,-90,0,0,0.0751558 -26,5915:205,-155,-90,0,0,0.075163 -27,5915:104,-154,-90,0,0,0.0751486 -28,5915:103,-153,-90,0,0,0.075163 -29,5915:102,-152,-90,0,0,0.0751558 -30,5915:101,-151,-90,0,0,0.0751416 -31,5915:100,-150,-90,0,0,0.0751416 -32,5914:209,-149,-90,0,0,0.0751344 -33,5914:208,-148,-90,0,0,0.0751344 -34,5914:207,-147,-90,0,0,0.0751272 -35,5914:206,-146,-90,0,0,0.07512 -36,5914:205,-145,-90,0,0,0.07512 -37,5914:104,-144,-90,0,0,0.0751128 -38,5914:103,-143,-90,0,0,0.07512 -39,5914:102,-142,-90,0,0,0.0751128 -40,5914:101,-141,-90,0,0,0.0751128 -41,5914:100,-140,-90,0,0,0.07512 -42,5913:209,-139,-90,0,0,0.07512 -43,5913:208,-138,-90,0,0,0.0751272 -44,5913:207,-137,-90,0,0,0.07527 -45,5913:206,-136,-90,0,0,0.0758155 -46,5913:205,-135,-90,0,0,0.0776421 -47,5913:104,-134,-90,0,0,0.0779001 -48,5911:100,-110,-90,0,0,0.0832649 -49,5910:209,-109,-90,0,0,0.0880188 -50,5910:206,-106,-90,0,0,0.0759162 -51,5910:205,-105,-90,0,0,0.0753775 -52,5910:104,-104,-90,0,0,0.0768514 -53,5910:103,-103,-90,0,0,0.0810109 -54,5906:101,-61,-90,0,0,0.0753489 -55,5906:100,-60,-90,0,0,0.075163 -56,5905:209,-59,-90,0,0,0.0750201 -57,5905:208,-58,-90,0,0,0.074949 -58,5905:207,-57,-90,0,0,0.0749346 -59,5905:206,-56,-90,0,0,0.0749275 -60,5905:205,-55,-90,0,0,0.0749346 -61,5905:104,-54,-90,0,0,0.0749346 -62,5905:103,-53,-90,0,0,0.0749418 -63,5905:102,-52,-90,0,0,0.0749562 -64,5905:101,-51,-90,0,0,0.0749631 -65,5905:100,-50,-90,0,0,0.0749631 -66,5904:209,-49,-90,0,0,0.0749631 -67,5904:208,-48,-90,0,0,0.074949 -68,5904:207,-47,-90,0,0,0.0749703 -69,5904:206,-46,-90,0,0,0.0749988 -70,5904:205,-45,-90,0,0,0.0750273 -71,5904:104,-44,-90,0,0,0.0750201 -72,5904:103,-43,-90,0,0,0.0750201 -73,5904:102,-42,-90,0,0,0.0750131 -74,5904:101,-41,-90,0,0,0.0750201 -75,5904:100,-40,-90,0,0,0.0750345 -76,5903:209,-39,-90,0,0,0.0750345 -77,5903:208,-38,-90,0,0,0.0750345 -78,5903:207,-37,-90,0,0,0.0750345 -79,5903:206,-36,-90,0,0,0.0750345 -80,5903:205,-35,-90,0,0,0.0750416 -81,5903:104,-34,-90,0,0,0.0750345 -82,5903:103,-33,-90,0,0,0.0750345 -83,5903:102,-32,-90,0,0,0.0750416 -84,5903:101,-31,-90,0,0,0.0750488 -85,5903:100,-30,-90,0,0,0.0750488 -86,5902:209,-29,-90,0,0,0.0750488 -87,5902:208,-28,-90,0,0,0.0750345 -88,5902:207,-27,-90,0,0,0.0750201 -89,5902:206,-26,-90,0,0,0.0761183 -90,5902:205,-25,-90,0,0,0.0756715 -91,5902:104,-24,-90,0,0,0.0789397 -92,3916:206,166,-90,0,0,0.0752487 -93,3916:207,167,-90,0,0,0.075063 -94,3916:208,168,-90,0,0,0.0749846 -95,3916:209,169,-90,0,0,0.074899 -96,3917:100,170,-90,0,0,0.074892 -97,3917:101,171,-90,0,0,0.0748777 -98,3917:102,172,-90,0,0,0.0807894 -99,3917:103,173,-90,0,0,0.0878209 -100,3917:104,174,-90,0,0,0.087558 -101,3917:205,175,-90,0,0,0.0873776 -102,3917:206,176,-90,0,0,0.0863183 -103,3917:207,177,-90,0,0,0.0752844 -104,3917:208,178,-90,0,0,0.0748849 -105,3917:209,179,-90,0,0,0.074949 -106,3918:100,180,-90,0,0,0.0749916 -107,5818:390,-180,-89,0,0,0.0749916 -108,5817:499,-179,-89,0,0,0.0750201 -109,5817:498,-178,-89,0,0,0.0750201 -110,5817:497,-177,-89,0,0,0.0750416 -111,5817:496,-176,-89,0,0,0.0750488 -112,5817:495,-175,-89,0,0,0.0750558 -113,5817:394,-174,-89,0,0,0.0750702 -114,5817:393,-173,-89,0,0,0.0750773 -115,5817:392,-172,-89,0,0,0.0750843 -116,5817:391,-171,-89,0,0,0.0750843 -117,5817:390,-170,-89,0,0,0.0750915 -118,5816:499,-169,-89,0,0,0.0750987 -119,5816:498,-168,-89,0,0,0.0751059 -120,5816:497,-167,-89,0,0,0.0751128 -121,5816:496,-166,-89,0,0,0.0751059 -122,5816:495,-165,-89,0,0,0.0751059 -123,5816:394,-164,-89,0,0,0.0751059 -124,5816:393,-163,-89,0,0,0.0751128 -125,5816:392,-162,-89,0,0,0.0751128 -126,5816:391,-161,-89,0,0,0.07512 -127,5816:390,-160,-89,0,0,0.0751344 -128,5815:499,-159,-89,0,0,0.0751416 -129,5815:498,-158,-89,0,0,0.0751558 -130,5815:497,-157,-89,0,0,0.0751486 -131,5815:496,-156,-89,0,0,0.0751558 -132,5815:495,-155,-89,0,0,0.075163 -133,5815:394,-154,-89,0,0,0.0751486 -134,5815:393,-153,-89,0,0,0.075163 -135,5815:392,-152,-89,0,0,0.0751558 -136,5815:391,-151,-89,0,0,0.0751416 -137,5815:390,-150,-89,0,0,0.0751416 -138,5814:499,-149,-89,0,0,0.0751344 -139,5814:498,-148,-89,0,0,0.0751344 -140,5814:497,-147,-89,0,0,0.0751272 -141,5814:496,-146,-89,0,0,0.07512 -142,5814:495,-145,-89,0,0,0.07512 -143,5814:394,-144,-89,0,0,0.0751128 -144,5814:393,-143,-89,0,0,0.07512 -145,5814:392,-142,-89,0,0,0.0751128 -146,5814:391,-141,-89,0,0,0.0751128 -147,5814:390,-140,-89,0,0,0.07512 -148,5813:499,-139,-89,0,0,0.07512 -149,5813:498,-138,-89,0,0,0.0751272 -150,5813:497,-137,-89,0,0,0.07527 -151,5813:496,-136,-89,0,0,0.0758155 -152,5813:495,-135,-89,0,0,0.0776421 -153,5813:394,-134,-89,0,0,0.0779001 -154,5811:390,-110,-89,0,0,0.0832649 -155,5810:499,-109,-89,0,0,0.0880188 -156,5810:496,-106,-89,0,0,0.0759162 -157,5810:495,-105,-89,0,0,0.0753775 -158,5810:394,-104,-89,0,0,0.0768514 -159,5810:393,-103,-89,0,0,0.0810109 -160,5806:391,-61,-89,0,0,0.0753489 -161,5806:390,-60,-89,0,0,0.075163 -162,5805:499,-59,-89,0,0,0.0750201 -163,5805:498,-58,-89,0,0,0.074949 -164,5805:497,-57,-89,0,0,0.0749346 -165,5805:496,-56,-89,0,0,0.0749275 -166,5805:495,-55,-89,0,0,0.0749346 -167,5805:394,-54,-89,0,0,0.0749346 -168,5805:393,-53,-89,0,0,0.0749418 -169,5805:392,-52,-89,0,0,0.0749562 -170,5805:391,-51,-89,0,0,0.0749631 -171,5805:390,-50,-89,0,0,0.0749631 -172,5804:499,-49,-89,0,0,0.0749631 -173,5804:498,-48,-89,0,0,0.074949 -174,5804:497,-47,-89,0,0,0.0749703 -175,5804:496,-46,-89,0,0,0.0749988 -176,5804:495,-45,-89,0,0,0.0750273 -177,5804:394,-44,-89,0,0,0.0750201 -178,5804:393,-43,-89,0,0,0.0750201 -179,5804:392,-42,-89,0,0,0.0750131 -180,5804:391,-41,-89,0,0,0.0750201 -181,5804:390,-40,-89,0,0,0.0750345 -182,5803:499,-39,-89,0,0,0.0750345 -183,5803:498,-38,-89,0,0,0.0750345 -184,5803:497,-37,-89,0,0,0.0750345 -185,5803:496,-36,-89,0,0,0.0750345 -186,5803:495,-35,-89,0,0,0.0750416 -187,5803:394,-34,-89,0,0,0.0750345 -188,5803:393,-33,-89,0,0,0.0750345 -189,5803:392,-32,-89,0,0,0.0750416 -190,5803:391,-31,-89,0,0,0.0750488 -191,5803:390,-30,-89,0,0,0.0750488 -192,5802:499,-29,-89,0,0,0.0750488 -193,5802:498,-28,-89,0,0,0.0750345 -194,5802:497,-27,-89,0,0,0.0750201 -195,5802:496,-26,-89,0,0,0.0761183 -196,5802:495,-25,-89,0,0,0.0756715 -197,5802:394,-24,-89,0,0,0.0789397 -198,3816:496,166,-89,0,0,0.0752487 -199,3816:497,167,-89,0,0,0.075063 -200,3816:498,168,-89,0,0,0.0749846 -201,3816:499,169,-89,0,0,0.074899 -202,3817:390,170,-89,0,0,0.074892 -203,3817:391,171,-89,0,0,0.0748777 -204,3817:392,172,-89,0,0,0.0807894 -205,3817:393,173,-89,0,0,0.0878209 -206,3817:394,174,-89,0,0,0.087558 -207,3817:495,175,-89,0,0,0.0873776 -208,3817:496,176,-89,0,0,0.0863183 -209,3817:497,177,-89,0,0,0.0752844 -210,3817:498,178,-89,0,0,0.0748849 -211,3817:499,179,-89,0,0,0.074949 -212,3818:390,180,-89,0,0,0.0749916 -213,5818:380,-180,-88,0,0,0.0749916 -214,5817:489,-179,-88,0,0,0.0750201 -215,5817:488,-178,-88,0,0,0.0750201 -216,5817:487,-177,-88,0,0,0.0750416 -217,5817:486,-176,-88,0,0,0.0750488 -218,5817:485,-175,-88,0,0,0.0750558 -219,5817:384,-174,-88,0,0,0.0750702 -220,5817:383,-173,-88,0,0,0.0750773 -221,5817:382,-172,-88,0,0,0.0750843 -222,5817:381,-171,-88,0,0,0.0750843 -223,5817:380,-170,-88,0,0,0.0750915 -224,5816:489,-169,-88,0,0,0.0750987 -225,5816:488,-168,-88,0,0,0.0751059 -226,5816:487,-167,-88,0,0,0.0751128 -227,5816:486,-166,-88,0,0,0.0751059 -228,5816:485,-165,-88,0,0,0.0751059 -229,5816:384,-164,-88,0,0,0.0751059 -230,5816:383,-163,-88,0,0,0.0751128 -231,5816:382,-162,-88,0,0,0.0751128 -232,5816:381,-161,-88,0,0,0.07512 -233,5816:380,-160,-88,0,0,0.0751344 -234,5815:489,-159,-88,0,0,0.0751416 -235,5815:488,-158,-88,0,0,0.0751558 -236,5815:487,-157,-88,0,0,0.0751486 -237,5815:486,-156,-88,0,0,0.0751558 -238,5815:485,-155,-88,0,0,0.075163 -239,5815:384,-154,-88,0,0,0.0751486 -240,5815:383,-153,-88,0,0,0.075163 -241,5815:382,-152,-88,0,0,0.0751558 -242,5815:381,-151,-88,0,0,0.0751416 -243,5815:380,-150,-88,0,0,0.0751416 -244,5814:489,-149,-88,0,0,0.0751344 -245,5814:488,-148,-88,0,0,0.0751344 -246,5814:487,-147,-88,0,0,0.0751272 -247,5814:486,-146,-88,0,0,0.07512 -248,5814:485,-145,-88,0,0,0.07512 -249,5814:384,-144,-88,0,0,0.0751128 -250,5814:383,-143,-88,0,0,0.07512 -251,5814:382,-142,-88,0,0,0.0751128 -252,5814:381,-141,-88,0,0,0.0751128 -253,5814:380,-140,-88,0,0,0.07512 -254,5813:489,-139,-88,0,0,0.07512 -255,5813:488,-138,-88,0,0,0.0751272 -256,5813:487,-137,-88,0,0,0.07527 -257,5813:486,-136,-88,0,0,0.0758155 -258,5813:485,-135,-88,0,0,0.0776421 -259,5813:384,-134,-88,0,0,0.0779001 -260,5811:380,-110,-88,0,0,0.0832649 -261,5810:489,-109,-88,0,0,0.0880188 -262,5810:486,-106,-88,0,0,0.0759162 -263,5810:485,-105,-88,0,0,0.0753775 -264,5810:384,-104,-88,0,0,0.0768514 -265,5810:383,-103,-88,0,0,0.0810109 -266,5806:381,-61,-88,0,0,0.0753489 -267,5806:380,-60,-88,0,0,0.075163 -268,5805:489,-59,-88,0,0,0.0750201 -269,5805:488,-58,-88,0,0,0.074949 -270,5805:487,-57,-88,0,0,0.0749346 -271,5805:486,-56,-88,0,0,0.0749275 -272,5805:485,-55,-88,0,0,0.0749346 -273,5805:384,-54,-88,0,0,0.0749346 -274,5805:383,-53,-88,0,0,0.0749418 -275,5805:382,-52,-88,0,0,0.0749562 -276,5805:381,-51,-88,0,0,0.0749631 -277,5805:380,-50,-88,0,0,0.0749631 -278,5804:489,-49,-88,0,0,0.0749631 -279,5804:488,-48,-88,0,0,0.074949 -280,5804:487,-47,-88,0,0,0.0749703 -281,5804:486,-46,-88,0,0,0.0749988 -282,5804:485,-45,-88,0,0,0.0750273 -283,5804:384,-44,-88,0,0,0.0750201 -284,5804:383,-43,-88,0,0,0.0750201 -285,5804:382,-42,-88,0,0,0.0750131 -286,5804:381,-41,-88,0,0,0.0750201 -287,5804:380,-40,-88,0,0,0.0750345 -288,5803:489,-39,-88,0,0,0.0750345 -289,5803:488,-38,-88,0,0,0.0750345 -290,5803:487,-37,-88,0,0,0.0750345 -291,5803:486,-36,-88,0,0,0.0750345 -292,5803:485,-35,-88,0,0,0.0750416 -293,5803:384,-34,-88,0,0,0.0750345 -294,5803:383,-33,-88,0,0,0.0750345 -295,5803:382,-32,-88,0,0,0.0750416 -296,5803:381,-31,-88,0,0,0.0750488 -297,5803:380,-30,-88,0,0,0.0750488 -298,5802:489,-29,-88,0,0,0.0750488 -299,5802:488,-28,-88,0,0,0.0750345 -300,5802:487,-27,-88,0,0,0.0750201 -301,5802:486,-26,-88,0,0,0.0761183 -302,5802:485,-25,-88,0,0,0.0756715 -303,5802:384,-24,-88,0,0,0.0789397 -304,3816:486,166,-88,0,0,0.0752487 -305,3816:487,167,-88,0,0,0.075063 -306,3816:488,168,-88,0,0,0.0749846 -307,3816:489,169,-88,0,0,0.074899 -308,3817:380,170,-88,0,0,0.074892 -309,3817:381,171,-88,0,0,0.0748777 -310,3817:382,172,-88,0,0,0.0807894 -311,3817:383,173,-88,0,0,0.0878209 -312,3817:384,174,-88,0,0,0.087558 -313,3817:485,175,-88,0,0,0.0873776 -314,3817:486,176,-88,0,0,0.0863183 -315,3817:487,177,-88,0,0,0.0752844 -316,3817:488,178,-88,0,0,0.0748849 -317,3817:489,179,-88,0,0,0.074949 -318,3818:380,180,-88,0,0,0.0749916 -319,5818:370,-180,-87,0,0,0.0749916 -320,5817:479,-179,-87,0,0,0.0750201 -321,5817:478,-178,-87,0,0,0.0750201 -322,5817:477,-177,-87,0,0,0.0750416 -323,5817:476,-176,-87,0,0,0.0750488 -324,5817:475,-175,-87,0,0,0.0750558 -325,5817:374,-174,-87,0,0,0.0750702 -326,5817:373,-173,-87,0,0,0.0750773 -327,5817:372,-172,-87,0,0,0.0750843 -328,5817:371,-171,-87,0,0,0.0750843 -329,5817:370,-170,-87,0,0,0.0750915 -330,5816:479,-169,-87,0,0,0.0750987 -331,5816:478,-168,-87,0,0,0.0751059 -332,5816:477,-167,-87,0,0,0.0751128 -333,5816:476,-166,-87,0,0,0.0751059 -334,5816:475,-165,-87,0,0,0.0751059 -335,5816:374,-164,-87,0,0,0.0751059 -336,5816:373,-163,-87,0,0,0.0751128 -337,5816:372,-162,-87,0,0,0.0751128 -338,5816:371,-161,-87,0,0,0.07512 -339,5816:370,-160,-87,0,0,0.0751344 -340,5815:479,-159,-87,0,0,0.0751416 -341,5815:478,-158,-87,0,0,0.0751558 -342,5815:477,-157,-87,0,0,0.0751486 -343,5815:476,-156,-87,0,0,0.0751558 -344,5815:475,-155,-87,0,0,0.075163 -345,5815:374,-154,-87,0,0,0.0751486 -346,5815:373,-153,-87,0,0,0.075163 -347,5815:372,-152,-87,0,0,0.0751558 -348,5815:371,-151,-87,0,0,0.0751416 -349,5815:370,-150,-87,0,0,0.0751416 -350,5814:479,-149,-87,0,0,0.0751344 -351,5814:478,-148,-87,0,0,0.0751344 -352,5814:477,-147,-87,0,0,0.0751272 -353,5814:476,-146,-87,0,0,0.07512 -354,5814:475,-145,-87,0,0,0.07512 -355,5814:374,-144,-87,0,0,0.0751128 -356,5814:373,-143,-87,0,0,0.07512 -357,5814:372,-142,-87,0,0,0.0751128 -358,5814:371,-141,-87,0,0,0.0751128 -359,5814:370,-140,-87,0,0,0.07512 -360,5813:479,-139,-87,0,0,0.07512 -361,5813:478,-138,-87,0,0,0.0751272 -362,5813:477,-137,-87,0,0,0.07527 -363,5813:476,-136,-87,0,0,0.0758155 -364,5813:475,-135,-87,0,0,0.0776421 -365,5813:374,-134,-87,0,0,0.0779001 -366,5811:370,-110,-87,0,0,0.0832649 -367,5810:479,-109,-87,0,0,0.0880188 -368,5810:476,-106,-87,0,0,0.0759162 -369,5810:475,-105,-87,0,0,0.0753775 -370,5810:374,-104,-87,0,0,0.0768514 -371,5810:373,-103,-87,0,0,0.0810109 -372,5806:371,-61,-87,0,0,0.0753489 -373,5806:370,-60,-87,0,0,0.075163 -374,5805:479,-59,-87,0,0,0.0750201 -375,5805:478,-58,-87,0,0,0.074949 -376,5805:477,-57,-87,0,0,0.0749346 -377,5805:476,-56,-87,0,0,0.0749275 -378,5805:475,-55,-87,0,0,0.0749346 -379,5805:374,-54,-87,0,0,0.0749346 -380,5805:373,-53,-87,0,0,0.0749418 -381,5805:372,-52,-87,0,0,0.0749562 -382,5805:371,-51,-87,0,0,0.0749631 -383,5805:370,-50,-87,0,0,0.0749631 -384,5804:479,-49,-87,0,0,0.0749631 -385,5804:478,-48,-87,0,0,0.074949 -386,5804:477,-47,-87,0,0,0.0749703 -387,5804:476,-46,-87,0,0,0.0749988 -388,5804:475,-45,-87,0,0,0.0750273 -389,5804:374,-44,-87,0,0,0.0750201 -390,5804:373,-43,-87,0,0,0.0750201 -391,5804:372,-42,-87,0,0,0.0750131 -392,5804:371,-41,-87,0,0,0.0750201 -393,5804:370,-40,-87,0,0,0.0750345 -394,5803:479,-39,-87,0,0,0.0750345 -395,5803:478,-38,-87,0,0,0.0750345 -396,5803:477,-37,-87,0,0,0.0750345 -397,5803:476,-36,-87,0,0,0.0750345 -398,5803:475,-35,-87,0,0,0.0750416 -399,5803:374,-34,-87,0,0,0.0750345 -400,5803:373,-33,-87,0,0,0.0750345 -401,5803:372,-32,-87,0,0,0.0750416 -402,5803:371,-31,-87,0,0,0.0750488 -403,5803:370,-30,-87,0,0,0.0750488 -404,5802:479,-29,-87,0,0,0.0750488 -405,5802:478,-28,-87,0,0,0.0750345 -406,5802:477,-27,-87,0,0,0.0750201 -407,5802:476,-26,-87,0,0,0.0761183 -408,5802:475,-25,-87,0,0,0.0756715 -409,5802:374,-24,-87,0,0,0.0789397 -410,3816:476,166,-87,0,0,0.0752487 -411,3816:477,167,-87,0,0,0.075063 -412,3816:478,168,-87,0,0,0.0749846 -413,3816:479,169,-87,0,0,0.074899 -414,3817:370,170,-87,0,0,0.074892 -415,3817:371,171,-87,0,0,0.0748777 -416,3817:372,172,-87,0,0,0.0807894 -417,3817:373,173,-87,0,0,0.0878209 -418,3817:374,174,-87,0,0,0.087558 -419,3817:475,175,-87,0,0,0.0873776 -420,3817:476,176,-87,0,0,0.0863183 -421,3817:477,177,-87,0,0,0.0752844 -422,3817:478,178,-87,0,0,0.0748849 -423,3817:479,179,-87,0,0,0.074949 -424,3818:370,180,-87,0,0,0.0749916 -425,5818:360,-180,-86,0,0,0.0749916 -426,5817:469,-179,-86,0,0,0.0750201 -427,5817:468,-178,-86,0,0,0.0750201 -428,5817:467,-177,-86,0,0,0.0750416 -429,5817:466,-176,-86,0,0,0.0750488 -430,5817:465,-175,-86,0,0,0.0750558 -431,5817:364,-174,-86,0,0,0.0750702 -432,5817:363,-173,-86,0,0,0.0750773 -433,5817:362,-172,-86,0,0,0.0750843 -434,5817:361,-171,-86,0,0,0.0750843 -435,5817:360,-170,-86,0,0,0.0750915 -436,5816:469,-169,-86,0,0,0.0750987 -437,5816:468,-168,-86,0,0,0.0751059 -438,5816:467,-167,-86,0,0,0.0751128 -439,5816:466,-166,-86,0,0,0.0751059 -440,5816:465,-165,-86,0,0,0.0751059 -441,5816:364,-164,-86,0,0,0.0751059 -442,5816:363,-163,-86,0,0,0.0751128 -443,5816:362,-162,-86,0,0,0.0751128 -444,5816:361,-161,-86,0,0,0.07512 -445,5816:360,-160,-86,0,0,0.0751344 -446,5815:469,-159,-86,0,0,0.0751416 -447,5815:468,-158,-86,0,0,0.0751558 -448,5815:467,-157,-86,0,0,0.0751486 -449,5815:466,-156,-86,0,0,0.0751558 -450,5815:465,-155,-86,0,0,0.075163 -451,5815:364,-154,-86,0,0,0.0751486 -452,5815:363,-153,-86,0,0,0.075163 -453,5815:362,-152,-86,0,0,0.0751558 -454,5815:361,-151,-86,0,0,0.0751416 -455,5815:360,-150,-86,0,0,0.0751416 -456,5814:469,-149,-86,0,0,0.0751344 -457,5814:468,-148,-86,0,0,0.0751344 -458,5814:467,-147,-86,0,0,0.0751272 -459,5814:466,-146,-86,0,0,0.07512 -460,5814:465,-145,-86,0,0,0.07512 -461,5814:364,-144,-86,0,0,0.0751128 -462,5814:363,-143,-86,0,0,0.07512 -463,5814:362,-142,-86,0,0,0.0751128 -464,5814:361,-141,-86,0,0,0.0751128 -465,5814:360,-140,-86,0,0,0.07512 -466,5813:469,-139,-86,0,0,0.07512 -467,5813:468,-138,-86,0,0,0.0751272 -468,5813:467,-137,-86,0,0,0.07527 -469,5813:466,-136,-86,0,0,0.0758155 -470,5813:465,-135,-86,0,0,0.0776421 -471,5813:364,-134,-86,0,0,0.0779001 -472,5811:360,-110,-86,0,0,0.0832649 -473,5810:469,-109,-86,0,0,0.0880188 -474,5810:466,-106,-86,0,0,0.0759162 -475,5810:465,-105,-86,0,0,0.0753775 -476,5810:364,-104,-86,0,0,0.0768514 -477,5810:363,-103,-86,0,0,0.0810109 -478,5806:361,-61,-86,0,0,0.0753489 -479,5806:360,-60,-86,0,0,0.075163 -480,5805:469,-59,-86,0,0,0.0750201 -481,5805:468,-58,-86,0,0,0.074949 -482,5805:467,-57,-86,0,0,0.0749346 -483,5805:466,-56,-86,0,0,0.0749275 -484,5805:465,-55,-86,0,0,0.0749346 -485,5805:364,-54,-86,0,0,0.0749346 -486,5805:363,-53,-86,0,0,0.0749418 -487,5805:362,-52,-86,0,0,0.0749562 -488,5805:361,-51,-86,0,0,0.0749631 -489,5805:360,-50,-86,0,0,0.0749631 -490,5804:469,-49,-86,0,0,0.0749631 -491,5804:468,-48,-86,0,0,0.074949 -492,5804:467,-47,-86,0,0,0.0749703 -493,5804:466,-46,-86,0,0,0.0749988 -494,5804:465,-45,-86,0,0,0.0750273 -495,5804:364,-44,-86,0,0,0.0750201 -496,5804:363,-43,-86,0,0,0.0750201 -497,5804:362,-42,-86,0,0,0.0750131 -498,5804:361,-41,-86,0,0,0.0750201 -499,5804:360,-40,-86,0,0,0.0750345 -500,5803:469,-39,-86,0,0,0.0750345 -501,5803:468,-38,-86,0,0,0.0750345 -502,5803:467,-37,-86,0,0,0.0750345 -503,5803:466,-36,-86,0,0,0.0750345 -504,5803:465,-35,-86,0,0,0.0750416 -505,5803:364,-34,-86,0,0,0.0750345 -506,5803:363,-33,-86,0,0,0.0750345 -507,5803:362,-32,-86,0,0,0.0750416 -508,5803:361,-31,-86,0,0,0.0750488 -509,5803:360,-30,-86,0,0,0.0750488 -510,5802:469,-29,-86,0,0,0.0750488 -511,5802:468,-28,-86,0,0,0.0750345 -512,5802:467,-27,-86,0,0,0.0750201 -513,5802:466,-26,-86,0,0,0.0761183 -514,5802:465,-25,-86,0,0,0.0756715 -515,5802:364,-24,-86,0,0,0.0789397 -516,3816:466,166,-86,0,0,0.0752487 -517,3816:467,167,-86,0,0,0.075063 -518,3816:468,168,-86,0,0,0.0749846 -519,3816:469,169,-86,0,0,0.074899 -520,3817:360,170,-86,0,0,0.074892 -521,3817:361,171,-86,0,0,0.0748777 -522,3817:362,172,-86,0,0,0.0807894 -523,3817:363,173,-86,0,0,0.0878209 -524,3817:364,174,-86,0,0,0.087558 -525,3817:465,175,-86,0,0,0.0873776 -526,3817:466,176,-86,0,0,0.0863183 -527,3817:467,177,-86,0,0,0.0752844 -528,3817:468,178,-86,0,0,0.0748849 -529,3817:469,179,-86,0,0,0.074949 -530,3818:360,180,-86,0,0,0.0749916 -531,5818:350,-180,-85,0,0,0.0749916 -532,5817:459,-179,-85,0,0,0.0750201 -533,5817:458,-178,-85,0,0,0.0750201 -534,5817:457,-177,-85,0,0,0.0750416 -535,5817:456,-176,-85,0,0,0.0750488 -536,5817:455,-175,-85,0,0,0.0750558 -537,5817:354,-174,-85,0,0,0.0750702 -538,5817:353,-173,-85,0,0,0.0750773 -539,5817:352,-172,-85,0,0,0.0750843 -540,5817:351,-171,-85,0,0,0.0750843 -541,5817:350,-170,-85,0,0,0.0750915 -542,5816:459,-169,-85,0,0,0.0750987 -543,5816:458,-168,-85,0,0,0.0751059 -544,5816:457,-167,-85,0,0,0.0751128 -545,5816:456,-166,-85,0,0,0.0751059 -546,5816:455,-165,-85,0,0,0.0751059 -547,5816:354,-164,-85,0,0,0.0751059 -548,5816:353,-163,-85,0,0,0.0751128 -549,5816:352,-162,-85,0,0,0.0751128 -550,5816:351,-161,-85,0,0,0.07512 -551,5816:350,-160,-85,0,0,0.0751344 -552,5815:459,-159,-85,0,0,0.0751416 -553,5815:458,-158,-85,0,0,0.0751558 -554,5815:457,-157,-85,0,0,0.0751486 -555,5815:456,-156,-85,0,0,0.0751558 -556,5815:455,-155,-85,0,0,0.075163 -557,5815:354,-154,-85,0,0,0.0751486 -558,5815:353,-153,-85,0,0,0.075163 -559,5815:352,-152,-85,0,0,0.0751558 -560,5815:351,-151,-85,0,0,0.0751416 -561,5815:350,-150,-85,0,0,0.0751416 -562,5814:459,-149,-85,0,0,0.0751344 -563,5814:458,-148,-85,0,0,0.0751344 -564,5814:457,-147,-85,0,0,0.0751272 -565,5814:456,-146,-85,0,0,0.07512 -566,5814:455,-145,-85,0,0,0.07512 -567,5814:354,-144,-85,0,0,0.0751128 -568,5814:353,-143,-85,0,0,0.07512 -569,5814:352,-142,-85,0,0,0.0751128 -570,5814:351,-141,-85,0,0,0.0751128 -571,5814:350,-140,-85,0,0,0.07512 -572,5813:459,-139,-85,0,0,0.07512 -573,5813:458,-138,-85,0,0,0.0751272 -574,5813:457,-137,-85,0,0,0.07527 -575,5813:456,-136,-85,0,0,0.0758155 -576,5813:455,-135,-85,0,0,0.0776421 -577,5813:354,-134,-85,0,0,0.0779001 -578,5811:350,-110,-85,0,0,0.0832649 -579,5810:459,-109,-85,0,0,0.0880188 -580,5810:456,-106,-85,0,0,0.0759162 -581,5810:455,-105,-85,0,0,0.0753775 -582,5810:354,-104,-85,0,0,0.0768514 -583,5810:353,-103,-85,0,0,0.0810109 -584,5806:351,-61,-85,0,0,0.0753489 -585,5806:350,-60,-85,0,0,0.075163 -586,5805:459,-59,-85,0,0,0.0750201 -587,5805:458,-58,-85,0,0,0.074949 -588,5805:457,-57,-85,0,0,0.0749346 -589,5805:456,-56,-85,0,0,0.0749275 -590,5805:455,-55,-85,0,0,0.0749346 -591,5805:354,-54,-85,0,0,0.0749346 -592,5805:353,-53,-85,0,0,0.0749418 -593,5805:352,-52,-85,0,0,0.0749562 -594,5805:351,-51,-85,0,0,0.0749631 -595,5805:350,-50,-85,0,0,0.0749631 -596,5804:459,-49,-85,0,0,0.0749631 -597,5804:458,-48,-85,0,0,0.074949 -598,5804:457,-47,-85,0,0,0.0749703 -599,5804:456,-46,-85,0,0,0.0749988 -600,5804:455,-45,-85,0,0,0.0750273 -601,5804:354,-44,-85,0,0,0.0750201 -602,5804:353,-43,-85,0,0,0.0750201 -603,5804:352,-42,-85,0,0,0.0750131 -604,5804:351,-41,-85,0,0,0.0750201 -605,5804:350,-40,-85,0,0,0.0750345 -606,5803:459,-39,-85,0,0,0.0750345 -607,5803:458,-38,-85,0,0,0.0750345 -608,5803:457,-37,-85,0,0,0.0750345 -609,5803:456,-36,-85,0,0,0.0750345 -610,5803:455,-35,-85,0,0,0.0750416 -611,5803:354,-34,-85,0,0,0.0750345 -612,5803:353,-33,-85,0,0,0.0750345 -613,5803:352,-32,-85,0,0,0.0750416 -614,5803:351,-31,-85,0,0,0.0750488 -615,5803:350,-30,-85,0,0,0.0750488 -616,5802:459,-29,-85,0,0,0.0750488 -617,5802:458,-28,-85,0,0,0.0750345 -618,5802:457,-27,-85,0,0,0.0750201 -619,5802:456,-26,-85,0,0,0.0761183 -620,5802:455,-25,-85,0,0,0.0756715 -621,5802:354,-24,-85,0,0,0.0789397 -622,3816:456,166,-85,0,0,0.0752487 -623,3816:457,167,-85,0,0,0.075063 -624,3816:458,168,-85,0,0,0.0749846 -625,3816:459,169,-85,0,0,0.074899 -626,3817:350,170,-85,0,0,0.074892 -627,3817:351,171,-85,0,0,0.0748777 -628,3817:352,172,-85,0,0,0.0807894 -629,3817:353,173,-85,0,0,0.0878209 -630,3817:354,174,-85,0,0,0.087558 -631,3817:455,175,-85,0,0,0.0873776 -632,3817:456,176,-85,0,0,0.0863183 -633,3817:457,177,-85,0,0,0.0752844 -634,3817:458,178,-85,0,0,0.0748849 -635,3817:459,179,-85,0,0,0.074949 -636,3818:350,180,-85,0,0,0.0749916 -637,5818:140,-180,-84,0,0,0.0749916 -638,5817:249,-179,-84,0,0,0.0750201 -639,5817:248,-178,-84,0,0,0.0750201 -640,5817:247,-177,-84,0,0,0.0750416 -641,5817:246,-176,-84,0,0,0.0750488 -642,5817:245,-175,-84,0,0,0.0750558 -643,5817:144,-174,-84,0,0,0.0750702 -644,5817:143,-173,-84,0,0,0.0750773 -645,5817:142,-172,-84,0,0,0.0750843 -646,5817:141,-171,-84,0,0,0.0750843 -647,5817:140,-170,-84,0,0,0.0750915 -648,5816:249,-169,-84,0,0,0.0750987 -649,5816:248,-168,-84,0,0,0.0751059 -650,5816:247,-167,-84,0,0,0.0751128 -651,5816:246,-166,-84,0,0,0.0751059 -652,5816:245,-165,-84,0,0,0.0751059 -653,5816:144,-164,-84,0,0,0.0751059 -654,5816:143,-163,-84,0,0,0.0751128 -655,5816:142,-162,-84,0,0,0.0751128 -656,5816:141,-161,-84,0,0,0.07512 -657,5816:140,-160,-84,0,0,0.0751344 -658,5815:249,-159,-84,0,0,0.0751416 -659,5815:248,-158,-84,0,0,0.0751558 -660,5815:247,-157,-84,0,0,0.0751486 -661,5815:246,-156,-84,0,0,0.0751558 -662,5815:245,-155,-84,0,0,0.075163 -663,5815:144,-154,-84,0,0,0.0751486 -664,5815:143,-153,-84,0,0,0.075163 -665,5815:142,-152,-84,0,0,0.0751558 -666,5815:141,-151,-84,0,0,0.0751416 -667,5815:140,-150,-84,0,0,0.0751416 -668,5814:249,-149,-84,0,0,0.0751344 -669,5814:248,-148,-84,0,0,0.0751344 -670,5814:247,-147,-84,0,0,0.0751272 -671,5814:246,-146,-84,0,0,0.07512 -672,5814:245,-145,-84,0,0,0.07512 -673,5814:144,-144,-84,0,0,0.0751128 -674,5814:143,-143,-84,0,0,0.07512 -675,5814:142,-142,-84,0,0,0.0751128 -676,5814:141,-141,-84,0,0,0.0751128 -677,5814:140,-140,-84,0,0,0.07512 -678,5813:249,-139,-84,0,0,0.07512 -679,5813:248,-138,-84,0,0,0.0751272 -680,5813:247,-137,-84,0,0,0.07527 -681,5813:246,-136,-84,0,0,0.0758155 -682,5813:245,-135,-84,0,0,0.0776421 -683,5813:144,-134,-84,0,0,0.0779001 -684,5811:140,-110,-84,0,0,0.0832649 -685,5810:249,-109,-84,0,0,0.0880188 -686,5810:246,-106,-84,0,0,0.0759162 -687,5810:245,-105,-84,0,0,0.0753775 -688,5810:144,-104,-84,0,0,0.0768514 -689,5810:143,-103,-84,0,0,0.0810109 -690,5806:141,-61,-84,0,0,0.0753489 -691,5806:140,-60,-84,0,0,0.075163 -692,5805:249,-59,-84,0,0,0.0750201 -693,5805:248,-58,-84,0,0,0.074949 -694,5805:247,-57,-84,0,0,0.0749346 -695,5805:246,-56,-84,0,0,0.0749275 -696,5805:245,-55,-84,0,0,0.0749346 -697,5805:144,-54,-84,0,0,0.0749346 -698,5805:143,-53,-84,0,0,0.0749418 -699,5805:142,-52,-84,0,0,0.0749562 -700,5805:141,-51,-84,0,0,0.0749631 -701,5805:140,-50,-84,0,0,0.0749631 -702,5804:249,-49,-84,0,0,0.0749631 -703,5804:248,-48,-84,0,0,0.074949 -704,5804:247,-47,-84,0,0,0.0749703 -705,5804:246,-46,-84,0,0,0.0749988 -706,5804:245,-45,-84,0,0,0.0750273 -707,5804:144,-44,-84,0,0,0.0750201 -708,5804:143,-43,-84,0,0,0.0750201 -709,5804:142,-42,-84,0,0,0.0750131 -710,5804:141,-41,-84,0,0,0.0750201 -711,5804:140,-40,-84,0,0,0.0750345 -712,5803:249,-39,-84,0,0,0.0750345 -713,5803:248,-38,-84,0,0,0.0750345 -714,5803:247,-37,-84,0,0,0.0750345 -715,5803:246,-36,-84,0,0,0.0750345 -716,5803:245,-35,-84,0,0,0.0750416 -717,5803:144,-34,-84,0,0,0.0750345 -718,5803:143,-33,-84,0,0,0.0750345 -719,5803:142,-32,-84,0,0,0.0750416 -720,5803:141,-31,-84,0,0,0.0750488 -721,5803:140,-30,-84,0,0,0.0750488 -722,5802:249,-29,-84,0,0,0.0750488 -723,5802:248,-28,-84,0,0,0.0750345 -724,5802:247,-27,-84,0,0,0.0750201 -725,5802:246,-26,-84,0,0,0.0761183 -726,5802:245,-25,-84,0,0,0.0756715 -727,5802:144,-24,-84,0,0,0.0789397 -728,3816:246,166,-84,0,0,0.0752487 -729,3816:247,167,-84,0,0,0.075063 -730,3816:248,168,-84,0,0,0.0749846 -731,3816:249,169,-84,0,0,0.074899 -732,3817:140,170,-84,0,0,0.074892 -733,3817:141,171,-84,0,0,0.0748777 -734,3817:142,172,-84,0,0,0.0807894 -735,3817:143,173,-84,0,0,0.0878209 -736,3817:144,174,-84,0,0,0.087558 -737,3817:245,175,-84,0,0,0.0873776 -738,3817:246,176,-84,0,0,0.0863183 -739,3817:247,177,-84,0,0,0.0752844 -740,3817:248,178,-84,0,0,0.0748849 -741,3817:249,179,-84,0,0,0.074949 -742,3818:140,180,-84,0,0,0.0749916 -743,5818:130,-180,-83,0,0,0.0749916 -744,5817:239,-179,-83,0,0,0.0750201 -745,5817:238,-178,-83,0,0,0.0750201 -746,5817:237,-177,-83,0,0,0.0750416 -747,5817:236,-176,-83,0,0,0.0750488 -748,5817:235,-175,-83,0,0,0.0750558 -749,5817:134,-174,-83,0,0,0.0750702 -750,5817:133,-173,-83,0,0,0.0750773 -751,5817:132,-172,-83,0,0,0.0750843 -752,5817:131,-171,-83,0,0,0.0750843 -753,5817:130,-170,-83,0,0,0.0750915 -754,5816:239,-169,-83,0,0,0.0750987 -755,5816:238,-168,-83,0,0,0.0751059 -756,5816:237,-167,-83,0,0,0.0751128 -757,5816:236,-166,-83,0,0,0.0751059 -758,5816:235,-165,-83,0,0,0.0751059 -759,5816:134,-164,-83,0,0,0.0751059 -760,5816:133,-163,-83,0,0,0.0751128 -761,5816:132,-162,-83,0,0,0.0751128 -762,5816:131,-161,-83,0,0,0.07512 -763,5816:130,-160,-83,0,0,0.0751344 -764,5815:239,-159,-83,0,0,0.0751416 -765,5815:238,-158,-83,0,0,0.0751558 -766,5815:237,-157,-83,0,0,0.0751486 -767,5815:236,-156,-83,0,0,0.0751558 -768,5815:235,-155,-83,0,0,0.075163 -769,5815:134,-154,-83,0,0,0.0751486 -770,5815:133,-153,-83,0,0,0.075163 -771,5815:132,-152,-83,0,0,0.0751558 -772,5815:131,-151,-83,0,0,0.0751416 -773,5815:130,-150,-83,0,0,0.0751416 -774,5814:239,-149,-83,0,0,0.0751344 -775,5814:238,-148,-83,0,0,0.0751344 -776,5814:237,-147,-83,0,0,0.0751272 -777,5814:236,-146,-83,0,0,0.07512 -778,5814:235,-145,-83,0,0,0.07512 -779,5814:134,-144,-83,0,0,0.0751128 -780,5814:133,-143,-83,0,0,0.07512 -781,5814:132,-142,-83,0,0,0.0751128 -782,5814:131,-141,-83,0,0,0.0751128 -783,5814:130,-140,-83,0,0,0.07512 -784,5813:239,-139,-83,0,0,0.07512 -785,5813:238,-138,-83,0,0,0.0751272 -786,5813:237,-137,-83,0,0,0.07527 -787,5813:236,-136,-83,0,0,0.0758155 -788,5813:235,-135,-83,0,0,0.0776421 -789,5813:134,-134,-83,0,0,0.0779001 -790,5811:130,-110,-83,0,0,0.0832649 -791,5810:239,-109,-83,0,0,0.0880188 -792,5810:236,-106,-83,0,0,0.0759162 -793,5810:235,-105,-83,0,0,0.0753775 -794,5810:134,-104,-83,0,0,0.0768514 -795,5810:133,-103,-83,0,0,0.0810109 -796,5806:131,-61,-83,0,0,0.0753489 -797,5806:130,-60,-83,0,0,0.075163 -798,5805:239,-59,-83,0,0,0.0750201 -799,5805:238,-58,-83,0,0,0.074949 -800,5805:237,-57,-83,0,0,0.0749346 -801,5805:236,-56,-83,0,0,0.0749275 -802,5805:235,-55,-83,0,0,0.0749346 -803,5805:134,-54,-83,0,0,0.0749346 -804,5805:133,-53,-83,0,0,0.0749418 -805,5805:132,-52,-83,0,0,0.0749562 -806,5805:131,-51,-83,0,0,0.0749631 -807,5805:130,-50,-83,0,0,0.0749631 -808,5804:239,-49,-83,0,0,0.0749631 -809,5804:238,-48,-83,0,0,0.074949 -810,5804:237,-47,-83,0,0,0.0749703 -811,5804:236,-46,-83,0,0,0.0749988 -812,5804:235,-45,-83,0,0,0.0750273 -813,5804:134,-44,-83,0,0,0.0750201 -814,5804:133,-43,-83,0,0,0.0750201 -815,5804:132,-42,-83,0,0,0.0750131 -816,5804:131,-41,-83,0,0,0.0750201 -817,5804:130,-40,-83,0,0,0.0750345 -818,5803:239,-39,-83,0,0,0.0750345 -819,5803:238,-38,-83,0,0,0.0750345 -820,5803:237,-37,-83,0,0,0.0750345 -821,5803:236,-36,-83,0,0,0.0750345 -822,5803:235,-35,-83,0,0,0.0750416 -823,5803:134,-34,-83,0,0,0.0750345 -824,5803:133,-33,-83,0,0,0.0750345 -825,5803:132,-32,-83,0,0,0.0750416 -826,5803:131,-31,-83,0,0,0.0750488 -827,5803:130,-30,-83,0,0,0.0750488 -828,5802:239,-29,-83,0,0,0.0750488 -829,5802:238,-28,-83,0,0,0.0750345 -830,5802:237,-27,-83,0,0,0.0750201 -831,5802:236,-26,-83,0,0,0.0761183 -832,5802:235,-25,-83,0,0,0.0756715 -833,5802:134,-24,-83,0,0,0.0789397 -834,3816:236,166,-83,0,0,0.0752487 -835,3816:237,167,-83,0,0,0.075063 -836,3816:238,168,-83,0,0,0.0749846 -837,3816:239,169,-83,0,0,0.074899 -838,3817:130,170,-83,0,0,0.074892 -839,3817:131,171,-83,0,0,0.0748777 -840,3817:132,172,-83,0,0,0.0807894 -841,3817:133,173,-83,0,0,0.0878209 -842,3817:134,174,-83,0,0,0.087558 -843,3817:235,175,-83,0,0,0.0873776 -844,3817:236,176,-83,0,0,0.0863183 -845,3817:237,177,-83,0,0,0.0752844 -846,3817:238,178,-83,0,0,0.0748849 -847,3817:239,179,-83,0,0,0.074949 -848,3818:130,180,-83,0,0,0.0749916 -849,5818:120,-180,-82,0,0,0.0749916 -850,5817:229,-179,-82,0,0,0.0750201 -851,5817:228,-178,-82,0,0,0.0750201 -852,5817:227,-177,-82,0,0,0.0750416 -853,5817:226,-176,-82,0,0,0.0750488 -854,5817:225,-175,-82,0,0,0.0750558 -855,5817:124,-174,-82,0,0,0.0750702 -856,5817:123,-173,-82,0,0,0.0750773 -857,5817:122,-172,-82,0,0,0.0750843 -858,5817:121,-171,-82,0,0,0.0750843 -859,5817:120,-170,-82,0,0,0.0750915 -860,5816:229,-169,-82,0,0,0.0750987 -861,5816:228,-168,-82,0,0,0.0751059 -862,5816:227,-167,-82,0,0,0.0751128 -863,5816:226,-166,-82,0,0,0.0751059 -864,5816:225,-165,-82,0,0,0.0751059 -865,5816:124,-164,-82,0,0,0.0751059 -866,5816:123,-163,-82,0,0,0.0751128 -867,5816:122,-162,-82,0,0,0.0751128 -868,5816:121,-161,-82,0,0,0.07512 -869,5816:120,-160,-82,0,0,0.0751344 -870,5815:229,-159,-82,0,0,0.0751416 -871,5815:228,-158,-82,0,0,0.0751558 -872,5815:227,-157,-82,0,0,0.0751486 -873,5815:226,-156,-82,0,0,0.0751558 -874,5815:225,-155,-82,0,0,0.075163 -875,5815:124,-154,-82,0,0,0.0751486 -876,5815:123,-153,-82,0,0,0.075163 -877,5815:122,-152,-82,0,0,0.0751558 -878,5815:121,-151,-82,0,0,0.0751416 -879,5815:120,-150,-82,0,0,0.0751416 -880,5814:229,-149,-82,0,0,0.0751344 -881,5814:228,-148,-82,0,0,0.0751344 -882,5814:227,-147,-82,0,0,0.0751272 -883,5814:226,-146,-82,0,0,0.07512 -884,5814:225,-145,-82,0,0,0.07512 -885,5814:124,-144,-82,0,0,0.0751128 -886,5814:123,-143,-82,0,0,0.07512 -887,5814:122,-142,-82,0,0,0.0751128 -888,5814:121,-141,-82,0,0,0.0751128 -889,5814:120,-140,-82,0,0,0.07512 -890,5813:229,-139,-82,0,0,0.07512 -891,5813:228,-138,-82,0,0,0.0751272 -892,5813:227,-137,-82,0,0,0.07527 -893,5813:226,-136,-82,0,0,0.0758155 -894,5813:225,-135,-82,0,0,0.0776421 -895,5813:124,-134,-82,0,0,0.0779001 -896,5811:120,-110,-82,0,0,0.0832649 -897,5810:229,-109,-82,0,0,0.0880188 -898,5810:226,-106,-82,0,0,0.0759162 -899,5810:225,-105,-82,0,0,0.0753775 -900,5810:124,-104,-82,0,0,0.0768514 -901,5810:123,-103,-82,0,0,0.0810109 -902,5806:121,-61,-82,0,0,0.0753489 -903,5806:120,-60,-82,0,0,0.075163 -904,5805:229,-59,-82,0,0,0.0750201 -905,5805:228,-58,-82,0,0,0.074949 -906,5805:227,-57,-82,0,0,0.0749346 -907,5805:226,-56,-82,0,0,0.0749275 -908,5805:225,-55,-82,0,0,0.0749346 -909,5805:124,-54,-82,0,0,0.0749346 -910,5805:123,-53,-82,0,0,0.0749418 -911,5805:122,-52,-82,0,0,0.0749562 -912,5805:121,-51,-82,0,0,0.0749631 -913,5805:120,-50,-82,0,0,0.0749631 -914,5804:229,-49,-82,0,0,0.0749631 -915,5804:228,-48,-82,0,0,0.074949 -916,5804:227,-47,-82,0,0,0.0749703 -917,5804:226,-46,-82,0,0,0.0749988 -918,5804:225,-45,-82,0,0,0.0750273 -919,5804:124,-44,-82,0,0,0.0750201 -920,5804:123,-43,-82,0,0,0.0750201 -921,5804:122,-42,-82,0,0,0.0750131 -922,5804:121,-41,-82,0,0,0.0750201 -923,5804:120,-40,-82,0,0,0.0750345 -924,5803:229,-39,-82,0,0,0.0750345 -925,5803:228,-38,-82,0,0,0.0750345 -926,5803:227,-37,-82,0,0,0.0750345 -927,5803:226,-36,-82,0,0,0.0750345 -928,5803:225,-35,-82,0,0,0.0750416 -929,5803:124,-34,-82,0,0,0.0750345 -930,5803:123,-33,-82,0,0,0.0750345 -931,5803:122,-32,-82,0,0,0.0750416 -932,5803:121,-31,-82,0,0,0.0750488 -933,5803:120,-30,-82,0,0,0.0750488 -934,5802:229,-29,-82,0,0,0.0750488 -935,5802:228,-28,-82,0,0,0.0750345 -936,5802:227,-27,-82,0,0,0.0750201 -937,5802:226,-26,-82,0,0,0.0761183 -938,5802:225,-25,-82,0,0,0.0756715 -939,5802:124,-24,-82,0,0,0.0789397 -940,3816:226,166,-82,0,0,0.0752487 -941,3816:227,167,-82,0,0,0.075063 -942,3816:228,168,-82,0,0,0.0749846 -943,3816:229,169,-82,0,0,0.074899 -944,3817:120,170,-82,0,0,0.074892 -945,3817:121,171,-82,0,0,0.0748777 -946,3817:122,172,-82,0,0,0.0807894 -947,3817:123,173,-82,0,0,0.0878209 -948,3817:124,174,-82,0,0,0.087558 -949,3817:225,175,-82,0,0,0.0873776 -950,3817:226,176,-82,0,0,0.0863183 -951,3817:227,177,-82,0,0,0.0752844 -952,3817:228,178,-82,0,0,0.0748849 -953,3817:229,179,-82,0,0,0.074949 -954,3818:120,180,-82,0,0,0.0749916 -955,5818:110,-180,-81,0,0,0.0749916 -956,5817:219,-179,-81,0,0,0.0750201 -957,5817:218,-178,-81,0,0,0.0750201 -958,5817:217,-177,-81,0,0,0.0750416 -959,5817:216,-176,-81,0,0,0.0750488 -960,5817:215,-175,-81,0,0,0.0750558 -961,5817:114,-174,-81,0,0,0.0750702 -962,5817:113,-173,-81,0,0,0.0750773 -963,5817:112,-172,-81,0,0,0.0750843 -964,5817:111,-171,-81,0,0,0.0750843 -965,5817:110,-170,-81,0,0,0.0750915 -966,5816:219,-169,-81,0,0,0.0750987 -967,5816:218,-168,-81,0,0,0.0751059 -968,5816:217,-167,-81,0,0,0.0751128 -969,5816:216,-166,-81,0,0,0.0751059 -970,5816:215,-165,-81,0,0,0.0751059 -971,5816:114,-164,-81,0,0,0.0751059 -972,5816:113,-163,-81,0,0,0.0751128 -973,5816:112,-162,-81,0,0,0.0751128 -974,5816:111,-161,-81,0,0,0.07512 -975,5816:110,-160,-81,0,0,0.0751344 -976,5815:219,-159,-81,0,0,0.0751416 -977,5815:218,-158,-81,0,0,0.0751558 -978,5815:217,-157,-81,0,0,0.0751486 -979,5815:216,-156,-81,0,0,0.0751558 -980,5815:215,-155,-81,0,0,0.075163 -981,5815:114,-154,-81,0,0,0.0751486 -982,5815:113,-153,-81,0,0,0.075163 -983,5815:112,-152,-81,0,0,0.0751558 -984,5815:111,-151,-81,0,0,0.0751416 -985,5815:110,-150,-81,0,0,0.0751416 -986,5814:219,-149,-81,0,0,0.0751344 -987,5814:218,-148,-81,0,0,0.0751344 -988,5814:217,-147,-81,0,0,0.0751272 -989,5814:216,-146,-81,0,0,0.07512 -990,5814:215,-145,-81,0,0,0.07512 -991,5814:114,-144,-81,0,0,0.0751128 -992,5814:113,-143,-81,0,0,0.07512 -993,5814:112,-142,-81,0,0,0.0751128 -994,5814:111,-141,-81,0,0,0.0751128 -995,5814:110,-140,-81,0,0,0.07512 -996,5813:219,-139,-81,0,0,0.07512 -997,5813:218,-138,-81,0,0,0.0751272 -998,5813:217,-137,-81,0,0,0.07527 -999,5813:216,-136,-81,0,0,0.0758155 -1000,5813:215,-135,-81,0,0,0.0776421 -1001,5813:114,-134,-81,0,0,0.0779001 -1002,5811:110,-110,-81,0,0,0.0832649 -1003,5810:219,-109,-81,0,0,0.0880188 -1004,5810:216,-106,-81,0,0,0.0759162 -1005,5810:215,-105,-81,0,0,0.0753775 -1006,5810:114,-104,-81,0,0,0.0768514 -1007,5810:113,-103,-81,0,0,0.0810109 -1008,5806:111,-61,-81,0,0,0.0753489 -1009,5806:110,-60,-81,0,0,0.075163 -1010,5805:219,-59,-81,0,0,0.0750201 -1011,5805:218,-58,-81,0,0,0.074949 -1012,5805:217,-57,-81,0,0,0.0749346 -1013,5805:216,-56,-81,0,0,0.0749275 -1014,5805:215,-55,-81,0,0,0.0749346 -1015,5805:114,-54,-81,0,0,0.0749346 -1016,5805:113,-53,-81,0,0,0.0749418 -1017,5805:112,-52,-81,0,0,0.0749562 -1018,5805:111,-51,-81,0,0,0.0749631 -1019,5805:110,-50,-81,0,0,0.0749631 -1020,5804:219,-49,-81,0,0,0.0749631 -1021,5804:218,-48,-81,0,0,0.074949 -1022,5804:217,-47,-81,0,0,0.0749703 -1023,5804:216,-46,-81,0,0,0.0749988 -1024,5804:215,-45,-81,0,0,0.0750273 -1025,5804:114,-44,-81,0,0,0.0750201 -1026,5804:113,-43,-81,0,0,0.0750201 -1027,5804:112,-42,-81,0,0,0.0750131 -1028,5804:111,-41,-81,0,0,0.0750201 -1029,5804:110,-40,-81,0,0,0.0750345 -1030,5803:219,-39,-81,0,0,0.0750345 -1031,5803:218,-38,-81,0,0,0.0750345 -1032,5803:217,-37,-81,0,0,0.0750345 -1033,5803:216,-36,-81,0,0,0.0750345 -1034,5803:215,-35,-81,0,0,0.0750416 -1035,5803:114,-34,-81,0,0,0.0750345 -1036,5803:113,-33,-81,0,0,0.0750345 -1037,5803:112,-32,-81,0,0,0.0750416 -1038,5803:111,-31,-81,0,0,0.0750488 -1039,5803:110,-30,-81,0,0,0.0750488 -1040,5802:219,-29,-81,0,0,0.0750488 -1041,5802:218,-28,-81,0,0,0.0750345 -1042,5802:217,-27,-81,0,0,0.0750201 -1043,5802:216,-26,-81,0,0,0.0761183 -1044,5802:215,-25,-81,0,0,0.0756715 -1045,5802:114,-24,-81,0,0,0.0789397 -1046,3816:216,166,-81,0,0,0.0752487 -1047,3816:217,167,-81,0,0,0.075063 -1048,3816:218,168,-81,0,0,0.0749846 -1049,3816:219,169,-81,0,0,0.074899 -1050,3817:110,170,-81,0,0,0.074892 -1051,3817:111,171,-81,0,0,0.0748777 -1052,3817:112,172,-81,0,0,0.0807894 -1053,3817:113,173,-81,0,0,0.0878209 -1054,3817:114,174,-81,0,0,0.087558 -1055,3817:215,175,-81,0,0,0.0873776 -1056,3817:216,176,-81,0,0,0.0863183 -1057,3817:217,177,-81,0,0,0.0752844 -1058,3817:218,178,-81,0,0,0.0748849 -1059,3817:219,179,-81,0,0,0.074949 -1060,3818:110,180,-81,0,0,0.0749916 -1061,5818:100,-180,-80,0,0,0.0749916 -1062,5817:209,-179,-80,0,0,0.0750201 -1063,5817:208,-178,-80,0,0,0.0750201 -1064,5817:207,-177,-80,0,0,0.0750416 -1065,5817:206,-176,-80,0,0,0.0750488 -1066,5817:205,-175,-80,0,0,0.0750558 -1067,5817:104,-174,-80,0,0,0.0750702 -1068,5817:103,-173,-80,0,0,0.0750773 -1069,5817:102,-172,-80,0,0,0.0750843 -1070,5817:101,-171,-80,0,0,0.0750843 -1071,5817:100,-170,-80,0,0,0.0750915 -1072,5816:209,-169,-80,0,0,0.0750987 -1073,5816:208,-168,-80,0,0,0.0751059 -1074,5816:207,-167,-80,0,0,0.0751128 -1075,5816:206,-166,-80,0,0,0.0751059 -1076,5816:205,-165,-80,0,0,0.0751059 -1077,5816:104,-164,-80,0,0,0.0751059 -1078,5816:103,-163,-80,0,0,0.0751128 -1079,5816:102,-162,-80,0,0,0.0751128 -1080,5816:101,-161,-80,0,0,0.07512 -1081,5816:100,-160,-80,0,0,0.0751344 -1082,5815:209,-159,-80,0,0,0.0751416 -1083,5815:208,-158,-80,0,0,0.0751558 -1084,5815:207,-157,-80,0,0,0.0751486 -1085,5815:206,-156,-80,0,0,0.0751558 -1086,5815:205,-155,-80,0,0,0.075163 -1087,5815:104,-154,-80,0,0,0.0751486 -1088,5815:103,-153,-80,0,0,0.075163 -1089,5815:102,-152,-80,0,0,0.0751558 -1090,5815:101,-151,-80,0,0,0.0751416 -1091,5815:100,-150,-80,0,0,0.0751416 -1092,5814:209,-149,-80,0,0,0.0751344 -1093,5814:208,-148,-80,0,0,0.0751344 -1094,5814:207,-147,-80,0,0,0.0751272 -1095,5814:206,-146,-80,0,0,0.07512 -1096,5814:205,-145,-80,0,0,0.07512 -1097,5814:104,-144,-80,0,0,0.0751128 -1098,5814:103,-143,-80,0,0,0.07512 -1099,5814:102,-142,-80,0,0,0.0751128 -1100,5814:101,-141,-80,0,0,0.0751128 -1101,5814:100,-140,-80,0,0,0.07512 -1102,5813:209,-139,-80,0,0,0.07512 -1103,5813:208,-138,-80,0,0,0.0751272 -1104,5813:207,-137,-80,0,0,0.07527 -1105,5813:206,-136,-80,0,0,0.0758155 -1106,5813:205,-135,-80,0,0,0.0776421 -1107,5813:104,-134,-80,0,0,0.0779001 -1108,5811:100,-110,-80,0,0,0.0832649 -1109,5810:209,-109,-80,0,0,0.0880188 -1110,5810:206,-106,-80,0,0,0.0759162 -1111,5810:205,-105,-80,0,0,0.0753775 -1112,5810:104,-104,-80,0,0,0.0768514 -1113,5810:103,-103,-80,0,0,0.0810109 -1114,5806:101,-61,-80,0,0,0.0753489 -1115,5806:100,-60,-80,0,0,0.075163 -1116,5805:209,-59,-80,0,0,0.0750201 -1117,5805:208,-58,-80,0,0,0.074949 -1118,5805:207,-57,-80,0,0,0.0749346 -1119,5805:206,-56,-80,0,0,0.0749275 -1120,5805:205,-55,-80,0,0,0.0749346 -1121,5805:104,-54,-80,0,0,0.0749346 -1122,5805:103,-53,-80,0,0,0.0749418 -1123,5805:102,-52,-80,0,0,0.0749562 -1124,5805:101,-51,-80,0,0,0.0749631 -1125,5805:100,-50,-80,0,0,0.0749631 -1126,5804:209,-49,-80,0,0,0.0749631 -1127,5804:208,-48,-80,0,0,0.074949 -1128,5804:207,-47,-80,0,0,0.0749703 -1129,5804:206,-46,-80,0,0,0.0749988 -1130,5804:205,-45,-80,0,0,0.0750273 -1131,5804:104,-44,-80,0,0,0.0750201 -1132,5804:103,-43,-80,0,0,0.0750201 -1133,5804:102,-42,-80,0,0,0.0750131 -1134,5804:101,-41,-80,0,0,0.0750201 -1135,5804:100,-40,-80,0,0,0.0750345 -1136,5803:209,-39,-80,0,0,0.0750345 -1137,5803:208,-38,-80,0,0,0.0750345 -1138,5803:207,-37,-80,0,0,0.0750345 -1139,5803:206,-36,-80,0,0,0.0750345 -1140,5803:205,-35,-80,0,0,0.0750416 -1141,5803:104,-34,-80,0,0,0.0750345 -1142,5803:103,-33,-80,0,0,0.0750345 -1143,5803:102,-32,-80,0,0,0.0750416 -1144,5803:101,-31,-80,0,0,0.0750488 -1145,5803:100,-30,-80,0,0,0.0750488 -1146,5802:209,-29,-80,0,0,0.0750488 -1147,5802:208,-28,-80,0,0,0.0750345 -1148,5802:207,-27,-80,0,0,0.0750201 -1149,5802:206,-26,-80,0,0,0.0761183 -1150,5802:205,-25,-80,0,0,0.0756715 -1151,5802:104,-24,-80,0,0,0.0789397 -1152,3816:206,166,-80,0,0,0.0752487 -1153,3816:207,167,-80,0,0,0.075063 -1154,3816:208,168,-80,0,0,0.0749846 -1155,3816:209,169,-80,0,0,0.074899 -1156,3817:100,170,-80,0,0,0.074892 -1157,3817:101,171,-80,0,0,0.0748777 -1158,3817:102,172,-80,0,0,0.0807894 -1159,3817:103,173,-80,0,0,0.0878209 -1160,3817:104,174,-80,0,0,0.087558 -1161,3817:205,175,-80,0,0,0.0873776 -1162,3817:206,176,-80,0,0,0.0863183 -1163,3817:207,177,-80,0,0,0.0752844 -1164,3817:208,178,-80,0,0,0.0748849 -1165,3817:209,179,-80,0,0,0.074949 -1166,3818:100,180,-80,0,0,0.0749916 -1167,5718:390,-180,-79,0,0,0.0749916 -1168,5717:499,-179,-79,0,0,0.0750201 -1169,5717:498,-178,-79,0,0,0.0750201 -1170,5717:497,-177,-79,0,0,0.0750416 -1171,5717:496,-176,-79,0,0,0.0750488 -1172,5717:495,-175,-79,0,0,0.0750558 -1173,5717:394,-174,-79,0,0,0.0750702 -1174,5717:393,-173,-79,0,0,0.0750773 -1175,5717:392,-172,-79,0,0,0.0750843 -1176,5717:391,-171,-79,0,0,0.0750843 -1177,5717:390,-170,-79,0,0,0.0750915 -1178,5716:499,-169,-79,0,0,0.0750987 -1179,5716:498,-168,-79,0,0,0.0751059 -1180,5716:497,-167,-79,0,0,0.0751128 -1181,5716:496,-166,-79,0,0,0.0751059 -1182,5716:495,-165,-79,0,0,0.0751059 -1183,5716:394,-164,-79,0,0,0.0751059 -1184,5716:393,-163,-79,0,0,0.0751128 -1185,5716:392,-162,-79,0,0,0.0751128 -1186,5716:391,-161,-79,0,0,0.07512 -1187,5716:390,-160,-79,0,0,0.0751344 -1188,5715:499,-159,-79,0,0,0.0751416 -1189,5715:498,-158,-79,0,0,0.0751558 -1190,5715:497,-157,-79,0,0,0.0751486 -1191,5715:496,-156,-79,0,0,0.0751558 -1192,5715:495,-155,-79,0,0,0.075163 -1193,5715:394,-154,-79,0,0,0.0751486 -1194,5715:393,-153,-79,0,0,0.075163 -1195,5715:392,-152,-79,0,0,0.0751558 -1196,5715:391,-151,-79,0,0,0.0751416 -1197,5715:390,-150,-79,0,0,0.0751416 -1198,5714:499,-149,-79,0,0,0.0751344 -1199,5714:498,-148,-79,0,0,0.0751344 -1200,5714:497,-147,-79,0,0,0.0751272 -1201,5714:496,-146,-79,0,0,0.07512 -1202,5714:495,-145,-79,0,0,0.07512 -1203,5714:394,-144,-79,0,0,0.0751128 -1204,5714:393,-143,-79,0,0,0.07512 -1205,5714:392,-142,-79,0,0,0.0751128 -1206,5714:391,-141,-79,0,0,0.0751128 -1207,5714:390,-140,-79,0,0,0.07512 -1208,5713:499,-139,-79,0,0,0.07512 -1209,5713:498,-138,-79,0,0,0.0751272 -1210,5713:497,-137,-79,0,0,0.07527 -1211,5713:496,-136,-79,0,0,0.0758155 -1212,5713:495,-135,-79,0,0,0.0776421 -1213,5713:394,-134,-79,0,0,0.0779001 -1214,5711:390,-110,-79,0,0,0.0832649 -1215,5710:499,-109,-79,0,0,0.0880188 -1216,5710:496,-106,-79,0,0,0.0759162 -1217,5710:495,-105,-79,0,0,0.0753775 -1218,5710:394,-104,-79,0,0,0.0768514 -1219,5710:393,-103,-79,0,0,0.0810109 -1220,5706:391,-61,-79,0,0,0.0753489 -1221,5706:390,-60,-79,0,0,0.075163 -1222,5705:499,-59,-79,0,0,0.0750201 -1223,5705:498,-58,-79,0,0,0.074949 -1224,5705:497,-57,-79,0,0,0.0749346 -1225,5705:496,-56,-79,0,0,0.0749275 -1226,5705:495,-55,-79,0,0,0.0749346 -1227,5705:394,-54,-79,0,0,0.0749346 -1228,5705:393,-53,-79,0,0,0.0749418 -1229,5705:392,-52,-79,0,0,0.0749562 -1230,5705:391,-51,-79,0,0,0.0749631 -1231,5705:390,-50,-79,0,0,0.0749631 -1232,5704:499,-49,-79,0,0,0.0749631 -1233,5704:498,-48,-79,0,0,0.074949 -1234,5704:497,-47,-79,0,0,0.0749703 -1235,5704:496,-46,-79,0,0,0.0749988 -1236,5704:495,-45,-79,0,0,0.0750273 -1237,5704:394,-44,-79,0,0,0.0750201 -1238,5704:393,-43,-79,0,0,0.0750201 -1239,5704:392,-42,-79,0,0,0.0750131 -1240,5704:391,-41,-79,0,0,0.0750201 -1241,5704:390,-40,-79,0,0,0.0750345 -1242,5703:499,-39,-79,0,0,0.0750345 -1243,5703:498,-38,-79,0,0,0.0750345 -1244,5703:497,-37,-79,0,0,0.0750345 -1245,5703:496,-36,-79,0,0,0.0750345 -1246,5703:495,-35,-79,0,0,0.0750416 -1247,5703:394,-34,-79,0,0,0.0750345 -1248,5703:393,-33,-79,0,0,0.0750345 -1249,5703:392,-32,-79,0,0,0.0750416 -1250,5703:391,-31,-79,0,0,0.0750488 -1251,5703:390,-30,-79,0,0,0.0750488 -1252,5702:499,-29,-79,0,0,0.0750488 -1253,5702:498,-28,-79,0,0,0.0750345 -1254,5702:497,-27,-79,0,0,0.0750201 -1255,5702:496,-26,-79,0,0,0.0761183 -1256,5702:495,-25,-79,0,0,0.0756715 -1257,5702:394,-24,-79,0,0,0.0789397 -1258,3716:496,166,-79,0,0,0.0752487 -1259,3716:497,167,-79,0,0,0.075063 -1260,3716:498,168,-79,0,0,0.0749846 -1261,3716:499,169,-79,0,0,0.074899 -1262,3717:390,170,-79,0,0,0.074892 -1263,3717:391,171,-79,0,0,0.0748777 -1264,3717:392,172,-79,0,0,0.0807894 -1265,3717:393,173,-79,0,0,0.0878209 -1266,3717:394,174,-79,0,0,0.087558 -1267,3717:495,175,-79,0,0,0.0873776 -1268,3717:496,176,-79,0,0,0.0863183 -1269,3717:497,177,-79,0,0,0.0752844 -1270,3717:498,178,-79,0,0,0.0748849 -1271,3717:499,179,-79,0,0,0.074949 -1272,3718:390,180,-79,0,0,0.0749916 -1273,5718:380,-180,-78,0,0,0.0749916 -1274,5717:489,-179,-78,0,0,0.0750201 -1275,5717:488,-178,-78,0,0,0.0750201 -1276,5717:487,-177,-78,0,0,0.0750416 -1277,5717:486,-176,-78,0,0,0.0750488 -1278,5717:485,-175,-78,0,0,0.0750558 -1279,5717:384,-174,-78,0,0,0.0750702 -1280,5717:383,-173,-78,0,0,0.0750773 -1281,5717:382,-172,-78,0,0,0.0750843 -1282,5717:381,-171,-78,0,0,0.0750843 -1283,5717:380,-170,-78,0,0,0.0750915 -1284,5716:489,-169,-78,0,0,0.0750987 -1285,5716:488,-168,-78,0,0,0.0751059 -1286,5716:487,-167,-78,0,0,0.0751128 -1287,5716:486,-166,-78,0,0,0.0751059 -1288,5716:485,-165,-78,0,0,0.0751059 -1289,5716:384,-164,-78,0,0,0.0751059 -1290,5716:383,-163,-78,0,0,0.0751128 -1291,5716:382,-162,-78,0,0,0.0751128 -1292,5716:381,-161,-78,0,0,0.07512 -1293,5716:380,-160,-78,0,0,0.0751344 -1294,5715:489,-159,-78,0,0,0.0751416 -1295,5715:488,-158,-78,0,0,0.0751558 -1296,5715:487,-157,-78,0,0,0.0751486 -1297,5715:486,-156,-78,0,0,0.0751558 -1298,5715:485,-155,-78,0,0,0.075163 -1299,5715:384,-154,-78,0,0,0.0751486 -1300,5715:383,-153,-78,0,0,0.075163 -1301,5715:382,-152,-78,0,0,0.0751558 -1302,5715:381,-151,-78,0,0,0.0751416 -1303,5715:380,-150,-78,0,0,0.0751416 -1304,5714:489,-149,-78,0,0,0.0751344 -1305,5714:488,-148,-78,0,0,0.0751344 -1306,5714:487,-147,-78,0,0,0.0751272 -1307,5714:486,-146,-78,0,0,0.07512 -1308,5714:485,-145,-78,0,0,0.07512 -1309,5714:384,-144,-78,0,0,0.0751128 -1310,5714:383,-143,-78,0,0,0.07512 -1311,5714:382,-142,-78,0,0,0.0751128 -1312,5714:381,-141,-78,0,0,0.0751128 -1313,5714:380,-140,-78,0,0,0.07512 -1314,5713:489,-139,-78,0,0,0.07512 -1315,5713:488,-138,-78,0,0,0.0751272 -1316,5713:487,-137,-78,0,0,0.07527 -1317,5713:486,-136,-78,0,0,0.0758155 -1318,5713:485,-135,-78,0,0,0.0776421 -1319,5713:384,-134,-78,0,0,0.0779001 -1320,5711:380,-110,-78,0,0,0.0832649 -1321,5710:489,-109,-78,0,0,0.0880188 -1322,5710:486,-106,-78,0,0,0.0759162 -1323,5710:485,-105,-78,0,0,0.0753775 -1324,5710:384,-104,-78,0,0,0.0768514 -1325,5710:383,-103,-78,0,0,0.0810109 -1326,5706:381,-61,-78,0,0,0.0753489 -1327,5706:380,-60,-78,0,0,0.075163 -1328,5705:489,-59,-78,0,0,0.0750201 -1329,5705:488,-58,-78,0,0,0.074949 -1330,5705:487,-57,-78,0,0,0.0749346 -1331,5705:486,-56,-78,0,0,0.0749275 -1332,5705:485,-55,-78,0,0,0.0749346 -1333,5705:384,-54,-78,0,0,0.0749346 -1334,5705:383,-53,-78,0,0,0.0749418 -1335,5705:382,-52,-78,0,0,0.0749562 -1336,5705:381,-51,-78,0,0,0.0749631 -1337,5705:380,-50,-78,0,0,0.0749631 -1338,5704:489,-49,-78,0,0,0.0749631 -1339,5704:488,-48,-78,0,0,0.074949 -1340,5704:487,-47,-78,0,0,0.0749703 -1341,5704:486,-46,-78,0,0,0.0749988 -1342,5704:485,-45,-78,0,0,0.0750273 -1343,5704:384,-44,-78,0,0,0.0750201 -1344,5704:383,-43,-78,0,0,0.0750201 -1345,5704:382,-42,-78,0,0,0.0750131 -1346,5704:381,-41,-78,0,0,0.0750201 -1347,5704:380,-40,-78,0,0,0.0750345 -1348,5703:489,-39,-78,0,0,0.0750345 -1349,5703:488,-38,-78,0,0,0.0750345 -1350,5703:487,-37,-78,0,0,0.0750345 -1351,5703:486,-36,-78,0,0,0.0750345 -1352,5703:485,-35,-78,0,0,0.0750416 -1353,5703:384,-34,-78,0,0,0.0750345 -1354,5703:383,-33,-78,0,0,0.0750345 -1355,5703:382,-32,-78,0,0,0.0750416 -1356,5703:381,-31,-78,0,0,0.0750488 -1357,5703:380,-30,-78,0,0,0.0750488 -1358,5702:489,-29,-78,0,0,0.0750488 -1359,5702:488,-28,-78,0,0,0.0750345 -1360,5702:487,-27,-78,0,0,0.0750201 -1361,5702:486,-26,-78,0,0,0.0761183 -1362,5702:485,-25,-78,0,0,0.0756715 -1363,5702:384,-24,-78,0,0,0.0789397 -1364,3716:486,166,-78,0,0,0.0752487 -1365,3716:487,167,-78,0,0,0.075063 -1366,3716:488,168,-78,0,0,0.0749846 -1367,3716:489,169,-78,0,0,0.074899 -1368,3717:380,170,-78,0,0,0.074892 -1369,3717:381,171,-78,0,0,0.0748777 -1370,3717:382,172,-78,0,0,0.0807894 -1371,3717:383,173,-78,0,0,0.0878209 -1372,3717:384,174,-78,0,0,0.087558 -1373,3717:485,175,-78,0,0,0.0873776 -1374,3717:486,176,-78,0,0,0.0863183 -1375,3717:487,177,-78,0,0,0.0752844 -1376,3717:488,178,-78,0,0,0.0748849 -1377,3717:489,179,-78,0,0,0.074949 -1378,3718:380,180,-78,0,0,0.0749916 -1379,5718:370,-180,-77,0,0,0.0749916 -1380,5717:479,-179,-77,0,0,0.0750201 -1381,5717:478,-178,-77,0,0,0.0750201 -1382,5717:477,-177,-77,0,0,0.0750416 -1383,5717:476,-176,-77,0,0,0.0750488 -1384,5717:475,-175,-77,0,0,0.0750558 -1385,5717:374,-174,-77,0,0,0.0750702 -1386,5717:373,-173,-77,0,0,0.0750773 -1387,5717:372,-172,-77,0,0,0.0750843 -1388,5717:371,-171,-77,0,0,0.0750843 -1389,5717:370,-170,-77,0,0,0.0750915 -1390,5716:479,-169,-77,0,0,0.0750987 -1391,5716:478,-168,-77,0,0,0.0751059 -1392,5716:477,-167,-77,0,0,0.0751128 -1393,5716:476,-166,-77,0,0,0.0751059 -1394,5716:475,-165,-77,0,0,0.0751059 -1395,5716:374,-164,-77,0,0,0.0751059 -1396,5716:373,-163,-77,0,0,0.0751128 -1397,5716:372,-162,-77,0,0,0.0751128 -1398,5716:371,-161,-77,0,0,0.07512 -1399,5716:370,-160,-77,0,0,0.0751344 -1400,5715:479,-159,-77,0,0,0.0751416 -1401,5715:478,-158,-77,0,0,0.0751558 -1402,5715:477,-157,-77,0,0,0.0751486 -1403,5715:476,-156,-77,0,0,0.0751558 -1404,5715:475,-155,-77,0,0,0.075163 -1405,5715:374,-154,-77,0,0,0.0751486 -1406,5715:373,-153,-77,0,0,0.075163 -1407,5715:372,-152,-77,0,0,0.0751558 -1408,5715:371,-151,-77,0,0,0.0751416 -1409,5715:370,-150,-77,0,0,0.0751416 -1410,5714:479,-149,-77,0,0,0.0751344 -1411,5714:478,-148,-77,0,0,0.0751344 -1412,5714:477,-147,-77,0,0,0.0751272 -1413,5714:476,-146,-77,0,0,0.07512 -1414,5714:475,-145,-77,0,0,0.07512 -1415,5714:374,-144,-77,0,0,0.0751128 -1416,5714:373,-143,-77,0,0,0.07512 -1417,5714:372,-142,-77,0,0,0.0751128 -1418,5714:371,-141,-77,0,0,0.0751128 -1419,5714:370,-140,-77,0,0,0.07512 -1420,5713:479,-139,-77,0,0,0.07512 -1421,5713:478,-138,-77,0,0,0.0751272 -1422,5713:477,-137,-77,0,0,0.07527 -1423,5713:476,-136,-77,0,0,0.0758155 -1424,5713:475,-135,-77,0,0,0.0776421 -1425,5713:374,-134,-77,0,0,0.0779001 -1426,5711:370,-110,-77,0,0,0.0832649 -1427,5710:479,-109,-77,0,0,0.0880188 -1428,5710:476,-106,-77,0,0,0.0759162 -1429,5710:475,-105,-77,0,0,0.0753775 -1430,5710:374,-104,-77,0,0,0.0768514 -1431,5710:373,-103,-77,0,0,0.0810109 -1432,5706:371,-61,-77,0,0,0.0753489 -1433,5706:370,-60,-77,0,0,0.075163 -1434,5705:479,-59,-77,0,0,0.0750201 -1435,5705:478,-58,-77,0,0,0.074949 -1436,5705:477,-57,-77,0,0,0.0749346 -1437,5705:476,-56,-77,0,0,0.0749275 -1438,5705:475,-55,-77,0,0,0.0749346 -1439,5705:374,-54,-77,0,0,0.0749346 -1440,5705:373,-53,-77,0,0,0.0749418 -1441,5705:372,-52,-77,0,0,0.0749562 -1442,5705:371,-51,-77,0,0,0.0749631 -1443,5705:370,-50,-77,0,0,0.0749631 -1444,5704:479,-49,-77,0,0,0.0749631 -1445,5704:478,-48,-77,0,0,0.074949 -1446,5704:477,-47,-77,0,0,0.0749703 -1447,5704:476,-46,-77,0,0,0.0749988 -1448,5704:475,-45,-77,0,0,0.0750273 -1449,5704:374,-44,-77,0,0,0.0750201 -1450,5704:373,-43,-77,0,0,0.0750201 -1451,5704:372,-42,-77,0,0,0.0750131 -1452,5704:371,-41,-77,0,0,0.0750201 -1453,5704:370,-40,-77,0,0,0.0750345 -1454,5703:479,-39,-77,0,0,0.0750345 -1455,5703:478,-38,-77,0,0,0.0750345 -1456,5703:477,-37,-77,0,0,0.0750345 -1457,5703:476,-36,-77,0,0,0.0750345 -1458,5703:475,-35,-77,0,0,0.0750416 -1459,5703:374,-34,-77,0,0,0.0750345 -1460,5703:373,-33,-77,0,0,0.0750345 -1461,5703:372,-32,-77,0,0,0.0750416 -1462,5703:371,-31,-77,0,0,0.0750488 -1463,5703:370,-30,-77,0,0,0.0750488 -1464,5702:479,-29,-77,0,0,0.0750488 -1465,5702:478,-28,-77,0,0,0.0750345 -1466,5702:477,-27,-77,0,0,0.0750201 -1467,5702:476,-26,-77,0,0,0.0761183 -1468,5702:475,-25,-77,0,0,0.0756715 -1469,5702:374,-24,-77,0,0,0.0789397 -1470,3716:476,166,-77,0,0,0.0752487 -1471,3716:477,167,-77,0,0,0.075063 -1472,3716:478,168,-77,0,0,0.0749846 -1473,3716:479,169,-77,0,0,0.074899 -1474,3717:370,170,-77,0,0,0.074892 -1475,3717:371,171,-77,0,0,0.0748777 -1476,3717:372,172,-77,0,0,0.0807894 -1477,3717:373,173,-77,0,0,0.0878209 -1478,3717:374,174,-77,0,0,0.087558 -1479,3717:475,175,-77,0,0,0.0873776 -1480,3717:476,176,-77,0,0,0.0863183 -1481,3717:477,177,-77,0,0,0.0752844 -1482,3717:478,178,-77,0,0,0.0748849 -1483,3717:479,179,-77,0,0,0.074949 -1484,3718:370,180,-77,0,0,0.0749916 -1485,5718:360,-180,-76,0,0,0.0749775 -1486,5717:469,-179,-76,0,0,0.075006 -1487,5717:468,-178,-76,0,0,0.0750345 -1488,5717:467,-177,-76,0,0,0.0750345 -1489,5717:466,-176,-76,0,0,0.0750416 -1490,5717:465,-175,-76,0,0,0.0750488 -1491,5717:364,-174,-76,0,0,0.075063 -1492,5717:363,-173,-76,0,0,0.0750702 -1493,5717:362,-172,-76,0,0,0.0750702 -1494,5717:361,-171,-76,0,0,0.0750702 -1495,5717:360,-170,-76,0,0,0.0750702 -1496,5716:469,-169,-76,0,0,0.0750702 -1497,5716:468,-168,-76,0,0,0.0750702 -1498,5716:467,-167,-76,0,0,0.0750702 -1499,5716:466,-166,-76,0,0,0.0750773 -1500,5716:465,-165,-76,0,0,0.0750843 -1501,5716:364,-164,-76,0,0,0.0750915 -1502,5716:363,-163,-76,0,0,0.0750915 -1503,5716:362,-162,-76,0,0,0.0750987 -1504,5716:361,-161,-76,0,0,0.0751059 -1505,5716:360,-160,-76,0,0,0.0751128 -1506,5715:469,-159,-76,0,0,0.0751128 -1507,5715:468,-158,-76,0,0,0.0751059 -1508,5715:467,-157,-76,0,0,0.0751128 -1509,5715:466,-156,-76,0,0,0.0751272 -1510,5715:465,-155,-76,0,0,0.0751272 -1511,5715:364,-154,-76,0,0,0.0751416 -1512,5715:363,-153,-76,0,0,0.0751558 -1513,5715:362,-152,-76,0,0,0.075163 -1514,5715:361,-151,-76,0,0,0.075163 -1515,5715:360,-150,-76,0,0,0.0751558 -1516,5714:469,-149,-76,0,0,0.0751558 -1517,5714:468,-148,-76,0,0,0.075163 -1518,5714:467,-147,-76,0,0,0.0751701 -1519,5714:466,-146,-76,0,0,0.0751701 -1520,5714:465,-145,-76,0,0,0.0751558 -1521,5714:364,-144,-76,0,0,0.0751486 -1522,5714:363,-143,-76,0,0,0.0751558 -1523,5714:362,-142,-76,0,0,0.0751558 -1524,5714:361,-141,-76,0,0,0.0751416 -1525,5714:360,-140,-76,0,0,0.0751344 -1526,5713:469,-139,-76,0,0,0.07512 -1527,5713:468,-138,-76,0,0,0.0751059 -1528,5713:467,-137,-76,0,0,0.0750987 -1529,5713:466,-136,-76,0,0,0.0750915 -1530,5713:465,-135,-76,0,0,0.0750702 -1531,5713:364,-134,-76,0,0,0.0750416 -1532,5713:363,-133,-76,0,0,0.0750488 -1533,5713:362,-132,-76,0,0,0.0752844 -1534,5713:361,-131,-76,0,0,0.0790444 -1535,5713:360,-130,-76,0,0,0.0808658 -1536,5712:469,-129,-76,0,0,0.0833984 -1537,5712:468,-128,-76,0,0,0.0821503 -1538,5711:467,-117,-76,0,0,0.0752631 -1539,5711:465,-115,-76,0,0,0.0772606 -1540,5711:363,-113,-76,0,0,0.0838865 -1541,5711:362,-112,-76,0,0,0.0835949 -1542,5711:361,-111,-76,0,0,0.0856883 -1543,5711:360,-110,-76,0,0,0.0858897 -1544,5710:467,-107,-76,0,0,0.075729 -1545,5710:466,-106,-76,0,0,0.0752916 -1546,5710:465,-105,-76,0,0,0.0752844 -1547,5710:364,-104,-76,0,0,0.0764803 -1548,5710:363,-103,-76,0,0,0.0809726 -1549,5710:362,-102,-76,0,0,0.0821503 -1550,5706:361,-61,-76,0,0,0.0754061 -1551,5706:360,-60,-76,0,0,0.0752487 -1552,5705:469,-59,-76,0,0,0.0750488 -1553,5705:468,-58,-76,0,0,0.0749775 -1554,5705:467,-57,-76,0,0,0.0749418 -1555,5705:466,-56,-76,0,0,0.0749346 -1556,5705:465,-55,-76,0,0,0.0749346 -1557,5705:364,-54,-76,0,0,0.0749418 -1558,5705:363,-53,-76,0,0,0.0749562 -1559,5705:362,-52,-76,0,0,0.0749703 -1560,5705:361,-51,-76,0,0,0.0749775 -1561,5705:360,-50,-76,0,0,0.0749846 -1562,5704:469,-49,-76,0,0,0.0749846 -1563,5704:468,-48,-76,0,0,0.0749846 -1564,5704:467,-47,-76,0,0,0.0749775 -1565,5704:466,-46,-76,0,0,0.0749916 -1566,5704:465,-45,-76,0,0,0.0750131 -1567,5704:364,-44,-76,0,0,0.0750345 -1568,5704:363,-43,-76,0,0,0.0750345 -1569,5704:362,-42,-76,0,0,0.0750416 -1570,5704:361,-41,-76,0,0,0.0750416 -1571,5704:360,-40,-76,0,0,0.0750488 -1572,5703:469,-39,-76,0,0,0.0750488 -1573,5703:468,-38,-76,0,0,0.0750488 -1574,5703:467,-37,-76,0,0,0.0750488 -1575,5703:466,-36,-76,0,0,0.0750488 -1576,5703:465,-35,-76,0,0,0.0750488 -1577,5703:364,-34,-76,0,0,0.0750558 -1578,5703:363,-33,-76,0,0,0.0750558 -1579,5703:362,-32,-76,0,0,0.0750558 -1580,5703:361,-31,-76,0,0,0.0750488 -1581,5703:360,-30,-76,0,0,0.0750488 -1582,5702:469,-29,-76,0,0,0.0750488 -1583,5702:468,-28,-76,0,0,0.0750416 -1584,5702:467,-27,-76,0,0,0.0750345 -1585,5702:466,-26,-76,0,0,0.0750345 -1586,5702:465,-25,-76,0,0,0.0754348 -1587,5702:364,-24,-76,0,0,0.0767785 -1588,5702:363,-23,-76,0,0,0.0782775 -1589,5702:362,-22,-76,0,0,0.0828814 -1590,5702:361,-21,-76,0,0,0.0866349 -1591,3716:467,167,-76,0,0,0.0752273 -1592,3716:468,168,-76,0,0,0.0750416 -1593,3716:469,169,-76,0,0,0.0749916 -1594,3717:360,170,-76,0,0,0.0749988 -1595,3717:361,171,-76,0,0,0.074892 -1596,3717:362,172,-76,0,0,0.0763427 -1597,3717:363,173,-76,0,0,0.0795393 -1598,3717:364,174,-76,0,0,0.0850706 -1599,3717:465,175,-76,0,0,0.086651 -1600,3717:466,176,-76,0,0,0.0858252 -1601,3717:467,177,-76,0,0,0.0754133 -1602,3717:468,178,-76,0,0,0.0748777 -1603,3717:469,179,-76,0,0,0.0749346 -1604,3718:360,180,-76,0,0,0.0749775 -1605,5718:350,-180,-75,0,0,0.0749775 -1606,5717:459,-179,-75,0,0,0.0749988 -1607,5717:458,-178,-75,0,0,0.0750273 -1608,5717:457,-177,-75,0,0,0.0750345 -1609,5717:456,-176,-75,0,0,0.0750488 -1610,5717:455,-175,-75,0,0,0.0750488 -1611,5717:354,-174,-75,0,0,0.075063 -1612,5717:353,-173,-75,0,0,0.075063 -1613,5717:352,-172,-75,0,0,0.0750558 -1614,5717:351,-171,-75,0,0,0.0750558 -1615,5717:350,-170,-75,0,0,0.075063 -1616,5716:459,-169,-75,0,0,0.075063 -1617,5716:458,-168,-75,0,0,0.075063 -1618,5716:457,-167,-75,0,0,0.0750702 -1619,5716:456,-166,-75,0,0,0.0750702 -1620,5716:455,-165,-75,0,0,0.0750773 -1621,5716:354,-164,-75,0,0,0.0750843 -1622,5716:353,-163,-75,0,0,0.0750843 -1623,5716:352,-162,-75,0,0,0.0750843 -1624,5716:351,-161,-75,0,0,0.0750843 -1625,5716:350,-160,-75,0,0,0.0750843 -1626,5715:459,-159,-75,0,0,0.0750843 -1627,5715:458,-158,-75,0,0,0.0750915 -1628,5715:457,-157,-75,0,0,0.0751059 -1629,5715:456,-156,-75,0,0,0.0751128 -1630,5715:455,-155,-75,0,0,0.0751272 -1631,5715:354,-154,-75,0,0,0.0751272 -1632,5715:353,-153,-75,0,0,0.0751272 -1633,5715:352,-152,-75,0,0,0.0751486 -1634,5715:351,-151,-75,0,0,0.0751558 -1635,5715:350,-150,-75,0,0,0.0751486 -1636,5714:459,-149,-75,0,0,0.0751558 -1637,5714:458,-148,-75,0,0,0.075163 -1638,5714:457,-147,-75,0,0,0.0751701 -1639,5714:456,-146,-75,0,0,0.0751843 -1640,5714:455,-145,-75,0,0,0.0751843 -1641,5714:354,-144,-75,0,0,0.0751843 -1642,5714:353,-143,-75,0,0,0.0751843 -1643,5714:352,-142,-75,0,0,0.0751771 -1644,5714:351,-141,-75,0,0,0.0751771 -1645,5714:350,-140,-75,0,0,0.0751771 -1646,5713:459,-139,-75,0,0,0.0751558 -1647,5713:458,-138,-75,0,0,0.0751272 -1648,5713:457,-137,-75,0,0,0.0750987 -1649,5713:456,-136,-75,0,0,0.0750843 -1650,5713:455,-135,-75,0,0,0.0750345 -1651,5713:354,-134,-75,0,0,0.0750416 -1652,5713:353,-133,-75,0,0,0.075063 -1653,5713:352,-132,-75,0,0,0.0750915 -1654,5713:351,-131,-75,0,0,0.075163 -1655,5713:350,-130,-75,0,0,0.0754779 -1656,5712:459,-129,-75,0,0,0.0775539 -1657,5712:458,-128,-75,0,0,0.0755207 -1658,5712:354,-124,-75,0,0,0.0766328 -1659,5712:353,-123,-75,0,0,0.0758515 -1660,5712:352,-122,-75,0,0,0.0753203 -1661,5712:351,-121,-75,0,0,0.0753989 -1662,5712:350,-120,-75,0,0,0.0753203 -1663,5711:459,-119,-75,0,0,0.0753703 -1664,5711:458,-118,-75,0,0,0.0753203 -1665,5711:457,-117,-75,0,0,0.0751987 -1666,5711:456,-116,-75,0,0,0.0752559 -1667,5711:455,-115,-75,0,0,0.0763643 -1668,5711:354,-114,-75,0,0,0.077635 -1669,5711:353,-113,-75,0,0,0.0795545 -1670,5711:352,-112,-75,0,0,0.0751771 -1671,5711:351,-111,-75,0,0,0.0754061 -1672,5710:458,-108,-75,0,0,0.0756787 -1673,5710:457,-107,-75,0,0,0.0753489 -1674,5710:456,-106,-75,0,0,0.0752559 -1675,5710:455,-105,-75,0,0,0.0753703 -1676,5710:354,-104,-75,0,0,0.0787234 -1677,5710:353,-103,-75,0,0,0.0813097 -1678,5708:353,-83,-75,0,0,0.0902963 -1679,5708:352,-82,-75,0,0,0.0903556 -1680,5706:350,-60,-75,0,0,0.0752844 -1681,5705:459,-59,-75,0,0,0.0750131 -1682,5705:458,-58,-75,0,0,0.0749703 -1683,5705:457,-57,-75,0,0,0.074949 -1684,5705:456,-56,-75,0,0,0.074949 -1685,5705:455,-55,-75,0,0,0.0749346 -1686,5705:354,-54,-75,0,0,0.0749418 -1687,5705:353,-53,-75,0,0,0.0749631 -1688,5705:352,-52,-75,0,0,0.0749703 -1689,5705:351,-51,-75,0,0,0.0749916 -1690,5705:350,-50,-75,0,0,0.0749988 -1691,5704:459,-49,-75,0,0,0.0749988 -1692,5704:458,-48,-75,0,0,0.0749988 -1693,5704:457,-47,-75,0,0,0.075006 -1694,5704:456,-46,-75,0,0,0.0750131 -1695,5704:455,-45,-75,0,0,0.0750273 -1696,5704:354,-44,-75,0,0,0.0750416 -1697,5704:353,-43,-75,0,0,0.0750488 -1698,5704:352,-42,-75,0,0,0.0750558 -1699,5704:351,-41,-75,0,0,0.0750558 -1700,5704:350,-40,-75,0,0,0.0750558 -1701,5703:459,-39,-75,0,0,0.0750558 -1702,5703:458,-38,-75,0,0,0.0750488 -1703,5703:457,-37,-75,0,0,0.0750416 -1704,5703:456,-36,-75,0,0,0.0750416 -1705,5703:455,-35,-75,0,0,0.0750416 -1706,5703:354,-34,-75,0,0,0.0750416 -1707,5703:353,-33,-75,0,0,0.0750416 -1708,5703:352,-32,-75,0,0,0.0750416 -1709,5703:351,-31,-75,0,0,0.0750416 -1710,5703:350,-30,-75,0,0,0.0750345 -1711,5702:459,-29,-75,0,0,0.0750273 -1712,5702:458,-28,-75,0,0,0.0750273 -1713,5702:457,-27,-75,0,0,0.0750201 -1714,5702:456,-26,-75,0,0,0.0750131 -1715,5702:455,-25,-75,0,0,0.0749988 -1716,5702:354,-24,-75,0,0,0.0749846 -1717,5702:353,-23,-75,0,0,0.0754706 -1718,5702:352,-22,-75,0,0,0.077937 -1719,5702:351,-21,-75,0,0,0.0846637 -1720,5702:350,-20,-75,0,0,0.0867568 -1721,3716:458,168,-75,0,0,0.0754779 -1722,3716:459,169,-75,0,0,0.0753775 -1723,3717:350,170,-75,0,0,0.0751128 -1724,3717:351,171,-75,0,0,0.074949 -1725,3717:352,172,-75,0,0,0.0749133 -1726,3717:353,173,-75,0,0,0.0766839 -1727,3717:354,174,-75,0,0,0.0805836 -1728,3717:455,175,-75,0,0,0.0810721 -1729,3717:456,176,-75,0,0,0.0829675 -1730,3717:457,177,-75,0,0,0.0764223 -1731,3717:458,178,-75,0,0,0.074892 -1732,3717:459,179,-75,0,0,0.0749346 -1733,3718:350,180,-75,0,0,0.0749775 -1734,5718:140,-180,-74,0,0,0.0749703 -1735,5717:249,-179,-74,0,0,0.075006 -1736,5717:248,-178,-74,0,0,0.0750201 -1737,5717:247,-177,-74,0,0,0.0750416 -1738,5717:246,-176,-74,0,0,0.0750416 -1739,5717:245,-175,-74,0,0,0.0750416 -1740,5717:144,-174,-74,0,0,0.0750558 -1741,5717:143,-173,-74,0,0,0.0750558 -1742,5717:142,-172,-74,0,0,0.0750488 -1743,5717:141,-171,-74,0,0,0.0750488 -1744,5717:140,-170,-74,0,0,0.0750416 -1745,5716:249,-169,-74,0,0,0.0750488 -1746,5716:248,-168,-74,0,0,0.0750558 -1747,5716:247,-167,-74,0,0,0.0750558 -1748,5716:246,-166,-74,0,0,0.075063 -1749,5716:245,-165,-74,0,0,0.0750702 -1750,5716:144,-164,-74,0,0,0.0750843 -1751,5716:143,-163,-74,0,0,0.0750843 -1752,5716:142,-162,-74,0,0,0.0750987 -1753,5716:141,-161,-74,0,0,0.0750987 -1754,5716:140,-160,-74,0,0,0.0751128 -1755,5715:249,-159,-74,0,0,0.07512 -1756,5715:248,-158,-74,0,0,0.07512 -1757,5715:247,-157,-74,0,0,0.0751272 -1758,5715:246,-156,-74,0,0,0.0751344 -1759,5715:245,-155,-74,0,0,0.0751272 -1760,5715:144,-154,-74,0,0,0.07512 -1761,5715:143,-153,-74,0,0,0.07512 -1762,5715:142,-152,-74,0,0,0.0751416 -1763,5715:141,-151,-74,0,0,0.0751486 -1764,5715:140,-150,-74,0,0,0.0751558 -1765,5714:249,-149,-74,0,0,0.0751558 -1766,5714:248,-148,-74,0,0,0.075163 -1767,5714:247,-147,-74,0,0,0.075163 -1768,5714:246,-146,-74,0,0,0.0751701 -1769,5714:245,-145,-74,0,0,0.0751701 -1770,5714:144,-144,-74,0,0,0.0751701 -1771,5714:143,-143,-74,0,0,0.0751843 -1772,5714:142,-142,-74,0,0,0.0751843 -1773,5714:141,-141,-74,0,0,0.0751771 -1774,5714:140,-140,-74,0,0,0.0751987 -1775,5713:249,-139,-74,0,0,0.0752057 -1776,5713:248,-138,-74,0,0,0.0751701 -1777,5713:247,-137,-74,0,0,0.0751416 -1778,5713:246,-136,-74,0,0,0.07512 -1779,5713:245,-135,-74,0,0,0.0750987 -1780,5713:144,-134,-74,0,0,0.075063 -1781,5713:143,-133,-74,0,0,0.0750702 -1782,5713:142,-132,-74,0,0,0.0750915 -1783,5713:141,-131,-74,0,0,0.0750915 -1784,5713:140,-130,-74,0,0,0.0751128 -1785,5712:249,-129,-74,0,0,0.0751416 -1786,5712:248,-128,-74,0,0,0.0751701 -1787,5712:247,-127,-74,0,0,0.0752057 -1788,5712:246,-126,-74,0,0,0.0752772 -1789,5712:245,-125,-74,0,0,0.0753631 -1790,5712:144,-124,-74,0,0,0.0753417 -1791,5712:143,-123,-74,0,0,0.0752772 -1792,5712:142,-122,-74,0,0,0.0752559 -1793,5712:141,-121,-74,0,0,0.0751987 -1794,5712:140,-120,-74,0,0,0.075163 -1795,5711:249,-119,-74,0,0,0.0751771 -1796,5711:248,-118,-74,0,0,0.0751701 -1797,5711:247,-117,-74,0,0,0.0751272 -1798,5711:246,-116,-74,0,0,0.0751272 -1799,5711:245,-115,-74,0,0,0.0751272 -1800,5711:144,-114,-74,0,0,0.0750843 -1801,5711:143,-113,-74,0,0,0.0750488 -1802,5711:142,-112,-74,0,0,0.0750201 -1803,5711:141,-111,-74,0,0,0.075063 -1804,5711:140,-110,-74,0,0,0.0751059 -1805,5710:249,-109,-74,0,0,0.0753058 -1806,5710:248,-108,-74,0,0,0.0752273 -1807,5710:247,-107,-74,0,0,0.0752129 -1808,5710:246,-106,-74,0,0,0.0752559 -1809,5710:245,-105,-74,0,0,0.0756932 -1810,5710:144,-104,-74,0,0,0.0807207 -1811,5708:245,-85,-74,0,0,0.0878867 -1812,5708:144,-84,-74,0,0,0.0860028 -1813,5708:143,-83,-74,0,0,0.083524 -1814,5708:142,-82,-74,0,0,0.0852306 -1815,5708:141,-81,-74,0,0,0.0884319 -1816,5705:249,-59,-74,0,0,0.0751843 -1817,5705:248,-58,-74,0,0,0.0749775 -1818,5705:247,-57,-74,0,0,0.0749631 -1819,5705:246,-56,-74,0,0,0.074949 -1820,5705:245,-55,-74,0,0,0.074949 -1821,5705:144,-54,-74,0,0,0.074949 -1822,5705:143,-53,-74,0,0,0.0749631 -1823,5705:142,-52,-74,0,0,0.0749631 -1824,5705:141,-51,-74,0,0,0.0749775 -1825,5705:140,-50,-74,0,0,0.075006 -1826,5704:249,-49,-74,0,0,0.0750201 -1827,5704:248,-48,-74,0,0,0.0750131 -1828,5704:247,-47,-74,0,0,0.075006 -1829,5704:246,-46,-74,0,0,0.0750273 -1830,5704:245,-45,-74,0,0,0.0750416 -1831,5704:144,-44,-74,0,0,0.0750488 -1832,5704:143,-43,-74,0,0,0.0750558 -1833,5704:142,-42,-74,0,0,0.0750558 -1834,5704:141,-41,-74,0,0,0.0750558 -1835,5704:140,-40,-74,0,0,0.0750558 -1836,5703:249,-39,-74,0,0,0.0750488 -1837,5703:248,-38,-74,0,0,0.0750416 -1838,5703:247,-37,-74,0,0,0.0750345 -1839,5703:246,-36,-74,0,0,0.0750273 -1840,5703:245,-35,-74,0,0,0.0750273 -1841,5703:144,-34,-74,0,0,0.0750201 -1842,5703:143,-33,-74,0,0,0.0750201 -1843,5703:142,-32,-74,0,0,0.0750273 -1844,5703:141,-31,-74,0,0,0.0750273 -1845,5703:140,-30,-74,0,0,0.0750201 -1846,5702:249,-29,-74,0,0,0.0750131 -1847,5702:248,-28,-74,0,0,0.0750131 -1848,5702:247,-27,-74,0,0,0.0750131 -1849,5702:246,-26,-74,0,0,0.0750131 -1850,5702:245,-25,-74,0,0,0.0750131 -1851,5702:144,-24,-74,0,0,0.0749988 -1852,5702:143,-23,-74,0,0,0.0749775 -1853,5702:142,-22,-74,0,0,0.0749846 -1854,5702:141,-21,-74,0,0,0.0749775 -1855,5702:140,-20,-74,0,0,0.0758082 -1856,3717:140,170,-74,0,0,0.0749988 -1857,3717:141,171,-74,0,0,0.0749562 -1858,3717:142,172,-74,0,0,0.0749562 -1859,3717:143,173,-74,0,0,0.0763716 -1860,3717:144,174,-74,0,0,0.0784555 -1861,3717:245,175,-74,0,0,0.0797202 -1862,3717:246,176,-74,0,0,0.0760172 -1863,3717:247,177,-74,0,0,0.0748777 -1864,3717:248,178,-74,0,0,0.0748849 -1865,3717:249,179,-74,0,0,0.0749346 -1866,3718:140,180,-74,0,0,0.0749703 -1867,5718:130,-180,-73,0,0,0.0749703 -1868,5717:239,-179,-73,0,0,0.0749988 -1869,5717:238,-178,-73,0,0,0.0750131 -1870,5717:237,-177,-73,0,0,0.0750201 -1871,5717:236,-176,-73,0,0,0.0750345 -1872,5717:235,-175,-73,0,0,0.0750345 -1873,5717:134,-174,-73,0,0,0.0750416 -1874,5717:133,-173,-73,0,0,0.075063 -1875,5717:132,-172,-73,0,0,0.0750558 -1876,5717:131,-171,-73,0,0,0.0750416 -1877,5717:130,-170,-73,0,0,0.0750345 -1878,5716:239,-169,-73,0,0,0.0750416 -1879,5716:238,-168,-73,0,0,0.0750416 -1880,5716:237,-167,-73,0,0,0.0750416 -1881,5716:236,-166,-73,0,0,0.0750488 -1882,5716:235,-165,-73,0,0,0.075063 -1883,5716:134,-164,-73,0,0,0.0750773 -1884,5716:133,-163,-73,0,0,0.0750843 -1885,5716:132,-162,-73,0,0,0.0750915 -1886,5716:131,-161,-73,0,0,0.0750987 -1887,5716:130,-160,-73,0,0,0.0751059 -1888,5715:239,-159,-73,0,0,0.0751128 -1889,5715:238,-158,-73,0,0,0.0751272 -1890,5715:237,-157,-73,0,0,0.0751272 -1891,5715:236,-156,-73,0,0,0.0751272 -1892,5715:235,-155,-73,0,0,0.0751272 -1893,5715:134,-154,-73,0,0,0.07512 -1894,5715:133,-153,-73,0,0,0.07512 -1895,5715:132,-152,-73,0,0,0.0751272 -1896,5715:131,-151,-73,0,0,0.0751416 -1897,5715:130,-150,-73,0,0,0.075163 -1898,5714:239,-149,-73,0,0,0.0751771 -1899,5714:238,-148,-73,0,0,0.0751843 -1900,5714:237,-147,-73,0,0,0.0751915 -1901,5714:236,-146,-73,0,0,0.0752057 -1902,5714:235,-145,-73,0,0,0.0752057 -1903,5714:134,-144,-73,0,0,0.0751987 -1904,5714:133,-143,-73,0,0,0.0751915 -1905,5714:132,-142,-73,0,0,0.0751915 -1906,5714:131,-141,-73,0,0,0.0751701 -1907,5714:130,-140,-73,0,0,0.0751558 -1908,5713:239,-139,-73,0,0,0.0751987 -1909,5713:238,-138,-73,0,0,0.0752844 -1910,5713:237,-137,-73,0,0,0.07527 -1911,5713:236,-136,-73,0,0,0.0752273 -1912,5713:235,-135,-73,0,0,0.0751558 -1913,5713:134,-134,-73,0,0,0.075063 -1914,5713:133,-133,-73,0,0,0.0750416 -1915,5713:132,-132,-73,0,0,0.0750773 -1916,5713:131,-131,-73,0,0,0.07512 -1917,5713:130,-130,-73,0,0,0.0751344 -1918,5712:239,-129,-73,0,0,0.0751416 -1919,5712:238,-128,-73,0,0,0.0751486 -1920,5712:237,-127,-73,0,0,0.0751701 -1921,5712:236,-126,-73,0,0,0.0752273 -1922,5712:235,-125,-73,0,0,0.0752343 -1923,5712:134,-124,-73,0,0,0.0751771 -1924,5712:133,-123,-73,0,0,0.0751701 -1925,5712:132,-122,-73,0,0,0.0751558 -1926,5712:131,-121,-73,0,0,0.0751486 -1927,5712:130,-120,-73,0,0,0.0751416 -1928,5711:239,-119,-73,0,0,0.0751344 -1929,5711:238,-118,-73,0,0,0.0751272 -1930,5711:237,-117,-73,0,0,0.0751128 -1931,5711:236,-116,-73,0,0,0.0750987 -1932,5711:235,-115,-73,0,0,0.0750915 -1933,5711:134,-114,-73,0,0,0.0750773 -1934,5711:133,-113,-73,0,0,0.0750702 -1935,5711:132,-112,-73,0,0,0.0750558 -1936,5711:131,-111,-73,0,0,0.075063 -1937,5711:130,-110,-73,0,0,0.0751059 -1938,5710:239,-109,-73,0,0,0.0751416 -1939,5710:238,-108,-73,0,0,0.0751701 -1940,5710:237,-107,-73,0,0,0.0752201 -1941,5710:236,-106,-73,0,0,0.0755207 -4084,5615:124,-154,-62,0,0,0.07512 -1942,5710:235,-105,-73,0,0,0.0795244 -1943,5710:134,-104,-73,0,0,0.0808353 -1944,5708:238,-88,-73,0,0,0.0757435 -1945,5708:237,-87,-73,0,0,0.0761689 -1946,5708:236,-86,-73,0,0,0.0804088 -1947,5708:235,-85,-73,0,0,0.0771507 -1948,5708:134,-84,-73,0,0,0.0756645 -1949,5708:133,-83,-73,0,0,0.0751344 -1950,5708:132,-82,-73,0,0,0.077224 -1951,5708:131,-81,-73,0,0,0.0777012 -1952,5708:130,-80,-73,0,0,0.0796298 -1953,5707:239,-79,-73,0,0,0.0822742 -1954,5707:235,-75,-73,0,0,0.0795393 -1955,5707:134,-74,-73,0,0,0.0829675 -1956,5707:133,-73,-73,0,0,0.0876811 -1957,5706:130,-60,-73,0,0,0.075313 -1958,5705:239,-59,-73,0,0,0.07512 -1959,5705:238,-58,-73,0,0,0.075006 -1960,5705:237,-57,-73,0,0,0.0749703 -1961,5705:236,-56,-73,0,0,0.0749631 -1962,5705:235,-55,-73,0,0,0.0749562 -1963,5705:134,-54,-73,0,0,0.0749562 -1964,5705:133,-53,-73,0,0,0.0749916 -1965,5705:132,-52,-73,0,0,0.0749988 -1966,5705:131,-51,-73,0,0,0.075006 -1967,5705:130,-50,-73,0,0,0.0750345 -1968,5704:239,-49,-73,0,0,0.0750201 -1969,5704:238,-48,-73,0,0,0.0750131 -1970,5704:237,-47,-73,0,0,0.0750345 -1971,5704:236,-46,-73,0,0,0.0750488 -1972,5704:235,-45,-73,0,0,0.0750488 -1973,5704:134,-44,-73,0,0,0.0750558 -1974,5704:133,-43,-73,0,0,0.0750558 -1975,5704:132,-42,-73,0,0,0.0750558 -1976,5704:131,-41,-73,0,0,0.0750488 -1977,5704:130,-40,-73,0,0,0.0750416 -1978,5703:239,-39,-73,0,0,0.0750345 -1979,5703:238,-38,-73,0,0,0.0750273 -1980,5703:237,-37,-73,0,0,0.0750201 -1981,5703:236,-36,-73,0,0,0.0750131 -1982,5703:235,-35,-73,0,0,0.0750131 -1983,5703:134,-34,-73,0,0,0.0750131 -1984,5703:133,-33,-73,0,0,0.075006 -1985,5703:132,-32,-73,0,0,0.0750131 -1986,5703:131,-31,-73,0,0,0.0750131 -1987,5703:130,-30,-73,0,0,0.075006 -1988,5702:239,-29,-73,0,0,0.075006 -1989,5702:238,-28,-73,0,0,0.0749988 -1990,5702:237,-27,-73,0,0,0.0749916 -1991,5702:236,-26,-73,0,0,0.0749988 -1992,5702:235,-25,-73,0,0,0.075006 -1993,5702:134,-24,-73,0,0,0.075006 -1994,5702:133,-23,-73,0,0,0.0750131 -1995,5702:132,-22,-73,0,0,0.0750131 -1996,5702:131,-21,-73,0,0,0.0750131 -1997,5702:130,-20,-73,0,0,0.0750131 -1998,5701:239,-19,-73,0,0,0.0750843 -1999,5701:238,-18,-73,0,0,0.0751344 -2000,5701:237,-17,-73,0,0,0.0752057 -2001,3717:131,171,-73,0,0,0.0751558 -2002,3717:132,172,-73,0,0,0.0750416 -2003,3717:133,173,-73,0,0,0.0750843 -2004,3717:134,174,-73,0,0,0.0775172 -2005,3717:235,175,-73,0,0,0.0752916 -2006,3717:236,176,-73,0,0,0.0747284 -2007,3717:237,177,-73,0,0,0.0748208 -2008,3717:238,178,-73,0,0,0.0748849 -2009,3717:239,179,-73,0,0,0.0749346 -2010,3718:130,180,-73,0,0,0.0749703 -2011,5718:120,-180,-72,0,0,0.0749631 -2012,5717:229,-179,-72,0,0,0.0749916 -2013,5717:228,-178,-72,0,0,0.075006 -2014,5717:227,-177,-72,0,0,0.0750201 -2015,5717:226,-176,-72,0,0,0.0750345 -2016,5717:225,-175,-72,0,0,0.075063 -2017,5717:124,-174,-72,0,0,0.0750702 -2018,5717:123,-173,-72,0,0,0.0750773 -2019,5717:122,-172,-72,0,0,0.075063 -2020,5717:121,-171,-72,0,0,0.0750416 -2021,5717:120,-170,-72,0,0,0.0750416 -2022,5716:229,-169,-72,0,0,0.0750416 -2023,5716:228,-168,-72,0,0,0.0750345 -2024,5716:227,-167,-72,0,0,0.0750345 -2025,5716:226,-166,-72,0,0,0.0750416 -2026,5716:225,-165,-72,0,0,0.0750488 -2027,5716:124,-164,-72,0,0,0.075063 -2028,5716:123,-163,-72,0,0,0.0750702 -2029,5716:122,-162,-72,0,0,0.0750773 -2030,5716:121,-161,-72,0,0,0.0750773 -2031,5716:120,-160,-72,0,0,0.0750843 -2032,5715:229,-159,-72,0,0,0.0750915 -2033,5715:228,-158,-72,0,0,0.0750987 -2034,5715:227,-157,-72,0,0,0.0751128 -2035,5715:226,-156,-72,0,0,0.0751272 -2036,5715:225,-155,-72,0,0,0.07512 -2037,5715:124,-154,-72,0,0,0.0751272 -2038,5715:123,-153,-72,0,0,0.07512 -2039,5715:122,-152,-72,0,0,0.0751272 -2040,5715:121,-151,-72,0,0,0.0751416 -2041,5715:120,-150,-72,0,0,0.0751558 -2042,5714:229,-149,-72,0,0,0.0751701 -2043,5714:228,-148,-72,0,0,0.0751771 -2044,5714:227,-147,-72,0,0,0.0751843 -2045,5714:226,-146,-72,0,0,0.0751987 -2046,5714:225,-145,-72,0,0,0.0751987 -2047,5714:124,-144,-72,0,0,0.0752129 -2048,5714:123,-143,-72,0,0,0.0752201 -2049,5714:122,-142,-72,0,0,0.0752057 -2050,5714:121,-141,-72,0,0,0.0751771 -2051,5714:120,-140,-72,0,0,0.0751344 -2052,5713:229,-139,-72,0,0,0.07512 -2053,5713:228,-138,-72,0,0,0.0751128 -2054,5713:227,-137,-72,0,0,0.0751344 -2055,5713:226,-136,-72,0,0,0.0752772 -2056,5713:225,-135,-72,0,0,0.0755135 -2057,5713:124,-134,-72,0,0,0.0751558 -2058,5713:123,-133,-72,0,0,0.0750416 -2059,5713:122,-132,-72,0,0,0.0750702 -2060,5713:121,-131,-72,0,0,0.0751059 -2061,5713:120,-130,-72,0,0,0.0751344 -2062,5712:229,-129,-72,0,0,0.0751558 -2063,5712:228,-128,-72,0,0,0.0751558 -2064,5712:227,-127,-72,0,0,0.0751558 -2065,5712:226,-126,-72,0,0,0.0751558 -2066,5712:225,-125,-72,0,0,0.0751558 -2067,5712:124,-124,-72,0,0,0.075163 -2068,5712:123,-123,-72,0,0,0.075163 -2069,5712:122,-122,-72,0,0,0.0751558 -2070,5712:121,-121,-72,0,0,0.0751486 -2071,5712:120,-120,-72,0,0,0.0751344 -2072,5711:229,-119,-72,0,0,0.07512 -2073,5711:228,-118,-72,0,0,0.0751128 -2074,5711:227,-117,-72,0,0,0.0751059 -2075,5711:226,-116,-72,0,0,0.0750987 -2076,5711:225,-115,-72,0,0,0.0750915 -2077,5711:124,-114,-72,0,0,0.0750843 -2078,5711:123,-113,-72,0,0,0.0750773 -2079,5711:122,-112,-72,0,0,0.0750773 -2080,5711:121,-111,-72,0,0,0.0750843 -2081,5711:120,-110,-72,0,0,0.0750987 -2082,5710:229,-109,-72,0,0,0.0751128 -2083,5710:228,-108,-72,0,0,0.0751272 -2084,5710:227,-107,-72,0,0,0.0751344 -2085,5710:226,-106,-72,0,0,0.0752343 -2086,5710:225,-105,-72,0,0,0.0770849 -2087,5710:124,-104,-72,0,0,0.0783218 -2088,5710:123,-103,-72,0,0,0.0787159 -2089,5709:225,-95,-72,0,0,0.0756428 -2090,5709:124,-94,-72,0,0,0.0752487 -2091,5709:123,-93,-72,0,0,0.0752201 -2092,5709:122,-92,-72,0,0,0.0752343 -2093,5709:121,-91,-72,0,0,0.0752631 -2094,5709:120,-90,-72,0,0,0.07527 -2095,5708:229,-89,-72,0,0,0.0752559 -2096,5708:228,-88,-72,0,0,0.0752559 -2097,5708:227,-87,-72,0,0,0.0752631 -2098,5708:226,-86,-72,0,0,0.0751771 -2099,5708:225,-85,-72,0,0,0.0750345 -2100,5708:124,-84,-72,0,0,0.0760822 -2101,5708:123,-83,-72,0,0,0.0769681 -2102,5708:122,-82,-72,0,0,0.0764732 -2103,5708:121,-81,-72,0,0,0.0775613 -2104,5708:120,-80,-72,0,0,0.0770775 -2105,5707:229,-79,-72,0,0,0.0770775 -2106,5707:228,-78,-72,0,0,0.0770117 -2107,5707:227,-77,-72,0,0,0.0805912 -2108,5707:226,-76,-72,0,0,0.0820961 -2109,5707:225,-75,-72,0,0,0.0824297 -2110,5707:124,-74,-72,0,0,0.0878126 -2111,5706:120,-60,-72,0,0,0.0753489 -2112,5705:229,-59,-72,0,0,0.0751059 -2113,5705:228,-58,-72,0,0,0.0749916 -2114,5705:227,-57,-72,0,0,0.0749775 -2115,5705:226,-56,-72,0,0,0.0749703 -2116,5705:225,-55,-72,0,0,0.0749775 -2117,5705:124,-54,-72,0,0,0.075006 -2118,5705:123,-53,-72,0,0,0.0750345 -2119,5705:122,-52,-72,0,0,0.0750345 -2120,5705:121,-51,-72,0,0,0.0750345 -2121,5705:120,-50,-72,0,0,0.0750345 -2122,5704:229,-49,-72,0,0,0.0750416 -2123,5704:228,-48,-72,0,0,0.0750488 -2124,5704:227,-47,-72,0,0,0.0750488 -2125,5704:226,-46,-72,0,0,0.0750488 -2126,5704:225,-45,-72,0,0,0.0750558 -2127,5704:124,-44,-72,0,0,0.0750488 -2128,5704:123,-43,-72,0,0,0.0750488 -2129,5704:122,-42,-72,0,0,0.0750416 -2130,5704:121,-41,-72,0,0,0.0750345 -2131,5704:120,-40,-72,0,0,0.0750201 -2132,5703:229,-39,-72,0,0,0.0750131 -2133,5703:228,-38,-72,0,0,0.0750131 -2134,5703:227,-37,-72,0,0,0.0750131 -2135,5703:226,-36,-72,0,0,0.0750131 -2136,5703:225,-35,-72,0,0,0.0750131 -2137,5703:124,-34,-72,0,0,0.0750131 -2138,5703:123,-33,-72,0,0,0.075006 -2139,5703:122,-32,-72,0,0,0.075006 -2140,5703:121,-31,-72,0,0,0.075006 -2141,5703:120,-30,-72,0,0,0.0750131 -2142,5702:229,-29,-72,0,0,0.0750131 -2143,5702:228,-28,-72,0,0,0.075006 -2144,5702:227,-27,-72,0,0,0.0749988 -2145,5702:226,-26,-72,0,0,0.0749916 -2146,5702:225,-25,-72,0,0,0.0749846 -2147,5702:124,-24,-72,0,0,0.0749846 -2148,5702:123,-23,-72,0,0,0.0749916 -2149,5702:122,-22,-72,0,0,0.0749988 -2150,5702:121,-21,-72,0,0,0.075006 -2151,5702:120,-20,-72,0,0,0.075006 -2152,5701:229,-19,-72,0,0,0.075006 -2153,5701:228,-18,-72,0,0,0.075006 -2154,5701:227,-17,-72,0,0,0.0750131 -2155,5701:226,-16,-72,0,0,0.0750987 -2156,5701:225,-15,-72,0,0,0.0749133 -2157,3717:121,171,-72,0,0,0.075163 -2158,3717:122,172,-72,0,0,0.075006 -2159,3717:123,173,-72,0,0,0.0753344 -2160,3717:124,174,-72,0,0,0.0755567 -2161,3717:225,175,-72,0,0,0.0748636 -2162,3717:226,176,-72,0,0,0.0748705 -2163,3717:227,177,-72,0,0,0.0748849 -2164,3717:228,178,-72,0,0,0.0749062 -2165,3717:229,179,-72,0,0,0.0749275 -2166,3718:120,180,-72,0,0,0.0749631 -2167,5718:110,-180,-71,0,0,0.0749703 -2168,5717:219,-179,-71,0,0,0.0749916 -2169,5717:218,-178,-71,0,0,0.0750131 -2170,5717:217,-177,-71,0,0,0.0750273 -2171,5717:216,-176,-71,0,0,0.0750558 -2172,5717:215,-175,-71,0,0,0.0750843 -2173,5717:114,-174,-71,0,0,0.0750915 -2174,5717:113,-173,-71,0,0,0.0750843 -2175,5717:112,-172,-71,0,0,0.075063 -2176,5717:111,-171,-71,0,0,0.0750558 -2177,5717:110,-170,-71,0,0,0.0750345 -2178,5716:219,-169,-71,0,0,0.0750273 -2179,5716:218,-168,-71,0,0,0.0750201 -2180,5716:217,-167,-71,0,0,0.0750201 -2181,5716:216,-166,-71,0,0,0.0750201 -2182,5716:215,-165,-71,0,0,0.0750273 -2183,5716:114,-164,-71,0,0,0.0750345 -2184,5716:113,-163,-71,0,0,0.0750416 -2185,5716:112,-162,-71,0,0,0.0750488 -2186,5716:111,-161,-71,0,0,0.0750558 -2187,5716:110,-160,-71,0,0,0.075063 -2188,5715:219,-159,-71,0,0,0.075063 -2189,5715:218,-158,-71,0,0,0.075063 -2190,5715:217,-157,-71,0,0,0.0750773 -2191,5715:216,-156,-71,0,0,0.0750915 -2192,5715:215,-155,-71,0,0,0.0751128 -2193,5715:114,-154,-71,0,0,0.0751344 -2194,5715:113,-153,-71,0,0,0.0751344 -2195,5715:112,-152,-71,0,0,0.0751416 -2196,5715:111,-151,-71,0,0,0.0751558 -2197,5715:110,-150,-71,0,0,0.075163 -2198,5714:219,-149,-71,0,0,0.0751701 -2199,5714:218,-148,-71,0,0,0.0751915 -2200,5714:217,-147,-71,0,0,0.0751987 -2201,5714:216,-146,-71,0,0,0.0751843 -2202,5714:215,-145,-71,0,0,0.0751915 -2203,5714:114,-144,-71,0,0,0.0752129 -2204,5714:113,-143,-71,0,0,0.0752129 -2205,5714:112,-142,-71,0,0,0.0752129 -2206,5714:111,-141,-71,0,0,0.0751843 -2207,5714:110,-140,-71,0,0,0.0751344 -2208,5713:219,-139,-71,0,0,0.07512 -2209,5713:218,-138,-71,0,0,0.07512 -2210,5713:217,-137,-71,0,0,0.0753058 -2211,5713:216,-136,-71,0,0,0.0759379 -2212,5713:215,-135,-71,0,0,0.076234 -2213,5713:114,-134,-71,0,0,0.0762848 -2214,5713:113,-133,-71,0,0,0.0759956 -2215,5713:112,-132,-71,0,0,0.075722 -2216,5713:111,-131,-71,0,0,0.0753417 -2217,5713:110,-130,-71,0,0,0.07512 -2218,5712:219,-129,-71,0,0,0.0751486 -2219,5712:218,-128,-71,0,0,0.075163 -2220,5712:217,-127,-71,0,0,0.0751701 -2221,5712:216,-126,-71,0,0,0.0751701 -2222,5712:215,-125,-71,0,0,0.0751771 -2223,5712:114,-124,-71,0,0,0.0751701 -2224,5712:113,-123,-71,0,0,0.0751701 -2225,5712:112,-122,-71,0,0,0.0751701 -2226,5712:111,-121,-71,0,0,0.075163 -2227,5712:110,-120,-71,0,0,0.0751416 -2228,5711:219,-119,-71,0,0,0.0751272 -2229,5711:218,-118,-71,0,0,0.07512 -2230,5711:217,-117,-71,0,0,0.0751059 -2231,5711:216,-116,-71,0,0,0.0750987 -2232,5711:215,-115,-71,0,0,0.0750987 -2233,5711:114,-114,-71,0,0,0.0750987 -2234,5711:113,-113,-71,0,0,0.0750987 -2235,5711:112,-112,-71,0,0,0.0750987 -2236,5711:111,-111,-71,0,0,0.0751059 -2237,5711:110,-110,-71,0,0,0.0751059 -2238,5710:219,-109,-71,0,0,0.0751128 -2239,5710:218,-108,-71,0,0,0.0751059 -2240,5710:217,-107,-71,0,0,0.07512 -2241,5710:216,-106,-71,0,0,0.0751344 -2242,5710:215,-105,-71,0,0,0.0751771 -2243,5710:114,-104,-71,0,0,0.0751987 -2244,5710:113,-103,-71,0,0,0.0752631 -2245,5710:112,-102,-71,0,0,0.0754849 -2246,5710:111,-101,-71,0,0,0.0769462 -2247,5710:110,-100,-71,0,0,0.0763427 -2248,5709:218,-98,-71,0,0,0.0751987 -2249,5709:217,-97,-71,0,0,0.0753058 -2250,5709:216,-96,-71,0,0,0.0754634 -2251,5709:215,-95,-71,0,0,0.0752559 -2252,5709:114,-94,-71,0,0,0.0751486 -2253,5709:113,-93,-71,0,0,0.0751486 -2254,5709:112,-92,-71,0,0,0.0751701 -2255,5709:111,-91,-71,0,0,0.0751558 -2256,5709:110,-90,-71,0,0,0.0750773 -2257,5708:219,-89,-71,0,0,0.0750416 -2258,5708:218,-88,-71,0,0,0.0750345 -2259,5708:217,-87,-71,0,0,0.0749988 -2260,5708:216,-86,-71,0,0,0.074949 -2261,5708:215,-85,-71,0,0,0.0749205 -2262,5708:114,-84,-71,0,0,0.0749275 -2263,5708:113,-83,-71,0,0,0.0754133 -2264,5708:112,-82,-71,0,0,0.0771215 -2265,5708:111,-81,-71,0,0,0.0774952 -2266,5708:110,-80,-71,0,0,0.0775981 -2267,5707:219,-79,-71,0,0,0.0783886 -2268,5707:218,-78,-71,0,0,0.0788351 -2269,5707:217,-77,-71,0,0,0.079532 -2270,5707:216,-76,-71,0,0,0.0831709 -2271,5706:110,-60,-71,0,0,0.0753631 -2272,5705:219,-59,-71,0,0,0.0751059 -2273,5705:218,-58,-71,0,0,0.0750273 -2274,5705:217,-57,-71,0,0,0.0750201 -2275,5705:216,-56,-71,0,0,0.0749916 -2276,5705:215,-55,-71,0,0,0.0750131 -2277,5705:114,-54,-71,0,0,0.0750345 -2278,5705:113,-53,-71,0,0,0.0750345 -2279,5705:112,-52,-71,0,0,0.0750416 -2280,5705:111,-51,-71,0,0,0.0750416 -2281,5705:110,-50,-71,0,0,0.0750488 -2282,5704:219,-49,-71,0,0,0.0750488 -2283,5704:218,-48,-71,0,0,0.0750488 -2284,5704:217,-47,-71,0,0,0.0750558 -2285,5704:216,-46,-71,0,0,0.0750488 -2286,5704:215,-45,-71,0,0,0.0750416 -2287,5704:114,-44,-71,0,0,0.0750345 -2288,5704:113,-43,-71,0,0,0.0750273 -2289,5704:112,-42,-71,0,0,0.0750201 -2290,5704:111,-41,-71,0,0,0.0750131 -2291,5704:110,-40,-71,0,0,0.075006 -2292,5703:219,-39,-71,0,0,0.0749988 -2293,5703:218,-38,-71,0,0,0.0749916 -2294,5703:217,-37,-71,0,0,0.0749916 -2295,5703:216,-36,-71,0,0,0.0749916 -2296,5703:215,-35,-71,0,0,0.0749916 -2297,5703:114,-34,-71,0,0,0.0749916 -2298,5703:113,-33,-71,0,0,0.0749988 -2299,5703:112,-32,-71,0,0,0.0749988 -2300,5703:111,-31,-71,0,0,0.0749988 -2301,5703:110,-30,-71,0,0,0.0749988 -2302,5702:219,-29,-71,0,0,0.0750131 -2303,5702:218,-28,-71,0,0,0.0750201 -2304,5702:217,-27,-71,0,0,0.0750201 -2305,5702:216,-26,-71,0,0,0.075006 -2306,5702:215,-25,-71,0,0,0.0749846 -2307,5702:114,-24,-71,0,0,0.0749775 -2308,5702:113,-23,-71,0,0,0.0749775 -2309,5702:112,-22,-71,0,0,0.0749846 -2310,5702:111,-21,-71,0,0,0.0749916 -2311,5702:110,-20,-71,0,0,0.075006 -2312,5701:219,-19,-71,0,0,0.075006 -2313,5701:218,-18,-71,0,0,0.075006 -2314,5701:217,-17,-71,0,0,0.0750131 -2315,5701:216,-16,-71,0,0,0.0750131 -2316,5701:215,-15,-71,0,0,0.0750131 -2317,5701:114,-14,-71,0,0,0.0750558 -2318,5701:113,-13,-71,0,0,0.0786041 -2319,3717:112,172,-71,0,0,0.0750201 -2320,3717:113,173,-71,0,0,0.0750702 -2321,3717:114,174,-71,0,0,0.0749703 -2322,3717:215,175,-71,0,0,0.0749703 -2323,3717:216,176,-71,0,0,0.0749562 -2324,3717:217,177,-71,0,0,0.074949 -2325,3717:218,178,-71,0,0,0.074949 -2326,3717:219,179,-71,0,0,0.0749631 -2327,3718:110,180,-71,0,0,0.0749703 -2328,5718:100,-180,-70,0,0,0.075006 -2329,5717:209,-179,-70,0,0,0.0750273 -2330,5717:208,-178,-70,0,0,0.0750416 -2331,5717:207,-177,-70,0,0,0.075063 -2332,5717:206,-176,-70,0,0,0.0750987 -2333,5717:205,-175,-70,0,0,0.0751128 -2334,5717:104,-174,-70,0,0,0.0750915 -2335,5717:103,-173,-70,0,0,0.0750773 -2336,5717:102,-172,-70,0,0,0.0750702 -2337,5717:101,-171,-70,0,0,0.0750416 -2338,5717:100,-170,-70,0,0,0.0750273 -2339,5716:209,-169,-70,0,0,0.0750201 -2340,5716:208,-168,-70,0,0,0.0750131 -2341,5716:207,-167,-70,0,0,0.0750131 -2342,5716:206,-166,-70,0,0,0.0749988 -2343,5716:205,-165,-70,0,0,0.075006 -2344,5716:104,-164,-70,0,0,0.0750131 -2345,5716:103,-163,-70,0,0,0.0750131 -2346,5716:102,-162,-70,0,0,0.0750131 -2347,5716:101,-161,-70,0,0,0.0750201 -2348,5716:100,-160,-70,0,0,0.0750345 -2349,5715:209,-159,-70,0,0,0.0750488 -2350,5715:208,-158,-70,0,0,0.0750558 -2351,5715:207,-157,-70,0,0,0.0750702 -2352,5715:206,-156,-70,0,0,0.0750843 -2353,5715:205,-155,-70,0,0,0.0751059 -2354,5715:104,-154,-70,0,0,0.07512 -2355,5715:103,-153,-70,0,0,0.07512 -2356,5715:102,-152,-70,0,0,0.0751416 -2357,5715:101,-151,-70,0,0,0.075163 -2358,5715:100,-150,-70,0,0,0.0751701 -2359,5714:209,-149,-70,0,0,0.0751771 -2360,5714:208,-148,-70,0,0,0.0751843 -2361,5714:207,-147,-70,0,0,0.0751843 -2362,5714:206,-146,-70,0,0,0.0751843 -2363,5714:205,-145,-70,0,0,0.0751843 -2364,5714:104,-144,-70,0,0,0.0751915 -2365,5714:103,-143,-70,0,0,0.0752129 -2366,5714:102,-142,-70,0,0,0.0752057 -2367,5714:101,-141,-70,0,0,0.0751701 -2368,5714:100,-140,-70,0,0,0.0751272 -2369,5713:209,-139,-70,0,0,0.0751128 -2370,5713:208,-138,-70,0,0,0.0751128 -2371,5713:207,-137,-70,0,0,0.075163 -2372,5713:206,-136,-70,0,0,0.0754492 -2373,5713:205,-135,-70,0,0,0.0759234 -2374,5713:104,-134,-70,0,0,0.0755424 -2375,5713:103,-133,-70,0,0,0.0758443 -2376,5713:102,-132,-70,0,0,0.0760749 -2377,5713:101,-131,-70,0,0,0.0757795 -2378,5713:100,-130,-70,0,0,0.0754562 -2379,5712:209,-129,-70,0,0,0.0752916 -2380,5712:208,-128,-70,0,0,0.0751416 -2381,5712:207,-127,-70,0,0,0.0751558 -2382,5712:206,-126,-70,0,0,0.075163 -2383,5712:205,-125,-70,0,0,0.0751701 -2384,5712:104,-124,-70,0,0,0.0751701 -2385,5712:103,-123,-70,0,0,0.0751701 -2386,5712:102,-122,-70,0,0,0.0751701 -2387,5712:101,-121,-70,0,0,0.075163 -2388,5712:100,-120,-70,0,0,0.0751486 -2389,5711:209,-119,-70,0,0,0.0751344 -2390,5711:208,-118,-70,0,0,0.07512 -2391,5711:207,-117,-70,0,0,0.0751128 -2392,5711:206,-116,-70,0,0,0.0751059 -2393,5711:205,-115,-70,0,0,0.0750987 -2394,5711:104,-114,-70,0,0,0.0750987 -2395,5711:103,-113,-70,0,0,0.0750987 -2396,5711:102,-112,-70,0,0,0.0750987 -2397,5711:101,-111,-70,0,0,0.0750987 -2398,5711:100,-110,-70,0,0,0.0750987 -2399,5710:209,-109,-70,0,0,0.0751059 -2400,5710:208,-108,-70,0,0,0.0751128 -2401,5710:207,-107,-70,0,0,0.0751128 -2402,5710:206,-106,-70,0,0,0.0751128 -2403,5710:205,-105,-70,0,0,0.07512 -2404,5710:104,-104,-70,0,0,0.0751486 -2405,5710:103,-103,-70,0,0,0.0751344 -2406,5710:102,-102,-70,0,0,0.0751771 -2407,5710:101,-101,-70,0,0,0.0752415 -2408,5710:100,-100,-70,0,0,0.07527 -2409,5709:209,-99,-70,0,0,0.0752343 -2410,5709:208,-98,-70,0,0,0.0752129 -2411,5709:207,-97,-70,0,0,0.0751843 -2412,5709:206,-96,-70,0,0,0.0751771 -2413,5709:205,-95,-70,0,0,0.0751486 -2414,5709:104,-94,-70,0,0,0.0751344 -2415,5709:103,-93,-70,0,0,0.0751272 -2416,5709:102,-92,-70,0,0,0.0751128 -2417,5709:101,-91,-70,0,0,0.075063 -2418,5709:100,-90,-70,0,0,0.0750273 -2419,5708:209,-89,-70,0,0,0.0749846 -2420,5708:208,-88,-70,0,0,0.0749775 -2421,5708:207,-87,-70,0,0,0.0749703 -2422,5708:206,-86,-70,0,0,0.0749418 -2423,5708:205,-85,-70,0,0,0.0749346 -2424,5708:104,-84,-70,0,0,0.0749346 -2425,5708:103,-83,-70,0,0,0.0749418 -2426,5708:102,-82,-70,0,0,0.0749562 -2427,5708:101,-81,-70,0,0,0.0750131 -2428,5708:100,-80,-70,0,0,0.0750702 -2429,5707:209,-79,-70,0,0,0.0761907 -2430,5707:208,-78,-70,0,0,0.0779075 -2431,5707:207,-77,-70,0,0,0.0796974 -2432,5707:206,-76,-70,0,0,0.0819491 -2433,5707:205,-75,-70,0,0,0.0833749 -2434,5707:104,-74,-70,0,0,0.0866999 -2435,5706:100,-60,-70,0,0,0.0752772 -2436,5705:209,-59,-70,0,0,0.0751272 -2437,5705:208,-58,-70,0,0,0.0750345 -2438,5705:207,-57,-70,0,0,0.0750416 -2439,5705:206,-56,-70,0,0,0.0750273 -2440,5705:205,-55,-70,0,0,0.0750416 -2441,5705:104,-54,-70,0,0,0.0750416 -2442,5705:103,-53,-70,0,0,0.0750488 -2443,5705:102,-52,-70,0,0,0.0750488 -2444,5705:101,-51,-70,0,0,0.0750488 -2445,5705:100,-50,-70,0,0,0.0750416 -2446,5704:209,-49,-70,0,0,0.0750488 -2447,5704:208,-48,-70,0,0,0.0750488 -2448,5704:207,-47,-70,0,0,0.0750416 -2449,5704:206,-46,-70,0,0,0.0750345 -2450,5704:205,-45,-70,0,0,0.0750273 -2451,5704:104,-44,-70,0,0,0.0750131 -2452,5704:103,-43,-70,0,0,0.0750131 -2453,5704:102,-42,-70,0,0,0.0749988 -2454,5704:101,-41,-70,0,0,0.0749846 -2455,5704:100,-40,-70,0,0,0.0749703 -2456,5703:209,-39,-70,0,0,0.0749703 -2457,5703:208,-38,-70,0,0,0.0749703 -2458,5703:207,-37,-70,0,0,0.0749703 -2459,5703:206,-36,-70,0,0,0.0749775 -2460,5703:205,-35,-70,0,0,0.0749775 -2461,5703:104,-34,-70,0,0,0.0749846 -2462,5703:103,-33,-70,0,0,0.0749916 -2463,5703:102,-32,-70,0,0,0.0749916 -2464,5703:101,-31,-70,0,0,0.0749988 -2465,5703:100,-30,-70,0,0,0.0749988 -2466,5702:209,-29,-70,0,0,0.075006 -2467,5702:208,-28,-70,0,0,0.075006 -2468,5702:207,-27,-70,0,0,0.0750131 -2469,5702:206,-26,-70,0,0,0.0750131 -2470,5702:205,-25,-70,0,0,0.0749775 -2471,5702:104,-24,-70,0,0,0.0749775 -2472,5702:103,-23,-70,0,0,0.0749775 -2473,5702:102,-22,-70,0,0,0.0749775 -2474,5702:101,-21,-70,0,0,0.0749775 -2475,5702:100,-20,-70,0,0,0.0749846 -2476,5701:209,-19,-70,0,0,0.0749916 -2477,5701:208,-18,-70,0,0,0.0749988 -2478,5701:207,-17,-70,0,0,0.075006 -2479,5701:206,-16,-70,0,0,0.075006 -2480,5701:205,-15,-70,0,0,0.0750273 -2481,5701:104,-14,-70,0,0,0.0750843 -2482,5701:103,-13,-70,0,0,0.07512 -2483,3717:100,170,-70,0,0,0.0751416 -2484,3717:101,171,-70,0,0,0.0750131 -2485,3717:102,172,-70,0,0,0.075006 -2486,3717:103,173,-70,0,0,0.0750131 -2487,3717:104,174,-70,0,0,0.075006 -2488,3717:205,175,-70,0,0,0.0749988 -2489,3717:206,176,-70,0,0,0.0749916 -2490,3717:207,177,-70,0,0,0.0749916 -2491,3717:208,178,-70,0,0,0.0749846 -2492,3717:209,179,-70,0,0,0.0749916 -2493,3718:100,180,-70,0,0,0.075006 -2494,5618:390,-180,-69,0,0,0.0750416 -2495,5617:499,-179,-69,0,0,0.0750488 -2496,5617:498,-178,-69,0,0,0.0750702 -2497,5617:497,-177,-69,0,0,0.0750987 -2498,5617:496,-176,-69,0,0,0.0751059 -2499,5617:495,-175,-69,0,0,0.0750915 -2500,5617:394,-174,-69,0,0,0.0750843 -2501,5617:393,-173,-69,0,0,0.0750773 -2502,5617:392,-172,-69,0,0,0.0750558 -2503,5617:391,-171,-69,0,0,0.0750416 -2504,5617:390,-170,-69,0,0,0.0750273 -2505,5616:499,-169,-69,0,0,0.0750131 -2506,5616:498,-168,-69,0,0,0.075006 -2507,5616:497,-167,-69,0,0,0.075006 -2508,5616:496,-166,-69,0,0,0.0749916 -2509,5616:495,-165,-69,0,0,0.0749775 -2510,5616:394,-164,-69,0,0,0.0749775 -2511,5616:393,-163,-69,0,0,0.0749775 -2512,5616:392,-162,-69,0,0,0.0749775 -2513,5616:391,-161,-69,0,0,0.0749916 -2514,5616:390,-160,-69,0,0,0.0750131 -2515,5615:499,-159,-69,0,0,0.0750345 -2516,5615:498,-158,-69,0,0,0.0750488 -2517,5615:497,-157,-69,0,0,0.075063 -2518,5615:496,-156,-69,0,0,0.0750843 -2519,5615:495,-155,-69,0,0,0.0750987 -2520,5615:394,-154,-69,0,0,0.0751128 -2521,5615:393,-153,-69,0,0,0.0751128 -2522,5615:392,-152,-69,0,0,0.0751344 -2523,5615:391,-151,-69,0,0,0.0751558 -2524,5615:390,-150,-69,0,0,0.0751701 -2525,5614:499,-149,-69,0,0,0.0751771 -2526,5614:498,-148,-69,0,0,0.0751843 -2527,5614:497,-147,-69,0,0,0.0751771 -2528,5614:496,-146,-69,0,0,0.0751701 -2529,5614:495,-145,-69,0,0,0.0751771 -2530,5614:394,-144,-69,0,0,0.0751843 -2531,5614:393,-143,-69,0,0,0.0751915 -2532,5614:392,-142,-69,0,0,0.0751915 -2533,5614:391,-141,-69,0,0,0.0751843 -2534,5614:390,-140,-69,0,0,0.0751701 -2535,5613:499,-139,-69,0,0,0.0751344 -2536,5613:498,-138,-69,0,0,0.0751344 -2537,5613:497,-137,-69,0,0,0.0751701 -2538,5613:496,-136,-69,0,0,0.0752487 -2539,5613:495,-135,-69,0,0,0.0752916 -2540,5613:394,-134,-69,0,0,0.0753561 -2541,5613:393,-133,-69,0,0,0.0754562 -2542,5613:392,-132,-69,0,0,0.0754634 -2543,5613:391,-131,-69,0,0,0.0759379 -2544,5613:390,-130,-69,0,0,0.075758 -2545,5612:499,-129,-69,0,0,0.0754779 -2546,5612:498,-128,-69,0,0,0.0754348 -2547,5612:497,-127,-69,0,0,0.0754921 -2548,5612:496,-126,-69,0,0,0.0753561 -2549,5612:495,-125,-69,0,0,0.0751486 -2550,5612:394,-124,-69,0,0,0.0751558 -2551,5612:393,-123,-69,0,0,0.0751558 -2552,5612:392,-122,-69,0,0,0.0751558 -2553,5612:391,-121,-69,0,0,0.0751558 -2554,5612:390,-120,-69,0,0,0.0751344 -2555,5611:499,-119,-69,0,0,0.0751272 -2556,5611:498,-118,-69,0,0,0.0751272 -2557,5611:497,-117,-69,0,0,0.0751128 -2558,5611:496,-116,-69,0,0,0.0751059 -2559,5611:495,-115,-69,0,0,0.0751128 -2560,5611:394,-114,-69,0,0,0.0751059 -2561,5611:393,-113,-69,0,0,0.0751059 -2562,5611:392,-112,-69,0,0,0.0751059 -2563,5611:391,-111,-69,0,0,0.0751059 -2564,5611:390,-110,-69,0,0,0.0751059 -2565,5610:499,-109,-69,0,0,0.0751059 -2566,5610:498,-108,-69,0,0,0.0751059 -2567,5610:497,-107,-69,0,0,0.0751128 -2568,5610:496,-106,-69,0,0,0.07512 -2569,5610:495,-105,-69,0,0,0.07512 -2570,5610:394,-104,-69,0,0,0.07512 -2571,5610:393,-103,-69,0,0,0.07512 -2572,5610:392,-102,-69,0,0,0.0751128 -2573,5610:391,-101,-69,0,0,0.07512 -2574,5610:390,-100,-69,0,0,0.0751344 -2575,5609:499,-99,-69,0,0,0.0751701 -2576,5609:498,-98,-69,0,0,0.0751915 -2577,5609:497,-97,-69,0,0,0.0751843 -2578,5609:496,-96,-69,0,0,0.0751701 -2579,5609:495,-95,-69,0,0,0.075163 -2580,5609:394,-94,-69,0,0,0.0751344 -2581,5609:393,-93,-69,0,0,0.0750987 -2582,5609:392,-92,-69,0,0,0.0750558 -2583,5609:391,-91,-69,0,0,0.0750416 -2584,5609:390,-90,-69,0,0,0.0750273 -2585,5608:499,-89,-69,0,0,0.0750201 -2586,5608:498,-88,-69,0,0,0.075006 -2587,5608:497,-87,-69,0,0,0.0749988 -2588,5608:496,-86,-69,0,0,0.0749775 -2589,5608:495,-85,-69,0,0,0.0749631 -2590,5608:394,-84,-69,0,0,0.0749562 -2591,5608:393,-83,-69,0,0,0.0749631 -2592,5608:392,-82,-69,0,0,0.0749846 -2593,5608:391,-81,-69,0,0,0.0750345 -2594,5608:390,-80,-69,0,0,0.0750843 -2595,5607:499,-79,-69,0,0,0.0753203 -2596,5607:498,-78,-69,0,0,0.0772018 -2597,5607:497,-77,-69,0,0,0.0779296 -2598,5607:496,-76,-69,0,0,0.078011 -2599,5606:390,-60,-69,0,0,0.0753344 -2600,5605:499,-59,-69,0,0,0.0750558 -2601,5605:498,-58,-69,0,0,0.0750345 -2602,5605:497,-57,-69,0,0,0.0750488 -2603,5605:496,-56,-69,0,0,0.0750416 -2604,5605:495,-55,-69,0,0,0.0750488 -2605,5605:394,-54,-69,0,0,0.0750488 -2606,5605:393,-53,-69,0,0,0.0750488 -2607,5605:392,-52,-69,0,0,0.0750416 -2608,5605:391,-51,-69,0,0,0.0750416 -2609,5605:390,-50,-69,0,0,0.0750416 -2610,5604:499,-49,-69,0,0,0.0750345 -2611,5604:498,-48,-69,0,0,0.0750345 -2612,5604:497,-47,-69,0,0,0.0750273 -2613,5604:496,-46,-69,0,0,0.0750201 -2614,5604:495,-45,-69,0,0,0.075006 -2615,5604:394,-44,-69,0,0,0.0749916 -2616,5604:393,-43,-69,0,0,0.0749775 -2617,5604:392,-42,-69,0,0,0.0749703 -2618,5604:391,-41,-69,0,0,0.0749703 -2619,5604:390,-40,-69,0,0,0.0749631 -2620,5603:499,-39,-69,0,0,0.0749631 -2621,5603:498,-38,-69,0,0,0.0749631 -2622,5603:497,-37,-69,0,0,0.0749703 -2623,5603:496,-36,-69,0,0,0.0749775 -2624,5603:495,-35,-69,0,0,0.0749775 -2625,5603:394,-34,-69,0,0,0.0749846 -2626,5603:393,-33,-69,0,0,0.0749846 -2627,5603:392,-32,-69,0,0,0.0749988 -2628,5603:391,-31,-69,0,0,0.0749846 -2629,5603:390,-30,-69,0,0,0.0749916 -2630,5602:499,-29,-69,0,0,0.0749846 -2631,5602:498,-28,-69,0,0,0.0749846 -2632,5602:497,-27,-69,0,0,0.0749846 -2633,5602:496,-26,-69,0,0,0.0749846 -2634,5602:495,-25,-69,0,0,0.0749775 -2635,5602:394,-24,-69,0,0,0.0749703 -2636,5602:393,-23,-69,0,0,0.0749703 -2637,5602:392,-22,-69,0,0,0.0749631 -2638,5602:391,-21,-69,0,0,0.0749562 -2639,5602:390,-20,-69,0,0,0.0749703 -2640,5601:499,-19,-69,0,0,0.0749775 -2641,5601:498,-18,-69,0,0,0.0749846 -2642,5601:497,-17,-69,0,0,0.0749916 -2643,5601:496,-16,-69,0,0,0.0749988 -2644,5601:495,-15,-69,0,0,0.075006 -2645,5601:394,-14,-69,0,0,0.0750201 -2646,5601:393,-13,-69,0,0,0.0750345 -2647,5601:392,-12,-69,0,0,0.0751486 -2648,5601:391,-11,-69,0,0,0.075528 -2649,5601:390,-10,-69,0,0,0.0758515 -2650,3616:499,169,-69,0,0,0.0752487 -2651,3617:390,170,-69,0,0,0.075006 -2652,3617:391,171,-69,0,0,0.075006 -2653,3617:392,172,-69,0,0,0.0750131 -2654,3617:393,173,-69,0,0,0.0750131 -2655,3617:394,174,-69,0,0,0.075006 -2656,3617:495,175,-69,0,0,0.0749916 -2657,3617:496,176,-69,0,0,0.0749846 -2658,3617:497,177,-69,0,0,0.0749846 -2659,3617:498,178,-69,0,0,0.0749916 -2660,3617:499,179,-69,0,0,0.0750273 -2661,3618:390,180,-69,0,0,0.0750416 -2662,5618:380,-180,-68,0,0,0.0750915 -2663,5617:489,-179,-68,0,0,0.0751059 -2664,5617:488,-178,-68,0,0,0.0751059 -2665,5617:487,-177,-68,0,0,0.0751059 -2666,5617:486,-176,-68,0,0,0.0751059 -2667,5617:485,-175,-68,0,0,0.0750915 -2668,5617:384,-174,-68,0,0,0.0750773 -2669,5617:383,-173,-68,0,0,0.0750558 -2670,5617:382,-172,-68,0,0,0.0750345 -2671,5617:381,-171,-68,0,0,0.0750273 -2672,5617:380,-170,-68,0,0,0.0750131 -2673,5616:489,-169,-68,0,0,0.075006 -2674,5616:488,-168,-68,0,0,0.0749916 -2675,5616:487,-167,-68,0,0,0.0749916 -2676,5616:486,-166,-68,0,0,0.0749631 -2677,5616:485,-165,-68,0,0,0.074949 -2678,5616:384,-164,-68,0,0,0.0749562 -2679,5616:383,-163,-68,0,0,0.0749562 -2680,5616:382,-162,-68,0,0,0.0749562 -2681,5616:381,-161,-68,0,0,0.0749631 -2682,5616:380,-160,-68,0,0,0.0749916 -2683,5615:489,-159,-68,0,0,0.0750273 -2684,5615:488,-158,-68,0,0,0.0750488 -2685,5615:487,-157,-68,0,0,0.0750702 -2686,5615:486,-156,-68,0,0,0.0750987 -2687,5615:485,-155,-68,0,0,0.0751128 -2688,5615:384,-154,-68,0,0,0.07512 -2689,5615:383,-153,-68,0,0,0.0751272 -2690,5615:382,-152,-68,0,0,0.0751344 -2691,5615:381,-151,-68,0,0,0.0751486 -2692,5615:380,-150,-68,0,0,0.0751558 -2693,5614:489,-149,-68,0,0,0.075163 -2694,5614:488,-148,-68,0,0,0.0751701 -2695,5614:487,-147,-68,0,0,0.0751771 -2696,5614:486,-146,-68,0,0,0.0751771 -2697,5614:485,-145,-68,0,0,0.0751771 -2698,5614:384,-144,-68,0,0,0.0751771 -2699,5614:383,-143,-68,0,0,0.0751915 -2700,5614:382,-142,-68,0,0,0.0751843 -2701,5614:381,-141,-68,0,0,0.0751771 -2702,5614:380,-140,-68,0,0,0.0751771 -2703,5613:489,-139,-68,0,0,0.075163 -2704,5613:488,-138,-68,0,0,0.0751486 -2705,5613:487,-137,-68,0,0,0.0751344 -2706,5613:486,-136,-68,0,0,0.07512 -2707,5613:485,-135,-68,0,0,0.0751416 -2708,5613:384,-134,-68,0,0,0.0752559 -2709,5613:383,-133,-68,0,0,0.0753917 -2710,5613:382,-132,-68,0,0,0.0755424 -2711,5613:381,-131,-68,0,0,0.0761978 -2712,5613:380,-130,-68,0,0,0.0759162 -2713,5612:489,-129,-68,0,0,0.0757937 -2714,5612:488,-128,-68,0,0,0.0758586 -2715,5612:487,-127,-68,0,0,0.0759091 -2716,5612:486,-126,-68,0,0,0.0756932 -2717,5612:485,-125,-68,0,0,0.0754562 -2718,5612:384,-124,-68,0,0,0.075313 -2719,5612:383,-123,-68,0,0,0.0751344 -2720,5612:382,-122,-68,0,0,0.0751416 -2721,5612:381,-121,-68,0,0,0.0751272 -2722,5612:380,-120,-68,0,0,0.07512 -2723,5611:489,-119,-68,0,0,0.0751128 -2724,5611:488,-118,-68,0,0,0.0751059 -2725,5611:487,-117,-68,0,0,0.0750987 -2726,5611:486,-116,-68,0,0,0.0751272 -2727,5611:485,-115,-68,0,0,0.0750915 -2728,5611:384,-114,-68,0,0,0.0750915 -2729,5611:383,-113,-68,0,0,0.0751059 -2730,5611:382,-112,-68,0,0,0.0751059 -2731,5611:381,-111,-68,0,0,0.0751059 -2732,5611:380,-110,-68,0,0,0.0751059 -2733,5610:489,-109,-68,0,0,0.0751059 -2734,5610:488,-108,-68,0,0,0.0751059 -2735,5610:487,-107,-68,0,0,0.0750987 -2736,5610:486,-106,-68,0,0,0.0750987 -2737,5610:485,-105,-68,0,0,0.0750987 -2738,5610:384,-104,-68,0,0,0.0751128 -2739,5610:383,-103,-68,0,0,0.0751128 -2740,5610:382,-102,-68,0,0,0.0751128 -2741,5610:381,-101,-68,0,0,0.0751059 -2742,5610:380,-100,-68,0,0,0.0751059 -2743,5609:489,-99,-68,0,0,0.07512 -2744,5609:488,-98,-68,0,0,0.0751272 -2745,5609:487,-97,-68,0,0,0.0751272 -2746,5609:486,-96,-68,0,0,0.0751128 -2747,5609:485,-95,-68,0,0,0.0750987 -2748,5609:384,-94,-68,0,0,0.0750558 -2749,5609:383,-93,-68,0,0,0.0750201 -2750,5609:382,-92,-68,0,0,0.075006 -2751,5609:381,-91,-68,0,0,0.075006 -2752,5609:380,-90,-68,0,0,0.0750201 -2753,5608:489,-89,-68,0,0,0.0750273 -2754,5608:488,-88,-68,0,0,0.0750273 -2755,5608:487,-87,-68,0,0,0.0750201 -2756,5608:486,-86,-68,0,0,0.0750131 -2757,5608:485,-85,-68,0,0,0.0750131 -2758,5608:384,-84,-68,0,0,0.0749988 -2759,5608:383,-83,-68,0,0,0.0749916 -2760,5608:382,-82,-68,0,0,0.075006 -2761,5608:381,-81,-68,0,0,0.0750201 -2762,5608:380,-80,-68,0,0,0.0750702 -2763,5607:489,-79,-68,0,0,0.0755781 -2764,5607:488,-78,-68,0,0,0.0769681 -2765,5607:487,-77,-68,0,0,0.0794115 -2766,5607:486,-76,-68,0,0,0.0806751 -2767,5607:485,-75,-68,0,0,0.0805304 -2768,5606:380,-60,-68,0,0,0.0752201 -2769,5605:489,-59,-68,0,0,0.0750345 -2770,5605:488,-58,-68,0,0,0.0750345 -2771,5605:487,-57,-68,0,0,0.0750488 -2772,5605:486,-56,-68,0,0,0.0750416 -2773,5605:485,-55,-68,0,0,0.0750488 -2774,5605:384,-54,-68,0,0,0.0750488 -2775,5605:383,-53,-68,0,0,0.0750416 -2776,5605:382,-52,-68,0,0,0.0750345 -2777,5605:381,-51,-68,0,0,0.0750273 -2778,5605:380,-50,-68,0,0,0.0750273 -2779,5604:489,-49,-68,0,0,0.0750201 -2780,5604:488,-48,-68,0,0,0.075006 -2781,5604:487,-47,-68,0,0,0.0749916 -2782,5604:486,-46,-68,0,0,0.0749846 -2783,5604:485,-45,-68,0,0,0.0749775 -2784,5604:384,-44,-68,0,0,0.0749703 -2785,5604:383,-43,-68,0,0,0.0749631 -2786,5604:382,-42,-68,0,0,0.0749703 -2787,5604:381,-41,-68,0,0,0.0749631 -2788,5604:380,-40,-68,0,0,0.0749631 -2789,5603:489,-39,-68,0,0,0.0749631 -2790,5603:488,-38,-68,0,0,0.0749631 -2791,5603:487,-37,-68,0,0,0.0749703 -2792,5603:486,-36,-68,0,0,0.0749703 -2793,5603:485,-35,-68,0,0,0.0749775 -2794,5603:384,-34,-68,0,0,0.0749775 -2795,5603:383,-33,-68,0,0,0.0749775 -2796,5603:382,-32,-68,0,0,0.0749775 -2797,5603:381,-31,-68,0,0,0.0749775 -2798,5603:380,-30,-68,0,0,0.0749703 -2799,5602:489,-29,-68,0,0,0.0749775 -2800,5602:488,-28,-68,0,0,0.0749775 -2801,5602:487,-27,-68,0,0,0.0749703 -2802,5602:486,-26,-68,0,0,0.0749703 -2803,5602:485,-25,-68,0,0,0.0749631 -2804,5602:384,-24,-68,0,0,0.0749562 -2805,5602:383,-23,-68,0,0,0.0749562 -2806,5602:382,-22,-68,0,0,0.0749562 -2807,5602:381,-21,-68,0,0,0.0749562 -2808,5602:380,-20,-68,0,0,0.0749562 -2809,5601:489,-19,-68,0,0,0.0749562 -2810,5601:488,-18,-68,0,0,0.0749631 -2811,5601:487,-17,-68,0,0,0.0749631 -2812,5601:486,-16,-68,0,0,0.0749631 -2813,5601:485,-15,-68,0,0,0.0749846 -2814,5601:384,-14,-68,0,0,0.0749916 -2815,5601:383,-13,-68,0,0,0.0749988 -2816,5601:382,-12,-68,0,0,0.0750201 -2817,5601:381,-11,-68,0,0,0.0750702 -2818,5601:380,-10,-68,0,0,0.0756285 -2819,5600:489,-9,-68,0,0,0.0785446 -2820,5600:488,-8,-68,0,0,0.0793891 -2821,5600:487,-7,-68,0,0,0.0797351 -2822,5600:486,-6,-68,0,0,0.082034 -2823,3616:384,164,-68,0,0,0.0772166 -2824,3616:485,165,-68,0,0,0.0765747 -2825,3616:486,166,-68,0,0,0.0751771 -2826,3616:487,167,-68,0,0,0.0750488 -2827,3616:488,168,-68,0,0,0.0750416 -2828,3616:489,169,-68,0,0,0.0750131 -2829,3617:380,170,-68,0,0,0.0750201 -2830,3617:381,171,-68,0,0,0.0750131 -2831,3617:382,172,-68,0,0,0.0750131 -2832,3617:383,173,-68,0,0,0.075006 -2833,3617:384,174,-68,0,0,0.0749988 -2834,3617:485,175,-68,0,0,0.0749703 -2835,3617:486,176,-68,0,0,0.0749631 -2836,3617:487,177,-68,0,0,0.0749846 -2837,3617:488,178,-68,0,0,0.0750131 -2838,3617:489,179,-68,0,0,0.075063 -2839,3618:380,180,-68,0,0,0.0750915 -2840,5618:370,-180,-67,0,0,0.0750773 -2841,5617:479,-179,-67,0,0,0.0750915 -2842,5617:478,-178,-67,0,0,0.0750987 -2843,5617:477,-177,-67,0,0,0.0750987 -2844,5617:476,-176,-67,0,0,0.0750843 -2845,5617:475,-175,-67,0,0,0.0750702 -2846,5617:374,-174,-67,0,0,0.075063 -2847,5617:373,-173,-67,0,0,0.0750558 -2848,5617:372,-172,-67,0,0,0.0750416 -2849,5617:371,-171,-67,0,0,0.0750201 -2850,5617:370,-170,-67,0,0,0.075006 -2851,5616:479,-169,-67,0,0,0.0749916 -2852,5616:478,-168,-67,0,0,0.0749846 -2853,5616:477,-167,-67,0,0,0.0749631 -2854,5616:476,-166,-67,0,0,0.074949 -2855,5616:475,-165,-67,0,0,0.0749418 -2856,5616:374,-164,-67,0,0,0.0749346 -2857,5616:373,-163,-67,0,0,0.074949 -2858,5616:372,-162,-67,0,0,0.074949 -2859,5616:371,-161,-67,0,0,0.0749562 -2860,5616:370,-160,-67,0,0,0.0749846 -2861,5615:479,-159,-67,0,0,0.0750131 -2862,5615:478,-158,-67,0,0,0.0750558 -2863,5615:477,-157,-67,0,0,0.0750843 -2864,5615:476,-156,-67,0,0,0.0751059 -2865,5615:475,-155,-67,0,0,0.0751128 -2866,5615:374,-154,-67,0,0,0.07512 -2867,5615:373,-153,-67,0,0,0.0751272 -2868,5615:372,-152,-67,0,0,0.0751416 -2869,5615:371,-151,-67,0,0,0.0751486 -2870,5615:370,-150,-67,0,0,0.0751486 -2871,5614:479,-149,-67,0,0,0.0751558 -2872,5614:478,-148,-67,0,0,0.0751701 -2873,5614:477,-147,-67,0,0,0.0751843 -2874,5614:476,-146,-67,0,0,0.0751701 -2875,5614:475,-145,-67,0,0,0.0751771 -2876,5614:374,-144,-67,0,0,0.0751915 -2877,5614:373,-143,-67,0,0,0.0751701 -2878,5614:372,-142,-67,0,0,0.0751486 -2879,5614:371,-141,-67,0,0,0.0751344 -2880,5614:370,-140,-67,0,0,0.0751344 -2881,5613:479,-139,-67,0,0,0.0751486 -2882,5613:478,-138,-67,0,0,0.0751987 -2883,5613:477,-137,-67,0,0,0.0753703 -2884,5613:476,-136,-67,0,0,0.075163 -2885,5613:475,-135,-67,0,0,0.0751771 -2886,5613:374,-134,-67,0,0,0.0752057 -2887,5613:373,-133,-67,0,0,0.0754779 -2888,5613:372,-132,-67,0,0,0.0753489 -2889,5613:371,-131,-67,0,0,0.0761183 -2890,5613:370,-130,-67,0,0,0.076415 -2891,5612:479,-129,-67,0,0,0.0764296 -2892,5612:478,-128,-67,0,0,0.07635 -2893,5612:477,-127,-67,0,0,0.0760967 -2894,5612:476,-126,-67,0,0,0.0759091 -2895,5612:475,-125,-67,0,0,0.0757362 -2896,5612:374,-124,-67,0,0,0.0755207 -2897,5612:373,-123,-67,0,0,0.0754203 -2898,5612:372,-122,-67,0,0,0.0753561 -2899,5612:371,-121,-67,0,0,0.0752916 -2900,5612:370,-120,-67,0,0,0.0752273 -2901,5611:479,-119,-67,0,0,0.0751701 -2902,5611:478,-118,-67,0,0,0.0752273 -2903,5611:477,-117,-67,0,0,0.076046 -2904,5611:476,-116,-67,0,0,0.0760749 -2905,5611:475,-115,-67,0,0,0.0757867 -2906,5611:374,-114,-67,0,0,0.0755494 -2907,5611:373,-113,-67,0,0,0.0754275 -2908,5611:372,-112,-67,0,0,0.07527 -2909,5611:371,-111,-67,0,0,0.0750915 -2910,5611:370,-110,-67,0,0,0.0751059 -2911,5610:479,-109,-67,0,0,0.0751059 -2912,5610:478,-108,-67,0,0,0.0750987 -2913,5610:477,-107,-67,0,0,0.0750915 -2914,5610:476,-106,-67,0,0,0.0750987 -2915,5610:475,-105,-67,0,0,0.0750915 -2916,5610:374,-104,-67,0,0,0.0750915 -2917,5610:373,-103,-67,0,0,0.0751059 -2918,5610:372,-102,-67,0,0,0.0751059 -2919,5610:371,-101,-67,0,0,0.0750987 -2920,5610:370,-100,-67,0,0,0.0750987 -2921,5609:479,-99,-67,0,0,0.0750843 -2922,5609:478,-98,-67,0,0,0.0750488 -2923,5609:477,-97,-67,0,0,0.0750201 -2924,5609:476,-96,-67,0,0,0.0750131 -2925,5609:475,-95,-67,0,0,0.0749988 -2926,5609:374,-94,-67,0,0,0.075006 -2927,5609:373,-93,-67,0,0,0.075006 -2928,5609:372,-92,-67,0,0,0.0749988 -2929,5609:371,-91,-67,0,0,0.0749988 -2930,5609:370,-90,-67,0,0,0.0749988 -2931,5608:479,-89,-67,0,0,0.0750131 -2932,5608:478,-88,-67,0,0,0.0750201 -2933,5608:477,-87,-67,0,0,0.0750273 -2934,5608:476,-86,-67,0,0,0.0750345 -2935,5608:475,-85,-67,0,0,0.0750345 -2936,5608:374,-84,-67,0,0,0.0750416 -2937,5608:373,-83,-67,0,0,0.0750488 -2938,5608:372,-82,-67,0,0,0.0750488 -2939,5608:371,-81,-67,0,0,0.0750558 -2940,5608:370,-80,-67,0,0,0.075063 -2941,5607:479,-79,-67,0,0,0.0750987 -2942,5607:478,-78,-67,0,0,0.0751701 -2943,5607:477,-77,-67,0,0,0.0752415 -2944,5607:476,-76,-67,0,0,0.0753272 -2945,5607:475,-75,-67,0,0,0.0753703 -2946,5607:374,-74,-67,0,0,0.0763354 -2947,5607:373,-73,-67,0,0,0.0768221 -2948,5606:479,-69,-67,0,0,0.0761978 -2949,5606:371,-61,-67,0,0,0.0753917 -2950,5606:370,-60,-67,0,0,0.0752273 -2951,5605:479,-59,-67,0,0,0.0750345 -2952,5605:478,-58,-67,0,0,0.0750345 -2953,5605:477,-57,-67,0,0,0.0750345 -2954,5605:476,-56,-67,0,0,0.0750416 -2955,5605:475,-55,-67,0,0,0.0750488 -2956,5605:374,-54,-67,0,0,0.0750416 -2957,5605:373,-53,-67,0,0,0.0750345 -2958,5605:372,-52,-67,0,0,0.0750201 -2959,5605:371,-51,-67,0,0,0.0749988 -2960,5605:370,-50,-67,0,0,0.0749988 -2961,5604:479,-49,-67,0,0,0.0749916 -2962,5604:478,-48,-67,0,0,0.0749775 -2963,5604:477,-47,-67,0,0,0.0749703 -2964,5604:476,-46,-67,0,0,0.0749703 -2965,5604:475,-45,-67,0,0,0.0749703 -2966,5604:374,-44,-67,0,0,0.0749703 -2967,5604:373,-43,-67,0,0,0.0749631 -2968,5604:372,-42,-67,0,0,0.0749631 -2969,5604:371,-41,-67,0,0,0.0749631 -2970,5604:370,-40,-67,0,0,0.0749631 -2971,5603:479,-39,-67,0,0,0.0749631 -2972,5603:478,-38,-67,0,0,0.0749631 -2973,5603:477,-37,-67,0,0,0.0749631 -2974,5603:476,-36,-67,0,0,0.0749631 -2975,5603:475,-35,-67,0,0,0.0749631 -2976,5603:374,-34,-67,0,0,0.0749631 -2977,5603:373,-33,-67,0,0,0.0749562 -2978,5603:372,-32,-67,0,0,0.074949 -2979,5603:371,-31,-67,0,0,0.074949 -2980,5603:370,-30,-67,0,0,0.0749418 -2981,5602:479,-29,-67,0,0,0.0749418 -2982,5602:478,-28,-67,0,0,0.074949 -2983,5602:477,-27,-67,0,0,0.074949 -2984,5602:476,-26,-67,0,0,0.0749418 -2985,5602:475,-25,-67,0,0,0.0749418 -2986,5602:374,-24,-67,0,0,0.0749346 -2987,5602:373,-23,-67,0,0,0.0749346 -2988,5602:372,-22,-67,0,0,0.0749418 -2989,5602:371,-21,-67,0,0,0.0749562 -2990,5602:370,-20,-67,0,0,0.0749562 -2991,5601:479,-19,-67,0,0,0.0749562 -2992,5601:478,-18,-67,0,0,0.0749631 -2993,5601:477,-17,-67,0,0,0.074949 -2994,5601:476,-16,-67,0,0,0.0749631 -2995,5601:475,-15,-67,0,0,0.0749631 -2996,5601:374,-14,-67,0,0,0.0749562 -2997,5601:373,-13,-67,0,0,0.0749631 -2998,5601:372,-12,-67,0,0,0.0749775 -2999,5601:371,-11,-67,0,0,0.0749703 -3000,5601:370,-10,-67,0,0,0.0749703 -3001,5600:479,-9,-67,0,0,0.0749631 -3002,5600:478,-8,-67,0,0,0.0749703 -3003,5600:477,-7,-67,0,0,0.0749775 -3004,5600:476,-6,-67,0,0,0.0750345 -3005,5600:475,-5,-67,0,0,0.0755781 -3006,5600:374,-4,-67,0,0,0.0753058 -3007,5600:373,-3,-67,0,0,0.0751128 -3008,5600:372,-2,-67,0,0,0.0754275 -3009,5600:371,-1,-67,0,0,0.0761689 -3010,3600:371,0,-67,0,0,0.0774365 -3011,3600:371,1,-67,0,0,0.0756355 -3012,3600:372,2,-67,0,0,0.0752129 -3013,3600:373,3,-67,0,0,0.075163 -3014,3600:374,4,-67,0,0,0.0766184 -3015,3600:475,5,-67,0,0,0.0768659 -3016,3600:476,6,-67,0,0,0.0768367 -3017,3600:477,7,-67,0,0,0.0773852 -3018,3600:478,8,-67,0,0,0.0782329 -3019,3600:479,9,-67,0,0,0.0786564 -3020,3601:370,10,-67,0,0,0.0775172 -3021,3601:371,11,-67,0,0,0.0789023 -3022,3601:372,12,-67,0,0,0.0800296 -3023,3601:373,13,-67,0,0,0.0814942 -3024,3601:478,18,-67,0,0,0.0759523 -3025,3601:479,19,-67,0,0,0.0750702 -3026,3602:370,20,-67,0,0,0.07512 -3027,3602:371,21,-67,0,0,0.0751344 -3028,3602:372,22,-67,0,0,0.0751059 -3029,3602:373,23,-67,0,0,0.0750558 -3030,3602:374,24,-67,0,0,0.0749846 -3031,3602:475,25,-67,0,0,0.0749275 -3032,3602:476,26,-67,0,0,0.0750201 -3033,3602:477,27,-67,0,0,0.0749346 -3034,3602:478,28,-67,0,0,0.0761761 -3035,3616:371,161,-67,0,0,0.07565 -3036,3616:372,162,-67,0,0,0.075006 -3037,3616:373,163,-67,0,0,0.0750131 -3038,3616:374,164,-67,0,0,0.0750273 -3039,3616:475,165,-67,0,0,0.0750273 -3040,3616:476,166,-67,0,0,0.0750273 -3041,3616:477,167,-67,0,0,0.0750273 -3042,3616:478,168,-67,0,0,0.0750345 -3043,3616:479,169,-67,0,0,0.0750273 -3044,3617:370,170,-67,0,0,0.0750273 -3045,3617:371,171,-67,0,0,0.0750345 -3046,3617:372,172,-67,0,0,0.0750201 -3047,3617:373,173,-67,0,0,0.0750201 -3048,3617:374,174,-67,0,0,0.0749916 -3049,3617:475,175,-67,0,0,0.0749775 -3050,3617:476,176,-67,0,0,0.0749775 -3051,3617:477,177,-67,0,0,0.075006 -3052,3617:478,178,-67,0,0,0.0750345 -3053,3617:479,179,-67,0,0,0.0750558 -3054,3618:370,180,-67,0,0,0.0750773 -3055,5618:360,-180,-66,0,0,0.0750558 -3056,5617:469,-179,-66,0,0,0.0750702 -3057,5617:468,-178,-66,0,0,0.0750915 -3058,5617:467,-177,-66,0,0,0.0750915 -3059,5617:466,-176,-66,0,0,0.0750773 -3060,5617:465,-175,-66,0,0,0.075063 -3061,5617:364,-174,-66,0,0,0.0750558 -3062,5617:363,-173,-66,0,0,0.0750488 -3063,5617:362,-172,-66,0,0,0.0750416 -3064,5617:361,-171,-66,0,0,0.0750273 -3065,5617:360,-170,-66,0,0,0.0750131 -3066,5616:469,-169,-66,0,0,0.0749988 -3067,5616:468,-168,-66,0,0,0.0749916 -3068,5616:467,-167,-66,0,0,0.0749846 -3069,5616:466,-166,-66,0,0,0.0749562 -3070,5616:465,-165,-66,0,0,0.074949 -3071,5616:364,-164,-66,0,0,0.074949 -3072,5616:363,-163,-66,0,0,0.0749562 -3073,5616:362,-162,-66,0,0,0.0749703 -3074,5616:361,-161,-66,0,0,0.0749775 -3075,5616:360,-160,-66,0,0,0.075006 -3076,5615:469,-159,-66,0,0,0.0750345 -3077,5615:468,-158,-66,0,0,0.0750558 -3078,5615:467,-157,-66,0,0,0.0750843 -3079,5615:466,-156,-66,0,0,0.0750987 -3080,5615:465,-155,-66,0,0,0.0751059 -3081,5615:364,-154,-66,0,0,0.0751128 -3082,5615:363,-153,-66,0,0,0.0751272 -3083,5615:362,-152,-66,0,0,0.0751486 -3084,5615:361,-151,-66,0,0,0.0751486 -3085,5615:360,-150,-66,0,0,0.0751486 -3086,5614:469,-149,-66,0,0,0.0751558 -3087,5614:468,-148,-66,0,0,0.0751558 -3088,5614:467,-147,-66,0,0,0.0751771 -3089,5614:466,-146,-66,0,0,0.0751701 -3090,5614:465,-145,-66,0,0,0.075163 -3091,5614:364,-144,-66,0,0,0.0751701 -3092,5614:363,-143,-66,0,0,0.075163 -3093,5614:362,-142,-66,0,0,0.0751701 -3094,5614:361,-141,-66,0,0,0.0752844 -3095,5614:360,-140,-66,0,0,0.0752844 -3096,5613:469,-139,-66,0,0,0.0753058 -3097,5613:468,-138,-66,0,0,0.0752057 -3098,5613:467,-137,-66,0,0,0.0751272 -3099,5613:466,-136,-66,0,0,0.0751915 -3100,5613:465,-135,-66,0,0,0.07527 -3101,5613:364,-134,-66,0,0,0.075686 -3102,5613:363,-133,-66,0,0,0.0760172 -3103,5613:362,-132,-66,0,0,0.0759019 -3104,5613:361,-131,-66,0,0,0.0763281 -3105,5613:360,-130,-66,0,0,0.0764369 -3106,5612:469,-129,-66,0,0,0.0763716 -3107,5612:468,-128,-66,0,0,0.076386 -3108,5612:467,-127,-66,0,0,0.0763064 -3109,5612:466,-126,-66,0,0,0.0760245 -3110,5612:465,-125,-66,0,0,0.0758803 -3111,5612:364,-124,-66,0,0,0.0757722 -3112,5612:363,-123,-66,0,0,0.075686 -3113,5612:362,-122,-66,0,0,0.0755424 -3114,5612:361,-121,-66,0,0,0.0754348 -3115,5612:360,-120,-66,0,0,0.0753989 -3116,5611:469,-119,-66,0,0,0.075442 -3117,5611:468,-118,-66,0,0,0.0756355 -3118,5611:467,-117,-66,0,0,0.0761038 -3119,5611:466,-116,-66,0,0,0.0772606 -3120,5611:465,-115,-66,0,0,0.0782997 -3121,5611:364,-114,-66,0,0,0.0782108 -3122,5611:363,-113,-66,0,0,0.0782476 -3123,5611:362,-112,-66,0,0,0.0763571 -3124,5611:361,-111,-66,0,0,0.0753272 -3125,5611:360,-110,-66,0,0,0.0750915 -3126,5610:469,-109,-66,0,0,0.0752772 -3127,5610:468,-108,-66,0,0,0.0762413 -3128,5610:467,-107,-66,0,0,0.0750915 -3129,5610:466,-106,-66,0,0,0.0750773 -3130,5610:465,-105,-66,0,0,0.075063 -3131,5610:364,-104,-66,0,0,0.0750702 -3132,5610:363,-103,-66,0,0,0.0750702 -3133,5610:362,-102,-66,0,0,0.0750558 -3134,5610:361,-101,-66,0,0,0.0750273 -3135,5610:360,-100,-66,0,0,0.0750416 -3136,5609:469,-99,-66,0,0,0.0750201 -3137,5609:468,-98,-66,0,0,0.075006 -3138,5609:467,-97,-66,0,0,0.0749988 -3139,5609:466,-96,-66,0,0,0.0749988 -3140,5609:465,-95,-66,0,0,0.0749846 -3141,5609:364,-94,-66,0,0,0.075006 -3142,5609:363,-93,-66,0,0,0.0750273 -3143,5609:362,-92,-66,0,0,0.0750131 -3144,5609:361,-91,-66,0,0,0.0749916 -3145,5609:360,-90,-66,0,0,0.0749988 -3146,5608:469,-89,-66,0,0,0.0750131 -3147,5608:468,-88,-66,0,0,0.0750273 -3148,5608:467,-87,-66,0,0,0.0750273 -3149,5608:466,-86,-66,0,0,0.0750345 -3150,5608:465,-85,-66,0,0,0.075063 -3151,5608:364,-84,-66,0,0,0.0750773 -3152,5608:363,-83,-66,0,0,0.0750773 -3153,5608:362,-82,-66,0,0,0.0750773 -3154,5608:361,-81,-66,0,0,0.0750843 -3155,5608:360,-80,-66,0,0,0.0750843 -3156,5607:469,-79,-66,0,0,0.0750773 -3157,5607:468,-78,-66,0,0,0.07512 -3158,5607:467,-77,-66,0,0,0.0752201 -3159,5607:466,-76,-66,0,0,0.0753203 -3160,5607:465,-75,-66,0,0,0.0753775 -3161,5607:364,-74,-66,0,0,0.076234 -3162,5607:363,-73,-66,0,0,0.076713 -3163,5607:360,-70,-66,0,0,0.0757867 -3164,5606:469,-69,-66,0,0,0.0759307 -3165,5606:361,-61,-66,0,0,0.0754348 -3166,5606:360,-60,-66,0,0,0.0751059 -3167,5605:469,-59,-66,0,0,0.0750345 -3168,5605:468,-58,-66,0,0,0.0750273 -3169,5605:467,-57,-66,0,0,0.0750273 -3170,5605:466,-56,-66,0,0,0.0750416 -3171,5605:465,-55,-66,0,0,0.0750488 -3172,5605:364,-54,-66,0,0,0.0750416 -3173,5605:363,-53,-66,0,0,0.0750273 -3174,5605:362,-52,-66,0,0,0.0750131 -3175,5605:361,-51,-66,0,0,0.075006 -3176,5605:360,-50,-66,0,0,0.0749916 -3177,5604:469,-49,-66,0,0,0.0749846 -3178,5604:468,-48,-66,0,0,0.0749846 -3179,5604:467,-47,-66,0,0,0.0749775 -3180,5604:466,-46,-66,0,0,0.0749775 -3181,5604:465,-45,-66,0,0,0.0749775 -3182,5604:364,-44,-66,0,0,0.0749703 -3183,5604:363,-43,-66,0,0,0.0749703 -3184,5604:362,-42,-66,0,0,0.0749703 -3185,5604:361,-41,-66,0,0,0.0749631 -3186,5604:360,-40,-66,0,0,0.0749562 -3187,5603:469,-39,-66,0,0,0.074949 -3188,5603:468,-38,-66,0,0,0.0749562 -3189,5603:467,-37,-66,0,0,0.0749631 -3190,5603:466,-36,-66,0,0,0.0749562 -3191,5603:465,-35,-66,0,0,0.0749562 -3192,5603:364,-34,-66,0,0,0.0749562 -3193,5603:363,-33,-66,0,0,0.0749562 -3194,5603:362,-32,-66,0,0,0.0749562 -3195,5603:361,-31,-66,0,0,0.074949 -3196,5603:360,-30,-66,0,0,0.0749418 -3197,5602:469,-29,-66,0,0,0.0749346 -3198,5602:468,-28,-66,0,0,0.0749418 -3199,5602:467,-27,-66,0,0,0.0749418 -3200,5602:466,-26,-66,0,0,0.0749346 -3201,5602:465,-25,-66,0,0,0.0749346 -3202,5602:364,-24,-66,0,0,0.0749275 -3203,5602:363,-23,-66,0,0,0.0749205 -3204,5602:362,-22,-66,0,0,0.0749205 -3205,5602:361,-21,-66,0,0,0.0749275 -3206,5602:360,-20,-66,0,0,0.0749346 -3207,5601:469,-19,-66,0,0,0.0749346 -3208,5601:468,-18,-66,0,0,0.0749418 -3209,5601:467,-17,-66,0,0,0.0749418 -3210,5601:466,-16,-66,0,0,0.074949 -3211,5601:465,-15,-66,0,0,0.074949 -3212,5601:364,-14,-66,0,0,0.074949 -3213,5601:363,-13,-66,0,0,0.0749418 -3214,5601:362,-12,-66,0,0,0.0749275 -3215,5601:361,-11,-66,0,0,0.0749418 -3216,5601:360,-10,-66,0,0,0.0749418 -3217,5600:469,-9,-66,0,0,0.0749205 -3218,5600:468,-8,-66,0,0,0.0749133 -3219,5600:467,-7,-66,0,0,0.0749275 -3220,5600:466,-6,-66,0,0,0.0749562 -3221,5600:465,-5,-66,0,0,0.0749703 -3222,5600:364,-4,-66,0,0,0.074949 -3223,5600:363,-3,-66,0,0,0.074899 -3224,5600:362,-2,-66,0,0,0.0748636 -3225,5600:361,-1,-66,0,0,0.0748636 -3226,3600:361,0,-66,0,0,0.0748636 -3227,3600:361,1,-66,0,0,0.0748777 -3228,3600:362,2,-66,0,0,0.074892 -3229,3600:363,3,-66,0,0,0.074892 -3230,3600:364,4,-66,0,0,0.074892 -3231,3600:465,5,-66,0,0,0.0748849 -3232,3600:466,6,-66,0,0,0.0748636 -3233,3600:467,7,-66,0,0,0.0748849 -3234,3600:468,8,-66,0,0,0.0749062 -3235,3600:469,9,-66,0,0,0.0749133 -3236,3601:360,10,-66,0,0,0.0749346 -3237,3601:361,11,-66,0,0,0.0750558 -3238,3601:362,12,-66,0,0,0.0753631 -3239,3601:363,13,-66,0,0,0.075063 -3240,3601:364,14,-66,0,0,0.0753203 -3241,3601:465,15,-66,0,0,0.075442 -3242,3601:466,16,-66,0,0,0.0750773 -3243,3601:467,17,-66,0,0,0.0751128 -3244,3601:468,18,-66,0,0,0.075006 -3245,3601:469,19,-66,0,0,0.0749775 -3246,3602:360,20,-66,0,0,0.0749775 -3247,3602:361,21,-66,0,0,0.0749775 -3248,3602:362,22,-66,0,0,0.0749846 -3249,3602:363,23,-66,0,0,0.0749846 -3250,3602:364,24,-66,0,0,0.0749703 -3251,3602:465,25,-66,0,0,0.074949 -3252,3602:466,26,-66,0,0,0.074949 -3253,3602:467,27,-66,0,0,0.0749418 -3254,3602:468,28,-66,0,0,0.0749988 -3255,3602:469,29,-66,0,0,0.0749846 -3256,3603:466,36,-66,0,0,0.0755352 -3257,3603:467,37,-66,0,0,0.0754348 -3258,3603:468,38,-66,0,0,0.0753058 -3259,3603:469,39,-66,0,0,0.0750915 -3260,3607:364,74,-66,0,0,0.0888968 -3261,3607:465,75,-66,0,0,0.0871401 -3262,3607:466,76,-66,0,0,0.0890969 -3263,3607:467,77,-66,0,0,0.0890717 -3264,3615:468,158,-66,0,0,0.0754492 -3265,3615:469,159,-66,0,0,0.0751771 -3266,3616:360,160,-66,0,0,0.0750488 -3267,3616:361,161,-66,0,0,0.0750416 -3268,3616:362,162,-66,0,0,0.0750345 -3269,3616:363,163,-66,0,0,0.0750488 -3270,3616:364,164,-66,0,0,0.075063 -3271,3616:465,165,-66,0,0,0.0750558 -3272,3616:466,166,-66,0,0,0.0750558 -3273,3616:467,167,-66,0,0,0.0750488 -3274,3616:468,168,-66,0,0,0.0750416 -3275,3616:469,169,-66,0,0,0.0750488 -3276,3617:360,170,-66,0,0,0.0750488 -3277,3617:361,171,-66,0,0,0.0750201 -3278,3617:362,172,-66,0,0,0.0750131 -3279,3617:363,173,-66,0,0,0.075006 -3280,3617:364,174,-66,0,0,0.0749846 -3281,3617:465,175,-66,0,0,0.0749846 -3282,3617:466,176,-66,0,0,0.0749916 -3283,3617:467,177,-66,0,0,0.075006 -3284,3617:468,178,-66,0,0,0.0750345 -3285,3617:469,179,-66,0,0,0.0750488 -3286,3618:360,180,-66,0,0,0.0750558 -3287,5618:350,-180,-65,0,0,0.0750488 -3288,5617:459,-179,-65,0,0,0.0750558 -3289,5617:458,-178,-65,0,0,0.0750702 -3290,5617:457,-177,-65,0,0,0.0750773 -3291,5617:456,-176,-65,0,0,0.0750702 -3292,5617:455,-175,-65,0,0,0.075063 -3293,5617:354,-174,-65,0,0,0.0750702 -3294,5617:353,-173,-65,0,0,0.0750558 -3295,5617:352,-172,-65,0,0,0.0750488 -3296,5617:351,-171,-65,0,0,0.0750345 -3297,5617:350,-170,-65,0,0,0.0750273 -3298,5616:459,-169,-65,0,0,0.0750131 -3299,5616:458,-168,-65,0,0,0.0749988 -3300,5616:457,-167,-65,0,0,0.0749916 -3301,5616:456,-166,-65,0,0,0.0749775 -3302,5616:455,-165,-65,0,0,0.0749703 -3303,5616:354,-164,-65,0,0,0.0749703 -3304,5616:353,-163,-65,0,0,0.0749775 -3305,5616:352,-162,-65,0,0,0.0749846 -3306,5616:351,-161,-65,0,0,0.0749988 -3307,5616:350,-160,-65,0,0,0.0750201 -3308,5615:459,-159,-65,0,0,0.0750488 -3309,5615:458,-158,-65,0,0,0.0750702 -3310,5615:457,-157,-65,0,0,0.0750773 -3311,5615:456,-156,-65,0,0,0.0750915 -3312,5615:455,-155,-65,0,0,0.0750987 -3313,5615:354,-154,-65,0,0,0.0751128 -3314,5615:353,-153,-65,0,0,0.0751344 -3315,5615:352,-152,-65,0,0,0.0751486 -3316,5615:351,-151,-65,0,0,0.0751558 -3317,5615:350,-150,-65,0,0,0.0751344 -3318,5614:459,-149,-65,0,0,0.0751701 -3319,5614:458,-148,-65,0,0,0.075163 -3320,5614:457,-147,-65,0,0,0.0751771 -3321,5614:456,-146,-65,0,0,0.0751558 -3322,5614:455,-145,-65,0,0,0.0751416 -3323,5614:354,-144,-65,0,0,0.075163 -3324,5614:353,-143,-65,0,0,0.0751486 -3325,5614:352,-142,-65,0,0,0.0751558 -3326,5614:351,-141,-65,0,0,0.075163 -3327,5614:350,-140,-65,0,0,0.0752631 -3328,5613:459,-139,-65,0,0,0.075313 -3329,5613:458,-138,-65,0,0,0.0752343 -3330,5613:457,-137,-65,0,0,0.0752057 -3331,5613:456,-136,-65,0,0,0.0751701 -3332,5613:455,-135,-65,0,0,0.0751843 -3333,5613:354,-134,-65,0,0,0.0759162 -3334,5613:353,-133,-65,0,0,0.0763789 -3335,5613:352,-132,-65,0,0,0.0763933 -3336,5613:351,-131,-65,0,0,0.0764006 -3337,5613:350,-130,-65,0,0,0.0764296 -3338,5612:459,-129,-65,0,0,0.0765967 -3339,5612:458,-128,-65,0,0,0.076553 -3340,5612:457,-127,-65,0,0,0.0764369 -3341,5612:456,-126,-65,0,0,0.0763643 -3342,5612:455,-125,-65,0,0,0.0763789 -3343,5612:354,-124,-65,0,0,0.0762775 -3344,5612:353,-123,-65,0,0,0.0762413 -3345,5612:352,-122,-65,0,0,0.0764586 -3346,5612:351,-121,-65,0,0,0.0766111 -3347,5612:350,-120,-65,0,0,0.075722 -3348,5611:459,-119,-65,0,0,0.0755711 -3349,5611:458,-118,-65,0,0,0.0756932 -3350,5611:457,-117,-65,0,0,0.0760606 -3351,5611:456,-116,-65,0,0,0.0784927 -3352,5611:455,-115,-65,0,0,0.0785002 -3353,5611:354,-114,-65,0,0,0.079254 -3354,5611:353,-113,-65,0,0,0.079404 -3355,5611:352,-112,-65,0,0,0.078011 -3356,5611:351,-111,-65,0,0,0.0764876 -3357,5611:350,-110,-65,0,0,0.0782255 -3358,5610:459,-109,-65,0,0,0.0797579 -3359,5610:458,-108,-65,0,0,0.0805076 -3360,5610:457,-107,-65,0,0,0.0769534 -3361,5610:456,-106,-65,0,0,0.075063 -3362,5610:455,-105,-65,0,0,0.075006 -3363,5610:354,-104,-65,0,0,0.0751059 -3364,5610:353,-103,-65,0,0,0.0750488 -3365,5610:352,-102,-65,0,0,0.0750273 -3366,5610:351,-101,-65,0,0,0.0750345 -3367,5610:350,-100,-65,0,0,0.0750558 -3368,5609:459,-99,-65,0,0,0.0750345 -3369,5609:458,-98,-65,0,0,0.0750201 -3370,5609:457,-97,-65,0,0,0.0750273 -3371,5609:456,-96,-65,0,0,0.0750131 -3372,5609:455,-95,-65,0,0,0.0749775 -3373,5609:354,-94,-65,0,0,0.0749703 -3374,5609:353,-93,-65,0,0,0.075006 -3375,5609:352,-92,-65,0,0,0.0749988 -3376,5609:351,-91,-65,0,0,0.0749775 -3377,5609:350,-90,-65,0,0,0.0749916 -3378,5608:459,-89,-65,0,0,0.0749988 -3379,5608:458,-88,-65,0,0,0.0750131 -3380,5608:457,-87,-65,0,0,0.0750201 -3381,5608:456,-86,-65,0,0,0.0750416 -3382,5608:455,-85,-65,0,0,0.075063 -3383,5608:354,-84,-65,0,0,0.0750773 -3384,5608:353,-83,-65,0,0,0.0750915 -3385,5608:352,-82,-65,0,0,0.0750915 -3386,5608:351,-81,-65,0,0,0.0750987 -3387,5608:350,-80,-65,0,0,0.0750987 -3388,5607:459,-79,-65,0,0,0.0750987 -3389,5607:458,-78,-65,0,0,0.0750915 -3390,5607:457,-77,-65,0,0,0.0751344 -3391,5607:456,-76,-65,0,0,0.0752129 -3392,5607:455,-75,-65,0,0,0.07527 -3393,5607:354,-74,-65,0,0,0.0753417 -3394,5607:353,-73,-65,0,0,0.0754133 -3395,5607:352,-72,-65,0,0,0.0755567 -3396,5607:351,-71,-65,0,0,0.075758 -3397,5607:350,-70,-65,0,0,0.0756572 -3398,5606:459,-69,-65,0,0,0.0756645 -3399,5606:458,-68,-65,0,0,0.0764949 -3400,5606:350,-60,-65,0,0,0.0753058 -3401,5605:459,-59,-65,0,0,0.0752201 -3402,5605:458,-58,-65,0,0,0.0750488 -3403,5605:457,-57,-65,0,0,0.0750273 -3404,5605:456,-56,-65,0,0,0.0750345 -3405,5605:455,-55,-65,0,0,0.0750416 -3406,5605:354,-54,-65,0,0,0.0750416 -3407,5605:353,-53,-65,0,0,0.0750273 -3408,5605:352,-52,-65,0,0,0.075006 -3409,5605:351,-51,-65,0,0,0.0749916 -3410,5605:350,-50,-65,0,0,0.0749916 -3411,5604:459,-49,-65,0,0,0.0749916 -3412,5604:458,-48,-65,0,0,0.0749846 -3413,5604:457,-47,-65,0,0,0.0749846 -3414,5604:456,-46,-65,0,0,0.0749846 -3415,5604:455,-45,-65,0,0,0.0749775 -3416,5604:354,-44,-65,0,0,0.0749775 -3417,5604:353,-43,-65,0,0,0.0749775 -3418,5604:352,-42,-65,0,0,0.0749631 -3419,5604:351,-41,-65,0,0,0.0749562 -3420,5604:350,-40,-65,0,0,0.0749562 -3421,5603:459,-39,-65,0,0,0.0749562 -3422,5603:458,-38,-65,0,0,0.0749562 -3423,5603:457,-37,-65,0,0,0.0749562 -3424,5603:456,-36,-65,0,0,0.0749631 -3425,5603:455,-35,-65,0,0,0.0749631 -3426,5603:354,-34,-65,0,0,0.0749631 -3427,5603:353,-33,-65,0,0,0.0749631 -3428,5603:352,-32,-65,0,0,0.0749562 -3429,5603:351,-31,-65,0,0,0.074949 -3430,5603:350,-30,-65,0,0,0.074949 -3431,5602:459,-29,-65,0,0,0.0749418 -3432,5602:458,-28,-65,0,0,0.0749418 -3433,5602:457,-27,-65,0,0,0.0749418 -3434,5602:456,-26,-65,0,0,0.0749418 -3435,5602:455,-25,-65,0,0,0.0749418 -3436,5602:354,-24,-65,0,0,0.0749346 -3437,5602:353,-23,-65,0,0,0.0749275 -3438,5602:352,-22,-65,0,0,0.0749205 -3439,5602:351,-21,-65,0,0,0.0749205 -3440,5602:350,-20,-65,0,0,0.0749205 -3441,5601:459,-19,-65,0,0,0.0749205 -3442,5601:458,-18,-65,0,0,0.0749205 -3443,5601:457,-17,-65,0,0,0.0749275 -3444,5601:456,-16,-65,0,0,0.0749275 -3445,5601:455,-15,-65,0,0,0.0749275 -3446,5601:354,-14,-65,0,0,0.0749275 -3447,5601:353,-13,-65,0,0,0.0749275 -3448,5601:352,-12,-65,0,0,0.0749205 -3449,5601:351,-11,-65,0,0,0.074899 -3450,5601:350,-10,-65,0,0,0.0748705 -3451,5600:459,-9,-65,0,0,0.0748777 -3452,5600:458,-8,-65,0,0,0.0748849 -3453,5600:457,-7,-65,0,0,0.074899 -3454,5600:456,-6,-65,0,0,0.0749205 -3455,5600:455,-5,-65,0,0,0.0749275 -3456,5600:354,-4,-65,0,0,0.0749275 -3457,5600:353,-3,-65,0,0,0.0749062 -3458,5600:352,-2,-65,0,0,0.0748705 -3459,5600:351,-1,-65,0,0,0.0748777 -3460,3600:351,0,-65,0,0,0.0748849 -3461,3600:351,1,-65,0,0,0.074899 -3462,3600:352,2,-65,0,0,0.0749275 -3463,3600:353,3,-65,0,0,0.074892 -3464,3600:354,4,-65,0,0,0.0748705 -3465,3600:455,5,-65,0,0,0.0748493 -3466,3600:456,6,-65,0,0,0.0748421 -3467,3600:457,7,-65,0,0,0.0748349 -3468,3600:458,8,-65,0,0,0.0748564 -3469,3600:459,9,-65,0,0,0.0749062 -3470,3601:350,10,-65,0,0,0.0749418 -3471,3601:351,11,-65,0,0,0.075006 -3472,3601:352,12,-65,0,0,0.0749846 -3473,3601:353,13,-65,0,0,0.0750131 -3474,3601:354,14,-65,0,0,0.0750201 -3475,3601:455,15,-65,0,0,0.0749846 -3476,3601:456,16,-65,0,0,0.0749775 -3477,3601:457,17,-65,0,0,0.0749846 -3478,3601:458,18,-65,0,0,0.0749418 -3479,3601:459,19,-65,0,0,0.074949 -3480,3602:350,20,-65,0,0,0.0749418 -3481,3602:351,21,-65,0,0,0.074949 -3482,3602:352,22,-65,0,0,0.074949 -3483,3602:353,23,-65,0,0,0.0749346 -3484,3602:354,24,-65,0,0,0.0749346 -3485,3602:455,25,-65,0,0,0.0749418 -3486,3602:456,26,-65,0,0,0.0749703 -3487,3602:457,27,-65,0,0,0.0749631 -3488,3602:458,28,-65,0,0,0.0749562 -3489,3602:459,29,-65,0,0,0.0749562 -3490,3603:350,30,-65,0,0,0.0749631 -3491,3603:351,31,-65,0,0,0.0749631 -3492,3603:352,32,-65,0,0,0.0750345 -3493,3603:353,33,-65,0,0,0.0773998 -3494,3603:455,35,-65,0,0,0.0754275 -3495,3603:456,36,-65,0,0,0.0754061 -3496,3603:457,37,-65,0,0,0.0750702 -3497,3603:458,38,-65,0,0,0.0750558 -3498,3603:459,39,-65,0,0,0.0751701 -3499,3604:350,40,-65,0,0,0.07512 -3500,3607:352,72,-65,0,0,0.0854231 -3501,3607:354,74,-65,0,0,0.0807361 -3502,3607:455,75,-65,0,0,0.0816328 -3503,3607:456,76,-65,0,0,0.082554 -3504,3607:457,77,-65,0,0,0.0845044 -3505,3607:458,78,-65,0,0,0.0881094 -3506,3615:456,156,-65,0,0,0.0768221 -3507,3615:457,157,-65,0,0,0.0751486 -3508,3615:458,158,-65,0,0,0.0751128 -3509,3615:459,159,-65,0,0,0.0750558 -3510,3616:350,160,-65,0,0,0.0750558 -3511,3616:351,161,-65,0,0,0.0750488 -3512,3616:352,162,-65,0,0,0.075063 -3513,3616:353,163,-65,0,0,0.0750702 -3514,3616:354,164,-65,0,0,0.0750702 -3515,3616:455,165,-65,0,0,0.075063 -3516,3616:456,166,-65,0,0,0.075063 -3517,3616:457,167,-65,0,0,0.075063 -3518,3616:458,168,-65,0,0,0.0750558 -3519,3616:459,169,-65,0,0,0.0750558 -3520,3617:350,170,-65,0,0,0.0750416 -3521,3617:351,171,-65,0,0,0.0750201 -3522,3617:352,172,-65,0,0,0.075006 -3523,3617:353,173,-65,0,0,0.0749988 -3524,3617:354,174,-65,0,0,0.0749846 -3525,3617:455,175,-65,0,0,0.0749846 -3526,3617:456,176,-65,0,0,0.0749916 -3527,3617:457,177,-65,0,0,0.075006 -3528,3617:458,178,-65,0,0,0.0750345 -3529,3617:459,179,-65,0,0,0.0750416 -3530,3618:350,180,-65,0,0,0.0750488 -3531,5618:140,-180,-64,0,0,0.0750558 -3532,5617:249,-179,-64,0,0,0.075063 -3533,5617:248,-178,-64,0,0,0.075063 -3534,5617:247,-177,-64,0,0,0.0750702 -3535,5617:246,-176,-64,0,0,0.0750702 -3536,5617:245,-175,-64,0,0,0.0750843 -3537,5617:144,-174,-64,0,0,0.0750773 -3538,5617:143,-173,-64,0,0,0.075063 -3539,5617:142,-172,-64,0,0,0.0750558 -3540,5617:141,-171,-64,0,0,0.0750488 -3541,5617:140,-170,-64,0,0,0.0750416 -3542,5616:249,-169,-64,0,0,0.0750273 -3543,5616:248,-168,-64,0,0,0.0750201 -3544,5616:247,-167,-64,0,0,0.0750131 -3545,5616:246,-166,-64,0,0,0.0749916 -3546,5616:245,-165,-64,0,0,0.0749846 -3547,5616:144,-164,-64,0,0,0.0749916 -3548,5616:143,-163,-64,0,0,0.0749988 -3549,5616:142,-162,-64,0,0,0.0750131 -3550,5616:141,-161,-64,0,0,0.0750345 -3551,5616:140,-160,-64,0,0,0.0750488 -3552,5615:249,-159,-64,0,0,0.0750558 -3553,5615:248,-158,-64,0,0,0.0750702 -3554,5615:247,-157,-64,0,0,0.0750843 -3555,5615:246,-156,-64,0,0,0.0750915 -3556,5615:245,-155,-64,0,0,0.0751059 -3557,5615:144,-154,-64,0,0,0.0751272 -3558,5615:143,-153,-64,0,0,0.0751416 -3559,5615:142,-152,-64,0,0,0.0751416 -3560,5615:141,-151,-64,0,0,0.075163 -3561,5615:140,-150,-64,0,0,0.0751558 -3562,5614:249,-149,-64,0,0,0.075163 -3563,5614:248,-148,-64,0,0,0.0751843 -3564,5614:247,-147,-64,0,0,0.0751771 -3565,5614:246,-146,-64,0,0,0.0751701 -3566,5614:245,-145,-64,0,0,0.0751701 -3567,5614:144,-144,-64,0,0,0.0751843 -3568,5614:143,-143,-64,0,0,0.0751843 -3569,5614:142,-142,-64,0,0,0.0751987 -3570,5614:141,-141,-64,0,0,0.0752415 -3571,5614:140,-140,-64,0,0,0.0751915 -3572,5613:249,-139,-64,0,0,0.0751701 -3573,5613:248,-138,-64,0,0,0.0753631 -3574,5613:247,-137,-64,0,0,0.0755926 -3575,5613:246,-136,-64,0,0,0.0752129 -3576,5613:245,-135,-64,0,0,0.0751987 -3577,5613:144,-134,-64,0,0,0.0754921 -3578,5613:143,-133,-64,0,0,0.0794943 -3579,5613:142,-132,-64,0,0,0.0803252 -3580,5613:141,-131,-64,0,0,0.0802569 -3581,5613:140,-130,-64,0,0,0.0779445 -3582,5612:249,-129,-64,0,0,0.0764659 -3583,5612:248,-128,-64,0,0,0.0764876 -3584,5612:247,-127,-64,0,0,0.0767929 -3585,5612:246,-126,-64,0,0,0.0769754 -3586,5612:245,-125,-64,0,0,0.0771799 -3587,5612:144,-124,-64,0,0,0.0778337 -3588,5612:143,-123,-64,0,0,0.0788203 -3589,5612:142,-122,-64,0,0,0.0782551 -3590,5612:141,-121,-64,0,0,0.0778042 -3591,5612:140,-120,-64,0,0,0.0768441 -3592,5611:249,-119,-64,0,0,0.076039 -3593,5611:248,-118,-64,0,0,0.0764006 -3594,5611:247,-117,-64,0,0,0.0788427 -3595,5611:246,-116,-64,0,0,0.0801433 -3596,5611:245,-115,-64,0,0,0.0808276 -3597,5611:144,-114,-64,0,0,0.0804162 -3598,5611:143,-113,-64,0,0,0.079577 -3599,5611:142,-112,-64,0,0,0.0799542 -3600,5611:141,-111,-64,0,0,0.0798408 -3601,5611:140,-110,-64,0,0,0.0809957 -3602,5610:249,-109,-64,0,0,0.080614 -3603,5610:248,-108,-64,0,0,0.0809957 -3604,5610:247,-107,-64,0,0,0.0796673 -3605,5610:246,-106,-64,0,0,0.0766765 -3606,5610:245,-105,-64,0,0,0.075837 -3607,5610:144,-104,-64,0,0,0.0759162 -3608,5610:143,-103,-64,0,0,0.0756932 -3609,5610:142,-102,-64,0,0,0.0750702 -3610,5610:141,-101,-64,0,0,0.0754993 -3611,5610:140,-100,-64,0,0,0.0777307 -3612,5609:249,-99,-64,0,0,0.0784405 -3613,5609:248,-98,-64,0,0,0.0770117 -3614,5609:247,-97,-64,0,0,0.0758225 -3615,5609:246,-96,-64,0,0,0.0751771 -3616,5609:245,-95,-64,0,0,0.0750273 -3617,5609:144,-94,-64,0,0,0.0750488 -3618,5609:143,-93,-64,0,0,0.0750987 -3619,5609:142,-92,-64,0,0,0.0750273 -3620,5609:141,-91,-64,0,0,0.0749775 -3621,5609:140,-90,-64,0,0,0.0749916 -3622,5608:249,-89,-64,0,0,0.0749916 -3623,5608:248,-88,-64,0,0,0.0750131 -3624,5608:247,-87,-64,0,0,0.0750273 -3625,5608:246,-86,-64,0,0,0.0750416 -3626,5608:245,-85,-64,0,0,0.075063 -3627,5608:144,-84,-64,0,0,0.075063 -3628,5608:143,-83,-64,0,0,0.0750702 -3629,5608:142,-82,-64,0,0,0.0750773 -3630,5608:141,-81,-64,0,0,0.0750843 -3631,5608:140,-80,-64,0,0,0.0750915 -3632,5607:249,-79,-64,0,0,0.0750843 -3633,5607:248,-78,-64,0,0,0.0750843 -3634,5607:247,-77,-64,0,0,0.0750987 -3635,5607:246,-76,-64,0,0,0.0751059 -3636,5607:245,-75,-64,0,0,0.075163 -3637,5607:144,-74,-64,0,0,0.0752559 -3638,5607:143,-73,-64,0,0,0.0753631 -3639,5607:142,-72,-64,0,0,0.0754921 -3640,5607:141,-71,-64,0,0,0.0755494 -3641,5607:140,-70,-64,0,0,0.0756787 -3642,5606:249,-69,-64,0,0,0.0768294 -3643,5606:248,-68,-64,0,0,0.0776644 -3644,5605:249,-59,-64,0,0,0.0753489 -3645,5605:248,-58,-64,0,0,0.0751128 -3646,5605:247,-57,-64,0,0,0.0750345 -3647,5605:246,-56,-64,0,0,0.0750345 -3648,5605:245,-55,-64,0,0,0.0750488 -3649,5605:144,-54,-64,0,0,0.0750416 -3650,5605:143,-53,-64,0,0,0.0750273 -3651,5605:142,-52,-64,0,0,0.0749988 -3652,5605:141,-51,-64,0,0,0.0749916 -3653,5605:140,-50,-64,0,0,0.0749916 -3654,5604:249,-49,-64,0,0,0.0749916 -3655,5604:248,-48,-64,0,0,0.0749846 -3656,5604:247,-47,-64,0,0,0.0749846 -3657,5604:246,-46,-64,0,0,0.0749846 -3658,5604:245,-45,-64,0,0,0.0749846 -3659,5604:144,-44,-64,0,0,0.0749775 -3660,5604:143,-43,-64,0,0,0.0749703 -3661,5604:142,-42,-64,0,0,0.0749631 -3662,5604:141,-41,-64,0,0,0.0749631 -3663,5604:140,-40,-64,0,0,0.0749631 -3664,5603:249,-39,-64,0,0,0.0749631 -3665,5603:248,-38,-64,0,0,0.0749631 -3666,5603:247,-37,-64,0,0,0.0749631 -3667,5603:246,-36,-64,0,0,0.0749631 -3668,5603:245,-35,-64,0,0,0.0749631 -3669,5603:144,-34,-64,0,0,0.0749631 -3670,5603:143,-33,-64,0,0,0.0749631 -3671,5603:142,-32,-64,0,0,0.0749562 -3672,5603:141,-31,-64,0,0,0.0749562 -3673,5603:140,-30,-64,0,0,0.074949 -3674,5602:249,-29,-64,0,0,0.0749562 -3675,5602:248,-28,-64,0,0,0.0749562 -3676,5602:247,-27,-64,0,0,0.0749562 -3677,5602:246,-26,-64,0,0,0.0749562 -3678,5602:245,-25,-64,0,0,0.074949 -3679,5602:144,-24,-64,0,0,0.074949 -3680,5602:143,-23,-64,0,0,0.0749418 -3681,5602:142,-22,-64,0,0,0.0749275 -3682,5602:141,-21,-64,0,0,0.0749275 -3683,5602:140,-20,-64,0,0,0.0749205 -3684,5601:249,-19,-64,0,0,0.0749133 -3685,5601:248,-18,-64,0,0,0.0749062 -3686,5601:247,-17,-64,0,0,0.0749062 -3687,5601:246,-16,-64,0,0,0.0749062 -3688,5601:245,-15,-64,0,0,0.0749062 -3689,5601:144,-14,-64,0,0,0.0749133 -3690,5601:143,-13,-64,0,0,0.0749133 -3691,5601:142,-12,-64,0,0,0.0749062 -3692,5601:141,-11,-64,0,0,0.074892 -3693,5601:140,-10,-64,0,0,0.0748636 -3694,5600:249,-9,-64,0,0,0.0748493 -3695,5600:248,-8,-64,0,0,0.0748564 -3696,5600:247,-7,-64,0,0,0.0748777 -3697,5600:246,-6,-64,0,0,0.0748705 -3698,5600:245,-5,-64,0,0,0.0748636 -3699,5600:144,-4,-64,0,0,0.0748849 -3700,5600:143,-3,-64,0,0,0.0748849 -3701,5600:142,-2,-64,0,0,0.0748636 -3702,5600:141,-1,-64,0,0,0.074828 -3703,3600:141,0,-64,0,0,0.0748137 -3704,3600:141,1,-64,0,0,0.0748137 -3705,3600:142,2,-64,0,0,0.0748349 -3706,3600:143,3,-64,0,0,0.0748777 -3707,3600:144,4,-64,0,0,0.0748849 -3708,3600:245,5,-64,0,0,0.0748636 -3709,3600:246,6,-64,0,0,0.0748493 -3710,3600:247,7,-64,0,0,0.0748349 -3711,3600:248,8,-64,0,0,0.0748208 -3712,3600:249,9,-64,0,0,0.0748636 -3713,3601:140,10,-64,0,0,0.0749062 -3714,3601:141,11,-64,0,0,0.074949 -3715,3601:142,12,-64,0,0,0.075006 -3716,3601:143,13,-64,0,0,0.0749846 -3717,3601:144,14,-64,0,0,0.0749703 -3718,3601:245,15,-64,0,0,0.0749418 -3719,3601:246,16,-64,0,0,0.0749562 -3720,3601:247,17,-64,0,0,0.0749631 -3721,3601:248,18,-64,0,0,0.074949 -3722,3601:249,19,-64,0,0,0.0749562 -3723,3602:140,20,-64,0,0,0.0749562 -3724,3602:141,21,-64,0,0,0.0749418 -3725,3602:142,22,-64,0,0,0.0749205 -3726,3602:143,23,-64,0,0,0.074899 -3727,3602:144,24,-64,0,0,0.0749062 -3728,3602:245,25,-64,0,0,0.0749133 -3729,3602:246,26,-64,0,0,0.0749346 -3730,3602:247,27,-64,0,0,0.0749346 -3731,3602:248,28,-64,0,0,0.074949 -3732,3602:249,29,-64,0,0,0.0749631 -3733,3603:140,30,-64,0,0,0.0749703 -3734,3603:141,31,-64,0,0,0.0749703 -3735,3603:142,32,-64,0,0,0.0750273 -3736,3603:143,33,-64,0,0,0.0751344 -3737,3603:144,34,-64,0,0,0.07512 -3738,3603:245,35,-64,0,0,0.0750702 -3739,3603:246,36,-64,0,0,0.0750702 -3740,3603:247,37,-64,0,0,0.0750702 -3741,3603:248,38,-64,0,0,0.075063 -3742,3603:249,39,-64,0,0,0.0750773 -3743,3604:140,40,-64,0,0,0.0750488 -3744,3604:141,41,-64,0,0,0.075063 -3745,3604:142,42,-64,0,0,0.0750915 -3746,3607:140,70,-64,0,0,0.0826319 -3747,3607:141,71,-64,0,0,0.07969 -3748,3607:142,72,-64,0,0,0.0793591 -3749,3607:144,74,-64,0,0,0.0794792 -3750,3607:245,75,-64,0,0,0.0795694 -3751,3607:246,76,-64,0,0,0.079871 -3752,3607:247,77,-64,0,0,0.0808427 -3753,3607:248,78,-64,0,0,0.0858415 -3754,3607:249,79,-64,0,0,0.091212 -3755,3614:249,149,-64,0,0,0.0833198 -3756,3615:140,150,-64,0,0,0.0818642 -3757,3615:141,151,-64,0,0,0.0815327 -3758,3615:142,152,-64,0,0,0.0800599 -3759,3615:143,153,-64,0,0,0.0774806 -3760,3615:144,154,-64,0,0,0.0758658 -3761,3615:245,155,-64,0,0,0.0755135 -3762,3615:246,156,-64,0,0,0.075063 -3763,3615:247,157,-64,0,0,0.0750773 -3764,3615:248,158,-64,0,0,0.0750702 -3765,3615:249,159,-64,0,0,0.0750488 -3766,3616:140,160,-64,0,0,0.0750273 -3767,3616:141,161,-64,0,0,0.0750273 -3768,3616:142,162,-64,0,0,0.0750131 -3769,3616:143,163,-64,0,0,0.0750345 -3770,3616:144,164,-64,0,0,0.075063 -3771,3616:245,165,-64,0,0,0.0750416 -3772,3616:246,166,-64,0,0,0.0750488 -3773,3616:247,167,-64,0,0,0.0750488 -3774,3616:248,168,-64,0,0,0.0750416 -3775,3616:249,169,-64,0,0,0.0750416 -3776,3617:140,170,-64,0,0,0.0750345 -3777,3617:141,171,-64,0,0,0.0750273 -3778,3617:142,172,-64,0,0,0.0750131 -3779,3617:143,173,-64,0,0,0.075006 -3780,3617:144,174,-64,0,0,0.0749988 -3781,3617:245,175,-64,0,0,0.0750131 -3782,3617:246,176,-64,0,0,0.0750201 -3783,3617:247,177,-64,0,0,0.0750273 -3784,3617:248,178,-64,0,0,0.0750345 -3785,3617:249,179,-64,0,0,0.0750488 -3786,3618:140,180,-64,0,0,0.0750558 -3787,5618:130,-180,-63,0,0,0.0750558 -3788,5617:239,-179,-63,0,0,0.075063 -3789,5617:238,-178,-63,0,0,0.075063 -3790,5617:237,-177,-63,0,0,0.075063 -3791,5617:236,-176,-63,0,0,0.0750915 -3792,5617:235,-175,-63,0,0,0.0751128 -3793,5617:134,-174,-63,0,0,0.0750843 -3794,5617:133,-173,-63,0,0,0.075063 -3795,5617:132,-172,-63,0,0,0.0750558 -3796,5617:131,-171,-63,0,0,0.0750416 -3797,5617:130,-170,-63,0,0,0.0750416 -3798,5616:239,-169,-63,0,0,0.0750345 -3799,5616:238,-168,-63,0,0,0.0750273 -3800,5616:237,-167,-63,0,0,0.0750201 -3801,5616:236,-166,-63,0,0,0.075006 -3802,5616:235,-165,-63,0,0,0.0749988 -3803,5616:134,-164,-63,0,0,0.075006 -3804,5616:133,-163,-63,0,0,0.0750201 -3805,5616:132,-162,-63,0,0,0.0750345 -3806,5616:131,-161,-63,0,0,0.0750488 -3807,5616:130,-160,-63,0,0,0.075063 -3808,5615:239,-159,-63,0,0,0.0750702 -3809,5615:238,-158,-63,0,0,0.0750773 -3810,5615:237,-157,-63,0,0,0.0750843 -3811,5615:236,-156,-63,0,0,0.0750915 -3812,5615:235,-155,-63,0,0,0.0751059 -3813,5615:134,-154,-63,0,0,0.07512 -3814,5615:133,-153,-63,0,0,0.0751416 -3815,5615:132,-152,-63,0,0,0.0751558 -3816,5615:131,-151,-63,0,0,0.075163 -3817,5615:130,-150,-63,0,0,0.0751701 -3818,5614:239,-149,-63,0,0,0.075163 -3819,5614:238,-148,-63,0,0,0.0751771 -3820,5614:237,-147,-63,0,0,0.0751771 -3821,5614:236,-146,-63,0,0,0.0752057 -3822,5614:235,-145,-63,0,0,0.0752201 -3823,5614:134,-144,-63,0,0,0.0751915 -3824,5614:133,-143,-63,0,0,0.0752415 -3825,5614:132,-142,-63,0,0,0.0754779 -3826,5614:131,-141,-63,0,0,0.0773559 -3827,5614:130,-140,-63,0,0,0.0762918 -3828,5613:239,-139,-63,0,0,0.0759956 -3829,5613:238,-138,-63,0,0,0.076234 -3830,5613:237,-137,-63,0,0,0.0762918 -3831,5613:236,-136,-63,0,0,0.0760245 -3832,5613:235,-135,-63,0,0,0.0758443 -3833,5613:134,-134,-63,0,0,0.0752844 -3834,5613:133,-133,-63,0,0,0.0756213 -3835,5613:132,-132,-63,0,0,0.0794792 -3836,5613:131,-131,-63,0,0,0.0815017 -3837,5613:130,-130,-63,0,0,0.0837208 -3838,5612:239,-129,-63,0,0,0.0777084 -3839,5612:238,-128,-63,0,0,0.0780552 -3840,5612:237,-127,-63,0,0,0.0810952 -3841,5612:236,-126,-63,0,0,0.0799164 -3842,5612:235,-125,-63,0,0,0.0789621 -3843,5612:134,-124,-63,0,0,0.0798256 -3844,5612:133,-123,-63,0,0,0.0796599 -3845,5612:132,-122,-63,0,0,0.0788427 -3846,5612:131,-121,-63,0,0,0.0789472 -3847,5612:130,-120,-63,0,0,0.0788351 -3848,5611:239,-119,-63,0,0,0.0790816 -3849,5611:238,-118,-63,0,0,0.0799314 -3850,5611:237,-117,-63,0,0,0.0799088 -3851,5611:236,-116,-63,0,0,0.0799542 -3852,5611:235,-115,-63,0,0,0.0807589 -3853,5611:134,-114,-63,0,0,0.0820496 -3854,5611:133,-113,-63,0,0,0.0816636 -3855,5611:132,-112,-63,0,0,0.0810415 -3856,5611:131,-111,-63,0,0,0.0808048 -3857,5611:130,-110,-63,0,0,0.081302 -3858,5610:239,-109,-63,0,0,0.0811258 -3859,5610:238,-108,-63,0,0,0.081571 -3860,5610:237,-107,-63,0,0,0.0825851 -3861,5610:236,-106,-63,0,0,0.0837367 -3862,5610:235,-105,-63,0,0,0.0824918 -3863,5610:134,-104,-63,0,0,0.082819 -3864,5610:133,-103,-63,0,0,0.0817175 -3865,5610:132,-102,-63,0,0,0.0810569 -3866,5610:131,-101,-63,0,0,0.0793366 -3867,5610:130,-100,-63,0,0,0.0780405 -3868,5609:239,-99,-63,0,0,0.077532 -3869,5609:238,-98,-63,0,0,0.0752129 -3870,5609:237,-97,-63,0,0,0.0750987 -3871,5609:236,-96,-63,0,0,0.0750987 -3872,5609:235,-95,-63,0,0,0.0750416 -3873,5609:134,-94,-63,0,0,0.0750915 -3874,5609:133,-93,-63,0,0,0.0752631 -3875,5609:132,-92,-63,0,0,0.0753272 -3876,5609:131,-91,-63,0,0,0.0751272 -3877,5609:130,-90,-63,0,0,0.075006 -3878,5608:239,-89,-63,0,0,0.0750345 -3879,5608:238,-88,-63,0,0,0.0750131 -3880,5608:237,-87,-63,0,0,0.0750131 -3881,5608:236,-86,-63,0,0,0.0750345 -3882,5608:235,-85,-63,0,0,0.0750345 -3883,5608:134,-84,-63,0,0,0.0750488 -3884,5608:133,-83,-63,0,0,0.0750558 -3885,5608:132,-82,-63,0,0,0.0750915 -3886,5608:131,-81,-63,0,0,0.0750843 -3887,5608:130,-80,-63,0,0,0.0750702 -3888,5607:239,-79,-63,0,0,0.075063 -3889,5607:238,-78,-63,0,0,0.0750702 -3890,5607:237,-77,-63,0,0,0.075063 -3891,5607:236,-76,-63,0,0,0.0750702 -3892,5607:235,-75,-63,0,0,0.0750558 -3893,5607:134,-74,-63,0,0,0.075313 -3894,5607:133,-73,-63,0,0,0.075442 -3895,5607:132,-72,-63,0,0,0.0756141 -3896,5607:131,-71,-63,0,0,0.0761834 -3897,5607:130,-70,-63,0,0,0.076713 -3898,5606:238,-68,-63,0,0,0.0829126 -3899,5606:130,-60,-63,0,0,0.0759523 -3900,5605:239,-59,-63,0,0,0.0754275 -3901,5605:238,-58,-63,0,0,0.0751344 -3902,5605:237,-57,-63,0,0,0.0750416 -3903,5605:236,-56,-63,0,0,0.0750345 -3904,5605:235,-55,-63,0,0,0.0750416 -3905,5605:134,-54,-63,0,0,0.0750416 -3906,5605:133,-53,-63,0,0,0.0750201 -3907,5605:132,-52,-63,0,0,0.0749988 -3908,5605:131,-51,-63,0,0,0.0749988 -3909,5605:130,-50,-63,0,0,0.0749916 -3910,5604:239,-49,-63,0,0,0.0749916 -3911,5604:238,-48,-63,0,0,0.0749846 -3912,5604:237,-47,-63,0,0,0.0749775 -3913,5604:236,-46,-63,0,0,0.0749775 -3914,5604:235,-45,-63,0,0,0.0749775 -3915,5604:134,-44,-63,0,0,0.0749775 -3916,5604:133,-43,-63,0,0,0.0749703 -3917,5604:132,-42,-63,0,0,0.0749703 -3918,5604:131,-41,-63,0,0,0.0749703 -3919,5604:130,-40,-63,0,0,0.0749703 -3920,5603:239,-39,-63,0,0,0.0749703 -3921,5603:238,-38,-63,0,0,0.0749631 -3922,5603:237,-37,-63,0,0,0.0749631 -3923,5603:236,-36,-63,0,0,0.0749631 -3924,5603:235,-35,-63,0,0,0.0749631 -3925,5603:134,-34,-63,0,0,0.0749631 -3926,5603:133,-33,-63,0,0,0.0749562 -3927,5603:132,-32,-63,0,0,0.0749562 -3928,5603:131,-31,-63,0,0,0.0749562 -3929,5603:130,-30,-63,0,0,0.0749631 -3930,5602:239,-29,-63,0,0,0.0749631 -3931,5602:238,-28,-63,0,0,0.0749631 -3932,5602:237,-27,-63,0,0,0.0749631 -3933,5602:236,-26,-63,0,0,0.0749631 -3934,5602:235,-25,-63,0,0,0.0749562 -3935,5602:134,-24,-63,0,0,0.0749562 -3936,5602:133,-23,-63,0,0,0.074949 -3937,5602:132,-22,-63,0,0,0.0749418 -3938,5602:131,-21,-63,0,0,0.0749346 -3939,5602:130,-20,-63,0,0,0.0749275 -3940,5601:239,-19,-63,0,0,0.0749205 -3941,5601:238,-18,-63,0,0,0.0749062 -3942,5601:237,-17,-63,0,0,0.074899 -3943,5601:236,-16,-63,0,0,0.074892 -3944,5601:235,-15,-63,0,0,0.0748849 -3945,5601:134,-14,-63,0,0,0.074892 -3946,5601:133,-13,-63,0,0,0.074892 -3947,5601:132,-12,-63,0,0,0.0748849 -3948,5601:131,-11,-63,0,0,0.0748777 -3949,5601:130,-10,-63,0,0,0.0748705 -3950,5600:239,-9,-63,0,0,0.0748705 -3951,5600:238,-8,-63,0,0,0.0748636 -3952,5600:237,-7,-63,0,0,0.0748564 -3953,5600:236,-6,-63,0,0,0.0748493 -3954,5600:235,-5,-63,0,0,0.0748349 -3955,5600:134,-4,-63,0,0,0.074828 -3956,5600:133,-3,-63,0,0,0.0748137 -3957,5600:132,-2,-63,0,0,0.0748137 -3958,5600:131,-1,-63,0,0,0.074828 -3959,3600:131,0,-63,0,0,0.0748349 -3960,3600:131,1,-63,0,0,0.0748705 -3961,3600:132,2,-63,0,0,0.0748349 -3962,3600:133,3,-63,0,0,0.0748208 -3963,3600:134,4,-63,0,0,0.0748208 -3964,3600:235,5,-63,0,0,0.074828 -3965,3600:236,6,-63,0,0,0.074828 -3966,3600:237,7,-63,0,0,0.0748564 -3967,3600:238,8,-63,0,0,0.0748493 -3968,3600:239,9,-63,0,0,0.0748564 -3969,3601:130,10,-63,0,0,0.074899 -3970,3601:131,11,-63,0,0,0.0749275 -3971,3601:132,12,-63,0,0,0.074949 -3972,3601:133,13,-63,0,0,0.0749562 -3973,3601:134,14,-63,0,0,0.0749631 -3974,3601:235,15,-63,0,0,0.0749418 -3975,3601:236,16,-63,0,0,0.0749418 -3976,3601:237,17,-63,0,0,0.0749346 -3977,3601:238,18,-63,0,0,0.0749133 -3978,3601:239,19,-63,0,0,0.0749275 -3979,3602:130,20,-63,0,0,0.0749205 -3980,3602:131,21,-63,0,0,0.0749133 -3981,3602:132,22,-63,0,0,0.0749133 -3982,3602:133,23,-63,0,0,0.0749205 -3983,3602:134,24,-63,0,0,0.0749205 -3984,3602:235,25,-63,0,0,0.0749205 -3985,3602:236,26,-63,0,0,0.0749275 -3986,3602:237,27,-63,0,0,0.0749275 -3987,3602:238,28,-63,0,0,0.0749346 -3988,3602:239,29,-63,0,0,0.0749562 -3989,3603:130,30,-63,0,0,0.0749562 -3990,3603:131,31,-63,0,0,0.0749775 -3991,3603:132,32,-63,0,0,0.0749916 -3992,3603:133,33,-63,0,0,0.0750345 -3993,3603:134,34,-63,0,0,0.0750345 -3994,3603:235,35,-63,0,0,0.0750416 -3995,3603:236,36,-63,0,0,0.0750702 -3996,3603:237,37,-63,0,0,0.0750488 -3997,3603:238,38,-63,0,0,0.0750345 -3998,3603:239,39,-63,0,0,0.0750345 -3999,3604:130,40,-63,0,0,0.0750416 -4000,3604:131,41,-63,0,0,0.0750558 -4001,3604:132,42,-63,0,0,0.0750558 -4002,3604:133,43,-63,0,0,0.0750488 -4003,3604:134,44,-63,0,0,0.0750558 -4004,3604:235,45,-63,0,0,0.0750201 -4005,3604:236,46,-63,0,0,0.0747568 -4006,3604:238,48,-63,0,0,0.0815402 -4007,3606:235,65,-63,0,0,0.0795694 -4008,3606:236,66,-63,0,0,0.0792915 -4009,3606:237,67,-63,0,0,0.0787159 -4010,3606:238,68,-63,0,0,0.0776718 -4011,3606:239,69,-63,0,0,0.0785446 -4012,3607:130,70,-63,0,0,0.07751 -4013,3607:131,71,-63,0,0,0.0774658 -4014,3607:132,72,-63,0,0,0.0777307 -4015,3607:134,74,-63,0,0,0.0773852 -4016,3607:235,75,-63,0,0,0.0774584 -4017,3607:236,76,-63,0,0,0.0788276 -4018,3607:237,77,-63,0,0,0.0794342 -4019,3607:238,78,-63,0,0,0.081302 -4020,3607:239,79,-63,0,0,0.0837367 -4021,3608:130,80,-63,0,0,0.0864804 -4022,3608:131,81,-63,0,0,0.0908889 -4023,3614:236,146,-63,0,0,0.0848948 -4024,3614:237,147,-63,0,0,0.0829987 -4025,3614:238,148,-63,0,0,0.0812406 -4026,3614:239,149,-63,0,0,0.0810415 -4027,3615:130,150,-63,0,0,0.0785893 -4028,3615:131,151,-63,0,0,0.0766257 -4029,3615:132,152,-63,0,0,0.0750843 -4030,3615:133,153,-63,0,0,0.0750987 -4031,3615:134,154,-63,0,0,0.0750987 -4032,3615:235,155,-63,0,0,0.0750843 -4033,3615:236,156,-63,0,0,0.0750987 -4034,3615:237,157,-63,0,0,0.0750843 -4035,3615:238,158,-63,0,0,0.0750273 -4036,3615:239,159,-63,0,0,0.0749988 -4037,3616:130,160,-63,0,0,0.075006 -4038,3616:131,161,-63,0,0,0.0750131 -4039,3616:132,162,-63,0,0,0.0750201 -4040,3616:133,163,-63,0,0,0.0750201 -4041,3616:134,164,-63,0,0,0.0749346 -4042,3616:235,165,-63,0,0,0.0751843 -4043,3616:236,166,-63,0,0,0.0750416 -4044,3616:237,167,-63,0,0,0.0750345 -4045,3616:238,168,-63,0,0,0.0750345 -4046,3616:239,169,-63,0,0,0.0750345 -4047,3617:130,170,-63,0,0,0.0750273 -4048,3617:131,171,-63,0,0,0.0750273 -4049,3617:132,172,-63,0,0,0.0750273 -4050,3617:133,173,-63,0,0,0.0750273 -4051,3617:134,174,-63,0,0,0.0750201 -4052,3617:235,175,-63,0,0,0.0750131 -4053,3617:236,176,-63,0,0,0.0750345 -4054,3617:237,177,-63,0,0,0.0750416 -4055,3617:238,178,-63,0,0,0.0750488 -4056,3617:239,179,-63,0,0,0.0750558 -4057,3618:130,180,-63,0,0,0.0750558 -4058,5618:120,-180,-62,0,0,0.0750416 -4059,5617:229,-179,-62,0,0,0.0750416 -4060,5617:228,-178,-62,0,0,0.075063 -4061,5617:227,-177,-62,0,0,0.0751059 -4062,5617:226,-176,-62,0,0,0.0752057 -4063,5617:225,-175,-62,0,0,0.07512 -4064,5617:124,-174,-62,0,0,0.0750773 -4065,5617:123,-173,-62,0,0,0.075063 -4066,5617:122,-172,-62,0,0,0.0750488 -4067,5617:121,-171,-62,0,0,0.0750416 -4068,5617:120,-170,-62,0,0,0.0750273 -4069,5616:229,-169,-62,0,0,0.0750201 -4070,5616:228,-168,-62,0,0,0.0750131 -4071,5616:227,-167,-62,0,0,0.0750131 -4072,5616:226,-166,-62,0,0,0.0750131 -4073,5616:225,-165,-62,0,0,0.0750131 -4074,5616:124,-164,-62,0,0,0.0750201 -4075,5616:123,-163,-62,0,0,0.0750345 -4076,5616:122,-162,-62,0,0,0.0750488 -4077,5616:121,-161,-62,0,0,0.0750488 -4078,5616:120,-160,-62,0,0,0.075063 -4079,5615:229,-159,-62,0,0,0.0750773 -4080,5615:228,-158,-62,0,0,0.0750843 -4081,5615:227,-157,-62,0,0,0.0750915 -4082,5615:226,-156,-62,0,0,0.0750987 -4083,5615:225,-155,-62,0,0,0.0751128 -4085,5615:123,-153,-62,0,0,0.0751344 -4086,5615:122,-152,-62,0,0,0.0751486 -4087,5615:121,-151,-62,0,0,0.0751558 -4088,5615:120,-150,-62,0,0,0.075163 -4089,5614:229,-149,-62,0,0,0.0751701 -4090,5614:228,-148,-62,0,0,0.0751843 -4091,5614:227,-147,-62,0,0,0.0751843 -4092,5614:226,-146,-62,0,0,0.0751987 -4093,5614:225,-145,-62,0,0,0.0753703 -4094,5614:124,-144,-62,0,0,0.0751987 -4095,5614:123,-143,-62,0,0,0.0752631 -4096,5614:122,-142,-62,0,0,0.0757435 -4097,5614:121,-141,-62,0,0,0.0783144 -4098,5614:120,-140,-62,0,0,0.0788128 -4099,5613:229,-139,-62,0,0,0.0773118 -4100,5613:228,-138,-62,0,0,0.0775465 -4101,5613:227,-137,-62,0,0,0.0817175 -4102,5613:226,-136,-62,0,0,0.0809803 -4103,5613:225,-135,-62,0,0,0.082983 -4104,5613:124,-134,-62,0,0,0.0855597 -4105,5613:123,-133,-62,0,0,0.0837997 -4106,5613:122,-132,-62,0,0,0.078448 -4107,5613:121,-131,-62,0,0,0.0803405 -4108,5613:120,-130,-62,0,0,0.0836184 -4109,5612:229,-129,-62,0,0,0.0854633 -4110,5612:228,-128,-62,0,0,0.0803252 -4111,5612:227,-127,-62,0,0,0.0811716 -4112,5612:226,-126,-62,0,0,0.0819955 -4113,5612:225,-125,-62,0,0,0.0813559 -4114,5612:124,-124,-62,0,0,0.0810263 -4115,5612:123,-123,-62,0,0,0.0807817 -4116,5612:122,-122,-62,0,0,0.0809192 -4117,5612:121,-121,-62,0,0,0.0812254 -4118,5612:120,-120,-62,0,0,0.0816481 -4119,5611:229,-119,-62,0,0,0.0829987 -4120,5611:228,-118,-62,0,0,0.0849747 -4121,5611:227,-117,-62,0,0,0.0844726 -4122,5611:226,-116,-62,0,0,0.0840287 -4123,5611:225,-115,-62,0,0,0.0869933 -4124,5611:124,-114,-62,0,0,0.0839655 -4125,5611:123,-113,-62,0,0,0.0840526 -4126,5611:122,-112,-62,0,0,0.0841712 -4127,5611:121,-111,-62,0,0,0.0825308 -4128,5611:120,-110,-62,0,0,0.0823131 -4129,5610:229,-109,-62,0,0,0.0817405 -4130,5610:228,-108,-62,0,0,0.0815557 -4131,5610:227,-107,-62,0,0,0.083116 -4132,5610:226,-106,-62,0,0,0.0863913 -4133,5610:225,-105,-62,0,0,0.0846556 -4134,5610:124,-104,-62,0,0,0.0829205 -4135,5610:123,-103,-62,0,0,0.0817947 -4136,5610:122,-102,-62,0,0,0.0813252 -4137,5610:121,-101,-62,0,0,0.0804847 -4138,5610:120,-100,-62,0,0,0.0766983 -4139,5609:229,-99,-62,0,0,0.0765457 -4140,5609:228,-98,-62,0,0,0.0750345 -4141,5609:227,-97,-62,0,0,0.0750702 -4142,5609:226,-96,-62,0,0,0.0750488 -4143,5609:225,-95,-62,0,0,0.0754492 -4144,5609:124,-94,-62,0,0,0.0756285 -4145,5609:123,-93,-62,0,0,0.0755998 -4146,5609:122,-92,-62,0,0,0.0752916 -4147,5609:121,-91,-62,0,0,0.0753489 -4148,5609:120,-90,-62,0,0,0.0751771 -4149,5608:229,-89,-62,0,0,0.0750773 -4150,5608:228,-88,-62,0,0,0.0751344 -4151,5608:227,-87,-62,0,0,0.0752986 -4152,5608:226,-86,-62,0,0,0.0750488 -4153,5608:225,-85,-62,0,0,0.075729 -4154,5608:124,-84,-62,0,0,0.075837 -4155,5608:123,-83,-62,0,0,0.0758515 -4156,5608:122,-82,-62,0,0,0.0758298 -4157,5608:121,-81,-62,0,0,0.0763427 -4158,5608:120,-80,-62,0,0,0.0764803 -4159,5607:229,-79,-62,0,0,0.0766912 -4160,5607:228,-78,-62,0,0,0.0772899 -4161,5607:227,-77,-62,0,0,0.0756787 -4162,5607:226,-76,-62,0,0,0.0754061 -4163,5607:225,-75,-62,0,0,0.0756787 -4164,5607:124,-74,-62,0,0,0.0764949 -4165,5607:123,-73,-62,0,0,0.0765457 -4166,5607:122,-72,-62,0,0,0.0772092 -4167,5607:121,-71,-62,0,0,0.0769462 -4168,5607:120,-70,-62,0,0,0.0766912 -4169,5606:229,-69,-62,0,0,0.0785299 -4170,5606:120,-60,-62,0,0,0.0774217 -4171,5605:229,-59,-62,0,0,0.0752487 -4172,5605:228,-58,-62,0,0,0.0751344 -4173,5605:227,-57,-62,0,0,0.0751128 -4174,5605:226,-56,-62,0,0,0.0750558 -4175,5605:225,-55,-62,0,0,0.0750416 -4176,5605:124,-54,-62,0,0,0.0750488 -4177,5605:123,-53,-62,0,0,0.0750273 -4178,5605:122,-52,-62,0,0,0.075006 -4179,5605:121,-51,-62,0,0,0.0749988 -4180,5605:120,-50,-62,0,0,0.0749916 -4181,5604:229,-49,-62,0,0,0.0749846 -4182,5604:228,-48,-62,0,0,0.0749846 -4183,5604:227,-47,-62,0,0,0.0749775 -4184,5604:226,-46,-62,0,0,0.0749703 -4185,5604:225,-45,-62,0,0,0.0749775 -4186,5604:124,-44,-62,0,0,0.0749703 -4187,5604:123,-43,-62,0,0,0.0749703 -4188,5604:122,-42,-62,0,0,0.0749775 -4189,5604:121,-41,-62,0,0,0.0749775 -4190,5604:120,-40,-62,0,0,0.0749703 -4191,5603:229,-39,-62,0,0,0.0749703 -4192,5603:228,-38,-62,0,0,0.0749631 -4193,5603:227,-37,-62,0,0,0.0749631 -4194,5603:226,-36,-62,0,0,0.0749631 -4195,5603:225,-35,-62,0,0,0.0749631 -4196,5603:124,-34,-62,0,0,0.0749631 -4197,5603:123,-33,-62,0,0,0.0749631 -4198,5603:122,-32,-62,0,0,0.0749631 -4199,5603:121,-31,-62,0,0,0.0749703 -4200,5603:120,-30,-62,0,0,0.0749631 -4201,5602:229,-29,-62,0,0,0.0749631 -4202,5602:228,-28,-62,0,0,0.0749631 -4203,5602:227,-27,-62,0,0,0.0749631 -4204,5602:226,-26,-62,0,0,0.0749631 -4205,5602:225,-25,-62,0,0,0.0749631 -4206,5602:124,-24,-62,0,0,0.0749562 -4207,5602:123,-23,-62,0,0,0.074949 -4208,5602:122,-22,-62,0,0,0.074949 -4209,5602:121,-21,-62,0,0,0.0749346 -4210,5602:120,-20,-62,0,0,0.0749275 -4211,5601:229,-19,-62,0,0,0.0749205 -4212,5601:228,-18,-62,0,0,0.0749062 -4213,5601:227,-17,-62,0,0,0.074892 -4214,5601:226,-16,-62,0,0,0.0748777 -4215,5601:225,-15,-62,0,0,0.0748705 -4216,5601:124,-14,-62,0,0,0.0748705 -4217,5601:123,-13,-62,0,0,0.0748777 -4218,5601:122,-12,-62,0,0,0.0748777 -4219,5601:121,-11,-62,0,0,0.0748705 -4220,5601:120,-10,-62,0,0,0.0748705 -4221,5600:229,-9,-62,0,0,0.0748636 -4222,5600:228,-8,-62,0,0,0.0748636 -4223,5600:227,-7,-62,0,0,0.0748636 -4224,5600:226,-6,-62,0,0,0.0748705 -4225,5600:225,-5,-62,0,0,0.0748705 -4226,5600:124,-4,-62,0,0,0.0748564 -4227,5600:123,-3,-62,0,0,0.0748421 -4228,5600:122,-2,-62,0,0,0.0748349 -4229,5600:121,-1,-62,0,0,0.0748349 -4230,3600:121,0,-62,0,0,0.0748421 -4231,3600:121,1,-62,0,0,0.0748493 -4232,3600:122,2,-62,0,0,0.074828 -4233,3600:123,3,-62,0,0,0.0748349 -4234,3600:124,4,-62,0,0,0.074828 -4235,3600:225,5,-62,0,0,0.0748564 -4236,3600:226,6,-62,0,0,0.074828 -4237,3600:227,7,-62,0,0,0.0748421 -4238,3600:228,8,-62,0,0,0.0748564 -4239,3600:229,9,-62,0,0,0.0748705 -4240,3601:120,10,-62,0,0,0.0748777 -4241,3601:121,11,-62,0,0,0.0749133 -4242,3601:122,12,-62,0,0,0.0749205 -4243,3601:123,13,-62,0,0,0.0749205 -4244,3601:124,14,-62,0,0,0.0749133 -4245,3601:225,15,-62,0,0,0.0749133 -4246,3601:226,16,-62,0,0,0.0749133 -4247,3601:227,17,-62,0,0,0.0749062 -4248,3601:228,18,-62,0,0,0.0749062 -4249,3601:229,19,-62,0,0,0.0749062 -4250,3602:120,20,-62,0,0,0.074899 -4251,3602:121,21,-62,0,0,0.0749062 -4252,3602:122,22,-62,0,0,0.0749133 -4253,3602:123,23,-62,0,0,0.0749133 -4254,3602:124,24,-62,0,0,0.0749062 -4255,3602:225,25,-62,0,0,0.0749133 -4256,3602:226,26,-62,0,0,0.0749133 -4257,3602:227,27,-62,0,0,0.0749133 -4258,3602:228,28,-62,0,0,0.0749275 -4259,3602:229,29,-62,0,0,0.0749418 -4260,3603:120,30,-62,0,0,0.0749631 -4261,3603:121,31,-62,0,0,0.0749775 -4262,3603:122,32,-62,0,0,0.0749846 -4263,3603:123,33,-62,0,0,0.0750131 -4264,3603:124,34,-62,0,0,0.0750416 -4265,3603:225,35,-62,0,0,0.0750345 -4266,3603:226,36,-62,0,0,0.0749846 -4267,3603:227,37,-62,0,0,0.0749916 -4268,3603:228,38,-62,0,0,0.0749988 -4269,3603:229,39,-62,0,0,0.075006 -4270,3604:120,40,-62,0,0,0.0750201 -4271,3604:121,41,-62,0,0,0.0750131 -4272,3604:122,42,-62,0,0,0.0750131 -4273,3604:123,43,-62,0,0,0.0750201 -4274,3604:124,44,-62,0,0,0.0750201 -4275,3604:225,45,-62,0,0,0.075006 -4276,3604:226,46,-62,0,0,0.0749988 -4277,3604:227,47,-62,0,0,0.0766983 -4278,3604:228,48,-62,0,0,0.0794943 -4279,3605:120,50,-62,0,0,0.0826631 -4280,3605:228,58,-62,0,0,0.0752844 -4281,3605:229,59,-62,0,0,0.0751915 -4282,3606:120,60,-62,0,0,0.0751128 -4283,3606:121,61,-62,0,0,0.0752343 -4284,3606:122,62,-62,0,0,0.0756141 -4285,3606:123,63,-62,0,0,0.0759956 -4286,3606:124,64,-62,0,0,0.077063 -4287,3606:225,65,-62,0,0,0.0767567 -4288,3606:226,66,-62,0,0,0.0762918 -4289,3606:227,67,-62,0,0,0.0752631 -4290,3606:228,68,-62,0,0,0.0748849 -4291,3606:229,69,-62,0,0,0.0749631 -4292,3607:120,70,-62,0,0,0.0749846 -4293,3607:121,71,-62,0,0,0.0751059 -4294,3607:122,72,-62,0,0,0.0750558 -4295,3607:124,74,-62,0,0,0.0752415 -4296,3607:225,75,-62,0,0,0.0774584 -4297,3607:226,76,-62,0,0,0.0774439 -4298,3607:227,77,-62,0,0,0.077797 -4299,3607:228,78,-62,0,0,0.0788502 -4300,3607:229,79,-62,0,0,0.0791417 -4301,3608:120,80,-62,0,0,0.0805 -4302,3608:121,81,-62,0,0,0.0830691 -4303,3608:122,82,-62,0,0,0.0904737 -4304,3614:225,145,-62,0,0,0.0787978 -4305,3614:226,146,-62,0,0,0.0792615 -4306,3614:227,147,-62,0,0,0.0751128 -4307,3614:228,148,-62,0,0,0.07512 -4308,3614:229,149,-62,0,0,0.075063 -4309,3615:120,150,-62,0,0,0.0750702 -4310,3615:121,151,-62,0,0,0.0750773 -4311,3615:122,152,-62,0,0,0.0750915 -4312,3615:123,153,-62,0,0,0.0750773 -4313,3615:124,154,-62,0,0,0.0750773 -4314,3615:225,155,-62,0,0,0.075063 -4315,3615:226,156,-62,0,0,0.0750488 -4316,3615:227,157,-62,0,0,0.0750201 -4317,3615:228,158,-62,0,0,0.0749988 -4318,3615:229,159,-62,0,0,0.075006 -4319,3616:120,160,-62,0,0,0.0750201 -4320,3616:121,161,-62,0,0,0.0750131 -4321,3616:122,162,-62,0,0,0.075006 -4322,3616:123,163,-62,0,0,0.075006 -4323,3616:124,164,-62,0,0,0.0750345 -4324,3616:225,165,-62,0,0,0.0750416 -4325,3616:226,166,-62,0,0,0.0750488 -4326,3616:227,167,-62,0,0,0.0750488 -4327,3616:228,168,-62,0,0,0.0750416 -4328,3616:229,169,-62,0,0,0.0750345 -4329,3617:120,170,-62,0,0,0.0750273 -4330,3617:121,171,-62,0,0,0.0750345 -4331,3617:122,172,-62,0,0,0.0750416 -4332,3617:123,173,-62,0,0,0.0750416 -4333,3617:124,174,-62,0,0,0.0750416 -4334,3617:225,175,-62,0,0,0.0750345 -4335,3617:226,176,-62,0,0,0.0750273 -4336,3617:227,177,-62,0,0,0.0750273 -4337,3617:228,178,-62,0,0,0.0750488 -4338,3617:229,179,-62,0,0,0.0750488 -4339,3618:120,180,-62,0,0,0.0750416 -4340,5618:110,-180,-61,0,0,0.075063 -4341,5617:219,-179,-61,0,0,0.07512 -4342,5617:218,-178,-61,0,0,0.0752986 -4343,5617:217,-177,-61,0,0,0.0757507 -4344,5617:216,-176,-61,0,0,0.0755854 -4345,5617:215,-175,-61,0,0,0.0752916 -4346,5617:114,-174,-61,0,0,0.0750702 -4347,5617:113,-173,-61,0,0,0.075063 -4348,5617:112,-172,-61,0,0,0.0750416 -4349,5617:111,-171,-61,0,0,0.0750273 -4350,5617:110,-170,-61,0,0,0.0750131 -4351,5616:219,-169,-61,0,0,0.075006 -4352,5616:218,-168,-61,0,0,0.0749988 -4353,5616:217,-167,-61,0,0,0.0749988 -4354,5616:216,-166,-61,0,0,0.075006 -4355,5616:215,-165,-61,0,0,0.0750131 -4356,5616:114,-164,-61,0,0,0.0750201 -4357,5616:113,-163,-61,0,0,0.0750345 -4358,5616:112,-162,-61,0,0,0.0750488 -4359,5616:111,-161,-61,0,0,0.0750558 -4360,5616:110,-160,-61,0,0,0.0750702 -4361,5615:219,-159,-61,0,0,0.0750773 -4362,5615:218,-158,-61,0,0,0.0750843 -4363,5615:217,-157,-61,0,0,0.0750843 -4364,5615:216,-156,-61,0,0,0.0750915 -4365,5615:215,-155,-61,0,0,0.0751558 -4366,5615:114,-154,-61,0,0,0.0752631 -4367,5615:113,-153,-61,0,0,0.0752916 -4368,5615:112,-152,-61,0,0,0.0752273 -4369,5615:111,-151,-61,0,0,0.0751915 -4370,5615:110,-150,-61,0,0,0.0752487 -4371,5614:219,-149,-61,0,0,0.0754779 -4372,5614:218,-148,-61,0,0,0.0753489 -4373,5614:217,-147,-61,0,0,0.0754921 -4374,5614:216,-146,-61,0,0,0.0758298 -4375,5614:215,-145,-61,0,0,0.0765457 -4376,5614:114,-144,-61,0,0,0.0781588 -4377,5614:113,-143,-61,0,0,0.0796523 -4378,5614:112,-142,-61,0,0,0.0805761 -4379,5614:111,-141,-61,0,0,0.0809803 -4380,5614:110,-140,-61,0,0,0.0814787 -4381,5613:219,-139,-61,0,0,0.0810646 -4382,5613:218,-138,-61,0,0,0.082593 -4383,5613:217,-137,-61,0,0,0.0850864 -4384,5613:216,-136,-61,0,0,0.0848468 -4385,5613:215,-135,-61,0,0,0.0847113 -4386,5613:114,-134,-61,0,0,0.0870421 -4387,5613:113,-133,-61,0,0,0.0873121 -4388,5613:112,-132,-61,0,0,0.0861402 -4389,5613:111,-131,-61,0,0,0.0817483 -4390,5613:110,-130,-61,0,0,0.082819 -4391,5612:219,-129,-61,0,0,0.0875743 -4392,5612:218,-128,-61,0,0,0.0855195 -4393,5612:217,-127,-61,0,0,0.0855756 -4394,5612:216,-126,-61,0,0,0.0850225 -4395,5612:215,-125,-61,0,0,0.0828892 -4396,5612:114,-124,-61,0,0,0.0830064 -4397,5612:113,-123,-61,0,0,0.0907447 -4398,5612:112,-122,-61,0,0,0.092627 -4399,5612:111,-121,-61,0,0,0.0867893 -4400,5612:110,-120,-61,0,0,0.0863913 -4401,5611:219,-119,-61,0,0,0.0897912 -4402,5611:218,-118,-61,0,0,0.090626 -4403,5611:217,-117,-61,0,0,0.0855837 -4404,5611:216,-116,-61,0,0,0.0881755 -4405,5611:215,-115,-61,0,0,0.0911184 -4406,5611:114,-114,-61,0,0,0.0909399 -4407,5611:113,-113,-61,0,0,0.0931205 -4408,5611:112,-112,-61,0,0,0.0903556 -4409,5611:111,-111,-61,0,0,0.0860997 -4410,5611:110,-110,-61,0,0,0.0860432 -4411,5610:219,-109,-61,0,0,0.086132 -4412,5610:218,-108,-61,0,0,0.0852548 -4413,5610:217,-107,-61,0,0,0.0890384 -4414,5610:216,-106,-61,0,0,0.090533 -4415,5610:215,-105,-61,0,0,0.0857849 -4416,5610:114,-104,-61,0,0,0.0862617 -4417,5610:113,-103,-61,0,0,0.0854793 -4418,5610:112,-102,-61,0,0,0.0835869 -4419,5610:111,-101,-61,0,0,0.0823363 -4420,5610:110,-100,-61,0,0,0.079007 -4421,5609:219,-99,-61,0,0,0.0764296 -4422,5609:218,-98,-61,0,0,0.077297 -4423,5609:217,-97,-61,0,0,0.0780184 -4424,5609:216,-96,-61,0,0,0.0777158 -4425,5609:215,-95,-61,0,0,0.0758298 -4426,5609:114,-94,-61,0,0,0.0769168 -4427,5609:113,-93,-61,0,0,0.0765384 -4428,5609:112,-92,-61,0,0,0.0754203 -4429,5609:111,-91,-61,0,0,0.0755998 -4430,5609:110,-90,-61,0,0,0.0759668 -4431,5608:219,-89,-61,0,0,0.0773485 -4432,5608:218,-88,-61,0,0,0.0854151 -4433,5608:217,-87,-61,0,0,0.0874924 -4434,5608:216,-86,-61,0,0,0.0807817 -4435,5608:215,-85,-61,0,0,0.0769973 -4436,5608:114,-84,-61,0,0,0.0758225 -4437,5608:113,-83,-61,0,0,0.0756932 -4438,5608:112,-82,-61,0,0,0.0762267 -4439,5608:111,-81,-61,0,0,0.0762196 -4440,5608:110,-80,-61,0,0,0.0758946 -4441,5607:219,-79,-61,0,0,0.0758443 -4442,5607:218,-78,-61,0,0,0.0760245 -4443,5607:217,-77,-61,0,0,0.0765893 -4444,5607:216,-76,-61,0,0,0.0770338 -4445,5607:215,-75,-61,0,0,0.0768514 -4446,5607:114,-74,-61,0,0,0.0789397 -4447,5607:113,-73,-61,0,0,0.0826319 -4448,5607:112,-72,-61,0,0,0.0796146 -4449,5607:111,-71,-61,0,0,0.0780184 -4450,5607:110,-70,-61,0,0,0.0775613 -4451,5606:219,-69,-61,0,0,0.0772899 -4452,5606:218,-68,-61,0,0,0.0771215 -4453,5606:217,-67,-61,0,0,0.0806293 -4454,5606:110,-60,-61,0,0,0.0801433 -4455,5605:219,-59,-61,0,0,0.0774806 -4456,5605:218,-58,-61,0,0,0.0753344 -4457,5605:217,-57,-61,0,0,0.0752631 -4458,5605:216,-56,-61,0,0,0.0751915 -4459,5605:215,-55,-61,0,0,0.0750915 -4460,5605:114,-54,-61,0,0,0.0750416 -4461,5605:113,-53,-61,0,0,0.0750416 -4462,5605:112,-52,-61,0,0,0.0750201 -4463,5605:111,-51,-61,0,0,0.0749988 -4464,5605:110,-50,-61,0,0,0.0749846 -4465,5604:219,-49,-61,0,0,0.0749775 -4466,5604:218,-48,-61,0,0,0.0749775 -4467,5604:217,-47,-61,0,0,0.0749631 -4468,5604:216,-46,-61,0,0,0.0749703 -4469,5604:215,-45,-61,0,0,0.0749775 -4470,5604:114,-44,-61,0,0,0.0749775 -4471,5604:113,-43,-61,0,0,0.0749703 -4472,5604:112,-42,-61,0,0,0.0749703 -4473,5604:111,-41,-61,0,0,0.0749703 -4474,5604:110,-40,-61,0,0,0.0749703 -4475,5603:219,-39,-61,0,0,0.0749703 -4476,5603:218,-38,-61,0,0,0.0749703 -4477,5603:217,-37,-61,0,0,0.0749703 -4478,5603:216,-36,-61,0,0,0.0749703 -4479,5603:215,-35,-61,0,0,0.0749703 -4480,5603:114,-34,-61,0,0,0.0749703 -4481,5603:113,-33,-61,0,0,0.0749703 -4482,5603:112,-32,-61,0,0,0.0749703 -4483,5603:111,-31,-61,0,0,0.0749703 -4484,5603:110,-30,-61,0,0,0.0749703 -4485,5602:219,-29,-61,0,0,0.0749703 -4486,5602:218,-28,-61,0,0,0.0749703 -4487,5602:217,-27,-61,0,0,0.0749703 -4488,5602:216,-26,-61,0,0,0.0749631 -4489,5602:215,-25,-61,0,0,0.0749631 -4490,5602:114,-24,-61,0,0,0.0749562 -4491,5602:113,-23,-61,0,0,0.0749562 -4492,5602:112,-22,-61,0,0,0.0749418 -4493,5602:111,-21,-61,0,0,0.0749346 -4494,5602:110,-20,-61,0,0,0.0749275 -4495,5601:219,-19,-61,0,0,0.0749205 -4496,5601:218,-18,-61,0,0,0.0749062 -4497,5601:217,-17,-61,0,0,0.074892 -4498,5601:216,-16,-61,0,0,0.0748705 -4499,5601:215,-15,-61,0,0,0.0748636 -4500,5601:114,-14,-61,0,0,0.0748705 -4501,5601:113,-13,-61,0,0,0.0748705 -4502,5601:112,-12,-61,0,0,0.0748705 -4503,5601:111,-11,-61,0,0,0.0748636 -4504,5601:110,-10,-61,0,0,0.0748705 -4505,5600:219,-9,-61,0,0,0.0748705 -4506,5600:218,-8,-61,0,0,0.0748705 -4507,5600:217,-7,-61,0,0,0.0748636 -4508,5600:216,-6,-61,0,0,0.0748636 -4509,5600:215,-5,-61,0,0,0.0748777 -4510,5600:114,-4,-61,0,0,0.0748777 -4511,5600:113,-3,-61,0,0,0.0748705 -4512,5600:112,-2,-61,0,0,0.0748636 -4513,5600:111,-1,-61,0,0,0.0748636 -4514,3600:111,0,-61,0,0,0.0748636 -4515,3600:111,1,-61,0,0,0.0748564 -4516,3600:112,2,-61,0,0,0.0748493 -4517,3600:113,3,-61,0,0,0.0748493 -4518,3600:114,4,-61,0,0,0.0748421 -4519,3600:215,5,-61,0,0,0.0748705 -4520,3600:216,6,-61,0,0,0.0748564 -4521,3600:217,7,-61,0,0,0.0748493 -4522,3600:218,8,-61,0,0,0.0748493 -4523,3600:219,9,-61,0,0,0.0748636 -4524,3601:110,10,-61,0,0,0.0748705 -4525,3601:111,11,-61,0,0,0.0748849 -4526,3601:112,12,-61,0,0,0.0748777 -4527,3601:113,13,-61,0,0,0.0748777 -4528,3601:114,14,-61,0,0,0.0748777 -4529,3601:215,15,-61,0,0,0.074892 -4530,3601:216,16,-61,0,0,0.074899 -4531,3601:217,17,-61,0,0,0.074892 -4532,3601:218,18,-61,0,0,0.0748705 -4533,3601:219,19,-61,0,0,0.0748564 -4534,3602:110,20,-61,0,0,0.0748636 -4535,3602:111,21,-61,0,0,0.0748564 -4536,3602:112,22,-61,0,0,0.0748636 -4537,3602:113,23,-61,0,0,0.0748705 -4538,3602:114,24,-61,0,0,0.0748777 -4539,3602:215,25,-61,0,0,0.074892 -4540,3602:216,26,-61,0,0,0.074892 -4541,3602:217,27,-61,0,0,0.074899 -4542,3602:218,28,-61,0,0,0.0749205 -4543,3602:219,29,-61,0,0,0.0749205 -4544,3603:110,30,-61,0,0,0.0749346 -4545,3603:111,31,-61,0,0,0.074949 -4546,3603:112,32,-61,0,0,0.0749562 -4547,3603:113,33,-61,0,0,0.0749703 -4548,3603:114,34,-61,0,0,0.0750273 -4549,3603:215,35,-61,0,0,0.0749775 -4550,3603:216,36,-61,0,0,0.0749775 -4551,3603:217,37,-61,0,0,0.0749703 -4552,3603:218,38,-61,0,0,0.0749775 -4553,3603:219,39,-61,0,0,0.0749703 -4554,3604:110,40,-61,0,0,0.0749775 -4555,3604:111,41,-61,0,0,0.0749916 -4556,3604:112,42,-61,0,0,0.0749846 -4557,3604:113,43,-61,0,0,0.0749846 -4558,3604:114,44,-61,0,0,0.0749916 -4559,3604:215,45,-61,0,0,0.0750131 -4560,3604:216,46,-61,0,0,0.075006 -4561,3604:217,47,-61,0,0,0.075006 -4562,3604:218,48,-61,0,0,0.0750201 -4563,3604:219,49,-61,0,0,0.0751128 -4564,3605:110,50,-61,0,0,0.0749275 -4565,3605:217,57,-61,0,0,0.0752343 -4566,3605:218,58,-61,0,0,0.0752129 -4567,3605:219,59,-61,0,0,0.0751128 -4568,3606:110,60,-61,0,0,0.0751128 -4569,3606:111,61,-61,0,0,0.0750416 -4570,3606:112,62,-61,0,0,0.0749916 -4571,3606:113,63,-61,0,0,0.0749775 -4572,3606:114,64,-61,0,0,0.0749062 -4573,3606:215,65,-61,0,0,0.0749205 -4574,3606:216,66,-61,0,0,0.0749205 -4575,3606:217,67,-61,0,0,0.0749346 -4576,3606:218,68,-61,0,0,0.0749418 -4577,3606:219,69,-61,0,0,0.074949 -4578,3607:110,70,-61,0,0,0.074949 -4579,3607:111,71,-61,0,0,0.0749418 -4580,3607:112,72,-61,0,0,0.0749418 -4581,3607:114,74,-61,0,0,0.075722 -4582,3607:215,75,-61,0,0,0.074949 -4583,3607:216,76,-61,0,0,0.0749346 -4584,3607:217,77,-61,0,0,0.0751059 -4585,3607:218,78,-61,0,0,0.0749062 -4586,3607:219,79,-61,0,0,0.0749346 -4587,3608:110,80,-61,0,0,0.0749346 -4588,3608:111,81,-61,0,0,0.0752772 -4589,3608:113,83,-61,0,0,0.0753847 -4590,3608:219,89,-61,0,0,0.0753344 -4591,3609:110,90,-61,0,0,0.0753489 -4592,3609:111,91,-61,0,0,0.0756068 -4593,3609:112,92,-61,0,0,0.0771215 -4594,3609:113,93,-61,0,0,0.0784555 -4595,3609:114,94,-61,0,0,0.0869034 -4596,3610:218,108,-61,0,0,0.0750488 -4597,3610:219,109,-61,0,0,0.0792915 -4598,3611:110,110,-61,0,0,0.0853428 -4599,3611:215,115,-61,0,0,0.0755352 -4600,3611:217,117,-61,0,0,0.0753775 -4601,3611:218,118,-61,0,0,0.0751558 -4602,3611:219,119,-61,0,0,0.0750773 -4603,3612:110,120,-61,0,0,0.0750488 -4604,3612:111,121,-61,0,0,0.0751486 -4605,3612:112,122,-61,0,0,0.0752343 -4606,3612:113,123,-61,0,0,0.0750416 -4607,3612:217,127,-61,0,0,0.0802948 -4608,3612:218,128,-61,0,0,0.0803859 -4609,3612:219,129,-61,0,0,0.0774658 -4610,3613:110,130,-61,0,0,0.0819568 -4611,3613:219,139,-61,0,0,0.0893055 -4612,3614:110,140,-61,0,0,0.0890384 -4613,3614:111,141,-61,0,0,0.0883988 -4614,3614:112,142,-61,0,0,0.0878458 -4615,3614:113,143,-61,0,0,0.0862454 -4616,3614:114,144,-61,0,0,0.0871566 -4617,3614:215,145,-61,0,0,0.0834139 -4618,3614:216,146,-61,0,0,0.0768076 -4619,3614:217,147,-61,0,0,0.0752201 -4620,3614:218,148,-61,0,0,0.0750702 -4621,3614:219,149,-61,0,0,0.0750416 -4622,3615:110,150,-61,0,0,0.0750416 -4623,3615:111,151,-61,0,0,0.0750488 -4624,3615:112,152,-61,0,0,0.0750416 -4625,3615:113,153,-61,0,0,0.0750201 -4626,3615:114,154,-61,0,0,0.075006 -4627,3615:215,155,-61,0,0,0.0749916 -4628,3615:216,156,-61,0,0,0.0749846 -4629,3615:217,157,-61,0,0,0.0749916 -4630,3615:218,158,-61,0,0,0.0750131 -4631,3615:219,159,-61,0,0,0.0750345 -4632,3616:110,160,-61,0,0,0.0750131 -4633,3616:111,161,-61,0,0,0.0749703 -4634,3616:112,162,-61,0,0,0.0749205 -4635,3616:113,163,-61,0,0,0.075063 -4636,3616:114,164,-61,0,0,0.0750488 -4637,3616:215,165,-61,0,0,0.0750345 -4638,3616:216,166,-61,0,0,0.0750558 -4639,3616:217,167,-61,0,0,0.0750488 -4640,3616:218,168,-61,0,0,0.0750345 -4641,3616:219,169,-61,0,0,0.0750273 -4642,3617:110,170,-61,0,0,0.0750345 -4643,3617:111,171,-61,0,0,0.0750488 -4644,3617:112,172,-61,0,0,0.0750488 -4645,3617:113,173,-61,0,0,0.0750416 -4646,3617:114,174,-61,0,0,0.0750416 -4647,3617:215,175,-61,0,0,0.0750201 -4648,3617:216,176,-61,0,0,0.0750201 -4649,3617:217,177,-61,0,0,0.0750345 -4650,3617:218,178,-61,0,0,0.0750416 -4651,3617:219,179,-61,0,0,0.0750488 -4652,3618:110,180,-61,0,0,0.075063 -4653,5618:100,-180,-60,0,0,0.0751701 -4654,5617:209,-179,-60,0,0,0.075729 -4655,5617:208,-178,-60,0,0,0.0763789 -4656,5617:207,-177,-60,0,0,0.0755781 -4657,5617:206,-176,-60,0,0,0.0756068 -4658,5617:205,-175,-60,0,0,0.0756932 -4659,5617:104,-174,-60,0,0,0.0753703 -4660,5617:103,-173,-60,0,0,0.0751416 -4661,5617:102,-172,-60,0,0,0.0750702 -4662,5617:101,-171,-60,0,0,0.0750488 -4663,5617:100,-170,-60,0,0,0.0750273 -4664,5616:209,-169,-60,0,0,0.0750201 -4665,5616:208,-168,-60,0,0,0.0750131 -4666,5616:207,-167,-60,0,0,0.0750131 -4667,5616:206,-166,-60,0,0,0.075006 -4668,5616:205,-165,-60,0,0,0.0751558 -4669,5616:104,-164,-60,0,0,0.0753489 -4670,5616:103,-163,-60,0,0,0.0750488 -4671,5616:102,-162,-60,0,0,0.0750416 -4672,5616:101,-161,-60,0,0,0.0750558 -4673,5616:100,-160,-60,0,0,0.0751059 -4674,5615:209,-159,-60,0,0,0.0753703 -4675,5615:208,-158,-60,0,0,0.0757937 -4676,5615:207,-157,-60,0,0,0.0766184 -4677,5615:206,-156,-60,0,0,0.0773118 -4678,5615:205,-155,-60,0,0,0.0774952 -4679,5615:104,-154,-60,0,0,0.077657 -4680,5615:103,-153,-60,0,0,0.078783 -4681,5615:102,-152,-60,0,0,0.0799844 -4682,5615:101,-151,-60,0,0,0.0774145 -4683,5615:100,-150,-60,0,0,0.0783515 -4684,5614:209,-149,-60,0,0,0.0816789 -4685,5614:208,-148,-60,0,0,0.079374 -4686,5614:207,-147,-60,0,0,0.0785371 -4687,5614:206,-146,-60,0,0,0.0794342 -4688,5614:205,-145,-60,0,0,0.0803175 -4689,5614:104,-144,-60,0,0,0.0832023 -4690,5614:103,-143,-60,0,0,0.0842505 -4691,5614:102,-142,-60,0,0,0.0829596 -4692,5614:101,-141,-60,0,0,0.0832099 -4693,5614:100,-140,-60,0,0,0.0830455 -4694,5613:209,-139,-60,0,0,0.0818717 -4695,5613:208,-138,-60,0,0,0.0832884 -4696,5613:207,-137,-60,0,0,0.0859382 -4697,5613:206,-136,-60,0,0,0.0842505 -4698,5613:205,-135,-60,0,0,0.0849906 -4699,5613:104,-134,-60,0,0,0.0876811 -4700,5613:103,-133,-60,0,0,0.0903893 -4701,5613:102,-132,-60,0,0,0.0916986 -4702,5613:101,-131,-60,0,0,0.0872464 -4703,5613:100,-130,-60,0,0,0.0853348 -4704,5612:209,-129,-60,0,0,0.0891885 -4705,5612:208,-128,-60,0,0,0.088465 -4706,5612:207,-127,-60,0,0,0.0868383 -4707,5612:206,-126,-60,0,0,0.084831 -4708,5612:205,-125,-60,0,0,0.085624 -4709,5612:104,-124,-60,0,0,0.0901699 -4710,5612:103,-123,-60,0,0,0.0965957 -4711,5612:102,-122,-60,0,0,0.0970269 -4712,5612:101,-121,-60,0,0,0.0968562 -4713,5612:100,-120,-60,0,0,0.0966137 -4714,5611:209,-119,-60,0,0,0.0969459 -4715,5611:208,-118,-60,0,0,0.0979491 -4716,5611:207,-117,-60,0,0,0.0976951 -4717,5611:206,-116,-60,0,0,0.0945267 -4718,5611:205,-115,-60,0,0,0.0911013 -4719,5611:104,-114,-60,0,0,0.0927135 -4720,5611:103,-113,-60,0,0,0.0949233 -4721,5611:102,-112,-60,0,0,0.0957562 -4722,5611:101,-111,-60,0,0,0.0957296 -4723,5611:100,-110,-60,0,0,0.0949055 -4724,5610:209,-109,-60,0,0,0.0953833 -4725,5610:208,-108,-60,0,0,0.0957652 -4726,5610:207,-107,-60,0,0,0.0945707 -4727,5610:206,-106,-60,0,0,0.0902373 -4728,5610:205,-105,-60,0,0,0.0951441 -4729,5610:104,-104,-60,0,0,0.0989888 -4730,5610:103,-103,-60,0,0,0.090533 -4731,5610:102,-102,-60,0,0,0.0855756 -4732,5610:101,-101,-60,0,0,0.083257 -4733,5610:100,-100,-60,0,0,0.082414 -4734,5609:209,-99,-60,0,0,0.0842585 -4735,5609:208,-98,-60,0,0,0.088349 -4736,5609:207,-97,-60,0,0,0.0862859 -4737,5609:206,-96,-60,0,0,0.0785744 -4738,5609:205,-95,-60,0,0,0.0778634 -4739,5609:104,-94,-60,0,0,0.0809192 -4740,5609:103,-93,-60,0,0,0.0830925 -4741,5609:102,-92,-60,0,0,0.0836814 -4742,5609:101,-91,-60,0,0,0.0849825 -4743,5609:100,-90,-60,0,0,0.0871975 -4744,5608:209,-89,-60,0,0,0.0871648 -4745,5608:208,-88,-60,0,0,0.0885149 -4746,5608:207,-87,-60,0,0,0.0921703 -4747,5608:206,-86,-60,0,0,0.0874103 -4748,5608:205,-85,-60,0,0,0.0789322 -4749,5608:104,-84,-60,0,0,0.0759668 -4750,5608:103,-83,-60,0,0,0.0763354 -4751,5608:102,-82,-60,0,0,0.0761111 -4752,5608:101,-81,-60,0,0,0.0761761 -4753,5608:100,-80,-60,0,0,0.0754849 -4754,5607:209,-79,-60,0,0,0.0757147 -4755,5607:208,-78,-60,0,0,0.0786266 -4756,5607:207,-77,-60,0,0,0.0835399 -4757,5607:206,-76,-60,0,0,0.0795921 -4758,5607:205,-75,-60,0,0,0.0792691 -4759,5607:104,-74,-60,0,0,0.0847113 -4760,5607:103,-73,-60,0,0,0.089699 -4761,5607:102,-72,-60,0,0,0.0860837 -4762,5607:101,-71,-60,0,0,0.0802948 -4763,5607:100,-70,-60,0,0,0.0785968 -4764,5606:209,-69,-60,0,0,0.0780922 -4765,5606:208,-68,-60,0,0,0.0777601 -4766,5606:207,-67,-60,0,0,0.078463 -4767,5606:205,-65,-60,0,0,0.0924201 -4768,5606:100,-60,-60,0,0,0.0801736 -4769,5605:209,-59,-60,0,0,0.0795168 -4770,5605:208,-58,-60,0,0,0.0775026 -4771,5605:207,-57,-60,0,0,0.075313 -4772,5605:206,-56,-60,0,0,0.0752559 -4773,5605:205,-55,-60,0,0,0.0751701 -4774,5605:104,-54,-60,0,0,0.0750558 -4775,5605:103,-53,-60,0,0,0.0750345 -4776,5605:102,-52,-60,0,0,0.0750345 -4777,5605:101,-51,-60,0,0,0.0749988 -4778,5605:100,-50,-60,0,0,0.0749846 -4779,5604:209,-49,-60,0,0,0.0749846 -4780,5604:208,-48,-60,0,0,0.0749703 -4781,5604:207,-47,-60,0,0,0.0749703 -4782,5604:206,-46,-60,0,0,0.0749703 -4783,5604:205,-45,-60,0,0,0.0749631 -4784,5604:104,-44,-60,0,0,0.0749631 -4785,5604:103,-43,-60,0,0,0.0749631 -4786,5604:102,-42,-60,0,0,0.0749631 -4787,5604:101,-41,-60,0,0,0.0749631 -4788,5604:100,-40,-60,0,0,0.0749703 -4789,5603:209,-39,-60,0,0,0.0749703 -4790,5603:208,-38,-60,0,0,0.0749703 -4791,5603:207,-37,-60,0,0,0.0749703 -4792,5603:206,-36,-60,0,0,0.0749703 -4793,5603:205,-35,-60,0,0,0.0749703 -4794,5603:104,-34,-60,0,0,0.0749703 -4795,5603:103,-33,-60,0,0,0.0749703 -4796,5603:102,-32,-60,0,0,0.0749703 -4797,5603:101,-31,-60,0,0,0.0749775 -4798,5603:100,-30,-60,0,0,0.0749775 -4799,5602:209,-29,-60,0,0,0.0749703 -4800,5602:208,-28,-60,0,0,0.0749703 -4801,5602:207,-27,-60,0,0,0.0749631 -4802,5602:206,-26,-60,0,0,0.0749631 -4803,5602:205,-25,-60,0,0,0.0749631 -4804,5602:104,-24,-60,0,0,0.0749562 -4805,5602:103,-23,-60,0,0,0.074949 -4806,5602:102,-22,-60,0,0,0.0749418 -4807,5602:101,-21,-60,0,0,0.0749346 -4808,5602:100,-20,-60,0,0,0.0749275 -4809,5601:209,-19,-60,0,0,0.0749205 -4810,5601:208,-18,-60,0,0,0.0749062 -4811,5601:207,-17,-60,0,0,0.074892 -4812,5601:206,-16,-60,0,0,0.0748777 -4813,5601:205,-15,-60,0,0,0.0748636 -4814,5601:104,-14,-60,0,0,0.0748636 -4815,5601:103,-13,-60,0,0,0.0748705 -4816,5601:102,-12,-60,0,0,0.0748636 -4817,5601:101,-11,-60,0,0,0.0748564 -4818,5601:100,-10,-60,0,0,0.0748564 -4819,5600:209,-9,-60,0,0,0.0748636 -4820,5600:208,-8,-60,0,0,0.0748705 -4821,5600:207,-7,-60,0,0,0.0748636 -4822,5600:206,-6,-60,0,0,0.0748564 -4823,5600:205,-5,-60,0,0,0.0748564 -4824,5600:104,-4,-60,0,0,0.0748636 -4825,5600:103,-3,-60,0,0,0.0748636 -4826,5600:102,-2,-60,0,0,0.0748636 -4827,5600:101,-1,-60,0,0,0.0748705 -4828,3600:101,0,-60,0,0,0.0748777 -4829,3600:101,1,-60,0,0,0.0748636 -4830,3600:102,2,-60,0,0,0.0748636 -4831,3600:103,3,-60,0,0,0.0748636 -4832,3600:104,4,-60,0,0,0.0748705 -4833,3600:205,5,-60,0,0,0.0748705 -4834,3600:206,6,-60,0,0,0.0748777 -4835,3600:207,7,-60,0,0,0.0748777 -4836,3600:208,8,-60,0,0,0.0748705 -4837,3600:209,9,-60,0,0,0.0748636 -4838,3601:100,10,-60,0,0,0.0748564 -4839,3601:101,11,-60,0,0,0.0748636 -4840,3601:102,12,-60,0,0,0.0748564 -4841,3601:103,13,-60,0,0,0.0748705 -4842,3601:104,14,-60,0,0,0.0748777 -4843,3601:205,15,-60,0,0,0.0748636 -4844,3601:206,16,-60,0,0,0.0748636 -4845,3601:207,17,-60,0,0,0.0748636 -4846,3601:208,18,-60,0,0,0.0748493 -4847,3601:209,19,-60,0,0,0.074828 -4848,3602:100,20,-60,0,0,0.0748349 -4849,3602:101,21,-60,0,0,0.0748421 -4850,3602:102,22,-60,0,0,0.0748421 -4851,3602:103,23,-60,0,0,0.0748493 -4852,3602:104,24,-60,0,0,0.0748564 -4853,3602:205,25,-60,0,0,0.0748636 -4854,3602:206,26,-60,0,0,0.0748777 -4855,3602:207,27,-60,0,0,0.074892 -4856,3602:208,28,-60,0,0,0.0749133 -4857,3602:209,29,-60,0,0,0.0749205 -4858,3603:100,30,-60,0,0,0.0748849 -4859,3603:101,31,-60,0,0,0.0748636 -4860,3603:102,32,-60,0,0,0.0749205 -4861,3603:103,33,-60,0,0,0.0749562 -4862,3603:104,34,-60,0,0,0.0749916 -4863,3603:205,35,-60,0,0,0.0749703 -4864,3603:206,36,-60,0,0,0.0749418 -4865,3603:207,37,-60,0,0,0.0749205 -4866,3603:208,38,-60,0,0,0.0749133 -4867,3603:209,39,-60,0,0,0.074892 -4868,3604:100,40,-60,0,0,0.074899 -4869,3604:101,41,-60,0,0,0.0749275 -4870,3604:102,42,-60,0,0,0.0749418 -4871,3604:103,43,-60,0,0,0.0749916 -4872,3604:104,44,-60,0,0,0.0749846 -4873,3604:205,45,-60,0,0,0.0749916 -4874,3604:206,46,-60,0,0,0.0750131 -4875,3604:207,47,-60,0,0,0.0750416 -4876,3604:208,48,-60,0,0,0.0750558 -4877,3604:209,49,-60,0,0,0.0750773 -4878,3605:100,50,-60,0,0,0.0750773 -4879,3605:101,51,-60,0,0,0.0750843 -4880,3605:102,52,-60,0,0,0.0750915 -4881,3605:103,53,-60,0,0,0.0750488 -4882,3605:104,54,-60,0,0,0.0750273 -4883,3605:205,55,-60,0,0,0.0751128 -4884,3605:206,56,-60,0,0,0.0751558 -4885,3605:207,57,-60,0,0,0.0751344 -4886,3605:208,58,-60,0,0,0.0751128 -4887,3605:209,59,-60,0,0,0.0750843 -4888,3606:100,60,-60,0,0,0.0750201 -4889,3606:101,61,-60,0,0,0.0749916 -4890,3606:102,62,-60,0,0,0.0749988 -4891,3606:103,63,-60,0,0,0.0749988 -4892,3606:104,64,-60,0,0,0.0749703 -4893,3606:205,65,-60,0,0,0.074949 -4894,3606:206,66,-60,0,0,0.0749562 -4895,3606:207,67,-60,0,0,0.0749346 -4896,3606:208,68,-60,0,0,0.074949 -4897,3606:209,69,-60,0,0,0.074949 -4898,3607:100,70,-60,0,0,0.0749418 -4899,3607:101,71,-60,0,0,0.0749346 -4900,3607:102,72,-60,0,0,0.074949 -4901,3607:104,74,-60,0,0,0.0750131 -4902,3607:205,75,-60,0,0,0.0749631 -4903,3607:206,76,-60,0,0,0.0749418 -4904,3607:207,77,-60,0,0,0.074949 -4905,3607:208,78,-60,0,0,0.074949 -4906,3607:209,79,-60,0,0,0.0749631 -4907,3608:100,80,-60,0,0,0.0749846 -4908,3608:101,81,-60,0,0,0.0750345 -4909,3608:102,82,-60,0,0,0.07512 -4910,3608:103,83,-60,0,0,0.0751416 -4911,3608:104,84,-60,0,0,0.0751128 -4912,3608:205,85,-60,0,0,0.0751272 -4913,3608:206,86,-60,0,0,0.0751272 -4914,3608:207,87,-60,0,0,0.07512 -4915,3608:208,88,-60,0,0,0.07512 -4916,3608:209,89,-60,0,0,0.0750843 -4917,3609:100,90,-60,0,0,0.0750773 -4918,3609:101,91,-60,0,0,0.0750558 -4919,3609:102,92,-60,0,0,0.0750558 -4920,3609:103,93,-60,0,0,0.0750488 -4921,3609:104,94,-60,0,0,0.0750488 -4922,3609:205,95,-60,0,0,0.0770704 -4923,3610:205,105,-60,0,0,0.075313 -4924,3610:206,106,-60,0,0,0.0752343 -4925,3610:207,107,-60,0,0,0.0751059 -4926,3610:208,108,-60,0,0,0.0749562 -4927,3610:209,109,-60,0,0,0.074899 -4928,3611:100,110,-60,0,0,0.0749703 -4929,3611:101,111,-60,0,0,0.0750915 -4930,3611:102,112,-60,0,0,0.0750773 -4931,3611:104,114,-60,0,0,0.0753703 -4932,3611:205,115,-60,0,0,0.0752343 -4933,3611:206,116,-60,0,0,0.0751059 -4934,3611:207,117,-60,0,0,0.0751059 -4935,3611:208,118,-60,0,0,0.0750915 -4936,3611:209,119,-60,0,0,0.075063 -4937,3612:100,120,-60,0,0,0.0749916 -4938,3612:101,121,-60,0,0,0.075006 -4939,3612:102,122,-60,0,0,0.0750843 -4940,3612:103,123,-60,0,0,0.0750488 -4941,3612:104,124,-60,0,0,0.0749988 -4942,3612:205,125,-60,0,0,0.0749846 -4943,3612:206,126,-60,0,0,0.0749775 -4944,3612:207,127,-60,0,0,0.0749703 -4945,3612:208,128,-60,0,0,0.0753631 -4946,3612:209,129,-60,0,0,0.0751416 -4947,3613:100,130,-60,0,0,0.0752415 -4948,3613:101,131,-60,0,0,0.0760679 -4949,3613:102,132,-60,0,0,0.0790816 -4950,3613:103,133,-60,0,0,0.082858 -4951,3613:104,134,-60,0,0,0.0856321 -4952,3613:206,136,-60,0,0,0.0754779 -4953,3613:207,137,-60,0,0,0.075722 -4954,3613:208,138,-60,0,0,0.0787532 -4955,3613:209,139,-60,0,0,0.0811794 -4956,3614:100,140,-60,0,0,0.0817097 -4957,3614:101,141,-60,0,0,0.0829596 -4958,3614:102,142,-60,0,0,0.0820496 -4959,3614:103,143,-60,0,0,0.0796372 -4960,3614:104,144,-60,0,0,0.0785224 -4961,3614:205,145,-60,0,0,0.0757147 -4962,3614:206,146,-60,0,0,0.0750915 -4963,3614:207,147,-60,0,0,0.0750345 -4964,3614:208,148,-60,0,0,0.0749775 -4965,3614:209,149,-60,0,0,0.0749916 -4966,3615:100,150,-60,0,0,0.075006 -4967,3615:101,151,-60,0,0,0.0750131 -4968,3615:102,152,-60,0,0,0.0749988 -4969,3615:103,153,-60,0,0,0.0750201 -4970,3615:104,154,-60,0,0,0.0750416 -4971,3615:205,155,-60,0,0,0.0750416 -4972,3615:206,156,-60,0,0,0.0750416 -4973,3615:207,157,-60,0,0,0.0750416 -4974,3615:208,158,-60,0,0,0.0750273 -4975,3615:209,159,-60,0,0,0.0750273 -4976,3616:100,160,-60,0,0,0.0750201 -4977,3616:101,161,-60,0,0,0.0750131 -4978,3616:102,162,-60,0,0,0.0750345 -4979,3616:103,163,-60,0,0,0.0750416 -4980,3616:104,164,-60,0,0,0.0750558 -4981,3616:205,165,-60,0,0,0.0750558 -4982,3616:206,166,-60,0,0,0.0750702 -4983,3616:207,167,-60,0,0,0.0750702 -4984,3616:208,168,-60,0,0,0.0750558 -4985,3616:209,169,-60,0,0,0.0750488 -4986,3617:100,170,-60,0,0,0.0750488 -4987,3617:101,171,-60,0,0,0.0750488 -4988,3617:102,172,-60,0,0,0.0750416 -4989,3617:103,173,-60,0,0,0.0750416 -4990,3617:104,174,-60,0,0,0.0750345 -4991,3617:205,175,-60,0,0,0.0750345 -4992,3617:206,176,-60,0,0,0.0750416 -4993,3617:207,177,-60,0,0,0.0750416 -4994,3617:208,178,-60,0,0,0.0750488 -4995,3617:209,179,-60,0,0,0.0750773 -4996,3618:100,180,-60,0,0,0.0751701 -4997,5518:390,-180,-59,0,0,0.0776864 -4998,5517:499,-179,-59,0,0,0.0785224 -4999,5517:498,-178,-59,0,0,0.0758443 -5000,5517:497,-177,-59,0,0,0.0774806 -5001,5517:496,-176,-59,0,0,0.0819026 -5002,5517:495,-175,-59,0,0,0.0766184 -5003,5517:394,-174,-59,0,0,0.0753561 -5004,5517:393,-173,-59,0,0,0.0771067 -5005,5517:392,-172,-59,0,0,0.0764732 -5006,5517:391,-171,-59,0,0,0.0751344 -5007,5517:390,-170,-59,0,0,0.0750987 -5008,5516:499,-169,-59,0,0,0.0751987 -5009,5516:498,-168,-59,0,0,0.075313 -5010,5516:497,-167,-59,0,0,0.0751771 -5011,5516:496,-166,-59,0,0,0.0757147 -5012,5516:495,-165,-59,0,0,0.0757867 -5013,5516:394,-164,-59,0,0,0.0758443 -5014,5516:393,-163,-59,0,0,0.0769973 -5015,5516:392,-162,-59,0,0,0.0789545 -5016,5516:391,-161,-59,0,0,0.0805608 -5017,5516:390,-160,-59,0,0,0.0806521 -5018,5515:499,-159,-59,0,0,0.0822588 -5019,5515:498,-158,-59,0,0,0.0830847 -5020,5515:497,-157,-59,0,0,0.0830379 -5021,5515:496,-156,-59,0,0,0.0827644 -5022,5515:495,-155,-59,0,0,0.0823673 -5023,5515:394,-154,-59,0,0,0.0821037 -5024,5515:393,-153,-59,0,0,0.0822354 -5025,5515:392,-152,-59,0,0,0.0825462 -5026,5515:391,-151,-59,0,0,0.0836578 -5027,5515:390,-150,-59,0,0,0.0839419 -5028,5514:499,-149,-59,0,0,0.0832805 -5029,5514:498,-148,-59,0,0,0.0832649 -5030,5514:497,-147,-59,0,0,0.0834298 -5031,5514:496,-146,-59,0,0,0.0837682 -5032,5514:495,-145,-59,0,0,0.0844886 -5033,5514:394,-144,-59,0,0,0.0849986 -5034,5514:393,-143,-59,0,0,0.0860837 -5035,5514:392,-142,-59,0,0,0.0851426 -5036,5514:391,-141,-59,0,0,0.0848867 -5037,5514:390,-140,-59,0,0,0.0840683 -5038,5513:499,-139,-59,0,0,0.0837682 -5039,5513:498,-138,-59,0,0,0.0874842 -5040,5513:497,-137,-59,0,0,0.0869034 -5041,5513:496,-136,-59,0,0,0.0866756 -5042,5513:495,-135,-59,0,0,0.0849428 -5043,5513:394,-134,-59,0,0,0.0871648 -5044,5513:393,-133,-59,0,0,0.0872384 -5045,5513:392,-132,-59,0,0,0.092558 -5046,5513:391,-131,-59,0,0,0.0932768 -5047,5513:390,-130,-59,0,0,0.0916047 -5048,5512:499,-129,-59,0,0,0.0914764 -5049,5512:498,-128,-59,0,0,0.0911525 -5050,5512:497,-127,-59,0,0,0.0910333 -5051,5512:496,-126,-59,0,0,0.0935291 -5052,5512:495,-125,-59,0,0,0.0975683 -5053,5512:394,-124,-59,0,0,0.0982671 -5054,5512:393,-123,-59,0,0,0.0954277 -5055,5512:392,-122,-59,0,0,0.0962645 -5056,5512:391,-121,-59,0,0,0.0989063 -5057,5512:390,-120,-59,0,0,0.0997151 -5058,5511:499,-119,-59,0,0,0.100075 -5059,5511:498,-118,-59,0,0,0.099752 -5060,5511:497,-117,-59,0,0,0.0995399 -5061,5511:496,-116,-59,0,0,0.0994388 -5062,5511:495,-115,-59,0,0,0.097795 -5063,5511:394,-114,-59,0,0,0.0966586 -5064,5511:393,-113,-59,0,0,0.0988423 -5065,5511:392,-112,-59,0,0,0.100325 -5066,5511:391,-111,-59,0,0,0.0996136 -5067,5511:390,-110,-59,0,0,0.0975774 -5068,5510:499,-109,-59,0,0,0.0973967 -5069,5510:498,-108,-59,0,0,0.0979854 -5070,5510:497,-107,-59,0,0,0.0980489 -5071,5510:496,-106,-59,0,0,0.0965511 -5072,5510:495,-105,-59,0,0,0.0995031 -5073,5510:394,-104,-59,0,0,0.100335 -5074,5510:393,-103,-59,0,0,0.0971171 -5075,5510:392,-102,-59,0,0,0.0984222 -5076,5510:391,-101,-59,0,0,0.0968921 -5077,5510:390,-100,-59,0,0,0.0983947 -5078,5509:499,-99,-59,0,0,0.0986869 -5079,5509:498,-98,-59,0,0,0.0964076 -5080,5509:497,-97,-59,0,0,0.091673 -5081,5509:496,-96,-59,0,0,0.0808887 -5082,5509:495,-95,-59,0,0,0.0802872 -5083,5509:394,-94,-59,0,0,0.0830613 -5084,5509:393,-93,-59,0,0,0.0829047 -5085,5509:392,-92,-59,0,0,0.0886642 -5086,5509:391,-91,-59,0,0,0.0936597 -5087,5509:390,-90,-59,0,0,0.0986503 -5088,5508:499,-89,-59,0,0,0.0986685 -5089,5508:498,-88,-59,0,0,0.0993285 -5090,5508:497,-87,-59,0,0,0.101753 -5091,5508:496,-86,-59,0,0,0.102365 -5092,5508:495,-85,-59,0,0,0.102592 -5093,5508:394,-84,-59,0,0,0.102715 -5094,5508:393,-83,-59,0,0,0.0894142 -5095,5508:392,-82,-59,0,0,0.0825462 -5096,5508:391,-81,-59,0,0,0.0857446 -5097,5508:390,-80,-59,0,0,0.0766839 -5098,5507:499,-79,-59,0,0,0.0778411 -5099,5507:498,-78,-59,0,0,0.0879363 -5100,5507:497,-77,-59,0,0,0.0968562 -5101,5507:496,-76,-59,0,0,0.0967123 -5102,5507:495,-75,-59,0,0,0.0933288 -5103,5507:394,-74,-59,0,0,0.0936684 -5104,5507:393,-73,-59,0,0,0.0948086 -5105,5507:392,-72,-59,0,0,0.0913995 -5106,5507:391,-71,-59,0,0,0.0853267 -5107,5507:390,-70,-59,0,0,0.0818795 -5108,5506:499,-69,-59,0,0,0.0791191 -5109,5506:498,-68,-59,0,0,0.0783886 -5110,5506:497,-67,-59,0,0,0.0795393 -5111,5506:496,-66,-59,0,0,0.082772 -5112,5506:495,-65,-59,0,0,0.0894895 -5113,5505:499,-59,-59,0,0,0.0801583 -5114,5505:498,-58,-59,0,0,0.078768 -5115,5505:497,-57,-59,0,0,0.0766475 -5116,5505:496,-56,-59,0,0,0.0752201 -5117,5505:495,-55,-59,0,0,0.0751486 -5118,5505:394,-54,-59,0,0,0.0750558 -5119,5505:393,-53,-59,0,0,0.0750416 -5120,5505:392,-52,-59,0,0,0.0750273 -5121,5505:391,-51,-59,0,0,0.0749916 -5122,5505:390,-50,-59,0,0,0.0749916 -5123,5504:499,-49,-59,0,0,0.0749988 -5124,5504:498,-48,-59,0,0,0.0749703 -5125,5504:497,-47,-59,0,0,0.0749631 -5126,5504:496,-46,-59,0,0,0.0749631 -5127,5504:495,-45,-59,0,0,0.0749562 -5128,5504:394,-44,-59,0,0,0.0749631 -5129,5504:393,-43,-59,0,0,0.0749631 -5130,5504:392,-42,-59,0,0,0.0749631 -5131,5504:391,-41,-59,0,0,0.0749703 -5132,5504:390,-40,-59,0,0,0.0749703 -5133,5503:499,-39,-59,0,0,0.0749775 -5134,5503:498,-38,-59,0,0,0.0749775 -5135,5503:497,-37,-59,0,0,0.0749775 -5136,5503:496,-36,-59,0,0,0.0749775 -5137,5503:495,-35,-59,0,0,0.0749775 -5138,5503:394,-34,-59,0,0,0.0749775 -5139,5503:393,-33,-59,0,0,0.0749775 -5140,5503:392,-32,-59,0,0,0.0749775 -5141,5503:391,-31,-59,0,0,0.0749846 -5142,5503:390,-30,-59,0,0,0.0749775 -5143,5502:499,-29,-59,0,0,0.0749775 -5144,5502:498,-28,-59,0,0,0.0749703 -5145,5502:497,-27,-59,0,0,0.0749703 -5146,5502:496,-26,-59,0,0,0.0749631 -5147,5502:495,-25,-59,0,0,0.0749631 -5148,5502:394,-24,-59,0,0,0.0749631 -5149,5502:393,-23,-59,0,0,0.0749562 -5150,5502:392,-22,-59,0,0,0.074949 -5151,5502:391,-21,-59,0,0,0.0749346 -5152,5502:390,-20,-59,0,0,0.0749205 -5153,5501:499,-19,-59,0,0,0.0749133 -5154,5501:498,-18,-59,0,0,0.0749062 -5155,5501:497,-17,-59,0,0,0.0748849 -5156,5501:496,-16,-59,0,0,0.0748705 -5157,5501:495,-15,-59,0,0,0.0748564 -5158,5501:394,-14,-59,0,0,0.0748564 -5159,5501:393,-13,-59,0,0,0.0748564 -5160,5501:392,-12,-59,0,0,0.0748564 -5161,5501:391,-11,-59,0,0,0.0748493 -5162,5501:390,-10,-59,0,0,0.0748564 -5163,5500:499,-9,-59,0,0,0.0748705 -5164,5500:498,-8,-59,0,0,0.0748705 -5165,5500:497,-7,-59,0,0,0.0748705 -5166,5500:496,-6,-59,0,0,0.0748636 -5167,5500:495,-5,-59,0,0,0.0748564 -5168,5500:394,-4,-59,0,0,0.0748636 -5169,5500:393,-3,-59,0,0,0.0748636 -5170,5500:392,-2,-59,0,0,0.0748705 -5171,5500:391,-1,-59,0,0,0.0748849 -5172,3500:391,0,-59,0,0,0.074892 -5173,3500:391,1,-59,0,0,0.0748705 -5174,3500:392,2,-59,0,0,0.0748636 -5175,3500:393,3,-59,0,0,0.0748636 -5176,3500:394,4,-59,0,0,0.0748705 -5177,3500:495,5,-59,0,0,0.0748849 -5178,3500:496,6,-59,0,0,0.074892 -5179,3500:497,7,-59,0,0,0.074892 -5180,3500:498,8,-59,0,0,0.0748849 -5181,3500:499,9,-59,0,0,0.074892 -5182,3501:390,10,-59,0,0,0.0748777 -5183,3501:391,11,-59,0,0,0.0748777 -5184,3501:392,12,-59,0,0,0.0748636 -5185,3501:393,13,-59,0,0,0.0748564 -5186,3501:394,14,-59,0,0,0.0748636 -5187,3501:495,15,-59,0,0,0.0748564 -5188,3501:496,16,-59,0,0,0.0748564 -5189,3501:497,17,-59,0,0,0.0748421 -5190,3501:498,18,-59,0,0,0.0748065 -5191,3501:499,19,-59,0,0,0.0747996 -5192,3502:390,20,-59,0,0,0.0748208 -5193,3502:391,21,-59,0,0,0.074828 -5194,3502:392,22,-59,0,0,0.0748137 -5195,3502:393,23,-59,0,0,0.0748137 -5196,3502:394,24,-59,0,0,0.0748208 -5197,3502:495,25,-59,0,0,0.074828 -5198,3502:496,26,-59,0,0,0.074828 -5199,3502:497,27,-59,0,0,0.074828 -5200,3502:498,28,-59,0,0,0.074828 -5201,3502:499,29,-59,0,0,0.074828 -5202,3503:390,30,-59,0,0,0.074828 -5203,3503:391,31,-59,0,0,0.0748137 -5204,3503:392,32,-59,0,0,0.074899 -5205,3503:393,33,-59,0,0,0.0749346 -5206,3503:394,34,-59,0,0,0.0749562 -5207,3503:495,35,-59,0,0,0.0749562 -5208,3503:496,36,-59,0,0,0.0749275 -5209,3503:497,37,-59,0,0,0.074892 -5210,3503:498,38,-59,0,0,0.0748777 -5211,3503:499,39,-59,0,0,0.0748636 -5212,3504:390,40,-59,0,0,0.0748777 -5213,3504:391,41,-59,0,0,0.074899 -5214,3504:392,42,-59,0,0,0.0749275 -5215,3504:393,43,-59,0,0,0.0749418 -5216,3504:394,44,-59,0,0,0.074949 -5217,3504:495,45,-59,0,0,0.0749562 -5218,3504:496,46,-59,0,0,0.0749846 -5219,3504:497,47,-59,0,0,0.0749988 -5220,3504:498,48,-59,0,0,0.0750273 -5221,3504:499,49,-59,0,0,0.0750558 -5222,3505:390,50,-59,0,0,0.075063 -5223,3505:391,51,-59,0,0,0.0751059 -5224,3505:392,52,-59,0,0,0.0751128 -5225,3505:393,53,-59,0,0,0.07512 -5226,3505:394,54,-59,0,0,0.0751272 -5227,3505:495,55,-59,0,0,0.0751059 -5228,3505:496,56,-59,0,0,0.0750843 -5229,3505:497,57,-59,0,0,0.0750558 -5230,3505:498,58,-59,0,0,0.0749775 -5231,3505:499,59,-59,0,0,0.074949 -5232,3506:390,60,-59,0,0,0.0749346 -5233,3506:391,61,-59,0,0,0.0749133 -5234,3506:392,62,-59,0,0,0.074949 -5235,3506:393,63,-59,0,0,0.0749418 -5236,3506:394,64,-59,0,0,0.0749703 -5237,3506:495,65,-59,0,0,0.0749703 -5238,3506:496,66,-59,0,0,0.0749703 -5239,3506:497,67,-59,0,0,0.0749562 -5240,3506:498,68,-59,0,0,0.074949 -5241,3506:499,69,-59,0,0,0.0749418 -5242,3507:390,70,-59,0,0,0.0749346 -5243,3507:391,71,-59,0,0,0.0749346 -5244,3507:392,72,-59,0,0,0.0749418 -5245,3507:394,74,-59,0,0,0.074949 -5246,3507:495,75,-59,0,0,0.0749562 -5247,3507:496,76,-59,0,0,0.074949 -5248,3507:497,77,-59,0,0,0.0749562 -5249,3507:498,78,-59,0,0,0.0749562 -5250,3507:499,79,-59,0,0,0.074949 -5251,3508:390,80,-59,0,0,0.0749631 -5252,3508:391,81,-59,0,0,0.0749916 -5253,3508:392,82,-59,0,0,0.0750273 -5254,3508:393,83,-59,0,0,0.0750558 -5255,3508:394,84,-59,0,0,0.0750773 -5256,3508:495,85,-59,0,0,0.0750702 -5257,3508:496,86,-59,0,0,0.0750702 -5258,3508:497,87,-59,0,0,0.0750843 -5259,3508:498,88,-59,0,0,0.075063 -5260,3508:499,89,-59,0,0,0.0750488 -5261,3509:390,90,-59,0,0,0.0750345 -5262,3509:391,91,-59,0,0,0.0750558 -5263,3509:392,92,-59,0,0,0.0750702 -5264,3509:393,93,-59,0,0,0.0750843 -5265,3509:394,94,-59,0,0,0.0751272 -5266,3509:495,95,-59,0,0,0.0751344 -5267,3510:390,100,-59,0,0,0.0754492 -5268,3510:391,101,-59,0,0,0.075313 -5269,3510:392,102,-59,0,0,0.0752487 -5270,3510:393,103,-59,0,0,0.0751416 -5271,3510:394,104,-59,0,0,0.0751416 -5272,3510:495,105,-59,0,0,0.0751416 -5273,3510:496,106,-59,0,0,0.0751915 -5274,3510:497,107,-59,0,0,0.0749916 -5275,3510:498,108,-59,0,0,0.0749418 -5276,3510:499,109,-59,0,0,0.0749562 -5277,3511:390,110,-59,0,0,0.0749846 -5278,3511:391,111,-59,0,0,0.0749916 -5279,3511:392,112,-59,0,0,0.0750201 -5280,3511:393,113,-59,0,0,0.075063 -5281,3511:394,114,-59,0,0,0.0750915 -5282,3511:495,115,-59,0,0,0.0750915 -5283,3511:496,116,-59,0,0,0.0750915 -5284,3511:497,117,-59,0,0,0.0750702 -5285,3511:498,118,-59,0,0,0.0750416 -5286,3511:499,119,-59,0,0,0.075006 -5287,3512:390,120,-59,0,0,0.075006 -5288,3512:391,121,-59,0,0,0.0750558 -5289,3512:392,122,-59,0,0,0.07527 -5290,3512:393,123,-59,0,0,0.0749846 -5291,3512:394,124,-59,0,0,0.0750201 -5292,3512:495,125,-59,0,0,0.0755854 -5293,3512:496,126,-59,0,0,0.0756787 -5294,3512:497,127,-59,0,0,0.0757722 -5295,3512:498,128,-59,0,0,0.0758586 -5296,3512:499,129,-59,0,0,0.0758298 -5297,3513:390,130,-59,0,0,0.0758515 -5298,3513:391,131,-59,0,0,0.0759811 -5299,3513:392,132,-59,0,0,0.0749205 -5300,3513:393,133,-59,0,0,0.0749275 -5301,3513:394,134,-59,0,0,0.0749703 -5302,3513:496,136,-59,0,0,0.0752129 -5303,3513:497,137,-59,0,0,0.0764296 -5304,3513:498,138,-59,0,0,0.0760317 -5305,3513:499,139,-59,0,0,0.0757795 -5306,3514:390,140,-59,0,0,0.0753703 -5307,3514:391,141,-59,0,0,0.075163 -5308,3514:392,142,-59,0,0,0.0749775 -5309,3514:393,143,-59,0,0,0.0748777 -5310,3514:394,144,-59,0,0,0.0749062 -5311,3514:495,145,-59,0,0,0.0749275 -5312,3514:496,146,-59,0,0,0.0749562 -5313,3514:497,147,-59,0,0,0.0749916 -5314,3514:498,148,-59,0,0,0.0749988 -5315,3514:499,149,-59,0,0,0.0750201 -5316,3515:390,150,-59,0,0,0.0749988 -5317,3515:391,151,-59,0,0,0.0750201 -5318,3515:392,152,-59,0,0,0.0750558 -5319,3515:393,153,-59,0,0,0.0750843 -5320,3515:394,154,-59,0,0,0.0750773 -5321,3515:495,155,-59,0,0,0.0750843 -5322,3515:496,156,-59,0,0,0.075063 -5323,3515:497,157,-59,0,0,0.0750416 -5324,3515:498,158,-59,0,0,0.0750345 -5325,3515:499,159,-59,0,0,0.0750201 -5326,3516:390,160,-59,0,0,0.0750345 -5327,3516:391,161,-59,0,0,0.0750201 -5328,3516:392,162,-59,0,0,0.0750558 -5329,3516:393,163,-59,0,0,0.0750773 -5330,3516:394,164,-59,0,0,0.0750843 -5331,3516:495,165,-59,0,0,0.0750915 -5332,3516:496,166,-59,0,0,0.0750773 -5333,3516:497,167,-59,0,0,0.0750773 -5334,3516:498,168,-59,0,0,0.0750773 -5335,3516:499,169,-59,0,0,0.075063 -5336,3517:390,170,-59,0,0,0.0750488 -5337,3517:391,171,-59,0,0,0.0751059 -5338,3517:392,172,-59,0,0,0.0751416 -5339,3517:393,173,-59,0,0,0.0750702 -5340,3517:394,174,-59,0,0,0.0750702 -5341,3517:495,175,-59,0,0,0.0750773 -5342,3517:496,176,-59,0,0,0.0750558 -5343,3517:497,177,-59,0,0,0.0750843 -5344,3517:498,178,-59,0,0,0.0752129 -5345,3517:499,179,-59,0,0,0.0753344 -5346,3518:390,180,-59,0,0,0.0776864 -5347,5518:380,-180,-58,0,0,0.0818408 -5348,5517:489,-179,-58,0,0,0.084584 -5349,5517:488,-178,-58,0,0,0.0898166 -5350,5517:487,-177,-58,0,0,0.089657 -5351,5517:486,-176,-58,0,0,0.0842902 -5352,5517:485,-175,-58,0,0,0.0836893 -5353,5517:384,-174,-58,0,0,0.0840999 -5354,5517:383,-173,-58,0,0,0.0840603 -5355,5517:382,-172,-58,0,0,0.0800675 -5356,5517:381,-171,-58,0,0,0.0776495 -5357,5517:380,-170,-58,0,0,0.0785521 -5358,5516:489,-169,-58,0,0,0.0799616 -5359,5516:488,-168,-58,0,0,0.0784852 -5360,5516:487,-167,-58,0,0,0.0766184 -5361,5516:486,-166,-58,0,0,0.0775026 -5362,5516:485,-165,-58,0,0,0.0790444 -5363,5516:384,-164,-58,0,0,0.0819491 -5364,5516:383,-163,-58,0,0,0.0834453 -5365,5516:382,-162,-58,0,0,0.0835949 -5366,5516:381,-161,-58,0,0,0.0842822 -5367,5516:380,-160,-58,0,0,0.0845522 -5368,5515:489,-159,-58,0,0,0.0846795 -5369,5515:488,-158,-58,0,0,0.084775 -5370,5515:487,-157,-58,0,0,0.0843457 -5371,5515:486,-156,-58,0,0,0.0833042 -5372,5515:485,-155,-58,0,0,0.0829987 -5373,5515:384,-154,-58,0,0,0.083163 -5374,5515:383,-153,-58,0,0,0.0839024 -5375,5515:382,-152,-58,0,0,0.0853027 -5376,5515:381,-151,-58,0,0,0.0853267 -5377,5515:380,-150,-58,0,0,0.0843059 -5378,5514:489,-149,-58,0,0,0.0844251 -5379,5514:488,-148,-58,0,0,0.0844569 -5380,5514:487,-147,-58,0,0,0.0849825 -5381,5514:486,-146,-58,0,0,0.0861239 -5382,5514:485,-145,-58,0,0,0.0869933 -5383,5514:384,-144,-58,0,0,0.0857367 -5384,5514:383,-143,-58,0,0,0.0860592 -5385,5514:382,-142,-58,0,0,0.0863183 -5386,5514:381,-141,-58,0,0,0.0890633 -5387,5514:380,-140,-58,0,0,0.087181 -5388,5513:489,-139,-58,0,0,0.0848867 -5389,5513:488,-138,-58,0,0,0.087895 -5390,5513:487,-137,-58,0,0,0.08903 -5391,5513:486,-136,-58,0,0,0.0866024 -5392,5513:485,-135,-58,0,0,0.0865374 -5393,5513:384,-134,-58,0,0,0.0919041 -5394,5513:383,-133,-58,0,0,0.0956496 -5395,5513:382,-132,-58,0,0,0.0973695 -5396,5513:381,-131,-58,0,0,0.0950645 -5397,5513:380,-130,-58,0,0,0.0941407 -5398,5512:489,-129,-58,0,0,0.0952857 -5399,5512:488,-128,-58,0,0,0.0993007 -5400,5512:487,-127,-58,0,0,0.101678 -5401,5512:486,-126,-58,0,0,0.102007 -5402,5512:485,-125,-58,0,0,0.100205 -5403,5512:384,-124,-58,0,0,0.100047 -5404,5512:383,-123,-58,0,0,0.100279 -5405,5512:382,-122,-58,0,0,0.0999183 -5406,5512:381,-121,-58,0,0,0.100363 -5407,5512:380,-120,-58,0,0,0.10053 -5408,5511:489,-119,-58,0,0,0.100307 -5409,5511:488,-118,-58,0,0,0.101584 -5410,5511:487,-117,-58,0,0,0.10263 -5411,5511:486,-116,-58,0,0,0.102876 -5412,5511:485,-115,-58,0,0,0.104779 -5413,5511:384,-114,-58,0,0,0.106321 -5414,5511:383,-113,-58,0,0,0.106987 -5415,5511:382,-112,-58,0,0,0.106379 -5416,5511:381,-111,-58,0,0,0.105039 -5417,5511:380,-110,-58,0,0,0.104471 -5418,5510:489,-109,-58,0,0,0.105184 -5419,5510:488,-108,-58,0,0,0.106653 -5420,5510:487,-107,-58,0,0,0.105039 -5421,5510:486,-106,-58,0,0,0.101847 -5422,5510:485,-105,-58,0,0,0.10039 -5423,5510:384,-104,-58,0,0,0.102158 -5424,5510:383,-103,-58,0,0,0.10337 -5425,5510:382,-102,-58,0,0,0.1004 -5426,5510:381,-101,-58,0,0,0.0978583 -5427,5510:380,-100,-58,0,0,0.0989706 -5428,5509:489,-99,-58,0,0,0.0998351 -5429,5509:488,-98,-58,0,0,0.0987781 -5430,5509:487,-97,-58,0,0,0.0998258 -5431,5509:486,-96,-58,0,0,0.0995767 -5432,5509:485,-95,-58,0,0,0.0971531 -5433,5509:384,-94,-58,0,0,0.0966496 -5434,5509:383,-93,-58,0,0,0.098486 -5435,5509:382,-92,-58,0,0,0.0926703 -5436,5509:381,-91,-58,0,0,0.0962555 -5437,5509:380,-90,-58,0,0,0.100716 -5438,5508:489,-89,-58,0,0,0.103332 -5439,5508:488,-88,-58,0,0,0.103676 -5440,5508:487,-87,-58,0,0,0.103752 -5441,5508:486,-86,-58,0,0,0.102479 -5442,5508:485,-85,-58,0,0,0.103361 -5443,5508:384,-84,-58,0,0,0.102337 -5444,5508:383,-83,-58,0,0,0.101257 -5445,5508:382,-82,-58,0,0,0.0910419 -5446,5508:381,-81,-58,0,0,0.0810186 -5447,5508:380,-80,-58,0,0,0.0852868 -5448,5507:489,-79,-58,0,0,0.0895731 -5449,5507:488,-78,-58,0,0,0.0977496 -5450,5507:487,-77,-58,0,0,0.100057 -5451,5507:486,-76,-58,0,0,0.100075 -5452,5507:485,-75,-58,0,0,0.0994295 -5453,5507:384,-74,-58,0,0,0.0989247 -5454,5507:383,-73,-58,0,0,0.0985132 -5455,5507:382,-72,-58,0,0,0.0945707 -5456,5507:381,-71,-58,0,0,0.0883243 -5457,5507:380,-70,-58,0,0,0.0850147 -5458,5506:489,-69,-58,0,0,0.0822278 -5459,5506:488,-68,-58,0,0,0.0799088 -5460,5506:487,-67,-58,0,0,0.0788725 -5461,5506:486,-66,-58,0,0,0.0787009 -5462,5506:485,-65,-58,0,0,0.083367 -5463,5506:384,-64,-58,0,0,0.0901108 -5464,5506:383,-63,-58,0,0,0.0913826 -5465,5506:382,-62,-58,0,0,0.0934071 -5466,5505:488,-58,-58,0,0,0.0794868 -5467,5505:486,-56,-58,0,0,0.0778265 -5468,5505:485,-55,-58,0,0,0.0767056 -5469,5505:384,-54,-58,0,0,0.0750416 -5470,5505:383,-53,-58,0,0,0.0750488 -5471,5505:382,-52,-58,0,0,0.0750416 -5472,5505:381,-51,-58,0,0,0.0750201 -5473,5505:380,-50,-58,0,0,0.0749988 -5474,5504:489,-49,-58,0,0,0.0750131 -5475,5504:488,-48,-58,0,0,0.0749775 -5476,5504:487,-47,-58,0,0,0.0749631 -5477,5504:486,-46,-58,0,0,0.0749562 -5478,5504:485,-45,-58,0,0,0.0749562 -5479,5504:384,-44,-58,0,0,0.0749631 -5480,5504:383,-43,-58,0,0,0.0749631 -5481,5504:382,-42,-58,0,0,0.0749631 -5482,5504:381,-41,-58,0,0,0.0749631 -5483,5504:380,-40,-58,0,0,0.0749703 -5484,5503:489,-39,-58,0,0,0.0749775 -5485,5503:488,-38,-58,0,0,0.0749846 -5486,5503:487,-37,-58,0,0,0.0749916 -5487,5503:486,-36,-58,0,0,0.0749916 -5488,5503:485,-35,-58,0,0,0.0749916 -5489,5503:384,-34,-58,0,0,0.0749916 -5490,5503:383,-33,-58,0,0,0.0749916 -5491,5503:382,-32,-58,0,0,0.0749916 -5492,5503:381,-31,-58,0,0,0.0749916 -5493,5503:380,-30,-58,0,0,0.0749846 -5494,5502:489,-29,-58,0,0,0.0749846 -5495,5502:488,-28,-58,0,0,0.0749846 -5496,5502:487,-27,-58,0,0,0.0749775 -5497,5502:486,-26,-58,0,0,0.0749775 -5498,5502:485,-25,-58,0,0,0.0749703 -5499,5502:384,-24,-58,0,0,0.0749631 -5500,5502:383,-23,-58,0,0,0.0749562 -5501,5502:382,-22,-58,0,0,0.074949 -5502,5502:381,-21,-58,0,0,0.0749418 -5503,5502:380,-20,-58,0,0,0.0749275 -5504,5501:489,-19,-58,0,0,0.0749062 -5505,5501:488,-18,-58,0,0,0.074892 -5506,5501:487,-17,-58,0,0,0.0748777 -5507,5501:486,-16,-58,0,0,0.0748564 -5508,5501:485,-15,-58,0,0,0.0748493 -5509,5501:384,-14,-58,0,0,0.0748493 -5510,5501:383,-13,-58,0,0,0.0748493 -5511,5501:382,-12,-58,0,0,0.0748564 -5512,5501:381,-11,-58,0,0,0.0748636 -5513,5501:380,-10,-58,0,0,0.0748636 -5514,5500:489,-9,-58,0,0,0.0748777 -5515,5500:488,-8,-58,0,0,0.0748849 -5516,5500:487,-7,-58,0,0,0.0748849 -5517,5500:486,-6,-58,0,0,0.0748636 -5518,5500:485,-5,-58,0,0,0.0748564 -5519,5500:384,-4,-58,0,0,0.0748493 -5520,5500:383,-3,-58,0,0,0.0748421 -5521,5500:382,-2,-58,0,0,0.0748564 -5522,5500:381,-1,-58,0,0,0.0748777 -5523,3500:381,0,-58,0,0,0.074892 -5524,3500:381,1,-58,0,0,0.0749062 -5525,3500:382,2,-58,0,0,0.0748777 -5526,3500:383,3,-58,0,0,0.0748636 -5527,3500:384,4,-58,0,0,0.0748705 -5528,3500:485,5,-58,0,0,0.0748849 -5529,3500:486,6,-58,0,0,0.074899 -5530,3500:487,7,-58,0,0,0.0749062 -5531,3500:488,8,-58,0,0,0.0749275 -5532,3500:489,9,-58,0,0,0.0749418 -5533,3501:380,10,-58,0,0,0.0749562 -5534,3501:381,11,-58,0,0,0.0749631 -5535,3501:382,12,-58,0,0,0.0749562 -5536,3501:383,13,-58,0,0,0.074949 -5537,3501:384,14,-58,0,0,0.0748777 -5538,3501:485,15,-58,0,0,0.0748493 -5539,3501:486,16,-58,0,0,0.0748137 -5540,3501:487,17,-58,0,0,0.0747852 -5541,3501:488,18,-58,0,0,0.0747711 -5542,3501:489,19,-58,0,0,0.0747711 -5543,3502:380,20,-58,0,0,0.0747781 -5544,3502:381,21,-58,0,0,0.0747781 -5545,3502:382,22,-58,0,0,0.0747781 -5546,3502:383,23,-58,0,0,0.0747711 -5547,3502:384,24,-58,0,0,0.0747781 -5548,3502:485,25,-58,0,0,0.074764 -5549,3502:486,26,-58,0,0,0.0748208 -5550,3502:487,27,-58,0,0,0.0748493 -5551,3502:488,28,-58,0,0,0.0748849 -5552,3502:489,29,-58,0,0,0.0749275 -5553,3503:380,30,-58,0,0,0.0749775 -5554,3503:381,31,-58,0,0,0.0749703 -5555,3503:382,32,-58,0,0,0.0748705 -5556,3503:383,33,-58,0,0,0.0749062 -5557,3503:384,34,-58,0,0,0.0749133 -5558,3503:485,35,-58,0,0,0.0749062 -5559,3503:486,36,-58,0,0,0.0749062 -5560,3503:487,37,-58,0,0,0.0748705 -5561,3503:488,38,-58,0,0,0.0748421 -5562,3503:489,39,-58,0,0,0.0748349 -5563,3504:380,40,-58,0,0,0.0748349 -5564,3504:381,41,-58,0,0,0.074828 -5565,3504:382,42,-58,0,0,0.0748493 -5566,3504:383,43,-58,0,0,0.0748849 -5567,3504:384,44,-58,0,0,0.0749133 -5568,3504:485,45,-58,0,0,0.0749275 -5569,3504:486,46,-58,0,0,0.0749346 -5570,3504:487,47,-58,0,0,0.0749418 -5571,3504:488,48,-58,0,0,0.0749631 -5572,3504:489,49,-58,0,0,0.0749562 -5573,3505:380,50,-58,0,0,0.0749775 -5574,3505:381,51,-58,0,0,0.0749775 -5575,3505:382,52,-58,0,0,0.0750201 -5576,3505:383,53,-58,0,0,0.0750201 -5577,3505:384,54,-58,0,0,0.0750273 -5578,3505:485,55,-58,0,0,0.0750131 -5579,3505:486,56,-58,0,0,0.0749775 -5580,3505:487,57,-58,0,0,0.0749562 -5581,3505:488,58,-58,0,0,0.0749418 -5582,3505:489,59,-58,0,0,0.0749346 -5583,3506:380,60,-58,0,0,0.0749275 -5584,3506:381,61,-58,0,0,0.0749133 -5585,3506:382,62,-58,0,0,0.0750273 -5586,3506:383,63,-58,0,0,0.0749133 -5587,3506:384,64,-58,0,0,0.0749275 -5588,3506:485,65,-58,0,0,0.0749418 -5589,3506:486,66,-58,0,0,0.0749562 -5590,3506:487,67,-58,0,0,0.0749703 -5591,3506:488,68,-58,0,0,0.0749703 -5592,3506:489,69,-58,0,0,0.074949 -5593,3507:380,70,-58,0,0,0.0749205 -5594,3507:381,71,-58,0,0,0.074892 -5595,3507:382,72,-58,0,0,0.074899 -5596,3507:384,74,-58,0,0,0.0749562 -5597,3507:485,75,-58,0,0,0.0749275 -5598,3507:486,76,-58,0,0,0.074899 -5599,3507:487,77,-58,0,0,0.0749133 -5600,3507:488,78,-58,0,0,0.0749205 -5601,3507:489,79,-58,0,0,0.0749418 -5602,3508:380,80,-58,0,0,0.074949 -5603,3508:381,81,-58,0,0,0.0749346 -5604,3508:382,82,-58,0,0,0.0749346 -5605,3508:383,83,-58,0,0,0.0749846 -5606,3508:384,84,-58,0,0,0.0749916 -5607,3508:485,85,-58,0,0,0.0749846 -5608,3508:486,86,-58,0,0,0.0749846 -5609,3508:487,87,-58,0,0,0.0749846 -5610,3508:488,88,-58,0,0,0.0749631 -5611,3508:489,89,-58,0,0,0.0751771 -5612,3509:380,90,-58,0,0,0.0758803 -5613,3509:381,91,-58,0,0,0.0749916 -5614,3509:382,92,-58,0,0,0.075006 -5615,3509:383,93,-58,0,0,0.0750273 -5616,3509:384,94,-58,0,0,0.0750488 -5617,3509:485,95,-58,0,0,0.0750702 -5618,3509:486,96,-58,0,0,0.0751128 -5619,3509:487,97,-58,0,0,0.0751701 -5620,3509:488,98,-58,0,0,0.0752129 -5621,3509:489,99,-58,0,0,0.0752487 -5622,3510:380,100,-58,0,0,0.0751128 -5623,3510:381,101,-58,0,0,0.0750843 -5624,3510:382,102,-58,0,0,0.0750843 -5625,3510:383,103,-58,0,0,0.075063 -5626,3510:384,104,-58,0,0,0.0750558 -5627,3510:485,105,-58,0,0,0.0750273 -5628,3510:486,106,-58,0,0,0.075006 -5629,3510:487,107,-58,0,0,0.0749846 -5630,3510:488,108,-58,0,0,0.0749775 -5631,3510:489,109,-58,0,0,0.0749775 -5632,3511:380,110,-58,0,0,0.0749846 -5633,3511:381,111,-58,0,0,0.0749775 -5634,3511:382,112,-58,0,0,0.0749562 -5635,3511:383,113,-58,0,0,0.0749846 -5636,3511:384,114,-58,0,0,0.0750131 -5637,3511:485,115,-58,0,0,0.075006 -5638,3511:486,116,-58,0,0,0.0749988 -5639,3511:487,117,-58,0,0,0.0750702 -5640,3511:488,118,-58,0,0,0.0753489 -5641,3511:489,119,-58,0,0,0.0773192 -5642,3512:380,120,-58,0,0,0.0819182 -5643,3512:381,121,-58,0,0,0.0841872 -5644,3512:382,122,-58,0,0,0.0844251 -5645,3512:383,123,-58,0,0,0.084775 -5646,3512:384,124,-58,0,0,0.0836814 -5647,3512:485,125,-58,0,0,0.0772092 -5648,3512:486,126,-58,0,0,0.0794491 -5649,3512:487,127,-58,0,0,0.076234 -5650,3512:488,128,-58,0,0,0.0765384 -5651,3512:489,129,-58,0,0,0.0774584 -5652,3513:380,130,-58,0,0,0.0779296 -5653,3513:381,131,-58,0,0,0.0768076 -5654,3513:382,132,-58,0,0,0.0752916 -5655,3513:383,133,-58,0,0,0.0753203 -5656,3513:384,134,-58,0,0,0.0755207 -5657,3513:485,135,-58,0,0,0.0756355 -5658,3513:486,136,-58,0,0,0.0756932 -5659,3513:487,137,-58,0,0,0.07565 -5660,3513:488,138,-58,0,0,0.0755926 -5661,3513:489,139,-58,0,0,0.0755639 -5662,3514:380,140,-58,0,0,0.0758443 -5663,3514:381,141,-58,0,0,0.0761327 -5664,3514:382,142,-58,0,0,0.0762413 -5665,3514:383,143,-58,0,0,0.0763137 -5666,3514:384,144,-58,0,0,0.0769462 -5667,3514:485,145,-58,0,0,0.0766475 -5668,3514:486,146,-58,0,0,0.0770046 -5669,3514:487,147,-58,0,0,0.075765 -5670,3514:488,148,-58,0,0,0.0753489 -5671,3514:489,149,-58,0,0,0.0755998 -5672,3515:380,150,-58,0,0,0.0752916 -5673,3515:381,151,-58,0,0,0.0750558 -5674,3515:382,152,-58,0,0,0.0750201 -5675,3515:383,153,-58,0,0,0.0751486 -5676,3515:384,154,-58,0,0,0.0750702 -5677,3515:485,155,-58,0,0,0.0750987 -5678,3515:486,156,-58,0,0,0.0750702 -5679,3515:487,157,-58,0,0,0.0750488 -5680,3515:488,158,-58,0,0,0.0750416 -5681,3515:489,159,-58,0,0,0.0750345 -5682,3516:380,160,-58,0,0,0.0750558 -5683,3516:381,161,-58,0,0,0.0750488 -5684,3516:382,162,-58,0,0,0.075063 -5685,3516:383,163,-58,0,0,0.0750843 -5686,3516:384,164,-58,0,0,0.0750843 -5687,3516:485,165,-58,0,0,0.0750702 -5688,3516:486,166,-58,0,0,0.0750987 -5689,3516:487,167,-58,0,0,0.0751059 -5690,3516:488,168,-58,0,0,0.0750987 -5691,3516:489,169,-58,0,0,0.0750915 -5692,3517:380,170,-58,0,0,0.0750702 -5693,3517:381,171,-58,0,0,0.0752559 -5694,3517:382,172,-58,0,0,0.0755854 -5695,3517:383,173,-58,0,0,0.075528 -5696,3517:384,174,-58,0,0,0.0751701 -5697,3517:485,175,-58,0,0,0.0751059 -5698,3517:486,176,-58,0,0,0.0774291 -5699,3517:487,177,-58,0,0,0.0803479 -5700,3517:488,178,-58,0,0,0.0784777 -5701,3517:489,179,-58,0,0,0.0764659 -5702,3518:380,180,-58,0,0,0.0818408 -5703,5518:370,-180,-57,0,0,0.0915705 -5704,5517:479,-179,-57,0,0,0.0912632 -5705,5517:478,-178,-57,0,0,0.0919986 -5706,5517:477,-177,-57,0,0,0.0913909 -5707,5517:476,-176,-57,0,0,0.0899762 -5708,5517:475,-175,-57,0,0,0.0895396 -5709,5517:374,-174,-57,0,0,0.0876071 -5710,5517:373,-173,-57,0,0,0.0861565 -5711,5517:372,-172,-57,0,0,0.0849267 -5712,5517:371,-171,-57,0,0,0.0846875 -5713,5517:370,-170,-57,0,0,0.0871157 -5714,5516:479,-169,-57,0,0,0.0828892 -5715,5516:478,-168,-57,0,0,0.0818255 -5716,5516:477,-167,-57,0,0,0.0801357 -5717,5516:476,-166,-57,0,0,0.0788502 -5718,5516:475,-165,-57,0,0,0.0793366 -5719,5516:374,-164,-57,0,0,0.0808504 -5720,5516:373,-163,-57,0,0,0.0821656 -5721,5516:372,-162,-57,0,0,0.0839735 -5722,5516:371,-161,-57,0,0,0.084576 -5723,5516:370,-160,-57,0,0,0.0849347 -5724,5515:479,-159,-57,0,0,0.085648 -5725,5515:478,-158,-57,0,0,0.0860109 -5726,5515:477,-157,-57,0,0,0.0855435 -5727,5515:476,-156,-57,0,0,0.0848548 -5728,5515:475,-155,-57,0,0,0.084839 -5729,5515:374,-154,-57,0,0,0.0845602 -5730,5515:373,-153,-57,0,0,0.0844806 -5731,5515:372,-152,-57,0,0,0.0850786 -5732,5515:371,-151,-57,0,0,0.0852626 -5733,5515:370,-150,-57,0,0,0.0882168 -5734,5514:479,-149,-57,0,0,0.0860837 -5735,5514:478,-148,-57,0,0,0.0846795 -5736,5514:477,-147,-57,0,0,0.0860028 -5737,5514:476,-146,-57,0,0,0.0891717 -5738,5514:475,-145,-57,0,0,0.0893639 -5739,5514:374,-144,-57,0,0,0.0894561 -5740,5514:373,-143,-57,0,0,0.0884567 -5741,5514:372,-142,-57,0,0,0.0898081 -5742,5514:371,-141,-57,0,0,0.0917159 -5743,5514:370,-140,-57,0,0,0.0890969 -5744,5513:479,-139,-57,0,0,0.0930771 -5745,5513:478,-138,-57,0,0,0.0958986 -5746,5513:477,-137,-57,0,0,0.0950912 -5747,5513:476,-136,-57,0,0,0.0909228 -5748,5513:475,-135,-57,0,0,0.092489 -5749,5513:374,-134,-57,0,0,0.0966228 -5750,5513:373,-133,-57,0,0,0.0979763 -5751,5513:372,-132,-57,0,0,0.0996966 -5752,5513:371,-131,-57,0,0,0.099586 -5753,5513:370,-130,-57,0,0,0.0992458 -5754,5512:479,-129,-57,0,0,0.100344 -5755,5512:478,-128,-57,0,0,0.10136 -5756,5512:477,-127,-57,0,0,0.102082 -5757,5512:476,-126,-57,0,0,0.103247 -5758,5512:475,-125,-57,0,0,0.10228 -5759,5512:374,-124,-57,0,0,0.100911 -5760,5512:373,-123,-57,0,0,0.0999736 -5761,5512:372,-122,-57,0,0,0.100474 -5762,5512:371,-121,-57,0,0,0.101182 -5763,5512:370,-120,-57,0,0,0.10319 -5764,5511:479,-119,-57,0,0,0.103028 -5765,5511:478,-118,-57,0,0,0.104327 -5766,5511:477,-117,-57,0,0,0.106507 -5767,5511:476,-116,-57,0,0,0.108667 -5768,5511:475,-115,-57,0,0,0.107587 -5769,5511:374,-114,-57,0,0,0.110714 -5770,5511:373,-113,-57,0,0,0.11117 -5771,5511:372,-112,-57,0,0,0.112322 -5772,5511:371,-111,-57,0,0,0.109756 -5773,5511:370,-110,-57,0,0,0.106331 -5774,5510:479,-109,-57,0,0,0.108071 -5775,5510:478,-108,-57,0,0,0.11037 -5776,5510:477,-107,-57,0,0,0.110562 -5777,5510:476,-106,-57,0,0,0.110249 -5778,5510:475,-105,-57,0,0,0.109566 -5779,5510:374,-104,-57,0,0,0.108687 -5780,5510:373,-103,-57,0,0,0.107429 -5781,5510:372,-102,-57,0,0,0.104077 -5782,5510:371,-101,-57,0,0,0.101556 -5783,5510:370,-100,-57,0,0,0.103323 -5784,5509:479,-99,-57,0,0,0.102649 -5785,5509:478,-98,-57,0,0,0.100112 -5786,5509:477,-97,-57,0,0,0.099586 -5787,5509:476,-96,-57,0,0,0.100818 -5788,5509:475,-95,-57,0,0,0.0996136 -5789,5509:374,-94,-57,0,0,0.0997334 -5790,5509:373,-93,-57,0,0,0.100455 -5791,5509:372,-92,-57,0,0,0.100958 -5792,5509:371,-91,-57,0,0,0.0986869 -5793,5509:370,-90,-57,0,0,0.102148 -5794,5508:479,-89,-57,0,0,0.101763 -5795,5508:478,-88,-57,0,0,0.107016 -5796,5508:477,-87,-57,0,0,0.110774 -5797,5508:476,-86,-57,0,0,0.108468 -5798,5508:475,-85,-57,0,0,0.103991 -5799,5508:374,-84,-57,0,0,0.103609 -5800,5508:373,-83,-57,0,0,0.105339 -5801,5508:372,-82,-57,0,0,0.106448 -5802,5508:371,-81,-57,0,0,0.100874 -5803,5508:370,-80,-57,0,0,0.0867406 -5804,5507:479,-79,-57,0,0,0.0863265 -5805,5507:478,-78,-57,0,0,0.088316 -5806,5507:477,-77,-57,0,0,0.0939216 -5807,5507:476,-76,-57,0,0,0.100011 -5808,5507:475,-75,-57,0,0,0.0989614 -5809,5507:374,-74,-57,0,0,0.100409 -5810,5507:373,-73,-57,0,0,0.10196 -5811,5507:372,-72,-57,0,0,0.100298 -5812,5507:371,-71,-57,0,0,0.0977767 -5813,5507:370,-70,-57,0,0,0.092558 -5814,5506:479,-69,-57,0,0,0.0889802 -5815,5506:478,-68,-57,0,0,0.0819335 -5816,5506:477,-67,-57,0,0,0.0851426 -5817,5506:476,-66,-57,0,0,0.0820652 -5818,5506:475,-65,-57,0,0,0.0817328 -5819,5506:374,-64,-57,0,0,0.0815943 -5820,5506:373,-63,-57,0,0,0.081548 -5821,5506:372,-62,-57,0,0,0.0876976 -5822,5506:371,-61,-57,0,0,0.0820574 -5823,5506:370,-60,-57,0,0,0.0871483 -5824,5505:477,-57,-57,0,0,0.0793666 -5825,5505:476,-56,-57,0,0,0.0771141 -5826,5505:475,-55,-57,0,0,0.0766111 -5827,5505:374,-54,-57,0,0,0.0759379 -5828,5505:373,-53,-57,0,0,0.07565 -5829,5505:372,-52,-57,0,0,0.0749775 -5830,5505:371,-51,-57,0,0,0.0750273 -5831,5505:370,-50,-57,0,0,0.0750131 -5832,5504:479,-49,-57,0,0,0.0749988 -5833,5504:478,-48,-57,0,0,0.0749846 -5834,5504:477,-47,-57,0,0,0.0749703 -5835,5504:476,-46,-57,0,0,0.0749703 -5836,5504:475,-45,-57,0,0,0.0749775 -5837,5504:374,-44,-57,0,0,0.0749703 -5838,5504:373,-43,-57,0,0,0.074949 -5839,5504:372,-42,-57,0,0,0.0749418 -5840,5504:371,-41,-57,0,0,0.074949 -5841,5504:370,-40,-57,0,0,0.0749562 -5842,5503:479,-39,-57,0,0,0.0749631 -5843,5503:478,-38,-57,0,0,0.0749631 -5844,5503:477,-37,-57,0,0,0.0749703 -5845,5503:476,-36,-57,0,0,0.0749775 -5846,5503:475,-35,-57,0,0,0.0749916 -5847,5503:374,-34,-57,0,0,0.0749988 -5848,5503:373,-33,-57,0,0,0.0749988 -5849,5503:372,-32,-57,0,0,0.0749988 -5850,5503:371,-31,-57,0,0,0.0749916 -5851,5503:370,-30,-57,0,0,0.0749916 -5852,5502:479,-29,-57,0,0,0.0749916 -5853,5502:478,-28,-57,0,0,0.0749916 -5854,5502:477,-27,-57,0,0,0.0749846 -5855,5502:476,-26,-57,0,0,0.0749846 -5856,5502:475,-25,-57,0,0,0.0749775 -5857,5502:374,-24,-57,0,0,0.0749703 -5858,5502:373,-23,-57,0,0,0.0749631 -5859,5502:372,-22,-57,0,0,0.074949 -5860,5502:371,-21,-57,0,0,0.0749346 -5861,5502:370,-20,-57,0,0,0.0749205 -5862,5501:479,-19,-57,0,0,0.074899 -5863,5501:478,-18,-57,0,0,0.0748777 -5864,5501:477,-17,-57,0,0,0.0748636 -5865,5501:476,-16,-57,0,0,0.0748564 -5866,5501:475,-15,-57,0,0,0.0748493 -5867,5501:374,-14,-57,0,0,0.0748493 -5868,5501:373,-13,-57,0,0,0.0748564 -5869,5501:372,-12,-57,0,0,0.0748564 -5870,5501:371,-11,-57,0,0,0.0748705 -5871,5501:370,-10,-57,0,0,0.0748777 -5872,5500:479,-9,-57,0,0,0.0748705 -5873,5500:478,-8,-57,0,0,0.0748705 -5874,5500:477,-7,-57,0,0,0.0748705 -5875,5500:476,-6,-57,0,0,0.0748705 -5876,5500:475,-5,-57,0,0,0.0748636 -5877,5500:374,-4,-57,0,0,0.0748564 -5878,5500:373,-3,-57,0,0,0.0748493 -5879,5500:372,-2,-57,0,0,0.0748564 -5880,5500:371,-1,-57,0,0,0.0748564 -5881,3500:371,0,-57,0,0,0.0748636 -5882,3500:371,1,-57,0,0,0.0748705 -5883,3500:372,2,-57,0,0,0.074892 -5884,3500:373,3,-57,0,0,0.0748849 -5885,3500:374,4,-57,0,0,0.0748777 -5886,3500:475,5,-57,0,0,0.0748777 -5887,3500:476,6,-57,0,0,0.074892 -5888,3500:477,7,-57,0,0,0.0749062 -5889,3500:478,8,-57,0,0,0.0749133 -5890,3500:479,9,-57,0,0,0.0749275 -5891,3501:370,10,-57,0,0,0.074949 -5892,3501:371,11,-57,0,0,0.0749703 -5893,3501:372,12,-57,0,0,0.0749562 -5894,3501:373,13,-57,0,0,0.0749562 -5895,3501:374,14,-57,0,0,0.0749562 -5896,3501:475,15,-57,0,0,0.0749133 -5897,3501:476,16,-57,0,0,0.0748636 -5898,3501:477,17,-57,0,0,0.0748349 -5899,3501:478,18,-57,0,0,0.0747711 -5900,3501:479,19,-57,0,0,0.0747425 -5901,3502:370,20,-57,0,0,0.0748137 -5902,3502:371,21,-57,0,0,0.0748065 -5903,3502:372,22,-57,0,0,0.074764 -5904,3502:373,23,-57,0,0,0.074764 -5905,3502:374,24,-57,0,0,0.074764 -5906,3502:475,25,-57,0,0,0.0747497 -5907,3502:476,26,-57,0,0,0.074892 -5908,3502:477,27,-57,0,0,0.0750558 -5909,3502:478,28,-57,0,0,0.0753272 -5910,3502:479,29,-57,0,0,0.0753344 -5911,3503:370,30,-57,0,0,0.0752273 -5912,3503:371,31,-57,0,0,0.0751987 -5913,3503:372,32,-57,0,0,0.0750843 -5914,3503:373,33,-57,0,0,0.0748137 -5915,3503:374,34,-57,0,0,0.0748493 -5916,3503:475,35,-57,0,0,0.0748636 -5917,3503:476,36,-57,0,0,0.0748705 -5918,3503:477,37,-57,0,0,0.0748705 -5919,3503:478,38,-57,0,0,0.0748636 -5920,3503:479,39,-57,0,0,0.0748564 -5921,3504:370,40,-57,0,0,0.074828 -5922,3504:371,41,-57,0,0,0.0748493 -5923,3504:372,42,-57,0,0,0.0749062 -5924,3504:373,43,-57,0,0,0.0749631 -5925,3504:374,44,-57,0,0,0.0748349 -5926,3504:475,45,-57,0,0,0.0748493 -5927,3504:476,46,-57,0,0,0.0748705 -5928,3504:477,47,-57,0,0,0.0748777 -5929,3504:478,48,-57,0,0,0.0748705 -5930,3504:479,49,-57,0,0,0.0748705 -5931,3505:370,50,-57,0,0,0.0748849 -5932,3505:371,51,-57,0,0,0.0749062 -5933,3505:372,52,-57,0,0,0.0749133 -5934,3505:373,53,-57,0,0,0.0749275 -5935,3505:374,54,-57,0,0,0.0749346 -5936,3505:475,55,-57,0,0,0.0749275 -5937,3505:476,56,-57,0,0,0.0749775 -5938,3505:477,57,-57,0,0,0.0749346 -5939,3505:478,58,-57,0,0,0.0749418 -5940,3505:479,59,-57,0,0,0.0749418 -5941,3506:370,60,-57,0,0,0.0749418 -5942,3506:371,61,-57,0,0,0.0749631 -5943,3506:372,62,-57,0,0,0.0749562 -5944,3506:373,63,-57,0,0,0.0749562 -5945,3506:374,64,-57,0,0,0.0749631 -5946,3506:475,65,-57,0,0,0.0749703 -5947,3506:476,66,-57,0,0,0.0749846 -5948,3506:477,67,-57,0,0,0.0749916 -5949,3506:478,68,-57,0,0,0.0749775 -5950,3506:479,69,-57,0,0,0.0750131 -5951,3507:370,70,-57,0,0,0.0749562 -5952,3507:371,71,-57,0,0,0.0751059 -5953,3507:372,72,-57,0,0,0.0749275 -5954,3507:374,74,-57,0,0,0.0752559 -5955,3507:475,75,-57,0,0,0.0757937 -5956,3507:476,76,-57,0,0,0.0749846 -5957,3507:477,77,-57,0,0,0.074899 -5958,3507:478,78,-57,0,0,0.0753417 -5959,3507:479,79,-57,0,0,0.0749916 -5960,3508:370,80,-57,0,0,0.0749631 -5961,3508:371,81,-57,0,0,0.0750273 -5962,3508:372,82,-57,0,0,0.075063 -5963,3508:373,83,-57,0,0,0.0754562 -5964,3508:374,84,-57,0,0,0.0748705 -5965,3508:475,85,-57,0,0,0.0749346 -5966,3508:476,86,-57,0,0,0.0749418 -5967,3508:477,87,-57,0,0,0.0749346 -5968,3508:478,88,-57,0,0,0.074892 -5969,3508:479,89,-57,0,0,0.0755424 -5970,3509:370,90,-57,0,0,0.0758155 -5971,3509:371,91,-57,0,0,0.0770046 -5972,3509:372,92,-57,0,0,0.0764296 -5973,3509:373,93,-57,0,0,0.0754779 -5974,3509:374,94,-57,0,0,0.0749916 -5975,3509:475,95,-57,0,0,0.0750201 -5976,3509:476,96,-57,0,0,0.0750416 -5977,3509:477,97,-57,0,0,0.075063 -5978,3509:478,98,-57,0,0,0.0750702 -5979,3509:479,99,-57,0,0,0.0750773 -5980,3510:370,100,-57,0,0,0.0750773 -5981,3510:371,101,-57,0,0,0.075063 -5982,3510:372,102,-57,0,0,0.0750488 -5983,3510:373,103,-57,0,0,0.075006 -5984,3510:374,104,-57,0,0,0.075006 -5985,3510:475,105,-57,0,0,0.0750131 -5986,3510:476,106,-57,0,0,0.0749916 -5987,3510:477,107,-57,0,0,0.0749916 -5988,3510:478,108,-57,0,0,0.0749916 -5989,3510:479,109,-57,0,0,0.0749846 -5990,3511:370,110,-57,0,0,0.0749631 -5991,3511:371,111,-57,0,0,0.0749562 -5992,3511:372,112,-57,0,0,0.0749631 -5993,3511:373,113,-57,0,0,0.0749346 -5994,3511:374,114,-57,0,0,0.0757722 -5995,3511:475,115,-57,0,0,0.0779075 -5996,3511:476,116,-57,0,0,0.0752415 -5997,3511:477,117,-57,0,0,0.0751558 -5998,3511:478,118,-57,0,0,0.0784555 -5999,3511:479,119,-57,0,0,0.0795921 -6000,3512:370,120,-57,0,0,0.0804619 -6001,3512:371,121,-57,0,0,0.0847113 -6002,3512:372,122,-57,0,0,0.0877551 -6003,3512:373,123,-57,0,0,0.0883079 -6004,3512:374,124,-57,0,0,0.0889802 -6005,3512:475,125,-57,0,0,0.0891717 -6006,3512:476,126,-57,0,0,0.0889469 -6007,3512:477,127,-57,0,0,0.0878704 -6008,3512:478,128,-57,0,0,0.0874676 -6009,3512:479,129,-57,0,0,0.0853911 -6010,3513:370,130,-57,0,0,0.0864725 -6011,3513:371,131,-57,0,0,0.0867814 -6012,3513:372,132,-57,0,0,0.0906516 -6013,3513:373,133,-57,0,0,0.08959 -6014,3513:374,134,-57,0,0,0.0781663 -6015,3513:475,135,-57,0,0,0.0827956 -6016,3513:476,136,-57,0,0,0.0795168 -6017,3513:477,137,-57,0,0,0.0800599 -6018,3513:478,138,-57,0,0,0.0754562 -6019,3513:479,139,-57,0,0,0.0753703 -6020,3514:370,140,-57,0,0,0.0765166 -6021,3514:371,141,-57,0,0,0.0780775 -6022,3514:372,142,-57,0,0,0.079577 -6023,3514:373,143,-57,0,0,0.0798634 -6024,3514:374,144,-57,0,0,0.0796146 -6025,3514:475,145,-57,0,0,0.0822899 -6026,3514:476,146,-57,0,0,0.0803785 -6027,3514:477,147,-57,0,0,0.0760606 -6028,3514:478,148,-57,0,0,0.0759019 -6029,3514:479,149,-57,0,0,0.0756141 -6030,3515:370,150,-57,0,0,0.0756787 -6031,3515:371,151,-57,0,0,0.075686 -6032,3515:372,152,-57,0,0,0.0754275 -6033,3515:373,153,-57,0,0,0.0753203 -6034,3515:374,154,-57,0,0,0.0753489 -6035,3515:475,155,-57,0,0,0.0752343 -6036,3515:476,156,-57,0,0,0.0751558 -6037,3515:477,157,-57,0,0,0.0750773 -6038,3515:478,158,-57,0,0,0.0750773 -6039,3515:479,159,-57,0,0,0.075063 -6040,3516:370,160,-57,0,0,0.0750702 -6041,3516:371,161,-57,0,0,0.0750773 -6042,3516:372,162,-57,0,0,0.0750702 -6043,3516:373,163,-57,0,0,0.0750843 -6044,3516:374,164,-57,0,0,0.0750915 -6045,3516:475,165,-57,0,0,0.0751486 -6046,3516:476,166,-57,0,0,0.0752129 -6047,3516:477,167,-57,0,0,0.0752559 -6048,3516:478,168,-57,0,0,0.0758225 -6049,3516:479,169,-57,0,0,0.0782775 -6050,3517:370,170,-57,0,0,0.0796146 -6051,3517:371,171,-57,0,0,0.07969 -6052,3517:372,172,-57,0,0,0.0821503 -6053,3517:373,173,-57,0,0,0.0782108 -6054,3517:374,174,-57,0,0,0.0756285 -6055,3517:475,175,-57,0,0,0.0769462 -6056,3517:476,176,-57,0,0,0.090533 -6057,3517:477,177,-57,0,0,0.088316 -6058,3517:478,178,-57,0,0,0.0825073 -6059,3517:479,179,-57,0,0,0.0931811 -6060,3518:370,180,-57,0,0,0.0915705 -6061,5518:360,-180,-56,0,0,0.110138 -6062,5517:469,-179,-56,0,0,0.0982946 -6063,5517:468,-178,-56,0,0,0.0975051 -6064,5517:467,-177,-56,0,0,0.0968562 -6065,5517:466,-176,-56,0,0,0.0947733 -6066,5517:465,-175,-56,0,0,0.0946147 -6067,5517:364,-174,-56,0,0,0.0952592 -6068,5517:363,-173,-56,0,0,0.0917072 -6069,5517:362,-172,-56,0,0,0.0933723 -6070,5517:361,-171,-56,0,0,0.0919986 -6071,5517:360,-170,-56,0,0,0.0904146 -6072,5516:469,-169,-56,0,0,0.0873611 -6073,5516:468,-168,-56,0,0,0.0859705 -6074,5516:467,-167,-56,0,0,0.0862535 -6075,5516:466,-166,-56,0,0,0.0862212 -6076,5516:465,-165,-56,0,0,0.0856399 -6077,5516:364,-164,-56,0,0,0.0855033 -6078,5516:363,-163,-56,0,0,0.0842109 -6079,5516:362,-162,-56,0,0,0.083926 -6080,5516:361,-161,-56,0,0,0.0845124 -6081,5516:360,-160,-56,0,0,0.0849187 -6082,5515:469,-159,-56,0,0,0.0852946 -6083,5515:468,-158,-56,0,0,0.0856802 -6084,5515:467,-157,-56,0,0,0.0861402 -6085,5515:466,-156,-56,0,0,0.0862535 -6086,5515:465,-155,-56,0,0,0.0866024 -6087,5515:364,-154,-56,0,0,0.0862859 -6088,5515:363,-153,-56,0,0,0.0854954 -6089,5515:362,-152,-56,0,0,0.0860514 -6090,5515:361,-151,-56,0,0,0.0871648 -6091,5515:360,-150,-56,0,0,0.0913058 -6092,5514:469,-149,-56,0,0,0.0929644 -6093,5514:468,-148,-56,0,0,0.092222 -6094,5514:467,-147,-56,0,0,0.0868791 -6095,5514:466,-146,-56,0,0,0.087714 -6096,5514:465,-145,-56,0,0,0.0875908 -6097,5514:364,-144,-56,0,0,0.0921619 -6098,5514:363,-143,-56,0,0,0.0917328 -6099,5514:362,-142,-56,0,0,0.0898753 -6100,5514:361,-141,-56,0,0,0.090855 -6101,5514:360,-140,-56,0,0,0.0914594 -6102,5513:469,-139,-56,0,0,0.0941056 -6103,5513:468,-138,-56,0,0,0.0958899 -6104,5513:467,-137,-56,0,0,0.0957386 -6105,5513:466,-136,-56,0,0,0.0949674 -6106,5513:465,-135,-56,0,0,0.0973334 -6107,5513:364,-134,-56,0,0,0.0989247 -6108,5513:363,-133,-56,0,0,0.0990439 -6109,5513:362,-132,-56,0,0,0.0991813 -6110,5513:361,-131,-56,0,0,0.099752 -6111,5513:360,-130,-56,0,0,0.100502 -6112,5512:469,-129,-56,0,0,0.103066 -6113,5512:468,-128,-56,0,0,0.1028 -6114,5512:467,-127,-56,0,0,0.103418 -6115,5512:466,-126,-56,0,0,0.104567 -6116,5512:465,-125,-56,0,0,0.104058 -6117,5512:364,-124,-56,0,0,0.102167 -6118,5512:363,-123,-56,0,0,0.101537 -6119,5512:362,-122,-56,0,0,0.100837 -6120,5512:361,-121,-56,0,0,0.101904 -6121,5512:360,-120,-56,0,0,0.105029 -6122,5511:469,-119,-56,0,0,0.106663 -6123,5511:468,-118,-56,0,0,0.107301 -6124,5511:467,-117,-56,0,0,0.10817 -6125,5511:466,-116,-56,0,0,0.109235 -6126,5511:465,-115,-56,0,0,0.109857 -6127,5511:364,-114,-56,0,0,0.110108 -6128,5511:363,-113,-56,0,0,0.111668 -6129,5511:362,-112,-56,0,0,0.113795 -6130,5511:361,-111,-56,0,0,0.113774 -6131,5511:360,-110,-56,0,0,0.110229 -6132,5510:469,-109,-56,0,0,0.108866 -6133,5510:468,-108,-56,0,0,0.111587 -6134,5510:467,-107,-56,0,0,0.113495 -6135,5510:466,-106,-56,0,0,0.112476 -6136,5510:465,-105,-56,0,0,0.108458 -6137,5510:364,-104,-56,0,0,0.106262 -6138,5510:363,-103,-56,0,0,0.105252 -6139,5510:362,-102,-56,0,0,0.104827 -6140,5510:361,-101,-56,0,0,0.104576 -6141,5510:360,-100,-56,0,0,0.103304 -6142,5509:469,-99,-56,0,0,0.10212 -6143,5509:468,-98,-56,0,0,0.100837 -6144,5509:467,-97,-56,0,0,0.102857 -6145,5509:466,-96,-56,0,0,0.105252 -6146,5509:465,-95,-56,0,0,0.103886 -6147,5509:364,-94,-56,0,0,0.102271 -6148,5509:363,-93,-56,0,0,0.101547 -6149,5509:362,-92,-56,0,0,0.102205 -6150,5509:361,-91,-56,0,0,0.103953 -6151,5509:360,-90,-56,0,0,0.101988 -6152,5508:469,-89,-56,0,0,0.10165 -6153,5508:468,-88,-56,0,0,0.111485 -6154,5508:467,-87,-56,0,0,0.112887 -6155,5508:466,-86,-56,0,0,0.11032 -6156,5508:465,-85,-56,0,0,0.107301 -6157,5508:364,-84,-56,0,0,0.105912 -6158,5508:363,-83,-56,0,0,0.10814 -6159,5508:362,-82,-56,0,0,0.109606 -6160,5508:361,-81,-56,0,0,0.111893 -6161,5508:360,-80,-56,0,0,0.110299 -6162,5507:469,-79,-56,0,0,0.10027 -6163,5507:468,-78,-56,0,0,0.0920156 -6164,5507:467,-77,-56,0,0,0.0899004 -6165,5507:466,-76,-56,0,0,0.0922133 -6166,5507:465,-75,-56,0,0,0.0959255 -6167,5507:364,-74,-56,0,0,0.0987326 -6168,5507:363,-73,-56,0,0,0.108916 -6169,5507:362,-72,-56,0,0,0.104106 -6170,5507:361,-71,-56,0,0,0.105155 -6171,5507:360,-70,-56,0,0,0.10531 -6172,5506:469,-69,-56,0,0,0.10357 -6173,5506:468,-68,-56,0,0,0.0978492 -6174,5506:467,-67,-56,0,0,0.0966945 -6175,5506:466,-66,-56,0,0,0.0886891 -6176,5506:465,-65,-56,0,0,0.0808733 -6177,5506:364,-64,-56,0,0,0.0796146 -6178,5506:363,-63,-56,0,0,0.0793591 -6179,5506:362,-62,-56,0,0,0.0796071 -6180,5506:361,-61,-56,0,0,0.0796447 -6181,5506:360,-60,-56,0,0,0.0797653 -6182,5505:469,-59,-56,0,0,0.0799164 -6183,5505:468,-58,-56,0,0,0.080007 -6184,5505:467,-57,-56,0,0,0.0780996 -6185,5505:466,-56,-56,0,0,0.0784333 -6186,5505:465,-55,-56,0,0,0.0775981 -6187,5505:364,-54,-56,0,0,0.0763281 -6188,5505:363,-53,-56,0,0,0.0751059 -6189,5505:362,-52,-56,0,0,0.0751059 -6190,5505:361,-51,-56,0,0,0.0749988 -6191,5505:360,-50,-56,0,0,0.0749846 -6192,5504:469,-49,-56,0,0,0.0749775 -6193,5504:468,-48,-56,0,0,0.0749846 -6194,5504:467,-47,-56,0,0,0.0749916 -6195,5504:466,-46,-56,0,0,0.075006 -6196,5504:465,-45,-56,0,0,0.0749988 -6197,5504:364,-44,-56,0,0,0.0749775 -6198,5504:363,-43,-56,0,0,0.0749631 -6199,5504:362,-42,-56,0,0,0.074949 -6200,5504:361,-41,-56,0,0,0.0749275 -6201,5504:360,-40,-56,0,0,0.0749133 -6202,5503:469,-39,-56,0,0,0.0749062 -6203,5503:468,-38,-56,0,0,0.0749205 -6204,5503:467,-37,-56,0,0,0.0749346 -6205,5503:466,-36,-56,0,0,0.0749418 -6206,5503:465,-35,-56,0,0,0.0749703 -6207,5503:364,-34,-56,0,0,0.0749846 -6208,5503:363,-33,-56,0,0,0.0749846 -6209,5503:362,-32,-56,0,0,0.0749916 -6210,5503:361,-31,-56,0,0,0.0749988 -6211,5503:360,-30,-56,0,0,0.0749916 -6212,5502:469,-29,-56,0,0,0.0749916 -6213,5502:468,-28,-56,0,0,0.0749846 -6214,5502:467,-27,-56,0,0,0.0749846 -6215,5502:466,-26,-56,0,0,0.0749846 -6216,5502:465,-25,-56,0,0,0.0749846 -6217,5502:364,-24,-56,0,0,0.0749703 -6218,5502:363,-23,-56,0,0,0.0749631 -6219,5502:362,-22,-56,0,0,0.0749418 -6220,5502:361,-21,-56,0,0,0.0749275 -6221,5502:360,-20,-56,0,0,0.0749133 -6222,5501:469,-19,-56,0,0,0.074899 -6223,5501:468,-18,-56,0,0,0.0748777 -6224,5501:467,-17,-56,0,0,0.0748636 -6225,5501:466,-16,-56,0,0,0.074892 -6226,5501:465,-15,-56,0,0,0.0749275 -6227,5501:364,-14,-56,0,0,0.0749133 -6228,5501:363,-13,-56,0,0,0.0748849 -6229,5501:362,-12,-56,0,0,0.0748777 -6230,5501:361,-11,-56,0,0,0.0748705 -6231,5501:360,-10,-56,0,0,0.0748636 -6232,5500:469,-9,-56,0,0,0.0748705 -6233,5500:468,-8,-56,0,0,0.0748636 -6234,5500:467,-7,-56,0,0,0.0748564 -6235,5500:466,-6,-56,0,0,0.0748636 -6236,5500:465,-5,-56,0,0,0.0748636 -6237,5500:364,-4,-56,0,0,0.0748705 -6238,5500:363,-3,-56,0,0,0.0748705 -6239,5500:362,-2,-56,0,0,0.0748705 -6240,5500:361,-1,-56,0,0,0.0748636 -6241,3500:361,0,-56,0,0,0.0748777 -6242,3500:361,1,-56,0,0,0.0748849 -6243,3500:362,2,-56,0,0,0.0748849 -6244,3500:363,3,-56,0,0,0.0748777 -6245,3500:364,4,-56,0,0,0.0748705 -6246,3500:465,5,-56,0,0,0.0748849 -6247,3500:466,6,-56,0,0,0.074899 -6248,3500:467,7,-56,0,0,0.0749205 -6249,3500:468,8,-56,0,0,0.0749275 -6250,3500:469,9,-56,0,0,0.0749346 -6251,3501:360,10,-56,0,0,0.074949 -6252,3501:361,11,-56,0,0,0.0749418 -6253,3501:362,12,-56,0,0,0.074949 -6254,3501:363,13,-56,0,0,0.0749631 -6255,3501:364,14,-56,0,0,0.074949 -6256,3501:465,15,-56,0,0,0.0749205 -6257,3501:466,16,-56,0,0,0.0749062 -6258,3501:467,17,-56,0,0,0.0748849 -6259,3501:468,18,-56,0,0,0.0748636 -6260,3501:469,19,-56,0,0,0.0747996 -6261,3502:360,20,-56,0,0,0.0747425 -6262,3502:361,21,-56,0,0,0.0748208 -6263,3502:362,22,-56,0,0,0.0748777 -6264,3502:363,23,-56,0,0,0.0748777 -6265,3502:364,24,-56,0,0,0.0748564 -6266,3502:465,25,-56,0,0,0.0748564 -6267,3502:466,26,-56,0,0,0.0748564 -6268,3502:467,27,-56,0,0,0.0748849 -6269,3502:468,28,-56,0,0,0.075006 -6270,3502:469,29,-56,0,0,0.0753417 -6271,3503:360,30,-56,0,0,0.0753631 -6272,3503:361,31,-56,0,0,0.0751486 -6273,3503:362,32,-56,0,0,0.0751771 -6274,3503:363,33,-56,0,0,0.0751843 -6275,3503:364,34,-56,0,0,0.0751344 -6276,3503:465,35,-56,0,0,0.0749062 -6277,3503:466,36,-56,0,0,0.0748849 -6278,3503:467,37,-56,0,0,0.0748636 -6279,3503:468,38,-56,0,0,0.0748705 -6280,3503:469,39,-56,0,0,0.0748777 -6281,3504:360,40,-56,0,0,0.0748705 -6282,3504:361,41,-56,0,0,0.0748493 -6283,3504:362,42,-56,0,0,0.0748705 -6284,3504:363,43,-56,0,0,0.0749346 -6285,3504:364,44,-56,0,0,0.0750201 -6286,3504:465,45,-56,0,0,0.0754061 -6287,3504:466,46,-56,0,0,0.0751987 -6288,3504:467,47,-56,0,0,0.0748137 -6289,3504:468,48,-56,0,0,0.074828 -6290,3504:469,49,-56,0,0,0.0748349 -6291,3505:360,50,-56,0,0,0.0748421 -6292,3505:361,51,-56,0,0,0.0748564 -6293,3505:362,52,-56,0,0,0.0748636 -6294,3505:363,53,-56,0,0,0.0748636 -6295,3505:364,54,-56,0,0,0.0748564 -6296,3505:465,55,-56,0,0,0.0752844 -6297,3505:466,56,-56,0,0,0.0750773 -6298,3505:467,57,-56,0,0,0.074949 -6299,3505:468,58,-56,0,0,0.0749275 -6300,3505:469,59,-56,0,0,0.0749418 -6301,3506:360,60,-56,0,0,0.0749562 -6302,3506:361,61,-56,0,0,0.0749562 -6303,3506:362,62,-56,0,0,0.0750843 -6304,3506:363,63,-56,0,0,0.0749846 -6305,3506:364,64,-56,0,0,0.0750131 -6306,3506:465,65,-56,0,0,0.0751344 -6307,3506:466,66,-56,0,0,0.0750273 -6308,3506:467,67,-56,0,0,0.0750558 -6309,3506:468,68,-56,0,0,0.0758586 -6310,3506:469,69,-56,0,0,0.0779591 -6311,3507:360,70,-56,0,0,0.0765967 -6312,3507:361,71,-56,0,0,0.075974 -6313,3507:362,72,-56,0,0,0.0764296 -6314,3507:364,74,-56,0,0,0.0756285 -6315,3507:465,75,-56,0,0,0.0759452 -6316,3507:466,76,-56,0,0,0.0761256 -6317,3507:467,77,-56,0,0,0.0755926 -6318,3507:468,78,-56,0,0,0.0754921 -6319,3507:469,79,-56,0,0,0.0755207 -6320,3508:360,80,-56,0,0,0.07565 -6321,3508:361,81,-56,0,0,0.0754849 -6322,3508:362,82,-56,0,0,0.0757795 -6323,3508:363,83,-56,0,0,0.0766839 -6324,3508:364,84,-56,0,0,0.0765166 -6325,3508:465,85,-56,0,0,0.076039 -6326,3508:466,86,-56,0,0,0.0747852 -6327,3508:467,87,-56,0,0,0.074892 -6328,3508:468,88,-56,0,0,0.0749062 -6329,3508:469,89,-56,0,0,0.074899 -6330,3509:360,90,-56,0,0,0.0749631 -6331,3509:361,91,-56,0,0,0.0759452 -6332,3509:362,92,-56,0,0,0.0774365 -6333,3509:363,93,-56,0,0,0.0774658 -6334,3509:364,94,-56,0,0,0.0768877 -6335,3509:465,95,-56,0,0,0.0751059 -6336,3509:466,96,-56,0,0,0.0749846 -6337,3509:467,97,-56,0,0,0.0750201 -6338,3509:468,98,-56,0,0,0.0750345 -6339,3509:469,99,-56,0,0,0.0750273 -6340,3510:360,100,-56,0,0,0.0750131 -6341,3510:361,101,-56,0,0,0.075006 -6342,3510:362,102,-56,0,0,0.075006 -6343,3510:363,103,-56,0,0,0.0749988 -6344,3510:364,104,-56,0,0,0.0749916 -6345,3510:465,105,-56,0,0,0.0749988 -6346,3510:466,106,-56,0,0,0.0749988 -6347,3510:467,107,-56,0,0,0.0749846 -6348,3510:468,108,-56,0,0,0.074949 -6349,3510:469,109,-56,0,0,0.0750558 -6350,3511:360,110,-56,0,0,0.0753272 -6351,3511:361,111,-56,0,0,0.0764659 -6352,3511:362,112,-56,0,0,0.0786116 -6353,3511:363,113,-56,0,0,0.0788128 -6354,3511:364,114,-56,0,0,0.0751272 -6355,3511:465,115,-56,0,0,0.0783071 -6356,3511:466,116,-56,0,0,0.0798182 -6357,3511:467,117,-56,0,0,0.0818717 -6358,3511:468,118,-56,0,0,0.0834847 -6359,3511:469,119,-56,0,0,0.083532 -6360,3512:360,120,-56,0,0,0.0847592 -6361,3512:361,121,-56,0,0,0.0846637 -6362,3512:362,122,-56,0,0,0.0854151 -6363,3512:363,123,-56,0,0,0.0881755 -6364,3512:364,124,-56,0,0,0.0888054 -6365,3512:465,125,-56,0,0,0.0896821 -6366,3512:466,126,-56,0,0,0.0895731 -6367,3512:467,127,-56,0,0,0.0901193 -6368,3512:468,128,-56,0,0,0.0904316 -6369,3512:469,129,-56,0,0,0.0912717 -6370,3513:360,130,-56,0,0,0.0931639 -6371,3513:361,131,-56,0,0,0.0930771 -6372,3513:362,132,-56,0,0,0.0912886 -6373,3513:363,133,-56,0,0,0.0934679 -6374,3513:364,134,-56,0,0,0.0952946 -6375,3513:465,135,-56,0,0,0.0940092 -6376,3513:466,136,-56,0,0,0.0893724 -6377,3513:467,137,-56,0,0,0.0870748 -6378,3513:468,138,-56,0,0,0.0881921 -6379,3513:469,139,-56,0,0,0.0833749 -6380,3514:360,140,-56,0,0,0.0811335 -6381,3514:361,141,-56,0,0,0.0838944 -6382,3514:362,142,-56,0,0,0.0841632 -6383,3514:363,143,-56,0,0,0.0868791 -6384,3514:364,144,-56,0,0,0.0855999 -6385,3514:465,145,-56,0,0,0.0886475 -6386,3514:466,146,-56,0,0,0.084021 -6387,3514:467,147,-56,0,0,0.0797653 -6388,3514:468,148,-56,0,0,0.0806217 -6389,3514:469,149,-56,0,0,0.0767638 -6390,3515:360,150,-56,0,0,0.0758225 -6391,3515:361,151,-56,0,0,0.0756932 -6392,3515:362,152,-56,0,0,0.0767494 -6393,3515:363,153,-56,0,0,0.07614 -6394,3515:364,154,-56,0,0,0.0752916 -6395,3515:465,155,-56,0,0,0.0751272 -6396,3515:466,156,-56,0,0,0.0751128 -6397,3515:467,157,-56,0,0,0.0750987 -6398,3515:468,158,-56,0,0,0.0750915 -6399,3515:469,159,-56,0,0,0.0750702 -6400,3516:360,160,-56,0,0,0.0750702 -6401,3516:361,161,-56,0,0,0.0750702 -6402,3516:362,162,-56,0,0,0.0750558 -6403,3516:363,163,-56,0,0,0.075063 -6404,3516:364,164,-56,0,0,0.0750773 -6405,3516:465,165,-56,0,0,0.0751272 -6406,3516:466,166,-56,0,0,0.0755639 -6407,3516:467,167,-56,0,0,0.0813636 -6408,3516:468,168,-56,0,0,0.086448 -6409,3516:469,169,-56,0,0,0.0851905 -6410,3517:360,170,-56,0,0,0.0861402 -6411,3517:361,171,-56,0,0,0.0845522 -6412,3517:362,172,-56,0,0,0.0836263 -6413,3517:363,173,-56,0,0,0.0799012 -6414,3517:364,174,-56,0,0,0.0816328 -6415,3517:465,175,-56,0,0,0.102243 -6416,3517:466,176,-56,0,0,0.11119 -6417,3517:467,177,-56,0,0,0.109016 -6418,3517:468,178,-56,0,0,0.107065 -6419,3517:469,179,-56,0,0,0.110795 -6420,3518:360,180,-56,0,0,0.110138 -6421,5518:350,-180,-55,0,0,0.109736 -6422,5517:459,-179,-55,0,0,0.104942 -6423,5517:458,-178,-55,0,0,0.102092 -6424,5517:457,-177,-55,0,0,0.105339 -6425,5517:456,-176,-55,0,0,0.106145 -6426,5517:455,-175,-55,0,0,0.103446 -6427,5517:354,-174,-55,0,0,0.100967 -6428,5517:353,-173,-55,0,0,0.0978583 -6429,5517:352,-172,-55,0,0,0.0953124 -6430,5517:351,-171,-55,0,0,0.0923426 -6431,5517:350,-170,-55,0,0,0.0912205 -6432,5516:459,-169,-55,0,0,0.0885313 -6433,5516:458,-168,-55,0,0,0.0874349 -6434,5516:457,-167,-55,0,0,0.0874759 -6435,5516:456,-166,-55,0,0,0.0876154 -6436,5516:455,-165,-55,0,0,0.0873693 -6437,5516:354,-164,-55,0,0,0.0872629 -6438,5516:353,-163,-55,0,0,0.0872956 -6439,5516:352,-162,-55,0,0,0.086586 -6440,5516:351,-161,-55,0,0,0.0871321 -6441,5516:350,-160,-55,0,0,0.0877222 -6442,5515:459,-159,-55,0,0,0.087181 -6443,5515:458,-158,-55,0,0,0.0880847 -6444,5515:457,-157,-55,0,0,0.0885397 -6445,5515:456,-156,-55,0,0,0.0877551 -6446,5515:455,-155,-55,0,0,0.0870177 -6447,5515:354,-154,-55,0,0,0.0869851 -6448,5515:353,-153,-55,0,0,0.0868547 -6449,5515:352,-152,-55,0,0,0.0864643 -6450,5515:351,-151,-55,0,0,0.0901025 -6451,5515:350,-150,-55,0,0,0.090626 -6452,5514:459,-149,-55,0,0,0.0964972 -6453,5514:458,-148,-55,0,0,0.0951266 -6454,5514:457,-147,-55,0,0,0.0955961 -6455,5514:456,-146,-55,0,0,0.0920672 -6456,5514:455,-145,-55,0,0,0.0939392 -6457,5514:354,-144,-55,0,0,0.096865 -6458,5514:353,-143,-55,0,0,0.0978946 -6459,5514:352,-142,-55,0,0,0.09784 -6460,5514:351,-141,-55,0,0,0.0980218 -6461,5514:350,-140,-55,0,0,0.101135 -6462,5513:459,-139,-55,0,0,0.103466 -6463,5513:458,-138,-55,0,0,0.0984495 -6464,5513:457,-137,-55,0,0,0.095277 -6465,5513:456,-136,-55,0,0,0.0966854 -6466,5513:455,-135,-55,0,0,0.103637 -6467,5513:354,-134,-55,0,0,0.10165 -6468,5513:353,-133,-55,0,0,0.100149 -6469,5513:352,-132,-55,0,0,0.103095 -6470,5513:351,-131,-55,0,0,0.105068 -6471,5513:350,-130,-55,0,0,0.103342 -6472,5512:459,-129,-55,0,0,0.103676 -6473,5512:458,-128,-55,0,0,0.104682 -6474,5512:457,-127,-55,0,0,0.105513 -6475,5512:456,-126,-55,0,0,0.105649 -6476,5512:455,-125,-55,0,0,0.10449 -6477,5512:354,-124,-55,0,0,0.103867 -6478,5512:353,-123,-55,0,0,0.102687 -6479,5512:352,-122,-55,0,0,0.102573 -6480,5512:351,-121,-55,0,0,0.104653 -6481,5512:350,-120,-55,0,0,0.105834 -6482,5511:459,-119,-55,0,0,0.106653 -6483,5511:458,-118,-55,0,0,0.108637 -6484,5511:457,-117,-55,0,0,0.111689 -6485,5511:456,-116,-55,0,0,0.112753 -6486,5511:455,-115,-55,0,0,0.112209 -6487,5511:354,-114,-55,0,0,0.112189 -6488,5511:353,-113,-55,0,0,0.114752 -6489,5511:352,-112,-55,0,0,0.113072 -6490,5511:351,-111,-55,0,0,0.113175 -6491,5511:350,-110,-55,0,0,0.112928 -6492,5510:459,-109,-55,0,0,0.111607 -6493,5510:458,-108,-55,0,0,0.114252 -6494,5510:457,-107,-55,0,0,0.113661 -6495,5510:456,-106,-55,0,0,0.109816 -6496,5510:455,-105,-55,0,0,0.108002 -6497,5510:354,-104,-55,0,0,0.106928 -6498,5510:353,-103,-55,0,0,0.106175 -6499,5510:352,-102,-55,0,0,0.107498 -6500,5510:351,-101,-55,0,0,0.110249 -6501,5510:350,-100,-55,0,0,0.109245 -6502,5509:459,-99,-55,0,0,0.105902 -6503,5509:458,-98,-55,0,0,0.106009 -6504,5509:457,-97,-55,0,0,0.112825 -6505,5509:456,-96,-55,0,0,0.111597 -6506,5509:455,-95,-55,0,0,0.108081 -6507,5509:354,-94,-55,0,0,0.106741 -6508,5509:353,-93,-55,0,0,0.104875 -6509,5509:352,-92,-55,0,0,0.1056 -6510,5509:351,-91,-55,0,0,0.111078 -6511,5509:350,-90,-55,0,0,0.109335 -6512,5508:459,-89,-55,0,0,0.107666 -6513,5508:458,-88,-55,0,0,0.111872 -6514,5508:457,-87,-55,0,0,0.112353 -6515,5508:456,-86,-55,0,0,0.112969 -6516,5508:455,-85,-55,0,0,0.113392 -6517,5508:354,-84,-55,0,0,0.112804 -6518,5508:353,-83,-55,0,0,0.111709 -6519,5508:352,-82,-55,0,0,0.110179 -6520,5508:351,-81,-55,0,0,0.110815 -6521,5508:350,-80,-55,0,0,0.112281 -6522,5507:459,-79,-55,0,0,0.11419 -6523,5507:458,-78,-55,0,0,0.115024 -6524,5507:457,-77,-55,0,0,0.114231 -6525,5507:456,-76,-55,0,0,0.109045 -6526,5507:455,-75,-55,0,0,0.100242 -6527,5507:354,-74,-55,0,0,0.101669 -6528,5507:353,-73,-55,0,0,0.111505 -6529,5507:352,-72,-55,0,0,0.108856 -6530,5507:351,-71,-55,0,0,0.105824 -6531,5507:350,-70,-55,0,0,0.105533 -6532,5506:459,-69,-55,0,0,0.106898 -6533,5506:458,-68,-55,0,0,0.105387 -6534,5506:457,-67,-55,0,0,0.0937209 -6535,5506:456,-66,-55,0,0,0.0846238 -6536,5506:455,-65,-55,0,0,0.0853189 -6537,5506:354,-64,-55,0,0,0.0848548 -6538,5506:353,-63,-55,0,0,0.080774 -6539,5506:352,-62,-55,0,0,0.0827799 -6540,5506:351,-61,-55,0,0,0.0832963 -6541,5506:350,-60,-55,0,0,0.0844091 -6542,5505:459,-59,-55,0,0,0.0805608 -6543,5505:458,-58,-55,0,0,0.0797805 -6544,5505:457,-57,-55,0,0,0.0785299 -6545,5505:456,-56,-55,0,0,0.0779591 -6546,5505:455,-55,-55,0,0,0.0773044 -6547,5505:354,-54,-55,0,0,0.0759595 -6548,5505:353,-53,-55,0,0,0.0750201 -6549,5505:352,-52,-55,0,0,0.0749988 -6550,5505:351,-51,-55,0,0,0.0749916 -6551,5505:350,-50,-55,0,0,0.0750131 -6552,5504:459,-49,-55,0,0,0.0750201 -6553,5504:458,-48,-55,0,0,0.0750201 -6554,5504:457,-47,-55,0,0,0.0750201 -6555,5504:456,-46,-55,0,0,0.075006 -6556,5504:455,-45,-55,0,0,0.0749846 -6557,5504:354,-44,-55,0,0,0.0749846 -6558,5504:353,-43,-55,0,0,0.0749703 -6559,5504:352,-42,-55,0,0,0.0749562 -6560,5504:351,-41,-55,0,0,0.0749418 -6561,5504:350,-40,-55,0,0,0.0749275 -6562,5503:459,-39,-55,0,0,0.0749205 -6563,5503:458,-38,-55,0,0,0.0749205 -6564,5503:457,-37,-55,0,0,0.0749133 -6565,5503:456,-36,-55,0,0,0.0749346 -6566,5503:455,-35,-55,0,0,0.074949 -6567,5503:354,-34,-55,0,0,0.0749631 -6568,5503:353,-33,-55,0,0,0.0749846 -6569,5503:352,-32,-55,0,0,0.0749916 -6570,5503:351,-31,-55,0,0,0.0749916 -6571,5503:350,-30,-55,0,0,0.0749916 -6572,5502:459,-29,-55,0,0,0.0749916 -6573,5502:458,-28,-55,0,0,0.0749916 -6574,5502:457,-27,-55,0,0,0.0749916 -6575,5502:456,-26,-55,0,0,0.0749916 -6576,5502:455,-25,-55,0,0,0.0749846 -6577,5502:354,-24,-55,0,0,0.0749775 -6578,5502:353,-23,-55,0,0,0.0749562 -6579,5502:352,-22,-55,0,0,0.0749418 -6580,5502:351,-21,-55,0,0,0.0749275 -6581,5502:350,-20,-55,0,0,0.0749133 -6582,5501:459,-19,-55,0,0,0.0749062 -6583,5501:458,-18,-55,0,0,0.074892 -6584,5501:457,-17,-55,0,0,0.074899 -6585,5501:456,-16,-55,0,0,0.0749275 -6586,5501:455,-15,-55,0,0,0.0749988 -6587,5501:354,-14,-55,0,0,0.075006 -6588,5501:353,-13,-55,0,0,0.074949 -6589,5501:352,-12,-55,0,0,0.0749275 -6590,5501:351,-11,-55,0,0,0.0749062 -6591,5501:350,-10,-55,0,0,0.074892 -6592,5500:459,-9,-55,0,0,0.0749062 -6593,5500:458,-8,-55,0,0,0.074892 -6594,5500:457,-7,-55,0,0,0.0748777 -6595,5500:456,-6,-55,0,0,0.0748705 -6596,5500:455,-5,-55,0,0,0.0748849 -6597,5500:354,-4,-55,0,0,0.074892 -6598,5500:353,-3,-55,0,0,0.074899 -6599,5500:352,-2,-55,0,0,0.074892 -6600,5500:351,-1,-55,0,0,0.0748636 -6601,3500:351,0,-55,0,0,0.0748777 -6602,3500:351,1,-55,0,0,0.0748705 -6603,3500:352,2,-55,0,0,0.0748564 -6604,3500:353,3,-55,0,0,0.0748493 -6605,3500:354,4,-55,0,0,0.0748349 -6606,3500:455,5,-55,0,0,0.0748421 -6607,3500:456,6,-55,0,0,0.0748564 -6608,3500:457,7,-55,0,0,0.0748777 -6609,3500:458,8,-55,0,0,0.074899 -6610,3500:459,9,-55,0,0,0.0749133 -6611,3501:350,10,-55,0,0,0.0749346 -6612,3501:351,11,-55,0,0,0.074949 -6613,3501:352,12,-55,0,0,0.0749275 -6614,3501:353,13,-55,0,0,0.0749346 -6615,3501:354,14,-55,0,0,0.0749418 -6616,3501:455,15,-55,0,0,0.074949 -6617,3501:456,16,-55,0,0,0.0749346 -6618,3501:457,17,-55,0,0,0.0749205 -6619,3501:458,18,-55,0,0,0.0749133 -6620,3501:459,19,-55,0,0,0.0748636 -6621,3502:350,20,-55,0,0,0.0748493 -6622,3502:351,21,-55,0,0,0.0748137 -6623,3502:352,22,-55,0,0,0.0747852 -6624,3502:353,23,-55,0,0,0.0748564 -6625,3502:354,24,-55,0,0,0.074949 -6626,3502:455,25,-55,0,0,0.0749631 -6627,3502:456,26,-55,0,0,0.0749988 -6628,3502:457,27,-55,0,0,0.0750201 -6629,3502:458,28,-55,0,0,0.0751486 -6630,3502:459,29,-55,0,0,0.075313 -6631,3503:350,30,-55,0,0,0.0753847 -6632,3503:351,31,-55,0,0,0.0754634 -6633,3503:352,32,-55,0,0,0.0753847 -6634,3503:353,33,-55,0,0,0.0754849 -6635,3503:354,34,-55,0,0,0.0759019 -6636,3503:455,35,-55,0,0,0.0753775 -6637,3503:456,36,-55,0,0,0.0751486 -6638,3503:457,37,-55,0,0,0.0751272 -6639,3503:458,38,-55,0,0,0.0749703 -6640,3503:459,39,-55,0,0,0.0748636 -6641,3504:350,40,-55,0,0,0.0748564 -6642,3504:351,41,-55,0,0,0.0748564 -6643,3504:352,42,-55,0,0,0.0748564 -6644,3504:353,43,-55,0,0,0.0748777 -6645,3504:354,44,-55,0,0,0.0749418 -6646,3504:455,45,-55,0,0,0.0749775 -6647,3504:456,46,-55,0,0,0.0750843 -6648,3504:457,47,-55,0,0,0.0754921 -6649,3504:458,48,-55,0,0,0.0755711 -6650,3504:459,49,-55,0,0,0.0755639 -6651,3505:350,50,-55,0,0,0.0754061 -6652,3505:351,51,-55,0,0,0.0751843 -6653,3505:352,52,-55,0,0,0.0751128 -6654,3505:353,53,-55,0,0,0.0750702 -6655,3505:354,54,-55,0,0,0.0749062 -6656,3505:455,55,-55,0,0,0.074899 -6657,3505:456,56,-55,0,0,0.0749205 -6658,3505:457,57,-55,0,0,0.0749205 -6659,3505:458,58,-55,0,0,0.0749346 -6660,3505:459,59,-55,0,0,0.0749418 -6661,3506:350,60,-55,0,0,0.0749631 -6662,3506:351,61,-55,0,0,0.0750131 -6663,3506:352,62,-55,0,0,0.0753417 -6664,3506:353,63,-55,0,0,0.0750558 -6665,3506:354,64,-55,0,0,0.075837 -6666,3506:455,65,-55,0,0,0.0768806 -6667,3506:456,66,-55,0,0,0.0773118 -6668,3506:457,67,-55,0,0,0.0758298 -6669,3506:458,68,-55,0,0,0.0754203 -6670,3506:459,69,-55,0,0,0.0776644 -6671,3507:350,70,-55,0,0,0.0775539 -6672,3507:351,71,-55,0,0,0.0765313 -6673,3507:352,72,-55,0,0,0.0760317 -6674,3507:354,74,-55,0,0,0.0762267 -6675,3507:455,75,-55,0,0,0.0755352 -6676,3507:456,76,-55,0,0,0.0755352 -6677,3507:457,77,-55,0,0,0.075528 -6678,3507:458,78,-55,0,0,0.0758874 -6679,3507:459,79,-55,0,0,0.0761618 -6680,3508:350,80,-55,0,0,0.0764006 -6681,3508:351,81,-55,0,0,0.0766328 -6682,3508:352,82,-55,0,0,0.0764513 -6683,3508:353,83,-55,0,0,0.0763427 -6684,3508:354,84,-55,0,0,0.076742 -6685,3508:455,85,-55,0,0,0.0764949 -6686,3508:456,86,-55,0,0,0.0757075 -6687,3508:457,87,-55,0,0,0.0749562 -6688,3508:458,88,-55,0,0,0.0749062 -6689,3508:459,89,-55,0,0,0.074949 -6690,3509:350,90,-55,0,0,0.075006 -6691,3509:351,91,-55,0,0,0.0751272 -6692,3509:352,92,-55,0,0,0.0764442 -6693,3509:353,93,-55,0,0,0.0783812 -6694,3509:354,94,-55,0,0,0.07827 -6695,3509:455,95,-55,0,0,0.0776127 -6696,3509:456,96,-55,0,0,0.0777896 -6697,3509:457,97,-55,0,0,0.0779001 -6698,3509:458,98,-55,0,0,0.0754203 -6699,3509:459,99,-55,0,0,0.0754203 -6700,3510:350,100,-55,0,0,0.076742 -6701,3510:351,101,-55,0,0,0.0782329 -6702,3510:352,102,-55,0,0,0.0762558 -6703,3510:353,103,-55,0,0,0.0763208 -6704,3510:354,104,-55,0,0,0.0751344 -6705,3510:455,105,-55,0,0,0.0750345 -6706,3510:456,106,-55,0,0,0.0750416 -6707,3510:457,107,-55,0,0,0.0750345 -6708,3510:458,108,-55,0,0,0.074949 -6709,3510:459,109,-55,0,0,0.0749205 -6710,3511:350,110,-55,0,0,0.0751987 -6711,3511:351,111,-55,0,0,0.0777601 -6712,3511:352,112,-55,0,0,0.0801583 -6713,3511:353,113,-55,0,0,0.083116 -6714,3511:354,114,-55,0,0,0.0841632 -6715,3511:455,115,-55,0,0,0.0853989 -6716,3511:456,116,-55,0,0,0.0831786 -6717,3511:457,117,-55,0,0,0.0840843 -6718,3511:458,118,-55,0,0,0.0857045 -6719,3511:459,119,-55,0,0,0.0854552 -6720,3512:350,120,-55,0,0,0.0876811 -6721,3512:351,121,-55,0,0,0.0888552 -6722,3512:352,122,-55,0,0,0.0906854 -6723,3512:353,123,-55,0,0,0.0906769 -6724,3512:354,124,-55,0,0,0.0915105 -6725,3512:455,125,-55,0,0,0.0930943 -6726,3512:456,126,-55,0,0,0.0932071 -6727,3512:457,127,-55,0,0,0.0921189 -6728,3512:458,128,-55,0,0,0.0925061 -6729,3512:459,129,-55,0,0,0.095623 -6730,3513:350,130,-55,0,0,0.0984403 -6731,3513:351,131,-55,0,0,0.0987692 -6732,3513:352,132,-55,0,0,0.0967123 -6733,3513:353,133,-55,0,0,0.0954452 -6734,3513:354,134,-55,0,0,0.0952416 -6735,3513:455,135,-55,0,0,0.0939131 -6736,3513:456,136,-55,0,0,0.093747 -6737,3513:457,137,-55,0,0,0.0933288 -6738,3513:458,138,-55,0,0,0.0923941 -6739,3513:459,139,-55,0,0,0.0906177 -6740,3514:350,140,-55,0,0,0.0906769 -6741,3514:351,141,-55,0,0,0.0920243 -6742,3514:352,142,-55,0,0,0.0920072 -6743,3514:353,143,-55,0,0,0.0925751 -6744,3514:354,144,-55,0,0,0.0928259 -6745,3514:455,145,-55,0,0,0.0909568 -6746,3514:456,146,-55,0,0,0.0885895 -6747,3514:457,147,-55,0,0,0.0897241 -6748,3514:458,148,-55,0,0,0.0851585 -6749,3514:459,149,-55,0,0,0.0798862 -6750,3515:350,150,-55,0,0,0.0769825 -6751,3515:351,151,-55,0,0,0.0768003 -6752,3515:352,152,-55,0,0,0.079705 -6753,3515:353,153,-55,0,0,0.0759019 -6754,3515:354,154,-55,0,0,0.0752559 -6755,3515:455,155,-55,0,0,0.0753489 -6756,3515:456,156,-55,0,0,0.0751701 -6757,3515:457,157,-55,0,0,0.0752129 -6758,3515:458,158,-55,0,0,0.0755065 -6759,3515:459,159,-55,0,0,0.075442 -6760,3516:350,160,-55,0,0,0.07527 -6761,3516:351,161,-55,0,0,0.0752343 -6762,3516:352,162,-55,0,0,0.0754849 -6763,3516:353,163,-55,0,0,0.0754849 -6764,3516:354,164,-55,0,0,0.0775762 -6765,3516:455,165,-55,0,0,0.0775833 -6766,3516:456,166,-55,0,0,0.0855597 -6767,3516:457,167,-55,0,0,0.0952062 -6768,3516:458,168,-55,0,0,0.0955696 -6769,3516:459,169,-55,0,0,0.0929039 -6770,3517:350,170,-55,0,0,0.0924546 -6771,3517:351,171,-55,0,0,0.0995124 -6772,3517:352,172,-55,0,0,0.109125 -6773,3517:353,173,-55,0,0,0.116031 -6774,3517:354,174,-55,0,0,0.120303 -6775,3517:455,175,-55,0,0,0.118156 -6776,3517:456,176,-55,0,0,0.111811 -6777,3517:457,177,-55,0,0,0.11034 -6778,3517:458,178,-55,0,0,0.111658 -6779,3517:459,179,-55,0,0,0.113899 -6780,3518:350,180,-55,0,0,0.109736 -6781,5518:140,-180,-54,0,0,0.117249 -6782,5517:249,-179,-54,0,0,0.113186 -6783,5517:248,-178,-54,0,0,0.111312 -6784,5517:247,-177,-54,0,0,0.109245 -6785,5517:246,-176,-54,0,0,0.105175 -6786,5517:245,-175,-54,0,0,0.100316 -6787,5517:144,-174,-54,0,0,0.0984495 -6788,5517:143,-173,-54,0,0,0.0981216 -6789,5517:142,-172,-54,0,0,0.096865 -6790,5517:141,-171,-54,0,0,0.0954542 -6791,5517:140,-170,-54,0,0,0.0936511 -6792,5516:249,-169,-54,0,0,0.0906599 -6793,5516:248,-168,-54,0,0,0.0898838 -6794,5516:247,-167,-54,0,0,0.0899762 -6795,5516:246,-166,-54,0,0,0.0900267 -6796,5516:245,-165,-54,0,0,0.0900856 -6797,5516:144,-164,-54,0,0,0.0909399 -6798,5516:143,-163,-54,0,0,0.0918356 -6799,5516:142,-162,-54,0,0,0.0944564 -6800,5516:141,-161,-54,0,0,0.0980581 -6801,5516:140,-160,-54,0,0,0.0920759 -6802,5515:249,-159,-54,0,0,0.0899931 -6803,5515:248,-158,-54,0,0,0.0904484 -6804,5515:247,-157,-54,0,0,0.0914422 -6805,5515:246,-156,-54,0,0,0.0888136 -6806,5515:245,-155,-54,0,0,0.0895396 -6807,5515:144,-154,-54,0,0,0.0884817 -6808,5515:143,-153,-54,0,0,0.0875743 -6809,5515:142,-152,-54,0,0,0.0872219 -6810,5515:141,-151,-54,0,0,0.0939742 -6811,5515:140,-150,-54,0,0,0.0975595 -6812,5514:249,-149,-54,0,0,0.0974238 -6813,5514:248,-148,-54,0,0,0.0981216 -6814,5514:247,-147,-54,0,0,0.0985773 -6815,5514:246,-146,-54,0,0,0.104211 -6816,5514:245,-145,-54,0,0,0.106184 -6817,5514:144,-144,-54,0,0,0.102782 -6818,5514:143,-143,-54,0,0,0.105727 -6819,5514:142,-142,-54,0,0,0.122362 -6820,5514:141,-141,-54,0,0,0.124005 -6821,5514:140,-140,-54,0,0,0.108022 -6822,5513:249,-139,-54,0,0,0.101472 -6823,5513:248,-138,-54,0,0,0.101481 -6824,5513:247,-137,-54,0,0,0.104451 -6825,5513:246,-136,-54,0,0,0.108121 -6826,5513:245,-135,-54,0,0,0.109315 -6827,5513:144,-134,-54,0,0,0.109125 -6828,5513:143,-133,-54,0,0,0.102516 -6829,5513:142,-132,-54,0,0,0.103085 -6830,5513:141,-131,-54,0,0,0.107163 -6831,5513:140,-130,-54,0,0,0.108597 -6832,5512:249,-129,-54,0,0,0.105542 -6833,5512:248,-128,-54,0,0,0.103943 -6834,5512:247,-127,-54,0,0,0.103848 -6835,5512:246,-126,-54,0,0,0.104663 -6836,5512:245,-125,-54,0,0,0.105436 -6837,5512:144,-124,-54,0,0,0.10682 -6838,5512:143,-123,-54,0,0,0.107597 -6839,5512:142,-122,-54,0,0,0.108786 -6840,5512:141,-121,-54,0,0,0.110845 -6841,5512:140,-120,-54,0,0,0.113216 -6842,5511:249,-119,-54,0,0,0.112507 -6843,5511:248,-118,-54,0,0,0.113743 -6844,5511:247,-117,-54,0,0,0.118595 -6845,5511:246,-116,-54,0,0,0.118832 -6846,5511:245,-115,-54,0,0,0.118295 -6847,5511:144,-114,-54,0,0,0.116633 -6848,5511:143,-113,-54,0,0,0.115254 -6849,5511:142,-112,-54,0,0,0.112435 -6850,5511:141,-111,-54,0,0,0.113 -6851,5511:140,-110,-54,0,0,0.112589 -6852,5510:249,-109,-54,0,0,0.113568 -6853,5510:248,-108,-54,0,0,0.116432 -6854,5510:247,-107,-54,0,0,0.111995 -6855,5510:246,-106,-54,0,0,0.109666 -6856,5510:245,-105,-54,0,0,0.109315 -6857,5510:144,-104,-54,0,0,0.108986 -6858,5510:143,-103,-54,0,0,0.111312 -6859,5510:142,-102,-54,0,0,0.113505 -6860,5510:141,-101,-54,0,0,0.113247 -6861,5510:140,-100,-54,0,0,0.113764 -6862,5509:249,-99,-54,0,0,0.114543 -6863,5509:248,-98,-54,0,0,0.114564 -6864,5509:247,-97,-54,0,0,0.11639 -6865,5509:246,-96,-54,0,0,0.117089 -6866,5509:245,-95,-54,0,0,0.114877 -6867,5509:144,-94,-54,0,0,0.111312 -6868,5509:143,-93,-54,0,0,0.108816 -6869,5509:142,-92,-54,0,0,0.113186 -6870,5509:141,-91,-54,0,0,0.114034 -7192,5512:239,-129,-53,0,0,0.10679 -6871,5509:140,-90,-54,0,0,0.111913 -6872,5508:249,-89,-54,0,0,0.109135 -6873,5508:248,-88,-54,0,0,0.108269 -6874,5508:247,-87,-54,0,0,0.11034 -6875,5508:246,-86,-54,0,0,0.11392 -6876,5508:245,-85,-54,0,0,0.114961 -6877,5508:144,-84,-54,0,0,0.114242 -6878,5508:143,-83,-54,0,0,0.112691 -6879,5508:142,-82,-54,0,0,0.112804 -6880,5508:141,-81,-54,0,0,0.115832 -6881,5508:140,-80,-54,0,0,0.119684 -6882,5507:249,-79,-54,0,0,0.118424 -6883,5507:248,-78,-54,0,0,0.117111 -6884,5507:247,-77,-54,0,0,0.117292 -6885,5507:246,-76,-54,0,0,0.116581 -6886,5507:245,-75,-54,0,0,0.115705 -6887,5507:144,-74,-54,0,0,0.115516 -6888,5507:143,-73,-54,0,0,0.116053 -6889,5507:142,-72,-54,0,0,0.117771 -6890,5507:141,-71,-54,0,0,0.11302 -6891,5507:140,-70,-54,0,0,0.110491 -6892,5506:249,-69,-54,0,0,0.109576 -6893,5506:248,-68,-54,0,0,0.105513 -6894,5506:247,-67,-54,0,0,0.0905415 -6895,5506:246,-66,-54,0,0,0.0934331 -6896,5506:245,-65,-54,0,0,0.0970901 -6897,5506:144,-64,-54,0,0,0.0927998 -6898,5506:143,-63,-54,0,0,0.0821812 -6899,5506:142,-62,-54,0,0,0.0818951 -6900,5506:141,-61,-54,0,0,0.0834377 -6901,5506:140,-60,-54,0,0,0.082772 -6902,5505:249,-59,-54,0,0,0.0818642 -6903,5505:248,-58,-54,0,0,0.0808733 -6904,5505:247,-57,-54,0,0,0.0792165 -6905,5505:246,-56,-54,0,0,0.0784852 -6906,5505:245,-55,-54,0,0,0.0778042 -6907,5505:144,-54,-54,0,0,0.0774439 -6908,5505:143,-53,-54,0,0,0.076895 -6909,5505:142,-52,-54,0,0,0.0757147 -6910,5505:141,-51,-54,0,0,0.0752487 -6911,5505:140,-50,-54,0,0,0.0757722 -6912,5504:249,-49,-54,0,0,0.0751416 -6913,5504:248,-48,-54,0,0,0.0750201 -6914,5504:247,-47,-54,0,0,0.0749988 -6915,5504:246,-46,-54,0,0,0.0750131 -6916,5504:245,-45,-54,0,0,0.0749988 -6917,5504:144,-44,-54,0,0,0.0749775 -6918,5504:143,-43,-54,0,0,0.0749846 -6919,5504:142,-42,-54,0,0,0.0749988 -6920,5504:141,-41,-54,0,0,0.0749775 -6921,5504:140,-40,-54,0,0,0.0749703 -6922,5503:249,-39,-54,0,0,0.0749631 -6923,5503:248,-38,-54,0,0,0.0749562 -6924,5503:247,-37,-54,0,0,0.0749562 -6925,5503:246,-36,-54,0,0,0.0749631 -6926,5503:245,-35,-54,0,0,0.0749631 -6927,5503:144,-34,-54,0,0,0.0749631 -6928,5503:143,-33,-54,0,0,0.0749775 -6929,5503:142,-32,-54,0,0,0.0749988 -6930,5503:141,-31,-54,0,0,0.0749916 -6931,5503:140,-30,-54,0,0,0.0749846 -6932,5502:249,-29,-54,0,0,0.0749846 -6933,5502:248,-28,-54,0,0,0.0749846 -6934,5502:247,-27,-54,0,0,0.0749775 -6935,5502:246,-26,-54,0,0,0.0749775 -6936,5502:245,-25,-54,0,0,0.0749846 -6937,5502:144,-24,-54,0,0,0.0749846 -6938,5502:143,-23,-54,0,0,0.0749703 -6939,5502:142,-22,-54,0,0,0.0749562 -6940,5502:141,-21,-54,0,0,0.0749346 -6941,5502:140,-20,-54,0,0,0.0749988 -6942,5501:249,-19,-54,0,0,0.0751344 -6943,5501:248,-18,-54,0,0,0.0750273 -6944,5501:247,-17,-54,0,0,0.0749346 -6945,5501:246,-16,-54,0,0,0.0749205 -6946,5501:245,-15,-54,0,0,0.0749205 -6947,5501:144,-14,-54,0,0,0.0749346 -6948,5501:143,-13,-54,0,0,0.074949 -6949,5501:142,-12,-54,0,0,0.0749418 -6950,5501:141,-11,-54,0,0,0.0749275 -6951,5501:140,-10,-54,0,0,0.0749133 -6952,5500:249,-9,-54,0,0,0.0749133 -6953,5500:248,-8,-54,0,0,0.0749275 -6954,5500:247,-7,-54,0,0,0.0749275 -6955,5500:246,-6,-54,0,0,0.0749133 -6956,5500:245,-5,-54,0,0,0.074899 -6957,5500:144,-4,-54,0,0,0.074899 -6958,5500:143,-3,-54,0,0,0.0748849 -6959,5500:142,-2,-54,0,0,0.0748777 -6960,5500:141,-1,-54,0,0,0.0748636 -6961,3500:141,0,-54,0,0,0.0748636 -6962,3500:141,1,-54,0,0,0.0749205 -6963,3500:142,2,-54,0,0,0.0749703 -6964,3500:143,3,-54,0,0,0.075006 -6965,3500:144,4,-54,0,0,0.0750416 -6966,3500:245,5,-54,0,0,0.0750843 -6967,3500:246,6,-54,0,0,0.0750131 -6968,3500:247,7,-54,0,0,0.074949 -6969,3500:248,8,-54,0,0,0.0748564 -6970,3500:249,9,-54,0,0,0.0748777 -6971,3501:140,10,-54,0,0,0.074892 -6972,3501:141,11,-54,0,0,0.0749062 -6973,3501:142,12,-54,0,0,0.0749205 -6974,3501:143,13,-54,0,0,0.0749275 -6975,3501:144,14,-54,0,0,0.0749275 -6976,3501:245,15,-54,0,0,0.0749346 -6977,3501:246,16,-54,0,0,0.0749205 -6978,3501:247,17,-54,0,0,0.0749205 -6979,3501:248,18,-54,0,0,0.074949 -6980,3501:249,19,-54,0,0,0.0749988 -6981,3502:140,20,-54,0,0,0.075006 -6982,3502:141,21,-54,0,0,0.0749916 -6983,3502:142,22,-54,0,0,0.0749775 -6984,3502:143,23,-54,0,0,0.0749062 -6985,3502:144,24,-54,0,0,0.0749703 -6986,3502:245,25,-54,0,0,0.0751272 -6987,3502:246,26,-54,0,0,0.0751344 -6988,3502:247,27,-54,0,0,0.0749703 -6989,3502:248,28,-54,0,0,0.075006 -6990,3502:249,29,-54,0,0,0.0750558 -6991,3503:140,30,-54,0,0,0.0750987 -6992,3503:141,31,-54,0,0,0.0756068 -6993,3503:142,32,-54,0,0,0.0758946 -6994,3503:143,33,-54,0,0,0.0759019 -6995,3503:144,34,-54,0,0,0.0761978 -6996,3503:245,35,-54,0,0,0.0759452 -6997,3503:246,36,-54,0,0,0.075686 -6998,3503:247,37,-54,0,0,0.0755926 -6999,3503:248,38,-54,0,0,0.075729 -7000,3503:249,39,-54,0,0,0.0758155 -7001,3504:140,40,-54,0,0,0.075765 -7002,3504:141,41,-54,0,0,0.0755065 -7003,3504:142,42,-54,0,0,0.0752273 -7004,3504:143,43,-54,0,0,0.0751272 -7005,3504:144,44,-54,0,0,0.0749988 -7006,3504:245,45,-54,0,0,0.0749703 -7007,3504:246,46,-54,0,0,0.0749631 -7008,3504:247,47,-54,0,0,0.0756715 -7009,3504:248,48,-54,0,0,0.0759091 -7010,3504:249,49,-54,0,0,0.0757867 -7011,3505:140,50,-54,0,0,0.0756645 -7012,3505:141,51,-54,0,0,0.0756068 -7013,3505:142,52,-54,0,0,0.0754706 -7014,3505:143,53,-54,0,0,0.0753847 -7015,3505:144,54,-54,0,0,0.075163 -7016,3505:245,55,-54,0,0,0.0750201 -7017,3505:246,56,-54,0,0,0.0749775 -7018,3505:247,57,-54,0,0,0.0749703 -7019,3505:248,58,-54,0,0,0.0749631 -7020,3505:249,59,-54,0,0,0.0750131 -7021,3506:140,60,-54,0,0,0.0752916 -7022,3506:141,61,-54,0,0,0.0757795 -7023,3506:142,62,-54,0,0,0.0765166 -7024,3506:143,63,-54,0,0,0.0762629 -7025,3506:144,64,-54,0,0,0.0752772 -7026,3506:245,65,-54,0,0,0.0760029 -7027,3506:246,66,-54,0,0,0.0768367 -7028,3506:247,67,-54,0,0,0.0800146 -7029,3506:248,68,-54,0,0,0.0792091 -7030,3506:249,69,-54,0,0,0.0772899 -7031,3507:140,70,-54,0,0,0.0805151 -7032,3507:141,71,-54,0,0,0.0820961 -7033,3507:142,72,-54,0,0,0.0783515 -7034,3507:144,74,-54,0,0,0.0767494 -7035,3507:245,75,-54,0,0,0.076713 -7036,3507:246,76,-54,0,0,0.0769607 -7037,3507:247,77,-54,0,0,0.0771947 -7038,3507:248,78,-54,0,0,0.077657 -7039,3507:249,79,-54,0,0,0.0767929 -7040,3508:140,80,-54,0,0,0.0767274 -7041,3508:141,81,-54,0,0,0.0764803 -7042,3508:142,82,-54,0,0,0.0759595 -7043,3508:143,83,-54,0,0,0.0758082 -7044,3508:144,84,-54,0,0,0.0762267 -7045,3508:245,85,-54,0,0,0.0766475 -7046,3508:246,86,-54,0,0,0.0759162 -7047,3508:247,87,-54,0,0,0.0755854 -7048,3508:248,88,-54,0,0,0.0765166 -7049,3508:249,89,-54,0,0,0.0757362 -7050,3509:140,90,-54,0,0,0.0758874 -7051,3509:141,91,-54,0,0,0.0771141 -7052,3509:142,92,-54,0,0,0.0789919 -7053,3509:143,93,-54,0,0,0.0798862 -7054,3509:144,94,-54,0,0,0.0801054 -7055,3509:245,95,-54,0,0,0.0812484 -7056,3509:246,96,-54,0,0,0.0808427 -7057,3509:247,97,-54,0,0,0.0799466 -7058,3509:248,98,-54,0,0,0.0793966 -7059,3509:249,99,-54,0,0,0.0795845 -7060,3510:140,100,-54,0,0,0.0813788 -7061,3510:141,101,-54,0,0,0.0852147 -7062,3510:142,102,-54,0,0,0.0866999 -7063,3510:143,103,-54,0,0,0.0849347 -7064,3510:144,104,-54,0,0,0.0786861 -7065,3510:245,105,-54,0,0,0.0782775 -7066,3510:246,106,-54,0,0,0.0831944 -7067,3510:247,107,-54,0,0,0.0844489 -7068,3510:248,108,-54,0,0,0.0849109 -7069,3510:249,109,-54,0,0,0.0819568 -7070,3511:140,110,-54,0,0,0.0814328 -7071,3511:141,111,-54,0,0,0.085431 -7072,3511:142,112,-54,0,0,0.0855516 -7073,3511:143,113,-54,0,0,0.0863507 -7074,3511:144,114,-54,0,0,0.0882168 -7075,3511:245,115,-54,0,0,0.0883657 -7076,3511:246,116,-54,0,0,0.088465 -7077,3511:247,117,-54,0,0,0.0894224 -7078,3511:248,118,-54,0,0,0.0908125 -7079,3511:249,119,-54,0,0,0.0910247 -7080,3512:140,120,-54,0,0,0.0885644 -7081,3512:141,121,-54,0,0,0.0910419 -7082,3512:142,122,-54,0,0,0.0913995 -7083,3512:143,123,-54,0,0,0.0917843 -7084,3512:144,124,-54,0,0,0.0927135 -7085,3512:245,125,-54,0,0,0.0932421 -7086,3512:246,126,-54,0,0,0.0950292 -7087,3512:247,127,-54,0,0,0.0962465 -7088,3512:248,128,-54,0,0,0.0969459 -7089,3512:249,129,-54,0,0,0.0978129 -7090,3513:140,130,-54,0,0,0.0986961 -7091,3513:141,131,-54,0,0,0.101126 -7092,3513:142,132,-54,0,0,0.0991998 -7093,3513:143,133,-54,0,0,0.0962735 -7094,3513:144,134,-54,0,0,0.0974869 -7095,3513:245,135,-54,0,0,0.0971712 -7096,3513:246,136,-54,0,0,0.096336 -7097,3513:247,137,-54,0,0,0.0945267 -7098,3513:248,138,-54,0,0,0.0942546 -7099,3513:249,139,-54,0,0,0.095623 -7100,3514:140,140,-54,0,0,0.095552 -7101,3514:141,141,-54,0,0,0.0954986 -7102,3514:142,142,-54,0,0,0.0939918 -7103,3514:143,143,-54,0,0,0.093983 -7104,3514:144,144,-54,0,0,0.0936684 -7105,3514:245,145,-54,0,0,0.0913313 -7106,3514:246,146,-54,0,0,0.0925235 -7107,3514:247,147,-54,0,0,0.0929557 -7108,3514:248,148,-54,0,0,0.0861725 -7109,3514:249,149,-54,0,0,0.0844886 -7110,3515:140,150,-54,0,0,0.0849506 -7111,3515:141,151,-54,0,0,0.0851985 -7112,3515:142,152,-54,0,0,0.0801886 -7113,3515:143,153,-54,0,0,0.0767056 -7114,3515:144,154,-54,0,0,0.0761038 -7115,3515:245,155,-54,0,0,0.08181 -7116,3515:246,156,-54,0,0,0.0894224 -7117,3515:247,157,-54,0,0,0.0868383 -7118,3515:248,158,-54,0,0,0.0797954 -7119,3515:249,159,-54,0,0,0.081571 -7120,3516:140,160,-54,0,0,0.0793366 -7121,3516:141,161,-54,0,0,0.0792991 -7122,3516:142,162,-54,0,0,0.0855354 -7123,3516:143,163,-54,0,0,0.0873693 -7124,3516:144,164,-54,0,0,0.0852225 -7125,3516:245,165,-54,0,0,0.0825151 -7126,3516:246,166,-54,0,0,0.0847273 -7127,3516:247,167,-54,0,0,0.101257 -7128,3516:248,168,-54,0,0,0.102933 -7129,3516:249,169,-54,0,0,0.104144 -7130,3517:140,170,-54,0,0,0.111119 -7131,3517:141,171,-54,0,0,0.109166 -7132,3517:142,172,-54,0,0,0.113868 -7133,3517:143,173,-54,0,0,0.122119 -7134,3517:144,174,-54,0,0,0.121449 -7135,3517:245,175,-54,0,0,0.118972 -7136,3517:246,176,-54,0,0,0.113278 -7137,3517:247,177,-54,0,0,0.109666 -7138,3517:248,178,-54,0,0,0.116697 -7139,3517:249,179,-54,0,0,0.121856 -7140,3518:140,180,-54,0,0,0.117249 -7141,5518:130,-180,-53,0,0,0.120314 -7142,5517:239,-179,-53,0,0,0.115642 -7143,5517:238,-178,-53,0,0,0.111454 -7144,5517:237,-177,-53,0,0,0.106516 -7145,5517:236,-176,-53,0,0,0.102867 -7146,5517:235,-175,-53,0,0,0.100921 -7147,5517:134,-174,-53,0,0,0.100001 -7148,5517:133,-173,-53,0,0,0.0991264 -7149,5517:132,-172,-53,0,0,0.0983766 -7150,5517:131,-171,-53,0,0,0.0975142 -7151,5517:130,-170,-53,0,0,0.0953389 -7152,5516:239,-169,-53,0,0,0.094123 -7153,5516:238,-168,-53,0,0,0.0945618 -7154,5516:237,-167,-53,0,0,0.093983 -7155,5516:236,-166,-53,0,0,0.0949674 -7156,5516:235,-165,-53,0,0,0.0965511 -7157,5516:134,-164,-53,0,0,0.0982763 -7158,5516:133,-163,-53,0,0,0.0976589 -7159,5516:132,-162,-53,0,0,0.0972703 -7160,5516:131,-161,-53,0,0,0.0988515 -7161,5516:130,-160,-53,0,0,0.0950117 -7162,5515:239,-159,-53,0,0,0.0920243 -7163,5515:238,-158,-53,0,0,0.0932593 -7164,5515:237,-157,-53,0,0,0.0993652 -7165,5515:236,-156,-53,0,0,0.0999736 -7166,5515:235,-155,-53,0,0,0.0925061 -7167,5515:134,-154,-53,0,0,0.0889136 -7168,5515:133,-153,-53,0,0,0.0881755 -7169,5515:132,-152,-53,0,0,0.0900771 -7170,5515:131,-151,-53,0,0,0.096327 -7171,5515:130,-150,-53,0,0,0.0970989 -7172,5514:239,-149,-53,0,0,0.0963003 -7173,5514:238,-148,-53,0,0,0.0998258 -7174,5514:237,-147,-53,0,0,0.107085 -7175,5514:236,-146,-53,0,0,0.111566 -7176,5514:235,-145,-53,0,0,0.117387 -7177,5514:134,-144,-53,0,0,0.124754 -7178,5514:133,-143,-53,0,0,0.130694 -7179,5514:132,-142,-53,0,0,0.135627 -7180,5514:131,-141,-53,0,0,0.134379 -7181,5514:130,-140,-53,0,0,0.136545 -7182,5513:239,-139,-53,0,0,0.128056 -7183,5513:238,-138,-53,0,0,0.120303 -7184,5513:237,-137,-53,0,0,0.112702 -7185,5513:236,-136,-53,0,0,0.110633 -7186,5513:235,-135,-53,0,0,0.107616 -7187,5513:134,-134,-53,0,0,0.105746 -7188,5513:133,-133,-53,0,0,0.106292 -7189,5513:132,-132,-53,0,0,0.108647 -7190,5513:131,-131,-53,0,0,0.111129 -7191,5513:130,-130,-53,0,0,0.109977 -7193,5512:238,-128,-53,0,0,0.106879 -7194,5512:237,-127,-53,0,0,0.109937 -7195,5512:236,-126,-53,0,0,0.112804 -7196,5512:235,-125,-53,0,0,0.115045 -7197,5512:134,-124,-53,0,0,0.117185 -7198,5512:133,-123,-53,0,0,0.119047 -7199,5512:132,-122,-53,0,0,0.115779 -7200,5512:131,-121,-53,0,0,0.116994 -7201,5512:130,-120,-53,0,0,0.120444 -7202,5511:239,-119,-53,0,0,0.115537 -7203,5511:238,-118,-53,0,0,0.119004 -7204,5511:237,-117,-53,0,0,0.120129 -7205,5511:236,-116,-53,0,0,0.120531 -7206,5511:235,-115,-53,0,0,0.12146 -7207,5511:134,-114,-53,0,0,0.121296 -7208,5511:133,-113,-53,0,0,0.114836 -7209,5511:132,-112,-53,0,0,0.118682 -7210,5511:131,-111,-53,0,0,0.121702 -7211,5511:130,-110,-53,0,0,0.121691 -7212,5510:239,-109,-53,0,0,0.118156 -7213,5510:238,-108,-53,0,0,0.116729 -7214,5510:237,-107,-53,0,0,0.115842 -7215,5510:236,-106,-53,0,0,0.11175 -7216,5510:235,-105,-53,0,0,0.112866 -7217,5510:134,-104,-53,0,0,0.114263 -7218,5510:133,-103,-53,0,0,0.115244 -7219,5510:132,-102,-53,0,0,0.115139 -7220,5510:131,-101,-53,0,0,0.114346 -7221,5510:130,-100,-53,0,0,0.116633 -7222,5509:239,-99,-53,0,0,0.123014 -7223,5509:238,-98,-53,0,0,0.12526 -7224,5509:237,-97,-53,0,0,0.120096 -7225,5509:236,-96,-53,0,0,0.119847 -7226,5509:235,-95,-53,0,0,0.120717 -7227,5509:134,-94,-53,0,0,0.118381 -7228,5509:133,-93,-53,0,0,0.115076 -7229,5509:132,-92,-53,0,0,0.114252 -7230,5509:131,-91,-53,0,0,0.114086 -7231,5509:130,-90,-53,0,0,0.116179 -7232,5508:239,-89,-53,0,0,0.121581 -7233,5508:238,-88,-53,0,0,0.122329 -7234,5508:237,-87,-53,0,0,0.12123 -7235,5508:236,-86,-53,0,0,0.120815 -7236,5508:235,-85,-53,0,0,0.120466 -7237,5508:134,-84,-53,0,0,0.117164 -7238,5508:133,-83,-53,0,0,0.118017 -7239,5508:132,-82,-53,0,0,0.119576 -7240,5508:131,-81,-53,0,0,0.12202 -7241,5508:130,-80,-53,0,0,0.12123 -7242,5507:239,-79,-53,0,0,0.12064 -7243,5507:238,-78,-53,0,0,0.121186 -7244,5507:237,-77,-53,0,0,0.118081 -7245,5507:236,-76,-53,0,0,0.118092 -7246,5507:235,-75,-53,0,0,0.121285 -7247,5507:134,-74,-53,0,0,0.122395 -7248,5507:133,-73,-53,0,0,0.119858 -7249,5507:132,-72,-53,0,0,0.11619 -7250,5507:131,-71,-53,0,0,0.116613 -7251,5507:130,-70,-53,0,0,0.11866 -7252,5506:239,-69,-53,0,0,0.117089 -7253,5506:238,-68,-53,0,0,0.111281 -7254,5506:237,-67,-53,0,0,0.103943 -7255,5506:236,-66,-53,0,0,0.103209 -7256,5506:235,-65,-53,0,0,0.102981 -7257,5506:134,-64,-53,0,0,0.0925667 -7258,5506:133,-63,-53,0,0,0.0860837 -7259,5506:132,-62,-53,0,0,0.085648 -7260,5506:131,-61,-53,0,0,0.0819259 -7261,5506:130,-60,-53,0,0,0.0846795 -7262,5505:239,-59,-53,0,0,0.0859947 -7263,5505:238,-58,-53,0,0,0.0861967 -7264,5505:237,-57,-53,0,0,0.0816711 -7265,5505:236,-56,-53,0,0,0.078865 -7266,5505:235,-55,-53,0,0,0.0779889 -7267,5505:134,-54,-53,0,0,0.077063 -7268,5505:133,-53,-53,0,0,0.0773924 -7269,5505:132,-52,-53,0,0,0.07565 -7270,5505:131,-51,-53,0,0,0.0752487 -7271,5505:130,-50,-53,0,0,0.0756213 -7272,5504:239,-49,-53,0,0,0.0752201 -7273,5504:238,-48,-53,0,0,0.0749562 -7274,5504:237,-47,-53,0,0,0.075006 -7275,5504:236,-46,-53,0,0,0.0750273 -7276,5504:235,-45,-53,0,0,0.0750416 -7277,5504:134,-44,-53,0,0,0.0749703 -7278,5504:133,-43,-53,0,0,0.0749775 -7279,5504:132,-42,-53,0,0,0.0750273 -7280,5504:131,-41,-53,0,0,0.0750201 -7281,5504:130,-40,-53,0,0,0.0749988 -7282,5503:239,-39,-53,0,0,0.0750558 -7283,5503:238,-38,-53,0,0,0.0751558 -7284,5503:237,-37,-53,0,0,0.0749916 -7285,5503:236,-36,-53,0,0,0.0749703 -7286,5503:235,-35,-53,0,0,0.0749775 -7287,5503:134,-34,-53,0,0,0.0749846 -7288,5503:133,-33,-53,0,0,0.0749846 -7289,5503:132,-32,-53,0,0,0.0749846 -7290,5503:131,-31,-53,0,0,0.0749846 -7291,5503:130,-30,-53,0,0,0.0749916 -7292,5502:239,-29,-53,0,0,0.0749846 -7293,5502:238,-28,-53,0,0,0.0749775 -7294,5502:237,-27,-53,0,0,0.0749775 -7295,5502:236,-26,-53,0,0,0.0749988 -7296,5502:235,-25,-53,0,0,0.0750773 -7297,5502:134,-24,-53,0,0,0.0749988 -7298,5502:133,-23,-53,0,0,0.0750201 -7299,5502:132,-22,-53,0,0,0.0750558 -7300,5502:131,-21,-53,0,0,0.0750488 -7301,5502:130,-20,-53,0,0,0.07512 -7302,5501:239,-19,-53,0,0,0.0751701 -7303,5501:238,-18,-53,0,0,0.0752057 -7304,5501:237,-17,-53,0,0,0.0749988 -7305,5501:236,-16,-53,0,0,0.0749562 -7306,5501:235,-15,-53,0,0,0.0749562 -7307,5501:134,-14,-53,0,0,0.0749418 -7308,5501:133,-13,-53,0,0,0.0749275 -7309,5501:132,-12,-53,0,0,0.0749562 -7310,5501:131,-11,-53,0,0,0.0749846 -7311,5501:130,-10,-53,0,0,0.0749418 -7312,5500:239,-9,-53,0,0,0.0749205 -7313,5500:238,-8,-53,0,0,0.074949 -7314,5500:237,-7,-53,0,0,0.0749775 -7315,5500:236,-6,-53,0,0,0.0749418 -7316,5500:235,-5,-53,0,0,0.0749205 -7317,5500:134,-4,-53,0,0,0.0749133 -7318,5500:133,-3,-53,0,0,0.074899 -7319,5500:132,-2,-53,0,0,0.0748777 -7320,5500:131,-1,-53,0,0,0.0748705 -7321,3500:131,0,-53,0,0,0.0749418 -7322,3500:131,1,-53,0,0,0.0750416 -7323,3500:132,2,-53,0,0,0.0752129 -7324,3500:133,3,-53,0,0,0.0752559 -7325,3500:134,4,-53,0,0,0.0754133 -7326,3500:235,5,-53,0,0,0.0754779 -7327,3500:236,6,-53,0,0,0.0753917 -7328,3500:237,7,-53,0,0,0.0752343 -7329,3500:238,8,-53,0,0,0.0750702 -7330,3500:239,9,-53,0,0,0.0749775 -7331,3501:130,10,-53,0,0,0.0749062 -7332,3501:131,11,-53,0,0,0.0748849 -7333,3501:132,12,-53,0,0,0.0749062 -7334,3501:133,13,-53,0,0,0.0749062 -7335,3501:134,14,-53,0,0,0.0749062 -7336,3501:235,15,-53,0,0,0.0749205 -7337,3501:236,16,-53,0,0,0.0749205 -7338,3501:237,17,-53,0,0,0.0749275 -7339,3501:238,18,-53,0,0,0.074949 -7340,3501:239,19,-53,0,0,0.0749703 -7341,3502:130,20,-53,0,0,0.0749631 -7342,3502:131,21,-53,0,0,0.0749631 -7343,3502:132,22,-53,0,0,0.0749631 -7344,3502:133,23,-53,0,0,0.0749562 -7345,3502:134,24,-53,0,0,0.074949 -7346,3502:235,25,-53,0,0,0.0749916 -7347,3502:236,26,-53,0,0,0.0749562 -7348,3502:237,27,-53,0,0,0.0750558 -7349,3502:238,28,-53,0,0,0.0750843 -7350,3502:239,29,-53,0,0,0.0750416 -7351,3503:130,30,-53,0,0,0.0750273 -7352,3503:131,31,-53,0,0,0.0750558 -7353,3503:132,32,-53,0,0,0.0750843 -7354,3503:133,33,-53,0,0,0.0754348 -7355,3503:134,34,-53,0,0,0.0754061 -7356,3503:235,35,-53,0,0,0.0756787 -7357,3503:236,36,-53,0,0,0.0761327 -7358,3503:237,37,-53,0,0,0.0760172 -7359,3503:238,38,-53,0,0,0.0758946 -7360,3503:239,39,-53,0,0,0.0761472 -7361,3504:130,40,-53,0,0,0.0763789 -7362,3504:131,41,-53,0,0,0.0763064 -7363,3504:132,42,-53,0,0,0.0762848 -7364,3504:133,43,-53,0,0,0.0758803 -7365,3504:134,44,-53,0,0,0.0754849 -7366,3504:235,45,-53,0,0,0.0753272 -7367,3504:236,46,-53,0,0,0.0753631 -7368,3504:237,47,-53,0,0,0.0751128 -7369,3504:238,48,-53,0,0,0.0754275 -7370,3504:239,49,-53,0,0,0.0749916 -7371,3505:130,50,-53,0,0,0.0749916 -7372,3505:131,51,-53,0,0,0.0754706 -7373,3505:132,52,-53,0,0,0.0755207 -7374,3505:133,53,-53,0,0,0.0754203 -7375,3505:134,54,-53,0,0,0.075313 -7376,3505:235,55,-53,0,0,0.0751771 -7377,3505:236,56,-53,0,0,0.0751128 -7378,3505:237,57,-53,0,0,0.0750558 -7379,3505:238,58,-53,0,0,0.0750702 -7380,3505:239,59,-53,0,0,0.0750345 -7381,3506:130,60,-53,0,0,0.0757867 -7382,3506:131,61,-53,0,0,0.0760967 -7383,3506:132,62,-53,0,0,0.0768877 -7384,3506:133,63,-53,0,0,0.077856 -7385,3506:134,64,-53,0,0,0.0782329 -7386,3506:235,65,-53,0,0,0.0779445 -7387,3506:236,66,-53,0,0,0.0784258 -7388,3506:237,67,-53,0,0,0.0822044 -7389,3506:238,68,-53,0,0,0.0845362 -7390,3506:239,69,-53,0,0,0.0839103 -7391,3507:130,70,-53,0,0,0.0849428 -7392,3507:131,71,-53,0,0,0.0852225 -7393,3507:132,72,-53,0,0,0.0825384 -7394,3507:134,74,-53,0,0,0.0807435 -7395,3507:235,75,-53,0,0,0.0814865 -7396,3507:236,76,-53,0,0,0.0816711 -7397,3507:237,77,-53,0,0,0.0803025 -7398,3507:238,78,-53,0,0,0.0785968 -7399,3507:239,79,-53,0,0,0.0778116 -7400,3508:130,80,-53,0,0,0.0773559 -7401,3508:131,81,-53,0,0,0.0766184 -7402,3508:132,82,-53,0,0,0.0763208 -7403,3508:133,83,-53,0,0,0.0758874 -7404,3508:134,84,-53,0,0,0.0759811 -7405,3508:235,85,-53,0,0,0.0763281 -7406,3508:236,86,-53,0,0,0.0764296 -7407,3508:237,87,-53,0,0,0.0769242 -7408,3508:238,88,-53,0,0,0.0769242 -7409,3508:239,89,-53,0,0,0.0775762 -7410,3509:130,90,-53,0,0,0.0776127 -7411,3509:131,91,-53,0,0,0.0785893 -7412,3509:132,92,-53,0,0,0.0799164 -7413,3509:133,93,-53,0,0,0.0829126 -7414,3509:134,94,-53,0,0,0.0839655 -7415,3509:235,95,-53,0,0,0.0837523 -7416,3509:236,96,-53,0,0,0.0842266 -7417,3509:237,97,-53,0,0,0.0854552 -7418,3509:238,98,-53,0,0,0.086116 -7419,3509:239,99,-53,0,0,0.0860028 -7420,3510:130,100,-53,0,0,0.0860837 -7421,3510:131,101,-53,0,0,0.0875991 -7422,3510:132,102,-53,0,0,0.0896151 -7423,3510:133,103,-53,0,0,0.0891801 -7424,3510:134,104,-53,0,0,0.0893389 -7425,3510:235,105,-53,0,0,0.0898166 -7426,3510:236,106,-53,0,0,0.0886475 -7427,3510:237,107,-53,0,0,0.0849267 -7428,3510:238,108,-53,0,0,0.0863265 -7429,3510:239,109,-53,0,0,0.0864237 -7430,3511:130,110,-53,0,0,0.0863425 -7431,3511:131,111,-53,0,0,0.0869281 -7432,3511:132,112,-53,0,0,0.0881177 -7433,3511:133,113,-53,0,0,0.0888968 -7434,3511:134,114,-53,0,0,0.0899425 -7435,3511:235,115,-53,0,0,0.0923426 -7436,3511:236,116,-53,0,0,0.0938517 -7437,3511:237,117,-53,0,0,0.0928864 -7438,3511:238,118,-53,0,0,0.0904737 -7439,3511:239,119,-53,0,0,0.0910333 -7440,3512:130,120,-53,0,0,0.0915191 -7441,3512:131,121,-53,0,0,0.0930165 -7442,3512:132,122,-53,0,0,0.0934855 -7443,3512:133,123,-53,0,0,0.0950645 -7444,3512:134,124,-53,0,0,0.097 -7445,3512:235,125,-53,0,0,0.0973786 -7446,3512:236,126,-53,0,0,0.0962021 -7447,3512:237,127,-53,0,0,0.0961751 -7448,3512:238,128,-53,0,0,0.096919 -7449,3512:239,129,-53,0,0,0.0971622 -7450,3513:130,130,-53,0,0,0.0997796 -7451,3513:131,131,-53,0,0,0.10448 -7452,3513:132,132,-53,0,0,0.103114 -7453,3513:133,133,-53,0,0,0.099909 -7454,3513:134,134,-53,0,0,0.0987234 -7455,3513:235,135,-53,0,0,0.0997703 -7456,3513:236,136,-53,0,0,0.100958 -7457,3513:237,137,-53,0,0,0.0986138 -7458,3513:238,138,-53,0,0,0.0974869 -7459,3513:239,139,-53,0,0,0.099872 -7460,3514:130,140,-53,0,0,0.0989063 -7461,3514:131,141,-53,0,0,0.0968562 -7462,3514:132,142,-53,0,0,0.0950823 -7463,3514:133,143,-53,0,0,0.0954009 -7464,3514:134,144,-53,0,0,0.0983674 -7465,3514:235,145,-53,0,0,0.0966496 -7466,3514:236,146,-53,0,0,0.0961841 -7467,3514:237,147,-53,0,0,0.0955251 -7468,3514:238,148,-53,0,0,0.0935463 -7469,3514:239,149,-53,0,0,0.0919214 -7470,3515:130,150,-53,0,0,0.0924372 -7471,3515:131,151,-53,0,0,0.0855276 -7472,3515:132,152,-53,0,0,0.0848787 -7473,3515:133,153,-53,0,0,0.0850467 -7474,3515:134,154,-53,0,0,0.0792691 -7475,3515:235,155,-53,0,0,0.0848948 -7476,3515:236,156,-53,0,0,0.0933116 -7477,3515:237,157,-53,0,0,0.0943248 -7478,3515:238,158,-53,0,0,0.0933288 -7479,3515:239,159,-53,0,0,0.0951266 -7480,3516:130,160,-53,0,0,0.0937819 -7481,3516:131,161,-53,0,0,0.0905922 -7482,3516:132,162,-53,0,0,0.104471 -7483,3516:133,163,-53,0,0,0.107262 -7484,3516:134,164,-53,0,0,0.103133 -7485,3516:235,165,-53,0,0,0.107528 -7486,3516:236,166,-53,0,0,0.103009 -7487,3516:237,167,-53,0,0,0.106184 -7488,3516:238,168,-53,0,0,0.107134 -7489,3516:239,169,-53,0,0,0.109195 -7490,3517:130,170,-53,0,0,0.11909 -7491,3517:131,171,-53,0,0,0.125847 -7492,3517:132,172,-53,0,0,0.128216 -7493,3517:133,173,-53,0,0,0.127838 -7494,3517:134,174,-53,0,0,0.125756 -7495,3517:235,175,-53,0,0,0.123347 -7496,3517:236,176,-53,0,0,0.120782 -7497,3517:237,177,-53,0,0,0.121691 -7498,3517:238,178,-53,0,0,0.123659 -7499,3517:239,179,-53,0,0,0.121033 -7500,3518:130,180,-53,0,0,0.120314 -7501,5518:120,-180,-52,0,0,0.11299 -7502,5517:229,-179,-52,0,0,0.108389 -7503,5517:228,-178,-52,0,0,0.110602 -7504,5517:227,-177,-52,0,0,0.109166 -7505,5517:226,-176,-52,0,0,0.11038 -7506,5517:225,-175,-52,0,0,0.110451 -7507,5517:124,-174,-52,0,0,0.105805 -7508,5517:123,-173,-52,0,0,0.107725 -7509,5517:122,-172,-52,0,0,0.107508 -7510,5517:121,-171,-52,0,0,0.107232 -7511,5517:120,-170,-52,0,0,0.105902 -7512,5516:229,-169,-52,0,0,0.102696 -7513,5516:228,-168,-52,0,0,0.102857 -7514,5516:227,-167,-52,0,0,0.103895 -7515,5516:226,-166,-52,0,0,0.105717 -7516,5516:225,-165,-52,0,0,0.109105 -7517,5516:124,-164,-52,0,0,0.11121 -7518,5516:123,-163,-52,0,0,0.107903 -7519,5516:122,-162,-52,0,0,0.105873 -7520,5516:121,-161,-52,0,0,0.106908 -7521,5516:120,-160,-52,0,0,0.105068 -7522,5515:229,-159,-52,0,0,0.102791 -7523,5515:228,-158,-52,0,0,0.106849 -7524,5515:227,-157,-52,0,0,0.112097 -7525,5515:226,-156,-52,0,0,0.112097 -7526,5515:225,-155,-52,0,0,0.0998813 -7527,5515:124,-154,-52,0,0,0.0886974 -7528,5515:123,-153,-52,0,0,0.0888136 -7529,5515:122,-152,-52,0,0,0.0898417 -7530,5515:121,-151,-52,0,0,0.089892 -7531,5515:120,-150,-52,0,0,0.0937209 -7532,5514:229,-149,-52,0,0,0.0949233 -7533,5514:228,-148,-52,0,0,0.0956051 -7534,5514:227,-147,-52,0,0,0.10678 -7535,5514:226,-146,-52,0,0,0.10823 -7536,5514:225,-145,-52,0,0,0.115338 -7537,5514:124,-144,-52,0,0,0.12357 -7538,5514:123,-143,-52,0,0,0.126401 -7539,5514:122,-142,-52,0,0,0.129902 -7540,5514:121,-141,-52,0,0,0.136775 -7541,5514:120,-140,-52,0,0,0.13663 -7542,5513:229,-139,-52,0,0,0.130344 -7543,5513:228,-138,-52,0,0,0.123281 -7544,5513:227,-137,-52,0,0,0.11638 -7545,5513:226,-136,-52,0,0,0.115716 -7546,5513:225,-135,-52,0,0,0.116443 -7547,5513:124,-134,-52,0,0,0.11333 -7548,5513:123,-133,-52,0,0,0.116401 -7549,5513:122,-132,-52,0,0,0.1147 -7550,5513:121,-131,-52,0,0,0.116686 -7551,5513:120,-130,-52,0,0,0.117568 -7552,5512:229,-129,-52,0,0,0.118961 -7553,5512:228,-128,-52,0,0,0.11495 -7554,5512:227,-127,-52,0,0,0.115306 -7555,5512:226,-126,-52,0,0,0.119123 -7556,5512:225,-125,-52,0,0,0.119522 -7557,5512:124,-124,-52,0,0,0.127095 -7558,5512:123,-123,-52,0,0,0.128136 -7559,5512:122,-122,-52,0,0,0.12499 -7560,5512:121,-121,-52,0,0,0.121154 -7561,5512:120,-120,-52,0,0,0.120433 -7562,5511:229,-119,-52,0,0,0.117686 -7563,5511:228,-118,-52,0,0,0.118638 -7564,5511:227,-117,-52,0,0,0.120597 -7565,5511:226,-116,-52,0,0,0.122318 -7566,5511:225,-115,-52,0,0,0.121438 -7567,5511:124,-114,-52,0,0,0.121175 -7568,5511:123,-113,-52,0,0,0.124418 -7569,5511:122,-112,-52,0,0,0.117824 -7570,5511:121,-111,-52,0,0,0.119349 -7571,5511:120,-110,-52,0,0,0.123882 -7572,5510:229,-109,-52,0,0,0.121932 -7573,5510:228,-108,-52,0,0,0.120488 -7574,5510:227,-107,-52,0,0,0.120902 -7575,5510:226,-106,-52,0,0,0.119047 -7576,5510:225,-105,-52,0,0,0.115863 -7577,5510:124,-104,-52,0,0,0.119112 -7578,5510:123,-103,-52,0,0,0.12434 -7579,5510:122,-102,-52,0,0,0.130403 -7580,5510:121,-101,-52,0,0,0.129763 -7581,5510:120,-100,-52,0,0,0.12367 -7582,5509:229,-99,-52,0,0,0.124575 -7583,5509:228,-98,-52,0,0,0.128699 -7584,5509:227,-97,-52,0,0,0.122804 -7585,5509:226,-96,-52,0,0,0.119328 -7586,5509:225,-95,-52,0,0,0.120859 -7587,5509:124,-94,-52,0,0,0.125305 -7588,5509:123,-93,-52,0,0,0.120782 -7589,5509:122,-92,-52,0,0,0.115191 -7590,5509:121,-91,-52,0,0,0.114992 -7591,5509:120,-90,-52,0,0,0.11494 -7592,5508:229,-89,-52,0,0,0.120608 -7593,5508:228,-88,-52,0,0,0.12337 -7594,5508:227,-87,-52,0,0,0.121812 -7595,5508:226,-86,-52,0,0,0.122693 -7596,5508:225,-85,-52,0,0,0.122528 -7597,5508:124,-84,-52,0,0,0.122274 -7598,5508:123,-83,-52,0,0,0.123659 -7599,5508:122,-82,-52,0,0,0.126265 -7600,5508:121,-81,-52,0,0,0.126856 -7601,5508:120,-80,-52,0,0,0.124586 -7602,5507:229,-79,-52,0,0,0.122738 -7603,5507:228,-78,-52,0,0,0.128102 -7604,5507:227,-77,-52,0,0,0.12952 -7605,5507:226,-76,-52,0,0,0.127964 -7606,5507:225,-75,-52,0,0,0.127015 -7607,5507:124,-74,-52,0,0,0.124631 -7608,5507:123,-73,-52,0,0,0.119641 -7609,5507:122,-72,-52,0,0,0.120053 -7610,5507:121,-71,-52,0,0,0.117334 -7611,5507:120,-70,-52,0,0,0.116898 -7612,5506:229,-69,-52,0,0,0.115181 -7613,5506:228,-68,-52,0,0,0.10637 -7614,5506:227,-67,-52,0,0,0.108766 -7615,5506:226,-66,-52,0,0,0.107488 -7616,5506:225,-65,-52,0,0,0.101519 -7617,5506:124,-64,-52,0,0,0.0909228 -7618,5506:123,-63,-52,0,0,0.090906 -7619,5506:122,-62,-52,0,0,0.0925925 -7620,5506:121,-61,-52,0,0,0.0946325 -7621,5506:120,-60,-52,0,0,0.0966586 -7622,5505:229,-59,-52,0,0,0.096865 -7623,5505:228,-58,-52,0,0,0.0926012 -7624,5505:227,-57,-52,0,0,0.0885644 -7625,5505:226,-56,-52,0,0,0.0821193 -7626,5505:225,-55,-52,0,0,0.0825462 -7627,5505:124,-54,-52,0,0,0.0817947 -7628,5505:123,-53,-52,0,0,0.077451 -7629,5505:122,-52,-52,0,0,0.0769315 -7630,5505:121,-51,-52,0,0,0.0763064 -7631,5505:120,-50,-52,0,0,0.0764006 -7632,5504:229,-49,-52,0,0,0.0752201 -7633,5504:228,-48,-52,0,0,0.0753703 -7634,5504:227,-47,-52,0,0,0.0751701 -7635,5504:226,-46,-52,0,0,0.0754203 -7636,5504:225,-45,-52,0,0,0.0756715 -7637,5504:124,-44,-52,0,0,0.0756715 -7638,5504:123,-43,-52,0,0,0.0787084 -7639,5504:122,-42,-52,0,0,0.0788427 -7640,5504:121,-41,-52,0,0,0.0773337 -7641,5504:120,-40,-52,0,0,0.0770922 -7642,5503:229,-39,-52,0,0,0.0776718 -7643,5503:228,-38,-52,0,0,0.084021 -7644,5503:227,-37,-52,0,0,0.0804543 -7645,5503:226,-36,-52,0,0,0.0763427 -7646,5503:225,-35,-52,0,0,0.0769973 -7647,5503:124,-34,-52,0,0,0.0775026 -7648,5503:123,-33,-52,0,0,0.0764079 -7649,5503:122,-32,-52,0,0,0.0749275 -7650,5503:121,-31,-52,0,0,0.0754993 -7651,5503:120,-30,-52,0,0,0.0749703 -7652,5502:229,-29,-52,0,0,0.0749988 -7653,5502:228,-28,-52,0,0,0.0749916 -7654,5502:227,-27,-52,0,0,0.0749775 -7655,5502:226,-26,-52,0,0,0.0750558 -7656,5502:225,-25,-52,0,0,0.0771726 -7657,5502:124,-24,-52,0,0,0.0836814 -7658,5502:123,-23,-52,0,0,0.0803405 -7659,5502:122,-22,-52,0,0,0.079532 -7660,5502:121,-21,-52,0,0,0.0767712 -7661,5502:120,-20,-52,0,0,0.0760749 -7662,5501:229,-19,-52,0,0,0.0772899 -7663,5501:228,-18,-52,0,0,0.0759811 -7664,5501:227,-17,-52,0,0,0.0755567 -7665,5501:226,-16,-52,0,0,0.0755135 -7666,5501:225,-15,-52,0,0,0.0758082 -7667,5501:124,-14,-52,0,0,0.075442 -7668,5501:123,-13,-52,0,0,0.0749775 -7669,5501:122,-12,-52,0,0,0.0749562 -7670,5501:121,-11,-52,0,0,0.0749562 -7671,5501:120,-10,-52,0,0,0.074949 -7672,5500:229,-9,-52,0,0,0.0749631 -7673,5500:228,-8,-52,0,0,0.0749703 -7674,5500:227,-7,-52,0,0,0.0749631 -7675,5500:226,-6,-52,0,0,0.074949 -7676,5500:225,-5,-52,0,0,0.0749418 -7677,5500:124,-4,-52,0,0,0.0749275 -7678,5500:123,-3,-52,0,0,0.0749133 -7679,5500:122,-2,-52,0,0,0.074899 -7680,5500:121,-1,-52,0,0,0.0749133 -7681,3500:121,0,-52,0,0,0.0749275 -7682,3500:121,1,-52,0,0,0.0749562 -7683,3500:122,2,-52,0,0,0.0753203 -7684,3500:123,3,-52,0,0,0.0755065 -7685,3500:124,4,-52,0,0,0.0756285 -7686,3500:225,5,-52,0,0,0.0757507 -7687,3500:226,6,-52,0,0,0.0757362 -7688,3500:227,7,-52,0,0,0.0756787 -7689,3500:228,8,-52,0,0,0.0754706 -7690,3500:229,9,-52,0,0,0.0751771 -7691,3501:120,10,-52,0,0,0.0750273 -7692,3501:121,11,-52,0,0,0.075006 -7693,3501:122,12,-52,0,0,0.074899 -7694,3501:123,13,-52,0,0,0.0749062 -7695,3501:124,14,-52,0,0,0.0749275 -7696,3501:225,15,-52,0,0,0.0749275 -7697,3501:226,16,-52,0,0,0.0749275 -7698,3501:227,17,-52,0,0,0.0749418 -7699,3501:228,18,-52,0,0,0.0749418 -7700,3501:229,19,-52,0,0,0.0749562 -7701,3502:120,20,-52,0,0,0.074949 -7702,3502:121,21,-52,0,0,0.0749562 -7703,3502:122,22,-52,0,0,0.0749631 -7704,3502:123,23,-52,0,0,0.0749631 -7705,3502:124,24,-52,0,0,0.0750131 -7706,3502:225,25,-52,0,0,0.0749988 -7707,3502:226,26,-52,0,0,0.0750273 -7708,3502:227,27,-52,0,0,0.0752415 -7709,3502:228,28,-52,0,0,0.0753058 -7710,3502:229,29,-52,0,0,0.0751701 -7711,3503:120,30,-52,0,0,0.0751843 -7712,3503:121,31,-52,0,0,0.0753703 -7713,3503:122,32,-52,0,0,0.0754634 -7714,3503:123,33,-52,0,0,0.0754348 -7715,3503:124,34,-52,0,0,0.075313 -7716,3503:225,35,-52,0,0,0.0754203 -7717,3503:226,36,-52,0,0,0.0755711 -7718,3503:227,37,-52,0,0,0.0757362 -7719,3503:228,38,-52,0,0,0.0759091 -7720,3503:229,39,-52,0,0,0.076046 -7721,3504:120,40,-52,0,0,0.0764513 -7722,3504:121,41,-52,0,0,0.0765384 -7723,3504:122,42,-52,0,0,0.0766839 -7724,3504:123,43,-52,0,0,0.0764442 -7725,3504:124,44,-52,0,0,0.0762775 -7726,3504:225,45,-52,0,0,0.0761907 -7727,3504:226,46,-52,0,0,0.0762848 -7728,3504:227,47,-52,0,0,0.0753847 -7729,3504:228,48,-52,0,0,0.075163 -7730,3504:229,49,-52,0,0,0.0751701 -7731,3505:120,50,-52,0,0,0.0752343 -7732,3505:121,51,-52,0,0,0.0750416 -7733,3505:122,52,-52,0,0,0.0753272 -7734,3505:123,53,-52,0,0,0.0755352 -7735,3505:124,54,-52,0,0,0.0754492 -7736,3505:225,55,-52,0,0,0.0754779 -7737,3505:226,56,-52,0,0,0.0753917 -7738,3505:227,57,-52,0,0,0.0750702 -7739,3505:228,58,-52,0,0,0.075313 -7740,3505:229,59,-52,0,0,0.0755567 -7741,3506:120,60,-52,0,0,0.0752487 -7742,3506:121,61,-52,0,0,0.075837 -7743,3506:122,62,-52,0,0,0.0763064 -7744,3506:123,63,-52,0,0,0.0771067 -7745,3506:124,64,-52,0,0,0.0848548 -7746,3506:225,65,-52,0,0,0.0809651 -7747,3506:226,66,-52,0,0,0.0812332 -7748,3506:227,67,-52,0,0,0.0824607 -7749,3506:228,68,-52,0,0,0.0854151 -7750,3506:229,69,-52,0,0,0.0870994 -7751,3507:120,70,-52,0,0,0.0886974 -7752,3507:121,71,-52,0,0,0.0876154 -7753,3507:122,72,-52,0,0,0.0828347 -7754,3507:124,74,-52,0,0,0.0820961 -7755,3507:225,75,-52,0,0,0.0800373 -7756,3507:226,76,-52,0,0,0.0791191 -7757,3507:227,77,-52,0,0,0.0784258 -7758,3507:228,78,-52,0,0,0.077657 -7759,3507:229,79,-52,0,0,0.0774732 -7760,3508:120,80,-52,0,0,0.0769973 -7761,3508:121,81,-52,0,0,0.0766328 -7762,3508:122,82,-52,0,0,0.0762702 -7763,3508:123,83,-52,0,0,0.0760822 -7764,3508:124,84,-52,0,0,0.0765313 -7765,3508:225,85,-52,0,0,0.0763571 -7766,3508:226,86,-52,0,0,0.0761834 -7767,3508:227,87,-52,0,0,0.0801962 -7768,3508:228,88,-52,0,0,0.0857367 -7769,3508:229,89,-52,0,0,0.0842346 -7770,3509:120,90,-52,0,0,0.0846955 -7771,3509:121,91,-52,0,0,0.0900689 -7772,3509:122,92,-52,0,0,0.0910673 -7773,3509:123,93,-52,0,0,0.0846078 -7774,3509:124,94,-52,0,0,0.0869686 -7775,3509:225,95,-52,0,0,0.0858575 -7776,3509:226,96,-52,0,0,0.0878787 -7777,3509:227,97,-52,0,0,0.0884155 -7778,3509:228,98,-52,0,0,0.0900689 -7779,3509:229,99,-52,0,0,0.091485 -7780,3510:120,100,-52,0,0,0.090533 -7781,3510:121,101,-52,0,0,0.0891801 -7782,3510:122,102,-52,0,0,0.0903723 -7783,3510:123,103,-52,0,0,0.0931986 -7784,3510:124,104,-52,0,0,0.0941931 -7785,3510:225,105,-52,0,0,0.0892971 -7786,3510:226,106,-52,0,0,0.0892887 -7787,3510:227,107,-52,0,0,0.0893389 -7788,3510:228,108,-52,0,0,0.0871321 -7789,3510:229,109,-52,0,0,0.0870342 -7790,3511:120,110,-52,0,0,0.0879529 -7791,3511:121,111,-52,0,0,0.0875169 -7792,3511:122,112,-52,0,0,0.0872464 -7793,3511:123,113,-52,0,0,0.0878046 -7794,3511:124,114,-52,0,0,0.0913654 -7795,3511:225,115,-52,0,0,0.093686 -7796,3511:226,116,-52,0,0,0.095703 -7797,3511:227,117,-52,0,0,0.0973606 -7798,3511:228,118,-52,0,0,0.0988423 -7799,3511:229,119,-52,0,0,0.0997151 -7800,3512:120,120,-52,0,0,0.0998258 -7801,3512:121,121,-52,0,0,0.0988239 -7802,3512:122,122,-52,0,0,0.0979763 -7803,3512:123,123,-52,0,0,0.0999829 -7804,3512:124,124,-52,0,0,0.10245 -7805,3512:225,125,-52,0,0,0.101828 -7806,3512:226,126,-52,0,0,0.103294 -7807,3512:227,127,-52,0,0,0.103828 -7808,3512:228,128,-52,0,0,0.101734 -7809,3512:229,129,-52,0,0,0.101051 -7810,3513:120,130,-52,0,0,0.10563 -7811,3513:121,131,-52,0,0,0.104384 -7812,3513:122,132,-52,0,0,0.103924 -7813,3513:123,133,-52,0,0,0.102905 -7814,3513:124,134,-52,0,0,0.101294 -7815,3513:225,135,-52,0,0,0.10066 -7816,3513:226,136,-52,0,0,0.102403 -7817,3513:227,137,-52,0,0,0.102082 -7818,3513:228,138,-52,0,0,0.100186 -7819,3513:229,139,-52,0,0,0.10136 -7820,3514:120,140,-52,0,0,0.100261 -7821,3514:121,141,-52,0,0,0.0990528 -7822,3514:122,142,-52,0,0,0.0986685 -7823,3514:123,143,-52,0,0,0.100112 -7824,3514:124,144,-52,0,0,0.101725 -7825,3514:225,145,-52,0,0,0.0995217 -7826,3514:226,146,-52,0,0,0.0990162 -7827,3514:227,147,-52,0,0,0.099909 -7828,3514:228,148,-52,0,0,0.0986227 -7829,3514:229,149,-52,0,0,0.0964792 -7830,3515:120,150,-52,0,0,0.0896486 -7831,3515:121,151,-52,0,0,0.0827566 -7832,3515:122,152,-52,0,0,0.0885397 -7833,3515:123,153,-52,0,0,0.0919813 -7834,3515:124,154,-52,0,0,0.0936424 -7835,3515:225,155,-52,0,0,0.099411 -7836,3515:226,156,-52,0,0,0.101229 -7837,3515:227,157,-52,0,0,0.0970541 -7838,3515:228,158,-52,0,0,0.0975683 -8162,3512:112,122,-51,0,0,0.10213 -7839,3515:229,159,-52,0,0,0.0980218 -7840,3516:120,160,-52,0,0,0.0988789 -7841,3516:121,161,-52,0,0,0.100567 -7842,3516:122,162,-52,0,0,0.103867 -7843,3516:123,163,-52,0,0,0.103848 -7844,3516:124,164,-52,0,0,0.10815 -7845,3516:225,165,-52,0,0,0.110159 -7846,3516:226,166,-52,0,0,0.111739 -7847,3516:227,167,-52,0,0,0.114971 -7848,3516:228,168,-52,0,0,0.119814 -7849,3516:229,169,-52,0,0,0.124608 -7850,3517:120,170,-52,0,0,0.12863 -7851,3517:121,171,-52,0,0,0.127918 -7852,3517:122,172,-52,0,0,0.126833 -7853,3517:123,173,-52,0,0,0.127529 -7854,3517:124,174,-52,0,0,0.127849 -7855,3517:225,175,-52,0,0,0.127574 -7856,3517:226,176,-52,0,0,0.126731 -7857,3517:227,177,-52,0,0,0.123403 -7858,3517:228,178,-52,0,0,0.120173 -7859,3517:229,179,-52,0,0,0.118886 -7860,3518:120,180,-52,0,0,0.11299 -7861,5518:110,-180,-51,0,0,0.120129 -7862,5517:219,-179,-51,0,0,0.119771 -7863,5517:218,-178,-51,0,0,0.119858 -7864,5517:217,-177,-51,0,0,0.118038 -7865,5517:216,-176,-51,0,0,0.115443 -7866,5517:215,-175,-51,0,0,0.115947 -7867,5517:114,-174,-51,0,0,0.115695 -7868,5517:113,-173,-51,0,0,0.116665 -7869,5517:112,-172,-51,0,0,0.115045 -7870,5517:111,-171,-51,0,0,0.113309 -7871,5517:110,-170,-51,0,0,0.115464 -7872,5516:219,-169,-51,0,0,0.114596 -7873,5516:218,-168,-51,0,0,0.112887 -7874,5516:217,-167,-51,0,0,0.113785 -7875,5516:216,-166,-51,0,0,0.114909 -7876,5516:215,-165,-51,0,0,0.115485 -7877,5516:114,-164,-51,0,0,0.115684 -7878,5516:113,-163,-51,0,0,0.114523 -7879,5516:112,-162,-51,0,0,0.114127 -7880,5516:111,-161,-51,0,0,0.11176 -7881,5516:110,-160,-51,0,0,0.108022 -7882,5515:219,-159,-51,0,0,0.107183 -7883,5515:218,-158,-51,0,0,0.110451 -7884,5515:217,-157,-51,0,0,0.115705 -7885,5515:216,-156,-51,0,0,0.11495 -7886,5515:215,-155,-51,0,0,0.111984 -7887,5515:114,-154,-51,0,0,0.108976 -7888,5515:113,-153,-51,0,0,0.091127 -7889,5515:112,-152,-51,0,0,0.0916644 -7890,5515:111,-151,-51,0,0,0.091947 -7891,5515:110,-150,-51,0,0,0.0950117 -7892,5514:219,-149,-51,0,0,0.0948263 -7893,5514:218,-148,-51,0,0,0.0967931 -7894,5514:217,-147,-51,0,0,0.107429 -7895,5514:216,-146,-51,0,0,0.111129 -7896,5514:215,-145,-51,0,0,0.120433 -7897,5514:114,-144,-51,0,0,0.125215 -7898,5514:113,-143,-51,0,0,0.119004 -7899,5514:112,-142,-51,0,0,0.122263 -7900,5514:111,-141,-51,0,0,0.13541 -7901,5514:110,-140,-51,0,0,0.132609 -7902,5513:219,-139,-51,0,0,0.12499 -7903,5513:218,-138,-51,0,0,0.121943 -7904,5513:217,-137,-51,0,0,0.121427 -7905,5513:216,-136,-51,0,0,0.124631 -7906,5513:215,-135,-51,0,0,0.129011 -7907,5513:114,-134,-51,0,0,0.129196 -7908,5513:113,-133,-51,0,0,0.124788 -7909,5513:112,-132,-51,0,0,0.121121 -7910,5513:111,-131,-51,0,0,0.120118 -7911,5513:110,-130,-51,0,0,0.138115 -7912,5512:219,-129,-51,0,0,0.13922 -7913,5512:218,-128,-51,0,0,0.140394 -7914,5512:217,-127,-51,0,0,0.138128 -7915,5512:216,-126,-51,0,0,0.13395 -7916,5512:215,-125,-51,0,0,0.124642 -7917,5512:114,-124,-51,0,0,0.123214 -7918,5512:113,-123,-51,0,0,0.127278 -7919,5512:112,-122,-51,0,0,0.124653 -7920,5512:111,-121,-51,0,0,0.121999 -7921,5512:110,-120,-51,0,0,0.120804 -7922,5511:219,-119,-51,0,0,0.124608 -7923,5511:218,-118,-51,0,0,0.13389 -7924,5511:217,-117,-51,0,0,0.137956 -7925,5511:216,-116,-51,0,0,0.138507 -7926,5511:215,-115,-51,0,0,0.136388 -7927,5511:114,-114,-51,0,0,0.128768 -7928,5511:113,-113,-51,0,0,0.126572 -7929,5511:112,-112,-51,0,0,0.124923 -7930,5511:111,-111,-51,0,0,0.122771 -7931,5511:110,-110,-51,0,0,0.12605 -7932,5510:219,-109,-51,0,0,0.124687 -7933,5510:218,-108,-51,0,0,0.123392 -7934,5510:217,-107,-51,0,0,0.12276 -7935,5510:216,-106,-51,0,0,0.121976 -7936,5510:215,-105,-51,0,0,0.126061 -7937,5510:114,-104,-51,0,0,0.131525 -7938,5510:113,-103,-51,0,0,0.13487 -7939,5510:112,-102,-51,0,0,0.133046 -7940,5510:111,-101,-51,0,0,0.131877 -7941,5510:110,-100,-51,0,0,0.131291 -7942,5509:219,-99,-51,0,0,0.129833 -7943,5509:218,-98,-51,0,0,0.130158 -7944,5509:217,-97,-51,0,0,0.125102 -7945,5509:216,-96,-51,0,0,0.120542 -7946,5509:215,-95,-51,0,0,0.12656 -8271,5513:100,-130,-50,0,0,0.13511 -7947,5509:114,-94,-51,0,0,0.130146 -7948,5509:113,-93,-51,0,0,0.128734 -7949,5509:112,-92,-51,0,0,0.128274 -7950,5509:111,-91,-51,0,0,0.12801 -7951,5509:110,-90,-51,0,0,0.126879 -7952,5508:219,-89,-51,0,0,0.126981 -7953,5508:218,-88,-51,0,0,0.126027 -7954,5508:217,-87,-51,0,0,0.125181 -7955,5508:216,-86,-51,0,0,0.126345 -7956,5508:215,-85,-51,0,0,0.128607 -7957,5508:114,-84,-51,0,0,0.131713 -7958,5508:113,-83,-51,0,0,0.129612 -7959,5508:112,-82,-51,0,0,0.128458 -7960,5508:111,-81,-51,0,0,0.127221 -7961,5508:110,-80,-51,0,0,0.126413 -7962,5507:219,-79,-51,0,0,0.129786 -7963,5507:218,-78,-51,0,0,0.131021 -7964,5507:217,-77,-51,0,0,0.131877 -7965,5507:216,-76,-51,0,0,0.131033 -7966,5507:215,-75,-51,0,0,0.128481 -7967,5507:114,-74,-51,0,0,0.125858 -7968,5507:113,-73,-51,0,0,0.123004 -7969,5507:112,-72,-51,0,0,0.123681 -7970,5507:111,-71,-51,0,0,0.122153 -7971,5507:110,-70,-51,0,0,0.119231 -7972,5506:219,-69,-51,0,0,0.111414 -7973,5506:218,-68,-51,0,0,0.105912 -7974,5506:217,-67,-51,0,0,0.104394 -7975,5506:216,-66,-51,0,0,0.101416 -7976,5506:215,-65,-51,0,0,0.100455 -7977,5506:114,-64,-51,0,0,0.0981216 -7978,5506:113,-63,-51,0,0,0.100085 -7979,5506:112,-62,-51,0,0,0.0961664 -7980,5506:111,-61,-51,0,0,0.0950912 -7981,5506:110,-60,-51,0,0,0.101163 -7982,5505:219,-59,-51,0,0,0.0985773 -7983,5505:218,-58,-51,0,0,0.0959967 -7984,5505:217,-57,-51,0,0,0.0936597 -7985,5505:216,-56,-51,0,0,0.0864886 -7986,5505:215,-55,-51,0,0,0.0884982 -7987,5505:114,-54,-51,0,0,0.0886559 -7988,5505:113,-53,-51,0,0,0.0882498 -7989,5505:112,-52,-51,0,0,0.0839735 -7990,5505:111,-51,-51,0,0,0.0790218 -7991,5505:110,-50,-51,0,0,0.0789771 -7992,5504:219,-49,-51,0,0,0.0794191 -7993,5504:218,-48,-51,0,0,0.0813636 -7994,5504:217,-47,-51,0,0,0.0882004 -7995,5504:216,-46,-51,0,0,0.0944829 -7996,5504:215,-45,-51,0,0,0.0912886 -7997,5504:114,-44,-51,0,0,0.0804239 -7998,5504:113,-43,-51,0,0,0.0840447 -7999,5504:112,-42,-51,0,0,0.0849506 -8000,5504:111,-41,-51,0,0,0.0848468 -8001,5504:110,-40,-51,0,0,0.0820805 -8002,5503:219,-39,-51,0,0,0.0832728 -8003,5503:218,-38,-51,0,0,0.0866592 -8004,5503:217,-37,-51,0,0,0.0844806 -8005,5503:216,-36,-51,0,0,0.0807284 -8006,5503:215,-35,-51,0,0,0.0843616 -8007,5503:114,-34,-51,0,0,0.0847035 -8008,5503:113,-33,-51,0,0,0.084298 -8009,5503:112,-32,-51,0,0,0.0815402 -8010,5503:111,-31,-51,0,0,0.0816018 -8011,5503:110,-30,-51,0,0,0.0802492 -8012,5502:219,-29,-51,0,0,0.0808581 -8013,5502:218,-28,-51,0,0,0.0780035 -8014,5502:217,-27,-51,0,0,0.0777601 -8015,5502:216,-26,-51,0,0,0.0778042 -8016,5502:215,-25,-51,0,0,0.0785446 -8017,5502:114,-24,-51,0,0,0.088093 -8018,5502:113,-23,-51,0,0,0.0895731 -8019,5502:112,-22,-51,0,0,0.0888219 -8020,5502:111,-21,-51,0,0,0.0857527 -8021,5502:110,-20,-51,0,0,0.0819646 -8022,5501:219,-19,-51,0,0,0.082983 -8023,5501:218,-18,-51,0,0,0.0825695 -8024,5501:217,-17,-51,0,0,0.0804315 -8025,5501:216,-16,-51,0,0,0.0786489 -8026,5501:215,-15,-51,0,0,0.0785149 -8027,5501:114,-14,-51,0,0,0.0787755 -8028,5501:113,-13,-51,0,0,0.0797653 -8029,5501:112,-12,-51,0,0,0.0804315 -8030,5501:111,-11,-51,0,0,0.080022 -8031,5501:110,-10,-51,0,0,0.0787755 -8032,5500:219,-9,-51,0,0,0.0793366 -8033,5500:218,-8,-51,0,0,0.079788 -8034,5500:217,-7,-51,0,0,0.0796447 -8035,5500:216,-6,-51,0,0,0.0776127 -8036,5500:215,-5,-51,0,0,0.0771141 -8037,5500:114,-4,-51,0,0,0.0756428 -8038,5500:113,-3,-51,0,0,0.0754993 -8039,5500:112,-2,-51,0,0,0.0754275 -8040,5500:111,-1,-51,0,0,0.0751344 -8041,3500:111,0,-51,0,0,0.074899 -8042,3500:111,1,-51,0,0,0.074828 -8043,3500:112,2,-51,0,0,0.0749205 -8044,3500:113,3,-51,0,0,0.0755567 -8045,3500:114,4,-51,0,0,0.07565 -8046,3500:215,5,-51,0,0,0.0755207 -8047,3500:216,6,-51,0,0,0.0752343 -8048,3500:217,7,-51,0,0,0.0749631 -8049,3500:218,8,-51,0,0,0.075006 -8050,3500:219,9,-51,0,0,0.0750843 -8051,3501:110,10,-51,0,0,0.0748493 -8052,3501:111,11,-51,0,0,0.0747996 -8053,3501:112,12,-51,0,0,0.0748208 -8054,3501:113,13,-51,0,0,0.0748564 -8055,3501:114,14,-51,0,0,0.074899 -8056,3501:215,15,-51,0,0,0.0748705 -8057,3501:216,16,-51,0,0,0.0748636 -8058,3501:217,17,-51,0,0,0.0748421 -8059,3501:218,18,-51,0,0,0.074828 -8060,3501:219,19,-51,0,0,0.0748208 -8061,3502:110,20,-51,0,0,0.0747924 -8062,3502:111,21,-51,0,0,0.0749846 -8063,3502:112,22,-51,0,0,0.0749275 -8064,3502:113,23,-51,0,0,0.0748421 -8065,3502:114,24,-51,0,0,0.0748564 -8066,3502:215,25,-51,0,0,0.0749703 -8067,3502:216,26,-51,0,0,0.0751059 -8068,3502:217,27,-51,0,0,0.0751344 -8069,3502:218,28,-51,0,0,0.0749346 -8070,3502:219,29,-51,0,0,0.0750201 -8071,3503:110,30,-51,0,0,0.0750345 -8072,3503:111,31,-51,0,0,0.0752343 -8073,3503:112,32,-51,0,0,0.075063 -8074,3503:113,33,-51,0,0,0.0752057 -8075,3503:114,34,-51,0,0,0.07635 -8076,3503:215,35,-51,0,0,0.07827 -8077,3503:216,36,-51,0,0,0.0774217 -8078,3503:217,37,-51,0,0,0.0757795 -8079,3503:218,38,-51,0,0,0.0777232 -8080,3503:219,39,-51,0,0,0.0767347 -8081,3504:110,40,-51,0,0,0.0772092 -8082,3504:111,41,-51,0,0,0.0778634 -8083,3504:112,42,-51,0,0,0.0780405 -8084,3504:113,43,-51,0,0,0.0780405 -8085,3504:114,44,-51,0,0,0.077635 -8086,3504:215,45,-51,0,0,0.0769681 -8087,3504:216,46,-51,0,0,0.0771799 -8088,3504:217,47,-51,0,0,0.0778116 -8089,3504:218,48,-51,0,0,0.0774878 -8090,3504:219,49,-51,0,0,0.0766184 -8091,3505:110,50,-51,0,0,0.0766184 -8092,3505:111,51,-51,0,0,0.0758515 -8093,3505:112,52,-51,0,0,0.0772092 -8094,3505:113,53,-51,0,0,0.0790145 -8095,3505:114,54,-51,0,0,0.0758225 -8096,3505:215,55,-51,0,0,0.0774952 -8097,3505:216,56,-51,0,0,0.0762485 -8098,3505:217,57,-51,0,0,0.07565 -8099,3505:218,58,-51,0,0,0.0778116 -8100,3505:219,59,-51,0,0,0.0843219 -8101,3506:110,60,-51,0,0,0.0788873 -8102,3506:111,61,-51,0,0,0.0832336 -8103,3506:112,62,-51,0,0,0.0826864 -8104,3506:113,63,-51,0,0,0.0781588 -8105,3506:114,64,-51,0,0,0.0817638 -8106,3506:215,65,-51,0,0,0.0872057 -8107,3506:216,66,-51,0,0,0.0877551 -8108,3506:217,67,-51,0,0,0.0856078 -8109,3506:218,68,-51,0,0,0.0868708 -8110,3506:219,69,-51,0,0,0.0878867 -8111,3507:110,70,-51,0,0,0.088316 -8112,3507:111,71,-51,0,0,0.0902036 -8113,3507:112,72,-51,0,0,0.08303 -8114,3507:114,74,-51,0,0,0.0800978 -8115,3507:215,75,-51,0,0,0.0794491 -8116,3507:216,76,-51,0,0,0.0790145 -8117,3507:217,77,-51,0,0,0.0793891 -8118,3507:218,78,-51,0,0,0.0792691 -8119,3507:219,79,-51,0,0,0.077532 -8120,3508:110,80,-51,0,0,0.0770996 -8121,3508:111,81,-51,0,0,0.0770849 -8122,3508:112,82,-51,0,0,0.0773044 -8123,3508:113,83,-51,0,0,0.0772459 -8124,3508:114,84,-51,0,0,0.0773924 -8125,3508:215,85,-51,0,0,0.0768806 -8126,3508:216,86,-51,0,0,0.0779149 -8127,3508:217,87,-51,0,0,0.0880351 -8128,3508:218,88,-51,0,0,0.0964704 -8129,3508:219,89,-51,0,0,0.0910673 -8130,3509:110,90,-51,0,0,0.0889718 -8131,3509:111,91,-51,0,0,0.0898333 -8132,3509:112,92,-51,0,0,0.090855 -8133,3509:113,93,-51,0,0,0.0909568 -8134,3509:114,94,-51,0,0,0.0901699 -8135,3509:215,95,-51,0,0,0.089741 -8136,3509:216,96,-51,0,0,0.0877963 -8137,3509:217,97,-51,0,0,0.0874759 -8138,3509:218,98,-51,0,0,0.0881507 -8139,3509:219,99,-51,0,0,0.0895481 -8140,3510:110,100,-51,0,0,0.0918871 -8141,3510:111,101,-51,0,0,0.0916302 -8142,3510:112,102,-51,0,0,0.0913909 -8143,3510:113,103,-51,0,0,0.0947733 -8144,3510:114,104,-51,0,0,0.0965688 -8145,3510:215,105,-51,0,0,0.0955696 -8146,3510:216,106,-51,0,0,0.0950292 -8147,3510:217,107,-51,0,0,0.0928259 -8148,3510:218,108,-51,0,0,0.0904992 -8149,3510:219,109,-51,0,0,0.09533 -8150,3511:110,110,-51,0,0,0.0971891 -8151,3511:111,111,-51,0,0,0.0970091 -8152,3511:112,112,-51,0,0,0.0944038 -8153,3511:113,113,-51,0,0,0.101285 -8154,3511:114,114,-51,0,0,0.104029 -8155,3511:215,115,-51,0,0,0.0977858 -8156,3511:216,116,-51,0,0,0.0976136 -8157,3511:217,117,-51,0,0,0.0986411 -8158,3511:218,118,-51,0,0,0.0989795 -8159,3511:219,119,-51,0,0,0.100781 -8160,3512:110,120,-51,0,0,0.100892 -8161,3512:111,121,-51,0,0,0.102252 -8163,3512:113,123,-51,0,0,0.102943 -8164,3512:114,124,-51,0,0,0.103047 -8165,3512:215,125,-51,0,0,0.102848 -8166,3512:216,126,-51,0,0,0.103114 -8167,3512:217,127,-51,0,0,0.104653 -8168,3512:218,128,-51,0,0,0.105824 -8169,3512:219,129,-51,0,0,0.106869 -8170,3513:110,130,-51,0,0,0.107873 -8171,3513:111,131,-51,0,0,0.108042 -8172,3513:112,132,-51,0,0,0.108329 -8173,3513:113,133,-51,0,0,0.108071 -8174,3513:114,134,-51,0,0,0.104827 -8175,3513:215,135,-51,0,0,0.1028 -8176,3513:216,136,-51,0,0,0.104096 -8177,3513:217,137,-51,0,0,0.103924 -8178,3513:218,138,-51,0,0,0.10319 -8179,3513:219,139,-51,0,0,0.103266 -8180,3514:110,140,-51,0,0,0.102469 -8181,3514:111,141,-51,0,0,0.102962 -8182,3514:112,142,-51,0,0,0.103943 -8183,3514:113,143,-51,0,0,0.10561 -8184,3514:114,144,-51,0,0,0.105339 -8185,3514:215,145,-51,0,0,0.104596 -8186,3514:216,146,-51,0,0,0.103838 -8187,3514:217,147,-51,0,0,0.101838 -8188,3514:218,148,-51,0,0,0.099108 -8189,3514:219,149,-51,0,0,0.0956672 -8190,3515:110,150,-51,0,0,0.0862049 -8191,3515:111,151,-51,0,0,0.0895984 -8192,3515:112,152,-51,0,0,0.0901951 -8193,3515:113,153,-51,0,0,0.0927307 -8194,3515:114,154,-51,0,0,0.0945707 -8195,3515:215,155,-51,0,0,0.0990162 -8196,3515:216,156,-51,0,0,0.100846 -8197,3515:217,157,-51,0,0,0.0997059 -8198,3515:218,158,-51,0,0,0.0996873 -8199,3515:219,159,-51,0,0,0.100753 -8200,3516:110,160,-51,0,0,0.108289 -8201,3516:111,161,-51,0,0,0.111638 -8202,3516:112,162,-51,0,0,0.12778 -8203,3516:113,163,-51,0,0,0.129937 -8204,3516:114,164,-51,0,0,0.131936 -8205,3516:215,165,-51,0,0,0.128607 -8206,3516:216,166,-51,0,0,0.120837 -8207,3516:217,167,-51,0,0,0.130706 -8208,3516:218,168,-51,0,0,0.132019 -8209,3516:219,169,-51,0,0,0.13196 -8210,3517:110,170,-51,0,0,0.130753 -8211,3517:111,171,-51,0,0,0.12762 -8212,3517:112,172,-51,0,0,0.12801 -8213,3517:113,173,-51,0,0,0.128228 -8214,3517:114,174,-51,0,0,0.127998 -8215,3517:215,175,-51,0,0,0.126526 -8216,3517:216,176,-51,0,0,0.124743 -8217,3517:217,177,-51,0,0,0.122252 -8218,3517:218,178,-51,0,0,0.123303 -8219,3517:219,179,-51,0,0,0.123037 -8220,3518:110,180,-51,0,0,0.120129 -8221,5518:100,-180,-50,0,0,0.132585 -8222,5517:209,-179,-50,0,0,0.125994 -8223,5517:208,-178,-50,0,0,0.120608 -8224,5517:207,-177,-50,0,0,0.122583 -8225,5517:206,-176,-50,0,0,0.123904 -8226,5517:205,-175,-50,0,0,0.125756 -8227,5517:104,-174,-50,0,0,0.125835 -8228,5517:103,-173,-50,0,0,0.123481 -8229,5517:102,-172,-50,0,0,0.12202 -8230,5517:101,-171,-50,0,0,0.123626 -8231,5517:100,-170,-50,0,0,0.125361 -8232,5516:209,-169,-50,0,0,0.121746 -8233,5516:208,-168,-50,0,0,0.118477 -8234,5516:207,-167,-50,0,0,0.119912 -8235,5516:206,-166,-50,0,0,0.124071 -8236,5516:205,-165,-50,0,0,0.12287 -8237,5516:104,-164,-50,0,0,0.121077 -8238,5516:103,-163,-50,0,0,0.120979 -8239,5516:102,-162,-50,0,0,0.120183 -8240,5516:101,-161,-50,0,0,0.119177 -8241,5516:100,-160,-50,0,0,0.117622 -8242,5515:209,-159,-50,0,0,0.116348 -8243,5515:208,-158,-50,0,0,0.121164 -8244,5515:207,-157,-50,0,0,0.127038 -8245,5515:206,-156,-50,0,0,0.121515 -8246,5515:205,-155,-50,0,0,0.118617 -8247,5515:104,-154,-50,0,0,0.116697 -8248,5515:103,-153,-50,0,0,0.110673 -8249,5515:102,-152,-50,0,0,0.0973155 -8250,5515:101,-151,-50,0,0,0.0973967 -8251,5515:100,-150,-50,0,0,0.101659 -8252,5514:209,-149,-50,0,0,0.10027 -8253,5514:208,-148,-50,0,0,0.0973786 -8254,5514:207,-147,-50,0,0,0.108121 -8255,5514:206,-146,-50,0,0,0.116063 -8256,5514:205,-145,-50,0,0,0.12134 -8257,5514:104,-144,-50,0,0,0.122351 -8258,5514:103,-143,-50,0,0,0.121285 -8259,5514:102,-142,-50,0,0,0.123336 -8260,5514:101,-141,-50,0,0,0.13196 -8261,5514:100,-140,-50,0,0,0.138949 -8262,5513:209,-139,-50,0,0,0.136146 -8263,5513:208,-138,-50,0,0,0.128964 -8264,5513:207,-137,-50,0,0,0.133938 -8265,5513:206,-136,-50,0,0,0.135038 -8266,5513:205,-135,-50,0,0,0.135422 -8267,5513:104,-134,-50,0,0,0.130461 -8268,5513:103,-133,-50,0,0,0.128251 -8269,5513:102,-132,-50,0,0,0.125767 -8270,5513:101,-131,-50,0,0,0.12553 -8272,5512:209,-129,-50,0,0,0.137481 -8273,5512:208,-128,-50,0,0,0.143851 -8274,5512:207,-127,-50,0,0,0.153965 -8275,5512:206,-126,-50,0,0,0.154353 -8276,5512:205,-125,-50,0,0,0.148 -8277,5512:104,-124,-50,0,0,0.135134 -8278,5512:103,-123,-50,0,0,0.128918 -8279,5512:102,-122,-50,0,0,0.123737 -8280,5512:101,-121,-50,0,0,0.127163 -8281,5512:100,-120,-50,0,0,0.129427 -8282,5511:209,-119,-50,0,0,0.132372 -8283,5511:208,-118,-50,0,0,0.135386 -8284,5511:207,-117,-50,0,0,0.13922 -8285,5511:206,-116,-50,0,0,0.138802 -8286,5511:205,-115,-50,0,0,0.13697 -8287,5511:104,-114,-50,0,0,0.129057 -8288,5511:103,-113,-50,0,0,0.128734 -8289,5511:102,-112,-50,0,0,0.129392 -8290,5511:101,-111,-50,0,0,0.131267 -8291,5511:100,-110,-50,0,0,0.13281 -8292,5510:209,-109,-50,0,0,0.134069 -8293,5510:208,-108,-50,0,0,0.133985 -8294,5510:207,-107,-50,0,0,0.131631 -8295,5510:206,-106,-50,0,0,0.129462 -8296,5510:205,-105,-50,0,0,0.13196 -8297,5510:104,-104,-50,0,0,0.137346 -8298,5510:103,-103,-50,0,0,0.137201 -8299,5510:102,-102,-50,0,0,0.132195 -8300,5510:101,-101,-50,0,0,0.134571 -8301,5510:100,-100,-50,0,0,0.132184 -8302,5509:209,-99,-50,0,0,0.130869 -8303,5509:208,-98,-50,0,0,0.129833 -8304,5509:207,-97,-50,0,0,0.126333 -8305,5509:206,-96,-50,0,0,0.126787 -8306,5509:205,-95,-50,0,0,0.130589 -8307,5509:104,-94,-50,0,0,0.13216 -8308,5509:103,-93,-50,0,0,0.130472 -8309,5509:102,-92,-50,0,0,0.130916 -8310,5509:101,-91,-50,0,0,0.133902 -8311,5509:100,-90,-50,0,0,0.132738 -8312,5508:209,-89,-50,0,0,0.130181 -8313,5508:208,-88,-50,0,0,0.128113 -8314,5508:207,-87,-50,0,0,0.129323 -8315,5508:206,-86,-50,0,0,0.130205 -8316,5508:205,-85,-50,0,0,0.132999 -8317,5508:104,-84,-50,0,0,0.134296 -8318,5508:103,-83,-50,0,0,0.130706 -8319,5508:102,-82,-50,0,0,0.13024 -8320,5508:101,-81,-50,0,0,0.132349 -8321,5508:100,-80,-50,0,0,0.131725 -8322,5507:209,-79,-50,0,0,0.129949 -8323,5507:208,-78,-50,0,0,0.130577 -8324,5507:207,-77,-50,0,0,0.133319 -8325,5507:206,-76,-50,0,0,0.134774 -8326,5507:205,-75,-50,0,0,0.133628 -8327,5507:104,-74,-50,0,0,0.13242 -8328,5507:103,-73,-50,0,0,0.134607 -8329,5507:102,-72,-50,0,0,0.13714 -8330,5507:101,-71,-50,0,0,0.136049 -8331,5507:100,-70,-50,0,0,0.132077 -8332,5506:209,-69,-50,0,0,0.126208 -8333,5506:208,-68,-50,0,0,0.114689 -8334,5506:207,-67,-50,0,0,0.108936 -8335,5506:206,-66,-50,0,0,0.109546 -8336,5506:205,-65,-50,0,0,0.110936 -8337,5506:104,-64,-50,0,0,0.114898 -8338,5506:103,-63,-50,0,0,0.121625 -8339,5506:102,-62,-50,0,0,0.121186 -8340,5506:101,-61,-50,0,0,0.115359 -8341,5506:100,-60,-50,0,0,0.101763 -8342,5505:209,-59,-50,0,0,0.100911 -8343,5505:208,-58,-50,0,0,0.0947997 -8344,5505:207,-57,-50,0,0,0.0942632 -8345,5505:206,-56,-50,0,0,0.0917757 -8346,5505:205,-55,-50,0,0,0.0913568 -8347,5505:104,-54,-50,0,0,0.0964076 -8348,5505:103,-53,-50,0,0,0.0952238 -8349,5505:102,-52,-50,0,0,0.0911951 -8350,5505:101,-51,-50,0,0,0.0883657 -8351,5505:100,-50,-50,0,0,0.0859705 -8352,5504:209,-49,-50,0,0,0.088631 -8353,5504:208,-48,-50,0,0,0.0954807 -8354,5504:207,-47,-50,0,0,0.0964346 -8355,5504:206,-46,-50,0,0,0.0926961 -8356,5504:205,-45,-50,0,0,0.0904316 -8357,5504:104,-44,-50,0,0,0.0886891 -8358,5504:103,-43,-50,0,0,0.0861644 -8359,5504:102,-42,-50,0,0,0.0917328 -8360,5504:101,-41,-50,0,0,0.0892303 -8361,5504:100,-40,-50,0,0,0.0904737 -8362,5503:209,-39,-50,0,0,0.0924285 -8363,5503:208,-38,-50,0,0,0.0875252 -8364,5503:207,-37,-50,0,0,0.0876565 -8365,5503:206,-36,-50,0,0,0.0876319 -8366,5503:205,-35,-50,0,0,0.0882582 -8367,5503:104,-34,-50,0,0,0.0855837 -8368,5503:103,-33,-50,0,0,0.0845044 -8369,5503:102,-32,-50,0,0,0.084775 -8370,5503:101,-31,-50,0,0,0.0850225 -8371,5503:100,-30,-50,0,0,0.0836658 -8372,5502:209,-29,-50,0,0,0.0838944 -8373,5502:208,-28,-50,0,0,0.0837052 -8374,5502:207,-27,-50,0,0,0.0825851 -8375,5502:206,-26,-50,0,0,0.0841712 -8376,5502:205,-25,-50,0,0,0.0847991 -8377,5502:104,-24,-50,0,0,0.0894058 -8378,5502:103,-23,-50,0,0,0.0913485 -8379,5502:102,-22,-50,0,0,0.0870503 -8380,5502:101,-21,-50,0,0,0.0863749 -8381,5502:100,-20,-50,0,0,0.0857205 -8382,5501:209,-19,-50,0,0,0.0850545 -8383,5501:208,-18,-50,0,0,0.0861725 -8384,5501:207,-17,-50,0,0,0.0853267 -8385,5501:206,-16,-50,0,0,0.0851507 -8386,5501:205,-15,-50,0,0,0.0838708 -8387,5501:104,-14,-50,0,0,0.0827956 -8388,5501:103,-13,-50,0,0,0.0830847 -8389,5501:102,-12,-50,0,0,0.0840287 -8390,5501:101,-11,-50,0,0,0.085624 -8391,5501:100,-10,-50,0,0,0.0846476 -8392,5500:209,-9,-50,0,0,0.0830142 -8393,5500:208,-8,-50,0,0,0.0839814 -8394,5500:207,-7,-50,0,0,0.0828423 -8395,5500:206,-6,-50,0,0,0.0827799 -8396,5500:205,-5,-50,0,0,0.0814787 -8397,5500:104,-4,-50,0,0,0.0821271 -8398,5500:103,-3,-50,0,0,0.0804012 -8399,5500:102,-2,-50,0,0,0.0813943 -8400,5500:101,-1,-50,0,0,0.0813174 -8401,3500:101,0,-50,0,0,0.0806066 -8402,3500:101,1,-50,0,0,0.0794792 -8403,3500:102,2,-50,0,0,0.0790218 -8404,3500:103,3,-50,0,0,0.0770775 -8405,3500:104,4,-50,0,0,0.0766184 -8406,3500:205,5,-50,0,0,0.0761689 -8407,3500:206,6,-50,0,0,0.0768003 -8408,3500:207,7,-50,0,0,0.0769315 -8409,3500:208,8,-50,0,0,0.0769389 -8410,3500:209,9,-50,0,0,0.0772092 -8411,3501:100,10,-50,0,0,0.0758803 -8412,3501:101,11,-50,0,0,0.0749846 -8413,3501:102,12,-50,0,0,0.0749703 -8414,3501:103,13,-50,0,0,0.0750702 -8415,3501:104,14,-50,0,0,0.0749916 -8416,3501:205,15,-50,0,0,0.0749133 -8417,3501:206,16,-50,0,0,0.0748777 -8418,3501:207,17,-50,0,0,0.0748421 -8419,3501:208,18,-50,0,0,0.0748208 -8420,3501:209,19,-50,0,0,0.0749062 -8421,3502:100,20,-50,0,0,0.075313 -8422,3502:101,21,-50,0,0,0.075765 -8423,3502:102,22,-50,0,0,0.0757002 -8424,3502:103,23,-50,0,0,0.0753847 -8425,3502:104,24,-50,0,0,0.0754849 -8426,3502:205,25,-50,0,0,0.07614 -8427,3502:206,26,-50,0,0,0.0765676 -8428,3502:207,27,-50,0,0,0.0763354 -8429,3502:208,28,-50,0,0,0.0754921 -8430,3502:209,29,-50,0,0,0.0762918 -8431,3503:100,30,-50,0,0,0.0773559 -8432,3503:101,31,-50,0,0,0.0766401 -8433,3503:102,32,-50,0,0,0.0765747 -8434,3503:103,33,-50,0,0,0.0759595 -8435,3503:104,34,-50,0,0,0.0772018 -8436,3503:205,35,-50,0,0,0.0805761 -8437,3503:206,36,-50,0,0,0.0787605 -8438,3503:207,37,-50,0,0,0.0793815 -8439,3503:208,38,-50,0,0,0.0794868 -8440,3503:209,39,-50,0,0,0.079254 -8441,3504:100,40,-50,0,0,0.0790218 -8442,3504:101,41,-50,0,0,0.0793064 -8443,3504:102,42,-50,0,0,0.0794792 -8444,3504:103,43,-50,0,0,0.0799768 -8445,3504:104,44,-50,0,0,0.0807435 -8446,3504:205,45,-50,0,0,0.0853509 -8447,3504:206,46,-50,0,0,0.083926 -8448,3504:207,47,-50,0,0,0.0803025 -8449,3504:208,48,-50,0,0,0.0791191 -8450,3504:209,49,-50,0,0,0.0800525 -8451,3505:100,50,-50,0,0,0.0812713 -8452,3505:101,51,-50,0,0,0.08181 -8453,3505:102,52,-50,0,0,0.0866185 -8454,3505:103,53,-50,0,0,0.0898584 -8455,3505:104,54,-50,0,0,0.0872546 -8456,3505:205,55,-50,0,0,0.0819491 -8457,3505:206,56,-50,0,0,0.0839183 -8458,3505:207,57,-50,0,0,0.084584 -8459,3505:208,58,-50,0,0,0.0852626 -8460,3505:209,59,-50,0,0,0.0876482 -8461,3506:100,60,-50,0,0,0.0880434 -8462,3506:101,61,-50,0,0,0.085648 -8463,3506:102,62,-50,0,0,0.0886723 -8464,3506:103,63,-50,0,0,0.0886723 -8465,3506:104,64,-50,0,0,0.0931292 -8466,3506:205,65,-50,0,0,0.0961394 -8467,3506:206,66,-50,0,0,0.0933288 -8468,3506:207,67,-50,0,0,0.0863344 -8469,3506:208,68,-50,0,0,0.0893639 -8470,3506:209,69,-50,0,0,0.0889469 -8471,3507:100,70,-50,0,0,0.0915277 -8472,3507:101,71,-50,0,0,0.0919986 -8473,3507:102,72,-50,0,0,0.0889634 -8474,3507:104,74,-50,0,0,0.0829205 -8475,3507:205,75,-50,0,0,0.0846955 -8476,3507:206,76,-50,0,0,0.0849267 -8477,3507:207,77,-50,0,0,0.0841159 -8478,3507:208,78,-50,0,0,0.0838313 -8479,3507:209,79,-50,0,0,0.0827644 -8480,3508:100,80,-50,0,0,0.0805531 -8481,3508:101,81,-50,0,0,0.0800828 -8482,3508:102,82,-50,0,0,0.079284 -8483,3508:103,83,-50,0,0,0.0777084 -8484,3508:104,84,-50,0,0,0.077224 -8485,3508:205,85,-50,0,0,0.0772385 -8486,3508:206,86,-50,0,0,0.0807971 -8487,3508:207,87,-50,0,0,0.0984222 -8488,3508:208,88,-50,0,0,0.099872 -8489,3508:209,89,-50,0,0,0.0976772 -8490,3509:100,90,-50,0,0,0.0961394 -8491,3509:101,91,-50,0,0,0.0968471 -8492,3509:102,92,-50,0,0,0.0948174 -8493,3509:103,93,-50,0,0,0.0928259 -8494,3509:104,94,-50,0,0,0.0932421 -8495,3509:205,95,-50,0,0,0.0911525 -8496,3509:206,96,-50,0,0,0.0893974 -8497,3509:207,97,-50,0,0,0.0909568 -8498,3509:208,98,-50,0,0,0.0908464 -8499,3509:209,99,-50,0,0,0.0888636 -8500,3510:100,100,-50,0,0,0.0915191 -8501,3510:101,101,-50,0,0,0.093103 -8502,3510:102,102,-50,0,0,0.0940268 -8503,3510:103,103,-50,0,0,0.0972433 -8504,3510:104,104,-50,0,0,0.0982307 -8505,3510:205,105,-50,0,0,0.0987965 -8506,3510:206,106,-50,0,0,0.100122 -8507,3510:207,107,-50,0,0,0.100094 -8508,3510:208,108,-50,0,0,0.10079 -8509,3510:209,109,-50,0,0,0.101341 -8510,3511:100,110,-50,0,0,0.101033 -8511,3511:101,111,-50,0,0,0.102791 -8512,3511:102,112,-50,0,0,0.10107 -8513,3511:103,113,-50,0,0,0.100818 -8514,3511:104,114,-50,0,0,0.105194 -8515,3511:205,115,-50,0,0,0.104788 -8516,3511:206,116,-50,0,0,0.108101 -8517,3511:207,117,-50,0,0,0.109917 -8518,3511:208,118,-50,0,0,0.109506 -8519,3511:209,119,-50,0,0,0.109877 -8520,3512:100,120,-50,0,0,0.106077 -8521,3512:101,121,-50,0,0,0.103399 -8522,3512:102,122,-50,0,0,0.104856 -8523,3512:103,123,-50,0,0,0.105921 -8524,3512:104,124,-50,0,0,0.103523 -8525,3512:205,125,-50,0,0,0.103475 -8526,3512:206,126,-50,0,0,0.107173 -8527,3512:207,127,-50,0,0,0.110279 -8528,3512:208,128,-50,0,0,0.109676 -8529,3512:209,129,-50,0,0,0.107715 -8530,3513:100,130,-50,0,0,0.107468 -8531,3513:101,131,-50,0,0,0.107745 -8532,3513:102,132,-50,0,0,0.108786 -8533,3513:103,133,-50,0,0,0.108776 -8534,3513:104,134,-50,0,0,0.107508 -8535,3513:205,135,-50,0,0,0.105252 -8536,3513:206,136,-50,0,0,0.105912 -8537,3513:207,137,-50,0,0,0.106526 -8538,3513:208,138,-50,0,0,0.107232 -8539,3513:209,139,-50,0,0,0.105001 -8540,3514:100,140,-50,0,0,0.104991 -8541,3514:101,141,-50,0,0,0.106448 -8542,3514:102,142,-50,0,0,0.108032 -8543,3514:103,143,-50,0,0,0.109085 -8544,3514:104,144,-50,0,0,0.109166 -8545,3514:205,145,-50,0,0,0.108836 -8546,3514:206,146,-50,0,0,0.10817 -8547,3514:207,147,-50,0,0,0.105775 -8548,3514:208,148,-50,0,0,0.104067 -8549,3514:209,149,-50,0,0,0.0988605 -8550,3515:100,150,-50,0,0,0.0882415 -8551,3515:101,151,-50,0,0,0.0948438 -8552,3515:102,152,-50,0,0,0.0945973 -8553,3515:103,153,-50,0,0,0.097795 -8554,3515:104,154,-50,0,0,0.118231 -8555,3515:205,155,-50,0,0,0.120401 -8556,3515:206,156,-50,0,0,0.101904 -8557,3515:207,157,-50,0,0,0.101107 -8558,3515:208,158,-50,0,0,0.107036 -8559,3515:209,159,-50,0,0,0.112015 -8560,3516:100,160,-50,0,0,0.111566 -8561,3516:101,161,-50,0,0,0.109947 -8562,3516:102,162,-50,0,0,0.12202 -8563,3516:103,163,-50,0,0,0.120053 -8564,3516:104,164,-50,0,0,0.134367 -8565,3516:205,165,-50,0,0,0.132656 -8566,3516:206,166,-50,0,0,0.13383 -8567,3516:207,167,-50,0,0,0.13149 -8568,3516:208,168,-50,0,0,0.131232 -8569,3516:209,169,-50,0,0,0.131033 -8570,3517:100,170,-50,0,0,0.130694 -8571,3517:101,171,-50,0,0,0.129612 -8572,3517:102,172,-50,0,0,0.13203 -8573,3517:103,173,-50,0,0,0.131244 -8574,3517:104,174,-50,0,0,0.130717 -8575,3517:205,175,-50,0,0,0.128665 -8576,3517:206,176,-50,0,0,0.127403 -8577,3517:207,177,-50,0,0,0.12499 -8578,3517:208,178,-50,0,0,0.125632 -8579,3517:209,179,-50,0,0,0.126981 -8580,3518:100,180,-50,0,0,0.132585 -8581,5418:390,-180,-49,0,0,0.137018 -8582,5417:499,-179,-49,0,0,0.134511 -8583,5417:498,-178,-49,0,0,0.126277 -8584,5417:497,-177,-49,0,0,0.126503 -8585,5417:496,-176,-49,0,0,0.136509 -8586,5417:495,-175,-49,0,0,0.135663 -8587,5417:394,-174,-49,0,0,0.134224 -8588,5417:393,-173,-49,0,0,0.13281 -8589,5417:392,-172,-49,0,0,0.132656 -8590,5417:391,-171,-49,0,0,0.135038 -8591,5417:390,-170,-49,0,0,0.133474 -8592,5416:499,-169,-49,0,0,0.126913 -8593,5416:498,-168,-49,0,0,0.122561 -8594,5416:497,-167,-49,0,0,0.125384 -8595,5416:496,-166,-49,0,0,0.131056 -8596,5416:495,-165,-49,0,0,0.130741 -8597,5416:394,-164,-49,0,0,0.127643 -8598,5416:393,-163,-49,0,0,0.124317 -8599,5416:392,-162,-49,0,0,0.123214 -8600,5416:391,-161,-49,0,0,0.124822 -8601,5416:390,-160,-49,0,0,0.128849 -8602,5415:499,-159,-49,0,0,0.130822 -8603,5415:498,-158,-49,0,0,0.13307 -8604,5415:497,-157,-49,0,0,0.136037 -8605,5415:496,-156,-49,0,0,0.131713 -8606,5415:495,-155,-49,0,0,0.125159 -8607,5415:394,-154,-49,0,0,0.118327 -8608,5415:393,-153,-49,0,0,0.113568 -8609,5415:392,-152,-49,0,0,0.110431 -8610,5415:391,-151,-49,0,0,0.10531 -8611,5415:390,-150,-49,0,0,0.103332 -8612,5414:499,-149,-49,0,0,0.106067 -8613,5414:498,-148,-49,0,0,0.100623 -8614,5414:497,-147,-49,0,0,0.102431 -8615,5414:496,-146,-49,0,0,0.104846 -8616,5414:495,-145,-49,0,0,0.11224 -8617,5414:394,-144,-49,0,0,0.120303 -8618,5414:393,-143,-49,0,0,0.1342 -8619,5414:392,-142,-49,0,0,0.144688 -8620,5414:391,-141,-49,0,0,0.150504 -8621,5414:390,-140,-49,0,0,0.136921 -8622,5413:499,-139,-49,0,0,0.139454 -8623,5413:498,-138,-49,0,0,0.142239 -8624,5413:497,-137,-49,0,0,0.142251 -8625,5413:496,-136,-49,0,0,0.140903 -8626,5413:495,-135,-49,0,0,0.140381 -8627,5413:394,-134,-49,0,0,0.150255 -8628,5413:393,-133,-49,0,0,0.153697 -8629,5413:392,-132,-49,0,0,0.142967 -8630,5413:391,-131,-49,0,0,0.131513 -8631,5413:390,-130,-49,0,0,0.134117 -8632,5412:499,-129,-49,0,0,0.14437 -8633,5412:498,-128,-49,0,0,0.141239 -8634,5412:497,-127,-49,0,0,0.151123 -8635,5412:496,-126,-49,0,0,0.164046 -8636,5412:495,-125,-49,0,0,0.161193 -8637,5412:394,-124,-49,0,0,0.155713 -8638,5412:393,-123,-49,0,0,0.139874 -8639,5412:392,-122,-49,0,0,0.126753 -8640,5412:391,-121,-49,0,0,0.126913 -8641,5412:390,-120,-49,0,0,0.133331 -8642,5411:499,-119,-49,0,0,0.137895 -8643,5411:498,-118,-49,0,0,0.135314 -8644,5411:497,-117,-49,0,0,0.136764 -8645,5411:496,-116,-49,0,0,0.140716 -8646,5411:495,-115,-49,0,0,0.136339 -8647,5411:394,-114,-49,0,0,0.134918 -8648,5411:393,-113,-49,0,0,0.137822 -8649,5411:392,-112,-49,0,0,0.142164 -8650,5411:391,-111,-49,0,0,0.143649 -8651,5411:390,-110,-49,0,0,0.14493 -8652,5410:499,-109,-49,0,0,0.147237 -8653,5410:498,-108,-49,0,0,0.148142 -8654,5410:497,-107,-49,0,0,0.146451 -8655,5410:496,-106,-49,0,0,0.143914 -8656,5410:495,-105,-49,0,0,0.142942 -8657,5410:394,-104,-49,0,0,0.142917 -8658,5410:393,-103,-49,0,0,0.139898 -8659,5410:392,-102,-49,0,0,0.133676 -8660,5410:391,-101,-49,0,0,0.134738 -8661,5410:390,-100,-49,0,0,0.134595 -8662,5409:499,-99,-49,0,0,0.135687 -8663,5409:498,-98,-49,0,0,0.137042 -8664,5409:497,-97,-49,0,0,0.135447 -8665,5409:496,-96,-49,0,0,0.132928 -8666,5409:495,-95,-49,0,0,0.133343 -8667,5409:394,-94,-49,0,0,0.136642 -8668,5409:393,-93,-49,0,0,0.136049 -8669,5409:392,-92,-49,0,0,0.133296 -8670,5409:391,-91,-49,0,0,0.134654 -8671,5409:390,-90,-49,0,0,0.133628 -8672,5408:499,-89,-49,0,0,0.13481 -8673,5408:498,-88,-49,0,0,0.136134 -8674,5408:497,-87,-49,0,0,0.136097 -8675,5408:496,-86,-49,0,0,0.135507 -8676,5408:495,-85,-49,0,0,0.13646 -8677,5408:394,-84,-49,0,0,0.136279 -8678,5408:393,-83,-49,0,0,0.134475 -8679,5408:392,-82,-49,0,0,0.135206 -8680,5408:391,-81,-49,0,0,0.136788 -8681,5408:390,-80,-49,0,0,0.135904 -8682,5407:499,-79,-49,0,0,0.134679 -8683,5407:498,-78,-49,0,0,0.135459 -8684,5407:497,-77,-49,0,0,0.137225 -8685,5407:496,-76,-49,0,0,0.13731 -8686,5407:495,-75,-49,0,0,0.137116 -8687,5407:394,-74,-49,0,0,0.139997 -8688,5407:393,-73,-49,0,0,0.142703 -8689,5407:392,-72,-49,0,0,0.140766 -8690,5407:391,-71,-49,0,0,0.141563 -8691,5407:390,-70,-49,0,0,0.144155 -8692,5406:499,-69,-49,0,0,0.135796 -8693,5406:498,-68,-49,0,0,0.130135 -8694,5406:497,-67,-49,0,0,0.119944 -8695,5406:496,-66,-49,0,0,0.114762 -8696,5406:495,-65,-49,0,0,0.120194 -8697,5406:394,-64,-49,0,0,0.124474 -8698,5406:393,-63,-49,0,0,0.123225 -8699,5406:392,-62,-49,0,0,0.122064 -8700,5406:391,-61,-49,0,0,0.119739 -8701,5406:390,-60,-49,0,0,0.111444 -8702,5405:499,-59,-49,0,0,0.100706 -8703,5405:498,-58,-49,0,0,0.100855 -8704,5405:497,-57,-49,0,0,0.101135 -8705,5405:496,-56,-49,0,0,0.0999736 -8706,5405:495,-55,-49,0,0,0.0958187 -8707,5405:394,-54,-49,0,0,0.101575 -8708,5405:393,-53,-49,0,0,0.106331 -8709,5405:392,-52,-49,0,0,0.0954277 -8710,5405:391,-51,-49,0,0,0.0954452 -8711,5405:390,-50,-49,0,0,0.0975231 -8712,5404:499,-49,-49,0,0,0.0948527 -8713,5404:498,-48,-49,0,0,0.0978038 -8714,5404:497,-47,-49,0,0,0.0975142 -8715,5404:496,-46,-49,0,0,0.0984311 -8716,5404:495,-45,-49,0,0,0.0937731 -8717,5404:394,-44,-49,0,0,0.0922307 -8718,5404:393,-43,-49,0,0,0.0914936 -8719,5404:392,-42,-49,0,0,0.096068 -8720,5404:391,-41,-49,0,0,0.0979854 -8721,5404:390,-40,-49,0,0,0.0961931 -8722,5403:499,-39,-49,0,0,0.0967394 -8723,5403:498,-38,-49,0,0,0.09359 -8724,5403:497,-37,-49,0,0,0.0895649 -8725,5403:496,-36,-49,0,0,0.08959 -8726,5403:495,-35,-49,0,0,0.0900941 -8727,5403:394,-34,-49,0,0,0.0878538 -8728,5403:393,-33,-49,0,0,0.0852467 -8729,5403:392,-32,-49,0,0,0.0858656 -8730,5403:391,-31,-49,0,0,0.0869769 -8731,5403:390,-30,-49,0,0,0.0853348 -8732,5402:499,-29,-49,0,0,0.0849347 -8733,5402:498,-28,-49,0,0,0.0848468 -8734,5402:497,-27,-49,0,0,0.0836658 -8735,5402:496,-26,-49,0,0,0.0851665 -8736,5402:495,-25,-49,0,0,0.0883079 -8737,5402:394,-24,-49,0,0,0.0882251 -8738,5402:393,-23,-49,0,0,0.0911099 -8739,5402:392,-22,-49,0,0,0.091596 -8740,5402:391,-21,-49,0,0,0.0902711 -8741,5402:390,-20,-49,0,0,0.0936945 -8742,5401:499,-19,-49,0,0,0.0915447 -8743,5401:498,-18,-49,0,0,0.0905836 -8744,5401:497,-17,-49,0,0,0.0923426 -8745,5401:496,-16,-49,0,0,0.0924285 -8746,5401:495,-15,-49,0,0,0.0891801 -8747,5401:394,-14,-49,0,0,0.0874924 -8748,5401:393,-13,-49,0,0,0.0891302 -8749,5401:392,-12,-49,0,0,0.0909825 -8750,5401:391,-11,-49,0,0,0.0909993 -8751,5401:390,-10,-49,0,0,0.0892887 -8752,5400:499,-9,-49,0,0,0.0891552 -8753,5400:498,-8,-49,0,0,0.0897326 -8754,5400:497,-7,-49,0,0,0.0884486 -8755,5400:496,-6,-49,0,0,0.0869525 -8756,5400:495,-5,-49,0,0,0.0855435 -8757,5400:394,-4,-49,0,0,0.0848548 -8758,5400:393,-3,-49,0,0,0.0846078 -8759,5400:392,-2,-49,0,0,0.0836893 -8760,5400:391,-1,-49,0,0,0.0829047 -8761,3400:391,0,-49,0,0,0.0828423 -8762,3400:391,1,-49,0,0,0.0825851 -8763,3400:392,2,-49,0,0,0.0818486 -8764,3400:393,3,-49,0,0,0.0809115 -8765,3400:394,4,-49,0,0,0.0803859 -8766,3400:495,5,-49,0,0,0.0802418 -8767,3400:496,6,-49,0,0,0.0800828 -8768,3400:497,7,-49,0,0,0.0795469 -8769,3400:498,8,-49,0,0,0.0786786 -8770,3400:499,9,-49,0,0,0.079224 -8771,3401:390,10,-49,0,0,0.0784183 -8772,3401:391,11,-49,0,0,0.078344 -8773,3401:392,12,-49,0,0,0.0784258 -8774,3401:393,13,-49,0,0,0.0784927 -8775,3401:394,14,-49,0,0,0.0783071 -8776,3401:495,15,-49,0,0,0.0777527 -8777,3401:496,16,-49,0,0,0.0779224 -8778,3401:497,17,-49,0,0,0.0762629 -8779,3401:498,18,-49,0,0,0.0759452 -8780,3401:499,19,-49,0,0,0.0758658 -8781,3402:390,20,-49,0,0,0.0760317 -8782,3402:391,21,-49,0,0,0.0762991 -8783,3402:392,22,-49,0,0,0.0763281 -8784,3402:393,23,-49,0,0,0.0760895 -8785,3402:394,24,-49,0,0,0.0760245 -8786,3402:495,25,-49,0,0,0.0770117 -8787,3402:496,26,-49,0,0,0.0776864 -8788,3402:497,27,-49,0,0,0.079007 -8789,3402:498,28,-49,0,0,0.0797277 -8790,3402:499,29,-49,0,0,0.0802039 -8791,3403:390,30,-49,0,0,0.079803 -8792,3403:391,31,-49,0,0,0.0790517 -8793,3403:392,32,-49,0,0,0.0784852 -8794,3403:393,33,-49,0,0,0.0777453 -8795,3403:394,34,-49,0,0,0.0786711 -8796,3403:495,35,-49,0,0,0.079788 -8797,3403:496,36,-49,0,0,0.0850706 -8798,3403:497,37,-49,0,0,0.0846238 -8799,3403:498,38,-49,0,0,0.0802265 -8800,3403:499,39,-49,0,0,0.0795921 -8801,3404:390,40,-49,0,0,0.0805227 -8802,3404:391,41,-49,0,0,0.0844091 -8803,3404:392,42,-49,0,0,0.0811948 -8804,3404:393,43,-49,0,0,0.0810875 -8805,3404:394,44,-49,0,0,0.0840447 -8806,3404:495,45,-49,0,0,0.0858897 -8807,3404:496,46,-49,0,0,0.0852147 -8808,3404:497,47,-49,0,0,0.0852868 -8809,3404:498,48,-49,0,0,0.0881261 -8810,3404:499,49,-49,0,0,0.0891801 -8811,3405:390,50,-49,0,0,0.0879033 -8812,3405:391,51,-49,0,0,0.0850386 -8813,3405:392,52,-49,0,0,0.0861565 -8814,3405:393,53,-49,0,0,0.0891302 -8815,3405:394,54,-49,0,0,0.0886891 -8816,3405:495,55,-49,0,0,0.0868057 -8817,3405:496,56,-49,0,0,0.0858252 -8818,3405:497,57,-49,0,0,0.0867893 -8819,3405:498,58,-49,0,0,0.08764 -8820,3405:499,59,-49,0,0,0.0872464 -8821,3406:390,60,-49,0,0,0.0887971 -8822,3406:391,61,-49,0,0,0.089951 -8823,3406:392,62,-49,0,0,0.0901614 -8824,3406:393,63,-49,0,0,0.09077 -8825,3406:394,64,-49,0,0,0.0939392 -8826,3406:495,65,-49,0,0,0.096964 -8827,3406:496,66,-49,0,0,0.0967394 -8828,3406:497,67,-49,0,0,0.0899341 -8829,3406:498,68,-49,0,0,0.0889217 -8830,3406:499,69,-49,0,0,0.0911525 -8831,3407:390,70,-49,0,0,0.0930596 -8832,3407:391,71,-49,0,0,0.0940792 -8833,3407:392,72,-49,0,0,0.0912291 -8834,3407:394,74,-49,0,0,0.0885976 -8835,3407:495,75,-49,0,0,0.0898584 -8836,3407:496,76,-49,0,0,0.0837682 -8837,3407:497,77,-49,0,0,0.0856802 -8838,3407:498,78,-49,0,0,0.084775 -8839,3407:499,79,-49,0,0,0.084092 -8840,3408:390,80,-49,0,0,0.0837762 -8841,3408:391,81,-49,0,0,0.0843139 -8842,3408:392,82,-49,0,0,0.0818178 -8843,3408:393,83,-49,0,0,0.0789771 -8844,3408:394,84,-49,0,0,0.0848948 -8845,3408:495,85,-49,0,0,0.0989706 -8846,3408:496,86,-49,0,0,0.102838 -8847,3408:497,87,-49,0,0,0.101566 -8848,3408:498,88,-49,0,0,0.1015 -8849,3408:499,89,-49,0,0,0.0994295 -8850,3409:390,90,-49,0,0,0.0966586 -8851,3409:391,91,-49,0,0,0.0950203 -8852,3409:392,92,-49,0,0,0.0934331 -8853,3409:393,93,-49,0,0,0.0918785 -8854,3409:394,94,-49,0,0,0.0904569 -8855,3409:495,95,-49,0,0,0.0906007 -8856,3409:496,96,-49,0,0,0.0926874 -8857,3409:497,97,-49,0,0,0.0968022 -8858,3409:498,98,-49,0,0,0.0980306 -8859,3409:499,99,-49,0,0,0.0948969 -8860,3410:390,100,-49,0,0,0.0956496 -8861,3410:391,101,-49,0,0,0.0978583 -8862,3410:392,102,-49,0,0,0.0937209 -8863,3410:393,103,-49,0,0,0.0956317 -8864,3410:394,104,-49,0,0,0.10066 -8865,3410:495,105,-49,0,0,0.101163 -8866,3410:496,106,-49,0,0,0.100298 -8867,3410:497,107,-49,0,0,0.100762 -8868,3410:498,108,-49,0,0,0.102158 -8869,3410:499,109,-49,0,0,0.103047 -8870,3411:390,110,-49,0,0,0.103209 -8871,3411:391,111,-49,0,0,0.10595 -8872,3411:392,112,-49,0,0,0.103943 -8873,3411:393,113,-49,0,0,0.100567 -8874,3411:394,114,-49,0,0,0.102753 -8875,3411:495,115,-49,0,0,0.1038 -8876,3411:496,116,-49,0,0,0.109355 -8877,3411:497,117,-49,0,0,0.109215 -8878,3411:498,118,-49,0,0,0.108896 -8879,3411:499,119,-49,0,0,0.108498 -8880,3412:390,120,-49,0,0,0.10679 -8881,3412:391,121,-49,0,0,0.109335 -8882,3412:392,122,-49,0,0,0.114992 -8883,3412:393,123,-49,0,0,0.117707 -8884,3412:394,124,-49,0,0,0.114846 -8885,3412:495,125,-49,0,0,0.113754 -8886,3412:496,126,-49,0,0,0.1147 -8887,3412:497,127,-49,0,0,0.115097 -8888,3412:498,128,-49,0,0,0.113816 -8889,3412:499,129,-49,0,0,0.112015 -8890,3413:390,130,-49,0,0,0.110098 -8891,3413:391,131,-49,0,0,0.110279 -8892,3413:392,132,-49,0,0,0.110754 -8893,3413:393,133,-49,0,0,0.11037 -8894,3413:394,134,-49,0,0,0.112373 -8895,3413:495,135,-49,0,0,0.111352 -8896,3413:496,136,-49,0,0,0.109215 -8897,3413:497,137,-49,0,0,0.108617 -8898,3413:498,138,-49,0,0,0.108398 -8899,3413:499,139,-49,0,0,0.10818 -8900,3414:390,140,-49,0,0,0.108647 -8901,3414:391,141,-49,0,0,0.111678 -8902,3414:392,142,-49,0,0,0.115191 -8903,3414:393,143,-49,0,0,0.114575 -8904,3414:394,144,-49,0,0,0.113072 -8905,3414:495,145,-49,0,0,0.112476 -8906,3414:496,146,-49,0,0,0.111038 -8907,3414:497,147,-49,0,0,0.108002 -8908,3414:498,148,-49,0,0,0.102999 -8909,3414:499,149,-49,0,0,0.0938344 -8910,3415:390,150,-49,0,0,0.0952416 -8911,3415:391,151,-49,0,0,0.100057 -8912,3415:392,152,-49,0,0,0.102205 -8913,3415:393,153,-49,0,0,0.121274 -8914,3415:394,154,-49,0,0,0.122561 -8915,3415:495,155,-49,0,0,0.121384 -8916,3415:496,156,-49,0,0,0.114169 -8917,3415:497,157,-49,0,0,0.102981 -8918,3415:498,158,-49,0,0,0.106019 -8919,3415:499,159,-49,0,0,0.119274 -8920,3416:390,160,-49,0,0,0.11909 -8921,3416:391,161,-49,0,0,0.114075 -8922,3416:392,162,-49,0,0,0.122318 -8923,3416:393,163,-49,0,0,0.124183 -8924,3416:394,164,-49,0,0,0.137651 -8925,3416:495,165,-49,0,0,0.136376 -8926,3416:496,166,-49,0,0,0.133355 -8927,3416:497,167,-49,0,0,0.132609 -8928,3416:498,168,-49,0,0,0.131901 -8929,3416:499,169,-49,0,0,0.133878 -8930,3417:390,170,-49,0,0,0.135519 -8931,3417:391,171,-49,0,0,0.134248 -8932,3417:392,172,-49,0,0,0.136885 -8933,3417:393,173,-49,0,0,0.144472 -8934,3417:394,174,-49,0,0,0.1459 -8935,3417:495,175,-49,0,0,0.146992 -8936,3417:496,176,-49,0,0,0.145287 -8937,3417:497,177,-49,0,0,0.133605 -8938,3417:498,178,-49,0,0,0.12639 -8939,3417:499,179,-49,0,0,0.127907 -8940,3418:390,180,-49,0,0,0.137018 -8941,5418:380,-180,-48,0,0,0.141015 -8942,5417:489,-179,-48,0,0,0.144015 -8943,5417:488,-178,-48,0,0,0.144943 -8944,5417:487,-177,-48,0,0,0.133355 -8945,5417:486,-176,-48,0,0,0.134403 -8946,5417:485,-175,-48,0,0,0.139948 -8947,5417:384,-174,-48,0,0,0.140654 -8948,5417:383,-173,-48,0,0,0.140729 -8949,5417:382,-172,-48,0,0,0.140592 -8950,5417:381,-171,-48,0,0,0.14249 -8951,5417:380,-170,-48,0,0,0.141776 -8952,5416:489,-169,-48,0,0,0.132502 -8953,5416:488,-168,-48,0,0,0.128343 -8954,5416:487,-167,-48,0,0,0.128665 -8955,5416:486,-166,-48,0,0,0.130216 -8956,5416:485,-165,-48,0,0,0.133296 -8957,5416:384,-164,-48,0,0,0.134595 -8958,5416:383,-163,-48,0,0,0.131396 -8959,5416:382,-162,-48,0,0,0.129589 -8960,5416:381,-161,-48,0,0,0.133807 -8961,5416:380,-160,-48,0,0,0.137993 -8962,5415:489,-159,-48,0,0,0.13731 -8963,5415:488,-158,-48,0,0,0.140542 -8964,5415:487,-157,-48,0,0,0.143219 -8965,5415:486,-156,-48,0,0,0.141963 -8966,5415:485,-155,-48,0,0,0.136279 -8967,5415:384,-154,-48,0,0,0.130822 -8968,5415:383,-153,-48,0,0,0.121515 -8969,5415:382,-152,-48,0,0,0.120162 -8970,5415:381,-151,-48,0,0,0.115842 -8971,5415:380,-150,-48,0,0,0.11038 -8972,5414:489,-149,-48,0,0,0.107183 -8973,5414:488,-148,-48,0,0,0.10683 -8974,5414:487,-147,-48,0,0,0.106048 -8975,5414:486,-146,-48,0,0,0.105649 -8976,5414:485,-145,-48,0,0,0.110795 -8977,5414:384,-144,-48,0,0,0.12377 -8978,5414:383,-143,-48,0,0,0.130636 -8979,5414:382,-142,-48,0,0,0.132243 -8980,5414:381,-141,-48,0,0,0.130904 -8981,5414:380,-140,-48,0,0,0.135026 -8982,5413:489,-139,-48,0,0,0.141388 -8983,5413:488,-138,-48,0,0,0.147095 -8984,5413:487,-137,-48,0,0,0.149117 -8985,5413:486,-136,-48,0,0,0.150124 -8986,5413:485,-135,-48,0,0,0.153177 -8987,5413:384,-134,-48,0,0,0.157559 -8988,5413:383,-133,-48,0,0,0.155861 -8989,5413:382,-132,-48,0,0,0.148259 -8990,5413:381,-131,-48,0,0,0.142414 -8991,5413:380,-130,-48,0,0,0.161554 -8992,5412:489,-129,-48,0,0,0.168692 -8993,5412:488,-128,-48,0,0,0.163259 -8994,5412:487,-127,-48,0,0,0.166927 -8995,5412:486,-126,-48,0,0,0.169355 -8996,5412:485,-125,-48,0,0,0.171126 -8997,5412:384,-124,-48,0,0,0.169182 -8998,5412:383,-123,-48,0,0,0.158406 -8999,5412:382,-122,-48,0,0,0.151321 -9000,5412:381,-121,-48,0,0,0.139997 -9001,5412:380,-120,-48,0,0,0.137225 -9002,5411:489,-119,-48,0,0,0.142439 -9003,5411:488,-118,-48,0,0,0.147948 -9004,5411:487,-117,-48,0,0,0.148557 -9005,5411:486,-116,-48,0,0,0.149052 -9006,5411:485,-115,-48,0,0,0.153952 -9007,5411:384,-114,-48,0,0,0.153724 -9008,5411:383,-113,-48,0,0,0.155146 -9009,5411:382,-112,-48,0,0,0.155942 -9010,5411:381,-111,-48,0,0,0.150543 -9011,5411:380,-110,-48,0,0,0.147805 -9012,5410:489,-109,-48,0,0,0.14567 -9013,5410:488,-108,-48,0,0,0.144688 -9014,5410:487,-107,-48,0,0,0.143762 -9015,5410:486,-106,-48,0,0,0.143661 -9016,5410:485,-105,-48,0,0,0.144764 -9017,5410:384,-104,-48,0,0,0.143509 -9018,5410:383,-103,-48,0,0,0.138777 -9019,5410:382,-102,-48,0,0,0.141289 -9020,5410:381,-101,-48,0,0,0.141551 -9021,5410:380,-100,-48,0,0,0.141401 -9022,5409:489,-99,-48,0,0,0.142151 -9023,5409:488,-98,-48,0,0,0.142264 -9024,5409:487,-97,-48,0,0,0.141438 -9025,5409:486,-96,-48,0,0,0.139417 -9026,5409:485,-95,-48,0,0,0.137456 -9027,5409:384,-94,-48,0,0,0.139195 -9028,5409:383,-93,-48,0,0,0.138177 -9029,5409:382,-92,-48,0,0,0.137554 -9030,5409:381,-91,-48,0,0,0.137444 -9031,5409:380,-90,-48,0,0,0.13617 -9032,5408:489,-89,-48,0,0,0.138544 -9033,5408:488,-88,-48,0,0,0.140903 -9034,5408:487,-87,-48,0,0,0.140406 -9035,5408:486,-86,-48,0,0,0.139626 -9036,5408:485,-85,-48,0,0,0.138666 -9037,5408:384,-84,-48,0,0,0.138042 -9038,5408:383,-83,-48,0,0,0.138262 -9039,5408:382,-82,-48,0,0,0.138544 -9040,5408:381,-81,-48,0,0,0.138986 -9041,5408:380,-80,-48,0,0,0.140295 -9042,5407:489,-79,-48,0,0,0.141538 -9043,5407:488,-78,-48,0,0,0.140965 -9044,5407:487,-77,-48,0,0,0.140357 -9045,5407:486,-76,-48,0,0,0.140381 -9046,5407:485,-75,-48,0,0,0.141401 -9047,5407:384,-74,-48,0,0,0.148064 -9048,5407:383,-73,-48,0,0,0.145798 -9049,5407:382,-72,-48,0,0,0.142013 -9050,5407:381,-71,-48,0,0,0.146195 -9051,5407:380,-70,-48,0,0,0.147005 -9052,5406:489,-69,-48,0,0,0.148791 -9053,5406:488,-68,-48,0,0,0.148103 -9054,5406:487,-67,-48,0,0,0.139318 -9055,5406:486,-66,-48,0,0,0.123081 -9056,5406:485,-65,-48,0,0,0.123715 -9057,5406:384,-64,-48,0,0,0.126481 -9058,5406:383,-63,-48,0,0,0.123103 -9059,5406:382,-62,-48,0,0,0.124586 -9060,5406:381,-61,-48,0,0,0.123281 -9061,5406:380,-60,-48,0,0,0.11837 -9062,5405:489,-59,-48,0,0,0.117867 -9063,5405:488,-58,-48,0,0,0.125046 -9064,5405:487,-57,-48,0,0,0.126765 -9065,5405:486,-56,-48,0,0,0.119728 -9066,5405:485,-55,-48,0,0,0.101201 -9067,5405:384,-54,-48,0,0,0.102554 -9068,5405:383,-53,-48,0,0,0.108846 -9069,5405:382,-52,-48,0,0,0.110088 -9070,5405:381,-51,-48,0,0,0.106214 -9071,5405:380,-50,-48,0,0,0.103028 -9072,5404:489,-49,-48,0,0,0.0985681 -9073,5404:488,-48,-48,0,0,0.0988515 -9074,5404:487,-47,-48,0,0,0.101669 -9075,5404:486,-46,-48,0,0,0.101885 -9076,5404:485,-45,-48,0,0,0.10359 -9077,5404:384,-44,-48,0,0,0.097036 -9078,5404:383,-43,-48,0,0,0.0981854 -9079,5404:382,-42,-48,0,0,0.0996321 -9080,5404:381,-41,-48,0,0,0.100075 -9081,5404:380,-40,-48,0,0,0.0961664 -9082,5403:489,-39,-48,0,0,0.0963628 -9083,5403:488,-38,-48,0,0,0.0931205 -9084,5403:487,-37,-48,0,0,0.0915788 -9085,5403:486,-36,-48,0,0,0.0916388 -9086,5403:485,-35,-48,0,0,0.0924975 -9087,5403:384,-34,-48,0,0,0.0918957 -9088,5403:383,-33,-48,0,0,0.0888636 -9089,5403:382,-32,-48,0,0,0.0877468 -9090,5403:381,-31,-48,0,0,0.0880434 -9091,5403:380,-30,-48,0,0,0.0859542 -9092,5402:489,-29,-48,0,0,0.085922 -9093,5402:488,-28,-48,0,0,0.0864319 -9094,5402:487,-27,-48,0,0,0.084823 -9095,5402:486,-26,-48,0,0,0.0871157 -9096,5402:485,-25,-48,0,0,0.0874759 -9097,5402:384,-24,-48,0,0,0.0924372 -9098,5402:383,-23,-48,0,0,0.0983766 -9099,5402:382,-22,-48,0,0,0.0947203 -9100,5402:381,-21,-48,0,0,0.0920243 -9101,5402:380,-20,-48,0,0,0.0933984 -9102,5401:489,-19,-48,0,0,0.0957741 -9103,5401:488,-18,-48,0,0,0.0952592 -9104,5401:487,-17,-48,0,0,0.0935812 -9105,5401:486,-16,-48,0,0,0.095623 -9106,5401:485,-15,-48,0,0,0.096345 -9107,5401:384,-14,-48,0,0,0.0944478 -9108,5401:383,-13,-48,0,0,0.0941842 -9109,5401:382,-12,-48,0,0,0.0958899 -9110,5401:381,-11,-48,0,0,0.0961394 -9111,5401:380,-10,-48,0,0,0.0925061 -9112,5400:489,-9,-48,0,0,0.0887722 -9113,5400:488,-8,-48,0,0,0.0894308 -9114,5400:487,-7,-48,0,0,0.0882829 -9115,5400:486,-6,-48,0,0,0.0874759 -9116,5400:485,-5,-48,0,0,0.0862049 -9117,5400:384,-4,-48,0,0,0.0857205 -9118,5400:383,-3,-48,0,0,0.0851106 -9119,5400:382,-2,-48,0,0,0.0844726 -9120,5400:381,-1,-48,0,0,0.0836028 -9121,3400:381,0,-48,0,0,0.0831786 -9122,3400:381,1,-48,0,0,0.0826084 -9123,3400:382,2,-48,0,0,0.0827799 -9124,3400:383,3,-48,0,0,0.0823673 -9125,3400:384,4,-48,0,0,0.0810186 -9126,3400:485,5,-48,0,0,0.0813481 -9127,3400:486,6,-48,0,0,0.080942 -9128,3400:487,7,-48,0,0,0.0822432 -9129,3400:488,8,-48,0,0,0.0823363 -9130,3400:489,9,-48,0,0,0.0820496 -9131,3401:380,10,-48,0,0,0.0813329 -9132,3401:381,11,-48,0,0,0.0800828 -9133,3401:382,12,-48,0,0,0.0798634 -9134,3401:383,13,-48,0,0,0.0800901 -9135,3401:384,14,-48,0,0,0.0796974 -9136,3401:485,15,-48,0,0,0.0791865 -9137,3401:486,16,-48,0,0,0.0790967 -9138,3401:487,17,-48,0,0,0.0786861 -9139,3401:488,18,-48,0,0,0.0785968 -9140,3401:489,19,-48,0,0,0.0785893 -9141,3402:380,20,-48,0,0,0.0784333 -9142,3402:381,21,-48,0,0,0.0777379 -9143,3402:382,22,-48,0,0,0.0781145 -9144,3402:383,23,-48,0,0,0.0770483 -9145,3402:384,24,-48,0,0,0.076524 -9146,3402:485,25,-48,0,0,0.0784405 -9147,3402:486,26,-48,0,0,0.0777453 -9148,3402:487,27,-48,0,0,0.0783812 -9149,3402:488,28,-48,0,0,0.0826241 -9150,3402:489,29,-48,0,0,0.0835476 -9151,3403:380,30,-48,0,0,0.0849825 -9152,3403:381,31,-48,0,0,0.0871483 -9153,3403:382,32,-48,0,0,0.0901108 -9154,3403:383,33,-48,0,0,0.0887803 -9155,3403:384,34,-48,0,0,0.0831238 -9156,3403:485,35,-48,0,0,0.0820418 -9157,3403:486,36,-48,0,0,0.0841792 -9158,3403:487,37,-48,0,0,0.087083 -9159,3403:488,38,-48,0,0,0.0856399 -9160,3403:489,39,-48,0,0,0.0872874 -9161,3404:380,40,-48,0,0,0.0879858 -9162,3404:381,41,-48,0,0,0.0853911 -9163,3404:382,42,-48,0,0,0.0861725 -9164,3404:383,43,-48,0,0,0.0875415 -9165,3404:384,44,-48,0,0,0.0870342 -9166,3404:485,45,-48,0,0,0.0867406 -9167,3404:486,46,-48,0,0,0.0865535 -9168,3404:487,47,-48,0,0,0.0874514 -9169,3404:488,48,-48,0,0,0.0887139 -9170,3404:489,49,-48,0,0,0.0911184 -9171,3405:380,50,-48,0,0,0.0903133 -9172,3405:381,51,-48,0,0,0.0893808 -9173,3405:382,52,-48,0,0,0.0890552 -9174,3405:383,53,-48,0,0,0.0951266 -9175,3405:384,54,-48,0,0,0.0874759 -9176,3405:485,55,-48,0,0,0.0876894 -9177,3405:486,56,-48,0,0,0.0891384 -9178,3405:487,57,-48,0,0,0.0922047 -9179,3405:488,58,-48,0,0,0.0939131 -9180,3405:489,59,-48,0,0,0.0936684 -9181,3406:380,60,-48,0,0,0.0911779 -9182,3406:381,61,-48,0,0,0.0920929 -9183,3406:382,62,-48,0,0,0.0941318 -9184,3406:383,63,-48,0,0,0.0924114 -9185,3406:384,64,-48,0,0,0.0936945 -9186,3406:485,65,-48,0,0,0.098998 -9187,3406:486,66,-48,0,0,0.0986227 -9188,3406:487,67,-48,0,0,0.0965957 -9189,3406:488,68,-48,0,0,0.0961037 -9190,3406:489,69,-48,0,0,0.0955961 -9191,3407:380,70,-48,0,0,0.0948438 -9192,3407:381,71,-48,0,0,0.094888 -9193,3407:382,72,-48,0,0,0.0951884 -9194,3407:384,74,-48,0,0,0.0931986 -9195,3407:485,75,-48,0,0,0.0932333 -9196,3407:486,76,-48,0,0,0.090533 -9197,3407:487,77,-48,0,0,0.0850786 -9198,3407:488,78,-48,0,0,0.0874759 -9199,3407:489,79,-48,0,0,0.086132 -9200,3408:380,80,-48,0,0,0.0853428 -9201,3408:381,81,-48,0,0,0.0848149 -9202,3408:382,82,-48,0,0,0.0883243 -9203,3408:383,83,-48,0,0,0.0895396 -9204,3408:384,84,-48,0,0,0.0949055 -9205,3408:485,85,-48,0,0,0.107518 -9206,3408:486,86,-48,0,0,0.107016 -9207,3408:487,87,-48,0,0,0.10821 -9208,3408:488,88,-48,0,0,0.107597 -9209,3408:489,89,-48,0,0,0.103819 -9210,3409:380,90,-48,0,0,0.101275 -9211,3409:381,91,-48,0,0,0.103924 -9212,3409:382,92,-48,0,0,0.10318 -9213,3409:383,93,-48,0,0,0.102092 -9214,3409:384,94,-48,0,0,0.0996783 -9215,3409:485,95,-48,0,0,0.0937995 -9216,3409:486,96,-48,0,0,0.0983038 -9217,3409:487,97,-48,0,0,0.105921 -9218,3409:488,98,-48,0,0,0.100976 -9219,3409:489,99,-48,0,0,0.0967394 -9220,3410:380,100,-48,0,0,0.102309 -9221,3410:381,101,-48,0,0,0.103972 -9222,3410:382,102,-48,0,0,0.0963093 -9223,3410:383,103,-48,0,0,0.0963628 -9224,3410:384,104,-48,0,0,0.0999645 -9225,3410:485,105,-48,0,0,0.09931 -9226,3410:486,106,-48,0,0,0.099872 -9227,3410:487,107,-48,0,0,0.10065 -9228,3410:488,108,-48,0,0,0.101042 -9229,3410:489,109,-48,0,0,0.102611 -9230,3411:380,110,-48,0,0,0.106194 -9231,3411:381,111,-48,0,0,0.110018 -9232,3411:382,112,-48,0,0,0.115705 -9233,3411:383,113,-48,0,0,0.115705 -9234,3411:384,114,-48,0,0,0.110098 -9235,3411:485,115,-48,0,0,0.106624 -9236,3411:486,116,-48,0,0,0.112046 -9237,3411:487,117,-48,0,0,0.110148 -9238,3411:488,118,-48,0,0,0.108408 -9239,3411:489,119,-48,0,0,0.108408 -10426,5412:249,-129,-44,0,0,0.18985 -9240,3412:380,120,-48,0,0,0.109646 -9241,3412:381,121,-48,0,0,0.110461 -9242,3412:382,122,-48,0,0,0.115317 -9243,3412:383,123,-48,0,0,0.11559 -9244,3412:384,124,-48,0,0,0.116528 -9245,3412:485,125,-48,0,0,0.114481 -9246,3412:486,126,-48,0,0,0.114387 -9247,3412:487,127,-48,0,0,0.114794 -9248,3412:488,128,-48,0,0,0.116464 -9249,3412:489,129,-48,0,0,0.115296 -9250,3413:380,130,-48,0,0,0.112599 -9251,3413:381,131,-48,0,0,0.112261 -9252,3413:382,132,-48,0,0,0.114481 -9253,3413:383,133,-48,0,0,0.116962 -9254,3413:384,134,-48,0,0,0.114898 -9255,3413:485,135,-48,0,0,0.113413 -9256,3413:486,136,-48,0,0,0.114752 -9257,3413:487,137,-48,0,0,0.112486 -9258,3413:488,138,-48,0,0,0.110552 -9259,3413:489,139,-48,0,0,0.11265 -9260,3414:380,140,-48,0,0,0.116454 -9261,3414:381,141,-48,0,0,0.117249 -9262,3414:382,142,-48,0,0,0.116021 -9263,3414:383,143,-48,0,0,0.117132 -9264,3414:384,144,-48,0,0,0.117696 -9265,3414:485,145,-48,0,0,0.117782 -9266,3414:486,146,-48,0,0,0.114575 -9267,3414:487,147,-48,0,0,0.109026 -9268,3414:488,148,-48,0,0,0.0994938 -9269,3414:489,149,-48,0,0,0.0951884 -9270,3415:380,150,-48,0,0,0.124608 -9271,3415:381,151,-48,0,0,0.128653 -9272,3415:382,152,-48,0,0,0.106702 -9273,3415:383,153,-48,0,0,0.117515 -9274,3415:384,154,-48,0,0,0.126583 -9275,3415:485,155,-48,0,0,0.134487 -9276,3415:486,156,-48,0,0,0.13364 -9277,3415:487,157,-48,0,0,0.117547 -9278,3415:488,158,-48,0,0,0.115705 -9279,3415:489,159,-48,0,0,0.121778 -9280,3416:380,160,-48,0,0,0.119155 -9281,3416:381,161,-48,0,0,0.121921 -9282,3416:382,162,-48,0,0,0.118263 -9283,3416:383,163,-48,0,0,0.135687 -9284,3416:384,164,-48,0,0,0.141202 -9285,3416:485,165,-48,0,0,0.142942 -9286,3416:486,166,-48,0,0,0.142967 -9287,3416:487,167,-48,0,0,0.139763 -9288,3416:488,168,-48,0,0,0.135603 -9289,3416:489,169,-48,0,0,0.13617 -9290,3417:380,170,-48,0,0,0.138519 -9291,3417:381,171,-48,0,0,0.140406 -9292,3417:382,172,-48,0,0,0.142741 -9293,3417:383,173,-48,0,0,0.144053 -9294,3417:384,174,-48,0,0,0.148596 -9295,3417:485,175,-48,0,0,0.151387 -9296,3417:486,176,-48,0,0,0.15339 -9297,3417:487,177,-48,0,0,0.151505 -9298,3417:488,178,-48,0,0,0.148116 -9299,3417:489,179,-48,0,0,0.140084 -9300,3418:380,180,-48,0,0,0.141015 -9301,5418:370,-180,-47,0,0,0.140753 -9302,5417:479,-179,-47,0,0,0.142678 -9303,5417:478,-178,-47,0,0,0.150465 -9304,5417:477,-177,-47,0,0,0.156959 -9305,5417:476,-176,-47,0,0,0.15597 -9306,5417:475,-175,-47,0,0,0.152485 -9307,5417:374,-174,-47,0,0,0.150137 -9308,5417:373,-173,-47,0,0,0.142101 -9309,5417:372,-172,-47,0,0,0.140878 -9310,5417:371,-171,-47,0,0,0.146992 -9311,5417:370,-170,-47,0,0,0.145057 -9312,5416:479,-169,-47,0,0,0.146927 -9313,5416:478,-168,-47,0,0,0.144574 -9314,5416:477,-167,-47,0,0,0.140766 -9315,5416:476,-166,-47,0,0,0.136836 -9316,5416:475,-165,-47,0,0,0.135098 -9317,5416:374,-164,-47,0,0,0.136122 -9318,5416:373,-163,-47,0,0,0.137749 -9319,5416:372,-162,-47,0,0,0.136146 -9320,5416:371,-161,-47,0,0,0.137773 -9321,5416:370,-160,-47,0,0,0.140605 -9322,5415:479,-159,-47,0,0,0.144802 -9323,5415:478,-158,-47,0,0,0.149548 -9324,5415:477,-157,-47,0,0,0.152313 -9325,5415:476,-156,-47,0,0,0.147857 -9326,5415:475,-155,-47,0,0,0.13836 -9327,5415:374,-154,-47,0,0,0.133486 -9328,5415:373,-153,-47,0,0,0.128976 -9329,5415:372,-152,-47,0,0,0.125824 -9330,5415:371,-151,-47,0,0,0.126163 -9331,5415:370,-150,-47,0,0,0.124866 -9332,5414:479,-149,-47,0,0,0.123603 -9333,5414:478,-148,-47,0,0,0.118692 -9334,5414:477,-147,-47,0,0,0.111414 -9335,5414:476,-146,-47,0,0,0.115045 -9336,5414:475,-145,-47,0,0,0.114221 -9337,5414:374,-144,-47,0,0,0.11517 -9338,5414:373,-143,-47,0,0,0.119803 -9339,5414:372,-142,-47,0,0,0.11881 -9340,5414:371,-141,-47,0,0,0.125282 -9341,5414:370,-140,-47,0,0,0.149365 -9342,5413:479,-139,-47,0,0,0.155483 -9343,5413:478,-138,-47,0,0,0.152459 -9344,5413:477,-137,-47,0,0,0.145402 -9345,5413:476,-136,-47,0,0,0.152977 -9346,5413:475,-135,-47,0,0,0.156335 -9347,5413:374,-134,-47,0,0,0.157982 -9348,5413:373,-133,-47,0,0,0.158502 -9349,5413:372,-132,-47,0,0,0.162979 -9350,5413:371,-131,-47,0,0,0.165858 -9351,5413:370,-130,-47,0,0,0.168289 -9352,5412:479,-129,-47,0,0,0.164682 -9353,5412:478,-128,-47,0,0,0.163441 -9354,5412:477,-127,-47,0,0,0.165787 -9355,5412:476,-126,-47,0,0,0.171973 -9356,5412:475,-125,-47,0,0,0.174622 -9357,5412:374,-124,-47,0,0,0.171053 -9358,5412:373,-123,-47,0,0,0.169558 -9359,5412:372,-122,-47,0,0,0.170137 -9360,5412:371,-121,-47,0,0,0.16803 -9361,5412:370,-120,-47,0,0,0.163427 -9362,5411:479,-119,-47,0,0,0.157941 -9363,5411:478,-118,-47,0,0,0.15438 -9364,5411:477,-117,-47,0,0,0.15624 -9365,5411:476,-116,-47,0,0,0.155429 -9366,5411:475,-115,-47,0,0,0.154756 -9367,5411:374,-114,-47,0,0,0.154595 -9368,5411:373,-113,-47,0,0,0.15477 -9369,5411:372,-112,-47,0,0,0.156932 -9370,5411:371,-111,-47,0,0,0.157586 -9371,5411:370,-110,-47,0,0,0.150438 -9372,5410:479,-109,-47,0,0,0.150793 -9373,5410:478,-108,-47,0,0,0.14809 -9374,5410:477,-107,-47,0,0,0.145338 -9375,5410:476,-106,-47,0,0,0.144586 -9376,5410:475,-105,-47,0,0,0.144472 -9377,5410:374,-104,-47,0,0,0.143409 -9378,5410:373,-103,-47,0,0,0.144409 -9379,5410:372,-102,-47,0,0,0.145184 -9380,5410:371,-101,-47,0,0,0.14599 -9381,5410:370,-100,-47,0,0,0.144294 -9382,5409:479,-99,-47,0,0,0.143118 -9383,5409:478,-98,-47,0,0,0.142678 -9384,5409:477,-97,-47,0,0,0.142026 -9385,5409:476,-96,-47,0,0,0.140084 -9386,5409:475,-95,-47,0,0,0.140171 -9387,5409:374,-94,-47,0,0,0.141813 -9388,5409:373,-93,-47,0,0,0.142603 -9389,5409:372,-92,-47,0,0,0.142314 -9390,5409:371,-91,-47,0,0,0.141189 -9391,5409:370,-90,-47,0,0,0.14165 -9392,5408:479,-89,-47,0,0,0.142766 -9393,5408:478,-88,-47,0,0,0.142854 -9394,5408:477,-87,-47,0,0,0.141801 -9395,5408:476,-86,-47,0,0,0.141114 -9396,5408:475,-85,-47,0,0,0.141102 -9397,5408:374,-84,-47,0,0,0.141164 -9398,5408:373,-83,-47,0,0,0.142741 -9399,5408:372,-82,-47,0,0,0.143712 -9400,5408:371,-81,-47,0,0,0.142026 -9401,5408:370,-80,-47,0,0,0.143522 -9402,5407:479,-79,-47,0,0,0.146079 -9403,5407:478,-78,-47,0,0,0.145555 -9404,5407:477,-77,-47,0,0,0.143762 -9405,5407:476,-76,-47,0,0,0.145108 -9406,5407:475,-75,-47,0,0,0.146529 -9407,5407:374,-74,-47,0,0,0.150333 -9408,5407:373,-73,-47,0,0,0.146966 -9409,5407:372,-72,-47,0,0,0.143762 -9410,5407:371,-71,-47,0,0,0.145044 -9411,5407:370,-70,-47,0,0,0.156959 -9412,5406:479,-69,-47,0,0,0.161359 -9413,5406:478,-68,-47,0,0,0.16186 -9414,5406:477,-67,-47,0,0,0.157941 -9415,5406:476,-66,-47,0,0,0.140704 -9416,5406:475,-65,-47,0,0,0.125982 -9417,5406:374,-64,-47,0,0,0.125666 -9418,5406:373,-63,-47,0,0,0.128895 -9419,5406:372,-62,-47,0,0,0.125395 -9420,5406:371,-61,-47,0,0,0.127586 -9421,5406:370,-60,-47,0,0,0.130986 -9422,5405:479,-59,-47,0,0,0.130612 -9423,5405:478,-58,-47,0,0,0.131103 -9424,5405:477,-57,-47,0,0,0.127529 -9425,5405:476,-56,-47,0,0,0.121099 -9426,5405:475,-55,-47,0,0,0.104856 -9427,5405:374,-54,-47,0,0,0.104981 -9428,5405:373,-53,-47,0,0,0.116888 -9429,5405:372,-52,-47,0,0,0.114919 -9430,5405:371,-51,-47,0,0,0.107518 -9431,5405:370,-50,-47,0,0,0.113072 -9432,5404:479,-49,-47,0,0,0.113113 -9433,5404:478,-48,-47,0,0,0.10741 -9434,5404:477,-47,-47,0,0,0.109085 -9435,5404:476,-46,-47,0,0,0.114044 -9436,5404:475,-45,-47,0,0,0.112425 -9437,5404:374,-44,-47,0,0,0.111811 -9438,5404:373,-43,-47,0,0,0.107232 -9439,5404:372,-42,-47,0,0,0.103523 -9440,5404:371,-41,-47,0,0,0.101033 -9441,5404:370,-40,-47,0,0,0.0961037 -9442,5403:479,-39,-47,0,0,0.0956585 -9443,5403:478,-38,-47,0,0,0.0922047 -9444,5403:477,-37,-47,0,0,0.0928777 -9445,5403:476,-36,-47,0,0,0.0946236 -9446,5403:475,-35,-47,0,0,0.0967304 -9447,5403:374,-34,-47,0,0,0.0973246 -9448,5403:373,-33,-47,0,0,0.0955341 -9449,5403:372,-32,-47,0,0,0.0917671 -9450,5403:371,-31,-47,0,0,0.0896401 -9451,5403:370,-30,-47,0,0,0.0881921 -9452,5402:479,-29,-47,0,0,0.0866349 -9453,5402:478,-28,-47,0,0,0.0870421 -9454,5402:477,-27,-47,0,0,0.0857367 -9455,5402:476,-26,-47,0,0,0.0867568 -9456,5402:475,-25,-47,0,0,0.0906177 -9457,5402:374,-24,-47,0,0,0.0915533 -9458,5402:373,-23,-47,0,0,0.09784 -9459,5402:372,-22,-47,0,0,0.0958899 -9460,5402:371,-21,-47,0,0,0.0944213 -9461,5402:370,-20,-47,0,0,0.0981308 -9462,5401:479,-19,-47,0,0,0.097958 -9463,5401:478,-18,-47,0,0,0.0963628 -9464,5401:477,-17,-47,0,0,0.0953922 -9465,5401:476,-16,-47,0,0,0.0965598 -9466,5401:475,-15,-47,0,0,0.0945267 -9467,5401:374,-14,-47,0,0,0.0975957 -9468,5401:373,-13,-47,0,0,0.0968203 -9469,5401:372,-12,-47,0,0,0.0980853 -9470,5401:371,-11,-47,0,0,0.0973155 -9471,5401:370,-10,-47,0,0,0.0975142 -9472,5400:479,-9,-47,0,0,0.0994481 -9473,5400:478,-8,-47,0,0,0.0992915 -9474,5400:477,-7,-47,0,0,0.0940968 -9475,5400:476,-6,-47,0,0,0.0899004 -9476,5400:475,-5,-47,0,0,0.0926961 -9477,5400:374,-4,-47,0,0,0.0871483 -9478,5400:373,-3,-47,0,0,0.0850706 -9479,5400:372,-2,-47,0,0,0.0846955 -9480,5400:371,-1,-47,0,0,0.0841872 -9481,3400:371,0,-47,0,0,0.0837131 -9482,3400:371,1,-47,0,0,0.0830925 -9483,3400:372,2,-47,0,0,0.0833432 -9484,3400:373,3,-47,0,0,0.0837208 -9485,3400:374,4,-47,0,0,0.0839576 -9486,3400:475,5,-47,0,0,0.0834453 -9487,3400:476,6,-47,0,0,0.0824373 -9488,3400:477,7,-47,0,0,0.0824997 -9489,3400:478,8,-47,0,0,0.0838233 -9490,3400:479,9,-47,0,0,0.0839735 -9491,3401:370,10,-47,0,0,0.0838865 -9492,3401:371,11,-47,0,0,0.0830534 -9493,3401:372,12,-47,0,0,0.0820883 -9494,3401:373,13,-47,0,0,0.0815402 -9495,3401:374,14,-47,0,0,0.0813481 -9496,3401:475,15,-47,0,0,0.0803708 -9497,3401:476,16,-47,0,0,0.0803328 -9498,3401:477,17,-47,0,0,0.0798484 -9499,3401:478,18,-47,0,0,0.0802645 -9500,3401:479,19,-47,0,0,0.0800751 -9501,3402:370,20,-47,0,0,0.0828735 -9502,3402:371,21,-47,0,0,0.0846955 -9503,3402:372,22,-47,0,0,0.0804696 -9504,3402:373,23,-47,0,0,0.0789844 -9505,3402:374,24,-47,0,0,0.0783144 -9506,3402:475,25,-47,0,0,0.0792915 -9507,3402:476,26,-47,0,0,0.0849028 -9508,3402:477,27,-47,0,0,0.0836737 -9509,3402:478,28,-47,0,0,0.0877634 -9510,3402:479,29,-47,0,0,0.0848149 -9511,3403:370,30,-47,0,0,0.0872219 -9512,3403:371,31,-47,0,0,0.0881838 -9513,3403:372,32,-47,0,0,0.0912717 -9514,3403:373,33,-47,0,0,0.0912717 -9515,3403:374,34,-47,0,0,0.0904737 -9516,3403:475,35,-47,0,0,0.0900519 -9517,3403:476,36,-47,0,0,0.0862696 -9518,3403:477,37,-47,0,0,0.091212 -9519,3403:478,38,-47,0,0,0.0901866 -9520,3403:479,39,-47,0,0,0.0912632 -9521,3404:370,40,-47,0,0,0.0938168 -9522,3404:371,41,-47,0,0,0.0902881 -9523,3404:372,42,-47,0,0,0.0918785 -9524,3404:373,43,-47,0,0,0.0910587 -9525,3404:374,44,-47,0,0,0.0913485 -9526,3404:475,45,-47,0,0,0.0927826 -9527,3404:476,46,-47,0,0,0.0896151 -9528,3404:477,47,-47,0,0,0.0881507 -9529,3404:478,48,-47,0,0,0.0906769 -9530,3404:479,49,-47,0,0,0.0913058 -9531,3405:370,50,-47,0,0,0.0906345 -9532,3405:371,51,-47,0,0,0.0897912 -9533,3405:372,52,-47,0,0,0.0900183 -9534,3405:373,53,-47,0,0,0.0945618 -9535,3405:374,54,-47,0,0,0.0967663 -9536,3405:475,55,-47,0,0,0.0914594 -9537,3405:476,56,-47,0,0,0.0893889 -9538,3405:477,57,-47,0,0,0.0963718 -9539,3405:478,58,-47,0,0,0.0941056 -9540,3405:479,59,-47,0,0,0.0939392 -9541,3406:370,60,-47,0,0,0.0948791 -9542,3406:371,61,-47,0,0,0.0966228 -9543,3406:372,62,-47,0,0,0.0989063 -9544,3406:373,63,-47,0,0,0.0958007 -9545,3406:374,64,-47,0,0,0.0970629 -9546,3406:475,65,-47,0,0,0.101734 -9547,3406:476,66,-47,0,0,0.0994848 -9548,3406:477,67,-47,0,0,0.096345 -9549,3406:478,68,-47,0,0,0.0970178 -9550,3406:479,69,-47,0,0,0.0970901 -9551,3407:370,70,-47,0,0,0.097958 -9552,3407:371,71,-47,0,0,0.0969009 -9553,3407:372,72,-47,0,0,0.0958273 -9554,3407:374,74,-47,0,0,0.0941142 -9555,3407:475,75,-47,0,0,0.0928777 -9556,3407:476,76,-47,0,0,0.0919813 -9557,3407:477,77,-47,0,0,0.086213 -9558,3407:478,78,-47,0,0,0.0856078 -9559,3407:479,79,-47,0,0,0.0877388 -9560,3408:370,80,-47,0,0,0.0882498 -9561,3408:371,81,-47,0,0,0.0952502 -9562,3408:372,82,-47,0,0,0.10136 -9563,3408:373,83,-47,0,0,0.105049 -9564,3408:374,84,-47,0,0,0.1056 -9565,3408:475,85,-47,0,0,0.106233 -9566,3408:476,86,-47,0,0,0.105834 -9567,3408:477,87,-47,0,0,0.106448 -9568,3408:478,88,-47,0,0,0.109305 -9569,3408:479,89,-47,0,0,0.10825 -9570,3409:370,90,-47,0,0,0.103275 -9571,3409:371,91,-47,0,0,0.102007 -9572,3409:372,92,-47,0,0,0.101697 -9573,3409:373,93,-47,0,0,0.101716 -9574,3409:374,94,-47,0,0,0.101491 -9575,3409:475,95,-47,0,0,0.109907 -9576,3409:476,96,-47,0,0,0.11225 -9577,3409:477,97,-47,0,0,0.110957 -9578,3409:478,98,-47,0,0,0.106067 -9579,3409:479,99,-47,0,0,0.107026 -9580,3410:370,100,-47,0,0,0.106262 -9581,3410:371,101,-47,0,0,0.102848 -9582,3410:372,102,-47,0,0,0.0954986 -9583,3410:373,103,-47,0,0,0.0957918 -9584,3410:374,104,-47,0,0,0.0975866 -9585,3410:475,105,-47,0,0,0.0970901 -9586,3410:476,106,-47,0,0,0.102111 -9587,3410:477,107,-47,0,0,0.104307 -9588,3410:478,108,-47,0,0,0.103676 -9589,3410:479,109,-47,0,0,0.104039 -9590,3411:370,110,-47,0,0,0.104115 -9591,3411:371,111,-47,0,0,0.112219 -9592,3411:372,112,-47,0,0,0.115369 -9593,3411:373,113,-47,0,0,0.123848 -9594,3411:374,114,-47,0,0,0.114585 -9595,3411:475,115,-47,0,0,0.114815 -9596,3411:476,116,-47,0,0,0.115516 -9597,3411:477,117,-47,0,0,0.111617 -9598,3411:478,118,-47,0,0,0.11121 -9599,3411:479,119,-47,0,0,0.111495 -9600,3412:370,120,-47,0,0,0.111995 -9601,3412:371,121,-47,0,0,0.110926 -9602,3412:372,122,-47,0,0,0.113598 -9603,3412:373,123,-47,0,0,0.114065 -9604,3412:374,124,-47,0,0,0.113692 -9605,3412:475,125,-47,0,0,0.117728 -9606,3412:476,126,-47,0,0,0.117654 -9607,3412:477,127,-47,0,0,0.116095 -9608,3412:478,128,-47,0,0,0.11909 -9609,3412:479,129,-47,0,0,0.123871 -9610,3413:370,130,-47,0,0,0.121757 -9611,3413:371,131,-47,0,0,0.118177 -9612,3413:372,132,-47,0,0,0.11639 -9613,3413:373,133,-47,0,0,0.117792 -9614,3413:374,134,-47,0,0,0.118552 -9615,3413:475,135,-47,0,0,0.119392 -9616,3413:476,136,-47,0,0,0.121647 -9617,3413:477,137,-47,0,0,0.118671 -9618,3413:478,138,-47,0,0,0.114585 -9619,3413:479,139,-47,0,0,0.117005 -9620,3414:370,140,-47,0,0,0.128492 -9621,3414:371,141,-47,0,0,0.133248 -9622,3414:372,142,-47,0,0,0.129531 -9623,3414:373,143,-47,0,0,0.124351 -9624,3414:374,144,-47,0,0,0.119058 -9625,3414:475,145,-47,0,0,0.117005 -9626,3414:476,146,-47,0,0,0.114335 -9627,3414:477,147,-47,0,0,0.108071 -9628,3414:478,148,-47,0,0,0.0977676 -9629,3414:479,149,-47,0,0,0.096345 -9630,3415:370,150,-47,0,0,0.12908 -9631,3415:371,151,-47,0,0,0.123871 -9632,3415:372,152,-47,0,0,0.112774 -9633,3415:373,153,-47,0,0,0.116285 -9634,3415:374,154,-47,0,0,0.126084 -9635,3415:475,155,-47,0,0,0.127517 -9636,3415:476,156,-47,0,0,0.140233 -9637,3415:477,157,-47,0,0,0.138568 -9638,3415:478,158,-47,0,0,0.140047 -9639,3415:479,159,-47,0,0,0.130659 -9640,3416:370,160,-47,0,0,0.125091 -9641,3416:371,161,-47,0,0,0.129647 -9642,3416:372,162,-47,0,0,0.135591 -9643,3416:373,163,-47,0,0,0.139973 -9644,3416:374,164,-47,0,0,0.144726 -9645,3416:475,165,-47,0,0,0.142653 -9646,3416:476,166,-47,0,0,0.147211 -9647,3416:477,167,-47,0,0,0.149052 -9648,3416:478,168,-47,0,0,0.148038 -9649,3416:479,169,-47,0,0,0.147663 -9650,3417:370,170,-47,0,0,0.145402 -9651,3417:371,171,-47,0,0,0.142553 -9652,3417:372,172,-47,0,0,0.1459 -9653,3417:373,173,-47,0,0,0.147327 -9654,3417:374,174,-47,0,0,0.151057 -9655,3417:475,175,-47,0,0,0.155821 -9656,3417:476,176,-47,0,0,0.159257 -9657,3417:477,177,-47,0,0,0.155983 -9658,3417:478,178,-47,0,0,0.147637 -9659,3417:479,179,-47,0,0,0.144028 -9660,3418:370,180,-47,0,0,0.140753 -9661,5418:360,-180,-46,0,0,0.16717 -9662,5417:469,-179,-46,0,0,0.165815 -9663,5417:468,-178,-46,0,0,0.163962 -9664,5417:467,-177,-46,0,0,0.163498 -9665,5417:466,-176,-46,0,0,0.161847 -9666,5417:465,-175,-46,0,0,0.161512 -9667,5417:364,-174,-46,0,0,0.163498 -9668,5417:363,-173,-46,0,0,0.159629 -9669,5417:362,-172,-46,0,0,0.152911 -9670,5417:361,-171,-46,0,0,0.15327 -9671,5417:360,-170,-46,0,0,0.155416 -9672,5416:469,-169,-46,0,0,0.152392 -9673,5416:468,-168,-46,0,0,0.150425 -9674,5416:467,-167,-46,0,0,0.151823 -9675,5416:466,-166,-46,0,0,0.147069 -9676,5416:465,-165,-46,0,0,0.152286 -9677,5416:364,-164,-46,0,0,0.154461 -9678,5416:363,-163,-46,0,0,0.155321 -9679,5416:362,-162,-46,0,0,0.152286 -9680,5416:361,-161,-46,0,0,0.146233 -9681,5416:360,-160,-46,0,0,0.14507 -9682,5415:469,-159,-46,0,0,0.152924 -9683,5415:468,-158,-46,0,0,0.158255 -9684,5415:467,-157,-46,0,0,0.162335 -9685,5415:466,-156,-46,0,0,0.155699 -9686,5415:465,-155,-46,0,0,0.149691 -9687,5415:364,-154,-46,0,0,0.152366 -9688,5415:363,-153,-46,0,0,0.151413 -9689,5415:362,-152,-46,0,0,0.141376 -9690,5415:361,-151,-46,0,0,0.150517 -9691,5415:360,-150,-46,0,0,0.166057 -9692,5414:469,-149,-46,0,0,0.160319 -9693,5414:468,-148,-46,0,0,0.151307 -9694,5414:467,-147,-46,0,0,0.12656 -9695,5414:466,-146,-46,0,0,0.138372 -9696,5414:465,-145,-46,0,0,0.160236 -9697,5414:364,-144,-46,0,0,0.162433 -9698,5414:363,-143,-46,0,0,0.176213 -9699,5414:362,-142,-46,0,0,0.175929 -9700,5414:361,-141,-46,0,0,0.15923 -9701,5414:360,-140,-46,0,0,0.160832 -9702,5413:469,-139,-46,0,0,0.165177 -9703,5413:468,-138,-46,0,0,0.160776 -9704,5413:467,-137,-46,0,0,0.154917 -9705,5413:466,-136,-46,0,0,0.14857 -9706,5413:465,-135,-46,0,0,0.148908 -9707,5413:364,-134,-46,0,0,0.153871 -9708,5413:363,-133,-46,0,0,0.154998 -9709,5413:362,-132,-46,0,0,0.156756 -9710,5413:361,-131,-46,0,0,0.1719 -9711,5413:360,-130,-46,0,0,0.187491 -9712,5412:469,-129,-46,0,0,0.183363 -9713,5412:468,-128,-46,0,0,0.180428 -9714,5412:467,-127,-46,0,0,0.180565 -9715,5412:466,-126,-46,0,0,0.177979 -9716,5412:465,-125,-46,0,0,0.17483 -9717,5412:364,-124,-46,0,0,0.173088 -9718,5412:363,-123,-46,0,0,0.16911 -9719,5412:362,-122,-46,0,0,0.16911 -9720,5412:361,-121,-46,0,0,0.170457 -9721,5412:360,-120,-46,0,0,0.16862 -9722,5411:469,-119,-46,0,0,0.163807 -9723,5411:468,-118,-46,0,0,0.160624 -9724,5411:467,-117,-46,0,0,0.163427 -9725,5411:466,-116,-46,0,0,0.162923 -9726,5411:465,-115,-46,0,0,0.157504 -9727,5411:364,-114,-46,0,0,0.156484 -9728,5411:363,-113,-46,0,0,0.159587 -9729,5411:362,-112,-46,0,0,0.161387 -9730,5411:361,-111,-46,0,0,0.157368 -9731,5411:360,-110,-46,0,0,0.15347 -9732,5410:469,-109,-46,0,0,0.152977 -9733,5410:468,-108,-46,0,0,0.150688 -9734,5410:467,-107,-46,0,0,0.148727 -9735,5410:466,-106,-46,0,0,0.147146 -9736,5410:465,-105,-46,0,0,0.146992 -9737,5410:364,-104,-46,0,0,0.147624 -9738,5410:363,-103,-46,0,0,0.148311 -9739,5410:362,-102,-46,0,0,0.148804 -9740,5410:361,-101,-46,0,0,0.148376 -9741,5410:360,-100,-46,0,0,0.147133 -9742,5409:469,-99,-46,0,0,0.144955 -9743,5409:468,-98,-46,0,0,0.145287 -9744,5409:467,-97,-46,0,0,0.146131 -9745,5409:466,-96,-46,0,0,0.144396 -9746,5409:465,-95,-46,0,0,0.144612 -9747,5409:364,-94,-46,0,0,0.148077 -9748,5409:363,-93,-46,0,0,0.146966 -9749,5409:362,-92,-46,0,0,0.145312 -9750,5409:361,-91,-46,0,0,0.145389 -9751,5409:360,-90,-46,0,0,0.146221 -9752,5408:469,-89,-46,0,0,0.145555 -9753,5408:468,-88,-46,0,0,0.146593 -9754,5408:467,-87,-46,0,0,0.146464 -9755,5408:466,-86,-46,0,0,0.145746 -9756,5408:465,-85,-46,0,0,0.146015 -9757,5408:364,-84,-46,0,0,0.145402 -9758,5408:363,-83,-46,0,0,0.146426 -9759,5408:362,-82,-46,0,0,0.146979 -9760,5408:361,-81,-46,0,0,0.144828 -9761,5408:360,-80,-46,0,0,0.145414 -9762,5407:469,-79,-46,0,0,0.148103 -9763,5407:468,-78,-46,0,0,0.153097 -9764,5407:467,-77,-46,0,0,0.14796 -9765,5407:466,-76,-46,0,0,0.14822 -9766,5407:465,-75,-46,0,0,0.154662 -9767,5407:364,-74,-46,0,0,0.155807 -9768,5407:363,-73,-46,0,0,0.154193 -9769,5407:362,-72,-46,0,0,0.157668 -9770,5407:361,-71,-46,0,0,0.163765 -9771,5407:360,-70,-46,0,0,0.171973 -9772,5406:468,-68,-46,0,0,0.176198 -9773,5406:467,-67,-46,0,0,0.176093 -9774,5406:466,-66,-46,0,0,0.154541 -9775,5406:465,-65,-46,0,0,0.143876 -9776,5406:364,-64,-46,0,0,0.137359 -9777,5406:363,-63,-46,0,0,0.133094 -9778,5406:362,-62,-46,0,0,0.131419 -9779,5406:361,-61,-46,0,0,0.132869 -9780,5406:360,-60,-46,0,0,0.134595 -9781,5405:469,-59,-46,0,0,0.134702 -9782,5405:468,-58,-46,0,0,0.136013 -9783,5405:467,-57,-46,0,0,0.137395 -9784,5405:466,-56,-46,0,0,0.13617 -9785,5405:465,-55,-46,0,0,0.132325 -9786,5405:364,-54,-46,0,0,0.123581 -9787,5405:363,-53,-46,0,0,0.126481 -9788,5405:362,-52,-46,0,0,0.112445 -9789,5405:361,-51,-46,0,0,0.114836 -9790,5405:360,-50,-46,0,0,0.114658 -9791,5404:469,-49,-46,0,0,0.111434 -9792,5404:468,-48,-46,0,0,0.108986 -9793,5404:467,-47,-46,0,0,0.116116 -9794,5404:466,-46,-46,0,0,0.114366 -9795,5404:465,-45,-46,0,0,0.111048 -9796,5404:364,-44,-46,0,0,0.11035 -9797,5404:363,-43,-46,0,0,0.109435 -9798,5404:362,-42,-46,0,0,0.108667 -9799,5404:361,-41,-46,0,0,0.1038 -9800,5404:360,-40,-46,0,0,0.0988789 -9801,5403:469,-39,-46,0,0,0.094694 -9802,5403:468,-38,-46,0,0,0.0965869 -9803,5403:467,-37,-46,0,0,0.102299 -9804,5403:466,-36,-46,0,0,0.103428 -9805,5403:465,-35,-46,0,0,0.102309 -9806,5403:364,-34,-46,0,0,0.100335 -9807,5403:363,-33,-46,0,0,0.0946763 -9808,5403:362,-32,-46,0,0,0.0932593 -9809,5403:361,-31,-46,0,0,0.0918614 -9810,5403:360,-30,-46,0,0,0.0907279 -9811,5402:469,-29,-46,0,0,0.088606 -9812,5402:468,-28,-46,0,0,0.0876728 -9813,5402:467,-27,-46,0,0,0.0886143 -9814,5402:466,-26,-46,0,0,0.0957117 -9815,5402:465,-25,-46,0,0,0.100344 -9816,5402:364,-24,-46,0,0,0.0997796 -9817,5402:363,-23,-46,0,0,0.0989429 -9818,5402:362,-22,-46,0,0,0.0968112 -9819,5402:361,-21,-46,0,0,0.09718 -9820,5402:360,-20,-46,0,0,0.0996597 -9821,5401:469,-19,-46,0,0,0.101612 -9822,5401:468,-18,-46,0,0,0.103161 -9823,5401:467,-17,-46,0,0,0.102819 -9824,5401:466,-16,-46,0,0,0.104586 -9825,5401:465,-15,-46,0,0,0.100827 -9826,5401:364,-14,-46,0,0,0.100827 -9827,5401:363,-13,-46,0,0,0.103209 -9828,5401:362,-12,-46,0,0,0.102441 -9829,5401:361,-11,-46,0,0,0.100446 -9830,5401:360,-10,-46,0,0,0.103905 -9831,5400:469,-9,-46,0,0,0.106487 -9832,5400:468,-8,-46,0,0,0.103104 -9833,5400:467,-7,-46,0,0,0.0957828 -9834,5400:466,-6,-46,0,0,0.0961664 -9835,5400:465,-5,-46,0,0,0.0993285 -9836,5400:364,-4,-46,0,0,0.0965062 -9837,5400:363,-3,-46,0,0,0.0940092 -9838,5400:362,-2,-46,0,0,0.0922821 -9839,5400:361,-1,-46,0,0,0.0915361 -9840,3400:361,0,-46,0,0,0.0894224 -9841,3400:361,1,-46,0,0,0.0850625 -9842,3400:362,2,-46,0,0,0.0847354 -9843,3400:363,3,-46,0,0,0.0876728 -9844,3400:364,4,-46,0,0,0.0872137 -9845,3400:465,5,-46,0,0,0.0853428 -9846,3400:466,6,-46,0,0,0.0845522 -9847,3400:467,7,-46,0,0,0.0840447 -9848,3400:468,8,-46,0,0,0.0836893 -9849,3400:469,9,-46,0,0,0.0829908 -9850,3401:360,10,-46,0,0,0.0831238 -9851,3401:361,11,-46,0,0,0.0837288 -9852,3401:362,12,-46,0,0,0.0828814 -9853,3401:363,13,-46,0,0,0.0825151 -9854,3401:364,14,-46,0,0,0.0820727 -9855,3401:465,15,-46,0,0,0.0819491 -9856,3401:466,16,-46,0,0,0.0823209 -9857,3401:467,17,-46,0,0,0.0838549 -9858,3401:468,18,-46,0,0,0.0849667 -9859,3401:469,19,-46,0,0,0.0855678 -9860,3402:360,20,-46,0,0,0.0858093 -9861,3402:361,21,-46,0,0,0.0856883 -9862,3402:362,22,-46,0,0,0.0834926 -9863,3402:363,23,-46,0,0,0.0829283 -9864,3402:364,24,-46,0,0,0.0834453 -9865,3402:465,25,-46,0,0,0.0871892 -9866,3402:466,26,-46,0,0,0.0888387 -9867,3402:467,27,-46,0,0,0.0887306 -9868,3402:468,28,-46,0,0,0.0872794 -9869,3402:469,29,-46,0,0,0.0843616 -9870,3403:360,30,-46,0,0,0.0857527 -9871,3403:361,31,-46,0,0,0.0882168 -9872,3403:362,32,-46,0,0,0.0884567 -9873,3403:363,33,-46,0,0,0.0907618 -9874,3403:364,34,-46,0,0,0.0913058 -9875,3403:465,35,-46,0,0,0.0932593 -9876,3403:466,36,-46,0,0,0.0876728 -9877,3403:467,37,-46,0,0,0.0916472 -9878,3403:468,38,-46,0,0,0.0962378 -9879,3403:469,39,-46,0,0,0.0952416 -9880,3404:360,40,-46,0,0,0.0957652 -9881,3404:361,41,-46,0,0,0.0946325 -9882,3404:362,42,-46,0,0,0.0932593 -9883,3404:363,43,-46,0,0,0.0938517 -9884,3404:364,44,-46,0,0,0.0941407 -9885,3404:465,45,-46,0,0,0.0942546 -11940,5402:103,-23,-40,0,0,0.14048 -9886,3404:466,46,-46,0,0,0.0934594 -9887,3404:467,47,-46,0,0,0.092489 -9888,3404:468,48,-46,0,0,0.0924975 -9889,3404:469,49,-46,0,0,0.0926357 -9890,3405:360,50,-46,0,0,0.0938256 -9891,3405:361,51,-46,0,0,0.0945884 -9892,3405:362,52,-46,0,0,0.0947203 -9893,3405:363,53,-46,0,0,0.0966854 -9894,3405:364,54,-46,0,0,0.099669 -9895,3405:465,55,-46,0,0,0.0957206 -9896,3405:466,56,-46,0,0,0.0959967 -9897,3405:467,57,-46,0,0,0.0987965 -9898,3405:468,58,-46,0,0,0.0982763 -9899,3405:469,59,-46,0,0,0.0951088 -9900,3406:360,60,-46,0,0,0.0953389 -9901,3406:361,61,-46,0,0,0.0961931 -9902,3406:362,62,-46,0,0,0.0970178 -9903,3406:363,63,-46,0,0,0.100697 -9904,3406:364,64,-46,0,0,0.102696 -9905,3406:465,65,-46,0,0,0.102791 -9906,3406:466,66,-46,0,0,0.101622 -9907,3406:467,67,-46,0,0,0.101697 -9908,3406:468,68,-46,0,0,0.102819 -9909,3406:469,69,-46,0,0,0.102649 -9910,3407:360,70,-46,0,0,0.101491 -9911,3407:361,71,-46,0,0,0.0997613 -9912,3407:362,72,-46,0,0,0.0990346 -9913,3407:364,74,-46,0,0,0.0988331 -9914,3407:465,75,-46,0,0,0.0979763 -9915,3407:466,76,-46,0,0,0.0978763 -9916,3407:467,77,-46,0,0,0.0971712 -9917,3407:468,78,-46,0,0,0.0940354 -9918,3407:469,79,-46,0,0,0.0864886 -9919,3408:360,80,-46,0,0,0.091425 -9920,3408:361,81,-46,0,0,0.094123 -9921,3408:362,82,-46,0,0,0.101378 -9922,3408:363,83,-46,0,0,0.0988697 -9923,3408:364,84,-46,0,0,0.0974329 -9924,3408:465,85,-46,0,0,0.111068 -9925,3408:466,86,-46,0,0,0.110138 -9926,3408:467,87,-46,0,0,0.107774 -9927,3408:468,88,-46,0,0,0.110007 -9928,3408:469,89,-46,0,0,0.111862 -9929,3409:360,90,-46,0,0,0.109275 -9930,3409:361,91,-46,0,0,0.108398 -9931,3409:362,92,-46,0,0,0.109857 -9932,3409:363,93,-46,0,0,0.115674 -9933,3409:364,94,-46,0,0,0.109375 -9934,3409:465,95,-46,0,0,0.107695 -9935,3409:466,96,-46,0,0,0.112199 -9936,3409:467,97,-46,0,0,0.111302 -9937,3409:468,98,-46,0,0,0.110038 -9938,3409:469,99,-46,0,0,0.107163 -9939,3410:360,100,-46,0,0,0.101612 -9940,3410:361,101,-46,0,0,0.101088 -9941,3410:362,102,-46,0,0,0.0992365 -9942,3410:363,103,-46,0,0,0.0978946 -9943,3410:364,104,-46,0,0,0.0960144 -9944,3410:465,105,-46,0,0,0.100474 -9945,3410:466,106,-46,0,0,0.106741 -9946,3410:467,107,-46,0,0,0.108896 -9947,3410:468,108,-46,0,0,0.106732 -9948,3410:469,109,-46,0,0,0.104962 -9949,3411:360,110,-46,0,0,0.106048 -9950,3411:361,111,-46,0,0,0.111119 -9951,3411:362,112,-46,0,0,0.111648 -9952,3411:363,113,-46,0,0,0.117068 -9953,3411:364,114,-46,0,0,0.123503 -9954,3411:465,115,-46,0,0,0.118167 -9955,3411:466,116,-46,0,0,0.116158 -9956,3411:467,117,-46,0,0,0.117377 -9957,3411:468,118,-46,0,0,0.118649 -9958,3411:469,119,-46,0,0,0.117079 -9959,3412:360,120,-46,0,0,0.119923 -9960,3412:361,121,-46,0,0,0.116941 -9961,3412:362,122,-46,0,0,0.111444 -9962,3412:363,123,-46,0,0,0.111831 -9963,3412:364,124,-46,0,0,0.117185 -9964,3412:465,125,-46,0,0,0.117963 -9965,3412:466,126,-46,0,0,0.120205 -9966,3412:467,127,-46,0,0,0.123882 -9967,3412:468,128,-46,0,0,0.127494 -9968,3412:469,129,-46,0,0,0.128113 -9969,3413:360,130,-46,0,0,0.128067 -9970,3413:361,131,-46,0,0,0.125722 -9971,3413:362,132,-46,0,0,0.120728 -9972,3413:363,133,-46,0,0,0.121746 -9973,3413:364,134,-46,0,0,0.123926 -9974,3413:465,135,-46,0,0,0.123459 -9975,3413:466,136,-46,0,0,0.122738 -9976,3413:467,137,-46,0,0,0.124597 -9977,3413:468,138,-46,0,0,0.122473 -9978,3413:469,139,-46,0,0,0.125316 -9979,3414:360,140,-46,0,0,0.136812 -9980,3414:361,141,-46,0,0,0.13523 -9981,3414:362,142,-46,0,0,0.131701 -9982,3414:363,143,-46,0,0,0.128147 -9983,3414:364,144,-46,0,0,0.118467 -9984,3414:465,145,-46,0,0,0.113661 -9985,3414:466,146,-46,0,0,0.111515 -9986,3414:467,147,-46,0,0,0.107626 -9987,3414:468,148,-46,0,0,0.118467 -9988,3414:469,149,-46,0,0,0.14977 -9989,3415:360,150,-46,0,0,0.150531 -9990,3415:361,151,-46,0,0,0.13176 -9991,3415:362,152,-46,0,0,0.136013 -9992,3415:363,153,-46,0,0,0.152339 -9993,3415:364,154,-46,0,0,0.151452 -9994,3415:465,155,-46,0,0,0.14599 -9995,3415:466,156,-46,0,0,0.154487 -9996,3415:467,157,-46,0,0,0.147379 -9997,3415:468,158,-46,0,0,0.144675 -9998,3415:469,159,-46,0,0,0.145606 -9999,3416:360,160,-46,0,0,0.126742 -10000,3416:361,161,-46,0,0,0.146015 -10001,3416:362,162,-46,0,0,0.161874 -10002,3416:363,163,-46,0,0,0.151479 -10003,3416:364,164,-46,0,0,0.142917 -10004,3416:465,165,-46,0,0,0.152379 -10005,3416:466,166,-46,0,0,0.173662 -10006,3416:467,167,-46,0,0,0.180109 -10007,3416:468,168,-46,0,0,0.179533 -10008,3416:469,169,-46,0,0,0.17443 -10009,3417:360,170,-46,0,0,0.160084 -10010,3417:361,171,-46,0,0,0.150964 -10011,3417:362,172,-46,0,0,0.146272 -10012,3417:363,173,-46,0,0,0.148233 -10013,3417:364,174,-46,0,0,0.148831 -10014,3417:465,175,-46,0,0,0.152167 -10015,3417:466,176,-46,0,0,0.158406 -10016,3417:467,177,-46,0,0,0.157777 -10017,3417:468,178,-46,0,0,0.165064 -10018,3417:469,179,-46,0,0,0.166969 -10019,3418:360,180,-46,0,0,0.16717 -10020,5418:350,-180,-45,0,0,0.166656 -10021,5417:459,-179,-45,0,0,0.168836 -10022,5417:458,-178,-45,0,0,0.172031 -10023,5417:457,-177,-45,0,0,0.174637 -10024,5417:456,-176,-45,0,0,0.175795 -10025,5417:455,-175,-45,0,0,0.172735 -10026,5417:354,-174,-45,0,0,0.169891 -10027,5417:353,-173,-45,0,0,0.163231 -10028,5417:352,-172,-45,0,0,0.155753 -10029,5417:351,-171,-45,0,0,0.155295 -10030,5417:350,-170,-45,0,0,0.159147 -10031,5416:459,-169,-45,0,0,0.160915 -10032,5416:458,-168,-45,0,0,0.162209 -10033,5416:457,-167,-45,0,0,0.154326 -10034,5416:456,-166,-45,0,0,0.156186 -10035,5416:455,-165,-45,0,0,0.157927 -10036,5416:354,-164,-45,0,0,0.158201 -10037,5416:353,-163,-45,0,0,0.16072 -10038,5416:352,-162,-45,0,0,0.166556 -10039,5416:351,-161,-45,0,0,0.162824 -10040,5416:350,-160,-45,0,0,0.15551 -10041,5415:459,-159,-45,0,0,0.158379 -10042,5415:458,-158,-45,0,0,0.161596 -10043,5415:457,-157,-45,0,0,0.165517 -10044,5415:456,-156,-45,0,0,0.165531 -10045,5415:455,-155,-45,0,0,0.166541 -10046,5415:354,-154,-45,0,0,0.160568 -10047,5415:353,-153,-45,0,0,0.154434 -10048,5415:352,-152,-45,0,0,0.155025 -10049,5415:351,-151,-45,0,0,0.160679 -10050,5415:350,-150,-45,0,0,0.174652 -10051,5414:459,-149,-45,0,0,0.173677 -10052,5414:458,-148,-45,0,0,0.168763 -10053,5414:457,-147,-45,0,0,0.170471 -10054,5414:456,-146,-45,0,0,0.184272 -10055,5414:455,-145,-45,0,0,0.184257 -10056,5414:354,-144,-45,0,0,0.186756 -10057,5414:353,-143,-45,0,0,0.185682 -10058,5414:352,-142,-45,0,0,0.187319 -10059,5414:351,-141,-45,0,0,0.157177 -10060,5414:350,-140,-45,0,0,0.175513 -10061,5413:459,-139,-45,0,0,0.172838 -10062,5413:458,-138,-45,0,0,0.16992 -10063,5413:457,-137,-45,0,0,0.16885 -10064,5413:456,-136,-45,0,0,0.165602 -10065,5413:455,-135,-45,0,0,0.161526 -10066,5413:354,-134,-45,0,0,0.158831 -10067,5413:353,-133,-45,0,0,0.159753 -10068,5413:352,-132,-45,0,0,0.172368 -10069,5413:351,-131,-45,0,0,0.193928 -10070,5413:350,-130,-45,0,0,0.187976 -10071,5412:459,-129,-45,0,0,0.18261 -10072,5412:458,-128,-45,0,0,0.182411 -10073,5412:457,-127,-45,0,0,0.17831 -10074,5412:456,-126,-45,0,0,0.177319 -10075,5412:455,-125,-45,0,0,0.176034 -10076,5412:354,-124,-45,0,0,0.17275 -10077,5412:353,-123,-45,0,0,0.168763 -10078,5412:352,-122,-45,0,0,0.169905 -10079,5412:351,-121,-45,0,0,0.167227 -10080,5412:350,-120,-45,0,0,0.165163 -10081,5411:459,-119,-45,0,0,0.164667 -10082,5411:458,-118,-45,0,0,0.165219 -10083,5411:457,-117,-45,0,0,0.166656 -10084,5411:456,-116,-45,0,0,0.165631 -10085,5411:455,-115,-45,0,0,0.164371 -10086,5411:354,-114,-45,0,0,0.164117 -10087,5411:353,-113,-45,0,0,0.163343 -10088,5411:352,-112,-45,0,0,0.160554 -10089,5411:351,-111,-45,0,0,0.157408 -10090,5411:350,-110,-45,0,0,0.157518 -10091,5410:459,-109,-45,0,0,0.156457 -10092,5410:458,-108,-45,0,0,0.154528 -10093,5410:457,-107,-45,0,0,0.153484 -10094,5410:456,-106,-45,0,0,0.153684 -10095,5410:455,-105,-45,0,0,0.155402 -10096,5410:354,-104,-45,0,0,0.154273 -10097,5410:353,-103,-45,0,0,0.152246 -10098,5410:352,-102,-45,0,0,0.152844 -10099,5410:351,-101,-45,0,0,0.150557 -10100,5410:350,-100,-45,0,0,0.152578 -10101,5409:459,-99,-45,0,0,0.154877 -10102,5409:458,-98,-45,0,0,0.151479 -10103,5409:457,-97,-45,0,0,0.149313 -10104,5409:456,-96,-45,0,0,0.149809 -10105,5409:455,-95,-45,0,0,0.150137 -10106,5409:354,-94,-45,0,0,0.151294 -10107,5409:353,-93,-45,0,0,0.14977 -10108,5409:352,-92,-45,0,0,0.149195 -10109,5409:351,-91,-45,0,0,0.150333 -10110,5409:350,-90,-45,0,0,0.150176 -10111,5408:459,-89,-45,0,0,0.150307 -10112,5408:458,-88,-45,0,0,0.151149 -10113,5408:457,-87,-45,0,0,0.151188 -10114,5408:456,-86,-45,0,0,0.152591 -10115,5408:455,-85,-45,0,0,0.151955 -10116,5408:354,-84,-45,0,0,0.150084 -10117,5408:353,-83,-45,0,0,0.15082 -10118,5408:352,-82,-45,0,0,0.149914 -10119,5408:351,-81,-45,0,0,0.149052 -10120,5408:350,-80,-45,0,0,0.150465 -10121,5407:459,-79,-45,0,0,0.151809 -10122,5407:458,-78,-45,0,0,0.158927 -10123,5407:457,-77,-45,0,0,0.155349 -10124,5407:456,-76,-45,0,0,0.154434 -10125,5407:455,-75,-45,0,0,0.158639 -10126,5407:354,-74,-45,0,0,0.164865 -10127,5407:353,-73,-45,0,0,0.173338 -10128,5407:352,-72,-45,0,0,0.181448 -10129,5406:456,-66,-45,0,0,0.184443 -10130,5406:455,-65,-45,0,0,0.160388 -10131,5406:354,-64,-45,0,0,0.153217 -10132,5406:353,-63,-45,0,0,0.152618 -10133,5406:352,-62,-45,0,0,0.15015 -10134,5406:351,-61,-45,0,0,0.147637 -10135,5406:350,-60,-45,0,0,0.149901 -10136,5405:459,-59,-45,0,0,0.154126 -10137,5405:458,-58,-45,0,0,0.154958 -10138,5405:457,-57,-45,0,0,0.154568 -10139,5405:456,-56,-45,0,0,0.149835 -10140,5405:455,-55,-45,0,0,0.142904 -10141,5405:354,-54,-45,0,0,0.136388 -10142,5405:353,-53,-45,0,0,0.134188 -10143,5405:352,-52,-45,0,0,0.133319 -10144,5405:351,-51,-45,0,0,0.127609 -10145,5405:350,-50,-45,0,0,0.122274 -10146,5404:459,-49,-45,0,0,0.118102 -10147,5404:458,-48,-45,0,0,0.120695 -10148,5404:457,-47,-45,0,0,0.116686 -10149,5404:456,-46,-45,0,0,0.114596 -10150,5404:455,-45,-45,0,0,0.113847 -10151,5404:354,-44,-45,0,0,0.113454 -10152,5404:353,-43,-45,0,0,0.110269 -10153,5404:352,-42,-45,0,0,0.108956 -10154,5404:351,-41,-45,0,0,0.108359 -10155,5404:350,-40,-45,0,0,0.107843 -10156,5403:459,-39,-45,0,0,0.112086 -10157,5403:458,-38,-45,0,0,0.106292 -10158,5403:457,-37,-45,0,0,0.110967 -10159,5403:456,-36,-45,0,0,0.107045 -10160,5403:455,-35,-45,0,0,0.100725 -10161,5403:354,-34,-45,0,0,0.0964882 -10162,5403:353,-33,-45,0,0,0.0970901 -10163,5403:352,-32,-45,0,0,0.10564 -10164,5403:351,-31,-45,0,0,0.104962 -10165,5403:350,-30,-45,0,0,0.0949939 -10166,5402:459,-29,-45,0,0,0.0927307 -10167,5402:458,-28,-45,0,0,0.0905922 -10168,5402:457,-27,-45,0,0,0.0931292 -10169,5402:456,-26,-45,0,0,0.097144 -10170,5402:455,-25,-45,0,0,0.0967304 -10171,5402:354,-24,-45,0,0,0.104557 -10172,5402:353,-23,-45,0,0,0.102905 -10173,5402:352,-22,-45,0,0,0.106253 -10174,5402:351,-21,-45,0,0,0.10814 -10175,5402:350,-20,-45,0,0,0.106507 -10176,5401:459,-19,-45,0,0,0.107498 -10177,5401:458,-18,-45,0,0,0.104519 -10178,5401:457,-17,-45,0,0,0.105581 -10179,5401:456,-16,-45,0,0,0.110855 -10180,5401:455,-15,-45,0,0,0.104451 -10181,5401:354,-14,-45,0,0,0.105853 -10182,5401:353,-13,-45,0,0,0.108607 -10183,5401:352,-12,-45,0,0,0.110946 -10184,5401:351,-11,-45,0,0,0.109496 -10185,5401:350,-10,-45,0,0,0.107065 -10186,5400:459,-9,-45,0,0,0.104885 -10187,5400:458,-8,-45,0,0,0.105155 -10188,5400:457,-7,-45,0,0,0.104029 -10189,5400:456,-6,-45,0,0,0.101088 -10190,5400:455,-5,-45,0,0,0.097081 -10191,5400:354,-4,-45,0,0,0.0954897 -10192,5400:353,-3,-45,0,0,0.0936597 -10193,5400:352,-2,-45,0,0,0.0921189 -10194,5400:351,-1,-45,0,0,0.0917757 -10195,3400:351,0,-45,0,0,0.0927048 -10196,3400:351,1,-45,0,0,0.091485 -10197,3400:352,2,-45,0,0,0.0892637 -10198,3400:353,3,-45,0,0,0.0858011 -10199,3400:354,4,-45,0,0,0.0863425 -10200,3400:455,5,-45,0,0,0.0855597 -10201,3400:456,6,-45,0,0,0.0850706 -10202,3400:457,7,-45,0,0,0.084783 -10203,3400:458,8,-45,0,0,0.0844171 -10204,3400:459,9,-45,0,0,0.0843297 -10205,3401:350,10,-45,0,0,0.0840287 -10206,3401:351,11,-45,0,0,0.0836973 -10207,3401:352,12,-45,0,0,0.0849187 -10208,3401:353,13,-45,0,0,0.085407 -10209,3401:354,14,-45,0,0,0.0853509 -10210,3401:455,15,-45,0,0,0.0857689 -10211,3401:456,16,-45,0,0,0.0859865 -10212,3401:457,17,-45,0,0,0.0856964 -10213,3401:458,18,-45,0,0,0.085431 -10214,3401:459,19,-45,0,0,0.0859705 -10215,3402:350,20,-45,0,0,0.0867893 -10216,3402:351,21,-45,0,0,0.0870177 -10217,3402:352,22,-45,0,0,0.0863101 -10218,3402:353,23,-45,0,0,0.0846 -10219,3402:354,24,-45,0,0,0.0861888 -10220,3402:455,25,-45,0,0,0.0869933 -10221,3402:456,26,-45,0,0,0.0857527 -10222,3402:457,27,-45,0,0,0.0887055 -10223,3402:458,28,-45,0,0,0.0881671 -10224,3402:459,29,-45,0,0,0.0906007 -10225,3403:350,30,-45,0,0,0.0954366 -10226,3403:351,31,-45,0,0,0.0976136 -10227,3403:352,32,-45,0,0,0.0972073 -10228,3403:353,33,-45,0,0,0.0917671 -10229,3403:354,34,-45,0,0,0.0933984 -10230,3403:455,35,-45,0,0,0.0957828 -10231,3403:456,36,-45,0,0,0.0940354 -10232,3403:457,37,-45,0,0,0.0968921 -10233,3403:458,38,-45,0,0,0.0993467 -10234,3403:459,39,-45,0,0,0.0960234 -10235,3404:350,40,-45,0,0,0.097072 -10236,3404:351,41,-45,0,0,0.0959075 -10237,3404:352,42,-45,0,0,0.0936684 -10238,3404:353,43,-45,0,0,0.0933201 -10239,3404:354,44,-45,0,0,0.094395 -10240,3404:455,45,-45,0,0,0.0942546 -10241,3404:456,46,-45,0,0,0.0945004 -10242,3404:457,47,-45,0,0,0.0952238 -10243,3404:458,48,-45,0,0,0.0961304 -10244,3404:459,49,-45,0,0,0.0960144 -10245,3405:350,50,-45,0,0,0.0967035 -10246,3405:351,51,-45,0,0,0.0975866 -10247,3405:352,52,-45,0,0,0.097 -10248,3405:353,53,-45,0,0,0.100604 -10249,3405:354,54,-45,0,0,0.102791 -10250,3405:455,55,-45,0,0,0.100409 -10251,3405:456,56,-45,0,0,0.0961217 -10252,3405:457,57,-45,0,0,0.0972612 -10253,3405:458,58,-45,0,0,0.101098 -10254,3405:459,59,-45,0,0,0.101303 -10255,3406:350,60,-45,0,0,0.100865 -10256,3406:351,61,-45,0,0,0.10039 -10257,3406:352,62,-45,0,0,0.0991813 -10258,3406:353,63,-45,0,0,0.10136 -10259,3406:354,64,-45,0,0,0.102139 -10260,3406:455,65,-45,0,0,0.103313 -10261,3406:456,66,-45,0,0,0.104952 -10262,3406:457,67,-45,0,0,0.104952 -10263,3406:458,68,-45,0,0,0.103857 -10264,3406:459,69,-45,0,0,0.103628 -10265,3407:350,70,-45,0,0,0.102394 -10266,3407:351,71,-45,0,0,0.100744 -10267,3407:352,72,-45,0,0,0.0987781 -10268,3407:354,74,-45,0,0,0.0984495 -10269,3407:455,75,-45,0,0,0.0986227 -10270,3407:456,76,-45,0,0,0.0994938 -10271,3407:457,77,-45,0,0,0.0984495 -10272,3407:458,78,-45,0,0,0.0951088 -10273,3407:459,79,-45,0,0,0.0871648 -10274,3408:350,80,-45,0,0,0.092679 -10275,3408:351,81,-45,0,0,0.097108 -10276,3408:352,82,-45,0,0,0.0975957 -10277,3408:353,83,-45,0,0,0.0971531 -10278,3408:354,84,-45,0,0,0.0964346 -10279,3408:455,85,-45,0,0,0.114055 -10280,3408:456,86,-45,0,0,0.111352 -10281,3408:457,87,-45,0,0,0.111964 -10282,3408:458,88,-45,0,0,0.113268 -10283,3408:459,89,-45,0,0,0.122274 -10284,3409:350,90,-45,0,0,0.120957 -10285,3409:351,91,-45,0,0,0.11656 -10286,3409:352,92,-45,0,0,0.115222 -10287,3409:353,93,-45,0,0,0.120075 -10288,3409:354,94,-45,0,0,0.118102 -10289,3409:455,95,-45,0,0,0.116263 -10290,3409:456,96,-45,0,0,0.11334 -10291,3409:457,97,-45,0,0,0.110835 -10292,3409:458,98,-45,0,0,0.106977 -10293,3409:459,99,-45,0,0,0.106399 -10294,3410:350,100,-45,0,0,0.102139 -10295,3410:351,101,-45,0,0,0.102668 -10296,3410:352,102,-45,0,0,0.102791 -10297,3410:353,103,-45,0,0,0.102045 -10298,3410:354,104,-45,0,0,0.0981036 -10299,3410:455,105,-45,0,0,0.103095 -10300,3410:456,106,-45,0,0,0.106379 -10301,3410:457,107,-45,0,0,0.109385 -10302,3410:458,108,-45,0,0,0.111944 -10303,3410:459,109,-45,0,0,0.109736 -10304,3411:350,110,-45,0,0,0.106732 -10305,3411:351,111,-45,0,0,0.111119 -10306,3411:352,112,-45,0,0,0.111078 -10307,3411:353,113,-45,0,0,0.112804 -10308,3411:354,114,-45,0,0,0.12396 -10309,3411:455,115,-45,0,0,0.12481 -10310,3411:456,116,-45,0,0,0.125046 -10311,3411:457,117,-45,0,0,0.130054 -10312,3411:458,118,-45,0,0,0.133331 -10313,3411:459,119,-45,0,0,0.131924 -10314,3412:350,120,-45,0,0,0.122142 -10315,3412:351,121,-45,0,0,0.121405 -10316,3412:352,122,-45,0,0,0.120488 -10317,3412:353,123,-45,0,0,0.124194 -10318,3412:354,124,-45,0,0,0.131783 -10319,3412:455,125,-45,0,0,0.119793 -10320,3412:456,126,-45,0,0,0.124575 -10321,3412:457,127,-45,0,0,0.12605 -10322,3412:458,128,-45,0,0,0.126413 -10323,3412:459,129,-45,0,0,0.129984 -10324,3413:350,130,-45,0,0,0.1301 -10325,3413:351,131,-45,0,0,0.129995 -10326,3413:352,132,-45,0,0,0.125756 -10327,3413:353,133,-45,0,0,0.126538 -10328,3413:354,134,-45,0,0,0.13262 -10329,3413:455,135,-45,0,0,0.13262 -10330,3413:456,136,-45,0,0,0.133938 -10331,3413:457,137,-45,0,0,0.134117 -10332,3413:458,138,-45,0,0,0.129508 -10333,3413:459,139,-45,0,0,0.127529 -10334,3414:350,140,-45,0,0,0.133284 -10335,3414:351,141,-45,0,0,0.136049 -10336,3414:352,142,-45,0,0,0.138704 -10337,3414:353,143,-45,0,0,0.129473 -10338,3414:354,144,-45,0,0,0.116856 -10339,3414:455,145,-45,0,0,0.117696 -10340,3414:456,146,-45,0,0,0.118552 -10341,3414:457,147,-45,0,0,0.129995 -10342,3414:458,148,-45,0,0,0.14567 -10343,3414:459,149,-45,0,0,0.168418 -10344,3415:350,150,-45,0,0,0.161054 -10345,3415:351,151,-45,0,0,0.141538 -10346,3415:352,152,-45,0,0,0.149117 -10347,3415:353,153,-45,0,0,0.156132 -10348,3415:354,154,-45,0,0,0.166271 -10349,3415:455,155,-45,0,0,0.156647 -10350,3415:456,156,-45,0,0,0.158721 -10351,3415:457,157,-45,0,0,0.148194 -10352,3415:458,158,-45,0,0,0.149052 -10353,3415:459,159,-45,0,0,0.151902 -10354,3416:350,160,-45,0,0,0.131384 -10355,3416:351,161,-45,0,0,0.137981 -10356,3416:352,162,-45,0,0,0.150386 -10357,3416:353,163,-45,0,0,0.146644 -10358,3416:354,164,-45,0,0,0.149744 -10359,3416:455,165,-45,0,0,0.172397 -10360,3416:456,166,-45,0,0,0.18517 -10361,3416:457,167,-45,0,0,0.180701 -10362,3416:458,168,-45,0,0,0.179836 -10363,3416:459,169,-45,0,0,0.180276 -10364,3417:350,170,-45,0,0,0.180382 -10365,3417:351,171,-45,0,0,0.177769 -10366,3417:352,172,-45,0,0,0.166598 -10367,3417:353,173,-45,0,0,0.156769 -10368,3417:354,174,-45,0,0,0.150137 -10369,3417:455,175,-45,0,0,0.149156 -10370,3417:456,176,-45,0,0,0.159216 -10371,3417:457,177,-45,0,0,0.157982 -10372,3417:458,178,-45,0,0,0.159243 -10373,3417:459,179,-45,0,0,0.167585 -10374,3418:350,180,-45,0,0,0.166656 -10375,5418:140,-180,-44,0,0,0.167213 -10376,5417:249,-179,-44,0,0,0.170806 -10377,5417:248,-178,-44,0,0,0.17675 -10378,5417:247,-177,-44,0,0,0.180018 -10379,5417:246,-176,-44,0,0,0.179669 -10380,5417:245,-175,-44,0,0,0.17979 -10381,5417:144,-174,-44,0,0,0.188087 -10382,5417:143,-173,-44,0,0,0.187116 -10383,5417:142,-172,-44,0,0,0.183594 -10384,5417:141,-171,-44,0,0,0.176049 -10385,5417:140,-170,-44,0,0,0.167499 -10386,5416:249,-169,-44,0,0,0.172236 -10387,5416:248,-168,-44,0,0,0.172442 -10388,5416:247,-167,-44,0,0,0.161582 -10389,5416:246,-166,-44,0,0,0.15601 -10390,5416:245,-165,-44,0,0,0.157927 -10391,5416:144,-164,-44,0,0,0.158831 -10392,5416:143,-163,-44,0,0,0.15967 -10393,5416:142,-162,-44,0,0,0.167915 -10394,5416:141,-161,-44,0,0,0.170776 -10395,5416:140,-160,-44,0,0,0.167485 -10396,5415:249,-159,-44,0,0,0.174889 -10397,5415:248,-158,-44,0,0,0.179957 -10398,5415:247,-157,-44,0,0,0.166328 -10399,5415:246,-156,-44,0,0,0.170733 -10400,5415:245,-155,-44,0,0,0.177724 -10401,5415:144,-154,-44,0,0,0.19356 -10402,5415:143,-153,-44,0,0,0.193383 -10403,5415:142,-152,-44,0,0,0.1859 -10404,5415:141,-151,-44,0,0,0.17923 -10405,5415:140,-150,-44,0,0,0.171359 -10406,5414:249,-149,-44,0,0,0.171724 -10407,5414:248,-148,-44,0,0,0.175097 -10408,5414:247,-147,-44,0,0,0.184242 -10409,5414:246,-146,-44,0,0,0.188683 -10410,5414:245,-145,-44,0,0,0.181158 -10411,5414:144,-144,-44,0,0,0.178341 -10412,5414:143,-143,-44,0,0,0.175929 -10413,5414:142,-142,-44,0,0,0.1735 -10414,5414:141,-141,-44,0,0,0.184303 -10415,5414:140,-140,-44,0,0,0.182258 -10416,5413:249,-139,-44,0,0,0.179019 -10417,5413:248,-138,-44,0,0,0.179215 -10418,5413:247,-137,-44,0,0,0.185372 -10419,5413:246,-136,-44,0,0,0.188243 -10420,5413:245,-135,-44,0,0,0.190737 -10421,5413:144,-134,-44,0,0,0.193143 -10422,5413:143,-133,-44,0,0,0.196365 -10423,5413:142,-132,-44,0,0,0.199234 -10424,5413:141,-131,-44,0,0,0.198367 -10425,5413:140,-130,-44,0,0,0.19034 -10427,5412:248,-128,-44,0,0,0.183625 -10428,5412:247,-127,-44,0,0,0.181112 -10429,5412:246,-126,-44,0,0,0.181371 -10430,5412:245,-125,-44,0,0,0.181097 -10431,5412:144,-124,-44,0,0,0.179684 -10432,5412:143,-123,-44,0,0,0.177439 -10433,5412:142,-122,-44,0,0,0.175825 -10434,5412:141,-121,-44,0,0,0.17443 -10435,5412:140,-120,-44,0,0,0.175825 -10436,5411:249,-119,-44,0,0,0.176034 -10437,5411:248,-118,-44,0,0,0.174549 -10438,5411:247,-117,-44,0,0,0.170573 -10439,5411:246,-116,-44,0,0,0.168836 -10440,5411:245,-115,-44,0,0,0.17034 -10441,5411:144,-114,-44,0,0,0.168865 -10442,5411:143,-113,-44,0,0,0.165744 -10443,5411:142,-112,-44,0,0,0.162629 -10444,5411:141,-111,-44,0,0,0.162586 -10445,5411:140,-110,-44,0,0,0.161791 -10446,5410:249,-109,-44,0,0,0.161498 -10447,5410:248,-108,-44,0,0,0.162321 -10448,5410:247,-107,-44,0,0,0.159477 -10449,5410:246,-106,-44,0,0,0.159257 -10450,5410:245,-105,-44,0,0,0.161262 -10451,5410:144,-104,-44,0,0,0.158078 -10452,5410:143,-103,-44,0,0,0.157096 -10453,5410:142,-102,-44,0,0,0.159381 -10454,5410:141,-101,-44,0,0,0.15601 -10455,5410:140,-100,-44,0,0,0.157341 -10456,5409:249,-99,-44,0,0,0.158625 -10457,5409:248,-98,-44,0,0,0.156416 -10458,5409:247,-97,-44,0,0,0.155349 -10459,5409:246,-96,-44,0,0,0.15516 -10460,5409:245,-95,-44,0,0,0.155888 -10461,5409:144,-94,-44,0,0,0.15681 -10462,5409:143,-93,-44,0,0,0.156525 -10463,5409:142,-92,-44,0,0,0.155416 -10464,5409:141,-91,-44,0,0,0.154756 -10465,5409:140,-90,-44,0,0,0.156579 -10466,5408:249,-89,-44,0,0,0.157231 -10467,5408:248,-88,-44,0,0,0.155497 -10468,5408:247,-87,-44,0,0,0.156471 -10469,5408:246,-86,-44,0,0,0.156851 -10470,5408:245,-85,-44,0,0,0.155686 -10471,5408:144,-84,-44,0,0,0.155672 -10472,5408:143,-83,-44,0,0,0.15516 -10473,5408:142,-82,-44,0,0,0.154662 -10474,5408:141,-81,-44,0,0,0.155848 -10475,5408:140,-80,-44,0,0,0.155564 -10476,5407:249,-79,-44,0,0,0.157763 -10477,5407:248,-78,-44,0,0,0.162377 -10478,5407:247,-77,-44,0,0,0.160568 -10479,5407:246,-76,-44,0,0,0.158859 -10480,5407:245,-75,-44,0,0,0.163878 -10481,5407:144,-74,-44,0,0,0.179397 -10482,5406:247,-67,-44,0,0,0.171914 -10483,5406:246,-66,-44,0,0,0.162167 -10484,5406:245,-65,-44,0,0,0.157096 -10485,5406:144,-64,-44,0,0,0.150517 -10486,5406:143,-63,-44,0,0,0.152512 -10487,5406:142,-62,-44,0,0,0.150793 -10488,5406:141,-61,-44,0,0,0.15032 -10489,5406:140,-60,-44,0,0,0.152857 -10490,5405:249,-59,-44,0,0,0.153457 -10491,5405:248,-58,-44,0,0,0.150951 -10492,5405:247,-57,-44,0,0,0.14787 -10493,5405:246,-56,-44,0,0,0.143825 -10494,5405:245,-55,-44,0,0,0.141976 -10495,5405:144,-54,-44,0,0,0.141214 -10496,5405:143,-53,-44,0,0,0.141077 -10497,5405:142,-52,-44,0,0,0.140158 -10498,5405:141,-51,-44,0,0,0.137822 -10499,5405:140,-50,-44,0,0,0.13588 -10500,5404:249,-49,-44,0,0,0.130647 -10501,5404:248,-48,-44,0,0,0.122528 -10502,5404:247,-47,-44,0,0,0.120902 -10503,5404:246,-46,-44,0,0,0.118628 -10504,5404:245,-45,-44,0,0,0.112517 -10505,5404:144,-44,-44,0,0,0.111627 -10506,5404:143,-43,-44,0,0,0.112671 -10507,5404:142,-42,-44,0,0,0.111597 -10508,5404:141,-41,-44,0,0,0.111261 -10509,5404:140,-40,-44,0,0,0.109967 -10510,5403:249,-39,-44,0,0,0.108806 -10511,5403:248,-38,-44,0,0,0.107291 -10512,5403:247,-37,-44,0,0,0.103876 -10513,5403:246,-36,-44,0,0,0.101014 -10514,5403:245,-35,-44,0,0,0.0997427 -10515,5403:144,-34,-44,0,0,0.0984495 -10516,5403:143,-33,-44,0,0,0.0959701 -10517,5403:142,-32,-44,0,0,0.101988 -10518,5403:141,-31,-44,0,0,0.111271 -10519,5403:140,-30,-44,0,0,0.112199 -10520,5402:249,-29,-44,0,0,0.111099 -10521,5402:248,-28,-44,0,0,0.108727 -10522,5402:247,-27,-44,0,0,0.104269 -10523,5402:246,-26,-44,0,0,0.101369 -10524,5402:245,-25,-44,0,0,0.105107 -10525,5402:144,-24,-44,0,0,0.111546 -10526,5402:143,-23,-44,0,0,0.106702 -10527,5402:142,-22,-44,0,0,0.105853 -10528,5402:141,-21,-44,0,0,0.110159 -10529,5402:140,-20,-44,0,0,0.112025 -10530,5401:249,-19,-44,0,0,0.108527 -10531,5401:248,-18,-44,0,0,0.106165 -10532,5401:247,-17,-44,0,0,0.112496 -10533,5401:246,-16,-44,0,0,0.111933 -10534,5401:245,-15,-44,0,0,0.107774 -10535,5401:144,-14,-44,0,0,0.110028 -10536,5401:143,-13,-44,0,0,0.113288 -10537,5401:142,-12,-44,0,0,0.113578 -10538,5401:141,-11,-44,0,0,0.108687 -10539,5401:140,-10,-44,0,0,0.104653 -10540,5400:249,-9,-44,0,0,0.104596 -10541,5400:248,-8,-44,0,0,0.104403 -10542,5400:247,-7,-44,0,0,0.102413 -10543,5400:246,-6,-44,0,0,0.0957828 -10544,5400:245,-5,-44,0,0,0.0934507 -10545,5400:144,-4,-44,0,0,0.0932421 -10546,5400:143,-3,-44,0,0,0.0927913 -10547,5400:142,-2,-44,0,0,0.0913568 -10548,5400:141,-1,-44,0,0,0.0903471 -10549,3400:141,0,-44,0,0,0.0900771 -10550,3400:141,1,-44,0,0,0.0907786 -10551,3400:142,2,-44,0,0,0.0902373 -10552,3400:143,3,-44,0,0,0.0867163 -10553,3400:144,4,-44,0,0,0.0869686 -10554,3400:245,5,-44,0,0,0.0857045 -10555,3400:246,6,-44,0,0,0.0852386 -10556,3400:247,7,-44,0,0,0.0850945 -10557,3400:248,8,-44,0,0,0.0849986 -10558,3400:249,9,-44,0,0,0.0849028 -10559,3401:140,10,-44,0,0,0.0889301 -10560,3401:141,11,-44,0,0,0.0849586 -10561,3401:142,12,-44,0,0,0.0844886 -10562,3401:143,13,-44,0,0,0.0844726 -10563,3401:144,14,-44,0,0,0.0850386 -10564,3401:245,15,-44,0,0,0.0850306 -10565,3401:246,16,-44,0,0,0.0856078 -10566,3401:247,17,-44,0,0,0.085624 -10567,3401:248,18,-44,0,0,0.0861725 -10568,3401:249,19,-44,0,0,0.0869443 -10569,3402:140,20,-44,0,0,0.0878704 -10570,3402:141,21,-44,0,0,0.0883905 -10571,3402:142,22,-44,0,0,0.0881507 -10572,3402:143,23,-44,0,0,0.0875332 -10573,3402:144,24,-44,0,0,0.0858415 -10574,3402:245,25,-44,0,0,0.0855837 -10575,3402:246,26,-44,0,0,0.0960144 -10576,3402:247,27,-44,0,0,0.101369 -10577,3402:248,28,-44,0,0,0.0995677 -10578,3402:249,29,-44,0,0,0.0906599 -10579,3403:140,30,-44,0,0,0.0975957 -10580,3403:141,31,-44,0,0,0.0964792 -10581,3403:142,32,-44,0,0,0.096327 -10582,3403:143,33,-44,0,0,0.0929039 -10583,3403:144,34,-44,0,0,0.0970091 -10584,3403:245,35,-44,0,0,0.099356 -10585,3403:246,36,-44,0,0,0.0988423 -10586,3403:247,37,-44,0,0,0.0995953 -10587,3403:248,38,-44,0,0,0.101453 -10588,3403:249,39,-44,0,0,0.101051 -10589,3404:140,40,-44,0,0,0.099062 -10590,3404:141,41,-44,0,0,0.0990528 -10591,3404:142,42,-44,0,0,0.0985405 -10592,3404:143,43,-44,0,0,0.0972973 -10593,3404:144,44,-44,0,0,0.0974508 -10594,3404:245,45,-44,0,0,0.0975866 -10595,3404:246,46,-44,0,0,0.0977134 -10596,3404:247,47,-44,0,0,0.100613 -10597,3404:248,48,-44,0,0,0.0979491 -10598,3404:249,49,-44,0,0,0.0986777 -10599,3405:140,50,-44,0,0,0.101866 -10600,3405:141,51,-44,0,0,0.0988971 -10601,3405:142,52,-44,0,0,0.0996046 -10602,3405:143,53,-44,0,0,0.10093 -10603,3405:144,54,-44,0,0,0.10359 -10604,3405:245,55,-44,0,0,0.104048 -10605,3405:246,56,-44,0,0,0.101472 -10606,3405:247,57,-44,0,0,0.0985041 -10607,3405:248,58,-44,0,0,0.101341 -10608,3405:249,59,-44,0,0,0.103914 -10609,3406:140,60,-44,0,0,0.102214 -10610,3406:141,61,-44,0,0,0.102479 -10611,3406:142,62,-44,0,0,0.101641 -10612,3406:143,63,-44,0,0,0.103351 -10613,3406:144,64,-44,0,0,0.105795 -10614,3406:245,65,-44,0,0,0.104355 -10615,3406:246,66,-44,0,0,0.104875 -10616,3406:247,67,-44,0,0,0.106301 -10617,3406:248,68,-44,0,0,0.106409 -10618,3406:249,69,-44,0,0,0.103171 -10619,3407:140,70,-44,0,0,0.102271 -10620,3407:141,71,-44,0,0,0.100279 -10621,3407:142,72,-44,0,0,0.0993192 -10622,3407:144,74,-44,0,0,0.0996229 -10623,3407:245,75,-44,0,0,0.0995124 -10624,3407:246,76,-44,0,0,0.10002 -10625,3407:247,77,-44,0,0,0.100149 -10626,3407:248,78,-44,0,0,0.0967931 -10627,3407:249,79,-44,0,0,0.0893137 -10628,3408:140,80,-44,0,0,0.0895312 -10629,3408:141,81,-44,0,0,0.0892303 -10630,3408:142,82,-44,0,0,0.0891636 -10631,3408:143,83,-44,0,0,0.10053 -10632,3408:144,84,-44,0,0,0.110542 -10633,3408:245,85,-44,0,0,0.105834 -10634,3408:246,86,-44,0,0,0.108687 -10635,3408:247,87,-44,0,0,0.116158 -10636,3408:248,88,-44,0,0,0.115474 -10637,3408:249,89,-44,0,0,0.122473 -10638,3409:140,90,-44,0,0,0.128746 -10639,3409:141,91,-44,0,0,0.121899 -10640,3409:142,92,-44,0,0,0.123414 -10641,3409:143,93,-44,0,0,0.125485 -12589,5308:486,-86,-38,0,0,0.18873 -10642,3409:144,94,-44,0,0,0.121296 -10643,3409:245,95,-44,0,0,0.115013 -10644,3409:246,96,-44,0,0,0.114783 -10645,3409:247,97,-44,0,0,0.115003 -10646,3409:248,98,-44,0,0,0.115202 -10647,3409:249,99,-44,0,0,0.116168 -10648,3410:140,100,-44,0,0,0.117472 -10649,3410:141,101,-44,0,0,0.111903 -10650,3410:142,102,-44,0,0,0.104173 -10651,3410:143,103,-44,0,0,0.103247 -10652,3410:144,104,-44,0,0,0.104663 -10653,3410:245,105,-44,0,0,0.105814 -10654,3410:246,106,-44,0,0,0.108756 -10655,3410:247,107,-44,0,0,0.115537 -10656,3410:248,108,-44,0,0,0.117408 -10657,3410:249,109,-44,0,0,0.1156 -10658,3411:140,110,-44,0,0,0.11038 -10659,3411:141,111,-44,0,0,0.11039 -10660,3411:142,112,-44,0,0,0.111729 -10661,3411:143,113,-44,0,0,0.114794 -10662,3411:144,114,-44,0,0,0.124597 -10663,3411:245,115,-44,0,0,0.131349 -10664,3411:246,116,-44,0,0,0.12832 -10665,3411:247,117,-44,0,0,0.128056 -10666,3411:248,118,-44,0,0,0.128331 -10667,3411:249,119,-44,0,0,0.138397 -10668,3412:140,120,-44,0,0,0.136025 -10669,3412:141,121,-44,0,0,0.129775 -10670,3412:142,122,-44,0,0,0.140704 -10671,3412:143,123,-44,0,0,0.139503 -10672,3412:144,124,-44,0,0,0.13364 -10673,3412:245,125,-44,0,0,0.12681 -10674,3412:246,126,-44,0,0,0.133307 -10675,3412:247,127,-44,0,0,0.141588 -10676,3412:248,128,-44,0,0,0.137055 -10677,3412:249,129,-44,0,0,0.133938 -10678,3413:140,130,-44,0,0,0.134738 -10679,3413:141,131,-44,0,0,0.133688 -10680,3413:142,132,-44,0,0,0.1332 -10681,3413:143,133,-44,0,0,0.128584 -10682,3413:144,134,-44,0,0,0.140903 -10683,3413:245,135,-44,0,0,0.146054 -10684,3413:246,136,-44,0,0,0.142678 -10685,3413:247,137,-44,0,0,0.136885 -10686,3413:248,138,-44,0,0,0.137542 -10687,3413:249,139,-44,0,0,0.138716 -10688,3414:140,140,-44,0,0,0.139553 -10689,3414:141,141,-44,0,0,0.136025 -10690,3414:142,142,-44,0,0,0.130018 -10691,3414:143,143,-44,0,0,0.122616 -10692,3414:144,144,-44,0,0,0.11656 -10693,3414:245,145,-44,0,0,0.123826 -10694,3414:246,146,-44,0,0,0.129022 -10695,3414:247,147,-44,0,0,0.135977 -10696,3414:248,148,-44,0,0,0.132656 -10697,3414:249,149,-44,0,0,0.156064 -10698,3415:140,150,-44,0,0,0.167241 -10699,3415:141,151,-44,0,0,0.157136 -10700,3415:142,152,-44,0,0,0.15351 -10701,3415:143,153,-44,0,0,0.160236 -10702,3415:144,154,-44,0,0,0.173176 -10703,3415:245,155,-44,0,0,0.17406 -10704,3415:246,156,-44,0,0,0.167958 -10705,3415:247,157,-44,0,0,0.155456 -10706,3415:248,158,-44,0,0,0.157082 -10707,3415:249,159,-44,0,0,0.157313 -10708,3416:140,160,-44,0,0,0.154005 -10709,3416:141,161,-44,0,0,0.145376 -10710,3416:142,162,-44,0,0,0.14507 -10711,3416:143,163,-44,0,0,0.150281 -10712,3416:144,164,-44,0,0,0.153992 -10713,3416:245,165,-44,0,0,0.172809 -10714,3416:246,166,-44,0,0,0.18782 -10715,3416:247,167,-44,0,0,0.182013 -10716,3416:248,168,-44,0,0,0.180063 -10717,3416:249,169,-44,0,0,0.17911 -10718,3417:140,170,-44,0,0,0.178853 -10719,3417:141,171,-44,0,0,0.179004 -10720,3417:142,172,-44,0,0,0.179821 -10721,3417:143,173,-44,0,0,0.179942 -10722,3417:144,174,-44,0,0,0.175439 -10723,3417:245,175,-44,0,0,0.160998 -10724,3417:246,176,-44,0,0,0.156566 -10725,3417:247,177,-44,0,0,0.16025 -10726,3417:248,178,-44,0,0,0.164484 -10727,3417:249,179,-44,0,0,0.163498 -10728,3418:140,180,-44,0,0,0.167213 -10729,5418:130,-180,-43,0,0,0.176825 -10730,5417:239,-179,-43,0,0,0.179503 -10731,5417:238,-178,-43,0,0,0.179942 -10732,5417:237,-177,-43,0,0,0.180732 -10733,5417:236,-176,-43,0,0,0.181463 -10734,5417:235,-175,-43,0,0,0.184149 -10735,5417:134,-174,-43,0,0,0.189345 -10736,5417:133,-173,-43,0,0,0.185822 -10737,5417:132,-172,-43,0,0,0.187225 -10738,5417:131,-171,-43,0,0,0.181448 -10739,5417:130,-170,-43,0,0,0.176302 -10740,5416:239,-169,-43,0,0,0.182748 -10741,5416:238,-168,-43,0,0,0.187647 -10742,5416:237,-167,-43,0,0,0.18562 -10743,5416:236,-166,-43,0,0,0.183779 -10744,5416:235,-165,-43,0,0,0.181768 -10745,5416:134,-164,-43,0,0,0.176825 -10746,5416:133,-163,-43,0,0,0.168519 -10747,5416:132,-162,-43,0,0,0.172193 -10748,5416:131,-161,-43,0,0,0.177619 -10749,5416:130,-160,-43,0,0,0.177514 -10750,5415:239,-159,-43,0,0,0.186491 -10751,5415:238,-158,-43,0,0,0.192104 -10752,5415:237,-157,-43,0,0,0.176227 -10753,5415:236,-156,-43,0,0,0.171812 -10754,5415:235,-155,-43,0,0,0.192615 -10755,5415:134,-154,-43,0,0,0.214606 -10756,5415:133,-153,-43,0,0,0.215213 -10757,5415:132,-152,-43,0,0,0.213569 -10758,5415:131,-151,-43,0,0,0.213689 -10759,5415:130,-150,-43,0,0,0.212965 -10760,5414:239,-149,-43,0,0,0.206612 -10761,5414:238,-148,-43,0,0,0.197096 -10762,5414:237,-147,-43,0,0,0.193239 -10763,5414:236,-146,-43,0,0,0.200105 -10764,5414:235,-145,-43,0,0,0.197633 -10765,5414:134,-144,-43,0,0,0.188526 -10766,5414:133,-143,-43,0,0,0.196219 -10767,5414:132,-142,-43,0,0,0.206781 -10768,5414:131,-141,-43,0,0,0.204147 -10769,5414:130,-140,-43,0,0,0.194363 -10770,5413:239,-139,-43,0,0,0.182442 -10771,5413:238,-138,-43,0,0,0.188904 -10772,5413:237,-137,-43,0,0,0.203514 -10773,5413:236,-136,-43,0,0,0.207185 -10774,5413:235,-135,-43,0,0,0.211882 -10775,5413:134,-134,-43,0,0,0.210854 -10776,5413:133,-133,-43,0,0,0.208183 -10777,5413:132,-132,-43,0,0,0.205956 -10778,5413:131,-131,-43,0,0,0.200714 -10779,5413:130,-130,-43,0,0,0.198433 -10780,5412:239,-129,-43,0,0,0.195394 -10781,5412:238,-128,-43,0,0,0.19212 -10782,5412:237,-127,-43,0,0,0.18746 -10783,5412:236,-126,-43,0,0,0.189219 -10784,5412:235,-125,-43,0,0,0.189629 -10785,5412:134,-124,-43,0,0,0.184381 -10786,5412:133,-123,-43,0,0,0.183009 -10787,5412:132,-122,-43,0,0,0.181188 -10788,5412:131,-121,-43,0,0,0.17837 -10789,5412:130,-120,-43,0,0,0.177694 -10790,5411:239,-119,-43,0,0,0.176855 -10791,5411:238,-118,-43,0,0,0.175008 -10792,5411:237,-117,-43,0,0,0.173161 -10793,5411:236,-116,-43,0,0,0.177484 -10794,5411:235,-115,-43,0,0,0.181387 -10795,5411:134,-114,-43,0,0,0.178898 -10796,5411:133,-113,-43,0,0,0.173662 -10797,5411:132,-112,-43,0,0,0.169298 -10798,5411:131,-111,-43,0,0,0.169688 -10799,5411:130,-110,-43,0,0,0.168231 -10800,5410:239,-109,-43,0,0,0.166784 -10801,5410:238,-108,-43,0,0,0.166827 -10802,5410:237,-107,-43,0,0,0.16478 -10803,5410:236,-106,-43,0,0,0.167213 -10804,5410:235,-105,-43,0,0,0.165617 -10805,5410:134,-104,-43,0,0,0.161484 -10806,5410:133,-103,-43,0,0,0.16347 -10807,5410:132,-102,-43,0,0,0.165191 -10808,5410:131,-101,-43,0,0,0.161833 -10809,5410:130,-100,-43,0,0,0.161874 -10810,5409:239,-99,-43,0,0,0.16354 -10811,5409:238,-98,-43,0,0,0.16274 -10812,5409:237,-97,-43,0,0,0.16097 -10813,5409:236,-96,-43,0,0,0.161429 -10814,5409:235,-95,-43,0,0,0.162642 -10815,5409:134,-94,-43,0,0,0.164724 -10816,5409:133,-93,-43,0,0,0.162279 -10817,5409:132,-92,-43,0,0,0.159326 -10818,5409:131,-91,-43,0,0,0.160624 -10819,5409:130,-90,-43,0,0,0.163259 -10820,5408:239,-89,-43,0,0,0.161456 -10821,5408:238,-88,-43,0,0,0.16072 -10822,5408:237,-87,-43,0,0,0.162125 -10823,5408:236,-86,-43,0,0,0.160929 -10824,5408:235,-85,-43,0,0,0.160652 -10825,5408:134,-84,-43,0,0,0.160887 -10826,5408:133,-83,-43,0,0,0.159905 -10827,5408:132,-82,-43,0,0,0.159161 -10828,5408:131,-81,-43,0,0,0.159119 -10829,5408:130,-80,-43,0,0,0.158968 -10830,5407:239,-79,-43,0,0,0.162223 -10831,5407:238,-78,-43,0,0,0.163203 -10832,5407:237,-77,-43,0,0,0.164413 -10833,5407:236,-76,-43,0,0,0.169413 -10834,5407:235,-75,-43,0,0,0.180808 -10835,5407:134,-74,-43,0,0,0.192663 -10836,5406:238,-68,-43,0,0,0.17807 -10837,5406:237,-67,-43,0,0,0.165517 -10838,5406:236,-66,-43,0,0,0.161026 -10839,5406:235,-65,-43,0,0,0.159988 -10840,5406:134,-64,-43,0,0,0.156987 -10841,5406:133,-63,-43,0,0,0.158461 -10842,5406:132,-62,-43,0,0,0.158872 -10843,5406:131,-61,-43,0,0,0.16122 -10844,5406:130,-60,-43,0,0,0.165531 -10845,5405:239,-59,-43,0,0,0.166912 -10846,5405:238,-58,-43,0,0,0.162629 -10847,5405:237,-57,-43,0,0,0.157982 -10848,5405:236,-56,-43,0,0,0.151968 -10849,5405:235,-55,-43,0,0,0.145389 -10850,5405:134,-54,-43,0,0,0.143914 -10851,5405:133,-53,-43,0,0,0.142892 -10852,5405:132,-52,-43,0,0,0.139861 -10853,5405:131,-51,-43,0,0,0.138998 -10854,5405:130,-50,-43,0,0,0.136788 -10855,5404:239,-49,-43,0,0,0.132668 -10856,5404:238,-48,-43,0,0,0.124407 -10857,5404:237,-47,-43,0,0,0.123949 -10858,5404:236,-46,-43,0,0,0.122031 -10859,5404:235,-45,-43,0,0,0.120717 -10860,5404:134,-44,-43,0,0,0.119999 -10861,5404:133,-43,-43,0,0,0.117313 -10862,5404:132,-42,-43,0,0,0.115453 -10863,5404:131,-41,-43,0,0,0.121669 -10864,5404:130,-40,-43,0,0,0.12063 -10865,5403:239,-39,-43,0,0,0.118241 -10866,5403:238,-38,-43,0,0,0.110653 -10867,5403:237,-37,-43,0,0,0.108756 -10868,5403:236,-36,-43,0,0,0.111271 -10869,5403:235,-35,-43,0,0,0.107646 -10870,5403:134,-34,-43,0,0,0.108647 -10871,5403:133,-33,-43,0,0,0.101341 -10872,5403:132,-32,-43,0,0,0.105814 -10873,5403:131,-31,-43,0,0,0.111719 -10874,5403:130,-30,-43,0,0,0.110714 -10875,5402:239,-29,-43,0,0,0.114617 -10876,5402:238,-28,-43,0,0,0.12088 -10877,5402:237,-27,-43,0,0,0.115947 -10878,5402:236,-26,-43,0,0,0.112332 -10879,5402:235,-25,-43,0,0,0.11471 -10880,5402:134,-24,-43,0,0,0.115632 -10881,5402:133,-23,-43,0,0,0.118983 -10882,5402:132,-22,-43,0,0,0.115233 -10883,5402:131,-21,-43,0,0,0.112005 -10884,5402:130,-20,-43,0,0,0.115737 -10885,5401:239,-19,-43,0,0,0.112558 -10886,5401:238,-18,-43,0,0,0.118392 -10887,5401:237,-17,-43,0,0,0.116983 -10888,5401:236,-16,-43,0,0,0.116686 -10889,5401:235,-15,-43,0,0,0.115958 -10890,5401:134,-14,-43,0,0,0.112076 -10891,5401:133,-13,-43,0,0,0.114148 -10892,5401:132,-12,-43,0,0,0.116814 -10893,5401:131,-11,-43,0,0,0.114731 -10894,5401:130,-10,-43,0,0,0.107685 -10895,5400:239,-9,-43,0,0,0.105902 -10896,5400:238,-8,-43,0,0,0.10473 -10897,5400:237,-7,-43,0,0,0.104548 -10898,5400:236,-6,-43,0,0,0.101247 -10899,5400:235,-5,-43,0,0,0.0943861 -10900,5400:134,-4,-43,0,0,0.0949763 -10901,5400:133,-3,-43,0,0,0.0954366 -10902,5400:132,-2,-43,0,0,0.0932159 -10903,5400:131,-1,-43,0,0,0.0907108 -10904,3400:131,0,-43,0,0,0.0905077 -10905,3400:131,1,-43,0,0,0.0904992 -10906,3400:132,2,-43,0,0,0.0898333 -10907,3400:133,3,-43,0,0,0.0882168 -10908,3400:134,4,-43,0,0,0.092179 -10909,3400:235,5,-43,0,0,0.0966764 -10910,3400:236,6,-43,0,0,0.093103 -10911,3400:237,7,-43,0,0,0.0889469 -10912,3400:238,8,-43,0,0,0.0913826 -10913,3400:239,9,-43,0,0,0.0878126 -10914,3401:130,10,-43,0,0,0.0939304 -10915,3401:131,11,-43,0,0,0.0994756 -10916,3401:132,12,-43,0,0,0.0905415 -10917,3401:133,13,-43,0,0,0.0862212 -10918,3401:134,14,-43,0,0,0.0873448 -10919,3401:235,15,-43,0,0,0.0904907 -10920,3401:236,16,-43,0,0,0.0930249 -10921,3401:237,17,-43,0,0,0.09359 -10922,3401:238,18,-43,0,0,0.0921359 -10923,3401:239,19,-43,0,0,0.0921533 -10924,3402:130,20,-43,0,0,0.0922737 -10925,3402:131,21,-43,0,0,0.0901447 -10926,3402:132,22,-43,0,0,0.0872874 -10927,3402:133,23,-43,0,0,0.0871483 -10928,3402:134,24,-43,0,0,0.0884486 -10929,3402:235,25,-43,0,0,0.088341 -10930,3402:236,26,-43,0,0,0.0923165 -10931,3402:237,27,-43,0,0,0.096336 -10932,3402:238,28,-43,0,0,0.0928085 -10933,3402:239,29,-43,0,0,0.097 -10934,3403:130,30,-43,0,0,0.100409 -10935,3403:131,31,-43,0,0,0.11029 -10936,3403:132,32,-43,0,0,0.0965869 -10937,3403:133,33,-43,0,0,0.0968471 -10938,3403:134,34,-43,0,0,0.098249 -10939,3403:235,35,-43,0,0,0.0994295 -10940,3403:236,36,-43,0,0,0.103494 -10941,3403:237,37,-43,0,0,0.105097 -10942,3403:238,38,-43,0,0,0.105863 -10943,3403:239,39,-43,0,0,0.102545 -10944,3404:130,40,-43,0,0,0.101219 -10945,3404:131,41,-43,0,0,0.10181 -10946,3404:132,42,-43,0,0,0.100131 -10947,3404:133,43,-43,0,0,0.101257 -10948,3404:134,44,-43,0,0,0.100781 -10949,3404:235,45,-43,0,0,0.100949 -10950,3404:236,46,-43,0,0,0.104144 -10951,3404:237,47,-43,0,0,0.104827 -10952,3404:238,48,-43,0,0,0.103838 -10953,3404:239,49,-43,0,0,0.107449 -10954,3405:130,50,-43,0,0,0.108816 -10955,3405:131,51,-43,0,0,0.107321 -10956,3405:132,52,-43,0,0,0.103256 -10957,3405:133,53,-43,0,0,0.108042 -10958,3405:134,54,-43,0,0,0.106869 -10959,3405:235,55,-43,0,0,0.105165 -10960,3405:236,56,-43,0,0,0.105931 -10961,3405:237,57,-43,0,0,0.106683 -10962,3405:238,58,-43,0,0,0.103389 -10963,3405:239,59,-43,0,0,0.104269 -10964,3406:130,60,-43,0,0,0.108468 -10965,3406:131,61,-43,0,0,0.109716 -10966,3406:132,62,-43,0,0,0.107666 -10967,3406:133,63,-43,0,0,0.105591 -10968,3406:134,64,-43,0,0,0.10818 -10969,3406:235,65,-43,0,0,0.107036 -10970,3406:236,66,-43,0,0,0.107134 -10971,3406:237,67,-43,0,0,0.108746 -10972,3406:238,68,-43,0,0,0.109055 -10973,3406:239,69,-43,0,0,0.109385 -10974,3407:130,70,-43,0,0,0.104471 -10975,3407:131,71,-43,0,0,0.100753 -10976,3407:132,72,-43,0,0,0.101154 -10977,3407:134,74,-43,0,0,0.102101 -10978,3407:235,75,-43,0,0,0.101547 -10979,3407:236,76,-43,0,0,0.101107 -10980,3407:237,77,-43,0,0,0.0998351 -10981,3407:238,78,-43,0,0,0.0981854 -10982,3407:239,79,-43,0,0,0.0919041 -10983,3408:130,80,-43,0,0,0.0935812 -10984,3408:131,81,-43,0,0,0.093808 -10985,3408:132,82,-43,0,0,0.0972794 -10986,3408:133,83,-43,0,0,0.10121 -10987,3408:134,84,-43,0,0,0.122153 -10988,3408:235,85,-43,0,0,0.11936 -10989,3408:236,86,-43,0,0,0.112291 -10990,3408:237,87,-43,0,0,0.113516 -10991,3408:238,88,-43,0,0,0.116877 -10992,3408:239,89,-43,0,0,0.120412 -10993,3409:130,90,-43,0,0,0.12754 -10994,3409:131,91,-43,0,0,0.13024 -10995,3409:132,92,-43,0,0,0.12923 -10996,3409:133,93,-43,0,0,0.122948 -10997,3409:134,94,-43,0,0,0.120531 -10998,3409:235,95,-43,0,0,0.116707 -10999,3409:236,96,-43,0,0,0.120924 -11000,3409:237,97,-43,0,0,0.12327 -11001,3409:238,98,-43,0,0,0.128757 -11002,3409:239,99,-43,0,0,0.126867 -11003,3410:130,100,-43,0,0,0.125035 -11004,3410:131,101,-43,0,0,0.121416 -11005,3410:132,102,-43,0,0,0.1176 -11006,3410:133,103,-43,0,0,0.112763 -11007,3410:134,104,-43,0,0,0.112753 -11008,3410:235,105,-43,0,0,0.114971 -11009,3410:236,106,-43,0,0,0.113309 -11010,3410:237,107,-43,0,0,0.120433 -11011,3410:238,108,-43,0,0,0.120575 -11012,3410:239,109,-43,0,0,0.115779 -11013,3411:130,110,-43,0,0,0.112866 -11014,3411:131,111,-43,0,0,0.115863 -11015,3411:132,112,-43,0,0,0.120162 -11016,3411:133,113,-43,0,0,0.120303 -11017,3411:134,114,-43,0,0,0.123648 -11018,3411:235,115,-43,0,0,0.140307 -11019,3411:236,116,-43,0,0,0.151017 -11020,3411:237,117,-43,0,0,0.147482 -11021,3411:238,118,-43,0,0,0.133973 -11022,3411:239,119,-43,0,0,0.137067 -11023,3412:130,120,-43,0,0,0.136218 -11024,3412:131,121,-43,0,0,0.141251 -11025,3412:132,122,-43,0,0,0.149339 -11026,3412:133,123,-43,0,0,0.150714 -11027,3412:134,124,-43,0,0,0.147624 -11028,3412:235,125,-43,0,0,0.136267 -11029,3412:236,126,-43,0,0,0.139602 -11030,3412:237,127,-43,0,0,0.145287 -11031,3412:238,128,-43,0,0,0.140816 -11032,3412:239,129,-43,0,0,0.143421 -11033,3413:130,130,-43,0,0,0.140493 -11034,3413:131,131,-43,0,0,0.13847 -11035,3413:132,132,-43,0,0,0.136982 -11036,3413:133,133,-43,0,0,0.140332 -11037,3413:134,134,-43,0,0,0.144459 -11038,3413:235,135,-43,0,0,0.155618 -11039,3413:236,136,-43,0,0,0.161373 -11040,3413:237,137,-43,0,0,0.16025 -11041,3413:238,138,-43,0,0,0.160943 -11042,3413:239,139,-43,0,0,0.160679 -11043,3414:130,140,-43,0,0,0.158845 -11044,3414:131,141,-43,0,0,0.14451 -11045,3414:132,142,-43,0,0,0.136327 -11046,3414:133,143,-43,0,0,0.144612 -11047,3414:134,144,-43,0,0,0.136569 -11048,3414:235,145,-43,0,0,0.127677 -11049,3414:236,146,-43,0,0,0.13383 -11050,3414:237,147,-43,0,0,0.136363 -11051,3414:238,148,-43,0,0,0.150754 -11052,3414:239,149,-43,0,0,0.172588 -11053,3415:130,150,-43,0,0,0.164582 -11054,3415:131,151,-43,0,0,0.171155 -11055,3415:132,152,-43,0,0,0.175706 -11056,3415:133,153,-43,0,0,0.174045 -11057,3415:134,154,-43,0,0,0.177319 -11058,3415:235,155,-43,0,0,0.174282 -11059,3415:236,156,-43,0,0,0.164597 -11060,3415:237,157,-43,0,0,0.16454 -11061,3415:238,158,-43,0,0,0.166399 -11062,3415:239,159,-43,0,0,0.168692 -11063,3416:130,160,-43,0,0,0.17443 -11064,3416:131,161,-43,0,0,0.180762 -11065,3416:132,162,-43,0,0,0.183902 -11066,3416:133,163,-43,0,0,0.179897 -11067,3416:134,164,-43,0,0,0.175766 -11068,3416:235,165,-43,0,0,0.176795 -11069,3416:236,166,-43,0,0,0.19004 -11070,3416:237,167,-43,0,0,0.184612 -11071,3416:238,168,-43,0,0,0.18186 -11072,3416:239,169,-43,0,0,0.179821 -11073,3417:130,170,-43,0,0,0.178235 -11074,3417:131,171,-43,0,0,0.176586 -11075,3417:132,172,-43,0,0,0.17678 -11076,3417:133,173,-43,0,0,0.179261 -11077,3417:134,174,-43,0,0,0.181616 -11078,3417:235,175,-43,0,0,0.171359 -11079,3417:236,176,-43,0,0,0.159422 -11080,3417:237,177,-43,0,0,0.164964 -11081,3417:238,178,-43,0,0,0.164922 -11082,3417:239,179,-43,0,0,0.167113 -11083,3418:130,180,-43,0,0,0.176825 -11084,5418:120,-180,-42,0,0,0.173352 -11085,5417:229,-179,-42,0,0,0.174031 -11086,5417:228,-178,-42,0,0,0.17587 -11087,5417:227,-177,-42,0,0,0.180503 -11088,5417:226,-176,-42,0,0,0.182028 -11089,5417:225,-175,-42,0,0,0.186569 -11090,5417:124,-174,-42,0,0,0.193014 -11091,5417:123,-173,-42,0,0,0.188102 -11092,5417:122,-172,-42,0,0,0.18534 -11093,5417:121,-171,-42,0,0,0.17917 -11094,5417:120,-170,-42,0,0,0.175959 -11095,5416:229,-169,-42,0,0,0.174934 -11096,5416:228,-168,-42,0,0,0.191945 -11097,5416:227,-167,-42,0,0,0.192439 -11098,5416:226,-166,-42,0,0,0.194266 -11099,5416:225,-165,-42,0,0,0.194669 -11100,5416:124,-164,-42,0,0,0.191022 -11101,5416:123,-163,-42,0,0,0.179548 -11102,5416:122,-162,-42,0,0,0.182319 -11103,5416:121,-161,-42,0,0,0.193993 -11104,5416:120,-160,-42,0,0,0.194491 -11105,5415:229,-159,-42,0,0,0.193511 -11106,5415:228,-158,-42,0,0,0.200253 -11107,5415:227,-157,-42,0,0,0.2082 -11108,5415:226,-156,-42,0,0,0.212346 -11109,5415:225,-155,-42,0,0,0.209916 -11110,5415:124,-154,-42,0,0,0.214087 -11111,5415:123,-153,-42,0,0,0.220746 -11112,5415:122,-152,-42,0,0,0.221738 -11113,5415:121,-151,-42,0,0,0.21909 -11114,5415:120,-150,-42,0,0,0.218212 -11115,5414:229,-149,-42,0,0,0.217302 -11116,5414:228,-148,-42,0,0,0.211214 -11117,5414:227,-147,-42,0,0,0.206107 -11118,5414:226,-146,-42,0,0,0.210598 -11119,5414:225,-145,-42,0,0,0.21381 -11120,5414:124,-144,-42,0,0,0.212827 -11121,5414:123,-143,-42,0,0,0.215369 -11122,5414:122,-142,-42,0,0,0.212638 -11123,5414:121,-141,-42,0,0,0.202019 -11124,5414:120,-140,-42,0,0,0.20187 -11125,5413:229,-139,-42,0,0,0.208777 -11126,5413:228,-138,-42,0,0,0.214381 -11127,5413:227,-137,-42,0,0,0.212054 -11128,5413:226,-136,-42,0,0,0.215091 -11129,5413:225,-135,-42,0,0,0.214415 -11130,5413:124,-134,-42,0,0,0.209337 -11131,5413:123,-133,-42,0,0,0.209082 -11132,5413:122,-132,-42,0,0,0.205318 -11133,5413:121,-131,-42,0,0,0.207506 -11134,5413:120,-130,-42,0,0,0.206377 -11135,5412:229,-129,-42,0,0,0.203164 -11136,5412:228,-128,-42,0,0,0.205519 -11137,5412:227,-127,-42,0,0,0.203681 -11138,5412:226,-126,-42,0,0,0.194894 -11139,5412:225,-125,-42,0,0,0.199349 -11140,5412:124,-124,-42,0,0,0.200714 -11141,5412:123,-123,-42,0,0,0.190578 -11142,5412:122,-122,-42,0,0,0.183763 -11143,5412:121,-121,-42,0,0,0.183056 -11144,5412:120,-120,-42,0,0,0.183594 -11145,5411:229,-119,-42,0,0,0.181738 -11146,5411:228,-118,-42,0,0,0.181478 -11147,5411:227,-117,-42,0,0,0.186351 -11148,5411:226,-116,-42,0,0,0.187053 -11149,5411:225,-115,-42,0,0,0.182396 -11150,5411:124,-114,-42,0,0,0.180306 -11151,5411:123,-113,-42,0,0,0.176601 -11152,5411:122,-112,-42,0,0,0.176362 -11153,5411:121,-111,-42,0,0,0.176183 -11154,5411:120,-110,-42,0,0,0.173367 -11155,5410:229,-109,-42,0,0,0.173942 -11156,5410:228,-108,-42,0,0,0.174075 -11157,5410:227,-107,-42,0,0,0.170922 -11158,5410:226,-106,-42,0,0,0.172354 -11159,5410:225,-105,-42,0,0,0.169862 -11160,5410:124,-104,-42,0,0,0.170079 -11161,5410:123,-103,-42,0,0,0.172383 -11162,5410:122,-102,-42,0,0,0.171608 -11163,5410:121,-101,-42,0,0,0.167958 -11164,5410:120,-100,-42,0,0,0.167714 -11165,5409:229,-99,-42,0,0,0.168677 -11166,5409:228,-98,-42,0,0,0.16803 -11167,5409:227,-97,-42,0,0,0.166071 -11168,5409:226,-96,-42,0,0,0.166998 -11169,5409:225,-95,-42,0,0,0.166285 -11170,5409:124,-94,-42,0,0,0.167915 -11171,5409:123,-93,-42,0,0,0.16803 -11172,5409:122,-92,-42,0,0,0.166684 -11173,5409:121,-91,-42,0,0,0.165276 -11174,5409:120,-90,-42,0,0,0.167456 -11175,5408:229,-89,-42,0,0,0.167084 -11176,5408:228,-88,-42,0,0,0.166584 -11177,5408:227,-87,-42,0,0,0.165673 -11178,5408:226,-86,-42,0,0,0.164696 -11179,5408:225,-85,-42,0,0,0.164625 -11180,5408:124,-84,-42,0,0,0.163709 -11181,5408:123,-83,-42,0,0,0.162908 -11182,5408:122,-82,-42,0,0,0.16267 -11183,5408:121,-81,-42,0,0,0.166399 -11184,5408:120,-80,-42,0,0,0.167385 -11185,5407:229,-79,-42,0,0,0.16423 -11186,5407:228,-78,-42,0,0,0.167843 -11187,5407:227,-77,-42,0,0,0.171316 -11188,5407:226,-76,-42,0,0,0.184087 -11189,5407:225,-75,-42,0,0,0.19554 -11190,5406:228,-68,-42,0,0,0.184953 -11191,5406:227,-67,-42,0,0,0.167528 -11192,5406:226,-66,-42,0,0,0.16361 -11193,5406:225,-65,-42,0,0,0.16361 -11194,5406:124,-64,-42,0,0,0.165347 -11195,5406:123,-63,-42,0,0,0.1661 -11196,5406:122,-62,-42,0,0,0.167786 -11197,5406:121,-61,-42,0,0,0.177679 -11198,5405:228,-58,-42,0,0,0.200417 -11199,5405:227,-57,-42,0,0,0.166798 -11200,5405:226,-56,-42,0,0,0.158653 -11201,5405:225,-55,-42,0,0,0.152964 -11202,5405:124,-54,-42,0,0,0.145631 -11203,5405:123,-53,-42,0,0,0.144434 -11204,5405:122,-52,-42,0,0,0.145849 -11205,5405:121,-51,-42,0,0,0.145926 -11206,5405:120,-50,-42,0,0,0.143144 -11207,5404:229,-49,-42,0,0,0.13426 -11208,5404:228,-48,-42,0,0,0.132644 -11209,5404:227,-47,-42,0,0,0.127289 -11210,5404:226,-46,-42,0,0,0.126696 -11211,5404:225,-45,-42,0,0,0.128699 -11212,5404:124,-44,-42,0,0,0.130077 -11213,5404:123,-43,-42,0,0,0.130612 -11214,5404:122,-42,-42,0,0,0.127152 -11215,5404:121,-41,-42,0,0,0.119533 -11216,5404:120,-40,-42,0,0,0.123303 -11217,5403:229,-39,-42,0,0,0.123181 -11218,5403:228,-38,-42,0,0,0.122716 -11219,5403:227,-37,-42,0,0,0.117058 -11220,5403:226,-36,-42,0,0,0.120859 -11221,5403:225,-35,-42,0,0,0.117824 -11222,5403:124,-34,-42,0,0,0.114648 -11223,5403:123,-33,-42,0,0,0.103905 -11224,5403:122,-32,-42,0,0,0.107824 -11225,5403:121,-31,-42,0,0,0.109066 -11226,5403:120,-30,-42,0,0,0.110179 -11227,5402:229,-29,-42,0,0,0.119317 -11228,5402:228,-28,-42,0,0,0.12588 -11229,5402:227,-27,-42,0,0,0.121361 -11230,5402:226,-26,-42,0,0,0.121844 -11231,5402:225,-25,-42,0,0,0.121449 -11232,5402:124,-24,-42,0,0,0.124161 -11233,5402:123,-23,-42,0,0,0.120891 -11234,5402:122,-22,-42,0,0,0.120979 -11235,5402:121,-21,-42,0,0,0.118649 -11236,5402:120,-20,-42,0,0,0.119392 -11237,5401:229,-19,-42,0,0,0.115905 -11238,5401:228,-18,-42,0,0,0.125655 -11239,5401:227,-17,-42,0,0,0.12974 -11240,5401:226,-16,-42,0,0,0.123358 -11241,5401:225,-15,-42,0,0,0.122682 -11242,5401:124,-14,-42,0,0,0.120782 -11243,5401:123,-13,-42,0,0,0.127769 -11244,5401:122,-12,-42,0,0,0.129798 -11245,5401:121,-11,-42,0,0,0.119934 -11246,5401:120,-10,-42,0,0,0.112835 -11247,5400:229,-9,-42,0,0,0.104653 -11248,5400:228,-8,-42,0,0,0.105097 -11249,5400:227,-7,-42,0,0,0.104355 -11250,5400:226,-6,-42,0,0,0.103819 -11251,5400:225,-5,-42,0,0,0.0984587 -11252,5400:124,-4,-42,0,0,0.0976589 -11253,5400:123,-3,-42,0,0,0.103428 -11254,5400:122,-2,-42,0,0,0.0985862 -11255,5400:121,-1,-42,0,0,0.0986227 -11256,3400:121,0,-42,0,0,0.0963628 -11257,3400:121,1,-42,0,0,0.0942546 -11258,3400:122,2,-42,0,0,0.0951352 -11259,3400:123,3,-42,0,0,0.0961304 -11260,3400:124,4,-42,0,0,0.0948616 -11261,3400:225,5,-42,0,0,0.0990713 -11262,3400:226,6,-42,0,0,0.114564 -11263,3400:227,7,-42,0,0,0.112804 -11264,3400:228,8,-42,0,0,0.108448 -11265,3400:229,9,-42,0,0,0.102205 -11266,3401:120,10,-42,0,0,0.107163 -11267,3401:121,11,-42,0,0,0.10823 -11268,3401:122,12,-42,0,0,0.106292 -11269,3401:123,13,-42,0,0,0.094747 -11270,3401:124,14,-42,0,0,0.0988881 -11271,3401:225,15,-42,0,0,0.0981399 -11272,3401:226,16,-42,0,0,0.0963898 -11273,3401:227,17,-42,0,0,0.0960144 -11274,3401:228,18,-42,0,0,0.0967753 -11275,3401:229,19,-42,0,0,0.0940442 -11276,3402:120,20,-42,0,0,0.0987781 -11277,3402:121,21,-42,0,0,0.0998444 -11278,3402:122,22,-42,0,0,0.0947117 -11279,3402:123,23,-42,0,0,0.0944478 -11280,3402:124,24,-42,0,0,0.101117 -11281,3402:225,25,-42,0,0,0.105175 -11282,3402:226,26,-42,0,0,0.104663 -11283,3402:227,27,-42,0,0,0.105834 -11284,3402:228,28,-42,0,0,0.100567 -11285,3402:229,29,-42,0,0,0.0969731 -11286,3403:120,30,-42,0,0,0.107134 -11287,3403:121,31,-42,0,0,0.118897 -11288,3403:122,32,-42,0,0,0.11302 -11289,3403:123,33,-42,0,0,0.106438 -11290,3403:124,34,-42,0,0,0.103485 -11291,3403:225,35,-42,0,0,0.102782 -11292,3403:226,36,-42,0,0,0.105475 -11293,3403:227,37,-42,0,0,0.10636 -11294,3403:228,38,-42,0,0,0.108002 -11295,3403:229,39,-42,0,0,0.103981 -11296,3404:120,40,-42,0,0,0.104615 -11297,3404:121,41,-42,0,0,0.104394 -11298,3404:122,42,-42,0,0,0.103047 -11299,3404:123,43,-42,0,0,0.105795 -11300,3404:124,44,-42,0,0,0.106644 -11301,3404:225,45,-42,0,0,0.109887 -11302,3404:226,46,-42,0,0,0.111546 -11303,3404:227,47,-42,0,0,0.109095 -11304,3404:228,48,-42,0,0,0.107468 -11305,3404:229,49,-42,0,0,0.112394 -11306,3405:120,50,-42,0,0,0.110058 -11307,3405:121,51,-42,0,0,0.110138 -11308,3405:122,52,-42,0,0,0.110491 -11309,3405:123,53,-42,0,0,0.110582 -11310,3405:124,54,-42,0,0,0.108498 -11311,3405:225,55,-42,0,0,0.106898 -11312,3405:226,56,-42,0,0,0.109526 -11313,3405:227,57,-42,0,0,0.112486 -11314,3405:228,58,-42,0,0,0.109636 -11315,3405:229,59,-42,0,0,0.107962 -11316,3406:120,60,-42,0,0,0.113712 -11317,3406:121,61,-42,0,0,0.113619 -11318,3406:122,62,-42,0,0,0.112281 -11319,3406:123,63,-42,0,0,0.111119 -11320,3406:124,64,-42,0,0,0.111862 -11321,3406:225,65,-42,0,0,0.112877 -11322,3406:226,66,-42,0,0,0.112086 -11323,3406:227,67,-42,0,0,0.111139 -11324,3406:228,68,-42,0,0,0.109335 -11325,3406:229,69,-42,0,0,0.106175 -11326,3407:120,70,-42,0,0,0.103723 -11327,3407:121,71,-42,0,0,0.102394 -11328,3407:122,72,-42,0,0,0.103446 -11329,3407:124,74,-42,0,0,0.10474 -11330,3407:225,75,-42,0,0,0.10378 -11331,3407:226,76,-42,0,0,0.101191 -11332,3407:227,77,-42,0,0,0.0959165 -11333,3407:228,78,-42,0,0,0.0929903 -11334,3407:229,79,-42,0,0,0.109385 -11335,3408:120,80,-42,0,0,0.123148 -11336,3408:121,81,-42,0,0,0.129057 -11337,3408:122,82,-42,0,0,0.122274 -11338,3408:123,83,-42,0,0,0.126879 -11339,3408:124,84,-42,0,0,0.129577 -11340,3408:225,85,-42,0,0,0.135579 -11341,3408:226,86,-42,0,0,0.129555 -11342,3408:227,87,-42,0,0,0.126367 -11343,3408:228,88,-42,0,0,0.130449 -11344,3408:229,89,-42,0,0,0.133914 -11345,3409:120,90,-42,0,0,0.143093 -11346,3409:121,91,-42,0,0,0.147572 -11347,3409:122,92,-42,0,0,0.135868 -11348,3409:123,93,-42,0,0,0.127209 -11349,3409:124,94,-42,0,0,0.123748 -11350,3409:225,95,-42,0,0,0.126084 -11351,3409:226,96,-42,0,0,0.12801 -11352,3409:227,97,-42,0,0,0.128688 -11353,3409:228,98,-42,0,0,0.132833 -11354,3409:229,99,-42,0,0,0.13122 -11355,3410:120,100,-42,0,0,0.127243 -11356,3410:121,101,-42,0,0,0.123059 -11357,3410:122,102,-42,0,0,0.122208 -11358,3410:123,103,-42,0,0,0.12276 -11359,3410:124,104,-42,0,0,0.121789 -11360,3410:225,105,-42,0,0,0.120488 -11361,3410:226,106,-42,0,0,0.117494 -11362,3410:227,107,-42,0,0,0.119231 -11363,3410:228,108,-42,0,0,0.121537 -11364,3410:229,109,-42,0,0,0.126129 -11365,3411:120,110,-42,0,0,0.12357 -11366,3411:121,111,-42,0,0,0.132408 -11367,3411:122,112,-42,0,0,0.132125 -11368,3411:123,113,-42,0,0,0.128331 -11369,3411:124,114,-42,0,0,0.134786 -11370,3411:225,115,-42,0,0,0.13863 -11371,3411:226,116,-42,0,0,0.15363 -11372,3411:227,117,-42,0,0,0.153978 -11373,3411:228,118,-42,0,0,0.144447 -11374,3411:229,119,-42,0,0,0.138372 -11375,3412:120,120,-42,0,0,0.141838 -11376,3412:121,121,-42,0,0,0.143169 -11377,3412:122,122,-42,0,0,0.145695 -11378,3412:123,123,-42,0,0,0.15032 -11379,3412:124,124,-42,0,0,0.150754 -11380,3412:225,125,-42,0,0,0.154635 -11381,3412:226,126,-42,0,0,0.15339 -11382,3412:227,127,-42,0,0,0.147818 -11383,3412:228,128,-42,0,0,0.175186 -11384,3412:229,129,-42,0,0,0.1797 -11385,3413:120,130,-42,0,0,0.178672 -11386,3413:121,131,-42,0,0,0.174711 -11387,3413:122,132,-42,0,0,0.169052 -11388,3413:123,133,-42,0,0,0.171797 -11389,3413:124,134,-42,0,0,0.175691 -11390,3413:225,135,-42,0,0,0.17529 -11391,3413:226,136,-42,0,0,0.174193 -11392,3413:227,137,-42,0,0,0.170108 -11393,3413:228,138,-42,0,0,0.161345 -11394,3413:229,139,-42,0,0,0.163695 -11395,3414:120,140,-42,0,0,0.158338 -11396,3414:121,141,-42,0,0,0.143649 -11397,3414:122,142,-42,0,0,0.143876 -11398,3414:123,143,-42,0,0,0.160388 -11399,3414:124,144,-42,0,0,0.159119 -11400,3414:225,145,-42,0,0,0.148817 -11401,3414:226,146,-42,0,0,0.137822 -11402,3414:227,147,-42,0,0,0.167399 -11403,3414:228,148,-42,0,0,0.187162 -11404,3414:229,149,-42,0,0,0.184149 -11405,3415:120,150,-42,0,0,0.165773 -11406,3415:121,151,-42,0,0,0.170457 -11407,3415:122,152,-42,0,0,0.172691 -11408,3415:123,153,-42,0,0,0.174134 -11409,3415:124,154,-42,0,0,0.182136 -11410,3415:225,155,-42,0,0,0.18258 -11411,3415:226,156,-42,0,0,0.17486 -11412,3415:227,157,-42,0,0,0.173574 -11413,3415:228,158,-42,0,0,0.182795 -11414,3415:229,159,-42,0,0,0.18401 -11415,3416:120,160,-42,0,0,0.18884 -11416,3416:121,161,-42,0,0,0.190657 -11417,3416:122,162,-42,0,0,0.191006 -11418,3416:123,163,-42,0,0,0.190325 -11419,3416:124,164,-42,0,0,0.185869 -11420,3416:225,165,-42,0,0,0.185511 -11421,3416:226,166,-42,0,0,0.192743 -11422,3416:227,167,-42,0,0,0.191754 -11423,3416:228,168,-42,0,0,0.189582 -11424,3416:229,169,-42,0,0,0.183163 -11425,3417:120,170,-42,0,0,0.17917 -11426,3417:121,171,-42,0,0,0.177574 -11427,3417:122,172,-42,0,0,0.17825 -11428,3417:123,173,-42,0,0,0.179019 -11429,3417:124,174,-42,0,0,0.180823 -11430,3417:225,175,-42,0,0,0.180018 -11431,3417:226,176,-42,0,0,0.164625 -11432,3417:227,177,-42,0,0,0.164442 -11433,3417:228,178,-42,0,0,0.167141 -11434,3417:229,179,-42,0,0,0.173441 -11435,3418:120,180,-42,0,0,0.173352 -11436,5418:110,-180,-41,0,0,0.173191 -11437,5417:219,-179,-41,0,0,0.171549 -11438,5417:218,-178,-41,0,0,0.17322 -11439,5417:217,-177,-41,0,0,0.190546 -11440,5417:216,-176,-41,0,0,0.192232 -11441,5417:215,-175,-41,0,0,0.188322 -11442,5417:114,-174,-41,0,0,0.194943 -11443,5417:113,-173,-41,0,0,0.19433 -11444,5417:112,-172,-41,0,0,0.200648 -11445,5417:111,-171,-41,0,0,0.191006 -11446,5417:110,-170,-41,0,0,0.190245 -11447,5416:219,-169,-41,0,0,0.187788 -11448,5416:218,-168,-41,0,0,0.18903 -11449,5416:217,-167,-41,0,0,0.183579 -11450,5416:216,-166,-41,0,0,0.188385 -11451,5416:215,-165,-41,0,0,0.187773 -11452,5416:114,-164,-41,0,0,0.199136 -11453,5416:113,-163,-41,0,0,0.213741 -11454,5416:112,-162,-41,0,0,0.195007 -11455,5416:111,-161,-41,0,0,0.196219 -11456,5416:110,-160,-41,0,0,0.202616 -11457,5415:219,-159,-41,0,0,0.213707 -11458,5415:218,-158,-41,0,0,0.22622 -11459,5415:217,-157,-41,0,0,0.232668 -11460,5415:216,-156,-41,0,0,0.232173 -11461,5415:215,-155,-41,0,0,0.225843 -11462,5415:114,-154,-41,0,0,0.213189 -11463,5415:113,-153,-41,0,0,0.218703 -11464,5415:112,-152,-41,0,0,0.230074 -11465,5415:111,-151,-41,0,0,0.223998 -11466,5415:110,-150,-41,0,0,0.222306 -11467,5414:219,-149,-41,0,0,0.217232 -11468,5414:218,-148,-41,0,0,0.2208 -11469,5414:217,-147,-41,0,0,0.226832 -11470,5414:216,-146,-41,0,0,0.227716 -11471,5414:215,-145,-41,0,0,0.226688 -11472,5414:114,-144,-41,0,0,0.225448 -11473,5414:113,-143,-41,0,0,0.221419 -11474,5414:112,-142,-41,0,0,0.218914 -11475,5414:111,-141,-41,0,0,0.221968 -11476,5414:110,-140,-41,0,0,0.226544 -11477,5413:219,-139,-41,0,0,0.227463 -11478,5413:218,-138,-41,0,0,0.224391 -11479,5413:217,-137,-41,0,0,0.222413 -11480,5413:216,-136,-41,0,0,0.223605 -11481,5413:215,-135,-41,0,0,0.221826 -11482,5413:114,-134,-41,0,0,0.220252 -11483,5413:113,-133,-41,0,0,0.219846 -11484,5413:112,-132,-41,0,0,0.217704 -11485,5413:111,-131,-41,0,0,0.216709 -11486,5413:110,-130,-41,0,0,0.216482 -11487,5412:219,-129,-41,0,0,0.216133 -11488,5412:218,-128,-41,0,0,0.215612 -11489,5412:217,-127,-41,0,0,0.213638 -11490,5412:216,-126,-41,0,0,0.201258 -11491,5412:215,-125,-41,0,0,0.201275 -11492,5412:114,-124,-41,0,0,0.204648 -11493,5412:113,-123,-41,0,0,0.205034 -11494,5412:112,-122,-41,0,0,0.193399 -11495,5412:111,-121,-41,0,0,0.196625 -11496,5412:110,-120,-41,0,0,0.191117 -11497,5411:219,-119,-41,0,0,0.191244 -11498,5411:218,-118,-41,0,0,0.194185 -11499,5411:217,-117,-41,0,0,0.192535 -11500,5411:216,-116,-41,0,0,0.192903 -11501,5411:215,-115,-41,0,0,0.194749 -11502,5411:114,-114,-41,0,0,0.195766 -11503,5411:113,-113,-41,0,0,0.192903 -11504,5411:112,-112,-41,0,0,0.187366 -11505,5411:111,-111,-41,0,0,0.181707 -11506,5411:110,-110,-41,0,0,0.182136 -11507,5410:219,-109,-41,0,0,0.182564 -11508,5410:218,-108,-41,0,0,0.178551 -11509,5410:217,-107,-41,0,0,0.180884 -11510,5410:216,-106,-41,0,0,0.180625 -11511,5410:215,-105,-41,0,0,0.181097 -11512,5410:114,-104,-41,0,0,0.182166 -11513,5410:113,-103,-41,0,0,0.179518 -11514,5410:112,-102,-41,0,0,0.176347 -11515,5410:111,-101,-41,0,0,0.176153 -11516,5410:110,-100,-41,0,0,0.177409 -11517,5409:219,-99,-41,0,0,0.176272 -11518,5409:218,-98,-41,0,0,0.173603 -11519,5409:217,-97,-41,0,0,0.171534 -11520,5409:216,-96,-41,0,0,0.172412 -11521,5409:215,-95,-41,0,0,0.171155 -11522,5409:114,-94,-41,0,0,0.17114 -11523,5409:113,-93,-41,0,0,0.172706 -11524,5409:112,-92,-41,0,0,0.174164 -11525,5409:111,-91,-41,0,0,0.172134 -11526,5409:110,-90,-41,0,0,0.171608 -11527,5408:219,-89,-41,0,0,0.170879 -11528,5408:218,-88,-41,0,0,0.169847 -11529,5408:217,-87,-41,0,0,0.169298 -11530,5408:216,-86,-41,0,0,0.169182 -11531,5408:215,-85,-41,0,0,0.168922 -11532,5408:114,-84,-41,0,0,0.168548 -11533,5408:113,-83,-41,0,0,0.167485 -11534,5408:112,-82,-41,0,0,0.174874 -11535,5408:111,-81,-41,0,0,0.1744 -11536,5408:110,-80,-41,0,0,0.177949 -11537,5407:219,-79,-41,0,0,0.179669 -11538,5407:218,-78,-41,0,0,0.175112 -11539,5407:217,-77,-41,0,0,0.179942 -11540,5407:216,-76,-41,0,0,0.194009 -11541,5407:215,-75,-41,0,0,0.210104 -11542,5406:219,-69,-41,0,0,0.204515 -11543,5406:218,-68,-41,0,0,0.183671 -11544,5406:217,-67,-41,0,0,0.180139 -11545,5406:216,-66,-41,0,0,0.178883 -11546,5406:215,-65,-41,0,0,0.17587 -11547,5406:114,-64,-41,0,0,0.174371 -11548,5406:113,-63,-41,0,0,0.174178 -11549,5406:112,-62,-41,0,0,0.176825 -11550,5406:111,-61,-41,0,0,0.189077 -11551,5406:110,-60,-41,0,0,0.195588 -11552,5405:219,-59,-41,0,0,0.194057 -11553,5405:218,-58,-41,0,0,0.18128 -11554,5405:217,-57,-41,0,0,0.169891 -11555,5405:216,-56,-41,0,0,0.162279 -11556,5405:215,-55,-41,0,0,0.157096 -11557,5405:114,-54,-41,0,0,0.148454 -11558,5405:113,-53,-41,0,0,0.146413 -11559,5405:112,-52,-41,0,0,0.148791 -11560,5405:111,-51,-41,0,0,0.149182 -11561,5405:110,-50,-41,0,0,0.140456 -11562,5404:219,-49,-41,0,0,0.137091 -11563,5404:218,-48,-41,0,0,0.135784 -11564,5404:217,-47,-41,0,0,0.140121 -11565,5404:216,-46,-41,0,0,0.138679 -11566,5404:215,-45,-41,0,0,0.137407 -11567,5404:114,-44,-41,0,0,0.137055 -11568,5404:113,-43,-41,0,0,0.138201 -11569,5404:112,-42,-41,0,0,0.135062 -11570,5404:111,-41,-41,0,0,0.131244 -11571,5404:110,-40,-41,0,0,0.125181 -11572,5403:219,-39,-41,0,0,0.139799 -11573,5403:218,-38,-41,0,0,0.145555 -11574,5403:217,-37,-41,0,0,0.146683 -11575,5403:216,-36,-41,0,0,0.141788 -11576,5403:215,-35,-41,0,0,0.130577 -11577,5403:114,-34,-41,0,0,0.131513 -11578,5403:113,-33,-41,0,0,0.133688 -11579,5403:112,-32,-41,0,0,0.127849 -11580,5403:111,-31,-41,0,0,0.130228 -11581,5403:110,-30,-41,0,0,0.133177 -11582,5402:219,-29,-41,0,0,0.131631 -11583,5402:218,-28,-41,0,0,0.134654 -11584,5402:217,-27,-41,0,0,0.131314 -11585,5402:216,-26,-41,0,0,0.126129 -11586,5402:215,-25,-41,0,0,0.130787 -11587,5402:114,-24,-41,0,0,0.131314 -11588,5402:113,-23,-41,0,0,0.133533 -11589,5402:112,-22,-41,0,0,0.133581 -11590,5402:111,-21,-41,0,0,0.126333 -11591,5402:110,-20,-41,0,0,0.12562 -11592,5401:219,-19,-41,0,0,0.125542 -11593,5401:218,-18,-41,0,0,0.124083 -11594,5401:217,-17,-41,0,0,0.135002 -11595,5401:216,-16,-41,0,0,0.131291 -11596,5401:215,-15,-41,0,0,0.129381 -11597,5401:114,-14,-41,0,0,0.133284 -11598,5401:113,-13,-41,0,0,0.139011 -11599,5401:112,-12,-41,0,0,0.135543 -11600,5401:111,-11,-41,0,0,0.13156 -11601,5401:110,-10,-41,0,0,0.129103 -11602,5400:219,-9,-41,0,0,0.11908 -11603,5400:218,-8,-41,0,0,0.107301 -11604,5400:217,-7,-41,0,0,0.106839 -11605,5400:216,-6,-41,0,0,0.101913 -11606,5400:215,-5,-41,0,0,0.101781 -11607,5400:114,-4,-41,0,0,0.103523 -11608,5400:113,-3,-41,0,0,0.11121 -11609,5400:112,-2,-41,0,0,0.107242 -11610,5400:111,-1,-41,0,0,0.109255 -11611,3400:111,0,-41,0,0,0.11175 -11612,3400:111,1,-41,0,0,0.102886 -11613,3400:112,2,-41,0,0,0.102715 -11614,3400:113,3,-41,0,0,0.103332 -11615,3400:114,4,-41,0,0,0.101117 -11616,3400:215,5,-41,0,0,0.107104 -11617,3400:216,6,-41,0,0,0.122329 -11618,3400:217,7,-41,0,0,0.108796 -11619,3400:218,8,-41,0,0,0.112086 -11620,3400:219,9,-41,0,0,0.115852 -11621,3401:110,10,-41,0,0,0.115464 -11622,3401:111,11,-41,0,0,0.109405 -11623,3401:112,12,-41,0,0,0.111018 -11624,3401:113,13,-41,0,0,0.108032 -11625,3401:114,14,-41,0,0,0.101631 -11626,3401:215,15,-41,0,0,0.104644 -11627,3401:216,16,-41,0,0,0.113733 -11628,3401:217,17,-41,0,0,0.113702 -11629,3401:218,18,-41,0,0,0.113992 -11630,3401:219,19,-41,0,0,0.103848 -11631,3402:110,20,-41,0,0,0.101014 -11632,3402:111,21,-41,0,0,0.104653 -11633,3402:112,22,-41,0,0,0.114658 -11634,3402:113,23,-41,0,0,0.102526 -11635,3402:114,24,-41,0,0,0.101285 -11636,3402:215,25,-41,0,0,0.106869 -11637,3402:216,26,-41,0,0,0.104211 -11638,3402:217,27,-41,0,0,0.117259 -11639,3402:218,28,-41,0,0,0.127323 -11640,3402:219,29,-41,0,0,0.110602 -11641,3403:110,30,-41,0,0,0.12088 -11642,3403:111,31,-41,0,0,0.116338 -11643,3403:112,32,-41,0,0,0.109166 -11644,3403:113,33,-41,0,0,0.10502 -11645,3403:114,34,-41,0,0,0.106301 -11646,3403:215,35,-41,0,0,0.110572 -11647,3403:216,36,-41,0,0,0.111403 -11648,3403:217,37,-41,0,0,0.107932 -11649,3403:218,38,-41,0,0,0.110865 -11650,3403:219,39,-41,0,0,0.115884 -11651,3404:110,40,-41,0,0,0.108736 -11652,3404:111,41,-41,0,0,0.108597 -11653,3404:112,42,-41,0,0,0.109887 -11654,3404:113,43,-41,0,0,0.110471 -11655,3404:114,44,-41,0,0,0.115348 -11656,3404:215,45,-41,0,0,0.117121 -11657,3404:216,46,-41,0,0,0.116274 -11658,3404:217,47,-41,0,0,0.112036 -11659,3404:218,48,-41,0,0,0.11033 -11660,3404:219,49,-41,0,0,0.114637 -11661,3405:110,50,-41,0,0,0.111801 -11662,3405:111,51,-41,0,0,0.113216 -11663,3405:112,52,-41,0,0,0.114242 -11664,3405:113,53,-41,0,0,0.114335 -11665,3405:114,54,-41,0,0,0.115516 -11666,3405:215,55,-41,0,0,0.113495 -11667,3405:216,56,-41,0,0,0.110653 -11668,3405:217,57,-41,0,0,0.114387 -11669,3405:218,58,-41,0,0,0.11224 -11670,3405:219,59,-41,0,0,0.119155 -11671,3406:110,60,-41,0,0,0.118509 -11672,3406:111,61,-41,0,0,0.117398 -11673,3406:112,62,-41,0,0,0.116909 -11674,3406:113,63,-41,0,0,0.115632 -11675,3406:114,64,-41,0,0,0.113909 -11676,3406:215,65,-41,0,0,0.11301 -11677,3406:216,66,-41,0,0,0.111719 -11678,3406:217,67,-41,0,0,0.108906 -11679,3406:218,68,-41,0,0,0.109085 -11680,3406:219,69,-41,0,0,0.109185 -11681,3407:110,70,-41,0,0,0.109095 -11682,3407:111,71,-41,0,0,0.107114 -11683,3407:112,72,-41,0,0,0.107282 -11684,3407:114,74,-41,0,0,0.107291 -11685,3407:215,75,-41,0,0,0.103123 -11686,3407:216,76,-41,0,0,0.0969009 -11687,3407:217,77,-41,0,0,0.11033 -11688,3407:218,78,-41,0,0,0.113826 -11689,3407:219,79,-41,0,0,0.11034 -11690,3408:110,80,-41,0,0,0.141851 -11691,3408:111,81,-41,0,0,0.14493 -11692,3408:112,82,-41,0,0,0.143131 -11693,3408:113,83,-41,0,0,0.138152 -11694,3408:114,84,-41,0,0,0.141976 -11695,3408:215,85,-41,0,0,0.14649 -11696,3408:216,86,-41,0,0,0.144828 -11697,3408:217,87,-41,0,0,0.141214 -11698,3408:218,88,-41,0,0,0.143409 -11699,3408:219,89,-41,0,0,0.155133 -11700,3409:110,90,-41,0,0,0.152911 -11701,3409:111,91,-41,0,0,0.161137 -11702,3409:112,92,-41,0,0,0.153444 -11703,3409:113,93,-41,0,0,0.14094 -11704,3409:114,94,-41,0,0,0.146914 -11705,3409:215,95,-41,0,0,0.151399 -11706,3409:216,96,-41,0,0,0.147779 -11707,3409:217,97,-41,0,0,0.144485 -11708,3409:218,98,-41,0,0,0.140828 -11709,3409:219,99,-41,0,0,0.138323 -11710,3410:110,100,-41,0,0,0.138789 -11711,3410:111,101,-41,0,0,0.139121 -11712,3410:112,102,-41,0,0,0.137176 -11713,3410:113,103,-41,0,0,0.129473 -11714,3410:114,104,-41,0,0,0.127918 -11715,3410:215,105,-41,0,0,0.130566 -11716,3410:216,106,-41,0,0,0.127929 -11717,3410:217,107,-41,0,0,0.123815 -11718,3410:218,108,-41,0,0,0.134415 -11719,3410:219,109,-41,0,0,0.134403 -11720,3411:110,110,-41,0,0,0.129172 -11721,3411:111,111,-41,0,0,0.129462 -11722,3411:112,112,-41,0,0,0.132952 -11723,3411:113,113,-41,0,0,0.139207 -11724,3411:114,114,-41,0,0,0.141988 -11725,3411:215,115,-41,0,0,0.147379 -11726,3411:216,116,-41,0,0,0.154206 -11727,3411:217,117,-41,0,0,0.148401 -11728,3411:218,118,-41,0,0,0.142879 -11729,3411:219,119,-41,0,0,0.143396 -11730,3412:110,120,-41,0,0,0.148376 -11731,3412:111,121,-41,0,0,0.163259 -11732,3412:112,122,-41,0,0,0.168533 -11733,3412:113,123,-41,0,0,0.166143 -11734,3412:114,124,-41,0,0,0.1579 -11735,3412:215,125,-41,0,0,0.158201 -11736,3412:216,126,-41,0,0,0.159601 -11737,3412:217,127,-41,0,0,0.170021 -11738,3412:218,128,-41,0,0,0.185062 -11739,3412:219,129,-41,0,0,0.17917 -11740,3413:110,130,-41,0,0,0.178235 -11741,3413:111,131,-41,0,0,0.177769 -11742,3413:112,132,-41,0,0,0.177019 -11743,3413:113,133,-41,0,0,0.174578 -11744,3413:114,134,-41,0,0,0.173868 -11745,3413:215,135,-41,0,0,0.171432 -11746,3413:216,136,-41,0,0,0.168289 -11747,3413:217,137,-41,0,0,0.16368 -11748,3413:218,138,-41,0,0,0.162447 -11749,3413:219,139,-41,0,0,0.171432 -11750,3414:110,140,-41,0,0,0.172002 -11751,3414:111,141,-41,0,0,0.197926 -11752,3414:112,142,-41,0,0,0.2025 -11753,3414:113,143,-41,0,0,0.200088 -11754,3414:114,144,-41,0,0,0.178657 -11755,3414:215,145,-41,0,0,0.168663 -11756,3414:216,146,-41,0,0,0.180412 -11757,3414:217,147,-41,0,0,0.192823 -11758,3414:218,148,-41,0,0,0.198481 -11759,3414:219,149,-41,0,0,0.190721 -11760,3415:110,150,-41,0,0,0.186756 -11761,3415:111,151,-41,0,0,0.17272 -11762,3415:112,152,-41,0,0,0.172823 -11763,3415:113,153,-41,0,0,0.189771 -11764,3415:114,154,-41,0,0,0.217599 -11765,3415:215,155,-41,0,0,0.217827 -11766,3415:216,156,-41,0,0,0.206208 -11767,3415:217,157,-41,0,0,0.180184 -11768,3415:218,158,-41,0,0,0.196446 -11769,3415:219,159,-41,0,0,0.204749 -11770,3416:110,160,-41,0,0,0.198907 -11771,3416:111,161,-41,0,0,0.200763 -11772,3416:112,162,-41,0,0,0.201903 -11773,3416:113,163,-41,0,0,0.191913 -11774,3416:114,164,-41,0,0,0.191388 -11775,3416:215,165,-41,0,0,0.193575 -11776,3416:216,166,-41,0,0,0.196738 -11777,3416:217,167,-41,0,0,0.194314 -11778,3416:218,168,-41,0,0,0.192583 -11779,3416:219,169,-41,0,0,0.186881 -11780,3417:110,170,-41,0,0,0.185263 -11781,3417:111,171,-41,0,0,0.182626 -11782,3417:112,172,-41,0,0,0.181524 -11783,3417:113,173,-41,0,0,0.181829 -11784,3417:114,174,-41,0,0,0.181799 -11785,3417:215,175,-41,0,0,0.182335 -11786,3417:216,176,-41,0,0,0.177109 -11787,3417:217,177,-41,0,0,0.172794 -11788,3417:218,178,-41,0,0,0.172765 -11789,3417:219,179,-41,0,0,0.173603 -11790,3418:110,180,-41,0,0,0.173191 -11791,5418:100,-180,-40,0,0,0.180336 -11792,5417:209,-179,-40,0,0,0.173706 -11793,5417:208,-178,-40,0,0,0.177379 -11794,5417:207,-177,-40,0,0,0.200533 -11795,5417:206,-176,-40,0,0,0.193752 -11796,5417:205,-175,-40,0,0,0.191467 -11797,5417:104,-174,-40,0,0,0.189518 -11798,5417:103,-173,-40,0,0,0.191801 -11799,5417:102,-172,-40,0,0,0.209984 -11800,5417:101,-171,-40,0,0,0.210206 -11801,5417:100,-170,-40,0,0,0.206596 -11802,5416:209,-169,-40,0,0,0.219002 -11803,5416:208,-168,-40,0,0,0.225466 -11804,5416:207,-167,-40,0,0,0.227048 -11805,5416:206,-166,-40,0,0,0.214883 -11806,5416:205,-165,-40,0,0,0.198498 -11807,5416:104,-164,-40,0,0,0.208675 -11808,5416:103,-163,-40,0,0,0.218984 -11809,5416:102,-162,-40,0,0,0.220764 -11810,5416:101,-161,-40,0,0,0.218826 -11811,5416:100,-160,-40,0,0,0.22133 -11812,5415:209,-159,-40,0,0,0.225968 -11813,5415:208,-158,-40,0,0,0.233826 -11814,5415:207,-157,-40,0,0,0.237844 -11815,5415:206,-156,-40,0,0,0.230875 -11816,5415:205,-155,-40,0,0,0.23042 -11817,5415:104,-154,-40,0,0,0.227355 -11818,5415:103,-153,-40,0,0,0.229873 -11819,5415:102,-152,-40,0,0,0.2346 -11820,5415:101,-151,-40,0,0,0.233771 -11821,5415:100,-150,-40,0,0,0.23632 -11822,5414:209,-149,-40,0,0,0.235431 -11823,5414:208,-148,-40,0,0,0.233035 -11824,5414:207,-147,-40,0,0,0.233587 -11825,5414:206,-146,-40,0,0,0.235931 -11826,5414:205,-145,-40,0,0,0.234213 -11827,5414:104,-144,-40,0,0,0.232797 -11828,5414:103,-143,-40,0,0,0.230912 -11829,5414:102,-142,-40,0,0,0.231022 -11830,5414:101,-141,-40,0,0,0.235505 -11831,5414:100,-140,-40,0,0,0.234286 -11832,5413:209,-139,-40,0,0,0.231551 -11833,5413:208,-138,-40,0,0,0.230912 -11834,5413:207,-137,-40,0,0,0.229601 -11835,5413:206,-136,-40,0,0,0.228132 -11836,5413:205,-135,-40,0,0,0.227662 -11837,5413:104,-134,-40,0,0,0.225861 -11838,5413:103,-133,-40,0,0,0.223498 -11839,5413:102,-132,-40,0,0,0.223498 -11840,5413:101,-131,-40,0,0,0.222217 -11841,5413:100,-130,-40,0,0,0.222057 -11842,5412:209,-129,-40,0,0,0.221968 -11843,5412:208,-128,-40,0,0,0.221383 -11844,5412:207,-127,-40,0,0,0.220499 -11845,5412:206,-126,-40,0,0,0.220658 -11846,5412:205,-125,-40,0,0,0.218405 -11847,5412:104,-124,-40,0,0,0.213931 -11848,5412:103,-123,-40,0,0,0.205436 -11849,5412:102,-122,-40,0,0,0.204766 -11850,5412:101,-121,-40,0,0,0.204398 -11851,5412:100,-120,-40,0,0,0.203364 -11852,5411:209,-119,-40,0,0,0.199169 -11853,5411:208,-118,-40,0,0,0.200846 -11854,5411:207,-117,-40,0,0,0.197796 -11855,5411:206,-116,-40,0,0,0.19858 -11856,5411:205,-115,-40,0,0,0.203031 -11857,5411:104,-114,-40,0,0,0.202799 -11858,5411:103,-113,-40,0,0,0.199284 -11859,5411:102,-112,-40,0,0,0.192599 -11860,5411:101,-111,-40,0,0,0.186055 -11861,5411:100,-110,-40,0,0,0.189487 -11862,5410:209,-109,-40,0,0,0.19034 -11863,5410:208,-108,-40,0,0,0.183948 -11864,5410:207,-107,-40,0,0,0.187272 -11865,5410:206,-106,-40,0,0,0.19034 -11866,5410:205,-105,-40,0,0,0.187131 -11867,5410:104,-104,-40,0,0,0.186866 -11868,5410:103,-103,-40,0,0,0.183271 -11869,5410:102,-102,-40,0,0,0.181723 -11870,5410:101,-101,-40,0,0,0.184319 -11871,5410:100,-100,-40,0,0,0.183733 -11872,5409:209,-99,-40,0,0,0.180412 -11873,5409:208,-98,-40,0,0,0.179669 -11874,5409:207,-97,-40,0,0,0.177529 -11875,5409:206,-96,-40,0,0,0.1769 -11876,5409:205,-95,-40,0,0,0.175498 -11877,5409:104,-94,-40,0,0,0.177934 -11878,5409:103,-93,-40,0,0,0.179049 -11879,5409:102,-92,-40,0,0,0.177364 -11880,5409:101,-91,-40,0,0,0.176795 -11881,5409:100,-90,-40,0,0,0.175989 -11882,5408:209,-89,-40,0,0,0.176123 -11883,5408:208,-88,-40,0,0,0.176108 -11884,5408:207,-87,-40,0,0,0.176975 -11885,5408:206,-86,-40,0,0,0.173441 -11886,5408:205,-85,-40,0,0,0.174578 -11887,5408:104,-84,-40,0,0,0.173323 -11888,5408:103,-83,-40,0,0,0.17446 -11889,5408:102,-82,-40,0,0,0.17911 -11890,5408:101,-81,-40,0,0,0.185604 -11891,5408:100,-80,-40,0,0,0.185511 -11892,5407:209,-79,-40,0,0,0.184937 -11893,5407:208,-78,-40,0,0,0.182641 -11894,5407:207,-77,-40,0,0,0.183102 -11895,5407:206,-76,-40,0,0,0.20197 -11896,5406:207,-67,-40,0,0,0.206074 -11897,5406:206,-66,-40,0,0,0.195621 -11898,5406:205,-65,-40,0,0,0.190087 -11899,5406:104,-64,-40,0,0,0.185465 -11900,5406:103,-63,-40,0,0,0.186912 -11901,5406:102,-62,-40,0,0,0.18671 -11902,5406:101,-61,-40,0,0,0.197861 -11903,5406:100,-60,-40,0,0,0.196203 -11904,5405:209,-59,-40,0,0,0.188526 -11905,5405:208,-58,-40,0,0,0.182197 -11906,5405:207,-57,-40,0,0,0.174386 -11907,5405:206,-56,-40,0,0,0.166755 -11908,5405:205,-55,-40,0,0,0.16072 -11909,5405:104,-54,-40,0,0,0.149822 -11910,5405:103,-53,-40,0,0,0.152512 -11911,5405:102,-52,-40,0,0,0.153364 -11912,5405:101,-51,-40,0,0,0.15749 -11913,5405:100,-50,-40,0,0,0.144332 -11914,5404:209,-49,-40,0,0,0.146696 -11915,5404:208,-48,-40,0,0,0.144421 -11916,5404:207,-47,-40,0,0,0.146195 -11917,5404:206,-46,-40,0,0,0.153791 -11918,5404:205,-45,-40,0,0,0.149299 -11919,5404:104,-44,-40,0,0,0.152127 -11920,5404:103,-43,-40,0,0,0.144802 -11921,5404:102,-42,-40,0,0,0.139134 -11922,5404:101,-41,-40,0,0,0.134559 -11923,5404:100,-40,-40,0,0,0.132609 -11924,5403:209,-39,-40,0,0,0.142439 -11925,5403:208,-38,-40,0,0,0.146323 -11926,5403:207,-37,-40,0,0,0.14658 -11927,5403:206,-36,-40,0,0,0.141064 -11928,5403:205,-35,-40,0,0,0.140146 -11929,5403:104,-34,-40,0,0,0.140295 -11930,5403:103,-33,-40,0,0,0.138152 -11931,5403:102,-32,-40,0,0,0.137712 -11932,5403:101,-31,-40,0,0,0.138655 -11933,5403:100,-30,-40,0,0,0.138348 -11934,5402:209,-29,-40,0,0,0.138458 -11935,5402:208,-28,-40,0,0,0.143952 -11936,5402:207,-27,-40,0,0,0.141763 -11937,5402:206,-26,-40,0,0,0.13588 -11938,5402:205,-25,-40,0,0,0.139097 -11939,5402:104,-24,-40,0,0,0.133486 -11941,5402:102,-22,-40,0,0,0.143712 -11942,5402:101,-21,-40,0,0,0.142289 -11943,5402:100,-20,-40,0,0,0.143333 -11944,5401:209,-19,-40,0,0,0.142577 -11945,5401:208,-18,-40,0,0,0.136788 -11946,5401:207,-17,-40,0,0,0.134846 -11947,5401:206,-16,-40,0,0,0.147766 -11948,5401:205,-15,-40,0,0,0.152671 -11949,5401:104,-14,-40,0,0,0.145414 -11950,5401:103,-13,-40,0,0,0.144041 -11951,5401:102,-12,-40,0,0,0.136654 -11952,5401:101,-11,-40,0,0,0.126152 -11953,5401:100,-10,-40,0,0,0.126708 -11954,5400:209,-9,-40,0,0,0.12223 -11955,5400:208,-8,-40,0,0,0.114481 -11956,5400:207,-7,-40,0,0,0.115768 -11957,5400:206,-6,-40,0,0,0.117643 -11958,5400:205,-5,-40,0,0,0.12287 -11959,5400:104,-4,-40,0,0,0.128907 -11960,5400:103,-3,-40,0,0,0.127494 -11961,5400:102,-2,-40,0,0,0.118606 -11962,5400:101,-1,-40,0,0,0.125847 -11963,3400:101,0,-40,0,0,0.143927 -11964,3400:101,1,-40,0,0,0.151756 -11965,3400:102,2,-40,0,0,0.144663 -11966,3400:103,3,-40,0,0,0.131877 -11967,3400:104,4,-40,0,0,0.123904 -11968,3400:205,5,-40,0,0,0.12027 -11969,3400:206,6,-40,0,0,0.125971 -11970,3400:207,7,-40,0,0,0.127186 -11971,3400:208,8,-40,0,0,0.112128 -11972,3400:209,9,-40,0,0,0.121296 -11973,3401:100,10,-40,0,0,0.122119 -11974,3401:101,11,-40,0,0,0.124519 -11975,3401:102,12,-40,0,0,0.124765 -11976,3401:103,13,-40,0,0,0.124664 -11977,3401:104,14,-40,0,0,0.119944 -11978,3401:205,15,-40,0,0,0.121801 -11979,3401:206,16,-40,0,0,0.136122 -11980,3401:207,17,-40,0,0,0.133711 -11981,3401:208,18,-40,0,0,0.117921 -11982,3401:209,19,-40,0,0,0.118413 -11983,3402:100,20,-40,0,0,0.126039 -11984,3402:101,21,-40,0,0,0.119501 -11985,3402:102,22,-40,0,0,0.123871 -11986,3402:103,23,-40,0,0,0.114961 -11987,3402:104,24,-40,0,0,0.118918 -11988,3402:205,25,-40,0,0,0.123971 -11989,3402:206,26,-40,0,0,0.120738 -11990,3402:207,27,-40,0,0,0.116475 -11991,3402:208,28,-40,0,0,0.126492 -11992,3402:209,29,-40,0,0,0.119619 -11993,3403:100,30,-40,0,0,0.11538 -11994,3403:101,31,-40,0,0,0.11744 -11995,3403:102,32,-40,0,0,0.123037 -11996,3403:103,33,-40,0,0,0.121658 -11997,3403:104,34,-40,0,0,0.114106 -11998,3403:205,35,-40,0,0,0.12111 -11999,3403:206,36,-40,0,0,0.120096 -12000,3403:207,37,-40,0,0,0.115495 -12001,3403:208,38,-40,0,0,0.110481 -12002,3403:209,39,-40,0,0,0.119544 -12003,3404:100,40,-40,0,0,0.126231 -12004,3404:101,41,-40,0,0,0.125655 -12005,3404:102,42,-40,0,0,0.122054 -12006,3404:103,43,-40,0,0,0.119641 -12007,3404:104,44,-40,0,0,0.11909 -12008,3404:205,45,-40,0,0,0.117121 -12009,3404:206,46,-40,0,0,0.114856 -12010,3404:207,47,-40,0,0,0.11334 -12011,3404:208,48,-40,0,0,0.124418 -12012,3404:209,49,-40,0,0,0.125824 -12013,3405:100,50,-40,0,0,0.118918 -12014,3405:101,51,-40,0,0,0.119274 -12015,3405:102,52,-40,0,0,0.119522 -12016,3405:103,53,-40,0,0,0.11881 -12017,3405:104,54,-40,0,0,0.11743 -12018,3405:205,55,-40,0,0,0.119684 -12019,3405:206,56,-40,0,0,0.119188 -12020,3405:207,57,-40,0,0,0.117942 -12021,3405:208,58,-40,0,0,0.11881 -12022,3405:209,59,-40,0,0,0.120053 -12023,3406:100,60,-40,0,0,0.121537 -12024,3406:101,61,-40,0,0,0.12234 -12025,3406:102,62,-40,0,0,0.119977 -12026,3406:103,63,-40,0,0,0.116179 -12027,3406:104,64,-40,0,0,0.115642 -12028,3406:205,65,-40,0,0,0.113774 -12029,3406:206,66,-40,0,0,0.112712 -12030,3406:207,67,-40,0,0,0.114606 -12031,3406:208,68,-40,0,0,0.11538 -12032,3406:209,69,-40,0,0,0.117622 -12033,3407:100,70,-40,0,0,0.115212 -12034,3407:101,71,-40,0,0,0.111485 -12035,3407:102,72,-40,0,0,0.110855 -12036,3407:104,74,-40,0,0,0.107262 -12037,3407:205,75,-40,0,0,0.11364 -12038,3407:206,76,-40,0,0,0.1301 -12039,3407:207,77,-40,0,0,0.138201 -12040,3407:208,78,-40,0,0,0.140245 -12041,3407:209,79,-40,0,0,0.133747 -12042,3408:100,80,-40,0,0,0.14567 -12043,3408:101,81,-40,0,0,0.142502 -12044,3408:102,82,-40,0,0,0.138262 -12045,3408:103,83,-40,0,0,0.155308 -12046,3408:104,84,-40,0,0,0.154407 -12047,3408:205,85,-40,0,0,0.144028 -12048,3408:206,86,-40,0,0,0.140418 -12049,3408:207,87,-40,0,0,0.141413 -12050,3408:208,88,-40,0,0,0.166656 -12051,3408:209,89,-40,0,0,0.174282 -12052,3409:100,90,-40,0,0,0.157791 -12053,3409:101,91,-40,0,0,0.159587 -12054,3409:102,92,-40,0,0,0.157395 -12055,3409:103,93,-40,0,0,0.155483 -12056,3409:104,94,-40,0,0,0.159822 -12057,3409:205,95,-40,0,0,0.159381 -12058,3409:206,96,-40,0,0,0.152871 -12059,3409:207,97,-40,0,0,0.153084 -12060,3409:208,98,-40,0,0,0.153871 -12061,3409:209,99,-40,0,0,0.151413 -12062,3410:100,100,-40,0,0,0.138949 -12063,3410:101,101,-40,0,0,0.135422 -12064,3410:102,102,-40,0,0,0.135122 -12065,3410:103,103,-40,0,0,0.136231 -12066,3410:104,104,-40,0,0,0.139725 -12067,3410:205,105,-40,0,0,0.142452 -12068,3410:206,106,-40,0,0,0.140629 -12069,3410:207,107,-40,0,0,0.132278 -12070,3410:208,108,-40,0,0,0.139097 -12071,3410:209,109,-40,0,0,0.140022 -12072,3411:100,110,-40,0,0,0.138961 -12073,3411:101,111,-40,0,0,0.142038 -12074,3411:102,112,-40,0,0,0.139787 -12075,3411:103,113,-40,0,0,0.148414 -12076,3411:104,114,-40,0,0,0.151836 -12077,3411:205,115,-40,0,0,0.152353 -12078,3411:206,116,-40,0,0,0.153551 -12079,3411:207,117,-40,0,0,0.153257 -12080,3411:208,118,-40,0,0,0.159037 -12081,3411:209,119,-40,0,0,0.161151 -12082,3412:100,120,-40,0,0,0.166584 -12083,3412:101,121,-40,0,0,0.186226 -12084,3412:102,122,-40,0,0,0.178853 -12085,3412:103,123,-40,0,0,0.175052 -12086,3412:104,124,-40,0,0,0.170864 -12087,3412:205,125,-40,0,0,0.168922 -12088,3412:206,126,-40,0,0,0.166043 -12089,3412:207,127,-40,0,0,0.184907 -12090,3412:208,128,-40,0,0,0.187397 -12091,3412:209,129,-40,0,0,0.187867 -12092,3413:100,130,-40,0,0,0.188243 -12093,3413:101,131,-40,0,0,0.19161 -12094,3413:102,132,-40,0,0,0.192599 -12095,3413:103,133,-40,0,0,0.189187 -12096,3413:104,134,-40,0,0,0.181906 -12097,3413:205,135,-40,0,0,0.188118 -12098,3413:206,136,-40,0,0,0.191181 -12099,3413:207,137,-40,0,0,0.192791 -12100,3413:208,138,-40,0,0,0.183563 -12101,3413:209,139,-40,0,0,0.170587 -12102,3414:100,140,-40,0,0,0.187491 -12103,3414:101,141,-40,0,0,0.199202 -12104,3414:102,142,-40,0,0,0.197421 -12105,3414:103,143,-40,0,0,0.186523 -12106,3414:104,144,-40,0,0,0.170907 -12107,3414:205,145,-40,0,0,0.178325 -12108,3414:206,146,-40,0,0,0.183333 -12109,3414:207,147,-40,0,0,0.198498 -12110,3414:208,148,-40,0,0,0.205067 -12111,3414:209,149,-40,0,0,0.203364 -12112,3415:100,150,-40,0,0,0.196349 -12113,3415:101,151,-40,0,0,0.191181 -12114,3415:102,152,-40,0,0,0.187084 -12115,3415:103,153,-40,0,0,0.215977 -12116,3415:104,154,-40,0,0,0.211094 -12117,3415:205,155,-40,0,0,0.207794 -12118,3415:206,156,-40,0,0,0.215838 -12119,3415:207,157,-40,0,0,0.209933 -12120,3415:208,158,-40,0,0,0.208031 -12121,3415:209,159,-40,0,0,0.205788 -12122,3416:100,160,-40,0,0,0.203314 -12123,3416:101,161,-40,0,0,0.202799 -12124,3416:102,162,-40,0,0,0.200846 -12125,3416:103,163,-40,0,0,0.200203 -12126,3416:104,164,-40,0,0,0.200598 -12127,3416:205,165,-40,0,0,0.198383 -12128,3416:206,166,-40,0,0,0.202019 -12129,3416:207,167,-40,0,0,0.195362 -12130,3416:208,168,-40,0,0,0.193624 -12131,3416:209,169,-40,0,0,0.190451 -12132,3417:100,170,-40,0,0,0.190467 -12133,3417:101,171,-40,0,0,0.189045 -12134,3417:102,172,-40,0,0,0.187569 -12135,3417:103,173,-40,0,0,0.185884 -12136,3417:104,174,-40,0,0,0.184783 -12137,3417:205,175,-40,0,0,0.184535 -12138,3417:206,176,-40,0,0,0.182396 -12139,3417:207,177,-40,0,0,0.179593 -12140,3417:208,178,-40,0,0,0.179987 -12141,3417:209,179,-40,0,0,0.180033 -12142,3418:100,180,-40,0,0,0.180336 -12143,5318:390,-180,-39,0,0,0.18531 -12144,5317:499,-179,-39,0,0,0.177694 -12145,5317:498,-178,-39,0,0,0.179336 -12146,5317:497,-177,-39,0,0,0.204515 -12147,5317:496,-176,-39,0,0,0.211934 -12148,5317:495,-175,-39,0,0,0.209711 -12149,5317:394,-174,-39,0,0,0.205301 -12150,5317:393,-173,-39,0,0,0.216186 -12151,5317:392,-172,-39,0,0,0.224856 -12152,5317:391,-171,-39,0,0,0.218072 -12153,5317:390,-170,-39,0,0,0.216952 -12154,5316:499,-169,-39,0,0,0.222644 -12155,5316:498,-168,-39,0,0,0.228222 -12156,5316:497,-167,-39,0,0,0.227138 -12157,5316:496,-166,-39,0,0,0.222608 -12158,5316:495,-165,-39,0,0,0.216848 -12159,5316:394,-164,-39,0,0,0.221614 -12160,5316:393,-163,-39,0,0,0.224087 -12161,5316:392,-162,-39,0,0,0.232999 -12162,5316:391,-161,-39,0,0,0.24431 -12163,5316:390,-160,-39,0,0,0.240367 -12164,5315:499,-159,-39,0,0,0.233238 -12165,5315:498,-158,-39,0,0,0.239113 -12166,5315:497,-157,-39,0,0,0.237881 -12167,5315:496,-156,-39,0,0,0.243155 -12168,5315:495,-155,-39,0,0,0.235154 -12169,5315:394,-154,-39,0,0,0.234194 -12170,5315:393,-153,-39,0,0,0.234858 -12171,5315:392,-152,-39,0,0,0.238515 -12172,5315:391,-151,-39,0,0,0.242833 -12173,5315:390,-150,-39,0,0,0.243401 -12174,5314:499,-149,-39,0,0,0.239973 -12175,5314:498,-148,-39,0,0,0.241269 -12176,5314:497,-147,-39,0,0,0.244728 -12177,5314:496,-146,-39,0,0,0.244291 -12178,5314:495,-145,-39,0,0,0.241871 -12179,5314:394,-144,-39,0,0,0.242192 -12180,5314:393,-143,-39,0,0,0.242381 -12181,5314:392,-142,-39,0,0,0.242267 -12182,5314:391,-141,-39,0,0,0.242211 -12183,5314:390,-140,-39,0,0,0.239356 -12184,5313:499,-139,-39,0,0,0.237788 -12185,5313:498,-138,-39,0,0,0.238049 -12186,5313:497,-137,-39,0,0,0.235801 -12187,5313:496,-136,-39,0,0,0.232797 -12188,5313:495,-135,-39,0,0,0.231551 -12189,5313:394,-134,-39,0,0,0.229111 -12190,5313:393,-133,-39,0,0,0.230565 -12191,5313:392,-132,-39,0,0,0.231643 -12192,5313:391,-131,-39,0,0,0.230383 -12193,5313:390,-130,-39,0,0,0.230347 -12194,5312:499,-129,-39,0,0,0.229892 -12195,5312:498,-128,-39,0,0,0.230165 -12196,5312:497,-127,-39,0,0,0.230274 -12197,5312:496,-126,-39,0,0,0.229328 -12198,5312:495,-125,-39,0,0,0.225933 -12199,5312:394,-124,-39,0,0,0.219952 -12200,5312:393,-123,-39,0,0,0.215369 -12201,5312:392,-122,-39,0,0,0.21556 -12202,5312:391,-121,-39,0,0,0.213327 -12203,5312:390,-120,-39,0,0,0.216047 -12204,5311:499,-119,-39,0,0,0.218668 -12205,5311:498,-118,-39,0,0,0.217145 -12206,5311:497,-117,-39,0,0,0.215264 -12207,5311:496,-116,-39,0,0,0.212569 -12208,5311:495,-115,-39,0,0,0.206141 -12209,5311:394,-114,-39,0,0,0.200105 -12210,5311:393,-113,-39,0,0,0.197438 -12211,5311:392,-112,-39,0,0,0.194717 -12212,5311:391,-111,-39,0,0,0.203481 -12213,5311:390,-110,-39,0,0,0.204917 -12214,5310:499,-109,-39,0,0,0.200549 -12215,5310:498,-108,-39,0,0,0.194717 -12216,5310:497,-107,-39,0,0,0.19356 -12217,5310:496,-106,-39,0,0,0.196073 -12218,5310:495,-105,-39,0,0,0.195863 -12219,5310:394,-104,-39,0,0,0.192935 -12220,5310:393,-103,-39,0,0,0.190562 -12221,5310:392,-102,-39,0,0,0.187178 -12222,5310:391,-101,-39,0,0,0.189282 -12223,5310:390,-100,-39,0,0,0.187992 -12224,5309:499,-99,-39,0,0,0.18435 -12225,5309:498,-98,-39,0,0,0.184134 -12226,5309:497,-97,-39,0,0,0.183102 -12227,5309:496,-96,-39,0,0,0.181753 -12228,5309:495,-95,-39,0,0,0.18261 -12229,5309:394,-94,-39,0,0,0.183163 -12230,5309:393,-93,-39,0,0,0.182994 -12231,5309:392,-92,-39,0,0,0.183225 -12232,5309:391,-91,-39,0,0,0.18435 -12233,5309:390,-90,-39,0,0,0.185511 -12234,5308:499,-89,-39,0,0,0.185635 -12235,5308:498,-88,-39,0,0,0.185698 -12236,5308:497,-87,-39,0,0,0.184644 -12237,5308:496,-86,-39,0,0,0.180291 -12238,5308:495,-85,-39,0,0,0.181554 -12239,5308:394,-84,-39,0,0,0.17973 -12240,5308:393,-83,-39,0,0,0.182994 -12241,5308:392,-82,-39,0,0,0.191674 -12242,5308:391,-81,-39,0,0,0.189424 -12243,5308:390,-80,-39,0,0,0.194894 -12244,5307:499,-79,-39,0,0,0.192631 -12245,5307:498,-78,-39,0,0,0.196025 -12246,5307:497,-77,-39,0,0,0.195184 -12247,5307:496,-76,-39,0,0,0.208539 -12248,5306:497,-67,-39,0,0,0.223998 -12249,5306:496,-66,-39,0,0,0.211026 -12250,5306:495,-65,-39,0,0,0.205268 -12251,5306:394,-64,-39,0,0,0.199284 -12252,5306:393,-63,-39,0,0,0.199202 -12253,5306:392,-62,-39,0,0,0.19953 -12254,5306:391,-61,-39,0,0,0.206899 -12255,5306:390,-60,-39,0,0,0.199169 -12256,5305:499,-59,-39,0,0,0.188134 -12257,5305:498,-58,-39,0,0,0.177694 -12258,5305:497,-57,-39,0,0,0.173 -12259,5305:496,-56,-39,0,0,0.163035 -12260,5305:495,-55,-39,0,0,0.153204 -12261,5305:394,-54,-39,0,0,0.165475 -12262,5305:393,-53,-39,0,0,0.205654 -12263,5305:392,-52,-39,0,0,0.210872 -12264,5305:391,-51,-39,0,0,0.217284 -12265,5305:390,-50,-39,0,0,0.219037 -12266,5304:499,-49,-39,0,0,0.211162 -12267,5304:498,-48,-39,0,0,0.207658 -12268,5304:497,-47,-39,0,0,0.199957 -12269,5304:496,-46,-39,0,0,0.184149 -12270,5304:495,-45,-39,0,0,0.166713 -12271,5304:394,-44,-39,0,0,0.172926 -12272,5304:393,-43,-39,0,0,0.17979 -12273,5304:392,-42,-39,0,0,0.154971 -12274,5304:391,-41,-39,0,0,0.15335 -12275,5304:390,-40,-39,0,0,0.163554 -12276,5303:499,-39,-39,0,0,0.163231 -12277,5303:498,-38,-39,0,0,0.156701 -12278,5303:497,-37,-39,0,0,0.150399 -12279,5303:496,-36,-39,0,0,0.15107 -12280,5303:495,-35,-39,0,0,0.154662 -12281,5303:394,-34,-39,0,0,0.163863 -12282,5303:393,-33,-39,0,0,0.163554 -12283,5303:392,-32,-39,0,0,0.161749 -12284,5303:391,-31,-39,0,0,0.154837 -12285,5303:390,-30,-39,0,0,0.152685 -12286,5302:499,-29,-39,0,0,0.150373 -12287,5302:498,-28,-39,0,0,0.146889 -12288,5302:497,-27,-39,0,0,0.142439 -12289,5302:496,-26,-39,0,0,0.155956 -12290,5302:495,-25,-39,0,0,0.156606 -12291,5302:394,-24,-39,0,0,0.149221 -12292,5302:393,-23,-39,0,0,0.143965 -12293,5302:392,-22,-39,0,0,0.14977 -12294,5302:391,-21,-39,0,0,0.156254 -12295,5302:390,-20,-39,0,0,0.156227 -12296,5301:499,-19,-39,0,0,0.15173 -12297,5301:498,-18,-39,0,0,0.155039 -12298,5301:497,-17,-39,0,0,0.166541 -12299,5301:496,-16,-39,0,0,0.163554 -12300,5301:495,-15,-39,0,0,0.151109 -12301,5301:394,-14,-39,0,0,0.151268 -12302,5301:393,-13,-39,0,0,0.150622 -12303,5301:392,-12,-39,0,0,0.149091 -12304,5301:391,-11,-39,0,0,0.141638 -12305,5301:390,-10,-39,0,0,0.135459 -12306,5300:499,-9,-39,0,0,0.12967 -12307,5300:498,-8,-39,0,0,0.130822 -12308,5300:497,-7,-39,0,0,0.142101 -12309,5300:496,-6,-39,0,0,0.166941 -12310,5300:495,-5,-39,0,0,0.169442 -12311,5300:394,-4,-39,0,0,0.164173 -12312,5300:393,-3,-39,0,0,0.150268 -12313,5300:392,-2,-39,0,0,0.153337 -12314,5300:391,-1,-39,0,0,0.156159 -12315,3300:391,0,-39,0,0,0.15775 -12316,3300:391,1,-39,0,0,0.150124 -12317,3300:392,2,-39,0,0,0.142791 -12318,3300:393,3,-39,0,0,0.151202 -12319,3300:394,4,-39,0,0,0.146722 -12320,3300:495,5,-39,0,0,0.13703 -12321,3300:496,6,-39,0,0,0.136509 -12322,3300:497,7,-39,0,0,0.135459 -12323,3300:498,8,-39,0,0,0.118488 -12324,3300:499,9,-39,0,0,0.116232 -12325,3301:390,10,-39,0,0,0.117889 -12326,3301:391,11,-39,0,0,0.127952 -12327,3301:392,12,-39,0,0,0.139146 -12328,3301:393,13,-39,0,0,0.134081 -12329,3301:394,14,-39,0,0,0.132313 -12330,3301:495,15,-39,0,0,0.132738 -12331,3301:496,16,-39,0,0,0.136315 -12332,3301:497,17,-39,0,0,0.130846 -12333,3301:498,18,-39,0,0,0.124239 -12334,3301:499,19,-39,0,0,0.132467 -12335,3302:390,20,-39,0,0,0.128768 -12336,3302:391,21,-39,0,0,0.124698 -12337,3302:392,22,-39,0,0,0.131936 -12338,3302:393,23,-39,0,0,0.11988 -12339,3302:394,24,-39,0,0,0.125812 -12340,3302:495,25,-39,0,0,0.126515 -12341,3302:496,26,-39,0,0,0.122528 -12342,3302:497,27,-39,0,0,0.129311 -12343,3302:498,28,-39,0,0,0.135989 -12344,3302:499,29,-39,0,0,0.137932 -12345,3303:390,30,-39,0,0,0.120379 -12346,3303:391,31,-39,0,0,0.115254 -12347,3303:392,32,-39,0,0,0.126856 -12348,3303:393,33,-39,0,0,0.128044 -12349,3303:394,34,-39,0,0,0.126515 -12350,3303:495,35,-39,0,0,0.127221 -12351,3303:496,36,-39,0,0,0.128274 -12352,3303:497,37,-39,0,0,0.131877 -12353,3303:498,38,-39,0,0,0.130228 -12354,3303:499,39,-39,0,0,0.122219 -12355,3304:390,40,-39,0,0,0.126016 -12356,3304:391,41,-39,0,0,0.13216 -12357,3304:392,42,-39,0,0,0.133581 -12358,3304:393,43,-39,0,0,0.133735 -12359,3304:394,44,-39,0,0,0.122119 -12360,3304:495,45,-39,0,0,0.123547 -12361,3304:496,46,-39,0,0,0.123882 -12362,3304:497,47,-39,0,0,0.125598 -12363,3304:498,48,-39,0,0,0.128469 -12364,3304:499,49,-39,0,0,0.127552 -12365,3305:390,50,-39,0,0,0.125609 -12366,3305:391,51,-39,0,0,0.126424 -12367,3305:392,52,-39,0,0,0.129358 -12368,3305:393,53,-39,0,0,0.13307 -12369,3305:394,54,-39,0,0,0.135977 -12370,3305:495,55,-39,0,0,0.133569 -12371,3305:496,56,-39,0,0,0.124373 -12372,3305:497,57,-39,0,0,0.123081 -12373,3305:498,58,-39,0,0,0.127792 -12374,3305:499,59,-39,0,0,0.125666 -12375,3306:390,60,-39,0,0,0.130158 -12376,3306:391,61,-39,0,0,0.127872 -12377,3306:392,62,-39,0,0,0.120281 -12378,3306:393,63,-39,0,0,0.119457 -12379,3306:394,64,-39,0,0,0.119123 -12380,3306:495,65,-39,0,0,0.118746 -12381,3306:496,66,-39,0,0,0.12681 -12382,3306:497,67,-39,0,0,0.122561 -12383,3306:498,68,-39,0,0,0.121044 -12384,3306:499,69,-39,0,0,0.124328 -12385,3307:390,70,-39,0,0,0.128182 -12386,3307:391,71,-39,0,0,0.113309 -12387,3307:392,72,-39,0,0,0.118864 -12388,3307:394,74,-39,0,0,0.121416 -12389,3307:495,75,-39,0,0,0.12168 -12390,3307:496,76,-39,0,0,0.13825 -12391,3307:497,77,-39,0,0,0.144841 -12392,3307:498,78,-39,0,0,0.147534 -12393,3307:499,79,-39,0,0,0.153657 -12394,3308:390,80,-39,0,0,0.15011 -12395,3308:391,81,-39,0,0,0.146105 -12396,3308:392,82,-39,0,0,0.148675 -12397,3308:393,83,-39,0,0,0.161721 -12398,3308:394,84,-39,0,0,0.159161 -12399,3308:495,85,-39,0,0,0.170675 -12400,3308:496,86,-39,0,0,0.177679 -12401,3308:497,87,-39,0,0,0.180519 -12402,3308:498,88,-39,0,0,0.173647 -12403,3308:499,89,-39,0,0,0.170602 -12404,3309:390,90,-39,0,0,0.176004 -12405,3309:391,91,-39,0,0,0.179442 -12406,3309:392,92,-39,0,0,0.181982 -12407,3309:393,93,-39,0,0,0.168087 -12408,3309:394,94,-39,0,0,0.161791 -12409,3309:495,95,-39,0,0,0.159946 -12410,3309:496,96,-39,0,0,0.156796 -12411,3309:497,97,-39,0,0,0.156281 -12412,3309:498,98,-39,0,0,0.155214 -12413,3309:499,99,-39,0,0,0.147715 -12414,3310:390,100,-39,0,0,0.140654 -12415,3310:391,101,-39,0,0,0.141301 -12416,3310:392,102,-39,0,0,0.143081 -12417,3310:393,103,-39,0,0,0.146169 -12418,3310:394,104,-39,0,0,0.148557 -12419,3310:495,105,-39,0,0,0.142879 -12420,3310:496,106,-39,0,0,0.139515 -12421,3310:497,107,-39,0,0,0.153952 -12422,3310:498,108,-39,0,0,0.155079 -12423,3310:499,109,-39,0,0,0.147534 -12424,3311:390,110,-39,0,0,0.147935 -12425,3311:391,111,-39,0,0,0.155402 -12426,3311:392,112,-39,0,0,0.172632 -12427,3311:393,113,-39,0,0,0.182166 -12428,3311:394,114,-39,0,0,0.184334 -12429,3311:495,115,-39,0,0,0.165404 -12430,3311:496,116,-39,0,0,0.160776 -12431,3311:497,117,-39,0,0,0.182764 -12432,3311:498,118,-39,0,0,0.188338 -12433,3311:499,119,-39,0,0,0.176586 -12434,3312:390,120,-39,0,0,0.161679 -12435,3312:391,121,-39,0,0,0.186569 -12436,3312:392,122,-39,0,0,0.184118 -12437,3312:393,123,-39,0,0,0.188416 -12438,3312:394,124,-39,0,0,0.187851 -12439,3312:495,125,-39,0,0,0.172017 -12440,3312:496,126,-39,0,0,0.179503 -12441,3312:497,127,-39,0,0,0.185698 -12442,3312:498,128,-39,0,0,0.197275 -12443,3312:499,129,-39,0,0,0.198858 -12444,3313:390,130,-39,0,0,0.189834 -12445,3313:391,131,-39,0,0,0.191754 -12446,3313:392,132,-39,0,0,0.196657 -12447,3313:393,133,-39,0,0,0.202433 -12448,3313:394,134,-39,0,0,0.19554 -12449,3313:495,135,-39,0,0,0.191833 -12450,3313:496,136,-39,0,0,0.19721 -12451,3313:497,137,-39,0,0,0.205687 -12452,3313:498,138,-39,0,0,0.206646 -12453,3313:499,139,-39,0,0,0.192967 -12454,3314:390,140,-39,0,0,0.191722 -12455,3314:391,141,-39,0,0,0.204598 -12456,3314:392,142,-39,0,0,0.202699 -12457,3314:393,143,-39,0,0,0.198759 -12458,3314:394,144,-39,0,0,0.199907 -12459,3314:495,145,-39,0,0,0.201754 -12460,3314:496,146,-39,0,0,0.204231 -12461,3314:497,147,-39,0,0,0.211522 -12462,3314:498,148,-39,0,0,0.207017 -12463,3314:499,149,-39,0,0,0.203364 -12464,3315:390,150,-39,0,0,0.199349 -12465,3315:391,151,-39,0,0,0.213103 -12466,3315:392,152,-39,0,0,0.235912 -12467,3315:393,153,-39,0,0,0.213172 -12468,3315:394,154,-39,0,0,0.213655 -12469,3315:495,155,-39,0,0,0.214727 -12470,3315:496,156,-39,0,0,0.213948 -12471,3315:497,157,-39,0,0,0.210376 -12472,3315:498,158,-39,0,0,0.207422 -12473,3315:499,159,-39,0,0,0.207084 -12474,3316:390,160,-39,0,0,0.205973 -12475,3316:391,161,-39,0,0,0.203198 -12476,3316:392,162,-39,0,0,0.209916 -12477,3316:393,163,-39,0,0,0.203847 -12478,3316:394,164,-39,0,0,0.208895 -12479,3316:495,165,-39,0,0,0.205687 -12480,3316:496,166,-39,0,0,0.203297 -12481,3316:497,167,-39,0,0,0.214762 -12482,3316:498,168,-39,0,0,0.202516 -12483,3316:499,169,-39,0,0,0.197372 -12484,3317:390,170,-39,0,0,0.193832 -12485,3317:391,171,-39,0,0,0.192631 -12486,3317:392,172,-39,0,0,0.190927 -12487,3317:393,173,-39,0,0,0.190008 -12488,3317:394,174,-39,0,0,0.189424 -12489,3317:495,175,-39,0,0,0.187616 -12490,3317:496,176,-39,0,0,0.185092 -12491,3317:497,177,-39,0,0,0.184272 -12492,3317:498,178,-39,0,0,0.190927 -12493,3317:499,179,-39,0,0,0.190609 -12494,3318:390,180,-39,0,0,0.18531 -12495,5318:380,-180,-38,0,0,0.196609 -12496,5317:489,-179,-38,0,0,0.185589 -12497,5317:488,-178,-38,0,0,0.18017 -12498,5317:487,-177,-38,0,0,0.21226 -12499,5317:486,-176,-38,0,0,0.224749 -12500,5317:485,-175,-38,0,0,0.224516 -12501,5317:384,-174,-38,0,0,0.216709 -12502,5317:383,-173,-38,0,0,0.223962 -12503,5317:382,-172,-38,0,0,0.223748 -12504,5317:381,-171,-38,0,0,0.215091 -12505,5317:380,-170,-38,0,0,0.212965 -12506,5316:489,-169,-38,0,0,0.240949 -12507,5316:488,-168,-38,0,0,0.233734 -12508,5316:487,-167,-38,0,0,0.224749 -12509,5316:486,-166,-38,0,0,0.232558 -12510,5316:485,-165,-38,0,0,0.230402 -12511,5316:384,-164,-38,0,0,0.223748 -12512,5316:383,-163,-38,0,0,0.225161 -12513,5316:382,-162,-38,0,0,0.233568 -12514,5316:381,-161,-38,0,0,0.248334 -12515,5316:380,-160,-38,0,0,0.243155 -12516,5315:489,-159,-38,0,0,0.242493 -12517,5315:488,-158,-38,0,0,0.245317 -12518,5315:487,-157,-38,0,0,0.243249 -12519,5315:486,-156,-38,0,0,0.249333 -12520,5315:485,-155,-38,0,0,0.250566 -12521,5315:384,-154,-38,0,0,0.248776 -12522,5315:383,-153,-38,0,0,0.248527 -12523,5315:382,-152,-38,0,0,0.247511 -12524,5315:381,-151,-38,0,0,0.252113 -12525,5315:380,-150,-38,0,0,0.253626 -12526,5314:489,-149,-38,0,0,0.250026 -12527,5314:488,-148,-38,0,0,0.251745 -12528,5314:487,-147,-38,0,0,0.252713 -12529,5314:486,-146,-38,0,0,0.251048 -12530,5314:485,-145,-38,0,0,0.248584 -12531,5314:384,-144,-38,0,0,0.247893 -12532,5314:383,-143,-38,0,0,0.24941 -12533,5314:382,-142,-38,0,0,0.249583 -12534,5314:381,-141,-38,0,0,0.245964 -12535,5314:380,-140,-38,0,0,0.247645 -12536,5313:489,-139,-38,0,0,0.246975 -12537,5313:488,-138,-38,0,0,0.245107 -12538,5313:487,-137,-38,0,0,0.241852 -12539,5313:486,-136,-38,0,0,0.2393 -12540,5313:485,-135,-38,0,0,0.23915 -12541,5313:384,-134,-38,0,0,0.237193 -12542,5313:383,-133,-38,0,0,0.233293 -12543,5313:382,-132,-38,0,0,0.235986 -12544,5313:381,-131,-38,0,0,0.238384 -12545,5313:380,-130,-38,0,0,0.240949 -12546,5312:489,-129,-38,0,0,0.239486 -12547,5312:488,-128,-38,0,0,0.237211 -12548,5312:487,-127,-38,0,0,0.23532 -12549,5312:486,-126,-38,0,0,0.233458 -12550,5312:485,-125,-38,0,0,0.23104 -12551,5312:384,-124,-38,0,0,0.228168 -12552,5312:383,-123,-38,0,0,0.226526 -12553,5312:382,-122,-38,0,0,0.227012 -12554,5312:381,-121,-38,0,0,0.230347 -12555,5312:380,-120,-38,0,0,0.231058 -12556,5311:489,-119,-38,0,0,0.225556 -12557,5311:488,-118,-38,0,0,0.222413 -12558,5311:487,-117,-38,0,0,0.219037 -12559,5311:486,-116,-38,0,0,0.217792 -12560,5311:485,-115,-38,0,0,0.219301 -12561,5311:384,-114,-38,0,0,0.214865 -12562,5311:383,-113,-38,0,0,0.206781 -12563,5311:382,-112,-38,0,0,0.207794 -12564,5311:381,-111,-38,0,0,0.216133 -12565,5311:380,-110,-38,0,0,0.207185 -12566,5310:489,-109,-38,0,0,0.204431 -12567,5310:488,-108,-38,0,0,0.201357 -12568,5310:487,-107,-38,0,0,0.200203 -12569,5310:486,-106,-38,0,0,0.202152 -12570,5310:485,-105,-38,0,0,0.200549 -12571,5310:384,-104,-38,0,0,0.197943 -12572,5310:383,-103,-38,0,0,0.19554 -12573,5310:382,-102,-38,0,0,0.194556 -12574,5310:381,-101,-38,0,0,0.194943 -12575,5310:380,-100,-38,0,0,0.195362 -12576,5309:489,-99,-38,0,0,0.194862 -12577,5309:488,-98,-38,0,0,0.191961 -12578,5309:487,-97,-38,0,0,0.190134 -12579,5309:486,-96,-38,0,0,0.189802 -12580,5309:485,-95,-38,0,0,0.19169 -12581,5309:384,-94,-38,0,0,0.191626 -12582,5309:383,-93,-38,0,0,0.18966 -12583,5309:382,-92,-38,0,0,0.188102 -12584,5309:381,-91,-38,0,0,0.194459 -12585,5309:380,-90,-38,0,0,0.192487 -12586,5308:489,-89,-38,0,0,0.199481 -12587,5308:488,-88,-38,0,0,0.191499 -12588,5308:487,-87,-38,0,0,0.192471 -12590,5308:485,-85,-38,0,0,0.194266 -12591,5308:384,-84,-38,0,0,0.191738 -12592,5308:383,-83,-38,0,0,0.195944 -12593,5308:382,-82,-38,0,0,0.197193 -12594,5308:381,-81,-38,0,0,0.202516 -12595,5308:380,-80,-38,0,0,0.204398 -12596,5307:489,-79,-38,0,0,0.205687 -12597,5307:488,-78,-38,0,0,0.203015 -12598,5307:487,-77,-38,0,0,0.200582 -12599,5307:486,-76,-38,0,0,0.213413 -12600,5307:485,-75,-38,0,0,0.22227 -12601,5306:485,-65,-38,0,0,0.227085 -12602,5306:384,-64,-38,0,0,0.211436 -12603,5306:383,-63,-38,0,0,0.206377 -12604,5306:382,-62,-38,0,0,0.206494 -12605,5306:381,-61,-38,0,0,0.213241 -12606,5306:380,-60,-38,0,0,0.201837 -12607,5305:489,-59,-38,0,0,0.173809 -12608,5305:488,-58,-38,0,0,0.175008 -12609,5305:487,-57,-38,0,0,0.176392 -12610,5305:486,-56,-38,0,0,0.181295 -12611,5305:485,-55,-38,0,0,0.19512 -12612,5305:384,-54,-38,0,0,0.204214 -12613,5305:383,-53,-38,0,0,0.223124 -12614,5305:382,-52,-38,0,0,0.226526 -12615,5305:381,-51,-38,0,0,0.249891 -12616,5305:380,-50,-38,0,0,0.251068 -12617,5304:489,-49,-38,0,0,0.227265 -12618,5304:488,-48,-38,0,0,0.21269 -12619,5304:487,-47,-38,0,0,0.218002 -12620,5304:486,-46,-38,0,0,0.209184 -12621,5304:485,-45,-38,0,0,0.20631 -12622,5304:384,-44,-38,0,0,0.203447 -12623,5304:383,-43,-38,0,0,0.201738 -12624,5304:382,-42,-38,0,0,0.202317 -12625,5304:381,-41,-38,0,0,0.200253 -12626,5304:380,-40,-38,0,0,0.19894 -12627,5303:489,-39,-38,0,0,0.196106 -12628,5303:488,-38,-38,0,0,0.19372 -12629,5303:487,-37,-38,0,0,0.190737 -12630,5303:486,-36,-38,0,0,0.188322 -12631,5303:485,-35,-38,0,0,0.175691 -12632,5303:384,-34,-38,0,0,0.159051 -12633,5303:383,-33,-38,0,0,0.156987 -12634,5303:382,-32,-38,0,0,0.156348 -12635,5303:381,-31,-38,0,0,0.154958 -12636,5303:380,-30,-38,0,0,0.156145 -12637,5302:489,-29,-38,0,0,0.156946 -12638,5302:488,-28,-38,0,0,0.152061 -12639,5302:487,-27,-38,0,0,0.154622 -12640,5302:486,-26,-38,0,0,0.165475 -12641,5302:485,-25,-38,0,0,0.16104 -12642,5302:384,-24,-38,0,0,0.160859 -12643,5302:383,-23,-38,0,0,0.15601 -12644,5302:382,-22,-38,0,0,0.152114 -12645,5302:381,-21,-38,0,0,0.163315 -12646,5302:380,-20,-38,0,0,0.175542 -12647,5301:489,-19,-38,0,0,0.161429 -12648,5301:488,-18,-38,0,0,0.175141 -12649,5301:487,-17,-38,0,0,0.179321 -12650,5301:486,-16,-38,0,0,0.166513 -12651,5301:485,-15,-38,0,0,0.156701 -12652,5301:384,-14,-38,0,0,0.152884 -12653,5301:383,-13,-38,0,0,0.148596 -12654,5301:382,-12,-38,0,0,0.142653 -12655,5301:381,-11,-38,0,0,0.142477 -12656,5301:380,-10,-38,0,0,0.136206 -12657,5300:489,-9,-38,0,0,0.132349 -12658,5300:488,-8,-38,0,0,0.139368 -12659,5300:487,-7,-38,0,0,0.150688 -12660,5300:486,-6,-38,0,0,0.161484 -12661,5300:485,-5,-38,0,0,0.16862 -12662,5300:384,-4,-38,0,0,0.167399 -12663,5300:383,-3,-38,0,0,0.161498 -12664,5300:382,-2,-38,0,0,0.158707 -12665,5300:381,-1,-38,0,0,0.159877 -12666,3300:381,0,-38,0,0,0.16295 -12667,3300:381,1,-38,0,0,0.168102 -12668,3300:382,2,-38,0,0,0.158105 -12669,3300:383,3,-38,0,0,0.166299 -12670,3300:384,4,-38,0,0,0.162139 -12671,3300:485,5,-38,0,0,0.148687 -12672,3300:486,6,-38,0,0,0.141513 -12673,3300:487,7,-38,0,0,0.137859 -12674,3300:488,8,-38,0,0,0.134331 -12675,3300:489,9,-38,0,0,0.12535 -12676,3301:380,10,-38,0,0,0.139072 -12677,3301:381,11,-38,0,0,0.155429 -12678,3301:382,12,-38,0,0,0.154219 -12679,3301:383,13,-38,0,0,0.147883 -12680,3301:384,14,-38,0,0,0.141538 -12681,3301:485,15,-38,0,0,0.136775 -12682,3301:486,16,-38,0,0,0.136001 -12683,3301:487,17,-38,0,0,0.133035 -12684,3301:488,18,-38,0,0,0.147172 -12685,3301:489,19,-38,0,0,0.146979 -12686,3302:380,20,-38,0,0,0.148466 -12687,3302:381,21,-38,0,0,0.151307 -12688,3302:382,22,-38,0,0,0.144853 -12689,3302:383,23,-38,0,0,0.129612 -12690,3302:384,24,-38,0,0,0.127175 -12691,3302:485,25,-38,0,0,0.141551 -12692,3302:486,26,-38,0,0,0.145184 -12693,3302:487,27,-38,0,0,0.141776 -12694,3302:488,28,-38,0,0,0.14631 -12695,3302:489,29,-38,0,0,0.141176 -12696,3303:380,30,-38,0,0,0.150137 -12697,3303:381,31,-38,0,0,0.17322 -12698,3303:382,32,-38,0,0,0.174889 -12699,3303:383,33,-38,0,0,0.171418 -12700,3303:384,34,-38,0,0,0.145299 -12701,3303:485,35,-38,0,0,0.126628 -12702,3303:486,36,-38,0,0,0.127209 -12703,3303:487,37,-38,0,0,0.131349 -12704,3303:488,38,-38,0,0,0.13541 -12705,3303:489,39,-38,0,0,0.130671 -12706,3304:380,40,-38,0,0,0.130787 -12707,3304:381,41,-38,0,0,0.132077 -12708,3304:382,42,-38,0,0,0.135386 -12709,3304:383,43,-38,0,0,0.14418 -12710,3304:384,44,-38,0,0,0.140642 -12711,3304:485,45,-38,0,0,0.136509 -12712,3304:486,46,-38,0,0,0.137871 -12713,3304:487,47,-38,0,0,0.137079 -12714,3304:488,48,-38,0,0,0.129856 -12715,3304:489,49,-38,0,0,0.128343 -12716,3305:380,50,-38,0,0,0.130566 -12717,3305:381,51,-38,0,0,0.131302 -12718,3305:382,52,-38,0,0,0.132668 -12719,3305:383,53,-38,0,0,0.136279 -12720,3305:384,54,-38,0,0,0.13703 -12721,3305:485,55,-38,0,0,0.148285 -12722,3305:486,56,-38,0,0,0.137249 -12723,3305:487,57,-38,0,0,0.135531 -12724,3305:488,58,-38,0,0,0.135615 -12725,3305:489,59,-38,0,0,0.133818 -12726,3306:380,60,-38,0,0,0.143081 -12727,3306:381,61,-38,0,0,0.140282 -12728,3306:382,62,-38,0,0,0.124721 -12729,3306:383,63,-38,0,0,0.127472 -12730,3306:384,64,-38,0,0,0.125666 -12731,3306:485,65,-38,0,0,0.125508 -12732,3306:486,66,-38,0,0,0.138103 -12733,3306:487,67,-38,0,0,0.13196 -12734,3306:488,68,-38,0,0,0.12945 -12735,3306:489,69,-38,0,0,0.128538 -12736,3307:380,70,-38,0,0,0.128826 -12737,3307:381,71,-38,0,0,0.118628 -12738,3307:382,72,-38,0,0,0.116528 -12739,3307:384,74,-38,0,0,0.137249 -12740,3307:485,75,-38,0,0,0.143358 -12741,3307:486,76,-38,0,0,0.144472 -12742,3307:487,77,-38,0,0,0.140903 -12743,3307:488,78,-38,0,0,0.140691 -12744,3307:489,79,-38,0,0,0.160859 -12745,3308:380,80,-38,0,0,0.16385 -12746,3308:381,81,-38,0,0,0.169182 -12747,3308:382,82,-38,0,0,0.166 -12748,3308:383,83,-38,0,0,0.173986 -12749,3308:384,84,-38,0,0,0.175661 -12750,3308:485,85,-38,0,0,0.173677 -12751,3308:486,86,-38,0,0,0.177334 -12752,3308:487,87,-38,0,0,0.192631 -12753,3308:488,88,-38,0,0,0.195459 -12754,3308:489,89,-38,0,0,0.195427 -12755,3309:380,90,-38,0,0,0.190419 -12756,3309:381,91,-38,0,0,0.189723 -12757,3309:382,92,-38,0,0,0.182105 -12758,3309:383,93,-38,0,0,0.16677 -12759,3309:384,94,-38,0,0,0.168836 -12760,3309:485,95,-38,0,0,0.161554 -12761,3309:486,96,-38,0,0,0.156267 -12762,3309:487,97,-38,0,0,0.15434 -12763,3309:488,98,-38,0,0,0.154394 -12764,3309:489,99,-38,0,0,0.152685 -12765,3310:380,100,-38,0,0,0.14703 -12766,3310:381,101,-38,0,0,0.153911 -12767,3310:382,102,-38,0,0,0.155214 -12768,3310:383,103,-38,0,0,0.152498 -12769,3310:384,104,-38,0,0,0.1579 -12770,3310:485,105,-38,0,0,0.160624 -12771,3310:486,106,-38,0,0,0.156796 -12772,3310:487,107,-38,0,0,0.165106 -12773,3310:488,108,-38,0,0,0.165177 -12774,3310:489,109,-38,0,0,0.15764 -12775,3311:380,110,-38,0,0,0.170559 -12776,3311:381,111,-38,0,0,0.173868 -12777,3311:382,112,-38,0,0,0.19169 -12778,3311:383,113,-38,0,0,0.200961 -12779,3311:384,114,-38,0,0,0.18632 -12780,3311:485,115,-38,0,0,0.185915 -12781,3311:486,116,-38,0,0,0.18925 -12782,3311:487,117,-38,0,0,0.193864 -12783,3311:488,118,-38,0,0,0.194153 -12784,3311:489,119,-38,0,0,0.198989 -12785,3312:380,120,-38,0,0,0.205201 -12786,3312:381,121,-38,0,0,0.197015 -12787,3312:382,122,-38,0,0,0.183918 -12788,3312:383,123,-38,0,0,0.189487 -12789,3312:384,124,-38,0,0,0.20149 -12790,3312:485,125,-38,0,0,0.19372 -12791,3312:486,126,-38,0,0,0.181036 -12792,3312:487,127,-38,0,0,0.196625 -12793,3312:488,128,-38,0,0,0.214536 -12794,3312:489,129,-38,0,0,0.213017 -12795,3313:380,130,-38,0,0,0.211231 -12796,3313:381,131,-38,0,0,0.209456 -12797,3313:382,132,-38,0,0,0.211848 -12798,3313:383,133,-38,0,0,0.211556 -12799,3313:384,134,-38,0,0,0.207811 -12800,3313:485,135,-38,0,0,0.203631 -12801,3313:486,136,-38,0,0,0.207017 -12802,3313:487,137,-38,0,0,0.213258 -12803,3313:488,138,-38,0,0,0.20932 -12804,3313:489,139,-38,0,0,0.202865 -12805,3314:380,140,-38,0,0,0.205755 -12806,3314:381,141,-38,0,0,0.215577 -12807,3314:382,142,-38,0,0,0.221543 -12808,3314:383,143,-38,0,0,0.221915 -12809,3314:384,144,-38,0,0,0.226706 -12810,3314:485,145,-38,0,0,0.230274 -12811,3314:486,146,-38,0,0,0.223124 -12812,3314:487,147,-38,0,0,0.208912 -12813,3314:488,148,-38,0,0,0.207591 -12814,3314:489,149,-38,0,0,0.204532 -12815,3315:380,150,-38,0,0,0.206107 -12816,3315:381,151,-38,0,0,0.208573 -12817,3315:382,152,-38,0,0,0.222075 -12818,3315:383,153,-38,0,0,0.225196 -12819,3315:384,154,-38,0,0,0.215681 -12820,3315:485,155,-38,0,0,0.225251 -12821,3315:486,156,-38,0,0,0.223178 -12822,3315:487,157,-38,0,0,0.217792 -12823,3315:488,158,-38,0,0,0.211934 -12824,3315:489,159,-38,0,0,0.214225 -12825,3316:380,160,-38,0,0,0.215299 -12826,3316:381,161,-38,0,0,0.220217 -12827,3316:382,162,-38,0,0,0.217652 -12828,3316:383,163,-38,0,0,0.2196 -12829,3316:384,164,-38,0,0,0.222466 -12830,3316:485,165,-38,0,0,0.221224 -12831,3316:486,166,-38,0,0,0.217792 -12832,3316:487,167,-38,0,0,0.225 -12833,3316:488,168,-38,0,0,0.220393 -12834,3316:489,169,-38,0,0,0.208624 -12835,3317:380,170,-38,0,0,0.199809 -12836,3317:381,171,-38,0,0,0.193736 -12837,3317:382,172,-38,0,0,0.191499 -12838,3317:383,173,-38,0,0,0.19126 -12839,3317:384,174,-38,0,0,0.190641 -12840,3317:485,175,-38,0,0,0.188919 -12841,3317:486,176,-38,0,0,0.188919 -12842,3317:487,177,-38,0,0,0.194765 -12843,3317:488,178,-38,0,0,0.196738 -12844,3317:489,179,-38,0,0,0.196852 -12845,3318:380,180,-38,0,0,0.196609 -12846,5318:370,-180,-37,0,0,0.190451 -12847,5317:479,-179,-37,0,0,0.19999 -12848,5317:478,-178,-37,0,0,0.217442 -12849,5317:477,-177,-37,0,0,0.22027 -12850,5317:476,-176,-37,0,0,0.225018 -12851,5317:475,-175,-37,0,0,0.22922 -12852,5317:374,-174,-37,0,0,0.236005 -12853,5317:373,-173,-37,0,0,0.22482 -12854,5317:372,-172,-37,0,0,0.227608 -12855,5317:371,-171,-37,0,0,0.240067 -12856,5317:370,-170,-37,0,0,0.258795 -12857,5316:479,-169,-37,0,0,0.256144 -12858,5316:478,-168,-37,0,0,0.254152 -12859,5316:477,-167,-37,0,0,0.248488 -12860,5316:476,-166,-37,0,0,0.248162 -12861,5316:475,-165,-37,0,0,0.248661 -12862,5316:374,-164,-37,0,0,0.248392 -12863,5316:373,-163,-37,0,0,0.242343 -12864,5316:372,-162,-37,0,0,0.242324 -12865,5316:371,-161,-37,0,0,0.252655 -12866,5316:370,-160,-37,0,0,0.251551 -12867,5315:479,-159,-37,0,0,0.2513 -12868,5315:478,-158,-37,0,0,0.252539 -12869,5315:477,-157,-37,0,0,0.257084 -12870,5315:476,-156,-37,0,0,0.256692 -12871,5315:475,-155,-37,0,0,0.257045 -12872,5315:374,-154,-37,0,0,0.257654 -12873,5315:373,-153,-37,0,0,0.256594 -12874,5315:372,-152,-37,0,0,0.257949 -12875,5315:371,-151,-37,0,0,0.261961 -12876,5315:370,-150,-37,0,0,0.258775 -12877,5314:479,-149,-37,0,0,0.259999 -12878,5314:478,-148,-37,0,0,0.26085 -12879,5314:477,-147,-37,0,0,0.259032 -12880,5314:476,-146,-37,0,0,0.255596 -12881,5314:475,-145,-37,0,0,0.252539 -12882,5314:374,-144,-37,0,0,0.256281 -12883,5314:373,-143,-37,0,0,0.259269 -12884,5314:372,-142,-37,0,0,0.255948 -12885,5314:371,-141,-37,0,0,0.253977 -12886,5314:370,-140,-37,0,0,0.259012 -12887,5313:479,-139,-37,0,0,0.255928 -12888,5313:478,-138,-37,0,0,0.25072 -12889,5313:477,-137,-37,0,0,0.249141 -12890,5313:476,-136,-37,0,0,0.249795 -12891,5313:475,-135,-37,0,0,0.248641 -12892,5313:374,-134,-37,0,0,0.24545 -12893,5313:373,-133,-37,0,0,0.243798 -12894,5313:372,-132,-37,0,0,0.245869 -12895,5313:371,-131,-37,0,0,0.246193 -12896,5313:370,-130,-37,0,0,0.244424 -12897,5312:479,-129,-37,0,0,0.247224 -12898,5312:478,-128,-37,0,0,0.248277 -12899,5312:477,-127,-37,0,0,0.246765 -12900,5312:476,-126,-37,0,0,0.246632 -12901,5312:475,-125,-37,0,0,0.24688 -12902,5312:374,-124,-37,0,0,0.246727 -12903,5312:373,-123,-37,0,0,0.25072 -12904,5312:372,-122,-37,0,0,0.244443 -12905,5312:371,-121,-37,0,0,0.243741 -12906,5312:370,-120,-37,0,0,0.23859 -12907,5311:479,-119,-37,0,0,0.240424 -12908,5311:478,-118,-37,0,0,0.233899 -12909,5311:477,-117,-37,0,0,0.235968 -12910,5311:476,-116,-37,0,0,0.234637 -12911,5311:475,-115,-37,0,0,0.227428 -12912,5311:374,-114,-37,0,0,0.222981 -12913,5311:373,-113,-37,0,0,0.219301 -12914,5311:372,-112,-37,0,0,0.22087 -12915,5311:371,-111,-37,0,0,0.225591 -12916,5311:370,-110,-37,0,0,0.21516 -12917,5310:479,-109,-37,0,0,0.2125 -12918,5310:478,-108,-37,0,0,0.212793 -12919,5310:477,-107,-37,0,0,0.212655 -12920,5310:476,-106,-37,0,0,0.210564 -12921,5310:475,-105,-37,0,0,0.208692 -12922,5310:374,-104,-37,0,0,0.210188 -12923,5310:373,-103,-37,0,0,0.204231 -12924,5310:372,-102,-37,0,0,0.205452 -12925,5310:371,-101,-37,0,0,0.205184 -12926,5310:370,-100,-37,0,0,0.207506 -12927,5309:479,-99,-37,0,0,0.205603 -12928,5309:478,-98,-37,0,0,0.204264 -12929,5309:477,-97,-37,0,0,0.199874 -12930,5309:476,-96,-37,0,0,0.201672 -12931,5309:475,-95,-37,0,0,0.20255 -12932,5309:374,-94,-37,0,0,0.20358 -12933,5309:373,-93,-37,0,0,0.199957 -12934,5309:372,-92,-37,0,0,0.199661 -12935,5309:371,-91,-37,0,0,0.200615 -12936,5309:370,-90,-37,0,0,0.202268 -12937,5308:479,-89,-37,0,0,0.202832 -12938,5308:478,-88,-37,0,0,0.203864 -12939,5308:477,-87,-37,0,0,0.199907 -12940,5308:476,-86,-37,0,0,0.203447 -12941,5308:475,-85,-37,0,0,0.198612 -12942,5308:374,-84,-37,0,0,0.200994 -12943,5308:373,-83,-37,0,0,0.204532 -12944,5308:372,-82,-37,0,0,0.20599 -12945,5308:371,-81,-37,0,0,0.204699 -12946,5308:370,-80,-37,0,0,0.209473 -12947,5307:479,-79,-37,0,0,0.21238 -12948,5307:478,-78,-37,0,0,0.211848 -12949,5307:477,-77,-37,0,0,0.207624 -12950,5307:476,-76,-37,0,0,0.218633 -12951,5307:475,-75,-37,0,0,0.217617 -12952,5306:477,-67,-37,0,0,0.252035 -12953,5306:476,-66,-37,0,0,0.24431 -12954,5306:475,-65,-37,0,0,0.234673 -12955,5306:374,-64,-37,0,0,0.231076 -12956,5306:373,-63,-37,0,0,0.225196 -12957,5306:372,-62,-37,0,0,0.225609 -12958,5306:371,-61,-37,0,0,0.222004 -12959,5306:370,-60,-37,0,0,0.208166 -12960,5305:479,-59,-37,0,0,0.178778 -12961,5305:478,-58,-37,0,0,0.193207 -12962,5305:477,-57,-37,0,0,0.22316 -12963,5305:476,-56,-37,0,0,0.222697 -12964,5305:475,-55,-37,0,0,0.222572 -12965,5305:374,-54,-37,0,0,0.237304 -12966,5305:373,-53,-37,0,0,0.238889 -12967,5305:372,-52,-37,0,0,0.243004 -12968,5305:371,-51,-37,0,0,0.270572 -12969,5305:370,-50,-37,0,0,0.269215 -12970,5304:479,-49,-37,0,0,0.237881 -12971,5304:478,-48,-37,0,0,0.222572 -12972,5304:477,-47,-37,0,0,0.222803 -12973,5304:476,-46,-37,0,0,0.220058 -12974,5304:475,-45,-37,0,0,0.219424 -12975,5304:374,-44,-37,0,0,0.21464 -12976,5304:373,-43,-37,0,0,0.203998 -12977,5304:372,-42,-37,0,0,0.2049 -12978,5304:371,-41,-37,0,0,0.202849 -12979,5304:370,-40,-37,0,0,0.198204 -12980,5303:479,-39,-37,0,0,0.199628 -12981,5303:478,-38,-37,0,0,0.201341 -12982,5303:477,-37,-37,0,0,0.19669 -12983,5303:476,-36,-37,0,0,0.192823 -12984,5303:475,-35,-37,0,0,0.184411 -12985,5303:374,-34,-37,0,0,0.168346 -12986,5303:373,-33,-37,0,0,0.168735 -12987,5303:372,-32,-37,0,0,0.169211 -12988,5303:371,-31,-37,0,0,0.165106 -12989,5303:370,-30,-37,0,0,0.166057 -12990,5302:479,-29,-37,0,0,0.177649 -12991,5302:478,-28,-37,0,0,0.173471 -12992,5302:477,-27,-37,0,0,0.165929 -12993,5302:476,-26,-37,0,0,0.179821 -12994,5302:475,-25,-37,0,0,0.167743 -12995,5302:374,-24,-37,0,0,0.185744 -12996,5302:373,-23,-37,0,0,0.177394 -12997,5302:372,-22,-37,0,0,0.189692 -12998,5302:371,-21,-37,0,0,0.209048 -12999,5302:370,-20,-37,0,0,0.201738 -13000,5301:479,-19,-37,0,0,0.16573 -13001,5301:478,-18,-37,0,0,0.184427 -13002,5301:477,-17,-37,0,0,0.173721 -13003,5301:476,-16,-37,0,0,0.159905 -13004,5301:475,-15,-37,0,0,0.166969 -13005,5301:374,-14,-37,0,0,0.153737 -13006,5301:373,-13,-37,0,0,0.146901 -13007,5301:372,-12,-37,0,0,0.150859 -13008,5301:371,-11,-37,0,0,0.15299 -13009,5301:370,-10,-37,0,0,0.160957 -13010,5300:479,-9,-37,0,0,0.153938 -13011,5300:478,-8,-37,0,0,0.158639 -13012,5300:477,-7,-37,0,0,0.163441 -13013,5300:476,-6,-37,0,0,0.184535 -13014,5300:475,-5,-37,0,0,0.180534 -13015,5300:374,-4,-37,0,0,0.177919 -13016,5300:373,-3,-37,0,0,0.189471 -13017,5300:372,-2,-37,0,0,0.197812 -13018,5300:371,-1,-37,0,0,0.196511 -13019,3300:371,0,-37,0,0,0.181143 -13020,3300:371,1,-37,0,0,0.168648 -13021,3300:372,2,-37,0,0,0.17678 -13022,3300:373,3,-37,0,0,0.174252 -13023,3300:374,4,-37,0,0,0.174622 -13889,3317:455,175,-35,0,0,0.22211 -13024,3300:475,5,-37,0,0,0.166328 -13025,3300:476,6,-37,0,0,0.161415 -13026,3300:477,7,-37,0,0,0.155537 -13027,3300:478,8,-37,0,0,0.156362 -13028,3300:479,9,-37,0,0,0.159257 -13029,3301:370,10,-37,0,0,0.16849 -13030,3301:371,11,-37,0,0,0.167213 -13031,3301:372,12,-37,0,0,0.156444 -13032,3301:373,13,-37,0,0,0.155564 -13033,3301:374,14,-37,0,0,0.162629 -13034,3301:475,15,-37,0,0,0.169023 -13035,3301:476,16,-37,0,0,0.175052 -13036,3301:477,17,-37,0,0,0.1589 -13037,3301:478,18,-37,0,0,0.146464 -13038,3301:479,19,-37,0,0,0.142703 -13039,3302:370,20,-37,0,0,0.148896 -13040,3302:371,21,-37,0,0,0.154904 -13041,3302:372,22,-37,0,0,0.159877 -13042,3302:373,23,-37,0,0,0.159849 -13043,3302:374,24,-37,0,0,0.166143 -13044,3302:475,25,-37,0,0,0.167786 -13045,3302:476,26,-37,0,0,0.165163 -13046,3302:477,27,-37,0,0,0.151558 -13047,3302:478,28,-37,0,0,0.150491 -13048,3302:479,29,-37,0,0,0.163245 -13049,3303:370,30,-37,0,0,0.17587 -13050,3303:371,31,-37,0,0,0.175646 -13051,3303:372,32,-37,0,0,0.174519 -13052,3303:373,33,-37,0,0,0.170864 -13053,3303:374,34,-37,0,0,0.166827 -13054,3303:475,35,-37,0,0,0.15956 -13055,3303:476,36,-37,0,0,0.154474 -13056,3303:477,37,-37,0,0,0.157627 -13057,3303:478,38,-37,0,0,0.156634 -13058,3303:479,39,-37,0,0,0.151241 -13059,3304:370,40,-37,0,0,0.14703 -13060,3304:371,41,-37,0,0,0.149352 -13061,3304:372,42,-37,0,0,0.161081 -13062,3304:373,43,-37,0,0,0.160832 -13063,3304:374,44,-37,0,0,0.161637 -13064,3304:475,45,-37,0,0,0.157859 -13065,3304:476,46,-37,0,0,0.154743 -13066,3304:477,47,-37,0,0,0.150478 -13067,3304:478,48,-37,0,0,0.142301 -13068,3304:479,49,-37,0,0,0.137103 -13069,3305:370,50,-37,0,0,0.137822 -13070,3305:371,51,-37,0,0,0.138789 -13071,3305:372,52,-37,0,0,0.137274 -13072,3305:373,53,-37,0,0,0.133711 -13073,3305:374,54,-37,0,0,0.142088 -13074,3305:475,55,-37,0,0,0.155456 -13075,3305:476,56,-37,0,0,0.148389 -13076,3305:477,57,-37,0,0,0.14249 -13077,3305:478,58,-37,0,0,0.143282 -13078,3305:479,59,-37,0,0,0.14977 -13079,3306:370,60,-37,0,0,0.162265 -13080,3306:371,61,-37,0,0,0.180519 -13081,3306:372,62,-37,0,0,0.146786 -13082,3306:373,63,-37,0,0,0.13426 -13083,3306:374,64,-37,0,0,0.142766 -13084,3306:475,65,-37,0,0,0.128746 -13085,3306:476,66,-37,0,0,0.140518 -13086,3306:477,67,-37,0,0,0.138838 -13087,3306:478,68,-37,0,0,0.139701 -13088,3306:479,69,-37,0,0,0.147883 -13089,3307:370,70,-37,0,0,0.14725 -13090,3307:371,71,-37,0,0,0.146208 -13091,3307:372,72,-37,0,0,0.156823 -13092,3307:374,74,-37,0,0,0.178566 -13093,3307:475,75,-37,0,0,0.18093 -13094,3307:476,76,-37,0,0,0.17584 -13095,3307:477,77,-37,0,0,0.18093 -13096,3307:478,78,-37,0,0,0.176108 -13097,3307:479,79,-37,0,0,0.178898 -13098,3308:370,80,-37,0,0,0.175706 -13099,3308:371,81,-37,0,0,0.180792 -13100,3308:372,82,-37,0,0,0.170602 -13101,3308:373,83,-37,0,0,0.201622 -13102,3308:374,84,-37,0,0,0.191642 -13103,3308:475,85,-37,0,0,0.174312 -13104,3308:476,86,-37,0,0,0.190499 -13105,3308:477,87,-37,0,0,0.199349 -13106,3308:478,88,-37,0,0,0.205352 -13107,3308:479,89,-37,0,0,0.200138 -13108,3309:370,90,-37,0,0,0.18884 -13109,3309:371,91,-37,0,0,0.186741 -13110,3309:372,92,-37,0,0,0.186866 -13111,3309:373,93,-37,0,0,0.184041 -13112,3309:374,94,-37,0,0,0.179593 -13113,3309:475,95,-37,0,0,0.16849 -13114,3309:476,96,-37,0,0,0.16354 -13115,3309:477,97,-37,0,0,0.157914 -13116,3309:478,98,-37,0,0,0.162937 -13117,3309:479,99,-37,0,0,0.170559 -13118,3310:370,100,-37,0,0,0.172354 -13119,3310:371,101,-37,0,0,0.15996 -13120,3310:372,102,-37,0,0,0.170893 -13121,3310:373,103,-37,0,0,0.166927 -13122,3310:374,104,-37,0,0,0.175676 -13123,3310:475,105,-37,0,0,0.181265 -13124,3310:476,106,-37,0,0,0.180853 -13125,3310:477,107,-37,0,0,0.190134 -13126,3310:478,108,-37,0,0,0.190467 -13127,3310:479,109,-37,0,0,0.167241 -13128,3311:370,110,-37,0,0,0.173102 -13129,3311:371,111,-37,0,0,0.20187 -13130,3311:372,112,-37,0,0,0.216047 -13131,3311:373,113,-37,0,0,0.216639 -13132,3311:374,114,-37,0,0,0.202334 -13133,3311:475,115,-37,0,0,0.189329 -13134,3311:476,116,-37,0,0,0.196771 -13135,3311:477,117,-37,0,0,0.201936 -13136,3311:478,118,-37,0,0,0.193543 -13137,3311:479,119,-37,0,0,0.192903 -13138,3312:370,120,-37,0,0,0.211471 -13139,3312:371,121,-37,0,0,0.21711 -13140,3312:372,122,-37,0,0,0.213672 -13141,3312:373,123,-37,0,0,0.213516 -13142,3312:374,124,-37,0,0,0.214156 -13143,3312:475,125,-37,0,0,0.213223 -13144,3312:476,126,-37,0,0,0.210974 -13145,3312:477,127,-37,0,0,0.215091 -13146,3312:478,128,-37,0,0,0.216604 -13147,3312:479,129,-37,0,0,0.214087 -13148,3313:370,130,-37,0,0,0.214259 -13149,3313:371,131,-37,0,0,0.21556 -13150,3313:372,132,-37,0,0,0.214311 -13151,3313:373,133,-37,0,0,0.21238 -13152,3313:374,134,-37,0,0,0.211197 -13153,3313:475,135,-37,0,0,0.212294 -13154,3313:476,136,-37,0,0,0.216988 -13155,3313:477,137,-37,0,0,0.217232 -13156,3313:478,138,-37,0,0,0.211162 -13157,3313:479,139,-37,0,0,0.210478 -13158,3314:370,140,-37,0,0,0.222306 -13159,3314:371,141,-37,0,0,0.220041 -13160,3314:372,142,-37,0,0,0.223552 -13161,3314:373,143,-37,0,0,0.226544 -13162,3314:374,144,-37,0,0,0.231734 -13163,3314:475,145,-37,0,0,0.245564 -13164,3314:476,146,-37,0,0,0.242777 -13165,3314:477,147,-37,0,0,0.219846 -13166,3314:478,148,-37,0,0,0.216621 -13167,3314:479,149,-37,0,0,0.220693 -13168,3315:370,150,-37,0,0,0.232045 -13169,3315:371,151,-37,0,0,0.235912 -13170,3315:372,152,-37,0,0,0.244177 -13171,3315:373,153,-37,0,0,0.242078 -13172,3315:374,154,-37,0,0,0.222981 -13173,3315:475,155,-37,0,0,0.229583 -13174,3315:476,156,-37,0,0,0.223195 -13175,3315:477,157,-37,0,0,0.222057 -13176,3315:478,158,-37,0,0,0.223855 -13177,3315:479,159,-37,0,0,0.229419 -13178,3316:370,160,-37,0,0,0.231022 -13179,3316:371,161,-37,0,0,0.227138 -13180,3316:372,162,-37,0,0,0.232466 -13181,3316:373,163,-37,0,0,0.230383 -13182,3316:374,164,-37,0,0,0.232705 -13183,3316:475,165,-37,0,0,0.234692 -13184,3316:476,166,-37,0,0,0.23532 -13185,3316:477,167,-37,0,0,0.234526 -13186,3316:478,168,-37,0,0,0.244594 -13187,3316:479,169,-37,0,0,0.243079 -13188,3317:370,170,-37,0,0,0.229619 -13189,3317:371,171,-37,0,0,0.201539 -13190,3317:372,172,-37,0,0,0.196885 -13191,3317:373,173,-37,0,0,0.2024 -13192,3317:374,174,-37,0,0,0.201655 -13193,3317:475,175,-37,0,0,0.200549 -13194,3317:476,176,-37,0,0,0.198351 -13195,3317:477,177,-37,0,0,0.195055 -13196,3317:478,178,-37,0,0,0.191531 -13197,3317:479,179,-37,0,0,0.189992 -13198,3318:370,180,-37,0,0,0.190451 -13199,5318:360,-180,-36,0,0,0.22027 -13200,5317:469,-179,-36,0,0,0.222039 -13201,5317:468,-178,-36,0,0,0.223748 -13202,5317:467,-177,-36,0,0,0.227428 -13203,5317:466,-176,-36,0,0,0.22631 -13204,5317:465,-175,-36,0,0,0.223516 -13205,5317:364,-174,-36,0,0,0.226778 -13206,5317:363,-173,-36,0,0,0.242852 -13207,5317:362,-172,-36,0,0,0.237044 -13208,5317:361,-171,-36,0,0,0.244367 -13209,5317:360,-170,-36,0,0,0.253996 -13210,5316:469,-169,-36,0,0,0.262896 -13211,5316:468,-168,-36,0,0,0.252617 -13212,5316:467,-167,-36,0,0,0.249064 -13213,5316:466,-166,-36,0,0,0.251087 -13214,5316:465,-165,-36,0,0,0.25283 -13215,5316:364,-164,-36,0,0,0.251977 -13216,5316:363,-163,-36,0,0,0.25283 -13217,5316:362,-162,-36,0,0,0.257673 -13218,5316:361,-161,-36,0,0,0.258421 -13219,5316:360,-160,-36,0,0,0.258953 -13220,5315:469,-159,-36,0,0,0.258973 -13221,5315:468,-158,-36,0,0,0.260256 -13222,5315:467,-157,-36,0,0,0.265092 -13223,5315:466,-156,-36,0,0,0.267682 -13224,5315:465,-155,-36,0,0,0.268407 -13225,5315:364,-154,-36,0,0,0.268791 -13226,5315:363,-153,-36,0,0,0.272258 -13227,5315:362,-152,-36,0,0,0.27342 -13228,5315:361,-151,-36,0,0,0.270025 -13229,5315:360,-150,-36,0,0,0.268367 -13230,5314:469,-149,-36,0,0,0.272401 -13231,5314:468,-148,-36,0,0,0.270633 -13232,5314:467,-147,-36,0,0,0.270531 -13233,5314:466,-146,-36,0,0,0.270207 -13234,5314:465,-145,-36,0,0,0.268529 -13235,5314:364,-144,-36,0,0,0.269964 -13236,5314:363,-143,-36,0,0,0.274462 -13237,5314:362,-142,-36,0,0,0.275036 -13238,5314:361,-141,-36,0,0,0.272523 -13239,5314:360,-140,-36,0,0,0.272075 -13240,5313:469,-139,-36,0,0,0.269195 -13241,5313:468,-138,-36,0,0,0.264312 -13242,5313:467,-137,-36,0,0,0.260514 -13243,5313:466,-136,-36,0,0,0.260415 -13244,5313:465,-135,-36,0,0,0.258579 -13245,5313:364,-134,-36,0,0,0.257399 -13246,5313:363,-133,-36,0,0,0.25996 -13247,5313:362,-132,-36,0,0,0.261902 -13248,5313:361,-131,-36,0,0,0.258775 -13249,5313:360,-130,-36,0,0,0.255557 -13250,5312:469,-129,-36,0,0,0.255674 -13251,5312:468,-128,-36,0,0,0.260039 -13252,5312:467,-127,-36,0,0,0.263633 -13253,5312:466,-126,-36,0,0,0.261167 -13254,5312:465,-125,-36,0,0,0.26083 -13255,5312:364,-124,-36,0,0,0.259762 -13256,5312:363,-123,-36,0,0,0.259288 -13257,5312:362,-122,-36,0,0,0.256281 -13258,5312:361,-121,-36,0,0,0.253782 -13259,5312:360,-120,-36,0,0,0.252345 -13260,5311:469,-119,-36,0,0,0.247186 -13261,5311:468,-118,-36,0,0,0.248085 -13262,5311:467,-117,-36,0,0,0.244689 -13263,5311:466,-116,-36,0,0,0.24507 -13264,5311:465,-115,-36,0,0,0.243969 -13265,5311:364,-114,-36,0,0,0.241947 -13266,5311:363,-113,-36,0,0,0.232595 -13267,5311:362,-112,-36,0,0,0.233992 -13268,5311:361,-111,-36,0,0,0.2393 -13269,5311:360,-110,-36,0,0,0.230402 -13270,5310:469,-109,-36,0,0,0.225896 -13271,5310:468,-108,-36,0,0,0.22275 -13272,5310:467,-107,-36,0,0,0.223605 -13273,5310:466,-106,-36,0,0,0.226166 -13274,5310:465,-105,-36,0,0,0.221189 -13275,5310:364,-104,-36,0,0,0.219266 -13276,5310:363,-103,-36,0,0,0.222341 -13277,5310:362,-102,-36,0,0,0.214346 -13278,5310:361,-101,-36,0,0,0.215595 -13279,5310:360,-100,-36,0,0,0.219142 -13280,5309:469,-99,-36,0,0,0.219935 -13281,5309:468,-98,-36,0,0,0.216604 -13282,5309:467,-97,-36,0,0,0.213051 -13283,5309:466,-96,-36,0,0,0.210838 -13284,5309:465,-95,-36,0,0,0.211762 -13285,5309:364,-94,-36,0,0,0.213292 -13286,5309:363,-93,-36,0,0,0.215768 -13287,5309:362,-92,-36,0,0,0.216883 -13288,5309:361,-91,-36,0,0,0.211334 -13289,5309:360,-90,-36,0,0,0.216429 -13290,5308:469,-89,-36,0,0,0.214744 -13291,5308:468,-88,-36,0,0,0.211676 -13292,5308:467,-87,-36,0,0,0.212483 -13293,5308:466,-86,-36,0,0,0.209507 -13294,5308:465,-85,-36,0,0,0.21697 -13295,5308:364,-84,-36,0,0,0.214779 -13296,5308:363,-83,-36,0,0,0.211556 -13297,5308:362,-82,-36,0,0,0.212071 -13298,5308:361,-81,-36,0,0,0.215664 -13299,5308:360,-80,-36,0,0,0.216029 -13300,5307:469,-79,-36,0,0,0.2208 -13301,5307:468,-78,-36,0,0,0.220905 -13302,5307:467,-77,-36,0,0,0.219494 -13303,5307:466,-76,-36,0,0,0.218879 -13304,5307:465,-75,-36,0,0,0.230475 -13305,5306:467,-67,-36,0,0,0.25681 -13306,5306:466,-66,-36,0,0,0.251107 -13307,5306:465,-65,-36,0,0,0.253141 -13308,5306:364,-64,-36,0,0,0.249891 -13309,5306:363,-63,-36,0,0,0.243912 -13310,5306:362,-62,-36,0,0,0.247664 -13311,5306:361,-61,-36,0,0,0.246574 -13312,5306:360,-60,-36,0,0,0.220058 -13313,5305:469,-59,-36,0,0,0.186788 -13314,5305:468,-58,-36,0,0,0.214225 -13315,5305:467,-57,-36,0,0,0.264872 -13316,5305:466,-56,-36,0,0,0.28056 -13317,5305:465,-55,-36,0,0,0.305211 -13318,5305:364,-54,-36,0,0,0.342157 -13319,5305:363,-53,-36,0,0,0.349454 -13320,5305:362,-52,-36,0,0,0.300547 -13321,5305:361,-51,-36,0,0,0.279172 -13322,5305:360,-50,-36,0,0,0.243647 -13323,5304:469,-49,-36,0,0,0.233789 -13324,5304:468,-48,-36,0,0,0.235468 -13325,5304:467,-47,-36,0,0,0.235672 -13326,5304:466,-46,-36,0,0,0.22951 -13327,5304:465,-45,-36,0,0,0.222306 -13328,5304:364,-44,-36,0,0,0.217844 -13329,5304:363,-43,-36,0,0,0.214173 -13330,5304:362,-42,-36,0,0,0.210376 -13331,5304:361,-41,-36,0,0,0.210872 -13332,5304:360,-40,-36,0,0,0.210427 -13333,5303:469,-39,-36,0,0,0.200961 -13334,5303:468,-38,-36,0,0,0.202135 -13335,5303:467,-37,-36,0,0,0.200879 -13336,5303:466,-36,-36,0,0,0.193303 -13337,5303:465,-35,-36,0,0,0.186538 -13338,5303:364,-34,-36,0,0,0.182166 -13339,5303:363,-33,-36,0,0,0.19023 -13340,5303:362,-32,-36,0,0,0.189534 -13341,5303:361,-31,-36,0,0,0.176079 -13342,5303:360,-30,-36,0,0,0.172809 -13343,5302:469,-29,-36,0,0,0.185853 -13344,5302:468,-28,-36,0,0,0.178325 -13345,5302:467,-27,-36,0,0,0.178717 -13346,5302:466,-26,-36,0,0,0.193463 -13347,5302:465,-25,-36,0,0,0.178853 -13348,5302:364,-24,-36,0,0,0.195976 -13349,5302:363,-23,-36,0,0,0.199251 -13350,5302:362,-22,-36,0,0,0.209694 -13351,5302:361,-21,-36,0,0,0.208912 -13352,5302:360,-20,-36,0,0,0.200154 -13353,5301:469,-19,-36,0,0,0.17816 -13354,5301:468,-18,-36,0,0,0.198122 -13355,5301:467,-17,-36,0,0,0.18364 -13356,5301:466,-16,-36,0,0,0.162811 -13357,5301:465,-15,-36,0,0,0.169139 -13358,5301:364,-14,-36,0,0,0.171534 -13359,5301:363,-13,-36,0,0,0.172061 -13360,5301:362,-12,-36,0,0,0.187694 -13361,5301:361,-11,-36,0,0,0.184566 -13362,5301:360,-10,-36,0,0,0.181707 -13363,5300:469,-9,-36,0,0,0.182136 -13364,5300:468,-8,-36,0,0,0.18985 -13365,5300:467,-7,-36,0,0,0.193383 -13366,5300:466,-6,-36,0,0,0.19034 -13367,5300:465,-5,-36,0,0,0.197275 -13368,5300:364,-4,-36,0,0,0.187835 -13369,5300:363,-3,-36,0,0,0.184891 -13370,5300:362,-2,-36,0,0,0.203497 -13371,5300:361,-1,-36,0,0,0.198236 -13372,3300:361,0,-36,0,0,0.189882 -13373,3300:361,1,-36,0,0,0.19142 -13374,3300:362,2,-36,0,0,0.187835 -13375,3300:363,3,-36,0,0,0.174963 -13376,3300:364,4,-36,0,0,0.176242 -13377,3300:465,5,-36,0,0,0.180033 -13378,3300:466,6,-36,0,0,0.173854 -13379,3300:467,7,-36,0,0,0.183194 -13380,3300:468,8,-36,0,0,0.193575 -13381,3300:469,9,-36,0,0,0.200483 -13382,3301:360,10,-36,0,0,0.19372 -13383,3301:361,11,-36,0,0,0.17005 -13384,3301:362,12,-36,0,0,0.167227 -13385,3301:363,13,-36,0,0,0.182902 -13386,3301:364,14,-36,0,0,0.184164 -13387,3301:465,15,-36,0,0,0.176138 -13388,3301:466,16,-36,0,0,0.175899 -13389,3301:467,17,-36,0,0,0.17325 -13390,3301:468,18,-36,0,0,0.157054 -13391,3301:469,19,-36,0,0,0.149809 -13392,3302:360,20,-36,0,0,0.155146 -13393,3302:361,21,-36,0,0,0.164103 -13394,3302:362,22,-36,0,0,0.163399 -13395,3302:363,23,-36,0,0,0.165617 -13396,3302:364,24,-36,0,0,0.178325 -13397,3302:465,25,-36,0,0,0.173132 -13398,3302:466,26,-36,0,0,0.180914 -13399,3302:467,27,-36,0,0,0.183363 -13400,3302:468,28,-36,0,0,0.173014 -13401,3302:469,29,-36,0,0,0.165418 -13402,3303:360,30,-36,0,0,0.190435 -13403,3303:361,31,-36,0,0,0.185589 -13404,3303:362,32,-36,0,0,0.172442 -13405,3303:363,33,-36,0,0,0.171958 -13406,3303:364,34,-36,0,0,0.171724 -13407,3303:465,35,-36,0,0,0.173559 -13408,3303:466,36,-36,0,0,0.167614 -13409,3303:467,37,-36,0,0,0.160582 -13410,3303:468,38,-36,0,0,0.160804 -13411,3303:469,39,-36,0,0,0.16354 -13412,3304:360,40,-36,0,0,0.16687 -13413,3304:361,41,-36,0,0,0.177739 -13414,3304:362,42,-36,0,0,0.169081 -13415,3304:363,43,-36,0,0,0.167413 -13416,3304:364,44,-36,0,0,0.164922 -13417,3304:465,45,-36,0,0,0.162419 -13418,3304:466,46,-36,0,0,0.158804 -13419,3304:467,47,-36,0,0,0.149299 -13420,3304:468,48,-36,0,0,0.141901 -13421,3304:469,49,-36,0,0,0.147663 -13422,3305:360,50,-36,0,0,0.141726 -13423,3305:361,51,-36,0,0,0.141276 -13424,3305:362,52,-36,0,0,0.136569 -13425,3305:363,53,-36,0,0,0.141926 -13426,3305:364,54,-36,0,0,0.148791 -13427,3305:465,55,-36,0,0,0.155416 -13428,3305:466,56,-36,0,0,0.195507 -13429,3305:467,57,-36,0,0,0.170399 -13430,3305:468,58,-36,0,0,0.163245 -13431,3305:469,59,-36,0,0,0.203797 -13432,3306:360,60,-36,0,0,0.226112 -13433,3306:361,61,-36,0,0,0.202699 -13434,3306:362,62,-36,0,0,0.207253 -13435,3306:363,63,-36,0,0,0.148609 -13436,3306:364,64,-36,0,0,0.16717 -13437,3306:465,65,-36,0,0,0.188322 -13438,3306:466,66,-36,0,0,0.146156 -13439,3306:467,67,-36,0,0,0.135278 -13440,3306:468,68,-36,0,0,0.141226 -13441,3306:469,69,-36,0,0,0.151479 -13442,3307:360,70,-36,0,0,0.162447 -13443,3307:361,71,-36,0,0,0.181601 -13444,3307:362,72,-36,0,0,0.198907 -13445,3307:364,74,-36,0,0,0.238459 -13446,3307:465,75,-36,0,0,0.238571 -13447,3307:466,76,-36,0,0,0.211008 -13448,3307:467,77,-36,0,0,0.197503 -13449,3307:468,78,-36,0,0,0.200499 -13450,3307:469,79,-36,0,0,0.196252 -13451,3308:360,80,-36,0,0,0.192583 -13452,3308:361,81,-36,0,0,0.196106 -13453,3308:362,82,-36,0,0,0.19417 -13454,3308:363,83,-36,0,0,0.205436 -13455,3308:364,84,-36,0,0,0.198792 -13456,3308:465,85,-36,0,0,0.191992 -13457,3308:466,86,-36,0,0,0.199415 -13458,3308:467,87,-36,0,0,0.211265 -13459,3308:468,88,-36,0,0,0.204749 -13460,3308:469,89,-36,0,0,0.195944 -13461,3309:360,90,-36,0,0,0.187084 -13462,3309:361,91,-36,0,0,0.184891 -13463,3309:362,92,-36,0,0,0.186632 -13464,3309:363,93,-36,0,0,0.184535 -13465,3309:364,94,-36,0,0,0.176064 -13466,3309:465,95,-36,0,0,0.171783 -13467,3309:466,96,-36,0,0,0.175453 -13468,3309:467,97,-36,0,0,0.175646 -13469,3309:468,98,-36,0,0,0.163484 -13470,3309:469,99,-36,0,0,0.176855 -13471,3310:360,100,-36,0,0,0.191133 -13472,3310:361,101,-36,0,0,0.174563 -13473,3310:362,102,-36,0,0,0.173957 -13474,3310:363,103,-36,0,0,0.184365 -13475,3310:364,104,-36,0,0,0.18096 -13476,3310:465,105,-36,0,0,0.17831 -13477,3310:466,106,-36,0,0,0.182733 -13478,3310:467,107,-36,0,0,0.221366 -13479,3310:468,108,-36,0,0,0.218387 -13480,3310:469,109,-36,0,0,0.192503 -13481,3311:360,110,-36,0,0,0.217267 -13482,3311:361,111,-36,0,0,0.217127 -13483,3311:362,112,-36,0,0,0.213793 -13484,3311:363,113,-36,0,0,0.214242 -13485,3311:364,114,-36,0,0,0.212002 -13486,3311:465,115,-36,0,0,0.208709 -13487,3311:466,116,-36,0,0,0.223337 -13488,3311:467,117,-36,0,0,0.222946 -13489,3311:468,118,-36,0,0,0.221454 -13490,3311:469,119,-36,0,0,0.217145 -13491,3312:360,120,-36,0,0,0.218019 -13492,3312:361,121,-36,0,0,0.221366 -13493,3312:362,122,-36,0,0,0.218317 -13494,3312:363,123,-36,0,0,0.21636 -13495,3312:364,124,-36,0,0,0.216883 -13496,3312:465,125,-36,0,0,0.217879 -13497,3312:466,126,-36,0,0,0.22057 -13498,3312:467,127,-36,0,0,0.222537 -13499,3312:468,128,-36,0,0,0.22373 -13500,3312:469,129,-36,0,0,0.223071 -13501,3313:360,130,-36,0,0,0.219617 -13502,3313:361,131,-36,0,0,0.219424 -13503,3313:362,132,-36,0,0,0.219213 -13504,3313:363,133,-36,0,0,0.218177 -13505,3313:364,134,-36,0,0,0.219565 -13506,3313:465,135,-36,0,0,0.222039 -13507,3313:466,136,-36,0,0,0.220517 -13508,3313:467,137,-36,0,0,0.219142 -13509,3313:468,138,-36,0,0,0.22482 -13510,3313:469,139,-36,0,0,0.231204 -13511,3314:360,140,-36,0,0,0.235006 -13512,3314:361,141,-36,0,0,0.253821 -13513,3314:362,142,-36,0,0,0.256574 -13514,3314:363,143,-36,0,0,0.240687 -13515,3314:364,144,-36,0,0,0.234582 -13516,3314:465,145,-36,0,0,0.25583 -13517,3314:466,146,-36,0,0,0.259624 -13518,3314:467,147,-36,0,0,0.260395 -13519,3314:468,148,-36,0,0,0.291978 -13520,3314:469,149,-36,0,0,0.278202 -13521,3315:360,150,-36,0,0,0.266556 -13522,3315:361,151,-36,0,0,0.258362 -13523,3315:362,152,-36,0,0,0.252093 -13524,3315:363,153,-36,0,0,0.236932 -13525,3315:364,154,-36,0,0,0.23671 -13526,3315:465,155,-36,0,0,0.238403 -13527,3315:466,156,-36,0,0,0.236765 -13528,3315:467,157,-36,0,0,0.241099 -13529,3315:468,158,-36,0,0,0.242588 -13530,3315:469,159,-36,0,0,0.241062 -13531,3316:360,160,-36,0,0,0.241758 -13532,3316:361,161,-36,0,0,0.237825 -13533,3316:362,162,-36,0,0,0.242381 -13534,3316:363,163,-36,0,0,0.246975 -13535,3316:364,164,-36,0,0,0.251242 -13536,3316:465,165,-36,0,0,0.250065 -13537,3316:466,166,-36,0,0,0.247836 -13538,3317:361,171,-36,0,0,0.248162 -13539,3317:362,172,-36,0,0,0.204917 -13540,3317:363,173,-36,0,0,0.20485 -13541,3317:364,174,-36,0,0,0.209541 -13542,3317:465,175,-36,0,0,0.212604 -13543,3317:466,176,-36,0,0,0.207067 -13544,3317:467,177,-36,0,0,0.204114 -13545,3317:468,178,-36,0,0,0.206427 -13546,3317:469,179,-36,0,0,0.21381 -13547,3318:360,180,-36,0,0,0.22027 -13548,5318:350,-180,-35,0,0,0.216412 -13549,5317:459,-179,-35,0,0,0.223766 -13550,5317:458,-178,-35,0,0,0.230056 -13551,5317:457,-177,-35,0,0,0.236042 -13552,5317:456,-176,-35,0,0,0.242418 -13553,5317:455,-175,-35,0,0,0.235246 -13554,5317:354,-174,-35,0,0,0.234858 -13555,5317:353,-173,-35,0,0,0.281016 -13556,5317:352,-172,-35,0,0,0.282972 -13557,5317:351,-171,-35,0,0,0.26867 -13558,5317:350,-170,-35,0,0,0.246861 -13559,5316:459,-169,-35,0,0,0.260692 -13560,5316:458,-168,-35,0,0,0.270126 -13561,5316:457,-167,-35,0,0,0.257713 -13562,5316:456,-166,-35,0,0,0.258343 -13563,5316:455,-165,-35,0,0,0.262398 -13564,5316:354,-164,-35,0,0,0.263633 -13565,5316:353,-163,-35,0,0,0.263234 -13566,5316:352,-162,-35,0,0,0.264512 -13567,5316:351,-161,-35,0,0,0.266455 -13568,5316:350,-160,-35,0,0,0.269094 -13569,5315:459,-159,-35,0,0,0.269276 -13570,5315:458,-158,-35,0,0,0.27116 -13571,5315:457,-157,-35,0,0,0.276657 -13572,5315:456,-156,-35,0,0,0.281577 -13573,5315:455,-155,-35,0,0,0.284621 -13574,5315:354,-154,-35,0,0,0.285836 -13575,5315:353,-153,-35,0,0,0.286781 -13576,5315:352,-152,-35,0,0,0.284496 -13577,5315:351,-151,-35,0,0,0.281286 -13578,5315:350,-150,-35,0,0,0.28412 -13579,5314:459,-149,-35,0,0,0.289584 -13580,5314:458,-148,-35,0,0,0.28933 -13581,5314:457,-147,-35,0,0,0.285459 -13582,5314:456,-146,-35,0,0,0.287728 -13583,5314:455,-145,-35,0,0,0.291215 -13584,5314:354,-144,-35,0,0,0.294406 -13585,5314:353,-143,-35,0,0,0.294555 -13586,5314:352,-142,-35,0,0,0.293808 -13587,5314:351,-141,-35,0,0,0.290642 -13588,5314:350,-140,-35,0,0,0.288507 -13589,5313:459,-139,-35,0,0,0.286823 -13590,5313:458,-138,-35,0,0,0.281245 -13591,5313:457,-137,-35,0,0,0.276267 -13592,5313:456,-136,-35,0,0,0.274688 -13593,5313:455,-135,-35,0,0,0.276637 -13594,5313:354,-134,-35,0,0,0.276739 -13595,5313:353,-133,-35,0,0,0.276739 -13596,5313:352,-132,-35,0,0,0.27524 -13597,5313:351,-131,-35,0,0,0.274462 -13598,5313:350,-130,-35,0,0,0.278367 -13599,5312:459,-129,-35,0,0,0.27847 -13600,5312:458,-128,-35,0,0,0.276616 -13601,5312:457,-127,-35,0,0,0.278057 -13602,5312:456,-126,-35,0,0,0.277357 -13603,5312:455,-125,-35,0,0,0.276677 -13604,5312:354,-124,-35,0,0,0.273849 -13605,5312:353,-123,-35,0,0,0.273012 -13606,5312:352,-122,-35,0,0,0.271384 -13607,5312:351,-121,-35,0,0,0.268488 -13608,5312:350,-120,-35,0,0,0.264432 -13609,5311:459,-119,-35,0,0,0.263733 -13610,5311:458,-118,-35,0,0,0.26212 -13611,5311:457,-117,-35,0,0,0.258263 -13612,5311:456,-116,-35,0,0,0.256732 -13613,5311:455,-115,-35,0,0,0.260474 -13614,5311:354,-114,-35,0,0,0.257261 -13615,5311:353,-113,-35,0,0,0.24709 -13616,5311:352,-112,-35,0,0,0.248124 -13617,5311:351,-111,-35,0,0,0.252345 -13618,5311:350,-110,-35,0,0,0.253568 -13619,5310:459,-109,-35,0,0,0.246784 -13620,5310:458,-108,-35,0,0,0.241495 -13621,5310:457,-107,-35,0,0,0.236672 -13622,5310:456,-106,-35,0,0,0.234932 -13623,5310:455,-105,-35,0,0,0.235801 -13624,5310:354,-104,-35,0,0,0.231149 -13625,5310:353,-103,-35,0,0,0.234342 -13626,5310:352,-102,-35,0,0,0.228712 -13627,5310:351,-101,-35,0,0,0.228259 -13628,5310:350,-100,-35,0,0,0.229038 -13629,5309:459,-99,-35,0,0,0.230292 -13630,5309:458,-98,-35,0,0,0.228277 -13631,5309:457,-97,-35,0,0,0.228585 -13632,5309:456,-96,-35,0,0,0.232595 -13633,5309:455,-95,-35,0,0,0.226778 -13634,5309:354,-94,-35,0,0,0.222217 -13635,5309:353,-93,-35,0,0,0.225035 -13636,5309:352,-92,-35,0,0,0.229419 -13637,5309:351,-91,-35,0,0,0.227698 -13638,5309:350,-90,-35,0,0,0.225071 -13639,5308:459,-89,-35,0,0,0.221224 -13640,5308:458,-88,-35,0,0,0.221012 -13641,5308:457,-87,-35,0,0,0.223801 -13642,5308:456,-86,-35,0,0,0.225107 -13643,5308:455,-85,-35,0,0,0.223284 -13644,5308:354,-84,-35,0,0,0.222555 -13645,5308:353,-83,-35,0,0,0.21858 -13646,5308:352,-82,-35,0,0,0.222128 -13647,5308:351,-81,-35,0,0,0.223498 -13648,5308:350,-80,-35,0,0,0.225018 -13649,5307:459,-79,-35,0,0,0.227626 -13650,5307:458,-78,-35,0,0,0.228639 -13651,5307:457,-77,-35,0,0,0.230201 -13652,5307:456,-76,-35,0,0,0.229383 -13653,5307:455,-75,-35,0,0,0.23988 -13654,5306:455,-65,-35,0,0,0.269883 -13655,5306:354,-64,-35,0,0,0.267199 -13656,5306:353,-63,-35,0,0,0.266576 -13657,5306:352,-62,-35,0,0,0.267259 -13658,5306:351,-61,-35,0,0,0.264932 -13659,5306:350,-60,-35,0,0,0.233605 -13660,5305:459,-59,-35,0,0,0.196544 -13661,5305:458,-58,-35,0,0,0.249853 -13662,5305:457,-57,-35,0,0,0.275425 -13663,5305:456,-56,-35,0,0,0.275691 -13664,5305:455,-55,-35,0,0,0.313353 -13665,5305:354,-54,-35,0,0,0.335413 -13666,5305:353,-53,-35,0,0,0.321478 -13667,5305:352,-52,-35,0,0,0.286886 -13668,5305:351,-51,-35,0,0,0.25353 -13669,5305:350,-50,-35,0,0,0.244784 -13670,5304:459,-49,-35,0,0,0.244879 -13671,5304:458,-48,-35,0,0,0.250219 -13672,5304:457,-47,-35,0,0,0.238757 -13673,5304:456,-46,-35,0,0,0.234286 -13674,5304:455,-45,-35,0,0,0.227319 -13675,5304:354,-44,-35,0,0,0.220587 -13676,5304:353,-43,-35,0,0,0.216778 -13677,5304:352,-42,-35,0,0,0.214623 -13678,5304:351,-41,-35,0,0,0.212449 -13679,5304:350,-40,-35,0,0,0.212724 -13680,5303:459,-39,-35,0,0,0.208284 -13681,5303:458,-38,-35,0,0,0.20495 -13682,5303:457,-37,-35,0,0,0.199563 -13683,5303:456,-36,-35,0,0,0.197959 -13684,5303:455,-35,-35,0,0,0.195588 -13685,5303:354,-34,-35,0,0,0.196836 -13686,5303:353,-33,-35,0,0,0.189676 -13687,5303:352,-32,-35,0,0,0.184969 -13688,5303:351,-31,-35,0,0,0.181265 -13689,5303:350,-30,-35,0,0,0.197438 -13690,5302:459,-29,-35,0,0,0.219653 -13691,5302:458,-28,-35,0,0,0.208369 -13692,5302:457,-27,-35,0,0,0.206949 -13693,5302:456,-26,-35,0,0,0.211111 -13694,5302:455,-25,-35,0,0,0.195281 -13695,5302:354,-24,-35,0,0,0.204231 -13696,5302:353,-23,-35,0,0,0.220393 -13697,5302:352,-22,-35,0,0,0.228187 -13698,5302:351,-21,-35,0,0,0.216099 -13699,5302:350,-20,-35,0,0,0.211848 -13700,5301:459,-19,-35,0,0,0.211882 -13701,5301:458,-18,-35,0,0,0.207743 -13702,5301:457,-17,-35,0,0,0.206679 -13703,5301:456,-16,-35,0,0,0.17816 -13704,5301:455,-15,-35,0,0,0.170631 -13705,5301:354,-14,-35,0,0,0.199365 -13706,5301:353,-13,-35,0,0,0.218072 -13707,5301:352,-12,-35,0,0,0.234102 -13708,5301:351,-11,-35,0,0,0.230056 -13709,5301:350,-10,-35,0,0,0.228349 -13710,5300:459,-9,-35,0,0,0.242343 -13711,5300:458,-8,-35,0,0,0.236246 -13712,5300:457,-7,-35,0,0,0.237025 -13713,5300:456,-6,-35,0,0,0.226418 -13714,5300:455,-5,-35,0,0,0.209031 -13715,5300:354,-4,-35,0,0,0.210155 -13716,5300:353,-3,-35,0,0,0.224838 -13717,5300:352,-2,-35,0,0,0.227283 -13718,5300:351,-1,-35,0,0,0.218072 -13719,3300:351,0,-35,0,0,0.218089 -13720,3300:351,1,-35,0,0,0.220729 -13721,3300:352,2,-35,0,0,0.219829 -13722,3300:353,3,-35,0,0,0.217512 -13723,3300:354,4,-35,0,0,0.211162 -13724,3300:455,5,-35,0,0,0.199907 -13725,3300:456,6,-35,0,0,0.188699 -13726,3300:457,7,-35,0,0,0.193672 -13727,3300:458,8,-35,0,0,0.197112 -13728,3300:459,9,-35,0,0,0.205788 -13729,3301:350,10,-35,0,0,0.197584 -13730,3301:351,11,-35,0,0,0.189093 -13731,3301:352,12,-35,0,0,0.193639 -13732,3301:353,13,-35,0,0,0.21106 -13733,3301:354,14,-35,0,0,0.195265 -13734,3301:455,15,-35,0,0,0.209116 -13735,3301:456,16,-35,0,0,0.221561 -13736,3301:457,17,-35,0,0,0.202218 -13737,3301:458,18,-35,0,0,0.200105 -13738,3301:459,19,-35,0,0,0.210547 -13739,3302:350,20,-35,0,0,0.204465 -13740,3302:351,21,-35,0,0,0.195152 -13741,3302:352,22,-35,0,0,0.217564 -13742,3302:353,23,-35,0,0,0.229655 -13743,3302:354,24,-35,0,0,0.188605 -13744,3302:455,25,-35,0,0,0.187585 -13745,3302:456,26,-35,0,0,0.195669 -13746,3302:457,27,-35,0,0,0.19708 -13747,3302:458,28,-35,0,0,0.200253 -13748,3302:459,29,-35,0,0,0.187131 -13749,3303:350,30,-35,0,0,0.202516 -13750,3303:351,31,-35,0,0,0.225879 -13751,3303:352,32,-35,0,0,0.223569 -13752,3303:353,33,-35,0,0,0.202782 -13753,3303:354,34,-35,0,0,0.189109 -13754,3303:455,35,-35,0,0,0.18604 -13755,3303:456,36,-35,0,0,0.187053 -13756,3303:457,37,-35,0,0,0.182657 -13757,3303:458,38,-35,0,0,0.1769 -13758,3303:459,39,-35,0,0,0.174297 -13759,3304:350,40,-35,0,0,0.179321 -13760,3304:351,41,-35,0,0,0.182258 -13761,3304:352,42,-35,0,0,0.172236 -13762,3304:353,43,-35,0,0,0.168735 -13763,3304:354,44,-35,0,0,0.167084 -13764,3304:455,45,-35,0,0,0.162852 -13765,3304:456,46,-35,0,0,0.155416 -13766,3304:457,47,-35,0,0,0.147495 -13767,3304:458,48,-35,0,0,0.1496 -13768,3304:459,49,-35,0,0,0.152751 -13769,3305:350,50,-35,0,0,0.145032 -13770,3305:351,51,-35,0,0,0.144142 -13771,3305:352,52,-35,0,0,0.156674 -13772,3305:353,53,-35,0,0,0.162251 -13773,3305:354,54,-35,0,0,0.17973 -13774,3305:455,55,-35,0,0,0.178747 -13775,3305:456,56,-35,0,0,0.180321 -13776,3305:457,57,-35,0,0,0.240743 -13777,3305:458,58,-35,0,0,0.253024 -13778,3305:459,59,-35,0,0,0.279938 -13779,3306:350,60,-35,0,0,0.292744 -13780,3306:351,61,-35,0,0,0.278408 -13781,3306:352,62,-35,0,0,0.227175 -13782,3306:353,63,-35,0,0,0.236598 -13783,3306:354,64,-35,0,0,0.263534 -13784,3306:455,65,-35,0,0,0.270085 -13785,3306:456,66,-35,0,0,0.204632 -13786,3306:457,67,-35,0,0,0.205318 -13787,3306:458,68,-35,0,0,0.262458 -13788,3306:459,69,-35,0,0,0.271221 -13789,3307:350,70,-35,0,0,0.269822 -13790,3307:351,71,-35,0,0,0.26087 -13791,3307:352,72,-35,0,0,0.231387 -13792,3307:354,74,-35,0,0,0.25583 -13793,3307:455,75,-35,0,0,0.255205 -13794,3307:456,76,-35,0,0,0.221047 -13795,3307:457,77,-35,0,0,0.21556 -13796,3307:458,78,-35,0,0,0.228929 -13797,3307:459,79,-35,0,0,0.240574 -13798,3308:350,80,-35,0,0,0.235376 -13799,3308:351,81,-35,0,0,0.235394 -13800,3308:352,82,-35,0,0,0.229074 -13801,3308:353,83,-35,0,0,0.214519 -13802,3308:354,84,-35,0,0,0.209048 -13803,3308:455,85,-35,0,0,0.217284 -13804,3308:456,86,-35,0,0,0.230056 -13805,3308:457,87,-35,0,0,0.213344 -13806,3308:458,88,-35,0,0,0.20557 -13807,3308:459,89,-35,0,0,0.201258 -13808,3309:350,90,-35,0,0,0.195847 -13809,3309:351,91,-35,0,0,0.19609 -13810,3309:352,92,-35,0,0,0.195184 -13811,3309:353,93,-35,0,0,0.195523 -13812,3309:354,94,-35,0,0,0.192519 -13813,3309:455,95,-35,0,0,0.187616 -13814,3309:456,96,-35,0,0,0.200335 -13815,3309:457,97,-35,0,0,0.207405 -13816,3309:458,98,-35,0,0,0.216168 -13817,3309:459,99,-35,0,0,0.238497 -13818,3310:350,100,-35,0,0,0.236932 -13819,3310:351,101,-35,0,0,0.1938 -13820,3310:352,102,-35,0,0,0.190261 -13821,3310:353,103,-35,0,0,0.229837 -13822,3310:354,104,-35,0,0,0.228187 -13823,3310:455,105,-35,0,0,0.205402 -13824,3310:456,106,-35,0,0,0.207422 -13825,3310:457,107,-35,0,0,0.229456 -13826,3310:458,108,-35,0,0,0.207709 -13827,3310:459,109,-35,0,0,0.202384 -13828,3311:350,110,-35,0,0,0.230657 -13829,3311:351,111,-35,0,0,0.220287 -13830,3311:352,112,-35,0,0,0.214311 -13831,3311:353,113,-35,0,0,0.220835 -13832,3311:354,114,-35,0,0,0.225233 -13833,3311:455,115,-35,0,0,0.227283 -13834,3311:456,116,-35,0,0,0.226634 -13835,3311:457,117,-35,0,0,0.224194 -13836,3311:458,118,-35,0,0,0.222537 -13837,3311:459,119,-35,0,0,0.222395 -13838,3312:350,120,-35,0,0,0.223534 -13839,3312:351,121,-35,0,0,0.228241 -13840,3312:352,122,-35,0,0,0.224337 -13841,3312:353,123,-35,0,0,0.22332 -13842,3312:354,124,-35,0,0,0.224856 -13843,3312:455,125,-35,0,0,0.226076 -13844,3312:456,126,-35,0,0,0.227879 -13845,3312:457,127,-35,0,0,0.228385 -13846,3312:458,128,-35,0,0,0.228802 -13847,3312:459,129,-35,0,0,0.231095 -13848,3313:350,130,-35,0,0,0.229655 -13849,3313:351,131,-35,0,0,0.228984 -13850,3313:352,132,-35,0,0,0.229456 -13851,3313:353,133,-35,0,0,0.227987 -13852,3313:354,134,-35,0,0,0.227861 -13853,3313:455,135,-35,0,0,0.227085 -13854,3313:456,136,-35,0,0,0.229437 -13855,3313:457,137,-35,0,0,0.227933 -13856,3313:458,138,-35,0,0,0.229819 -13857,3313:459,139,-35,0,0,0.238142 -13858,3314:350,140,-35,0,0,0.240762 -13859,3314:351,141,-35,0,0,0.264952 -13860,3314:352,142,-35,0,0,0.260613 -13861,3314:353,143,-35,0,0,0.254367 -13862,3314:354,144,-35,0,0,0.257673 -13863,3314:455,145,-35,0,0,0.261108 -13864,3314:456,146,-35,0,0,0.271018 -13865,3314:457,147,-35,0,0,0.290939 -13866,3314:458,148,-35,0,0,0.309146 -13867,3314:459,149,-35,0,0,0.270937 -13868,3315:350,150,-35,0,0,0.261386 -13869,3315:351,151,-35,0,0,0.258362 -13870,3315:352,152,-35,0,0,0.253646 -13871,3315:353,153,-35,0,0,0.255596 -13872,3315:354,154,-35,0,0,0.263514 -13873,3315:455,155,-35,0,0,0.263195 -13874,3315:456,156,-35,0,0,0.259367 -13875,3315:457,157,-35,0,0,0.258008 -13876,3315:458,158,-35,0,0,0.255576 -13877,3315:459,159,-35,0,0,0.255909 -13878,3316:350,160,-35,0,0,0.262955 -13879,3316:351,161,-35,0,0,0.257792 -13880,3316:352,162,-35,0,0,0.255928 -13881,3316:353,163,-35,0,0,0.263075 -13882,3316:354,164,-35,0,0,0.263234 -13883,3316:455,165,-35,0,0,0.262578 -13884,3316:456,166,-35,0,0,0.265312 -13885,3316:457,167,-35,0,0,0.266335 -13886,3317:352,172,-35,0,0,0.238608 -13887,3317:353,173,-35,0,0,0.223498 -13888,3317:354,174,-35,0,0,0.218072 -13890,3317:456,176,-35,0,0,0.221951 -13891,3317:457,177,-35,0,0,0.215508 -13892,3317:458,178,-35,0,0,0.214848 -13893,3317:459,179,-35,0,0,0.213879 -13894,3318:350,180,-35,0,0,0.216412 -13895,5318:140,-180,-34,0,0,0.260039 -13896,5317:249,-179,-34,0,0,0.252694 -13897,5317:248,-178,-34,0,0,0.262001 -13898,5317:247,-177,-34,0,0,0.263334 -13899,5317:246,-176,-34,0,0,0.259466 -13900,5317:245,-175,-34,0,0,0.250933 -13901,5317:144,-174,-34,0,0,0.27816 -13902,5317:143,-173,-34,0,0,0.296394 -13903,5317:142,-172,-34,0,0,0.28164 -13904,5317:141,-171,-34,0,0,0.280809 -13905,5317:140,-170,-34,0,0,0.274503 -13906,5316:249,-169,-34,0,0,0.274974 -13907,5316:248,-168,-34,0,0,0.271445 -13908,5316:247,-167,-34,0,0,0.267763 -13909,5316:246,-166,-34,0,0,0.275917 -13910,5316:245,-165,-34,0,0,0.273788 -13911,5316:144,-164,-34,0,0,0.275118 -13912,5316:143,-163,-34,0,0,0.273951 -13913,5316:142,-162,-34,0,0,0.27604 -13914,5316:141,-161,-34,0,0,0.278449 -13915,5316:140,-160,-34,0,0,0.280809 -13916,5315:249,-159,-34,0,0,0.283305 -13917,5315:248,-158,-34,0,0,0.285417 -13918,5315:247,-157,-34,0,0,0.292 -13919,5315:246,-156,-34,0,0,0.296266 -13920,5315:245,-155,-34,0,0,0.300806 -13921,5315:144,-154,-34,0,0,0.302646 -13922,5315:143,-153,-34,0,0,0.300201 -13923,5315:142,-152,-34,0,0,0.297081 -13924,5315:141,-151,-34,0,0,0.296866 -13925,5315:140,-150,-34,0,0,0.302624 -13926,5314:249,-149,-34,0,0,0.306497 -13927,5314:248,-148,-34,0,0,0.304448 -13928,5314:247,-147,-34,0,0,0.305232 -13929,5314:246,-146,-34,0,0,0.313552 -13930,5314:245,-145,-34,0,0,0.311499 -13931,5314:144,-144,-34,0,0,0.308883 -13932,5314:143,-143,-34,0,0,0.308905 -13933,5314:142,-142,-34,0,0,0.309497 -13934,5314:141,-141,-34,0,0,0.306192 -13935,5314:140,-140,-34,0,0,0.305865 -13936,5313:249,-139,-34,0,0,0.30484 -13937,5313:248,-138,-34,0,0,0.300589 -13938,5313:247,-137,-34,0,0,0.297424 -13939,5313:246,-136,-34,0,0,0.295666 -13940,5313:245,-135,-34,0,0,0.295559 -13941,5313:144,-134,-34,0,0,0.292339 -13942,5313:143,-133,-34,0,0,0.289521 -13943,5313:142,-132,-34,0,0,0.293297 -13944,5313:141,-131,-34,0,0,0.290113 -13945,5313:140,-130,-34,0,0,0.291639 -13946,5312:249,-129,-34,0,0,0.29096 -13947,5312:248,-128,-34,0,0,0.295175 -13948,5312:247,-127,-34,0,0,0.295859 -13949,5312:246,-126,-34,0,0,0.298735 -13950,5312:245,-125,-34,0,0,0.296266 -13951,5312:144,-124,-34,0,0,0.292319 -13952,5312:143,-123,-34,0,0,0.290769 -13953,5312:142,-122,-34,0,0,0.286949 -13954,5312:141,-121,-34,0,0,0.28366 -13955,5312:140,-120,-34,0,0,0.284224 -13956,5311:249,-119,-34,0,0,0.278945 -13957,5311:248,-118,-34,0,0,0.27878 -13958,5311:247,-117,-34,0,0,0.27238 -13959,5311:246,-116,-34,0,0,0.268266 -13960,5311:245,-115,-34,0,0,0.268973 -13961,5311:144,-114,-34,0,0,0.275261 -13962,5311:143,-113,-34,0,0,0.270754 -13963,5311:142,-112,-34,0,0,0.268206 -13964,5311:141,-111,-34,0,0,0.263953 -13965,5311:140,-110,-34,0,0,0.262518 -13966,5310:249,-109,-34,0,0,0.259821 -13967,5310:248,-108,-34,0,0,0.255596 -13968,5310:247,-107,-34,0,0,0.25159 -13969,5310:246,-106,-34,0,0,0.247626 -13970,5310:245,-105,-34,0,0,0.243666 -13971,5310:144,-104,-34,0,0,0.243685 -13972,5310:143,-103,-34,0,0,0.250354 -13973,5310:142,-102,-34,0,0,0.248565 -13974,5310:141,-101,-34,0,0,0.245393 -13975,5310:140,-100,-34,0,0,0.245754 -13976,5309:249,-99,-34,0,0,0.242777 -13977,5309:248,-98,-34,0,0,0.238571 -13978,5309:247,-97,-34,0,0,0.244158 -13979,5309:246,-96,-34,0,0,0.244557 -13980,5309:245,-95,-34,0,0,0.249064 -13981,5309:144,-94,-34,0,0,0.244367 -13982,5309:143,-93,-34,0,0,0.236858 -13983,5309:142,-92,-34,0,0,0.242381 -13984,5309:141,-91,-34,0,0,0.237974 -13985,5309:140,-90,-34,0,0,0.244405 -13986,5308:249,-89,-34,0,0,0.238739 -13987,5308:248,-88,-34,0,0,0.235986 -13988,5308:247,-87,-34,0,0,0.241608 -13989,5308:246,-86,-34,0,0,0.238384 -13990,5308:245,-85,-34,0,0,0.236877 -13991,5308:144,-84,-34,0,0,0.241721 -13992,5308:143,-83,-34,0,0,0.233605 -13993,5308:142,-82,-34,0,0,0.236209 -13994,5308:141,-81,-34,0,0,0.236784 -13995,5308:140,-80,-34,0,0,0.236839 -13996,5307:249,-79,-34,0,0,0.23645 -13997,5307:248,-78,-34,0,0,0.238926 -13998,5307:247,-77,-34,0,0,0.241175 -13999,5307:246,-76,-34,0,0,0.240123 -14000,5307:245,-75,-34,0,0,0.245259 -14001,5307:144,-74,-34,0,0,0.257693 -14002,5306:245,-65,-34,0,0,0.299489 -14003,5306:144,-64,-34,0,0,0.294876 -14004,5306:143,-63,-34,0,0,0.29007 -14005,5306:142,-62,-34,0,0,0.286949 -14006,5306:141,-61,-34,0,0,0.287622 -14007,5306:140,-60,-34,0,0,0.282471 -14008,5305:249,-59,-34,0,0,0.216726 -14009,5305:248,-58,-34,0,0,0.247033 -14010,5305:247,-57,-34,0,0,0.276698 -14011,5305:246,-56,-34,0,0,0.282972 -14012,5305:245,-55,-34,0,0,0.312668 -14013,5305:144,-54,-34,0,0,0.349688 -14014,5305:143,-53,-34,0,0,0.271343 -14015,5305:142,-52,-34,0,0,0.289077 -14016,5305:141,-51,-34,0,0,0.288929 -14017,5305:140,-50,-34,0,0,0.265833 -14018,5304:249,-49,-34,0,0,0.256065 -14019,5304:248,-48,-34,0,0,0.253977 -14020,5304:247,-47,-34,0,0,0.241175 -14021,5304:246,-46,-34,0,0,0.234913 -14022,5304:245,-45,-34,0,0,0.227626 -14023,5304:144,-44,-34,0,0,0.227572 -14024,5304:143,-43,-34,0,0,0.227337 -14025,5304:142,-42,-34,0,0,0.224445 -14026,5304:141,-41,-34,0,0,0.224463 -14027,5304:140,-40,-34,0,0,0.222341 -14028,5303:249,-39,-34,0,0,0.21445 -14029,5303:248,-38,-34,0,0,0.210104 -14030,5303:247,-37,-34,0,0,0.209507 -14031,5303:246,-36,-34,0,0,0.209065 -14032,5303:245,-35,-34,0,0,0.210155 -14033,5303:144,-34,-34,0,0,0.212002 -14034,5303:143,-33,-34,0,0,0.226292 -14035,5303:142,-32,-34,0,0,0.22259 -14036,5303:141,-31,-34,0,0,0.235098 -14037,5303:140,-30,-34,0,0,0.235968 -14038,5302:249,-29,-34,0,0,0.22622 -14039,5302:248,-28,-34,0,0,0.230128 -14040,5302:247,-27,-34,0,0,0.236746 -14041,5302:246,-26,-34,0,0,0.211214 -14042,5302:245,-25,-34,0,0,0.212535 -14043,5302:144,-24,-34,0,0,0.237118 -14044,5302:143,-23,-34,0,0,0.253413 -14045,5302:142,-22,-34,0,0,0.241627 -14046,5302:141,-21,-34,0,0,0.238552 -14047,5302:140,-20,-34,0,0,0.222004 -14048,5301:249,-19,-34,0,0,0.211848 -14049,5301:248,-18,-34,0,0,0.207726 -14050,5301:247,-17,-34,0,0,0.20144 -14051,5301:246,-16,-34,0,0,0.181662 -14052,5301:245,-15,-34,0,0,0.189361 -14053,5301:144,-14,-34,0,0,0.230256 -14054,5301:143,-13,-34,0,0,0.258677 -14055,5301:142,-12,-34,0,0,0.252752 -14056,5301:141,-11,-34,0,0,0.242607 -14057,5301:140,-10,-34,0,0,0.239318 -14058,5300:249,-9,-34,0,0,0.233826 -14059,5300:248,-8,-34,0,0,0.230147 -14060,5300:247,-7,-34,0,0,0.23915 -14061,5300:246,-6,-34,0,0,0.236691 -14062,5300:245,-5,-34,0,0,0.235062 -14063,5300:144,-4,-34,0,0,0.231844 -14064,5300:143,-3,-34,0,0,0.230056 -14065,5300:142,-2,-34,0,0,0.224659 -14066,5300:141,-1,-34,0,0,0.225 -14067,3300:141,0,-34,0,0,0.224713 -14068,3300:141,1,-34,0,0,0.225896 -14069,3300:142,2,-34,0,0,0.220976 -14070,3300:143,3,-34,0,0,0.218335 -14071,3300:144,4,-34,0,0,0.217337 -14072,3300:245,5,-34,0,0,0.21082 -14073,3300:246,6,-34,0,0,0.19778 -14074,3300:247,7,-34,0,0,0.197226 -14075,3300:248,8,-34,0,0,0.199398 -14076,3300:249,9,-34,0,0,0.199447 -14077,3301:140,10,-34,0,0,0.214242 -14078,3301:141,11,-34,0,0,0.213482 -14079,3301:142,12,-34,0,0,0.219758 -14080,3301:143,13,-34,0,0,0.222093 -14081,3301:144,14,-34,0,0,0.209558 -14082,3301:245,15,-34,0,0,0.241758 -14083,3301:246,16,-34,0,0,0.264632 -14084,3301:247,17,-34,0,0,0.218861 -14085,3301:248,18,-34,0,0,0.281806 -14086,3301:249,19,-34,0,0,0.267883 -14087,3302:140,20,-34,0,0,0.248469 -14088,3302:141,21,-34,0,0,0.271425 -14089,3302:142,22,-34,0,0,0.263055 -14090,3302:143,23,-34,0,0,0.277048 -14091,3302:144,24,-34,0,0,0.258343 -14092,3302:245,25,-34,0,0,0.230292 -14093,3302:246,26,-34,0,0,0.249429 -14094,3302:247,27,-34,0,0,0.250084 -14095,3302:248,28,-34,0,0,0.252752 -14096,3302:249,29,-34,0,0,0.236746 -14097,3303:140,30,-34,0,0,0.223106 -14098,3303:141,31,-34,0,0,0.241627 -14099,3303:142,32,-34,0,0,0.20393 -14100,3303:143,33,-34,0,0,0.199021 -14101,3303:144,34,-34,0,0,0.201291 -14102,3303:245,35,-34,0,0,0.200566 -14103,3303:246,36,-34,0,0,0.212105 -14104,3303:247,37,-34,0,0,0.189187 -14105,3303:248,38,-34,0,0,0.186148 -14106,3303:249,39,-34,0,0,0.200088 -14107,3304:140,40,-34,0,0,0.202599 -14108,3304:141,41,-34,0,0,0.194234 -14109,3304:142,42,-34,0,0,0.184891 -14110,3304:143,43,-34,0,0,0.176646 -14111,3304:144,44,-34,0,0,0.170428 -14112,3304:245,45,-34,0,0,0.163709 -14113,3304:246,46,-34,0,0,0.157395 -14114,3304:247,47,-34,0,0,0.152114 -14115,3304:248,48,-34,0,0,0.157408 -14116,3304:249,49,-34,0,0,0.160943 -14117,3305:140,50,-34,0,0,0.165389 -14118,3305:141,51,-34,0,0,0.165872 -14119,3305:142,52,-34,0,0,0.205268 -14120,3305:143,53,-34,0,0,0.251513 -14121,3305:144,54,-34,0,0,0.260811 -14122,3305:245,55,-34,0,0,0.258874 -14123,3305:246,56,-34,0,0,0.228621 -14124,3305:247,57,-34,0,0,0.235062 -14125,3305:248,58,-34,0,0,0.239543 -14126,3305:249,59,-34,0,0,0.250065 -14127,3306:140,60,-34,0,0,0.299101 -14128,3306:141,61,-34,0,0,0.286319 -14129,3306:142,62,-34,0,0,0.266475 -14130,3306:143,63,-34,0,0,0.243344 -14131,3306:144,64,-34,0,0,0.256653 -14132,3306:245,65,-34,0,0,0.267662 -14133,3306:246,66,-34,0,0,0.269438 -14134,3306:247,67,-34,0,0,0.231533 -14135,3306:248,68,-34,0,0,0.279358 -14136,3306:249,69,-34,0,0,0.265712 -14137,3307:140,70,-34,0,0,0.263633 -14138,3307:141,71,-34,0,0,0.256594 -14139,3307:142,72,-34,0,0,0.235062 -14140,3307:144,74,-34,0,0,0.249199 -14141,3307:245,75,-34,0,0,0.244139 -14142,3307:246,76,-34,0,0,0.246117 -14143,3307:247,77,-34,0,0,0.253841 -14144,3307:248,78,-34,0,0,0.258599 -14145,3307:249,79,-34,0,0,0.248392 -14146,3308:140,80,-34,0,0,0.242399 -14147,3308:141,81,-34,0,0,0.242022 -14148,3308:142,82,-34,0,0,0.247281 -14149,3308:143,83,-34,0,0,0.244841 -14150,3308:144,84,-34,0,0,0.241758 -14151,3308:245,85,-34,0,0,0.244784 -14152,3308:246,86,-34,0,0,0.242626 -14153,3308:247,87,-34,0,0,0.229601 -14154,3308:248,88,-34,0,0,0.210445 -14155,3308:249,89,-34,0,0,0.216064 -14156,3309:140,90,-34,0,0,0.222679 -14157,3309:141,91,-34,0,0,0.222999 -14158,3309:142,92,-34,0,0,0.209303 -14159,3309:143,93,-34,0,0,0.200846 -14160,3309:144,94,-34,0,0,0.200335 -14161,3309:245,95,-34,0,0,0.201672 -14162,3309:246,96,-34,0,0,0.203614 -14163,3309:247,97,-34,0,0,0.206326 -14164,3309:248,98,-34,0,0,0.206461 -14165,3309:249,99,-34,0,0,0.226148 -14166,3310:140,100,-34,0,0,0.242531 -14167,3310:141,101,-34,0,0,0.238552 -14168,3310:142,102,-34,0,0,0.237658 -14169,3310:143,103,-34,0,0,0.235764 -14170,3310:144,104,-34,0,0,0.230201 -14171,3310:245,105,-34,0,0,0.216029 -14172,3310:246,106,-34,0,0,0.228838 -14173,3310:247,107,-34,0,0,0.240874 -14174,3310:248,108,-34,0,0,0.234268 -14175,3310:249,109,-34,0,0,0.233734 -14176,3311:140,110,-34,0,0,0.23723 -14177,3311:141,111,-34,0,0,0.232485 -14178,3311:142,112,-34,0,0,0.232668 -14179,3311:143,113,-34,0,0,0.235136 -14180,3311:144,114,-34,0,0,0.232925 -14181,3311:245,115,-34,0,0,0.231478 -14182,3311:246,116,-34,0,0,0.233495 -14183,3311:247,117,-34,0,0,0.233293 -14184,3311:248,118,-34,0,0,0.23276 -14185,3311:249,119,-34,0,0,0.234305 -14186,3312:140,120,-34,0,0,0.236246 -14187,3312:141,121,-34,0,0,0.239412 -14188,3312:142,122,-34,0,0,0.237695 -14189,3312:143,123,-34,0,0,0.235746 -14190,3312:144,124,-34,0,0,0.234526 -14191,3312:245,125,-34,0,0,0.235468 -14192,3312:246,126,-34,0,0,0.23645 -14193,3312:247,127,-34,0,0,0.235764 -14194,3312:248,128,-34,0,0,0.240799 -14195,3312:249,129,-34,0,0,0.237304 -14196,3313:140,130,-34,0,0,0.238142 -14197,3313:141,131,-34,0,0,0.238776 -14198,3313:142,132,-34,0,0,0.240893 -14199,3313:143,133,-34,0,0,0.242418 -14200,3313:144,134,-34,0,0,0.240067 -14201,3313:245,135,-34,0,0,0.235746 -14202,3313:246,136,-34,0,0,0.24003 -14203,3313:247,137,-34,0,0,0.239486 -14204,3313:248,138,-34,0,0,0.242928 -14205,3313:249,139,-34,0,0,0.253626 -14206,3314:140,140,-34,0,0,0.270045 -14207,3314:141,141,-34,0,0,0.26214 -14208,3314:142,142,-34,0,0,0.272706 -14209,3314:143,143,-34,0,0,0.263295 -14210,3314:144,144,-34,0,0,0.269721 -14211,3314:245,145,-34,0,0,0.2794 -14212,3314:246,146,-34,0,0,0.306913 -14213,3314:248,148,-34,0,0,0.291024 -14214,3314:249,149,-34,0,0,0.331486 -14215,3315:140,150,-34,0,0,0.293276 -14216,3315:141,151,-34,0,0,0.291024 -14217,3315:142,152,-34,0,0,0.271343 -14218,3315:143,153,-34,0,0,0.278202 -14219,3315:144,154,-34,0,0,0.287159 -14220,3315:245,155,-34,0,0,0.284956 -14221,3315:246,156,-34,0,0,0.278945 -14222,3315:247,157,-34,0,0,0.273441 -14223,3315:248,158,-34,0,0,0.27678 -14224,3315:249,159,-34,0,0,0.275917 -14225,3316:140,160,-34,0,0,0.280933 -14226,3316:141,161,-34,0,0,0.276719 -14227,3316:142,162,-34,0,0,0.27604 -14228,3316:143,163,-34,0,0,0.277769 -14229,3316:144,164,-34,0,0,0.27783 -14230,3316:245,165,-34,0,0,0.280622 -14231,3316:246,166,-34,0,0,0.281349 -14232,3316:247,167,-34,0,0,0.278656 -14233,3316:248,168,-34,0,0,0.281785 -14234,3316:249,169,-34,0,0,0.279958 -14235,3317:144,174,-34,0,0,0.242852 -14236,3317:245,175,-34,0,0,0.269074 -14237,3317:246,176,-34,0,0,0.262279 -14238,3317:247,177,-34,0,0,0.253899 -14239,3317:248,178,-34,0,0,0.249544 -14240,3317:249,179,-34,0,0,0.247836 -14241,3318:140,180,-34,0,0,0.260039 -14242,5318:130,-180,-33,0,0,0.294961 -14243,5317:239,-179,-33,0,0,0.30665 -14244,5317:238,-178,-33,0,0,0.318638 -14245,5317:237,-177,-33,0,0,0.317079 -14246,5317:236,-176,-33,0,0,0.316434 -14247,5317:235,-175,-33,0,0,0.317412 -14248,5317:134,-174,-33,0,0,0.316123 -14249,5317:133,-173,-33,0,0,0.308532 -14250,5317:132,-172,-33,0,0,0.292106 -14251,5317:131,-171,-33,0,0,0.28697 -14252,5317:130,-170,-33,0,0,0.28933 -14253,5316:239,-169,-33,0,0,0.281826 -14254,5316:238,-168,-33,0,0,0.281826 -14255,5316:237,-167,-33,0,0,0.283368 -14256,5316:236,-166,-33,0,0,0.289352 -14257,5316:235,-165,-33,0,0,0.287412 -14258,5316:134,-164,-33,0,0,0.293958 -14259,5316:133,-163,-33,0,0,0.293404 -14260,5316:132,-162,-33,0,0,0.29079 -14261,5316:131,-161,-33,0,0,0.294 -14262,5316:130,-160,-33,0,0,0.301324 -14263,5315:239,-159,-33,0,0,0.301584 -14264,5315:238,-158,-33,0,0,0.308708 -14265,5315:237,-157,-33,0,0,0.310266 -14266,5315:236,-156,-33,0,0,0.317012 -14267,5315:235,-155,-33,0,0,0.318861 -14268,5315:134,-154,-33,0,0,0.324173 -14269,5315:133,-153,-33,0,0,0.322375 -14270,5315:132,-152,-33,0,0,0.323813 -14271,5315:131,-151,-33,0,0,0.321926 -14272,5315:130,-150,-33,0,0,0.323183 -14273,5314:239,-149,-33,0,0,0.321141 -14274,5314:238,-148,-33,0,0,0.321949 -14275,5314:237,-147,-33,0,0,0.3274 -14276,5314:236,-146,-33,0,0,0.327106 -14277,5314:235,-145,-33,0,0,0.324668 -14278,5314:134,-144,-33,0,0,0.325705 -14279,5314:133,-143,-33,0,0,0.325638 -14280,5314:132,-142,-33,0,0,0.323071 -14281,5314:131,-141,-33,0,0,0.320828 -14282,5314:130,-140,-33,0,0,0.324038 -14283,5313:239,-139,-33,0,0,0.322061 -14284,5313:238,-138,-33,0,0,0.315901 -14285,5313:237,-137,-33,0,0,0.31866 -14286,5313:236,-136,-33,0,0,0.311653 -14287,5313:235,-135,-33,0,0,0.310728 -14288,5313:134,-134,-33,0,0,0.310948 -14289,5313:133,-133,-33,0,0,0.310113 -14290,5313:132,-132,-33,0,0,0.308335 -14291,5313:131,-131,-33,0,0,0.306148 -14292,5313:130,-130,-33,0,0,0.311455 -14293,5312:239,-129,-33,0,0,0.311345 -14294,5312:238,-128,-33,0,0,0.308181 -14295,5312:237,-127,-33,0,0,0.310904 -14296,5312:236,-126,-33,0,0,0.313861 -14297,5312:235,-125,-33,0,0,0.308686 -14298,5312:134,-124,-33,0,0,0.309432 -14299,5312:133,-123,-33,0,0,0.300481 -14300,5312:132,-122,-33,0,0,0.30397 -14301,5312:131,-121,-33,0,0,0.303992 -14302,5312:130,-120,-33,0,0,0.298326 -14303,5311:239,-119,-33,0,0,0.292872 -14304,5311:238,-118,-33,0,0,0.293467 -14305,5311:237,-117,-33,0,0,0.293489 -14306,5311:236,-116,-33,0,0,0.292892 -14307,5311:235,-115,-33,0,0,0.290939 -14308,5311:134,-114,-33,0,0,0.289859 -14309,5311:133,-113,-33,0,0,0.290918 -14310,5311:132,-112,-33,0,0,0.280975 -14311,5311:131,-111,-33,0,0,0.275589 -14312,5311:130,-110,-33,0,0,0.269984 -14313,5310:239,-109,-33,0,0,0.262856 -14314,5310:238,-108,-33,0,0,0.261346 -14315,5310:237,-107,-33,0,0,0.259269 -14316,5310:236,-106,-33,0,0,0.263514 -14317,5310:235,-105,-33,0,0,0.259091 -14318,5310:134,-104,-33,0,0,0.259703 -14319,5310:133,-103,-33,0,0,0.266154 -14320,5310:132,-102,-33,0,0,0.265993 -14321,5310:131,-101,-33,0,0,0.258874 -14322,5310:130,-100,-33,0,0,0.257084 -14323,5309:239,-99,-33,0,0,0.258795 -14324,5309:238,-98,-33,0,0,0.258165 -14325,5309:237,-97,-33,0,0,0.252578 -14326,5309:236,-96,-33,0,0,0.259486 -14327,5309:235,-95,-33,0,0,0.251435 -14328,5309:134,-94,-33,0,0,0.257673 -14329,5309:133,-93,-33,0,0,0.255518 -14330,5309:132,-92,-33,0,0,0.252442 -14331,5309:131,-91,-33,0,0,0.246689 -14332,5309:130,-90,-33,0,0,0.254152 -14333,5308:239,-89,-33,0,0,0.249064 -14334,5308:238,-88,-33,0,0,0.24753 -14335,5308:237,-87,-33,0,0,0.247472 -14336,5308:236,-86,-33,0,0,0.254327 -14337,5308:235,-85,-33,0,0,0.251996 -14338,5308:134,-84,-33,0,0,0.251745 -14339,5308:133,-83,-33,0,0,0.246498 -14340,5308:132,-82,-33,0,0,0.251377 -14341,5308:131,-81,-33,0,0,0.247128 -14342,5308:130,-80,-33,0,0,0.248334 -14343,5307:239,-79,-33,0,0,0.251339 -14344,5307:238,-78,-33,0,0,0.251532 -14345,5307:237,-77,-33,0,0,0.252268 -14346,5307:236,-76,-33,0,0,0.253082 -14347,5307:235,-75,-33,0,0,0.256771 -14348,5307:133,-73,-33,0,0,0.28058 -14349,5306:133,-63,-33,0,0,0.310091 -14350,5306:132,-62,-33,0,0,0.311543 -14351,5306:131,-61,-33,0,0,0.32242 -14352,5306:130,-60,-33,0,0,0.317569 -14353,5305:239,-59,-33,0,0,0.287559 -14354,5305:238,-58,-33,0,0,0.231058 -14355,5305:237,-57,-33,0,0,0.251474 -14356,5305:236,-56,-33,0,0,0.281037 -14357,5305:235,-55,-33,0,0,0.343801 -14358,5305:134,-54,-33,0,0,0.33971 -14359,5305:133,-53,-33,0,0,0.285291 -14360,5305:132,-52,-33,0,0,0.311675 -14361,5305:131,-51,-33,0,0,0.332351 -14362,5305:130,-50,-33,0,0,0.361791 -14363,5304:239,-49,-33,0,0,0.362479 -14364,5304:238,-48,-33,0,0,0.306279 -14365,5304:237,-47,-33,0,0,0.270471 -14366,5304:236,-46,-33,0,0,0.257359 -14367,5304:235,-45,-33,0,0,0.26216 -14368,5304:134,-44,-33,0,0,0.264152 -14369,5304:133,-43,-33,0,0,0.262796 -14370,5304:132,-42,-33,0,0,0.264692 -14371,5304:131,-41,-33,0,0,0.257792 -14372,5304:130,-40,-33,0,0,0.235764 -14373,5303:239,-39,-33,0,0,0.225753 -14374,5303:238,-38,-33,0,0,0.229583 -14375,5303:237,-37,-33,0,0,0.237993 -14376,5303:236,-36,-33,0,0,0.252403 -14377,5303:235,-35,-33,0,0,0.254698 -14378,5303:134,-34,-33,0,0,0.230165 -14379,5303:133,-33,-33,0,0,0.235542 -14380,5303:132,-32,-33,0,0,0.242947 -14381,5303:131,-31,-33,0,0,0.259012 -14382,5303:130,-30,-33,0,0,0.249544 -14383,5302:239,-29,-33,0,0,0.24359 -14384,5302:238,-28,-33,0,0,0.24359 -14385,5302:237,-27,-33,0,0,0.251048 -14386,5302:236,-26,-33,0,0,0.246117 -14387,5302:235,-25,-33,0,0,0.266596 -14388,5302:134,-24,-33,0,0,0.272462 -14389,5302:133,-23,-33,0,0,0.25992 -14390,5302:132,-22,-33,0,0,0.264692 -14391,5302:131,-21,-33,0,0,0.257988 -14392,5302:130,-20,-33,0,0,0.236079 -14393,5301:239,-19,-33,0,0,0.224051 -14394,5301:238,-18,-33,0,0,0.207658 -14395,5301:237,-17,-33,0,0,0.200269 -14396,5301:236,-16,-33,0,0,0.194298 -14397,5301:235,-15,-33,0,0,0.219882 -14398,5301:134,-14,-33,0,0,0.266174 -14399,5301:133,-13,-33,0,0,0.255772 -14400,5301:132,-12,-33,0,0,0.240874 -14401,5301:131,-11,-33,0,0,0.239449 -14402,5301:130,-10,-33,0,0,0.238646 -14403,5300:239,-9,-33,0,0,0.235468 -14404,5300:238,-8,-33,0,0,0.235376 -14405,5300:237,-7,-33,0,0,0.251532 -14406,5300:236,-6,-33,0,0,0.24063 -14407,5300:235,-5,-33,0,0,0.231314 -14408,5300:134,-4,-33,0,0,0.230967 -14409,5300:133,-3,-33,0,0,0.233385 -14410,5300:132,-2,-33,0,0,0.235764 -14411,5300:131,-1,-33,0,0,0.235949 -14412,3300:131,0,-33,0,0,0.231624 -14413,3300:131,1,-33,0,0,0.230857 -14414,3300:132,2,-33,0,0,0.23146 -14415,3300:133,3,-33,0,0,0.220358 -14416,3300:134,4,-33,0,0,0.21683 -14417,3300:235,5,-33,0,0,0.221756 -14418,3300:236,6,-33,0,0,0.232228 -14419,3300:237,7,-33,0,0,0.230311 -14420,3300:238,8,-33,0,0,0.227554 -14421,3300:239,9,-33,0,0,0.21497 -14422,3301:130,10,-33,0,0,0.210257 -14423,3301:131,11,-33,0,0,0.214104 -14424,3301:132,12,-33,0,0,0.22931 -14425,3301:133,13,-33,0,0,0.235672 -14426,3301:134,14,-33,0,0,0.243136 -14427,3301:235,15,-33,0,0,0.276143 -14428,3301:236,16,-33,0,0,0.280871 -14429,3301:237,17,-33,0,0,0.305102 -14430,3301:238,18,-33,0,0,0.322981 -14431,3301:239,19,-33,0,0,0.302863 -14432,3302:130,20,-33,0,0,0.30862 -14433,3302:131,21,-33,0,0,0.312734 -14434,3302:132,22,-33,0,0,0.300352 -14435,3302:133,23,-33,0,0,0.307328 -14436,3302:134,24,-33,0,0,0.284496 -14437,3302:235,25,-33,0,0,0.248968 -14438,3302:236,26,-33,0,0,0.235117 -14439,3302:237,27,-33,0,0,0.240593 -14440,3302:238,28,-33,0,0,0.26867 -14441,3302:239,29,-33,0,0,0.249987 -14442,3303:130,30,-33,0,0,0.278738 -14443,3303:131,31,-33,0,0,0.286613 -14444,3303:132,32,-33,0,0,0.258716 -14445,3303:133,33,-33,0,0,0.24272 -14446,3303:134,34,-33,0,0,0.271607 -14447,3303:235,35,-33,0,0,0.279483 -14448,3303:236,36,-33,0,0,0.266756 -14449,3303:237,37,-33,0,0,0.250431 -14450,3303:238,38,-33,0,0,0.257733 -14451,3303:239,39,-33,0,0,0.248009 -14452,3304:130,40,-33,0,0,0.20754 -14453,3304:131,41,-33,0,0,0.207676 -14454,3304:132,42,-33,0,0,0.220128 -14455,3304:133,43,-33,0,0,0.246842 -14456,3304:134,44,-33,0,0,0.227735 -14457,3304:235,45,-33,0,0,0.206646 -14458,3304:236,46,-33,0,0,0.207337 -14459,3304:237,47,-33,0,0,0.240067 -14460,3304:238,48,-33,0,0,0.244007 -14461,3304:239,49,-33,0,0,0.233238 -14462,3305:130,50,-33,0,0,0.237397 -14463,3305:131,51,-33,0,0,0.207523 -14464,3305:132,52,-33,0,0,0.237379 -14465,3305:133,53,-33,0,0,0.255635 -14466,3305:134,54,-33,0,0,0.255928 -14467,3305:235,55,-33,0,0,0.269741 -14468,3305:236,56,-33,0,0,0.2554 -14469,3305:237,57,-33,0,0,0.241796 -14470,3305:238,58,-33,0,0,0.237806 -14471,3305:239,59,-33,0,0,0.280124 -14472,3306:130,60,-33,0,0,0.311014 -14473,3306:131,61,-33,0,0,0.309937 -14474,3306:132,62,-33,0,0,0.301584 -14475,3306:133,63,-33,0,0,0.293276 -14476,3306:134,64,-33,0,0,0.30005 -14477,3306:235,65,-33,0,0,0.291873 -14478,3306:236,66,-33,0,0,0.283493 -14479,3306:237,67,-33,0,0,0.225771 -14480,3306:238,68,-33,0,0,0.238739 -14481,3306:239,69,-33,0,0,0.282243 -14482,3307:130,70,-33,0,0,0.279607 -14483,3307:131,71,-33,0,0,0.276657 -14484,3307:132,72,-33,0,0,0.27238 -14485,3307:134,74,-33,0,0,0.254737 -14486,3307:235,75,-33,0,0,0.25846 -14487,3307:236,76,-33,0,0,0.277872 -14488,3307:237,77,-33,0,0,0.265853 -14489,3307:238,78,-33,0,0,0.244671 -14490,3307:239,79,-33,0,0,0.24845 -14491,3308:130,80,-33,0,0,0.259052 -14492,3308:131,81,-33,0,0,0.268973 -14493,3308:132,82,-33,0,0,0.263773 -14494,3308:133,83,-33,0,0,0.261069 -14495,3308:134,84,-33,0,0,0.252403 -14496,3308:235,85,-33,0,0,0.2379 -14497,3308:236,86,-33,0,0,0.230967 -14498,3308:237,87,-33,0,0,0.233366 -14499,3308:238,88,-33,0,0,0.236988 -14500,3308:239,89,-33,0,0,0.236209 -14501,3309:130,90,-33,0,0,0.233274 -14502,3309:131,91,-33,0,0,0.234711 -14503,3309:132,92,-33,0,0,0.232687 -14504,3309:133,93,-33,0,0,0.227121 -14505,3309:134,94,-33,0,0,0.231478 -14506,3309:235,95,-33,0,0,0.247128 -14507,3309:236,96,-33,0,0,0.254561 -14508,3309:237,97,-33,0,0,0.251861 -14509,3309:238,98,-33,0,0,0.244215 -14510,3309:239,99,-33,0,0,0.248258 -14511,3310:130,100,-33,0,0,0.244804 -14512,3310:131,101,-33,0,0,0.244481 -14513,3310:132,102,-33,0,0,0.240086 -14514,3310:133,103,-33,0,0,0.23658 -14515,3310:134,104,-33,0,0,0.233109 -14516,3310:235,105,-33,0,0,0.237063 -14517,3310:236,106,-33,0,0,0.248641 -14518,3310:237,107,-33,0,0,0.249141 -14519,3310:238,108,-33,0,0,0.246193 -14520,3310:239,109,-33,0,0,0.244291 -14521,3311:130,110,-33,0,0,0.24125 -14522,3311:131,111,-33,0,0,0.241476 -14523,3311:132,112,-33,0,0,0.242947 -14524,3311:133,113,-33,0,0,0.239431 -14525,3311:134,114,-33,0,0,0.241589 -14526,3311:235,115,-33,0,0,0.240855 -14527,3311:236,116,-33,0,0,0.240818 -14528,3311:237,117,-33,0,0,0.242682 -14529,3311:238,118,-33,0,0,0.245907 -14530,3311:239,119,-33,0,0,0.247186 -14531,3312:130,120,-33,0,0,0.249699 -14532,3312:131,121,-33,0,0,0.252365 -14533,3312:132,122,-33,0,0,0.251068 -14534,3312:133,123,-33,0,0,0.250546 -14535,3312:134,124,-33,0,0,0.248219 -14536,3312:235,125,-33,0,0,0.245355 -14537,3312:236,126,-33,0,0,0.245183 -14538,3312:237,127,-33,0,0,0.254776 -14539,3312:238,128,-33,0,0,0.261286 -14540,3312:239,129,-33,0,0,0.248334 -14541,3313:130,130,-33,0,0,0.253374 -14542,3313:131,131,-33,0,0,0.250624 -14543,3313:132,132,-33,0,0,0.253432 -14544,3313:133,133,-33,0,0,0.251068 -14545,3313:134,134,-33,0,0,0.25501 -14546,3313:235,135,-33,0,0,0.254561 -14547,3313:236,136,-33,0,0,0.252287 -14548,3313:237,137,-33,0,0,0.253938 -14549,3313:238,138,-33,0,0,0.258205 -14550,3313:239,139,-33,0,0,0.283848 -14551,3314:130,140,-33,0,0,0.285774 -14552,3314:131,141,-33,0,0,0.294897 -14553,3314:132,142,-33,0,0,0.287812 -14554,3314:133,143,-33,0,0,0.292254 -14555,3314:134,144,-33,0,0,0.289732 -14556,3314:235,145,-33,0,0,0.317012 -14557,3314:239,149,-33,0,0,0.336078 -14558,3315:130,150,-33,0,0,0.31904 -14559,3315:131,151,-33,0,0,0.318215 -14560,3315:132,152,-33,0,0,0.305102 -14561,3315:133,153,-33,0,0,0.301995 -14562,3315:134,154,-33,0,0,0.309014 -14563,3315:235,155,-33,0,0,0.306803 -14564,3315:236,156,-33,0,0,0.30397 -14565,3315:237,157,-33,0,0,0.296931 -14566,3315:238,158,-33,0,0,0.295816 -14567,3315:239,159,-33,0,0,0.301606 -14568,3316:130,160,-33,0,0,0.30321 -14569,3316:131,161,-33,0,0,0.294876 -14570,3316:132,162,-33,0,0,0.290007 -14571,3316:133,163,-33,0,0,0.289436 -14572,3316:134,164,-33,0,0,0.289626 -14573,3316:235,165,-33,0,0,0.29113 -14574,3316:236,166,-33,0,0,0.291321 -14575,3316:237,167,-33,0,0,0.291448 -14576,3316:238,168,-33,0,0,0.295602 -14577,3316:239,169,-33,0,0,0.300806 -14578,3317:130,170,-33,0,0,0.294918 -14579,3317:131,171,-33,0,0,0.291405 -14580,3317:134,174,-33,0,0,0.259348 -14581,3317:235,175,-33,0,0,0.281037 -14582,3317:236,176,-33,0,0,0.305276 -14583,3317:237,177,-33,0,0,0.317212 -14584,3317:238,178,-33,0,0,0.346192 -14585,3317:239,179,-33,0,0,0.32919 -14586,3318:130,180,-33,0,0,0.294961 -14587,5318:120,-180,-32,0,0,0.335047 -14588,5317:229,-179,-32,0,0,0.325209 -14589,5317:228,-178,-32,0,0,0.324826 -14590,5317:227,-177,-32,0,0,0.323858 -14591,5317:226,-176,-32,0,0,0.322689 -14592,5317:225,-175,-32,0,0,0.331805 -14593,5317:124,-174,-32,0,0,0.327739 -14594,5317:123,-173,-32,0,0,0.310376 -14595,5317:122,-172,-32,0,0,0.301844 -14596,5317:121,-171,-32,0,0,0.308291 -14597,5317:120,-170,-32,0,0,0.308576 -14598,5316:229,-169,-32,0,0,0.302646 -14599,5316:228,-168,-32,0,0,0.30617 -14600,5316:227,-167,-32,0,0,0.307766 -14601,5316:226,-166,-32,0,0,0.309124 -14602,5316:225,-165,-32,0,0,0.312734 -14603,5316:124,-164,-32,0,0,0.307503 -14604,5316:123,-163,-32,0,0,0.312271 -14605,5316:122,-162,-32,0,0,0.311918 -14606,5316:121,-161,-32,0,0,0.319307 -14607,5316:120,-160,-32,0,0,0.327377 -14608,5315:229,-159,-32,0,0,0.328464 -14609,5315:228,-158,-32,0,0,0.329145 -14610,5315:227,-157,-32,0,0,0.329553 -14611,5315:226,-156,-32,0,0,0.334498 -14612,5315:225,-155,-32,0,0,0.337386 -14613,5315:124,-154,-32,0,0,0.341163 -14614,5315:123,-153,-32,0,0,0.340794 -14615,5315:122,-152,-32,0,0,0.341417 -14616,5315:121,-151,-32,0,0,0.33941 -14617,5315:120,-150,-32,0,0,0.338811 -14618,5314:229,-149,-32,0,0,0.341047 -14619,5314:228,-148,-32,0,0,0.346843 -14620,5314:227,-147,-32,0,0,0.346238 -14621,5314:226,-146,-32,0,0,0.345866 -14622,5314:225,-145,-32,0,0,0.343291 -14623,5314:124,-144,-32,0,0,0.344542 -14624,5314:123,-143,-32,0,0,0.346843 -14625,5314:122,-142,-32,0,0,0.345843 -14626,5314:121,-141,-32,0,0,0.343893 -14627,5314:120,-140,-32,0,0,0.342341 -14628,5313:229,-139,-32,0,0,0.341347 -14629,5313:228,-138,-32,0,0,0.338443 -14630,5313:227,-137,-32,0,0,0.334887 -14631,5313:226,-136,-32,0,0,0.332465 -14632,5313:225,-135,-32,0,0,0.332465 -14633,5313:124,-134,-32,0,0,0.331896 -14634,5313:123,-133,-32,0,0,0.33242 -14635,5313:122,-132,-32,0,0,0.328601 -14636,5313:121,-131,-32,0,0,0.331212 -14637,5313:120,-130,-32,0,0,0.333675 -14638,5312:229,-129,-32,0,0,0.332488 -14639,5312:228,-128,-32,0,0,0.329372 -14640,5312:227,-127,-32,0,0,0.331691 -14641,5312:226,-126,-32,0,0,0.326812 -14642,5312:225,-125,-32,0,0,0.327785 -14643,5312:124,-124,-32,0,0,0.324466 -14644,5312:123,-123,-32,0,0,0.326022 -14645,5312:122,-122,-32,0,0,0.315435 -14646,5312:121,-121,-32,0,0,0.318594 -14647,5312:120,-120,-32,0,0,0.311411 -14648,5311:229,-119,-32,0,0,0.311411 -14649,5311:228,-118,-32,0,0,0.312933 -14650,5311:227,-117,-32,0,0,0.317836 -14651,5311:226,-116,-32,0,0,0.31837 -14652,5311:225,-115,-32,0,0,0.316367 -14653,5311:124,-114,-32,0,0,0.315945 -14654,5311:123,-113,-32,0,0,0.310025 -14655,5311:122,-112,-32,0,0,0.29663 -14656,5311:121,-111,-32,0,0,0.28293 -14657,5311:120,-110,-32,0,0,0.287327 -14658,5310:229,-109,-32,0,0,0.284182 -14659,5310:228,-108,-32,0,0,0.279876 -14660,5310:227,-107,-32,0,0,0.277893 -14661,5310:226,-106,-32,0,0,0.276719 -14662,5310:225,-105,-32,0,0,0.281141 -14663,5310:124,-104,-32,0,0,0.279669 -14664,5310:123,-103,-32,0,0,0.277521 -14665,5310:122,-102,-32,0,0,0.285375 -14666,5310:121,-101,-32,0,0,0.27911 -14667,5310:120,-100,-32,0,0,0.278759 -14668,5309:229,-99,-32,0,0,0.276616 -14669,5309:228,-98,-32,0,0,0.278387 -14670,5309:227,-97,-32,0,0,0.271506 -14671,5309:226,-96,-32,0,0,0.275036 -14672,5309:225,-95,-32,0,0,0.271933 -14673,5309:124,-94,-32,0,0,0.272564 -14674,5309:123,-93,-32,0,0,0.275138 -14675,5309:122,-92,-32,0,0,0.27116 -14676,5309:121,-91,-32,0,0,0.267803 -14677,5309:120,-90,-32,0,0,0.26962 -14678,5308:229,-89,-32,0,0,0.266817 -14679,5308:228,-88,-32,0,0,0.268165 -14680,5308:227,-87,-32,0,0,0.265192 -14681,5308:226,-86,-32,0,0,0.267823 -14682,5308:225,-85,-32,0,0,0.27438 -14683,5308:124,-84,-32,0,0,0.272095 -14684,5308:123,-83,-32,0,0,0.269276 -14685,5308:122,-82,-32,0,0,0.26214 -14686,5308:121,-81,-32,0,0,0.261842 -14687,5308:120,-80,-32,0,0,0.263195 -14688,5307:229,-79,-32,0,0,0.266034 -14689,5307:228,-78,-32,0,0,0.268065 -14690,5307:227,-77,-32,0,0,0.266495 -14691,5307:226,-76,-32,0,0,0.273032 -14692,5307:225,-75,-32,0,0,0.275097 -14693,5307:124,-74,-32,0,0,0.275897 -14694,5306:225,-65,-32,0,0,0.342851 -14695,5306:124,-64,-32,0,0,0.349805 -14696,5306:123,-63,-32,0,0,0.354752 -14697,5306:122,-62,-32,0,0,0.343917 -14698,5306:121,-61,-32,0,0,0.342481 -14699,5306:120,-60,-32,0,0,0.346634 -14700,5305:229,-59,-32,0,0,0.332967 -14701,5305:228,-58,-32,0,0,0.305821 -14702,5305:227,-57,-32,0,0,0.25351 -14703,5305:226,-56,-32,0,0,0.250894 -14704,5305:225,-55,-32,0,0,0.296952 -14705,5305:124,-54,-32,0,0,0.345076 -14706,5305:123,-53,-32,0,0,0.299015 -14707,5305:122,-52,-32,0,0,0.305102 -14708,5305:121,-51,-32,0,0,0.316456 -14709,5305:120,-50,-32,0,0,0.35353 -14710,5304:229,-49,-32,0,0,0.392772 -14711,5304:228,-48,-32,0,0,0.336284 -14712,5304:227,-47,-32,0,0,0.280435 -14713,5304:226,-46,-32,0,0,0.283472 -14714,5304:225,-45,-32,0,0,0.275097 -14715,5304:124,-44,-32,0,0,0.275179 -14716,5304:123,-43,-32,0,0,0.274872 -14717,5304:122,-42,-32,0,0,0.277068 -14718,5304:121,-41,-32,0,0,0.303948 -14719,5304:120,-40,-32,0,0,0.311455 -14720,5303:229,-39,-32,0,0,0.293681 -14721,5303:228,-38,-32,0,0,0.272686 -14722,5303:227,-37,-32,0,0,0.274094 -14723,5303:226,-36,-32,0,0,0.270187 -14724,5303:225,-35,-32,0,0,0.266817 -14725,5303:124,-34,-32,0,0,0.257026 -14726,5303:123,-33,-32,0,0,0.266234 -14727,5303:122,-32,-32,0,0,0.273053 -14728,5303:121,-31,-32,0,0,0.275691 -14729,5303:120,-30,-32,0,0,0.281037 -14730,5302:229,-29,-32,0,0,0.288001 -14731,5302:228,-28,-32,0,0,0.284412 -14732,5302:227,-27,-32,0,0,0.274115 -14733,5302:226,-26,-32,0,0,0.271302 -14734,5302:225,-25,-32,0,0,0.276924 -14735,5302:124,-24,-32,0,0,0.285145 -14736,5302:123,-23,-32,0,0,0.284308 -14737,5302:122,-22,-32,0,0,0.274954 -14738,5302:121,-21,-32,0,0,0.263813 -14739,5302:120,-20,-32,0,0,0.258244 -14740,5301:229,-19,-32,0,0,0.241947 -14741,5301:228,-18,-32,0,0,0.232577 -14742,5301:227,-17,-32,0,0,0.211899 -14743,5301:226,-16,-32,0,0,0.21082 -14744,5301:225,-15,-32,0,0,0.250026 -14745,5301:124,-14,-32,0,0,0.275445 -14746,5301:123,-13,-32,0,0,0.26746 -14747,5301:122,-12,-32,0,0,0.266556 -14748,5301:121,-11,-32,0,0,0.254912 -14749,5301:120,-10,-32,0,0,0.254191 -14750,5300:229,-9,-32,0,0,0.25316 -14751,5300:228,-8,-32,0,0,0.25501 -14752,5300:227,-7,-32,0,0,0.265632 -14753,5300:226,-6,-32,0,0,0.25791 -14754,5300:225,-5,-32,0,0,0.251319 -14755,5300:124,-4,-32,0,0,0.246326 -14756,5300:123,-3,-32,0,0,0.247702 -14757,5300:122,-2,-32,0,0,0.248987 -14758,5300:121,-1,-32,0,0,0.246117 -14759,3300:121,0,-32,0,0,0.248833 -14760,3300:121,1,-32,0,0,0.252326 -14761,3300:122,2,-32,0,0,0.251358 -14762,3300:123,3,-32,0,0,0.244652 -14763,3300:124,4,-32,0,0,0.249371 -14764,3300:225,5,-32,0,0,0.252869 -14765,3300:226,6,-32,0,0,0.248201 -14766,3300:227,7,-32,0,0,0.254152 -14767,3300:228,8,-32,0,0,0.23859 -14768,3300:229,9,-32,0,0,0.238832 -14769,3301:120,10,-32,0,0,0.24776 -14770,3301:121,11,-32,0,0,0.249795 -14771,3301:122,12,-32,0,0,0.259841 -14772,3301:123,13,-32,0,0,0.247568 -14773,3301:124,14,-32,0,0,0.273828 -14774,3301:225,15,-32,0,0,0.309081 -14775,3301:226,16,-32,0,0,0.349595 -14776,3301:227,17,-32,0,0,0.40856 -14777,3301:228,18,-32,0,0,0.4102 -14778,3301:229,19,-32,0,0,0.40106 -14779,3302:120,20,-32,0,0,0.345634 -14780,3302:121,21,-32,0,0,0.333287 -14781,3302:122,22,-32,0,0,0.365857 -14782,3302:123,23,-32,0,0,0.372341 -14783,3302:124,24,-32,0,0,0.371213 -14784,3302:225,25,-32,0,0,0.378267 -14785,3302:226,26,-32,0,0,0.369536 -14786,3302:227,27,-32,0,0,0.344079 -14787,3302:228,28,-32,0,0,0.275794 -14788,3302:229,29,-32,0,0,0.308905 -14789,3303:120,30,-32,0,0,0.336032 -14790,3303:121,31,-32,0,0,0.348101 -14791,3303:122,32,-32,0,0,0.330393 -14792,3303:123,33,-32,0,0,0.30434 -14793,3303:124,34,-32,0,0,0.318036 -14794,3303:225,35,-32,0,0,0.329122 -14795,3303:226,36,-32,0,0,0.371573 -14796,3303:227,37,-32,0,0,0.360227 -14797,3303:228,38,-32,0,0,0.323813 -14798,3303:229,39,-32,0,0,0.315279 -14799,3304:120,40,-32,0,0,0.33242 -14800,3304:121,41,-32,0,0,0.334429 -14801,3304:122,42,-32,0,0,0.286403 -14802,3304:123,43,-32,0,0,0.254191 -14803,3304:124,44,-32,0,0,0.296352 -14804,3304:225,45,-32,0,0,0.3274 -14805,3304:226,46,-32,0,0,0.343824 -14806,3304:227,47,-32,0,0,0.31053 -14807,3304:228,48,-32,0,0,0.247301 -14808,3304:229,49,-32,0,0,0.305646 -14809,3305:120,50,-32,0,0,0.34054 -14810,3305:121,51,-32,0,0,0.339663 -14811,3305:122,52,-32,0,0,0.320448 -14812,3305:123,53,-32,0,0,0.265813 -14813,3305:124,54,-32,0,0,0.260929 -14814,3305:225,55,-32,0,0,0.3253 -14815,3305:226,56,-32,0,0,0.308839 -14816,3305:227,57,-32,0,0,0.310091 -14817,3305:228,58,-32,0,0,0.310223 -14818,3305:229,59,-32,0,0,0.309541 -14819,3306:120,60,-32,0,0,0.305211 -14820,3306:121,61,-32,0,0,0.310134 -14821,3306:122,62,-32,0,0,0.308313 -14822,3306:123,63,-32,0,0,0.295431 -14823,3306:124,64,-32,0,0,0.300439 -14824,3306:225,65,-32,0,0,0.292021 -14825,3306:226,66,-32,0,0,0.295367 -14826,3306:227,67,-32,0,0,0.290981 -14827,3306:228,68,-32,0,0,0.277893 -14828,3306:229,69,-32,0,0,0.290473 -14829,3307:120,70,-32,0,0,0.286466 -14830,3307:121,71,-32,0,0,0.293808 -14831,3307:122,72,-32,0,0,0.289563 -14832,3307:124,74,-32,0,0,0.277893 -14833,3307:225,75,-32,0,0,0.286277 -14834,3307:226,76,-32,0,0,0.287728 -14835,3307:227,77,-32,0,0,0.27236 -14836,3307:228,78,-32,0,0,0.264771 -14837,3307:229,79,-32,0,0,0.279255 -14838,3308:120,80,-32,0,0,0.279876 -14839,3308:121,81,-32,0,0,0.264272 -14840,3308:122,82,-32,0,0,0.257693 -14841,3308:123,83,-32,0,0,0.264672 -14842,3308:124,84,-32,0,0,0.26734 -14843,3308:225,85,-32,0,0,0.265172 -14844,3308:226,86,-32,0,0,0.248124 -14845,3308:227,87,-32,0,0,0.253899 -14846,3308:228,88,-32,0,0,0.263673 -14847,3308:229,89,-32,0,0,0.250392 -14848,3309:120,90,-32,0,0,0.249641 -14849,3309:121,91,-32,0,0,0.265032 -14850,3309:122,92,-32,0,0,0.268126 -14851,3309:123,93,-32,0,0,0.266395 -14852,3309:124,94,-32,0,0,0.26212 -14853,3309:225,95,-32,0,0,0.25992 -14854,3309:226,96,-32,0,0,0.258027 -14855,3309:227,97,-32,0,0,0.256183 -14856,3309:228,98,-32,0,0,0.25353 -14857,3309:229,99,-32,0,0,0.251609 -14858,3310:120,100,-32,0,0,0.257182 -14859,3310:121,101,-32,0,0,0.260276 -14860,3310:122,102,-32,0,0,0.259052 -14861,3310:123,103,-32,0,0,0.258146 -14862,3310:124,104,-32,0,0,0.257104 -14863,3310:225,105,-32,0,0,0.258599 -14864,3310:226,106,-32,0,0,0.25587 -14865,3310:227,107,-32,0,0,0.254405 -14866,3310:228,108,-32,0,0,0.253024 -14867,3310:229,109,-32,0,0,0.251706 -14868,3311:120,110,-32,0,0,0.253549 -14869,3311:121,111,-32,0,0,0.252791 -14870,3311:122,112,-32,0,0,0.253685 -14871,3311:123,113,-32,0,0,0.251822 -14872,3311:124,114,-32,0,0,0.255694 -14873,3311:225,115,-32,0,0,0.259664 -14874,3311:226,116,-32,0,0,0.261246 -14875,3311:227,117,-32,0,0,0.261386 -14876,3311:228,118,-32,0,0,0.261386 -14877,3311:229,119,-32,0,0,0.263912 -14878,3312:120,120,-32,0,0,0.265492 -14879,3312:121,121,-32,0,0,0.265412 -14880,3312:122,122,-32,0,0,0.266054 -14881,3312:123,123,-32,0,0,0.269701 -14882,3312:124,124,-32,0,0,0.269458 -14883,3312:225,125,-32,0,0,0.265352 -14884,3312:226,126,-32,0,0,0.265012 -14885,3312:227,127,-32,0,0,0.271282 -14886,3312:228,128,-32,0,0,0.271668 -14887,3312:229,129,-32,0,0,0.271364 -14888,3313:120,130,-32,0,0,0.270511 -14889,3313:121,131,-32,0,0,0.272279 -14890,3313:122,132,-32,0,0,0.273338 -14891,3313:123,133,-32,0,0,0.270876 -14892,3313:124,134,-32,0,0,0.276369 -14893,3313:225,135,-32,0,0,0.283118 -14894,3313:226,136,-32,0,0,0.289183 -14895,3313:227,137,-32,0,0,0.297875 -14896,3313:228,138,-32,0,0,0.295624 -14897,3313:229,139,-32,0,0,0.31172 -14898,3314:120,140,-32,0,0,0.316501 -14899,3314:121,141,-32,0,0,0.307503 -14900,3314:122,142,-32,0,0,0.303752 -14901,3314:123,143,-32,0,0,0.314371 -14902,3314:124,144,-32,0,0,0.321164 -14903,3314:229,149,-32,0,0,0.355316 -14904,3315:120,150,-32,0,0,0.345193 -14905,3315:121,151,-32,0,0,0.357508 -14906,3315:122,152,-32,0,0,0.347262 -14907,3315:123,153,-32,0,0,0.346518 -14908,3315:124,154,-32,0,0,0.335986 -14909,3315:225,155,-32,0,0,0.327468 -14910,3315:226,156,-32,0,0,0.328328 -14911,3315:227,157,-32,0,0,0.326383 -14912,3315:228,158,-32,0,0,0.329008 -14913,3315:229,159,-32,0,0,0.331554 -14914,3316:120,160,-32,0,0,0.329689 -14915,3316:121,161,-32,0,0,0.324016 -14916,3316:122,162,-32,0,0,0.321657 -14917,3316:123,163,-32,0,0,0.317457 -14918,3316:124,164,-32,0,0,0.31183 -14919,3316:225,165,-32,0,0,0.310992 -14920,3316:226,166,-32,0,0,0.311786 -14921,3316:227,167,-32,0,0,0.315258 -14922,3316:228,168,-32,0,0,0.311984 -14923,3316:229,169,-32,0,0,0.314482 -14924,3317:120,170,-32,0,0,0.313419 -14925,3317:121,171,-32,0,0,0.306607 -14926,3317:122,172,-32,0,0,0.301238 -14927,3317:227,177,-32,0,0,0.328601 -14928,3317:228,178,-32,0,0,0.339571 -14929,3317:229,179,-32,0,0,0.32233 -14930,3318:120,180,-32,0,0,0.335047 -14931,5318:110,-180,-31,0,0,0.345727 -14932,5317:219,-179,-31,0,0,0.338903 -14933,5317:218,-178,-31,0,0,0.329962 -14934,5317:217,-177,-31,0,0,0.334956 -14935,5317:216,-176,-31,0,0,0.334475 -14936,5317:215,-175,-31,0,0,0.330144 -14937,5317:114,-174,-31,0,0,0.325345 -14938,5317:113,-173,-31,0,0,0.31837 -14939,5317:112,-172,-31,0,0,0.323926 -14940,5317:111,-171,-31,0,0,0.332374 -14941,5317:110,-170,-31,0,0,0.326428 -14942,5316:219,-169,-31,0,0,0.323116 -14943,5316:218,-168,-31,0,0,0.324556 -14944,5316:217,-167,-31,0,0,0.324443 -14945,5316:216,-166,-31,0,0,0.323678 -14946,5316:215,-165,-31,0,0,0.325435 -14947,5316:114,-164,-31,0,0,0.320716 -14948,5316:113,-163,-31,0,0,0.325886 -14949,5316:112,-162,-31,0,0,0.329349 -14950,5316:111,-161,-31,0,0,0.342874 -14951,5316:110,-160,-31,0,0,0.343986 -14952,5315:219,-159,-31,0,0,0.342203 -14953,5315:218,-158,-31,0,0,0.345611 -14954,5315:217,-157,-31,0,0,0.343963 -14955,5315:216,-156,-31,0,0,0.345425 -14956,5315:215,-155,-31,0,0,0.347845 -14957,5315:114,-154,-31,0,0,0.352333 -14958,5315:113,-153,-31,0,0,0.354893 -14959,5315:112,-152,-31,0,0,0.358713 -14960,5315:111,-151,-31,0,0,0.355834 -14961,5315:110,-150,-31,0,0,0.358453 -14962,5314:219,-149,-31,0,0,0.36044 -14963,5314:218,-148,-31,0,0,0.363786 -14964,5314:217,-147,-31,0,0,0.362052 -14965,5314:216,-146,-31,0,0,0.362265 -14966,5314:215,-145,-31,0,0,0.361648 -14967,5314:114,-144,-31,0,0,0.359967 -14968,5314:113,-143,-31,0,0,0.363168 -14969,5314:112,-142,-31,0,0,0.362218 -14970,5314:111,-141,-31,0,0,0.358052 -14971,5314:110,-140,-31,0,0,0.357956 -14972,5313:219,-139,-31,0,0,0.354117 -14973,5313:218,-138,-31,0,0,0.352756 -14974,5313:217,-137,-31,0,0,0.349852 -14975,5313:216,-136,-31,0,0,0.347123 -14976,5313:215,-135,-31,0,0,0.349782 -14977,5313:114,-134,-31,0,0,0.349151 -14978,5313:113,-133,-31,0,0,0.349688 -14979,5313:112,-132,-31,0,0,0.350039 -14980,5313:111,-131,-31,0,0,0.347985 -14981,5313:110,-130,-31,0,0,0.347542 -14982,5312:219,-129,-31,0,0,0.346611 -14983,5312:218,-128,-31,0,0,0.342411 -14984,5312:217,-127,-31,0,0,0.335162 -14985,5312:216,-126,-31,0,0,0.335436 -14986,5312:215,-125,-31,0,0,0.33649 -14987,5312:114,-124,-31,0,0,0.33842 -14988,5312:113,-123,-31,0,0,0.333675 -14989,5312:112,-122,-31,0,0,0.331941 -14990,5312:111,-121,-31,0,0,0.324984 -14991,5312:110,-120,-31,0,0,0.321545 -14992,5311:219,-119,-31,0,0,0.326315 -14993,5311:218,-118,-31,0,0,0.332488 -14994,5311:217,-117,-31,0,0,0.33594 -14995,5311:216,-116,-31,0,0,0.336995 -14996,5311:215,-115,-31,0,0,0.333104 -14997,5311:114,-114,-31,0,0,0.31962 -14998,5311:113,-113,-31,0,0,0.31508 -14999,5311:112,-112,-31,0,0,0.310486 -15000,5311:111,-111,-31,0,0,0.297037 -15001,5311:110,-110,-31,0,0,0.294257 -15002,5310:219,-109,-31,0,0,0.304993 -15003,5310:218,-108,-31,0,0,0.296995 -15004,5310:217,-107,-31,0,0,0.29183 -15005,5310:216,-106,-31,0,0,0.296887 -15006,5310:215,-105,-31,0,0,0.293446 -15007,5310:114,-104,-31,0,0,0.299899 -15008,5310:113,-103,-31,0,0,0.294683 -15009,5310:112,-102,-31,0,0,0.294384 -15010,5310:111,-101,-31,0,0,0.295945 -15011,5310:110,-100,-31,0,0,0.291341 -15012,5309:219,-99,-31,0,0,0.296116 -15013,5309:218,-98,-31,0,0,0.298348 -15014,5309:217,-97,-31,0,0,0.291002 -15015,5309:216,-96,-31,0,0,0.294107 -15016,5309:215,-95,-31,0,0,0.29268 -15017,5309:114,-94,-31,0,0,0.298649 -15018,5309:113,-93,-31,0,0,0.300762 -15019,5309:112,-92,-31,0,0,0.288971 -15020,5309:111,-91,-31,0,0,0.283806 -15021,5309:110,-90,-31,0,0,0.282825 -15022,5308:219,-89,-31,0,0,0.284287 -15023,5308:218,-88,-31,0,0,0.284663 -15024,5308:217,-87,-31,0,0,0.287265 -15025,5308:216,-86,-31,0,0,0.288845 -15026,5308:215,-85,-31,0,0,0.286844 -15027,5308:114,-84,-31,0,0,0.279483 -15028,5308:113,-83,-31,0,0,0.276267 -15029,5308:112,-82,-31,0,0,0.271648 -15030,5308:111,-81,-31,0,0,0.276965 -15031,5308:110,-80,-31,0,0,0.278863 -15032,5307:219,-79,-31,0,0,0.281099 -15033,5307:218,-78,-31,0,0,0.282763 -15034,5307:217,-77,-31,0,0,0.28817 -15035,5307:216,-76,-31,0,0,0.287433 -15036,5307:215,-75,-31,0,0,0.288233 -15037,5307:114,-74,-31,0,0,0.291045 -15038,5306:112,-62,-31,0,0,0.424414 -15039,5306:111,-61,-31,0,0,0.370662 -15040,5306:110,-60,-31,0,0,0.366072 -15041,5305:219,-59,-31,0,0,0.35567 -15042,5305:218,-58,-31,0,0,0.346797 -15043,5305:217,-57,-31,0,0,0.330553 -15044,5305:216,-56,-31,0,0,0.263175 -15045,5305:215,-55,-31,0,0,0.263713 -15046,5305:114,-54,-31,0,0,0.33711 -15047,5305:113,-53,-31,0,0,0.39358 -15048,5305:112,-52,-31,0,0,0.32397 -15049,5305:111,-51,-31,0,0,0.339295 -15050,5305:110,-50,-31,0,0,0.399383 -15051,5304:219,-49,-31,0,0,0.409553 -15052,5304:218,-48,-31,0,0,0.350179 -15053,5304:217,-47,-31,0,0,0.374288 -15054,5304:216,-46,-31,0,0,0.381849 -15055,5304:215,-45,-31,0,0,0.356847 -15056,5304:114,-44,-31,0,0,0.302104 -15057,5304:113,-43,-31,0,0,0.288381 -15058,5304:112,-42,-31,0,0,0.32103 -15059,5304:111,-41,-31,0,0,0.337432 -15060,5304:110,-40,-31,0,0,0.324016 -15061,5303:219,-39,-31,0,0,0.303709 -15062,5303:218,-38,-31,0,0,0.289648 -15063,5303:217,-37,-31,0,0,0.281681 -15064,5303:216,-36,-31,0,0,0.292042 -15065,5303:215,-35,-31,0,0,0.296159 -15066,5303:114,-34,-31,0,0,0.292042 -15067,5303:113,-33,-31,0,0,0.296266 -15068,5303:112,-32,-31,0,0,0.308203 -15069,5303:111,-31,-31,0,0,0.309695 -15070,5303:110,-30,-31,0,0,0.308401 -15071,5302:219,-29,-31,0,0,0.318348 -15072,5302:218,-28,-31,0,0,0.307284 -15073,5302:217,-27,-31,0,0,0.30593 -15074,5302:216,-26,-31,0,0,0.305777 -15075,5302:215,-25,-31,0,0,0.302797 -15076,5302:114,-24,-31,0,0,0.30033 -15077,5302:113,-23,-31,0,0,0.298413 -15078,5302:112,-22,-31,0,0,0.29166 -15079,5302:111,-21,-31,0,0,0.28527 -15080,5302:110,-20,-31,0,0,0.2621 -15081,5301:219,-19,-31,0,0,0.26087 -15082,5301:218,-18,-31,0,0,0.271546 -15083,5301:217,-17,-31,0,0,0.275405 -15084,5301:216,-16,-31,0,0,0.276389 -15085,5301:215,-15,-31,0,0,0.290769 -15086,5301:114,-14,-31,0,0,0.288739 -15087,5301:113,-13,-31,0,0,0.274851 -15088,5301:112,-12,-31,0,0,0.279607 -15089,5301:111,-11,-31,0,0,0.282721 -15090,5301:110,-10,-31,0,0,0.277851 -15091,5300:219,-9,-31,0,0,0.280373 -15092,5300:218,-8,-31,0,0,0.277439 -15093,5300:217,-7,-31,0,0,0.274565 -15094,5300:216,-6,-31,0,0,0.271851 -15095,5300:215,-5,-31,0,0,0.277233 -15096,5300:114,-4,-31,0,0,0.274954 -15097,5300:113,-3,-31,0,0,0.262081 -15098,5300:112,-2,-31,0,0,0.265973 -15099,5300:111,-1,-31,0,0,0.262219 -15100,3300:111,0,-31,0,0,0.265813 -15101,3300:111,1,-31,0,0,0.258618 -15102,3300:112,2,-31,0,0,0.258244 -15103,3300:113,3,-31,0,0,0.266596 -15104,3300:114,4,-31,0,0,0.28139 -15105,3300:215,5,-31,0,0,0.281099 -15106,3300:216,6,-31,0,0,0.288064 -15107,3300:217,7,-31,0,0,0.308839 -15108,3300:218,8,-31,0,0,0.317546 -15109,3300:219,9,-31,0,0,0.310068 -15110,3301:110,10,-31,0,0,0.307766 -15111,3301:111,11,-31,0,0,0.358926 -15112,3301:112,12,-31,0,0,0.348591 -15113,3301:113,13,-31,0,0,0.366406 -15114,3301:114,14,-31,0,0,0.371957 -15115,3301:215,15,-31,0,0,0.344148 -15116,3301:216,16,-31,0,0,0.347355 -15117,3301:217,17,-31,0,0,0.425418 -15118,3301:218,18,-31,0,0,0.422533 -15119,3301:219,19,-31,0,0,0.430398 -15120,3302:110,20,-31,0,0,0.408983 -15121,3302:111,21,-31,0,0,0.359895 -15122,3302:112,22,-31,0,0,0.379306 -15123,3302:113,23,-31,0,0,0.40784 -15124,3302:114,24,-31,0,0,0.392085 -15125,3302:215,25,-31,0,0,0.364667 -15126,3302:216,26,-31,0,0,0.359753 -15127,3302:217,27,-31,0,0,0.328918 -15128,3302:218,28,-31,0,0,0.325164 -15129,3302:219,29,-31,0,0,0.356989 -15130,3303:110,30,-31,0,0,0.411045 -15131,3303:111,31,-31,0,0,0.414706 -15132,3303:112,32,-31,0,0,0.398816 -15133,3303:113,33,-31,0,0,0.321657 -15134,3303:114,34,-31,0,0,0.322173 -15135,3303:215,35,-31,0,0,0.390128 -15136,3303:216,36,-31,0,0,0.381971 -15137,3303:217,37,-31,0,0,0.383549 -15138,3303:218,38,-31,0,0,0.335505 -15139,3303:219,39,-31,0,0,0.321366 -15140,3304:110,40,-31,0,0,0.353131 -15141,3304:111,41,-31,0,0,0.371046 -15142,3304:112,42,-31,0,0,0.368077 -15143,3304:113,43,-31,0,0,0.345564 -15144,3304:114,44,-31,0,0,0.323431 -15145,3304:215,45,-31,0,0,0.357414 -15146,3304:216,46,-31,0,0,0.352778 -15147,3304:217,47,-31,0,0,0.351607 -15148,3304:218,48,-31,0,0,0.338604 -15149,3304:219,49,-31,0,0,0.339917 -15150,3305:110,50,-31,0,0,0.345843 -15151,3305:111,51,-31,0,0,0.328283 -15152,3305:112,52,-31,0,0,0.336376 -15153,3305:113,53,-31,0,0,0.30087 -15154,3305:114,54,-31,0,0,0.301497 -15155,3305:215,55,-31,0,0,0.330258 -15156,3305:216,56,-31,0,0,0.307722 -15157,3305:217,57,-31,0,0,0.306541 -15158,3305:218,58,-31,0,0,0.302971 -15159,3305:219,59,-31,0,0,0.305254 -15160,3306:110,60,-31,0,0,0.311918 -15161,3306:111,61,-31,0,0,0.313928 -15162,3306:112,62,-31,0,0,0.309849 -15163,3306:113,63,-31,0,0,0.305341 -15164,3306:114,64,-31,0,0,0.309387 -15165,3306:215,65,-31,0,0,0.305211 -15166,3306:216,66,-31,0,0,0.306497 -15167,3306:217,67,-31,0,0,0.305777 -15168,3306:218,68,-31,0,0,0.307831 -15169,3306:219,69,-31,0,0,0.305668 -15170,3307:110,70,-31,0,0,0.294705 -15171,3307:111,71,-31,0,0,0.302342 -15172,3307:112,72,-31,0,0,0.29588 -15173,3307:114,74,-31,0,0,0.298821 -15174,3307:215,75,-31,0,0,0.300892 -15175,3307:216,76,-31,0,0,0.299425 -15176,3307:217,77,-31,0,0,0.29464 -15177,3307:218,78,-31,0,0,0.288528 -15178,3307:219,79,-31,0,0,0.29268 -15179,3308:110,80,-31,0,0,0.290261 -15180,3308:111,81,-31,0,0,0.282471 -15181,3308:112,82,-31,0,0,0.274156 -15182,3308:113,83,-31,0,0,0.28697 -15183,3308:114,84,-31,0,0,0.289204 -15184,3308:215,85,-31,0,0,0.284601 -15185,3308:216,86,-31,0,0,0.277727 -15186,3308:217,87,-31,0,0,0.281494 -15187,3308:218,88,-31,0,0,0.280104 -15188,3308:219,89,-31,0,0,0.270795 -15189,3309:110,90,-31,0,0,0.273441 -15190,3309:111,91,-31,0,0,0.271607 -15191,3309:112,92,-31,0,0,0.270471 -15192,3309:113,93,-31,0,0,0.269822 -15193,3309:114,94,-31,0,0,0.269418 -15194,3309:215,95,-31,0,0,0.268085 -15195,3309:216,96,-31,0,0,0.265172 -15196,3309:217,97,-31,0,0,0.261445 -15197,3309:218,98,-31,0,0,0.259762 -15198,3309:219,99,-31,0,0,0.262637 -15199,3310:110,100,-31,0,0,0.267219 -15200,3310:111,101,-31,0,0,0.266737 -15201,3310:112,102,-31,0,0,0.265813 -15202,3310:113,103,-31,0,0,0.265933 -15203,3310:114,104,-31,0,0,0.266737 -15204,3310:215,105,-31,0,0,0.266676 -15205,3310:216,106,-31,0,0,0.266737 -15206,3310:217,107,-31,0,0,0.265954 -15207,3310:218,108,-31,0,0,0.264252 -15208,3310:219,109,-31,0,0,0.264332 -15209,3311:110,110,-31,0,0,0.265753 -15210,3311:111,111,-31,0,0,0.270045 -15211,3311:112,112,-31,0,0,0.311257 -15212,3311:113,113,-31,0,0,0.277006 -15213,3311:114,114,-31,0,0,0.27039 -15214,3311:215,115,-31,0,0,0.277769 -15215,3311:216,116,-31,0,0,0.28412 -15216,3311:217,117,-31,0,0,0.284998 -15217,3311:218,118,-31,0,0,0.28504 -15218,3311:219,119,-31,0,0,0.285124 -15219,3312:110,120,-31,0,0,0.281785 -15220,3312:111,121,-31,0,0,0.282618 -15221,3312:112,122,-31,0,0,0.289711 -15222,3312:113,123,-31,0,0,0.289901 -15223,3312:114,124,-31,0,0,0.289352 -15224,3312:215,125,-31,0,0,0.283848 -15225,3312:216,126,-31,0,0,0.2794 -15226,3312:217,127,-31,0,0,0.288381 -15227,3312:218,128,-31,0,0,0.285312 -15228,3312:219,129,-31,0,0,0.284182 -15229,3313:110,130,-31,0,0,0.28718 -15230,3313:111,131,-31,0,0,0.290685 -15231,3313:112,132,-31,0,0,0.290303 -15232,3313:113,133,-31,0,0,0.292786 -15233,3313:114,134,-31,0,0,0.294598 -15234,3313:215,135,-31,0,0,0.300654 -15235,3313:216,136,-31,0,0,0.311102 -15236,3313:217,137,-31,0,0,0.30545 -15237,3313:218,138,-31,0,0,0.317969 -15238,3313:219,139,-31,0,0,0.329372 -15239,3314:110,140,-31,0,0,0.325007 -15240,3314:111,141,-31,0,0,0.332876 -15241,3314:112,142,-31,0,0,0.334521 -15242,3314:113,143,-31,0,0,0.335162 -15243,3314:114,144,-31,0,0,0.347635 -15244,3314:215,145,-31,0,0,0.353999 -15245,3314:216,146,-31,0,0,0.343222 -15246,3314:217,147,-31,0,0,0.343291 -15247,3314:218,148,-31,0,0,0.372437 -15248,3314:219,149,-31,0,0,0.3655 -15249,3315:110,150,-31,0,0,0.354422 -15250,3315:111,151,-31,0,0,0.360843 -15251,3315:112,152,-31,0,0,0.38134 -15252,3315:113,153,-31,0,0,0.367982 -15253,3315:114,154,-31,0,0,0.352919 -15254,3315:215,155,-31,0,0,0.352756 -15255,3315:216,156,-31,0,0,0.357862 -15256,3315:217,157,-31,0,0,0.358783 -15257,3315:218,158,-31,0,0,0.359493 -15258,3315:219,159,-31,0,0,0.364952 -15259,3316:110,160,-31,0,0,0.364286 -15260,3316:111,161,-31,0,0,0.362337 -15261,3316:112,162,-31,0,0,0.350554 -15262,3316:113,163,-31,0,0,0.34024 -15263,3316:114,164,-31,0,0,0.33331 -15264,3316:215,165,-31,0,0,0.337501 -15265,3316:216,166,-31,0,0,0.336651 -15266,3316:217,167,-31,0,0,0.330416 -15267,3316:218,168,-31,0,0,0.324173 -15268,3316:219,169,-31,0,0,0.323318 -15269,3317:110,170,-31,0,0,0.323431 -15270,3317:111,171,-31,0,0,0.322599 -15271,3317:112,172,-31,0,0,0.311235 -15272,3317:113,173,-31,0,0,0.308795 -15273,3317:114,174,-31,0,0,0.312271 -15274,3317:215,175,-31,0,0,0.332922 -15275,3317:218,178,-31,0,0,0.378556 -15276,3317:219,179,-31,0,0,0.367767 -15277,3318:110,180,-31,0,0,0.345727 -15278,5318:100,-180,-30,0,0,0.369967 -15279,5317:209,-179,-30,0,0,0.347402 -15280,5317:208,-178,-30,0,0,0.345588 -15281,5317:207,-177,-30,0,0,0.345866 -15282,5317:206,-176,-30,0,0,0.338259 -15283,5317:205,-175,-30,0,0,0.335574 -15284,5317:104,-174,-30,0,0,0.337018 -15285,5317:103,-173,-30,0,0,0.340078 -15286,5317:102,-172,-30,0,0,0.351396 -15287,5317:101,-171,-30,0,0,0.349338 -15288,5317:100,-170,-30,0,0,0.346215 -15289,5316:209,-169,-30,0,0,0.340725 -15290,5316:208,-168,-30,0,0,0.337225 -15291,5316:207,-167,-30,0,0,0.336628 -15292,5316:206,-166,-30,0,0,0.340309 -15293,5316:205,-165,-30,0,0,0.343198 -15294,5316:104,-164,-30,0,0,0.345425 -15295,5316:103,-163,-30,0,0,0.349571 -15296,5316:102,-162,-30,0,0,0.350296 -15297,5316:101,-161,-30,0,0,0.355481 -15298,5316:100,-160,-30,0,0,0.355222 -15299,5315:209,-159,-30,0,0,0.358406 -15300,5315:208,-158,-30,0,0,0.358359 -15301,5315:207,-157,-30,0,0,0.35454 -15302,5315:206,-156,-30,0,0,0.354305 -15303,5315:205,-155,-30,0,0,0.35824 -15304,5315:104,-154,-30,0,0,0.363763 -15305,5315:103,-153,-30,0,0,0.365357 -15306,5315:102,-152,-30,0,0,0.365286 -15307,5315:101,-151,-30,0,0,0.367002 -15308,5315:100,-150,-30,0,0,0.36968 -15309,5314:209,-149,-30,0,0,0.371837 -15310,5314:208,-148,-30,0,0,0.370231 -15311,5314:207,-147,-30,0,0,0.370207 -15312,5314:206,-146,-30,0,0,0.374048 -15313,5314:205,-145,-30,0,0,0.379935 -15314,5314:104,-144,-30,0,0,0.377591 -15315,5314:103,-143,-30,0,0,0.375107 -15316,5314:102,-142,-30,0,0,0.375492 -15317,5314:101,-141,-30,0,0,0.37566 -15318,5314:100,-140,-30,0,0,0.372653 -15319,5313:209,-139,-30,0,0,0.371933 -15320,5313:208,-138,-30,0,0,0.372413 -15321,5313:207,-137,-30,0,0,0.368722 -15322,5313:206,-136,-30,0,0,0.36674 -15323,5313:205,-135,-30,0,0,0.367599 -15324,5313:104,-134,-30,0,0,0.363026 -15325,5313:103,-133,-30,0,0,0.366215 -15326,5313:102,-132,-30,0,0,0.36153 -15327,5313:101,-131,-30,0,0,0.359375 -15328,5313:100,-130,-30,0,0,0.35574 -15329,5312:209,-129,-30,0,0,0.35567 -15330,5312:208,-128,-30,0,0,0.350764 -15331,5312:207,-127,-30,0,0,0.347355 -15332,5312:206,-126,-30,0,0,0.3471 -15333,5312:205,-125,-30,0,0,0.348125 -15334,5312:104,-124,-30,0,0,0.343291 -15335,5312:103,-123,-30,0,0,0.344682 -15336,5312:102,-122,-30,0,0,0.341186 -15337,5312:101,-121,-30,0,0,0.342781 -15338,5312:100,-120,-30,0,0,0.345518 -15339,5311:209,-119,-30,0,0,0.343013 -15340,5311:208,-118,-30,0,0,0.34181 -15341,5311:207,-117,-30,0,0,0.34336 -15342,5311:206,-116,-30,0,0,0.342712 -15343,5311:205,-115,-30,0,0,0.334201 -15344,5311:104,-114,-30,0,0,0.330871 -15345,5311:103,-113,-30,0,0,0.334017 -15346,5311:102,-112,-30,0,0,0.330439 -15347,5311:101,-111,-30,0,0,0.313707 -15348,5311:100,-110,-30,0,0,0.323026 -15349,5310:209,-109,-30,0,0,0.318527 -15350,5310:208,-108,-30,0,0,0.319732 -15351,5310:207,-107,-30,0,0,0.321478 -15352,5310:206,-106,-30,0,0,0.310883 -15353,5310:205,-105,-30,0,0,0.31875 -15354,5310:104,-104,-30,0,0,0.315435 -15355,5310:103,-103,-30,0,0,0.312535 -15356,5310:102,-102,-30,0,0,0.314947 -15357,5310:101,-101,-30,0,0,0.310332 -15358,5310:100,-100,-30,0,0,0.31477 -15359,5309:209,-99,-30,0,0,0.307437 -15360,5309:208,-98,-30,0,0,0.307153 -15361,5309:207,-97,-30,0,0,0.304644 -15362,5309:206,-96,-30,0,0,0.307175 -15363,5309:205,-95,-30,0,0,0.317813 -15364,5309:104,-94,-30,0,0,0.317524 -15365,5309:103,-93,-30,0,0,0.312315 -15366,5309:102,-92,-30,0,0,0.307569 -15367,5309:101,-91,-30,0,0,0.306017 -15368,5309:100,-90,-30,0,0,0.304188 -15369,5308:209,-89,-30,0,0,0.296116 -15370,5308:208,-88,-30,0,0,0.29809 -15371,5308:207,-87,-30,0,0,0.303992 -15372,5308:206,-86,-30,0,0,0.307088 -15373,5308:205,-85,-30,0,0,0.303514 -15374,5308:104,-84,-30,0,0,0.29633 -15375,5308:103,-83,-30,0,0,0.291787 -15376,5308:102,-82,-30,0,0,0.294961 -15377,5308:101,-81,-30,0,0,0.293787 -15378,5308:100,-80,-30,0,0,0.30033 -15379,5307:209,-79,-30,0,0,0.300439 -15380,5307:208,-78,-30,0,0,0.295773 -15381,5307:207,-77,-30,0,0,0.301281 -15382,5307:206,-76,-30,0,0,0.301887 -15383,5307:205,-75,-30,0,0,0.298133 -15384,5307:104,-74,-30,0,0,0.307021 -15385,5306:100,-60,-30,0,0,0.393262 -15386,5305:209,-59,-30,0,0,0.375396 -15387,5305:208,-58,-30,0,0,0.384836 -15388,5305:207,-57,-30,0,0,0.362527 -15389,5305:206,-56,-30,0,0,0.316523 -15390,5305:205,-55,-30,0,0,0.271709 -15391,5305:104,-54,-30,0,0,0.340194 -15392,5305:103,-53,-30,0,0,0.401356 -15393,5305:102,-52,-30,0,0,0.351865 -15394,5305:101,-51,-30,0,0,0.360937 -15395,5305:100,-50,-30,0,0,0.411518 -15396,5304:209,-49,-30,0,0,0.407146 -15397,5304:208,-48,-30,0,0,0.385445 -15398,5304:207,-47,-30,0,0,0.403085 -15399,5304:206,-46,-30,0,0,0.396969 -15400,5304:205,-45,-30,0,0,0.381437 -15401,5304:104,-44,-30,0,0,0.361222 -15402,5304:103,-43,-30,0,0,0.351677 -15403,5304:102,-42,-30,0,0,0.348428 -15404,5304:101,-41,-30,0,0,0.364309 -15405,5304:100,-40,-30,0,0,0.33315 -15406,5303:209,-39,-30,0,0,0.300806 -15407,5303:208,-38,-30,0,0,0.303579 -15408,5303:207,-37,-30,0,0,0.312226 -15409,5303:206,-36,-30,0,0,0.326745 -15410,5303:205,-35,-30,0,0,0.332146 -15411,5303:104,-34,-30,0,0,0.332739 -15412,5303:103,-33,-30,0,0,0.324398 -15413,5303:102,-32,-30,0,0,0.322622 -15414,5303:101,-31,-30,0,0,0.322555 -15415,5303:100,-30,-30,0,0,0.322061 -15416,5302:209,-29,-30,0,0,0.316212 -15417,5302:208,-28,-30,0,0,0.310728 -15418,5302:207,-27,-30,0,0,0.308247 -15419,5302:206,-26,-30,0,0,0.308269 -15420,5302:205,-25,-30,0,0,0.305887 -15421,5302:104,-24,-30,0,0,0.304079 -15422,5302:103,-23,-30,0,0,0.302732 -15423,5302:102,-22,-30,0,0,0.302494 -15424,5302:101,-21,-30,0,0,0.301476 -15425,5302:100,-20,-30,0,0,0.299748 -15426,5301:209,-19,-30,0,0,0.303275 -15427,5301:208,-18,-30,0,0,0.312381 -15428,5301:207,-17,-30,0,0,0.306759 -15429,5301:206,-16,-30,0,0,0.303687 -15430,5301:205,-15,-30,0,0,0.301865 -15431,5301:104,-14,-30,0,0,0.311675 -15432,5301:103,-13,-30,0,0,0.306737 -15433,5301:102,-12,-30,0,0,0.297982 -15434,5301:101,-11,-30,0,0,0.292935 -15435,5301:100,-10,-30,0,0,0.295517 -15436,5300:209,-9,-30,0,0,0.293808 -15437,5300:208,-8,-30,0,0,0.302949 -15438,5300:207,-7,-30,0,0,0.297381 -15439,5300:206,-6,-30,0,0,0.30271 -15440,5300:205,-5,-30,0,0,0.294598 -15441,5300:104,-4,-30,0,0,0.290155 -15442,5300:103,-3,-30,0,0,0.277336 -15443,5300:102,-2,-30,0,0,0.283806 -15444,5300:101,-1,-30,0,0,0.294235 -15445,3300:101,0,-30,0,0,0.295153 -15446,3300:101,1,-30,0,0,0.280477 -15447,3300:102,2,-30,0,0,0.286004 -15448,3300:103,3,-30,0,0,0.284454 -15449,3300:104,4,-30,0,0,0.289035 -15450,3300:205,5,-30,0,0,0.298413 -15451,3300:206,6,-30,0,0,0.30321 -15452,3300:207,7,-30,0,0,0.302126 -15453,3300:208,8,-30,0,0,0.321792 -15454,3300:209,9,-30,0,0,0.323139 -15455,3301:100,10,-30,0,0,0.351489 -15456,3301:101,11,-30,0,0,0.379137 -15457,3301:102,12,-30,0,0,0.38598 -15458,3301:103,13,-30,0,0,0.387589 -15459,3301:104,14,-30,0,0,0.391743 -15460,3301:205,15,-30,0,0,0.387491 -15461,3301:206,16,-30,0,0,0.405857 -15462,3301:207,17,-30,0,0,0.432767 -15463,3301:208,18,-30,0,0,0.425996 -15464,3301:209,19,-30,0,0,0.429592 -15465,3302:100,20,-30,0,0,0.421656 -15466,3302:101,21,-30,0,0,0.415978 -15467,3302:102,22,-30,0,0,0.42316 -15468,3302:103,23,-30,0,0,0.426624 -15469,3302:104,24,-30,0,0,0.389102 -15470,3302:205,25,-30,0,0,0.398964 -15471,3302:206,26,-30,0,0,0.392796 -15472,3302:207,27,-30,0,0,0.333058 -15473,3302:208,28,-30,0,0,0.35574 -15474,3302:209,29,-30,0,0,0.401356 -15475,3303:100,30,-30,0,0,0.417152 -15476,3303:101,31,-30,0,0,0.402516 -15477,3303:102,32,-30,0,0,0.414058 -15478,3303:103,33,-30,0,0,0.327129 -15479,3303:104,34,-30,0,0,0.340217 -15480,3303:205,35,-30,0,0,0.401183 -15481,3303:206,36,-30,0,0,0.378533 -15482,3303:207,37,-30,0,0,0.377059 -15483,3303:208,38,-30,0,0,0.365452 -15484,3303:209,39,-30,0,0,0.341071 -15485,3304:100,40,-30,0,0,0.375107 -15486,3304:101,41,-30,0,0,0.365977 -15487,3304:102,42,-30,0,0,0.361625 -15488,3304:103,43,-30,0,0,0.365238 -15489,3304:104,44,-30,0,0,0.36581 -15490,3304:205,45,-30,0,0,0.358996 -15491,3304:206,46,-30,0,0,0.355552 -15492,3304:207,47,-30,0,0,0.35238 -15493,3304:208,48,-30,0,0,0.356117 -15494,3304:209,49,-30,0,0,0.358335 -15495,3305:100,50,-30,0,0,0.348218 -15496,3305:101,51,-30,0,0,0.340378 -15497,3305:102,52,-30,0,0,0.337592 -15498,3305:103,53,-30,0,0,0.320359 -15499,3305:104,54,-30,0,0,0.33617 -15500,3305:205,55,-30,0,0,0.33918 -15501,3305:206,56,-30,0,0,0.318705 -15502,3305:207,57,-30,0,0,0.322083 -15503,3305:208,58,-30,0,0,0.328713 -15504,3305:209,59,-30,0,0,0.323701 -15505,3306:100,60,-30,0,0,0.320359 -15506,3306:101,61,-30,0,0,0.322914 -15507,3306:102,62,-30,0,0,0.328464 -15508,3306:103,63,-30,0,0,0.327264 -15509,3306:104,64,-30,0,0,0.321836 -15510,3306:205,65,-30,0,0,0.318616 -15511,3306:206,66,-30,0,0,0.322465 -15512,3306:207,67,-30,0,0,0.320492 -15513,3306:208,68,-30,0,0,0.313707 -15514,3306:209,69,-30,0,0,0.314548 -15515,3307:100,70,-30,0,0,0.31457 -15516,3307:101,71,-30,0,0,0.313818 -15517,3307:102,72,-30,0,0,0.311278 -15518,3307:104,74,-30,0,0,0.313773 -15519,3307:205,75,-30,0,0,0.311631 -15520,3307:206,76,-30,0,0,0.300611 -15521,3307:207,77,-30,0,0,0.295068 -15522,3307:208,78,-30,0,0,0.295367 -15523,3307:209,79,-30,0,0,0.301043 -15524,3308:100,80,-30,0,0,0.296266 -15525,3308:101,81,-30,0,0,0.294939 -15526,3308:102,82,-30,0,0,0.296394 -15527,3308:103,83,-30,0,0,0.294576 -15528,3308:104,84,-30,0,0,0.292106 -15529,3308:205,85,-30,0,0,0.291597 -15530,3308:206,86,-30,0,0,0.296501 -15531,3308:207,87,-30,0,0,0.295324 -15532,3308:208,88,-30,0,0,0.29432 -15533,3308:209,89,-30,0,0,0.291915 -15534,3309:100,90,-30,0,0,0.285354 -15535,3309:101,91,-30,0,0,0.286277 -15536,3309:102,92,-30,0,0,0.285774 -15537,3309:103,93,-30,0,0,0.284287 -15538,3309:104,94,-30,0,0,0.28293 -15539,3309:205,95,-30,0,0,0.280913 -15540,3309:206,96,-30,0,0,0.277913 -15541,3309:207,97,-30,0,0,0.276965 -15542,3309:208,98,-30,0,0,0.279772 -15543,3309:209,99,-30,0,0,0.277789 -15544,3310:100,100,-30,0,0,0.276657 -15545,3310:101,101,-30,0,0,0.279876 -15546,3310:102,102,-30,0,0,0.27713 -15547,3310:103,103,-30,0,0,0.277893 -15548,3310:104,104,-30,0,0,0.28191 -15549,3310:205,105,-30,0,0,0.279793 -15550,3310:206,106,-30,0,0,0.278614 -15551,3310:207,107,-30,0,0,0.276822 -15552,3310:208,108,-30,0,0,0.277851 -15553,3310:209,109,-30,0,0,0.280373 -15554,3311:100,110,-30,0,0,0.302754 -15555,3311:101,111,-30,0,0,0.31962 -15556,3311:102,112,-30,0,0,0.326338 -15557,3311:103,113,-30,0,0,0.319688 -15558,3311:104,114,-30,0,0,0.329235 -15559,3311:205,115,-30,0,0,0.313928 -15560,3311:206,116,-30,0,0,0.30139 -15561,3311:207,117,-30,0,0,0.309981 -15562,3311:208,118,-30,0,0,0.305515 -15563,3311:209,119,-30,0,0,0.305385 -15564,3312:100,120,-30,0,0,0.308686 -15565,3312:101,121,-30,0,0,0.317435 -15566,3312:102,122,-30,0,0,0.309695 -15567,3312:103,123,-30,0,0,0.305559 -15568,3312:104,124,-30,0,0,0.308313 -15569,3312:205,125,-30,0,0,0.311675 -15570,3312:206,126,-30,0,0,0.311081 -15571,3312:207,127,-30,0,0,0.310244 -15572,3312:208,128,-30,0,0,0.303253 -15573,3312:209,129,-30,0,0,0.298735 -15574,3313:100,130,-30,0,0,0.303796 -15575,3313:101,131,-30,0,0,0.308401 -15576,3313:102,132,-30,0,0,0.31579 -15577,3313:103,133,-30,0,0,0.311102 -15578,3313:104,134,-30,0,0,0.320761 -15579,3313:205,135,-30,0,0,0.334429 -15580,3313:206,136,-30,0,0,0.330371 -15581,3313:207,137,-30,0,0,0.326496 -15582,3313:208,138,-30,0,0,0.327333 -15583,3313:209,139,-30,0,0,0.342087 -15584,3314:100,140,-30,0,0,0.340147 -15585,3314:101,141,-30,0,0,0.35156 -15586,3314:102,142,-30,0,0,0.357248 -15587,3314:103,143,-30,0,0,0.363382 -15588,3314:104,144,-30,0,0,0.367361 -15589,3314:205,145,-30,0,0,0.363263 -15590,3314:206,146,-30,0,0,0.375396 -15591,3314:207,147,-30,0,0,0.38384 -15592,3314:208,148,-30,0,0,0.366597 -15593,3314:209,149,-30,0,0,0.389737 -15594,3315:100,150,-30,0,0,0.423686 -15595,3315:101,151,-30,0,0,0.427152 -15596,3315:102,152,-30,0,0,0.425418 -15597,3315:103,153,-30,0,0,0.387784 -15598,3315:104,154,-30,0,0,0.411742 -15599,3315:205,155,-30,0,0,0.382116 -15600,3315:206,156,-30,0,0,0.409851 -15601,3315:207,157,-30,0,0,0.386663 -15602,3315:208,158,-30,0,0,0.39211 -15603,3315:209,159,-30,0,0,0.390984 -15604,3316:100,160,-30,0,0,0.389566 -15605,3316:101,161,-30,0,0,0.383718 -15606,3316:102,162,-30,0,0,0.375685 -15607,3316:103,163,-30,0,0,0.362931 -15608,3316:104,164,-30,0,0,0.359351 -15609,3316:205,165,-30,0,0,0.356447 -15610,3316:206,166,-30,0,0,0.352122 -15611,3316:207,167,-30,0,0,0.348941 -15612,3316:208,168,-30,0,0,0.348171 -15613,3316:209,169,-30,0,0,0.340932 -15614,3317:100,170,-30,0,0,0.338328 -15615,3317:101,171,-30,0,0,0.336766 -15616,3317:102,172,-30,0,0,0.335276 -15617,3317:103,173,-30,0,0,0.332238 -15618,3317:104,174,-30,0,0,0.343592 -15619,3317:209,179,-30,0,0,0.389346 -15620,3318:100,180,-30,0,0,0.369967 -15621,5218:390,-180,-29,0,0,0.392821 -15622,5217:499,-179,-29,0,0,0.379282 -15623,5217:498,-178,-29,0,0,0.364214 -15624,5217:497,-177,-29,0,0,0.355716 -15625,5217:496,-176,-29,0,0,0.352263 -15626,5217:495,-175,-29,0,0,0.350086 -15627,5217:394,-174,-29,0,0,0.351302 -15628,5217:393,-173,-29,0,0,0.352451 -15629,5217:392,-172,-29,0,0,0.363097 -15630,5217:391,-171,-29,0,0,0.371117 -15631,5217:390,-170,-29,0,0,0.367623 -15632,5216:499,-169,-29,0,0,0.358571 -15633,5216:498,-168,-29,0,0,0.354516 -15634,5216:497,-167,-29,0,0,0.348754 -15635,5216:496,-166,-29,0,0,0.355575 -15636,5216:495,-165,-29,0,0,0.359398 -15637,5216:394,-164,-29,0,0,0.360582 -15638,5216:393,-163,-29,0,0,0.366668 -15639,5216:392,-162,-29,0,0,0.367767 -15640,5216:391,-161,-29,0,0,0.366311 -15641,5216:390,-160,-29,0,0,0.370039 -15642,5215:499,-159,-29,0,0,0.369129 -15643,5215:498,-158,-29,0,0,0.369081 -15644,5215:497,-157,-29,0,0,0.371765 -15645,5215:496,-156,-29,0,0,0.367575 -15646,5215:495,-155,-29,0,0,0.367838 -15647,5215:394,-154,-29,0,0,0.372437 -15648,5215:393,-153,-29,0,0,0.374216 -15649,5215:392,-152,-29,0,0,0.373879 -15650,5215:391,-151,-29,0,0,0.379306 -15651,5215:390,-150,-29,0,0,0.382893 -15652,5214:499,-149,-29,0,0,0.385056 -15653,5214:498,-148,-29,0,0,0.381995 -15654,5214:497,-147,-29,0,0,0.381582 -15655,5214:496,-146,-29,0,0,0.38367 -15656,5214:495,-145,-29,0,0,0.383646 -15657,5214:394,-144,-29,0,0,0.386443 -15658,5214:393,-143,-29,0,0,0.387711 -15659,5214:392,-142,-29,0,0,0.38715 -15660,5214:391,-141,-29,0,0,0.385907 -15661,5214:390,-140,-29,0,0,0.384739 -15662,5213:499,-139,-29,0,0,0.385713 -15663,5213:498,-138,-29,0,0,0.383791 -15664,5213:497,-137,-29,0,0,0.379645 -15665,5213:496,-136,-29,0,0,0.377059 -15666,5213:495,-135,-29,0,0,0.379113 -15667,5213:394,-134,-29,0,0,0.372149 -15668,5213:393,-133,-29,0,0,0.375443 -15669,5213:392,-132,-29,0,0,0.369775 -15670,5213:391,-131,-29,0,0,0.364833 -15671,5213:390,-130,-29,0,0,0.363596 -15672,5212:499,-129,-29,0,0,0.363525 -15673,5212:498,-128,-29,0,0,0.361198 -15674,5212:497,-127,-29,0,0,0.360203 -15675,5212:496,-126,-29,0,0,0.358122 -15676,5212:495,-125,-29,0,0,0.357084 -15677,5212:394,-124,-29,0,0,0.35673 -15678,5212:393,-123,-29,0,0,0.352263 -15679,5212:392,-122,-29,0,0,0.349268 -15680,5212:391,-121,-29,0,0,0.352122 -15681,5212:390,-120,-29,0,0,0.354211 -15682,5211:499,-119,-29,0,0,0.353366 -15683,5211:498,-118,-29,0,0,0.355552 -15684,5211:497,-117,-29,0,0,0.3564 -15685,5211:496,-116,-29,0,0,0.351958 -15686,5211:495,-115,-29,0,0,0.345936 -15687,5211:394,-114,-29,0,0,0.347193 -15688,5211:393,-113,-29,0,0,0.345634 -15689,5211:392,-112,-29,0,0,0.342157 -15690,5211:391,-111,-29,0,0,0.335139 -15691,5211:390,-110,-29,0,0,0.341094 -15692,5210:499,-109,-29,0,0,0.347262 -15693,5210:498,-108,-29,0,0,0.340055 -15694,5210:497,-107,-29,0,0,0.334063 -15695,5210:496,-106,-29,0,0,0.330644 -15696,5210:495,-105,-29,0,0,0.332533 -15697,5210:394,-104,-29,0,0,0.33003 -15698,5210:393,-103,-29,0,0,0.329145 -15699,5210:392,-102,-29,0,0,0.321478 -15700,5210:391,-101,-29,0,0,0.328057 -15701,5210:390,-100,-29,0,0,0.323026 -15702,5209:499,-99,-29,0,0,0.320671 -15703,5209:498,-98,-29,0,0,0.325592 -15704,5209:497,-97,-29,0,0,0.327717 -15705,5209:496,-96,-29,0,0,0.325548 -15706,5209:495,-95,-29,0,0,0.331873 -15707,5209:394,-94,-29,0,0,0.326948 -15708,5209:393,-93,-29,0,0,0.331599 -15709,5209:392,-92,-29,0,0,0.324714 -15710,5209:391,-91,-29,0,0,0.321231 -15711,5209:390,-90,-29,0,0,0.317836 -15712,5208:499,-89,-29,0,0,0.322555 -15713,5208:498,-88,-29,0,0,0.315213 -15714,5208:497,-87,-29,0,0,0.312271 -15715,5208:496,-86,-29,0,0,0.31904 -15716,5208:495,-85,-29,0,0,0.320716 -15717,5208:394,-84,-29,0,0,0.316167 -15718,5208:393,-83,-29,0,0,0.315058 -15719,5208:392,-82,-29,0,0,0.319643 -15720,5208:391,-81,-29,0,0,0.317992 -15721,5208:390,-80,-29,0,0,0.3128 -15722,5207:499,-79,-29,0,0,0.315279 -15723,5207:498,-78,-29,0,0,0.315612 -15724,5207:497,-77,-29,0,0,0.318727 -15725,5207:496,-76,-29,0,0,0.315901 -15726,5207:495,-75,-29,0,0,0.315169 -15727,5207:394,-74,-29,0,0,0.319665 -15728,5205:497,-57,-29,0,0,0.432969 -15729,5205:496,-56,-29,0,0,0.40856 -15730,5205:495,-55,-29,0,0,0.307065 -15731,5205:394,-54,-29,0,0,0.336766 -15732,5205:393,-53,-29,0,0,0.397216 -15733,5205:392,-52,-29,0,0,0.391229 -15734,5205:391,-51,-29,0,0,0.43711 -15735,5205:390,-50,-29,0,0,0.432944 -15736,5204:499,-49,-29,0,0,0.432313 -15737,5204:498,-48,-29,0,0,0.394218 -15738,5204:497,-47,-29,0,0,0.39412 -15739,5204:496,-46,-29,0,0,0.411194 -15740,5204:495,-45,-29,0,0,0.418852 -15741,5204:394,-44,-29,0,0,0.386785 -15742,5204:393,-43,-29,0,0,0.346238 -15743,5204:392,-42,-29,0,0,0.350881 -15744,5204:391,-41,-29,0,0,0.357013 -15745,5204:390,-40,-29,0,0,0.372894 -15746,5203:499,-39,-29,0,0,0.356094 -15747,5203:498,-38,-29,0,0,0.353577 -15748,5203:497,-37,-29,0,0,0.347286 -15749,5203:496,-36,-29,0,0,0.343268 -15750,5203:495,-35,-29,0,0,0.33688 -15751,5203:394,-34,-29,0,0,0.335826 -15752,5203:393,-33,-29,0,0,0.339848 -15753,5203:392,-32,-29,0,0,0.349432 -15754,5203:391,-31,-29,0,0,0.342319 -15755,5203:390,-30,-29,0,0,0.338006 -15756,5202:499,-29,-29,0,0,0.33372 -15757,5202:498,-28,-29,0,0,0.32424 -15758,5202:497,-27,-29,0,0,0.329054 -15759,5202:496,-26,-29,0,0,0.330121 -15760,5202:495,-25,-29,0,0,0.314326 -15761,5202:394,-24,-29,0,0,0.316501 -15762,5202:393,-23,-29,0,0,0.323498 -15763,5202:392,-22,-29,0,0,0.327174 -15764,5202:391,-21,-29,0,0,0.327151 -15765,5202:390,-20,-29,0,0,0.335482 -15766,5201:499,-19,-29,0,0,0.327717 -15767,5201:498,-18,-29,0,0,0.325458 -15768,5201:497,-17,-29,0,0,0.311742 -15769,5201:496,-16,-29,0,0,0.312535 -15770,5201:495,-15,-29,0,0,0.317925 -15771,5201:394,-14,-29,0,0,0.326248 -15772,5201:393,-13,-29,0,0,0.321522 -15773,5201:392,-12,-29,0,0,0.31904 -15774,5201:391,-11,-29,0,0,0.319174 -15775,5201:390,-10,-29,0,0,0.315612 -15776,5200:499,-9,-29,0,0,0.319822 -15777,5200:498,-8,-29,0,0,0.316901 -15778,5200:497,-7,-29,0,0,0.313685 -15779,5200:496,-6,-29,0,0,0.319598 -15780,5200:495,-5,-29,0,0,0.321433 -15781,5200:394,-4,-29,0,0,0.32224 -15782,5200:393,-3,-29,0,0,0.310376 -15783,5200:392,-2,-29,0,0,0.309519 -15784,5200:391,-1,-29,0,0,0.321634 -15785,3200:391,0,-29,0,0,0.316968 -15786,3200:391,1,-29,0,0,0.310509 -15787,3200:392,2,-29,0,0,0.314017 -15788,3200:393,3,-29,0,0,0.311345 -15789,3200:394,4,-29,0,0,0.303905 -15790,3200:495,5,-29,0,0,0.305014 -15791,3200:496,6,-29,0,0,0.303318 -15792,3200:497,7,-29,0,0,0.313662 -15793,3200:498,8,-29,0,0,0.331827 -15794,3200:499,9,-29,0,0,0.334132 -15795,3201:390,10,-29,0,0,0.343314 -15796,3201:391,11,-29,0,0,0.35947 -15797,3201:392,12,-29,0,0,0.367122 -15798,3201:393,13,-29,0,0,0.381801 -15799,3201:394,14,-29,0,0,0.387711 -15800,3201:495,15,-29,0,0,0.389517 -15801,3201:496,16,-29,0,0,0.391278 -15802,3201:497,17,-29,0,0,0.418477 -15803,3201:498,18,-29,0,0,0.446638 -15804,3201:499,19,-29,0,0,0.455338 -15805,3202:390,20,-29,0,0,0.442021 -15806,3202:391,21,-29,0,0,0.435064 -15807,3202:392,22,-29,0,0,0.438148 -15808,3202:393,23,-29,0,0,0.433322 -15809,3202:394,24,-29,0,0,0.420403 -15810,3202:495,25,-29,0,0,0.433297 -15811,3202:496,26,-29,0,0,0.430675 -15812,3202:497,27,-29,0,0,0.419677 -15813,3202:498,28,-29,0,0,0.370326 -15814,3202:499,29,-29,0,0,0.427956 -15815,3203:390,30,-29,0,0,0.422031 -15816,3203:391,31,-29,0,0,0.402665 -15817,3203:392,32,-29,0,0,0.404396 -15818,3203:393,33,-29,0,0,0.410871 -15819,3203:394,34,-29,0,0,0.41538 -15820,3203:495,35,-29,0,0,0.393434 -15821,3203:496,36,-29,0,0,0.383694 -15822,3203:497,37,-29,0,0,0.379766 -15823,3203:498,38,-29,0,0,0.380226 -15824,3203:499,39,-29,0,0,0.38316 -15825,3204:390,40,-29,0,0,0.381098 -15826,3204:391,41,-29,0,0,0.366382 -15827,3204:392,42,-29,0,0,0.368603 -15828,3204:393,43,-29,0,0,0.366907 -15829,3204:394,44,-29,0,0,0.365071 -15830,3204:495,45,-29,0,0,0.364309 -15831,3204:496,46,-29,0,0,0.367122 -15832,3204:497,47,-29,0,0,0.364 -15833,3204:498,48,-29,0,0,0.357296 -15834,3204:499,49,-29,0,0,0.349595 -15835,3205:390,50,-29,0,0,0.345076 -15836,3205:391,51,-29,0,0,0.344102 -15837,3205:392,52,-29,0,0,0.346308 -15838,3205:393,53,-29,0,0,0.347822 -15839,3205:394,54,-29,0,0,0.34568 -15840,3205:495,55,-29,0,0,0.342504 -15841,3205:496,56,-29,0,0,0.32885 -15842,3205:497,57,-29,0,0,0.331827 -15843,3205:498,58,-29,0,0,0.338466 -15844,3205:499,59,-29,0,0,0.334178 -15845,3206:390,60,-29,0,0,0.33119 -15846,3206:391,61,-29,0,0,0.33404 -15847,3206:392,62,-29,0,0,0.33711 -15848,3206:393,63,-29,0,0,0.335207 -15849,3206:394,64,-29,0,0,0.33888 -15850,3206:495,65,-29,0,0,0.337822 -15851,3206:496,66,-29,0,0,0.335803 -15852,3206:497,67,-29,0,0,0.333035 -15853,3206:498,68,-29,0,0,0.330598 -15854,3206:499,69,-29,0,0,0.331782 -15855,3207:390,70,-29,0,0,0.327875 -15856,3207:391,71,-29,0,0,0.327513 -15857,3207:392,72,-29,0,0,0.325841 -15858,3207:394,74,-29,0,0,0.323318 -15859,3207:495,75,-29,0,0,0.323408 -15860,3207:496,76,-29,0,0,0.322599 -15861,3207:497,77,-29,0,0,0.317969 -15862,3207:498,78,-29,0,0,0.31205 -15863,3207:499,79,-29,0,0,0.313662 -15864,3208:390,80,-29,0,0,0.308247 -15865,3208:391,81,-29,0,0,0.309036 -15866,3208:392,82,-29,0,0,0.312624 -15867,3208:393,83,-29,0,0,0.314504 -15868,3208:394,84,-29,0,0,0.315346 -15869,3208:495,85,-29,0,0,0.315302 -15870,3208:496,86,-29,0,0,0.311918 -15871,3208:497,87,-29,0,0,0.306825 -15872,3208:498,88,-29,0,0,0.303492 -15873,3208:499,89,-29,0,0,0.300935 -15874,3209:390,90,-29,0,0,0.300633 -15875,3209:391,91,-29,0,0,0.301909 -15876,3209:392,92,-29,0,0,0.301173 -15877,3209:393,93,-29,0,0,0.299145 -15878,3209:394,94,-29,0,0,0.293254 -15879,3209:495,95,-29,0,0,0.29464 -15880,3209:496,96,-29,0,0,0.295281 -15881,3209:497,97,-29,0,0,0.295303 -15882,3209:498,98,-29,0,0,0.300395 -15883,3209:499,99,-29,0,0,0.296523 -15884,3210:390,100,-29,0,0,0.296694 -15885,3210:391,101,-29,0,0,0.29285 -15886,3210:392,102,-29,0,0,0.292489 -15887,3210:393,103,-29,0,0,0.299877 -15888,3210:394,104,-29,0,0,0.299467 -15889,3210:495,105,-29,0,0,0.298326 -15890,3210:496,106,-29,0,0,0.298843 -15891,3210:497,107,-29,0,0,0.297445 -15892,3210:498,108,-29,0,0,0.301865 -15893,3210:499,109,-29,0,0,0.307175 -15894,3211:390,110,-29,0,0,0.347729 -15895,3211:391,111,-29,0,0,0.362408 -15896,3211:392,112,-29,0,0,0.352708 -15897,3211:393,113,-29,0,0,0.351466 -15898,3211:394,114,-29,0,0,0.35156 -15899,3211:495,115,-29,0,0,0.358169 -15900,3211:496,116,-29,0,0,0.340863 -15901,3211:497,117,-29,0,0,0.338282 -15902,3211:498,118,-29,0,0,0.3451 -15903,3211:499,119,-29,0,0,0.354094 -15904,3212:390,120,-29,0,0,0.340725 -15905,3212:391,121,-29,0,0,0.331258 -15906,3212:392,122,-29,0,0,0.338489 -15907,3212:393,123,-29,0,0,0.339825 -15908,3212:394,124,-29,0,0,0.340194 -15909,3212:495,125,-29,0,0,0.330644 -15910,3212:496,126,-29,0,0,0.33819 -15911,3212:497,127,-29,0,0,0.334681 -15912,3212:498,128,-29,0,0,0.331622 -15913,3212:499,129,-29,0,0,0.326451 -15914,3213:390,130,-29,0,0,0.324286 -15915,3213:391,131,-29,0,0,0.328442 -15916,3213:392,132,-29,0,0,0.336628 -15917,3213:393,133,-29,0,0,0.350179 -15918,3213:394,134,-29,0,0,0.345983 -15919,3213:495,135,-29,0,0,0.345425 -15920,3213:496,136,-29,0,0,0.345169 -15921,3213:497,137,-29,0,0,0.34343 -15922,3213:498,138,-29,0,0,0.356094 -15923,3213:499,139,-29,0,0,0.359848 -15924,3214:390,140,-29,0,0,0.380662 -15925,3215:390,150,-29,0,0,0.408138 -15926,3215:391,151,-29,0,0,0.432793 -15927,3215:392,152,-29,0,0,0.423009 -15928,3215:393,153,-29,0,0,0.425795 -15929,3215:394,154,-29,0,0,0.420729 -15930,3215:495,155,-29,0,0,0.415554 -15931,3215:496,156,-29,0,0,0.426197 -15932,3215:497,157,-29,0,0,0.425845 -15933,3215:498,158,-29,0,0,0.438426 -15934,3215:499,159,-29,0,0,0.43128 -15935,3216:390,160,-29,0,0,0.418577 -15936,3216:391,161,-29,0,0,0.412762 -15937,3216:392,162,-29,0,0,0.399038 -15938,3216:393,163,-29,0,0,0.376191 -15939,3216:394,164,-29,0,0,0.376674 -15940,3216:495,165,-29,0,0,0.370854 -15941,3216:496,166,-29,0,0,0.369201 -15942,3216:497,167,-29,0,0,0.364928 -15943,3216:498,168,-29,0,0,0.362455 -15944,3216:499,169,-29,0,0,0.36172 -15945,3217:390,170,-29,0,0,0.363311 -15946,3217:391,171,-29,0,0,0.360748 -15947,3217:392,172,-29,0,0,0.354376 -15948,3217:393,173,-29,0,0,0.349618 -15949,3217:394,174,-29,0,0,0.35032 -15950,3217:495,175,-29,0,0,0.375902 -15951,3217:497,177,-29,0,0,0.383816 -15952,3217:498,178,-29,0,0,0.386054 -15953,3217:499,179,-29,0,0,0.379452 -15954,3218:390,180,-29,0,0,0.392821 -15955,5218:380,-180,-28,0,0,0.395716 -15956,5217:489,-179,-28,0,0,0.387613 -15957,5217:488,-178,-28,0,0,0.370063 -15958,5217:487,-177,-28,0,0,0.370806 -15959,5217:486,-176,-28,0,0,0.374216 -15960,5217:485,-175,-28,0,0,0.373639 -15961,5217:384,-174,-28,0,0,0.373518 -15962,5217:383,-173,-28,0,0,0.378025 -15963,5217:382,-172,-28,0,0,0.375034 -15964,5217:381,-171,-28,0,0,0.378073 -15965,5217:380,-170,-28,0,0,0.379669 -15966,5216:489,-169,-28,0,0,0.38168 -15967,5216:488,-168,-28,0,0,0.376504 -15968,5216:487,-167,-28,0,0,0.373518 -15969,5216:486,-166,-28,0,0,0.370781 -15970,5216:485,-165,-28,0,0,0.372485 -15971,5216:384,-164,-28,0,0,0.373711 -15972,5216:383,-163,-28,0,0,0.377325 -15973,5216:382,-162,-28,0,0,0.376529 -15974,5216:381,-161,-28,0,0,0.375637 -15975,5216:380,-160,-28,0,0,0.378049 -15976,5215:489,-159,-28,0,0,0.381219 -15977,5215:488,-158,-28,0,0,0.382868 -15978,5215:487,-157,-28,0,0,0.380081 -15979,5215:486,-156,-28,0,0,0.381413 -15980,5215:485,-155,-28,0,0,0.384132 -15981,5215:384,-154,-28,0,0,0.382577 -15982,5215:383,-153,-28,0,0,0.385445 -15983,5215:382,-152,-28,0,0,0.38859 -15984,5215:381,-151,-28,0,0,0.389493 -15985,5215:380,-150,-28,0,0,0.392698 -15986,5214:489,-149,-28,0,0,0.394733 -15987,5214:488,-148,-28,0,0,0.389322 -15988,5214:487,-147,-28,0,0,0.38754 -15989,5214:486,-146,-28,0,0,0.391351 -15990,5214:485,-145,-28,0,0,0.393482 -15991,5214:384,-144,-28,0,0,0.391253 -15992,5214:383,-143,-28,0,0,0.390446 -15993,5214:382,-142,-28,0,0,0.390593 -15994,5214:381,-141,-28,0,0,0.389224 -15995,5214:380,-140,-28,0,0,0.388565 -15996,5213:489,-139,-28,0,0,0.390568 -15997,5213:488,-138,-28,0,0,0.39189 -15998,5213:487,-137,-28,0,0,0.389908 -15999,5213:486,-136,-28,0,0,0.386736 -16000,5213:485,-135,-28,0,0,0.383233 -16001,5213:384,-134,-28,0,0,0.381753 -16002,5213:383,-133,-28,0,0,0.379766 -16003,5213:382,-132,-28,0,0,0.382528 -16004,5213:381,-131,-28,0,0,0.381316 -16005,5213:380,-130,-28,0,0,0.376866 -16006,5212:489,-129,-28,0,0,0.375034 -16007,5212:488,-128,-28,0,0,0.373158 -16008,5212:487,-127,-28,0,0,0.373038 -16009,5212:486,-126,-28,0,0,0.369919 -16010,5212:485,-125,-28,0,0,0.367886 -16011,5212:384,-124,-28,0,0,0.370182 -16012,5212:383,-123,-28,0,0,0.370039 -16013,5212:382,-122,-28,0,0,0.367193 -16014,5212:381,-121,-28,0,0,0.366573 -16015,5212:380,-120,-28,0,0,0.365881 -16016,5211:489,-119,-28,0,0,0.364095 -16017,5211:488,-118,-28,0,0,0.363477 -16018,5211:487,-117,-28,0,0,0.363786 -16019,5211:486,-116,-28,0,0,0.358642 -16020,5211:485,-115,-28,0,0,0.355952 -16021,5211:384,-114,-28,0,0,0.35706 -16022,5211:383,-113,-28,0,0,0.363002 -16023,5211:382,-112,-28,0,0,0.36343 -16024,5211:381,-111,-28,0,0,0.357768 -16025,5211:380,-110,-28,0,0,0.352169 -16026,5210:489,-109,-28,0,0,0.352216 -16027,5210:488,-108,-28,0,0,0.367814 -16028,5210:487,-107,-28,0,0,0.362432 -16029,5210:486,-106,-28,0,0,0.358052 -16030,5210:485,-105,-28,0,0,0.348801 -16031,5210:384,-104,-28,0,0,0.348311 -16032,5210:383,-103,-28,0,0,0.338765 -16033,5210:382,-102,-28,0,0,0.33711 -16034,5210:381,-101,-28,0,0,0.348264 -16035,5210:380,-100,-28,0,0,0.345588 -16036,5209:489,-99,-28,0,0,0.34218 -16037,5209:488,-98,-28,0,0,0.337754 -16038,5209:487,-97,-28,0,0,0.348754 -16039,5209:486,-96,-28,0,0,0.345564 -16040,5209:485,-95,-28,0,0,0.344984 -16041,5209:384,-94,-28,0,0,0.343383 -16042,5209:383,-93,-28,0,0,0.341047 -16043,5209:382,-92,-28,0,0,0.34575 -16044,5209:381,-91,-28,0,0,0.339825 -16045,5209:380,-90,-28,0,0,0.340517 -16046,5208:489,-89,-28,0,0,0.343082 -16047,5208:488,-88,-28,0,0,0.341094 -16048,5208:487,-87,-28,0,0,0.336766 -16049,5208:486,-86,-28,0,0,0.337731 -16050,5208:485,-85,-28,0,0,0.33226 -16051,5208:384,-84,-28,0,0,0.334887 -16052,5208:383,-83,-28,0,0,0.333675 -16053,5208:382,-82,-28,0,0,0.332602 -16054,5208:381,-81,-28,0,0,0.331303 -16055,5208:380,-80,-28,0,0,0.334155 -16056,5207:489,-79,-28,0,0,0.334201 -16057,5207:488,-78,-28,0,0,0.329122 -16058,5207:487,-77,-28,0,0,0.327853 -16059,5207:486,-76,-28,0,0,0.333446 -16060,5207:485,-75,-28,0,0,0.324466 -16061,5207:384,-74,-28,0,0,0.327966 -16062,5207:383,-73,-28,0,0,0.304296 -16063,5205:486,-56,-28,0,0,0.441286 -16064,5205:485,-55,-28,0,0,0.416228 -16065,5205:384,-54,-28,0,0,0.361056 -16066,5205:383,-53,-28,0,0,0.376432 -16067,5205:382,-52,-28,0,0,0.405956 -16068,5205:381,-51,-28,0,0,0.492155 -16069,5205:380,-50,-28,0,0,0.474351 -16070,5204:489,-49,-28,0,0,0.490126 -16071,5204:488,-48,-28,0,0,0.455771 -16072,5204:487,-47,-28,0,0,0.438047 -16073,5204:486,-46,-28,0,0,0.441134 -16074,5204:485,-45,-28,0,0,0.436732 -16075,5204:384,-44,-28,0,0,0.428813 -16076,5204:383,-43,-28,0,0,0.420028 -16077,5204:382,-42,-28,0,0,0.410722 -16078,5204:381,-41,-28,0,0,0.402097 -16079,5204:380,-40,-28,0,0,0.390324 -16080,5203:489,-39,-28,0,0,0.372341 -16081,5203:488,-38,-28,0,0,0.354704 -16082,5203:487,-37,-28,0,0,0.360653 -16083,5203:486,-36,-28,0,0,0.371477 -16084,5203:485,-35,-28,0,0,0.364691 -16085,5203:384,-34,-28,0,0,0.366263 -16086,5203:383,-33,-28,0,0,0.361696 -16087,5203:382,-32,-28,0,0,0.359327 -16088,5203:381,-31,-28,0,0,0.3585 -16089,5203:380,-30,-28,0,0,0.349385 -16090,5202:489,-29,-28,0,0,0.35501 -16091,5202:488,-28,-28,0,0,0.348195 -16092,5202:487,-27,-28,0,0,0.356541 -16093,5202:486,-26,-28,0,0,0.356753 -16094,5202:485,-25,-28,0,0,0.351209 -16095,5202:384,-24,-28,0,0,0.344473 -16096,5202:383,-23,-28,0,0,0.348171 -16097,5202:382,-22,-28,0,0,0.351115 -16098,5202:381,-21,-28,0,0,0.346099 -16099,5202:380,-20,-28,0,0,0.342296 -16100,5201:489,-19,-28,0,0,0.35574 -16101,5201:488,-18,-28,0,0,0.348988 -16102,5201:487,-17,-28,0,0,0.341856 -16103,5201:486,-16,-28,0,0,0.342041 -16104,5201:485,-15,-28,0,0,0.343129 -16105,5201:384,-14,-28,0,0,0.339019 -16106,5201:383,-13,-28,0,0,0.343685 -16107,5201:382,-12,-28,0,0,0.33594 -16108,5201:381,-11,-28,0,0,0.334315 -16109,5201:380,-10,-28,0,0,0.332876 -16110,5200:489,-9,-28,0,0,0.333904 -16111,5200:488,-8,-28,0,0,0.337547 -16112,5200:487,-7,-28,0,0,0.336078 -16113,5200:486,-6,-28,0,0,0.345286 -16114,5200:485,-5,-28,0,0,0.34336 -16115,5200:384,-4,-28,0,0,0.337662 -16116,5200:383,-3,-28,0,0,0.334567 -16117,5200:382,-2,-28,0,0,0.331736 -16118,5200:381,-1,-28,0,0,0.330371 -16119,3200:381,0,-28,0,0,0.335528 -16120,3200:381,1,-28,0,0,0.33842 -16121,3200:382,2,-28,0,0,0.335505 -16122,3200:383,3,-28,0,0,0.341995 -16123,3200:384,4,-28,0,0,0.330325 -16124,3200:485,5,-28,0,0,0.326112 -16125,3200:486,6,-28,0,0,0.318906 -16126,3200:487,7,-28,0,0,0.316923 -16127,3200:488,8,-28,0,0,0.335139 -16128,3200:489,9,-28,0,0,0.342504 -16129,3201:380,10,-28,0,0,0.346308 -16130,3201:381,11,-28,0,0,0.352849 -16131,3201:382,12,-28,0,0,0.377156 -16132,3201:383,13,-28,0,0,0.395839 -16133,3201:384,14,-28,0,0,0.392894 -16134,3201:485,15,-28,0,0,0.388492 -16135,3201:486,16,-28,0,0,0.401825 -16136,3201:487,17,-28,0,0,0.397757 -16137,3201:488,18,-28,0,0,0.425619 -16138,3201:489,19,-28,0,0,0.438148 -16139,3202:380,20,-28,0,0,0.440071 -16140,3202:381,21,-28,0,0,0.459852 -16141,3202:382,22,-28,0,0,0.482067 -16142,3202:383,23,-28,0,0,0.457071 -16143,3202:384,24,-28,0,0,0.465011 -16144,3202:485,25,-28,0,0,0.472405 -16145,3202:486,26,-28,0,0,0.461128 -16146,3202:487,27,-28,0,0,0.436554 -16147,3202:488,28,-28,0,0,0.438223 -16148,3202:489,29,-28,0,0,0.446485 -16149,3203:380,30,-28,0,0,0.420078 -16150,3203:381,31,-28,0,0,0.408485 -16151,3203:382,32,-28,0,0,0.407915 -16152,3203:383,33,-28,0,0,0.408983 -16153,3203:384,34,-28,0,0,0.403579 -16154,3203:485,35,-28,0,0,0.401528 -16155,3203:486,36,-28,0,0,0.391939 -16156,3203:487,37,-28,0,0,0.388126 -16157,3203:488,38,-28,0,0,0.386857 -16158,3203:489,39,-28,0,0,0.382626 -16159,3204:380,40,-28,0,0,0.379669 -16160,3204:381,41,-28,0,0,0.377421 -16161,3204:382,42,-28,0,0,0.374914 -16162,3204:383,43,-28,0,0,0.373494 -16163,3204:384,44,-28,0,0,0.373014 -16164,3204:485,45,-28,0,0,0.372942 -16165,3204:486,46,-28,0,0,0.372005 -16166,3204:487,47,-28,0,0,0.367504 -16167,3204:488,48,-28,0,0,0.362503 -16168,3204:489,49,-28,0,0,0.359683 -16169,3205:380,50,-28,0,0,0.354587 -16170,3205:381,51,-28,0,0,0.35501 -16171,3205:382,52,-28,0,0,0.35706 -16172,3205:383,53,-28,0,0,0.357673 -16173,3205:384,54,-28,0,0,0.352075 -16174,3205:485,55,-28,0,0,0.348754 -16175,3205:486,56,-28,0,0,0.34575 -16176,3205:487,57,-28,0,0,0.345286 -16177,3205:488,58,-28,0,0,0.347169 -16178,3205:489,59,-28,0,0,0.344055 -16179,3206:380,60,-28,0,0,0.34218 -16180,3206:381,61,-28,0,0,0.344195 -16181,3206:382,62,-28,0,0,0.348125 -16182,3206:383,63,-28,0,0,0.349852 -16183,3206:384,64,-28,0,0,0.352849 -16184,3206:485,65,-28,0,0,0.351419 -16185,3206:486,66,-28,0,0,0.346006 -16186,3206:487,67,-28,0,0,0.347193 -16187,3206:488,68,-28,0,0,0.351256 -16188,3206:489,69,-28,0,0,0.346308 -16189,3207:380,70,-28,0,0,0.346029 -16190,3207:381,71,-28,0,0,0.349829 -16191,3207:382,72,-28,0,0,0.344241 -16192,3207:384,74,-28,0,0,0.340425 -16193,3207:485,75,-28,0,0,0.344775 -16194,3207:486,76,-28,0,0,0.345843 -16195,3207:487,77,-28,0,0,0.339249 -16196,3207:488,78,-28,0,0,0.335734 -16197,3207:489,79,-28,0,0,0.333949 -16198,3208:380,80,-28,0,0,0.329168 -16199,3208:381,81,-28,0,0,0.331691 -16200,3208:382,82,-28,0,0,0.337271 -16201,3208:383,83,-28,0,0,0.33578 -16202,3208:384,84,-28,0,0,0.332785 -16203,3208:485,85,-28,0,0,0.329576 -16204,3208:486,86,-28,0,0,0.327264 -16205,3208:487,87,-28,0,0,0.325097 -16206,3208:488,88,-28,0,0,0.322083 -16207,3208:489,89,-28,0,0,0.321567 -16208,3209:380,90,-28,0,0,0.321567 -16209,3209:381,91,-28,0,0,0.321321 -16210,3209:382,92,-28,0,0,0.323723 -16211,3209:383,93,-28,0,0,0.322734 -16212,3209:384,94,-28,0,0,0.320761 -16213,3209:485,95,-28,0,0,0.321052 -16214,3209:486,96,-28,0,0,0.319286 -16215,3209:487,97,-28,0,0,0.320291 -16216,3209:488,98,-28,0,0,0.321299 -16217,3209:489,99,-28,0,0,0.317791 -16218,3210:380,100,-28,0,0,0.317168 -16219,3210:381,101,-28,0,0,0.322734 -16220,3210:382,102,-28,0,0,0.317658 -16221,3210:383,103,-28,0,0,0.32697 -16222,3210:384,104,-28,0,0,0.320828 -16223,3210:485,105,-28,0,0,0.321994 -16224,3210:486,106,-28,0,0,0.32826 -16225,3210:487,107,-28,0,0,0.327943 -16226,3210:488,108,-28,0,0,0.331508 -16227,3210:489,109,-28,0,0,0.339894 -16228,3211:380,110,-28,0,0,0.358075 -16229,3211:381,111,-28,0,0,0.369177 -16230,3211:382,112,-28,0,0,0.355246 -16231,3211:383,113,-28,0,0,0.373061 -16232,3211:384,114,-28,0,0,0.381801 -16233,3211:485,115,-28,0,0,0.379403 -16234,3211:486,116,-28,0,0,0.361838 -16235,3211:487,117,-28,0,0,0.367599 -16236,3211:488,118,-28,0,0,0.382043 -16237,3211:489,119,-28,0,0,0.377445 -16238,3212:380,120,-28,0,0,0.374866 -16239,3212:381,121,-28,0,0,0.352451 -16240,3212:382,122,-28,0,0,0.362384 -16241,3212:383,123,-28,0,0,0.358902 -16242,3212:384,124,-28,0,0,0.362337 -16243,3212:485,125,-28,0,0,0.357366 -16244,3212:486,126,-28,0,0,0.360061 -16245,3212:487,127,-28,0,0,0.347379 -16246,3212:488,128,-28,0,0,0.348847 -16247,3212:489,129,-28,0,0,0.352591 -16248,3213:380,130,-28,0,0,0.367408 -16249,3213:381,131,-28,0,0,0.365476 -16250,3213:382,132,-28,0,0,0.352826 -16251,3213:383,133,-28,0,0,0.364072 -16252,3213:384,134,-28,0,0,0.357461 -16253,3213:485,135,-28,0,0,0.361151 -16254,3213:486,136,-28,0,0,0.368173 -16255,3213:487,137,-28,0,0,0.379984 -16256,3213:488,138,-28,0,0,0.38025 -16257,3213:489,139,-28,0,0,0.385177 -16258,3214:380,140,-28,0,0,0.42133 -16259,3215:381,151,-28,0,0,0.476811 -16260,3215:382,152,-28,0,0,0.480118 -16261,3215:383,153,-28,0,0,0.480605 -16262,3215:384,154,-28,0,0,0.466161 -16263,3215:485,155,-28,0,0,0.441667 -16264,3215:486,156,-28,0,0,0.444886 -16265,3215:487,157,-28,0,0,0.466391 -16266,3215:488,158,-28,0,0,0.453046 -16267,3215:489,159,-28,0,0,0.443187 -16268,3216:380,160,-28,0,0,0.450679 -16269,3216:381,161,-28,0,0,0.454013 -16270,3216:382,162,-28,0,0,0.433676 -16271,3216:383,163,-28,0,0,0.420628 -16272,3216:384,164,-28,0,0,0.413859 -16273,3216:485,165,-28,0,0,0.3926 -16274,3216:486,166,-28,0,0,0.391939 -16275,3216:487,167,-28,0,0,0.391229 -16276,3216:488,168,-28,0,0,0.390666 -16277,3216:489,169,-28,0,0,0.381607 -16278,3217:380,170,-28,0,0,0.380178 -16279,3217:381,171,-28,0,0,0.374721 -16280,3217:382,172,-28,0,0,0.37359 -16281,3217:383,173,-28,0,0,0.365333 -16282,3217:384,174,-28,0,0,0.373999 -16283,3217:486,176,-28,0,0,0.396035 -16284,3217:487,177,-28,0,0,0.40101 -16285,3217:488,178,-28,0,0,0.395962 -16286,3217:489,179,-28,0,0,0.393875 -16287,3218:380,180,-28,0,0,0.395716 -16288,5218:370,-180,-27,0,0,0.391229 -16289,5217:479,-179,-27,0,0,0.396232 -16290,5217:478,-178,-27,0,0,0.390226 -16291,5217:477,-177,-27,0,0,0.387321 -16292,5217:476,-176,-27,0,0,0.390324 -16293,5217:475,-175,-27,0,0,0.394587 -16294,5217:374,-174,-27,0,0,0.398914 -16295,5217:373,-173,-27,0,0,0.398102 -16296,5217:372,-172,-27,0,0,0.393017 -16297,5217:371,-171,-27,0,0,0.393752 -16298,5217:370,-170,-27,0,0,0.3952 -16299,5216:479,-169,-27,0,0,0.396109 -16300,5216:478,-168,-27,0,0,0.394685 -16301,5216:477,-167,-27,0,0,0.390984 -16302,5216:476,-166,-27,0,0,0.387711 -16303,5216:475,-165,-27,0,0,0.38659 -16304,5216:374,-164,-27,0,0,0.387638 -16305,5216:373,-163,-27,0,0,0.387662 -16306,5216:372,-162,-27,0,0,0.387516 -16307,5216:371,-161,-27,0,0,0.388003 -16308,5216:370,-160,-27,0,0,0.388955 -16309,5215:479,-159,-27,0,0,0.390666 -16310,5215:478,-158,-27,0,0,0.393826 -16311,5215:477,-157,-27,0,0,0.397683 -16312,5215:476,-156,-27,0,0,0.39921 -16313,5215:475,-155,-27,0,0,0.396969 -16314,5215:374,-154,-27,0,0,0.395053 -16315,5215:373,-153,-27,0,0,0.398914 -16316,5215:372,-152,-27,0,0,0.401874 -16317,5215:371,-151,-27,0,0,0.402764 -16318,5215:370,-150,-27,0,0,0.40494 -16319,5214:479,-149,-27,0,0,0.404693 -16320,5214:478,-148,-27,0,0,0.401282 -16321,5214:477,-147,-27,0,0,0.397634 -16322,5214:476,-146,-27,0,0,0.397117 -16323,5214:475,-145,-27,0,0,0.401652 -16324,5214:374,-144,-27,0,0,0.397929 -16325,5214:373,-143,-27,0,0,0.394439 -16326,5214:372,-142,-27,0,0,0.394513 -16327,5214:371,-141,-27,0,0,0.393899 -16328,5214:370,-140,-27,0,0,0.392674 -16329,5213:479,-139,-27,0,0,0.395519 -16330,5213:478,-138,-27,0,0,0.397044 -16331,5213:477,-137,-27,0,0,0.396994 -16332,5213:476,-136,-27,0,0,0.398077 -16333,5213:475,-135,-27,0,0,0.399407 -16334,5213:374,-134,-27,0,0,0.396428 -16335,5213:373,-133,-27,0,0,0.395495 -16336,5213:372,-132,-27,0,0,0.394906 -16337,5213:371,-131,-27,0,0,0.391205 -16338,5213:370,-130,-27,0,0,0.390006 -16339,5212:479,-129,-27,0,0,0.388663 -16340,5212:478,-128,-27,0,0,0.383306 -16341,5212:477,-127,-27,0,0,0.382189 -16342,5212:476,-126,-27,0,0,0.383208 -16343,5212:475,-125,-27,0,0,0.380686 -16344,5212:374,-124,-27,0,0,0.381946 -16345,5212:373,-123,-27,0,0,0.382019 -16346,5212:372,-122,-27,0,0,0.380953 -16347,5212:371,-121,-27,0,0,0.379427 -16348,5212:370,-120,-27,0,0,0.379355 -16349,5211:479,-119,-27,0,0,0.37933 -16350,5211:478,-118,-27,0,0,0.372317 -16351,5211:477,-117,-27,0,0,0.366597 -16352,5211:476,-116,-27,0,0,0.368675 -16353,5211:475,-115,-27,0,0,0.37436 -16354,5211:374,-114,-27,0,0,0.378895 -16355,5211:373,-113,-27,0,0,0.382505 -16356,5211:372,-112,-27,0,0,0.378267 -16357,5211:371,-111,-27,0,0,0.375902 -16358,5211:370,-110,-27,0,0,0.379476 -16359,5210:479,-109,-27,0,0,0.379452 -16360,5210:478,-108,-27,0,0,0.387516 -16361,5210:477,-107,-27,0,0,0.377735 -16362,5210:476,-106,-27,0,0,0.375058 -16363,5210:475,-105,-27,0,0,0.37846 -16364,5210:374,-104,-27,0,0,0.360653 -16365,5210:373,-103,-27,0,0,0.371861 -16366,5210:372,-102,-27,0,0,0.369129 -16367,5210:371,-101,-27,0,0,0.367934 -16368,5210:370,-100,-27,0,0,0.356801 -16369,5209:479,-99,-27,0,0,0.362218 -16370,5209:478,-98,-27,0,0,0.365143 -16371,5209:477,-97,-27,0,0,0.362194 -16372,5209:476,-96,-27,0,0,0.35494 -16373,5209:475,-95,-27,0,0,0.360605 -16374,5209:374,-94,-27,0,0,0.357956 -16375,5209:373,-93,-27,0,0,0.355105 -16376,5209:372,-92,-27,0,0,0.365523 -16377,5209:371,-91,-27,0,0,0.358028 -16378,5209:370,-90,-27,0,0,0.361886 -16379,5208:479,-89,-27,0,0,0.362978 -16380,5208:478,-88,-27,0,0,0.360701 -16381,5208:477,-87,-27,0,0,0.358193 -16382,5208:476,-86,-27,0,0,0.35224 -16383,5208:475,-85,-27,0,0,0.349315 -16384,5208:374,-84,-27,0,0,0.349758 -16385,5208:373,-83,-27,0,0,0.347938 -16386,5208:372,-82,-27,0,0,0.346122 -16387,5208:371,-81,-27,0,0,0.343407 -16388,5208:370,-80,-27,0,0,0.341671 -16389,5207:479,-79,-27,0,0,0.350881 -16390,5207:478,-78,-27,0,0,0.346983 -16391,5207:477,-77,-27,0,0,0.346727 -16392,5207:476,-76,-27,0,0,0.343337 -16393,5207:475,-75,-27,0,0,0.335368 -16394,5207:374,-74,-27,0,0,0.332602 -16395,5207:373,-73,-27,0,0,0.325999 -16396,5205:477,-57,-27,0,0,0.503071 -16397,5205:476,-56,-27,0,0,0.466212 -16398,5205:475,-55,-27,0,0,0.408983 -16399,5205:374,-54,-27,0,0,0.403852 -16400,5205:373,-53,-27,0,0,0.405312 -16401,5205:372,-52,-27,0,0,0.447222 -16402,5205:371,-51,-27,0,0,0.5004 -16403,5205:370,-50,-27,0,0,0.475402 -16404,5204:479,-49,-27,0,0,0.466979 -16405,5204:478,-48,-27,0,0,0.457964 -16406,5204:477,-47,-27,0,0,0.463068 -16407,5204:476,-46,-27,0,0,0.439311 -16408,5204:475,-45,-27,0,0,0.432717 -16409,5204:374,-44,-27,0,0,0.41199 -16410,5204:373,-43,-27,0,0,0.407815 -16411,5204:372,-42,-27,0,0,0.399654 -16412,5204:371,-41,-27,0,0,0.403357 -16413,5204:370,-40,-27,0,0,0.396921 -16414,5203:479,-39,-27,0,0,0.39412 -16415,5203:478,-38,-27,0,0,0.387077 -16416,5203:477,-37,-27,0,0,0.376047 -16417,5203:476,-36,-27,0,0,0.379863 -16418,5203:475,-35,-27,0,0,0.373447 -16419,5203:374,-34,-27,0,0,0.370926 -16420,5203:373,-33,-27,0,0,0.377277 -16421,5203:372,-32,-27,0,0,0.36674 -16422,5203:371,-31,-27,0,0,0.369201 -16423,5203:370,-30,-27,0,0,0.366812 -16424,5202:479,-29,-27,0,0,0.363311 -16425,5202:478,-28,-27,0,0,0.367599 -16426,5202:477,-27,-27,0,0,0.371381 -16427,5202:476,-26,-27,0,0,0.36968 -16428,5202:475,-25,-27,0,0,0.366549 -16429,5202:374,-24,-27,0,0,0.364357 -16430,5202:373,-23,-27,0,0,0.359327 -16431,5202:372,-22,-27,0,0,0.360297 -16432,5202:371,-21,-27,0,0,0.366931 -16433,5202:370,-20,-27,0,0,0.364833 -16434,5201:479,-19,-27,0,0,0.363644 -16435,5201:478,-18,-27,0,0,0.362313 -16436,5201:477,-17,-27,0,0,0.361009 -16437,5201:476,-16,-27,0,0,0.351045 -16438,5201:475,-15,-27,0,0,0.348288 -16439,5201:374,-14,-27,0,0,0.355364 -16440,5201:373,-13,-27,0,0,0.354964 -16441,5201:372,-12,-27,0,0,0.365071 -16442,5201:371,-11,-27,0,0,0.351981 -16443,5201:370,-10,-27,0,0,0.36748 -16444,5200:479,-9,-27,0,0,0.357296 -16445,5200:478,-8,-27,0,0,0.362883 -16446,5200:477,-7,-27,0,0,0.361483 -16447,5200:476,-6,-27,0,0,0.363121 -16448,5200:475,-5,-27,0,0,0.362527 -16449,5200:374,-4,-27,0,0,0.36108 -16450,5200:373,-3,-27,0,0,0.354446 -16451,5200:372,-2,-27,0,0,0.352497 -16452,5200:371,-1,-27,0,0,0.347589 -16453,3200:371,0,-27,0,0,0.352451 -16454,3200:371,1,-27,0,0,0.354822 -16455,3200:372,2,-27,0,0,0.35928 -16456,3200:373,3,-27,0,0,0.358807 -16457,3200:374,4,-27,0,0,0.354658 -16458,3200:475,5,-27,0,0,0.353859 -16459,3200:476,6,-27,0,0,0.358902 -16460,3200:477,7,-27,0,0,0.362265 -16461,3200:478,8,-27,0,0,0.37424 -16462,3200:479,9,-27,0,0,0.378847 -16463,3201:370,10,-27,0,0,0.377977 -16464,3201:371,11,-27,0,0,0.367647 -16465,3201:372,12,-27,0,0,0.39233 -16466,3201:373,13,-27,0,0,0.396724 -16467,3201:374,14,-27,0,0,0.391082 -16468,3201:475,15,-27,0,0,0.393213 -16469,3201:476,16,-27,0,0,0.400196 -16470,3201:477,17,-27,0,0,0.397216 -16471,3201:478,18,-27,0,0,0.423761 -16472,3201:479,19,-27,0,0,0.424364 -16473,3202:370,20,-27,0,0,0.41513 -16474,3202:371,21,-27,0,0,0.416378 -16475,3202:372,22,-27,0,0,0.438122 -16476,3202:373,23,-27,0,0,0.48507 -16477,3202:374,24,-27,0,0,0.492977 -16478,3202:475,25,-27,0,0,0.487842 -16479,3202:476,26,-27,0,0,0.480426 -16480,3202:477,27,-27,0,0,0.482042 -16481,3202:478,28,-27,0,0,0.488355 -16482,3202:479,29,-27,0,0,0.452536 -16483,3203:370,30,-27,0,0,0.444049 -16484,3203:371,31,-27,0,0,0.416428 -16485,3203:372,32,-27,0,0,0.413609 -16486,3203:373,33,-27,0,0,0.411941 -16487,3203:374,34,-27,0,0,0.409578 -16488,3203:475,35,-27,0,0,0.418427 -16489,3203:476,36,-27,0,0,0.408262 -16490,3203:477,37,-27,0,0,0.39958 -16491,3203:478,38,-27,0,0,0.399974 -16492,3203:479,39,-27,0,0,0.404569 -16493,3204:370,40,-27,0,0,0.394488 -16494,3204:371,41,-27,0,0,0.38776 -16495,3204:372,42,-27,0,0,0.387247 -16496,3204:373,43,-27,0,0,0.386687 -16497,3204:374,44,-27,0,0,0.386176 -16498,3204:475,45,-27,0,0,0.386882 -16499,3204:476,46,-27,0,0,0.38384 -16500,3204:477,47,-27,0,0,0.379282 -16501,3204:478,48,-27,0,0,0.377301 -16502,3204:479,49,-27,0,0,0.374649 -16503,3205:370,50,-27,0,0,0.372509 -16504,3205:371,51,-27,0,0,0.37047 -16505,3205:372,52,-27,0,0,0.373374 -16506,3205:373,53,-27,0,0,0.366549 -16507,3205:374,54,-27,0,0,0.366406 -16508,3205:475,55,-27,0,0,0.362503 -16509,3205:476,56,-27,0,0,0.36255 -16510,3205:477,57,-27,0,0,0.3621 -16511,3205:478,58,-27,0,0,0.363525 -16512,3205:479,59,-27,0,0,0.368244 -16513,3206:370,60,-27,0,0,0.367982 -16514,3206:371,61,-27,0,0,0.369488 -16515,3206:372,62,-27,0,0,0.367671 -16516,3206:373,63,-27,0,0,0.369512 -16517,3206:374,64,-27,0,0,0.369943 -16518,3206:475,65,-27,0,0,0.369488 -16519,3206:476,66,-27,0,0,0.370926 -16520,3206:477,67,-27,0,0,0.36581 -16521,3206:478,68,-27,0,0,0.369225 -16522,3206:479,69,-27,0,0,0.365523 -16523,3207:370,70,-27,0,0,0.366096 -16524,3207:371,71,-27,0,0,0.367026 -16525,3207:372,72,-27,0,0,0.364691 -16526,3207:374,74,-27,0,0,0.372437 -16527,3207:475,75,-27,0,0,0.371357 -16528,3207:476,76,-27,0,0,0.377084 -16529,3207:477,77,-27,0,0,0.364072 -16530,3207:478,78,-27,0,0,0.358571 -16531,3207:479,79,-27,0,0,0.362289 -16532,3208:370,80,-27,0,0,0.359304 -16533,3208:371,81,-27,0,0,0.358594 -16534,3208:372,82,-27,0,0,0.363263 -16535,3208:373,83,-27,0,0,0.362337 -16536,3208:374,84,-27,0,0,0.357886 -16537,3208:475,85,-27,0,0,0.354681 -16538,3208:476,86,-27,0,0,0.355882 -16539,3208:477,87,-27,0,0,0.356659 -16540,3208:478,88,-27,0,0,0.354164 -16541,3208:479,89,-27,0,0,0.348242 -16542,3209:370,90,-27,0,0,0.350179 -16543,3209:371,91,-27,0,0,0.350974 -16544,3209:372,92,-27,0,0,0.349758 -16545,3209:373,93,-27,0,0,0.349782 -16546,3209:374,94,-27,0,0,0.344473 -16547,3209:475,95,-27,0,0,0.342319 -16548,3209:476,96,-27,0,0,0.343268 -16549,3209:477,97,-27,0,0,0.344914 -16550,3209:478,98,-27,0,0,0.344032 -16551,3209:479,99,-27,0,0,0.344195 -16552,3210:370,100,-27,0,0,0.345588 -16553,3210:371,101,-27,0,0,0.346029 -16554,3210:372,102,-27,0,0,0.339686 -16555,3210:373,103,-27,0,0,0.340217 -16556,3210:374,104,-27,0,0,0.339134 -16557,3210:475,105,-27,0,0,0.347379 -16558,3210:476,106,-27,0,0,0.350437 -16559,3210:477,107,-27,0,0,0.355764 -16560,3210:478,108,-27,0,0,0.349642 -16561,3210:479,109,-27,0,0,0.361269 -16562,3211:370,110,-27,0,0,0.377132 -16563,3211:371,111,-27,0,0,0.381267 -16564,3211:372,112,-27,0,0,0.38105 -16565,3211:373,113,-27,0,0,0.399086 -16566,3211:374,114,-27,0,0,0.424841 -16567,3211:475,115,-27,0,0,0.440071 -16568,3211:476,116,-27,0,0,0.437338 -16569,3211:477,117,-27,0,0,0.438299 -16570,3211:478,118,-27,0,0,0.430852 -16571,3211:479,119,-27,0,0,0.418802 -16572,3212:370,120,-27,0,0,0.396674 -16573,3212:371,121,-27,0,0,0.372461 -16574,3212:372,122,-27,0,0,0.38316 -16575,3212:373,123,-27,0,0,0.376166 -16576,3212:374,124,-27,0,0,0.369608 -16577,3212:475,125,-27,0,0,0.370063 -16578,3212:476,126,-27,0,0,0.368507 -16579,3212:477,127,-27,0,0,0.36901 -16580,3212:478,128,-27,0,0,0.365833 -16581,3212:479,129,-27,0,0,0.36612 -16582,3213:370,130,-27,0,0,0.373182 -16583,3213:371,131,-27,0,0,0.372581 -16584,3213:372,132,-27,0,0,0.368053 -16585,3213:373,133,-27,0,0,0.385932 -16586,3213:374,134,-27,0,0,0.389517 -16587,3213:475,135,-27,0,0,0.389102 -16588,3213:476,136,-27,0,0,0.393262 -16589,3213:477,137,-27,0,0,0.421079 -16590,3213:478,138,-27,0,0,0.412364 -16591,3215:371,151,-27,0,0,0.495108 -16592,3215:372,152,-27,0,0,0.478042 -16593,3215:373,153,-27,0,0,0.485942 -16594,3215:374,154,-27,0,0,0.510596 -16595,3215:475,155,-27,0,0,0.528828 -16596,3215:476,156,-27,0,0,0.502044 -16597,3215:477,157,-27,0,0,0.50302 -16598,3215:478,158,-27,0,0,0.475171 -16599,3215:479,159,-27,0,0,0.484018 -16600,3216:370,160,-27,0,0,0.50284 -16601,3216:371,161,-27,0,0,0.504869 -16602,3216:372,162,-27,0,0,0.450959 -16603,3216:373,163,-27,0,0,0.464985 -16604,3216:374,164,-27,0,0,0.438527 -16605,3216:475,165,-27,0,0,0.412339 -16606,3216:476,166,-27,0,0,0.41341 -16607,3216:477,167,-27,0,0,0.40866 -16608,3216:478,168,-27,0,0,0.402813 -16609,3216:479,169,-27,0,0,0.397437 -16610,3217:370,170,-27,0,0,0.391278 -16611,3217:371,171,-27,0,0,0.390421 -16612,3217:372,172,-27,0,0,0.38316 -16613,3217:373,173,-27,0,0,0.382505 -16614,3217:475,175,-27,0,0,0.397511 -16615,3217:476,176,-27,0,0,0.410647 -16616,3217:477,177,-27,0,0,0.406204 -16617,3217:478,178,-27,0,0,0.401085 -16618,3217:479,179,-27,0,0,0.397265 -16619,3218:370,180,-27,0,0,0.391229 -16620,5218:360,-180,-26,0,0,0.410747 -16621,5217:469,-179,-26,0,0,0.411617 -16622,5217:468,-178,-26,0,0,0.412837 -16623,5217:467,-177,-26,0,0,0.415155 -16624,5217:466,-176,-26,0,0,0.414307 -16625,5217:465,-175,-26,0,0,0.408734 -16626,5217:364,-174,-26,0,0,0.406352 -16627,5217:363,-173,-26,0,0,0.413111 -16628,5217:362,-172,-26,0,0,0.415454 -16629,5217:361,-171,-26,0,0,0.417427 -16630,5217:360,-170,-26,0,0,0.412638 -16631,5216:469,-169,-26,0,0,0.414157 -16632,5216:468,-168,-26,0,0,0.407146 -16633,5216:467,-167,-26,0,0,0.407047 -16634,5216:466,-166,-26,0,0,0.403802 -16635,5216:465,-165,-26,0,0,0.400024 -16636,5216:364,-164,-26,0,0,0.401479 -16637,5216:363,-163,-26,0,0,0.405485 -16638,5216:362,-162,-26,0,0,0.405956 -16639,5216:361,-161,-26,0,0,0.403678 -16640,5216:360,-160,-26,0,0,0.404717 -16641,5215:469,-159,-26,0,0,0.404965 -16642,5215:468,-158,-26,0,0,0.403134 -16643,5215:467,-157,-26,0,0,0.404445 -16644,5215:466,-156,-26,0,0,0.407393 -16645,5215:465,-155,-26,0,0,0.408958 -16646,5215:364,-154,-26,0,0,0.409802 -16647,5215:363,-153,-26,0,0,0.414831 -16648,5215:362,-152,-26,0,0,0.415554 -16649,5215:361,-151,-26,0,0,0.417028 -16650,5215:360,-150,-26,0,0,0.415679 -16651,5214:469,-149,-26,0,0,0.415804 -16652,5214:468,-148,-26,0,0,0.411941 -16653,5214:467,-147,-26,0,0,0.409082 -16654,5214:466,-146,-26,0,0,0.411891 -16655,5214:465,-145,-26,0,0,0.411518 -16656,5214:364,-144,-26,0,0,0.411841 -16657,5214:363,-143,-26,0,0,0.408014 -16658,5214:362,-142,-26,0,0,0.403332 -16659,5214:361,-141,-26,0,0,0.403407 -16660,5214:360,-140,-26,0,0,0.404916 -16661,5213:469,-139,-26,0,0,0.403777 -16662,5213:468,-138,-26,0,0,0.407418 -16663,5213:467,-137,-26,0,0,0.410846 -16664,5213:466,-136,-26,0,0,0.411717 -16665,5213:465,-135,-26,0,0,0.41229 -16666,5213:364,-134,-26,0,0,0.411916 -16667,5213:363,-133,-26,0,0,0.408138 -16668,5213:362,-132,-26,0,0,0.406352 -16669,5213:361,-131,-26,0,0,0.405758 -16670,5213:360,-130,-26,0,0,0.40306 -16671,5212:469,-129,-26,0,0,0.399086 -16672,5212:468,-128,-26,0,0,0.393949 -16673,5212:467,-127,-26,0,0,0.393507 -16674,5212:466,-126,-26,0,0,0.396748 -16675,5212:465,-125,-26,0,0,0.397462 -16676,5212:364,-124,-26,0,0,0.396576 -16677,5212:363,-123,-26,0,0,0.394979 -16678,5212:362,-122,-26,0,0,0.393605 -16679,5212:361,-121,-26,0,0,0.392135 -16680,5212:360,-120,-26,0,0,0.391645 -16681,5211:469,-119,-26,0,0,0.391816 -16682,5211:468,-118,-26,0,0,0.389981 -16683,5211:467,-117,-26,0,0,0.38793 -16684,5211:466,-116,-26,0,0,0.391523 -16685,5211:465,-115,-26,0,0,0.395814 -16686,5211:364,-114,-26,0,0,0.395053 -16687,5211:363,-113,-26,0,0,0.392526 -16688,5211:362,-112,-26,0,0,0.395667 -16689,5211:361,-111,-26,0,0,0.394685 -16690,5211:360,-110,-26,0,0,0.39439 -16691,5210:469,-109,-26,0,0,0.397068 -16692,5210:468,-108,-26,0,0,0.399629 -16693,5210:467,-107,-26,0,0,0.397732 -16694,5210:466,-106,-26,0,0,0.392649 -16695,5210:465,-105,-26,0,0,0.392943 -16696,5210:364,-104,-26,0,0,0.397634 -16697,5210:363,-103,-26,0,0,0.407865 -16698,5210:362,-102,-26,0,0,0.39788 -16699,5210:361,-101,-26,0,0,0.384472 -16700,5210:360,-100,-26,0,0,0.38859 -16701,5209:469,-99,-26,0,0,0.384132 -16702,5209:468,-98,-26,0,0,0.37718 -16703,5209:467,-97,-26,0,0,0.378871 -16704,5209:466,-96,-26,0,0,0.380105 -16705,5209:465,-95,-26,0,0,0.379379 -16706,5209:364,-94,-26,0,0,0.373711 -16707,5209:363,-93,-26,0,0,0.380928 -16708,5209:362,-92,-26,0,0,0.38054 -16709,5209:361,-91,-26,0,0,0.378919 -16710,5209:360,-90,-26,0,0,0.381849 -16711,5208:469,-89,-26,0,0,0.378122 -16712,5208:468,-88,-26,0,0,0.379379 -16713,5208:467,-87,-26,0,0,0.373686 -16714,5208:466,-86,-26,0,0,0.370135 -16715,5208:465,-85,-26,0,0,0.369129 -16716,5208:364,-84,-26,0,0,0.365381 -16717,5208:363,-83,-26,0,0,0.365357 -16718,5208:362,-82,-26,0,0,0.363691 -16719,5208:361,-81,-26,0,0,0.362123 -16720,5208:360,-80,-26,0,0,0.358311 -16721,5207:469,-79,-26,0,0,0.365286 -16722,5207:468,-78,-26,0,0,0.366573 -16723,5207:467,-77,-26,0,0,0.364404 -16724,5207:466,-76,-26,0,0,0.35567 -16725,5207:465,-75,-26,0,0,0.348847 -16726,5207:364,-74,-26,0,0,0.343824 -16727,5207:363,-73,-26,0,0,0.339641 -16728,5207:362,-72,-26,0,0,0.306694 -16729,5205:363,-53,-26,0,0,0.437768 -16730,5205:362,-52,-26,0,0,0.431079 -16731,5205:361,-51,-26,0,0,0.530696 -16732,5205:360,-50,-26,0,0,0.541683 -16733,5204:469,-49,-26,0,0,0.512341 -16734,5204:468,-48,-26,0,0,0.483478 -16735,5204:467,-47,-26,0,0,0.496753 -16736,5204:466,-46,-26,0,0,0.472507 -16737,5204:465,-45,-26,0,0,0.461638 -16738,5204:364,-44,-26,0,0,0.426624 -16739,5204:363,-43,-26,0,0,0.42846 -16740,5204:362,-42,-26,0,0,0.429014 -16741,5204:361,-41,-26,0,0,0.417752 -16742,5204:360,-40,-26,0,0,0.408485 -16743,5203:469,-39,-26,0,0,0.41092 -16744,5203:468,-38,-26,0,0,0.395077 -16745,5203:467,-37,-26,0,0,0.401479 -16746,5203:466,-36,-26,0,0,0.391792 -16747,5203:465,-35,-26,0,0,0.393458 -16748,5203:364,-34,-26,0,0,0.391498 -16749,5203:363,-33,-26,0,0,0.381267 -16750,5203:362,-32,-26,0,0,0.38054 -16751,5203:361,-31,-26,0,0,0.382165 -16752,5203:360,-30,-26,0,0,0.386638 -16753,5202:469,-29,-26,0,0,0.382577 -16754,5202:468,-28,-26,0,0,0.381631 -16755,5202:467,-27,-26,0,0,0.389835 -16756,5202:466,-26,-26,0,0,0.391473 -16757,5202:465,-25,-26,0,0,0.384204 -16758,5202:364,-24,-26,0,0,0.3892 -16759,5202:363,-23,-26,0,0,0.393311 -16760,5202:362,-22,-26,0,0,0.389933 -16761,5202:361,-21,-26,0,0,0.388003 -16762,5202:360,-20,-26,0,0,0.383111 -16763,5201:469,-19,-26,0,0,0.38134 -16764,5201:468,-18,-26,0,0,0.375324 -16765,5201:467,-17,-26,0,0,0.377808 -16766,5201:466,-16,-26,0,0,0.373903 -16767,5201:465,-15,-26,0,0,0.381316 -16768,5201:364,-14,-26,0,0,0.37477 -16769,5201:363,-13,-26,0,0,0.372797 -16770,5201:362,-12,-26,0,0,0.383694 -16771,5201:361,-11,-26,0,0,0.372293 -16772,5201:360,-10,-26,0,0,0.383791 -16773,5200:469,-9,-26,0,0,0.378654 -16774,5200:468,-8,-26,0,0,0.383354 -16775,5200:467,-7,-26,0,0,0.384132 -16776,5200:466,-6,-26,0,0,0.38025 -16777,5200:465,-5,-26,0,0,0.382674 -16778,5200:364,-4,-26,0,0,0.383549 -16779,5200:363,-3,-26,0,0,0.387711 -16780,5200:362,-2,-26,0,0,0.384083 -16781,5200:361,-1,-26,0,0,0.373278 -16782,3200:361,0,-26,0,0,0.372053 -16783,3200:361,1,-26,0,0,0.37875 -16784,3200:362,2,-26,0,0,0.377905 -16785,3200:363,3,-26,0,0,0.377301 -16786,3200:364,4,-26,0,0,0.376674 -16787,3200:465,5,-26,0,0,0.377735 -16788,3200:466,6,-26,0,0,0.386029 -16789,3200:467,7,-26,0,0,0.387833 -16790,3200:468,8,-26,0,0,0.383962 -16791,3200:469,9,-26,0,0,0.38042 -16792,3201:360,10,-26,0,0,0.379137 -16793,3201:361,11,-26,0,0,0.37933 -16794,3201:362,12,-26,0,0,0.390031 -16795,3201:363,13,-26,0,0,0.402467 -16796,3201:364,14,-26,0,0,0.401356 -16797,3201:465,15,-26,0,0,0.401232 -16798,3201:466,16,-26,0,0,0.407096 -16799,3201:467,17,-26,0,0,0.41518 -16800,3201:468,18,-26,0,0,0.393213 -16801,3202:465,25,-26,0,0,0.421631 -16802,3202:466,26,-26,0,0,0.463452 -16803,3202:467,27,-26,0,0,0.520243 -16804,3202:468,28,-26,0,0,0.505896 -16805,3202:469,29,-26,0,0,0.502865 -16806,3203:360,30,-26,0,0,0.49927 -16807,3203:361,31,-26,0,0,0.451314 -16808,3203:362,32,-26,0,0,0.446232 -16809,3203:363,33,-26,0,0,0.444404 -16810,3203:364,34,-26,0,0,0.439185 -17135,3204:457,47,-25,0,0,0.42133 -16811,3203:465,35,-26,0,0,0.435746 -16812,3203:466,36,-26,0,0,0.427479 -16813,3203:467,37,-26,0,0,0.427781 -16814,3203:468,38,-26,0,0,0.427755 -16815,3203:469,39,-26,0,0,0.426373 -16816,3204:360,40,-26,0,0,0.419878 -16817,3204:361,41,-26,0,0,0.411393 -16818,3204:362,42,-26,0,0,0.407791 -16819,3204:363,43,-26,0,0,0.405634 -16820,3204:364,44,-26,0,0,0.408585 -16821,3204:465,45,-26,0,0,0.40861 -16822,3204:466,46,-26,0,0,0.401381 -16823,3204:467,47,-26,0,0,0.397019 -16824,3204:468,48,-26,0,0,0.400368 -16825,3204:469,49,-26,0,0,0.393409 -16826,3205:360,50,-26,0,0,0.393654 -16827,3205:361,51,-26,0,0,0.391473 -16828,3205:362,52,-26,0,0,0.390739 -16829,3205:363,53,-26,0,0,0.392919 -16830,3205:364,54,-26,0,0,0.390837 -16831,3205:465,55,-26,0,0,0.387686 -16832,3205:466,56,-26,0,0,0.383063 -16833,3205:467,57,-26,0,0,0.38134 -16834,3205:468,58,-26,0,0,0.382505 -16835,3205:469,59,-26,0,0,0.386395 -16836,3206:360,60,-26,0,0,0.393654 -16837,3206:361,61,-26,0,0,0.395962 -16838,3206:362,62,-26,0,0,0.394979 -16839,3206:363,63,-26,0,0,0.391498 -16840,3206:364,64,-26,0,0,0.386054 -16841,3206:465,65,-26,0,0,0.394194 -16842,3206:466,66,-26,0,0,0.391718 -16843,3206:467,67,-26,0,0,0.388053 -16844,3206:468,68,-26,0,0,0.388663 -16845,3206:469,69,-26,0,0,0.389053 -16846,3207:360,70,-26,0,0,0.386516 -16847,3207:361,71,-26,0,0,0.387589 -16848,3207:362,72,-26,0,0,0.390275 -16849,3207:364,74,-26,0,0,0.395962 -16850,3207:465,75,-26,0,0,0.401306 -16851,3207:466,76,-26,0,0,0.40442 -16852,3207:467,77,-26,0,0,0.398594 -16853,3207:468,78,-26,0,0,0.398544 -16854,3207:469,79,-26,0,0,0.396551 -16855,3208:360,80,-26,0,0,0.398027 -16856,3208:361,81,-26,0,0,0.396404 -16857,3208:362,82,-26,0,0,0.39189 -16858,3208:363,83,-26,0,0,0.387199 -16859,3208:364,84,-26,0,0,0.387077 -16860,3208:465,85,-26,0,0,0.388394 -16861,3208:466,86,-26,0,0,0.386492 -16862,3208:467,87,-26,0,0,0.387077 -16863,3208:468,88,-26,0,0,0.383403 -16864,3208:469,89,-26,0,0,0.379185 -16865,3209:360,90,-26,0,0,0.377832 -16866,3209:361,91,-26,0,0,0.376119 -16867,3209:362,92,-26,0,0,0.376022 -16868,3209:363,93,-26,0,0,0.371405 -16869,3209:364,94,-26,0,0,0.36834 -16870,3209:465,95,-26,0,0,0.371309 -16871,3209:466,96,-26,0,0,0.37424 -16872,3209:467,97,-26,0,0,0.368005 -16873,3209:468,98,-26,0,0,0.363668 -16874,3209:469,99,-26,0,0,0.365452 -16875,3210:360,100,-26,0,0,0.3621 -16876,3210:361,101,-26,0,0,0.363311 -16877,3210:362,102,-26,0,0,0.369106 -16878,3210:363,103,-26,0,0,0.366287 -16879,3210:364,104,-26,0,0,0.357248 -16880,3210:465,105,-26,0,0,0.355622 -16881,3210:466,106,-26,0,0,0.364691 -16882,3210:467,107,-26,0,0,0.373879 -16883,3210:468,108,-26,0,0,0.381122 -16884,3210:469,109,-26,0,0,0.389908 -16885,3211:360,110,-26,0,0,0.400689 -16886,3211:361,111,-26,0,0,0.407146 -16887,3211:362,112,-26,0,0,0.412663 -16888,3211:363,113,-26,0,0,0.417627 -16889,3211:364,114,-26,0,0,0.421355 -16890,3211:465,115,-26,0,0,0.449992 -16891,3212:360,120,-26,0,0,0.419527 -16892,3212:361,121,-26,0,0,0.420328 -16893,3212:362,122,-26,0,0,0.420628 -16894,3212:363,123,-26,0,0,0.415904 -16895,3212:364,124,-26,0,0,0.403258 -16896,3212:465,125,-26,0,0,0.390446 -16897,3212:466,126,-26,0,0,0.372533 -16898,3212:467,127,-26,0,0,0.37323 -16899,3212:468,128,-26,0,0,0.383888 -16900,3212:469,129,-26,0,0,0.394464 -16901,3213:360,130,-26,0,0,0.398988 -16902,3213:361,131,-26,0,0,0.398569 -16903,3213:362,132,-26,0,0,0.403283 -16904,3213:363,133,-26,0,0,0.40301 -16905,3213:364,134,-26,0,0,0.411319 -16906,3213:465,135,-26,0,0,0.422457 -16907,3213:467,137,-26,0,0,0.449255 -16908,3215:362,152,-26,0,0,0.494595 -16909,3215:363,153,-26,0,0,0.498294 -16910,3215:364,154,-26,0,0,0.5614 -16911,3215:465,155,-26,0,0,0.552883 -16912,3215:466,156,-26,0,0,0.560084 -16913,3215:467,157,-26,0,0,0.529186 -16914,3215:468,158,-26,0,0,0.5365 -16915,3215:469,159,-26,0,0,0.531617 -16916,3216:360,160,-26,0,0,0.515678 -16917,3216:361,161,-26,0,0,0.50849 -16918,3216:362,162,-26,0,0,0.483376 -16919,3216:363,163,-26,0,0,0.488688 -16920,3216:364,164,-26,0,0,0.467797 -16921,3216:465,165,-26,0,0,0.444734 -16922,3216:466,166,-26,0,0,0.448975 -16923,3216:467,167,-26,0,0,0.445648 -16924,3216:468,168,-26,0,0,0.422633 -16925,3216:469,169,-26,0,0,0.411493 -16926,3217:360,170,-26,0,0,0.405287 -16927,3217:361,171,-26,0,0,0.40353 -16928,3217:362,172,-26,0,0,0.394022 -16929,3217:363,173,-26,0,0,0.401454 -16930,3217:364,174,-26,0,0,0.434079 -16931,3217:465,175,-26,0,0,0.423938 -16932,3217:466,176,-26,0,0,0.42158 -16933,3217:467,177,-26,0,0,0.407096 -16934,3217:468,178,-26,0,0,0.419427 -16935,3217:469,179,-26,0,0,0.417527 -16936,3218:360,180,-26,0,0,0.410747 -16937,5218:350,-180,-25,0,0,0.427529 -16938,5217:459,-179,-25,0,0,0.428234 -16939,5217:458,-178,-25,0,0,0.43754 -16940,5217:457,-177,-25,0,0,0.438653 -16941,5217:456,-176,-25,0,0,0.435014 -16942,5217:455,-175,-25,0,0,0.435897 -16943,5217:354,-174,-25,0,0,0.433903 -16944,5217:353,-173,-25,0,0,0.433676 -16945,5217:352,-172,-25,0,0,0.434281 -16946,5217:351,-171,-25,0,0,0.431557 -16947,5217:350,-170,-25,0,0,0.429895 -16948,5216:459,-169,-25,0,0,0.425444 -16949,5216:458,-168,-25,0,0,0.423435 -16950,5216:457,-167,-25,0,0,0.422433 -16951,5216:456,-166,-25,0,0,0.421831 -16952,5216:455,-165,-25,0,0,0.417677 -16953,5216:354,-164,-25,0,0,0.416128 -16954,5216:353,-163,-25,0,0,0.420379 -16955,5216:352,-162,-25,0,0,0.42138 -16956,5216:351,-161,-25,0,0,0.419327 -16957,5216:350,-160,-25,0,0,0.42123 -16958,5215:459,-159,-25,0,0,0.423812 -16959,5215:458,-158,-25,0,0,0.42103 -16960,5215:457,-157,-25,0,0,0.418327 -16961,5215:456,-156,-25,0,0,0.420078 -16962,5215:455,-155,-25,0,0,0.423787 -16963,5215:354,-154,-25,0,0,0.429064 -16964,5215:353,-153,-25,0,0,0.434231 -16965,5215:352,-152,-25,0,0,0.432742 -16966,5215:351,-151,-25,0,0,0.440146 -16967,5215:350,-150,-25,0,0,0.437389 -16968,5214:459,-149,-25,0,0,0.434408 -16969,5214:458,-148,-25,0,0,0.434281 -16970,5214:457,-147,-25,0,0,0.425167 -16971,5214:456,-146,-25,0,0,0.431255 -16972,5214:455,-145,-25,0,0,0.429391 -16973,5214:354,-144,-25,0,0,0.432641 -16974,5214:353,-143,-25,0,0,0.425845 -16975,5214:352,-142,-25,0,0,0.422232 -16976,5214:351,-141,-25,0,0,0.421881 -16977,5214:350,-140,-25,0,0,0.417902 -16978,5213:459,-139,-25,0,0,0.420379 -16979,5213:458,-138,-25,0,0,0.425192 -16980,5213:457,-137,-25,0,0,0.430953 -16981,5213:456,-136,-25,0,0,0.426097 -16982,5213:455,-135,-25,0,0,0.427303 -16983,5213:354,-134,-25,0,0,0.425468 -16984,5213:353,-133,-25,0,0,0.427629 -16985,5213:352,-132,-25,0,0,0.427932 -16986,5213:351,-131,-25,0,0,0.422934 -16987,5213:350,-130,-25,0,0,0.416553 -16988,5212:459,-129,-25,0,0,0.419903 -16989,5212:458,-128,-25,0,0,0.419828 -16990,5212:457,-127,-25,0,0,0.416778 -16991,5212:456,-126,-25,0,0,0.417802 -16992,5212:455,-125,-25,0,0,0.417902 -16993,5212:354,-124,-25,0,0,0.418226 -16994,5212:353,-123,-25,0,0,0.416103 -16995,5212:352,-122,-25,0,0,0.410722 -16996,5212:351,-121,-25,0,0,0.406055 -16997,5212:350,-120,-25,0,0,0.405659 -16998,5211:459,-119,-25,0,0,0.410448 -16999,5211:458,-118,-25,0,0,0.407543 -17000,5211:457,-117,-25,0,0,0.418127 -17001,5211:456,-116,-25,0,0,0.417877 -17002,5211:455,-115,-25,0,0,0.414357 -17003,5211:354,-114,-25,0,0,0.411021 -17004,5211:353,-113,-25,0,0,0.405238 -17005,5211:352,-112,-25,0,0,0.413884 -17006,5211:351,-111,-25,0,0,0.415704 -17007,5211:350,-110,-25,0,0,0.40722 -17008,5210:459,-109,-25,0,0,0.407171 -17009,5210:458,-108,-25,0,0,0.409802 -17010,5210:457,-107,-25,0,0,0.420954 -17011,5210:456,-106,-25,0,0,0.425142 -17012,5210:455,-105,-25,0,0,0.420879 -17013,5210:354,-104,-25,0,0,0.419503 -17014,5210:353,-103,-25,0,0,0.423736 -17015,5210:352,-102,-25,0,0,0.42113 -17016,5210:351,-101,-25,0,0,0.414706 -17017,5210:350,-100,-25,0,0,0.406898 -17018,5209:459,-99,-25,0,0,0.400886 -17019,5209:458,-98,-25,0,0,0.401331 -17020,5209:457,-97,-25,0,0,0.400418 -17021,5209:456,-96,-25,0,0,0.396969 -17022,5209:455,-95,-25,0,0,0.397265 -17023,5209:354,-94,-25,0,0,0.398348 -17024,5209:353,-93,-25,0,0,0.399235 -17025,5209:352,-92,-25,0,0,0.401578 -17026,5209:351,-91,-25,0,0,0.401751 -17027,5209:350,-90,-25,0,0,0.399974 -17028,5208:459,-89,-25,0,0,0.393409 -17029,5208:458,-88,-25,0,0,0.390373 -17030,5208:457,-87,-25,0,0,0.387589 -17031,5208:456,-86,-25,0,0,0.386127 -17032,5208:455,-85,-25,0,0,0.385907 -17033,5208:354,-84,-25,0,0,0.382674 -17034,5208:353,-83,-25,0,0,0.378219 -17035,5208:352,-82,-25,0,0,0.378508 -17036,5208:351,-81,-25,0,0,0.378242 -17037,5208:350,-80,-25,0,0,0.381825 -17038,5207:459,-79,-25,0,0,0.38042 -17039,5207:458,-78,-25,0,0,0.379282 -17040,5207:457,-77,-25,0,0,0.376601 -17041,5207:456,-76,-25,0,0,0.367241 -17042,5207:455,-75,-25,0,0,0.361838 -17043,5207:354,-74,-25,0,0,0.350951 -17044,5207:353,-73,-25,0,0,0.351372 -17045,5207:352,-72,-25,0,0,0.344798 -17046,5205:352,-52,-25,0,0,0.480298 -17047,5205:351,-51,-25,0,0,0.496136 -17048,5205:350,-50,-25,0,0,0.561274 -17049,5204:459,-49,-25,0,0,0.513445 -17050,5204:458,-48,-25,0,0,0.509722 -17051,5204:457,-47,-25,0,0,0.50546 -17052,5204:456,-46,-25,0,0,0.473147 -17053,5204:455,-45,-25,0,0,0.456893 -17054,5204:354,-44,-25,0,0,0.447349 -17055,5204:353,-43,-25,0,0,0.444683 -17056,5204:352,-42,-25,0,0,0.439969 -17057,5204:351,-41,-25,0,0,0.43249 -17058,5204:350,-40,-25,0,0,0.438704 -17059,5203:459,-39,-25,0,0,0.432767 -17060,5203:458,-38,-25,0,0,0.417253 -17061,5203:457,-37,-25,0,0,0.425218 -17062,5203:456,-36,-25,0,0,0.422107 -17063,5203:455,-35,-25,0,0,0.426197 -17064,5203:354,-34,-25,0,0,0.414931 -17065,5203:353,-33,-25,0,0,0.416378 -17066,5203:352,-32,-25,0,0,0.402739 -17067,5203:351,-31,-25,0,0,0.41092 -17068,5203:350,-30,-25,0,0,0.417527 -17069,5202:459,-29,-25,0,0,0.415954 -17070,5202:458,-28,-25,0,0,0.404173 -17071,5202:457,-27,-25,0,0,0.41092 -17072,5202:456,-26,-25,0,0,0.417602 -17073,5202:455,-25,-25,0,0,0.411244 -17074,5202:354,-24,-25,0,0,0.403753 -17075,5202:353,-23,-25,0,0,0.415305 -17076,5202:352,-22,-25,0,0,0.404767 -17077,5202:351,-21,-25,0,0,0.397536 -17078,5202:350,-20,-25,0,0,0.405659 -17079,5201:459,-19,-25,0,0,0.407939 -17080,5201:458,-18,-25,0,0,0.401924 -17081,5201:457,-17,-25,0,0,0.403209 -17082,5201:456,-16,-25,0,0,0.403926 -17083,5201:455,-15,-25,0,0,0.400467 -17084,5201:354,-14,-25,0,0,0.401899 -17085,5201:353,-13,-25,0,0,0.403653 -17086,5201:352,-12,-25,0,0,0.390055 -17087,5201:351,-11,-25,0,0,0.400368 -17088,5201:350,-10,-25,0,0,0.405733 -17089,5200:459,-9,-25,0,0,0.401652 -17090,5200:458,-8,-25,0,0,0.400961 -17091,5200:457,-7,-25,0,0,0.408361 -17092,5200:456,-6,-25,0,0,0.404223 -17093,5200:455,-5,-25,0,0,0.403728 -17094,5200:354,-4,-25,0,0,0.406055 -17095,5200:353,-3,-25,0,0,0.404297 -17096,5200:352,-2,-25,0,0,0.400788 -17097,5200:351,-1,-25,0,0,0.399185 -17098,3200:351,0,-25,0,0,0.395912 -17099,3200:351,1,-25,0,0,0.393703 -17100,3200:352,2,-25,0,0,0.393728 -17101,3200:353,3,-25,0,0,0.393115 -17102,3200:354,4,-25,0,0,0.394316 -17103,3200:455,5,-25,0,0,0.392085 -17104,3200:456,6,-25,0,0,0.394856 -17105,3200:457,7,-25,0,0,0.397634 -17106,3200:458,8,-25,0,0,0.396798 -17107,3200:459,9,-25,0,0,0.400443 -17108,3201:350,10,-25,0,0,0.406824 -17109,3201:351,11,-25,0,0,0.408833 -17110,3201:352,12,-25,0,0,0.40933 -17111,3201:353,13,-25,0,0,0.412688 -17112,3201:354,14,-25,0,0,0.415679 -17113,3201:455,15,-25,0,0,0.418102 -17114,3201:456,16,-25,0,0,0.426197 -17115,3201:457,17,-25,0,0,0.419652 -17116,3202:458,28,-25,0,0,0.496778 -17117,3202:459,29,-25,0,0,0.53885 -17118,3203:350,30,-25,0,0,0.523397 -17119,3203:351,31,-25,0,0,0.518781 -17120,3203:352,32,-25,0,0,0.486584 -17121,3203:353,33,-25,0,0,0.455669 -17122,3203:354,34,-25,0,0,0.454217 -17123,3203:455,35,-25,0,0,0.445267 -17124,3203:456,36,-25,0,0,0.441235 -17125,3203:457,37,-25,0,0,0.448975 -17126,3203:458,38,-25,0,0,0.461817 -17127,3203:459,39,-25,0,0,0.476093 -17128,3204:350,40,-25,0,0,0.4774 -17129,3204:351,41,-25,0,0,0.453351 -17130,3204:352,42,-25,0,0,0.440729 -17131,3204:353,43,-25,0,0,0.430499 -17132,3204:354,44,-25,0,0,0.431936 -17133,3204:455,45,-25,0,0,0.43471 -17134,3204:456,46,-25,0,0,0.427705 -17136,3204:458,48,-25,0,0,0.421956 -17137,3204:459,49,-25,0,0,0.427227 -17138,3205:350,50,-25,0,0,0.413111 -17139,3205:351,51,-25,0,0,0.415454 -17140,3205:352,52,-25,0,0,0.412986 -17141,3205:353,53,-25,0,0,0.419677 -17142,3205:354,54,-25,0,0,0.425343 -17143,3205:455,55,-25,0,0,0.416128 -17144,3205:456,56,-25,0,0,0.410324 -17145,3205:457,57,-25,0,0,0.4101 -17146,3205:458,58,-25,0,0,0.410423 -17147,3205:459,59,-25,0,0,0.41331 -17148,3206:350,60,-25,0,0,0.416852 -17149,3206:351,61,-25,0,0,0.421405 -17150,3206:352,62,-25,0,0,0.422759 -17151,3206:353,63,-25,0,0,0.423736 -17152,3206:354,64,-25,0,0,0.419503 -17153,3206:455,65,-25,0,0,0.414557 -17154,3206:456,66,-25,0,0,0.419152 -17155,3206:457,67,-25,0,0,0.413983 -17156,3206:458,68,-25,0,0,0.410523 -17157,3206:459,69,-25,0,0,0.408958 -17158,3207:350,70,-25,0,0,0.413859 -17159,3207:351,71,-25,0,0,0.431986 -17160,3207:352,72,-25,0,0,0.428032 -17161,3207:354,74,-25,0,0,0.430071 -17162,3207:455,75,-25,0,0,0.436075 -17163,3207:456,76,-25,0,0,0.443871 -17164,3207:457,77,-25,0,0,0.429467 -17165,3207:458,78,-25,0,0,0.427202 -17166,3207:459,79,-25,0,0,0.425519 -17167,3208:350,80,-25,0,0,0.426926 -17168,3208:351,81,-25,0,0,0.426499 -17169,3208:352,82,-25,0,0,0.424213 -17170,3208:353,83,-25,0,0,0.422658 -17171,3208:354,84,-25,0,0,0.418226 -17172,3208:455,85,-25,0,0,0.411443 -17173,3208:456,86,-25,0,0,0.410473 -17174,3208:457,87,-25,0,0,0.414881 -17175,3208:458,88,-25,0,0,0.411319 -17176,3208:459,89,-25,0,0,0.407418 -17177,3209:350,90,-25,0,0,0.401627 -17178,3209:351,91,-25,0,0,0.39633 -17179,3209:352,92,-25,0,0,0.399407 -17180,3209:353,93,-25,0,0,0.394145 -17181,3209:354,94,-25,0,0,0.394414 -17182,3209:455,95,-25,0,0,0.397265 -17183,3209:456,96,-25,0,0,0.396822 -17184,3209:457,97,-25,0,0,0.3835 -17185,3209:458,98,-25,0,0,0.380105 -17186,3209:459,99,-25,0,0,0.382334 -17187,3210:350,100,-25,0,0,0.375299 -17188,3210:351,101,-25,0,0,0.378533 -17189,3210:352,102,-25,0,0,0.386395 -17190,3210:353,103,-25,0,0,0.375443 -17191,3210:354,104,-25,0,0,0.379234 -17192,3210:455,105,-25,0,0,0.379694 -17193,3210:456,106,-25,0,0,0.390691 -17194,3210:457,107,-25,0,0,0.389664 -17195,3210:458,108,-25,0,0,0.398274 -17196,3210:459,109,-25,0,0,0.393507 -17197,3211:350,110,-25,0,0,0.393924 -17198,3211:351,111,-25,0,0,0.421054 -17199,3211:352,112,-25,0,0,0.42123 -17200,3211:353,113,-25,0,0,0.43466 -17201,3211:354,114,-25,0,0,0.4598 -17202,3211:455,115,-25,0,0,0.469281 -17203,3212:456,126,-25,0,0,0.39466 -17204,3212:457,127,-25,0,0,0.391523 -17205,3212:458,128,-25,0,0,0.393213 -17206,3212:459,129,-25,0,0,0.40027 -17207,3213:350,130,-25,0,0,0.408958 -17208,3213:351,131,-25,0,0,0.411393 -17209,3213:352,132,-25,0,0,0.418402 -17210,3213:353,133,-25,0,0,0.442274 -17211,3213:354,134,-25,0,0,0.465061 -17212,3215:353,153,-25,0,0,0.546321 -17213,3215:354,154,-25,0,0,0.550469 -17214,3215:455,155,-25,0,0,0.535095 -17215,3215:456,156,-25,0,0,0.559198 -17216,3215:457,157,-25,0,0,0.530414 -17217,3215:458,158,-25,0,0,0.546754 -17218,3215:459,159,-25,0,0,0.527009 -17219,3216:350,160,-25,0,0,0.524576 -17220,3216:351,161,-25,0,0,0.515831 -17221,3216:352,162,-25,0,0,0.498602 -17222,3216:353,163,-25,0,0,0.496033 -17223,3216:354,164,-25,0,0,0.491128 -17224,3216:455,165,-25,0,0,0.492515 -17225,3216:456,166,-25,0,0,0.466545 -17226,3216:457,167,-25,0,0,0.455465 -17227,3216:458,168,-25,0,0,0.449407 -17228,3216:459,169,-25,0,0,0.43509 -17229,3217:350,170,-25,0,0,0.442451 -17230,3217:351,171,-25,0,0,0.441413 -17231,3217:352,172,-25,0,0,0.433852 -17232,3217:353,173,-25,0,0,0.433701 -17233,3217:354,174,-25,0,0,0.435544 -17234,3217:455,175,-25,0,0,0.425468 -17235,3217:456,176,-25,0,0,0.420954 -17236,3217:457,177,-25,0,0,0.426423 -17237,3217:458,178,-25,0,0,0.437667 -17238,3217:459,179,-25,0,0,0.430877 -17239,3218:350,180,-25,0,0,0.427529 -17240,5218:140,-180,-24,0,0,0.450069 -17241,5217:249,-179,-24,0,0,0.450551 -17242,5217:248,-178,-24,0,0,0.452816 -17243,5217:247,-177,-24,0,0,0.458703 -17244,5217:246,-176,-24,0,0,0.452205 -17245,5217:245,-175,-24,0,0,0.453453 -17246,5217:144,-174,-24,0,0,0.451085 -17247,5217:143,-173,-24,0,0,0.451314 -17248,5217:142,-172,-24,0,0,0.44806 -17249,5217:141,-171,-24,0,0,0.448035 -17250,5217:140,-170,-24,0,0,0.447349 -17251,5216:249,-169,-24,0,0,0.444683 -17252,5216:248,-168,-24,0,0,0.448111 -17253,5216:247,-167,-24,0,0,0.445648 -17254,5216:246,-166,-24,0,0,0.443821 -17255,5216:245,-165,-24,0,0,0.4458 -17256,5216:144,-164,-24,0,0,0.442756 -17257,5216:143,-163,-24,0,0,0.439817 -17258,5216:142,-162,-24,0,0,0.441008 -17259,5216:141,-161,-24,0,0,0.441616 -17260,5216:140,-160,-24,0,0,0.444658 -17261,5215:249,-159,-24,0,0,0.442654 -17262,5215:248,-158,-24,0,0,0.446562 -17263,5215:247,-157,-24,0,0,0.450119 -17264,5215:246,-156,-24,0,0,0.446155 -17265,5215:245,-155,-24,0,0,0.450196 -17266,5215:144,-154,-24,0,0,0.453478 -17267,5215:143,-153,-24,0,0,0.45855 -17268,5215:142,-152,-24,0,0,0.464755 -17269,5215:141,-151,-24,0,0,0.46726 -17270,5215:140,-150,-24,0,0,0.456127 -17271,5214:249,-149,-24,0,0,0.454497 -17272,5214:248,-148,-24,0,0,0.455949 -17273,5214:247,-147,-24,0,0,0.44372 -17274,5214:246,-146,-24,0,0,0.451085 -17275,5214:245,-145,-24,0,0,0.448035 -17276,5214:144,-144,-24,0,0,0.4441 -17277,5214:143,-143,-24,0,0,0.440273 -17278,5214:142,-142,-24,0,0,0.4423 -17279,5214:141,-141,-24,0,0,0.443212 -17280,5214:140,-140,-24,0,0,0.441793 -17281,5213:249,-139,-24,0,0,0.444988 -17282,5213:248,-138,-24,0,0,0.445927 -17283,5213:247,-137,-24,0,0,0.439185 -17284,5213:246,-136,-24,0,0,0.448975 -17285,5213:245,-135,-24,0,0,0.443289 -17286,5213:144,-134,-24,0,0,0.440628 -17287,5213:143,-133,-24,0,0,0.439261 -17288,5213:142,-132,-24,0,0,0.441008 -17289,5213:141,-131,-24,0,0,0.444937 -17290,5213:140,-130,-24,0,0,0.440045 -17291,5212:249,-129,-24,0,0,0.440096 -17292,5212:248,-128,-24,0,0,0.441286 -17293,5212:247,-127,-24,0,0,0.441742 -17294,5212:246,-126,-24,0,0,0.434686 -17295,5212:245,-125,-24,0,0,0.44268 -17296,5212:144,-124,-24,0,0,0.438502 -17297,5212:143,-123,-24,0,0,0.430801 -17298,5212:142,-122,-24,0,0,0.429542 -17299,5212:141,-121,-24,0,0,0.425996 -17300,5212:140,-120,-24,0,0,0.426222 -17301,5211:249,-119,-24,0,0,0.438324 -17302,5211:248,-118,-24,0,0,0.43567 -17303,5211:247,-117,-24,0,0,0.4306 -17304,5211:246,-116,-24,0,0,0.428813 -17305,5211:245,-115,-24,0,0,0.437819 -17306,5211:144,-114,-24,0,0,0.440881 -17307,5211:143,-113,-24,0,0,0.431406 -17308,5211:142,-112,-24,0,0,0.435392 -17309,5211:141,-111,-24,0,0,0.425243 -17310,5211:140,-110,-24,0,0,0.432692 -17311,5210:249,-109,-24,0,0,0.428082 -17312,5210:248,-108,-24,0,0,0.437313 -17313,5210:247,-107,-24,0,0,0.439185 -17314,5210:246,-106,-24,0,0,0.442427 -17315,5210:245,-105,-24,0,0,0.438021 -17316,5210:144,-104,-24,0,0,0.437742 -17317,5210:143,-103,-24,0,0,0.431431 -17318,5210:142,-102,-24,0,0,0.431356 -17319,5210:141,-101,-24,0,0,0.431557 -17320,5210:140,-100,-24,0,0,0.427202 -17321,5209:249,-99,-24,0,0,0.420278 -17322,5209:248,-98,-24,0,0,0.415654 -17323,5209:247,-97,-24,0,0,0.414706 -17324,5209:246,-96,-24,0,0,0.415679 -17325,5209:245,-95,-24,0,0,0.414731 -17326,5209:144,-94,-24,0,0,0.415879 -17327,5209:143,-93,-24,0,0,0.417577 -17328,5209:142,-92,-24,0,0,0.417377 -17329,5209:141,-91,-24,0,0,0.414108 -17330,5209:140,-90,-24,0,0,0.408833 -17331,5208:249,-89,-24,0,0,0.408064 -17332,5208:248,-88,-24,0,0,0.406204 -17333,5208:247,-87,-24,0,0,0.403283 -17334,5208:246,-86,-24,0,0,0.401504 -17335,5208:245,-85,-24,0,0,0.397609 -17336,5208:144,-84,-24,0,0,0.3952 -17337,5208:143,-83,-24,0,0,0.394366 -17338,5208:142,-82,-24,0,0,0.395053 -17339,5208:141,-81,-24,0,0,0.39118 -17340,5208:140,-80,-24,0,0,0.391009 -17341,5207:249,-79,-24,0,0,0.393507 -17342,5207:248,-78,-24,0,0,0.389298 -17343,5207:247,-77,-24,0,0,0.384204 -17344,5207:246,-76,-24,0,0,0.380202 -17345,5207:245,-75,-24,0,0,0.370926 -17346,5207:144,-74,-24,0,0,0.363715 -17347,5207:143,-73,-24,0,0,0.360061 -17348,5207:142,-72,-24,0,0,0.345495 -17349,5205:141,-51,-24,0,0,0.519782 -17350,5205:140,-50,-24,0,0,0.551333 -17351,5204:249,-49,-24,0,0,0.570914 -17352,5204:248,-48,-24,0,0,0.538773 -17353,5204:247,-47,-24,0,0,0.513727 -17354,5204:246,-46,-24,0,0,0.48394 -17355,5204:245,-45,-24,0,0,0.474197 -17356,5204:144,-44,-24,0,0,0.465266 -17357,5204:143,-43,-24,0,0,0.461153 -17358,5204:142,-42,-24,0,0,0.463962 -17359,5204:141,-41,-24,0,0,0.465573 -17360,5204:140,-40,-24,0,0,0.465854 -17361,5203:249,-39,-24,0,0,0.464397 -17362,5203:248,-38,-24,0,0,0.451518 -17363,5203:247,-37,-24,0,0,0.452994 -17364,5203:246,-36,-24,0,0,0.450196 -17365,5203:245,-35,-24,0,0,0.455847 -17366,5203:144,-34,-24,0,0,0.454191 -17367,5203:143,-33,-24,0,0,0.443313 -17368,5203:142,-32,-24,0,0,0.43797 -17369,5203:141,-31,-24,0,0,0.442376 -17370,5203:140,-30,-24,0,0,0.451951 -17371,5202:249,-29,-24,0,0,0.445723 -17372,5202:248,-28,-24,0,0,0.441312 -17373,5202:247,-27,-24,0,0,0.439438 -17374,5202:246,-26,-24,0,0,0.43883 -17375,5202:245,-25,-24,0,0,0.443035 -17376,5202:144,-24,-24,0,0,0.443694 -17377,5202:143,-23,-24,0,0,0.441564 -17378,5202:142,-22,-24,0,0,0.448899 -17379,5202:141,-21,-24,0,0,0.443035 -17380,5202:140,-20,-24,0,0,0.427806 -17381,5201:249,-19,-24,0,0,0.428435 -17382,5201:248,-18,-24,0,0,0.422934 -17383,5201:247,-17,-24,0,0,0.42919 -17384,5201:246,-16,-24,0,0,0.42851 -17385,5201:245,-15,-24,0,0,0.428334 -17386,5201:144,-14,-24,0,0,0.420028 -17387,5201:143,-13,-24,0,0,0.41538 -17388,5201:142,-12,-24,0,0,0.412065 -17389,5201:141,-11,-24,0,0,0.43921 -17390,5201:140,-10,-24,0,0,0.439387 -17391,5200:249,-9,-24,0,0,0.433045 -17392,5200:248,-8,-24,0,0,0.438679 -17393,5200:247,-7,-24,0,0,0.431709 -17394,5200:246,-6,-24,0,0,0.43186 -17395,5200:245,-5,-24,0,0,0.429945 -17396,5200:144,-4,-24,0,0,0.426448 -17397,5200:143,-3,-24,0,0,0.431229 -17398,5200:142,-2,-24,0,0,0.43191 -17399,5200:141,-1,-24,0,0,0.430801 -17400,3200:141,0,-24,0,0,0.42316 -17401,3200:141,1,-24,0,0,0.415604 -17402,3200:142,2,-24,0,0,0.411617 -17403,3200:143,3,-24,0,0,0.405708 -17404,3200:144,4,-24,0,0,0.405312 -17405,3200:245,5,-24,0,0,0.404965 -17406,3200:246,6,-24,0,0,0.410622 -17407,3200:247,7,-24,0,0,0.411244 -17408,3200:248,8,-24,0,0,0.40789 -17409,3200:249,9,-24,0,0,0.410797 -17410,3201:140,10,-24,0,0,0.411368 -17411,3201:141,11,-24,0,0,0.411294 -17412,3201:142,12,-24,0,0,0.417202 -17413,3201:143,13,-24,0,0,0.417952 -17414,3201:144,14,-24,0,0,0.428963 -17415,3201:245,15,-24,0,0,0.437313 -17416,3201:246,16,-24,0,0,0.439969 -17417,3201:247,17,-24,0,0,0.430877 -17418,3203:140,30,-24,0,0,0.549426 -17419,3203:141,31,-24,0,0,0.558894 -17420,3203:142,32,-24,0,0,0.536194 -17421,3203:143,33,-24,0,0,0.516217 -17422,3203:144,34,-24,0,0,0.485326 -17423,3203:245,35,-24,0,0,0.499809 -17424,3203:246,36,-24,0,0,0.512752 -17425,3203:247,37,-24,0,0,0.510133 -17426,3203:248,38,-24,0,0,0.480426 -17427,3203:249,39,-24,0,0,0.492694 -17428,3204:140,40,-24,0,0,0.495031 -17429,3204:141,41,-24,0,0,0.490794 -17430,3204:142,42,-24,0,0,0.488304 -17431,3204:143,43,-24,0,0,0.484326 -17432,3204:144,44,-24,0,0,0.480862 -17433,3204:245,45,-24,0,0,0.473583 -17434,3204:246,46,-24,0,0,0.466442 -17435,3204:247,47,-24,0,0,0.447527 -17436,3204:248,48,-24,0,0,0.453886 -17437,3204:249,49,-24,0,0,0.453987 -17438,3205:140,50,-24,0,0,0.454522 -17439,3205:141,51,-24,0,0,0.448518 -17440,3205:142,52,-24,0,0,0.449865 -17441,3205:143,53,-24,0,0,0.452562 -17442,3205:144,54,-24,0,0,0.444607 -17443,3205:245,55,-24,0,0,0.446993 -17444,3205:246,56,-24,0,0,0.437136 -17445,3205:247,57,-24,0,0,0.436554 -17446,3205:248,58,-24,0,0,0.43835 -17447,3205:249,59,-24,0,0,0.440653 -17448,3206:140,60,-24,0,0,0.446435 -17449,3206:141,61,-24,0,0,0.449204 -17450,3206:142,62,-24,0,0,0.449382 -17451,3206:143,63,-24,0,0,0.446587 -17452,3206:144,64,-24,0,0,0.446866 -17453,3206:245,65,-24,0,0,0.441033 -17454,3206:246,66,-24,0,0,0.44235 -17455,3206:247,67,-24,0,0,0.441159 -17456,3206:248,68,-24,0,0,0.439058 -17457,3206:249,69,-24,0,0,0.447171 -17458,3207:140,70,-24,0,0,0.457708 -17459,3207:141,71,-24,0,0,0.454548 -17460,3207:142,72,-24,0,0,0.465956 -17461,3207:144,74,-24,0,0,0.468003 -17462,3207:245,75,-24,0,0,0.467362 -17463,3207:246,76,-24,0,0,0.466621 -17464,3207:247,77,-24,0,0,0.457249 -17465,3207:248,78,-24,0,0,0.452867 -17466,3207:249,79,-24,0,0,0.460668 -17467,3208:140,80,-24,0,0,0.462455 -17468,3208:141,81,-24,0,0,0.461817 -17469,3208:142,82,-24,0,0,0.449127 -17470,3208:143,83,-24,0,0,0.45302 -17471,3208:144,84,-24,0,0,0.447171 -17472,3208:245,85,-24,0,0,0.43959 -17473,3208:246,86,-24,0,0,0.441844 -17474,3208:247,87,-24,0,0,0.436201 -17475,3208:248,88,-24,0,0,0.438653 -17476,3208:249,89,-24,0,0,0.429265 -17477,3209:140,90,-24,0,0,0.427001 -17478,3209:141,91,-24,0,0,0.423034 -17479,3209:142,92,-24,0,0,0.423335 -17480,3209:143,93,-24,0,0,0.419603 -17481,3209:144,94,-24,0,0,0.412713 -17482,3209:245,95,-24,0,0,0.405683 -17483,3209:246,96,-24,0,0,0.410423 -17484,3209:247,97,-24,0,0,0.400073 -17485,3209:248,98,-24,0,0,0.391718 -17486,3209:249,99,-24,0,0,0.39118 -17487,3210:140,100,-24,0,0,0.390446 -17488,3210:141,101,-24,0,0,0.390471 -17489,3210:142,102,-24,0,0,0.386833 -17490,3210:143,103,-24,0,0,0.396626 -17491,3210:144,104,-24,0,0,0.398865 -17492,3210:245,105,-24,0,0,0.388516 -17493,3210:246,106,-24,0,0,0.404965 -17494,3210:247,107,-24,0,0,0.401849 -17495,3210:248,108,-24,0,0,0.406228 -17496,3210:249,109,-24,0,0,0.411493 -17497,3211:140,110,-24,0,0,0.413833 -17498,3211:141,111,-24,0,0,0.443313 -17499,3211:142,112,-24,0,0,0.446308 -17500,3211:143,113,-24,0,0,0.454624 -17501,3211:144,114,-24,0,0,0.473019 -17502,3211:245,115,-24,0,0,0.487944 -17503,3215:144,154,-24,0,0,0.565772 -17504,3215:245,155,-24,0,0,0.545175 -17505,3215:246,156,-24,0,0,0.55273 -17506,3215:247,157,-24,0,0,0.552959 -17507,3215:248,158,-24,0,0,0.535069 -17508,3215:249,159,-24,0,0,0.529237 -17509,3216:140,160,-24,0,0,0.53131 -17510,3216:141,161,-24,0,0,0.518115 -17511,3216:142,162,-24,0,0,0.511905 -17512,3216:143,163,-24,0,0,0.50849 -17513,3216:144,164,-24,0,0,0.502814 -17514,3216:245,165,-24,0,0,0.499963 -17515,3216:246,166,-24,0,0,0.473839 -17516,3216:247,167,-24,0,0,0.466417 -17517,3216:248,168,-24,0,0,0.46312 -17518,3216:249,169,-24,0,0,0.45781 -17519,3217:140,170,-24,0,0,0.450374 -17520,3217:141,171,-24,0,0,0.447755 -17521,3217:142,172,-24,0,0,0.447628 -17522,3217:143,173,-24,0,0,0.448136 -17523,3217:144,174,-24,0,0,0.450322 -17524,3217:245,175,-24,0,0,0.442223 -17525,3217:246,176,-24,0,0,0.446968 -17526,3217:247,177,-24,0,0,0.44984 -17527,3217:248,178,-24,0,0,0.452002 -17528,3217:249,179,-24,0,0,0.455873 -17529,3218:140,180,-24,0,0,0.450069 -17530,5218:130,-180,-23,0,0,0.465547 -17531,5217:239,-179,-23,0,0,0.464857 -17532,5217:238,-178,-23,0,0,0.467286 -17533,5217:237,-177,-23,0,0,0.473839 -17534,5217:236,-176,-23,0,0,0.465803 -17535,5217:235,-175,-23,0,0,0.461511 -17536,5217:134,-174,-23,0,0,0.461383 -17537,5217:133,-173,-23,0,0,0.457504 -17538,5217:132,-172,-23,0,0,0.461281 -17539,5217:131,-171,-23,0,0,0.47243 -17540,5217:130,-170,-23,0,0,0.460234 -17541,5216:239,-169,-23,0,0,0.465726 -17542,5216:238,-168,-23,0,0,0.465752 -17543,5216:237,-167,-23,0,0,0.461613 -17544,5216:236,-166,-23,0,0,0.457606 -17545,5216:235,-165,-23,0,0,0.457683 -17546,5216:134,-164,-23,0,0,0.460617 -17547,5216:133,-163,-23,0,0,0.453198 -17548,5216:132,-162,-23,0,0,0.458601 -17549,5216:131,-161,-23,0,0,0.461025 -17550,5216:130,-160,-23,0,0,0.460745 -17551,5215:239,-159,-23,0,0,0.4657 -17552,5215:238,-158,-23,0,0,0.460489 -17553,5215:237,-157,-23,0,0,0.457249 -17554,5215:236,-156,-23,0,0,0.46335 -17555,5215:235,-155,-23,0,0,0.466084 -17556,5215:134,-154,-23,0,0,0.470791 -17557,5215:133,-153,-23,0,0,0.472866 -17558,5215:132,-152,-23,0,0,0.47535 -17559,5215:131,-151,-23,0,0,0.479811 -17560,5215:130,-150,-23,0,0,0.478733 -17561,5214:239,-149,-23,0,0,0.473659 -17562,5214:238,-148,-23,0,0,0.465369 -17563,5214:237,-147,-23,0,0,0.468284 -17564,5214:236,-146,-23,0,0,0.466595 -17565,5214:235,-145,-23,0,0,0.465778 -17566,5214:134,-144,-23,0,0,0.469973 -17567,5214:133,-143,-23,0,0,0.464116 -17568,5214:132,-142,-23,0,0,0.467107 -17569,5214:131,-141,-23,0,0,0.461536 -17570,5214:130,-140,-23,0,0,0.463707 -17571,5213:239,-139,-23,0,0,0.46657 -17572,5213:238,-138,-23,0,0,0.465956 -17573,5213:237,-137,-23,0,0,0.457556 -17574,5213:236,-136,-23,0,0,0.466903 -17575,5213:235,-135,-23,0,0,0.456382 -17576,5213:134,-134,-23,0,0,0.458907 -17577,5213:133,-133,-23,0,0,0.460106 -17578,5213:132,-132,-23,0,0,0.465522 -17579,5213:131,-131,-23,0,0,0.459877 -17580,5213:130,-130,-23,0,0,0.458703 -17581,5212:239,-129,-23,0,0,0.473454 -17582,5212:238,-128,-23,0,0,0.466979 -17583,5212:237,-127,-23,0,0,0.45493 -17584,5212:236,-126,-23,0,0,0.458652 -17585,5212:235,-125,-23,0,0,0.456 -17586,5212:134,-124,-23,0,0,0.451188 -17587,5212:133,-123,-23,0,0,0.447654 -17588,5212:132,-122,-23,0,0,0.439817 -17589,5212:131,-121,-23,0,0,0.443111 -17590,5212:130,-120,-23,0,0,0.451238 -17591,5211:239,-119,-23,0,0,0.448645 -17592,5211:238,-118,-23,0,0,0.446638 -17593,5211:237,-117,-23,0,0,0.451238 -17594,5211:236,-116,-23,0,0,0.450348 -17595,5211:235,-115,-23,0,0,0.456841 -17596,5211:134,-114,-23,0,0,0.454853 -17597,5211:133,-113,-23,0,0,0.454217 -17598,5211:132,-112,-23,0,0,0.444074 -17599,5211:131,-111,-23,0,0,0.445292 -17600,5211:130,-110,-23,0,0,0.446562 -17601,5210:239,-109,-23,0,0,0.450628 -17602,5210:238,-108,-23,0,0,0.454217 -17603,5210:237,-107,-23,0,0,0.453172 -17604,5210:236,-106,-23,0,0,0.452231 -17605,5210:235,-105,-23,0,0,0.453733 -17606,5210:134,-104,-23,0,0,0.4519 -17607,5210:133,-103,-23,0,0,0.451951 -17608,5210:132,-102,-23,0,0,0.450297 -17609,5210:131,-101,-23,0,0,0.447527 -17610,5210:130,-100,-23,0,0,0.44339 -17611,5209:239,-99,-23,0,0,0.437667 -17612,5209:238,-98,-23,0,0,0.437465 -17613,5209:237,-97,-23,0,0,0.43792 -17614,5209:236,-96,-23,0,0,0.438249 -17615,5209:235,-95,-23,0,0,0.436605 -17616,5209:134,-94,-23,0,0,0.436378 -17617,5209:133,-93,-23,0,0,0.433676 -17618,5209:132,-92,-23,0,0,0.429668 -17619,5209:131,-91,-23,0,0,0.425218 -17620,5209:130,-90,-23,0,0,0.419303 -17621,5208:239,-89,-23,0,0,0.415879 -17622,5208:238,-88,-23,0,0,0.414208 -17623,5208:237,-87,-23,0,0,0.411543 -17624,5208:236,-86,-23,0,0,0.409528 -17625,5208:235,-85,-23,0,0,0.408262 -17626,5208:134,-84,-23,0,0,0.40933 -17627,5208:133,-83,-23,0,0,0.408908 -17628,5208:132,-82,-23,0,0,0.404767 -17629,5208:131,-81,-23,0,0,0.400911 -17630,5208:130,-80,-23,0,0,0.398644 -17631,5207:239,-79,-23,0,0,0.399727 -17632,5207:238,-78,-23,0,0,0.39638 -17633,5207:237,-77,-23,0,0,0.386663 -17634,5207:236,-76,-23,0,0,0.385591 -17635,5207:235,-75,-23,0,0,0.374986 -17636,5207:134,-74,-23,0,0,0.367575 -17637,5207:133,-73,-23,0,0,0.360297 -17638,5207:132,-72,-23,0,0,0.35238 -17639,5205:130,-50,-23,0,0,0.529826 -17640,5204:239,-49,-23,0,0,0.564105 -17641,5204:238,-48,-23,0,0,0.582876 -17642,5204:237,-47,-23,0,0,0.530261 -17643,5204:236,-46,-23,0,0,0.535836 -17644,5204:235,-45,-23,0,0,0.509183 -17645,5204:134,-44,-23,0,0,0.504201 -17646,5204:133,-43,-23,0,0,0.494595 -17647,5204:132,-42,-23,0,0,0.493259 -17648,5204:131,-41,-23,0,0,0.50492 -17649,5204:130,-40,-23,0,0,0.50379 -17650,5203:239,-39,-23,0,0,0.492746 -17651,5203:238,-38,-23,0,0,0.496187 -17652,5203:237,-37,-23,0,0,0.484762 -17653,5203:236,-36,-23,0,0,0.476401 -17654,5203:235,-35,-23,0,0,0.472891 -17655,5203:134,-34,-23,0,0,0.472866 -17656,5203:133,-33,-23,0,0,0.467312 -17657,5203:132,-32,-23,0,0,0.470305 -17658,5203:131,-31,-23,0,0,0.474146 -17659,5203:130,-30,-23,0,0,0.469895 -17660,5202:239,-29,-23,0,0,0.471022 -17661,5202:238,-28,-23,0,0,0.481119 -17662,5202:237,-27,-23,0,0,0.46964 -17663,5202:236,-26,-23,0,0,0.466161 -17664,5202:235,-25,-23,0,0,0.463196 -17665,5202:134,-24,-23,0,0,0.469307 -17666,5202:133,-23,-23,0,0,0.468514 -17667,5202:132,-22,-23,0,0,0.46611 -17668,5202:131,-21,-23,0,0,0.460081 -17669,5202:130,-20,-23,0,0,0.458066 -17670,5201:239,-19,-23,0,0,0.450984 -17671,5201:238,-18,-23,0,0,0.450526 -17672,5201:237,-17,-23,0,0,0.452155 -17673,5201:236,-16,-23,0,0,0.449204 -17674,5201:235,-15,-23,0,0,0.450145 -17675,5201:134,-14,-23,0,0,0.441667 -17676,5201:133,-13,-23,0,0,0.441919 -17677,5201:132,-12,-23,0,0,0.456765 -17678,5201:131,-11,-23,0,0,0.465394 -17679,5201:130,-10,-23,0,0,0.459162 -17680,5200:239,-9,-23,0,0,0.456153 -17681,5200:238,-8,-23,0,0,0.454879 -17682,5200:237,-7,-23,0,0,0.451926 -17683,5200:236,-6,-23,0,0,0.449788 -17684,5200:235,-5,-23,0,0,0.448086 -17685,5200:134,-4,-23,0,0,0.447527 -17686,5200:133,-3,-23,0,0,0.449661 -17687,5200:132,-2,-23,0,0,0.446003 -17688,5200:131,-1,-23,0,0,0.437869 -17689,3200:131,0,-23,0,0,0.433373 -17690,3200:131,1,-23,0,0,0.429442 -17691,3200:132,2,-23,0,0,0.422232 -17692,3200:133,3,-23,0,0,0.424013 -17693,3200:134,4,-23,0,0,0.425167 -17694,3200:235,5,-23,0,0,0.419477 -17695,3200:236,6,-23,0,0,0.423837 -17696,3200:237,7,-23,0,0,0.423461 -17697,3200:238,8,-23,0,0,0.423461 -17698,3200:239,9,-23,0,0,0.426046 -17699,3201:130,10,-23,0,0,0.423109 -17700,3201:131,11,-23,0,0,0.427278 -17701,3201:132,12,-23,0,0,0.431129 -17702,3201:133,13,-23,0,0,0.427303 -17703,3201:134,14,-23,0,0,0.437566 -17704,3201:235,15,-23,0,0,0.442046 -17705,3201:236,16,-23,0,0,0.442427 -17706,3203:131,31,-23,0,0,0.567538 -17707,3203:132,32,-23,0,0,0.575313 -17708,3203:133,33,-23,0,0,0.557855 -17709,3203:134,34,-23,0,0,0.531873 -17710,3203:235,35,-23,0,0,0.531873 -17711,3203:236,36,-23,0,0,0.542728 -17712,3203:237,37,-23,0,0,0.524832 -17713,3203:238,38,-23,0,0,0.513932 -17714,3203:239,39,-23,0,0,0.522653 -17715,3204:130,40,-23,0,0,0.526293 -17716,3204:131,41,-23,0,0,0.521808 -17717,3204:132,42,-23,0,0,0.521782 -17718,3204:133,43,-23,0,0,0.514702 -17719,3204:134,44,-23,0,0,0.484736 -17720,3204:235,45,-23,0,0,0.470663 -17721,3204:236,46,-23,0,0,0.474838 -17722,3204:237,47,-23,0,0,0.491154 -17723,3204:238,48,-23,0,0,0.489408 -17724,3204:239,49,-23,0,0,0.480759 -17725,3205:130,50,-23,0,0,0.491462 -17726,3205:131,51,-23,0,0,0.478426 -17727,3205:132,52,-23,0,0,0.472968 -17728,3205:133,53,-23,0,0,0.466468 -17729,3205:134,54,-23,0,0,0.465061 -17730,3205:235,55,-23,0,0,0.467644 -17731,3205:236,56,-23,0,0,0.474479 -17732,3205:237,57,-23,0,0,0.469666 -17733,3205:238,58,-23,0,0,0.468668 -17734,3205:239,59,-23,0,0,0.472353 -17735,3206:130,60,-23,0,0,0.473608 -17736,3206:131,61,-23,0,0,0.473506 -17737,3206:132,62,-23,0,0,0.47138 -17738,3206:133,63,-23,0,0,0.47266 -17739,3206:134,64,-23,0,0,0.473634 -17740,3206:235,65,-23,0,0,0.471304 -17741,3206:236,66,-23,0,0,0.469921 -17742,3206:237,67,-23,0,0,0.473941 -17743,3206:238,68,-23,0,0,0.483582 -17744,3206:239,69,-23,0,0,0.478554 -17745,3207:130,70,-23,0,0,0.482248 -17746,3207:131,71,-23,0,0,0.48294 -17747,3207:132,72,-23,0,0,0.485429 -17748,3207:134,74,-23,0,0,0.487379 -17749,3207:235,75,-23,0,0,0.483068 -17750,3207:236,76,-23,0,0,0.486481 -17751,3207:237,77,-23,0,0,0.483299 -17752,3207:238,78,-23,0,0,0.478118 -17753,3207:239,79,-23,0,0,0.488612 -17754,3208:130,80,-23,0,0,0.485326 -17755,3208:131,81,-23,0,0,0.480914 -17756,3208:132,82,-23,0,0,0.469742 -17757,3208:133,83,-23,0,0,0.467797 -17758,3208:134,84,-23,0,0,0.465828 -17759,3208:235,85,-23,0,0,0.469563 -17760,3208:236,86,-23,0,0,0.456765 -17761,3208:237,87,-23,0,0,0.449916 -17762,3208:238,88,-23,0,0,0.449967 -17763,3208:239,89,-23,0,0,0.440754 -17764,3209:130,90,-23,0,0,0.4336 -17765,3209:131,91,-23,0,0,0.435796 -17766,3209:132,92,-23,0,0,0.434155 -17767,3209:133,93,-23,0,0,0.431179 -17768,3209:134,94,-23,0,0,0.434079 -17769,3209:235,95,-23,0,0,0.425946 -17770,3209:236,96,-23,0,0,0.420228 -17771,3209:237,97,-23,0,0,0.412389 -17772,3209:238,98,-23,0,0,0.416503 -17773,3209:239,99,-23,0,0,0.408983 -17774,3210:130,100,-23,0,0,0.420904 -17775,3210:131,101,-23,0,0,0.40727 -17776,3210:132,102,-23,0,0,0.408238 -17777,3210:133,103,-23,0,0,0.41199 -17778,3210:134,104,-23,0,0,0.427177 -17779,3210:235,105,-23,0,0,0.408361 -17780,3210:236,106,-23,0,0,0.421731 -17781,3210:237,107,-23,0,0,0.415679 -17782,3210:238,108,-23,0,0,0.420078 -17783,3210:239,109,-23,0,0,0.429265 -17784,3211:130,110,-23,0,0,0.441717 -17785,3211:131,111,-23,0,0,0.457862 -17786,3211:132,112,-23,0,0,0.45251 -17787,3211:133,113,-23,0,0,0.467184 -17788,3211:134,114,-23,0,0,0.491308 -17789,3211:235,115,-23,0,0,0.490538 -17790,3215:134,154,-23,0,0,0.576066 -17791,3215:235,155,-23,0,0,0.568874 -17792,3215:236,156,-23,0,0,0.541249 -17793,3215:237,157,-23,0,0,0.539769 -17794,3215:238,158,-23,0,0,0.534763 -17795,3215:239,159,-23,0,0,0.520295 -17796,3216:130,160,-23,0,0,0.515318 -17797,3216:131,161,-23,0,0,0.511802 -17798,3216:132,162,-23,0,0,0.51021 -17799,3216:133,163,-23,0,0,0.511468 -17800,3216:134,164,-23,0,0,0.508798 -17801,3216:235,165,-23,0,0,0.506821 -17802,3216:236,166,-23,0,0,0.493798 -17803,3216:237,167,-23,0,0,0.470945 -17804,3216:238,168,-23,0,0,0.466468 -17805,3216:239,169,-23,0,0,0.464933 -17806,3217:130,170,-23,0,0,0.462864 -17807,3217:131,171,-23,0,0,0.462481 -17808,3217:132,172,-23,0,0,0.464065 -17809,3217:133,173,-23,0,0,0.46432 -17810,3217:134,174,-23,0,0,0.466877 -17811,3217:235,175,-23,0,0,0.462736 -17812,3217:236,176,-23,0,0,0.462558 -17813,3217:237,177,-23,0,0,0.471534 -17814,3217:238,178,-23,0,0,0.470177 -17815,3217:239,179,-23,0,0,0.469666 -17816,3218:130,180,-23,0,0,0.465547 -17817,5218:120,-180,-22,0,0,0.482812 -17818,5217:229,-179,-22,0,0,0.492746 -17819,5217:228,-178,-22,0,0,0.486969 -17820,5217:227,-177,-22,0,0,0.481683 -17821,5217:226,-176,-22,0,0,0.478426 -17822,5217:225,-175,-22,0,0,0.479502 -17823,5217:124,-174,-22,0,0,0.485532 -17824,5217:123,-173,-22,0,0,0.487072 -17825,5217:122,-172,-22,0,0,0.482427 -17826,5217:121,-171,-22,0,0,0.492746 -17827,5217:120,-170,-22,0,0,0.480169 -17828,5216:229,-169,-22,0,0,0.476247 -17829,5216:228,-168,-22,0,0,0.478682 -17830,5216:227,-167,-22,0,0,0.473557 -17831,5216:226,-166,-22,0,0,0.472584 -17832,5216:225,-165,-22,0,0,0.468488 -17833,5216:124,-164,-22,0,0,0.47512 -17834,5216:123,-163,-22,0,0,0.470356 -17835,5216:122,-162,-22,0,0,0.47028 -17836,5216:121,-161,-22,0,0,0.469205 -17837,5216:120,-160,-22,0,0,0.47412 -17838,5215:229,-159,-22,0,0,0.481195 -17839,5215:228,-158,-22,0,0,0.481811 -17840,5215:227,-157,-22,0,0,0.479939 -17841,5215:226,-156,-22,0,0,0.480605 -17842,5215:225,-155,-22,0,0,0.488381 -17843,5215:124,-154,-22,0,0,0.49159 -17844,5215:123,-153,-22,0,0,0.490794 -17845,5215:122,-152,-22,0,0,0.487893 -17846,5215:121,-151,-22,0,0,0.493002 -17847,5215:120,-150,-22,0,0,0.500913 -17848,5214:229,-149,-22,0,0,0.49367 -17849,5214:228,-148,-22,0,0,0.493748 -17850,5214:227,-147,-22,0,0,0.490024 -17851,5214:226,-146,-22,0,0,0.490512 -17852,5214:225,-145,-22,0,0,0.491873 -17853,5214:124,-144,-22,0,0,0.492181 -17854,5214:123,-143,-22,0,0,0.485172 -17855,5214:122,-142,-22,0,0,0.481631 -17856,5214:121,-141,-22,0,0,0.48987 -17857,5214:120,-140,-22,0,0,0.480349 -17858,5213:229,-139,-22,0,0,0.487765 -17859,5213:228,-138,-22,0,0,0.485044 -17860,5213:227,-137,-22,0,0,0.476298 -17861,5213:226,-136,-22,0,0,0.477708 -17862,5213:225,-135,-22,0,0,0.469153 -17863,5213:124,-134,-22,0,0,0.470561 -17864,5213:123,-133,-22,0,0,0.478118 -17865,5213:122,-132,-22,0,0,0.475043 -17866,5213:121,-131,-22,0,0,0.491795 -17867,5213:120,-130,-22,0,0,0.496136 -17868,5212:229,-129,-22,0,0,0.489202 -17869,5212:228,-128,-22,0,0,0.479759 -17870,5212:227,-127,-22,0,0,0.473121 -17871,5212:226,-126,-22,0,0,0.476401 -17872,5212:225,-125,-22,0,0,0.471765 -17873,5212:124,-124,-22,0,0,0.465369 -17874,5212:123,-123,-22,0,0,0.4634 -17875,5212:122,-122,-22,0,0,0.465778 -17876,5212:121,-121,-22,0,0,0.458729 -17877,5212:120,-120,-22,0,0,0.467516 -17878,5211:229,-119,-22,0,0,0.463375 -17879,5211:228,-118,-22,0,0,0.468003 -17880,5211:227,-117,-22,0,0,0.465189 -17881,5211:226,-116,-22,0,0,0.461255 -17882,5211:225,-115,-22,0,0,0.46749 -17883,5211:124,-114,-22,0,0,0.467542 -17884,5211:123,-113,-22,0,0,0.468693 -17885,5211:122,-112,-22,0,0,0.456204 -17886,5211:121,-111,-22,0,0,0.463043 -17887,5211:120,-110,-22,0,0,0.463502 -17888,5210:229,-109,-22,0,0,0.467286 -17889,5210:228,-108,-22,0,0,0.471585 -17890,5210:227,-107,-22,0,0,0.473096 -17891,5210:226,-106,-22,0,0,0.47028 -17892,5210:225,-105,-22,0,0,0.470971 -17893,5210:124,-104,-22,0,0,0.469947 -17894,5210:123,-103,-22,0,0,0.468949 -17895,5210:122,-102,-22,0,0,0.466621 -17896,5210:121,-101,-22,0,0,0.462302 -17897,5210:120,-100,-22,0,0,0.45975 -17898,5209:229,-99,-22,0,0,0.454497 -17899,5209:228,-98,-22,0,0,0.455465 -17900,5209:227,-97,-22,0,0,0.453911 -17901,5209:226,-96,-22,0,0,0.448899 -17902,5209:225,-95,-22,0,0,0.447425 -17903,5209:124,-94,-22,0,0,0.444506 -17904,5209:123,-93,-22,0,0,0.439185 -17905,5209:122,-92,-22,0,0,0.43466 -17906,5209:121,-91,-22,0,0,0.429542 -17907,5209:120,-90,-22,0,0,0.425343 -17908,5208:229,-89,-22,0,0,0.421831 -17909,5208:228,-88,-22,0,0,0.420453 -17910,5208:227,-87,-22,0,0,0.417502 -17911,5208:226,-86,-22,0,0,0.414806 -17912,5208:225,-85,-22,0,0,0.416203 -17913,5208:124,-84,-22,0,0,0.414856 -17914,5208:123,-83,-22,0,0,0.412563 -17915,5208:122,-82,-22,0,0,0.411966 -17916,5208:121,-81,-22,0,0,0.411319 -17917,5208:120,-80,-22,0,0,0.406501 -17918,5207:229,-79,-22,0,0,0.401232 -17919,5207:228,-78,-22,0,0,0.399308 -17920,5207:227,-77,-22,0,0,0.397486 -17921,5207:226,-76,-22,0,0,0.388053 -17922,5207:225,-75,-22,0,0,0.384083 -17923,5207:124,-74,-22,0,0,0.372101 -17924,5207:123,-73,-22,0,0,0.358831 -17925,5207:122,-72,-22,0,0,0.364786 -17926,5204:229,-49,-22,0,0,0.540841 -17927,5204:228,-48,-22,0,0,0.575514 -17928,5204:227,-47,-22,0,0,0.571845 -17929,5204:226,-46,-22,0,0,0.541657 -17930,5204:225,-45,-22,0,0,0.529749 -17931,5204:124,-44,-22,0,0,0.528085 -17932,5204:123,-43,-22,0,0,0.53241 -17933,5204:122,-42,-22,0,0,0.530184 -17934,5204:121,-41,-22,0,0,0.531949 -17935,5204:120,-40,-22,0,0,0.516806 -17936,5203:229,-39,-22,0,0,0.523833 -17937,5203:228,-38,-22,0,0,0.517678 -17938,5203:227,-37,-22,0,0,0.507823 -17939,5203:226,-36,-22,0,0,0.502018 -17940,5203:225,-35,-22,0,0,0.494672 -17941,5203:124,-34,-22,0,0,0.492489 -17942,5203:123,-33,-22,0,0,0.491976 -17943,5203:122,-32,-22,0,0,0.500477 -17944,5203:121,-31,-22,0,0,0.50415 -17945,5203:120,-30,-22,0,0,0.502429 -17946,5202:229,-29,-22,0,0,0.506281 -17947,5202:228,-28,-22,0,0,0.509902 -17948,5202:227,-27,-22,0,0,0.50492 -17949,5202:226,-26,-22,0,0,0.502788 -17950,5202:225,-25,-22,0,0,0.502762 -17951,5202:124,-24,-22,0,0,0.500374 -17952,5202:123,-23,-22,0,0,0.497137 -17953,5202:122,-22,-22,0,0,0.487328 -17954,5202:121,-21,-22,0,0,0.481683 -17955,5202:120,-20,-22,0,0,0.476606 -17956,5201:229,-19,-22,0,0,0.482427 -17957,5201:228,-18,-22,0,0,0.483838 -17958,5201:227,-17,-22,0,0,0.478733 -17959,5201:226,-16,-22,0,0,0.480759 -17960,5201:225,-15,-22,0,0,0.479502 -17961,5201:124,-14,-22,0,0,0.482889 -17962,5201:123,-13,-22,0,0,0.480709 -17963,5201:122,-12,-22,0,0,0.483068 -17964,5201:121,-11,-22,0,0,0.47817 -17965,5201:120,-10,-22,0,0,0.479528 -17966,5200:229,-9,-22,0,0,0.483735 -17967,5200:228,-8,-22,0,0,0.483325 -17968,5200:227,-7,-22,0,0,0.48058 -17969,5200:226,-6,-22,0,0,0.477195 -17970,5200:225,-5,-22,0,0,0.472533 -17971,5200:124,-4,-22,0,0,0.466775 -17972,5200:123,-3,-22,0,0,0.463707 -17973,5200:122,-2,-22,0,0,0.461383 -17974,5200:121,-1,-22,0,0,0.452715 -17975,3200:121,0,-22,0,0,0.442933 -17976,3200:121,1,-22,0,0,0.440247 -17977,3200:122,2,-22,0,0,0.446029 -17978,3200:123,3,-22,0,0,0.444074 -17979,3200:124,4,-22,0,0,0.433928 -17980,3200:225,5,-22,0,0,0.437364 -17981,3200:226,6,-22,0,0,0.436125 -17982,3200:227,7,-22,0,0,0.433878 -17983,3200:228,8,-22,0,0,0.433726 -17984,3200:229,9,-22,0,0,0.431734 -17985,3201:120,10,-22,0,0,0.431633 -17986,3201:121,11,-22,0,0,0.434686 -17987,3201:122,12,-22,0,0,0.435266 -17988,3201:123,13,-22,0,0,0.437085 -17989,3201:124,14,-22,0,0,0.436908 -17990,3201:225,15,-22,0,0,0.434433 -17991,3201:226,16,-22,0,0,0.41356 -17992,3203:122,32,-22,0,0,0.572121 -17993,3203:123,33,-22,0,0,0.58395 -17994,3203:124,34,-22,0,0,0.562286 -17995,3203:225,35,-22,0,0,0.550341 -17996,3203:226,36,-22,0,0,0.559224 -17997,3203:227,37,-22,0,0,0.533766 -17998,3203:228,38,-22,0,0,0.538339 -17999,3203:229,39,-22,0,0,0.541988 -18000,3204:120,40,-22,0,0,0.539514 -18001,3204:121,41,-22,0,0,0.539386 -18002,3204:122,42,-22,0,0,0.537956 -18003,3204:123,43,-22,0,0,0.528289 -18004,3204:124,44,-22,0,0,0.532589 -18005,3204:225,45,-22,0,0,0.529749 -18006,3204:226,46,-22,0,0,0.511802 -18007,3204:227,47,-22,0,0,0.520243 -18008,3204:228,48,-22,0,0,0.522936 -18009,3204:229,49,-22,0,0,0.508772 -18010,3205:120,50,-22,0,0,0.518269 -18011,3205:121,51,-22,0,0,0.503738 -18012,3205:122,52,-22,0,0,0.507155 -18013,3205:123,53,-22,0,0,0.499346 -18014,3205:124,54,-22,0,0,0.495134 -18015,3205:225,55,-22,0,0,0.503277 -18016,3205:226,56,-22,0,0,0.505202 -18017,3205:227,57,-22,0,0,0.509851 -18018,3205:228,58,-22,0,0,0.50343 -18019,3205:229,59,-22,0,0,0.503636 -18020,3206:120,60,-22,0,0,0.499654 -18021,3206:121,61,-22,0,0,0.504175 -18022,3206:122,62,-22,0,0,0.505562 -18023,3206:123,63,-22,0,0,0.499115 -18024,3206:124,64,-22,0,0,0.508156 -18025,3206:225,65,-22,0,0,0.500425 -18026,3206:226,66,-22,0,0,0.502352 -18027,3206:227,67,-22,0,0,0.501632 -18028,3206:228,68,-22,0,0,0.50795 -18029,3206:229,69,-22,0,0,0.514933 -18030,3207:120,70,-22,0,0,0.517807 -18031,3207:121,71,-22,0,0,0.510158 -18032,3207:122,72,-22,0,0,0.504329 -18033,3207:124,74,-22,0,0,0.499988 -18034,3207:225,75,-22,0,0,0.506025 -18035,3207:226,76,-22,0,0,0.507386 -18036,3207:227,77,-22,0,0,0.506538 -18037,3207:228,78,-22,0,0,0.502506 -18038,3207:229,79,-22,0,0,0.50212 -18039,3208:120,80,-22,0,0,0.506641 -18040,3208:121,81,-22,0,0,0.494287 -18041,3208:122,82,-22,0,0,0.501915 -18042,3208:123,83,-22,0,0,0.49236 -18043,3208:124,84,-22,0,0,0.488149 -18044,3208:225,85,-22,0,0,0.478247 -18045,3208:226,86,-22,0,0,0.47512 -18046,3208:227,87,-22,0,0,0.467516 -18047,3208:228,88,-22,0,0,0.459724 -18048,3208:229,89,-22,0,0,0.459698 -18049,3209:120,90,-22,0,0,0.461459 -18050,3209:121,91,-22,0,0,0.455899 -18051,3209:122,92,-22,0,0,0.447069 -18052,3209:123,93,-22,0,0,0.446232 -18053,3209:124,94,-22,0,0,0.449814 -18054,3209:225,95,-22,0,0,0.441286 -18055,3209:226,96,-22,0,0,0.431306 -18056,3209:227,97,-22,0,0,0.441312 -18057,3209:228,98,-22,0,0,0.430373 -18058,3209:229,99,-22,0,0,0.437085 -18059,3210:120,100,-22,0,0,0.422959 -18060,3210:121,101,-22,0,0,0.418302 -18061,3210:122,102,-22,0,0,0.42924 -18062,3210:123,103,-22,0,0,0.43509 -18063,3210:124,104,-22,0,0,0.435064 -18064,3210:225,105,-22,0,0,0.428561 -18065,3210:226,106,-22,0,0,0.430071 -18066,3210:227,107,-22,0,0,0.427379 -18067,3210:228,108,-22,0,0,0.435772 -18068,3210:229,109,-22,0,0,0.444632 -18069,3211:120,110,-22,0,0,0.466468 -18070,3211:121,111,-22,0,0,0.471432 -18071,3211:122,112,-22,0,0,0.47389 -18072,3211:123,113,-22,0,0,0.494672 -18073,3211:124,114,-22,0,0,0.509466 -18074,3215:124,154,-22,0,0,0.578473 -18075,3215:225,155,-22,0,0,0.568395 -18076,3215:226,156,-22,0,0,0.552933 -18077,3215:227,157,-22,0,0,0.530005 -18078,3215:228,158,-22,0,0,0.53021 -18079,3215:229,159,-22,0,0,0.523551 -18080,3216:120,160,-22,0,0,0.517063 -18081,3216:121,161,-22,0,0,0.515447 -18082,3216:122,162,-22,0,0,0.515447 -18083,3216:123,163,-22,0,0,0.51519 -18084,3216:124,164,-22,0,0,0.513419 -18085,3216:225,165,-22,0,0,0.514497 -18086,3216:226,166,-22,0,0,0.503508 -18087,3216:227,167,-22,0,0,0.485403 -18088,3216:228,168,-22,0,0,0.477042 -18089,3216:229,169,-22,0,0,0.481811 -18090,3217:120,170,-22,0,0,0.48471 -18091,3217:121,171,-22,0,0,0.488766 -18092,3217:122,172,-22,0,0,0.490281 -18093,3217:123,173,-22,0,0,0.491154 -18094,3217:124,174,-22,0,0,0.488099 -18095,3217:225,175,-22,0,0,0.488099 -18096,3217:226,176,-22,0,0,0.488047 -18097,3217:227,177,-22,0,0,0.483992 -18098,3217:228,178,-22,0,0,0.49236 -18099,3217:229,179,-22,0,0,0.492874 -18100,3218:120,180,-22,0,0,0.482812 -18101,5218:110,-180,-21,0,0,0.495314 -18102,5217:219,-179,-21,0,0,0.497857 -18103,5217:218,-178,-21,0,0,0.495776 -18104,5217:217,-177,-21,0,0,0.497497 -18105,5217:216,-176,-21,0,0,0.500759 -18106,5217:215,-175,-21,0,0,0.503713 -18107,5217:114,-174,-21,0,0,0.490948 -18108,5217:113,-173,-21,0,0,0.49927 -18109,5217:112,-172,-21,0,0,0.495982 -18110,5217:111,-171,-21,0,0,0.494723 -18111,5217:110,-170,-21,0,0,0.495622 -18112,5216:219,-169,-21,0,0,0.487482 -18113,5216:218,-168,-21,0,0,0.500014 -18114,5216:217,-167,-21,0,0,0.495622 -18115,5216:216,-166,-21,0,0,0.485146 -18116,5216:215,-165,-21,0,0,0.487379 -18117,5216:114,-164,-21,0,0,0.482298 -18118,5216:113,-163,-21,0,0,0.481452 -18119,5216:112,-162,-21,0,0,0.487687 -18120,5216:111,-161,-21,0,0,0.490769 -18121,5216:110,-160,-21,0,0,0.492694 -18122,5215:219,-159,-21,0,0,0.502506 -18123,5215:218,-158,-21,0,0,0.494132 -18124,5215:217,-157,-21,0,0,0.500605 -18125,5215:216,-156,-21,0,0,0.499783 -18126,5215:215,-155,-21,0,0,0.500477 -18127,5215:114,-154,-21,0,0,0.508387 -18128,5215:113,-153,-21,0,0,0.512597 -18129,5215:112,-152,-21,0,0,0.514318 -18130,5215:111,-151,-21,0,0,0.515986 -18131,5215:110,-150,-21,0,0,0.513317 -18132,5214:219,-149,-21,0,0,0.513034 -18133,5214:218,-148,-21,0,0,0.520705 -18134,5214:217,-147,-21,0,0,0.515678 -18135,5214:216,-146,-21,0,0,0.512726 -18136,5214:215,-145,-21,0,0,0.508695 -18137,5214:114,-144,-21,0,0,0.515164 -18138,5214:113,-143,-21,0,0,0.506281 -18139,5214:112,-142,-21,0,0,0.509774 -18140,5214:111,-141,-21,0,0,0.505691 -18141,5214:110,-140,-21,0,0,0.503636 -18142,5213:219,-139,-21,0,0,0.500194 -18143,5213:218,-138,-21,0,0,0.500246 -18144,5213:217,-137,-21,0,0,0.496341 -18145,5213:216,-136,-21,0,0,0.496958 -18146,5213:215,-135,-21,0,0,0.498345 -18147,5213:114,-134,-21,0,0,0.503687 -18148,5213:113,-133,-21,0,0,0.506615 -18149,5213:112,-132,-21,0,0,0.503713 -18150,5213:111,-131,-21,0,0,0.495622 -18151,5213:110,-130,-21,0,0,0.511956 -18152,5212:219,-129,-21,0,0,0.496238 -18153,5212:218,-128,-21,0,0,0.506307 -18154,5212:217,-127,-21,0,0,0.495802 -18155,5212:216,-126,-21,0,0,0.49272 -18156,5212:215,-125,-21,0,0,0.488945 -18157,5212:114,-124,-21,0,0,0.481965 -18158,5212:113,-123,-21,0,0,0.477067 -18159,5212:112,-122,-21,0,0,0.480016 -18160,5212:111,-121,-21,0,0,0.475683 -18161,5212:110,-120,-21,0,0,0.482837 -18162,5211:219,-119,-21,0,0,0.478067 -18163,5211:218,-118,-21,0,0,0.481452 -18164,5211:217,-117,-21,0,0,0.479118 -18165,5211:216,-116,-21,0,0,0.48135 -18166,5211:215,-115,-21,0,0,0.484659 -18167,5211:114,-114,-21,0,0,0.487123 -18168,5211:113,-113,-21,0,0,0.48507 -18169,5211:112,-112,-21,0,0,0.479118 -18170,5211:111,-111,-21,0,0,0.482375 -18171,5211:110,-110,-21,0,0,0.482991 -18172,5210:219,-109,-21,0,0,0.48471 -18173,5210:218,-108,-21,0,0,0.485839 -18174,5210:217,-107,-21,0,0,0.489202 -18175,5210:216,-106,-21,0,0,0.485686 -18176,5210:215,-105,-21,0,0,0.485121 -18177,5210:114,-104,-21,0,0,0.486892 -18178,5210:113,-103,-21,0,0,0.484223 -18179,5210:112,-102,-21,0,0,0.479067 -18180,5210:111,-101,-21,0,0,0.475632 -18181,5210:110,-100,-21,0,0,0.474428 -18182,5209:219,-99,-21,0,0,0.472763 -18183,5209:218,-98,-21,0,0,0.471176 -18184,5209:217,-97,-21,0,0,0.465624 -18185,5209:216,-96,-21,0,0,0.458397 -18186,5209:215,-95,-21,0,0,0.455312 -18187,5209:114,-94,-21,0,0,0.451264 -18188,5209:113,-93,-21,0,0,0.446384 -18189,5209:112,-92,-21,0,0,0.440146 -18190,5209:111,-91,-21,0,0,0.434862 -18191,5209:110,-90,-21,0,0,0.429794 -18192,5208:219,-89,-21,0,0,0.426298 -18193,5208:218,-88,-21,0,0,0.424288 -18194,5208:217,-87,-21,0,0,0.422332 -18195,5208:216,-86,-21,0,0,0.420353 -18196,5208:215,-85,-21,0,0,0.418752 -18197,5208:114,-84,-21,0,0,0.419403 -18198,5208:113,-83,-21,0,0,0.419227 -18199,5208:112,-82,-21,0,0,0.418352 -18200,5208:111,-81,-21,0,0,0.415081 -18201,5208:110,-80,-21,0,0,0.40608 -18202,5207:219,-79,-21,0,0,0.406873 -18203,5207:218,-78,-21,0,0,0.404792 -18204,5207:217,-77,-21,0,0,0.399161 -18205,5207:216,-76,-21,0,0,0.394709 -18206,5207:215,-75,-21,0,0,0.384594 -18207,5207:114,-74,-21,0,0,0.377566 -18208,5207:113,-73,-21,0,0,0.367767 -18209,5207:112,-72,-21,0,0,0.382408 -18210,5207:111,-71,-21,0,0,0.346727 -18211,5204:218,-48,-21,0,0,0.580876 -18212,5204:217,-47,-21,0,0,0.594889 -18213,5204:216,-46,-21,0,0,0.566605 -18214,5204:215,-45,-21,0,0,0.564737 -18215,5204:114,-44,-21,0,0,0.558742 -18216,5204:113,-43,-21,0,0,0.561729 -18217,5204:112,-42,-21,0,0,0.551816 -18218,5204:111,-41,-21,0,0,0.547951 -18219,5204:110,-40,-21,0,0,0.549884 -18220,5203:219,-39,-21,0,0,0.548612 -18221,5203:218,-38,-21,0,0,0.543544 -18222,5203:217,-37,-21,0,0,0.543697 -18223,5203:216,-36,-21,0,0,0.535095 -18224,5203:215,-35,-21,0,0,0.522731 -18225,5203:114,-34,-21,0,0,0.526523 -18226,5203:113,-33,-21,0,0,0.532512 -18227,5203:112,-32,-21,0,0,0.53535 -18228,5203:111,-31,-21,0,0,0.530286 -18229,5203:110,-30,-21,0,0,0.532845 -18230,5202:219,-29,-21,0,0,0.533996 -18231,5202:218,-28,-21,0,0,0.531899 -18232,5202:217,-27,-21,0,0,0.532027 -18233,5202:216,-26,-21,0,0,0.53241 -18234,5202:215,-25,-21,0,0,0.527342 -18235,5202:114,-24,-21,0,0,0.521423 -18236,5202:113,-23,-21,0,0,0.514625 -18237,5202:112,-22,-21,0,0,0.508901 -18238,5202:111,-21,-21,0,0,0.504355 -18239,5202:110,-20,-21,0,0,0.502891 -18240,5201:219,-19,-21,0,0,0.506975 -18241,5201:218,-18,-21,0,0,0.511494 -18242,5201:217,-17,-21,0,0,0.510184 -18243,5201:216,-16,-21,0,0,0.515216 -18244,5201:215,-15,-21,0,0,0.513137 -18245,5201:114,-14,-21,0,0,0.514549 -18246,5201:113,-13,-21,0,0,0.511057 -18247,5201:112,-12,-21,0,0,0.506846 -18248,5201:111,-11,-21,0,0,0.508284 -18249,5201:110,-10,-21,0,0,0.508284 -18250,5200:219,-9,-21,0,0,0.50415 -18251,5200:218,-8,-21,0,0,0.500117 -18252,5200:217,-7,-21,0,0,0.496162 -18253,5200:216,-6,-21,0,0,0.492668 -18254,5200:215,-5,-21,0,0,0.489536 -18255,5200:114,-4,-21,0,0,0.486712 -18256,5200:113,-3,-21,0,0,0.482786 -18257,5200:112,-2,-21,0,0,0.47576 -18258,5200:111,-1,-21,0,0,0.471099 -18259,3200:111,0,-21,0,0,0.471559 -18260,3200:111,1,-21,0,0,0.469793 -18261,3200:112,2,-21,0,0,0.466545 -18262,3200:113,3,-21,0,0,0.456408 -18263,3200:114,4,-21,0,0,0.449687 -18264,3200:215,5,-21,0,0,0.446638 -18265,3200:216,6,-21,0,0,0.443237 -18266,3200:217,7,-21,0,0,0.440856 -18267,3200:218,8,-21,0,0,0.439894 -18268,3200:219,9,-21,0,0,0.437085 -18269,3201:110,10,-21,0,0,0.436327 -18270,3201:111,11,-21,0,0,0.43921 -18271,3201:112,12,-21,0,0,0.439463 -18272,3201:113,13,-21,0,0,0.441438 -18273,3201:114,14,-21,0,0,0.437085 -18274,3201:215,15,-21,0,0,0.39633 -18275,3203:113,33,-21,0,0,0.589132 -18276,3203:114,34,-21,0,0,0.59112 -18277,3203:215,35,-21,0,0,0.587763 -18278,3203:216,36,-21,0,0,0.556689 -18279,3203:217,37,-21,0,0,0.551994 -18280,3203:218,38,-21,0,0,0.547747 -18281,3203:219,39,-21,0,0,0.550443 -18282,3204:110,40,-21,0,0,0.553543 -18283,3204:111,41,-21,0,0,0.56365 -18284,3204:112,42,-21,0,0,0.566428 -18285,3204:113,43,-21,0,0,0.568042 -18286,3204:114,44,-21,0,0,0.568521 -18287,3204:215,45,-21,0,0,0.552705 -18288,3204:216,46,-21,0,0,0.545404 -18289,3204:217,47,-21,0,0,0.542167 -18290,3204:218,48,-21,0,0,0.544614 -18291,3204:219,49,-21,0,0,0.536014 -18292,3205:110,50,-21,0,0,0.536398 -18293,3205:111,51,-21,0,0,0.54181 -18294,3205:112,52,-21,0,0,0.531029 -18295,3205:113,53,-21,0,0,0.534277 -18296,3205:114,54,-21,0,0,0.534993 -18297,3205:215,55,-21,0,0,0.53131 -18298,3205:216,56,-21,0,0,0.527803 -18299,3205:217,57,-21,0,0,0.529211 -18300,3205:218,58,-21,0,0,0.533254 -18301,3205:219,59,-21,0,0,0.53218 -18302,3206:110,60,-21,0,0,0.524909 -18303,3206:111,61,-21,0,0,0.52496 -18304,3206:112,62,-21,0,0,0.532231 -18305,3206:113,63,-21,0,0,0.51991 -18306,3206:114,64,-21,0,0,0.527188 -18307,3206:215,65,-21,0,0,0.530466 -18308,3206:216,66,-21,0,0,0.523295 -18309,3206:217,67,-21,0,0,0.529365 -18310,3206:218,68,-21,0,0,0.533663 -18311,3206:219,69,-21,0,0,0.531847 -18312,3207:110,70,-21,0,0,0.522423 -18313,3207:111,71,-21,0,0,0.523115 -18314,3207:112,72,-21,0,0,0.5266 -18315,3207:114,74,-21,0,0,0.517473 -18316,3207:215,75,-21,0,0,0.518885 -18317,3207:216,76,-21,0,0,0.524038 -18318,3207:217,77,-21,0,0,0.522372 -18319,3207:218,78,-21,0,0,0.515216 -18320,3207:219,79,-21,0,0,0.518218 -18321,3208:110,80,-21,0,0,0.516832 -18322,3208:111,81,-21,0,0,0.508824 -18323,3208:112,82,-21,0,0,0.508952 -18649,3216:206,166,-20,0,0,0.53264 -18324,3208:113,83,-21,0,0,0.496367 -18325,3208:114,84,-21,0,0,0.50415 -18326,3208:215,85,-21,0,0,0.497985 -18327,3208:216,86,-21,0,0,0.49367 -18328,3208:217,87,-21,0,0,0.487534 -18329,3208:218,88,-21,0,0,0.481426 -18330,3208:219,89,-21,0,0,0.481016 -18331,3209:110,90,-21,0,0,0.479888 -18332,3209:111,91,-21,0,0,0.469486 -18333,3209:112,92,-21,0,0,0.463707 -18334,3209:113,93,-21,0,0,0.460515 -18335,3209:114,94,-21,0,0,0.460694 -18336,3209:215,95,-21,0,0,0.460106 -18337,3209:216,96,-21,0,0,0.453733 -18338,3209:217,97,-21,0,0,0.453962 -18339,3209:218,98,-21,0,0,0.448924 -18340,3209:219,99,-21,0,0,0.449077 -18341,3210:110,100,-21,0,0,0.464346 -18342,3210:111,101,-21,0,0,0.45437 -18343,3210:112,102,-21,0,0,0.443136 -18344,3210:113,103,-21,0,0,0.441387 -18345,3210:114,104,-21,0,0,0.444354 -18346,3210:215,105,-21,0,0,0.466595 -18347,3210:216,106,-21,0,0,0.470791 -18348,3210:217,107,-21,0,0,0.459086 -18349,3210:218,108,-21,0,0,0.472968 -18350,3210:219,109,-21,0,0,0.465675 -18351,3211:110,110,-21,0,0,0.472891 -18352,3211:111,111,-21,0,0,0.476504 -18353,3211:112,112,-21,0,0,0.519988 -18354,3211:113,113,-21,0,0,0.533254 -18355,3211:114,114,-21,0,0,0.518551 -18356,3215:114,154,-21,0,0,0.586244 -18357,3215:215,155,-21,0,0,0.563929 -18358,3215:216,156,-21,0,0,0.54232 -18359,3215:217,157,-21,0,0,0.534583 -18360,3215:218,158,-21,0,0,0.53154 -18361,3215:219,159,-21,0,0,0.527829 -18362,3216:110,160,-21,0,0,0.523935 -18363,3216:111,161,-21,0,0,0.521628 -18364,3216:112,162,-21,0,0,0.527803 -18365,3216:113,163,-21,0,0,0.527471 -18366,3216:114,164,-21,0,0,0.523269 -18367,3216:215,165,-21,0,0,0.519012 -18368,3216:216,166,-21,0,0,0.513624 -18369,3216:217,167,-21,0,0,0.508541 -18370,3216:218,168,-21,0,0,0.49891 -18371,3216:219,169,-21,0,0,0.508438 -18372,3217:110,170,-21,0,0,0.504227 -18373,3217:111,171,-21,0,0,0.500348 -18374,3217:112,172,-21,0,0,0.50397 -18375,3217:113,173,-21,0,0,0.508464 -18376,3217:114,174,-21,0,0,0.506127 -18377,3217:215,175,-21,0,0,0.503379 -18378,3217:216,176,-21,0,0,0.505126 -18379,3217:217,177,-21,0,0,0.505049 -18380,3217:218,178,-21,0,0,0.502557 -18381,3217:219,179,-21,0,0,0.496393 -18382,3218:110,180,-21,0,0,0.495314 -18383,5218:100,-180,-20,0,0,0.514805 -18384,5217:209,-179,-20,0,0,0.512213 -18385,5217:208,-178,-20,0,0,0.512213 -18386,5217:207,-177,-20,0,0,0.510184 -18387,5217:206,-176,-20,0,0,0.50397 -18388,5217:205,-175,-20,0,0,0.514625 -18389,5217:104,-174,-20,0,0,0.509388 -18390,5217:103,-173,-20,0,0,0.506846 -18391,5217:102,-172,-20,0,0,0.508593 -18392,5217:101,-171,-20,0,0,0.511596 -18393,5217:100,-170,-20,0,0,0.503611 -18394,5216:209,-169,-20,0,0,0.508028 -18395,5216:208,-168,-20,0,0,0.506512 -18396,5216:207,-167,-20,0,0,0.510005 -18397,5216:206,-166,-20,0,0,0.499012 -18398,5216:205,-165,-20,0,0,0.508515 -18399,5216:104,-164,-20,0,0,0.499988 -18400,5216:103,-163,-20,0,0,0.510878 -18401,5216:102,-162,-20,0,0,0.512213 -18402,5216:101,-161,-20,0,0,0.509363 -18403,5216:100,-160,-20,0,0,0.504715 -18404,5215:209,-159,-20,0,0,0.512726 -18405,5215:208,-158,-20,0,0,0.519731 -18406,5215:207,-157,-20,0,0,0.523115 -18407,5215:206,-156,-20,0,0,0.522448 -18408,5215:205,-155,-20,0,0,0.523448 -18409,5215:104,-154,-20,0,0,0.525908 -18410,5215:103,-153,-20,0,0,0.526548 -18411,5215:102,-152,-20,0,0,0.529544 -18412,5215:101,-151,-20,0,0,0.527803 -18413,5215:100,-150,-20,0,0,0.527957 -18414,5214:209,-149,-20,0,0,0.534558 -18415,5214:208,-148,-20,0,0,0.533203 -18416,5214:207,-147,-20,0,0,0.534149 -18417,5214:206,-146,-20,0,0,0.52852 -18418,5214:205,-145,-20,0,0,0.531847 -18419,5214:104,-144,-20,0,0,0.530414 -18420,5214:103,-143,-20,0,0,0.526241 -18421,5214:102,-142,-20,0,0,0.525882 -18422,5214:101,-141,-20,0,0,0.523397 -18423,5214:100,-140,-20,0,0,0.520628 -18424,5213:209,-139,-20,0,0,0.515062 -18425,5213:208,-138,-20,0,0,0.523628 -18426,5213:207,-137,-20,0,0,0.525652 -18427,5213:206,-136,-20,0,0,0.521398 -18428,5213:205,-135,-20,0,0,0.52209 -18429,5213:104,-134,-20,0,0,0.521962 -18430,5213:103,-133,-20,0,0,0.521936 -18431,5213:102,-132,-20,0,0,0.527086 -18432,5213:101,-131,-20,0,0,0.524064 -18433,5213:100,-130,-20,0,0,0.52232 -18434,5212:209,-129,-20,0,0,0.516601 -18435,5212:208,-128,-20,0,0,0.509106 -18436,5212:207,-127,-20,0,0,0.506435 -18437,5212:206,-126,-20,0,0,0.501427 -18438,5212:205,-125,-20,0,0,0.497985 -18439,5212:104,-124,-20,0,0,0.501787 -18440,5212:103,-123,-20,0,0,0.495648 -18441,5212:102,-122,-20,0,0,0.492849 -18442,5212:101,-121,-20,0,0,0.498088 -18443,5212:100,-120,-20,0,0,0.495031 -18444,5211:209,-119,-20,0,0,0.499526 -18445,5211:208,-118,-20,0,0,0.500811 -18446,5211:207,-117,-20,0,0,0.497754 -18447,5211:206,-116,-20,0,0,0.499809 -18448,5211:205,-115,-20,0,0,0.501453 -18449,5211:104,-114,-20,0,0,0.50397 -18450,5211:103,-113,-20,0,0,0.501863 -18451,5211:102,-112,-20,0,0,0.500888 -18452,5211:101,-111,-20,0,0,0.504971 -18453,5211:100,-110,-20,0,0,0.50492 -18454,5210:209,-109,-20,0,0,0.505614 -18455,5210:208,-108,-20,0,0,0.505614 -18456,5210:207,-107,-20,0,0,0.501581 -18457,5210:206,-106,-20,0,0,0.497574 -18458,5210:205,-105,-20,0,0,0.499937 -18459,5210:104,-104,-20,0,0,0.504201 -18460,5210:103,-103,-20,0,0,0.50266 -18461,5210:102,-102,-20,0,0,0.494621 -18462,5210:101,-101,-20,0,0,0.490126 -18463,5210:100,-100,-20,0,0,0.490717 -18464,5209:209,-99,-20,0,0,0.488406 -18465,5209:208,-98,-20,0,0,0.484428 -18466,5209:207,-97,-20,0,0,0.478144 -18467,5209:206,-96,-20,0,0,0.470151 -18468,5209:205,-95,-20,0,0,0.465803 -18469,5209:104,-94,-20,0,0,0.46174 -18470,5209:103,-93,-20,0,0,0.45358 -18471,5209:102,-92,-20,0,0,0.446181 -18472,5209:101,-91,-20,0,0,0.441691 -18473,5209:100,-90,-20,0,0,0.43711 -18474,5208:209,-89,-20,0,0,0.431784 -18475,5208:208,-88,-20,0,0,0.429039 -18476,5208:207,-87,-20,0,0,0.426172 -18477,5208:206,-86,-20,0,0,0.423209 -18478,5208:205,-85,-20,0,0,0.421605 -18479,5208:104,-84,-20,0,0,0.423837 -18480,5208:103,-83,-20,0,0,0.422683 -18481,5208:102,-82,-20,0,0,0.418152 -18482,5208:101,-81,-20,0,0,0.410772 -18483,5208:100,-80,-20,0,0,0.409131 -18484,5207:209,-79,-20,0,0,0.408014 -18485,5207:208,-78,-20,0,0,0.403802 -18486,5207:207,-77,-20,0,0,0.39385 -18487,5207:206,-76,-20,0,0,0.386687 -18488,5207:205,-75,-20,0,0,0.382941 -18489,5207:104,-74,-20,0,0,0.384691 -18490,5207:103,-73,-20,0,0,0.386054 -18491,5207:102,-72,-20,0,0,0.394808 -18492,5207:101,-71,-20,0,0,0.38299 -18493,5204:208,-48,-20,0,0,0.591046 -18494,5204:207,-47,-20,0,0,0.581576 -18495,5204:206,-46,-20,0,0,0.601015 -18496,5204:205,-45,-20,0,0,0.588858 -18497,5204:104,-44,-20,0,0,0.590996 -18498,5204:103,-43,-20,0,0,0.593948 -18499,5204:102,-42,-20,0,0,0.578272 -18500,5204:101,-41,-20,0,0,0.577144 -18501,5204:100,-40,-20,0,0,0.579074 -18502,5203:209,-39,-20,0,0,0.577395 -18503,5203:208,-38,-20,0,0,0.57594 -18504,5203:207,-37,-20,0,0,0.578222 -18505,5203:206,-36,-20,0,0,0.571845 -18506,5203:205,-35,-20,0,0,0.55859 -18507,5203:104,-34,-20,0,0,0.561856 -18508,5203:103,-33,-20,0,0,0.560894 -18509,5203:102,-32,-20,0,0,0.558818 -18510,5203:101,-31,-20,0,0,0.55466 -18511,5203:100,-30,-20,0,0,0.553848 -18512,5202:209,-29,-20,0,0,0.556943 -18513,5202:208,-28,-20,0,0,0.554812 -18514,5202:207,-27,-20,0,0,0.550672 -18515,5202:206,-26,-20,0,0,0.547543 -18516,5202:205,-25,-20,0,0,0.542855 -18517,5202:104,-24,-20,0,0,0.539998 -18518,5202:103,-23,-20,0,0,0.537164 -18519,5202:102,-22,-20,0,0,0.5365 -18520,5202:101,-21,-20,0,0,0.535452 -18521,5202:100,-20,-20,0,0,0.537062 -18522,5201:209,-19,-20,0,0,0.535555 -18523,5201:208,-18,-20,0,0,0.535069 -18524,5201:207,-17,-20,0,0,0.534685 -18525,5201:206,-16,-20,0,0,0.534021 -18526,5201:205,-15,-20,0,0,0.533126 -18527,5201:104,-14,-20,0,0,0.533331 -18528,5201:103,-13,-20,0,0,0.527982 -18529,5201:102,-12,-20,0,0,0.526958 -18530,5201:101,-11,-20,0,0,0.526933 -18531,5201:100,-10,-20,0,0,0.523781 -18532,5200:209,-9,-20,0,0,0.518756 -18533,5200:208,-8,-20,0,0,0.51478 -18534,5200:207,-7,-20,0,0,0.513445 -18535,5200:206,-6,-20,0,0,0.509928 -18536,5200:205,-5,-20,0,0,0.506461 -18537,5200:104,-4,-20,0,0,0.502634 -18538,5200:103,-3,-20,0,0,0.497728 -18539,5200:102,-2,-20,0,0,0.491821 -20488,3107:131,71,-13,0,0,0.60728 -18540,5200:101,-1,-20,0,0,0.487277 -18541,3200:101,0,-20,0,0,0.484813 -18542,3200:101,1,-20,0,0,0.481862 -18543,3200:102,2,-20,0,0,0.472507 -18544,3200:103,3,-20,0,0,0.46335 -18545,3200:104,4,-20,0,0,0.458066 -18546,3200:205,5,-20,0,0,0.453427 -18547,3200:206,6,-20,0,0,0.450374 -18548,3200:207,7,-20,0,0,0.446638 -18549,3200:208,8,-20,0,0,0.444683 -18550,3200:209,9,-20,0,0,0.444176 -18551,3201:100,10,-20,0,0,0.443289 -18552,3201:101,11,-20,0,0,0.44339 -18553,3201:102,12,-20,0,0,0.439767 -18554,3201:103,13,-20,0,0,0.435544 -18555,3201:104,14,-20,0,0,0.422332 -18556,3203:103,33,-20,0,0,0.592014 -18557,3203:104,34,-20,0,0,0.60728 -18558,3203:205,35,-20,0,0,0.610901 -18559,3203:206,36,-20,0,0,0.60652 -18560,3203:207,37,-20,0,0,0.58739 -18561,3203:208,38,-20,0,0,0.561704 -18562,3203:209,39,-20,0,0,0.568471 -18563,3204:100,40,-20,0,0,0.581651 -18564,3204:101,41,-20,0,0,0.581676 -18565,3204:102,42,-20,0,0,0.582501 -18566,3204:103,43,-20,0,0,0.59422 -18567,3204:104,44,-20,0,0,0.612146 -18568,3204:205,45,-20,0,0,0.579349 -18569,3204:206,46,-20,0,0,0.570158 -18570,3204:207,47,-20,0,0,0.567916 -18571,3204:208,48,-20,0,0,0.563828 -18572,3204:209,49,-20,0,0,0.569302 -18573,3205:100,50,-20,0,0,0.559046 -18574,3205:101,51,-20,0,0,0.558615 -18575,3205:102,52,-20,0,0,0.561755 -18576,3205:103,53,-20,0,0,0.554279 -18577,3205:104,54,-20,0,0,0.554279 -18578,3205:205,55,-20,0,0,0.557044 -18579,3205:206,56,-20,0,0,0.551104 -18580,3205:207,57,-20,0,0,0.546627 -18581,3205:208,58,-20,0,0,0.555751 -18582,3205:209,59,-20,0,0,0.558033 -18583,3206:100,60,-20,0,0,0.545022 -18584,3206:101,61,-20,0,0,0.542498 -18585,3206:102,62,-20,0,0,0.554051 -18586,3206:103,63,-20,0,0,0.553645 -18587,3206:104,64,-20,0,0,0.552527 -18588,3206:205,65,-20,0,0,0.550062 -18589,3206:206,66,-20,0,0,0.550951 -18590,3206:207,67,-20,0,0,0.547213 -18591,3206:208,68,-20,0,0,0.543799 -18592,3206:209,69,-20,0,0,0.543493 -18593,3207:100,70,-20,0,0,0.53862 -18594,3207:101,71,-20,0,0,0.533075 -18595,3207:102,72,-20,0,0,0.532027 -18596,3207:104,74,-20,0,0,0.528546 -18597,3207:205,75,-20,0,0,0.530849 -18598,3207:206,76,-20,0,0,0.525856 -18599,3207:207,77,-20,0,0,0.520141 -18600,3207:208,78,-20,0,0,0.521218 -18601,3207:209,79,-20,0,0,0.515703 -18602,3208:100,80,-20,0,0,0.513162 -18603,3208:101,81,-20,0,0,0.51365 -18604,3208:102,82,-20,0,0,0.506846 -18605,3208:103,83,-20,0,0,0.507976 -18606,3208:104,84,-20,0,0,0.509466 -18607,3208:205,85,-20,0,0,0.49629 -18608,3208:206,86,-20,0,0,0.496238 -18609,3208:207,87,-20,0,0,0.49082 -18610,3208:208,88,-20,0,0,0.48987 -18611,3208:209,89,-20,0,0,0.483376 -18612,3209:100,90,-20,0,0,0.479118 -18613,3209:101,91,-20,0,0,0.473941 -18614,3209:102,92,-20,0,0,0.476657 -18615,3209:103,93,-20,0,0,0.477657 -18616,3209:104,94,-20,0,0,0.475786 -18617,3209:205,95,-20,0,0,0.46634 -18618,3209:206,96,-20,0,0,0.467235 -18619,3209:207,97,-20,0,0,0.47594 -18620,3209:208,98,-20,0,0,0.458142 -18621,3209:209,99,-20,0,0,0.462175 -18622,3210:100,100,-20,0,0,0.481529 -18623,3210:101,101,-20,0,0,0.474838 -18624,3210:102,102,-20,0,0,0.466417 -18625,3210:103,103,-20,0,0,0.465087 -18626,3210:104,104,-20,0,0,0.480759 -18627,3210:205,105,-20,0,0,0.472814 -18628,3210:206,106,-20,0,0,0.47389 -18629,3210:207,107,-20,0,0,0.492335 -18630,3210:208,108,-20,0,0,0.488047 -18631,3210:209,109,-20,0,0,0.490563 -18632,3211:100,110,-20,0,0,0.501581 -18633,3211:101,111,-20,0,0,0.50908 -18634,3211:102,112,-20,0,0,0.531821 -18635,3211:103,113,-20,0,0,0.540382 -18636,3211:104,114,-20,0,0,0.565949 -18637,3215:104,154,-20,0,0,0.587689 -18638,3215:205,155,-20,0,0,0.568446 -18639,3215:206,156,-20,0,0,0.563575 -18640,3215:207,157,-20,0,0,0.544666 -18641,3215:208,158,-20,0,0,0.540202 -18642,3215:209,159,-20,0,0,0.538313 -18643,3216:100,160,-20,0,0,0.531847 -18644,3216:101,161,-20,0,0,0.531233 -18645,3216:102,162,-20,0,0,0.535606 -18646,3216:103,163,-20,0,0,0.529416 -18647,3216:104,164,-20,0,0,0.52765 -18648,3216:205,165,-20,0,0,0.530977 -18650,3216:207,167,-20,0,0,0.520013 -18651,3216:208,168,-20,0,0,0.514677 -18652,3216:209,169,-20,0,0,0.518654 -18653,3217:100,170,-20,0,0,0.519295 -18654,3217:101,171,-20,0,0,0.520731 -18655,3217:102,172,-20,0,0,0.513291 -18656,3217:103,173,-20,0,0,0.517551 -18657,3217:104,174,-20,0,0,0.515164 -18658,3217:205,175,-20,0,0,0.51714 -18659,3217:206,176,-20,0,0,0.513496 -18660,3217:207,177,-20,0,0,0.509876 -18661,3217:208,178,-20,0,0,0.510287 -18662,3217:209,179,-20,0,0,0.512957 -18663,3218:100,180,-20,0,0,0.514805 -18664,5118:390,-180,-19,0,0,0.526318 -18665,5117:499,-179,-19,0,0,0.530107 -18666,5117:498,-178,-19,0,0,0.535734 -18667,5117:497,-177,-19,0,0,0.529365 -18668,5117:496,-176,-19,0,0,0.530031 -18669,5117:495,-175,-19,0,0,0.525011 -18670,5117:394,-174,-19,0,0,0.524627 -18671,5117:393,-173,-19,0,0,0.527547 -18672,5117:392,-172,-19,0,0,0.529544 -18673,5117:391,-171,-19,0,0,0.517551 -18674,5117:390,-170,-19,0,0,0.523859 -18675,5116:499,-169,-19,0,0,0.525549 -18676,5116:498,-168,-19,0,0,0.526626 -18677,5116:497,-167,-19,0,0,0.523833 -18678,5116:496,-166,-19,0,0,0.518936 -18679,5116:495,-165,-19,0,0,0.533996 -18680,5116:394,-164,-19,0,0,0.527086 -18681,5116:393,-163,-19,0,0,0.518371 -18682,5116:392,-162,-19,0,0,0.529929 -18683,5116:391,-161,-19,0,0,0.527342 -18684,5116:390,-160,-19,0,0,0.53742 -18685,5115:499,-159,-19,0,0,0.5365 -18686,5115:498,-158,-19,0,0,0.532027 -18687,5115:497,-157,-19,0,0,0.53021 -18688,5115:496,-156,-19,0,0,0.540458 -18689,5115:495,-155,-19,0,0,0.539973 -18690,5115:394,-154,-19,0,0,0.542983 -18691,5115:393,-153,-19,0,0,0.543468 -18692,5115:392,-152,-19,0,0,0.53982 -18693,5115:391,-151,-19,0,0,0.551053 -18694,5115:390,-150,-19,0,0,0.547467 -18695,5114:499,-149,-19,0,0,0.546398 -18696,5114:498,-148,-19,0,0,0.546448 -18697,5114:497,-147,-19,0,0,0.548383 -18698,5114:496,-146,-19,0,0,0.551511 -18699,5114:495,-145,-19,0,0,0.546627 -18700,5114:394,-144,-19,0,0,0.545073 -18701,5114:393,-143,-19,0,0,0.541453 -18702,5114:392,-142,-19,0,0,0.540126 -18703,5114:391,-141,-19,0,0,0.541351 -18704,5114:390,-140,-19,0,0,0.54907 -18705,5113:499,-139,-19,0,0,0.545761 -18706,5113:498,-138,-19,0,0,0.545506 -18707,5113:497,-137,-19,0,0,0.549248 -18708,5113:496,-136,-19,0,0,0.545965 -18709,5113:495,-135,-19,0,0,0.552578 -18710,5113:394,-134,-19,0,0,0.543442 -18711,5113:393,-133,-19,0,0,0.552374 -18712,5113:392,-132,-19,0,0,0.534839 -18713,5113:391,-131,-19,0,0,0.544105 -18714,5113:390,-130,-19,0,0,0.539029 -18715,5112:499,-129,-19,0,0,0.533816 -18716,5112:498,-128,-19,0,0,0.531361 -18717,5112:497,-127,-19,0,0,0.52683 -18718,5112:496,-126,-19,0,0,0.524909 -18719,5112:495,-125,-19,0,0,0.523628 -18720,5112:394,-124,-19,0,0,0.516499 -18721,5112:393,-123,-19,0,0,0.51832 -18722,5112:392,-122,-19,0,0,0.520988 -18723,5112:391,-121,-19,0,0,0.520013 -18724,5112:390,-120,-19,0,0,0.517704 -18725,5111:499,-119,-19,0,0,0.518423 -18726,5111:498,-118,-19,0,0,0.516293 -18727,5111:497,-117,-19,0,0,0.514241 -18728,5111:496,-116,-19,0,0,0.519474 -18729,5111:495,-115,-19,0,0,0.521833 -18730,5111:394,-114,-19,0,0,0.523192 -18731,5111:393,-113,-19,0,0,0.521398 -18732,5111:392,-112,-19,0,0,0.522115 -18733,5111:391,-111,-19,0,0,0.521244 -18734,5111:390,-110,-19,0,0,0.517551 -18735,5110:499,-109,-19,0,0,0.518243 -18736,5110:498,-108,-19,0,0,0.51832 -18737,5110:497,-107,-19,0,0,0.513624 -18738,5110:496,-106,-19,0,0,0.512546 -18739,5110:495,-105,-19,0,0,0.517576 -18740,5110:394,-104,-19,0,0,0.514061 -18741,5110:393,-103,-19,0,0,0.510596 -18742,5110:392,-102,-19,0,0,0.510672 -18743,5110:391,-101,-19,0,0,0.507052 -18744,5110:390,-100,-19,0,0,0.503328 -18745,5109:499,-99,-19,0,0,0.498576 -18746,5109:498,-98,-19,0,0,0.489947 -18747,5109:497,-97,-19,0,0,0.483915 -18748,5109:496,-96,-19,0,0,0.475504 -18749,5109:495,-95,-19,0,0,0.467695 -18750,5109:394,-94,-19,0,0,0.46003 -18751,5109:393,-93,-19,0,0,0.453224 -18752,5109:392,-92,-19,0,0,0.446333 -18753,5109:391,-91,-19,0,0,0.441717 -18754,5109:390,-90,-19,0,0,0.438223 -18755,5108:499,-89,-19,0,0,0.435468 -18756,5108:498,-88,-19,0,0,0.431936 -18757,5108:497,-87,-19,0,0,0.429215 -18758,5108:496,-86,-19,0,0,0.424615 -18759,5108:495,-85,-19,0,0,0.423009 -18760,5108:394,-84,-19,0,0,0.422157 -18761,5108:393,-83,-19,0,0,0.418002 -18762,5108:392,-82,-19,0,0,0.413161 -18763,5108:391,-81,-19,0,0,0.412514 -18764,5108:390,-80,-19,0,0,0.409504 -18765,5107:499,-79,-19,0,0,0.406824 -18766,5107:498,-78,-19,0,0,0.400344 -18767,5107:497,-77,-19,0,0,0.394906 -18768,5107:496,-76,-19,0,0,0.394145 -18769,5107:495,-75,-19,0,0,0.39211 -18770,5107:394,-74,-19,0,0,0.391939 -18771,5107:393,-73,-19,0,0,0.398594 -18772,5107:392,-72,-19,0,0,0.407468 -18773,5107:391,-71,-19,0,0,0.394832 -18774,5104:497,-47,-19,0,0,0.577871 -18775,5104:496,-46,-19,0,0,0.554762 -18776,5104:495,-45,-19,0,0,0.604802 -18777,5104:394,-44,-19,0,0,0.611511 -18778,5104:393,-43,-19,0,0,0.608236 -18779,5104:392,-42,-19,0,0,0.600275 -18780,5104:391,-41,-19,0,0,0.603378 -18781,5104:390,-40,-19,0,0,0.6063 -18782,5103:499,-39,-19,0,0,0.602812 -18783,5103:498,-38,-19,0,0,0.599708 -18784,5103:497,-37,-19,0,0,0.598894 -18785,5103:496,-36,-19,0,0,0.596349 -18786,5103:495,-35,-19,0,0,0.588609 -18787,5103:394,-34,-19,0,0,0.583326 -18788,5103:393,-33,-19,0,0,0.582726 -18789,5103:392,-32,-19,0,0,0.58355 -18790,5103:391,-31,-19,0,0,0.581951 -18791,5103:390,-30,-19,0,0,0.58035 -18792,5102:499,-29,-19,0,0,0.574836 -18793,5102:498,-28,-19,0,0,0.568874 -18794,5102:497,-27,-19,0,0,0.565015 -18795,5102:496,-26,-19,0,0,0.563145 -18796,5102:495,-25,-19,0,0,0.560565 -18797,5102:394,-24,-19,0,0,0.561982 -18798,5102:393,-23,-19,0,0,0.557247 -18799,5102:392,-22,-19,0,0,0.55745 -18800,5102:391,-21,-19,0,0,0.555954 -18801,5102:390,-20,-19,0,0,0.552908 -18802,5101:499,-19,-19,0,0,0.552984 -18803,5101:498,-18,-19,0,0,0.552629 -18804,5101:497,-17,-19,0,0,0.549146 -18805,5101:496,-16,-19,0,0,0.551918 -18806,5101:495,-15,-19,0,0,0.551663 -18807,5101:394,-14,-19,0,0,0.550367 -18808,5101:393,-13,-19,0,0,0.549324 -18809,5101:392,-12,-19,0,0,0.545328 -18810,5101:391,-11,-19,0,0,0.541529 -18811,5101:390,-10,-19,0,0,0.54028 -18812,5100:499,-9,-19,0,0,0.539437 -18813,5100:498,-8,-19,0,0,0.537522 -18814,5100:497,-7,-19,0,0,0.532896 -18815,5100:496,-6,-19,0,0,0.524217 -18816,5100:495,-5,-19,0,0,0.517166 -18817,5100:394,-4,-19,0,0,0.513522 -18818,5100:393,-3,-19,0,0,0.508181 -18819,5100:392,-2,-19,0,0,0.503302 -18820,5100:391,-1,-19,0,0,0.494723 -18821,3100:391,0,-19,0,0,0.487662 -18822,3100:391,1,-19,0,0,0.481272 -18823,3100:392,2,-19,0,0,0.472123 -18824,3100:393,3,-19,0,0,0.46404 -18825,3100:394,4,-19,0,0,0.45855 -18826,3100:495,5,-19,0,0,0.45465 -18827,3100:496,6,-19,0,0,0.452638 -18828,3100:497,7,-19,0,0,0.452486 -18829,3100:498,8,-19,0,0,0.44801 -18830,3100:499,9,-19,0,0,0.449306 -18831,3101:390,10,-19,0,0,0.446815 -18832,3101:391,11,-19,0,0,0.450119 -18833,3101:392,12,-19,0,0,0.450374 -18834,3101:393,13,-19,0,0,0.446942 -18835,3101:394,14,-19,0,0,0.417727 -18836,3103:495,35,-19,0,0,0.606055 -18837,3103:496,36,-19,0,0,0.618274 -18838,3103:497,37,-19,0,0,0.605932 -18839,3103:498,38,-19,0,0,0.604213 -18840,3103:499,39,-19,0,0,0.594369 -18841,3104:390,40,-19,0,0,0.606079 -18842,3104:391,41,-19,0,0,0.596794 -18843,3104:392,42,-19,0,0,0.607893 -18844,3104:393,43,-19,0,0,0.639965 -18845,3104:497,47,-19,0,0,0.575036 -18846,3104:498,48,-19,0,0,0.602443 -18847,3104:499,49,-19,0,0,0.590599 -18848,3105:390,50,-19,0,0,0.58953 -18849,3105:391,51,-19,0,0,0.571593 -18850,3105:392,52,-19,0,0,0.579925 -18851,3105:393,53,-19,0,0,0.57363 -18852,3105:394,54,-19,0,0,0.564181 -18853,3105:495,55,-19,0,0,0.565015 -18854,3105:496,56,-19,0,0,0.572976 -18855,3105:497,57,-19,0,0,0.568143 -18856,3105:498,58,-19,0,0,0.569882 -18857,3105:499,59,-19,0,0,0.576492 -18858,3106:390,60,-19,0,0,0.551333 -18859,3106:391,61,-19,0,0,0.563094 -18860,3106:392,62,-19,0,0,0.566756 -18861,3106:393,63,-19,0,0,0.56312 -18862,3106:394,64,-19,0,0,0.558362 -18863,3106:495,65,-19,0,0,0.562108 -18864,3106:496,66,-19,0,0,0.552578 -18865,3106:497,67,-19,0,0,0.554102 -18866,3106:498,68,-19,0,0,0.551155 -18867,3106:499,69,-19,0,0,0.546474 -18868,3107:390,70,-19,0,0,0.53982 -18869,3107:391,71,-19,0,0,0.535964 -18870,3107:392,72,-19,0,0,0.540509 -18871,3107:394,74,-19,0,0,0.538365 -18872,3107:495,75,-19,0,0,0.530056 -18873,3107:496,76,-19,0,0,0.529135 -18874,3107:497,77,-19,0,0,0.525652 -18875,3107:498,78,-19,0,0,0.523064 -18876,3107:499,79,-19,0,0,0.516524 -18877,3108:390,80,-19,0,0,0.516011 -18878,3108:391,81,-19,0,0,0.519552 -18879,3108:392,82,-19,0,0,0.519654 -18880,3108:393,83,-19,0,0,0.512161 -18881,3108:394,84,-19,0,0,0.510929 -18882,3108:495,85,-19,0,0,0.509517 -18883,3108:496,86,-19,0,0,0.505074 -18884,3108:497,87,-19,0,0,0.502249 -18885,3108:498,88,-19,0,0,0.493388 -18886,3108:499,89,-19,0,0,0.489074 -18887,3109:390,90,-19,0,0,0.491898 -18888,3109:391,91,-19,0,0,0.48987 -18889,3109:392,92,-19,0,0,0.48602 -18890,3109:393,93,-19,0,0,0.48643 -18891,3109:394,94,-19,0,0,0.490614 -18892,3109:495,95,-19,0,0,0.480631 -18893,3109:496,96,-19,0,0,0.48058 -18894,3109:497,97,-19,0,0,0.488817 -18895,3109:498,98,-19,0,0,0.492438 -18896,3109:499,99,-19,0,0,0.490178 -18897,3110:390,100,-19,0,0,0.481606 -18898,3110:391,101,-19,0,0,0.4794 -18899,3110:392,102,-19,0,0,0.476504 -18900,3110:393,103,-19,0,0,0.493233 -18901,3110:394,104,-19,0,0,0.491719 -18902,3110:495,105,-19,0,0,0.48276 -18903,3110:496,106,-19,0,0,0.480144 -18904,3110:497,107,-19,0,0,0.498011 -18905,3110:498,108,-19,0,0,0.503302 -18906,3110:499,109,-19,0,0,0.502454 -18907,3111:390,110,-19,0,0,0.507565 -18908,3111:391,111,-19,0,0,0.534353 -18909,3111:392,112,-19,0,0,0.542218 -18910,3111:393,113,-19,0,0,0.559781 -18911,3115:393,153,-19,0,0,0.594716 -18912,3115:394,154,-19,0,0,0.595161 -18913,3115:495,155,-19,0,0,0.572273 -18914,3115:496,156,-19,0,0,0.565646 -18915,3115:497,157,-19,0,0,0.569428 -18916,3115:498,158,-19,0,0,0.566832 -18917,3115:499,159,-19,0,0,0.554762 -18918,3116:390,160,-19,0,0,0.542014 -18919,3116:391,161,-19,0,0,0.544818 -18920,3116:392,162,-19,0,0,0.544029 -18921,3116:393,163,-19,0,0,0.551409 -18922,3116:394,164,-19,0,0,0.554381 -18923,3116:495,165,-19,0,0,0.545302 -18924,3116:496,166,-19,0,0,0.535043 -18925,3116:497,167,-19,0,0,0.53627 -18926,3116:498,168,-19,0,0,0.539514 -18927,3116:499,169,-19,0,0,0.542805 -18928,3117:390,170,-19,0,0,0.533663 -18929,3117:391,171,-19,0,0,0.533918 -18930,3117:392,172,-19,0,0,0.537292 -18931,3117:393,173,-19,0,0,0.530696 -18932,3117:394,174,-19,0,0,0.524806 -18933,3117:495,175,-19,0,0,0.527266 -18934,3117:496,176,-19,0,0,0.527317 -18935,3117:497,177,-19,0,0,0.522474 -18936,3117:498,178,-19,0,0,0.52537 -18937,3117:499,179,-19,0,0,0.524627 -18938,3118:390,180,-19,0,0,0.526318 -18939,5118:380,-180,-18,0,0,0.546474 -18940,5117:489,-179,-18,0,0,0.541427 -18941,5117:488,-178,-18,0,0,0.547976 -18942,5117:487,-177,-18,0,0,0.539718 -18943,5117:486,-176,-18,0,0,0.539565 -18944,5117:485,-175,-18,0,0,0.53742 -18945,5117:384,-174,-18,0,0,0.531438 -18946,5117:383,-173,-18,0,0,0.534788 -18947,5117:382,-172,-18,0,0,0.535632 -18948,5117:381,-171,-18,0,0,0.536014 -18949,5117:380,-170,-18,0,0,0.53131 -18950,5116:489,-169,-18,0,0,0.534558 -18951,5116:488,-168,-18,0,0,0.537369 -18952,5116:487,-167,-18,0,0,0.534328 -18953,5116:486,-166,-18,0,0,0.539054 -18954,5116:485,-165,-18,0,0,0.543442 -18955,5116:384,-164,-18,0,0,0.54907 -18956,5116:383,-163,-18,0,0,0.540738 -18957,5116:382,-162,-18,0,0,0.540841 -18958,5116:381,-161,-18,0,0,0.54209 -18959,5116:380,-160,-18,0,0,0.549579 -18960,5115:489,-159,-18,0,0,0.549579 -18961,5115:488,-158,-18,0,0,0.548357 -18962,5115:487,-157,-18,0,0,0.550316 -18963,5115:486,-156,-18,0,0,0.548103 -18964,5115:485,-155,-18,0,0,0.549782 -18965,5115:384,-154,-18,0,0,0.55499 -18966,5115:383,-153,-18,0,0,0.550825 -18967,5115:382,-152,-18,0,0,0.560489 -18968,5115:381,-151,-18,0,0,0.564813 -18969,5115:380,-150,-18,0,0,0.563499 -18970,5114:489,-149,-18,0,0,0.561223 -18971,5114:488,-148,-18,0,0,0.566227 -18972,5114:487,-147,-18,0,0,0.569655 -18973,5114:486,-146,-18,0,0,0.563701 -21244,5108:103,-83,-10,0,0,0.47179 -18974,5114:485,-145,-18,0,0,0.557678 -18975,5114:384,-144,-18,0,0,0.561173 -18976,5114:383,-143,-18,0,0,0.559299 -18977,5114:382,-142,-18,0,0,0.566478 -18978,5114:381,-141,-18,0,0,0.563448 -18979,5114:380,-140,-18,0,0,0.572775 -18980,5113:489,-139,-18,0,0,0.5727 -18981,5113:488,-138,-18,0,0,0.57099 -18982,5113:487,-137,-18,0,0,0.572574 -18983,5113:486,-136,-18,0,0,0.573806 -18984,5113:485,-135,-18,0,0,0.570158 -18985,5113:384,-134,-18,0,0,0.571166 -18986,5113:383,-133,-18,0,0,0.570687 -18987,5113:382,-132,-18,0,0,0.557374 -18988,5113:381,-131,-18,0,0,0.561856 -18989,5113:380,-130,-18,0,0,0.550799 -18990,5112:489,-129,-18,0,0,0.552553 -18991,5112:488,-128,-18,0,0,0.550774 -18992,5112:487,-127,-18,0,0,0.545837 -18993,5112:486,-126,-18,0,0,0.541249 -18994,5112:485,-125,-18,0,0,0.542498 -18995,5112:384,-124,-18,0,0,0.538186 -18996,5112:383,-123,-18,0,0,0.542779 -18997,5112:382,-122,-18,0,0,0.542014 -18998,5112:381,-121,-18,0,0,0.542907 -18999,5112:380,-120,-18,0,0,0.537726 -19000,5111:489,-119,-18,0,0,0.536756 -19001,5111:488,-118,-18,0,0,0.537726 -19002,5111:487,-117,-18,0,0,0.538467 -19003,5111:486,-116,-18,0,0,0.53862 -19004,5111:485,-115,-18,0,0,0.541249 -19005,5111:384,-114,-18,0,0,0.543314 -19006,5111:383,-113,-18,0,0,0.542269 -19007,5111:382,-112,-18,0,0,0.542192 -19008,5111:381,-111,-18,0,0,0.537981 -19009,5111:380,-110,-18,0,0,0.531873 -19010,5110:489,-109,-18,0,0,0.530286 -19011,5110:488,-108,-18,0,0,0.531924 -19012,5110:487,-107,-18,0,0,0.530158 -19013,5110:486,-106,-18,0,0,0.528008 -19014,5110:485,-105,-18,0,0,0.524883 -19015,5110:384,-104,-18,0,0,0.522295 -19016,5110:383,-103,-18,0,0,0.51991 -19017,5110:382,-102,-18,0,0,0.515472 -19018,5110:381,-101,-18,0,0,0.510031 -19019,5110:380,-100,-18,0,0,0.504253 -19020,5109:489,-99,-18,0,0,0.49629 -19021,5109:488,-98,-18,0,0,0.49064 -19022,5109:487,-97,-18,0,0,0.482427 -19023,5109:486,-96,-18,0,0,0.475888 -19024,5109:485,-95,-18,0,0,0.470356 -19025,5109:384,-94,-18,0,0,0.466212 -19026,5109:383,-93,-18,0,0,0.460566 -19027,5109:382,-92,-18,0,0,0.452358 -19028,5109:381,-91,-18,0,0,0.444912 -19029,5109:380,-90,-18,0,0,0.438628 -19030,5108:489,-89,-18,0,0,0.43653 -19031,5108:488,-88,-18,0,0,0.433751 -19032,5108:487,-87,-18,0,0,0.430096 -19033,5108:486,-86,-18,0,0,0.426499 -19034,5108:485,-85,-18,0,0,0.421605 -19035,5108:384,-84,-18,0,0,0.418352 -19036,5108:383,-83,-18,0,0,0.41331 -19037,5108:382,-82,-18,0,0,0.406824 -19038,5108:381,-81,-18,0,0,0.401405 -19039,5108:380,-80,-18,0,0,0.398939 -19040,5107:489,-79,-18,0,0,0.395937 -19041,5107:488,-78,-18,0,0,0.394464 -19042,5107:487,-77,-18,0,0,0.394587 -19043,5107:486,-76,-18,0,0,0.395029 -19044,5107:485,-75,-18,0,0,0.395225 -19045,5107:384,-74,-18,0,0,0.397388 -19046,5107:383,-73,-18,0,0,0.403456 -19047,5107:382,-72,-18,0,0,0.419327 -19048,5107:381,-71,-18,0,0,0.411219 -19049,5104:384,-44,-18,0,0,0.56269 -19050,5104:383,-43,-18,0,0,0.604361 -19051,5104:382,-42,-18,0,0,0.606201 -19052,5104:381,-41,-18,0,0,0.623354 -19053,5104:380,-40,-18,0,0,0.623812 -19054,5103:489,-39,-18,0,0,0.620575 -19055,5103:488,-38,-18,0,0,0.615579 -19056,5103:487,-37,-18,0,0,0.611731 -19057,5103:486,-36,-18,0,0,0.605736 -19058,5103:485,-35,-18,0,0,0.603353 -19059,5103:384,-34,-18,0,0,0.603451 -19060,5103:383,-33,-18,0,0,0.607403 -19061,5103:382,-32,-18,0,0,0.603451 -19062,5103:381,-31,-18,0,0,0.601408 -19063,5103:380,-30,-18,0,0,0.597857 -19064,5102:489,-29,-18,0,0,0.587091 -19065,5102:488,-28,-18,0,0,0.57995 -19066,5102:487,-27,-18,0,0,0.577746 -19067,5102:486,-26,-18,0,0,0.578874 -19068,5102:485,-25,-18,0,0,0.577922 -19069,5102:384,-24,-18,0,0,0.576442 -19070,5102:383,-23,-18,0,0,0.574434 -19071,5102:382,-22,-18,0,0,0.57461 -19072,5102:381,-21,-18,0,0,0.576743 -19073,5102:380,-20,-18,0,0,0.576642 -19074,5101:489,-19,-18,0,0,0.574383 -19075,5101:488,-18,-18,0,0,0.576015 -19076,5101:487,-17,-18,0,0,0.574308 -19077,5101:486,-16,-18,0,0,0.57192 -19078,5101:485,-15,-18,0,0,0.568345 -19079,5101:384,-14,-18,0,0,0.563094 -19080,5101:383,-13,-18,0,0,0.558083 -19081,5101:382,-12,-18,0,0,0.555802 -19082,5101:381,-11,-18,0,0,0.552578 -19083,5101:380,-10,-18,0,0,0.547365 -19084,5100:489,-9,-18,0,0,0.540738 -19085,5100:488,-8,-18,0,0,0.534251 -19086,5100:487,-7,-18,0,0,0.526676 -19087,5100:486,-6,-18,0,0,0.518218 -19088,5100:485,-5,-18,0,0,0.513265 -19089,5100:384,-4,-18,0,0,0.505896 -19090,5100:383,-3,-18,0,0,0.498653 -19091,5100:382,-2,-18,0,0,0.49308 -19092,5100:381,-1,-18,0,0,0.486584 -19093,3100:381,0,-18,0,0,0.480247 -19094,3100:381,1,-18,0,0,0.474607 -19095,3100:382,2,-18,0,0,0.469973 -19096,3100:383,3,-18,0,0,0.464601 -19097,3100:384,4,-18,0,0,0.460668 -19098,3100:485,5,-18,0,0,0.460438 -19099,3100:486,6,-18,0,0,0.45804 -19100,3100:487,7,-18,0,0,0.456255 -19101,3100:488,8,-18,0,0,0.454446 -19102,3100:489,9,-18,0,0,0.455108 -19103,3101:380,10,-18,0,0,0.455949 -19104,3101:381,11,-18,0,0,0.455261 -19105,3101:382,12,-18,0,0,0.450196 -19106,3101:383,13,-18,0,0,0.443897 -19107,3101:384,14,-18,0,0,0.385566 -19108,3103:486,36,-18,0,0,0.632308 -19109,3103:487,37,-18,0,0,0.615968 -19110,3103:488,38,-18,0,0,0.613681 -19111,3103:489,39,-18,0,0,0.611438 -19112,3104:380,40,-18,0,0,0.617693 -19113,3104:381,41,-18,0,0,0.625763 -19114,3104:382,42,-18,0,0,0.648068 -19115,3104:383,43,-18,0,0,0.666784 -19116,3104:488,48,-18,0,0,0.61217 -19117,3104:489,49,-18,0,0,0.597956 -19118,3105:380,50,-18,0,0,0.598845 -19119,3105:381,51,-18,0,0,0.593526 -19120,3105:382,52,-18,0,0,0.590151 -19121,3105:383,53,-18,0,0,0.581176 -19122,3105:384,54,-18,0,0,0.576166 -19123,3105:485,55,-18,0,0,0.580376 -19124,3105:486,56,-18,0,0,0.5833 -19125,3105:487,57,-18,0,0,0.585322 -19126,3105:488,58,-18,0,0,0.585048 -19127,3105:489,59,-18,0,0,0.585097 -19128,3106:380,60,-18,0,0,0.57985 -19129,3106:381,61,-18,0,0,0.570788 -19130,3106:382,62,-18,0,0,0.569604 -19131,3106:383,63,-18,0,0,0.574509 -19132,3106:384,64,-18,0,0,0.570536 -19133,3106:485,65,-18,0,0,0.567639 -19134,3106:486,66,-18,0,0,0.561071 -19135,3106:487,67,-18,0,0,0.556588 -19136,3106:488,68,-18,0,0,0.553315 -19137,3106:489,69,-18,0,0,0.547874 -19138,3107:380,70,-18,0,0,0.549884 -19139,3107:381,71,-18,0,0,0.545684 -19140,3107:382,72,-18,0,0,0.542754 -19141,3107:384,74,-18,0,0,0.535912 -19142,3107:485,75,-18,0,0,0.533024 -19143,3107:486,76,-18,0,0,0.538211 -19144,3107:487,77,-18,0,0,0.533816 -19145,3107:488,78,-18,0,0,0.530312 -19146,3107:489,79,-18,0,0,0.530261 -19147,3108:380,80,-18,0,0,0.525882 -19148,3108:381,81,-18,0,0,0.527291 -19149,3108:382,82,-18,0,0,0.518551 -19150,3108:383,83,-18,0,0,0.523755 -19151,3108:384,84,-18,0,0,0.520833 -19152,3108:485,85,-18,0,0,0.513753 -19153,3108:486,86,-18,0,0,0.516396 -19154,3108:487,87,-18,0,0,0.509235 -19155,3108:488,88,-18,0,0,0.507745 -19156,3108:489,89,-18,0,0,0.509671 -19157,3109:380,90,-18,0,0,0.5117 -19158,3109:381,91,-18,0,0,0.506076 -19159,3109:382,92,-18,0,0,0.506051 -19160,3109:383,93,-18,0,0,0.510904 -19161,3109:384,94,-18,0,0,0.508079 -19162,3109:485,95,-18,0,0,0.501761 -19163,3109:486,96,-18,0,0,0.503251 -19164,3109:487,97,-18,0,0,0.496958 -19165,3109:488,98,-18,0,0,0.499398 -19166,3109:489,99,-18,0,0,0.491976 -19167,3110:380,100,-18,0,0,0.497677 -19168,3110:381,101,-18,0,0,0.491411 -19169,3110:382,102,-18,0,0,0.497651 -19170,3110:383,103,-18,0,0,0.507411 -19171,3110:384,104,-18,0,0,0.501478 -19172,3110:485,105,-18,0,0,0.500322 -19173,3110:486,106,-18,0,0,0.507771 -19174,3110:487,107,-18,0,0,0.517371 -19175,3110:488,108,-18,0,0,0.521577 -19176,3110:489,109,-18,0,0,0.529851 -19177,3111:380,110,-18,0,0,0.529288 -19178,3111:381,111,-18,0,0,0.532589 -19179,3111:382,112,-18,0,0,0.557956 -19180,3111:383,113,-18,0,0,0.570032 -19181,3111:384,114,-18,0,0,0.565318 -19182,3115:382,152,-18,0,0,0.591641 -19183,3115:383,153,-18,0,0,0.588734 -19184,3115:384,154,-18,0,0,0.594245 -19185,3115:485,155,-18,0,0,0.588336 -19186,3115:486,156,-18,0,0,0.568546 -19187,3115:487,157,-18,0,0,0.574509 -19188,3115:488,158,-18,0,0,0.571694 -19189,3115:489,159,-18,0,0,0.560565 -19190,3116:380,160,-18,0,0,0.558438 -19191,3116:381,161,-18,0,0,0.568848 -19192,3116:382,162,-18,0,0,0.564661 -19193,3116:383,163,-18,0,0,0.561729 -19194,3116:384,164,-18,0,0,0.566277 -19195,3116:485,165,-18,0,0,0.558007 -19196,3116:486,166,-18,0,0,0.552451 -19197,3116:487,167,-18,0,0,0.551562 -19198,3116:488,168,-18,0,0,0.54996 -19199,3116:489,169,-18,0,0,0.556918 -19200,3117:380,170,-18,0,0,0.54851 -19201,3117:381,171,-18,0,0,0.543238 -19202,3117:382,172,-18,0,0,0.543111 -19203,3117:383,173,-18,0,0,0.542907 -19204,3117:384,174,-18,0,0,0.535708 -19205,3117:485,175,-18,0,0,0.534737 -19206,3117:486,176,-18,0,0,0.543391 -19207,3117:487,177,-18,0,0,0.541988 -19208,3117:488,178,-18,0,0,0.535606 -19209,3117:489,179,-18,0,0,0.542957 -19210,3118:380,180,-18,0,0,0.546474 -19211,5118:370,-180,-17,0,0,0.544283 -19212,5117:479,-179,-17,0,0,0.546882 -19213,5117:478,-178,-17,0,0,0.54968 -19214,5117:477,-177,-17,0,0,0.546499 -19215,5117:476,-176,-17,0,0,0.548154 -19216,5117:475,-175,-17,0,0,0.542422 -19217,5117:374,-174,-17,0,0,0.541912 -19218,5117:373,-173,-17,0,0,0.542192 -19219,5117:372,-172,-17,0,0,0.553492 -19220,5117:371,-171,-17,0,0,0.545761 -19221,5117:370,-170,-17,0,0,0.55085 -19222,5116:479,-169,-17,0,0,0.560869 -19223,5116:478,-168,-17,0,0,0.552248 -19224,5116:477,-167,-17,0,0,0.555396 -19225,5116:476,-166,-17,0,0,0.546677 -19226,5116:475,-165,-17,0,0,0.551333 -19227,5116:374,-164,-17,0,0,0.55897 -19228,5116:373,-163,-17,0,0,0.554838 -19229,5116:372,-162,-17,0,0,0.556866 -19230,5116:371,-161,-17,0,0,0.554736 -19231,5116:370,-160,-17,0,0,0.559932 -19232,5115:479,-159,-17,0,0,0.560691 -19233,5115:478,-158,-17,0,0,0.564838 -19234,5115:477,-157,-17,0,0,0.564054 -19235,5115:476,-156,-17,0,0,0.566403 -19236,5115:475,-155,-17,0,0,0.561957 -19237,5115:374,-154,-17,0,0,0.569353 -19238,5115:373,-153,-17,0,0,0.574359 -19239,5115:372,-152,-17,0,0,0.579449 -19240,5115:371,-151,-17,0,0,0.588012 -19241,5115:370,-150,-17,0,0,0.58035 -19242,5114:479,-149,-17,0,0,0.587016 -19243,5114:478,-148,-17,0,0,0.585247 -19244,5114:477,-147,-17,0,0,0.58395 -19245,5114:476,-146,-17,0,0,0.584298 -19246,5114:475,-145,-17,0,0,0.58597 -19247,5114:374,-144,-17,0,0,0.58345 -19248,5114:373,-143,-17,0,0,0.585023 -19249,5114:372,-142,-17,0,0,0.585247 -19250,5114:371,-141,-17,0,0,0.587838 -19251,5114:370,-140,-17,0,0,0.59107 -19252,5113:479,-139,-17,0,0,0.589331 -19253,5113:478,-138,-17,0,0,0.588385 -19254,5113:477,-137,-17,0,0,0.590325 -19255,5113:476,-136,-17,0,0,0.591244 -19256,5113:475,-135,-17,0,0,0.589927 -19257,5113:374,-134,-17,0,0,0.587962 -19258,5113:373,-133,-17,0,0,0.583375 -19259,5113:372,-132,-17,0,0,0.579474 -19260,5113:371,-131,-17,0,0,0.575062 -19261,5113:370,-130,-17,0,0,0.575213 -19262,5112:479,-129,-17,0,0,0.573479 -19263,5112:478,-128,-17,0,0,0.570008 -19264,5112:477,-127,-17,0,0,0.564938 -19265,5112:476,-126,-17,0,0,0.564408 -19266,5112:475,-125,-17,0,0,0.561527 -19267,5112:374,-124,-17,0,0,0.560768 -19268,5112:373,-123,-17,0,0,0.559071 -19269,5112:372,-122,-17,0,0,0.559122 -19270,5112:371,-121,-17,0,0,0.55674 -19271,5112:370,-120,-17,0,0,0.55306 -19272,5111:479,-119,-17,0,0,0.555167 -19273,5111:478,-118,-17,0,0,0.558007 -19274,5111:477,-117,-17,0,0,0.559704 -19275,5111:476,-116,-17,0,0,0.562563 -19276,5111:475,-115,-17,0,0,0.566277 -19277,5111:374,-114,-17,0,0,0.5636 -19278,5111:373,-113,-17,0,0,0.557906 -19279,5111:372,-112,-17,0,0,0.556689 -19280,5111:371,-111,-17,0,0,0.553822 -19281,5111:370,-110,-17,0,0,0.549935 -19282,5110:479,-109,-17,0,0,0.548816 -19283,5110:478,-108,-17,0,0,0.545863 -19284,5110:477,-107,-17,0,0,0.543187 -19285,5110:476,-106,-17,0,0,0.539233 -19286,5110:475,-105,-17,0,0,0.531361 -19287,5110:374,-104,-17,0,0,0.523423 -19288,5110:373,-103,-17,0,0,0.515318 -19289,5110:372,-102,-17,0,0,0.508567 -19290,5110:371,-101,-17,0,0,0.503302 -19291,5110:370,-100,-17,0,0,0.498987 -19292,5109:479,-99,-17,0,0,0.495314 -19293,5109:478,-98,-17,0,0,0.489408 -19294,5109:477,-97,-17,0,0,0.483735 -19295,5109:476,-96,-17,0,0,0.477631 -19296,5109:475,-95,-17,0,0,0.468053 -19297,5109:374,-94,-17,0,0,0.458703 -19298,5109:373,-93,-17,0,0,0.453936 -19299,5109:372,-92,-17,0,0,0.449204 -19300,5109:371,-91,-17,0,0,0.441641 -19301,5109:370,-90,-17,0,0,0.437591 -19302,5108:479,-89,-17,0,0,0.435367 -19303,5108:478,-88,-17,0,0,0.429643 -19304,5108:477,-87,-17,0,0,0.424062 -19305,5108:476,-86,-17,0,0,0.421405 -19306,5108:475,-85,-17,0,0,0.417177 -19307,5108:374,-84,-17,0,0,0.412239 -19308,5108:373,-83,-17,0,0,0.407543 -19309,5108:372,-82,-17,0,0,0.404916 -19310,5108:371,-81,-17,0,0,0.404346 -19311,5108:370,-80,-17,0,0,0.404594 -19312,5107:479,-79,-17,0,0,0.401627 -19313,5107:478,-78,-17,0,0,0.396994 -19314,5107:477,-77,-17,0,0,0.395077 -19315,5107:476,-76,-17,0,0,0.395298 -19316,5107:475,-75,-17,0,0,0.399826 -19317,5107:374,-74,-17,0,0,0.406799 -19318,5107:373,-73,-17,0,0,0.424966 -19319,5107:372,-72,-17,0,0,0.438881 -19320,5107:371,-71,-17,0,0,0.447349 -19321,5104:371,-41,-17,0,0,0.622944 -19322,5104:370,-40,-17,0,0,0.628118 -19323,5103:479,-39,-17,0,0,0.628502 -19324,5103:478,-38,-17,0,0,0.623209 -19325,5103:477,-37,-17,0,0,0.619462 -19326,5103:476,-36,-17,0,0,0.617037 -19327,5103:475,-35,-17,0,0,0.617328 -19328,5103:374,-34,-17,0,0,0.617596 -19329,5103:373,-33,-17,0,0,0.618468 -19330,5103:372,-32,-17,0,0,0.619293 -19331,5103:371,-31,-17,0,0,0.617838 -19332,5103:370,-30,-17,0,0,0.614972 -19333,5102:479,-29,-17,0,0,0.604704 -19334,5102:478,-28,-17,0,0,0.588435 -19335,5102:477,-27,-17,0,0,0.582726 -19336,5102:476,-26,-17,0,0,0.584224 -19337,5102:475,-25,-17,0,0,0.586667 -19338,5102:374,-24,-17,0,0,0.586792 -19339,5102:373,-23,-17,0,0,0.586867 -19340,5102:372,-22,-17,0,0,0.587365 -19341,5102:371,-21,-17,0,0,0.585695 -19342,5102:370,-20,-17,0,0,0.58325 -19343,5101:479,-19,-17,0,0,0.581426 -19344,5101:478,-18,-17,0,0,0.580301 -19345,5101:477,-17,-17,0,0,0.578197 -19346,5101:476,-16,-17,0,0,0.573881 -19347,5101:475,-15,-17,0,0,0.568345 -19348,5101:374,-14,-17,0,0,0.563044 -19349,5101:373,-13,-17,0,0,0.556157 -19350,5101:372,-12,-17,0,0,0.550265 -19351,5101:371,-11,-17,0,0,0.543875 -19352,5101:370,-10,-17,0,0,0.535989 -19353,5100:479,-9,-17,0,0,0.52934 -19354,5100:478,-8,-17,0,0,0.524012 -19355,5100:477,-7,-17,0,0,0.515986 -19356,5100:476,-6,-17,0,0,0.508515 -19357,5100:475,-5,-17,0,0,0.50207 -19358,5100:374,-4,-17,0,0,0.497266 -19359,5100:373,-3,-17,0,0,0.492104 -19360,5100:372,-2,-17,0,0,0.483248 -19361,5100:371,-1,-17,0,0,0.478836 -19362,3100:371,0,-17,0,0,0.475376 -19363,3100:371,1,-17,0,0,0.472148 -19364,3100:372,2,-17,0,0,0.467414 -19365,3100:373,3,-17,0,0,0.46386 -19366,3100:374,4,-17,0,0,0.462736 -19367,3100:475,5,-17,0,0,0.461817 -19368,3100:476,6,-17,0,0,0.460974 -19369,3100:477,7,-17,0,0,0.458856 -19370,3100:478,8,-17,0,0,0.458881 -19371,3100:479,9,-17,0,0,0.461459 -19372,3101:370,10,-17,0,0,0.460004 -19373,3101:371,11,-17,0,0,0.455414 -19374,3101:372,12,-17,0,0,0.451162 -19375,3101:373,13,-17,0,0,0.445267 -19376,3103:476,36,-17,0,0,0.639823 -19377,3103:477,37,-17,0,0,0.623498 -19378,3103:478,38,-17,0,0,0.630299 -19379,3103:479,39,-17,0,0,0.62545 -19380,3104:370,40,-17,0,0,0.64006 -19381,3104:371,41,-17,0,0,0.656364 -19382,3104:372,42,-17,0,0,0.67362 -19383,3104:373,43,-17,0,0,0.671402 -19384,3104:478,48,-17,0,0,0.619849 -19385,3104:479,49,-17,0,0,0.609753 -19386,3105:370,50,-17,0,0,0.600966 -19387,3105:371,51,-17,0,0,0.593923 -19388,3105:372,52,-17,0,0,0.590673 -19389,3105:373,53,-17,0,0,0.593155 -19390,3105:374,54,-17,0,0,0.58953 -19391,3105:475,55,-17,0,0,0.585771 -19392,3105:476,56,-17,0,0,0.587863 -19393,3105:477,57,-17,0,0,0.598647 -19394,3105:478,58,-17,0,0,0.595582 -19395,3105:479,59,-17,0,0,0.592733 -19396,3106:370,60,-17,0,0,0.589604 -19397,3106:371,61,-17,0,0,0.584972 -19398,3106:372,62,-17,0,0,0.578197 -19399,3106:373,63,-17,0,0,0.575313 -19400,3106:374,64,-17,0,0,0.569075 -19401,3106:475,65,-17,0,0,0.567942 -19402,3106:476,66,-17,0,0,0.567185 -19403,3106:477,67,-17,0,0,0.561779 -19404,3106:478,68,-17,0,0,0.560565 -19405,3106:479,69,-17,0,0,0.556715 -19406,3107:370,70,-17,0,0,0.550698 -19407,3107:371,71,-17,0,0,0.558843 -19408,3107:372,72,-17,0,0,0.552527 -19409,3107:374,74,-17,0,0,0.549655 -19410,3107:475,75,-17,0,0,0.54767 -19411,3107:476,76,-17,0,0,0.54181 -19412,3107:477,77,-17,0,0,0.541479 -19413,3107:478,78,-17,0,0,0.536551 -19414,3107:479,79,-17,0,0,0.538467 -19415,3108:370,80,-17,0,0,0.536654 -19416,3108:371,81,-17,0,0,0.534021 -19417,3108:372,82,-17,0,0,0.526805 -19418,3108:373,83,-17,0,0,0.537343 -19419,3108:374,84,-17,0,0,0.53021 -19420,3108:475,85,-17,0,0,0.528853 -19421,3108:476,86,-17,0,0,0.531029 -19422,3108:477,87,-17,0,0,0.532845 -19423,3108:478,88,-17,0,0,0.521987 -19424,3108:479,89,-17,0,0,0.535555 -19425,3109:370,90,-17,0,0,0.538416 -19426,3109:371,91,-17,0,0,0.515113 -19427,3109:372,92,-17,0,0,0.532154 -19428,3109:373,93,-17,0,0,0.519885 -19429,3109:374,94,-17,0,0,0.5298 -19430,3109:475,95,-17,0,0,0.527291 -19431,3109:476,96,-17,0,0,0.52209 -19432,3109:477,97,-17,0,0,0.528776 -19433,3109:478,98,-17,0,0,0.527547 -19434,3109:479,99,-17,0,0,0.509054 -19435,3110:370,100,-17,0,0,0.510749 -19436,3110:371,101,-17,0,0,0.522987 -19437,3110:372,102,-17,0,0,0.528213 -19438,3110:373,103,-17,0,0,0.523961 -19439,3110:374,104,-17,0,0,0.524243 -19440,3110:475,105,-17,0,0,0.534558 -19441,3110:476,106,-17,0,0,0.53535 -19442,3110:477,107,-17,0,0,0.52893 -19443,3110:478,108,-17,0,0,0.53108 -19444,3110:479,109,-17,0,0,0.540636 -19445,3111:370,110,-17,0,0,0.548103 -19446,3111:371,111,-17,0,0,0.56183 -19447,3111:372,112,-17,0,0,0.561501 -19448,3111:373,113,-17,0,0,0.573982 -19449,3111:374,114,-17,0,0,0.581376 -19450,3115:370,150,-17,0,0,0.624968 -19451,3115:371,151,-17,0,0,0.60136 -19452,3115:372,152,-17,0,0,0.610901 -19453,3115:373,153,-17,0,0,0.601408 -19454,3115:374,154,-17,0,0,0.597585 -19455,3115:475,155,-17,0,0,0.586394 -19456,3115:476,156,-17,0,0,0.5833 -19457,3115:477,157,-17,0,0,0.57368 -19458,3115:478,158,-17,0,0,0.580951 -19459,3115:479,159,-17,0,0,0.571291 -19460,3116:370,160,-17,0,0,0.568521 -19461,3116:371,161,-17,0,0,0.580801 -19462,3116:372,162,-17,0,0,0.576642 -19463,3116:373,163,-17,0,0,0.580225 -19464,3116:374,164,-17,0,0,0.5801 -19465,3116:475,165,-17,0,0,0.572876 -19466,3116:476,166,-17,0,0,0.545226 -19467,3116:477,167,-17,0,0,0.550799 -19468,3116:478,168,-17,0,0,0.562286 -19469,3116:479,169,-17,0,0,0.565368 -19470,3117:370,170,-17,0,0,0.559628 -19471,3117:371,171,-17,0,0,0.551383 -19472,3117:372,172,-17,0,0,0.556309 -19473,3117:373,173,-17,0,0,0.552806 -19474,3117:374,174,-17,0,0,0.55024 -19475,3117:475,175,-17,0,0,0.544895 -19476,3117:476,176,-17,0,0,0.551231 -19477,3117:477,177,-17,0,0,0.543824 -19478,3117:478,178,-17,0,0,0.539616 -19479,3117:479,179,-17,0,0,0.554736 -19480,3118:370,180,-17,0,0,0.544283 -19481,5118:360,-180,-16,0,0,0.559046 -19482,5117:469,-179,-16,0,0,0.556918 -19483,5117:468,-178,-16,0,0,0.559476 -19484,5117:467,-177,-16,0,0,0.565519 -19485,5117:466,-176,-16,0,0,0.563347 -19486,5117:465,-175,-16,0,0,0.563802 -19487,5117:364,-174,-16,0,0,0.555954 -19488,5117:363,-173,-16,0,0,0.563575 -19489,5117:362,-172,-16,0,0,0.562867 -19490,5117:361,-171,-16,0,0,0.558083 -19491,5117:360,-170,-16,0,0,0.569932 -19492,5116:469,-169,-16,0,0,0.566983 -19493,5116:468,-168,-16,0,0,0.56615 -19494,5116:467,-167,-16,0,0,0.564282 -19495,5116:466,-166,-16,0,0,0.569227 -19496,5116:465,-165,-16,0,0,0.565116 -19497,5116:364,-164,-16,0,0,0.568647 -19498,5116:363,-163,-16,0,0,0.572474 -19499,5116:362,-162,-16,0,0,0.571392 -19500,5116:361,-161,-16,0,0,0.573504 -19501,5116:360,-160,-16,0,0,0.579249 -19502,5115:469,-159,-16,0,0,0.582101 -19503,5115:468,-158,-16,0,0,0.5829 -19504,5115:467,-157,-16,0,0,0.586493 -19505,5115:466,-156,-16,0,0,0.589405 -19506,5115:465,-155,-16,0,0,0.593824 -19507,5115:364,-154,-16,0,0,0.595384 -19508,5115:363,-153,-16,0,0,0.600103 -19509,5115:362,-152,-16,0,0,0.60163 -19510,5115:361,-151,-16,0,0,0.603131 -19511,5115:360,-150,-16,0,0,0.605319 -19512,5114:469,-149,-16,0,0,0.605171 -19513,5114:468,-148,-16,0,0,0.607035 -19514,5114:467,-147,-16,0,0,0.609654 -19515,5114:466,-146,-16,0,0,0.609801 -19516,5114:465,-145,-16,0,0,0.610144 -19517,5114:364,-144,-16,0,0,0.609067 -19518,5114:363,-143,-16,0,0,0.60804 -19519,5114:362,-142,-16,0,0,0.608897 -19520,5114:361,-141,-16,0,0,0.609581 -19521,5114:360,-140,-16,0,0,0.609703 -19522,5113:469,-139,-16,0,0,0.609215 -19523,5113:468,-138,-16,0,0,0.608138 -19524,5113:467,-137,-16,0,0,0.606398 -19525,5113:466,-136,-16,0,0,0.605932 -19526,5113:465,-135,-16,0,0,0.604754 -19527,5113:364,-134,-16,0,0,0.603205 -19528,5113:363,-133,-16,0,0,0.600866 -19529,5113:362,-132,-16,0,0,0.596843 -19530,5113:361,-131,-16,0,0,0.594963 -19531,5113:360,-130,-16,0,0,0.59184 -19532,5112:469,-129,-16,0,0,0.58856 -19533,5112:468,-128,-16,0,0,0.586743 -19534,5112:467,-127,-16,0,0,0.587539 -19535,5112:466,-126,-16,0,0,0.586543 -19536,5112:465,-125,-16,0,0,0.583125 -19537,5112:364,-124,-16,0,0,0.585421 -19538,5112:363,-123,-16,0,0,0.584623 -19539,5112:362,-122,-16,0,0,0.585197 -19540,5112:361,-121,-16,0,0,0.5833 -19541,5112:360,-120,-16,0,0,0.580476 -19542,5111:469,-119,-16,0,0,0.581926 -19543,5111:468,-118,-16,0,0,0.582426 -19544,5111:467,-117,-16,0,0,0.583326 -19545,5111:466,-116,-16,0,0,0.582376 -19546,5111:465,-115,-16,0,0,0.578874 -19547,5111:364,-114,-16,0,0,0.575589 -19548,5111:363,-113,-16,0,0,0.572499 -19549,5111:362,-112,-16,0,0,0.566781 -19550,5111:361,-111,-16,0,0,0.562867 -19551,5111:360,-110,-16,0,0,0.559603 -19552,5110:469,-109,-16,0,0,0.555421 -19553,5110:468,-108,-16,0,0,0.550672 -19554,5110:467,-107,-16,0,0,0.546398 -19555,5110:466,-106,-16,0,0,0.540636 -19556,5110:465,-105,-16,0,0,0.534737 -19557,5110:364,-104,-16,0,0,0.52724 -19558,5110:363,-103,-16,0,0,0.519038 -19559,5110:362,-102,-16,0,0,0.513522 -19560,5110:361,-101,-16,0,0,0.508079 -19561,5110:360,-100,-16,0,0,0.503277 -19562,5109:469,-99,-16,0,0,0.49873 -19563,5109:468,-98,-16,0,0,0.494313 -19564,5109:467,-97,-16,0,0,0.487354 -19565,5109:466,-96,-16,0,0,0.476939 -19566,5109:465,-95,-16,0,0,0.470433 -19567,5109:364,-94,-16,0,0,0.466186 -19568,5109:363,-93,-16,0,0,0.459392 -19569,5109:362,-92,-16,0,0,0.451111 -19570,5109:361,-91,-16,0,0,0.444962 -19571,5109:360,-90,-16,0,0,0.437414 -19572,5108:469,-89,-16,0,0,0.432465 -19573,5108:468,-88,-16,0,0,0.42914 -19574,5108:467,-87,-16,0,0,0.424715 -19575,5108:466,-86,-16,0,0,0.418577 -19576,5108:465,-85,-16,0,0,0.410871 -19577,5108:364,-84,-16,0,0,0.40556 -19578,5108:363,-83,-16,0,0,0.403554 -19579,5108:362,-82,-16,0,0,0.400245 -19580,5108:361,-81,-16,0,0,0.400566 -19581,5108:360,-80,-16,0,0,0.398471 -19582,5107:469,-79,-16,0,0,0.397117 -19583,5107:468,-78,-16,0,0,0.397412 -19584,5107:467,-77,-16,0,0,0.40106 -19585,5107:466,-76,-16,0,0,0.403209 -19586,5107:465,-75,-16,0,0,0.410423 -19587,5107:364,-74,-16,0,0,0.42459 -19588,5107:363,-73,-16,0,0,0.437085 -19589,5107:362,-72,-16,0,0,0.456357 -19590,5107:361,-71,-16,0,0,0.446536 -19591,5104:360,-40,-16,0,0,0.636002 -19592,5103:469,-39,-16,0,0,0.632594 -19593,5103:468,-38,-16,0,0,0.629964 -19594,5103:467,-37,-16,0,0,0.623981 -19595,5103:466,-36,-16,0,0,0.623932 -19596,5103:465,-35,-16,0,0,0.626797 -19597,5103:364,-34,-16,0,0,0.627086 -19598,5103:363,-33,-16,0,0,0.625017 -19599,5103:362,-32,-16,0,0,0.623836 -19600,5103:361,-31,-16,0,0,0.620624 -19601,5103:360,-30,-16,0,0,0.615239 -19602,5102:469,-29,-16,0,0,0.609336 -19603,5102:468,-28,-16,0,0,0.595062 -19604,5102:467,-27,-16,0,0,0.583924 -19605,5102:466,-26,-16,0,0,0.583125 -19606,5102:465,-25,-16,0,0,0.584748 -19607,5102:364,-24,-16,0,0,0.585845 -19608,5102:363,-23,-16,0,0,0.585895 -19609,5102:362,-22,-16,0,0,0.584673 -19610,5102:361,-21,-16,0,0,0.582976 -19611,5102:360,-20,-16,0,0,0.581551 -19612,5101:469,-19,-16,0,0,0.578422 -19613,5101:468,-18,-16,0,0,0.572172 -19614,5101:467,-17,-16,0,0,0.567437 -19615,5101:466,-16,-16,0,0,0.562842 -19616,5101:465,-15,-16,0,0,0.558134 -19617,5101:364,-14,-16,0,0,0.553239 -19618,5101:363,-13,-16,0,0,0.546754 -19619,5101:362,-12,-16,0,0,0.538493 -19620,5101:361,-11,-16,0,0,0.529468 -19621,5101:360,-10,-16,0,0,0.523755 -19622,5100:469,-9,-16,0,0,0.517628 -19623,5100:468,-8,-16,0,0,0.512161 -19624,5100:467,-7,-16,0,0,0.505999 -19625,5100:466,-6,-16,0,0,0.499295 -19626,5100:465,-5,-16,0,0,0.491976 -19627,5100:364,-4,-16,0,0,0.486609 -19628,5100:363,-3,-16,0,0,0.484736 -19629,5100:362,-2,-16,0,0,0.480144 -19630,5100:361,-1,-16,0,0,0.477119 -19631,3100:361,0,-16,0,0,0.475581 -19632,3100:361,1,-16,0,0,0.473557 -19633,3100:362,2,-16,0,0,0.470101 -19634,3100:363,3,-16,0,0,0.467746 -19635,3100:364,4,-16,0,0,0.466058 -19636,3100:465,5,-16,0,0,0.465369 -19637,3100:466,6,-16,0,0,0.464831 -19638,3100:467,7,-16,0,0,0.464218 -19639,3100:468,8,-16,0,0,0.464269 -19640,3100:469,9,-16,0,0,0.463732 -19641,3101:360,10,-16,0,0,0.46054 -19642,3101:361,11,-16,0,0,0.461332 -19643,3101:362,12,-16,0,0,0.453172 -19644,3101:363,13,-16,0,0,0.403505 -19645,3103:465,35,-16,0,0,0.644686 -19646,3103:466,36,-16,0,0,0.646285 -19647,3103:467,37,-16,0,0,0.644168 -19648,3103:468,38,-16,0,0,0.627086 -19649,3103:469,39,-16,0,0,0.643956 -19650,3104:360,40,-16,0,0,0.655112 -19651,3104:361,41,-16,0,0,0.66156 -19652,3104:362,42,-16,0,0,0.679152 -19653,3104:363,43,-16,0,0,0.685521 -19654,3104:469,49,-16,0,0,0.619656 -19655,3105:360,50,-16,0,0,0.608481 -19656,3105:361,51,-16,0,0,0.606839 -19657,3105:362,52,-16,0,0,0.603476 -19658,3105:363,53,-16,0,0,0.601187 -19659,3105:364,54,-16,0,0,0.603795 -19660,3105:465,55,-16,0,0,0.601729 -19661,3105:466,56,-16,0,0,0.603353 -19662,3105:467,57,-16,0,0,0.603107 -19663,3105:468,58,-16,0,0,0.599017 -19664,3105:469,59,-16,0,0,0.593923 -19665,3106:360,60,-16,0,0,0.593576 -19666,3106:361,61,-16,0,0,0.591369 -19667,3106:362,62,-16,0,0,0.582476 -19668,3106:363,63,-16,0,0,0.5835 -19669,3106:364,64,-16,0,0,0.577345 -19670,3106:465,65,-16,0,0,0.571794 -19671,3106:466,66,-16,0,0,0.575162 -19672,3106:467,67,-16,0,0,0.576116 -19673,3106:468,68,-16,0,0,0.572273 -19674,3106:469,69,-16,0,0,0.567387 -19675,3107:360,70,-16,0,0,0.568219 -19676,3107:361,71,-16,0,0,0.566227 -19677,3107:362,72,-16,0,0,0.558615 -19678,3107:364,74,-16,0,0,0.557652 -19679,3107:465,75,-16,0,0,0.555497 -19680,3107:466,76,-16,0,0,0.553162 -19681,3107:467,77,-16,0,0,0.55235 -19682,3107:468,78,-16,0,0,0.552171 -19683,3107:469,79,-16,0,0,0.54464 -19684,3108:360,80,-16,0,0,0.556411 -19685,3108:361,81,-16,0,0,0.557069 -19686,3108:362,82,-16,0,0,0.552806 -19687,3108:363,83,-16,0,0,0.53742 -19688,3108:364,84,-16,0,0,0.553975 -19689,3108:465,85,-16,0,0,0.552832 -19690,3108:466,86,-16,0,0,0.540892 -19691,3108:467,87,-16,0,0,0.550977 -19692,3108:468,88,-16,0,0,0.545532 -19693,3108:469,89,-16,0,0,0.547314 -19694,3109:360,90,-16,0,0,0.55334 -19695,3109:361,91,-16,0,0,0.542957 -19696,3109:362,92,-16,0,0,0.551257 -19697,3109:363,93,-16,0,0,0.53982 -19698,3109:364,94,-16,0,0,0.540764 -19699,3109:465,95,-16,0,0,0.540815 -19700,3109:466,96,-16,0,0,0.525856 -19701,3109:467,97,-16,0,0,0.541325 -19702,3109:468,98,-16,0,0,0.527342 -19703,3109:469,99,-16,0,0,0.523551 -19704,3110:360,100,-16,0,0,0.521654 -19705,3110:361,101,-16,0,0,0.53673 -19706,3110:362,102,-16,0,0,0.532333 -19707,3110:363,103,-16,0,0,0.543289 -19708,3110:364,104,-16,0,0,0.55118 -19709,3110:465,105,-16,0,0,0.541121 -19710,3110:466,106,-16,0,0,0.543773 -19711,3110:467,107,-16,0,0,0.545761 -19712,3110:468,108,-16,0,0,0.554406 -19713,3110:469,109,-16,0,0,0.560362 -19714,3111:360,110,-16,0,0,0.566554 -19715,3111:361,111,-16,0,0,0.572976 -19716,3111:362,112,-16,0,0,0.571266 -19717,3111:363,113,-16,0,0,0.582551 -19718,3111:364,114,-16,0,0,0.595954 -19719,3111:465,115,-16,0,0,0.603083 -19720,3111:466,116,-16,0,0,0.611657 -19721,3111:467,117,-16,0,0,0.6314 -19722,3111:468,118,-16,0,0,0.65611 -19723,3115:360,150,-16,0,0,0.60706 -19724,3115:361,151,-16,0,0,0.611853 -19725,3115:362,152,-16,0,0,0.60603 -19726,3115:363,153,-16,0,0,0.605686 -19727,3115:364,154,-16,0,0,0.588361 -19728,3115:465,155,-16,0,0,0.584349 -19729,3115:466,156,-16,0,0,0.583575 -19730,3115:467,157,-16,0,0,0.591766 -21245,5108:102,-82,-10,0,0,0.47594 -19731,3115:468,158,-16,0,0,0.591741 -19732,3115:469,159,-16,0,0,0.582126 -19733,3116:360,160,-16,0,0,0.581676 -19734,3116:361,161,-16,0,0,0.595235 -19735,3116:362,162,-16,0,0,0.592957 -19736,3116:363,163,-16,0,0,0.591194 -19737,3116:364,164,-16,0,0,0.590052 -19738,3116:465,165,-16,0,0,0.584648 -19739,3116:466,166,-16,0,0,0.577846 -19740,3116:467,167,-16,0,0,0.580401 -19741,3116:468,168,-16,0,0,0.574509 -19742,3116:469,169,-16,0,0,0.569201 -19743,3117:360,170,-16,0,0,0.565166 -19744,3117:361,171,-16,0,0,0.566251 -19745,3117:362,172,-16,0,0,0.561527 -19746,3117:363,173,-16,0,0,0.555345 -19747,3117:364,174,-16,0,0,0.56461 -19748,3117:465,175,-16,0,0,0.566428 -19749,3117:466,176,-16,0,0,0.557146 -19750,3117:467,177,-16,0,0,0.566504 -19751,3117:468,178,-16,0,0,0.564257 -19752,3117:469,179,-16,0,0,0.564054 -19753,3118:360,180,-16,0,0,0.559046 -19754,5118:350,-180,-15,0,0,0.576467 -19755,5117:459,-179,-15,0,0,0.576668 -19756,5117:458,-178,-15,0,0,0.574987 -19757,5117:457,-177,-15,0,0,0.576266 -19758,5117:456,-176,-15,0,0,0.584573 -19759,5117:455,-175,-15,0,0,0.586493 -19760,5117:354,-174,-15,0,0,0.582976 -19761,5117:353,-173,-15,0,0,0.585072 -19762,5117:352,-172,-15,0,0,0.585646 -19763,5117:351,-171,-15,0,0,0.585571 -19764,5117:350,-170,-15,0,0,0.586419 -19765,5116:459,-169,-15,0,0,0.589629 -19766,5116:458,-168,-15,0,0,0.587738 -19767,5116:457,-167,-15,0,0,0.589927 -19768,5116:456,-166,-15,0,0,0.590474 -19769,5116:455,-165,-15,0,0,0.594146 -19770,5116:354,-164,-15,0,0,0.598845 -19771,5116:353,-163,-15,0,0,0.596151 -19772,5116:352,-162,-15,0,0,0.600275 -19773,5116:351,-161,-15,0,0,0.602861 -19774,5116:350,-160,-15,0,0,0.605564 -19775,5115:459,-159,-15,0,0,0.610119 -19776,5115:458,-158,-15,0,0,0.616843 -19777,5115:457,-157,-15,0,0,0.616211 -19778,5115:456,-156,-15,0,0,0.618371 -19779,5115:455,-155,-15,0,0,0.621204 -19780,5115:354,-154,-15,0,0,0.62234 -19781,5115:353,-153,-15,0,0,0.624944 -19782,5115:352,-152,-15,0,0,0.628669 -19783,5115:351,-151,-15,0,0,0.63331 -19784,5115:350,-150,-15,0,0,0.633168 -19785,5114:459,-149,-15,0,0,0.631113 -19786,5114:458,-148,-15,0,0,0.632475 -19787,5114:457,-147,-15,0,0,0.632905 -19788,5114:456,-146,-15,0,0,0.63226 -19789,5114:455,-145,-15,0,0,0.629677 -19790,5114:354,-144,-15,0,0,0.628838 -19791,5114:353,-143,-15,0,0,0.629581 -19792,5114:352,-142,-15,0,0,0.627517 -19793,5114:351,-141,-15,0,0,0.628765 -19794,5114:350,-140,-15,0,0,0.62831 -19795,5113:459,-139,-15,0,0,0.627157 -19796,5113:458,-138,-15,0,0,0.625666 -19797,5113:457,-137,-15,0,0,0.626244 -19798,5113:456,-136,-15,0,0,0.626629 -19799,5113:455,-135,-15,0,0,0.625089 -19800,5113:354,-134,-15,0,0,0.623523 -19801,5113:353,-133,-15,0,0,0.623064 -19802,5113:352,-132,-15,0,0,0.622413 -19803,5113:351,-131,-15,0,0,0.61951 -19804,5113:350,-130,-15,0,0,0.61609 -19805,5112:459,-129,-15,0,0,0.614387 -19806,5112:458,-128,-15,0,0,0.615117 -19807,5112:457,-127,-15,0,0,0.610412 -19808,5112:456,-126,-15,0,0,0.612658 -19809,5112:455,-125,-15,0,0,0.609043 -19810,5112:354,-124,-15,0,0,0.610901 -19811,5112:353,-123,-15,0,0,0.610241 -19812,5112:352,-122,-15,0,0,0.60941 -19813,5112:351,-121,-15,0,0,0.610876 -19814,5112:350,-120,-15,0,0,0.609361 -19815,5111:459,-119,-15,0,0,0.605883 -19816,5111:458,-118,-15,0,0,0.602369 -19817,5111:457,-117,-15,0,0,0.59919 -19818,5111:456,-116,-15,0,0,0.594369 -19819,5111:455,-115,-15,0,0,0.58953 -19820,5111:354,-114,-15,0,0,0.585347 -19821,5111:353,-113,-15,0,0,0.579123 -19822,5111:352,-112,-15,0,0,0.572147 -19823,5111:351,-111,-15,0,0,0.566983 -19824,5111:350,-110,-15,0,0,0.559958 -19825,5110:459,-109,-15,0,0,0.554609 -19826,5110:458,-108,-15,0,0,0.547645 -19827,5110:457,-107,-15,0,0,0.541121 -19828,5110:456,-106,-15,0,0,0.531233 -19829,5110:455,-105,-15,0,0,0.520962 -19830,5110:354,-104,-15,0,0,0.515036 -19831,5110:353,-103,-15,0,0,0.50908 -19832,5110:352,-102,-15,0,0,0.502172 -19833,5110:351,-101,-15,0,0,0.499193 -19834,5110:350,-100,-15,0,0,0.49444 -19835,5109:459,-99,-15,0,0,0.490075 -19836,5109:458,-98,-15,0,0,0.488149 -19837,5109:457,-97,-15,0,0,0.482734 -19838,5109:456,-96,-15,0,0,0.471355 -19839,5109:455,-95,-15,0,0,0.461689 -19840,5109:354,-94,-15,0,0,0.458601 -19841,5109:353,-93,-15,0,0,0.453046 -19842,5109:352,-92,-15,0,0,0.439843 -19843,5109:351,-91,-15,0,0,0.431507 -19844,5109:350,-90,-15,0,0,0.436176 -19845,5108:459,-89,-15,0,0,0.436757 -19846,5108:458,-88,-15,0,0,0.42675 -19847,5108:457,-87,-15,0,0,0.419928 -19848,5108:456,-86,-15,0,0,0.414756 -19849,5108:455,-85,-15,0,0,0.404965 -19850,5108:354,-84,-15,0,0,0.40143 -19851,5108:353,-83,-15,0,0,0.399802 -19852,5108:352,-82,-15,0,0,0.400146 -19853,5108:351,-81,-15,0,0,0.399185 -19854,5108:350,-80,-15,0,0,0.399407 -19855,5107:459,-79,-15,0,0,0.401479 -19856,5107:458,-78,-15,0,0,0.404866 -19857,5107:457,-77,-15,0,0,0.405931 -19858,5107:456,-76,-15,0,0,0.418127 -19859,5107:455,-75,-15,0,0,0.440324 -19860,5107:354,-74,-15,0,0,0.453631 -19861,5107:353,-73,-15,0,0,0.469845 -19862,5107:352,-72,-15,0,0,0.47407 -19863,5107:351,-71,-15,0,0,0.459494 -19864,5103:459,-39,-15,0,0,0.622823 -19865,5103:458,-38,-15,0,0,0.621906 -19866,5103:457,-37,-15,0,0,0.624197 -19867,5103:456,-36,-15,0,0,0.624704 -19868,5103:455,-35,-15,0,0,0.625281 -19869,5103:354,-34,-15,0,0,0.623209 -19870,5103:353,-33,-15,0,0,0.621204 -19871,5103:352,-32,-15,0,0,0.618638 -19872,5103:351,-31,-15,0,0,0.614533 -19873,5103:350,-30,-15,0,0,0.610364 -19874,5102:459,-29,-15,0,0,0.606496 -19875,5102:458,-28,-15,0,0,0.599215 -19876,5102:457,-27,-15,0,0,0.586867 -19877,5102:456,-26,-15,0,0,0.580175 -19878,5102:455,-25,-15,0,0,0.579074 -19879,5102:354,-24,-15,0,0,0.5798 -19880,5102:353,-23,-15,0,0,0.577545 -19881,5102:352,-22,-15,0,0,0.573605 -19882,5102:351,-21,-15,0,0,0.570335 -19883,5102:350,-20,-15,0,0,0.566907 -19884,5101:459,-19,-15,0,0,0.565393 -19885,5101:458,-18,-15,0,0,0.561223 -19886,5101:457,-17,-15,0,0,0.556309 -19887,5101:456,-16,-15,0,0,0.550037 -19888,5101:455,-15,-15,0,0,0.542754 -19889,5101:354,-14,-15,0,0,0.536756 -19890,5101:353,-13,-15,0,0,0.530645 -19891,5101:352,-12,-15,0,0,0.524217 -19892,5101:351,-11,-15,0,0,0.521372 -19893,5101:350,-10,-15,0,0,0.515062 -19894,5100:459,-9,-15,0,0,0.509645 -19895,5100:458,-8,-15,0,0,0.502994 -19896,5100:457,-7,-15,0,0,0.498139 -19897,5100:456,-6,-15,0,0,0.493362 -19898,5100:455,-5,-15,0,0,0.488612 -19899,5100:354,-4,-15,0,0,0.484505 -19900,5100:353,-3,-15,0,0,0.482093 -19901,5100:352,-2,-15,0,0,0.47899 -19902,5100:351,-1,-15,0,0,0.477324 -19903,3100:351,0,-15,0,0,0.476324 -19904,3100:351,1,-15,0,0,0.473787 -19905,3100:352,2,-15,0,0,0.471815 -19906,3100:353,3,-15,0,0,0.470971 -19907,3100:354,4,-15,0,0,0.470101 -19908,3100:455,5,-15,0,0,0.468897 -19909,3100:456,6,-15,0,0,0.469512 -19910,3100:457,7,-15,0,0,0.468284 -19911,3100:458,8,-15,0,0,0.469153 -19912,3100:459,9,-15,0,0,0.474044 -19913,3101:350,10,-15,0,0,0.480093 -19914,3101:351,11,-15,0,0,0.478657 -19915,3101:352,12,-15,0,0,0.43706 -19916,3103:456,36,-15,0,0,0.659694 -19917,3103:457,37,-15,0,0,0.644098 -19918,3103:458,38,-15,0,0,0.654973 -19919,3103:459,39,-15,0,0,0.647646 -19920,3104:350,40,-15,0,0,0.659209 -19921,3104:351,41,-15,0,0,0.665688 -19922,3104:352,42,-15,0,0,0.676775 -19923,3104:353,43,-15,0,0,0.68665 -19924,3104:354,44,-15,0,0,0.698029 -19925,3104:459,49,-15,0,0,0.632571 -19926,3105:350,50,-15,0,0,0.619268 -19927,3105:351,51,-15,0,0,0.613998 -19928,3105:352,52,-15,0,0,0.613535 -19929,3105:353,53,-15,0,0,0.612341 -19930,3105:354,54,-15,0,0,0.610852 -19931,3105:455,55,-15,0,0,0.61007 -19932,3105:456,56,-15,0,0,0.609508 -19933,3105:457,57,-15,0,0,0.608309 -19934,3105:458,58,-15,0,0,0.604311 -19935,3105:459,59,-15,0,0,0.601532 -19936,3106:350,60,-15,0,0,0.597511 -19937,3106:351,61,-15,0,0,0.599659 -19938,3106:352,62,-15,0,0,0.594444 -19939,3106:353,63,-15,0,0,0.591666 -19940,3106:354,64,-15,0,0,0.589082 -19941,3106:455,65,-15,0,0,0.585745 -19942,3106:456,66,-15,0,0,0.585446 -19943,3106:457,67,-15,0,0,0.584773 -19944,3106:458,68,-15,0,0,0.582726 -19945,3106:459,69,-15,0,0,0.575589 -19946,3107:350,70,-15,0,0,0.570259 -19947,3107:351,71,-15,0,0,0.579324 -19948,3107:352,72,-15,0,0,0.580626 -19949,3107:354,74,-15,0,0,0.573831 -19950,3107:455,75,-15,0,0,0.578072 -19951,3107:456,76,-15,0,0,0.572876 -19952,3107:457,77,-15,0,0,0.576392 -19953,3107:458,78,-15,0,0,0.574735 -19954,3107:459,79,-15,0,0,0.562361 -19955,3108:350,80,-15,0,0,0.574735 -19956,3108:351,81,-15,0,0,0.564813 -19957,3108:352,82,-15,0,0,0.562968 -19958,3108:353,83,-15,0,0,0.573454 -19959,3108:354,84,-15,0,0,0.577144 -19960,3108:455,85,-15,0,0,0.570864 -19961,3108:456,86,-15,0,0,0.565039 -19962,3108:457,87,-15,0,0,0.56716 -19963,3108:458,88,-15,0,0,0.566907 -19964,3108:459,89,-15,0,0,0.570838 -19965,3109:350,90,-15,0,0,0.560667 -19966,3109:351,91,-15,0,0,0.565949 -19967,3109:352,92,-15,0,0,0.561729 -19968,3109:353,93,-15,0,0,0.574434 -19969,3109:354,94,-15,0,0,0.549629 -19970,3109:455,95,-15,0,0,0.558058 -19971,3109:456,96,-15,0,0,0.550646 -19972,3109:457,97,-15,0,0,0.559071 -19973,3109:458,98,-15,0,0,0.553949 -19974,3109:459,99,-15,0,0,0.553898 -19975,3110:350,100,-15,0,0,0.557019 -19976,3110:351,101,-15,0,0,0.542575 -19977,3110:352,102,-15,0,0,0.539412 -19978,3110:353,103,-15,0,0,0.547568 -19979,3110:354,104,-15,0,0,0.561805 -19980,3110:455,105,-15,0,0,0.570335 -19981,3110:456,106,-15,0,0,0.561704 -19982,3110:457,107,-15,0,0,0.563246 -19983,3110:458,108,-15,0,0,0.566201 -19984,3110:459,109,-15,0,0,0.572322 -19985,3111:350,110,-15,0,0,0.589878 -19986,3111:351,111,-15,0,0,0.596176 -19987,3111:352,112,-15,0,0,0.611389 -19988,3111:353,113,-15,0,0,0.614752 -19989,3111:354,114,-15,0,0,0.612268 -19990,3111:455,115,-15,0,0,0.622292 -19991,3111:456,116,-15,0,0,0.62819 -19992,3111:457,117,-15,0,0,0.637381 -19993,3111:458,118,-15,0,0,0.645933 -19994,3111:459,119,-15,0,0,0.649543 -19995,3112:350,120,-15,0,0,0.650594 -19996,3112:351,121,-15,0,0,0.653508 -19997,3114:457,147,-15,0,0,0.64032 -19998,3114:458,148,-15,0,0,0.622847 -19999,3114:459,149,-15,0,0,0.623354 -20000,3115:350,150,-15,0,0,0.618032 -20001,3115:351,151,-15,0,0,0.60264 -20002,3115:352,152,-15,0,0,0.606912 -20003,3115:353,153,-15,0,0,0.611951 -20004,3115:354,154,-15,0,0,0.608945 -20005,3115:455,155,-15,0,0,0.605073 -20006,3115:456,156,-15,0,0,0.604581 -20007,3115:457,157,-15,0,0,0.606472 -20008,3115:458,158,-15,0,0,0.602295 -20009,3115:459,159,-15,0,0,0.604262 -20010,3116:350,160,-15,0,0,0.603426 -20011,3116:351,161,-15,0,0,0.598055 -20012,3116:352,162,-15,0,0,0.601039 -20013,3116:353,163,-15,0,0,0.594518 -20014,3116:354,164,-15,0,0,0.591046 -20015,3116:455,165,-15,0,0,0.589579 -20016,3116:456,166,-15,0,0,0.589455 -20017,3116:457,167,-15,0,0,0.591219 -20018,3116:458,168,-15,0,0,0.584673 -20019,3116:459,169,-15,0,0,0.586768 -20020,3117:350,170,-15,0,0,0.584823 -20021,3117:351,171,-15,0,0,0.591666 -20022,3117:352,172,-15,0,0,0.588211 -20023,3117:353,173,-15,0,0,0.58045 -20024,3117:354,174,-15,0,0,0.582776 -20025,3117:455,175,-15,0,0,0.587291 -20026,3117:456,176,-15,0,0,0.588958 -20027,3117:457,177,-15,0,0,0.590251 -20028,3117:458,178,-15,0,0,0.585895 -20029,3117:459,179,-15,0,0,0.584149 -20030,3118:350,180,-15,0,0,0.576467 -20031,5118:140,-180,-14,0,0,0.594493 -20032,5117:249,-179,-14,0,0,0.593502 -20033,5117:248,-178,-14,0,0,0.595533 -20034,5117:247,-177,-14,0,0,0.601803 -20035,5117:246,-176,-14,0,0,0.598993 -20036,5117:245,-175,-14,0,0,0.602812 -20037,5117:144,-174,-14,0,0,0.600645 -20038,5117:143,-173,-14,0,0,0.601729 -20039,5117:142,-172,-14,0,0,0.605736 -20040,5117:141,-171,-14,0,0,0.609165 -20041,5117:140,-170,-14,0,0,0.612731 -20042,5116:249,-169,-14,0,0,0.607966 -20043,5116:248,-168,-14,0,0,0.607942 -20044,5116:247,-167,-14,0,0,0.611414 -20045,5116:246,-166,-14,0,0,0.616527 -20046,5116:245,-165,-14,0,0,0.616017 -20047,5116:144,-164,-14,0,0,0.622413 -20048,5116:143,-163,-14,0,0,0.620914 -20049,5116:142,-162,-14,0,0,0.621591 -20050,5116:141,-161,-14,0,0,0.622654 -20051,5116:140,-160,-14,0,0,0.623981 -20052,5115:249,-159,-14,0,0,0.629293 -20053,5115:248,-158,-14,0,0,0.633549 -20054,5115:247,-157,-14,0,0,0.632594 -20055,5115:246,-156,-14,0,0,0.635098 -20056,5115:245,-155,-14,0,0,0.640652 -20057,5115:144,-154,-14,0,0,0.64332 -20058,5115:143,-153,-14,0,0,0.646919 -20059,5115:142,-152,-14,0,0,0.64713 -20060,5115:141,-151,-14,0,0,0.645274 -20061,5115:140,-150,-14,0,0,0.646708 -20062,5114:249,-149,-14,0,0,0.642447 -20063,5114:248,-148,-14,0,0,0.647505 -20064,5114:247,-147,-14,0,0,0.648654 -20065,5114:246,-146,-14,0,0,0.647575 -20066,5114:245,-145,-14,0,0,0.645228 -20067,5114:144,-144,-14,0,0,0.644874 -20068,5114:143,-143,-14,0,0,0.643202 -20069,5114:142,-142,-14,0,0,0.639776 -20070,5114:141,-141,-14,0,0,0.640604 -20071,5114:140,-140,-14,0,0,0.639586 -20072,5113:249,-139,-14,0,0,0.637998 -20073,5113:248,-138,-14,0,0,0.637975 -20074,5113:247,-137,-14,0,0,0.63897 -20075,5113:246,-136,-14,0,0,0.638212 -20076,5113:245,-135,-14,0,0,0.636455 -20077,5113:144,-134,-14,0,0,0.634479 -20078,5113:143,-133,-14,0,0,0.634408 -20079,5113:142,-132,-14,0,0,0.636074 -20080,5113:141,-131,-14,0,0,0.63655 -20081,5113:140,-130,-14,0,0,0.635193 -20082,5112:249,-129,-14,0,0,0.631113 -20083,5112:248,-128,-14,0,0,0.629868 -20084,5112:247,-127,-14,0,0,0.627494 -20085,5112:246,-126,-14,0,0,0.628045 -20086,5112:245,-125,-14,0,0,0.623715 -20087,5112:144,-124,-14,0,0,0.62147 -20088,5112:143,-123,-14,0,0,0.623571 -20089,5112:142,-122,-14,0,0,0.618711 -20090,5112:141,-121,-14,0,0,0.616989 -20091,5112:140,-120,-14,0,0,0.614631 -20092,5111:249,-119,-14,0,0,0.611462 -20093,5111:248,-118,-14,0,0,0.605122 -20094,5111:247,-117,-14,0,0,0.599757 -20095,5111:246,-116,-14,0,0,0.592559 -20096,5111:245,-115,-14,0,0,0.587714 -20097,5111:144,-114,-14,0,0,0.582176 -20098,5111:143,-113,-14,0,0,0.575288 -20099,5111:142,-112,-14,0,0,0.569151 -20100,5111:141,-111,-14,0,0,0.563347 -20101,5111:140,-110,-14,0,0,0.556309 -20102,5110:249,-109,-14,0,0,0.551587 -20103,5110:248,-108,-14,0,0,0.546779 -20104,5110:247,-107,-14,0,0,0.54209 -20105,5110:246,-106,-14,0,0,0.536372 -20106,5110:245,-105,-14,0,0,0.529007 -20107,5110:144,-104,-14,0,0,0.516781 -20108,5110:143,-103,-14,0,0,0.507206 -20109,5110:142,-102,-14,0,0,0.499089 -20110,5110:141,-101,-14,0,0,0.495339 -20111,5110:140,-100,-14,0,0,0.490357 -20112,5109:249,-99,-14,0,0,0.48235 -20113,5109:248,-98,-14,0,0,0.477349 -20114,5109:247,-97,-14,0,0,0.47535 -20115,5109:246,-96,-14,0,0,0.470458 -20116,5109:245,-95,-14,0,0,0.461128 -20117,5109:144,-94,-14,0,0,0.452179 -20118,5109:143,-93,-14,0,0,0.446308 -20119,5109:142,-92,-14,0,0,0.43959 -20120,5109:141,-91,-14,0,0,0.429668 -20121,5109:140,-90,-14,0,0,0.42464 -20122,5108:249,-89,-14,0,0,0.423034 -20123,5108:248,-88,-14,0,0,0.418927 -20124,5108:247,-87,-14,0,0,0.413186 -20125,5108:246,-86,-14,0,0,0.411692 -20126,5108:245,-85,-14,0,0,0.40727 -20127,5108:144,-84,-14,0,0,0.403184 -20128,5108:143,-83,-14,0,0,0.397707 -20129,5108:142,-82,-14,0,0,0.397585 -20130,5108:141,-81,-14,0,0,0.398693 -20131,5108:140,-80,-14,0,0,0.40442 -20132,5107:249,-79,-14,0,0,0.409976 -20133,5107:248,-78,-14,0,0,0.419027 -20134,5107:247,-77,-14,0,0,0.4267 -20135,5107:246,-76,-14,0,0,0.438502 -20136,5107:245,-75,-14,0,0,0.449788 -20137,5107:144,-74,-14,0,0,0.452587 -20138,5107:143,-73,-14,0,0,0.458754 -20139,5107:142,-72,-14,0,0,0.459698 -20140,5103:249,-39,-14,0,0,0.597141 -20141,5103:248,-38,-14,0,0,0.626532 -20142,5103:247,-37,-14,0,0,0.623088 -20143,5103:246,-36,-14,0,0,0.623402 -20144,5103:245,-35,-14,0,0,0.622581 -20145,5103:144,-34,-14,0,0,0.619849 -20146,5103:143,-33,-14,0,0,0.61626 -20147,5103:142,-32,-14,0,0,0.61256 -20148,5103:141,-31,-14,0,0,0.607574 -20149,5103:140,-30,-14,0,0,0.603328 -20150,5102:249,-29,-14,0,0,0.599387 -20151,5102:248,-28,-14,0,0,0.595186 -20152,5102:247,-27,-14,0,0,0.589754 -20153,5102:246,-26,-14,0,0,0.5799 -20154,5102:245,-25,-14,0,0,0.577119 -20155,5102:144,-24,-14,0,0,0.57456 -20156,5102:143,-23,-14,0,0,0.572574 -20157,5102:142,-22,-14,0,0,0.569454 -20158,5102:141,-21,-14,0,0,0.56514 -20159,5102:140,-20,-14,0,0,0.560768 -20160,5101:249,-19,-14,0,0,0.556004 -20161,5101:248,-18,-14,0,0,0.549298 -20162,5101:247,-17,-14,0,0,0.542422 -20163,5101:246,-16,-14,0,0,0.539846 -20164,5101:245,-15,-14,0,0,0.535912 -20165,5101:144,-14,-14,0,0,0.53443 -20166,5101:143,-13,-14,0,0,0.52939 -20167,5101:142,-12,-14,0,0,0.521782 -20168,5101:141,-11,-14,0,0,0.516499 -20169,5101:140,-10,-14,0,0,0.511443 -20170,5100:249,-9,-14,0,0,0.506153 -20171,5100:248,-8,-14,0,0,0.500888 -20172,5100:247,-7,-14,0,0,0.495622 -20173,5100:246,-6,-14,0,0,0.490922 -20174,5100:245,-5,-14,0,0,0.48756 -20175,5100:144,-4,-14,0,0,0.485763 -20176,5100:143,-3,-14,0,0,0.484145 -20177,5100:142,-2,-14,0,0,0.480939 -20178,5100:141,-1,-14,0,0,0.481042 -20179,3100:141,0,-14,0,0,0.479375 -20180,3100:141,1,-14,0,0,0.477221 -20181,3100:142,2,-14,0,0,0.475324 -20182,3100:143,3,-14,0,0,0.474736 -20183,3100:144,4,-14,0,0,0.474736 -20184,3100:245,5,-14,0,0,0.475735 -20185,3100:246,6,-14,0,0,0.4743 -20186,3100:247,7,-14,0,0,0.48235 -20187,3100:248,8,-14,0,0,0.489331 -20188,3100:249,9,-14,0,0,0.507334 -20189,3101:140,10,-14,0,0,0.522859 -20190,3101:141,11,-14,0,0,0.487867 -20191,3103:248,38,-14,0,0,0.639184 -20192,3103:249,39,-14,0,0,0.669131 -20193,3104:140,40,-14,0,0,0.666967 -20194,3104:141,41,-14,0,0,0.669381 -20195,3104:142,42,-14,0,0,0.678928 -20196,3104:143,43,-14,0,0,0.689384 -20197,3105:140,50,-14,0,0,0.631806 -20198,3105:141,51,-14,0,0,0.624246 -20199,3105:142,52,-14,0,0,0.616624 -20200,3105:143,53,-14,0,0,0.613657 -20201,3105:144,54,-14,0,0,0.612268 -20202,3105:245,55,-14,0,0,0.61278 -20203,3105:246,56,-14,0,0,0.614899 -20204,3105:247,57,-14,0,0,0.617474 -20205,3105:248,58,-14,0,0,0.613754 -20206,3105:249,59,-14,0,0,0.60941 -20207,3106:140,60,-14,0,0,0.608799 -20208,3106:141,61,-14,0,0,0.606153 -20209,3106:142,62,-14,0,0,0.602812 -20210,3106:143,63,-14,0,0,0.601335 -20211,3106:144,64,-14,0,0,0.599412 -20212,3106:245,65,-14,0,0,0.596843 -20213,3106:246,66,-14,0,0,0.596572 -20214,3106:247,67,-14,0,0,0.595136 -20215,3106:248,68,-14,0,0,0.594741 -20216,3106:249,69,-14,0,0,0.59422 -20217,3107:140,70,-14,0,0,0.594716 -20218,3107:141,71,-14,0,0,0.59427 -20219,3107:142,72,-14,0,0,0.59246 -20220,3107:144,74,-14,0,0,0.588261 -20221,3107:245,75,-14,0,0,0.591815 -20222,3107:246,76,-14,0,0,0.589032 -20223,3107:247,77,-14,0,0,0.587962 -20224,3107:248,78,-14,0,0,0.585571 -20225,3107:249,79,-14,0,0,0.590846 -20226,3108:140,80,-14,0,0,0.596547 -20227,3108:141,81,-14,0,0,0.59365 -20228,3108:142,82,-14,0,0,0.589232 -20229,3108:143,83,-14,0,0,0.585596 -20230,3108:144,84,-14,0,0,0.587863 -20231,3108:245,85,-14,0,0,0.594394 -20232,3108:246,86,-14,0,0,0.596176 -20233,3108:247,87,-14,0,0,0.586219 -20234,3108:248,88,-14,0,0,0.586269 -20235,3108:249,89,-14,0,0,0.588385 -20236,3109:140,90,-14,0,0,0.578197 -20237,3109:141,91,-14,0,0,0.570738 -20238,3109:142,92,-14,0,0,0.570335 -20239,3109:143,93,-14,0,0,0.582051 -20240,3109:144,94,-14,0,0,0.569075 -20241,3109:245,95,-14,0,0,0.558236 -20242,3109:246,96,-14,0,0,0.562665 -20243,3109:247,97,-14,0,0,0.575388 -20244,3109:248,98,-14,0,0,0.568798 -20245,3109:249,99,-14,0,0,0.566806 -20246,3110:140,100,-14,0,0,0.572649 -20247,3110:141,101,-14,0,0,0.572298 -20248,3110:142,102,-14,0,0,0.566781 -20249,3110:143,103,-14,0,0,0.565318 -20250,3110:144,104,-14,0,0,0.571014 -20251,3110:245,105,-14,0,0,0.577094 -20252,3110:246,106,-14,0,0,0.584124 -20253,3110:247,107,-14,0,0,0.587141 -20254,3110:248,108,-14,0,0,0.597684 -20255,3110:249,109,-14,0,0,0.598302 -20256,3111:140,110,-14,0,0,0.610559 -20257,3111:141,111,-14,0,0,0.607697 -20258,3111:142,112,-14,0,0,0.612219 -20259,3111:143,113,-14,0,0,0.620358 -20260,3111:144,114,-14,0,0,0.623715 -20261,3111:245,115,-14,0,0,0.632809 -20262,3111:246,116,-14,0,0,0.641597 -20263,3111:247,117,-14,0,0,0.647412 -20264,3111:248,118,-14,0,0,0.651715 -20265,3111:249,119,-14,0,0,0.657614 -20266,3112:140,120,-14,0,0,0.656341 -20267,3112:141,121,-14,0,0,0.667058 -20268,3112:142,122,-14,0,0,0.670653 -20269,3114:140,140,-14,0,0,0.714355 -20270,3114:141,141,-14,0,0,0.712569 -20271,3114:247,147,-14,0,0,0.635741 -20272,3114:248,148,-14,0,0,0.629101 -20273,3114:249,149,-14,0,0,0.617887 -20274,3115:140,150,-14,0,0,0.624053 -20275,3115:141,151,-14,0,0,0.622847 -20276,3115:142,152,-14,0,0,0.624149 -20277,3115:143,153,-14,0,0,0.617256 -20278,3115:144,154,-14,0,0,0.625185 -20279,3115:245,155,-14,0,0,0.623498 -20280,3115:246,156,-14,0,0,0.616576 -20281,3115:247,157,-14,0,0,0.615117 -20282,3115:248,158,-14,0,0,0.616964 -20283,3115:249,159,-14,0,0,0.61029 -20284,3116:140,160,-14,0,0,0.613316 -20285,3116:141,161,-14,0,0,0.609874 -20286,3116:142,162,-14,0,0,0.605883 -20287,3116:143,163,-14,0,0,0.605809 -20288,3116:144,164,-14,0,0,0.606275 -20289,3116:245,165,-14,0,0,0.605613 -20290,3116:246,166,-14,0,0,0.60826 -20291,3116:247,167,-14,0,0,0.604508 -20292,3116:248,168,-14,0,0,0.599066 -20293,3116:249,169,-14,0,0,0.595582 -20294,3117:140,170,-14,0,0,0.60025 -20295,3117:141,171,-14,0,0,0.598993 -20296,3117:142,172,-14,0,0,0.601483 -20297,3117:143,173,-14,0,0,0.603033 -20298,3117:144,174,-14,0,0,0.604999 -20299,3117:245,175,-14,0,0,0.605515 -20300,3117:246,176,-14,0,0,0.607182 -20301,3117:247,177,-14,0,0,0.60985 -20302,3117:248,178,-14,0,0,0.606422 -20303,3117:249,179,-14,0,0,0.593056 -20304,3118:140,180,-14,0,0,0.594493 -20305,5118:130,-180,-13,0,0,0.611536 -20306,5117:239,-179,-13,0,0,0.614192 -20307,5117:238,-178,-13,0,0,0.614582 -20308,5117:237,-177,-13,0,0,0.615117 -20309,5117:236,-176,-13,0,0,0.614777 -20310,5117:235,-175,-13,0,0,0.616892 -20311,5117:134,-174,-13,0,0,0.622702 -20312,5117:133,-173,-13,0,0,0.62622 -20313,5117:132,-172,-13,0,0,0.626052 -20314,5117:131,-171,-13,0,0,0.627278 -20315,5117:130,-170,-13,0,0,0.630418 -20316,5116:239,-169,-13,0,0,0.631639 -20317,5116:238,-168,-13,0,0,0.6297 -20318,5116:237,-167,-13,0,0,0.630825 -20319,5116:236,-166,-13,0,0,0.635217 -20320,5116:235,-165,-13,0,0,0.635979 -20321,5116:134,-164,-13,0,0,0.639634 -20322,5116:133,-163,-13,0,0,0.639752 -20323,5116:132,-162,-13,0,0,0.641952 -20324,5116:131,-161,-13,0,0,0.646426 -20325,5116:130,-160,-13,0,0,0.647412 -20326,5115:239,-159,-13,0,0,0.646073 -20327,5115:238,-158,-13,0,0,0.648817 -20328,5115:237,-157,-13,0,0,0.646144 -20329,5115:236,-156,-13,0,0,0.646966 -20330,5115:235,-155,-13,0,0,0.652764 -20331,5115:134,-154,-13,0,0,0.653531 -20332,5115:133,-153,-13,0,0,0.655367 -20333,5115:132,-152,-13,0,0,0.655413 -20334,5115:131,-151,-13,0,0,0.65699 -20335,5115:130,-150,-13,0,0,0.65884 -20336,5114:239,-149,-13,0,0,0.659024 -20337,5114:238,-148,-13,0,0,0.656943 -20338,5114:237,-147,-13,0,0,0.653508 -20339,5114:236,-146,-13,0,0,0.65253 -20340,5114:235,-145,-13,0,0,0.651575 -20341,5114:134,-144,-13,0,0,0.650945 -20342,5114:133,-143,-13,0,0,0.649379 -20343,5114:132,-142,-13,0,0,0.647904 -20344,5114:131,-141,-13,0,0,0.650104 -20345,5114:130,-140,-13,0,0,0.649285 -20346,5113:239,-139,-13,0,0,0.647786 -20347,5113:238,-138,-13,0,0,0.647575 -20348,5113:237,-137,-13,0,0,0.647013 -20349,5113:236,-136,-13,0,0,0.644804 -20350,5113:235,-135,-13,0,0,0.643273 -20351,5113:134,-134,-13,0,0,0.644686 -20352,5113:133,-133,-13,0,0,0.643037 -20353,5113:132,-132,-13,0,0,0.642282 -20354,5113:131,-131,-13,0,0,0.641881 -20355,5113:130,-130,-13,0,0,0.639729 -20356,5112:239,-129,-13,0,0,0.637286 -20357,5112:238,-128,-13,0,0,0.635859 -20358,5112:237,-127,-13,0,0,0.634813 -20359,5112:236,-126,-13,0,0,0.6314 -20360,5112:235,-125,-13,0,0,0.627205 -20361,5112:134,-124,-13,0,0,0.622364 -20362,5112:133,-123,-13,0,0,0.624222 -20363,5112:132,-122,-13,0,0,0.623378 -20364,5112:131,-121,-13,0,0,0.616867 -20365,5112:130,-120,-13,0,0,0.610901 -20366,5111:239,-119,-13,0,0,0.60603 -20367,5111:238,-118,-13,0,0,0.599609 -20368,5111:237,-117,-13,0,0,0.595607 -20369,5111:236,-116,-13,0,0,0.589132 -20370,5111:235,-115,-13,0,0,0.586618 -20371,5111:134,-114,-13,0,0,0.582351 -20372,5111:133,-113,-13,0,0,0.573479 -20373,5111:132,-112,-13,0,0,0.565848 -20374,5111:131,-111,-13,0,0,0.561147 -20375,5111:130,-110,-13,0,0,0.557703 -20376,5110:239,-109,-13,0,0,0.547568 -20377,5110:238,-108,-13,0,0,0.540126 -20378,5110:237,-107,-13,0,0,0.53397 -20379,5110:236,-106,-13,0,0,0.526933 -20380,5110:235,-105,-13,0,0,0.524832 -20381,5110:134,-104,-13,0,0,0.519423 -20382,5110:133,-103,-13,0,0,0.51057 -20383,5110:132,-102,-13,0,0,0.500143 -20384,5110:131,-101,-13,0,0,0.495083 -20385,5110:130,-100,-13,0,0,0.488175 -20386,5109:239,-99,-13,0,0,0.48058 -20387,5109:238,-98,-13,0,0,0.475376 -20388,5109:237,-97,-13,0,0,0.470458 -20389,5109:236,-96,-13,0,0,0.464397 -20390,5109:235,-95,-13,0,0,0.458295 -20391,5109:134,-94,-13,0,0,0.451747 -20392,5109:133,-93,-13,0,0,0.446029 -20393,5109:132,-92,-13,0,0,0.442553 -20394,5109:131,-91,-13,0,0,0.439691 -20395,5109:130,-90,-13,0,0,0.435569 -20396,5108:239,-89,-13,0,0,0.430348 -20397,5108:238,-88,-13,0,0,0.423386 -20398,5108:237,-87,-13,0,0,0.413709 -20399,5108:236,-86,-13,0,0,0.405882 -20400,5108:235,-85,-13,0,0,0.40353 -20401,5108:134,-84,-13,0,0,0.402467 -20402,5108:133,-83,-13,0,0,0.40222 -20403,5108:132,-82,-13,0,0,0.402566 -20404,5108:131,-81,-13,0,0,0.41209 -20405,5108:130,-80,-13,0,0,0.418427 -20406,5107:239,-79,-13,0,0,0.421731 -20407,5107:238,-78,-13,0,0,0.426951 -20408,5107:237,-77,-13,0,0,0.436226 -20409,5107:236,-76,-13,0,0,0.44154 -20410,5107:235,-75,-13,0,0,0.440628 -20411,5103:239,-39,-13,0,0,0.588709 -20412,5103:238,-38,-13,0,0,0.623812 -20413,5103:237,-37,-13,0,0,0.626075 -20414,5103:236,-36,-13,0,0,0.623498 -20415,5103:235,-35,-13,0,0,0.621083 -20416,5103:134,-34,-13,0,0,0.617499 -20417,5103:133,-33,-13,0,0,0.613754 -20418,5103:132,-32,-13,0,0,0.609141 -20419,5103:131,-31,-13,0,0,0.603942 -20420,5103:130,-30,-13,0,0,0.599338 -20421,5102:239,-29,-13,0,0,0.595384 -20422,5102:238,-28,-13,0,0,0.589878 -20423,5102:237,-27,-13,0,0,0.5837 -20424,5102:236,-26,-13,0,0,0.576618 -20425,5102:235,-25,-13,0,0,0.574459 -20426,5102:134,-24,-13,0,0,0.571291 -20427,5102:133,-23,-13,0,0,0.567815 -20428,5102:132,-22,-13,0,0,0.564307 -20429,5102:131,-21,-13,0,0,0.559882 -20430,5102:130,-20,-13,0,0,0.555243 -20431,5101:239,-19,-13,0,0,0.551053 -20432,5101:238,-18,-13,0,0,0.546575 -20433,5101:237,-17,-13,0,0,0.542575 -20434,5101:236,-16,-13,0,0,0.539233 -20435,5101:235,-15,-13,0,0,0.534891 -20436,5101:134,-14,-13,0,0,0.527035 -20437,5101:133,-13,-13,0,0,0.522705 -20438,5101:132,-12,-13,0,0,0.520449 -20439,5101:131,-11,-13,0,0,0.516499 -20440,5101:130,-10,-13,0,0,0.511057 -20441,5100:239,-9,-13,0,0,0.504458 -20442,5100:238,-8,-13,0,0,0.499038 -20443,5100:237,-7,-13,0,0,0.495596 -20444,5100:236,-6,-13,0,0,0.493798 -20445,5100:235,-5,-13,0,0,0.490589 -20446,5100:134,-4,-13,0,0,0.487713 -20447,5100:133,-3,-13,0,0,0.48684 -20448,5100:132,-2,-13,0,0,0.485686 -20449,5100:131,-1,-13,0,0,0.484197 -20450,3100:131,0,-13,0,0,0.482145 -20451,3100:131,1,-13,0,0,0.481606 -20452,3100:132,2,-13,0,0,0.484659 -20453,3100:133,3,-13,0,0,0.484659 -20454,3100:134,4,-13,0,0,0.484607 -20455,3100:235,5,-13,0,0,0.483992 -20456,3100:236,6,-13,0,0,0.485352 -20457,3100:237,7,-13,0,0,0.487611 -20458,3100:238,8,-13,0,0,0.499372 -20459,3100:239,9,-13,0,0,0.511982 -20460,3101:130,10,-13,0,0,0.538799 -20461,3101:131,11,-13,0,0,0.5185 -20462,3104:130,40,-13,0,0,0.665322 -20463,3104:131,41,-13,0,0,0.675672 -20464,3104:132,42,-13,0,0,0.681832 -20465,3104:133,43,-13,0,0,0.686252 -20466,3104:134,44,-13,0,0,0.695924 -20467,3105:130,50,-13,0,0,0.634932 -20468,3105:131,51,-13,0,0,0.63226 -20469,3105:132,52,-13,0,0,0.626316 -20470,3105:133,53,-13,0,0,0.621132 -20471,3105:134,54,-13,0,0,0.620431 -20472,3105:235,55,-13,0,0,0.622195 -20473,3105:236,56,-13,0,0,0.622267 -20474,3105:237,57,-13,0,0,0.624487 -20475,3105:238,58,-13,0,0,0.623619 -20476,3105:239,59,-13,0,0,0.620696 -20477,3106:130,60,-13,0,0,0.617717 -20478,3106:131,61,-13,0,0,0.613925 -20479,3106:132,62,-13,0,0,0.611974 -20480,3106:133,63,-13,0,0,0.610949 -20481,3106:134,64,-13,0,0,0.610217 -20482,3106:235,65,-13,0,0,0.609826 -20483,3106:236,66,-13,0,0,0.609361 -20484,3106:237,67,-13,0,0,0.60919 -20485,3106:238,68,-13,0,0,0.608113 -20486,3106:239,69,-13,0,0,0.606716 -20487,3107:130,70,-13,0,0,0.60657 -20489,3107:132,72,-13,0,0,0.608897 -20490,3107:134,74,-13,0,0,0.615142 -20491,3107:235,75,-13,0,0,0.615531 -20492,3107:236,76,-13,0,0,0.614047 -20493,3107:237,77,-13,0,0,0.613876 -20494,3107:238,78,-13,0,0,0.614606 -20495,3107:239,79,-13,0,0,0.612731 -20496,3108:130,80,-13,0,0,0.614801 -20497,3108:131,81,-13,0,0,0.61334 -20498,3108:132,82,-13,0,0,0.610217 -20499,3108:133,83,-13,0,0,0.60522 -20500,3108:134,84,-13,0,0,0.608015 -20501,3108:235,85,-13,0,0,0.599066 -20502,3108:236,86,-13,0,0,0.599289 -20503,3108:237,87,-13,0,0,0.597832 -20504,3108:238,88,-13,0,0,0.595013 -20505,3108:239,89,-13,0,0,0.598968 -20506,3109:130,90,-13,0,0,0.593625 -20507,3109:131,91,-13,0,0,0.593378 -20508,3109:132,92,-13,0,0,0.590276 -20509,3109:133,93,-13,0,0,0.588784 -20510,3109:134,94,-13,0,0,0.578097 -20511,3109:235,95,-13,0,0,0.58315 -20512,3109:236,96,-13,0,0,0.582526 -20513,3109:237,97,-13,0,0,0.580701 -20514,3109:238,98,-13,0,0,0.584947 -20515,3109:239,99,-13,0,0,0.579149 -20516,3110:130,100,-13,0,0,0.582201 -20517,3110:131,101,-13,0,0,0.589405 -20518,3110:132,102,-13,0,0,0.591964 -20519,3110:133,103,-13,0,0,0.589803 -20520,3110:134,104,-13,0,0,0.594617 -20521,3110:235,105,-13,0,0,0.594444 -20522,3110:236,106,-13,0,0,0.592287 -20523,3110:237,107,-13,0,0,0.599437 -20524,3110:238,108,-13,0,0,0.616139 -20525,3110:239,109,-13,0,0,0.612926 -20526,3111:130,110,-13,0,0,0.617741 -20527,3111:131,111,-13,0,0,0.620019 -20528,3111:132,112,-13,0,0,0.627614 -20529,3111:133,113,-13,0,0,0.632977 -20530,3111:134,114,-13,0,0,0.642872 -20531,3111:235,115,-13,0,0,0.646191 -20532,3111:236,116,-13,0,0,0.643956 -20533,3111:237,117,-13,0,0,0.653392 -20534,3111:238,118,-13,0,0,0.663007 -20535,3111:239,119,-13,0,0,0.668153 -20536,3112:130,120,-13,0,0,0.666716 -20537,3112:131,121,-13,0,0,0.676392 -20538,3112:132,122,-13,0,0,0.678301 -20539,3112:133,123,-13,0,0,0.682167 -20540,3112:134,124,-13,0,0,0.707471 -20541,3113:238,138,-13,0,0,0.714355 -20542,3113:239,139,-13,0,0,0.712927 -20543,3114:130,140,-13,0,0,0.709339 -20544,3114:131,141,-13,0,0,0.702063 -20545,3114:236,146,-13,0,0,0.641172 -20546,3114:237,147,-13,0,0,0.635859 -20547,3114:238,148,-13,0,0,0.635074 -20548,3114:239,149,-13,0,0,0.636383 -20549,3115:130,150,-13,0,0,0.633191 -20550,3115:131,151,-13,0,0,0.631089 -20551,3115:132,152,-13,0,0,0.635955 -20552,3115:133,153,-13,0,0,0.633478 -20553,3115:134,154,-13,0,0,0.633788 -20554,3115:235,155,-13,0,0,0.631209 -20555,3115:236,156,-13,0,0,0.630395 -20556,3115:237,157,-13,0,0,0.629077 -20557,3115:238,158,-13,0,0,0.628478 -20558,3115:239,159,-13,0,0,0.622654 -20559,3116:130,160,-13,0,0,0.620334 -20560,3116:131,161,-13,0,0,0.619608 -20561,3116:132,162,-13,0,0,0.619365 -20562,3116:133,163,-13,0,0,0.618905 -20563,3116:134,164,-13,0,0,0.612341 -20564,3116:235,165,-13,0,0,0.617377 -20565,3116:236,166,-13,0,0,0.618953 -20566,3116:237,167,-13,0,0,0.612316 -20567,3116:238,168,-13,0,0,0.613876 -20568,3116:239,169,-13,0,0,0.618008 -20569,3117:130,170,-13,0,0,0.621446 -20570,3117:131,171,-13,0,0,0.621712 -20571,3117:132,172,-13,0,0,0.621906 -20572,3117:133,173,-13,0,0,0.621446 -20573,3117:134,174,-13,0,0,0.621397 -20574,3117:235,175,-13,0,0,0.621978 -20575,3117:236,176,-13,0,0,0.621808 -20576,3117:237,177,-13,0,0,0.620552 -20577,3117:238,178,-13,0,0,0.617474 -20578,3117:239,179,-13,0,0,0.615895 -20579,3118:130,180,-13,0,0,0.611536 -20580,5118:120,-180,-12,0,0,0.630227 -20581,5117:229,-179,-12,0,0,0.630371 -20582,5117:228,-178,-12,0,0,0.631973 -20583,5117:227,-177,-12,0,0,0.63505 -20584,5117:226,-176,-12,0,0,0.638093 -20585,5117:225,-175,-12,0,0,0.641597 -20586,5117:124,-174,-12,0,0,0.646261 -20587,5117:123,-173,-12,0,0,0.649122 -20588,5117:122,-172,-12,0,0,0.647412 -20589,5117:121,-171,-12,0,0,0.647599 -20590,5117:120,-170,-12,0,0,0.647669 -20591,5116:229,-169,-12,0,0,0.648771 -20592,5116:228,-168,-12,0,0,0.649589 -20593,5116:227,-167,-12,0,0,0.651248 -20594,5116:226,-166,-12,0,0,0.652624 -20595,5116:225,-165,-12,0,0,0.653043 -21246,5108:101,-81,-10,0,0,0.48117 -20596,5116:124,-164,-12,0,0,0.653834 -20597,5116:123,-163,-12,0,0,0.656943 -20598,5116:122,-162,-12,0,0,0.659901 -20599,5116:121,-161,-12,0,0,0.661214 -20600,5116:120,-160,-12,0,0,0.662571 -20601,5115:229,-159,-12,0,0,0.662663 -20602,5115:228,-158,-12,0,0,0.661882 -20603,5115:227,-157,-12,0,0,0.662456 -20604,5115:226,-156,-12,0,0,0.663489 -20605,5115:225,-155,-12,0,0,0.665047 -20606,5115:124,-154,-12,0,0,0.665161 -20607,5115:123,-153,-12,0,0,0.664177 -20608,5115:122,-152,-12,0,0,0.664314 -20609,5115:121,-151,-12,0,0,0.663718 -20610,5115:120,-150,-12,0,0,0.663191 -20611,5114:229,-149,-12,0,0,0.663282 -20612,5114:228,-148,-12,0,0,0.661789 -20613,5114:227,-147,-12,0,0,0.660178 -20614,5114:226,-146,-12,0,0,0.658308 -20615,5114:225,-145,-12,0,0,0.657013 -20616,5114:124,-144,-12,0,0,0.658285 -20617,5114:123,-143,-12,0,0,0.659324 -20618,5114:122,-142,-12,0,0,0.659532 -20619,5114:121,-141,-12,0,0,0.658447 -20620,5114:120,-140,-12,0,0,0.657684 -20621,5113:229,-139,-12,0,0,0.657453 -20622,5113:228,-138,-12,0,0,0.656272 -20623,5113:227,-137,-12,0,0,0.654392 -20624,5113:226,-136,-12,0,0,0.653438 -20625,5113:225,-135,-12,0,0,0.652414 -20626,5113:124,-134,-12,0,0,0.652368 -20627,5113:123,-133,-12,0,0,0.650314 -20628,5113:122,-132,-12,0,0,0.646708 -20629,5113:121,-131,-12,0,0,0.64471 -20630,5113:120,-130,-12,0,0,0.643131 -20631,5112:229,-129,-12,0,0,0.640959 -20632,5112:228,-128,-12,0,0,0.637975 -20633,5112:227,-127,-12,0,0,0.634979 -20634,5112:226,-126,-12,0,0,0.631519 -20635,5112:225,-125,-12,0,0,0.628694 -20636,5112:124,-124,-12,0,0,0.622847 -20637,5112:123,-123,-12,0,0,0.620019 -20638,5112:122,-122,-12,0,0,0.616624 -20639,5112:121,-121,-12,0,0,0.612146 -20640,5112:120,-120,-12,0,0,0.605196 -20641,5111:229,-119,-12,0,0,0.600719 -20642,5111:228,-118,-12,0,0,0.595434 -20643,5111:227,-117,-12,0,0,0.592485 -20644,5111:226,-116,-12,0,0,0.588385 -20645,5111:225,-115,-12,0,0,0.581776 -20646,5111:124,-114,-12,0,0,0.574283 -20647,5111:123,-113,-12,0,0,0.570889 -20648,5111:122,-112,-12,0,0,0.567412 -20649,5111:121,-111,-12,0,0,0.558311 -20650,5111:120,-110,-12,0,0,0.554102 -20651,5110:229,-109,-12,0,0,0.549274 -20652,5110:228,-108,-12,0,0,0.543799 -20653,5110:227,-107,-12,0,0,0.535325 -20654,5110:226,-106,-12,0,0,0.526241 -20655,5110:225,-105,-12,0,0,0.520449 -20656,5110:124,-104,-12,0,0,0.515857 -20657,5110:123,-103,-12,0,0,0.507591 -20658,5110:122,-102,-12,0,0,0.500656 -20659,5110:121,-101,-12,0,0,0.495776 -20660,5110:120,-100,-12,0,0,0.492592 -20661,5109:229,-99,-12,0,0,0.486353 -20662,5109:228,-98,-12,0,0,0.479016 -20663,5109:227,-97,-12,0,0,0.472379 -20664,5109:226,-96,-12,0,0,0.466084 -20665,5109:225,-95,-12,0,0,0.459392 -20666,5109:124,-94,-12,0,0,0.45493 -20667,5109:123,-93,-12,0,0,0.448721 -20668,5109:122,-92,-12,0,0,0.44344 -20669,5109:121,-91,-12,0,0,0.437085 -20670,5109:120,-90,-12,0,0,0.434079 -20671,5108:229,-89,-12,0,0,0.427328 -20672,5108:228,-88,-12,0,0,0.421956 -20673,5108:227,-87,-12,0,0,0.418477 -20674,5108:226,-86,-12,0,0,0.414557 -20675,5108:225,-85,-12,0,0,0.413261 -20676,5108:124,-84,-12,0,0,0.414482 -20677,5108:123,-83,-12,0,0,0.420403 -20678,5108:122,-82,-12,0,0,0.423736 -20679,5108:121,-81,-12,0,0,0.42997 -20680,5108:120,-80,-12,0,0,0.439615 -20681,5107:229,-79,-12,0,0,0.445039 -20682,5107:228,-78,-12,0,0,0.458014 -20683,5107:227,-77,-12,0,0,0.45073 -20684,5107:226,-76,-12,0,0,0.396158 -20685,5103:229,-39,-12,0,0,0.62205 -20686,5103:228,-38,-12,0,0,0.627806 -20687,5103:227,-37,-12,0,0,0.627541 -20688,5103:226,-36,-12,0,0,0.626532 -20689,5103:225,-35,-12,0,0,0.622895 -20690,5103:124,-34,-12,0,0,0.620043 -20691,5103:123,-33,-12,0,0,0.615847 -20692,5103:122,-32,-12,0,0,0.611511 -20693,5103:121,-31,-12,0,0,0.605809 -20694,5103:120,-30,-12,0,0,0.599091 -20695,5102:229,-29,-12,0,0,0.592758 -20696,5102:228,-28,-12,0,0,0.588261 -20697,5102:227,-27,-12,0,0,0.586743 -20698,5102:226,-26,-12,0,0,0.58025 -20699,5102:225,-25,-12,0,0,0.57584 -20700,5102:124,-24,-12,0,0,0.570838 -20701,5102:123,-23,-12,0,0,0.567563 -20702,5102:122,-22,-12,0,0,0.563499 -20703,5102:121,-21,-12,0,0,0.558995 -20704,5102:120,-20,-12,0,0,0.554888 -20705,5101:229,-19,-12,0,0,0.550341 -20706,5101:228,-18,-12,0,0,0.547441 -20707,5101:227,-17,-12,0,0,0.543263 -20708,5101:226,-16,-12,0,0,0.538007 -20709,5101:225,-15,-12,0,0,0.533766 -20710,5101:124,-14,-12,0,0,0.530286 -20711,5101:123,-13,-12,0,0,0.525729 -20712,5101:122,-12,-12,0,0,0.521295 -20713,5101:121,-11,-12,0,0,0.516448 -20714,5101:120,-10,-12,0,0,0.512058 -20715,5100:229,-9,-12,0,0,0.506872 -20716,5100:228,-8,-12,0,0,0.501324 -20717,5100:227,-7,-12,0,0,0.494647 -20718,5100:226,-6,-12,0,0,0.48969 -20719,5100:225,-5,-12,0,0,0.488945 -20720,5100:124,-4,-12,0,0,0.488869 -20721,5100:123,-3,-12,0,0,0.490486 -20722,5100:122,-2,-12,0,0,0.491976 -20723,5100:121,-1,-12,0,0,0.493619 -20724,3100:121,0,-12,0,0,0.494313 -20725,3100:121,1,-12,0,0,0.49647 -20726,3100:122,2,-12,0,0,0.493876 -20727,3100:123,3,-12,0,0,0.492104 -20728,3100:124,4,-12,0,0,0.493619 -20729,3100:225,5,-12,0,0,0.498113 -20730,3100:226,6,-12,0,0,0.504201 -20731,3100:227,7,-12,0,0,0.509619 -20732,3100:228,8,-12,0,0,0.513522 -20733,3100:229,9,-12,0,0,0.528674 -20734,3101:120,10,-12,0,0,0.557297 -20735,3101:121,11,-12,0,0,0.559249 -20736,3101:122,12,-12,0,0,0.488561 -20737,3104:121,41,-12,0,0,0.677874 -20738,3104:122,42,-12,0,0,0.684101 -20739,3104:123,43,-12,0,0,0.684701 -20740,3104:124,44,-12,0,0,0.682567 -20741,3104:225,45,-12,0,0,0.68123 -20742,3104:226,46,-12,0,0,0.683413 -20743,3104:227,47,-12,0,0,0.690922 -20744,3105:120,50,-12,0,0,0.636383 -20745,3105:121,51,-12,0,0,0.63343 -20746,3105:122,52,-12,0,0,0.633597 -20747,3105:123,53,-12,0,0,0.631639 -20748,3105:124,54,-12,0,0,0.632571 -20749,3105:225,55,-12,0,0,0.63331 -20750,3105:226,56,-12,0,0,0.633096 -20751,3105:227,57,-12,0,0,0.632547 -20752,3105:228,58,-12,0,0,0.631615 -20753,3105:229,59,-12,0,0,0.629653 -20754,3106:120,60,-12,0,0,0.624583 -20755,3106:121,61,-12,0,0,0.62333 -20756,3106:122,62,-12,0,0,0.624921 -20757,3106:123,63,-12,0,0,0.620745 -20758,3106:124,64,-12,0,0,0.620745 -20759,3106:225,65,-12,0,0,0.619777 -20760,3106:226,66,-12,0,0,0.621011 -20761,3106:227,67,-12,0,0,0.623305 -20762,3106:228,68,-12,0,0,0.623426 -20763,3106:229,69,-12,0,0,0.62147 -20764,3107:120,70,-12,0,0,0.619971 -20765,3107:121,71,-12,0,0,0.619075 -20766,3107:122,72,-12,0,0,0.618566 -20767,3107:124,74,-12,0,0,0.626845 -20768,3107:225,75,-12,0,0,0.634121 -20769,3107:226,76,-12,0,0,0.635764 -20770,3107:227,77,-12,0,0,0.63517 -20771,3107:228,78,-12,0,0,0.632451 -20772,3107:229,79,-12,0,0,0.628934 -20773,3108:120,80,-12,0,0,0.62795 -20774,3108:121,81,-12,0,0,0.625233 -20775,3108:122,82,-12,0,0,0.620914 -20776,3108:123,83,-12,0,0,0.618783 -20777,3108:124,84,-12,0,0,0.616818 -20778,3108:225,85,-12,0,0,0.613973 -20779,3108:226,86,-12,0,0,0.610852 -20780,3108:227,87,-12,0,0,0.607084 -20781,3108:228,88,-12,0,0,0.604361 -20782,3108:229,89,-12,0,0,0.604361 -20783,3109:120,90,-12,0,0,0.60468 -20784,3109:121,91,-12,0,0,0.605613 -20785,3109:122,92,-12,0,0,0.605588 -20786,3109:123,93,-12,0,0,0.604188 -20787,3109:124,94,-12,0,0,0.603156 -20788,3109:225,95,-12,0,0,0.601877 -20789,3109:226,96,-12,0,0,0.59479 -20790,3109:227,97,-12,0,0,0.592708 -20791,3109:228,98,-12,0,0,0.593006 -20792,3109:229,99,-12,0,0,0.601803 -20793,3110:120,100,-12,0,0,0.609948 -20794,3110:121,101,-12,0,0,0.617741 -20795,3110:122,102,-12,0,0,0.627374 -20796,3110:123,103,-12,0,0,0.63312 -20797,3110:124,104,-12,0,0,0.631089 -20798,3110:225,105,-12,0,0,0.619438 -20799,3110:226,106,-12,0,0,0.616211 -20800,3110:227,107,-12,0,0,0.620503 -20801,3110:228,108,-12,0,0,0.628861 -20802,3110:229,109,-12,0,0,0.637951 -20803,3111:120,110,-12,0,0,0.63788 -20804,3111:121,111,-12,0,0,0.638425 -20805,3111:122,112,-12,0,0,0.650151 -20806,3111:123,113,-12,0,0,0.662755 -20807,3111:124,114,-12,0,0,0.671651 -20808,3111:225,115,-12,0,0,0.670109 -20809,3111:226,116,-12,0,0,0.663374 -20810,3111:227,117,-12,0,0,0.665116 -20811,3111:228,118,-12,0,0,0.67113 -21247,5108:100,-80,-10,0,0,0.4843 -20812,3111:229,119,-12,0,0,0.678345 -20813,3112:120,120,-12,0,0,0.674613 -20814,3112:121,121,-12,0,0,0.677067 -20815,3112:122,122,-12,0,0,0.680561 -20816,3112:123,123,-12,0,0,0.686295 -20817,3112:124,124,-12,0,0,0.690022 -20818,3112:225,125,-12,0,0,0.702557 -20819,3112:229,129,-12,0,0,0.714355 -20820,3113:226,136,-12,0,0,0.714355 -20821,3113:227,137,-12,0,0,0.714355 -20822,3113:228,138,-12,0,0,0.702536 -20823,3113:229,139,-12,0,0,0.693876 -20824,3114:120,140,-12,0,0,0.69123 -20825,3114:121,141,-12,0,0,0.692631 -20826,3114:226,146,-12,0,0,0.639255 -20827,3114:227,147,-12,0,0,0.640013 -20828,3114:228,148,-12,0,0,0.642896 -20829,3114:229,149,-12,0,0,0.642848 -20830,3115:120,150,-12,0,0,0.645251 -20831,3115:121,151,-12,0,0,0.644639 -20832,3115:122,152,-12,0,0,0.643886 -20833,3115:123,153,-12,0,0,0.646379 -20834,3115:124,154,-12,0,0,0.647107 -20835,3115:225,155,-12,0,0,0.646073 -20836,3115:226,156,-12,0,0,0.643108 -20837,3115:227,157,-12,0,0,0.639208 -20838,3115:228,158,-12,0,0,0.635646 -20839,3115:229,159,-12,0,0,0.634384 -20840,3116:120,160,-12,0,0,0.633168 -20841,3116:121,161,-12,0,0,0.631878 -20842,3116:122,162,-12,0,0,0.631136 -20843,3116:123,163,-12,0,0,0.630945 -20844,3116:124,164,-12,0,0,0.632045 -20845,3116:225,165,-12,0,0,0.632762 -20846,3116:226,166,-12,0,0,0.631711 -20847,3116:227,167,-12,0,0,0.62333 -20848,3116:228,168,-12,0,0,0.629484 -20849,3116:229,169,-12,0,0,0.634384 -20850,3117:120,170,-12,0,0,0.636265 -20851,3117:121,171,-12,0,0,0.637309 -20852,3117:122,172,-12,0,0,0.635622 -20853,3117:123,173,-12,0,0,0.635622 -20854,3117:124,174,-12,0,0,0.63343 -20855,3117:225,175,-12,0,0,0.631782 -20856,3117:226,176,-12,0,0,0.630706 -20857,3117:227,177,-12,0,0,0.630418 -20858,3117:228,178,-12,0,0,0.631471 -20859,3117:229,179,-12,0,0,0.630802 -20860,3118:120,180,-12,0,0,0.630227 -20861,5118:110,-180,-11,0,0,0.645345 -20862,5117:219,-179,-11,0,0,0.646966 -20863,5117:218,-178,-11,0,0,0.649052 -20864,5117:217,-177,-11,0,0,0.652204 -20865,5117:216,-176,-11,0,0,0.655413 -20866,5117:215,-175,-11,0,0,0.659716 -20867,5117:114,-174,-11,0,0,0.662984 -20868,5117:113,-173,-11,0,0,0.662226 -20869,5117:112,-172,-11,0,0,0.658007 -20870,5117:111,-171,-11,0,0,0.659255 -20871,5117:110,-170,-11,0,0,0.660063 -20872,5116:219,-169,-11,0,0,0.66172 -20873,5116:218,-168,-11,0,0,0.663443 -20874,5116:217,-167,-11,0,0,0.665161 -20875,5116:216,-166,-11,0,0,0.665779 -20876,5116:215,-165,-11,0,0,0.666716 -20877,5116:114,-164,-11,0,0,0.667583 -20878,5116:113,-163,-11,0,0,0.669131 -20879,5116:112,-162,-11,0,0,0.668882 -20880,5116:111,-161,-11,0,0,0.669904 -20881,5116:110,-160,-11,0,0,0.669381 -20882,5115:219,-159,-11,0,0,0.669927 -20883,5115:218,-158,-11,0,0,0.670767 -20884,5115:217,-157,-11,0,0,0.671832 -20885,5115:216,-156,-11,0,0,0.672014 -20886,5115:215,-155,-11,0,0,0.67113 -20887,5115:114,-154,-11,0,0,0.669472 -20888,5115:113,-153,-11,0,0,0.668722 -20889,5115:112,-152,-11,0,0,0.668745 -20890,5115:111,-151,-11,0,0,0.668586 -20891,5115:110,-150,-11,0,0,0.667583 -20892,5114:219,-149,-11,0,0,0.666761 -20893,5114:218,-148,-11,0,0,0.666191 -20894,5114:217,-147,-11,0,0,0.664131 -20895,5114:216,-146,-11,0,0,0.662019 -20896,5114:215,-145,-11,0,0,0.660523 -20897,5114:114,-144,-11,0,0,0.659671 -20898,5114:113,-143,-11,0,0,0.658932 -20899,5114:112,-142,-11,0,0,0.658424 -20900,5114:111,-141,-11,0,0,0.658516 -20901,5114:110,-140,-11,0,0,0.657198 -20902,5113:219,-139,-11,0,0,0.656735 -20903,5113:218,-138,-11,0,0,0.655112 -20904,5113:217,-137,-11,0,0,0.653927 -20905,5113:216,-136,-11,0,0,0.651201 -20906,5113:215,-135,-11,0,0,0.650407 -20907,5113:114,-134,-11,0,0,0.647575 -20908,5113:113,-133,-11,0,0,0.64605 -20909,5113:112,-132,-11,0,0,0.644969 -20910,5113:111,-131,-11,0,0,0.641786 -20911,5113:110,-130,-11,0,0,0.638852 -20912,5112:219,-129,-11,0,0,0.633835 -20913,5112:218,-128,-11,0,0,0.630203 -20914,5112:217,-127,-11,0,0,0.628526 -20915,5112:216,-126,-11,0,0,0.623378 -20916,5112:215,-125,-11,0,0,0.621422 -20917,5112:114,-124,-11,0,0,0.618783 -20918,5112:113,-123,-11,0,0,0.614972 -20919,5112:112,-122,-11,0,0,0.61134 -20920,5112:111,-121,-11,0,0,0.608652 -20921,5112:110,-120,-11,0,0,0.605122 -20922,5111:219,-119,-11,0,0,0.601113 -20923,5111:218,-118,-11,0,0,0.595211 -20924,5111:217,-117,-11,0,0,0.588585 -20925,5111:216,-116,-11,0,0,0.582126 -20926,5111:215,-115,-11,0,0,0.57476 -20927,5111:114,-114,-11,0,0,0.567992 -20928,5111:113,-113,-11,0,0,0.562943 -20929,5111:112,-112,-11,0,0,0.557273 -20930,5111:111,-111,-11,0,0,0.554812 -20931,5111:110,-110,-11,0,0,0.550393 -20932,5110:219,-109,-11,0,0,0.544564 -20933,5110:218,-108,-11,0,0,0.535171 -20934,5110:217,-107,-11,0,0,0.527112 -20935,5110:216,-106,-11,0,0,0.522167 -20936,5110:215,-105,-11,0,0,0.515755 -20937,5110:114,-104,-11,0,0,0.511109 -20938,5110:113,-103,-11,0,0,0.505793 -20939,5110:112,-102,-11,0,0,0.498679 -20940,5110:111,-101,-11,0,0,0.492027 -20941,5110:110,-100,-11,0,0,0.483684 -20942,5109:219,-99,-11,0,0,0.477862 -20943,5109:218,-98,-11,0,0,0.474966 -20944,5109:217,-97,-11,0,0,0.46813 -20945,5109:216,-96,-11,0,0,0.46409 -20946,5109:215,-95,-11,0,0,0.460489 -20947,5109:114,-94,-11,0,0,0.455899 -20948,5109:113,-93,-11,0,0,0.4519 -20949,5109:112,-92,-11,0,0,0.4441 -20950,5109:111,-91,-11,0,0,0.441919 -20951,5109:110,-90,-11,0,0,0.439995 -20952,5108:219,-89,-11,0,0,0.430046 -20953,5108:218,-88,-11,0,0,0.431154 -20954,5108:217,-87,-11,0,0,0.431885 -20955,5108:216,-86,-11,0,0,0.431582 -20956,5108:215,-85,-11,0,0,0.437768 -20957,5108:114,-84,-11,0,0,0.4404 -20958,5108:113,-83,-11,0,0,0.447501 -20959,5108:112,-82,-11,0,0,0.451696 -20960,5108:111,-81,-11,0,0,0.455923 -20961,5108:110,-80,-11,0,0,0.461076 -20962,5107:219,-79,-11,0,0,0.472302 -20963,5107:218,-78,-11,0,0,0.465778 -20964,5107:217,-77,-11,0,0,0.439185 -20965,5103:219,-39,-11,0,0,0.620914 -20966,5103:218,-38,-11,0,0,0.631615 -20967,5103:217,-37,-11,0,0,0.625907 -20968,5103:216,-36,-11,0,0,0.624318 -20969,5103:215,-35,-11,0,0,0.622944 -20970,5103:114,-34,-11,0,0,0.618517 -20971,5103:113,-33,-11,0,0,0.616211 -20972,5103:112,-32,-11,0,0,0.61256 -20973,5103:111,-31,-11,0,0,0.608358 -20974,5103:110,-30,-11,0,0,0.605417 -20975,5102:219,-29,-11,0,0,0.601606 -20976,5102:218,-28,-11,0,0,0.596275 -20977,5102:217,-27,-11,0,0,0.594344 -20978,5102:216,-26,-11,0,0,0.587141 -20979,5102:215,-25,-11,0,0,0.581851 -20980,5102:114,-24,-11,0,0,0.581576 -20981,5102:113,-23,-11,0,0,0.576316 -20982,5102:112,-22,-11,0,0,0.573605 -20983,5102:111,-21,-11,0,0,0.570511 -20984,5102:110,-20,-11,0,0,0.56663 -20985,5101:219,-19,-11,0,0,0.562538 -20986,5101:218,-18,-11,0,0,0.556664 -20987,5101:217,-17,-11,0,0,0.551435 -20988,5101:216,-16,-11,0,0,0.543646 -20989,5101:215,-15,-11,0,0,0.539182 -20990,5101:114,-14,-11,0,0,0.532333 -20991,5101:113,-13,-11,0,0,0.528136 -20992,5101:112,-12,-11,0,0,0.523448 -20993,5101:111,-11,-11,0,0,0.519269 -20994,5101:110,-10,-11,0,0,0.515062 -20995,5100:219,-9,-11,0,0,0.51116 -20996,5100:218,-8,-11,0,0,0.507283 -20997,5100:217,-7,-11,0,0,0.504253 -20998,5100:216,-6,-11,0,0,0.506101 -20999,5100:215,-5,-11,0,0,0.504869 -21000,5100:114,-4,-11,0,0,0.503045 -21001,5100:113,-3,-11,0,0,0.504663 -21002,5100:112,-2,-11,0,0,0.504715 -21003,5100:111,-1,-11,0,0,0.507129 -21004,3100:111,0,-11,0,0,0.505614 -21005,3100:111,1,-11,0,0,0.504971 -21006,3100:112,2,-11,0,0,0.502249 -21007,3100:113,3,-11,0,0,0.502223 -21008,3100:114,4,-11,0,0,0.506153 -21009,3100:215,5,-11,0,0,0.512136 -21010,3100:216,6,-11,0,0,0.522372 -21011,3100:217,7,-11,0,0,0.527599 -21012,3100:218,8,-11,0,0,0.536934 -21013,3100:219,9,-11,0,0,0.55973 -21014,3101:110,10,-11,0,0,0.578072 -21015,3101:111,11,-11,0,0,0.57358 -21016,3101:112,12,-11,0,0,0.543187 -21017,3104:111,41,-11,0,0,0.673574 -21018,3104:112,42,-11,0,0,0.673371 -21019,3104:113,43,-11,0,0,0.671153 -21020,3104:114,44,-11,0,0,0.674793 -21021,3104:215,45,-11,0,0,0.67774 -21022,3104:216,46,-11,0,0,0.664062 -21023,3104:217,47,-11,0,0,0.656295 -21024,3104:218,48,-11,0,0,0.658771 -21025,3105:110,50,-11,0,0,0.63769 -21026,3105:111,51,-11,0,0,0.638473 -21027,3105:112,52,-11,0,0,0.639776 -21028,3105:113,53,-11,0,0,0.638307 -21029,3105:114,54,-11,0,0,0.641432 -21030,3105:215,55,-11,0,0,0.644545 -21031,3105:216,56,-11,0,0,0.645815 -21032,3105:217,57,-11,0,0,0.644828 -21033,3105:218,58,-11,0,0,0.642565 -21034,3105:219,59,-11,0,0,0.639918 -21035,3106:110,60,-11,0,0,0.636574 -21036,3106:111,61,-11,0,0,0.636431 -21037,3106:112,62,-11,0,0,0.632881 -21038,3106:113,63,-11,0,0,0.629772 -21039,3106:114,64,-11,0,0,0.630778 -21040,3106:215,65,-11,0,0,0.632236 -21041,3106:216,66,-11,0,0,0.635027 -21042,3106:217,67,-11,0,0,0.63833 -21043,3106:218,68,-11,0,0,0.640391 -21044,3106:219,69,-11,0,0,0.641337 -21045,3107:110,70,-11,0,0,0.640107 -21046,3107:111,71,-11,0,0,0.638069 -21047,3107:112,72,-11,0,0,0.638662 -21048,3107:114,74,-11,0,0,0.642329 -21049,3107:215,75,-11,0,0,0.643932 -21050,3107:216,76,-11,0,0,0.64431 -21051,3107:217,77,-11,0,0,0.643202 -21052,3107:218,78,-11,0,0,0.640935 -21053,3107:219,79,-11,0,0,0.637856 -21054,3108:110,80,-11,0,0,0.633406 -21055,3108:111,81,-11,0,0,0.629221 -21056,3108:112,82,-11,0,0,0.625402 -21057,3108:113,83,-11,0,0,0.621881 -21058,3108:114,84,-11,0,0,0.61842 -21059,3108:215,85,-11,0,0,0.61592 -21060,3108:216,86,-11,0,0,0.613559 -21061,3108:217,87,-11,0,0,0.612609 -21062,3108:218,88,-11,0,0,0.612341 -21063,3108:219,89,-11,0,0,0.612755 -21064,3109:110,90,-11,0,0,0.614461 -21065,3109:111,91,-11,0,0,0.617134 -21066,3109:112,92,-11,0,0,0.617547 -21067,3109:113,93,-11,0,0,0.614339 -21068,3109:114,94,-11,0,0,0.610705 -21069,3109:215,95,-11,0,0,0.60777 -21070,3109:216,96,-11,0,0,0.606594 -21071,3109:217,97,-11,0,0,0.606986 -21072,3109:218,98,-11,0,0,0.605441 -21073,3109:219,99,-11,0,0,0.608554 -21074,3110:110,100,-11,0,0,0.614728 -21075,3110:111,101,-11,0,0,0.62557 -21076,3110:112,102,-11,0,0,0.629581 -21077,3110:113,103,-11,0,0,0.633168 -21078,3110:114,104,-11,0,0,0.636526 -21079,3110:215,105,-11,0,0,0.630203 -21080,3110:216,106,-11,0,0,0.627037 -21081,3110:217,107,-11,0,0,0.637286 -21082,3110:218,108,-11,0,0,0.647482 -21083,3110:219,109,-11,0,0,0.657407 -21084,3111:110,110,-11,0,0,0.659209 -21085,3111:111,111,-11,0,0,0.663145 -21086,3111:112,112,-11,0,0,0.668062 -21087,3111:113,113,-11,0,0,0.673168 -21088,3111:114,114,-11,0,0,0.677336 -21089,3111:215,115,-11,0,0,0.678166 -21090,3111:216,116,-11,0,0,0.67792 -21091,3111:217,117,-11,0,0,0.679532 -21092,3111:218,118,-11,0,0,0.680159 -21093,3111:219,119,-11,0,0,0.680382 -21094,3112:110,120,-11,0,0,0.679644 -21095,3112:111,121,-11,0,0,0.681632 -21096,3112:112,122,-11,0,0,0.681609 -21097,3112:113,123,-11,0,0,0.683991 -21098,3112:114,124,-11,0,0,0.691054 -21099,3112:215,125,-11,0,0,0.697292 -21100,3112:216,126,-11,0,0,0.699024 -21101,3112:217,127,-11,0,0,0.698029 -21102,3112:218,128,-11,0,0,0.69924 -21103,3112:219,129,-11,0,0,0.703244 -21104,3113:110,130,-11,0,0,0.714355 -21105,3113:217,137,-11,0,0,0.70485 -21106,3113:218,138,-11,0,0,0.683835 -21107,3113:219,139,-11,0,0,0.677224 -21108,3114:110,140,-11,0,0,0.682813 -21109,3114:111,141,-11,0,0,0.68718 -21110,3114:114,144,-11,0,0,0.664108 -21111,3114:215,145,-11,0,0,0.641904 -21112,3114:216,146,-11,0,0,0.642612 -21113,3114:217,147,-11,0,0,0.643603 -21114,3114:218,148,-11,0,0,0.648607 -21115,3114:219,149,-11,0,0,0.652787 -21116,3115:110,150,-11,0,0,0.653624 -21117,3115:111,151,-11,0,0,0.656619 -21118,3115:112,152,-11,0,0,0.655321 -21119,3115:113,153,-11,0,0,0.657638 -21120,3115:114,154,-11,0,0,0.659855 -21121,3115:215,155,-11,0,0,0.660478 -21122,3115:216,156,-11,0,0,0.658308 -21123,3115:217,157,-11,0,0,0.654183 -21124,3115:218,158,-11,0,0,0.651458 -21125,3115:219,159,-11,0,0,0.649379 -21126,3116:110,160,-11,0,0,0.646872 -21127,3116:111,161,-11,0,0,0.645134 -21128,3116:112,162,-11,0,0,0.64478 -21129,3116:113,163,-11,0,0,0.644898 -21130,3116:114,164,-11,0,0,0.645698 -21131,3116:215,165,-11,0,0,0.646215 -21132,3116:216,166,-11,0,0,0.646801 -21133,3116:217,167,-11,0,0,0.646801 -21134,3116:218,168,-11,0,0,0.646426 -21135,3116:219,169,-11,0,0,0.649356 -21136,3117:110,170,-11,0,0,0.649613 -21137,3117:111,171,-11,0,0,0.648841 -21138,3117:112,172,-11,0,0,0.64856 -21139,3117:113,173,-11,0,0,0.646849 -21140,3117:114,174,-11,0,0,0.644498 -21141,3117:215,175,-11,0,0,0.643532 -21142,3117:216,176,-11,0,0,0.643084 -21143,3117:217,177,-11,0,0,0.642117 -21144,3117:218,178,-11,0,0,0.642872 -21145,3117:219,179,-11,0,0,0.643932 -21146,3118:110,180,-11,0,0,0.645345 -21147,5118:100,-180,-10,0,0,0.655437 -21148,5117:209,-179,-10,0,0,0.658146 -21149,5117:208,-178,-10,0,0,0.66103 -21150,5117:207,-177,-10,0,0,0.66365 -21151,5117:206,-176,-10,0,0,0.667241 -21152,5117:205,-175,-10,0,0,0.669768 -21153,5117:104,-174,-10,0,0,0.670495 -21154,5117:103,-173,-10,0,0,0.669541 -21155,5117:102,-172,-10,0,0,0.668358 -21156,5117:101,-171,-10,0,0,0.668312 -21157,5117:100,-170,-10,0,0,0.668768 -21158,5116:209,-169,-10,0,0,0.668608 -21159,5116:208,-168,-10,0,0,0.668631 -21160,5116:207,-167,-10,0,0,0.670223 -21161,5116:206,-166,-10,0,0,0.673168 -21162,5116:205,-165,-10,0,0,0.673665 -21163,5116:104,-164,-10,0,0,0.674455 -21164,5116:103,-163,-10,0,0,0.674906 -21165,5116:102,-162,-10,0,0,0.675424 -21166,5116:101,-161,-10,0,0,0.676324 -21167,5116:100,-160,-10,0,0,0.67468 -21168,5115:209,-159,-10,0,0,0.675131 -21169,5115:208,-158,-10,0,0,0.674883 -21170,5115:207,-157,-10,0,0,0.674771 -21171,5115:206,-156,-10,0,0,0.675154 -21172,5115:205,-155,-10,0,0,0.673371 -21173,5115:104,-154,-10,0,0,0.671221 -21174,5115:103,-153,-10,0,0,0.669836 -21175,5115:102,-152,-10,0,0,0.669131 -21176,5115:101,-151,-10,0,0,0.667902 -21177,5115:100,-150,-10,0,0,0.667446 -21178,5114:209,-149,-10,0,0,0.666579 -21179,5114:208,-148,-10,0,0,0.665139 -21180,5114:207,-147,-10,0,0,0.663099 -21181,5114:206,-146,-10,0,0,0.662226 -21182,5114:205,-145,-10,0,0,0.660869 -21183,5114:104,-144,-10,0,0,0.658978 -21184,5114:103,-143,-10,0,0,0.656712 -21185,5114:102,-142,-10,0,0,0.655669 -21186,5114:101,-141,-10,0,0,0.653881 -21187,5114:100,-140,-10,0,0,0.652461 -21188,5113:209,-139,-10,0,0,0.651762 -21189,5113:208,-138,-10,0,0,0.648817 -21190,5113:207,-137,-10,0,0,0.647646 -21191,5113:206,-136,-10,0,0,0.64478 -21192,5113:205,-135,-10,0,0,0.642471 -21193,5113:104,-134,-10,0,0,0.64103 -21194,5113:103,-133,-10,0,0,0.639586 -21195,5113:102,-132,-10,0,0,0.637167 -21196,5113:101,-131,-10,0,0,0.632833 -21197,5113:100,-130,-10,0,0,0.633024 -21198,5112:209,-129,-10,0,0,0.629892 -21199,5112:208,-128,-10,0,0,0.62545 -21200,5112:207,-127,-10,0,0,0.621736 -21201,5112:206,-126,-10,0,0,0.621688 -21202,5112:205,-125,-10,0,0,0.615336 -21203,5112:104,-124,-10,0,0,0.615433 -21204,5112:103,-123,-10,0,0,0.609874 -21205,5112:102,-122,-10,0,0,0.603476 -21206,5112:101,-121,-10,0,0,0.600226 -21207,5112:100,-120,-10,0,0,0.595508 -21208,5111:209,-119,-10,0,0,0.593427 -21209,5111:208,-118,-10,0,0,0.587639 -21210,5111:207,-117,-10,0,0,0.582626 -21211,5111:206,-116,-10,0,0,0.578046 -21212,5111:205,-115,-10,0,0,0.572222 -21213,5111:104,-114,-10,0,0,0.566731 -21214,5111:103,-113,-10,0,0,0.559502 -21215,5111:102,-112,-10,0,0,0.55466 -21216,5111:101,-111,-10,0,0,0.552374 -21217,5111:100,-110,-10,0,0,0.544029 -21218,5110:209,-109,-10,0,0,0.540126 -21219,5110:208,-108,-10,0,0,0.533996 -21220,5110:207,-107,-10,0,0,0.527624 -21221,5110:206,-106,-10,0,0,0.522679 -21222,5110:205,-105,-10,0,0,0.515524 -21223,5110:104,-104,-10,0,0,0.509132 -21224,5110:103,-103,-10,0,0,0.50474 -21225,5110:102,-102,-10,0,0,0.502378 -21226,5110:101,-101,-10,0,0,0.496932 -21227,5110:100,-100,-10,0,0,0.490922 -21228,5109:209,-99,-10,0,0,0.485994 -21229,5109:208,-98,-10,0,0,0.480811 -21230,5109:207,-97,-10,0,0,0.476964 -21231,5109:206,-96,-10,0,0,0.472686 -21232,5109:205,-95,-10,0,0,0.464985 -21233,5109:104,-94,-10,0,0,0.457658 -21234,5109:103,-93,-10,0,0,0.458397 -21235,5109:102,-92,-10,0,0,0.457862 -21236,5109:101,-91,-10,0,0,0.459647 -21237,5109:100,-90,-10,0,0,0.458448 -21238,5108:209,-89,-10,0,0,0.456179 -21239,5108:208,-88,-10,0,0,0.454497 -21240,5108:207,-87,-10,0,0,0.45804 -21241,5108:206,-86,-10,0,0,0.462098 -21242,5108:205,-85,-10,0,0,0.464474 -21243,5108:104,-84,-10,0,0,0.467133 -21248,5107:209,-79,-10,0,0,0.486635 -21249,5107:208,-78,-10,0,0,0.463426 -21250,5103:207,-37,-10,0,0,0.626629 -21251,5103:206,-36,-10,0,0,0.625402 -21252,5103:205,-35,-10,0,0,0.622774 -21253,5103:104,-34,-10,0,0,0.619898 -21254,5103:103,-33,-10,0,0,0.616357 -21255,5103:102,-32,-10,0,0,0.614412 -21256,5103:101,-31,-10,0,0,0.609067 -21257,5103:100,-30,-10,0,0,0.606912 -21258,5102:209,-29,-10,0,0,0.602541 -21259,5102:208,-28,-10,0,0,0.598598 -21260,5102:207,-27,-10,0,0,0.59427 -21261,5102:206,-26,-10,0,0,0.591046 -21262,5102:205,-25,-10,0,0,0.588634 -21263,5102:104,-24,-10,0,0,0.583175 -21264,5102:103,-23,-10,0,0,0.582526 -21265,5102:102,-22,-10,0,0,0.577821 -21266,5102:101,-21,-10,0,0,0.573303 -21267,5102:100,-20,-10,0,0,0.569051 -21268,5101:209,-19,-10,0,0,0.563019 -21269,5101:208,-18,-10,0,0,0.557095 -21270,5101:207,-17,-10,0,0,0.55268 -21271,5101:206,-16,-10,0,0,0.551892 -21272,5101:205,-15,-10,0,0,0.551078 -21273,5101:104,-14,-10,0,0,0.54209 -21274,5101:103,-13,-10,0,0,0.537701 -21275,5101:102,-12,-10,0,0,0.535095 -21276,5101:101,-11,-10,0,0,0.533177 -21277,5101:100,-10,-10,0,0,0.534685 -21278,5100:209,-9,-10,0,0,0.526881 -21279,5100:208,-8,-10,0,0,0.523807 -21280,5100:207,-7,-10,0,0,0.521884 -21281,5100:206,-6,-10,0,0,0.528008 -21282,5100:205,-5,-10,0,0,0.522141 -21283,5100:104,-4,-10,0,0,0.522961 -21284,5100:103,-3,-10,0,0,0.521269 -21285,5100:102,-2,-10,0,0,0.519141 -21286,5100:101,-1,-10,0,0,0.517884 -21287,3100:101,0,-10,0,0,0.519679 -21288,3100:101,1,-10,0,0,0.521141 -21289,3100:102,2,-10,0,0,0.519295 -21290,3100:103,3,-10,0,0,0.523602 -21291,3100:104,4,-10,0,0,0.530977 -21292,3100:205,5,-10,0,0,0.537241 -21293,3100:206,6,-10,0,0,0.544538 -21294,3100:207,7,-10,0,0,0.550722 -21295,3100:208,8,-10,0,0,0.565999 -21296,3100:209,9,-10,0,0,0.586343 -21297,3101:100,10,-10,0,0,0.597733 -21298,3101:101,11,-10,0,0,0.606668 -21299,3101:102,12,-10,0,0,0.609312 -21300,3101:103,13,-10,0,0,0.578247 -21301,3104:101,41,-10,0,0,0.66587 -21302,3104:102,42,-10,0,0,0.661583 -21303,3104:104,44,-10,0,0,0.658701 -21304,3104:205,45,-10,0,0,0.651902 -21305,3104:206,46,-10,0,0,0.647482 -21306,3104:207,47,-10,0,0,0.64565 -21307,3104:208,48,-10,0,0,0.642188 -21308,3104:209,49,-10,0,0,0.637808 -21309,3105:100,50,-10,0,0,0.639539 -21310,3105:101,51,-10,0,0,0.643202 -21311,3105:102,52,-10,0,0,0.646943 -21312,3105:103,53,-10,0,0,0.646285 -21313,3105:104,54,-10,0,0,0.648208 -21314,3105:205,55,-10,0,0,0.651435 -21315,3105:206,56,-10,0,0,0.653112 -21316,3105:207,57,-10,0,0,0.653183 -21317,3105:208,58,-10,0,0,0.651178 -21318,3105:209,59,-10,0,0,0.648467 -21319,3106:100,60,-10,0,0,0.64565 -21320,3106:101,61,-10,0,0,0.64155 -21321,3106:102,62,-10,0,0,0.638638 -21322,3106:103,63,-10,0,0,0.641361 -21323,3106:104,64,-10,0,0,0.644969 -21324,3106:205,65,-10,0,0,0.648489 -21325,3106:206,66,-10,0,0,0.650851 -21326,3106:207,67,-10,0,0,0.652158 -21327,3106:208,68,-10,0,0,0.652671 -21328,3106:209,69,-10,0,0,0.65253 -21329,3107:100,70,-10,0,0,0.652134 -21330,3107:101,71,-10,0,0,0.652088 -21331,3107:102,72,-10,0,0,0.652601 -21332,3107:104,74,-10,0,0,0.651389 -21333,3107:205,75,-10,0,0,0.649473 -21334,3107:206,76,-10,0,0,0.647529 -21335,3107:207,77,-10,0,0,0.644945 -21336,3107:208,78,-10,0,0,0.641975 -21337,3107:209,79,-10,0,0,0.638402 -21338,3108:100,80,-10,0,0,0.635313 -21339,3108:101,81,-10,0,0,0.632356 -21340,3108:102,82,-10,0,0,0.629461 -21341,3108:103,83,-10,0,0,0.626461 -21342,3108:104,84,-10,0,0,0.624004 -21343,3108:205,85,-10,0,0,0.621688 -21344,3108:206,86,-10,0,0,0.620237 -21345,3108:207,87,-10,0,0,0.619705 -21346,3108:208,88,-10,0,0,0.619195 -21347,3108:209,89,-10,0,0,0.618105 -21348,3109:100,90,-10,0,0,0.617571 -21349,3109:101,91,-10,0,0,0.618638 -21350,3109:102,92,-10,0,0,0.621978 -21351,3109:103,93,-10,0,0,0.623836 -21352,3109:104,94,-10,0,0,0.622799 -21353,3109:205,95,-10,0,0,0.620431 -21354,3109:206,96,-10,0,0,0.618493 -21355,3109:207,97,-10,0,0,0.616576 -21356,3109:208,98,-10,0,0,0.615336 -21357,3109:209,99,-10,0,0,0.616916 -21358,3110:100,100,-10,0,0,0.622895 -21359,3110:101,101,-10,0,0,0.630514 -21360,3110:102,102,-10,0,0,0.63343 -21361,3110:103,103,-10,0,0,0.63374 -21362,3110:104,104,-10,0,0,0.635764 -21363,3110:205,105,-10,0,0,0.637975 -21364,3110:206,106,-10,0,0,0.636122 -21365,3110:207,107,-10,0,0,0.636098 -21366,3110:208,108,-10,0,0,0.648911 -21367,3110:209,109,-10,0,0,0.660846 -21368,3111:100,110,-10,0,0,0.660478 -21369,3111:101,111,-10,0,0,0.664085 -21370,3111:102,112,-10,0,0,0.669245 -21371,3111:103,113,-10,0,0,0.67319 -21372,3111:104,114,-10,0,0,0.677313 -21373,3111:205,115,-10,0,0,0.680248 -21374,3111:206,116,-10,0,0,0.681632 -21375,3111:207,117,-10,0,0,0.681743 -21376,3111:208,118,-10,0,0,0.681677 -21377,3111:209,119,-10,0,0,0.681609 -21378,3112:100,120,-10,0,0,0.680382 -21379,3112:101,121,-10,0,0,0.680739 -21380,3112:102,122,-10,0,0,0.68408 -21381,3112:103,123,-10,0,0,0.685454 -21382,3112:104,124,-10,0,0,0.683435 -21383,3112:205,125,-10,0,0,0.689692 -21384,3112:206,126,-10,0,0,0.6974 -21385,3112:207,127,-10,0,0,0.699348 -21386,3112:208,128,-10,0,0,0.703051 -21387,3112:209,129,-10,0,0,0.706343 -21388,3113:100,130,-10,0,0,0.714355 -21389,3113:102,132,-10,0,0,0.714355 -21390,3113:104,134,-10,0,0,0.714355 -21391,3113:205,135,-10,0,0,0.710101 -21392,3113:206,136,-10,0,0,0.704336 -21393,3113:207,137,-10,0,0,0.698224 -21394,3113:208,138,-10,0,0,0.673349 -21395,3113:209,139,-10,0,0,0.671606 -21396,3114:100,140,-10,0,0,0.678099 -21397,3114:101,141,-10,0,0,0.683346 -21398,3114:102,142,-10,0,0,0.688437 -21399,3114:104,144,-10,0,0,0.656156 -21400,3114:205,145,-10,0,0,0.649192 -21401,3114:206,146,-10,0,0,0.651924 -21402,3114:207,147,-10,0,0,0.647459 -21403,3114:208,148,-10,0,0,0.646731 -21404,3114:209,149,-10,0,0,0.650875 -21405,3115:100,150,-10,0,0,0.654136 -21406,3115:101,151,-10,0,0,0.66326 -21407,3115:102,152,-10,0,0,0.666465 -21408,3115:103,153,-10,0,0,0.666076 -21409,3115:104,154,-10,0,0,0.664383 -21410,3115:205,155,-10,0,0,0.671402 -21411,3115:206,156,-10,0,0,0.67172 -21412,3115:207,157,-10,0,0,0.669427 -21413,3115:208,158,-10,0,0,0.66879 -21414,3115:209,159,-10,0,0,0.667332 -21415,3116:100,160,-10,0,0,0.661697 -21416,3116:101,161,-10,0,0,0.657708 -21417,3116:102,162,-10,0,0,0.658285 -21418,3116:103,163,-10,0,0,0.658863 -21419,3116:104,164,-10,0,0,0.659647 -21420,3116:205,165,-10,0,0,0.659901 -21421,3116:206,166,-10,0,0,0.659694 -21422,3116:207,167,-10,0,0,0.660339 -21423,3116:208,168,-10,0,0,0.661168 -21424,3116:209,169,-10,0,0,0.661744 -21425,3117:100,170,-10,0,0,0.661214 -21426,3117:101,171,-10,0,0,0.659971 -21427,3117:102,172,-10,0,0,0.658216 -21428,3117:103,173,-10,0,0,0.655344 -21429,3117:104,174,-10,0,0,0.653322 -21430,3117:205,175,-10,0,0,0.653508 -21431,3117:206,176,-10,0,0,0.653322 -21432,3117:207,177,-10,0,0,0.653974 -21433,3117:208,178,-10,0,0,0.653904 -21434,3117:209,179,-10,0,0,0.653881 -21435,3118:100,180,-10,0,0,0.655437 -21436,5018:390,-180,-9,0,0,0.664246 -21437,5017:499,-179,-9,0,0,0.666191 -21438,5017:498,-178,-9,0,0,0.668085 -21439,5017:497,-177,-9,0,0,0.670699 -21440,5017:496,-176,-9,0,0,0.672784 -21441,5017:495,-175,-9,0,0,0.673439 -21442,5017:394,-174,-9,0,0,0.673733 -21443,5017:393,-173,-9,0,0,0.673755 -21444,5017:392,-172,-9,0,0,0.673326 -21445,5017:391,-171,-9,0,0,0.673032 -21446,5017:390,-170,-9,0,0,0.674026 -21447,5016:499,-169,-9,0,0,0.674793 -21448,5016:498,-168,-9,0,0,0.675334 -21449,5016:497,-167,-9,0,0,0.675109 -21450,5016:496,-166,-9,0,0,0.675379 -21451,5016:495,-165,-9,0,0,0.676437 -21452,5016:394,-164,-9,0,0,0.677852 -21453,5016:393,-163,-9,0,0,0.678211 -21454,5016:392,-162,-9,0,0,0.678211 -21455,5016:391,-161,-9,0,0,0.678413 -21456,5016:390,-160,-9,0,0,0.678323 -21457,5015:499,-159,-9,0,0,0.678189 -21458,5015:498,-158,-9,0,0,0.677874 -21459,5015:497,-157,-9,0,0,0.676909 -21460,5015:496,-156,-9,0,0,0.675424 -21461,5015:495,-155,-9,0,0,0.673258 -21462,5015:394,-154,-9,0,0,0.671923 -21463,5015:393,-153,-9,0,0,0.670336 -21464,5015:392,-152,-9,0,0,0.668494 -21465,5015:391,-151,-9,0,0,0.66699 -21466,5015:390,-150,-9,0,0,0.665665 -21467,5014:499,-149,-9,0,0,0.66507 -21468,5014:498,-148,-9,0,0,0.661237 -21469,5014:497,-147,-9,0,0,0.659579 -21470,5014:496,-146,-9,0,0,0.658262 -21471,5014:495,-145,-9,0,0,0.658816 -21472,5014:394,-144,-9,0,0,0.656318 -21473,5014:393,-143,-9,0,0,0.654136 -21474,5014:392,-142,-9,0,0,0.652018 -21475,5014:391,-141,-9,0,0,0.650174 -21476,5014:390,-140,-9,0,0,0.648654 -21477,5013:499,-139,-9,0,0,0.646261 -21478,5013:498,-138,-9,0,0,0.643532 -21479,5013:497,-137,-9,0,0,0.641928 -21480,5013:496,-136,-9,0,0,0.64025 -21481,5013:495,-135,-9,0,0,0.636288 -21482,5013:394,-134,-9,0,0,0.63312 -21483,5013:393,-133,-9,0,0,0.630011 -21484,5013:392,-132,-9,0,0,0.628838 -21485,5013:391,-131,-9,0,0,0.624294 -21486,5013:390,-130,-9,0,0,0.622436 -21487,5012:499,-129,-9,0,0,0.618396 -21488,5012:498,-128,-9,0,0,0.617183 -21489,5012:497,-127,-9,0,0,0.613681 -21490,5012:496,-126,-9,0,0,0.608897 -21491,5012:495,-125,-9,0,0,0.607329 -21492,5012:394,-124,-9,0,0,0.603869 -21493,5012:393,-123,-9,0,0,0.59998 -21494,5012:392,-122,-9,0,0,0.595805 -21495,5012:391,-121,-9,0,0,0.591964 -21496,5012:390,-120,-9,0,0,0.587738 -21497,5011:499,-119,-9,0,0,0.583774 -21498,5011:498,-118,-9,0,0,0.57717 -21499,5011:497,-117,-9,0,0,0.571745 -21500,5011:496,-116,-9,0,0,0.567942 -21501,5011:495,-115,-9,0,0,0.563145 -21502,5011:394,-114,-9,0,0,0.557146 -21503,5011:393,-113,-9,0,0,0.551359 -21504,5011:392,-112,-9,0,0,0.544945 -21505,5011:391,-111,-9,0,0,0.539948 -21506,5011:390,-110,-9,0,0,0.535836 -21507,5010:499,-109,-9,0,0,0.532077 -21508,5010:498,-108,-9,0,0,0.527599 -21509,5010:497,-107,-9,0,0,0.523243 -21510,5010:496,-106,-9,0,0,0.519038 -21511,5010:495,-105,-9,0,0,0.514625 -21512,5010:394,-104,-9,0,0,0.510904 -21513,5010:393,-103,-9,0,0,0.508849 -21514,5010:392,-102,-9,0,0,0.505819 -21515,5010:391,-101,-9,0,0,0.501016 -21516,5010:390,-100,-9,0,0,0.495108 -21517,5009:499,-99,-9,0,0,0.492668 -21518,5009:498,-98,-9,0,0,0.491898 -21519,5009:497,-97,-9,0,0,0.488638 -21520,5009:496,-96,-9,0,0,0.486225 -21521,5009:495,-95,-9,0,0,0.478708 -21522,5009:394,-94,-9,0,0,0.476068 -21523,5009:393,-93,-9,0,0,0.480093 -21524,5009:392,-92,-9,0,0,0.485146 -21525,5009:391,-91,-9,0,0,0.484454 -21526,5009:390,-90,-9,0,0,0.488304 -21527,5008:499,-89,-9,0,0,0.488278 -21528,5008:498,-88,-9,0,0,0.488175 -21529,5008:497,-87,-9,0,0,0.488124 -21530,5008:496,-86,-9,0,0,0.48951 -21531,5008:495,-85,-9,0,0,0.489792 -21532,5008:394,-84,-9,0,0,0.491025 -21533,5008:393,-83,-9,0,0,0.4929 -21534,5008:392,-82,-9,0,0,0.495005 -21535,5008:391,-81,-9,0,0,0.492951 -21536,5008:390,-80,-9,0,0,0.488278 -21537,5007:499,-79,-9,0,0,0.480169 -21538,5003:496,-36,-9,0,0,0.62316 -21539,5003:495,-35,-9,0,0,0.625209 -21540,5003:394,-34,-9,0,0,0.618905 -21541,5003:393,-33,-9,0,0,0.615263 -21542,5003:392,-32,-9,0,0,0.611633 -21543,5003:391,-31,-9,0,0,0.609141 -21544,5003:390,-30,-9,0,0,0.604729 -21545,5002:499,-29,-9,0,0,0.601163 -21546,5002:498,-28,-9,0,0,0.598153 -21547,5002:497,-27,-9,0,0,0.595508 -21548,5002:496,-26,-9,0,0,0.591791 -21549,5002:495,-25,-9,0,0,0.589355 -21550,5002:394,-24,-9,0,0,0.585621 -21551,5002:393,-23,-9,0,0,0.581526 -21552,5002:392,-22,-9,0,0,0.57965 -21553,5002:391,-21,-9,0,0,0.57481 -21554,5002:390,-20,-9,0,0,0.572574 -21555,5001:499,-19,-9,0,0,0.569227 -21556,5001:498,-18,-9,0,0,0.565166 -21557,5001:497,-17,-9,0,0,0.562185 -21558,5001:496,-16,-9,0,0,0.560793 -21559,5001:495,-15,-9,0,0,0.556537 -21560,5001:394,-14,-9,0,0,0.554914 -21561,5001:393,-13,-9,0,0,0.550367 -21562,5001:392,-12,-9,0,0,0.54818 -21563,5001:391,-11,-9,0,0,0.547721 -21564,5001:390,-10,-9,0,0,0.545302 -21565,5000:499,-9,-9,0,0,0.54033 -21566,5000:498,-8,-9,0,0,0.539054 -21567,5000:497,-7,-9,0,0,0.537062 -21568,5000:496,-6,-9,0,0,0.538697 -21569,5000:495,-5,-9,0,0,0.537675 -21570,5000:394,-4,-9,0,0,0.535043 -21571,5000:393,-3,-9,0,0,0.533459 -21572,5000:392,-2,-9,0,0,0.534149 -21573,5000:391,-1,-9,0,0,0.534635 -21574,3000:391,0,-9,0,0,0.538033 -21575,3000:391,1,-9,0,0,0.541479 -21576,3000:392,2,-9,0,0,0.543263 -21577,3000:393,3,-9,0,0,0.548307 -21578,3000:394,4,-9,0,0,0.553442 -21579,3000:495,5,-9,0,0,0.559654 -21580,3000:496,6,-9,0,0,0.56963 -21581,3000:497,7,-9,0,0,0.584349 -21582,3000:498,8,-9,0,0,0.597141 -21583,3000:499,9,-9,0,0,0.607378 -21584,3001:390,10,-9,0,0,0.614363 -21585,3001:391,11,-9,0,0,0.623667 -21586,3001:392,12,-9,0,0,0.62345 -21587,3001:393,13,-9,0,0,0.589331 -21588,3004:390,40,-9,0,0,0.660039 -21589,3004:391,41,-9,0,0,0.664062 -21590,3004:392,42,-9,0,0,0.660892 -21591,3004:393,43,-9,0,0,0.658308 -21592,3004:394,44,-9,0,0,0.655622 -21593,3004:495,45,-9,0,0,0.65288 -21594,3004:496,46,-9,0,0,0.648982 -21595,3004:497,47,-9,0,0,0.64652 -21596,3004:498,48,-9,0,0,0.646167 -21597,3004:499,49,-9,0,0,0.648373 -21598,3005:390,50,-9,0,0,0.651272 -21599,3005:391,51,-9,0,0,0.654067 -21600,3005:392,52,-9,0,0,0.655762 -21601,3005:393,53,-9,0,0,0.656202 -21602,3005:394,54,-9,0,0,0.659186 -21603,3005:495,55,-9,0,0,0.661628 -21604,3005:496,56,-9,0,0,0.662249 -21605,3005:497,57,-9,0,0,0.660431 -21606,3005:498,58,-9,0,0,0.65692 -21607,3005:499,59,-9,0,0,0.652694 -21608,3006:390,60,-9,0,0,0.647951 -21609,3006:391,61,-9,0,0,0.644027 -21610,3006:392,62,-9,0,0,0.640746 -21611,3006:393,63,-9,0,0,0.647716 -21612,3006:394,64,-9,0,0,0.649473 -21613,3006:495,65,-9,0,0,0.650851 -21614,3006:496,66,-9,0,0,0.652926 -21615,3006:497,67,-9,0,0,0.651948 -21616,3006:498,68,-9,0,0,0.65295 -21617,3006:499,69,-9,0,0,0.657059 -21618,3007:390,70,-9,0,0,0.657407 -21619,3007:391,71,-9,0,0,0.659279 -21620,3007:392,72,-9,0,0,0.660777 -21621,3007:394,74,-9,0,0,0.658632 -21622,3007:495,75,-9,0,0,0.657106 -21623,3007:496,76,-9,0,0,0.65655 -21624,3007:497,77,-9,0,0,0.656272 -21625,3007:498,78,-9,0,0,0.655576 -21626,3007:499,79,-9,0,0,0.653881 -21627,3008:390,80,-9,0,0,0.650244 -21628,3008:391,81,-9,0,0,0.645768 -21629,3008:392,82,-9,0,0,0.640439 -21630,3008:393,83,-9,0,0,0.634932 -21631,3008:394,84,-9,0,0,0.632929 -21632,3008:495,85,-9,0,0,0.632809 -21633,3008:496,86,-9,0,0,0.633072 -21634,3008:497,87,-9,0,0,0.632332 -21635,3008:498,88,-9,0,0,0.630347 -21636,3008:499,89,-9,0,0,0.62747 -21637,3009:390,90,-9,0,0,0.625715 -21638,3009:391,91,-9,0,0,0.626196 -21639,3009:392,92,-9,0,0,0.628141 -21640,3009:393,93,-9,0,0,0.63006 -21641,3009:394,94,-9,0,0,0.631089 -21642,3009:495,95,-9,0,0,0.630922 -21643,3009:496,96,-9,0,0,0.630467 -21644,3009:497,97,-9,0,0,0.629269 -21645,3009:498,98,-9,0,0,0.627517 -21646,3009:499,99,-9,0,0,0.628022 -21647,3010:390,100,-9,0,0,0.630969 -21648,3010:391,101,-9,0,0,0.635408 -21649,3010:392,102,-9,0,0,0.640557 -21650,3010:393,103,-9,0,0,0.643249 -21651,3010:394,104,-9,0,0,0.643862 -21652,3010:495,105,-9,0,0,0.646355 -21653,3010:496,106,-9,0,0,0.653555 -21654,3010:497,107,-9,0,0,0.657522 -21655,3010:498,108,-9,0,0,0.660386 -21656,3010:499,109,-9,0,0,0.662249 -21657,3011:390,110,-9,0,0,0.66303 -21658,3011:391,111,-9,0,0,0.665436 -21659,3011:392,112,-9,0,0,0.667492 -21660,3011:393,113,-9,0,0,0.668859 -21661,3011:394,114,-9,0,0,0.671175 -21662,3011:495,115,-9,0,0,0.677224 -21663,3011:496,116,-9,0,0,0.677448 -21664,3011:497,117,-9,0,0,0.675244 -21665,3011:498,118,-9,0,0,0.674116 -21666,3011:499,119,-9,0,0,0.676234 -21667,3012:390,120,-9,0,0,0.677987 -21668,3012:392,122,-9,0,0,0.682256 -21669,3012:393,123,-9,0,0,0.678861 -21670,3012:495,125,-9,0,0,0.68368 -21671,3012:496,126,-9,0,0,0.684057 -21672,3012:497,127,-9,0,0,0.682746 -21673,3012:498,128,-9,0,0,0.693046 -21674,3012:499,129,-9,0,0,0.697292 -21675,3013:390,130,-9,0,0,0.695619 -21676,3013:391,131,-9,0,0,0.699175 -21677,3013:392,132,-9,0,0,0.695793 -21678,3013:393,133,-9,0,0,0.696858 -21679,3013:394,134,-9,0,0,0.691163 -21680,3013:495,135,-9,0,0,0.683991 -21681,3013:496,136,-9,0,0,0.675672 -21682,3013:497,137,-9,0,0,0.669927 -21683,3013:498,138,-9,0,0,0.671175 -21684,3013:499,139,-9,0,0,0.675649 -21685,3014:390,140,-9,0,0,0.678032 -21686,3014:391,141,-9,0,0,0.681699 -21687,3014:392,142,-9,0,0,0.684523 -21688,3014:393,143,-9,0,0,0.67637 -21689,3014:394,144,-9,0,0,0.658216 -21690,3014:495,145,-9,0,0,0.648467 -21691,3014:496,146,-9,0,0,0.651248 -21692,3014:497,147,-9,0,0,0.659971 -21693,3014:498,148,-9,0,0,0.640912 -21694,3015:391,151,-9,0,0,0.666761 -21695,3015:392,152,-9,0,0,0.675154 -21696,3015:393,153,-9,0,0,0.677605 -21697,3015:394,154,-9,0,0,0.679689 -21698,3015:495,155,-9,0,0,0.680136 -21699,3015:496,156,-9,0,0,0.680672 -21700,3015:497,157,-9,0,0,0.681319 -21701,3015:498,158,-9,0,0,0.681699 -21702,3015:499,159,-9,0,0,0.679935 -21703,3016:390,160,-9,0,0,0.677852 -21704,3016:391,161,-9,0,0,0.674252 -21705,3016:392,162,-9,0,0,0.668107 -21706,3016:393,163,-9,0,0,0.668335 -21707,3016:394,164,-9,0,0,0.668859 -21708,3016:495,165,-9,0,0,0.669859 -21709,3016:496,166,-9,0,0,0.66945 -21710,3016:497,167,-9,0,0,0.669768 -21711,3016:498,168,-9,0,0,0.670063 -21712,3016:499,169,-9,0,0,0.6697 -21713,3017:390,170,-9,0,0,0.669109 -21714,3017:391,171,-9,0,0,0.668039 -21715,3017:392,172,-9,0,0,0.666076 -21716,3017:393,173,-9,0,0,0.666488 -21717,3017:394,174,-9,0,0,0.663053 -21718,3017:495,175,-9,0,0,0.662777 -21719,3017:496,176,-9,0,0,0.662042 -21720,3017:497,177,-9,0,0,0.661859 -21721,3017:498,178,-9,0,0,0.661904 -21722,3017:499,179,-9,0,0,0.662295 -21723,3018:390,180,-9,0,0,0.664246 -21724,5018:380,-180,-8,0,0,0.673959 -21725,5017:489,-179,-8,0,0,0.675829 -21726,5017:488,-178,-8,0,0,0.676932 -21727,5017:487,-177,-8,0,0,0.677628 -21728,5017:486,-176,-8,0,0,0.676976 -21729,5017:485,-175,-8,0,0,0.676145 -21730,5017:384,-174,-8,0,0,0.676347 -21731,5017:383,-173,-8,0,0,0.676954 -21732,5017:382,-172,-8,0,0,0.676909 -21733,5017:381,-171,-8,0,0,0.677246 -21734,5017:380,-170,-8,0,0,0.677583 -21735,5016:489,-169,-8,0,0,0.676954 -21736,5016:488,-168,-8,0,0,0.676572 -21737,5016:487,-167,-8,0,0,0.677381 -21738,5016:486,-166,-8,0,0,0.677897 -21739,5016:485,-165,-8,0,0,0.67839 -21740,5016:384,-164,-8,0,0,0.678592 -21741,5016:383,-163,-8,0,0,0.677695 -21742,5016:382,-162,-8,0,0,0.676976 -21743,5016:381,-161,-8,0,0,0.676819 -21744,5016:380,-160,-8,0,0,0.677291 -21745,5015:489,-159,-8,0,0,0.676684 -21746,5015:488,-158,-8,0,0,0.675762 -21747,5015:487,-157,-8,0,0,0.673936 -21748,5015:486,-156,-8,0,0,0.672036 -21749,5015:485,-155,-8,0,0,0.669836 -21750,5015:384,-154,-8,0,0,0.668016 -21751,5015:383,-153,-8,0,0,0.667218 -21752,5015:382,-152,-8,0,0,0.665459 -21753,5015:381,-151,-8,0,0,0.662915 -21754,5015:380,-150,-8,0,0,0.66103 -21755,5014:489,-149,-8,0,0,0.659348 -21756,5014:488,-148,-8,0,0,0.656248 -21757,5014:487,-147,-8,0,0,0.653834 -21758,5014:486,-146,-8,0,0,0.652461 -21759,5014:485,-145,-8,0,0,0.651272 -21760,5014:384,-144,-8,0,0,0.649239 -21761,5014:383,-143,-8,0,0,0.646872 -21762,5014:382,-142,-8,0,0,0.645086 -21763,5014:381,-141,-8,0,0,0.642919 -21764,5014:380,-140,-8,0,0,0.640273 -21765,5013:489,-139,-8,0,0,0.637904 -21766,5013:488,-138,-8,0,0,0.635955 -21767,5013:487,-137,-8,0,0,0.633788 -21768,5013:486,-136,-8,0,0,0.630802 -21769,5013:485,-135,-8,0,0,0.627349 -21770,5013:384,-134,-8,0,0,0.624077 -21771,5013:383,-133,-8,0,0,0.621953 -21772,5013:382,-132,-8,0,0,0.619341 -21773,5013:381,-131,-8,0,0,0.616818 -21774,5013:380,-130,-8,0,0,0.614192 -21775,5012:489,-129,-8,0,0,0.61134 -21776,5012:488,-128,-8,0,0,0.60892 -21777,5012:487,-127,-8,0,0,0.606275 -21778,5012:486,-126,-8,0,0,0.603549 -21779,5012:485,-125,-8,0,0,0.60136 -21780,5012:384,-124,-8,0,0,0.599066 -21781,5012:383,-123,-8,0,0,0.59625 -21782,5012:382,-122,-8,0,0,0.593056 -21783,5012:381,-121,-8,0,0,0.589157 -21784,5012:380,-120,-8,0,0,0.584748 -21785,5011:489,-119,-8,0,0,0.580401 -21786,5011:488,-118,-8,0,0,0.576467 -21787,5011:487,-117,-8,0,0,0.573127 -21788,5011:486,-116,-8,0,0,0.569201 -21789,5011:485,-115,-8,0,0,0.563953 -21790,5011:384,-114,-8,0,0,0.558464 -21791,5011:383,-113,-8,0,0,0.553035 -21792,5011:382,-112,-8,0,0,0.549045 -21793,5011:381,-111,-8,0,0,0.54492 -21794,5011:380,-110,-8,0,0,0.538722 -21795,5010:489,-109,-8,0,0,0.533714 -21796,5010:488,-108,-8,0,0,0.530901 -21797,5010:487,-107,-8,0,0,0.529365 -21798,5010:486,-106,-8,0,0,0.52414 -21799,5010:485,-105,-8,0,0,0.520988 -21800,5010:384,-104,-8,0,0,0.52191 -21801,5010:383,-103,-8,0,0,0.520013 -21802,5010:382,-102,-8,0,0,0.515524 -21803,5010:381,-101,-8,0,0,0.512264 -21804,5010:380,-100,-8,0,0,0.507411 -21805,5009:489,-99,-8,0,0,0.509645 -21806,5009:488,-98,-8,0,0,0.5117 -21807,5009:487,-97,-8,0,0,0.514368 -21808,5009:486,-96,-8,0,0,0.514086 -21809,5009:485,-95,-8,0,0,0.509157 -21810,5009:384,-94,-8,0,0,0.506667 -21811,5009:383,-93,-8,0,0,0.509363 -21812,5009:382,-92,-8,0,0,0.513137 -21813,5009:381,-91,-8,0,0,0.513085 -21814,5009:380,-90,-8,0,0,0.512931 -21815,5008:489,-89,-8,0,0,0.514215 -21816,5008:488,-88,-8,0,0,0.511982 -21817,5008:487,-87,-8,0,0,0.509748 -21818,5008:486,-86,-8,0,0,0.50754 -21819,5008:485,-85,-8,0,0,0.503508 -21820,5008:384,-84,-8,0,0,0.504381 -21821,5008:383,-83,-8,0,0,0.504047 -21822,5008:382,-82,-8,0,0,0.497497 -21823,5008:381,-81,-8,0,0,0.49123 -21824,5008:380,-80,-8,0,0,0.479759 -21825,5007:489,-79,-8,0,0,0.455618 -21826,5003:485,-35,-8,0,0,0.62634 -21827,5003:384,-34,-8,0,0,0.619898 -21828,5003:383,-33,-8,0,0,0.61592 -21829,5003:382,-32,-8,0,0,0.612877 -21830,5003:381,-31,-8,0,0,0.609728 -21831,5003:380,-30,-8,0,0,0.605858 -21832,5002:489,-29,-8,0,0,0.602123 -21833,5002:488,-28,-8,0,0,0.598302 -21834,5002:487,-27,-8,0,0,0.594419 -21835,5002:486,-26,-8,0,0,0.591616 -21836,5002:485,-25,-8,0,0,0.588684 -21837,5002:384,-24,-8,0,0,0.586468 -21838,5002:383,-23,-8,0,0,0.584448 -21839,5002:382,-22,-8,0,0,0.581201 -21840,5002:381,-21,-8,0,0,0.578448 -21841,5002:380,-20,-8,0,0,0.57594 -21842,5001:489,-19,-8,0,0,0.574208 -21843,5001:488,-18,-8,0,0,0.57192 -21844,5001:487,-17,-8,0,0,0.569932 -21845,5001:486,-16,-8,0,0,0.567664 -21846,5001:485,-15,-8,0,0,0.563373 -21847,5001:384,-14,-8,0,0,0.562159 -21848,5001:383,-13,-8,0,0,0.561729 -21849,5001:382,-12,-8,0,0,0.560211 -21850,5001:381,-11,-8,0,0,0.559755 -21851,5001:380,-10,-8,0,0,0.557602 -21852,5000:489,-9,-8,0,0,0.552654 -21853,5000:488,-8,-8,0,0,0.549985 -21854,5000:487,-7,-8,0,0,0.549222 -21855,5000:486,-6,-8,0,0,0.549985 -21856,5000:485,-5,-8,0,0,0.55029 -21857,5000:384,-4,-8,0,0,0.548663 -21858,5000:383,-3,-8,0,0,0.550799 -21859,5000:382,-2,-8,0,0,0.550799 -21860,5000:381,-1,-8,0,0,0.553416 -21861,3000:381,0,-8,0,0,0.559654 -21862,3000:381,1,-8,0,0,0.562462 -21863,3000:382,2,-8,0,0,0.565696 -21864,3000:383,3,-8,0,0,0.571971 -21865,3000:384,4,-8,0,0,0.57737 -21866,3000:485,5,-8,0,0,0.581776 -21867,3000:486,6,-8,0,0,0.590871 -21868,3000:487,7,-8,0,0,0.601507 -21869,3000:488,8,-8,0,0,0.613437 -21870,3000:489,9,-8,0,0,0.624077 -21871,3001:380,10,-8,0,0,0.628453 -21872,3001:381,11,-8,0,0,0.628141 -21873,3001:382,12,-8,0,0,0.612268 -21874,3001:383,13,-8,0,0,0.568219 -21875,3004:380,40,-8,0,0,0.663352 -21876,3004:381,41,-8,0,0,0.665161 -21877,3004:382,42,-8,0,0,0.66683 -21878,3004:383,43,-8,0,0,0.665093 -21879,3004:384,44,-8,0,0,0.663489 -21880,3004:485,45,-8,0,0,0.661076 -21881,3004:486,46,-8,0,0,0.657314 -21882,3004:487,47,-8,0,0,0.657823 -21883,3004:488,48,-8,0,0,0.659024 -21884,3004:489,49,-8,0,0,0.661099 -21885,3005:380,50,-8,0,0,0.66218 -21886,3005:381,51,-8,0,0,0.660892 -21887,3005:382,52,-8,0,0,0.660662 -21888,3005:383,53,-8,0,0,0.660938 -21889,3005:384,54,-8,0,0,0.663902 -21890,3005:485,55,-8,0,0,0.665367 -21891,3005:486,56,-8,0,0,0.665093 -21892,3005:487,57,-8,0,0,0.663879 -21893,3005:488,58,-8,0,0,0.660823 -21894,3005:489,59,-8,0,0,0.655019 -21895,3006:380,60,-8,0,0,0.6424 -21896,3006:381,61,-8,0,0,0.651062 -21897,3006:382,62,-8,0,0,0.652158 -21898,3006:383,63,-8,0,0,0.653415 -21899,3006:384,64,-8,0,0,0.65402 -21900,3006:485,65,-8,0,0,0.656156 -21901,3006:486,66,-8,0,0,0.658608 -21902,3006:487,67,-8,0,0,0.660339 -21903,3006:488,68,-8,0,0,0.662847 -21904,3006:489,69,-8,0,0,0.66436 -21905,3007:380,70,-8,0,0,0.665047 -21906,3007:381,71,-8,0,0,0.666807 -21907,3007:382,72,-8,0,0,0.667035 -21908,3007:384,74,-8,0,0,0.665962 -21909,3007:485,75,-8,0,0,0.665688 -21910,3007:486,76,-8,0,0,0.666076 -21911,3007:487,77,-8,0,0,0.66475 -21912,3007:488,78,-8,0,0,0.663145 -21913,3007:489,79,-8,0,0,0.661996 -21914,3008:380,80,-8,0,0,0.660984 -21915,3008:381,81,-8,0,0,0.654624 -21916,3008:382,82,-8,0,0,0.649473 -21917,3008:383,83,-8,0,0,0.64372 -21918,3008:384,84,-8,0,0,0.640107 -21919,3008:485,85,-8,0,0,0.639065 -21920,3008:486,86,-8,0,0,0.639302 -21921,3008:487,87,-8,0,0,0.640628 -21922,3008:488,88,-8,0,0,0.642377 -21923,3008:489,89,-8,0,0,0.64365 -21924,3009:380,90,-8,0,0,0.64398 -21925,3009:381,91,-8,0,0,0.642565 -21926,3009:382,92,-8,0,0,0.641881 -21927,3009:383,93,-8,0,0,0.642825 -21928,3009:384,94,-8,0,0,0.642966 -21929,3009:485,95,-8,0,0,0.641881 -21930,3009:486,96,-8,0,0,0.64025 -21931,3009:487,97,-8,0,0,0.639041 -21932,3009:488,98,-8,0,0,0.637618 -21933,3009:489,99,-8,0,0,0.637642 -21934,3010:380,100,-8,0,0,0.641077 -21935,3010:381,101,-8,0,0,0.645157 -21936,3010:382,102,-8,0,0,0.647459 -21937,3010:383,103,-8,0,0,0.649122 -21938,3010:384,104,-8,0,0,0.650478 -21939,3010:485,105,-8,0,0,0.65281 -21940,3010:486,106,-8,0,0,0.65488 -21941,3010:487,107,-8,0,0,0.656712 -21942,3010:488,108,-8,0,0,0.657777 -21943,3010:489,109,-8,0,0,0.659002 -21944,3011:380,110,-8,0,0,0.659786 -21945,3011:381,111,-8,0,0,0.660915 -21946,3011:382,112,-8,0,0,0.661145 -21947,3011:383,113,-8,0,0,0.66326 -21948,3011:384,114,-8,0,0,0.666396 -21949,3011:485,115,-8,0,0,0.665619 -21950,3012:383,123,-8,0,0,0.692325 -21951,3012:384,124,-8,0,0,0.689208 -21952,3012:485,125,-8,0,0,0.683635 -21953,3012:488,128,-8,0,0,0.680181 -21954,3012:489,129,-8,0,0,0.684701 -21955,3013:380,130,-8,0,0,0.684634 -21956,3013:381,131,-8,0,0,0.686252 -21957,3013:382,132,-8,0,0,0.688173 -21958,3013:383,133,-8,0,0,0.686583 -21959,3013:384,134,-8,0,0,0.680315 -21960,3013:485,135,-8,0,0,0.670041 -21961,3013:486,136,-8,0,0,0.672648 -21962,3013:487,137,-8,0,0,0.677089 -21963,3013:488,138,-8,0,0,0.693833 -21964,3013:489,139,-8,0,0,0.693352 -21965,3014:380,140,-8,0,0,0.692106 -21966,3014:384,144,-8,0,0,0.68923 -21967,3014:485,145,-8,0,0,0.661835 -21968,3014:486,146,-8,0,0,0.67029 -21969,3014:489,149,-8,0,0,0.671742 -21970,3015:380,150,-8,0,0,0.672896 -21971,3015:381,151,-8,0,0,0.677067 -21972,3015:382,152,-8,0,0,0.679958 -21973,3015:383,153,-8,0,0,0.683235 -21974,3015:384,154,-8,0,0,0.684945 -21975,3015:485,155,-8,0,0,0.68687 -21976,3015:486,156,-8,0,0,0.685322 -21977,3015:487,157,-8,0,0,0.686362 -21978,3015:488,158,-8,0,0,0.687401 -21979,3015:489,159,-8,0,0,0.687445 -21980,3016:380,160,-8,0,0,0.681029 -21981,3016:382,162,-8,0,0,0.678794 -21982,3016:383,163,-8,0,0,0.676504 -21983,3016:384,164,-8,0,0,0.675942 -21984,3016:485,165,-8,0,0,0.674613 -21985,3016:486,166,-8,0,0,0.674184 -21986,3016:487,167,-8,0,0,0.675019 -21987,3016:488,168,-8,0,0,0.675537 -21988,3016:489,169,-8,0,0,0.674973 -21989,3017:380,170,-8,0,0,0.674771 -21990,3017:381,171,-8,0,0,0.674861 -21991,3017:382,172,-8,0,0,0.674929 -21992,3017:383,173,-8,0,0,0.675942 -21993,3017:384,174,-8,0,0,0.6738 -21994,3017:485,175,-8,0,0,0.671832 -21995,3017:486,176,-8,0,0,0.671425 -21996,3017:487,177,-8,0,0,0.67079 -21997,3017:488,178,-8,0,0,0.670744 -21998,3017:489,179,-8,0,0,0.671697 -21999,3018:380,180,-8,0,0,0.673959 -22000,5018:370,-180,-7,0,0,0.681163 -22001,5017:479,-179,-7,0,0,0.68094 -22002,5017:478,-178,-7,0,0,0.680338 -22003,5017:477,-177,-7,0,0,0.679264 -22004,5017:476,-176,-7,0,0,0.678099 -22005,5017:475,-175,-7,0,0,0.678099 -22006,5017:374,-174,-7,0,0,0.678503 -22007,5017:373,-173,-7,0,0,0.678928 -22008,5017:372,-172,-7,0,0,0.678861 -22009,5017:371,-171,-7,0,0,0.678615 -22010,5017:370,-170,-7,0,0,0.677672 -22011,5016:479,-169,-7,0,0,0.677089 -22012,5016:478,-168,-7,0,0,0.677381 -22013,5016:477,-167,-7,0,0,0.67783 -22014,5016:476,-166,-7,0,0,0.678122 -22015,5016:475,-165,-7,0,0,0.677448 -22016,5016:374,-164,-7,0,0,0.676617 -22017,5016:373,-163,-7,0,0,0.676077 -22018,5016:372,-162,-7,0,0,0.675064 -22019,5016:371,-161,-7,0,0,0.673868 -22020,5016:370,-160,-7,0,0,0.672286 -22021,5015:479,-159,-7,0,0,0.670699 -22022,5015:478,-158,-7,0,0,0.668198 -22023,5015:477,-157,-7,0,0,0.665596 -22024,5015:476,-156,-7,0,0,0.663604 -22025,5015:475,-155,-7,0,0,0.662249 -22026,5015:374,-154,-7,0,0,0.660247 -22027,5015:373,-153,-7,0,0,0.658031 -22028,5015:372,-152,-7,0,0,0.655599 -22029,5015:371,-151,-7,0,0,0.653788 -22030,5015:370,-150,-7,0,0,0.651924 -22031,5014:479,-149,-7,0,0,0.649402 -22032,5014:478,-148,-7,0,0,0.647716 -22033,5014:477,-147,-7,0,0,0.64605 -22034,5014:476,-146,-7,0,0,0.643626 -22035,5014:475,-145,-7,0,0,0.641101 -22036,5014:374,-144,-7,0,0,0.63897 -22037,5014:373,-143,-7,0,0,0.63712 -22038,5014:372,-142,-7,0,0,0.635717 -22039,5014:371,-141,-7,0,0,0.634693 -22040,5014:370,-140,-7,0,0,0.633478 -22041,5013:479,-139,-7,0,0,0.631471 -22042,5013:478,-138,-7,0,0,0.629173 -22043,5013:477,-137,-7,0,0,0.626749 -22044,5013:476,-136,-7,0,0,0.624197 -22045,5013:475,-135,-7,0,0,0.621494 -22046,5013:374,-134,-7,0,0,0.618953 -22047,5013:373,-133,-7,0,0,0.616478 -22048,5013:372,-132,-7,0,0,0.614436 -22049,5013:371,-131,-7,0,0,0.612902 -22050,5013:370,-130,-7,0,0,0.611902 -22051,5012:479,-129,-7,0,0,0.610412 -22052,5012:478,-128,-7,0,0,0.608431 -22053,5012:477,-127,-7,0,0,0.606226 -22054,5012:476,-126,-7,0,0,0.603476 -22055,5012:475,-125,-7,0,0,0.600028 -22056,5012:374,-124,-7,0,0,0.596498 -22057,5012:373,-123,-7,0,0,0.592982 -22058,5012:372,-122,-7,0,0,0.589008 -22059,5012:371,-121,-7,0,0,0.584399 -22060,5012:370,-120,-7,0,0,0.579274 -22061,5011:479,-119,-7,0,0,0.574584 -22062,5011:478,-118,-7,0,0,0.570612 -22063,5011:477,-117,-7,0,0,0.56721 -22064,5011:476,-116,-7,0,0,0.564181 -22065,5011:475,-115,-7,0,0,0.561097 -22066,5011:374,-114,-7,0,0,0.558007 -22067,5011:373,-113,-7,0,0,0.554355 -22068,5011:372,-112,-7,0,0,0.550494 -22069,5011:371,-111,-7,0,0,0.546779 -22070,5011:370,-110,-7,0,0,0.544614 -22071,5010:479,-109,-7,0,0,0.544385 -22072,5010:478,-108,-7,0,0,0.544105 -22073,5010:477,-107,-7,0,0,0.542448 -22074,5010:476,-106,-7,0,0,0.539309 -22075,5010:475,-105,-7,0,0,0.536424 -22076,5010:374,-104,-7,0,0,0.535171 -22077,5010:373,-103,-7,0,0,0.535682 -22078,5010:372,-102,-7,0,0,0.533126 -22079,5010:371,-101,-7,0,0,0.529621 -22080,5010:370,-100,-7,0,0,0.529518 -22081,5009:479,-99,-7,0,0,0.531284 -22082,5009:478,-98,-7,0,0,0.53241 -22083,5009:477,-97,-7,0,0,0.530364 -22084,5009:476,-96,-7,0,0,0.530977 -22085,5009:475,-95,-7,0,0,0.529877 -22086,5009:374,-94,-7,0,0,0.533535 -22087,5009:373,-93,-7,0,0,0.540662 -22088,5009:372,-92,-7,0,0,0.537139 -22089,5009:371,-91,-7,0,0,0.534507 -22090,5009:370,-90,-7,0,0,0.537624 -22091,5008:479,-89,-7,0,0,0.534839 -22092,5008:478,-88,-7,0,0,0.530184 -22093,5008:477,-87,-7,0,0,0.529953 -22094,5008:476,-86,-7,0,0,0.527471 -22095,5008:475,-85,-7,0,0,0.523269 -22096,5008:374,-84,-7,0,0,0.521833 -22097,5008:373,-83,-7,0,0,0.511545 -22098,5008:372,-82,-7,0,0,0.50546 -22099,5008:371,-81,-7,0,0,0.5051 -22100,5008:370,-80,-7,0,0,0.472174 -22101,5003:475,-35,-7,0,0,0.626171 -22102,5003:374,-34,-7,0,0,0.619341 -22103,5003:373,-33,-7,0,0,0.613852 -22104,5003:372,-32,-7,0,0,0.609679 -22105,5003:371,-31,-7,0,0,0.607403 -22106,5003:370,-30,-7,0,0,0.605736 -22107,5002:479,-29,-7,0,0,0.604385 -22108,5002:478,-28,-7,0,0,0.602492 -22109,5002:477,-27,-7,0,0,0.600916 -22110,5002:476,-26,-7,0,0,0.599708 -22111,5002:475,-25,-7,0,0,0.597116 -22112,5002:374,-24,-7,0,0,0.593427 -22113,5002:373,-23,-7,0,0,0.591492 -22114,5002:372,-22,-7,0,0,0.589008 -22115,5002:371,-21,-7,0,0,0.588958 -22116,5002:370,-20,-7,0,0,0.586543 -22117,5001:479,-19,-7,0,0,0.586368 -22118,5001:478,-18,-7,0,0,0.584499 -22119,5001:477,-17,-7,0,0,0.582726 -22120,5001:476,-16,-7,0,0,0.581851 -22121,5001:475,-15,-7,0,0,0.576693 -22122,5001:374,-14,-7,0,0,0.575262 -22123,5001:373,-13,-7,0,0,0.574861 -22124,5001:372,-12,-7,0,0,0.574886 -22125,5001:371,-11,-7,0,0,0.574534 -22126,5001:370,-10,-7,0,0,0.570586 -22127,5000:479,-9,-7,0,0,0.565898 -22128,5000:478,-8,-7,0,0,0.562791 -22129,5000:477,-7,-7,0,0,0.563676 -22130,5000:476,-6,-7,0,0,0.566907 -22131,5000:475,-5,-7,0,0,0.567261 -22132,5000:374,-4,-7,0,0,0.567437 -22133,5000:373,-3,-7,0,0,0.574183 -22134,5000:372,-2,-7,0,0,0.580601 -22135,5000:371,-1,-7,0,0,0.585446 -22136,3000:371,0,-7,0,0,0.590499 -22137,3000:371,1,-7,0,0,0.5937 -22138,3000:372,2,-7,0,0,0.593774 -22139,3000:373,3,-7,0,0,0.593204 -22140,3000:374,4,-7,0,0,0.597141 -22141,3000:475,5,-7,0,0,0.603648 -22142,3000:476,6,-7,0,0,0.610168 -22143,3000:477,7,-7,0,0,0.622992 -22144,3000:478,8,-7,0,0,0.632618 -22145,3000:479,9,-7,0,0,0.635384 -22146,3001:370,10,-7,0,0,0.634717 -22147,3001:371,11,-7,0,0,0.625209 -22148,3001:372,12,-7,0,0,0.617377 -22149,3004:370,40,-7,0,0,0.666693 -22150,3004:371,41,-7,0,0,0.671855 -22151,3004:372,42,-7,0,0,0.673462 -22152,3004:373,43,-7,0,0,0.673055 -22153,3004:374,44,-7,0,0,0.671946 -22154,3004:475,45,-7,0,0,0.67079 -22155,3004:476,46,-7,0,0,0.671108 -22156,3004:477,47,-7,0,0,0.670358 -22157,3004:478,48,-7,0,0,0.669564 -22158,3004:479,49,-7,0,0,0.669154 -22159,3005:370,50,-7,0,0,0.668062 -22160,3005:371,51,-7,0,0,0.666236 -22161,3005:372,52,-7,0,0,0.662479 -22162,3005:373,53,-7,0,0,0.661859 -22163,3005:374,54,-7,0,0,0.664772 -22164,3005:475,55,-7,0,0,0.666647 -22165,3005:476,56,-7,0,0,0.667423 -22166,3005:477,57,-7,0,0,0.668381 -22167,3005:478,58,-7,0,0,0.66797 -22168,3005:479,59,-7,0,0,0.665161 -22169,3006:370,60,-7,0,0,0.66218 -22170,3006:371,61,-7,0,0,0.661376 -22171,3006:372,62,-7,0,0,0.661329 -22172,3006:373,63,-7,0,0,0.66172 -22173,3006:374,64,-7,0,0,0.661882 -22174,3006:475,65,-7,0,0,0.66218 -22175,3006:476,66,-7,0,0,0.663512 -22176,3006:477,67,-7,0,0,0.664635 -22177,3006:478,68,-7,0,0,0.66491 -22178,3006:479,69,-7,0,0,0.665161 -22179,3007:370,70,-7,0,0,0.665436 -22180,3007:371,71,-7,0,0,0.662847 -22181,3007:372,72,-7,0,0,0.668062 -22182,3007:374,74,-7,0,0,0.670086 -22183,3007:475,75,-7,0,0,0.670676 -22184,3007:476,76,-7,0,0,0.669927 -22185,3007:477,77,-7,0,0,0.668312 -22186,3007:478,78,-7,0,0,0.667651 -22187,3007:479,79,-7,0,0,0.666076 -22188,3008:370,80,-7,0,0,0.661767 -22189,3008:371,81,-7,0,0,0.658493 -22190,3008:372,82,-7,0,0,0.656874 -22191,3008:373,83,-7,0,0,0.656364 -22192,3008:374,84,-7,0,0,0.655529 -22193,3008:475,85,-7,0,0,0.655205 -22194,3008:476,86,-7,0,0,0.654229 -22195,3008:477,87,-7,0,0,0.654578 -22196,3008:478,88,-7,0,0,0.655878 -22197,3008:479,89,-7,0,0,0.65692 -22198,3009:370,90,-7,0,0,0.6578 -22199,3009:371,91,-7,0,0,0.65773 -22200,3009:372,92,-7,0,0,0.657175 -22201,3009:373,93,-7,0,0,0.656364 -22202,3009:374,94,-7,0,0,0.655112 -22203,3009:475,95,-7,0,0,0.654856 -22204,3009:476,96,-7,0,0,0.653136 -22205,3009:477,97,-7,0,0,0.651808 -22206,3009:478,98,-7,0,0,0.652065 -22207,3009:479,99,-7,0,0,0.652833 -22208,3010:370,100,-7,0,0,0.653369 -22209,3010:371,101,-7,0,0,0.654601 -22210,3010:372,102,-7,0,0,0.655483 -22211,3010:373,103,-7,0,0,0.655205 -22212,3010:374,104,-7,0,0,0.658424 -22213,3010:475,105,-7,0,0,0.664864 -22214,3010:476,106,-7,0,0,0.663879 -22215,3011:475,115,-7,0,0,0.688106 -22216,3011:476,116,-7,0,0,0.690219 -22217,3011:477,117,-7,0,0,0.677672 -22218,3011:478,118,-7,0,0,0.678749 -22219,3011:479,119,-7,0,0,0.674342 -22220,3012:370,120,-7,0,0,0.678323 -22221,3012:371,121,-7,0,0,0.687136 -22222,3012:372,122,-7,0,0,0.691953 -22223,3012:373,123,-7,0,0,0.690659 -22224,3012:374,124,-7,0,0,0.691602 -22225,3012:475,125,-7,0,0,0.690527 -22226,3012:476,126,-7,0,0,0.688371 -22227,3012:477,127,-7,0,0,0.685654 -22228,3012:478,128,-7,0,0,0.682813 -22229,3012:479,129,-7,0,0,0.684324 -22230,3013:370,130,-7,0,0,0.687379 -22231,3013:371,131,-7,0,0,0.684878 -22232,3013:372,132,-7,0,0,0.683813 -22233,3013:373,133,-7,0,0,0.67998 -22234,3013:374,134,-7,0,0,0.677134 -22235,3013:475,135,-7,0,0,0.690593 -22236,3013:476,136,-7,0,0,0.677156 -22237,3013:477,137,-7,0,0,0.675334 -22238,3013:478,138,-7,0,0,0.701719 -22239,3014:478,148,-7,0,0,0.672399 -22240,3014:479,149,-7,0,0,0.675492 -22241,3015:370,150,-7,0,0,0.676707 -22242,3015:371,151,-7,0,0,0.678794 -22243,3015:372,152,-7,0,0,0.685942 -22244,3015:373,153,-7,0,0,0.689274 -22245,3015:374,154,-7,0,0,0.690768 -22246,3015:475,155,-7,0,0,0.692018 -22247,3015:476,156,-7,0,0,0.688724 -22248,3015:478,158,-7,0,0,0.687599 -22249,3015:479,159,-7,0,0,0.68718 -22250,3016:370,160,-7,0,0,0.685344 -22251,3016:371,161,-7,0,0,0.684235 -22252,3016:372,162,-7,0,0,0.684878 -22253,3016:373,163,-7,0,0,0.684124 -22254,3016:374,164,-7,0,0,0.683569 -22255,3016:475,165,-7,0,0,0.680203 -22256,3016:476,166,-7,0,0,0.677605 -22257,3016:477,167,-7,0,0,0.677897 -22258,3016:478,168,-7,0,0,0.678615 -22259,3016:479,169,-7,0,0,0.678749 -22260,3017:370,170,-7,0,0,0.67904 -22261,3017:371,171,-7,0,0,0.678906 -22262,3017:372,172,-7,0,0,0.678143 -22263,3017:373,173,-7,0,0,0.678413 -22264,3017:374,174,-7,0,0,0.678995 -22265,3017:475,175,-7,0,0,0.679085 -22266,3017:476,176,-7,0,0,0.678211 -22267,3017:477,177,-7,0,0,0.677852 -22268,3017:478,178,-7,0,0,0.678659 -22269,3017:479,179,-7,0,0,0.67989 -22270,3018:370,180,-7,0,0,0.681163 -22271,5018:360,-180,-6,0,0,0.680382 -22272,5017:469,-179,-6,0,0,0.680159 -22273,5017:468,-178,-6,0,0,0.678503 -22274,5017:467,-177,-6,0,0,0.677134 -22275,5017:466,-176,-6,0,0,0.676504 -22276,5017:465,-175,-6,0,0,0.675919 -22277,5017:364,-174,-6,0,0,0.676842 -22278,5017:363,-173,-6,0,0,0.67774 -22279,5017:362,-172,-6,0,0,0.677583 -22280,5017:361,-171,-6,0,0,0.676954 -22281,5017:360,-170,-6,0,0,0.676167 -22282,5016:469,-169,-6,0,0,0.675176 -22283,5016:468,-168,-6,0,0,0.6745 -22284,5016:467,-167,-6,0,0,0.67459 -22285,5016:466,-166,-6,0,0,0.673032 -22286,5016:465,-165,-6,0,0,0.671765 -22287,5016:364,-164,-6,0,0,0.670881 -22288,5016:363,-163,-6,0,0,0.67029 -22289,5016:362,-162,-6,0,0,0.668882 -22290,5016:361,-161,-6,0,0,0.666738 -22291,5016:360,-160,-6,0,0,0.664406 -22292,5015:469,-159,-6,0,0,0.662019 -22293,5015:468,-158,-6,0,0,0.659971 -22294,5015:467,-157,-6,0,0,0.657985 -22295,5015:466,-156,-6,0,0,0.656526 -22296,5015:465,-155,-6,0,0,0.654717 -22297,5015:364,-154,-6,0,0,0.652833 -22298,5015:363,-153,-6,0,0,0.650594 -22299,5015:362,-152,-6,0,0,0.648513 -22300,5015:361,-151,-6,0,0,0.647013 -22301,5015:360,-150,-6,0,0,0.64565 -22302,5014:469,-149,-6,0,0,0.643886 -22303,5014:468,-148,-6,0,0,0.64207 -22304,5014:467,-147,-6,0,0,0.640628 -22305,5014:466,-146,-6,0,0,0.639255 -22306,5014:465,-145,-6,0,0,0.636906 -22307,5014:364,-144,-6,0,0,0.634765 -22308,5014:363,-143,-6,0,0,0.632714 -22309,5014:362,-142,-6,0,0,0.630347 -22310,5014:361,-141,-6,0,0,0.627445 -22311,5014:360,-140,-6,0,0,0.624824 -22312,5013:469,-139,-6,0,0,0.622944 -22313,5013:468,-138,-6,0,0,0.622243 -22314,5013:467,-137,-6,0,0,0.620769 -22315,5013:466,-136,-6,0,0,0.619438 -22316,5013:465,-135,-6,0,0,0.617838 -22317,5013:364,-134,-6,0,0,0.615823 -22318,5013:363,-133,-6,0,0,0.613292 -22319,5013:362,-132,-6,0,0,0.610094 -22320,5013:361,-131,-6,0,0,0.607305 -22321,5013:360,-130,-6,0,0,0.605784 -22322,5012:469,-129,-6,0,0,0.604213 -22323,5012:468,-128,-6,0,0,0.602492 -22324,5012:467,-127,-6,0,0,0.6003 -22325,5012:466,-126,-6,0,0,0.597906 -22326,5012:465,-125,-6,0,0,0.594914 -22327,5012:364,-124,-6,0,0,0.591319 -22328,5012:363,-123,-6,0,0,0.588261 -22329,5012:362,-122,-6,0,0,0.584798 -22330,5012:361,-121,-6,0,0,0.581476 -22331,5012:360,-120,-6,0,0,0.578948 -22332,5011:469,-119,-6,0,0,0.576417 -22333,5011:468,-118,-6,0,0,0.573605 -22334,5011:467,-117,-6,0,0,0.570788 -22335,5011:466,-116,-6,0,0,0.568319 -22336,5011:465,-115,-6,0,0,0.566327 -22337,5011:364,-114,-6,0,0,0.563953 -22338,5011:363,-113,-6,0,0,0.561248 -22339,5011:362,-112,-6,0,0,0.558311 -22340,5011:361,-111,-6,0,0,0.555294 -22341,5011:360,-110,-6,0,0,0.552984 -22342,5010:469,-109,-6,0,0,0.55179 -22343,5010:468,-108,-6,0,0,0.550926 -22344,5010:467,-107,-6,0,0,0.54851 -22345,5010:466,-106,-6,0,0,0.545073 -22346,5010:465,-105,-6,0,0,0.544793 -22347,5010:364,-104,-6,0,0,0.547034 -22348,5010:363,-103,-6,0,0,0.54599 -22349,5010:362,-102,-6,0,0,0.543748 -22350,5010:361,-101,-6,0,0,0.542142 -22351,5010:360,-100,-6,0,0,0.542677 -22352,5009:469,-99,-6,0,0,0.543595 -22353,5009:468,-98,-6,0,0,0.541912 -22354,5009:467,-97,-6,0,0,0.540611 -22355,5009:466,-96,-6,0,0,0.540738 -22356,5009:465,-95,-6,0,0,0.542371 -22357,5009:364,-94,-6,0,0,0.547213 -22358,5009:363,-93,-6,0,0,0.554279 -22359,5009:362,-92,-6,0,0,0.559654 -22360,5009:361,-91,-6,0,0,0.56102 -22361,5009:360,-90,-6,0,0,0.560185 -22362,5008:469,-89,-6,0,0,0.55783 -22363,5008:468,-88,-6,0,0,0.551612 -22364,5008:467,-87,-6,0,0,0.544155 -22365,5008:466,-86,-6,0,0,0.538237 -22366,5008:465,-85,-6,0,0,0.532129 -22367,5008:364,-84,-6,0,0,0.522731 -22368,5008:363,-83,-6,0,0,0.516217 -22369,5008:362,-82,-6,0,0,0.524627 -22370,5008:361,-81,-6,0,0,0.512778 -22371,5003:465,-35,-6,0,0,0.61711 -22372,5003:364,-34,-6,0,0,0.612219 -22373,5003:363,-33,-6,0,0,0.612975 -22374,5003:362,-32,-6,0,0,0.612877 -22375,5003:361,-31,-6,0,0,0.611389 -22376,5003:360,-30,-6,0,0,0.610461 -22377,5002:469,-29,-6,0,0,0.608113 -22378,5002:468,-28,-6,0,0,0.603894 -22379,5002:467,-27,-6,0,0,0.602073 -22380,5002:466,-26,-6,0,0,0.601015 -22381,5002:465,-25,-6,0,0,0.600669 -22382,5002:364,-24,-6,0,0,0.599585 -22383,5002:363,-23,-6,0,0,0.596843 -22384,5002:362,-22,-6,0,0,0.594617 -22385,5002:361,-21,-6,0,0,0.594096 -22386,5002:360,-20,-6,0,0,0.593898 -22387,5001:469,-19,-6,0,0,0.594369 -22388,5001:468,-18,-6,0,0,0.594468 -22389,5001:467,-17,-6,0,0,0.592982 -22390,5001:466,-16,-6,0,0,0.593279 -22391,5001:465,-15,-6,0,0,0.592436 -22392,5001:364,-14,-6,0,0,0.589431 -22393,5001:363,-13,-6,0,0,0.586942 -22394,5001:362,-12,-6,0,0,0.586244 -22395,5001:361,-11,-6,0,0,0.585097 -22396,5001:360,-10,-6,0,0,0.581076 -22397,5000:469,-9,-6,0,0,0.578999 -22398,5000:468,-8,-6,0,0,0.580701 -22399,5000:467,-7,-6,0,0,0.583924 -22400,5000:466,-6,-6,0,0,0.585796 -22401,5000:465,-5,-6,0,0,0.587962 -22402,5000:364,-4,-6,0,0,0.589654 -22403,5000:363,-3,-6,0,0,0.591791 -22404,5000:362,-2,-6,0,0,0.595879 -22405,5000:361,-1,-6,0,0,0.601138 -22406,3000:361,0,-6,0,0,0.604262 -22407,3000:361,1,-6,0,0,0.605686 -22408,3000:362,2,-6,0,0,0.606888 -22409,3000:363,3,-6,0,0,0.607109 -22410,3000:364,4,-6,0,0,0.612365 -22411,3000:465,5,-6,0,0,0.619195 -22412,3000:466,6,-6,0,0,0.625113 -22413,3000:467,7,-6,0,0,0.631304 -22414,3000:468,8,-6,0,0,0.635265 -22415,3000:469,9,-6,0,0,0.632762 -22416,3001:360,10,-6,0,0,0.621712 -22417,3001:361,11,-6,0,0,0.584124 -22418,3003:469,39,-6,0,0,0.666556 -22419,3004:360,40,-6,0,0,0.669746 -22420,3004:361,41,-6,0,0,0.676414 -22421,3004:362,42,-6,0,0,0.679062 -22422,3004:363,43,-6,0,0,0.6823 -22423,3004:364,44,-6,0,0,0.683324 -22424,3004:465,45,-6,0,0,0.680762 -22425,3004:466,46,-6,0,0,0.678592 -22426,3004:467,47,-6,0,0,0.677403 -22427,3004:468,48,-6,0,0,0.675019 -22428,3004:469,49,-6,0,0,0.672557 -22429,3005:360,50,-6,0,0,0.670041 -22430,3005:361,51,-6,0,0,0.668631 -22431,3005:362,52,-6,0,0,0.662571 -22432,3005:363,53,-6,0,0,0.659232 -22433,3005:364,54,-6,0,0,0.660293 -22434,3005:465,55,-6,0,0,0.661145 -22435,3005:466,56,-6,0,0,0.662433 -22436,3005:467,57,-6,0,0,0.666511 -22437,3005:468,58,-6,0,0,0.669359 -22438,3005:469,59,-6,0,0,0.669495 -22439,3006:360,60,-6,0,0,0.668016 -22440,3006:361,61,-6,0,0,0.667058 -22441,3006:362,62,-6,0,0,0.666099 -22442,3006:363,63,-6,0,0,0.664589 -22443,3006:364,64,-6,0,0,0.66342 -22444,3006:465,65,-6,0,0,0.662364 -22445,3006:466,66,-6,0,0,0.661697 -22446,3006:467,67,-6,0,0,0.661145 -22447,3006:468,68,-6,0,0,0.65914 -22448,3006:469,69,-6,0,0,0.658978 -22449,3007:360,70,-6,0,0,0.661859 -22450,3007:361,71,-6,0,0,0.662456 -22451,3007:362,72,-6,0,0,0.663787 -22452,3007:364,74,-6,0,0,0.666008 -22453,3007:465,75,-6,0,0,0.666693 -22454,3007:466,76,-6,0,0,0.667446 -22455,3007:467,77,-6,0,0,0.667856 -22456,3007:468,78,-6,0,0,0.667674 -22457,3007:469,79,-6,0,0,0.667469 -22458,3008:360,80,-6,0,0,0.66683 -22459,3008:361,81,-6,0,0,0.666236 -22460,3008:362,82,-6,0,0,0.666511 -22461,3008:363,83,-6,0,0,0.66667 -22462,3008:364,84,-6,0,0,0.667514 -22463,3008:465,85,-6,0,0,0.668631 -22464,3008:466,86,-6,0,0,0.668153 -22465,3008:467,87,-6,0,0,0.667058 -22466,3008:468,88,-6,0,0,0.666921 -22467,3008:469,89,-6,0,0,0.666442 -22468,3009:360,90,-6,0,0,0.666031 -22469,3009:361,91,-6,0,0,0.665711 -22470,3009:362,92,-6,0,0,0.664246 -22471,3009:363,93,-6,0,0,0.663535 -22472,3009:364,94,-6,0,0,0.662318 -22473,3009:465,95,-6,0,0,0.6608 -22474,3009:466,96,-6,0,0,0.659763 -22475,3009:467,97,-6,0,0,0.659024 -22476,3009:468,98,-6,0,0,0.659186 -22477,3009:469,99,-6,0,0,0.659647 -22478,3010:360,100,-6,0,0,0.660155 -22479,3010:361,101,-6,0,0,0.660063 -22480,3010:362,102,-6,0,0,0.65944 -22481,3010:363,103,-6,0,0,0.659394 -22482,3010:364,104,-6,0,0,0.668677 -22483,3010:467,107,-6,0,0,0.677942 -22484,3010:468,108,-6,0,0,0.674703 -22485,3010:469,109,-6,0,0,0.674703 -22486,3011:360,110,-6,0,0,0.672625 -22487,3011:361,111,-6,0,0,0.673868 -22488,3011:362,112,-6,0,0,0.675829 -22489,3011:363,113,-6,0,0,0.677336 -22490,3011:364,114,-6,0,0,0.677762 -22491,3011:465,115,-6,0,0,0.679152 -22492,3011:466,116,-6,0,0,0.683257 -22493,3011:467,117,-6,0,0,0.683946 -22494,3011:468,118,-6,0,0,0.665528 -22495,3011:469,119,-6,0,0,0.67138 -22496,3012:361,121,-6,0,0,0.678838 -22497,3012:362,122,-6,0,0,0.685055 -22498,3012:364,124,-6,0,0,0.685942 -22499,3012:465,125,-6,0,0,0.681119 -22500,3012:466,126,-6,0,0,0.686915 -22501,3012:467,127,-6,0,0,0.685477 -22502,3012:468,128,-6,0,0,0.684767 -22503,3012:469,129,-6,0,0,0.685011 -22504,3013:360,130,-6,0,0,0.684812 -22505,3013:361,131,-6,0,0,0.683191 -22506,3013:362,132,-6,0,0,0.681097 -22507,3013:363,133,-6,0,0,0.682033 -22508,3013:364,134,-6,0,0,0.685631 -22509,3013:465,135,-6,0,0,0.690197 -22510,3013:466,136,-6,0,0,0.67147 -22511,3013:467,137,-6,0,0,0.678928 -22512,3013:468,138,-6,0,0,0.702321 -22513,3014:467,147,-6,0,0,0.669881 -22514,3014:468,148,-6,0,0,0.676842 -22515,3014:469,149,-6,0,0,0.679175 -22516,3015:360,150,-6,0,0,0.680762 -22517,3015:363,153,-6,0,0,0.682211 -22518,3015:364,154,-6,0,0,0.686627 -22519,3015:466,156,-6,0,0,0.680985 -22520,3015:467,157,-6,0,0,0.681342 -22521,3015:468,158,-6,0,0,0.683346 -22522,3015:469,159,-6,0,0,0.683324 -22523,3016:360,160,-6,0,0,0.681877 -22524,3016:361,161,-6,0,0,0.676775 -22525,3016:362,162,-6,0,0,0.68279 -22526,3016:363,163,-6,0,0,0.683413 -22527,3016:364,164,-6,0,0,0.682546 -22528,3016:465,165,-6,0,0,0.681409 -22529,3016:466,166,-6,0,0,0.67904 -22530,3016:467,167,-6,0,0,0.678883 -22531,3016:468,168,-6,0,0,0.679756 -22532,3016:469,169,-6,0,0,0.679958 -22533,3017:360,170,-6,0,0,0.678794 -22534,3017:361,171,-6,0,0,0.678211 -22535,3017:362,172,-6,0,0,0.678143 -22536,3017:363,173,-6,0,0,0.678368 -22537,3017:364,174,-6,0,0,0.678503 -22538,3017:465,175,-6,0,0,0.67857 -22539,3017:466,176,-6,0,0,0.678301 -22540,3017:467,177,-6,0,0,0.678861 -22541,3017:468,178,-6,0,0,0.67942 -22542,3017:469,179,-6,0,0,0.680069 -22543,3018:360,180,-6,0,0,0.680382 -22544,5018:350,-180,-5,0,0,0.680606 -22545,5017:459,-179,-5,0,0,0.679599 -22546,5017:458,-178,-5,0,0,0.678637 -22547,5017:457,-177,-5,0,0,0.678009 -22548,5017:456,-176,-5,0,0,0.67756 -22549,5017:455,-175,-5,0,0,0.676864 -22550,5017:354,-174,-5,0,0,0.677852 -22551,5017:353,-173,-5,0,0,0.676437 -22552,5017:352,-172,-5,0,0,0.674748 -22553,5017:351,-171,-5,0,0,0.673371 -22554,5017:350,-170,-5,0,0,0.672059 -22555,5016:459,-169,-5,0,0,0.671221 -22556,5016:458,-168,-5,0,0,0.670563 -22557,5016:457,-167,-5,0,0,0.6697 -22558,5016:456,-166,-5,0,0,0.668677 -22559,5016:455,-165,-5,0,0,0.66756 -22560,5016:354,-164,-5,0,0,0.666122 -22561,5016:353,-163,-5,0,0,0.664566 -22562,5016:352,-162,-5,0,0,0.662823 -22563,5016:351,-161,-5,0,0,0.660593 -22564,5016:350,-160,-5,0,0,0.658678 -22565,5015:459,-159,-5,0,0,0.657268 -22566,5015:458,-158,-5,0,0,0.655808 -22567,5015:457,-157,-5,0,0,0.653764 -22568,5015:456,-156,-5,0,0,0.651668 -22569,5015:455,-155,-5,0,0,0.650081 -22570,5015:354,-154,-5,0,0,0.647764 -22571,5015:353,-153,-5,0,0,0.645627 -22572,5015:352,-152,-5,0,0,0.643626 -22573,5015:351,-151,-5,0,0,0.642093 -22574,5015:350,-150,-5,0,0,0.640912 -22575,5014:459,-149,-5,0,0,0.640013 -22576,5014:458,-148,-5,0,0,0.639113 -22577,5014:457,-147,-5,0,0,0.637713 -22578,5014:456,-146,-5,0,0,0.635764 -22579,5014:455,-145,-5,0,0,0.633454 -22580,5014:354,-144,-5,0,0,0.631352 -22581,5014:353,-143,-5,0,0,0.629077 -22582,5014:352,-142,-5,0,0,0.626749 -22583,5014:351,-141,-5,0,0,0.62468 -22584,5014:350,-140,-5,0,0,0.622026 -22585,5013:459,-139,-5,0,0,0.620043 -22586,5013:458,-138,-5,0,0,0.617425 -22587,5013:457,-137,-5,0,0,0.614728 -22588,5013:456,-136,-5,0,0,0.611779 -22589,5013:455,-135,-5,0,0,0.609165 -22590,5013:354,-134,-5,0,0,0.606839 -22591,5013:353,-133,-5,0,0,0.604852 -22592,5013:352,-132,-5,0,0,0.603722 -22593,5013:351,-131,-5,0,0,0.602836 -22594,5013:350,-130,-5,0,0,0.600226 -22595,5012:459,-129,-5,0,0,0.598055 -22596,5012:458,-128,-5,0,0,0.595483 -22597,5012:457,-127,-5,0,0,0.593155 -22598,5012:456,-126,-5,0,0,0.590449 -22599,5012:455,-125,-5,0,0,0.588037 -22600,5012:354,-124,-5,0,0,0.585945 -22601,5012:353,-123,-5,0,0,0.583874 -22602,5012:352,-122,-5,0,0,0.581901 -22603,5012:351,-121,-5,0,0,0.58015 -22604,5012:350,-120,-5,0,0,0.578899 -22605,5011:459,-119,-5,0,0,0.57772 -22606,5011:458,-118,-5,0,0,0.576191 -22607,5011:457,-117,-5,0,0,0.573403 -22608,5011:456,-116,-5,0,0,0.570889 -22609,5011:455,-115,-5,0,0,0.568925 -22610,5011:354,-114,-5,0,0,0.566832 -22611,5011:353,-113,-5,0,0,0.564535 -22612,5011:352,-112,-5,0,0,0.561957 -22613,5011:351,-111,-5,0,0,0.559805 -22614,5011:350,-110,-5,0,0,0.55816 -22615,5010:459,-109,-5,0,0,0.557475 -22616,5010:458,-108,-5,0,0,0.556638 -22617,5010:457,-107,-5,0,0,0.556638 -22618,5010:456,-106,-5,0,0,0.557019 -22619,5010:455,-105,-5,0,0,0.556638 -22620,5010:354,-104,-5,0,0,0.557424 -22621,5010:353,-103,-5,0,0,0.55603 -22622,5010:352,-102,-5,0,0,0.554939 -22623,5010:351,-101,-5,0,0,0.553975 -22624,5010:350,-100,-5,0,0,0.552121 -22625,5009:459,-99,-5,0,0,0.550011 -22626,5009:458,-98,-5,0,0,0.550494 -22627,5009:457,-97,-5,0,0,0.553136 -22628,5009:456,-96,-5,0,0,0.55334 -22629,5009:455,-95,-5,0,0,0.553873 -22630,5009:354,-94,-5,0,0,0.555345 -22631,5009:353,-93,-5,0,0,0.557728 -22632,5009:352,-92,-5,0,0,0.560616 -22633,5009:351,-91,-5,0,0,0.563397 -22634,5009:350,-90,-5,0,0,0.566579 -22635,5008:459,-89,-5,0,0,0.564535 -22636,5008:458,-88,-5,0,0,0.558742 -22637,5008:457,-87,-5,0,0,0.553822 -22638,5008:456,-86,-5,0,0,0.548001 -22639,5008:455,-85,-5,0,0,0.542524 -22640,5008:354,-84,-5,0,0,0.538748 -22641,5008:353,-83,-5,0,0,0.536577 -22642,5008:352,-82,-5,0,0,0.541121 -22643,5008:351,-81,-5,0,0,0.528289 -22644,5003:458,-38,-5,0,0,0.622195 -22645,5003:457,-37,-5,0,0,0.615798 -22646,5003:456,-36,-5,0,0,0.616721 -22647,5003:455,-35,-5,0,0,0.617474 -22648,5003:354,-34,-5,0,0,0.616916 -22649,5003:353,-33,-5,0,0,0.616042 -22650,5003:352,-32,-5,0,0,0.615093 -22651,5003:351,-31,-5,0,0,0.613803 -22652,5003:350,-30,-5,0,0,0.612389 -22653,5002:459,-29,-5,0,0,0.611926 -22654,5002:458,-28,-5,0,0,0.611487 -22655,5002:457,-27,-5,0,0,0.610534 -22656,5002:456,-26,-5,0,0,0.608456 -22657,5002:455,-25,-5,0,0,0.606766 -22658,5002:354,-24,-5,0,0,0.60679 -22659,5002:353,-23,-5,0,0,0.607476 -22660,5002:352,-22,-5,0,0,0.606912 -22661,5002:351,-21,-5,0,0,0.605834 -22662,5002:350,-20,-5,0,0,0.604581 -22663,5001:459,-19,-5,0,0,0.603181 -22664,5001:458,-18,-5,0,0,0.602541 -22665,5001:457,-17,-5,0,0,0.603402 -22666,5001:456,-16,-5,0,0,0.605073 -22667,5001:455,-15,-5,0,0,0.605932 -22668,5001:354,-14,-5,0,0,0.606005 -22669,5001:353,-13,-5,0,0,0.606447 -22670,5001:352,-12,-5,0,0,0.606692 -22671,5001:351,-11,-5,0,0,0.60701 -22672,5001:350,-10,-5,0,0,0.608627 -22673,5000:459,-9,-5,0,0,0.610021 -22674,5000:458,-8,-5,0,0,0.610876 -22675,5000:457,-7,-5,0,0,0.611219 -22676,5000:456,-6,-5,0,0,0.612633 -22677,5000:455,-5,-5,0,0,0.61373 -22678,5000:354,-4,-5,0,0,0.614461 -22679,5000:353,-3,-5,0,0,0.615677 -22680,5000:352,-2,-5,0,0,0.617328 -22681,5000:351,-1,-5,0,0,0.617717 -22682,3000:351,0,-5,0,0,0.616649 -22683,3000:351,1,-5,0,0,0.616867 -22684,3000:352,2,-5,0,0,0.618783 -22685,3000:353,3,-5,0,0,0.622919 -22686,3000:354,4,-5,0,0,0.626604 -22687,3000:455,5,-5,0,0,0.628502 -22688,3000:456,6,-5,0,0,0.629796 -22689,3000:457,7,-5,0,0,0.630634 -22690,3000:458,8,-5,0,0,0.627445 -22691,3000:459,9,-5,0,0,0.618008 -22692,3001:350,10,-5,0,0,0.603353 -22693,3001:351,11,-5,0,0,0.596448 -22694,3004:350,40,-5,0,0,0.655645 -22695,3004:351,41,-5,0,0,0.670948 -22696,3004:352,42,-5,0,0,0.676999 -22697,3004:353,43,-5,0,0,0.676437 -22698,3004:354,44,-5,0,0,0.67045 -22699,3004:455,45,-5,0,0,0.67423 -22700,3004:456,46,-5,0,0,0.683591 -22701,3004:457,47,-5,0,0,0.684346 -22702,3004:458,48,-5,0,0,0.681944 -22703,3004:459,49,-5,0,0,0.679443 -22704,3005:350,50,-5,0,0,0.676864 -22705,3005:351,51,-5,0,0,0.6731 -22706,3005:352,52,-5,0,0,0.669268 -22707,3005:353,53,-5,0,0,0.663742 -22708,3005:354,54,-5,0,0,0.660454 -22709,3005:455,55,-5,0,0,0.659417 -22710,3005:456,56,-5,0,0,0.661697 -22711,3005:457,57,-5,0,0,0.663397 -22712,3005:458,58,-5,0,0,0.667742 -22713,3005:459,59,-5,0,0,0.668699 -22714,3006:350,60,-5,0,0,0.668426 -22715,3006:351,61,-5,0,0,0.667674 -22716,3006:352,62,-5,0,0,0.665734 -22717,3006:353,63,-5,0,0,0.66397 -22718,3006:354,64,-5,0,0,0.662962 -22719,3006:455,65,-5,0,0,0.66156 -22720,3006:456,66,-5,0,0,0.659809 -22721,3006:457,67,-5,0,0,0.657892 -22722,3006:458,68,-5,0,0,0.656666 -22723,3006:459,69,-5,0,0,0.656225 -22724,3007:350,70,-5,0,0,0.656827 -22725,3007:351,71,-5,0,0,0.658146 -22726,3007:352,72,-5,0,0,0.659716 -22727,3007:354,74,-5,0,0,0.661329 -22728,3007:455,75,-5,0,0,0.66149 -22729,3007:456,76,-5,0,0,0.662019 -22730,3007:457,77,-5,0,0,0.662571 -22731,3007:458,78,-5,0,0,0.662732 -22732,3007:459,79,-5,0,0,0.663191 -22733,3008:350,80,-5,0,0,0.664223 -22734,3008:351,81,-5,0,0,0.665665 -22735,3008:352,82,-5,0,0,0.666761 -22736,3008:353,83,-5,0,0,0.667651 -22737,3008:354,84,-5,0,0,0.669154 -22738,3008:455,85,-5,0,0,0.670586 -22739,3008:456,86,-5,0,0,0.671855 -22740,3008:457,87,-5,0,0,0.671697 -22741,3008:458,88,-5,0,0,0.670722 -22742,3008:459,89,-5,0,0,0.670155 -22743,3009:350,90,-5,0,0,0.669109 -22744,3009:351,91,-5,0,0,0.667537 -22745,3009:352,92,-5,0,0,0.66635 -22746,3009:353,93,-5,0,0,0.665299 -22747,3009:354,94,-5,0,0,0.663948 -22748,3009:455,95,-5,0,0,0.662709 -22749,3009:456,96,-5,0,0,0.661628 -22750,3009:457,97,-5,0,0,0.660892 -22751,3009:458,98,-5,0,0,0.660431 -22752,3009:459,99,-5,0,0,0.660662 -22753,3010:350,100,-5,0,0,0.661628 -22754,3010:351,101,-5,0,0,0.663191 -22755,3010:352,102,-5,0,0,0.668972 -22756,3010:457,107,-5,0,0,0.682122 -22757,3010:458,108,-5,0,0,0.680091 -22758,3010:459,109,-5,0,0,0.674274 -22759,3011:350,110,-5,0,0,0.668995 -22760,3011:351,111,-5,0,0,0.671651 -22761,3011:352,112,-5,0,0,0.675649 -22762,3011:353,113,-5,0,0,0.677538 -22763,3011:354,114,-5,0,0,0.67942 -22764,3011:456,116,-5,0,0,0.686185 -22765,3011:457,117,-5,0,0,0.686052 -22766,3011:458,118,-5,0,0,0.677942 -22767,3011:459,119,-5,0,0,0.669655 -22768,3012:351,121,-5,0,0,0.681052 -22769,3012:353,123,-5,0,0,0.682501 -22770,3012:354,124,-5,0,0,0.685145 -22771,3012:455,125,-5,0,0,0.686163 -22772,3012:456,126,-5,0,0,0.683702 -22773,3012:457,127,-5,0,0,0.676932 -22774,3012:458,128,-5,0,0,0.681677 -22775,3012:459,129,-5,0,0,0.686849 -22776,3013:350,130,-5,0,0,0.687246 -22777,3013:351,131,-5,0,0,0.681008 -22778,3013:352,132,-5,0,0,0.680427 -22779,3013:353,133,-5,0,0,0.679935 -22780,3013:354,134,-5,0,0,0.687246 -22781,3014:455,145,-5,0,0,0.659532 -22782,3014:456,146,-5,0,0,0.673122 -22783,3014:457,147,-5,0,0,0.674387 -22784,3014:458,148,-5,0,0,0.674883 -22785,3014:459,149,-5,0,0,0.674906 -22786,3015:350,150,-5,0,0,0.677178 -22787,3015:351,151,-5,0,0,0.680494 -22788,3015:352,152,-5,0,0,0.679175 -22789,3015:354,154,-5,0,0,0.677044 -22790,3015:455,155,-5,0,0,0.67637 -22791,3015:456,156,-5,0,0,0.676796 -22792,3015:457,157,-5,0,0,0.677089 -22793,3015:458,158,-5,0,0,0.678682 -22794,3015:459,159,-5,0,0,0.678547 -22795,3016:350,160,-5,0,0,0.677381 -22796,3016:351,161,-5,0,0,0.677628 -22797,3016:352,162,-5,0,0,0.67783 -22798,3016:353,163,-5,0,0,0.678682 -22799,3016:354,164,-5,0,0,0.678749 -22800,3016:455,165,-5,0,0,0.678816 -22801,3016:456,166,-5,0,0,0.677897 -22802,3016:457,167,-5,0,0,0.677538 -22803,3016:458,168,-5,0,0,0.678189 -22804,3016:459,169,-5,0,0,0.677785 -22805,3017:350,170,-5,0,0,0.676819 -22806,3017:351,171,-5,0,0,0.676324 -22807,3017:352,172,-5,0,0,0.675717 -22808,3017:353,173,-5,0,0,0.675649 -22809,3017:354,174,-5,0,0,0.676347 -22810,3017:455,175,-5,0,0,0.676932 -22811,3017:456,176,-5,0,0,0.676707 -22812,3017:457,177,-5,0,0,0.677313 -22813,3017:458,178,-5,0,0,0.67839 -22814,3017:459,179,-5,0,0,0.679622 -22815,3018:350,180,-5,0,0,0.680606 -22816,5018:140,-180,-4,0,0,0.678032 -22817,5017:249,-179,-4,0,0,0.678099 -22818,5017:248,-178,-4,0,0,0.678009 -22819,5017:247,-177,-4,0,0,0.677785 -22820,5017:246,-176,-4,0,0,0.678143 -22821,5017:245,-175,-4,0,0,0.678816 -22822,5017:144,-174,-4,0,0,0.679287 -22823,5017:143,-173,-4,0,0,0.678861 -22824,5017:142,-172,-4,0,0,0.677246 -22825,5017:141,-171,-4,0,0,0.675492 -22826,5017:140,-170,-4,0,0,0.672896 -22827,5016:249,-169,-4,0,0,0.671402 -22828,5016:248,-168,-4,0,0,0.669995 -22829,5016:247,-167,-4,0,0,0.668631 -22830,5016:246,-166,-4,0,0,0.66731 -22831,5016:245,-165,-4,0,0,0.666236 -22832,5016:144,-164,-4,0,0,0.664727 -22833,5016:143,-163,-4,0,0,0.662663 -22834,5016:142,-162,-4,0,0,0.660754 -22835,5016:141,-161,-4,0,0,0.659024 -22836,5016:140,-160,-4,0,0,0.65773 -22837,5015:249,-159,-4,0,0,0.656225 -22838,5015:248,-158,-4,0,0,0.654508 -22839,5015:247,-157,-4,0,0,0.652554 -22840,5015:246,-156,-4,0,0,0.650385 -22841,5015:245,-155,-4,0,0,0.649169 -22842,5015:144,-154,-4,0,0,0.647154 -22843,5015:143,-153,-4,0,0,0.645345 -22844,5015:142,-152,-4,0,0,0.644027 -22845,5015:141,-151,-4,0,0,0.641904 -22846,5015:140,-150,-4,0,0,0.640415 -22847,5014:249,-149,-4,0,0,0.63814 -22848,5014:248,-148,-4,0,0,0.636383 -22849,5014:247,-147,-4,0,0,0.634216 -22850,5014:246,-146,-4,0,0,0.631471 -22851,5014:245,-145,-4,0,0,0.629173 -22852,5014:144,-144,-4,0,0,0.626941 -22853,5014:143,-143,-4,0,0,0.624776 -22854,5014:142,-142,-4,0,0,0.622654 -22855,5014:141,-141,-4,0,0,0.620164 -22856,5014:140,-140,-4,0,0,0.617814 -22857,5013:249,-139,-4,0,0,0.615749 -22858,5013:248,-138,-4,0,0,0.613292 -22859,5013:247,-137,-4,0,0,0.610852 -22860,5013:246,-136,-4,0,0,0.608383 -22861,5013:245,-135,-4,0,0,0.606177 -22862,5013:144,-134,-4,0,0,0.605023 -22863,5013:143,-133,-4,0,0,0.604115 -22864,5013:142,-132,-4,0,0,0.602713 -22865,5013:141,-131,-4,0,0,0.600818 -22866,5013:140,-130,-4,0,0,0.598573 -22867,5012:249,-129,-4,0,0,0.596498 -22868,5012:248,-128,-4,0,0,0.594963 -22869,5012:247,-127,-4,0,0,0.593675 -22870,5012:246,-126,-4,0,0,0.592559 -22871,5012:245,-125,-4,0,0,0.590723 -22872,5012:144,-124,-4,0,0,0.588137 -22873,5012:143,-123,-4,0,0,0.585421 -22874,5012:142,-122,-4,0,0,0.583201 -22875,5012:141,-121,-4,0,0,0.581576 -22876,5012:140,-120,-4,0,0,0.580526 -22877,5011:249,-119,-4,0,0,0.579074 -22878,5011:248,-118,-4,0,0,0.576868 -22879,5011:247,-117,-4,0,0,0.575313 -22880,5011:246,-116,-4,0,0,0.57358 -22881,5011:245,-115,-4,0,0,0.572096 -22882,5011:144,-114,-4,0,0,0.570032 -22883,5011:143,-113,-4,0,0,0.567462 -22884,5011:142,-112,-4,0,0,0.566251 -22885,5011:141,-111,-4,0,0,0.564586 -22886,5011:140,-110,-4,0,0,0.562361 -22887,5010:249,-109,-4,0,0,0.560211 -22888,5010:248,-108,-4,0,0,0.55935 -22889,5010:247,-107,-4,0,0,0.559805 -22890,5010:246,-106,-4,0,0,0.561097 -22891,5010:245,-105,-4,0,0,0.561173 -22892,5010:144,-104,-4,0,0,0.560261 -22893,5010:143,-103,-4,0,0,0.559021 -22894,5010:142,-102,-4,0,0,0.558007 -22895,5010:141,-101,-4,0,0,0.557273 -22896,5010:140,-100,-4,0,0,0.556664 -22897,5009:249,-99,-4,0,0,0.556664 -22898,5009:248,-98,-4,0,0,0.557146 -22899,5009:247,-97,-4,0,0,0.557247 -22900,5009:246,-96,-4,0,0,0.557475 -22901,5009:245,-95,-4,0,0,0.557932 -22902,5009:144,-94,-4,0,0,0.558236 -22903,5009:143,-93,-4,0,0,0.557956 -22904,5009:142,-92,-4,0,0,0.558007 -22905,5009:141,-91,-4,0,0,0.559476 -22906,5009:140,-90,-4,0,0,0.565494 -22907,5008:249,-89,-4,0,0,0.566832 -22908,5008:248,-88,-4,0,0,0.563701 -22909,5008:247,-87,-4,0,0,0.55816 -22910,5008:246,-86,-4,0,0,0.552121 -22911,5008:245,-85,-4,0,0,0.547696 -22912,5008:144,-84,-4,0,0,0.555015 -22913,5008:143,-83,-4,0,0,0.56231 -22914,5008:142,-82,-4,0,0,0.562867 -22915,5008:141,-81,-4,0,0,0.568521 -22916,5004:143,-43,-4,0,0,0.638164 -22917,5004:142,-42,-4,0,0,0.628334 -22918,5004:141,-41,-4,0,0,0.62622 -22919,5004:140,-40,-4,0,0,0.617571 -22920,5003:249,-39,-4,0,0,0.61876 -22921,5003:248,-38,-4,0,0,0.618978 -22922,5003:247,-37,-4,0,0,0.618056 -22923,5003:246,-36,-4,0,0,0.61762 -22924,5003:245,-35,-4,0,0,0.616867 -22925,5003:144,-34,-4,0,0,0.615628 -22926,5003:143,-33,-4,0,0,0.614533 -22927,5003:142,-32,-4,0,0,0.613292 -22928,5003:141,-31,-4,0,0,0.613608 -22929,5003:140,-30,-4,0,0,0.612877 -22930,5002:249,-29,-4,0,0,0.612024 -22931,5002:248,-28,-4,0,0,0.611145 -22932,5002:247,-27,-4,0,0,0.610632 -22933,5002:246,-26,-4,0,0,0.610192 -22934,5002:245,-25,-4,0,0,0.609728 -22935,5002:144,-24,-4,0,0,0.60919 -22936,5002:143,-23,-4,0,0,0.608823 -22937,5002:142,-22,-4,0,0,0.608554 -22938,5002:141,-21,-4,0,0,0.608309 -22939,5002:140,-20,-4,0,0,0.608284 -22940,5001:249,-19,-4,0,0,0.608431 -22941,5001:248,-18,-4,0,0,0.6087 -22942,5001:247,-17,-4,0,0,0.609165 -22943,5001:246,-16,-4,0,0,0.60919 -22944,5001:245,-15,-4,0,0,0.609972 -22945,5001:144,-14,-4,0,0,0.611438 -22946,5001:143,-13,-4,0,0,0.613292 -22947,5001:142,-12,-4,0,0,0.615628 -22948,5001:141,-11,-4,0,0,0.618032 -22949,5001:140,-10,-4,0,0,0.620043 -22950,5000:249,-9,-4,0,0,0.621397 -22951,5000:248,-8,-4,0,0,0.623016 -22952,5000:247,-7,-4,0,0,0.624004 -22953,5000:246,-6,-4,0,0,0.624872 -22954,5000:245,-5,-4,0,0,0.625498 -22955,5000:144,-4,-4,0,0,0.626003 -22956,5000:143,-3,-4,0,0,0.627037 -22957,5000:142,-2,-4,0,0,0.628262 -22958,5000:141,-1,-4,0,0,0.629844 -22959,3000:141,0,-4,0,0,0.631376 -22960,3000:141,1,-4,0,0,0.631543 -22961,3000:142,2,-4,0,0,0.631136 -22962,3000:143,3,-4,0,0,0.630155 -22963,3000:144,4,-4,0,0,0.628549 -22964,3000:245,5,-4,0,0,0.626171 -22965,3000:246,6,-4,0,0,0.623088 -22966,3000:247,7,-4,0,0,0.617838 -22967,3000:248,8,-4,0,0,0.611755 -22968,3000:249,9,-4,0,0,0.597832 -22969,3004:141,41,-4,0,0,0.626773 -22970,3004:142,42,-4,0,0,0.675334 -22971,3004:143,43,-4,0,0,0.667195 -22972,3004:144,44,-4,0,0,0.654949 -22973,3004:245,45,-4,0,0,0.662777 -22974,3004:246,46,-4,0,0,0.66995 -22975,3004:247,47,-4,0,0,0.677089 -22976,3004:248,48,-4,0,0,0.680829 -22977,3004:249,49,-4,0,0,0.679085 -22978,3005:140,50,-4,0,0,0.676999 -22979,3005:141,51,-4,0,0,0.676302 -22980,3005:142,52,-4,0,0,0.674929 -22981,3005:143,53,-4,0,0,0.671516 -22982,3005:144,54,-4,0,0,0.666511 -22983,3005:245,55,-4,0,0,0.663581 -22984,3005:246,56,-4,0,0,0.661904 -22985,3005:247,57,-4,0,0,0.660362 -22986,3005:248,58,-4,0,0,0.660108 -22987,3005:249,59,-4,0,0,0.661214 -22988,3006:140,60,-4,0,0,0.662364 -22989,3006:141,61,-4,0,0,0.661996 -22990,3006:142,62,-4,0,0,0.660846 -22991,3006:143,63,-4,0,0,0.659855 -22992,3006:144,64,-4,0,0,0.659532 -22993,3006:245,65,-4,0,0,0.659994 -22994,3006:246,66,-4,0,0,0.659624 -22995,3006:247,67,-4,0,0,0.658909 -22996,3006:248,68,-4,0,0,0.65847 -22997,3006:249,69,-4,0,0,0.657985 -22998,3007:140,70,-4,0,0,0.657915 -22999,3007:141,71,-4,0,0,0.658331 -23000,3007:142,72,-4,0,0,0.659463 -23001,3007:144,74,-4,0,0,0.660339 -23002,3007:245,75,-4,0,0,0.660454 -23003,3007:246,76,-4,0,0,0.660386 -23004,3007:247,77,-4,0,0,0.660224 -23005,3007:248,78,-4,0,0,0.659486 -23006,3007:249,79,-4,0,0,0.658886 -23007,3008:140,80,-4,0,0,0.659279 -23008,3008:141,81,-4,0,0,0.659579 -23009,3008:142,82,-4,0,0,0.660408 -23010,3008:143,83,-4,0,0,0.662226 -23011,3008:144,84,-4,0,0,0.664521 -23012,3008:245,85,-4,0,0,0.666442 -23013,3008:246,86,-4,0,0,0.66813 -23014,3008:247,87,-4,0,0,0.669564 -23015,3008:248,88,-4,0,0,0.670358 -23016,3008:249,89,-4,0,0,0.670881 -23017,3009:140,90,-4,0,0,0.669427 -23018,3009:141,91,-4,0,0,0.66756 -23019,3009:142,92,-4,0,0,0.664933 -23020,3009:143,93,-4,0,0,0.663443 -23021,3009:144,94,-4,0,0,0.661882 -23022,3009:245,95,-4,0,0,0.6605 -23023,3009:246,96,-4,0,0,0.659832 -23024,3009:247,97,-4,0,0,0.660293 -23025,3009:248,98,-4,0,0,0.661329 -23026,3009:249,99,-4,0,0,0.663076 -23027,3010:140,100,-4,0,0,0.667879 -23028,3010:141,101,-4,0,0,0.669632 -23029,3010:247,107,-4,0,0,0.67432 -23030,3010:248,108,-4,0,0,0.676347 -23031,3010:249,109,-4,0,0,0.668472 -23032,3011:140,110,-4,0,0,0.676392 -23033,3011:247,117,-4,0,0,0.68603 -23034,3011:248,118,-4,0,0,0.674004 -23035,3011:249,119,-4,0,0,0.666305 -23036,3012:143,123,-4,0,0,0.686959 -23037,3012:144,124,-4,0,0,0.688746 -23038,3012:245,125,-4,0,0,0.690022 -23039,3012:246,126,-4,0,0,0.686893 -23040,3012:247,127,-4,0,0,0.666145 -23041,3012:248,128,-4,0,0,0.666579 -23042,3012:249,129,-4,0,0,0.660892 -23043,3013:140,130,-4,0,0,0.66264 -23044,3013:141,131,-4,0,0,0.66507 -23045,3013:142,132,-4,0,0,0.684812 -23046,3013:143,133,-4,0,0,0.69844 -23047,3013:245,135,-4,0,0,0.671062 -23048,3013:246,136,-4,0,0,0.678592 -23049,3014:141,141,-4,0,0,0.657128 -23050,3014:142,142,-4,0,0,0.663352 -23051,3014:143,143,-4,0,0,0.666784 -23052,3014:144,144,-4,0,0,0.66895 -23053,3014:245,145,-4,0,0,0.67113 -23054,3014:246,146,-4,0,0,0.673213 -23055,3014:247,147,-4,0,0,0.674816 -23056,3014:248,148,-4,0,0,0.674861 -23057,3014:249,149,-4,0,0,0.67628 -23058,3015:140,150,-4,0,0,0.678233 -23059,3015:141,151,-4,0,0,0.676819 -23060,3015:142,152,-4,0,0,0.676999 -23061,3015:143,153,-4,0,0,0.67646 -23062,3015:144,154,-4,0,0,0.675829 -23063,3015:245,155,-4,0,0,0.675897 -23064,3015:246,156,-4,0,0,0.676504 -23065,3015:247,157,-4,0,0,0.676909 -23066,3015:248,158,-4,0,0,0.676482 -23067,3015:249,159,-4,0,0,0.677493 -23068,3016:140,160,-4,0,0,0.677964 -23069,3016:141,161,-4,0,0,0.677583 -23070,3016:142,162,-4,0,0,0.678009 -23071,3016:143,163,-4,0,0,0.678054 -23072,3016:144,164,-4,0,0,0.678413 -23073,3016:245,165,-4,0,0,0.678211 -23074,3016:246,166,-4,0,0,0.678099 -23075,3016:247,167,-4,0,0,0.677336 -23076,3016:248,168,-4,0,0,0.676212 -23077,3016:249,169,-4,0,0,0.675739 -23078,3017:140,170,-4,0,0,0.674816 -23079,3017:141,171,-4,0,0,0.673642 -23080,3017:142,172,-4,0,0,0.67319 -23081,3017:143,173,-4,0,0,0.6731 -23082,3017:144,174,-4,0,0,0.67441 -23083,3017:245,175,-4,0,0,0.6745 -23084,3017:246,176,-4,0,0,0.674861 -23085,3017:247,177,-4,0,0,0.675379 -23086,3017:248,178,-4,0,0,0.675965 -23087,3017:249,179,-4,0,0,0.677089 -23088,3018:140,180,-4,0,0,0.678032 -23089,5018:130,-180,-3,0,0,0.677605 -23090,5017:239,-179,-3,0,0,0.67783 -23091,5017:238,-178,-3,0,0,0.677942 -23092,5017:237,-177,-3,0,0,0.677942 -23093,5017:236,-176,-3,0,0,0.677111 -23094,5017:235,-175,-3,0,0,0.676684 -23095,5017:134,-174,-3,0,0,0.6761 -23096,5017:133,-173,-3,0,0,0.674996 -23097,5017:132,-172,-3,0,0,0.673597 -23098,5017:131,-171,-3,0,0,0.67224 -23099,5017:130,-170,-3,0,0,0.670994 -23100,5016:239,-169,-3,0,0,0.670608 -23101,5016:238,-168,-3,0,0,0.668426 -23102,5016:237,-167,-3,0,0,0.665619 -23103,5016:236,-166,-3,0,0,0.66381 -23104,5016:235,-165,-3,0,0,0.662088 -23105,5016:134,-164,-3,0,0,0.660662 -23106,5016:133,-163,-3,0,0,0.658794 -23107,5016:132,-162,-3,0,0,0.65655 -23108,5016:131,-161,-3,0,0,0.655391 -23109,5016:130,-160,-3,0,0,0.654322 -23110,5015:239,-159,-3,0,0,0.652997 -23111,5015:238,-158,-3,0,0,0.651225 -23112,5015:237,-157,-3,0,0,0.649777 -23113,5015:236,-156,-3,0,0,0.648162 -23114,5015:235,-155,-3,0,0,0.648068 -23115,5015:134,-154,-3,0,0,0.64551 -23116,5015:133,-153,-3,0,0,0.643862 -23117,5015:132,-152,-3,0,0,0.642684 -23118,5015:131,-151,-3,0,0,0.640817 -23119,5015:130,-150,-3,0,0,0.637713 -23120,5014:239,-149,-3,0,0,0.634789 -23121,5014:238,-148,-3,0,0,0.632332 -23122,5014:237,-147,-3,0,0,0.6297 -23123,5014:236,-146,-3,0,0,0.628262 -23124,5014:235,-145,-3,0,0,0.627445 -23125,5014:134,-144,-3,0,0,0.62622 -23126,5014:133,-143,-3,0,0,0.623691 -23127,5014:132,-142,-3,0,0,0.620817 -23128,5014:131,-141,-3,0,0,0.618468 -23129,5014:130,-140,-3,0,0,0.616236 -23130,5013:239,-139,-3,0,0,0.614217 -23131,5013:238,-138,-3,0,0,0.612633 -23132,5013:237,-137,-3,0,0,0.611047 -23133,5013:236,-136,-3,0,0,0.608015 -23134,5013:235,-135,-3,0,0,0.605392 -23135,5013:134,-134,-3,0,0,0.603402 -23136,5013:133,-133,-3,0,0,0.601926 -23137,5013:132,-132,-3,0,0,0.600793 -23138,5013:131,-131,-3,0,0,0.59998 -23139,5013:130,-130,-3,0,0,0.598869 -23140,5012:239,-129,-3,0,0,0.598153 -23141,5012:238,-128,-3,0,0,0.597141 -23142,5012:237,-127,-3,0,0,0.595855 -23143,5012:236,-126,-3,0,0,0.593923 -23144,5012:235,-125,-3,0,0,0.591567 -23145,5012:134,-124,-3,0,0,0.589878 -23146,5012:133,-123,-3,0,0,0.588808 -23147,5012:132,-122,-3,0,0,0.58724 -23148,5012:131,-121,-3,0,0,0.585446 -23149,5012:130,-120,-3,0,0,0.583825 -23150,5011:239,-119,-3,0,0,0.582101 -23151,5011:238,-118,-3,0,0,0.580626 -23152,5011:237,-117,-3,0,0,0.578874 -23153,5011:236,-116,-3,0,0,0.575915 -23154,5011:235,-115,-3,0,0,0.573605 -23155,5011:134,-114,-3,0,0,0.571568 -23156,5011:133,-113,-3,0,0,0.570838 -23157,5011:132,-112,-3,0,0,0.570486 -23158,5011:131,-111,-3,0,0,0.569454 -23159,5011:130,-110,-3,0,0,0.568546 -23160,5010:239,-109,-3,0,0,0.567387 -23161,5010:238,-108,-3,0,0,0.566706 -23162,5010:237,-107,-3,0,0,0.565923 -23163,5010:236,-106,-3,0,0,0.565393 -23164,5010:235,-105,-3,0,0,0.56514 -23165,5010:134,-104,-3,0,0,0.565015 -23166,5010:133,-103,-3,0,0,0.564459 -23167,5010:132,-102,-3,0,0,0.563474 -23168,5010:131,-101,-3,0,0,0.562741 -23169,5010:130,-100,-3,0,0,0.561653 -23170,5009:239,-99,-3,0,0,0.56097 -23171,5009:238,-98,-3,0,0,0.560084 -23172,5009:237,-97,-3,0,0,0.559122 -23173,5009:236,-96,-3,0,0,0.559299 -23174,5009:235,-95,-3,0,0,0.559299 -23175,5009:134,-94,-3,0,0,0.558337 -23176,5009:133,-93,-3,0,0,0.555929 -23177,5009:132,-92,-3,0,0,0.551028 -23178,5009:131,-91,-3,0,0,0.567084 -23179,5009:130,-90,-3,0,0,0.565999 -23180,5008:239,-89,-3,0,0,0.571895 -23181,5008:238,-88,-3,0,0,0.57031 -23182,5008:237,-87,-3,0,0,0.56968 -23183,5008:236,-86,-3,0,0,0.56968 -23184,5008:235,-85,-3,0,0,0.571845 -23185,5008:134,-84,-3,0,0,0.57757 -23186,5008:133,-83,-3,0,0,0.581001 -23187,5008:132,-82,-3,0,0,0.580726 -23188,5008:131,-81,-3,0,0,0.584997 -23189,5004:236,-46,-3,0,0,0.638259 -23190,5004:235,-45,-3,0,0,0.628453 -23191,5004:134,-44,-3,0,0,0.622292 -23192,5004:133,-43,-3,0,0,0.623932 -23193,5004:132,-42,-3,0,0,0.62333 -23194,5004:131,-41,-3,0,0,0.622581 -23195,5004:130,-40,-3,0,0,0.62089 -23196,5003:239,-39,-3,0,0,0.620454 -23197,5003:238,-38,-3,0,0,0.620213 -23198,5003:237,-37,-3,0,0,0.619559 -23199,5003:236,-36,-3,0,0,0.61779 -23200,5003:235,-35,-3,0,0,0.616989 -23201,5003:134,-34,-3,0,0,0.615458 -23202,5003:133,-33,-3,0,0,0.613145 -23203,5003:132,-32,-3,0,0,0.611536 -23204,5003:131,-31,-3,0,0,0.609899 -23205,5003:130,-30,-3,0,0,0.608774 -23206,5002:239,-29,-3,0,0,0.608162 -23207,5002:238,-28,-3,0,0,0.606814 -23208,5002:237,-27,-3,0,0,0.605122 -23209,5002:236,-26,-3,0,0,0.60441 -23210,5002:235,-25,-3,0,0,0.603574 -23211,5002:134,-24,-3,0,0,0.602713 -23212,5002:133,-23,-3,0,0,0.601803 -23213,5002:132,-22,-3,0,0,0.601557 -23214,5002:131,-21,-3,0,0,0.60099 -23215,5002:130,-20,-3,0,0,0.600399 -23216,5001:239,-19,-3,0,0,0.601015 -23217,5001:238,-18,-3,0,0,0.602123 -23218,5001:237,-17,-3,0,0,0.603353 -23219,5001:236,-16,-3,0,0,0.60414 -23220,5001:235,-15,-3,0,0,0.605319 -23221,5001:134,-14,-3,0,0,0.607035 -23222,5001:133,-13,-3,0,0,0.608847 -23223,5001:132,-12,-3,0,0,0.611072 -23224,5001:131,-11,-3,0,0,0.61429 -23225,5001:130,-10,-3,0,0,0.616843 -23226,5000:239,-9,-3,0,0,0.618105 -23227,5000:238,-8,-3,0,0,0.618735 -23228,5000:237,-7,-3,0,0,0.62031 -23229,5000:236,-6,-3,0,0,0.622436 -23230,5000:235,-5,-3,0,0,0.625402 -23231,5000:134,-4,-3,0,0,0.627614 -23232,5000:133,-3,-3,0,0,0.629461 -23233,5000:132,-2,-3,0,0,0.631017 -23234,5000:131,-1,-3,0,0,0.632571 -23235,3000:131,0,-3,0,0,0.632881 -23236,3000:131,1,-3,0,0,0.632069 -23237,3000:132,2,-3,0,0,0.630587 -23238,3000:133,3,-3,0,0,0.628598 -23239,3000:134,4,-3,0,0,0.626436 -23240,3000:235,5,-3,0,0,0.62427 -23241,3000:236,6,-3,0,0,0.623523 -23242,3000:237,7,-3,0,0,0.6248 -23243,3000:238,8,-3,0,0,0.626532 -23244,3004:132,42,-3,0,0,0.6087 -23245,3004:133,43,-3,0,0,0.654136 -23246,3004:134,44,-3,0,0,0.645533 -23247,3004:235,45,-3,0,0,0.645039 -23248,3004:236,46,-3,0,0,0.650992 -23249,3004:237,47,-3,0,0,0.653671 -23250,3004:238,48,-3,0,0,0.649426 -23251,3004:239,49,-3,0,0,0.651762 -23252,3005:130,50,-3,0,0,0.655947 -23253,3005:131,51,-3,0,0,0.672761 -23254,3005:132,52,-3,0,0,0.6761 -23255,3005:133,53,-3,0,0,0.676886 -23256,3005:134,54,-3,0,0,0.673552 -23257,3005:235,55,-3,0,0,0.667833 -23258,3005:236,56,-3,0,0,0.664681 -23259,3005:237,57,-3,0,0,0.664062 -23260,3005:238,58,-3,0,0,0.66287 -23261,3005:239,59,-3,0,0,0.660731 -23262,3006:130,60,-3,0,0,0.659232 -23263,3006:131,61,-3,0,0,0.658655 -23264,3006:132,62,-3,0,0,0.658747 -23265,3006:133,63,-3,0,0,0.658932 -23266,3006:134,64,-3,0,0,0.658216 -23267,3006:235,65,-3,0,0,0.657938 -23268,3006:236,66,-3,0,0,0.658239 -23269,3006:237,67,-3,0,0,0.659024 -23270,3006:238,68,-3,0,0,0.660201 -23271,3006:239,69,-3,0,0,0.661237 -23272,3007:130,70,-3,0,0,0.662456 -23273,3007:131,71,-3,0,0,0.663191 -23274,3007:132,72,-3,0,0,0.663627 -23275,3007:134,74,-3,0,0,0.663993 -23276,3007:235,75,-3,0,0,0.663604 -23277,3007:236,76,-3,0,0,0.663489 -23278,3007:237,77,-3,0,0,0.663282 -23279,3007:238,78,-3,0,0,0.662249 -23280,3007:239,79,-3,0,0,0.661352 -23281,3008:130,80,-3,0,0,0.66057 -23282,3008:131,81,-3,0,0,0.660478 -23283,3008:132,82,-3,0,0,0.660777 -23284,3008:133,83,-3,0,0,0.660961 -23285,3008:134,84,-3,0,0,0.663007 -23286,3008:235,85,-3,0,0,0.665459 -23287,3008:236,86,-3,0,0,0.666716 -23288,3008:237,87,-3,0,0,0.667765 -23289,3008:238,88,-3,0,0,0.669723 -23290,3008:239,89,-3,0,0,0.670495 -23291,3009:130,90,-3,0,0,0.668381 -23292,3009:131,91,-3,0,0,0.666602 -23293,3009:132,92,-3,0,0,0.664383 -23294,3009:133,93,-3,0,0,0.662088 -23295,3009:134,94,-3,0,0,0.660938 -23296,3009:235,95,-3,0,0,0.660316 -23297,3009:236,96,-3,0,0,0.660247 -23298,3009:237,97,-3,0,0,0.661767 -23299,3009:238,98,-3,0,0,0.66342 -23300,3010:130,100,-3,0,0,0.670041 -23301,3010:235,105,-3,0,0,0.679487 -23302,3010:236,106,-3,0,0,0.673507 -23303,3010:237,107,-3,0,0,0.66057 -23304,3010:238,108,-3,0,0,0.66126 -23305,3010:239,109,-3,0,0,0.670608 -23306,3011:238,118,-3,0,0,0.657314 -23307,3011:239,119,-3,0,0,0.659002 -23308,3012:131,121,-3,0,0,0.672784 -23309,3012:134,124,-3,0,0,0.672964 -23310,3012:235,125,-3,0,0,0.680762 -23311,3012:236,126,-3,0,0,0.683724 -23312,3012:237,127,-3,0,0,0.677672 -23313,3012:238,128,-3,0,0,0.684013 -23314,3012:239,129,-3,0,0,0.669086 -23315,3013:130,130,-3,0,0,0.667833 -23316,3013:235,135,-3,0,0,0.673755 -23317,3013:236,136,-3,0,0,0.674839 -23318,3013:237,137,-3,0,0,0.668745 -23319,3013:238,138,-3,0,0,0.665161 -23320,3013:239,139,-3,0,0,0.665825 -23321,3014:130,140,-3,0,0,0.666076 -23322,3014:131,141,-3,0,0,0.667925 -23323,3014:132,142,-3,0,0,0.6697 -23324,3014:133,143,-3,0,0,0.670948 -23325,3014:134,144,-3,0,0,0.67215 -23326,3014:235,145,-3,0,0,0.674184 -23327,3014:236,146,-3,0,0,0.675762 -23328,3014:237,147,-3,0,0,0.676932 -23329,3014:238,148,-3,0,0,0.67765 -23330,3014:239,149,-3,0,0,0.678503 -23331,3015:130,150,-3,0,0,0.679241 -23332,3015:131,151,-3,0,0,0.679129 -23333,3015:132,152,-3,0,0,0.678592 -23334,3015:133,153,-3,0,0,0.678301 -23335,3015:134,154,-3,0,0,0.67792 -23336,3015:235,155,-3,0,0,0.677359 -23337,3015:236,156,-3,0,0,0.676684 -23338,3015:237,157,-3,0,0,0.676167 -23339,3015:238,158,-3,0,0,0.676662 -23340,3015:239,159,-3,0,0,0.677538 -23341,3016:130,160,-3,0,0,0.678413 -23342,3016:131,161,-3,0,0,0.678749 -23343,3016:132,162,-3,0,0,0.678771 -23344,3016:133,163,-3,0,0,0.679175 -23345,3016:134,164,-3,0,0,0.679644 -23346,3016:235,165,-3,0,0,0.67989 -23347,3016:236,166,-3,0,0,0.680025 -23348,3016:237,167,-3,0,0,0.679331 -23349,3016:238,168,-3,0,0,0.67857 -23350,3016:239,169,-3,0,0,0.678122 -23351,3017:130,170,-3,0,0,0.677762 -23352,3017:131,171,-3,0,0,0.676954 -23353,3017:132,172,-3,0,0,0.676572 -23354,3017:133,173,-3,0,0,0.676909 -23355,3017:134,174,-3,0,0,0.677089 -23356,3017:235,175,-3,0,0,0.677313 -23357,3017:236,176,-3,0,0,0.677381 -23358,3017:237,177,-3,0,0,0.67747 -23359,3017:238,178,-3,0,0,0.677336 -23360,3017:239,179,-3,0,0,0.677583 -23361,3018:130,180,-3,0,0,0.677605 -23362,5018:120,-180,-2,0,0,0.677538 -23363,5017:229,-179,-2,0,0,0.677268 -23364,5017:228,-178,-2,0,0,0.676886 -23365,5017:227,-177,-2,0,0,0.675717 -23366,5017:226,-176,-2,0,0,0.67432 -23367,5017:225,-175,-2,0,0,0.674116 -23368,5017:124,-174,-2,0,0,0.672964 -23369,5017:123,-173,-2,0,0,0.670858 -23370,5017:122,-172,-2,0,0,0.668859 -23371,5017:121,-171,-2,0,0,0.667264 -23372,5017:120,-170,-2,0,0,0.66587 -23373,5016:229,-169,-2,0,0,0.664704 -23374,5016:228,-168,-2,0,0,0.663879 -23375,5016:227,-167,-2,0,0,0.662915 -23376,5016:226,-166,-2,0,0,0.660938 -23377,5016:225,-165,-2,0,0,0.657198 -23378,5016:124,-164,-2,0,0,0.654415 -23379,5016:123,-163,-2,0,0,0.653252 -23380,5016:122,-162,-2,0,0,0.652111 -23381,5016:121,-161,-2,0,0,0.650758 -23382,5016:120,-160,-2,0,0,0.650244 -23383,5015:229,-159,-2,0,0,0.649964 -23384,5015:228,-158,-2,0,0,0.649426 -23385,5015:227,-157,-2,0,0,0.647435 -23386,5015:226,-156,-2,0,0,0.647107 -23387,5015:225,-155,-2,0,0,0.646872 -23388,5015:124,-154,-2,0,0,0.646215 -23389,5015:123,-153,-2,0,0,0.644522 -23390,5015:122,-152,-2,0,0,0.641668 -23391,5015:121,-151,-2,0,0,0.63852 -23392,5015:120,-150,-2,0,0,0.636002 -23393,5014:229,-149,-2,0,0,0.633621 -23394,5014:228,-148,-2,0,0,0.630538 -23395,5014:227,-147,-2,0,0,0.62831 -23396,5014:226,-146,-2,0,0,0.626917 -23397,5014:225,-145,-2,0,0,0.625306 -23398,5014:124,-144,-2,0,0,0.624004 -23399,5014:123,-143,-2,0,0,0.622002 -23400,5014:122,-142,-2,0,0,0.620503 -23401,5014:121,-141,-2,0,0,0.619341 -23402,5014:120,-140,-2,0,0,0.617717 -23403,5013:229,-139,-2,0,0,0.618202 -23404,5013:228,-138,-2,0,0,0.617425 -23405,5013:227,-137,-2,0,0,0.614972 -23406,5013:226,-136,-2,0,0,0.611974 -23407,5013:225,-135,-2,0,0,0.610119 -23408,5013:124,-134,-2,0,0,0.608945 -23409,5013:123,-133,-2,0,0,0.60804 -23410,5013:122,-132,-2,0,0,0.606128 -23411,5013:121,-131,-2,0,0,0.601803 -23412,5013:120,-130,-2,0,0,0.600201 -23413,5012:229,-129,-2,0,0,0.600325 -23414,5012:228,-128,-2,0,0,0.59956 -23415,5012:227,-127,-2,0,0,0.598055 -23416,5012:226,-126,-2,0,0,0.596794 -23417,5012:225,-125,-2,0,0,0.5962 -23418,5012:124,-124,-2,0,0,0.594344 -23419,5012:123,-123,-2,0,0,0.591095 -23420,5012:122,-122,-2,0,0,0.588261 -23421,5012:121,-121,-2,0,0,0.587141 -23422,5012:120,-120,-2,0,0,0.586493 -23423,5011:229,-119,-2,0,0,0.585621 -23424,5011:228,-118,-2,0,0,0.581951 -23425,5011:227,-117,-2,0,0,0.58055 -23426,5011:226,-116,-2,0,0,0.580325 -23427,5011:225,-115,-2,0,0,0.579324 -23428,5011:124,-114,-2,0,0,0.57772 -23429,5011:123,-113,-2,0,0,0.577596 -23430,5011:122,-112,-2,0,0,0.578272 -23431,5011:121,-111,-2,0,0,0.579525 -23432,5011:120,-110,-2,0,0,0.581576 -23433,5010:229,-109,-2,0,0,0.583825 -23434,5010:228,-108,-2,0,0,0.583799 -23435,5010:227,-107,-2,0,0,0.583799 -23436,5010:226,-106,-2,0,0,0.584499 -23437,5010:225,-105,-2,0,0,0.585048 -23438,5010:124,-104,-2,0,0,0.584823 -23439,5010:123,-103,-2,0,0,0.584324 -23440,5010:122,-102,-2,0,0,0.58305 -23441,5010:121,-101,-2,0,0,0.580576 -23442,5010:120,-100,-2,0,0,0.579324 -23443,5009:229,-99,-2,0,0,0.5797 -23444,5009:228,-98,-2,0,0,0.58 -23445,5009:227,-97,-2,0,0,0.581726 -23446,5009:226,-96,-2,0,0,0.580726 -23447,5009:225,-95,-2,0,0,0.582825 -23448,5009:124,-94,-2,0,0,0.578548 -23449,5009:123,-93,-2,0,0,0.570108 -23450,5009:122,-92,-2,0,0,0.560565 -23451,5009:121,-91,-2,0,0,0.585347 -23452,5009:120,-90,-2,0,0,0.589232 -23453,5008:229,-89,-2,0,0,0.591791 -23454,5008:228,-88,-2,0,0,0.595037 -23455,5008:227,-87,-2,0,0,0.597091 -23456,5008:226,-86,-2,0,0,0.597511 -23457,5008:225,-85,-2,0,0,0.596448 -23458,5008:124,-84,-2,0,0,0.596967 -23459,5008:123,-83,-2,0,0,0.598425 -23460,5008:122,-82,-2,0,0,0.598647 -23461,5008:121,-81,-2,0,0,0.603722 -23462,5005:120,-50,-2,0,0,0.639965 -23463,5004:229,-49,-2,0,0,0.638188 -23464,5004:228,-48,-2,0,0,0.635146 -23465,5004:227,-47,-2,0,0,0.623547 -23466,5004:226,-46,-2,0,0,0.622002 -23467,5004:225,-45,-2,0,0,0.624655 -23468,5004:124,-44,-2,0,0,0.624318 -23469,5004:123,-43,-2,0,0,0.624872 -23470,5004:122,-42,-2,0,0,0.626171 -23471,5004:121,-41,-2,0,0,0.627253 -23472,5004:120,-40,-2,0,0,0.626917 -23473,5003:229,-39,-2,0,0,0.625065 -23474,5003:228,-38,-2,0,0,0.621374 -23475,5003:227,-37,-2,0,0,0.618978 -23476,5003:226,-36,-2,0,0,0.617256 -23477,5003:225,-35,-2,0,0,0.61609 -23478,5003:124,-34,-2,0,0,0.614387 -23479,5003:123,-33,-2,0,0,0.613267 -23480,5003:122,-32,-2,0,0,0.613681 -23481,5003:121,-31,-2,0,0,0.613681 -23482,5003:120,-30,-2,0,0,0.610583 -23483,5002:229,-29,-2,0,0,0.607501 -23484,5002:228,-28,-2,0,0,0.607844 -23485,5002:227,-27,-2,0,0,0.606374 -23486,5002:226,-26,-2,0,0,0.606545 -23487,5002:225,-25,-2,0,0,0.605784 -23488,5002:124,-24,-2,0,0,0.603894 -23489,5002:123,-23,-2,0,0,0.604729 -23490,5002:122,-22,-2,0,0,0.607109 -23491,5002:121,-21,-2,0,0,0.609361 -23492,5002:120,-20,-2,0,0,0.61134 -23493,5001:229,-19,-2,0,0,0.613706 -23494,5001:228,-18,-2,0,0,0.615555 -23495,5001:227,-17,-2,0,0,0.617256 -23496,5001:226,-16,-2,0,0,0.618566 -23497,5001:225,-15,-2,0,0,0.620721 -23498,5001:124,-14,-2,0,0,0.623715 -23499,5001:123,-13,-2,0,0,0.626869 -23500,5001:122,-12,-2,0,0,0.62994 -23501,5001:121,-11,-2,0,0,0.632857 -23502,5001:120,-10,-2,0,0,0.635074 -23503,5000:229,-9,-2,0,0,0.63655 -23504,5000:228,-8,-2,0,0,0.637832 -23505,5000:227,-7,-2,0,0,0.638781 -23506,5000:226,-6,-2,0,0,0.639823 -23507,5000:225,-5,-2,0,0,0.640675 -23508,5000:124,-4,-2,0,0,0.641904 -23509,5000:123,-3,-2,0,0,0.642802 -23510,5000:122,-2,-2,0,0,0.64299 -23511,5000:121,-1,-2,0,0,0.643438 -23512,3000:121,0,-2,0,0,0.644239 -23513,3000:121,1,-2,0,0,0.643838 -23514,3000:122,2,-2,0,0,0.643108 -23515,3000:123,3,-2,0,0,0.642377 -23516,3000:124,4,-2,0,0,0.642377 -23517,3000:225,5,-2,0,0,0.643202 -23518,3000:226,6,-2,0,0,0.64431 -23519,3000:227,7,-2,0,0,0.646121 -23520,3000:228,8,-2,0,0,0.646684 -23521,3000:229,9,-2,0,0,0.646872 -23522,3004:124,44,-2,0,0,0.640013 -23523,3004:225,45,-2,0,0,0.628861 -23524,3004:226,46,-2,0,0,0.633215 -23525,3004:227,47,-2,0,0,0.633191 -23526,3004:228,48,-2,0,0,0.633096 -23527,3004:229,49,-2,0,0,0.641502 -23528,3005:120,50,-2,0,0,0.64863 -23529,3005:121,51,-2,0,0,0.659002 -23530,3005:122,52,-2,0,0,0.662938 -23531,3005:123,53,-2,0,0,0.662134 -23532,3005:124,54,-2,0,0,0.668472 -23533,3005:225,55,-2,0,0,0.6745 -23534,3005:226,56,-2,0,0,0.675289 -23535,3005:227,57,-2,0,0,0.670676 -23536,3005:228,58,-2,0,0,0.661583 -23537,3005:229,59,-2,0,0,0.657708 -23538,3006:120,60,-2,0,0,0.653159 -23539,3006:121,61,-2,0,0,0.650478 -23540,3006:122,62,-2,0,0,0.649449 -23541,3006:123,63,-2,0,0,0.651015 -23542,3006:124,64,-2,0,0,0.652694 -23543,3006:225,65,-2,0,0,0.654252 -23544,3006:226,66,-2,0,0,0.656016 -23545,3006:227,67,-2,0,0,0.657476 -23546,3006:228,68,-2,0,0,0.658285 -23547,3006:229,69,-2,0,0,0.658563 -23548,3007:120,70,-2,0,0,0.658909 -23549,3007:121,71,-2,0,0,0.660523 -23550,3007:122,72,-2,0,0,0.662364 -23551,3007:124,74,-2,0,0,0.662479 -23552,3007:225,75,-2,0,0,0.664841 -23553,3007:226,76,-2,0,0,0.66507 -23554,3007:227,77,-2,0,0,0.664772 -23555,3007:228,78,-2,0,0,0.664314 -23556,3007:229,79,-2,0,0,0.663833 -23557,3008:120,80,-2,0,0,0.664108 -23558,3008:121,81,-2,0,0,0.664566 -23559,3008:122,82,-2,0,0,0.664704 -23560,3008:123,83,-2,0,0,0.664544 -23561,3008:124,84,-2,0,0,0.664498 -23562,3008:225,85,-2,0,0,0.664795 -23563,3008:226,86,-2,0,0,0.66507 -23564,3008:227,87,-2,0,0,0.665962 -23565,3008:228,88,-2,0,0,0.666488 -23566,3008:229,89,-2,0,0,0.667195 -23567,3009:120,90,-2,0,0,0.668813 -23568,3009:121,91,-2,0,0,0.669313 -23569,3009:122,92,-2,0,0,0.665596 -23570,3009:123,93,-2,0,0,0.662111 -23571,3009:124,94,-2,0,0,0.659394 -23572,3009:225,95,-2,0,0,0.659163 -23573,3009:226,96,-2,0,0,0.660408 -23574,3009:227,97,-2,0,0,0.662938 -23575,3009:228,98,-2,0,0,0.66683 -23576,3009:229,99,-2,0,0,0.673032 -23577,3010:124,104,-2,0,0,0.67371 -23578,3010:225,105,-2,0,0,0.661536 -23579,3010:226,106,-2,0,0,0.652088 -23580,3010:227,107,-2,0,0,0.655831 -23581,3010:228,108,-2,0,0,0.665917 -23582,3010:229,109,-2,0,0,0.676775 -23583,3011:228,118,-2,0,0,0.647575 -23584,3011:229,119,-2,0,0,0.649683 -23585,3012:120,120,-2,0,0,0.651552 -23586,3012:225,125,-2,0,0,0.685189 -23587,3012:226,126,-2,0,0,0.676617 -23588,3012:227,127,-2,0,0,0.671175 -23589,3012:229,129,-2,0,0,0.677268 -23590,3013:120,130,-2,0,0,0.669814 -23591,3013:121,131,-2,0,0,0.674184 -23592,3013:122,132,-2,0,0,0.672648 -23593,3013:123,133,-2,0,0,0.673122 -23594,3013:124,134,-2,0,0,0.673145 -23595,3013:225,135,-2,0,0,0.671402 -23596,3013:226,136,-2,0,0,0.66854 -23597,3013:227,137,-2,0,0,0.669609 -23598,3013:228,138,-2,0,0,0.668472 -23599,3013:229,139,-2,0,0,0.667537 -23600,3014:120,140,-2,0,0,0.667856 -23601,3014:121,141,-2,0,0,0.671175 -23602,3014:122,142,-2,0,0,0.671243 -23603,3014:123,143,-2,0,0,0.671538 -23604,3014:124,144,-2,0,0,0.673213 -23605,3014:225,145,-2,0,0,0.674726 -23606,3014:226,146,-2,0,0,0.676617 -23607,3014:227,147,-2,0,0,0.678032 -23608,3014:228,148,-2,0,0,0.678032 -23609,3014:229,149,-2,0,0,0.678189 -23610,3015:120,150,-2,0,0,0.678323 -23611,3015:121,151,-2,0,0,0.678615 -23612,3015:122,152,-2,0,0,0.678457 -23613,3015:123,153,-2,0,0,0.677605 -23614,3015:124,154,-2,0,0,0.676504 -23615,3015:225,155,-2,0,0,0.676302 -23616,3015:226,156,-2,0,0,0.676775 -23617,3015:227,157,-2,0,0,0.676842 -23618,3015:228,158,-2,0,0,0.677067 -23619,3015:229,159,-2,0,0,0.677583 -23620,3016:120,160,-2,0,0,0.678122 -23621,3016:121,161,-2,0,0,0.678143 -23622,3016:122,162,-2,0,0,0.678143 -23623,3016:123,163,-2,0,0,0.678524 -23624,3016:124,164,-2,0,0,0.678928 -23625,3016:225,165,-2,0,0,0.678816 -23626,3016:226,166,-2,0,0,0.678503 -23627,3016:227,167,-2,0,0,0.678435 -23628,3016:228,168,-2,0,0,0.67857 -23629,3016:229,169,-2,0,0,0.67857 -23630,3017:120,170,-2,0,0,0.678861 -23631,3017:121,171,-2,0,0,0.678995 -23632,3017:122,172,-2,0,0,0.678906 -23633,3017:123,173,-2,0,0,0.678099 -23634,3017:124,174,-2,0,0,0.677672 -23635,3017:225,175,-2,0,0,0.677762 -23636,3017:226,176,-2,0,0,0.67774 -23637,3017:227,177,-2,0,0,0.678143 -23638,3017:228,178,-2,0,0,0.678233 -23639,3017:229,179,-2,0,0,0.67792 -23640,3018:120,180,-2,0,0,0.677538 -23641,5018:110,-180,-1,0,0,0.675672 -23642,5017:219,-179,-1,0,0,0.674636 -23643,5017:218,-178,-1,0,0,0.672625 -23644,5017:217,-177,-1,0,0,0.672602 -23645,5017:216,-176,-1,0,0,0.672286 -23646,5017:215,-175,-1,0,0,0.671788 -23647,5017:114,-174,-1,0,0,0.67079 -23648,5017:113,-173,-1,0,0,0.669313 -23649,5017:112,-172,-1,0,0,0.666465 -23650,5017:111,-171,-1,0,0,0.663948 -23651,5017:110,-170,-1,0,0,0.661974 -23652,5016:219,-169,-1,0,0,0.659809 -23653,5016:218,-168,-1,0,0,0.661306 -23654,5016:217,-167,-1,0,0,0.661468 -23655,5016:216,-166,-1,0,0,0.658262 -23656,5016:215,-165,-1,0,0,0.655205 -23657,5016:114,-164,-1,0,0,0.655065 -23658,5016:113,-163,-1,0,0,0.656016 -23659,5016:112,-162,-1,0,0,0.656457 -23660,5016:111,-161,-1,0,0,0.65481 -23661,5016:110,-160,-1,0,0,0.650945 -23662,5015:219,-159,-1,0,0,0.650571 -23663,5015:218,-158,-1,0,0,0.652997 -23664,5015:217,-157,-1,0,0,0.654601 -23665,5015:216,-156,-1,0,0,0.65481 -23666,5015:215,-155,-1,0,0,0.654787 -23667,5015:114,-154,-1,0,0,0.651482 -23668,5015:113,-153,-1,0,0,0.647575 -23669,5015:112,-152,-1,0,0,0.643626 -23670,5015:111,-151,-1,0,0,0.643344 -23671,5015:110,-150,-1,0,0,0.641739 -23672,5014:219,-149,-1,0,0,0.636669 -23673,5014:218,-148,-1,0,0,0.634169 -23674,5014:217,-147,-1,0,0,0.633597 -23675,5014:216,-146,-1,0,0,0.632547 -23676,5014:215,-145,-1,0,0,0.633931 -23677,5014:114,-144,-1,0,0,0.634526 -23678,5014:113,-143,-1,0,0,0.633478 -23679,5014:112,-142,-1,0,0,0.631041 -23680,5014:111,-141,-1,0,0,0.628981 -23681,5014:110,-140,-1,0,0,0.627182 -23682,5013:219,-139,-1,0,0,0.627782 -23683,5013:218,-138,-1,0,0,0.629101 -23684,5013:217,-137,-1,0,0,0.627686 -23685,5013:216,-136,-1,0,0,0.624968 -23686,5013:215,-135,-1,0,0,0.62106 -23687,5013:114,-134,-1,0,0,0.6206 -23688,5013:113,-133,-1,0,0,0.621156 -23689,5013:112,-132,-1,0,0,0.622799 -23690,5013:111,-131,-1,0,0,0.62333 -23691,5013:110,-130,-1,0,0,0.618663 -23692,5012:219,-129,-1,0,0,0.616065 -23693,5012:218,-128,-1,0,0,0.613608 -23694,5012:217,-127,-1,0,0,0.614655 -23695,5012:216,-126,-1,0,0,0.613535 -23696,5012:215,-125,-1,0,0,0.611047 -23697,5012:114,-124,-1,0,0,0.611779 -23698,5012:113,-123,-1,0,0,0.610168 -23699,5012:112,-122,-1,0,0,0.604065 -23700,5012:111,-121,-1,0,0,0.600028 -23701,5012:110,-120,-1,0,0,0.598326 -23702,5011:219,-119,-1,0,0,0.60232 -23703,5011:218,-118,-1,0,0,0.605637 -23704,5011:217,-117,-1,0,0,0.606374 -23705,5011:216,-116,-1,0,0,0.605515 -23706,5011:215,-115,-1,0,0,0.602935 -23707,5011:114,-114,-1,0,0,0.601581 -23708,5011:113,-113,-1,0,0,0.60232 -23709,5011:112,-112,-1,0,0,0.602689 -23710,5011:111,-111,-1,0,0,0.604901 -23711,5011:110,-110,-1,0,0,0.608015 -23712,5010:219,-109,-1,0,0,0.609483 -23713,5010:218,-108,-1,0,0,0.61051 -23714,5010:217,-107,-1,0,0,0.61134 -23715,5010:216,-106,-1,0,0,0.61156 -23716,5010:215,-105,-1,0,0,0.611633 -23717,5010:114,-104,-1,0,0,0.611438 -23718,5010:113,-103,-1,0,0,0.611316 -23719,5010:112,-102,-1,0,0,0.610949 -23720,5010:111,-101,-1,0,0,0.610681 -23721,5010:110,-100,-1,0,0,0.611877 -23722,5009:219,-99,-1,0,0,0.61334 -23723,5009:218,-98,-1,0,0,0.614022 -23724,5009:217,-97,-1,0,0,0.614972 -23725,5009:216,-96,-1,0,0,0.615677 -23726,5009:215,-95,-1,0,0,0.616017 -23727,5009:114,-94,-1,0,0,0.614169 -23728,5009:113,-93,-1,0,0,0.610779 -23729,5009:112,-92,-1,0,0,0.611974 -23730,5009:111,-91,-1,0,0,0.6139 -23731,5009:110,-90,-1,0,0,0.617159 -23732,5008:219,-89,-1,0,0,0.619293 -23733,5008:218,-88,-1,0,0,0.62014 -23734,5008:217,-87,-1,0,0,0.619075 -23735,5008:216,-86,-1,0,0,0.616236 -23736,5008:215,-85,-1,0,0,0.61312 -23737,5008:114,-84,-1,0,0,0.611096 -23738,5008:113,-83,-1,0,0,0.61051 -23739,5008:112,-82,-1,0,0,0.609263 -23740,5008:111,-81,-1,0,0,0.61073 -23741,5008:110,-80,-1,0,0,0.613852 -23742,5007:219,-79,-1,0,0,0.619946 -23743,5005:110,-50,-1,0,0,0.639232 -23744,5004:219,-49,-1,0,0,0.633621 -23745,5004:218,-48,-1,0,0,0.620865 -23746,5004:217,-47,-1,0,0,0.624246 -23747,5004:216,-46,-1,0,0,0.625907 -23748,5004:215,-45,-1,0,0,0.628909 -23749,5004:114,-44,-1,0,0,0.630587 -23750,5004:113,-43,-1,0,0,0.631424 -23751,5004:112,-42,-1,0,0,0.631902 -23752,5004:111,-41,-1,0,0,0.631017 -23753,5004:110,-40,-1,0,0,0.629581 -23754,5003:219,-39,-1,0,0,0.626893 -23755,5003:218,-38,-1,0,0,0.624125 -23756,5003:217,-37,-1,0,0,0.622171 -23757,5003:216,-36,-1,0,0,0.621397 -23758,5003:215,-35,-1,0,0,0.620986 -23759,5003:114,-34,-1,0,0,0.620865 -23760,5003:113,-33,-1,0,0,0.620842 -23761,5003:112,-32,-1,0,0,0.62118 -23762,5003:111,-31,-1,0,0,0.621374 -23763,5003:110,-30,-1,0,0,0.623836 -23764,5002:219,-29,-1,0,0,0.625378 -23765,5002:218,-28,-1,0,0,0.625546 -23766,5002:217,-27,-1,0,0,0.626171 -23767,5002:216,-26,-1,0,0,0.627421 -23768,5002:215,-25,-1,0,0,0.627374 -23769,5002:114,-24,-1,0,0,0.627974 -23770,5002:113,-23,-1,0,0,0.627902 -23771,5002:112,-22,-1,0,0,0.628382 -23772,5002:111,-21,-1,0,0,0.629772 -23773,5002:110,-20,-1,0,0,0.630299 -23774,5001:219,-19,-1,0,0,0.632427 -23775,5001:218,-18,-1,0,0,0.633955 -23776,5001:217,-17,-1,0,0,0.634741 -23777,5001:216,-16,-1,0,0,0.636431 -23778,5001:215,-15,-1,0,0,0.638662 -23779,5001:114,-14,-1,0,0,0.640817 -23780,5001:113,-13,-1,0,0,0.643509 -23781,5001:112,-12,-1,0,0,0.64652 -23782,5001:111,-11,-1,0,0,0.649473 -23783,5001:110,-10,-1,0,0,0.652228 -23784,5000:219,-9,-1,0,0,0.654438 -23785,5000:218,-8,-1,0,0,0.656016 -23786,5000:217,-7,-1,0,0,0.657314 -23787,5000:216,-6,-1,0,0,0.658355 -23788,5000:215,-5,-1,0,0,0.659324 -23789,5000:114,-4,-1,0,0,0.659647 -23790,5000:113,-3,-1,0,0,0.659301 -23791,5000:112,-2,-1,0,0,0.659002 -23792,5000:111,-1,-1,0,0,0.658239 -23793,3000:111,0,-1,0,0,0.658101 -23794,3000:111,1,-1,0,0,0.657545 -23795,3000:112,2,-1,0,0,0.658401 -23796,3000:113,3,-1,0,0,0.657915 -23797,3000:114,4,-1,0,0,0.657036 -23798,3000:215,5,-1,0,0,0.656248 -23799,3000:216,6,-1,0,0,0.65481 -23800,3000:217,7,-1,0,0,0.655854 -23801,3000:218,8,-1,0,0,0.657106 -23802,3000:219,9,-1,0,0,0.656016 -23803,3004:216,46,-1,0,0,0.615507 -23804,3004:217,47,-1,0,0,0.631232 -23805,3004:218,48,-1,0,0,0.636288 -23806,3004:219,49,-1,0,0,0.640273 -23807,3005:110,50,-1,0,0,0.64405 -23808,3005:111,51,-1,0,0,0.650151 -23809,3005:112,52,-1,0,0,0.651995 -23810,3005:113,53,-1,0,0,0.661306 -23811,3005:114,54,-1,0,0,0.663627 -23812,3005:215,55,-1,0,0,0.660016 -23813,3005:216,56,-1,0,0,0.662548 -23814,3005:217,57,-1,0,0,0.666967 -23815,3005:218,58,-1,0,0,0.659279 -23816,3005:219,59,-1,0,0,0.651482 -23817,3006:110,60,-1,0,0,0.649145 -23818,3006:111,61,-1,0,0,0.648958 -23819,3006:112,62,-1,0,0,0.645933 -23820,3006:113,63,-1,0,0,0.646473 -23821,3006:114,64,-1,0,0,0.648021 -23822,3006:215,65,-1,0,0,0.650034 -23823,3006:216,66,-1,0,0,0.653438 -23824,3006:217,67,-1,0,0,0.656526 -23825,3006:218,68,-1,0,0,0.659071 -23826,3006:219,69,-1,0,0,0.661007 -23827,3007:110,70,-1,0,0,0.66287 -23828,3007:111,71,-1,0,0,0.663397 -23829,3007:112,72,-1,0,0,0.662548 -23830,3007:114,74,-1,0,0,0.662938 -23831,3007:215,75,-1,0,0,0.66436 -23832,3007:216,76,-1,0,0,0.663948 -23833,3007:217,77,-1,0,0,0.664338 -23834,3007:218,78,-1,0,0,0.664727 -23835,3007:219,79,-1,0,0,0.663214 -23836,3008:110,80,-1,0,0,0.662685 -23837,3008:111,81,-1,0,0,0.662042 -23838,3008:112,82,-1,0,0,0.662111 -23839,3008:113,83,-1,0,0,0.663168 -23840,3008:114,84,-1,0,0,0.66397 -23841,3008:215,85,-1,0,0,0.664887 -23842,3008:216,86,-1,0,0,0.664978 -23843,3008:217,87,-1,0,0,0.664841 -23844,3008:218,88,-1,0,0,0.663993 -23845,3008:219,89,-1,0,0,0.664291 -23846,3009:110,90,-1,0,0,0.665231 -23847,3009:111,91,-1,0,0,0.665001 -23848,3009:112,92,-1,0,0,0.661996 -23849,3009:113,93,-1,0,0,0.662066 -23850,3009:114,94,-1,0,0,0.661652 -23851,3009:215,95,-1,0,0,0.662962 -23852,3009:216,96,-1,0,0,0.666259 -23853,3009:217,97,-1,0,0,0.669495 -23854,3009:218,98,-1,0,0,0.671425 -23855,3010:112,102,-1,0,0,0.673687 -23856,3010:215,105,-1,0,0,0.645792 -23857,3010:216,106,-1,0,0,0.648091 -23858,3010:217,107,-1,0,0,0.650127 -23859,3010:218,108,-1,0,0,0.656596 -23860,3010:219,109,-1,0,0,0.671765 -23861,3011:110,110,-1,0,0,0.676864 -23862,3011:111,111,-1,0,0,0.681877 -23863,3011:219,119,-1,0,0,0.654973 -23864,3012:110,120,-1,0,0,0.661284 -23865,3012:111,121,-1,0,0,0.661675 -23866,3012:112,122,-1,0,0,0.664062 -23867,3012:113,123,-1,0,0,0.666738 -23868,3012:114,124,-1,0,0,0.668358 -23869,3012:215,125,-1,0,0,0.664223 -23870,3012:216,126,-1,0,0,0.665962 -23871,3012:217,127,-1,0,0,0.66491 -23872,3012:219,129,-1,0,0,0.672444 -23873,3013:110,130,-1,0,0,0.667606 -23874,3013:111,131,-1,0,0,0.668449 -23875,3013:112,132,-1,0,0,0.667833 -23876,3013:113,133,-1,0,0,0.667925 -23877,3013:114,134,-1,0,0,0.665917 -23878,3013:215,135,-1,0,0,0.664933 -23879,3013:216,136,-1,0,0,0.66475 -23880,3013:217,137,-1,0,0,0.664955 -23881,3013:218,138,-1,0,0,0.66397 -23882,3013:219,139,-1,0,0,0.663305 -23883,3014:110,140,-1,0,0,0.663512 -23884,3014:111,141,-1,0,0,0.665779 -23885,3014:112,142,-1,0,0,0.668062 -23886,3014:113,143,-1,0,0,0.670971 -23887,3014:114,144,-1,0,0,0.673552 -23888,3014:215,145,-1,0,0,0.674523 -23889,3014:216,146,-1,0,0,0.675762 -23890,3014:217,147,-1,0,0,0.676549 -23891,3014:218,148,-1,0,0,0.677762 -23892,3014:219,149,-1,0,0,0.678794 -23893,3015:110,150,-1,0,0,0.679264 -23894,3015:111,151,-1,0,0,0.679107 -23895,3015:112,152,-1,0,0,0.678704 -23896,3015:113,153,-1,0,0,0.677336 -23897,3015:114,154,-1,0,0,0.676392 -23898,3015:215,155,-1,0,0,0.676976 -23899,3015:216,156,-1,0,0,0.677201 -23900,3015:217,157,-1,0,0,0.676775 -23901,3015:218,158,-1,0,0,0.676302 -23902,3015:219,159,-1,0,0,0.675965 -23903,3016:110,160,-1,0,0,0.675559 -23904,3016:111,161,-1,0,0,0.675222 -23905,3016:112,162,-1,0,0,0.675289 -23906,3016:113,163,-1,0,0,0.675785 -23907,3016:114,164,-1,0,0,0.67637 -23908,3016:215,165,-1,0,0,0.676729 -23909,3016:216,166,-1,0,0,0.676752 -23910,3016:217,167,-1,0,0,0.676796 -23911,3016:218,168,-1,0,0,0.677089 -23912,3016:219,169,-1,0,0,0.676055 -23913,3017:110,170,-1,0,0,0.677874 -23914,3017:111,171,-1,0,0,0.677762 -23915,3017:112,172,-1,0,0,0.677493 -23916,3017:113,173,-1,0,0,0.677942 -23917,3017:114,174,-1,0,0,0.678435 -23918,3017:215,175,-1,0,0,0.678143 -23919,3017:216,176,-1,0,0,0.676819 -23920,3017:217,177,-1,0,0,0.67637 -23921,3017:218,178,-1,0,0,0.675807 -23922,3017:219,179,-1,0,0,0.676055 -23923,3018:110,180,-1,0,0,0.675672 -23924,7018:110,-180,0,0,0,0.670018 -23925,7017:219,-179,0,0,0,0.669245 -23926,7017:218,-178,0,0,0,0.66854 -23927,7017:217,-177,0,0,0,0.668107 -23928,7017:216,-176,0,0,0,0.667902 -23929,7017:215,-175,0,0,0,0.667628 -23930,7017:114,-174,0,0,0,0.666168 -23931,7017:113,-173,0,0,0,0.665665 -23932,7017:112,-172,0,0,0,0.665207 -23933,7017:111,-171,0,0,0,0.665024 -23934,7017:110,-170,0,0,0,0.663558 -23935,7016:219,-169,0,0,0,0.66241 -23936,7016:218,-168,0,0,0,0.66397 -23937,7016:217,-167,0,0,0,0.662685 -23938,7016:216,-166,0,0,0,0.659394 -23939,7016:215,-165,0,0,0,0.656179 -23940,7016:114,-164,0,0,0,0.654276 -23941,7016:113,-163,0,0,0,0.653462 -23942,7016:112,-162,0,0,0,0.654531 -23943,7016:111,-161,0,0,0,0.65611 -23944,7016:110,-160,0,0,0,0.653229 -23945,7015:219,-159,0,0,0,0.650641 -23946,7015:218,-158,0,0,0,0.655344 -23947,7015:217,-157,0,0,0,0.654136 -23948,7015:216,-156,0,0,0,0.653183 -23949,7015:215,-155,0,0,0,0.654833 -23950,7015:114,-154,0,0,0,0.655321 -23951,7015:113,-153,0,0,0,0.652671 -23952,7015:112,-152,0,0,0,0.649052 -23953,7015:111,-151,0,0,0,0.647271 -23954,7015:110,-150,0,0,0,0.645839 -23955,7014:219,-149,0,0,0,0.645768 -23956,7014:218,-148,0,0,0,0.64398 -23957,7014:217,-147,0,0,0,0.641574 -23958,7014:216,-146,0,0,0,0.63961 -23959,7014:215,-145,0,0,0,0.638212 -23960,7014:114,-144,0,0,0,0.639349 -23961,7014:113,-143,0,0,0,0.64214 -23962,7014:112,-142,0,0,0,0.638235 -23963,7014:111,-141,0,0,0,0.632785 -23964,7014:110,-140,0,0,0,0.633811 -23965,7013:219,-139,0,0,0,0.634193 -23966,7013:218,-138,0,0,0,0.638307 -23967,7013:217,-137,0,0,0,0.639681 -23968,7013:216,-136,0,0,0,0.638638 -23969,7013:215,-135,0,0,0,0.632762 -23970,7013:114,-134,0,0,0,0.628237 -23971,7013:113,-133,0,0,0,0.630371 -23972,7013:112,-132,0,0,0,0.632977 -23973,7013:111,-131,0,0,0,0.629269 -23974,7013:110,-130,0,0,0,0.620503 -23975,7012:219,-129,0,0,0,0.630251 -23976,7012:218,-128,0,0,0,0.632833 -23977,7012:217,-127,0,0,0,0.631256 -23978,7012:216,-126,0,0,0,0.632093 -23979,7012:215,-125,0,0,0,0.625233 -23980,7012:114,-124,0,0,0,0.621808 -23981,7012:113,-123,0,0,0,0.621132 -23982,7012:112,-122,0,0,0,0.611365 -23983,7012:111,-121,0,0,0,0.611633 -23984,7012:110,-120,0,0,0,0.612682 -23985,7011:219,-119,0,0,0,0.621567 -23986,7011:218,-118,0,0,0,0.618978 -23987,7011:217,-117,0,0,0,0.618711 -23988,7011:216,-116,0,0,0,0.620213 -23989,7011:215,-115,0,0,0,0.621422 -23990,7011:114,-114,0,0,0,0.621035 -23991,7011:113,-113,0,0,0,0.619317 -23992,7011:112,-112,0,0,0,0.618008 -23993,7011:111,-111,0,0,0,0.618881 -23994,7011:110,-110,0,0,0,0.62176 -23995,7010:219,-109,0,0,0,0.621833 -23996,7010:218,-108,0,0,0,0.620914 -23997,7010:217,-107,0,0,0,0.620842 -23998,7010:216,-106,0,0,0,0.620454 -23999,7010:215,-105,0,0,0,0.619462 -24000,7010:114,-104,0,0,0,0.618832 -24001,7010:113,-103,0,0,0,0.618663 -24002,7010:112,-102,0,0,0,0.619026 -24003,7010:111,-101,0,0,0,0.620043 -24004,7010:110,-100,0,0,0,0.620865 -24005,7009:219,-99,0,0,0,0.621833 -24006,7009:218,-98,0,0,0,0.622919 -24007,7009:217,-97,0,0,0,0.624149 -24008,7009:216,-96,0,0,0,0.62545 -24009,7009:215,-95,0,0,0,0.62557 -24010,7009:114,-94,0,0,0,0.624608 -24011,7009:113,-93,0,0,0,0.623812 -24012,7009:112,-92,0,0,0,0.623691 -24013,7009:111,-91,0,0,0,0.623643 -24014,7009:110,-90,0,0,0,0.625113 -24015,7008:219,-89,0,0,0,0.626484 -24016,7008:218,-88,0,0,0,0.627637 -24017,7008:217,-87,0,0,0,0.628118 -24018,7008:216,-86,0,0,0,0.626075 -24019,7008:215,-85,0,0,0,0.623595 -24020,7008:114,-84,0,0,0,0.622919 -24021,7008:113,-83,0,0,0,0.621108 -24022,7008:112,-82,0,0,0,0.619365 -24023,7008:111,-81,0,0,0,0.618274 -24024,7008:110,-80,0,0,0,0.618735 -24025,7007:219,-79,0,0,0,0.618008 -24026,7007:218,-78,0,0,0,0.630849 -24027,7005:111,-51,0,0,0,0.637025 -24028,7005:110,-50,0,0,0,0.629413 -24029,7004:219,-49,0,0,0,0.624487 -24030,7004:218,-48,0,0,0,0.626893 -24031,7004:217,-47,0,0,0,0.631185 -24032,7004:216,-46,0,0,0,0.63486 -24033,7004:215,-45,0,0,0,0.636217 -24034,7004:114,-44,0,0,0,0.636526 -24035,7004:113,-43,0,0,0,0.636026 -24036,7004:112,-42,0,0,0,0.634121 -24037,7004:111,-41,0,0,0,0.632857 -24038,7004:110,-40,0,0,0,0.632571 -24039,7003:219,-39,0,0,0,0.632332 -24040,7003:218,-38,0,0,0,0.630849 -24041,7003:217,-37,0,0,0,0.628981 -24042,7003:216,-36,0,0,0,0.627133 -24043,7003:215,-35,0,0,0,0.626388 -24044,7003:114,-34,0,0,0,0.626436 -24045,7003:113,-33,0,0,0,0.625859 -24046,7003:112,-32,0,0,0,0.62557 -24047,7003:111,-31,0,0,0,0.625185 -24048,7003:110,-30,0,0,0,0.625017 -24049,7002:219,-29,0,0,0,0.626965 -24050,7002:218,-28,0,0,0,0.627662 -24051,7002:217,-27,0,0,0,0.628357 -24052,7002:216,-26,0,0,0,0.629149 -24053,7002:215,-25,0,0,0,0.631041 -24054,7002:114,-24,0,0,0,0.632762 -24055,7002:113,-23,0,0,0,0.634098 -24056,7002:112,-22,0,0,0,0.635337 -24057,7002:111,-21,0,0,0,0.635432 -24058,7002:110,-20,0,0,0,0.635432 -24059,7001:219,-19,0,0,0,0.637832 -24060,7001:218,-18,0,0,0,0.638876 -24061,7001:217,-17,0,0,0,0.639989 -24062,7001:216,-16,0,0,0,0.641526 -24063,7001:215,-15,0,0,0,0.642565 -24064,7001:114,-14,0,0,0,0.644074 -24065,7001:113,-13,0,0,0,0.646544 -24066,7001:112,-12,0,0,0,0.64987 -24067,7001:111,-11,0,0,0,0.652833 -24068,7001:110,-10,0,0,0,0.655483 -24069,7000:219,-9,0,0,0,0.65699 -24070,7000:218,-8,0,0,0,0.658378 -24071,7000:217,-7,0,0,0,0.659809 -24072,7000:216,-6,0,0,0,0.661536 -24073,7000:215,-5,0,0,0,0.664017 -24074,7000:114,-4,0,0,0,0.66635 -24075,7000:113,-3,0,0,0,0.667879 -24076,7000:112,-2,0,0,0,0.668972 -24077,7000:111,-1,0,0,0,0.671584 -24078,1000:111,0,0,0,0,0.672263 -24079,1000:111,1,0,0,0,0.669427 -24080,1000:112,2,0,0,0,0.669836 -24081,1000:113,3,0,0,0,0.669972 -24082,1000:114,4,0,0,0,0.671991 -24083,1000:215,5,0,0,0,0.672625 -24084,1000:216,6,0,0,0,0.666899 -24085,1000:217,7,0,0,0,0.662594 -24086,1000:218,8,0,0,0,0.660178 -24087,1000:219,9,0,0,0,0.660247 -24088,1004:217,47,0,0,0,0.633835 -24089,1004:218,48,0,0,0,0.633859 -24090,1004:219,49,0,0,0,0.63871 -24091,1005:110,50,0,0,0,0.641715 -24092,1005:111,51,0,0,0,0.646731 -24093,1005:112,52,0,0,0,0.646825 -24094,1005:113,53,0,0,0,0.647552 -24095,1005:114,54,0,0,0,0.646637 -24096,1005:215,55,0,0,0,0.650127 -24097,1005:216,56,0,0,0,0.65488 -24098,1005:217,57,0,0,0,0.659371 -24099,1005:218,58,0,0,0,0.658216 -24100,1005:219,59,0,0,0,0.654508 -24101,1006:110,60,0,0,0,0.650898 -24102,1006:111,61,0,0,0,0.651201 -24103,1006:112,62,0,0,0,0.650594 -24104,1006:113,63,0,0,0,0.647951 -24105,1006:114,64,0,0,0,0.646989 -24106,1006:215,65,0,0,0,0.652694 -24107,1006:216,66,0,0,0,0.657291 -24108,1006:217,67,0,0,0,0.659555 -24109,1006:218,68,0,0,0,0.661376 -24110,1006:219,69,0,0,0,0.664658 -24111,1007:110,70,0,0,0,0.66635 -24112,1007:111,71,0,0,0,0.666053 -24113,1007:112,72,0,0,0,0.66475 -24114,1007:114,74,0,0,0,0.663237 -24115,1007:215,75,0,0,0,0.661789 -24116,1007:216,76,0,0,0,0.660178 -24117,1007:217,77,0,0,0,0.660016 -24118,1007:218,78,0,0,0,0.659555 -24119,1007:219,79,0,0,0,0.658932 -24120,1008:110,80,0,0,0,0.658077 -24121,1008:111,81,0,0,0,0.65817 -24122,1008:112,82,0,0,0,0.659509 -24123,1008:113,83,0,0,0,0.660708 -24124,1008:114,84,0,0,0,0.662915 -24125,1008:215,85,0,0,0,0.664772 -24126,1008:216,86,0,0,0,0.66397 -24127,1008:217,87,0,0,0,0.662938 -24128,1008:218,88,0,0,0,0.662685 -24129,1008:219,89,0,0,0,0.663099 -24130,1009:110,90,0,0,0,0.663604 -24131,1009:111,91,0,0,0,0.661767 -24132,1009:112,92,0,0,0,0.662525 -24133,1009:113,93,0,0,0,0.665322 -24134,1009:114,94,0,0,0,0.666738 -24135,1009:215,95,0,0,0,0.667765 -24136,1009:216,96,0,0,0,0.669904 -24137,1009:217,97,0,0,0,0.671493 -24138,1010:110,100,0,0,0,0.673394 -24139,1010:111,101,0,0,0,0.679354 -24140,1010:114,104,0,0,0,0.640202 -24141,1010:215,105,0,0,0,0.637499 -24142,1010:216,106,0,0,0,0.639563 -24143,1010:217,107,0,0,0,0.631567 -24144,1010:218,108,0,0,0,0.644357 -24145,1010:219,109,0,0,0,0.656573 -24146,1011:110,110,0,0,0,0.664635 -24147,1011:111,111,0,0,0,0.667378 -24148,1011:112,112,0,0,0,0.670155 -24149,1011:113,113,0,0,0,0.672942 -24150,1011:218,118,0,0,0,0.66172 -24151,1011:219,119,0,0,0,0.651155 -24152,1012:110,120,0,0,0,0.658632 -24153,1012:111,121,0,0,0,0.664017 -24154,1012:112,122,0,0,0,0.665596 -24155,1012:113,123,0,0,0,0.666944 -24156,1012:114,124,0,0,0,0.667195 -24157,1012:215,125,0,0,0,0.665847 -24158,1012:216,126,0,0,0,0.66895 -24159,1012:217,127,0,0,0,0.662042 -24160,1012:218,128,0,0,0,0.664131 -24161,1012:219,129,0,0,0,0.664589 -24162,1013:110,130,0,0,0,0.665367 -24163,1013:111,131,0,0,0,0.663099 -24164,1013:112,132,0,0,0,0.658863 -24165,1013:113,133,0,0,0,0.659094 -24166,1013:114,134,0,0,0,0.661789 -24167,1013:215,135,0,0,0,0.664589 -24168,1013:216,136,0,0,0,0.667537 -24169,1013:217,137,0,0,0,0.671062 -24170,1013:218,138,0,0,0,0.669746 -24171,1013:219,139,0,0,0,0.66929 -24172,1014:110,140,0,0,0,0.669972 -24173,1014:111,141,0,0,0,0.669586 -24174,1014:112,142,0,0,0,0.669131 -24175,1014:113,143,0,0,0,0.670268 -24176,1014:114,144,0,0,0,0.672308 -24177,1014:215,145,0,0,0,0.673981 -24178,1014:216,146,0,0,0,0.674658 -24179,1014:217,147,0,0,0,0.676055 -24180,1014:218,148,0,0,0,0.678054 -24181,1014:219,149,0,0,0,0.67839 -24182,1015:110,150,0,0,0,0.678524 -24183,1015:111,151,0,0,0,0.678189 -24184,1015:112,152,0,0,0,0.677403 -24185,1015:113,153,0,0,0,0.67637 -24186,1015:114,154,0,0,0,0.675739 -24187,1015:215,155,0,0,0,0.675357 -24188,1015:216,156,0,0,0,0.675041 -24189,1015:217,157,0,0,0,0.674297 -24190,1015:218,158,0,0,0,0.673122 -24191,1015:219,159,0,0,0,0.672217 -24192,1016:110,160,0,0,0,0.671538 -24193,1016:111,161,0,0,0,0.671357 -24194,1016:112,162,0,0,0,0.671878 -24195,1016:113,163,0,0,0,0.672602 -24196,1016:114,164,0,0,0,0.67319 -24197,1016:215,165,0,0,0,0.673258 -24198,1016:216,166,0,0,0,0.672467 -24199,1016:217,167,0,0,0,0.672105 -24200,1016:218,168,0,0,0,0.672308 -24201,1016:219,169,0,0,0,0.674342 -24202,1017:110,170,0,0,0,0.675289 -24203,1017:111,171,0,0,0,0.675199 -24204,1017:112,172,0,0,0,0.675086 -24205,1017:113,173,0,0,0,0.675041 -24206,1017:114,174,0,0,0,0.675447 -24207,1017:215,175,0,0,0,0.676864 -24208,1017:216,176,0,0,0,0.675785 -24209,1017:217,177,0,0,0,0.672942 -24210,1017:218,178,0,0,0,0.67138 -24211,1017:219,179,0,0,0,0.670971 -24212,1018:110,180,0,0,0,0.670018 -24213,7018:110,-180,1,0,0,0.667172 -24214,7017:219,-179,1,0,0,0.665939 -24215,7017:218,-178,1,0,0,0.664521 -24216,7017:217,-177,1,0,0,0.663168 -24217,7017:216,-176,1,0,0,0.662387 -24218,7017:215,-175,1,0,0,0.662433 -24219,7017:114,-174,1,0,0,0.66241 -24220,7017:113,-173,1,0,0,0.662594 -24221,7017:112,-172,1,0,0,0.661007 -24222,7017:111,-171,1,0,0,0.66057 -24223,7017:110,-170,1,0,0,0.659947 -24224,7016:219,-169,1,0,0,0.660408 -24225,7016:218,-168,1,0,0,0.660293 -24226,7016:217,-167,1,0,0,0.660408 -24227,7016:216,-166,1,0,0,0.659647 -24228,7016:215,-165,1,0,0,0.659486 -24229,7016:114,-164,1,0,0,0.659024 -24230,7016:113,-163,1,0,0,0.658539 -24231,7016:112,-162,1,0,0,0.657777 -24232,7016:111,-161,1,0,0,0.656086 -24233,7016:110,-160,1,0,0,0.655042 -24234,7015:219,-159,1,0,0,0.656132 -24235,7015:218,-158,1,0,0,0.656016 -24236,7015:217,-157,1,0,0,0.655344 -24237,7015:216,-156,1,0,0,0.654787 -24238,7015:215,-155,1,0,0,0.655089 -24239,7015:114,-154,1,0,0,0.654671 -24240,7015:113,-153,1,0,0,0.654671 -24241,7015:112,-152,1,0,0,0.653462 -24242,7015:111,-151,1,0,0,0.651715 -24243,7015:110,-150,1,0,0,0.651201 -24244,7014:219,-149,1,0,0,0.651715 -24245,7014:218,-148,1,0,0,0.651015 -24246,7014:217,-147,1,0,0,0.649823 -24247,7014:216,-146,1,0,0,0.647764 -24248,7014:215,-145,1,0,0,0.646426 -24249,7014:114,-144,1,0,0,0.647834 -24250,7014:113,-143,1,0,0,0.648841 -24251,7014:112,-142,1,0,0,0.648443 -24252,7014:111,-141,1,0,0,0.646567 -24253,7014:110,-140,1,0,0,0.648021 -24254,7013:219,-139,1,0,0,0.646027 -24255,7013:218,-138,1,0,0,0.643084 -24256,7013:217,-137,1,0,0,0.641384 -24257,7013:216,-136,1,0,0,0.641763 -24258,7013:215,-135,1,0,0,0.641763 -24259,7013:114,-134,1,0,0,0.640367 -24260,7013:113,-133,1,0,0,0.637476 -24261,7013:112,-132,1,0,0,0.640084 -24262,7013:111,-131,1,0,0,0.642518 -24263,7013:110,-130,1,0,0,0.643225 -24264,7012:219,-129,1,0,0,0.640699 -24265,7012:218,-128,1,0,0,0.643485 -24266,7012:217,-127,1,0,0,0.643084 -24267,7012:216,-126,1,0,0,0.640817 -24268,7012:215,-125,1,0,0,0.636074 -24269,7012:114,-124,1,0,0,0.640652 -24270,7012:113,-123,1,0,0,0.64103 -24271,7012:112,-122,1,0,0,0.631878 -24272,7012:111,-121,1,0,0,0.628742 -24273,7012:110,-120,1,0,0,0.635883 -24274,7011:219,-119,1,0,0,0.637998 -24275,7011:218,-118,1,0,0,0.63486 -24276,7011:217,-117,1,0,0,0.634098 -24277,7011:216,-116,1,0,0,0.634312 -24278,7011:215,-115,1,0,0,0.634264 -24279,7011:114,-114,1,0,0,0.634384 -24280,7011:113,-113,1,0,0,0.63455 -24281,7011:112,-112,1,0,0,0.635098 -24282,7011:111,-111,1,0,0,0.635408 -24283,7011:110,-110,1,0,0,0.635122 -24284,7010:219,-109,1,0,0,0.634026 -24285,7010:218,-108,1,0,0,0.632785 -24286,7010:217,-107,1,0,0,0.631567 -24287,7010:216,-106,1,0,0,0.630514 -24288,7010:215,-105,1,0,0,0.629628 -24289,7010:114,-104,1,0,0,0.628694 -24290,7010:113,-103,1,0,0,0.627902 -24291,7010:112,-102,1,0,0,0.627374 -24292,7010:111,-101,1,0,0,0.627374 -24293,7010:110,-100,1,0,0,0.62747 -24294,7009:219,-99,1,0,0,0.627902 -24295,7009:218,-98,1,0,0,0.628118 -24296,7009:217,-97,1,0,0,0.628141 -24297,7009:216,-96,1,0,0,0.628357 -24298,7009:215,-95,1,0,0,0.629054 -24299,7009:114,-94,1,0,0,0.628646 -24300,7009:113,-93,1,0,0,0.628357 -24301,7009:112,-92,1,0,0,0.62771 -24302,7009:111,-91,1,0,0,0.627157 -24303,7009:110,-90,1,0,0,0.627421 -24304,7008:219,-89,1,0,0,0.628765 -24305,7008:218,-88,1,0,0,0.630802 -24306,7008:217,-87,1,0,0,0.633669 -24307,7008:216,-86,1,0,0,0.633764 -24308,7008:215,-85,1,0,0,0.636621 -24309,7008:114,-84,1,0,0,0.636336 -24310,7008:113,-83,1,0,0,0.632451 -24311,7008:112,-82,1,0,0,0.633263 -24312,7008:111,-81,1,0,0,0.633693 -24313,7008:110,-80,1,0,0,0.633239 -24314,7007:219,-79,1,0,0,0.629724 -24315,7007:218,-78,1,0,0,0.630802 -24316,7005:112,-52,1,0,0,0.619293 -24317,7005:111,-51,1,0,0,0.625956 -24318,7005:110,-50,1,0,0,0.626893 -24319,7004:219,-49,1,0,0,0.631376 -24320,7004:218,-48,1,0,0,0.630611 -24321,7004:217,-47,1,0,0,0.630443 -24322,7004:216,-46,1,0,0,0.633573 -24323,7004:215,-45,1,0,0,0.636002 -24324,7004:114,-44,1,0,0,0.635479 -24325,7004:113,-43,1,0,0,0.632571 -24326,7004:112,-42,1,0,0,0.630922 -24327,7004:111,-41,1,0,0,0.632045 -24328,7004:110,-40,1,0,0,0.632356 -24329,7003:219,-39,1,0,0,0.63269 -24330,7003:218,-38,1,0,0,0.632499 -24331,7003:217,-37,1,0,0,0.631639 -24332,7003:216,-36,1,0,0,0.63128 -24333,7003:215,-35,1,0,0,0.630347 -24334,7003:114,-34,1,0,0,0.630323 -24335,7003:113,-33,1,0,0,0.629365 -24336,7003:112,-32,1,0,0,0.628958 -24337,7003:111,-31,1,0,0,0.629221 -24338,7003:110,-30,1,0,0,0.629557 -24339,7002:219,-29,1,0,0,0.630227 -24340,7002:218,-28,1,0,0,0.630969 -24341,7002:217,-27,1,0,0,0.632212 -24342,7002:216,-26,1,0,0,0.633072 -24343,7002:215,-25,1,0,0,0.633693 -24344,7002:114,-24,1,0,0,0.634884 -24345,7002:113,-23,1,0,0,0.635907 -24346,7002:112,-22,1,0,0,0.637381 -24347,7002:111,-21,1,0,0,0.638497 -24348,7002:110,-20,1,0,0,0.64006 -24349,7001:219,-19,1,0,0,0.642164 -24350,7001:218,-18,1,0,0,0.644992 -24351,7001:217,-17,1,0,0,0.646191 -24352,7001:216,-16,1,0,0,0.647341 -24353,7001:215,-15,1,0,0,0.648091 -24354,7001:114,-14,1,0,0,0.648185 -24355,7001:113,-13,1,0,0,0.649519 -24356,7001:112,-12,1,0,0,0.650992 -24357,7001:111,-11,1,0,0,0.655019 -24358,7001:110,-10,1,0,0,0.659901 -24359,7000:216,-6,1,0,0,0.661053 -24360,7000:215,-5,1,0,0,0.663305 -24361,7000:114,-4,1,0,0,0.665619 -24362,7000:113,-3,1,0,0,0.667993 -24363,7000:111,-1,1,0,0,0.664978 -24364,1000:111,0,1,0,0,0.673733 -24365,1000:111,1,1,0,0,0.673913 -24366,1000:112,2,1,0,0,0.673236 -24367,1000:113,3,1,0,0,0.67468 -24368,1000:114,4,1,0,0,0.676234 -24369,1000:215,5,1,0,0,0.674342 -24370,1004:219,49,1,0,0,0.631567 -24371,1005:110,50,1,0,0,0.639586 -24372,1005:111,51,1,0,0,0.63987 -24373,1005:112,52,1,0,0,0.63814 -24374,1005:113,53,1,0,0,0.638994 -24375,1005:114,54,1,0,0,0.643603 -24376,1005:215,55,1,0,0,0.648537 -24377,1005:216,56,1,0,0,0.654345 -24378,1005:217,57,1,0,0,0.656248 -24379,1005:218,58,1,0,0,0.656781 -24380,1005:219,59,1,0,0,0.654415 -24381,1006:110,60,1,0,0,0.656897 -24382,1006:111,61,1,0,0,0.654787 -24383,1006:112,62,1,0,0,0.652368 -24384,1006:113,63,1,0,0,0.651924 -24385,1006:114,64,1,0,0,0.65402 -24386,1006:215,65,1,0,0,0.656318 -24387,1006:216,66,1,0,0,0.656897 -24388,1006:217,67,1,0,0,0.659209 -24389,1006:218,68,1,0,0,0.661675 -24390,1006:219,69,1,0,0,0.662318 -24391,1007:110,70,1,0,0,0.662502 -24392,1007:111,71,1,0,0,0.662617 -24393,1007:112,72,1,0,0,0.661882 -24394,1007:114,74,1,0,0,0.657198 -24395,1007:215,75,1,0,0,0.65481 -24396,1007:216,76,1,0,0,0.653578 -24397,1007:217,77,1,0,0,0.65395 -24398,1007:218,78,1,0,0,0.654369 -24399,1007:219,79,1,0,0,0.654508 -24400,1008:110,80,1,0,0,0.652414 -24401,1008:111,81,1,0,0,0.649332 -24402,1008:112,82,1,0,0,0.652181 -24403,1008:113,83,1,0,0,0.658077 -24404,1008:114,84,1,0,0,0.660386 -24405,1008:215,85,1,0,0,0.660339 -24406,1008:216,86,1,0,0,0.659301 -24407,1008:217,87,1,0,0,0.656642 -24408,1008:218,88,1,0,0,0.655669 -24409,1008:219,89,1,0,0,0.655924 -24410,1009:110,90,1,0,0,0.654764 -24411,1009:111,91,1,0,0,0.654276 -24412,1009:112,92,1,0,0,0.65611 -24413,1009:113,93,1,0,0,0.657106 -24414,1009:114,94,1,0,0,0.659024 -24415,1009:215,95,1,0,0,0.66404 -24416,1009:219,99,1,0,0,0.662571 -24417,1010:110,100,1,0,0,0.658608 -24418,1010:114,104,1,0,0,0.638093 -24419,1010:215,105,1,0,0,0.629964 -24420,1010:216,106,1,0,0,0.629005 -24421,1010:217,107,1,0,0,0.62807 -24422,1010:218,108,1,0,0,0.633835 -24423,1010:219,109,1,0,0,0.643674 -24424,1011:110,110,1,0,0,0.646473 -24425,1011:111,111,1,0,0,0.653741 -24426,1011:112,112,1,0,0,0.658493 -24427,1011:113,113,1,0,0,0.662456 -24428,1011:114,114,1,0,0,0.66683 -24429,1011:215,115,1,0,0,0.669586 -24430,1012:110,120,1,0,0,0.662594 -24431,1012:111,121,1,0,0,0.649215 -24432,1012:112,122,1,0,0,0.65409 -24433,1012:113,123,1,0,0,0.658146 -24434,1012:114,124,1,0,0,0.654833 -24435,1012:215,125,1,0,0,0.645439 -24436,1012:216,126,1,0,0,0.644592 -24437,1012:217,127,1,0,0,0.655135 -24438,1012:218,128,1,0,0,0.663374 -24439,1012:219,129,1,0,0,0.665161 -24440,1013:110,130,1,0,0,0.666282 -24441,1013:111,131,1,0,0,0.666738 -24442,1013:112,132,1,0,0,0.664612 -24443,1013:113,133,1,0,0,0.6628 -24444,1013:114,134,1,0,0,0.664544 -24445,1013:215,135,1,0,0,0.668768 -24446,1013:216,136,1,0,0,0.672308 -24447,1013:217,137,1,0,0,0.671153 -24448,1013:218,138,1,0,0,0.667606 -24449,1013:219,139,1,0,0,0.66797 -24450,1014:110,140,1,0,0,0.669086 -24451,1014:111,141,1,0,0,0.66929 -24452,1014:112,142,1,0,0,0.670018 -24453,1014:113,143,1,0,0,0.671108 -24454,1014:114,144,1,0,0,0.672399 -24455,1014:215,145,1,0,0,0.673755 -24456,1014:216,146,1,0,0,0.674161 -24457,1014:217,147,1,0,0,0.673778 -24458,1014:218,148,1,0,0,0.673484 -24459,1014:219,149,1,0,0,0.673349 -24460,1015:110,150,1,0,0,0.674026 -24461,1015:111,151,1,0,0,0.67441 -24462,1015:112,152,1,0,0,0.673529 -24463,1015:113,153,1,0,0,0.672399 -24464,1015:114,154,1,0,0,0.66995 -24465,1015:215,155,1,0,0,0.668722 -24466,1015:216,156,1,0,0,0.669313 -24467,1015:217,157,1,0,0,0.671039 -24468,1015:218,158,1,0,0,0.671493 -24469,1015:219,159,1,0,0,0.670881 -24470,1016:110,160,1,0,0,0.670132 -24471,1016:111,161,1,0,0,0.669609 -24472,1016:112,162,1,0,0,0.669518 -24473,1016:113,163,1,0,0,0.669586 -24474,1016:114,164,1,0,0,0.669268 -24475,1016:215,165,1,0,0,0.668381 -24476,1016:216,166,1,0,0,0.668586 -24477,1016:217,167,1,0,0,0.669381 -24478,1016:218,168,1,0,0,0.670336 -24479,1016:219,169,1,0,0,0.67079 -24480,1017:110,170,1,0,0,0.670086 -24481,1017:111,171,1,0,0,0.671085 -24482,1017:112,172,1,0,0,0.672806 -24483,1017:113,173,1,0,0,0.672421 -24484,1017:114,174,1,0,0,0.670858 -24485,1017:215,175,1,0,0,0.669199 -24486,1017:216,176,1,0,0,0.669836 -24487,1017:217,177,1,0,0,0.668586 -24488,1017:218,178,1,0,0,0.667742 -24489,1017:219,179,1,0,0,0.667697 -24490,1018:110,180,1,0,0,0.667172 -24491,7018:120,-180,2,0,0,0.66149 -24492,7017:229,-179,2,0,0,0.661789 -24493,7017:228,-178,2,0,0,0.660777 -24926,1006:134,64,3,0,0,0.64438 -24494,7017:227,-177,2,0,0,0.658401 -24495,7017:226,-176,2,0,0,0.655947 -24496,7017:225,-175,2,0,0,0.654601 -24497,7017:124,-174,2,0,0,0.653927 -24498,7017:123,-173,2,0,0,0.65395 -24499,7017:122,-172,2,0,0,0.654392 -24500,7017:121,-171,2,0,0,0.654345 -24501,7017:120,-170,2,0,0,0.654043 -24502,7016:229,-169,2,0,0,0.653112 -24503,7016:228,-168,2,0,0,0.652857 -24504,7016:227,-167,2,0,0,0.651738 -24505,7016:226,-166,2,0,0,0.651505 -24506,7016:225,-165,2,0,0,0.651855 -24507,7016:124,-164,2,0,0,0.652647 -24508,7016:123,-163,2,0,0,0.652904 -24509,7016:122,-162,2,0,0,0.652717 -24510,7016:121,-161,2,0,0,0.652647 -24511,7016:120,-160,2,0,0,0.65281 -24512,7015:229,-159,2,0,0,0.653415 -24513,7015:228,-158,2,0,0,0.653531 -24514,7015:227,-157,2,0,0,0.652997 -24515,7015:226,-156,2,0,0,0.652251 -24516,7015:225,-155,2,0,0,0.651762 -24517,7015:124,-154,2,0,0,0.651668 -24518,7015:123,-153,2,0,0,0.651855 -24519,7015:122,-152,2,0,0,0.652018 -24520,7015:121,-151,2,0,0,0.651855 -24521,7015:120,-150,2,0,0,0.651248 -24522,7014:229,-149,2,0,0,0.650338 -24523,7014:228,-148,2,0,0,0.649777 -24524,7014:227,-147,2,0,0,0.649613 -24525,7014:226,-146,2,0,0,0.649753 -24526,7014:225,-145,2,0,0,0.649823 -24527,7014:124,-144,2,0,0,0.649473 -24528,7014:123,-143,2,0,0,0.649028 -24529,7014:122,-142,2,0,0,0.648817 -24530,7014:121,-141,2,0,0,0.648724 -24531,7014:120,-140,2,0,0,0.648396 -24532,7013:229,-139,2,0,0,0.648208 -24533,7013:228,-138,2,0,0,0.647505 -24534,7013:227,-137,2,0,0,0.646684 -24535,7013:226,-136,2,0,0,0.646215 -24536,7013:225,-135,2,0,0,0.645627 -24537,7013:124,-134,2,0,0,0.64471 -24538,7013:123,-133,2,0,0,0.643556 -24539,7013:122,-132,2,0,0,0.643037 -24540,7013:121,-131,2,0,0,0.643485 -24541,7013:120,-130,2,0,0,0.643626 -24542,7012:229,-129,2,0,0,0.644192 -24543,7012:228,-128,2,0,0,0.644145 -24544,7012:227,-127,2,0,0,0.642377 -24545,7012:226,-126,2,0,0,0.641172 -24546,7012:225,-125,2,0,0,0.642188 -24547,7012:124,-124,2,0,0,0.642211 -24548,7012:123,-123,2,0,0,0.641101 -24549,7012:122,-122,2,0,0,0.639349 -24550,7012:121,-121,2,0,0,0.637998 -24551,7012:120,-120,2,0,0,0.638378 -24552,7011:229,-119,2,0,0,0.639563 -24553,7011:228,-118,2,0,0,0.640178 -24554,7011:227,-117,2,0,0,0.641479 -24555,7011:226,-116,2,0,0,0.641998 -24556,7011:225,-115,2,0,0,0.641408 -24557,7011:124,-114,2,0,0,0.641337 -24558,7011:123,-113,2,0,0,0.641361 -24559,7011:122,-112,2,0,0,0.64129 -24560,7011:121,-111,2,0,0,0.640439 -24561,7011:120,-110,2,0,0,0.638947 -24562,7010:229,-109,2,0,0,0.637167 -24563,7010:228,-108,2,0,0,0.635217 -24564,7010:227,-107,2,0,0,0.63312 -24565,7010:226,-106,2,0,0,0.631519 -24566,7010:225,-105,2,0,0,0.630036 -24567,7010:124,-104,2,0,0,0.629317 -24568,7010:123,-103,2,0,0,0.628718 -24569,7010:122,-102,2,0,0,0.628598 -24570,7010:121,-101,2,0,0,0.628526 -24571,7010:120,-100,2,0,0,0.629077 -24572,7009:229,-99,2,0,0,0.629604 -24573,7009:228,-98,2,0,0,0.629653 -24574,7009:227,-97,2,0,0,0.629269 -24575,7009:226,-96,2,0,0,0.628981 -24576,7009:225,-95,2,0,0,0.628838 -24577,7009:124,-94,2,0,0,0.629413 -24578,7009:123,-93,2,0,0,0.630706 -24579,7009:122,-92,2,0,0,0.631782 -24580,7009:121,-91,2,0,0,0.631902 -24581,7009:120,-90,2,0,0,0.632188 -24582,7008:229,-89,2,0,0,0.633072 -24583,7008:228,-88,2,0,0,0.634622 -24584,7008:227,-87,2,0,0,0.638615 -24585,7008:226,-86,2,0,0,0.643909 -24586,7008:225,-85,2,0,0,0.648373 -24587,7008:124,-84,2,0,0,0.651178 -24588,7008:123,-83,2,0,0,0.652414 -24589,7008:122,-82,2,0,0,0.652041 -24590,7008:121,-81,2,0,0,0.652274 -24591,7008:120,-80,2,0,0,0.649215 -24592,7007:229,-79,2,0,0,0.644969 -24593,7007:228,-78,2,0,0,0.647412 -24594,7005:227,-57,2,0,0,0.611169 -24595,7005:226,-56,2,0,0,0.600447 -24596,7005:225,-55,2,0,0,0.600596 -24597,7005:124,-54,2,0,0,0.60468 -24598,7005:123,-53,2,0,0,0.619898 -24599,7005:122,-52,2,0,0,0.626268 -24600,7005:121,-51,2,0,0,0.629365 -24601,7005:120,-50,2,0,0,0.63006 -24602,7004:229,-49,2,0,0,0.628357 -24603,7004:228,-48,2,0,0,0.627253 -24604,7004:227,-47,2,0,0,0.628045 -24605,7004:226,-46,2,0,0,0.629508 -24606,7004:225,-45,2,0,0,0.632379 -24607,7004:124,-44,2,0,0,0.632308 -24608,7004:123,-43,2,0,0,0.627037 -24609,7004:122,-42,2,0,0,0.625185 -24610,7004:121,-41,2,0,0,0.626244 -24611,7004:120,-40,2,0,0,0.628573 -24612,7003:229,-39,2,0,0,0.629557 -24613,7003:228,-38,2,0,0,0.628262 -24614,7003:227,-37,2,0,0,0.62468 -24615,7003:226,-36,2,0,0,0.624197 -24616,7003:225,-35,2,0,0,0.625474 -24617,7003:124,-34,2,0,0,0.626148 -24618,7003:123,-33,2,0,0,0.624944 -24619,7003:122,-32,2,0,0,0.624197 -24620,7003:121,-31,2,0,0,0.624149 -24621,7003:120,-30,2,0,0,0.624583 -24622,7002:229,-29,2,0,0,0.624391 -24623,7002:228,-28,2,0,0,0.625546 -24624,7002:227,-27,2,0,0,0.62843 -24625,7002:226,-26,2,0,0,0.62994 -24626,7002:225,-25,2,0,0,0.630514 -24627,7002:124,-24,2,0,0,0.631567 -24628,7002:123,-23,2,0,0,0.633621 -24629,7002:122,-22,2,0,0,0.635812 -24630,7002:121,-21,2,0,0,0.638069 -24631,7002:120,-20,2,0,0,0.640912 -24632,7001:229,-19,2,0,0,0.64478 -24633,7001:228,-18,2,0,0,0.647927 -24634,7001:227,-17,2,0,0,0.651924 -24635,7001:226,-16,2,0,0,0.655158 -24636,7001:225,-15,2,0,0,0.656132 -24637,7001:124,-14,2,0,0,0.657499 -24638,7001:123,-13,2,0,0,0.65817 -24639,7001:122,-12,2,0,0,0.657013 -24640,1004:229,49,2,0,0,0.626268 -24641,1005:120,50,2,0,0,0.631687 -24642,1005:121,51,2,0,0,0.636098 -24643,1005:122,52,2,0,0,0.640107 -24644,1005:123,53,2,0,0,0.643179 -24645,1005:124,54,2,0,0,0.64565 -24646,1005:225,55,2,0,0,0.647224 -24647,1005:226,56,2,0,0,0.649519 -24648,1005:227,57,2,0,0,0.650945 -24649,1005:228,58,2,0,0,0.653299 -24650,1005:229,59,2,0,0,0.653322 -24651,1006:120,60,2,0,0,0.655483 -24652,1006:121,61,2,0,0,0.650548 -24653,1006:122,62,2,0,0,0.645416 -24654,1006:123,63,2,0,0,0.646731 -24655,1006:124,64,2,0,0,0.649706 -24656,1006:225,65,2,0,0,0.652088 -24657,1006:226,66,2,0,0,0.654764 -24658,1006:227,67,2,0,0,0.655228 -24659,1006:228,68,2,0,0,0.655576 -24660,1006:229,69,2,0,0,0.657499 -24661,1007:120,70,2,0,0,0.659532 -24662,1007:121,71,2,0,0,0.660132 -24663,1007:122,72,2,0,0,0.659532 -24664,1007:124,74,2,0,0,0.655808 -24665,1007:225,75,2,0,0,0.648162 -24666,1007:226,76,2,0,0,0.646614 -24667,1007:227,77,2,0,0,0.645815 -24668,1007:228,78,2,0,0,0.64431 -24669,1007:229,79,2,0,0,0.642684 -24670,1008:120,80,2,0,0,0.644404 -24671,1008:123,83,2,0,0,0.642612 -24672,1008:124,84,2,0,0,0.65253 -24673,1008:225,85,2,0,0,0.652437 -24674,1008:226,86,2,0,0,0.651131 -24675,1008:227,87,2,0,0,0.650104 -24676,1008:228,88,2,0,0,0.647857 -24677,1008:229,89,2,0,0,0.645839 -24678,1009:120,90,2,0,0,0.643792 -24679,1009:121,91,2,0,0,0.645815 -24680,1009:122,92,2,0,0,0.649379 -24681,1009:123,93,2,0,0,0.651272 -24682,1009:124,94,2,0,0,0.647294 -24683,1009:225,95,2,0,0,0.6487 -24684,1009:226,96,2,0,0,0.648654 -24685,1009:227,97,2,0,0,0.648396 -24686,1009:228,98,2,0,0,0.651575 -24687,1009:229,99,2,0,0,0.650688 -24688,1010:120,100,2,0,0,0.648467 -24689,1010:122,102,2,0,0,0.634645 -24690,1010:123,103,2,0,0,0.638283 -24691,1010:124,104,2,0,0,0.625835 -24692,1010:225,105,2,0,0,0.623354 -24693,1010:226,106,2,0,0,0.619462 -24694,1010:227,107,2,0,0,0.615166 -24695,1010:228,108,2,0,0,0.616697 -24696,1010:229,109,2,0,0,0.635527 -24697,1011:120,110,2,0,0,0.642848 -24698,1011:121,111,2,0,0,0.647669 -24699,1011:122,112,2,0,0,0.649402 -24700,1011:123,113,2,0,0,0.651575 -24701,1011:124,114,2,0,0,0.653345 -24702,1011:225,115,2,0,0,0.654531 -24703,1011:226,116,2,0,0,0.656156 -24704,1011:228,118,2,0,0,0.656202 -24705,1011:229,119,2,0,0,0.652857 -24706,1012:120,120,2,0,0,0.652694 -24707,1012:121,121,2,0,0,0.646261 -24708,1012:122,122,2,0,0,0.64299 -24709,1012:123,123,2,0,0,0.642542 -24710,1012:124,124,2,0,0,0.631519 -24711,1012:226,126,2,0,0,0.648724 -24712,1012:227,127,2,0,0,0.649075 -24713,1012:228,128,2,0,0,0.660063 -24714,1012:229,129,2,0,0,0.662456 -24715,1013:120,130,2,0,0,0.662732 -24716,1013:121,131,2,0,0,0.661007 -24717,1013:122,132,2,0,0,0.66149 -24718,1013:123,133,2,0,0,0.663099 -24719,1013:124,134,2,0,0,0.664887 -24720,1013:225,135,2,0,0,0.665711 -24721,1013:226,136,2,0,0,0.666716 -24722,1013:227,137,2,0,0,0.668312 -24723,1013:228,138,2,0,0,0.667948 -24724,1013:229,139,2,0,0,0.661237 -24725,1014:120,140,2,0,0,0.660201 -24726,1014:121,141,2,0,0,0.662226 -24727,1014:122,142,2,0,0,0.663191 -24728,1014:123,143,2,0,0,0.663948 -24729,1014:124,144,2,0,0,0.664544 -24730,1014:225,145,2,0,0,0.664589 -24731,1014:226,146,2,0,0,0.665711 -24732,1014:227,147,2,0,0,0.666465 -24733,1014:228,148,2,0,0,0.666853 -24734,1014:229,149,2,0,0,0.667081 -24735,1015:120,150,2,0,0,0.668085 -24736,1015:121,151,2,0,0,0.668859 -24737,1015:122,152,2,0,0,0.667833 -24738,1015:123,153,2,0,0,0.667172 -24739,1015:124,154,2,0,0,0.66683 -24740,1015:225,155,2,0,0,0.666807 -24741,1015:226,156,2,0,0,0.667149 -24742,1015:227,157,2,0,0,0.667401 -24743,1015:228,158,2,0,0,0.667332 -24744,1015:229,159,2,0,0,0.662456 -24745,1016:120,160,2,0,0,0.665482 -24746,1016:121,161,2,0,0,0.667035 -24747,1016:122,162,2,0,0,0.666305 -24748,1016:123,163,2,0,0,0.664978 -24749,1016:124,164,2,0,0,0.66381 -24750,1016:225,165,2,0,0,0.662915 -24751,1016:226,166,2,0,0,0.662823 -24752,1016:227,167,2,0,0,0.663833 -24753,1016:228,168,2,0,0,0.664704 -24754,1016:229,169,2,0,0,0.664406 -24755,1017:120,170,2,0,0,0.662111 -24756,1017:121,171,2,0,0,0.660639 -24757,1017:122,172,2,0,0,0.662456 -24758,1017:123,173,2,0,0,0.665344 -24759,1017:124,174,2,0,0,0.669041 -24760,1017:225,175,2,0,0,0.669359 -24761,1017:226,176,2,0,0,0.667993 -24762,1017:227,177,2,0,0,0.666533 -24763,1017:228,178,2,0,0,0.66365 -24764,1017:229,179,2,0,0,0.661468 -24765,1018:120,180,2,0,0,0.66149 -24766,7018:130,-180,3,0,0,0.648841 -24767,7017:239,-179,3,0,0,0.651482 -24768,7017:238,-178,3,0,0,0.650291 -24769,7017:237,-177,3,0,0,0.648068 -24770,7017:236,-176,3,0,0,0.646872 -24771,7017:235,-175,3,0,0,0.645157 -24772,7017:134,-174,3,0,0,0.642802 -24773,7017:133,-173,3,0,0,0.642211 -24774,7017:132,-172,3,0,0,0.642495 -24775,7017:131,-171,3,0,0,0.644404 -24776,7017:130,-170,3,0,0,0.643131 -24777,7016:239,-169,3,0,0,0.641054 -24778,7016:238,-168,3,0,0,0.638022 -24779,7016:237,-167,3,0,0,0.637547 -24780,7016:236,-166,3,0,0,0.639444 -24781,7016:235,-165,3,0,0,0.640604 -24782,7016:134,-164,3,0,0,0.640935 -24783,7016:133,-163,3,0,0,0.641267 -24784,7016:132,-162,3,0,0,0.642305 -24785,7016:131,-161,3,0,0,0.641928 -24786,7016:130,-160,3,0,0,0.640297 -24787,7015:239,-159,3,0,0,0.639421 -24788,7015:238,-158,3,0,0,0.639421 -24789,7015:237,-157,3,0,0,0.639468 -24790,7015:236,-156,3,0,0,0.639373 -24791,7015:235,-155,3,0,0,0.639255 -24792,7015:134,-154,3,0,0,0.64006 -24793,7015:133,-153,3,0,0,0.640982 -24794,7015:132,-152,3,0,0,0.639752 -24795,7015:131,-151,3,0,0,0.635098 -24796,7015:130,-150,3,0,0,0.631973 -24797,7014:239,-149,3,0,0,0.633931 -24798,7014:238,-148,3,0,0,0.635027 -24799,7014:237,-147,3,0,0,0.635574 -24800,7014:236,-146,3,0,0,0.636692 -24801,7014:235,-145,3,0,0,0.636621 -24802,7014:134,-144,3,0,0,0.635027 -24803,7014:133,-143,3,0,0,0.633716 -24804,7014:132,-142,3,0,0,0.632236 -24805,7014:131,-141,3,0,0,0.631471 -24806,7014:130,-140,3,0,0,0.633859 -24807,7013:239,-139,3,0,0,0.637143 -24808,7013:238,-138,3,0,0,0.638686 -24809,7013:237,-137,3,0,0,0.638378 -24810,7013:236,-136,3,0,0,0.638188 -24811,7013:235,-135,3,0,0,0.637404 -24812,7013:134,-134,3,0,0,0.635574 -24813,7013:133,-133,3,0,0,0.633716 -24814,7013:132,-132,3,0,0,0.632785 -24815,7013:131,-131,3,0,0,0.63226 -24816,7013:130,-130,3,0,0,0.634431 -24817,7012:239,-129,3,0,0,0.636811 -24818,7012:238,-128,3,0,0,0.637618 -24819,7012:237,-127,3,0,0,0.637262 -24820,7012:236,-126,3,0,0,0.637025 -24821,7012:235,-125,3,0,0,0.638093 -24822,7012:134,-124,3,0,0,0.639349 -24823,7012:133,-123,3,0,0,0.639942 -24824,7012:132,-122,3,0,0,0.640131 -24825,7012:131,-121,3,0,0,0.639729 -24826,7012:130,-120,3,0,0,0.639847 -24827,7011:239,-119,3,0,0,0.640935 -24828,7011:238,-118,3,0,0,0.641952 -24829,7011:237,-117,3,0,0,0.64155 -24830,7011:236,-116,3,0,0,0.640391 -24831,7011:235,-115,3,0,0,0.63961 -24832,7011:134,-114,3,0,0,0.639468 -24833,7011:133,-113,3,0,0,0.639492 -24834,7011:132,-112,3,0,0,0.637975 -24835,7011:131,-111,3,0,0,0.634979 -24836,7011:130,-110,3,0,0,0.633263 -24837,7010:239,-109,3,0,0,0.631806 -24838,7010:238,-108,3,0,0,0.629533 -24839,7010:237,-107,3,0,0,0.628382 -24840,7010:236,-106,3,0,0,0.628094 -24841,7010:235,-105,3,0,0,0.628526 -24842,7010:134,-104,3,0,0,0.628118 -24843,7010:133,-103,3,0,0,0.626316 -24844,7010:132,-102,3,0,0,0.623233 -24845,7010:131,-101,3,0,0,0.617814 -24846,7010:130,-100,3,0,0,0.614485 -24847,7009:239,-99,3,0,0,0.615993 -24848,7009:238,-98,3,0,0,0.618129 -24849,7009:237,-97,3,0,0,0.619946 -24850,7009:236,-96,3,0,0,0.620865 -24851,7009:235,-95,3,0,0,0.621808 -24852,7009:134,-94,3,0,0,0.624101 -24853,7009:133,-93,3,0,0,0.627806 -24854,7009:132,-92,3,0,0,0.628141 -24855,7009:131,-91,3,0,0,0.626148 -24856,7009:130,-90,3,0,0,0.622702 -24857,7008:239,-89,3,0,0,0.628598 -24858,7008:238,-88,3,0,0,0.636383 -24859,7008:237,-87,3,0,0,0.641125 -24860,7008:236,-86,3,0,0,0.651924 -24861,7008:235,-85,3,0,0,0.658794 -24862,7008:134,-84,3,0,0,0.660708 -24863,7008:133,-83,3,0,0,0.656434 -24864,7008:130,-80,3,0,0,0.657684 -24865,7007:239,-79,3,0,0,0.65253 -24866,7005:239,-59,3,0,0,0.624559 -24867,7005:238,-58,3,0,0,0.619487 -24868,7005:237,-57,3,0,0,0.626725 -24869,7005:236,-56,3,0,0,0.627421 -24870,7005:235,-55,3,0,0,0.626989 -24871,7005:134,-54,3,0,0,0.630825 -24872,7005:133,-53,3,0,0,0.631662 -24873,7005:132,-52,3,0,0,0.63073 -24874,7005:131,-51,3,0,0,0.629628 -24875,7005:130,-50,3,0,0,0.628382 -24876,7004:239,-49,3,0,0,0.630323 -24877,7004:238,-48,3,0,0,0.628742 -24878,7004:237,-47,3,0,0,0.628382 -24879,7004:236,-46,3,0,0,0.627541 -24880,7004:235,-45,3,0,0,0.627109 -24881,7004:134,-44,3,0,0,0.626436 -24882,7004:133,-43,3,0,0,0.625931 -24883,7004:132,-42,3,0,0,0.623908 -24884,7004:131,-41,3,0,0,0.622799 -24885,7004:130,-40,3,0,0,0.623523 -24886,7003:239,-39,3,0,0,0.623787 -24887,7003:238,-38,3,0,0,0.620213 -24888,7003:237,-37,3,0,0,0.616721 -24889,7003:236,-36,3,0,0,0.617693 -24890,7003:235,-35,3,0,0,0.619293 -24891,7003:134,-34,3,0,0,0.616649 -24892,7003:133,-33,3,0,0,0.617061 -24893,7003:132,-32,3,0,0,0.617231 -24894,7003:131,-31,3,0,0,0.619244 -24895,7003:130,-30,3,0,0,0.619777 -24896,7002:239,-29,3,0,0,0.620237 -24897,7002:238,-28,3,0,0,0.62014 -24898,7002:237,-27,3,0,0,0.621518 -24899,7002:236,-26,3,0,0,0.624921 -24900,7002:235,-25,3,0,0,0.624631 -24901,7002:134,-24,3,0,0,0.625811 -24902,7002:133,-23,3,0,0,0.629677 -24903,7002:132,-22,3,0,0,0.633263 -24904,7002:131,-21,3,0,0,0.635859 -24905,7002:130,-20,3,0,0,0.639208 -24906,7001:239,-19,3,0,0,0.645063 -24907,7001:238,-18,3,0,0,0.650268 -24908,7001:237,-17,3,0,0,0.653322 -24909,7001:236,-16,3,0,0,0.657592 -24910,7001:235,-15,3,0,0,0.657175 -24911,7001:134,-14,3,0,0,0.665482 -24912,1005:130,50,3,0,0,0.623595 -24913,1005:131,51,3,0,0,0.625402 -24914,1005:132,52,3,0,0,0.623667 -24915,1005:133,53,3,0,0,0.625763 -24916,1005:134,54,3,0,0,0.634408 -24917,1005:235,55,3,0,0,0.637666 -24918,1005:236,56,3,0,0,0.633597 -24919,1005:237,57,3,0,0,0.635883 -24920,1005:238,58,3,0,0,0.643013 -24921,1005:239,59,3,0,0,0.647716 -24922,1006:130,60,3,0,0,0.648935 -24923,1006:131,61,3,0,0,0.64471 -24924,1006:132,62,3,0,0,0.642754 -24925,1006:133,63,3,0,0,0.64058 -24927,1006:235,65,3,0,0,0.647669 -24928,1006:236,66,3,0,0,0.64966 -24929,1006:237,67,3,0,0,0.650594 -24930,1006:238,68,3,0,0,0.652065 -24931,1006:239,69,3,0,0,0.65295 -24932,1007:130,70,3,0,0,0.655367 -24933,1007:131,71,3,0,0,0.657128 -24934,1007:132,72,3,0,0,0.653438 -24935,1007:134,74,3,0,0,0.647857 -24936,1007:235,75,3,0,0,0.645627 -24937,1007:236,76,3,0,0,0.645768 -24938,1007:237,77,3,0,0,0.645462 -24939,1007:239,79,3,0,0,0.648256 -24940,1008:130,80,3,0,0,0.644498 -24941,1008:132,82,3,0,0,0.627662 -24942,1008:133,83,3,0,0,0.639208 -24943,1008:134,84,3,0,0,0.644357 -24944,1008:235,85,3,0,0,0.644216 -24945,1008:236,86,3,0,0,0.643532 -24946,1008:237,87,3,0,0,0.645039 -24947,1008:238,88,3,0,0,0.645204 -24948,1008:239,89,3,0,0,0.643556 -24949,1009:130,90,3,0,0,0.64372 -24950,1009:131,91,3,0,0,0.644027 -24951,1009:132,92,3,0,0,0.646332 -24952,1009:133,93,3,0,0,0.647412 -24953,1009:134,94,3,0,0,0.645416 -24954,1009:235,95,3,0,0,0.64645 -24955,1009:236,96,3,0,0,0.646989 -24956,1009:237,97,3,0,0,0.649519 -24957,1009:238,98,3,0,0,0.650455 -24958,1010:131,101,3,0,0,0.638402 -24959,1010:132,102,3,0,0,0.638402 -24960,1010:133,103,3,0,0,0.635717 -24961,1010:134,104,3,0,0,0.628861 -24962,1010:235,105,3,0,0,0.615823 -24963,1010:236,106,3,0,0,0.612828 -24964,1010:237,107,3,0,0,0.611072 -24965,1010:238,108,3,0,0,0.610974 -24966,1010:239,109,3,0,0,0.624174 -24967,1011:130,110,3,0,0,0.637476 -24968,1011:131,111,3,0,0,0.645134 -24969,1011:132,112,3,0,0,0.64605 -24970,1011:133,113,3,0,0,0.647435 -24971,1011:134,114,3,0,0,0.648302 -24972,1011:235,115,3,0,0,0.649964 -24973,1011:236,116,3,0,0,0.652228 -24974,1011:237,117,3,0,0,0.65288 -24975,1011:238,118,3,0,0,0.653438 -24976,1011:239,119,3,0,0,0.650758 -24977,1012:130,120,3,0,0,0.647505 -24978,1012:131,121,3,0,0,0.644616 -24979,1012:132,122,3,0,0,0.646332 -24980,1012:133,123,3,0,0,0.629293 -24981,1012:237,127,3,0,0,0.647083 -24982,1012:238,128,3,0,0,0.655391 -24983,1012:239,129,3,0,0,0.658239 -24984,1013:130,130,3,0,0,0.658978 -24985,1013:131,131,3,0,0,0.658794 -24986,1013:132,132,3,0,0,0.658655 -24987,1013:133,133,3,0,0,0.658563 -24988,1013:134,134,3,0,0,0.658447 -24989,1013:235,135,3,0,0,0.659555 -24990,1013:236,136,3,0,0,0.6628 -24991,1013:237,137,3,0,0,0.663833 -24992,1013:238,138,3,0,0,0.664658 -24993,1013:239,139,3,0,0,0.659624 -24994,1014:130,140,3,0,0,0.657846 -24995,1014:131,141,3,0,0,0.658516 -24996,1014:132,142,3,0,0,0.658493 -24997,1014:133,143,3,0,0,0.658401 -24998,1014:134,144,3,0,0,0.658771 -24999,1014:235,145,3,0,0,0.658955 -25000,1014:236,146,3,0,0,0.66149 -25001,1014:237,147,3,0,0,0.663305 -25002,1014:238,148,3,0,0,0.664246 -25003,1014:239,149,3,0,0,0.663191 -25004,1015:130,150,3,0,0,0.665184 -25005,1015:131,151,3,0,0,0.665734 -25006,1015:132,152,3,0,0,0.666008 -25007,1015:133,153,3,0,0,0.666442 -25008,1015:134,154,3,0,0,0.666031 -25009,1015:235,155,3,0,0,0.664795 -25010,1015:236,156,3,0,0,0.663948 -25011,1015:237,157,3,0,0,0.662984 -25012,1015:238,158,3,0,0,0.660915 -25013,1015:239,159,3,0,0,0.661076 -25014,1016:130,160,3,0,0,0.662157 -25015,1016:131,161,3,0,0,0.661214 -25016,1016:132,162,3,0,0,0.659186 -25017,1016:133,163,3,0,0,0.657869 -25018,1016:134,164,3,0,0,0.657499 -25019,1016:235,165,3,0,0,0.657291 -25020,1016:236,166,3,0,0,0.657892 -25021,1016:237,167,3,0,0,0.65847 -25022,1016:238,168,3,0,0,0.658724 -25023,1016:239,169,3,0,0,0.651528 -25024,1017:130,170,3,0,0,0.651389 -25025,1017:131,171,3,0,0,0.655599 -25026,1017:132,172,3,0,0,0.644451 -25027,1017:133,173,3,0,0,0.647834 -25028,1017:134,174,3,0,0,0.653531 -25029,1017:235,175,3,0,0,0.657268 -25030,1017:236,176,3,0,0,0.657106 -25031,1017:237,177,3,0,0,0.652088 -25032,1017:238,178,3,0,0,0.643603 -25033,1017:239,179,3,0,0,0.644545 -25034,1018:130,180,3,0,0,0.648841 -25035,7018:140,-180,4,0,0,0.638307 -25036,7017:249,-179,4,0,0,0.637452 -25037,7017:248,-178,4,0,0,0.636835 -25038,7017:247,-177,4,0,0,0.637238 -25039,7017:246,-176,4,0,0,0.635812 -25040,7017:245,-175,4,0,0,0.634384 -25041,7017:144,-174,4,0,0,0.63436 -25042,7017:143,-173,4,0,0,0.634717 -25043,7017:142,-172,4,0,0,0.63486 -25044,7017:141,-171,4,0,0,0.63374 -25045,7017:140,-170,4,0,0,0.630682 -25046,7016:249,-169,4,0,0,0.62759 -25047,7016:248,-168,4,0,0,0.62622 -25048,7016:247,-167,4,0,0,0.626412 -25049,7016:246,-166,4,0,0,0.628166 -25050,7016:245,-165,4,0,0,0.629197 -25051,7016:144,-164,4,0,0,0.63018 -25052,7016:143,-163,4,0,0,0.629844 -25053,7016:142,-162,4,0,0,0.629269 -25054,7016:141,-161,4,0,0,0.628357 -25055,7016:140,-160,4,0,0,0.626028 -25056,7015:249,-159,4,0,0,0.624222 -25057,7015:248,-158,4,0,0,0.623643 -25058,7015:247,-157,4,0,0,0.622243 -25059,7015:246,-156,4,0,0,0.623547 -25060,7015:245,-155,4,0,0,0.626725 -25061,7015:144,-154,4,0,0,0.627349 -25062,7015:143,-153,4,0,0,0.624391 -25063,7015:142,-152,4,0,0,0.620285 -25064,7015:141,-151,4,0,0,0.61842 -25065,7015:140,-150,4,0,0,0.618832 -25066,7014:249,-149,4,0,0,0.619244 -25067,7014:248,-148,4,0,0,0.618541 -25068,7014:247,-147,4,0,0,0.61859 -25069,7014:246,-146,4,0,0,0.619462 -25070,7014:245,-145,4,0,0,0.618978 -25071,7014:144,-144,4,0,0,0.614485 -25072,7014:143,-143,4,0,0,0.607721 -25073,7014:142,-142,4,0,0,0.607451 -25074,7014:141,-141,4,0,0,0.611096 -25075,7014:140,-140,4,0,0,0.617231 -25076,7013:249,-139,4,0,0,0.620575 -25077,7013:248,-138,4,0,0,0.621978 -25078,7013:247,-137,4,0,0,0.620696 -25079,7013:246,-136,4,0,0,0.618905 -25080,7013:245,-135,4,0,0,0.618686 -25081,7013:144,-134,4,0,0,0.618735 -25082,7013:143,-133,4,0,0,0.618274 -25083,7013:142,-132,4,0,0,0.61728 -25084,7013:141,-131,4,0,0,0.619777 -25085,7013:140,-130,4,0,0,0.624174 -25086,7012:249,-129,4,0,0,0.624848 -25087,7012:248,-128,4,0,0,0.623426 -25088,7012:247,-127,4,0,0,0.622823 -25089,7012:246,-126,4,0,0,0.624463 -25090,7012:245,-125,4,0,0,0.627637 -25091,7012:144,-124,4,0,0,0.63128 -25092,7012:143,-123,4,0,0,0.633573 -25093,7012:142,-122,4,0,0,0.634431 -25094,7012:141,-121,4,0,0,0.635217 -25095,7012:140,-120,4,0,0,0.636526 -25096,7011:249,-119,4,0,0,0.637452 -25097,7011:248,-118,4,0,0,0.637096 -25098,7011:247,-117,4,0,0,0.635883 -25099,7011:246,-116,4,0,0,0.634622 -25100,7011:245,-115,4,0,0,0.633645 -25101,7011:144,-114,4,0,0,0.633239 -25102,7011:143,-113,4,0,0,0.63343 -25103,7011:142,-112,4,0,0,0.632977 -25104,7011:141,-111,4,0,0,0.631495 -25105,7011:140,-110,4,0,0,0.630849 -25106,7010:249,-109,4,0,0,0.630802 -25107,7010:248,-108,4,0,0,0.631352 -25108,7010:247,-107,4,0,0,0.634455 -25109,7010:246,-106,4,0,0,0.636906 -25110,7010:245,-105,4,0,0,0.633811 -25111,7010:144,-104,4,0,0,0.6267 -25112,7010:143,-103,4,0,0,0.622388 -25113,7010:142,-102,4,0,0,0.619656 -25114,7010:141,-101,4,0,0,0.616867 -25115,7010:140,-100,4,0,0,0.613437 -25116,7009:249,-99,4,0,0,0.613706 -25117,7009:248,-98,4,0,0,0.614996 -25118,7009:247,-97,4,0,0,0.617328 -25119,7009:246,-96,4,0,0,0.619825 -25120,7009:245,-95,4,0,0,0.622388 -25121,7009:144,-94,4,0,0,0.625209 -25122,7009:143,-93,4,0,0,0.622847 -25123,7009:142,-92,4,0,0,0.622074 -25124,7009:141,-91,4,0,0,0.618177 -25125,7009:140,-90,4,0,0,0.612731 -25126,7008:249,-89,4,0,0,0.620648 -25127,7008:248,-88,4,0,0,0.629533 -25128,7008:247,-87,4,0,0,0.638733 -25129,7008:246,-86,4,0,0,0.657453 -25130,7008:245,-85,4,0,0,0.656573 -25131,7008:142,-82,4,0,0,0.639492 -25132,7008:141,-81,4,0,0,0.635859 -25133,7008:140,-80,4,0,0,0.641172 -25134,7007:249,-79,4,0,0,0.642919 -25135,7007:248,-78,4,0,0,0.644216 -25136,7007:247,-77,4,0,0,0.653206 -25137,7007:246,-76,4,0,0,0.648326 -25138,7006:141,-61,4,0,0,0.623088 -25139,7006:140,-60,4,0,0,0.623812 -25140,7005:249,-59,4,0,0,0.627782 -25141,7005:248,-58,4,0,0,0.630634 -25142,7005:247,-57,4,0,0,0.631185 -25143,7005:246,-56,4,0,0,0.630849 -25144,7005:245,-55,4,0,0,0.631352 -25145,7005:144,-54,4,0,0,0.629533 -25146,7005:143,-53,4,0,0,0.629748 -25147,7005:142,-52,4,0,0,0.629149 -25148,7005:141,-51,4,0,0,0.630323 -25149,7005:140,-50,4,0,0,0.629964 -25150,7004:249,-49,4,0,0,0.629245 -25151,7004:248,-48,4,0,0,0.627517 -25152,7004:247,-47,4,0,0,0.626244 -25153,7004:246,-46,4,0,0,0.625113 -25154,7004:245,-45,4,0,0,0.623643 -25155,7004:144,-44,4,0,0,0.623233 -25156,7004:143,-43,4,0,0,0.623137 -25157,7004:142,-42,4,0,0,0.620769 -25158,7004:141,-41,4,0,0,0.618663 -25159,7004:140,-40,4,0,0,0.61745 -25160,7003:249,-39,4,0,0,0.61626 -25161,7003:248,-38,4,0,0,0.612902 -25162,7003:247,-37,4,0,0,0.607893 -25163,7003:246,-36,4,0,0,0.609606 -25164,7003:245,-35,4,0,0,0.608774 -25165,7003:144,-34,4,0,0,0.60657 -25166,7003:143,-33,4,0,0,0.609972 -25167,7003:142,-32,4,0,0,0.610241 -25168,7003:141,-31,4,0,0,0.610387 -25169,7003:140,-30,4,0,0,0.608652 -25170,7002:249,-29,4,0,0,0.611706 -25171,7002:248,-28,4,0,0,0.614217 -25172,7002:247,-27,4,0,0,0.61485 -25173,7002:246,-26,4,0,0,0.614947 -25174,7002:245,-25,4,0,0,0.616746 -25175,7002:144,-24,4,0,0,0.618541 -25176,7002:143,-23,4,0,0,0.622895 -25177,7002:142,-22,4,0,0,0.631304 -25178,7002:141,-21,4,0,0,0.634884 -25179,7002:140,-20,4,0,0,0.637571 -25180,7001:249,-19,4,0,0,0.64214 -25181,7001:248,-18,4,0,0,0.647083 -25182,7001:247,-17,4,0,0,0.648935 -25183,7001:246,-16,4,0,0,0.652181 -25184,7001:245,-15,4,0,0,0.655831 -25185,7001:144,-14,4,0,0,0.675199 -25186,1005:141,51,4,0,0,0.619317 -25187,1005:142,52,4,0,0,0.618177 -25188,1005:143,53,4,0,0,0.617134 -25189,1005:144,54,4,0,0,0.615726 -25190,1005:245,55,4,0,0,0.622847 -25191,1005:246,56,4,0,0,0.627829 -25192,1005:247,57,4,0,0,0.625787 -25193,1005:248,58,4,0,0,0.629581 -25194,1005:249,59,4,0,0,0.637381 -25195,1006:140,60,4,0,0,0.641337 -25196,1006:141,61,4,0,0,0.638235 -25197,1006:142,62,4,0,0,0.637238 -25198,1006:143,63,4,0,0,0.638116 -25199,1006:144,64,4,0,0,0.638805 -25200,1006:245,65,4,0,0,0.642259 -25201,1006:246,66,4,0,0,0.643179 -25202,1006:247,67,4,0,0,0.64405 -25203,1006:248,68,4,0,0,0.645933 -25204,1006:249,69,4,0,0,0.648817 -25205,1007:140,70,4,0,0,0.651411 -25206,1007:141,71,4,0,0,0.652717 -25207,1007:142,72,4,0,0,0.652461 -25208,1007:144,74,4,0,0,0.649005 -25209,1007:245,75,4,0,0,0.648091 -25210,1007:246,76,4,0,0,0.649075 -25211,1008:140,80,4,0,0,0.629581 -25212,1008:141,81,4,0,0,0.62807 -25213,1008:142,82,4,0,0,0.629101 -25214,1008:143,83,4,0,0,0.638188 -25215,1008:144,84,4,0,0,0.640415 -25216,1008:245,85,4,0,0,0.642046 -25217,1008:246,86,4,0,0,0.642636 -25218,1008:247,87,4,0,0,0.643438 -25219,1008:248,88,4,0,0,0.643344 -25220,1008:249,89,4,0,0,0.643414 -25221,1009:140,90,4,0,0,0.643768 -25222,1009:141,91,4,0,0,0.643697 -25223,1009:142,92,4,0,0,0.642802 -25224,1009:143,93,4,0,0,0.643084 -25225,1009:144,94,4,0,0,0.643461 -25226,1009:245,95,4,0,0,0.644922 -25227,1009:246,96,4,0,0,0.646191 -25228,1009:247,97,4,0,0,0.647013 -25229,1009:248,98,4,0,0,0.649473 -25230,1010:140,100,4,0,0,0.640841 -25231,1010:141,101,4,0,0,0.641597 -25232,1010:142,102,4,0,0,0.64077 -25233,1010:143,103,4,0,0,0.63852 -25234,1010:144,104,4,0,0,0.630443 -25235,1010:245,105,4,0,0,0.623643 -25236,1010:247,107,4,0,0,0.60728 -25237,1010:248,108,4,0,0,0.601458 -25238,1010:249,109,4,0,0,0.612658 -25239,1011:140,110,4,0,0,0.631089 -25240,1011:141,111,4,0,0,0.639468 -25241,1011:142,112,4,0,0,0.64077 -25242,1011:143,113,4,0,0,0.639752 -25243,1011:144,114,4,0,0,0.643532 -25244,1011:245,115,4,0,0,0.648162 -25245,1011:246,116,4,0,0,0.64863 -25246,1011:247,117,4,0,0,0.649613 -25247,1011:248,118,4,0,0,0.648091 -25248,1012:140,120,4,0,0,0.644286 -25249,1012:141,121,4,0,0,0.642424 -25250,1012:142,122,4,0,0,0.64051 -25251,1012:144,124,4,0,0,0.639089 -25252,1012:245,125,4,0,0,0.629029 -25253,1012:246,126,4,0,0,0.635979 -25254,1012:247,127,4,0,0,0.644922 -25255,1012:248,128,4,0,0,0.651131 -25256,1012:249,129,4,0,0,0.653531 -25257,1013:140,130,4,0,0,0.654299 -25258,1013:141,131,4,0,0,0.654694 -25259,1013:142,132,4,0,0,0.655019 -25260,1013:143,133,4,0,0,0.656016 -25261,1013:144,134,4,0,0,0.657962 -25262,1013:245,135,4,0,0,0.659994 -25263,1013:246,136,4,0,0,0.659786 -25264,1013:247,137,4,0,0,0.659394 -25265,1013:248,138,4,0,0,0.659786 -25266,1013:249,139,4,0,0,0.656897 -25267,1014:140,140,4,0,0,0.654856 -25268,1014:141,141,4,0,0,0.655901 -25269,1014:142,142,4,0,0,0.655437 -25270,1014:143,143,4,0,0,0.654903 -25271,1014:144,144,4,0,0,0.655808 -25272,1014:245,145,4,0,0,0.65736 -25273,1014:246,146,4,0,0,0.658978 -25274,1014:247,147,4,0,0,0.660408 -25275,1014:248,148,4,0,0,0.66103 -25276,1014:249,149,4,0,0,0.66126 -25277,1015:140,150,4,0,0,0.659947 -25278,1015:141,151,4,0,0,0.662732 -25279,1015:142,152,4,0,0,0.662892 -25280,1015:143,153,4,0,0,0.66172 -25281,1015:144,154,4,0,0,0.660132 -25282,1015:245,155,4,0,0,0.65914 -25283,1015:246,156,4,0,0,0.658077 -25284,1015:247,157,4,0,0,0.6578 -25285,1015:248,158,4,0,0,0.657407 -25286,1015:249,159,4,0,0,0.65655 -25287,1016:140,160,4,0,0,0.655413 -25288,1016:141,161,4,0,0,0.654043 -25289,1016:142,162,4,0,0,0.65281 -25290,1016:143,163,4,0,0,0.652088 -25291,1016:144,164,4,0,0,0.651855 -25292,1016:245,165,4,0,0,0.651738 -25293,1016:246,166,4,0,0,0.649426 -25294,1016:247,167,4,0,0,0.649706 -25295,1016:248,168,4,0,0,0.645698 -25296,1016:249,169,4,0,0,0.645556 -25297,1017:140,170,4,0,0,0.643603 -25298,1017:141,171,4,0,0,0.642848 -25299,1017:142,172,4,0,0,0.643202 -25300,1017:143,173,4,0,0,0.643932 -25301,1017:144,174,4,0,0,0.64431 -25302,1017:245,175,4,0,0,0.642919 -25303,1017:246,176,4,0,0,0.63871 -25304,1017:247,177,4,0,0,0.635717 -25305,1017:248,178,4,0,0,0.635812 -25306,1017:249,179,4,0,0,0.637381 -25307,1018:140,180,4,0,0,0.638307 -25308,7018:350,-180,5,0,0,0.630418 -25309,7017:459,-179,5,0,0,0.629988 -25310,7017:458,-178,5,0,0,0.628861 -25311,7017:457,-177,5,0,0,0.62819 -25312,7017:456,-176,5,0,0,0.627614 -25313,7017:455,-175,5,0,0,0.626869 -25314,7017:354,-174,5,0,0,0.626629 -25315,7017:353,-173,5,0,0,0.626461 -25316,7017:352,-172,5,0,0,0.625498 -25317,7017:351,-171,5,0,0,0.623571 -25318,7017:350,-170,5,0,0,0.622026 -25319,7016:459,-169,5,0,0,0.621204 -25320,7016:458,-168,5,0,0,0.621639 -25321,7016:457,-167,5,0,0,0.622702 -25322,7016:456,-166,5,0,0,0.622847 -25323,7016:455,-165,5,0,0,0.621881 -25324,7016:354,-164,5,0,0,0.619971 -25325,7016:353,-163,5,0,0,0.617984 -25326,7016:352,-162,5,0,0,0.616187 -25327,7016:351,-161,5,0,0,0.615677 -25328,7016:350,-160,5,0,0,0.61502 -25329,7015:459,-159,5,0,0,0.614485 -25330,7015:458,-158,5,0,0,0.61317 -25331,7015:457,-157,5,0,0,0.612389 -25332,7015:456,-156,5,0,0,0.613023 -25333,7015:455,-155,5,0,0,0.615093 -25334,7015:354,-154,5,0,0,0.615895 -25335,7015:353,-153,5,0,0,0.615579 -25336,7015:352,-152,5,0,0,0.615069 -25337,7015:351,-151,5,0,0,0.613535 -25338,7015:350,-150,5,0,0,0.611292 -25339,7014:459,-149,5,0,0,0.60892 -25340,7014:458,-148,5,0,0,0.607501 -25341,7014:457,-147,5,0,0,0.606912 -25342,7014:456,-146,5,0,0,0.60522 -25343,7014:455,-145,5,0,0,0.603525 -25344,7014:354,-144,5,0,0,0.602885 -25345,7014:353,-143,5,0,0,0.602665 -25346,7014:352,-142,5,0,0,0.603328 -25347,7014:351,-141,5,0,0,0.603942 -25348,7014:350,-140,5,0,0,0.601015 -25349,7013:459,-139,5,0,0,0.598474 -25350,7013:458,-138,5,0,0,0.598104 -25351,7013:457,-137,5,0,0,0.601384 -25352,7013:456,-136,5,0,0,0.604311 -25353,7013:455,-135,5,0,0,0.606888 -25354,7013:354,-134,5,0,0,0.60826 -25355,7013:353,-133,5,0,0,0.605367 -25356,7013:352,-132,5,0,0,0.60323 -25357,7013:351,-131,5,0,0,0.607207 -25358,7013:350,-130,5,0,0,0.611194 -25359,7012:459,-129,5,0,0,0.612706 -25360,7012:458,-128,5,0,0,0.612877 -25361,7012:457,-127,5,0,0,0.613803 -25362,7012:456,-126,5,0,0,0.617134 -25363,7012:455,-125,5,0,0,0.620865 -25364,7012:354,-124,5,0,0,0.623523 -25365,7012:353,-123,5,0,0,0.625306 -25366,7012:352,-122,5,0,0,0.626941 -25367,7012:351,-121,5,0,0,0.629005 -25368,7012:350,-120,5,0,0,0.629317 -25369,7011:459,-119,5,0,0,0.628981 -25370,7011:458,-118,5,0,0,0.628022 -25371,7011:457,-117,5,0,0,0.627302 -25372,7011:456,-116,5,0,0,0.627061 -25373,7011:455,-115,5,0,0,0.626989 -25374,7011:354,-114,5,0,0,0.628237 -25375,7011:353,-113,5,0,0,0.629149 -25376,7011:352,-112,5,0,0,0.629964 -25377,7011:351,-111,5,0,0,0.630825 -25378,7011:350,-110,5,0,0,0.631878 -25379,7010:459,-109,5,0,0,0.632379 -25380,7010:458,-108,5,0,0,0.635455 -25381,7010:457,-107,5,0,0,0.639184 -25382,7010:456,-106,5,0,0,0.642825 -25383,7010:455,-105,5,0,0,0.6424 -25384,7010:354,-104,5,0,0,0.637404 -25385,7010:353,-103,5,0,0,0.630275 -25386,7010:352,-102,5,0,0,0.626532 -25387,7010:351,-101,5,0,0,0.625859 -25388,7010:350,-100,5,0,0,0.622219 -25389,7009:459,-99,5,0,0,0.613925 -25390,7009:458,-98,5,0,0,0.612926 -25391,7009:457,-97,5,0,0,0.61711 -25392,7009:456,-96,5,0,0,0.616211 -25393,7009:455,-95,5,0,0,0.626124 -25394,7009:354,-94,5,0,0,0.628622 -25395,7009:353,-93,5,0,0,0.62759 -25396,7009:352,-92,5,0,0,0.62994 -25397,7009:351,-91,5,0,0,0.626268 -25398,7009:350,-90,5,0,0,0.626052 -25399,7008:459,-89,5,0,0,0.6267 -25400,7008:458,-88,5,0,0,0.630418 -25401,7008:457,-87,5,0,0,0.641195 -25402,7008:456,-86,5,0,0,0.645956 -25403,7008:353,-83,5,0,0,0.63517 -25404,7008:352,-82,5,0,0,0.629197 -25405,7008:351,-81,5,0,0,0.629677 -25406,7008:350,-80,5,0,0,0.62994 -25407,7007:459,-79,5,0,0,0.63455 -25408,7007:458,-78,5,0,0,0.641054 -25409,7007:457,-77,5,0,0,0.646708 -25410,7007:456,-76,5,0,0,0.64605 -25411,7007:455,-75,5,0,0,0.629005 -25412,7007:351,-71,5,0,0,0.632451 -25413,7006:458,-68,5,0,0,0.599141 -25414,7006:457,-67,5,0,0,0.607819 -25415,7006:456,-66,5,0,0,0.610925 -25416,7006:455,-65,5,0,0,0.615726 -25417,7006:354,-64,5,0,0,0.603451 -25418,7006:353,-63,5,0,0,0.602885 -25419,7006:352,-62,5,0,0,0.618566 -25420,7006:351,-61,5,0,0,0.625281 -25421,7006:350,-60,5,0,0,0.629844 -25422,7005:459,-59,5,0,0,0.631256 -25423,7005:458,-58,5,0,0,0.631065 -25424,7005:457,-57,5,0,0,0.629916 -25425,7005:456,-56,5,0,0,0.630443 -25426,7005:455,-55,5,0,0,0.63006 -25427,7005:354,-54,5,0,0,0.629988 -25428,7005:353,-53,5,0,0,0.627998 -25429,7005:352,-52,5,0,0,0.628094 -25430,7005:351,-51,5,0,0,0.62843 -25431,7005:350,-50,5,0,0,0.627061 -25432,7004:459,-49,5,0,0,0.624993 -25433,7004:458,-48,5,0,0,0.619631 -25434,7004:457,-47,5,0,0,0.616503 -25435,7004:456,-46,5,0,0,0.61502 -25436,7004:455,-45,5,0,0,0.614095 -25437,7004:354,-44,5,0,0,0.614606 -25438,7004:353,-43,5,0,0,0.613778 -25439,7004:352,-42,5,0,0,0.608897 -25440,7004:351,-41,5,0,0,0.605736 -25441,7004:350,-40,5,0,0,0.606888 -25442,7003:459,-39,5,0,0,0.606766 -25443,7003:458,-38,5,0,0,0.603402 -25444,7003:457,-37,5,0,0,0.600349 -25445,7003:456,-36,5,0,0,0.598104 -25446,7003:455,-35,5,0,0,0.597857 -25447,7003:354,-34,5,0,0,0.598104 -25448,7003:353,-33,5,0,0,0.600966 -25449,7003:352,-32,5,0,0,0.599955 -25450,7003:351,-31,5,0,0,0.597857 -25451,7003:350,-30,5,0,0,0.599066 -25452,7002:459,-29,5,0,0,0.602197 -25453,7002:458,-28,5,0,0,0.604361 -25454,7002:457,-27,5,0,0,0.605343 -25455,7002:456,-26,5,0,0,0.607329 -25456,7002:455,-25,5,0,0,0.607819 -25457,7002:354,-24,5,0,0,0.611121 -25458,7002:353,-23,5,0,0,0.617353 -25459,7002:352,-22,5,0,0,0.619293 -25460,7002:351,-21,5,0,0,0.621156 -25461,7002:350,-20,5,0,0,0.63128 -25462,7001:459,-19,5,0,0,0.631782 -25463,7001:458,-18,5,0,0,0.635503 -25464,7001:457,-17,5,0,0,0.645134 -25465,7001:456,-16,5,0,0,0.657175 -25466,1004:354,44,5,0,0,0.598104 -25467,1004:455,45,5,0,0,0.59998 -25468,1004:456,46,5,0,0,0.59719 -25469,1004:457,47,5,0,0,0.589729 -25470,1005:351,51,5,0,0,0.599757 -25471,1005:352,52,5,0,0,0.614461 -25472,1005:353,53,5,0,0,0.614071 -25473,1005:354,54,5,0,0,0.614169 -25474,1005:455,55,5,0,0,0.614387 -25475,1005:456,56,5,0,0,0.615774 -25476,1005:457,57,5,0,0,0.616455 -25477,1005:458,58,5,0,0,0.616867 -25478,1005:459,59,5,0,0,0.623981 -25479,1006:350,60,5,0,0,0.629533 -25480,1006:351,61,5,0,0,0.629988 -25481,1006:352,62,5,0,0,0.63331 -25482,1006:353,63,5,0,0,0.636574 -25483,1006:354,64,5,0,0,0.636977 -25484,1006:455,65,5,0,0,0.638852 -25485,1006:456,66,5,0,0,0.639326 -25486,1006:457,67,5,0,0,0.639776 -25487,1006:458,68,5,0,0,0.641148 -25488,1006:459,69,5,0,0,0.645204 -25489,1007:350,70,5,0,0,0.648677 -25490,1007:351,71,5,0,0,0.650804 -25491,1007:352,72,5,0,0,0.651924 -25492,1007:354,74,5,0,0,0.652321 -25493,1007:455,75,5,0,0,0.651738 -25494,1007:456,76,5,0,0,0.652158 -25495,1008:351,81,5,0,0,0.616308 -25496,1008:352,82,5,0,0,0.628694 -25497,1008:353,83,5,0,0,0.635432 -25498,1008:354,84,5,0,0,0.633883 -25499,1008:455,85,5,0,0,0.639752 -25500,1008:456,86,5,0,0,0.641952 -25501,1008:457,87,5,0,0,0.642754 -25502,1008:458,88,5,0,0,0.64372 -25503,1008:459,89,5,0,0,0.644851 -25504,1009:350,90,5,0,0,0.644639 -25505,1009:351,91,5,0,0,0.644404 -25506,1009:352,92,5,0,0,0.644568 -25507,1009:353,93,5,0,0,0.64565 -25508,1009:354,94,5,0,0,0.643697 -25509,1009:455,95,5,0,0,0.643273 -25510,1009:456,96,5,0,0,0.64398 -25511,1009:457,97,5,0,0,0.644522 -25512,1009:458,98,5,0,0,0.646121 -25513,1010:350,100,5,0,0,0.637238 -25514,1010:351,101,5,0,0,0.63788 -25515,1010:352,102,5,0,0,0.641432 -25516,1010:353,103,5,0,0,0.636502 -25517,1010:459,109,5,0,0,0.598005 -25518,1011:350,110,5,0,0,0.615531 -25519,1011:351,111,5,0,0,0.631591 -25520,1011:352,112,5,0,0,0.634979 -25521,1011:353,113,5,0,0,0.626893 -25522,1011:354,114,5,0,0,0.632666 -25523,1011:455,115,5,0,0,0.642848 -25524,1011:456,116,5,0,0,0.646309 -25525,1011:457,117,5,0,0,0.644216 -25526,1011:458,118,5,0,0,0.647786 -25527,1011:459,119,5,0,0,0.644545 -25528,1012:350,120,5,0,0,0.641243 -25529,1012:351,121,5,0,0,0.639776 -25530,1012:352,122,5,0,0,0.637333 -25531,1012:354,124,5,0,0,0.639586 -25532,1012:456,126,5,0,0,0.633287 -25533,1012:457,127,5,0,0,0.642117 -25534,1012:458,128,5,0,0,0.647036 -25535,1012:459,129,5,0,0,0.6498 -25536,1013:350,130,5,0,0,0.651762 -25537,1013:351,131,5,0,0,0.653206 -25538,1013:352,132,5,0,0,0.654113 -25539,1013:353,133,5,0,0,0.654949 -25540,1013:354,134,5,0,0,0.656526 -25541,1013:455,135,5,0,0,0.657892 -25542,1013:456,136,5,0,0,0.655158 -25543,1013:457,137,5,0,0,0.65409 -25544,1013:458,138,5,0,0,0.653462 -25545,1013:459,139,5,0,0,0.652368 -25546,1014:350,140,5,0,0,0.652274 -25547,1014:351,141,5,0,0,0.652274 -25548,1014:352,142,5,0,0,0.652111 -25549,1014:353,143,5,0,0,0.651902 -25550,1014:354,144,5,0,0,0.651878 -25551,1014:455,145,5,0,0,0.652437 -25552,1014:456,146,5,0,0,0.653438 -25553,1014:457,147,5,0,0,0.654415 -25554,1014:458,148,5,0,0,0.654996 -25555,1014:459,149,5,0,0,0.655274 -25556,1015:350,150,5,0,0,0.655669 -25557,1015:351,151,5,0,0,0.655715 -25558,1015:352,152,5,0,0,0.655182 -25559,1015:353,153,5,0,0,0.654206 -25560,1015:354,154,5,0,0,0.653508 -25561,1015:455,155,5,0,0,0.653602 -25562,1015:456,156,5,0,0,0.653648 -25563,1015:457,157,5,0,0,0.652973 -25564,1015:458,158,5,0,0,0.652321 -25565,1015:459,159,5,0,0,0.651085 -25566,1016:350,160,5,0,0,0.649028 -25567,1016:351,161,5,0,0,0.646872 -25568,1016:352,162,5,0,0,0.64372 -25569,1016:353,163,5,0,0,0.643674 -25570,1016:354,164,5,0,0,0.644333 -25571,1016:455,165,5,0,0,0.643061 -25572,1016:456,166,5,0,0,0.640297 -25573,1016:458,168,5,0,0,0.636478 -25574,1016:459,169,5,0,0,0.638212 -25575,1017:351,171,5,0,0,0.63636 -25576,1017:352,172,5,0,0,0.635883 -25577,1017:353,173,5,0,0,0.634479 -25578,1017:354,174,5,0,0,0.632929 -25579,1017:455,175,5,0,0,0.63226 -25580,1017:456,176,5,0,0,0.631997 -25581,1017:457,177,5,0,0,0.630898 -25582,1017:458,178,5,0,0,0.629892 -25583,1017:459,179,5,0,0,0.629964 -25584,1018:350,180,5,0,0,0.630418 -25585,7018:360,-180,6,0,0,0.624077 -25586,7017:469,-179,6,0,0,0.623691 -25587,7017:468,-178,6,0,0,0.623547 -25588,7017:467,-177,6,0,0,0.623787 -25589,7017:466,-176,6,0,0,0.623691 -25590,7017:465,-175,6,0,0,0.622944 -25591,7017:364,-174,6,0,0,0.62176 -25592,7017:363,-173,6,0,0,0.620575 -25593,7017:362,-172,6,0,0,0.619753 -25594,7017:361,-171,6,0,0,0.619026 -25595,7017:360,-170,6,0,0,0.617717 -25596,7016:469,-169,6,0,0,0.617305 -25597,7016:468,-168,6,0,0,0.617134 -25598,7016:467,-167,6,0,0,0.614461 -25599,7016:466,-166,6,0,0,0.611389 -25600,7016:465,-165,6,0,0,0.609826 -25601,7016:364,-164,6,0,0,0.608994 -25602,7016:363,-163,6,0,0,0.609141 -25603,7016:362,-162,6,0,0,0.608652 -25604,7016:361,-161,6,0,0,0.607746 -25605,7016:360,-160,6,0,0,0.607256 -25606,7015:469,-159,6,0,0,0.606668 -25607,7015:468,-158,6,0,0,0.605417 -25608,7015:467,-157,6,0,0,0.604238 -25609,7015:466,-156,6,0,0,0.60495 -25610,7015:465,-155,6,0,0,0.607893 -25611,7015:364,-154,6,0,0,0.61007 -25612,7015:363,-153,6,0,0,0.608481 -25613,7015:362,-152,6,0,0,0.604975 -25614,7015:361,-151,6,0,0,0.603771 -25615,7015:360,-150,6,0,0,0.605319 -25616,7014:469,-149,6,0,0,0.604778 -25617,7014:468,-148,6,0,0,0.602443 -25618,7014:467,-147,6,0,0,0.600374 -25619,7014:466,-146,6,0,0,0.599609 -25620,7014:465,-145,6,0,0,0.597362 -25621,7014:364,-144,6,0,0,0.59484 -25622,7014:363,-143,6,0,0,0.593031 -25623,7014:362,-142,6,0,0,0.593601 -25624,7014:361,-141,6,0,0,0.596225 -25625,7014:360,-140,6,0,0,0.595359 -25626,7013:469,-139,6,0,0,0.590797 -25627,7013:468,-138,6,0,0,0.587714 -25628,7013:467,-137,6,0,0,0.591616 -25629,7013:466,-136,6,0,0,0.593873 -25630,7013:465,-135,6,0,0,0.594765 -25631,7013:364,-134,6,0,0,0.596053 -25632,7013:363,-133,6,0,0,0.598499 -25633,7013:362,-132,6,0,0,0.599881 -25634,7013:361,-131,6,0,0,0.598005 -25635,7013:360,-130,6,0,0,0.597165 -25636,7012:469,-129,6,0,0,0.597956 -25637,7012:468,-128,6,0,0,0.601138 -25638,7012:467,-127,6,0,0,0.607476 -25639,7012:466,-126,6,0,0,0.613194 -25640,7012:465,-125,6,0,0,0.616065 -25641,7012:364,-124,6,0,0,0.61762 -25642,7012:363,-123,6,0,0,0.619341 -25643,7012:362,-122,6,0,0,0.620865 -25644,7012:361,-121,6,0,0,0.622219 -25645,7012:360,-120,6,0,0,0.622678 -25646,7011:469,-119,6,0,0,0.622171 -25647,7011:468,-118,6,0,0,0.621325 -25648,7011:467,-117,6,0,0,0.621446 -25649,7011:466,-116,6,0,0,0.622122 -25650,7011:465,-115,6,0,0,0.623908 -25651,7011:364,-114,6,0,0,0.626725 -25652,7011:363,-113,6,0,0,0.629461 -25653,7011:362,-112,6,0,0,0.631424 -25654,7011:361,-111,6,0,0,0.631902 -25655,7011:360,-110,6,0,0,0.632164 -25656,7010:469,-109,6,0,0,0.632905 -25657,7010:468,-108,6,0,0,0.634336 -25658,7010:467,-107,6,0,0,0.637832 -25659,7010:466,-106,6,0,0,0.641314 -25660,7010:465,-105,6,0,0,0.642259 -25661,7010:364,-104,6,0,0,0.638733 -25662,7010:363,-103,6,0,0,0.634789 -25663,7010:362,-102,6,0,0,0.634336 -25664,7010:361,-101,6,0,0,0.642447 -25665,7010:360,-100,6,0,0,0.643792 -25666,7009:469,-99,6,0,0,0.63674 -25667,7009:468,-98,6,0,0,0.642259 -25668,7009:467,-97,6,0,0,0.622871 -25669,7009:466,-96,6,0,0,0.611219 -25670,7009:465,-95,6,0,0,0.624848 -25671,7009:364,-94,6,0,0,0.642542 -25672,7009:363,-93,6,0,0,0.641125 -25673,7009:362,-92,6,0,0,0.640486 -25674,7009:361,-91,6,0,0,0.639965 -25675,7009:360,-90,6,0,0,0.649496 -25676,7008:469,-89,6,0,0,0.647412 -25677,7008:468,-88,6,0,0,0.643956 -25678,7008:363,-83,6,0,0,0.632785 -25679,7008:362,-82,6,0,0,0.635027 -25680,7008:361,-81,6,0,0,0.63424 -25681,7008:360,-80,6,0,0,0.637167 -25682,7007:469,-79,6,0,0,0.638544 -25683,7007:468,-78,6,0,0,0.637096 -25684,7007:467,-77,6,0,0,0.634789 -25685,7007:466,-76,6,0,0,0.632881 -25686,7007:465,-75,6,0,0,0.630418 -25687,7007:364,-74,6,0,0,0.626268 -25688,7007:363,-73,6,0,0,0.62557 -25689,7007:362,-72,6,0,0,0.61694 -25690,7007:361,-71,6,0,0,0.610999 -25691,7006:469,-69,6,0,0,0.624463 -25692,7006:468,-68,6,0,0,0.62545 -25693,7006:467,-67,6,0,0,0.630587 -25694,7006:466,-66,6,0,0,0.635146 -25695,7006:465,-65,6,0,0,0.634455 -25696,7006:364,-64,6,0,0,0.633048 -25697,7006:363,-63,6,0,0,0.632785 -25698,7006:362,-62,6,0,0,0.633239 -25699,7006:361,-61,6,0,0,0.633955 -25700,7006:360,-60,6,0,0,0.632045 -25701,7005:469,-59,6,0,0,0.631328 -25702,7005:468,-58,6,0,0,0.631424 -25703,7005:467,-57,6,0,0,0.628814 -25704,7005:466,-56,6,0,0,0.627662 -25705,7005:465,-55,6,0,0,0.62771 -25706,7005:364,-54,6,0,0,0.627733 -25707,7005:363,-53,6,0,0,0.627614 -25708,7005:362,-52,6,0,0,0.626268 -25709,7005:361,-51,6,0,0,0.625113 -25710,7005:360,-50,6,0,0,0.623305 -25711,7004:469,-49,6,0,0,0.62118 -25712,7004:468,-48,6,0,0,0.618153 -25713,7004:467,-47,6,0,0,0.613437 -25714,7004:466,-46,6,0,0,0.611096 -25715,7004:465,-45,6,0,0,0.609483 -25716,7004:364,-44,6,0,0,0.608823 -25717,7004:363,-43,6,0,0,0.605784 -25718,7004:362,-42,6,0,0,0.60259 -25719,7004:361,-41,6,0,0,0.600793 -25720,7004:360,-40,6,0,0,0.598721 -25721,7003:469,-39,6,0,0,0.595954 -25722,7003:468,-38,6,0,0,0.592559 -25723,7003:467,-37,6,0,0,0.590797 -25724,7003:466,-36,6,0,0,0.590673 -25725,7003:465,-35,6,0,0,0.590499 -25726,7003:364,-34,6,0,0,0.59035 -25727,7003:363,-33,6,0,0,0.589629 -25728,7003:362,-32,6,0,0,0.589455 -25729,7003:361,-31,6,0,0,0.590574 -25730,7003:360,-30,6,0,0,0.592708 -25731,7002:469,-29,6,0,0,0.594666 -25732,7002:468,-28,6,0,0,0.593848 -25733,7002:467,-27,6,0,0,0.59246 -25734,7002:466,-26,6,0,0,0.594146 -25735,7002:465,-25,6,0,0,0.596077 -25736,7002:364,-24,6,0,0,0.600177 -25737,7002:363,-23,6,0,0,0.599831 -25738,7002:362,-22,6,0,0,0.598079 -25739,7002:361,-21,6,0,0,0.59924 -25740,7002:360,-20,6,0,0,0.609533 -25741,7001:469,-19,6,0,0,0.620334 -25742,7001:468,-18,6,0,0,0.621591 -25743,7001:467,-17,6,0,0,0.627374 -25744,1004:363,43,6,0,0,0.5984 -25745,1004:465,45,6,0,0,0.595334 -25746,1004:466,46,6,0,0,0.591269 -25747,1004:467,47,6,0,0,0.587888 -25748,1004:468,48,6,0,0,0.58612 -25749,1004:469,49,6,0,0,0.584573 -25750,1005:360,50,6,0,0,0.589654 -25751,1005:361,51,6,0,0,0.606055 -25752,1005:362,52,6,0,0,0.609238 -25753,1005:363,53,6,0,0,0.605417 -25754,1005:364,54,6,0,0,0.602492 -25755,1005:465,55,6,0,0,0.601458 -25756,1005:466,56,6,0,0,0.607599 -25757,1005:467,57,6,0,0,0.609263 -25758,1005:468,58,6,0,0,0.609336 -25759,1005:469,59,6,0,0,0.613242 -25760,1006:360,60,6,0,0,0.61609 -25761,1006:361,61,6,0,0,0.619487 -25762,1006:362,62,6,0,0,0.623908 -25763,1006:363,63,6,0,0,0.626436 -25764,1006:364,64,6,0,0,0.628118 -25765,1006:465,65,6,0,0,0.632236 -25766,1006:466,66,6,0,0,0.637381 -25767,1006:467,67,6,0,0,0.640534 -25768,1006:468,68,6,0,0,0.641006 -25769,1006:469,69,6,0,0,0.642636 -25770,1007:360,70,6,0,0,0.646943 -25771,1007:361,71,6,0,0,0.649262 -25772,1007:362,72,6,0,0,0.650478 -25773,1007:364,74,6,0,0,0.654438 -25774,1007:465,75,6,0,0,0.654485 -25775,1008:361,81,6,0,0,0.617717 -25776,1008:362,82,6,0,0,0.62234 -25777,1008:363,83,6,0,0,0.632785 -25778,1008:364,84,6,0,0,0.633454 -25779,1008:465,85,6,0,0,0.635955 -25780,1008:466,86,6,0,0,0.641243 -25781,1008:467,87,6,0,0,0.642778 -25782,1008:468,88,6,0,0,0.643249 -25783,1008:469,89,6,0,0,0.642684 -25784,1009:360,90,6,0,0,0.6424 -25785,1009:361,91,6,0,0,0.641998 -25786,1009:362,92,6,0,0,0.646895 -25787,1009:364,94,6,0,0,0.643862 -25788,1009:465,95,6,0,0,0.643344 -25789,1009:466,96,6,0,0,0.640723 -25790,1009:467,97,6,0,0,0.644098 -25791,1009:468,98,6,0,0,0.643815 -25792,1010:361,101,6,0,0,0.630945 -26226,7007:486,-76,8,0,0,0.64266 -25793,1011:360,110,6,0,0,0.591194 -25794,1011:361,111,6,0,0,0.622606 -25795,1011:362,112,6,0,0,0.621083 -25796,1011:363,113,6,0,0,0.614314 -25797,1011:364,114,6,0,0,0.608162 -25798,1011:465,115,6,0,0,0.634932 -25799,1011:466,116,6,0,0,0.642447 -25800,1011:467,117,6,0,0,0.638757 -25801,1011:468,118,6,0,0,0.635646 -25802,1011:469,119,6,0,0,0.644639 -25803,1012:360,120,6,0,0,0.641668 -25804,1012:361,121,6,0,0,0.637309 -25805,1012:362,122,6,0,0,0.63331 -25806,1012:363,123,6,0,0,0.629533 -25807,1012:364,124,6,0,0,0.616673 -25808,1012:465,125,6,0,0,0.634288 -25809,1012:466,126,6,0,0,0.634717 -25810,1012:467,127,6,0,0,0.638591 -25811,1012:468,128,6,0,0,0.642188 -25812,1012:469,129,6,0,0,0.645368 -25813,1013:360,130,6,0,0,0.648115 -25814,1013:361,131,6,0,0,0.649823 -25815,1013:362,132,6,0,0,0.650385 -25816,1013:363,133,6,0,0,0.650665 -25817,1013:364,134,6,0,0,0.65001 -25818,1013:465,135,6,0,0,0.649987 -25819,1013:466,136,6,0,0,0.650594 -25820,1013:467,137,6,0,0,0.649917 -25821,1013:468,138,6,0,0,0.648771 -25822,1013:469,139,6,0,0,0.64774 -25823,1014:360,140,6,0,0,0.647786 -25824,1014:361,141,6,0,0,0.647716 -25825,1014:362,142,6,0,0,0.64788 -25826,1014:363,143,6,0,0,0.64863 -25827,1014:364,144,6,0,0,0.649309 -25828,1014:465,145,6,0,0,0.649309 -25829,1014:466,146,6,0,0,0.64994 -25830,1014:467,147,6,0,0,0.650291 -25831,1014:468,148,6,0,0,0.650314 -25832,1014:469,149,6,0,0,0.649777 -25833,1015:360,150,6,0,0,0.648982 -25834,1015:361,151,6,0,0,0.648302 -25835,1015:362,152,6,0,0,0.647623 -25836,1015:363,153,6,0,0,0.646966 -25837,1015:364,154,6,0,0,0.646684 -25838,1015:465,155,6,0,0,0.646496 -25839,1015:466,156,6,0,0,0.645862 -25840,1015:467,157,6,0,0,0.645039 -25841,1015:468,158,6,0,0,0.644451 -25842,1015:469,159,6,0,0,0.643202 -25843,1016:360,160,6,0,0,0.641243 -25844,1016:361,161,6,0,0,0.639965 -25845,1016:362,162,6,0,0,0.6389 -25846,1016:363,163,6,0,0,0.637666 -25847,1016:364,164,6,0,0,0.636241 -25848,1016:465,165,6,0,0,0.634479 -25849,1016:466,166,6,0,0,0.633549 -25850,1016:467,167,6,0,0,0.632785 -25851,1016:468,168,6,0,0,0.630658 -25852,1016:469,169,6,0,0,0.628646 -25853,1017:360,170,6,0,0,0.62795 -25854,1017:361,171,6,0,0,0.628094 -25855,1017:362,172,6,0,0,0.629101 -25856,1017:363,173,6,0,0,0.629005 -25857,1017:364,174,6,0,0,0.628622 -25858,1017:465,175,6,0,0,0.627854 -25859,1017:466,176,6,0,0,0.626941 -25860,1017:467,177,6,0,0,0.625402 -25861,1017:468,178,6,0,0,0.62504 -25862,1017:469,179,6,0,0,0.624391 -25863,1018:360,180,6,0,0,0.624077 -25864,7018:370,-180,7,0,0,0.61762 -25865,7017:479,-179,7,0,0,0.615726 -25866,7017:478,-178,7,0,0,0.614631 -25867,7017:477,-177,7,0,0,0.614582 -25868,7017:476,-176,7,0,0,0.615312 -25869,7017:475,-175,7,0,0,0.615531 -25870,7017:374,-174,7,0,0,0.613706 -25871,7017:373,-173,7,0,0,0.611145 -25872,7017:372,-172,7,0,0,0.610803 -25873,7017:371,-171,7,0,0,0.612097 -25874,7017:370,-170,7,0,0,0.612682 -25875,7016:479,-169,7,0,0,0.612389 -25876,7016:478,-168,7,0,0,0.611438 -25877,7016:477,-167,7,0,0,0.610827 -25878,7016:476,-166,7,0,0,0.609728 -25879,7016:475,-165,7,0,0,0.608284 -25880,7016:374,-164,7,0,0,0.607231 -25881,7016:373,-163,7,0,0,0.60701 -25882,7016:372,-162,7,0,0,0.60679 -25883,7016:371,-161,7,0,0,0.60576 -25884,7016:370,-160,7,0,0,0.605662 -25885,7015:479,-159,7,0,0,0.604656 -25886,7015:478,-158,7,0,0,0.602836 -25887,7015:477,-157,7,0,0,0.601015 -25888,7015:476,-156,7,0,0,0.59877 -25889,7015:475,-155,7,0,0,0.597782 -25890,7015:374,-154,7,0,0,0.59766 -25891,7015:373,-153,7,0,0,0.598647 -25892,7015:372,-152,7,0,0,0.599091 -25893,7015:371,-151,7,0,0,0.597362 -25894,7015:370,-150,7,0,0,0.598993 -25895,7014:479,-149,7,0,0,0.601606 -25896,7014:478,-148,7,0,0,0.599042 -25897,7014:477,-147,7,0,0,0.592907 -25898,7014:476,-146,7,0,0,0.595087 -25899,7014:475,-145,7,0,0,0.593353 -25900,7014:374,-144,7,0,0,0.589505 -25901,7014:373,-143,7,0,0,0.588659 -25902,7014:372,-142,7,0,0,0.589629 -25903,7014:371,-141,7,0,0,0.591989 -25904,7014:370,-140,7,0,0,0.593006 -25905,7013:479,-139,7,0,0,0.586717 -25906,7013:478,-138,7,0,0,0.581376 -25907,7013:477,-137,7,0,0,0.584474 -25908,7013:476,-136,7,0,0,0.585147 -25909,7013:475,-135,7,0,0,0.584099 -25910,7013:374,-134,7,0,0,0.583924 -25911,7013:373,-133,7,0,0,0.585147 -25912,7013:372,-132,7,0,0,0.584124 -25913,7013:371,-131,7,0,0,0.583025 -25914,7013:370,-130,7,0,0,0.585347 -25915,7012:479,-129,7,0,0,0.590176 -25916,7012:478,-128,7,0,0,0.595186 -25917,7012:477,-127,7,0,0,0.598153 -25918,7012:476,-126,7,0,0,0.601926 -25919,7012:475,-125,7,0,0,0.604729 -25920,7012:374,-124,7,0,0,0.605588 -25921,7012:373,-123,7,0,0,0.606201 -25922,7012:372,-122,7,0,0,0.606472 -25923,7012:371,-121,7,0,0,0.607256 -25924,7012:370,-120,7,0,0,0.609312 -25925,7011:479,-119,7,0,0,0.612999 -25926,7011:478,-118,7,0,0,0.614582 -25927,7011:477,-117,7,0,0,0.615798 -25928,7011:476,-116,7,0,0,0.618105 -25929,7011:475,-115,7,0,0,0.621108 -25930,7011:374,-114,7,0,0,0.62275 -25931,7011:373,-113,7,0,0,0.622919 -25932,7011:372,-112,7,0,0,0.622967 -25933,7011:371,-111,7,0,0,0.626028 -25934,7011:370,-110,7,0,0,0.632905 -25935,7010:479,-109,7,0,0,0.637618 -25936,7010:478,-108,7,0,0,0.63852 -25937,7010:477,-107,7,0,0,0.63897 -25938,7010:476,-106,7,0,0,0.642447 -25939,7010:475,-105,7,0,0,0.648841 -25940,7010:374,-104,7,0,0,0.649426 -25941,7010:373,-103,7,0,0,0.640391 -25942,7010:372,-102,7,0,0,0.630611 -25943,7010:371,-101,7,0,0,0.632642 -25944,7010:370,-100,7,0,0,0.637998 -25945,7009:479,-99,7,0,0,0.635598 -25946,7009:478,-98,7,0,0,0.643838 -25947,7009:477,-97,7,0,0,0.638497 -25948,7009:476,-96,7,0,0,0.614314 -25949,7009:475,-95,7,0,0,0.638235 -25950,7009:374,-94,7,0,0,0.64987 -25951,7009:373,-93,7,0,0,0.645886 -25952,7009:372,-92,7,0,0,0.656596 -25953,7008:373,-83,7,0,0,0.624776 -25954,7008:372,-82,7,0,0,0.633501 -25955,7008:371,-81,7,0,0,0.639847 -25956,7008:370,-80,7,0,0,0.641857 -25957,7007:479,-79,7,0,0,0.640746 -25958,7007:478,-78,7,0,0,0.638473 -25959,7007:477,-77,7,0,0,0.635527 -25960,7007:476,-76,7,0,0,0.635646 -25961,7007:475,-75,7,0,0,0.636669 -25962,7007:374,-74,7,0,0,0.637975 -25963,7007:373,-73,7,0,0,0.636431 -25964,7007:372,-72,7,0,0,0.634003 -25965,7007:371,-71,7,0,0,0.633239 -25966,7007:370,-70,7,0,0,0.631902 -25967,7006:479,-69,7,0,0,0.630275 -25968,7006:478,-68,7,0,0,0.634288 -25969,7006:477,-67,7,0,0,0.635646 -25970,7006:476,-66,7,0,0,0.638947 -25971,7006:475,-65,7,0,0,0.6389 -25972,7006:374,-64,7,0,0,0.637143 -25973,7006:373,-63,7,0,0,0.635193 -25974,7006:372,-62,7,0,0,0.634145 -25975,7006:371,-61,7,0,0,0.631687 -25976,7006:370,-60,7,0,0,0.630802 -25977,7005:479,-59,7,0,0,0.629581 -25978,7005:478,-58,7,0,0,0.626436 -25979,7005:477,-57,7,0,0,0.62468 -25980,7005:476,-56,7,0,0,0.623305 -25981,7005:475,-55,7,0,0,0.623474 -25982,7005:374,-54,7,0,0,0.623185 -25983,7005:373,-53,7,0,0,0.622509 -25984,7005:372,-52,7,0,0,0.617862 -25985,7005:371,-51,7,0,0,0.614947 -25986,7005:370,-50,7,0,0,0.613097 -25987,7004:479,-49,7,0,0,0.61156 -25988,7004:478,-48,7,0,0,0.608554 -25989,7004:477,-47,7,0,0,0.603771 -25990,7004:476,-46,7,0,0,0.601088 -25991,7004:475,-45,7,0,0,0.60099 -25992,7004:374,-44,7,0,0,0.602246 -25993,7004:373,-43,7,0,0,0.5962 -25994,7004:372,-42,7,0,0,0.596473 -25995,7004:371,-41,7,0,0,0.595285 -25996,7004:370,-40,7,0,0,0.593204 -25997,7003:479,-39,7,0,0,0.591219 -25998,7003:478,-38,7,0,0,0.589952 -25999,7003:477,-37,7,0,0,0.589207 -26000,7003:476,-36,7,0,0,0.585297 -26001,7003:475,-35,7,0,0,0.577445 -26002,7003:374,-34,7,0,0,0.575865 -26003,7003:373,-33,7,0,0,0.57589 -26004,7003:372,-32,7,0,0,0.577144 -26005,7003:371,-31,7,0,0,0.578322 -26006,7003:370,-30,7,0,0,0.580201 -26007,7002:479,-29,7,0,0,0.579349 -26008,7002:478,-28,7,0,0,0.576116 -26009,7002:477,-27,7,0,0,0.577245 -26010,7002:476,-26,7,0,0,0.582401 -26011,7002:475,-25,7,0,0,0.584448 -26012,7002:374,-24,7,0,0,0.587141 -26013,7002:373,-23,7,0,0,0.584174 -26014,7002:372,-22,7,0,0,0.584249 -26015,7002:371,-21,7,0,0,0.588634 -26016,7002:370,-20,7,0,0,0.599091 -26017,7001:479,-19,7,0,0,0.603894 -26018,7001:478,-18,7,0,0,0.605465 -26019,1004:372,42,7,0,0,0.607672 -26020,1004:479,49,7,0,0,0.598203 -26021,1005:370,50,7,0,0,0.600966 -26022,1005:371,51,7,0,0,0.604213 -26023,1005:372,52,7,0,0,0.604361 -26024,1005:373,53,7,0,0,0.603402 -26025,1005:374,54,7,0,0,0.600818 -26026,1005:475,55,7,0,0,0.599881 -26027,1005:476,56,7,0,0,0.600325 -26028,1005:477,57,7,0,0,0.601286 -26029,1005:478,58,7,0,0,0.606153 -26030,1005:479,59,7,0,0,0.604729 -26031,1006:370,60,7,0,0,0.605539 -26032,1006:371,61,7,0,0,0.60728 -26033,1006:372,62,7,0,0,0.611853 -26034,1006:373,63,7,0,0,0.617838 -26035,1006:374,64,7,0,0,0.619172 -26036,1006:475,65,7,0,0,0.624655 -26037,1006:476,66,7,0,0,0.630802 -26038,1006:477,67,7,0,0,0.63405 -26039,1006:478,68,7,0,0,0.636645 -26040,1006:479,69,7,0,0,0.640273 -26041,1007:370,70,7,0,0,0.644686 -26042,1007:371,71,7,0,0,0.64706 -26043,1007:372,72,7,0,0,0.648841 -26044,1007:374,74,7,0,0,0.653415 -26045,1008:371,81,7,0,0,0.615409 -26046,1008:372,82,7,0,0,0.622195 -26047,1008:373,83,7,0,0,0.625715 -26048,1008:374,84,7,0,0,0.629484 -26049,1008:475,85,7,0,0,0.634884 -26050,1008:476,86,7,0,0,0.63987 -26051,1008:477,87,7,0,0,0.640982 -26052,1008:478,88,7,0,0,0.641101 -26053,1008:479,89,7,0,0,0.64398 -26054,1009:370,90,7,0,0,0.645416 -26055,1009:371,91,7,0,0,0.64511 -26056,1009:372,92,7,0,0,0.648115 -26057,1009:373,93,7,0,0,0.646544 -26058,1009:374,94,7,0,0,0.638852 -26059,1009:475,95,7,0,0,0.637642 -26060,1009:476,96,7,0,0,0.638781 -26061,1009:477,97,7,0,0,0.64051 -26062,1009:478,98,7,0,0,0.647412 -26063,1011:370,110,7,0,0,0.590375 -26064,1011:371,111,7,0,0,0.596028 -26065,1011:372,112,7,0,0,0.615871 -26066,1011:373,113,7,0,0,0.609238 -26067,1011:374,114,7,0,0,0.602 -26068,1011:475,115,7,0,0,0.616964 -26069,1011:476,116,7,0,0,0.627349 -26070,1011:477,117,7,0,0,0.622799 -26071,1011:478,118,7,0,0,0.631902 -26072,1011:479,119,7,0,0,0.641337 -26073,1012:370,120,7,0,0,0.633931 -26074,1012:374,124,7,0,0,0.618614 -26075,1012:475,125,7,0,0,0.630443 -26076,1012:476,126,7,0,0,0.631926 -26077,1012:477,127,7,0,0,0.633693 -26078,1012:478,128,7,0,0,0.635955 -26079,1012:479,129,7,0,0,0.638615 -26080,1013:370,130,7,0,0,0.641479 -26081,1013:371,131,7,0,0,0.644098 -26082,1013:372,132,7,0,0,0.646167 -26083,1013:373,133,7,0,0,0.646825 -26084,1013:374,134,7,0,0,0.646003 -26085,1013:475,135,7,0,0,0.645698 -26086,1013:476,136,7,0,0,0.644874 -26087,1013:477,137,7,0,0,0.644004 -26088,1013:478,138,7,0,0,0.644098 -26089,1013:479,139,7,0,0,0.644192 -26090,1014:370,140,7,0,0,0.644474 -26091,1014:371,141,7,0,0,0.644451 -26092,1014:372,142,7,0,0,0.64438 -26093,1014:373,143,7,0,0,0.644733 -26094,1014:374,144,7,0,0,0.645134 -26095,1014:475,145,7,0,0,0.644898 -26096,1014:476,146,7,0,0,0.64518 -26097,1014:477,147,7,0,0,0.645274 -26098,1014:478,148,7,0,0,0.644851 -26099,1014:479,149,7,0,0,0.64431 -26100,1015:370,150,7,0,0,0.64398 -26101,1015:371,151,7,0,0,0.643697 -26102,1015:372,152,7,0,0,0.643179 -26103,1015:373,153,7,0,0,0.642377 -26104,1015:374,154,7,0,0,0.641408 -26105,1015:475,155,7,0,0,0.640439 -26106,1015:476,156,7,0,0,0.639421 -26107,1015:477,157,7,0,0,0.638093 -26108,1015:478,158,7,0,0,0.636811 -26109,1015:479,159,7,0,0,0.635883 -26110,1016:370,160,7,0,0,0.63486 -26111,1016:371,161,7,0,0,0.634169 -26112,1016:372,162,7,0,0,0.633573 -26113,1016:373,163,7,0,0,0.632356 -26114,1016:374,164,7,0,0,0.630491 -26115,1016:475,165,7,0,0,0.628406 -26116,1016:476,166,7,0,0,0.6267 -26117,1016:477,167,7,0,0,0.625811 -27202,7112:226,-126,12,0,0,0.46312 -26118,1016:478,168,7,0,0,0.624752 -26119,1016:479,169,7,0,0,0.623305 -26120,1017:370,170,7,0,0,0.621881 -26121,1017:371,171,7,0,0,0.620552 -26122,1017:372,172,7,0,0,0.620431 -26123,1017:373,173,7,0,0,0.620986 -26124,1017:374,174,7,0,0,0.621446 -26125,1017:475,175,7,0,0,0.621446 -26126,1017:476,176,7,0,0,0.621083 -26127,1017:477,177,7,0,0,0.620406 -26128,1017:478,178,7,0,0,0.619825 -26129,1017:479,179,7,0,0,0.619172 -26130,1018:370,180,7,0,0,0.61762 -26131,7018:380,-180,8,0,0,0.611242 -26132,7017:489,-179,8,0,0,0.609679 -26133,7017:488,-178,8,0,0,0.607158 -26134,7017:487,-177,8,0,0,0.604188 -26135,7017:486,-176,8,0,0,0.603254 -26136,7017:485,-175,8,0,0,0.603771 -26137,7017:384,-174,8,0,0,0.603894 -26138,7017:383,-173,8,0,0,0.604065 -26139,7017:382,-172,8,0,0,0.605319 -26140,7017:381,-171,8,0,0,0.606814 -26141,7017:380,-170,8,0,0,0.605441 -26142,7016:489,-169,8,0,0,0.60195 -26143,7016:488,-168,8,0,0,0.600596 -26144,7016:487,-167,8,0,0,0.602221 -26145,7016:486,-166,8,0,0,0.604778 -26146,7016:485,-165,8,0,0,0.604483 -26147,7016:384,-164,8,0,0,0.602393 -26148,7016:383,-163,8,0,0,0.598252 -26149,7016:382,-162,8,0,0,0.594468 -26150,7016:381,-161,8,0,0,0.594344 -26151,7016:380,-160,8,0,0,0.597437 -26152,7015:489,-159,8,0,0,0.597956 -26153,7015:488,-158,8,0,0,0.596324 -26154,7015:487,-157,8,0,0,0.594518 -26155,7015:486,-156,8,0,0,0.592162 -26156,7015:485,-155,8,0,0,0.590002 -26157,7015:384,-154,8,0,0,0.590871 -26158,7015:383,-153,8,0,0,0.59184 -26159,7015:382,-152,8,0,0,0.59184 -26160,7015:381,-151,8,0,0,0.589902 -26161,7015:380,-150,8,0,0,0.588609 -26162,7014:489,-149,8,0,0,0.585596 -26163,7014:488,-148,8,0,0,0.58592 -26164,7014:487,-147,8,0,0,0.588361 -26165,7014:486,-146,8,0,0,0.585472 -26166,7014:485,-145,8,0,0,0.584947 -26167,7014:384,-144,8,0,0,0.586618 -26168,7014:383,-143,8,0,0,0.586219 -26169,7014:382,-142,8,0,0,0.584249 -26170,7014:381,-141,8,0,0,0.580726 -26171,7014:380,-140,8,0,0,0.575789 -26172,7013:489,-139,8,0,0,0.572298 -26173,7013:488,-138,8,0,0,0.57456 -26174,7013:487,-137,8,0,0,0.575288 -26175,7013:486,-136,8,0,0,0.572322 -26176,7013:485,-135,8,0,0,0.569831 -26177,7013:384,-134,8,0,0,0.567588 -26178,7013:383,-133,8,0,0,0.567412 -26179,7013:382,-132,8,0,0,0.568193 -26180,7013:381,-131,8,0,0,0.569806 -26181,7013:380,-130,8,0,0,0.564964 -26182,7012:489,-129,8,0,0,0.568068 -26183,7012:488,-128,8,0,0,0.571644 -26184,7012:487,-127,8,0,0,0.57285 -26185,7012:486,-126,8,0,0,0.577119 -26186,7012:485,-125,8,0,0,0.577671 -26187,7012:384,-124,8,0,0,0.577019 -26188,7012:383,-123,8,0,0,0.576417 -26189,7012:382,-122,8,0,0,0.58 -26190,7012:381,-121,8,0,0,0.590424 -26191,7012:380,-120,8,0,0,0.60136 -26192,7011:489,-119,8,0,0,0.603426 -26193,7011:488,-118,8,0,0,0.602665 -26194,7011:487,-117,8,0,0,0.597635 -26195,7011:486,-116,8,0,0,0.602443 -26196,7011:485,-115,8,0,0,0.602172 -26197,7011:384,-114,8,0,0,0.600866 -26198,7011:383,-113,8,0,0,0.600522 -26199,7011:382,-112,8,0,0,0.608358 -26200,7011:381,-111,8,0,0,0.617911 -26201,7011:380,-110,8,0,0,0.624776 -26202,7010:489,-109,8,0,0,0.63006 -26203,7010:488,-108,8,0,0,0.63712 -26204,7010:487,-107,8,0,0,0.640534 -26205,7010:486,-106,8,0,0,0.642848 -26206,7010:485,-105,8,0,0,0.645462 -26207,7010:384,-104,8,0,0,0.659186 -26208,7010:383,-103,8,0,0,0.663305 -26209,7010:382,-102,8,0,0,0.665825 -26210,7010:381,-101,8,0,0,0.663397 -26211,7010:380,-100,8,0,0,0.661007 -26212,7009:489,-99,8,0,0,0.653904 -26213,7009:488,-98,8,0,0,0.641125 -26214,7009:487,-97,8,0,0,0.636026 -26215,7009:486,-96,8,0,0,0.634526 -26216,7009:485,-95,8,0,0,0.639373 -26217,7009:384,-94,8,0,0,0.645039 -26218,7008:384,-84,8,0,0,0.624053 -26219,7008:383,-83,8,0,0,0.618881 -26220,7008:382,-82,8,0,0,0.626484 -26221,7008:381,-81,8,0,0,0.636098 -26222,7008:380,-80,8,0,0,0.641054 -26223,7007:489,-79,8,0,0,0.64103 -26224,7007:488,-78,8,0,0,0.640178 -26225,7007:487,-77,8,0,0,0.641314 -26227,7007:485,-75,8,0,0,0.643697 -26228,7007:384,-74,8,0,0,0.642919 -26229,7007:383,-73,8,0,0,0.64006 -26230,7007:382,-72,8,0,0,0.63769 -26231,7007:381,-71,8,0,0,0.637215 -26232,7007:380,-70,8,0,0,0.637666 -26233,7006:489,-69,8,0,0,0.638164 -26234,7006:488,-68,8,0,0,0.638497 -26235,7006:487,-67,8,0,0,0.638923 -26236,7006:486,-66,8,0,0,0.637049 -26237,7006:485,-65,8,0,0,0.637499 -26238,7006:384,-64,8,0,0,0.636122 -26239,7006:383,-63,8,0,0,0.634979 -26240,7006:382,-62,8,0,0,0.631735 -26241,7006:381,-61,8,0,0,0.627566 -26242,7006:380,-60,8,0,0,0.628526 -26243,7005:489,-59,8,0,0,0.625931 -26244,7005:488,-58,8,0,0,0.623691 -26245,7005:487,-57,8,0,0,0.621277 -26246,7005:486,-56,8,0,0,0.617741 -26247,7005:485,-55,8,0,0,0.616042 -26248,7005:384,-54,8,0,0,0.615823 -26249,7005:383,-53,8,0,0,0.613389 -26250,7005:382,-52,8,0,0,0.609043 -26251,7005:381,-51,8,0,0,0.606912 -26252,7005:380,-50,8,0,0,0.604533 -26253,7004:489,-49,8,0,0,0.602049 -26254,7004:488,-48,8,0,0,0.600201 -26255,7004:487,-47,8,0,0,0.598598 -26256,7004:486,-46,8,0,0,0.596868 -26257,7004:485,-45,8,0,0,0.594864 -26258,7004:384,-44,8,0,0,0.592312 -26259,7004:383,-43,8,0,0,0.589729 -26260,7004:382,-42,8,0,0,0.588361 -26261,7004:381,-41,8,0,0,0.58572 -26262,7004:380,-40,8,0,0,0.583825 -26263,7003:489,-39,8,0,0,0.581651 -26264,7003:488,-38,8,0,0,0.578573 -26265,7003:487,-37,8,0,0,0.576567 -26266,7003:486,-36,8,0,0,0.574886 -26267,7003:485,-35,8,0,0,0.573027 -26268,7003:384,-34,8,0,0,0.572725 -26269,7003:383,-33,8,0,0,0.569504 -26270,7003:382,-32,8,0,0,0.568748 -26271,7003:381,-31,8,0,0,0.569201 -26272,7003:380,-30,8,0,0,0.570259 -26273,7002:489,-29,8,0,0,0.569201 -26274,7002:488,-28,8,0,0,0.567286 -26275,7002:487,-27,8,0,0,0.56721 -26276,7002:486,-26,8,0,0,0.567765 -26277,7002:485,-25,8,0,0,0.566882 -26278,7002:384,-24,8,0,0,0.56779 -26279,7002:383,-23,8,0,0,0.571116 -26280,7002:382,-22,8,0,0,0.568874 -26281,7002:381,-21,8,0,0,0.573177 -26282,7002:380,-20,8,0,0,0.583425 -26283,7001:489,-19,8,0,0,0.586368 -26284,7001:488,-18,8,0,0,0.585472 -26285,7001:487,-17,8,0,0,0.559983 -26286,1004:380,40,8,0,0,0.625546 -26287,1004:381,41,8,0,0,0.616989 -26288,1004:382,42,8,0,0,0.629508 -26289,1005:382,52,8,0,0,0.595409 -26290,1005:383,53,8,0,0,0.592708 -26291,1005:384,54,8,0,0,0.590574 -26292,1005:485,55,8,0,0,0.591542 -26293,1005:486,56,8,0,0,0.596671 -26294,1005:487,57,8,0,0,0.596646 -26295,1005:488,58,8,0,0,0.59422 -26296,1005:489,59,8,0,0,0.598079 -26297,1006:380,60,8,0,0,0.601778 -26298,1006:381,61,8,0,0,0.604262 -26299,1006:382,62,8,0,0,0.610852 -26300,1006:383,63,8,0,0,0.614947 -26301,1006:384,64,8,0,0,0.620552 -26302,1006:485,65,8,0,0,0.626845 -26303,1006:486,66,8,0,0,0.630443 -26304,1006:487,67,8,0,0,0.635883 -26305,1006:488,68,8,0,0,0.638662 -26306,1006:489,69,8,0,0,0.64103 -26307,1007:380,70,8,0,0,0.643485 -26308,1007:381,71,8,0,0,0.648349 -26309,1007:382,72,8,0,0,0.654392 -26310,1007:384,74,8,0,0,0.647599 -26311,1008:381,81,8,0,0,0.611706 -26312,1008:382,82,8,0,0,0.613145 -26313,1008:383,83,8,0,0,0.622436 -26314,1008:384,84,8,0,0,0.626604 -26315,1008:485,85,8,0,0,0.630945 -26316,1008:486,86,8,0,0,0.634884 -26317,1008:487,87,8,0,0,0.636621 -26318,1008:488,88,8,0,0,0.637547 -26319,1008:489,89,8,0,0,0.64058 -26320,1009:380,90,8,0,0,0.642966 -26321,1009:381,91,8,0,0,0.645839 -26322,1009:382,92,8,0,0,0.647951 -26323,1009:383,93,8,0,0,0.642046 -26324,1009:384,94,8,0,0,0.63833 -26325,1009:485,95,8,0,0,0.634431 -26326,1009:486,96,8,0,0,0.633382 -26327,1009:487,97,8,0,0,0.637357 -26328,1010:489,109,8,0,0,0.584898 -26329,1011:380,110,8,0,0,0.587141 -26330,1011:381,111,8,0,0,0.598351 -26331,1011:382,112,8,0,0,0.599856 -26332,1011:383,113,8,0,0,0.603697 -26333,1011:384,114,8,0,0,0.607697 -26334,1011:485,115,8,0,0,0.610632 -26335,1011:486,116,8,0,0,0.613535 -26336,1011:487,117,8,0,0,0.618638 -26337,1011:488,118,8,0,0,0.628286 -26338,1011:489,119,8,0,0,0.637286 -26339,1012:380,120,8,0,0,0.620842 -26340,1012:382,122,8,0,0,0.625594 -26341,1012:383,123,8,0,0,0.627614 -26342,1012:384,124,8,0,0,0.624968 -26343,1012:485,125,8,0,0,0.623643 -26344,1012:486,126,8,0,0,0.624391 -26345,1012:487,127,8,0,0,0.626436 -26346,1012:488,128,8,0,0,0.628118 -26347,1012:489,129,8,0,0,0.629796 -26348,1013:380,130,8,0,0,0.631806 -26349,1013:381,131,8,0,0,0.635788 -26350,1013:382,132,8,0,0,0.640013 -26351,1013:383,133,8,0,0,0.640367 -26352,1013:384,134,8,0,0,0.637049 -26353,1013:485,135,8,0,0,0.636669 -26354,1013:486,136,8,0,0,0.638402 -26355,1013:487,137,8,0,0,0.638876 -26356,1013:488,138,8,0,0,0.639752 -26357,1013:489,139,8,0,0,0.640391 -26358,1014:380,140,8,0,0,0.640439 -26359,1014:381,141,8,0,0,0.640415 -26360,1014:382,142,8,0,0,0.640391 -26361,1014:383,143,8,0,0,0.640699 -26362,1014:384,144,8,0,0,0.640912 -26363,1014:485,145,8,0,0,0.641148 -26364,1014:486,146,8,0,0,0.6398 -26365,1014:487,147,8,0,0,0.640604 -26366,1014:488,148,8,0,0,0.640273 -26367,1014:489,149,8,0,0,0.640462 -26368,1015:380,150,8,0,0,0.640817 -26369,1015:381,151,8,0,0,0.641006 -26370,1015:382,152,8,0,0,0.640817 -26371,1015:383,153,8,0,0,0.640202 -26372,1015:384,154,8,0,0,0.639302 -26373,1015:485,155,8,0,0,0.638164 -26374,1015:486,156,8,0,0,0.637001 -26375,1015:487,157,8,0,0,0.635955 -26376,1015:488,158,8,0,0,0.634789 -26377,1015:489,159,8,0,0,0.633549 -26378,1016:380,160,8,0,0,0.632236 -26379,1016:381,161,8,0,0,0.631017 -26380,1016:382,162,8,0,0,0.630251 -26381,1016:383,163,8,0,0,0.629964 -26382,1016:384,164,8,0,0,0.629221 -26383,1016:485,165,8,0,0,0.627733 -26384,1016:486,166,8,0,0,0.625811 -26385,1016:487,167,8,0,0,0.624077 -26386,1016:488,168,8,0,0,0.622267 -26387,1016:489,169,8,0,0,0.620164 -26388,1017:380,170,8,0,0,0.617862 -26389,1017:381,171,8,0,0,0.616381 -26390,1017:382,172,8,0,0,0.615895 -26391,1017:383,173,8,0,0,0.615774 -26392,1017:384,174,8,0,0,0.615409 -26393,1017:485,175,8,0,0,0.61429 -26394,1017:486,176,8,0,0,0.612902 -26395,1017:487,177,8,0,0,0.612146 -26396,1017:488,178,8,0,0,0.612316 -26397,1017:489,179,8,0,0,0.612389 -26398,1018:380,180,8,0,0,0.611242 -26399,7018:390,-180,9,0,0,0.606839 -26400,7017:499,-179,9,0,0,0.60777 -26401,7017:498,-178,9,0,0,0.606741 -26402,7017:497,-177,9,0,0,0.605171 -26403,7017:496,-176,9,0,0,0.604065 -26404,7017:495,-175,9,0,0,0.601606 -26405,7017:394,-174,9,0,0,0.599338 -26406,7017:393,-173,9,0,0,0.598227 -26407,7017:392,-172,9,0,0,0.599313 -26408,7017:391,-171,9,0,0,0.600916 -26409,7017:390,-170,9,0,0,0.601113 -26410,7016:499,-169,9,0,0,0.598153 -26411,7016:498,-168,9,0,0,0.595211 -26412,7016:497,-167,9,0,0,0.594419 -26413,7016:496,-166,9,0,0,0.596918 -26414,7016:495,-165,9,0,0,0.597017 -26415,7016:394,-164,9,0,0,0.595409 -26416,7016:393,-163,9,0,0,0.592436 -26417,7016:392,-162,9,0,0,0.590276 -26418,7016:391,-161,9,0,0,0.590698 -26419,7016:390,-160,9,0,0,0.588734 -26420,7015:499,-159,9,0,0,0.590624 -26421,7015:498,-158,9,0,0,0.58739 -26422,7015:497,-157,9,0,0,0.579599 -26423,7015:496,-156,9,0,0,0.5797 -26424,7015:495,-155,9,0,0,0.58572 -26425,7015:394,-154,9,0,0,0.582851 -26426,7015:393,-153,9,0,0,0.580401 -26427,7015:392,-152,9,0,0,0.580425 -26428,7015:391,-151,9,0,0,0.578623 -26429,7015:390,-150,9,0,0,0.576618 -26430,7014:499,-149,9,0,0,0.575689 -26431,7014:498,-148,9,0,0,0.577671 -26432,7014:497,-147,9,0,0,0.579399 -26433,7014:496,-146,9,0,0,0.578297 -26434,7014:495,-145,9,0,0,0.576066 -26435,7014:394,-144,9,0,0,0.576316 -26436,7014:393,-143,9,0,0,0.568521 -26437,7014:392,-142,9,0,0,0.571946 -26438,7014:391,-141,9,0,0,0.575488 -26439,7014:390,-140,9,0,0,0.566806 -26440,7013:499,-139,9,0,0,0.556892 -26441,7013:498,-138,9,0,0,0.558413 -26442,7013:497,-137,9,0,0,0.555649 -26443,7013:496,-136,9,0,0,0.550825 -26444,7013:495,-135,9,0,0,0.553263 -26445,7013:394,-134,9,0,0,0.545124 -26446,7013:393,-133,9,0,0,0.541045 -26447,7013:392,-132,9,0,0,0.54005 -26448,7013:391,-131,9,0,0,0.538773 -26449,7013:390,-130,9,0,0,0.533203 -26450,7012:499,-129,9,0,0,0.533407 -26451,7012:498,-128,9,0,0,0.54079 -26452,7012:497,-127,9,0,0,0.537726 -26453,7012:496,-126,9,0,0,0.539156 -26454,7012:495,-125,9,0,0,0.551078 -26455,7012:394,-124,9,0,0,0.546066 -26456,7012:393,-123,9,0,0,0.553543 -26457,7012:392,-122,9,0,0,0.553289 -26458,7012:391,-121,9,0,0,0.565343 -26459,7012:390,-120,9,0,0,0.571442 -26460,7011:499,-119,9,0,0,0.578097 -26461,7011:498,-118,9,0,0,0.579099 -26462,7011:497,-117,9,0,0,0.578623 -26463,7011:496,-116,9,0,0,0.581826 -26464,7011:495,-115,9,0,0,0.58005 -26465,7011:394,-114,9,0,0,0.5827 -26466,7011:393,-113,9,0,0,0.581626 -26467,7011:392,-112,9,0,0,0.584972 -26468,7011:391,-111,9,0,0,0.597536 -26469,7011:390,-110,9,0,0,0.60826 -26470,7010:499,-109,9,0,0,0.62304 -26471,7010:498,-108,9,0,0,0.63195 -26472,7010:497,-107,9,0,0,0.636265 -26473,7010:496,-106,9,0,0,0.640226 -26474,7010:495,-105,9,0,0,0.6498 -26475,7010:394,-104,9,0,0,0.655669 -26476,7010:393,-103,9,0,0,0.659232 -26477,7010:392,-102,9,0,0,0.664841 -26478,7010:391,-101,9,0,0,0.65884 -26479,7008:498,-88,9,0,0,0.637143 -26480,7008:497,-87,9,0,0,0.635003 -26481,7008:496,-86,9,0,0,0.634264 -26482,7008:495,-85,9,0,0,0.63605 -26483,7008:394,-84,9,0,0,0.634598 -26484,7008:393,-83,9,0,0,0.634408 -26485,7008:392,-82,9,0,0,0.635313 -26486,7008:391,-81,9,0,0,0.636645 -26487,7008:390,-80,9,0,0,0.640486 -26488,7007:499,-79,9,0,0,0.640391 -26489,7007:498,-78,9,0,0,0.63769 -26490,7007:497,-77,9,0,0,0.63871 -26491,7007:496,-76,9,0,0,0.641739 -26492,7007:495,-75,9,0,0,0.638544 -26493,7007:394,-74,9,0,0,0.640793 -26494,7007:393,-73,9,0,0,0.639634 -26495,7007:392,-72,9,0,0,0.638686 -26496,7007:391,-71,9,0,0,0.636574 -26497,7007:390,-70,9,0,0,0.637167 -26498,7006:499,-69,9,0,0,0.637001 -26499,7006:498,-68,9,0,0,0.636621 -26500,7006:497,-67,9,0,0,0.635098 -26501,7006:496,-66,9,0,0,0.635479 -26502,7006:495,-65,9,0,0,0.634336 -26503,7006:394,-64,9,0,0,0.633406 -26504,7006:393,-63,9,0,0,0.63006 -26505,7006:392,-62,9,0,0,0.628861 -26506,7006:391,-61,9,0,0,0.626268 -26507,7006:390,-60,9,0,0,0.625185 -26508,7005:499,-59,9,0,0,0.62333 -26509,7005:498,-58,9,0,0,0.621277 -26510,7005:497,-57,9,0,0,0.61968 -26511,7005:496,-56,9,0,0,0.617668 -26512,7005:495,-55,9,0,0,0.615433 -26513,7005:394,-54,9,0,0,0.612877 -26514,7005:393,-53,9,0,0,0.609899 -26515,7005:392,-52,9,0,0,0.607574 -26516,7005:391,-51,9,0,0,0.605662 -26517,7005:390,-50,9,0,0,0.60441 -26518,7004:499,-49,9,0,0,0.60195 -26519,7004:498,-48,9,0,0,0.599511 -26520,7004:497,-47,9,0,0,0.596003 -26521,7004:496,-46,9,0,0,0.593526 -26522,7004:495,-45,9,0,0,0.591344 -26523,7004:394,-44,9,0,0,0.588983 -26524,7004:393,-43,9,0,0,0.586593 -26525,7004:392,-42,9,0,0,0.586394 -26526,7004:391,-41,9,0,0,0.58385 -26527,7004:390,-40,9,0,0,0.578397 -26528,7003:499,-39,9,0,0,0.57732 -26529,7003:498,-38,9,0,0,0.575665 -26530,7003:497,-37,9,0,0,0.571895 -26531,7003:496,-36,9,0,0,0.571266 -26532,7003:495,-35,9,0,0,0.570385 -26533,7003:394,-34,9,0,0,0.567336 -26534,7003:393,-33,9,0,0,0.56514 -26535,7003:392,-32,9,0,0,0.563953 -26536,7003:391,-31,9,0,0,0.564434 -26537,7003:390,-30,9,0,0,0.563524 -26538,7002:499,-29,9,0,0,0.562943 -26539,7002:498,-28,9,0,0,0.561678 -26540,7002:497,-27,9,0,0,0.561603 -26541,7002:496,-26,9,0,0,0.562209 -26542,7002:495,-25,9,0,0,0.561653 -26543,7002:394,-24,9,0,0,0.560742 -26544,7002:393,-23,9,0,0,0.55816 -26545,7002:392,-22,9,0,0,0.555269 -26546,7002:391,-21,9,0,0,0.562993 -26547,7002:390,-20,9,0,0,0.567286 -26548,7001:499,-19,9,0,0,0.565822 -26549,7001:498,-18,9,0,0,0.564938 -26550,7001:497,-17,9,0,0,0.541785 -26551,1003:499,39,9,0,0,0.643838 -26552,1004:390,40,9,0,0,0.631735 -26553,1004:392,42,9,0,0,0.642305 -26554,1005:394,54,9,0,0,0.589232 -26555,1005:495,55,9,0,0,0.588236 -26556,1005:496,56,9,0,0,0.593625 -26557,1005:497,57,9,0,0,0.59184 -26558,1005:498,58,9,0,0,0.593502 -26559,1005:499,59,9,0,0,0.591666 -26560,1006:390,60,9,0,0,0.593031 -26561,1006:391,61,9,0,0,0.602763 -26562,1006:392,62,9,0,0,0.603451 -26563,1006:393,63,9,0,0,0.605417 -26564,1006:394,64,9,0,0,0.608774 -26565,1006:495,65,9,0,0,0.611267 -26566,1006:496,66,9,0,0,0.617231 -26567,1006:497,67,9,0,0,0.622871 -26568,1006:498,68,9,0,0,0.627278 -26569,1006:499,69,9,0,0,0.636169 -26570,1007:390,70,9,0,0,0.642565 -26571,1007:391,71,9,0,0,0.647435 -26572,1007:392,72,9,0,0,0.650197 -26573,1008:393,83,9,0,0,0.604188 -26574,1008:394,84,9,0,0,0.613803 -26575,1008:495,85,9,0,0,0.614314 -26576,1008:496,86,9,0,0,0.61905 -26577,1008:497,87,9,0,0,0.627421 -26578,1008:498,88,9,0,0,0.63424 -26579,1008:499,89,9,0,0,0.634622 -26580,1009:390,90,9,0,0,0.636145 -26581,1009:391,91,9,0,0,0.638473 -26582,1009:392,92,9,0,0,0.642542 -26583,1009:393,93,9,0,0,0.641195 -26584,1009:394,94,9,0,0,0.635503 -26585,1010:498,108,9,0,0,0.575288 -26586,1010:499,109,9,0,0,0.578448 -26587,1011:390,110,9,0,0,0.579149 -26588,1011:391,111,9,0,0,0.58749 -26589,1011:392,112,9,0,0,0.588883 -26590,1011:393,113,9,0,0,0.5834 -26591,1011:394,114,9,0,0,0.592782 -26592,1011:495,115,9,0,0,0.592088 -26593,1011:496,116,9,0,0,0.592609 -26594,1011:497,117,9,0,0,0.599462 -26595,1011:498,118,9,0,0,0.617935 -26596,1011:499,119,9,0,0,0.629868 -26597,1012:390,120,9,0,0,0.619002 -26598,1012:393,123,9,0,0,0.625787 -26599,1012:394,124,9,0,0,0.616284 -26600,1012:495,125,9,0,0,0.614241 -26601,1012:496,126,9,0,0,0.614022 -26602,1012:497,127,9,0,0,0.615458 -26603,1012:498,128,9,0,0,0.616381 -26604,1012:499,129,9,0,0,0.618056 -26605,1013:390,130,9,0,0,0.620817 -26606,1013:391,131,9,0,0,0.623619 -26607,1013:392,132,9,0,0,0.626797 -26608,1013:393,133,9,0,0,0.631782 -26609,1013:394,134,9,0,0,0.633382 -26610,1013:495,135,9,0,0,0.632284 -26611,1013:496,136,9,0,0,0.632308 -26612,1013:497,137,9,0,0,0.634408 -26613,1013:498,138,9,0,0,0.635217 -26614,1013:499,139,9,0,0,0.635551 -26615,1014:390,140,9,0,0,0.63517 -26616,1014:391,141,9,0,0,0.634479 -26617,1014:392,142,9,0,0,0.634503 -26618,1014:393,143,9,0,0,0.635027 -26619,1014:394,144,9,0,0,0.635479 -26620,1014:495,145,9,0,0,0.635337 -26621,1014:496,146,9,0,0,0.634288 -26622,1014:497,147,9,0,0,0.635146 -26623,1014:498,148,9,0,0,0.635384 -26624,1014:499,149,9,0,0,0.636074 -26625,1015:390,150,9,0,0,0.636502 -26626,1015:391,151,9,0,0,0.63605 -26627,1015:392,152,9,0,0,0.636336 -26628,1015:393,153,9,0,0,0.636764 -26629,1015:394,154,9,0,0,0.637595 -26630,1015:495,155,9,0,0,0.636645 -26631,1015:496,156,9,0,0,0.635432 -26632,1015:497,157,9,0,0,0.633859 -26633,1015:498,158,9,0,0,0.632714 -26634,1015:499,159,9,0,0,0.632762 -26635,1016:390,160,9,0,0,0.632117 -26636,1016:391,161,9,0,0,0.630634 -26637,1016:392,162,9,0,0,0.628526 -26638,1016:393,163,9,0,0,0.626412 -26639,1016:394,164,9,0,0,0.624993 -26640,1016:495,165,9,0,0,0.624968 -26641,1016:496,166,9,0,0,0.625233 -26642,1016:497,167,9,0,0,0.624391 -26643,1016:498,168,9,0,0,0.621953 -26644,1016:499,169,9,0,0,0.619946 -26645,1017:390,170,9,0,0,0.61762 -26646,1017:391,171,9,0,0,0.615288 -26647,1017:392,172,9,0,0,0.613973 -26648,1017:393,173,9,0,0,0.61317 -26649,1017:394,174,9,0,0,0.612658 -26650,1017:495,175,9,0,0,0.611974 -26651,1017:496,176,9,0,0,0.610779 -26652,1017:497,177,9,0,0,0.608333 -26653,1017:498,178,9,0,0,0.606594 -26654,1017:499,179,9,0,0,0.606374 -26655,1018:390,180,9,0,0,0.606839 -26656,7118:100,-180,10,0,0,0.602763 -26657,7117:209,-179,10,0,0,0.603008 -26658,7117:208,-178,10,0,0,0.601975 -26659,7117:207,-177,10,0,0,0.597956 -26660,7117:206,-176,10,0,0,0.600004 -26661,7117:205,-175,10,0,0,0.597561 -26662,7117:104,-174,10,0,0,0.596151 -26663,7117:103,-173,10,0,0,0.594419 -26664,7117:102,-172,10,0,0,0.595334 -26665,7117:101,-171,10,0,0,0.59432 -26666,7117:100,-170,10,0,0,0.59672 -26667,7116:209,-169,10,0,0,0.59761 -26668,7116:208,-168,10,0,0,0.595756 -26669,7116:207,-167,10,0,0,0.593997 -26670,7116:206,-166,10,0,0,0.591244 -26671,7116:205,-165,10,0,0,0.589057 -26672,7116:104,-164,10,0,0,0.588311 -26673,7116:103,-163,10,0,0,0.589057 -26674,7116:102,-162,10,0,0,0.588286 -26675,7116:101,-161,10,0,0,0.587689 -26676,7116:100,-160,10,0,0,0.589132 -26677,7115:209,-159,10,0,0,0.5902 -26678,7115:208,-158,10,0,0,0.590151 -26679,7115:207,-157,10,0,0,0.577445 -26680,7115:206,-156,10,0,0,0.568949 -26681,7115:205,-155,10,0,0,0.567992 -26682,7115:104,-154,10,0,0,0.570838 -26683,7115:103,-153,10,0,0,0.569176 -26684,7115:102,-152,10,0,0,0.56514 -26685,7115:101,-151,10,0,0,0.564282 -26686,7115:100,-150,10,0,0,0.560211 -26687,7114:209,-149,10,0,0,0.562741 -26688,7114:208,-148,10,0,0,0.559122 -26689,7114:207,-147,10,0,0,0.560033 -26690,7114:206,-146,10,0,0,0.560996 -26691,7114:205,-145,10,0,0,0.566176 -26692,7114:104,-144,10,0,0,0.56509 -26693,7114:103,-143,10,0,0,0.563828 -26694,7114:102,-142,10,0,0,0.549426 -26695,7114:101,-141,10,0,0,0.544666 -26696,7114:100,-140,10,0,0,0.54762 -26697,7113:209,-139,10,0,0,0.549629 -26698,7113:208,-138,10,0,0,0.539794 -26699,7113:207,-137,10,0,0,0.530491 -26700,7113:206,-136,10,0,0,0.532205 -26701,7113:205,-135,10,0,0,0.527803 -26702,7113:104,-134,10,0,0,0.526446 -26703,7113:103,-133,10,0,0,0.522602 -26704,7113:102,-132,10,0,0,0.517217 -26705,7113:101,-131,10,0,0,0.510133 -26706,7113:100,-130,10,0,0,0.509568 -26707,7112:209,-129,10,0,0,0.50926 -26708,7112:208,-128,10,0,0,0.511776 -26709,7112:207,-127,10,0,0,0.517859 -26710,7112:206,-126,10,0,0,0.520372 -26711,7112:205,-125,10,0,0,0.516165 -26712,7112:104,-124,10,0,0,0.510723 -26713,7112:103,-123,10,0,0,0.519243 -26714,7112:102,-122,10,0,0,0.53264 -26715,7112:101,-121,10,0,0,0.542601 -26716,7112:100,-120,10,0,0,0.546244 -26717,7111:209,-119,10,0,0,0.548204 -26718,7111:208,-118,10,0,0,0.542703 -26719,7111:207,-117,10,0,0,0.546117 -26720,7111:206,-116,10,0,0,0.547772 -26721,7111:205,-115,10,0,0,0.548434 -26722,7111:104,-114,10,0,0,0.557222 -26723,7111:103,-113,10,0,0,0.565267 -26724,7111:102,-112,10,0,0,0.573956 -26725,7111:101,-111,10,0,0,0.58375 -26726,7111:100,-110,10,0,0,0.596893 -26727,7110:209,-109,10,0,0,0.615944 -26728,7110:208,-108,10,0,0,0.629557 -26729,7110:207,-107,10,0,0,0.625378 -26730,7110:206,-106,10,0,0,0.622243 -26731,7110:205,-105,10,0,0,0.637428 -26732,7110:104,-104,10,0,0,0.648045 -26733,7109:104,-94,10,0,0,0.600127 -26734,7108:208,-88,10,0,0,0.611682 -26735,7108:207,-87,10,0,0,0.633931 -26736,7108:206,-86,10,0,0,0.63655 -26737,7108:205,-85,10,0,0,0.638615 -26738,7108:104,-84,10,0,0,0.639184 -26739,7108:103,-83,10,0,0,0.638235 -26740,7108:102,-82,10,0,0,0.638615 -26741,7108:101,-81,10,0,0,0.63871 -26742,7108:100,-80,10,0,0,0.638307 -26743,7107:209,-79,10,0,0,0.638781 -26744,7107:207,-77,10,0,0,0.634765 -26745,7107:206,-76,10,0,0,0.634884 -26746,7107:205,-75,10,0,0,0.638235 -26747,7107:100,-70,10,0,0,0.62831 -26748,7106:208,-68,10,0,0,0.631902 -26749,7106:205,-65,10,0,0,0.626653 -26750,7106:104,-64,10,0,0,0.626052 -26751,7106:103,-63,10,0,0,0.626461 -26752,7106:102,-62,10,0,0,0.623667 -26753,7106:101,-61,10,0,0,0.62304 -26754,7106:100,-60,10,0,0,0.62118 -26755,7105:209,-59,10,0,0,0.618493 -26756,7105:208,-58,10,0,0,0.617231 -26757,7105:207,-57,10,0,0,0.616867 -26758,7105:206,-56,10,0,0,0.616478 -26759,7105:205,-55,10,0,0,0.613023 -26760,7105:104,-54,10,0,0,0.611169 -26761,7105:103,-53,10,0,0,0.60963 -26762,7105:102,-52,10,0,0,0.607354 -26763,7105:101,-51,10,0,0,0.60468 -26764,7105:100,-50,10,0,0,0.603254 -26765,7104:209,-49,10,0,0,0.600793 -26766,7104:208,-48,10,0,0,0.597758 -26767,7104:207,-47,10,0,0,0.592584 -26768,7104:206,-46,10,0,0,0.590499 -26769,7104:205,-45,10,0,0,0.588585 -26770,7104:104,-44,10,0,0,0.586942 -26771,7104:103,-43,10,0,0,0.585745 -26772,7104:102,-42,10,0,0,0.583825 -26773,7104:101,-41,10,0,0,0.581401 -26774,7104:100,-40,10,0,0,0.578523 -26775,7103:209,-39,10,0,0,0.575388 -26776,7103:208,-38,10,0,0,0.574007 -26777,7103:207,-37,10,0,0,0.57192 -26778,7103:206,-36,10,0,0,0.568521 -26779,7103:205,-35,10,0,0,0.565797 -26780,7103:104,-34,10,0,0,0.563373 -26781,7103:103,-33,10,0,0,0.560691 -26782,7103:102,-32,10,0,0,0.558286 -26783,7103:101,-31,10,0,0,0.556207 -26784,7103:100,-30,10,0,0,0.555929 -26785,7102:209,-29,10,0,0,0.555649 -26786,7102:208,-28,10,0,0,0.553848 -26787,7102:207,-27,10,0,0,0.554051 -26788,7102:206,-26,10,0,0,0.552146 -26789,7102:205,-25,10,0,0,0.551486 -26790,7102:104,-24,10,0,0,0.549858 -26791,7102:103,-23,10,0,0,0.55024 -26792,7102:102,-22,10,0,0,0.547772 -26793,7102:101,-21,10,0,0,0.548561 -26794,7102:100,-20,10,0,0,0.542346 -26795,7101:209,-19,10,0,0,0.536858 -26796,7101:208,-18,10,0,0,0.549375 -26797,7101:207,-17,10,0,0,0.527906 -26798,1103:208,38,10,0,0,0.642542 -26799,1103:209,39,10,0,0,0.657684 -26800,1104:100,40,10,0,0,0.665047 -26801,1104:101,41,10,0,0,0.643932 -26802,1105:207,57,10,0,0,0.581401 -26803,1105:208,58,10,0,0,0.587788 -26804,1105:209,59,10,0,0,0.588236 -26805,1106:100,60,10,0,0,0.588833 -26806,1106:101,61,10,0,0,0.594988 -26807,1106:102,62,10,0,0,0.597536 -26808,1106:103,63,10,0,0,0.596473 -26809,1106:104,64,10,0,0,0.597536 -26810,1106:205,65,10,0,0,0.600621 -26811,1106:206,66,10,0,0,0.606374 -26812,1106:207,67,10,0,0,0.610827 -26813,1106:208,68,10,0,0,0.623981 -26814,1106:209,69,10,0,0,0.63424 -26815,1107:100,70,10,0,0,0.636764 -26816,1107:101,71,10,0,0,0.632977 -26817,1107:102,72,10,0,0,0.638497 -26818,1108:205,85,10,0,0,0.598968 -26819,1108:206,86,10,0,0,0.608872 -26820,1108:207,87,10,0,0,0.61728 -26821,1108:208,88,10,0,0,0.619946 -26822,1108:209,89,10,0,0,0.627133 -26823,1109:100,90,10,0,0,0.627782 -26824,1109:101,91,10,0,0,0.626244 -26825,1109:102,92,10,0,0,0.628694 -26826,1109:103,93,10,0,0,0.635479 -26827,1109:104,94,10,0,0,0.639657 -26828,1110:207,107,10,0,0,0.544029 -26829,1110:208,108,10,0,0,0.574735 -26830,1110:209,109,10,0,0,0.552374 -26831,1111:101,111,10,0,0,0.56461 -26832,1111:102,112,10,0,0,0.571417 -26833,1111:103,113,10,0,0,0.577044 -26834,1111:104,114,10,0,0,0.578548 -26835,1111:205,115,10,0,0,0.578673 -26836,1111:206,116,10,0,0,0.586942 -26837,1111:207,117,10,0,0,0.590574 -26838,1111:208,118,10,0,0,0.592535 -26839,1111:209,119,10,0,0,0.602665 -26840,1112:100,120,10,0,0,0.611047 -26841,1112:102,122,10,0,0,0.601261 -26842,1112:103,123,10,0,0,0.620285 -26843,1112:104,124,10,0,0,0.59318 -26844,1112:205,125,10,0,0,0.602025 -26845,1112:206,126,10,0,0,0.604606 -26846,1112:207,127,10,0,0,0.60296 -26847,1112:208,128,10,0,0,0.60291 -26848,1112:209,129,10,0,0,0.606766 -26849,1113:100,130,10,0,0,0.6087 -26850,1113:101,131,10,0,0,0.610754 -26851,1113:102,132,10,0,0,0.613364 -26852,1113:103,133,10,0,0,0.617959 -26853,1113:104,134,10,0,0,0.62316 -26854,1113:205,135,10,0,0,0.623112 -26855,1113:206,136,10,0,0,0.625353 -26856,1113:207,137,10,0,0,0.628045 -26857,1113:208,138,10,0,0,0.63018 -26858,1113:209,139,10,0,0,0.630491 -26859,1114:100,140,10,0,0,0.629868 -26860,1114:101,141,10,0,0,0.629628 -26861,1114:102,142,10,0,0,0.629077 -26862,1114:103,143,10,0,0,0.628694 -26863,1114:104,144,10,0,0,0.628934 -26864,1114:205,145,10,0,0,0.628694 -26865,1114:206,146,10,0,0,0.629101 -26866,1114:207,147,10,0,0,0.629101 -26867,1114:208,148,10,0,0,0.629197 -26868,1114:209,149,10,0,0,0.628958 -26869,1115:100,150,10,0,0,0.628166 -26870,1115:101,151,10,0,0,0.629844 -26871,1115:102,152,10,0,0,0.629461 -26872,1115:103,153,10,0,0,0.628958 -26873,1115:104,154,10,0,0,0.630418 -26874,1115:205,155,10,0,0,0.629125 -26875,1115:206,156,10,0,0,0.629341 -26876,1115:207,157,10,0,0,0.628669 -26877,1115:208,158,10,0,0,0.628262 -26878,1115:209,159,10,0,0,0.627421 -26879,1116:100,160,10,0,0,0.62622 -26880,1116:101,161,10,0,0,0.627278 -26881,1116:102,162,10,0,0,0.627566 -26882,1116:103,163,10,0,0,0.625811 -26883,1116:104,164,10,0,0,0.623498 -26884,1116:205,165,10,0,0,0.620939 -26885,1116:206,166,10,0,0,0.621108 -26886,1116:207,167,10,0,0,0.620454 -26887,1116:208,168,10,0,0,0.617523 -26888,1116:209,169,10,0,0,0.618686 -26889,1117:100,170,10,0,0,0.618348 -26890,1117:101,171,10,0,0,0.616892 -26891,1117:102,172,10,0,0,0.615433 -26892,1117:103,173,10,0,0,0.614996 -26893,1117:104,174,10,0,0,0.613242 -26894,1117:205,175,10,0,0,0.61134 -26895,1117:206,176,10,0,0,0.609435 -26896,1117:207,177,10,0,0,0.607844 -26897,1117:208,178,10,0,0,0.606643 -26898,1117:209,179,10,0,0,0.605613 -26899,1118:100,180,10,0,0,0.602763 -26900,7118:110,-180,11,0,0,0.594419 -26901,7117:219,-179,11,0,0,0.59625 -26902,7117:218,-178,11,0,0,0.594171 -26903,7117:217,-177,11,0,0,0.589927 -26904,7117:216,-176,11,0,0,0.590996 -26905,7117:215,-175,11,0,0,0.586019 -26906,7117:114,-174,11,0,0,0.5834 -26907,7117:113,-173,11,0,0,0.58075 -26908,7117:112,-172,11,0,0,0.577545 -26909,7117:111,-171,11,0,0,0.576166 -26910,7117:110,-170,11,0,0,0.580701 -26911,7116:219,-169,11,0,0,0.584798 -26912,7116:218,-168,11,0,0,0.584024 -26913,7116:217,-167,11,0,0,0.584748 -26914,7116:216,-166,11,0,0,0.583025 -26915,7116:215,-165,11,0,0,0.568572 -26916,7116:114,-164,11,0,0,0.565166 -26917,7116:113,-163,11,0,0,0.565898 -26918,7116:112,-162,11,0,0,0.572725 -26919,7116:111,-161,11,0,0,0.580901 -26920,7116:110,-160,11,0,0,0.581176 -26921,7115:219,-159,11,0,0,0.577796 -26922,7115:218,-158,11,0,0,0.577645 -26923,7115:217,-157,11,0,0,0.579399 -26924,7115:216,-156,11,0,0,0.565469 -26925,7115:215,-155,11,0,0,0.558742 -26926,7115:114,-154,11,0,0,0.561426 -26927,7115:113,-153,11,0,0,0.55783 -26928,7115:112,-152,11,0,0,0.549121 -26929,7115:111,-151,11,0,0,0.545251 -26930,7115:110,-150,11,0,0,0.543391 -26931,7114:219,-149,11,0,0,0.54028 -26932,7114:218,-148,11,0,0,0.5413 -26933,7114:217,-147,11,0,0,0.538416 -26934,7114:216,-146,11,0,0,0.541249 -26935,7114:215,-145,11,0,0,0.537547 -26936,7114:114,-144,11,0,0,0.534072 -26937,7114:113,-143,11,0,0,0.531566 -26938,7114:112,-142,11,0,0,0.525268 -26939,7114:111,-141,11,0,0,0.525242 -26940,7114:110,-140,11,0,0,0.522474 -26941,7113:219,-139,11,0,0,0.517242 -26942,7113:218,-138,11,0,0,0.515318 -26943,7113:217,-137,11,0,0,0.512828 -26944,7113:216,-136,11,0,0,0.515318 -26945,7113:215,-135,11,0,0,0.508567 -26946,7113:114,-134,11,0,0,0.498499 -26947,7113:113,-133,11,0,0,0.503713 -26948,7113:112,-132,11,0,0,0.496572 -26949,7113:111,-131,11,0,0,0.491333 -26950,7113:110,-130,11,0,0,0.492617 -26951,7112:219,-129,11,0,0,0.487816 -26952,7112:218,-128,11,0,0,0.482298 -26953,7112:217,-127,11,0,0,0.483582 -26954,7112:216,-126,11,0,0,0.484479 -26955,7112:215,-125,11,0,0,0.47999 -26956,7112:114,-124,11,0,0,0.481734 -26957,7112:113,-123,11,0,0,0.480836 -26958,7112:112,-122,11,0,0,0.482915 -26959,7112:111,-121,11,0,0,0.489074 -26960,7112:110,-120,11,0,0,0.501247 -26961,7111:219,-119,11,0,0,0.508798 -26962,7111:218,-118,11,0,0,0.517935 -26963,7111:217,-117,11,0,0,0.521423 -26964,7111:216,-116,11,0,0,0.516832 -26965,7111:215,-115,11,0,0,0.521833 -26966,7111:114,-114,11,0,0,0.533791 -26967,7111:113,-113,11,0,0,0.541708 -26968,7111:112,-112,11,0,0,0.550799 -26969,7111:111,-111,11,0,0,0.557019 -26970,7111:110,-110,11,0,0,0.563296 -26971,7110:219,-109,11,0,0,0.57285 -26972,7110:218,-108,11,0,0,0.596275 -26973,7110:217,-107,11,0,0,0.605932 -26974,7110:216,-106,11,0,0,0.623281 -26975,7109:216,-96,11,0,0,0.578022 -26976,7109:215,-95,11,0,0,0.578147 -26977,7109:114,-94,11,0,0,0.584349 -26978,7109:113,-93,11,0,0,0.586917 -26979,7109:112,-92,11,0,0,0.594419 -26980,7109:111,-91,11,0,0,0.588684 -26981,7108:217,-87,11,0,0,0.632762 -26982,7108:216,-86,11,0,0,0.633048 -26983,7108:215,-85,11,0,0,0.625498 -26984,7108:114,-84,11,0,0,0.620817 -26985,7108:113,-83,11,0,0,0.616284 -26986,7108:112,-82,11,0,0,0.619075 -26987,7108:111,-81,11,0,0,0.619317 -26988,7108:110,-80,11,0,0,0.624222 -26989,7107:219,-79,11,0,0,0.626052 -26990,7107:218,-78,11,0,0,0.620213 -26991,7107:114,-74,11,0,0,0.610119 -26992,7107:113,-73,11,0,0,0.621639 -26993,7107:112,-72,11,0,0,0.61808 -26994,7107:111,-71,11,0,0,0.612902 -26995,7107:110,-70,11,0,0,0.616042 -26996,7106:219,-69,11,0,0,0.619971 -26997,7106:218,-68,11,0,0,0.623595 -26998,7106:217,-67,11,0,0,0.625257 -26999,7106:216,-66,11,0,0,0.623595 -27000,7106:215,-65,11,0,0,0.623258 -27001,7106:114,-64,11,0,0,0.623764 -27002,7106:113,-63,11,0,0,0.621785 -27003,7106:112,-62,11,0,0,0.616478 -27004,7106:111,-61,11,0,0,0.61762 -27005,7106:110,-60,11,0,0,0.615385 -27006,7105:219,-59,11,0,0,0.613608 -27007,7105:218,-58,11,0,0,0.612902 -27008,7105:217,-57,11,0,0,0.610632 -27009,7105:216,-56,11,0,0,0.608407 -27010,7105:215,-55,11,0,0,0.607549 -27011,7105:114,-54,11,0,0,0.60777 -27012,7105:113,-53,11,0,0,0.60409 -27013,7105:112,-52,11,0,0,0.599856 -27014,7105:111,-51,11,0,0,0.596126 -27015,7105:110,-50,11,0,0,0.592957 -27016,7104:219,-49,11,0,0,0.590797 -27017,7104:218,-48,11,0,0,0.59184 -27018,7104:217,-47,11,0,0,0.590027 -27019,7104:216,-46,11,0,0,0.588585 -27020,7104:215,-45,11,0,0,0.584499 -27021,7104:114,-44,11,0,0,0.579975 -27022,7104:113,-43,11,0,0,0.578422 -27023,7104:112,-42,11,0,0,0.575514 -27024,7104:111,-41,11,0,0,0.576066 -27025,7104:110,-40,11,0,0,0.575012 -27026,7103:219,-39,11,0,0,0.57104 -27027,7103:218,-38,11,0,0,0.568446 -27028,7103:217,-37,11,0,0,0.568017 -27029,7103:216,-36,11,0,0,0.565595 -27030,7103:215,-35,11,0,0,0.56269 -27031,7103:114,-34,11,0,0,0.557855 -27032,7103:113,-33,11,0,0,0.554178 -27033,7103:112,-32,11,0,0,0.553162 -27034,7103:111,-31,11,0,0,0.55085 -27035,7103:110,-30,11,0,0,0.550189 -27036,7102:219,-29,11,0,0,0.546932 -27037,7102:218,-28,11,0,0,0.545506 -27038,7102:217,-27,11,0,0,0.544079 -27039,7102:216,-26,11,0,0,0.541377 -27040,7102:215,-25,11,0,0,0.537956 -27041,7102:114,-24,11,0,0,0.535784 -27042,7102:113,-23,11,0,0,0.532231 -27043,7102:112,-22,11,0,0,0.52852 -27044,7102:111,-21,11,0,0,0.522372 -27045,7102:110,-20,11,0,0,0.50754 -27046,7101:219,-19,11,0,0,0.517191 -27047,7101:218,-18,11,0,0,0.50659 -27048,7101:217,-17,11,0,0,0.49873 -27049,1103:217,37,11,0,0,0.64077 -27050,1103:218,38,11,0,0,0.650992 -27051,1103:219,39,11,0,0,0.65597 -27052,1104:110,40,11,0,0,0.650968 -27053,1105:218,58,11,0,0,0.572625 -27054,1105:219,59,11,0,0,0.572775 -27055,1106:110,60,11,0,0,0.588286 -27056,1106:111,61,11,0,0,0.587215 -27057,1106:112,62,11,0,0,0.592038 -27058,1106:113,63,11,0,0,0.589803 -27059,1106:114,64,11,0,0,0.591964 -27060,1106:215,65,11,0,0,0.587365 -27061,1106:216,66,11,0,0,0.592807 -27062,1106:217,67,11,0,0,0.599609 -27063,1106:218,68,11,0,0,0.619631 -27064,1106:219,69,11,0,0,0.619801 -27065,1107:110,70,11,0,0,0.61779 -27066,1107:111,71,11,0,0,0.625474 -27067,1107:112,72,11,0,0,0.630107 -27068,1108:217,87,11,0,0,0.597857 -27069,1108:218,88,11,0,0,0.598449 -27070,1108:219,89,11,0,0,0.611292 -27071,1109:110,90,11,0,0,0.621518 -27072,1109:111,91,11,0,0,0.631711 -27073,1109:112,92,11,0,0,0.639918 -27074,1109:113,93,11,0,0,0.633907 -27075,1110:217,107,11,0,0,0.519321 -27076,1110:218,108,11,0,0,0.535504 -27077,1110:219,109,11,0,0,0.526805 -27078,1111:110,110,11,0,0,0.501863 -27079,1111:111,111,11,0,0,0.495879 -27080,1111:112,112,11,0,0,0.55499 -27081,1111:113,113,11,0,0,0.558995 -27082,1111:114,114,11,0,0,0.571719 -27083,1111:215,115,11,0,0,0.576919 -27084,1111:216,116,11,0,0,0.584099 -27085,1111:217,117,11,0,0,0.591046 -27086,1111:218,118,11,0,0,0.594988 -27087,1111:219,119,11,0,0,0.600177 -27088,1112:110,120,11,0,0,0.604238 -27089,1112:111,121,11,0,0,0.60136 -27090,1112:112,122,11,0,0,0.58365 -27091,1112:113,123,11,0,0,0.581301 -27092,1112:114,124,11,0,0,0.579074 -27093,1112:215,125,11,0,0,0.577997 -27094,1112:216,126,11,0,0,0.576392 -27095,1112:217,127,11,0,0,0.580201 -27096,1112:218,128,11,0,0,0.584898 -27097,1112:219,129,11,0,0,0.586892 -27098,1113:110,130,11,0,0,0.588659 -27099,1113:111,131,11,0,0,0.596077 -27100,1113:112,132,11,0,0,0.597017 -27101,1113:113,133,11,0,0,0.598623 -27102,1113:114,134,11,0,0,0.597288 -27103,1113:215,135,11,0,0,0.606912 -27104,1113:216,136,11,0,0,0.607574 -27105,1113:217,137,11,0,0,0.607893 -27106,1113:218,138,11,0,0,0.616673 -27107,1113:219,139,11,0,0,0.622702 -27108,1114:110,140,11,0,0,0.621639 -27109,1114:111,141,11,0,0,0.621785 -27110,1114:112,142,11,0,0,0.621639 -27111,1114:113,143,11,0,0,0.621591 -27112,1114:114,144,11,0,0,0.625233 -27113,1114:215,145,11,0,0,0.623547 -27114,1114:216,146,11,0,0,0.621132 -27115,1114:217,147,11,0,0,0.624125 -27116,1114:218,148,11,0,0,0.624294 -27117,1114:219,149,11,0,0,0.624318 -27118,1115:110,150,11,0,0,0.624535 -27119,1115:111,151,11,0,0,0.62263 -27120,1115:112,152,11,0,0,0.622171 -27121,1115:113,153,11,0,0,0.622099 -27122,1115:114,154,11,0,0,0.622099 -27123,1115:215,155,11,0,0,0.62386 -27124,1115:216,156,11,0,0,0.623258 -27125,1115:217,157,11,0,0,0.622002 -27126,1115:218,158,11,0,0,0.620696 -27127,1115:219,159,11,0,0,0.619608 -27128,1116:110,160,11,0,0,0.618105 -27129,1116:111,161,11,0,0,0.617377 -27130,1116:112,162,11,0,0,0.618251 -27131,1116:113,163,11,0,0,0.618953 -27132,1116:114,164,11,0,0,0.617377 -27133,1116:215,165,11,0,0,0.611657 -27134,1116:216,166,11,0,0,0.611121 -27135,1116:217,167,11,0,0,0.613778 -27136,1116:218,168,11,0,0,0.613828 -27137,1116:219,169,11,0,0,0.611999 -27138,1117:110,170,11,0,0,0.610192 -27139,1117:111,171,11,0,0,0.609117 -27140,1117:112,172,11,0,0,0.6063 -27141,1117:113,173,11,0,0,0.605515 -27142,1117:114,174,11,0,0,0.602049 -27143,1117:215,175,11,0,0,0.601705 -27144,1117:216,176,11,0,0,0.600201 -27145,1117:217,177,11,0,0,0.594518 -27146,1117:218,178,11,0,0,0.597437 -27147,1117:219,179,11,0,0,0.598128 -27148,1118:110,180,11,0,0,0.594419 -27149,7118:120,-180,12,0,0,0.583225 -27150,7117:229,-179,12,0,0,0.584548 -27151,7117:228,-178,12,0,0,0.582526 -27152,7117:227,-177,12,0,0,0.579975 -27153,7117:226,-176,12,0,0,0.579023 -27154,7117:225,-175,12,0,0,0.576893 -27155,7117:124,-174,12,0,0,0.575966 -27156,7117:123,-173,12,0,0,0.573605 -27157,7117:122,-172,12,0,0,0.571014 -27158,7117:121,-171,12,0,0,0.568017 -27159,7117:120,-170,12,0,0,0.563499 -27160,7116:229,-169,12,0,0,0.561704 -27161,7116:228,-168,12,0,0,0.560641 -27162,7116:227,-167,12,0,0,0.571518 -27163,7116:226,-166,12,0,0,0.572348 -27164,7116:225,-165,12,0,0,0.559071 -27165,7116:124,-164,12,0,0,0.558843 -27166,7116:123,-163,12,0,0,0.565166 -27167,7116:122,-162,12,0,0,0.571493 -27168,7116:121,-161,12,0,0,0.569051 -27169,7116:120,-160,12,0,0,0.558514 -27170,7115:229,-159,12,0,0,0.560388 -27171,7115:227,-157,12,0,0,0.554457 -27172,7115:226,-156,12,0,0,0.554762 -27173,7115:225,-155,12,0,0,0.555853 -27174,7115:124,-154,12,0,0,0.552374 -27175,7115:123,-153,12,0,0,0.547136 -27176,7115:122,-152,12,0,0,0.54492 -27177,7115:121,-151,12,0,0,0.539335 -27178,7115:120,-150,12,0,0,0.537394 -27179,7114:229,-149,12,0,0,0.532027 -27180,7114:228,-148,12,0,0,0.526855 -27181,7114:227,-147,12,0,0,0.524627 -27182,7114:226,-146,12,0,0,0.520603 -27183,7114:225,-145,12,0,0,0.514318 -27184,7114:124,-144,12,0,0,0.513804 -27185,7114:123,-143,12,0,0,0.512084 -27186,7114:122,-142,12,0,0,0.511596 -27187,7114:121,-141,12,0,0,0.505177 -27188,7114:120,-140,12,0,0,0.504535 -27189,7113:229,-139,12,0,0,0.495571 -27190,7113:228,-138,12,0,0,0.495108 -27191,7113:227,-137,12,0,0,0.486481 -27192,7113:226,-136,12,0,0,0.49349 -27193,7113:225,-135,12,0,0,0.495879 -27194,7113:124,-134,12,0,0,0.489895 -27195,7113:123,-133,12,0,0,0.477016 -27196,7113:122,-132,12,0,0,0.471226 -27197,7113:121,-131,12,0,0,0.47453 -27198,7113:120,-130,12,0,0,0.471944 -27199,7112:229,-129,12,0,0,0.467593 -27200,7112:228,-128,12,0,0,0.46703 -27201,7112:227,-127,12,0,0,0.462302 -27203,7112:225,-125,12,0,0,0.461945 -27204,7112:124,-124,12,0,0,0.460745 -27205,7112:123,-123,12,0,0,0.459162 -27206,7112:122,-122,12,0,0,0.461587 -27207,7112:121,-121,12,0,0,0.460872 -27208,7112:120,-120,12,0,0,0.465828 -27209,7111:229,-119,12,0,0,0.4679 -27210,7111:228,-118,12,0,0,0.474812 -27211,7111:227,-117,12,0,0,0.479092 -27212,7111:226,-116,12,0,0,0.489665 -27213,7111:225,-115,12,0,0,0.501273 -27214,7111:124,-114,12,0,0,0.517397 -27215,7111:123,-113,12,0,0,0.528443 -27216,7111:122,-112,12,0,0,0.528111 -27217,7111:121,-111,12,0,0,0.520372 -27218,7111:120,-110,12,0,0,0.536781 -27219,7110:229,-109,12,0,0,0.58395 -27220,7110:228,-108,12,0,0,0.586319 -27221,7110:227,-107,12,0,0,0.608113 -27222,7110:226,-106,12,0,0,0.60799 -27223,7109:227,-97,12,0,0,0.576191 -27224,7109:226,-96,12,0,0,0.579149 -27225,7109:225,-95,12,0,0,0.582226 -27226,7109:124,-94,12,0,0,0.584898 -27227,7109:123,-93,12,0,0,0.583799 -27228,7109:122,-92,12,0,0,0.59189 -27229,7109:121,-91,12,0,0,0.585247 -27230,7109:120,-90,12,0,0,0.580376 -27231,7108:229,-89,12,0,0,0.5836 -27232,7108:226,-86,12,0,0,0.631782 -27233,7108:225,-85,12,0,0,0.613608 -27234,7108:124,-84,12,0,0,0.611145 -27235,7108:122,-82,12,0,0,0.612755 -27236,7108:121,-81,12,0,0,0.613754 -27237,7108:120,-80,12,0,0,0.615895 -27238,7107:229,-79,12,0,0,0.592733 -27239,7107:226,-76,12,0,0,0.610803 -27240,7107:225,-75,12,0,0,0.606079 -27241,7107:124,-74,12,0,0,0.612585 -27242,7107:123,-73,12,0,0,0.612975 -27243,7107:122,-72,12,0,0,0.604606 -27244,7107:121,-71,12,0,0,0.606079 -27245,7107:120,-70,12,0,0,0.612194 -27246,7106:229,-69,12,0,0,0.612682 -27247,7106:228,-68,12,0,0,0.613194 -27248,7106:227,-67,12,0,0,0.61745 -27249,7106:226,-66,12,0,0,0.618274 -27250,7106:225,-65,12,0,0,0.614582 -27251,7106:124,-64,12,0,0,0.614947 -27252,7106:123,-63,12,0,0,0.615385 -27253,7106:122,-62,12,0,0,0.613267 -27254,7106:121,-61,12,0,0,0.613097 -27255,7106:120,-60,12,0,0,0.613511 -27256,7105:229,-59,12,0,0,0.611047 -27257,7105:228,-58,12,0,0,0.607672 -27258,7105:227,-57,12,0,0,0.606962 -27259,7105:226,-56,12,0,0,0.604434 -27260,7105:225,-55,12,0,0,0.60232 -27261,7105:124,-54,12,0,0,0.600744 -27262,7105:123,-53,12,0,0,0.59882 -27263,7105:122,-52,12,0,0,0.596597 -27264,7105:121,-51,12,0,0,0.59583 -27265,7105:120,-50,12,0,0,0.593204 -27266,7104:229,-49,12,0,0,0.588012 -27267,7104:228,-48,12,0,0,0.585646 -27268,7104:227,-47,12,0,0,0.58572 -27269,7104:226,-46,12,0,0,0.583725 -27270,7104:225,-45,12,0,0,0.580125 -27271,7104:124,-44,12,0,0,0.575765 -27272,7104:123,-43,12,0,0,0.575765 -27273,7104:122,-42,12,0,0,0.572046 -27274,7104:121,-41,12,0,0,0.570461 -27275,7104:120,-40,12,0,0,0.568572 -27276,7103:229,-39,12,0,0,0.564485 -27277,7103:228,-38,12,0,0,0.563296 -27278,7103:227,-37,12,0,0,0.562209 -27279,7103:226,-36,12,0,0,0.560515 -27280,7103:225,-35,12,0,0,0.558261 -27281,7103:124,-34,12,0,0,0.558236 -27282,7103:123,-33,12,0,0,0.554482 -27283,7103:122,-32,12,0,0,0.549909 -27284,7103:121,-31,12,0,0,0.546779 -27285,7103:120,-30,12,0,0,0.543748 -27286,7102:229,-29,12,0,0,0.541708 -27287,7102:228,-28,12,0,0,0.539948 -27288,7102:227,-27,12,0,0,0.539156 -27289,7102:226,-26,12,0,0,0.536986 -27290,7102:225,-25,12,0,0,0.534456 -27291,7102:124,-24,12,0,0,0.531259 -27292,7102:123,-23,12,0,0,0.527214 -27293,7102:122,-22,12,0,0,0.522167 -27294,7102:121,-21,12,0,0,0.517551 -27295,7102:120,-20,12,0,0,0.505691 -27296,7101:229,-19,12,0,0,0.500066 -27297,7101:228,-18,12,0,0,0.487739 -27298,1103:227,37,12,0,0,0.632427 -27299,1103:228,38,12,0,0,0.647271 -27300,1106:120,60,12,0,0,0.57985 -27301,1106:121,61,12,0,0,0.58724 -27302,1106:122,62,12,0,0,0.584548 -27303,1106:123,63,12,0,0,0.586144 -27304,1106:124,64,12,0,0,0.579674 -27305,1106:225,65,12,0,0,0.58065 -27306,1106:226,66,12,0,0,0.588808 -27307,1106:227,67,12,0,0,0.603353 -27308,1106:228,68,12,0,0,0.609508 -27309,1106:229,69,12,0,0,0.61256 -27310,1107:122,72,12,0,0,0.617911 -28933,7214:104,-144,20,0,0,0.41528 -27311,1108:228,88,12,0,0,0.582651 -27312,1108:229,89,12,0,0,0.585297 -27313,1109:120,90,12,0,0,0.585771 -27314,1109:121,91,12,0,0,0.573982 -27315,1109:122,92,12,0,0,0.606324 -27316,1110:229,109,12,0,0,0.493105 -27317,1111:120,110,12,0,0,0.47699 -27318,1111:122,112,12,0,0,0.486943 -27319,1111:123,113,12,0,0,0.506924 -27320,1111:124,114,12,0,0,0.524114 -27321,1111:225,115,12,0,0,0.542626 -27322,1111:226,116,12,0,0,0.567084 -27323,1111:227,117,12,0,0,0.575062 -27324,1111:228,118,12,0,0,0.583999 -27325,1111:229,119,12,0,0,0.576417 -27326,1112:120,120,12,0,0,0.572926 -27327,1112:121,121,12,0,0,0.569655 -27328,1112:122,122,12,0,0,0.561375 -27329,1112:123,123,12,0,0,0.556638 -27330,1112:124,124,12,0,0,0.56231 -27331,1112:225,125,12,0,0,0.560135 -27332,1112:226,126,12,0,0,0.5594 -27333,1112:227,127,12,0,0,0.561755 -27334,1112:228,128,12,0,0,0.56958 -27335,1112:229,129,12,0,0,0.576442 -27336,1113:120,130,12,0,0,0.577044 -27337,1113:121,131,12,0,0,0.575639 -27338,1113:122,132,12,0,0,0.580926 -27339,1113:123,133,12,0,0,0.587291 -27340,1113:124,134,12,0,0,0.586618 -27341,1113:225,135,12,0,0,0.593353 -27342,1113:226,136,12,0,0,0.599609 -27343,1113:227,137,12,0,0,0.608799 -27344,1113:228,138,12,0,0,0.60941 -27345,1113:229,139,12,0,0,0.60657 -27346,1114:120,140,12,0,0,0.61373 -27347,1114:121,141,12,0,0,0.611633 -27348,1114:122,142,12,0,0,0.613535 -27349,1114:123,143,12,0,0,0.610827 -27350,1114:124,144,12,0,0,0.612926 -27351,1114:225,145,12,0,0,0.617134 -27352,1114:226,146,12,0,0,0.615798 -27353,1114:227,147,12,0,0,0.613973 -27354,1114:228,148,12,0,0,0.616211 -27355,1114:229,149,12,0,0,0.618032 -27356,1115:120,150,12,0,0,0.619801 -27357,1115:121,151,12,0,0,0.617596 -27358,1115:122,152,12,0,0,0.617887 -27359,1115:123,153,12,0,0,0.616139 -27360,1115:124,154,12,0,0,0.61728 -27361,1115:225,155,12,0,0,0.61626 -27362,1115:226,156,12,0,0,0.615215 -27363,1115:227,157,12,0,0,0.615482 -27364,1115:228,158,12,0,0,0.613584 -27365,1115:229,159,12,0,0,0.613998 -27366,1116:120,160,12,0,0,0.613437 -27367,1116:121,161,12,0,0,0.611219 -27368,1116:122,162,12,0,0,0.609826 -27369,1116:123,163,12,0,0,0.610437 -27370,1116:124,164,12,0,0,0.610999 -27371,1116:225,165,12,0,0,0.606496 -27372,1116:226,166,12,0,0,0.607182 -27373,1116:227,167,12,0,0,0.606472 -27374,1116:228,168,12,0,0,0.607133 -27375,1116:229,169,12,0,0,0.606447 -27376,1117:120,170,12,0,0,0.600103 -27377,1117:121,171,12,0,0,0.596126 -27378,1117:122,172,12,0,0,0.598746 -27379,1117:123,173,12,0,0,0.598968 -27380,1117:124,174,12,0,0,0.597956 -27381,1117:225,175,12,0,0,0.595087 -27382,1117:226,176,12,0,0,0.589952 -27383,1117:227,177,12,0,0,0.584573 -27384,1117:228,178,12,0,0,0.582501 -27385,1117:229,179,12,0,0,0.582876 -27386,1118:120,180,12,0,0,0.583225 -27387,7118:130,-180,13,0,0,0.576392 -27388,7117:239,-179,13,0,0,0.573052 -27389,7117:238,-178,13,0,0,0.571467 -27390,7117:237,-177,13,0,0,0.569428 -27391,7117:236,-176,13,0,0,0.568496 -27392,7117:235,-175,13,0,0,0.568521 -27393,7117:134,-174,13,0,0,0.56456 -27394,7117:133,-173,13,0,0,0.563625 -27395,7117:132,-172,13,0,0,0.561755 -27396,7117:131,-171,13,0,0,0.559805 -27397,7117:130,-170,13,0,0,0.558666 -27398,7116:239,-169,13,0,0,0.550901 -27399,7116:238,-168,13,0,0,0.552756 -27400,7116:237,-167,13,0,0,0.560009 -27401,7116:236,-166,13,0,0,0.552374 -27402,7116:235,-165,13,0,0,0.545659 -27403,7116:134,-164,13,0,0,0.544869 -27404,7116:133,-163,13,0,0,0.550672 -27405,7116:132,-162,13,0,0,0.548307 -27406,7116:131,-161,13,0,0,0.548968 -27407,7116:130,-160,13,0,0,0.548332 -27408,7115:239,-159,13,0,0,0.545022 -27409,7115:238,-158,13,0,0,0.547339 -27410,7115:237,-157,13,0,0,0.547798 -27411,7115:236,-156,13,0,0,0.54548 -27412,7115:235,-155,13,0,0,0.541912 -27413,7115:134,-154,13,0,0,0.540406 -27414,7115:133,-153,13,0,0,0.536449 -27415,7115:132,-152,13,0,0,0.532001 -27416,7115:131,-151,13,0,0,0.527342 -27417,7115:130,-150,13,0,0,0.526548 -27418,7114:239,-149,13,0,0,0.525165 -27419,7114:238,-148,13,0,0,0.521295 -27420,7114:237,-147,13,0,0,0.516165 -27421,7114:236,-146,13,0,0,0.512084 -27422,7114:235,-145,13,0,0,0.507411 -27423,7114:134,-144,13,0,0,0.502891 -27424,7114:133,-143,13,0,0,0.499809 -27425,7114:132,-142,13,0,0,0.49498 -27426,7114:131,-141,13,0,0,0.489665 -27427,7114:130,-140,13,0,0,0.491436 -27428,7113:239,-139,13,0,0,0.484428 -27429,7113:238,-138,13,0,0,0.478836 -27430,7113:237,-137,13,0,0,0.469 -27431,7113:236,-136,13,0,0,0.468181 -27432,7113:235,-135,13,0,0,0.464295 -27433,7113:134,-134,13,0,0,0.466493 -27434,7113:133,-133,13,0,0,0.456306 -27435,7113:132,-132,13,0,0,0.454955 -27436,7113:131,-131,13,0,0,0.450577 -27437,7113:130,-130,13,0,0,0.445597 -27438,7112:239,-129,13,0,0,0.450017 -27439,7112:238,-128,13,0,0,0.44801 -27440,7112:237,-127,13,0,0,0.444176 -27441,7112:236,-126,13,0,0,0.447679 -27442,7112:235,-125,13,0,0,0.448162 -27443,7112:134,-124,13,0,0,0.448568 -27444,7112:133,-123,13,0,0,0.446892 -27445,7112:132,-122,13,0,0,0.446181 -27446,7112:131,-121,13,0,0,0.443187 -27447,7112:130,-120,13,0,0,0.444709 -27448,7111:239,-119,13,0,0,0.447247 -27449,7111:238,-118,13,0,0,0.458014 -27450,7111:237,-117,13,0,0,0.457708 -27451,7111:236,-116,13,0,0,0.463656 -27452,7111:235,-115,13,0,0,0.476401 -27453,7111:134,-114,13,0,0,0.485557 -27454,7111:133,-113,13,0,0,0.489818 -27455,7111:132,-112,13,0,0,0.504253 -27456,7111:131,-111,13,0,0,0.542396 -27457,7111:130,-110,13,0,0,0.571895 -27458,7110:239,-109,13,0,0,0.568395 -27459,7110:238,-108,13,0,0,0.581226 -27460,7110:237,-107,13,0,0,0.592832 -27461,7109:237,-97,13,0,0,0.571995 -27462,7109:236,-96,13,0,0,0.573932 -27463,7109:235,-95,13,0,0,0.576191 -27464,7109:134,-94,13,0,0,0.580401 -27465,7109:133,-93,13,0,0,0.581026 -27466,7109:132,-92,13,0,0,0.580576 -27467,7109:131,-91,13,0,0,0.57955 -27468,7109:130,-90,13,0,0,0.578397 -27469,7108:239,-89,13,0,0,0.581826 -27470,7108:238,-88,13,0,0,0.593502 -27471,7108:237,-87,13,0,0,0.622967 -27472,7108:236,-86,13,0,0,0.61502 -27473,7108:235,-85,13,0,0,0.607844 -27474,7108:134,-84,13,0,0,0.607354 -27475,7107:239,-79,13,0,0,0.602467 -27476,7107:238,-78,13,0,0,0.56779 -27477,7107:237,-77,13,0,0,0.569403 -27478,7107:236,-76,13,0,0,0.586019 -27479,7107:235,-75,13,0,0,0.596843 -27480,7107:134,-74,13,0,0,0.595756 -27481,7107:133,-73,13,0,0,0.598425 -27482,7107:132,-72,13,0,0,0.600793 -27483,7107:131,-71,13,0,0,0.603304 -27484,7107:130,-70,13,0,0,0.606201 -27485,7106:239,-69,13,0,0,0.604533 -27486,7106:238,-68,13,0,0,0.600621 -27487,7106:237,-67,13,0,0,0.601852 -27488,7106:236,-66,13,0,0,0.601803 -27489,7106:235,-65,13,0,0,0.60025 -27490,7106:134,-64,13,0,0,0.601261 -27491,7106:133,-63,13,0,0,0.602049 -27492,7106:132,-62,13,0,0,0.605343 -27493,7106:131,-61,13,0,0,0.606594 -27494,7106:130,-60,13,0,0,0.603525 -27495,7105:239,-59,13,0,0,0.600768 -27496,7105:238,-58,13,0,0,0.603378 -27497,7105:237,-57,13,0,0,0.605171 -27498,7105:236,-56,13,0,0,0.603083 -27499,7105:235,-55,13,0,0,0.598277 -27500,7105:134,-54,13,0,0,0.599042 -27501,7105:133,-53,13,0,0,0.595434 -27502,7105:132,-52,13,0,0,0.591616 -27503,7105:131,-51,13,0,0,0.590549 -27504,7105:130,-50,13,0,0,0.584324 -27505,7104:239,-49,13,0,0,0.582526 -27506,7104:238,-48,13,0,0,0.581126 -27507,7104:237,-47,13,0,0,0.57717 -27508,7104:236,-46,13,0,0,0.575488 -27509,7104:235,-45,13,0,0,0.573781 -27510,7104:134,-44,13,0,0,0.572373 -27511,7104:133,-43,13,0,0,0.571116 -27512,7104:132,-42,13,0,0,0.566529 -27513,7104:131,-41,13,0,0,0.563322 -27514,7104:130,-40,13,0,0,0.561349 -27515,7103:239,-39,13,0,0,0.557932 -27516,7103:238,-38,13,0,0,0.554914 -27517,7103:237,-37,13,0,0,0.551078 -27518,7103:236,-36,13,0,0,0.549833 -27519,7103:235,-35,13,0,0,0.550519 -27520,7103:134,-34,13,0,0,0.549732 -27521,7103:133,-33,13,0,0,0.544512 -27522,7103:132,-32,13,0,0,0.539641 -27523,7103:131,-31,13,0,0,0.539514 -27524,7103:130,-30,13,0,0,0.538543 -27525,7102:239,-29,13,0,0,0.536244 -27526,7102:238,-28,13,0,0,0.534277 -27527,7102:237,-27,13,0,0,0.533894 -27528,7102:236,-26,13,0,0,0.532717 -27529,7102:235,-25,13,0,0,0.531361 -27530,7102:134,-24,13,0,0,0.528315 -27531,7102:133,-23,13,0,0,0.525754 -27532,7102:132,-22,13,0,0,0.519474 -27533,7102:131,-21,13,0,0,0.508772 -27534,7102:130,-20,13,0,0,0.505691 -27535,7101:239,-19,13,0,0,0.485198 -27536,7101:238,-18,13,0,0,0.474838 -27537,7101:237,-17,13,0,0,0.457581 -27538,1103:236,36,13,0,0,0.588311 -27539,1103:237,37,13,0,0,0.622267 -27540,1103:238,38,13,0,0,0.629197 -27541,1106:130,60,13,0,0,0.570864 -27542,1106:131,61,13,0,0,0.57965 -27543,1106:132,62,13,0,0,0.576091 -27544,1106:133,63,13,0,0,0.575363 -27545,1106:134,64,13,0,0,0.576417 -27546,1106:235,65,13,0,0,0.579074 -27547,1106:236,66,13,0,0,0.590499 -27548,1106:237,67,13,0,0,0.596498 -27549,1106:238,68,13,0,0,0.581626 -27550,1111:237,117,13,0,0,0.489434 -27551,1111:238,118,13,0,0,0.498268 -27552,1111:239,119,13,0,0,0.522115 -27553,1112:130,120,13,0,0,0.550951 -27554,1112:132,122,13,0,0,0.56226 -27555,1112:133,123,13,0,0,0.551282 -27556,1112:134,124,13,0,0,0.553898 -27557,1112:235,125,13,0,0,0.548866 -27558,1112:236,126,13,0,0,0.550646 -27559,1112:237,127,13,0,0,0.561046 -27560,1112:238,128,13,0,0,0.568169 -27561,1112:239,129,13,0,0,0.564485 -27562,1113:130,130,13,0,0,0.558615 -27563,1113:131,131,13,0,0,0.557779 -27564,1113:132,132,13,0,0,0.568798 -27565,1113:133,133,13,0,0,0.579049 -27566,1113:134,134,13,0,0,0.573253 -27567,1113:235,135,13,0,0,0.572172 -27568,1113:236,136,13,0,0,0.5837 -27569,1113:237,137,13,0,0,0.592485 -27570,1113:238,138,13,0,0,0.589082 -27571,1113:239,139,13,0,0,0.594617 -27572,1114:130,140,13,0,0,0.597066 -27573,1114:131,141,13,0,0,0.601433 -27574,1114:132,142,13,0,0,0.603648 -27575,1114:133,143,13,0,0,0.603574 -27576,1114:134,144,13,0,0,0.605171 -27577,1114:235,145,13,0,0,0.602443 -27578,1114:236,146,13,0,0,0.604065 -27579,1114:237,147,13,0,0,0.604287 -27580,1114:238,148,13,0,0,0.607329 -27581,1114:239,149,13,0,0,0.609483 -27582,1115:130,150,13,0,0,0.609043 -27583,1115:131,151,13,0,0,0.60804 -27584,1115:132,152,13,0,0,0.603624 -27585,1115:133,153,13,0,0,0.601852 -27586,1115:134,154,13,0,0,0.602984 -27587,1115:235,155,13,0,0,0.602836 -27588,1115:236,156,13,0,0,0.605269 -27589,1115:237,157,13,0,0,0.60728 -27590,1115:238,158,13,0,0,0.609556 -27591,1115:239,159,13,0,0,0.606472 -27592,1116:130,160,13,0,0,0.607697 -27593,1116:131,161,13,0,0,0.605244 -27594,1116:132,162,13,0,0,0.60657 -27595,1116:133,163,13,0,0,0.605441 -27596,1116:134,164,13,0,0,0.604631 -27597,1116:235,165,13,0,0,0.601581 -27598,1116:236,166,13,0,0,0.601286 -27599,1116:237,167,13,0,0,0.598326 -27600,1116:238,168,13,0,0,0.596745 -27601,1116:239,169,13,0,0,0.594096 -27602,1117:130,170,13,0,0,0.595929 -27603,1117:131,171,13,0,0,0.586917 -27604,1117:132,172,13,0,0,0.588236 -27605,1117:133,173,13,0,0,0.588311 -27606,1117:134,174,13,0,0,0.579123 -27607,1117:235,175,13,0,0,0.581151 -27608,1117:236,176,13,0,0,0.583025 -27609,1117:237,177,13,0,0,0.586294 -27610,1117:238,178,13,0,0,0.5835 -27611,1117:239,179,13,0,0,0.58025 -27612,1118:130,180,13,0,0,0.576392 -27613,7118:140,-180,14,0,0,0.567311 -27614,7117:249,-179,14,0,0,0.565191 -27615,7117:248,-178,14,0,0,0.549782 -27616,7117:247,-177,14,0,0,0.558995 -27617,7117:246,-176,14,0,0,0.555877 -27618,7117:245,-175,14,0,0,0.560565 -27619,7117:144,-174,14,0,0,0.548764 -27620,7117:143,-173,14,0,0,0.549732 -27621,7117:142,-172,14,0,0,0.548663 -27622,7117:141,-171,14,0,0,0.551383 -27623,7117:140,-170,14,0,0,0.546601 -27624,7116:249,-169,14,0,0,0.545277 -27625,7116:248,-168,14,0,0,0.539003 -27626,7116:247,-167,14,0,0,0.534865 -27627,7116:246,-166,14,0,0,0.536526 -27628,7116:245,-165,14,0,0,0.533663 -27629,7116:144,-164,14,0,0,0.531156 -27630,7116:143,-163,14,0,0,0.530491 -27631,7116:142,-162,14,0,0,0.532052 -27632,7116:141,-161,14,0,0,0.533075 -27633,7116:140,-160,14,0,0,0.531617 -27634,7115:249,-159,14,0,0,0.529953 -27635,7115:248,-158,14,0,0,0.530491 -27636,7115:247,-157,14,0,0,0.530491 -27637,7115:246,-156,14,0,0,0.527957 -27638,7115:245,-155,14,0,0,0.525294 -27639,7115:144,-154,14,0,0,0.523141 -27640,7115:143,-153,14,0,0,0.5225 -27641,7115:142,-152,14,0,0,0.522372 -27642,7115:141,-151,14,0,0,0.519602 -27643,7115:140,-150,14,0,0,0.517961 -27644,7114:249,-149,14,0,0,0.516755 -27645,7114:248,-148,14,0,0,0.514574 -27646,7114:247,-147,14,0,0,0.514215 -27647,7114:246,-146,14,0,0,0.509209 -27648,7114:245,-145,14,0,0,0.502044 -27649,7114:144,-144,14,0,0,0.496753 -27650,7114:143,-143,14,0,0,0.493953 -27651,7114:142,-142,14,0,0,0.48833 -27652,7114:141,-141,14,0,0,0.485916 -27653,7114:140,-140,14,0,0,0.483376 -27654,7113:249,-139,14,0,0,0.474172 -27655,7113:248,-138,14,0,0,0.466928 -27656,7113:247,-137,14,0,0,0.461919 -27657,7113:246,-136,14,0,0,0.460592 -27658,7113:245,-135,14,0,0,0.453351 -27659,7113:144,-134,14,0,0,0.449941 -27660,7113:143,-133,14,0,0,0.445546 -27661,7113:142,-132,14,0,0,0.443744 -27662,7113:141,-131,14,0,0,0.436403 -27663,7113:140,-130,14,0,0,0.434332 -27664,7112:249,-129,14,0,0,0.434358 -27665,7112:248,-128,14,0,0,0.432112 -27666,7112:247,-127,14,0,0,0.431582 -27667,7112:246,-126,14,0,0,0.43128 -27668,7112:245,-125,14,0,0,0.432566 -27669,7112:144,-124,14,0,0,0.430222 -27670,7112:143,-123,14,0,0,0.430852 -27671,7112:142,-122,14,0,0,0.428888 -27672,7112:141,-121,14,0,0,0.432339 -27673,7112:140,-120,14,0,0,0.430978 -27674,7111:249,-119,14,0,0,0.433802 -27675,7111:248,-118,14,0,0,0.435493 -27676,7111:247,-117,14,0,0,0.448975 -27677,7111:246,-116,14,0,0,0.45386 -27678,7111:245,-115,14,0,0,0.45442 -27679,7111:144,-114,14,0,0,0.467081 -27680,7111:143,-113,14,0,0,0.531924 -27681,7111:142,-112,14,0,0,0.554051 -27682,7111:140,-110,14,0,0,0.568748 -27683,7110:249,-109,14,0,0,0.571518 -27684,7110:248,-108,14,0,0,0.568899 -27685,7109:247,-97,14,0,0,0.567815 -27686,7109:246,-96,14,0,0,0.561122 -27687,7109:245,-95,14,0,0,0.562817 -27688,7109:144,-94,14,0,0,0.568546 -27689,7109:143,-93,14,0,0,0.571518 -27690,7109:142,-92,14,0,0,0.572247 -27691,7109:141,-91,14,0,0,0.569554 -27692,7109:140,-90,14,0,0,0.566251 -27693,7108:249,-89,14,0,0,0.566529 -27694,7108:248,-88,14,0,0,0.586991 -27695,7108:247,-87,14,0,0,0.626508 -27696,7108:246,-86,14,0,0,0.60603 -27697,7108:245,-85,14,0,0,0.607549 -27698,7108:144,-84,14,0,0,0.588236 -27699,7108:143,-83,14,0,0,0.568597 -27700,7108:142,-82,14,0,0,0.572499 -27701,7108:141,-81,14,0,0,0.581801 -27702,7108:140,-80,14,0,0,0.606472 -27703,7107:249,-79,14,0,0,0.544818 -27704,7107:248,-78,14,0,0,0.548714 -27705,7107:247,-77,14,0,0,0.556258 -27706,7107:246,-76,14,0,0,0.591219 -27707,7107:245,-75,14,0,0,0.592782 -27708,7107:144,-74,14,0,0,0.588037 -27709,7107:143,-73,14,0,0,0.586892 -27710,7107:142,-72,14,0,0,0.585521 -27711,7107:141,-71,14,0,0,0.589927 -27712,7107:140,-70,14,0,0,0.586743 -27713,7106:249,-69,14,0,0,0.585222 -27714,7106:248,-68,14,0,0,0.58607 -27715,7106:247,-67,14,0,0,0.586219 -27716,7106:246,-66,14,0,0,0.585446 -27717,7106:245,-65,14,0,0,0.588137 -27718,7106:144,-64,14,0,0,0.586019 -27719,7106:143,-63,14,0,0,0.586717 -27720,7106:142,-62,14,0,0,0.585322 -27721,7106:141,-61,14,0,0,0.583974 -27722,7106:140,-60,14,0,0,0.585546 -27723,7105:249,-59,14,0,0,0.588435 -27724,7105:248,-58,14,0,0,0.587913 -27725,7105:247,-57,14,0,0,0.590077 -27726,7105:246,-56,14,0,0,0.588684 -27727,7105:245,-55,14,0,0,0.591046 -27728,7105:144,-54,14,0,0,0.591815 -27729,7105:143,-53,14,0,0,0.586568 -27730,7105:142,-52,14,0,0,0.58375 -27731,7105:141,-51,14,0,0,0.579574 -27732,7105:140,-50,14,0,0,0.573605 -27733,7104:249,-49,14,0,0,0.572096 -27734,7104:248,-48,14,0,0,0.571442 -27735,7104:247,-47,14,0,0,0.570562 -27736,7104:246,-46,14,0,0,0.566832 -27737,7104:245,-45,14,0,0,0.565519 -27738,7104:144,-44,14,0,0,0.565848 -27739,7104:143,-43,14,0,0,0.562817 -27740,7104:142,-42,14,0,0,0.55745 -27741,7104:141,-41,14,0,0,0.553924 -27742,7104:140,-40,14,0,0,0.5524 -27743,7103:249,-39,14,0,0,0.549833 -27744,7103:248,-38,14,0,0,0.54385 -27745,7103:247,-37,14,0,0,0.543213 -27746,7103:246,-36,14,0,0,0.542218 -27747,7103:245,-35,14,0,0,0.541147 -27748,7103:144,-34,14,0,0,0.539514 -27749,7103:143,-33,14,0,0,0.536117 -27750,7103:142,-32,14,0,0,0.532308 -27751,7103:141,-31,14,0,0,0.528597 -27752,7103:140,-30,14,0,0,0.52806 -27753,7102:249,-29,14,0,0,0.524166 -27754,7102:248,-28,14,0,0,0.523295 -27755,7102:247,-27,14,0,0,0.524909 -27756,7102:246,-26,14,0,0,0.525934 -27757,7102:245,-25,14,0,0,0.523833 -27758,7102:144,-24,14,0,0,0.521372 -27759,7102:143,-23,14,0,0,0.521962 -27760,7102:142,-22,14,0,0,0.517909 -27761,7102:141,-21,14,0,0,0.509671 -27762,7102:140,-20,14,0,0,0.50171 -27763,7101:249,-19,14,0,0,0.495776 -27764,7101:248,-18,14,0,0,0.487431 -27765,7101:247,-17,14,0,0,0.46174 -27766,7101:246,-16,14,0,0,0.43509 -27767,1103:246,36,14,0,0,0.594121 -27768,1103:247,37,14,0,0,0.61808 -27769,1105:142,52,14,0,0,0.551409 -27770,1105:143,53,14,0,0,0.545557 -27771,1105:247,57,14,0,0,0.55712 -27772,1105:248,58,14,0,0,0.561325 -27773,1105:249,59,14,0,0,0.564863 -27774,1106:140,60,14,0,0,0.577144 -27775,1106:141,61,14,0,0,0.570209 -27776,1106:142,62,14,0,0,0.570134 -27777,1106:143,63,14,0,0,0.575012 -27778,1106:144,64,14,0,0,0.579123 -27779,1106:245,65,14,0,0,0.582601 -27780,1106:246,66,14,0,0,0.585122 -27781,1106:247,67,14,0,0,0.553924 -27782,1111:249,119,14,0,0,0.480349 -27783,1112:140,120,14,0,0,0.540432 -27784,1112:142,122,14,0,0,0.559021 -27785,1112:143,123,14,0,0,0.543595 -27786,1112:245,125,14,0,0,0.533663 -27787,1112:246,126,14,0,0,0.539641 -27788,1112:247,127,14,0,0,0.55113 -27789,1112:248,128,14,0,0,0.553569 -27790,1112:249,129,14,0,0,0.553162 -27791,1113:140,130,14,0,0,0.547161 -27792,1113:141,131,14,0,0,0.540636 -27793,1113:142,132,14,0,0,0.539973 -27794,1113:143,133,14,0,0,0.557577 -27795,1113:144,134,14,0,0,0.567033 -27796,1113:245,135,14,0,0,0.564509 -27797,1113:246,136,14,0,0,0.57182 -27798,1113:247,137,14,0,0,0.57041 -27799,1113:248,138,14,0,0,0.57041 -27800,1113:249,139,14,0,0,0.576116 -27801,1114:140,140,14,0,0,0.585147 -27802,1114:141,141,14,0,0,0.582551 -27803,1114:142,142,14,0,0,0.581601 -27804,1114:143,143,14,0,0,0.589505 -27805,1114:144,144,14,0,0,0.594096 -27806,1114:245,145,14,0,0,0.590126 -27807,1114:246,146,14,0,0,0.589828 -27808,1114:247,147,14,0,0,0.596473 -27809,1114:248,148,14,0,0,0.59998 -27810,1114:249,149,14,0,0,0.600891 -27811,1115:140,150,14,0,0,0.598128 -27812,1115:141,151,14,0,0,0.593477 -27813,1115:142,152,14,0,0,0.590325 -27814,1115:143,153,14,0,0,0.587465 -27815,1115:144,154,14,0,0,0.58953 -27816,1115:245,155,14,0,0,0.588336 -27817,1115:246,156,14,0,0,0.593477 -27818,1115:247,157,14,0,0,0.594196 -27819,1115:248,158,14,0,0,0.591517 -27820,1115:249,159,14,0,0,0.590996 -27821,1116:140,160,14,0,0,0.587714 -27822,1116:141,161,14,0,0,0.586917 -27823,1116:142,162,14,0,0,0.590624 -27824,1116:143,163,14,0,0,0.591616 -27825,1116:144,164,14,0,0,0.590126 -27826,1116:245,165,14,0,0,0.588634 -27827,1116:246,166,14,0,0,0.590424 -27828,1116:247,167,14,0,0,0.581751 -27829,1116:248,168,14,0,0,0.589306 -27830,1116:249,169,14,0,0,0.588684 -27831,1117:140,170,14,0,0,0.583201 -27832,1117:141,171,14,0,0,0.578948 -27833,1117:142,172,14,0,0,0.575966 -27834,1117:143,173,14,0,0,0.574459 -27835,1117:144,174,14,0,0,0.566529 -27836,1117:245,175,14,0,0,0.560413 -27837,1117:246,176,14,0,0,0.563828 -27838,1117:247,177,14,0,0,0.561931 -27839,1117:248,178,14,0,0,0.559071 -27840,1117:249,179,14,0,0,0.563397 -27841,1118:140,180,14,0,0,0.567311 -27842,7118:350,-180,15,0,0,0.545149 -27843,7117:459,-179,15,0,0,0.537522 -27844,7117:458,-178,15,0,0,0.535606 -27845,7117:457,-177,15,0,0,0.534174 -27846,7117:456,-176,15,0,0,0.544232 -27847,7117:455,-175,15,0,0,0.54996 -27848,7117:354,-174,15,0,0,0.533944 -27849,7117:353,-173,15,0,0,0.53742 -27850,7117:352,-172,15,0,0,0.531847 -27851,7117:351,-171,15,0,0,0.533151 -27852,7117:350,-170,15,0,0,0.521628 -27853,7116:459,-169,15,0,0,0.529161 -27854,7116:458,-168,15,0,0,0.519397 -27855,7116:457,-167,15,0,0,0.525934 -27856,7116:456,-166,15,0,0,0.522064 -27857,7116:455,-165,15,0,0,0.518089 -27858,7116:354,-164,15,0,0,0.518576 -27859,7116:353,-163,15,0,0,0.516729 -27860,7116:352,-162,15,0,0,0.513471 -27861,7116:351,-161,15,0,0,0.514625 -27862,7116:350,-160,15,0,0,0.512828 -27863,7115:459,-159,15,0,0,0.51519 -27864,7115:458,-158,15,0,0,0.517345 -27865,7115:457,-157,15,0,0,0.51578 -27866,7115:456,-156,15,0,0,0.513522 -27867,7115:455,-155,15,0,0,0.515549 -27868,7115:354,-154,15,0,0,0.513214 -27869,7115:353,-153,15,0,0,0.505562 -27870,7115:352,-152,15,0,0,0.502891 -27871,7115:351,-151,15,0,0,0.502557 -27872,7115:350,-150,15,0,0,0.501273 -27873,7114:459,-149,15,0,0,0.500528 -27874,7114:458,-148,15,0,0,0.498088 -27875,7114:457,-147,15,0,0,0.499526 -27876,7114:456,-146,15,0,0,0.49688 -27877,7114:455,-145,15,0,0,0.489742 -27878,7114:354,-144,15,0,0,0.485814 -27879,7114:353,-143,15,0,0,0.481965 -27880,7114:352,-142,15,0,0,0.475529 -27881,7114:351,-141,15,0,0,0.468975 -27882,7114:350,-140,15,0,0,0.466033 -27883,7113:459,-139,15,0,0,0.463094 -27884,7113:458,-138,15,0,0,0.459137 -27885,7113:457,-137,15,0,0,0.453172 -27886,7113:456,-136,15,0,0,0.447145 -27887,7113:455,-135,15,0,0,0.443871 -27888,7113:354,-134,15,0,0,0.440957 -27889,7113:353,-133,15,0,0,0.440298 -27890,7113:352,-132,15,0,0,0.435519 -27891,7113:351,-131,15,0,0,0.431683 -27892,7113:350,-130,15,0,0,0.426272 -27893,7112:459,-129,15,0,0,0.423461 -27894,7112:458,-128,15,0,0,0.422533 -27895,7112:457,-127,15,0,0,0.422031 -27896,7112:456,-126,15,0,0,0.426021 -27897,7112:455,-125,15,0,0,0.421079 -27898,7112:354,-124,15,0,0,0.416453 -27899,7112:353,-123,15,0,0,0.419227 -27900,7112:352,-122,15,0,0,0.418477 -27901,7112:351,-121,15,0,0,0.413859 -27902,7112:350,-120,15,0,0,0.412787 -27903,7111:459,-119,15,0,0,0.404297 -27904,7111:458,-118,15,0,0,0.405015 -27905,7111:457,-117,15,0,0,0.420929 -27906,7111:456,-116,15,0,0,0.422808 -27907,7111:455,-115,15,0,0,0.43418 -27908,7111:354,-114,15,0,0,0.476631 -27909,7111:353,-113,15,0,0,0.523474 -27910,7111:351,-111,15,0,0,0.553721 -27911,7111:350,-110,15,0,0,0.557805 -27912,7109:457,-97,15,0,0,0.533049 -27913,7109:456,-96,15,0,0,0.559907 -27914,7109:455,-95,15,0,0,0.548993 -27915,7109:354,-94,15,0,0,0.553898 -27916,7109:353,-93,15,0,0,0.560287 -27917,7109:352,-92,15,0,0,0.570662 -27918,7109:351,-91,15,0,0,0.571317 -27919,7109:350,-90,15,0,0,0.569806 -27920,7108:459,-89,15,0,0,0.561856 -27921,7108:458,-88,15,0,0,0.57955 -27922,7108:457,-87,15,0,0,0.614631 -27923,7108:456,-86,15,0,0,0.616211 -27924,7108:455,-85,15,0,0,0.604041 -27925,7108:354,-84,15,0,0,0.543059 -27926,7108:353,-83,15,0,0,0.556715 -27927,7108:352,-82,15,0,0,0.523448 -27928,7108:350,-80,15,0,0,0.580175 -27929,7107:459,-79,15,0,0,0.532103 -27930,7107:458,-78,15,0,0,0.56509 -27931,7107:457,-77,15,0,0,0.593279 -27932,7107:456,-76,15,0,0,0.586618 -27933,7107:455,-75,15,0,0,0.583625 -27934,7107:354,-74,15,0,0,0.574283 -27935,7107:353,-73,15,0,0,0.577144 -27936,7107:352,-72,15,0,0,0.572649 -27937,7107:351,-71,15,0,0,0.574936 -27938,7107:350,-70,15,0,0,0.571568 -27939,7106:459,-69,15,0,0,0.571291 -27940,7106:458,-68,15,0,0,0.57041 -27941,7106:457,-67,15,0,0,0.567387 -27942,7106:456,-66,15,0,0,0.571266 -27943,7106:455,-65,15,0,0,0.575187 -27944,7106:354,-64,15,0,0,0.573153 -27945,7106:353,-63,15,0,0,0.573203 -27946,7106:352,-62,15,0,0,0.575413 -27947,7106:351,-61,15,0,0,0.57031 -27948,7106:350,-60,15,0,0,0.565343 -27949,7105:459,-59,15,0,0,0.572197 -27950,7105:458,-58,15,0,0,0.573253 -27951,7105:457,-57,15,0,0,0.579674 -27952,7105:456,-56,15,0,0,0.582251 -27953,7105:455,-55,15,0,0,0.583874 -27954,7105:354,-54,15,0,0,0.581901 -27955,7105:353,-53,15,0,0,0.581576 -27956,7105:352,-52,15,0,0,0.574409 -27957,7105:351,-51,15,0,0,0.567462 -27958,7105:350,-50,15,0,0,0.564485 -27959,7104:459,-49,15,0,0,0.562387 -27960,7104:458,-48,15,0,0,0.559983 -27961,7104:457,-47,15,0,0,0.555802 -27962,7104:456,-46,15,0,0,0.553594 -27963,7104:455,-45,15,0,0,0.553086 -27964,7104:354,-44,15,0,0,0.551333 -27965,7104:353,-43,15,0,0,0.550011 -27966,7104:352,-42,15,0,0,0.550164 -27967,7104:351,-41,15,0,0,0.548943 -27968,7104:350,-40,15,0,0,0.544614 -27969,7103:459,-39,15,0,0,0.541096 -27970,7103:458,-38,15,0,0,0.539412 -27971,7103:457,-37,15,0,0,0.53627 -27972,7103:456,-36,15,0,0,0.535325 -27973,7103:455,-35,15,0,0,0.533918 -27974,7103:354,-34,15,0,0,0.532333 -27975,7103:353,-33,15,0,0,0.530107 -27976,7103:352,-32,15,0,0,0.527854 -27977,7103:351,-31,15,0,0,0.52414 -27978,7103:350,-30,15,0,0,0.520243 -27979,7102:459,-29,15,0,0,0.517422 -27980,7102:458,-28,15,0,0,0.514856 -27981,7102:457,-27,15,0,0,0.514985 -27982,7102:456,-26,15,0,0,0.513342 -27983,7102:455,-25,15,0,0,0.511417 -27984,7102:354,-24,15,0,0,0.510158 -27985,7102:353,-23,15,0,0,0.511391 -27986,7102:352,-22,15,0,0,0.514574 -27987,7102:351,-21,15,0,0,0.512366 -27988,7102:350,-20,15,0,0,0.509183 -27989,7101:459,-19,15,0,0,0.505383 -27990,7101:458,-18,15,0,0,0.487482 -27991,7101:457,-17,15,0,0,0.477144 -27992,7101:456,-16,15,0,0,0.467184 -27993,7101:455,-15,15,0,0,0.429014 -27994,1103:455,35,15,0,0,0.567639 -27995,1103:456,36,15,0,0,0.597313 -27996,1105:352,52,15,0,0,0.541479 -27997,1105:353,53,15,0,0,0.547721 -27998,1105:354,54,15,0,0,0.559097 -27999,1105:455,55,15,0,0,0.564156 -28000,1105:457,57,15,0,0,0.567891 -28001,1105:458,58,15,0,0,0.569655 -28002,1112:350,120,15,0,0,0.401405 -28003,1112:351,121,15,0,0,0.500888 -28004,1112:352,122,15,0,0,0.512444 -28005,1112:353,123,15,0,0,0.548892 -28006,1112:354,124,15,0,0,0.543161 -28007,1112:455,125,15,0,0,0.537522 -28008,1112:456,126,15,0,0,0.524294 -28009,1112:457,127,15,0,0,0.53512 -28010,1112:458,128,15,0,0,0.536602 -28011,1112:459,129,15,0,0,0.539769 -28012,1113:350,130,15,0,0,0.537854 -28013,1113:351,131,15,0,0,0.529237 -28014,1113:352,132,15,0,0,0.535784 -28015,1113:353,133,15,0,0,0.536142 -28016,1113:354,134,15,0,0,0.540688 -28017,1113:455,135,15,0,0,0.527521 -28018,1113:456,136,15,0,0,0.526318 -28019,1113:457,137,15,0,0,0.545633 -28020,1113:458,138,15,0,0,0.550113 -28021,1113:459,139,15,0,0,0.554102 -28022,1114:350,140,15,0,0,0.551918 -28023,1114:351,141,15,0,0,0.561375 -28024,1114:352,142,15,0,0,0.562589 -28025,1114:353,143,15,0,0,0.560996 -28026,1114:354,144,15,0,0,0.562058 -28027,1114:455,145,15,0,0,0.570486 -28028,1114:456,146,15,0,0,0.575262 -28029,1114:457,147,15,0,0,0.582726 -28030,1114:458,148,15,0,0,0.588361 -28031,1114:459,149,15,0,0,0.58734 -28032,1115:350,150,15,0,0,0.58375 -28033,1115:351,151,15,0,0,0.578197 -28034,1115:352,152,15,0,0,0.576367 -28035,1115:353,153,15,0,0,0.578823 -28036,1115:354,154,15,0,0,0.576944 -28037,1115:455,155,15,0,0,0.576693 -28038,1115:456,156,15,0,0,0.578573 -28039,1115:457,157,15,0,0,0.579525 -28040,1115:458,158,15,0,0,0.578673 -28041,1115:459,159,15,0,0,0.573982 -28042,1116:350,160,15,0,0,0.571845 -28043,1116:351,161,15,0,0,0.571568 -28044,1116:352,162,15,0,0,0.568975 -28045,1116:353,163,15,0,0,0.567538 -28046,1116:354,164,15,0,0,0.568143 -28047,1116:455,165,15,0,0,0.567689 -28048,1116:456,166,15,0,0,0.575563 -28049,1116:457,167,15,0,0,0.575714 -28050,1116:458,168,15,0,0,0.566806 -28051,1116:459,169,15,0,0,0.567992 -28052,1117:350,170,15,0,0,0.571668 -28053,1117:351,171,15,0,0,0.570964 -28054,1117:352,172,15,0,0,0.565772 -28055,1117:353,173,15,0,0,0.563195 -28056,1117:354,174,15,0,0,0.558641 -28057,1117:455,175,15,0,0,0.553035 -28058,1117:456,176,15,0,0,0.545328 -28059,1117:457,177,15,0,0,0.551739 -28060,1117:458,178,15,0,0,0.538313 -28061,1117:459,179,15,0,0,0.535938 -28062,1118:350,180,15,0,0,0.545149 -28063,7118:360,-180,16,0,0,0.52332 -28064,7117:469,-179,16,0,0,0.509953 -28065,7117:468,-178,16,0,0,0.526523 -28066,7117:467,-177,16,0,0,0.520013 -28067,7117:466,-176,16,0,0,0.515934 -28068,7117:465,-175,16,0,0,0.506153 -28069,7117:364,-174,16,0,0,0.513471 -28070,7117:363,-173,16,0,0,0.508207 -28071,7117:362,-172,16,0,0,0.512495 -28072,7117:361,-171,16,0,0,0.509722 -28073,7117:360,-170,16,0,0,0.50004 -28074,7116:469,-169,16,0,0,0.516217 -28075,7116:468,-168,16,0,0,0.491873 -28076,7116:467,-167,16,0,0,0.501247 -28077,7116:466,-166,16,0,0,0.502531 -28078,7116:465,-165,16,0,0,0.50022 -28079,7116:364,-164,16,0,0,0.500246 -28080,7116:363,-163,16,0,0,0.501838 -28081,7116:362,-162,16,0,0,0.49629 -28082,7116:361,-161,16,0,0,0.493311 -28083,7116:360,-160,16,0,0,0.497754 -28084,7115:469,-159,16,0,0,0.497292 -28085,7115:468,-158,16,0,0,0.499835 -28086,7115:467,-157,16,0,0,0.492951 -28087,7115:466,-156,16,0,0,0.491308 -28088,7115:465,-155,16,0,0,0.493748 -28089,7115:364,-154,16,0,0,0.489999 -28090,7115:363,-153,16,0,0,0.490743 -28091,7115:362,-152,16,0,0,0.489973 -28092,7115:361,-151,16,0,0,0.488945 -28093,7115:360,-150,16,0,0,0.489485 -28094,7114:469,-149,16,0,0,0.489999 -28095,7114:468,-148,16,0,0,0.490126 -28096,7114:467,-147,16,0,0,0.486686 -28097,7114:466,-146,16,0,0,0.484197 -28098,7114:465,-145,16,0,0,0.480862 -28099,7114:364,-144,16,0,0,0.476452 -28100,7114:363,-143,16,0,0,0.472174 -28101,7114:362,-142,16,0,0,0.468668 -28102,7114:361,-141,16,0,0,0.466697 -28103,7114:360,-140,16,0,0,0.462455 -28104,7113:469,-139,16,0,0,0.456127 -28105,7113:468,-138,16,0,0,0.450908 -28106,7113:467,-137,16,0,0,0.442908 -28107,7113:466,-136,16,0,0,0.439311 -28108,7113:465,-135,16,0,0,0.433726 -28109,7113:364,-134,16,0,0,0.428183 -28110,7113:363,-133,16,0,0,0.42454 -28111,7113:362,-132,16,0,0,0.421806 -28112,7113:361,-131,16,0,0,0.418152 -28113,7113:360,-130,16,0,0,0.415604 -28114,7112:469,-129,16,0,0,0.414831 -28115,7112:468,-128,16,0,0,0.415679 -28116,7112:467,-127,16,0,0,0.411244 -28117,7112:466,-126,16,0,0,0.406402 -28118,7112:465,-125,16,0,0,0.40405 -28119,7112:364,-124,16,0,0,0.397609 -28120,7112:363,-123,16,0,0,0.391645 -28121,7112:362,-122,16,0,0,0.40101 -28122,7112:361,-121,16,0,0,0.404767 -28123,7112:360,-120,16,0,0,0.407171 -28124,7111:469,-119,16,0,0,0.397068 -28125,7111:468,-118,16,0,0,0.405312 -28126,7111:467,-117,16,0,0,0.408734 -28127,7111:466,-116,16,0,0,0.432364 -28128,7111:465,-115,16,0,0,0.479349 -28129,7111:364,-114,16,0,0,0.499886 -28130,7111:361,-111,16,0,0,0.54181 -28131,7111:360,-110,16,0,0,0.540713 -28132,7109:467,-97,16,0,0,0.514446 -28133,7109:466,-96,16,0,0,0.553492 -28134,7109:465,-95,16,0,0,0.547721 -28135,7109:364,-94,16,0,0,0.549884 -28136,7109:363,-93,16,0,0,0.550722 -28137,7109:362,-92,16,0,0,0.55207 -28138,7109:361,-91,16,0,0,0.567059 -28139,7109:360,-90,16,0,0,0.564787 -28140,7108:469,-89,16,0,0,0.547441 -28141,7108:468,-88,16,0,0,0.547518 -28142,7108:467,-87,16,0,0,0.544538 -28143,7108:466,-86,16,0,0,0.556689 -28144,7108:465,-85,16,0,0,0.536807 -28145,7108:364,-84,16,0,0,0.523859 -28146,7108:363,-83,16,0,0,0.511545 -28147,7108:360,-80,16,0,0,0.574635 -28148,7107:469,-79,16,0,0,0.533331 -28149,7107:468,-78,16,0,0,0.530952 -28150,7107:467,-77,16,0,0,0.579499 -28151,7107:466,-76,16,0,0,0.550875 -28152,7107:465,-75,16,0,0,0.550494 -28153,7107:364,-74,16,0,0,0.552527 -28154,7107:363,-73,16,0,0,0.547518 -28155,7107:362,-72,16,0,0,0.546677 -28156,7107:361,-71,16,0,0,0.54907 -28157,7107:360,-70,16,0,0,0.560338 -28158,7106:469,-69,16,0,0,0.56307 -28159,7106:468,-68,16,0,0,0.558236 -28160,7106:467,-67,16,0,0,0.553239 -28161,7106:466,-66,16,0,0,0.552374 -28162,7106:465,-65,16,0,0,0.562083 -28163,7106:364,-64,16,0,0,0.559603 -28164,7106:363,-63,16,0,0,0.556461 -28165,7106:362,-62,16,0,0,0.555979 -28166,7106:361,-61,16,0,0,0.557095 -28167,7106:360,-60,16,0,0,0.55113 -28168,7105:469,-59,16,0,0,0.547645 -28169,7105:468,-58,16,0,0,0.549477 -28170,7105:467,-57,16,0,0,0.553772 -28171,7105:466,-56,16,0,0,0.558236 -28172,7105:465,-55,16,0,0,0.548078 -28173,7105:364,-54,16,0,0,0.550011 -28174,7105:363,-53,16,0,0,0.558134 -28175,7105:362,-52,16,0,0,0.558083 -28176,7105:361,-51,16,0,0,0.553315 -28177,7105:360,-50,16,0,0,0.546092 -28178,7104:469,-49,16,0,0,0.546168 -28179,7104:468,-48,16,0,0,0.545684 -28180,7104:467,-47,16,0,0,0.543238 -28181,7104:466,-46,16,0,0,0.540688 -28182,7104:465,-45,16,0,0,0.542065 -28183,7104:364,-44,16,0,0,0.544334 -28184,7104:363,-43,16,0,0,0.54232 -28185,7104:362,-42,16,0,0,0.539998 -28186,7104:361,-41,16,0,0,0.538543 -28187,7104:360,-40,16,0,0,0.535376 -28188,7103:469,-39,16,0,0,0.533305 -28189,7103:468,-38,16,0,0,0.531975 -28190,7103:467,-37,16,0,0,0.527188 -28191,7103:466,-36,16,0,0,0.528725 -28192,7103:465,-35,16,0,0,0.522961 -28193,7103:364,-34,16,0,0,0.522193 -28194,7103:363,-33,16,0,0,0.517551 -28195,7103:362,-32,16,0,0,0.510262 -28196,7103:361,-31,16,0,0,0.517987 -28197,7103:360,-30,16,0,0,0.511648 -28198,7102:469,-29,16,0,0,0.509722 -28199,7102:468,-28,16,0,0,0.507077 -28200,7102:467,-27,16,0,0,0.506461 -28201,7102:466,-26,16,0,0,0.503867 -28202,7102:465,-25,16,0,0,0.501145 -28203,7102:364,-24,16,0,0,0.498628 -28204,7102:363,-23,16,0,0,0.499809 -28205,7102:362,-22,16,0,0,0.501632 -28206,7102:361,-21,16,0,0,0.500425 -28207,7102:360,-20,16,0,0,0.498962 -28208,7101:469,-19,16,0,0,0.495391 -28209,7101:468,-18,16,0,0,0.490229 -28210,7101:467,-17,16,0,0,0.485198 -28211,7101:466,-16,16,0,0,0.470075 -28212,7101:465,-15,16,0,0,0.46363 -28213,7101:364,-14,16,0,0,0.434938 -28214,1103:364,34,16,0,0,0.562513 -28215,1103:465,35,16,0,0,0.570335 -28216,1105:360,50,16,0,0,0.524781 -28217,1105:361,51,16,0,0,0.539335 -28218,1105:362,52,16,0,0,0.55113 -28219,1105:363,53,16,0,0,0.557602 -28220,1105:466,56,16,0,0,0.551003 -28221,1112:361,121,16,0,0,0.396798 -28222,1112:362,122,16,0,0,0.488895 -28223,1112:363,123,16,0,0,0.511853 -28224,1112:364,124,16,0,0,0.524985 -28225,1112:465,125,16,0,0,0.507308 -28226,1112:466,126,16,0,0,0.53862 -28227,1112:467,127,16,0,0,0.52514 -28228,1112:468,128,16,0,0,0.527471 -28229,1112:469,129,16,0,0,0.53021 -28230,1113:360,130,16,0,0,0.535223 -28231,1113:361,131,16,0,0,0.526395 -28232,1113:362,132,16,0,0,0.516037 -28233,1113:363,133,16,0,0,0.515472 -28234,1113:364,134,16,0,0,0.504663 -28235,1113:465,135,16,0,0,0.497087 -28236,1113:466,136,16,0,0,0.498113 -28237,1113:467,137,16,0,0,0.507925 -28238,1113:468,138,16,0,0,0.51306 -28239,1113:469,139,16,0,0,0.518038 -28240,1114:360,140,16,0,0,0.516217 -28241,1114:361,141,16,0,0,0.526036 -28242,1114:362,142,16,0,0,0.535223 -28243,1114:363,143,16,0,0,0.535478 -28244,1114:364,144,16,0,0,0.550113 -28245,1114:465,145,16,0,0,0.546372 -28246,1114:466,146,16,0,0,0.554914 -28247,1114:467,147,16,0,0,0.545404 -28248,1114:468,148,16,0,0,0.542346 -28249,1114:469,149,16,0,0,0.551028 -28250,1115:360,150,16,0,0,0.556233 -28251,1115:361,151,16,0,0,0.551078 -28252,1115:362,152,16,0,0,0.550825 -28253,1115:363,153,16,0,0,0.560135 -28254,1115:364,154,16,0,0,0.554914 -28255,1115:465,155,16,0,0,0.557374 -28256,1115:466,156,16,0,0,0.56403 -28257,1115:467,157,16,0,0,0.559704 -28258,1115:468,158,16,0,0,0.560945 -28259,1115:469,159,16,0,0,0.558869 -28260,1116:360,160,16,0,0,0.556309 -28261,1116:361,161,16,0,0,0.558438 -28262,1116:362,162,16,0,0,0.557855 -28263,1116:363,163,16,0,0,0.559578 -28264,1116:364,164,16,0,0,0.556689 -28265,1116:465,165,16,0,0,0.556866 -28266,1116:466,166,16,0,0,0.554305 -28267,1116:467,167,16,0,0,0.551942 -28268,1116:468,168,16,0,0,0.54996 -28269,1116:469,169,16,0,0,0.54818 -28270,1117:360,170,16,0,0,0.545633 -28271,1117:361,171,16,0,0,0.550799 -28272,1117:362,172,16,0,0,0.549451 -28273,1117:363,173,16,0,0,0.542626 -28274,1117:364,174,16,0,0,0.535734 -28275,1117:465,175,16,0,0,0.540406 -28276,1117:466,176,16,0,0,0.542524 -28277,1117:467,177,16,0,0,0.533484 -28278,1117:468,178,16,0,0,0.517756 -28279,1117:469,179,16,0,0,0.522372 -28280,1118:360,180,16,0,0,0.52332 -28281,7118:370,-180,17,0,0,0.489022 -28282,7117:479,-179,17,0,0,0.489022 -28283,7117:478,-178,17,0,0,0.486609 -28284,7117:477,-177,17,0,0,0.484736 -28285,7117:476,-176,17,0,0,0.478862 -28286,7117:475,-175,17,0,0,0.482427 -28287,7117:374,-174,17,0,0,0.485634 -28288,7117:373,-173,17,0,0,0.479733 -28289,7117:372,-172,17,0,0,0.488561 -28290,7117:371,-171,17,0,0,0.47635 -28291,7117:370,-170,17,0,0,0.483658 -28292,7116:479,-169,17,0,0,0.477888 -28293,7116:478,-168,17,0,0,0.470869 -28294,7116:477,-167,17,0,0,0.4804 -28295,7116:476,-166,17,0,0,0.473608 -28296,7116:475,-165,17,0,0,0.482581 -28297,7116:374,-164,17,0,0,0.474018 -28298,7116:373,-163,17,0,0,0.469051 -28299,7116:372,-162,17,0,0,0.481888 -28300,7116:371,-161,17,0,0,0.468872 -28301,7116:370,-160,17,0,0,0.479426 -28302,7115:479,-159,17,0,0,0.479785 -28303,7115:478,-158,17,0,0,0.475094 -28304,7115:477,-157,17,0,0,0.475991 -28305,7115:476,-156,17,0,0,0.474197 -28306,7115:475,-155,17,0,0,0.473199 -28307,7115:374,-154,17,0,0,0.470791 -28308,7115:373,-153,17,0,0,0.473557 -28309,7115:372,-152,17,0,0,0.479913 -28310,7115:371,-151,17,0,0,0.476145 -28311,7115:370,-150,17,0,0,0.476811 -28312,7114:479,-149,17,0,0,0.476888 -28313,7114:478,-148,17,0,0,0.476606 -28314,7114:477,-147,17,0,0,0.47717 -28315,7114:476,-146,17,0,0,0.476504 -28316,7114:475,-145,17,0,0,0.473762 -28317,7114:374,-144,17,0,0,0.47243 -28318,7114:373,-143,17,0,0,0.470101 -28319,7114:372,-142,17,0,0,0.466825 -28320,7114:371,-141,17,0,0,0.460745 -28321,7114:370,-140,17,0,0,0.456586 -28322,7113:479,-139,17,0,0,0.451518 -28323,7113:478,-138,17,0,0,0.446663 -28324,7113:477,-137,17,0,0,0.442477 -28325,7113:476,-136,17,0,0,0.437288 -28326,7113:475,-135,17,0,0,0.432414 -28327,7113:374,-134,17,0,0,0.426222 -28328,7113:373,-133,17,0,0,0.418302 -28329,7113:372,-132,17,0,0,0.41229 -28330,7113:371,-131,17,0,0,0.409355 -28331,7113:370,-130,17,0,0,0.406278 -28332,7112:479,-129,17,0,0,0.401454 -28333,7112:478,-128,17,0,0,0.399703 -28334,7112:477,-127,17,0,0,0.393776 -28335,7112:476,-126,17,0,0,0.390568 -28336,7112:475,-125,17,0,0,0.39358 -28337,7112:374,-124,17,0,0,0.386492 -28338,7112:373,-123,17,0,0,0.379379 -28339,7112:372,-122,17,0,0,0.37595 -28340,7112:371,-121,17,0,0,0.374529 -28341,7112:370,-120,17,0,0,0.37636 -28342,7111:479,-119,17,0,0,0.381922 -28343,7111:478,-118,17,0,0,0.379935 -28344,7111:477,-117,17,0,0,0.384861 -28345,7111:476,-116,17,0,0,0.450908 -28346,7111:475,-115,17,0,0,0.453834 -28347,7111:372,-112,17,0,0,0.521731 -28348,7109:476,-96,17,0,0,0.463962 -28349,7109:475,-95,17,0,0,0.488252 -28350,7109:374,-94,17,0,0,0.498396 -28351,7109:373,-93,17,0,0,0.508875 -28352,7109:372,-92,17,0,0,0.51057 -28353,7109:371,-91,17,0,0,0.513624 -28354,7109:370,-90,17,0,0,0.521654 -28355,7108:479,-89,17,0,0,0.526907 -28356,7108:478,-88,17,0,0,0.525063 -28357,7108:477,-87,17,0,0,0.523397 -28358,7108:476,-86,17,0,0,0.52724 -28359,7108:475,-85,17,0,0,0.498447 -28360,7108:374,-84,17,0,0,0.479913 -28361,7108:373,-83,17,0,0,0.443593 -28362,7108:370,-80,17,0,0,0.559755 -28363,7107:479,-79,17,0,0,0.58734 -28364,7107:478,-78,17,0,0,0.577069 -28365,7107:477,-77,17,0,0,0.574861 -28366,7107:476,-76,17,0,0,0.547543 -28367,7107:475,-75,17,0,0,0.544436 -28368,7107:374,-74,17,0,0,0.543085 -28369,7107:373,-73,17,0,0,0.543697 -28370,7107:372,-72,17,0,0,0.532384 -28371,7107:371,-71,17,0,0,0.540509 -28372,7107:370,-70,17,0,0,0.539973 -28373,7106:479,-69,17,0,0,0.53512 -28374,7106:478,-68,17,0,0,0.541479 -28375,7106:477,-67,17,0,0,0.539258 -28376,7106:476,-66,17,0,0,0.532998 -28377,7106:475,-65,17,0,0,0.533279 -28378,7106:374,-64,17,0,0,0.53558 -28379,7106:373,-63,17,0,0,0.537497 -28380,7106:372,-62,17,0,0,0.540382 -28381,7106:371,-61,17,0,0,0.543672 -28382,7106:370,-60,17,0,0,0.539386 -28383,7105:479,-59,17,0,0,0.534609 -28384,7105:478,-58,17,0,0,0.526318 -28385,7105:477,-57,17,0,0,0.517037 -28386,7105:476,-56,17,0,0,0.521398 -28387,7105:475,-55,17,0,0,0.536551 -28388,7105:374,-54,17,0,0,0.533791 -28389,7105:373,-53,17,0,0,0.525754 -28390,7105:372,-52,17,0,0,0.52724 -28391,7105:371,-51,17,0,0,0.533586 -29690,1212:131,121,23,0,0,0.21556 -28392,7105:370,-50,17,0,0,0.532231 -28393,7104:479,-49,17,0,0,0.523859 -28394,7104:478,-48,17,0,0,0.518731 -28395,7104:477,-47,17,0,0,0.523012 -28396,7104:476,-46,17,0,0,0.526267 -28397,7104:475,-45,17,0,0,0.524243 -28398,7104:374,-44,17,0,0,0.526702 -28399,7104:373,-43,17,0,0,0.527932 -28400,7104:372,-42,17,0,0,0.525088 -28401,7104:371,-41,17,0,0,0.523961 -28402,7104:370,-40,17,0,0,0.517089 -28403,7103:479,-39,17,0,0,0.516139 -28404,7103:478,-38,17,0,0,0.518269 -28405,7103:477,-37,17,0,0,0.514651 -28406,7103:476,-36,17,0,0,0.506975 -28407,7103:475,-35,17,0,0,0.503585 -28408,7103:374,-34,17,0,0,0.501555 -28409,7103:373,-33,17,0,0,0.497703 -28410,7103:372,-32,17,0,0,0.494004 -28411,7103:371,-31,17,0,0,0.493414 -28412,7103:370,-30,17,0,0,0.492438 -28413,7102:479,-29,17,0,0,0.496367 -28414,7102:478,-28,17,0,0,0.494261 -28415,7102:477,-27,17,0,0,0.490743 -28416,7102:476,-26,17,0,0,0.489818 -28417,7102:475,-25,17,0,0,0.490383 -28418,7102:374,-24,17,0,0,0.486686 -28419,7102:373,-23,17,0,0,0.489767 -28420,7102:372,-22,17,0,0,0.490075 -28421,7102:371,-21,17,0,0,0.485198 -28422,7102:370,-20,17,0,0,0.486404 -28423,7101:479,-19,17,0,0,0.487148 -28424,7101:478,-18,17,0,0,0.483402 -28425,7101:476,-16,17,0,0,0.475145 -28426,7101:475,-15,17,0,0,0.470203 -28427,7101:374,-14,17,0,0,0.450959 -28428,7101:373,-13,17,0,0,0.427202 -28429,7101:372,-12,17,0,0,0.411742 -28430,1103:373,33,17,0,0,0.515755 -28431,1104:479,49,17,0,0,0.522833 -28432,1105:370,50,17,0,0,0.539616 -28433,1105:371,51,17,0,0,0.529596 -28434,1112:372,122,17,0,0,0.356164 -28435,1112:373,123,17,0,0,0.445191 -28436,1112:374,124,17,0,0,0.464346 -28437,1112:475,125,17,0,0,0.470126 -28438,1112:476,126,17,0,0,0.506949 -28439,1112:477,127,17,0,0,0.5342 -28440,1112:478,128,17,0,0,0.523833 -28441,1112:479,129,17,0,0,0.521039 -28442,1113:370,130,17,0,0,0.519808 -28443,1113:371,131,17,0,0,0.522833 -28444,1113:372,132,17,0,0,0.522038 -28445,1113:373,133,17,0,0,0.512597 -28446,1113:374,134,17,0,0,0.502403 -28447,1113:475,135,17,0,0,0.49046 -28448,1113:476,136,17,0,0,0.483787 -28449,1113:477,137,17,0,0,0.480785 -28450,1113:478,138,17,0,0,0.48548 -28451,1113:479,139,17,0,0,0.50248 -28452,1114:370,140,17,0,0,0.508952 -28453,1114:371,141,17,0,0,0.516345 -28454,1114:372,142,17,0,0,0.521398 -28455,1114:373,143,17,0,0,0.514933 -28456,1114:374,144,17,0,0,0.512854 -28457,1114:475,145,17,0,0,0.521808 -28458,1114:476,146,17,0,0,0.52414 -28459,1114:477,147,17,0,0,0.511622 -28460,1114:478,148,17,0,0,0.515986 -28461,1114:479,149,17,0,0,0.52765 -28462,1115:370,150,17,0,0,0.525523 -28463,1115:371,151,17,0,0,0.532001 -28464,1115:372,152,17,0,0,0.53351 -28465,1115:373,153,17,0,0,0.531336 -28466,1115:374,154,17,0,0,0.532154 -28467,1115:475,155,17,0,0,0.536168 -28468,1115:476,156,17,0,0,0.533638 -28469,1115:477,157,17,0,0,0.535555 -28470,1115:478,158,17,0,0,0.535862 -28471,1115:479,159,17,0,0,0.536704 -28472,1116:370,160,17,0,0,0.537829 -28473,1116:371,161,17,0,0,0.538569 -28474,1116:372,162,17,0,0,0.53982 -28475,1116:373,163,17,0,0,0.539896 -28476,1116:374,164,17,0,0,0.540738 -28477,1116:475,165,17,0,0,0.536807 -28478,1116:476,166,17,0,0,0.534046 -28479,1116:477,167,17,0,0,0.534813 -28480,1116:478,168,17,0,0,0.533459 -28481,1116:479,169,17,0,0,0.521679 -28482,1117:370,170,17,0,0,0.512597 -28483,1117:371,171,17,0,0,0.520141 -28484,1117:372,172,17,0,0,0.525114 -28485,1117:373,173,17,0,0,0.520526 -28486,1117:374,174,17,0,0,0.508824 -28487,1117:475,175,17,0,0,0.501016 -28488,1117:476,176,17,0,0,0.510596 -28489,1117:477,177,17,0,0,0.506051 -28490,1117:478,178,17,0,0,0.504535 -28491,1117:479,179,17,0,0,0.501838 -28492,1118:370,180,17,0,0,0.489022 -28493,7118:380,-180,18,0,0,0.463707 -28494,7117:489,-179,18,0,0,0.461689 -28495,7117:488,-178,18,0,0,0.456536 -28496,7117:487,-177,18,0,0,0.45702 -28497,7117:486,-176,18,0,0,0.449382 -28498,7117:485,-175,18,0,0,0.44867 -28499,7117:384,-174,18,0,0,0.452179 -28500,7117:383,-173,18,0,0,0.444404 -28501,7117:382,-172,18,0,0,0.443136 -28502,7117:381,-171,18,0,0,0.447171 -28503,7117:380,-170,18,0,0,0.448721 -28504,7116:489,-169,18,0,0,0.445952 -28505,7116:488,-168,18,0,0,0.445267 -28506,7116:487,-167,18,0,0,0.443567 -28507,7116:486,-166,18,0,0,0.440957 -28508,7116:485,-165,18,0,0,0.441084 -28509,7116:384,-164,18,0,0,0.444379 -28510,7116:383,-163,18,0,0,0.443795 -28511,7116:382,-162,18,0,0,0.448086 -28512,7116:381,-161,18,0,0,0.452358 -28513,7116:380,-160,18,0,0,0.453784 -28514,7115:489,-159,18,0,0,0.44984 -28515,7115:488,-158,18,0,0,0.44585 -28516,7115:487,-157,18,0,0,0.446841 -28517,7115:486,-156,18,0,0,0.451671 -28518,7115:485,-155,18,0,0,0.451035 -28519,7115:384,-154,18,0,0,0.452816 -28520,7115:383,-153,18,0,0,0.452562 -28521,7115:382,-152,18,0,0,0.451009 -28522,7115:381,-151,18,0,0,0.446993 -28523,7115:380,-150,18,0,0,0.452587 -28524,7114:489,-149,18,0,0,0.45952 -28525,7114:488,-148,18,0,0,0.455975 -28526,7114:487,-147,18,0,0,0.452179 -28527,7114:486,-146,18,0,0,0.456179 -28528,7114:485,-145,18,0,0,0.449407 -28529,7114:384,-144,18,0,0,0.45045 -28530,7114:383,-143,18,0,0,0.447272 -28531,7114:382,-142,18,0,0,0.445369 -28532,7114:381,-141,18,0,0,0.441008 -28533,7114:380,-140,18,0,0,0.438173 -28534,7113:489,-139,18,0,0,0.43239 -28535,7113:488,-138,18,0,0,0.428712 -28536,7113:487,-137,18,0,0,0.42665 -28537,7113:486,-136,18,0,0,0.422984 -28538,7113:485,-135,18,0,0,0.419102 -28539,7113:384,-134,18,0,0,0.412912 -28540,7113:383,-133,18,0,0,0.410896 -28541,7113:382,-132,18,0,0,0.407022 -28542,7113:381,-131,18,0,0,0.402541 -28543,7113:380,-130,18,0,0,0.398841 -28544,7112:489,-129,18,0,0,0.392772 -28545,7112:488,-128,18,0,0,0.38384 -28546,7112:487,-127,18,0,0,0.377566 -28547,7112:486,-126,18,0,0,0.377711 -28548,7112:485,-125,18,0,0,0.381219 -28549,7112:384,-124,18,0,0,0.377277 -28550,7112:383,-123,18,0,0,0.373158 -28551,7112:382,-122,18,0,0,0.372413 -28552,7112:381,-121,18,0,0,0.370901 -28553,7112:380,-120,18,0,0,0.366215 -28554,7111:489,-119,18,0,0,0.372053 -28555,7111:488,-118,18,0,0,0.367719 -28556,7111:487,-117,18,0,0,0.374866 -28557,7111:486,-116,18,0,0,0.424239 -28558,7111:383,-113,18,0,0,0.505793 -28559,7109:384,-94,18,0,0,0.382674 -28560,7109:383,-93,18,0,0,0.385299 -28561,7109:382,-92,18,0,0,0.39412 -28562,7108:489,-89,18,0,0,0.428561 -28563,7108:488,-88,18,0,0,0.486327 -28564,7108:487,-87,18,0,0,0.51021 -28565,7108:486,-86,18,0,0,0.478452 -28566,7108:485,-85,18,0,0,0.42567 -28567,7108:384,-84,18,0,0,0.429215 -28568,7108:381,-81,18,0,0,0.498859 -28569,7108:380,-80,18,0,0,0.566024 -28570,7107:489,-79,18,0,0,0.557932 -28571,7107:488,-78,18,0,0,0.550951 -28572,7107:487,-77,18,0,0,0.551383 -28573,7107:486,-76,18,0,0,0.55273 -28574,7107:485,-75,18,0,0,0.539437 -28575,7107:384,-74,18,0,0,0.52957 -28576,7107:383,-73,18,0,0,0.52875 -28577,7107:382,-72,18,0,0,0.526753 -28578,7107:381,-71,18,0,0,0.526779 -28579,7107:380,-70,18,0,0,0.526241 -28580,7106:489,-69,18,0,0,0.521757 -28581,7106:488,-68,18,0,0,0.518602 -28582,7106:487,-67,18,0,0,0.517551 -28583,7106:486,-66,18,0,0,0.523986 -28584,7106:485,-65,18,0,0,0.521731 -28585,7106:384,-64,18,0,0,0.518987 -28586,7106:383,-63,18,0,0,0.520526 -28587,7106:382,-62,18,0,0,0.517525 -28588,7106:381,-61,18,0,0,0.512957 -28589,7106:380,-60,18,0,0,0.512521 -28590,7105:489,-59,18,0,0,0.514471 -28591,7105:488,-58,18,0,0,0.507668 -28592,7105:487,-57,18,0,0,0.503302 -28593,7105:486,-56,18,0,0,0.506512 -28594,7105:485,-55,18,0,0,0.505819 -28595,7105:384,-54,18,0,0,0.500246 -28596,7105:383,-53,18,0,0,0.504227 -28597,7105:382,-52,18,0,0,0.507848 -28598,7105:381,-51,18,0,0,0.507694 -28599,7105:380,-50,18,0,0,0.505023 -28600,7104:489,-49,18,0,0,0.501915 -28601,7104:488,-48,18,0,0,0.504637 -28602,7104:487,-47,18,0,0,0.50623 -28603,7104:486,-46,18,0,0,0.505152 -28604,7104:485,-45,18,0,0,0.508978 -28605,7104:384,-44,18,0,0,0.513573 -28606,7104:383,-43,18,0,0,0.511674 -28607,7104:382,-42,18,0,0,0.507489 -31960,7313:466,-136,36,0,0,0.20022 -28608,7104:381,-41,18,0,0,0.506359 -28609,7104:380,-40,18,0,0,0.497009 -28610,7103:489,-39,18,0,0,0.502326 -28611,7103:488,-38,18,0,0,0.500297 -28612,7103:487,-37,18,0,0,0.4976 -28613,7103:486,-36,18,0,0,0.496367 -28614,7103:485,-35,18,0,0,0.490666 -28615,7103:384,-34,18,0,0,0.48679 -28616,7103:383,-33,18,0,0,0.486456 -28617,7103:382,-32,18,0,0,0.48235 -28618,7103:381,-31,18,0,0,0.480503 -28619,7103:380,-30,18,0,0,0.480836 -28620,7102:489,-29,18,0,0,0.480169 -28621,7102:488,-28,18,0,0,0.478708 -28622,7102:487,-27,18,0,0,0.480042 -28623,7102:486,-26,18,0,0,0.48117 -28624,7102:485,-25,18,0,0,0.475914 -28625,7102:384,-24,18,0,0,0.476324 -28626,7102:383,-23,18,0,0,0.478785 -28627,7102:382,-22,18,0,0,0.474479 -28628,7102:381,-21,18,0,0,0.473967 -28629,7102:380,-20,18,0,0,0.474582 -28630,7101:489,-19,18,0,0,0.471637 -28631,7101:488,-18,18,0,0,0.47266 -28632,7101:487,-17,18,0,0,0.474377 -28633,7101:486,-16,18,0,0,0.472993 -28634,7101:485,-15,18,0,0,0.46854 -28635,7101:384,-14,18,0,0,0.463707 -28636,7101:383,-13,18,0,0,0.461434 -28637,7101:382,-12,18,0,0,0.453555 -28638,7101:381,-11,18,0,0,0.444151 -28639,1104:488,48,18,0,0,0.469921 -28640,1104:489,49,18,0,0,0.510518 -28641,1105:380,50,18,0,0,0.523781 -28642,1112:383,123,18,0,0,0.340494 -28643,1112:384,124,18,0,0,0.433827 -28644,1112:485,125,18,0,0,0.423009 -28645,1112:486,126,18,0,0,0.442731 -28646,1112:487,127,18,0,0,0.496753 -28647,1112:488,128,18,0,0,0.532077 -28648,1112:489,129,18,0,0,0.52519 -28649,1113:380,130,18,0,0,0.5225 -28650,1113:381,131,18,0,0,0.525063 -28651,1113:382,132,18,0,0,0.522731 -28652,1113:383,133,18,0,0,0.502968 -28653,1113:384,134,18,0,0,0.467286 -28654,1113:485,135,18,0,0,0.490101 -28655,1113:486,136,18,0,0,0.489151 -28656,1113:487,137,18,0,0,0.464601 -28657,1113:488,138,18,0,0,0.464295 -28658,1113:489,139,18,0,0,0.480169 -28659,1114:380,140,18,0,0,0.487046 -28660,1114:381,141,18,0,0,0.505177 -28661,1114:382,142,18,0,0,0.508028 -28662,1114:383,143,18,0,0,0.499963 -28663,1114:384,144,18,0,0,0.500605 -28664,1114:485,145,18,0,0,0.501555 -28665,1114:486,146,18,0,0,0.514549 -28666,1114:487,147,18,0,0,0.50659 -28667,1114:488,148,18,0,0,0.498962 -28668,1114:489,149,18,0,0,0.498165 -28669,1115:380,150,18,0,0,0.500271 -28670,1115:381,151,18,0,0,0.503508 -28671,1115:382,152,18,0,0,0.504098 -28672,1115:383,153,18,0,0,0.508053 -28673,1115:384,154,18,0,0,0.510544 -28674,1115:485,155,18,0,0,0.505665 -28675,1115:486,156,18,0,0,0.501863 -28676,1115:487,157,18,0,0,0.502378 -28677,1115:488,158,18,0,0,0.504355 -28678,1115:489,159,18,0,0,0.502454 -28679,1116:380,160,18,0,0,0.502095 -28680,1116:381,161,18,0,0,0.502814 -28681,1116:382,162,18,0,0,0.501941 -28682,1116:383,163,18,0,0,0.500322 -28683,1116:384,164,18,0,0,0.498987 -28684,1116:485,165,18,0,0,0.505665 -28685,1116:486,166,18,0,0,0.508207 -28686,1116:487,167,18,0,0,0.504869 -28687,1116:488,168,18,0,0,0.498653 -28688,1116:489,169,18,0,0,0.489382 -28689,1117:380,170,18,0,0,0.480375 -28690,1117:381,171,18,0,0,0.480759 -28691,1117:382,172,18,0,0,0.480785 -28692,1117:383,173,18,0,0,0.481272 -28693,1117:384,174,18,0,0,0.474658 -28694,1117:485,175,18,0,0,0.471099 -28695,1117:486,176,18,0,0,0.487226 -28696,1117:487,177,18,0,0,0.479272 -28697,1117:488,178,18,0,0,0.47179 -28698,1117:489,179,18,0,0,0.465189 -28699,1118:380,180,18,0,0,0.463707 -28700,7118:390,-180,19,0,0,0.439235 -28701,7117:499,-179,19,0,0,0.42768 -28702,7117:498,-178,19,0,0,0.435847 -28703,7117:497,-177,19,0,0,0.426499 -28704,7117:496,-176,19,0,0,0.42758 -28705,7117:495,-175,19,0,0,0.420879 -28706,7117:394,-174,19,0,0,0.418577 -28707,7117:393,-173,19,0,0,0.418802 -28708,7117:392,-172,19,0,0,0.41533 -28709,7117:391,-171,19,0,0,0.418802 -28710,7117:390,-170,19,0,0,0.417277 -28711,7116:499,-169,19,0,0,0.418277 -28712,7116:498,-168,19,0,0,0.41346 -28713,7116:497,-167,19,0,0,0.414482 -28714,7116:496,-166,19,0,0,0.414382 -28715,7116:495,-165,19,0,0,0.418802 -28716,7116:394,-164,19,0,0,0.424264 -28717,7116:393,-163,19,0,0,0.415879 -28718,7116:392,-162,19,0,0,0.411742 -28719,7116:391,-161,19,0,0,0.413759 -28720,7116:390,-160,19,0,0,0.419828 -28721,7115:499,-159,19,0,0,0.425519 -28722,7115:498,-158,19,0,0,0.423862 -28723,7115:497,-157,19,0,0,0.426926 -28724,7115:496,-156,19,0,0,0.429744 -28725,7115:495,-155,19,0,0,0.42577 -28726,7115:394,-154,19,0,0,0.418777 -28727,7115:393,-153,19,0,0,0.421305 -28728,7115:392,-152,19,0,0,0.430222 -28729,7115:391,-151,19,0,0,0.43307 -28730,7115:390,-150,19,0,0,0.429895 -28731,7114:499,-149,19,0,0,0.430776 -28732,7114:498,-148,19,0,0,0.432188 -28733,7114:497,-147,19,0,0,0.434307 -28734,7114:496,-146,19,0,0,0.435695 -28735,7114:495,-145,19,0,0,0.436504 -28736,7114:394,-144,19,0,0,0.4384 -28737,7114:393,-143,19,0,0,0.437313 -28738,7114:392,-142,19,0,0,0.434837 -28739,7114:391,-141,19,0,0,0.424916 -28740,7114:390,-140,19,0,0,0.42341 -28741,7113:499,-139,19,0,0,0.424163 -28742,7113:498,-138,19,0,0,0.423862 -28743,7113:497,-137,19,0,0,0.421631 -28744,7113:496,-136,19,0,0,0.416328 -28745,7113:495,-135,19,0,0,0.407766 -28746,7113:394,-134,19,0,0,0.399457 -28747,7113:393,-133,19,0,0,0.394316 -28748,7113:392,-132,19,0,0,0.393458 -28749,7113:391,-131,19,0,0,0.391816 -28750,7113:390,-130,19,0,0,0.390691 -28751,7112:499,-129,19,0,0,0.383646 -28752,7112:498,-128,19,0,0,0.371957 -28753,7112:497,-127,19,0,0,0.369608 -28754,7112:496,-126,19,0,0,0.364809 -28755,7112:495,-125,19,0,0,0.357343 -28756,7112:394,-124,19,0,0,0.349875 -28757,7112:393,-123,19,0,0,0.345797 -28758,7112:392,-122,19,0,0,0.339249 -28759,7112:391,-121,19,0,0,0.344264 -28760,7112:390,-120,19,0,0,0.349454 -28761,7111:499,-119,19,0,0,0.350764 -28762,7111:498,-118,19,0,0,0.361933 -28763,7111:497,-117,19,0,0,0.370207 -28764,7111:394,-114,19,0,0,0.49647 -28765,7108:391,-81,19,0,0,0.455363 -28766,7108:390,-80,19,0,0,0.517756 -28767,7107:499,-79,19,0,0,0.576567 -28768,7107:498,-78,19,0,0,0.558869 -28769,7107:497,-77,19,0,0,0.549732 -28770,7107:496,-76,19,0,0,0.555599 -28771,7107:495,-75,19,0,0,0.536602 -28772,7107:394,-74,19,0,0,0.516781 -28773,7107:393,-73,19,0,0,0.510749 -28774,7107:392,-72,19,0,0,0.518269 -28775,7107:391,-71,19,0,0,0.521731 -28776,7107:390,-70,19,0,0,0.518038 -28777,7106:499,-69,19,0,0,0.512521 -28778,7106:498,-68,19,0,0,0.508644 -28779,7106:497,-67,19,0,0,0.505717 -28780,7106:496,-66,19,0,0,0.503919 -28781,7106:495,-65,19,0,0,0.504124 -28782,7106:394,-64,19,0,0,0.50546 -28783,7106:393,-63,19,0,0,0.499089 -28784,7106:392,-62,19,0,0,0.496572 -28785,7106:391,-61,19,0,0,0.498268 -28786,7106:390,-60,19,0,0,0.491821 -28787,7105:499,-59,19,0,0,0.488432 -28788,7105:498,-58,19,0,0,0.485763 -28789,7105:497,-57,19,0,0,0.486225 -28790,7105:496,-56,19,0,0,0.484788 -28791,7105:495,-55,19,0,0,0.486635 -28792,7105:394,-54,19,0,0,0.486584 -28793,7105:393,-53,19,0,0,0.482504 -28794,7105:392,-52,19,0,0,0.478118 -28795,7105:391,-51,19,0,0,0.471969 -28796,7105:390,-50,19,0,0,0.473352 -28797,7104:499,-49,19,0,0,0.475376 -28798,7104:498,-48,19,0,0,0.481426 -28799,7104:497,-47,19,0,0,0.485019 -28800,7104:496,-46,19,0,0,0.479836 -28801,7104:495,-45,19,0,0,0.476171 -28802,7104:394,-44,19,0,0,0.486147 -28803,7104:393,-43,19,0,0,0.485275 -28804,7104:392,-42,19,0,0,0.48566 -28805,7104:391,-41,19,0,0,0.48625 -28806,7104:390,-40,19,0,0,0.486378 -28807,7103:499,-39,19,0,0,0.483042 -28808,7103:498,-38,19,0,0,0.475094 -28809,7103:497,-37,19,0,0,0.475581 -28810,7103:496,-36,19,0,0,0.476631 -28811,7103:495,-35,19,0,0,0.467721 -28812,7103:394,-34,19,0,0,0.468437 -28813,7103:393,-33,19,0,0,0.468488 -28814,7103:392,-32,19,0,0,0.471559 -28815,7103:391,-31,19,0,0,0.462328 -28816,7103:390,-30,19,0,0,0.460515 -28817,7102:499,-29,19,0,0,0.468872 -28818,7102:498,-28,19,0,0,0.462992 -28819,7102:497,-27,19,0,0,0.4598 -28820,7102:496,-26,19,0,0,0.458193 -28821,7102:495,-25,19,0,0,0.462915 -28822,7102:394,-24,19,0,0,0.465266 -28823,7102:393,-23,19,0,0,0.461204 -28824,7102:392,-22,19,0,0,0.457658 -28825,7102:391,-21,19,0,0,0.458116 -28826,7102:390,-20,19,0,0,0.460413 -28827,7101:499,-19,19,0,0,0.462123 -28828,7101:498,-18,19,0,0,0.460413 -28829,7101:497,-17,19,0,0,0.458448 -28830,7101:496,-16,19,0,0,0.454344 -28831,7101:495,-15,19,0,0,0.453427 -28832,7101:394,-14,19,0,0,0.450322 -28833,7101:393,-13,19,0,0,0.450069 -28834,7101:392,-12,19,0,0,0.443086 -28835,7101:391,-11,19,0,0,0.434408 -28836,1101:498,18,19,0,0,0.443922 -28837,1101:499,19,19,0,0,0.453809 -28838,1102:499,29,19,0,0,0.42123 -28839,1112:393,123,19,0,0,0.298907 -28840,1112:394,124,19,0,0,0.414731 -28841,1112:495,125,19,0,0,0.40846 -28842,1112:496,126,19,0,0,0.410647 -28843,1112:497,127,19,0,0,0.443086 -28844,1112:498,128,19,0,0,0.50623 -28845,1112:499,129,19,0,0,0.514805 -28846,1113:390,130,19,0,0,0.500477 -28847,1113:391,131,19,0,0,0.504894 -28848,1113:392,132,19,0,0,0.5205 -28849,1113:393,133,19,0,0,0.508028 -28850,1113:394,134,19,0,0,0.46432 -28851,1113:495,135,19,0,0,0.456255 -28852,1113:496,136,19,0,0,0.469384 -28853,1113:497,137,19,0,0,0.457938 -28854,1113:498,138,19,0,0,0.457351 -28855,1113:499,139,19,0,0,0.464781 -28856,1114:390,140,19,0,0,0.479708 -28857,1114:391,141,19,0,0,0.480785 -28858,1114:392,142,19,0,0,0.480811 -28859,1114:393,143,19,0,0,0.485711 -28860,1114:394,144,19,0,0,0.495288 -28861,1114:495,145,19,0,0,0.493722 -28862,1114:496,146,19,0,0,0.491154 -28863,1114:497,147,19,0,0,0.489177 -28864,1114:498,148,19,0,0,0.489279 -28865,1114:499,149,19,0,0,0.492694 -28866,1115:390,150,19,0,0,0.49236 -28867,1115:391,151,19,0,0,0.491128 -28868,1115:392,152,19,0,0,0.491462 -28869,1115:393,153,19,0,0,0.48951 -28870,1115:394,154,19,0,0,0.484915 -28871,1115:495,155,19,0,0,0.484659 -28872,1115:496,156,19,0,0,0.486378 -28873,1115:497,157,19,0,0,0.487072 -28874,1115:498,158,19,0,0,0.483273 -28875,1115:499,159,19,0,0,0.478426 -28876,1116:390,160,19,0,0,0.473301 -28877,1116:391,161,19,0,0,0.467388 -28878,1116:392,162,19,0,0,0.470996 -28879,1116:393,163,19,0,0,0.475017 -28880,1116:394,164,19,0,0,0.474325 -28881,1116:495,165,19,0,0,0.468437 -28882,1116:496,166,19,0,0,0.46749 -28883,1116:497,167,19,0,0,0.465036 -28884,1116:498,168,19,0,0,0.460642 -28885,1116:499,169,19,0,0,0.460719 -28886,1117:390,170,19,0,0,0.453249 -28887,1117:391,171,19,0,0,0.454472 -28888,1117:392,172,19,0,0,0.456408 -28889,1117:393,173,19,0,0,0.450577 -28890,1117:394,174,19,0,0,0.449763 -28891,1117:495,175,19,0,0,0.442072 -28892,1117:496,176,19,0,0,0.44613 -28893,1117:497,177,19,0,0,0.434736 -28894,1117:498,178,19,0,0,0.439741 -28895,1117:499,179,19,0,0,0.440223 -28896,1118:390,180,19,0,0,0.439235 -28897,7218:100,-180,20,0,0,0.407369 -28898,7217:209,-179,20,0,0,0.40259 -28899,7217:208,-178,20,0,0,0.391841 -28900,7217:207,-177,20,0,0,0.394709 -28901,7217:206,-176,20,0,0,0.389493 -28902,7217:205,-175,20,0,0,0.390471 -28903,7217:104,-174,20,0,0,0.392233 -28904,7217:103,-173,20,0,0,0.395053 -28905,7217:102,-172,20,0,0,0.396208 -28906,7217:101,-171,20,0,0,0.395544 -28907,7217:100,-170,20,0,0,0.396085 -28908,7216:209,-169,20,0,0,0.389981 -28909,7216:208,-168,20,0,0,0.379621 -28910,7216:207,-167,20,0,0,0.382747 -28911,7216:206,-166,20,0,0,0.38964 -28912,7216:205,-165,20,0,0,0.393384 -28913,7216:104,-164,20,0,0,0.395912 -28914,7216:103,-163,20,0,0,0.39788 -28915,7216:102,-162,20,0,0,0.395691 -28916,7216:101,-161,20,0,0,0.374962 -28917,7216:100,-160,20,0,0,0.40027 -28918,7215:209,-159,20,0,0,0.389127 -28919,7215:208,-158,20,0,0,0.403579 -28920,7215:207,-157,20,0,0,0.406402 -28921,7215:206,-156,20,0,0,0.401356 -28922,7215:205,-155,20,0,0,0.399086 -28923,7215:104,-154,20,0,0,0.40665 -28924,7215:103,-153,20,0,0,0.400368 -28925,7215:102,-152,20,0,0,0.41107 -28926,7215:101,-151,20,0,0,0.415604 -28927,7215:100,-150,20,0,0,0.416203 -28928,7214:209,-149,20,0,0,0.417802 -28929,7214:208,-148,20,0,0,0.415854 -28930,7214:207,-147,20,0,0,0.422733 -28931,7214:206,-146,20,0,0,0.427454 -28932,7214:205,-145,20,0,0,0.422533 -28934,7214:103,-143,20,0,0,0.415429 -28935,7214:102,-142,20,0,0,0.412165 -28936,7214:101,-141,20,0,0,0.411518 -28937,7214:100,-140,20,0,0,0.408635 -28938,7213:209,-139,20,0,0,0.408709 -28939,7213:208,-138,20,0,0,0.409355 -28940,7213:207,-137,20,0,0,0.405287 -28941,7213:206,-136,20,0,0,0.401504 -28942,7213:205,-135,20,0,0,0.392453 -28943,7213:104,-134,20,0,0,0.390397 -28944,7213:103,-133,20,0,0,0.387564 -28945,7213:102,-132,20,0,0,0.384034 -28946,7213:101,-131,20,0,0,0.376794 -28947,7213:100,-130,20,0,0,0.370351 -28948,7212:209,-129,20,0,0,0.360345 -28949,7212:208,-128,20,0,0,0.3451 -28950,7212:207,-127,20,0,0,0.348008 -28951,7212:206,-126,20,0,0,0.338995 -28952,7212:205,-125,20,0,0,0.331987 -28953,7212:104,-124,20,0,0,0.334658 -28954,7212:103,-123,20,0,0,0.327831 -28955,7212:102,-122,20,0,0,0.331349 -28956,7212:101,-121,20,0,0,0.331053 -28957,7212:100,-120,20,0,0,0.339571 -28958,7211:209,-119,20,0,0,0.348591 -28959,7211:208,-118,20,0,0,0.355976 -28960,7211:207,-117,20,0,0,0.351981 -28961,7208:100,-80,20,0,0,0.440172 -28962,7207:209,-79,20,0,0,0.506821 -28963,7207:208,-78,20,0,0,0.537854 -28964,7207:207,-77,20,0,0,0.565494 -28965,7207:206,-76,20,0,0,0.565797 -28966,7207:205,-75,20,0,0,0.540764 -28967,7207:104,-74,20,0,0,0.508002 -28968,7207:103,-73,20,0,0,0.512546 -28969,7207:102,-72,20,0,0,0.5004 -28970,7207:101,-71,20,0,0,0.511314 -28971,7207:100,-70,20,0,0,0.514625 -28972,7206:209,-69,20,0,0,0.509337 -28973,7206:208,-68,20,0,0,0.505844 -28974,7206:207,-67,20,0,0,0.500811 -28975,7206:206,-66,20,0,0,0.494158 -28976,7206:205,-65,20,0,0,0.491154 -28977,7206:104,-64,20,0,0,0.487482 -28978,7206:103,-63,20,0,0,0.486481 -28979,7206:102,-62,20,0,0,0.484813 -28980,7206:101,-61,20,0,0,0.4804 -28981,7206:100,-60,20,0,0,0.47817 -28982,7205:209,-59,20,0,0,0.477119 -28983,7205:208,-58,20,0,0,0.473583 -28984,7205:207,-57,20,0,0,0.472379 -28985,7205:206,-56,20,0,0,0.472455 -28986,7205:205,-55,20,0,0,0.471099 -28987,7205:104,-54,20,0,0,0.468642 -28988,7205:103,-53,20,0,0,0.465905 -28989,7205:102,-52,20,0,0,0.463273 -28990,7205:101,-51,20,0,0,0.459545 -28991,7205:100,-50,20,0,0,0.460056 -28992,7204:209,-49,20,0,0,0.461025 -28993,7204:208,-48,20,0,0,0.463758 -28994,7204:207,-47,20,0,0,0.460642 -28995,7204:206,-46,20,0,0,0.451035 -28996,7204:205,-45,20,0,0,0.452663 -28997,7204:104,-44,20,0,0,0.45804 -28998,7204:103,-43,20,0,0,0.466391 -28999,7204:102,-42,20,0,0,0.463273 -29000,7204:101,-41,20,0,0,0.468335 -29001,7204:100,-40,20,0,0,0.472507 -29002,7203:209,-39,20,0,0,0.469486 -29003,7203:208,-38,20,0,0,0.463273 -29004,7203:207,-37,20,0,0,0.454191 -29005,7203:206,-36,20,0,0,0.450272 -29006,7203:205,-35,20,0,0,0.45493 -29007,7203:104,-34,20,0,0,0.457862 -29008,7203:103,-33,20,0,0,0.456586 -29009,7203:102,-32,20,0,0,0.451264 -29010,7203:101,-31,20,0,0,0.447755 -29011,7203:100,-30,20,0,0,0.448899 -29012,7202:209,-29,20,0,0,0.449483 -29013,7202:208,-28,20,0,0,0.454981 -29014,7202:207,-27,20,0,0,0.447755 -29015,7202:206,-26,20,0,0,0.440881 -29016,7202:205,-25,20,0,0,0.444379 -29017,7202:104,-24,20,0,0,0.452205 -29018,7202:103,-23,20,0,0,0.448238 -29019,7202:102,-22,20,0,0,0.445242 -29020,7202:101,-21,20,0,0,0.450577 -29021,7202:100,-20,20,0,0,0.451747 -29022,7201:209,-19,20,0,0,0.450882 -29023,7201:208,-18,20,0,0,0.450043 -29024,7201:207,-17,20,0,0,0.446079 -29025,7201:206,-16,20,0,0,0.442604 -29026,7201:205,-15,20,0,0,0.445952 -29027,7201:104,-14,20,0,0,0.444632 -29028,7201:103,-13,20,0,0,0.445369 -29029,7201:102,-12,20,0,0,0.440552 -29030,7201:101,-11,20,0,0,0.423235 -29031,7201:100,-10,20,0,0,0.399161 -29032,1201:206,16,20,0,0,0.427881 -29033,1201:207,17,20,0,0,0.420779 -29034,1201:208,18,20,0,0,0.428661 -29035,1201:209,19,20,0,0,0.445064 -29036,1202:104,24,20,0,0,0.445318 -29037,1202:205,25,20,0,0,0.443618 -29038,1202:206,26,20,0,0,0.439944 -29039,1202:207,27,20,0,0,0.439362 -29040,1202:208,28,20,0,0,0.439792 -29041,1202:209,29,20,0,0,0.446511 -29042,1203:100,30,20,0,0,0.457938 -29043,1203:101,31,20,0,0,0.464499 -29044,1203:102,32,20,0,0,0.466851 -29045,1203:103,33,20,0,0,0.459672 -29046,1203:104,34,20,0,0,0.476709 -29047,1212:101,121,20,0,0,0.262279 -29048,1212:102,122,20,0,0,0.246307 -29049,1212:103,123,20,0,0,0.306759 -29050,1212:104,124,20,0,0,0.348918 -29051,1212:205,125,20,0,0,0.382116 -29052,1212:206,126,20,0,0,0.433903 -29053,1212:207,127,20,0,0,0.471687 -29054,1212:208,128,20,0,0,0.493696 -29055,1212:209,129,20,0,0,0.481195 -29056,1213:100,130,20,0,0,0.47243 -29057,1213:102,132,20,0,0,0.501787 -29058,1213:103,133,20,0,0,0.5185 -29059,1213:104,134,20,0,0,0.509414 -29060,1213:205,135,20,0,0,0.476555 -29061,1213:206,136,20,0,0,0.459086 -29062,1213:207,137,20,0,0,0.458091 -29063,1213:208,138,20,0,0,0.45975 -29064,1213:209,139,20,0,0,0.462762 -29065,1214:100,140,20,0,0,0.465982 -29066,1214:101,141,20,0,0,0.469153 -29067,1214:102,142,20,0,0,0.480016 -29068,1214:103,143,20,0,0,0.487174 -29069,1214:104,144,20,0,0,0.483658 -29070,1214:205,145,20,0,0,0.482453 -29071,1214:206,146,20,0,0,0.474197 -29072,1214:207,147,20,0,0,0.46946 -29073,1214:208,148,20,0,0,0.471637 -29074,1214:209,149,20,0,0,0.474325 -29075,1215:100,150,20,0,0,0.477119 -29076,1215:101,151,20,0,0,0.482529 -29077,1215:102,152,20,0,0,0.489074 -29078,1215:103,153,20,0,0,0.484607 -29079,1215:104,154,20,0,0,0.487328 -29080,1215:205,155,20,0,0,0.484531 -29081,1215:206,156,20,0,0,0.483146 -29082,1215:207,157,20,0,0,0.48548 -29083,1215:208,158,20,0,0,0.470715 -29084,1215:209,159,20,0,0,0.46031 -29085,1216:100,160,20,0,0,0.453478 -29086,1216:101,161,20,0,0,0.451543 -29087,1216:102,162,20,0,0,0.437945 -29088,1216:103,163,20,0,0,0.443618 -29089,1216:104,164,20,0,0,0.439488 -29090,1216:205,165,20,0,0,0.437996 -29091,1216:206,166,20,0,0,0.441641 -29092,1216:207,167,20,0,0,0.43307 -29093,1216:208,168,20,0,0,0.436807 -29094,1216:209,169,20,0,0,0.432919 -29095,1217:100,170,20,0,0,0.438552 -29096,1217:101,171,20,0,0,0.433373 -29097,1217:102,172,20,0,0,0.421656 -29098,1217:103,173,20,0,0,0.419303 -29099,1217:104,174,20,0,0,0.419027 -29100,1217:205,175,20,0,0,0.421556 -29101,1217:206,176,20,0,0,0.420528 -29102,1217:207,177,20,0,0,0.417277 -29103,1217:208,178,20,0,0,0.408983 -29104,1217:209,179,20,0,0,0.410647 -29105,1218:100,180,20,0,0,0.407369 -29106,7218:110,-180,21,0,0,0.377638 -29107,7217:219,-179,21,0,0,0.380735 -29108,7217:218,-178,21,0,0,0.374168 -29109,7217:217,-177,21,0,0,0.368436 -29110,7217:216,-176,21,0,0,0.364238 -29111,7217:215,-175,21,0,0,0.365214 -29112,7217:114,-174,21,0,0,0.372173 -29113,7217:113,-173,21,0,0,0.365857 -29114,7217:112,-172,21,0,0,0.371309 -29115,7217:111,-171,21,0,0,0.380008 -29116,7217:110,-170,21,0,0,0.381292 -29117,7216:219,-169,21,0,0,0.373518 -29118,7216:218,-168,21,0,0,0.363026 -29119,7216:217,-167,21,0,0,0.36343 -29120,7216:216,-166,21,0,0,0.365405 -29121,7216:215,-165,21,0,0,0.372245 -29122,7216:114,-164,21,0,0,0.360227 -29123,7216:113,-163,21,0,0,0.364857 -29124,7216:112,-162,21,0,0,0.357131 -29125,7216:111,-161,21,0,0,0.370662 -29126,7216:110,-160,21,0,0,0.381389 -29127,7215:219,-159,21,0,0,0.383718 -29128,7215:218,-158,21,0,0,0.377373 -29129,7215:217,-157,21,0,0,0.383694 -29130,7215:216,-156,21,0,0,0.377373 -29131,7215:215,-155,21,0,0,0.388223 -29132,7215:114,-154,21,0,0,0.382019 -29133,7215:113,-153,21,0,0,0.386224 -29134,7215:112,-152,21,0,0,0.39096 -29135,7215:111,-151,21,0,0,0.395839 -29136,7215:110,-150,21,0,0,0.399407 -29137,7214:219,-149,21,0,0,0.395519 -29138,7214:218,-148,21,0,0,0.401479 -29139,7214:217,-147,21,0,0,0.400492 -29140,7214:216,-146,21,0,0,0.400245 -29141,7214:215,-145,21,0,0,0.40551 -29142,7214:114,-144,21,0,0,0.404742 -29143,7214:113,-143,21,0,0,0.402665 -29144,7214:112,-142,21,0,0,0.399851 -29145,7214:111,-141,21,0,0,0.393286 -29146,7214:110,-140,21,0,0,0.388907 -29147,7213:219,-139,21,0,0,0.394709 -29148,7213:218,-138,21,0,0,0.399259 -29149,7213:217,-137,21,0,0,0.39211 -29150,7213:216,-136,21,0,0,0.389688 -29151,7213:215,-135,21,0,0,0.382456 -29152,7213:114,-134,21,0,0,0.380444 -29153,7213:113,-133,21,0,0,0.373543 -29154,7213:112,-132,21,0,0,0.369919 -29155,7213:111,-131,21,0,0,0.367002 -29156,7213:110,-130,21,0,0,0.349128 -29157,7212:219,-129,21,0,0,0.348311 -29158,7212:218,-128,21,0,0,0.349408 -29159,7212:217,-127,21,0,0,0.335872 -29160,7212:216,-126,21,0,0,0.334406 -29161,7212:215,-125,21,0,0,0.328079 -29162,7212:114,-124,21,0,0,0.311037 -29163,7212:113,-123,21,0,0,0.310442 -29164,7212:112,-122,21,0,0,0.317123 -29165,7212:111,-121,21,0,0,0.324961 -29166,7212:110,-120,21,0,0,0.334452 -29167,7211:219,-119,21,0,0,0.342111 -29168,7211:218,-118,21,0,0,0.336422 -29169,7207:219,-79,21,0,0,0.396798 -29170,7207:218,-78,21,0,0,0.440703 -29171,7207:217,-77,21,0,0,0.487508 -29172,7207:216,-76,21,0,0,0.55537 -29173,7207:215,-75,21,0,0,0.547568 -29174,7207:114,-74,21,0,0,0.512931 -29175,7207:113,-73,21,0,0,0.507489 -29176,7207:112,-72,21,0,0,0.500117 -29177,7207:111,-71,21,0,0,0.498165 -29178,7207:110,-70,21,0,0,0.498755 -29179,7206:219,-69,21,0,0,0.502044 -29180,7206:218,-68,21,0,0,0.503816 -29181,7206:217,-67,21,0,0,0.497292 -29182,7206:216,-66,21,0,0,0.498755 -29183,7206:215,-65,21,0,0,0.498294 -29184,7206:114,-64,21,0,0,0.498345 -29185,7206:113,-63,21,0,0,0.492617 -29186,7206:112,-62,21,0,0,0.480811 -29187,7206:111,-61,21,0,0,0.476964 -29188,7206:110,-60,21,0,0,0.477093 -29189,7205:219,-59,21,0,0,0.476247 -29190,7205:218,-58,21,0,0,0.471944 -29191,7205:217,-57,21,0,0,0.468233 -29192,7205:216,-56,21,0,0,0.467286 -29193,7205:215,-55,21,0,0,0.460413 -29194,7205:114,-54,21,0,0,0.452307 -29195,7205:113,-53,21,0,0,0.449687 -29196,7205:112,-52,21,0,0,0.448975 -29197,7205:111,-51,21,0,0,0.451671 -29198,7205:110,-50,21,0,0,0.44984 -29199,7204:219,-49,21,0,0,0.452231 -29200,7204:218,-48,21,0,0,0.449255 -29201,7204:217,-47,21,0,0,0.441616 -29202,7204:216,-46,21,0,0,0.437718 -29203,7204:215,-45,21,0,0,0.443136 -29204,7204:114,-44,21,0,0,0.439817 -29205,7204:113,-43,21,0,0,0.434888 -29206,7204:112,-42,21,0,0,0.443162 -29207,7204:111,-41,21,0,0,0.447857 -29208,7204:110,-40,21,0,0,0.445699 -29209,7203:219,-39,21,0,0,0.441919 -29210,7203:218,-38,21,0,0,0.433676 -29211,7203:217,-37,21,0,0,0.439691 -29212,7203:216,-36,21,0,0,0.442832 -29213,7203:215,-35,21,0,0,0.435923 -29214,7203:114,-34,21,0,0,0.435367 -29215,7203:113,-33,21,0,0,0.418627 -29216,7203:112,-32,21,0,0,0.440122 -29217,7203:111,-31,21,0,0,0.437718 -29218,7203:110,-30,21,0,0,0.434509 -29219,7202:219,-29,21,0,0,0.434787 -29220,7202:218,-28,21,0,0,0.439488 -29221,7202:217,-27,21,0,0,0.43128 -29222,7202:216,-26,21,0,0,0.426197 -29223,7202:215,-25,21,0,0,0.423912 -29224,7202:114,-24,21,0,0,0.427428 -29225,7202:113,-23,21,0,0,0.433827 -29226,7202:112,-22,21,0,0,0.434307 -29227,7202:111,-21,21,0,0,0.445699 -29228,7202:110,-20,21,0,0,0.443364 -29229,7201:219,-19,21,0,0,0.44154 -29230,7201:218,-18,21,0,0,0.442097 -29231,7201:217,-17,21,0,0,0.440577 -29232,7201:216,-16,21,0,0,0.437439 -29233,7201:215,-15,21,0,0,0.437894 -29234,7201:114,-14,21,0,0,0.437819 -29235,7201:113,-13,21,0,0,0.436479 -29236,7201:112,-12,21,0,0,0.435822 -29237,7201:111,-11,21,0,0,0.434382 -29238,7201:110,-10,21,0,0,0.433524 -29239,7200:219,-9,21,0,0,0.41346 -29240,7200:218,-8,21,0,0,0.394341 -29241,1201:111,11,21,0,0,0.386127 -29242,1201:112,12,21,0,0,0.408684 -29243,1201:113,13,21,0,0,0.410797 -29244,1201:114,14,21,0,0,0.419152 -29245,1201:215,15,21,0,0,0.408783 -29246,1201:216,16,21,0,0,0.425368 -29247,1201:217,17,21,0,0,0.418302 -29248,1201:218,18,21,0,0,0.40353 -29249,1201:219,19,21,0,0,0.416378 -29250,1202:110,20,21,0,0,0.413435 -29251,1202:111,21,21,0,0,0.429744 -29252,1202:112,22,21,0,0,0.43128 -29253,1202:113,23,21,0,0,0.424239 -29254,1202:114,24,21,0,0,0.424715 -29255,1202:215,25,21,0,0,0.420203 -29256,1202:216,26,21,0,0,0.428988 -29257,1202:217,27,21,0,0,0.430675 -29258,1202:218,28,21,0,0,0.426121 -29259,1202:219,29,21,0,0,0.432364 -29260,1203:110,30,21,0,0,0.43254 -29261,1203:111,31,21,0,0,0.441337 -29262,1203:112,32,21,0,0,0.441995 -29263,1203:113,33,21,0,0,0.450704 -29264,1203:114,34,21,0,0,0.479708 -29265,1212:112,122,21,0,0,0.229074 -29266,1212:113,123,21,0,0,0.302754 -29267,1212:114,124,21,0,0,0.384301 -29268,1212:215,125,21,0,0,0.417327 -29269,1212:216,126,21,0,0,0.446866 -29270,1212:218,128,21,0,0,0.481042 -29271,1212:219,129,21,0,0,0.468437 -29272,1213:110,130,21,0,0,0.402912 -29273,1213:114,134,21,0,0,0.485275 -29274,1213:215,135,21,0,0,0.497446 -29275,1213:216,136,21,0,0,0.500169 -29276,1213:217,137,21,0,0,0.504175 -29277,1213:218,138,21,0,0,0.501607 -29278,1213:219,139,21,0,0,0.494929 -29279,1214:110,140,21,0,0,0.490204 -29280,1214:111,141,21,0,0,0.480631 -29281,1214:112,142,21,0,0,0.472738 -29282,1214:113,143,21,0,0,0.478887 -29283,1214:114,144,21,0,0,0.477503 -29284,1214:215,145,21,0,0,0.470049 -29285,1214:216,146,21,0,0,0.470843 -29286,1214:217,147,21,0,0,0.473532 -29287,1214:218,148,21,0,0,0.462634 -29288,1214:219,149,21,0,0,0.461306 -29289,1215:110,150,21,0,0,0.469103 -29290,1215:111,151,21,0,0,0.473096 -29291,1215:112,152,21,0,0,0.483427 -29292,1215:113,153,21,0,0,0.483915 -29293,1215:114,154,21,0,0,0.474505 -29294,1215:215,155,21,0,0,0.476555 -29295,1215:216,156,21,0,0,0.478452 -29296,1215:217,157,21,0,0,0.478528 -29297,1215:218,158,21,0,0,0.475837 -29298,1215:219,159,21,0,0,0.463043 -29299,1216:110,160,21,0,0,0.453682 -29300,1216:111,161,21,0,0,0.431658 -29301,1216:112,162,21,0,0,0.421205 -29302,1216:113,163,21,0,0,0.417227 -29303,1216:114,164,21,0,0,0.411518 -29304,1216:215,165,21,0,0,0.41025 -29305,1216:216,166,21,0,0,0.412837 -29306,1216:217,167,21,0,0,0.413435 -29307,1216:218,168,21,0,0,0.412065 -29308,1216:219,169,21,0,0,0.408238 -29309,1217:110,170,21,0,0,0.406352 -29310,1217:111,171,21,0,0,0.403407 -29311,1217:112,172,21,0,0,0.400467 -29312,1217:113,173,21,0,0,0.395397 -29313,1217:114,174,21,0,0,0.385786 -29314,1217:215,175,21,0,0,0.379717 -29315,1217:216,176,21,0,0,0.37996 -29316,1217:217,177,21,0,0,0.380129 -29317,1217:218,178,21,0,0,0.37648 -29318,1217:219,179,21,0,0,0.375516 -29319,1218:110,180,21,0,0,0.377638 -29320,7218:120,-180,22,0,0,0.357791 -29321,7217:229,-179,22,0,0,0.353765 -29322,7217:228,-178,22,0,0,0.347472 -29323,7217:227,-177,22,0,0,0.343198 -29324,7217:226,-176,22,0,0,0.340125 -29325,7217:225,-175,22,0,0,0.340078 -29326,7217:124,-174,22,0,0,0.33918 -29327,7217:123,-173,22,0,0,0.338604 -29328,7217:122,-172,22,0,0,0.340078 -29329,7217:121,-171,22,0,0,0.342712 -29330,7217:120,-170,22,0,0,0.341325 -29331,7216:229,-169,22,0,0,0.332876 -29332,7216:228,-168,22,0,0,0.333219 -29333,7216:227,-167,22,0,0,0.33578 -29334,7216:226,-166,22,0,0,0.339203 -29335,7216:225,-165,22,0,0,0.337133 -29336,7216:124,-164,22,0,0,0.337961 -29337,7216:123,-163,22,0,0,0.335505 -29338,7216:122,-162,22,0,0,0.336147 -29339,7216:121,-161,22,0,0,0.342018 -29340,7216:120,-160,22,0,0,0.351349 -29341,7215:229,-159,22,0,0,0.359848 -29342,7215:228,-158,22,0,0,0.358075 -29343,7215:227,-157,22,0,0,0.359919 -29344,7215:226,-156,22,0,0,0.35487 -29345,7215:225,-155,22,0,0,0.358548 -29346,7215:124,-154,22,0,0,0.359233 -29347,7215:123,-153,22,0,0,0.365357 -29348,7215:122,-152,22,0,0,0.368746 -29349,7215:121,-151,22,0,0,0.370207 -29350,7215:120,-150,22,0,0,0.373855 -29351,7214:229,-149,22,0,0,0.376746 -29352,7214:228,-148,22,0,0,0.377663 -29353,7214:227,-147,22,0,0,0.382165 -29354,7214:226,-146,22,0,0,0.384448 -29355,7214:225,-145,22,0,0,0.387808 -29356,7214:124,-144,22,0,0,0.381485 -29357,7214:123,-143,22,0,0,0.379161 -29358,7214:122,-142,22,0,0,0.379717 -29359,7214:121,-141,22,0,0,0.376939 -29360,7214:120,-140,22,0,0,0.379209 -29361,7213:229,-139,22,0,0,0.377132 -29362,7213:228,-138,22,0,0,0.38435 -29363,7213:227,-137,22,0,0,0.380299 -29364,7213:226,-136,22,0,0,0.379476 -29365,7213:225,-135,22,0,0,0.372869 -29366,7213:124,-134,22,0,0,0.374529 -29367,7213:123,-133,22,0,0,0.363881 -29368,7213:122,-132,22,0,0,0.358618 -29369,7213:121,-131,22,0,0,0.355999 -29370,7213:120,-130,22,0,0,0.349128 -29371,7212:229,-129,22,0,0,0.336743 -29372,7212:228,-128,22,0,0,0.328669 -29373,7212:227,-127,22,0,0,0.322509 -29374,7212:226,-126,22,0,0,0.311014 -29375,7212:225,-125,22,0,0,0.307744 -29376,7212:124,-124,22,0,0,0.301173 -29377,7212:123,-123,22,0,0,0.300957 -29378,7212:122,-122,22,0,0,0.307088 -29379,7212:121,-121,22,0,0,0.308554 -29380,7207:227,-77,22,0,0,0.391645 -29381,7207:226,-76,22,0,0,0.454064 -29382,7207:225,-75,22,0,0,0.551435 -29383,7207:124,-74,22,0,0,0.523755 -29384,7207:123,-73,22,0,0,0.504303 -29385,7207:122,-72,22,0,0,0.484864 -29386,7207:121,-71,22,0,0,0.490974 -29387,7207:120,-70,22,0,0,0.493645 -29388,7206:229,-69,22,0,0,0.499372 -29389,7206:228,-68,22,0,0,0.499526 -29390,7206:227,-67,22,0,0,0.497728 -29391,7206:226,-66,22,0,0,0.493542 -29392,7206:225,-65,22,0,0,0.484326 -29393,7206:124,-64,22,0,0,0.47817 -29394,7206:123,-63,22,0,0,0.467644 -29395,7206:122,-62,22,0,0,0.453809 -29396,7206:121,-61,22,0,0,0.462328 -29397,7206:120,-60,22,0,0,0.467388 -29398,7205:229,-59,22,0,0,0.454089 -29399,7205:228,-58,22,0,0,0.441235 -29400,7205:227,-57,22,0,0,0.448492 -29401,7205:226,-56,22,0,0,0.439792 -29402,7205:225,-55,22,0,0,0.447121 -29403,7205:124,-54,22,0,0,0.449535 -29404,7205:123,-53,22,0,0,0.440906 -29405,7205:122,-52,22,0,0,0.441413 -29406,7205:121,-51,22,0,0,0.441463 -29407,7205:120,-50,22,0,0,0.436631 -29408,7204:229,-49,22,0,0,0.436833 -29409,7204:228,-48,22,0,0,0.436403 -29410,7204:227,-47,22,0,0,0.425017 -29411,7204:226,-46,22,0,0,0.431406 -29412,7204:225,-45,22,0,0,0.432011 -29413,7204:124,-44,22,0,0,0.426398 -29414,7204:123,-43,22,0,0,0.420353 -29415,7204:122,-42,22,0,0,0.420704 -29416,7204:121,-41,22,0,0,0.425594 -29417,7204:120,-40,22,0,0,0.432163 -29418,7203:229,-39,22,0,0,0.41528 -29419,7203:228,-38,22,0,0,0.405114 -29420,7203:227,-37,22,0,0,0.415081 -29421,7203:226,-36,22,0,0,0.417377 -29422,7203:225,-35,22,0,0,0.420003 -29423,7203:124,-34,22,0,0,0.416078 -29424,7203:123,-33,22,0,0,0.408535 -29425,7203:122,-32,22,0,0,0.412239 -29426,7203:121,-31,22,0,0,0.407171 -29427,7203:120,-30,22,0,0,0.410174 -29428,7202:229,-29,22,0,0,0.415155 -29429,7202:228,-28,22,0,0,0.419352 -29430,7202:227,-27,22,0,0,0.416627 -29431,7202:226,-26,22,0,0,0.400196 -29432,7202:225,-25,22,0,0,0.413909 -29433,7202:124,-24,22,0,0,0.411319 -29434,7202:123,-23,22,0,0,0.416528 -29435,7202:122,-22,22,0,0,0.417527 -29436,7202:121,-21,22,0,0,0.423887 -29437,7202:120,-20,22,0,0,0.425117 -29438,7201:229,-19,22,0,0,0.416952 -29439,7201:228,-18,22,0,0,0.425041 -29440,7201:227,-17,22,0,0,0.427907 -29441,7201:226,-16,22,0,0,0.43191 -29442,7201:225,-15,22,0,0,0.423335 -29443,7201:124,-14,22,0,0,0.431533 -29444,7201:123,-13,22,0,0,0.428108 -29445,7201:122,-12,22,0,0,0.427956 -29446,7201:121,-11,22,0,0,0.430801 -29447,7201:120,-10,22,0,0,0.423661 -29448,7200:229,-9,22,0,0,0.418127 -29449,7200:228,-8,22,0,0,0.408485 -29450,7200:227,-7,22,0,0,0.392649 -29451,1201:121,11,22,0,0,0.371837 -29452,1201:122,12,22,0,0,0.400591 -29453,1201:123,13,22,0,0,0.402072 -29454,1201:124,14,22,0,0,0.413261 -29455,1201:225,15,22,0,0,0.399876 -29456,1201:226,16,22,0,0,0.39466 -29457,1201:227,17,22,0,0,0.391866 -29458,1201:228,18,22,0,0,0.394954 -29459,1201:229,19,22,0,0,0.399604 -29460,1202:120,20,22,0,0,0.406327 -29461,1202:121,21,22,0,0,0.414606 -29462,1202:122,22,22,0,0,0.418952 -29463,1202:123,23,22,0,0,0.416903 -29464,1202:124,24,22,0,0,0.414482 -29465,1202:225,25,22,0,0,0.413659 -29466,1202:226,26,22,0,0,0.415779 -29467,1202:227,27,22,0,0,0.416478 -29468,1202:228,28,22,0,0,0.415829 -29469,1202:229,29,22,0,0,0.420679 -29470,1203:120,30,22,0,0,0.429014 -29471,1203:121,31,22,0,0,0.431028 -29472,1203:122,32,22,0,0,0.43754 -29473,1203:123,33,22,0,0,0.442173 -29474,1203:124,34,22,0,0,0.445064 -29475,1203:225,35,22,0,0,0.486943 -29476,1212:121,121,22,0,0,0.23859 -29477,1212:122,122,22,0,0,0.282347 -29478,1212:123,123,22,0,0,0.355316 -29479,1212:124,124,22,0,0,0.389737 -29480,1212:225,125,22,0,0,0.351162 -29481,1212:226,126,22,0,0,0.30139 -29482,1212:228,128,22,0,0,0.254367 -29483,1212:229,129,22,0,0,0.328442 -29484,1213:120,130,22,0,0,0.425694 -29485,1213:121,131,22,0,0,0.444658 -29486,1213:225,135,22,0,0,0.320604 -29487,1213:227,137,22,0,0,0.358193 -29488,1213:229,139,22,0,0,0.432414 -29489,1214:120,140,22,0,0,0.442629 -29490,1214:121,141,22,0,0,0.455057 -29491,1214:122,142,22,0,0,0.473941 -29492,1214:123,143,22,0,0,0.479247 -29493,1214:124,144,22,0,0,0.472763 -29494,1214:225,145,22,0,0,0.430877 -29495,1214:226,146,22,0,0,0.417802 -29496,1214:227,147,22,0,0,0.455618 -29497,1214:228,148,22,0,0,0.479118 -29498,1214:229,149,22,0,0,0.473121 -29499,1215:120,150,22,0,0,0.478554 -29500,1215:121,151,22,0,0,0.455236 -29501,1215:122,152,22,0,0,0.476504 -29502,1215:123,153,22,0,0,0.483633 -29503,1215:124,154,22,0,0,0.47999 -29504,1215:225,155,22,0,0,0.48135 -29505,1215:226,156,22,0,0,0.466289 -29506,1215:227,157,22,0,0,0.474941 -29507,1215:228,158,22,0,0,0.448822 -29508,1215:229,159,22,0,0,0.455057 -29509,1216:120,160,22,0,0,0.445927 -29510,1216:121,161,22,0,0,0.430474 -29511,1216:122,162,22,0,0,0.414706 -29512,1216:123,163,22,0,0,0.407692 -29513,1216:124,164,22,0,0,0.404223 -29514,1216:225,165,22,0,0,0.396921 -29515,1216:226,166,22,0,0,0.389664 -29516,1216:227,167,22,0,0,0.389713 -29517,1216:228,168,22,0,0,0.390642 -29518,1216:229,169,22,0,0,0.391523 -29519,1217:120,170,22,0,0,0.389542 -29520,1217:121,171,22,0,0,0.384642 -29521,1217:122,172,22,0,0,0.379669 -29522,1217:123,173,22,0,0,0.383452 -29523,1217:124,174,22,0,0,0.374866 -29524,1217:225,175,22,0,0,0.36956 -29525,1217:226,176,22,0,0,0.368842 -29526,1217:227,177,22,0,0,0.361293 -29527,1217:228,178,22,0,0,0.357603 -29528,1217:229,179,22,0,0,0.355811 -29529,1218:120,180,22,0,0,0.357791 -29530,7218:130,-180,23,0,0,0.334429 -29531,7217:239,-179,23,0,0,0.336513 -29532,7217:238,-178,23,0,0,0.333035 -29533,7217:237,-177,23,0,0,0.325774 -29534,7217:236,-176,23,0,0,0.327106 -29535,7217:235,-175,23,0,0,0.326745 -29536,7217:134,-174,23,0,0,0.32085 -29537,7217:133,-173,23,0,0,0.319576 -29538,7217:132,-172,23,0,0,0.318215 -29539,7217:131,-171,23,0,0,0.314925 -29540,7217:130,-170,23,0,0,0.313773 -29541,7216:239,-169,23,0,0,0.313331 -29542,7216:238,-168,23,0,0,0.316501 -29543,7216:237,-167,23,0,0,0.317969 -29544,7216:236,-166,23,0,0,0.320627 -29545,7216:235,-165,23,0,0,0.321433 -29546,7216:134,-164,23,0,0,0.321164 -29547,7216:133,-163,23,0,0,0.32085 -29548,7216:132,-162,23,0,0,0.321702 -29549,7216:131,-161,23,0,0,0.330439 -29550,7216:130,-160,23,0,0,0.330644 -29551,7215:239,-159,23,0,0,0.329213 -29552,7215:238,-158,23,0,0,0.333835 -29553,7215:237,-157,23,0,0,0.336972 -29554,7215:236,-156,23,0,0,0.337432 -29555,7215:235,-155,23,0,0,0.341025 -29556,7215:134,-154,23,0,0,0.342712 -29557,7215:133,-153,23,0,0,0.349618 -29558,7215:132,-152,23,0,0,0.352685 -29559,7215:131,-151,23,0,0,0.352286 -29560,7215:130,-150,23,0,0,0.349408 -29561,7214:239,-149,23,0,0,0.36134 -29562,7214:238,-148,23,0,0,0.353553 -29563,7214:237,-147,23,0,0,0.362836 -29564,7214:236,-146,23,0,0,0.35534 -29565,7214:235,-145,23,0,0,0.358783 -29566,7214:134,-144,23,0,0,0.361412 -29567,7214:133,-143,23,0,0,0.341533 -29568,7214:132,-142,23,0,0,0.346122 -29569,7214:131,-141,23,0,0,0.364547 -29570,7214:130,-140,23,0,0,0.355999 -29571,7213:239,-139,23,0,0,0.363145 -29572,7213:238,-138,23,0,0,0.357414 -29573,7213:237,-137,23,0,0,0.350016 -29574,7213:236,-136,23,0,0,0.364476 -29575,7213:235,-135,23,0,0,0.359848 -29576,7213:134,-134,23,0,0,0.358453 -29577,7213:133,-133,23,0,0,0.345053 -29578,7213:132,-132,23,0,0,0.340817 -29579,7213:131,-131,23,0,0,0.336032 -29580,7213:130,-130,23,0,0,0.32944 -29581,7212:239,-129,23,0,0,0.318058 -29582,7212:238,-128,23,0,0,0.307043 -29583,7212:237,-127,23,0,0,0.310904 -29584,7212:236,-126,23,0,0,0.316745 -29585,7212:235,-125,23,0,0,0.310046 -29586,7212:134,-124,23,0,0,0.293766 -29587,7212:133,-123,23,0,0,0.297274 -29588,7212:132,-122,23,0,0,0.296223 -29589,7207:235,-75,23,0,0,0.472148 -29590,7207:134,-74,23,0,0,0.540432 -29591,7207:133,-73,23,0,0,0.527496 -29592,7207:132,-72,23,0,0,0.481555 -29593,7207:131,-71,23,0,0,0.485198 -29594,7207:130,-70,23,0,0,0.502506 -29595,7206:239,-69,23,0,0,0.489228 -29596,7206:238,-68,23,0,0,0.49498 -29597,7206:237,-67,23,0,0,0.490589 -29598,7206:236,-66,23,0,0,0.474505 -29599,7206:235,-65,23,0,0,0.47284 -29600,7206:134,-64,23,0,0,0.466621 -29601,7206:133,-63,23,0,0,0.460234 -29602,7206:132,-62,23,0,0,0.462251 -29603,7206:131,-61,23,0,0,0.452791 -29604,7206:130,-60,23,0,0,0.443948 -29605,7205:239,-59,23,0,0,0.441489 -29606,7205:238,-58,23,0,0,0.435241 -29607,7205:237,-57,23,0,0,0.4306 -29608,7205:236,-56,23,0,0,0.430978 -29609,7205:235,-55,23,0,0,0.433095 -29610,7205:134,-54,23,0,0,0.428309 -29611,7205:133,-53,23,0,0,0.425946 -29612,7205:132,-52,23,0,0,0.433373 -29613,7205:131,-51,23,0,0,0.434837 -29614,7205:130,-50,23,0,0,0.424062 -29615,7204:239,-49,23,0,0,0.416103 -29616,7204:238,-48,23,0,0,0.419903 -29617,7204:237,-47,23,0,0,0.414033 -29618,7204:236,-46,23,0,0,0.416203 -29619,7204:235,-45,23,0,0,0.415305 -29620,7204:134,-44,23,0,0,0.409479 -29621,7204:133,-43,23,0,0,0.404817 -29622,7204:132,-42,23,0,0,0.400961 -29623,7204:131,-41,23,0,0,0.408213 -29624,7204:130,-40,23,0,0,0.405857 -29625,7203:239,-39,23,0,0,0.393434 -29626,7203:238,-38,23,0,0,0.39238 -29627,7203:237,-37,23,0,0,0.396158 -29628,7203:236,-36,23,0,0,0.400171 -29629,7203:235,-35,23,0,0,0.386492 -29630,7203:134,-34,23,0,0,0.396232 -29631,7203:133,-33,23,0,0,0.387394 -29632,7203:132,-32,23,0,0,0.389298 -29633,7203:131,-31,23,0,0,0.387126 -29634,7203:130,-30,23,0,0,0.385177 -29635,7202:239,-29,23,0,0,0.40222 -29636,7202:238,-28,23,0,0,0.391841 -29637,7202:237,-27,23,0,0,0.38367 -29638,7202:236,-26,23,0,0,0.391425 -29639,7202:235,-25,23,0,0,0.392453 -29640,7202:134,-24,23,0,0,0.402739 -29641,7202:133,-23,23,0,0,0.399235 -29642,7202:132,-22,23,0,0,0.406625 -29643,7202:131,-21,23,0,0,0.402443 -29644,7202:130,-20,23,0,0,0.405683 -29645,7201:239,-19,23,0,0,0.411443 -29646,7201:238,-18,23,0,0,0.410896 -29647,7201:237,-17,23,0,0,0.41356 -29648,7201:236,-16,23,0,0,0.415829 -29649,7201:235,-15,23,0,0,0.415804 -29650,7201:134,-14,23,0,0,0.410647 -29651,7201:133,-13,23,0,0,0.402566 -29652,7201:132,-12,23,0,0,0.404495 -29653,7201:131,-11,23,0,0,0.409851 -29654,7201:130,-10,23,0,0,0.383111 -29655,7200:239,-9,23,0,0,0.379548 -29656,7200:238,-8,23,0,0,0.375757 -29657,7200:237,-7,23,0,0,0.379355 -29658,7200:236,-6,23,0,0,0.357202 -29659,7200:235,-5,23,0,0,0.349688 -29660,7200:134,-4,23,0,0,0.332533 -29661,7200:133,-3,23,0,0,0.344984 -29662,7200:132,-2,23,0,0,0.352263 -29663,7200:131,-1,23,0,0,0.367552 -29664,1201:131,11,23,0,0,0.395348 -29665,1201:132,12,23,0,0,0.395987 -29666,1201:133,13,23,0,0,0.386736 -29667,1201:134,14,23,0,0,0.378798 -29668,1201:235,15,23,0,0,0.392722 -29669,1201:236,16,23,0,0,0.396674 -29670,1201:237,17,23,0,0,0.396109 -29671,1201:238,18,23,0,0,0.396724 -29672,1201:239,19,23,0,0,0.402888 -29673,1202:130,20,23,0,0,0.418252 -29674,1202:131,21,23,0,0,0.418827 -29675,1202:132,22,23,0,0,0.418952 -29676,1202:133,23,23,0,0,0.414282 -29677,1202:134,24,23,0,0,0.415879 -29678,1202:235,25,23,0,0,0.418452 -29679,1202:236,26,23,0,0,0.414931 -29680,1202:237,27,23,0,0,0.425569 -29681,1202:238,28,23,0,0,0.424916 -29682,1202:239,29,23,0,0,0.42846 -29683,1203:130,30,23,0,0,0.425041 -29684,1203:131,31,23,0,0,0.436807 -29685,1203:132,32,23,0,0,0.44989 -29686,1203:133,33,23,0,0,0.45274 -29687,1203:134,34,23,0,0,0.444937 -29688,1203:235,35,23,0,0,0.482915 -29689,1212:130,120,23,0,0,0.257359 -29691,1212:132,122,23,0,0,0.274606 -29692,1212:133,123,23,0,0,0.331486 -29693,1212:134,124,23,0,0,0.367528 -29694,1212:235,125,23,0,0,0.35238 -29695,1212:236,126,23,0,0,0.304144 -29696,1213:130,130,23,0,0,0.407171 -29697,1213:131,131,23,0,0,0.412713 -29698,1213:132,132,23,0,0,0.410374 -29699,1213:133,133,23,0,0,0.437136 -29700,1213:134,134,23,0,0,0.429416 -29701,1213:235,135,23,0,0,0.423611 -29702,1213:236,136,23,0,0,0.42459 -29703,1214:132,142,23,0,0,0.421079 -29704,1214:133,143,23,0,0,0.422558 -29705,1214:134,144,23,0,0,0.430827 -29706,1214:235,145,23,0,0,0.430524 -29707,1214:236,146,23,0,0,0.425594 -29708,1214:237,147,23,0,0,0.426499 -29709,1214:238,148,23,0,0,0.443162 -29710,1214:239,149,23,0,0,0.454905 -29711,1215:130,150,23,0,0,0.453631 -29712,1215:131,151,23,0,0,0.456638 -29713,1215:132,152,23,0,0,0.461051 -29714,1215:133,153,23,0,0,0.456688 -29715,1215:134,154,23,0,0,0.45246 -29716,1215:235,155,23,0,0,0.462813 -29717,1215:236,156,23,0,0,0.467337 -29718,1215:237,157,23,0,0,0.470101 -29719,1215:238,158,23,0,0,0.437894 -29720,1215:239,159,23,0,0,0.450551 -29721,1216:130,160,23,0,0,0.401603 -29722,1216:131,161,23,0,0,0.409156 -29723,1216:132,162,23,0,0,0.4268 -29724,1216:133,163,23,0,0,0.415854 -29725,1216:134,164,23,0,0,0.400566 -29726,1216:235,165,23,0,0,0.393728 -29727,1216:236,166,23,0,0,0.377301 -29728,1216:237,167,23,0,0,0.367862 -29729,1216:238,168,23,0,0,0.357248 -29730,1216:239,169,23,0,0,0.35238 -29731,1217:130,170,23,0,0,0.353107 -29732,1217:131,171,23,0,0,0.359659 -29733,1217:132,172,23,0,0,0.357343 -29734,1217:133,173,23,0,0,0.358193 -29735,1217:134,174,23,0,0,0.3517 -29736,1217:235,175,23,0,0,0.348521 -29737,1217:236,176,23,0,0,0.351865 -29738,1217:237,177,23,0,0,0.346564 -29739,1217:238,178,23,0,0,0.343592 -29740,1217:239,179,23,0,0,0.336307 -29741,1218:130,180,23,0,0,0.334429 -29742,7218:140,-180,24,0,0,0.301779 -29743,7217:249,-179,24,0,0,0.303536 -29744,7217:248,-178,24,0,0,0.301109 -29745,7217:247,-177,24,0,0,0.293404 -29746,7217:246,-176,24,0,0,0.298391 -29747,7217:245,-175,24,0,0,0.29992 -29748,7217:144,-174,24,0,0,0.293063 -29749,7217:143,-173,24,0,0,0.295837 -29750,7217:142,-172,24,0,0,0.301216 -29751,7217:141,-171,24,0,0,0.298886 -29752,7217:140,-170,24,0,0,0.297918 -29753,7216:249,-169,24,0,0,0.296738 -29754,7216:248,-168,24,0,0,0.298972 -29755,7216:247,-167,24,0,0,0.30508 -29756,7216:246,-166,24,0,0,0.303188 -29757,7216:245,-165,24,0,0,0.303448 -29758,7216:144,-164,24,0,0,0.300719 -29759,7216:143,-163,24,0,0,0.302797 -29760,7216:142,-162,24,0,0,0.303644 -29761,7216:141,-161,24,0,0,0.311169 -29762,7216:140,-160,24,0,0,0.306257 -29763,7215:249,-159,24,0,0,0.307744 -29764,7215:248,-158,24,0,0,0.320537 -29765,7215:247,-157,24,0,0,0.31846 -29766,7215:246,-156,24,0,0,0.324016 -29767,7215:245,-155,24,0,0,0.326157 -29768,7215:144,-154,24,0,0,0.329485 -29769,7215:143,-153,24,0,0,0.325435 -29770,7215:142,-152,24,0,0,0.319531 -29771,7215:141,-151,24,0,0,0.328238 -29772,7215:140,-150,24,0,0,0.335963 -29773,7214:249,-149,24,0,0,0.333401 -29774,7214:248,-148,24,0,0,0.339156 -29775,7214:247,-147,24,0,0,0.334087 -29776,7214:246,-146,24,0,0,0.339825 -29777,7214:245,-145,24,0,0,0.334841 -29778,7214:144,-144,24,0,0,0.344914 -29779,7214:143,-143,24,0,0,0.343685 -29780,7214:142,-142,24,0,0,0.338144 -29781,7214:141,-141,24,0,0,0.34682 -29782,7214:140,-140,24,0,0,0.336399 -29783,7213:249,-139,24,0,0,0.343685 -29784,7213:248,-138,24,0,0,0.340655 -29785,7213:247,-137,24,0,0,0.345193 -29786,7213:246,-136,24,0,0,0.352075 -29787,7213:245,-135,24,0,0,0.353624 -29788,7213:144,-134,24,0,0,0.346797 -29789,7213:143,-133,24,0,0,0.34054 -29790,7213:142,-132,24,0,0,0.337065 -29791,7213:141,-131,24,0,0,0.333355 -29792,7213:140,-130,24,0,0,0.327966 -29793,7212:249,-129,24,0,0,0.314747 -29794,7212:248,-128,24,0,0,0.300287 -29795,7212:247,-127,24,0,0,0.295196 -29796,7212:246,-126,24,0,0,0.289838 -29797,7212:245,-125,24,0,0,0.293404 -29798,7212:144,-124,24,0,0,0.29096 -29799,7212:143,-123,24,0,0,0.288845 -29800,7212:142,-122,24,0,0,0.279483 -29801,7207:246,-76,24,0,0,0.318505 -29802,7207:245,-75,24,0,0,0.420628 -29803,7207:144,-74,24,0,0,0.517807 -29804,7207:143,-73,24,0,0,0.535427 -29805,7207:142,-72,24,0,0,0.517345 -29806,7207:141,-71,24,0,0,0.498859 -29807,7207:140,-70,24,0,0,0.505254 -29808,7206:249,-69,24,0,0,0.515369 -29809,7206:248,-68,24,0,0,0.500271 -29810,7206:247,-67,24,0,0,0.48117 -29811,7206:246,-66,24,0,0,0.487379 -29812,7206:245,-65,24,0,0,0.481042 -29813,7206:144,-64,24,0,0,0.470356 -29814,7206:143,-63,24,0,0,0.465778 -29815,7206:142,-62,24,0,0,0.45549 -29816,7206:141,-61,24,0,0,0.452841 -29817,7206:140,-60,24,0,0,0.446917 -29818,7205:249,-59,24,0,0,0.444455 -29819,7205:248,-58,24,0,0,0.433726 -29820,7205:247,-57,24,0,0,0.432843 -29821,7205:246,-56,24,0,0,0.427554 -29822,7205:245,-55,24,0,0,0.427353 -29823,7205:144,-54,24,0,0,0.426775 -29824,7205:143,-53,24,0,0,0.427152 -29825,7205:142,-52,24,0,0,0.416303 -29826,7205:141,-51,24,0,0,0.411891 -29827,7205:140,-50,24,0,0,0.40665 -29828,7204:249,-49,24,0,0,0.404668 -29829,7204:248,-48,24,0,0,0.400024 -29830,7204:247,-47,24,0,0,0.403901 -29831,7204:246,-46,24,0,0,0.399358 -29832,7204:245,-45,24,0,0,0.399802 -29833,7204:144,-44,24,0,0,0.3926 -29834,7204:143,-43,24,0,0,0.391914 -29835,7204:142,-42,24,0,0,0.38859 -29836,7204:141,-41,24,0,0,0.38367 -29837,7204:140,-40,24,0,0,0.388443 -29838,7203:249,-39,24,0,0,0.387881 -29839,7203:248,-38,24,0,0,0.385543 -29840,7203:247,-37,24,0,0,0.380202 -29841,7203:246,-36,24,0,0,0.376529 -29842,7203:245,-35,24,0,0,0.378436 -29843,7203:144,-34,24,0,0,0.375805 -29844,7203:143,-33,24,0,0,0.374577 -29845,7203:142,-32,24,0,0,0.370518 -29846,7203:141,-31,24,0,0,0.368101 -29847,7203:140,-30,24,0,0,0.373326 -29848,7202:249,-29,24,0,0,0.370542 -29849,7202:248,-28,24,0,0,0.370854 -29850,7202:247,-27,24,0,0,0.368818 -29851,7202:246,-26,24,0,0,0.37513 -29852,7202:245,-25,24,0,0,0.373158 -29853,7202:144,-24,24,0,0,0.378919 -29854,7202:143,-23,24,0,0,0.382674 -29855,7202:142,-22,24,0,0,0.385883 -29856,7202:141,-21,24,0,0,0.384059 -29857,7202:140,-20,24,0,0,0.388077 -29858,7201:249,-19,24,0,0,0.393409 -29859,7201:248,-18,24,0,0,0.394832 -29860,7201:247,-17,24,0,0,0.396183 -29861,7201:246,-16,24,0,0,0.395642 -29862,7201:245,-15,24,0,0,0.393066 -29863,7201:144,-14,24,0,0,0.393997 -29864,7201:143,-13,24,0,0,0.395372 -29865,7201:142,-12,24,0,0,0.385518 -29866,7201:141,-11,24,0,0,0.382965 -29867,7201:140,-10,24,0,0,0.355222 -29868,7200:142,-2,24,0,0,0.337501 -29869,7200:141,-1,24,0,0,0.34582 -29870,1200:141,0,24,0,0,0.373014 -29871,1200:141,1,24,0,0,0.364809 -29872,1200:142,2,24,0,0,0.373014 -29873,1200:143,3,24,0,0,0.376239 -29874,1200:144,4,24,0,0,0.381437 -29875,1200:245,5,24,0,0,0.38401 -29876,1200:248,8,24,0,0,0.393826 -29877,1201:140,10,24,0,0,0.389688 -29878,1201:141,11,24,0,0,0.388053 -29879,1201:142,12,24,0,0,0.37047 -29880,1201:143,13,24,0,0,0.360843 -29881,1201:144,14,24,0,0,0.358524 -29882,1201:245,15,24,0,0,0.399727 -29883,1201:246,16,24,0,0,0.396699 -29884,1201:247,17,24,0,0,0.394587 -29885,1201:248,18,24,0,0,0.401085 -29886,1201:249,19,24,0,0,0.417952 -29887,1202:140,20,24,0,0,0.420603 -29888,1202:141,21,24,0,0,0.417377 -29889,1202:143,23,24,0,0,0.404297 -29890,1202:144,24,24,0,0,0.411294 -29891,1202:245,25,24,0,0,0.418302 -29892,1202:246,26,24,0,0,0.428007 -29893,1202:247,27,24,0,0,0.437439 -29894,1202:248,28,24,0,0,0.45544 -29895,1203:141,31,24,0,0,0.470945 -29896,1203:144,34,24,0,0,0.480503 -29897,1203:245,35,24,0,0,0.48679 -29898,1212:142,122,24,0,0,0.212397 -29899,1212:143,123,24,0,0,0.23859 -29900,1212:144,124,24,0,0,0.344729 -29901,1212:245,125,24,0,0,0.352403 -29902,1212:246,126,24,0,0,0.245259 -29903,1213:140,130,24,0,0,0.396404 -29904,1213:141,131,24,0,0,0.341764 -29905,1213:142,132,24,0,0,0.389151 -29906,1213:143,133,24,0,0,0.404272 -29907,1213:144,134,24,0,0,0.404767 -29908,1213:245,135,24,0,0,0.386443 -29909,1213:246,136,24,0,0,0.400393 -29910,1213:247,137,24,0,0,0.396896 -29911,1213:248,138,24,0,0,0.401356 -29912,1214:142,142,24,0,0,0.412239 -29913,1214:143,143,24,0,0,0.429618 -29914,1214:144,144,24,0,0,0.414133 -29915,1214:245,145,24,0,0,0.408064 -29916,1214:246,146,24,0,0,0.411966 -29917,1214:247,147,24,0,0,0.433121 -29918,1214:248,148,24,0,0,0.440374 -29919,1214:249,149,24,0,0,0.436049 -29920,1215:140,150,24,0,0,0.418502 -29921,1215:141,151,24,0,0,0.416678 -29922,1215:142,152,24,0,0,0.414507 -29923,1215:143,153,24,0,0,0.41097 -29924,1215:144,154,24,0,0,0.408833 -29925,1215:245,155,24,0,0,0.401504 -29926,1215:246,156,24,0,0,0.390471 -29927,1215:247,157,24,0,0,0.396428 -29928,1215:248,158,24,0,0,0.420904 -29929,1215:249,159,24,0,0,0.412663 -29930,1216:140,160,24,0,0,0.410697 -29931,1216:141,161,24,0,0,0.386565 -29932,1216:142,162,24,0,0,0.376987 -29933,1216:143,163,24,0,0,0.37071 -29934,1216:144,164,24,0,0,0.373615 -29935,1216:245,165,24,0,0,0.373927 -29936,1216:246,166,24,0,0,0.372269 -29937,1216:247,167,24,0,0,0.361009 -29938,1216:248,168,24,0,0,0.356117 -29939,1216:249,169,24,0,0,0.349595 -29940,1217:140,170,24,0,0,0.345193 -29941,1217:141,171,24,0,0,0.340609 -29942,1217:142,172,24,0,0,0.335734 -29943,1217:143,173,24,0,0,0.328646 -29944,1217:144,174,24,0,0,0.321209 -29945,1217:245,175,24,0,0,0.321792 -29946,1217:246,176,24,0,0,0.312624 -29947,1217:247,177,24,0,0,0.310288 -29948,1217:248,178,24,0,0,0.314282 -29949,1217:249,179,24,0,0,0.309059 -29950,1218:140,180,24,0,0,0.301779 -29951,7218:350,-180,25,0,0,0.278656 -29952,7217:459,-179,25,0,0,0.278037 -29953,7217:458,-178,25,0,0,0.282409 -29954,7217:457,-177,25,0,0,0.272829 -29955,7217:456,-176,25,0,0,0.272197 -29956,7217:455,-175,25,0,0,0.275527 -29957,7217:354,-174,25,0,0,0.275835 -29958,7217:353,-173,25,0,0,0.277851 -29959,7217:352,-172,25,0,0,0.277665 -29960,7217:351,-171,25,0,0,0.276102 -29961,7217:350,-170,25,0,0,0.278759 -29962,7216:459,-169,25,0,0,0.281847 -29963,7216:458,-168,25,0,0,0.28569 -29964,7216:457,-167,25,0,0,0.292319 -29965,7216:456,-166,25,0,0,0.284099 -29966,7216:455,-165,25,0,0,0.278697 -29967,7216:354,-164,25,0,0,0.283827 -29968,7216:353,-163,25,0,0,0.28318 -29969,7216:352,-162,25,0,0,0.282471 -29970,7216:351,-161,25,0,0,0.284391 -29971,7216:350,-160,25,0,0,0.282638 -29972,7215:459,-159,25,0,0,0.285774 -29973,7215:458,-158,25,0,0,0.293084 -29974,7215:457,-157,25,0,0,0.290473 -29975,7215:456,-156,25,0,0,0.300158 -29976,7215:455,-155,25,0,0,0.301238 -29977,7215:354,-154,25,0,0,0.303383 -29978,7215:353,-153,25,0,0,0.30018 -29979,7215:352,-152,25,0,0,0.310178 -29980,7215:351,-151,25,0,0,0.309059 -29981,7215:350,-150,25,0,0,0.31539 -29982,7214:459,-149,25,0,0,0.313751 -29983,7214:458,-148,25,0,0,0.315324 -29984,7214:457,-147,25,0,0,0.317635 -29985,7214:456,-146,25,0,0,0.315258 -29986,7214:455,-145,25,0,0,0.315124 -29987,7214:354,-144,25,0,0,0.317235 -29988,7214:353,-143,25,0,0,0.319017 -29989,7214:352,-142,25,0,0,0.321926 -29990,7214:351,-141,25,0,0,0.332465 -29991,7214:350,-140,25,0,0,0.332055 -29992,7213:459,-139,25,0,0,0.315568 -29993,7213:458,-138,25,0,0,0.330484 -29994,7213:457,-137,25,0,0,0.327558 -29995,7213:456,-136,25,0,0,0.336124 -29996,7213:455,-135,25,0,0,0.341764 -29997,7213:354,-134,25,0,0,0.342527 -29998,7213:353,-133,25,0,0,0.335642 -29999,7213:352,-132,25,0,0,0.329168 -30000,7213:351,-131,25,0,0,0.322307 -30001,7213:350,-130,25,0,0,0.326044 -30002,7212:459,-129,25,0,0,0.317168 -30003,7212:458,-128,25,0,0,0.311851 -30004,7212:457,-127,25,0,0,0.299252 -30005,7212:456,-126,25,0,0,0.289648 -30006,7212:455,-125,25,0,0,0.289014 -30007,7212:354,-124,25,0,0,0.27783 -30008,7212:353,-123,25,0,0,0.265712 -30009,7207:456,-76,25,0,0,0.288128 -30010,7207:455,-75,25,0,0,0.318839 -30011,7207:354,-74,25,0,0,0.439387 -30012,7207:353,-73,25,0,0,0.491308 -30013,7207:352,-72,25,0,0,0.50397 -30014,7207:351,-71,25,0,0,0.492643 -30015,7207:350,-70,25,0,0,0.443897 -30016,7206:459,-69,25,0,0,0.438021 -30017,7206:458,-68,25,0,0,0.490563 -30018,7206:457,-67,25,0,0,0.491103 -30019,7206:456,-66,25,0,0,0.462251 -30020,7206:455,-65,25,0,0,0.468744 -30021,7206:354,-64,25,0,0,0.472635 -30022,7206:353,-63,25,0,0,0.462277 -30023,7206:352,-62,25,0,0,0.46634 -30024,7206:351,-61,25,0,0,0.453071 -30025,7206:350,-60,25,0,0,0.426825 -30026,7205:459,-59,25,0,0,0.423561 -30027,7205:458,-58,25,0,0,0.423386 -30028,7205:457,-57,25,0,0,0.418702 -30029,7205:456,-56,25,0,0,0.414905 -30030,7205:455,-55,25,0,0,0.418727 -30031,7205:354,-54,25,0,0,0.425519 -30032,7205:353,-53,25,0,0,0.425368 -30033,7205:352,-52,25,0,0,0.417077 -30034,7205:351,-51,25,0,0,0.402813 -30035,7205:350,-50,25,0,0,0.397044 -30036,7204:459,-49,25,0,0,0.391131 -30037,7204:458,-48,25,0,0,0.388565 -30038,7204:457,-47,25,0,0,0.395691 -30039,7204:456,-46,25,0,0,0.397388 -30040,7204:455,-45,25,0,0,0.399752 -30041,7204:354,-44,25,0,0,0.399407 -30042,7204:353,-43,25,0,0,0.378146 -30043,7204:352,-42,25,0,0,0.373278 -30044,7204:351,-41,25,0,0,0.373686 -30045,7204:350,-40,25,0,0,0.372701 -30046,7203:459,-39,25,0,0,0.377228 -30047,7203:458,-38,25,0,0,0.374529 -30048,7203:457,-37,25,0,0,0.368818 -30049,7203:456,-36,25,0,0,0.371381 -30050,7203:455,-35,25,0,0,0.371813 -30051,7203:354,-34,25,0,0,0.367432 -30052,7203:353,-33,25,0,0,0.360061 -30053,7203:352,-32,25,0,0,0.359044 -30054,7203:351,-31,25,0,0,0.36324 -30055,7203:350,-30,25,0,0,0.358406 -30056,7202:458,-28,25,0,0,0.356518 -30057,7202:457,-27,25,0,0,0.351279 -30058,7202:456,-26,25,0,0,0.356541 -30059,7202:455,-25,25,0,0,0.361886 -30060,7202:354,-24,25,0,0,0.365476 -30061,7202:353,-23,25,0,0,0.35876 -30062,7202:352,-22,25,0,0,0.364119 -30063,7202:351,-21,25,0,0,0.369967 -30064,7202:350,-20,25,0,0,0.374914 -30065,7201:459,-19,25,0,0,0.368914 -30066,7201:458,-18,25,0,0,0.372726 -30067,7201:457,-17,25,0,0,0.37107 -30068,7201:456,-16,25,0,0,0.372149 -30069,7201:455,-15,25,0,0,0.373639 -30070,7201:354,-14,25,0,0,0.371309 -30071,7201:353,-13,25,0,0,0.372605 -30072,7201:352,-12,25,0,0,0.381147 -30073,7201:351,-11,25,0,0,0.374817 -30074,7201:350,-10,25,0,0,0.343801 -30075,1200:351,0,25,0,0,0.366263 -30076,1200:351,1,25,0,0,0.379379 -30077,1200:352,2,25,0,0,0.381656 -30078,1200:353,3,25,0,0,0.383913 -30079,1200:354,4,25,0,0,0.384739 -30080,1200:455,5,25,0,0,0.385372 -30081,1200:456,6,25,0,0,0.381656 -30082,1200:457,7,25,0,0,0.388931 -30083,1200:458,8,25,0,0,0.377977 -30084,1200:459,9,25,0,0,0.373061 -30085,1201:350,10,25,0,0,0.368938 -30086,1201:351,11,25,0,0,0.372845 -30087,1201:352,12,25,0,0,0.373422 -30088,1201:455,15,25,0,0,0.399481 -30089,1201:456,16,25,0,0,0.396085 -30090,1201:457,17,25,0,0,0.38854 -30091,1201:458,18,25,0,0,0.393458 -30092,1201:459,19,25,0,0,0.413684 -30093,1202:350,20,25,0,0,0.423511 -30094,1202:353,23,25,0,0,0.40264 -30095,1202:354,24,25,0,0,0.399949 -30096,1202:455,25,25,0,0,0.41518 -30097,1202:456,26,25,0,0,0.433247 -30098,1212:350,120,25,0,0,0.188275 -30099,1212:352,122,25,0,0,0.209558 -30100,1212:353,123,25,0,0,0.242814 -30101,1212:354,124,25,0,0,0.306585 -30102,1212:455,125,25,0,0,0.288634 -30103,1212:456,126,25,0,0,0.193591 -30104,1213:350,130,25,0,0,0.382747 -30105,1213:351,131,25,0,0,0.32885 -30106,1213:352,132,25,0,0,0.355716 -30107,1213:353,133,25,0,0,0.328216 -30108,1213:354,134,25,0,0,0.325232 -30109,1213:455,135,25,0,0,0.343523 -30110,1213:456,136,25,0,0,0.320962 -30111,1213:457,137,25,0,0,0.362907 -30112,1213:458,138,25,0,0,0.383524 -30113,1213:459,139,25,0,0,0.384375 -30114,1214:352,142,25,0,0,0.351068 -30115,1214:353,143,25,0,0,0.418477 -30116,1214:354,144,25,0,0,0.410299 -30117,1214:455,145,25,0,0,0.404223 -30118,1214:456,146,25,0,0,0.350109 -30119,1214:457,147,25,0,0,0.358004 -30120,1214:458,148,25,0,0,0.417627 -30121,1214:459,149,25,0,0,0.420679 -30122,1215:350,150,25,0,0,0.418277 -30123,1215:351,151,25,0,0,0.412663 -30124,1215:352,152,25,0,0,0.369775 -30125,1215:353,153,25,0,0,0.353318 -30126,1215:354,154,25,0,0,0.377277 -30127,1215:455,155,25,0,0,0.384229 -30128,1215:456,156,25,0,0,0.361886 -30129,1215:457,157,25,0,0,0.358996 -30130,1215:458,158,25,0,0,0.389444 -30131,1215:459,159,25,0,0,0.406799 -30132,1216:350,160,25,0,0,0.394856 -30133,1216:351,161,25,0,0,0.376432 -30134,1216:352,162,25,0,0,0.38637 -30135,1216:353,163,25,0,0,0.363026 -30136,1216:354,164,25,0,0,0.378436 -30137,1216:455,165,25,0,0,0.352146 -30138,1216:456,166,25,0,0,0.361696 -30139,1216:457,167,25,0,0,0.352826 -30140,1216:458,168,25,0,0,0.342504 -30141,1216:459,169,25,0,0,0.345866 -30142,1217:350,170,25,0,0,0.345169 -30143,1217:351,171,25,0,0,0.338328 -30144,1217:352,172,25,0,0,0.333995 -30145,1217:353,173,25,0,0,0.323363 -30146,1217:354,174,25,0,0,0.312779 -30147,1217:455,175,25,0,0,0.305385 -30148,1217:456,176,25,0,0,0.297102 -30149,1217:457,177,25,0,0,0.292425 -30150,1217:458,178,25,0,0,0.292127 -30151,1217:459,179,25,0,0,0.290049 -30152,1218:350,180,25,0,0,0.278656 -30153,7218:360,-180,26,0,0,0.270126 -30154,7217:469,-179,26,0,0,0.260197 -30155,7217:468,-178,26,0,0,0.264572 -30156,7217:467,-177,26,0,0,0.260138 -30157,7217:466,-176,26,0,0,0.256183 -30158,7217:465,-175,26,0,0,0.252481 -30159,7217:364,-174,26,0,0,0.249487 -30160,7217:363,-173,26,0,0,0.253432 -30161,7217:362,-172,26,0,0,0.255811 -30162,7217:361,-171,26,0,0,0.251281 -30163,7217:360,-170,26,0,0,0.254113 -30164,7216:469,-169,26,0,0,0.264712 -30165,7216:468,-168,26,0,0,0.262041 -30166,7216:467,-167,26,0,0,0.256203 -30167,7216:466,-166,26,0,0,0.253938 -30168,7216:465,-165,26,0,0,0.255205 -30169,7216:364,-164,26,0,0,0.255792 -30170,7216:363,-163,26,0,0,0.264272 -30171,7216:362,-162,26,0,0,0.264552 -30172,7216:361,-161,26,0,0,0.264232 -30173,7216:360,-160,26,0,0,0.265432 -30174,7215:469,-159,26,0,0,0.266234 -30175,7215:468,-158,26,0,0,0.26738 -30176,7215:467,-157,26,0,0,0.269438 -30177,7215:466,-156,26,0,0,0.266837 -30178,7215:465,-155,26,0,0,0.272706 -30179,7215:364,-154,26,0,0,0.279565 -30180,7215:363,-153,26,0,0,0.281515 -30181,7215:362,-152,26,0,0,0.29603 -30182,7215:361,-151,26,0,0,0.289901 -30183,7215:360,-150,26,0,0,0.291511 -30184,7214:469,-149,26,0,0,0.292382 -30185,7214:468,-148,26,0,0,0.291851 -30186,7214:467,-147,26,0,0,0.289605 -30187,7214:466,-146,26,0,0,0.297467 -30188,7214:465,-145,26,0,0,0.30805 -30189,7214:364,-144,26,0,0,0.301865 -30190,7214:363,-143,26,0,0,0.300503 -30191,7214:362,-142,26,0,0,0.300136 -30192,7214:361,-141,26,0,0,0.30206 -30193,7214:360,-140,26,0,0,0.295709 -30194,7213:469,-139,26,0,0,0.305887 -30195,7213:468,-138,26,0,0,0.312668 -30196,7213:467,-137,26,0,0,0.314593 -30197,7213:466,-136,26,0,0,0.309212 -30198,7213:465,-135,26,0,0,0.317836 -30199,7213:364,-134,26,0,0,0.321321 -30200,7213:363,-133,26,0,0,0.325232 -30201,7213:362,-132,26,0,0,0.321814 -30202,7213:361,-131,26,0,0,0.313198 -30203,7213:360,-130,26,0,0,0.31353 -30204,7212:469,-129,26,0,0,0.306475 -30205,7212:468,-128,26,0,0,0.291873 -30206,7212:467,-127,26,0,0,0.287096 -30207,7212:466,-126,26,0,0,0.286067 -30208,7212:465,-125,26,0,0,0.277089 -30209,7212:364,-124,26,0,0,0.264432 -30210,7207:465,-75,26,0,0,0.259466 -30211,7207:364,-74,26,0,0,0.295239 -30212,7207:363,-73,26,0,0,0.354964 -30213,7207:362,-72,26,0,0,0.441818 -30214,7207:361,-71,26,0,0,0.431608 -30215,7207:360,-70,26,0,0,0.436934 -30216,7206:469,-69,26,0,0,0.438249 -30217,7206:468,-68,26,0,0,0.434332 -30218,7206:467,-67,26,0,0,0.486995 -30219,7206:466,-66,26,0,0,0.477964 -30220,7206:465,-65,26,0,0,0.470075 -30221,7206:364,-64,26,0,0,0.465675 -30222,7206:363,-63,26,0,0,0.418352 -30223,7206:362,-62,26,0,0,0.418452 -30224,7206:361,-61,26,0,0,0.456739 -30225,7206:360,-60,26,0,0,0.442199 -30226,7205:469,-59,26,0,0,0.435519 -30227,7205:468,-58,26,0,0,0.431835 -30228,7205:467,-57,26,0,0,0.433196 -30229,7205:466,-56,26,0,0,0.40923 -30230,7205:465,-55,26,0,0,0.416029 -30231,7205:364,-54,26,0,0,0.424966 -30232,7205:363,-53,26,0,0,0.382165 -30233,7205:362,-52,26,0,0,0.42341 -30234,7205:361,-51,26,0,0,0.403802 -30235,7205:360,-50,26,0,0,0.395593 -30236,7204:469,-49,26,0,0,0.392772 -30237,7204:468,-48,26,0,0,0.392551 -30238,7204:467,-47,26,0,0,0.388931 -30239,7204:466,-46,26,0,0,0.381656 -30240,7204:465,-45,26,0,0,0.365167 -30241,7204:364,-44,26,0,0,0.360701 -30242,7204:363,-43,26,0,0,0.376456 -30243,7204:362,-42,26,0,0,0.38859 -30244,7204:361,-41,26,0,0,0.37335 -30245,7204:360,-40,26,0,0,0.380178 -30246,7203:469,-39,26,0,0,0.377325 -30247,7203:468,-38,26,0,0,0.370302 -30248,7203:467,-37,26,0,0,0.373182 -30249,7203:466,-36,26,0,0,0.366668 -30250,7203:465,-35,26,0,0,0.360866 -30251,7203:364,-34,26,0,0,0.359185 -30252,7203:363,-33,26,0,0,0.349478 -30253,7203:362,-32,26,0,0,0.353953 -30254,7203:361,-31,26,0,0,0.354164 -30255,7203:360,-30,26,0,0,0.346797 -30256,7202:469,-29,26,0,0,0.348847 -30257,7202:468,-28,26,0,0,0.342365 -30258,7202:467,-27,26,0,0,0.340725 -30259,7202:466,-26,26,0,0,0.346843 -30260,7202:465,-25,26,0,0,0.347309 -30261,7202:364,-24,26,0,0,0.341648 -30262,7202:363,-23,26,0,0,0.348544 -30263,7202:362,-22,26,0,0,0.342226 -30264,7202:361,-21,26,0,0,0.337248 -30265,7202:360,-20,26,0,0,0.336766 -30266,7201:469,-19,26,0,0,0.346355 -30267,7201:468,-18,26,0,0,0.346401 -30268,7201:467,-17,26,0,0,0.352662 -30269,7201:466,-16,26,0,0,0.352427 -30270,7201:465,-15,26,0,0,0.347961 -30271,7201:364,-14,26,0,0,0.350647 -30272,7201:363,-13,26,0,0,0.35574 -30273,7201:362,-12,26,0,0,0.361696 -30274,7201:361,-11,26,0,0,0.353811 -30275,7201:360,-10,26,0,0,0.32548 -30276,1200:361,0,26,0,0,0.369775 -30277,1200:361,1,26,0,0,0.371141 -30278,1200:362,2,26,0,0,0.375324 -30279,1200:363,3,26,0,0,0.379887 -30280,1200:364,4,26,0,0,0.379742 -30281,1200:465,5,26,0,0,0.381073 -30282,1200:466,6,26,0,0,0.377759 -30283,1200:467,7,26,0,0,0.371549 -30284,1201:360,10,26,0,0,0.367814 -30285,1201:361,11,26,0,0,0.373278 -30286,1201:362,12,26,0,0,0.372653 -30287,1201:363,13,26,0,0,0.369799 -30288,1201:364,14,26,0,0,0.374481 -30289,1201:465,15,26,0,0,0.377952 -30290,1201:467,17,26,0,0,0.392135 -30291,1201:468,18,26,0,0,0.390348 -30292,1201:469,19,26,0,0,0.402319 -30293,1202:360,20,26,0,0,0.419327 -30294,1202:364,24,26,0,0,0.402048 -30295,1202:465,25,26,0,0,0.413161 -30296,1202:466,26,26,0,0,0.426021 -30297,1211:469,119,26,0,0,0.18548 -30298,1212:360,120,26,0,0,0.219301 -30299,1212:361,121,26,0,0,0.246727 -30300,1212:362,122,26,0,0,0.26867 -30301,1212:363,123,26,0,0,0.261406 -30302,1212:364,124,26,0,0,0.254796 -30303,1212:465,125,26,0,0,0.223873 -30304,1212:469,129,26,0,0,0.371621 -30305,1213:360,130,26,0,0,0.326676 -30306,1213:361,131,26,0,0,0.301281 -30307,1213:362,132,26,0,0,0.328102 -30308,1213:363,133,26,0,0,0.335001 -30309,1213:364,134,26,0,0,0.294427 -30310,1213:465,135,26,0,0,0.316545 -30311,1213:466,136,26,0,0,0.275487 -30312,1213:467,137,26,0,0,0.348988 -30313,1213:468,138,26,0,0,0.304035 -30314,1213:469,139,26,0,0,0.371381 -30315,1214:360,140,26,0,0,0.373038 -30316,1214:363,143,26,0,0,0.314659 -30317,1214:364,144,26,0,0,0.40856 -30318,1214:465,145,26,0,0,0.35706 -30319,1214:466,146,26,0,0,0.297467 -30320,1214:467,147,26,0,0,0.283201 -30321,1214:468,148,26,0,0,0.29251 -30322,1214:469,149,26,0,0,0.322285 -30323,1215:360,150,26,0,0,0.326022 -30324,1215:361,151,26,0,0,0.320336 -30325,1215:362,152,26,0,0,0.32168 -30326,1215:363,153,26,0,0,0.311543 -30327,1215:364,154,26,0,0,0.319464 -30328,1215:465,155,26,0,0,0.334132 -30329,1215:466,156,26,0,0,0.323004 -30330,1215:467,157,26,0,0,0.341718 -30331,1215:468,158,26,0,0,0.344334 -30332,1215:469,159,26,0,0,0.372894 -30333,1216:360,160,26,0,0,0.331805 -30334,1216:361,161,26,0,0,0.324691 -30335,1216:362,162,26,0,0,0.364833 -30336,1216:363,163,26,0,0,0.374481 -30337,1216:364,164,26,0,0,0.316567 -30338,1216:465,165,26,0,0,0.343059 -30339,1216:466,166,26,0,0,0.335047 -30340,1216:467,167,26,0,0,0.319867 -30341,1216:468,168,26,0,0,0.317101 -30342,1216:469,169,26,0,0,0.312933 -30343,1217:360,170,26,0,0,0.307306 -30344,1217:361,171,26,0,0,0.31042 -30345,1217:362,172,26,0,0,0.307678 -30346,1217:363,173,26,0,0,0.302364 -30347,1217:364,174,26,0,0,0.285815 -30348,1217:465,175,26,0,0,0.291469 -30349,1217:466,176,26,0,0,0.288613 -30350,1217:467,177,26,0,0,0.28029 -30351,1217:468,178,26,0,0,0.265572 -30352,1217:469,179,26,0,0,0.273992 -30353,1218:360,180,26,0,0,0.270126 -30354,7218:370,-180,27,0,0,0.247568 -30355,7217:479,-179,27,0,0,0.240687 -30356,7217:478,-178,27,0,0,0.240668 -30357,7217:477,-177,27,0,0,0.236172 -30358,7217:476,-176,27,0,0,0.237955 -30359,7217:475,-175,27,0,0,0.236431 -30360,7217:374,-174,27,0,0,0.235376 -30361,7217:373,-173,27,0,0,0.23146 -30362,7217:372,-172,27,0,0,0.233421 -30363,7217:371,-171,27,0,0,0.231514 -30364,7217:370,-170,27,0,0,0.233605 -30365,7216:479,-169,27,0,0,0.235505 -30366,7216:478,-168,27,0,0,0.23062 -30367,7216:477,-167,27,0,0,0.230949 -30368,7216:476,-166,27,0,0,0.236339 -30369,7216:475,-165,27,0,0,0.238814 -30370,7216:374,-164,27,0,0,0.240818 -30371,7216:373,-163,27,0,0,0.24667 -30372,7216:372,-162,27,0,0,0.24968 -30373,7216:371,-161,27,0,0,0.248334 -30374,7216:370,-160,27,0,0,0.247071 -30375,7215:479,-159,27,0,0,0.246593 -30376,7215:478,-158,27,0,0,0.249468 -30377,7215:477,-157,27,0,0,0.254249 -30378,7215:476,-156,27,0,0,0.254834 -30379,7215:475,-155,27,0,0,0.262975 -30380,7215:374,-154,27,0,0,0.264112 -30381,7215:373,-153,27,0,0,0.264252 -30382,7215:372,-152,27,0,0,0.26869 -30383,7215:371,-151,27,0,0,0.266114 -30384,7215:370,-150,27,0,0,0.269256 -30385,7214:479,-149,27,0,0,0.275384 -30386,7214:478,-148,27,0,0,0.275425 -30387,7214:477,-147,27,0,0,0.275938 -30388,7214:476,-146,27,0,0,0.284161 -30389,7214:475,-145,27,0,0,0.284182 -30390,7214:374,-144,27,0,0,0.283702 -30391,7214:373,-143,27,0,0,0.282347 -30392,7214:372,-142,27,0,0,0.282576 -30393,7214:371,-141,27,0,0,0.283827 -30394,7214:370,-140,27,0,0,0.286361 -30395,7213:479,-139,27,0,0,0.292892 -30396,7213:478,-138,27,0,0,0.297424 -30397,7213:477,-137,27,0,0,0.293893 -30398,7213:476,-136,27,0,0,0.29663 -30399,7213:475,-135,27,0,0,0.302321 -30400,7213:374,-134,27,0,0,0.305624 -30401,7213:373,-133,27,0,0,0.310266 -30402,7213:372,-132,27,0,0,0.307503 -30403,7213:371,-131,27,0,0,0.302407 -30404,7213:370,-130,27,0,0,0.293766 -30405,7212:479,-129,27,0,0,0.286718 -30406,7212:478,-128,27,0,0,0.27438 -30407,7212:477,-127,27,0,0,0.276287 -30408,7212:476,-126,27,0,0,0.280477 -30409,7212:475,-125,27,0,0,0.273624 -30410,7212:374,-124,27,0,0,0.255654 -30411,7207:373,-73,27,0,0,0.277769 -30412,7207:372,-72,27,0,0,0.325931 -30413,7207:371,-71,27,0,0,0.355764 -30414,7207:370,-70,27,0,0,0.346215 -30415,7206:479,-69,27,0,0,0.3077 -30416,7206:478,-68,27,0,0,0.404544 -30417,7206:477,-67,27,0,0,0.44481 -30418,7206:476,-66,27,0,0,0.464678 -30419,7206:475,-65,27,0,0,0.433726 -30420,7206:374,-64,27,0,0,0.375443 -30421,7206:373,-63,27,0,0,0.425996 -30422,7206:372,-62,27,0,0,0.424163 -30423,7206:371,-61,27,0,0,0.446257 -30424,7206:370,-60,27,0,0,0.447603 -30425,7205:479,-59,27,0,0,0.405733 -30426,7205:478,-58,27,0,0,0.346099 -30427,7205:477,-57,27,0,0,0.371477 -30428,7205:476,-56,27,0,0,0.423109 -30429,7205:475,-55,27,0,0,0.420428 -30430,7205:374,-54,27,0,0,0.385056 -30431,7205:373,-53,27,0,0,0.372389 -30432,7205:372,-52,27,0,0,0.399974 -30433,7205:371,-51,27,0,0,0.412912 -30434,7205:370,-50,27,0,0,0.413435 -30435,7204:479,-49,27,0,0,0.413261 -30436,7204:478,-48,27,0,0,0.408262 -30437,7204:477,-47,27,0,0,0.404965 -30438,7204:476,-46,27,0,0,0.3892 -30439,7204:475,-45,27,0,0,0.386516 -30440,7204:374,-44,27,0,0,0.355152 -30441,7204:373,-43,27,0,0,0.35156 -30442,7204:372,-42,27,0,0,0.351045 -30443,7204:371,-41,27,0,0,0.37347 -30444,7204:370,-40,27,0,0,0.36324 -30445,7203:479,-39,27,0,0,0.347146 -30446,7203:478,-38,27,0,0,0.377349 -30447,7203:477,-37,27,0,0,0.349338 -30448,7203:476,-36,27,0,0,0.349735 -30449,7203:475,-35,27,0,0,0.359138 -30450,7203:374,-34,27,0,0,0.355058 -30451,7203:373,-33,27,0,0,0.350437 -30452,7203:372,-32,27,0,0,0.341948 -30453,7203:371,-31,27,0,0,0.344984 -30454,7203:370,-30,27,0,0,0.341671 -30455,7202:479,-29,27,0,0,0.337868 -30456,7202:478,-28,27,0,0,0.331645 -30457,7202:477,-27,27,0,0,0.331053 -30458,7202:476,-26,27,0,0,0.333173 -30459,7202:475,-25,27,0,0,0.331736 -30460,7202:374,-24,27,0,0,0.327151 -30461,7202:373,-23,27,0,0,0.330189 -30462,7202:372,-22,27,0,0,0.333355 -30463,7202:371,-21,27,0,0,0.327808 -30464,7202:370,-20,27,0,0,0.325818 -30465,7201:479,-19,27,0,0,0.329984 -30466,7201:478,-18,27,0,0,0.324601 -30467,7201:477,-17,27,0,0,0.331417 -30468,7201:476,-16,27,0,0,0.333287 -30469,7201:475,-15,27,0,0,0.330985 -30470,7201:374,-14,27,0,0,0.33372 -30471,7201:373,-13,27,0,0,0.330189 -30472,7201:372,-12,27,0,0,0.340055 -30473,7201:371,-11,27,0,0,0.343476 -30474,7201:370,-10,27,0,0,0.32103 -30475,1200:371,1,27,0,0,0.360629 -30476,1200:372,2,27,0,0,0.359493 -30477,1200:373,3,27,0,0,0.364738 -30478,1200:374,4,27,0,0,0.36846 -30479,1200:475,5,27,0,0,0.367002 -30480,1200:476,6,27,0,0,0.369608 -30481,1200:477,7,27,0,0,0.362384 -30482,1201:370,10,27,0,0,0.364119 -30483,1201:371,11,27,0,0,0.364928 -30484,1201:372,12,27,0,0,0.365071 -30485,1201:373,13,27,0,0,0.367456 -30486,1201:374,14,27,0,0,0.371213 -30487,1201:475,15,27,0,0,0.374336 -30488,1201:477,17,27,0,0,0.3914 -30489,1201:478,18,27,0,0,0.389762 -30490,1201:479,19,27,0,0,0.410597 -30491,1202:373,23,27,0,0,0.396183 -30492,1202:374,24,27,0,0,0.397782 -30493,1202:475,25,27,0,0,0.423386 -30494,1212:370,120,27,0,0,0.188039 -30495,1212:371,121,27,0,0,0.203214 -30496,1212:372,122,27,0,0,0.178702 -30497,1212:374,124,27,0,0,0.190182 -30498,1212:475,125,27,0,0,0.168605 -30499,1212:479,129,27,0,0,0.319017 -30500,1213:370,130,27,0,0,0.315901 -30501,1213:371,131,27,0,0,0.291384 -30502,1213:372,132,27,0,0,0.314482 -30503,1213:373,133,27,0,0,0.307131 -30504,1213:374,134,27,0,0,0.269397 -30505,1213:475,135,27,0,0,0.285333 -30506,1213:476,136,27,0,0,0.25283 -30507,1213:477,137,27,0,0,0.295624 -30508,1213:478,138,27,0,0,0.303774 -30509,1213:479,139,27,0,0,0.304775 -30510,1214:370,140,27,0,0,0.350764 -30511,1214:373,143,27,0,0,0.29603 -30512,1214:374,144,27,0,0,0.377398 -30513,1214:475,145,27,0,0,0.338374 -30514,1214:476,146,27,0,0,0.327264 -30515,1214:477,147,27,0,0,0.353506 -30516,1214:478,148,27,0,0,0.297639 -30517,1214:479,149,27,0,0,0.311851 -30518,1215:370,150,27,0,0,0.318928 -30519,1215:371,151,27,0,0,0.307525 -30520,1215:372,152,27,0,0,0.310552 -30521,1215:373,153,27,0,0,0.314681 -30522,1215:374,154,27,0,0,0.29479 -30523,1215:475,155,27,0,0,0.284831 -30524,1215:476,156,27,0,0,0.281951 -30525,1215:477,157,27,0,0,0.280373 -30526,1215:478,158,27,0,0,0.284475 -30527,1215:479,159,27,0,0,0.276184 -30528,1216:370,160,27,0,0,0.279214 -30529,1216:371,161,27,0,0,0.275261 -30530,1216:372,162,27,0,0,0.322509 -30531,1216:373,163,27,0,0,0.286361 -30532,1216:374,164,27,0,0,0.281349 -30533,1216:475,165,27,0,0,0.301043 -30534,1216:476,166,27,0,0,0.308247 -30535,1216:477,167,27,0,0,0.283222 -30536,1216:478,168,27,0,0,0.280414 -30537,1216:479,169,27,0,0,0.256516 -30538,1217:370,170,27,0,0,0.280497 -30539,1217:371,171,27,0,0,0.28655 -30540,1217:372,172,27,0,0,0.263853 -30541,1217:373,173,27,0,0,0.261286 -30542,1217:374,174,27,0,0,0.24993 -30543,1217:475,175,27,0,0,0.241947 -30544,1217:476,176,27,0,0,0.25423 -30545,1217:477,177,27,0,0,0.264932 -30546,1217:478,178,27,0,0,0.246689 -30547,1217:479,179,27,0,0,0.251261 -30548,1218:370,180,27,0,0,0.247568 -30549,7218:380,-180,28,0,0,0.220782 -30550,7217:489,-179,28,0,0,0.218685 -30551,7217:488,-178,28,0,0,0.218703 -30552,7217:487,-177,28,0,0,0.217494 -30553,7217:486,-176,28,0,0,0.213017 -30554,7217:485,-175,28,0,0,0.2135 -30555,7217:384,-174,28,0,0,0.215699 -30556,7217:383,-173,28,0,0,0.215264 -30557,7217:382,-172,28,0,0,0.213983 -30558,7217:381,-171,28,0,0,0.215403 -30559,7217:380,-170,28,0,0,0.217967 -30560,7216:489,-169,28,0,0,0.217494 -30561,7216:488,-168,28,0,0,0.216099 -30562,7216:487,-167,28,0,0,0.216743 -30563,7216:486,-166,28,0,0,0.221525 -30564,7216:485,-165,28,0,0,0.223801 -30565,7216:384,-164,28,0,0,0.225251 -30566,7216:383,-163,28,0,0,0.223784 -30567,7216:382,-162,28,0,0,0.223587 -30568,7216:381,-161,28,0,0,0.226904 -30569,7216:380,-160,28,0,0,0.231514 -30570,7215:489,-159,28,0,0,0.237695 -30571,7215:488,-158,28,0,0,0.240274 -30572,7215:487,-157,28,0,0,0.238086 -30573,7215:486,-156,28,0,0,0.238235 -30574,7215:485,-155,28,0,0,0.242852 -30575,7215:384,-154,28,0,0,0.240105 -30576,7215:383,-153,28,0,0,0.244405 -30577,7215:382,-152,28,0,0,0.249429 -30578,7215:381,-151,28,0,0,0.249891 -30579,7215:380,-150,28,0,0,0.253063 -30580,7214:489,-149,28,0,0,0.257634 -30581,7214:488,-148,28,0,0,0.258559 -30582,7214:487,-147,28,0,0,0.258343 -30583,7214:486,-146,28,0,0,0.263912 -30584,7214:485,-145,28,0,0,0.267984 -30585,7214:384,-144,28,0,0,0.265993 -30586,7214:383,-143,28,0,0,0.2621 -30587,7214:382,-142,28,0,0,0.266094 -30588,7214:381,-141,28,0,0,0.269762 -30589,7214:380,-140,28,0,0,0.276143 -30590,7213:489,-139,28,0,0,0.281432 -30591,7213:488,-138,28,0,0,0.285438 -30592,7213:487,-137,28,0,0,0.281993 -30593,7213:486,-136,28,0,0,0.281889 -30594,7213:485,-135,28,0,0,0.284559 -30595,7213:384,-134,28,0,0,0.28798 -30596,7213:383,-133,28,0,0,0.284935 -30597,7213:382,-132,28,0,0,0.284329 -30598,7213:381,-131,28,0,0,0.284349 -30599,7213:380,-130,28,0,0,0.284266 -30600,7212:489,-129,28,0,0,0.28243 -30601,7212:488,-128,28,0,0,0.270045 -30602,7212:487,-127,28,0,0,0.268892 -30603,7212:486,-126,28,0,0,0.265392 -30604,7212:485,-125,28,0,0,0.263354 -30605,7207:380,-70,28,0,0,0.201523 -30606,7206:489,-69,28,0,0,0.233605 -30607,7206:488,-68,28,0,0,0.261802 -30608,7206:487,-67,28,0,0,0.259486 -30609,7206:486,-66,28,0,0,0.274176 -30610,7206:485,-65,28,0,0,0.334956 -30611,7206:384,-64,28,0,0,0.299187 -30612,7206:383,-63,28,0,0,0.377759 -30613,7206:382,-62,28,0,0,0.416103 -30614,7206:381,-61,28,0,0,0.423736 -30615,7206:380,-60,28,0,0,0.407543 -30616,7205:489,-59,28,0,0,0.364738 -30617,7205:488,-58,28,0,0,0.296373 -30618,7205:487,-57,28,0,0,0.307744 -30619,7205:486,-56,28,0,0,0.302863 -30620,7205:485,-55,28,0,0,0.322577 -30621,7205:384,-54,28,0,0,0.283326 -30622,7205:383,-53,28,0,0,0.2321 -30623,7205:382,-52,28,0,0,0.231168 -30624,7205:381,-51,28,0,0,0.266174 -30625,7205:380,-50,28,0,0,0.318036 -30626,7204:489,-49,28,0,0,0.349315 -30627,7204:488,-48,28,0,0,0.375998 -30628,7204:487,-47,28,0,0,0.375275 -30629,7204:486,-46,28,0,0,0.299403 -30630,7204:485,-45,28,0,0,0.264952 -30631,7204:384,-44,28,0,0,0.374577 -30632,7204:383,-43,28,0,0,0.384059 -30633,7204:382,-42,28,0,0,0.380396 -30634,7204:381,-41,28,0,0,0.331622 -30635,7204:380,-40,28,0,0,0.346332 -30636,7203:489,-39,28,0,0,0.349198 -30637,7203:488,-38,28,0,0,0.368962 -30638,7203:487,-37,28,0,0,0.360535 -30639,7203:486,-36,28,0,0,0.362883 -30640,7203:485,-35,28,0,0,0.353624 -30641,7203:384,-34,28,0,0,0.352005 -30642,7203:383,-33,28,0,0,0.340147 -30643,7203:382,-32,28,0,0,0.331167 -30644,7203:381,-31,28,0,0,0.331303 -30645,7203:380,-30,28,0,0,0.332648 -30646,7202:489,-29,28,0,0,0.332238 -30647,7202:488,-28,28,0,0,0.331873 -30648,7202:487,-27,28,0,0,0.326157 -30649,7202:486,-26,28,0,0,0.322509 -30650,7202:485,-25,28,0,0,0.322196 -30651,7202:384,-24,28,0,0,0.32047 -30652,7202:383,-23,28,0,0,0.317346 -30653,7202:382,-22,28,0,0,0.316367 -30654,7202:381,-21,28,0,0,0.310091 -30655,7202:380,-20,28,0,0,0.316278 -30656,7201:489,-19,28,0,0,0.31639 -30657,7201:488,-18,28,0,0,0.310926 -30658,7201:487,-17,28,0,0,0.305494 -30659,7201:486,-16,28,0,0,0.310773 -30660,7201:485,-15,28,0,0,0.313884 -30661,7201:384,-14,28,0,0,0.311697 -30662,7201:383,-13,28,0,0,0.312425 -30663,7201:382,-12,28,0,0,0.31539 -30664,7201:381,-11,28,0,0,0.323701 -30665,7201:380,-10,28,0,0,0.305646 -30666,1200:383,3,28,0,0,0.346541 -30667,1200:384,4,28,0,0,0.348474 -30668,1200:485,5,28,0,0,0.356258 -30669,1200:486,6,28,0,0,0.355928 -30670,1200:487,7,28,0,0,0.35999 -30671,1200:488,8,28,0,0,0.35798 -30672,1200:489,9,28,0,0,0.366836 -30673,1201:380,10,28,0,0,0.364904 -30674,1201:381,11,28,0,0,0.363477 -30675,1201:382,12,28,0,0,0.365381 -30676,1201:487,17,28,0,0,0.364333 -30677,1201:488,18,28,0,0,0.370063 -30678,1202:384,24,28,0,0,0.349805 -30679,1202:485,25,28,0,0,0.339272 -30680,1202:487,27,28,0,0,0.313286 -30681,1202:488,28,28,0,0,0.300006 -30682,1212:382,122,28,0,0,0.158296 -30683,1213:381,131,28,0,0,0.237025 -30684,1213:382,132,28,0,0,0.261544 -30685,1213:383,133,28,0,0,0.242437 -30686,1213:384,134,28,0,0,0.269033 -30687,1213:485,135,28,0,0,0.25351 -30688,1213:486,136,28,0,0,0.240743 -30689,1213:487,137,28,0,0,0.278842 -30690,1213:488,138,28,0,0,0.269377 -30691,1213:489,139,28,0,0,0.254094 -30692,1214:380,140,28,0,0,0.255186 -30693,1214:382,142,28,0,0,0.302602 -30694,1214:383,143,28,0,0,0.283263 -30695,1214:384,144,28,0,0,0.208709 -30696,1214:485,145,28,0,0,0.284308 -30697,1214:486,146,28,0,0,0.325683 -30698,1214:487,147,28,0,0,0.321388 -30699,1214:488,148,28,0,0,0.263354 -30700,1214:489,149,28,0,0,0.293169 -30701,1215:380,150,28,0,0,0.272116 -30702,1215:381,151,28,0,0,0.272666 -30703,1215:382,152,28,0,0,0.253355 -30704,1215:383,153,28,0,0,0.268065 -30705,1215:384,154,28,0,0,0.297918 -30706,1215:485,155,28,0,0,0.290092 -30707,1215:486,156,28,0,0,0.28798 -30708,1215:487,157,28,0,0,0.275609 -30709,1215:488,158,28,0,0,0.268407 -30710,1215:489,159,28,0,0,0.266234 -30711,1216:380,160,28,0,0,0.265452 -30712,1216:381,161,28,0,0,0.246212 -30713,1216:382,162,28,0,0,0.238702 -30714,1216:383,163,28,0,0,0.261029 -30715,1216:384,164,28,0,0,0.248277 -30716,1216:485,165,28,0,0,0.257772 -30717,1216:486,166,28,0,0,0.263873 -30718,1216:487,167,28,0,0,0.25252 -30719,1216:488,168,28,0,0,0.243023 -30720,1216:489,169,28,0,0,0.235394 -30721,1217:380,170,28,0,0,0.23872 -30722,1217:381,171,28,0,0,0.251068 -30723,1217:382,172,28,0,0,0.22389 -30724,1217:383,173,28,0,0,0.218598 -30725,1217:384,174,28,0,0,0.227012 -30726,1217:485,175,28,0,0,0.226004 -30727,1217:486,176,28,0,0,0.221295 -30728,1217:487,177,28,0,0,0.221366 -30729,1217:488,178,28,0,0,0.226922 -30730,1217:489,179,28,0,0,0.22667 -30731,1218:380,180,28,0,0,0.220782 -30732,7218:390,-180,29,0,0,0.209218 -30733,7217:499,-179,29,0,0,0.207777 -30734,7217:498,-178,29,0,0,0.203198 -30735,7217:497,-177,29,0,0,0.204047 -30736,7217:496,-176,29,0,0,0.204364 -30737,7217:495,-175,29,0,0,0.201771 -30738,7217:394,-174,29,0,0,0.201423 -30739,7217:393,-173,29,0,0,0.19999 -30740,7217:392,-172,29,0,0,0.19971 -30741,7217:391,-171,29,0,0,0.20197 -30742,7217:390,-170,29,0,0,0.202815 -30743,7216:499,-169,29,0,0,0.202069 -30744,7216:498,-168,29,0,0,0.203015 -30745,7216:497,-167,29,0,0,0.205369 -30746,7216:496,-166,29,0,0,0.208777 -30747,7216:495,-165,29,0,0,0.212741 -30748,7216:394,-164,29,0,0,0.211539 -30749,7216:393,-163,29,0,0,0.208183 -30750,7216:392,-162,29,0,0,0.209048 -30751,7216:391,-161,29,0,0,0.211762 -30752,7216:390,-160,29,0,0,0.217232 -30753,7215:499,-159,29,0,0,0.222839 -30754,7215:498,-158,29,0,0,0.222075 -30755,7215:497,-157,29,0,0,0.222928 -30756,7215:496,-156,29,0,0,0.225933 -30757,7215:495,-155,29,0,0,0.226778 -30758,7215:394,-154,29,0,0,0.233109 -30759,7215:393,-153,29,0,0,0.233992 -30760,7215:392,-152,29,0,0,0.232907 -30761,7215:391,-151,29,0,0,0.237732 -30762,7215:390,-150,29,0,0,0.234286 -30763,7214:499,-149,29,0,0,0.236079 -30764,7214:498,-148,29,0,0,0.243666 -30765,7214:497,-147,29,0,0,0.244765 -30766,7214:496,-146,29,0,0,0.250643 -30767,7214:495,-145,29,0,0,0.252869 -30768,7214:394,-144,29,0,0,0.253646 -30769,7214:393,-143,29,0,0,0.252209 -30770,7214:392,-142,29,0,0,0.251319 -30771,7214:391,-141,29,0,0,0.254952 -30772,7214:390,-140,29,0,0,0.256477 -30773,7213:499,-139,29,0,0,0.257929 -30774,7213:498,-138,29,0,0,0.264372 -30775,7213:497,-137,29,0,0,0.267621 -30776,7213:496,-136,29,0,0,0.269114 -30777,7213:495,-135,29,0,0,0.267481 -30778,7213:394,-134,29,0,0,0.270856 -30779,7213:393,-133,29,0,0,0.27389 -30780,7213:392,-132,29,0,0,0.272645 -30781,7213:391,-131,29,0,0,0.273502 -30782,7213:390,-130,29,0,0,0.275897 -30783,7212:499,-129,29,0,0,0.270268 -30784,7212:498,-128,29,0,0,0.256065 -30785,7212:497,-127,29,0,0,0.25846 -30786,7212:496,-126,29,0,0,0.260415 -30787,7212:495,-125,29,0,0,0.254074 -30788,7207:390,-70,29,0,0,0.216499 -30789,7206:499,-69,29,0,0,0.216482 -30790,7206:498,-68,29,0,0,0.22398 -30791,7206:497,-67,29,0,0,0.221933 -30792,7206:496,-66,29,0,0,0.233182 -30793,7206:495,-65,29,0,0,0.233973 -30794,7206:394,-64,29,0,0,0.215455 -30795,7206:393,-63,29,0,0,0.217931 -30796,7206:392,-62,29,0,0,0.234194 -30797,7206:391,-61,29,0,0,0.230201 -30798,7206:390,-60,29,0,0,0.218282 -30799,7205:499,-59,29,0,0,0.230985 -30800,7205:498,-58,29,0,0,0.273053 -30801,7205:497,-57,29,0,0,0.279028 -30802,7205:496,-56,29,0,0,0.307328 -30803,7205:495,-55,29,0,0,0.29794 -30804,7205:394,-54,29,0,0,0.204749 -30805,7205:393,-53,29,0,0,0.213206 -30806,7205:392,-52,29,0,0,0.208895 -30807,7205:391,-51,29,0,0,0.186086 -30808,7205:390,-50,29,0,0,0.151228 -30809,7204:499,-49,29,0,0,0.131819 -30810,7204:498,-48,29,0,0,0.345378 -30811,7204:497,-47,29,0,0,0.297016 -30812,7204:496,-46,29,0,0,0.301433 -30813,7204:495,-45,29,0,0,0.247549 -30814,7204:394,-44,29,0,0,0.26738 -30815,7204:393,-43,29,0,0,0.287349 -30816,7204:392,-42,29,0,0,0.294257 -30817,7204:391,-41,29,0,0,0.329735 -30818,7204:390,-40,29,0,0,0.326225 -30819,7203:499,-39,29,0,0,0.320582 -30820,7203:498,-38,29,0,0,0.317368 -30821,7203:497,-37,29,0,0,0.289479 -30822,7203:496,-36,29,0,0,0.31579 -30823,7203:495,-35,29,0,0,0.313265 -30824,7203:394,-34,29,0,0,0.336766 -30825,7203:393,-33,29,0,0,0.317034 -30826,7203:392,-32,29,0,0,0.315812 -30827,7203:391,-31,29,0,0,0.328963 -30828,7203:390,-30,29,0,0,0.331713 -30829,7202:499,-29,29,0,0,0.329735 -30830,7202:498,-28,29,0,0,0.329213 -30831,7202:497,-27,29,0,0,0.322577 -30832,7202:496,-26,29,0,0,0.32038 -30833,7202:495,-25,29,0,0,0.317168 -30834,7202:394,-24,29,0,0,0.312425 -30835,7202:393,-23,29,0,0,0.310992 -30836,7202:392,-22,29,0,0,0.304362 -30837,7202:391,-21,29,0,0,0.30665 -30838,7202:390,-20,29,0,0,0.303383 -30839,7201:499,-19,29,0,0,0.298455 -30840,7201:498,-18,29,0,0,0.300481 -30841,7201:497,-17,29,0,0,0.296416 -30842,7201:496,-16,29,0,0,0.298413 -30843,7201:495,-15,29,0,0,0.300287 -30844,7201:394,-14,29,0,0,0.304188 -30845,7201:393,-13,29,0,0,0.296909 -30846,7201:392,-12,29,0,0,0.298176 -30847,7201:391,-11,29,0,0,0.311367 -30848,7201:390,-10,29,0,0,0.293404 -30849,1200:393,3,29,0,0,0.34218 -30850,1200:394,4,29,0,0,0.336192 -30851,1200:495,5,29,0,0,0.344334 -30852,1200:496,6,29,0,0,0.348474 -30853,1200:497,7,29,0,0,0.352427 -30854,1200:498,8,29,0,0,0.355081 -30855,1200:499,9,29,0,0,0.360961 -30856,1201:390,10,29,0,0,0.360724 -30857,1201:394,14,29,0,0,0.354328 -30858,1201:495,15,29,0,0,0.360866 -30859,1201:496,16,29,0,0,0.371885 -30860,1201:497,17,29,0,0,0.374168 -30861,1201:498,18,29,0,0,0.388077 -30862,1202:498,28,29,0,0,0.281723 -30863,1202:499,29,29,0,0,0.279669 -30864,1203:390,30,29,0,0,0.2788 -30865,1203:498,38,29,0,0,0.287538 -30866,1213:391,131,29,0,0,0.195766 -30867,1213:392,132,29,0,0,0.174119 -30868,1213:393,133,29,0,0,0.181585 -30869,1213:394,134,29,0,0,0.183009 -30870,1213:495,135,29,0,0,0.189361 -30871,1213:496,136,29,0,0,0.196398 -30872,1213:497,137,29,0,0,0.192663 -30873,1213:498,138,29,0,0,0.22491 -30874,1213:499,139,29,0,0,0.237583 -30875,1214:390,140,29,0,0,0.227897 -30876,1214:495,145,29,0,0,0.152671 -30877,1214:496,146,29,0,0,0.147069 -30878,1214:497,147,29,0,0,0.198269 -30879,1214:498,148,29,0,0,0.219635 -30880,1214:499,149,29,0,0,0.292234 -30881,1215:390,150,29,0,0,0.276822 -30882,1215:391,151,29,0,0,0.269579 -30883,1215:392,152,29,0,0,0.161317 -30884,1215:393,153,29,0,0,0.179004 -30885,1215:394,154,29,0,0,0.196625 -30886,1215:495,155,29,0,0,0.203964 -30887,1215:496,156,29,0,0,0.20727 -30888,1215:497,157,29,0,0,0.202982 -30889,1215:498,158,29,0,0,0.212157 -30890,1215:499,159,29,0,0,0.237639 -30891,1216:390,160,29,0,0,0.232999 -30892,1216:391,161,29,0,0,0.226256 -30893,1216:392,162,29,0,0,0.243249 -30894,1216:393,163,29,0,0,0.217897 -30895,1216:394,164,29,0,0,0.223623 -30896,1216:495,165,29,0,0,0.228313 -30897,1216:496,166,29,0,0,0.206444 -30898,1216:497,167,29,0,0,0.201407 -30899,1216:498,168,29,0,0,0.199349 -30900,1216:499,169,29,0,0,0.208742 -30901,1217:390,170,29,0,0,0.204883 -30902,1217:391,171,29,0,0,0.224355 -30903,1217:392,172,29,0,0,0.214363 -30904,1217:393,173,29,0,0,0.204214 -30905,1217:394,174,29,0,0,0.194459 -30906,1217:495,175,29,0,0,0.204833 -30907,1217:496,176,29,0,0,0.215525 -30908,1217:497,177,29,0,0,0.207152 -30909,1217:498,178,29,0,0,0.202268 -30910,1217:499,179,29,0,0,0.205973 -30911,1218:390,180,29,0,0,0.209218 -30912,7318:100,-180,30,0,0,0.184427 -30913,7317:209,-179,30,0,0,0.185884 -30914,7317:208,-178,30,0,0,0.191244 -30915,7317:207,-177,30,0,0,0.191038 -30916,7317:206,-176,30,0,0,0.1922 -30917,7317:205,-175,30,0,0,0.192855 -30918,7317:104,-174,30,0,0,0.190974 -30919,7317:103,-173,30,0,0,0.18955 -30920,7317:102,-172,30,0,0,0.188039 -30921,7317:101,-171,30,0,0,0.187225 -30922,7317:100,-170,30,0,0,0.188668 -30923,7316:209,-169,30,0,0,0.188856 -30924,7316:208,-168,30,0,0,0.189629 -30925,7316:207,-167,30,0,0,0.189093 -30926,7316:206,-166,30,0,0,0.192455 -30927,7316:205,-165,30,0,0,0.200401 -30928,7316:104,-164,30,0,0,0.197747 -30929,7316:103,-163,30,0,0,0.195475 -30930,7316:102,-162,30,0,0,0.19669 -30931,7316:101,-161,30,0,0,0.198286 -30932,7316:100,-160,30,0,0,0.207371 -30933,7315:209,-159,30,0,0,0.209031 -30934,7315:208,-158,30,0,0,0.204281 -30935,7315:207,-157,30,0,0,0.212965 -30936,7315:206,-156,30,0,0,0.212741 -30937,7315:205,-155,30,0,0,0.214709 -30938,7315:104,-154,30,0,0,0.218265 -30939,7315:103,-153,30,0,0,0.215316 -30940,7315:102,-152,30,0,0,0.219072 -30941,7315:101,-151,30,0,0,0.218528 -30942,7315:100,-150,30,0,0,0.2211 -30943,7314:209,-149,30,0,0,0.230894 -30944,7314:208,-148,30,0,0,0.232357 -30945,7314:207,-147,30,0,0,0.23412 -30946,7314:206,-146,30,0,0,0.2379 -30947,7314:205,-145,30,0,0,0.240349 -30948,7314:104,-144,30,0,0,0.239561 -30949,7314:103,-143,30,0,0,0.238272 -30950,7314:102,-142,30,0,0,0.23872 -30951,7314:101,-141,30,0,0,0.240123 -30952,7314:100,-140,30,0,0,0.245964 -30953,7313:209,-139,30,0,0,0.247893 -30954,7313:208,-138,30,0,0,0.259367 -30955,7313:207,-137,30,0,0,0.256124 -30956,7313:206,-136,30,0,0,0.258185 -30957,7313:205,-135,30,0,0,0.25994 -30958,7313:104,-134,30,0,0,0.264692 -30959,7313:103,-133,30,0,0,0.262796 -30960,7313:102,-132,30,0,0,0.259111 -30961,7313:101,-131,30,0,0,0.259447 -30962,7313:100,-130,30,0,0,0.259604 -30963,7312:209,-129,30,0,0,0.252287 -30964,7312:208,-128,30,0,0,0.254952 -30965,7312:207,-127,30,0,0,0.257969 -30966,7312:206,-126,30,0,0,0.247415 -30967,7312:205,-125,30,0,0,0.243798 -30968,7306:209,-69,30,0,0,0.204314 -30969,7306:208,-68,30,0,0,0.202583 -30970,7306:207,-67,30,0,0,0.203514 -30971,7306:206,-66,30,0,0,0.211556 -30972,7306:104,-64,30,0,0,0.204816 -30973,7306:103,-63,30,0,0,0.196365 -30974,7306:102,-62,30,0,0,0.190848 -30975,7306:101,-61,30,0,0,0.196219 -30976,7306:100,-60,30,0,0,0.19169 -30977,7305:209,-59,30,0,0,0.181815 -30978,7305:208,-58,30,0,0,0.16274 -30979,7305:207,-57,30,0,0,0.161415 -30980,7305:206,-56,30,0,0,0.201589 -30981,7305:205,-55,30,0,0,0.18966 -30982,7305:104,-54,30,0,0,0.165049 -30983,7305:103,-53,30,0,0,0.178611 -30984,7305:102,-52,30,0,0,0.170007 -30985,7305:101,-51,30,0,0,0.159257 -30986,7305:100,-50,30,0,0,0.150583 -30987,7304:209,-49,30,0,0,0.127426 -30988,7304:208,-48,30,0,0,0.151294 -30989,7304:207,-47,30,0,0,0.324083 -30990,7304:206,-46,30,0,0,0.311037 -30991,7304:205,-45,30,0,0,0.212243 -30992,7304:104,-44,30,0,0,0.276616 -30993,7304:103,-43,30,0,0,0.271993 -30994,7304:102,-42,30,0,0,0.291448 -30995,7304:101,-41,30,0,0,0.301195 -30996,7304:100,-40,30,0,0,0.253899 -30997,7303:209,-39,30,0,0,0.275589 -30998,7303:208,-38,30,0,0,0.274933 -30999,7303:207,-37,30,0,0,0.273481 -31000,7303:206,-36,30,0,0,0.293276 -31001,7303:205,-35,30,0,0,0.330621 -31002,7303:104,-34,30,0,0,0.329303 -31003,7303:103,-33,30,0,0,0.297402 -31004,7303:102,-32,30,0,0,0.29633 -31005,7303:101,-31,30,0,0,0.310442 -31006,7303:100,-30,30,0,0,0.318839 -31007,7302:209,-29,30,0,0,0.328306 -31008,7302:208,-28,30,0,0,0.324511 -31009,7302:207,-27,30,0,0,0.312183 -31010,7302:206,-26,30,0,0,0.308181 -31011,7302:205,-25,30,0,0,0.309454 -31012,7302:104,-24,30,0,0,0.307437 -31013,7302:103,-23,30,0,0,0.303774 -31014,7302:102,-22,30,0,0,0.299381 -31015,7302:101,-21,30,0,0,0.298047 -31016,7302:100,-20,30,0,0,0.295495 -31017,7301:209,-19,30,0,0,0.292191 -31018,7301:208,-18,30,0,0,0.294534 -31019,7301:207,-17,30,0,0,0.290769 -31020,7301:206,-16,30,0,0,0.291915 -31021,7301:205,-15,30,0,0,0.290748 -31022,7301:104,-14,30,0,0,0.293382 -31023,7301:103,-13,30,0,0,0.290621 -31024,7301:102,-12,30,0,0,0.290176 -31025,7301:101,-11,30,0,0,0.287665 -31026,7301:100,-10,30,0,0,0.287622 -31027,7300:209,-9,30,0,0,0.28988 -31028,7300:208,-8,30,0,0,0.293042 -31029,7300:207,-7,30,0,0,0.294769 -31030,7300:206,-6,30,0,0,0.295923 -31031,7300:205,-5,30,0,0,0.295303 -31032,7300:104,-4,30,0,0,0.297123 -31033,7300:103,-3,30,0,0,0.298714 -31034,1300:207,7,30,0,0,0.350179 -31035,1300:208,8,30,0,0,0.349525 -31036,1300:209,9,30,0,0,0.35487 -31037,1301:103,13,30,0,0,0.319286 -31038,1301:104,14,30,0,0,0.368675 -31039,1301:205,15,30,0,0,0.374649 -31040,1301:206,16,30,0,0,0.320045 -31041,1302:207,27,30,0,0,0.281245 -31042,1302:208,28,30,0,0,0.267944 -31043,1302:209,29,30,0,0,0.26738 -31044,1303:100,30,30,0,0,0.270876 -31045,1303:101,31,30,0,0,0.273216 -31046,1303:102,32,30,0,0,0.282118 -31047,1303:103,33,30,0,0,0.285878 -31048,1303:104,34,30,0,0,0.286298 -31049,1303:205,35,30,0,0,0.284663 -31050,1303:206,36,30,0,0,0.27604 -31051,1303:207,37,30,0,0,0.261227 -31052,1303:208,38,30,0,0,0.263095 -31053,1303:209,39,30,0,0,0.275302 -31054,1304:100,40,30,0,0,0.288107 -31055,1313:206,136,30,0,0,0.168001 -31056,1313:207,137,30,0,0,0.181173 -31057,1313:208,138,30,0,0,0.219565 -31058,1313:209,139,30,0,0,0.233605 -31059,1314:100,140,30,0,0,0.203264 -31060,1314:101,141,30,0,0,0.201126 -31061,1314:102,142,30,0,0,0.199776 -31062,1314:206,146,30,0,0,0.156294 -31063,1314:207,147,30,0,0,0.147043 -31064,1314:208,148,30,0,0,0.139109 -31065,1314:209,149,30,0,0,0.142138 -31066,1315:100,150,30,0,0,0.141114 -31067,1315:101,151,30,0,0,0.137322 -31068,1315:102,152,30,0,0,0.146683 -31069,1315:103,153,30,0,0,0.152618 -31070,1315:104,154,30,0,0,0.14658 -31071,1315:205,155,30,0,0,0.150622 -31072,1315:206,156,30,0,0,0.188904 -31073,1315:207,157,30,0,0,0.188668 -31074,1315:208,158,30,0,0,0.179866 -31075,1315:209,159,30,0,0,0.175008 -31076,1316:100,160,30,0,0,0.184427 -31077,1316:101,161,30,0,0,0.23135 -31078,1316:102,162,30,0,0,0.215751 -31079,1316:103,163,30,0,0,0.208793 -31080,1316:104,164,30,0,0,0.200796 -31081,1316:205,165,30,0,0,0.196414 -31082,1316:206,166,30,0,0,0.194943 -31083,1316:207,167,30,0,0,0.186258 -31084,1316:208,168,30,0,0,0.192519 -31085,1316:209,169,30,0,0,0.189156 -31086,1317:100,170,30,0,0,0.177559 -31087,1317:101,171,30,0,0,0.18435 -31088,1317:102,172,30,0,0,0.205234 -31089,1317:103,173,30,0,0,0.196171 -31090,1317:104,174,30,0,0,0.175171 -31091,1317:205,175,30,0,0,0.183517 -31092,1317:206,176,30,0,0,0.189929 -31093,1317:207,177,30,0,0,0.19004 -31094,1317:208,178,30,0,0,0.187366 -31095,1317:209,179,30,0,0,0.188196 -31096,1318:100,180,30,0,0,0.184427 -31097,7318:110,-180,31,0,0,0.169023 -31098,7317:219,-179,31,0,0,0.17066 -31099,7317:218,-178,31,0,0,0.177244 -31100,7317:217,-177,31,0,0,0.176108 -31101,7317:216,-176,31,0,0,0.177289 -31102,7317:215,-175,31,0,0,0.182059 -31103,7317:114,-174,31,0,0,0.177529 -31104,7317:113,-173,31,0,0,0.176944 -31105,7317:112,-172,31,0,0,0.179412 -31106,7317:111,-171,31,0,0,0.177334 -31107,7317:110,-170,31,0,0,0.176795 -31108,7316:219,-169,31,0,0,0.178702 -31109,7316:218,-168,31,0,0,0.181219 -31110,7316:217,-167,31,0,0,0.182136 -31111,7316:216,-166,31,0,0,0.183271 -31112,7316:215,-165,31,0,0,0.184628 -31113,7316:114,-164,31,0,0,0.1871 -31114,7316:113,-163,31,0,0,0.188447 -31115,7316:112,-162,31,0,0,0.189471 -31116,7316:111,-161,31,0,0,0.189266 -31117,7316:110,-160,31,0,0,0.19177 -31118,7315:219,-159,31,0,0,0.191372 -31119,7315:218,-158,31,0,0,0.189597 -31120,7315:217,-157,31,0,0,0.198204 -31121,7315:216,-156,31,0,0,0.200467 -31122,7315:215,-155,31,0,0,0.195265 -31123,7315:114,-154,31,0,0,0.194943 -31124,7315:113,-153,31,0,0,0.196625 -31125,7315:112,-152,31,0,0,0.202965 -31126,7315:111,-151,31,0,0,0.209439 -31127,7315:110,-150,31,0,0,0.209184 -31128,7314:219,-149,31,0,0,0.213017 -31129,7314:218,-148,31,0,0,0.218335 -31130,7314:217,-147,31,0,0,0.221702 -31131,7314:216,-146,31,0,0,0.22275 -31132,7314:215,-145,31,0,0,0.222359 -31133,7314:114,-144,31,0,0,0.227662 -31134,7314:113,-143,31,0,0,0.226742 -31135,7314:112,-142,31,0,0,0.227103 -31136,7314:111,-141,31,0,0,0.234157 -31137,7314:110,-140,31,0,0,0.235542 -31138,7313:219,-139,31,0,0,0.233826 -31139,7313:218,-138,31,0,0,0.242267 -31140,7313:217,-137,31,0,0,0.244823 -31141,7313:216,-136,31,0,0,0.2502 -31142,7313:215,-135,31,0,0,0.250392 -31143,7313:114,-134,31,0,0,0.250778 -31144,7313:113,-133,31,0,0,0.248488 -31145,7313:112,-132,31,0,0,0.250045 -31146,7313:111,-131,31,0,0,0.251648 -31147,7313:110,-130,31,0,0,0.249103 -31148,7312:219,-129,31,0,0,0.245374 -31149,7312:218,-128,31,0,0,0.249949 -31150,7312:217,-127,31,0,0,0.249218 -31151,7312:216,-126,31,0,0,0.247262 -31152,7312:215,-125,31,0,0,0.242116 -31153,7306:216,-66,31,0,0,0.2025 -31154,7306:112,-62,31,0,0,0.173279 -31155,7306:111,-61,31,0,0,0.1719 -31156,7306:110,-60,31,0,0,0.163259 -31157,7305:219,-59,31,0,0,0.161874 -31158,7305:218,-58,31,0,0,0.152857 -31159,7305:217,-57,31,0,0,0.146529 -31160,7305:216,-56,31,0,0,0.142063 -31161,7305:215,-55,31,0,0,0.133605 -31162,7305:114,-54,31,0,0,0.144472 -31163,7305:113,-53,31,0,0,0.142741 -31164,7305:112,-52,31,0,0,0.143005 -31165,7305:111,-51,31,0,0,0.143459 -31166,7305:110,-50,31,0,0,0.135748 -31167,7304:219,-49,31,0,0,0.129149 -31168,7304:218,-48,31,0,0,0.128988 -31169,7304:217,-47,31,0,0,0.200681 -31170,7304:216,-46,31,0,0,0.2025 -31171,7304:215,-45,31,0,0,0.237974 -31172,7304:114,-44,31,0,0,0.255303 -31173,7304:113,-43,31,0,0,0.251667 -31174,7304:112,-42,31,0,0,0.251899 -31175,7304:111,-41,31,0,0,0.249391 -31176,7304:110,-40,31,0,0,0.232705 -31177,7303:219,-39,31,0,0,0.260177 -31178,7303:218,-38,31,0,0,0.274422 -31179,7303:217,-37,31,0,0,0.268549 -31180,7303:216,-36,31,0,0,0.275118 -31181,7303:215,-35,31,0,0,0.294448 -31182,7303:114,-34,31,0,0,0.306716 -31183,7303:113,-33,31,0,0,0.275897 -31184,7303:112,-32,31,0,0,0.289267 -31185,7303:111,-31,31,0,0,0.281266 -31186,7303:110,-30,31,0,0,0.291066 -31187,7302:219,-29,31,0,0,0.323611 -31188,7302:218,-28,31,0,0,0.325007 -31189,7302:217,-27,31,0,0,0.315834 -31190,7302:216,-26,31,0,0,0.315479 -31191,7302:215,-25,31,0,0,0.315945 -31192,7302:114,-24,31,0,0,0.31042 -31193,7302:113,-23,31,0,0,0.306279 -31194,7302:112,-22,31,0,0,0.299532 -31195,7302:111,-21,31,0,0,0.29736 -31196,7302:110,-20,31,0,0,0.290155 -31197,7301:219,-19,31,0,0,0.286424 -31198,7301:218,-18,31,0,0,0.284141 -31199,7301:217,-17,31,0,0,0.284768 -31200,7301:216,-16,31,0,0,0.283451 -31201,7301:215,-15,31,0,0,0.284287 -31202,7301:114,-14,31,0,0,0.285815 -31203,7301:113,-13,31,0,0,0.281411 -31204,7301:112,-12,31,0,0,0.282139 -31205,7301:111,-11,31,0,0,0.285229 -31206,7301:110,-10,31,0,0,0.282201 -31207,7300:219,-9,31,0,0,0.281806 -31208,7300:218,-8,31,0,0,0.280394 -31209,7300:217,-7,31,0,0,0.283702 -31210,7300:216,-6,31,0,0,0.28437 -31211,7300:215,-5,31,0,0,0.288212 -31212,7300:114,-4,31,0,0,0.287054 -31213,7300:113,-3,31,0,0,0.293915 -31214,7300:112,-2,31,0,0,0.27049 -31215,1301:112,12,31,0,0,0.324421 -31216,1301:113,13,31,0,0,0.348825 -31217,1301:114,14,31,0,0,0.326405 -31218,1302:218,28,31,0,0,0.27236 -31219,1302:219,29,31,0,0,0.266696 -31220,1303:110,30,31,0,0,0.270247 -31221,1303:111,31,31,0,0,0.273624 -31222,1303:112,32,31,0,0,0.275466 -31223,1303:113,33,31,0,0,0.281058 -31224,1303:114,34,31,0,0,0.277089 -31225,1303:215,35,31,0,0,0.262458 -31226,1303:216,36,31,0,0,0.258303 -31227,1303:217,37,31,0,0,0.264792 -31228,1303:218,38,31,0,0,0.267903 -31229,1303:219,39,31,0,0,0.28166 -31230,1304:110,40,31,0,0,0.291108 -31231,1313:218,138,31,0,0,0.173574 -31232,1313:219,139,31,0,0,0.185124 -31233,1314:110,140,31,0,0,0.184551 -31234,1314:111,141,31,0,0,0.181371 -31235,1314:112,142,31,0,0,0.195055 -31236,1314:114,144,31,0,0,0.126016 -31237,1314:215,145,31,0,0,0.110916 -31238,1314:216,146,31,0,0,0.136351 -31239,1314:217,147,31,0,0,0.132207 -31240,1314:218,148,31,0,0,0.1337 -31241,1314:219,149,31,0,0,0.149561 -31242,1315:110,150,31,0,0,0.141838 -31243,1315:111,151,31,0,0,0.134248 -31244,1315:112,152,31,0,0,0.135808 -31245,1315:113,153,31,0,0,0.145913 -31246,1315:114,154,31,0,0,0.151518 -31247,1315:215,155,31,0,0,0.138287 -31248,1315:216,156,31,0,0,0.138655 -31249,1315:217,157,31,0,0,0.169891 -31250,1315:218,158,31,0,0,0.150294 -31251,1315:219,159,31,0,0,0.141676 -31252,1316:110,160,31,0,0,0.14413 -31253,1316:111,161,31,0,0,0.151347 -31254,1316:112,162,31,0,0,0.220729 -31255,1316:113,163,31,0,0,0.213189 -31256,1316:114,164,31,0,0,0.178747 -31257,1316:215,165,31,0,0,0.169587 -31258,1316:216,166,31,0,0,0.183809 -31259,1316:217,167,31,0,0,0.174608 -31260,1316:218,168,31,0,0,0.165716 -31261,1316:219,169,31,0,0,0.180382 -31262,1317:110,170,31,0,0,0.169572 -31263,1317:111,171,31,0,0,0.171053 -31264,1317:112,172,31,0,0,0.177589 -31265,1317:113,173,31,0,0,0.166969 -31266,1317:114,174,31,0,0,0.166299 -31267,1317:215,175,31,0,0,0.172354 -31268,1317:216,176,31,0,0,0.173323 -31269,1317:217,177,31,0,0,0.171491 -31270,1317:218,178,31,0,0,0.169616 -31271,1317:219,179,31,0,0,0.172809 -31272,1318:110,180,31,0,0,0.169023 -31273,7318:120,-180,32,0,0,0.16079 -31274,7317:229,-179,32,0,0,0.163779 -31275,7317:228,-178,32,0,0,0.166399 -31276,7317:227,-177,32,0,0,0.160748 -31277,7317:226,-176,32,0,0,0.162685 -31278,7317:225,-175,32,0,0,0.169442 -31279,7317:124,-174,32,0,0,0.169269 -31280,7317:123,-173,32,0,0,0.169891 -31281,7317:122,-172,32,0,0,0.170108 -31282,7317:121,-171,32,0,0,0.16849 -31283,7317:120,-170,32,0,0,0.171301 -31284,7316:229,-169,32,0,0,0.170849 -31285,7316:228,-168,32,0,0,0.173191 -31286,7316:227,-167,32,0,0,0.174874 -31287,7316:226,-166,32,0,0,0.174445 -31288,7316:225,-165,32,0,0,0.175379 -31289,7316:124,-164,32,0,0,0.178235 -31290,7316:123,-163,32,0,0,0.180382 -31291,7316:122,-162,32,0,0,0.181112 -31292,7316:121,-161,32,0,0,0.181188 -31293,7316:120,-160,32,0,0,0.180747 -31294,7315:229,-159,32,0,0,0.181952 -31295,7315:228,-158,32,0,0,0.181982 -31296,7315:227,-157,32,0,0,0.182028 -31297,7315:226,-156,32,0,0,0.181967 -31298,7315:225,-155,32,0,0,0.183625 -31299,7315:124,-154,32,0,0,0.186881 -31300,7315:123,-153,32,0,0,0.189455 -31301,7315:122,-152,32,0,0,0.192967 -31302,7315:121,-151,32,0,0,0.199054 -31303,7315:120,-150,32,0,0,0.20045 -31304,7314:229,-149,32,0,0,0.202367 -31305,7314:228,-148,32,0,0,0.206494 -31306,7314:227,-147,32,0,0,0.209882 -31307,7314:226,-146,32,0,0,0.212328 -31308,7314:225,-145,32,0,0,0.209388 -31309,7314:124,-144,32,0,0,0.216151 -31310,7314:123,-143,32,0,0,0.220252 -31311,7314:122,-142,32,0,0,0.216064 -31312,7314:121,-141,32,0,0,0.226238 -31313,7314:120,-140,32,0,0,0.224141 -31314,7313:229,-139,32,0,0,0.221685 -31315,7313:228,-138,32,0,0,0.228693 -31316,7313:227,-137,32,0,0,0.229837 -31317,7313:226,-136,32,0,0,0.239992 -31318,7313:225,-135,32,0,0,0.244329 -31319,7313:124,-134,32,0,0,0.239543 -31320,7313:123,-133,32,0,0,0.240931 -31321,7313:122,-132,32,0,0,0.244975 -31322,7313:121,-131,32,0,0,0.246498 -31323,7313:120,-130,32,0,0,0.244063 -31324,7312:229,-129,32,0,0,0.240461 -31325,7312:228,-128,32,0,0,0.241194 -31326,7312:227,-127,32,0,0,0.235986 -31327,7312:226,-126,32,0,0,0.23831 -31328,7312:225,-125,32,0,0,0.23803 -31329,7306:122,-62,32,0,0,0.134152 -31330,7306:121,-61,32,0,0,0.144447 -31331,7305:229,-59,32,0,0,0.147935 -31332,7305:228,-58,32,0,0,0.142678 -31333,7305:227,-57,32,0,0,0.140617 -31334,7305:226,-56,32,0,0,0.139011 -31335,7305:225,-55,32,0,0,0.13115 -31336,7305:124,-54,32,0,0,0.125384 -31337,7305:123,-53,32,0,0,0.117515 -31338,7305:122,-52,32,0,0,0.120444 -31339,7305:121,-51,32,0,0,0.130589 -31340,7305:120,-50,32,0,0,0.124474 -31341,7304:229,-49,32,0,0,0.129161 -31342,7304:228,-48,32,0,0,0.120728 -31343,7304:227,-47,32,0,0,0.125779 -31344,7304:226,-46,32,0,0,0.165432 -31345,7304:225,-45,32,0,0,0.165475 -31346,7304:124,-44,32,0,0,0.164795 -31347,7304:123,-43,32,0,0,0.200022 -31348,7304:122,-42,32,0,0,0.243779 -31349,7304:121,-41,32,0,0,0.241551 -31350,7304:120,-40,32,0,0,0.234231 -31351,7303:229,-39,32,0,0,0.256496 -31352,7303:228,-38,32,0,0,0.277089 -31353,7303:227,-37,32,0,0,0.276164 -31354,7303:226,-36,32,0,0,0.258047 -31355,7303:225,-35,32,0,0,0.271628 -31356,7303:124,-34,32,0,0,0.256594 -31357,7303:123,-33,32,0,0,0.248354 -31358,7303:122,-32,32,0,0,0.242984 -31359,7303:121,-31,32,0,0,0.284057 -31360,7303:120,-30,32,0,0,0.288149 -31361,7302:229,-29,32,0,0,0.314747 -31362,7302:228,-28,32,0,0,0.320157 -31363,7302:227,-27,32,0,0,0.310332 -31364,7302:226,-26,32,0,0,0.296009 -31365,7302:225,-25,32,0,0,0.291172 -31366,7302:124,-24,32,0,0,0.300072 -31367,7302:123,-23,32,0,0,0.299619 -31368,7302:122,-22,32,0,0,0.300547 -31369,7302:121,-21,32,0,0,0.292872 -31370,7302:120,-20,32,0,0,0.296266 -31371,7301:229,-19,32,0,0,0.292659 -31372,7301:228,-18,32,0,0,0.280539 -31373,7301:227,-17,32,0,0,0.276637 -31374,7301:226,-16,32,0,0,0.276431 -31375,7301:225,-15,32,0,0,0.278697 -31376,7301:124,-14,32,0,0,0.279545 -31377,7301:123,-13,32,0,0,0.275323 -31378,7301:122,-12,32,0,0,0.272645 -31379,7301:121,-11,32,0,0,0.273297 -31380,7301:120,-10,32,0,0,0.271729 -31381,7300:229,-9,32,0,0,0.272686 -31382,7300:228,-8,32,0,0,0.273665 -31383,7300:227,-7,32,0,0,0.273767 -31384,7300:226,-6,32,0,0,0.279193 -31385,7300:225,-5,32,0,0,0.278367 -31386,7300:124,-4,32,0,0,0.282909 -31387,7300:123,-3,32,0,0,0.28243 -31388,7300:122,-2,32,0,0,0.236487 -31389,1301:122,12,32,0,0,0.313861 -31390,1302:228,28,32,0,0,0.279358 -31391,1302:229,29,32,0,0,0.265032 -31392,1303:120,30,32,0,0,0.265112 -31393,1303:121,31,32,0,0,0.266998 -31394,1303:122,32,32,0,0,0.265893 -31395,1303:123,33,32,0,0,0.263773 -31396,1303:124,34,32,0,0,0.257222 -31397,1303:225,35,32,0,0,0.25501 -31398,1303:226,36,32,0,0,0.263573 -31399,1303:227,37,32,0,0,0.272218 -31400,1303:228,38,32,0,0,0.280145 -31401,1303:229,39,32,0,0,0.285312 -31402,1313:229,139,32,0,0,0.153551 -31403,1314:120,140,32,0,0,0.167155 -31404,1314:121,141,32,0,0,0.173 -31405,1314:122,142,32,0,0,0.181616 -31406,1314:123,143,32,0,0,0.122054 -31407,1314:124,144,32,0,0,0.112209 -31408,1314:225,145,32,0,0,0.107439 -31409,1314:226,146,32,0,0,0.13383 -31410,1314:227,147,32,0,0,0.139343 -31411,1314:228,148,32,0,0,0.143396 -31412,1314:229,149,32,0,0,0.142389 -31413,1315:120,150,32,0,0,0.142264 -31414,1315:121,151,32,0,0,0.145798 -31415,1315:122,152,32,0,0,0.135507 -31416,1315:123,153,32,0,0,0.128699 -31417,1315:124,154,32,0,0,0.136436 -31418,1315:225,155,32,0,0,0.14535 -31419,1315:226,156,32,0,0,0.132077 -31420,1315:227,157,32,0,0,0.132597 -31421,1315:228,158,32,0,0,0.141052 -31422,1315:229,159,32,0,0,0.142427 -31423,1316:120,160,32,0,0,0.138483 -31424,1316:121,161,32,0,0,0.13517 -31425,1316:122,162,32,0,0,0.143585 -31426,1316:123,163,32,0,0,0.153377 -31427,1316:124,164,32,0,0,0.149391 -31428,1316:225,165,32,0,0,0.154971 -31429,1316:226,166,32,0,0,0.168576 -31430,1316:227,167,32,0,0,0.14743 -31431,1316:228,168,32,0,0,0.143257 -31432,1316:229,169,32,0,0,0.150807 -31433,1317:120,170,32,0,0,0.157014 -31434,1317:121,171,32,0,0,0.154998 -31435,1317:122,172,32,0,0,0.152206 -31436,1317:123,173,32,0,0,0.150636 -31437,1317:124,174,32,0,0,0.154019 -31438,1317:225,175,32,0,0,0.156132 -31439,1317:226,176,32,0,0,0.154675 -31440,1317:227,177,32,0,0,0.157231 -31441,1317:228,178,32,0,0,0.159367 -31442,1317:229,179,32,0,0,0.160707 -31443,1318:120,180,32,0,0,0.16079 -31444,7318:130,-180,33,0,0,0.151281 -31445,7317:239,-179,33,0,0,0.154072 -31446,7317:238,-178,33,0,0,0.156416 -31447,7317:237,-177,33,0,0,0.154099 -31448,7317:236,-176,33,0,0,0.153684 -31449,7317:235,-175,33,0,0,0.153177 -31450,7317:134,-174,33,0,0,0.155066 -31451,7317:133,-173,33,0,0,0.159988 -31452,7317:132,-172,33,0,0,0.161234 -31453,7317:131,-171,33,0,0,0.161262 -31454,7317:130,-170,33,0,0,0.161944 -31455,7316:239,-169,33,0,0,0.161763 -31456,7316:238,-168,33,0,0,0.164385 -31457,7316:237,-167,33,0,0,0.167456 -31458,7316:236,-166,33,0,0,0.16826 -31459,7316:235,-165,33,0,0,0.168303 -31460,7316:134,-164,33,0,0,0.16885 -31461,7316:133,-163,33,0,0,0.17209 -31462,7316:132,-162,33,0,0,0.174726 -31463,7316:131,-161,33,0,0,0.172486 -31464,7316:130,-160,33,0,0,0.171272 -31465,7315:239,-159,33,0,0,0.175468 -31466,7315:238,-158,33,0,0,0.174534 -31467,7315:237,-157,33,0,0,0.173308 -31468,7315:236,-156,33,0,0,0.178913 -31469,7315:235,-155,33,0,0,0.182304 -31470,7315:134,-154,33,0,0,0.184907 -31471,7315:133,-153,33,0,0,0.185542 -31472,7315:132,-152,33,0,0,0.188526 -31473,7315:131,-151,33,0,0,0.192104 -31474,7315:130,-150,33,0,0,0.193848 -31475,7314:239,-149,33,0,0,0.19708 -31476,7314:238,-148,33,0,0,0.198139 -31477,7314:237,-147,33,0,0,0.19953 -31478,7314:236,-146,33,0,0,0.20022 -31479,7314:235,-145,33,0,0,0.201258 -31480,7314:134,-144,33,0,0,0.205352 -31481,7314:133,-143,33,0,0,0.207371 -31482,7314:132,-142,33,0,0,0.206831 -31483,7314:131,-141,33,0,0,0.213396 -31484,7314:130,-140,33,0,0,0.215542 -31485,7313:239,-139,33,0,0,0.217477 -31486,7313:238,-138,33,0,0,0.220234 -31487,7313:237,-137,33,0,0,0.222413 -31488,7313:236,-136,33,0,0,0.229892 -31489,7313:235,-135,33,0,0,0.230328 -31490,7313:134,-134,33,0,0,0.228802 -31491,7313:133,-133,33,0,0,0.233532 -31492,7313:132,-132,33,0,0,0.237007 -31493,7313:131,-131,33,0,0,0.237806 -31494,7313:130,-130,33,0,0,0.236672 -31495,7312:239,-129,33,0,0,0.235172 -31496,7312:238,-128,33,0,0,0.229892 -31497,7312:237,-127,33,0,0,0.227879 -31498,7312:236,-126,33,0,0,0.233771 -31499,7312:235,-125,33,0,0,0.234858 -31500,7306:134,-64,33,0,0,0.136872 -31501,7306:133,-63,33,0,0,0.151228 -31502,7306:132,-62,33,0,0,0.166299 -31503,7306:131,-61,33,0,0,0.158735 -31504,7305:239,-59,33,0,0,0.137493 -31505,7305:238,-58,33,0,0,0.14022 -31506,7305:237,-57,33,0,0,0.140629 -31507,7305:236,-56,33,0,0,0.136509 -31508,7305:235,-55,33,0,0,0.137359 -31509,7305:134,-54,33,0,0,0.131232 -31510,7305:132,-52,33,0,0,0.110098 -31511,7305:131,-51,33,0,0,0.112825 -31512,7305:130,-50,33,0,0,0.115884 -31513,7304:239,-49,33,0,0,0.116994 -31514,7304:238,-48,33,0,0,0.114909 -31515,7304:237,-47,33,0,0,0.123748 -31516,7304:236,-46,33,0,0,0.140753 -31517,7304:235,-45,33,0,0,0.145977 -31518,7304:134,-44,33,0,0,0.143674 -31519,7304:133,-43,33,0,0,0.170704 -31520,7304:132,-42,33,0,0,0.19512 -31521,7304:131,-41,33,0,0,0.207202 -31522,7304:130,-40,33,0,0,0.230128 -31523,7303:239,-39,33,0,0,0.233789 -31524,7303:238,-38,33,0,0,0.208844 -31525,7303:237,-37,33,0,0,0.215994 -31526,7303:236,-36,33,0,0,0.222022 -31527,7303:235,-35,33,0,0,0.231899 -31528,7303:134,-34,33,0,0,0.235672 -31529,7303:133,-33,33,0,0,0.229782 -31530,7303:132,-32,33,0,0,0.249487 -31531,7303:131,-31,33,0,0,0.249833 -31532,7303:130,-30,33,0,0,0.262458 -31533,7302:239,-29,33,0,0,0.300287 -31534,7302:238,-28,33,0,0,0.295517 -31535,7302:237,-27,33,0,0,0.288697 -31536,7302:236,-26,33,0,0,0.28836 -31537,7302:235,-25,33,0,0,0.280062 -31538,7302:134,-24,33,0,0,0.279462 -31539,7302:133,-23,33,0,0,0.292807 -31540,7302:132,-22,33,0,0,0.294491 -31541,7302:131,-21,33,0,0,0.285249 -31542,7302:130,-20,33,0,0,0.286193 -31543,7301:239,-19,33,0,0,0.288971 -31544,7301:238,-18,33,0,0,0.274749 -31545,7301:237,-17,33,0,0,0.274033 -31546,7301:236,-16,33,0,0,0.270917 -31547,7301:235,-15,33,0,0,0.271242 -31548,7301:134,-14,33,0,0,0.269195 -31549,7301:133,-13,33,0,0,0.270065 -31550,7301:132,-12,33,0,0,0.267662 -31551,7301:131,-11,33,0,0,0.263155 -31552,7301:130,-10,33,0,0,0.265112 -31553,7300:239,-9,33,0,0,0.265452 -31554,7300:238,-8,33,0,0,0.268407 -31555,7300:237,-7,33,0,0,0.268126 -31556,7300:236,-6,33,0,0,0.267602 -31557,7300:235,-5,33,0,0,0.274196 -31558,7300:134,-4,33,0,0,0.267883 -31559,1302:239,29,33,0,0,0.27179 -31560,1303:130,30,33,0,0,0.265032 -31561,1303:131,31,33,0,0,0.268206 -31562,1303:132,32,33,0,0,0.266114 -31563,1303:133,33,33,0,0,0.265973 -31564,1303:134,34,33,0,0,0.262398 -31565,1303:235,35,33,0,0,0.259466 -31566,1303:236,36,33,0,0,0.265673 -31567,1303:237,37,33,0,0,0.273951 -31568,1303:238,38,33,0,0,0.280228 -31569,1314:130,140,33,0,0,0.144332 -31570,1314:131,141,33,0,0,0.161498 -31571,1314:132,142,33,0,0,0.16637 -31572,1314:235,145,33,0,0,0.106771 -31573,1314:236,146,33,0,0,0.118843 -31574,1314:237,147,33,0,0,0.121526 -31575,1314:238,148,33,0,0,0.126016 -31576,1314:239,149,33,0,0,0.126822 -31577,1315:130,150,33,0,0,0.126367 -31578,1315:131,151,33,0,0,0.130963 -31579,1315:132,152,33,0,0,0.130671 -31580,1315:133,153,33,0,0,0.127792 -31581,1315:134,154,33,0,0,0.126651 -31582,1315:235,155,33,0,0,0.133569 -31583,1315:236,156,33,0,0,0.130496 -31584,1315:237,157,33,0,0,0.129555 -31585,1315:238,158,33,0,0,0.129972 -31586,1315:239,159,33,0,0,0.133533 -31587,1316:130,160,33,0,0,0.133212 -31588,1316:131,161,33,0,0,0.132443 -31589,1316:132,162,33,0,0,0.13487 -31590,1316:133,163,33,0,0,0.140716 -31591,1316:134,164,33,0,0,0.140282 -31592,1316:235,165,33,0,0,0.136836 -31593,1316:236,166,33,0,0,0.1364 -31594,1316:237,167,33,0,0,0.139787 -31595,1316:238,168,33,0,0,0.142942 -31596,1316:239,169,33,0,0,0.145146 -31597,1317:130,170,33,0,0,0.145695 -31598,1317:131,171,33,0,0,0.145695 -31599,1317:132,172,33,0,0,0.145964 -31600,1317:133,173,33,0,0,0.147857 -31601,1317:134,174,33,0,0,0.148025 -31602,1317:235,175,33,0,0,0.146631 -31603,1317:236,176,33,0,0,0.149469 -31604,1317:237,177,33,0,0,0.15319 -31605,1317:238,178,33,0,0,0.151333 -31606,1317:239,179,33,0,0,0.149026 -31607,1318:130,180,33,0,0,0.151281 -31608,7318:140,-180,34,0,0,0.147056 -31609,7317:249,-179,34,0,0,0.14658 -31610,7317:248,-178,34,0,0,0.146439 -31611,7317:247,-177,34,0,0,0.146992 -31612,7317:246,-176,34,0,0,0.147663 -31613,7317:245,-175,34,0,0,0.148856 -31614,7317:144,-174,34,0,0,0.150504 -31615,7317:143,-173,34,0,0,0.151584 -31616,7317:142,-172,34,0,0,0.15177 -31617,7317:141,-171,34,0,0,0.15363 -31618,7317:140,-170,34,0,0,0.156946 -31619,7316:249,-169,34,0,0,0.157245 -31620,7316:248,-168,34,0,0,0.157627 -31621,7316:247,-167,34,0,0,0.159546 -31622,7316:246,-166,34,0,0,0.161415 -31623,7316:245,-165,34,0,0,0.162712 -31624,7316:144,-164,34,0,0,0.163062 -31625,7316:143,-163,34,0,0,0.163119 -31626,7316:142,-162,34,0,0,0.164526 -31627,7316:141,-161,34,0,0,0.162139 -31628,7316:140,-160,34,0,0,0.16529 -31629,7315:249,-159,34,0,0,0.166827 -31630,7315:248,-158,34,0,0,0.165361 -31631,7315:247,-157,34,0,0,0.167514 -31632,7315:246,-156,34,0,0,0.17066 -31633,7315:245,-155,34,0,0,0.172765 -31634,7315:144,-154,34,0,0,0.178642 -31635,7315:143,-153,34,0,0,0.17976 -31636,7315:142,-152,34,0,0,0.184411 -31637,7315:141,-151,34,0,0,0.185962 -31638,7315:140,-150,34,0,0,0.188055 -31639,7314:249,-149,34,0,0,0.190309 -31640,7314:248,-148,34,0,0,0.190515 -31641,7314:247,-147,34,0,0,0.189156 -31642,7314:246,-146,34,0,0,0.191929 -31643,7314:245,-145,34,0,0,0.197193 -31644,7314:144,-144,34,0,0,0.198171 -31645,7314:143,-143,34,0,0,0.201705 -31646,7314:142,-142,34,0,0,0.203947 -31647,7314:141,-141,34,0,0,0.207811 -31648,7314:140,-140,34,0,0,0.209797 -31649,7313:249,-139,34,0,0,0.212896 -31650,7313:248,-138,34,0,0,0.212586 -31651,7313:247,-137,34,0,0,0.21195 -31652,7313:246,-136,34,0,0,0.214918 -31653,7313:245,-135,34,0,0,0.216099 -31654,7313:144,-134,34,0,0,0.222946 -31655,7313:143,-133,34,0,0,0.226274 -31656,7313:142,-132,34,0,0,0.226328 -31657,7313:141,-131,34,0,0,0.22991 -31658,7313:140,-130,34,0,0,0.229292 -31659,7312:249,-129,34,0,0,0.232852 -31660,7312:248,-128,34,0,0,0.229782 -31661,7312:247,-127,34,0,0,0.226202 -31662,7312:246,-126,34,0,0,0.226094 -31663,7312:245,-125,34,0,0,0.222661 -31664,7306:144,-64,34,0,0,0.136388 -31665,7306:143,-63,34,0,0,0.151017 -31666,7306:142,-62,34,0,0,0.138912 -31667,7306:141,-61,34,0,0,0.138483 -31668,7306:140,-60,34,0,0,0.135615 -31669,7305:249,-59,34,0,0,0.128251 -31670,7305:142,-52,34,0,0,0.104346 -31671,7305:141,-51,34,0,0,0.110159 -31672,7305:140,-50,34,0,0,0.112486 -31673,7304:249,-49,34,0,0,0.118274 -31674,7304:248,-48,34,0,0,0.129624 -31675,7304:247,-47,34,0,0,0.133402 -31676,7304:246,-46,34,0,0,0.132798 -31677,7304:245,-45,34,0,0,0.135627 -31678,7304:144,-44,34,0,0,0.139072 -31679,7304:143,-43,34,0,0,0.163934 -31680,7304:142,-42,34,0,0,0.187898 -31681,7304:141,-41,34,0,0,0.204031 -31682,7304:140,-40,34,0,0,0.202982 -31683,7303:249,-39,34,0,0,0.214813 -31684,7303:248,-38,34,0,0,0.194733 -31685,7303:247,-37,34,0,0,0.211574 -31686,7303:246,-36,34,0,0,0.217127 -31687,7303:245,-35,34,0,0,0.21269 -31688,7303:144,-34,34,0,0,0.221313 -31689,7303:143,-33,34,0,0,0.222217 -31690,7303:142,-32,34,0,0,0.242569 -31691,7303:141,-31,34,0,0,0.251396 -31692,7303:140,-30,34,0,0,0.252908 -31693,7302:249,-29,34,0,0,0.260276 -31694,7302:248,-28,34,0,0,0.294022 -31695,7302:247,-27,34,0,0,0.28243 -31696,7302:246,-26,34,0,0,0.287749 -31697,7302:245,-25,34,0,0,0.287223 -31698,7302:144,-24,34,0,0,0.285543 -31699,7302:143,-23,34,0,0,0.277357 -31700,7302:142,-22,34,0,0,0.283953 -31701,7302:141,-21,34,0,0,0.279586 -31702,7302:140,-20,34,0,0,0.276822 -31703,7301:249,-19,34,0,0,0.265712 -31704,7301:248,-18,34,0,0,0.271587 -31705,7301:247,-17,34,0,0,0.270349 -31706,7301:246,-16,34,0,0,0.267944 -31707,7301:245,-15,34,0,0,0.269074 -31708,7301:144,-14,34,0,0,0.261762 -31709,7301:143,-13,34,0,0,0.264012 -31710,7301:142,-12,34,0,0,0.258087 -31711,7301:141,-11,34,0,0,0.258441 -31712,7301:140,-10,34,0,0,0.260276 -31713,7300:249,-9,34,0,0,0.260534 -31714,7300:248,-8,34,0,0,0.263016 -31715,7300:247,-7,34,0,0,0.264492 -31716,7300:246,-6,34,0,0,0.257281 -31717,1302:249,29,34,0,0,0.262498 -31718,1303:140,30,34,0,0,0.269964 -31719,1303:141,31,34,0,0,0.276719 -31720,1303:245,35,34,0,0,0.266716 -31721,1303:246,36,34,0,0,0.270328 -31722,1314:141,141,34,0,0,0.110825 -31723,1314:142,142,34,0,0,0.123915 -31724,1314:143,143,34,0,0,0.130216 -31725,1314:144,144,34,0,0,0.105281 -31726,1314:245,145,34,0,0,0.103733 -31727,1314:246,146,34,0,0,0.100818 -31728,1314:247,147,34,0,0,0.112138 -31729,1314:248,148,34,0,0,0.120488 -31730,1314:249,149,34,0,0,0.122439 -31731,1315:140,150,34,0,0,0.126254 -31732,1315:141,151,34,0,0,0.127369 -31733,1315:142,152,34,0,0,0.124968 -31734,1315:143,153,34,0,0,0.122384 -31735,1315:144,154,34,0,0,0.123848 -31736,1315:245,155,34,0,0,0.119825 -31737,1315:246,156,34,0,0,0.11976 -31738,1315:247,157,34,0,0,0.13115 -31739,1315:248,158,34,0,0,0.133236 -31740,1315:249,159,34,0,0,0.131572 -31741,1316:140,160,34,0,0,0.130449 -31742,1316:141,161,34,0,0,0.130939 -31743,1316:142,162,34,0,0,0.133165 -31744,1316:143,163,34,0,0,0.141052 -31745,1316:144,164,34,0,0,0.140468 -31746,1316:245,165,34,0,0,0.132857 -31747,1316:246,166,34,0,0,0.133545 -31748,1316:247,167,34,0,0,0.137724 -31749,1316:248,168,34,0,0,0.135639 -31750,1316:249,169,34,0,0,0.141326 -31751,1317:140,170,34,0,0,0.142101 -31752,1317:141,171,34,0,0,0.141676 -31753,1317:142,172,34,0,0,0.141688 -31754,1317:143,173,34,0,0,0.141401 -31755,1317:144,174,34,0,0,0.140592 -31756,1317:245,175,34,0,0,0.140629 -31757,1317:246,176,34,0,0,0.141813 -31758,1317:247,177,34,0,0,0.143144 -31759,1317:248,178,34,0,0,0.144003 -31760,1317:249,179,34,0,0,0.146323 -31761,1318:140,180,34,0,0,0.147056 -31762,7318:350,-180,35,0,0,0.143699 -31763,7317:459,-179,35,0,0,0.143977 -31764,7317:458,-178,35,0,0,0.144879 -31765,7317:457,-177,35,0,0,0.145491 -31766,7317:456,-176,35,0,0,0.146221 -31767,7317:455,-175,35,0,0,0.147637 -31768,7317:354,-174,35,0,0,0.148012 -31769,7317:353,-173,35,0,0,0.148311 -31770,7317:352,-172,35,0,0,0.148687 -31771,7317:351,-171,35,0,0,0.150176 -31772,7317:350,-170,35,0,0,0.151664 -31773,7316:459,-169,35,0,0,0.152911 -31774,7316:458,-168,35,0,0,0.151981 -31775,7316:457,-167,35,0,0,0.151928 -31776,7316:456,-166,35,0,0,0.154407 -31777,7316:455,-165,35,0,0,0.157763 -31778,7316:354,-164,35,0,0,0.157927 -31779,7316:353,-163,35,0,0,0.155039 -31780,7316:352,-162,35,0,0,0.156091 -31781,7316:351,-161,35,0,0,0.156851 -31782,7316:350,-160,35,0,0,0.15868 -31783,7315:459,-159,35,0,0,0.158433 -31784,7315:458,-158,35,0,0,0.157518 -31785,7315:457,-157,35,0,0,0.157545 -31786,7315:456,-156,35,0,0,0.159505 -31787,7315:455,-155,35,0,0,0.161068 -31788,7315:354,-154,35,0,0,0.163161 -31789,7315:353,-153,35,0,0,0.168274 -31790,7315:352,-152,35,0,0,0.173161 -31791,7315:351,-151,35,0,0,0.177484 -31792,7315:350,-150,35,0,0,0.181784 -31793,7314:459,-149,35,0,0,0.183086 -31794,7314:458,-148,35,0,0,0.18418 -31795,7314:457,-147,35,0,0,0.180975 -31796,7314:456,-146,35,0,0,0.177589 -31797,7314:455,-145,35,0,0,0.187804 -31798,7314:354,-144,35,0,0,0.18944 -31799,7314:353,-143,35,0,0,0.188856 -31800,7314:352,-142,35,0,0,0.193993 -31801,7314:351,-141,35,0,0,0.195944 -31802,7314:350,-140,35,0,0,0.199645 -31803,7313:459,-139,35,0,0,0.200615 -31804,7313:458,-138,35,0,0,0.201903 -31805,7313:457,-137,35,0,0,0.203314 -31806,7313:456,-136,35,0,0,0.206377 -31807,7313:455,-135,35,0,0,0.2107 -31808,7313:354,-134,35,0,0,0.216621 -31809,7313:353,-133,35,0,0,0.217005 -31810,7313:352,-132,35,0,0,0.220941 -31811,7313:351,-131,35,0,0,0.221419 -31812,7313:350,-130,35,0,0,0.21851 -31813,7312:459,-129,35,0,0,0.220199 -31814,7312:458,-128,35,0,0,0.221632 -31815,7312:457,-127,35,0,0,0.223231 -31816,7312:456,-126,35,0,0,0.222963 -31817,7312:455,-125,35,0,0,0.218317 -31818,7306:458,-68,35,0,0,0.12809 -31819,7306:353,-63,35,0,0,0.122915 -31820,7306:352,-62,35,0,0,0.128504 -31821,7306:351,-61,35,0,0,0.121493 -31822,7306:350,-60,35,0,0,0.120281 -31823,7305:459,-59,35,0,0,0.126265 -31824,7305:458,-58,35,0,0,0.120902 -31825,7305:352,-52,35,0,0,0.103037 -31826,7305:351,-51,35,0,0,0.118617 -31827,7305:350,-50,35,0,0,0.11988 -31828,7304:459,-49,35,0,0,0.129254 -31829,7304:458,-48,35,0,0,0.134774 -31830,7304:457,-47,35,0,0,0.150124 -31831,7304:456,-46,35,0,0,0.154675 -31832,7304:455,-45,35,0,0,0.153537 -31833,7304:354,-44,35,0,0,0.169168 -31834,7304:353,-43,35,0,0,0.18304 -31835,7304:352,-42,35,0,0,0.19134 -31836,7304:351,-41,35,0,0,0.180884 -31837,7304:350,-40,35,0,0,0.208437 -31838,7303:459,-39,35,0,0,0.186569 -31839,7303:458,-38,35,0,0,0.195459 -31840,7303:457,-37,35,0,0,0.198825 -31841,7303:456,-36,35,0,0,0.202915 -31842,7303:455,-35,35,0,0,0.212999 -31843,7303:354,-34,35,0,0,0.211831 -31844,7303:353,-33,35,0,0,0.210581 -31845,7303:352,-32,35,0,0,0.210291 -31846,7303:351,-31,35,0,0,0.25353 -31847,7303:350,-30,35,0,0,0.273277 -31848,7302:459,-29,35,0,0,0.268367 -31849,7302:458,-28,35,0,0,0.284329 -31850,7302:457,-27,35,0,0,0.281182 -31851,7302:456,-26,35,0,0,0.274053 -31852,7302:455,-25,35,0,0,0.250219 -31853,7302:354,-24,35,0,0,0.258224 -31854,7302:353,-23,35,0,0,0.278367 -31855,7302:352,-22,35,0,0,0.280601 -31856,7302:351,-21,35,0,0,0.276801 -31857,7302:350,-20,35,0,0,0.270795 -31858,7301:459,-19,35,0,0,0.263773 -31859,7301:458,-18,35,0,0,0.269013 -31860,7301:457,-17,35,0,0,0.267944 -31861,7301:456,-16,35,0,0,0.266877 -31862,7301:455,-15,35,0,0,0.265212 -31863,7301:354,-14,35,0,0,0.259407 -31864,7301:353,-13,35,0,0,0.256516 -31865,7301:352,-12,35,0,0,0.250392 -31866,7301:351,-11,35,0,0,0.25101 -31867,7301:350,-10,35,0,0,0.25072 -31868,7300:459,-9,35,0,0,0.25157 -31869,7300:458,-8,35,0,0,0.254191 -31870,7300:457,-7,35,0,0,0.254191 -31871,7300:456,-6,35,0,0,0.256771 -31872,7300:455,-5,35,0,0,0.255811 -31873,7300:354,-4,35,0,0,0.253238 -31874,7300:353,-3,35,0,0,0.213258 -31875,1303:350,30,35,0,0,0.254074 -31876,1303:351,31,35,0,0,0.2585 -31877,1303:352,32,35,0,0,0.246822 -31878,1314:352,142,35,0,0,0.0930596 -31879,1314:353,143,35,0,0,0.105562 -31880,1314:455,145,35,0,0,0.094694 -31881,1314:456,146,35,0,0,0.0931986 -31882,1314:457,147,35,0,0,0.10741 -31883,1314:458,148,35,0,0,0.11493 -31884,1314:459,149,35,0,0,0.117408 -31885,1315:350,150,35,0,0,0.116644 -31886,1315:351,151,35,0,0,0.119652 -31887,1315:352,152,35,0,0,0.119836 -31888,1315:353,153,35,0,0,0.121263 -31889,1315:354,154,35,0,0,0.123459 -31890,1315:455,155,35,0,0,0.121285 -31891,1315:456,156,35,0,0,0.119349 -31892,1315:457,157,35,0,0,0.119446 -31893,1315:458,158,35,0,0,0.12508 -31894,1315:459,159,35,0,0,0.130344 -31895,1316:350,160,35,0,0,0.129833 -31896,1316:351,161,35,0,0,0.129566 -31897,1316:352,162,35,0,0,0.130753 -31898,1316:353,163,35,0,0,0.131396 -31899,1316:354,164,35,0,0,0.131819 -31900,1316:455,165,35,0,0,0.131866 -31901,1316:456,166,35,0,0,0.132821 -31902,1316:457,167,35,0,0,0.133795 -31903,1316:458,168,35,0,0,0.137371 -31904,1316:459,169,35,0,0,0.138556 -31905,1317:350,170,35,0,0,0.138863 -31906,1317:351,171,35,0,0,0.138617 -31907,1317:352,172,35,0,0,0.138986 -31908,1317:353,173,35,0,0,0.139849 -31909,1317:354,174,35,0,0,0.139898 -31910,1317:455,175,35,0,0,0.140084 -31911,1317:456,176,35,0,0,0.140518 -31912,1317:457,177,35,0,0,0.141189 -31913,1317:458,178,35,0,0,0.142251 -31914,1317:459,179,35,0,0,0.143106 -31915,1318:350,180,35,0,0,0.143699 -31916,7318:360,-180,36,0,0,0.143813 -31917,7317:469,-179,36,0,0,0.144332 -31918,7317:468,-178,36,0,0,0.145133 -31919,7317:467,-177,36,0,0,0.145746 -31920,7317:466,-176,36,0,0,0.146105 -31921,7317:465,-175,36,0,0,0.146349 -31922,7317:364,-174,36,0,0,0.146683 -31923,7317:363,-173,36,0,0,0.147133 -31924,7317:362,-172,36,0,0,0.147456 -31925,7317:361,-171,36,0,0,0.147288 -31926,7317:360,-170,36,0,0,0.147211 -31927,7316:469,-169,36,0,0,0.148064 -31928,7316:468,-168,36,0,0,0.148661 -31929,7316:467,-167,36,0,0,0.14926 -31930,7316:466,-166,36,0,0,0.150583 -31931,7316:465,-165,36,0,0,0.152233 -31932,7316:364,-164,36,0,0,0.152472 -31933,7316:363,-163,36,0,0,0.150609 -31934,7316:362,-162,36,0,0,0.15015 -31935,7316:361,-161,36,0,0,0.150189 -31936,7316:360,-160,36,0,0,0.151518 -31937,7315:469,-159,36,0,0,0.152392 -31938,7315:468,-158,36,0,0,0.152844 -31939,7315:467,-157,36,0,0,0.153684 -31940,7315:466,-156,36,0,0,0.155011 -31941,7315:465,-155,36,0,0,0.155443 -31942,7315:364,-154,36,0,0,0.155146 -31943,7315:363,-153,36,0,0,0.156905 -31944,7315:362,-152,36,0,0,0.16025 -31945,7315:361,-151,36,0,0,0.164653 -31946,7315:360,-150,36,0,0,0.167399 -31947,7314:469,-149,36,0,0,0.16803 -31948,7314:468,-148,36,0,0,0.169674 -31949,7314:467,-147,36,0,0,0.1719 -31950,7314:466,-146,36,0,0,0.170718 -31951,7314:465,-145,36,0,0,0.17133 -31952,7314:364,-144,36,0,0,0.178355 -31953,7314:363,-143,36,0,0,0.180519 -31954,7314:362,-142,36,0,0,0.182825 -31955,7314:361,-141,36,0,0,0.184504 -31956,7314:360,-140,36,0,0,0.187413 -31957,7313:469,-139,36,0,0,0.190784 -31958,7313:468,-138,36,0,0,0.195007 -31959,7313:467,-137,36,0,0,0.197389 -31961,7313:465,-135,36,0,0,0.206966 -31962,7313:364,-134,36,0,0,0.20978 -31963,7313:363,-133,36,0,0,0.216047 -31964,7313:362,-132,36,0,0,0.219213 -31965,7313:361,-131,36,0,0,0.21497 -31966,7313:360,-130,36,0,0,0.211265 -31967,7312:469,-129,36,0,0,0.213378 -31968,7312:468,-128,36,0,0,0.213879 -31969,7312:467,-127,36,0,0,0.216796 -31970,7312:466,-126,36,0,0,0.219072 -31971,7306:466,-66,36,0,0,0.123437 -31972,7306:465,-65,36,0,0,0.122186 -31973,7306:364,-64,36,0,0,0.123648 -31974,7306:363,-63,36,0,0,0.125001 -31975,7306:361,-61,36,0,0,0.120979 -31976,7306:360,-60,36,0,0,0.11494 -31977,7305:469,-59,36,0,0,0.112948 -31978,7305:468,-58,36,0,0,0.117952 -31979,7305:467,-57,36,0,0,0.117536 -31980,7305:465,-55,36,0,0,0.100753 -31981,7305:364,-54,36,0,0,0.09533 -31982,7305:363,-53,36,0,0,0.0979943 -31983,7305:362,-52,36,0,0,0.113733 -31984,7305:361,-51,36,0,0,0.117547 -31985,7305:360,-50,36,0,0,0.121867 -31986,7304:469,-49,36,0,0,0.13101 -31987,7304:468,-48,36,0,0,0.135675 -31988,7304:467,-47,36,0,0,0.14913 -31989,7304:466,-46,36,0,0,0.162419 -31990,7304:465,-45,36,0,0,0.163709 -31991,7304:364,-44,36,0,0,0.16161 -31992,7304:363,-43,36,0,0,0.162796 -31993,7304:362,-42,36,0,0,0.177829 -31994,7304:361,-41,36,0,0,0.169992 -31995,7304:360,-40,36,0,0,0.178295 -31996,7303:469,-39,36,0,0,0.180124 -31997,7303:468,-38,36,0,0,0.180762 -31998,7303:467,-37,36,0,0,0.194491 -31999,7303:466,-36,36,0,0,0.188055 -32000,7303:465,-35,36,0,0,0.182411 -32001,7303:364,-34,36,0,0,0.180762 -32002,7303:363,-33,36,0,0,0.181707 -32003,7303:362,-32,36,0,0,0.188825 -32004,7303:361,-31,36,0,0,0.214848 -32005,7303:360,-30,36,0,0,0.264892 -32006,7302:469,-29,36,0,0,0.23146 -32007,7302:468,-28,36,0,0,0.25587 -32008,7302:467,-27,36,0,0,0.266937 -32009,7302:466,-26,36,0,0,0.252209 -32010,7302:465,-25,36,0,0,0.233329 -32011,7302:364,-24,36,0,0,0.249718 -32012,7302:363,-23,36,0,0,0.23844 -32013,7302:362,-22,36,0,0,0.237676 -32014,7302:361,-21,36,0,0,0.243439 -32015,7302:360,-20,36,0,0,0.265613 -32016,7301:469,-19,36,0,0,0.260256 -32017,7301:468,-18,36,0,0,0.260534 -32018,7301:467,-17,36,0,0,0.262219 -32019,7301:466,-16,36,0,0,0.266254 -32020,7301:465,-15,36,0,0,0.262796 -32021,7301:364,-14,36,0,0,0.257556 -32022,7301:363,-13,36,0,0,0.253977 -32023,7301:362,-12,36,0,0,0.246422 -32024,7301:361,-11,36,0,0,0.242588 -32025,7301:360,-10,36,0,0,0.243211 -32026,7300:469,-9,36,0,0,0.244747 -32027,7300:468,-8,36,0,0,0.245697 -32028,7300:467,-7,36,0,0,0.236932 -32029,7300:364,-4,36,0,0,0.241513 -32030,7300:363,-3,36,0,0,0.246613 -32031,7300:362,-2,36,0,0,0.247052 -32032,7300:361,-1,36,0,0,0.2346 -32033,1314:363,143,36,0,0,0.0866592 -32034,1314:466,146,36,0,0,0.0921963 -32035,1314:467,147,36,0,0,0.102516 -32036,1314:468,148,36,0,0,0.11038 -32037,1314:469,149,36,0,0,0.113847 -32038,1315:360,150,36,0,0,0.116707 -32039,1315:361,151,36,0,0,0.116824 -32040,1315:362,152,36,0,0,0.119188 -32041,1315:363,153,36,0,0,0.121088 -32042,1315:364,154,36,0,0,0.123447 -32043,1315:465,155,36,0,0,0.122649 -32044,1315:466,156,36,0,0,0.119966 -32045,1315:468,158,36,0,0,0.120118 -32046,1315:469,159,36,0,0,0.118434 -32047,1316:360,160,36,0,0,0.130216 -32048,1316:361,161,36,0,0,0.129103 -32049,1316:362,162,36,0,0,0.128113 -32050,1316:363,163,36,0,0,0.131185 -32051,1316:364,164,36,0,0,0.134045 -32052,1316:465,165,36,0,0,0.134033 -32053,1316:466,166,36,0,0,0.134248 -32054,1316:467,167,36,0,0,0.136436 -32055,1316:468,168,36,0,0,0.135519 -32056,1316:469,169,36,0,0,0.135399 -32057,1317:360,170,36,0,0,0.135194 -32058,1317:361,171,36,0,0,0.135675 -32059,1317:362,172,36,0,0,0.137407 -32060,1317:363,173,36,0,0,0.13874 -32061,1317:364,174,36,0,0,0.139688 -32062,1317:465,175,36,0,0,0.139985 -32063,1317:466,176,36,0,0,0.140903 -32064,1317:467,177,36,0,0,0.1417 -32065,1317:468,178,36,0,0,0.142301 -32066,1317:469,179,36,0,0,0.143068 -32067,1318:360,180,36,0,0,0.143813 -32068,7318:370,-180,37,0,0,0.138067 -32069,7317:479,-179,37,0,0,0.140567 -32070,7317:478,-178,37,0,0,0.142026 -32071,7317:477,-177,37,0,0,0.142076 -32072,7317:476,-176,37,0,0,0.142051 -32073,7317:475,-175,37,0,0,0.143459 -32074,7317:374,-174,37,0,0,0.144015 -32075,7317:373,-173,37,0,0,0.145236 -32076,7317:372,-172,37,0,0,0.145363 -32077,7317:371,-171,37,0,0,0.145414 -32078,7317:370,-170,37,0,0,0.145657 -32079,7316:479,-169,37,0,0,0.146092 -32080,7316:478,-168,37,0,0,0.146554 -32081,7316:477,-167,37,0,0,0.147159 -32082,7316:476,-166,37,0,0,0.146811 -32083,7316:475,-165,37,0,0,0.146208 -32084,7316:374,-164,37,0,0,0.146451 -32085,7316:373,-163,37,0,0,0.14725 -32086,7316:372,-162,37,0,0,0.146992 -32087,7316:371,-161,37,0,0,0.14712 -32088,7316:370,-160,37,0,0,0.147624 -32089,7315:479,-159,37,0,0,0.14712 -32090,7315:478,-158,37,0,0,0.148 -32091,7315:477,-157,37,0,0,0.14896 -32092,7315:476,-156,37,0,0,0.149404 -32093,7315:475,-155,37,0,0,0.150084 -32094,7315:374,-154,37,0,0,0.152127 -32095,7315:373,-153,37,0,0,0.154917 -32096,7315:372,-152,37,0,0,0.15764 -32097,7315:371,-151,37,0,0,0.160845 -32098,7315:370,-150,37,0,0,0.162265 -32099,7314:479,-149,37,0,0,0.163638 -32100,7314:478,-148,37,0,0,0.16512 -32101,7314:477,-147,37,0,0,0.166385 -32102,7314:476,-146,37,0,0,0.167815 -32103,7314:475,-145,37,0,0,0.169312 -32104,7314:374,-144,37,0,0,0.17101 -32105,7314:373,-143,37,0,0,0.173559 -32106,7314:372,-142,37,0,0,0.176511 -32107,7314:371,-141,37,0,0,0.179472 -32108,7314:370,-140,37,0,0,0.183995 -32109,7313:479,-139,37,0,0,0.188322 -32110,7313:478,-138,37,0,0,0.19088 -32111,7313:477,-137,37,0,0,0.1938 -32112,7313:476,-136,37,0,0,0.199365 -32113,7313:475,-135,37,0,0,0.202666 -32114,7313:374,-134,37,0,0,0.205201 -32115,7313:373,-133,37,0,0,0.210684 -32116,7313:372,-132,37,0,0,0.209813 -32117,7313:371,-131,37,0,0,0.208675 -32118,7313:370,-130,37,0,0,0.210257 -32119,7312:479,-129,37,0,0,0.209422 -32120,7312:478,-128,37,0,0,0.211762 -32121,7312:477,-127,37,0,0,0.214865 -32122,7312:476,-126,37,0,0,0.213585 -32123,7305:477,-57,37,0,0,0.099402 -32124,7305:476,-56,37,0,0,0.101791 -32125,7305:374,-54,37,0,0,0.0913568 -32126,7305:373,-53,37,0,0,0.103599 -32127,7305:372,-52,37,0,0,0.111607 -32128,7305:371,-51,37,0,0,0.114387 -32129,7305:370,-50,37,0,0,0.117121 -32130,7304:479,-49,37,0,0,0.127357 -32131,7304:478,-48,37,0,0,0.140468 -32132,7304:477,-47,37,0,0,0.152871 -32133,7304:476,-46,37,0,0,0.156308 -32134,7304:475,-45,37,0,0,0.158817 -32135,7304:374,-44,37,0,0,0.155295 -32136,7304:373,-43,37,0,0,0.150767 -32137,7304:372,-42,37,0,0,0.15434 -32138,7304:371,-41,37,0,0,0.149091 -32139,7304:370,-40,37,0,0,0.153097 -32140,7303:479,-39,37,0,0,0.154582 -32141,7303:478,-38,37,0,0,0.163119 -32142,7303:477,-37,37,0,0,0.161623 -32143,7303:476,-36,37,0,0,0.154099 -32144,7303:475,-35,37,0,0,0.152459 -32145,7303:374,-34,37,0,0,0.158269 -32146,7303:373,-33,37,0,0,0.198155 -32147,7303:372,-32,37,0,0,0.195168 -32148,7303:371,-31,37,0,0,0.230147 -32149,7303:370,-30,37,0,0,0.244291 -32150,7302:479,-29,37,0,0,0.245412 -32151,7302:478,-28,37,0,0,0.213655 -32152,7302:477,-27,37,0,0,0.219266 -32153,7302:476,-26,37,0,0,0.218002 -32154,7302:475,-25,37,0,0,0.223641 -32155,7302:374,-24,37,0,0,0.217215 -32156,7302:373,-23,37,0,0,0.22759 -32157,7302:372,-22,37,0,0,0.24868 -32158,7302:371,-21,37,0,0,0.258579 -32159,7302:370,-20,37,0,0,0.258736 -32160,7301:479,-19,37,0,0,0.259328 -32161,7301:478,-18,37,0,0,0.25589 -32162,7301:477,-17,37,0,0,0.253626 -32163,7301:476,-16,37,0,0,0.256203 -32164,7301:475,-15,37,0,0,0.241928 -32165,7301:374,-14,37,0,0,0.249583 -32166,7301:373,-13,37,0,0,0.246689 -32167,7301:372,-12,37,0,0,0.238571 -32168,7300:479,-9,37,0,0,0.235708 -32169,7300:478,-8,37,0,0,0.235912 -32170,7300:477,-7,37,0,0,0.23606 -32171,7300:476,-6,37,0,0,0.222377 -32172,7300:475,-5,37,0,0,0.205285 -32173,1300:371,0,37,0,0,0.230985 -32174,1314:373,143,37,0,0,0.0859141 -32175,1314:476,146,37,0,0,0.0933116 -32176,1314:477,147,37,0,0,0.101575 -32177,1314:478,148,37,0,0,0.108657 -32178,1314:479,149,37,0,0,0.112845 -32179,1315:370,150,37,0,0,0.118102 -32180,1315:371,151,37,0,0,0.119134 -32181,1315:372,152,37,0,0,0.119134 -32182,1315:373,153,37,0,0,0.120379 -32183,1315:374,154,37,0,0,0.120913 -32184,1315:475,155,37,0,0,0.12076 -32185,1315:476,156,37,0,0,0.121647 -32186,1315:477,157,37,0,0,0.120815 -32187,1316:370,160,37,0,0,0.117121 -32188,1316:371,161,37,0,0,0.123514 -32189,1316:372,162,37,0,0,0.126753 -32190,1316:373,163,37,0,0,0.126186 -32191,1316:374,164,37,0,0,0.131173 -32192,1316:475,165,37,0,0,0.132892 -32193,1316:476,166,37,0,0,0.133414 -32194,1316:477,167,37,0,0,0.13262 -32195,1316:478,168,37,0,0,0.13156 -32196,1316:479,169,37,0,0,0.132738 -32197,1317:370,170,37,0,0,0.1342 -32198,1317:371,171,37,0,0,0.134631 -32199,1317:372,172,37,0,0,0.134475 -32200,1317:373,173,37,0,0,0.131419 -32201,1317:374,174,37,0,0,0.131185 -32202,1317:475,175,37,0,0,0.133545 -32203,1317:476,176,37,0,0,0.136194 -32204,1317:477,177,37,0,0,0.136933 -32205,1317:478,178,37,0,0,0.136122 -32206,1317:479,179,37,0,0,0.138274 -32207,1318:370,180,37,0,0,0.138067 -32208,7318:380,-180,38,0,0,0.135808 -32209,7317:489,-179,38,0,0,0.137712 -32210,7317:488,-178,38,0,0,0.140109 -32211,7317:487,-177,38,0,0,0.140592 -32212,7317:486,-176,38,0,0,0.141239 -32213,7317:485,-175,38,0,0,0.141851 -32214,7317:384,-174,38,0,0,0.142264 -32215,7317:383,-173,38,0,0,0.14254 -32216,7317:382,-172,38,0,0,0.144955 -32217,7317:381,-171,38,0,0,0.14535 -32218,7317:380,-170,38,0,0,0.14493 -32219,7316:489,-169,38,0,0,0.14507 -32220,7316:488,-168,38,0,0,0.145223 -32221,7316:487,-167,38,0,0,0.145951 -32222,7316:486,-166,38,0,0,0.146349 -32223,7316:485,-165,38,0,0,0.145849 -32224,7316:384,-164,38,0,0,0.145299 -32225,7316:383,-163,38,0,0,0.144993 -32226,7316:382,-162,38,0,0,0.144726 -32227,7316:381,-161,38,0,0,0.144358 -32228,7316:380,-160,38,0,0,0.143927 -32229,7315:489,-159,38,0,0,0.143649 -32230,7315:488,-158,38,0,0,0.143737 -32231,7315:487,-157,38,0,0,0.144612 -32232,7315:486,-156,38,0,0,0.146131 -32233,7315:485,-155,38,0,0,0.147831 -32234,7315:384,-154,38,0,0,0.151399 -32235,7315:383,-153,38,0,0,0.152698 -32236,7315:382,-152,38,0,0,0.154582 -32237,7315:381,-151,38,0,0,0.157463 -32238,7315:380,-150,38,0,0,0.15923 -32239,7314:489,-149,38,0,0,0.160693 -32240,7314:488,-148,38,0,0,0.163638 -32241,7314:487,-147,38,0,0,0.16385 -32242,7314:486,-146,38,0,0,0.164837 -32243,7314:485,-145,38,0,0,0.165574 -32244,7314:384,-144,38,0,0,0.167413 -32245,7314:383,-143,38,0,0,0.174075 -32246,7314:382,-142,38,0,0,0.174741 -32247,7314:381,-141,38,0,0,0.178566 -32248,7314:380,-140,38,0,0,0.185263 -32249,7313:489,-139,38,0,0,0.186273 -32250,7313:488,-138,38,0,0,0.187632 -32251,7313:487,-137,38,0,0,0.192599 -32252,7313:486,-136,38,0,0,0.196009 -32253,7313:485,-135,38,0,0,0.19809 -32254,7313:384,-134,38,0,0,0.203664 -32255,7313:383,-133,38,0,0,0.20798 -32256,7313:382,-132,38,0,0,0.206393 -32257,7313:381,-131,38,0,0,0.206477 -32258,7313:380,-130,38,0,0,0.208946 -32259,7312:489,-129,38,0,0,0.209558 -32260,7312:488,-128,38,0,0,0.202052 -32261,7312:485,-125,38,0,0,0.19099 -32262,7305:384,-54,38,0,0,0.0893389 -32263,7305:383,-53,38,0,0,0.101331 -32264,7305:382,-52,38,0,0,0.111974 -32265,7305:381,-51,38,0,0,0.110511 -32266,7305:380,-50,38,0,0,0.120075 -32267,7304:489,-49,38,0,0,0.135062 -32268,7304:488,-48,38,0,0,0.148987 -32269,7304:487,-47,38,0,0,0.154608 -32270,7304:486,-46,38,0,0,0.151241 -32271,7304:485,-45,38,0,0,0.148427 -32272,7304:384,-44,38,0,0,0.145542 -32273,7304:383,-43,38,0,0,0.149417 -32274,7304:382,-42,38,0,0,0.147133 -32275,7304:381,-41,38,0,0,0.144726 -32276,7304:380,-40,38,0,0,0.148259 -32277,7303:489,-39,38,0,0,0.145542 -32278,7303:488,-38,38,0,0,0.147779 -32279,7303:487,-37,38,0,0,0.146722 -32280,7303:486,-36,38,0,0,0.157327 -32281,7303:485,-35,38,0,0,0.158351 -32282,7303:384,-34,38,0,0,0.158872 -32283,7303:383,-33,38,0,0,0.164046 -32284,7303:382,-32,38,0,0,0.190182 -32285,7303:381,-31,38,0,0,0.204799 -32286,7303:380,-30,38,0,0,0.215229 -32287,7302:489,-29,38,0,0,0.223249 -32288,7302:488,-28,38,0,0,0.216255 -32289,7302:487,-27,38,0,0,0.212312 -32290,7302:486,-26,38,0,0,0.2049 -32291,7302:485,-25,38,0,0,0.221224 -32292,7302:384,-24,38,0,0,0.211077 -32293,7302:383,-23,38,0,0,0.222572 -32294,7302:382,-22,38,0,0,0.238198 -32295,7302:381,-21,38,0,0,0.236283 -32296,7302:380,-20,38,0,0,0.232962 -32297,7301:489,-19,38,0,0,0.230165 -32298,7301:488,-18,38,0,0,0.233385 -32299,7301:487,-17,38,0,0,0.24395 -32300,7301:486,-16,38,0,0,0.25499 -32301,7301:485,-15,38,0,0,0.241269 -32302,7301:384,-14,38,0,0,0.241721 -32303,7301:383,-13,38,0,0,0.237658 -32304,7301:382,-12,38,0,0,0.236042 -32305,7301:381,-11,38,0,0,0.228603 -32306,7300:487,-7,38,0,0,0.235043 -32307,7300:486,-6,38,0,0,0.206293 -32308,1300:381,0,38,0,0,0.222341 -32309,1300:381,1,38,0,0,0.225466 -32310,1314:383,143,38,0,0,0.0804923 -32311,1314:486,146,38,0,0,0.0912546 -32312,1314:487,147,38,0,0,0.103656 -32313,1314:488,148,38,0,0,0.108071 -32314,1314:489,149,38,0,0,0.111058 -32315,1315:380,150,38,0,0,0.113702 -32316,1315:381,151,38,0,0,0.117079 -32317,1315:382,152,38,0,0,0.119793 -32318,1315:383,153,38,0,0,0.120968 -32319,1315:384,154,38,0,0,0.121746 -32320,1315:485,155,38,0,0,0.122605 -32321,1315:486,156,38,0,0,0.123614 -32322,1315:487,157,38,0,0,0.12135 -32323,1316:380,160,38,0,0,0.116782 -32324,1316:381,161,38,0,0,0.114596 -32325,1316:382,162,38,0,0,0.119511 -32326,1316:383,163,38,0,0,0.127483 -32327,1316:384,164,38,0,0,0.128228 -32328,1316:485,165,38,0,0,0.128274 -32329,1316:486,166,38,0,0,0.129242 -32330,1316:487,167,38,0,0,0.1301 -32331,1316:488,168,38,0,0,0.13108 -32332,1316:489,169,38,0,0,0.132963 -32333,1317:380,170,38,0,0,0.133284 -32334,1317:381,171,38,0,0,0.129566 -32335,1317:382,172,38,0,0,0.126685 -32336,1317:383,173,38,0,0,0.126708 -32337,1317:384,174,38,0,0,0.127221 -32338,1317:485,175,38,0,0,0.127278 -32339,1317:486,176,38,0,0,0.129011 -32340,1317:487,177,38,0,0,0.13101 -32341,1317:488,178,38,0,0,0.132928 -32342,1317:489,179,38,0,0,0.134535 -32343,1318:380,180,38,0,0,0.135808 -32344,7318:390,-180,39,0,0,0.135242 -32345,7317:499,-179,39,0,0,0.134355 -32346,7317:498,-178,39,0,0,0.13101 -32347,7317:497,-177,39,0,0,0.130787 -32348,7317:496,-176,39,0,0,0.13122 -32349,7317:495,-175,39,0,0,0.131889 -32350,7317:394,-174,39,0,0,0.133997 -32351,7317:393,-173,39,0,0,0.136861 -32352,7317:392,-172,39,0,0,0.140158 -32353,7317:391,-171,39,0,0,0.141863 -32354,7317:390,-170,39,0,0,0.14356 -32355,7316:499,-169,39,0,0,0.144739 -32356,7316:497,-167,39,0,0,0.145032 -32357,7316:496,-166,39,0,0,0.145146 -32358,7316:495,-165,39,0,0,0.145197 -32359,7316:394,-164,39,0,0,0.144981 -32360,7316:393,-163,39,0,0,0.144815 -32361,7316:392,-162,39,0,0,0.144943 -32362,7316:391,-161,39,0,0,0.145006 -32363,7316:390,-160,39,0,0,0.143421 -32364,7315:499,-159,39,0,0,0.141963 -32365,7315:498,-158,39,0,0,0.143118 -32366,7315:497,-157,39,0,0,0.145338 -32367,7315:496,-156,39,0,0,0.146439 -32368,7315:495,-155,39,0,0,0.148765 -32369,7315:394,-154,39,0,0,0.149495 -32370,7315:393,-153,39,0,0,0.15078 -32371,7315:392,-152,39,0,0,0.152286 -32372,7315:391,-151,39,0,0,0.155349 -32373,7315:390,-150,39,0,0,0.157354 -32374,7314:499,-149,39,0,0,0.15764 -32375,7314:498,-148,39,0,0,0.157831 -32376,7314:497,-147,39,0,0,0.158913 -32377,7314:496,-146,39,0,0,0.162279 -32378,7314:495,-145,39,0,0,0.164894 -32379,7314:394,-144,39,0,0,0.166784 -32380,7314:393,-143,39,0,0,0.168404 -32381,7314:392,-142,39,0,0,0.169732 -32382,7314:391,-141,39,0,0,0.17209 -32383,7314:390,-140,39,0,0,0.177289 -32384,7313:499,-139,39,0,0,0.177499 -32385,7313:498,-138,39,0,0,0.181249 -32386,7313:497,-137,39,0,0,0.183333 -32387,7313:496,-136,39,0,0,0.185154 -32388,7313:495,-135,39,0,0,0.19034 -32389,7313:394,-134,39,0,0,0.199202 -32390,7313:393,-133,39,0,0,0.199973 -32391,7313:392,-132,39,0,0,0.200598 -32392,7313:391,-131,39,0,0,0.203631 -32393,7313:390,-130,39,0,0,0.207692 -32394,7305:394,-54,39,0,0,0.0876154 -32395,7305:393,-53,39,0,0,0.100307 -32396,7305:392,-52,39,0,0,0.106428 -32397,7305:391,-51,39,0,0,0.11036 -32398,7305:390,-50,39,0,0,0.134379 -32399,7304:499,-49,39,0,0,0.141152 -32400,7304:498,-48,39,0,0,0.148038 -32401,7304:497,-47,39,0,0,0.14558 -32402,7304:496,-46,39,0,0,0.139293 -32403,7304:495,-45,39,0,0,0.142565 -32404,7304:394,-44,39,0,0,0.147133 -32405,7304:393,-43,39,0,0,0.142314 -32406,7304:392,-42,39,0,0,0.139257 -32407,7304:391,-41,39,0,0,0.139874 -32408,7304:390,-40,39,0,0,0.143018 -32409,7303:499,-39,39,0,0,0.143383 -32410,7303:498,-38,39,0,0,0.142703 -32411,7303:497,-37,39,0,0,0.15222 -32412,7303:496,-36,39,0,0,0.158201 -32413,7303:495,-35,39,0,0,0.160402 -32414,7303:394,-34,39,0,0,0.164103 -32415,7303:393,-33,39,0,0,0.166855 -32416,7303:392,-32,39,0,0,0.180033 -32417,7303:391,-31,39,0,0,0.194862 -32418,7303:390,-30,39,0,0,0.210649 -32419,7302:499,-29,39,0,0,0.20182 -32420,7302:498,-28,39,0,0,0.209014 -32421,7302:497,-27,39,0,0,0.206629 -32422,7302:496,-26,39,0,0,0.202218 -32423,7302:495,-25,39,0,0,0.20073 -32424,7302:394,-24,39,0,0,0.202931 -32425,7302:393,-23,39,0,0,0.216639 -32426,7302:392,-22,39,0,0,0.231825 -32427,7302:391,-21,39,0,0,0.246498 -32428,7302:390,-20,39,0,0,0.247702 -32429,7301:499,-19,39,0,0,0.244689 -32430,7301:498,-18,39,0,0,0.241194 -32431,7301:497,-17,39,0,0,0.243552 -32432,7301:496,-16,39,0,0,0.252947 -32433,7301:495,-15,39,0,0,0.251107 -32434,7301:394,-14,39,0,0,0.247702 -32435,7301:393,-13,39,0,0,0.242211 -32436,7301:392,-12,39,0,0,0.234065 -32437,7300:497,-7,39,0,0,0.232045 -32438,1300:391,0,39,0,0,0.211574 -32439,1300:391,1,39,0,0,0.226346 -32440,1300:392,2,39,0,0,0.214208 -32441,1314:496,146,39,0,0,0.0884236 -32442,1314:497,147,39,0,0,0.10598 -32443,1314:498,148,39,0,0,0.108627 -32444,1314:499,149,39,0,0,0.109877 -32445,1315:390,150,39,0,0,0.114982 -32446,1315:391,151,39,0,0,0.118983 -32447,1315:392,152,39,0,0,0.121077 -32448,1315:393,153,39,0,0,0.122164 -32449,1315:394,154,39,0,0,0.12245 -32450,1315:495,155,39,0,0,0.122682 -32451,1315:496,156,39,0,0,0.12367 -32452,1315:497,157,39,0,0,0.119144 -32453,1316:391,161,39,0,0,0.112097 -32454,1316:392,162,39,0,0,0.112117 -32455,1316:393,163,39,0,0,0.117313 -32456,1316:394,164,39,0,0,0.124497 -32457,1316:495,165,39,0,0,0.123425 -32458,1316:496,166,39,0,0,0.122837 -32459,1316:497,167,39,0,0,0.127872 -32460,1316:498,168,39,0,0,0.128607 -32461,1316:499,169,39,0,0,0.131021 -32462,1317:390,170,39,0,0,0.128538 -32463,1317:391,171,39,0,0,0.127975 -32464,1317:392,172,39,0,0,0.128102 -32465,1317:393,173,39,0,0,0.125994 -32466,1317:394,174,39,0,0,0.128699 -32467,1317:495,175,39,0,0,0.130274 -32468,1317:496,176,39,0,0,0.131185 -32469,1317:497,177,39,0,0,0.131443 -32470,1317:498,178,39,0,0,0.131478 -32471,1317:499,179,39,0,0,0.13481 -32472,1318:390,180,39,0,0,0.135242 -32473,7418:100,-180,40,0,0,0.13183 -32474,7417:209,-179,40,0,0,0.13216 -32475,7417:208,-178,40,0,0,0.130834 -32476,7417:207,-177,40,0,0,0.130298 -32477,7417:206,-176,40,0,0,0.130472 -32478,7417:205,-175,40,0,0,0.130904 -32479,7417:104,-174,40,0,0,0.133557 -32480,7417:103,-173,40,0,0,0.138617 -32481,7417:102,-172,40,0,0,0.138115 -32482,7417:101,-171,40,0,0,0.140158 -32483,7417:100,-170,40,0,0,0.141863 -32484,7416:209,-169,40,0,0,0.144332 -32485,7416:208,-168,40,0,0,0.145798 -32486,7416:207,-167,40,0,0,0.145236 -32487,7416:206,-166,40,0,0,0.136569 -32488,7416:205,-165,40,0,0,0.140779 -32489,7416:104,-164,40,0,0,0.138704 -32490,7416:103,-163,40,0,0,0.14694 -32491,7416:102,-162,40,0,0,0.146876 -32492,7416:101,-161,40,0,0,0.145849 -32493,7416:100,-160,40,0,0,0.14399 -32494,7415:209,-159,40,0,0,0.143055 -32495,7415:208,-158,40,0,0,0.142051 -32496,7415:207,-157,40,0,0,0.142917 -32497,7415:206,-156,40,0,0,0.143775 -32498,7415:205,-155,40,0,0,0.143825 -32499,7415:104,-154,40,0,0,0.1459 -32500,7415:103,-153,40,0,0,0.144993 -32501,7415:102,-152,40,0,0,0.145236 -32502,7415:101,-151,40,0,0,0.149888 -32503,7415:100,-150,40,0,0,0.153217 -32504,7414:209,-149,40,0,0,0.154166 -32505,7414:208,-148,40,0,0,0.153871 -32506,7414:207,-147,40,0,0,0.153591 -32507,7414:206,-146,40,0,0,0.161206 -32508,7414:205,-145,40,0,0,0.163062 -32509,7414:104,-144,40,0,0,0.163441 -32510,7414:103,-143,40,0,0,0.167356 -32511,7414:102,-142,40,0,0,0.173117 -32512,7414:101,-141,40,0,0,0.175245 -32513,7414:100,-140,40,0,0,0.177334 -32514,7413:209,-139,40,0,0,0.17801 -32515,7413:208,-138,40,0,0,0.177634 -32516,7413:207,-137,40,0,0,0.179367 -32517,7413:206,-136,40,0,0,0.182657 -32518,7413:205,-135,40,0,0,0.192168 -32519,7413:104,-134,40,0,0,0.190356 -32520,7413:103,-133,40,0,0,0.193543 -32521,7413:102,-132,40,0,0,0.197666 -32522,7413:101,-131,40,0,0,0.199382 -32523,7413:100,-130,40,0,0,0.204498 -32524,7412:209,-129,40,0,0,0.194443 -32525,7407:209,-79,40,0,0,0.0898333 -32526,7407:208,-78,40,0,0,0.089699 -32527,7405:205,-55,40,0,0,0.0845682 -32528,7405:104,-54,40,0,0,0.0862941 -32529,7405:103,-53,40,0,0,0.0922133 -32530,7405:102,-52,40,0,0,0.0977042 -32531,7405:101,-51,40,0,0,0.121537 -32532,7405:100,-50,40,0,0,0.136751 -32533,7404:209,-49,40,0,0,0.136025 -32534,7404:208,-48,40,0,0,0.135723 -32535,7404:207,-47,40,0,0,0.136691 -32536,7404:206,-46,40,0,0,0.13576 -32537,7404:205,-45,40,0,0,0.133962 -32538,7404:104,-44,40,0,0,0.135182 -32539,7404:103,-43,40,0,0,0.134798 -32540,7404:102,-42,40,0,0,0.137749 -32541,7404:101,-41,40,0,0,0.137481 -32542,7404:100,-40,40,0,0,0.138888 -32543,7403:209,-39,40,0,0,0.141338 -32544,7403:208,-38,40,0,0,0.148389 -32545,7403:207,-37,40,0,0,0.151505 -32546,7403:206,-36,40,0,0,0.153217 -32547,7403:205,-35,40,0,0,0.157408 -32548,7403:104,-34,40,0,0,0.157599 -32549,7403:103,-33,40,0,0,0.160209 -32550,7403:102,-32,40,0,0,0.173942 -32551,7403:101,-31,40,0,0,0.181692 -32552,7403:100,-30,40,0,0,0.177394 -32553,7402:209,-29,40,0,0,0.175394 -32554,7402:208,-28,40,0,0,0.181082 -32555,7402:207,-27,40,0,0,0.201622 -32556,7402:206,-26,40,0,0,0.202152 -32557,7402:205,-25,40,0,0,0.211968 -32558,7402:104,-24,40,0,0,0.214831 -32559,7402:103,-23,40,0,0,0.207946 -32560,7402:102,-22,40,0,0,0.208675 -32561,7402:101,-21,40,0,0,0.227138 -32562,7402:100,-20,40,0,0,0.243552 -32563,7401:209,-19,40,0,0,0.248661 -32564,7401:208,-18,40,0,0,0.250412 -32565,7401:207,-17,40,0,0,0.250836 -32566,7401:206,-16,40,0,0,0.251899 -32567,7401:205,-15,40,0,0,0.24776 -32568,7401:104,-14,40,0,0,0.24665 -32569,7401:103,-13,40,0,0,0.247702 -32570,7401:102,-12,40,0,0,0.24157 -32571,7401:101,-11,40,0,0,0.228821 -32572,7400:207,-7,40,0,0,0.230147 -32573,7400:206,-6,40,0,0,0.201903 -32574,7400:102,-2,40,0,0,0.20881 -32575,7400:101,-1,40,0,0,0.207861 -32576,1400:101,0,40,0,0,0.205251 -32577,1400:101,1,40,0,0,0.208048 -32578,1400:102,2,40,0,0,0.217722 -32579,1400:103,3,40,0,0,0.19953 -32580,1414:104,144,40,0,0,0.0792464 -32581,1414:205,145,40,0,0,0.0773852 -32582,1414:206,146,40,0,0,0.0884982 -32583,1414:207,147,40,0,0,0.109135 -32584,1414:208,148,40,0,0,0.111699 -32585,1414:209,149,40,0,0,0.113702 -32586,1415:100,150,40,0,0,0.116877 -32587,1415:101,151,40,0,0,0.119058 -32588,1415:102,152,40,0,0,0.119414 -32589,1415:103,153,40,0,0,0.118402 -32590,1415:104,154,40,0,0,0.118832 -32591,1415:205,155,40,0,0,0.120695 -32592,1415:206,156,40,0,0,0.121669 -32593,1415:207,157,40,0,0,0.10563 -32594,1416:104,164,40,0,0,0.111984 -32595,1416:205,165,40,0,0,0.121822 -32596,1416:206,166,40,0,0,0.122771 -32597,1416:208,168,40,0,0,0.124016 -32598,1416:209,169,40,0,0,0.127198 -32599,1417:100,170,40,0,0,0.128262 -32600,1417:101,171,40,0,0,0.12605 -32601,1417:102,172,40,0,0,0.127723 -32602,1417:103,173,40,0,0,0.127312 -32603,1417:104,174,40,0,0,0.127884 -32604,1417:205,175,40,0,0,0.127712 -32605,1417:206,176,40,0,0,0.12809 -32606,1417:207,177,40,0,0,0.128757 -32607,1417:208,178,40,0,0,0.12817 -32608,1417:209,179,40,0,0,0.127998 -32609,1418:100,180,40,0,0,0.13183 -32610,7418:110,-180,41,0,0,0.125406 -32611,7417:219,-179,41,0,0,0.126992 -32612,7417:218,-178,41,0,0,0.128354 -32613,7417:217,-177,41,0,0,0.129068 -32614,7417:216,-176,41,0,0,0.129404 -32615,7417:215,-175,41,0,0,0.129949 -32616,7417:114,-174,41,0,0,0.134439 -32617,7417:113,-173,41,0,0,0.139146 -32618,7417:112,-172,41,0,0,0.143081 -32619,7417:111,-171,41,0,0,0.144472 -32620,7417:110,-170,41,0,0,0.145236 -32621,7416:219,-169,41,0,0,0.142289 -32622,7416:218,-168,41,0,0,0.13847 -32623,7416:217,-167,41,0,0,0.144332 -32624,7416:216,-166,41,0,0,0.140965 -32625,7416:215,-165,41,0,0,0.131936 -32626,7416:113,-163,41,0,0,0.130846 -32627,7416:112,-162,41,0,0,0.1364 -32628,7416:111,-161,41,0,0,0.132573 -32629,7416:110,-160,41,0,0,0.147469 -32630,7415:219,-159,41,0,0,0.150124 -32631,7415:218,-158,41,0,0,0.146953 -32632,7415:217,-157,41,0,0,0.143598 -32633,7415:216,-156,41,0,0,0.141551 -32634,7415:215,-155,41,0,0,0.141688 -32635,7415:114,-154,41,0,0,0.142904 -32636,7415:113,-153,41,0,0,0.141963 -32637,7415:112,-152,41,0,0,0.142164 -32638,7415:111,-151,41,0,0,0.142728 -32639,7415:110,-150,41,0,0,0.145478 -32640,7414:219,-149,41,0,0,0.146863 -32641,7414:218,-148,41,0,0,0.148922 -32642,7414:217,-147,41,0,0,0.15327 -32643,7414:216,-146,41,0,0,0.155092 -32644,7414:215,-145,41,0,0,0.158365 -32645,7414:114,-144,41,0,0,0.159257 -32646,7414:113,-143,41,0,0,0.160748 -32647,7414:112,-142,41,0,0,0.170413 -32648,7414:111,-141,41,0,0,0.174637 -32649,7414:110,-140,41,0,0,0.179185 -32650,7413:219,-139,41,0,0,0.180884 -32651,7413:218,-138,41,0,0,0.182917 -32652,7413:217,-137,41,0,0,0.182856 -32653,7413:216,-136,41,0,0,0.185713 -32654,7413:215,-135,41,0,0,0.192391 -32655,7413:114,-134,41,0,0,0.194057 -32656,7413:113,-133,41,0,0,0.196868 -32657,7413:112,-132,41,0,0,0.198514 -32658,7413:111,-131,41,0,0,0.200928 -32659,7413:110,-130,41,0,0,0.199038 -32660,7408:110,-80,41,0,0,0.0875087 -32661,7407:219,-79,41,0,0,0.0877551 -32662,7407:218,-78,41,0,0,0.0903556 -32663,7405:215,-55,41,0,0,0.0824918 -32664,7405:114,-54,41,0,0,0.0900941 -32665,7405:113,-53,41,0,0,0.0920416 -32666,7405:112,-52,41,0,0,0.107498 -32667,7405:111,-51,41,0,0,0.130893 -32668,7405:110,-50,41,0,0,0.137164 -32669,7404:219,-49,41,0,0,0.136327 -32670,7404:218,-48,41,0,0,0.135543 -32671,7404:217,-47,41,0,0,0.134798 -32672,7404:216,-46,41,0,0,0.131443 -32673,7404:215,-45,41,0,0,0.131255 -32674,7404:114,-44,41,0,0,0.132845 -32675,7404:113,-43,41,0,0,0.132384 -32676,7404:112,-42,41,0,0,0.13294 -32677,7404:111,-41,41,0,0,0.134966 -32678,7404:110,-40,41,0,0,0.134081 -32679,7403:219,-39,41,0,0,0.1364 -32680,7403:218,-38,41,0,0,0.140233 -32681,7403:217,-37,41,0,0,0.143699 -32682,7403:216,-36,41,0,0,0.152313 -32683,7403:215,-35,41,0,0,0.152273 -32684,7403:114,-34,41,0,0,0.150714 -32685,7403:113,-33,41,0,0,0.150833 -32686,7403:112,-32,41,0,0,0.154743 -32687,7403:111,-31,41,0,0,0.172031 -32688,7403:110,-30,41,0,0,0.174119 -32689,7402:219,-29,41,0,0,0.172735 -32690,7402:218,-28,41,0,0,0.190245 -32691,7402:217,-27,41,0,0,0.191801 -32692,7402:216,-26,41,0,0,0.19695 -32693,7402:215,-25,41,0,0,0.215768 -32694,7402:114,-24,41,0,0,0.21923 -32695,7402:113,-23,41,0,0,0.216499 -32696,7402:112,-22,41,0,0,0.216796 -32697,7402:111,-21,41,0,0,0.243647 -32698,7402:110,-20,41,0,0,0.239543 -32699,7401:219,-19,41,0,0,0.238235 -32700,7401:218,-18,41,0,0,0.234471 -32701,7401:217,-17,41,0,0,0.231405 -32702,7401:216,-16,41,0,0,0.238963 -32703,7401:215,-15,41,0,0,0.234673 -32704,7401:114,-14,41,0,0,0.248623 -32705,7401:113,-13,41,0,0,0.247281 -32706,7401:112,-12,41,0,0,0.244139 -32707,7401:111,-11,41,0,0,0.234766 -32708,7401:110,-10,41,0,0,0.225681 -32709,7400:219,-9,41,0,0,0.220128 -32710,7400:218,-8,41,0,0,0.228024 -32711,7400:217,-7,41,0,0,0.215525 -32712,7400:113,-3,41,0,0,0.216116 -32713,7400:112,-2,41,0,0,0.217599 -32714,7400:111,-1,41,0,0,0.198433 -32715,1400:111,0,41,0,0,0.19142 -32716,1400:111,1,41,0,0,0.204198 -32717,1400:112,2,41,0,0,0.215143 -32718,1400:113,3,41,0,0,0.217809 -32719,1400:114,4,41,0,0,0.215873 -32720,1400:215,5,41,0,0,0.207354 -32721,1400:216,6,41,0,0,0.176302 -32722,1414:110,140,41,0,0,0.0791266 -32723,1414:111,141,41,0,0,0.077451 -32724,1414:112,142,41,0,0,0.0787084 -32725,1414:113,143,41,0,0,0.0829908 -32726,1414:114,144,41,0,0,0.0857045 -32727,1414:215,145,41,0,0,0.0862049 -32728,1414:216,146,41,0,0,0.0867814 -32729,1414:217,147,41,0,0,0.107794 -32730,1414:218,148,41,0,0,0.11177 -32731,1414:219,149,41,0,0,0.111709 -32732,1415:110,150,41,0,0,0.113899 -32733,1415:111,151,41,0,0,0.11264 -32734,1415:112,152,41,0,0,0.109166 -32735,1415:113,153,41,0,0,0.109526 -32736,1415:114,154,41,0,0,0.111018 -32737,1415:215,155,41,0,0,0.116338 -32738,1415:216,156,41,0,0,0.119717 -32739,1415:217,157,41,0,0,0.103628 -32740,1416:114,164,41,0,0,0.107607 -32741,1416:215,165,41,0,0,0.112445 -32742,1416:216,166,41,0,0,0.115758 -32743,1416:217,167,41,0,0,0.1176 -32744,1416:218,168,41,0,0,0.119382 -32745,1416:219,169,41,0,0,0.124206 -32746,1417:110,170,41,0,0,0.126197 -32747,1417:111,171,41,0,0,0.118509 -32748,1417:112,172,41,0,0,0.124317 -32749,1417:113,173,41,0,0,0.125666 -32750,1417:114,174,41,0,0,0.125711 -32751,1417:215,175,41,0,0,0.126469 -32752,1417:216,176,41,0,0,0.123781 -32753,1417:217,177,41,0,0,0.123392 -32754,1417:218,178,41,0,0,0.123037 -32755,1417:219,179,41,0,0,0.123004 -32756,1418:110,180,41,0,0,0.125406 -32757,7418:120,-180,42,0,0,0.126367 -32758,7417:229,-179,42,0,0,0.126039 -32759,7417:228,-178,42,0,0,0.127895 -32760,7417:227,-177,42,0,0,0.129358 -32761,7417:226,-176,42,0,0,0.130566 -32762,7417:225,-175,42,0,0,0.135026 -32763,7417:124,-174,42,0,0,0.132077 -32764,7417:123,-173,42,0,0,0.131443 -32765,7417:122,-172,42,0,0,0.13017 -32766,7417:121,-171,42,0,0,0.127004 -32767,7417:120,-170,42,0,0,0.12893 -32768,7416:229,-169,42,0,0,0.131995 -32769,7416:228,-168,42,0,0,0.136994 -32770,7416:227,-167,42,0,0,0.141501 -32771,7416:226,-166,42,0,0,0.140629 -32772,7416:225,-165,42,0,0,0.134894 -32773,7416:124,-164,42,0,0,0.124094 -32774,7416:121,-161,42,0,0,0.142691 -32775,7416:120,-160,42,0,0,0.147534 -32776,7415:229,-159,42,0,0,0.148298 -32777,7415:228,-158,42,0,0,0.151717 -32778,7415:227,-157,42,0,0,0.150084 -32779,7415:226,-156,42,0,0,0.148233 -32780,7415:225,-155,42,0,0,0.144332 -32781,7415:124,-154,42,0,0,0.142339 -32782,7415:123,-153,42,0,0,0.141002 -32783,7415:122,-152,42,0,0,0.141538 -32784,7415:121,-151,42,0,0,0.143232 -32785,7415:120,-150,42,0,0,0.148272 -32786,7414:229,-149,42,0,0,0.150649 -32787,7414:228,-148,42,0,0,0.152021 -32788,7414:227,-147,42,0,0,0.154394 -32789,7414:226,-146,42,0,0,0.155821 -32790,7414:225,-145,42,0,0,0.163624 -32791,7414:124,-144,42,0,0,0.165645 -32792,7414:123,-143,42,0,0,0.164188 -32793,7414:122,-142,42,0,0,0.163035 -32794,7414:121,-141,42,0,0,0.169847 -32795,7414:120,-140,42,0,0,0.173957 -32796,7413:229,-139,42,0,0,0.173942 -32797,7413:228,-138,42,0,0,0.182687 -32798,7413:227,-137,42,0,0,0.186133 -32799,7413:226,-136,42,0,0,0.186304 -32800,7413:225,-135,42,0,0,0.191961 -32801,7413:123,-133,42,0,0,0.186351 -32802,7413:122,-132,42,0,0,0.197601 -32803,7413:121,-131,42,0,0,0.195088 -32804,7407:229,-79,42,0,0,0.088548 -32805,7407:228,-78,42,0,0,0.0882746 -32806,7405:228,-58,42,0,0,0.0771947 -32807,7405:227,-57,42,0,0,0.0806066 -32808,7405:226,-56,42,0,0,0.0841079 -32809,7405:225,-55,42,0,0,0.0859464 -32810,7405:124,-54,42,0,0,0.122837 -32811,7405:123,-53,42,0,0,0.139343 -32812,7405:122,-52,42,0,0,0.134858 -32813,7405:121,-51,42,0,0,0.133985 -32814,7405:120,-50,42,0,0,0.130356 -32815,7404:229,-49,42,0,0,0.133962 -32816,7404:228,-48,42,0,0,0.134188 -32817,7404:227,-47,42,0,0,0.132113 -32818,7404:226,-46,42,0,0,0.13003 -32819,7404:225,-45,42,0,0,0.129531 -32820,7404:124,-44,42,0,0,0.129138 -32821,7404:123,-43,42,0,0,0.129682 -32822,7404:122,-42,42,0,0,0.131091 -32823,7404:121,-41,42,0,0,0.131419 -32824,7404:120,-40,42,0,0,0.131689 -32825,7403:229,-39,42,0,0,0.133023 -32826,7403:228,-38,42,0,0,0.138888 -32827,7403:227,-37,42,0,0,0.139923 -32828,7403:226,-36,42,0,0,0.142967 -32829,7403:225,-35,42,0,0,0.145836 -32830,7403:124,-34,42,0,0,0.151149 -32831,7403:123,-33,42,0,0,0.15343 -32832,7403:122,-32,42,0,0,0.156606 -32833,7403:121,-31,42,0,0,0.157777 -32834,7403:120,-30,42,0,0,0.161054 -32835,7402:229,-29,42,0,0,0.164837 -32836,7402:228,-28,42,0,0,0.166242 -32837,7402:227,-27,42,0,0,0.170413 -32838,7402:226,-26,42,0,0,0.174193 -32839,7402:225,-25,42,0,0,0.180109 -32840,7402:124,-24,42,0,0,0.192088 -32841,7402:123,-23,42,0,0,0.197845 -32842,7402:122,-22,42,0,0,0.220041 -32843,7402:121,-21,42,0,0,0.240386 -32844,7402:120,-20,42,0,0,0.239356 -32845,7401:229,-19,42,0,0,0.231752 -32846,7401:228,-18,42,0,0,0.233329 -32847,7401:227,-17,42,0,0,0.222644 -32848,7401:226,-16,42,0,0,0.219406 -32849,7401:225,-15,42,0,0,0.231441 -32850,7401:124,-14,42,0,0,0.236932 -32851,7401:123,-13,42,0,0,0.244386 -32852,7401:122,-12,42,0,0,0.244633 -32853,7401:121,-11,42,0,0,0.237007 -32854,7401:120,-10,42,0,0,0.229746 -32855,7400:229,-9,42,0,0,0.213034 -32856,7400:228,-8,42,0,0,0.198923 -32857,7400:225,-5,42,0,0,0.20636 -32858,7400:124,-4,42,0,0,0.212157 -32859,7400:123,-3,42,0,0,0.212775 -32860,7400:122,-2,42,0,0,0.212312 -32861,7400:121,-1,42,0,0,0.212054 -32862,1400:121,0,42,0,0,0.204498 -32863,1400:121,1,42,0,0,0.198449 -32864,1400:122,2,42,0,0,0.205402 -32865,1400:123,3,42,0,0,0.21556 -32866,1400:124,4,42,0,0,0.209609 -32867,1400:225,5,42,0,0,0.181173 -32868,1400:227,7,42,0,0,0.16147 -32869,1400:228,8,42,0,0,0.162559 -32870,1400:229,9,42,0,0,0.168692 -32871,1401:121,11,42,0,0,0.157504 -32872,1413:229,139,42,0,0,0.0779224 -32873,1414:120,140,42,0,0,0.0787755 -32874,1414:122,142,42,0,0,0.0942107 -32875,1414:123,143,42,0,0,0.0880847 -32876,1414:124,144,42,0,0,0.0833277 -32877,1414:225,145,42,0,0,0.0848548 -32878,1414:226,146,42,0,0,0.091093 -32879,1414:227,147,42,0,0,0.0992458 -32880,1414:228,148,42,0,0,0.0993652 -32881,1414:229,149,42,0,0,0.101885 -32882,1415:120,150,42,0,0,0.105455 -32883,1415:121,151,42,0,0,0.105039 -32884,1415:122,152,42,0,0,0.103628 -32885,1415:123,153,42,0,0,0.105999 -32886,1415:124,154,42,0,0,0.108498 -32887,1415:225,155,42,0,0,0.112774 -32888,1415:226,156,42,0,0,0.116856 -32889,1415:227,157,42,0,0,0.0982854 -32890,1416:225,165,42,0,0,0.111018 -32891,1416:226,166,42,0,0,0.114804 -32892,1416:227,167,42,0,0,0.119706 -32893,1416:228,168,42,0,0,0.120738 -32894,1416:229,169,42,0,0,0.124698 -32895,1417:120,170,42,0,0,0.125982 -32896,1417:121,171,42,0,0,0.119144 -32897,1417:122,172,42,0,0,0.117739 -32898,1417:123,173,42,0,0,0.120968 -32899,1417:124,174,42,0,0,0.123425 -32900,1417:225,175,42,0,0,0.123547 -32901,1417:226,176,42,0,0,0.121955 -32902,1417:227,177,42,0,0,0.121515 -32903,1417:228,178,42,0,0,0.121537 -32904,1417:229,179,42,0,0,0.123537 -32905,1418:120,180,42,0,0,0.126367 -32906,7418:130,-180,43,0,0,0.126288 -32907,7417:239,-179,43,0,0,0.125508 -32908,7417:238,-178,43,0,0,0.124161 -32909,7417:237,-177,43,0,0,0.128584 -32910,7417:236,-176,43,0,0,0.131045 -32911,7417:235,-175,43,0,0,0.129011 -32912,7417:134,-174,43,0,0,0.123893 -32913,7417:133,-173,43,0,0,0.123781 -32914,7417:132,-172,43,0,0,0.118886 -32915,7417:131,-171,43,0,0,0.117568 -32916,7417:130,-170,43,0,0,0.123114 -32917,7416:239,-169,43,0,0,0.124911 -32918,7416:238,-168,43,0,0,0.126277 -32919,7416:237,-167,43,0,0,0.125575 -32920,7416:236,-166,43,0,0,0.124631 -32921,7416:235,-165,43,0,0,0.122406 -32922,7416:134,-164,43,0,0,0.122506 -32923,7416:133,-163,43,0,0,0.123481 -32924,7416:132,-162,43,0,0,0.1104 -32925,7416:130,-160,43,0,0,0.139171 -32926,7415:239,-159,43,0,0,0.148311 -32927,7415:238,-158,43,0,0,0.146041 -32928,7415:237,-157,43,0,0,0.145504 -32929,7415:236,-156,43,0,0,0.154434 -32930,7415:235,-155,43,0,0,0.148012 -32931,7415:134,-154,43,0,0,0.143219 -32932,7415:133,-153,43,0,0,0.141763 -32933,7415:132,-152,43,0,0,0.143409 -32934,7415:131,-151,43,0,0,0.144345 -32935,7415:130,-150,43,0,0,0.149299 -32936,7414:239,-149,43,0,0,0.150032 -32937,7414:238,-148,43,0,0,0.152871 -32938,7414:237,-147,43,0,0,0.157218 -32939,7414:236,-146,43,0,0,0.160236 -32940,7414:235,-145,43,0,0,0.163441 -32941,7414:134,-144,43,0,0,0.163441 -32942,7414:133,-143,43,0,0,0.165318 -32943,7414:132,-142,43,0,0,0.166713 -32944,7414:131,-141,43,0,0,0.167356 -32945,7414:130,-140,43,0,0,0.168836 -32946,7413:239,-139,43,0,0,0.171783 -32947,7413:238,-138,43,0,0,0.177019 -32948,7413:237,-137,43,0,0,0.18026 -32949,7413:236,-136,43,0,0,0.190657 -32950,7413:133,-133,43,0,0,0.175691 -32951,7408:130,-80,43,0,0,0.0830691 -32952,7407:239,-79,43,0,0,0.0910247 -32953,7407:238,-78,43,0,0,0.088606 -32954,7405:238,-58,43,0,0,0.0789844 -32955,7405:237,-57,43,0,0,0.0836028 -32956,7405:236,-56,43,0,0,0.0907786 -32957,7405:235,-55,43,0,0,0.118767 -32958,7405:134,-54,43,0,0,0.13938 -32959,7405:133,-53,43,0,0,0.131901 -32960,7405:132,-52,43,0,0,0.129323 -32961,7405:131,-51,43,0,0,0.128412 -32962,7405:130,-50,43,0,0,0.129381 -32963,7404:239,-49,43,0,0,0.129624 -32964,7404:238,-48,43,0,0,0.129531 -32965,7404:237,-47,43,0,0,0.130077 -32966,7404:236,-46,43,0,0,0.128942 -32967,7404:235,-45,43,0,0,0.128746 -32968,7404:134,-44,43,0,0,0.128964 -32969,7404:133,-43,43,0,0,0.13024 -32970,7404:132,-42,43,0,0,0.132125 -32971,7404:131,-41,43,0,0,0.132384 -32972,7404:130,-40,43,0,0,0.129798 -32973,7403:239,-39,43,0,0,0.130822 -32974,7403:238,-38,43,0,0,0.133818 -32975,7403:237,-37,43,0,0,0.135977 -32976,7403:236,-36,43,0,0,0.136424 -32977,7403:235,-35,43,0,0,0.138924 -32978,7403:134,-34,43,0,0,0.150596 -32979,7403:133,-33,43,0,0,0.163133 -32980,7403:132,-32,43,0,0,0.179215 -32981,7403:131,-31,43,0,0,0.179004 -32982,7403:130,-30,43,0,0,0.169804 -32983,7402:239,-29,43,0,0,0.16727 -32984,7402:238,-28,43,0,0,0.16546 -32985,7402:237,-27,43,0,0,0.168116 -32986,7402:236,-26,43,0,0,0.176123 -32987,7402:235,-25,43,0,0,0.179972 -32988,7402:134,-24,43,0,0,0.185993 -32989,7402:133,-23,43,0,0,0.194282 -32990,7402:132,-22,43,0,0,0.195831 -32991,7402:131,-21,43,0,0,0.236246 -32992,7402:130,-20,43,0,0,0.234729 -32993,7401:239,-19,43,0,0,0.231698 -32994,7401:238,-18,43,0,0,0.230949 -32995,7401:237,-17,43,0,0,0.225861 -32996,7401:236,-16,43,0,0,0.216691 -32997,7401:235,-15,43,0,0,0.218335 -32998,7401:134,-14,43,0,0,0.237806 -32999,7401:133,-13,43,0,0,0.238384 -33000,7401:132,-12,43,0,0,0.239187 -33001,7401:131,-11,43,0,0,0.23135 -33002,7401:130,-10,43,0,0,0.217302 -33003,7400:239,-9,43,0,0,0.217162 -33004,7400:134,-4,43,0,0,0.211077 -33005,7400:133,-3,43,0,0,0.211008 -33006,7400:132,-2,43,0,0,0.212724 -33007,7400:131,-1,43,0,0,0.210257 -33008,1400:131,0,43,0,0,0.207624 -33009,1400:131,1,43,0,0,0.205771 -33010,1400:132,2,43,0,0,0.205251 -33011,1400:133,3,43,0,0,0.213327 -33012,1400:134,4,43,0,0,0.200598 -33013,1400:239,9,43,0,0,0.166499 -33014,1401:130,10,43,0,0,0.187397 -33015,1401:131,11,43,0,0,0.181967 -33016,1401:132,12,43,0,0,0.198416 -33017,1401:133,13,43,0,0,0.174178 -33018,1414:131,141,43,0,0,0.0888552 -33019,1414:132,142,43,0,0,0.0926444 -33020,1414:133,143,43,0,0,0.0894308 -33021,1414:134,144,43,0,0,0.084576 -33022,1414:235,145,43,0,0,0.0848468 -33023,1414:236,146,43,0,0,0.0882829 -33024,1414:237,147,43,0,0,0.0928864 -33025,1414:238,148,43,0,0,0.0954452 -33026,1414:239,149,43,0,0,0.0972973 -33027,1415:130,150,43,0,0,0.0971171 -33028,1415:131,151,43,0,0,0.098934 -33029,1415:132,152,43,0,0,0.101791 -33030,1415:133,153,43,0,0,0.104039 -33031,1415:134,154,43,0,0,0.104125 -33032,1415:235,155,43,0,0,0.105805 -33033,1415:236,156,43,0,0,0.108896 -33034,1415:237,157,43,0,0,0.107203 -33035,1415:238,158,43,0,0,0.0952857 -33036,1416:235,165,43,0,0,0.107282 -33037,1416:236,166,43,0,0,0.111058 -33038,1416:237,167,43,0,0,0.111322 -33039,1416:238,168,43,0,0,0.116549 -33040,1416:239,169,43,0,0,0.118145 -33041,1417:130,170,43,0,0,0.118188 -33042,1417:131,171,43,0,0,0.117952 -33043,1417:132,172,43,0,0,0.11989 -33044,1417:133,173,43,0,0,0.119825 -33045,1417:134,174,43,0,0,0.119977 -33046,1417:235,175,43,0,0,0.12063 -33047,1417:236,176,43,0,0,0.121822 -33048,1417:237,177,43,0,0,0.123937 -33049,1417:238,178,43,0,0,0.124945 -33050,1417:239,179,43,0,0,0.125733 -33051,1418:130,180,43,0,0,0.126288 -33052,7418:140,-180,44,0,0,0.124485 -33053,7417:249,-179,44,0,0,0.125159 -33054,7417:248,-178,44,0,0,0.123259 -33055,7417:247,-177,44,0,0,0.122142 -33056,7417:246,-176,44,0,0,0.12307 -33057,7417:245,-175,44,0,0,0.119479 -33058,7417:144,-174,44,0,0,0.118209 -33059,7417:143,-173,44,0,0,0.115663 -33060,7417:142,-172,44,0,0,0.110957 -33061,7417:141,-171,44,0,0,0.113485 -33062,7417:140,-170,44,0,0,0.113495 -33063,7416:249,-169,44,0,0,0.11224 -33064,7416:248,-168,44,0,0,0.112722 -33065,7416:247,-167,44,0,0,0.11224 -33066,7416:246,-166,44,0,0,0.112743 -33067,7416:245,-165,44,0,0,0.11822 -33068,7416:144,-164,44,0,0,0.122738 -33069,7416:143,-163,44,0,0,0.124507 -33070,7416:142,-162,44,0,0,0.120412 -33071,7416:141,-161,44,0,0,0.100418 -33072,7415:248,-158,44,0,0,0.149979 -33073,7415:246,-156,44,0,0,0.142452 -33074,7415:245,-155,44,0,0,0.153591 -33075,7415:144,-154,44,0,0,0.155187 -33076,7415:143,-153,44,0,0,0.146297 -33077,7415:142,-152,44,0,0,0.147211 -33078,7415:141,-151,44,0,0,0.148492 -33079,7415:140,-150,44,0,0,0.149039 -33080,7414:249,-149,44,0,0,0.149849 -33081,7414:248,-148,44,0,0,0.149888 -33082,7414:247,-147,44,0,0,0.151849 -33083,7414:246,-146,44,0,0,0.157422 -33084,7414:245,-145,44,0,0,0.155861 -33085,7414:144,-144,44,0,0,0.155524 -33086,7414:143,-143,44,0,0,0.158941 -33087,7414:142,-142,44,0,0,0.162559 -33088,7414:141,-141,44,0,0,0.165163 -33089,7414:140,-140,44,0,0,0.170704 -33090,7413:249,-139,44,0,0,0.175305 -33091,7413:248,-138,44,0,0,0.175037 -33092,7413:247,-137,44,0,0,0.184319 -33093,7413:246,-136,44,0,0,0.18646 -33094,7413:245,-135,44,0,0,0.178883 -33095,7413:144,-134,44,0,0,0.175334 -33096,7413:143,-133,44,0,0,0.168937 -33097,7408:140,-80,44,0,0,0.0827333 -33098,7407:249,-79,44,0,0,0.0891717 -33099,7407:248,-78,44,0,0,0.0889469 -33100,7405:249,-59,44,0,0,0.0768076 -33101,7405:248,-58,44,0,0,0.0803935 -33102,7405:247,-57,44,0,0,0.0808581 -33103,7405:246,-56,44,0,0,0.108359 -33104,7405:245,-55,44,0,0,0.140791 -33105,7405:144,-54,44,0,0,0.137724 -33106,7405:143,-53,44,0,0,0.131326 -33107,7405:142,-52,44,0,0,0.127632 -33108,7405:141,-51,44,0,0,0.126095 -33109,7405:140,-50,44,0,0,0.126583 -33110,7404:249,-49,44,0,0,0.126243 -33111,7404:248,-48,44,0,0,0.127552 -33112,7404:247,-47,44,0,0,0.129694 -33113,7404:246,-46,44,0,0,0.131948 -33114,7404:245,-45,44,0,0,0.136848 -33115,7404:144,-44,44,0,0,0.144713 -33116,7404:143,-43,44,0,0,0.149469 -33117,7404:142,-42,44,0,0,0.14756 -33118,7404:141,-41,44,0,0,0.141214 -33119,7404:140,-40,44,0,0,0.137067 -33120,7403:249,-39,44,0,0,0.133129 -33121,7403:248,-38,44,0,0,0.131783 -33122,7403:247,-37,44,0,0,0.133866 -33123,7403:246,-36,44,0,0,0.137322 -33124,7403:245,-35,44,0,0,0.140195 -33125,7403:144,-34,44,0,0,0.145619 -33126,7403:143,-33,44,0,0,0.15136 -33127,7403:142,-32,44,0,0,0.176795 -33128,7403:141,-31,44,0,0,0.185248 -33129,7403:140,-30,44,0,0,0.184149 -33130,7402:249,-29,44,0,0,0.177139 -33131,7402:248,-28,44,0,0,0.17532 -33132,7402:247,-27,44,0,0,0.169225 -33133,7402:246,-26,44,0,0,0.167858 -33134,7402:245,-25,44,0,0,0.171812 -33135,7402:144,-24,44,0,0,0.17409 -33136,7402:143,-23,44,0,0,0.182994 -33137,7402:142,-22,44,0,0,0.184736 -33138,7402:141,-21,44,0,0,0.214018 -33139,7402:140,-20,44,0,0,0.232045 -33140,7401:249,-19,44,0,0,0.233605 -33141,7401:248,-18,44,0,0,0.228349 -33142,7401:247,-17,44,0,0,0.225214 -33143,7401:246,-16,44,0,0,0.220305 -33144,7401:245,-15,44,0,0,0.225071 -33145,7401:144,-14,44,0,0,0.232577 -33146,7401:143,-13,44,0,0,0.234526 -33147,7401:142,-12,44,0,0,0.23366 -33148,7401:141,-11,44,0,0,0.230311 -33149,7401:140,-10,44,0,0,0.219512 -33150,7400:248,-8,44,0,0,0.213465 -33151,7400:246,-6,44,0,0,0.207236 -33152,7400:245,-5,44,0,0,0.21118 -33153,7400:144,-4,44,0,0,0.210206 -33154,7400:143,-3,44,0,0,0.208759 -33155,7400:142,-2,44,0,0,0.204498 -33156,7400:141,-1,44,0,0,0.204615 -33157,1400:141,0,44,0,0,0.200796 -33158,1400:141,1,44,0,0,0.201225 -33159,1400:142,2,44,0,0,0.205486 -33160,1400:143,3,44,0,0,0.205436 -33161,1400:144,4,44,0,0,0.194926 -33162,1400:247,7,44,0,0,0.165404 -33163,1400:248,8,44,0,0,0.156701 -33164,1401:141,11,44,0,0,0.193608 -33165,1401:142,12,44,0,0,0.19778 -33166,1401:143,13,44,0,0,0.188825 -33167,1401:144,14,44,0,0,0.188762 -33168,1401:245,15,44,0,0,0.194797 -33169,1414:143,143,44,0,0,0.09169 -33170,1414:144,144,44,0,0,0.0911779 -33171,1414:245,145,44,0,0,0.0860191 -33172,1414:246,146,44,0,0,0.0868873 -33173,1414:247,147,44,0,0,0.0888968 -33174,1414:248,148,44,0,0,0.0928431 -33175,1414:249,149,44,0,0,0.094158 -33176,1415:140,150,44,0,0,0.09533 -33177,1415:141,151,44,0,0,0.0960324 -33178,1415:142,152,44,0,0,0.0974147 -33179,1415:143,153,44,0,0,0.100409 -33180,1415:144,154,44,0,0,0.101051 -33181,1415:245,155,44,0,0,0.100679 -33182,1415:246,156,44,0,0,0.0989155 -33183,1415:247,157,44,0,0,0.0963718 -33184,1415:248,158,44,0,0,0.0947908 -33185,1415:249,159,44,0,0,0.0926096 -33186,1416:140,160,44,0,0,0.090516 -33187,1416:141,161,44,0,0,0.0869851 -33188,1416:245,165,44,0,0,0.0813097 -33189,1416:246,166,44,0,0,0.103742 -33190,1416:247,167,44,0,0,0.108359 -33191,1416:248,168,44,0,0,0.107646 -33192,1416:249,169,44,0,0,0.112671 -33193,1417:140,170,44,0,0,0.115055 -33194,1417:141,171,44,0,0,0.110734 -33195,1417:142,172,44,0,0,0.111505 -33196,1417:143,173,44,0,0,0.117153 -33197,1417:144,174,44,0,0,0.117068 -33198,1417:245,175,44,0,0,0.117675 -33199,1417:246,176,44,0,0,0.114211 -33200,1417:247,177,44,0,0,0.119522 -33201,1417:248,178,44,0,0,0.119782 -33202,1417:249,179,44,0,0,0.119306 -33203,1418:140,180,44,0,0,0.124485 -33204,7418:350,-180,45,0,0,0.121044 -33205,7417:459,-179,45,0,0,0.116686 -33206,7417:458,-178,45,0,0,0.114075 -33207,7417:457,-177,45,0,0,0.107262 -33208,7417:456,-176,45,0,0,0.108508 -33209,7417:455,-175,45,0,0,0.107834 -33210,7417:354,-174,45,0,0,0.106653 -33211,7417:353,-173,45,0,0,0.106253 -33212,7417:352,-172,45,0,0,0.104904 -33213,7417:351,-171,45,0,0,0.103351 -33214,7417:350,-170,45,0,0,0.101622 -33215,7416:459,-169,45,0,0,0.0975957 -33216,7416:458,-168,45,0,0,0.0962108 -33217,7416:457,-167,45,0,0,0.0945267 -33218,7416:456,-166,45,0,0,0.0960144 -33219,7416:455,-165,45,0,0,0.0877963 -33220,7416:353,-163,45,0,0,0.085407 -33221,7416:352,-162,45,0,0,0.0841316 -33222,7416:351,-161,45,0,0,0.0887887 -33223,7415:457,-157,45,0,0,0.152937 -33224,7415:455,-155,45,0,0,0.14581 -33225,7415:354,-154,45,0,0,0.155429 -33226,7415:353,-153,45,0,0,0.159684 -33227,7415:352,-152,45,0,0,0.150741 -33228,7415:351,-151,45,0,0,0.152512 -33229,7415:350,-150,45,0,0,0.151928 -33230,7414:459,-149,45,0,0,0.151466 -33231,7414:458,-148,45,0,0,0.152101 -33232,7414:457,-147,45,0,0,0.153524 -33233,7414:456,-146,45,0,0,0.153724 -33234,7414:455,-145,45,0,0,0.156389 -33235,7414:354,-144,45,0,0,0.160319 -33236,7414:353,-143,45,0,0,0.167442 -33237,7414:352,-142,45,0,0,0.167987 -33238,7414:351,-141,45,0,0,0.165815 -33239,7414:350,-140,45,0,0,0.166998 -33240,7413:459,-139,45,0,0,0.169877 -33241,7413:458,-138,45,0,0,0.174415 -33242,7413:457,-137,45,0,0,0.183133 -33243,7413:354,-134,45,0,0,0.164385 -33244,7408:350,-80,45,0,0,0.082414 -33245,7407:459,-79,45,0,0,0.0902541 -33246,7407:458,-78,45,0,0,0.0910247 -33247,7407:457,-77,45,0,0,0.0928431 -33248,7407:456,-76,45,0,0,0.0917843 -33249,7407:455,-75,45,0,0,0.0914936 -33250,7405:458,-58,45,0,0,0.0811487 -33251,7405:457,-57,45,0,0,0.0861239 -33252,7405:456,-56,45,0,0,0.138042 -33253,7405:455,-55,45,0,0,0.144104 -33254,7405:354,-54,45,0,0,0.133035 -33255,7405:353,-53,45,0,0,0.128297 -33256,7405:352,-52,45,0,0,0.124878 -33257,7405:351,-51,45,0,0,0.125598 -33258,7405:350,-50,45,0,0,0.127323 -33259,7404:459,-49,45,0,0,0.129949 -33260,7404:458,-48,45,0,0,0.13101 -33261,7404:457,-47,45,0,0,0.134631 -33262,7404:456,-46,45,0,0,0.139836 -33263,7404:455,-45,45,0,0,0.145555 -33264,7404:354,-44,45,0,0,0.161081 -33265,7404:353,-43,45,0,0,0.157927 -33266,7404:352,-42,45,0,0,0.152206 -33267,7404:351,-41,45,0,0,0.159477 -33268,7404:350,-40,45,0,0,0.156634 -33269,7403:459,-39,45,0,0,0.138458 -33270,7403:458,-38,45,0,0,0.136315 -33271,7403:457,-37,45,0,0,0.136775 -33272,7403:456,-36,45,0,0,0.13646 -33273,7403:455,-35,45,0,0,0.138348 -33274,7403:354,-34,45,0,0,0.141813 -33275,7403:353,-33,45,0,0,0.154206 -33276,7403:352,-32,45,0,0,0.164554 -33277,7403:351,-31,45,0,0,0.18096 -33278,7403:350,-30,45,0,0,0.191022 -33279,7402:459,-29,45,0,0,0.193591 -33280,7402:458,-28,45,0,0,0.183194 -33281,7402:457,-27,45,0,0,0.176332 -33282,7402:456,-26,45,0,0,0.173456 -33283,7402:455,-25,45,0,0,0.172163 -33284,7402:354,-24,45,0,0,0.169601 -33285,7402:353,-23,45,0,0,0.179654 -33286,7402:352,-22,45,0,0,0.186616 -33287,7402:351,-21,45,0,0,0.18131 -33288,7402:350,-20,45,0,0,0.192455 -33289,7401:459,-19,45,0,0,0.207658 -33290,7401:458,-18,45,0,0,0.21118 -33291,7401:457,-17,45,0,0,0.221348 -33292,7401:456,-16,45,0,0,0.227843 -33293,7401:455,-15,45,0,0,0.217634 -33294,7401:354,-14,45,0,0,0.215247 -33295,7401:353,-13,45,0,0,0.226382 -33296,7401:352,-12,45,0,0,0.229201 -33297,7401:351,-11,45,0,0,0.228911 -33298,7401:350,-10,45,0,0,0.228929 -33299,7400:459,-9,45,0,0,0.220605 -33300,7400:458,-8,45,0,0,0.21844 -33301,7400:457,-7,45,0,0,0.219459 -33302,7400:456,-6,45,0,0,0.203814 -33303,7400:455,-5,45,0,0,0.208166 -33304,7400:354,-4,45,0,0,0.203198 -33305,7400:353,-3,45,0,0,0.199891 -33306,7400:352,-2,45,0,0,0.201688 -33307,7400:351,-1,45,0,0,0.200895 -33308,1400:351,0,45,0,0,0.200945 -33309,1400:351,1,45,0,0,0.198907 -33310,1400:352,2,45,0,0,0.201936 -33311,1400:353,3,45,0,0,0.196236 -33312,1400:354,4,45,0,0,0.19228 -33313,1400:455,5,45,0,0,0.193977 -33314,1400:457,7,45,0,0,0.162894 -33315,1401:353,13,45,0,0,0.168289 -33316,1401:354,14,45,0,0,0.180139 -33317,1401:455,15,45,0,0,0.187131 -33318,1401:456,16,45,0,0,0.189298 -33319,1414:455,145,45,0,0,0.0912546 -33320,1414:456,146,45,0,0,0.0966854 -33321,1414:457,147,45,0,0,0.093103 -33322,1414:458,148,45,0,0,0.0898502 -33323,1414:459,149,45,0,0,0.0920072 -33324,1415:350,150,45,0,0,0.0960504 -33325,1415:351,151,45,0,0,0.0993285 -33326,1415:352,152,45,0,0,0.100995 -33327,1415:353,153,45,0,0,0.101126 -33328,1415:354,154,45,0,0,0.088093 -33329,1415:458,158,45,0,0,0.0804543 -33330,1415:459,159,45,0,0,0.0877797 -33331,1416:350,160,45,0,0,0.0864398 -33332,1416:351,161,45,0,0,0.086936 -33333,1416:352,162,45,0,0,0.0866999 -33334,1416:455,165,45,0,0,0.0757937 -33335,1416:456,166,45,0,0,0.0828268 -33336,1416:457,167,45,0,0,0.0983402 -33337,1416:458,168,45,0,0,0.0961484 -33338,1416:459,169,45,0,0,0.102016 -33339,1417:350,170,45,0,0,0.0999645 -33340,1417:351,171,45,0,0,0.091596 -33341,1417:352,172,45,0,0,0.104586 -33342,1417:353,173,45,0,0,0.111576 -33343,1417:354,174,45,0,0,0.11365 -33344,1417:455,175,45,0,0,0.112066 -33345,1417:456,176,45,0,0,0.112322 -33346,1417:457,177,45,0,0,0.11419 -33347,1417:458,178,45,0,0,0.116697 -33348,1417:459,179,45,0,0,0.120205 -33349,1418:350,180,45,0,0,0.121044 -33350,7418:360,-180,46,0,0,0.114804 -33351,7417:469,-179,46,0,0,0.113031 -33352,7417:468,-178,46,0,0,0.105184 -33353,7417:467,-177,46,0,0,0.0985041 -33354,7417:466,-176,46,0,0,0.0993375 -33355,7417:465,-175,46,0,0,0.0993375 -33356,7417:364,-174,46,0,0,0.100011 -33357,7417:363,-173,46,0,0,0.100103 -33358,7417:362,-172,46,0,0,0.0952327 -33359,7417:361,-171,46,0,0,0.0875743 -33360,7417:360,-170,46,0,0,0.0805455 -33361,7416:467,-167,46,0,0,0.0791865 -33362,7416:466,-166,46,0,0,0.0802342 -33363,7416:465,-165,46,0,0,0.0799994 -33364,7415:466,-156,46,0,0,0.152034 -33365,7415:465,-155,46,0,0,0.15749 -33366,7415:364,-154,46,0,0,0.158886 -33367,7415:363,-153,46,0,0,0.163709 -33368,7415:362,-152,46,0,0,0.163161 -33369,7415:361,-151,46,0,0,0.160929 -33370,7415:360,-150,46,0,0,0.159863 -33371,7414:469,-149,46,0,0,0.158666 -33372,7414:468,-148,46,0,0,0.155848 -33373,7414:467,-147,46,0,0,0.154447 -33374,7414:466,-146,46,0,0,0.153845 -33375,7414:465,-145,46,0,0,0.157777 -33376,7414:364,-144,46,0,0,0.16399 -33377,7414:363,-143,46,0,0,0.166413 -33378,7414:362,-142,46,0,0,0.170123 -33379,7414:361,-141,46,0,0,0.168822 -33380,7414:360,-140,46,0,0,0.16937 -33381,7413:469,-139,46,0,0,0.175795 -33382,7413:468,-138,46,0,0,0.173706 -33383,7413:467,-137,46,0,0,0.16803 -33384,7408:363,-83,46,0,0,0.0814865 -33385,7408:362,-82,46,0,0,0.0854712 -33386,7408:361,-81,46,0,0,0.087083 -33387,7408:360,-80,46,0,0,0.0892387 -33388,7407:469,-79,46,0,0,0.0902963 -33389,7407:468,-78,46,0,0,0.0899677 -33390,7407:467,-77,46,0,0,0.0906092 -33391,7407:465,-75,46,0,0,0.0831865 -33392,7407:364,-74,46,0,0,0.0911525 -33393,7405:469,-59,46,0,0,0.0785371 -33394,7405:468,-58,46,0,0,0.0799012 -33395,7405:467,-57,46,0,0,0.0826008 -33396,7405:466,-56,46,0,0,0.144599 -33397,7405:465,-55,46,0,0,0.142904 -33398,7405:364,-54,46,0,0,0.129914 -33399,7405:363,-53,46,0,0,0.127483 -33400,7405:362,-52,46,0,0,0.125001 -33401,7405:361,-51,46,0,0,0.126549 -33402,7405:360,-50,46,0,0,0.126333 -33403,7404:469,-49,46,0,0,0.12697 -33404,7404:468,-48,46,0,0,0.13196 -33405,7404:467,-47,46,0,0,0.145798 -33406,7404:466,-46,46,0,0,0.155173 -33407,7404:465,-45,46,0,0,0.155335 -33408,7404:364,-44,46,0,0,0.141888 -33409,7404:361,-41,46,0,0,0.13714 -33410,7404:360,-40,46,0,0,0.161373 -33411,7403:469,-39,46,0,0,0.154085 -33412,7403:468,-38,46,0,0,0.137261 -33413,7403:467,-37,46,0,0,0.134679 -33414,7403:466,-36,46,0,0,0.134666 -33415,7403:465,-35,46,0,0,0.136182 -33416,7403:364,-34,46,0,0,0.138593 -33417,7403:363,-33,46,0,0,0.145478 -33418,7403:362,-32,46,0,0,0.156471 -33419,7403:361,-31,46,0,0,0.164809 -33420,7403:360,-30,46,0,0,0.184381 -33421,7402:469,-29,46,0,0,0.197356 -33422,7402:468,-28,46,0,0,0.202931 -33423,7402:467,-27,46,0,0,0.198743 -33424,7402:466,-26,46,0,0,0.190974 -33425,7402:465,-25,46,0,0,0.191372 -33426,7402:364,-24,46,0,0,0.18531 -33427,7402:363,-23,46,0,0,0.183579 -33428,7402:362,-22,46,0,0,0.188967 -33429,7402:361,-21,46,0,0,0.200269 -33430,7402:360,-20,46,0,0,0.200318 -33431,7401:469,-19,46,0,0,0.203864 -33432,7401:468,-18,46,0,0,0.209609 -33433,7401:467,-17,46,0,0,0.207489 -33434,7401:466,-16,46,0,0,0.225986 -33435,7401:465,-15,46,0,0,0.217249 -33436,7401:364,-14,46,0,0,0.215734 -33437,7401:363,-13,46,0,0,0.214606 -33438,7401:362,-12,46,0,0,0.220499 -33439,7401:361,-11,46,0,0,0.219283 -33440,7401:360,-10,46,0,0,0.215907 -33441,7400:469,-9,46,0,0,0.216047 -33442,7400:468,-8,46,0,0,0.222039 -33443,7400:467,-7,46,0,0,0.219829 -33444,7400:466,-6,46,0,0,0.217267 -33445,7400:465,-5,46,0,0,0.207236 -33446,7400:364,-4,46,0,0,0.20149 -33447,7400:363,-3,46,0,0,0.200697 -33448,7400:362,-2,46,0,0,0.201176 -33449,7400:361,-1,46,0,0,0.19894 -33450,1400:361,0,46,0,0,0.202218 -33451,1400:361,1,46,0,0,0.201341 -33452,1400:465,5,46,0,0,0.182181 -33453,1400:466,6,46,0,0,0.179912 -33454,1401:362,12,46,0,0,0.16186 -33455,1401:363,13,46,0,0,0.171213 -33456,1401:364,14,46,0,0,0.174134 -33457,1401:465,15,46,0,0,0.179624 -33458,1401:466,16,46,0,0,0.160776 -33459,1414:467,147,46,0,0,0.0820961 -33460,1414:468,148,46,0,0,0.0829908 -33461,1415:468,158,46,0,0,0.0797805 -33462,1415:469,159,46,0,0,0.0840999 -33463,1416:360,160,46,0,0,0.0838865 -33464,1416:361,161,46,0,0,0.0805761 -33465,1416:362,162,46,0,0,0.0789023 -33466,1416:363,163,46,0,0,0.0787978 -33467,1416:364,164,46,0,0,0.0794567 -33468,1417:363,173,46,0,0,0.0928172 -33469,1417:364,174,46,0,0,0.102952 -33470,1417:465,175,46,0,0,0.105999 -33471,1417:466,176,46,0,0,0.107498 -33472,1417:467,177,46,0,0,0.11035 -33473,1417:468,178,46,0,0,0.115254 -33474,1417:469,179,46,0,0,0.113878 -33475,1418:360,180,46,0,0,0.114804 -33476,7418:370,-180,47,0,0,0.108061 -33477,7417:479,-179,47,0,0,0.106663 -33478,7417:478,-178,47,0,0,0.0988331 -33479,7417:477,-177,47,0,0,0.0942458 -33480,7417:476,-176,47,0,0,0.0913826 -33481,7417:475,-175,47,0,0,0.0901866 -33482,7417:374,-174,47,0,0,0.0901699 -33483,7417:373,-173,47,0,0,0.0889385 -33484,7417:372,-172,47,0,0,0.0863265 -33485,7417:371,-171,47,0,0,0.0802948 -33486,7417:370,-170,47,0,0,0.0788053 -33487,7416:479,-169,47,0,0,0.0789099 -33488,7416:478,-168,47,0,0,0.0790444 -33489,7415:477,-157,47,0,0,0.113609 -33490,7415:476,-156,47,0,0,0.136497 -33491,7415:374,-154,47,0,0,0.165389 -33492,7415:373,-153,47,0,0,0.164004 -33493,7415:372,-152,47,0,0,0.165801 -33494,7415:371,-151,47,0,0,0.158927 -33495,7415:370,-150,47,0,0,0.153858 -33496,7414:479,-149,47,0,0,0.152167 -33497,7414:478,-148,47,0,0,0.154233 -33498,7414:477,-147,47,0,0,0.15597 -33499,7414:476,-146,47,0,0,0.153898 -33500,7414:475,-145,47,0,0,0.153404 -33501,7414:374,-144,47,0,0,0.159877 -33502,7414:373,-143,47,0,0,0.165234 -33503,7414:372,-142,47,0,0,0.172941 -33504,7414:371,-141,47,0,0,0.174075 -33505,7414:370,-140,47,0,0,0.175439 -33506,7408:374,-84,47,0,0,0.0809726 -33507,7408:373,-83,47,0,0,0.0867324 -33508,7408:372,-82,47,0,0,0.0883905 -33509,7408:371,-81,47,0,0,0.0888136 -33510,7408:370,-80,47,0,0,0.0893639 -33511,7407:479,-79,47,0,0,0.0896906 -33512,7407:478,-78,47,0,0,0.0896655 -33513,7407:477,-77,47,0,0,0.088374 -33514,7407:476,-76,47,0,0,0.0890885 -33515,7407:475,-75,47,0,0,0.0803708 -33516,7407:374,-74,47,0,0,0.0924975 -33517,7406:374,-64,47,0,0,0.0784108 -33518,7406:373,-63,47,0,0,0.0800901 -33519,7405:479,-59,47,0,0,0.078865 -33520,7405:478,-58,47,0,0,0.0797805 -33521,7405:477,-57,47,0,0,0.0813559 -33522,7405:476,-56,47,0,0,0.14703 -33523,7405:475,-55,47,0,0,0.14558 -33524,7405:374,-54,47,0,0,0.134033 -33525,7405:373,-53,47,0,0,0.131913 -33526,7405:372,-52,47,0,0,0.129022 -33527,7405:371,-51,47,0,0,0.125372 -33528,7405:370,-50,47,0,0,0.137042 -33529,7404:479,-49,47,0,0,0.13576 -33530,7404:478,-48,47,0,0,0.149247 -33531,7404:477,-47,47,0,0,0.154622 -33532,7404:476,-46,47,0,0,0.1416 -33533,7404:374,-44,47,0,0,0.0957472 -33534,7404:370,-40,47,0,0,0.139799 -33535,7403:479,-39,47,0,0,0.16937 -33536,7403:478,-38,47,0,0,0.15831 -33537,7403:477,-37,47,0,0,0.142678 -33538,7403:476,-36,47,0,0,0.135302 -33539,7403:475,-35,47,0,0,0.135519 -33540,7403:374,-34,47,0,0,0.13714 -33541,7403:373,-33,47,0,0,0.139293 -33542,7403:372,-32,47,0,0,0.145146 -33543,7403:371,-31,47,0,0,0.152087 -33544,7403:370,-30,47,0,0,0.171622 -33545,7402:479,-29,47,0,0,0.186118 -33546,7402:478,-28,47,0,0,0.198318 -33547,7402:477,-27,47,0,0,0.204816 -33548,7402:476,-26,47,0,0,0.204799 -33549,7402:475,-25,47,0,0,0.197405 -33550,7402:374,-24,47,0,0,0.192983 -33551,7402:373,-23,47,0,0,0.191594 -33552,7402:372,-22,47,0,0,0.191308 -33553,7402:371,-21,47,0,0,0.192791 -33554,7402:370,-20,47,0,0,0.194137 -33555,7401:479,-19,47,0,0,0.197812 -33556,7401:478,-18,47,0,0,0.200022 -33557,7401:477,-17,47,0,0,0.212036 -33558,7401:476,-16,47,0,0,0.223053 -33559,7401:475,-15,47,0,0,0.22259 -33560,7401:374,-14,47,0,0,0.219441 -33561,7401:373,-13,47,0,0,0.21851 -33562,7401:372,-12,47,0,0,0.208505 -33563,7401:371,-11,47,0,0,0.213051 -33564,7401:370,-10,47,0,0,0.185869 -33565,7400:479,-9,47,0,0,0.183933 -33566,7400:478,-8,47,0,0,0.190356 -33567,7400:477,-7,47,0,0,0.21024 -33568,7400:476,-6,47,0,0,0.215247 -33569,7400:374,-4,47,0,0,0.206007 -33570,7400:373,-3,47,0,0,0.202218 -33571,7400:372,-2,47,0,0,0.201209 -33572,7400:371,-1,47,0,0,0.196463 -33573,1400:371,0,47,0,0,0.200269 -33574,1401:372,12,47,0,0,0.173957 -33575,1401:374,14,47,0,0,0.173633 -33576,1401:475,15,47,0,0,0.18157 -33577,1416:370,160,47,0,0,0.0806445 -33578,1416:371,161,47,0,0,0.0818331 -33579,1416:372,162,47,0,0,0.0793439 -33580,1416:475,165,47,0,0,0.0797954 -33581,1417:475,175,47,0,0,0.0862696 -33582,1417:476,176,47,0,0,0.102243 -33583,1417:477,177,47,0,0,0.106126 -33584,1417:478,178,47,0,0,0.105087 -33585,1417:479,179,47,0,0,0.10318 -33586,1418:370,180,47,0,0,0.108061 -33587,7418:380,-180,48,0,0,0.0986503 -33588,7417:489,-179,48,0,0,0.0966228 -33589,7417:488,-178,48,0,0,0.0926616 -33590,7417:487,-177,48,0,0,0.090821 -33591,7417:486,-176,48,0,0,0.0882251 -33592,7417:485,-175,48,0,0,0.0844726 -33593,7417:384,-174,48,0,0,0.0806066 -33594,7417:383,-173,48,0,0,0.0792316 -33595,7417:382,-172,48,0,0,0.0786041 -33596,7417:381,-171,48,0,0,0.0780405 -33597,7417:380,-170,48,0,0,0.078344 -33598,7416:489,-169,48,0,0,0.079224 -33599,7415:486,-156,48,0,0,0.109315 -33600,7415:383,-153,48,0,0,0.167256 -33601,7415:382,-152,48,0,0,0.169399 -33602,7415:381,-151,48,0,0,0.17021 -33603,7415:380,-150,48,0,0,0.166399 -33604,7414:489,-149,48,0,0,0.156715 -33605,7414:488,-148,48,0,0,0.152871 -33606,7414:487,-147,48,0,0,0.152074 -33607,7414:486,-146,48,0,0,0.153711 -33608,7414:485,-145,48,0,0,0.15745 -33609,7414:384,-144,48,0,0,0.164357 -33610,7414:383,-143,48,0,0,0.174934 -33611,7414:382,-142,48,0,0,0.175409 -33612,7414:381,-141,48,0,0,0.174963 -33613,7413:487,-137,48,0,0,0.159106 -33614,7408:485,-85,48,0,0,0.0805455 -33615,7408:384,-84,48,0,0,0.0862212 -33616,7408:383,-83,48,0,0,0.0872546 -33617,7408:382,-82,48,0,0,0.0879446 -33618,7408:381,-81,48,0,0,0.0878126 -33619,7408:380,-80,48,0,0,0.0884319 -33620,7407:489,-79,48,0,0,0.0891885 -33621,7407:488,-78,48,0,0,0.0890384 -33622,7407:487,-77,48,0,0,0.0907193 -33623,7407:486,-76,48,0,0,0.0816944 -33624,7407:485,-75,48,0,0,0.0799164 -33625,7407:384,-74,48,0,0,0.0930424 -33626,7406:485,-65,48,0,0,0.0781588 -33627,7406:384,-64,48,0,0,0.0786936 -33628,7406:383,-63,48,0,0,0.0788053 -33629,7406:382,-62,48,0,0,0.0792464 -33630,7406:380,-60,48,0,0,0.077797 -33631,7405:489,-59,48,0,0,0.0791717 -33632,7405:488,-58,48,0,0,0.079149 -33633,7405:487,-57,48,0,0,0.0942809 -33634,7405:486,-56,48,0,0,0.149561 -33635,7405:485,-55,48,0,0,0.150163 -33636,7405:384,-54,48,0,0,0.144663 -33637,7405:383,-53,48,0,0,0.134164 -33638,7405:382,-52,48,0,0,0.140233 -33639,7405:381,-51,48,0,0,0.139985 -33640,7405:380,-50,48,0,0,0.141863 -33641,7404:489,-49,48,0,0,0.148376 -33642,7404:488,-48,48,0,0,0.153764 -33643,7404:487,-47,48,0,0,0.142904 -33644,7404:380,-40,48,0,0,0.116253 -33645,7403:489,-39,48,0,0,0.148648 -33646,7403:488,-38,48,0,0,0.169847 -33647,7403:487,-37,48,0,0,0.168145 -33648,7403:486,-36,48,0,0,0.159009 -33649,7403:485,-35,48,0,0,0.144472 -33650,7403:384,-34,48,0,0,0.142791 -33651,7403:383,-33,48,0,0,0.149078 -33652,7403:382,-32,48,0,0,0.142214 -33653,7403:381,-31,48,0,0,0.144269 -33654,7403:380,-30,48,0,0,0.155187 -33655,7402:489,-29,48,0,0,0.17529 -33656,7402:488,-28,48,0,0,0.190974 -33657,7402:487,-27,48,0,0,0.199398 -33658,7402:486,-26,48,0,0,0.20557 -33659,7402:485,-25,48,0,0,0.206141 -33660,7402:384,-24,48,0,0,0.20842 -33661,7402:383,-23,48,0,0,0.208946 -33662,7402:382,-22,48,0,0,0.209507 -33663,7402:381,-21,48,0,0,0.207912 -33664,7402:380,-20,48,0,0,0.208861 -33665,7401:489,-19,48,0,0,0.205654 -33666,7401:488,-18,48,0,0,0.204515 -33667,7401:487,-17,48,0,0,0.217337 -33668,7401:486,-16,48,0,0,0.220252 -33669,7401:485,-15,48,0,0,0.216656 -33670,7401:384,-14,48,0,0,0.215108 -33671,7401:383,-13,48,0,0,0.208319 -33672,7401:382,-12,48,0,0,0.200022 -33673,7401:381,-11,48,0,0,0.18746 -33674,7401:380,-10,48,0,0,0.183563 -33675,7400:489,-9,48,0,0,0.180777 -33676,7400:488,-8,48,0,0,0.17672 -33677,7400:487,-7,48,0,0,0.19491 -33678,7400:486,-6,48,0,0,0.204983 -33679,7400:485,-5,48,0,0,0.214208 -33680,7400:384,-4,48,0,0,0.211231 -33681,7400:383,-3,48,0,0,0.206713 -33682,7400:382,-2,48,0,0,0.208369 -33683,7400:381,-1,48,0,0,0.196446 -33684,1401:382,12,48,0,0,0.165134 -33685,1401:383,13,48,0,0,0.174445 -33686,1401:384,14,48,0,0,0.176392 -33687,1401:485,15,48,0,0,0.181387 -33688,1401:486,16,48,0,0,0.152658 -33689,1401:487,17,48,0,0,0.155268 -33690,1401:488,18,48,0,0,0.170428 -33691,1416:486,166,48,0,0,0.082554 -33692,1417:489,179,48,0,0,0.0883657 -33693,1418:380,180,48,0,0,0.0986503 -33694,7418:390,-180,49,0,0,0.0920502 -33695,7417:499,-179,49,0,0,0.0918186 -33696,7417:498,-178,49,0,0,0.0899258 -33697,7417:497,-177,49,0,0,0.0869116 -33698,7417:496,-176,49,0,0,0.0847672 -33699,7417:495,-175,49,0,0,0.0810875 -33700,7417:394,-174,49,0,0,0.0785074 -33701,7417:393,-173,49,0,0,0.0762196 -33702,7417:392,-172,49,0,0,0.0764659 -33703,7417:391,-171,49,0,0,0.0768367 -33704,7417:390,-170,49,0,0,0.0777158 -33705,7416:499,-169,49,0,0,0.0787978 -33706,7415:496,-156,49,0,0,0.0896821 -33707,7415:392,-152,49,0,0,0.153724 -33708,7415:391,-151,49,0,0,0.166969 -33709,7415:390,-150,49,0,0,0.170689 -33710,7414:499,-149,49,0,0,0.170907 -33711,7414:498,-148,49,0,0,0.170937 -33712,7414:497,-147,49,0,0,0.168922 -33713,7414:496,-146,49,0,0,0.171082 -33714,7414:495,-145,49,0,0,0.173235 -33715,7414:394,-144,49,0,0,0.174845 -33716,7414:393,-143,49,0,0,0.1748 -33717,7408:496,-86,49,0,0,0.0801054 -33718,7408:495,-85,49,0,0,0.0849906 -33719,7408:394,-84,49,0,0,0.0869686 -33720,7408:393,-83,49,0,0,0.0868221 -33721,7408:392,-82,49,0,0,0.0877057 -33722,7408:391,-81,49,0,0,0.0875498 -33723,7408:390,-80,49,0,0,0.0888219 -33724,7407:499,-79,49,0,0,0.08903 -33725,7407:498,-78,49,0,0,0.0885728 -33726,7407:497,-77,49,0,0,0.0895312 -33727,7407:496,-76,49,0,0,0.0898668 -33728,7407:495,-75,49,0,0,0.0892803 -33729,7406:495,-65,49,0,0,0.0773559 -33730,7406:394,-64,49,0,0,0.0793215 -33731,7406:393,-63,49,0,0,0.0802798 -33732,7406:392,-62,49,0,0,0.081034 -33733,7406:391,-61,49,0,0,0.0811104 -33734,7406:390,-60,49,0,0,0.0799088 -33735,7405:499,-59,49,0,0,0.0794342 -33736,7405:498,-58,49,0,0,0.0808048 -33737,7405:497,-57,49,0,0,0.109515 -33738,7405:496,-56,49,0,0,0.148 -33739,7405:495,-55,49,0,0,0.150701 -33740,7405:394,-54,49,0,0,0.150242 -33741,7405:393,-53,49,0,0,0.149993 -33742,7405:392,-52,49,0,0,0.150662 -33743,7405:391,-51,49,0,0,0.150071 -33744,7405:390,-50,49,0,0,0.151294 -33745,7404:499,-49,49,0,0,0.153257 -33746,7404:498,-48,49,0,0,0.153404 -33747,7404:497,-47,49,0,0,0.142553 -33748,7403:499,-39,49,0,0,0.112599 -33749,7403:498,-38,49,0,0,0.172002 -33750,7403:497,-37,49,0,0,0.17275 -33751,7403:496,-36,49,0,0,0.173367 -33752,7403:495,-35,49,0,0,0.172823 -33753,7403:394,-34,49,0,0,0.171608 -33754,7403:393,-33,49,0,0,0.170864 -33755,7403:392,-32,49,0,0,0.159574 -33756,7403:391,-31,49,0,0,0.155308 -33757,7403:390,-30,49,0,0,0.160485 -33758,7402:499,-29,49,0,0,0.182396 -33759,7402:498,-28,49,0,0,0.190832 -33760,7402:497,-27,49,0,0,0.203531 -33761,7402:496,-26,49,0,0,0.1984 -33762,7402:495,-25,49,0,0,0.194926 -33763,7402:394,-24,49,0,0,0.194411 -33764,7402:393,-23,49,0,0,0.195895 -33765,7402:392,-22,49,0,0,0.186678 -33766,7402:390,-20,49,0,0,0.188967 -33767,7401:499,-19,49,0,0,0.199924 -33768,7401:498,-18,49,0,0,0.211419 -33769,7401:497,-17,49,0,0,0.216447 -33770,7401:496,-16,49,0,0,0.213655 -33771,7401:495,-15,49,0,0,0.172985 -33772,7401:394,-14,49,0,0,0.176302 -33773,7401:393,-13,49,0,0,0.178989 -33774,7401:392,-12,49,0,0,0.186367 -33775,7401:391,-11,49,0,0,0.187522 -33776,7401:390,-10,49,0,0,0.178265 -33777,7400:499,-9,49,0,0,0.171797 -33778,7400:498,-8,49,0,0,0.167786 -33779,7400:497,-7,49,0,0,0.174519 -33780,7400:496,-6,49,0,0,0.196446 -33781,7400:495,-5,49,0,0,0.205285 -33782,7400:394,-4,49,0,0,0.20881 -33783,7400:393,-3,49,0,0,0.203447 -33784,7400:392,-2,49,0,0,0.198874 -33785,7400:391,-1,49,0,0,0.200055 -33786,1401:392,12,49,0,0,0.131983 -33787,1401:393,13,49,0,0,0.168663 -33788,1401:394,14,49,0,0,0.179064 -33789,1401:495,15,49,0,0,0.177484 -33790,1401:497,17,49,0,0,0.147818 -33791,1401:498,18,49,0,0,0.142126 -33792,1417:498,178,49,0,0,0.0767056 -33793,1417:499,179,49,0,0,0.0812638 -33794,1418:390,180,49,0,0,0.0920502 -33795,7518:100,-180,50,0,0,0.0828971 -33796,7517:209,-179,50,0,0,0.086651 -33797,7517:208,-178,50,0,0,0.0873283 -33798,7517:207,-177,50,0,0,0.0865617 -33799,7517:206,-176,50,0,0,0.0834298 -33800,7517:205,-175,50,0,0,0.0815327 -33801,7517:104,-174,50,0,0,0.0764732 -33802,7517:103,-173,50,0,0,0.076386 -33803,7517:102,-172,50,0,0,0.0760967 -33804,7517:101,-171,50,0,0,0.0763208 -33805,7517:100,-170,50,0,0,0.0766839 -33806,7516:209,-169,50,0,0,0.07751 -33807,7516:207,-167,50,0,0,0.0798408 -33808,7515:102,-152,50,0,0,0.139293 -33809,7508:207,-87,50,0,0,0.0820883 -33810,7508:206,-86,50,0,0,0.0854151 -33811,7508:205,-85,50,0,0,0.086132 -33812,7508:104,-84,50,0,0,0.0860837 -33813,7508:103,-83,50,0,0,0.0860514 -33814,7508:102,-82,50,0,0,0.0869686 -33815,7508:101,-81,50,0,0,0.0871648 -33816,7508:100,-80,50,0,0,0.0882582 -33817,7507:209,-79,50,0,0,0.0889802 -33818,7507:208,-78,50,0,0,0.089105 -33819,7507:207,-77,50,0,0,0.0890384 -33820,7507:206,-76,50,0,0,0.0890801 -33821,7507:205,-75,50,0,0,0.0874924 -33822,7507:104,-74,50,0,0,0.0790743 -33823,7506:104,-64,50,0,0,0.0793966 -33824,7506:103,-63,50,0,0,0.0791417 -33825,7506:102,-62,50,0,0,0.0786636 -33826,7506:101,-61,50,0,0,0.0782033 -33827,7506:100,-60,50,0,0,0.0785521 -33828,7505:209,-59,50,0,0,0.0813788 -33829,7505:208,-58,50,0,0,0.102677 -33830,7505:207,-57,50,0,0,0.120531 -33831,7505:206,-56,50,0,0,0.122616 -33832,7505:205,-55,50,0,0,0.151783 -33833,7505:104,-54,50,0,0,0.152366 -33834,7505:103,-53,50,0,0,0.15173 -33835,7505:102,-52,50,0,0,0.151637 -33836,7505:101,-51,50,0,0,0.152259 -33837,7505:100,-50,50,0,0,0.15311 -33838,7504:209,-49,50,0,0,0.152937 -33839,7504:208,-48,50,0,0,0.1459 -33840,7503:208,-38,50,0,0,0.115244 -33841,7503:207,-37,50,0,0,0.138974 -33842,7503:206,-36,50,0,0,0.141451 -33843,7503:205,-35,50,0,0,0.171973 -33844,7503:104,-34,50,0,0,0.172471 -33845,7503:103,-33,50,0,0,0.179684 -33846,7503:102,-32,50,0,0,0.181601 -33847,7503:101,-31,50,0,0,0.181768 -33848,7503:100,-30,50,0,0,0.181387 -33849,7502:209,-29,50,0,0,0.187851 -33850,7502:208,-28,50,0,0,0.198155 -33851,7502:207,-27,50,0,0,0.196917 -33852,7502:206,-26,50,0,0,0.183579 -33853,7502:205,-25,50,0,0,0.185402 -33854,7502:104,-24,50,0,0,0.17443 -33855,7501:207,-17,50,0,0,0.130496 -33856,7501:206,-16,50,0,0,0.170137 -33857,7501:205,-15,50,0,0,0.176765 -33858,7501:104,-14,50,0,0,0.120249 -33859,7501:103,-13,50,0,0,0.12908 -33860,7501:102,-12,50,0,0,0.129369 -33861,7501:101,-11,50,0,0,0.130228 -33862,7501:100,-10,50,0,0,0.14926 -33863,7500:209,-9,50,0,0,0.156878 -33864,7500:208,-8,50,0,0,0.165134 -33865,7500:207,-7,50,0,0,0.185806 -33866,7500:206,-6,50,0,0,0.191372 -33867,7500:205,-5,50,0,0,0.194781 -33868,7500:104,-4,50,0,0,0.197796 -33869,7500:103,-3,50,0,0,0.200566 -33870,7500:102,-2,50,0,0,0.202749 -33871,7500:101,-1,50,0,0,0.204615 -33872,1501:102,12,50,0,0,0.16079 -33873,1501:103,13,50,0,0,0.158982 -33874,1501:104,14,50,0,0,0.166399 -33875,1501:205,15,50,0,0,0.177199 -33876,1501:206,16,50,0,0,0.160707 -33877,1517:207,177,50,0,0,0.0804466 -33878,1517:208,178,50,0,0,0.077679 -33879,1517:209,179,50,0,0,0.0778929 -33880,1518:100,180,50,0,0,0.0828971 -33881,7518:110,-180,51,0,0,0.0767785 -33882,7517:219,-179,51,0,0,0.077797 -33883,7517:218,-178,51,0,0,0.0768732 -33884,7517:215,-175,51,0,0,0.0761689 -33885,7517:114,-174,51,0,0,0.078448 -33886,7517:113,-173,51,0,0,0.0784258 -33887,7517:112,-172,51,0,0,0.0773559 -33888,7517:111,-171,51,0,0,0.0764949 -33889,7517:110,-170,51,0,0,0.0763789 -33890,7516:219,-169,51,0,0,0.0763064 -33891,7516:218,-168,51,0,0,0.0769825 -33892,7516:217,-167,51,0,0,0.0776421 -33893,7516:216,-166,51,0,0,0.0781884 -33894,7508:219,-89,51,0,0,0.0811487 -33895,7508:218,-88,51,0,0,0.0817097 -33896,7508:217,-87,51,0,0,0.0844806 -33897,7508:216,-86,51,0,0,0.0843536 -33898,7508:215,-85,51,0,0,0.0845362 -33899,7508:114,-84,51,0,0,0.0850545 -33900,7508:113,-83,51,0,0,0.0858656 -33901,7508:112,-82,51,0,0,0.0864561 -33902,7508:111,-81,51,0,0,0.0867975 -33903,7508:110,-80,51,0,0,0.0870013 -33904,7507:219,-79,51,0,0,0.0874186 -33905,7507:218,-78,51,0,0,0.0882498 -33906,7507:217,-77,51,0,0,0.0888719 -33907,7507:216,-76,51,0,0,0.0821812 -33908,7507:215,-75,51,0,0,0.0868791 -33909,7507:114,-74,51,0,0,0.0869933 -33910,7507:113,-73,51,0,0,0.0810646 -33911,7506:215,-65,51,0,0,0.079562 -33912,7506:114,-64,51,0,0,0.0782551 -33913,7506:113,-63,51,0,0,0.0781884 -33914,7506:112,-62,51,0,0,0.0781218 -33915,7506:111,-61,51,0,0,0.0783737 -33916,7506:110,-60,51,0,0,0.079149 -33917,7505:219,-59,51,0,0,0.0780701 -33918,7505:218,-58,51,0,0,0.0791717 -33919,7505:217,-57,51,0,0,0.0819182 -33920,7505:216,-56,51,0,0,0.1056 -33921,7505:215,-55,51,0,0,0.132136 -33922,7505:114,-54,51,0,0,0.15015 -33923,7505:113,-53,51,0,0,0.152206 -33924,7505:112,-52,51,0,0,0.152512 -33925,7505:111,-51,51,0,0,0.152831 -33926,7505:110,-50,51,0,0,0.152897 -33927,7504:219,-49,51,0,0,0.150071 -33928,7504:218,-48,51,0,0,0.135386 -33929,7503:217,-37,51,0,0,0.112774 -33930,7503:216,-36,51,0,0,0.160957 -33931,7503:215,-35,51,0,0,0.153671 -33932,7503:114,-34,51,0,0,0.154528 -33933,7503:113,-33,51,0,0,0.154072 -33934,7503:112,-32,51,0,0,0.178025 -33935,7503:111,-31,51,0,0,0.185635 -33936,7503:110,-30,51,0,0,0.185387 -33937,7502:219,-29,51,0,0,0.189961 -33938,7502:218,-28,51,0,0,0.194958 -33939,7502:217,-27,51,0,0,0.182411 -33940,7502:216,-26,51,0,0,0.171871 -33941,7502:215,-25,51,0,0,0.154675 -33942,7502:114,-24,51,0,0,0.126061 -33943,7501:216,-16,51,0,0,0.120129 -33944,7501:215,-15,51,0,0,0.111454 -33945,7501:114,-14,51,0,0,0.114158 -33946,7501:113,-13,51,0,0,0.120837 -33947,7501:112,-12,51,0,0,0.1249 -33948,7501:111,-11,51,0,0,0.145478 -33949,7501:110,-10,51,0,0,0.150636 -33950,7500:219,-9,51,0,0,0.157859 -33951,7500:218,-8,51,0,0,0.161804 -33952,7500:217,-7,51,0,0,0.174741 -33953,7500:216,-6,51,0,0,0.18064 -33954,7500:215,-5,51,0,0,0.181417 -33955,7500:114,-4,51,0,0,0.185496 -33956,7500:113,-3,51,0,0,0.195588 -33957,7500:112,-2,51,0,0,0.197421 -33958,7500:111,-1,51,0,0,0.20358 -33959,1500:111,0,51,0,0,0.200533 -33960,1501:110,10,51,0,0,0.149013 -33961,1501:111,11,51,0,0,0.155011 -33962,1501:112,12,51,0,0,0.157681 -33963,1501:113,13,51,0,0,0.125609 -33964,1501:114,14,51,0,0,0.12146 -33965,1501:215,15,51,0,0,0.12967 -33966,1501:216,16,51,0,0,0.147676 -33967,1501:217,17,51,0,0,0.169124 -33968,1517:219,179,51,0,0,0.0773118 -33969,1518:110,180,51,0,0,0.0767785 -33970,7517:124,-174,52,0,0,0.0766548 -33971,7517:123,-173,52,0,0,0.0776864 -33972,7517:122,-172,52,0,0,0.0775394 -33973,7517:121,-171,52,0,0,0.0762267 -33974,7508:229,-89,52,0,0,0.0813329 -33975,7508:228,-88,52,0,0,0.0831865 -33976,7508:227,-87,52,0,0,0.0833277 -33977,7508:226,-86,52,0,0,0.0832649 -33978,7508:225,-85,52,0,0,0.0844649 -33979,7508:124,-84,52,0,0,0.0852548 -33980,7508:123,-83,52,0,0,0.0854472 -33981,7508:122,-82,52,0,0,0.0863265 -33982,7508:121,-81,52,0,0,0.0860997 -33983,7508:120,-80,52,0,0,0.0857849 -33984,7507:229,-79,52,0,0,0.0861078 -33985,7507:228,-78,52,0,0,0.0850864 -33986,7507:227,-77,52,0,0,0.0863831 -33987,7507:226,-76,52,0,0,0.0855597 -33988,7507:225,-75,52,0,0,0.0841712 -33989,7507:124,-74,52,0,0,0.0877797 -33990,7507:123,-73,52,0,0,0.087181 -33991,7506:225,-65,52,0,0,0.0788203 -33992,7506:124,-64,52,0,0,0.0787605 -33993,7506:123,-63,52,0,0,0.0782551 -33994,7506:120,-60,52,0,0,0.0794792 -33995,7505:229,-59,52,0,0,0.076205 -33996,7505:228,-58,52,0,0,0.0774952 -33997,7505:227,-57,52,0,0,0.0773044 -33998,7505:226,-56,52,0,0,0.0777527 -33999,7505:225,-55,52,0,0,0.085648 -34000,7505:124,-54,52,0,0,0.123871 -34001,7505:123,-53,52,0,0,0.140418 -34002,7505:122,-52,52,0,0,0.150543 -34003,7505:121,-51,52,0,0,0.151756 -34004,7505:120,-50,52,0,0,0.151518 -34005,7504:229,-49,52,0,0,0.144764 -34006,7504:228,-48,52,0,0,0.131115 -34007,7503:124,-34,52,0,0,0.0904399 -34008,7503:123,-33,52,0,0,0.100149 -34009,7503:122,-32,52,0,0,0.104894 -34010,7503:121,-31,52,0,0,0.104904 -34011,7503:120,-30,52,0,0,0.10165 -34012,7502:229,-29,52,0,0,0.0874103 -34013,7502:228,-28,52,0,0,0.0879692 -34014,7502:227,-27,52,0,0,0.113258 -34015,7502:226,-26,52,0,0,0.168159 -34016,7502:225,-25,52,0,0,0.138777 -34017,7502:124,-24,52,0,0,0.137225 -34018,7502:123,-23,52,0,0,0.1176 -34019,7502:122,-22,52,0,0,0.123804 -34020,7501:227,-17,52,0,0,0.119566 -34021,7501:226,-16,52,0,0,0.115149 -34022,7501:225,-15,52,0,0,0.110592 -34023,7501:124,-14,52,0,0,0.116771 -34024,7501:123,-13,52,0,0,0.115569 -34025,7501:122,-12,52,0,0,0.116761 -34026,7501:121,-11,52,0,0,0.127918 -34027,7501:120,-10,52,0,0,0.155605 -34028,7500:229,-9,52,0,0,0.160693 -34029,7500:228,-8,52,0,0,0.165064 -34030,7500:227,-7,52,0,0,0.168677 -34031,7500:226,-6,52,0,0,0.173588 -34032,7500:225,-5,52,0,0,0.175052 -34033,7500:124,-4,52,0,0,0.17678 -34034,7500:123,-3,52,0,0,0.174845 -34035,7500:122,-2,52,0,0,0.17114 -34036,7500:121,-1,52,0,0,0.200829 -34037,1500:121,0,52,0,0,0.200664 -34038,1500:121,1,52,0,0,0.189818 -34039,1500:122,2,52,0,0,0.162335 -34040,1501:120,10,52,0,0,0.160374 -34041,1501:121,11,52,0,0,0.157164 -34042,1501:122,12,52,0,0,0.16043 -34043,1501:123,13,52,0,0,0.133165 -34044,1501:228,18,52,0,0,0.163329 -34045,1501:229,19,52,0,0,0.160568 -34046,1517:229,179,52,0,0,0.0769899 -34047,7517:237,-177,53,0,0,0.0773778 -34048,7517:133,-173,53,0,0,0.077063 -34049,7517:132,-172,53,0,0,0.0760967 -34050,7508:239,-89,53,0,0,0.0817561 -34051,7508:238,-88,53,0,0,0.0824762 -34052,7508:237,-87,53,0,0,0.0833432 -34053,7508:236,-86,53,0,0,0.0841159 -34054,7508:235,-85,53,0,0,0.0847354 -34055,7508:134,-84,53,0,0,0.0845682 -34056,7508:133,-83,53,0,0,0.0848709 -34057,7508:132,-82,53,0,0,0.0846476 -34058,7508:131,-81,53,0,0,0.0849109 -34059,7508:130,-80,53,0,0,0.0848867 -34060,7507:239,-79,53,0,0,0.0844966 -34061,7507:238,-78,53,0,0,0.0836499 -34062,7507:237,-77,53,0,0,0.0847113 -34063,7507:236,-76,53,0,0,0.0837918 -34064,7507:235,-75,53,0,0,0.0829987 -34065,7507:134,-74,53,0,0,0.0847431 -34066,7507:133,-73,53,0,0,0.0843854 -34067,7507:132,-72,53,0,0,0.078783 -34068,7506:236,-66,53,0,0,0.0795921 -34069,7506:235,-65,53,0,0,0.078448 -34070,7506:131,-61,53,0,0,0.0790892 -34071,7505:238,-58,53,0,0,0.0760099 -34072,7505:237,-57,53,0,0,0.0772532 -34073,7505:236,-56,53,0,0,0.0769315 -34074,7505:235,-55,53,0,0,0.0774291 -34075,7505:134,-54,53,0,0,0.0792316 -34076,7505:133,-53,53,0,0,0.0884072 -34077,7505:132,-52,53,0,0,0.144345 -34078,7505:131,-51,53,0,0,0.145682 -34079,7505:130,-50,53,0,0,0.149809 -34080,7504:239,-49,53,0,0,0.140505 -34081,7504:238,-48,53,0,0,0.117547 -34082,7503:132,-32,53,0,0,0.0810646 -34083,7503:131,-31,53,0,0,0.0831081 -34084,7503:130,-30,53,0,0,0.0910844 -34085,7502:239,-29,53,0,0,0.0846238 -34086,7502:238,-28,53,0,0,0.0813788 -34087,7502:237,-27,53,0,0,0.079577 -34088,7502:236,-26,53,0,0,0.0845602 -34089,7502:235,-25,53,0,0,0.123148 -34090,7502:134,-24,53,0,0,0.140729 -34091,7502:133,-23,53,0,0,0.14254 -34092,7502:132,-22,53,0,0,0.129138 -34093,7502:131,-21,53,0,0,0.118284 -34094,7502:130,-20,53,0,0,0.127415 -34095,7501:239,-19,53,0,0,0.122815 -34096,7501:238,-18,53,0,0,0.119188 -34097,7501:237,-17,53,0,0,0.117526 -34098,7501:236,-16,53,0,0,0.110048 -34099,7501:235,-15,53,0,0,0.105126 -34100,7501:134,-14,53,0,0,0.111373 -34101,7501:133,-13,53,0,0,0.111923 -34102,7501:132,-12,53,0,0,0.123303 -34103,7501:131,-11,53,0,0,0.129415 -34104,7501:130,-10,53,0,0,0.14649 -34105,7500:239,-9,53,0,0,0.157068 -34106,7500:238,-8,53,0,0,0.161791 -34107,7500:237,-7,53,0,0,0.164611 -34108,7500:236,-6,53,0,0,0.152977 -34109,7500:235,-5,53,0,0,0.160943 -34110,7500:134,-4,53,0,0,0.162993 -34111,7500:133,-3,53,0,0,0.1695 -34112,7500:132,-2,53,0,0,0.18093 -34113,7500:131,-1,53,0,0,0.193897 -34114,1500:131,0,53,0,0,0.193319 -34115,1500:131,1,53,0,0,0.198139 -34116,1500:132,2,53,0,0,0.195847 -34117,1501:130,10,53,0,0,0.154917 -34118,1501:131,11,53,0,0,0.158228 -34119,1501:132,12,53,0,0,0.147547 -34120,1501:239,19,53,0,0,0.13792 -34121,1502:130,20,53,0,0,0.140022 -34122,7517:248,-178,54,0,0,0.0765093 -34123,7517:247,-177,54,0,0,0.0767056 -34124,7517:246,-176,54,0,0,0.0768806 -34125,7517:245,-175,54,0,0,0.0769754 -34126,7517:144,-174,54,0,0,0.0770704 -34127,7517:143,-173,54,0,0,0.0769168 -34128,7517:142,-172,54,0,0,0.0765603 -34129,7517:141,-171,54,0,0,0.0763427 -34130,7517:140,-170,54,0,0,0.0762775 -34131,7516:249,-169,54,0,0,0.0762267 -34132,7516:248,-168,54,0,0,0.0762991 -34133,7509:141,-91,54,0,0,0.0779519 -34134,7509:140,-90,54,0,0,0.0780184 -34135,7508:249,-89,54,0,0,0.083532 -34136,7508:248,-88,54,0,0,0.0825851 -34137,7508:247,-87,54,0,0,0.0829908 -34138,7508:246,-86,54,0,0,0.0835555 -34139,7508:245,-85,54,0,0,0.0834063 -34140,7508:144,-84,54,0,0,0.0837288 -34141,7508:143,-83,54,0,0,0.0835634 -34142,7508:142,-82,54,0,0,0.0832336 -34143,7508:141,-81,54,0,0,0.0836737 -34144,7508:140,-80,54,0,0,0.0837446 -34145,7507:249,-79,54,0,0,0.0829596 -34146,7507:248,-78,54,0,0,0.0824918 -34147,7507:247,-77,54,0,0,0.0815635 -34148,7507:246,-76,54,0,0,0.0815017 -34149,7507:245,-75,54,0,0,0.0817252 -34150,7507:144,-74,54,0,0,0.0812713 -34151,7507:143,-73,54,0,0,0.082251 -34152,7507:142,-72,54,0,0,0.0830064 -34153,7506:249,-69,54,0,0,0.0794567 -34154,7506:248,-68,54,0,0,0.079871 -34155,7506:247,-67,54,0,0,0.0804012 -34156,7506:246,-66,54,0,0,0.0783886 -34157,7506:245,-65,54,0,0,0.0797427 -34158,7505:248,-58,54,0,0,0.0768149 -34159,7505:247,-57,54,0,0,0.077856 -34160,7505:246,-56,54,0,0,0.0771873 -34161,7505:245,-55,54,0,0,0.0770046 -34162,7505:144,-54,54,0,0,0.0771799 -34163,7505:143,-53,54,0,0,0.0770338 -34164,7505:142,-52,54,0,0,0.0849986 -34165,7505:141,-51,54,0,0,0.137188 -34166,7505:140,-50,54,0,0,0.147237 -34167,7504:249,-49,54,0,0,0.134284 -34168,7504:248,-48,54,0,0,0.108846 -34169,7503:141,-31,54,0,0,0.0772018 -34170,7503:140,-30,54,0,0,0.0777232 -34171,7502:249,-29,54,0,0,0.0769024 -34172,7502:248,-28,54,0,0,0.0765093 -34173,7502:247,-27,54,0,0,0.076386 -34174,7502:246,-26,54,0,0,0.0764732 -34175,7502:245,-25,54,0,0,0.076553 -34176,7502:144,-24,54,0,0,0.0817019 -34177,7502:143,-23,54,0,0,0.0877551 -34178,7502:142,-22,54,0,0,0.0965598 -34179,7502:141,-21,54,0,0,0.103028 -34180,7502:140,-20,54,0,0,0.095623 -34181,7501:249,-19,54,0,0,0.0998351 -34182,7501:248,-18,54,0,0,0.0981943 -34183,7501:247,-17,54,0,0,0.103123 -34184,7501:246,-16,54,0,0,0.1053 -34185,7501:245,-15,54,0,0,0.108597 -34186,7501:144,-14,54,0,0,0.112969 -34187,7501:143,-13,54,0,0,0.117739 -34188,7501:142,-12,54,0,0,0.123281 -34189,7501:141,-11,54,0,0,0.132066 -34190,7501:140,-10,54,0,0,0.14544 -34191,7500:249,-9,54,0,0,0.149652 -34192,7500:248,-8,54,0,0,0.148259 -34193,7500:247,-7,54,0,0,0.150504 -34194,7500:246,-6,54,0,0,0.154501 -34195,7500:245,-5,54,0,0,0.155335 -34196,7500:144,-4,54,0,0,0.166884 -34197,7500:143,-3,54,0,0,0.175825 -34198,7500:142,-2,54,0,0,0.19356 -34199,7500:141,-1,54,0,0,0.188212 -34200,1500:141,0,54,0,0,0.18685 -34201,1500:141,1,54,0,0,0.195782 -34202,1500:142,2,54,0,0,0.187647 -34203,1501:140,10,54,0,0,0.130414 -34204,1501:141,11,54,0,0,0.134069 -34205,7518:350,-180,55,0,0,0.0768732 -34206,7517:459,-179,55,0,0,0.0768149 -34207,7517:458,-178,55,0,0,0.0767858 -34208,7517:457,-177,55,0,0,0.0767274 -34209,7517:456,-176,55,0,0,0.0771799 -34210,7517:455,-175,55,0,0,0.0775465 -34211,7517:354,-174,55,0,0,0.07751 -34212,7517:353,-173,55,0,0,0.0772459 -34213,7517:352,-172,55,0,0,0.0772166 -34214,7517:351,-171,55,0,0,0.0768149 -34215,7517:350,-170,55,0,0,0.0763064 -34216,7509:351,-91,55,0,0,0.0787307 -34217,7509:350,-90,55,0,0,0.0832649 -34218,7508:459,-89,55,0,0,0.0833825 -34219,7508:458,-88,55,0,0,0.0819335 -34220,7508:457,-87,55,0,0,0.082282 -34221,7508:456,-86,55,0,0,0.0827176 -34222,7508:455,-85,55,0,0,0.0830768 -34223,7508:354,-84,55,0,0,0.0832023 -34224,7508:353,-83,55,0,0,0.0828347 -34225,7508:352,-82,55,0,0,0.0821271 -34226,7508:351,-81,55,0,0,0.0821037 -34227,7508:350,-80,55,0,0,0.0824683 -34228,7507:459,-79,55,0,0,0.0821271 -34229,7507:458,-78,55,0,0,0.08181 -34230,7507:457,-77,55,0,0,0.0808581 -34231,7507:456,-76,55,0,0,0.0805761 -34232,7507:455,-75,55,0,0,0.0807131 -34233,7507:354,-74,55,0,0,0.0808276 -34234,7507:352,-72,55,0,0,0.0813711 -34235,7507:351,-71,55,0,0,0.0810875 -34236,7507:350,-70,55,0,0,0.0789322 -34237,7506:459,-69,55,0,0,0.0794342 -34238,7506:458,-68,55,0,0,0.0787532 -34239,7506:457,-67,55,0,0,0.078085 -34240,7506:456,-66,55,0,0,0.0787755 -34241,7506:455,-65,55,0,0,0.0758946 -34242,7505:458,-58,55,0,0,0.0788128 -34243,7505:455,-55,55,0,0,0.0762558 -34244,7505:354,-54,55,0,0,0.0770922 -34245,7505:353,-53,55,0,0,0.077136 -34246,7505:352,-52,55,0,0,0.0817252 -34247,7505:351,-51,55,0,0,0.0992915 -34248,7505:350,-50,55,0,0,0.132231 -34249,7504:459,-49,55,0,0,0.132656 -34250,7504:458,-48,55,0,0,0.108986 -34251,7502:456,-26,55,0,0,0.0763064 -34252,7502:455,-25,55,0,0,0.0762918 -34253,7502:354,-24,55,0,0,0.0765384 -34254,7502:353,-23,55,0,0,0.0769899 -34255,7502:352,-22,55,0,0,0.0782476 -34256,7502:351,-21,55,0,0,0.0815557 -34257,7502:350,-20,55,0,0,0.0879775 -34258,7501:459,-19,55,0,0,0.0981036 -34259,7501:458,-18,55,0,0,0.101088 -34260,7501:457,-17,55,0,0,0.104471 -34261,7501:456,-16,55,0,0,0.107075 -34262,7501:455,-15,55,0,0,0.109696 -34263,7501:354,-14,55,0,0,0.112107 -34264,7501:353,-13,55,0,0,0.116686 -34265,7501:352,-12,55,0,0,0.122329 -34266,7501:351,-11,55,0,0,0.12945 -34267,7501:350,-10,55,0,0,0.137481 -34268,7500:459,-9,55,0,0,0.141202 -34269,7500:458,-8,55,0,0,0.143901 -34270,7500:457,-7,55,0,0,0.147508 -34271,7500:456,-6,55,0,0,0.154917 -34272,7500:455,-5,55,0,0,0.16556 -34273,7500:354,-4,55,0,0,0.170646 -34274,7500:353,-3,55,0,0,0.174489 -34275,7500:352,-2,55,0,0,0.186678 -34276,7500:351,-1,55,0,0,0.185434 -34277,1500:351,0,55,0,0,0.183579 -34278,1500:351,1,55,0,0,0.186866 -34279,1500:352,2,55,0,0,0.191499 -34280,1501:351,11,55,0,0,0.142666 -34281,1517:351,171,55,0,0,0.0805912 -34282,1518:350,180,55,0,0,0.0768732 -34283,7518:360,-180,56,0,0,0.0766839 -34284,7517:469,-179,56,0,0,0.0765893 -34285,7517:468,-178,56,0,0,0.0768003 -34286,7517:467,-177,56,0,0,0.0775026 -34287,7517:466,-176,56,0,0,0.0781588 -34288,7517:465,-175,56,0,0,0.0780701 -34289,7517:364,-174,56,0,0,0.0775613 -34290,7517:363,-173,56,0,0,0.0770996 -34291,7509:360,-90,56,0,0,0.0822899 -34292,7508:469,-89,56,0,0,0.0820805 -34293,7508:468,-88,56,0,0,0.0815635 -34294,7508:467,-87,56,0,0,0.0817483 -34295,7508:466,-86,56,0,0,0.0822899 -34296,7508:465,-85,56,0,0,0.0828423 -34297,7508:364,-84,56,0,0,0.0819335 -34298,7508:363,-83,56,0,0,0.081548 -34299,7508:362,-82,56,0,0,0.0815635 -34300,7508:361,-81,56,0,0,0.0813866 -34301,7508:360,-80,56,0,0,0.0814942 -34302,7507:469,-79,56,0,0,0.0815327 -34303,7507:468,-78,56,0,0,0.0808887 -34304,7507:467,-77,56,0,0,0.0796824 -34305,7507:466,-76,56,0,0,0.0777379 -34306,7507:465,-75,56,0,0,0.0791266 -34307,7507:364,-74,56,0,0,0.0784555 -34308,7507:363,-73,56,0,0,0.0785299 -34309,7507:362,-72,56,0,0,0.0803101 -34310,7507:361,-71,56,0,0,0.0795393 -34311,7506:468,-68,56,0,0,0.078218 -34312,7506:467,-67,56,0,0,0.0785446 -34313,7506:466,-66,56,0,0,0.0766839 -34314,7505:468,-58,56,0,0,0.0791717 -34315,7505:363,-53,56,0,0,0.0768585 -34316,7505:362,-52,56,0,0,0.0770849 -34317,7505:361,-51,56,0,0,0.0770922 -34318,7505:360,-50,56,0,0,0.0917501 -34319,7504:469,-49,56,0,0,0.129045 -34320,7504:468,-48,56,0,0,0.101979 -34321,7504:467,-47,56,0,0,0.0865292 -34322,7502:364,-24,56,0,0,0.0766621 -34323,7502:363,-23,56,0,0,0.0764659 -34324,7502:362,-22,56,0,0,0.0764659 -34325,7502:361,-21,56,0,0,0.0781071 -34326,7502:360,-20,56,0,0,0.0923854 -34327,7501:469,-19,56,0,0,0.10002 -34328,7501:468,-18,56,0,0,0.102658 -34329,7501:467,-17,56,0,0,0.102658 -34330,7501:466,-16,56,0,0,0.104375 -34331,7501:465,-15,56,0,0,0.109185 -34332,7501:364,-14,56,0,0,0.111923 -34333,7501:363,-13,56,0,0,0.117686 -34334,7501:362,-12,56,0,0,0.123971 -34335,7501:361,-11,56,0,0,0.127689 -34336,7501:360,-10,56,0,0,0.134188 -34337,7500:469,-9,56,0,0,0.138348 -34338,7500:468,-8,56,0,0,0.137761 -34339,7500:467,-7,56,0,0,0.142666 -34340,7500:466,-6,56,0,0,0.145913 -34341,7500:465,-5,56,0,0,0.154945 -34342,7500:364,-4,56,0,0,0.161637 -34343,7500:363,-3,56,0,0,0.173898 -34344,7500:362,-2,56,0,0,0.181829 -34345,7500:361,-1,56,0,0,0.187522 -34346,1500:361,0,56,0,0,0.183625 -34347,1500:361,1,56,0,0,0.18534 -34348,1500:362,2,56,0,0,0.173102 -34349,1501:360,10,56,0,0,0.130146 -34350,1501:361,11,56,0,0,0.151452 -34351,1501:362,12,56,0,0,0.131443 -34352,1516:465,165,56,0,0,0.0793064 -34353,1516:467,167,56,0,0,0.0784258 -34354,1516:468,168,56,0,0,0.0782255 -34355,1516:469,169,56,0,0,0.077937 -34356,1517:467,177,56,0,0,0.0772166 -34357,1517:468,178,56,0,0,0.0772018 -34358,1517:469,179,56,0,0,0.0769024 -34359,1518:360,180,56,0,0,0.0766839 -34360,7518:370,-180,57,0,0,0.0772311 -34361,7517:479,-179,57,0,0,0.0771433 -34362,7517:478,-178,57,0,0,0.0776275 -34363,7517:477,-177,57,0,0,0.0777821 -34364,7517:476,-176,57,0,0,0.077974 -34365,7517:475,-175,57,0,0,0.0784036 -34366,7517:374,-174,57,0,0,0.0776938 -34367,7517:373,-173,57,0,0,0.0769315 -34368,7517:372,-172,57,0,0,0.0762123 -34369,7517:371,-171,57,0,0,0.0758443 -34370,7509:370,-90,57,0,0,0.0795845 -34371,7508:479,-89,57,0,0,0.0813329 -34372,7508:478,-88,57,0,0,0.0808276 -34373,7508:477,-87,57,0,0,0.0812254 -34374,7508:476,-86,57,0,0,0.0818486 -34375,7508:475,-85,57,0,0,0.0820961 -34376,7508:374,-84,57,0,0,0.0811487 -34377,7508:373,-83,57,0,0,0.0808504 -34378,7508:372,-82,57,0,0,0.0811487 -34379,7508:371,-81,57,0,0,0.0811104 -34380,7508:370,-80,57,0,0,0.0810109 -34381,7507:479,-79,57,0,0,0.0808581 -34382,7507:478,-78,57,0,0,0.0805227 -34383,7507:477,-77,57,0,0,0.0788502 -34384,7507:374,-74,57,0,0,0.0785074 -34385,7507:373,-73,57,0,0,0.0784927 -34386,7507:372,-72,57,0,0,0.0778706 -34387,7507:371,-71,57,0,0,0.0777821 -34388,7507:370,-70,57,0,0,0.0783071 -34389,7506:479,-69,57,0,0,0.0779961 -34390,7505:478,-58,57,0,0,0.0765747 -34391,7505:374,-54,57,0,0,0.0768585 -34392,7505:373,-53,57,0,0,0.0769534 -34393,7505:372,-52,57,0,0,0.0767347 -34394,7505:371,-51,57,0,0,0.0771288 -34395,7505:370,-50,57,0,0,0.0793215 -34396,7504:479,-49,57,0,0,0.0895396 -34397,7504:478,-48,57,0,0,0.114346 -34398,7504:477,-47,57,0,0,0.11493 -34399,7504:476,-46,57,0,0,0.109345 -34400,7504:475,-45,57,0,0,0.102111 -34401,7502:475,-25,57,0,0,0.0780701 -34402,7502:373,-23,57,0,0,0.0764369 -34403,7502:372,-22,57,0,0,0.0764369 -34404,7502:371,-21,57,0,0,0.0768367 -34405,7502:370,-20,57,0,0,0.078011 -34406,7501:479,-19,57,0,0,0.0832023 -34407,7501:478,-18,57,0,0,0.0932853 -34408,7501:477,-17,57,0,0,0.103513 -34409,7501:476,-16,57,0,0,0.106126 -34410,7501:475,-15,57,0,0,0.106879 -34411,7501:374,-14,57,0,0,0.106087 -34412,7501:373,-13,57,0,0,0.111841 -34413,7501:372,-12,57,0,0,0.126719 -34414,7501:371,-11,57,0,0,0.129057 -34415,7501:370,-10,57,0,0,0.130881 -34416,7500:479,-9,57,0,0,0.134093 -34417,7500:478,-8,57,0,0,0.135748 -34418,7500:477,-7,57,0,0,0.13742 -34419,7500:476,-6,57,0,0,0.137456 -34420,7500:475,-5,57,0,0,0.137932 -34421,7500:374,-4,57,0,0,0.14356 -34422,7500:373,-3,57,0,0,0.174785 -34423,7500:372,-2,57,0,0,0.183117 -34424,7500:371,-1,57,0,0,0.184798 -34425,1500:371,0,57,0,0,0.184736 -34426,1500:371,1,57,0,0,0.184242 -34427,1500:372,2,57,0,0,0.188495 -34428,1501:370,10,57,0,0,0.110643 -34429,1501:371,11,57,0,0,0.144104 -34430,1501:372,12,57,0,0,0.12014 -34431,1516:475,165,57,0,0,0.0791717 -34432,1516:476,166,57,0,0,0.0789247 -34433,1516:477,167,57,0,0,0.0786936 -34434,1516:478,168,57,0,0,0.0784333 -34435,1516:479,169,57,0,0,0.0781663 -34436,1517:370,170,57,0,0,0.0780331 -34437,1517:371,171,57,0,0,0.077878 -34438,1517:372,172,57,0,0,0.0777012 -34439,1517:373,173,57,0,0,0.0775762 -34440,1517:374,174,57,0,0,0.077451 -34441,1517:475,175,57,0,0,0.0773559 -34442,1517:476,176,57,0,0,0.0772459 -34443,1517:477,177,57,0,0,0.0772385 -34444,1517:478,178,57,0,0,0.0767567 -34445,1517:479,179,57,0,0,0.0768076 -34446,1518:370,180,57,0,0,0.0772311 -34447,7518:380,-180,58,0,0,0.0771433 -34448,7517:489,-179,58,0,0,0.0770556 -34449,7517:488,-178,58,0,0,0.0767785 -34450,7517:487,-177,58,0,0,0.0762629 -34451,7517:486,-176,58,0,0,0.0760822 -34452,7517:485,-175,58,0,0,0.0765603 -34453,7517:384,-174,58,0,0,0.0772532 -34454,7517:383,-173,58,0,0,0.0775687 -34455,7517:382,-172,58,0,0,0.0767929 -34456,7517:381,-171,58,0,0,0.0760317 -34457,7508:489,-89,58,0,0,0.0779001 -34458,7508:488,-88,58,0,0,0.0815095 -34459,7508:487,-87,58,0,0,0.0803405 -34460,7508:486,-86,58,0,0,0.0806751 -34461,7508:485,-85,58,0,0,0.0806826 -34462,7508:384,-84,58,0,0,0.0803632 -34463,7508:383,-83,58,0,0,0.0807284 -34464,7508:382,-82,58,0,0,0.0807512 -34465,7508:381,-81,58,0,0,0.0805912 -34466,7508:380,-80,58,0,0,0.0802265 -34467,7507:489,-79,58,0,0,0.0799542 -34468,7507:488,-78,58,0,0,0.0797351 -34469,7507:487,-77,58,0,0,0.0782551 -34470,7507:486,-76,58,0,0,0.0785299 -34471,7507:485,-75,58,0,0,0.0784777 -34472,7507:384,-74,58,0,0,0.0771726 -34473,7507:381,-71,58,0,0,0.0776938 -34474,7507:380,-70,58,0,0,0.0774584 -34475,7506:489,-69,58,0,0,0.077819 -34476,7506:485,-65,58,0,0,0.0774217 -34477,7506:384,-64,58,0,0,0.0773559 -34478,7505:384,-54,58,0,0,0.0769534 -34479,7505:383,-53,58,0,0,0.0764586 -34480,7505:382,-52,58,0,0,0.0763571 -34481,7505:381,-51,58,0,0,0.0766548 -34482,7505:380,-50,58,0,0,0.07635 -34483,7504:489,-49,58,0,0,0.0785149 -34484,7504:488,-48,58,0,0,0.0882004 -34485,7504:487,-47,58,0,0,0.0892387 -34486,7504:384,-44,58,0,0,0.104769 -34487,7502:383,-23,58,0,0,0.0763427 -34488,7502:382,-22,58,0,0,0.0764223 -34489,7502:381,-21,58,0,0,0.0769973 -34490,7502:380,-20,58,0,0,0.0805761 -34491,7501:489,-19,58,0,0,0.0882415 -34492,7501:488,-18,58,0,0,0.092627 -34493,7501:487,-17,58,0,0,0.0944564 -34494,7501:486,-16,58,0,0,0.0981854 -34495,7501:485,-15,58,0,0,0.102092 -34496,7501:384,-14,58,0,0,0.10229 -34497,7501:383,-13,58,0,0,0.104634 -34498,7501:382,-12,58,0,0,0.115716 -34499,7501:381,-11,58,0,0,0.126515 -34500,7501:380,-10,58,0,0,0.133272 -34501,7500:489,-9,58,0,0,0.142527 -34502,7500:488,-8,58,0,0,0.143345 -34503,7500:487,-7,58,0,0,0.14521 -34504,7500:486,-6,58,0,0,0.140617 -34505,7500:485,-5,58,0,0,0.139134 -34506,7500:384,-4,58,0,0,0.158941 -34507,7500:383,-3,58,0,0,0.165673 -34508,7500:382,-2,58,0,0,0.168591 -34509,7500:381,-1,58,0,0,0.178295 -34510,1500:381,0,58,0,0,0.181554 -34511,1500:381,1,58,0,0,0.183995 -34512,1500:382,2,58,0,0,0.1748 -34513,1516:383,163,58,0,0,0.0797503 -34514,1516:384,164,58,0,0,0.0794643 -34515,1516:485,165,58,0,0,0.0791342 -34516,1516:486,166,58,0,0,0.0789099 -34517,1516:487,167,58,0,0,0.0786041 -34518,1516:488,168,58,0,0,0.0782329 -34519,1516:489,169,58,0,0,0.077878 -34520,1517:380,170,58,0,0,0.0776055 -34521,1517:381,171,58,0,0,0.0774732 -34522,1517:382,172,58,0,0,0.0773704 -34523,1517:383,173,58,0,0,0.0773192 -34524,1517:384,174,58,0,0,0.0772459 -34525,1517:485,175,58,0,0,0.077063 -34526,1517:486,176,58,0,0,0.0769242 -34527,1517:489,179,58,0,0,0.0764732 -34528,1518:380,180,58,0,0,0.0771433 -34529,7518:390,-180,59,0,0,0.0767858 -34530,7517:499,-179,59,0,0,0.0771947 -34531,7517:498,-178,59,0,0,0.0769315 -34532,7517:497,-177,59,0,0,0.0768294 -34533,7517:496,-176,59,0,0,0.0765747 -34534,7517:495,-175,59,0,0,0.0769754 -34535,7517:394,-174,59,0,0,0.0772899 -34536,7517:393,-173,59,0,0,0.0767347 -34537,7517:392,-172,59,0,0,0.0768514 -34538,7517:391,-171,59,0,0,0.0768367 -34539,7517:390,-170,59,0,0,0.0762267 -34540,7508:498,-88,59,0,0,0.0765022 -34541,7508:497,-87,59,0,0,0.0792764 -34542,7508:496,-86,59,0,0,0.0810875 -34543,7508:495,-85,59,0,0,0.0816173 -34544,7508:394,-84,59,0,0,0.0814865 -34545,7508:393,-83,59,0,0,0.0806293 -34546,7508:392,-82,59,0,0,0.0801962 -34547,7508:391,-81,59,0,0,0.0800901 -34548,7508:390,-80,59,0,0,0.079803 -34549,7507:499,-79,59,0,0,0.0790369 -34550,7507:498,-78,59,0,0,0.077878 -34551,7507:392,-72,59,0,0,0.0777747 -34552,7507:391,-71,59,0,0,0.076713 -34553,7507:390,-70,59,0,0,0.0768076 -34554,7506:499,-69,59,0,0,0.0767347 -34555,7506:498,-68,59,0,0,0.0767494 -34556,7506:497,-67,59,0,0,0.0770191 -34557,7506:496,-66,59,0,0,0.0770849 -34558,7506:495,-65,59,0,0,0.0771726 -34559,7506:394,-64,59,0,0,0.0775539 -34560,7506:393,-63,59,0,0,0.0779445 -34561,7505:495,-55,59,0,0,0.0773263 -34562,7505:394,-54,59,0,0,0.076742 -34563,7505:393,-53,59,0,0,0.0764369 -34564,7505:392,-52,59,0,0,0.0764732 -34565,7505:391,-51,59,0,0,0.0765166 -34566,7505:390,-50,59,0,0,0.0764442 -34567,7504:499,-49,59,0,0,0.0762267 -34568,7504:498,-48,59,0,0,0.0769168 -34569,7504:497,-47,59,0,0,0.0837052 -34570,7504:496,-46,59,0,0,0.0862212 -34571,7504:495,-45,59,0,0,0.105262 -34572,7502:394,-24,59,0,0,0.076524 -34573,7502:393,-23,59,0,0,0.076234 -34574,7502:392,-22,59,0,0,0.0762558 -34575,7502:391,-21,59,0,0,0.0766257 -34576,7502:390,-20,59,0,0,0.0784183 -34577,7501:499,-19,59,0,0,0.0851106 -34578,7501:498,-18,59,0,0,0.0899931 -34579,7501:497,-17,59,0,0,0.0918013 -34580,7501:496,-16,59,0,0,0.0928344 -34581,7501:495,-15,59,0,0,0.0940968 -34582,7501:394,-14,59,0,0,0.0967753 -34583,7501:393,-13,59,0,0,0.0981308 -34584,7501:392,-12,59,0,0,0.0988697 -34585,7501:391,-11,59,0,0,0.108796 -34586,7501:390,-10,59,0,0,0.12656 -34587,7500:499,-9,59,0,0,0.144777 -34588,7500:498,-8,59,0,0,0.150124 -34589,7500:497,-7,59,0,0,0.148038 -34590,7500:496,-6,59,0,0,0.146696 -34591,7500:495,-5,59,0,0,0.147779 -34592,7500:394,-4,59,0,0,0.156024 -34593,7500:393,-3,59,0,0,0.157995 -34594,7500:392,-2,59,0,0,0.166827 -34595,7500:391,-1,59,0,0,0.167528 -34596,1500:391,0,59,0,0,0.176049 -34597,1500:391,1,59,0,0,0.179276 -34598,1515:499,159,59,0,0,0.0809115 -34599,1516:390,160,59,0,0,0.0806217 -34600,1516:391,161,59,0,0,0.0801812 -34601,1516:392,162,59,0,0,0.079705 -34602,1516:393,163,59,0,0,0.0794567 -34603,1516:394,164,59,0,0,0.0792615 -34604,1516:495,165,59,0,0,0.0790668 -34605,1516:496,166,59,0,0,0.0788203 -34606,1516:497,167,59,0,0,0.0785074 -34607,1516:498,168,59,0,0,0.078218 -34608,1516:499,169,59,0,0,0.0779814 -34609,1517:390,170,59,0,0,0.077819 -34610,1517:391,171,59,0,0,0.0775981 -34611,1517:392,172,59,0,0,0.0772532 -34612,1517:393,173,59,0,0,0.0770922 -34613,1517:394,174,59,0,0,0.0770409 -34614,1517:495,175,59,0,0,0.0770046 -34615,1517:496,176,59,0,0,0.0769754 -34616,1517:497,177,59,0,0,0.0769168 -34617,1517:498,178,59,0,0,0.0768149 -34618,1517:499,179,59,0,0,0.0767274 -34619,1518:390,180,59,0,0,0.0767858 -34620,7618:100,-180,60,0,0,0.0771067 -34621,7617:209,-179,60,0,0,0.0769315 -34622,7617:208,-178,60,0,0,0.0769899 -34623,7617:207,-177,60,0,0,0.0770849 -34624,7617:206,-176,60,0,0,0.0768659 -34625,7617:205,-175,60,0,0,0.0768076 -34626,7617:104,-174,60,0,0,0.0770117 -34627,7617:103,-173,60,0,0,0.0765603 -34628,7617:102,-172,60,0,0,0.0764442 -34629,7617:101,-171,60,0,0,0.076582 -34630,7617:100,-170,60,0,0,0.0767638 -34631,7616:209,-169,60,0,0,0.0767347 -34632,7608:207,-87,60,0,0,0.0756572 -34633,7608:206,-86,60,0,0,0.0757937 -34634,7608:205,-85,60,0,0,0.0770338 -34635,7608:104,-84,60,0,0,0.0787009 -34636,7608:103,-83,60,0,0,0.079562 -34637,7608:102,-82,60,0,0,0.0809726 -34638,7608:101,-81,60,0,0,0.0803405 -34639,7608:100,-80,60,0,0,0.079856 -34640,7607:209,-79,60,0,0,0.0783961 -34641,7607:102,-72,60,0,0,0.0778042 -34642,7607:101,-71,60,0,0,0.0771726 -34643,7607:100,-70,60,0,0,0.0765022 -34644,7606:209,-69,60,0,0,0.0764876 -34645,7606:208,-68,60,0,0,0.0764803 -34646,7606:207,-67,60,0,0,0.0764659 -34647,7606:206,-66,60,0,0,0.0764513 -34648,7606:205,-65,60,0,0,0.0765384 -34649,7606:104,-64,60,0,0,0.0768514 -34650,7606:103,-63,60,0,0,0.0773118 -34651,7606:102,-62,60,0,0,0.077937 -34652,7606:101,-61,60,0,0,0.07827 -34653,7605:206,-56,60,0,0,0.0779519 -34654,7605:205,-55,60,0,0,0.0778485 -34655,7605:104,-54,60,0,0,0.0768806 -34656,7605:103,-53,60,0,0,0.0766328 -34657,7605:102,-52,60,0,0,0.0765166 -34658,7605:101,-51,60,0,0,0.0763716 -34659,7605:100,-50,60,0,0,0.0763643 -34660,7604:209,-49,60,0,0,0.0763354 -34661,7604:208,-48,60,0,0,0.0764296 -34662,7604:207,-47,60,0,0,0.0769097 -34663,7604:206,-46,60,0,0,0.0779889 -34664,7604:205,-45,60,0,0,0.0823441 -34665,7604:104,-44,60,0,0,0.0925493 -34666,7602:103,-23,60,0,0,0.0762918 -34667,7602:102,-22,60,0,0,0.076046 -34668,7602:101,-21,60,0,0,0.0762629 -34669,7602:100,-20,60,0,0,0.0766839 -34670,7601:209,-19,60,0,0,0.0769534 -34671,7601:208,-18,60,0,0,0.0778634 -34672,7601:207,-17,60,0,0,0.0801736 -34673,7601:206,-16,60,0,0,0.0833825 -34674,7601:205,-15,60,0,0,0.0905498 -34675,7601:104,-14,60,0,0,0.0955341 -34676,7601:103,-13,60,0,0,0.0953213 -34677,7601:102,-12,60,0,0,0.0949144 -34678,7601:101,-11,60,0,0,0.0957741 -34679,7601:100,-10,60,0,0,0.102583 -34680,7600:209,-9,60,0,0,0.126549 -34681,7600:208,-8,60,0,0,0.137761 -34682,7600:207,-7,60,0,0,0.150006 -34683,7600:206,-6,60,0,0,0.151611 -34684,7600:205,-5,60,0,0,0.151136 -34685,7600:104,-4,60,0,0,0.150215 -34686,7600:103,-3,60,0,0,0.16104 -34687,7600:102,-2,60,0,0,0.163189 -34688,7600:101,-1,60,0,0,0.163287 -34689,1600:101,0,60,0,0,0.172926 -34690,1600:101,1,60,0,0,0.17375 -34691,1600:102,2,60,0,0,0.179745 -34692,1615:209,159,60,0,0,0.0802492 -34693,1616:100,160,60,0,0,0.0799692 -34694,1616:101,161,60,0,0,0.0797277 -34695,1616:102,162,60,0,0,0.0795995 -34696,1616:103,163,60,0,0,0.0794491 -34697,1616:104,164,60,0,0,0.0792464 -34698,1616:205,165,60,0,0,0.0790145 -34699,1616:206,166,60,0,0,0.0787084 -34700,1616:207,167,60,0,0,0.078359 -34701,1616:208,168,60,0,0,0.0780405 -34702,1616:209,169,60,0,0,0.0777675 -34703,1617:100,170,60,0,0,0.077679 -34704,1617:101,171,60,0,0,0.0775907 -34705,1617:102,172,60,0,0,0.0773263 -34706,1617:103,173,60,0,0,0.0771141 -34707,1617:104,174,60,0,0,0.0769825 -34708,1617:205,175,60,0,0,0.0769973 -34709,1617:206,176,60,0,0,0.0769168 -34710,1617:207,177,60,0,0,0.0768441 -34711,1617:208,178,60,0,0,0.0767785 -34712,1617:209,179,60,0,0,0.0766912 -34713,1618:100,180,60,0,0,0.0771067 -34714,7618:110,-180,61,0,0,0.0768877 -34715,7617:219,-179,61,0,0,0.0770556 -34716,7617:218,-178,61,0,0,0.0769754 -34717,7617:217,-177,61,0,0,0.0769681 -34718,7617:216,-176,61,0,0,0.0771141 -34719,7617:215,-175,61,0,0,0.0768659 -34720,7617:114,-174,61,0,0,0.0767567 -34721,7617:113,-173,61,0,0,0.0765457 -34722,7617:112,-172,61,0,0,0.0762558 -34723,7617:111,-171,61,0,0,0.076415 -34724,7617:110,-170,61,0,0,0.0772166 -34725,7616:219,-169,61,0,0,0.0773337 -34726,7616:218,-168,61,0,0,0.0772532 -34727,7616:217,-167,61,0,0,0.0762629 -34728,7616:216,-166,61,0,0,0.0762848 -34729,7608:112,-82,61,0,0,0.0775613 -34730,7608:111,-81,61,0,0,0.0794868 -34731,7608:110,-80,61,0,0,0.0787532 -34732,7607:219,-79,61,0,0,0.0790444 -34733,7607:218,-78,61,0,0,0.0794943 -34734,7607:217,-77,61,0,0,0.0773485 -34735,7607:113,-73,61,0,0,0.0775539 -34736,7607:112,-72,61,0,0,0.0776127 -34737,7607:111,-71,61,0,0,0.0772166 -34738,7607:110,-70,61,0,0,0.0770849 -34739,7606:219,-69,61,0,0,0.0768514 -34740,7606:218,-68,61,0,0,0.0766328 -34741,7606:217,-67,61,0,0,0.0767638 -34742,7606:216,-66,61,0,0,0.0766839 -34743,7606:215,-65,61,0,0,0.0764296 -34744,7606:111,-61,61,0,0,0.0781884 -34745,7605:114,-54,61,0,0,0.0768659 -34746,7605:113,-53,61,0,0,0.0765022 -34747,7605:112,-52,61,0,0,0.0762918 -34748,7605:111,-51,61,0,0,0.0764369 -34749,7605:110,-50,61,0,0,0.0762848 -34750,7604:219,-49,61,0,0,0.0763427 -34751,7604:218,-48,61,0,0,0.0777232 -34752,7604:217,-47,61,0,0,0.0815095 -34753,7604:216,-46,61,0,0,0.0860592 -34754,7602:112,-22,61,0,0,0.0761256 -34755,7602:111,-21,61,0,0,0.0761183 -34756,7602:110,-20,61,0,0,0.0765893 -34757,7601:219,-19,61,0,0,0.077224 -34758,7601:218,-18,61,0,0,0.0792691 -34759,7601:217,-17,61,0,0,0.0844409 -34760,7601:216,-16,61,0,0,0.0899846 -34761,7601:215,-15,61,0,0,0.0925838 -34762,7601:114,-14,61,0,0,0.094237 -34763,7601:113,-13,61,0,0,0.0932593 -34764,7601:112,-12,61,0,0,0.0927394 -34765,7601:111,-11,61,0,0,0.0931811 -34766,7601:110,-10,61,0,0,0.0948438 -34767,7600:219,-9,61,0,0,0.119112 -34768,7600:218,-8,61,0,0,0.140592 -34769,7600:217,-7,61,0,0,0.139824 -34770,7600:216,-6,61,0,0,0.148908 -34771,7600:215,-5,61,0,0,0.150229 -34772,7600:114,-4,61,0,0,0.152565 -34773,7600:113,-3,61,0,0,0.156105 -34774,7600:112,-2,61,0,0,0.153898 -34775,7600:111,-1,61,0,0,0.163161 -34776,1600:111,0,61,0,0,0.175959 -34777,1600:111,1,61,0,0,0.176183 -34778,1600:112,2,61,0,0,0.17979 -34779,1600:113,3,61,0,0,0.148817 -34780,1601:219,19,61,0,0,0.0927913 -34781,1602:110,20,61,0,0,0.094237 -34782,1602:112,22,61,0,0,0.0881838 -34783,1615:110,150,61,0,0,0.0812332 -34784,1615:111,151,61,0,0,0.0811104 -34785,1615:112,152,61,0,0,0.0810415 -34786,1615:216,156,61,0,0,0.0806751 -34787,1615:217,157,61,0,0,0.0804696 -34788,1615:218,158,61,0,0,0.0801736 -34789,1615:219,159,61,0,0,0.079939 -34790,1616:110,160,61,0,0,0.0798408 -34791,1616:111,161,61,0,0,0.0797653 -34792,1616:112,162,61,0,0,0.0796222 -34793,1616:113,163,61,0,0,0.0794643 -34794,1616:114,164,61,0,0,0.0789771 -34795,1616:215,165,61,0,0,0.0785002 -34796,1616:216,166,61,0,0,0.0780184 -34797,1616:217,167,61,0,0,0.0776127 -34798,1616:218,168,61,0,0,0.0774071 -34799,1616:219,169,61,0,0,0.0772678 -34800,1617:110,170,61,0,0,0.0772018 -34801,1617:111,171,61,0,0,0.0771654 -34802,1617:112,172,61,0,0,0.0770922 -34803,1617:113,173,61,0,0,0.0769754 -34804,1617:114,174,61,0,0,0.0768659 -34805,1617:215,175,61,0,0,0.0767274 -34806,1617:216,176,61,0,0,0.0766184 -34807,1617:217,177,61,0,0,0.0764803 -34808,1617:218,178,61,0,0,0.0764079 -34809,1617:219,179,61,0,0,0.0765603 -34810,1618:110,180,61,0,0,0.0768877 -34811,7618:120,-180,62,0,0,0.0766839 -34812,7617:229,-179,62,0,0,0.0765967 -34813,7617:228,-178,62,0,0,0.076582 -34814,7617:227,-177,62,0,0,0.0769754 -34815,7617:226,-176,62,0,0,0.0771947 -34816,7617:225,-175,62,0,0,0.0770338 -34817,7617:124,-174,62,0,0,0.0773852 -34818,7617:123,-173,62,0,0,0.0774291 -34819,7617:122,-172,62,0,0,0.0770046 -34820,7617:121,-171,62,0,0,0.0768732 -34821,7617:120,-170,62,0,0,0.0770191 -34822,7616:229,-169,62,0,0,0.0771873 -34823,7616:228,-168,62,0,0,0.0769462 -34824,7616:227,-167,62,0,0,0.0770338 -34825,7616:226,-166,62,0,0,0.0772751 -34826,7616:225,-165,62,0,0,0.0769462 -34827,7616:124,-164,62,0,0,0.0767929 -34828,7616:123,-163,62,0,0,0.0768076 -34829,7616:122,-162,62,0,0,0.0769024 -34830,7616:121,-161,62,0,0,0.0769462 -34831,7616:120,-160,62,0,0,0.076742 -34832,7615:229,-159,62,0,0,0.0770191 -34833,7607:226,-76,62,0,0,0.0766475 -34834,7607:123,-73,62,0,0,0.0777084 -34835,7607:121,-71,62,0,0,0.0768221 -34836,7607:120,-70,62,0,0,0.0771433 -34837,7606:229,-69,62,0,0,0.0768441 -34838,7606:228,-68,62,0,0,0.076742 -34839,7606:227,-67,62,0,0,0.0767567 -34840,7606:226,-66,62,0,0,0.0768732 -34841,7606:225,-65,62,0,0,0.0764586 -34842,7606:124,-64,62,0,0,0.0765457 -34843,7606:122,-62,62,0,0,0.0765457 -34844,7605:124,-54,62,0,0,0.0767274 -34845,7605:123,-53,62,0,0,0.0765457 -34846,7605:122,-52,62,0,0,0.0762485 -34847,7605:121,-51,62,0,0,0.0764006 -34848,7605:120,-50,62,0,0,0.0765384 -34849,7604:229,-49,62,0,0,0.0763933 -34850,7604:228,-48,62,0,0,0.0773559 -34851,7604:227,-47,62,0,0,0.0796673 -34852,7604:226,-46,62,0,0,0.081448 -34853,7604:225,-45,62,0,0,0.0844649 -34854,7602:121,-21,62,0,0,0.076039 -34855,7602:120,-20,62,0,0,0.0762123 -34856,7601:229,-19,62,0,0,0.0773118 -34857,7601:228,-18,62,0,0,0.0811029 -34858,7601:227,-17,62,0,0,0.0848709 -34859,7601:226,-16,62,0,0,0.0862291 -34860,7601:225,-15,62,0,0,0.087173 -34861,7601:124,-14,62,0,0,0.0886723 -34862,7601:123,-13,62,0,0,0.0909143 -34863,7601:122,-12,62,0,0,0.0928777 -34864,7601:121,-11,62,0,0,0.0933288 -34865,7601:120,-10,62,0,0,0.0938432 -34866,7600:229,-9,62,0,0,0.0978763 -34867,7600:228,-8,62,0,0,0.117942 -34868,7600:227,-7,62,0,0,0.135591 -34869,7600:226,-6,62,0,0,0.140035 -34870,7600:225,-5,62,0,0,0.15327 -34871,7600:124,-4,62,0,0,0.150964 -34872,7600:123,-3,62,0,0,0.151942 -34873,7600:122,-2,62,0,0,0.159891 -34874,7600:121,-1,62,0,0,0.167313 -34875,1600:121,0,62,0,0,0.177244 -34876,1600:121,1,62,0,0,0.180412 -34877,1600:122,2,62,0,0,0.177499 -34878,1600:123,3,62,0,0,0.179503 -34879,1600:124,4,62,0,0,0.177859 -34880,1601:226,16,62,0,0,0.0957918 -34881,1601:227,17,62,0,0,0.102706 -34882,1601:228,18,62,0,0,0.0983127 -34883,1601:229,19,62,0,0,0.0982763 -34884,1602:120,20,62,0,0,0.104087 -34885,1602:121,21,62,0,0,0.10448 -34886,1614:226,146,62,0,0,0.0821581 -34887,1614:227,147,62,0,0,0.0819182 -34888,1614:229,149,62,0,0,0.0811871 -34889,1615:120,150,62,0,0,0.0805531 -34890,1615:121,151,62,0,0,0.0802492 -34891,1615:122,152,62,0,0,0.0801509 -34892,1615:123,153,62,0,0,0.0802872 -34893,1615:124,154,62,0,0,0.0807207 -34894,1615:226,156,62,0,0,0.0807056 -34895,1615:227,157,62,0,0,0.0805531 -34896,1615:228,158,62,0,0,0.0803025 -34897,1615:229,159,62,0,0,0.0800525 -34898,1616:120,160,62,0,0,0.07969 -34899,1616:121,161,62,0,0,0.0793666 -34900,1616:122,162,62,0,0,0.0792165 -34901,1616:123,163,62,0,0,0.0787009 -34902,1616:124,164,62,0,0,0.0781514 -34903,1616:225,165,62,0,0,0.0777232 -34904,1616:226,166,62,0,0,0.0774365 -34905,1616:227,167,62,0,0,0.0772166 -34906,1616:228,168,62,0,0,0.077063 -34907,1616:229,169,62,0,0,0.0769534 -34908,1617:120,170,62,0,0,0.0768732 -34909,1617:121,171,62,0,0,0.0768221 -34910,1617:122,172,62,0,0,0.0767858 -34911,1617:123,173,62,0,0,0.0767567 -34912,1617:124,174,62,0,0,0.0767203 -34913,1617:225,175,62,0,0,0.0766839 -34914,1617:226,176,62,0,0,0.0766401 -34915,1617:227,177,62,0,0,0.0765967 -34916,1617:228,178,62,0,0,0.076415 -34917,1617:229,179,62,0,0,0.0763716 -34918,1618:120,180,62,0,0,0.0766839 -34919,7618:130,-180,63,0,0,0.0764006 -34920,7617:239,-179,63,0,0,0.0763427 -34921,7617:238,-178,63,0,0,0.0765676 -34922,7617:237,-177,63,0,0,0.077224 -34923,7617:236,-176,63,0,0,0.0773924 -34924,7617:235,-175,63,0,0,0.077297 -34925,7617:134,-174,63,0,0,0.0771507 -34926,7617:133,-173,63,0,0,0.0773263 -34927,7617:132,-172,63,0,0,0.0774584 -34928,7617:131,-171,63,0,0,0.077224 -34929,7617:130,-170,63,0,0,0.0770996 -34930,7616:239,-169,63,0,0,0.0770264 -34931,7616:238,-168,63,0,0,0.0767929 -34932,7616:237,-167,63,0,0,0.0767929 -34933,7616:236,-166,63,0,0,0.0769315 -34934,7616:235,-165,63,0,0,0.077224 -34935,7616:134,-164,63,0,0,0.0771067 -34936,7616:133,-163,63,0,0,0.0772751 -34937,7616:132,-162,63,0,0,0.0773559 -34938,7616:131,-161,63,0,0,0.0773924 -34939,7616:130,-160,63,0,0,0.0773411 -34940,7615:239,-159,63,0,0,0.0773118 -34941,7615:238,-158,63,0,0,0.0773192 -34942,7615:237,-157,63,0,0,0.0773704 -34943,7615:236,-156,63,0,0,0.0773998 -34944,7615:235,-155,63,0,0,0.0775026 -34945,7615:133,-153,63,0,0,0.0783218 -34946,7607:133,-73,63,0,0,0.0780035 -34947,7606:237,-67,63,0,0,0.0767274 -34948,7606:236,-66,63,0,0,0.0768076 -34949,7606:235,-65,63,0,0,0.0763137 -34950,7606:134,-64,63,0,0,0.0763137 -34951,7606:133,-63,63,0,0,0.0767274 -34952,7606:132,-62,63,0,0,0.0762775 -34953,7606:131,-61,63,0,0,0.0771799 -34954,7605:134,-54,63,0,0,0.076713 -34955,7605:133,-53,63,0,0,0.0762413 -34956,7605:132,-52,63,0,0,0.0760606 -34957,7605:131,-51,63,0,0,0.0762267 -34958,7605:130,-50,63,0,0,0.076386 -34959,7604:239,-49,63,0,0,0.076205 -34960,7604:238,-48,63,0,0,0.0762775 -34961,7604:237,-47,63,0,0,0.0784555 -34962,7604:236,-46,63,0,0,0.0791566 -34963,7604:235,-45,63,0,0,0.0782775 -34964,7604:134,-44,63,0,0,0.0770996 -34965,7602:132,-22,63,0,0,0.0762123 -34966,7602:131,-21,63,0,0,0.0761545 -34967,7602:130,-20,63,0,0,0.0762558 -34968,7601:239,-19,63,0,0,0.0759811 -34969,7601:238,-18,63,0,0,0.0771433 -34970,7601:237,-17,63,0,0,0.0854633 -34971,7601:236,-16,63,0,0,0.093103 -34972,7601:235,-15,63,0,0,0.08764 -34973,7601:134,-14,63,0,0,0.0888884 -34974,7601:133,-13,63,0,0,0.091212 -34975,7601:132,-12,63,0,0,0.0926961 -34976,7601:131,-11,63,0,0,0.094395 -34977,7601:130,-10,63,0,0,0.0939392 -34978,7600:239,-9,63,0,0,0.0994388 -34979,7600:238,-8,63,0,0,0.124676 -34980,7600:237,-7,63,0,0,0.147301 -34981,7600:236,-6,63,0,0,0.151743 -34982,7600:235,-5,63,0,0,0.1543 -34983,7600:134,-4,63,0,0,0.163329 -34984,7600:133,-3,63,0,0,0.168246 -34985,7600:132,-2,63,0,0,0.173147 -34986,7600:131,-1,63,0,0,0.176929 -34987,1600:131,0,63,0,0,0.175127 -34988,1600:131,1,63,0,0,0.174252 -34989,1600:132,2,63,0,0,0.173102 -34990,1600:133,3,63,0,0,0.1679 -34991,1600:134,4,63,0,0,0.176257 -34992,1600:235,5,63,0,0,0.165219 -34993,1602:130,20,63,0,0,0.109456 -34994,1602:131,21,63,0,0,0.10735 -34995,1614:237,147,63,0,0,0.0827254 -34996,1614:238,148,63,0,0,0.0820496 -34997,1614:239,149,63,0,0,0.0812254 -34998,1615:130,150,63,0,0,0.0808122 -34999,1615:131,151,63,0,0,0.0803479 -35000,1615:132,152,63,0,0,0.0801204 -35001,1615:133,153,63,0,0,0.0801812 -35002,1615:134,154,63,0,0,0.0804392 -35003,1615:235,155,63,0,0,0.0803479 -35004,1615:236,156,63,0,0,0.0803935 -35005,1615:237,157,63,0,0,0.0803101 -35006,1615:238,158,63,0,0,0.0798256 -35007,1616:131,161,63,0,0,0.0787755 -35008,1616:132,162,63,0,0,0.0782255 -35009,1616:133,163,63,0,0,0.0778634 -35010,1616:134,164,63,0,0,0.0776127 -35011,1616:235,165,63,0,0,0.0773485 -35012,1616:236,166,63,0,0,0.0770996 -35013,1616:237,167,63,0,0,0.0769024 -35014,1616:238,168,63,0,0,0.0767347 -35015,1616:239,169,63,0,0,0.0765967 -35016,1617:130,170,63,0,0,0.0765457 -35017,1617:131,171,63,0,0,0.0765384 -35018,1617:132,172,63,0,0,0.0766184 -35019,1617:133,173,63,0,0,0.0766328 -35020,1617:134,174,63,0,0,0.0765967 -35021,1617:235,175,63,0,0,0.0765603 -35022,1617:236,176,63,0,0,0.0765457 -35023,1617:237,177,63,0,0,0.0765384 -35024,1617:238,178,63,0,0,0.0765384 -35025,1617:239,179,63,0,0,0.0764803 -35026,1618:130,180,63,0,0,0.0764006 -35027,7618:140,-180,64,0,0,0.0764369 -35028,7617:249,-179,64,0,0,0.0763643 -35029,7617:248,-178,64,0,0,0.076386 -35030,7617:247,-177,64,0,0,0.0767347 -35031,7617:246,-176,64,0,0,0.0765384 -35032,7617:245,-175,64,0,0,0.0767274 -35033,7617:144,-174,64,0,0,0.0771141 -35034,7617:143,-173,64,0,0,0.0772166 -35035,7617:142,-172,64,0,0,0.0769825 -35036,7617:141,-171,64,0,0,0.0767274 -35037,7617:140,-170,64,0,0,0.076582 -35038,7616:249,-169,64,0,0,0.0765967 -35039,7616:248,-168,64,0,0,0.0766401 -35040,7616:247,-167,64,0,0,0.0766621 -35041,7616:246,-166,64,0,0,0.0766765 -35042,7616:245,-165,64,0,0,0.0767347 -35043,7616:144,-164,64,0,0,0.0766765 -35044,7616:143,-163,64,0,0,0.0767494 -35045,7616:142,-162,64,0,0,0.0767858 -35046,7616:141,-161,64,0,0,0.0769315 -35047,7616:140,-160,64,0,0,0.0770409 -35048,7615:249,-159,64,0,0,0.0770191 -35049,7615:248,-158,64,0,0,0.0768514 -35050,7615:247,-157,64,0,0,0.076742 -35051,7615:246,-156,64,0,0,0.0766475 -35052,7615:245,-155,64,0,0,0.0767347 -35053,7615:144,-154,64,0,0,0.0772311 -35054,7615:143,-153,64,0,0,0.0774365 -35055,7615:142,-152,64,0,0,0.0785446 -35056,7606:247,-67,64,0,0,0.0763354 -35057,7606:246,-66,64,0,0,0.0765022 -35058,7606:245,-65,64,0,0,0.0768441 -35059,7606:144,-64,64,0,0,0.076524 -35060,7606:142,-62,64,0,0,0.0765457 -35061,7605:245,-55,64,0,0,0.0766765 -35062,7605:144,-54,64,0,0,0.0764586 -35063,7605:143,-53,64,0,0,0.0761111 -35064,7605:142,-52,64,0,0,0.0759595 -35065,7605:141,-51,64,0,0,0.07614 -35066,7605:140,-50,64,0,0,0.0763281 -35067,7604:249,-49,64,0,0,0.0761978 -35068,7604:248,-48,64,0,0,0.0760679 -35069,7604:247,-47,64,0,0,0.0766548 -35070,7604:246,-46,64,0,0,0.0767638 -35071,7604:245,-45,64,0,0,0.0774071 -35072,7604:144,-44,64,0,0,0.0777158 -35073,7602:143,-23,64,0,0,0.0766038 -35074,7602:141,-21,64,0,0,0.0762702 -35075,7602:140,-20,64,0,0,0.0760895 -35076,7601:249,-19,64,0,0,0.0759234 -35077,7601:248,-18,64,0,0,0.0760317 -35078,7601:247,-17,64,0,0,0.0765603 -35079,7601:246,-16,64,0,0,0.0865699 -35080,7601:245,-15,64,0,0,0.0984587 -35081,7601:144,-14,64,0,0,0.0918614 -35082,7601:143,-13,64,0,0,0.101772 -35083,7601:142,-12,64,0,0,0.104039 -35084,7601:141,-11,64,0,0,0.103934 -35085,7601:140,-10,64,0,0,0.101706 -35086,7600:249,-9,64,0,0,0.112548 -35087,7600:248,-8,64,0,0,0.130437 -35088,7600:247,-7,64,0,0,0.138924 -35089,7600:246,-6,64,0,0,0.147689 -35090,7600:245,-5,64,0,0,0.14712 -35091,7600:144,-4,64,0,0,0.157886 -35092,7600:143,-3,64,0,0,0.171082 -35093,7600:142,-2,64,0,0,0.160818 -35094,7600:141,-1,64,0,0,0.163301 -35095,1600:141,0,64,0,0,0.167313 -35096,1600:141,1,64,0,0,0.166755 -35097,1600:142,2,64,0,0,0.160596 -35098,1600:143,3,64,0,0,0.163273 -35099,1600:144,4,64,0,0,0.167929 -35100,1600:245,5,64,0,0,0.174134 -35101,1600:246,6,64,0,0,0.172442 -35102,1601:140,10,64,0,0,0.160915 -35103,1602:141,21,64,0,0,0.104259 -35104,1614:248,148,64,0,0,0.0816251 -35105,1614:249,149,64,0,0,0.0802721 -35106,1615:140,150,64,0,0,0.0800599 -35107,1615:141,151,64,0,0,0.0803708 -35108,1615:142,152,64,0,0,0.0799088 -35109,1615:143,153,64,0,0,0.0797277 -35110,1615:248,158,64,0,0,0.0788053 -35111,1615:249,159,64,0,0,0.0786116 -35112,1616:140,160,64,0,0,0.0785446 -35113,1616:141,161,64,0,0,0.0782922 -35114,1616:142,162,64,0,0,0.0777747 -35115,1616:143,163,64,0,0,0.0772825 -35116,1616:144,164,64,0,0,0.0770775 -35117,1616:245,165,64,0,0,0.0769168 -35118,1616:246,166,64,0,0,0.0766621 -35119,1616:247,167,64,0,0,0.076415 -35120,1616:248,168,64,0,0,0.076234 -35121,1616:249,169,64,0,0,0.0761907 -35122,1617:140,170,64,0,0,0.0762702 -35123,1617:141,171,64,0,0,0.0763208 -35124,1617:142,172,64,0,0,0.0763643 -35125,1617:143,173,64,0,0,0.076415 -35126,1617:144,174,64,0,0,0.0764442 -35127,1617:245,175,64,0,0,0.0764659 -35128,1617:246,176,64,0,0,0.0765166 -35129,1617:247,177,64,0,0,0.0765313 -35130,1617:248,178,64,0,0,0.076524 -35131,1617:249,179,64,0,0,0.0764876 -35132,1618:140,180,64,0,0,0.0764369 -35133,7618:350,-180,65,0,0,0.0763643 -35134,7617:459,-179,65,0,0,0.0763281 -35135,7617:458,-178,65,0,0,0.0762702 -35136,7617:457,-177,65,0,0,0.0762702 -35137,7617:456,-176,65,0,0,0.0762558 -35138,7617:455,-175,65,0,0,0.0765893 -35139,7617:354,-174,65,0,0,0.0768149 -35140,7617:353,-173,65,0,0,0.0767858 -35141,7617:352,-172,65,0,0,0.0766184 -35142,7617:351,-171,65,0,0,0.0764586 -35143,7617:350,-170,65,0,0,0.0765384 -35144,7616:459,-169,65,0,0,0.076713 -35145,7616:458,-168,65,0,0,0.0767494 -35146,7616:457,-167,65,0,0,0.0766184 -35147,7616:456,-166,65,0,0,0.0766548 -35148,7616:455,-165,65,0,0,0.0766912 -35149,7616:354,-164,65,0,0,0.0767494 -35150,7616:353,-163,65,0,0,0.0767638 -35151,7616:352,-162,65,0,0,0.0768003 -35152,7616:351,-161,65,0,0,0.0766983 -35153,7616:350,-160,65,0,0,0.0767494 -35154,7615:459,-159,65,0,0,0.0766983 -35155,7615:458,-158,65,0,0,0.0765166 -35156,7615:457,-157,65,0,0,0.0764006 -35157,7615:456,-156,65,0,0,0.076386 -35158,7615:455,-155,65,0,0,0.0765022 -35159,7615:354,-154,65,0,0,0.0769168 -35160,7615:353,-153,65,0,0,0.0771433 -35161,7615:352,-152,65,0,0,0.0776127 -35162,7606:354,-64,65,0,0,0.0767567 -35163,7606:351,-61,65,0,0,0.0768221 -35164,7605:456,-56,65,0,0,0.0767274 -35165,7605:455,-55,65,0,0,0.0768003 -35166,7605:354,-54,65,0,0,0.0764803 -35167,7605:353,-53,65,0,0,0.0760317 -35168,7605:352,-52,65,0,0,0.0761834 -35169,7605:351,-51,65,0,0,0.0762629 -35170,7605:350,-50,65,0,0,0.0763064 -35171,7604:459,-49,65,0,0,0.0762485 -35172,7604:458,-48,65,0,0,0.076039 -35173,7604:457,-47,65,0,0,0.0760317 -35174,7604:456,-46,65,0,0,0.0761978 -35175,7604:455,-45,65,0,0,0.0763571 -35176,7604:354,-44,65,0,0,0.0768076 -35177,7604:353,-43,65,0,0,0.0755352 -35178,7602:351,-21,65,0,0,0.076234 -35179,7602:350,-20,65,0,0,0.0760099 -35180,7601:459,-19,65,0,0,0.0759379 -35181,7601:458,-18,65,0,0,0.0759595 -35182,7601:457,-17,65,0,0,0.0760749 -35183,7601:456,-16,65,0,0,0.0771141 -35184,7601:455,-15,65,0,0,0.0997334 -35185,7601:354,-14,65,0,0,0.112219 -35186,7601:353,-13,65,0,0,0.107311 -35187,7601:352,-12,65,0,0,0.104808 -35188,7601:351,-11,65,0,0,0.10738 -35189,7601:350,-10,65,0,0,0.117632 -35190,7600:459,-9,65,0,0,0.125102 -35191,7600:458,-8,65,0,0,0.130484 -35192,7600:457,-7,65,0,0,0.138164 -35193,7600:456,-6,65,0,0,0.150557 -35194,7600:455,-5,65,0,0,0.154246 -35195,7600:354,-4,65,0,0,0.159766 -35196,7600:353,-3,65,0,0,0.158762 -35197,7600:352,-2,65,0,0,0.139985 -35198,7600:351,-1,65,0,0,0.13863 -35199,1600:351,0,65,0,0,0.131842 -35200,1600:351,1,65,0,0,0.13996 -35201,1600:352,2,65,0,0,0.151044 -35202,1600:353,3,65,0,0,0.15715 -35203,1600:354,4,65,0,0,0.153177 -35204,1600:455,5,65,0,0,0.164399 -35205,1600:456,6,65,0,0,0.16347 -35206,1600:457,7,65,0,0,0.161456 -35207,1600:458,8,65,0,0,0.161777 -35208,1600:459,9,65,0,0,0.16637 -35209,1601:350,10,65,0,0,0.162111 -35210,1601:351,11,65,0,0,0.159546 -35211,1601:352,12,65,0,0,0.156837 -35212,1601:353,13,65,0,0,0.151875 -35213,1602:350,20,65,0,0,0.104759 -35214,1602:351,21,65,0,0,0.0974781 -35215,1614:457,147,65,0,0,0.0811335 -35216,1614:458,148,65,0,0,0.079705 -35217,1614:459,149,65,0,0,0.0790967 -35218,1615:350,150,65,0,0,0.0787905 -35219,1615:351,151,65,0,0,0.079532 -35220,1615:352,152,65,0,0,0.079705 -35221,1615:353,153,65,0,0,0.0795469 -35222,1615:457,157,65,0,0,0.0783665 -35223,1615:458,158,65,0,0,0.0781737 -35224,1615:459,159,65,0,0,0.0780184 -35225,1616:350,160,65,0,0,0.0777232 -35226,1616:351,161,65,0,0,0.0774145 -35227,1616:352,162,65,0,0,0.0771067 -35228,1616:353,163,65,0,0,0.0768514 -35229,1616:354,164,65,0,0,0.0766111 -35230,1616:455,165,65,0,0,0.076386 -35231,1616:456,166,65,0,0,0.0761907 -35232,1616:457,167,65,0,0,0.0760533 -35233,1616:458,168,65,0,0,0.0760749 -35234,1616:459,169,65,0,0,0.07614 -35235,1617:350,170,65,0,0,0.0762123 -35236,1617:351,171,65,0,0,0.0762775 -35237,1617:352,172,65,0,0,0.07635 -35238,1617:353,173,65,0,0,0.0764079 -35239,1617:354,174,65,0,0,0.0764732 -35240,1617:455,175,65,0,0,0.0765022 -35241,1617:456,176,65,0,0,0.0765022 -35242,1617:457,177,65,0,0,0.0765093 -35243,1617:458,178,65,0,0,0.0764659 -35244,1617:459,179,65,0,0,0.0764296 -35245,1618:350,180,65,0,0,0.0763643 -35246,7618:360,-180,66,0,0,0.0764223 -35247,7617:469,-179,66,0,0,0.0763571 -35248,7617:468,-178,66,0,0,0.0763208 -35249,7617:467,-177,66,0,0,0.0763064 -35250,7617:466,-176,66,0,0,0.0762991 -35251,7617:465,-175,66,0,0,0.0764732 -35252,7617:364,-174,66,0,0,0.0765457 -35253,7617:363,-173,66,0,0,0.076582 -35254,7617:362,-172,66,0,0,0.0765676 -35255,7617:361,-171,66,0,0,0.0765967 -35256,7617:360,-170,66,0,0,0.0766839 -35257,7616:469,-169,66,0,0,0.0766839 -35258,7616:468,-168,66,0,0,0.0768149 -35259,7616:467,-167,66,0,0,0.0768732 -35260,7616:466,-166,66,0,0,0.0768732 -35261,7616:465,-165,66,0,0,0.0768877 -35262,7616:364,-164,66,0,0,0.0769607 -35263,7616:363,-163,66,0,0,0.0770117 -35264,7616:362,-162,66,0,0,0.0769462 -35265,7616:361,-161,66,0,0,0.0767785 -35266,7616:360,-160,66,0,0,0.0766401 -35267,7615:469,-159,66,0,0,0.076553 -35268,7615:468,-158,66,0,0,0.0764586 -35269,7615:467,-157,66,0,0,0.076386 -35270,7615:466,-156,66,0,0,0.0763427 -35271,7615:465,-155,66,0,0,0.0763427 -35272,7615:364,-154,66,0,0,0.0764223 -35273,7615:363,-153,66,0,0,0.0767274 -35274,7615:362,-152,66,0,0,0.0767858 -35275,7615:361,-151,66,0,0,0.0773044 -35276,7615:360,-150,66,0,0,0.0774145 -35277,7607:362,-72,66,0,0,0.0779814 -35278,7607:361,-71,66,0,0,0.077679 -35279,7607:360,-70,66,0,0,0.0775246 -35280,7606:364,-64,66,0,0,0.0773411 -35281,7606:363,-63,66,0,0,0.0762267 -35282,7605:465,-55,66,0,0,0.0769534 -35283,7605:364,-54,66,0,0,0.0764949 -35284,7605:363,-53,66,0,0,0.0760679 -35285,7605:362,-52,66,0,0,0.0760606 -35286,7605:361,-51,66,0,0,0.0761111 -35287,7605:360,-50,66,0,0,0.0761256 -35288,7604:469,-49,66,0,0,0.0761256 -35289,7604:468,-48,66,0,0,0.076039 -35290,7604:467,-47,66,0,0,0.0761111 -35291,7604:466,-46,66,0,0,0.0766038 -35292,7604:465,-45,66,0,0,0.0764876 -35293,7604:364,-44,66,0,0,0.0767785 -35294,7604:363,-43,66,0,0,0.0771873 -35295,7602:362,-22,66,0,0,0.0766765 -35296,7602:361,-21,66,0,0,0.0761472 -35297,7602:360,-20,66,0,0,0.0759379 -35298,7601:469,-19,66,0,0,0.0759091 -35299,7601:468,-18,66,0,0,0.0759019 -35300,7601:467,-17,66,0,0,0.0759668 -35301,7601:466,-16,66,0,0,0.0767929 -35302,7601:465,-15,66,0,0,0.086116 -35303,7601:364,-14,66,0,0,0.115937 -35304,7601:363,-13,66,0,0,0.113433 -35305,7601:362,-12,66,0,0,0.110239 -35306,7601:361,-11,66,0,0,0.116274 -35307,7601:360,-10,66,0,0,0.121154 -35308,7600:469,-9,66,0,0,0.137578 -35309,7600:468,-8,66,0,0,0.143409 -35310,7600:467,-7,66,0,0,0.145964 -35311,7600:466,-6,66,0,0,0.151809 -35312,7600:465,-5,66,0,0,0.153657 -35313,7600:364,-4,66,0,0,0.139738 -35314,7600:363,-3,66,0,0,0.131736 -35315,7600:362,-2,66,0,0,0.115139 -35316,7600:361,-1,66,0,0,0.130181 -35317,1600:361,0,66,0,0,0.132999 -35318,1600:361,1,66,0,0,0.13249 -35319,1600:362,2,66,0,0,0.138949 -35320,1600:363,3,66,0,0,0.15057 -35321,1600:364,4,66,0,0,0.150032 -35322,1600:465,5,66,0,0,0.146374 -35323,1600:466,6,66,0,0,0.152857 -35324,1600:467,7,66,0,0,0.148596 -35325,1600:468,8,66,0,0,0.156579 -35326,1600:469,9,66,0,0,0.156905 -35327,1601:360,10,66,0,0,0.146799 -35328,1601:361,11,66,0,0,0.142841 -35329,1601:362,12,66,0,0,0.141376 -35330,1601:363,13,66,0,0,0.133094 -35331,1601:364,14,66,0,0,0.133153 -35332,1601:465,15,66,0,0,0.1377 -35333,1601:466,16,66,0,0,0.138115 -35334,1601:467,17,66,0,0,0.130414 -35335,1601:468,18,66,0,0,0.118875 -35336,1601:469,19,66,0,0,0.116148 -35337,1602:360,20,66,0,0,0.101172 -35338,1602:361,21,66,0,0,0.0881591 -35339,1602:362,22,66,0,0,0.084013 -35340,1614:363,143,66,0,0,0.0793591 -35341,1614:364,144,66,0,0,0.0807131 -35342,1614:465,145,66,0,0,0.081548 -35343,1614:466,146,66,0,0,0.081034 -35344,1614:467,147,66,0,0,0.0804315 -35345,1614:468,148,66,0,0,0.0797277 -35346,1614:469,149,66,0,0,0.0791717 -35347,1615:360,150,66,0,0,0.0783144 -35348,1615:361,151,66,0,0,0.0781812 -35349,1615:362,152,66,0,0,0.0787905 -35350,1615:363,153,66,0,0,0.0794643 -35351,1615:364,154,66,0,0,0.0793139 -35352,1615:465,155,66,0,0,0.0789844 -35353,1615:466,156,66,0,0,0.0787084 -35354,1615:467,157,66,0,0,0.078218 -35355,1615:468,158,66,0,0,0.0776864 -35356,1615:469,159,66,0,0,0.077363 -35357,1616:360,160,66,0,0,0.0770849 -35358,1616:361,161,66,0,0,0.0767712 -35359,1616:362,162,66,0,0,0.0764803 -35360,1616:363,163,66,0,0,0.0762918 -35361,1616:364,164,66,0,0,0.0761834 -35362,1616:465,165,66,0,0,0.0760967 -35363,1616:466,166,66,0,0,0.076039 -35364,1616:467,167,66,0,0,0.0760895 -35365,1616:468,168,66,0,0,0.0761761 -35366,1616:469,169,66,0,0,0.0762123 -35367,1617:360,170,66,0,0,0.0762413 -35368,1617:361,171,66,0,0,0.0762991 -35369,1617:362,172,66,0,0,0.0763643 -35370,1617:363,173,66,0,0,0.0764296 -35371,1617:364,174,66,0,0,0.0764732 -35372,1617:465,175,66,0,0,0.0764513 -35373,1617:466,176,66,0,0,0.0764513 -35374,1617:467,177,66,0,0,0.0764513 -35375,1617:468,178,66,0,0,0.0764513 -35376,1617:469,179,66,0,0,0.0764659 -35377,1618:360,180,66,0,0,0.0764223 -35378,7618:370,-180,67,0,0,0.0764803 -35379,7617:479,-179,67,0,0,0.0764732 -35380,7617:478,-178,67,0,0,0.0764369 -35381,7617:477,-177,67,0,0,0.076386 -35382,7617:476,-176,67,0,0,0.0763933 -35383,7617:475,-175,67,0,0,0.0763789 -35384,7617:374,-174,67,0,0,0.0765313 -35385,7617:373,-173,67,0,0,0.0766475 -35386,7617:372,-172,67,0,0,0.0766621 -35387,7617:371,-171,67,0,0,0.0766692 -35388,7617:370,-170,67,0,0,0.0767494 -35389,7616:479,-169,67,0,0,0.0767567 -35390,7616:478,-168,67,0,0,0.0767494 -35391,7616:477,-167,67,0,0,0.0767567 -35392,7616:476,-166,67,0,0,0.0767347 -35393,7616:475,-165,67,0,0,0.076742 -35394,7616:374,-164,67,0,0,0.0768294 -35395,7616:373,-163,67,0,0,0.0769534 -35396,7616:372,-162,67,0,0,0.0770117 -35397,7616:371,-161,67,0,0,0.0769024 -35398,7616:370,-160,67,0,0,0.076713 -35399,7615:479,-159,67,0,0,0.0765603 -35400,7615:478,-158,67,0,0,0.0764586 -35401,7615:477,-157,67,0,0,0.076415 -35402,7615:476,-156,67,0,0,0.0763716 -35403,7615:475,-155,67,0,0,0.0763571 -35404,7615:374,-154,67,0,0,0.07635 -35405,7615:373,-153,67,0,0,0.0763354 -35406,7615:372,-152,67,0,0,0.076553 -35407,7615:371,-151,67,0,0,0.076553 -35408,7615:370,-150,67,0,0,0.0761472 -35409,7607:370,-70,67,0,0,0.0771873 -35410,7606:479,-69,67,0,0,0.0773118 -35411,7606:478,-68,67,0,0,0.0775539 -35412,7606:475,-65,67,0,0,0.077797 -35413,7605:475,-55,67,0,0,0.0768585 -35414,7605:374,-54,67,0,0,0.0766912 -35415,7605:373,-53,67,0,0,0.0765022 -35416,7605:372,-52,67,0,0,0.0761183 -35417,7605:371,-51,67,0,0,0.0761111 -35418,7605:370,-50,67,0,0,0.0760533 -35419,7604:479,-49,67,0,0,0.076039 -35420,7604:478,-48,67,0,0,0.0759523 -35421,7604:477,-47,67,0,0,0.0764296 -35422,7604:476,-46,67,0,0,0.0769242 -35423,7604:475,-45,67,0,0,0.0768076 -35424,7604:374,-44,67,0,0,0.0771288 -35425,7604:373,-43,67,0,0,0.0761545 -35426,7602:373,-23,67,0,0,0.0771433 -35427,7602:371,-21,67,0,0,0.0762991 -35428,7602:370,-20,67,0,0,0.0760099 -35429,7601:479,-19,67,0,0,0.0759595 -35430,7601:478,-18,67,0,0,0.075974 -35431,7601:477,-17,67,0,0,0.0759523 -35432,7601:476,-16,67,0,0,0.0771726 -35433,7601:475,-15,67,0,0,0.103228 -35434,7601:374,-14,67,0,0,0.118864 -35435,7601:373,-13,67,0,0,0.115758 -35436,7601:372,-12,67,0,0,0.128872 -35437,7601:371,-11,67,0,0,0.133771 -35438,7601:370,-10,67,0,0,0.138998 -35439,7600:479,-9,67,0,0,0.141226 -35440,7600:478,-8,67,0,0,0.145082 -35441,7600:477,-7,67,0,0,0.1459 -35442,7600:476,-6,67,0,0,0.141813 -35443,7600:475,-5,67,0,0,0.135182 -35444,7600:374,-4,67,0,0,0.12123 -35445,7600:373,-3,67,0,0,0.106467 -35446,7600:372,-2,67,0,0,0.0980218 -35447,7600:371,-1,67,0,0,0.108736 -35448,1600:371,0,67,0,0,0.127437 -35449,1600:371,1,67,0,0,0.13505 -35450,1600:372,2,67,0,0,0.137529 -35451,1600:373,3,67,0,0,0.147069 -35452,1600:374,4,67,0,0,0.147198 -35453,1600:475,5,67,0,0,0.14451 -35454,1600:476,6,67,0,0,0.135266 -35455,1600:477,7,67,0,0,0.137944 -35456,1600:478,8,67,0,0,0.142264 -35457,1600:479,9,67,0,0,0.140381 -35458,1601:370,10,67,0,0,0.135483 -35459,1601:371,11,67,0,0,0.128504 -35460,1601:372,12,67,0,0,0.126515 -35461,1601:373,13,67,0,0,0.126538 -35462,1601:374,14,67,0,0,0.126061 -35463,1601:475,15,67,0,0,0.125192 -35464,1601:476,16,67,0,0,0.13108 -35465,1601:477,17,67,0,0,0.119999 -35466,1601:478,18,67,0,0,0.103332 -35467,1601:479,19,67,0,0,0.0954098 -35468,1614:373,143,67,0,0,0.0783961 -35469,1614:374,144,67,0,0,0.0783218 -35470,1614:475,145,67,0,0,0.0786711 -35471,1614:476,146,67,0,0,0.0788203 -35472,1614:477,147,67,0,0,0.0786116 -35473,1614:478,148,67,0,0,0.0777675 -35474,1614:479,149,67,0,0,0.0782033 -35475,1615:370,150,67,0,0,0.0781367 -35476,1615:371,151,67,0,0,0.0777601 -35477,1615:372,152,67,0,0,0.0775981 -35478,1615:373,153,67,0,0,0.0775246 -35479,1615:374,154,67,0,0,0.0780552 -35480,1615:475,155,67,0,0,0.078048 -35481,1615:476,156,67,0,0,0.0775833 -35482,1615:477,157,67,0,0,0.0771067 -35483,1615:478,158,67,0,0,0.0768076 -35484,1615:479,159,67,0,0,0.0765457 -35485,1616:370,160,67,0,0,0.07635 -35486,1616:371,161,67,0,0,0.0762196 -35487,1616:372,162,67,0,0,0.0761038 -35488,1616:373,163,67,0,0,0.0760895 -35489,1616:374,164,67,0,0,0.0760822 -35490,1616:475,165,67,0,0,0.0760245 -35491,1616:476,166,67,0,0,0.0760317 -35492,1616:477,167,67,0,0,0.0761761 -35493,1616:478,168,67,0,0,0.0762413 -35494,1616:479,169,67,0,0,0.0762702 -35495,1617:370,170,67,0,0,0.0762702 -35496,1617:371,171,67,0,0,0.0763137 -35497,1617:372,172,67,0,0,0.0763789 -35498,1617:373,173,67,0,0,0.0764296 -35499,1617:374,174,67,0,0,0.0764369 -35500,1617:475,175,67,0,0,0.0764079 -35501,1617:476,176,67,0,0,0.0764006 -35502,1617:477,177,67,0,0,0.0764079 -35503,1617:478,178,67,0,0,0.0764296 -35504,1617:479,179,67,0,0,0.0764659 -35505,1618:370,180,67,0,0,0.0764803 -35506,7618:380,-180,68,0,0,0.0764803 -35507,7617:489,-179,68,0,0,0.0764949 -35508,7617:488,-178,68,0,0,0.0765022 -35509,7617:487,-177,68,0,0,0.0765022 -35510,7617:486,-176,68,0,0,0.0764732 -35511,7617:485,-175,68,0,0,0.0764876 -35512,7617:384,-174,68,0,0,0.0766111 -35513,7617:383,-173,68,0,0,0.0767274 -35514,7617:382,-172,68,0,0,0.076742 -35515,7617:381,-171,68,0,0,0.0767712 -35516,7617:380,-170,68,0,0,0.0768003 -35517,7616:489,-169,68,0,0,0.0767638 -35518,7616:488,-168,68,0,0,0.0766621 -35519,7616:487,-167,68,0,0,0.0766401 -35520,7616:486,-166,68,0,0,0.0766257 -35521,7616:485,-165,68,0,0,0.0766184 -35522,7616:384,-164,68,0,0,0.0766548 -35523,7616:383,-163,68,0,0,0.0767347 -35524,7616:382,-162,68,0,0,0.0767858 -35525,7616:381,-161,68,0,0,0.0767347 -35526,7616:380,-160,68,0,0,0.0766765 -35527,7615:489,-159,68,0,0,0.0766257 -35528,7615:488,-158,68,0,0,0.0765747 -35529,7615:487,-157,68,0,0,0.0765676 -35530,7615:486,-156,68,0,0,0.0765384 -35531,7615:485,-155,68,0,0,0.0764079 -35532,7615:384,-154,68,0,0,0.0763427 -35533,7615:383,-153,68,0,0,0.076415 -35534,7615:382,-152,68,0,0,0.0762775 -35535,7615:381,-151,68,0,0,0.07635 -35536,7615:380,-150,68,0,0,0.0759091 -35537,7614:489,-149,68,0,0,0.0755781 -35538,7606:489,-69,68,0,0,0.0771215 -35539,7606:488,-68,68,0,0,0.0772166 -35540,7606:487,-67,68,0,0,0.0774439 -35541,7606:486,-66,68,0,0,0.0775539 -35542,7605:487,-57,68,0,0,0.0769754 -35543,7605:384,-54,68,0,0,0.0765093 -35544,7605:383,-53,68,0,0,0.0764513 -35545,7605:382,-52,68,0,0,0.0760606 -35546,7605:381,-51,68,0,0,0.075974 -35547,7605:380,-50,68,0,0,0.0759379 -35548,7604:489,-49,68,0,0,0.0760679 -35549,7604:488,-48,68,0,0,0.0763137 -35550,7604:487,-47,68,0,0,0.0764442 -35551,7604:486,-46,68,0,0,0.077136 -35552,7604:485,-45,68,0,0,0.0772311 -35553,7602:382,-22,68,0,0,0.076415 -35554,7602:381,-21,68,0,0,0.0763789 -35555,7602:380,-20,68,0,0,0.0761545 -35556,7601:489,-19,68,0,0,0.0760317 -35557,7601:488,-18,68,0,0,0.0760172 -35558,7601:487,-17,68,0,0,0.0759307 -35559,7601:486,-16,68,0,0,0.0768441 -35560,7601:485,-15,68,0,0,0.0966047 -35561,7601:384,-14,68,0,0,0.125858 -35562,7601:383,-13,68,0,0,0.130881 -35563,7601:382,-12,68,0,0,0.1342 -35564,7601:381,-11,68,0,0,0.138323 -35565,7601:380,-10,68,0,0,0.137944 -35566,7600:489,-9,68,0,0,0.131349 -35567,7600:488,-8,68,0,0,0.123081 -35568,7600:485,-5,68,0,0,0.104923 -35569,7600:384,-4,68,0,0,0.117472 -35570,7600:383,-3,68,0,0,0.104808 -35571,7600:382,-2,68,0,0,0.0934331 -35572,7600:381,-1,68,0,0,0.104576 -35573,1600:381,0,68,0,0,0.121932 -35574,1600:381,1,68,0,0,0.130367 -35575,1600:382,2,68,0,0,0.136945 -35576,1600:383,3,68,0,0,0.140766 -35577,1600:384,4,68,0,0,0.135086 -35578,1600:485,5,68,0,0,0.141251 -35579,1600:486,6,68,0,0,0.132762 -35580,1600:487,7,68,0,0,0.126515 -35581,1600:488,8,68,0,0,0.125249 -35582,1600:489,9,68,0,0,0.116074 -35583,1601:380,10,68,0,0,0.109766 -35584,1601:381,11,68,0,0,0.110926 -35585,1601:382,12,68,0,0,0.117728 -35586,1601:383,13,68,0,0,0.123236 -35587,1601:384,14,68,0,0,0.120162 -35588,1601:485,15,68,0,0,0.122263 -35589,1601:486,16,68,0,0,0.123547 -35590,1601:487,17,68,0,0,0.105232 -35591,1601:488,18,68,0,0,0.0968831 -35592,1602:381,21,68,0,0,0.0781071 -35593,1602:382,22,68,0,0,0.0845602 -35594,1614:381,141,68,0,0,0.0786414 -35595,1614:382,142,68,0,0,0.0784333 -35596,1614:383,143,68,0,0,0.0781145 -35597,1614:384,144,68,0,0,0.0775833 -35598,1614:485,145,68,0,0,0.0769899 -35599,1614:486,146,68,0,0,0.0767638 -35600,1614:487,147,68,0,0,0.0767785 -35601,1614:488,148,68,0,0,0.0766983 -35602,1614:489,149,68,0,0,0.0766983 -35603,1615:380,150,68,0,0,0.0767347 -35604,1615:381,151,68,0,0,0.076713 -35605,1615:382,152,68,0,0,0.0766038 -35606,1615:383,153,68,0,0,0.076524 -35607,1615:384,154,68,0,0,0.0764803 -35608,1615:485,155,68,0,0,0.0764586 -35609,1615:486,156,68,0,0,0.0763933 -35610,1615:487,157,68,0,0,0.0763354 -35611,1615:488,158,68,0,0,0.0762702 -35612,1615:489,159,68,0,0,0.0761327 -35613,1616:380,160,68,0,0,0.0760245 -35614,1616:381,161,68,0,0,0.0759452 -35615,1616:382,162,68,0,0,0.0759307 -35616,1616:383,163,68,0,0,0.0759884 -35617,1616:384,164,68,0,0,0.0760099 -35618,1616:485,165,68,0,0,0.0759884 -35619,1616:486,166,68,0,0,0.0760172 -35620,1616:487,167,68,0,0,0.0761689 -35621,1616:488,168,68,0,0,0.0762702 -35622,1616:489,169,68,0,0,0.0762918 -35623,1617:380,170,68,0,0,0.0763064 -35624,1617:381,171,68,0,0,0.0763571 -35625,1617:382,172,68,0,0,0.0764006 -35626,1617:383,173,68,0,0,0.0764223 -35627,1617:384,174,68,0,0,0.076415 -35628,1617:485,175,68,0,0,0.0764006 -35629,1617:486,176,68,0,0,0.0764006 -35630,1617:487,177,68,0,0,0.0764006 -35631,1617:488,178,68,0,0,0.0764296 -35632,1617:489,179,68,0,0,0.0764659 -35633,1618:380,180,68,0,0,0.0764803 -35634,7618:390,-180,69,0,0,0.076524 -35635,7617:499,-179,69,0,0,0.0765313 -35636,7617:498,-178,69,0,0,0.0765313 -35637,7617:497,-177,69,0,0,0.0765603 -35638,7617:496,-176,69,0,0,0.0765893 -35639,7617:495,-175,69,0,0,0.0765603 -35640,7617:394,-174,69,0,0,0.0766257 -35641,7617:393,-173,69,0,0,0.0767494 -35642,7617:392,-172,69,0,0,0.0767638 -35643,7617:391,-171,69,0,0,0.0767347 -35644,7617:390,-170,69,0,0,0.0766839 -35645,7616:499,-169,69,0,0,0.0766257 -35646,7616:498,-168,69,0,0,0.0766038 -35647,7616:497,-167,69,0,0,0.0766328 -35648,7616:496,-166,69,0,0,0.0766257 -35649,7616:495,-165,69,0,0,0.0766184 -35650,7616:394,-164,69,0,0,0.0765893 -35651,7616:393,-163,69,0,0,0.0765457 -35652,7616:392,-162,69,0,0,0.0765166 -35653,7616:391,-161,69,0,0,0.0765457 -35654,7616:390,-160,69,0,0,0.076582 -35655,7615:499,-159,69,0,0,0.0765893 -35656,7615:498,-158,69,0,0,0.0766328 -35657,7615:497,-157,69,0,0,0.0766765 -35658,7615:496,-156,69,0,0,0.0766401 -35659,7615:495,-155,69,0,0,0.0765093 -35660,7615:394,-154,69,0,0,0.0763427 -35661,7615:393,-153,69,0,0,0.0765166 -35662,7615:392,-152,69,0,0,0.0764803 -35663,7615:391,-151,69,0,0,0.0763427 -35664,7615:390,-150,69,0,0,0.076524 -35665,7614:499,-149,69,0,0,0.0765022 -35666,7614:498,-148,69,0,0,0.0765893 -35667,7614:497,-147,69,0,0,0.0766184 -35668,7614:496,-146,69,0,0,0.0764079 -35669,7607:391,-71,69,0,0,0.0777084 -35670,7607:390,-70,69,0,0,0.0774071 -35671,7606:499,-69,69,0,0,0.0771873 -35672,7606:498,-68,69,0,0,0.0769607 -35673,7606:497,-67,69,0,0,0.0771067 -35674,7605:497,-57,69,0,0,0.0769607 -35675,7605:394,-54,69,0,0,0.0762775 -35676,7605:393,-53,69,0,0,0.0759091 -35677,7605:392,-52,69,0,0,0.0761978 -35678,7605:391,-51,69,0,0,0.0762629 -35679,7605:390,-50,69,0,0,0.0761183 -35680,7604:499,-49,69,0,0,0.076234 -35681,7604:498,-48,69,0,0,0.0763354 -35682,7604:497,-47,69,0,0,0.0766475 -35683,7602:391,-21,69,0,0,0.0763354 -35684,7602:390,-20,69,0,0,0.0761327 -35685,7601:499,-19,69,0,0,0.0760749 -35686,7601:498,-18,69,0,0,0.0760967 -35687,7601:497,-17,69,0,0,0.0759668 -35688,7601:496,-16,69,0,0,0.0777747 -35689,7601:495,-15,69,0,0,0.108647 -35690,7601:394,-14,69,0,0,0.10637 -35691,7601:393,-13,69,0,0,0.116369 -35692,7601:392,-12,69,0,0,0.123414 -35693,7601:391,-11,69,0,0,0.12863 -35694,7600:496,-6,69,0,0,0.0882168 -35695,7600:495,-5,69,0,0,0.0864561 -35696,7600:394,-4,69,0,0,0.0860432 -35697,7600:393,-3,69,0,0,0.0975774 -35698,7600:392,-2,69,0,0,0.0852147 -35699,7600:391,-1,69,0,0,0.111109 -35700,1600:391,0,69,0,0,0.120227 -35701,1600:391,1,69,0,0,0.127838 -35702,1600:392,2,69,0,0,0.134918 -35703,1600:393,3,69,0,0,0.125779 -35704,1600:394,4,69,0,0,0.117036 -35705,1600:495,5,69,0,0,0.13268 -35706,1600:496,6,69,0,0,0.127106 -35707,1600:497,7,69,0,0,0.116232 -35708,1600:498,8,69,0,0,0.118413 -35709,1600:499,9,69,0,0,0.111058 -35710,1601:390,10,69,0,0,0.105736 -35711,1601:391,11,69,0,0,0.111546 -35712,1601:392,12,69,0,0,0.117942 -35713,1601:393,13,69,0,0,0.121012 -35714,1601:394,14,69,0,0,0.112815 -35715,1601:495,15,69,0,0,0.111862 -35716,1601:496,16,69,0,0,0.115916 -35717,1601:497,17,69,0,0,0.114148 -35718,1601:498,18,69,0,0,0.105107 -35719,1601:499,19,69,0,0,0.104442 -35720,1602:390,20,69,0,0,0.0981308 -35721,1602:391,21,69,0,0,0.0957386 -35722,1614:391,141,69,0,0,0.0797503 -35723,1614:392,142,69,0,0,0.0793366 -35724,1614:393,143,69,0,0,0.0778116 -35725,1614:394,144,69,0,0,0.0769097 -35726,1614:495,145,69,0,0,0.0767567 -35727,1614:496,146,69,0,0,0.0769024 -35728,1614:497,147,69,0,0,0.0771215 -35729,1614:498,148,69,0,0,0.0772092 -35730,1614:499,149,69,0,0,0.0769973 -35731,1615:390,150,69,0,0,0.0766548 -35732,1615:391,151,69,0,0,0.0764659 -35733,1615:392,152,69,0,0,0.0765093 -35734,1615:393,153,69,0,0,0.0765384 -35735,1615:394,154,69,0,0,0.0765093 -35736,1615:495,155,69,0,0,0.0763933 -35737,1615:496,156,69,0,0,0.0761978 -35738,1615:497,157,69,0,0,0.0760895 -35739,1615:498,158,69,0,0,0.0759811 -35740,1615:499,159,69,0,0,0.0758586 -35741,1616:390,160,69,0,0,0.0758225 -35742,1616:391,161,69,0,0,0.075837 -35743,1616:392,162,69,0,0,0.0758946 -35744,1616:393,163,69,0,0,0.0759452 -35745,1616:394,164,69,0,0,0.0760029 -35746,1616:495,165,69,0,0,0.0760679 -35747,1616:496,166,69,0,0,0.0761472 -35748,1616:497,167,69,0,0,0.0762485 -35749,1616:498,168,69,0,0,0.0762702 -35750,1616:499,169,69,0,0,0.0762775 -35751,1617:390,170,69,0,0,0.0762991 -35752,1617:391,171,69,0,0,0.0763208 -35753,1617:392,172,69,0,0,0.0763643 -35754,1617:393,173,69,0,0,0.0763933 -35755,1617:394,174,69,0,0,0.076386 -35756,1617:495,175,69,0,0,0.0763933 -35757,1617:496,176,69,0,0,0.076415 -35758,1617:497,177,69,0,0,0.0764442 -35759,1617:498,178,69,0,0,0.0764949 -35760,1617:499,179,69,0,0,0.0765093 -35761,1618:390,180,69,0,0,0.076524 -35762,7718:100,-180,70,0,0,0.0765747 -35763,7717:209,-179,70,0,0,0.0765747 -35764,7717:208,-178,70,0,0,0.0765893 -35765,7717:207,-177,70,0,0,0.0766257 -35766,7717:206,-176,70,0,0,0.0766401 -35767,7717:205,-175,70,0,0,0.0766401 -35768,7717:104,-174,70,0,0,0.0766621 -35769,7717:103,-173,70,0,0,0.076713 -35770,7717:102,-172,70,0,0,0.0766839 -35771,7717:101,-171,70,0,0,0.0766475 -35772,7717:100,-170,70,0,0,0.0766328 -35773,7716:209,-169,70,0,0,0.0766111 -35774,7716:208,-168,70,0,0,0.0765747 -35775,7716:207,-167,70,0,0,0.0766038 -35776,7716:206,-166,70,0,0,0.0766401 -35777,7716:205,-165,70,0,0,0.0766184 -35778,7716:104,-164,70,0,0,0.0765967 -35779,7716:103,-163,70,0,0,0.0765166 -35780,7716:102,-162,70,0,0,0.0764876 -35781,7716:101,-161,70,0,0,0.0764949 -35782,7716:100,-160,70,0,0,0.0764803 -35783,7715:209,-159,70,0,0,0.0764732 -35784,7715:208,-158,70,0,0,0.0764876 -35785,7715:207,-157,70,0,0,0.0765457 -35786,7715:206,-156,70,0,0,0.076553 -35787,7715:205,-155,70,0,0,0.0764949 -35788,7715:104,-154,70,0,0,0.0763933 -35789,7715:103,-153,70,0,0,0.0764223 -35790,7715:102,-152,70,0,0,0.0765384 -35791,7715:101,-151,70,0,0,0.0766692 -35792,7715:100,-150,70,0,0,0.076713 -35793,7714:209,-149,70,0,0,0.0767203 -35794,7714:208,-148,70,0,0,0.0766912 -35795,7714:207,-147,70,0,0,0.0766475 -35796,7714:206,-146,70,0,0,0.0767929 -35797,7714:205,-145,70,0,0,0.0768367 -35798,7707:100,-70,70,0,0,0.0769973 -35799,7706:209,-69,70,0,0,0.0770922 -35800,7706:208,-68,70,0,0,0.0769534 -35801,7706:207,-67,70,0,0,0.0769315 -35802,7706:205,-65,70,0,0,0.0764876 -35803,7706:102,-62,70,0,0,0.0774878 -35804,7705:206,-56,70,0,0,0.0768659 -35805,7705:205,-55,70,0,0,0.0765166 -35806,7705:104,-54,70,0,0,0.07614 -35807,7705:103,-53,70,0,0,0.0760172 -35808,7705:102,-52,70,0,0,0.0759307 -35809,7705:101,-51,70,0,0,0.0759162 -35810,7705:100,-50,70,0,0,0.0760029 -35811,7704:209,-49,70,0,0,0.0760895 -35812,7704:208,-48,70,0,0,0.076046 -35813,7704:207,-47,70,0,0,0.0766475 -35814,7704:206,-46,70,0,0,0.0777527 -35815,7702:100,-20,70,0,0,0.0760749 -35816,7701:209,-19,70,0,0,0.0760822 -35817,7701:208,-18,70,0,0,0.0761472 -35818,7701:207,-17,70,0,0,0.0758443 -35819,7701:206,-16,70,0,0,0.0807435 -35820,7701:205,-15,70,0,0,0.116962 -35821,7701:104,-14,70,0,0,0.121526 -35822,7701:103,-13,70,0,0,0.1249 -35823,7701:102,-12,70,0,0,0.127895 -35824,7700:104,-4,70,0,0,0.0790967 -35825,7700:103,-3,70,0,0,0.0843219 -35826,7700:102,-2,70,0,0,0.0853509 -35827,7700:101,-1,70,0,0,0.113278 -35828,1700:101,0,70,0,0,0.12286 -35829,1700:101,1,70,0,0,0.128124 -35830,1700:102,2,70,0,0,0.131889 -35831,1700:103,3,70,0,0,0.11266 -35832,1700:104,4,70,0,0,0.105465 -35833,1700:205,5,70,0,0,0.118231 -35834,1700:206,6,70,0,0,0.105504 -35835,1700:207,7,70,0,0,0.100921 -35836,1700:208,8,70,0,0,0.0992825 -35837,1700:209,9,70,0,0,0.103408 -35838,1701:100,10,70,0,0,0.108697 -35839,1701:101,11,70,0,0,0.115548 -35840,1701:102,12,70,0,0,0.118467 -35841,1701:103,13,70,0,0,0.117568 -35842,1701:104,14,70,0,0,0.11224 -35843,1701:205,15,70,0,0,0.115045 -35844,1701:206,16,70,0,0,0.111322 -35845,1701:207,17,70,0,0,0.109937 -35846,1701:208,18,70,0,0,0.0972521 -35847,1702:101,21,70,0,0,0.0910079 -35848,1714:205,145,70,0,0,0.0770704 -35849,1714:206,146,70,0,0,0.0771654 -35850,1714:207,147,70,0,0,0.0773559 -35851,1714:208,148,70,0,0,0.0771726 -35852,1714:209,149,70,0,0,0.0766111 -35853,1715:100,150,70,0,0,0.0761689 -35854,1715:101,151,70,0,0,0.0760606 -35855,1715:102,152,70,0,0,0.0759379 -35856,1715:103,153,70,0,0,0.0759379 -35857,1715:104,154,70,0,0,0.0759379 -35858,1715:205,155,70,0,0,0.0758515 -35859,1715:206,156,70,0,0,0.0758082 -35860,1715:207,157,70,0,0,0.0758082 -35861,1715:208,158,70,0,0,0.0758298 -35862,1715:209,159,70,0,0,0.0758515 -35863,1716:100,160,70,0,0,0.0758658 -35864,1716:101,161,70,0,0,0.0759884 -35865,1716:102,162,70,0,0,0.0760317 -35866,1716:103,163,70,0,0,0.0760967 -35867,1716:104,164,70,0,0,0.076205 -35868,1716:205,165,70,0,0,0.076234 -35869,1716:206,166,70,0,0,0.0762413 -35870,1716:207,167,70,0,0,0.0762558 -35871,1716:208,168,70,0,0,0.0762558 -35872,1716:209,169,70,0,0,0.0762629 -35873,1717:100,170,70,0,0,0.0762991 -35874,1717:101,171,70,0,0,0.0763281 -35875,1717:102,172,70,0,0,0.0763643 -35876,1717:103,173,70,0,0,0.0763643 -35877,1717:104,174,70,0,0,0.0763716 -35878,1717:205,175,70,0,0,0.0763933 -35879,1717:206,176,70,0,0,0.0764223 -35880,1717:207,177,70,0,0,0.0764442 -35881,1717:208,178,70,0,0,0.0764659 -35882,1717:209,179,70,0,0,0.0765384 -35883,1718:100,180,70,0,0,0.0765747 -35884,7718:110,-180,71,0,0,0.0765893 -35885,7717:219,-179,71,0,0,0.0766111 -35886,7717:218,-178,71,0,0,0.0765967 -35887,7717:217,-177,71,0,0,0.0765967 -35888,7717:216,-176,71,0,0,0.0766401 -35889,7717:215,-175,71,0,0,0.0766548 -35890,7717:114,-174,71,0,0,0.0766621 -35891,7717:113,-173,71,0,0,0.0766257 -35892,7717:112,-172,71,0,0,0.0765747 -35893,7717:111,-171,71,0,0,0.0766038 -35894,7717:110,-170,71,0,0,0.0766912 -35895,7716:219,-169,71,0,0,0.0766839 -35896,7716:218,-168,71,0,0,0.0766111 -35897,7716:217,-167,71,0,0,0.076582 -35898,7716:216,-166,71,0,0,0.0766111 -35899,7716:215,-165,71,0,0,0.0766111 -35900,7716:114,-164,71,0,0,0.0765603 -35901,7716:113,-163,71,0,0,0.0765093 -35902,7716:112,-162,71,0,0,0.0764949 -35903,7716:111,-161,71,0,0,0.0764803 -35904,7716:110,-160,71,0,0,0.0764586 -35905,7715:219,-159,71,0,0,0.0764586 -35906,7715:218,-158,71,0,0,0.0764732 -35907,7715:217,-157,71,0,0,0.0765166 -35908,7715:216,-156,71,0,0,0.0765676 -35909,7715:215,-155,71,0,0,0.0765313 -35910,7715:114,-154,71,0,0,0.0763716 -35911,7715:113,-153,71,0,0,0.0763716 -35912,7715:112,-152,71,0,0,0.0759523 -35913,7715:111,-151,71,0,0,0.0762485 -35914,7715:110,-150,71,0,0,0.0765967 -35915,7714:219,-149,71,0,0,0.0767056 -35916,7714:218,-148,71,0,0,0.0767347 -35917,7714:217,-147,71,0,0,0.0766401 -35918,7714:216,-146,71,0,0,0.076742 -35919,7714:215,-145,71,0,0,0.0767567 -35920,7714:114,-144,71,0,0,0.0771726 -35921,7707:218,-78,71,0,0,0.0860837 -35922,7707:217,-77,71,0,0,0.0854472 -35923,7707:216,-76,71,0,0,0.0847193 -35924,7707:215,-75,71,0,0,0.0841236 -35925,7707:114,-74,71,0,0,0.083367 -35926,7707:110,-70,71,0,0,0.0770849 -35927,7706:218,-68,71,0,0,0.0769899 -35928,7706:217,-67,71,0,0,0.0768367 -35929,7706:216,-66,71,0,0,0.0768149 -35930,7706:110,-60,71,0,0,0.0769899 -35931,7705:219,-59,71,0,0,0.0769315 -35932,7705:218,-58,71,0,0,0.076895 -35933,7705:217,-57,71,0,0,0.0769754 -35934,7705:216,-56,71,0,0,0.0768294 -35935,7705:215,-55,71,0,0,0.076386 -35936,7705:112,-52,71,0,0,0.0770775 -35937,7705:111,-51,71,0,0,0.0766983 -35938,7705:110,-50,71,0,0,0.0764369 -35939,7704:219,-49,71,0,0,0.0762848 -35940,7704:218,-48,71,0,0,0.0761111 -35941,7704:217,-47,71,0,0,0.07635 -35942,7704:216,-46,71,0,0,0.077297 -35943,7704:215,-45,71,0,0,0.0771654 -35944,7702:113,-23,71,0,0,0.0764442 -35945,7702:112,-22,71,0,0,0.0763571 -35946,7702:110,-20,71,0,0,0.0761327 -35947,7701:219,-19,71,0,0,0.0761834 -35948,7701:218,-18,71,0,0,0.0759884 -35949,7701:217,-17,71,0,0,0.0762267 -35950,7701:216,-16,71,0,0,0.0789247 -35951,7701:215,-15,71,0,0,0.0824607 -35952,7701:114,-14,71,0,0,0.0817328 -35953,7701:113,-13,71,0,0,0.0874021 -35954,7701:112,-12,71,0,0,0.116686 -35955,7701:111,-11,71,0,0,0.111058 -35956,7701:110,-10,71,0,0,0.103408 -35957,7700:217,-7,71,0,0,0.0763933 -35958,7700:216,-6,71,0,0,0.0762918 -35959,7700:215,-5,71,0,0,0.0762267 -35960,7700:114,-4,71,0,0,0.0763427 -35961,7700:113,-3,71,0,0,0.076386 -35962,7700:112,-2,71,0,0,0.0810109 -35963,7700:111,-1,71,0,0,0.102073 -35964,1700:111,0,71,0,0,0.0920502 -35965,1700:111,1,71,0,0,0.100418 -35966,1700:112,2,71,0,0,0.120303 -35967,1700:113,3,71,0,0,0.114055 -35968,1700:114,4,71,0,0,0.10819 -35969,1700:215,5,71,0,0,0.100205 -35970,1700:216,6,71,0,0,0.0947292 -35971,1700:217,7,71,0,0,0.0982218 -35972,1700:218,8,71,0,0,0.098998 -35973,1700:219,9,71,0,0,0.101098 -35974,1701:110,10,71,0,0,0.102318 -35975,1701:111,11,71,0,0,0.109786 -35976,1701:112,12,71,0,0,0.11365 -35977,1701:113,13,71,0,0,0.117259 -35978,1701:114,14,71,0,0,0.102007 -35979,1701:215,15,71,0,0,0.107252 -35980,1701:216,16,71,0,0,0.110784 -35981,1701:217,17,71,0,0,0.104154 -35982,1701:218,18,71,0,0,0.0975595 -35983,1701:219,19,71,0,0,0.0907786 -35984,1702:110,20,71,0,0,0.0880518 -35985,1702:111,21,71,0,0,0.0822122 -35986,1714:216,146,71,0,0,0.0775394 -35987,1714:217,147,71,0,0,0.0772678 -35988,1714:218,148,71,0,0,0.0766401 -35989,1714:219,149,71,0,0,0.075686 -35990,1715:110,150,71,0,0,0.0759162 -35991,1715:111,151,71,0,0,0.0758803 -35992,1715:112,152,71,0,0,0.075758 -35993,1715:113,153,71,0,0,0.075765 -35994,1715:114,154,71,0,0,0.075765 -35995,1715:215,155,71,0,0,0.0757362 -35996,1715:216,156,71,0,0,0.0757362 -35997,1715:217,157,71,0,0,0.075765 -35998,1715:218,158,71,0,0,0.0758298 -35999,1715:219,159,71,0,0,0.0759452 -36000,1716:110,160,71,0,0,0.0760895 -36001,1716:111,161,71,0,0,0.076205 -36002,1716:112,162,71,0,0,0.0762413 -36003,1716:113,163,71,0,0,0.0762558 -36004,1716:114,164,71,0,0,0.0762558 -36005,1716:215,165,71,0,0,0.0762558 -36006,1716:216,166,71,0,0,0.0762558 -36007,1716:217,167,71,0,0,0.0762629 -36008,1716:218,168,71,0,0,0.0762558 -36009,1716:219,169,71,0,0,0.0762629 -36010,1717:110,170,71,0,0,0.0762848 -36011,1717:111,171,71,0,0,0.0763137 -36012,1717:112,172,71,0,0,0.0763354 -36013,1717:113,173,71,0,0,0.07635 -36014,1717:114,174,71,0,0,0.0763571 -36015,1717:215,175,71,0,0,0.0763643 -36016,1717:216,176,71,0,0,0.0763716 -36017,1717:217,177,71,0,0,0.076386 -36018,1717:218,178,71,0,0,0.0764079 -36019,1717:219,179,71,0,0,0.0765022 -36020,1718:110,180,71,0,0,0.0765893 -36021,7718:120,-180,72,0,0,0.0764876 -36022,7717:229,-179,72,0,0,0.0765676 -36023,7717:228,-178,72,0,0,0.0765747 -36024,7717:227,-177,72,0,0,0.0766111 -36025,7717:226,-176,72,0,0,0.0766184 -36026,7717:225,-175,72,0,0,0.0766184 -36027,7717:124,-174,72,0,0,0.0766328 -36028,7717:123,-173,72,0,0,0.0766328 -36029,7717:122,-172,72,0,0,0.0766257 -36030,7717:121,-171,72,0,0,0.0766475 -36031,7717:120,-170,72,0,0,0.0766401 -36032,7716:229,-169,72,0,0,0.0766475 -36033,7716:228,-168,72,0,0,0.0766692 -36034,7716:227,-167,72,0,0,0.0766111 -36035,7716:226,-166,72,0,0,0.0766038 -36036,7716:225,-165,72,0,0,0.0766038 -36037,7716:124,-164,72,0,0,0.0765384 -36038,7716:123,-163,72,0,0,0.0764876 -36039,7716:122,-162,72,0,0,0.0764659 -36040,7716:121,-161,72,0,0,0.0764442 -36041,7716:120,-160,72,0,0,0.0764442 -36042,7715:229,-159,72,0,0,0.0764803 -36043,7715:228,-158,72,0,0,0.0765893 -36044,7715:227,-157,72,0,0,0.0766692 -36045,7715:226,-156,72,0,0,0.0765747 -36046,7715:225,-155,72,0,0,0.0763789 -36047,7715:124,-154,72,0,0,0.076524 -36048,7715:123,-153,72,0,0,0.075722 -36049,7714:227,-147,72,0,0,0.0766475 -36050,7714:226,-146,72,0,0,0.0765893 -36051,7714:225,-145,72,0,0,0.0767494 -36052,7714:124,-144,72,0,0,0.0766839 -36053,7714:123,-143,72,0,0,0.0766475 -36054,7714:122,-142,72,0,0,0.0768806 -36055,7707:226,-76,72,0,0,0.0835713 -36056,7707:225,-75,72,0,0,0.0823597 -36057,7707:124,-74,72,0,0,0.0807666 -36058,7707:123,-73,72,0,0,0.080128 -36059,7707:122,-72,72,0,0,0.0792016 -36060,7706:228,-68,72,0,0,0.0770409 -36061,7706:227,-67,72,0,0,0.0769242 -36062,7706:226,-66,72,0,0,0.0768221 -36063,7706:225,-65,72,0,0,0.0767858 -36064,7706:124,-64,72,0,0,0.0767347 -36065,7705:227,-57,72,0,0,0.0769462 -36066,7705:226,-56,72,0,0,0.0765676 -36067,7705:121,-51,72,0,0,0.0769754 -36068,7704:228,-48,72,0,0,0.076386 -36069,7704:227,-47,72,0,0,0.076234 -36070,7704:226,-46,72,0,0,0.0762196 -36071,7704:225,-45,72,0,0,0.0762918 -36072,7704:123,-43,72,0,0,0.0763354 -36073,7704:122,-42,72,0,0,0.0762413 -36074,7704:121,-41,72,0,0,0.0762196 -36075,7704:120,-40,72,0,0,0.0761978 -36076,7702:123,-23,72,0,0,0.0762702 -36077,7702:122,-22,72,0,0,0.0762196 -36078,7702:121,-21,72,0,0,0.0761978 -36079,7702:120,-20,72,0,0,0.0761978 -36080,7701:229,-19,72,0,0,0.0759956 -36081,7701:228,-18,72,0,0,0.0756715 -36082,7701:227,-17,72,0,0,0.0755065 -36083,7701:226,-16,72,0,0,0.0755567 -36084,7701:225,-15,72,0,0,0.0762848 -36085,7701:124,-14,72,0,0,0.077657 -36086,7701:123,-13,72,0,0,0.0926529 -36087,7701:122,-12,72,0,0,0.109405 -36088,7701:121,-11,72,0,0,0.117568 -36089,7701:120,-10,72,0,0,0.0980126 -36090,7700:229,-9,72,0,0,0.0794567 -36091,7700:226,-6,72,0,0,0.076895 -36092,7700:225,-5,72,0,0,0.0767858 -36093,7700:124,-4,72,0,0,0.0770409 -36094,7700:123,-3,72,0,0,0.0787009 -36095,7700:122,-2,72,0,0,0.0943773 -36096,7700:121,-1,72,0,0,0.0821968 -36097,1700:121,0,72,0,0,0.084576 -36098,1700:121,1,72,0,0,0.0831081 -36099,1700:122,2,72,0,0,0.0907532 -36100,1700:123,3,72,0,0,0.111109 -36101,1700:124,4,72,0,0,0.105329 -36102,1700:225,5,72,0,0,0.105029 -36103,1700:226,6,72,0,0,0.102337 -36104,1700:227,7,72,0,0,0.100921 -36105,1700:228,8,72,0,0,0.105262 -36106,1700:229,9,72,0,0,0.105358 -36107,1701:120,10,72,0,0,0.107095 -36108,1701:121,11,72,0,0,0.108647 -36109,1701:122,12,72,0,0,0.115233 -36110,1701:123,13,72,0,0,0.113278 -36111,1701:124,14,72,0,0,0.103542 -36112,1701:225,15,72,0,0,0.103532 -36113,1701:226,16,72,0,0,0.096068 -36114,1701:227,17,72,0,0,0.0952857 -36115,1701:228,18,72,0,0,0.0962288 -36116,1701:229,19,72,0,0,0.0928518 -36117,1702:120,20,72,0,0,0.0857124 -36118,1702:121,21,72,0,0,0.0798634 -36119,1702:123,23,72,0,0,0.0823131 -36120,1714:124,144,72,0,0,0.0771067 -36121,1714:225,145,72,0,0,0.0775465 -36122,1714:226,146,72,0,0,0.0773337 -36123,1714:227,147,72,0,0,0.0769462 -36124,1714:228,148,72,0,0,0.0760967 -36125,1714:229,149,72,0,0,0.075442 -36126,1715:120,150,72,0,0,0.0756932 -36127,1715:121,151,72,0,0,0.0757722 -36128,1715:122,152,72,0,0,0.0756068 -36129,1715:123,153,72,0,0,0.0755352 -36130,1715:124,154,72,0,0,0.0756141 -36131,1715:225,155,72,0,0,0.0757002 -36132,1715:226,156,72,0,0,0.0758155 -36133,1715:227,157,72,0,0,0.0758946 -36134,1715:228,158,72,0,0,0.0759452 -36135,1715:229,159,72,0,0,0.0759668 -36136,1716:120,160,72,0,0,0.076046 -36137,1716:121,161,72,0,0,0.0761327 -36138,1716:122,162,72,0,0,0.0762123 -36139,1716:123,163,72,0,0,0.0762558 -36140,1716:124,164,72,0,0,0.0762558 -36141,1716:225,165,72,0,0,0.0762485 -36142,1716:226,166,72,0,0,0.0762413 -36143,1716:227,167,72,0,0,0.0762413 -36144,1716:228,168,72,0,0,0.0762413 -36145,1716:229,169,72,0,0,0.0762629 -36146,1717:120,170,72,0,0,0.0762848 -36147,1717:121,171,72,0,0,0.0763137 -36148,1717:122,172,72,0,0,0.0763281 -36149,1717:123,173,72,0,0,0.0763354 -36150,1717:124,174,72,0,0,0.0763427 -36151,1717:225,175,72,0,0,0.07635 -36152,1717:226,176,72,0,0,0.07635 -36153,1717:227,177,72,0,0,0.0763354 -36154,1717:228,178,72,0,0,0.07635 -36155,1717:229,179,72,0,0,0.0764006 -36156,1718:120,180,72,0,0,0.0764876 -36157,7718:130,-180,73,0,0,0.0764442 -36158,7717:239,-179,73,0,0,0.0764949 -36159,7717:238,-178,73,0,0,0.0765093 -36160,7717:237,-177,73,0,0,0.0765313 -36161,7717:236,-176,73,0,0,0.076582 -36162,7717:235,-175,73,0,0,0.0766038 -36163,7717:134,-174,73,0,0,0.0766111 -36164,7717:133,-173,73,0,0,0.0766184 -36165,7717:132,-172,73,0,0,0.0766184 -36166,7717:131,-171,73,0,0,0.0766328 -36167,7717:130,-170,73,0,0,0.0766401 -36168,7716:239,-169,73,0,0,0.0766621 -36169,7716:238,-168,73,0,0,0.0766548 -36170,7716:237,-167,73,0,0,0.0766257 -36171,7716:236,-166,73,0,0,0.0766328 -36172,7716:235,-165,73,0,0,0.0765893 -36173,7716:134,-164,73,0,0,0.0765166 -36174,7716:133,-163,73,0,0,0.0764949 -36175,7716:132,-162,73,0,0,0.0764442 -36176,7716:131,-161,73,0,0,0.076415 -36177,7716:130,-160,73,0,0,0.076415 -36178,7715:239,-159,73,0,0,0.0764803 -36179,7715:238,-158,73,0,0,0.0766328 -36180,7715:237,-157,73,0,0,0.0766621 -36181,7715:236,-156,73,0,0,0.0766111 -36182,7715:235,-155,73,0,0,0.0759595 -36183,7715:134,-154,73,0,0,0.0755854 -36184,7714:237,-147,73,0,0,0.0768659 -36185,7714:236,-146,73,0,0,0.0767347 -36186,7714:235,-145,73,0,0,0.0765603 -36187,7714:134,-144,73,0,0,0.0766983 -36188,7714:133,-143,73,0,0,0.0767712 -36189,7714:132,-142,73,0,0,0.0766765 -36190,7714:131,-141,73,0,0,0.076524 -36191,7714:130,-140,73,0,0,0.0769754 -36192,7707:133,-73,73,0,0,0.0790369 -36193,7707:132,-72,73,0,0,0.0784405 -36194,7706:236,-66,73,0,0,0.0769315 -36195,7706:235,-65,73,0,0,0.0769462 -36196,7706:134,-64,73,0,0,0.0769825 -36197,7706:133,-63,73,0,0,0.0770264 -36198,7706:132,-62,73,0,0,0.0769899 -36199,7706:131,-61,73,0,0,0.0769754 -36200,7706:130,-60,73,0,0,0.0769681 -36201,7705:239,-59,73,0,0,0.0769534 -36202,7705:238,-58,73,0,0,0.0769097 -36203,7705:237,-57,73,0,0,0.0768806 -36204,7705:133,-53,73,0,0,0.0768076 -36205,7705:132,-52,73,0,0,0.0767567 -36206,7704:134,-44,73,0,0,0.07635 -36207,7704:133,-43,73,0,0,0.0762558 -36208,7704:132,-42,73,0,0,0.0762267 -36209,7704:131,-41,73,0,0,0.0762558 -36210,7704:130,-40,73,0,0,0.076205 -36211,7703:239,-39,73,0,0,0.0762123 -36212,7703:236,-36,73,0,0,0.0762558 -36213,7703:132,-32,73,0,0,0.0763789 -36214,7703:131,-31,73,0,0,0.0763354 -36215,7702:134,-24,73,0,0,0.076234 -36216,7702:133,-23,73,0,0,0.0762123 -36217,7702:132,-22,73,0,0,0.076205 -36218,7702:131,-21,73,0,0,0.0761256 -36219,7702:130,-20,73,0,0,0.0760606 -36220,7701:239,-19,73,0,0,0.0759234 -36221,7701:238,-18,73,0,0,0.075686 -36222,7701:237,-17,73,0,0,0.0755065 -36223,7701:236,-16,73,0,0,0.0754348 -36224,7701:235,-15,73,0,0,0.0755065 -36225,7701:134,-14,73,0,0,0.0764586 -36226,7701:133,-13,73,0,0,0.0788053 -36227,7701:132,-12,73,0,0,0.0884155 -36228,7701:131,-11,73,0,0,0.113537 -36229,7701:130,-10,73,0,0,0.114752 -36230,7700:239,-9,73,0,0,0.0945181 -36231,7700:238,-8,73,0,0,0.0860351 -36232,7700:237,-7,73,0,0,0.0841159 -36233,7700:236,-6,73,0,0,0.0820805 -36234,7700:235,-5,73,0,0,0.077451 -36235,7700:134,-4,73,0,0,0.077363 -36236,7700:133,-3,73,0,0,0.0785744 -36237,7700:132,-2,73,0,0,0.0813711 -36238,7700:131,-1,73,0,0,0.079284 -36239,1700:131,0,73,0,0,0.0800449 -36240,1700:131,1,73,0,0,0.0808276 -36241,1700:132,2,73,0,0,0.0866917 -36242,1700:133,3,73,0,0,0.0925235 -36243,1700:134,4,73,0,0,0.105078 -36244,1700:235,5,73,0,0,0.104615 -36245,1700:236,6,73,0,0,0.106467 -36246,1700:237,7,73,0,0,0.109095 -36247,1700:238,8,73,0,0,0.109666 -36248,1700:239,9,73,0,0,0.107893 -36249,1701:130,10,73,0,0,0.108826 -36250,1701:131,11,73,0,0,0.109706 -36251,1701:132,12,73,0,0,0.114491 -36252,1701:133,13,73,0,0,0.108081 -36253,1701:134,14,73,0,0,0.0931552 -36254,1701:237,17,73,0,0,0.0837997 -36255,1701:238,18,73,0,0,0.0906516 -36256,1701:239,19,73,0,0,0.092463 -36257,1702:130,20,73,0,0,0.0852306 -36258,1702:131,21,73,0,0,0.077974 -36259,1702:132,22,73,0,0,0.0769534 -36260,1714:235,145,73,0,0,0.0773998 -36261,1714:236,146,73,0,0,0.0769607 -36262,1714:237,147,73,0,0,0.0757362 -36263,1714:238,148,73,0,0,0.0756645 -36264,1714:239,149,73,0,0,0.075442 -36265,1715:130,150,73,0,0,0.0755781 -36266,1715:131,151,73,0,0,0.0756285 -36267,1715:132,152,73,0,0,0.0754706 -36268,1715:133,153,73,0,0,0.075442 -36269,1715:134,154,73,0,0,0.0755207 -36270,1715:235,155,73,0,0,0.0756068 -36271,1715:236,156,73,0,0,0.075686 -36272,1715:237,157,73,0,0,0.0758155 -36273,1715:238,158,73,0,0,0.0759595 -36274,1715:239,159,73,0,0,0.0760245 -36275,1716:130,160,73,0,0,0.0760749 -36276,1716:131,161,73,0,0,0.0761183 -36277,1716:132,162,73,0,0,0.0761761 -36278,1716:133,163,73,0,0,0.0762123 -36279,1716:134,164,73,0,0,0.0761978 -36280,1716:235,165,73,0,0,0.0761907 -36281,1716:236,166,73,0,0,0.0761834 -36282,1716:237,167,73,0,0,0.0761761 -36283,1716:238,168,73,0,0,0.0761978 -36284,1716:239,169,73,0,0,0.076234 -36285,1717:130,170,73,0,0,0.0762629 -36286,1717:131,171,73,0,0,0.0762918 -36287,1717:132,172,73,0,0,0.0763064 -36288,1717:133,173,73,0,0,0.0762991 -36289,1717:134,174,73,0,0,0.0763064 -36290,1717:235,175,73,0,0,0.0763137 -36291,1717:236,176,73,0,0,0.0763281 -36292,1717:237,177,73,0,0,0.0763427 -36293,1717:238,178,73,0,0,0.0763716 -36294,1717:239,179,73,0,0,0.076415 -36295,1718:130,180,73,0,0,0.0764442 -36296,7718:140,-180,74,0,0,0.0764369 -36297,7717:249,-179,74,0,0,0.0764369 -36298,7717:248,-178,74,0,0,0.0764513 -36299,7717:247,-177,74,0,0,0.0764803 -36300,7717:246,-176,74,0,0,0.0765093 -36301,7717:245,-175,74,0,0,0.0765313 -36302,7717:144,-174,74,0,0,0.0765603 -36303,7717:143,-173,74,0,0,0.0765676 -36304,7717:142,-172,74,0,0,0.0765603 -36305,7717:141,-171,74,0,0,0.0765384 -36306,7717:140,-170,74,0,0,0.0765384 -36307,7716:249,-169,74,0,0,0.076553 -36308,7716:248,-168,74,0,0,0.0766257 -36309,7716:247,-167,74,0,0,0.0766401 -36310,7716:246,-166,74,0,0,0.0766184 -36311,7716:245,-165,74,0,0,0.0765603 -36312,7716:144,-164,74,0,0,0.0764949 -36313,7716:143,-163,74,0,0,0.0764586 -36314,7716:142,-162,74,0,0,0.0764223 -36315,7716:141,-161,74,0,0,0.0764006 -36316,7716:140,-160,74,0,0,0.0764223 -36317,7715:249,-159,74,0,0,0.0765603 -36318,7715:248,-158,74,0,0,0.0766328 -36319,7715:247,-157,74,0,0,0.0766038 -36320,7714:249,-149,74,0,0,0.076895 -36321,7714:248,-148,74,0,0,0.0771067 -36322,7714:247,-147,74,0,0,0.0769681 -36323,7714:246,-146,74,0,0,0.0769462 -36324,7714:245,-145,74,0,0,0.0766765 -36325,7714:144,-144,74,0,0,0.0768514 -36326,7714:143,-143,74,0,0,0.0769242 -36327,7714:140,-140,74,0,0,0.0767567 -36328,7713:249,-139,74,0,0,0.0773559 -36329,7713:245,-135,74,0,0,0.077937 -36330,7707:249,-79,74,0,0,0.0797126 -36331,7707:248,-78,74,0,0,0.0804088 -36332,7707:247,-77,74,0,0,0.0808887 -36333,7707:142,-72,74,0,0,0.0779814 -36334,7706:245,-65,74,0,0,0.0769242 -36335,7706:144,-64,74,0,0,0.0770046 -36336,7706:143,-63,74,0,0,0.0770849 -36337,7705:249,-59,74,0,0,0.0769168 -36338,7705:248,-58,74,0,0,0.0769024 -36339,7705:144,-54,74,0,0,0.0766401 -36340,7705:143,-53,74,0,0,0.0766475 -36341,7703:247,-37,74,0,0,0.0762918 -36342,7703:245,-35,74,0,0,0.0762629 -36343,7703:144,-34,74,0,0,0.0762196 -36344,7703:143,-33,74,0,0,0.076234 -36345,7703:142,-32,74,0,0,0.076234 -36346,7703:141,-31,74,0,0,0.0762991 -36347,7703:140,-30,74,0,0,0.0762775 -36348,7702:249,-29,74,0,0,0.0762485 -36349,7702:248,-28,74,0,0,0.0762267 -36350,7702:247,-27,74,0,0,0.0762123 -36351,7702:246,-26,74,0,0,0.076205 -36352,7702:245,-25,74,0,0,0.076205 -36353,7702:144,-24,74,0,0,0.0762267 -36354,7702:143,-23,74,0,0,0.0762196 -36355,7702:142,-22,74,0,0,0.07614 -36356,7702:141,-21,74,0,0,0.0760029 -36357,7702:140,-20,74,0,0,0.0759091 -36358,7701:249,-19,74,0,0,0.0758803 -36359,7701:248,-18,74,0,0,0.0758298 -36360,7701:247,-17,74,0,0,0.075722 -36361,7701:246,-16,74,0,0,0.0755494 -36362,7701:245,-15,74,0,0,0.0754348 -36363,7701:144,-14,74,0,0,0.075758 -36364,7701:143,-13,74,0,0,0.0764223 -36365,7701:142,-12,74,0,0,0.076895 -36366,7701:141,-11,74,0,0,0.0783737 -36367,7701:140,-10,74,0,0,0.100521 -36368,7700:249,-9,74,0,0,0.112466 -36369,7700:248,-8,74,0,0,0.102535 -36370,7700:247,-7,74,0,0,0.0816018 -36371,7700:246,-6,74,0,0,0.0773778 -36372,7700:245,-5,74,0,0,0.0771799 -36373,7700:144,-4,74,0,0,0.077451 -36374,7700:143,-3,74,0,0,0.0770996 -36375,7700:142,-2,74,0,0,0.0783737 -36376,7700:141,-1,74,0,0,0.0782551 -36377,1700:141,0,74,0,0,0.0855999 -36378,1700:141,1,74,0,0,0.0909314 -36379,1700:142,2,74,0,0,0.0974329 -36380,1700:143,3,74,0,0,0.102158 -36381,1700:144,4,74,0,0,0.103209 -36382,1700:245,5,74,0,0,0.0963898 -36383,1700:246,6,74,0,0,0.100344 -36384,1700:247,7,74,0,0,0.10596 -36385,1700:248,8,74,0,0,0.106693 -36386,1700:249,9,74,0,0,0.102668 -36387,1701:140,10,74,0,0,0.094395 -36388,1701:141,11,74,0,0,0.104384 -36389,1701:142,12,74,0,0,0.0993467 -36390,1701:143,13,74,0,0,0.0871401 -36391,1701:249,19,74,0,0,0.0835084 -36392,1702:140,20,74,0,0,0.0870177 -36393,1702:141,21,74,0,0,0.0775394 -36394,1702:142,22,74,0,0,0.076386 -36395,1702:143,23,74,0,0,0.0766475 -36396,1714:142,142,74,0,0,0.0787084 -36397,1714:143,143,74,0,0,0.0785224 -36398,1714:144,144,74,0,0,0.0781663 -36399,1714:245,145,74,0,0,0.0773411 -36400,1714:246,146,74,0,0,0.0762629 -36401,1714:247,147,74,0,0,0.0758082 -36402,1714:248,148,74,0,0,0.075765 -36403,1714:249,149,74,0,0,0.075528 -36404,1715:140,150,74,0,0,0.0753561 -36405,1715:141,151,74,0,0,0.0755424 -36406,1715:142,152,74,0,0,0.075442 -36407,1715:143,153,74,0,0,0.0754348 -36408,1715:144,154,74,0,0,0.0755494 -36409,1715:245,155,74,0,0,0.0756141 -36410,1715:246,156,74,0,0,0.0756645 -36411,1715:247,157,74,0,0,0.075765 -36412,1715:248,158,74,0,0,0.0758658 -36413,1715:249,159,74,0,0,0.0759595 -36414,1716:140,160,74,0,0,0.0760317 -36415,1716:141,161,74,0,0,0.0760822 -36416,1716:142,162,74,0,0,0.0761327 -36417,1716:143,163,74,0,0,0.0761545 -36418,1716:144,164,74,0,0,0.0761618 -36419,1716:245,165,74,0,0,0.0761545 -36420,1716:246,166,74,0,0,0.0761472 -36421,1716:247,167,74,0,0,0.0761472 -36422,1716:248,168,74,0,0,0.0761618 -36423,1716:249,169,74,0,0,0.0761978 -36424,1717:140,170,74,0,0,0.0762267 -36425,1717:141,171,74,0,0,0.0762558 -36426,1717:142,172,74,0,0,0.0762702 -36427,1717:143,173,74,0,0,0.0762702 -36428,1717:144,174,74,0,0,0.0762702 -36429,1717:245,175,74,0,0,0.0762991 -36430,1717:246,176,74,0,0,0.0763281 -36431,1717:247,177,74,0,0,0.0763354 -36432,1717:248,178,74,0,0,0.0763427 -36433,1717:249,179,74,0,0,0.0763933 -36434,1718:140,180,74,0,0,0.0764369 -36435,7718:350,-180,75,0,0,0.0763571 -36436,7717:459,-179,75,0,0,0.0763933 -36437,7717:458,-178,75,0,0,0.076386 -36438,7717:457,-177,75,0,0,0.0764223 -36439,7717:456,-176,75,0,0,0.0764513 -36440,7717:455,-175,75,0,0,0.0764659 -36441,7717:354,-174,75,0,0,0.0764803 -36442,7717:353,-173,75,0,0,0.0765022 -36443,7717:352,-172,75,0,0,0.0765022 -36444,7717:351,-171,75,0,0,0.0764876 -36445,7717:350,-170,75,0,0,0.0764803 -36446,7716:459,-169,75,0,0,0.0764803 -36447,7716:458,-168,75,0,0,0.0765603 -36448,7716:457,-167,75,0,0,0.0766111 -36449,7716:456,-166,75,0,0,0.0765747 -36450,7716:455,-165,75,0,0,0.0765093 -36451,7716:354,-164,75,0,0,0.0764442 -36452,7716:353,-163,75,0,0,0.0764079 -36453,7716:352,-162,75,0,0,0.0763789 -36454,7716:351,-161,75,0,0,0.0764659 -36455,7716:350,-160,75,0,0,0.0765676 -36456,7715:459,-159,75,0,0,0.076582 -36457,7715:458,-158,75,0,0,0.0765893 -36458,7715:457,-157,75,0,0,0.0764296 -36459,7715:456,-156,75,0,0,0.0768221 -36460,7715:350,-150,75,0,0,0.0766983 -36461,7714:459,-149,75,0,0,0.0772018 -36462,7714:456,-146,75,0,0,0.0768806 -36463,7714:353,-143,75,0,0,0.0767929 -36464,7713:459,-139,75,0,0,0.0773118 -36465,7713:458,-138,75,0,0,0.0774291 -36466,7713:457,-137,75,0,0,0.0776421 -36467,7713:456,-136,75,0,0,0.0781218 -36468,7713:455,-135,75,0,0,0.0779519 -36469,7713:354,-134,75,0,0,0.0777896 -36470,7708:350,-80,75,0,0,0.0795694 -36471,7707:459,-79,75,0,0,0.0789322 -36472,7707:458,-78,75,0,0,0.0800599 -36473,7707:457,-77,75,0,0,0.0808963 -36474,7707:455,-75,75,0,0,0.0796523 -36475,7707:354,-74,75,0,0,0.0786861 -36476,7707:353,-73,75,0,0,0.0781071 -36477,7707:352,-72,75,0,0,0.0779296 -36478,7707:351,-71,75,0,0,0.0778337 -36479,7707:350,-70,75,0,0,0.0777601 -36480,7706:459,-69,75,0,0,0.077679 -36481,7706:458,-68,75,0,0,0.0775981 -36482,7706:457,-67,75,0,0,0.0774732 -36483,7706:456,-66,75,0,0,0.0772678 -36484,7706:455,-65,75,0,0,0.0769899 -36485,7705:459,-59,75,0,0,0.0769534 -36486,7705:458,-58,75,0,0,0.0768221 -36487,7705:354,-54,75,0,0,0.0768806 -36488,7705:353,-53,75,0,0,0.0768514 -36489,7704:459,-49,75,0,0,0.0767567 -36490,7703:354,-34,75,0,0,0.0762848 -36491,7703:353,-33,75,0,0,0.0762196 -36492,7703:352,-32,75,0,0,0.076205 -36493,7703:351,-31,75,0,0,0.0761907 -36494,7703:350,-30,75,0,0,0.0761978 -36495,7702:459,-29,75,0,0,0.0761978 -36496,7702:458,-28,75,0,0,0.0761978 -36497,7702:457,-27,75,0,0,0.0761978 -36498,7702:456,-26,75,0,0,0.076205 -36499,7702:455,-25,75,0,0,0.0762267 -36500,7702:354,-24,75,0,0,0.076234 -36501,7702:353,-23,75,0,0,0.0762485 -36502,7702:352,-22,75,0,0,0.0762123 -36503,7702:351,-21,75,0,0,0.0761183 -36504,7702:350,-20,75,0,0,0.0760317 -36505,7701:459,-19,75,0,0,0.0759956 -36506,7701:458,-18,75,0,0,0.0759234 -36507,7701:457,-17,75,0,0,0.0757795 -36508,7701:456,-16,75,0,0,0.0755854 -36509,7701:455,-15,75,0,0,0.075442 -36510,7701:354,-14,75,0,0,0.0753272 -36511,7701:353,-13,75,0,0,0.0753989 -36512,7701:352,-12,75,0,0,0.0755352 -36513,7701:351,-11,75,0,0,0.0762918 -36514,7701:350,-10,75,0,0,0.078463 -36515,7700:459,-9,75,0,0,0.089741 -36516,7700:458,-8,75,0,0,0.103047 -36517,7700:457,-7,75,0,0,0.080988 -36518,7700:456,-6,75,0,0,0.0782997 -36519,7700:455,-5,75,0,0,0.0789995 -36520,7700:354,-4,75,0,0,0.0796372 -36521,7700:353,-3,75,0,0,0.0791191 -36522,7700:352,-2,75,0,0,0.0774658 -36523,7700:351,-1,75,0,0,0.0800525 -36524,1700:351,0,75,0,0,0.0819026 -36525,1700:351,1,75,0,0,0.0916472 -36526,1700:352,2,75,0,0,0.0958097 -36527,1700:353,3,75,0,0,0.0958187 -36528,1700:354,4,75,0,0,0.0948438 -36529,1700:455,5,75,0,0,0.094237 -36530,1700:456,6,75,0,0,0.0921963 -36531,1700:457,7,75,0,0,0.102914 -36532,1700:458,8,75,0,0,0.0982218 -36533,1700:459,9,75,0,0,0.0959255 -36534,1701:350,10,75,0,0,0.0977858 -36535,1701:351,11,75,0,0,0.0978038 -36536,1701:455,15,75,0,0,0.0781663 -36537,1701:456,16,75,0,0,0.0801583 -36538,1701:457,17,75,0,0,0.0808353 -36539,1701:458,18,75,0,0,0.0815327 -36540,1701:459,19,75,0,0,0.0799844 -36541,1702:350,20,75,0,0,0.0797351 -36542,1702:351,21,75,0,0,0.0797427 -36543,1702:352,22,75,0,0,0.0762196 -36544,1702:353,23,75,0,0,0.0770117 -36545,1702:354,24,75,0,0,0.0777453 -36546,1714:350,140,75,0,0,0.0783812 -36547,1714:351,141,75,0,0,0.0780701 -36548,1714:352,142,75,0,0,0.0777158 -36549,1714:353,143,75,0,0,0.076713 -36550,1714:354,144,75,0,0,0.0757075 -36551,1714:458,148,75,0,0,0.0759091 -36552,1714:459,149,75,0,0,0.0755854 -36553,1715:350,150,75,0,0,0.0753631 -36554,1715:351,151,75,0,0,0.0753703 -36555,1715:352,152,75,0,0,0.0753703 -36556,1715:353,153,75,0,0,0.0754203 -36557,1715:354,154,75,0,0,0.0755711 -36558,1715:455,155,75,0,0,0.0756715 -36559,1715:456,156,75,0,0,0.0757002 -36560,1715:457,157,75,0,0,0.075729 -36561,1715:458,158,75,0,0,0.0758225 -36562,1715:459,159,75,0,0,0.0759307 -36563,1716:350,160,75,0,0,0.0759956 -36564,1716:351,161,75,0,0,0.076046 -36565,1716:352,162,75,0,0,0.0761111 -36566,1716:353,163,75,0,0,0.0761256 -36567,1716:354,164,75,0,0,0.0761327 -36568,1716:455,165,75,0,0,0.0761327 -36569,1716:456,166,75,0,0,0.07614 -36570,1716:457,167,75,0,0,0.0761545 -36571,1716:458,168,75,0,0,0.0761618 -36572,1716:459,169,75,0,0,0.0761907 -36573,1717:350,170,75,0,0,0.0762123 -36574,1717:351,171,75,0,0,0.0762267 -36575,1717:352,172,75,0,0,0.076234 -36576,1717:353,173,75,0,0,0.076234 -36577,1717:354,174,75,0,0,0.0762413 -36578,1717:455,175,75,0,0,0.0762629 -36579,1717:456,176,75,0,0,0.0762918 -36580,1717:457,177,75,0,0,0.0763137 -36581,1717:458,178,75,0,0,0.0763208 -36582,1717:459,179,75,0,0,0.0763208 -36583,1718:350,180,75,0,0,0.0763571 -36584,7718:360,-180,76,0,0,0.0763427 -36585,7717:469,-179,76,0,0,0.0763571 -36586,7717:468,-178,76,0,0,0.0763571 -36587,7717:467,-177,76,0,0,0.0763643 -36588,7717:466,-176,76,0,0,0.0764006 -36589,7717:465,-175,76,0,0,0.0764223 -36590,7717:364,-174,76,0,0,0.0764296 -36591,7717:363,-173,76,0,0,0.0764513 -36592,7717:362,-172,76,0,0,0.0764659 -36593,7717:361,-171,76,0,0,0.0764732 -36594,7717:360,-170,76,0,0,0.0764803 -36595,7716:469,-169,76,0,0,0.0764949 -36596,7716:468,-168,76,0,0,0.0765384 -36597,7716:467,-167,76,0,0,0.0765747 -36598,7716:466,-166,76,0,0,0.076553 -36599,7716:465,-165,76,0,0,0.0764803 -36600,7716:364,-164,76,0,0,0.0764006 -36601,7716:363,-163,76,0,0,0.0763571 -36602,7716:362,-162,76,0,0,0.0764803 -36603,7716:361,-161,76,0,0,0.0766111 -36604,7715:469,-159,76,0,0,0.0766765 -36605,7715:468,-158,76,0,0,0.0765967 -36606,7715:467,-157,76,0,0,0.0766257 -36607,7715:466,-156,76,0,0,0.0767785 -36608,7715:465,-155,76,0,0,0.0768221 -36609,7715:364,-154,76,0,0,0.0764876 -36610,7714:363,-143,76,0,0,0.0767274 -36611,7713:465,-135,76,0,0,0.077856 -36612,7713:364,-134,76,0,0,0.077878 -36613,7713:363,-133,76,0,0,0.0779296 -36614,7708:361,-81,76,0,0,0.0785819 -36615,7708:360,-80,76,0,0,0.0785744 -36616,7707:469,-79,76,0,0,0.0782922 -36617,7707:468,-78,76,0,0,0.080007 -36618,7707:467,-77,76,0,0,0.080113 -36619,7707:466,-76,76,0,0,0.0790369 -36620,7707:465,-75,76,0,0,0.0792915 -36621,7707:364,-74,76,0,0,0.0783368 -36622,7707:363,-73,76,0,0,0.078048 -36623,7707:362,-72,76,0,0,0.077797 -36624,7707:361,-71,76,0,0,0.0775394 -36625,7707:360,-70,76,0,0,0.0774806 -36626,7706:469,-69,76,0,0,0.077679 -36627,7706:468,-68,76,0,0,0.0777821 -36628,7706:364,-64,76,0,0,0.0769973 -36629,7706:363,-63,76,0,0,0.0770191 -36630,7706:362,-62,76,0,0,0.0769681 -36631,7706:360,-60,76,0,0,0.0769754 -36632,7705:469,-59,76,0,0,0.0769462 -36633,7705:467,-57,76,0,0,0.0766621 -36634,7705:466,-56,76,0,0,0.0765967 -36635,7705:465,-55,76,0,0,0.0764369 -36636,7705:362,-52,76,0,0,0.0766692 -36637,7705:360,-50,76,0,0,0.0765676 -36638,7704:469,-49,76,0,0,0.0765747 -36639,7704:468,-48,76,0,0,0.0764876 -36640,7704:467,-47,76,0,0,0.076415 -36641,7704:362,-42,76,0,0,0.0767056 -36642,7703:364,-34,76,0,0,0.0761834 -36643,7703:363,-33,76,0,0,0.0761834 -36644,7703:362,-32,76,0,0,0.0761618 -36645,7703:361,-31,76,0,0,0.0761618 -36646,7703:360,-30,76,0,0,0.0761689 -36647,7702:469,-29,76,0,0,0.0761978 -36648,7702:468,-28,76,0,0,0.076234 -36649,7702:467,-27,76,0,0,0.0762702 -36650,7702:466,-26,76,0,0,0.0762702 -36651,7702:465,-25,76,0,0,0.0762775 -36652,7702:364,-24,76,0,0,0.0762918 -36653,7702:363,-23,76,0,0,0.0762991 -36654,7702:362,-22,76,0,0,0.0762775 -36655,7702:361,-21,76,0,0,0.0761761 -36656,7702:360,-20,76,0,0,0.0761111 -36657,7701:469,-19,76,0,0,0.0759595 -36658,7701:468,-18,76,0,0,0.075729 -36659,7701:467,-17,76,0,0,0.0755998 -36660,7701:466,-16,76,0,0,0.0755711 -36661,7701:465,-15,76,0,0,0.0755781 -36662,7701:364,-14,76,0,0,0.0754706 -36663,7701:363,-13,76,0,0,0.0754133 -36664,7701:362,-12,76,0,0,0.0754562 -36665,7701:361,-11,76,0,0,0.0756141 -36666,7701:360,-10,76,0,0,0.0758874 -36667,7700:469,-9,76,0,0,0.0765384 -36668,7700:468,-8,76,0,0,0.0842266 -36669,7700:467,-7,76,0,0,0.0779075 -36670,7700:466,-6,76,0,0,0.0776495 -36671,7700:465,-5,76,0,0,0.0778854 -36672,7700:364,-4,76,0,0,0.0787159 -36673,7700:363,-3,76,0,0,0.0787605 -36674,7700:362,-2,76,0,0,0.0781663 -36675,7700:361,-1,76,0,0,0.0786636 -36676,1700:361,0,76,0,0,0.0803632 -36677,1700:361,1,76,0,0,0.0877057 -36678,1700:362,2,76,0,0,0.0847193 -36679,1700:363,3,76,0,0,0.0848149 -36680,1700:364,4,76,0,0,0.0888136 -36681,1700:465,5,76,0,0,0.0904231 -36682,1700:466,6,76,0,0,0.0990346 -36683,1700:467,7,76,0,0,0.0904992 -36684,1700:468,8,76,0,0,0.0935551 -36685,1700:469,9,76,0,0,0.0970091 -36686,1701:360,10,76,0,0,0.0937995 -36687,1701:364,14,76,0,0,0.077797 -36688,1701:465,15,76,0,0,0.0778116 -36689,1701:466,16,76,0,0,0.0773411 -36690,1701:467,17,76,0,0,0.077635 -36691,1701:468,18,76,0,0,0.0780256 -36692,1701:469,19,76,0,0,0.0789545 -36693,1702:360,20,76,0,0,0.0814173 -36694,1702:361,21,76,0,0,0.0815327 -36695,1713:469,139,76,0,0,0.0784927 -36696,1714:360,140,76,0,0,0.077974 -36697,1714:361,141,76,0,0,0.0771873 -36698,1714:362,142,76,0,0,0.0761689 -36699,1714:363,143,76,0,0,0.0755567 -36700,1714:364,144,76,0,0,0.075758 -36701,1714:465,145,76,0,0,0.0754706 -36702,1714:468,148,76,0,0,0.0758225 -36703,1714:469,149,76,0,0,0.0758298 -36704,1715:360,150,76,0,0,0.0755207 -36705,1715:361,151,76,0,0,0.0753203 -36706,1715:362,152,76,0,0,0.0753272 -36707,1715:363,153,76,0,0,0.0753561 -36708,1715:364,154,76,0,0,0.0755065 -36709,1715:465,155,76,0,0,0.0756715 -36710,1715:466,156,76,0,0,0.0757507 -36711,1715:467,157,76,0,0,0.0757937 -36712,1715:468,158,76,0,0,0.0758298 -36713,1715:469,159,76,0,0,0.0758946 -36714,1716:360,160,76,0,0,0.0759379 -36715,1716:361,161,76,0,0,0.0759884 -36716,1716:362,162,76,0,0,0.0760606 -36717,1716:363,163,76,0,0,0.0761111 -36718,1716:364,164,76,0,0,0.0761256 -36719,1716:465,165,76,0,0,0.0761327 -36720,1716:466,166,76,0,0,0.0761472 -36721,1716:467,167,76,0,0,0.0761618 -36722,1716:468,168,76,0,0,0.0761761 -36723,1716:469,169,76,0,0,0.0761761 -36724,1717:360,170,76,0,0,0.0761907 -36725,1717:361,171,76,0,0,0.0761978 -36726,1717:362,172,76,0,0,0.076205 -36727,1717:363,173,76,0,0,0.0762196 -36728,1717:364,174,76,0,0,0.076234 -36729,1717:465,175,76,0,0,0.0762558 -36730,1717:466,176,76,0,0,0.0762848 -36731,1717:467,177,76,0,0,0.0763064 -36732,1717:468,178,76,0,0,0.0763208 -36733,1717:469,179,76,0,0,0.0763281 -36734,1718:360,180,76,0,0,0.0763427 -36735,7718:370,-180,77,0,0,0.0763354 -36736,7717:479,-179,77,0,0,0.07635 -36737,7717:478,-178,77,0,0,0.07635 -36738,7717:477,-177,77,0,0,0.0763643 -36739,7717:476,-176,77,0,0,0.0763789 -36740,7717:475,-175,77,0,0,0.0764006 -36741,7717:374,-174,77,0,0,0.0764079 -36742,7717:373,-173,77,0,0,0.0764079 -36743,7717:372,-172,77,0,0,0.0764079 -36744,7717:371,-171,77,0,0,0.0764369 -36745,7717:370,-170,77,0,0,0.0764803 -36746,7716:479,-169,77,0,0,0.0765166 -36747,7716:478,-168,77,0,0,0.076524 -36748,7716:477,-167,77,0,0,0.0765384 -36749,7716:476,-166,77,0,0,0.0764949 -36750,7716:475,-165,77,0,0,0.076415 -36751,7716:374,-164,77,0,0,0.0763571 -36752,7716:373,-163,77,0,0,0.0763789 -36753,7716:372,-162,77,0,0,0.0765967 -36754,7715:479,-159,77,0,0,0.0765313 -36755,7715:477,-157,77,0,0,0.0765603 -36756,7715:476,-156,77,0,0,0.0766111 -36757,7715:475,-155,77,0,0,0.0766912 -36758,7715:374,-154,77,0,0,0.0767203 -36759,7715:371,-151,77,0,0,0.0766692 -36760,7714:372,-142,77,0,0,0.0767056 -36761,7713:475,-135,77,0,0,0.077679 -36762,7713:374,-134,77,0,0,0.0777084 -36763,7713:373,-133,77,0,0,0.0778854 -36764,7708:371,-81,77,0,0,0.0781367 -36765,7708:370,-80,77,0,0,0.0780331 -36766,7707:479,-79,77,0,0,0.0780035 -36767,7707:477,-77,77,0,0,0.0786041 -36768,7707:476,-76,77,0,0,0.0782255 -36769,7707:373,-73,77,0,0,0.0778854 -36770,7707:372,-72,77,0,0,0.0776644 -36771,7707:371,-71,77,0,0,0.0773559 -36772,7707:370,-70,77,0,0,0.0772018 -36773,7706:479,-69,77,0,0,0.0776421 -36774,7706:371,-61,77,0,0,0.0766475 -36775,7706:370,-60,77,0,0,0.0767638 -36776,7705:479,-59,77,0,0,0.0768659 -36777,7705:476,-56,77,0,0,0.0765022 -36778,7705:475,-55,77,0,0,0.0764949 -36779,7705:372,-52,77,0,0,0.0764659 -36780,7705:371,-51,77,0,0,0.0764296 -36781,7705:370,-50,77,0,0,0.0764513 -36782,7704:374,-44,77,0,0,0.0765967 -36783,7704:373,-43,77,0,0,0.0766257 -36784,7703:476,-36,77,0,0,0.0763137 -36785,7703:475,-35,77,0,0,0.0761978 -36786,7703:374,-34,77,0,0,0.0761618 -36787,7703:373,-33,77,0,0,0.0761327 -36788,7703:372,-32,77,0,0,0.0761472 -36789,7703:371,-31,77,0,0,0.0761907 -36790,7703:370,-30,77,0,0,0.076234 -36791,7702:479,-29,77,0,0,0.0762629 -36792,7702:478,-28,77,0,0,0.0762629 -36793,7702:477,-27,77,0,0,0.0762702 -36794,7702:476,-26,77,0,0,0.0762848 -36795,7702:475,-25,77,0,0,0.0762848 -36796,7702:374,-24,77,0,0,0.0762848 -36797,7702:373,-23,77,0,0,0.0762702 -36798,7702:372,-22,77,0,0,0.0762267 -36799,7702:371,-21,77,0,0,0.0761907 -36800,7702:370,-20,77,0,0,0.0761472 -36801,7701:479,-19,77,0,0,0.076046 -36802,7701:478,-18,77,0,0,0.0759307 -36803,7701:477,-17,77,0,0,0.075758 -36804,7701:476,-16,77,0,0,0.0755567 -36805,7701:475,-15,77,0,0,0.0753631 -36806,7701:374,-14,77,0,0,0.0753344 -36807,7701:373,-13,77,0,0,0.0753489 -36808,7701:372,-12,77,0,0,0.0752772 -36809,7701:371,-11,77,0,0,0.0753631 -36810,7701:370,-10,77,0,0,0.0756068 -36811,7700:479,-9,77,0,0,0.0761545 -36812,7700:478,-8,77,0,0,0.0767056 -36813,7700:477,-7,77,0,0,0.0775687 -36814,7700:476,-6,77,0,0,0.078783 -36815,7700:475,-5,77,0,0,0.0788128 -36816,7700:374,-4,77,0,0,0.0778706 -36817,7700:372,-2,77,0,0,0.0795921 -36818,7700:371,-1,77,0,0,0.0792764 -36819,1700:371,0,77,0,0,0.0839498 -36820,1700:371,1,77,0,0,0.086448 -36821,1700:372,2,77,0,0,0.0850786 -36822,1700:373,3,77,0,0,0.0836422 -36823,1700:374,4,77,0,0,0.0938867 -36824,1700:475,5,77,0,0,0.096542 -36825,1700:476,6,77,0,0,0.0947997 -36826,1700:477,7,77,0,0,0.0852225 -36827,1700:478,8,77,0,0,0.0910759 -36828,1700:479,9,77,0,0,0.0895062 -36829,1701:372,12,77,0,0,0.0771799 -36830,1701:373,13,77,0,0,0.0768149 -36831,1701:374,14,77,0,0,0.0769754 -36832,1701:475,15,77,0,0,0.0769462 -36833,1701:476,16,77,0,0,0.077063 -36834,1701:477,17,77,0,0,0.0771581 -36835,1701:478,18,77,0,0,0.0773778 -36836,1701:479,19,77,0,0,0.0779591 -36837,1702:370,20,77,0,0,0.0801736 -36838,1702:371,21,77,0,0,0.0786861 -36839,1702:372,22,77,0,0,0.0764006 -36840,1713:477,137,77,0,0,0.078783 -36841,1713:478,138,77,0,0,0.0785669 -36842,1713:479,139,77,0,0,0.0779519 -36843,1714:370,140,77,0,0,0.0769681 -36844,1714:371,141,77,0,0,0.075313 -36845,1714:372,142,77,0,0,0.0752986 -36846,1714:373,143,77,0,0,0.0754779 -36847,1714:374,144,77,0,0,0.0758443 -36848,1714:475,145,77,0,0,0.0757002 -36849,1714:479,149,77,0,0,0.0756572 -36850,1715:370,150,77,0,0,0.0758155 -36851,1715:371,151,77,0,0,0.0753561 -36852,1715:372,152,77,0,0,0.0753203 -36853,1715:373,153,77,0,0,0.0753272 -36854,1715:374,154,77,0,0,0.0754921 -36855,1715:475,155,77,0,0,0.0756428 -36856,1715:476,156,77,0,0,0.0757002 -36857,1715:477,157,77,0,0,0.0757362 -36858,1715:478,158,77,0,0,0.0757937 -36859,1715:479,159,77,0,0,0.0758731 -36860,1716:370,160,77,0,0,0.0759307 -36861,1716:371,161,77,0,0,0.0759668 -36862,1716:372,162,77,0,0,0.0760245 -36863,1716:373,163,77,0,0,0.0761038 -36864,1716:374,164,77,0,0,0.07614 -36865,1716:475,165,77,0,0,0.0761472 -36866,1716:476,166,77,0,0,0.0761545 -36867,1716:477,167,77,0,0,0.0761618 -36868,1716:478,168,77,0,0,0.0761834 -36869,1716:479,169,77,0,0,0.0761907 -36870,1717:370,170,77,0,0,0.0761907 -36871,1717:371,171,77,0,0,0.0761978 -36872,1717:372,172,77,0,0,0.076205 -36873,1717:373,173,77,0,0,0.0762196 -36874,1717:374,174,77,0,0,0.0762267 -36875,1717:475,175,77,0,0,0.0762629 -36876,1717:476,176,77,0,0,0.0762918 -36877,1717:477,177,77,0,0,0.0763064 -36878,1717:478,178,77,0,0,0.0763137 -36879,1717:479,179,77,0,0,0.0763208 -36880,1718:370,180,77,0,0,0.0763354 -36881,7718:380,-180,78,0,0,0.0763064 -36882,7717:489,-179,78,0,0,0.0763137 -36883,7717:488,-178,78,0,0,0.0763281 -36884,7717:487,-177,78,0,0,0.07635 -36885,7717:486,-176,78,0,0,0.0763643 -36886,7717:485,-175,78,0,0,0.0763789 -36887,7717:384,-174,78,0,0,0.0763716 -36888,7717:383,-173,78,0,0,0.0763643 -36889,7717:382,-172,78,0,0,0.0764006 -36890,7717:381,-171,78,0,0,0.0764442 -36891,7717:380,-170,78,0,0,0.0764949 -36892,7716:489,-169,78,0,0,0.0764949 -36893,7716:488,-168,78,0,0,0.0764949 -36894,7716:487,-167,78,0,0,0.0764803 -36895,7716:486,-166,78,0,0,0.0764223 -36896,7716:485,-165,78,0,0,0.0763643 -36897,7716:384,-164,78,0,0,0.0763427 -36898,7716:383,-163,78,0,0,0.0765093 -36899,7715:489,-159,78,0,0,0.0764949 -36900,7715:488,-158,78,0,0,0.076553 -36901,7715:485,-155,78,0,0,0.0766328 -36902,7715:384,-154,78,0,0,0.0766111 -36903,7715:383,-153,78,0,0,0.0766184 -36904,7715:382,-152,78,0,0,0.0766621 -36905,7715:381,-151,78,0,0,0.0766184 -36906,7714:489,-149,78,0,0,0.0776275 -36907,7714:382,-142,78,0,0,0.0759452 -36908,7713:485,-135,78,0,0,0.0776644 -36909,7713:384,-134,78,0,0,0.077819 -36910,7713:383,-133,78,0,0,0.0778116 -36911,7708:380,-80,78,0,0,0.0779224 -36912,7707:489,-79,78,0,0,0.077974 -36913,7707:488,-78,78,0,0,0.078085 -36914,7707:485,-75,78,0,0,0.0784405 -36915,7707:382,-72,78,0,0,0.0773411 -36916,7707:381,-71,78,0,0,0.0770117 -36917,7707:380,-70,78,0,0,0.0770191 -36918,7706:489,-69,78,0,0,0.0770922 -36919,7706:488,-68,78,0,0,0.0772311 -36920,7706:487,-67,78,0,0,0.0772459 -36921,7706:382,-62,78,0,0,0.0766692 -36922,7706:381,-61,78,0,0,0.0766038 -36923,7706:380,-60,78,0,0,0.0766257 -36924,7705:489,-59,78,0,0,0.0767203 -36925,7705:488,-58,78,0,0,0.0766111 -36926,7705:487,-57,78,0,0,0.0765093 -36927,7705:486,-56,78,0,0,0.0765022 -36928,7705:485,-55,78,0,0,0.0764949 -36929,7705:384,-54,78,0,0,0.0765166 -36930,7705:382,-52,78,0,0,0.0765093 -36931,7705:380,-50,78,0,0,0.0764513 -36932,7704:489,-49,78,0,0,0.0765384 -36933,7704:383,-43,78,0,0,0.0766111 -36934,7703:488,-38,78,0,0,0.0764006 -36935,7703:487,-37,78,0,0,0.0763137 -36936,7703:486,-36,78,0,0,0.0762629 -36937,7703:485,-35,78,0,0,0.0762775 -36938,7703:384,-34,78,0,0,0.0762413 -36939,7703:383,-33,78,0,0,0.0762123 -36940,7703:382,-32,78,0,0,0.076205 -36941,7703:381,-31,78,0,0,0.0762123 -36942,7703:380,-30,78,0,0,0.0762413 -36943,7702:489,-29,78,0,0,0.0762558 -36944,7702:488,-28,78,0,0,0.0762485 -36945,7702:487,-27,78,0,0,0.0762702 -36946,7702:486,-26,78,0,0,0.0762775 -36947,7702:485,-25,78,0,0,0.0762918 -36948,7702:384,-24,78,0,0,0.0762558 -36949,7702:383,-23,78,0,0,0.0762267 -36950,7702:382,-22,78,0,0,0.0762123 -36951,7702:381,-21,78,0,0,0.0761472 -36952,7702:380,-20,78,0,0,0.0760749 -36953,7701:489,-19,78,0,0,0.0760029 -36954,7701:488,-18,78,0,0,0.0758658 -36955,7701:487,-17,78,0,0,0.0757867 -36956,7701:486,-16,78,0,0,0.07565 -36957,7701:485,-15,78,0,0,0.0754492 -36958,7701:384,-14,78,0,0,0.075313 -36959,7701:383,-13,78,0,0,0.07527 -36960,7701:382,-12,78,0,0,0.0752559 -36961,7701:381,-11,78,0,0,0.0752631 -36962,7701:380,-10,78,0,0,0.0754061 -36963,7700:489,-9,78,0,0,0.0759162 -36964,7700:488,-8,78,0,0,0.0762775 -36965,7700:487,-7,78,0,0,0.0775026 -36966,7700:486,-6,78,0,0,0.0786266 -36967,7700:485,-5,78,0,0,0.0788053 -36968,7700:384,-4,78,0,0,0.0790369 -36969,7700:383,-3,78,0,0,0.0784852 -36970,7700:381,-1,78,0,0,0.0818642 -36971,1700:381,0,78,0,0,0.0824762 -36972,1700:381,1,78,0,0,0.0787234 -36973,1700:382,2,78,0,0,0.0782551 -36974,1700:383,3,78,0,0,0.0773411 -36975,1700:384,4,78,0,0,0.0814095 -36976,1700:485,5,78,0,0,0.0871239 -36977,1700:486,6,78,0,0,0.0884567 -36978,1700:487,7,78,0,0,0.0905415 -36979,1700:488,8,78,0,0,0.0839419 -36980,1701:381,11,78,0,0,0.0786861 -36981,1701:382,12,78,0,0,0.0769754 -36982,1701:383,13,78,0,0,0.0768514 -36983,1701:384,14,78,0,0,0.0768732 -36984,1701:485,15,78,0,0,0.0766839 -36985,1701:486,16,78,0,0,0.0769973 -36986,1701:487,17,78,0,0,0.0773118 -36987,1701:488,18,78,0,0,0.0787009 -36988,1701:489,19,78,0,0,0.0803555 -36989,1702:380,20,78,0,0,0.0803405 -36990,1702:381,21,78,0,0,0.0811335 -36991,1702:382,22,78,0,0,0.0782775 -36992,1702:383,23,78,0,0,0.0762485 -36993,1713:383,133,78,0,0,0.0802265 -36994,1713:384,134,78,0,0,0.079939 -36995,1713:485,135,78,0,0,0.0794567 -36996,1713:486,136,78,0,0,0.07827 -36997,1713:487,137,78,0,0,0.0767056 -36998,1713:488,138,78,0,0,0.0764876 -36999,1713:489,139,78,0,0,0.0758298 -37000,1714:380,140,78,0,0,0.0756355 -37001,1714:381,141,78,0,0,0.0757435 -37002,1714:382,142,78,0,0,0.0759523 -37003,1714:383,143,78,0,0,0.0760679 -37004,1714:384,144,78,0,0,0.0760606 -37005,1714:485,145,78,0,0,0.076039 -37006,1714:486,146,78,0,0,0.0755135 -37007,1715:380,150,78,0,0,0.0755424 -37008,1715:381,151,78,0,0,0.0756787 -37009,1715:382,152,78,0,0,0.0753489 -37010,1715:383,153,78,0,0,0.075313 -37011,1715:384,154,78,0,0,0.0754492 -37012,1715:485,155,78,0,0,0.0755494 -37013,1715:486,156,78,0,0,0.0755926 -37014,1715:487,157,78,0,0,0.0756285 -37015,1715:488,158,78,0,0,0.0757507 -37016,1715:489,159,78,0,0,0.0758803 -37017,1716:380,160,78,0,0,0.0759019 -37018,1716:381,161,78,0,0,0.0759234 -37019,1716:382,162,78,0,0,0.075974 -37020,1716:383,163,78,0,0,0.0760749 -37021,1716:384,164,78,0,0,0.07614 -37022,1716:485,165,78,0,0,0.0761472 -37023,1716:486,166,78,0,0,0.0761689 -37024,1716:487,167,78,0,0,0.0761834 -37025,1716:488,168,78,0,0,0.0761978 -37026,1716:489,169,78,0,0,0.0761978 -37027,1717:380,170,78,0,0,0.076205 -37028,1717:381,171,78,0,0,0.0762123 -37029,1717:382,172,78,0,0,0.0762196 -37030,1717:383,173,78,0,0,0.0762123 -37031,1717:384,174,78,0,0,0.0762267 -37032,1717:485,175,78,0,0,0.0762558 -37033,1717:486,176,78,0,0,0.0762848 -37034,1717:487,177,78,0,0,0.0762918 -37035,1717:488,178,78,0,0,0.0762918 -37036,1717:489,179,78,0,0,0.0762918 -37037,1718:380,180,78,0,0,0.0763064 -37038,7718:390,-180,79,0,0,0.0762702 -37039,7717:499,-179,79,0,0,0.0762918 -37040,7717:498,-178,79,0,0,0.0763354 -37041,7717:497,-177,79,0,0,0.0763354 -37042,7717:496,-176,79,0,0,0.0763354 -37043,7717:495,-175,79,0,0,0.0763427 -37044,7717:394,-174,79,0,0,0.0763571 -37045,7717:393,-173,79,0,0,0.076386 -37046,7717:392,-172,79,0,0,0.0764442 -37047,7717:391,-171,79,0,0,0.0764803 -37048,7717:390,-170,79,0,0,0.0764659 -37049,7716:499,-169,79,0,0,0.0764442 -37050,7716:498,-168,79,0,0,0.0764223 -37051,7716:497,-167,79,0,0,0.0763933 -37052,7716:496,-166,79,0,0,0.0763643 -37053,7716:495,-165,79,0,0,0.0763354 -37054,7716:394,-164,79,0,0,0.0763933 -37055,7716:393,-163,79,0,0,0.0765457 -37056,7716:391,-161,79,0,0,0.076553 -37057,7716:390,-160,79,0,0,0.0765747 -37058,7715:495,-155,79,0,0,0.0766184 -37059,7715:393,-153,79,0,0,0.0765457 -37060,7715:392,-152,79,0,0,0.0766038 -37061,7715:391,-151,79,0,0,0.0766184 -37062,7715:390,-150,79,0,0,0.0766328 -37063,7713:495,-135,79,0,0,0.0775687 -37064,7713:394,-134,79,0,0,0.077635 -37065,7713:393,-133,79,0,0,0.0776201 -37066,7713:392,-132,79,0,0,0.0778634 -37067,7708:391,-81,79,0,0,0.0777084 -37068,7708:390,-80,79,0,0,0.0779519 -37069,7707:499,-79,79,0,0,0.077937 -37070,7707:392,-72,79,0,0,0.0772825 -37071,7707:391,-71,79,0,0,0.0770409 -37072,7707:390,-70,79,0,0,0.0769825 -37073,7706:499,-69,79,0,0,0.0769681 -37074,7706:498,-68,79,0,0,0.0769681 -37075,7706:497,-67,79,0,0,0.0769168 -37076,7706:495,-65,79,0,0,0.077063 -37077,7706:394,-64,79,0,0,0.0769973 -37078,7706:392,-62,79,0,0,0.0767494 -37079,7706:391,-61,79,0,0,0.0765313 -37080,7706:390,-60,79,0,0,0.076524 -37081,7705:499,-59,79,0,0,0.0766328 -37082,7705:394,-54,79,0,0,0.0766257 -37083,7705:393,-53,79,0,0,0.0765676 -37084,7705:392,-52,79,0,0,0.0764659 -37085,7705:391,-51,79,0,0,0.0762991 -37086,7704:498,-48,79,0,0,0.0765384 -37087,7704:392,-42,79,0,0,0.0764803 -37088,7704:390,-40,79,0,0,0.0764513 -37089,7703:499,-39,79,0,0,0.0763281 -37090,7703:498,-38,79,0,0,0.0762775 -37091,7703:497,-37,79,0,0,0.0762702 -37092,7703:496,-36,79,0,0,0.0762702 -37093,7703:495,-35,79,0,0,0.0762991 -37094,7703:394,-34,79,0,0,0.0762918 -37095,7703:393,-33,79,0,0,0.0762413 -37096,7703:392,-32,79,0,0,0.0762413 -37097,7703:391,-31,79,0,0,0.0762413 -37098,7703:390,-30,79,0,0,0.076234 -37099,7702:499,-29,79,0,0,0.076234 -37100,7702:498,-28,79,0,0,0.076234 -37101,7702:497,-27,79,0,0,0.0762702 -37102,7702:496,-26,79,0,0,0.0762848 -37103,7702:495,-25,79,0,0,0.0762918 -37104,7702:394,-24,79,0,0,0.0762702 -37105,7702:393,-23,79,0,0,0.076205 -37106,7702:392,-22,79,0,0,0.0761689 -37107,7702:391,-21,79,0,0,0.0761472 -37108,7702:390,-20,79,0,0,0.0760967 -37109,7701:499,-19,79,0,0,0.076046 -37110,7701:498,-18,79,0,0,0.0759307 -37111,7701:497,-17,79,0,0,0.0756787 -37112,7701:496,-16,79,0,0,0.0755854 -37113,7701:495,-15,79,0,0,0.0754921 -37114,7701:394,-14,79,0,0,0.0753489 -37115,7701:393,-13,79,0,0,0.0752844 -37116,7701:392,-12,79,0,0,0.0752559 -37117,7701:391,-11,79,0,0,0.0752631 -37118,7701:390,-10,79,0,0,0.0753703 -37119,7700:499,-9,79,0,0,0.0755854 -37120,7700:498,-8,79,0,0,0.0758946 -37121,7700:497,-7,79,0,0,0.0775907 -37122,7700:496,-6,79,0,0,0.0782775 -37123,7700:495,-5,79,0,0,0.0782847 -37124,7700:394,-4,79,0,0,0.0781071 -37125,7700:392,-2,79,0,0,0.0771215 -37126,1700:391,0,79,0,0,0.0780552 -37127,1700:391,1,79,0,0,0.0799466 -37128,1700:392,2,79,0,0,0.0782626 -37129,1700:393,3,79,0,0,0.0768877 -37130,1700:394,4,79,0,0,0.0767858 -37131,1700:495,5,79,0,0,0.0778116 -37132,1700:496,6,79,0,0,0.0870013 -37133,1700:497,7,79,0,0,0.089699 -37134,1701:390,10,79,0,0,0.0787605 -37135,1701:391,11,79,0,0,0.0769899 -37136,1701:392,12,79,0,0,0.0766401 -37137,1701:393,13,79,0,0,0.076553 -37138,1701:394,14,79,0,0,0.0764442 -37139,1701:495,15,79,0,0,0.0763427 -37140,1701:496,16,79,0,0,0.0769681 -37141,1701:497,17,79,0,0,0.0784927 -37142,1701:498,18,79,0,0,0.0791042 -37143,1701:499,19,79,0,0,0.0785224 -37144,1702:390,20,79,0,0,0.0757435 -37145,1702:391,21,79,0,0,0.0759956 -37146,1702:392,22,79,0,0,0.0769681 -37147,1702:393,23,79,0,0,0.0763933 -37148,1702:394,24,79,0,0,0.0765166 -37149,1712:499,129,79,0,0,0.0892469 -37150,1713:393,133,79,0,0,0.0801812 -37151,1713:394,134,79,0,0,0.0790369 -37152,1713:495,135,79,0,0,0.0775981 -37153,1713:496,136,79,0,0,0.0762267 -37154,1713:497,137,79,0,0,0.0759091 -37155,1713:498,138,79,0,0,0.0756428 -37156,1713:499,139,79,0,0,0.0755207 -37157,1714:390,140,79,0,0,0.0754849 -37158,1714:391,141,79,0,0,0.075758 -37159,1714:392,142,79,0,0,0.0757507 -37160,1714:393,143,79,0,0,0.0755926 -37161,1714:394,144,79,0,0,0.075765 -37162,1714:495,145,79,0,0,0.0756787 -37163,1714:496,146,79,0,0,0.0756355 -37164,1714:497,147,79,0,0,0.0755926 -37165,1714:498,148,79,0,0,0.0755567 -37166,1714:499,149,79,0,0,0.0755998 -37167,1715:390,150,79,0,0,0.0754562 -37168,1715:391,151,79,0,0,0.0756572 -37169,1715:392,152,79,0,0,0.0754849 -37170,1715:393,153,79,0,0,0.0755135 -37171,1715:394,154,79,0,0,0.0755494 -37172,1715:495,155,79,0,0,0.0755567 -37173,1715:496,156,79,0,0,0.0755639 -37174,1715:497,157,79,0,0,0.0755998 -37175,1715:498,158,79,0,0,0.075758 -37176,1715:499,159,79,0,0,0.0758586 -37177,1716:390,160,79,0,0,0.0758515 -37178,1716:391,161,79,0,0,0.0758586 -37179,1716:392,162,79,0,0,0.0759234 -37180,1716:393,163,79,0,0,0.0760245 -37181,1716:394,164,79,0,0,0.0761183 -37182,1716:495,165,79,0,0,0.0761545 -37183,1716:496,166,79,0,0,0.0761761 -37184,1716:497,167,79,0,0,0.0761978 -37185,1716:498,168,79,0,0,0.0762123 -37186,1716:499,169,79,0,0,0.0762196 -37187,1717:390,170,79,0,0,0.0762267 -37188,1717:391,171,79,0,0,0.0762196 -37189,1717:392,172,79,0,0,0.0762123 -37190,1717:393,173,79,0,0,0.0762123 -37191,1717:394,174,79,0,0,0.076234 -37192,1717:495,175,79,0,0,0.0762558 -37193,1717:496,176,79,0,0,0.0762775 -37194,1717:497,177,79,0,0,0.0762848 -37195,1717:498,178,79,0,0,0.0762702 -37196,1717:499,179,79,0,0,0.0762702 -37197,1718:390,180,79,0,0,0.0762702 -37198,7818:100,-180,80,0,0,0.0762629 -37199,7817:209,-179,80,0,0,0.0762629 -37200,7817:208,-178,80,0,0,0.0762702 -37201,7817:207,-177,80,0,0,0.0762848 -37202,7817:206,-176,80,0,0,0.0763137 -37203,7817:205,-175,80,0,0,0.0763643 -37204,7817:104,-174,80,0,0,0.076386 -37205,7817:103,-173,80,0,0,0.0764079 -37206,7817:102,-172,80,0,0,0.0764369 -37207,7817:101,-171,80,0,0,0.0764586 -37208,7817:100,-170,80,0,0,0.076415 -37209,7816:209,-169,80,0,0,0.076386 -37210,7816:208,-168,80,0,0,0.0763789 -37211,7816:207,-167,80,0,0,0.0763716 -37212,7816:206,-166,80,0,0,0.07635 -37213,7816:205,-165,80,0,0,0.0763571 -37214,7816:104,-164,80,0,0,0.0764586 -37215,7816:103,-163,80,0,0,0.0765747 -37216,7816:102,-162,80,0,0,0.0764513 -37217,7816:101,-161,80,0,0,0.076582 -37218,7816:100,-160,80,0,0,0.0766328 -37219,7815:209,-159,80,0,0,0.0766983 -37220,7815:103,-153,80,0,0,0.0765166 -37221,7815:102,-152,80,0,0,0.0765022 -37222,7815:101,-151,80,0,0,0.0765967 -37223,7815:100,-150,80,0,0,0.0766839 -37224,7814:209,-149,80,0,0,0.0767056 -37225,7814:208,-148,80,0,0,0.0766184 -37226,7813:205,-135,80,0,0,0.0778116 -37227,7813:104,-134,80,0,0,0.0776055 -37228,7813:103,-133,80,0,0,0.0777821 -37229,7813:102,-132,80,0,0,0.0779445 -37230,7813:101,-131,80,0,0,0.0785744 -37231,7808:100,-80,80,0,0,0.0776201 -37232,7807:209,-79,80,0,0,0.0779149 -37233,7807:101,-71,80,0,0,0.0769825 -37234,7807:100,-70,80,0,0,0.0769681 -37235,7806:209,-69,80,0,0,0.0769389 -37236,7806:208,-68,80,0,0,0.0769534 -37237,7806:207,-67,80,0,0,0.0769242 -37238,7806:206,-66,80,0,0,0.0768806 -37239,7806:205,-65,80,0,0,0.0768294 -37240,7806:104,-64,80,0,0,0.0767567 -37241,7806:103,-63,80,0,0,0.0766621 -37242,7806:102,-62,80,0,0,0.0765747 -37243,7806:101,-61,80,0,0,0.0764659 -37244,7806:100,-60,80,0,0,0.076415 -37245,7805:209,-59,80,0,0,0.0764296 -37246,7805:208,-58,80,0,0,0.0763789 -37247,7805:205,-55,80,0,0,0.0765747 -37248,7805:104,-54,80,0,0,0.076582 -37249,7805:103,-53,80,0,0,0.0765603 -37250,7805:102,-52,80,0,0,0.0764586 -37251,7804:209,-49,80,0,0,0.0764223 -37252,7804:208,-48,80,0,0,0.0764586 -37253,7804:207,-47,80,0,0,0.0765603 -37254,7804:206,-46,80,0,0,0.0765747 -37255,7804:205,-45,80,0,0,0.0765747 -37256,7804:104,-44,80,0,0,0.0765313 -37257,7804:103,-43,80,0,0,0.0764659 -37258,7804:102,-42,80,0,0,0.076386 -37259,7804:101,-41,80,0,0,0.0763064 -37260,7804:100,-40,80,0,0,0.0762918 -37261,7803:209,-39,80,0,0,0.0763064 -37262,7803:208,-38,80,0,0,0.0762991 -37263,7803:207,-37,80,0,0,0.0762991 -37264,7803:206,-36,80,0,0,0.0762991 -37265,7803:205,-35,80,0,0,0.0762918 -37266,7803:104,-34,80,0,0,0.0762775 -37267,7803:103,-33,80,0,0,0.0762775 -37268,7803:102,-32,80,0,0,0.0762991 -37269,7803:101,-31,80,0,0,0.0762991 -37270,7803:100,-30,80,0,0,0.0762848 -37271,7802:209,-29,80,0,0,0.0762775 -37272,7802:208,-28,80,0,0,0.0762775 -37273,7802:207,-27,80,0,0,0.0762918 -37274,7802:206,-26,80,0,0,0.0762918 -37275,7802:205,-25,80,0,0,0.0762918 -37276,7802:104,-24,80,0,0,0.0762775 -37277,7802:103,-23,80,0,0,0.0762267 -37278,7802:102,-22,80,0,0,0.0761761 -37279,7802:101,-21,80,0,0,0.0761256 -37280,7802:100,-20,80,0,0,0.0760533 -37281,7801:209,-19,80,0,0,0.0760317 -37282,7801:208,-18,80,0,0,0.0759307 -37283,7801:207,-17,80,0,0,0.0758443 -37284,7801:206,-16,80,0,0,0.0757435 -37285,7801:205,-15,80,0,0,0.0755854 -37286,7801:104,-14,80,0,0,0.0753775 -37287,7801:103,-13,80,0,0,0.0753058 -37288,7801:102,-12,80,0,0,0.0752631 -37289,7801:101,-11,80,0,0,0.0752631 -37290,7801:100,-10,80,0,0,0.0752916 -37291,7800:209,-9,80,0,0,0.0753989 -37292,7800:208,-8,80,0,0,0.0755711 -37293,7800:207,-7,80,0,0,0.0766038 -37294,7800:206,-6,80,0,0,0.077797 -37295,7800:205,-5,80,0,0,0.0784108 -37296,7800:104,-4,80,0,0,0.0783812 -37297,7800:103,-3,80,0,0,0.0785819 -37298,7800:101,-1,80,0,0,0.0774584 -37299,1800:101,0,80,0,0,0.0770556 -37300,1800:101,1,80,0,0,0.0771141 -37301,1800:102,2,80,0,0,0.0769754 -37302,1800:103,3,80,0,0,0.0765022 -37303,1800:104,4,80,0,0,0.077224 -37304,1800:205,5,80,0,0,0.0793366 -37305,1800:206,6,80,0,0,0.0829205 -37306,1800:207,7,80,0,0,0.0865453 -37307,1800:209,9,80,0,0,0.0787905 -37308,1801:100,10,80,0,0,0.0772018 -37309,1801:101,11,80,0,0,0.0761761 -37310,1801:102,12,80,0,0,0.0761472 -37311,1801:103,13,80,0,0,0.0762196 -37312,1801:104,14,80,0,0,0.076386 -37313,1801:205,15,80,0,0,0.0769462 -37314,1801:206,16,80,0,0,0.0773263 -37315,1801:207,17,80,0,0,0.0774439 -37316,1801:208,18,80,0,0,0.0772825 -37317,1802:205,25,80,0,0,0.0786936 -37318,1812:100,120,80,0,0,0.0895312 -37319,1812:101,121,80,0,0,0.089523 -37320,1813:100,130,80,0,0,0.085431 -37321,1813:101,131,80,0,0,0.0826707 -37322,1813:102,132,80,0,0,0.079939 -37323,1813:103,133,80,0,0,0.0801962 -37324,1813:104,134,80,0,0,0.0798332 -37325,1813:205,135,80,0,0,0.0780701 -37326,1813:206,136,80,0,0,0.0762918 -37327,1813:207,137,80,0,0,0.076039 -37328,1813:208,138,80,0,0,0.0759307 -37329,1813:209,139,80,0,0,0.0758946 -37330,1814:100,140,80,0,0,0.0757002 -37331,1814:101,141,80,0,0,0.075801 -37332,1814:102,142,80,0,0,0.0755639 -37333,1814:103,143,80,0,0,0.0752772 -37334,1814:104,144,80,0,0,0.075528 -37335,1814:205,145,80,0,0,0.0759019 -37336,1814:206,146,80,0,0,0.0760967 -37337,1814:207,147,80,0,0,0.0763789 -37338,1814:208,148,80,0,0,0.0763354 -37339,1814:209,149,80,0,0,0.0762848 -37340,1815:100,150,80,0,0,0.0760822 -37341,1815:101,151,80,0,0,0.0755135 -37342,1815:102,152,80,0,0,0.0754275 -37343,1815:103,153,80,0,0,0.0755065 -37344,1815:104,154,80,0,0,0.0755207 -37345,1815:205,155,80,0,0,0.0755065 -37346,1815:206,156,80,0,0,0.0755424 -37347,1815:207,157,80,0,0,0.0756285 -37348,1815:208,158,80,0,0,0.075722 -37349,1815:209,159,80,0,0,0.0758082 -37350,1816:100,160,80,0,0,0.0758082 -37351,1816:101,161,80,0,0,0.0758155 -37352,1816:102,162,80,0,0,0.0758658 -37353,1816:103,163,80,0,0,0.0759523 -37354,1816:104,164,80,0,0,0.0760679 -37355,1816:205,165,80,0,0,0.07614 -37356,1816:206,166,80,0,0,0.0761545 -37357,1816:207,167,80,0,0,0.0761834 -37358,1816:208,168,80,0,0,0.0762196 -37359,1816:209,169,80,0,0,0.0762267 -37360,1817:100,170,80,0,0,0.076234 -37361,1817:101,171,80,0,0,0.0762485 -37362,1817:102,172,80,0,0,0.0762485 -37363,1817:103,173,80,0,0,0.076234 -37364,1817:104,174,80,0,0,0.0762413 -37365,1817:205,175,80,0,0,0.0762558 -37366,1817:206,176,80,0,0,0.0762629 -37367,1817:207,177,80,0,0,0.0762702 -37368,1817:208,178,80,0,0,0.0762702 -37369,1817:209,179,80,0,0,0.0762702 -37370,1818:100,180,80,0,0,0.0762629 -37371,7818:110,-180,81,0,0,0.0762558 -37372,7817:219,-179,81,0,0,0.0762485 -37373,7817:218,-178,81,0,0,0.0762558 -37374,7817:217,-177,81,0,0,0.0762775 -37375,7817:216,-176,81,0,0,0.0763427 -37376,7817:215,-175,81,0,0,0.0763716 -37377,7817:114,-174,81,0,0,0.0763789 -37378,7817:113,-173,81,0,0,0.0763933 -37379,7817:112,-172,81,0,0,0.076415 -37380,7817:111,-171,81,0,0,0.076415 -37381,7817:110,-170,81,0,0,0.0763933 -37382,7816:219,-169,81,0,0,0.0763789 -37383,7816:218,-168,81,0,0,0.0763571 -37384,7816:217,-167,81,0,0,0.0763643 -37385,7816:216,-166,81,0,0,0.0763716 -37386,7816:215,-165,81,0,0,0.0764006 -37387,7816:111,-161,81,0,0,0.0766257 -37388,7816:110,-160,81,0,0,0.076713 -37389,7815:219,-159,81,0,0,0.0767785 -37390,7815:218,-158,81,0,0,0.0768149 -37391,7815:217,-157,81,0,0,0.0768294 -37392,7815:114,-154,81,0,0,0.0763716 -37393,7815:113,-153,81,0,0,0.0763789 -37394,7815:112,-152,81,0,0,0.0764659 -37395,7815:111,-151,81,0,0,0.0765893 -37396,7815:110,-150,81,0,0,0.0766765 -37397,7814:219,-149,81,0,0,0.0767056 -37398,7813:215,-135,81,0,0,0.0777453 -37399,7813:111,-131,81,0,0,0.0781514 -37400,7813:110,-130,81,0,0,0.0784036 -37401,7812:219,-129,81,0,0,0.0790294 -37402,7812:218,-128,81,0,0,0.0790743 -37403,7812:217,-127,81,0,0,0.0791417 -37404,7807:218,-78,81,0,0,0.0778706 -37405,7806:218,-68,81,0,0,0.0769607 -37406,7806:217,-67,81,0,0,0.0769899 -37407,7806:216,-66,81,0,0,0.0769168 -37408,7806:215,-65,81,0,0,0.0767929 -37409,7806:114,-64,81,0,0,0.0767203 -37410,7806:113,-63,81,0,0,0.0766475 -37411,7806:112,-62,81,0,0,0.0765457 -37412,7806:111,-61,81,0,0,0.076415 -37413,7806:110,-60,81,0,0,0.0763716 -37414,7805:219,-59,81,0,0,0.0763571 -37415,7805:218,-58,81,0,0,0.0764006 -37416,7805:217,-57,81,0,0,0.0764369 -37417,7805:215,-55,81,0,0,0.0764876 -37418,7805:114,-54,81,0,0,0.0765093 -37419,7805:113,-53,81,0,0,0.0764803 -37420,7805:112,-52,81,0,0,0.0764586 -37421,7805:111,-51,81,0,0,0.076415 -37422,7804:218,-48,81,0,0,0.0764006 -37423,7804:217,-47,81,0,0,0.0765967 -37424,7804:216,-46,81,0,0,0.0766184 -37425,7804:215,-45,81,0,0,0.0765676 -37426,7804:114,-44,81,0,0,0.0763933 -37427,7804:113,-43,81,0,0,0.0762991 -37428,7804:112,-42,81,0,0,0.0762848 -37429,7804:111,-41,81,0,0,0.0763064 -37430,7804:110,-40,81,0,0,0.0763354 -37431,7803:219,-39,81,0,0,0.0763354 -37432,7803:218,-38,81,0,0,0.0763281 -37433,7803:217,-37,81,0,0,0.0763208 -37434,7803:216,-36,81,0,0,0.0763137 -37435,7803:215,-35,81,0,0,0.0763064 -37436,7803:114,-34,81,0,0,0.0762991 -37437,7803:113,-33,81,0,0,0.0762918 -37438,7803:112,-32,81,0,0,0.0763064 -37439,7803:111,-31,81,0,0,0.0763137 -37440,7803:110,-30,81,0,0,0.0762918 -37441,7802:219,-29,81,0,0,0.0762918 -37442,7802:218,-28,81,0,0,0.0762918 -37443,7802:217,-27,81,0,0,0.0762918 -37444,7802:216,-26,81,0,0,0.0763064 -37445,7802:215,-25,81,0,0,0.0763137 -37446,7802:114,-24,81,0,0,0.0762848 -37447,7802:113,-23,81,0,0,0.076234 -37448,7802:112,-22,81,0,0,0.0761907 -37449,7802:111,-21,81,0,0,0.0761689 -37450,7802:110,-20,81,0,0,0.0761327 -37451,7801:219,-19,81,0,0,0.0760822 -37452,7801:218,-18,81,0,0,0.0759595 -37453,7801:217,-17,81,0,0,0.0758155 -37454,7801:216,-16,81,0,0,0.0757075 -37455,7801:215,-15,81,0,0,0.075528 -37456,7801:114,-14,81,0,0,0.075442 -37457,7801:113,-13,81,0,0,0.0753631 -37458,7801:112,-12,81,0,0,0.0753272 -37459,7801:111,-11,81,0,0,0.075313 -37460,7801:110,-10,81,0,0,0.0752916 -37461,7800:219,-9,81,0,0,0.0752986 -37462,7800:218,-8,81,0,0,0.0754133 -37463,7800:217,-7,81,0,0,0.0759307 -37464,7800:216,-6,81,0,0,0.0765747 -37465,7800:215,-5,81,0,0,0.077532 -37466,7800:114,-4,81,0,0,0.0781812 -37467,7800:113,-3,81,0,0,0.0784108 -37468,7800:112,-2,81,0,0,0.0787159 -37469,7800:111,-1,81,0,0,0.0784777 -37470,1800:111,0,81,0,0,0.0777307 -37471,1800:111,1,81,0,0,0.0770338 -37472,1800:112,2,81,0,0,0.0769462 -37473,1800:113,3,81,0,0,0.0763137 -37474,1800:114,4,81,0,0,0.0763208 -37475,1800:215,5,81,0,0,0.0772018 -37476,1800:216,6,81,0,0,0.0779445 -37477,1800:219,9,81,0,0,0.07888 -37478,1801:110,10,81,0,0,0.076415 -37479,1801:111,11,81,0,0,0.0771873 -37480,1801:112,12,81,0,0,0.0779591 -37481,1801:113,13,81,0,0,0.0787382 -37482,1801:114,14,81,0,0,0.079254 -37483,1801:215,15,81,0,0,0.0802039 -37484,1812:217,127,81,0,0,0.0857286 -37485,1812:219,129,81,0,0,0.085359 -37486,1813:110,130,81,0,0,0.0858415 -37487,1813:111,131,81,0,0,0.084831 -37488,1813:112,132,81,0,0,0.0800146 -37489,1813:113,133,81,0,0,0.0806751 -37490,1813:114,134,81,0,0,0.0795092 -37491,1813:215,135,81,0,0,0.0774658 -37492,1813:216,136,81,0,0,0.0768221 -37493,1813:217,137,81,0,0,0.0763064 -37494,1813:218,138,81,0,0,0.0765022 -37495,1813:219,139,81,0,0,0.0764442 -37496,1814:110,140,81,0,0,0.0763933 -37497,1814:111,141,81,0,0,0.0762775 -37498,1814:112,142,81,0,0,0.076415 -37499,1814:113,143,81,0,0,0.0761907 -37500,1814:114,144,81,0,0,0.0759379 -37501,1814:215,145,81,0,0,0.075765 -37502,1814:216,146,81,0,0,0.0760749 -37503,1814:217,147,81,0,0,0.0762196 -37504,1814:218,148,81,0,0,0.0763208 -37505,1814:219,149,81,0,0,0.0766328 -37506,1815:110,150,81,0,0,0.0764223 -37507,1815:111,151,81,0,0,0.0755065 -37508,1815:112,152,81,0,0,0.0753917 -37509,1815:113,153,81,0,0,0.0754706 -37510,1815:114,154,81,0,0,0.075442 -37511,1815:215,155,81,0,0,0.0754634 -37512,1815:216,156,81,0,0,0.0754562 -37513,1815:217,157,81,0,0,0.0755207 -37514,1815:218,158,81,0,0,0.07565 -37515,1815:219,159,81,0,0,0.075758 -37516,1816:110,160,81,0,0,0.0757722 -37517,1816:111,161,81,0,0,0.0757937 -37518,1816:112,162,81,0,0,0.0758225 -37519,1816:113,163,81,0,0,0.0758803 -37520,1816:114,164,81,0,0,0.075974 -37521,1816:215,165,81,0,0,0.0761038 -37522,1816:216,166,81,0,0,0.0761761 -37523,1816:217,167,81,0,0,0.076205 -37524,1816:218,168,81,0,0,0.0762196 -37525,1816:219,169,81,0,0,0.076234 -37526,1817:110,170,81,0,0,0.0762558 -37527,1817:111,171,81,0,0,0.0762702 -37528,1817:112,172,81,0,0,0.0762558 -37529,1817:113,173,81,0,0,0.0762485 -37530,1817:114,174,81,0,0,0.0762558 -37531,1817:215,175,81,0,0,0.0762702 -37532,1817:216,176,81,0,0,0.0762848 -37533,1817:217,177,81,0,0,0.0762848 -37534,1817:218,178,81,0,0,0.0762918 -37535,1817:219,179,81,0,0,0.0762702 -37536,1818:110,180,81,0,0,0.0762558 -37537,7818:120,-180,82,0,0,0.0762629 -37538,7817:229,-179,82,0,0,0.0762629 -37539,7817:228,-178,82,0,0,0.0762848 -37540,7817:227,-177,82,0,0,0.0763137 -37541,7817:226,-176,82,0,0,0.07635 -37542,7817:225,-175,82,0,0,0.0763643 -37543,7817:124,-174,82,0,0,0.0763789 -37544,7817:123,-173,82,0,0,0.076386 -37545,7817:122,-172,82,0,0,0.0763933 -37546,7817:121,-171,82,0,0,0.0763933 -37547,7817:120,-170,82,0,0,0.0763716 -37548,7816:229,-169,82,0,0,0.0763427 -37549,7816:228,-168,82,0,0,0.0763354 -37550,7816:227,-167,82,0,0,0.0763643 -37551,7816:226,-166,82,0,0,0.0764732 -37552,7816:225,-165,82,0,0,0.0764949 -37553,7816:124,-164,82,0,0,0.0764369 -37554,7816:123,-163,82,0,0,0.0764803 -37555,7816:122,-162,82,0,0,0.0765384 -37556,7816:121,-161,82,0,0,0.0765893 -37557,7816:120,-160,82,0,0,0.0766692 -37558,7815:124,-154,82,0,0,0.0762558 -37559,7815:123,-153,82,0,0,0.07635 -37560,7815:122,-152,82,0,0,0.0765093 -37561,7815:121,-151,82,0,0,0.0766548 -37562,7815:120,-150,82,0,0,0.0766839 -37563,7814:228,-148,82,0,0,0.0767567 -37564,7814:227,-147,82,0,0,0.0768294 -37565,7814:226,-146,82,0,0,0.0768294 -37566,7813:226,-136,82,0,0,0.0777084 -37567,7813:225,-135,82,0,0,0.0776421 -37568,7813:123,-133,82,0,0,0.0789397 -37569,7808:120,-80,82,0,0,0.0803708 -37570,7807:228,-78,82,0,0,0.0778116 -37571,7807:227,-77,82,0,0,0.0776718 -37572,7806:122,-62,82,0,0,0.0765676 -37573,7806:121,-61,82,0,0,0.0763643 -37574,7806:120,-60,82,0,0,0.0763281 -37575,7805:229,-59,82,0,0,0.0763933 -37576,7805:228,-58,82,0,0,0.076386 -37577,7805:226,-56,82,0,0,0.0765313 -37578,7805:225,-55,82,0,0,0.0764803 -37579,7805:124,-54,82,0,0,0.0765166 -37580,7805:122,-52,82,0,0,0.0764659 -37581,7805:121,-51,82,0,0,0.0764876 -37582,7804:229,-49,82,0,0,0.0765313 -37583,7804:227,-47,82,0,0,0.0766692 -37584,7804:226,-46,82,0,0,0.0766401 -37585,7804:225,-45,82,0,0,0.0764296 -37586,7804:124,-44,82,0,0,0.0763281 -37587,7804:123,-43,82,0,0,0.0763354 -37588,7804:122,-42,82,0,0,0.0763427 -37589,7804:121,-41,82,0,0,0.07635 -37590,7804:120,-40,82,0,0,0.07635 -37591,7803:229,-39,82,0,0,0.0763427 -37592,7803:228,-38,82,0,0,0.07635 -37593,7803:227,-37,82,0,0,0.0763427 -37594,7803:226,-36,82,0,0,0.0763208 -37595,7803:225,-35,82,0,0,0.0762991 -37596,7803:124,-34,82,0,0,0.0762918 -37597,7803:123,-33,82,0,0,0.0762918 -37598,7803:122,-32,82,0,0,0.0762918 -37599,7803:121,-31,82,0,0,0.0763064 -37600,7803:120,-30,82,0,0,0.0762991 -37601,7802:229,-29,82,0,0,0.0762918 -37602,7802:228,-28,82,0,0,0.0762991 -37603,7802:227,-27,82,0,0,0.0763137 -37604,7802:226,-26,82,0,0,0.0763208 -37605,7802:225,-25,82,0,0,0.0763137 -37606,7802:124,-24,82,0,0,0.0762918 -37607,7802:123,-23,82,0,0,0.0762413 -37608,7802:122,-22,82,0,0,0.0761978 -37609,7802:121,-21,82,0,0,0.0761618 -37610,7802:120,-20,82,0,0,0.0760679 -37611,7801:229,-19,82,0,0,0.0759884 -37612,7801:228,-18,82,0,0,0.0759234 -37613,7801:227,-17,82,0,0,0.0758082 -37614,7801:226,-16,82,0,0,0.0756285 -37615,7801:225,-15,82,0,0,0.0755854 -37616,7801:124,-14,82,0,0,0.0756068 -37617,7801:123,-13,82,0,0,0.0754993 -37618,7801:122,-12,82,0,0,0.0753561 -37619,7801:121,-11,82,0,0,0.0753489 -37620,7801:120,-10,82,0,0,0.0753272 -37621,7800:229,-9,82,0,0,0.0753344 -37622,7800:228,-8,82,0,0,0.0753489 -37623,7800:227,-7,82,0,0,0.0754779 -37624,7800:226,-6,82,0,0,0.07614 -37625,7800:225,-5,82,0,0,0.0769024 -37626,7800:124,-4,82,0,0,0.0766983 -37627,7800:123,-3,82,0,0,0.0765166 -37628,7800:122,-2,82,0,0,0.0766111 -37629,7800:121,-1,82,0,0,0.0768585 -37630,1800:121,0,82,0,0,0.0766475 -37631,1800:121,1,82,0,0,0.076205 -37632,1800:122,2,82,0,0,0.0762196 -37633,1800:123,3,82,0,0,0.0760749 -37634,1800:124,4,82,0,0,0.0771433 -37635,1800:225,5,82,0,0,0.080022 -37636,1800:226,6,82,0,0,0.0803859 -37637,1800:227,7,82,0,0,0.079939 -37638,1800:228,8,82,0,0,0.080614 -37639,1800:229,9,82,0,0,0.0764949 -37640,1801:120,10,82,0,0,0.0772459 -37641,1801:121,11,82,0,0,0.0781884 -37642,1801:122,12,82,0,0,0.0795545 -37643,1801:123,13,82,0,0,0.0806445 -37644,1801:124,14,82,0,0,0.081471 -37645,1803:120,30,82,0,0,0.0895312 -37646,1811:228,118,82,0,0,0.089523 -37647,1811:229,119,82,0,0,0.0895062 -37648,1812:120,120,82,0,0,0.0895062 -37649,1812:121,121,82,0,0,0.0895062 -37650,1812:229,129,82,0,0,0.0830534 -37651,1813:120,130,82,0,0,0.0824683 -37652,1813:121,131,82,0,0,0.0837446 -37653,1813:122,132,82,0,0,0.0818408 -37654,1813:123,133,82,0,0,0.0807056 -37655,1813:124,134,82,0,0,0.0800296 -37656,1813:225,135,82,0,0,0.0785968 -37657,1813:226,136,82,0,0,0.0777821 -37658,1813:227,137,82,0,0,0.0770775 -37659,1813:228,138,82,0,0,0.0764223 -37660,1813:229,139,82,0,0,0.0762702 -37661,1814:120,140,82,0,0,0.0788053 -37662,1814:121,141,82,0,0,0.0789771 -37663,1814:122,142,82,0,0,0.0783812 -37664,1814:123,143,82,0,0,0.0779961 -37665,1814:124,144,82,0,0,0.0777821 -37666,1814:225,145,82,0,0,0.0759668 -37667,1814:226,146,82,0,0,0.0765313 -37668,1814:227,147,82,0,0,0.0759668 -37669,1814:228,148,82,0,0,0.0755854 -37670,1814:229,149,82,0,0,0.0771799 -37671,1815:120,150,82,0,0,0.0768294 -37672,1815:121,151,82,0,0,0.0755494 -37673,1815:122,152,82,0,0,0.0753917 -37674,1815:123,153,82,0,0,0.0753775 -37675,1815:124,154,82,0,0,0.0753272 -37676,1815:225,155,82,0,0,0.0753561 -37677,1815:226,156,82,0,0,0.0754203 -37678,1815:227,157,82,0,0,0.0754061 -37679,1815:228,158,82,0,0,0.0754921 -37680,1815:229,159,82,0,0,0.0756355 -37681,1816:120,160,82,0,0,0.0757362 -37682,1816:121,161,82,0,0,0.075765 -37683,1816:122,162,82,0,0,0.075765 -37684,1816:123,163,82,0,0,0.0757937 -37685,1816:124,164,82,0,0,0.0758803 -37686,1816:225,165,82,0,0,0.0760533 -37687,1816:226,166,82,0,0,0.0761545 -37688,1816:227,167,82,0,0,0.076205 -37689,1816:228,168,82,0,0,0.0762196 -37690,1816:229,169,82,0,0,0.0762413 -37691,1817:120,170,82,0,0,0.0762702 -37692,1817:121,171,82,0,0,0.0762775 -37693,1817:122,172,82,0,0,0.0762629 -37694,1817:123,173,82,0,0,0.0762629 -37695,1817:124,174,82,0,0,0.0762775 -37696,1817:225,175,82,0,0,0.0762848 -37697,1817:226,176,82,0,0,0.0762848 -37698,1817:227,177,82,0,0,0.0762848 -37699,1817:228,178,82,0,0,0.0762918 -37700,1817:229,179,82,0,0,0.0762775 -37701,1818:120,180,82,0,0,0.0762629 -37702,7818:130,-180,83,0,0,0.0762775 -37703,7817:239,-179,83,0,0,0.0762848 -37704,7817:238,-178,83,0,0,0.0763137 -37705,7817:237,-177,83,0,0,0.0763354 -37706,7817:236,-176,83,0,0,0.07635 -37707,7817:235,-175,83,0,0,0.0763571 -37708,7817:134,-174,83,0,0,0.0763571 -37709,7817:133,-173,83,0,0,0.0763643 -37710,7817:132,-172,83,0,0,0.0763716 -37711,7817:131,-171,83,0,0,0.0763643 -37712,7817:130,-170,83,0,0,0.0763354 -37713,7816:239,-169,83,0,0,0.0763354 -37714,7816:238,-168,83,0,0,0.0765313 -37715,7816:237,-167,83,0,0,0.0766184 -37716,7816:236,-166,83,0,0,0.0766257 -37717,7816:235,-165,83,0,0,0.0766038 -37718,7816:134,-164,83,0,0,0.0765457 -37719,7816:133,-163,83,0,0,0.0765022 -37720,7816:132,-162,83,0,0,0.0765022 -37721,7816:131,-161,83,0,0,0.0765384 -37722,7816:130,-160,83,0,0,0.0765384 -37723,7815:239,-159,83,0,0,0.0765022 -37724,7815:238,-158,83,0,0,0.0766692 -37725,7815:134,-154,83,0,0,0.0762775 -37726,7815:133,-153,83,0,0,0.0763571 -37727,7815:132,-152,83,0,0,0.076553 -37728,7815:131,-151,83,0,0,0.0766548 -37729,7815:130,-150,83,0,0,0.0766621 -37730,7813:237,-137,83,0,0,0.0776055 -37731,7813:236,-136,83,0,0,0.0777675 -37732,7813:133,-133,83,0,0,0.0792391 -37733,7808:131,-81,83,0,0,0.0791266 -37734,7807:238,-78,83,0,0,0.0777527 -37735,7806:134,-64,83,0,0,0.0766621 -37736,7806:133,-63,83,0,0,0.0766475 -37737,7806:132,-62,83,0,0,0.0765457 -37738,7806:131,-61,83,0,0,0.0763571 -37739,7806:130,-60,83,0,0,0.0762629 -37740,7805:236,-56,83,0,0,0.0766912 -37741,7805:235,-55,83,0,0,0.0765676 -37742,7805:134,-54,83,0,0,0.076582 -37743,7805:133,-53,83,0,0,0.076553 -37744,7805:132,-52,83,0,0,0.0765022 -37745,7805:131,-51,83,0,0,0.0765093 -37746,7805:130,-50,83,0,0,0.076553 -37747,7804:239,-49,83,0,0,0.0765967 -37748,7804:238,-48,83,0,0,0.0766038 -37749,7804:237,-47,83,0,0,0.0765384 -37750,7804:236,-46,83,0,0,0.0764513 -37751,7804:235,-45,83,0,0,0.0763281 -37752,7804:134,-44,83,0,0,0.07635 -37753,7804:133,-43,83,0,0,0.0763789 -37754,7804:132,-42,83,0,0,0.076386 -37755,7804:131,-41,83,0,0,0.0763716 -37756,7804:130,-40,83,0,0,0.0763643 -37757,7803:239,-39,83,0,0,0.0763571 -37758,7803:238,-38,83,0,0,0.0763571 -37759,7803:237,-37,83,0,0,0.0763354 -37760,7803:236,-36,83,0,0,0.0763064 -37761,7803:235,-35,83,0,0,0.0762775 -37762,7803:134,-34,83,0,0,0.0762702 -37763,7803:133,-33,83,0,0,0.0762848 -37764,7803:132,-32,83,0,0,0.0762848 -37765,7803:131,-31,83,0,0,0.0762848 -37766,7803:130,-30,83,0,0,0.0762918 -37767,7802:239,-29,83,0,0,0.0762848 -37768,7802:238,-28,83,0,0,0.0762775 -37769,7802:237,-27,83,0,0,0.0762775 -37770,7802:236,-26,83,0,0,0.0762702 -37771,7802:235,-25,83,0,0,0.0762848 -37772,7802:134,-24,83,0,0,0.0762775 -37773,7802:133,-23,83,0,0,0.0762413 -37774,7802:132,-22,83,0,0,0.0762123 -37775,7802:131,-21,83,0,0,0.0761689 -37776,7802:130,-20,83,0,0,0.0760895 -37777,7801:239,-19,83,0,0,0.0760245 -37778,7801:238,-18,83,0,0,0.0758658 -37779,7801:237,-17,83,0,0,0.0757435 -37780,7801:236,-16,83,0,0,0.075686 -37781,7801:235,-15,83,0,0,0.0757075 -37782,7801:134,-14,83,0,0,0.0757147 -37783,7801:133,-13,83,0,0,0.0755998 -37784,7801:132,-12,83,0,0,0.0754133 -37785,7801:131,-11,83,0,0,0.0753847 -37786,7801:130,-10,83,0,0,0.0753917 -37787,7800:239,-9,83,0,0,0.0753703 -37788,7800:238,-8,83,0,0,0.075313 -37789,7800:237,-7,83,0,0,0.0754275 -37790,7800:236,-6,83,0,0,0.0755926 -37791,7800:235,-5,83,0,0,0.076046 -37792,7800:134,-4,83,0,0,0.0760245 -37793,7800:133,-3,83,0,0,0.077063 -37794,7800:132,-2,83,0,0,0.0774584 -37795,7800:131,-1,83,0,0,0.0775762 -37796,1800:131,0,83,0,0,0.0777084 -37797,1800:131,1,83,0,0,0.0778634 -37798,1800:132,2,83,0,0,0.0776421 -37799,1800:133,3,83,0,0,0.0779149 -37800,1800:134,4,83,0,0,0.0781292 -37801,1800:235,5,83,0,0,0.0797805 -37802,1800:236,6,83,0,0,0.0799466 -37803,1800:237,7,83,0,0,0.0786861 -37804,1800:238,8,83,0,0,0.0762196 -37805,1800:239,9,83,0,0,0.0767785 -37806,1801:130,10,83,0,0,0.0780405 -37807,1801:131,11,83,0,0,0.0794416 -37808,1801:132,12,83,0,0,0.0802948 -37809,1801:133,13,83,0,0,0.081448 -37810,1801:134,14,83,0,0,0.0822588 -37811,1801:235,15,83,0,0,0.0829675 -37812,1801:236,16,83,0,0,0.0827254 -37813,1801:237,17,83,0,0,0.0852147 -37814,1801:238,18,83,0,0,0.0885065 -37815,1802:130,20,83,0,0,0.0895146 -37816,1802:131,21,83,0,0,0.0895146 -37817,1802:132,22,83,0,0,0.089523 -37818,1802:133,23,83,0,0,0.089523 -37819,1802:134,24,83,0,0,0.0895146 -37820,1802:235,25,83,0,0,0.0895146 -37821,1802:237,27,83,0,0,0.0894895 -37822,1802:238,28,83,0,0,0.0895062 -37823,1802:239,29,83,0,0,0.0895312 -37824,1811:237,117,83,0,0,0.089523 -37825,1811:238,118,83,0,0,0.0895062 -37826,1812:131,121,83,0,0,0.089523 -37827,1812:132,122,83,0,0,0.089523 -37828,1812:133,123,83,0,0,0.089523 -37829,1812:134,124,83,0,0,0.089523 -37830,1812:236,126,83,0,0,0.0895146 -37831,1812:237,127,83,0,0,0.0894977 -37832,1812:238,128,83,0,0,0.0885232 -37833,1813:130,130,83,0,0,0.0831004 -37834,1813:131,131,83,0,0,0.08222 -37835,1813:132,132,83,0,0,0.0818873 -37836,1813:133,133,83,0,0,0.0807971 -37837,1813:134,134,83,0,0,0.0799542 -37838,1813:235,135,83,0,0,0.0793815 -37839,1813:236,136,83,0,0,0.0776055 -37840,1813:237,137,83,0,0,0.0763208 -37841,1813:238,138,83,0,0,0.0769315 -37842,1813:239,139,83,0,0,0.080128 -37843,1814:130,140,83,0,0,0.0801509 -37844,1814:131,141,83,0,0,0.0799542 -37845,1814:132,142,83,0,0,0.0773852 -37846,1814:133,143,83,0,0,0.0765457 -37847,1814:134,144,83,0,0,0.0763281 -37848,1814:235,145,83,0,0,0.0764079 -37849,1814:236,146,83,0,0,0.0765022 -37850,1814:237,147,83,0,0,0.0766038 -37851,1814:238,148,83,0,0,0.0766111 -37852,1814:239,149,83,0,0,0.0763933 -37853,1815:130,150,83,0,0,0.0762196 -37854,1815:131,151,83,0,0,0.0763933 -37855,1815:132,152,83,0,0,0.0756932 -37856,1815:133,153,83,0,0,0.075442 -37857,1815:134,154,83,0,0,0.0753203 -37858,1815:235,155,83,0,0,0.0753561 -37859,1815:236,156,83,0,0,0.0753631 -37860,1815:237,157,83,0,0,0.0753775 -37861,1815:238,158,83,0,0,0.0753847 -37862,1815:239,159,83,0,0,0.0755781 -37863,1816:130,160,83,0,0,0.0756932 -37864,1816:131,161,83,0,0,0.0756645 -37865,1816:132,162,83,0,0,0.07565 -37866,1816:133,163,83,0,0,0.0757507 -37867,1816:134,164,83,0,0,0.0758874 -37868,1816:235,165,83,0,0,0.0759956 -37869,1816:236,166,83,0,0,0.0760606 -37870,1816:237,167,83,0,0,0.0761618 -37871,1816:238,168,83,0,0,0.0762123 -37872,1816:239,169,83,0,0,0.0762413 -37873,1817:130,170,83,0,0,0.0762848 -37874,1817:131,171,83,0,0,0.0762918 -37875,1817:132,172,83,0,0,0.0762848 -37876,1817:133,173,83,0,0,0.0762848 -37877,1817:134,174,83,0,0,0.0762848 -37878,1817:235,175,83,0,0,0.0762848 -37879,1817:236,176,83,0,0,0.0762918 -37880,1817:237,177,83,0,0,0.0762918 -37881,1817:238,178,83,0,0,0.0762848 -37882,1817:239,179,83,0,0,0.0762918 -37883,1818:130,180,83,0,0,0.0762775 -37884,7918:100,-180,90,0,0,0.0749916 -37885,7917:209,-179,90,0,0,0.0750201 -37886,7917:208,-178,90,0,0,0.0750201 -37887,7917:207,-177,90,0,0,0.0750416 -37888,7917:206,-176,90,0,0,0.0750488 -37889,7917:205,-175,90,0,0,0.0750558 -37890,7917:104,-174,90,0,0,0.0750702 -37891,7917:103,-173,90,0,0,0.0750773 -37892,7917:102,-172,90,0,0,0.0750843 -37893,7917:101,-171,90,0,0,0.0750843 -37894,7917:100,-170,90,0,0,0.0750915 -37895,7916:209,-169,90,0,0,0.0750987 -37896,7916:208,-168,90,0,0,0.0751059 -37897,7916:207,-167,90,0,0,0.0751128 -37898,7916:206,-166,90,0,0,0.0751059 -37899,7916:205,-165,90,0,0,0.0751059 -37900,7916:104,-164,90,0,0,0.0751059 -37901,7916:103,-163,90,0,0,0.0751128 -37902,7916:102,-162,90,0,0,0.0751128 -37903,7916:101,-161,90,0,0,0.07512 -37904,7916:100,-160,90,0,0,0.0751344 -37905,7915:209,-159,90,0,0,0.0751416 -37906,7915:208,-158,90,0,0,0.0751558 -37907,7915:207,-157,90,0,0,0.0751486 -37908,7915:206,-156,90,0,0,0.0751558 -37909,7915:205,-155,90,0,0,0.075163 -37910,7915:104,-154,90,0,0,0.0751486 -37911,7915:103,-153,90,0,0,0.075163 -37912,7915:102,-152,90,0,0,0.0751558 -37913,7915:101,-151,90,0,0,0.0751416 -37914,7915:100,-150,90,0,0,0.0751416 -37915,7914:209,-149,90,0,0,0.0751344 -37916,7914:208,-148,90,0,0,0.0751344 -37917,7914:207,-147,90,0,0,0.0751272 -37918,7914:206,-146,90,0,0,0.07512 -37919,7914:205,-145,90,0,0,0.07512 -37920,7914:104,-144,90,0,0,0.0751128 -37921,7914:103,-143,90,0,0,0.07512 -37922,7914:102,-142,90,0,0,0.0751128 -37923,7914:101,-141,90,0,0,0.0751128 -37924,7914:100,-140,90,0,0,0.07512 -37925,7913:209,-139,90,0,0,0.07512 -37926,7913:208,-138,90,0,0,0.0751272 -37927,7913:207,-137,90,0,0,0.07527 -37928,7913:206,-136,90,0,0,0.0758155 -37929,7913:205,-135,90,0,0,0.0776421 -37930,7913:104,-134,90,0,0,0.0779001 -37931,7911:100,-110,90,0,0,0.0832649 -37932,7910:209,-109,90,0,0,0.0880188 -37933,7910:206,-106,90,0,0,0.0759162 -37934,7910:205,-105,90,0,0,0.0753775 -37935,7910:104,-104,90,0,0,0.0768514 -37936,7910:103,-103,90,0,0,0.0810109 -37937,7906:101,-61,90,0,0,0.0753489 -37938,7906:100,-60,90,0,0,0.075163 -37939,7905:209,-59,90,0,0,0.0750201 -37940,7905:208,-58,90,0,0,0.074949 -37941,7905:207,-57,90,0,0,0.0749346 -37942,7905:206,-56,90,0,0,0.0749275 -37943,7905:205,-55,90,0,0,0.0749346 -37944,7905:104,-54,90,0,0,0.0749346 -37945,7905:103,-53,90,0,0,0.0749418 -37946,7905:102,-52,90,0,0,0.0749562 -37947,7905:101,-51,90,0,0,0.0749631 -37948,7905:100,-50,90,0,0,0.0749631 -37949,7904:209,-49,90,0,0,0.0749631 -37950,7904:208,-48,90,0,0,0.074949 -37951,7904:207,-47,90,0,0,0.0749703 -37952,7904:206,-46,90,0,0,0.0749988 -37953,7904:205,-45,90,0,0,0.0750273 -37954,7904:104,-44,90,0,0,0.0750201 -37955,7904:103,-43,90,0,0,0.0750201 -37956,7904:102,-42,90,0,0,0.0750131 -37957,7904:101,-41,90,0,0,0.0750201 -37958,7904:100,-40,90,0,0,0.0750345 -37959,7903:209,-39,90,0,0,0.0750345 -37960,7903:208,-38,90,0,0,0.0750345 -37961,7903:207,-37,90,0,0,0.0750345 -37962,7903:206,-36,90,0,0,0.0750345 -37963,7903:205,-35,90,0,0,0.0750416 -37964,7903:104,-34,90,0,0,0.0750345 -37965,7903:103,-33,90,0,0,0.0750345 -37966,7903:102,-32,90,0,0,0.0750416 -37967,7903:101,-31,90,0,0,0.0750488 -37968,7903:100,-30,90,0,0,0.0750488 -37969,7902:209,-29,90,0,0,0.0750488 -37970,7902:208,-28,90,0,0,0.0750345 -37971,7902:207,-27,90,0,0,0.0750201 -37972,7902:206,-26,90,0,0,0.0761183 -37973,7902:205,-25,90,0,0,0.0756715 -37974,7902:104,-24,90,0,0,0.0789397 -37975,1916:206,166,90,0,0,0.0752487 -37976,1916:207,167,90,0,0,0.075063 -37977,1916:208,168,90,0,0,0.0749846 -37978,1916:209,169,90,0,0,0.074899 -37979,1917:100,170,90,0,0,0.074892 -37980,1917:101,171,90,0,0,0.0748777 -37981,1917:102,172,90,0,0,0.0807894 -37982,1917:103,173,90,0,0,0.0878209 -37983,1917:104,174,90,0,0,0.087558 -37984,1917:205,175,90,0,0,0.0873776 -37985,1917:206,176,90,0,0,0.0863183 -37986,1917:207,177,90,0,0,0.0752844 -37987,1917:208,178,90,0,0,0.0748849 -37988,1917:209,179,90,0,0,0.074949 -37989,1918:100,180,90,0,0,0.0749916 - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/TGI1TlM2RjcrMmR1OUtmNGlWNFVMRVl6d09hWEYrd05HbWJQNStIS0N6Yz0 - The warnings from the underlying MaxEnt model - text/csv - - - http://data-d.d4science.org/TGI1TlM2RjcrMmR1OUtmNGlWNFVMRmEyV3I5bDJEQnFHbWJQNStIS0N6Yz0 - ASCII Maps of the environmental layers for checking features aligments - text/csv - - - http://data-d.d4science.org/NXNBN09EaVF1UFp1OUtmNGlWNFVMR05OR3FlNGpPb0NHbWJQNStIS0N6Yz0 - World Thumbnail - image/png - - - http://data-d.d4science.org/SzZaRHBaSmhwSmR1OUtmNGlWNFVMTXVqSFdROTFEUjZHbWJQNStIS0N6Yz0 - ROC Curve - image/png - - - http://data-d.d4science.org/TGJsd3BFbmhJWGx1OUtmNGlWNFVMTWZmVStUUlU0WjlHbWJQNStIS0N6Yz0 - Omission-Commission Curve - image/png - - - http://data-d.d4science.org/M1ZFbElJaGJOYjl1OUtmNGlWNFVMQzNQakl0OXc5b0ZHbWJQNStIS0N6Yz0 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - text/csv - - - - - - - - -2016-05-06 17:11:06 DEBUG SClient4WPS:970 - Process Executed -2016-05-06 17:11:06 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-06 17:11:06 DEBUG SClient4WPS:574 - Node Name: #text -2016-05-06 17:11:06 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-06 17:11:06 DEBUG SClient4WPS:574 - Node Name: #text -2016-05-06 17:11:06 DEBUG SClient4WPS:574 - Node Name: wps:ComplexData -2016-05-06 17:11:06 DEBUG SClient4WPS:574 - Node Name: ogr:FeatureCollection -2016-05-06 17:11:06 DEBUG SClient4WPS:574 - Node Name: gml:featureMember -2016-05-06 17:11:06 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/TGI1TlM2RjcrMmR1OUtmNGlWNFVMRVl6d09hWEYrd05HbWJQNStIS0N6Yz0 -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:The warnings from the underlying MaxEnt model -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:text/csv -2016-05-06 17:11:06 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/TGI1TlM2RjcrMmR1OUtmNGlWNFVMRmEyV3I5bDJEQnFHbWJQNStIS0N6Yz0 -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:ASCII Maps of the environmental layers for checking features aligments -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:text/csv -2016-05-06 17:11:06 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/NXNBN09EaVF1UFp1OUtmNGlWNFVMR05OR3FlNGpPb0NHbWJQNStIS0N6Yz0 -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:World Thumbnail -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:image/png -2016-05-06 17:11:06 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/SzZaRHBaSmhwSmR1OUtmNGlWNFVMTXVqSFdROTFEUjZHbWJQNStIS0N6Yz0 -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:ROC Curve -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:image/png -2016-05-06 17:11:06 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/TGJsd3BFbmhJWGx1OUtmNGlWNFVMTWZmVStUUlU0WjlHbWJQNStIS0N6Yz0 -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:Omission-Commission Curve -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:image/png -2016-05-06 17:11:06 DEBUG SClient4WPS:574 - Node Name: ogr:Result -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:Data- Value:http://data-d.d4science.org/M1ZFbElJaGJOYjl1OUtmNGlWNFVMQzNQakl0OXc5b0ZHbWJQNStIS0N6Yz0 -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:Description- Value:Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-06 17:11:06 DEBUG SClient4WPS:541 - Node Name: d4science:MimeType- Value:text/csv -2016-05-06 17:11:06 DEBUG SClient4WPS:516 - ResponseWPS Map: F0-->ResponseWPS [data=http://data-d.d4science.org/TGI1TlM2RjcrMmR1OUtmNGlWNFVMRVl6d09hWEYrd05HbWJQNStIS0N6Yz0, description=The warnings from the underlying MaxEnt model, mimeType=text/csv] -2016-05-06 17:11:06 DEBUG SClient4WPS:516 - ResponseWPS Map: F1-->ResponseWPS [data=http://data-d.d4science.org/TGI1TlM2RjcrMmR1OUtmNGlWNFVMRmEyV3I5bDJEQnFHbWJQNStIS0N6Yz0, description=ASCII Maps of the environmental layers for checking features aligments, mimeType=text/csv] -2016-05-06 17:11:06 DEBUG SClient4WPS:516 - ResponseWPS Map: F2-->ResponseWPS [data=http://data-d.d4science.org/NXNBN09EaVF1UFp1OUtmNGlWNFVMR05OR3FlNGpPb0NHbWJQNStIS0N6Yz0, description=World Thumbnail, mimeType=image/png] -2016-05-06 17:11:06 DEBUG SClient4WPS:516 - ResponseWPS Map: F3-->ResponseWPS [data=http://data-d.d4science.org/SzZaRHBaSmhwSmR1OUtmNGlWNFVMTXVqSFdROTFEUjZHbWJQNStIS0N6Yz0, description=ROC Curve, mimeType=image/png] -2016-05-06 17:11:06 DEBUG SClient4WPS:516 - ResponseWPS Map: F4-->ResponseWPS [data=http://data-d.d4science.org/TGJsd3BFbmhJWGx1OUtmNGlWNFVMTWZmVStUUlU0WjlHbWJQNStIS0N6Yz0, description=Omission-Commission Curve, mimeType=image/png] -2016-05-06 17:11:06 DEBUG SClient4WPS:516 - ResponseWPS Map: F5-->ResponseWPS [data=http://data-d.d4science.org/M1ZFbElJaGJOYjl1OUtmNGlWNFVMQzNQakl0OXc5b0ZHbWJQNStIS0N6Yz0, description=Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding], mimeType=text/csv] -2016-05-06 17:11:06 DEBUG SClient4WPS:1018 - Adding OBJ:F0 -2016-05-06 17:11:06 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/TGI1TlM2RjcrMmR1OUtmNGlWNFVMRVl6d09hWEYrd05HbWJQNStIS0N6Yz0, name=F0, description=The warnings from the underlying MaxEnt model, typology=OBJECT] -2016-05-06 17:11:06 DEBUG SClient4WPS:1018 - Adding OBJ:F1 -2016-05-06 17:11:06 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/TGI1TlM2RjcrMmR1OUtmNGlWNFVMRmEyV3I5bDJEQnFHbWJQNStIS0N6Yz0, name=F1, description=ASCII Maps of the environmental layers for checking features aligments, typology=OBJECT] -2016-05-06 17:11:06 DEBUG SClient4WPS:1018 - Adding OBJ:F2 -2016-05-06 17:11:06 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/NXNBN09EaVF1UFp1OUtmNGlWNFVMR05OR3FlNGpPb0NHbWJQNStIS0N6Yz0, name=F2, description=World Thumbnail, typology=OBJECT] -2016-05-06 17:11:06 DEBUG SClient4WPS:1018 - Adding OBJ:F3 -2016-05-06 17:11:06 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/SzZaRHBaSmhwSmR1OUtmNGlWNFVMTXVqSFdROTFEUjZHbWJQNStIS0N6Yz0, name=F3, description=ROC Curve, typology=OBJECT] -2016-05-06 17:11:06 DEBUG SClient4WPS:1018 - Adding OBJ:F4 -2016-05-06 17:11:06 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/TGJsd3BFbmhJWGx1OUtmNGlWNFVMTWZmVStUUlU0WjlHbWJQNStIS0N6Yz0, name=F4, description=Omission-Commission Curve, typology=OBJECT] -2016-05-06 17:11:06 DEBUG SClient4WPS:1018 - Adding OBJ:F5 -2016-05-06 17:11:06 DEBUG SClient4WPS:1024 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/M1ZFbElJaGJOYjl1OUtmNGlWNFVMQzNQakl0OXc5b0ZHbWJQNStIS0N6Yz0, name=F5, description=Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding], typology=OBJECT] -2016-05-06 17:11:06 DEBUG Log:91 - Resoure: MapResource [map={F0=FileResource [url=http://data-d.d4science.org/TGI1TlM2RjcrMmR1OUtmNGlWNFVMRVl6d09hWEYrd05HbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F0, getName()=The warnings from the underlying MaxEnt model, getDescription()=The warnings from the underlying MaxEnt model, getResourceType()=FILE], F1=FileResource [url=http://data-d.d4science.org/TGI1TlM2RjcrMmR1OUtmNGlWNFVMRmEyV3I5bDJEQnFHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F1, getName()=ASCII Maps of the environmental layers for checking features aligments, getDescription()=ASCII Maps of the environmental layers for checking features aligments, getResourceType()=FILE], F2=ImagesResource [link=http://data-d.d4science.org/NXNBN09EaVF1UFp1OUtmNGlWNFVMR05OR3FlNGpPb0NHbWJQNStIS0N6Yz0, mimeType=image/png, getResourceId()=F2, getName()=World Thumbnail, getDescription()=World Thumbnail, getResourceType()=IMAGES], F3=ImagesResource [link=http://data-d.d4science.org/SzZaRHBaSmhwSmR1OUtmNGlWNFVMTXVqSFdROTFEUjZHbWJQNStIS0N6Yz0, mimeType=image/png, getResourceId()=F3, getName()=ROC Curve, getDescription()=ROC Curve, getResourceType()=IMAGES], F4=ImagesResource [link=http://data-d.d4science.org/TGJsd3BFbmhJWGx1OUtmNGlWNFVMTWZmVStUUlU0WjlHbWJQNStIS0N6Yz0, mimeType=image/png, getResourceId()=F4, getName()=Omission-Commission Curve, getDescription()=Omission-Commission Curve, getResourceType()=IMAGES], F5=FileResource [url=http://data-d.d4science.org/M1ZFbElJaGJOYjl1OUtmNGlWNFVMQzNQakl0OXc5b0ZHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F5, getName()=Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding], getDescription()=Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding], getResourceType()=FILE]}, getResourceId()=mapResource, getName()=Resources, getDescription()=Resources, getResourceType()=MAP] -2016-05-06 17:11:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:11:31 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-06 17:11:31 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:11:31 DEBUG DataMinerManagerServiceImpl:135 - StartComputation(): [ operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[ObjectParameter [type=java.lang.String, defaultValue=maxent_, value=maxent_, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:maxent_], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=generic_species, value=Latimeria, name=SpeciesName, description=The name of the species to model and the occurrence records refer to [Min N. of Entries:1; Max N. of Entries:1; default:generic_species], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1000, value=1000, name=MaxIterations, description=The number of learning iterations of the MaxEnt algorithm [Min N. of Entries:1; Max N. of Entries:1; default:1000], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=0.5, name=DefaultPrevalence, description=A priori probability of presence at ordinary occurrence points [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], TabularParameter [tableName=http://data-d.d4science.org/bVZIS3dkSCtWT2ZWVzJiZkRqZUFrR2llNkRBZ0haYzBHbWJQNStIS0N6Yz0, templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]], Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN], Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN], ObjectParameter [type=java.lang.Double, defaultValue=1, value=1.0, name=XResolution, description=Model projection resolution on the X axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=1, value=1.0, name=YResolution, description=Model projection resolution on the Y axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ListParameter [type=java.lang.String, value=fc9ac2f4-a2bd-43d1-a361-ac67c5ceac31, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ObjectParameter [type=java.lang.Double, defaultValue=0, value=0.0, name=Z, description=Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=0, name=TimeIndex, description=Time Index. The default is the first time indexed in the input environmental datasets [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]], hasImage=false]] -2016-05-06 17:11:31 DEBUG WPS2SM:300 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-06 17:11:31 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:11:31 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:11:31 DEBUG WPS2SM:100 - Guessed default value: maxent_ -2016-05-06 17:11:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The name of the table to produce -2016-05-06 17:11:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OutputTableLabel -2016-05-06 17:11:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:11:31 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=maxent_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:maxent_], typology=OBJECT] -2016-05-06 17:11:31 DEBUG WPS2SM:300 - Conversion to SM Type->SpeciesName is a Literal Input -2016-05-06 17:11:31 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:11:31 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:11:31 DEBUG WPS2SM:100 - Guessed default value: generic_species -2016-05-06 17:11:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The name of the species to model and the occurrence records refer to -2016-05-06 17:11:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:SpeciesName -2016-05-06 17:11:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:11:31 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=generic_species, value=null, name=SpeciesName, description=The name of the species to model and the occurrence records refer to [Min N. of Entries:1; Max N. of Entries:1; default:generic_species], typology=OBJECT] -2016-05-06 17:11:31 DEBUG WPS2SM:300 - Conversion to SM Type->MaxIterations is a Literal Input -2016-05-06 17:11:31 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:11:31 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 17:11:31 DEBUG WPS2SM:100 - Guessed default value: 1000 -2016-05-06 17:11:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The number of learning iterations of the MaxEnt algorithm -2016-05-06 17:11:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:MaxIterations -2016-05-06 17:11:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:11:31 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1000, value=null, name=MaxIterations, description=The number of learning iterations of the MaxEnt algorithm [Min N. of Entries:1; Max N. of Entries:1; default:1000], typology=OBJECT] -2016-05-06 17:11:31 DEBUG WPS2SM:300 - Conversion to SM Type->DefaultPrevalence is a Literal Input -2016-05-06 17:11:31 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:11:31 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 17:11:31 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-06 17:11:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:A priori probability of presence at ordinary occurrence points -2016-05-06 17:11:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:DefaultPrevalence -2016-05-06 17:11:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:11:31 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=DefaultPrevalence, description=A priori probability of presence at ordinary occurrence points [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-06 17:11:31 DEBUG WPS2SM:325 - Conversion to SM Type->OccurrencesTable is a Complex Input -2016-05-06 17:11:31 DEBUG WPS2SM:331 - Max Megabytes: 1 -2016-05-06 17:11:31 DEBUG WPS2SM:207 - Default MimeType: text/xml -2016-05-06 17:11:31 DEBUG WPS2SM:208 - Default Schema: null -2016-05-06 17:11:31 DEBUG WPS2SM:209 - Default Encoding: null -2016-05-06 17:11:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] -2016-05-06 17:11:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:OccurrencesTable -2016-05-06 17:11:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:11:31 DEBUG SClient4WPS:683 - InputParameter: TabularParameter [tableName= , templates=[], defaultMimeType=text/xml, supportedMimeTypes=[text/xml, text/csv, text/plain]] -2016-05-06 17:11:31 DEBUG WPS2SM:300 - Conversion to SM Type->LongitudeColumn is a Literal Input -2016-05-06 17:11:31 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:11:31 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:11:31 DEBUG WPS2SM:100 - Guessed default value: decimallongitude -2016-05-06 17:11:31 DEBUG WPS2SM:129 - Machter title: The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude] -2016-05-06 17:11:31 DEBUG WPS2SM:130 - Machter find: true -2016-05-06 17:11:31 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrencesTable -2016-05-06 17:11:31 DEBUG WPS2SM:132 - Machter start: 40 -2016-05-06 17:11:31 DEBUG WPS2SM:133 - Machter end: 82 -2016-05-06 17:11:31 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-06 17:11:31 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrencesTable -2016-05-06 17:11:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The column containing longitude values [the name of a column from OccurrencesTable] -2016-05-06 17:11:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:LongitudeColumn -2016-05-06 17:11:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:11:31 DEBUG SClient4WPS:683 - InputParameter: Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN] -2016-05-06 17:11:31 DEBUG WPS2SM:300 - Conversion to SM Type->LatitudeColumn is a Literal Input -2016-05-06 17:11:31 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:11:31 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:11:31 DEBUG WPS2SM:100 - Guessed default value: decimallatitude -2016-05-06 17:11:31 DEBUG WPS2SM:129 - Machter title: The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude] -2016-05-06 17:11:31 DEBUG WPS2SM:130 - Machter find: true -2016-05-06 17:11:31 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrencesTable -2016-05-06 17:11:31 DEBUG WPS2SM:132 - Machter start: 39 -2016-05-06 17:11:31 DEBUG WPS2SM:133 - Machter end: 81 -2016-05-06 17:11:31 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-06 17:11:31 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrencesTable -2016-05-06 17:11:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The column containing latitude values [the name of a column from OccurrencesTable] -2016-05-06 17:11:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:LatitudeColumn -2016-05-06 17:11:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:11:31 DEBUG SClient4WPS:683 - InputParameter: Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN] -2016-05-06 17:11:31 DEBUG WPS2SM:300 - Conversion to SM Type->XResolution is a Literal Input -2016-05-06 17:11:31 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:11:31 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 17:11:31 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-06 17:11:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Model projection resolution on the X axis in decimal degrees -2016-05-06 17:11:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:XResolution -2016-05-06 17:11:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:11:31 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=XResolution, description=Model projection resolution on the X axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-06 17:11:31 DEBUG WPS2SM:300 - Conversion to SM Type->YResolution is a Literal Input -2016-05-06 17:11:31 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:11:31 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 17:11:31 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-06 17:11:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Model projection resolution on the Y axis in decimal degrees -2016-05-06 17:11:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:YResolution -2016-05-06 17:11:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:11:31 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=YResolution, description=Model projection resolution on the Y axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-06 17:11:31 DEBUG WPS2SM:300 - Conversion to SM Type->Layers is a Literal Input -2016-05-06 17:11:31 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:11:31 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-06 17:11:31 DEBUG WPS2SM:100 - Guessed default value: -2016-05-06 17:11:31 DEBUG WPS2SM:148 - Machter title: The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-06 17:11:31 DEBUG WPS2SM:149 - Machter find: true -2016-05-06 17:11:31 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-06 17:11:31 DEBUG WPS2SM:151 - Machter start: 501 -2016-05-06 17:11:31 DEBUG WPS2SM:152 - Machter end: 536 -2016-05-06 17:11:31 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-06 17:11:31 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-06 17:11:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) -2016-05-06 17:11:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:Layers -2016-05-06 17:11:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:11:31 DEBUG SClient4WPS:683 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-06 17:11:31 DEBUG WPS2SM:300 - Conversion to SM Type->Z is a Literal Input -2016-05-06 17:11:31 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:11:31 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-06 17:11:31 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-06 17:11:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer -2016-05-06 17:11:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:Z -2016-05-06 17:11:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:11:31 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-06 17:11:31 DEBUG WPS2SM:300 - Conversion to SM Type->TimeIndex is a Literal Input -2016-05-06 17:11:31 DEBUG WPS2SM:92 - WPS type: -2016-05-06 17:11:31 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-06 17:11:31 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-06 17:11:31 DEBUG WPS2SM:339 - Conversion to SM Type->Title:Time Index. The default is the first time indexed in the input environmental datasets -2016-05-06 17:11:31 DEBUG WPS2SM:340 - Conversion to SM Type->Name:TimeIndex -2016-05-06 17:11:31 DEBUG WPS2SM:341 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-06 17:11:31 DEBUG SClient4WPS:683 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=TimeIndex, description=Time Index. The default is the first time indexed in the input environmental datasets [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-06 17:11:31 DEBUG SClient4WPS:691 - UserInputs[key=OutputTableLabel, value=maxent_] -2016-05-06 17:11:31 DEBUG SClient4WPS:691 - UserInputs[key=SpeciesName, value=Latimeria] -2016-05-06 17:11:31 DEBUG SClient4WPS:691 - UserInputs[key=MaxIterations, value=1000] -2016-05-06 17:11:31 DEBUG SClient4WPS:691 - UserInputs[key=DefaultPrevalence, value=0.5] -2016-05-06 17:11:31 DEBUG SClient4WPS:691 - UserInputs[key=OccurrencesTable, value=http://data-d.d4science.org/bVZIS3dkSCtWT2ZWVzJiZkRqZUFrR2llNkRBZ0haYzBHbWJQNStIS0N6Yz0] -2016-05-06 17:11:31 DEBUG SClient4WPS:691 - UserInputs[key=LongitudeColumn, value=decimalLongitude] -2016-05-06 17:11:31 DEBUG SClient4WPS:691 - UserInputs[key=LatitudeColumn, value=decimalLatitude] -2016-05-06 17:11:31 DEBUG SClient4WPS:691 - UserInputs[key=XResolution, value=1.0] -2016-05-06 17:11:31 DEBUG SClient4WPS:691 - UserInputs[key=YResolution, value=1.0] -2016-05-06 17:11:31 DEBUG SClient4WPS:691 - UserInputs[key=Layers, value=fc9ac2f4-a2bd-43d1-a361-ac67c5ceac31] -2016-05-06 17:11:31 DEBUG SClient4WPS:691 - UserInputs[key=Z, value=0.0] -2016-05-06 17:11:31 DEBUG SClient4WPS:691 - UserInputs[key=TimeIndex, value=0] -2016-05-06 17:11:31 DEBUG SClient4WPS:727 - Configuring Literal: OutputTableLabel to: maxent_ -2016-05-06 17:11:31 DEBUG SClient4WPS:727 - Configuring Literal: SpeciesName to: Latimeria -2016-05-06 17:11:31 DEBUG SClient4WPS:727 - Configuring Literal: MaxIterations to: 1000 -2016-05-06 17:11:31 DEBUG SClient4WPS:727 - Configuring Literal: DefaultPrevalence to: 0.5 -2016-05-06 17:11:31 DEBUG SClient4WPS:744 - Configuring Complex: OccurrencesTable to: http://data-d.d4science.org/bVZIS3dkSCtWT2ZWVzJiZkRqZUFrR2llNkRBZ0haYzBHbWJQNStIS0N6Yz0 -2016-05-06 17:11:31 DEBUG SClient4WPS:727 - Configuring Literal: LongitudeColumn to: decimalLongitude -2016-05-06 17:11:31 DEBUG SClient4WPS:727 - Configuring Literal: LatitudeColumn to: decimalLatitude -2016-05-06 17:11:31 DEBUG SClient4WPS:727 - Configuring Literal: XResolution to: 1.0 -2016-05-06 17:11:31 DEBUG SClient4WPS:727 - Configuring Literal: YResolution to: 1.0 -2016-05-06 17:11:31 DEBUG SClient4WPS:727 - Configuring Literal: Layers to: fc9ac2f4-a2bd-43d1-a361-ac67c5ceac31 -2016-05-06 17:11:31 DEBUG SClient4WPS:727 - Configuring Literal: Z to: 0.0 -2016-05-06 17:11:31 DEBUG SClient4WPS:727 - Configuring Literal: TimeIndex to: 0 -2016-05-06 17:11:31 INFO StatWPSClientSession:84 - CONNECT -2016-05-06 17:11:31 DEBUG SClient4WPS:388 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - - - OutputTableLabel - - maxent_ - - - - SpeciesName - - Latimeria - - - - MaxIterations - - 1000 - - - - DefaultPrevalence - - 0.5 - - - - OccurrencesTable - - - - LongitudeColumn - - decimalLongitude - - - - LatitudeColumn - - decimalLatitude - - - - XResolution - - 1.0 - - - - YResolution - - 1.0 - - - - Layers - - fc9ac2f4-a2bd-43d1-a361-ac67c5ceac31 - - - - Z - - 0.0 - - - - TimeIndex - - 0 - - - - - - - ASCII Maps of the environmental layers for checking features aligments - - - OutputTable7 - - - non_deterministic_output - - - - -2016-05-06 17:11:31 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-05-06 17:11:31 DEBUG SClient4WPS:415 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46 -2016-05-06 17:11:31 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-06 17:11:31 DEBUG SClient4WPS:787 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46 -2016-05-06 17:11:31 DEBUG SClient4WPS:697 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46 -2016-05-06 17:11:31 DEBUG SClient4WPS:708 - ComputationId: ComputationId [id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46] -2016-05-06 17:11:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:11:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-06 17:11:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:11:41 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46] -2016-05-06 17:11:41 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 17:11:41 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 17:11:41 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46 -2016-05-06 17:11:41 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:11:41 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 17:11:41 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 17:11:41 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - - - -2016-05-06 17:11:41 DEBUG SClient4WPS:889 - WPS STATUS:10.0 -2016-05-06 17:11:41 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=10.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-06 17:11:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-06 17:11:49 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-06 17:11:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:11:51 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:11:51 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:11:51 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46] -2016-05-06 17:11:51 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 17:11:51 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 17:11:51 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46 -2016-05-06 17:11:51 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:11:51 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 17:11:51 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 17:11:51 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - - - -2016-05-06 17:11:51 DEBUG SClient4WPS:889 - WPS STATUS:30.0 -2016-05-06 17:11:51 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=30.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-06 17:12:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:12:01 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 17:12:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:12:01 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46] -2016-05-06 17:12:01 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 17:12:01 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 17:12:01 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46 -2016-05-06 17:12:01 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:12:01 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 17:12:01 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 17:12:01 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - - - -2016-05-06 17:12:01 DEBUG SClient4WPS:889 - WPS STATUS:30.0 -2016-05-06 17:12:01 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=30.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-06 17:12:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-06 17:12:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-06 17:12:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:12:11 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46] -2016-05-06 17:12:11 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 17:12:11 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 17:12:11 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46 -2016-05-06 17:12:11 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:12:11 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 17:12:11 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 17:12:11 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - - - -2016-05-06 17:12:11 DEBUG SClient4WPS:889 - WPS STATUS:30.0 -2016-05-06 17:12:11 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=30.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-06 17:12:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:12:21 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:12:21 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:12:21 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46] -2016-05-06 17:12:21 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 17:12:21 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 17:12:21 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46 -2016-05-06 17:12:21 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:12:21 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 17:12:21 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 17:12:21 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - - - -2016-05-06 17:12:21 DEBUG SClient4WPS:889 - WPS STATUS:30.0 -2016-05-06 17:12:21 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=30.0, status=RUNNING, endDate=null, message=null, errResource=null] -2016-05-06 17:12:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-06 17:12:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-06 17:12:31 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:12:31 DEBUG SClient4WPS:801 - GetComputationStatus(): ComputationId=ComputationId [id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46] -2016-05-06 17:12:31 INFO StatWPSClientSession:114 - CONNECT -2016-05-06 17:12:31 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-05-06 17:12:31 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46 -2016-05-06 17:12:31 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:12:31 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 17:12:32 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 17:12:32 DEBUG SClient4WPS:817 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - Process successful - - - - ASCII Maps of the environmental layers for checking features aligments - ASCII Maps of the environmental layers for checking features aligments - - _______________________________________________ __ ____ ______________________________________ _______________ - - - - - - -_______________________ _____ __ _ _ _ _____ ___________________________________________________________________________ ______ ___ __ ____ ___ ___________________________________________________ -_____________________ _____ ___ __ _ _ __ _____ ___ __ _ ______________________________________________________________ _ ____ ____________________________________________________ -________________ _____ ______ _ _____ _ ____________ _____ _______________________________________________________ _______ _ ____________________________________________________ -______________________ ______ _____ __ ______________ ____ _______________________________________________ _________ __________ _ __ ___________________________________________________ -__________________ __ _ ____ ____ ___ ______ __ ____ ____ _ _ _____________________________________ _ ________ _______________ _ ________________________________________________ -__________________ __ _____ _ _ ___ ___ _ ______ _________ _ __ _ ____________________________________ __________ _____________ ______________ _______________________________ -___________________ _ ____ _ _ ___ ___ __ _____ ___ __ ___ __ _________________________________ ____________ ___________ _________ ________________________________ -____________________ ______ _ ___ ______________ ___ __ ___ _ ____ _ _____________________________________________ ________ _______ _________________________________ -_________________________ __ _ _ ______ ____ ___________ __ __ _ ______________________________________________ __________ _____ _________________________________ -________________________ _______ __ _ ___ _ ___ __ __ _ _________________________________________________ _____ _______________________________________ -___________________________ ________ __ __________ __ ______ _ __ _______________________________________ ______ ____________________________________ -____________________________ ______ _____ _____ __ _ ____ ____ _______________ ____________________________ _ _____________________________________ -_____________________________________ _____ _ ___ ______ ________ __ ___________ _____________________________ ___________________________________ -____________________________________ ____ _ _ ___________ _________ _______________________ _ ____________________________________ -___________________________________ _____ _ ________ ___________ ____________________________ ________________________________________ -________________________________ ____ _ __________ _______________ ________________________ __ ________________________________________ -_______________________________ ___ _ _____________ _ _________________________________________ ______________________________________ -_______________________________ ___ __ _____________ _____________________________________________ ______________________________________ -_____________________________ _ _ ______________ ___________________________________ __ _______ ________________________ -_____________________________ ____ _ ____________ _ ____________________________ _ _ ______ _______________________ -__________________________ _ _ _______ ___________ ____________________________ __ ____________ ____________________ -______________________ _ _ ________ _ __________ __________________________ ______ __ ______ _________________________ -_______________ ______ _________ _ _________ __________________________ __ _ ___ _________________________ -____________ _________ ____________ _____________ __________________________ ______________________ -___________ ___________ __________ ___________ __________________________ ______________________ -__________ ________________ ___ __ ________ _ __________________________ ______________ __ -__________ ______________ ______ _ __________ _ __________________________ ___ ________________ -________ ____________________ ___ _ _______ ___________________________ ___ _ ___ ____ -___________ __________________ ________ _ ________ _____________________________ _ _ _ - ___________ ____________________ _____ ___________ __________________________________ __ - _ __ __________________ __ _ ___________ ___________________________________ ___ __ - ____ _________________ ___ _____________ _____________ ____________________ ____ __ _ -___ __________ _________________ __________________ ______________ _________________ ________ __ -____________ _ _ ______________ _________________ _______________ _________________ _____ ____ -____________ _ __________ ____________ ___________________ __________________ ____________________ ____ __ ___ -____________ _ _____________ _ ____________ ____ ______________ ________________________________________ _______ _ __ -_____________ __ _______________ ___________ __ ______________ _ ___________________________________ _____ _ __ ___ _ ______ -___________ ___ ____________________ _______ __ ________________ ___________________________________________ __ _____ __ _______ ________ -________________ ___ _ ___________________ _ ______ ________________________________________________________________ _ ____ __________ _____ ________________ -____________________ _ ________________________ ___ __________________________________________________ _ ___________ __ _____ ___________________ ________________ -___________________ _________________________ _ ___ __________________________________________________ _________ _____ __________________ ________________ -_________________ ___________________________ ___ __ ___________________________________________________ ___________ ___ _ __ ________________ ________________ -________________ __________________________________ ___ _________________________________________________ __________ __________________ _________________ -____________________________________________________ __ _____________________________________________ __ ______ ______________ ___ _____________ -____________ ______________________________________ ___________________________________________ _ ___ ____________ ____________________ -_____________________________________________________ _ ____________________________________________ __ __ _ ____________ _____________________ -_______________________________________________________ __ ___________________________________________ _____ _ _ ____________ _____________________ -_______________________________________________________ ____ _____ _________________________________________________ ____ _ ___________ _______________________ -________________________________________________________ _ ______ __________________________________________________ ___ __ ____________________________________ -________________________________________________________ ______ _______________________________________________ ___ __ ________________________________________ -________________________________________________________ ____ ______ _________________________________________________ __________ ___ ____________________________________ -________________________________________________________ __ __________________________________________________________ _ ____________ __________________________________________ -________________________________________________________ _ _____________________________________________________________ ___ _____________ _____ _____________________________________ -________________________________________________________ ____ ______________________________________________________________ ___ ____ ______________ _______ ___________________________________ -________________________________________________________ _____________________________________________________________ ________ _____ ___ _ __________ ____________________________________ -________________________________________________________ _____________________________________________________________ __________ __ __ __ _ __________ _______________________________________ -_________________________________________________________ ________________________________________________________________ _______ ______ ___ ___ ___ __ ____________ ______________________________________ -_________________________________________________________ __________________________________________________________________ ________ ______ ____ ___ _______ ____________ ______________________________________ -__________________________________________________________ _______________________________________________ ___________________ _____________ ______ ____ _ _____ __________ _______________________________________ -___________________________________________________________ ___________________________________________________________________ ________ _ ____________ ______ _ __ _____ _________ _______________________________________ -___________________________________________________________ ___________________________________________________________________________ _________________________ _______ _______ _______________________________________ -____________________________________________________________ _______________________________________________________________________ _________________________ ______ ____ _ _ __________________________________________ -_______________________________________________________________ ________________________________________________________________________ ________________________ _____ ___ _______________________________________________ -________________________________________________________________ _______________________________________________________________________ ____ ___________ __________ _________________________________________________ -________________________________________________________________ _ _______________________________________________________________________ __ _ __________________________________________________________ -_________________________________________________________________ _ ___ ______ _______________________________________________________________________ ___ __________________________________________________________ -__________________________________________________________________ _ ______________ _______________________________________________________________ _____ _ ___ ___________________________________________________________ -___________________________________________________________________ __ _______________ ___________________________________________________________________ __ ____ _ ____________________________________________________________ -____________________________________________________________________ __ ________________ __________________________________________________________________ __ ____ __ _____________________________________________________________ -_____________________________________________________________________ ___ __________________________________________________________________________________ __ __ ___________ __ __ ________________________________________________________ -__________________________________________________________________________ ______________ _______________________________________________________________ ___ _________ ____ ___________________________________________________________ -______________________ ____________________________________________________ _________ ___ ____ ___________________________________________________________ __ __________ _ _____ __ _____________________________________________________________________ -___________________________________________________________________________ ______ __________ __________________________________________________________ ____ _______________ _______ __________________________________________________________________________ -_____________________________________________________________________________ _ __________ ___ _ _ _________________________________________________ ____ ________________ __________ ___ __________ ___________________________________________________________ -________________________________________________________________________________ ________________________________________________________________________ __ _ ___________________ ____________ _____________ __________________________________________________________ -_______________________________________________________________________________________ ____________________________________________________________________ ___ _____________________ _ _________________ ____________ ___________________________________________________________ -_________________________________________________________________________________________ __________________________________________________________________ _ ________________________ _ __________________ ___________ _________________________________________________________ -_____________________________________________________________________________________________ _____________ _____________________________________________________ _ ____________________________ __ ____________ _____ _ _______________________________________________________________________ -_______________________________________________________________________________________________ _________ _ _____________________________________________________ ____ ______________________ ___ __________________ ____ ______________ _ _________________________________________ __ __________ -________________________________________________________________________________________________ _______ ________________________________________________ ______________________ ___ ___________________ ______ ____________ ___ _________________________________________________________ -__________________________________________________________________________________________________ __ ______________________________________________ _______________________ ____ __ _________________ _______________________ ______________________________________________________ -_______________________________________________________________________________________________________ ______________________________________________ ________________________ _______ __________________ _______________ _______ _______________________________________________________ -_______________________________________________________________________________________________________ ___________________________________________ ____ _______ ________________________ ______________________ __ ____________ _____________________________________________________________ -_______________________________________________________________________________________________________ _____________________________________________________________ __________________________ ________________________ __ __________ _______________________________________________________________ -______________________________________________________________________________________________________ ____________________________________________________________ ___________________________ _________________________ _ _______ _________ ____________________________________________________ -____________________________________________________________________________________________________ ____________________________________________________________ _____________________________ __________________________ ______ ___ ___ ____________________________________________________ -____________________________________________________________________________________________________ _______________________________________________________ _______________________________ _________________________ _ _____ __ _ _______ ______________________________________________ -____________________________________________________________________________________________________ _____________________________________________________ ________________________________ ____________________________ ____ ___ ___________ __ ________________________________________ -____________________________________________________________________________________________________ __________________________________________________ _________________________________ _____________________________ ________ ____ _ ____________ ________ ___________________________ -____________________________________________________________________________________________________ _______________________________________________ __________________________________ _______________________________ _____________ __ _______________ ____ __ _________________________ -_____________________________________________________________________________________________________ ________________________________________________ _________________________________ _________________________________ ________________________ _________ _______________________ -______________________________________________________________________________________________________ _________________________________________________ _________________________________ __________________________________________ ___ _____________ ___ ____________ ___________________ -______________________________________________________________________________________________________ __________________________________________________ _________________________________ _______________________________________________ __ ________________________ ______________________________ -_______________________________________________________________________________________________________ ___________________________________________________ __ _____________________________ _________________________________________________________ _ _________ _____________________________________ -________________________________________________________________________________________________________ ____________________________________________________ ________ _______________________ _________________________________________________________ _____ _____________________________________ -_________________________________________________________________________________________________________ ____________________________________________________ _______ _______________________ ____________________________________________________ _ ______ ___________________________________ -__________________________________________________________________________________________________________ ___________________________________________________ _____ _______________________ ___________________________________________________ ____ ___________________________________ -_____________________________________________________________________________________________________________ ___________________________________________________ ______ _______________________ _________________________________________________ __ __________________________________ -______________________________________________________________________________________________________________ ____________________________________________________ _________ ________________________ ________________________________________________ __________________________________ -______________________________________________________________________________________________________________ ______________________________________________________ _________ ________________________ _____________________________________________ _______________________________ -______________________________________________________________________________________________________________ _______________________________________________________ ________ _________________________ _________________________________________ _______________________________ -______________________________________________________________________________________________________________ ___________________________________________________________ ________ _________________________ _________________________________________ _____________________________ -______________________________________________________________________________________________________________ ______________________________________________________________ _________ __________________________ ________________________________________ ____________________________ -______________________________________________________________________________________________________________ _______________________________________________________________ ________________________________________ _________________________________________ ___________________________ -______________________________________________________________________________________________________________ ________________________________________________________________ ________________________________________ _________________________________________ ___________________________ -_____________________________________________________________________________________________________________ __________________________________________________________________ _________________________________________ _________________________________________ ___________________________ -_____________________________________________________________________________________________________________ ___________________________________________________________________ __________________________________________ __________________________________________ ___________________________ -_____________________________________________________________________________________________________________ _____________________________________________________________________ ___________________________________________ __________________________________________ ___________________________ -_____________________________________________________________________________________________________________ ______________________________________________________________________ _____________________________________________ __________________________________________ _________ ____________________________ -_____________________________________________________________________________________________________________ ________________________________________________________________________ ________________________________________________ __________________________________________ ________________ _ _____________________________ -____________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ _________________________________________________________________ _______________________ ______ -____________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________ ___________________________________________________________________ ________________________ _____ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ ___________________________________________________________________ __________________________ ____ -___________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________ __ -___________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ ___ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ _______________________________________________________________________ ________________________ ____ -__________________________________________________________________________________________________________ _ ________________________________________________________________________________________________________________________________________ ________________________________________________________________________ _______________________ _______ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ _________________________________________________________________________ ______________________ _______ -__________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________ _________ -__________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________ __________ -__________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ ________ ___________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -___________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -___________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_______________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_______________________________________________________________________________________________________________________ _ _________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -____________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________ ______________________ ___________________________________ _____________________________________________ -__________________________________________________________________________________________________________________ _ _____________________________________________________________________________________________________________________________________ ______________________ ________ _____________________ _____________________________________________ -__________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________ ________________ ________ _ ______ ___ _ _______ ____ __________________________________________ -________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________ _ _______________ _________ ____________________________________ -_______________________________________________________________________________________________________________ _ ___________________________________________________________________________________________________________ _ ________ ________ ___________________________________ -_________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ ___ ______ ________________________________ -_________________________________________________________________________________________________________________ ______________________________________________________________________________________________ ______ _ _____ _________________________ -____________________________________________________________________________________________________________ __ ___________________________________________________________________________________________ ____ ____ _______________________ -____________________________________________________________________________________________________________ _ ___________________________________________________________________________ ___________ ____________________ -__________________________________________________________________________________________________________ _______________________________________________________ _________________ -_________________________________________________________________________________________________________ ___________________________________________________ ____________ -___________________________________________________________________________________________________________ ________________________________________________ ___________ -_________________________________________________________________________________ _______________________ ________________________________________________ _________ -______________________________________________________________________________ ______________________ ______________________________________________ __________ -_____________________________________________________________________________ __________ ___ ____________________________________________ __________ -_____________________________________________________________________________ _____ ________________________________________ ___________ -_____________________________________________________ ______________ ______ __ _________________________________________ _____________ -_____________________________________________________ _ _ ____ ______ _________________________________________ ______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ - - - - OutputTable7 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - id,csquarecode,x,y,z,time,fvalue -1,5918:100,-180,-90,0,0,0.0749916 -2,5917:209,-179,-90,0,0,0.0750201 -3,5917:208,-178,-90,0,0,0.0750201 -4,5917:207,-177,-90,0,0,0.0750416 -5,5917:206,-176,-90,0,0,0.0750488 -6,5917:205,-175,-90,0,0,0.0750558 -7,5917:104,-174,-90,0,0,0.0750702 -8,5917:103,-173,-90,0,0,0.0750773 -9,5917:102,-172,-90,0,0,0.0750843 -10,5917:101,-171,-90,0,0,0.0750843 -11,5917:100,-170,-90,0,0,0.0750915 -12,5916:209,-169,-90,0,0,0.0750987 -13,5916:208,-168,-90,0,0,0.0751059 -14,5916:207,-167,-90,0,0,0.0751128 -15,5916:206,-166,-90,0,0,0.0751059 -16,5916:205,-165,-90,0,0,0.0751059 -17,5916:104,-164,-90,0,0,0.0751059 -18,5916:103,-163,-90,0,0,0.0751128 -19,5916:102,-162,-90,0,0,0.0751128 -20,5916:101,-161,-90,0,0,0.07512 -21,5916:100,-160,-90,0,0,0.0751344 -22,5915:209,-159,-90,0,0,0.0751416 -23,5915:208,-158,-90,0,0,0.0751558 -24,5915:207,-157,-90,0,0,0.0751486 -25,5915:206,-156,-90,0,0,0.0751558 -26,5915:205,-155,-90,0,0,0.075163 -27,5915:104,-154,-90,0,0,0.0751486 -28,5915:103,-153,-90,0,0,0.075163 -29,5915:102,-152,-90,0,0,0.0751558 -30,5915:101,-151,-90,0,0,0.0751416 -31,5915:100,-150,-90,0,0,0.0751416 -32,5914:209,-149,-90,0,0,0.0751344 -33,5914:208,-148,-90,0,0,0.0751344 -34,5914:207,-147,-90,0,0,0.0751272 -35,5914:206,-146,-90,0,0,0.07512 -36,5914:205,-145,-90,0,0,0.07512 -37,5914:104,-144,-90,0,0,0.0751128 -38,5914:103,-143,-90,0,0,0.07512 -39,5914:102,-142,-90,0,0,0.0751128 -40,5914:101,-141,-90,0,0,0.0751128 -41,5914:100,-140,-90,0,0,0.07512 -42,5913:209,-139,-90,0,0,0.07512 -43,5913:208,-138,-90,0,0,0.0751272 -44,5913:207,-137,-90,0,0,0.07527 -45,5913:206,-136,-90,0,0,0.0758155 -46,5913:205,-135,-90,0,0,0.0776421 -47,5913:104,-134,-90,0,0,0.0779001 -48,5911:100,-110,-90,0,0,0.0832649 -49,5910:209,-109,-90,0,0,0.0880188 -50,5910:206,-106,-90,0,0,0.0759162 -51,5910:205,-105,-90,0,0,0.0753775 -52,5910:104,-104,-90,0,0,0.0768514 -53,5910:103,-103,-90,0,0,0.0810109 -54,5906:101,-61,-90,0,0,0.0753489 -55,5906:100,-60,-90,0,0,0.075163 -56,5905:209,-59,-90,0,0,0.0750201 -57,5905:208,-58,-90,0,0,0.074949 -58,5905:207,-57,-90,0,0,0.0749346 -59,5905:206,-56,-90,0,0,0.0749275 -60,5905:205,-55,-90,0,0,0.0749346 -61,5905:104,-54,-90,0,0,0.0749346 -62,5905:103,-53,-90,0,0,0.0749418 -63,5905:102,-52,-90,0,0,0.0749562 -64,5905:101,-51,-90,0,0,0.0749631 -65,5905:100,-50,-90,0,0,0.0749631 -66,5904:209,-49,-90,0,0,0.0749631 -67,5904:208,-48,-90,0,0,0.074949 -68,5904:207,-47,-90,0,0,0.0749703 -69,5904:206,-46,-90,0,0,0.0749988 -70,5904:205,-45,-90,0,0,0.0750273 -71,5904:104,-44,-90,0,0,0.0750201 -72,5904:103,-43,-90,0,0,0.0750201 -73,5904:102,-42,-90,0,0,0.0750131 -74,5904:101,-41,-90,0,0,0.0750201 -75,5904:100,-40,-90,0,0,0.0750345 -76,5903:209,-39,-90,0,0,0.0750345 -77,5903:208,-38,-90,0,0,0.0750345 -78,5903:207,-37,-90,0,0,0.0750345 -79,5903:206,-36,-90,0,0,0.0750345 -80,5903:205,-35,-90,0,0,0.0750416 -81,5903:104,-34,-90,0,0,0.0750345 -82,5903:103,-33,-90,0,0,0.0750345 -83,5903:102,-32,-90,0,0,0.0750416 -84,5903:101,-31,-90,0,0,0.0750488 -85,5903:100,-30,-90,0,0,0.0750488 -86,5902:209,-29,-90,0,0,0.0750488 -87,5902:208,-28,-90,0,0,0.0750345 -88,5902:207,-27,-90,0,0,0.0750201 -89,5902:206,-26,-90,0,0,0.0761183 -90,5902:205,-25,-90,0,0,0.0756715 -91,5902:104,-24,-90,0,0,0.0789397 -92,3916:206,166,-90,0,0,0.0752487 -93,3916:207,167,-90,0,0,0.075063 -94,3916:208,168,-90,0,0,0.0749846 -95,3916:209,169,-90,0,0,0.074899 -96,3917:100,170,-90,0,0,0.074892 -97,3917:101,171,-90,0,0,0.0748777 -98,3917:102,172,-90,0,0,0.0807894 -99,3917:103,173,-90,0,0,0.0878209 -100,3917:104,174,-90,0,0,0.087558 -101,3917:205,175,-90,0,0,0.0873776 -102,3917:206,176,-90,0,0,0.0863183 -103,3917:207,177,-90,0,0,0.0752844 -104,3917:208,178,-90,0,0,0.0748849 -105,3917:209,179,-90,0,0,0.074949 -106,3918:100,180,-90,0,0,0.0749916 -107,5818:390,-180,-89,0,0,0.0749916 -108,5817:499,-179,-89,0,0,0.0750201 -109,5817:498,-178,-89,0,0,0.0750201 -110,5817:497,-177,-89,0,0,0.0750416 -111,5817:496,-176,-89,0,0,0.0750488 -112,5817:495,-175,-89,0,0,0.0750558 -113,5817:394,-174,-89,0,0,0.0750702 -114,5817:393,-173,-89,0,0,0.0750773 -115,5817:392,-172,-89,0,0,0.0750843 -116,5817:391,-171,-89,0,0,0.0750843 -117,5817:390,-170,-89,0,0,0.0750915 -118,5816:499,-169,-89,0,0,0.0750987 -119,5816:498,-168,-89,0,0,0.0751059 -120,5816:497,-167,-89,0,0,0.0751128 -121,5816:496,-166,-89,0,0,0.0751059 -122,5816:495,-165,-89,0,0,0.0751059 -123,5816:394,-164,-89,0,0,0.0751059 -124,5816:393,-163,-89,0,0,0.0751128 -125,5816:392,-162,-89,0,0,0.0751128 -126,5816:391,-161,-89,0,0,0.07512 -127,5816:390,-160,-89,0,0,0.0751344 -128,5815:499,-159,-89,0,0,0.0751416 -129,5815:498,-158,-89,0,0,0.0751558 -130,5815:497,-157,-89,0,0,0.0751486 -131,5815:496,-156,-89,0,0,0.0751558 -132,5815:495,-155,-89,0,0,0.075163 -133,5815:394,-154,-89,0,0,0.0751486 -134,5815:393,-153,-89,0,0,0.075163 -135,5815:392,-152,-89,0,0,0.0751558 -136,5815:391,-151,-89,0,0,0.0751416 -137,5815:390,-150,-89,0,0,0.0751416 -138,5814:499,-149,-89,0,0,0.0751344 -139,5814:498,-148,-89,0,0,0.0751344 -140,5814:497,-147,-89,0,0,0.0751272 -141,5814:496,-146,-89,0,0,0.07512 -142,5814:495,-145,-89,0,0,0.07512 -143,5814:394,-144,-89,0,0,0.0751128 -144,5814:393,-143,-89,0,0,0.07512 -145,5814:392,-142,-89,0,0,0.0751128 -146,5814:391,-141,-89,0,0,0.0751128 -147,5814:390,-140,-89,0,0,0.07512 -148,5813:499,-139,-89,0,0,0.07512 -149,5813:498,-138,-89,0,0,0.0751272 -150,5813:497,-137,-89,0,0,0.07527 -151,5813:496,-136,-89,0,0,0.0758155 -152,5813:495,-135,-89,0,0,0.0776421 -153,5813:394,-134,-89,0,0,0.0779001 -154,5811:390,-110,-89,0,0,0.0832649 -155,5810:499,-109,-89,0,0,0.0880188 -156,5810:496,-106,-89,0,0,0.0759162 -157,5810:495,-105,-89,0,0,0.0753775 -158,5810:394,-104,-89,0,0,0.0768514 -159,5810:393,-103,-89,0,0,0.0810109 -160,5806:391,-61,-89,0,0,0.0753489 -161,5806:390,-60,-89,0,0,0.075163 -162,5805:499,-59,-89,0,0,0.0750201 -163,5805:498,-58,-89,0,0,0.074949 -164,5805:497,-57,-89,0,0,0.0749346 -165,5805:496,-56,-89,0,0,0.0749275 -166,5805:495,-55,-89,0,0,0.0749346 -167,5805:394,-54,-89,0,0,0.0749346 -168,5805:393,-53,-89,0,0,0.0749418 -169,5805:392,-52,-89,0,0,0.0749562 -170,5805:391,-51,-89,0,0,0.0749631 -171,5805:390,-50,-89,0,0,0.0749631 -172,5804:499,-49,-89,0,0,0.0749631 -173,5804:498,-48,-89,0,0,0.074949 -174,5804:497,-47,-89,0,0,0.0749703 -175,5804:496,-46,-89,0,0,0.0749988 -176,5804:495,-45,-89,0,0,0.0750273 -177,5804:394,-44,-89,0,0,0.0750201 -178,5804:393,-43,-89,0,0,0.0750201 -179,5804:392,-42,-89,0,0,0.0750131 -180,5804:391,-41,-89,0,0,0.0750201 -181,5804:390,-40,-89,0,0,0.0750345 -182,5803:499,-39,-89,0,0,0.0750345 -183,5803:498,-38,-89,0,0,0.0750345 -184,5803:497,-37,-89,0,0,0.0750345 -185,5803:496,-36,-89,0,0,0.0750345 -186,5803:495,-35,-89,0,0,0.0750416 -187,5803:394,-34,-89,0,0,0.0750345 -188,5803:393,-33,-89,0,0,0.0750345 -189,5803:392,-32,-89,0,0,0.0750416 -190,5803:391,-31,-89,0,0,0.0750488 -191,5803:390,-30,-89,0,0,0.0750488 -192,5802:499,-29,-89,0,0,0.0750488 -193,5802:498,-28,-89,0,0,0.0750345 -194,5802:497,-27,-89,0,0,0.0750201 -195,5802:496,-26,-89,0,0,0.0761183 -196,5802:495,-25,-89,0,0,0.0756715 -197,5802:394,-24,-89,0,0,0.0789397 -198,3816:496,166,-89,0,0,0.0752487 -199,3816:497,167,-89,0,0,0.075063 -200,3816:498,168,-89,0,0,0.0749846 -201,3816:499,169,-89,0,0,0.074899 -202,3817:390,170,-89,0,0,0.074892 -203,3817:391,171,-89,0,0,0.0748777 -204,3817:392,172,-89,0,0,0.0807894 -205,3817:393,173,-89,0,0,0.0878209 -206,3817:394,174,-89,0,0,0.087558 -207,3817:495,175,-89,0,0,0.0873776 -208,3817:496,176,-89,0,0,0.0863183 -209,3817:497,177,-89,0,0,0.0752844 -210,3817:498,178,-89,0,0,0.0748849 -211,3817:499,179,-89,0,0,0.074949 -212,3818:390,180,-89,0,0,0.0749916 -213,5818:380,-180,-88,0,0,0.0749916 -214,5817:489,-179,-88,0,0,0.0750201 -215,5817:488,-178,-88,0,0,0.0750201 -216,5817:487,-177,-88,0,0,0.0750416 -217,5817:486,-176,-88,0,0,0.0750488 -218,5817:485,-175,-88,0,0,0.0750558 -219,5817:384,-174,-88,0,0,0.0750702 -220,5817:383,-173,-88,0,0,0.0750773 -221,5817:382,-172,-88,0,0,0.0750843 -222,5817:381,-171,-88,0,0,0.0750843 -223,5817:380,-170,-88,0,0,0.0750915 -224,5816:489,-169,-88,0,0,0.0750987 -225,5816:488,-168,-88,0,0,0.0751059 -226,5816:487,-167,-88,0,0,0.0751128 -227,5816:486,-166,-88,0,0,0.0751059 -228,5816:485,-165,-88,0,0,0.0751059 -229,5816:384,-164,-88,0,0,0.0751059 -230,5816:383,-163,-88,0,0,0.0751128 -231,5816:382,-162,-88,0,0,0.0751128 -232,5816:381,-161,-88,0,0,0.07512 -233,5816:380,-160,-88,0,0,0.0751344 -234,5815:489,-159,-88,0,0,0.0751416 -235,5815:488,-158,-88,0,0,0.0751558 -236,5815:487,-157,-88,0,0,0.0751486 -237,5815:486,-156,-88,0,0,0.0751558 -238,5815:485,-155,-88,0,0,0.075163 -239,5815:384,-154,-88,0,0,0.0751486 -240,5815:383,-153,-88,0,0,0.075163 -241,5815:382,-152,-88,0,0,0.0751558 -242,5815:381,-151,-88,0,0,0.0751416 -243,5815:380,-150,-88,0,0,0.0751416 -244,5814:489,-149,-88,0,0,0.0751344 -245,5814:488,-148,-88,0,0,0.0751344 -246,5814:487,-147,-88,0,0,0.0751272 -247,5814:486,-146,-88,0,0,0.07512 -248,5814:485,-145,-88,0,0,0.07512 -249,5814:384,-144,-88,0,0,0.0751128 -250,5814:383,-143,-88,0,0,0.07512 -251,5814:382,-142,-88,0,0,0.0751128 -252,5814:381,-141,-88,0,0,0.0751128 -253,5814:380,-140,-88,0,0,0.07512 -254,5813:489,-139,-88,0,0,0.07512 -255,5813:488,-138,-88,0,0,0.0751272 -256,5813:487,-137,-88,0,0,0.07527 -257,5813:486,-136,-88,0,0,0.0758155 -258,5813:485,-135,-88,0,0,0.0776421 -259,5813:384,-134,-88,0,0,0.0779001 -260,5811:380,-110,-88,0,0,0.0832649 -261,5810:489,-109,-88,0,0,0.0880188 -262,5810:486,-106,-88,0,0,0.0759162 -263,5810:485,-105,-88,0,0,0.0753775 -264,5810:384,-104,-88,0,0,0.0768514 -265,5810:383,-103,-88,0,0,0.0810109 -266,5806:381,-61,-88,0,0,0.0753489 -267,5806:380,-60,-88,0,0,0.075163 -268,5805:489,-59,-88,0,0,0.0750201 -269,5805:488,-58,-88,0,0,0.074949 -270,5805:487,-57,-88,0,0,0.0749346 -271,5805:486,-56,-88,0,0,0.0749275 -272,5805:485,-55,-88,0,0,0.0749346 -273,5805:384,-54,-88,0,0,0.0749346 -274,5805:383,-53,-88,0,0,0.0749418 -275,5805:382,-52,-88,0,0,0.0749562 -276,5805:381,-51,-88,0,0,0.0749631 -277,5805:380,-50,-88,0,0,0.0749631 -278,5804:489,-49,-88,0,0,0.0749631 -279,5804:488,-48,-88,0,0,0.074949 -280,5804:487,-47,-88,0,0,0.0749703 -281,5804:486,-46,-88,0,0,0.0749988 -282,5804:485,-45,-88,0,0,0.0750273 -283,5804:384,-44,-88,0,0,0.0750201 -284,5804:383,-43,-88,0,0,0.0750201 -285,5804:382,-42,-88,0,0,0.0750131 -286,5804:381,-41,-88,0,0,0.0750201 -287,5804:380,-40,-88,0,0,0.0750345 -288,5803:489,-39,-88,0,0,0.0750345 -289,5803:488,-38,-88,0,0,0.0750345 -290,5803:487,-37,-88,0,0,0.0750345 -291,5803:486,-36,-88,0,0,0.0750345 -292,5803:485,-35,-88,0,0,0.0750416 -293,5803:384,-34,-88,0,0,0.0750345 -294,5803:383,-33,-88,0,0,0.0750345 -295,5803:382,-32,-88,0,0,0.0750416 -296,5803:381,-31,-88,0,0,0.0750488 -297,5803:380,-30,-88,0,0,0.0750488 -298,5802:489,-29,-88,0,0,0.0750488 -299,5802:488,-28,-88,0,0,0.0750345 -300,5802:487,-27,-88,0,0,0.0750201 -301,5802:486,-26,-88,0,0,0.0761183 -302,5802:485,-25,-88,0,0,0.0756715 -303,5802:384,-24,-88,0,0,0.0789397 -304,3816:486,166,-88,0,0,0.0752487 -305,3816:487,167,-88,0,0,0.075063 -306,3816:488,168,-88,0,0,0.0749846 -307,3816:489,169,-88,0,0,0.074899 -308,3817:380,170,-88,0,0,0.074892 -309,3817:381,171,-88,0,0,0.0748777 -310,3817:382,172,-88,0,0,0.0807894 -311,3817:383,173,-88,0,0,0.0878209 -312,3817:384,174,-88,0,0,0.087558 -313,3817:485,175,-88,0,0,0.0873776 -314,3817:486,176,-88,0,0,0.0863183 -315,3817:487,177,-88,0,0,0.0752844 -316,3817:488,178,-88,0,0,0.0748849 -317,3817:489,179,-88,0,0,0.074949 -318,3818:380,180,-88,0,0,0.0749916 -319,5818:370,-180,-87,0,0,0.0749916 -320,5817:479,-179,-87,0,0,0.0750201 -321,5817:478,-178,-87,0,0,0.0750201 -322,5817:477,-177,-87,0,0,0.0750416 -323,5817:476,-176,-87,0,0,0.0750488 -324,5817:475,-175,-87,0,0,0.0750558 -325,5817:374,-174,-87,0,0,0.0750702 -326,5817:373,-173,-87,0,0,0.0750773 -327,5817:372,-172,-87,0,0,0.0750843 -328,5817:371,-171,-87,0,0,0.0750843 -329,5817:370,-170,-87,0,0,0.0750915 -330,5816:479,-169,-87,0,0,0.0750987 -331,5816:478,-168,-87,0,0,0.0751059 -332,5816:477,-167,-87,0,0,0.0751128 -333,5816:476,-166,-87,0,0,0.0751059 -334,5816:475,-165,-87,0,0,0.0751059 -335,5816:374,-164,-87,0,0,0.0751059 -336,5816:373,-163,-87,0,0,0.0751128 -337,5816:372,-162,-87,0,0,0.0751128 -338,5816:371,-161,-87,0,0,0.07512 -339,5816:370,-160,-87,0,0,0.0751344 -340,5815:479,-159,-87,0,0,0.0751416 -341,5815:478,-158,-87,0,0,0.0751558 -342,5815:477,-157,-87,0,0,0.0751486 -343,5815:476,-156,-87,0,0,0.0751558 -344,5815:475,-155,-87,0,0,0.075163 -345,5815:374,-154,-87,0,0,0.0751486 -346,5815:373,-153,-87,0,0,0.075163 -347,5815:372,-152,-87,0,0,0.0751558 -348,5815:371,-151,-87,0,0,0.0751416 -349,5815:370,-150,-87,0,0,0.0751416 -350,5814:479,-149,-87,0,0,0.0751344 -351,5814:478,-148,-87,0,0,0.0751344 -352,5814:477,-147,-87,0,0,0.0751272 -353,5814:476,-146,-87,0,0,0.07512 -354,5814:475,-145,-87,0,0,0.07512 -355,5814:374,-144,-87,0,0,0.0751128 -356,5814:373,-143,-87,0,0,0.07512 -357,5814:372,-142,-87,0,0,0.0751128 -358,5814:371,-141,-87,0,0,0.0751128 -359,5814:370,-140,-87,0,0,0.07512 -360,5813:479,-139,-87,0,0,0.07512 -361,5813:478,-138,-87,0,0,0.0751272 -362,5813:477,-137,-87,0,0,0.07527 -363,5813:476,-136,-87,0,0,0.0758155 -364,5813:475,-135,-87,0,0,0.0776421 -365,5813:374,-134,-87,0,0,0.0779001 -366,5811:370,-110,-87,0,0,0.0832649 -367,5810:479,-109,-87,0,0,0.0880188 -368,5810:476,-106,-87,0,0,0.0759162 -369,5810:475,-105,-87,0,0,0.0753775 -370,5810:374,-104,-87,0,0,0.0768514 -371,5810:373,-103,-87,0,0,0.0810109 -372,5806:371,-61,-87,0,0,0.0753489 -373,5806:370,-60,-87,0,0,0.075163 -374,5805:479,-59,-87,0,0,0.0750201 -375,5805:478,-58,-87,0,0,0.074949 -376,5805:477,-57,-87,0,0,0.0749346 -377,5805:476,-56,-87,0,0,0.0749275 -378,5805:475,-55,-87,0,0,0.0749346 -379,5805:374,-54,-87,0,0,0.0749346 -380,5805:373,-53,-87,0,0,0.0749418 -381,5805:372,-52,-87,0,0,0.0749562 -382,5805:371,-51,-87,0,0,0.0749631 -383,5805:370,-50,-87,0,0,0.0749631 -384,5804:479,-49,-87,0,0,0.0749631 -385,5804:478,-48,-87,0,0,0.074949 -386,5804:477,-47,-87,0,0,0.0749703 -387,5804:476,-46,-87,0,0,0.0749988 -388,5804:475,-45,-87,0,0,0.0750273 -389,5804:374,-44,-87,0,0,0.0750201 -390,5804:373,-43,-87,0,0,0.0750201 -391,5804:372,-42,-87,0,0,0.0750131 -392,5804:371,-41,-87,0,0,0.0750201 -393,5804:370,-40,-87,0,0,0.0750345 -394,5803:479,-39,-87,0,0,0.0750345 -395,5803:478,-38,-87,0,0,0.0750345 -396,5803:477,-37,-87,0,0,0.0750345 -397,5803:476,-36,-87,0,0,0.0750345 -398,5803:475,-35,-87,0,0,0.0750416 -399,5803:374,-34,-87,0,0,0.0750345 -400,5803:373,-33,-87,0,0,0.0750345 -401,5803:372,-32,-87,0,0,0.0750416 -402,5803:371,-31,-87,0,0,0.0750488 -403,5803:370,-30,-87,0,0,0.0750488 -404,5802:479,-29,-87,0,0,0.0750488 -405,5802:478,-28,-87,0,0,0.0750345 -406,5802:477,-27,-87,0,0,0.0750201 -407,5802:476,-26,-87,0,0,0.0761183 -408,5802:475,-25,-87,0,0,0.0756715 -409,5802:374,-24,-87,0,0,0.0789397 -410,3816:476,166,-87,0,0,0.0752487 -411,3816:477,167,-87,0,0,0.075063 -412,3816:478,168,-87,0,0,0.0749846 -413,3816:479,169,-87,0,0,0.074899 -414,3817:370,170,-87,0,0,0.074892 -415,3817:371,171,-87,0,0,0.0748777 -416,3817:372,172,-87,0,0,0.0807894 -417,3817:373,173,-87,0,0,0.0878209 -418,3817:374,174,-87,0,0,0.087558 -419,3817:475,175,-87,0,0,0.0873776 -420,3817:476,176,-87,0,0,0.0863183 -421,3817:477,177,-87,0,0,0.0752844 -422,3817:478,178,-87,0,0,0.0748849 -423,3817:479,179,-87,0,0,0.074949 -424,3818:370,180,-87,0,0,0.0749916 -425,5818:360,-180,-86,0,0,0.0749916 -426,5817:469,-179,-86,0,0,0.0750201 -427,5817:468,-178,-86,0,0,0.0750201 -428,5817:467,-177,-86,0,0,0.0750416 -429,5817:466,-176,-86,0,0,0.0750488 -430,5817:465,-175,-86,0,0,0.0750558 -431,5817:364,-174,-86,0,0,0.0750702 -432,5817:363,-173,-86,0,0,0.0750773 -433,5817:362,-172,-86,0,0,0.0750843 -434,5817:361,-171,-86,0,0,0.0750843 -435,5817:360,-170,-86,0,0,0.0750915 -436,5816:469,-169,-86,0,0,0.0750987 -437,5816:468,-168,-86,0,0,0.0751059 -438,5816:467,-167,-86,0,0,0.0751128 -439,5816:466,-166,-86,0,0,0.0751059 -440,5816:465,-165,-86,0,0,0.0751059 -441,5816:364,-164,-86,0,0,0.0751059 -442,5816:363,-163,-86,0,0,0.0751128 -443,5816:362,-162,-86,0,0,0.0751128 -444,5816:361,-161,-86,0,0,0.07512 -445,5816:360,-160,-86,0,0,0.0751344 -446,5815:469,-159,-86,0,0,0.0751416 -447,5815:468,-158,-86,0,0,0.0751558 -448,5815:467,-157,-86,0,0,0.0751486 -449,5815:466,-156,-86,0,0,0.0751558 -450,5815:465,-155,-86,0,0,0.075163 -451,5815:364,-154,-86,0,0,0.0751486 -452,5815:363,-153,-86,0,0,0.075163 -453,5815:362,-152,-86,0,0,0.0751558 -454,5815:361,-151,-86,0,0,0.0751416 -455,5815:360,-150,-86,0,0,0.0751416 -456,5814:469,-149,-86,0,0,0.0751344 -457,5814:468,-148,-86,0,0,0.0751344 -458,5814:467,-147,-86,0,0,0.0751272 -459,5814:466,-146,-86,0,0,0.07512 -460,5814:465,-145,-86,0,0,0.07512 -461,5814:364,-144,-86,0,0,0.0751128 -462,5814:363,-143,-86,0,0,0.07512 -463,5814:362,-142,-86,0,0,0.0751128 -464,5814:361,-141,-86,0,0,0.0751128 -465,5814:360,-140,-86,0,0,0.07512 -466,5813:469,-139,-86,0,0,0.07512 -467,5813:468,-138,-86,0,0,0.0751272 -468,5813:467,-137,-86,0,0,0.07527 -469,5813:466,-136,-86,0,0,0.0758155 -470,5813:465,-135,-86,0,0,0.0776421 -471,5813:364,-134,-86,0,0,0.0779001 -472,5811:360,-110,-86,0,0,0.0832649 -473,5810:469,-109,-86,0,0,0.0880188 -474,5810:466,-106,-86,0,0,0.0759162 -475,5810:465,-105,-86,0,0,0.0753775 -476,5810:364,-104,-86,0,0,0.0768514 -477,5810:363,-103,-86,0,0,0.0810109 -478,5806:361,-61,-86,0,0,0.0753489 -479,5806:360,-60,-86,0,0,0.075163 -480,5805:469,-59,-86,0,0,0.0750201 -481,5805:468,-58,-86,0,0,0.074949 -482,5805:467,-57,-86,0,0,0.0749346 -483,5805:466,-56,-86,0,0,0.0749275 -484,5805:465,-55,-86,0,0,0.0749346 -485,5805:364,-54,-86,0,0,0.0749346 -486,5805:363,-53,-86,0,0,0.0749418 -487,5805:362,-52,-86,0,0,0.0749562 -488,5805:361,-51,-86,0,0,0.0749631 -489,5805:360,-50,-86,0,0,0.0749631 -490,5804:469,-49,-86,0,0,0.0749631 -491,5804:468,-48,-86,0,0,0.074949 -492,5804:467,-47,-86,0,0,0.0749703 -493,5804:466,-46,-86,0,0,0.0749988 -494,5804:465,-45,-86,0,0,0.0750273 -495,5804:364,-44,-86,0,0,0.0750201 -496,5804:363,-43,-86,0,0,0.0750201 -497,5804:362,-42,-86,0,0,0.0750131 -498,5804:361,-41,-86,0,0,0.0750201 -499,5804:360,-40,-86,0,0,0.0750345 -500,5803:469,-39,-86,0,0,0.0750345 -501,5803:468,-38,-86,0,0,0.0750345 -502,5803:467,-37,-86,0,0,0.0750345 -503,5803:466,-36,-86,0,0,0.0750345 -504,5803:465,-35,-86,0,0,0.0750416 -505,5803:364,-34,-86,0,0,0.0750345 -506,5803:363,-33,-86,0,0,0.0750345 -507,5803:362,-32,-86,0,0,0.0750416 -508,5803:361,-31,-86,0,0,0.0750488 -509,5803:360,-30,-86,0,0,0.0750488 -510,5802:469,-29,-86,0,0,0.0750488 -511,5802:468,-28,-86,0,0,0.0750345 -512,5802:467,-27,-86,0,0,0.0750201 -513,5802:466,-26,-86,0,0,0.0761183 -514,5802:465,-25,-86,0,0,0.0756715 -515,5802:364,-24,-86,0,0,0.0789397 -516,3816:466,166,-86,0,0,0.0752487 -517,3816:467,167,-86,0,0,0.075063 -518,3816:468,168,-86,0,0,0.0749846 -519,3816:469,169,-86,0,0,0.074899 -520,3817:360,170,-86,0,0,0.074892 -521,3817:361,171,-86,0,0,0.0748777 -522,3817:362,172,-86,0,0,0.0807894 -523,3817:363,173,-86,0,0,0.0878209 -524,3817:364,174,-86,0,0,0.087558 -525,3817:465,175,-86,0,0,0.0873776 -526,3817:466,176,-86,0,0,0.0863183 -527,3817:467,177,-86,0,0,0.0752844 -528,3817:468,178,-86,0,0,0.0748849 -529,3817:469,179,-86,0,0,0.074949 -530,3818:360,180,-86,0,0,0.0749916 -531,5818:350,-180,-85,0,0,0.0749916 -532,5817:459,-179,-85,0,0,0.0750201 -533,5817:458,-178,-85,0,0,0.0750201 -534,5817:457,-177,-85,0,0,0.0750416 -535,5817:456,-176,-85,0,0,0.0750488 -536,5817:455,-175,-85,0,0,0.0750558 -537,5817:354,-174,-85,0,0,0.0750702 -538,5817:353,-173,-85,0,0,0.0750773 -539,5817:352,-172,-85,0,0,0.0750843 -540,5817:351,-171,-85,0,0,0.0750843 -541,5817:350,-170,-85,0,0,0.0750915 -542,5816:459,-169,-85,0,0,0.0750987 -543,5816:458,-168,-85,0,0,0.0751059 -544,5816:457,-167,-85,0,0,0.0751128 -545,5816:456,-166,-85,0,0,0.0751059 -546,5816:455,-165,-85,0,0,0.0751059 -547,5816:354,-164,-85,0,0,0.0751059 -548,5816:353,-163,-85,0,0,0.0751128 -549,5816:352,-162,-85,0,0,0.0751128 -550,5816:351,-161,-85,0,0,0.07512 -551,5816:350,-160,-85,0,0,0.0751344 -552,5815:459,-159,-85,0,0,0.0751416 -553,5815:458,-158,-85,0,0,0.0751558 -554,5815:457,-157,-85,0,0,0.0751486 -555,5815:456,-156,-85,0,0,0.0751558 -556,5815:455,-155,-85,0,0,0.075163 -557,5815:354,-154,-85,0,0,0.0751486 -558,5815:353,-153,-85,0,0,0.075163 -559,5815:352,-152,-85,0,0,0.0751558 -560,5815:351,-151,-85,0,0,0.0751416 -561,5815:350,-150,-85,0,0,0.0751416 -562,5814:459,-149,-85,0,0,0.0751344 -563,5814:458,-148,-85,0,0,0.0751344 -564,5814:457,-147,-85,0,0,0.0751272 -565,5814:456,-146,-85,0,0,0.07512 -566,5814:455,-145,-85,0,0,0.07512 -567,5814:354,-144,-85,0,0,0.0751128 -568,5814:353,-143,-85,0,0,0.07512 -569,5814:352,-142,-85,0,0,0.0751128 -570,5814:351,-141,-85,0,0,0.0751128 -571,5814:350,-140,-85,0,0,0.07512 -572,5813:459,-139,-85,0,0,0.07512 -573,5813:458,-138,-85,0,0,0.0751272 -574,5813:457,-137,-85,0,0,0.07527 -575,5813:456,-136,-85,0,0,0.0758155 -576,5813:455,-135,-85,0,0,0.0776421 -577,5813:354,-134,-85,0,0,0.0779001 -578,5811:350,-110,-85,0,0,0.0832649 -579,5810:459,-109,-85,0,0,0.0880188 -580,5810:456,-106,-85,0,0,0.0759162 -581,5810:455,-105,-85,0,0,0.0753775 -582,5810:354,-104,-85,0,0,0.0768514 -583,5810:353,-103,-85,0,0,0.0810109 -584,5806:351,-61,-85,0,0,0.0753489 -585,5806:350,-60,-85,0,0,0.075163 -586,5805:459,-59,-85,0,0,0.0750201 -587,5805:458,-58,-85,0,0,0.074949 -588,5805:457,-57,-85,0,0,0.0749346 -589,5805:456,-56,-85,0,0,0.0749275 -590,5805:455,-55,-85,0,0,0.0749346 -591,5805:354,-54,-85,0,0,0.0749346 -592,5805:353,-53,-85,0,0,0.0749418 -593,5805:352,-52,-85,0,0,0.0749562 -594,5805:351,-51,-85,0,0,0.0749631 -595,5805:350,-50,-85,0,0,0.0749631 -596,5804:459,-49,-85,0,0,0.0749631 -597,5804:458,-48,-85,0,0,0.074949 -598,5804:457,-47,-85,0,0,0.0749703 -599,5804:456,-46,-85,0,0,0.0749988 -600,5804:455,-45,-85,0,0,0.0750273 -601,5804:354,-44,-85,0,0,0.0750201 -602,5804:353,-43,-85,0,0,0.0750201 -603,5804:352,-42,-85,0,0,0.0750131 -604,5804:351,-41,-85,0,0,0.0750201 -605,5804:350,-40,-85,0,0,0.0750345 -606,5803:459,-39,-85,0,0,0.0750345 -607,5803:458,-38,-85,0,0,0.0750345 -608,5803:457,-37,-85,0,0,0.0750345 -609,5803:456,-36,-85,0,0,0.0750345 -610,5803:455,-35,-85,0,0,0.0750416 -611,5803:354,-34,-85,0,0,0.0750345 -612,5803:353,-33,-85,0,0,0.0750345 -613,5803:352,-32,-85,0,0,0.0750416 -614,5803:351,-31,-85,0,0,0.0750488 -615,5803:350,-30,-85,0,0,0.0750488 -616,5802:459,-29,-85,0,0,0.0750488 -617,5802:458,-28,-85,0,0,0.0750345 -618,5802:457,-27,-85,0,0,0.0750201 -619,5802:456,-26,-85,0,0,0.0761183 -620,5802:455,-25,-85,0,0,0.0756715 -621,5802:354,-24,-85,0,0,0.0789397 -622,3816:456,166,-85,0,0,0.0752487 -623,3816:457,167,-85,0,0,0.075063 -624,3816:458,168,-85,0,0,0.0749846 -625,3816:459,169,-85,0,0,0.074899 -626,3817:350,170,-85,0,0,0.074892 -627,3817:351,171,-85,0,0,0.0748777 -628,3817:352,172,-85,0,0,0.0807894 -629,3817:353,173,-85,0,0,0.0878209 -630,3817:354,174,-85,0,0,0.087558 -631,3817:455,175,-85,0,0,0.0873776 -632,3817:456,176,-85,0,0,0.0863183 -633,3817:457,177,-85,0,0,0.0752844 -634,3817:458,178,-85,0,0,0.0748849 -635,3817:459,179,-85,0,0,0.074949 -636,3818:350,180,-85,0,0,0.0749916 -637,5818:140,-180,-84,0,0,0.0749916 -638,5817:249,-179,-84,0,0,0.0750201 -639,5817:248,-178,-84,0,0,0.0750201 -640,5817:247,-177,-84,0,0,0.0750416 -641,5817:246,-176,-84,0,0,0.0750488 -642,5817:245,-175,-84,0,0,0.0750558 -643,5817:144,-174,-84,0,0,0.0750702 -644,5817:143,-173,-84,0,0,0.0750773 -645,5817:142,-172,-84,0,0,0.0750843 -646,5817:141,-171,-84,0,0,0.0750843 -647,5817:140,-170,-84,0,0,0.0750915 -648,5816:249,-169,-84,0,0,0.0750987 -649,5816:248,-168,-84,0,0,0.0751059 -650,5816:247,-167,-84,0,0,0.0751128 -651,5816:246,-166,-84,0,0,0.0751059 -652,5816:245,-165,-84,0,0,0.0751059 -653,5816:144,-164,-84,0,0,0.0751059 -654,5816:143,-163,-84,0,0,0.0751128 -655,5816:142,-162,-84,0,0,0.0751128 -656,5816:141,-161,-84,0,0,0.07512 -657,5816:140,-160,-84,0,0,0.0751344 -658,5815:249,-159,-84,0,0,0.0751416 -659,5815:248,-158,-84,0,0,0.0751558 -660,5815:247,-157,-84,0,0,0.0751486 -661,5815:246,-156,-84,0,0,0.0751558 -662,5815:245,-155,-84,0,0,0.075163 -663,5815:144,-154,-84,0,0,0.0751486 -664,5815:143,-153,-84,0,0,0.075163 -665,5815:142,-152,-84,0,0,0.0751558 -666,5815:141,-151,-84,0,0,0.0751416 -667,5815:140,-150,-84,0,0,0.0751416 -668,5814:249,-149,-84,0,0,0.0751344 -669,5814:248,-148,-84,0,0,0.0751344 -670,5814:247,-147,-84,0,0,0.0751272 -671,5814:246,-146,-84,0,0,0.07512 -672,5814:245,-145,-84,0,0,0.07512 -673,5814:144,-144,-84,0,0,0.0751128 -674,5814:143,-143,-84,0,0,0.07512 -675,5814:142,-142,-84,0,0,0.0751128 -676,5814:141,-141,-84,0,0,0.0751128 -677,5814:140,-140,-84,0,0,0.07512 -678,5813:249,-139,-84,0,0,0.07512 -679,5813:248,-138,-84,0,0,0.0751272 -680,5813:247,-137,-84,0,0,0.07527 -681,5813:246,-136,-84,0,0,0.0758155 -682,5813:245,-135,-84,0,0,0.0776421 -683,5813:144,-134,-84,0,0,0.0779001 -684,5811:140,-110,-84,0,0,0.0832649 -685,5810:249,-109,-84,0,0,0.0880188 -686,5810:246,-106,-84,0,0,0.0759162 -687,5810:245,-105,-84,0,0,0.0753775 -688,5810:144,-104,-84,0,0,0.0768514 -689,5810:143,-103,-84,0,0,0.0810109 -690,5806:141,-61,-84,0,0,0.0753489 -691,5806:140,-60,-84,0,0,0.075163 -692,5805:249,-59,-84,0,0,0.0750201 -693,5805:248,-58,-84,0,0,0.074949 -694,5805:247,-57,-84,0,0,0.0749346 -695,5805:246,-56,-84,0,0,0.0749275 -696,5805:245,-55,-84,0,0,0.0749346 -697,5805:144,-54,-84,0,0,0.0749346 -698,5805:143,-53,-84,0,0,0.0749418 -699,5805:142,-52,-84,0,0,0.0749562 -700,5805:141,-51,-84,0,0,0.0749631 -701,5805:140,-50,-84,0,0,0.0749631 -702,5804:249,-49,-84,0,0,0.0749631 -703,5804:248,-48,-84,0,0,0.074949 -704,5804:247,-47,-84,0,0,0.0749703 -705,5804:246,-46,-84,0,0,0.0749988 -706,5804:245,-45,-84,0,0,0.0750273 -707,5804:144,-44,-84,0,0,0.0750201 -708,5804:143,-43,-84,0,0,0.0750201 -709,5804:142,-42,-84,0,0,0.0750131 -710,5804:141,-41,-84,0,0,0.0750201 -711,5804:140,-40,-84,0,0,0.0750345 -712,5803:249,-39,-84,0,0,0.0750345 -713,5803:248,-38,-84,0,0,0.0750345 -714,5803:247,-37,-84,0,0,0.0750345 -715,5803:246,-36,-84,0,0,0.0750345 -716,5803:245,-35,-84,0,0,0.0750416 -717,5803:144,-34,-84,0,0,0.0750345 -718,5803:143,-33,-84,0,0,0.0750345 -719,5803:142,-32,-84,0,0,0.0750416 -720,5803:141,-31,-84,0,0,0.0750488 -721,5803:140,-30,-84,0,0,0.0750488 -722,5802:249,-29,-84,0,0,0.0750488 -723,5802:248,-28,-84,0,0,0.0750345 -724,5802:247,-27,-84,0,0,0.0750201 -725,5802:246,-26,-84,0,0,0.0761183 -726,5802:245,-25,-84,0,0,0.0756715 -727,5802:144,-24,-84,0,0,0.0789397 -728,3816:246,166,-84,0,0,0.0752487 -729,3816:247,167,-84,0,0,0.075063 -730,3816:248,168,-84,0,0,0.0749846 -731,3816:249,169,-84,0,0,0.074899 -732,3817:140,170,-84,0,0,0.074892 -733,3817:141,171,-84,0,0,0.0748777 -734,3817:142,172,-84,0,0,0.0807894 -735,3817:143,173,-84,0,0,0.0878209 -736,3817:144,174,-84,0,0,0.087558 -737,3817:245,175,-84,0,0,0.0873776 -738,3817:246,176,-84,0,0,0.0863183 -739,3817:247,177,-84,0,0,0.0752844 -740,3817:248,178,-84,0,0,0.0748849 -741,3817:249,179,-84,0,0,0.074949 -742,3818:140,180,-84,0,0,0.0749916 -743,5818:130,-180,-83,0,0,0.0749916 -744,5817:239,-179,-83,0,0,0.0750201 -745,5817:238,-178,-83,0,0,0.0750201 -746,5817:237,-177,-83,0,0,0.0750416 -747,5817:236,-176,-83,0,0,0.0750488 -748,5817:235,-175,-83,0,0,0.0750558 -749,5817:134,-174,-83,0,0,0.0750702 -750,5817:133,-173,-83,0,0,0.0750773 -751,5817:132,-172,-83,0,0,0.0750843 -752,5817:131,-171,-83,0,0,0.0750843 -753,5817:130,-170,-83,0,0,0.0750915 -754,5816:239,-169,-83,0,0,0.0750987 -755,5816:238,-168,-83,0,0,0.0751059 -756,5816:237,-167,-83,0,0,0.0751128 -757,5816:236,-166,-83,0,0,0.0751059 -758,5816:235,-165,-83,0,0,0.0751059 -759,5816:134,-164,-83,0,0,0.0751059 -760,5816:133,-163,-83,0,0,0.0751128 -761,5816:132,-162,-83,0,0,0.0751128 -762,5816:131,-161,-83,0,0,0.07512 -763,5816:130,-160,-83,0,0,0.0751344 -764,5815:239,-159,-83,0,0,0.0751416 -765,5815:238,-158,-83,0,0,0.0751558 -766,5815:237,-157,-83,0,0,0.0751486 -767,5815:236,-156,-83,0,0,0.0751558 -768,5815:235,-155,-83,0,0,0.075163 -769,5815:134,-154,-83,0,0,0.0751486 -770,5815:133,-153,-83,0,0,0.075163 -771,5815:132,-152,-83,0,0,0.0751558 -772,5815:131,-151,-83,0,0,0.0751416 -773,5815:130,-150,-83,0,0,0.0751416 -774,5814:239,-149,-83,0,0,0.0751344 -775,5814:238,-148,-83,0,0,0.0751344 -776,5814:237,-147,-83,0,0,0.0751272 -777,5814:236,-146,-83,0,0,0.07512 -778,5814:235,-145,-83,0,0,0.07512 -779,5814:134,-144,-83,0,0,0.0751128 -780,5814:133,-143,-83,0,0,0.07512 -781,5814:132,-142,-83,0,0,0.0751128 -782,5814:131,-141,-83,0,0,0.0751128 -783,5814:130,-140,-83,0,0,0.07512 -784,5813:239,-139,-83,0,0,0.07512 -785,5813:238,-138,-83,0,0,0.0751272 -786,5813:237,-137,-83,0,0,0.07527 -787,5813:236,-136,-83,0,0,0.0758155 -788,5813:235,-135,-83,0,0,0.0776421 -789,5813:134,-134,-83,0,0,0.0779001 -790,5811:130,-110,-83,0,0,0.0832649 -791,5810:239,-109,-83,0,0,0.0880188 -792,5810:236,-106,-83,0,0,0.0759162 -793,5810:235,-105,-83,0,0,0.0753775 -794,5810:134,-104,-83,0,0,0.0768514 -795,5810:133,-103,-83,0,0,0.0810109 -796,5806:131,-61,-83,0,0,0.0753489 -797,5806:130,-60,-83,0,0,0.075163 -798,5805:239,-59,-83,0,0,0.0750201 -799,5805:238,-58,-83,0,0,0.074949 -800,5805:237,-57,-83,0,0,0.0749346 -801,5805:236,-56,-83,0,0,0.0749275 -802,5805:235,-55,-83,0,0,0.0749346 -803,5805:134,-54,-83,0,0,0.0749346 -804,5805:133,-53,-83,0,0,0.0749418 -805,5805:132,-52,-83,0,0,0.0749562 -806,5805:131,-51,-83,0,0,0.0749631 -807,5805:130,-50,-83,0,0,0.0749631 -808,5804:239,-49,-83,0,0,0.0749631 -809,5804:238,-48,-83,0,0,0.074949 -810,5804:237,-47,-83,0,0,0.0749703 -811,5804:236,-46,-83,0,0,0.0749988 -812,5804:235,-45,-83,0,0,0.0750273 -813,5804:134,-44,-83,0,0,0.0750201 -814,5804:133,-43,-83,0,0,0.0750201 -815,5804:132,-42,-83,0,0,0.0750131 -816,5804:131,-41,-83,0,0,0.0750201 -817,5804:130,-40,-83,0,0,0.0750345 -818,5803:239,-39,-83,0,0,0.0750345 -819,5803:238,-38,-83,0,0,0.0750345 -820,5803:237,-37,-83,0,0,0.0750345 -821,5803:236,-36,-83,0,0,0.0750345 -822,5803:235,-35,-83,0,0,0.0750416 -823,5803:134,-34,-83,0,0,0.0750345 -824,5803:133,-33,-83,0,0,0.0750345 -825,5803:132,-32,-83,0,0,0.0750416 -826,5803:131,-31,-83,0,0,0.0750488 -827,5803:130,-30,-83,0,0,0.0750488 -828,5802:239,-29,-83,0,0,0.0750488 -829,5802:238,-28,-83,0,0,0.0750345 -830,5802:237,-27,-83,0,0,0.0750201 -831,5802:236,-26,-83,0,0,0.0761183 -832,5802:235,-25,-83,0,0,0.0756715 -833,5802:134,-24,-83,0,0,0.0789397 -834,3816:236,166,-83,0,0,0.0752487 -835,3816:237,167,-83,0,0,0.075063 -836,3816:238,168,-83,0,0,0.0749846 -837,3816:239,169,-83,0,0,0.074899 -838,3817:130,170,-83,0,0,0.074892 -839,3817:131,171,-83,0,0,0.0748777 -840,3817:132,172,-83,0,0,0.0807894 -841,3817:133,173,-83,0,0,0.0878209 -842,3817:134,174,-83,0,0,0.087558 -843,3817:235,175,-83,0,0,0.0873776 -844,3817:236,176,-83,0,0,0.0863183 -845,3817:237,177,-83,0,0,0.0752844 -846,3817:238,178,-83,0,0,0.0748849 -847,3817:239,179,-83,0,0,0.074949 -848,3818:130,180,-83,0,0,0.0749916 -849,5818:120,-180,-82,0,0,0.0749916 -850,5817:229,-179,-82,0,0,0.0750201 -851,5817:228,-178,-82,0,0,0.0750201 -852,5817:227,-177,-82,0,0,0.0750416 -853,5817:226,-176,-82,0,0,0.0750488 -854,5817:225,-175,-82,0,0,0.0750558 -855,5817:124,-174,-82,0,0,0.0750702 -856,5817:123,-173,-82,0,0,0.0750773 -857,5817:122,-172,-82,0,0,0.0750843 -858,5817:121,-171,-82,0,0,0.0750843 -859,5817:120,-170,-82,0,0,0.0750915 -860,5816:229,-169,-82,0,0,0.0750987 -861,5816:228,-168,-82,0,0,0.0751059 -862,5816:227,-167,-82,0,0,0.0751128 -863,5816:226,-166,-82,0,0,0.0751059 -864,5816:225,-165,-82,0,0,0.0751059 -865,5816:124,-164,-82,0,0,0.0751059 -866,5816:123,-163,-82,0,0,0.0751128 -867,5816:122,-162,-82,0,0,0.0751128 -868,5816:121,-161,-82,0,0,0.07512 -869,5816:120,-160,-82,0,0,0.0751344 -870,5815:229,-159,-82,0,0,0.0751416 -871,5815:228,-158,-82,0,0,0.0751558 -872,5815:227,-157,-82,0,0,0.0751486 -873,5815:226,-156,-82,0,0,0.0751558 -874,5815:225,-155,-82,0,0,0.075163 -875,5815:124,-154,-82,0,0,0.0751486 -876,5815:123,-153,-82,0,0,0.075163 -877,5815:122,-152,-82,0,0,0.0751558 -878,5815:121,-151,-82,0,0,0.0751416 -879,5815:120,-150,-82,0,0,0.0751416 -880,5814:229,-149,-82,0,0,0.0751344 -881,5814:228,-148,-82,0,0,0.0751344 -882,5814:227,-147,-82,0,0,0.0751272 -883,5814:226,-146,-82,0,0,0.07512 -884,5814:225,-145,-82,0,0,0.07512 -885,5814:124,-144,-82,0,0,0.0751128 -886,5814:123,-143,-82,0,0,0.07512 -887,5814:122,-142,-82,0,0,0.0751128 -888,5814:121,-141,-82,0,0,0.0751128 -889,5814:120,-140,-82,0,0,0.07512 -890,5813:229,-139,-82,0,0,0.07512 -891,5813:228,-138,-82,0,0,0.0751272 -892,5813:227,-137,-82,0,0,0.07527 -893,5813:226,-136,-82,0,0,0.0758155 -894,5813:225,-135,-82,0,0,0.0776421 -895,5813:124,-134,-82,0,0,0.0779001 -896,5811:120,-110,-82,0,0,0.0832649 -897,5810:229,-109,-82,0,0,0.0880188 -898,5810:226,-106,-82,0,0,0.0759162 -899,5810:225,-105,-82,0,0,0.0753775 -900,5810:124,-104,-82,0,0,0.0768514 -901,5810:123,-103,-82,0,0,0.0810109 -902,5806:121,-61,-82,0,0,0.0753489 -903,5806:120,-60,-82,0,0,0.075163 -904,5805:229,-59,-82,0,0,0.0750201 -905,5805:228,-58,-82,0,0,0.074949 -906,5805:227,-57,-82,0,0,0.0749346 -907,5805:226,-56,-82,0,0,0.0749275 -908,5805:225,-55,-82,0,0,0.0749346 -909,5805:124,-54,-82,0,0,0.0749346 -910,5805:123,-53,-82,0,0,0.0749418 -911,5805:122,-52,-82,0,0,0.0749562 -912,5805:121,-51,-82,0,0,0.0749631 -913,5805:120,-50,-82,0,0,0.0749631 -914,5804:229,-49,-82,0,0,0.0749631 -915,5804:228,-48,-82,0,0,0.074949 -916,5804:227,-47,-82,0,0,0.0749703 -917,5804:226,-46,-82,0,0,0.0749988 -918,5804:225,-45,-82,0,0,0.0750273 -919,5804:124,-44,-82,0,0,0.0750201 -920,5804:123,-43,-82,0,0,0.0750201 -921,5804:122,-42,-82,0,0,0.0750131 -922,5804:121,-41,-82,0,0,0.0750201 -923,5804:120,-40,-82,0,0,0.0750345 -924,5803:229,-39,-82,0,0,0.0750345 -925,5803:228,-38,-82,0,0,0.0750345 -926,5803:227,-37,-82,0,0,0.0750345 -927,5803:226,-36,-82,0,0,0.0750345 -928,5803:225,-35,-82,0,0,0.0750416 -929,5803:124,-34,-82,0,0,0.0750345 -930,5803:123,-33,-82,0,0,0.0750345 -931,5803:122,-32,-82,0,0,0.0750416 -932,5803:121,-31,-82,0,0,0.0750488 -933,5803:120,-30,-82,0,0,0.0750488 -934,5802:229,-29,-82,0,0,0.0750488 -935,5802:228,-28,-82,0,0,0.0750345 -936,5802:227,-27,-82,0,0,0.0750201 -937,5802:226,-26,-82,0,0,0.0761183 -938,5802:225,-25,-82,0,0,0.0756715 -939,5802:124,-24,-82,0,0,0.0789397 -940,3816:226,166,-82,0,0,0.0752487 -941,3816:227,167,-82,0,0,0.075063 -942,3816:228,168,-82,0,0,0.0749846 -943,3816:229,169,-82,0,0,0.074899 -944,3817:120,170,-82,0,0,0.074892 -945,3817:121,171,-82,0,0,0.0748777 -946,3817:122,172,-82,0,0,0.0807894 -947,3817:123,173,-82,0,0,0.0878209 -948,3817:124,174,-82,0,0,0.087558 -949,3817:225,175,-82,0,0,0.0873776 -950,3817:226,176,-82,0,0,0.0863183 -951,3817:227,177,-82,0,0,0.0752844 -952,3817:228,178,-82,0,0,0.0748849 -953,3817:229,179,-82,0,0,0.074949 -954,3818:120,180,-82,0,0,0.0749916 -955,5818:110,-180,-81,0,0,0.0749916 -956,5817:219,-179,-81,0,0,0.0750201 -957,5817:218,-178,-81,0,0,0.0750201 -958,5817:217,-177,-81,0,0,0.0750416 -959,5817:216,-176,-81,0,0,0.0750488 -960,5817:215,-175,-81,0,0,0.0750558 -961,5817:114,-174,-81,0,0,0.0750702 -962,5817:113,-173,-81,0,0,0.0750773 -963,5817:112,-172,-81,0,0,0.0750843 -964,5817:111,-171,-81,0,0,0.0750843 -965,5817:110,-170,-81,0,0,0.0750915 -966,5816:219,-169,-81,0,0,0.0750987 -967,5816:218,-168,-81,0,0,0.0751059 -968,5816:217,-167,-81,0,0,0.0751128 -969,5816:216,-166,-81,0,0,0.0751059 -970,5816:215,-165,-81,0,0,0.0751059 -971,5816:114,-164,-81,0,0,0.0751059 -972,5816:113,-163,-81,0,0,0.0751128 -973,5816:112,-162,-81,0,0,0.0751128 -974,5816:111,-161,-81,0,0,0.07512 -975,5816:110,-160,-81,0,0,0.0751344 -976,5815:219,-159,-81,0,0,0.0751416 -977,5815:218,-158,-81,0,0,0.0751558 -978,5815:217,-157,-81,0,0,0.0751486 -979,5815:216,-156,-81,0,0,0.0751558 -980,5815:215,-155,-81,0,0,0.075163 -981,5815:114,-154,-81,0,0,0.0751486 -982,5815:113,-153,-81,0,0,0.075163 -983,5815:112,-152,-81,0,0,0.0751558 -984,5815:111,-151,-81,0,0,0.0751416 -985,5815:110,-150,-81,0,0,0.0751416 -986,5814:219,-149,-81,0,0,0.0751344 -987,5814:218,-148,-81,0,0,0.0751344 -988,5814:217,-147,-81,0,0,0.0751272 -989,5814:216,-146,-81,0,0,0.07512 -990,5814:215,-145,-81,0,0,0.07512 -991,5814:114,-144,-81,0,0,0.0751128 -992,5814:113,-143,-81,0,0,0.07512 -993,5814:112,-142,-81,0,0,0.0751128 -994,5814:111,-141,-81,0,0,0.0751128 -995,5814:110,-140,-81,0,0,0.07512 -996,5813:219,-139,-81,0,0,0.07512 -997,5813:218,-138,-81,0,0,0.0751272 -998,5813:217,-137,-81,0,0,0.07527 -999,5813:216,-136,-81,0,0,0.0758155 -1000,5813:215,-135,-81,0,0,0.0776421 -1001,5813:114,-134,-81,0,0,0.0779001 -1002,5811:110,-110,-81,0,0,0.0832649 -1003,5810:219,-109,-81,0,0,0.0880188 -1004,5810:216,-106,-81,0,0,0.0759162 -1005,5810:215,-105,-81,0,0,0.0753775 -1006,5810:114,-104,-81,0,0,0.0768514 -1007,5810:113,-103,-81,0,0,0.0810109 -1008,5806:111,-61,-81,0,0,0.0753489 -1009,5806:110,-60,-81,0,0,0.075163 -1010,5805:219,-59,-81,0,0,0.0750201 -1011,5805:218,-58,-81,0,0,0.074949 -1012,5805:217,-57,-81,0,0,0.0749346 -1013,5805:216,-56,-81,0,0,0.0749275 -1014,5805:215,-55,-81,0,0,0.0749346 -1015,5805:114,-54,-81,0,0,0.0749346 -1016,5805:113,-53,-81,0,0,0.0749418 -1017,5805:112,-52,-81,0,0,0.0749562 -1018,5805:111,-51,-81,0,0,0.0749631 -1019,5805:110,-50,-81,0,0,0.0749631 -1020,5804:219,-49,-81,0,0,0.0749631 -1021,5804:218,-48,-81,0,0,0.074949 -1022,5804:217,-47,-81,0,0,0.0749703 -1023,5804:216,-46,-81,0,0,0.0749988 -1024,5804:215,-45,-81,0,0,0.0750273 -1025,5804:114,-44,-81,0,0,0.0750201 -1026,5804:113,-43,-81,0,0,0.0750201 -1027,5804:112,-42,-81,0,0,0.0750131 -1028,5804:111,-41,-81,0,0,0.0750201 -1029,5804:110,-40,-81,0,0,0.0750345 -1030,5803:219,-39,-81,0,0,0.0750345 -1031,5803:218,-38,-81,0,0,0.0750345 -1032,5803:217,-37,-81,0,0,0.0750345 -1033,5803:216,-36,-81,0,0,0.0750345 -1034,5803:215,-35,-81,0,0,0.0750416 -1035,5803:114,-34,-81,0,0,0.0750345 -1036,5803:113,-33,-81,0,0,0.0750345 -1037,5803:112,-32,-81,0,0,0.0750416 -1038,5803:111,-31,-81,0,0,0.0750488 -1039,5803:110,-30,-81,0,0,0.0750488 -1040,5802:219,-29,-81,0,0,0.0750488 -1041,5802:218,-28,-81,0,0,0.0750345 -1042,5802:217,-27,-81,0,0,0.0750201 -1043,5802:216,-26,-81,0,0,0.0761183 -1044,5802:215,-25,-81,0,0,0.0756715 -1045,5802:114,-24,-81,0,0,0.0789397 -1046,3816:216,166,-81,0,0,0.0752487 -1047,3816:217,167,-81,0,0,0.075063 -1048,3816:218,168,-81,0,0,0.0749846 -1049,3816:219,169,-81,0,0,0.074899 -1050,3817:110,170,-81,0,0,0.074892 -1051,3817:111,171,-81,0,0,0.0748777 -1052,3817:112,172,-81,0,0,0.0807894 -1053,3817:113,173,-81,0,0,0.0878209 -1054,3817:114,174,-81,0,0,0.087558 -1055,3817:215,175,-81,0,0,0.0873776 -1056,3817:216,176,-81,0,0,0.0863183 -1057,3817:217,177,-81,0,0,0.0752844 -1058,3817:218,178,-81,0,0,0.0748849 -1059,3817:219,179,-81,0,0,0.074949 -1060,3818:110,180,-81,0,0,0.0749916 -1061,5818:100,-180,-80,0,0,0.0749916 -1062,5817:209,-179,-80,0,0,0.0750201 -1063,5817:208,-178,-80,0,0,0.0750201 -1064,5817:207,-177,-80,0,0,0.0750416 -1065,5817:206,-176,-80,0,0,0.0750488 -1066,5817:205,-175,-80,0,0,0.0750558 -1067,5817:104,-174,-80,0,0,0.0750702 -1068,5817:103,-173,-80,0,0,0.0750773 -1069,5817:102,-172,-80,0,0,0.0750843 -1070,5817:101,-171,-80,0,0,0.0750843 -1071,5817:100,-170,-80,0,0,0.0750915 -1072,5816:209,-169,-80,0,0,0.0750987 -1073,5816:208,-168,-80,0,0,0.0751059 -1074,5816:207,-167,-80,0,0,0.0751128 -1075,5816:206,-166,-80,0,0,0.0751059 -1076,5816:205,-165,-80,0,0,0.0751059 -1077,5816:104,-164,-80,0,0,0.0751059 -1078,5816:103,-163,-80,0,0,0.0751128 -1079,5816:102,-162,-80,0,0,0.0751128 -1080,5816:101,-161,-80,0,0,0.07512 -1081,5816:100,-160,-80,0,0,0.0751344 -1082,5815:209,-159,-80,0,0,0.0751416 -1083,5815:208,-158,-80,0,0,0.0751558 -1084,5815:207,-157,-80,0,0,0.0751486 -1085,5815:206,-156,-80,0,0,0.0751558 -1086,5815:205,-155,-80,0,0,0.075163 -1087,5815:104,-154,-80,0,0,0.0751486 -1088,5815:103,-153,-80,0,0,0.075163 -1089,5815:102,-152,-80,0,0,0.0751558 -1090,5815:101,-151,-80,0,0,0.0751416 -1091,5815:100,-150,-80,0,0,0.0751416 -1092,5814:209,-149,-80,0,0,0.0751344 -1093,5814:208,-148,-80,0,0,0.0751344 -1094,5814:207,-147,-80,0,0,0.0751272 -1095,5814:206,-146,-80,0,0,0.07512 -1096,5814:205,-145,-80,0,0,0.07512 -1097,5814:104,-144,-80,0,0,0.0751128 -1098,5814:103,-143,-80,0,0,0.07512 -1099,5814:102,-142,-80,0,0,0.0751128 -1100,5814:101,-141,-80,0,0,0.0751128 -1101,5814:100,-140,-80,0,0,0.07512 -1102,5813:209,-139,-80,0,0,0.07512 -1103,5813:208,-138,-80,0,0,0.0751272 -1104,5813:207,-137,-80,0,0,0.07527 -1105,5813:206,-136,-80,0,0,0.0758155 -1106,5813:205,-135,-80,0,0,0.0776421 -1107,5813:104,-134,-80,0,0,0.0779001 -1108,5811:100,-110,-80,0,0,0.0832649 -1109,5810:209,-109,-80,0,0,0.0880188 -1110,5810:206,-106,-80,0,0,0.0759162 -1111,5810:205,-105,-80,0,0,0.0753775 -1112,5810:104,-104,-80,0,0,0.0768514 -1113,5810:103,-103,-80,0,0,0.0810109 -1114,5806:101,-61,-80,0,0,0.0753489 -1115,5806:100,-60,-80,0,0,0.075163 -1116,5805:209,-59,-80,0,0,0.0750201 -1117,5805:208,-58,-80,0,0,0.074949 -1118,5805:207,-57,-80,0,0,0.0749346 -1119,5805:206,-56,-80,0,0,0.0749275 -1120,5805:205,-55,-80,0,0,0.0749346 -1121,5805:104,-54,-80,0,0,0.0749346 -1122,5805:103,-53,-80,0,0,0.0749418 -1123,5805:102,-52,-80,0,0,0.0749562 -1124,5805:101,-51,-80,0,0,0.0749631 -1125,5805:100,-50,-80,0,0,0.0749631 -1126,5804:209,-49,-80,0,0,0.0749631 -1127,5804:208,-48,-80,0,0,0.074949 -1128,5804:207,-47,-80,0,0,0.0749703 -1129,5804:206,-46,-80,0,0,0.0749988 -1130,5804:205,-45,-80,0,0,0.0750273 -1131,5804:104,-44,-80,0,0,0.0750201 -1132,5804:103,-43,-80,0,0,0.0750201 -1133,5804:102,-42,-80,0,0,0.0750131 -1134,5804:101,-41,-80,0,0,0.0750201 -1135,5804:100,-40,-80,0,0,0.0750345 -1136,5803:209,-39,-80,0,0,0.0750345 -1137,5803:208,-38,-80,0,0,0.0750345 -1138,5803:207,-37,-80,0,0,0.0750345 -1139,5803:206,-36,-80,0,0,0.0750345 -1140,5803:205,-35,-80,0,0,0.0750416 -1141,5803:104,-34,-80,0,0,0.0750345 -1142,5803:103,-33,-80,0,0,0.0750345 -1143,5803:102,-32,-80,0,0,0.0750416 -1144,5803:101,-31,-80,0,0,0.0750488 -1145,5803:100,-30,-80,0,0,0.0750488 -1146,5802:209,-29,-80,0,0,0.0750488 -1147,5802:208,-28,-80,0,0,0.0750345 -1148,5802:207,-27,-80,0,0,0.0750201 -1149,5802:206,-26,-80,0,0,0.0761183 -1150,5802:205,-25,-80,0,0,0.0756715 -1151,5802:104,-24,-80,0,0,0.0789397 -1152,3816:206,166,-80,0,0,0.0752487 -1153,3816:207,167,-80,0,0,0.075063 -1154,3816:208,168,-80,0,0,0.0749846 -1155,3816:209,169,-80,0,0,0.074899 -1156,3817:100,170,-80,0,0,0.074892 -1157,3817:101,171,-80,0,0,0.0748777 -1158,3817:102,172,-80,0,0,0.0807894 -1159,3817:103,173,-80,0,0,0.0878209 -1160,3817:104,174,-80,0,0,0.087558 -1161,3817:205,175,-80,0,0,0.0873776 -1162,3817:206,176,-80,0,0,0.0863183 -1163,3817:207,177,-80,0,0,0.0752844 -1164,3817:208,178,-80,0,0,0.0748849 -1165,3817:209,179,-80,0,0,0.074949 -1166,3818:100,180,-80,0,0,0.0749916 -1167,5718:390,-180,-79,0,0,0.0749916 -1168,5717:499,-179,-79,0,0,0.0750201 -1169,5717:498,-178,-79,0,0,0.0750201 -1170,5717:497,-177,-79,0,0,0.0750416 -1171,5717:496,-176,-79,0,0,0.0750488 -1172,5717:495,-175,-79,0,0,0.0750558 -1173,5717:394,-174,-79,0,0,0.0750702 -1174,5717:393,-173,-79,0,0,0.0750773 -1175,5717:392,-172,-79,0,0,0.0750843 -1176,5717:391,-171,-79,0,0,0.0750843 -1177,5717:390,-170,-79,0,0,0.0750915 -1178,5716:499,-169,-79,0,0,0.0750987 -1179,5716:498,-168,-79,0,0,0.0751059 -1180,5716:497,-167,-79,0,0,0.0751128 -1181,5716:496,-166,-79,0,0,0.0751059 -1182,5716:495,-165,-79,0,0,0.0751059 -1183,5716:394,-164,-79,0,0,0.0751059 -1184,5716:393,-163,-79,0,0,0.0751128 -1185,5716:392,-162,-79,0,0,0.0751128 -1186,5716:391,-161,-79,0,0,0.07512 -1187,5716:390,-160,-79,0,0,0.0751344 -1188,5715:499,-159,-79,0,0,0.0751416 -1189,5715:498,-158,-79,0,0,0.0751558 -1190,5715:497,-157,-79,0,0,0.0751486 -1191,5715:496,-156,-79,0,0,0.0751558 -1192,5715:495,-155,-79,0,0,0.075163 -1193,5715:394,-154,-79,0,0,0.0751486 -1194,5715:393,-153,-79,0,0,0.075163 -1195,5715:392,-152,-79,0,0,0.0751558 -1196,5715:391,-151,-79,0,0,0.0751416 -1197,5715:390,-150,-79,0,0,0.0751416 -1198,5714:499,-149,-79,0,0,0.0751344 -1199,5714:498,-148,-79,0,0,0.0751344 -1200,5714:497,-147,-79,0,0,0.0751272 -1201,5714:496,-146,-79,0,0,0.07512 -1202,5714:495,-145,-79,0,0,0.07512 -1203,5714:394,-144,-79,0,0,0.0751128 -1204,5714:393,-143,-79,0,0,0.07512 -1205,5714:392,-142,-79,0,0,0.0751128 -1206,5714:391,-141,-79,0,0,0.0751128 -1207,5714:390,-140,-79,0,0,0.07512 -1208,5713:499,-139,-79,0,0,0.07512 -1209,5713:498,-138,-79,0,0,0.0751272 -1210,5713:497,-137,-79,0,0,0.07527 -1211,5713:496,-136,-79,0,0,0.0758155 -1212,5713:495,-135,-79,0,0,0.0776421 -1213,5713:394,-134,-79,0,0,0.0779001 -1214,5711:390,-110,-79,0,0,0.0832649 -1215,5710:499,-109,-79,0,0,0.0880188 -1216,5710:496,-106,-79,0,0,0.0759162 -1217,5710:495,-105,-79,0,0,0.0753775 -1218,5710:394,-104,-79,0,0,0.0768514 -1219,5710:393,-103,-79,0,0,0.0810109 -1220,5706:391,-61,-79,0,0,0.0753489 -1221,5706:390,-60,-79,0,0,0.075163 -1222,5705:499,-59,-79,0,0,0.0750201 -1223,5705:498,-58,-79,0,0,0.074949 -1224,5705:497,-57,-79,0,0,0.0749346 -1225,5705:496,-56,-79,0,0,0.0749275 -1226,5705:495,-55,-79,0,0,0.0749346 -1227,5705:394,-54,-79,0,0,0.0749346 -1228,5705:393,-53,-79,0,0,0.0749418 -1229,5705:392,-52,-79,0,0,0.0749562 -1230,5705:391,-51,-79,0,0,0.0749631 -1231,5705:390,-50,-79,0,0,0.0749631 -1232,5704:499,-49,-79,0,0,0.0749631 -1233,5704:498,-48,-79,0,0,0.074949 -1234,5704:497,-47,-79,0,0,0.0749703 -1235,5704:496,-46,-79,0,0,0.0749988 -1236,5704:495,-45,-79,0,0,0.0750273 -1237,5704:394,-44,-79,0,0,0.0750201 -1238,5704:393,-43,-79,0,0,0.0750201 -1239,5704:392,-42,-79,0,0,0.0750131 -1240,5704:391,-41,-79,0,0,0.0750201 -1241,5704:390,-40,-79,0,0,0.0750345 -1242,5703:499,-39,-79,0,0,0.0750345 -1243,5703:498,-38,-79,0,0,0.0750345 -1244,5703:497,-37,-79,0,0,0.0750345 -1245,5703:496,-36,-79,0,0,0.0750345 -1246,5703:495,-35,-79,0,0,0.0750416 -1247,5703:394,-34,-79,0,0,0.0750345 -1248,5703:393,-33,-79,0,0,0.0750345 -1249,5703:392,-32,-79,0,0,0.0750416 -1250,5703:391,-31,-79,0,0,0.0750488 -1251,5703:390,-30,-79,0,0,0.0750488 -1252,5702:499,-29,-79,0,0,0.0750488 -1253,5702:498,-28,-79,0,0,0.0750345 -1254,5702:497,-27,-79,0,0,0.0750201 -1255,5702:496,-26,-79,0,0,0.0761183 -1256,5702:495,-25,-79,0,0,0.0756715 -1257,5702:394,-24,-79,0,0,0.0789397 -1258,3716:496,166,-79,0,0,0.0752487 -1259,3716:497,167,-79,0,0,0.075063 -1260,3716:498,168,-79,0,0,0.0749846 -1261,3716:499,169,-79,0,0,0.074899 -1262,3717:390,170,-79,0,0,0.074892 -1263,3717:391,171,-79,0,0,0.0748777 -1264,3717:392,172,-79,0,0,0.0807894 -1265,3717:393,173,-79,0,0,0.0878209 -1266,3717:394,174,-79,0,0,0.087558 -1267,3717:495,175,-79,0,0,0.0873776 -1268,3717:496,176,-79,0,0,0.0863183 -1269,3717:497,177,-79,0,0,0.0752844 -1270,3717:498,178,-79,0,0,0.0748849 -1271,3717:499,179,-79,0,0,0.074949 -1272,3718:390,180,-79,0,0,0.0749916 -1273,5718:380,-180,-78,0,0,0.0749916 -1274,5717:489,-179,-78,0,0,0.0750201 -1275,5717:488,-178,-78,0,0,0.0750201 -1276,5717:487,-177,-78,0,0,0.0750416 -1277,5717:486,-176,-78,0,0,0.0750488 -1278,5717:485,-175,-78,0,0,0.0750558 -1279,5717:384,-174,-78,0,0,0.0750702 -1280,5717:383,-173,-78,0,0,0.0750773 -1281,5717:382,-172,-78,0,0,0.0750843 -1282,5717:381,-171,-78,0,0,0.0750843 -1283,5717:380,-170,-78,0,0,0.0750915 -1284,5716:489,-169,-78,0,0,0.0750987 -1285,5716:488,-168,-78,0,0,0.0751059 -1286,5716:487,-167,-78,0,0,0.0751128 -1287,5716:486,-166,-78,0,0,0.0751059 -1288,5716:485,-165,-78,0,0,0.0751059 -1289,5716:384,-164,-78,0,0,0.0751059 -1290,5716:383,-163,-78,0,0,0.0751128 -1291,5716:382,-162,-78,0,0,0.0751128 -1292,5716:381,-161,-78,0,0,0.07512 -1293,5716:380,-160,-78,0,0,0.0751344 -1294,5715:489,-159,-78,0,0,0.0751416 -1295,5715:488,-158,-78,0,0,0.0751558 -1296,5715:487,-157,-78,0,0,0.0751486 -1297,5715:486,-156,-78,0,0,0.0751558 -1298,5715:485,-155,-78,0,0,0.075163 -1299,5715:384,-154,-78,0,0,0.0751486 -1300,5715:383,-153,-78,0,0,0.075163 -1301,5715:382,-152,-78,0,0,0.0751558 -1302,5715:381,-151,-78,0,0,0.0751416 -1303,5715:380,-150,-78,0,0,0.0751416 -1304,5714:489,-149,-78,0,0,0.0751344 -1305,5714:488,-148,-78,0,0,0.0751344 -1306,5714:487,-147,-78,0,0,0.0751272 -1307,5714:486,-146,-78,0,0,0.07512 -1308,5714:485,-145,-78,0,0,0.07512 -1309,5714:384,-144,-78,0,0,0.0751128 -1310,5714:383,-143,-78,0,0,0.07512 -1311,5714:382,-142,-78,0,0,0.0751128 -1312,5714:381,-141,-78,0,0,0.0751128 -1313,5714:380,-140,-78,0,0,0.07512 -1314,5713:489,-139,-78,0,0,0.07512 -1315,5713:488,-138,-78,0,0,0.0751272 -1316,5713:487,-137,-78,0,0,0.07527 -1317,5713:486,-136,-78,0,0,0.0758155 -1318,5713:485,-135,-78,0,0,0.0776421 -1319,5713:384,-134,-78,0,0,0.0779001 -1320,5711:380,-110,-78,0,0,0.0832649 -1321,5710:489,-109,-78,0,0,0.0880188 -1322,5710:486,-106,-78,0,0,0.0759162 -1323,5710:485,-105,-78,0,0,0.0753775 -1324,5710:384,-104,-78,0,0,0.0768514 -1325,5710:383,-103,-78,0,0,0.0810109 -1326,5706:381,-61,-78,0,0,0.0753489 -1327,5706:380,-60,-78,0,0,0.075163 -1328,5705:489,-59,-78,0,0,0.0750201 -1329,5705:488,-58,-78,0,0,0.074949 -1330,5705:487,-57,-78,0,0,0.0749346 -1331,5705:486,-56,-78,0,0,0.0749275 -1332,5705:485,-55,-78,0,0,0.0749346 -1333,5705:384,-54,-78,0,0,0.0749346 -1334,5705:383,-53,-78,0,0,0.0749418 -1335,5705:382,-52,-78,0,0,0.0749562 -1336,5705:381,-51,-78,0,0,0.0749631 -1337,5705:380,-50,-78,0,0,0.0749631 -1338,5704:489,-49,-78,0,0,0.0749631 -1339,5704:488,-48,-78,0,0,0.074949 -1340,5704:487,-47,-78,0,0,0.0749703 -1341,5704:486,-46,-78,0,0,0.0749988 -1342,5704:485,-45,-78,0,0,0.0750273 -1343,5704:384,-44,-78,0,0,0.0750201 -1344,5704:383,-43,-78,0,0,0.0750201 -1345,5704:382,-42,-78,0,0,0.0750131 -1346,5704:381,-41,-78,0,0,0.0750201 -1347,5704:380,-40,-78,0,0,0.0750345 -1348,5703:489,-39,-78,0,0,0.0750345 -1349,5703:488,-38,-78,0,0,0.0750345 -1350,5703:487,-37,-78,0,0,0.0750345 -1351,5703:486,-36,-78,0,0,0.0750345 -1352,5703:485,-35,-78,0,0,0.0750416 -1353,5703:384,-34,-78,0,0,0.0750345 -1354,5703:383,-33,-78,0,0,0.0750345 -1355,5703:382,-32,-78,0,0,0.0750416 -1356,5703:381,-31,-78,0,0,0.0750488 -1357,5703:380,-30,-78,0,0,0.0750488 -1358,5702:489,-29,-78,0,0,0.0750488 -1359,5702:488,-28,-78,0,0,0.0750345 -1360,5702:487,-27,-78,0,0,0.0750201 -1361,5702:486,-26,-78,0,0,0.0761183 -1362,5702:485,-25,-78,0,0,0.0756715 -1363,5702:384,-24,-78,0,0,0.0789397 -1364,3716:486,166,-78,0,0,0.0752487 -1365,3716:487,167,-78,0,0,0.075063 -1366,3716:488,168,-78,0,0,0.0749846 -1367,3716:489,169,-78,0,0,0.074899 -1368,3717:380,170,-78,0,0,0.074892 -1369,3717:381,171,-78,0,0,0.0748777 -1370,3717:382,172,-78,0,0,0.0807894 -1371,3717:383,173,-78,0,0,0.0878209 -1372,3717:384,174,-78,0,0,0.087558 -1373,3717:485,175,-78,0,0,0.0873776 -1374,3717:486,176,-78,0,0,0.0863183 -1375,3717:487,177,-78,0,0,0.0752844 -1376,3717:488,178,-78,0,0,0.0748849 -1377,3717:489,179,-78,0,0,0.074949 -1378,3718:380,180,-78,0,0,0.0749916 -1379,5718:370,-180,-77,0,0,0.0749916 -1380,5717:479,-179,-77,0,0,0.0750201 -1381,5717:478,-178,-77,0,0,0.0750201 -1382,5717:477,-177,-77,0,0,0.0750416 -1383,5717:476,-176,-77,0,0,0.0750488 -1384,5717:475,-175,-77,0,0,0.0750558 -1385,5717:374,-174,-77,0,0,0.0750702 -1386,5717:373,-173,-77,0,0,0.0750773 -1387,5717:372,-172,-77,0,0,0.0750843 -1388,5717:371,-171,-77,0,0,0.0750843 -1389,5717:370,-170,-77,0,0,0.0750915 -1390,5716:479,-169,-77,0,0,0.0750987 -1391,5716:478,-168,-77,0,0,0.0751059 -1392,5716:477,-167,-77,0,0,0.0751128 -1393,5716:476,-166,-77,0,0,0.0751059 -1394,5716:475,-165,-77,0,0,0.0751059 -1395,5716:374,-164,-77,0,0,0.0751059 -1396,5716:373,-163,-77,0,0,0.0751128 -1397,5716:372,-162,-77,0,0,0.0751128 -1398,5716:371,-161,-77,0,0,0.07512 -1399,5716:370,-160,-77,0,0,0.0751344 -1400,5715:479,-159,-77,0,0,0.0751416 -1401,5715:478,-158,-77,0,0,0.0751558 -1402,5715:477,-157,-77,0,0,0.0751486 -1403,5715:476,-156,-77,0,0,0.0751558 -1404,5715:475,-155,-77,0,0,0.075163 -1405,5715:374,-154,-77,0,0,0.0751486 -1406,5715:373,-153,-77,0,0,0.075163 -1407,5715:372,-152,-77,0,0,0.0751558 -1408,5715:371,-151,-77,0,0,0.0751416 -1409,5715:370,-150,-77,0,0,0.0751416 -1410,5714:479,-149,-77,0,0,0.0751344 -1411,5714:478,-148,-77,0,0,0.0751344 -1412,5714:477,-147,-77,0,0,0.0751272 -1413,5714:476,-146,-77,0,0,0.07512 -1414,5714:475,-145,-77,0,0,0.07512 -1415,5714:374,-144,-77,0,0,0.0751128 -1416,5714:373,-143,-77,0,0,0.07512 -1417,5714:372,-142,-77,0,0,0.0751128 -1418,5714:371,-141,-77,0,0,0.0751128 -1419,5714:370,-140,-77,0,0,0.07512 -1420,5713:479,-139,-77,0,0,0.07512 -1421,5713:478,-138,-77,0,0,0.0751272 -1422,5713:477,-137,-77,0,0,0.07527 -1423,5713:476,-136,-77,0,0,0.0758155 -1424,5713:475,-135,-77,0,0,0.0776421 -1425,5713:374,-134,-77,0,0,0.0779001 -1426,5711:370,-110,-77,0,0,0.0832649 -1427,5710:479,-109,-77,0,0,0.0880188 -1428,5710:476,-106,-77,0,0,0.0759162 -1429,5710:475,-105,-77,0,0,0.0753775 -1430,5710:374,-104,-77,0,0,0.0768514 -1431,5710:373,-103,-77,0,0,0.0810109 -1432,5706:371,-61,-77,0,0,0.0753489 -1433,5706:370,-60,-77,0,0,0.075163 -1434,5705:479,-59,-77,0,0,0.0750201 -1435,5705:478,-58,-77,0,0,0.074949 -1436,5705:477,-57,-77,0,0,0.0749346 -1437,5705:476,-56,-77,0,0,0.0749275 -1438,5705:475,-55,-77,0,0,0.0749346 -1439,5705:374,-54,-77,0,0,0.0749346 -1440,5705:373,-53,-77,0,0,0.0749418 -1441,5705:372,-52,-77,0,0,0.0749562 -1442,5705:371,-51,-77,0,0,0.0749631 -1443,5705:370,-50,-77,0,0,0.0749631 -1444,5704:479,-49,-77,0,0,0.0749631 -1445,5704:478,-48,-77,0,0,0.074949 -1446,5704:477,-47,-77,0,0,0.0749703 -1447,5704:476,-46,-77,0,0,0.0749988 -1448,5704:475,-45,-77,0,0,0.0750273 -1449,5704:374,-44,-77,0,0,0.0750201 -1450,5704:373,-43,-77,0,0,0.0750201 -1451,5704:372,-42,-77,0,0,0.0750131 -1452,5704:371,-41,-77,0,0,0.0750201 -1453,5704:370,-40,-77,0,0,0.0750345 -1454,5703:479,-39,-77,0,0,0.0750345 -1455,5703:478,-38,-77,0,0,0.0750345 -1456,5703:477,-37,-77,0,0,0.0750345 -1457,5703:476,-36,-77,0,0,0.0750345 -1458,5703:475,-35,-77,0,0,0.0750416 -1459,5703:374,-34,-77,0,0,0.0750345 -1460,5703:373,-33,-77,0,0,0.0750345 -1461,5703:372,-32,-77,0,0,0.0750416 -1462,5703:371,-31,-77,0,0,0.0750488 -1463,5703:370,-30,-77,0,0,0.0750488 -1464,5702:479,-29,-77,0,0,0.0750488 -1465,5702:478,-28,-77,0,0,0.0750345 -1466,5702:477,-27,-77,0,0,0.0750201 -1467,5702:476,-26,-77,0,0,0.0761183 -1468,5702:475,-25,-77,0,0,0.0756715 -1469,5702:374,-24,-77,0,0,0.0789397 -1470,3716:476,166,-77,0,0,0.0752487 -1471,3716:477,167,-77,0,0,0.075063 -1472,3716:478,168,-77,0,0,0.0749846 -1473,3716:479,169,-77,0,0,0.074899 -1474,3717:370,170,-77,0,0,0.074892 -1475,3717:371,171,-77,0,0,0.0748777 -1476,3717:372,172,-77,0,0,0.0807894 -1477,3717:373,173,-77,0,0,0.0878209 -1478,3717:374,174,-77,0,0,0.087558 -1479,3717:475,175,-77,0,0,0.0873776 -1480,3717:476,176,-77,0,0,0.0863183 -1481,3717:477,177,-77,0,0,0.0752844 -1482,3717:478,178,-77,0,0,0.0748849 -1483,3717:479,179,-77,0,0,0.074949 -1484,3718:370,180,-77,0,0,0.0749916 -1485,5718:360,-180,-76,0,0,0.0749775 -1486,5717:469,-179,-76,0,0,0.075006 -1487,5717:468,-178,-76,0,0,0.0750345 -1488,5717:467,-177,-76,0,0,0.0750345 -1489,5717:466,-176,-76,0,0,0.0750416 -1490,5717:465,-175,-76,0,0,0.0750488 -1491,5717:364,-174,-76,0,0,0.075063 -1492,5717:363,-173,-76,0,0,0.0750702 -1493,5717:362,-172,-76,0,0,0.0750702 -1494,5717:361,-171,-76,0,0,0.0750702 -1495,5717:360,-170,-76,0,0,0.0750702 -1496,5716:469,-169,-76,0,0,0.0750702 -1497,5716:468,-168,-76,0,0,0.0750702 -1498,5716:467,-167,-76,0,0,0.0750702 -1499,5716:466,-166,-76,0,0,0.0750773 -1500,5716:465,-165,-76,0,0,0.0750843 -1501,5716:364,-164,-76,0,0,0.0750915 -1502,5716:363,-163,-76,0,0,0.0750915 -1503,5716:362,-162,-76,0,0,0.0750987 -1504,5716:361,-161,-76,0,0,0.0751059 -1505,5716:360,-160,-76,0,0,0.0751128 -1506,5715:469,-159,-76,0,0,0.0751128 -1507,5715:468,-158,-76,0,0,0.0751059 -1508,5715:467,-157,-76,0,0,0.0751128 -1509,5715:466,-156,-76,0,0,0.0751272 -1510,5715:465,-155,-76,0,0,0.0751272 -1511,5715:364,-154,-76,0,0,0.0751416 -1512,5715:363,-153,-76,0,0,0.0751558 -1513,5715:362,-152,-76,0,0,0.075163 -1514,5715:361,-151,-76,0,0,0.075163 -1515,5715:360,-150,-76,0,0,0.0751558 -1516,5714:469,-149,-76,0,0,0.0751558 -1517,5714:468,-148,-76,0,0,0.075163 -1518,5714:467,-147,-76,0,0,0.0751701 -1519,5714:466,-146,-76,0,0,0.0751701 -1520,5714:465,-145,-76,0,0,0.0751558 -1521,5714:364,-144,-76,0,0,0.0751486 -1522,5714:363,-143,-76,0,0,0.0751558 -1523,5714:362,-142,-76,0,0,0.0751558 -1524,5714:361,-141,-76,0,0,0.0751416 -1525,5714:360,-140,-76,0,0,0.0751344 -1526,5713:469,-139,-76,0,0,0.07512 -1527,5713:468,-138,-76,0,0,0.0751059 -1528,5713:467,-137,-76,0,0,0.0750987 -1529,5713:466,-136,-76,0,0,0.0750915 -1530,5713:465,-135,-76,0,0,0.0750702 -1531,5713:364,-134,-76,0,0,0.0750416 -1532,5713:363,-133,-76,0,0,0.0750488 -1533,5713:362,-132,-76,0,0,0.0752844 -1534,5713:361,-131,-76,0,0,0.0790444 -1535,5713:360,-130,-76,0,0,0.0808658 -1536,5712:469,-129,-76,0,0,0.0833984 -1537,5712:468,-128,-76,0,0,0.0821503 -1538,5711:467,-117,-76,0,0,0.0752631 -1539,5711:465,-115,-76,0,0,0.0772606 -1540,5711:363,-113,-76,0,0,0.0838865 -1541,5711:362,-112,-76,0,0,0.0835949 -1542,5711:361,-111,-76,0,0,0.0856883 -1543,5711:360,-110,-76,0,0,0.0858897 -1544,5710:467,-107,-76,0,0,0.075729 -1545,5710:466,-106,-76,0,0,0.0752916 -1546,5710:465,-105,-76,0,0,0.0752844 -1547,5710:364,-104,-76,0,0,0.0764803 -1548,5710:363,-103,-76,0,0,0.0809726 -1549,5710:362,-102,-76,0,0,0.0821503 -1550,5706:361,-61,-76,0,0,0.0754061 -1551,5706:360,-60,-76,0,0,0.0752487 -1552,5705:469,-59,-76,0,0,0.0750488 -1553,5705:468,-58,-76,0,0,0.0749775 -1554,5705:467,-57,-76,0,0,0.0749418 -1555,5705:466,-56,-76,0,0,0.0749346 -1556,5705:465,-55,-76,0,0,0.0749346 -1557,5705:364,-54,-76,0,0,0.0749418 -1558,5705:363,-53,-76,0,0,0.0749562 -1559,5705:362,-52,-76,0,0,0.0749703 -1560,5705:361,-51,-76,0,0,0.0749775 -1561,5705:360,-50,-76,0,0,0.0749846 -1562,5704:469,-49,-76,0,0,0.0749846 -1563,5704:468,-48,-76,0,0,0.0749846 -1564,5704:467,-47,-76,0,0,0.0749775 -1565,5704:466,-46,-76,0,0,0.0749916 -1566,5704:465,-45,-76,0,0,0.0750131 -1567,5704:364,-44,-76,0,0,0.0750345 -1568,5704:363,-43,-76,0,0,0.0750345 -1569,5704:362,-42,-76,0,0,0.0750416 -1570,5704:361,-41,-76,0,0,0.0750416 -1571,5704:360,-40,-76,0,0,0.0750488 -1572,5703:469,-39,-76,0,0,0.0750488 -1573,5703:468,-38,-76,0,0,0.0750488 -1574,5703:467,-37,-76,0,0,0.0750488 -1575,5703:466,-36,-76,0,0,0.0750488 -1576,5703:465,-35,-76,0,0,0.0750488 -1577,5703:364,-34,-76,0,0,0.0750558 -1578,5703:363,-33,-76,0,0,0.0750558 -1579,5703:362,-32,-76,0,0,0.0750558 -1580,5703:361,-31,-76,0,0,0.0750488 -1581,5703:360,-30,-76,0,0,0.0750488 -1582,5702:469,-29,-76,0,0,0.0750488 -1583,5702:468,-28,-76,0,0,0.0750416 -1584,5702:467,-27,-76,0,0,0.0750345 -1585,5702:466,-26,-76,0,0,0.0750345 -1586,5702:465,-25,-76,0,0,0.0754348 -1587,5702:364,-24,-76,0,0,0.0767785 -1588,5702:363,-23,-76,0,0,0.0782775 -1589,5702:362,-22,-76,0,0,0.0828814 -1590,5702:361,-21,-76,0,0,0.0866349 -1591,3716:467,167,-76,0,0,0.0752273 -1592,3716:468,168,-76,0,0,0.0750416 -1593,3716:469,169,-76,0,0,0.0749916 -1594,3717:360,170,-76,0,0,0.0749988 -1595,3717:361,171,-76,0,0,0.074892 -1596,3717:362,172,-76,0,0,0.0763427 -1597,3717:363,173,-76,0,0,0.0795393 -1598,3717:364,174,-76,0,0,0.0850706 -1599,3717:465,175,-76,0,0,0.086651 -1600,3717:466,176,-76,0,0,0.0858252 -1601,3717:467,177,-76,0,0,0.0754133 -1602,3717:468,178,-76,0,0,0.0748777 -1603,3717:469,179,-76,0,0,0.0749346 -1604,3718:360,180,-76,0,0,0.0749775 -1605,5718:350,-180,-75,0,0,0.0749775 -1606,5717:459,-179,-75,0,0,0.0749988 -1607,5717:458,-178,-75,0,0,0.0750273 -1608,5717:457,-177,-75,0,0,0.0750345 -1609,5717:456,-176,-75,0,0,0.0750488 -1610,5717:455,-175,-75,0,0,0.0750488 -1611,5717:354,-174,-75,0,0,0.075063 -1612,5717:353,-173,-75,0,0,0.075063 -1613,5717:352,-172,-75,0,0,0.0750558 -1614,5717:351,-171,-75,0,0,0.0750558 -1615,5717:350,-170,-75,0,0,0.075063 -1616,5716:459,-169,-75,0,0,0.075063 -1617,5716:458,-168,-75,0,0,0.075063 -1618,5716:457,-167,-75,0,0,0.0750702 -1619,5716:456,-166,-75,0,0,0.0750702 -1620,5716:455,-165,-75,0,0,0.0750773 -1621,5716:354,-164,-75,0,0,0.0750843 -1622,5716:353,-163,-75,0,0,0.0750843 -1623,5716:352,-162,-75,0,0,0.0750843 -1624,5716:351,-161,-75,0,0,0.0750843 -1625,5716:350,-160,-75,0,0,0.0750843 -1626,5715:459,-159,-75,0,0,0.0750843 -1627,5715:458,-158,-75,0,0,0.0750915 -1628,5715:457,-157,-75,0,0,0.0751059 -1629,5715:456,-156,-75,0,0,0.0751128 -1630,5715:455,-155,-75,0,0,0.0751272 -1631,5715:354,-154,-75,0,0,0.0751272 -1632,5715:353,-153,-75,0,0,0.0751272 -1633,5715:352,-152,-75,0,0,0.0751486 -1634,5715:351,-151,-75,0,0,0.0751558 -1635,5715:350,-150,-75,0,0,0.0751486 -1636,5714:459,-149,-75,0,0,0.0751558 -1637,5714:458,-148,-75,0,0,0.075163 -1638,5714:457,-147,-75,0,0,0.0751701 -1639,5714:456,-146,-75,0,0,0.0751843 -1640,5714:455,-145,-75,0,0,0.0751843 -1641,5714:354,-144,-75,0,0,0.0751843 -1642,5714:353,-143,-75,0,0,0.0751843 -1643,5714:352,-142,-75,0,0,0.0751771 -1644,5714:351,-141,-75,0,0,0.0751771 -1645,5714:350,-140,-75,0,0,0.0751771 -1646,5713:459,-139,-75,0,0,0.0751558 -1647,5713:458,-138,-75,0,0,0.0751272 -1648,5713:457,-137,-75,0,0,0.0750987 -1649,5713:456,-136,-75,0,0,0.0750843 -1650,5713:455,-135,-75,0,0,0.0750345 -1651,5713:354,-134,-75,0,0,0.0750416 -1652,5713:353,-133,-75,0,0,0.075063 -1653,5713:352,-132,-75,0,0,0.0750915 -1654,5713:351,-131,-75,0,0,0.075163 -1655,5713:350,-130,-75,0,0,0.0754779 -1656,5712:459,-129,-75,0,0,0.0775539 -1657,5712:458,-128,-75,0,0,0.0755207 -1658,5712:354,-124,-75,0,0,0.0766328 -1659,5712:353,-123,-75,0,0,0.0758515 -1660,5712:352,-122,-75,0,0,0.0753203 -1661,5712:351,-121,-75,0,0,0.0753989 -1662,5712:350,-120,-75,0,0,0.0753203 -1663,5711:459,-119,-75,0,0,0.0753703 -1664,5711:458,-118,-75,0,0,0.0753203 -1665,5711:457,-117,-75,0,0,0.0751987 -1666,5711:456,-116,-75,0,0,0.0752559 -1667,5711:455,-115,-75,0,0,0.0763643 -1668,5711:354,-114,-75,0,0,0.077635 -1669,5711:353,-113,-75,0,0,0.0795545 -1670,5711:352,-112,-75,0,0,0.0751771 -1671,5711:351,-111,-75,0,0,0.0754061 -1672,5710:458,-108,-75,0,0,0.0756787 -1673,5710:457,-107,-75,0,0,0.0753489 -1674,5710:456,-106,-75,0,0,0.0752559 -1675,5710:455,-105,-75,0,0,0.0753703 -1676,5710:354,-104,-75,0,0,0.0787234 -1677,5710:353,-103,-75,0,0,0.0813097 -1678,5708:353,-83,-75,0,0,0.0902963 -1679,5708:352,-82,-75,0,0,0.0903556 -1680,5706:350,-60,-75,0,0,0.0752844 -1681,5705:459,-59,-75,0,0,0.0750131 -1682,5705:458,-58,-75,0,0,0.0749703 -1683,5705:457,-57,-75,0,0,0.074949 -1684,5705:456,-56,-75,0,0,0.074949 -1685,5705:455,-55,-75,0,0,0.0749346 -1686,5705:354,-54,-75,0,0,0.0749418 -1687,5705:353,-53,-75,0,0,0.0749631 -1688,5705:352,-52,-75,0,0,0.0749703 -1689,5705:351,-51,-75,0,0,0.0749916 -1690,5705:350,-50,-75,0,0,0.0749988 -1691,5704:459,-49,-75,0,0,0.0749988 -1692,5704:458,-48,-75,0,0,0.0749988 -1693,5704:457,-47,-75,0,0,0.075006 -1694,5704:456,-46,-75,0,0,0.0750131 -1695,5704:455,-45,-75,0,0,0.0750273 -1696,5704:354,-44,-75,0,0,0.0750416 -1697,5704:353,-43,-75,0,0,0.0750488 -1698,5704:352,-42,-75,0,0,0.0750558 -1699,5704:351,-41,-75,0,0,0.0750558 -1700,5704:350,-40,-75,0,0,0.0750558 -1701,5703:459,-39,-75,0,0,0.0750558 -1702,5703:458,-38,-75,0,0,0.0750488 -1703,5703:457,-37,-75,0,0,0.0750416 -1704,5703:456,-36,-75,0,0,0.0750416 -1705,5703:455,-35,-75,0,0,0.0750416 -1706,5703:354,-34,-75,0,0,0.0750416 -1707,5703:353,-33,-75,0,0,0.0750416 -1708,5703:352,-32,-75,0,0,0.0750416 -1709,5703:351,-31,-75,0,0,0.0750416 -1710,5703:350,-30,-75,0,0,0.0750345 -1711,5702:459,-29,-75,0,0,0.0750273 -1712,5702:458,-28,-75,0,0,0.0750273 -1713,5702:457,-27,-75,0,0,0.0750201 -1714,5702:456,-26,-75,0,0,0.0750131 -1715,5702:455,-25,-75,0,0,0.0749988 -1716,5702:354,-24,-75,0,0,0.0749846 -1717,5702:353,-23,-75,0,0,0.0754706 -1718,5702:352,-22,-75,0,0,0.077937 -1719,5702:351,-21,-75,0,0,0.0846637 -1720,5702:350,-20,-75,0,0,0.0867568 -1721,3716:458,168,-75,0,0,0.0754779 -1722,3716:459,169,-75,0,0,0.0753775 -1723,3717:350,170,-75,0,0,0.0751128 -1724,3717:351,171,-75,0,0,0.074949 -1725,3717:352,172,-75,0,0,0.0749133 -1726,3717:353,173,-75,0,0,0.0766839 -1727,3717:354,174,-75,0,0,0.0805836 -1728,3717:455,175,-75,0,0,0.0810721 -1729,3717:456,176,-75,0,0,0.0829675 -1730,3717:457,177,-75,0,0,0.0764223 -1731,3717:458,178,-75,0,0,0.074892 -1732,3717:459,179,-75,0,0,0.0749346 -1733,3718:350,180,-75,0,0,0.0749775 -1734,5718:140,-180,-74,0,0,0.0749703 -1735,5717:249,-179,-74,0,0,0.075006 -1736,5717:248,-178,-74,0,0,0.0750201 -1737,5717:247,-177,-74,0,0,0.0750416 -1738,5717:246,-176,-74,0,0,0.0750416 -1739,5717:245,-175,-74,0,0,0.0750416 -1740,5717:144,-174,-74,0,0,0.0750558 -1741,5717:143,-173,-74,0,0,0.0750558 -1742,5717:142,-172,-74,0,0,0.0750488 -1743,5717:141,-171,-74,0,0,0.0750488 -1744,5717:140,-170,-74,0,0,0.0750416 -1745,5716:249,-169,-74,0,0,0.0750488 -1746,5716:248,-168,-74,0,0,0.0750558 -1747,5716:247,-167,-74,0,0,0.0750558 -1748,5716:246,-166,-74,0,0,0.075063 -1749,5716:245,-165,-74,0,0,0.0750702 -1750,5716:144,-164,-74,0,0,0.0750843 -1751,5716:143,-163,-74,0,0,0.0750843 -1752,5716:142,-162,-74,0,0,0.0750987 -1753,5716:141,-161,-74,0,0,0.0750987 -1754,5716:140,-160,-74,0,0,0.0751128 -1755,5715:249,-159,-74,0,0,0.07512 -1756,5715:248,-158,-74,0,0,0.07512 -1757,5715:247,-157,-74,0,0,0.0751272 -1758,5715:246,-156,-74,0,0,0.0751344 -1759,5715:245,-155,-74,0,0,0.0751272 -1760,5715:144,-154,-74,0,0,0.07512 -1761,5715:143,-153,-74,0,0,0.07512 -1762,5715:142,-152,-74,0,0,0.0751416 -1763,5715:141,-151,-74,0,0,0.0751486 -1764,5715:140,-150,-74,0,0,0.0751558 -1765,5714:249,-149,-74,0,0,0.0751558 -1766,5714:248,-148,-74,0,0,0.075163 -1767,5714:247,-147,-74,0,0,0.075163 -1768,5714:246,-146,-74,0,0,0.0751701 -1769,5714:245,-145,-74,0,0,0.0751701 -1770,5714:144,-144,-74,0,0,0.0751701 -1771,5714:143,-143,-74,0,0,0.0751843 -1772,5714:142,-142,-74,0,0,0.0751843 -1773,5714:141,-141,-74,0,0,0.0751771 -1774,5714:140,-140,-74,0,0,0.0751987 -1775,5713:249,-139,-74,0,0,0.0752057 -1776,5713:248,-138,-74,0,0,0.0751701 -1777,5713:247,-137,-74,0,0,0.0751416 -1778,5713:246,-136,-74,0,0,0.07512 -1779,5713:245,-135,-74,0,0,0.0750987 -1780,5713:144,-134,-74,0,0,0.075063 -1781,5713:143,-133,-74,0,0,0.0750702 -1782,5713:142,-132,-74,0,0,0.0750915 -1783,5713:141,-131,-74,0,0,0.0750915 -1784,5713:140,-130,-74,0,0,0.0751128 -1785,5712:249,-129,-74,0,0,0.0751416 -1786,5712:248,-128,-74,0,0,0.0751701 -1787,5712:247,-127,-74,0,0,0.0752057 -1788,5712:246,-126,-74,0,0,0.0752772 -1789,5712:245,-125,-74,0,0,0.0753631 -1790,5712:144,-124,-74,0,0,0.0753417 -1791,5712:143,-123,-74,0,0,0.0752772 -1792,5712:142,-122,-74,0,0,0.0752559 -1793,5712:141,-121,-74,0,0,0.0751987 -1794,5712:140,-120,-74,0,0,0.075163 -1795,5711:249,-119,-74,0,0,0.0751771 -1796,5711:248,-118,-74,0,0,0.0751701 -1797,5711:247,-117,-74,0,0,0.0751272 -1798,5711:246,-116,-74,0,0,0.0751272 -1799,5711:245,-115,-74,0,0,0.0751272 -1800,5711:144,-114,-74,0,0,0.0750843 -1801,5711:143,-113,-74,0,0,0.0750488 -1802,5711:142,-112,-74,0,0,0.0750201 -1803,5711:141,-111,-74,0,0,0.075063 -1804,5711:140,-110,-74,0,0,0.0751059 -1805,5710:249,-109,-74,0,0,0.0753058 -1806,5710:248,-108,-74,0,0,0.0752273 -1807,5710:247,-107,-74,0,0,0.0752129 -1808,5710:246,-106,-74,0,0,0.0752559 -1809,5710:245,-105,-74,0,0,0.0756932 -1810,5710:144,-104,-74,0,0,0.0807207 -1811,5708:245,-85,-74,0,0,0.0878867 -1812,5708:144,-84,-74,0,0,0.0860028 -1813,5708:143,-83,-74,0,0,0.083524 -1814,5708:142,-82,-74,0,0,0.0852306 -1815,5708:141,-81,-74,0,0,0.0884319 -1816,5705:249,-59,-74,0,0,0.0751843 -1817,5705:248,-58,-74,0,0,0.0749775 -1818,5705:247,-57,-74,0,0,0.0749631 -1819,5705:246,-56,-74,0,0,0.074949 -1820,5705:245,-55,-74,0,0,0.074949 -1821,5705:144,-54,-74,0,0,0.074949 -1822,5705:143,-53,-74,0,0,0.0749631 -1823,5705:142,-52,-74,0,0,0.0749631 -1824,5705:141,-51,-74,0,0,0.0749775 -1825,5705:140,-50,-74,0,0,0.075006 -1826,5704:249,-49,-74,0,0,0.0750201 -1827,5704:248,-48,-74,0,0,0.0750131 -1828,5704:247,-47,-74,0,0,0.075006 -1829,5704:246,-46,-74,0,0,0.0750273 -1830,5704:245,-45,-74,0,0,0.0750416 -1831,5704:144,-44,-74,0,0,0.0750488 -1832,5704:143,-43,-74,0,0,0.0750558 -1833,5704:142,-42,-74,0,0,0.0750558 -1834,5704:141,-41,-74,0,0,0.0750558 -1835,5704:140,-40,-74,0,0,0.0750558 -1836,5703:249,-39,-74,0,0,0.0750488 -1837,5703:248,-38,-74,0,0,0.0750416 -1838,5703:247,-37,-74,0,0,0.0750345 -1839,5703:246,-36,-74,0,0,0.0750273 -1840,5703:245,-35,-74,0,0,0.0750273 -1841,5703:144,-34,-74,0,0,0.0750201 -1842,5703:143,-33,-74,0,0,0.0750201 -1843,5703:142,-32,-74,0,0,0.0750273 -1844,5703:141,-31,-74,0,0,0.0750273 -1845,5703:140,-30,-74,0,0,0.0750201 -1846,5702:249,-29,-74,0,0,0.0750131 -1847,5702:248,-28,-74,0,0,0.0750131 -1848,5702:247,-27,-74,0,0,0.0750131 -1849,5702:246,-26,-74,0,0,0.0750131 -1850,5702:245,-25,-74,0,0,0.0750131 -1851,5702:144,-24,-74,0,0,0.0749988 -1852,5702:143,-23,-74,0,0,0.0749775 -1853,5702:142,-22,-74,0,0,0.0749846 -1854,5702:141,-21,-74,0,0,0.0749775 -1855,5702:140,-20,-74,0,0,0.0758082 -1856,3717:140,170,-74,0,0,0.0749988 -1857,3717:141,171,-74,0,0,0.0749562 -1858,3717:142,172,-74,0,0,0.0749562 -1859,3717:143,173,-74,0,0,0.0763716 -1860,3717:144,174,-74,0,0,0.0784555 -1861,3717:245,175,-74,0,0,0.0797202 -1862,3717:246,176,-74,0,0,0.0760172 -1863,3717:247,177,-74,0,0,0.0748777 -1864,3717:248,178,-74,0,0,0.0748849 -1865,3717:249,179,-74,0,0,0.0749346 -1866,3718:140,180,-74,0,0,0.0749703 -1867,5718:130,-180,-73,0,0,0.0749703 -1868,5717:239,-179,-73,0,0,0.0749988 -1869,5717:238,-178,-73,0,0,0.0750131 -1870,5717:237,-177,-73,0,0,0.0750201 -1871,5717:236,-176,-73,0,0,0.0750345 -1872,5717:235,-175,-73,0,0,0.0750345 -1873,5717:134,-174,-73,0,0,0.0750416 -1874,5717:133,-173,-73,0,0,0.075063 -1875,5717:132,-172,-73,0,0,0.0750558 -1876,5717:131,-171,-73,0,0,0.0750416 -1877,5717:130,-170,-73,0,0,0.0750345 -1878,5716:239,-169,-73,0,0,0.0750416 -1879,5716:238,-168,-73,0,0,0.0750416 -1880,5716:237,-167,-73,0,0,0.0750416 -1881,5716:236,-166,-73,0,0,0.0750488 -1882,5716:235,-165,-73,0,0,0.075063 -1883,5716:134,-164,-73,0,0,0.0750773 -1884,5716:133,-163,-73,0,0,0.0750843 -1885,5716:132,-162,-73,0,0,0.0750915 -1886,5716:131,-161,-73,0,0,0.0750987 -1887,5716:130,-160,-73,0,0,0.0751059 -1888,5715:239,-159,-73,0,0,0.0751128 -1889,5715:238,-158,-73,0,0,0.0751272 -1890,5715:237,-157,-73,0,0,0.0751272 -1891,5715:236,-156,-73,0,0,0.0751272 -1892,5715:235,-155,-73,0,0,0.0751272 -1893,5715:134,-154,-73,0,0,0.07512 -1894,5715:133,-153,-73,0,0,0.07512 -1895,5715:132,-152,-73,0,0,0.0751272 -1896,5715:131,-151,-73,0,0,0.0751416 -1897,5715:130,-150,-73,0,0,0.075163 -1898,5714:239,-149,-73,0,0,0.0751771 -1899,5714:238,-148,-73,0,0,0.0751843 -1900,5714:237,-147,-73,0,0,0.0751915 -1901,5714:236,-146,-73,0,0,0.0752057 -1902,5714:235,-145,-73,0,0,0.0752057 -1903,5714:134,-144,-73,0,0,0.0751987 -1904,5714:133,-143,-73,0,0,0.0751915 -1905,5714:132,-142,-73,0,0,0.0751915 -1906,5714:131,-141,-73,0,0,0.0751701 -1907,5714:130,-140,-73,0,0,0.0751558 -1908,5713:239,-139,-73,0,0,0.0751987 -1909,5713:238,-138,-73,0,0,0.0752844 -1910,5713:237,-137,-73,0,0,0.07527 -1911,5713:236,-136,-73,0,0,0.0752273 -1912,5713:235,-135,-73,0,0,0.0751558 -1913,5713:134,-134,-73,0,0,0.075063 -1914,5713:133,-133,-73,0,0,0.0750416 -1915,5713:132,-132,-73,0,0,0.0750773 -1916,5713:131,-131,-73,0,0,0.07512 -1917,5713:130,-130,-73,0,0,0.0751344 -1918,5712:239,-129,-73,0,0,0.0751416 -1919,5712:238,-128,-73,0,0,0.0751486 -1920,5712:237,-127,-73,0,0,0.0751701 -1921,5712:236,-126,-73,0,0,0.0752273 -1922,5712:235,-125,-73,0,0,0.0752343 -1923,5712:134,-124,-73,0,0,0.0751771 -1924,5712:133,-123,-73,0,0,0.0751701 -1925,5712:132,-122,-73,0,0,0.0751558 -1926,5712:131,-121,-73,0,0,0.0751486 -1927,5712:130,-120,-73,0,0,0.0751416 -1928,5711:239,-119,-73,0,0,0.0751344 -1929,5711:238,-118,-73,0,0,0.0751272 -1930,5711:237,-117,-73,0,0,0.0751128 -1931,5711:236,-116,-73,0,0,0.0750987 -1932,5711:235,-115,-73,0,0,0.0750915 -1933,5711:134,-114,-73,0,0,0.0750773 -1934,5711:133,-113,-73,0,0,0.0750702 -1935,5711:132,-112,-73,0,0,0.0750558 -1936,5711:131,-111,-73,0,0,0.075063 -1937,5711:130,-110,-73,0,0,0.0751059 -1938,5710:239,-109,-73,0,0,0.0751416 -1939,5710:238,-108,-73,0,0,0.0751701 -1940,5710:237,-107,-73,0,0,0.0752201 -1941,5710:236,-106,-73,0,0,0.0755207 -4084,5615:124,-154,-62,0,0,0.07512 -1942,5710:235,-105,-73,0,0,0.0795244 -1943,5710:134,-104,-73,0,0,0.0808353 -1944,5708:238,-88,-73,0,0,0.0757435 -1945,5708:237,-87,-73,0,0,0.0761689 -1946,5708:236,-86,-73,0,0,0.0804088 -1947,5708:235,-85,-73,0,0,0.0771507 -1948,5708:134,-84,-73,0,0,0.0756645 -1949,5708:133,-83,-73,0,0,0.0751344 -1950,5708:132,-82,-73,0,0,0.077224 -1951,5708:131,-81,-73,0,0,0.0777012 -1952,5708:130,-80,-73,0,0,0.0796298 -1953,5707:239,-79,-73,0,0,0.0822742 -1954,5707:235,-75,-73,0,0,0.0795393 -1955,5707:134,-74,-73,0,0,0.0829675 -1956,5707:133,-73,-73,0,0,0.0876811 -1957,5706:130,-60,-73,0,0,0.075313 -1958,5705:239,-59,-73,0,0,0.07512 -1959,5705:238,-58,-73,0,0,0.075006 -1960,5705:237,-57,-73,0,0,0.0749703 -1961,5705:236,-56,-73,0,0,0.0749631 -1962,5705:235,-55,-73,0,0,0.0749562 -1963,5705:134,-54,-73,0,0,0.0749562 -1964,5705:133,-53,-73,0,0,0.0749916 -1965,5705:132,-52,-73,0,0,0.0749988 -1966,5705:131,-51,-73,0,0,0.075006 -1967,5705:130,-50,-73,0,0,0.0750345 -1968,5704:239,-49,-73,0,0,0.0750201 -1969,5704:238,-48,-73,0,0,0.0750131 -1970,5704:237,-47,-73,0,0,0.0750345 -1971,5704:236,-46,-73,0,0,0.0750488 -1972,5704:235,-45,-73,0,0,0.0750488 -1973,5704:134,-44,-73,0,0,0.0750558 -1974,5704:133,-43,-73,0,0,0.0750558 -1975,5704:132,-42,-73,0,0,0.0750558 -1976,5704:131,-41,-73,0,0,0.0750488 -1977,5704:130,-40,-73,0,0,0.0750416 -1978,5703:239,-39,-73,0,0,0.0750345 -1979,5703:238,-38,-73,0,0,0.0750273 -1980,5703:237,-37,-73,0,0,0.0750201 -1981,5703:236,-36,-73,0,0,0.0750131 -1982,5703:235,-35,-73,0,0,0.0750131 -1983,5703:134,-34,-73,0,0,0.0750131 -1984,5703:133,-33,-73,0,0,0.075006 -1985,5703:132,-32,-73,0,0,0.0750131 -1986,5703:131,-31,-73,0,0,0.0750131 -1987,5703:130,-30,-73,0,0,0.075006 -1988,5702:239,-29,-73,0,0,0.075006 -1989,5702:238,-28,-73,0,0,0.0749988 -1990,5702:237,-27,-73,0,0,0.0749916 -1991,5702:236,-26,-73,0,0,0.0749988 -1992,5702:235,-25,-73,0,0,0.075006 -1993,5702:134,-24,-73,0,0,0.075006 -1994,5702:133,-23,-73,0,0,0.0750131 -1995,5702:132,-22,-73,0,0,0.0750131 -1996,5702:131,-21,-73,0,0,0.0750131 -1997,5702:130,-20,-73,0,0,0.0750131 -1998,5701:239,-19,-73,0,0,0.0750843 -1999,5701:238,-18,-73,0,0,0.0751344 -2000,5701:237,-17,-73,0,0,0.0752057 -2001,3717:131,171,-73,0,0,0.0751558 -2002,3717:132,172,-73,0,0,0.0750416 -2003,3717:133,173,-73,0,0,0.0750843 -2004,3717:134,174,-73,0,0,0.0775172 -2005,3717:235,175,-73,0,0,0.0752916 -2006,3717:236,176,-73,0,0,0.0747284 -2007,3717:237,177,-73,0,0,0.0748208 -2008,3717:238,178,-73,0,0,0.0748849 -2009,3717:239,179,-73,0,0,0.0749346 -2010,3718:130,180,-73,0,0,0.0749703 -2011,5718:120,-180,-72,0,0,0.0749631 -2012,5717:229,-179,-72,0,0,0.0749916 -2013,5717:228,-178,-72,0,0,0.075006 -2014,5717:227,-177,-72,0,0,0.0750201 -2015,5717:226,-176,-72,0,0,0.0750345 -2016,5717:225,-175,-72,0,0,0.075063 -2017,5717:124,-174,-72,0,0,0.0750702 -2018,5717:123,-173,-72,0,0,0.0750773 -2019,5717:122,-172,-72,0,0,0.075063 -2020,5717:121,-171,-72,0,0,0.0750416 -2021,5717:120,-170,-72,0,0,0.0750416 -2022,5716:229,-169,-72,0,0,0.0750416 -2023,5716:228,-168,-72,0,0,0.0750345 -2024,5716:227,-167,-72,0,0,0.0750345 -2025,5716:226,-166,-72,0,0,0.0750416 -2026,5716:225,-165,-72,0,0,0.0750488 -2027,5716:124,-164,-72,0,0,0.075063 -2028,5716:123,-163,-72,0,0,0.0750702 -2029,5716:122,-162,-72,0,0,0.0750773 -2030,5716:121,-161,-72,0,0,0.0750773 -2031,5716:120,-160,-72,0,0,0.0750843 -2032,5715:229,-159,-72,0,0,0.0750915 -2033,5715:228,-158,-72,0,0,0.0750987 -2034,5715:227,-157,-72,0,0,0.0751128 -2035,5715:226,-156,-72,0,0,0.0751272 -2036,5715:225,-155,-72,0,0,0.07512 -2037,5715:124,-154,-72,0,0,0.0751272 -2038,5715:123,-153,-72,0,0,0.07512 -2039,5715:122,-152,-72,0,0,0.0751272 -2040,5715:121,-151,-72,0,0,0.0751416 -2041,5715:120,-150,-72,0,0,0.0751558 -2042,5714:229,-149,-72,0,0,0.0751701 -2043,5714:228,-148,-72,0,0,0.0751771 -2044,5714:227,-147,-72,0,0,0.0751843 -2045,5714:226,-146,-72,0,0,0.0751987 -2046,5714:225,-145,-72,0,0,0.0751987 -2047,5714:124,-144,-72,0,0,0.0752129 -2048,5714:123,-143,-72,0,0,0.0752201 -2049,5714:122,-142,-72,0,0,0.0752057 -2050,5714:121,-141,-72,0,0,0.0751771 -2051,5714:120,-140,-72,0,0,0.0751344 -2052,5713:229,-139,-72,0,0,0.07512 -2053,5713:228,-138,-72,0,0,0.0751128 -2054,5713:227,-137,-72,0,0,0.0751344 -2055,5713:226,-136,-72,0,0,0.0752772 -2056,5713:225,-135,-72,0,0,0.0755135 -2057,5713:124,-134,-72,0,0,0.0751558 -2058,5713:123,-133,-72,0,0,0.0750416 -2059,5713:122,-132,-72,0,0,0.0750702 -2060,5713:121,-131,-72,0,0,0.0751059 -2061,5713:120,-130,-72,0,0,0.0751344 -2062,5712:229,-129,-72,0,0,0.0751558 -2063,5712:228,-128,-72,0,0,0.0751558 -2064,5712:227,-127,-72,0,0,0.0751558 -2065,5712:226,-126,-72,0,0,0.0751558 -2066,5712:225,-125,-72,0,0,0.0751558 -2067,5712:124,-124,-72,0,0,0.075163 -2068,5712:123,-123,-72,0,0,0.075163 -2069,5712:122,-122,-72,0,0,0.0751558 -2070,5712:121,-121,-72,0,0,0.0751486 -2071,5712:120,-120,-72,0,0,0.0751344 -2072,5711:229,-119,-72,0,0,0.07512 -2073,5711:228,-118,-72,0,0,0.0751128 -2074,5711:227,-117,-72,0,0,0.0751059 -2075,5711:226,-116,-72,0,0,0.0750987 -2076,5711:225,-115,-72,0,0,0.0750915 -2077,5711:124,-114,-72,0,0,0.0750843 -2078,5711:123,-113,-72,0,0,0.0750773 -2079,5711:122,-112,-72,0,0,0.0750773 -2080,5711:121,-111,-72,0,0,0.0750843 -2081,5711:120,-110,-72,0,0,0.0750987 -2082,5710:229,-109,-72,0,0,0.0751128 -2083,5710:228,-108,-72,0,0,0.0751272 -2084,5710:227,-107,-72,0,0,0.0751344 -2085,5710:226,-106,-72,0,0,0.0752343 -2086,5710:225,-105,-72,0,0,0.0770849 -2087,5710:124,-104,-72,0,0,0.0783218 -2088,5710:123,-103,-72,0,0,0.0787159 -2089,5709:225,-95,-72,0,0,0.0756428 -2090,5709:124,-94,-72,0,0,0.0752487 -2091,5709:123,-93,-72,0,0,0.0752201 -2092,5709:122,-92,-72,0,0,0.0752343 -2093,5709:121,-91,-72,0,0,0.0752631 -2094,5709:120,-90,-72,0,0,0.07527 -2095,5708:229,-89,-72,0,0,0.0752559 -2096,5708:228,-88,-72,0,0,0.0752559 -2097,5708:227,-87,-72,0,0,0.0752631 -2098,5708:226,-86,-72,0,0,0.0751771 -2099,5708:225,-85,-72,0,0,0.0750345 -2100,5708:124,-84,-72,0,0,0.0760822 -2101,5708:123,-83,-72,0,0,0.0769681 -2102,5708:122,-82,-72,0,0,0.0764732 -2103,5708:121,-81,-72,0,0,0.0775613 -2104,5708:120,-80,-72,0,0,0.0770775 -2105,5707:229,-79,-72,0,0,0.0770775 -2106,5707:228,-78,-72,0,0,0.0770117 -2107,5707:227,-77,-72,0,0,0.0805912 -2108,5707:226,-76,-72,0,0,0.0820961 -2109,5707:225,-75,-72,0,0,0.0824297 -2110,5707:124,-74,-72,0,0,0.0878126 -2111,5706:120,-60,-72,0,0,0.0753489 -2112,5705:229,-59,-72,0,0,0.0751059 -2113,5705:228,-58,-72,0,0,0.0749916 -2114,5705:227,-57,-72,0,0,0.0749775 -2115,5705:226,-56,-72,0,0,0.0749703 -2116,5705:225,-55,-72,0,0,0.0749775 -2117,5705:124,-54,-72,0,0,0.075006 -2118,5705:123,-53,-72,0,0,0.0750345 -2119,5705:122,-52,-72,0,0,0.0750345 -2120,5705:121,-51,-72,0,0,0.0750345 -2121,5705:120,-50,-72,0,0,0.0750345 -2122,5704:229,-49,-72,0,0,0.0750416 -2123,5704:228,-48,-72,0,0,0.0750488 -2124,5704:227,-47,-72,0,0,0.0750488 -2125,5704:226,-46,-72,0,0,0.0750488 -2126,5704:225,-45,-72,0,0,0.0750558 -2127,5704:124,-44,-72,0,0,0.0750488 -2128,5704:123,-43,-72,0,0,0.0750488 -2129,5704:122,-42,-72,0,0,0.0750416 -2130,5704:121,-41,-72,0,0,0.0750345 -2131,5704:120,-40,-72,0,0,0.0750201 -2132,5703:229,-39,-72,0,0,0.0750131 -2133,5703:228,-38,-72,0,0,0.0750131 -2134,5703:227,-37,-72,0,0,0.0750131 -2135,5703:226,-36,-72,0,0,0.0750131 -2136,5703:225,-35,-72,0,0,0.0750131 -2137,5703:124,-34,-72,0,0,0.0750131 -2138,5703:123,-33,-72,0,0,0.075006 -2139,5703:122,-32,-72,0,0,0.075006 -2140,5703:121,-31,-72,0,0,0.075006 -2141,5703:120,-30,-72,0,0,0.0750131 -2142,5702:229,-29,-72,0,0,0.0750131 -2143,5702:228,-28,-72,0,0,0.075006 -2144,5702:227,-27,-72,0,0,0.0749988 -2145,5702:226,-26,-72,0,0,0.0749916 -2146,5702:225,-25,-72,0,0,0.0749846 -2147,5702:124,-24,-72,0,0,0.0749846 -2148,5702:123,-23,-72,0,0,0.0749916 -2149,5702:122,-22,-72,0,0,0.0749988 -2150,5702:121,-21,-72,0,0,0.075006 -2151,5702:120,-20,-72,0,0,0.075006 -2152,5701:229,-19,-72,0,0,0.075006 -2153,5701:228,-18,-72,0,0,0.075006 -2154,5701:227,-17,-72,0,0,0.0750131 -2155,5701:226,-16,-72,0,0,0.0750987 -2156,5701:225,-15,-72,0,0,0.0749133 -2157,3717:121,171,-72,0,0,0.075163 -2158,3717:122,172,-72,0,0,0.075006 -2159,3717:123,173,-72,0,0,0.0753344 -2160,3717:124,174,-72,0,0,0.0755567 -2161,3717:225,175,-72,0,0,0.0748636 -2162,3717:226,176,-72,0,0,0.0748705 -2163,3717:227,177,-72,0,0,0.0748849 -2164,3717:228,178,-72,0,0,0.0749062 -2165,3717:229,179,-72,0,0,0.0749275 -2166,3718:120,180,-72,0,0,0.0749631 -2167,5718:110,-180,-71,0,0,0.0749703 -2168,5717:219,-179,-71,0,0,0.0749916 -2169,5717:218,-178,-71,0,0,0.0750131 -2170,5717:217,-177,-71,0,0,0.0750273 -2171,5717:216,-176,-71,0,0,0.0750558 -2172,5717:215,-175,-71,0,0,0.0750843 -2173,5717:114,-174,-71,0,0,0.0750915 -2174,5717:113,-173,-71,0,0,0.0750843 -2175,5717:112,-172,-71,0,0,0.075063 -2176,5717:111,-171,-71,0,0,0.0750558 -2177,5717:110,-170,-71,0,0,0.0750345 -2178,5716:219,-169,-71,0,0,0.0750273 -2179,5716:218,-168,-71,0,0,0.0750201 -2180,5716:217,-167,-71,0,0,0.0750201 -2181,5716:216,-166,-71,0,0,0.0750201 -2182,5716:215,-165,-71,0,0,0.0750273 -2183,5716:114,-164,-71,0,0,0.0750345 -2184,5716:113,-163,-71,0,0,0.0750416 -2185,5716:112,-162,-71,0,0,0.0750488 -2186,5716:111,-161,-71,0,0,0.0750558 -2187,5716:110,-160,-71,0,0,0.075063 -2188,5715:219,-159,-71,0,0,0.075063 -2189,5715:218,-158,-71,0,0,0.075063 -2190,5715:217,-157,-71,0,0,0.0750773 -2191,5715:216,-156,-71,0,0,0.0750915 -2192,5715:215,-155,-71,0,0,0.0751128 -2193,5715:114,-154,-71,0,0,0.0751344 -2194,5715:113,-153,-71,0,0,0.0751344 -2195,5715:112,-152,-71,0,0,0.0751416 -2196,5715:111,-151,-71,0,0,0.0751558 -2197,5715:110,-150,-71,0,0,0.075163 -2198,5714:219,-149,-71,0,0,0.0751701 -2199,5714:218,-148,-71,0,0,0.0751915 -2200,5714:217,-147,-71,0,0,0.0751987 -2201,5714:216,-146,-71,0,0,0.0751843 -2202,5714:215,-145,-71,0,0,0.0751915 -2203,5714:114,-144,-71,0,0,0.0752129 -2204,5714:113,-143,-71,0,0,0.0752129 -2205,5714:112,-142,-71,0,0,0.0752129 -2206,5714:111,-141,-71,0,0,0.0751843 -2207,5714:110,-140,-71,0,0,0.0751344 -2208,5713:219,-139,-71,0,0,0.07512 -2209,5713:218,-138,-71,0,0,0.07512 -2210,5713:217,-137,-71,0,0,0.0753058 -2211,5713:216,-136,-71,0,0,0.0759379 -2212,5713:215,-135,-71,0,0,0.076234 -2213,5713:114,-134,-71,0,0,0.0762848 -2214,5713:113,-133,-71,0,0,0.0759956 -2215,5713:112,-132,-71,0,0,0.075722 -2216,5713:111,-131,-71,0,0,0.0753417 -2217,5713:110,-130,-71,0,0,0.07512 -2218,5712:219,-129,-71,0,0,0.0751486 -2219,5712:218,-128,-71,0,0,0.075163 -2220,5712:217,-127,-71,0,0,0.0751701 -2221,5712:216,-126,-71,0,0,0.0751701 -2222,5712:215,-125,-71,0,0,0.0751771 -2223,5712:114,-124,-71,0,0,0.0751701 -2224,5712:113,-123,-71,0,0,0.0751701 -2225,5712:112,-122,-71,0,0,0.0751701 -2226,5712:111,-121,-71,0,0,0.075163 -2227,5712:110,-120,-71,0,0,0.0751416 -2228,5711:219,-119,-71,0,0,0.0751272 -2229,5711:218,-118,-71,0,0,0.07512 -2230,5711:217,-117,-71,0,0,0.0751059 -2231,5711:216,-116,-71,0,0,0.0750987 -2232,5711:215,-115,-71,0,0,0.0750987 -2233,5711:114,-114,-71,0,0,0.0750987 -2234,5711:113,-113,-71,0,0,0.0750987 -2235,5711:112,-112,-71,0,0,0.0750987 -2236,5711:111,-111,-71,0,0,0.0751059 -2237,5711:110,-110,-71,0,0,0.0751059 -2238,5710:219,-109,-71,0,0,0.0751128 -2239,5710:218,-108,-71,0,0,0.0751059 -2240,5710:217,-107,-71,0,0,0.07512 -2241,5710:216,-106,-71,0,0,0.0751344 -2242,5710:215,-105,-71,0,0,0.0751771 -2243,5710:114,-104,-71,0,0,0.0751987 -2244,5710:113,-103,-71,0,0,0.0752631 -2245,5710:112,-102,-71,0,0,0.0754849 -2246,5710:111,-101,-71,0,0,0.0769462 -2247,5710:110,-100,-71,0,0,0.0763427 -2248,5709:218,-98,-71,0,0,0.0751987 -2249,5709:217,-97,-71,0,0,0.0753058 -2250,5709:216,-96,-71,0,0,0.0754634 -2251,5709:215,-95,-71,0,0,0.0752559 -2252,5709:114,-94,-71,0,0,0.0751486 -2253,5709:113,-93,-71,0,0,0.0751486 -2254,5709:112,-92,-71,0,0,0.0751701 -2255,5709:111,-91,-71,0,0,0.0751558 -2256,5709:110,-90,-71,0,0,0.0750773 -2257,5708:219,-89,-71,0,0,0.0750416 -2258,5708:218,-88,-71,0,0,0.0750345 -2259,5708:217,-87,-71,0,0,0.0749988 -2260,5708:216,-86,-71,0,0,0.074949 -2261,5708:215,-85,-71,0,0,0.0749205 -2262,5708:114,-84,-71,0,0,0.0749275 -2263,5708:113,-83,-71,0,0,0.0754133 -2264,5708:112,-82,-71,0,0,0.0771215 -2265,5708:111,-81,-71,0,0,0.0774952 -2266,5708:110,-80,-71,0,0,0.0775981 -2267,5707:219,-79,-71,0,0,0.0783886 -2268,5707:218,-78,-71,0,0,0.0788351 -2269,5707:217,-77,-71,0,0,0.079532 -2270,5707:216,-76,-71,0,0,0.0831709 -2271,5706:110,-60,-71,0,0,0.0753631 -2272,5705:219,-59,-71,0,0,0.0751059 -2273,5705:218,-58,-71,0,0,0.0750273 -2274,5705:217,-57,-71,0,0,0.0750201 -2275,5705:216,-56,-71,0,0,0.0749916 -2276,5705:215,-55,-71,0,0,0.0750131 -2277,5705:114,-54,-71,0,0,0.0750345 -2278,5705:113,-53,-71,0,0,0.0750345 -2279,5705:112,-52,-71,0,0,0.0750416 -2280,5705:111,-51,-71,0,0,0.0750416 -2281,5705:110,-50,-71,0,0,0.0750488 -2282,5704:219,-49,-71,0,0,0.0750488 -2283,5704:218,-48,-71,0,0,0.0750488 -2284,5704:217,-47,-71,0,0,0.0750558 -2285,5704:216,-46,-71,0,0,0.0750488 -2286,5704:215,-45,-71,0,0,0.0750416 -2287,5704:114,-44,-71,0,0,0.0750345 -2288,5704:113,-43,-71,0,0,0.0750273 -2289,5704:112,-42,-71,0,0,0.0750201 -2290,5704:111,-41,-71,0,0,0.0750131 -2291,5704:110,-40,-71,0,0,0.075006 -2292,5703:219,-39,-71,0,0,0.0749988 -2293,5703:218,-38,-71,0,0,0.0749916 -2294,5703:217,-37,-71,0,0,0.0749916 -2295,5703:216,-36,-71,0,0,0.0749916 -2296,5703:215,-35,-71,0,0,0.0749916 -2297,5703:114,-34,-71,0,0,0.0749916 -2298,5703:113,-33,-71,0,0,0.0749988 -2299,5703:112,-32,-71,0,0,0.0749988 -2300,5703:111,-31,-71,0,0,0.0749988 -2301,5703:110,-30,-71,0,0,0.0749988 -2302,5702:219,-29,-71,0,0,0.0750131 -2303,5702:218,-28,-71,0,0,0.0750201 -2304,5702:217,-27,-71,0,0,0.0750201 -2305,5702:216,-26,-71,0,0,0.075006 -2306,5702:215,-25,-71,0,0,0.0749846 -2307,5702:114,-24,-71,0,0,0.0749775 -2308,5702:113,-23,-71,0,0,0.0749775 -2309,5702:112,-22,-71,0,0,0.0749846 -2310,5702:111,-21,-71,0,0,0.0749916 -2311,5702:110,-20,-71,0,0,0.075006 -2312,5701:219,-19,-71,0,0,0.075006 -2313,5701:218,-18,-71,0,0,0.075006 -2314,5701:217,-17,-71,0,0,0.0750131 -2315,5701:216,-16,-71,0,0,0.0750131 -2316,5701:215,-15,-71,0,0,0.0750131 -2317,5701:114,-14,-71,0,0,0.0750558 -2318,5701:113,-13,-71,0,0,0.0786041 -2319,3717:112,172,-71,0,0,0.0750201 -2320,3717:113,173,-71,0,0,0.0750702 -2321,3717:114,174,-71,0,0,0.0749703 -2322,3717:215,175,-71,0,0,0.0749703 -2323,3717:216,176,-71,0,0,0.0749562 -2324,3717:217,177,-71,0,0,0.074949 -2325,3717:218,178,-71,0,0,0.074949 -2326,3717:219,179,-71,0,0,0.0749631 -2327,3718:110,180,-71,0,0,0.0749703 -2328,5718:100,-180,-70,0,0,0.075006 -2329,5717:209,-179,-70,0,0,0.0750273 -2330,5717:208,-178,-70,0,0,0.0750416 -2331,5717:207,-177,-70,0,0,0.075063 -2332,5717:206,-176,-70,0,0,0.0750987 -2333,5717:205,-175,-70,0,0,0.0751128 -2334,5717:104,-174,-70,0,0,0.0750915 -2335,5717:103,-173,-70,0,0,0.0750773 -2336,5717:102,-172,-70,0,0,0.0750702 -2337,5717:101,-171,-70,0,0,0.0750416 -2338,5717:100,-170,-70,0,0,0.0750273 -2339,5716:209,-169,-70,0,0,0.0750201 -2340,5716:208,-168,-70,0,0,0.0750131 -2341,5716:207,-167,-70,0,0,0.0750131 -2342,5716:206,-166,-70,0,0,0.0749988 -2343,5716:205,-165,-70,0,0,0.075006 -2344,5716:104,-164,-70,0,0,0.0750131 -2345,5716:103,-163,-70,0,0,0.0750131 -2346,5716:102,-162,-70,0,0,0.0750131 -2347,5716:101,-161,-70,0,0,0.0750201 -2348,5716:100,-160,-70,0,0,0.0750345 -2349,5715:209,-159,-70,0,0,0.0750488 -2350,5715:208,-158,-70,0,0,0.0750558 -2351,5715:207,-157,-70,0,0,0.0750702 -2352,5715:206,-156,-70,0,0,0.0750843 -2353,5715:205,-155,-70,0,0,0.0751059 -2354,5715:104,-154,-70,0,0,0.07512 -2355,5715:103,-153,-70,0,0,0.07512 -2356,5715:102,-152,-70,0,0,0.0751416 -2357,5715:101,-151,-70,0,0,0.075163 -2358,5715:100,-150,-70,0,0,0.0751701 -2359,5714:209,-149,-70,0,0,0.0751771 -2360,5714:208,-148,-70,0,0,0.0751843 -2361,5714:207,-147,-70,0,0,0.0751843 -2362,5714:206,-146,-70,0,0,0.0751843 -2363,5714:205,-145,-70,0,0,0.0751843 -2364,5714:104,-144,-70,0,0,0.0751915 -2365,5714:103,-143,-70,0,0,0.0752129 -2366,5714:102,-142,-70,0,0,0.0752057 -2367,5714:101,-141,-70,0,0,0.0751701 -2368,5714:100,-140,-70,0,0,0.0751272 -2369,5713:209,-139,-70,0,0,0.0751128 -2370,5713:208,-138,-70,0,0,0.0751128 -2371,5713:207,-137,-70,0,0,0.075163 -2372,5713:206,-136,-70,0,0,0.0754492 -2373,5713:205,-135,-70,0,0,0.0759234 -2374,5713:104,-134,-70,0,0,0.0755424 -2375,5713:103,-133,-70,0,0,0.0758443 -2376,5713:102,-132,-70,0,0,0.0760749 -2377,5713:101,-131,-70,0,0,0.0757795 -2378,5713:100,-130,-70,0,0,0.0754562 -2379,5712:209,-129,-70,0,0,0.0752916 -2380,5712:208,-128,-70,0,0,0.0751416 -2381,5712:207,-127,-70,0,0,0.0751558 -2382,5712:206,-126,-70,0,0,0.075163 -2383,5712:205,-125,-70,0,0,0.0751701 -2384,5712:104,-124,-70,0,0,0.0751701 -2385,5712:103,-123,-70,0,0,0.0751701 -2386,5712:102,-122,-70,0,0,0.0751701 -2387,5712:101,-121,-70,0,0,0.075163 -2388,5712:100,-120,-70,0,0,0.0751486 -2389,5711:209,-119,-70,0,0,0.0751344 -2390,5711:208,-118,-70,0,0,0.07512 -2391,5711:207,-117,-70,0,0,0.0751128 -2392,5711:206,-116,-70,0,0,0.0751059 -2393,5711:205,-115,-70,0,0,0.0750987 -2394,5711:104,-114,-70,0,0,0.0750987 -2395,5711:103,-113,-70,0,0,0.0750987 -2396,5711:102,-112,-70,0,0,0.0750987 -2397,5711:101,-111,-70,0,0,0.0750987 -2398,5711:100,-110,-70,0,0,0.0750987 -2399,5710:209,-109,-70,0,0,0.0751059 -2400,5710:208,-108,-70,0,0,0.0751128 -2401,5710:207,-107,-70,0,0,0.0751128 -2402,5710:206,-106,-70,0,0,0.0751128 -2403,5710:205,-105,-70,0,0,0.07512 -2404,5710:104,-104,-70,0,0,0.0751486 -2405,5710:103,-103,-70,0,0,0.0751344 -2406,5710:102,-102,-70,0,0,0.0751771 -2407,5710:101,-101,-70,0,0,0.0752415 -2408,5710:100,-100,-70,0,0,0.07527 -2409,5709:209,-99,-70,0,0,0.0752343 -2410,5709:208,-98,-70,0,0,0.0752129 -2411,5709:207,-97,-70,0,0,0.0751843 -2412,5709:206,-96,-70,0,0,0.0751771 -2413,5709:205,-95,-70,0,0,0.0751486 -2414,5709:104,-94,-70,0,0,0.0751344 -2415,5709:103,-93,-70,0,0,0.0751272 -2416,5709:102,-92,-70,0,0,0.0751128 -2417,5709:101,-91,-70,0,0,0.075063 -2418,5709:100,-90,-70,0,0,0.0750273 -2419,5708:209,-89,-70,0,0,0.0749846 -2420,5708:208,-88,-70,0,0,0.0749775 -2421,5708:207,-87,-70,0,0,0.0749703 -2422,5708:206,-86,-70,0,0,0.0749418 -2423,5708:205,-85,-70,0,0,0.0749346 -2424,5708:104,-84,-70,0,0,0.0749346 -2425,5708:103,-83,-70,0,0,0.0749418 -2426,5708:102,-82,-70,0,0,0.0749562 -2427,5708:101,-81,-70,0,0,0.0750131 -2428,5708:100,-80,-70,0,0,0.0750702 -2429,5707:209,-79,-70,0,0,0.0761907 -2430,5707:208,-78,-70,0,0,0.0779075 -2431,5707:207,-77,-70,0,0,0.0796974 -2432,5707:206,-76,-70,0,0,0.0819491 -2433,5707:205,-75,-70,0,0,0.0833749 -2434,5707:104,-74,-70,0,0,0.0866999 -2435,5706:100,-60,-70,0,0,0.0752772 -2436,5705:209,-59,-70,0,0,0.0751272 -2437,5705:208,-58,-70,0,0,0.0750345 -2438,5705:207,-57,-70,0,0,0.0750416 -2439,5705:206,-56,-70,0,0,0.0750273 -2440,5705:205,-55,-70,0,0,0.0750416 -2441,5705:104,-54,-70,0,0,0.0750416 -2442,5705:103,-53,-70,0,0,0.0750488 -2443,5705:102,-52,-70,0,0,0.0750488 -2444,5705:101,-51,-70,0,0,0.0750488 -2445,5705:100,-50,-70,0,0,0.0750416 -2446,5704:209,-49,-70,0,0,0.0750488 -2447,5704:208,-48,-70,0,0,0.0750488 -2448,5704:207,-47,-70,0,0,0.0750416 -2449,5704:206,-46,-70,0,0,0.0750345 -2450,5704:205,-45,-70,0,0,0.0750273 -2451,5704:104,-44,-70,0,0,0.0750131 -2452,5704:103,-43,-70,0,0,0.0750131 -2453,5704:102,-42,-70,0,0,0.0749988 -2454,5704:101,-41,-70,0,0,0.0749846 -2455,5704:100,-40,-70,0,0,0.0749703 -2456,5703:209,-39,-70,0,0,0.0749703 -2457,5703:208,-38,-70,0,0,0.0749703 -2458,5703:207,-37,-70,0,0,0.0749703 -2459,5703:206,-36,-70,0,0,0.0749775 -2460,5703:205,-35,-70,0,0,0.0749775 -2461,5703:104,-34,-70,0,0,0.0749846 -2462,5703:103,-33,-70,0,0,0.0749916 -2463,5703:102,-32,-70,0,0,0.0749916 -2464,5703:101,-31,-70,0,0,0.0749988 -2465,5703:100,-30,-70,0,0,0.0749988 -2466,5702:209,-29,-70,0,0,0.075006 -2467,5702:208,-28,-70,0,0,0.075006 -2468,5702:207,-27,-70,0,0,0.0750131 -2469,5702:206,-26,-70,0,0,0.0750131 -2470,5702:205,-25,-70,0,0,0.0749775 -2471,5702:104,-24,-70,0,0,0.0749775 -2472,5702:103,-23,-70,0,0,0.0749775 -2473,5702:102,-22,-70,0,0,0.0749775 -2474,5702:101,-21,-70,0,0,0.0749775 -2475,5702:100,-20,-70,0,0,0.0749846 -2476,5701:209,-19,-70,0,0,0.0749916 -2477,5701:208,-18,-70,0,0,0.0749988 -2478,5701:207,-17,-70,0,0,0.075006 -2479,5701:206,-16,-70,0,0,0.075006 -2480,5701:205,-15,-70,0,0,0.0750273 -2481,5701:104,-14,-70,0,0,0.0750843 -2482,5701:103,-13,-70,0,0,0.07512 -2483,3717:100,170,-70,0,0,0.0751416 -2484,3717:101,171,-70,0,0,0.0750131 -2485,3717:102,172,-70,0,0,0.075006 -2486,3717:103,173,-70,0,0,0.0750131 -2487,3717:104,174,-70,0,0,0.075006 -2488,3717:205,175,-70,0,0,0.0749988 -2489,3717:206,176,-70,0,0,0.0749916 -2490,3717:207,177,-70,0,0,0.0749916 -2491,3717:208,178,-70,0,0,0.0749846 -2492,3717:209,179,-70,0,0,0.0749916 -2493,3718:100,180,-70,0,0,0.075006 -2494,5618:390,-180,-69,0,0,0.0750416 -2495,5617:499,-179,-69,0,0,0.0750488 -2496,5617:498,-178,-69,0,0,0.0750702 -2497,5617:497,-177,-69,0,0,0.0750987 -2498,5617:496,-176,-69,0,0,0.0751059 -2499,5617:495,-175,-69,0,0,0.0750915 -2500,5617:394,-174,-69,0,0,0.0750843 -2501,5617:393,-173,-69,0,0,0.0750773 -2502,5617:392,-172,-69,0,0,0.0750558 -2503,5617:391,-171,-69,0,0,0.0750416 -2504,5617:390,-170,-69,0,0,0.0750273 -2505,5616:499,-169,-69,0,0,0.0750131 -2506,5616:498,-168,-69,0,0,0.075006 -2507,5616:497,-167,-69,0,0,0.075006 -2508,5616:496,-166,-69,0,0,0.0749916 -2509,5616:495,-165,-69,0,0,0.0749775 -2510,5616:394,-164,-69,0,0,0.0749775 -2511,5616:393,-163,-69,0,0,0.0749775 -2512,5616:392,-162,-69,0,0,0.0749775 -2513,5616:391,-161,-69,0,0,0.0749916 -2514,5616:390,-160,-69,0,0,0.0750131 -2515,5615:499,-159,-69,0,0,0.0750345 -2516,5615:498,-158,-69,0,0,0.0750488 -2517,5615:497,-157,-69,0,0,0.075063 -2518,5615:496,-156,-69,0,0,0.0750843 -2519,5615:495,-155,-69,0,0,0.0750987 -2520,5615:394,-154,-69,0,0,0.0751128 -2521,5615:393,-153,-69,0,0,0.0751128 -2522,5615:392,-152,-69,0,0,0.0751344 -2523,5615:391,-151,-69,0,0,0.0751558 -2524,5615:390,-150,-69,0,0,0.0751701 -2525,5614:499,-149,-69,0,0,0.0751771 -2526,5614:498,-148,-69,0,0,0.0751843 -2527,5614:497,-147,-69,0,0,0.0751771 -2528,5614:496,-146,-69,0,0,0.0751701 -2529,5614:495,-145,-69,0,0,0.0751771 -2530,5614:394,-144,-69,0,0,0.0751843 -2531,5614:393,-143,-69,0,0,0.0751915 -2532,5614:392,-142,-69,0,0,0.0751915 -2533,5614:391,-141,-69,0,0,0.0751843 -2534,5614:390,-140,-69,0,0,0.0751701 -2535,5613:499,-139,-69,0,0,0.0751344 -2536,5613:498,-138,-69,0,0,0.0751344 -2537,5613:497,-137,-69,0,0,0.0751701 -2538,5613:496,-136,-69,0,0,0.0752487 -2539,5613:495,-135,-69,0,0,0.0752916 -2540,5613:394,-134,-69,0,0,0.0753561 -2541,5613:393,-133,-69,0,0,0.0754562 -2542,5613:392,-132,-69,0,0,0.0754634 -2543,5613:391,-131,-69,0,0,0.0759379 -2544,5613:390,-130,-69,0,0,0.075758 -2545,5612:499,-129,-69,0,0,0.0754779 -2546,5612:498,-128,-69,0,0,0.0754348 -2547,5612:497,-127,-69,0,0,0.0754921 -2548,5612:496,-126,-69,0,0,0.0753561 -2549,5612:495,-125,-69,0,0,0.0751486 -2550,5612:394,-124,-69,0,0,0.0751558 -2551,5612:393,-123,-69,0,0,0.0751558 -2552,5612:392,-122,-69,0,0,0.0751558 -2553,5612:391,-121,-69,0,0,0.0751558 -2554,5612:390,-120,-69,0,0,0.0751344 -2555,5611:499,-119,-69,0,0,0.0751272 -2556,5611:498,-118,-69,0,0,0.0751272 -2557,5611:497,-117,-69,0,0,0.0751128 -2558,5611:496,-116,-69,0,0,0.0751059 -2559,5611:495,-115,-69,0,0,0.0751128 -2560,5611:394,-114,-69,0,0,0.0751059 -2561,5611:393,-113,-69,0,0,0.0751059 -2562,5611:392,-112,-69,0,0,0.0751059 -2563,5611:391,-111,-69,0,0,0.0751059 -2564,5611:390,-110,-69,0,0,0.0751059 -2565,5610:499,-109,-69,0,0,0.0751059 -2566,5610:498,-108,-69,0,0,0.0751059 -2567,5610:497,-107,-69,0,0,0.0751128 -2568,5610:496,-106,-69,0,0,0.07512 -2569,5610:495,-105,-69,0,0,0.07512 -2570,5610:394,-104,-69,0,0,0.07512 -2571,5610:393,-103,-69,0,0,0.07512 -2572,5610:392,-102,-69,0,0,0.0751128 -2573,5610:391,-101,-69,0,0,0.07512 -2574,5610:390,-100,-69,0,0,0.0751344 -2575,5609:499,-99,-69,0,0,0.0751701 -2576,5609:498,-98,-69,0,0,0.0751915 -2577,5609:497,-97,-69,0,0,0.0751843 -2578,5609:496,-96,-69,0,0,0.0751701 -2579,5609:495,-95,-69,0,0,0.075163 -2580,5609:394,-94,-69,0,0,0.0751344 -2581,5609:393,-93,-69,0,0,0.0750987 -2582,5609:392,-92,-69,0,0,0.0750558 -2583,5609:391,-91,-69,0,0,0.0750416 -2584,5609:390,-90,-69,0,0,0.0750273 -2585,5608:499,-89,-69,0,0,0.0750201 -2586,5608:498,-88,-69,0,0,0.075006 -2587,5608:497,-87,-69,0,0,0.0749988 -2588,5608:496,-86,-69,0,0,0.0749775 -2589,5608:495,-85,-69,0,0,0.0749631 -2590,5608:394,-84,-69,0,0,0.0749562 -2591,5608:393,-83,-69,0,0,0.0749631 -2592,5608:392,-82,-69,0,0,0.0749846 -2593,5608:391,-81,-69,0,0,0.0750345 -2594,5608:390,-80,-69,0,0,0.0750843 -2595,5607:499,-79,-69,0,0,0.0753203 -2596,5607:498,-78,-69,0,0,0.0772018 -2597,5607:497,-77,-69,0,0,0.0779296 -2598,5607:496,-76,-69,0,0,0.078011 -2599,5606:390,-60,-69,0,0,0.0753344 -2600,5605:499,-59,-69,0,0,0.0750558 -2601,5605:498,-58,-69,0,0,0.0750345 -2602,5605:497,-57,-69,0,0,0.0750488 -2603,5605:496,-56,-69,0,0,0.0750416 -2604,5605:495,-55,-69,0,0,0.0750488 -2605,5605:394,-54,-69,0,0,0.0750488 -2606,5605:393,-53,-69,0,0,0.0750488 -2607,5605:392,-52,-69,0,0,0.0750416 -2608,5605:391,-51,-69,0,0,0.0750416 -2609,5605:390,-50,-69,0,0,0.0750416 -2610,5604:499,-49,-69,0,0,0.0750345 -2611,5604:498,-48,-69,0,0,0.0750345 -2612,5604:497,-47,-69,0,0,0.0750273 -2613,5604:496,-46,-69,0,0,0.0750201 -2614,5604:495,-45,-69,0,0,0.075006 -2615,5604:394,-44,-69,0,0,0.0749916 -2616,5604:393,-43,-69,0,0,0.0749775 -2617,5604:392,-42,-69,0,0,0.0749703 -2618,5604:391,-41,-69,0,0,0.0749703 -2619,5604:390,-40,-69,0,0,0.0749631 -2620,5603:499,-39,-69,0,0,0.0749631 -2621,5603:498,-38,-69,0,0,0.0749631 -2622,5603:497,-37,-69,0,0,0.0749703 -2623,5603:496,-36,-69,0,0,0.0749775 -2624,5603:495,-35,-69,0,0,0.0749775 -2625,5603:394,-34,-69,0,0,0.0749846 -2626,5603:393,-33,-69,0,0,0.0749846 -2627,5603:392,-32,-69,0,0,0.0749988 -2628,5603:391,-31,-69,0,0,0.0749846 -2629,5603:390,-30,-69,0,0,0.0749916 -2630,5602:499,-29,-69,0,0,0.0749846 -2631,5602:498,-28,-69,0,0,0.0749846 -2632,5602:497,-27,-69,0,0,0.0749846 -2633,5602:496,-26,-69,0,0,0.0749846 -2634,5602:495,-25,-69,0,0,0.0749775 -2635,5602:394,-24,-69,0,0,0.0749703 -2636,5602:393,-23,-69,0,0,0.0749703 -2637,5602:392,-22,-69,0,0,0.0749631 -2638,5602:391,-21,-69,0,0,0.0749562 -2639,5602:390,-20,-69,0,0,0.0749703 -2640,5601:499,-19,-69,0,0,0.0749775 -2641,5601:498,-18,-69,0,0,0.0749846 -2642,5601:497,-17,-69,0,0,0.0749916 -2643,5601:496,-16,-69,0,0,0.0749988 -2644,5601:495,-15,-69,0,0,0.075006 -2645,5601:394,-14,-69,0,0,0.0750201 -2646,5601:393,-13,-69,0,0,0.0750345 -2647,5601:392,-12,-69,0,0,0.0751486 -2648,5601:391,-11,-69,0,0,0.075528 -2649,5601:390,-10,-69,0,0,0.0758515 -2650,3616:499,169,-69,0,0,0.0752487 -2651,3617:390,170,-69,0,0,0.075006 -2652,3617:391,171,-69,0,0,0.075006 -2653,3617:392,172,-69,0,0,0.0750131 -2654,3617:393,173,-69,0,0,0.0750131 -2655,3617:394,174,-69,0,0,0.075006 -2656,3617:495,175,-69,0,0,0.0749916 -2657,3617:496,176,-69,0,0,0.0749846 -2658,3617:497,177,-69,0,0,0.0749846 -2659,3617:498,178,-69,0,0,0.0749916 -2660,3617:499,179,-69,0,0,0.0750273 -2661,3618:390,180,-69,0,0,0.0750416 -2662,5618:380,-180,-68,0,0,0.0750915 -2663,5617:489,-179,-68,0,0,0.0751059 -2664,5617:488,-178,-68,0,0,0.0751059 -2665,5617:487,-177,-68,0,0,0.0751059 -2666,5617:486,-176,-68,0,0,0.0751059 -2667,5617:485,-175,-68,0,0,0.0750915 -2668,5617:384,-174,-68,0,0,0.0750773 -2669,5617:383,-173,-68,0,0,0.0750558 -2670,5617:382,-172,-68,0,0,0.0750345 -2671,5617:381,-171,-68,0,0,0.0750273 -2672,5617:380,-170,-68,0,0,0.0750131 -2673,5616:489,-169,-68,0,0,0.075006 -2674,5616:488,-168,-68,0,0,0.0749916 -2675,5616:487,-167,-68,0,0,0.0749916 -2676,5616:486,-166,-68,0,0,0.0749631 -2677,5616:485,-165,-68,0,0,0.074949 -2678,5616:384,-164,-68,0,0,0.0749562 -2679,5616:383,-163,-68,0,0,0.0749562 -2680,5616:382,-162,-68,0,0,0.0749562 -2681,5616:381,-161,-68,0,0,0.0749631 -2682,5616:380,-160,-68,0,0,0.0749916 -2683,5615:489,-159,-68,0,0,0.0750273 -2684,5615:488,-158,-68,0,0,0.0750488 -2685,5615:487,-157,-68,0,0,0.0750702 -2686,5615:486,-156,-68,0,0,0.0750987 -2687,5615:485,-155,-68,0,0,0.0751128 -2688,5615:384,-154,-68,0,0,0.07512 -2689,5615:383,-153,-68,0,0,0.0751272 -2690,5615:382,-152,-68,0,0,0.0751344 -2691,5615:381,-151,-68,0,0,0.0751486 -2692,5615:380,-150,-68,0,0,0.0751558 -2693,5614:489,-149,-68,0,0,0.075163 -2694,5614:488,-148,-68,0,0,0.0751701 -2695,5614:487,-147,-68,0,0,0.0751771 -2696,5614:486,-146,-68,0,0,0.0751771 -2697,5614:485,-145,-68,0,0,0.0751771 -2698,5614:384,-144,-68,0,0,0.0751771 -2699,5614:383,-143,-68,0,0,0.0751915 -2700,5614:382,-142,-68,0,0,0.0751843 -2701,5614:381,-141,-68,0,0,0.0751771 -2702,5614:380,-140,-68,0,0,0.0751771 -2703,5613:489,-139,-68,0,0,0.075163 -2704,5613:488,-138,-68,0,0,0.0751486 -2705,5613:487,-137,-68,0,0,0.0751344 -2706,5613:486,-136,-68,0,0,0.07512 -2707,5613:485,-135,-68,0,0,0.0751416 -2708,5613:384,-134,-68,0,0,0.0752559 -2709,5613:383,-133,-68,0,0,0.0753917 -2710,5613:382,-132,-68,0,0,0.0755424 -2711,5613:381,-131,-68,0,0,0.0761978 -2712,5613:380,-130,-68,0,0,0.0759162 -2713,5612:489,-129,-68,0,0,0.0757937 -2714,5612:488,-128,-68,0,0,0.0758586 -2715,5612:487,-127,-68,0,0,0.0759091 -2716,5612:486,-126,-68,0,0,0.0756932 -2717,5612:485,-125,-68,0,0,0.0754562 -2718,5612:384,-124,-68,0,0,0.075313 -2719,5612:383,-123,-68,0,0,0.0751344 -2720,5612:382,-122,-68,0,0,0.0751416 -2721,5612:381,-121,-68,0,0,0.0751272 -2722,5612:380,-120,-68,0,0,0.07512 -2723,5611:489,-119,-68,0,0,0.0751128 -2724,5611:488,-118,-68,0,0,0.0751059 -2725,5611:487,-117,-68,0,0,0.0750987 -2726,5611:486,-116,-68,0,0,0.0751272 -2727,5611:485,-115,-68,0,0,0.0750915 -2728,5611:384,-114,-68,0,0,0.0750915 -2729,5611:383,-113,-68,0,0,0.0751059 -2730,5611:382,-112,-68,0,0,0.0751059 -2731,5611:381,-111,-68,0,0,0.0751059 -2732,5611:380,-110,-68,0,0,0.0751059 -2733,5610:489,-109,-68,0,0,0.0751059 -2734,5610:488,-108,-68,0,0,0.0751059 -2735,5610:487,-107,-68,0,0,0.0750987 -2736,5610:486,-106,-68,0,0,0.0750987 -2737,5610:485,-105,-68,0,0,0.0750987 -2738,5610:384,-104,-68,0,0,0.0751128 -2739,5610:383,-103,-68,0,0,0.0751128 -2740,5610:382,-102,-68,0,0,0.0751128 -2741,5610:381,-101,-68,0,0,0.0751059 -2742,5610:380,-100,-68,0,0,0.0751059 -2743,5609:489,-99,-68,0,0,0.07512 -2744,5609:488,-98,-68,0,0,0.0751272 -2745,5609:487,-97,-68,0,0,0.0751272 -2746,5609:486,-96,-68,0,0,0.0751128 -2747,5609:485,-95,-68,0,0,0.0750987 -2748,5609:384,-94,-68,0,0,0.0750558 -2749,5609:383,-93,-68,0,0,0.0750201 -2750,5609:382,-92,-68,0,0,0.075006 -2751,5609:381,-91,-68,0,0,0.075006 -2752,5609:380,-90,-68,0,0,0.0750201 -2753,5608:489,-89,-68,0,0,0.0750273 -2754,5608:488,-88,-68,0,0,0.0750273 -2755,5608:487,-87,-68,0,0,0.0750201 -2756,5608:486,-86,-68,0,0,0.0750131 -2757,5608:485,-85,-68,0,0,0.0750131 -2758,5608:384,-84,-68,0,0,0.0749988 -2759,5608:383,-83,-68,0,0,0.0749916 -2760,5608:382,-82,-68,0,0,0.075006 -2761,5608:381,-81,-68,0,0,0.0750201 -2762,5608:380,-80,-68,0,0,0.0750702 -2763,5607:489,-79,-68,0,0,0.0755781 -2764,5607:488,-78,-68,0,0,0.0769681 -2765,5607:487,-77,-68,0,0,0.0794115 -2766,5607:486,-76,-68,0,0,0.0806751 -2767,5607:485,-75,-68,0,0,0.0805304 -2768,5606:380,-60,-68,0,0,0.0752201 -2769,5605:489,-59,-68,0,0,0.0750345 -2770,5605:488,-58,-68,0,0,0.0750345 -2771,5605:487,-57,-68,0,0,0.0750488 -2772,5605:486,-56,-68,0,0,0.0750416 -2773,5605:485,-55,-68,0,0,0.0750488 -2774,5605:384,-54,-68,0,0,0.0750488 -2775,5605:383,-53,-68,0,0,0.0750416 -2776,5605:382,-52,-68,0,0,0.0750345 -2777,5605:381,-51,-68,0,0,0.0750273 -2778,5605:380,-50,-68,0,0,0.0750273 -2779,5604:489,-49,-68,0,0,0.0750201 -2780,5604:488,-48,-68,0,0,0.075006 -2781,5604:487,-47,-68,0,0,0.0749916 -2782,5604:486,-46,-68,0,0,0.0749846 -2783,5604:485,-45,-68,0,0,0.0749775 -2784,5604:384,-44,-68,0,0,0.0749703 -2785,5604:383,-43,-68,0,0,0.0749631 -2786,5604:382,-42,-68,0,0,0.0749703 -2787,5604:381,-41,-68,0,0,0.0749631 -2788,5604:380,-40,-68,0,0,0.0749631 -2789,5603:489,-39,-68,0,0,0.0749631 -2790,5603:488,-38,-68,0,0,0.0749631 -2791,5603:487,-37,-68,0,0,0.0749703 -2792,5603:486,-36,-68,0,0,0.0749703 -2793,5603:485,-35,-68,0,0,0.0749775 -2794,5603:384,-34,-68,0,0,0.0749775 -2795,5603:383,-33,-68,0,0,0.0749775 -2796,5603:382,-32,-68,0,0,0.0749775 -2797,5603:381,-31,-68,0,0,0.0749775 -2798,5603:380,-30,-68,0,0,0.0749703 -2799,5602:489,-29,-68,0,0,0.0749775 -2800,5602:488,-28,-68,0,0,0.0749775 -2801,5602:487,-27,-68,0,0,0.0749703 -2802,5602:486,-26,-68,0,0,0.0749703 -2803,5602:485,-25,-68,0,0,0.0749631 -2804,5602:384,-24,-68,0,0,0.0749562 -2805,5602:383,-23,-68,0,0,0.0749562 -2806,5602:382,-22,-68,0,0,0.0749562 -2807,5602:381,-21,-68,0,0,0.0749562 -2808,5602:380,-20,-68,0,0,0.0749562 -2809,5601:489,-19,-68,0,0,0.0749562 -2810,5601:488,-18,-68,0,0,0.0749631 -2811,5601:487,-17,-68,0,0,0.0749631 -2812,5601:486,-16,-68,0,0,0.0749631 -2813,5601:485,-15,-68,0,0,0.0749846 -2814,5601:384,-14,-68,0,0,0.0749916 -2815,5601:383,-13,-68,0,0,0.0749988 -2816,5601:382,-12,-68,0,0,0.0750201 -2817,5601:381,-11,-68,0,0,0.0750702 -2818,5601:380,-10,-68,0,0,0.0756285 -2819,5600:489,-9,-68,0,0,0.0785446 -2820,5600:488,-8,-68,0,0,0.0793891 -2821,5600:487,-7,-68,0,0,0.0797351 -2822,5600:486,-6,-68,0,0,0.082034 -2823,3616:384,164,-68,0,0,0.0772166 -2824,3616:485,165,-68,0,0,0.0765747 -2825,3616:486,166,-68,0,0,0.0751771 -2826,3616:487,167,-68,0,0,0.0750488 -2827,3616:488,168,-68,0,0,0.0750416 -2828,3616:489,169,-68,0,0,0.0750131 -2829,3617:380,170,-68,0,0,0.0750201 -2830,3617:381,171,-68,0,0,0.0750131 -2831,3617:382,172,-68,0,0,0.0750131 -2832,3617:383,173,-68,0,0,0.075006 -2833,3617:384,174,-68,0,0,0.0749988 -2834,3617:485,175,-68,0,0,0.0749703 -2835,3617:486,176,-68,0,0,0.0749631 -2836,3617:487,177,-68,0,0,0.0749846 -2837,3617:488,178,-68,0,0,0.0750131 -2838,3617:489,179,-68,0,0,0.075063 -2839,3618:380,180,-68,0,0,0.0750915 -2840,5618:370,-180,-67,0,0,0.0750773 -2841,5617:479,-179,-67,0,0,0.0750915 -2842,5617:478,-178,-67,0,0,0.0750987 -2843,5617:477,-177,-67,0,0,0.0750987 -2844,5617:476,-176,-67,0,0,0.0750843 -2845,5617:475,-175,-67,0,0,0.0750702 -2846,5617:374,-174,-67,0,0,0.075063 -2847,5617:373,-173,-67,0,0,0.0750558 -2848,5617:372,-172,-67,0,0,0.0750416 -2849,5617:371,-171,-67,0,0,0.0750201 -2850,5617:370,-170,-67,0,0,0.075006 -2851,5616:479,-169,-67,0,0,0.0749916 -2852,5616:478,-168,-67,0,0,0.0749846 -2853,5616:477,-167,-67,0,0,0.0749631 -2854,5616:476,-166,-67,0,0,0.074949 -2855,5616:475,-165,-67,0,0,0.0749418 -2856,5616:374,-164,-67,0,0,0.0749346 -2857,5616:373,-163,-67,0,0,0.074949 -2858,5616:372,-162,-67,0,0,0.074949 -2859,5616:371,-161,-67,0,0,0.0749562 -2860,5616:370,-160,-67,0,0,0.0749846 -2861,5615:479,-159,-67,0,0,0.0750131 -2862,5615:478,-158,-67,0,0,0.0750558 -2863,5615:477,-157,-67,0,0,0.0750843 -2864,5615:476,-156,-67,0,0,0.0751059 -2865,5615:475,-155,-67,0,0,0.0751128 -2866,5615:374,-154,-67,0,0,0.07512 -2867,5615:373,-153,-67,0,0,0.0751272 -2868,5615:372,-152,-67,0,0,0.0751416 -2869,5615:371,-151,-67,0,0,0.0751486 -2870,5615:370,-150,-67,0,0,0.0751486 -2871,5614:479,-149,-67,0,0,0.0751558 -2872,5614:478,-148,-67,0,0,0.0751701 -2873,5614:477,-147,-67,0,0,0.0751843 -2874,5614:476,-146,-67,0,0,0.0751701 -2875,5614:475,-145,-67,0,0,0.0751771 -2876,5614:374,-144,-67,0,0,0.0751915 -2877,5614:373,-143,-67,0,0,0.0751701 -2878,5614:372,-142,-67,0,0,0.0751486 -2879,5614:371,-141,-67,0,0,0.0751344 -2880,5614:370,-140,-67,0,0,0.0751344 -2881,5613:479,-139,-67,0,0,0.0751486 -2882,5613:478,-138,-67,0,0,0.0751987 -2883,5613:477,-137,-67,0,0,0.0753703 -2884,5613:476,-136,-67,0,0,0.075163 -2885,5613:475,-135,-67,0,0,0.0751771 -2886,5613:374,-134,-67,0,0,0.0752057 -2887,5613:373,-133,-67,0,0,0.0754779 -2888,5613:372,-132,-67,0,0,0.0753489 -2889,5613:371,-131,-67,0,0,0.0761183 -2890,5613:370,-130,-67,0,0,0.076415 -2891,5612:479,-129,-67,0,0,0.0764296 -2892,5612:478,-128,-67,0,0,0.07635 -2893,5612:477,-127,-67,0,0,0.0760967 -2894,5612:476,-126,-67,0,0,0.0759091 -2895,5612:475,-125,-67,0,0,0.0757362 -2896,5612:374,-124,-67,0,0,0.0755207 -2897,5612:373,-123,-67,0,0,0.0754203 -2898,5612:372,-122,-67,0,0,0.0753561 -2899,5612:371,-121,-67,0,0,0.0752916 -2900,5612:370,-120,-67,0,0,0.0752273 -2901,5611:479,-119,-67,0,0,0.0751701 -2902,5611:478,-118,-67,0,0,0.0752273 -2903,5611:477,-117,-67,0,0,0.076046 -2904,5611:476,-116,-67,0,0,0.0760749 -2905,5611:475,-115,-67,0,0,0.0757867 -2906,5611:374,-114,-67,0,0,0.0755494 -2907,5611:373,-113,-67,0,0,0.0754275 -2908,5611:372,-112,-67,0,0,0.07527 -2909,5611:371,-111,-67,0,0,0.0750915 -2910,5611:370,-110,-67,0,0,0.0751059 -2911,5610:479,-109,-67,0,0,0.0751059 -2912,5610:478,-108,-67,0,0,0.0750987 -2913,5610:477,-107,-67,0,0,0.0750915 -2914,5610:476,-106,-67,0,0,0.0750987 -2915,5610:475,-105,-67,0,0,0.0750915 -2916,5610:374,-104,-67,0,0,0.0750915 -2917,5610:373,-103,-67,0,0,0.0751059 -2918,5610:372,-102,-67,0,0,0.0751059 -2919,5610:371,-101,-67,0,0,0.0750987 -2920,5610:370,-100,-67,0,0,0.0750987 -2921,5609:479,-99,-67,0,0,0.0750843 -2922,5609:478,-98,-67,0,0,0.0750488 -2923,5609:477,-97,-67,0,0,0.0750201 -2924,5609:476,-96,-67,0,0,0.0750131 -2925,5609:475,-95,-67,0,0,0.0749988 -2926,5609:374,-94,-67,0,0,0.075006 -2927,5609:373,-93,-67,0,0,0.075006 -2928,5609:372,-92,-67,0,0,0.0749988 -2929,5609:371,-91,-67,0,0,0.0749988 -2930,5609:370,-90,-67,0,0,0.0749988 -2931,5608:479,-89,-67,0,0,0.0750131 -2932,5608:478,-88,-67,0,0,0.0750201 -2933,5608:477,-87,-67,0,0,0.0750273 -2934,5608:476,-86,-67,0,0,0.0750345 -2935,5608:475,-85,-67,0,0,0.0750345 -2936,5608:374,-84,-67,0,0,0.0750416 -2937,5608:373,-83,-67,0,0,0.0750488 -2938,5608:372,-82,-67,0,0,0.0750488 -2939,5608:371,-81,-67,0,0,0.0750558 -2940,5608:370,-80,-67,0,0,0.075063 -2941,5607:479,-79,-67,0,0,0.0750987 -2942,5607:478,-78,-67,0,0,0.0751701 -2943,5607:477,-77,-67,0,0,0.0752415 -2944,5607:476,-76,-67,0,0,0.0753272 -2945,5607:475,-75,-67,0,0,0.0753703 -2946,5607:374,-74,-67,0,0,0.0763354 -2947,5607:373,-73,-67,0,0,0.0768221 -2948,5606:479,-69,-67,0,0,0.0761978 -2949,5606:371,-61,-67,0,0,0.0753917 -2950,5606:370,-60,-67,0,0,0.0752273 -2951,5605:479,-59,-67,0,0,0.0750345 -2952,5605:478,-58,-67,0,0,0.0750345 -2953,5605:477,-57,-67,0,0,0.0750345 -2954,5605:476,-56,-67,0,0,0.0750416 -2955,5605:475,-55,-67,0,0,0.0750488 -2956,5605:374,-54,-67,0,0,0.0750416 -2957,5605:373,-53,-67,0,0,0.0750345 -2958,5605:372,-52,-67,0,0,0.0750201 -2959,5605:371,-51,-67,0,0,0.0749988 -2960,5605:370,-50,-67,0,0,0.0749988 -2961,5604:479,-49,-67,0,0,0.0749916 -2962,5604:478,-48,-67,0,0,0.0749775 -2963,5604:477,-47,-67,0,0,0.0749703 -2964,5604:476,-46,-67,0,0,0.0749703 -2965,5604:475,-45,-67,0,0,0.0749703 -2966,5604:374,-44,-67,0,0,0.0749703 -2967,5604:373,-43,-67,0,0,0.0749631 -2968,5604:372,-42,-67,0,0,0.0749631 -2969,5604:371,-41,-67,0,0,0.0749631 -2970,5604:370,-40,-67,0,0,0.0749631 -2971,5603:479,-39,-67,0,0,0.0749631 -2972,5603:478,-38,-67,0,0,0.0749631 -2973,5603:477,-37,-67,0,0,0.0749631 -2974,5603:476,-36,-67,0,0,0.0749631 -2975,5603:475,-35,-67,0,0,0.0749631 -2976,5603:374,-34,-67,0,0,0.0749631 -2977,5603:373,-33,-67,0,0,0.0749562 -2978,5603:372,-32,-67,0,0,0.074949 -2979,5603:371,-31,-67,0,0,0.074949 -2980,5603:370,-30,-67,0,0,0.0749418 -2981,5602:479,-29,-67,0,0,0.0749418 -2982,5602:478,-28,-67,0,0,0.074949 -2983,5602:477,-27,-67,0,0,0.074949 -2984,5602:476,-26,-67,0,0,0.0749418 -2985,5602:475,-25,-67,0,0,0.0749418 -2986,5602:374,-24,-67,0,0,0.0749346 -2987,5602:373,-23,-67,0,0,0.0749346 -2988,5602:372,-22,-67,0,0,0.0749418 -2989,5602:371,-21,-67,0,0,0.0749562 -2990,5602:370,-20,-67,0,0,0.0749562 -2991,5601:479,-19,-67,0,0,0.0749562 -2992,5601:478,-18,-67,0,0,0.0749631 -2993,5601:477,-17,-67,0,0,0.074949 -2994,5601:476,-16,-67,0,0,0.0749631 -2995,5601:475,-15,-67,0,0,0.0749631 -2996,5601:374,-14,-67,0,0,0.0749562 -2997,5601:373,-13,-67,0,0,0.0749631 -2998,5601:372,-12,-67,0,0,0.0749775 -2999,5601:371,-11,-67,0,0,0.0749703 -3000,5601:370,-10,-67,0,0,0.0749703 -3001,5600:479,-9,-67,0,0,0.0749631 -3002,5600:478,-8,-67,0,0,0.0749703 -3003,5600:477,-7,-67,0,0,0.0749775 -3004,5600:476,-6,-67,0,0,0.0750345 -3005,5600:475,-5,-67,0,0,0.0755781 -3006,5600:374,-4,-67,0,0,0.0753058 -3007,5600:373,-3,-67,0,0,0.0751128 -3008,5600:372,-2,-67,0,0,0.0754275 -3009,5600:371,-1,-67,0,0,0.0761689 -3010,3600:371,0,-67,0,0,0.0774365 -3011,3600:371,1,-67,0,0,0.0756355 -3012,3600:372,2,-67,0,0,0.0752129 -3013,3600:373,3,-67,0,0,0.075163 -3014,3600:374,4,-67,0,0,0.0766184 -3015,3600:475,5,-67,0,0,0.0768659 -3016,3600:476,6,-67,0,0,0.0768367 -3017,3600:477,7,-67,0,0,0.0773852 -3018,3600:478,8,-67,0,0,0.0782329 -3019,3600:479,9,-67,0,0,0.0786564 -3020,3601:370,10,-67,0,0,0.0775172 -3021,3601:371,11,-67,0,0,0.0789023 -3022,3601:372,12,-67,0,0,0.0800296 -3023,3601:373,13,-67,0,0,0.0814942 -3024,3601:478,18,-67,0,0,0.0759523 -3025,3601:479,19,-67,0,0,0.0750702 -3026,3602:370,20,-67,0,0,0.07512 -3027,3602:371,21,-67,0,0,0.0751344 -3028,3602:372,22,-67,0,0,0.0751059 -3029,3602:373,23,-67,0,0,0.0750558 -3030,3602:374,24,-67,0,0,0.0749846 -3031,3602:475,25,-67,0,0,0.0749275 -3032,3602:476,26,-67,0,0,0.0750201 -3033,3602:477,27,-67,0,0,0.0749346 -3034,3602:478,28,-67,0,0,0.0761761 -3035,3616:371,161,-67,0,0,0.07565 -3036,3616:372,162,-67,0,0,0.075006 -3037,3616:373,163,-67,0,0,0.0750131 -3038,3616:374,164,-67,0,0,0.0750273 -3039,3616:475,165,-67,0,0,0.0750273 -3040,3616:476,166,-67,0,0,0.0750273 -3041,3616:477,167,-67,0,0,0.0750273 -3042,3616:478,168,-67,0,0,0.0750345 -3043,3616:479,169,-67,0,0,0.0750273 -3044,3617:370,170,-67,0,0,0.0750273 -3045,3617:371,171,-67,0,0,0.0750345 -3046,3617:372,172,-67,0,0,0.0750201 -3047,3617:373,173,-67,0,0,0.0750201 -3048,3617:374,174,-67,0,0,0.0749916 -3049,3617:475,175,-67,0,0,0.0749775 -3050,3617:476,176,-67,0,0,0.0749775 -3051,3617:477,177,-67,0,0,0.075006 -3052,3617:478,178,-67,0,0,0.0750345 -3053,3617:479,179,-67,0,0,0.0750558 -3054,3618:370,180,-67,0,0,0.0750773 -3055,5618:360,-180,-66,0,0,0.0750558 -3056,5617:469,-179,-66,0,0,0.0750702 -3057,5617:468,-178,-66,0,0,0.0750915 -3058,5617:467,-177,-66,0,0,0.0750915 -3059,5617:466,-176,-66,0,0,0.0750773 -3060,5617:465,-175,-66,0,0,0.075063 -3061,5617:364,-174,-66,0,0,0.0750558 -3062,5617:363,-173,-66,0,0,0.0750488 -3063,5617:362,-172,-66,0,0,0.0750416 -3064,5617:361,-171,-66,0,0,0.0750273 -3065,5617:360,-170,-66,0,0,0.0750131 -3066,5616:469,-169,-66,0,0,0.0749988 -3067,5616:468,-168,-66,0,0,0.0749916 -3068,5616:467,-167,-66,0,0,0.0749846 -3069,5616:466,-166,-66,0,0,0.0749562 -3070,5616:465,-165,-66,0,0,0.074949 -3071,5616:364,-164,-66,0,0,0.074949 -3072,5616:363,-163,-66,0,0,0.0749562 -3073,5616:362,-162,-66,0,0,0.0749703 -3074,5616:361,-161,-66,0,0,0.0749775 -3075,5616:360,-160,-66,0,0,0.075006 -3076,5615:469,-159,-66,0,0,0.0750345 -3077,5615:468,-158,-66,0,0,0.0750558 -3078,5615:467,-157,-66,0,0,0.0750843 -3079,5615:466,-156,-66,0,0,0.0750987 -3080,5615:465,-155,-66,0,0,0.0751059 -3081,5615:364,-154,-66,0,0,0.0751128 -3082,5615:363,-153,-66,0,0,0.0751272 -3083,5615:362,-152,-66,0,0,0.0751486 -3084,5615:361,-151,-66,0,0,0.0751486 -3085,5615:360,-150,-66,0,0,0.0751486 -3086,5614:469,-149,-66,0,0,0.0751558 -3087,5614:468,-148,-66,0,0,0.0751558 -3088,5614:467,-147,-66,0,0,0.0751771 -3089,5614:466,-146,-66,0,0,0.0751701 -3090,5614:465,-145,-66,0,0,0.075163 -3091,5614:364,-144,-66,0,0,0.0751701 -3092,5614:363,-143,-66,0,0,0.075163 -3093,5614:362,-142,-66,0,0,0.0751701 -3094,5614:361,-141,-66,0,0,0.0752844 -3095,5614:360,-140,-66,0,0,0.0752844 -3096,5613:469,-139,-66,0,0,0.0753058 -3097,5613:468,-138,-66,0,0,0.0752057 -3098,5613:467,-137,-66,0,0,0.0751272 -3099,5613:466,-136,-66,0,0,0.0751915 -3100,5613:465,-135,-66,0,0,0.07527 -3101,5613:364,-134,-66,0,0,0.075686 -3102,5613:363,-133,-66,0,0,0.0760172 -3103,5613:362,-132,-66,0,0,0.0759019 -3104,5613:361,-131,-66,0,0,0.0763281 -3105,5613:360,-130,-66,0,0,0.0764369 -3106,5612:469,-129,-66,0,0,0.0763716 -3107,5612:468,-128,-66,0,0,0.076386 -3108,5612:467,-127,-66,0,0,0.0763064 -3109,5612:466,-126,-66,0,0,0.0760245 -3110,5612:465,-125,-66,0,0,0.0758803 -3111,5612:364,-124,-66,0,0,0.0757722 -3112,5612:363,-123,-66,0,0,0.075686 -3113,5612:362,-122,-66,0,0,0.0755424 -3114,5612:361,-121,-66,0,0,0.0754348 -3115,5612:360,-120,-66,0,0,0.0753989 -3116,5611:469,-119,-66,0,0,0.075442 -3117,5611:468,-118,-66,0,0,0.0756355 -3118,5611:467,-117,-66,0,0,0.0761038 -3119,5611:466,-116,-66,0,0,0.0772606 -3120,5611:465,-115,-66,0,0,0.0782997 -3121,5611:364,-114,-66,0,0,0.0782108 -3122,5611:363,-113,-66,0,0,0.0782476 -3123,5611:362,-112,-66,0,0,0.0763571 -3124,5611:361,-111,-66,0,0,0.0753272 -3125,5611:360,-110,-66,0,0,0.0750915 -3126,5610:469,-109,-66,0,0,0.0752772 -3127,5610:468,-108,-66,0,0,0.0762413 -3128,5610:467,-107,-66,0,0,0.0750915 -3129,5610:466,-106,-66,0,0,0.0750773 -3130,5610:465,-105,-66,0,0,0.075063 -3131,5610:364,-104,-66,0,0,0.0750702 -3132,5610:363,-103,-66,0,0,0.0750702 -3133,5610:362,-102,-66,0,0,0.0750558 -3134,5610:361,-101,-66,0,0,0.0750273 -3135,5610:360,-100,-66,0,0,0.0750416 -3136,5609:469,-99,-66,0,0,0.0750201 -3137,5609:468,-98,-66,0,0,0.075006 -3138,5609:467,-97,-66,0,0,0.0749988 -3139,5609:466,-96,-66,0,0,0.0749988 -3140,5609:465,-95,-66,0,0,0.0749846 -3141,5609:364,-94,-66,0,0,0.075006 -3142,5609:363,-93,-66,0,0,0.0750273 -3143,5609:362,-92,-66,0,0,0.0750131 -3144,5609:361,-91,-66,0,0,0.0749916 -3145,5609:360,-90,-66,0,0,0.0749988 -3146,5608:469,-89,-66,0,0,0.0750131 -3147,5608:468,-88,-66,0,0,0.0750273 -3148,5608:467,-87,-66,0,0,0.0750273 -3149,5608:466,-86,-66,0,0,0.0750345 -3150,5608:465,-85,-66,0,0,0.075063 -3151,5608:364,-84,-66,0,0,0.0750773 -3152,5608:363,-83,-66,0,0,0.0750773 -3153,5608:362,-82,-66,0,0,0.0750773 -3154,5608:361,-81,-66,0,0,0.0750843 -3155,5608:360,-80,-66,0,0,0.0750843 -3156,5607:469,-79,-66,0,0,0.0750773 -3157,5607:468,-78,-66,0,0,0.07512 -3158,5607:467,-77,-66,0,0,0.0752201 -3159,5607:466,-76,-66,0,0,0.0753203 -3160,5607:465,-75,-66,0,0,0.0753775 -3161,5607:364,-74,-66,0,0,0.076234 -3162,5607:363,-73,-66,0,0,0.076713 -3163,5607:360,-70,-66,0,0,0.0757867 -3164,5606:469,-69,-66,0,0,0.0759307 -3165,5606:361,-61,-66,0,0,0.0754348 -3166,5606:360,-60,-66,0,0,0.0751059 -3167,5605:469,-59,-66,0,0,0.0750345 -3168,5605:468,-58,-66,0,0,0.0750273 -3169,5605:467,-57,-66,0,0,0.0750273 -3170,5605:466,-56,-66,0,0,0.0750416 -3171,5605:465,-55,-66,0,0,0.0750488 -3172,5605:364,-54,-66,0,0,0.0750416 -3173,5605:363,-53,-66,0,0,0.0750273 -3174,5605:362,-52,-66,0,0,0.0750131 -3175,5605:361,-51,-66,0,0,0.075006 -3176,5605:360,-50,-66,0,0,0.0749916 -3177,5604:469,-49,-66,0,0,0.0749846 -3178,5604:468,-48,-66,0,0,0.0749846 -3179,5604:467,-47,-66,0,0,0.0749775 -3180,5604:466,-46,-66,0,0,0.0749775 -3181,5604:465,-45,-66,0,0,0.0749775 -3182,5604:364,-44,-66,0,0,0.0749703 -3183,5604:363,-43,-66,0,0,0.0749703 -3184,5604:362,-42,-66,0,0,0.0749703 -3185,5604:361,-41,-66,0,0,0.0749631 -3186,5604:360,-40,-66,0,0,0.0749562 -3187,5603:469,-39,-66,0,0,0.074949 -3188,5603:468,-38,-66,0,0,0.0749562 -3189,5603:467,-37,-66,0,0,0.0749631 -3190,5603:466,-36,-66,0,0,0.0749562 -3191,5603:465,-35,-66,0,0,0.0749562 -3192,5603:364,-34,-66,0,0,0.0749562 -3193,5603:363,-33,-66,0,0,0.0749562 -3194,5603:362,-32,-66,0,0,0.0749562 -3195,5603:361,-31,-66,0,0,0.074949 -3196,5603:360,-30,-66,0,0,0.0749418 -3197,5602:469,-29,-66,0,0,0.0749346 -3198,5602:468,-28,-66,0,0,0.0749418 -3199,5602:467,-27,-66,0,0,0.0749418 -3200,5602:466,-26,-66,0,0,0.0749346 -3201,5602:465,-25,-66,0,0,0.0749346 -3202,5602:364,-24,-66,0,0,0.0749275 -3203,5602:363,-23,-66,0,0,0.0749205 -3204,5602:362,-22,-66,0,0,0.0749205 -3205,5602:361,-21,-66,0,0,0.0749275 -3206,5602:360,-20,-66,0,0,0.0749346 -3207,5601:469,-19,-66,0,0,0.0749346 -3208,5601:468,-18,-66,0,0,0.0749418 -3209,5601:467,-17,-66,0,0,0.0749418 -3210,5601:466,-16,-66,0,0,0.074949 -3211,5601:465,-15,-66,0,0,0.074949 -3212,5601:364,-14,-66,0,0,0.074949 -3213,5601:363,-13,-66,0,0,0.0749418 -3214,5601:362,-12,-66,0,0,0.0749275 -3215,5601:361,-11,-66,0,0,0.0749418 -3216,5601:360,-10,-66,0,0,0.0749418 -3217,5600:469,-9,-66,0,0,0.0749205 -3218,5600:468,-8,-66,0,0,0.0749133 -3219,5600:467,-7,-66,0,0,0.0749275 -3220,5600:466,-6,-66,0,0,0.0749562 -3221,5600:465,-5,-66,0,0,0.0749703 -3222,5600:364,-4,-66,0,0,0.074949 -3223,5600:363,-3,-66,0,0,0.074899 -3224,5600:362,-2,-66,0,0,0.0748636 -3225,5600:361,-1,-66,0,0,0.0748636 -3226,3600:361,0,-66,0,0,0.0748636 -3227,3600:361,1,-66,0,0,0.0748777 -3228,3600:362,2,-66,0,0,0.074892 -3229,3600:363,3,-66,0,0,0.074892 -3230,3600:364,4,-66,0,0,0.074892 -3231,3600:465,5,-66,0,0,0.0748849 -3232,3600:466,6,-66,0,0,0.0748636 -3233,3600:467,7,-66,0,0,0.0748849 -3234,3600:468,8,-66,0,0,0.0749062 -3235,3600:469,9,-66,0,0,0.0749133 -3236,3601:360,10,-66,0,0,0.0749346 -3237,3601:361,11,-66,0,0,0.0750558 -3238,3601:362,12,-66,0,0,0.0753631 -3239,3601:363,13,-66,0,0,0.075063 -3240,3601:364,14,-66,0,0,0.0753203 -3241,3601:465,15,-66,0,0,0.075442 -3242,3601:466,16,-66,0,0,0.0750773 -3243,3601:467,17,-66,0,0,0.0751128 -3244,3601:468,18,-66,0,0,0.075006 -3245,3601:469,19,-66,0,0,0.0749775 -3246,3602:360,20,-66,0,0,0.0749775 -3247,3602:361,21,-66,0,0,0.0749775 -3248,3602:362,22,-66,0,0,0.0749846 -3249,3602:363,23,-66,0,0,0.0749846 -3250,3602:364,24,-66,0,0,0.0749703 -3251,3602:465,25,-66,0,0,0.074949 -3252,3602:466,26,-66,0,0,0.074949 -3253,3602:467,27,-66,0,0,0.0749418 -3254,3602:468,28,-66,0,0,0.0749988 -3255,3602:469,29,-66,0,0,0.0749846 -3256,3603:466,36,-66,0,0,0.0755352 -3257,3603:467,37,-66,0,0,0.0754348 -3258,3603:468,38,-66,0,0,0.0753058 -3259,3603:469,39,-66,0,0,0.0750915 -3260,3607:364,74,-66,0,0,0.0888968 -3261,3607:465,75,-66,0,0,0.0871401 -3262,3607:466,76,-66,0,0,0.0890969 -3263,3607:467,77,-66,0,0,0.0890717 -3264,3615:468,158,-66,0,0,0.0754492 -3265,3615:469,159,-66,0,0,0.0751771 -3266,3616:360,160,-66,0,0,0.0750488 -3267,3616:361,161,-66,0,0,0.0750416 -3268,3616:362,162,-66,0,0,0.0750345 -3269,3616:363,163,-66,0,0,0.0750488 -3270,3616:364,164,-66,0,0,0.075063 -3271,3616:465,165,-66,0,0,0.0750558 -3272,3616:466,166,-66,0,0,0.0750558 -3273,3616:467,167,-66,0,0,0.0750488 -3274,3616:468,168,-66,0,0,0.0750416 -3275,3616:469,169,-66,0,0,0.0750488 -3276,3617:360,170,-66,0,0,0.0750488 -3277,3617:361,171,-66,0,0,0.0750201 -3278,3617:362,172,-66,0,0,0.0750131 -3279,3617:363,173,-66,0,0,0.075006 -3280,3617:364,174,-66,0,0,0.0749846 -3281,3617:465,175,-66,0,0,0.0749846 -3282,3617:466,176,-66,0,0,0.0749916 -3283,3617:467,177,-66,0,0,0.075006 -3284,3617:468,178,-66,0,0,0.0750345 -3285,3617:469,179,-66,0,0,0.0750488 -3286,3618:360,180,-66,0,0,0.0750558 -3287,5618:350,-180,-65,0,0,0.0750488 -3288,5617:459,-179,-65,0,0,0.0750558 -3289,5617:458,-178,-65,0,0,0.0750702 -3290,5617:457,-177,-65,0,0,0.0750773 -3291,5617:456,-176,-65,0,0,0.0750702 -3292,5617:455,-175,-65,0,0,0.075063 -3293,5617:354,-174,-65,0,0,0.0750702 -3294,5617:353,-173,-65,0,0,0.0750558 -3295,5617:352,-172,-65,0,0,0.0750488 -3296,5617:351,-171,-65,0,0,0.0750345 -3297,5617:350,-170,-65,0,0,0.0750273 -3298,5616:459,-169,-65,0,0,0.0750131 -3299,5616:458,-168,-65,0,0,0.0749988 -3300,5616:457,-167,-65,0,0,0.0749916 -3301,5616:456,-166,-65,0,0,0.0749775 -3302,5616:455,-165,-65,0,0,0.0749703 -3303,5616:354,-164,-65,0,0,0.0749703 -3304,5616:353,-163,-65,0,0,0.0749775 -3305,5616:352,-162,-65,0,0,0.0749846 -3306,5616:351,-161,-65,0,0,0.0749988 -3307,5616:350,-160,-65,0,0,0.0750201 -3308,5615:459,-159,-65,0,0,0.0750488 -3309,5615:458,-158,-65,0,0,0.0750702 -3310,5615:457,-157,-65,0,0,0.0750773 -3311,5615:456,-156,-65,0,0,0.0750915 -3312,5615:455,-155,-65,0,0,0.0750987 -3313,5615:354,-154,-65,0,0,0.0751128 -3314,5615:353,-153,-65,0,0,0.0751344 -3315,5615:352,-152,-65,0,0,0.0751486 -3316,5615:351,-151,-65,0,0,0.0751558 -3317,5615:350,-150,-65,0,0,0.0751344 -3318,5614:459,-149,-65,0,0,0.0751701 -3319,5614:458,-148,-65,0,0,0.075163 -3320,5614:457,-147,-65,0,0,0.0751771 -3321,5614:456,-146,-65,0,0,0.0751558 -3322,5614:455,-145,-65,0,0,0.0751416 -3323,5614:354,-144,-65,0,0,0.075163 -3324,5614:353,-143,-65,0,0,0.0751486 -3325,5614:352,-142,-65,0,0,0.0751558 -3326,5614:351,-141,-65,0,0,0.075163 -3327,5614:350,-140,-65,0,0,0.0752631 -3328,5613:459,-139,-65,0,0,0.075313 -3329,5613:458,-138,-65,0,0,0.0752343 -3330,5613:457,-137,-65,0,0,0.0752057 -3331,5613:456,-136,-65,0,0,0.0751701 -3332,5613:455,-135,-65,0,0,0.0751843 -3333,5613:354,-134,-65,0,0,0.0759162 -3334,5613:353,-133,-65,0,0,0.0763789 -3335,5613:352,-132,-65,0,0,0.0763933 -3336,5613:351,-131,-65,0,0,0.0764006 -3337,5613:350,-130,-65,0,0,0.0764296 -3338,5612:459,-129,-65,0,0,0.0765967 -3339,5612:458,-128,-65,0,0,0.076553 -3340,5612:457,-127,-65,0,0,0.0764369 -3341,5612:456,-126,-65,0,0,0.0763643 -3342,5612:455,-125,-65,0,0,0.0763789 -3343,5612:354,-124,-65,0,0,0.0762775 -3344,5612:353,-123,-65,0,0,0.0762413 -3345,5612:352,-122,-65,0,0,0.0764586 -3346,5612:351,-121,-65,0,0,0.0766111 -3347,5612:350,-120,-65,0,0,0.075722 -3348,5611:459,-119,-65,0,0,0.0755711 -3349,5611:458,-118,-65,0,0,0.0756932 -3350,5611:457,-117,-65,0,0,0.0760606 -3351,5611:456,-116,-65,0,0,0.0784927 -3352,5611:455,-115,-65,0,0,0.0785002 -3353,5611:354,-114,-65,0,0,0.079254 -3354,5611:353,-113,-65,0,0,0.079404 -3355,5611:352,-112,-65,0,0,0.078011 -3356,5611:351,-111,-65,0,0,0.0764876 -3357,5611:350,-110,-65,0,0,0.0782255 -3358,5610:459,-109,-65,0,0,0.0797579 -3359,5610:458,-108,-65,0,0,0.0805076 -3360,5610:457,-107,-65,0,0,0.0769534 -3361,5610:456,-106,-65,0,0,0.075063 -3362,5610:455,-105,-65,0,0,0.075006 -3363,5610:354,-104,-65,0,0,0.0751059 -3364,5610:353,-103,-65,0,0,0.0750488 -3365,5610:352,-102,-65,0,0,0.0750273 -3366,5610:351,-101,-65,0,0,0.0750345 -3367,5610:350,-100,-65,0,0,0.0750558 -3368,5609:459,-99,-65,0,0,0.0750345 -3369,5609:458,-98,-65,0,0,0.0750201 -3370,5609:457,-97,-65,0,0,0.0750273 -3371,5609:456,-96,-65,0,0,0.0750131 -3372,5609:455,-95,-65,0,0,0.0749775 -3373,5609:354,-94,-65,0,0,0.0749703 -3374,5609:353,-93,-65,0,0,0.075006 -3375,5609:352,-92,-65,0,0,0.0749988 -3376,5609:351,-91,-65,0,0,0.0749775 -3377,5609:350,-90,-65,0,0,0.0749916 -3378,5608:459,-89,-65,0,0,0.0749988 -3379,5608:458,-88,-65,0,0,0.0750131 -3380,5608:457,-87,-65,0,0,0.0750201 -3381,5608:456,-86,-65,0,0,0.0750416 -3382,5608:455,-85,-65,0,0,0.075063 -3383,5608:354,-84,-65,0,0,0.0750773 -3384,5608:353,-83,-65,0,0,0.0750915 -3385,5608:352,-82,-65,0,0,0.0750915 -3386,5608:351,-81,-65,0,0,0.0750987 -3387,5608:350,-80,-65,0,0,0.0750987 -3388,5607:459,-79,-65,0,0,0.0750987 -3389,5607:458,-78,-65,0,0,0.0750915 -3390,5607:457,-77,-65,0,0,0.0751344 -3391,5607:456,-76,-65,0,0,0.0752129 -3392,5607:455,-75,-65,0,0,0.07527 -3393,5607:354,-74,-65,0,0,0.0753417 -3394,5607:353,-73,-65,0,0,0.0754133 -3395,5607:352,-72,-65,0,0,0.0755567 -3396,5607:351,-71,-65,0,0,0.075758 -3397,5607:350,-70,-65,0,0,0.0756572 -3398,5606:459,-69,-65,0,0,0.0756645 -3399,5606:458,-68,-65,0,0,0.0764949 -3400,5606:350,-60,-65,0,0,0.0753058 -3401,5605:459,-59,-65,0,0,0.0752201 -3402,5605:458,-58,-65,0,0,0.0750488 -3403,5605:457,-57,-65,0,0,0.0750273 -3404,5605:456,-56,-65,0,0,0.0750345 -3405,5605:455,-55,-65,0,0,0.0750416 -3406,5605:354,-54,-65,0,0,0.0750416 -3407,5605:353,-53,-65,0,0,0.0750273 -3408,5605:352,-52,-65,0,0,0.075006 -3409,5605:351,-51,-65,0,0,0.0749916 -3410,5605:350,-50,-65,0,0,0.0749916 -3411,5604:459,-49,-65,0,0,0.0749916 -3412,5604:458,-48,-65,0,0,0.0749846 -3413,5604:457,-47,-65,0,0,0.0749846 -3414,5604:456,-46,-65,0,0,0.0749846 -3415,5604:455,-45,-65,0,0,0.0749775 -3416,5604:354,-44,-65,0,0,0.0749775 -3417,5604:353,-43,-65,0,0,0.0749775 -3418,5604:352,-42,-65,0,0,0.0749631 -3419,5604:351,-41,-65,0,0,0.0749562 -3420,5604:350,-40,-65,0,0,0.0749562 -3421,5603:459,-39,-65,0,0,0.0749562 -3422,5603:458,-38,-65,0,0,0.0749562 -3423,5603:457,-37,-65,0,0,0.0749562 -3424,5603:456,-36,-65,0,0,0.0749631 -3425,5603:455,-35,-65,0,0,0.0749631 -3426,5603:354,-34,-65,0,0,0.0749631 -3427,5603:353,-33,-65,0,0,0.0749631 -3428,5603:352,-32,-65,0,0,0.0749562 -3429,5603:351,-31,-65,0,0,0.074949 -3430,5603:350,-30,-65,0,0,0.074949 -3431,5602:459,-29,-65,0,0,0.0749418 -3432,5602:458,-28,-65,0,0,0.0749418 -3433,5602:457,-27,-65,0,0,0.0749418 -3434,5602:456,-26,-65,0,0,0.0749418 -3435,5602:455,-25,-65,0,0,0.0749418 -3436,5602:354,-24,-65,0,0,0.0749346 -3437,5602:353,-23,-65,0,0,0.0749275 -3438,5602:352,-22,-65,0,0,0.0749205 -3439,5602:351,-21,-65,0,0,0.0749205 -3440,5602:350,-20,-65,0,0,0.0749205 -3441,5601:459,-19,-65,0,0,0.0749205 -3442,5601:458,-18,-65,0,0,0.0749205 -3443,5601:457,-17,-65,0,0,0.0749275 -3444,5601:456,-16,-65,0,0,0.0749275 -3445,5601:455,-15,-65,0,0,0.0749275 -3446,5601:354,-14,-65,0,0,0.0749275 -3447,5601:353,-13,-65,0,0,0.0749275 -3448,5601:352,-12,-65,0,0,0.0749205 -3449,5601:351,-11,-65,0,0,0.074899 -3450,5601:350,-10,-65,0,0,0.0748705 -3451,5600:459,-9,-65,0,0,0.0748777 -3452,5600:458,-8,-65,0,0,0.0748849 -3453,5600:457,-7,-65,0,0,0.074899 -3454,5600:456,-6,-65,0,0,0.0749205 -3455,5600:455,-5,-65,0,0,0.0749275 -3456,5600:354,-4,-65,0,0,0.0749275 -3457,5600:353,-3,-65,0,0,0.0749062 -3458,5600:352,-2,-65,0,0,0.0748705 -3459,5600:351,-1,-65,0,0,0.0748777 -3460,3600:351,0,-65,0,0,0.0748849 -3461,3600:351,1,-65,0,0,0.074899 -3462,3600:352,2,-65,0,0,0.0749275 -3463,3600:353,3,-65,0,0,0.074892 -3464,3600:354,4,-65,0,0,0.0748705 -3465,3600:455,5,-65,0,0,0.0748493 -3466,3600:456,6,-65,0,0,0.0748421 -3467,3600:457,7,-65,0,0,0.0748349 -3468,3600:458,8,-65,0,0,0.0748564 -3469,3600:459,9,-65,0,0,0.0749062 -3470,3601:350,10,-65,0,0,0.0749418 -3471,3601:351,11,-65,0,0,0.075006 -3472,3601:352,12,-65,0,0,0.0749846 -3473,3601:353,13,-65,0,0,0.0750131 -3474,3601:354,14,-65,0,0,0.0750201 -3475,3601:455,15,-65,0,0,0.0749846 -3476,3601:456,16,-65,0,0,0.0749775 -3477,3601:457,17,-65,0,0,0.0749846 -3478,3601:458,18,-65,0,0,0.0749418 -3479,3601:459,19,-65,0,0,0.074949 -3480,3602:350,20,-65,0,0,0.0749418 -3481,3602:351,21,-65,0,0,0.074949 -3482,3602:352,22,-65,0,0,0.074949 -3483,3602:353,23,-65,0,0,0.0749346 -3484,3602:354,24,-65,0,0,0.0749346 -3485,3602:455,25,-65,0,0,0.0749418 -3486,3602:456,26,-65,0,0,0.0749703 -3487,3602:457,27,-65,0,0,0.0749631 -3488,3602:458,28,-65,0,0,0.0749562 -3489,3602:459,29,-65,0,0,0.0749562 -3490,3603:350,30,-65,0,0,0.0749631 -3491,3603:351,31,-65,0,0,0.0749631 -3492,3603:352,32,-65,0,0,0.0750345 -3493,3603:353,33,-65,0,0,0.0773998 -3494,3603:455,35,-65,0,0,0.0754275 -3495,3603:456,36,-65,0,0,0.0754061 -3496,3603:457,37,-65,0,0,0.0750702 -3497,3603:458,38,-65,0,0,0.0750558 -3498,3603:459,39,-65,0,0,0.0751701 -3499,3604:350,40,-65,0,0,0.07512 -3500,3607:352,72,-65,0,0,0.0854231 -3501,3607:354,74,-65,0,0,0.0807361 -3502,3607:455,75,-65,0,0,0.0816328 -3503,3607:456,76,-65,0,0,0.082554 -3504,3607:457,77,-65,0,0,0.0845044 -3505,3607:458,78,-65,0,0,0.0881094 -3506,3615:456,156,-65,0,0,0.0768221 -3507,3615:457,157,-65,0,0,0.0751486 -3508,3615:458,158,-65,0,0,0.0751128 -3509,3615:459,159,-65,0,0,0.0750558 -3510,3616:350,160,-65,0,0,0.0750558 -3511,3616:351,161,-65,0,0,0.0750488 -3512,3616:352,162,-65,0,0,0.075063 -3513,3616:353,163,-65,0,0,0.0750702 -3514,3616:354,164,-65,0,0,0.0750702 -3515,3616:455,165,-65,0,0,0.075063 -3516,3616:456,166,-65,0,0,0.075063 -3517,3616:457,167,-65,0,0,0.075063 -3518,3616:458,168,-65,0,0,0.0750558 -3519,3616:459,169,-65,0,0,0.0750558 -3520,3617:350,170,-65,0,0,0.0750416 -3521,3617:351,171,-65,0,0,0.0750201 -3522,3617:352,172,-65,0,0,0.075006 -3523,3617:353,173,-65,0,0,0.0749988 -3524,3617:354,174,-65,0,0,0.0749846 -3525,3617:455,175,-65,0,0,0.0749846 -3526,3617:456,176,-65,0,0,0.0749916 -3527,3617:457,177,-65,0,0,0.075006 -3528,3617:458,178,-65,0,0,0.0750345 -3529,3617:459,179,-65,0,0,0.0750416 -3530,3618:350,180,-65,0,0,0.0750488 -3531,5618:140,-180,-64,0,0,0.0750558 -3532,5617:249,-179,-64,0,0,0.075063 -3533,5617:248,-178,-64,0,0,0.075063 -3534,5617:247,-177,-64,0,0,0.0750702 -3535,5617:246,-176,-64,0,0,0.0750702 -3536,5617:245,-175,-64,0,0,0.0750843 -3537,5617:144,-174,-64,0,0,0.0750773 -3538,5617:143,-173,-64,0,0,0.075063 -3539,5617:142,-172,-64,0,0,0.0750558 -3540,5617:141,-171,-64,0,0,0.0750488 -3541,5617:140,-170,-64,0,0,0.0750416 -3542,5616:249,-169,-64,0,0,0.0750273 -3543,5616:248,-168,-64,0,0,0.0750201 -3544,5616:247,-167,-64,0,0,0.0750131 -3545,5616:246,-166,-64,0,0,0.0749916 -3546,5616:245,-165,-64,0,0,0.0749846 -3547,5616:144,-164,-64,0,0,0.0749916 -3548,5616:143,-163,-64,0,0,0.0749988 -3549,5616:142,-162,-64,0,0,0.0750131 -3550,5616:141,-161,-64,0,0,0.0750345 -3551,5616:140,-160,-64,0,0,0.0750488 -3552,5615:249,-159,-64,0,0,0.0750558 -3553,5615:248,-158,-64,0,0,0.0750702 -3554,5615:247,-157,-64,0,0,0.0750843 -3555,5615:246,-156,-64,0,0,0.0750915 -3556,5615:245,-155,-64,0,0,0.0751059 -3557,5615:144,-154,-64,0,0,0.0751272 -3558,5615:143,-153,-64,0,0,0.0751416 -3559,5615:142,-152,-64,0,0,0.0751416 -3560,5615:141,-151,-64,0,0,0.075163 -3561,5615:140,-150,-64,0,0,0.0751558 -3562,5614:249,-149,-64,0,0,0.075163 -3563,5614:248,-148,-64,0,0,0.0751843 -3564,5614:247,-147,-64,0,0,0.0751771 -3565,5614:246,-146,-64,0,0,0.0751701 -3566,5614:245,-145,-64,0,0,0.0751701 -3567,5614:144,-144,-64,0,0,0.0751843 -3568,5614:143,-143,-64,0,0,0.0751843 -3569,5614:142,-142,-64,0,0,0.0751987 -3570,5614:141,-141,-64,0,0,0.0752415 -3571,5614:140,-140,-64,0,0,0.0751915 -3572,5613:249,-139,-64,0,0,0.0751701 -3573,5613:248,-138,-64,0,0,0.0753631 -3574,5613:247,-137,-64,0,0,0.0755926 -3575,5613:246,-136,-64,0,0,0.0752129 -3576,5613:245,-135,-64,0,0,0.0751987 -3577,5613:144,-134,-64,0,0,0.0754921 -3578,5613:143,-133,-64,0,0,0.0794943 -3579,5613:142,-132,-64,0,0,0.0803252 -3580,5613:141,-131,-64,0,0,0.0802569 -3581,5613:140,-130,-64,0,0,0.0779445 -3582,5612:249,-129,-64,0,0,0.0764659 -3583,5612:248,-128,-64,0,0,0.0764876 -3584,5612:247,-127,-64,0,0,0.0767929 -3585,5612:246,-126,-64,0,0,0.0769754 -3586,5612:245,-125,-64,0,0,0.0771799 -3587,5612:144,-124,-64,0,0,0.0778337 -3588,5612:143,-123,-64,0,0,0.0788203 -3589,5612:142,-122,-64,0,0,0.0782551 -3590,5612:141,-121,-64,0,0,0.0778042 -3591,5612:140,-120,-64,0,0,0.0768441 -3592,5611:249,-119,-64,0,0,0.076039 -3593,5611:248,-118,-64,0,0,0.0764006 -3594,5611:247,-117,-64,0,0,0.0788427 -3595,5611:246,-116,-64,0,0,0.0801433 -3596,5611:245,-115,-64,0,0,0.0808276 -3597,5611:144,-114,-64,0,0,0.0804162 -3598,5611:143,-113,-64,0,0,0.079577 -3599,5611:142,-112,-64,0,0,0.0799542 -3600,5611:141,-111,-64,0,0,0.0798408 -3601,5611:140,-110,-64,0,0,0.0809957 -3602,5610:249,-109,-64,0,0,0.080614 -3603,5610:248,-108,-64,0,0,0.0809957 -3604,5610:247,-107,-64,0,0,0.0796673 -3605,5610:246,-106,-64,0,0,0.0766765 -3606,5610:245,-105,-64,0,0,0.075837 -3607,5610:144,-104,-64,0,0,0.0759162 -3608,5610:143,-103,-64,0,0,0.0756932 -3609,5610:142,-102,-64,0,0,0.0750702 -3610,5610:141,-101,-64,0,0,0.0754993 -3611,5610:140,-100,-64,0,0,0.0777307 -3612,5609:249,-99,-64,0,0,0.0784405 -3613,5609:248,-98,-64,0,0,0.0770117 -3614,5609:247,-97,-64,0,0,0.0758225 -3615,5609:246,-96,-64,0,0,0.0751771 -3616,5609:245,-95,-64,0,0,0.0750273 -3617,5609:144,-94,-64,0,0,0.0750488 -3618,5609:143,-93,-64,0,0,0.0750987 -3619,5609:142,-92,-64,0,0,0.0750273 -3620,5609:141,-91,-64,0,0,0.0749775 -3621,5609:140,-90,-64,0,0,0.0749916 -3622,5608:249,-89,-64,0,0,0.0749916 -3623,5608:248,-88,-64,0,0,0.0750131 -3624,5608:247,-87,-64,0,0,0.0750273 -3625,5608:246,-86,-64,0,0,0.0750416 -3626,5608:245,-85,-64,0,0,0.075063 -3627,5608:144,-84,-64,0,0,0.075063 -3628,5608:143,-83,-64,0,0,0.0750702 -3629,5608:142,-82,-64,0,0,0.0750773 -3630,5608:141,-81,-64,0,0,0.0750843 -3631,5608:140,-80,-64,0,0,0.0750915 -3632,5607:249,-79,-64,0,0,0.0750843 -3633,5607:248,-78,-64,0,0,0.0750843 -3634,5607:247,-77,-64,0,0,0.0750987 -3635,5607:246,-76,-64,0,0,0.0751059 -3636,5607:245,-75,-64,0,0,0.075163 -3637,5607:144,-74,-64,0,0,0.0752559 -3638,5607:143,-73,-64,0,0,0.0753631 -3639,5607:142,-72,-64,0,0,0.0754921 -3640,5607:141,-71,-64,0,0,0.0755494 -3641,5607:140,-70,-64,0,0,0.0756787 -3642,5606:249,-69,-64,0,0,0.0768294 -3643,5606:248,-68,-64,0,0,0.0776644 -3644,5605:249,-59,-64,0,0,0.0753489 -3645,5605:248,-58,-64,0,0,0.0751128 -3646,5605:247,-57,-64,0,0,0.0750345 -3647,5605:246,-56,-64,0,0,0.0750345 -3648,5605:245,-55,-64,0,0,0.0750488 -3649,5605:144,-54,-64,0,0,0.0750416 -3650,5605:143,-53,-64,0,0,0.0750273 -3651,5605:142,-52,-64,0,0,0.0749988 -3652,5605:141,-51,-64,0,0,0.0749916 -3653,5605:140,-50,-64,0,0,0.0749916 -3654,5604:249,-49,-64,0,0,0.0749916 -3655,5604:248,-48,-64,0,0,0.0749846 -3656,5604:247,-47,-64,0,0,0.0749846 -3657,5604:246,-46,-64,0,0,0.0749846 -3658,5604:245,-45,-64,0,0,0.0749846 -3659,5604:144,-44,-64,0,0,0.0749775 -3660,5604:143,-43,-64,0,0,0.0749703 -3661,5604:142,-42,-64,0,0,0.0749631 -3662,5604:141,-41,-64,0,0,0.0749631 -3663,5604:140,-40,-64,0,0,0.0749631 -3664,5603:249,-39,-64,0,0,0.0749631 -3665,5603:248,-38,-64,0,0,0.0749631 -3666,5603:247,-37,-64,0,0,0.0749631 -3667,5603:246,-36,-64,0,0,0.0749631 -3668,5603:245,-35,-64,0,0,0.0749631 -3669,5603:144,-34,-64,0,0,0.0749631 -3670,5603:143,-33,-64,0,0,0.0749631 -3671,5603:142,-32,-64,0,0,0.0749562 -3672,5603:141,-31,-64,0,0,0.0749562 -3673,5603:140,-30,-64,0,0,0.074949 -3674,5602:249,-29,-64,0,0,0.0749562 -3675,5602:248,-28,-64,0,0,0.0749562 -3676,5602:247,-27,-64,0,0,0.0749562 -3677,5602:246,-26,-64,0,0,0.0749562 -3678,5602:245,-25,-64,0,0,0.074949 -3679,5602:144,-24,-64,0,0,0.074949 -3680,5602:143,-23,-64,0,0,0.0749418 -3681,5602:142,-22,-64,0,0,0.0749275 -3682,5602:141,-21,-64,0,0,0.0749275 -3683,5602:140,-20,-64,0,0,0.0749205 -3684,5601:249,-19,-64,0,0,0.0749133 -3685,5601:248,-18,-64,0,0,0.0749062 -3686,5601:247,-17,-64,0,0,0.0749062 -3687,5601:246,-16,-64,0,0,0.0749062 -3688,5601:245,-15,-64,0,0,0.0749062 -3689,5601:144,-14,-64,0,0,0.0749133 -3690,5601:143,-13,-64,0,0,0.0749133 -3691,5601:142,-12,-64,0,0,0.0749062 -3692,5601:141,-11,-64,0,0,0.074892 -3693,5601:140,-10,-64,0,0,0.0748636 -3694,5600:249,-9,-64,0,0,0.0748493 -3695,5600:248,-8,-64,0,0,0.0748564 -3696,5600:247,-7,-64,0,0,0.0748777 -3697,5600:246,-6,-64,0,0,0.0748705 -3698,5600:245,-5,-64,0,0,0.0748636 -3699,5600:144,-4,-64,0,0,0.0748849 -3700,5600:143,-3,-64,0,0,0.0748849 -3701,5600:142,-2,-64,0,0,0.0748636 -3702,5600:141,-1,-64,0,0,0.074828 -3703,3600:141,0,-64,0,0,0.0748137 -3704,3600:141,1,-64,0,0,0.0748137 -3705,3600:142,2,-64,0,0,0.0748349 -3706,3600:143,3,-64,0,0,0.0748777 -3707,3600:144,4,-64,0,0,0.0748849 -3708,3600:245,5,-64,0,0,0.0748636 -3709,3600:246,6,-64,0,0,0.0748493 -3710,3600:247,7,-64,0,0,0.0748349 -3711,3600:248,8,-64,0,0,0.0748208 -3712,3600:249,9,-64,0,0,0.0748636 -3713,3601:140,10,-64,0,0,0.0749062 -3714,3601:141,11,-64,0,0,0.074949 -3715,3601:142,12,-64,0,0,0.075006 -3716,3601:143,13,-64,0,0,0.0749846 -3717,3601:144,14,-64,0,0,0.0749703 -3718,3601:245,15,-64,0,0,0.0749418 -3719,3601:246,16,-64,0,0,0.0749562 -3720,3601:247,17,-64,0,0,0.0749631 -3721,3601:248,18,-64,0,0,0.074949 -3722,3601:249,19,-64,0,0,0.0749562 -3723,3602:140,20,-64,0,0,0.0749562 -3724,3602:141,21,-64,0,0,0.0749418 -3725,3602:142,22,-64,0,0,0.0749205 -3726,3602:143,23,-64,0,0,0.074899 -3727,3602:144,24,-64,0,0,0.0749062 -3728,3602:245,25,-64,0,0,0.0749133 -3729,3602:246,26,-64,0,0,0.0749346 -3730,3602:247,27,-64,0,0,0.0749346 -3731,3602:248,28,-64,0,0,0.074949 -3732,3602:249,29,-64,0,0,0.0749631 -3733,3603:140,30,-64,0,0,0.0749703 -3734,3603:141,31,-64,0,0,0.0749703 -3735,3603:142,32,-64,0,0,0.0750273 -3736,3603:143,33,-64,0,0,0.0751344 -3737,3603:144,34,-64,0,0,0.07512 -3738,3603:245,35,-64,0,0,0.0750702 -3739,3603:246,36,-64,0,0,0.0750702 -3740,3603:247,37,-64,0,0,0.0750702 -3741,3603:248,38,-64,0,0,0.075063 -3742,3603:249,39,-64,0,0,0.0750773 -3743,3604:140,40,-64,0,0,0.0750488 -3744,3604:141,41,-64,0,0,0.075063 -3745,3604:142,42,-64,0,0,0.0750915 -3746,3607:140,70,-64,0,0,0.0826319 -3747,3607:141,71,-64,0,0,0.07969 -3748,3607:142,72,-64,0,0,0.0793591 -3749,3607:144,74,-64,0,0,0.0794792 -3750,3607:245,75,-64,0,0,0.0795694 -3751,3607:246,76,-64,0,0,0.079871 -3752,3607:247,77,-64,0,0,0.0808427 -3753,3607:248,78,-64,0,0,0.0858415 -3754,3607:249,79,-64,0,0,0.091212 -3755,3614:249,149,-64,0,0,0.0833198 -3756,3615:140,150,-64,0,0,0.0818642 -3757,3615:141,151,-64,0,0,0.0815327 -3758,3615:142,152,-64,0,0,0.0800599 -3759,3615:143,153,-64,0,0,0.0774806 -3760,3615:144,154,-64,0,0,0.0758658 -3761,3615:245,155,-64,0,0,0.0755135 -3762,3615:246,156,-64,0,0,0.075063 -3763,3615:247,157,-64,0,0,0.0750773 -3764,3615:248,158,-64,0,0,0.0750702 -3765,3615:249,159,-64,0,0,0.0750488 -3766,3616:140,160,-64,0,0,0.0750273 -3767,3616:141,161,-64,0,0,0.0750273 -3768,3616:142,162,-64,0,0,0.0750131 -3769,3616:143,163,-64,0,0,0.0750345 -3770,3616:144,164,-64,0,0,0.075063 -3771,3616:245,165,-64,0,0,0.0750416 -3772,3616:246,166,-64,0,0,0.0750488 -3773,3616:247,167,-64,0,0,0.0750488 -3774,3616:248,168,-64,0,0,0.0750416 -3775,3616:249,169,-64,0,0,0.0750416 -3776,3617:140,170,-64,0,0,0.0750345 -3777,3617:141,171,-64,0,0,0.0750273 -3778,3617:142,172,-64,0,0,0.0750131 -3779,3617:143,173,-64,0,0,0.075006 -3780,3617:144,174,-64,0,0,0.0749988 -3781,3617:245,175,-64,0,0,0.0750131 -3782,3617:246,176,-64,0,0,0.0750201 -3783,3617:247,177,-64,0,0,0.0750273 -3784,3617:248,178,-64,0,0,0.0750345 -3785,3617:249,179,-64,0,0,0.0750488 -3786,3618:140,180,-64,0,0,0.0750558 -3787,5618:130,-180,-63,0,0,0.0750558 -3788,5617:239,-179,-63,0,0,0.075063 -3789,5617:238,-178,-63,0,0,0.075063 -3790,5617:237,-177,-63,0,0,0.075063 -3791,5617:236,-176,-63,0,0,0.0750915 -3792,5617:235,-175,-63,0,0,0.0751128 -3793,5617:134,-174,-63,0,0,0.0750843 -3794,5617:133,-173,-63,0,0,0.075063 -3795,5617:132,-172,-63,0,0,0.0750558 -3796,5617:131,-171,-63,0,0,0.0750416 -3797,5617:130,-170,-63,0,0,0.0750416 -3798,5616:239,-169,-63,0,0,0.0750345 -3799,5616:238,-168,-63,0,0,0.0750273 -3800,5616:237,-167,-63,0,0,0.0750201 -3801,5616:236,-166,-63,0,0,0.075006 -3802,5616:235,-165,-63,0,0,0.0749988 -3803,5616:134,-164,-63,0,0,0.075006 -3804,5616:133,-163,-63,0,0,0.0750201 -3805,5616:132,-162,-63,0,0,0.0750345 -3806,5616:131,-161,-63,0,0,0.0750488 -3807,5616:130,-160,-63,0,0,0.075063 -3808,5615:239,-159,-63,0,0,0.0750702 -3809,5615:238,-158,-63,0,0,0.0750773 -3810,5615:237,-157,-63,0,0,0.0750843 -3811,5615:236,-156,-63,0,0,0.0750915 -3812,5615:235,-155,-63,0,0,0.0751059 -3813,5615:134,-154,-63,0,0,0.07512 -3814,5615:133,-153,-63,0,0,0.0751416 -3815,5615:132,-152,-63,0,0,0.0751558 -3816,5615:131,-151,-63,0,0,0.075163 -3817,5615:130,-150,-63,0,0,0.0751701 -3818,5614:239,-149,-63,0,0,0.075163 -3819,5614:238,-148,-63,0,0,0.0751771 -3820,5614:237,-147,-63,0,0,0.0751771 -3821,5614:236,-146,-63,0,0,0.0752057 -3822,5614:235,-145,-63,0,0,0.0752201 -3823,5614:134,-144,-63,0,0,0.0751915 -3824,5614:133,-143,-63,0,0,0.0752415 -3825,5614:132,-142,-63,0,0,0.0754779 -3826,5614:131,-141,-63,0,0,0.0773559 -3827,5614:130,-140,-63,0,0,0.0762918 -3828,5613:239,-139,-63,0,0,0.0759956 -3829,5613:238,-138,-63,0,0,0.076234 -3830,5613:237,-137,-63,0,0,0.0762918 -3831,5613:236,-136,-63,0,0,0.0760245 -3832,5613:235,-135,-63,0,0,0.0758443 -3833,5613:134,-134,-63,0,0,0.0752844 -3834,5613:133,-133,-63,0,0,0.0756213 -3835,5613:132,-132,-63,0,0,0.0794792 -3836,5613:131,-131,-63,0,0,0.0815017 -3837,5613:130,-130,-63,0,0,0.0837208 -3838,5612:239,-129,-63,0,0,0.0777084 -3839,5612:238,-128,-63,0,0,0.0780552 -3840,5612:237,-127,-63,0,0,0.0810952 -3841,5612:236,-126,-63,0,0,0.0799164 -3842,5612:235,-125,-63,0,0,0.0789621 -3843,5612:134,-124,-63,0,0,0.0798256 -3844,5612:133,-123,-63,0,0,0.0796599 -3845,5612:132,-122,-63,0,0,0.0788427 -3846,5612:131,-121,-63,0,0,0.0789472 -3847,5612:130,-120,-63,0,0,0.0788351 -3848,5611:239,-119,-63,0,0,0.0790816 -3849,5611:238,-118,-63,0,0,0.0799314 -3850,5611:237,-117,-63,0,0,0.0799088 -3851,5611:236,-116,-63,0,0,0.0799542 -3852,5611:235,-115,-63,0,0,0.0807589 -3853,5611:134,-114,-63,0,0,0.0820496 -3854,5611:133,-113,-63,0,0,0.0816636 -3855,5611:132,-112,-63,0,0,0.0810415 -3856,5611:131,-111,-63,0,0,0.0808048 -3857,5611:130,-110,-63,0,0,0.081302 -3858,5610:239,-109,-63,0,0,0.0811258 -3859,5610:238,-108,-63,0,0,0.081571 -3860,5610:237,-107,-63,0,0,0.0825851 -3861,5610:236,-106,-63,0,0,0.0837367 -3862,5610:235,-105,-63,0,0,0.0824918 -3863,5610:134,-104,-63,0,0,0.082819 -3864,5610:133,-103,-63,0,0,0.0817175 -3865,5610:132,-102,-63,0,0,0.0810569 -3866,5610:131,-101,-63,0,0,0.0793366 -3867,5610:130,-100,-63,0,0,0.0780405 -3868,5609:239,-99,-63,0,0,0.077532 -3869,5609:238,-98,-63,0,0,0.0752129 -3870,5609:237,-97,-63,0,0,0.0750987 -3871,5609:236,-96,-63,0,0,0.0750987 -3872,5609:235,-95,-63,0,0,0.0750416 -3873,5609:134,-94,-63,0,0,0.0750915 -3874,5609:133,-93,-63,0,0,0.0752631 -3875,5609:132,-92,-63,0,0,0.0753272 -3876,5609:131,-91,-63,0,0,0.0751272 -3877,5609:130,-90,-63,0,0,0.075006 -3878,5608:239,-89,-63,0,0,0.0750345 -3879,5608:238,-88,-63,0,0,0.0750131 -3880,5608:237,-87,-63,0,0,0.0750131 -3881,5608:236,-86,-63,0,0,0.0750345 -3882,5608:235,-85,-63,0,0,0.0750345 -3883,5608:134,-84,-63,0,0,0.0750488 -3884,5608:133,-83,-63,0,0,0.0750558 -3885,5608:132,-82,-63,0,0,0.0750915 -3886,5608:131,-81,-63,0,0,0.0750843 -3887,5608:130,-80,-63,0,0,0.0750702 -3888,5607:239,-79,-63,0,0,0.075063 -3889,5607:238,-78,-63,0,0,0.0750702 -3890,5607:237,-77,-63,0,0,0.075063 -3891,5607:236,-76,-63,0,0,0.0750702 -3892,5607:235,-75,-63,0,0,0.0750558 -3893,5607:134,-74,-63,0,0,0.075313 -3894,5607:133,-73,-63,0,0,0.075442 -3895,5607:132,-72,-63,0,0,0.0756141 -3896,5607:131,-71,-63,0,0,0.0761834 -3897,5607:130,-70,-63,0,0,0.076713 -3898,5606:238,-68,-63,0,0,0.0829126 -3899,5606:130,-60,-63,0,0,0.0759523 -3900,5605:239,-59,-63,0,0,0.0754275 -3901,5605:238,-58,-63,0,0,0.0751344 -3902,5605:237,-57,-63,0,0,0.0750416 -3903,5605:236,-56,-63,0,0,0.0750345 -3904,5605:235,-55,-63,0,0,0.0750416 -3905,5605:134,-54,-63,0,0,0.0750416 -3906,5605:133,-53,-63,0,0,0.0750201 -3907,5605:132,-52,-63,0,0,0.0749988 -3908,5605:131,-51,-63,0,0,0.0749988 -3909,5605:130,-50,-63,0,0,0.0749916 -3910,5604:239,-49,-63,0,0,0.0749916 -3911,5604:238,-48,-63,0,0,0.0749846 -3912,5604:237,-47,-63,0,0,0.0749775 -3913,5604:236,-46,-63,0,0,0.0749775 -3914,5604:235,-45,-63,0,0,0.0749775 -3915,5604:134,-44,-63,0,0,0.0749775 -3916,5604:133,-43,-63,0,0,0.0749703 -3917,5604:132,-42,-63,0,0,0.0749703 -3918,5604:131,-41,-63,0,0,0.0749703 -3919,5604:130,-40,-63,0,0,0.0749703 -3920,5603:239,-39,-63,0,0,0.0749703 -3921,5603:238,-38,-63,0,0,0.0749631 -3922,5603:237,-37,-63,0,0,0.0749631 -3923,5603:236,-36,-63,0,0,0.0749631 -3924,5603:235,-35,-63,0,0,0.0749631 -3925,5603:134,-34,-63,0,0,0.0749631 -3926,5603:133,-33,-63,0,0,0.0749562 -3927,5603:132,-32,-63,0,0,0.0749562 -3928,5603:131,-31,-63,0,0,0.0749562 -3929,5603:130,-30,-63,0,0,0.0749631 -3930,5602:239,-29,-63,0,0,0.0749631 -3931,5602:238,-28,-63,0,0,0.0749631 -3932,5602:237,-27,-63,0,0,0.0749631 -3933,5602:236,-26,-63,0,0,0.0749631 -3934,5602:235,-25,-63,0,0,0.0749562 -3935,5602:134,-24,-63,0,0,0.0749562 -3936,5602:133,-23,-63,0,0,0.074949 -3937,5602:132,-22,-63,0,0,0.0749418 -3938,5602:131,-21,-63,0,0,0.0749346 -3939,5602:130,-20,-63,0,0,0.0749275 -3940,5601:239,-19,-63,0,0,0.0749205 -3941,5601:238,-18,-63,0,0,0.0749062 -3942,5601:237,-17,-63,0,0,0.074899 -3943,5601:236,-16,-63,0,0,0.074892 -3944,5601:235,-15,-63,0,0,0.0748849 -3945,5601:134,-14,-63,0,0,0.074892 -3946,5601:133,-13,-63,0,0,0.074892 -3947,5601:132,-12,-63,0,0,0.0748849 -3948,5601:131,-11,-63,0,0,0.0748777 -3949,5601:130,-10,-63,0,0,0.0748705 -3950,5600:239,-9,-63,0,0,0.0748705 -3951,5600:238,-8,-63,0,0,0.0748636 -3952,5600:237,-7,-63,0,0,0.0748564 -3953,5600:236,-6,-63,0,0,0.0748493 -3954,5600:235,-5,-63,0,0,0.0748349 -3955,5600:134,-4,-63,0,0,0.074828 -3956,5600:133,-3,-63,0,0,0.0748137 -3957,5600:132,-2,-63,0,0,0.0748137 -3958,5600:131,-1,-63,0,0,0.074828 -3959,3600:131,0,-63,0,0,0.0748349 -3960,3600:131,1,-63,0,0,0.0748705 -3961,3600:132,2,-63,0,0,0.0748349 -3962,3600:133,3,-63,0,0,0.0748208 -3963,3600:134,4,-63,0,0,0.0748208 -3964,3600:235,5,-63,0,0,0.074828 -3965,3600:236,6,-63,0,0,0.074828 -3966,3600:237,7,-63,0,0,0.0748564 -3967,3600:238,8,-63,0,0,0.0748493 -3968,3600:239,9,-63,0,0,0.0748564 -3969,3601:130,10,-63,0,0,0.074899 -3970,3601:131,11,-63,0,0,0.0749275 -3971,3601:132,12,-63,0,0,0.074949 -3972,3601:133,13,-63,0,0,0.0749562 -3973,3601:134,14,-63,0,0,0.0749631 -3974,3601:235,15,-63,0,0,0.0749418 -3975,3601:236,16,-63,0,0,0.0749418 -3976,3601:237,17,-63,0,0,0.0749346 -3977,3601:238,18,-63,0,0,0.0749133 -3978,3601:239,19,-63,0,0,0.0749275 -3979,3602:130,20,-63,0,0,0.0749205 -3980,3602:131,21,-63,0,0,0.0749133 -3981,3602:132,22,-63,0,0,0.0749133 -3982,3602:133,23,-63,0,0,0.0749205 -3983,3602:134,24,-63,0,0,0.0749205 -3984,3602:235,25,-63,0,0,0.0749205 -3985,3602:236,26,-63,0,0,0.0749275 -3986,3602:237,27,-63,0,0,0.0749275 -3987,3602:238,28,-63,0,0,0.0749346 -3988,3602:239,29,-63,0,0,0.0749562 -3989,3603:130,30,-63,0,0,0.0749562 -3990,3603:131,31,-63,0,0,0.0749775 -3991,3603:132,32,-63,0,0,0.0749916 -3992,3603:133,33,-63,0,0,0.0750345 -3993,3603:134,34,-63,0,0,0.0750345 -3994,3603:235,35,-63,0,0,0.0750416 -3995,3603:236,36,-63,0,0,0.0750702 -3996,3603:237,37,-63,0,0,0.0750488 -3997,3603:238,38,-63,0,0,0.0750345 -3998,3603:239,39,-63,0,0,0.0750345 -3999,3604:130,40,-63,0,0,0.0750416 -4000,3604:131,41,-63,0,0,0.0750558 -4001,3604:132,42,-63,0,0,0.0750558 -4002,3604:133,43,-63,0,0,0.0750488 -4003,3604:134,44,-63,0,0,0.0750558 -4004,3604:235,45,-63,0,0,0.0750201 -4005,3604:236,46,-63,0,0,0.0747568 -4006,3604:238,48,-63,0,0,0.0815402 -4007,3606:235,65,-63,0,0,0.0795694 -4008,3606:236,66,-63,0,0,0.0792915 -4009,3606:237,67,-63,0,0,0.0787159 -4010,3606:238,68,-63,0,0,0.0776718 -4011,3606:239,69,-63,0,0,0.0785446 -4012,3607:130,70,-63,0,0,0.07751 -4013,3607:131,71,-63,0,0,0.0774658 -4014,3607:132,72,-63,0,0,0.0777307 -4015,3607:134,74,-63,0,0,0.0773852 -4016,3607:235,75,-63,0,0,0.0774584 -4017,3607:236,76,-63,0,0,0.0788276 -4018,3607:237,77,-63,0,0,0.0794342 -4019,3607:238,78,-63,0,0,0.081302 -4020,3607:239,79,-63,0,0,0.0837367 -4021,3608:130,80,-63,0,0,0.0864804 -4022,3608:131,81,-63,0,0,0.0908889 -4023,3614:236,146,-63,0,0,0.0848948 -4024,3614:237,147,-63,0,0,0.0829987 -4025,3614:238,148,-63,0,0,0.0812406 -4026,3614:239,149,-63,0,0,0.0810415 -4027,3615:130,150,-63,0,0,0.0785893 -4028,3615:131,151,-63,0,0,0.0766257 -4029,3615:132,152,-63,0,0,0.0750843 -4030,3615:133,153,-63,0,0,0.0750987 -4031,3615:134,154,-63,0,0,0.0750987 -4032,3615:235,155,-63,0,0,0.0750843 -4033,3615:236,156,-63,0,0,0.0750987 -4034,3615:237,157,-63,0,0,0.0750843 -4035,3615:238,158,-63,0,0,0.0750273 -4036,3615:239,159,-63,0,0,0.0749988 -4037,3616:130,160,-63,0,0,0.075006 -4038,3616:131,161,-63,0,0,0.0750131 -4039,3616:132,162,-63,0,0,0.0750201 -4040,3616:133,163,-63,0,0,0.0750201 -4041,3616:134,164,-63,0,0,0.0749346 -4042,3616:235,165,-63,0,0,0.0751843 -4043,3616:236,166,-63,0,0,0.0750416 -4044,3616:237,167,-63,0,0,0.0750345 -4045,3616:238,168,-63,0,0,0.0750345 -4046,3616:239,169,-63,0,0,0.0750345 -4047,3617:130,170,-63,0,0,0.0750273 -4048,3617:131,171,-63,0,0,0.0750273 -4049,3617:132,172,-63,0,0,0.0750273 -4050,3617:133,173,-63,0,0,0.0750273 -4051,3617:134,174,-63,0,0,0.0750201 -4052,3617:235,175,-63,0,0,0.0750131 -4053,3617:236,176,-63,0,0,0.0750345 -4054,3617:237,177,-63,0,0,0.0750416 -4055,3617:238,178,-63,0,0,0.0750488 -4056,3617:239,179,-63,0,0,0.0750558 -4057,3618:130,180,-63,0,0,0.0750558 -4058,5618:120,-180,-62,0,0,0.0750416 -4059,5617:229,-179,-62,0,0,0.0750416 -4060,5617:228,-178,-62,0,0,0.075063 -4061,5617:227,-177,-62,0,0,0.0751059 -4062,5617:226,-176,-62,0,0,0.0752057 -4063,5617:225,-175,-62,0,0,0.07512 -4064,5617:124,-174,-62,0,0,0.0750773 -4065,5617:123,-173,-62,0,0,0.075063 -4066,5617:122,-172,-62,0,0,0.0750488 -4067,5617:121,-171,-62,0,0,0.0750416 -4068,5617:120,-170,-62,0,0,0.0750273 -4069,5616:229,-169,-62,0,0,0.0750201 -4070,5616:228,-168,-62,0,0,0.0750131 -4071,5616:227,-167,-62,0,0,0.0750131 -4072,5616:226,-166,-62,0,0,0.0750131 -4073,5616:225,-165,-62,0,0,0.0750131 -4074,5616:124,-164,-62,0,0,0.0750201 -4075,5616:123,-163,-62,0,0,0.0750345 -4076,5616:122,-162,-62,0,0,0.0750488 -4077,5616:121,-161,-62,0,0,0.0750488 -4078,5616:120,-160,-62,0,0,0.075063 -4079,5615:229,-159,-62,0,0,0.0750773 -4080,5615:228,-158,-62,0,0,0.0750843 -4081,5615:227,-157,-62,0,0,0.0750915 -4082,5615:226,-156,-62,0,0,0.0750987 -4083,5615:225,-155,-62,0,0,0.0751128 -4085,5615:123,-153,-62,0,0,0.0751344 -4086,5615:122,-152,-62,0,0,0.0751486 -4087,5615:121,-151,-62,0,0,0.0751558 -4088,5615:120,-150,-62,0,0,0.075163 -4089,5614:229,-149,-62,0,0,0.0751701 -4090,5614:228,-148,-62,0,0,0.0751843 -4091,5614:227,-147,-62,0,0,0.0751843 -4092,5614:226,-146,-62,0,0,0.0751987 -4093,5614:225,-145,-62,0,0,0.0753703 -4094,5614:124,-144,-62,0,0,0.0751987 -4095,5614:123,-143,-62,0,0,0.0752631 -4096,5614:122,-142,-62,0,0,0.0757435 -4097,5614:121,-141,-62,0,0,0.0783144 -4098,5614:120,-140,-62,0,0,0.0788128 -4099,5613:229,-139,-62,0,0,0.0773118 -4100,5613:228,-138,-62,0,0,0.0775465 -4101,5613:227,-137,-62,0,0,0.0817175 -4102,5613:226,-136,-62,0,0,0.0809803 -4103,5613:225,-135,-62,0,0,0.082983 -4104,5613:124,-134,-62,0,0,0.0855597 -4105,5613:123,-133,-62,0,0,0.0837997 -4106,5613:122,-132,-62,0,0,0.078448 -4107,5613:121,-131,-62,0,0,0.0803405 -4108,5613:120,-130,-62,0,0,0.0836184 -4109,5612:229,-129,-62,0,0,0.0854633 -4110,5612:228,-128,-62,0,0,0.0803252 -4111,5612:227,-127,-62,0,0,0.0811716 -4112,5612:226,-126,-62,0,0,0.0819955 -4113,5612:225,-125,-62,0,0,0.0813559 -4114,5612:124,-124,-62,0,0,0.0810263 -4115,5612:123,-123,-62,0,0,0.0807817 -4116,5612:122,-122,-62,0,0,0.0809192 -4117,5612:121,-121,-62,0,0,0.0812254 -4118,5612:120,-120,-62,0,0,0.0816481 -4119,5611:229,-119,-62,0,0,0.0829987 -4120,5611:228,-118,-62,0,0,0.0849747 -4121,5611:227,-117,-62,0,0,0.0844726 -4122,5611:226,-116,-62,0,0,0.0840287 -4123,5611:225,-115,-62,0,0,0.0869933 -4124,5611:124,-114,-62,0,0,0.0839655 -4125,5611:123,-113,-62,0,0,0.0840526 -4126,5611:122,-112,-62,0,0,0.0841712 -4127,5611:121,-111,-62,0,0,0.0825308 -4128,5611:120,-110,-62,0,0,0.0823131 -4129,5610:229,-109,-62,0,0,0.0817405 -4130,5610:228,-108,-62,0,0,0.0815557 -4131,5610:227,-107,-62,0,0,0.083116 -4132,5610:226,-106,-62,0,0,0.0863913 -4133,5610:225,-105,-62,0,0,0.0846556 -4134,5610:124,-104,-62,0,0,0.0829205 -4135,5610:123,-103,-62,0,0,0.0817947 -4136,5610:122,-102,-62,0,0,0.0813252 -4137,5610:121,-101,-62,0,0,0.0804847 -4138,5610:120,-100,-62,0,0,0.0766983 -4139,5609:229,-99,-62,0,0,0.0765457 -4140,5609:228,-98,-62,0,0,0.0750345 -4141,5609:227,-97,-62,0,0,0.0750702 -4142,5609:226,-96,-62,0,0,0.0750488 -4143,5609:225,-95,-62,0,0,0.0754492 -4144,5609:124,-94,-62,0,0,0.0756285 -4145,5609:123,-93,-62,0,0,0.0755998 -4146,5609:122,-92,-62,0,0,0.0752916 -4147,5609:121,-91,-62,0,0,0.0753489 -4148,5609:120,-90,-62,0,0,0.0751771 -4149,5608:229,-89,-62,0,0,0.0750773 -4150,5608:228,-88,-62,0,0,0.0751344 -4151,5608:227,-87,-62,0,0,0.0752986 -4152,5608:226,-86,-62,0,0,0.0750488 -4153,5608:225,-85,-62,0,0,0.075729 -4154,5608:124,-84,-62,0,0,0.075837 -4155,5608:123,-83,-62,0,0,0.0758515 -4156,5608:122,-82,-62,0,0,0.0758298 -4157,5608:121,-81,-62,0,0,0.0763427 -4158,5608:120,-80,-62,0,0,0.0764803 -4159,5607:229,-79,-62,0,0,0.0766912 -4160,5607:228,-78,-62,0,0,0.0772899 -4161,5607:227,-77,-62,0,0,0.0756787 -4162,5607:226,-76,-62,0,0,0.0754061 -4163,5607:225,-75,-62,0,0,0.0756787 -4164,5607:124,-74,-62,0,0,0.0764949 -4165,5607:123,-73,-62,0,0,0.0765457 -4166,5607:122,-72,-62,0,0,0.0772092 -4167,5607:121,-71,-62,0,0,0.0769462 -4168,5607:120,-70,-62,0,0,0.0766912 -4169,5606:229,-69,-62,0,0,0.0785299 -4170,5606:120,-60,-62,0,0,0.0774217 -4171,5605:229,-59,-62,0,0,0.0752487 -4172,5605:228,-58,-62,0,0,0.0751344 -4173,5605:227,-57,-62,0,0,0.0751128 -4174,5605:226,-56,-62,0,0,0.0750558 -4175,5605:225,-55,-62,0,0,0.0750416 -4176,5605:124,-54,-62,0,0,0.0750488 -4177,5605:123,-53,-62,0,0,0.0750273 -4178,5605:122,-52,-62,0,0,0.075006 -4179,5605:121,-51,-62,0,0,0.0749988 -4180,5605:120,-50,-62,0,0,0.0749916 -4181,5604:229,-49,-62,0,0,0.0749846 -4182,5604:228,-48,-62,0,0,0.0749846 -4183,5604:227,-47,-62,0,0,0.0749775 -4184,5604:226,-46,-62,0,0,0.0749703 -4185,5604:225,-45,-62,0,0,0.0749775 -4186,5604:124,-44,-62,0,0,0.0749703 -4187,5604:123,-43,-62,0,0,0.0749703 -4188,5604:122,-42,-62,0,0,0.0749775 -4189,5604:121,-41,-62,0,0,0.0749775 -4190,5604:120,-40,-62,0,0,0.0749703 -4191,5603:229,-39,-62,0,0,0.0749703 -4192,5603:228,-38,-62,0,0,0.0749631 -4193,5603:227,-37,-62,0,0,0.0749631 -4194,5603:226,-36,-62,0,0,0.0749631 -4195,5603:225,-35,-62,0,0,0.0749631 -4196,5603:124,-34,-62,0,0,0.0749631 -4197,5603:123,-33,-62,0,0,0.0749631 -4198,5603:122,-32,-62,0,0,0.0749631 -4199,5603:121,-31,-62,0,0,0.0749703 -4200,5603:120,-30,-62,0,0,0.0749631 -4201,5602:229,-29,-62,0,0,0.0749631 -4202,5602:228,-28,-62,0,0,0.0749631 -4203,5602:227,-27,-62,0,0,0.0749631 -4204,5602:226,-26,-62,0,0,0.0749631 -4205,5602:225,-25,-62,0,0,0.0749631 -4206,5602:124,-24,-62,0,0,0.0749562 -4207,5602:123,-23,-62,0,0,0.074949 -4208,5602:122,-22,-62,0,0,0.074949 -4209,5602:121,-21,-62,0,0,0.0749346 -4210,5602:120,-20,-62,0,0,0.0749275 -4211,5601:229,-19,-62,0,0,0.0749205 -4212,5601:228,-18,-62,0,0,0.0749062 -4213,5601:227,-17,-62,0,0,0.074892 -4214,5601:226,-16,-62,0,0,0.0748777 -4215,5601:225,-15,-62,0,0,0.0748705 -4216,5601:124,-14,-62,0,0,0.0748705 -4217,5601:123,-13,-62,0,0,0.0748777 -4218,5601:122,-12,-62,0,0,0.0748777 -4219,5601:121,-11,-62,0,0,0.0748705 -4220,5601:120,-10,-62,0,0,0.0748705 -4221,5600:229,-9,-62,0,0,0.0748636 -4222,5600:228,-8,-62,0,0,0.0748636 -4223,5600:227,-7,-62,0,0,0.0748636 -4224,5600:226,-6,-62,0,0,0.0748705 -4225,5600:225,-5,-62,0,0,0.0748705 -4226,5600:124,-4,-62,0,0,0.0748564 -4227,5600:123,-3,-62,0,0,0.0748421 -4228,5600:122,-2,-62,0,0,0.0748349 -4229,5600:121,-1,-62,0,0,0.0748349 -4230,3600:121,0,-62,0,0,0.0748421 -4231,3600:121,1,-62,0,0,0.0748493 -4232,3600:122,2,-62,0,0,0.074828 -4233,3600:123,3,-62,0,0,0.0748349 -4234,3600:124,4,-62,0,0,0.074828 -4235,3600:225,5,-62,0,0,0.0748564 -4236,3600:226,6,-62,0,0,0.074828 -4237,3600:227,7,-62,0,0,0.0748421 -4238,3600:228,8,-62,0,0,0.0748564 -4239,3600:229,9,-62,0,0,0.0748705 -4240,3601:120,10,-62,0,0,0.0748777 -4241,3601:121,11,-62,0,0,0.0749133 -4242,3601:122,12,-62,0,0,0.0749205 -4243,3601:123,13,-62,0,0,0.0749205 -4244,3601:124,14,-62,0,0,0.0749133 -4245,3601:225,15,-62,0,0,0.0749133 -4246,3601:226,16,-62,0,0,0.0749133 -4247,3601:227,17,-62,0,0,0.0749062 -4248,3601:228,18,-62,0,0,0.0749062 -4249,3601:229,19,-62,0,0,0.0749062 -4250,3602:120,20,-62,0,0,0.074899 -4251,3602:121,21,-62,0,0,0.0749062 -4252,3602:122,22,-62,0,0,0.0749133 -4253,3602:123,23,-62,0,0,0.0749133 -4254,3602:124,24,-62,0,0,0.0749062 -4255,3602:225,25,-62,0,0,0.0749133 -4256,3602:226,26,-62,0,0,0.0749133 -4257,3602:227,27,-62,0,0,0.0749133 -4258,3602:228,28,-62,0,0,0.0749275 -4259,3602:229,29,-62,0,0,0.0749418 -4260,3603:120,30,-62,0,0,0.0749631 -4261,3603:121,31,-62,0,0,0.0749775 -4262,3603:122,32,-62,0,0,0.0749846 -4263,3603:123,33,-62,0,0,0.0750131 -4264,3603:124,34,-62,0,0,0.0750416 -4265,3603:225,35,-62,0,0,0.0750345 -4266,3603:226,36,-62,0,0,0.0749846 -4267,3603:227,37,-62,0,0,0.0749916 -4268,3603:228,38,-62,0,0,0.0749988 -4269,3603:229,39,-62,0,0,0.075006 -4270,3604:120,40,-62,0,0,0.0750201 -4271,3604:121,41,-62,0,0,0.0750131 -4272,3604:122,42,-62,0,0,0.0750131 -4273,3604:123,43,-62,0,0,0.0750201 -4274,3604:124,44,-62,0,0,0.0750201 -4275,3604:225,45,-62,0,0,0.075006 -4276,3604:226,46,-62,0,0,0.0749988 -4277,3604:227,47,-62,0,0,0.0766983 -4278,3604:228,48,-62,0,0,0.0794943 -4279,3605:120,50,-62,0,0,0.0826631 -4280,3605:228,58,-62,0,0,0.0752844 -4281,3605:229,59,-62,0,0,0.0751915 -4282,3606:120,60,-62,0,0,0.0751128 -4283,3606:121,61,-62,0,0,0.0752343 -4284,3606:122,62,-62,0,0,0.0756141 -4285,3606:123,63,-62,0,0,0.0759956 -4286,3606:124,64,-62,0,0,0.077063 -4287,3606:225,65,-62,0,0,0.0767567 -4288,3606:226,66,-62,0,0,0.0762918 -4289,3606:227,67,-62,0,0,0.0752631 -4290,3606:228,68,-62,0,0,0.0748849 -4291,3606:229,69,-62,0,0,0.0749631 -4292,3607:120,70,-62,0,0,0.0749846 -4293,3607:121,71,-62,0,0,0.0751059 -4294,3607:122,72,-62,0,0,0.0750558 -4295,3607:124,74,-62,0,0,0.0752415 -4296,3607:225,75,-62,0,0,0.0774584 -4297,3607:226,76,-62,0,0,0.0774439 -4298,3607:227,77,-62,0,0,0.077797 -4299,3607:228,78,-62,0,0,0.0788502 -4300,3607:229,79,-62,0,0,0.0791417 -4301,3608:120,80,-62,0,0,0.0805 -4302,3608:121,81,-62,0,0,0.0830691 -4303,3608:122,82,-62,0,0,0.0904737 -4304,3614:225,145,-62,0,0,0.0787978 -4305,3614:226,146,-62,0,0,0.0792615 -4306,3614:227,147,-62,0,0,0.0751128 -4307,3614:228,148,-62,0,0,0.07512 -4308,3614:229,149,-62,0,0,0.075063 -4309,3615:120,150,-62,0,0,0.0750702 -4310,3615:121,151,-62,0,0,0.0750773 -4311,3615:122,152,-62,0,0,0.0750915 -4312,3615:123,153,-62,0,0,0.0750773 -4313,3615:124,154,-62,0,0,0.0750773 -4314,3615:225,155,-62,0,0,0.075063 -4315,3615:226,156,-62,0,0,0.0750488 -4316,3615:227,157,-62,0,0,0.0750201 -4317,3615:228,158,-62,0,0,0.0749988 -4318,3615:229,159,-62,0,0,0.075006 -4319,3616:120,160,-62,0,0,0.0750201 -4320,3616:121,161,-62,0,0,0.0750131 -4321,3616:122,162,-62,0,0,0.075006 -4322,3616:123,163,-62,0,0,0.075006 -4323,3616:124,164,-62,0,0,0.0750345 -4324,3616:225,165,-62,0,0,0.0750416 -4325,3616:226,166,-62,0,0,0.0750488 -4326,3616:227,167,-62,0,0,0.0750488 -4327,3616:228,168,-62,0,0,0.0750416 -4328,3616:229,169,-62,0,0,0.0750345 -4329,3617:120,170,-62,0,0,0.0750273 -4330,3617:121,171,-62,0,0,0.0750345 -4331,3617:122,172,-62,0,0,0.0750416 -4332,3617:123,173,-62,0,0,0.0750416 -4333,3617:124,174,-62,0,0,0.0750416 -4334,3617:225,175,-62,0,0,0.0750345 -4335,3617:226,176,-62,0,0,0.0750273 -4336,3617:227,177,-62,0,0,0.0750273 -4337,3617:228,178,-62,0,0,0.0750488 -4338,3617:229,179,-62,0,0,0.0750488 -4339,3618:120,180,-62,0,0,0.0750416 -4340,5618:110,-180,-61,0,0,0.075063 -4341,5617:219,-179,-61,0,0,0.07512 -4342,5617:218,-178,-61,0,0,0.0752986 -4343,5617:217,-177,-61,0,0,0.0757507 -4344,5617:216,-176,-61,0,0,0.0755854 -4345,5617:215,-175,-61,0,0,0.0752916 -4346,5617:114,-174,-61,0,0,0.0750702 -4347,5617:113,-173,-61,0,0,0.075063 -4348,5617:112,-172,-61,0,0,0.0750416 -4349,5617:111,-171,-61,0,0,0.0750273 -4350,5617:110,-170,-61,0,0,0.0750131 -4351,5616:219,-169,-61,0,0,0.075006 -4352,5616:218,-168,-61,0,0,0.0749988 -4353,5616:217,-167,-61,0,0,0.0749988 -4354,5616:216,-166,-61,0,0,0.075006 -4355,5616:215,-165,-61,0,0,0.0750131 -4356,5616:114,-164,-61,0,0,0.0750201 -4357,5616:113,-163,-61,0,0,0.0750345 -4358,5616:112,-162,-61,0,0,0.0750488 -4359,5616:111,-161,-61,0,0,0.0750558 -4360,5616:110,-160,-61,0,0,0.0750702 -4361,5615:219,-159,-61,0,0,0.0750773 -4362,5615:218,-158,-61,0,0,0.0750843 -4363,5615:217,-157,-61,0,0,0.0750843 -4364,5615:216,-156,-61,0,0,0.0750915 -4365,5615:215,-155,-61,0,0,0.0751558 -4366,5615:114,-154,-61,0,0,0.0752631 -4367,5615:113,-153,-61,0,0,0.0752916 -4368,5615:112,-152,-61,0,0,0.0752273 -4369,5615:111,-151,-61,0,0,0.0751915 -4370,5615:110,-150,-61,0,0,0.0752487 -4371,5614:219,-149,-61,0,0,0.0754779 -4372,5614:218,-148,-61,0,0,0.0753489 -4373,5614:217,-147,-61,0,0,0.0754921 -4374,5614:216,-146,-61,0,0,0.0758298 -4375,5614:215,-145,-61,0,0,0.0765457 -4376,5614:114,-144,-61,0,0,0.0781588 -4377,5614:113,-143,-61,0,0,0.0796523 -4378,5614:112,-142,-61,0,0,0.0805761 -4379,5614:111,-141,-61,0,0,0.0809803 -4380,5614:110,-140,-61,0,0,0.0814787 -4381,5613:219,-139,-61,0,0,0.0810646 -4382,5613:218,-138,-61,0,0,0.082593 -4383,5613:217,-137,-61,0,0,0.0850864 -4384,5613:216,-136,-61,0,0,0.0848468 -4385,5613:215,-135,-61,0,0,0.0847113 -4386,5613:114,-134,-61,0,0,0.0870421 -4387,5613:113,-133,-61,0,0,0.0873121 -4388,5613:112,-132,-61,0,0,0.0861402 -4389,5613:111,-131,-61,0,0,0.0817483 -4390,5613:110,-130,-61,0,0,0.082819 -4391,5612:219,-129,-61,0,0,0.0875743 -4392,5612:218,-128,-61,0,0,0.0855195 -4393,5612:217,-127,-61,0,0,0.0855756 -4394,5612:216,-126,-61,0,0,0.0850225 -4395,5612:215,-125,-61,0,0,0.0828892 -4396,5612:114,-124,-61,0,0,0.0830064 -4397,5612:113,-123,-61,0,0,0.0907447 -4398,5612:112,-122,-61,0,0,0.092627 -4399,5612:111,-121,-61,0,0,0.0867893 -4400,5612:110,-120,-61,0,0,0.0863913 -4401,5611:219,-119,-61,0,0,0.0897912 -4402,5611:218,-118,-61,0,0,0.090626 -4403,5611:217,-117,-61,0,0,0.0855837 -4404,5611:216,-116,-61,0,0,0.0881755 -4405,5611:215,-115,-61,0,0,0.0911184 -4406,5611:114,-114,-61,0,0,0.0909399 -4407,5611:113,-113,-61,0,0,0.0931205 -4408,5611:112,-112,-61,0,0,0.0903556 -4409,5611:111,-111,-61,0,0,0.0860997 -4410,5611:110,-110,-61,0,0,0.0860432 -4411,5610:219,-109,-61,0,0,0.086132 -4412,5610:218,-108,-61,0,0,0.0852548 -4413,5610:217,-107,-61,0,0,0.0890384 -4414,5610:216,-106,-61,0,0,0.090533 -4415,5610:215,-105,-61,0,0,0.0857849 -4416,5610:114,-104,-61,0,0,0.0862617 -4417,5610:113,-103,-61,0,0,0.0854793 -4418,5610:112,-102,-61,0,0,0.0835869 -4419,5610:111,-101,-61,0,0,0.0823363 -4420,5610:110,-100,-61,0,0,0.079007 -4421,5609:219,-99,-61,0,0,0.0764296 -4422,5609:218,-98,-61,0,0,0.077297 -4423,5609:217,-97,-61,0,0,0.0780184 -4424,5609:216,-96,-61,0,0,0.0777158 -4425,5609:215,-95,-61,0,0,0.0758298 -4426,5609:114,-94,-61,0,0,0.0769168 -4427,5609:113,-93,-61,0,0,0.0765384 -4428,5609:112,-92,-61,0,0,0.0754203 -4429,5609:111,-91,-61,0,0,0.0755998 -4430,5609:110,-90,-61,0,0,0.0759668 -4431,5608:219,-89,-61,0,0,0.0773485 -4432,5608:218,-88,-61,0,0,0.0854151 -4433,5608:217,-87,-61,0,0,0.0874924 -4434,5608:216,-86,-61,0,0,0.0807817 -4435,5608:215,-85,-61,0,0,0.0769973 -4436,5608:114,-84,-61,0,0,0.0758225 -4437,5608:113,-83,-61,0,0,0.0756932 -4438,5608:112,-82,-61,0,0,0.0762267 -4439,5608:111,-81,-61,0,0,0.0762196 -4440,5608:110,-80,-61,0,0,0.0758946 -4441,5607:219,-79,-61,0,0,0.0758443 -4442,5607:218,-78,-61,0,0,0.0760245 -4443,5607:217,-77,-61,0,0,0.0765893 -4444,5607:216,-76,-61,0,0,0.0770338 -4445,5607:215,-75,-61,0,0,0.0768514 -4446,5607:114,-74,-61,0,0,0.0789397 -4447,5607:113,-73,-61,0,0,0.0826319 -4448,5607:112,-72,-61,0,0,0.0796146 -4449,5607:111,-71,-61,0,0,0.0780184 -4450,5607:110,-70,-61,0,0,0.0775613 -4451,5606:219,-69,-61,0,0,0.0772899 -4452,5606:218,-68,-61,0,0,0.0771215 -4453,5606:217,-67,-61,0,0,0.0806293 -4454,5606:110,-60,-61,0,0,0.0801433 -4455,5605:219,-59,-61,0,0,0.0774806 -4456,5605:218,-58,-61,0,0,0.0753344 -4457,5605:217,-57,-61,0,0,0.0752631 -4458,5605:216,-56,-61,0,0,0.0751915 -4459,5605:215,-55,-61,0,0,0.0750915 -4460,5605:114,-54,-61,0,0,0.0750416 -4461,5605:113,-53,-61,0,0,0.0750416 -4462,5605:112,-52,-61,0,0,0.0750201 -4463,5605:111,-51,-61,0,0,0.0749988 -4464,5605:110,-50,-61,0,0,0.0749846 -4465,5604:219,-49,-61,0,0,0.0749775 -4466,5604:218,-48,-61,0,0,0.0749775 -4467,5604:217,-47,-61,0,0,0.0749631 -4468,5604:216,-46,-61,0,0,0.0749703 -4469,5604:215,-45,-61,0,0,0.0749775 -4470,5604:114,-44,-61,0,0,0.0749775 -4471,5604:113,-43,-61,0,0,0.0749703 -4472,5604:112,-42,-61,0,0,0.0749703 -4473,5604:111,-41,-61,0,0,0.0749703 -4474,5604:110,-40,-61,0,0,0.0749703 -4475,5603:219,-39,-61,0,0,0.0749703 -4476,5603:218,-38,-61,0,0,0.0749703 -4477,5603:217,-37,-61,0,0,0.0749703 -4478,5603:216,-36,-61,0,0,0.0749703 -4479,5603:215,-35,-61,0,0,0.0749703 -4480,5603:114,-34,-61,0,0,0.0749703 -4481,5603:113,-33,-61,0,0,0.0749703 -4482,5603:112,-32,-61,0,0,0.0749703 -4483,5603:111,-31,-61,0,0,0.0749703 -4484,5603:110,-30,-61,0,0,0.0749703 -4485,5602:219,-29,-61,0,0,0.0749703 -4486,5602:218,-28,-61,0,0,0.0749703 -4487,5602:217,-27,-61,0,0,0.0749703 -4488,5602:216,-26,-61,0,0,0.0749631 -4489,5602:215,-25,-61,0,0,0.0749631 -4490,5602:114,-24,-61,0,0,0.0749562 -4491,5602:113,-23,-61,0,0,0.0749562 -4492,5602:112,-22,-61,0,0,0.0749418 -4493,5602:111,-21,-61,0,0,0.0749346 -4494,5602:110,-20,-61,0,0,0.0749275 -4495,5601:219,-19,-61,0,0,0.0749205 -4496,5601:218,-18,-61,0,0,0.0749062 -4497,5601:217,-17,-61,0,0,0.074892 -4498,5601:216,-16,-61,0,0,0.0748705 -4499,5601:215,-15,-61,0,0,0.0748636 -4500,5601:114,-14,-61,0,0,0.0748705 -4501,5601:113,-13,-61,0,0,0.0748705 -4502,5601:112,-12,-61,0,0,0.0748705 -4503,5601:111,-11,-61,0,0,0.0748636 -4504,5601:110,-10,-61,0,0,0.0748705 -4505,5600:219,-9,-61,0,0,0.0748705 -4506,5600:218,-8,-61,0,0,0.0748705 -4507,5600:217,-7,-61,0,0,0.0748636 -4508,5600:216,-6,-61,0,0,0.0748636 -4509,5600:215,-5,-61,0,0,0.0748777 -4510,5600:114,-4,-61,0,0,0.0748777 -4511,5600:113,-3,-61,0,0,0.0748705 -4512,5600:112,-2,-61,0,0,0.0748636 -4513,5600:111,-1,-61,0,0,0.0748636 -4514,3600:111,0,-61,0,0,0.0748636 -4515,3600:111,1,-61,0,0,0.0748564 -4516,3600:112,2,-61,0,0,0.0748493 -4517,3600:113,3,-61,0,0,0.0748493 -4518,3600:114,4,-61,0,0,0.0748421 -4519,3600:215,5,-61,0,0,0.0748705 -4520,3600:216,6,-61,0,0,0.0748564 -4521,3600:217,7,-61,0,0,0.0748493 -4522,3600:218,8,-61,0,0,0.0748493 -4523,3600:219,9,-61,0,0,0.0748636 -4524,3601:110,10,-61,0,0,0.0748705 -4525,3601:111,11,-61,0,0,0.0748849 -4526,3601:112,12,-61,0,0,0.0748777 -4527,3601:113,13,-61,0,0,0.0748777 -4528,3601:114,14,-61,0,0,0.0748777 -4529,3601:215,15,-61,0,0,0.074892 -4530,3601:216,16,-61,0,0,0.074899 -4531,3601:217,17,-61,0,0,0.074892 -4532,3601:218,18,-61,0,0,0.0748705 -4533,3601:219,19,-61,0,0,0.0748564 -4534,3602:110,20,-61,0,0,0.0748636 -4535,3602:111,21,-61,0,0,0.0748564 -4536,3602:112,22,-61,0,0,0.0748636 -4537,3602:113,23,-61,0,0,0.0748705 -4538,3602:114,24,-61,0,0,0.0748777 -4539,3602:215,25,-61,0,0,0.074892 -4540,3602:216,26,-61,0,0,0.074892 -4541,3602:217,27,-61,0,0,0.074899 -4542,3602:218,28,-61,0,0,0.0749205 -4543,3602:219,29,-61,0,0,0.0749205 -4544,3603:110,30,-61,0,0,0.0749346 -4545,3603:111,31,-61,0,0,0.074949 -4546,3603:112,32,-61,0,0,0.0749562 -4547,3603:113,33,-61,0,0,0.0749703 -4548,3603:114,34,-61,0,0,0.0750273 -4549,3603:215,35,-61,0,0,0.0749775 -4550,3603:216,36,-61,0,0,0.0749775 -4551,3603:217,37,-61,0,0,0.0749703 -4552,3603:218,38,-61,0,0,0.0749775 -4553,3603:219,39,-61,0,0,0.0749703 -4554,3604:110,40,-61,0,0,0.0749775 -4555,3604:111,41,-61,0,0,0.0749916 -4556,3604:112,42,-61,0,0,0.0749846 -4557,3604:113,43,-61,0,0,0.0749846 -4558,3604:114,44,-61,0,0,0.0749916 -4559,3604:215,45,-61,0,0,0.0750131 -4560,3604:216,46,-61,0,0,0.075006 -4561,3604:217,47,-61,0,0,0.075006 -4562,3604:218,48,-61,0,0,0.0750201 -4563,3604:219,49,-61,0,0,0.0751128 -4564,3605:110,50,-61,0,0,0.0749275 -4565,3605:217,57,-61,0,0,0.0752343 -4566,3605:218,58,-61,0,0,0.0752129 -4567,3605:219,59,-61,0,0,0.0751128 -4568,3606:110,60,-61,0,0,0.0751128 -4569,3606:111,61,-61,0,0,0.0750416 -4570,3606:112,62,-61,0,0,0.0749916 -4571,3606:113,63,-61,0,0,0.0749775 -4572,3606:114,64,-61,0,0,0.0749062 -4573,3606:215,65,-61,0,0,0.0749205 -4574,3606:216,66,-61,0,0,0.0749205 -4575,3606:217,67,-61,0,0,0.0749346 -4576,3606:218,68,-61,0,0,0.0749418 -4577,3606:219,69,-61,0,0,0.074949 -4578,3607:110,70,-61,0,0,0.074949 -4579,3607:111,71,-61,0,0,0.0749418 -4580,3607:112,72,-61,0,0,0.0749418 -4581,3607:114,74,-61,0,0,0.075722 -4582,3607:215,75,-61,0,0,0.074949 -4583,3607:216,76,-61,0,0,0.0749346 -4584,3607:217,77,-61,0,0,0.0751059 -4585,3607:218,78,-61,0,0,0.0749062 -4586,3607:219,79,-61,0,0,0.0749346 -4587,3608:110,80,-61,0,0,0.0749346 -4588,3608:111,81,-61,0,0,0.0752772 -4589,3608:113,83,-61,0,0,0.0753847 -4590,3608:219,89,-61,0,0,0.0753344 -4591,3609:110,90,-61,0,0,0.0753489 -4592,3609:111,91,-61,0,0,0.0756068 -4593,3609:112,92,-61,0,0,0.0771215 -4594,3609:113,93,-61,0,0,0.0784555 -4595,3609:114,94,-61,0,0,0.0869034 -4596,3610:218,108,-61,0,0,0.0750488 -4597,3610:219,109,-61,0,0,0.0792915 -4598,3611:110,110,-61,0,0,0.0853428 -4599,3611:215,115,-61,0,0,0.0755352 -4600,3611:217,117,-61,0,0,0.0753775 -4601,3611:218,118,-61,0,0,0.0751558 -4602,3611:219,119,-61,0,0,0.0750773 -4603,3612:110,120,-61,0,0,0.0750488 -4604,3612:111,121,-61,0,0,0.0751486 -4605,3612:112,122,-61,0,0,0.0752343 -4606,3612:113,123,-61,0,0,0.0750416 -4607,3612:217,127,-61,0,0,0.0802948 -4608,3612:218,128,-61,0,0,0.0803859 -4609,3612:219,129,-61,0,0,0.0774658 -4610,3613:110,130,-61,0,0,0.0819568 -4611,3613:219,139,-61,0,0,0.0893055 -4612,3614:110,140,-61,0,0,0.0890384 -4613,3614:111,141,-61,0,0,0.0883988 -4614,3614:112,142,-61,0,0,0.0878458 -4615,3614:113,143,-61,0,0,0.0862454 -4616,3614:114,144,-61,0,0,0.0871566 -4617,3614:215,145,-61,0,0,0.0834139 -4618,3614:216,146,-61,0,0,0.0768076 -4619,3614:217,147,-61,0,0,0.0752201 -4620,3614:218,148,-61,0,0,0.0750702 -4621,3614:219,149,-61,0,0,0.0750416 -4622,3615:110,150,-61,0,0,0.0750416 -4623,3615:111,151,-61,0,0,0.0750488 -4624,3615:112,152,-61,0,0,0.0750416 -4625,3615:113,153,-61,0,0,0.0750201 -4626,3615:114,154,-61,0,0,0.075006 -4627,3615:215,155,-61,0,0,0.0749916 -4628,3615:216,156,-61,0,0,0.0749846 -4629,3615:217,157,-61,0,0,0.0749916 -4630,3615:218,158,-61,0,0,0.0750131 -4631,3615:219,159,-61,0,0,0.0750345 -4632,3616:110,160,-61,0,0,0.0750131 -4633,3616:111,161,-61,0,0,0.0749703 -4634,3616:112,162,-61,0,0,0.0749205 -4635,3616:113,163,-61,0,0,0.075063 -4636,3616:114,164,-61,0,0,0.0750488 -4637,3616:215,165,-61,0,0,0.0750345 -4638,3616:216,166,-61,0,0,0.0750558 -4639,3616:217,167,-61,0,0,0.0750488 -4640,3616:218,168,-61,0,0,0.0750345 -4641,3616:219,169,-61,0,0,0.0750273 -4642,3617:110,170,-61,0,0,0.0750345 -4643,3617:111,171,-61,0,0,0.0750488 -4644,3617:112,172,-61,0,0,0.0750488 -4645,3617:113,173,-61,0,0,0.0750416 -4646,3617:114,174,-61,0,0,0.0750416 -4647,3617:215,175,-61,0,0,0.0750201 -4648,3617:216,176,-61,0,0,0.0750201 -4649,3617:217,177,-61,0,0,0.0750345 -4650,3617:218,178,-61,0,0,0.0750416 -4651,3617:219,179,-61,0,0,0.0750488 -4652,3618:110,180,-61,0,0,0.075063 -4653,5618:100,-180,-60,0,0,0.0751701 -4654,5617:209,-179,-60,0,0,0.075729 -4655,5617:208,-178,-60,0,0,0.0763789 -4656,5617:207,-177,-60,0,0,0.0755781 -4657,5617:206,-176,-60,0,0,0.0756068 -4658,5617:205,-175,-60,0,0,0.0756932 -4659,5617:104,-174,-60,0,0,0.0753703 -4660,5617:103,-173,-60,0,0,0.0751416 -4661,5617:102,-172,-60,0,0,0.0750702 -4662,5617:101,-171,-60,0,0,0.0750488 -4663,5617:100,-170,-60,0,0,0.0750273 -4664,5616:209,-169,-60,0,0,0.0750201 -4665,5616:208,-168,-60,0,0,0.0750131 -4666,5616:207,-167,-60,0,0,0.0750131 -4667,5616:206,-166,-60,0,0,0.075006 -4668,5616:205,-165,-60,0,0,0.0751558 -4669,5616:104,-164,-60,0,0,0.0753489 -4670,5616:103,-163,-60,0,0,0.0750488 -4671,5616:102,-162,-60,0,0,0.0750416 -4672,5616:101,-161,-60,0,0,0.0750558 -4673,5616:100,-160,-60,0,0,0.0751059 -4674,5615:209,-159,-60,0,0,0.0753703 -4675,5615:208,-158,-60,0,0,0.0757937 -4676,5615:207,-157,-60,0,0,0.0766184 -4677,5615:206,-156,-60,0,0,0.0773118 -4678,5615:205,-155,-60,0,0,0.0774952 -4679,5615:104,-154,-60,0,0,0.077657 -4680,5615:103,-153,-60,0,0,0.078783 -4681,5615:102,-152,-60,0,0,0.0799844 -4682,5615:101,-151,-60,0,0,0.0774145 -4683,5615:100,-150,-60,0,0,0.0783515 -4684,5614:209,-149,-60,0,0,0.0816789 -4685,5614:208,-148,-60,0,0,0.079374 -4686,5614:207,-147,-60,0,0,0.0785371 -4687,5614:206,-146,-60,0,0,0.0794342 -4688,5614:205,-145,-60,0,0,0.0803175 -4689,5614:104,-144,-60,0,0,0.0832023 -4690,5614:103,-143,-60,0,0,0.0842505 -4691,5614:102,-142,-60,0,0,0.0829596 -4692,5614:101,-141,-60,0,0,0.0832099 -4693,5614:100,-140,-60,0,0,0.0830455 -4694,5613:209,-139,-60,0,0,0.0818717 -4695,5613:208,-138,-60,0,0,0.0832884 -4696,5613:207,-137,-60,0,0,0.0859382 -4697,5613:206,-136,-60,0,0,0.0842505 -4698,5613:205,-135,-60,0,0,0.0849906 -4699,5613:104,-134,-60,0,0,0.0876811 -4700,5613:103,-133,-60,0,0,0.0903893 -4701,5613:102,-132,-60,0,0,0.0916986 -4702,5613:101,-131,-60,0,0,0.0872464 -4703,5613:100,-130,-60,0,0,0.0853348 -4704,5612:209,-129,-60,0,0,0.0891885 -4705,5612:208,-128,-60,0,0,0.088465 -4706,5612:207,-127,-60,0,0,0.0868383 -4707,5612:206,-126,-60,0,0,0.084831 -4708,5612:205,-125,-60,0,0,0.085624 -4709,5612:104,-124,-60,0,0,0.0901699 -4710,5612:103,-123,-60,0,0,0.0965957 -4711,5612:102,-122,-60,0,0,0.0970269 -4712,5612:101,-121,-60,0,0,0.0968562 -4713,5612:100,-120,-60,0,0,0.0966137 -4714,5611:209,-119,-60,0,0,0.0969459 -4715,5611:208,-118,-60,0,0,0.0979491 -4716,5611:207,-117,-60,0,0,0.0976951 -4717,5611:206,-116,-60,0,0,0.0945267 -4718,5611:205,-115,-60,0,0,0.0911013 -4719,5611:104,-114,-60,0,0,0.0927135 -4720,5611:103,-113,-60,0,0,0.0949233 -4721,5611:102,-112,-60,0,0,0.0957562 -4722,5611:101,-111,-60,0,0,0.0957296 -4723,5611:100,-110,-60,0,0,0.0949055 -4724,5610:209,-109,-60,0,0,0.0953833 -4725,5610:208,-108,-60,0,0,0.0957652 -4726,5610:207,-107,-60,0,0,0.0945707 -4727,5610:206,-106,-60,0,0,0.0902373 -4728,5610:205,-105,-60,0,0,0.0951441 -4729,5610:104,-104,-60,0,0,0.0989888 -4730,5610:103,-103,-60,0,0,0.090533 -4731,5610:102,-102,-60,0,0,0.0855756 -4732,5610:101,-101,-60,0,0,0.083257 -4733,5610:100,-100,-60,0,0,0.082414 -4734,5609:209,-99,-60,0,0,0.0842585 -4735,5609:208,-98,-60,0,0,0.088349 -4736,5609:207,-97,-60,0,0,0.0862859 -4737,5609:206,-96,-60,0,0,0.0785744 -4738,5609:205,-95,-60,0,0,0.0778634 -4739,5609:104,-94,-60,0,0,0.0809192 -4740,5609:103,-93,-60,0,0,0.0830925 -4741,5609:102,-92,-60,0,0,0.0836814 -4742,5609:101,-91,-60,0,0,0.0849825 -4743,5609:100,-90,-60,0,0,0.0871975 -4744,5608:209,-89,-60,0,0,0.0871648 -4745,5608:208,-88,-60,0,0,0.0885149 -4746,5608:207,-87,-60,0,0,0.0921703 -4747,5608:206,-86,-60,0,0,0.0874103 -4748,5608:205,-85,-60,0,0,0.0789322 -4749,5608:104,-84,-60,0,0,0.0759668 -4750,5608:103,-83,-60,0,0,0.0763354 -4751,5608:102,-82,-60,0,0,0.0761111 -4752,5608:101,-81,-60,0,0,0.0761761 -4753,5608:100,-80,-60,0,0,0.0754849 -4754,5607:209,-79,-60,0,0,0.0757147 -4755,5607:208,-78,-60,0,0,0.0786266 -4756,5607:207,-77,-60,0,0,0.0835399 -4757,5607:206,-76,-60,0,0,0.0795921 -4758,5607:205,-75,-60,0,0,0.0792691 -4759,5607:104,-74,-60,0,0,0.0847113 -4760,5607:103,-73,-60,0,0,0.089699 -4761,5607:102,-72,-60,0,0,0.0860837 -4762,5607:101,-71,-60,0,0,0.0802948 -4763,5607:100,-70,-60,0,0,0.0785968 -4764,5606:209,-69,-60,0,0,0.0780922 -4765,5606:208,-68,-60,0,0,0.0777601 -4766,5606:207,-67,-60,0,0,0.078463 -4767,5606:205,-65,-60,0,0,0.0924201 -4768,5606:100,-60,-60,0,0,0.0801736 -4769,5605:209,-59,-60,0,0,0.0795168 -4770,5605:208,-58,-60,0,0,0.0775026 -4771,5605:207,-57,-60,0,0,0.075313 -4772,5605:206,-56,-60,0,0,0.0752559 -4773,5605:205,-55,-60,0,0,0.0751701 -4774,5605:104,-54,-60,0,0,0.0750558 -4775,5605:103,-53,-60,0,0,0.0750345 -4776,5605:102,-52,-60,0,0,0.0750345 -4777,5605:101,-51,-60,0,0,0.0749988 -4778,5605:100,-50,-60,0,0,0.0749846 -4779,5604:209,-49,-60,0,0,0.0749846 -4780,5604:208,-48,-60,0,0,0.0749703 -4781,5604:207,-47,-60,0,0,0.0749703 -4782,5604:206,-46,-60,0,0,0.0749703 -4783,5604:205,-45,-60,0,0,0.0749631 -4784,5604:104,-44,-60,0,0,0.0749631 -4785,5604:103,-43,-60,0,0,0.0749631 -4786,5604:102,-42,-60,0,0,0.0749631 -4787,5604:101,-41,-60,0,0,0.0749631 -4788,5604:100,-40,-60,0,0,0.0749703 -4789,5603:209,-39,-60,0,0,0.0749703 -4790,5603:208,-38,-60,0,0,0.0749703 -4791,5603:207,-37,-60,0,0,0.0749703 -4792,5603:206,-36,-60,0,0,0.0749703 -4793,5603:205,-35,-60,0,0,0.0749703 -4794,5603:104,-34,-60,0,0,0.0749703 -4795,5603:103,-33,-60,0,0,0.0749703 -4796,5603:102,-32,-60,0,0,0.0749703 -4797,5603:101,-31,-60,0,0,0.0749775 -4798,5603:100,-30,-60,0,0,0.0749775 -4799,5602:209,-29,-60,0,0,0.0749703 -4800,5602:208,-28,-60,0,0,0.0749703 -4801,5602:207,-27,-60,0,0,0.0749631 -4802,5602:206,-26,-60,0,0,0.0749631 -4803,5602:205,-25,-60,0,0,0.0749631 -4804,5602:104,-24,-60,0,0,0.0749562 -4805,5602:103,-23,-60,0,0,0.074949 -4806,5602:102,-22,-60,0,0,0.0749418 -4807,5602:101,-21,-60,0,0,0.0749346 -4808,5602:100,-20,-60,0,0,0.0749275 -4809,5601:209,-19,-60,0,0,0.0749205 -4810,5601:208,-18,-60,0,0,0.0749062 -4811,5601:207,-17,-60,0,0,0.074892 -4812,5601:206,-16,-60,0,0,0.0748777 -4813,5601:205,-15,-60,0,0,0.0748636 -4814,5601:104,-14,-60,0,0,0.0748636 -4815,5601:103,-13,-60,0,0,0.0748705 -4816,5601:102,-12,-60,0,0,0.0748636 -4817,5601:101,-11,-60,0,0,0.0748564 -4818,5601:100,-10,-60,0,0,0.0748564 -4819,5600:209,-9,-60,0,0,0.0748636 -4820,5600:208,-8,-60,0,0,0.0748705 -4821,5600:207,-7,-60,0,0,0.0748636 -4822,5600:206,-6,-60,0,0,0.0748564 -4823,5600:205,-5,-60,0,0,0.0748564 -4824,5600:104,-4,-60,0,0,0.0748636 -4825,5600:103,-3,-60,0,0,0.0748636 -4826,5600:102,-2,-60,0,0,0.0748636 -4827,5600:101,-1,-60,0,0,0.0748705 -4828,3600:101,0,-60,0,0,0.0748777 -4829,3600:101,1,-60,0,0,0.0748636 -4830,3600:102,2,-60,0,0,0.0748636 -4831,3600:103,3,-60,0,0,0.0748636 -4832,3600:104,4,-60,0,0,0.0748705 -4833,3600:205,5,-60,0,0,0.0748705 -4834,3600:206,6,-60,0,0,0.0748777 -4835,3600:207,7,-60,0,0,0.0748777 -4836,3600:208,8,-60,0,0,0.0748705 -4837,3600:209,9,-60,0,0,0.0748636 -4838,3601:100,10,-60,0,0,0.0748564 -4839,3601:101,11,-60,0,0,0.0748636 -4840,3601:102,12,-60,0,0,0.0748564 -4841,3601:103,13,-60,0,0,0.0748705 -4842,3601:104,14,-60,0,0,0.0748777 -4843,3601:205,15,-60,0,0,0.0748636 -4844,3601:206,16,-60,0,0,0.0748636 -4845,3601:207,17,-60,0,0,0.0748636 -4846,3601:208,18,-60,0,0,0.0748493 -4847,3601:209,19,-60,0,0,0.074828 -4848,3602:100,20,-60,0,0,0.0748349 -4849,3602:101,21,-60,0,0,0.0748421 -4850,3602:102,22,-60,0,0,0.0748421 -4851,3602:103,23,-60,0,0,0.0748493 -4852,3602:104,24,-60,0,0,0.0748564 -4853,3602:205,25,-60,0,0,0.0748636 -4854,3602:206,26,-60,0,0,0.0748777 -4855,3602:207,27,-60,0,0,0.074892 -4856,3602:208,28,-60,0,0,0.0749133 -4857,3602:209,29,-60,0,0,0.0749205 -4858,3603:100,30,-60,0,0,0.0748849 -4859,3603:101,31,-60,0,0,0.0748636 -4860,3603:102,32,-60,0,0,0.0749205 -4861,3603:103,33,-60,0,0,0.0749562 -4862,3603:104,34,-60,0,0,0.0749916 -4863,3603:205,35,-60,0,0,0.0749703 -4864,3603:206,36,-60,0,0,0.0749418 -4865,3603:207,37,-60,0,0,0.0749205 -4866,3603:208,38,-60,0,0,0.0749133 -4867,3603:209,39,-60,0,0,0.074892 -4868,3604:100,40,-60,0,0,0.074899 -4869,3604:101,41,-60,0,0,0.0749275 -4870,3604:102,42,-60,0,0,0.0749418 -4871,3604:103,43,-60,0,0,0.0749916 -4872,3604:104,44,-60,0,0,0.0749846 -4873,3604:205,45,-60,0,0,0.0749916 -4874,3604:206,46,-60,0,0,0.0750131 -4875,3604:207,47,-60,0,0,0.0750416 -4876,3604:208,48,-60,0,0,0.0750558 -4877,3604:209,49,-60,0,0,0.0750773 -4878,3605:100,50,-60,0,0,0.0750773 -4879,3605:101,51,-60,0,0,0.0750843 -4880,3605:102,52,-60,0,0,0.0750915 -4881,3605:103,53,-60,0,0,0.0750488 -4882,3605:104,54,-60,0,0,0.0750273 -4883,3605:205,55,-60,0,0,0.0751128 -4884,3605:206,56,-60,0,0,0.0751558 -4885,3605:207,57,-60,0,0,0.0751344 -4886,3605:208,58,-60,0,0,0.0751128 -4887,3605:209,59,-60,0,0,0.0750843 -4888,3606:100,60,-60,0,0,0.0750201 -4889,3606:101,61,-60,0,0,0.0749916 -4890,3606:102,62,-60,0,0,0.0749988 -4891,3606:103,63,-60,0,0,0.0749988 -4892,3606:104,64,-60,0,0,0.0749703 -4893,3606:205,65,-60,0,0,0.074949 -4894,3606:206,66,-60,0,0,0.0749562 -4895,3606:207,67,-60,0,0,0.0749346 -4896,3606:208,68,-60,0,0,0.074949 -4897,3606:209,69,-60,0,0,0.074949 -4898,3607:100,70,-60,0,0,0.0749418 -4899,3607:101,71,-60,0,0,0.0749346 -4900,3607:102,72,-60,0,0,0.074949 -4901,3607:104,74,-60,0,0,0.0750131 -4902,3607:205,75,-60,0,0,0.0749631 -4903,3607:206,76,-60,0,0,0.0749418 -4904,3607:207,77,-60,0,0,0.074949 -4905,3607:208,78,-60,0,0,0.074949 -4906,3607:209,79,-60,0,0,0.0749631 -4907,3608:100,80,-60,0,0,0.0749846 -4908,3608:101,81,-60,0,0,0.0750345 -4909,3608:102,82,-60,0,0,0.07512 -4910,3608:103,83,-60,0,0,0.0751416 -4911,3608:104,84,-60,0,0,0.0751128 -4912,3608:205,85,-60,0,0,0.0751272 -4913,3608:206,86,-60,0,0,0.0751272 -4914,3608:207,87,-60,0,0,0.07512 -4915,3608:208,88,-60,0,0,0.07512 -4916,3608:209,89,-60,0,0,0.0750843 -4917,3609:100,90,-60,0,0,0.0750773 -4918,3609:101,91,-60,0,0,0.0750558 -4919,3609:102,92,-60,0,0,0.0750558 -4920,3609:103,93,-60,0,0,0.0750488 -4921,3609:104,94,-60,0,0,0.0750488 -4922,3609:205,95,-60,0,0,0.0770704 -4923,3610:205,105,-60,0,0,0.075313 -4924,3610:206,106,-60,0,0,0.0752343 -4925,3610:207,107,-60,0,0,0.0751059 -4926,3610:208,108,-60,0,0,0.0749562 -4927,3610:209,109,-60,0,0,0.074899 -4928,3611:100,110,-60,0,0,0.0749703 -4929,3611:101,111,-60,0,0,0.0750915 -4930,3611:102,112,-60,0,0,0.0750773 -4931,3611:104,114,-60,0,0,0.0753703 -4932,3611:205,115,-60,0,0,0.0752343 -4933,3611:206,116,-60,0,0,0.0751059 -4934,3611:207,117,-60,0,0,0.0751059 -4935,3611:208,118,-60,0,0,0.0750915 -4936,3611:209,119,-60,0,0,0.075063 -4937,3612:100,120,-60,0,0,0.0749916 -4938,3612:101,121,-60,0,0,0.075006 -4939,3612:102,122,-60,0,0,0.0750843 -4940,3612:103,123,-60,0,0,0.0750488 -4941,3612:104,124,-60,0,0,0.0749988 -4942,3612:205,125,-60,0,0,0.0749846 -4943,3612:206,126,-60,0,0,0.0749775 -4944,3612:207,127,-60,0,0,0.0749703 -4945,3612:208,128,-60,0,0,0.0753631 -4946,3612:209,129,-60,0,0,0.0751416 -4947,3613:100,130,-60,0,0,0.0752415 -4948,3613:101,131,-60,0,0,0.0760679 -4949,3613:102,132,-60,0,0,0.0790816 -4950,3613:103,133,-60,0,0,0.082858 -4951,3613:104,134,-60,0,0,0.0856321 -4952,3613:206,136,-60,0,0,0.0754779 -4953,3613:207,137,-60,0,0,0.075722 -4954,3613:208,138,-60,0,0,0.0787532 -4955,3613:209,139,-60,0,0,0.0811794 -4956,3614:100,140,-60,0,0,0.0817097 -4957,3614:101,141,-60,0,0,0.0829596 -4958,3614:102,142,-60,0,0,0.0820496 -4959,3614:103,143,-60,0,0,0.0796372 -4960,3614:104,144,-60,0,0,0.0785224 -4961,3614:205,145,-60,0,0,0.0757147 -4962,3614:206,146,-60,0,0,0.0750915 -4963,3614:207,147,-60,0,0,0.0750345 -4964,3614:208,148,-60,0,0,0.0749775 -4965,3614:209,149,-60,0,0,0.0749916 -4966,3615:100,150,-60,0,0,0.075006 -4967,3615:101,151,-60,0,0,0.0750131 -4968,3615:102,152,-60,0,0,0.0749988 -4969,3615:103,153,-60,0,0,0.0750201 -4970,3615:104,154,-60,0,0,0.0750416 -4971,3615:205,155,-60,0,0,0.0750416 -4972,3615:206,156,-60,0,0,0.0750416 -4973,3615:207,157,-60,0,0,0.0750416 -4974,3615:208,158,-60,0,0,0.0750273 -4975,3615:209,159,-60,0,0,0.0750273 -4976,3616:100,160,-60,0,0,0.0750201 -4977,3616:101,161,-60,0,0,0.0750131 -4978,3616:102,162,-60,0,0,0.0750345 -4979,3616:103,163,-60,0,0,0.0750416 -4980,3616:104,164,-60,0,0,0.0750558 -4981,3616:205,165,-60,0,0,0.0750558 -4982,3616:206,166,-60,0,0,0.0750702 -4983,3616:207,167,-60,0,0,0.0750702 -4984,3616:208,168,-60,0,0,0.0750558 -4985,3616:209,169,-60,0,0,0.0750488 -4986,3617:100,170,-60,0,0,0.0750488 -4987,3617:101,171,-60,0,0,0.0750488 -4988,3617:102,172,-60,0,0,0.0750416 -4989,3617:103,173,-60,0,0,0.0750416 -4990,3617:104,174,-60,0,0,0.0750345 -4991,3617:205,175,-60,0,0,0.0750345 -4992,3617:206,176,-60,0,0,0.0750416 -4993,3617:207,177,-60,0,0,0.0750416 -4994,3617:208,178,-60,0,0,0.0750488 -4995,3617:209,179,-60,0,0,0.0750773 -4996,3618:100,180,-60,0,0,0.0751701 -4997,5518:390,-180,-59,0,0,0.0776864 -4998,5517:499,-179,-59,0,0,0.0785224 -4999,5517:498,-178,-59,0,0,0.0758443 -5000,5517:497,-177,-59,0,0,0.0774806 -5001,5517:496,-176,-59,0,0,0.0819026 -5002,5517:495,-175,-59,0,0,0.0766184 -5003,5517:394,-174,-59,0,0,0.0753561 -5004,5517:393,-173,-59,0,0,0.0771067 -5005,5517:392,-172,-59,0,0,0.0764732 -5006,5517:391,-171,-59,0,0,0.0751344 -5007,5517:390,-170,-59,0,0,0.0750987 -5008,5516:499,-169,-59,0,0,0.0751987 -5009,5516:498,-168,-59,0,0,0.075313 -5010,5516:497,-167,-59,0,0,0.0751771 -5011,5516:496,-166,-59,0,0,0.0757147 -5012,5516:495,-165,-59,0,0,0.0757867 -5013,5516:394,-164,-59,0,0,0.0758443 -5014,5516:393,-163,-59,0,0,0.0769973 -5015,5516:392,-162,-59,0,0,0.0789545 -5016,5516:391,-161,-59,0,0,0.0805608 -5017,5516:390,-160,-59,0,0,0.0806521 -5018,5515:499,-159,-59,0,0,0.0822588 -5019,5515:498,-158,-59,0,0,0.0830847 -5020,5515:497,-157,-59,0,0,0.0830379 -5021,5515:496,-156,-59,0,0,0.0827644 -5022,5515:495,-155,-59,0,0,0.0823673 -5023,5515:394,-154,-59,0,0,0.0821037 -5024,5515:393,-153,-59,0,0,0.0822354 -5025,5515:392,-152,-59,0,0,0.0825462 -5026,5515:391,-151,-59,0,0,0.0836578 -5027,5515:390,-150,-59,0,0,0.0839419 -5028,5514:499,-149,-59,0,0,0.0832805 -5029,5514:498,-148,-59,0,0,0.0832649 -5030,5514:497,-147,-59,0,0,0.0834298 -5031,5514:496,-146,-59,0,0,0.0837682 -5032,5514:495,-145,-59,0,0,0.0844886 -5033,5514:394,-144,-59,0,0,0.0849986 -5034,5514:393,-143,-59,0,0,0.0860837 -5035,5514:392,-142,-59,0,0,0.0851426 -5036,5514:391,-141,-59,0,0,0.0848867 -5037,5514:390,-140,-59,0,0,0.0840683 -5038,5513:499,-139,-59,0,0,0.0837682 -5039,5513:498,-138,-59,0,0,0.0874842 -5040,5513:497,-137,-59,0,0,0.0869034 -5041,5513:496,-136,-59,0,0,0.0866756 -5042,5513:495,-135,-59,0,0,0.0849428 -5043,5513:394,-134,-59,0,0,0.0871648 -5044,5513:393,-133,-59,0,0,0.0872384 -5045,5513:392,-132,-59,0,0,0.092558 -5046,5513:391,-131,-59,0,0,0.0932768 -5047,5513:390,-130,-59,0,0,0.0916047 -5048,5512:499,-129,-59,0,0,0.0914764 -5049,5512:498,-128,-59,0,0,0.0911525 -5050,5512:497,-127,-59,0,0,0.0910333 -5051,5512:496,-126,-59,0,0,0.0935291 -5052,5512:495,-125,-59,0,0,0.0975683 -5053,5512:394,-124,-59,0,0,0.0982671 -5054,5512:393,-123,-59,0,0,0.0954277 -5055,5512:392,-122,-59,0,0,0.0962645 -5056,5512:391,-121,-59,0,0,0.0989063 -5057,5512:390,-120,-59,0,0,0.0997151 -5058,5511:499,-119,-59,0,0,0.100075 -5059,5511:498,-118,-59,0,0,0.099752 -5060,5511:497,-117,-59,0,0,0.0995399 -5061,5511:496,-116,-59,0,0,0.0994388 -5062,5511:495,-115,-59,0,0,0.097795 -5063,5511:394,-114,-59,0,0,0.0966586 -5064,5511:393,-113,-59,0,0,0.0988423 -5065,5511:392,-112,-59,0,0,0.100325 -5066,5511:391,-111,-59,0,0,0.0996136 -5067,5511:390,-110,-59,0,0,0.0975774 -5068,5510:499,-109,-59,0,0,0.0973967 -5069,5510:498,-108,-59,0,0,0.0979854 -5070,5510:497,-107,-59,0,0,0.0980489 -5071,5510:496,-106,-59,0,0,0.0965511 -5072,5510:495,-105,-59,0,0,0.0995031 -5073,5510:394,-104,-59,0,0,0.100335 -5074,5510:393,-103,-59,0,0,0.0971171 -5075,5510:392,-102,-59,0,0,0.0984222 -5076,5510:391,-101,-59,0,0,0.0968921 -5077,5510:390,-100,-59,0,0,0.0983947 -5078,5509:499,-99,-59,0,0,0.0986869 -5079,5509:498,-98,-59,0,0,0.0964076 -5080,5509:497,-97,-59,0,0,0.091673 -5081,5509:496,-96,-59,0,0,0.0808887 -5082,5509:495,-95,-59,0,0,0.0802872 -5083,5509:394,-94,-59,0,0,0.0830613 -5084,5509:393,-93,-59,0,0,0.0829047 -5085,5509:392,-92,-59,0,0,0.0886642 -5086,5509:391,-91,-59,0,0,0.0936597 -5087,5509:390,-90,-59,0,0,0.0986503 -5088,5508:499,-89,-59,0,0,0.0986685 -5089,5508:498,-88,-59,0,0,0.0993285 -5090,5508:497,-87,-59,0,0,0.101753 -5091,5508:496,-86,-59,0,0,0.102365 -5092,5508:495,-85,-59,0,0,0.102592 -5093,5508:394,-84,-59,0,0,0.102715 -5094,5508:393,-83,-59,0,0,0.0894142 -5095,5508:392,-82,-59,0,0,0.0825462 -5096,5508:391,-81,-59,0,0,0.0857446 -5097,5508:390,-80,-59,0,0,0.0766839 -5098,5507:499,-79,-59,0,0,0.0778411 -5099,5507:498,-78,-59,0,0,0.0879363 -5100,5507:497,-77,-59,0,0,0.0968562 -5101,5507:496,-76,-59,0,0,0.0967123 -5102,5507:495,-75,-59,0,0,0.0933288 -5103,5507:394,-74,-59,0,0,0.0936684 -5104,5507:393,-73,-59,0,0,0.0948086 -5105,5507:392,-72,-59,0,0,0.0913995 -5106,5507:391,-71,-59,0,0,0.0853267 -5107,5507:390,-70,-59,0,0,0.0818795 -5108,5506:499,-69,-59,0,0,0.0791191 -5109,5506:498,-68,-59,0,0,0.0783886 -5110,5506:497,-67,-59,0,0,0.0795393 -5111,5506:496,-66,-59,0,0,0.082772 -5112,5506:495,-65,-59,0,0,0.0894895 -5113,5505:499,-59,-59,0,0,0.0801583 -5114,5505:498,-58,-59,0,0,0.078768 -5115,5505:497,-57,-59,0,0,0.0766475 -5116,5505:496,-56,-59,0,0,0.0752201 -5117,5505:495,-55,-59,0,0,0.0751486 -5118,5505:394,-54,-59,0,0,0.0750558 -5119,5505:393,-53,-59,0,0,0.0750416 -5120,5505:392,-52,-59,0,0,0.0750273 -5121,5505:391,-51,-59,0,0,0.0749916 -5122,5505:390,-50,-59,0,0,0.0749916 -5123,5504:499,-49,-59,0,0,0.0749988 -5124,5504:498,-48,-59,0,0,0.0749703 -5125,5504:497,-47,-59,0,0,0.0749631 -5126,5504:496,-46,-59,0,0,0.0749631 -5127,5504:495,-45,-59,0,0,0.0749562 -5128,5504:394,-44,-59,0,0,0.0749631 -5129,5504:393,-43,-59,0,0,0.0749631 -5130,5504:392,-42,-59,0,0,0.0749631 -5131,5504:391,-41,-59,0,0,0.0749703 -5132,5504:390,-40,-59,0,0,0.0749703 -5133,5503:499,-39,-59,0,0,0.0749775 -5134,5503:498,-38,-59,0,0,0.0749775 -5135,5503:497,-37,-59,0,0,0.0749775 -5136,5503:496,-36,-59,0,0,0.0749775 -5137,5503:495,-35,-59,0,0,0.0749775 -5138,5503:394,-34,-59,0,0,0.0749775 -5139,5503:393,-33,-59,0,0,0.0749775 -5140,5503:392,-32,-59,0,0,0.0749775 -5141,5503:391,-31,-59,0,0,0.0749846 -5142,5503:390,-30,-59,0,0,0.0749775 -5143,5502:499,-29,-59,0,0,0.0749775 -5144,5502:498,-28,-59,0,0,0.0749703 -5145,5502:497,-27,-59,0,0,0.0749703 -5146,5502:496,-26,-59,0,0,0.0749631 -5147,5502:495,-25,-59,0,0,0.0749631 -5148,5502:394,-24,-59,0,0,0.0749631 -5149,5502:393,-23,-59,0,0,0.0749562 -5150,5502:392,-22,-59,0,0,0.074949 -5151,5502:391,-21,-59,0,0,0.0749346 -5152,5502:390,-20,-59,0,0,0.0749205 -5153,5501:499,-19,-59,0,0,0.0749133 -5154,5501:498,-18,-59,0,0,0.0749062 -5155,5501:497,-17,-59,0,0,0.0748849 -5156,5501:496,-16,-59,0,0,0.0748705 -5157,5501:495,-15,-59,0,0,0.0748564 -5158,5501:394,-14,-59,0,0,0.0748564 -5159,5501:393,-13,-59,0,0,0.0748564 -5160,5501:392,-12,-59,0,0,0.0748564 -5161,5501:391,-11,-59,0,0,0.0748493 -5162,5501:390,-10,-59,0,0,0.0748564 -5163,5500:499,-9,-59,0,0,0.0748705 -5164,5500:498,-8,-59,0,0,0.0748705 -5165,5500:497,-7,-59,0,0,0.0748705 -5166,5500:496,-6,-59,0,0,0.0748636 -5167,5500:495,-5,-59,0,0,0.0748564 -5168,5500:394,-4,-59,0,0,0.0748636 -5169,5500:393,-3,-59,0,0,0.0748636 -5170,5500:392,-2,-59,0,0,0.0748705 -5171,5500:391,-1,-59,0,0,0.0748849 -5172,3500:391,0,-59,0,0,0.074892 -5173,3500:391,1,-59,0,0,0.0748705 -5174,3500:392,2,-59,0,0,0.0748636 -5175,3500:393,3,-59,0,0,0.0748636 -5176,3500:394,4,-59,0,0,0.0748705 -5177,3500:495,5,-59,0,0,0.0748849 -5178,3500:496,6,-59,0,0,0.074892 -5179,3500:497,7,-59,0,0,0.074892 -5180,3500:498,8,-59,0,0,0.0748849 -5181,3500:499,9,-59,0,0,0.074892 -5182,3501:390,10,-59,0,0,0.0748777 -5183,3501:391,11,-59,0,0,0.0748777 -5184,3501:392,12,-59,0,0,0.0748636 -5185,3501:393,13,-59,0,0,0.0748564 -5186,3501:394,14,-59,0,0,0.0748636 -5187,3501:495,15,-59,0,0,0.0748564 -5188,3501:496,16,-59,0,0,0.0748564 -5189,3501:497,17,-59,0,0,0.0748421 -5190,3501:498,18,-59,0,0,0.0748065 -5191,3501:499,19,-59,0,0,0.0747996 -5192,3502:390,20,-59,0,0,0.0748208 -5193,3502:391,21,-59,0,0,0.074828 -5194,3502:392,22,-59,0,0,0.0748137 -5195,3502:393,23,-59,0,0,0.0748137 -5196,3502:394,24,-59,0,0,0.0748208 -5197,3502:495,25,-59,0,0,0.074828 -5198,3502:496,26,-59,0,0,0.074828 -5199,3502:497,27,-59,0,0,0.074828 -5200,3502:498,28,-59,0,0,0.074828 -5201,3502:499,29,-59,0,0,0.074828 -5202,3503:390,30,-59,0,0,0.074828 -5203,3503:391,31,-59,0,0,0.0748137 -5204,3503:392,32,-59,0,0,0.074899 -5205,3503:393,33,-59,0,0,0.0749346 -5206,3503:394,34,-59,0,0,0.0749562 -5207,3503:495,35,-59,0,0,0.0749562 -5208,3503:496,36,-59,0,0,0.0749275 -5209,3503:497,37,-59,0,0,0.074892 -5210,3503:498,38,-59,0,0,0.0748777 -5211,3503:499,39,-59,0,0,0.0748636 -5212,3504:390,40,-59,0,0,0.0748777 -5213,3504:391,41,-59,0,0,0.074899 -5214,3504:392,42,-59,0,0,0.0749275 -5215,3504:393,43,-59,0,0,0.0749418 -5216,3504:394,44,-59,0,0,0.074949 -5217,3504:495,45,-59,0,0,0.0749562 -5218,3504:496,46,-59,0,0,0.0749846 -5219,3504:497,47,-59,0,0,0.0749988 -5220,3504:498,48,-59,0,0,0.0750273 -5221,3504:499,49,-59,0,0,0.0750558 -5222,3505:390,50,-59,0,0,0.075063 -5223,3505:391,51,-59,0,0,0.0751059 -5224,3505:392,52,-59,0,0,0.0751128 -5225,3505:393,53,-59,0,0,0.07512 -5226,3505:394,54,-59,0,0,0.0751272 -5227,3505:495,55,-59,0,0,0.0751059 -5228,3505:496,56,-59,0,0,0.0750843 -5229,3505:497,57,-59,0,0,0.0750558 -5230,3505:498,58,-59,0,0,0.0749775 -5231,3505:499,59,-59,0,0,0.074949 -5232,3506:390,60,-59,0,0,0.0749346 -5233,3506:391,61,-59,0,0,0.0749133 -5234,3506:392,62,-59,0,0,0.074949 -5235,3506:393,63,-59,0,0,0.0749418 -5236,3506:394,64,-59,0,0,0.0749703 -5237,3506:495,65,-59,0,0,0.0749703 -5238,3506:496,66,-59,0,0,0.0749703 -5239,3506:497,67,-59,0,0,0.0749562 -5240,3506:498,68,-59,0,0,0.074949 -5241,3506:499,69,-59,0,0,0.0749418 -5242,3507:390,70,-59,0,0,0.0749346 -5243,3507:391,71,-59,0,0,0.0749346 -5244,3507:392,72,-59,0,0,0.0749418 -5245,3507:394,74,-59,0,0,0.074949 -5246,3507:495,75,-59,0,0,0.0749562 -5247,3507:496,76,-59,0,0,0.074949 -5248,3507:497,77,-59,0,0,0.0749562 -5249,3507:498,78,-59,0,0,0.0749562 -5250,3507:499,79,-59,0,0,0.074949 -5251,3508:390,80,-59,0,0,0.0749631 -5252,3508:391,81,-59,0,0,0.0749916 -5253,3508:392,82,-59,0,0,0.0750273 -5254,3508:393,83,-59,0,0,0.0750558 -5255,3508:394,84,-59,0,0,0.0750773 -5256,3508:495,85,-59,0,0,0.0750702 -5257,3508:496,86,-59,0,0,0.0750702 -5258,3508:497,87,-59,0,0,0.0750843 -5259,3508:498,88,-59,0,0,0.075063 -5260,3508:499,89,-59,0,0,0.0750488 -5261,3509:390,90,-59,0,0,0.0750345 -5262,3509:391,91,-59,0,0,0.0750558 -5263,3509:392,92,-59,0,0,0.0750702 -5264,3509:393,93,-59,0,0,0.0750843 -5265,3509:394,94,-59,0,0,0.0751272 -5266,3509:495,95,-59,0,0,0.0751344 -5267,3510:390,100,-59,0,0,0.0754492 -5268,3510:391,101,-59,0,0,0.075313 -5269,3510:392,102,-59,0,0,0.0752487 -5270,3510:393,103,-59,0,0,0.0751416 -5271,3510:394,104,-59,0,0,0.0751416 -5272,3510:495,105,-59,0,0,0.0751416 -5273,3510:496,106,-59,0,0,0.0751915 -5274,3510:497,107,-59,0,0,0.0749916 -5275,3510:498,108,-59,0,0,0.0749418 -5276,3510:499,109,-59,0,0,0.0749562 -5277,3511:390,110,-59,0,0,0.0749846 -5278,3511:391,111,-59,0,0,0.0749916 -5279,3511:392,112,-59,0,0,0.0750201 -5280,3511:393,113,-59,0,0,0.075063 -5281,3511:394,114,-59,0,0,0.0750915 -5282,3511:495,115,-59,0,0,0.0750915 -5283,3511:496,116,-59,0,0,0.0750915 -5284,3511:497,117,-59,0,0,0.0750702 -5285,3511:498,118,-59,0,0,0.0750416 -5286,3511:499,119,-59,0,0,0.075006 -5287,3512:390,120,-59,0,0,0.075006 -5288,3512:391,121,-59,0,0,0.0750558 -5289,3512:392,122,-59,0,0,0.07527 -5290,3512:393,123,-59,0,0,0.0749846 -5291,3512:394,124,-59,0,0,0.0750201 -5292,3512:495,125,-59,0,0,0.0755854 -5293,3512:496,126,-59,0,0,0.0756787 -5294,3512:497,127,-59,0,0,0.0757722 -5295,3512:498,128,-59,0,0,0.0758586 -5296,3512:499,129,-59,0,0,0.0758298 -5297,3513:390,130,-59,0,0,0.0758515 -5298,3513:391,131,-59,0,0,0.0759811 -5299,3513:392,132,-59,0,0,0.0749205 -5300,3513:393,133,-59,0,0,0.0749275 -5301,3513:394,134,-59,0,0,0.0749703 -5302,3513:496,136,-59,0,0,0.0752129 -5303,3513:497,137,-59,0,0,0.0764296 -5304,3513:498,138,-59,0,0,0.0760317 -5305,3513:499,139,-59,0,0,0.0757795 -5306,3514:390,140,-59,0,0,0.0753703 -5307,3514:391,141,-59,0,0,0.075163 -5308,3514:392,142,-59,0,0,0.0749775 -5309,3514:393,143,-59,0,0,0.0748777 -5310,3514:394,144,-59,0,0,0.0749062 -5311,3514:495,145,-59,0,0,0.0749275 -5312,3514:496,146,-59,0,0,0.0749562 -5313,3514:497,147,-59,0,0,0.0749916 -5314,3514:498,148,-59,0,0,0.0749988 -5315,3514:499,149,-59,0,0,0.0750201 -5316,3515:390,150,-59,0,0,0.0749988 -5317,3515:391,151,-59,0,0,0.0750201 -5318,3515:392,152,-59,0,0,0.0750558 -5319,3515:393,153,-59,0,0,0.0750843 -5320,3515:394,154,-59,0,0,0.0750773 -5321,3515:495,155,-59,0,0,0.0750843 -5322,3515:496,156,-59,0,0,0.075063 -5323,3515:497,157,-59,0,0,0.0750416 -5324,3515:498,158,-59,0,0,0.0750345 -5325,3515:499,159,-59,0,0,0.0750201 -5326,3516:390,160,-59,0,0,0.0750345 -5327,3516:391,161,-59,0,0,0.0750201 -5328,3516:392,162,-59,0,0,0.0750558 -5329,3516:393,163,-59,0,0,0.0750773 -5330,3516:394,164,-59,0,0,0.0750843 -5331,3516:495,165,-59,0,0,0.0750915 -5332,3516:496,166,-59,0,0,0.0750773 -5333,3516:497,167,-59,0,0,0.0750773 -5334,3516:498,168,-59,0,0,0.0750773 -5335,3516:499,169,-59,0,0,0.075063 -5336,3517:390,170,-59,0,0,0.0750488 -5337,3517:391,171,-59,0,0,0.0751059 -5338,3517:392,172,-59,0,0,0.0751416 -5339,3517:393,173,-59,0,0,0.0750702 -5340,3517:394,174,-59,0,0,0.0750702 -5341,3517:495,175,-59,0,0,0.0750773 -5342,3517:496,176,-59,0,0,0.0750558 -5343,3517:497,177,-59,0,0,0.0750843 -5344,3517:498,178,-59,0,0,0.0752129 -5345,3517:499,179,-59,0,0,0.0753344 -5346,3518:390,180,-59,0,0,0.0776864 -5347,5518:380,-180,-58,0,0,0.0818408 -5348,5517:489,-179,-58,0,0,0.084584 -5349,5517:488,-178,-58,0,0,0.0898166 -5350,5517:487,-177,-58,0,0,0.089657 -5351,5517:486,-176,-58,0,0,0.0842902 -5352,5517:485,-175,-58,0,0,0.0836893 -5353,5517:384,-174,-58,0,0,0.0840999 -5354,5517:383,-173,-58,0,0,0.0840603 -5355,5517:382,-172,-58,0,0,0.0800675 -5356,5517:381,-171,-58,0,0,0.0776495 -5357,5517:380,-170,-58,0,0,0.0785521 -5358,5516:489,-169,-58,0,0,0.0799616 -5359,5516:488,-168,-58,0,0,0.0784852 -5360,5516:487,-167,-58,0,0,0.0766184 -5361,5516:486,-166,-58,0,0,0.0775026 -5362,5516:485,-165,-58,0,0,0.0790444 -5363,5516:384,-164,-58,0,0,0.0819491 -5364,5516:383,-163,-58,0,0,0.0834453 -5365,5516:382,-162,-58,0,0,0.0835949 -5366,5516:381,-161,-58,0,0,0.0842822 -5367,5516:380,-160,-58,0,0,0.0845522 -5368,5515:489,-159,-58,0,0,0.0846795 -5369,5515:488,-158,-58,0,0,0.084775 -5370,5515:487,-157,-58,0,0,0.0843457 -5371,5515:486,-156,-58,0,0,0.0833042 -5372,5515:485,-155,-58,0,0,0.0829987 -5373,5515:384,-154,-58,0,0,0.083163 -5374,5515:383,-153,-58,0,0,0.0839024 -5375,5515:382,-152,-58,0,0,0.0853027 -5376,5515:381,-151,-58,0,0,0.0853267 -5377,5515:380,-150,-58,0,0,0.0843059 -5378,5514:489,-149,-58,0,0,0.0844251 -5379,5514:488,-148,-58,0,0,0.0844569 -5380,5514:487,-147,-58,0,0,0.0849825 -5381,5514:486,-146,-58,0,0,0.0861239 -5382,5514:485,-145,-58,0,0,0.0869933 -5383,5514:384,-144,-58,0,0,0.0857367 -5384,5514:383,-143,-58,0,0,0.0860592 -5385,5514:382,-142,-58,0,0,0.0863183 -5386,5514:381,-141,-58,0,0,0.0890633 -5387,5514:380,-140,-58,0,0,0.087181 -5388,5513:489,-139,-58,0,0,0.0848867 -5389,5513:488,-138,-58,0,0,0.087895 -5390,5513:487,-137,-58,0,0,0.08903 -5391,5513:486,-136,-58,0,0,0.0866024 -5392,5513:485,-135,-58,0,0,0.0865374 -5393,5513:384,-134,-58,0,0,0.0919041 -5394,5513:383,-133,-58,0,0,0.0956496 -5395,5513:382,-132,-58,0,0,0.0973695 -5396,5513:381,-131,-58,0,0,0.0950645 -5397,5513:380,-130,-58,0,0,0.0941407 -5398,5512:489,-129,-58,0,0,0.0952857 -5399,5512:488,-128,-58,0,0,0.0993007 -5400,5512:487,-127,-58,0,0,0.101678 -5401,5512:486,-126,-58,0,0,0.102007 -5402,5512:485,-125,-58,0,0,0.100205 -5403,5512:384,-124,-58,0,0,0.100047 -5404,5512:383,-123,-58,0,0,0.100279 -5405,5512:382,-122,-58,0,0,0.0999183 -5406,5512:381,-121,-58,0,0,0.100363 -5407,5512:380,-120,-58,0,0,0.10053 -5408,5511:489,-119,-58,0,0,0.100307 -5409,5511:488,-118,-58,0,0,0.101584 -5410,5511:487,-117,-58,0,0,0.10263 -5411,5511:486,-116,-58,0,0,0.102876 -5412,5511:485,-115,-58,0,0,0.104779 -5413,5511:384,-114,-58,0,0,0.106321 -5414,5511:383,-113,-58,0,0,0.106987 -5415,5511:382,-112,-58,0,0,0.106379 -5416,5511:381,-111,-58,0,0,0.105039 -5417,5511:380,-110,-58,0,0,0.104471 -5418,5510:489,-109,-58,0,0,0.105184 -5419,5510:488,-108,-58,0,0,0.106653 -5420,5510:487,-107,-58,0,0,0.105039 -5421,5510:486,-106,-58,0,0,0.101847 -5422,5510:485,-105,-58,0,0,0.10039 -5423,5510:384,-104,-58,0,0,0.102158 -5424,5510:383,-103,-58,0,0,0.10337 -5425,5510:382,-102,-58,0,0,0.1004 -5426,5510:381,-101,-58,0,0,0.0978583 -5427,5510:380,-100,-58,0,0,0.0989706 -5428,5509:489,-99,-58,0,0,0.0998351 -5429,5509:488,-98,-58,0,0,0.0987781 -5430,5509:487,-97,-58,0,0,0.0998258 -5431,5509:486,-96,-58,0,0,0.0995767 -5432,5509:485,-95,-58,0,0,0.0971531 -5433,5509:384,-94,-58,0,0,0.0966496 -5434,5509:383,-93,-58,0,0,0.098486 -5435,5509:382,-92,-58,0,0,0.0926703 -5436,5509:381,-91,-58,0,0,0.0962555 -5437,5509:380,-90,-58,0,0,0.100716 -5438,5508:489,-89,-58,0,0,0.103332 -5439,5508:488,-88,-58,0,0,0.103676 -5440,5508:487,-87,-58,0,0,0.103752 -5441,5508:486,-86,-58,0,0,0.102479 -5442,5508:485,-85,-58,0,0,0.103361 -5443,5508:384,-84,-58,0,0,0.102337 -5444,5508:383,-83,-58,0,0,0.101257 -5445,5508:382,-82,-58,0,0,0.0910419 -5446,5508:381,-81,-58,0,0,0.0810186 -5447,5508:380,-80,-58,0,0,0.0852868 -5448,5507:489,-79,-58,0,0,0.0895731 -5449,5507:488,-78,-58,0,0,0.0977496 -5450,5507:487,-77,-58,0,0,0.100057 -5451,5507:486,-76,-58,0,0,0.100075 -5452,5507:485,-75,-58,0,0,0.0994295 -5453,5507:384,-74,-58,0,0,0.0989247 -5454,5507:383,-73,-58,0,0,0.0985132 -5455,5507:382,-72,-58,0,0,0.0945707 -5456,5507:381,-71,-58,0,0,0.0883243 -5457,5507:380,-70,-58,0,0,0.0850147 -5458,5506:489,-69,-58,0,0,0.0822278 -5459,5506:488,-68,-58,0,0,0.0799088 -5460,5506:487,-67,-58,0,0,0.0788725 -5461,5506:486,-66,-58,0,0,0.0787009 -5462,5506:485,-65,-58,0,0,0.083367 -5463,5506:384,-64,-58,0,0,0.0901108 -5464,5506:383,-63,-58,0,0,0.0913826 -5465,5506:382,-62,-58,0,0,0.0934071 -5466,5505:488,-58,-58,0,0,0.0794868 -5467,5505:486,-56,-58,0,0,0.0778265 -5468,5505:485,-55,-58,0,0,0.0767056 -5469,5505:384,-54,-58,0,0,0.0750416 -5470,5505:383,-53,-58,0,0,0.0750488 -5471,5505:382,-52,-58,0,0,0.0750416 -5472,5505:381,-51,-58,0,0,0.0750201 -5473,5505:380,-50,-58,0,0,0.0749988 -5474,5504:489,-49,-58,0,0,0.0750131 -5475,5504:488,-48,-58,0,0,0.0749775 -5476,5504:487,-47,-58,0,0,0.0749631 -5477,5504:486,-46,-58,0,0,0.0749562 -5478,5504:485,-45,-58,0,0,0.0749562 -5479,5504:384,-44,-58,0,0,0.0749631 -5480,5504:383,-43,-58,0,0,0.0749631 -5481,5504:382,-42,-58,0,0,0.0749631 -5482,5504:381,-41,-58,0,0,0.0749631 -5483,5504:380,-40,-58,0,0,0.0749703 -5484,5503:489,-39,-58,0,0,0.0749775 -5485,5503:488,-38,-58,0,0,0.0749846 -5486,5503:487,-37,-58,0,0,0.0749916 -5487,5503:486,-36,-58,0,0,0.0749916 -5488,5503:485,-35,-58,0,0,0.0749916 -5489,5503:384,-34,-58,0,0,0.0749916 -5490,5503:383,-33,-58,0,0,0.0749916 -5491,5503:382,-32,-58,0,0,0.0749916 -5492,5503:381,-31,-58,0,0,0.0749916 -5493,5503:380,-30,-58,0,0,0.0749846 -5494,5502:489,-29,-58,0,0,0.0749846 -5495,5502:488,-28,-58,0,0,0.0749846 -5496,5502:487,-27,-58,0,0,0.0749775 -5497,5502:486,-26,-58,0,0,0.0749775 -5498,5502:485,-25,-58,0,0,0.0749703 -5499,5502:384,-24,-58,0,0,0.0749631 -5500,5502:383,-23,-58,0,0,0.0749562 -5501,5502:382,-22,-58,0,0,0.074949 -5502,5502:381,-21,-58,0,0,0.0749418 -5503,5502:380,-20,-58,0,0,0.0749275 -5504,5501:489,-19,-58,0,0,0.0749062 -5505,5501:488,-18,-58,0,0,0.074892 -5506,5501:487,-17,-58,0,0,0.0748777 -5507,5501:486,-16,-58,0,0,0.0748564 -5508,5501:485,-15,-58,0,0,0.0748493 -5509,5501:384,-14,-58,0,0,0.0748493 -5510,5501:383,-13,-58,0,0,0.0748493 -5511,5501:382,-12,-58,0,0,0.0748564 -5512,5501:381,-11,-58,0,0,0.0748636 -5513,5501:380,-10,-58,0,0,0.0748636 -5514,5500:489,-9,-58,0,0,0.0748777 -5515,5500:488,-8,-58,0,0,0.0748849 -5516,5500:487,-7,-58,0,0,0.0748849 -5517,5500:486,-6,-58,0,0,0.0748636 -5518,5500:485,-5,-58,0,0,0.0748564 -5519,5500:384,-4,-58,0,0,0.0748493 -5520,5500:383,-3,-58,0,0,0.0748421 -5521,5500:382,-2,-58,0,0,0.0748564 -5522,5500:381,-1,-58,0,0,0.0748777 -5523,3500:381,0,-58,0,0,0.074892 -5524,3500:381,1,-58,0,0,0.0749062 -5525,3500:382,2,-58,0,0,0.0748777 -5526,3500:383,3,-58,0,0,0.0748636 -5527,3500:384,4,-58,0,0,0.0748705 -5528,3500:485,5,-58,0,0,0.0748849 -5529,3500:486,6,-58,0,0,0.074899 -5530,3500:487,7,-58,0,0,0.0749062 -5531,3500:488,8,-58,0,0,0.0749275 -5532,3500:489,9,-58,0,0,0.0749418 -5533,3501:380,10,-58,0,0,0.0749562 -5534,3501:381,11,-58,0,0,0.0749631 -5535,3501:382,12,-58,0,0,0.0749562 -5536,3501:383,13,-58,0,0,0.074949 -5537,3501:384,14,-58,0,0,0.0748777 -5538,3501:485,15,-58,0,0,0.0748493 -5539,3501:486,16,-58,0,0,0.0748137 -5540,3501:487,17,-58,0,0,0.0747852 -5541,3501:488,18,-58,0,0,0.0747711 -5542,3501:489,19,-58,0,0,0.0747711 -5543,3502:380,20,-58,0,0,0.0747781 -5544,3502:381,21,-58,0,0,0.0747781 -5545,3502:382,22,-58,0,0,0.0747781 -5546,3502:383,23,-58,0,0,0.0747711 -5547,3502:384,24,-58,0,0,0.0747781 -5548,3502:485,25,-58,0,0,0.074764 -5549,3502:486,26,-58,0,0,0.0748208 -5550,3502:487,27,-58,0,0,0.0748493 -5551,3502:488,28,-58,0,0,0.0748849 -5552,3502:489,29,-58,0,0,0.0749275 -5553,3503:380,30,-58,0,0,0.0749775 -5554,3503:381,31,-58,0,0,0.0749703 -5555,3503:382,32,-58,0,0,0.0748705 -5556,3503:383,33,-58,0,0,0.0749062 -5557,3503:384,34,-58,0,0,0.0749133 -5558,3503:485,35,-58,0,0,0.0749062 -5559,3503:486,36,-58,0,0,0.0749062 -5560,3503:487,37,-58,0,0,0.0748705 -5561,3503:488,38,-58,0,0,0.0748421 -5562,3503:489,39,-58,0,0,0.0748349 -5563,3504:380,40,-58,0,0,0.0748349 -5564,3504:381,41,-58,0,0,0.074828 -5565,3504:382,42,-58,0,0,0.0748493 -5566,3504:383,43,-58,0,0,0.0748849 -5567,3504:384,44,-58,0,0,0.0749133 -5568,3504:485,45,-58,0,0,0.0749275 -5569,3504:486,46,-58,0,0,0.0749346 -5570,3504:487,47,-58,0,0,0.0749418 -5571,3504:488,48,-58,0,0,0.0749631 -5572,3504:489,49,-58,0,0,0.0749562 -5573,3505:380,50,-58,0,0,0.0749775 -5574,3505:381,51,-58,0,0,0.0749775 -5575,3505:382,52,-58,0,0,0.0750201 -5576,3505:383,53,-58,0,0,0.0750201 -5577,3505:384,54,-58,0,0,0.0750273 -5578,3505:485,55,-58,0,0,0.0750131 -5579,3505:486,56,-58,0,0,0.0749775 -5580,3505:487,57,-58,0,0,0.0749562 -5581,3505:488,58,-58,0,0,0.0749418 -5582,3505:489,59,-58,0,0,0.0749346 -5583,3506:380,60,-58,0,0,0.0749275 -5584,3506:381,61,-58,0,0,0.0749133 -5585,3506:382,62,-58,0,0,0.0750273 -5586,3506:383,63,-58,0,0,0.0749133 -5587,3506:384,64,-58,0,0,0.0749275 -5588,3506:485,65,-58,0,0,0.0749418 -5589,3506:486,66,-58,0,0,0.0749562 -5590,3506:487,67,-58,0,0,0.0749703 -5591,3506:488,68,-58,0,0,0.0749703 -5592,3506:489,69,-58,0,0,0.074949 -5593,3507:380,70,-58,0,0,0.0749205 -5594,3507:381,71,-58,0,0,0.074892 -5595,3507:382,72,-58,0,0,0.074899 -5596,3507:384,74,-58,0,0,0.0749562 -5597,3507:485,75,-58,0,0,0.0749275 -5598,3507:486,76,-58,0,0,0.074899 -5599,3507:487,77,-58,0,0,0.0749133 -5600,3507:488,78,-58,0,0,0.0749205 -5601,3507:489,79,-58,0,0,0.0749418 -5602,3508:380,80,-58,0,0,0.074949 -5603,3508:381,81,-58,0,0,0.0749346 -5604,3508:382,82,-58,0,0,0.0749346 -5605,3508:383,83,-58,0,0,0.0749846 -5606,3508:384,84,-58,0,0,0.0749916 -5607,3508:485,85,-58,0,0,0.0749846 -5608,3508:486,86,-58,0,0,0.0749846 -5609,3508:487,87,-58,0,0,0.0749846 -5610,3508:488,88,-58,0,0,0.0749631 -5611,3508:489,89,-58,0,0,0.0751771 -5612,3509:380,90,-58,0,0,0.0758803 -5613,3509:381,91,-58,0,0,0.0749916 -5614,3509:382,92,-58,0,0,0.075006 -5615,3509:383,93,-58,0,0,0.0750273 -5616,3509:384,94,-58,0,0,0.0750488 -5617,3509:485,95,-58,0,0,0.0750702 -5618,3509:486,96,-58,0,0,0.0751128 -5619,3509:487,97,-58,0,0,0.0751701 -5620,3509:488,98,-58,0,0,0.0752129 -5621,3509:489,99,-58,0,0,0.0752487 -5622,3510:380,100,-58,0,0,0.0751128 -5623,3510:381,101,-58,0,0,0.0750843 -5624,3510:382,102,-58,0,0,0.0750843 -5625,3510:383,103,-58,0,0,0.075063 -5626,3510:384,104,-58,0,0,0.0750558 -5627,3510:485,105,-58,0,0,0.0750273 -5628,3510:486,106,-58,0,0,0.075006 -5629,3510:487,107,-58,0,0,0.0749846 -5630,3510:488,108,-58,0,0,0.0749775 -5631,3510:489,109,-58,0,0,0.0749775 -5632,3511:380,110,-58,0,0,0.0749846 -5633,3511:381,111,-58,0,0,0.0749775 -5634,3511:382,112,-58,0,0,0.0749562 -5635,3511:383,113,-58,0,0,0.0749846 -5636,3511:384,114,-58,0,0,0.0750131 -5637,3511:485,115,-58,0,0,0.075006 -5638,3511:486,116,-58,0,0,0.0749988 -5639,3511:487,117,-58,0,0,0.0750702 -5640,3511:488,118,-58,0,0,0.0753489 -5641,3511:489,119,-58,0,0,0.0773192 -5642,3512:380,120,-58,0,0,0.0819182 -5643,3512:381,121,-58,0,0,0.0841872 -5644,3512:382,122,-58,0,0,0.0844251 -5645,3512:383,123,-58,0,0,0.084775 -5646,3512:384,124,-58,0,0,0.0836814 -5647,3512:485,125,-58,0,0,0.0772092 -5648,3512:486,126,-58,0,0,0.0794491 -5649,3512:487,127,-58,0,0,0.076234 -5650,3512:488,128,-58,0,0,0.0765384 -5651,3512:489,129,-58,0,0,0.0774584 -5652,3513:380,130,-58,0,0,0.0779296 -5653,3513:381,131,-58,0,0,0.0768076 -5654,3513:382,132,-58,0,0,0.0752916 -5655,3513:383,133,-58,0,0,0.0753203 -5656,3513:384,134,-58,0,0,0.0755207 -5657,3513:485,135,-58,0,0,0.0756355 -5658,3513:486,136,-58,0,0,0.0756932 -5659,3513:487,137,-58,0,0,0.07565 -5660,3513:488,138,-58,0,0,0.0755926 -5661,3513:489,139,-58,0,0,0.0755639 -5662,3514:380,140,-58,0,0,0.0758443 -5663,3514:381,141,-58,0,0,0.0761327 -5664,3514:382,142,-58,0,0,0.0762413 -5665,3514:383,143,-58,0,0,0.0763137 -5666,3514:384,144,-58,0,0,0.0769462 -5667,3514:485,145,-58,0,0,0.0766475 -5668,3514:486,146,-58,0,0,0.0770046 -5669,3514:487,147,-58,0,0,0.075765 -5670,3514:488,148,-58,0,0,0.0753489 -5671,3514:489,149,-58,0,0,0.0755998 -5672,3515:380,150,-58,0,0,0.0752916 -5673,3515:381,151,-58,0,0,0.0750558 -5674,3515:382,152,-58,0,0,0.0750201 -5675,3515:383,153,-58,0,0,0.0751486 -5676,3515:384,154,-58,0,0,0.0750702 -5677,3515:485,155,-58,0,0,0.0750987 -5678,3515:486,156,-58,0,0,0.0750702 -5679,3515:487,157,-58,0,0,0.0750488 -5680,3515:488,158,-58,0,0,0.0750416 -5681,3515:489,159,-58,0,0,0.0750345 -5682,3516:380,160,-58,0,0,0.0750558 -5683,3516:381,161,-58,0,0,0.0750488 -5684,3516:382,162,-58,0,0,0.075063 -5685,3516:383,163,-58,0,0,0.0750843 -5686,3516:384,164,-58,0,0,0.0750843 -5687,3516:485,165,-58,0,0,0.0750702 -5688,3516:486,166,-58,0,0,0.0750987 -5689,3516:487,167,-58,0,0,0.0751059 -5690,3516:488,168,-58,0,0,0.0750987 -5691,3516:489,169,-58,0,0,0.0750915 -5692,3517:380,170,-58,0,0,0.0750702 -5693,3517:381,171,-58,0,0,0.0752559 -5694,3517:382,172,-58,0,0,0.0755854 -5695,3517:383,173,-58,0,0,0.075528 -5696,3517:384,174,-58,0,0,0.0751701 -5697,3517:485,175,-58,0,0,0.0751059 -5698,3517:486,176,-58,0,0,0.0774291 -5699,3517:487,177,-58,0,0,0.0803479 -5700,3517:488,178,-58,0,0,0.0784777 -5701,3517:489,179,-58,0,0,0.0764659 -5702,3518:380,180,-58,0,0,0.0818408 -5703,5518:370,-180,-57,0,0,0.0915705 -5704,5517:479,-179,-57,0,0,0.0912632 -5705,5517:478,-178,-57,0,0,0.0919986 -5706,5517:477,-177,-57,0,0,0.0913909 -5707,5517:476,-176,-57,0,0,0.0899762 -5708,5517:475,-175,-57,0,0,0.0895396 -5709,5517:374,-174,-57,0,0,0.0876071 -5710,5517:373,-173,-57,0,0,0.0861565 -5711,5517:372,-172,-57,0,0,0.0849267 -5712,5517:371,-171,-57,0,0,0.0846875 -5713,5517:370,-170,-57,0,0,0.0871157 -5714,5516:479,-169,-57,0,0,0.0828892 -5715,5516:478,-168,-57,0,0,0.0818255 -5716,5516:477,-167,-57,0,0,0.0801357 -5717,5516:476,-166,-57,0,0,0.0788502 -5718,5516:475,-165,-57,0,0,0.0793366 -5719,5516:374,-164,-57,0,0,0.0808504 -5720,5516:373,-163,-57,0,0,0.0821656 -5721,5516:372,-162,-57,0,0,0.0839735 -5722,5516:371,-161,-57,0,0,0.084576 -5723,5516:370,-160,-57,0,0,0.0849347 -5724,5515:479,-159,-57,0,0,0.085648 -5725,5515:478,-158,-57,0,0,0.0860109 -5726,5515:477,-157,-57,0,0,0.0855435 -5727,5515:476,-156,-57,0,0,0.0848548 -5728,5515:475,-155,-57,0,0,0.084839 -5729,5515:374,-154,-57,0,0,0.0845602 -5730,5515:373,-153,-57,0,0,0.0844806 -5731,5515:372,-152,-57,0,0,0.0850786 -5732,5515:371,-151,-57,0,0,0.0852626 -5733,5515:370,-150,-57,0,0,0.0882168 -5734,5514:479,-149,-57,0,0,0.0860837 -5735,5514:478,-148,-57,0,0,0.0846795 -5736,5514:477,-147,-57,0,0,0.0860028 -5737,5514:476,-146,-57,0,0,0.0891717 -5738,5514:475,-145,-57,0,0,0.0893639 -5739,5514:374,-144,-57,0,0,0.0894561 -5740,5514:373,-143,-57,0,0,0.0884567 -5741,5514:372,-142,-57,0,0,0.0898081 -5742,5514:371,-141,-57,0,0,0.0917159 -5743,5514:370,-140,-57,0,0,0.0890969 -5744,5513:479,-139,-57,0,0,0.0930771 -5745,5513:478,-138,-57,0,0,0.0958986 -5746,5513:477,-137,-57,0,0,0.0950912 -5747,5513:476,-136,-57,0,0,0.0909228 -5748,5513:475,-135,-57,0,0,0.092489 -5749,5513:374,-134,-57,0,0,0.0966228 -5750,5513:373,-133,-57,0,0,0.0979763 -5751,5513:372,-132,-57,0,0,0.0996966 -5752,5513:371,-131,-57,0,0,0.099586 -5753,5513:370,-130,-57,0,0,0.0992458 -5754,5512:479,-129,-57,0,0,0.100344 -5755,5512:478,-128,-57,0,0,0.10136 -5756,5512:477,-127,-57,0,0,0.102082 -5757,5512:476,-126,-57,0,0,0.103247 -5758,5512:475,-125,-57,0,0,0.10228 -5759,5512:374,-124,-57,0,0,0.100911 -5760,5512:373,-123,-57,0,0,0.0999736 -5761,5512:372,-122,-57,0,0,0.100474 -5762,5512:371,-121,-57,0,0,0.101182 -5763,5512:370,-120,-57,0,0,0.10319 -5764,5511:479,-119,-57,0,0,0.103028 -5765,5511:478,-118,-57,0,0,0.104327 -5766,5511:477,-117,-57,0,0,0.106507 -5767,5511:476,-116,-57,0,0,0.108667 -5768,5511:475,-115,-57,0,0,0.107587 -5769,5511:374,-114,-57,0,0,0.110714 -5770,5511:373,-113,-57,0,0,0.11117 -5771,5511:372,-112,-57,0,0,0.112322 -5772,5511:371,-111,-57,0,0,0.109756 -5773,5511:370,-110,-57,0,0,0.106331 -5774,5510:479,-109,-57,0,0,0.108071 -5775,5510:478,-108,-57,0,0,0.11037 -5776,5510:477,-107,-57,0,0,0.110562 -5777,5510:476,-106,-57,0,0,0.110249 -5778,5510:475,-105,-57,0,0,0.109566 -5779,5510:374,-104,-57,0,0,0.108687 -5780,5510:373,-103,-57,0,0,0.107429 -5781,5510:372,-102,-57,0,0,0.104077 -5782,5510:371,-101,-57,0,0,0.101556 -5783,5510:370,-100,-57,0,0,0.103323 -5784,5509:479,-99,-57,0,0,0.102649 -5785,5509:478,-98,-57,0,0,0.100112 -5786,5509:477,-97,-57,0,0,0.099586 -5787,5509:476,-96,-57,0,0,0.100818 -5788,5509:475,-95,-57,0,0,0.0996136 -5789,5509:374,-94,-57,0,0,0.0997334 -5790,5509:373,-93,-57,0,0,0.100455 -5791,5509:372,-92,-57,0,0,0.100958 -5792,5509:371,-91,-57,0,0,0.0986869 -5793,5509:370,-90,-57,0,0,0.102148 -5794,5508:479,-89,-57,0,0,0.101763 -5795,5508:478,-88,-57,0,0,0.107016 -5796,5508:477,-87,-57,0,0,0.110774 -5797,5508:476,-86,-57,0,0,0.108468 -5798,5508:475,-85,-57,0,0,0.103991 -5799,5508:374,-84,-57,0,0,0.103609 -5800,5508:373,-83,-57,0,0,0.105339 -5801,5508:372,-82,-57,0,0,0.106448 -5802,5508:371,-81,-57,0,0,0.100874 -5803,5508:370,-80,-57,0,0,0.0867406 -5804,5507:479,-79,-57,0,0,0.0863265 -5805,5507:478,-78,-57,0,0,0.088316 -5806,5507:477,-77,-57,0,0,0.0939216 -5807,5507:476,-76,-57,0,0,0.100011 -5808,5507:475,-75,-57,0,0,0.0989614 -5809,5507:374,-74,-57,0,0,0.100409 -5810,5507:373,-73,-57,0,0,0.10196 -5811,5507:372,-72,-57,0,0,0.100298 -5812,5507:371,-71,-57,0,0,0.0977767 -5813,5507:370,-70,-57,0,0,0.092558 -5814,5506:479,-69,-57,0,0,0.0889802 -5815,5506:478,-68,-57,0,0,0.0819335 -5816,5506:477,-67,-57,0,0,0.0851426 -5817,5506:476,-66,-57,0,0,0.0820652 -5818,5506:475,-65,-57,0,0,0.0817328 -5819,5506:374,-64,-57,0,0,0.0815943 -5820,5506:373,-63,-57,0,0,0.081548 -5821,5506:372,-62,-57,0,0,0.0876976 -5822,5506:371,-61,-57,0,0,0.0820574 -5823,5506:370,-60,-57,0,0,0.0871483 -5824,5505:477,-57,-57,0,0,0.0793666 -5825,5505:476,-56,-57,0,0,0.0771141 -5826,5505:475,-55,-57,0,0,0.0766111 -5827,5505:374,-54,-57,0,0,0.0759379 -5828,5505:373,-53,-57,0,0,0.07565 -5829,5505:372,-52,-57,0,0,0.0749775 -5830,5505:371,-51,-57,0,0,0.0750273 -5831,5505:370,-50,-57,0,0,0.0750131 -5832,5504:479,-49,-57,0,0,0.0749988 -5833,5504:478,-48,-57,0,0,0.0749846 -5834,5504:477,-47,-57,0,0,0.0749703 -5835,5504:476,-46,-57,0,0,0.0749703 -5836,5504:475,-45,-57,0,0,0.0749775 -5837,5504:374,-44,-57,0,0,0.0749703 -5838,5504:373,-43,-57,0,0,0.074949 -5839,5504:372,-42,-57,0,0,0.0749418 -5840,5504:371,-41,-57,0,0,0.074949 -5841,5504:370,-40,-57,0,0,0.0749562 -5842,5503:479,-39,-57,0,0,0.0749631 -5843,5503:478,-38,-57,0,0,0.0749631 -5844,5503:477,-37,-57,0,0,0.0749703 -5845,5503:476,-36,-57,0,0,0.0749775 -5846,5503:475,-35,-57,0,0,0.0749916 -5847,5503:374,-34,-57,0,0,0.0749988 -5848,5503:373,-33,-57,0,0,0.0749988 -5849,5503:372,-32,-57,0,0,0.0749988 -5850,5503:371,-31,-57,0,0,0.0749916 -5851,5503:370,-30,-57,0,0,0.0749916 -5852,5502:479,-29,-57,0,0,0.0749916 -5853,5502:478,-28,-57,0,0,0.0749916 -5854,5502:477,-27,-57,0,0,0.0749846 -5855,5502:476,-26,-57,0,0,0.0749846 -5856,5502:475,-25,-57,0,0,0.0749775 -5857,5502:374,-24,-57,0,0,0.0749703 -5858,5502:373,-23,-57,0,0,0.0749631 -5859,5502:372,-22,-57,0,0,0.074949 -5860,5502:371,-21,-57,0,0,0.0749346 -5861,5502:370,-20,-57,0,0,0.0749205 -5862,5501:479,-19,-57,0,0,0.074899 -5863,5501:478,-18,-57,0,0,0.0748777 -5864,5501:477,-17,-57,0,0,0.0748636 -5865,5501:476,-16,-57,0,0,0.0748564 -5866,5501:475,-15,-57,0,0,0.0748493 -5867,5501:374,-14,-57,0,0,0.0748493 -5868,5501:373,-13,-57,0,0,0.0748564 -5869,5501:372,-12,-57,0,0,0.0748564 -5870,5501:371,-11,-57,0,0,0.0748705 -5871,5501:370,-10,-57,0,0,0.0748777 -5872,5500:479,-9,-57,0,0,0.0748705 -5873,5500:478,-8,-57,0,0,0.0748705 -5874,5500:477,-7,-57,0,0,0.0748705 -5875,5500:476,-6,-57,0,0,0.0748705 -5876,5500:475,-5,-57,0,0,0.0748636 -5877,5500:374,-4,-57,0,0,0.0748564 -5878,5500:373,-3,-57,0,0,0.0748493 -5879,5500:372,-2,-57,0,0,0.0748564 -5880,5500:371,-1,-57,0,0,0.0748564 -5881,3500:371,0,-57,0,0,0.0748636 -5882,3500:371,1,-57,0,0,0.0748705 -5883,3500:372,2,-57,0,0,0.074892 -5884,3500:373,3,-57,0,0,0.0748849 -5885,3500:374,4,-57,0,0,0.0748777 -5886,3500:475,5,-57,0,0,0.0748777 -5887,3500:476,6,-57,0,0,0.074892 -5888,3500:477,7,-57,0,0,0.0749062 -5889,3500:478,8,-57,0,0,0.0749133 -5890,3500:479,9,-57,0,0,0.0749275 -5891,3501:370,10,-57,0,0,0.074949 -5892,3501:371,11,-57,0,0,0.0749703 -5893,3501:372,12,-57,0,0,0.0749562 -5894,3501:373,13,-57,0,0,0.0749562 -5895,3501:374,14,-57,0,0,0.0749562 -5896,3501:475,15,-57,0,0,0.0749133 -5897,3501:476,16,-57,0,0,0.0748636 -5898,3501:477,17,-57,0,0,0.0748349 -5899,3501:478,18,-57,0,0,0.0747711 -5900,3501:479,19,-57,0,0,0.0747425 -5901,3502:370,20,-57,0,0,0.0748137 -5902,3502:371,21,-57,0,0,0.0748065 -5903,3502:372,22,-57,0,0,0.074764 -5904,3502:373,23,-57,0,0,0.074764 -5905,3502:374,24,-57,0,0,0.074764 -5906,3502:475,25,-57,0,0,0.0747497 -5907,3502:476,26,-57,0,0,0.074892 -5908,3502:477,27,-57,0,0,0.0750558 -5909,3502:478,28,-57,0,0,0.0753272 -5910,3502:479,29,-57,0,0,0.0753344 -5911,3503:370,30,-57,0,0,0.0752273 -5912,3503:371,31,-57,0,0,0.0751987 -5913,3503:372,32,-57,0,0,0.0750843 -5914,3503:373,33,-57,0,0,0.0748137 -5915,3503:374,34,-57,0,0,0.0748493 -5916,3503:475,35,-57,0,0,0.0748636 -5917,3503:476,36,-57,0,0,0.0748705 -5918,3503:477,37,-57,0,0,0.0748705 -5919,3503:478,38,-57,0,0,0.0748636 -5920,3503:479,39,-57,0,0,0.0748564 -5921,3504:370,40,-57,0,0,0.074828 -5922,3504:371,41,-57,0,0,0.0748493 -5923,3504:372,42,-57,0,0,0.0749062 -5924,3504:373,43,-57,0,0,0.0749631 -5925,3504:374,44,-57,0,0,0.0748349 -5926,3504:475,45,-57,0,0,0.0748493 -5927,3504:476,46,-57,0,0,0.0748705 -5928,3504:477,47,-57,0,0,0.0748777 -5929,3504:478,48,-57,0,0,0.0748705 -5930,3504:479,49,-57,0,0,0.0748705 -5931,3505:370,50,-57,0,0,0.0748849 -5932,3505:371,51,-57,0,0,0.0749062 -5933,3505:372,52,-57,0,0,0.0749133 -5934,3505:373,53,-57,0,0,0.0749275 -5935,3505:374,54,-57,0,0,0.0749346 -5936,3505:475,55,-57,0,0,0.0749275 -5937,3505:476,56,-57,0,0,0.0749775 -5938,3505:477,57,-57,0,0,0.0749346 -5939,3505:478,58,-57,0,0,0.0749418 -5940,3505:479,59,-57,0,0,0.0749418 -5941,3506:370,60,-57,0,0,0.0749418 -5942,3506:371,61,-57,0,0,0.0749631 -5943,3506:372,62,-57,0,0,0.0749562 -5944,3506:373,63,-57,0,0,0.0749562 -5945,3506:374,64,-57,0,0,0.0749631 -5946,3506:475,65,-57,0,0,0.0749703 -5947,3506:476,66,-57,0,0,0.0749846 -5948,3506:477,67,-57,0,0,0.0749916 -5949,3506:478,68,-57,0,0,0.0749775 -5950,3506:479,69,-57,0,0,0.0750131 -5951,3507:370,70,-57,0,0,0.0749562 -5952,3507:371,71,-57,0,0,0.0751059 -5953,3507:372,72,-57,0,0,0.0749275 -5954,3507:374,74,-57,0,0,0.0752559 -5955,3507:475,75,-57,0,0,0.0757937 -5956,3507:476,76,-57,0,0,0.0749846 -5957,3507:477,77,-57,0,0,0.074899 -5958,3507:478,78,-57,0,0,0.0753417 -5959,3507:479,79,-57,0,0,0.0749916 -5960,3508:370,80,-57,0,0,0.0749631 -5961,3508:371,81,-57,0,0,0.0750273 -5962,3508:372,82,-57,0,0,0.075063 -5963,3508:373,83,-57,0,0,0.0754562 -5964,3508:374,84,-57,0,0,0.0748705 -5965,3508:475,85,-57,0,0,0.0749346 -5966,3508:476,86,-57,0,0,0.0749418 -5967,3508:477,87,-57,0,0,0.0749346 -5968,3508:478,88,-57,0,0,0.074892 -5969,3508:479,89,-57,0,0,0.0755424 -5970,3509:370,90,-57,0,0,0.0758155 -5971,3509:371,91,-57,0,0,0.0770046 -5972,3509:372,92,-57,0,0,0.0764296 -5973,3509:373,93,-57,0,0,0.0754779 -5974,3509:374,94,-57,0,0,0.0749916 -5975,3509:475,95,-57,0,0,0.0750201 -5976,3509:476,96,-57,0,0,0.0750416 -5977,3509:477,97,-57,0,0,0.075063 -5978,3509:478,98,-57,0,0,0.0750702 -5979,3509:479,99,-57,0,0,0.0750773 -5980,3510:370,100,-57,0,0,0.0750773 -5981,3510:371,101,-57,0,0,0.075063 -5982,3510:372,102,-57,0,0,0.0750488 -5983,3510:373,103,-57,0,0,0.075006 -5984,3510:374,104,-57,0,0,0.075006 -5985,3510:475,105,-57,0,0,0.0750131 -5986,3510:476,106,-57,0,0,0.0749916 -5987,3510:477,107,-57,0,0,0.0749916 -5988,3510:478,108,-57,0,0,0.0749916 -5989,3510:479,109,-57,0,0,0.0749846 -5990,3511:370,110,-57,0,0,0.0749631 -5991,3511:371,111,-57,0,0,0.0749562 -5992,3511:372,112,-57,0,0,0.0749631 -5993,3511:373,113,-57,0,0,0.0749346 -5994,3511:374,114,-57,0,0,0.0757722 -5995,3511:475,115,-57,0,0,0.0779075 -5996,3511:476,116,-57,0,0,0.0752415 -5997,3511:477,117,-57,0,0,0.0751558 -5998,3511:478,118,-57,0,0,0.0784555 -5999,3511:479,119,-57,0,0,0.0795921 -6000,3512:370,120,-57,0,0,0.0804619 -6001,3512:371,121,-57,0,0,0.0847113 -6002,3512:372,122,-57,0,0,0.0877551 -6003,3512:373,123,-57,0,0,0.0883079 -6004,3512:374,124,-57,0,0,0.0889802 -6005,3512:475,125,-57,0,0,0.0891717 -6006,3512:476,126,-57,0,0,0.0889469 -6007,3512:477,127,-57,0,0,0.0878704 -6008,3512:478,128,-57,0,0,0.0874676 -6009,3512:479,129,-57,0,0,0.0853911 -6010,3513:370,130,-57,0,0,0.0864725 -6011,3513:371,131,-57,0,0,0.0867814 -6012,3513:372,132,-57,0,0,0.0906516 -6013,3513:373,133,-57,0,0,0.08959 -6014,3513:374,134,-57,0,0,0.0781663 -6015,3513:475,135,-57,0,0,0.0827956 -6016,3513:476,136,-57,0,0,0.0795168 -6017,3513:477,137,-57,0,0,0.0800599 -6018,3513:478,138,-57,0,0,0.0754562 -6019,3513:479,139,-57,0,0,0.0753703 -6020,3514:370,140,-57,0,0,0.0765166 -6021,3514:371,141,-57,0,0,0.0780775 -6022,3514:372,142,-57,0,0,0.079577 -6023,3514:373,143,-57,0,0,0.0798634 -6024,3514:374,144,-57,0,0,0.0796146 -6025,3514:475,145,-57,0,0,0.0822899 -6026,3514:476,146,-57,0,0,0.0803785 -6027,3514:477,147,-57,0,0,0.0760606 -6028,3514:478,148,-57,0,0,0.0759019 -6029,3514:479,149,-57,0,0,0.0756141 -6030,3515:370,150,-57,0,0,0.0756787 -6031,3515:371,151,-57,0,0,0.075686 -6032,3515:372,152,-57,0,0,0.0754275 -6033,3515:373,153,-57,0,0,0.0753203 -6034,3515:374,154,-57,0,0,0.0753489 -6035,3515:475,155,-57,0,0,0.0752343 -6036,3515:476,156,-57,0,0,0.0751558 -6037,3515:477,157,-57,0,0,0.0750773 -6038,3515:478,158,-57,0,0,0.0750773 -6039,3515:479,159,-57,0,0,0.075063 -6040,3516:370,160,-57,0,0,0.0750702 -6041,3516:371,161,-57,0,0,0.0750773 -6042,3516:372,162,-57,0,0,0.0750702 -6043,3516:373,163,-57,0,0,0.0750843 -6044,3516:374,164,-57,0,0,0.0750915 -6045,3516:475,165,-57,0,0,0.0751486 -6046,3516:476,166,-57,0,0,0.0752129 -6047,3516:477,167,-57,0,0,0.0752559 -6048,3516:478,168,-57,0,0,0.0758225 -6049,3516:479,169,-57,0,0,0.0782775 -6050,3517:370,170,-57,0,0,0.0796146 -6051,3517:371,171,-57,0,0,0.07969 -6052,3517:372,172,-57,0,0,0.0821503 -6053,3517:373,173,-57,0,0,0.0782108 -6054,3517:374,174,-57,0,0,0.0756285 -6055,3517:475,175,-57,0,0,0.0769462 -6056,3517:476,176,-57,0,0,0.090533 -6057,3517:477,177,-57,0,0,0.088316 -6058,3517:478,178,-57,0,0,0.0825073 -6059,3517:479,179,-57,0,0,0.0931811 -6060,3518:370,180,-57,0,0,0.0915705 -6061,5518:360,-180,-56,0,0,0.110138 -6062,5517:469,-179,-56,0,0,0.0982946 -6063,5517:468,-178,-56,0,0,0.0975051 -6064,5517:467,-177,-56,0,0,0.0968562 -6065,5517:466,-176,-56,0,0,0.0947733 -6066,5517:465,-175,-56,0,0,0.0946147 -6067,5517:364,-174,-56,0,0,0.0952592 -6068,5517:363,-173,-56,0,0,0.0917072 -6069,5517:362,-172,-56,0,0,0.0933723 -6070,5517:361,-171,-56,0,0,0.0919986 -6071,5517:360,-170,-56,0,0,0.0904146 -6072,5516:469,-169,-56,0,0,0.0873611 -6073,5516:468,-168,-56,0,0,0.0859705 -6074,5516:467,-167,-56,0,0,0.0862535 -6075,5516:466,-166,-56,0,0,0.0862212 -6076,5516:465,-165,-56,0,0,0.0856399 -6077,5516:364,-164,-56,0,0,0.0855033 -6078,5516:363,-163,-56,0,0,0.0842109 -6079,5516:362,-162,-56,0,0,0.083926 -6080,5516:361,-161,-56,0,0,0.0845124 -6081,5516:360,-160,-56,0,0,0.0849187 -6082,5515:469,-159,-56,0,0,0.0852946 -6083,5515:468,-158,-56,0,0,0.0856802 -6084,5515:467,-157,-56,0,0,0.0861402 -6085,5515:466,-156,-56,0,0,0.0862535 -6086,5515:465,-155,-56,0,0,0.0866024 -6087,5515:364,-154,-56,0,0,0.0862859 -6088,5515:363,-153,-56,0,0,0.0854954 -6089,5515:362,-152,-56,0,0,0.0860514 -6090,5515:361,-151,-56,0,0,0.0871648 -6091,5515:360,-150,-56,0,0,0.0913058 -6092,5514:469,-149,-56,0,0,0.0929644 -6093,5514:468,-148,-56,0,0,0.092222 -6094,5514:467,-147,-56,0,0,0.0868791 -6095,5514:466,-146,-56,0,0,0.087714 -6096,5514:465,-145,-56,0,0,0.0875908 -6097,5514:364,-144,-56,0,0,0.0921619 -6098,5514:363,-143,-56,0,0,0.0917328 -6099,5514:362,-142,-56,0,0,0.0898753 -6100,5514:361,-141,-56,0,0,0.090855 -6101,5514:360,-140,-56,0,0,0.0914594 -6102,5513:469,-139,-56,0,0,0.0941056 -6103,5513:468,-138,-56,0,0,0.0958899 -6104,5513:467,-137,-56,0,0,0.0957386 -6105,5513:466,-136,-56,0,0,0.0949674 -6106,5513:465,-135,-56,0,0,0.0973334 -6107,5513:364,-134,-56,0,0,0.0989247 -6108,5513:363,-133,-56,0,0,0.0990439 -6109,5513:362,-132,-56,0,0,0.0991813 -6110,5513:361,-131,-56,0,0,0.099752 -6111,5513:360,-130,-56,0,0,0.100502 -6112,5512:469,-129,-56,0,0,0.103066 -6113,5512:468,-128,-56,0,0,0.1028 -6114,5512:467,-127,-56,0,0,0.103418 -6115,5512:466,-126,-56,0,0,0.104567 -6116,5512:465,-125,-56,0,0,0.104058 -6117,5512:364,-124,-56,0,0,0.102167 -6118,5512:363,-123,-56,0,0,0.101537 -6119,5512:362,-122,-56,0,0,0.100837 -6120,5512:361,-121,-56,0,0,0.101904 -6121,5512:360,-120,-56,0,0,0.105029 -6122,5511:469,-119,-56,0,0,0.106663 -6123,5511:468,-118,-56,0,0,0.107301 -6124,5511:467,-117,-56,0,0,0.10817 -6125,5511:466,-116,-56,0,0,0.109235 -6126,5511:465,-115,-56,0,0,0.109857 -6127,5511:364,-114,-56,0,0,0.110108 -6128,5511:363,-113,-56,0,0,0.111668 -6129,5511:362,-112,-56,0,0,0.113795 -6130,5511:361,-111,-56,0,0,0.113774 -6131,5511:360,-110,-56,0,0,0.110229 -6132,5510:469,-109,-56,0,0,0.108866 -6133,5510:468,-108,-56,0,0,0.111587 -6134,5510:467,-107,-56,0,0,0.113495 -6135,5510:466,-106,-56,0,0,0.112476 -6136,5510:465,-105,-56,0,0,0.108458 -6137,5510:364,-104,-56,0,0,0.106262 -6138,5510:363,-103,-56,0,0,0.105252 -6139,5510:362,-102,-56,0,0,0.104827 -6140,5510:361,-101,-56,0,0,0.104576 -6141,5510:360,-100,-56,0,0,0.103304 -6142,5509:469,-99,-56,0,0,0.10212 -6143,5509:468,-98,-56,0,0,0.100837 -6144,5509:467,-97,-56,0,0,0.102857 -6145,5509:466,-96,-56,0,0,0.105252 -6146,5509:465,-95,-56,0,0,0.103886 -6147,5509:364,-94,-56,0,0,0.102271 -6148,5509:363,-93,-56,0,0,0.101547 -6149,5509:362,-92,-56,0,0,0.102205 -6150,5509:361,-91,-56,0,0,0.103953 -6151,5509:360,-90,-56,0,0,0.101988 -6152,5508:469,-89,-56,0,0,0.10165 -6153,5508:468,-88,-56,0,0,0.111485 -6154,5508:467,-87,-56,0,0,0.112887 -6155,5508:466,-86,-56,0,0,0.11032 -6156,5508:465,-85,-56,0,0,0.107301 -6157,5508:364,-84,-56,0,0,0.105912 -6158,5508:363,-83,-56,0,0,0.10814 -6159,5508:362,-82,-56,0,0,0.109606 -6160,5508:361,-81,-56,0,0,0.111893 -6161,5508:360,-80,-56,0,0,0.110299 -6162,5507:469,-79,-56,0,0,0.10027 -6163,5507:468,-78,-56,0,0,0.0920156 -6164,5507:467,-77,-56,0,0,0.0899004 -6165,5507:466,-76,-56,0,0,0.0922133 -6166,5507:465,-75,-56,0,0,0.0959255 -6167,5507:364,-74,-56,0,0,0.0987326 -6168,5507:363,-73,-56,0,0,0.108916 -6169,5507:362,-72,-56,0,0,0.104106 -6170,5507:361,-71,-56,0,0,0.105155 -6171,5507:360,-70,-56,0,0,0.10531 -6172,5506:469,-69,-56,0,0,0.10357 -6173,5506:468,-68,-56,0,0,0.0978492 -6174,5506:467,-67,-56,0,0,0.0966945 -6175,5506:466,-66,-56,0,0,0.0886891 -6176,5506:465,-65,-56,0,0,0.0808733 -6177,5506:364,-64,-56,0,0,0.0796146 -6178,5506:363,-63,-56,0,0,0.0793591 -6179,5506:362,-62,-56,0,0,0.0796071 -6180,5506:361,-61,-56,0,0,0.0796447 -6181,5506:360,-60,-56,0,0,0.0797653 -6182,5505:469,-59,-56,0,0,0.0799164 -6183,5505:468,-58,-56,0,0,0.080007 -6184,5505:467,-57,-56,0,0,0.0780996 -6185,5505:466,-56,-56,0,0,0.0784333 -6186,5505:465,-55,-56,0,0,0.0775981 -6187,5505:364,-54,-56,0,0,0.0763281 -6188,5505:363,-53,-56,0,0,0.0751059 -6189,5505:362,-52,-56,0,0,0.0751059 -6190,5505:361,-51,-56,0,0,0.0749988 -6191,5505:360,-50,-56,0,0,0.0749846 -6192,5504:469,-49,-56,0,0,0.0749775 -6193,5504:468,-48,-56,0,0,0.0749846 -6194,5504:467,-47,-56,0,0,0.0749916 -6195,5504:466,-46,-56,0,0,0.075006 -6196,5504:465,-45,-56,0,0,0.0749988 -6197,5504:364,-44,-56,0,0,0.0749775 -6198,5504:363,-43,-56,0,0,0.0749631 -6199,5504:362,-42,-56,0,0,0.074949 -6200,5504:361,-41,-56,0,0,0.0749275 -6201,5504:360,-40,-56,0,0,0.0749133 -6202,5503:469,-39,-56,0,0,0.0749062 -6203,5503:468,-38,-56,0,0,0.0749205 -6204,5503:467,-37,-56,0,0,0.0749346 -6205,5503:466,-36,-56,0,0,0.0749418 -6206,5503:465,-35,-56,0,0,0.0749703 -6207,5503:364,-34,-56,0,0,0.0749846 -6208,5503:363,-33,-56,0,0,0.0749846 -6209,5503:362,-32,-56,0,0,0.0749916 -6210,5503:361,-31,-56,0,0,0.0749988 -6211,5503:360,-30,-56,0,0,0.0749916 -6212,5502:469,-29,-56,0,0,0.0749916 -6213,5502:468,-28,-56,0,0,0.0749846 -6214,5502:467,-27,-56,0,0,0.0749846 -6215,5502:466,-26,-56,0,0,0.0749846 -6216,5502:465,-25,-56,0,0,0.0749846 -6217,5502:364,-24,-56,0,0,0.0749703 -6218,5502:363,-23,-56,0,0,0.0749631 -6219,5502:362,-22,-56,0,0,0.0749418 -6220,5502:361,-21,-56,0,0,0.0749275 -6221,5502:360,-20,-56,0,0,0.0749133 -6222,5501:469,-19,-56,0,0,0.074899 -6223,5501:468,-18,-56,0,0,0.0748777 -6224,5501:467,-17,-56,0,0,0.0748636 -6225,5501:466,-16,-56,0,0,0.074892 -6226,5501:465,-15,-56,0,0,0.0749275 -6227,5501:364,-14,-56,0,0,0.0749133 -6228,5501:363,-13,-56,0,0,0.0748849 -6229,5501:362,-12,-56,0,0,0.0748777 -6230,5501:361,-11,-56,0,0,0.0748705 -6231,5501:360,-10,-56,0,0,0.0748636 -6232,5500:469,-9,-56,0,0,0.0748705 -6233,5500:468,-8,-56,0,0,0.0748636 -6234,5500:467,-7,-56,0,0,0.0748564 -6235,5500:466,-6,-56,0,0,0.0748636 -6236,5500:465,-5,-56,0,0,0.0748636 -6237,5500:364,-4,-56,0,0,0.0748705 -6238,5500:363,-3,-56,0,0,0.0748705 -6239,5500:362,-2,-56,0,0,0.0748705 -6240,5500:361,-1,-56,0,0,0.0748636 -6241,3500:361,0,-56,0,0,0.0748777 -6242,3500:361,1,-56,0,0,0.0748849 -6243,3500:362,2,-56,0,0,0.0748849 -6244,3500:363,3,-56,0,0,0.0748777 -6245,3500:364,4,-56,0,0,0.0748705 -6246,3500:465,5,-56,0,0,0.0748849 -6247,3500:466,6,-56,0,0,0.074899 -6248,3500:467,7,-56,0,0,0.0749205 -6249,3500:468,8,-56,0,0,0.0749275 -6250,3500:469,9,-56,0,0,0.0749346 -6251,3501:360,10,-56,0,0,0.074949 -6252,3501:361,11,-56,0,0,0.0749418 -6253,3501:362,12,-56,0,0,0.074949 -6254,3501:363,13,-56,0,0,0.0749631 -6255,3501:364,14,-56,0,0,0.074949 -6256,3501:465,15,-56,0,0,0.0749205 -6257,3501:466,16,-56,0,0,0.0749062 -6258,3501:467,17,-56,0,0,0.0748849 -6259,3501:468,18,-56,0,0,0.0748636 -6260,3501:469,19,-56,0,0,0.0747996 -6261,3502:360,20,-56,0,0,0.0747425 -6262,3502:361,21,-56,0,0,0.0748208 -6263,3502:362,22,-56,0,0,0.0748777 -6264,3502:363,23,-56,0,0,0.0748777 -6265,3502:364,24,-56,0,0,0.0748564 -6266,3502:465,25,-56,0,0,0.0748564 -6267,3502:466,26,-56,0,0,0.0748564 -6268,3502:467,27,-56,0,0,0.0748849 -6269,3502:468,28,-56,0,0,0.075006 -6270,3502:469,29,-56,0,0,0.0753417 -6271,3503:360,30,-56,0,0,0.0753631 -6272,3503:361,31,-56,0,0,0.0751486 -6273,3503:362,32,-56,0,0,0.0751771 -6274,3503:363,33,-56,0,0,0.0751843 -6275,3503:364,34,-56,0,0,0.0751344 -6276,3503:465,35,-56,0,0,0.0749062 -6277,3503:466,36,-56,0,0,0.0748849 -6278,3503:467,37,-56,0,0,0.0748636 -6279,3503:468,38,-56,0,0,0.0748705 -6280,3503:469,39,-56,0,0,0.0748777 -6281,3504:360,40,-56,0,0,0.0748705 -6282,3504:361,41,-56,0,0,0.0748493 -6283,3504:362,42,-56,0,0,0.0748705 -6284,3504:363,43,-56,0,0,0.0749346 -6285,3504:364,44,-56,0,0,0.0750201 -6286,3504:465,45,-56,0,0,0.0754061 -6287,3504:466,46,-56,0,0,0.0751987 -6288,3504:467,47,-56,0,0,0.0748137 -6289,3504:468,48,-56,0,0,0.074828 -6290,3504:469,49,-56,0,0,0.0748349 -6291,3505:360,50,-56,0,0,0.0748421 -6292,3505:361,51,-56,0,0,0.0748564 -6293,3505:362,52,-56,0,0,0.0748636 -6294,3505:363,53,-56,0,0,0.0748636 -6295,3505:364,54,-56,0,0,0.0748564 -6296,3505:465,55,-56,0,0,0.0752844 -6297,3505:466,56,-56,0,0,0.0750773 -6298,3505:467,57,-56,0,0,0.074949 -6299,3505:468,58,-56,0,0,0.0749275 -6300,3505:469,59,-56,0,0,0.0749418 -6301,3506:360,60,-56,0,0,0.0749562 -6302,3506:361,61,-56,0,0,0.0749562 -6303,3506:362,62,-56,0,0,0.0750843 -6304,3506:363,63,-56,0,0,0.0749846 -6305,3506:364,64,-56,0,0,0.0750131 -6306,3506:465,65,-56,0,0,0.0751344 -6307,3506:466,66,-56,0,0,0.0750273 -6308,3506:467,67,-56,0,0,0.0750558 -6309,3506:468,68,-56,0,0,0.0758586 -6310,3506:469,69,-56,0,0,0.0779591 -6311,3507:360,70,-56,0,0,0.0765967 -6312,3507:361,71,-56,0,0,0.075974 -6313,3507:362,72,-56,0,0,0.0764296 -6314,3507:364,74,-56,0,0,0.0756285 -6315,3507:465,75,-56,0,0,0.0759452 -6316,3507:466,76,-56,0,0,0.0761256 -6317,3507:467,77,-56,0,0,0.0755926 -6318,3507:468,78,-56,0,0,0.0754921 -6319,3507:469,79,-56,0,0,0.0755207 -6320,3508:360,80,-56,0,0,0.07565 -6321,3508:361,81,-56,0,0,0.0754849 -6322,3508:362,82,-56,0,0,0.0757795 -6323,3508:363,83,-56,0,0,0.0766839 -6324,3508:364,84,-56,0,0,0.0765166 -6325,3508:465,85,-56,0,0,0.076039 -6326,3508:466,86,-56,0,0,0.0747852 -6327,3508:467,87,-56,0,0,0.074892 -6328,3508:468,88,-56,0,0,0.0749062 -6329,3508:469,89,-56,0,0,0.074899 -6330,3509:360,90,-56,0,0,0.0749631 -6331,3509:361,91,-56,0,0,0.0759452 -6332,3509:362,92,-56,0,0,0.0774365 -6333,3509:363,93,-56,0,0,0.0774658 -6334,3509:364,94,-56,0,0,0.0768877 -6335,3509:465,95,-56,0,0,0.0751059 -6336,3509:466,96,-56,0,0,0.0749846 -6337,3509:467,97,-56,0,0,0.0750201 -6338,3509:468,98,-56,0,0,0.0750345 -6339,3509:469,99,-56,0,0,0.0750273 -6340,3510:360,100,-56,0,0,0.0750131 -6341,3510:361,101,-56,0,0,0.075006 -6342,3510:362,102,-56,0,0,0.075006 -6343,3510:363,103,-56,0,0,0.0749988 -6344,3510:364,104,-56,0,0,0.0749916 -6345,3510:465,105,-56,0,0,0.0749988 -6346,3510:466,106,-56,0,0,0.0749988 -6347,3510:467,107,-56,0,0,0.0749846 -6348,3510:468,108,-56,0,0,0.074949 -6349,3510:469,109,-56,0,0,0.0750558 -6350,3511:360,110,-56,0,0,0.0753272 -6351,3511:361,111,-56,0,0,0.0764659 -6352,3511:362,112,-56,0,0,0.0786116 -6353,3511:363,113,-56,0,0,0.0788128 -6354,3511:364,114,-56,0,0,0.0751272 -6355,3511:465,115,-56,0,0,0.0783071 -6356,3511:466,116,-56,0,0,0.0798182 -6357,3511:467,117,-56,0,0,0.0818717 -6358,3511:468,118,-56,0,0,0.0834847 -6359,3511:469,119,-56,0,0,0.083532 -6360,3512:360,120,-56,0,0,0.0847592 -6361,3512:361,121,-56,0,0,0.0846637 -6362,3512:362,122,-56,0,0,0.0854151 -6363,3512:363,123,-56,0,0,0.0881755 -6364,3512:364,124,-56,0,0,0.0888054 -6365,3512:465,125,-56,0,0,0.0896821 -6366,3512:466,126,-56,0,0,0.0895731 -6367,3512:467,127,-56,0,0,0.0901193 -6368,3512:468,128,-56,0,0,0.0904316 -6369,3512:469,129,-56,0,0,0.0912717 -6370,3513:360,130,-56,0,0,0.0931639 -6371,3513:361,131,-56,0,0,0.0930771 -6372,3513:362,132,-56,0,0,0.0912886 -6373,3513:363,133,-56,0,0,0.0934679 -6374,3513:364,134,-56,0,0,0.0952946 -6375,3513:465,135,-56,0,0,0.0940092 -6376,3513:466,136,-56,0,0,0.0893724 -6377,3513:467,137,-56,0,0,0.0870748 -6378,3513:468,138,-56,0,0,0.0881921 -6379,3513:469,139,-56,0,0,0.0833749 -6380,3514:360,140,-56,0,0,0.0811335 -6381,3514:361,141,-56,0,0,0.0838944 -6382,3514:362,142,-56,0,0,0.0841632 -6383,3514:363,143,-56,0,0,0.0868791 -6384,3514:364,144,-56,0,0,0.0855999 -6385,3514:465,145,-56,0,0,0.0886475 -6386,3514:466,146,-56,0,0,0.084021 -6387,3514:467,147,-56,0,0,0.0797653 -6388,3514:468,148,-56,0,0,0.0806217 -6389,3514:469,149,-56,0,0,0.0767638 -6390,3515:360,150,-56,0,0,0.0758225 -6391,3515:361,151,-56,0,0,0.0756932 -6392,3515:362,152,-56,0,0,0.0767494 -6393,3515:363,153,-56,0,0,0.07614 -6394,3515:364,154,-56,0,0,0.0752916 -6395,3515:465,155,-56,0,0,0.0751272 -6396,3515:466,156,-56,0,0,0.0751128 -6397,3515:467,157,-56,0,0,0.0750987 -6398,3515:468,158,-56,0,0,0.0750915 -6399,3515:469,159,-56,0,0,0.0750702 -6400,3516:360,160,-56,0,0,0.0750702 -6401,3516:361,161,-56,0,0,0.0750702 -6402,3516:362,162,-56,0,0,0.0750558 -6403,3516:363,163,-56,0,0,0.075063 -6404,3516:364,164,-56,0,0,0.0750773 -6405,3516:465,165,-56,0,0,0.0751272 -6406,3516:466,166,-56,0,0,0.0755639 -6407,3516:467,167,-56,0,0,0.0813636 -6408,3516:468,168,-56,0,0,0.086448 -6409,3516:469,169,-56,0,0,0.0851905 -6410,3517:360,170,-56,0,0,0.0861402 -6411,3517:361,171,-56,0,0,0.0845522 -6412,3517:362,172,-56,0,0,0.0836263 -6413,3517:363,173,-56,0,0,0.0799012 -6414,3517:364,174,-56,0,0,0.0816328 -6415,3517:465,175,-56,0,0,0.102243 -6416,3517:466,176,-56,0,0,0.11119 -6417,3517:467,177,-56,0,0,0.109016 -6418,3517:468,178,-56,0,0,0.107065 -6419,3517:469,179,-56,0,0,0.110795 -6420,3518:360,180,-56,0,0,0.110138 -6421,5518:350,-180,-55,0,0,0.109736 -6422,5517:459,-179,-55,0,0,0.104942 -6423,5517:458,-178,-55,0,0,0.102092 -6424,5517:457,-177,-55,0,0,0.105339 -6425,5517:456,-176,-55,0,0,0.106145 -6426,5517:455,-175,-55,0,0,0.103446 -6427,5517:354,-174,-55,0,0,0.100967 -6428,5517:353,-173,-55,0,0,0.0978583 -6429,5517:352,-172,-55,0,0,0.0953124 -6430,5517:351,-171,-55,0,0,0.0923426 -6431,5517:350,-170,-55,0,0,0.0912205 -6432,5516:459,-169,-55,0,0,0.0885313 -6433,5516:458,-168,-55,0,0,0.0874349 -6434,5516:457,-167,-55,0,0,0.0874759 -6435,5516:456,-166,-55,0,0,0.0876154 -6436,5516:455,-165,-55,0,0,0.0873693 -6437,5516:354,-164,-55,0,0,0.0872629 -6438,5516:353,-163,-55,0,0,0.0872956 -6439,5516:352,-162,-55,0,0,0.086586 -6440,5516:351,-161,-55,0,0,0.0871321 -6441,5516:350,-160,-55,0,0,0.0877222 -6442,5515:459,-159,-55,0,0,0.087181 -6443,5515:458,-158,-55,0,0,0.0880847 -6444,5515:457,-157,-55,0,0,0.0885397 -6445,5515:456,-156,-55,0,0,0.0877551 -6446,5515:455,-155,-55,0,0,0.0870177 -6447,5515:354,-154,-55,0,0,0.0869851 -6448,5515:353,-153,-55,0,0,0.0868547 -6449,5515:352,-152,-55,0,0,0.0864643 -6450,5515:351,-151,-55,0,0,0.0901025 -6451,5515:350,-150,-55,0,0,0.090626 -6452,5514:459,-149,-55,0,0,0.0964972 -6453,5514:458,-148,-55,0,0,0.0951266 -6454,5514:457,-147,-55,0,0,0.0955961 -6455,5514:456,-146,-55,0,0,0.0920672 -6456,5514:455,-145,-55,0,0,0.0939392 -6457,5514:354,-144,-55,0,0,0.096865 -6458,5514:353,-143,-55,0,0,0.0978946 -6459,5514:352,-142,-55,0,0,0.09784 -6460,5514:351,-141,-55,0,0,0.0980218 -6461,5514:350,-140,-55,0,0,0.101135 -6462,5513:459,-139,-55,0,0,0.103466 -6463,5513:458,-138,-55,0,0,0.0984495 -6464,5513:457,-137,-55,0,0,0.095277 -6465,5513:456,-136,-55,0,0,0.0966854 -6466,5513:455,-135,-55,0,0,0.103637 -6467,5513:354,-134,-55,0,0,0.10165 -6468,5513:353,-133,-55,0,0,0.100149 -6469,5513:352,-132,-55,0,0,0.103095 -6470,5513:351,-131,-55,0,0,0.105068 -6471,5513:350,-130,-55,0,0,0.103342 -6472,5512:459,-129,-55,0,0,0.103676 -6473,5512:458,-128,-55,0,0,0.104682 -6474,5512:457,-127,-55,0,0,0.105513 -6475,5512:456,-126,-55,0,0,0.105649 -6476,5512:455,-125,-55,0,0,0.10449 -6477,5512:354,-124,-55,0,0,0.103867 -6478,5512:353,-123,-55,0,0,0.102687 -6479,5512:352,-122,-55,0,0,0.102573 -6480,5512:351,-121,-55,0,0,0.104653 -6481,5512:350,-120,-55,0,0,0.105834 -6482,5511:459,-119,-55,0,0,0.106653 -6483,5511:458,-118,-55,0,0,0.108637 -6484,5511:457,-117,-55,0,0,0.111689 -6485,5511:456,-116,-55,0,0,0.112753 -6486,5511:455,-115,-55,0,0,0.112209 -6487,5511:354,-114,-55,0,0,0.112189 -6488,5511:353,-113,-55,0,0,0.114752 -6489,5511:352,-112,-55,0,0,0.113072 -6490,5511:351,-111,-55,0,0,0.113175 -6491,5511:350,-110,-55,0,0,0.112928 -6492,5510:459,-109,-55,0,0,0.111607 -6493,5510:458,-108,-55,0,0,0.114252 -6494,5510:457,-107,-55,0,0,0.113661 -6495,5510:456,-106,-55,0,0,0.109816 -6496,5510:455,-105,-55,0,0,0.108002 -6497,5510:354,-104,-55,0,0,0.106928 -6498,5510:353,-103,-55,0,0,0.106175 -6499,5510:352,-102,-55,0,0,0.107498 -6500,5510:351,-101,-55,0,0,0.110249 -6501,5510:350,-100,-55,0,0,0.109245 -6502,5509:459,-99,-55,0,0,0.105902 -6503,5509:458,-98,-55,0,0,0.106009 -6504,5509:457,-97,-55,0,0,0.112825 -6505,5509:456,-96,-55,0,0,0.111597 -6506,5509:455,-95,-55,0,0,0.108081 -6507,5509:354,-94,-55,0,0,0.106741 -6508,5509:353,-93,-55,0,0,0.104875 -6509,5509:352,-92,-55,0,0,0.1056 -6510,5509:351,-91,-55,0,0,0.111078 -6511,5509:350,-90,-55,0,0,0.109335 -6512,5508:459,-89,-55,0,0,0.107666 -6513,5508:458,-88,-55,0,0,0.111872 -6514,5508:457,-87,-55,0,0,0.112353 -6515,5508:456,-86,-55,0,0,0.112969 -6516,5508:455,-85,-55,0,0,0.113392 -6517,5508:354,-84,-55,0,0,0.112804 -6518,5508:353,-83,-55,0,0,0.111709 -6519,5508:352,-82,-55,0,0,0.110179 -6520,5508:351,-81,-55,0,0,0.110815 -6521,5508:350,-80,-55,0,0,0.112281 -6522,5507:459,-79,-55,0,0,0.11419 -6523,5507:458,-78,-55,0,0,0.115024 -6524,5507:457,-77,-55,0,0,0.114231 -6525,5507:456,-76,-55,0,0,0.109045 -6526,5507:455,-75,-55,0,0,0.100242 -6527,5507:354,-74,-55,0,0,0.101669 -6528,5507:353,-73,-55,0,0,0.111505 -6529,5507:352,-72,-55,0,0,0.108856 -6530,5507:351,-71,-55,0,0,0.105824 -6531,5507:350,-70,-55,0,0,0.105533 -6532,5506:459,-69,-55,0,0,0.106898 -6533,5506:458,-68,-55,0,0,0.105387 -6534,5506:457,-67,-55,0,0,0.0937209 -6535,5506:456,-66,-55,0,0,0.0846238 -6536,5506:455,-65,-55,0,0,0.0853189 -6537,5506:354,-64,-55,0,0,0.0848548 -6538,5506:353,-63,-55,0,0,0.080774 -6539,5506:352,-62,-55,0,0,0.0827799 -6540,5506:351,-61,-55,0,0,0.0832963 -6541,5506:350,-60,-55,0,0,0.0844091 -6542,5505:459,-59,-55,0,0,0.0805608 -6543,5505:458,-58,-55,0,0,0.0797805 -6544,5505:457,-57,-55,0,0,0.0785299 -6545,5505:456,-56,-55,0,0,0.0779591 -6546,5505:455,-55,-55,0,0,0.0773044 -6547,5505:354,-54,-55,0,0,0.0759595 -6548,5505:353,-53,-55,0,0,0.0750201 -6549,5505:352,-52,-55,0,0,0.0749988 -6550,5505:351,-51,-55,0,0,0.0749916 -6551,5505:350,-50,-55,0,0,0.0750131 -6552,5504:459,-49,-55,0,0,0.0750201 -6553,5504:458,-48,-55,0,0,0.0750201 -6554,5504:457,-47,-55,0,0,0.0750201 -6555,5504:456,-46,-55,0,0,0.075006 -6556,5504:455,-45,-55,0,0,0.0749846 -6557,5504:354,-44,-55,0,0,0.0749846 -6558,5504:353,-43,-55,0,0,0.0749703 -6559,5504:352,-42,-55,0,0,0.0749562 -6560,5504:351,-41,-55,0,0,0.0749418 -6561,5504:350,-40,-55,0,0,0.0749275 -6562,5503:459,-39,-55,0,0,0.0749205 -6563,5503:458,-38,-55,0,0,0.0749205 -6564,5503:457,-37,-55,0,0,0.0749133 -6565,5503:456,-36,-55,0,0,0.0749346 -6566,5503:455,-35,-55,0,0,0.074949 -6567,5503:354,-34,-55,0,0,0.0749631 -6568,5503:353,-33,-55,0,0,0.0749846 -6569,5503:352,-32,-55,0,0,0.0749916 -6570,5503:351,-31,-55,0,0,0.0749916 -6571,5503:350,-30,-55,0,0,0.0749916 -6572,5502:459,-29,-55,0,0,0.0749916 -6573,5502:458,-28,-55,0,0,0.0749916 -6574,5502:457,-27,-55,0,0,0.0749916 -6575,5502:456,-26,-55,0,0,0.0749916 -6576,5502:455,-25,-55,0,0,0.0749846 -6577,5502:354,-24,-55,0,0,0.0749775 -6578,5502:353,-23,-55,0,0,0.0749562 -6579,5502:352,-22,-55,0,0,0.0749418 -6580,5502:351,-21,-55,0,0,0.0749275 -6581,5502:350,-20,-55,0,0,0.0749133 -6582,5501:459,-19,-55,0,0,0.0749062 -6583,5501:458,-18,-55,0,0,0.074892 -6584,5501:457,-17,-55,0,0,0.074899 -6585,5501:456,-16,-55,0,0,0.0749275 -6586,5501:455,-15,-55,0,0,0.0749988 -6587,5501:354,-14,-55,0,0,0.075006 -6588,5501:353,-13,-55,0,0,0.074949 -6589,5501:352,-12,-55,0,0,0.0749275 -6590,5501:351,-11,-55,0,0,0.0749062 -6591,5501:350,-10,-55,0,0,0.074892 -6592,5500:459,-9,-55,0,0,0.0749062 -6593,5500:458,-8,-55,0,0,0.074892 -6594,5500:457,-7,-55,0,0,0.0748777 -6595,5500:456,-6,-55,0,0,0.0748705 -6596,5500:455,-5,-55,0,0,0.0748849 -6597,5500:354,-4,-55,0,0,0.074892 -6598,5500:353,-3,-55,0,0,0.074899 -6599,5500:352,-2,-55,0,0,0.074892 -6600,5500:351,-1,-55,0,0,0.0748636 -6601,3500:351,0,-55,0,0,0.0748777 -6602,3500:351,1,-55,0,0,0.0748705 -6603,3500:352,2,-55,0,0,0.0748564 -6604,3500:353,3,-55,0,0,0.0748493 -6605,3500:354,4,-55,0,0,0.0748349 -6606,3500:455,5,-55,0,0,0.0748421 -6607,3500:456,6,-55,0,0,0.0748564 -6608,3500:457,7,-55,0,0,0.0748777 -6609,3500:458,8,-55,0,0,0.074899 -6610,3500:459,9,-55,0,0,0.0749133 -6611,3501:350,10,-55,0,0,0.0749346 -6612,3501:351,11,-55,0,0,0.074949 -6613,3501:352,12,-55,0,0,0.0749275 -6614,3501:353,13,-55,0,0,0.0749346 -6615,3501:354,14,-55,0,0,0.0749418 -6616,3501:455,15,-55,0,0,0.074949 -6617,3501:456,16,-55,0,0,0.0749346 -6618,3501:457,17,-55,0,0,0.0749205 -6619,3501:458,18,-55,0,0,0.0749133 -6620,3501:459,19,-55,0,0,0.0748636 -6621,3502:350,20,-55,0,0,0.0748493 -6622,3502:351,21,-55,0,0,0.0748137 -6623,3502:352,22,-55,0,0,0.0747852 -6624,3502:353,23,-55,0,0,0.0748564 -6625,3502:354,24,-55,0,0,0.074949 -6626,3502:455,25,-55,0,0,0.0749631 -6627,3502:456,26,-55,0,0,0.0749988 -6628,3502:457,27,-55,0,0,0.0750201 -6629,3502:458,28,-55,0,0,0.0751486 -6630,3502:459,29,-55,0,0,0.075313 -6631,3503:350,30,-55,0,0,0.0753847 -6632,3503:351,31,-55,0,0,0.0754634 -6633,3503:352,32,-55,0,0,0.0753847 -6634,3503:353,33,-55,0,0,0.0754849 -6635,3503:354,34,-55,0,0,0.0759019 -6636,3503:455,35,-55,0,0,0.0753775 -6637,3503:456,36,-55,0,0,0.0751486 -6638,3503:457,37,-55,0,0,0.0751272 -6639,3503:458,38,-55,0,0,0.0749703 -6640,3503:459,39,-55,0,0,0.0748636 -6641,3504:350,40,-55,0,0,0.0748564 -6642,3504:351,41,-55,0,0,0.0748564 -6643,3504:352,42,-55,0,0,0.0748564 -6644,3504:353,43,-55,0,0,0.0748777 -6645,3504:354,44,-55,0,0,0.0749418 -6646,3504:455,45,-55,0,0,0.0749775 -6647,3504:456,46,-55,0,0,0.0750843 -6648,3504:457,47,-55,0,0,0.0754921 -6649,3504:458,48,-55,0,0,0.0755711 -6650,3504:459,49,-55,0,0,0.0755639 -6651,3505:350,50,-55,0,0,0.0754061 -6652,3505:351,51,-55,0,0,0.0751843 -6653,3505:352,52,-55,0,0,0.0751128 -6654,3505:353,53,-55,0,0,0.0750702 -6655,3505:354,54,-55,0,0,0.0749062 -6656,3505:455,55,-55,0,0,0.074899 -6657,3505:456,56,-55,0,0,0.0749205 -6658,3505:457,57,-55,0,0,0.0749205 -6659,3505:458,58,-55,0,0,0.0749346 -6660,3505:459,59,-55,0,0,0.0749418 -6661,3506:350,60,-55,0,0,0.0749631 -6662,3506:351,61,-55,0,0,0.0750131 -6663,3506:352,62,-55,0,0,0.0753417 -6664,3506:353,63,-55,0,0,0.0750558 -6665,3506:354,64,-55,0,0,0.075837 -6666,3506:455,65,-55,0,0,0.0768806 -6667,3506:456,66,-55,0,0,0.0773118 -6668,3506:457,67,-55,0,0,0.0758298 -6669,3506:458,68,-55,0,0,0.0754203 -6670,3506:459,69,-55,0,0,0.0776644 -6671,3507:350,70,-55,0,0,0.0775539 -6672,3507:351,71,-55,0,0,0.0765313 -6673,3507:352,72,-55,0,0,0.0760317 -6674,3507:354,74,-55,0,0,0.0762267 -6675,3507:455,75,-55,0,0,0.0755352 -6676,3507:456,76,-55,0,0,0.0755352 -6677,3507:457,77,-55,0,0,0.075528 -6678,3507:458,78,-55,0,0,0.0758874 -6679,3507:459,79,-55,0,0,0.0761618 -6680,3508:350,80,-55,0,0,0.0764006 -6681,3508:351,81,-55,0,0,0.0766328 -6682,3508:352,82,-55,0,0,0.0764513 -6683,3508:353,83,-55,0,0,0.0763427 -6684,3508:354,84,-55,0,0,0.076742 -6685,3508:455,85,-55,0,0,0.0764949 -6686,3508:456,86,-55,0,0,0.0757075 -6687,3508:457,87,-55,0,0,0.0749562 -6688,3508:458,88,-55,0,0,0.0749062 -6689,3508:459,89,-55,0,0,0.074949 -6690,3509:350,90,-55,0,0,0.075006 -6691,3509:351,91,-55,0,0,0.0751272 -6692,3509:352,92,-55,0,0,0.0764442 -6693,3509:353,93,-55,0,0,0.0783812 -6694,3509:354,94,-55,0,0,0.07827 -6695,3509:455,95,-55,0,0,0.0776127 -6696,3509:456,96,-55,0,0,0.0777896 -6697,3509:457,97,-55,0,0,0.0779001 -6698,3509:458,98,-55,0,0,0.0754203 -6699,3509:459,99,-55,0,0,0.0754203 -6700,3510:350,100,-55,0,0,0.076742 -6701,3510:351,101,-55,0,0,0.0782329 -6702,3510:352,102,-55,0,0,0.0762558 -6703,3510:353,103,-55,0,0,0.0763208 -6704,3510:354,104,-55,0,0,0.0751344 -6705,3510:455,105,-55,0,0,0.0750345 -6706,3510:456,106,-55,0,0,0.0750416 -6707,3510:457,107,-55,0,0,0.0750345 -6708,3510:458,108,-55,0,0,0.074949 -6709,3510:459,109,-55,0,0,0.0749205 -6710,3511:350,110,-55,0,0,0.0751987 -6711,3511:351,111,-55,0,0,0.0777601 -6712,3511:352,112,-55,0,0,0.0801583 -6713,3511:353,113,-55,0,0,0.083116 -6714,3511:354,114,-55,0,0,0.0841632 -6715,3511:455,115,-55,0,0,0.0853989 -6716,3511:456,116,-55,0,0,0.0831786 -6717,3511:457,117,-55,0,0,0.0840843 -6718,3511:458,118,-55,0,0,0.0857045 -6719,3511:459,119,-55,0,0,0.0854552 -6720,3512:350,120,-55,0,0,0.0876811 -6721,3512:351,121,-55,0,0,0.0888552 -6722,3512:352,122,-55,0,0,0.0906854 -6723,3512:353,123,-55,0,0,0.0906769 -6724,3512:354,124,-55,0,0,0.0915105 -6725,3512:455,125,-55,0,0,0.0930943 -6726,3512:456,126,-55,0,0,0.0932071 -6727,3512:457,127,-55,0,0,0.0921189 -6728,3512:458,128,-55,0,0,0.0925061 -6729,3512:459,129,-55,0,0,0.095623 -6730,3513:350,130,-55,0,0,0.0984403 -6731,3513:351,131,-55,0,0,0.0987692 -6732,3513:352,132,-55,0,0,0.0967123 -6733,3513:353,133,-55,0,0,0.0954452 -6734,3513:354,134,-55,0,0,0.0952416 -6735,3513:455,135,-55,0,0,0.0939131 -6736,3513:456,136,-55,0,0,0.093747 -6737,3513:457,137,-55,0,0,0.0933288 -6738,3513:458,138,-55,0,0,0.0923941 -6739,3513:459,139,-55,0,0,0.0906177 -6740,3514:350,140,-55,0,0,0.0906769 -6741,3514:351,141,-55,0,0,0.0920243 -6742,3514:352,142,-55,0,0,0.0920072 -6743,3514:353,143,-55,0,0,0.0925751 -6744,3514:354,144,-55,0,0,0.0928259 -6745,3514:455,145,-55,0,0,0.0909568 -6746,3514:456,146,-55,0,0,0.0885895 -6747,3514:457,147,-55,0,0,0.0897241 -6748,3514:458,148,-55,0,0,0.0851585 -6749,3514:459,149,-55,0,0,0.0798862 -6750,3515:350,150,-55,0,0,0.0769825 -6751,3515:351,151,-55,0,0,0.0768003 -6752,3515:352,152,-55,0,0,0.079705 -6753,3515:353,153,-55,0,0,0.0759019 -6754,3515:354,154,-55,0,0,0.0752559 -6755,3515:455,155,-55,0,0,0.0753489 -6756,3515:456,156,-55,0,0,0.0751701 -6757,3515:457,157,-55,0,0,0.0752129 -6758,3515:458,158,-55,0,0,0.0755065 -6759,3515:459,159,-55,0,0,0.075442 -6760,3516:350,160,-55,0,0,0.07527 -6761,3516:351,161,-55,0,0,0.0752343 -6762,3516:352,162,-55,0,0,0.0754849 -6763,3516:353,163,-55,0,0,0.0754849 -6764,3516:354,164,-55,0,0,0.0775762 -6765,3516:455,165,-55,0,0,0.0775833 -6766,3516:456,166,-55,0,0,0.0855597 -6767,3516:457,167,-55,0,0,0.0952062 -6768,3516:458,168,-55,0,0,0.0955696 -6769,3516:459,169,-55,0,0,0.0929039 -6770,3517:350,170,-55,0,0,0.0924546 -6771,3517:351,171,-55,0,0,0.0995124 -6772,3517:352,172,-55,0,0,0.109125 -6773,3517:353,173,-55,0,0,0.116031 -6774,3517:354,174,-55,0,0,0.120303 -6775,3517:455,175,-55,0,0,0.118156 -6776,3517:456,176,-55,0,0,0.111811 -6777,3517:457,177,-55,0,0,0.11034 -6778,3517:458,178,-55,0,0,0.111658 -6779,3517:459,179,-55,0,0,0.113899 -6780,3518:350,180,-55,0,0,0.109736 -6781,5518:140,-180,-54,0,0,0.117249 -6782,5517:249,-179,-54,0,0,0.113186 -6783,5517:248,-178,-54,0,0,0.111312 -6784,5517:247,-177,-54,0,0,0.109245 -6785,5517:246,-176,-54,0,0,0.105175 -6786,5517:245,-175,-54,0,0,0.100316 -6787,5517:144,-174,-54,0,0,0.0984495 -6788,5517:143,-173,-54,0,0,0.0981216 -6789,5517:142,-172,-54,0,0,0.096865 -6790,5517:141,-171,-54,0,0,0.0954542 -6791,5517:140,-170,-54,0,0,0.0936511 -6792,5516:249,-169,-54,0,0,0.0906599 -6793,5516:248,-168,-54,0,0,0.0898838 -6794,5516:247,-167,-54,0,0,0.0899762 -6795,5516:246,-166,-54,0,0,0.0900267 -6796,5516:245,-165,-54,0,0,0.0900856 -6797,5516:144,-164,-54,0,0,0.0909399 -6798,5516:143,-163,-54,0,0,0.0918356 -6799,5516:142,-162,-54,0,0,0.0944564 -6800,5516:141,-161,-54,0,0,0.0980581 -6801,5516:140,-160,-54,0,0,0.0920759 -6802,5515:249,-159,-54,0,0,0.0899931 -6803,5515:248,-158,-54,0,0,0.0904484 -6804,5515:247,-157,-54,0,0,0.0914422 -6805,5515:246,-156,-54,0,0,0.0888136 -6806,5515:245,-155,-54,0,0,0.0895396 -6807,5515:144,-154,-54,0,0,0.0884817 -6808,5515:143,-153,-54,0,0,0.0875743 -6809,5515:142,-152,-54,0,0,0.0872219 -6810,5515:141,-151,-54,0,0,0.0939742 -6811,5515:140,-150,-54,0,0,0.0975595 -6812,5514:249,-149,-54,0,0,0.0974238 -6813,5514:248,-148,-54,0,0,0.0981216 -6814,5514:247,-147,-54,0,0,0.0985773 -6815,5514:246,-146,-54,0,0,0.104211 -6816,5514:245,-145,-54,0,0,0.106184 -6817,5514:144,-144,-54,0,0,0.102782 -6818,5514:143,-143,-54,0,0,0.105727 -6819,5514:142,-142,-54,0,0,0.122362 -6820,5514:141,-141,-54,0,0,0.124005 -6821,5514:140,-140,-54,0,0,0.108022 -6822,5513:249,-139,-54,0,0,0.101472 -6823,5513:248,-138,-54,0,0,0.101481 -6824,5513:247,-137,-54,0,0,0.104451 -6825,5513:246,-136,-54,0,0,0.108121 -6826,5513:245,-135,-54,0,0,0.109315 -6827,5513:144,-134,-54,0,0,0.109125 -6828,5513:143,-133,-54,0,0,0.102516 -6829,5513:142,-132,-54,0,0,0.103085 -6830,5513:141,-131,-54,0,0,0.107163 -6831,5513:140,-130,-54,0,0,0.108597 -6832,5512:249,-129,-54,0,0,0.105542 -6833,5512:248,-128,-54,0,0,0.103943 -6834,5512:247,-127,-54,0,0,0.103848 -6835,5512:246,-126,-54,0,0,0.104663 -6836,5512:245,-125,-54,0,0,0.105436 -6837,5512:144,-124,-54,0,0,0.10682 -6838,5512:143,-123,-54,0,0,0.107597 -6839,5512:142,-122,-54,0,0,0.108786 -6840,5512:141,-121,-54,0,0,0.110845 -6841,5512:140,-120,-54,0,0,0.113216 -6842,5511:249,-119,-54,0,0,0.112507 -6843,5511:248,-118,-54,0,0,0.113743 -6844,5511:247,-117,-54,0,0,0.118595 -6845,5511:246,-116,-54,0,0,0.118832 -6846,5511:245,-115,-54,0,0,0.118295 -6847,5511:144,-114,-54,0,0,0.116633 -6848,5511:143,-113,-54,0,0,0.115254 -6849,5511:142,-112,-54,0,0,0.112435 -6850,5511:141,-111,-54,0,0,0.113 -6851,5511:140,-110,-54,0,0,0.112589 -6852,5510:249,-109,-54,0,0,0.113568 -6853,5510:248,-108,-54,0,0,0.116432 -6854,5510:247,-107,-54,0,0,0.111995 -6855,5510:246,-106,-54,0,0,0.109666 -6856,5510:245,-105,-54,0,0,0.109315 -6857,5510:144,-104,-54,0,0,0.108986 -6858,5510:143,-103,-54,0,0,0.111312 -6859,5510:142,-102,-54,0,0,0.113505 -6860,5510:141,-101,-54,0,0,0.113247 -6861,5510:140,-100,-54,0,0,0.113764 -6862,5509:249,-99,-54,0,0,0.114543 -6863,5509:248,-98,-54,0,0,0.114564 -6864,5509:247,-97,-54,0,0,0.11639 -6865,5509:246,-96,-54,0,0,0.117089 -6866,5509:245,-95,-54,0,0,0.114877 -6867,5509:144,-94,-54,0,0,0.111312 -6868,5509:143,-93,-54,0,0,0.108816 -6869,5509:142,-92,-54,0,0,0.113186 -6870,5509:141,-91,-54,0,0,0.114034 -7192,5512:239,-129,-53,0,0,0.10679 -6871,5509:140,-90,-54,0,0,0.111913 -6872,5508:249,-89,-54,0,0,0.109135 -6873,5508:248,-88,-54,0,0,0.108269 -6874,5508:247,-87,-54,0,0,0.11034 -6875,5508:246,-86,-54,0,0,0.11392 -6876,5508:245,-85,-54,0,0,0.114961 -6877,5508:144,-84,-54,0,0,0.114242 -6878,5508:143,-83,-54,0,0,0.112691 -6879,5508:142,-82,-54,0,0,0.112804 -6880,5508:141,-81,-54,0,0,0.115832 -6881,5508:140,-80,-54,0,0,0.119684 -6882,5507:249,-79,-54,0,0,0.118424 -6883,5507:248,-78,-54,0,0,0.117111 -6884,5507:247,-77,-54,0,0,0.117292 -6885,5507:246,-76,-54,0,0,0.116581 -6886,5507:245,-75,-54,0,0,0.115705 -6887,5507:144,-74,-54,0,0,0.115516 -6888,5507:143,-73,-54,0,0,0.116053 -6889,5507:142,-72,-54,0,0,0.117771 -6890,5507:141,-71,-54,0,0,0.11302 -6891,5507:140,-70,-54,0,0,0.110491 -6892,5506:249,-69,-54,0,0,0.109576 -6893,5506:248,-68,-54,0,0,0.105513 -6894,5506:247,-67,-54,0,0,0.0905415 -6895,5506:246,-66,-54,0,0,0.0934331 -6896,5506:245,-65,-54,0,0,0.0970901 -6897,5506:144,-64,-54,0,0,0.0927998 -6898,5506:143,-63,-54,0,0,0.0821812 -6899,5506:142,-62,-54,0,0,0.0818951 -6900,5506:141,-61,-54,0,0,0.0834377 -6901,5506:140,-60,-54,0,0,0.082772 -6902,5505:249,-59,-54,0,0,0.0818642 -6903,5505:248,-58,-54,0,0,0.0808733 -6904,5505:247,-57,-54,0,0,0.0792165 -6905,5505:246,-56,-54,0,0,0.0784852 -6906,5505:245,-55,-54,0,0,0.0778042 -6907,5505:144,-54,-54,0,0,0.0774439 -6908,5505:143,-53,-54,0,0,0.076895 -6909,5505:142,-52,-54,0,0,0.0757147 -6910,5505:141,-51,-54,0,0,0.0752487 -6911,5505:140,-50,-54,0,0,0.0757722 -6912,5504:249,-49,-54,0,0,0.0751416 -6913,5504:248,-48,-54,0,0,0.0750201 -6914,5504:247,-47,-54,0,0,0.0749988 -6915,5504:246,-46,-54,0,0,0.0750131 -6916,5504:245,-45,-54,0,0,0.0749988 -6917,5504:144,-44,-54,0,0,0.0749775 -6918,5504:143,-43,-54,0,0,0.0749846 -6919,5504:142,-42,-54,0,0,0.0749988 -6920,5504:141,-41,-54,0,0,0.0749775 -6921,5504:140,-40,-54,0,0,0.0749703 -6922,5503:249,-39,-54,0,0,0.0749631 -6923,5503:248,-38,-54,0,0,0.0749562 -6924,5503:247,-37,-54,0,0,0.0749562 -6925,5503:246,-36,-54,0,0,0.0749631 -6926,5503:245,-35,-54,0,0,0.0749631 -6927,5503:144,-34,-54,0,0,0.0749631 -6928,5503:143,-33,-54,0,0,0.0749775 -6929,5503:142,-32,-54,0,0,0.0749988 -6930,5503:141,-31,-54,0,0,0.0749916 -6931,5503:140,-30,-54,0,0,0.0749846 -6932,5502:249,-29,-54,0,0,0.0749846 -6933,5502:248,-28,-54,0,0,0.0749846 -6934,5502:247,-27,-54,0,0,0.0749775 -6935,5502:246,-26,-54,0,0,0.0749775 -6936,5502:245,-25,-54,0,0,0.0749846 -6937,5502:144,-24,-54,0,0,0.0749846 -6938,5502:143,-23,-54,0,0,0.0749703 -6939,5502:142,-22,-54,0,0,0.0749562 -6940,5502:141,-21,-54,0,0,0.0749346 -6941,5502:140,-20,-54,0,0,0.0749988 -6942,5501:249,-19,-54,0,0,0.0751344 -6943,5501:248,-18,-54,0,0,0.0750273 -6944,5501:247,-17,-54,0,0,0.0749346 -6945,5501:246,-16,-54,0,0,0.0749205 -6946,5501:245,-15,-54,0,0,0.0749205 -6947,5501:144,-14,-54,0,0,0.0749346 -6948,5501:143,-13,-54,0,0,0.074949 -6949,5501:142,-12,-54,0,0,0.0749418 -6950,5501:141,-11,-54,0,0,0.0749275 -6951,5501:140,-10,-54,0,0,0.0749133 -6952,5500:249,-9,-54,0,0,0.0749133 -6953,5500:248,-8,-54,0,0,0.0749275 -6954,5500:247,-7,-54,0,0,0.0749275 -6955,5500:246,-6,-54,0,0,0.0749133 -6956,5500:245,-5,-54,0,0,0.074899 -6957,5500:144,-4,-54,0,0,0.074899 -6958,5500:143,-3,-54,0,0,0.0748849 -6959,5500:142,-2,-54,0,0,0.0748777 -6960,5500:141,-1,-54,0,0,0.0748636 -6961,3500:141,0,-54,0,0,0.0748636 -6962,3500:141,1,-54,0,0,0.0749205 -6963,3500:142,2,-54,0,0,0.0749703 -6964,3500:143,3,-54,0,0,0.075006 -6965,3500:144,4,-54,0,0,0.0750416 -6966,3500:245,5,-54,0,0,0.0750843 -6967,3500:246,6,-54,0,0,0.0750131 -6968,3500:247,7,-54,0,0,0.074949 -6969,3500:248,8,-54,0,0,0.0748564 -6970,3500:249,9,-54,0,0,0.0748777 -6971,3501:140,10,-54,0,0,0.074892 -6972,3501:141,11,-54,0,0,0.0749062 -6973,3501:142,12,-54,0,0,0.0749205 -6974,3501:143,13,-54,0,0,0.0749275 -6975,3501:144,14,-54,0,0,0.0749275 -6976,3501:245,15,-54,0,0,0.0749346 -6977,3501:246,16,-54,0,0,0.0749205 -6978,3501:247,17,-54,0,0,0.0749205 -6979,3501:248,18,-54,0,0,0.074949 -6980,3501:249,19,-54,0,0,0.0749988 -6981,3502:140,20,-54,0,0,0.075006 -6982,3502:141,21,-54,0,0,0.0749916 -6983,3502:142,22,-54,0,0,0.0749775 -6984,3502:143,23,-54,0,0,0.0749062 -6985,3502:144,24,-54,0,0,0.0749703 -6986,3502:245,25,-54,0,0,0.0751272 -6987,3502:246,26,-54,0,0,0.0751344 -6988,3502:247,27,-54,0,0,0.0749703 -6989,3502:248,28,-54,0,0,0.075006 -6990,3502:249,29,-54,0,0,0.0750558 -6991,3503:140,30,-54,0,0,0.0750987 -6992,3503:141,31,-54,0,0,0.0756068 -6993,3503:142,32,-54,0,0,0.0758946 -6994,3503:143,33,-54,0,0,0.0759019 -6995,3503:144,34,-54,0,0,0.0761978 -6996,3503:245,35,-54,0,0,0.0759452 -6997,3503:246,36,-54,0,0,0.075686 -6998,3503:247,37,-54,0,0,0.0755926 -6999,3503:248,38,-54,0,0,0.075729 -7000,3503:249,39,-54,0,0,0.0758155 -7001,3504:140,40,-54,0,0,0.075765 -7002,3504:141,41,-54,0,0,0.0755065 -7003,3504:142,42,-54,0,0,0.0752273 -7004,3504:143,43,-54,0,0,0.0751272 -7005,3504:144,44,-54,0,0,0.0749988 -7006,3504:245,45,-54,0,0,0.0749703 -7007,3504:246,46,-54,0,0,0.0749631 -7008,3504:247,47,-54,0,0,0.0756715 -7009,3504:248,48,-54,0,0,0.0759091 -7010,3504:249,49,-54,0,0,0.0757867 -7011,3505:140,50,-54,0,0,0.0756645 -7012,3505:141,51,-54,0,0,0.0756068 -7013,3505:142,52,-54,0,0,0.0754706 -7014,3505:143,53,-54,0,0,0.0753847 -7015,3505:144,54,-54,0,0,0.075163 -7016,3505:245,55,-54,0,0,0.0750201 -7017,3505:246,56,-54,0,0,0.0749775 -7018,3505:247,57,-54,0,0,0.0749703 -7019,3505:248,58,-54,0,0,0.0749631 -7020,3505:249,59,-54,0,0,0.0750131 -7021,3506:140,60,-54,0,0,0.0752916 -7022,3506:141,61,-54,0,0,0.0757795 -7023,3506:142,62,-54,0,0,0.0765166 -7024,3506:143,63,-54,0,0,0.0762629 -7025,3506:144,64,-54,0,0,0.0752772 -7026,3506:245,65,-54,0,0,0.0760029 -7027,3506:246,66,-54,0,0,0.0768367 -7028,3506:247,67,-54,0,0,0.0800146 -7029,3506:248,68,-54,0,0,0.0792091 -7030,3506:249,69,-54,0,0,0.0772899 -7031,3507:140,70,-54,0,0,0.0805151 -7032,3507:141,71,-54,0,0,0.0820961 -7033,3507:142,72,-54,0,0,0.0783515 -7034,3507:144,74,-54,0,0,0.0767494 -7035,3507:245,75,-54,0,0,0.076713 -7036,3507:246,76,-54,0,0,0.0769607 -7037,3507:247,77,-54,0,0,0.0771947 -7038,3507:248,78,-54,0,0,0.077657 -7039,3507:249,79,-54,0,0,0.0767929 -7040,3508:140,80,-54,0,0,0.0767274 -7041,3508:141,81,-54,0,0,0.0764803 -7042,3508:142,82,-54,0,0,0.0759595 -7043,3508:143,83,-54,0,0,0.0758082 -7044,3508:144,84,-54,0,0,0.0762267 -7045,3508:245,85,-54,0,0,0.0766475 -7046,3508:246,86,-54,0,0,0.0759162 -7047,3508:247,87,-54,0,0,0.0755854 -7048,3508:248,88,-54,0,0,0.0765166 -7049,3508:249,89,-54,0,0,0.0757362 -7050,3509:140,90,-54,0,0,0.0758874 -7051,3509:141,91,-54,0,0,0.0771141 -7052,3509:142,92,-54,0,0,0.0789919 -7053,3509:143,93,-54,0,0,0.0798862 -7054,3509:144,94,-54,0,0,0.0801054 -7055,3509:245,95,-54,0,0,0.0812484 -7056,3509:246,96,-54,0,0,0.0808427 -7057,3509:247,97,-54,0,0,0.0799466 -7058,3509:248,98,-54,0,0,0.0793966 -7059,3509:249,99,-54,0,0,0.0795845 -7060,3510:140,100,-54,0,0,0.0813788 -7061,3510:141,101,-54,0,0,0.0852147 -7062,3510:142,102,-54,0,0,0.0866999 -7063,3510:143,103,-54,0,0,0.0849347 -7064,3510:144,104,-54,0,0,0.0786861 -7065,3510:245,105,-54,0,0,0.0782775 -7066,3510:246,106,-54,0,0,0.0831944 -7067,3510:247,107,-54,0,0,0.0844489 -7068,3510:248,108,-54,0,0,0.0849109 -7069,3510:249,109,-54,0,0,0.0819568 -7070,3511:140,110,-54,0,0,0.0814328 -7071,3511:141,111,-54,0,0,0.085431 -7072,3511:142,112,-54,0,0,0.0855516 -7073,3511:143,113,-54,0,0,0.0863507 -7074,3511:144,114,-54,0,0,0.0882168 -7075,3511:245,115,-54,0,0,0.0883657 -7076,3511:246,116,-54,0,0,0.088465 -7077,3511:247,117,-54,0,0,0.0894224 -7078,3511:248,118,-54,0,0,0.0908125 -7079,3511:249,119,-54,0,0,0.0910247 -7080,3512:140,120,-54,0,0,0.0885644 -7081,3512:141,121,-54,0,0,0.0910419 -7082,3512:142,122,-54,0,0,0.0913995 -7083,3512:143,123,-54,0,0,0.0917843 -7084,3512:144,124,-54,0,0,0.0927135 -7085,3512:245,125,-54,0,0,0.0932421 -7086,3512:246,126,-54,0,0,0.0950292 -7087,3512:247,127,-54,0,0,0.0962465 -7088,3512:248,128,-54,0,0,0.0969459 -7089,3512:249,129,-54,0,0,0.0978129 -7090,3513:140,130,-54,0,0,0.0986961 -7091,3513:141,131,-54,0,0,0.101126 -7092,3513:142,132,-54,0,0,0.0991998 -7093,3513:143,133,-54,0,0,0.0962735 -7094,3513:144,134,-54,0,0,0.0974869 -7095,3513:245,135,-54,0,0,0.0971712 -7096,3513:246,136,-54,0,0,0.096336 -7097,3513:247,137,-54,0,0,0.0945267 -7098,3513:248,138,-54,0,0,0.0942546 -7099,3513:249,139,-54,0,0,0.095623 -7100,3514:140,140,-54,0,0,0.095552 -7101,3514:141,141,-54,0,0,0.0954986 -7102,3514:142,142,-54,0,0,0.0939918 -7103,3514:143,143,-54,0,0,0.093983 -7104,3514:144,144,-54,0,0,0.0936684 -7105,3514:245,145,-54,0,0,0.0913313 -7106,3514:246,146,-54,0,0,0.0925235 -7107,3514:247,147,-54,0,0,0.0929557 -7108,3514:248,148,-54,0,0,0.0861725 -7109,3514:249,149,-54,0,0,0.0844886 -7110,3515:140,150,-54,0,0,0.0849506 -7111,3515:141,151,-54,0,0,0.0851985 -7112,3515:142,152,-54,0,0,0.0801886 -7113,3515:143,153,-54,0,0,0.0767056 -7114,3515:144,154,-54,0,0,0.0761038 -7115,3515:245,155,-54,0,0,0.08181 -7116,3515:246,156,-54,0,0,0.0894224 -7117,3515:247,157,-54,0,0,0.0868383 -7118,3515:248,158,-54,0,0,0.0797954 -7119,3515:249,159,-54,0,0,0.081571 -7120,3516:140,160,-54,0,0,0.0793366 -7121,3516:141,161,-54,0,0,0.0792991 -7122,3516:142,162,-54,0,0,0.0855354 -7123,3516:143,163,-54,0,0,0.0873693 -7124,3516:144,164,-54,0,0,0.0852225 -7125,3516:245,165,-54,0,0,0.0825151 -7126,3516:246,166,-54,0,0,0.0847273 -7127,3516:247,167,-54,0,0,0.101257 -7128,3516:248,168,-54,0,0,0.102933 -7129,3516:249,169,-54,0,0,0.104144 -7130,3517:140,170,-54,0,0,0.111119 -7131,3517:141,171,-54,0,0,0.109166 -7132,3517:142,172,-54,0,0,0.113868 -7133,3517:143,173,-54,0,0,0.122119 -7134,3517:144,174,-54,0,0,0.121449 -7135,3517:245,175,-54,0,0,0.118972 -7136,3517:246,176,-54,0,0,0.113278 -7137,3517:247,177,-54,0,0,0.109666 -7138,3517:248,178,-54,0,0,0.116697 -7139,3517:249,179,-54,0,0,0.121856 -7140,3518:140,180,-54,0,0,0.117249 -7141,5518:130,-180,-53,0,0,0.120314 -7142,5517:239,-179,-53,0,0,0.115642 -7143,5517:238,-178,-53,0,0,0.111454 -7144,5517:237,-177,-53,0,0,0.106516 -7145,5517:236,-176,-53,0,0,0.102867 -7146,5517:235,-175,-53,0,0,0.100921 -7147,5517:134,-174,-53,0,0,0.100001 -7148,5517:133,-173,-53,0,0,0.0991264 -7149,5517:132,-172,-53,0,0,0.0983766 -7150,5517:131,-171,-53,0,0,0.0975142 -7151,5517:130,-170,-53,0,0,0.0953389 -7152,5516:239,-169,-53,0,0,0.094123 -7153,5516:238,-168,-53,0,0,0.0945618 -7154,5516:237,-167,-53,0,0,0.093983 -7155,5516:236,-166,-53,0,0,0.0949674 -7156,5516:235,-165,-53,0,0,0.0965511 -7157,5516:134,-164,-53,0,0,0.0982763 -7158,5516:133,-163,-53,0,0,0.0976589 -7159,5516:132,-162,-53,0,0,0.0972703 -7160,5516:131,-161,-53,0,0,0.0988515 -7161,5516:130,-160,-53,0,0,0.0950117 -7162,5515:239,-159,-53,0,0,0.0920243 -7163,5515:238,-158,-53,0,0,0.0932593 -7164,5515:237,-157,-53,0,0,0.0993652 -7165,5515:236,-156,-53,0,0,0.0999736 -7166,5515:235,-155,-53,0,0,0.0925061 -7167,5515:134,-154,-53,0,0,0.0889136 -7168,5515:133,-153,-53,0,0,0.0881755 -7169,5515:132,-152,-53,0,0,0.0900771 -7170,5515:131,-151,-53,0,0,0.096327 -7171,5515:130,-150,-53,0,0,0.0970989 -7172,5514:239,-149,-53,0,0,0.0963003 -7173,5514:238,-148,-53,0,0,0.0998258 -7174,5514:237,-147,-53,0,0,0.107085 -7175,5514:236,-146,-53,0,0,0.111566 -7176,5514:235,-145,-53,0,0,0.117387 -7177,5514:134,-144,-53,0,0,0.124754 -7178,5514:133,-143,-53,0,0,0.130694 -7179,5514:132,-142,-53,0,0,0.135627 -7180,5514:131,-141,-53,0,0,0.134379 -7181,5514:130,-140,-53,0,0,0.136545 -7182,5513:239,-139,-53,0,0,0.128056 -7183,5513:238,-138,-53,0,0,0.120303 -7184,5513:237,-137,-53,0,0,0.112702 -7185,5513:236,-136,-53,0,0,0.110633 -7186,5513:235,-135,-53,0,0,0.107616 -7187,5513:134,-134,-53,0,0,0.105746 -7188,5513:133,-133,-53,0,0,0.106292 -7189,5513:132,-132,-53,0,0,0.108647 -7190,5513:131,-131,-53,0,0,0.111129 -7191,5513:130,-130,-53,0,0,0.109977 -7193,5512:238,-128,-53,0,0,0.106879 -7194,5512:237,-127,-53,0,0,0.109937 -7195,5512:236,-126,-53,0,0,0.112804 -7196,5512:235,-125,-53,0,0,0.115045 -7197,5512:134,-124,-53,0,0,0.117185 -7198,5512:133,-123,-53,0,0,0.119047 -7199,5512:132,-122,-53,0,0,0.115779 -7200,5512:131,-121,-53,0,0,0.116994 -7201,5512:130,-120,-53,0,0,0.120444 -7202,5511:239,-119,-53,0,0,0.115537 -7203,5511:238,-118,-53,0,0,0.119004 -7204,5511:237,-117,-53,0,0,0.120129 -7205,5511:236,-116,-53,0,0,0.120531 -7206,5511:235,-115,-53,0,0,0.12146 -7207,5511:134,-114,-53,0,0,0.121296 -7208,5511:133,-113,-53,0,0,0.114836 -7209,5511:132,-112,-53,0,0,0.118682 -7210,5511:131,-111,-53,0,0,0.121702 -7211,5511:130,-110,-53,0,0,0.121691 -7212,5510:239,-109,-53,0,0,0.118156 -7213,5510:238,-108,-53,0,0,0.116729 -7214,5510:237,-107,-53,0,0,0.115842 -7215,5510:236,-106,-53,0,0,0.11175 -7216,5510:235,-105,-53,0,0,0.112866 -7217,5510:134,-104,-53,0,0,0.114263 -7218,5510:133,-103,-53,0,0,0.115244 -7219,5510:132,-102,-53,0,0,0.115139 -7220,5510:131,-101,-53,0,0,0.114346 -7221,5510:130,-100,-53,0,0,0.116633 -7222,5509:239,-99,-53,0,0,0.123014 -7223,5509:238,-98,-53,0,0,0.12526 -7224,5509:237,-97,-53,0,0,0.120096 -7225,5509:236,-96,-53,0,0,0.119847 -7226,5509:235,-95,-53,0,0,0.120717 -7227,5509:134,-94,-53,0,0,0.118381 -7228,5509:133,-93,-53,0,0,0.115076 -7229,5509:132,-92,-53,0,0,0.114252 -7230,5509:131,-91,-53,0,0,0.114086 -7231,5509:130,-90,-53,0,0,0.116179 -7232,5508:239,-89,-53,0,0,0.121581 -7233,5508:238,-88,-53,0,0,0.122329 -7234,5508:237,-87,-53,0,0,0.12123 -7235,5508:236,-86,-53,0,0,0.120815 -7236,5508:235,-85,-53,0,0,0.120466 -7237,5508:134,-84,-53,0,0,0.117164 -7238,5508:133,-83,-53,0,0,0.118017 -7239,5508:132,-82,-53,0,0,0.119576 -7240,5508:131,-81,-53,0,0,0.12202 -7241,5508:130,-80,-53,0,0,0.12123 -7242,5507:239,-79,-53,0,0,0.12064 -7243,5507:238,-78,-53,0,0,0.121186 -7244,5507:237,-77,-53,0,0,0.118081 -7245,5507:236,-76,-53,0,0,0.118092 -7246,5507:235,-75,-53,0,0,0.121285 -7247,5507:134,-74,-53,0,0,0.122395 -7248,5507:133,-73,-53,0,0,0.119858 -7249,5507:132,-72,-53,0,0,0.11619 -7250,5507:131,-71,-53,0,0,0.116613 -7251,5507:130,-70,-53,0,0,0.11866 -7252,5506:239,-69,-53,0,0,0.117089 -7253,5506:238,-68,-53,0,0,0.111281 -7254,5506:237,-67,-53,0,0,0.103943 -7255,5506:236,-66,-53,0,0,0.103209 -7256,5506:235,-65,-53,0,0,0.102981 -7257,5506:134,-64,-53,0,0,0.0925667 -7258,5506:133,-63,-53,0,0,0.0860837 -7259,5506:132,-62,-53,0,0,0.085648 -7260,5506:131,-61,-53,0,0,0.0819259 -7261,5506:130,-60,-53,0,0,0.0846795 -7262,5505:239,-59,-53,0,0,0.0859947 -7263,5505:238,-58,-53,0,0,0.0861967 -7264,5505:237,-57,-53,0,0,0.0816711 -7265,5505:236,-56,-53,0,0,0.078865 -7266,5505:235,-55,-53,0,0,0.0779889 -7267,5505:134,-54,-53,0,0,0.077063 -7268,5505:133,-53,-53,0,0,0.0773924 -7269,5505:132,-52,-53,0,0,0.07565 -7270,5505:131,-51,-53,0,0,0.0752487 -7271,5505:130,-50,-53,0,0,0.0756213 -7272,5504:239,-49,-53,0,0,0.0752201 -7273,5504:238,-48,-53,0,0,0.0749562 -7274,5504:237,-47,-53,0,0,0.075006 -7275,5504:236,-46,-53,0,0,0.0750273 -7276,5504:235,-45,-53,0,0,0.0750416 -7277,5504:134,-44,-53,0,0,0.0749703 -7278,5504:133,-43,-53,0,0,0.0749775 -7279,5504:132,-42,-53,0,0,0.0750273 -7280,5504:131,-41,-53,0,0,0.0750201 -7281,5504:130,-40,-53,0,0,0.0749988 -7282,5503:239,-39,-53,0,0,0.0750558 -7283,5503:238,-38,-53,0,0,0.0751558 -7284,5503:237,-37,-53,0,0,0.0749916 -7285,5503:236,-36,-53,0,0,0.0749703 -7286,5503:235,-35,-53,0,0,0.0749775 -7287,5503:134,-34,-53,0,0,0.0749846 -7288,5503:133,-33,-53,0,0,0.0749846 -7289,5503:132,-32,-53,0,0,0.0749846 -7290,5503:131,-31,-53,0,0,0.0749846 -7291,5503:130,-30,-53,0,0,0.0749916 -7292,5502:239,-29,-53,0,0,0.0749846 -7293,5502:238,-28,-53,0,0,0.0749775 -7294,5502:237,-27,-53,0,0,0.0749775 -7295,5502:236,-26,-53,0,0,0.0749988 -7296,5502:235,-25,-53,0,0,0.0750773 -7297,5502:134,-24,-53,0,0,0.0749988 -7298,5502:133,-23,-53,0,0,0.0750201 -7299,5502:132,-22,-53,0,0,0.0750558 -7300,5502:131,-21,-53,0,0,0.0750488 -7301,5502:130,-20,-53,0,0,0.07512 -7302,5501:239,-19,-53,0,0,0.0751701 -7303,5501:238,-18,-53,0,0,0.0752057 -7304,5501:237,-17,-53,0,0,0.0749988 -7305,5501:236,-16,-53,0,0,0.0749562 -7306,5501:235,-15,-53,0,0,0.0749562 -7307,5501:134,-14,-53,0,0,0.0749418 -7308,5501:133,-13,-53,0,0,0.0749275 -7309,5501:132,-12,-53,0,0,0.0749562 -7310,5501:131,-11,-53,0,0,0.0749846 -7311,5501:130,-10,-53,0,0,0.0749418 -7312,5500:239,-9,-53,0,0,0.0749205 -7313,5500:238,-8,-53,0,0,0.074949 -7314,5500:237,-7,-53,0,0,0.0749775 -7315,5500:236,-6,-53,0,0,0.0749418 -7316,5500:235,-5,-53,0,0,0.0749205 -7317,5500:134,-4,-53,0,0,0.0749133 -7318,5500:133,-3,-53,0,0,0.074899 -7319,5500:132,-2,-53,0,0,0.0748777 -7320,5500:131,-1,-53,0,0,0.0748705 -7321,3500:131,0,-53,0,0,0.0749418 -7322,3500:131,1,-53,0,0,0.0750416 -7323,3500:132,2,-53,0,0,0.0752129 -7324,3500:133,3,-53,0,0,0.0752559 -7325,3500:134,4,-53,0,0,0.0754133 -7326,3500:235,5,-53,0,0,0.0754779 -7327,3500:236,6,-53,0,0,0.0753917 -7328,3500:237,7,-53,0,0,0.0752343 -7329,3500:238,8,-53,0,0,0.0750702 -7330,3500:239,9,-53,0,0,0.0749775 -7331,3501:130,10,-53,0,0,0.0749062 -7332,3501:131,11,-53,0,0,0.0748849 -7333,3501:132,12,-53,0,0,0.0749062 -7334,3501:133,13,-53,0,0,0.0749062 -7335,3501:134,14,-53,0,0,0.0749062 -7336,3501:235,15,-53,0,0,0.0749205 -7337,3501:236,16,-53,0,0,0.0749205 -7338,3501:237,17,-53,0,0,0.0749275 -7339,3501:238,18,-53,0,0,0.074949 -7340,3501:239,19,-53,0,0,0.0749703 -7341,3502:130,20,-53,0,0,0.0749631 -7342,3502:131,21,-53,0,0,0.0749631 -7343,3502:132,22,-53,0,0,0.0749631 -7344,3502:133,23,-53,0,0,0.0749562 -7345,3502:134,24,-53,0,0,0.074949 -7346,3502:235,25,-53,0,0,0.0749916 -7347,3502:236,26,-53,0,0,0.0749562 -7348,3502:237,27,-53,0,0,0.0750558 -7349,3502:238,28,-53,0,0,0.0750843 -7350,3502:239,29,-53,0,0,0.0750416 -7351,3503:130,30,-53,0,0,0.0750273 -7352,3503:131,31,-53,0,0,0.0750558 -7353,3503:132,32,-53,0,0,0.0750843 -7354,3503:133,33,-53,0,0,0.0754348 -7355,3503:134,34,-53,0,0,0.0754061 -7356,3503:235,35,-53,0,0,0.0756787 -7357,3503:236,36,-53,0,0,0.0761327 -7358,3503:237,37,-53,0,0,0.0760172 -7359,3503:238,38,-53,0,0,0.0758946 -7360,3503:239,39,-53,0,0,0.0761472 -7361,3504:130,40,-53,0,0,0.0763789 -7362,3504:131,41,-53,0,0,0.0763064 -7363,3504:132,42,-53,0,0,0.0762848 -7364,3504:133,43,-53,0,0,0.0758803 -7365,3504:134,44,-53,0,0,0.0754849 -7366,3504:235,45,-53,0,0,0.0753272 -7367,3504:236,46,-53,0,0,0.0753631 -7368,3504:237,47,-53,0,0,0.0751128 -7369,3504:238,48,-53,0,0,0.0754275 -7370,3504:239,49,-53,0,0,0.0749916 -7371,3505:130,50,-53,0,0,0.0749916 -7372,3505:131,51,-53,0,0,0.0754706 -7373,3505:132,52,-53,0,0,0.0755207 -7374,3505:133,53,-53,0,0,0.0754203 -7375,3505:134,54,-53,0,0,0.075313 -7376,3505:235,55,-53,0,0,0.0751771 -7377,3505:236,56,-53,0,0,0.0751128 -7378,3505:237,57,-53,0,0,0.0750558 -7379,3505:238,58,-53,0,0,0.0750702 -7380,3505:239,59,-53,0,0,0.0750345 -7381,3506:130,60,-53,0,0,0.0757867 -7382,3506:131,61,-53,0,0,0.0760967 -7383,3506:132,62,-53,0,0,0.0768877 -7384,3506:133,63,-53,0,0,0.077856 -7385,3506:134,64,-53,0,0,0.0782329 -7386,3506:235,65,-53,0,0,0.0779445 -7387,3506:236,66,-53,0,0,0.0784258 -7388,3506:237,67,-53,0,0,0.0822044 -7389,3506:238,68,-53,0,0,0.0845362 -7390,3506:239,69,-53,0,0,0.0839103 -7391,3507:130,70,-53,0,0,0.0849428 -7392,3507:131,71,-53,0,0,0.0852225 -7393,3507:132,72,-53,0,0,0.0825384 -7394,3507:134,74,-53,0,0,0.0807435 -7395,3507:235,75,-53,0,0,0.0814865 -7396,3507:236,76,-53,0,0,0.0816711 -7397,3507:237,77,-53,0,0,0.0803025 -7398,3507:238,78,-53,0,0,0.0785968 -7399,3507:239,79,-53,0,0,0.0778116 -7400,3508:130,80,-53,0,0,0.0773559 -7401,3508:131,81,-53,0,0,0.0766184 -7402,3508:132,82,-53,0,0,0.0763208 -7403,3508:133,83,-53,0,0,0.0758874 -7404,3508:134,84,-53,0,0,0.0759811 -7405,3508:235,85,-53,0,0,0.0763281 -7406,3508:236,86,-53,0,0,0.0764296 -7407,3508:237,87,-53,0,0,0.0769242 -7408,3508:238,88,-53,0,0,0.0769242 -7409,3508:239,89,-53,0,0,0.0775762 -7410,3509:130,90,-53,0,0,0.0776127 -7411,3509:131,91,-53,0,0,0.0785893 -7412,3509:132,92,-53,0,0,0.0799164 -7413,3509:133,93,-53,0,0,0.0829126 -7414,3509:134,94,-53,0,0,0.0839655 -7415,3509:235,95,-53,0,0,0.0837523 -7416,3509:236,96,-53,0,0,0.0842266 -7417,3509:237,97,-53,0,0,0.0854552 -7418,3509:238,98,-53,0,0,0.086116 -7419,3509:239,99,-53,0,0,0.0860028 -7420,3510:130,100,-53,0,0,0.0860837 -7421,3510:131,101,-53,0,0,0.0875991 -7422,3510:132,102,-53,0,0,0.0896151 -7423,3510:133,103,-53,0,0,0.0891801 -7424,3510:134,104,-53,0,0,0.0893389 -7425,3510:235,105,-53,0,0,0.0898166 -7426,3510:236,106,-53,0,0,0.0886475 -7427,3510:237,107,-53,0,0,0.0849267 -7428,3510:238,108,-53,0,0,0.0863265 -7429,3510:239,109,-53,0,0,0.0864237 -7430,3511:130,110,-53,0,0,0.0863425 -7431,3511:131,111,-53,0,0,0.0869281 -7432,3511:132,112,-53,0,0,0.0881177 -7433,3511:133,113,-53,0,0,0.0888968 -7434,3511:134,114,-53,0,0,0.0899425 -7435,3511:235,115,-53,0,0,0.0923426 -7436,3511:236,116,-53,0,0,0.0938517 -7437,3511:237,117,-53,0,0,0.0928864 -7438,3511:238,118,-53,0,0,0.0904737 -7439,3511:239,119,-53,0,0,0.0910333 -7440,3512:130,120,-53,0,0,0.0915191 -7441,3512:131,121,-53,0,0,0.0930165 -7442,3512:132,122,-53,0,0,0.0934855 -7443,3512:133,123,-53,0,0,0.0950645 -7444,3512:134,124,-53,0,0,0.097 -7445,3512:235,125,-53,0,0,0.0973786 -7446,3512:236,126,-53,0,0,0.0962021 -7447,3512:237,127,-53,0,0,0.0961751 -7448,3512:238,128,-53,0,0,0.096919 -7449,3512:239,129,-53,0,0,0.0971622 -7450,3513:130,130,-53,0,0,0.0997796 -7451,3513:131,131,-53,0,0,0.10448 -7452,3513:132,132,-53,0,0,0.103114 -7453,3513:133,133,-53,0,0,0.099909 -7454,3513:134,134,-53,0,0,0.0987234 -7455,3513:235,135,-53,0,0,0.0997703 -7456,3513:236,136,-53,0,0,0.100958 -7457,3513:237,137,-53,0,0,0.0986138 -7458,3513:238,138,-53,0,0,0.0974869 -7459,3513:239,139,-53,0,0,0.099872 -7460,3514:130,140,-53,0,0,0.0989063 -7461,3514:131,141,-53,0,0,0.0968562 -7462,3514:132,142,-53,0,0,0.0950823 -7463,3514:133,143,-53,0,0,0.0954009 -7464,3514:134,144,-53,0,0,0.0983674 -7465,3514:235,145,-53,0,0,0.0966496 -7466,3514:236,146,-53,0,0,0.0961841 -7467,3514:237,147,-53,0,0,0.0955251 -7468,3514:238,148,-53,0,0,0.0935463 -7469,3514:239,149,-53,0,0,0.0919214 -7470,3515:130,150,-53,0,0,0.0924372 -7471,3515:131,151,-53,0,0,0.0855276 -7472,3515:132,152,-53,0,0,0.0848787 -7473,3515:133,153,-53,0,0,0.0850467 -7474,3515:134,154,-53,0,0,0.0792691 -7475,3515:235,155,-53,0,0,0.0848948 -7476,3515:236,156,-53,0,0,0.0933116 -7477,3515:237,157,-53,0,0,0.0943248 -7478,3515:238,158,-53,0,0,0.0933288 -7479,3515:239,159,-53,0,0,0.0951266 -7480,3516:130,160,-53,0,0,0.0937819 -7481,3516:131,161,-53,0,0,0.0905922 -7482,3516:132,162,-53,0,0,0.104471 -7483,3516:133,163,-53,0,0,0.107262 -7484,3516:134,164,-53,0,0,0.103133 -7485,3516:235,165,-53,0,0,0.107528 -7486,3516:236,166,-53,0,0,0.103009 -7487,3516:237,167,-53,0,0,0.106184 -7488,3516:238,168,-53,0,0,0.107134 -7489,3516:239,169,-53,0,0,0.109195 -7490,3517:130,170,-53,0,0,0.11909 -7491,3517:131,171,-53,0,0,0.125847 -7492,3517:132,172,-53,0,0,0.128216 -7493,3517:133,173,-53,0,0,0.127838 -7494,3517:134,174,-53,0,0,0.125756 -7495,3517:235,175,-53,0,0,0.123347 -7496,3517:236,176,-53,0,0,0.120782 -7497,3517:237,177,-53,0,0,0.121691 -7498,3517:238,178,-53,0,0,0.123659 -7499,3517:239,179,-53,0,0,0.121033 -7500,3518:130,180,-53,0,0,0.120314 -7501,5518:120,-180,-52,0,0,0.11299 -7502,5517:229,-179,-52,0,0,0.108389 -7503,5517:228,-178,-52,0,0,0.110602 -7504,5517:227,-177,-52,0,0,0.109166 -7505,5517:226,-176,-52,0,0,0.11038 -7506,5517:225,-175,-52,0,0,0.110451 -7507,5517:124,-174,-52,0,0,0.105805 -7508,5517:123,-173,-52,0,0,0.107725 -7509,5517:122,-172,-52,0,0,0.107508 -7510,5517:121,-171,-52,0,0,0.107232 -7511,5517:120,-170,-52,0,0,0.105902 -7512,5516:229,-169,-52,0,0,0.102696 -7513,5516:228,-168,-52,0,0,0.102857 -7514,5516:227,-167,-52,0,0,0.103895 -7515,5516:226,-166,-52,0,0,0.105717 -7516,5516:225,-165,-52,0,0,0.109105 -7517,5516:124,-164,-52,0,0,0.11121 -7518,5516:123,-163,-52,0,0,0.107903 -7519,5516:122,-162,-52,0,0,0.105873 -7520,5516:121,-161,-52,0,0,0.106908 -7521,5516:120,-160,-52,0,0,0.105068 -7522,5515:229,-159,-52,0,0,0.102791 -7523,5515:228,-158,-52,0,0,0.106849 -7524,5515:227,-157,-52,0,0,0.112097 -7525,5515:226,-156,-52,0,0,0.112097 -7526,5515:225,-155,-52,0,0,0.0998813 -7527,5515:124,-154,-52,0,0,0.0886974 -7528,5515:123,-153,-52,0,0,0.0888136 -7529,5515:122,-152,-52,0,0,0.0898417 -7530,5515:121,-151,-52,0,0,0.089892 -7531,5515:120,-150,-52,0,0,0.0937209 -7532,5514:229,-149,-52,0,0,0.0949233 -7533,5514:228,-148,-52,0,0,0.0956051 -7534,5514:227,-147,-52,0,0,0.10678 -7535,5514:226,-146,-52,0,0,0.10823 -7536,5514:225,-145,-52,0,0,0.115338 -7537,5514:124,-144,-52,0,0,0.12357 -7538,5514:123,-143,-52,0,0,0.126401 -7539,5514:122,-142,-52,0,0,0.129902 -7540,5514:121,-141,-52,0,0,0.136775 -7541,5514:120,-140,-52,0,0,0.13663 -7542,5513:229,-139,-52,0,0,0.130344 -7543,5513:228,-138,-52,0,0,0.123281 -7544,5513:227,-137,-52,0,0,0.11638 -7545,5513:226,-136,-52,0,0,0.115716 -7546,5513:225,-135,-52,0,0,0.116443 -7547,5513:124,-134,-52,0,0,0.11333 -7548,5513:123,-133,-52,0,0,0.116401 -7549,5513:122,-132,-52,0,0,0.1147 -7550,5513:121,-131,-52,0,0,0.116686 -7551,5513:120,-130,-52,0,0,0.117568 -7552,5512:229,-129,-52,0,0,0.118961 -7553,5512:228,-128,-52,0,0,0.11495 -7554,5512:227,-127,-52,0,0,0.115306 -7555,5512:226,-126,-52,0,0,0.119123 -7556,5512:225,-125,-52,0,0,0.119522 -7557,5512:124,-124,-52,0,0,0.127095 -7558,5512:123,-123,-52,0,0,0.128136 -7559,5512:122,-122,-52,0,0,0.12499 -7560,5512:121,-121,-52,0,0,0.121154 -7561,5512:120,-120,-52,0,0,0.120433 -7562,5511:229,-119,-52,0,0,0.117686 -7563,5511:228,-118,-52,0,0,0.118638 -7564,5511:227,-117,-52,0,0,0.120597 -7565,5511:226,-116,-52,0,0,0.122318 -7566,5511:225,-115,-52,0,0,0.121438 -7567,5511:124,-114,-52,0,0,0.121175 -7568,5511:123,-113,-52,0,0,0.124418 -7569,5511:122,-112,-52,0,0,0.117824 -7570,5511:121,-111,-52,0,0,0.119349 -7571,5511:120,-110,-52,0,0,0.123882 -7572,5510:229,-109,-52,0,0,0.121932 -7573,5510:228,-108,-52,0,0,0.120488 -7574,5510:227,-107,-52,0,0,0.120902 -7575,5510:226,-106,-52,0,0,0.119047 -7576,5510:225,-105,-52,0,0,0.115863 -7577,5510:124,-104,-52,0,0,0.119112 -7578,5510:123,-103,-52,0,0,0.12434 -7579,5510:122,-102,-52,0,0,0.130403 -7580,5510:121,-101,-52,0,0,0.129763 -7581,5510:120,-100,-52,0,0,0.12367 -7582,5509:229,-99,-52,0,0,0.124575 -7583,5509:228,-98,-52,0,0,0.128699 -7584,5509:227,-97,-52,0,0,0.122804 -7585,5509:226,-96,-52,0,0,0.119328 -7586,5509:225,-95,-52,0,0,0.120859 -7587,5509:124,-94,-52,0,0,0.125305 -7588,5509:123,-93,-52,0,0,0.120782 -7589,5509:122,-92,-52,0,0,0.115191 -7590,5509:121,-91,-52,0,0,0.114992 -7591,5509:120,-90,-52,0,0,0.11494 -7592,5508:229,-89,-52,0,0,0.120608 -7593,5508:228,-88,-52,0,0,0.12337 -7594,5508:227,-87,-52,0,0,0.121812 -7595,5508:226,-86,-52,0,0,0.122693 -7596,5508:225,-85,-52,0,0,0.122528 -7597,5508:124,-84,-52,0,0,0.122274 -7598,5508:123,-83,-52,0,0,0.123659 -7599,5508:122,-82,-52,0,0,0.126265 -7600,5508:121,-81,-52,0,0,0.126856 -7601,5508:120,-80,-52,0,0,0.124586 -7602,5507:229,-79,-52,0,0,0.122738 -7603,5507:228,-78,-52,0,0,0.128102 -7604,5507:227,-77,-52,0,0,0.12952 -7605,5507:226,-76,-52,0,0,0.127964 -7606,5507:225,-75,-52,0,0,0.127015 -7607,5507:124,-74,-52,0,0,0.124631 -7608,5507:123,-73,-52,0,0,0.119641 -7609,5507:122,-72,-52,0,0,0.120053 -7610,5507:121,-71,-52,0,0,0.117334 -7611,5507:120,-70,-52,0,0,0.116898 -7612,5506:229,-69,-52,0,0,0.115181 -7613,5506:228,-68,-52,0,0,0.10637 -7614,5506:227,-67,-52,0,0,0.108766 -7615,5506:226,-66,-52,0,0,0.107488 -7616,5506:225,-65,-52,0,0,0.101519 -7617,5506:124,-64,-52,0,0,0.0909228 -7618,5506:123,-63,-52,0,0,0.090906 -7619,5506:122,-62,-52,0,0,0.0925925 -7620,5506:121,-61,-52,0,0,0.0946325 -7621,5506:120,-60,-52,0,0,0.0966586 -7622,5505:229,-59,-52,0,0,0.096865 -7623,5505:228,-58,-52,0,0,0.0926012 -7624,5505:227,-57,-52,0,0,0.0885644 -7625,5505:226,-56,-52,0,0,0.0821193 -7626,5505:225,-55,-52,0,0,0.0825462 -7627,5505:124,-54,-52,0,0,0.0817947 -7628,5505:123,-53,-52,0,0,0.077451 -7629,5505:122,-52,-52,0,0,0.0769315 -7630,5505:121,-51,-52,0,0,0.0763064 -7631,5505:120,-50,-52,0,0,0.0764006 -7632,5504:229,-49,-52,0,0,0.0752201 -7633,5504:228,-48,-52,0,0,0.0753703 -7634,5504:227,-47,-52,0,0,0.0751701 -7635,5504:226,-46,-52,0,0,0.0754203 -7636,5504:225,-45,-52,0,0,0.0756715 -7637,5504:124,-44,-52,0,0,0.0756715 -7638,5504:123,-43,-52,0,0,0.0787084 -7639,5504:122,-42,-52,0,0,0.0788427 -7640,5504:121,-41,-52,0,0,0.0773337 -7641,5504:120,-40,-52,0,0,0.0770922 -7642,5503:229,-39,-52,0,0,0.0776718 -7643,5503:228,-38,-52,0,0,0.084021 -7644,5503:227,-37,-52,0,0,0.0804543 -7645,5503:226,-36,-52,0,0,0.0763427 -7646,5503:225,-35,-52,0,0,0.0769973 -7647,5503:124,-34,-52,0,0,0.0775026 -7648,5503:123,-33,-52,0,0,0.0764079 -7649,5503:122,-32,-52,0,0,0.0749275 -7650,5503:121,-31,-52,0,0,0.0754993 -7651,5503:120,-30,-52,0,0,0.0749703 -7652,5502:229,-29,-52,0,0,0.0749988 -7653,5502:228,-28,-52,0,0,0.0749916 -7654,5502:227,-27,-52,0,0,0.0749775 -7655,5502:226,-26,-52,0,0,0.0750558 -7656,5502:225,-25,-52,0,0,0.0771726 -7657,5502:124,-24,-52,0,0,0.0836814 -7658,5502:123,-23,-52,0,0,0.0803405 -7659,5502:122,-22,-52,0,0,0.079532 -7660,5502:121,-21,-52,0,0,0.0767712 -7661,5502:120,-20,-52,0,0,0.0760749 -7662,5501:229,-19,-52,0,0,0.0772899 -7663,5501:228,-18,-52,0,0,0.0759811 -7664,5501:227,-17,-52,0,0,0.0755567 -7665,5501:226,-16,-52,0,0,0.0755135 -7666,5501:225,-15,-52,0,0,0.0758082 -7667,5501:124,-14,-52,0,0,0.075442 -7668,5501:123,-13,-52,0,0,0.0749775 -7669,5501:122,-12,-52,0,0,0.0749562 -7670,5501:121,-11,-52,0,0,0.0749562 -7671,5501:120,-10,-52,0,0,0.074949 -7672,5500:229,-9,-52,0,0,0.0749631 -7673,5500:228,-8,-52,0,0,0.0749703 -7674,5500:227,-7,-52,0,0,0.0749631 -7675,5500:226,-6,-52,0,0,0.074949 -7676,5500:225,-5,-52,0,0,0.0749418 -7677,5500:124,-4,-52,0,0,0.0749275 -7678,5500:123,-3,-52,0,0,0.0749133 -7679,5500:122,-2,-52,0,0,0.074899 -7680,5500:121,-1,-52,0,0,0.0749133 -7681,3500:121,0,-52,0,0,0.0749275 -7682,3500:121,1,-52,0,0,0.0749562 -7683,3500:122,2,-52,0,0,0.0753203 -7684,3500:123,3,-52,0,0,0.0755065 -7685,3500:124,4,-52,0,0,0.0756285 -7686,3500:225,5,-52,0,0,0.0757507 -7687,3500:226,6,-52,0,0,0.0757362 -7688,3500:227,7,-52,0,0,0.0756787 -7689,3500:228,8,-52,0,0,0.0754706 -7690,3500:229,9,-52,0,0,0.0751771 -7691,3501:120,10,-52,0,0,0.0750273 -7692,3501:121,11,-52,0,0,0.075006 -7693,3501:122,12,-52,0,0,0.074899 -7694,3501:123,13,-52,0,0,0.0749062 -7695,3501:124,14,-52,0,0,0.0749275 -7696,3501:225,15,-52,0,0,0.0749275 -7697,3501:226,16,-52,0,0,0.0749275 -7698,3501:227,17,-52,0,0,0.0749418 -7699,3501:228,18,-52,0,0,0.0749418 -7700,3501:229,19,-52,0,0,0.0749562 -7701,3502:120,20,-52,0,0,0.074949 -7702,3502:121,21,-52,0,0,0.0749562 -7703,3502:122,22,-52,0,0,0.0749631 -7704,3502:123,23,-52,0,0,0.0749631 -7705,3502:124,24,-52,0,0,0.0750131 -7706,3502:225,25,-52,0,0,0.0749988 -7707,3502:226,26,-52,0,0,0.0750273 -7708,3502:227,27,-52,0,0,0.0752415 -7709,3502:228,28,-52,0,0,0.0753058 -7710,3502:229,29,-52,0,0,0.0751701 -7711,3503:120,30,-52,0,0,0.0751843 -7712,3503:121,31,-52,0,0,0.0753703 -7713,3503:122,32,-52,0,0,0.0754634 -7714,3503:123,33,-52,0,0,0.0754348 -7715,3503:124,34,-52,0,0,0.075313 -7716,3503:225,35,-52,0,0,0.0754203 -7717,3503:226,36,-52,0,0,0.0755711 -7718,3503:227,37,-52,0,0,0.0757362 -7719,3503:228,38,-52,0,0,0.0759091 -7720,3503:229,39,-52,0,0,0.076046 -7721,3504:120,40,-52,0,0,0.0764513 -7722,3504:121,41,-52,0,0,0.0765384 -7723,3504:122,42,-52,0,0,0.0766839 -7724,3504:123,43,-52,0,0,0.0764442 -7725,3504:124,44,-52,0,0,0.0762775 -7726,3504:225,45,-52,0,0,0.0761907 -7727,3504:226,46,-52,0,0,0.0762848 -7728,3504:227,47,-52,0,0,0.0753847 -7729,3504:228,48,-52,0,0,0.075163 -7730,3504:229,49,-52,0,0,0.0751701 -7731,3505:120,50,-52,0,0,0.0752343 -7732,3505:121,51,-52,0,0,0.0750416 -7733,3505:122,52,-52,0,0,0.0753272 -7734,3505:123,53,-52,0,0,0.0755352 -7735,3505:124,54,-52,0,0,0.0754492 -7736,3505:225,55,-52,0,0,0.0754779 -7737,3505:226,56,-52,0,0,0.0753917 -7738,3505:227,57,-52,0,0,0.0750702 -7739,3505:228,58,-52,0,0,0.075313 -7740,3505:229,59,-52,0,0,0.0755567 -7741,3506:120,60,-52,0,0,0.0752487 -7742,3506:121,61,-52,0,0,0.075837 -7743,3506:122,62,-52,0,0,0.0763064 -7744,3506:123,63,-52,0,0,0.0771067 -7745,3506:124,64,-52,0,0,0.0848548 -7746,3506:225,65,-52,0,0,0.0809651 -7747,3506:226,66,-52,0,0,0.0812332 -7748,3506:227,67,-52,0,0,0.0824607 -7749,3506:228,68,-52,0,0,0.0854151 -7750,3506:229,69,-52,0,0,0.0870994 -7751,3507:120,70,-52,0,0,0.0886974 -7752,3507:121,71,-52,0,0,0.0876154 -7753,3507:122,72,-52,0,0,0.0828347 -7754,3507:124,74,-52,0,0,0.0820961 -7755,3507:225,75,-52,0,0,0.0800373 -7756,3507:226,76,-52,0,0,0.0791191 -7757,3507:227,77,-52,0,0,0.0784258 -7758,3507:228,78,-52,0,0,0.077657 -7759,3507:229,79,-52,0,0,0.0774732 -7760,3508:120,80,-52,0,0,0.0769973 -7761,3508:121,81,-52,0,0,0.0766328 -7762,3508:122,82,-52,0,0,0.0762702 -7763,3508:123,83,-52,0,0,0.0760822 -7764,3508:124,84,-52,0,0,0.0765313 -7765,3508:225,85,-52,0,0,0.0763571 -7766,3508:226,86,-52,0,0,0.0761834 -7767,3508:227,87,-52,0,0,0.0801962 -7768,3508:228,88,-52,0,0,0.0857367 -7769,3508:229,89,-52,0,0,0.0842346 -7770,3509:120,90,-52,0,0,0.0846955 -7771,3509:121,91,-52,0,0,0.0900689 -7772,3509:122,92,-52,0,0,0.0910673 -7773,3509:123,93,-52,0,0,0.0846078 -7774,3509:124,94,-52,0,0,0.0869686 -7775,3509:225,95,-52,0,0,0.0858575 -7776,3509:226,96,-52,0,0,0.0878787 -7777,3509:227,97,-52,0,0,0.0884155 -7778,3509:228,98,-52,0,0,0.0900689 -7779,3509:229,99,-52,0,0,0.091485 -7780,3510:120,100,-52,0,0,0.090533 -7781,3510:121,101,-52,0,0,0.0891801 -7782,3510:122,102,-52,0,0,0.0903723 -7783,3510:123,103,-52,0,0,0.0931986 -7784,3510:124,104,-52,0,0,0.0941931 -7785,3510:225,105,-52,0,0,0.0892971 -7786,3510:226,106,-52,0,0,0.0892887 -7787,3510:227,107,-52,0,0,0.0893389 -7788,3510:228,108,-52,0,0,0.0871321 -7789,3510:229,109,-52,0,0,0.0870342 -7790,3511:120,110,-52,0,0,0.0879529 -7791,3511:121,111,-52,0,0,0.0875169 -7792,3511:122,112,-52,0,0,0.0872464 -7793,3511:123,113,-52,0,0,0.0878046 -7794,3511:124,114,-52,0,0,0.0913654 -7795,3511:225,115,-52,0,0,0.093686 -7796,3511:226,116,-52,0,0,0.095703 -7797,3511:227,117,-52,0,0,0.0973606 -7798,3511:228,118,-52,0,0,0.0988423 -7799,3511:229,119,-52,0,0,0.0997151 -7800,3512:120,120,-52,0,0,0.0998258 -7801,3512:121,121,-52,0,0,0.0988239 -7802,3512:122,122,-52,0,0,0.0979763 -7803,3512:123,123,-52,0,0,0.0999829 -7804,3512:124,124,-52,0,0,0.10245 -7805,3512:225,125,-52,0,0,0.101828 -7806,3512:226,126,-52,0,0,0.103294 -7807,3512:227,127,-52,0,0,0.103828 -7808,3512:228,128,-52,0,0,0.101734 -7809,3512:229,129,-52,0,0,0.101051 -7810,3513:120,130,-52,0,0,0.10563 -7811,3513:121,131,-52,0,0,0.104384 -7812,3513:122,132,-52,0,0,0.103924 -7813,3513:123,133,-52,0,0,0.102905 -7814,3513:124,134,-52,0,0,0.101294 -7815,3513:225,135,-52,0,0,0.10066 -7816,3513:226,136,-52,0,0,0.102403 -7817,3513:227,137,-52,0,0,0.102082 -7818,3513:228,138,-52,0,0,0.100186 -7819,3513:229,139,-52,0,0,0.10136 -7820,3514:120,140,-52,0,0,0.100261 -7821,3514:121,141,-52,0,0,0.0990528 -7822,3514:122,142,-52,0,0,0.0986685 -7823,3514:123,143,-52,0,0,0.100112 -7824,3514:124,144,-52,0,0,0.101725 -7825,3514:225,145,-52,0,0,0.0995217 -7826,3514:226,146,-52,0,0,0.0990162 -7827,3514:227,147,-52,0,0,0.099909 -7828,3514:228,148,-52,0,0,0.0986227 -7829,3514:229,149,-52,0,0,0.0964792 -7830,3515:120,150,-52,0,0,0.0896486 -7831,3515:121,151,-52,0,0,0.0827566 -7832,3515:122,152,-52,0,0,0.0885397 -7833,3515:123,153,-52,0,0,0.0919813 -7834,3515:124,154,-52,0,0,0.0936424 -7835,3515:225,155,-52,0,0,0.099411 -7836,3515:226,156,-52,0,0,0.101229 -7837,3515:227,157,-52,0,0,0.0970541 -7838,3515:228,158,-52,0,0,0.0975683 -8162,3512:112,122,-51,0,0,0.10213 -7839,3515:229,159,-52,0,0,0.0980218 -7840,3516:120,160,-52,0,0,0.0988789 -7841,3516:121,161,-52,0,0,0.100567 -7842,3516:122,162,-52,0,0,0.103867 -7843,3516:123,163,-52,0,0,0.103848 -7844,3516:124,164,-52,0,0,0.10815 -7845,3516:225,165,-52,0,0,0.110159 -7846,3516:226,166,-52,0,0,0.111739 -7847,3516:227,167,-52,0,0,0.114971 -7848,3516:228,168,-52,0,0,0.119814 -7849,3516:229,169,-52,0,0,0.124608 -7850,3517:120,170,-52,0,0,0.12863 -7851,3517:121,171,-52,0,0,0.127918 -7852,3517:122,172,-52,0,0,0.126833 -7853,3517:123,173,-52,0,0,0.127529 -7854,3517:124,174,-52,0,0,0.127849 -7855,3517:225,175,-52,0,0,0.127574 -7856,3517:226,176,-52,0,0,0.126731 -7857,3517:227,177,-52,0,0,0.123403 -7858,3517:228,178,-52,0,0,0.120173 -7859,3517:229,179,-52,0,0,0.118886 -7860,3518:120,180,-52,0,0,0.11299 -7861,5518:110,-180,-51,0,0,0.120129 -7862,5517:219,-179,-51,0,0,0.119771 -7863,5517:218,-178,-51,0,0,0.119858 -7864,5517:217,-177,-51,0,0,0.118038 -7865,5517:216,-176,-51,0,0,0.115443 -7866,5517:215,-175,-51,0,0,0.115947 -7867,5517:114,-174,-51,0,0,0.115695 -7868,5517:113,-173,-51,0,0,0.116665 -7869,5517:112,-172,-51,0,0,0.115045 -7870,5517:111,-171,-51,0,0,0.113309 -7871,5517:110,-170,-51,0,0,0.115464 -7872,5516:219,-169,-51,0,0,0.114596 -7873,5516:218,-168,-51,0,0,0.112887 -7874,5516:217,-167,-51,0,0,0.113785 -7875,5516:216,-166,-51,0,0,0.114909 -7876,5516:215,-165,-51,0,0,0.115485 -7877,5516:114,-164,-51,0,0,0.115684 -7878,5516:113,-163,-51,0,0,0.114523 -7879,5516:112,-162,-51,0,0,0.114127 -7880,5516:111,-161,-51,0,0,0.11176 -7881,5516:110,-160,-51,0,0,0.108022 -7882,5515:219,-159,-51,0,0,0.107183 -7883,5515:218,-158,-51,0,0,0.110451 -7884,5515:217,-157,-51,0,0,0.115705 -7885,5515:216,-156,-51,0,0,0.11495 -7886,5515:215,-155,-51,0,0,0.111984 -7887,5515:114,-154,-51,0,0,0.108976 -7888,5515:113,-153,-51,0,0,0.091127 -7889,5515:112,-152,-51,0,0,0.0916644 -7890,5515:111,-151,-51,0,0,0.091947 -7891,5515:110,-150,-51,0,0,0.0950117 -7892,5514:219,-149,-51,0,0,0.0948263 -7893,5514:218,-148,-51,0,0,0.0967931 -7894,5514:217,-147,-51,0,0,0.107429 -7895,5514:216,-146,-51,0,0,0.111129 -7896,5514:215,-145,-51,0,0,0.120433 -7897,5514:114,-144,-51,0,0,0.125215 -7898,5514:113,-143,-51,0,0,0.119004 -7899,5514:112,-142,-51,0,0,0.122263 -7900,5514:111,-141,-51,0,0,0.13541 -7901,5514:110,-140,-51,0,0,0.132609 -7902,5513:219,-139,-51,0,0,0.12499 -7903,5513:218,-138,-51,0,0,0.121943 -7904,5513:217,-137,-51,0,0,0.121427 -7905,5513:216,-136,-51,0,0,0.124631 -7906,5513:215,-135,-51,0,0,0.129011 -7907,5513:114,-134,-51,0,0,0.129196 -7908,5513:113,-133,-51,0,0,0.124788 -7909,5513:112,-132,-51,0,0,0.121121 -7910,5513:111,-131,-51,0,0,0.120118 -7911,5513:110,-130,-51,0,0,0.138115 -7912,5512:219,-129,-51,0,0,0.13922 -7913,5512:218,-128,-51,0,0,0.140394 -7914,5512:217,-127,-51,0,0,0.138128 -7915,5512:216,-126,-51,0,0,0.13395 -7916,5512:215,-125,-51,0,0,0.124642 -7917,5512:114,-124,-51,0,0,0.123214 -7918,5512:113,-123,-51,0,0,0.127278 -7919,5512:112,-122,-51,0,0,0.124653 -7920,5512:111,-121,-51,0,0,0.121999 -7921,5512:110,-120,-51,0,0,0.120804 -7922,5511:219,-119,-51,0,0,0.124608 -7923,5511:218,-118,-51,0,0,0.13389 -7924,5511:217,-117,-51,0,0,0.137956 -7925,5511:216,-116,-51,0,0,0.138507 -7926,5511:215,-115,-51,0,0,0.136388 -7927,5511:114,-114,-51,0,0,0.128768 -7928,5511:113,-113,-51,0,0,0.126572 -7929,5511:112,-112,-51,0,0,0.124923 -7930,5511:111,-111,-51,0,0,0.122771 -7931,5511:110,-110,-51,0,0,0.12605 -7932,5510:219,-109,-51,0,0,0.124687 -7933,5510:218,-108,-51,0,0,0.123392 -7934,5510:217,-107,-51,0,0,0.12276 -7935,5510:216,-106,-51,0,0,0.121976 -7936,5510:215,-105,-51,0,0,0.126061 -7937,5510:114,-104,-51,0,0,0.131525 -7938,5510:113,-103,-51,0,0,0.13487 -7939,5510:112,-102,-51,0,0,0.133046 -7940,5510:111,-101,-51,0,0,0.131877 -7941,5510:110,-100,-51,0,0,0.131291 -7942,5509:219,-99,-51,0,0,0.129833 -7943,5509:218,-98,-51,0,0,0.130158 -7944,5509:217,-97,-51,0,0,0.125102 -7945,5509:216,-96,-51,0,0,0.120542 -7946,5509:215,-95,-51,0,0,0.12656 -8271,5513:100,-130,-50,0,0,0.13511 -7947,5509:114,-94,-51,0,0,0.130146 -7948,5509:113,-93,-51,0,0,0.128734 -7949,5509:112,-92,-51,0,0,0.128274 -7950,5509:111,-91,-51,0,0,0.12801 -7951,5509:110,-90,-51,0,0,0.126879 -7952,5508:219,-89,-51,0,0,0.126981 -7953,5508:218,-88,-51,0,0,0.126027 -7954,5508:217,-87,-51,0,0,0.125181 -7955,5508:216,-86,-51,0,0,0.126345 -7956,5508:215,-85,-51,0,0,0.128607 -7957,5508:114,-84,-51,0,0,0.131713 -7958,5508:113,-83,-51,0,0,0.129612 -7959,5508:112,-82,-51,0,0,0.128458 -7960,5508:111,-81,-51,0,0,0.127221 -7961,5508:110,-80,-51,0,0,0.126413 -7962,5507:219,-79,-51,0,0,0.129786 -7963,5507:218,-78,-51,0,0,0.131021 -7964,5507:217,-77,-51,0,0,0.131877 -7965,5507:216,-76,-51,0,0,0.131033 -7966,5507:215,-75,-51,0,0,0.128481 -7967,5507:114,-74,-51,0,0,0.125858 -7968,5507:113,-73,-51,0,0,0.123004 -7969,5507:112,-72,-51,0,0,0.123681 -7970,5507:111,-71,-51,0,0,0.122153 -7971,5507:110,-70,-51,0,0,0.119231 -7972,5506:219,-69,-51,0,0,0.111414 -7973,5506:218,-68,-51,0,0,0.105912 -7974,5506:217,-67,-51,0,0,0.104394 -7975,5506:216,-66,-51,0,0,0.101416 -7976,5506:215,-65,-51,0,0,0.100455 -7977,5506:114,-64,-51,0,0,0.0981216 -7978,5506:113,-63,-51,0,0,0.100085 -7979,5506:112,-62,-51,0,0,0.0961664 -7980,5506:111,-61,-51,0,0,0.0950912 -7981,5506:110,-60,-51,0,0,0.101163 -7982,5505:219,-59,-51,0,0,0.0985773 -7983,5505:218,-58,-51,0,0,0.0959967 -7984,5505:217,-57,-51,0,0,0.0936597 -7985,5505:216,-56,-51,0,0,0.0864886 -7986,5505:215,-55,-51,0,0,0.0884982 -7987,5505:114,-54,-51,0,0,0.0886559 -7988,5505:113,-53,-51,0,0,0.0882498 -7989,5505:112,-52,-51,0,0,0.0839735 -7990,5505:111,-51,-51,0,0,0.0790218 -7991,5505:110,-50,-51,0,0,0.0789771 -7992,5504:219,-49,-51,0,0,0.0794191 -7993,5504:218,-48,-51,0,0,0.0813636 -7994,5504:217,-47,-51,0,0,0.0882004 -7995,5504:216,-46,-51,0,0,0.0944829 -7996,5504:215,-45,-51,0,0,0.0912886 -7997,5504:114,-44,-51,0,0,0.0804239 -7998,5504:113,-43,-51,0,0,0.0840447 -7999,5504:112,-42,-51,0,0,0.0849506 -8000,5504:111,-41,-51,0,0,0.0848468 -8001,5504:110,-40,-51,0,0,0.0820805 -8002,5503:219,-39,-51,0,0,0.0832728 -8003,5503:218,-38,-51,0,0,0.0866592 -8004,5503:217,-37,-51,0,0,0.0844806 -8005,5503:216,-36,-51,0,0,0.0807284 -8006,5503:215,-35,-51,0,0,0.0843616 -8007,5503:114,-34,-51,0,0,0.0847035 -8008,5503:113,-33,-51,0,0,0.084298 -8009,5503:112,-32,-51,0,0,0.0815402 -8010,5503:111,-31,-51,0,0,0.0816018 -8011,5503:110,-30,-51,0,0,0.0802492 -8012,5502:219,-29,-51,0,0,0.0808581 -8013,5502:218,-28,-51,0,0,0.0780035 -8014,5502:217,-27,-51,0,0,0.0777601 -8015,5502:216,-26,-51,0,0,0.0778042 -8016,5502:215,-25,-51,0,0,0.0785446 -8017,5502:114,-24,-51,0,0,0.088093 -8018,5502:113,-23,-51,0,0,0.0895731 -8019,5502:112,-22,-51,0,0,0.0888219 -8020,5502:111,-21,-51,0,0,0.0857527 -8021,5502:110,-20,-51,0,0,0.0819646 -8022,5501:219,-19,-51,0,0,0.082983 -8023,5501:218,-18,-51,0,0,0.0825695 -8024,5501:217,-17,-51,0,0,0.0804315 -8025,5501:216,-16,-51,0,0,0.0786489 -8026,5501:215,-15,-51,0,0,0.0785149 -8027,5501:114,-14,-51,0,0,0.0787755 -8028,5501:113,-13,-51,0,0,0.0797653 -8029,5501:112,-12,-51,0,0,0.0804315 -8030,5501:111,-11,-51,0,0,0.080022 -8031,5501:110,-10,-51,0,0,0.0787755 -8032,5500:219,-9,-51,0,0,0.0793366 -8033,5500:218,-8,-51,0,0,0.079788 -8034,5500:217,-7,-51,0,0,0.0796447 -8035,5500:216,-6,-51,0,0,0.0776127 -8036,5500:215,-5,-51,0,0,0.0771141 -8037,5500:114,-4,-51,0,0,0.0756428 -8038,5500:113,-3,-51,0,0,0.0754993 -8039,5500:112,-2,-51,0,0,0.0754275 -8040,5500:111,-1,-51,0,0,0.0751344 -8041,3500:111,0,-51,0,0,0.074899 -8042,3500:111,1,-51,0,0,0.074828 -8043,3500:112,2,-51,0,0,0.0749205 -8044,3500:113,3,-51,0,0,0.0755567 -8045,3500:114,4,-51,0,0,0.07565 -8046,3500:215,5,-51,0,0,0.0755207 -8047,3500:216,6,-51,0,0,0.0752343 -8048,3500:217,7,-51,0,0,0.0749631 -8049,3500:218,8,-51,0,0,0.075006 -8050,3500:219,9,-51,0,0,0.0750843 -8051,3501:110,10,-51,0,0,0.0748493 -8052,3501:111,11,-51,0,0,0.0747996 -8053,3501:112,12,-51,0,0,0.0748208 -8054,3501:113,13,-51,0,0,0.0748564 -8055,3501:114,14,-51,0,0,0.074899 -8056,3501:215,15,-51,0,0,0.0748705 -8057,3501:216,16,-51,0,0,0.0748636 -8058,3501:217,17,-51,0,0,0.0748421 -8059,3501:218,18,-51,0,0,0.074828 -8060,3501:219,19,-51,0,0,0.0748208 -8061,3502:110,20,-51,0,0,0.0747924 -8062,3502:111,21,-51,0,0,0.0749846 -8063,3502:112,22,-51,0,0,0.0749275 -8064,3502:113,23,-51,0,0,0.0748421 -8065,3502:114,24,-51,0,0,0.0748564 -8066,3502:215,25,-51,0,0,0.0749703 -8067,3502:216,26,-51,0,0,0.0751059 -8068,3502:217,27,-51,0,0,0.0751344 -8069,3502:218,28,-51,0,0,0.0749346 -8070,3502:219,29,-51,0,0,0.0750201 -8071,3503:110,30,-51,0,0,0.0750345 -8072,3503:111,31,-51,0,0,0.0752343 -8073,3503:112,32,-51,0,0,0.075063 -8074,3503:113,33,-51,0,0,0.0752057 -8075,3503:114,34,-51,0,0,0.07635 -8076,3503:215,35,-51,0,0,0.07827 -8077,3503:216,36,-51,0,0,0.0774217 -8078,3503:217,37,-51,0,0,0.0757795 -8079,3503:218,38,-51,0,0,0.0777232 -8080,3503:219,39,-51,0,0,0.0767347 -8081,3504:110,40,-51,0,0,0.0772092 -8082,3504:111,41,-51,0,0,0.0778634 -8083,3504:112,42,-51,0,0,0.0780405 -8084,3504:113,43,-51,0,0,0.0780405 -8085,3504:114,44,-51,0,0,0.077635 -8086,3504:215,45,-51,0,0,0.0769681 -8087,3504:216,46,-51,0,0,0.0771799 -8088,3504:217,47,-51,0,0,0.0778116 -8089,3504:218,48,-51,0,0,0.0774878 -8090,3504:219,49,-51,0,0,0.0766184 -8091,3505:110,50,-51,0,0,0.0766184 -8092,3505:111,51,-51,0,0,0.0758515 -8093,3505:112,52,-51,0,0,0.0772092 -8094,3505:113,53,-51,0,0,0.0790145 -8095,3505:114,54,-51,0,0,0.0758225 -8096,3505:215,55,-51,0,0,0.0774952 -8097,3505:216,56,-51,0,0,0.0762485 -8098,3505:217,57,-51,0,0,0.07565 -8099,3505:218,58,-51,0,0,0.0778116 -8100,3505:219,59,-51,0,0,0.0843219 -8101,3506:110,60,-51,0,0,0.0788873 -8102,3506:111,61,-51,0,0,0.0832336 -8103,3506:112,62,-51,0,0,0.0826864 -8104,3506:113,63,-51,0,0,0.0781588 -8105,3506:114,64,-51,0,0,0.0817638 -8106,3506:215,65,-51,0,0,0.0872057 -8107,3506:216,66,-51,0,0,0.0877551 -8108,3506:217,67,-51,0,0,0.0856078 -8109,3506:218,68,-51,0,0,0.0868708 -8110,3506:219,69,-51,0,0,0.0878867 -8111,3507:110,70,-51,0,0,0.088316 -8112,3507:111,71,-51,0,0,0.0902036 -8113,3507:112,72,-51,0,0,0.08303 -8114,3507:114,74,-51,0,0,0.0800978 -8115,3507:215,75,-51,0,0,0.0794491 -8116,3507:216,76,-51,0,0,0.0790145 -8117,3507:217,77,-51,0,0,0.0793891 -8118,3507:218,78,-51,0,0,0.0792691 -8119,3507:219,79,-51,0,0,0.077532 -8120,3508:110,80,-51,0,0,0.0770996 -8121,3508:111,81,-51,0,0,0.0770849 -8122,3508:112,82,-51,0,0,0.0773044 -8123,3508:113,83,-51,0,0,0.0772459 -8124,3508:114,84,-51,0,0,0.0773924 -8125,3508:215,85,-51,0,0,0.0768806 -8126,3508:216,86,-51,0,0,0.0779149 -8127,3508:217,87,-51,0,0,0.0880351 -8128,3508:218,88,-51,0,0,0.0964704 -8129,3508:219,89,-51,0,0,0.0910673 -8130,3509:110,90,-51,0,0,0.0889718 -8131,3509:111,91,-51,0,0,0.0898333 -8132,3509:112,92,-51,0,0,0.090855 -8133,3509:113,93,-51,0,0,0.0909568 -8134,3509:114,94,-51,0,0,0.0901699 -8135,3509:215,95,-51,0,0,0.089741 -8136,3509:216,96,-51,0,0,0.0877963 -8137,3509:217,97,-51,0,0,0.0874759 -8138,3509:218,98,-51,0,0,0.0881507 -8139,3509:219,99,-51,0,0,0.0895481 -8140,3510:110,100,-51,0,0,0.0918871 -8141,3510:111,101,-51,0,0,0.0916302 -8142,3510:112,102,-51,0,0,0.0913909 -8143,3510:113,103,-51,0,0,0.0947733 -8144,3510:114,104,-51,0,0,0.0965688 -8145,3510:215,105,-51,0,0,0.0955696 -8146,3510:216,106,-51,0,0,0.0950292 -8147,3510:217,107,-51,0,0,0.0928259 -8148,3510:218,108,-51,0,0,0.0904992 -8149,3510:219,109,-51,0,0,0.09533 -8150,3511:110,110,-51,0,0,0.0971891 -8151,3511:111,111,-51,0,0,0.0970091 -8152,3511:112,112,-51,0,0,0.0944038 -8153,3511:113,113,-51,0,0,0.101285 -8154,3511:114,114,-51,0,0,0.104029 -8155,3511:215,115,-51,0,0,0.0977858 -8156,3511:216,116,-51,0,0,0.0976136 -8157,3511:217,117,-51,0,0,0.0986411 -8158,3511:218,118,-51,0,0,0.0989795 -8159,3511:219,119,-51,0,0,0.100781 -8160,3512:110,120,-51,0,0,0.100892 -8161,3512:111,121,-51,0,0,0.102252 -8163,3512:113,123,-51,0,0,0.102943 -8164,3512:114,124,-51,0,0,0.103047 -8165,3512:215,125,-51,0,0,0.102848 -8166,3512:216,126,-51,0,0,0.103114 -8167,3512:217,127,-51,0,0,0.104653 -8168,3512:218,128,-51,0,0,0.105824 -8169,3512:219,129,-51,0,0,0.106869 -8170,3513:110,130,-51,0,0,0.107873 -8171,3513:111,131,-51,0,0,0.108042 -8172,3513:112,132,-51,0,0,0.108329 -8173,3513:113,133,-51,0,0,0.108071 -8174,3513:114,134,-51,0,0,0.104827 -8175,3513:215,135,-51,0,0,0.1028 -8176,3513:216,136,-51,0,0,0.104096 -8177,3513:217,137,-51,0,0,0.103924 -8178,3513:218,138,-51,0,0,0.10319 -8179,3513:219,139,-51,0,0,0.103266 -8180,3514:110,140,-51,0,0,0.102469 -8181,3514:111,141,-51,0,0,0.102962 -8182,3514:112,142,-51,0,0,0.103943 -8183,3514:113,143,-51,0,0,0.10561 -8184,3514:114,144,-51,0,0,0.105339 -8185,3514:215,145,-51,0,0,0.104596 -8186,3514:216,146,-51,0,0,0.103838 -8187,3514:217,147,-51,0,0,0.101838 -8188,3514:218,148,-51,0,0,0.099108 -8189,3514:219,149,-51,0,0,0.0956672 -8190,3515:110,150,-51,0,0,0.0862049 -8191,3515:111,151,-51,0,0,0.0895984 -8192,3515:112,152,-51,0,0,0.0901951 -8193,3515:113,153,-51,0,0,0.0927307 -8194,3515:114,154,-51,0,0,0.0945707 -8195,3515:215,155,-51,0,0,0.0990162 -8196,3515:216,156,-51,0,0,0.100846 -8197,3515:217,157,-51,0,0,0.0997059 -8198,3515:218,158,-51,0,0,0.0996873 -8199,3515:219,159,-51,0,0,0.100753 -8200,3516:110,160,-51,0,0,0.108289 -8201,3516:111,161,-51,0,0,0.111638 -8202,3516:112,162,-51,0,0,0.12778 -8203,3516:113,163,-51,0,0,0.129937 -8204,3516:114,164,-51,0,0,0.131936 -8205,3516:215,165,-51,0,0,0.128607 -8206,3516:216,166,-51,0,0,0.120837 -8207,3516:217,167,-51,0,0,0.130706 -8208,3516:218,168,-51,0,0,0.132019 -8209,3516:219,169,-51,0,0,0.13196 -8210,3517:110,170,-51,0,0,0.130753 -8211,3517:111,171,-51,0,0,0.12762 -8212,3517:112,172,-51,0,0,0.12801 -8213,3517:113,173,-51,0,0,0.128228 -8214,3517:114,174,-51,0,0,0.127998 -8215,3517:215,175,-51,0,0,0.126526 -8216,3517:216,176,-51,0,0,0.124743 -8217,3517:217,177,-51,0,0,0.122252 -8218,3517:218,178,-51,0,0,0.123303 -8219,3517:219,179,-51,0,0,0.123037 -8220,3518:110,180,-51,0,0,0.120129 -8221,5518:100,-180,-50,0,0,0.132585 -8222,5517:209,-179,-50,0,0,0.125994 -8223,5517:208,-178,-50,0,0,0.120608 -8224,5517:207,-177,-50,0,0,0.122583 -8225,5517:206,-176,-50,0,0,0.123904 -8226,5517:205,-175,-50,0,0,0.125756 -8227,5517:104,-174,-50,0,0,0.125835 -8228,5517:103,-173,-50,0,0,0.123481 -8229,5517:102,-172,-50,0,0,0.12202 -8230,5517:101,-171,-50,0,0,0.123626 -8231,5517:100,-170,-50,0,0,0.125361 -8232,5516:209,-169,-50,0,0,0.121746 -8233,5516:208,-168,-50,0,0,0.118477 -8234,5516:207,-167,-50,0,0,0.119912 -8235,5516:206,-166,-50,0,0,0.124071 -8236,5516:205,-165,-50,0,0,0.12287 -8237,5516:104,-164,-50,0,0,0.121077 -8238,5516:103,-163,-50,0,0,0.120979 -8239,5516:102,-162,-50,0,0,0.120183 -8240,5516:101,-161,-50,0,0,0.119177 -8241,5516:100,-160,-50,0,0,0.117622 -8242,5515:209,-159,-50,0,0,0.116348 -8243,5515:208,-158,-50,0,0,0.121164 -8244,5515:207,-157,-50,0,0,0.127038 -8245,5515:206,-156,-50,0,0,0.121515 -8246,5515:205,-155,-50,0,0,0.118617 -8247,5515:104,-154,-50,0,0,0.116697 -8248,5515:103,-153,-50,0,0,0.110673 -8249,5515:102,-152,-50,0,0,0.0973155 -8250,5515:101,-151,-50,0,0,0.0973967 -8251,5515:100,-150,-50,0,0,0.101659 -8252,5514:209,-149,-50,0,0,0.10027 -8253,5514:208,-148,-50,0,0,0.0973786 -8254,5514:207,-147,-50,0,0,0.108121 -8255,5514:206,-146,-50,0,0,0.116063 -8256,5514:205,-145,-50,0,0,0.12134 -8257,5514:104,-144,-50,0,0,0.122351 -8258,5514:103,-143,-50,0,0,0.121285 -8259,5514:102,-142,-50,0,0,0.123336 -8260,5514:101,-141,-50,0,0,0.13196 -8261,5514:100,-140,-50,0,0,0.138949 -8262,5513:209,-139,-50,0,0,0.136146 -8263,5513:208,-138,-50,0,0,0.128964 -8264,5513:207,-137,-50,0,0,0.133938 -8265,5513:206,-136,-50,0,0,0.135038 -8266,5513:205,-135,-50,0,0,0.135422 -8267,5513:104,-134,-50,0,0,0.130461 -8268,5513:103,-133,-50,0,0,0.128251 -8269,5513:102,-132,-50,0,0,0.125767 -8270,5513:101,-131,-50,0,0,0.12553 -8272,5512:209,-129,-50,0,0,0.137481 -8273,5512:208,-128,-50,0,0,0.143851 -8274,5512:207,-127,-50,0,0,0.153965 -8275,5512:206,-126,-50,0,0,0.154353 -8276,5512:205,-125,-50,0,0,0.148 -8277,5512:104,-124,-50,0,0,0.135134 -8278,5512:103,-123,-50,0,0,0.128918 -8279,5512:102,-122,-50,0,0,0.123737 -8280,5512:101,-121,-50,0,0,0.127163 -8281,5512:100,-120,-50,0,0,0.129427 -8282,5511:209,-119,-50,0,0,0.132372 -8283,5511:208,-118,-50,0,0,0.135386 -8284,5511:207,-117,-50,0,0,0.13922 -8285,5511:206,-116,-50,0,0,0.138802 -8286,5511:205,-115,-50,0,0,0.13697 -8287,5511:104,-114,-50,0,0,0.129057 -8288,5511:103,-113,-50,0,0,0.128734 -8289,5511:102,-112,-50,0,0,0.129392 -8290,5511:101,-111,-50,0,0,0.131267 -8291,5511:100,-110,-50,0,0,0.13281 -8292,5510:209,-109,-50,0,0,0.134069 -8293,5510:208,-108,-50,0,0,0.133985 -8294,5510:207,-107,-50,0,0,0.131631 -8295,5510:206,-106,-50,0,0,0.129462 -8296,5510:205,-105,-50,0,0,0.13196 -8297,5510:104,-104,-50,0,0,0.137346 -8298,5510:103,-103,-50,0,0,0.137201 -8299,5510:102,-102,-50,0,0,0.132195 -8300,5510:101,-101,-50,0,0,0.134571 -8301,5510:100,-100,-50,0,0,0.132184 -8302,5509:209,-99,-50,0,0,0.130869 -8303,5509:208,-98,-50,0,0,0.129833 -8304,5509:207,-97,-50,0,0,0.126333 -8305,5509:206,-96,-50,0,0,0.126787 -8306,5509:205,-95,-50,0,0,0.130589 -8307,5509:104,-94,-50,0,0,0.13216 -8308,5509:103,-93,-50,0,0,0.130472 -8309,5509:102,-92,-50,0,0,0.130916 -8310,5509:101,-91,-50,0,0,0.133902 -8311,5509:100,-90,-50,0,0,0.132738 -8312,5508:209,-89,-50,0,0,0.130181 -8313,5508:208,-88,-50,0,0,0.128113 -8314,5508:207,-87,-50,0,0,0.129323 -8315,5508:206,-86,-50,0,0,0.130205 -8316,5508:205,-85,-50,0,0,0.132999 -8317,5508:104,-84,-50,0,0,0.134296 -8318,5508:103,-83,-50,0,0,0.130706 -8319,5508:102,-82,-50,0,0,0.13024 -8320,5508:101,-81,-50,0,0,0.132349 -8321,5508:100,-80,-50,0,0,0.131725 -8322,5507:209,-79,-50,0,0,0.129949 -8323,5507:208,-78,-50,0,0,0.130577 -8324,5507:207,-77,-50,0,0,0.133319 -8325,5507:206,-76,-50,0,0,0.134774 -8326,5507:205,-75,-50,0,0,0.133628 -8327,5507:104,-74,-50,0,0,0.13242 -8328,5507:103,-73,-50,0,0,0.134607 -8329,5507:102,-72,-50,0,0,0.13714 -8330,5507:101,-71,-50,0,0,0.136049 -8331,5507:100,-70,-50,0,0,0.132077 -8332,5506:209,-69,-50,0,0,0.126208 -8333,5506:208,-68,-50,0,0,0.114689 -8334,5506:207,-67,-50,0,0,0.108936 -8335,5506:206,-66,-50,0,0,0.109546 -8336,5506:205,-65,-50,0,0,0.110936 -8337,5506:104,-64,-50,0,0,0.114898 -8338,5506:103,-63,-50,0,0,0.121625 -8339,5506:102,-62,-50,0,0,0.121186 -8340,5506:101,-61,-50,0,0,0.115359 -8341,5506:100,-60,-50,0,0,0.101763 -8342,5505:209,-59,-50,0,0,0.100911 -8343,5505:208,-58,-50,0,0,0.0947997 -8344,5505:207,-57,-50,0,0,0.0942632 -8345,5505:206,-56,-50,0,0,0.0917757 -8346,5505:205,-55,-50,0,0,0.0913568 -8347,5505:104,-54,-50,0,0,0.0964076 -8348,5505:103,-53,-50,0,0,0.0952238 -8349,5505:102,-52,-50,0,0,0.0911951 -8350,5505:101,-51,-50,0,0,0.0883657 -8351,5505:100,-50,-50,0,0,0.0859705 -8352,5504:209,-49,-50,0,0,0.088631 -8353,5504:208,-48,-50,0,0,0.0954807 -8354,5504:207,-47,-50,0,0,0.0964346 -8355,5504:206,-46,-50,0,0,0.0926961 -8356,5504:205,-45,-50,0,0,0.0904316 -8357,5504:104,-44,-50,0,0,0.0886891 -8358,5504:103,-43,-50,0,0,0.0861644 -8359,5504:102,-42,-50,0,0,0.0917328 -8360,5504:101,-41,-50,0,0,0.0892303 -8361,5504:100,-40,-50,0,0,0.0904737 -8362,5503:209,-39,-50,0,0,0.0924285 -8363,5503:208,-38,-50,0,0,0.0875252 -8364,5503:207,-37,-50,0,0,0.0876565 -8365,5503:206,-36,-50,0,0,0.0876319 -8366,5503:205,-35,-50,0,0,0.0882582 -8367,5503:104,-34,-50,0,0,0.0855837 -8368,5503:103,-33,-50,0,0,0.0845044 -8369,5503:102,-32,-50,0,0,0.084775 -8370,5503:101,-31,-50,0,0,0.0850225 -8371,5503:100,-30,-50,0,0,0.0836658 -8372,5502:209,-29,-50,0,0,0.0838944 -8373,5502:208,-28,-50,0,0,0.0837052 -8374,5502:207,-27,-50,0,0,0.0825851 -8375,5502:206,-26,-50,0,0,0.0841712 -8376,5502:205,-25,-50,0,0,0.0847991 -8377,5502:104,-24,-50,0,0,0.0894058 -8378,5502:103,-23,-50,0,0,0.0913485 -8379,5502:102,-22,-50,0,0,0.0870503 -8380,5502:101,-21,-50,0,0,0.0863749 -8381,5502:100,-20,-50,0,0,0.0857205 -8382,5501:209,-19,-50,0,0,0.0850545 -8383,5501:208,-18,-50,0,0,0.0861725 -8384,5501:207,-17,-50,0,0,0.0853267 -8385,5501:206,-16,-50,0,0,0.0851507 -8386,5501:205,-15,-50,0,0,0.0838708 -8387,5501:104,-14,-50,0,0,0.0827956 -8388,5501:103,-13,-50,0,0,0.0830847 -8389,5501:102,-12,-50,0,0,0.0840287 -8390,5501:101,-11,-50,0,0,0.085624 -8391,5501:100,-10,-50,0,0,0.0846476 -8392,5500:209,-9,-50,0,0,0.0830142 -8393,5500:208,-8,-50,0,0,0.0839814 -8394,5500:207,-7,-50,0,0,0.0828423 -8395,5500:206,-6,-50,0,0,0.0827799 -8396,5500:205,-5,-50,0,0,0.0814787 -8397,5500:104,-4,-50,0,0,0.0821271 -8398,5500:103,-3,-50,0,0,0.0804012 -8399,5500:102,-2,-50,0,0,0.0813943 -8400,5500:101,-1,-50,0,0,0.0813174 -8401,3500:101,0,-50,0,0,0.0806066 -8402,3500:101,1,-50,0,0,0.0794792 -8403,3500:102,2,-50,0,0,0.0790218 -8404,3500:103,3,-50,0,0,0.0770775 -8405,3500:104,4,-50,0,0,0.0766184 -8406,3500:205,5,-50,0,0,0.0761689 -8407,3500:206,6,-50,0,0,0.0768003 -8408,3500:207,7,-50,0,0,0.0769315 -8409,3500:208,8,-50,0,0,0.0769389 -8410,3500:209,9,-50,0,0,0.0772092 -8411,3501:100,10,-50,0,0,0.0758803 -8412,3501:101,11,-50,0,0,0.0749846 -8413,3501:102,12,-50,0,0,0.0749703 -8414,3501:103,13,-50,0,0,0.0750702 -8415,3501:104,14,-50,0,0,0.0749916 -8416,3501:205,15,-50,0,0,0.0749133 -8417,3501:206,16,-50,0,0,0.0748777 -8418,3501:207,17,-50,0,0,0.0748421 -8419,3501:208,18,-50,0,0,0.0748208 -8420,3501:209,19,-50,0,0,0.0749062 -8421,3502:100,20,-50,0,0,0.075313 -8422,3502:101,21,-50,0,0,0.075765 -8423,3502:102,22,-50,0,0,0.0757002 -8424,3502:103,23,-50,0,0,0.0753847 -8425,3502:104,24,-50,0,0,0.0754849 -8426,3502:205,25,-50,0,0,0.07614 -8427,3502:206,26,-50,0,0,0.0765676 -8428,3502:207,27,-50,0,0,0.0763354 -8429,3502:208,28,-50,0,0,0.0754921 -8430,3502:209,29,-50,0,0,0.0762918 -8431,3503:100,30,-50,0,0,0.0773559 -8432,3503:101,31,-50,0,0,0.0766401 -8433,3503:102,32,-50,0,0,0.0765747 -8434,3503:103,33,-50,0,0,0.0759595 -8435,3503:104,34,-50,0,0,0.0772018 -8436,3503:205,35,-50,0,0,0.0805761 -8437,3503:206,36,-50,0,0,0.0787605 -8438,3503:207,37,-50,0,0,0.0793815 -8439,3503:208,38,-50,0,0,0.0794868 -8440,3503:209,39,-50,0,0,0.079254 -8441,3504:100,40,-50,0,0,0.0790218 -8442,3504:101,41,-50,0,0,0.0793064 -8443,3504:102,42,-50,0,0,0.0794792 -8444,3504:103,43,-50,0,0,0.0799768 -8445,3504:104,44,-50,0,0,0.0807435 -8446,3504:205,45,-50,0,0,0.0853509 -8447,3504:206,46,-50,0,0,0.083926 -8448,3504:207,47,-50,0,0,0.0803025 -8449,3504:208,48,-50,0,0,0.0791191 -8450,3504:209,49,-50,0,0,0.0800525 -8451,3505:100,50,-50,0,0,0.0812713 -8452,3505:101,51,-50,0,0,0.08181 -8453,3505:102,52,-50,0,0,0.0866185 -8454,3505:103,53,-50,0,0,0.0898584 -8455,3505:104,54,-50,0,0,0.0872546 -8456,3505:205,55,-50,0,0,0.0819491 -8457,3505:206,56,-50,0,0,0.0839183 -8458,3505:207,57,-50,0,0,0.084584 -8459,3505:208,58,-50,0,0,0.0852626 -8460,3505:209,59,-50,0,0,0.0876482 -8461,3506:100,60,-50,0,0,0.0880434 -8462,3506:101,61,-50,0,0,0.085648 -8463,3506:102,62,-50,0,0,0.0886723 -8464,3506:103,63,-50,0,0,0.0886723 -8465,3506:104,64,-50,0,0,0.0931292 -8466,3506:205,65,-50,0,0,0.0961394 -8467,3506:206,66,-50,0,0,0.0933288 -8468,3506:207,67,-50,0,0,0.0863344 -8469,3506:208,68,-50,0,0,0.0893639 -8470,3506:209,69,-50,0,0,0.0889469 -8471,3507:100,70,-50,0,0,0.0915277 -8472,3507:101,71,-50,0,0,0.0919986 -8473,3507:102,72,-50,0,0,0.0889634 -8474,3507:104,74,-50,0,0,0.0829205 -8475,3507:205,75,-50,0,0,0.0846955 -8476,3507:206,76,-50,0,0,0.0849267 -8477,3507:207,77,-50,0,0,0.0841159 -8478,3507:208,78,-50,0,0,0.0838313 -8479,3507:209,79,-50,0,0,0.0827644 -8480,3508:100,80,-50,0,0,0.0805531 -8481,3508:101,81,-50,0,0,0.0800828 -8482,3508:102,82,-50,0,0,0.079284 -8483,3508:103,83,-50,0,0,0.0777084 -8484,3508:104,84,-50,0,0,0.077224 -8485,3508:205,85,-50,0,0,0.0772385 -8486,3508:206,86,-50,0,0,0.0807971 -8487,3508:207,87,-50,0,0,0.0984222 -8488,3508:208,88,-50,0,0,0.099872 -8489,3508:209,89,-50,0,0,0.0976772 -8490,3509:100,90,-50,0,0,0.0961394 -8491,3509:101,91,-50,0,0,0.0968471 -8492,3509:102,92,-50,0,0,0.0948174 -8493,3509:103,93,-50,0,0,0.0928259 -8494,3509:104,94,-50,0,0,0.0932421 -8495,3509:205,95,-50,0,0,0.0911525 -8496,3509:206,96,-50,0,0,0.0893974 -8497,3509:207,97,-50,0,0,0.0909568 -8498,3509:208,98,-50,0,0,0.0908464 -8499,3509:209,99,-50,0,0,0.0888636 -8500,3510:100,100,-50,0,0,0.0915191 -8501,3510:101,101,-50,0,0,0.093103 -8502,3510:102,102,-50,0,0,0.0940268 -8503,3510:103,103,-50,0,0,0.0972433 -8504,3510:104,104,-50,0,0,0.0982307 -8505,3510:205,105,-50,0,0,0.0987965 -8506,3510:206,106,-50,0,0,0.100122 -8507,3510:207,107,-50,0,0,0.100094 -8508,3510:208,108,-50,0,0,0.10079 -8509,3510:209,109,-50,0,0,0.101341 -8510,3511:100,110,-50,0,0,0.101033 -8511,3511:101,111,-50,0,0,0.102791 -8512,3511:102,112,-50,0,0,0.10107 -8513,3511:103,113,-50,0,0,0.100818 -8514,3511:104,114,-50,0,0,0.105194 -8515,3511:205,115,-50,0,0,0.104788 -8516,3511:206,116,-50,0,0,0.108101 -8517,3511:207,117,-50,0,0,0.109917 -8518,3511:208,118,-50,0,0,0.109506 -8519,3511:209,119,-50,0,0,0.109877 -8520,3512:100,120,-50,0,0,0.106077 -8521,3512:101,121,-50,0,0,0.103399 -8522,3512:102,122,-50,0,0,0.104856 -8523,3512:103,123,-50,0,0,0.105921 -8524,3512:104,124,-50,0,0,0.103523 -8525,3512:205,125,-50,0,0,0.103475 -8526,3512:206,126,-50,0,0,0.107173 -8527,3512:207,127,-50,0,0,0.110279 -8528,3512:208,128,-50,0,0,0.109676 -8529,3512:209,129,-50,0,0,0.107715 -8530,3513:100,130,-50,0,0,0.107468 -8531,3513:101,131,-50,0,0,0.107745 -8532,3513:102,132,-50,0,0,0.108786 -8533,3513:103,133,-50,0,0,0.108776 -8534,3513:104,134,-50,0,0,0.107508 -8535,3513:205,135,-50,0,0,0.105252 -8536,3513:206,136,-50,0,0,0.105912 -8537,3513:207,137,-50,0,0,0.106526 -8538,3513:208,138,-50,0,0,0.107232 -8539,3513:209,139,-50,0,0,0.105001 -8540,3514:100,140,-50,0,0,0.104991 -8541,3514:101,141,-50,0,0,0.106448 -8542,3514:102,142,-50,0,0,0.108032 -8543,3514:103,143,-50,0,0,0.109085 -8544,3514:104,144,-50,0,0,0.109166 -8545,3514:205,145,-50,0,0,0.108836 -8546,3514:206,146,-50,0,0,0.10817 -8547,3514:207,147,-50,0,0,0.105775 -8548,3514:208,148,-50,0,0,0.104067 -8549,3514:209,149,-50,0,0,0.0988605 -8550,3515:100,150,-50,0,0,0.0882415 -8551,3515:101,151,-50,0,0,0.0948438 -8552,3515:102,152,-50,0,0,0.0945973 -8553,3515:103,153,-50,0,0,0.097795 -8554,3515:104,154,-50,0,0,0.118231 -8555,3515:205,155,-50,0,0,0.120401 -8556,3515:206,156,-50,0,0,0.101904 -8557,3515:207,157,-50,0,0,0.101107 -8558,3515:208,158,-50,0,0,0.107036 -8559,3515:209,159,-50,0,0,0.112015 -8560,3516:100,160,-50,0,0,0.111566 -8561,3516:101,161,-50,0,0,0.109947 -8562,3516:102,162,-50,0,0,0.12202 -8563,3516:103,163,-50,0,0,0.120053 -8564,3516:104,164,-50,0,0,0.134367 -8565,3516:205,165,-50,0,0,0.132656 -8566,3516:206,166,-50,0,0,0.13383 -8567,3516:207,167,-50,0,0,0.13149 -8568,3516:208,168,-50,0,0,0.131232 -8569,3516:209,169,-50,0,0,0.131033 -8570,3517:100,170,-50,0,0,0.130694 -8571,3517:101,171,-50,0,0,0.129612 -8572,3517:102,172,-50,0,0,0.13203 -8573,3517:103,173,-50,0,0,0.131244 -8574,3517:104,174,-50,0,0,0.130717 -8575,3517:205,175,-50,0,0,0.128665 -8576,3517:206,176,-50,0,0,0.127403 -8577,3517:207,177,-50,0,0,0.12499 -8578,3517:208,178,-50,0,0,0.125632 -8579,3517:209,179,-50,0,0,0.126981 -8580,3518:100,180,-50,0,0,0.132585 -8581,5418:390,-180,-49,0,0,0.137018 -8582,5417:499,-179,-49,0,0,0.134511 -8583,5417:498,-178,-49,0,0,0.126277 -8584,5417:497,-177,-49,0,0,0.126503 -8585,5417:496,-176,-49,0,0,0.136509 -8586,5417:495,-175,-49,0,0,0.135663 -8587,5417:394,-174,-49,0,0,0.134224 -8588,5417:393,-173,-49,0,0,0.13281 -8589,5417:392,-172,-49,0,0,0.132656 -8590,5417:391,-171,-49,0,0,0.135038 -8591,5417:390,-170,-49,0,0,0.133474 -8592,5416:499,-169,-49,0,0,0.126913 -8593,5416:498,-168,-49,0,0,0.122561 -8594,5416:497,-167,-49,0,0,0.125384 -8595,5416:496,-166,-49,0,0,0.131056 -8596,5416:495,-165,-49,0,0,0.130741 -8597,5416:394,-164,-49,0,0,0.127643 -8598,5416:393,-163,-49,0,0,0.124317 -8599,5416:392,-162,-49,0,0,0.123214 -8600,5416:391,-161,-49,0,0,0.124822 -8601,5416:390,-160,-49,0,0,0.128849 -8602,5415:499,-159,-49,0,0,0.130822 -8603,5415:498,-158,-49,0,0,0.13307 -8604,5415:497,-157,-49,0,0,0.136037 -8605,5415:496,-156,-49,0,0,0.131713 -8606,5415:495,-155,-49,0,0,0.125159 -8607,5415:394,-154,-49,0,0,0.118327 -8608,5415:393,-153,-49,0,0,0.113568 -8609,5415:392,-152,-49,0,0,0.110431 -8610,5415:391,-151,-49,0,0,0.10531 -8611,5415:390,-150,-49,0,0,0.103332 -8612,5414:499,-149,-49,0,0,0.106067 -8613,5414:498,-148,-49,0,0,0.100623 -8614,5414:497,-147,-49,0,0,0.102431 -8615,5414:496,-146,-49,0,0,0.104846 -8616,5414:495,-145,-49,0,0,0.11224 -8617,5414:394,-144,-49,0,0,0.120303 -8618,5414:393,-143,-49,0,0,0.1342 -8619,5414:392,-142,-49,0,0,0.144688 -8620,5414:391,-141,-49,0,0,0.150504 -8621,5414:390,-140,-49,0,0,0.136921 -8622,5413:499,-139,-49,0,0,0.139454 -8623,5413:498,-138,-49,0,0,0.142239 -8624,5413:497,-137,-49,0,0,0.142251 -8625,5413:496,-136,-49,0,0,0.140903 -8626,5413:495,-135,-49,0,0,0.140381 -8627,5413:394,-134,-49,0,0,0.150255 -8628,5413:393,-133,-49,0,0,0.153697 -8629,5413:392,-132,-49,0,0,0.142967 -8630,5413:391,-131,-49,0,0,0.131513 -8631,5413:390,-130,-49,0,0,0.134117 -8632,5412:499,-129,-49,0,0,0.14437 -8633,5412:498,-128,-49,0,0,0.141239 -8634,5412:497,-127,-49,0,0,0.151123 -8635,5412:496,-126,-49,0,0,0.164046 -8636,5412:495,-125,-49,0,0,0.161193 -8637,5412:394,-124,-49,0,0,0.155713 -8638,5412:393,-123,-49,0,0,0.139874 -8639,5412:392,-122,-49,0,0,0.126753 -8640,5412:391,-121,-49,0,0,0.126913 -8641,5412:390,-120,-49,0,0,0.133331 -8642,5411:499,-119,-49,0,0,0.137895 -8643,5411:498,-118,-49,0,0,0.135314 -8644,5411:497,-117,-49,0,0,0.136764 -8645,5411:496,-116,-49,0,0,0.140716 -8646,5411:495,-115,-49,0,0,0.136339 -8647,5411:394,-114,-49,0,0,0.134918 -8648,5411:393,-113,-49,0,0,0.137822 -8649,5411:392,-112,-49,0,0,0.142164 -8650,5411:391,-111,-49,0,0,0.143649 -8651,5411:390,-110,-49,0,0,0.14493 -8652,5410:499,-109,-49,0,0,0.147237 -8653,5410:498,-108,-49,0,0,0.148142 -8654,5410:497,-107,-49,0,0,0.146451 -8655,5410:496,-106,-49,0,0,0.143914 -8656,5410:495,-105,-49,0,0,0.142942 -8657,5410:394,-104,-49,0,0,0.142917 -8658,5410:393,-103,-49,0,0,0.139898 -8659,5410:392,-102,-49,0,0,0.133676 -8660,5410:391,-101,-49,0,0,0.134738 -8661,5410:390,-100,-49,0,0,0.134595 -8662,5409:499,-99,-49,0,0,0.135687 -8663,5409:498,-98,-49,0,0,0.137042 -8664,5409:497,-97,-49,0,0,0.135447 -8665,5409:496,-96,-49,0,0,0.132928 -8666,5409:495,-95,-49,0,0,0.133343 -8667,5409:394,-94,-49,0,0,0.136642 -8668,5409:393,-93,-49,0,0,0.136049 -8669,5409:392,-92,-49,0,0,0.133296 -8670,5409:391,-91,-49,0,0,0.134654 -8671,5409:390,-90,-49,0,0,0.133628 -8672,5408:499,-89,-49,0,0,0.13481 -8673,5408:498,-88,-49,0,0,0.136134 -8674,5408:497,-87,-49,0,0,0.136097 -8675,5408:496,-86,-49,0,0,0.135507 -8676,5408:495,-85,-49,0,0,0.13646 -8677,5408:394,-84,-49,0,0,0.136279 -8678,5408:393,-83,-49,0,0,0.134475 -8679,5408:392,-82,-49,0,0,0.135206 -8680,5408:391,-81,-49,0,0,0.136788 -8681,5408:390,-80,-49,0,0,0.135904 -8682,5407:499,-79,-49,0,0,0.134679 -8683,5407:498,-78,-49,0,0,0.135459 -8684,5407:497,-77,-49,0,0,0.137225 -8685,5407:496,-76,-49,0,0,0.13731 -8686,5407:495,-75,-49,0,0,0.137116 -8687,5407:394,-74,-49,0,0,0.139997 -8688,5407:393,-73,-49,0,0,0.142703 -8689,5407:392,-72,-49,0,0,0.140766 -8690,5407:391,-71,-49,0,0,0.141563 -8691,5407:390,-70,-49,0,0,0.144155 -8692,5406:499,-69,-49,0,0,0.135796 -8693,5406:498,-68,-49,0,0,0.130135 -8694,5406:497,-67,-49,0,0,0.119944 -8695,5406:496,-66,-49,0,0,0.114762 -8696,5406:495,-65,-49,0,0,0.120194 -8697,5406:394,-64,-49,0,0,0.124474 -8698,5406:393,-63,-49,0,0,0.123225 -8699,5406:392,-62,-49,0,0,0.122064 -8700,5406:391,-61,-49,0,0,0.119739 -8701,5406:390,-60,-49,0,0,0.111444 -8702,5405:499,-59,-49,0,0,0.100706 -8703,5405:498,-58,-49,0,0,0.100855 -8704,5405:497,-57,-49,0,0,0.101135 -8705,5405:496,-56,-49,0,0,0.0999736 -8706,5405:495,-55,-49,0,0,0.0958187 -8707,5405:394,-54,-49,0,0,0.101575 -8708,5405:393,-53,-49,0,0,0.106331 -8709,5405:392,-52,-49,0,0,0.0954277 -8710,5405:391,-51,-49,0,0,0.0954452 -8711,5405:390,-50,-49,0,0,0.0975231 -8712,5404:499,-49,-49,0,0,0.0948527 -8713,5404:498,-48,-49,0,0,0.0978038 -8714,5404:497,-47,-49,0,0,0.0975142 -8715,5404:496,-46,-49,0,0,0.0984311 -8716,5404:495,-45,-49,0,0,0.0937731 -8717,5404:394,-44,-49,0,0,0.0922307 -8718,5404:393,-43,-49,0,0,0.0914936 -8719,5404:392,-42,-49,0,0,0.096068 -8720,5404:391,-41,-49,0,0,0.0979854 -8721,5404:390,-40,-49,0,0,0.0961931 -8722,5403:499,-39,-49,0,0,0.0967394 -8723,5403:498,-38,-49,0,0,0.09359 -8724,5403:497,-37,-49,0,0,0.0895649 -8725,5403:496,-36,-49,0,0,0.08959 -8726,5403:495,-35,-49,0,0,0.0900941 -8727,5403:394,-34,-49,0,0,0.0878538 -8728,5403:393,-33,-49,0,0,0.0852467 -8729,5403:392,-32,-49,0,0,0.0858656 -8730,5403:391,-31,-49,0,0,0.0869769 -8731,5403:390,-30,-49,0,0,0.0853348 -8732,5402:499,-29,-49,0,0,0.0849347 -8733,5402:498,-28,-49,0,0,0.0848468 -8734,5402:497,-27,-49,0,0,0.0836658 -8735,5402:496,-26,-49,0,0,0.0851665 -8736,5402:495,-25,-49,0,0,0.0883079 -8737,5402:394,-24,-49,0,0,0.0882251 -8738,5402:393,-23,-49,0,0,0.0911099 -8739,5402:392,-22,-49,0,0,0.091596 -8740,5402:391,-21,-49,0,0,0.0902711 -8741,5402:390,-20,-49,0,0,0.0936945 -8742,5401:499,-19,-49,0,0,0.0915447 -8743,5401:498,-18,-49,0,0,0.0905836 -8744,5401:497,-17,-49,0,0,0.0923426 -8745,5401:496,-16,-49,0,0,0.0924285 -8746,5401:495,-15,-49,0,0,0.0891801 -8747,5401:394,-14,-49,0,0,0.0874924 -8748,5401:393,-13,-49,0,0,0.0891302 -8749,5401:392,-12,-49,0,0,0.0909825 -8750,5401:391,-11,-49,0,0,0.0909993 -8751,5401:390,-10,-49,0,0,0.0892887 -8752,5400:499,-9,-49,0,0,0.0891552 -8753,5400:498,-8,-49,0,0,0.0897326 -8754,5400:497,-7,-49,0,0,0.0884486 -8755,5400:496,-6,-49,0,0,0.0869525 -8756,5400:495,-5,-49,0,0,0.0855435 -8757,5400:394,-4,-49,0,0,0.0848548 -8758,5400:393,-3,-49,0,0,0.0846078 -8759,5400:392,-2,-49,0,0,0.0836893 -8760,5400:391,-1,-49,0,0,0.0829047 -8761,3400:391,0,-49,0,0,0.0828423 -8762,3400:391,1,-49,0,0,0.0825851 -8763,3400:392,2,-49,0,0,0.0818486 -8764,3400:393,3,-49,0,0,0.0809115 -8765,3400:394,4,-49,0,0,0.0803859 -8766,3400:495,5,-49,0,0,0.0802418 -8767,3400:496,6,-49,0,0,0.0800828 -8768,3400:497,7,-49,0,0,0.0795469 -8769,3400:498,8,-49,0,0,0.0786786 -8770,3400:499,9,-49,0,0,0.079224 -8771,3401:390,10,-49,0,0,0.0784183 -8772,3401:391,11,-49,0,0,0.078344 -8773,3401:392,12,-49,0,0,0.0784258 -8774,3401:393,13,-49,0,0,0.0784927 -8775,3401:394,14,-49,0,0,0.0783071 -8776,3401:495,15,-49,0,0,0.0777527 -8777,3401:496,16,-49,0,0,0.0779224 -8778,3401:497,17,-49,0,0,0.0762629 -8779,3401:498,18,-49,0,0,0.0759452 -8780,3401:499,19,-49,0,0,0.0758658 -8781,3402:390,20,-49,0,0,0.0760317 -8782,3402:391,21,-49,0,0,0.0762991 -8783,3402:392,22,-49,0,0,0.0763281 -8784,3402:393,23,-49,0,0,0.0760895 -8785,3402:394,24,-49,0,0,0.0760245 -8786,3402:495,25,-49,0,0,0.0770117 -8787,3402:496,26,-49,0,0,0.0776864 -8788,3402:497,27,-49,0,0,0.079007 -8789,3402:498,28,-49,0,0,0.0797277 -8790,3402:499,29,-49,0,0,0.0802039 -8791,3403:390,30,-49,0,0,0.079803 -8792,3403:391,31,-49,0,0,0.0790517 -8793,3403:392,32,-49,0,0,0.0784852 -8794,3403:393,33,-49,0,0,0.0777453 -8795,3403:394,34,-49,0,0,0.0786711 -8796,3403:495,35,-49,0,0,0.079788 -8797,3403:496,36,-49,0,0,0.0850706 -8798,3403:497,37,-49,0,0,0.0846238 -8799,3403:498,38,-49,0,0,0.0802265 -8800,3403:499,39,-49,0,0,0.0795921 -8801,3404:390,40,-49,0,0,0.0805227 -8802,3404:391,41,-49,0,0,0.0844091 -8803,3404:392,42,-49,0,0,0.0811948 -8804,3404:393,43,-49,0,0,0.0810875 -8805,3404:394,44,-49,0,0,0.0840447 -8806,3404:495,45,-49,0,0,0.0858897 -8807,3404:496,46,-49,0,0,0.0852147 -8808,3404:497,47,-49,0,0,0.0852868 -8809,3404:498,48,-49,0,0,0.0881261 -8810,3404:499,49,-49,0,0,0.0891801 -8811,3405:390,50,-49,0,0,0.0879033 -8812,3405:391,51,-49,0,0,0.0850386 -8813,3405:392,52,-49,0,0,0.0861565 -8814,3405:393,53,-49,0,0,0.0891302 -8815,3405:394,54,-49,0,0,0.0886891 -8816,3405:495,55,-49,0,0,0.0868057 -8817,3405:496,56,-49,0,0,0.0858252 -8818,3405:497,57,-49,0,0,0.0867893 -8819,3405:498,58,-49,0,0,0.08764 -8820,3405:499,59,-49,0,0,0.0872464 -8821,3406:390,60,-49,0,0,0.0887971 -8822,3406:391,61,-49,0,0,0.089951 -8823,3406:392,62,-49,0,0,0.0901614 -8824,3406:393,63,-49,0,0,0.09077 -8825,3406:394,64,-49,0,0,0.0939392 -8826,3406:495,65,-49,0,0,0.096964 -8827,3406:496,66,-49,0,0,0.0967394 -8828,3406:497,67,-49,0,0,0.0899341 -8829,3406:498,68,-49,0,0,0.0889217 -8830,3406:499,69,-49,0,0,0.0911525 -8831,3407:390,70,-49,0,0,0.0930596 -8832,3407:391,71,-49,0,0,0.0940792 -8833,3407:392,72,-49,0,0,0.0912291 -8834,3407:394,74,-49,0,0,0.0885976 -8835,3407:495,75,-49,0,0,0.0898584 -8836,3407:496,76,-49,0,0,0.0837682 -8837,3407:497,77,-49,0,0,0.0856802 -8838,3407:498,78,-49,0,0,0.084775 -8839,3407:499,79,-49,0,0,0.084092 -8840,3408:390,80,-49,0,0,0.0837762 -8841,3408:391,81,-49,0,0,0.0843139 -8842,3408:392,82,-49,0,0,0.0818178 -8843,3408:393,83,-49,0,0,0.0789771 -8844,3408:394,84,-49,0,0,0.0848948 -8845,3408:495,85,-49,0,0,0.0989706 -8846,3408:496,86,-49,0,0,0.102838 -8847,3408:497,87,-49,0,0,0.101566 -8848,3408:498,88,-49,0,0,0.1015 -8849,3408:499,89,-49,0,0,0.0994295 -8850,3409:390,90,-49,0,0,0.0966586 -8851,3409:391,91,-49,0,0,0.0950203 -8852,3409:392,92,-49,0,0,0.0934331 -8853,3409:393,93,-49,0,0,0.0918785 -8854,3409:394,94,-49,0,0,0.0904569 -8855,3409:495,95,-49,0,0,0.0906007 -8856,3409:496,96,-49,0,0,0.0926874 -8857,3409:497,97,-49,0,0,0.0968022 -8858,3409:498,98,-49,0,0,0.0980306 -8859,3409:499,99,-49,0,0,0.0948969 -8860,3410:390,100,-49,0,0,0.0956496 -8861,3410:391,101,-49,0,0,0.0978583 -8862,3410:392,102,-49,0,0,0.0937209 -8863,3410:393,103,-49,0,0,0.0956317 -8864,3410:394,104,-49,0,0,0.10066 -8865,3410:495,105,-49,0,0,0.101163 -8866,3410:496,106,-49,0,0,0.100298 -8867,3410:497,107,-49,0,0,0.100762 -8868,3410:498,108,-49,0,0,0.102158 -8869,3410:499,109,-49,0,0,0.103047 -8870,3411:390,110,-49,0,0,0.103209 -8871,3411:391,111,-49,0,0,0.10595 -8872,3411:392,112,-49,0,0,0.103943 -8873,3411:393,113,-49,0,0,0.100567 -8874,3411:394,114,-49,0,0,0.102753 -8875,3411:495,115,-49,0,0,0.1038 -8876,3411:496,116,-49,0,0,0.109355 -8877,3411:497,117,-49,0,0,0.109215 -8878,3411:498,118,-49,0,0,0.108896 -8879,3411:499,119,-49,0,0,0.108498 -8880,3412:390,120,-49,0,0,0.10679 -8881,3412:391,121,-49,0,0,0.109335 -8882,3412:392,122,-49,0,0,0.114992 -8883,3412:393,123,-49,0,0,0.117707 -8884,3412:394,124,-49,0,0,0.114846 -8885,3412:495,125,-49,0,0,0.113754 -8886,3412:496,126,-49,0,0,0.1147 -8887,3412:497,127,-49,0,0,0.115097 -8888,3412:498,128,-49,0,0,0.113816 -8889,3412:499,129,-49,0,0,0.112015 -8890,3413:390,130,-49,0,0,0.110098 -8891,3413:391,131,-49,0,0,0.110279 -8892,3413:392,132,-49,0,0,0.110754 -8893,3413:393,133,-49,0,0,0.11037 -8894,3413:394,134,-49,0,0,0.112373 -8895,3413:495,135,-49,0,0,0.111352 -8896,3413:496,136,-49,0,0,0.109215 -8897,3413:497,137,-49,0,0,0.108617 -8898,3413:498,138,-49,0,0,0.108398 -8899,3413:499,139,-49,0,0,0.10818 -8900,3414:390,140,-49,0,0,0.108647 -8901,3414:391,141,-49,0,0,0.111678 -8902,3414:392,142,-49,0,0,0.115191 -8903,3414:393,143,-49,0,0,0.114575 -8904,3414:394,144,-49,0,0,0.113072 -8905,3414:495,145,-49,0,0,0.112476 -8906,3414:496,146,-49,0,0,0.111038 -8907,3414:497,147,-49,0,0,0.108002 -8908,3414:498,148,-49,0,0,0.102999 -8909,3414:499,149,-49,0,0,0.0938344 -8910,3415:390,150,-49,0,0,0.0952416 -8911,3415:391,151,-49,0,0,0.100057 -8912,3415:392,152,-49,0,0,0.102205 -8913,3415:393,153,-49,0,0,0.121274 -8914,3415:394,154,-49,0,0,0.122561 -8915,3415:495,155,-49,0,0,0.121384 -8916,3415:496,156,-49,0,0,0.114169 -8917,3415:497,157,-49,0,0,0.102981 -8918,3415:498,158,-49,0,0,0.106019 -8919,3415:499,159,-49,0,0,0.119274 -8920,3416:390,160,-49,0,0,0.11909 -8921,3416:391,161,-49,0,0,0.114075 -8922,3416:392,162,-49,0,0,0.122318 -8923,3416:393,163,-49,0,0,0.124183 -8924,3416:394,164,-49,0,0,0.137651 -8925,3416:495,165,-49,0,0,0.136376 -8926,3416:496,166,-49,0,0,0.133355 -8927,3416:497,167,-49,0,0,0.132609 -8928,3416:498,168,-49,0,0,0.131901 -8929,3416:499,169,-49,0,0,0.133878 -8930,3417:390,170,-49,0,0,0.135519 -8931,3417:391,171,-49,0,0,0.134248 -8932,3417:392,172,-49,0,0,0.136885 -8933,3417:393,173,-49,0,0,0.144472 -8934,3417:394,174,-49,0,0,0.1459 -8935,3417:495,175,-49,0,0,0.146992 -8936,3417:496,176,-49,0,0,0.145287 -8937,3417:497,177,-49,0,0,0.133605 -8938,3417:498,178,-49,0,0,0.12639 -8939,3417:499,179,-49,0,0,0.127907 -8940,3418:390,180,-49,0,0,0.137018 -8941,5418:380,-180,-48,0,0,0.141015 -8942,5417:489,-179,-48,0,0,0.144015 -8943,5417:488,-178,-48,0,0,0.144943 -8944,5417:487,-177,-48,0,0,0.133355 -8945,5417:486,-176,-48,0,0,0.134403 -8946,5417:485,-175,-48,0,0,0.139948 -8947,5417:384,-174,-48,0,0,0.140654 -8948,5417:383,-173,-48,0,0,0.140729 -8949,5417:382,-172,-48,0,0,0.140592 -8950,5417:381,-171,-48,0,0,0.14249 -8951,5417:380,-170,-48,0,0,0.141776 -8952,5416:489,-169,-48,0,0,0.132502 -8953,5416:488,-168,-48,0,0,0.128343 -8954,5416:487,-167,-48,0,0,0.128665 -8955,5416:486,-166,-48,0,0,0.130216 -8956,5416:485,-165,-48,0,0,0.133296 -8957,5416:384,-164,-48,0,0,0.134595 -8958,5416:383,-163,-48,0,0,0.131396 -8959,5416:382,-162,-48,0,0,0.129589 -8960,5416:381,-161,-48,0,0,0.133807 -8961,5416:380,-160,-48,0,0,0.137993 -8962,5415:489,-159,-48,0,0,0.13731 -8963,5415:488,-158,-48,0,0,0.140542 -8964,5415:487,-157,-48,0,0,0.143219 -8965,5415:486,-156,-48,0,0,0.141963 -8966,5415:485,-155,-48,0,0,0.136279 -8967,5415:384,-154,-48,0,0,0.130822 -8968,5415:383,-153,-48,0,0,0.121515 -8969,5415:382,-152,-48,0,0,0.120162 -8970,5415:381,-151,-48,0,0,0.115842 -8971,5415:380,-150,-48,0,0,0.11038 -8972,5414:489,-149,-48,0,0,0.107183 -8973,5414:488,-148,-48,0,0,0.10683 -8974,5414:487,-147,-48,0,0,0.106048 -8975,5414:486,-146,-48,0,0,0.105649 -8976,5414:485,-145,-48,0,0,0.110795 -8977,5414:384,-144,-48,0,0,0.12377 -8978,5414:383,-143,-48,0,0,0.130636 -8979,5414:382,-142,-48,0,0,0.132243 -8980,5414:381,-141,-48,0,0,0.130904 -8981,5414:380,-140,-48,0,0,0.135026 -8982,5413:489,-139,-48,0,0,0.141388 -8983,5413:488,-138,-48,0,0,0.147095 -8984,5413:487,-137,-48,0,0,0.149117 -8985,5413:486,-136,-48,0,0,0.150124 -8986,5413:485,-135,-48,0,0,0.153177 -8987,5413:384,-134,-48,0,0,0.157559 -8988,5413:383,-133,-48,0,0,0.155861 -8989,5413:382,-132,-48,0,0,0.148259 -8990,5413:381,-131,-48,0,0,0.142414 -8991,5413:380,-130,-48,0,0,0.161554 -8992,5412:489,-129,-48,0,0,0.168692 -8993,5412:488,-128,-48,0,0,0.163259 -8994,5412:487,-127,-48,0,0,0.166927 -8995,5412:486,-126,-48,0,0,0.169355 -8996,5412:485,-125,-48,0,0,0.171126 -8997,5412:384,-124,-48,0,0,0.169182 -8998,5412:383,-123,-48,0,0,0.158406 -8999,5412:382,-122,-48,0,0,0.151321 -9000,5412:381,-121,-48,0,0,0.139997 -9001,5412:380,-120,-48,0,0,0.137225 -9002,5411:489,-119,-48,0,0,0.142439 -9003,5411:488,-118,-48,0,0,0.147948 -9004,5411:487,-117,-48,0,0,0.148557 -9005,5411:486,-116,-48,0,0,0.149052 -9006,5411:485,-115,-48,0,0,0.153952 -9007,5411:384,-114,-48,0,0,0.153724 -9008,5411:383,-113,-48,0,0,0.155146 -9009,5411:382,-112,-48,0,0,0.155942 -9010,5411:381,-111,-48,0,0,0.150543 -9011,5411:380,-110,-48,0,0,0.147805 -9012,5410:489,-109,-48,0,0,0.14567 -9013,5410:488,-108,-48,0,0,0.144688 -9014,5410:487,-107,-48,0,0,0.143762 -9015,5410:486,-106,-48,0,0,0.143661 -9016,5410:485,-105,-48,0,0,0.144764 -9017,5410:384,-104,-48,0,0,0.143509 -9018,5410:383,-103,-48,0,0,0.138777 -9019,5410:382,-102,-48,0,0,0.141289 -9020,5410:381,-101,-48,0,0,0.141551 -9021,5410:380,-100,-48,0,0,0.141401 -9022,5409:489,-99,-48,0,0,0.142151 -9023,5409:488,-98,-48,0,0,0.142264 -9024,5409:487,-97,-48,0,0,0.141438 -9025,5409:486,-96,-48,0,0,0.139417 -9026,5409:485,-95,-48,0,0,0.137456 -9027,5409:384,-94,-48,0,0,0.139195 -9028,5409:383,-93,-48,0,0,0.138177 -9029,5409:382,-92,-48,0,0,0.137554 -9030,5409:381,-91,-48,0,0,0.137444 -9031,5409:380,-90,-48,0,0,0.13617 -9032,5408:489,-89,-48,0,0,0.138544 -9033,5408:488,-88,-48,0,0,0.140903 -9034,5408:487,-87,-48,0,0,0.140406 -9035,5408:486,-86,-48,0,0,0.139626 -9036,5408:485,-85,-48,0,0,0.138666 -9037,5408:384,-84,-48,0,0,0.138042 -9038,5408:383,-83,-48,0,0,0.138262 -9039,5408:382,-82,-48,0,0,0.138544 -9040,5408:381,-81,-48,0,0,0.138986 -9041,5408:380,-80,-48,0,0,0.140295 -9042,5407:489,-79,-48,0,0,0.141538 -9043,5407:488,-78,-48,0,0,0.140965 -9044,5407:487,-77,-48,0,0,0.140357 -9045,5407:486,-76,-48,0,0,0.140381 -9046,5407:485,-75,-48,0,0,0.141401 -9047,5407:384,-74,-48,0,0,0.148064 -9048,5407:383,-73,-48,0,0,0.145798 -9049,5407:382,-72,-48,0,0,0.142013 -9050,5407:381,-71,-48,0,0,0.146195 -9051,5407:380,-70,-48,0,0,0.147005 -9052,5406:489,-69,-48,0,0,0.148791 -9053,5406:488,-68,-48,0,0,0.148103 -9054,5406:487,-67,-48,0,0,0.139318 -9055,5406:486,-66,-48,0,0,0.123081 -9056,5406:485,-65,-48,0,0,0.123715 -9057,5406:384,-64,-48,0,0,0.126481 -9058,5406:383,-63,-48,0,0,0.123103 -9059,5406:382,-62,-48,0,0,0.124586 -9060,5406:381,-61,-48,0,0,0.123281 -9061,5406:380,-60,-48,0,0,0.11837 -9062,5405:489,-59,-48,0,0,0.117867 -9063,5405:488,-58,-48,0,0,0.125046 -9064,5405:487,-57,-48,0,0,0.126765 -9065,5405:486,-56,-48,0,0,0.119728 -9066,5405:485,-55,-48,0,0,0.101201 -9067,5405:384,-54,-48,0,0,0.102554 -9068,5405:383,-53,-48,0,0,0.108846 -9069,5405:382,-52,-48,0,0,0.110088 -9070,5405:381,-51,-48,0,0,0.106214 -9071,5405:380,-50,-48,0,0,0.103028 -9072,5404:489,-49,-48,0,0,0.0985681 -9073,5404:488,-48,-48,0,0,0.0988515 -9074,5404:487,-47,-48,0,0,0.101669 -9075,5404:486,-46,-48,0,0,0.101885 -9076,5404:485,-45,-48,0,0,0.10359 -9077,5404:384,-44,-48,0,0,0.097036 -9078,5404:383,-43,-48,0,0,0.0981854 -9079,5404:382,-42,-48,0,0,0.0996321 -9080,5404:381,-41,-48,0,0,0.100075 -9081,5404:380,-40,-48,0,0,0.0961664 -9082,5403:489,-39,-48,0,0,0.0963628 -9083,5403:488,-38,-48,0,0,0.0931205 -9084,5403:487,-37,-48,0,0,0.0915788 -9085,5403:486,-36,-48,0,0,0.0916388 -9086,5403:485,-35,-48,0,0,0.0924975 -9087,5403:384,-34,-48,0,0,0.0918957 -9088,5403:383,-33,-48,0,0,0.0888636 -9089,5403:382,-32,-48,0,0,0.0877468 -9090,5403:381,-31,-48,0,0,0.0880434 -9091,5403:380,-30,-48,0,0,0.0859542 -9092,5402:489,-29,-48,0,0,0.085922 -9093,5402:488,-28,-48,0,0,0.0864319 -9094,5402:487,-27,-48,0,0,0.084823 -9095,5402:486,-26,-48,0,0,0.0871157 -9096,5402:485,-25,-48,0,0,0.0874759 -9097,5402:384,-24,-48,0,0,0.0924372 -9098,5402:383,-23,-48,0,0,0.0983766 -9099,5402:382,-22,-48,0,0,0.0947203 -9100,5402:381,-21,-48,0,0,0.0920243 -9101,5402:380,-20,-48,0,0,0.0933984 -9102,5401:489,-19,-48,0,0,0.0957741 -9103,5401:488,-18,-48,0,0,0.0952592 -9104,5401:487,-17,-48,0,0,0.0935812 -9105,5401:486,-16,-48,0,0,0.095623 -9106,5401:485,-15,-48,0,0,0.096345 -9107,5401:384,-14,-48,0,0,0.0944478 -9108,5401:383,-13,-48,0,0,0.0941842 -9109,5401:382,-12,-48,0,0,0.0958899 -9110,5401:381,-11,-48,0,0,0.0961394 -9111,5401:380,-10,-48,0,0,0.0925061 -9112,5400:489,-9,-48,0,0,0.0887722 -9113,5400:488,-8,-48,0,0,0.0894308 -9114,5400:487,-7,-48,0,0,0.0882829 -9115,5400:486,-6,-48,0,0,0.0874759 -9116,5400:485,-5,-48,0,0,0.0862049 -9117,5400:384,-4,-48,0,0,0.0857205 -9118,5400:383,-3,-48,0,0,0.0851106 -9119,5400:382,-2,-48,0,0,0.0844726 -9120,5400:381,-1,-48,0,0,0.0836028 -9121,3400:381,0,-48,0,0,0.0831786 -9122,3400:381,1,-48,0,0,0.0826084 -9123,3400:382,2,-48,0,0,0.0827799 -9124,3400:383,3,-48,0,0,0.0823673 -9125,3400:384,4,-48,0,0,0.0810186 -9126,3400:485,5,-48,0,0,0.0813481 -9127,3400:486,6,-48,0,0,0.080942 -9128,3400:487,7,-48,0,0,0.0822432 -9129,3400:488,8,-48,0,0,0.0823363 -9130,3400:489,9,-48,0,0,0.0820496 -9131,3401:380,10,-48,0,0,0.0813329 -9132,3401:381,11,-48,0,0,0.0800828 -9133,3401:382,12,-48,0,0,0.0798634 -9134,3401:383,13,-48,0,0,0.0800901 -9135,3401:384,14,-48,0,0,0.0796974 -9136,3401:485,15,-48,0,0,0.0791865 -9137,3401:486,16,-48,0,0,0.0790967 -9138,3401:487,17,-48,0,0,0.0786861 -9139,3401:488,18,-48,0,0,0.0785968 -9140,3401:489,19,-48,0,0,0.0785893 -9141,3402:380,20,-48,0,0,0.0784333 -9142,3402:381,21,-48,0,0,0.0777379 -9143,3402:382,22,-48,0,0,0.0781145 -9144,3402:383,23,-48,0,0,0.0770483 -9145,3402:384,24,-48,0,0,0.076524 -9146,3402:485,25,-48,0,0,0.0784405 -9147,3402:486,26,-48,0,0,0.0777453 -9148,3402:487,27,-48,0,0,0.0783812 -9149,3402:488,28,-48,0,0,0.0826241 -9150,3402:489,29,-48,0,0,0.0835476 -9151,3403:380,30,-48,0,0,0.0849825 -9152,3403:381,31,-48,0,0,0.0871483 -9153,3403:382,32,-48,0,0,0.0901108 -9154,3403:383,33,-48,0,0,0.0887803 -9155,3403:384,34,-48,0,0,0.0831238 -9156,3403:485,35,-48,0,0,0.0820418 -9157,3403:486,36,-48,0,0,0.0841792 -9158,3403:487,37,-48,0,0,0.087083 -9159,3403:488,38,-48,0,0,0.0856399 -9160,3403:489,39,-48,0,0,0.0872874 -9161,3404:380,40,-48,0,0,0.0879858 -9162,3404:381,41,-48,0,0,0.0853911 -9163,3404:382,42,-48,0,0,0.0861725 -9164,3404:383,43,-48,0,0,0.0875415 -9165,3404:384,44,-48,0,0,0.0870342 -9166,3404:485,45,-48,0,0,0.0867406 -9167,3404:486,46,-48,0,0,0.0865535 -9168,3404:487,47,-48,0,0,0.0874514 -9169,3404:488,48,-48,0,0,0.0887139 -9170,3404:489,49,-48,0,0,0.0911184 -9171,3405:380,50,-48,0,0,0.0903133 -9172,3405:381,51,-48,0,0,0.0893808 -9173,3405:382,52,-48,0,0,0.0890552 -9174,3405:383,53,-48,0,0,0.0951266 -9175,3405:384,54,-48,0,0,0.0874759 -9176,3405:485,55,-48,0,0,0.0876894 -9177,3405:486,56,-48,0,0,0.0891384 -9178,3405:487,57,-48,0,0,0.0922047 -9179,3405:488,58,-48,0,0,0.0939131 -9180,3405:489,59,-48,0,0,0.0936684 -9181,3406:380,60,-48,0,0,0.0911779 -9182,3406:381,61,-48,0,0,0.0920929 -9183,3406:382,62,-48,0,0,0.0941318 -9184,3406:383,63,-48,0,0,0.0924114 -9185,3406:384,64,-48,0,0,0.0936945 -9186,3406:485,65,-48,0,0,0.098998 -9187,3406:486,66,-48,0,0,0.0986227 -9188,3406:487,67,-48,0,0,0.0965957 -9189,3406:488,68,-48,0,0,0.0961037 -9190,3406:489,69,-48,0,0,0.0955961 -9191,3407:380,70,-48,0,0,0.0948438 -9192,3407:381,71,-48,0,0,0.094888 -9193,3407:382,72,-48,0,0,0.0951884 -9194,3407:384,74,-48,0,0,0.0931986 -9195,3407:485,75,-48,0,0,0.0932333 -9196,3407:486,76,-48,0,0,0.090533 -9197,3407:487,77,-48,0,0,0.0850786 -9198,3407:488,78,-48,0,0,0.0874759 -9199,3407:489,79,-48,0,0,0.086132 -9200,3408:380,80,-48,0,0,0.0853428 -9201,3408:381,81,-48,0,0,0.0848149 -9202,3408:382,82,-48,0,0,0.0883243 -9203,3408:383,83,-48,0,0,0.0895396 -9204,3408:384,84,-48,0,0,0.0949055 -9205,3408:485,85,-48,0,0,0.107518 -9206,3408:486,86,-48,0,0,0.107016 -9207,3408:487,87,-48,0,0,0.10821 -9208,3408:488,88,-48,0,0,0.107597 -9209,3408:489,89,-48,0,0,0.103819 -9210,3409:380,90,-48,0,0,0.101275 -9211,3409:381,91,-48,0,0,0.103924 -9212,3409:382,92,-48,0,0,0.10318 -9213,3409:383,93,-48,0,0,0.102092 -9214,3409:384,94,-48,0,0,0.0996783 -9215,3409:485,95,-48,0,0,0.0937995 -9216,3409:486,96,-48,0,0,0.0983038 -9217,3409:487,97,-48,0,0,0.105921 -9218,3409:488,98,-48,0,0,0.100976 -9219,3409:489,99,-48,0,0,0.0967394 -9220,3410:380,100,-48,0,0,0.102309 -9221,3410:381,101,-48,0,0,0.103972 -9222,3410:382,102,-48,0,0,0.0963093 -9223,3410:383,103,-48,0,0,0.0963628 -9224,3410:384,104,-48,0,0,0.0999645 -9225,3410:485,105,-48,0,0,0.09931 -9226,3410:486,106,-48,0,0,0.099872 -9227,3410:487,107,-48,0,0,0.10065 -9228,3410:488,108,-48,0,0,0.101042 -9229,3410:489,109,-48,0,0,0.102611 -9230,3411:380,110,-48,0,0,0.106194 -9231,3411:381,111,-48,0,0,0.110018 -9232,3411:382,112,-48,0,0,0.115705 -9233,3411:383,113,-48,0,0,0.115705 -9234,3411:384,114,-48,0,0,0.110098 -9235,3411:485,115,-48,0,0,0.106624 -9236,3411:486,116,-48,0,0,0.112046 -9237,3411:487,117,-48,0,0,0.110148 -9238,3411:488,118,-48,0,0,0.108408 -9239,3411:489,119,-48,0,0,0.108408 -10426,5412:249,-129,-44,0,0,0.18985 -9240,3412:380,120,-48,0,0,0.109646 -9241,3412:381,121,-48,0,0,0.110461 -9242,3412:382,122,-48,0,0,0.115317 -9243,3412:383,123,-48,0,0,0.11559 -9244,3412:384,124,-48,0,0,0.116528 -9245,3412:485,125,-48,0,0,0.114481 -9246,3412:486,126,-48,0,0,0.114387 -9247,3412:487,127,-48,0,0,0.114794 -9248,3412:488,128,-48,0,0,0.116464 -9249,3412:489,129,-48,0,0,0.115296 -9250,3413:380,130,-48,0,0,0.112599 -9251,3413:381,131,-48,0,0,0.112261 -9252,3413:382,132,-48,0,0,0.114481 -9253,3413:383,133,-48,0,0,0.116962 -9254,3413:384,134,-48,0,0,0.114898 -9255,3413:485,135,-48,0,0,0.113413 -9256,3413:486,136,-48,0,0,0.114752 -9257,3413:487,137,-48,0,0,0.112486 -9258,3413:488,138,-48,0,0,0.110552 -9259,3413:489,139,-48,0,0,0.11265 -9260,3414:380,140,-48,0,0,0.116454 -9261,3414:381,141,-48,0,0,0.117249 -9262,3414:382,142,-48,0,0,0.116021 -9263,3414:383,143,-48,0,0,0.117132 -9264,3414:384,144,-48,0,0,0.117696 -9265,3414:485,145,-48,0,0,0.117782 -9266,3414:486,146,-48,0,0,0.114575 -9267,3414:487,147,-48,0,0,0.109026 -9268,3414:488,148,-48,0,0,0.0994938 -9269,3414:489,149,-48,0,0,0.0951884 -9270,3415:380,150,-48,0,0,0.124608 -9271,3415:381,151,-48,0,0,0.128653 -9272,3415:382,152,-48,0,0,0.106702 -9273,3415:383,153,-48,0,0,0.117515 -9274,3415:384,154,-48,0,0,0.126583 -9275,3415:485,155,-48,0,0,0.134487 -9276,3415:486,156,-48,0,0,0.13364 -9277,3415:487,157,-48,0,0,0.117547 -9278,3415:488,158,-48,0,0,0.115705 -9279,3415:489,159,-48,0,0,0.121778 -9280,3416:380,160,-48,0,0,0.119155 -9281,3416:381,161,-48,0,0,0.121921 -9282,3416:382,162,-48,0,0,0.118263 -9283,3416:383,163,-48,0,0,0.135687 -9284,3416:384,164,-48,0,0,0.141202 -9285,3416:485,165,-48,0,0,0.142942 -9286,3416:486,166,-48,0,0,0.142967 -9287,3416:487,167,-48,0,0,0.139763 -9288,3416:488,168,-48,0,0,0.135603 -9289,3416:489,169,-48,0,0,0.13617 -9290,3417:380,170,-48,0,0,0.138519 -9291,3417:381,171,-48,0,0,0.140406 -9292,3417:382,172,-48,0,0,0.142741 -9293,3417:383,173,-48,0,0,0.144053 -9294,3417:384,174,-48,0,0,0.148596 -9295,3417:485,175,-48,0,0,0.151387 -9296,3417:486,176,-48,0,0,0.15339 -9297,3417:487,177,-48,0,0,0.151505 -9298,3417:488,178,-48,0,0,0.148116 -9299,3417:489,179,-48,0,0,0.140084 -9300,3418:380,180,-48,0,0,0.141015 -9301,5418:370,-180,-47,0,0,0.140753 -9302,5417:479,-179,-47,0,0,0.142678 -9303,5417:478,-178,-47,0,0,0.150465 -9304,5417:477,-177,-47,0,0,0.156959 -9305,5417:476,-176,-47,0,0,0.15597 -9306,5417:475,-175,-47,0,0,0.152485 -9307,5417:374,-174,-47,0,0,0.150137 -9308,5417:373,-173,-47,0,0,0.142101 -9309,5417:372,-172,-47,0,0,0.140878 -9310,5417:371,-171,-47,0,0,0.146992 -9311,5417:370,-170,-47,0,0,0.145057 -9312,5416:479,-169,-47,0,0,0.146927 -9313,5416:478,-168,-47,0,0,0.144574 -9314,5416:477,-167,-47,0,0,0.140766 -9315,5416:476,-166,-47,0,0,0.136836 -9316,5416:475,-165,-47,0,0,0.135098 -9317,5416:374,-164,-47,0,0,0.136122 -9318,5416:373,-163,-47,0,0,0.137749 -9319,5416:372,-162,-47,0,0,0.136146 -9320,5416:371,-161,-47,0,0,0.137773 -9321,5416:370,-160,-47,0,0,0.140605 -9322,5415:479,-159,-47,0,0,0.144802 -9323,5415:478,-158,-47,0,0,0.149548 -9324,5415:477,-157,-47,0,0,0.152313 -9325,5415:476,-156,-47,0,0,0.147857 -9326,5415:475,-155,-47,0,0,0.13836 -9327,5415:374,-154,-47,0,0,0.133486 -9328,5415:373,-153,-47,0,0,0.128976 -9329,5415:372,-152,-47,0,0,0.125824 -9330,5415:371,-151,-47,0,0,0.126163 -9331,5415:370,-150,-47,0,0,0.124866 -9332,5414:479,-149,-47,0,0,0.123603 -9333,5414:478,-148,-47,0,0,0.118692 -9334,5414:477,-147,-47,0,0,0.111414 -9335,5414:476,-146,-47,0,0,0.115045 -9336,5414:475,-145,-47,0,0,0.114221 -9337,5414:374,-144,-47,0,0,0.11517 -9338,5414:373,-143,-47,0,0,0.119803 -9339,5414:372,-142,-47,0,0,0.11881 -9340,5414:371,-141,-47,0,0,0.125282 -9341,5414:370,-140,-47,0,0,0.149365 -9342,5413:479,-139,-47,0,0,0.155483 -9343,5413:478,-138,-47,0,0,0.152459 -9344,5413:477,-137,-47,0,0,0.145402 -9345,5413:476,-136,-47,0,0,0.152977 -9346,5413:475,-135,-47,0,0,0.156335 -9347,5413:374,-134,-47,0,0,0.157982 -9348,5413:373,-133,-47,0,0,0.158502 -9349,5413:372,-132,-47,0,0,0.162979 -9350,5413:371,-131,-47,0,0,0.165858 -9351,5413:370,-130,-47,0,0,0.168289 -9352,5412:479,-129,-47,0,0,0.164682 -9353,5412:478,-128,-47,0,0,0.163441 -9354,5412:477,-127,-47,0,0,0.165787 -9355,5412:476,-126,-47,0,0,0.171973 -9356,5412:475,-125,-47,0,0,0.174622 -9357,5412:374,-124,-47,0,0,0.171053 -9358,5412:373,-123,-47,0,0,0.169558 -9359,5412:372,-122,-47,0,0,0.170137 -9360,5412:371,-121,-47,0,0,0.16803 -9361,5412:370,-120,-47,0,0,0.163427 -9362,5411:479,-119,-47,0,0,0.157941 -9363,5411:478,-118,-47,0,0,0.15438 -9364,5411:477,-117,-47,0,0,0.15624 -9365,5411:476,-116,-47,0,0,0.155429 -9366,5411:475,-115,-47,0,0,0.154756 -9367,5411:374,-114,-47,0,0,0.154595 -9368,5411:373,-113,-47,0,0,0.15477 -9369,5411:372,-112,-47,0,0,0.156932 -9370,5411:371,-111,-47,0,0,0.157586 -9371,5411:370,-110,-47,0,0,0.150438 -9372,5410:479,-109,-47,0,0,0.150793 -9373,5410:478,-108,-47,0,0,0.14809 -9374,5410:477,-107,-47,0,0,0.145338 -9375,5410:476,-106,-47,0,0,0.144586 -9376,5410:475,-105,-47,0,0,0.144472 -9377,5410:374,-104,-47,0,0,0.143409 -9378,5410:373,-103,-47,0,0,0.144409 -9379,5410:372,-102,-47,0,0,0.145184 -9380,5410:371,-101,-47,0,0,0.14599 -9381,5410:370,-100,-47,0,0,0.144294 -9382,5409:479,-99,-47,0,0,0.143118 -9383,5409:478,-98,-47,0,0,0.142678 -9384,5409:477,-97,-47,0,0,0.142026 -9385,5409:476,-96,-47,0,0,0.140084 -9386,5409:475,-95,-47,0,0,0.140171 -9387,5409:374,-94,-47,0,0,0.141813 -9388,5409:373,-93,-47,0,0,0.142603 -9389,5409:372,-92,-47,0,0,0.142314 -9390,5409:371,-91,-47,0,0,0.141189 -9391,5409:370,-90,-47,0,0,0.14165 -9392,5408:479,-89,-47,0,0,0.142766 -9393,5408:478,-88,-47,0,0,0.142854 -9394,5408:477,-87,-47,0,0,0.141801 -9395,5408:476,-86,-47,0,0,0.141114 -9396,5408:475,-85,-47,0,0,0.141102 -9397,5408:374,-84,-47,0,0,0.141164 -9398,5408:373,-83,-47,0,0,0.142741 -9399,5408:372,-82,-47,0,0,0.143712 -9400,5408:371,-81,-47,0,0,0.142026 -9401,5408:370,-80,-47,0,0,0.143522 -9402,5407:479,-79,-47,0,0,0.146079 -9403,5407:478,-78,-47,0,0,0.145555 -9404,5407:477,-77,-47,0,0,0.143762 -9405,5407:476,-76,-47,0,0,0.145108 -9406,5407:475,-75,-47,0,0,0.146529 -9407,5407:374,-74,-47,0,0,0.150333 -9408,5407:373,-73,-47,0,0,0.146966 -9409,5407:372,-72,-47,0,0,0.143762 -9410,5407:371,-71,-47,0,0,0.145044 -9411,5407:370,-70,-47,0,0,0.156959 -9412,5406:479,-69,-47,0,0,0.161359 -9413,5406:478,-68,-47,0,0,0.16186 -9414,5406:477,-67,-47,0,0,0.157941 -9415,5406:476,-66,-47,0,0,0.140704 -9416,5406:475,-65,-47,0,0,0.125982 -9417,5406:374,-64,-47,0,0,0.125666 -9418,5406:373,-63,-47,0,0,0.128895 -9419,5406:372,-62,-47,0,0,0.125395 -9420,5406:371,-61,-47,0,0,0.127586 -9421,5406:370,-60,-47,0,0,0.130986 -9422,5405:479,-59,-47,0,0,0.130612 -9423,5405:478,-58,-47,0,0,0.131103 -9424,5405:477,-57,-47,0,0,0.127529 -9425,5405:476,-56,-47,0,0,0.121099 -9426,5405:475,-55,-47,0,0,0.104856 -9427,5405:374,-54,-47,0,0,0.104981 -9428,5405:373,-53,-47,0,0,0.116888 -9429,5405:372,-52,-47,0,0,0.114919 -9430,5405:371,-51,-47,0,0,0.107518 -9431,5405:370,-50,-47,0,0,0.113072 -9432,5404:479,-49,-47,0,0,0.113113 -9433,5404:478,-48,-47,0,0,0.10741 -9434,5404:477,-47,-47,0,0,0.109085 -9435,5404:476,-46,-47,0,0,0.114044 -9436,5404:475,-45,-47,0,0,0.112425 -9437,5404:374,-44,-47,0,0,0.111811 -9438,5404:373,-43,-47,0,0,0.107232 -9439,5404:372,-42,-47,0,0,0.103523 -9440,5404:371,-41,-47,0,0,0.101033 -9441,5404:370,-40,-47,0,0,0.0961037 -9442,5403:479,-39,-47,0,0,0.0956585 -9443,5403:478,-38,-47,0,0,0.0922047 -9444,5403:477,-37,-47,0,0,0.0928777 -9445,5403:476,-36,-47,0,0,0.0946236 -9446,5403:475,-35,-47,0,0,0.0967304 -9447,5403:374,-34,-47,0,0,0.0973246 -9448,5403:373,-33,-47,0,0,0.0955341 -9449,5403:372,-32,-47,0,0,0.0917671 -9450,5403:371,-31,-47,0,0,0.0896401 -9451,5403:370,-30,-47,0,0,0.0881921 -9452,5402:479,-29,-47,0,0,0.0866349 -9453,5402:478,-28,-47,0,0,0.0870421 -9454,5402:477,-27,-47,0,0,0.0857367 -9455,5402:476,-26,-47,0,0,0.0867568 -9456,5402:475,-25,-47,0,0,0.0906177 -9457,5402:374,-24,-47,0,0,0.0915533 -9458,5402:373,-23,-47,0,0,0.09784 -9459,5402:372,-22,-47,0,0,0.0958899 -9460,5402:371,-21,-47,0,0,0.0944213 -9461,5402:370,-20,-47,0,0,0.0981308 -9462,5401:479,-19,-47,0,0,0.097958 -9463,5401:478,-18,-47,0,0,0.0963628 -9464,5401:477,-17,-47,0,0,0.0953922 -9465,5401:476,-16,-47,0,0,0.0965598 -9466,5401:475,-15,-47,0,0,0.0945267 -9467,5401:374,-14,-47,0,0,0.0975957 -9468,5401:373,-13,-47,0,0,0.0968203 -9469,5401:372,-12,-47,0,0,0.0980853 -9470,5401:371,-11,-47,0,0,0.0973155 -9471,5401:370,-10,-47,0,0,0.0975142 -9472,5400:479,-9,-47,0,0,0.0994481 -9473,5400:478,-8,-47,0,0,0.0992915 -9474,5400:477,-7,-47,0,0,0.0940968 -9475,5400:476,-6,-47,0,0,0.0899004 -9476,5400:475,-5,-47,0,0,0.0926961 -9477,5400:374,-4,-47,0,0,0.0871483 -9478,5400:373,-3,-47,0,0,0.0850706 -9479,5400:372,-2,-47,0,0,0.0846955 -9480,5400:371,-1,-47,0,0,0.0841872 -9481,3400:371,0,-47,0,0,0.0837131 -9482,3400:371,1,-47,0,0,0.0830925 -9483,3400:372,2,-47,0,0,0.0833432 -9484,3400:373,3,-47,0,0,0.0837208 -9485,3400:374,4,-47,0,0,0.0839576 -9486,3400:475,5,-47,0,0,0.0834453 -9487,3400:476,6,-47,0,0,0.0824373 -9488,3400:477,7,-47,0,0,0.0824997 -9489,3400:478,8,-47,0,0,0.0838233 -9490,3400:479,9,-47,0,0,0.0839735 -9491,3401:370,10,-47,0,0,0.0838865 -9492,3401:371,11,-47,0,0,0.0830534 -9493,3401:372,12,-47,0,0,0.0820883 -9494,3401:373,13,-47,0,0,0.0815402 -9495,3401:374,14,-47,0,0,0.0813481 -9496,3401:475,15,-47,0,0,0.0803708 -9497,3401:476,16,-47,0,0,0.0803328 -9498,3401:477,17,-47,0,0,0.0798484 -9499,3401:478,18,-47,0,0,0.0802645 -9500,3401:479,19,-47,0,0,0.0800751 -9501,3402:370,20,-47,0,0,0.0828735 -9502,3402:371,21,-47,0,0,0.0846955 -9503,3402:372,22,-47,0,0,0.0804696 -9504,3402:373,23,-47,0,0,0.0789844 -9505,3402:374,24,-47,0,0,0.0783144 -9506,3402:475,25,-47,0,0,0.0792915 -9507,3402:476,26,-47,0,0,0.0849028 -9508,3402:477,27,-47,0,0,0.0836737 -9509,3402:478,28,-47,0,0,0.0877634 -9510,3402:479,29,-47,0,0,0.0848149 -9511,3403:370,30,-47,0,0,0.0872219 -9512,3403:371,31,-47,0,0,0.0881838 -9513,3403:372,32,-47,0,0,0.0912717 -9514,3403:373,33,-47,0,0,0.0912717 -9515,3403:374,34,-47,0,0,0.0904737 -9516,3403:475,35,-47,0,0,0.0900519 -9517,3403:476,36,-47,0,0,0.0862696 -9518,3403:477,37,-47,0,0,0.091212 -9519,3403:478,38,-47,0,0,0.0901866 -9520,3403:479,39,-47,0,0,0.0912632 -9521,3404:370,40,-47,0,0,0.0938168 -9522,3404:371,41,-47,0,0,0.0902881 -9523,3404:372,42,-47,0,0,0.0918785 -9524,3404:373,43,-47,0,0,0.0910587 -9525,3404:374,44,-47,0,0,0.0913485 -9526,3404:475,45,-47,0,0,0.0927826 -9527,3404:476,46,-47,0,0,0.0896151 -9528,3404:477,47,-47,0,0,0.0881507 -9529,3404:478,48,-47,0,0,0.0906769 -9530,3404:479,49,-47,0,0,0.0913058 -9531,3405:370,50,-47,0,0,0.0906345 -9532,3405:371,51,-47,0,0,0.0897912 -9533,3405:372,52,-47,0,0,0.0900183 -9534,3405:373,53,-47,0,0,0.0945618 -9535,3405:374,54,-47,0,0,0.0967663 -9536,3405:475,55,-47,0,0,0.0914594 -9537,3405:476,56,-47,0,0,0.0893889 -9538,3405:477,57,-47,0,0,0.0963718 -9539,3405:478,58,-47,0,0,0.0941056 -9540,3405:479,59,-47,0,0,0.0939392 -9541,3406:370,60,-47,0,0,0.0948791 -9542,3406:371,61,-47,0,0,0.0966228 -9543,3406:372,62,-47,0,0,0.0989063 -9544,3406:373,63,-47,0,0,0.0958007 -9545,3406:374,64,-47,0,0,0.0970629 -9546,3406:475,65,-47,0,0,0.101734 -9547,3406:476,66,-47,0,0,0.0994848 -9548,3406:477,67,-47,0,0,0.096345 -9549,3406:478,68,-47,0,0,0.0970178 -9550,3406:479,69,-47,0,0,0.0970901 -9551,3407:370,70,-47,0,0,0.097958 -9552,3407:371,71,-47,0,0,0.0969009 -9553,3407:372,72,-47,0,0,0.0958273 -9554,3407:374,74,-47,0,0,0.0941142 -9555,3407:475,75,-47,0,0,0.0928777 -9556,3407:476,76,-47,0,0,0.0919813 -9557,3407:477,77,-47,0,0,0.086213 -9558,3407:478,78,-47,0,0,0.0856078 -9559,3407:479,79,-47,0,0,0.0877388 -9560,3408:370,80,-47,0,0,0.0882498 -9561,3408:371,81,-47,0,0,0.0952502 -9562,3408:372,82,-47,0,0,0.10136 -9563,3408:373,83,-47,0,0,0.105049 -9564,3408:374,84,-47,0,0,0.1056 -9565,3408:475,85,-47,0,0,0.106233 -9566,3408:476,86,-47,0,0,0.105834 -9567,3408:477,87,-47,0,0,0.106448 -9568,3408:478,88,-47,0,0,0.109305 -9569,3408:479,89,-47,0,0,0.10825 -9570,3409:370,90,-47,0,0,0.103275 -9571,3409:371,91,-47,0,0,0.102007 -9572,3409:372,92,-47,0,0,0.101697 -9573,3409:373,93,-47,0,0,0.101716 -9574,3409:374,94,-47,0,0,0.101491 -9575,3409:475,95,-47,0,0,0.109907 -9576,3409:476,96,-47,0,0,0.11225 -9577,3409:477,97,-47,0,0,0.110957 -9578,3409:478,98,-47,0,0,0.106067 -9579,3409:479,99,-47,0,0,0.107026 -9580,3410:370,100,-47,0,0,0.106262 -9581,3410:371,101,-47,0,0,0.102848 -9582,3410:372,102,-47,0,0,0.0954986 -9583,3410:373,103,-47,0,0,0.0957918 -9584,3410:374,104,-47,0,0,0.0975866 -9585,3410:475,105,-47,0,0,0.0970901 -9586,3410:476,106,-47,0,0,0.102111 -9587,3410:477,107,-47,0,0,0.104307 -9588,3410:478,108,-47,0,0,0.103676 -9589,3410:479,109,-47,0,0,0.104039 -9590,3411:370,110,-47,0,0,0.104115 -9591,3411:371,111,-47,0,0,0.112219 -9592,3411:372,112,-47,0,0,0.115369 -9593,3411:373,113,-47,0,0,0.123848 -9594,3411:374,114,-47,0,0,0.114585 -9595,3411:475,115,-47,0,0,0.114815 -9596,3411:476,116,-47,0,0,0.115516 -9597,3411:477,117,-47,0,0,0.111617 -9598,3411:478,118,-47,0,0,0.11121 -9599,3411:479,119,-47,0,0,0.111495 -9600,3412:370,120,-47,0,0,0.111995 -9601,3412:371,121,-47,0,0,0.110926 -9602,3412:372,122,-47,0,0,0.113598 -9603,3412:373,123,-47,0,0,0.114065 -9604,3412:374,124,-47,0,0,0.113692 -9605,3412:475,125,-47,0,0,0.117728 -9606,3412:476,126,-47,0,0,0.117654 -9607,3412:477,127,-47,0,0,0.116095 -9608,3412:478,128,-47,0,0,0.11909 -9609,3412:479,129,-47,0,0,0.123871 -9610,3413:370,130,-47,0,0,0.121757 -9611,3413:371,131,-47,0,0,0.118177 -9612,3413:372,132,-47,0,0,0.11639 -9613,3413:373,133,-47,0,0,0.117792 -9614,3413:374,134,-47,0,0,0.118552 -9615,3413:475,135,-47,0,0,0.119392 -9616,3413:476,136,-47,0,0,0.121647 -9617,3413:477,137,-47,0,0,0.118671 -9618,3413:478,138,-47,0,0,0.114585 -9619,3413:479,139,-47,0,0,0.117005 -9620,3414:370,140,-47,0,0,0.128492 -9621,3414:371,141,-47,0,0,0.133248 -9622,3414:372,142,-47,0,0,0.129531 -9623,3414:373,143,-47,0,0,0.124351 -9624,3414:374,144,-47,0,0,0.119058 -9625,3414:475,145,-47,0,0,0.117005 -9626,3414:476,146,-47,0,0,0.114335 -9627,3414:477,147,-47,0,0,0.108071 -9628,3414:478,148,-47,0,0,0.0977676 -9629,3414:479,149,-47,0,0,0.096345 -9630,3415:370,150,-47,0,0,0.12908 -9631,3415:371,151,-47,0,0,0.123871 -9632,3415:372,152,-47,0,0,0.112774 -9633,3415:373,153,-47,0,0,0.116285 -9634,3415:374,154,-47,0,0,0.126084 -9635,3415:475,155,-47,0,0,0.127517 -9636,3415:476,156,-47,0,0,0.140233 -9637,3415:477,157,-47,0,0,0.138568 -9638,3415:478,158,-47,0,0,0.140047 -9639,3415:479,159,-47,0,0,0.130659 -9640,3416:370,160,-47,0,0,0.125091 -9641,3416:371,161,-47,0,0,0.129647 -9642,3416:372,162,-47,0,0,0.135591 -9643,3416:373,163,-47,0,0,0.139973 -9644,3416:374,164,-47,0,0,0.144726 -9645,3416:475,165,-47,0,0,0.142653 -9646,3416:476,166,-47,0,0,0.147211 -9647,3416:477,167,-47,0,0,0.149052 -9648,3416:478,168,-47,0,0,0.148038 -9649,3416:479,169,-47,0,0,0.147663 -9650,3417:370,170,-47,0,0,0.145402 -9651,3417:371,171,-47,0,0,0.142553 -9652,3417:372,172,-47,0,0,0.1459 -9653,3417:373,173,-47,0,0,0.147327 -9654,3417:374,174,-47,0,0,0.151057 -9655,3417:475,175,-47,0,0,0.155821 -9656,3417:476,176,-47,0,0,0.159257 -9657,3417:477,177,-47,0,0,0.155983 -9658,3417:478,178,-47,0,0,0.147637 -9659,3417:479,179,-47,0,0,0.144028 -9660,3418:370,180,-47,0,0,0.140753 -9661,5418:360,-180,-46,0,0,0.16717 -9662,5417:469,-179,-46,0,0,0.165815 -9663,5417:468,-178,-46,0,0,0.163962 -9664,5417:467,-177,-46,0,0,0.163498 -9665,5417:466,-176,-46,0,0,0.161847 -9666,5417:465,-175,-46,0,0,0.161512 -9667,5417:364,-174,-46,0,0,0.163498 -9668,5417:363,-173,-46,0,0,0.159629 -9669,5417:362,-172,-46,0,0,0.152911 -9670,5417:361,-171,-46,0,0,0.15327 -9671,5417:360,-170,-46,0,0,0.155416 -9672,5416:469,-169,-46,0,0,0.152392 -9673,5416:468,-168,-46,0,0,0.150425 -9674,5416:467,-167,-46,0,0,0.151823 -9675,5416:466,-166,-46,0,0,0.147069 -9676,5416:465,-165,-46,0,0,0.152286 -9677,5416:364,-164,-46,0,0,0.154461 -9678,5416:363,-163,-46,0,0,0.155321 -9679,5416:362,-162,-46,0,0,0.152286 -9680,5416:361,-161,-46,0,0,0.146233 -9681,5416:360,-160,-46,0,0,0.14507 -9682,5415:469,-159,-46,0,0,0.152924 -9683,5415:468,-158,-46,0,0,0.158255 -9684,5415:467,-157,-46,0,0,0.162335 -9685,5415:466,-156,-46,0,0,0.155699 -9686,5415:465,-155,-46,0,0,0.149691 -9687,5415:364,-154,-46,0,0,0.152366 -9688,5415:363,-153,-46,0,0,0.151413 -9689,5415:362,-152,-46,0,0,0.141376 -9690,5415:361,-151,-46,0,0,0.150517 -9691,5415:360,-150,-46,0,0,0.166057 -9692,5414:469,-149,-46,0,0,0.160319 -9693,5414:468,-148,-46,0,0,0.151307 -9694,5414:467,-147,-46,0,0,0.12656 -9695,5414:466,-146,-46,0,0,0.138372 -9696,5414:465,-145,-46,0,0,0.160236 -9697,5414:364,-144,-46,0,0,0.162433 -9698,5414:363,-143,-46,0,0,0.176213 -9699,5414:362,-142,-46,0,0,0.175929 -9700,5414:361,-141,-46,0,0,0.15923 -9701,5414:360,-140,-46,0,0,0.160832 -9702,5413:469,-139,-46,0,0,0.165177 -9703,5413:468,-138,-46,0,0,0.160776 -9704,5413:467,-137,-46,0,0,0.154917 -9705,5413:466,-136,-46,0,0,0.14857 -9706,5413:465,-135,-46,0,0,0.148908 -9707,5413:364,-134,-46,0,0,0.153871 -9708,5413:363,-133,-46,0,0,0.154998 -9709,5413:362,-132,-46,0,0,0.156756 -9710,5413:361,-131,-46,0,0,0.1719 -9711,5413:360,-130,-46,0,0,0.187491 -9712,5412:469,-129,-46,0,0,0.183363 -9713,5412:468,-128,-46,0,0,0.180428 -9714,5412:467,-127,-46,0,0,0.180565 -9715,5412:466,-126,-46,0,0,0.177979 -9716,5412:465,-125,-46,0,0,0.17483 -9717,5412:364,-124,-46,0,0,0.173088 -9718,5412:363,-123,-46,0,0,0.16911 -9719,5412:362,-122,-46,0,0,0.16911 -9720,5412:361,-121,-46,0,0,0.170457 -9721,5412:360,-120,-46,0,0,0.16862 -9722,5411:469,-119,-46,0,0,0.163807 -9723,5411:468,-118,-46,0,0,0.160624 -9724,5411:467,-117,-46,0,0,0.163427 -9725,5411:466,-116,-46,0,0,0.162923 -9726,5411:465,-115,-46,0,0,0.157504 -9727,5411:364,-114,-46,0,0,0.156484 -9728,5411:363,-113,-46,0,0,0.159587 -9729,5411:362,-112,-46,0,0,0.161387 -9730,5411:361,-111,-46,0,0,0.157368 -9731,5411:360,-110,-46,0,0,0.15347 -9732,5410:469,-109,-46,0,0,0.152977 -9733,5410:468,-108,-46,0,0,0.150688 -9734,5410:467,-107,-46,0,0,0.148727 -9735,5410:466,-106,-46,0,0,0.147146 -9736,5410:465,-105,-46,0,0,0.146992 -9737,5410:364,-104,-46,0,0,0.147624 -9738,5410:363,-103,-46,0,0,0.148311 -9739,5410:362,-102,-46,0,0,0.148804 -9740,5410:361,-101,-46,0,0,0.148376 -9741,5410:360,-100,-46,0,0,0.147133 -9742,5409:469,-99,-46,0,0,0.144955 -9743,5409:468,-98,-46,0,0,0.145287 -9744,5409:467,-97,-46,0,0,0.146131 -9745,5409:466,-96,-46,0,0,0.144396 -9746,5409:465,-95,-46,0,0,0.144612 -9747,5409:364,-94,-46,0,0,0.148077 -9748,5409:363,-93,-46,0,0,0.146966 -9749,5409:362,-92,-46,0,0,0.145312 -9750,5409:361,-91,-46,0,0,0.145389 -9751,5409:360,-90,-46,0,0,0.146221 -9752,5408:469,-89,-46,0,0,0.145555 -9753,5408:468,-88,-46,0,0,0.146593 -9754,5408:467,-87,-46,0,0,0.146464 -9755,5408:466,-86,-46,0,0,0.145746 -9756,5408:465,-85,-46,0,0,0.146015 -9757,5408:364,-84,-46,0,0,0.145402 -9758,5408:363,-83,-46,0,0,0.146426 -9759,5408:362,-82,-46,0,0,0.146979 -9760,5408:361,-81,-46,0,0,0.144828 -9761,5408:360,-80,-46,0,0,0.145414 -9762,5407:469,-79,-46,0,0,0.148103 -9763,5407:468,-78,-46,0,0,0.153097 -9764,5407:467,-77,-46,0,0,0.14796 -9765,5407:466,-76,-46,0,0,0.14822 -9766,5407:465,-75,-46,0,0,0.154662 -9767,5407:364,-74,-46,0,0,0.155807 -9768,5407:363,-73,-46,0,0,0.154193 -9769,5407:362,-72,-46,0,0,0.157668 -9770,5407:361,-71,-46,0,0,0.163765 -9771,5407:360,-70,-46,0,0,0.171973 -9772,5406:468,-68,-46,0,0,0.176198 -9773,5406:467,-67,-46,0,0,0.176093 -9774,5406:466,-66,-46,0,0,0.154541 -9775,5406:465,-65,-46,0,0,0.143876 -9776,5406:364,-64,-46,0,0,0.137359 -9777,5406:363,-63,-46,0,0,0.133094 -9778,5406:362,-62,-46,0,0,0.131419 -9779,5406:361,-61,-46,0,0,0.132869 -9780,5406:360,-60,-46,0,0,0.134595 -9781,5405:469,-59,-46,0,0,0.134702 -9782,5405:468,-58,-46,0,0,0.136013 -9783,5405:467,-57,-46,0,0,0.137395 -9784,5405:466,-56,-46,0,0,0.13617 -9785,5405:465,-55,-46,0,0,0.132325 -9786,5405:364,-54,-46,0,0,0.123581 -9787,5405:363,-53,-46,0,0,0.126481 -9788,5405:362,-52,-46,0,0,0.112445 -9789,5405:361,-51,-46,0,0,0.114836 -9790,5405:360,-50,-46,0,0,0.114658 -9791,5404:469,-49,-46,0,0,0.111434 -9792,5404:468,-48,-46,0,0,0.108986 -9793,5404:467,-47,-46,0,0,0.116116 -9794,5404:466,-46,-46,0,0,0.114366 -9795,5404:465,-45,-46,0,0,0.111048 -9796,5404:364,-44,-46,0,0,0.11035 -9797,5404:363,-43,-46,0,0,0.109435 -9798,5404:362,-42,-46,0,0,0.108667 -9799,5404:361,-41,-46,0,0,0.1038 -9800,5404:360,-40,-46,0,0,0.0988789 -9801,5403:469,-39,-46,0,0,0.094694 -9802,5403:468,-38,-46,0,0,0.0965869 -9803,5403:467,-37,-46,0,0,0.102299 -9804,5403:466,-36,-46,0,0,0.103428 -9805,5403:465,-35,-46,0,0,0.102309 -9806,5403:364,-34,-46,0,0,0.100335 -9807,5403:363,-33,-46,0,0,0.0946763 -9808,5403:362,-32,-46,0,0,0.0932593 -9809,5403:361,-31,-46,0,0,0.0918614 -9810,5403:360,-30,-46,0,0,0.0907279 -9811,5402:469,-29,-46,0,0,0.088606 -9812,5402:468,-28,-46,0,0,0.0876728 -9813,5402:467,-27,-46,0,0,0.0886143 -9814,5402:466,-26,-46,0,0,0.0957117 -9815,5402:465,-25,-46,0,0,0.100344 -9816,5402:364,-24,-46,0,0,0.0997796 -9817,5402:363,-23,-46,0,0,0.0989429 -9818,5402:362,-22,-46,0,0,0.0968112 -9819,5402:361,-21,-46,0,0,0.09718 -9820,5402:360,-20,-46,0,0,0.0996597 -9821,5401:469,-19,-46,0,0,0.101612 -9822,5401:468,-18,-46,0,0,0.103161 -9823,5401:467,-17,-46,0,0,0.102819 -9824,5401:466,-16,-46,0,0,0.104586 -9825,5401:465,-15,-46,0,0,0.100827 -9826,5401:364,-14,-46,0,0,0.100827 -9827,5401:363,-13,-46,0,0,0.103209 -9828,5401:362,-12,-46,0,0,0.102441 -9829,5401:361,-11,-46,0,0,0.100446 -9830,5401:360,-10,-46,0,0,0.103905 -9831,5400:469,-9,-46,0,0,0.106487 -9832,5400:468,-8,-46,0,0,0.103104 -9833,5400:467,-7,-46,0,0,0.0957828 -9834,5400:466,-6,-46,0,0,0.0961664 -9835,5400:465,-5,-46,0,0,0.0993285 -9836,5400:364,-4,-46,0,0,0.0965062 -9837,5400:363,-3,-46,0,0,0.0940092 -9838,5400:362,-2,-46,0,0,0.0922821 -9839,5400:361,-1,-46,0,0,0.0915361 -9840,3400:361,0,-46,0,0,0.0894224 -9841,3400:361,1,-46,0,0,0.0850625 -9842,3400:362,2,-46,0,0,0.0847354 -9843,3400:363,3,-46,0,0,0.0876728 -9844,3400:364,4,-46,0,0,0.0872137 -9845,3400:465,5,-46,0,0,0.0853428 -9846,3400:466,6,-46,0,0,0.0845522 -9847,3400:467,7,-46,0,0,0.0840447 -9848,3400:468,8,-46,0,0,0.0836893 -9849,3400:469,9,-46,0,0,0.0829908 -9850,3401:360,10,-46,0,0,0.0831238 -9851,3401:361,11,-46,0,0,0.0837288 -9852,3401:362,12,-46,0,0,0.0828814 -9853,3401:363,13,-46,0,0,0.0825151 -9854,3401:364,14,-46,0,0,0.0820727 -9855,3401:465,15,-46,0,0,0.0819491 -9856,3401:466,16,-46,0,0,0.0823209 -9857,3401:467,17,-46,0,0,0.0838549 -9858,3401:468,18,-46,0,0,0.0849667 -9859,3401:469,19,-46,0,0,0.0855678 -9860,3402:360,20,-46,0,0,0.0858093 -9861,3402:361,21,-46,0,0,0.0856883 -9862,3402:362,22,-46,0,0,0.0834926 -9863,3402:363,23,-46,0,0,0.0829283 -9864,3402:364,24,-46,0,0,0.0834453 -9865,3402:465,25,-46,0,0,0.0871892 -9866,3402:466,26,-46,0,0,0.0888387 -9867,3402:467,27,-46,0,0,0.0887306 -9868,3402:468,28,-46,0,0,0.0872794 -9869,3402:469,29,-46,0,0,0.0843616 -9870,3403:360,30,-46,0,0,0.0857527 -9871,3403:361,31,-46,0,0,0.0882168 -9872,3403:362,32,-46,0,0,0.0884567 -9873,3403:363,33,-46,0,0,0.0907618 -9874,3403:364,34,-46,0,0,0.0913058 -9875,3403:465,35,-46,0,0,0.0932593 -9876,3403:466,36,-46,0,0,0.0876728 -9877,3403:467,37,-46,0,0,0.0916472 -9878,3403:468,38,-46,0,0,0.0962378 -9879,3403:469,39,-46,0,0,0.0952416 -9880,3404:360,40,-46,0,0,0.0957652 -9881,3404:361,41,-46,0,0,0.0946325 -9882,3404:362,42,-46,0,0,0.0932593 -9883,3404:363,43,-46,0,0,0.0938517 -9884,3404:364,44,-46,0,0,0.0941407 -9885,3404:465,45,-46,0,0,0.0942546 -11940,5402:103,-23,-40,0,0,0.14048 -9886,3404:466,46,-46,0,0,0.0934594 -9887,3404:467,47,-46,0,0,0.092489 -9888,3404:468,48,-46,0,0,0.0924975 -9889,3404:469,49,-46,0,0,0.0926357 -9890,3405:360,50,-46,0,0,0.0938256 -9891,3405:361,51,-46,0,0,0.0945884 -9892,3405:362,52,-46,0,0,0.0947203 -9893,3405:363,53,-46,0,0,0.0966854 -9894,3405:364,54,-46,0,0,0.099669 -9895,3405:465,55,-46,0,0,0.0957206 -9896,3405:466,56,-46,0,0,0.0959967 -9897,3405:467,57,-46,0,0,0.0987965 -9898,3405:468,58,-46,0,0,0.0982763 -9899,3405:469,59,-46,0,0,0.0951088 -9900,3406:360,60,-46,0,0,0.0953389 -9901,3406:361,61,-46,0,0,0.0961931 -9902,3406:362,62,-46,0,0,0.0970178 -9903,3406:363,63,-46,0,0,0.100697 -9904,3406:364,64,-46,0,0,0.102696 -9905,3406:465,65,-46,0,0,0.102791 -9906,3406:466,66,-46,0,0,0.101622 -9907,3406:467,67,-46,0,0,0.101697 -9908,3406:468,68,-46,0,0,0.102819 -9909,3406:469,69,-46,0,0,0.102649 -9910,3407:360,70,-46,0,0,0.101491 -9911,3407:361,71,-46,0,0,0.0997613 -9912,3407:362,72,-46,0,0,0.0990346 -9913,3407:364,74,-46,0,0,0.0988331 -9914,3407:465,75,-46,0,0,0.0979763 -9915,3407:466,76,-46,0,0,0.0978763 -9916,3407:467,77,-46,0,0,0.0971712 -9917,3407:468,78,-46,0,0,0.0940354 -9918,3407:469,79,-46,0,0,0.0864886 -9919,3408:360,80,-46,0,0,0.091425 -9920,3408:361,81,-46,0,0,0.094123 -9921,3408:362,82,-46,0,0,0.101378 -9922,3408:363,83,-46,0,0,0.0988697 -9923,3408:364,84,-46,0,0,0.0974329 -9924,3408:465,85,-46,0,0,0.111068 -9925,3408:466,86,-46,0,0,0.110138 -9926,3408:467,87,-46,0,0,0.107774 -9927,3408:468,88,-46,0,0,0.110007 -9928,3408:469,89,-46,0,0,0.111862 -9929,3409:360,90,-46,0,0,0.109275 -9930,3409:361,91,-46,0,0,0.108398 -9931,3409:362,92,-46,0,0,0.109857 -9932,3409:363,93,-46,0,0,0.115674 -9933,3409:364,94,-46,0,0,0.109375 -9934,3409:465,95,-46,0,0,0.107695 -9935,3409:466,96,-46,0,0,0.112199 -9936,3409:467,97,-46,0,0,0.111302 -9937,3409:468,98,-46,0,0,0.110038 -9938,3409:469,99,-46,0,0,0.107163 -9939,3410:360,100,-46,0,0,0.101612 -9940,3410:361,101,-46,0,0,0.101088 -9941,3410:362,102,-46,0,0,0.0992365 -9942,3410:363,103,-46,0,0,0.0978946 -9943,3410:364,104,-46,0,0,0.0960144 -9944,3410:465,105,-46,0,0,0.100474 -9945,3410:466,106,-46,0,0,0.106741 -9946,3410:467,107,-46,0,0,0.108896 -9947,3410:468,108,-46,0,0,0.106732 -9948,3410:469,109,-46,0,0,0.104962 -9949,3411:360,110,-46,0,0,0.106048 -9950,3411:361,111,-46,0,0,0.111119 -9951,3411:362,112,-46,0,0,0.111648 -9952,3411:363,113,-46,0,0,0.117068 -9953,3411:364,114,-46,0,0,0.123503 -9954,3411:465,115,-46,0,0,0.118167 -9955,3411:466,116,-46,0,0,0.116158 -9956,3411:467,117,-46,0,0,0.117377 -9957,3411:468,118,-46,0,0,0.118649 -9958,3411:469,119,-46,0,0,0.117079 -9959,3412:360,120,-46,0,0,0.119923 -9960,3412:361,121,-46,0,0,0.116941 -9961,3412:362,122,-46,0,0,0.111444 -9962,3412:363,123,-46,0,0,0.111831 -9963,3412:364,124,-46,0,0,0.117185 -9964,3412:465,125,-46,0,0,0.117963 -9965,3412:466,126,-46,0,0,0.120205 -9966,3412:467,127,-46,0,0,0.123882 -9967,3412:468,128,-46,0,0,0.127494 -9968,3412:469,129,-46,0,0,0.128113 -9969,3413:360,130,-46,0,0,0.128067 -9970,3413:361,131,-46,0,0,0.125722 -9971,3413:362,132,-46,0,0,0.120728 -9972,3413:363,133,-46,0,0,0.121746 -9973,3413:364,134,-46,0,0,0.123926 -9974,3413:465,135,-46,0,0,0.123459 -9975,3413:466,136,-46,0,0,0.122738 -9976,3413:467,137,-46,0,0,0.124597 -9977,3413:468,138,-46,0,0,0.122473 -9978,3413:469,139,-46,0,0,0.125316 -9979,3414:360,140,-46,0,0,0.136812 -9980,3414:361,141,-46,0,0,0.13523 -9981,3414:362,142,-46,0,0,0.131701 -9982,3414:363,143,-46,0,0,0.128147 -9983,3414:364,144,-46,0,0,0.118467 -9984,3414:465,145,-46,0,0,0.113661 -9985,3414:466,146,-46,0,0,0.111515 -9986,3414:467,147,-46,0,0,0.107626 -9987,3414:468,148,-46,0,0,0.118467 -9988,3414:469,149,-46,0,0,0.14977 -9989,3415:360,150,-46,0,0,0.150531 -9990,3415:361,151,-46,0,0,0.13176 -9991,3415:362,152,-46,0,0,0.136013 -9992,3415:363,153,-46,0,0,0.152339 -9993,3415:364,154,-46,0,0,0.151452 -9994,3415:465,155,-46,0,0,0.14599 -9995,3415:466,156,-46,0,0,0.154487 -9996,3415:467,157,-46,0,0,0.147379 -9997,3415:468,158,-46,0,0,0.144675 -9998,3415:469,159,-46,0,0,0.145606 -9999,3416:360,160,-46,0,0,0.126742 -10000,3416:361,161,-46,0,0,0.146015 -10001,3416:362,162,-46,0,0,0.161874 -10002,3416:363,163,-46,0,0,0.151479 -10003,3416:364,164,-46,0,0,0.142917 -10004,3416:465,165,-46,0,0,0.152379 -10005,3416:466,166,-46,0,0,0.173662 -10006,3416:467,167,-46,0,0,0.180109 -10007,3416:468,168,-46,0,0,0.179533 -10008,3416:469,169,-46,0,0,0.17443 -10009,3417:360,170,-46,0,0,0.160084 -10010,3417:361,171,-46,0,0,0.150964 -10011,3417:362,172,-46,0,0,0.146272 -10012,3417:363,173,-46,0,0,0.148233 -10013,3417:364,174,-46,0,0,0.148831 -10014,3417:465,175,-46,0,0,0.152167 -10015,3417:466,176,-46,0,0,0.158406 -10016,3417:467,177,-46,0,0,0.157777 -10017,3417:468,178,-46,0,0,0.165064 -10018,3417:469,179,-46,0,0,0.166969 -10019,3418:360,180,-46,0,0,0.16717 -10020,5418:350,-180,-45,0,0,0.166656 -10021,5417:459,-179,-45,0,0,0.168836 -10022,5417:458,-178,-45,0,0,0.172031 -10023,5417:457,-177,-45,0,0,0.174637 -10024,5417:456,-176,-45,0,0,0.175795 -10025,5417:455,-175,-45,0,0,0.172735 -10026,5417:354,-174,-45,0,0,0.169891 -10027,5417:353,-173,-45,0,0,0.163231 -10028,5417:352,-172,-45,0,0,0.155753 -10029,5417:351,-171,-45,0,0,0.155295 -10030,5417:350,-170,-45,0,0,0.159147 -10031,5416:459,-169,-45,0,0,0.160915 -10032,5416:458,-168,-45,0,0,0.162209 -10033,5416:457,-167,-45,0,0,0.154326 -10034,5416:456,-166,-45,0,0,0.156186 -10035,5416:455,-165,-45,0,0,0.157927 -10036,5416:354,-164,-45,0,0,0.158201 -10037,5416:353,-163,-45,0,0,0.16072 -10038,5416:352,-162,-45,0,0,0.166556 -10039,5416:351,-161,-45,0,0,0.162824 -10040,5416:350,-160,-45,0,0,0.15551 -10041,5415:459,-159,-45,0,0,0.158379 -10042,5415:458,-158,-45,0,0,0.161596 -10043,5415:457,-157,-45,0,0,0.165517 -10044,5415:456,-156,-45,0,0,0.165531 -10045,5415:455,-155,-45,0,0,0.166541 -10046,5415:354,-154,-45,0,0,0.160568 -10047,5415:353,-153,-45,0,0,0.154434 -10048,5415:352,-152,-45,0,0,0.155025 -10049,5415:351,-151,-45,0,0,0.160679 -10050,5415:350,-150,-45,0,0,0.174652 -10051,5414:459,-149,-45,0,0,0.173677 -10052,5414:458,-148,-45,0,0,0.168763 -10053,5414:457,-147,-45,0,0,0.170471 -10054,5414:456,-146,-45,0,0,0.184272 -10055,5414:455,-145,-45,0,0,0.184257 -10056,5414:354,-144,-45,0,0,0.186756 -10057,5414:353,-143,-45,0,0,0.185682 -10058,5414:352,-142,-45,0,0,0.187319 -10059,5414:351,-141,-45,0,0,0.157177 -10060,5414:350,-140,-45,0,0,0.175513 -10061,5413:459,-139,-45,0,0,0.172838 -10062,5413:458,-138,-45,0,0,0.16992 -10063,5413:457,-137,-45,0,0,0.16885 -10064,5413:456,-136,-45,0,0,0.165602 -10065,5413:455,-135,-45,0,0,0.161526 -10066,5413:354,-134,-45,0,0,0.158831 -10067,5413:353,-133,-45,0,0,0.159753 -10068,5413:352,-132,-45,0,0,0.172368 -10069,5413:351,-131,-45,0,0,0.193928 -10070,5413:350,-130,-45,0,0,0.187976 -10071,5412:459,-129,-45,0,0,0.18261 -10072,5412:458,-128,-45,0,0,0.182411 -10073,5412:457,-127,-45,0,0,0.17831 -10074,5412:456,-126,-45,0,0,0.177319 -10075,5412:455,-125,-45,0,0,0.176034 -10076,5412:354,-124,-45,0,0,0.17275 -10077,5412:353,-123,-45,0,0,0.168763 -10078,5412:352,-122,-45,0,0,0.169905 -10079,5412:351,-121,-45,0,0,0.167227 -10080,5412:350,-120,-45,0,0,0.165163 -10081,5411:459,-119,-45,0,0,0.164667 -10082,5411:458,-118,-45,0,0,0.165219 -10083,5411:457,-117,-45,0,0,0.166656 -10084,5411:456,-116,-45,0,0,0.165631 -10085,5411:455,-115,-45,0,0,0.164371 -10086,5411:354,-114,-45,0,0,0.164117 -10087,5411:353,-113,-45,0,0,0.163343 -10088,5411:352,-112,-45,0,0,0.160554 -10089,5411:351,-111,-45,0,0,0.157408 -10090,5411:350,-110,-45,0,0,0.157518 -10091,5410:459,-109,-45,0,0,0.156457 -10092,5410:458,-108,-45,0,0,0.154528 -10093,5410:457,-107,-45,0,0,0.153484 -10094,5410:456,-106,-45,0,0,0.153684 -10095,5410:455,-105,-45,0,0,0.155402 -10096,5410:354,-104,-45,0,0,0.154273 -10097,5410:353,-103,-45,0,0,0.152246 -10098,5410:352,-102,-45,0,0,0.152844 -10099,5410:351,-101,-45,0,0,0.150557 -10100,5410:350,-100,-45,0,0,0.152578 -10101,5409:459,-99,-45,0,0,0.154877 -10102,5409:458,-98,-45,0,0,0.151479 -10103,5409:457,-97,-45,0,0,0.149313 -10104,5409:456,-96,-45,0,0,0.149809 -10105,5409:455,-95,-45,0,0,0.150137 -10106,5409:354,-94,-45,0,0,0.151294 -10107,5409:353,-93,-45,0,0,0.14977 -10108,5409:352,-92,-45,0,0,0.149195 -10109,5409:351,-91,-45,0,0,0.150333 -10110,5409:350,-90,-45,0,0,0.150176 -10111,5408:459,-89,-45,0,0,0.150307 -10112,5408:458,-88,-45,0,0,0.151149 -10113,5408:457,-87,-45,0,0,0.151188 -10114,5408:456,-86,-45,0,0,0.152591 -10115,5408:455,-85,-45,0,0,0.151955 -10116,5408:354,-84,-45,0,0,0.150084 -10117,5408:353,-83,-45,0,0,0.15082 -10118,5408:352,-82,-45,0,0,0.149914 -10119,5408:351,-81,-45,0,0,0.149052 -10120,5408:350,-80,-45,0,0,0.150465 -10121,5407:459,-79,-45,0,0,0.151809 -10122,5407:458,-78,-45,0,0,0.158927 -10123,5407:457,-77,-45,0,0,0.155349 -10124,5407:456,-76,-45,0,0,0.154434 -10125,5407:455,-75,-45,0,0,0.158639 -10126,5407:354,-74,-45,0,0,0.164865 -10127,5407:353,-73,-45,0,0,0.173338 -10128,5407:352,-72,-45,0,0,0.181448 -10129,5406:456,-66,-45,0,0,0.184443 -10130,5406:455,-65,-45,0,0,0.160388 -10131,5406:354,-64,-45,0,0,0.153217 -10132,5406:353,-63,-45,0,0,0.152618 -10133,5406:352,-62,-45,0,0,0.15015 -10134,5406:351,-61,-45,0,0,0.147637 -10135,5406:350,-60,-45,0,0,0.149901 -10136,5405:459,-59,-45,0,0,0.154126 -10137,5405:458,-58,-45,0,0,0.154958 -10138,5405:457,-57,-45,0,0,0.154568 -10139,5405:456,-56,-45,0,0,0.149835 -10140,5405:455,-55,-45,0,0,0.142904 -10141,5405:354,-54,-45,0,0,0.136388 -10142,5405:353,-53,-45,0,0,0.134188 -10143,5405:352,-52,-45,0,0,0.133319 -10144,5405:351,-51,-45,0,0,0.127609 -10145,5405:350,-50,-45,0,0,0.122274 -10146,5404:459,-49,-45,0,0,0.118102 -10147,5404:458,-48,-45,0,0,0.120695 -10148,5404:457,-47,-45,0,0,0.116686 -10149,5404:456,-46,-45,0,0,0.114596 -10150,5404:455,-45,-45,0,0,0.113847 -10151,5404:354,-44,-45,0,0,0.113454 -10152,5404:353,-43,-45,0,0,0.110269 -10153,5404:352,-42,-45,0,0,0.108956 -10154,5404:351,-41,-45,0,0,0.108359 -10155,5404:350,-40,-45,0,0,0.107843 -10156,5403:459,-39,-45,0,0,0.112086 -10157,5403:458,-38,-45,0,0,0.106292 -10158,5403:457,-37,-45,0,0,0.110967 -10159,5403:456,-36,-45,0,0,0.107045 -10160,5403:455,-35,-45,0,0,0.100725 -10161,5403:354,-34,-45,0,0,0.0964882 -10162,5403:353,-33,-45,0,0,0.0970901 -10163,5403:352,-32,-45,0,0,0.10564 -10164,5403:351,-31,-45,0,0,0.104962 -10165,5403:350,-30,-45,0,0,0.0949939 -10166,5402:459,-29,-45,0,0,0.0927307 -10167,5402:458,-28,-45,0,0,0.0905922 -10168,5402:457,-27,-45,0,0,0.0931292 -10169,5402:456,-26,-45,0,0,0.097144 -10170,5402:455,-25,-45,0,0,0.0967304 -10171,5402:354,-24,-45,0,0,0.104557 -10172,5402:353,-23,-45,0,0,0.102905 -10173,5402:352,-22,-45,0,0,0.106253 -10174,5402:351,-21,-45,0,0,0.10814 -10175,5402:350,-20,-45,0,0,0.106507 -10176,5401:459,-19,-45,0,0,0.107498 -10177,5401:458,-18,-45,0,0,0.104519 -10178,5401:457,-17,-45,0,0,0.105581 -10179,5401:456,-16,-45,0,0,0.110855 -10180,5401:455,-15,-45,0,0,0.104451 -10181,5401:354,-14,-45,0,0,0.105853 -10182,5401:353,-13,-45,0,0,0.108607 -10183,5401:352,-12,-45,0,0,0.110946 -10184,5401:351,-11,-45,0,0,0.109496 -10185,5401:350,-10,-45,0,0,0.107065 -10186,5400:459,-9,-45,0,0,0.104885 -10187,5400:458,-8,-45,0,0,0.105155 -10188,5400:457,-7,-45,0,0,0.104029 -10189,5400:456,-6,-45,0,0,0.101088 -10190,5400:455,-5,-45,0,0,0.097081 -10191,5400:354,-4,-45,0,0,0.0954897 -10192,5400:353,-3,-45,0,0,0.0936597 -10193,5400:352,-2,-45,0,0,0.0921189 -10194,5400:351,-1,-45,0,0,0.0917757 -10195,3400:351,0,-45,0,0,0.0927048 -10196,3400:351,1,-45,0,0,0.091485 -10197,3400:352,2,-45,0,0,0.0892637 -10198,3400:353,3,-45,0,0,0.0858011 -10199,3400:354,4,-45,0,0,0.0863425 -10200,3400:455,5,-45,0,0,0.0855597 -10201,3400:456,6,-45,0,0,0.0850706 -10202,3400:457,7,-45,0,0,0.084783 -10203,3400:458,8,-45,0,0,0.0844171 -10204,3400:459,9,-45,0,0,0.0843297 -10205,3401:350,10,-45,0,0,0.0840287 -10206,3401:351,11,-45,0,0,0.0836973 -10207,3401:352,12,-45,0,0,0.0849187 -10208,3401:353,13,-45,0,0,0.085407 -10209,3401:354,14,-45,0,0,0.0853509 -10210,3401:455,15,-45,0,0,0.0857689 -10211,3401:456,16,-45,0,0,0.0859865 -10212,3401:457,17,-45,0,0,0.0856964 -10213,3401:458,18,-45,0,0,0.085431 -10214,3401:459,19,-45,0,0,0.0859705 -10215,3402:350,20,-45,0,0,0.0867893 -10216,3402:351,21,-45,0,0,0.0870177 -10217,3402:352,22,-45,0,0,0.0863101 -10218,3402:353,23,-45,0,0,0.0846 -10219,3402:354,24,-45,0,0,0.0861888 -10220,3402:455,25,-45,0,0,0.0869933 -10221,3402:456,26,-45,0,0,0.0857527 -10222,3402:457,27,-45,0,0,0.0887055 -10223,3402:458,28,-45,0,0,0.0881671 -10224,3402:459,29,-45,0,0,0.0906007 -10225,3403:350,30,-45,0,0,0.0954366 -10226,3403:351,31,-45,0,0,0.0976136 -10227,3403:352,32,-45,0,0,0.0972073 -10228,3403:353,33,-45,0,0,0.0917671 -10229,3403:354,34,-45,0,0,0.0933984 -10230,3403:455,35,-45,0,0,0.0957828 -10231,3403:456,36,-45,0,0,0.0940354 -10232,3403:457,37,-45,0,0,0.0968921 -10233,3403:458,38,-45,0,0,0.0993467 -10234,3403:459,39,-45,0,0,0.0960234 -10235,3404:350,40,-45,0,0,0.097072 -10236,3404:351,41,-45,0,0,0.0959075 -10237,3404:352,42,-45,0,0,0.0936684 -10238,3404:353,43,-45,0,0,0.0933201 -10239,3404:354,44,-45,0,0,0.094395 -10240,3404:455,45,-45,0,0,0.0942546 -10241,3404:456,46,-45,0,0,0.0945004 -10242,3404:457,47,-45,0,0,0.0952238 -10243,3404:458,48,-45,0,0,0.0961304 -10244,3404:459,49,-45,0,0,0.0960144 -10245,3405:350,50,-45,0,0,0.0967035 -10246,3405:351,51,-45,0,0,0.0975866 -10247,3405:352,52,-45,0,0,0.097 -10248,3405:353,53,-45,0,0,0.100604 -10249,3405:354,54,-45,0,0,0.102791 -10250,3405:455,55,-45,0,0,0.100409 -10251,3405:456,56,-45,0,0,0.0961217 -10252,3405:457,57,-45,0,0,0.0972612 -10253,3405:458,58,-45,0,0,0.101098 -10254,3405:459,59,-45,0,0,0.101303 -10255,3406:350,60,-45,0,0,0.100865 -10256,3406:351,61,-45,0,0,0.10039 -10257,3406:352,62,-45,0,0,0.0991813 -10258,3406:353,63,-45,0,0,0.10136 -10259,3406:354,64,-45,0,0,0.102139 -10260,3406:455,65,-45,0,0,0.103313 -10261,3406:456,66,-45,0,0,0.104952 -10262,3406:457,67,-45,0,0,0.104952 -10263,3406:458,68,-45,0,0,0.103857 -10264,3406:459,69,-45,0,0,0.103628 -10265,3407:350,70,-45,0,0,0.102394 -10266,3407:351,71,-45,0,0,0.100744 -10267,3407:352,72,-45,0,0,0.0987781 -10268,3407:354,74,-45,0,0,0.0984495 -10269,3407:455,75,-45,0,0,0.0986227 -10270,3407:456,76,-45,0,0,0.0994938 -10271,3407:457,77,-45,0,0,0.0984495 -10272,3407:458,78,-45,0,0,0.0951088 -10273,3407:459,79,-45,0,0,0.0871648 -10274,3408:350,80,-45,0,0,0.092679 -10275,3408:351,81,-45,0,0,0.097108 -10276,3408:352,82,-45,0,0,0.0975957 -10277,3408:353,83,-45,0,0,0.0971531 -10278,3408:354,84,-45,0,0,0.0964346 -10279,3408:455,85,-45,0,0,0.114055 -10280,3408:456,86,-45,0,0,0.111352 -10281,3408:457,87,-45,0,0,0.111964 -10282,3408:458,88,-45,0,0,0.113268 -10283,3408:459,89,-45,0,0,0.122274 -10284,3409:350,90,-45,0,0,0.120957 -10285,3409:351,91,-45,0,0,0.11656 -10286,3409:352,92,-45,0,0,0.115222 -10287,3409:353,93,-45,0,0,0.120075 -10288,3409:354,94,-45,0,0,0.118102 -10289,3409:455,95,-45,0,0,0.116263 -10290,3409:456,96,-45,0,0,0.11334 -10291,3409:457,97,-45,0,0,0.110835 -10292,3409:458,98,-45,0,0,0.106977 -10293,3409:459,99,-45,0,0,0.106399 -10294,3410:350,100,-45,0,0,0.102139 -10295,3410:351,101,-45,0,0,0.102668 -10296,3410:352,102,-45,0,0,0.102791 -10297,3410:353,103,-45,0,0,0.102045 -10298,3410:354,104,-45,0,0,0.0981036 -10299,3410:455,105,-45,0,0,0.103095 -10300,3410:456,106,-45,0,0,0.106379 -10301,3410:457,107,-45,0,0,0.109385 -10302,3410:458,108,-45,0,0,0.111944 -10303,3410:459,109,-45,0,0,0.109736 -10304,3411:350,110,-45,0,0,0.106732 -10305,3411:351,111,-45,0,0,0.111119 -10306,3411:352,112,-45,0,0,0.111078 -10307,3411:353,113,-45,0,0,0.112804 -10308,3411:354,114,-45,0,0,0.12396 -10309,3411:455,115,-45,0,0,0.12481 -10310,3411:456,116,-45,0,0,0.125046 -10311,3411:457,117,-45,0,0,0.130054 -10312,3411:458,118,-45,0,0,0.133331 -10313,3411:459,119,-45,0,0,0.131924 -10314,3412:350,120,-45,0,0,0.122142 -10315,3412:351,121,-45,0,0,0.121405 -10316,3412:352,122,-45,0,0,0.120488 -10317,3412:353,123,-45,0,0,0.124194 -10318,3412:354,124,-45,0,0,0.131783 -10319,3412:455,125,-45,0,0,0.119793 -10320,3412:456,126,-45,0,0,0.124575 -10321,3412:457,127,-45,0,0,0.12605 -10322,3412:458,128,-45,0,0,0.126413 -10323,3412:459,129,-45,0,0,0.129984 -10324,3413:350,130,-45,0,0,0.1301 -10325,3413:351,131,-45,0,0,0.129995 -10326,3413:352,132,-45,0,0,0.125756 -10327,3413:353,133,-45,0,0,0.126538 -10328,3413:354,134,-45,0,0,0.13262 -10329,3413:455,135,-45,0,0,0.13262 -10330,3413:456,136,-45,0,0,0.133938 -10331,3413:457,137,-45,0,0,0.134117 -10332,3413:458,138,-45,0,0,0.129508 -10333,3413:459,139,-45,0,0,0.127529 -10334,3414:350,140,-45,0,0,0.133284 -10335,3414:351,141,-45,0,0,0.136049 -10336,3414:352,142,-45,0,0,0.138704 -10337,3414:353,143,-45,0,0,0.129473 -10338,3414:354,144,-45,0,0,0.116856 -10339,3414:455,145,-45,0,0,0.117696 -10340,3414:456,146,-45,0,0,0.118552 -10341,3414:457,147,-45,0,0,0.129995 -10342,3414:458,148,-45,0,0,0.14567 -10343,3414:459,149,-45,0,0,0.168418 -10344,3415:350,150,-45,0,0,0.161054 -10345,3415:351,151,-45,0,0,0.141538 -10346,3415:352,152,-45,0,0,0.149117 -10347,3415:353,153,-45,0,0,0.156132 -10348,3415:354,154,-45,0,0,0.166271 -10349,3415:455,155,-45,0,0,0.156647 -10350,3415:456,156,-45,0,0,0.158721 -10351,3415:457,157,-45,0,0,0.148194 -10352,3415:458,158,-45,0,0,0.149052 -10353,3415:459,159,-45,0,0,0.151902 -10354,3416:350,160,-45,0,0,0.131384 -10355,3416:351,161,-45,0,0,0.137981 -10356,3416:352,162,-45,0,0,0.150386 -10357,3416:353,163,-45,0,0,0.146644 -10358,3416:354,164,-45,0,0,0.149744 -10359,3416:455,165,-45,0,0,0.172397 -10360,3416:456,166,-45,0,0,0.18517 -10361,3416:457,167,-45,0,0,0.180701 -10362,3416:458,168,-45,0,0,0.179836 -10363,3416:459,169,-45,0,0,0.180276 -10364,3417:350,170,-45,0,0,0.180382 -10365,3417:351,171,-45,0,0,0.177769 -10366,3417:352,172,-45,0,0,0.166598 -10367,3417:353,173,-45,0,0,0.156769 -10368,3417:354,174,-45,0,0,0.150137 -10369,3417:455,175,-45,0,0,0.149156 -10370,3417:456,176,-45,0,0,0.159216 -10371,3417:457,177,-45,0,0,0.157982 -10372,3417:458,178,-45,0,0,0.159243 -10373,3417:459,179,-45,0,0,0.167585 -10374,3418:350,180,-45,0,0,0.166656 -10375,5418:140,-180,-44,0,0,0.167213 -10376,5417:249,-179,-44,0,0,0.170806 -10377,5417:248,-178,-44,0,0,0.17675 -10378,5417:247,-177,-44,0,0,0.180018 -10379,5417:246,-176,-44,0,0,0.179669 -10380,5417:245,-175,-44,0,0,0.17979 -10381,5417:144,-174,-44,0,0,0.188087 -10382,5417:143,-173,-44,0,0,0.187116 -10383,5417:142,-172,-44,0,0,0.183594 -10384,5417:141,-171,-44,0,0,0.176049 -10385,5417:140,-170,-44,0,0,0.167499 -10386,5416:249,-169,-44,0,0,0.172236 -10387,5416:248,-168,-44,0,0,0.172442 -10388,5416:247,-167,-44,0,0,0.161582 -10389,5416:246,-166,-44,0,0,0.15601 -10390,5416:245,-165,-44,0,0,0.157927 -10391,5416:144,-164,-44,0,0,0.158831 -10392,5416:143,-163,-44,0,0,0.15967 -10393,5416:142,-162,-44,0,0,0.167915 -10394,5416:141,-161,-44,0,0,0.170776 -10395,5416:140,-160,-44,0,0,0.167485 -10396,5415:249,-159,-44,0,0,0.174889 -10397,5415:248,-158,-44,0,0,0.179957 -10398,5415:247,-157,-44,0,0,0.166328 -10399,5415:246,-156,-44,0,0,0.170733 -10400,5415:245,-155,-44,0,0,0.177724 -10401,5415:144,-154,-44,0,0,0.19356 -10402,5415:143,-153,-44,0,0,0.193383 -10403,5415:142,-152,-44,0,0,0.1859 -10404,5415:141,-151,-44,0,0,0.17923 -10405,5415:140,-150,-44,0,0,0.171359 -10406,5414:249,-149,-44,0,0,0.171724 -10407,5414:248,-148,-44,0,0,0.175097 -10408,5414:247,-147,-44,0,0,0.184242 -10409,5414:246,-146,-44,0,0,0.188683 -10410,5414:245,-145,-44,0,0,0.181158 -10411,5414:144,-144,-44,0,0,0.178341 -10412,5414:143,-143,-44,0,0,0.175929 -10413,5414:142,-142,-44,0,0,0.1735 -10414,5414:141,-141,-44,0,0,0.184303 -10415,5414:140,-140,-44,0,0,0.182258 -10416,5413:249,-139,-44,0,0,0.179019 -10417,5413:248,-138,-44,0,0,0.179215 -10418,5413:247,-137,-44,0,0,0.185372 -10419,5413:246,-136,-44,0,0,0.188243 -10420,5413:245,-135,-44,0,0,0.190737 -10421,5413:144,-134,-44,0,0,0.193143 -10422,5413:143,-133,-44,0,0,0.196365 -10423,5413:142,-132,-44,0,0,0.199234 -10424,5413:141,-131,-44,0,0,0.198367 -10425,5413:140,-130,-44,0,0,0.19034 -10427,5412:248,-128,-44,0,0,0.183625 -10428,5412:247,-127,-44,0,0,0.181112 -10429,5412:246,-126,-44,0,0,0.181371 -10430,5412:245,-125,-44,0,0,0.181097 -10431,5412:144,-124,-44,0,0,0.179684 -10432,5412:143,-123,-44,0,0,0.177439 -10433,5412:142,-122,-44,0,0,0.175825 -10434,5412:141,-121,-44,0,0,0.17443 -10435,5412:140,-120,-44,0,0,0.175825 -10436,5411:249,-119,-44,0,0,0.176034 -10437,5411:248,-118,-44,0,0,0.174549 -10438,5411:247,-117,-44,0,0,0.170573 -10439,5411:246,-116,-44,0,0,0.168836 -10440,5411:245,-115,-44,0,0,0.17034 -10441,5411:144,-114,-44,0,0,0.168865 -10442,5411:143,-113,-44,0,0,0.165744 -10443,5411:142,-112,-44,0,0,0.162629 -10444,5411:141,-111,-44,0,0,0.162586 -10445,5411:140,-110,-44,0,0,0.161791 -10446,5410:249,-109,-44,0,0,0.161498 -10447,5410:248,-108,-44,0,0,0.162321 -10448,5410:247,-107,-44,0,0,0.159477 -10449,5410:246,-106,-44,0,0,0.159257 -10450,5410:245,-105,-44,0,0,0.161262 -10451,5410:144,-104,-44,0,0,0.158078 -10452,5410:143,-103,-44,0,0,0.157096 -10453,5410:142,-102,-44,0,0,0.159381 -10454,5410:141,-101,-44,0,0,0.15601 -10455,5410:140,-100,-44,0,0,0.157341 -10456,5409:249,-99,-44,0,0,0.158625 -10457,5409:248,-98,-44,0,0,0.156416 -10458,5409:247,-97,-44,0,0,0.155349 -10459,5409:246,-96,-44,0,0,0.15516 -10460,5409:245,-95,-44,0,0,0.155888 -10461,5409:144,-94,-44,0,0,0.15681 -10462,5409:143,-93,-44,0,0,0.156525 -10463,5409:142,-92,-44,0,0,0.155416 -10464,5409:141,-91,-44,0,0,0.154756 -10465,5409:140,-90,-44,0,0,0.156579 -10466,5408:249,-89,-44,0,0,0.157231 -10467,5408:248,-88,-44,0,0,0.155497 -10468,5408:247,-87,-44,0,0,0.156471 -10469,5408:246,-86,-44,0,0,0.156851 -10470,5408:245,-85,-44,0,0,0.155686 -10471,5408:144,-84,-44,0,0,0.155672 -10472,5408:143,-83,-44,0,0,0.15516 -10473,5408:142,-82,-44,0,0,0.154662 -10474,5408:141,-81,-44,0,0,0.155848 -10475,5408:140,-80,-44,0,0,0.155564 -10476,5407:249,-79,-44,0,0,0.157763 -10477,5407:248,-78,-44,0,0,0.162377 -10478,5407:247,-77,-44,0,0,0.160568 -10479,5407:246,-76,-44,0,0,0.158859 -10480,5407:245,-75,-44,0,0,0.163878 -10481,5407:144,-74,-44,0,0,0.179397 -10482,5406:247,-67,-44,0,0,0.171914 -10483,5406:246,-66,-44,0,0,0.162167 -10484,5406:245,-65,-44,0,0,0.157096 -10485,5406:144,-64,-44,0,0,0.150517 -10486,5406:143,-63,-44,0,0,0.152512 -10487,5406:142,-62,-44,0,0,0.150793 -10488,5406:141,-61,-44,0,0,0.15032 -10489,5406:140,-60,-44,0,0,0.152857 -10490,5405:249,-59,-44,0,0,0.153457 -10491,5405:248,-58,-44,0,0,0.150951 -10492,5405:247,-57,-44,0,0,0.14787 -10493,5405:246,-56,-44,0,0,0.143825 -10494,5405:245,-55,-44,0,0,0.141976 -10495,5405:144,-54,-44,0,0,0.141214 -10496,5405:143,-53,-44,0,0,0.141077 -10497,5405:142,-52,-44,0,0,0.140158 -10498,5405:141,-51,-44,0,0,0.137822 -10499,5405:140,-50,-44,0,0,0.13588 -10500,5404:249,-49,-44,0,0,0.130647 -10501,5404:248,-48,-44,0,0,0.122528 -10502,5404:247,-47,-44,0,0,0.120902 -10503,5404:246,-46,-44,0,0,0.118628 -10504,5404:245,-45,-44,0,0,0.112517 -10505,5404:144,-44,-44,0,0,0.111627 -10506,5404:143,-43,-44,0,0,0.112671 -10507,5404:142,-42,-44,0,0,0.111597 -10508,5404:141,-41,-44,0,0,0.111261 -10509,5404:140,-40,-44,0,0,0.109967 -10510,5403:249,-39,-44,0,0,0.108806 -10511,5403:248,-38,-44,0,0,0.107291 -10512,5403:247,-37,-44,0,0,0.103876 -10513,5403:246,-36,-44,0,0,0.101014 -10514,5403:245,-35,-44,0,0,0.0997427 -10515,5403:144,-34,-44,0,0,0.0984495 -10516,5403:143,-33,-44,0,0,0.0959701 -10517,5403:142,-32,-44,0,0,0.101988 -10518,5403:141,-31,-44,0,0,0.111271 -10519,5403:140,-30,-44,0,0,0.112199 -10520,5402:249,-29,-44,0,0,0.111099 -10521,5402:248,-28,-44,0,0,0.108727 -10522,5402:247,-27,-44,0,0,0.104269 -10523,5402:246,-26,-44,0,0,0.101369 -10524,5402:245,-25,-44,0,0,0.105107 -10525,5402:144,-24,-44,0,0,0.111546 -10526,5402:143,-23,-44,0,0,0.106702 -10527,5402:142,-22,-44,0,0,0.105853 -10528,5402:141,-21,-44,0,0,0.110159 -10529,5402:140,-20,-44,0,0,0.112025 -10530,5401:249,-19,-44,0,0,0.108527 -10531,5401:248,-18,-44,0,0,0.106165 -10532,5401:247,-17,-44,0,0,0.112496 -10533,5401:246,-16,-44,0,0,0.111933 -10534,5401:245,-15,-44,0,0,0.107774 -10535,5401:144,-14,-44,0,0,0.110028 -10536,5401:143,-13,-44,0,0,0.113288 -10537,5401:142,-12,-44,0,0,0.113578 -10538,5401:141,-11,-44,0,0,0.108687 -10539,5401:140,-10,-44,0,0,0.104653 -10540,5400:249,-9,-44,0,0,0.104596 -10541,5400:248,-8,-44,0,0,0.104403 -10542,5400:247,-7,-44,0,0,0.102413 -10543,5400:246,-6,-44,0,0,0.0957828 -10544,5400:245,-5,-44,0,0,0.0934507 -10545,5400:144,-4,-44,0,0,0.0932421 -10546,5400:143,-3,-44,0,0,0.0927913 -10547,5400:142,-2,-44,0,0,0.0913568 -10548,5400:141,-1,-44,0,0,0.0903471 -10549,3400:141,0,-44,0,0,0.0900771 -10550,3400:141,1,-44,0,0,0.0907786 -10551,3400:142,2,-44,0,0,0.0902373 -10552,3400:143,3,-44,0,0,0.0867163 -10553,3400:144,4,-44,0,0,0.0869686 -10554,3400:245,5,-44,0,0,0.0857045 -10555,3400:246,6,-44,0,0,0.0852386 -10556,3400:247,7,-44,0,0,0.0850945 -10557,3400:248,8,-44,0,0,0.0849986 -10558,3400:249,9,-44,0,0,0.0849028 -10559,3401:140,10,-44,0,0,0.0889301 -10560,3401:141,11,-44,0,0,0.0849586 -10561,3401:142,12,-44,0,0,0.0844886 -10562,3401:143,13,-44,0,0,0.0844726 -10563,3401:144,14,-44,0,0,0.0850386 -10564,3401:245,15,-44,0,0,0.0850306 -10565,3401:246,16,-44,0,0,0.0856078 -10566,3401:247,17,-44,0,0,0.085624 -10567,3401:248,18,-44,0,0,0.0861725 -10568,3401:249,19,-44,0,0,0.0869443 -10569,3402:140,20,-44,0,0,0.0878704 -10570,3402:141,21,-44,0,0,0.0883905 -10571,3402:142,22,-44,0,0,0.0881507 -10572,3402:143,23,-44,0,0,0.0875332 -10573,3402:144,24,-44,0,0,0.0858415 -10574,3402:245,25,-44,0,0,0.0855837 -10575,3402:246,26,-44,0,0,0.0960144 -10576,3402:247,27,-44,0,0,0.101369 -10577,3402:248,28,-44,0,0,0.0995677 -10578,3402:249,29,-44,0,0,0.0906599 -10579,3403:140,30,-44,0,0,0.0975957 -10580,3403:141,31,-44,0,0,0.0964792 -10581,3403:142,32,-44,0,0,0.096327 -10582,3403:143,33,-44,0,0,0.0929039 -10583,3403:144,34,-44,0,0,0.0970091 -10584,3403:245,35,-44,0,0,0.099356 -10585,3403:246,36,-44,0,0,0.0988423 -10586,3403:247,37,-44,0,0,0.0995953 -10587,3403:248,38,-44,0,0,0.101453 -10588,3403:249,39,-44,0,0,0.101051 -10589,3404:140,40,-44,0,0,0.099062 -10590,3404:141,41,-44,0,0,0.0990528 -10591,3404:142,42,-44,0,0,0.0985405 -10592,3404:143,43,-44,0,0,0.0972973 -10593,3404:144,44,-44,0,0,0.0974508 -10594,3404:245,45,-44,0,0,0.0975866 -10595,3404:246,46,-44,0,0,0.0977134 -10596,3404:247,47,-44,0,0,0.100613 -10597,3404:248,48,-44,0,0,0.0979491 -10598,3404:249,49,-44,0,0,0.0986777 -10599,3405:140,50,-44,0,0,0.101866 -10600,3405:141,51,-44,0,0,0.0988971 -10601,3405:142,52,-44,0,0,0.0996046 -10602,3405:143,53,-44,0,0,0.10093 -10603,3405:144,54,-44,0,0,0.10359 -10604,3405:245,55,-44,0,0,0.104048 -10605,3405:246,56,-44,0,0,0.101472 -10606,3405:247,57,-44,0,0,0.0985041 -10607,3405:248,58,-44,0,0,0.101341 -10608,3405:249,59,-44,0,0,0.103914 -10609,3406:140,60,-44,0,0,0.102214 -10610,3406:141,61,-44,0,0,0.102479 -10611,3406:142,62,-44,0,0,0.101641 -10612,3406:143,63,-44,0,0,0.103351 -10613,3406:144,64,-44,0,0,0.105795 -10614,3406:245,65,-44,0,0,0.104355 -10615,3406:246,66,-44,0,0,0.104875 -10616,3406:247,67,-44,0,0,0.106301 -10617,3406:248,68,-44,0,0,0.106409 -10618,3406:249,69,-44,0,0,0.103171 -10619,3407:140,70,-44,0,0,0.102271 -10620,3407:141,71,-44,0,0,0.100279 -10621,3407:142,72,-44,0,0,0.0993192 -10622,3407:144,74,-44,0,0,0.0996229 -10623,3407:245,75,-44,0,0,0.0995124 -10624,3407:246,76,-44,0,0,0.10002 -10625,3407:247,77,-44,0,0,0.100149 -10626,3407:248,78,-44,0,0,0.0967931 -10627,3407:249,79,-44,0,0,0.0893137 -10628,3408:140,80,-44,0,0,0.0895312 -10629,3408:141,81,-44,0,0,0.0892303 -10630,3408:142,82,-44,0,0,0.0891636 -10631,3408:143,83,-44,0,0,0.10053 -10632,3408:144,84,-44,0,0,0.110542 -10633,3408:245,85,-44,0,0,0.105834 -10634,3408:246,86,-44,0,0,0.108687 -10635,3408:247,87,-44,0,0,0.116158 -10636,3408:248,88,-44,0,0,0.115474 -10637,3408:249,89,-44,0,0,0.122473 -10638,3409:140,90,-44,0,0,0.128746 -10639,3409:141,91,-44,0,0,0.121899 -10640,3409:142,92,-44,0,0,0.123414 -10641,3409:143,93,-44,0,0,0.125485 -12589,5308:486,-86,-38,0,0,0.18873 -10642,3409:144,94,-44,0,0,0.121296 -10643,3409:245,95,-44,0,0,0.115013 -10644,3409:246,96,-44,0,0,0.114783 -10645,3409:247,97,-44,0,0,0.115003 -10646,3409:248,98,-44,0,0,0.115202 -10647,3409:249,99,-44,0,0,0.116168 -10648,3410:140,100,-44,0,0,0.117472 -10649,3410:141,101,-44,0,0,0.111903 -10650,3410:142,102,-44,0,0,0.104173 -10651,3410:143,103,-44,0,0,0.103247 -10652,3410:144,104,-44,0,0,0.104663 -10653,3410:245,105,-44,0,0,0.105814 -10654,3410:246,106,-44,0,0,0.108756 -10655,3410:247,107,-44,0,0,0.115537 -10656,3410:248,108,-44,0,0,0.117408 -10657,3410:249,109,-44,0,0,0.1156 -10658,3411:140,110,-44,0,0,0.11038 -10659,3411:141,111,-44,0,0,0.11039 -10660,3411:142,112,-44,0,0,0.111729 -10661,3411:143,113,-44,0,0,0.114794 -10662,3411:144,114,-44,0,0,0.124597 -10663,3411:245,115,-44,0,0,0.131349 -10664,3411:246,116,-44,0,0,0.12832 -10665,3411:247,117,-44,0,0,0.128056 -10666,3411:248,118,-44,0,0,0.128331 -10667,3411:249,119,-44,0,0,0.138397 -10668,3412:140,120,-44,0,0,0.136025 -10669,3412:141,121,-44,0,0,0.129775 -10670,3412:142,122,-44,0,0,0.140704 -10671,3412:143,123,-44,0,0,0.139503 -10672,3412:144,124,-44,0,0,0.13364 -10673,3412:245,125,-44,0,0,0.12681 -10674,3412:246,126,-44,0,0,0.133307 -10675,3412:247,127,-44,0,0,0.141588 -10676,3412:248,128,-44,0,0,0.137055 -10677,3412:249,129,-44,0,0,0.133938 -10678,3413:140,130,-44,0,0,0.134738 -10679,3413:141,131,-44,0,0,0.133688 -10680,3413:142,132,-44,0,0,0.1332 -10681,3413:143,133,-44,0,0,0.128584 -10682,3413:144,134,-44,0,0,0.140903 -10683,3413:245,135,-44,0,0,0.146054 -10684,3413:246,136,-44,0,0,0.142678 -10685,3413:247,137,-44,0,0,0.136885 -10686,3413:248,138,-44,0,0,0.137542 -10687,3413:249,139,-44,0,0,0.138716 -10688,3414:140,140,-44,0,0,0.139553 -10689,3414:141,141,-44,0,0,0.136025 -10690,3414:142,142,-44,0,0,0.130018 -10691,3414:143,143,-44,0,0,0.122616 -10692,3414:144,144,-44,0,0,0.11656 -10693,3414:245,145,-44,0,0,0.123826 -10694,3414:246,146,-44,0,0,0.129022 -10695,3414:247,147,-44,0,0,0.135977 -10696,3414:248,148,-44,0,0,0.132656 -10697,3414:249,149,-44,0,0,0.156064 -10698,3415:140,150,-44,0,0,0.167241 -10699,3415:141,151,-44,0,0,0.157136 -10700,3415:142,152,-44,0,0,0.15351 -10701,3415:143,153,-44,0,0,0.160236 -10702,3415:144,154,-44,0,0,0.173176 -10703,3415:245,155,-44,0,0,0.17406 -10704,3415:246,156,-44,0,0,0.167958 -10705,3415:247,157,-44,0,0,0.155456 -10706,3415:248,158,-44,0,0,0.157082 -10707,3415:249,159,-44,0,0,0.157313 -10708,3416:140,160,-44,0,0,0.154005 -10709,3416:141,161,-44,0,0,0.145376 -10710,3416:142,162,-44,0,0,0.14507 -10711,3416:143,163,-44,0,0,0.150281 -10712,3416:144,164,-44,0,0,0.153992 -10713,3416:245,165,-44,0,0,0.172809 -10714,3416:246,166,-44,0,0,0.18782 -10715,3416:247,167,-44,0,0,0.182013 -10716,3416:248,168,-44,0,0,0.180063 -10717,3416:249,169,-44,0,0,0.17911 -10718,3417:140,170,-44,0,0,0.178853 -10719,3417:141,171,-44,0,0,0.179004 -10720,3417:142,172,-44,0,0,0.179821 -10721,3417:143,173,-44,0,0,0.179942 -10722,3417:144,174,-44,0,0,0.175439 -10723,3417:245,175,-44,0,0,0.160998 -10724,3417:246,176,-44,0,0,0.156566 -10725,3417:247,177,-44,0,0,0.16025 -10726,3417:248,178,-44,0,0,0.164484 -10727,3417:249,179,-44,0,0,0.163498 -10728,3418:140,180,-44,0,0,0.167213 -10729,5418:130,-180,-43,0,0,0.176825 -10730,5417:239,-179,-43,0,0,0.179503 -10731,5417:238,-178,-43,0,0,0.179942 -10732,5417:237,-177,-43,0,0,0.180732 -10733,5417:236,-176,-43,0,0,0.181463 -10734,5417:235,-175,-43,0,0,0.184149 -10735,5417:134,-174,-43,0,0,0.189345 -10736,5417:133,-173,-43,0,0,0.185822 -10737,5417:132,-172,-43,0,0,0.187225 -10738,5417:131,-171,-43,0,0,0.181448 -10739,5417:130,-170,-43,0,0,0.176302 -10740,5416:239,-169,-43,0,0,0.182748 -10741,5416:238,-168,-43,0,0,0.187647 -10742,5416:237,-167,-43,0,0,0.18562 -10743,5416:236,-166,-43,0,0,0.183779 -10744,5416:235,-165,-43,0,0,0.181768 -10745,5416:134,-164,-43,0,0,0.176825 -10746,5416:133,-163,-43,0,0,0.168519 -10747,5416:132,-162,-43,0,0,0.172193 -10748,5416:131,-161,-43,0,0,0.177619 -10749,5416:130,-160,-43,0,0,0.177514 -10750,5415:239,-159,-43,0,0,0.186491 -10751,5415:238,-158,-43,0,0,0.192104 -10752,5415:237,-157,-43,0,0,0.176227 -10753,5415:236,-156,-43,0,0,0.171812 -10754,5415:235,-155,-43,0,0,0.192615 -10755,5415:134,-154,-43,0,0,0.214606 -10756,5415:133,-153,-43,0,0,0.215213 -10757,5415:132,-152,-43,0,0,0.213569 -10758,5415:131,-151,-43,0,0,0.213689 -10759,5415:130,-150,-43,0,0,0.212965 -10760,5414:239,-149,-43,0,0,0.206612 -10761,5414:238,-148,-43,0,0,0.197096 -10762,5414:237,-147,-43,0,0,0.193239 -10763,5414:236,-146,-43,0,0,0.200105 -10764,5414:235,-145,-43,0,0,0.197633 -10765,5414:134,-144,-43,0,0,0.188526 -10766,5414:133,-143,-43,0,0,0.196219 -10767,5414:132,-142,-43,0,0,0.206781 -10768,5414:131,-141,-43,0,0,0.204147 -10769,5414:130,-140,-43,0,0,0.194363 -10770,5413:239,-139,-43,0,0,0.182442 -10771,5413:238,-138,-43,0,0,0.188904 -10772,5413:237,-137,-43,0,0,0.203514 -10773,5413:236,-136,-43,0,0,0.207185 -10774,5413:235,-135,-43,0,0,0.211882 -10775,5413:134,-134,-43,0,0,0.210854 -10776,5413:133,-133,-43,0,0,0.208183 -10777,5413:132,-132,-43,0,0,0.205956 -10778,5413:131,-131,-43,0,0,0.200714 -10779,5413:130,-130,-43,0,0,0.198433 -10780,5412:239,-129,-43,0,0,0.195394 -10781,5412:238,-128,-43,0,0,0.19212 -10782,5412:237,-127,-43,0,0,0.18746 -10783,5412:236,-126,-43,0,0,0.189219 -10784,5412:235,-125,-43,0,0,0.189629 -10785,5412:134,-124,-43,0,0,0.184381 -10786,5412:133,-123,-43,0,0,0.183009 -10787,5412:132,-122,-43,0,0,0.181188 -10788,5412:131,-121,-43,0,0,0.17837 -10789,5412:130,-120,-43,0,0,0.177694 -10790,5411:239,-119,-43,0,0,0.176855 -10791,5411:238,-118,-43,0,0,0.175008 -10792,5411:237,-117,-43,0,0,0.173161 -10793,5411:236,-116,-43,0,0,0.177484 -10794,5411:235,-115,-43,0,0,0.181387 -10795,5411:134,-114,-43,0,0,0.178898 -10796,5411:133,-113,-43,0,0,0.173662 -10797,5411:132,-112,-43,0,0,0.169298 -10798,5411:131,-111,-43,0,0,0.169688 -10799,5411:130,-110,-43,0,0,0.168231 -10800,5410:239,-109,-43,0,0,0.166784 -10801,5410:238,-108,-43,0,0,0.166827 -10802,5410:237,-107,-43,0,0,0.16478 -10803,5410:236,-106,-43,0,0,0.167213 -10804,5410:235,-105,-43,0,0,0.165617 -10805,5410:134,-104,-43,0,0,0.161484 -10806,5410:133,-103,-43,0,0,0.16347 -10807,5410:132,-102,-43,0,0,0.165191 -10808,5410:131,-101,-43,0,0,0.161833 -10809,5410:130,-100,-43,0,0,0.161874 -10810,5409:239,-99,-43,0,0,0.16354 -10811,5409:238,-98,-43,0,0,0.16274 -10812,5409:237,-97,-43,0,0,0.16097 -10813,5409:236,-96,-43,0,0,0.161429 -10814,5409:235,-95,-43,0,0,0.162642 -10815,5409:134,-94,-43,0,0,0.164724 -10816,5409:133,-93,-43,0,0,0.162279 -10817,5409:132,-92,-43,0,0,0.159326 -10818,5409:131,-91,-43,0,0,0.160624 -10819,5409:130,-90,-43,0,0,0.163259 -10820,5408:239,-89,-43,0,0,0.161456 -10821,5408:238,-88,-43,0,0,0.16072 -10822,5408:237,-87,-43,0,0,0.162125 -10823,5408:236,-86,-43,0,0,0.160929 -10824,5408:235,-85,-43,0,0,0.160652 -10825,5408:134,-84,-43,0,0,0.160887 -10826,5408:133,-83,-43,0,0,0.159905 -10827,5408:132,-82,-43,0,0,0.159161 -10828,5408:131,-81,-43,0,0,0.159119 -10829,5408:130,-80,-43,0,0,0.158968 -10830,5407:239,-79,-43,0,0,0.162223 -10831,5407:238,-78,-43,0,0,0.163203 -10832,5407:237,-77,-43,0,0,0.164413 -10833,5407:236,-76,-43,0,0,0.169413 -10834,5407:235,-75,-43,0,0,0.180808 -10835,5407:134,-74,-43,0,0,0.192663 -10836,5406:238,-68,-43,0,0,0.17807 -10837,5406:237,-67,-43,0,0,0.165517 -10838,5406:236,-66,-43,0,0,0.161026 -10839,5406:235,-65,-43,0,0,0.159988 -10840,5406:134,-64,-43,0,0,0.156987 -10841,5406:133,-63,-43,0,0,0.158461 -10842,5406:132,-62,-43,0,0,0.158872 -10843,5406:131,-61,-43,0,0,0.16122 -10844,5406:130,-60,-43,0,0,0.165531 -10845,5405:239,-59,-43,0,0,0.166912 -10846,5405:238,-58,-43,0,0,0.162629 -10847,5405:237,-57,-43,0,0,0.157982 -10848,5405:236,-56,-43,0,0,0.151968 -10849,5405:235,-55,-43,0,0,0.145389 -10850,5405:134,-54,-43,0,0,0.143914 -10851,5405:133,-53,-43,0,0,0.142892 -10852,5405:132,-52,-43,0,0,0.139861 -10853,5405:131,-51,-43,0,0,0.138998 -10854,5405:130,-50,-43,0,0,0.136788 -10855,5404:239,-49,-43,0,0,0.132668 -10856,5404:238,-48,-43,0,0,0.124407 -10857,5404:237,-47,-43,0,0,0.123949 -10858,5404:236,-46,-43,0,0,0.122031 -10859,5404:235,-45,-43,0,0,0.120717 -10860,5404:134,-44,-43,0,0,0.119999 -10861,5404:133,-43,-43,0,0,0.117313 -10862,5404:132,-42,-43,0,0,0.115453 -10863,5404:131,-41,-43,0,0,0.121669 -10864,5404:130,-40,-43,0,0,0.12063 -10865,5403:239,-39,-43,0,0,0.118241 -10866,5403:238,-38,-43,0,0,0.110653 -10867,5403:237,-37,-43,0,0,0.108756 -10868,5403:236,-36,-43,0,0,0.111271 -10869,5403:235,-35,-43,0,0,0.107646 -10870,5403:134,-34,-43,0,0,0.108647 -10871,5403:133,-33,-43,0,0,0.101341 -10872,5403:132,-32,-43,0,0,0.105814 -10873,5403:131,-31,-43,0,0,0.111719 -10874,5403:130,-30,-43,0,0,0.110714 -10875,5402:239,-29,-43,0,0,0.114617 -10876,5402:238,-28,-43,0,0,0.12088 -10877,5402:237,-27,-43,0,0,0.115947 -10878,5402:236,-26,-43,0,0,0.112332 -10879,5402:235,-25,-43,0,0,0.11471 -10880,5402:134,-24,-43,0,0,0.115632 -10881,5402:133,-23,-43,0,0,0.118983 -10882,5402:132,-22,-43,0,0,0.115233 -10883,5402:131,-21,-43,0,0,0.112005 -10884,5402:130,-20,-43,0,0,0.115737 -10885,5401:239,-19,-43,0,0,0.112558 -10886,5401:238,-18,-43,0,0,0.118392 -10887,5401:237,-17,-43,0,0,0.116983 -10888,5401:236,-16,-43,0,0,0.116686 -10889,5401:235,-15,-43,0,0,0.115958 -10890,5401:134,-14,-43,0,0,0.112076 -10891,5401:133,-13,-43,0,0,0.114148 -10892,5401:132,-12,-43,0,0,0.116814 -10893,5401:131,-11,-43,0,0,0.114731 -10894,5401:130,-10,-43,0,0,0.107685 -10895,5400:239,-9,-43,0,0,0.105902 -10896,5400:238,-8,-43,0,0,0.10473 -10897,5400:237,-7,-43,0,0,0.104548 -10898,5400:236,-6,-43,0,0,0.101247 -10899,5400:235,-5,-43,0,0,0.0943861 -10900,5400:134,-4,-43,0,0,0.0949763 -10901,5400:133,-3,-43,0,0,0.0954366 -10902,5400:132,-2,-43,0,0,0.0932159 -10903,5400:131,-1,-43,0,0,0.0907108 -10904,3400:131,0,-43,0,0,0.0905077 -10905,3400:131,1,-43,0,0,0.0904992 -10906,3400:132,2,-43,0,0,0.0898333 -10907,3400:133,3,-43,0,0,0.0882168 -10908,3400:134,4,-43,0,0,0.092179 -10909,3400:235,5,-43,0,0,0.0966764 -10910,3400:236,6,-43,0,0,0.093103 -10911,3400:237,7,-43,0,0,0.0889469 -10912,3400:238,8,-43,0,0,0.0913826 -10913,3400:239,9,-43,0,0,0.0878126 -10914,3401:130,10,-43,0,0,0.0939304 -10915,3401:131,11,-43,0,0,0.0994756 -10916,3401:132,12,-43,0,0,0.0905415 -10917,3401:133,13,-43,0,0,0.0862212 -10918,3401:134,14,-43,0,0,0.0873448 -10919,3401:235,15,-43,0,0,0.0904907 -10920,3401:236,16,-43,0,0,0.0930249 -10921,3401:237,17,-43,0,0,0.09359 -10922,3401:238,18,-43,0,0,0.0921359 -10923,3401:239,19,-43,0,0,0.0921533 -10924,3402:130,20,-43,0,0,0.0922737 -10925,3402:131,21,-43,0,0,0.0901447 -10926,3402:132,22,-43,0,0,0.0872874 -10927,3402:133,23,-43,0,0,0.0871483 -10928,3402:134,24,-43,0,0,0.0884486 -10929,3402:235,25,-43,0,0,0.088341 -10930,3402:236,26,-43,0,0,0.0923165 -10931,3402:237,27,-43,0,0,0.096336 -10932,3402:238,28,-43,0,0,0.0928085 -10933,3402:239,29,-43,0,0,0.097 -10934,3403:130,30,-43,0,0,0.100409 -10935,3403:131,31,-43,0,0,0.11029 -10936,3403:132,32,-43,0,0,0.0965869 -10937,3403:133,33,-43,0,0,0.0968471 -10938,3403:134,34,-43,0,0,0.098249 -10939,3403:235,35,-43,0,0,0.0994295 -10940,3403:236,36,-43,0,0,0.103494 -10941,3403:237,37,-43,0,0,0.105097 -10942,3403:238,38,-43,0,0,0.105863 -10943,3403:239,39,-43,0,0,0.102545 -10944,3404:130,40,-43,0,0,0.101219 -10945,3404:131,41,-43,0,0,0.10181 -10946,3404:132,42,-43,0,0,0.100131 -10947,3404:133,43,-43,0,0,0.101257 -10948,3404:134,44,-43,0,0,0.100781 -10949,3404:235,45,-43,0,0,0.100949 -10950,3404:236,46,-43,0,0,0.104144 -10951,3404:237,47,-43,0,0,0.104827 -10952,3404:238,48,-43,0,0,0.103838 -10953,3404:239,49,-43,0,0,0.107449 -10954,3405:130,50,-43,0,0,0.108816 -10955,3405:131,51,-43,0,0,0.107321 -10956,3405:132,52,-43,0,0,0.103256 -10957,3405:133,53,-43,0,0,0.108042 -10958,3405:134,54,-43,0,0,0.106869 -10959,3405:235,55,-43,0,0,0.105165 -10960,3405:236,56,-43,0,0,0.105931 -10961,3405:237,57,-43,0,0,0.106683 -10962,3405:238,58,-43,0,0,0.103389 -10963,3405:239,59,-43,0,0,0.104269 -10964,3406:130,60,-43,0,0,0.108468 -10965,3406:131,61,-43,0,0,0.109716 -10966,3406:132,62,-43,0,0,0.107666 -10967,3406:133,63,-43,0,0,0.105591 -10968,3406:134,64,-43,0,0,0.10818 -10969,3406:235,65,-43,0,0,0.107036 -10970,3406:236,66,-43,0,0,0.107134 -10971,3406:237,67,-43,0,0,0.108746 -10972,3406:238,68,-43,0,0,0.109055 -10973,3406:239,69,-43,0,0,0.109385 -10974,3407:130,70,-43,0,0,0.104471 -10975,3407:131,71,-43,0,0,0.100753 -10976,3407:132,72,-43,0,0,0.101154 -10977,3407:134,74,-43,0,0,0.102101 -10978,3407:235,75,-43,0,0,0.101547 -10979,3407:236,76,-43,0,0,0.101107 -10980,3407:237,77,-43,0,0,0.0998351 -10981,3407:238,78,-43,0,0,0.0981854 -10982,3407:239,79,-43,0,0,0.0919041 -10983,3408:130,80,-43,0,0,0.0935812 -10984,3408:131,81,-43,0,0,0.093808 -10985,3408:132,82,-43,0,0,0.0972794 -10986,3408:133,83,-43,0,0,0.10121 -10987,3408:134,84,-43,0,0,0.122153 -10988,3408:235,85,-43,0,0,0.11936 -10989,3408:236,86,-43,0,0,0.112291 -10990,3408:237,87,-43,0,0,0.113516 -10991,3408:238,88,-43,0,0,0.116877 -10992,3408:239,89,-43,0,0,0.120412 -10993,3409:130,90,-43,0,0,0.12754 -10994,3409:131,91,-43,0,0,0.13024 -10995,3409:132,92,-43,0,0,0.12923 -10996,3409:133,93,-43,0,0,0.122948 -10997,3409:134,94,-43,0,0,0.120531 -10998,3409:235,95,-43,0,0,0.116707 -10999,3409:236,96,-43,0,0,0.120924 -11000,3409:237,97,-43,0,0,0.12327 -11001,3409:238,98,-43,0,0,0.128757 -11002,3409:239,99,-43,0,0,0.126867 -11003,3410:130,100,-43,0,0,0.125035 -11004,3410:131,101,-43,0,0,0.121416 -11005,3410:132,102,-43,0,0,0.1176 -11006,3410:133,103,-43,0,0,0.112763 -11007,3410:134,104,-43,0,0,0.112753 -11008,3410:235,105,-43,0,0,0.114971 -11009,3410:236,106,-43,0,0,0.113309 -11010,3410:237,107,-43,0,0,0.120433 -11011,3410:238,108,-43,0,0,0.120575 -11012,3410:239,109,-43,0,0,0.115779 -11013,3411:130,110,-43,0,0,0.112866 -11014,3411:131,111,-43,0,0,0.115863 -11015,3411:132,112,-43,0,0,0.120162 -11016,3411:133,113,-43,0,0,0.120303 -11017,3411:134,114,-43,0,0,0.123648 -11018,3411:235,115,-43,0,0,0.140307 -11019,3411:236,116,-43,0,0,0.151017 -11020,3411:237,117,-43,0,0,0.147482 -11021,3411:238,118,-43,0,0,0.133973 -11022,3411:239,119,-43,0,0,0.137067 -11023,3412:130,120,-43,0,0,0.136218 -11024,3412:131,121,-43,0,0,0.141251 -11025,3412:132,122,-43,0,0,0.149339 -11026,3412:133,123,-43,0,0,0.150714 -11027,3412:134,124,-43,0,0,0.147624 -11028,3412:235,125,-43,0,0,0.136267 -11029,3412:236,126,-43,0,0,0.139602 -11030,3412:237,127,-43,0,0,0.145287 -11031,3412:238,128,-43,0,0,0.140816 -11032,3412:239,129,-43,0,0,0.143421 -11033,3413:130,130,-43,0,0,0.140493 -11034,3413:131,131,-43,0,0,0.13847 -11035,3413:132,132,-43,0,0,0.136982 -11036,3413:133,133,-43,0,0,0.140332 -11037,3413:134,134,-43,0,0,0.144459 -11038,3413:235,135,-43,0,0,0.155618 -11039,3413:236,136,-43,0,0,0.161373 -11040,3413:237,137,-43,0,0,0.16025 -11041,3413:238,138,-43,0,0,0.160943 -11042,3413:239,139,-43,0,0,0.160679 -11043,3414:130,140,-43,0,0,0.158845 -11044,3414:131,141,-43,0,0,0.14451 -11045,3414:132,142,-43,0,0,0.136327 -11046,3414:133,143,-43,0,0,0.144612 -11047,3414:134,144,-43,0,0,0.136569 -11048,3414:235,145,-43,0,0,0.127677 -11049,3414:236,146,-43,0,0,0.13383 -11050,3414:237,147,-43,0,0,0.136363 -11051,3414:238,148,-43,0,0,0.150754 -11052,3414:239,149,-43,0,0,0.172588 -11053,3415:130,150,-43,0,0,0.164582 -11054,3415:131,151,-43,0,0,0.171155 -11055,3415:132,152,-43,0,0,0.175706 -11056,3415:133,153,-43,0,0,0.174045 -11057,3415:134,154,-43,0,0,0.177319 -11058,3415:235,155,-43,0,0,0.174282 -11059,3415:236,156,-43,0,0,0.164597 -11060,3415:237,157,-43,0,0,0.16454 -11061,3415:238,158,-43,0,0,0.166399 -11062,3415:239,159,-43,0,0,0.168692 -11063,3416:130,160,-43,0,0,0.17443 -11064,3416:131,161,-43,0,0,0.180762 -11065,3416:132,162,-43,0,0,0.183902 -11066,3416:133,163,-43,0,0,0.179897 -11067,3416:134,164,-43,0,0,0.175766 -11068,3416:235,165,-43,0,0,0.176795 -11069,3416:236,166,-43,0,0,0.19004 -11070,3416:237,167,-43,0,0,0.184612 -11071,3416:238,168,-43,0,0,0.18186 -11072,3416:239,169,-43,0,0,0.179821 -11073,3417:130,170,-43,0,0,0.178235 -11074,3417:131,171,-43,0,0,0.176586 -11075,3417:132,172,-43,0,0,0.17678 -11076,3417:133,173,-43,0,0,0.179261 -11077,3417:134,174,-43,0,0,0.181616 -11078,3417:235,175,-43,0,0,0.171359 -11079,3417:236,176,-43,0,0,0.159422 -11080,3417:237,177,-43,0,0,0.164964 -11081,3417:238,178,-43,0,0,0.164922 -11082,3417:239,179,-43,0,0,0.167113 -11083,3418:130,180,-43,0,0,0.176825 -11084,5418:120,-180,-42,0,0,0.173352 -11085,5417:229,-179,-42,0,0,0.174031 -11086,5417:228,-178,-42,0,0,0.17587 -11087,5417:227,-177,-42,0,0,0.180503 -11088,5417:226,-176,-42,0,0,0.182028 -11089,5417:225,-175,-42,0,0,0.186569 -11090,5417:124,-174,-42,0,0,0.193014 -11091,5417:123,-173,-42,0,0,0.188102 -11092,5417:122,-172,-42,0,0,0.18534 -11093,5417:121,-171,-42,0,0,0.17917 -11094,5417:120,-170,-42,0,0,0.175959 -11095,5416:229,-169,-42,0,0,0.174934 -11096,5416:228,-168,-42,0,0,0.191945 -11097,5416:227,-167,-42,0,0,0.192439 -11098,5416:226,-166,-42,0,0,0.194266 -11099,5416:225,-165,-42,0,0,0.194669 -11100,5416:124,-164,-42,0,0,0.191022 -11101,5416:123,-163,-42,0,0,0.179548 -11102,5416:122,-162,-42,0,0,0.182319 -11103,5416:121,-161,-42,0,0,0.193993 -11104,5416:120,-160,-42,0,0,0.194491 -11105,5415:229,-159,-42,0,0,0.193511 -11106,5415:228,-158,-42,0,0,0.200253 -11107,5415:227,-157,-42,0,0,0.2082 -11108,5415:226,-156,-42,0,0,0.212346 -11109,5415:225,-155,-42,0,0,0.209916 -11110,5415:124,-154,-42,0,0,0.214087 -11111,5415:123,-153,-42,0,0,0.220746 -11112,5415:122,-152,-42,0,0,0.221738 -11113,5415:121,-151,-42,0,0,0.21909 -11114,5415:120,-150,-42,0,0,0.218212 -11115,5414:229,-149,-42,0,0,0.217302 -11116,5414:228,-148,-42,0,0,0.211214 -11117,5414:227,-147,-42,0,0,0.206107 -11118,5414:226,-146,-42,0,0,0.210598 -11119,5414:225,-145,-42,0,0,0.21381 -11120,5414:124,-144,-42,0,0,0.212827 -11121,5414:123,-143,-42,0,0,0.215369 -11122,5414:122,-142,-42,0,0,0.212638 -11123,5414:121,-141,-42,0,0,0.202019 -11124,5414:120,-140,-42,0,0,0.20187 -11125,5413:229,-139,-42,0,0,0.208777 -11126,5413:228,-138,-42,0,0,0.214381 -11127,5413:227,-137,-42,0,0,0.212054 -11128,5413:226,-136,-42,0,0,0.215091 -11129,5413:225,-135,-42,0,0,0.214415 -11130,5413:124,-134,-42,0,0,0.209337 -11131,5413:123,-133,-42,0,0,0.209082 -11132,5413:122,-132,-42,0,0,0.205318 -11133,5413:121,-131,-42,0,0,0.207506 -11134,5413:120,-130,-42,0,0,0.206377 -11135,5412:229,-129,-42,0,0,0.203164 -11136,5412:228,-128,-42,0,0,0.205519 -11137,5412:227,-127,-42,0,0,0.203681 -11138,5412:226,-126,-42,0,0,0.194894 -11139,5412:225,-125,-42,0,0,0.199349 -11140,5412:124,-124,-42,0,0,0.200714 -11141,5412:123,-123,-42,0,0,0.190578 -11142,5412:122,-122,-42,0,0,0.183763 -11143,5412:121,-121,-42,0,0,0.183056 -11144,5412:120,-120,-42,0,0,0.183594 -11145,5411:229,-119,-42,0,0,0.181738 -11146,5411:228,-118,-42,0,0,0.181478 -11147,5411:227,-117,-42,0,0,0.186351 -11148,5411:226,-116,-42,0,0,0.187053 -11149,5411:225,-115,-42,0,0,0.182396 -11150,5411:124,-114,-42,0,0,0.180306 -11151,5411:123,-113,-42,0,0,0.176601 -11152,5411:122,-112,-42,0,0,0.176362 -11153,5411:121,-111,-42,0,0,0.176183 -11154,5411:120,-110,-42,0,0,0.173367 -11155,5410:229,-109,-42,0,0,0.173942 -11156,5410:228,-108,-42,0,0,0.174075 -11157,5410:227,-107,-42,0,0,0.170922 -11158,5410:226,-106,-42,0,0,0.172354 -11159,5410:225,-105,-42,0,0,0.169862 -11160,5410:124,-104,-42,0,0,0.170079 -11161,5410:123,-103,-42,0,0,0.172383 -11162,5410:122,-102,-42,0,0,0.171608 -11163,5410:121,-101,-42,0,0,0.167958 -11164,5410:120,-100,-42,0,0,0.167714 -11165,5409:229,-99,-42,0,0,0.168677 -11166,5409:228,-98,-42,0,0,0.16803 -11167,5409:227,-97,-42,0,0,0.166071 -11168,5409:226,-96,-42,0,0,0.166998 -11169,5409:225,-95,-42,0,0,0.166285 -11170,5409:124,-94,-42,0,0,0.167915 -11171,5409:123,-93,-42,0,0,0.16803 -11172,5409:122,-92,-42,0,0,0.166684 -11173,5409:121,-91,-42,0,0,0.165276 -11174,5409:120,-90,-42,0,0,0.167456 -11175,5408:229,-89,-42,0,0,0.167084 -11176,5408:228,-88,-42,0,0,0.166584 -11177,5408:227,-87,-42,0,0,0.165673 -11178,5408:226,-86,-42,0,0,0.164696 -11179,5408:225,-85,-42,0,0,0.164625 -11180,5408:124,-84,-42,0,0,0.163709 -11181,5408:123,-83,-42,0,0,0.162908 -11182,5408:122,-82,-42,0,0,0.16267 -11183,5408:121,-81,-42,0,0,0.166399 -11184,5408:120,-80,-42,0,0,0.167385 -11185,5407:229,-79,-42,0,0,0.16423 -11186,5407:228,-78,-42,0,0,0.167843 -11187,5407:227,-77,-42,0,0,0.171316 -11188,5407:226,-76,-42,0,0,0.184087 -11189,5407:225,-75,-42,0,0,0.19554 -11190,5406:228,-68,-42,0,0,0.184953 -11191,5406:227,-67,-42,0,0,0.167528 -11192,5406:226,-66,-42,0,0,0.16361 -11193,5406:225,-65,-42,0,0,0.16361 -11194,5406:124,-64,-42,0,0,0.165347 -11195,5406:123,-63,-42,0,0,0.1661 -11196,5406:122,-62,-42,0,0,0.167786 -11197,5406:121,-61,-42,0,0,0.177679 -11198,5405:228,-58,-42,0,0,0.200417 -11199,5405:227,-57,-42,0,0,0.166798 -11200,5405:226,-56,-42,0,0,0.158653 -11201,5405:225,-55,-42,0,0,0.152964 -11202,5405:124,-54,-42,0,0,0.145631 -11203,5405:123,-53,-42,0,0,0.144434 -11204,5405:122,-52,-42,0,0,0.145849 -11205,5405:121,-51,-42,0,0,0.145926 -11206,5405:120,-50,-42,0,0,0.143144 -11207,5404:229,-49,-42,0,0,0.13426 -11208,5404:228,-48,-42,0,0,0.132644 -11209,5404:227,-47,-42,0,0,0.127289 -11210,5404:226,-46,-42,0,0,0.126696 -11211,5404:225,-45,-42,0,0,0.128699 -11212,5404:124,-44,-42,0,0,0.130077 -11213,5404:123,-43,-42,0,0,0.130612 -11214,5404:122,-42,-42,0,0,0.127152 -11215,5404:121,-41,-42,0,0,0.119533 -11216,5404:120,-40,-42,0,0,0.123303 -11217,5403:229,-39,-42,0,0,0.123181 -11218,5403:228,-38,-42,0,0,0.122716 -11219,5403:227,-37,-42,0,0,0.117058 -11220,5403:226,-36,-42,0,0,0.120859 -11221,5403:225,-35,-42,0,0,0.117824 -11222,5403:124,-34,-42,0,0,0.114648 -11223,5403:123,-33,-42,0,0,0.103905 -11224,5403:122,-32,-42,0,0,0.107824 -11225,5403:121,-31,-42,0,0,0.109066 -11226,5403:120,-30,-42,0,0,0.110179 -11227,5402:229,-29,-42,0,0,0.119317 -11228,5402:228,-28,-42,0,0,0.12588 -11229,5402:227,-27,-42,0,0,0.121361 -11230,5402:226,-26,-42,0,0,0.121844 -11231,5402:225,-25,-42,0,0,0.121449 -11232,5402:124,-24,-42,0,0,0.124161 -11233,5402:123,-23,-42,0,0,0.120891 -11234,5402:122,-22,-42,0,0,0.120979 -11235,5402:121,-21,-42,0,0,0.118649 -11236,5402:120,-20,-42,0,0,0.119392 -11237,5401:229,-19,-42,0,0,0.115905 -11238,5401:228,-18,-42,0,0,0.125655 -11239,5401:227,-17,-42,0,0,0.12974 -11240,5401:226,-16,-42,0,0,0.123358 -11241,5401:225,-15,-42,0,0,0.122682 -11242,5401:124,-14,-42,0,0,0.120782 -11243,5401:123,-13,-42,0,0,0.127769 -11244,5401:122,-12,-42,0,0,0.129798 -11245,5401:121,-11,-42,0,0,0.119934 -11246,5401:120,-10,-42,0,0,0.112835 -11247,5400:229,-9,-42,0,0,0.104653 -11248,5400:228,-8,-42,0,0,0.105097 -11249,5400:227,-7,-42,0,0,0.104355 -11250,5400:226,-6,-42,0,0,0.103819 -11251,5400:225,-5,-42,0,0,0.0984587 -11252,5400:124,-4,-42,0,0,0.0976589 -11253,5400:123,-3,-42,0,0,0.103428 -11254,5400:122,-2,-42,0,0,0.0985862 -11255,5400:121,-1,-42,0,0,0.0986227 -11256,3400:121,0,-42,0,0,0.0963628 -11257,3400:121,1,-42,0,0,0.0942546 -11258,3400:122,2,-42,0,0,0.0951352 -11259,3400:123,3,-42,0,0,0.0961304 -11260,3400:124,4,-42,0,0,0.0948616 -11261,3400:225,5,-42,0,0,0.0990713 -11262,3400:226,6,-42,0,0,0.114564 -11263,3400:227,7,-42,0,0,0.112804 -11264,3400:228,8,-42,0,0,0.108448 -11265,3400:229,9,-42,0,0,0.102205 -11266,3401:120,10,-42,0,0,0.107163 -11267,3401:121,11,-42,0,0,0.10823 -11268,3401:122,12,-42,0,0,0.106292 -11269,3401:123,13,-42,0,0,0.094747 -11270,3401:124,14,-42,0,0,0.0988881 -11271,3401:225,15,-42,0,0,0.0981399 -11272,3401:226,16,-42,0,0,0.0963898 -11273,3401:227,17,-42,0,0,0.0960144 -11274,3401:228,18,-42,0,0,0.0967753 -11275,3401:229,19,-42,0,0,0.0940442 -11276,3402:120,20,-42,0,0,0.0987781 -11277,3402:121,21,-42,0,0,0.0998444 -11278,3402:122,22,-42,0,0,0.0947117 -11279,3402:123,23,-42,0,0,0.0944478 -11280,3402:124,24,-42,0,0,0.101117 -11281,3402:225,25,-42,0,0,0.105175 -11282,3402:226,26,-42,0,0,0.104663 -11283,3402:227,27,-42,0,0,0.105834 -11284,3402:228,28,-42,0,0,0.100567 -11285,3402:229,29,-42,0,0,0.0969731 -11286,3403:120,30,-42,0,0,0.107134 -11287,3403:121,31,-42,0,0,0.118897 -11288,3403:122,32,-42,0,0,0.11302 -11289,3403:123,33,-42,0,0,0.106438 -11290,3403:124,34,-42,0,0,0.103485 -11291,3403:225,35,-42,0,0,0.102782 -11292,3403:226,36,-42,0,0,0.105475 -11293,3403:227,37,-42,0,0,0.10636 -11294,3403:228,38,-42,0,0,0.108002 -11295,3403:229,39,-42,0,0,0.103981 -11296,3404:120,40,-42,0,0,0.104615 -11297,3404:121,41,-42,0,0,0.104394 -11298,3404:122,42,-42,0,0,0.103047 -11299,3404:123,43,-42,0,0,0.105795 -11300,3404:124,44,-42,0,0,0.106644 -11301,3404:225,45,-42,0,0,0.109887 -11302,3404:226,46,-42,0,0,0.111546 -11303,3404:227,47,-42,0,0,0.109095 -11304,3404:228,48,-42,0,0,0.107468 -11305,3404:229,49,-42,0,0,0.112394 -11306,3405:120,50,-42,0,0,0.110058 -11307,3405:121,51,-42,0,0,0.110138 -11308,3405:122,52,-42,0,0,0.110491 -11309,3405:123,53,-42,0,0,0.110582 -11310,3405:124,54,-42,0,0,0.108498 -11311,3405:225,55,-42,0,0,0.106898 -11312,3405:226,56,-42,0,0,0.109526 -11313,3405:227,57,-42,0,0,0.112486 -11314,3405:228,58,-42,0,0,0.109636 -11315,3405:229,59,-42,0,0,0.107962 -11316,3406:120,60,-42,0,0,0.113712 -11317,3406:121,61,-42,0,0,0.113619 -11318,3406:122,62,-42,0,0,0.112281 -11319,3406:123,63,-42,0,0,0.111119 -11320,3406:124,64,-42,0,0,0.111862 -11321,3406:225,65,-42,0,0,0.112877 -11322,3406:226,66,-42,0,0,0.112086 -11323,3406:227,67,-42,0,0,0.111139 -11324,3406:228,68,-42,0,0,0.109335 -11325,3406:229,69,-42,0,0,0.106175 -11326,3407:120,70,-42,0,0,0.103723 -11327,3407:121,71,-42,0,0,0.102394 -11328,3407:122,72,-42,0,0,0.103446 -11329,3407:124,74,-42,0,0,0.10474 -11330,3407:225,75,-42,0,0,0.10378 -11331,3407:226,76,-42,0,0,0.101191 -11332,3407:227,77,-42,0,0,0.0959165 -11333,3407:228,78,-42,0,0,0.0929903 -11334,3407:229,79,-42,0,0,0.109385 -11335,3408:120,80,-42,0,0,0.123148 -11336,3408:121,81,-42,0,0,0.129057 -11337,3408:122,82,-42,0,0,0.122274 -11338,3408:123,83,-42,0,0,0.126879 -11339,3408:124,84,-42,0,0,0.129577 -11340,3408:225,85,-42,0,0,0.135579 -11341,3408:226,86,-42,0,0,0.129555 -11342,3408:227,87,-42,0,0,0.126367 -11343,3408:228,88,-42,0,0,0.130449 -11344,3408:229,89,-42,0,0,0.133914 -11345,3409:120,90,-42,0,0,0.143093 -11346,3409:121,91,-42,0,0,0.147572 -11347,3409:122,92,-42,0,0,0.135868 -11348,3409:123,93,-42,0,0,0.127209 -11349,3409:124,94,-42,0,0,0.123748 -11350,3409:225,95,-42,0,0,0.126084 -11351,3409:226,96,-42,0,0,0.12801 -11352,3409:227,97,-42,0,0,0.128688 -11353,3409:228,98,-42,0,0,0.132833 -11354,3409:229,99,-42,0,0,0.13122 -11355,3410:120,100,-42,0,0,0.127243 -11356,3410:121,101,-42,0,0,0.123059 -11357,3410:122,102,-42,0,0,0.122208 -11358,3410:123,103,-42,0,0,0.12276 -11359,3410:124,104,-42,0,0,0.121789 -11360,3410:225,105,-42,0,0,0.120488 -11361,3410:226,106,-42,0,0,0.117494 -11362,3410:227,107,-42,0,0,0.119231 -11363,3410:228,108,-42,0,0,0.121537 -11364,3410:229,109,-42,0,0,0.126129 -11365,3411:120,110,-42,0,0,0.12357 -11366,3411:121,111,-42,0,0,0.132408 -11367,3411:122,112,-42,0,0,0.132125 -11368,3411:123,113,-42,0,0,0.128331 -11369,3411:124,114,-42,0,0,0.134786 -11370,3411:225,115,-42,0,0,0.13863 -11371,3411:226,116,-42,0,0,0.15363 -11372,3411:227,117,-42,0,0,0.153978 -11373,3411:228,118,-42,0,0,0.144447 -11374,3411:229,119,-42,0,0,0.138372 -11375,3412:120,120,-42,0,0,0.141838 -11376,3412:121,121,-42,0,0,0.143169 -11377,3412:122,122,-42,0,0,0.145695 -11378,3412:123,123,-42,0,0,0.15032 -11379,3412:124,124,-42,0,0,0.150754 -11380,3412:225,125,-42,0,0,0.154635 -11381,3412:226,126,-42,0,0,0.15339 -11382,3412:227,127,-42,0,0,0.147818 -11383,3412:228,128,-42,0,0,0.175186 -11384,3412:229,129,-42,0,0,0.1797 -11385,3413:120,130,-42,0,0,0.178672 -11386,3413:121,131,-42,0,0,0.174711 -11387,3413:122,132,-42,0,0,0.169052 -11388,3413:123,133,-42,0,0,0.171797 -11389,3413:124,134,-42,0,0,0.175691 -11390,3413:225,135,-42,0,0,0.17529 -11391,3413:226,136,-42,0,0,0.174193 -11392,3413:227,137,-42,0,0,0.170108 -11393,3413:228,138,-42,0,0,0.161345 -11394,3413:229,139,-42,0,0,0.163695 -11395,3414:120,140,-42,0,0,0.158338 -11396,3414:121,141,-42,0,0,0.143649 -11397,3414:122,142,-42,0,0,0.143876 -11398,3414:123,143,-42,0,0,0.160388 -11399,3414:124,144,-42,0,0,0.159119 -11400,3414:225,145,-42,0,0,0.148817 -11401,3414:226,146,-42,0,0,0.137822 -11402,3414:227,147,-42,0,0,0.167399 -11403,3414:228,148,-42,0,0,0.187162 -11404,3414:229,149,-42,0,0,0.184149 -11405,3415:120,150,-42,0,0,0.165773 -11406,3415:121,151,-42,0,0,0.170457 -11407,3415:122,152,-42,0,0,0.172691 -11408,3415:123,153,-42,0,0,0.174134 -11409,3415:124,154,-42,0,0,0.182136 -11410,3415:225,155,-42,0,0,0.18258 -11411,3415:226,156,-42,0,0,0.17486 -11412,3415:227,157,-42,0,0,0.173574 -11413,3415:228,158,-42,0,0,0.182795 -11414,3415:229,159,-42,0,0,0.18401 -11415,3416:120,160,-42,0,0,0.18884 -11416,3416:121,161,-42,0,0,0.190657 -11417,3416:122,162,-42,0,0,0.191006 -11418,3416:123,163,-42,0,0,0.190325 -11419,3416:124,164,-42,0,0,0.185869 -11420,3416:225,165,-42,0,0,0.185511 -11421,3416:226,166,-42,0,0,0.192743 -11422,3416:227,167,-42,0,0,0.191754 -11423,3416:228,168,-42,0,0,0.189582 -11424,3416:229,169,-42,0,0,0.183163 -11425,3417:120,170,-42,0,0,0.17917 -11426,3417:121,171,-42,0,0,0.177574 -11427,3417:122,172,-42,0,0,0.17825 -11428,3417:123,173,-42,0,0,0.179019 -11429,3417:124,174,-42,0,0,0.180823 -11430,3417:225,175,-42,0,0,0.180018 -11431,3417:226,176,-42,0,0,0.164625 -11432,3417:227,177,-42,0,0,0.164442 -11433,3417:228,178,-42,0,0,0.167141 -11434,3417:229,179,-42,0,0,0.173441 -11435,3418:120,180,-42,0,0,0.173352 -11436,5418:110,-180,-41,0,0,0.173191 -11437,5417:219,-179,-41,0,0,0.171549 -11438,5417:218,-178,-41,0,0,0.17322 -11439,5417:217,-177,-41,0,0,0.190546 -11440,5417:216,-176,-41,0,0,0.192232 -11441,5417:215,-175,-41,0,0,0.188322 -11442,5417:114,-174,-41,0,0,0.194943 -11443,5417:113,-173,-41,0,0,0.19433 -11444,5417:112,-172,-41,0,0,0.200648 -11445,5417:111,-171,-41,0,0,0.191006 -11446,5417:110,-170,-41,0,0,0.190245 -11447,5416:219,-169,-41,0,0,0.187788 -11448,5416:218,-168,-41,0,0,0.18903 -11449,5416:217,-167,-41,0,0,0.183579 -11450,5416:216,-166,-41,0,0,0.188385 -11451,5416:215,-165,-41,0,0,0.187773 -11452,5416:114,-164,-41,0,0,0.199136 -11453,5416:113,-163,-41,0,0,0.213741 -11454,5416:112,-162,-41,0,0,0.195007 -11455,5416:111,-161,-41,0,0,0.196219 -11456,5416:110,-160,-41,0,0,0.202616 -11457,5415:219,-159,-41,0,0,0.213707 -11458,5415:218,-158,-41,0,0,0.22622 -11459,5415:217,-157,-41,0,0,0.232668 -11460,5415:216,-156,-41,0,0,0.232173 -11461,5415:215,-155,-41,0,0,0.225843 -11462,5415:114,-154,-41,0,0,0.213189 -11463,5415:113,-153,-41,0,0,0.218703 -11464,5415:112,-152,-41,0,0,0.230074 -11465,5415:111,-151,-41,0,0,0.223998 -11466,5415:110,-150,-41,0,0,0.222306 -11467,5414:219,-149,-41,0,0,0.217232 -11468,5414:218,-148,-41,0,0,0.2208 -11469,5414:217,-147,-41,0,0,0.226832 -11470,5414:216,-146,-41,0,0,0.227716 -11471,5414:215,-145,-41,0,0,0.226688 -11472,5414:114,-144,-41,0,0,0.225448 -11473,5414:113,-143,-41,0,0,0.221419 -11474,5414:112,-142,-41,0,0,0.218914 -11475,5414:111,-141,-41,0,0,0.221968 -11476,5414:110,-140,-41,0,0,0.226544 -11477,5413:219,-139,-41,0,0,0.227463 -11478,5413:218,-138,-41,0,0,0.224391 -11479,5413:217,-137,-41,0,0,0.222413 -11480,5413:216,-136,-41,0,0,0.223605 -11481,5413:215,-135,-41,0,0,0.221826 -11482,5413:114,-134,-41,0,0,0.220252 -11483,5413:113,-133,-41,0,0,0.219846 -11484,5413:112,-132,-41,0,0,0.217704 -11485,5413:111,-131,-41,0,0,0.216709 -11486,5413:110,-130,-41,0,0,0.216482 -11487,5412:219,-129,-41,0,0,0.216133 -11488,5412:218,-128,-41,0,0,0.215612 -11489,5412:217,-127,-41,0,0,0.213638 -11490,5412:216,-126,-41,0,0,0.201258 -11491,5412:215,-125,-41,0,0,0.201275 -11492,5412:114,-124,-41,0,0,0.204648 -11493,5412:113,-123,-41,0,0,0.205034 -11494,5412:112,-122,-41,0,0,0.193399 -11495,5412:111,-121,-41,0,0,0.196625 -11496,5412:110,-120,-41,0,0,0.191117 -11497,5411:219,-119,-41,0,0,0.191244 -11498,5411:218,-118,-41,0,0,0.194185 -11499,5411:217,-117,-41,0,0,0.192535 -11500,5411:216,-116,-41,0,0,0.192903 -11501,5411:215,-115,-41,0,0,0.194749 -11502,5411:114,-114,-41,0,0,0.195766 -11503,5411:113,-113,-41,0,0,0.192903 -11504,5411:112,-112,-41,0,0,0.187366 -11505,5411:111,-111,-41,0,0,0.181707 -11506,5411:110,-110,-41,0,0,0.182136 -11507,5410:219,-109,-41,0,0,0.182564 -11508,5410:218,-108,-41,0,0,0.178551 -11509,5410:217,-107,-41,0,0,0.180884 -11510,5410:216,-106,-41,0,0,0.180625 -11511,5410:215,-105,-41,0,0,0.181097 -11512,5410:114,-104,-41,0,0,0.182166 -11513,5410:113,-103,-41,0,0,0.179518 -11514,5410:112,-102,-41,0,0,0.176347 -11515,5410:111,-101,-41,0,0,0.176153 -11516,5410:110,-100,-41,0,0,0.177409 -11517,5409:219,-99,-41,0,0,0.176272 -11518,5409:218,-98,-41,0,0,0.173603 -11519,5409:217,-97,-41,0,0,0.171534 -11520,5409:216,-96,-41,0,0,0.172412 -11521,5409:215,-95,-41,0,0,0.171155 -11522,5409:114,-94,-41,0,0,0.17114 -11523,5409:113,-93,-41,0,0,0.172706 -11524,5409:112,-92,-41,0,0,0.174164 -11525,5409:111,-91,-41,0,0,0.172134 -11526,5409:110,-90,-41,0,0,0.171608 -11527,5408:219,-89,-41,0,0,0.170879 -11528,5408:218,-88,-41,0,0,0.169847 -11529,5408:217,-87,-41,0,0,0.169298 -11530,5408:216,-86,-41,0,0,0.169182 -11531,5408:215,-85,-41,0,0,0.168922 -11532,5408:114,-84,-41,0,0,0.168548 -11533,5408:113,-83,-41,0,0,0.167485 -11534,5408:112,-82,-41,0,0,0.174874 -11535,5408:111,-81,-41,0,0,0.1744 -11536,5408:110,-80,-41,0,0,0.177949 -11537,5407:219,-79,-41,0,0,0.179669 -11538,5407:218,-78,-41,0,0,0.175112 -11539,5407:217,-77,-41,0,0,0.179942 -11540,5407:216,-76,-41,0,0,0.194009 -11541,5407:215,-75,-41,0,0,0.210104 -11542,5406:219,-69,-41,0,0,0.204515 -11543,5406:218,-68,-41,0,0,0.183671 -11544,5406:217,-67,-41,0,0,0.180139 -11545,5406:216,-66,-41,0,0,0.178883 -11546,5406:215,-65,-41,0,0,0.17587 -11547,5406:114,-64,-41,0,0,0.174371 -11548,5406:113,-63,-41,0,0,0.174178 -11549,5406:112,-62,-41,0,0,0.176825 -11550,5406:111,-61,-41,0,0,0.189077 -11551,5406:110,-60,-41,0,0,0.195588 -11552,5405:219,-59,-41,0,0,0.194057 -11553,5405:218,-58,-41,0,0,0.18128 -11554,5405:217,-57,-41,0,0,0.169891 -11555,5405:216,-56,-41,0,0,0.162279 -11556,5405:215,-55,-41,0,0,0.157096 -11557,5405:114,-54,-41,0,0,0.148454 -11558,5405:113,-53,-41,0,0,0.146413 -11559,5405:112,-52,-41,0,0,0.148791 -11560,5405:111,-51,-41,0,0,0.149182 -11561,5405:110,-50,-41,0,0,0.140456 -11562,5404:219,-49,-41,0,0,0.137091 -11563,5404:218,-48,-41,0,0,0.135784 -11564,5404:217,-47,-41,0,0,0.140121 -11565,5404:216,-46,-41,0,0,0.138679 -11566,5404:215,-45,-41,0,0,0.137407 -11567,5404:114,-44,-41,0,0,0.137055 -11568,5404:113,-43,-41,0,0,0.138201 -11569,5404:112,-42,-41,0,0,0.135062 -11570,5404:111,-41,-41,0,0,0.131244 -11571,5404:110,-40,-41,0,0,0.125181 -11572,5403:219,-39,-41,0,0,0.139799 -11573,5403:218,-38,-41,0,0,0.145555 -11574,5403:217,-37,-41,0,0,0.146683 -11575,5403:216,-36,-41,0,0,0.141788 -11576,5403:215,-35,-41,0,0,0.130577 -11577,5403:114,-34,-41,0,0,0.131513 -11578,5403:113,-33,-41,0,0,0.133688 -11579,5403:112,-32,-41,0,0,0.127849 -11580,5403:111,-31,-41,0,0,0.130228 -11581,5403:110,-30,-41,0,0,0.133177 -11582,5402:219,-29,-41,0,0,0.131631 -11583,5402:218,-28,-41,0,0,0.134654 -11584,5402:217,-27,-41,0,0,0.131314 -11585,5402:216,-26,-41,0,0,0.126129 -11586,5402:215,-25,-41,0,0,0.130787 -11587,5402:114,-24,-41,0,0,0.131314 -11588,5402:113,-23,-41,0,0,0.133533 -11589,5402:112,-22,-41,0,0,0.133581 -11590,5402:111,-21,-41,0,0,0.126333 -11591,5402:110,-20,-41,0,0,0.12562 -11592,5401:219,-19,-41,0,0,0.125542 -11593,5401:218,-18,-41,0,0,0.124083 -11594,5401:217,-17,-41,0,0,0.135002 -11595,5401:216,-16,-41,0,0,0.131291 -11596,5401:215,-15,-41,0,0,0.129381 -11597,5401:114,-14,-41,0,0,0.133284 -11598,5401:113,-13,-41,0,0,0.139011 -11599,5401:112,-12,-41,0,0,0.135543 -11600,5401:111,-11,-41,0,0,0.13156 -11601,5401:110,-10,-41,0,0,0.129103 -11602,5400:219,-9,-41,0,0,0.11908 -11603,5400:218,-8,-41,0,0,0.107301 -11604,5400:217,-7,-41,0,0,0.106839 -11605,5400:216,-6,-41,0,0,0.101913 -11606,5400:215,-5,-41,0,0,0.101781 -11607,5400:114,-4,-41,0,0,0.103523 -11608,5400:113,-3,-41,0,0,0.11121 -11609,5400:112,-2,-41,0,0,0.107242 -11610,5400:111,-1,-41,0,0,0.109255 -11611,3400:111,0,-41,0,0,0.11175 -11612,3400:111,1,-41,0,0,0.102886 -11613,3400:112,2,-41,0,0,0.102715 -11614,3400:113,3,-41,0,0,0.103332 -11615,3400:114,4,-41,0,0,0.101117 -11616,3400:215,5,-41,0,0,0.107104 -11617,3400:216,6,-41,0,0,0.122329 -11618,3400:217,7,-41,0,0,0.108796 -11619,3400:218,8,-41,0,0,0.112086 -11620,3400:219,9,-41,0,0,0.115852 -11621,3401:110,10,-41,0,0,0.115464 -11622,3401:111,11,-41,0,0,0.109405 -11623,3401:112,12,-41,0,0,0.111018 -11624,3401:113,13,-41,0,0,0.108032 -11625,3401:114,14,-41,0,0,0.101631 -11626,3401:215,15,-41,0,0,0.104644 -11627,3401:216,16,-41,0,0,0.113733 -11628,3401:217,17,-41,0,0,0.113702 -11629,3401:218,18,-41,0,0,0.113992 -11630,3401:219,19,-41,0,0,0.103848 -11631,3402:110,20,-41,0,0,0.101014 -11632,3402:111,21,-41,0,0,0.104653 -11633,3402:112,22,-41,0,0,0.114658 -11634,3402:113,23,-41,0,0,0.102526 -11635,3402:114,24,-41,0,0,0.101285 -11636,3402:215,25,-41,0,0,0.106869 -11637,3402:216,26,-41,0,0,0.104211 -11638,3402:217,27,-41,0,0,0.117259 -11639,3402:218,28,-41,0,0,0.127323 -11640,3402:219,29,-41,0,0,0.110602 -11641,3403:110,30,-41,0,0,0.12088 -11642,3403:111,31,-41,0,0,0.116338 -11643,3403:112,32,-41,0,0,0.109166 -11644,3403:113,33,-41,0,0,0.10502 -11645,3403:114,34,-41,0,0,0.106301 -11646,3403:215,35,-41,0,0,0.110572 -11647,3403:216,36,-41,0,0,0.111403 -11648,3403:217,37,-41,0,0,0.107932 -11649,3403:218,38,-41,0,0,0.110865 -11650,3403:219,39,-41,0,0,0.115884 -11651,3404:110,40,-41,0,0,0.108736 -11652,3404:111,41,-41,0,0,0.108597 -11653,3404:112,42,-41,0,0,0.109887 -11654,3404:113,43,-41,0,0,0.110471 -11655,3404:114,44,-41,0,0,0.115348 -11656,3404:215,45,-41,0,0,0.117121 -11657,3404:216,46,-41,0,0,0.116274 -11658,3404:217,47,-41,0,0,0.112036 -11659,3404:218,48,-41,0,0,0.11033 -11660,3404:219,49,-41,0,0,0.114637 -11661,3405:110,50,-41,0,0,0.111801 -11662,3405:111,51,-41,0,0,0.113216 -11663,3405:112,52,-41,0,0,0.114242 -11664,3405:113,53,-41,0,0,0.114335 -11665,3405:114,54,-41,0,0,0.115516 -11666,3405:215,55,-41,0,0,0.113495 -11667,3405:216,56,-41,0,0,0.110653 -11668,3405:217,57,-41,0,0,0.114387 -11669,3405:218,58,-41,0,0,0.11224 -11670,3405:219,59,-41,0,0,0.119155 -11671,3406:110,60,-41,0,0,0.118509 -11672,3406:111,61,-41,0,0,0.117398 -11673,3406:112,62,-41,0,0,0.116909 -11674,3406:113,63,-41,0,0,0.115632 -11675,3406:114,64,-41,0,0,0.113909 -11676,3406:215,65,-41,0,0,0.11301 -11677,3406:216,66,-41,0,0,0.111719 -11678,3406:217,67,-41,0,0,0.108906 -11679,3406:218,68,-41,0,0,0.109085 -11680,3406:219,69,-41,0,0,0.109185 -11681,3407:110,70,-41,0,0,0.109095 -11682,3407:111,71,-41,0,0,0.107114 -11683,3407:112,72,-41,0,0,0.107282 -11684,3407:114,74,-41,0,0,0.107291 -11685,3407:215,75,-41,0,0,0.103123 -11686,3407:216,76,-41,0,0,0.0969009 -11687,3407:217,77,-41,0,0,0.11033 -11688,3407:218,78,-41,0,0,0.113826 -11689,3407:219,79,-41,0,0,0.11034 -11690,3408:110,80,-41,0,0,0.141851 -11691,3408:111,81,-41,0,0,0.14493 -11692,3408:112,82,-41,0,0,0.143131 -11693,3408:113,83,-41,0,0,0.138152 -11694,3408:114,84,-41,0,0,0.141976 -11695,3408:215,85,-41,0,0,0.14649 -11696,3408:216,86,-41,0,0,0.144828 -11697,3408:217,87,-41,0,0,0.141214 -11698,3408:218,88,-41,0,0,0.143409 -11699,3408:219,89,-41,0,0,0.155133 -11700,3409:110,90,-41,0,0,0.152911 -11701,3409:111,91,-41,0,0,0.161137 -11702,3409:112,92,-41,0,0,0.153444 -11703,3409:113,93,-41,0,0,0.14094 -11704,3409:114,94,-41,0,0,0.146914 -11705,3409:215,95,-41,0,0,0.151399 -11706,3409:216,96,-41,0,0,0.147779 -11707,3409:217,97,-41,0,0,0.144485 -11708,3409:218,98,-41,0,0,0.140828 -11709,3409:219,99,-41,0,0,0.138323 -11710,3410:110,100,-41,0,0,0.138789 -11711,3410:111,101,-41,0,0,0.139121 -11712,3410:112,102,-41,0,0,0.137176 -11713,3410:113,103,-41,0,0,0.129473 -11714,3410:114,104,-41,0,0,0.127918 -11715,3410:215,105,-41,0,0,0.130566 -11716,3410:216,106,-41,0,0,0.127929 -11717,3410:217,107,-41,0,0,0.123815 -11718,3410:218,108,-41,0,0,0.134415 -11719,3410:219,109,-41,0,0,0.134403 -11720,3411:110,110,-41,0,0,0.129172 -11721,3411:111,111,-41,0,0,0.129462 -11722,3411:112,112,-41,0,0,0.132952 -11723,3411:113,113,-41,0,0,0.139207 -11724,3411:114,114,-41,0,0,0.141988 -11725,3411:215,115,-41,0,0,0.147379 -11726,3411:216,116,-41,0,0,0.154206 -11727,3411:217,117,-41,0,0,0.148401 -11728,3411:218,118,-41,0,0,0.142879 -11729,3411:219,119,-41,0,0,0.143396 -11730,3412:110,120,-41,0,0,0.148376 -11731,3412:111,121,-41,0,0,0.163259 -11732,3412:112,122,-41,0,0,0.168533 -11733,3412:113,123,-41,0,0,0.166143 -11734,3412:114,124,-41,0,0,0.1579 -11735,3412:215,125,-41,0,0,0.158201 -11736,3412:216,126,-41,0,0,0.159601 -11737,3412:217,127,-41,0,0,0.170021 -11738,3412:218,128,-41,0,0,0.185062 -11739,3412:219,129,-41,0,0,0.17917 -11740,3413:110,130,-41,0,0,0.178235 -11741,3413:111,131,-41,0,0,0.177769 -11742,3413:112,132,-41,0,0,0.177019 -11743,3413:113,133,-41,0,0,0.174578 -11744,3413:114,134,-41,0,0,0.173868 -11745,3413:215,135,-41,0,0,0.171432 -11746,3413:216,136,-41,0,0,0.168289 -11747,3413:217,137,-41,0,0,0.16368 -11748,3413:218,138,-41,0,0,0.162447 -11749,3413:219,139,-41,0,0,0.171432 -11750,3414:110,140,-41,0,0,0.172002 -11751,3414:111,141,-41,0,0,0.197926 -11752,3414:112,142,-41,0,0,0.2025 -11753,3414:113,143,-41,0,0,0.200088 -11754,3414:114,144,-41,0,0,0.178657 -11755,3414:215,145,-41,0,0,0.168663 -11756,3414:216,146,-41,0,0,0.180412 -11757,3414:217,147,-41,0,0,0.192823 -11758,3414:218,148,-41,0,0,0.198481 -11759,3414:219,149,-41,0,0,0.190721 -11760,3415:110,150,-41,0,0,0.186756 -11761,3415:111,151,-41,0,0,0.17272 -11762,3415:112,152,-41,0,0,0.172823 -11763,3415:113,153,-41,0,0,0.189771 -11764,3415:114,154,-41,0,0,0.217599 -11765,3415:215,155,-41,0,0,0.217827 -11766,3415:216,156,-41,0,0,0.206208 -11767,3415:217,157,-41,0,0,0.180184 -11768,3415:218,158,-41,0,0,0.196446 -11769,3415:219,159,-41,0,0,0.204749 -11770,3416:110,160,-41,0,0,0.198907 -11771,3416:111,161,-41,0,0,0.200763 -11772,3416:112,162,-41,0,0,0.201903 -11773,3416:113,163,-41,0,0,0.191913 -11774,3416:114,164,-41,0,0,0.191388 -11775,3416:215,165,-41,0,0,0.193575 -11776,3416:216,166,-41,0,0,0.196738 -11777,3416:217,167,-41,0,0,0.194314 -11778,3416:218,168,-41,0,0,0.192583 -11779,3416:219,169,-41,0,0,0.186881 -11780,3417:110,170,-41,0,0,0.185263 -11781,3417:111,171,-41,0,0,0.182626 -11782,3417:112,172,-41,0,0,0.181524 -11783,3417:113,173,-41,0,0,0.181829 -11784,3417:114,174,-41,0,0,0.181799 -11785,3417:215,175,-41,0,0,0.182335 -11786,3417:216,176,-41,0,0,0.177109 -11787,3417:217,177,-41,0,0,0.172794 -11788,3417:218,178,-41,0,0,0.172765 -11789,3417:219,179,-41,0,0,0.173603 -11790,3418:110,180,-41,0,0,0.173191 -11791,5418:100,-180,-40,0,0,0.180336 -11792,5417:209,-179,-40,0,0,0.173706 -11793,5417:208,-178,-40,0,0,0.177379 -11794,5417:207,-177,-40,0,0,0.200533 -11795,5417:206,-176,-40,0,0,0.193752 -11796,5417:205,-175,-40,0,0,0.191467 -11797,5417:104,-174,-40,0,0,0.189518 -11798,5417:103,-173,-40,0,0,0.191801 -11799,5417:102,-172,-40,0,0,0.209984 -11800,5417:101,-171,-40,0,0,0.210206 -11801,5417:100,-170,-40,0,0,0.206596 -11802,5416:209,-169,-40,0,0,0.219002 -11803,5416:208,-168,-40,0,0,0.225466 -11804,5416:207,-167,-40,0,0,0.227048 -11805,5416:206,-166,-40,0,0,0.214883 -11806,5416:205,-165,-40,0,0,0.198498 -11807,5416:104,-164,-40,0,0,0.208675 -11808,5416:103,-163,-40,0,0,0.218984 -11809,5416:102,-162,-40,0,0,0.220764 -11810,5416:101,-161,-40,0,0,0.218826 -11811,5416:100,-160,-40,0,0,0.22133 -11812,5415:209,-159,-40,0,0,0.225968 -11813,5415:208,-158,-40,0,0,0.233826 -11814,5415:207,-157,-40,0,0,0.237844 -11815,5415:206,-156,-40,0,0,0.230875 -11816,5415:205,-155,-40,0,0,0.23042 -11817,5415:104,-154,-40,0,0,0.227355 -11818,5415:103,-153,-40,0,0,0.229873 -11819,5415:102,-152,-40,0,0,0.2346 -11820,5415:101,-151,-40,0,0,0.233771 -11821,5415:100,-150,-40,0,0,0.23632 -11822,5414:209,-149,-40,0,0,0.235431 -11823,5414:208,-148,-40,0,0,0.233035 -11824,5414:207,-147,-40,0,0,0.233587 -11825,5414:206,-146,-40,0,0,0.235931 -11826,5414:205,-145,-40,0,0,0.234213 -11827,5414:104,-144,-40,0,0,0.232797 -11828,5414:103,-143,-40,0,0,0.230912 -11829,5414:102,-142,-40,0,0,0.231022 -11830,5414:101,-141,-40,0,0,0.235505 -11831,5414:100,-140,-40,0,0,0.234286 -11832,5413:209,-139,-40,0,0,0.231551 -11833,5413:208,-138,-40,0,0,0.230912 -11834,5413:207,-137,-40,0,0,0.229601 -11835,5413:206,-136,-40,0,0,0.228132 -11836,5413:205,-135,-40,0,0,0.227662 -11837,5413:104,-134,-40,0,0,0.225861 -11838,5413:103,-133,-40,0,0,0.223498 -11839,5413:102,-132,-40,0,0,0.223498 -11840,5413:101,-131,-40,0,0,0.222217 -11841,5413:100,-130,-40,0,0,0.222057 -11842,5412:209,-129,-40,0,0,0.221968 -11843,5412:208,-128,-40,0,0,0.221383 -11844,5412:207,-127,-40,0,0,0.220499 -11845,5412:206,-126,-40,0,0,0.220658 -11846,5412:205,-125,-40,0,0,0.218405 -11847,5412:104,-124,-40,0,0,0.213931 -11848,5412:103,-123,-40,0,0,0.205436 -11849,5412:102,-122,-40,0,0,0.204766 -11850,5412:101,-121,-40,0,0,0.204398 -11851,5412:100,-120,-40,0,0,0.203364 -11852,5411:209,-119,-40,0,0,0.199169 -11853,5411:208,-118,-40,0,0,0.200846 -11854,5411:207,-117,-40,0,0,0.197796 -11855,5411:206,-116,-40,0,0,0.19858 -11856,5411:205,-115,-40,0,0,0.203031 -11857,5411:104,-114,-40,0,0,0.202799 -11858,5411:103,-113,-40,0,0,0.199284 -11859,5411:102,-112,-40,0,0,0.192599 -11860,5411:101,-111,-40,0,0,0.186055 -11861,5411:100,-110,-40,0,0,0.189487 -11862,5410:209,-109,-40,0,0,0.19034 -11863,5410:208,-108,-40,0,0,0.183948 -11864,5410:207,-107,-40,0,0,0.187272 -11865,5410:206,-106,-40,0,0,0.19034 -11866,5410:205,-105,-40,0,0,0.187131 -11867,5410:104,-104,-40,0,0,0.186866 -11868,5410:103,-103,-40,0,0,0.183271 -11869,5410:102,-102,-40,0,0,0.181723 -11870,5410:101,-101,-40,0,0,0.184319 -11871,5410:100,-100,-40,0,0,0.183733 -11872,5409:209,-99,-40,0,0,0.180412 -11873,5409:208,-98,-40,0,0,0.179669 -11874,5409:207,-97,-40,0,0,0.177529 -11875,5409:206,-96,-40,0,0,0.1769 -11876,5409:205,-95,-40,0,0,0.175498 -11877,5409:104,-94,-40,0,0,0.177934 -11878,5409:103,-93,-40,0,0,0.179049 -11879,5409:102,-92,-40,0,0,0.177364 -11880,5409:101,-91,-40,0,0,0.176795 -11881,5409:100,-90,-40,0,0,0.175989 -11882,5408:209,-89,-40,0,0,0.176123 -11883,5408:208,-88,-40,0,0,0.176108 -11884,5408:207,-87,-40,0,0,0.176975 -11885,5408:206,-86,-40,0,0,0.173441 -11886,5408:205,-85,-40,0,0,0.174578 -11887,5408:104,-84,-40,0,0,0.173323 -11888,5408:103,-83,-40,0,0,0.17446 -11889,5408:102,-82,-40,0,0,0.17911 -11890,5408:101,-81,-40,0,0,0.185604 -11891,5408:100,-80,-40,0,0,0.185511 -11892,5407:209,-79,-40,0,0,0.184937 -11893,5407:208,-78,-40,0,0,0.182641 -11894,5407:207,-77,-40,0,0,0.183102 -11895,5407:206,-76,-40,0,0,0.20197 -11896,5406:207,-67,-40,0,0,0.206074 -11897,5406:206,-66,-40,0,0,0.195621 -11898,5406:205,-65,-40,0,0,0.190087 -11899,5406:104,-64,-40,0,0,0.185465 -11900,5406:103,-63,-40,0,0,0.186912 -11901,5406:102,-62,-40,0,0,0.18671 -11902,5406:101,-61,-40,0,0,0.197861 -11903,5406:100,-60,-40,0,0,0.196203 -11904,5405:209,-59,-40,0,0,0.188526 -11905,5405:208,-58,-40,0,0,0.182197 -11906,5405:207,-57,-40,0,0,0.174386 -11907,5405:206,-56,-40,0,0,0.166755 -11908,5405:205,-55,-40,0,0,0.16072 -11909,5405:104,-54,-40,0,0,0.149822 -11910,5405:103,-53,-40,0,0,0.152512 -11911,5405:102,-52,-40,0,0,0.153364 -11912,5405:101,-51,-40,0,0,0.15749 -11913,5405:100,-50,-40,0,0,0.144332 -11914,5404:209,-49,-40,0,0,0.146696 -11915,5404:208,-48,-40,0,0,0.144421 -11916,5404:207,-47,-40,0,0,0.146195 -11917,5404:206,-46,-40,0,0,0.153791 -11918,5404:205,-45,-40,0,0,0.149299 -11919,5404:104,-44,-40,0,0,0.152127 -11920,5404:103,-43,-40,0,0,0.144802 -11921,5404:102,-42,-40,0,0,0.139134 -11922,5404:101,-41,-40,0,0,0.134559 -11923,5404:100,-40,-40,0,0,0.132609 -11924,5403:209,-39,-40,0,0,0.142439 -11925,5403:208,-38,-40,0,0,0.146323 -11926,5403:207,-37,-40,0,0,0.14658 -11927,5403:206,-36,-40,0,0,0.141064 -11928,5403:205,-35,-40,0,0,0.140146 -11929,5403:104,-34,-40,0,0,0.140295 -11930,5403:103,-33,-40,0,0,0.138152 -11931,5403:102,-32,-40,0,0,0.137712 -11932,5403:101,-31,-40,0,0,0.138655 -11933,5403:100,-30,-40,0,0,0.138348 -11934,5402:209,-29,-40,0,0,0.138458 -11935,5402:208,-28,-40,0,0,0.143952 -11936,5402:207,-27,-40,0,0,0.141763 -11937,5402:206,-26,-40,0,0,0.13588 -11938,5402:205,-25,-40,0,0,0.139097 -11939,5402:104,-24,-40,0,0,0.133486 -11941,5402:102,-22,-40,0,0,0.143712 -11942,5402:101,-21,-40,0,0,0.142289 -11943,5402:100,-20,-40,0,0,0.143333 -11944,5401:209,-19,-40,0,0,0.142577 -11945,5401:208,-18,-40,0,0,0.136788 -11946,5401:207,-17,-40,0,0,0.134846 -11947,5401:206,-16,-40,0,0,0.147766 -11948,5401:205,-15,-40,0,0,0.152671 -11949,5401:104,-14,-40,0,0,0.145414 -11950,5401:103,-13,-40,0,0,0.144041 -11951,5401:102,-12,-40,0,0,0.136654 -11952,5401:101,-11,-40,0,0,0.126152 -11953,5401:100,-10,-40,0,0,0.126708 -11954,5400:209,-9,-40,0,0,0.12223 -11955,5400:208,-8,-40,0,0,0.114481 -11956,5400:207,-7,-40,0,0,0.115768 -11957,5400:206,-6,-40,0,0,0.117643 -11958,5400:205,-5,-40,0,0,0.12287 -11959,5400:104,-4,-40,0,0,0.128907 -11960,5400:103,-3,-40,0,0,0.127494 -11961,5400:102,-2,-40,0,0,0.118606 -11962,5400:101,-1,-40,0,0,0.125847 -11963,3400:101,0,-40,0,0,0.143927 -11964,3400:101,1,-40,0,0,0.151756 -11965,3400:102,2,-40,0,0,0.144663 -11966,3400:103,3,-40,0,0,0.131877 -11967,3400:104,4,-40,0,0,0.123904 -11968,3400:205,5,-40,0,0,0.12027 -11969,3400:206,6,-40,0,0,0.125971 -11970,3400:207,7,-40,0,0,0.127186 -11971,3400:208,8,-40,0,0,0.112128 -11972,3400:209,9,-40,0,0,0.121296 -11973,3401:100,10,-40,0,0,0.122119 -11974,3401:101,11,-40,0,0,0.124519 -11975,3401:102,12,-40,0,0,0.124765 -11976,3401:103,13,-40,0,0,0.124664 -11977,3401:104,14,-40,0,0,0.119944 -11978,3401:205,15,-40,0,0,0.121801 -11979,3401:206,16,-40,0,0,0.136122 -11980,3401:207,17,-40,0,0,0.133711 -11981,3401:208,18,-40,0,0,0.117921 -11982,3401:209,19,-40,0,0,0.118413 -11983,3402:100,20,-40,0,0,0.126039 -11984,3402:101,21,-40,0,0,0.119501 -11985,3402:102,22,-40,0,0,0.123871 -11986,3402:103,23,-40,0,0,0.114961 -11987,3402:104,24,-40,0,0,0.118918 -11988,3402:205,25,-40,0,0,0.123971 -11989,3402:206,26,-40,0,0,0.120738 -11990,3402:207,27,-40,0,0,0.116475 -11991,3402:208,28,-40,0,0,0.126492 -11992,3402:209,29,-40,0,0,0.119619 -11993,3403:100,30,-40,0,0,0.11538 -11994,3403:101,31,-40,0,0,0.11744 -11995,3403:102,32,-40,0,0,0.123037 -11996,3403:103,33,-40,0,0,0.121658 -11997,3403:104,34,-40,0,0,0.114106 -11998,3403:205,35,-40,0,0,0.12111 -11999,3403:206,36,-40,0,0,0.120096 -12000,3403:207,37,-40,0,0,0.115495 -12001,3403:208,38,-40,0,0,0.110481 -12002,3403:209,39,-40,0,0,0.119544 -12003,3404:100,40,-40,0,0,0.126231 -12004,3404:101,41,-40,0,0,0.125655 -12005,3404:102,42,-40,0,0,0.122054 -12006,3404:103,43,-40,0,0,0.119641 -12007,3404:104,44,-40,0,0,0.11909 -12008,3404:205,45,-40,0,0,0.117121 -12009,3404:206,46,-40,0,0,0.114856 -12010,3404:207,47,-40,0,0,0.11334 -12011,3404:208,48,-40,0,0,0.124418 -12012,3404:209,49,-40,0,0,0.125824 -12013,3405:100,50,-40,0,0,0.118918 -12014,3405:101,51,-40,0,0,0.119274 -12015,3405:102,52,-40,0,0,0.119522 -12016,3405:103,53,-40,0,0,0.11881 -12017,3405:104,54,-40,0,0,0.11743 -12018,3405:205,55,-40,0,0,0.119684 -12019,3405:206,56,-40,0,0,0.119188 -12020,3405:207,57,-40,0,0,0.117942 -12021,3405:208,58,-40,0,0,0.11881 -12022,3405:209,59,-40,0,0,0.120053 -12023,3406:100,60,-40,0,0,0.121537 -12024,3406:101,61,-40,0,0,0.12234 -12025,3406:102,62,-40,0,0,0.119977 -12026,3406:103,63,-40,0,0,0.116179 -12027,3406:104,64,-40,0,0,0.115642 -12028,3406:205,65,-40,0,0,0.113774 -12029,3406:206,66,-40,0,0,0.112712 -12030,3406:207,67,-40,0,0,0.114606 -12031,3406:208,68,-40,0,0,0.11538 -12032,3406:209,69,-40,0,0,0.117622 -12033,3407:100,70,-40,0,0,0.115212 -12034,3407:101,71,-40,0,0,0.111485 -12035,3407:102,72,-40,0,0,0.110855 -12036,3407:104,74,-40,0,0,0.107262 -12037,3407:205,75,-40,0,0,0.11364 -12038,3407:206,76,-40,0,0,0.1301 -12039,3407:207,77,-40,0,0,0.138201 -12040,3407:208,78,-40,0,0,0.140245 -12041,3407:209,79,-40,0,0,0.133747 -12042,3408:100,80,-40,0,0,0.14567 -12043,3408:101,81,-40,0,0,0.142502 -12044,3408:102,82,-40,0,0,0.138262 -12045,3408:103,83,-40,0,0,0.155308 -12046,3408:104,84,-40,0,0,0.154407 -12047,3408:205,85,-40,0,0,0.144028 -12048,3408:206,86,-40,0,0,0.140418 -12049,3408:207,87,-40,0,0,0.141413 -12050,3408:208,88,-40,0,0,0.166656 -12051,3408:209,89,-40,0,0,0.174282 -12052,3409:100,90,-40,0,0,0.157791 -12053,3409:101,91,-40,0,0,0.159587 -12054,3409:102,92,-40,0,0,0.157395 -12055,3409:103,93,-40,0,0,0.155483 -12056,3409:104,94,-40,0,0,0.159822 -12057,3409:205,95,-40,0,0,0.159381 -12058,3409:206,96,-40,0,0,0.152871 -12059,3409:207,97,-40,0,0,0.153084 -12060,3409:208,98,-40,0,0,0.153871 -12061,3409:209,99,-40,0,0,0.151413 -12062,3410:100,100,-40,0,0,0.138949 -12063,3410:101,101,-40,0,0,0.135422 -12064,3410:102,102,-40,0,0,0.135122 -12065,3410:103,103,-40,0,0,0.136231 -12066,3410:104,104,-40,0,0,0.139725 -12067,3410:205,105,-40,0,0,0.142452 -12068,3410:206,106,-40,0,0,0.140629 -12069,3410:207,107,-40,0,0,0.132278 -12070,3410:208,108,-40,0,0,0.139097 -12071,3410:209,109,-40,0,0,0.140022 -12072,3411:100,110,-40,0,0,0.138961 -12073,3411:101,111,-40,0,0,0.142038 -12074,3411:102,112,-40,0,0,0.139787 -12075,3411:103,113,-40,0,0,0.148414 -12076,3411:104,114,-40,0,0,0.151836 -12077,3411:205,115,-40,0,0,0.152353 -12078,3411:206,116,-40,0,0,0.153551 -12079,3411:207,117,-40,0,0,0.153257 -12080,3411:208,118,-40,0,0,0.159037 -12081,3411:209,119,-40,0,0,0.161151 -12082,3412:100,120,-40,0,0,0.166584 -12083,3412:101,121,-40,0,0,0.186226 -12084,3412:102,122,-40,0,0,0.178853 -12085,3412:103,123,-40,0,0,0.175052 -12086,3412:104,124,-40,0,0,0.170864 -12087,3412:205,125,-40,0,0,0.168922 -12088,3412:206,126,-40,0,0,0.166043 -12089,3412:207,127,-40,0,0,0.184907 -12090,3412:208,128,-40,0,0,0.187397 -12091,3412:209,129,-40,0,0,0.187867 -12092,3413:100,130,-40,0,0,0.188243 -12093,3413:101,131,-40,0,0,0.19161 -12094,3413:102,132,-40,0,0,0.192599 -12095,3413:103,133,-40,0,0,0.189187 -12096,3413:104,134,-40,0,0,0.181906 -12097,3413:205,135,-40,0,0,0.188118 -12098,3413:206,136,-40,0,0,0.191181 -12099,3413:207,137,-40,0,0,0.192791 -12100,3413:208,138,-40,0,0,0.183563 -12101,3413:209,139,-40,0,0,0.170587 -12102,3414:100,140,-40,0,0,0.187491 -12103,3414:101,141,-40,0,0,0.199202 -12104,3414:102,142,-40,0,0,0.197421 -12105,3414:103,143,-40,0,0,0.186523 -12106,3414:104,144,-40,0,0,0.170907 -12107,3414:205,145,-40,0,0,0.178325 -12108,3414:206,146,-40,0,0,0.183333 -12109,3414:207,147,-40,0,0,0.198498 -12110,3414:208,148,-40,0,0,0.205067 -12111,3414:209,149,-40,0,0,0.203364 -12112,3415:100,150,-40,0,0,0.196349 -12113,3415:101,151,-40,0,0,0.191181 -12114,3415:102,152,-40,0,0,0.187084 -12115,3415:103,153,-40,0,0,0.215977 -12116,3415:104,154,-40,0,0,0.211094 -12117,3415:205,155,-40,0,0,0.207794 -12118,3415:206,156,-40,0,0,0.215838 -12119,3415:207,157,-40,0,0,0.209933 -12120,3415:208,158,-40,0,0,0.208031 -12121,3415:209,159,-40,0,0,0.205788 -12122,3416:100,160,-40,0,0,0.203314 -12123,3416:101,161,-40,0,0,0.202799 -12124,3416:102,162,-40,0,0,0.200846 -12125,3416:103,163,-40,0,0,0.200203 -12126,3416:104,164,-40,0,0,0.200598 -12127,3416:205,165,-40,0,0,0.198383 -12128,3416:206,166,-40,0,0,0.202019 -12129,3416:207,167,-40,0,0,0.195362 -12130,3416:208,168,-40,0,0,0.193624 -12131,3416:209,169,-40,0,0,0.190451 -12132,3417:100,170,-40,0,0,0.190467 -12133,3417:101,171,-40,0,0,0.189045 -12134,3417:102,172,-40,0,0,0.187569 -12135,3417:103,173,-40,0,0,0.185884 -12136,3417:104,174,-40,0,0,0.184783 -12137,3417:205,175,-40,0,0,0.184535 -12138,3417:206,176,-40,0,0,0.182396 -12139,3417:207,177,-40,0,0,0.179593 -12140,3417:208,178,-40,0,0,0.179987 -12141,3417:209,179,-40,0,0,0.180033 -12142,3418:100,180,-40,0,0,0.180336 -12143,5318:390,-180,-39,0,0,0.18531 -12144,5317:499,-179,-39,0,0,0.177694 -12145,5317:498,-178,-39,0,0,0.179336 -12146,5317:497,-177,-39,0,0,0.204515 -12147,5317:496,-176,-39,0,0,0.211934 -12148,5317:495,-175,-39,0,0,0.209711 -12149,5317:394,-174,-39,0,0,0.205301 -12150,5317:393,-173,-39,0,0,0.216186 -12151,5317:392,-172,-39,0,0,0.224856 -12152,5317:391,-171,-39,0,0,0.218072 -12153,5317:390,-170,-39,0,0,0.216952 -12154,5316:499,-169,-39,0,0,0.222644 -12155,5316:498,-168,-39,0,0,0.228222 -12156,5316:497,-167,-39,0,0,0.227138 -12157,5316:496,-166,-39,0,0,0.222608 -12158,5316:495,-165,-39,0,0,0.216848 -12159,5316:394,-164,-39,0,0,0.221614 -12160,5316:393,-163,-39,0,0,0.224087 -12161,5316:392,-162,-39,0,0,0.232999 -12162,5316:391,-161,-39,0,0,0.24431 -12163,5316:390,-160,-39,0,0,0.240367 -12164,5315:499,-159,-39,0,0,0.233238 -12165,5315:498,-158,-39,0,0,0.239113 -12166,5315:497,-157,-39,0,0,0.237881 -12167,5315:496,-156,-39,0,0,0.243155 -12168,5315:495,-155,-39,0,0,0.235154 -12169,5315:394,-154,-39,0,0,0.234194 -12170,5315:393,-153,-39,0,0,0.234858 -12171,5315:392,-152,-39,0,0,0.238515 -12172,5315:391,-151,-39,0,0,0.242833 -12173,5315:390,-150,-39,0,0,0.243401 -12174,5314:499,-149,-39,0,0,0.239973 -12175,5314:498,-148,-39,0,0,0.241269 -12176,5314:497,-147,-39,0,0,0.244728 -12177,5314:496,-146,-39,0,0,0.244291 -12178,5314:495,-145,-39,0,0,0.241871 -12179,5314:394,-144,-39,0,0,0.242192 -12180,5314:393,-143,-39,0,0,0.242381 -12181,5314:392,-142,-39,0,0,0.242267 -12182,5314:391,-141,-39,0,0,0.242211 -12183,5314:390,-140,-39,0,0,0.239356 -12184,5313:499,-139,-39,0,0,0.237788 -12185,5313:498,-138,-39,0,0,0.238049 -12186,5313:497,-137,-39,0,0,0.235801 -12187,5313:496,-136,-39,0,0,0.232797 -12188,5313:495,-135,-39,0,0,0.231551 -12189,5313:394,-134,-39,0,0,0.229111 -12190,5313:393,-133,-39,0,0,0.230565 -12191,5313:392,-132,-39,0,0,0.231643 -12192,5313:391,-131,-39,0,0,0.230383 -12193,5313:390,-130,-39,0,0,0.230347 -12194,5312:499,-129,-39,0,0,0.229892 -12195,5312:498,-128,-39,0,0,0.230165 -12196,5312:497,-127,-39,0,0,0.230274 -12197,5312:496,-126,-39,0,0,0.229328 -12198,5312:495,-125,-39,0,0,0.225933 -12199,5312:394,-124,-39,0,0,0.219952 -12200,5312:393,-123,-39,0,0,0.215369 -12201,5312:392,-122,-39,0,0,0.21556 -12202,5312:391,-121,-39,0,0,0.213327 -12203,5312:390,-120,-39,0,0,0.216047 -12204,5311:499,-119,-39,0,0,0.218668 -12205,5311:498,-118,-39,0,0,0.217145 -12206,5311:497,-117,-39,0,0,0.215264 -12207,5311:496,-116,-39,0,0,0.212569 -12208,5311:495,-115,-39,0,0,0.206141 -12209,5311:394,-114,-39,0,0,0.200105 -12210,5311:393,-113,-39,0,0,0.197438 -12211,5311:392,-112,-39,0,0,0.194717 -12212,5311:391,-111,-39,0,0,0.203481 -12213,5311:390,-110,-39,0,0,0.204917 -12214,5310:499,-109,-39,0,0,0.200549 -12215,5310:498,-108,-39,0,0,0.194717 -12216,5310:497,-107,-39,0,0,0.19356 -12217,5310:496,-106,-39,0,0,0.196073 -12218,5310:495,-105,-39,0,0,0.195863 -12219,5310:394,-104,-39,0,0,0.192935 -12220,5310:393,-103,-39,0,0,0.190562 -12221,5310:392,-102,-39,0,0,0.187178 -12222,5310:391,-101,-39,0,0,0.189282 -12223,5310:390,-100,-39,0,0,0.187992 -12224,5309:499,-99,-39,0,0,0.18435 -12225,5309:498,-98,-39,0,0,0.184134 -12226,5309:497,-97,-39,0,0,0.183102 -12227,5309:496,-96,-39,0,0,0.181753 -12228,5309:495,-95,-39,0,0,0.18261 -12229,5309:394,-94,-39,0,0,0.183163 -12230,5309:393,-93,-39,0,0,0.182994 -12231,5309:392,-92,-39,0,0,0.183225 -12232,5309:391,-91,-39,0,0,0.18435 -12233,5309:390,-90,-39,0,0,0.185511 -12234,5308:499,-89,-39,0,0,0.185635 -12235,5308:498,-88,-39,0,0,0.185698 -12236,5308:497,-87,-39,0,0,0.184644 -12237,5308:496,-86,-39,0,0,0.180291 -12238,5308:495,-85,-39,0,0,0.181554 -12239,5308:394,-84,-39,0,0,0.17973 -12240,5308:393,-83,-39,0,0,0.182994 -12241,5308:392,-82,-39,0,0,0.191674 -12242,5308:391,-81,-39,0,0,0.189424 -12243,5308:390,-80,-39,0,0,0.194894 -12244,5307:499,-79,-39,0,0,0.192631 -12245,5307:498,-78,-39,0,0,0.196025 -12246,5307:497,-77,-39,0,0,0.195184 -12247,5307:496,-76,-39,0,0,0.208539 -12248,5306:497,-67,-39,0,0,0.223998 -12249,5306:496,-66,-39,0,0,0.211026 -12250,5306:495,-65,-39,0,0,0.205268 -12251,5306:394,-64,-39,0,0,0.199284 -12252,5306:393,-63,-39,0,0,0.199202 -12253,5306:392,-62,-39,0,0,0.19953 -12254,5306:391,-61,-39,0,0,0.206899 -12255,5306:390,-60,-39,0,0,0.199169 -12256,5305:499,-59,-39,0,0,0.188134 -12257,5305:498,-58,-39,0,0,0.177694 -12258,5305:497,-57,-39,0,0,0.173 -12259,5305:496,-56,-39,0,0,0.163035 -12260,5305:495,-55,-39,0,0,0.153204 -12261,5305:394,-54,-39,0,0,0.165475 -12262,5305:393,-53,-39,0,0,0.205654 -12263,5305:392,-52,-39,0,0,0.210872 -12264,5305:391,-51,-39,0,0,0.217284 -12265,5305:390,-50,-39,0,0,0.219037 -12266,5304:499,-49,-39,0,0,0.211162 -12267,5304:498,-48,-39,0,0,0.207658 -12268,5304:497,-47,-39,0,0,0.199957 -12269,5304:496,-46,-39,0,0,0.184149 -12270,5304:495,-45,-39,0,0,0.166713 -12271,5304:394,-44,-39,0,0,0.172926 -12272,5304:393,-43,-39,0,0,0.17979 -12273,5304:392,-42,-39,0,0,0.154971 -12274,5304:391,-41,-39,0,0,0.15335 -12275,5304:390,-40,-39,0,0,0.163554 -12276,5303:499,-39,-39,0,0,0.163231 -12277,5303:498,-38,-39,0,0,0.156701 -12278,5303:497,-37,-39,0,0,0.150399 -12279,5303:496,-36,-39,0,0,0.15107 -12280,5303:495,-35,-39,0,0,0.154662 -12281,5303:394,-34,-39,0,0,0.163863 -12282,5303:393,-33,-39,0,0,0.163554 -12283,5303:392,-32,-39,0,0,0.161749 -12284,5303:391,-31,-39,0,0,0.154837 -12285,5303:390,-30,-39,0,0,0.152685 -12286,5302:499,-29,-39,0,0,0.150373 -12287,5302:498,-28,-39,0,0,0.146889 -12288,5302:497,-27,-39,0,0,0.142439 -12289,5302:496,-26,-39,0,0,0.155956 -12290,5302:495,-25,-39,0,0,0.156606 -12291,5302:394,-24,-39,0,0,0.149221 -12292,5302:393,-23,-39,0,0,0.143965 -12293,5302:392,-22,-39,0,0,0.14977 -12294,5302:391,-21,-39,0,0,0.156254 -12295,5302:390,-20,-39,0,0,0.156227 -12296,5301:499,-19,-39,0,0,0.15173 -12297,5301:498,-18,-39,0,0,0.155039 -12298,5301:497,-17,-39,0,0,0.166541 -12299,5301:496,-16,-39,0,0,0.163554 -12300,5301:495,-15,-39,0,0,0.151109 -12301,5301:394,-14,-39,0,0,0.151268 -12302,5301:393,-13,-39,0,0,0.150622 -12303,5301:392,-12,-39,0,0,0.149091 -12304,5301:391,-11,-39,0,0,0.141638 -12305,5301:390,-10,-39,0,0,0.135459 -12306,5300:499,-9,-39,0,0,0.12967 -12307,5300:498,-8,-39,0,0,0.130822 -12308,5300:497,-7,-39,0,0,0.142101 -12309,5300:496,-6,-39,0,0,0.166941 -12310,5300:495,-5,-39,0,0,0.169442 -12311,5300:394,-4,-39,0,0,0.164173 -12312,5300:393,-3,-39,0,0,0.150268 -12313,5300:392,-2,-39,0,0,0.153337 -12314,5300:391,-1,-39,0,0,0.156159 -12315,3300:391,0,-39,0,0,0.15775 -12316,3300:391,1,-39,0,0,0.150124 -12317,3300:392,2,-39,0,0,0.142791 -12318,3300:393,3,-39,0,0,0.151202 -12319,3300:394,4,-39,0,0,0.146722 -12320,3300:495,5,-39,0,0,0.13703 -12321,3300:496,6,-39,0,0,0.136509 -12322,3300:497,7,-39,0,0,0.135459 -12323,3300:498,8,-39,0,0,0.118488 -12324,3300:499,9,-39,0,0,0.116232 -12325,3301:390,10,-39,0,0,0.117889 -12326,3301:391,11,-39,0,0,0.127952 -12327,3301:392,12,-39,0,0,0.139146 -12328,3301:393,13,-39,0,0,0.134081 -12329,3301:394,14,-39,0,0,0.132313 -12330,3301:495,15,-39,0,0,0.132738 -12331,3301:496,16,-39,0,0,0.136315 -12332,3301:497,17,-39,0,0,0.130846 -12333,3301:498,18,-39,0,0,0.124239 -12334,3301:499,19,-39,0,0,0.132467 -12335,3302:390,20,-39,0,0,0.128768 -12336,3302:391,21,-39,0,0,0.124698 -12337,3302:392,22,-39,0,0,0.131936 -12338,3302:393,23,-39,0,0,0.11988 -12339,3302:394,24,-39,0,0,0.125812 -12340,3302:495,25,-39,0,0,0.126515 -12341,3302:496,26,-39,0,0,0.122528 -12342,3302:497,27,-39,0,0,0.129311 -12343,3302:498,28,-39,0,0,0.135989 -12344,3302:499,29,-39,0,0,0.137932 -12345,3303:390,30,-39,0,0,0.120379 -12346,3303:391,31,-39,0,0,0.115254 -12347,3303:392,32,-39,0,0,0.126856 -12348,3303:393,33,-39,0,0,0.128044 -12349,3303:394,34,-39,0,0,0.126515 -12350,3303:495,35,-39,0,0,0.127221 -12351,3303:496,36,-39,0,0,0.128274 -12352,3303:497,37,-39,0,0,0.131877 -12353,3303:498,38,-39,0,0,0.130228 -12354,3303:499,39,-39,0,0,0.122219 -12355,3304:390,40,-39,0,0,0.126016 -12356,3304:391,41,-39,0,0,0.13216 -12357,3304:392,42,-39,0,0,0.133581 -12358,3304:393,43,-39,0,0,0.133735 -12359,3304:394,44,-39,0,0,0.122119 -12360,3304:495,45,-39,0,0,0.123547 -12361,3304:496,46,-39,0,0,0.123882 -12362,3304:497,47,-39,0,0,0.125598 -12363,3304:498,48,-39,0,0,0.128469 -12364,3304:499,49,-39,0,0,0.127552 -12365,3305:390,50,-39,0,0,0.125609 -12366,3305:391,51,-39,0,0,0.126424 -12367,3305:392,52,-39,0,0,0.129358 -12368,3305:393,53,-39,0,0,0.13307 -12369,3305:394,54,-39,0,0,0.135977 -12370,3305:495,55,-39,0,0,0.133569 -12371,3305:496,56,-39,0,0,0.124373 -12372,3305:497,57,-39,0,0,0.123081 -12373,3305:498,58,-39,0,0,0.127792 -12374,3305:499,59,-39,0,0,0.125666 -12375,3306:390,60,-39,0,0,0.130158 -12376,3306:391,61,-39,0,0,0.127872 -12377,3306:392,62,-39,0,0,0.120281 -12378,3306:393,63,-39,0,0,0.119457 -12379,3306:394,64,-39,0,0,0.119123 -12380,3306:495,65,-39,0,0,0.118746 -12381,3306:496,66,-39,0,0,0.12681 -12382,3306:497,67,-39,0,0,0.122561 -12383,3306:498,68,-39,0,0,0.121044 -12384,3306:499,69,-39,0,0,0.124328 -12385,3307:390,70,-39,0,0,0.128182 -12386,3307:391,71,-39,0,0,0.113309 -12387,3307:392,72,-39,0,0,0.118864 -12388,3307:394,74,-39,0,0,0.121416 -12389,3307:495,75,-39,0,0,0.12168 -12390,3307:496,76,-39,0,0,0.13825 -12391,3307:497,77,-39,0,0,0.144841 -12392,3307:498,78,-39,0,0,0.147534 -12393,3307:499,79,-39,0,0,0.153657 -12394,3308:390,80,-39,0,0,0.15011 -12395,3308:391,81,-39,0,0,0.146105 -12396,3308:392,82,-39,0,0,0.148675 -12397,3308:393,83,-39,0,0,0.161721 -12398,3308:394,84,-39,0,0,0.159161 -12399,3308:495,85,-39,0,0,0.170675 -12400,3308:496,86,-39,0,0,0.177679 -12401,3308:497,87,-39,0,0,0.180519 -12402,3308:498,88,-39,0,0,0.173647 -12403,3308:499,89,-39,0,0,0.170602 -12404,3309:390,90,-39,0,0,0.176004 -12405,3309:391,91,-39,0,0,0.179442 -12406,3309:392,92,-39,0,0,0.181982 -12407,3309:393,93,-39,0,0,0.168087 -12408,3309:394,94,-39,0,0,0.161791 -12409,3309:495,95,-39,0,0,0.159946 -12410,3309:496,96,-39,0,0,0.156796 -12411,3309:497,97,-39,0,0,0.156281 -12412,3309:498,98,-39,0,0,0.155214 -12413,3309:499,99,-39,0,0,0.147715 -12414,3310:390,100,-39,0,0,0.140654 -12415,3310:391,101,-39,0,0,0.141301 -12416,3310:392,102,-39,0,0,0.143081 -12417,3310:393,103,-39,0,0,0.146169 -12418,3310:394,104,-39,0,0,0.148557 -12419,3310:495,105,-39,0,0,0.142879 -12420,3310:496,106,-39,0,0,0.139515 -12421,3310:497,107,-39,0,0,0.153952 -12422,3310:498,108,-39,0,0,0.155079 -12423,3310:499,109,-39,0,0,0.147534 -12424,3311:390,110,-39,0,0,0.147935 -12425,3311:391,111,-39,0,0,0.155402 -12426,3311:392,112,-39,0,0,0.172632 -12427,3311:393,113,-39,0,0,0.182166 -12428,3311:394,114,-39,0,0,0.184334 -12429,3311:495,115,-39,0,0,0.165404 -12430,3311:496,116,-39,0,0,0.160776 -12431,3311:497,117,-39,0,0,0.182764 -12432,3311:498,118,-39,0,0,0.188338 -12433,3311:499,119,-39,0,0,0.176586 -12434,3312:390,120,-39,0,0,0.161679 -12435,3312:391,121,-39,0,0,0.186569 -12436,3312:392,122,-39,0,0,0.184118 -12437,3312:393,123,-39,0,0,0.188416 -12438,3312:394,124,-39,0,0,0.187851 -12439,3312:495,125,-39,0,0,0.172017 -12440,3312:496,126,-39,0,0,0.179503 -12441,3312:497,127,-39,0,0,0.185698 -12442,3312:498,128,-39,0,0,0.197275 -12443,3312:499,129,-39,0,0,0.198858 -12444,3313:390,130,-39,0,0,0.189834 -12445,3313:391,131,-39,0,0,0.191754 -12446,3313:392,132,-39,0,0,0.196657 -12447,3313:393,133,-39,0,0,0.202433 -12448,3313:394,134,-39,0,0,0.19554 -12449,3313:495,135,-39,0,0,0.191833 -12450,3313:496,136,-39,0,0,0.19721 -12451,3313:497,137,-39,0,0,0.205687 -12452,3313:498,138,-39,0,0,0.206646 -12453,3313:499,139,-39,0,0,0.192967 -12454,3314:390,140,-39,0,0,0.191722 -12455,3314:391,141,-39,0,0,0.204598 -12456,3314:392,142,-39,0,0,0.202699 -12457,3314:393,143,-39,0,0,0.198759 -12458,3314:394,144,-39,0,0,0.199907 -12459,3314:495,145,-39,0,0,0.201754 -12460,3314:496,146,-39,0,0,0.204231 -12461,3314:497,147,-39,0,0,0.211522 -12462,3314:498,148,-39,0,0,0.207017 -12463,3314:499,149,-39,0,0,0.203364 -12464,3315:390,150,-39,0,0,0.199349 -12465,3315:391,151,-39,0,0,0.213103 -12466,3315:392,152,-39,0,0,0.235912 -12467,3315:393,153,-39,0,0,0.213172 -12468,3315:394,154,-39,0,0,0.213655 -12469,3315:495,155,-39,0,0,0.214727 -12470,3315:496,156,-39,0,0,0.213948 -12471,3315:497,157,-39,0,0,0.210376 -12472,3315:498,158,-39,0,0,0.207422 -12473,3315:499,159,-39,0,0,0.207084 -12474,3316:390,160,-39,0,0,0.205973 -12475,3316:391,161,-39,0,0,0.203198 -12476,3316:392,162,-39,0,0,0.209916 -12477,3316:393,163,-39,0,0,0.203847 -12478,3316:394,164,-39,0,0,0.208895 -12479,3316:495,165,-39,0,0,0.205687 -12480,3316:496,166,-39,0,0,0.203297 -12481,3316:497,167,-39,0,0,0.214762 -12482,3316:498,168,-39,0,0,0.202516 -12483,3316:499,169,-39,0,0,0.197372 -12484,3317:390,170,-39,0,0,0.193832 -12485,3317:391,171,-39,0,0,0.192631 -12486,3317:392,172,-39,0,0,0.190927 -12487,3317:393,173,-39,0,0,0.190008 -12488,3317:394,174,-39,0,0,0.189424 -12489,3317:495,175,-39,0,0,0.187616 -12490,3317:496,176,-39,0,0,0.185092 -12491,3317:497,177,-39,0,0,0.184272 -12492,3317:498,178,-39,0,0,0.190927 -12493,3317:499,179,-39,0,0,0.190609 -12494,3318:390,180,-39,0,0,0.18531 -12495,5318:380,-180,-38,0,0,0.196609 -12496,5317:489,-179,-38,0,0,0.185589 -12497,5317:488,-178,-38,0,0,0.18017 -12498,5317:487,-177,-38,0,0,0.21226 -12499,5317:486,-176,-38,0,0,0.224749 -12500,5317:485,-175,-38,0,0,0.224516 -12501,5317:384,-174,-38,0,0,0.216709 -12502,5317:383,-173,-38,0,0,0.223962 -12503,5317:382,-172,-38,0,0,0.223748 -12504,5317:381,-171,-38,0,0,0.215091 -12505,5317:380,-170,-38,0,0,0.212965 -12506,5316:489,-169,-38,0,0,0.240949 -12507,5316:488,-168,-38,0,0,0.233734 -12508,5316:487,-167,-38,0,0,0.224749 -12509,5316:486,-166,-38,0,0,0.232558 -12510,5316:485,-165,-38,0,0,0.230402 -12511,5316:384,-164,-38,0,0,0.223748 -12512,5316:383,-163,-38,0,0,0.225161 -12513,5316:382,-162,-38,0,0,0.233568 -12514,5316:381,-161,-38,0,0,0.248334 -12515,5316:380,-160,-38,0,0,0.243155 -12516,5315:489,-159,-38,0,0,0.242493 -12517,5315:488,-158,-38,0,0,0.245317 -12518,5315:487,-157,-38,0,0,0.243249 -12519,5315:486,-156,-38,0,0,0.249333 -12520,5315:485,-155,-38,0,0,0.250566 -12521,5315:384,-154,-38,0,0,0.248776 -12522,5315:383,-153,-38,0,0,0.248527 -12523,5315:382,-152,-38,0,0,0.247511 -12524,5315:381,-151,-38,0,0,0.252113 -12525,5315:380,-150,-38,0,0,0.253626 -12526,5314:489,-149,-38,0,0,0.250026 -12527,5314:488,-148,-38,0,0,0.251745 -12528,5314:487,-147,-38,0,0,0.252713 -12529,5314:486,-146,-38,0,0,0.251048 -12530,5314:485,-145,-38,0,0,0.248584 -12531,5314:384,-144,-38,0,0,0.247893 -12532,5314:383,-143,-38,0,0,0.24941 -12533,5314:382,-142,-38,0,0,0.249583 -12534,5314:381,-141,-38,0,0,0.245964 -12535,5314:380,-140,-38,0,0,0.247645 -12536,5313:489,-139,-38,0,0,0.246975 -12537,5313:488,-138,-38,0,0,0.245107 -12538,5313:487,-137,-38,0,0,0.241852 -12539,5313:486,-136,-38,0,0,0.2393 -12540,5313:485,-135,-38,0,0,0.23915 -12541,5313:384,-134,-38,0,0,0.237193 -12542,5313:383,-133,-38,0,0,0.233293 -12543,5313:382,-132,-38,0,0,0.235986 -12544,5313:381,-131,-38,0,0,0.238384 -12545,5313:380,-130,-38,0,0,0.240949 -12546,5312:489,-129,-38,0,0,0.239486 -12547,5312:488,-128,-38,0,0,0.237211 -12548,5312:487,-127,-38,0,0,0.23532 -12549,5312:486,-126,-38,0,0,0.233458 -12550,5312:485,-125,-38,0,0,0.23104 -12551,5312:384,-124,-38,0,0,0.228168 -12552,5312:383,-123,-38,0,0,0.226526 -12553,5312:382,-122,-38,0,0,0.227012 -12554,5312:381,-121,-38,0,0,0.230347 -12555,5312:380,-120,-38,0,0,0.231058 -12556,5311:489,-119,-38,0,0,0.225556 -12557,5311:488,-118,-38,0,0,0.222413 -12558,5311:487,-117,-38,0,0,0.219037 -12559,5311:486,-116,-38,0,0,0.217792 -12560,5311:485,-115,-38,0,0,0.219301 -12561,5311:384,-114,-38,0,0,0.214865 -12562,5311:383,-113,-38,0,0,0.206781 -12563,5311:382,-112,-38,0,0,0.207794 -12564,5311:381,-111,-38,0,0,0.216133 -12565,5311:380,-110,-38,0,0,0.207185 -12566,5310:489,-109,-38,0,0,0.204431 -12567,5310:488,-108,-38,0,0,0.201357 -12568,5310:487,-107,-38,0,0,0.200203 -12569,5310:486,-106,-38,0,0,0.202152 -12570,5310:485,-105,-38,0,0,0.200549 -12571,5310:384,-104,-38,0,0,0.197943 -12572,5310:383,-103,-38,0,0,0.19554 -12573,5310:382,-102,-38,0,0,0.194556 -12574,5310:381,-101,-38,0,0,0.194943 -12575,5310:380,-100,-38,0,0,0.195362 -12576,5309:489,-99,-38,0,0,0.194862 -12577,5309:488,-98,-38,0,0,0.191961 -12578,5309:487,-97,-38,0,0,0.190134 -12579,5309:486,-96,-38,0,0,0.189802 -12580,5309:485,-95,-38,0,0,0.19169 -12581,5309:384,-94,-38,0,0,0.191626 -12582,5309:383,-93,-38,0,0,0.18966 -12583,5309:382,-92,-38,0,0,0.188102 -12584,5309:381,-91,-38,0,0,0.194459 -12585,5309:380,-90,-38,0,0,0.192487 -12586,5308:489,-89,-38,0,0,0.199481 -12587,5308:488,-88,-38,0,0,0.191499 -12588,5308:487,-87,-38,0,0,0.192471 -12590,5308:485,-85,-38,0,0,0.194266 -12591,5308:384,-84,-38,0,0,0.191738 -12592,5308:383,-83,-38,0,0,0.195944 -12593,5308:382,-82,-38,0,0,0.197193 -12594,5308:381,-81,-38,0,0,0.202516 -12595,5308:380,-80,-38,0,0,0.204398 -12596,5307:489,-79,-38,0,0,0.205687 -12597,5307:488,-78,-38,0,0,0.203015 -12598,5307:487,-77,-38,0,0,0.200582 -12599,5307:486,-76,-38,0,0,0.213413 -12600,5307:485,-75,-38,0,0,0.22227 -12601,5306:485,-65,-38,0,0,0.227085 -12602,5306:384,-64,-38,0,0,0.211436 -12603,5306:383,-63,-38,0,0,0.206377 -12604,5306:382,-62,-38,0,0,0.206494 -12605,5306:381,-61,-38,0,0,0.213241 -12606,5306:380,-60,-38,0,0,0.201837 -12607,5305:489,-59,-38,0,0,0.173809 -12608,5305:488,-58,-38,0,0,0.175008 -12609,5305:487,-57,-38,0,0,0.176392 -12610,5305:486,-56,-38,0,0,0.181295 -12611,5305:485,-55,-38,0,0,0.19512 -12612,5305:384,-54,-38,0,0,0.204214 -12613,5305:383,-53,-38,0,0,0.223124 -12614,5305:382,-52,-38,0,0,0.226526 -12615,5305:381,-51,-38,0,0,0.249891 -12616,5305:380,-50,-38,0,0,0.251068 -12617,5304:489,-49,-38,0,0,0.227265 -12618,5304:488,-48,-38,0,0,0.21269 -12619,5304:487,-47,-38,0,0,0.218002 -12620,5304:486,-46,-38,0,0,0.209184 -12621,5304:485,-45,-38,0,0,0.20631 -12622,5304:384,-44,-38,0,0,0.203447 -12623,5304:383,-43,-38,0,0,0.201738 -12624,5304:382,-42,-38,0,0,0.202317 -12625,5304:381,-41,-38,0,0,0.200253 -12626,5304:380,-40,-38,0,0,0.19894 -12627,5303:489,-39,-38,0,0,0.196106 -12628,5303:488,-38,-38,0,0,0.19372 -12629,5303:487,-37,-38,0,0,0.190737 -12630,5303:486,-36,-38,0,0,0.188322 -12631,5303:485,-35,-38,0,0,0.175691 -12632,5303:384,-34,-38,0,0,0.159051 -12633,5303:383,-33,-38,0,0,0.156987 -12634,5303:382,-32,-38,0,0,0.156348 -12635,5303:381,-31,-38,0,0,0.154958 -12636,5303:380,-30,-38,0,0,0.156145 -12637,5302:489,-29,-38,0,0,0.156946 -12638,5302:488,-28,-38,0,0,0.152061 -12639,5302:487,-27,-38,0,0,0.154622 -12640,5302:486,-26,-38,0,0,0.165475 -12641,5302:485,-25,-38,0,0,0.16104 -12642,5302:384,-24,-38,0,0,0.160859 -12643,5302:383,-23,-38,0,0,0.15601 -12644,5302:382,-22,-38,0,0,0.152114 -12645,5302:381,-21,-38,0,0,0.163315 -12646,5302:380,-20,-38,0,0,0.175542 -12647,5301:489,-19,-38,0,0,0.161429 -12648,5301:488,-18,-38,0,0,0.175141 -12649,5301:487,-17,-38,0,0,0.179321 -12650,5301:486,-16,-38,0,0,0.166513 -12651,5301:485,-15,-38,0,0,0.156701 -12652,5301:384,-14,-38,0,0,0.152884 -12653,5301:383,-13,-38,0,0,0.148596 -12654,5301:382,-12,-38,0,0,0.142653 -12655,5301:381,-11,-38,0,0,0.142477 -12656,5301:380,-10,-38,0,0,0.136206 -12657,5300:489,-9,-38,0,0,0.132349 -12658,5300:488,-8,-38,0,0,0.139368 -12659,5300:487,-7,-38,0,0,0.150688 -12660,5300:486,-6,-38,0,0,0.161484 -12661,5300:485,-5,-38,0,0,0.16862 -12662,5300:384,-4,-38,0,0,0.167399 -12663,5300:383,-3,-38,0,0,0.161498 -12664,5300:382,-2,-38,0,0,0.158707 -12665,5300:381,-1,-38,0,0,0.159877 -12666,3300:381,0,-38,0,0,0.16295 -12667,3300:381,1,-38,0,0,0.168102 -12668,3300:382,2,-38,0,0,0.158105 -12669,3300:383,3,-38,0,0,0.166299 -12670,3300:384,4,-38,0,0,0.162139 -12671,3300:485,5,-38,0,0,0.148687 -12672,3300:486,6,-38,0,0,0.141513 -12673,3300:487,7,-38,0,0,0.137859 -12674,3300:488,8,-38,0,0,0.134331 -12675,3300:489,9,-38,0,0,0.12535 -12676,3301:380,10,-38,0,0,0.139072 -12677,3301:381,11,-38,0,0,0.155429 -12678,3301:382,12,-38,0,0,0.154219 -12679,3301:383,13,-38,0,0,0.147883 -12680,3301:384,14,-38,0,0,0.141538 -12681,3301:485,15,-38,0,0,0.136775 -12682,3301:486,16,-38,0,0,0.136001 -12683,3301:487,17,-38,0,0,0.133035 -12684,3301:488,18,-38,0,0,0.147172 -12685,3301:489,19,-38,0,0,0.146979 -12686,3302:380,20,-38,0,0,0.148466 -12687,3302:381,21,-38,0,0,0.151307 -12688,3302:382,22,-38,0,0,0.144853 -12689,3302:383,23,-38,0,0,0.129612 -12690,3302:384,24,-38,0,0,0.127175 -12691,3302:485,25,-38,0,0,0.141551 -12692,3302:486,26,-38,0,0,0.145184 -12693,3302:487,27,-38,0,0,0.141776 -12694,3302:488,28,-38,0,0,0.14631 -12695,3302:489,29,-38,0,0,0.141176 -12696,3303:380,30,-38,0,0,0.150137 -12697,3303:381,31,-38,0,0,0.17322 -12698,3303:382,32,-38,0,0,0.174889 -12699,3303:383,33,-38,0,0,0.171418 -12700,3303:384,34,-38,0,0,0.145299 -12701,3303:485,35,-38,0,0,0.126628 -12702,3303:486,36,-38,0,0,0.127209 -12703,3303:487,37,-38,0,0,0.131349 -12704,3303:488,38,-38,0,0,0.13541 -12705,3303:489,39,-38,0,0,0.130671 -12706,3304:380,40,-38,0,0,0.130787 -12707,3304:381,41,-38,0,0,0.132077 -12708,3304:382,42,-38,0,0,0.135386 -12709,3304:383,43,-38,0,0,0.14418 -12710,3304:384,44,-38,0,0,0.140642 -12711,3304:485,45,-38,0,0,0.136509 -12712,3304:486,46,-38,0,0,0.137871 -12713,3304:487,47,-38,0,0,0.137079 -12714,3304:488,48,-38,0,0,0.129856 -12715,3304:489,49,-38,0,0,0.128343 -12716,3305:380,50,-38,0,0,0.130566 -12717,3305:381,51,-38,0,0,0.131302 -12718,3305:382,52,-38,0,0,0.132668 -12719,3305:383,53,-38,0,0,0.136279 -12720,3305:384,54,-38,0,0,0.13703 -12721,3305:485,55,-38,0,0,0.148285 -12722,3305:486,56,-38,0,0,0.137249 -12723,3305:487,57,-38,0,0,0.135531 -12724,3305:488,58,-38,0,0,0.135615 -12725,3305:489,59,-38,0,0,0.133818 -12726,3306:380,60,-38,0,0,0.143081 -12727,3306:381,61,-38,0,0,0.140282 -12728,3306:382,62,-38,0,0,0.124721 -12729,3306:383,63,-38,0,0,0.127472 -12730,3306:384,64,-38,0,0,0.125666 -12731,3306:485,65,-38,0,0,0.125508 -12732,3306:486,66,-38,0,0,0.138103 -12733,3306:487,67,-38,0,0,0.13196 -12734,3306:488,68,-38,0,0,0.12945 -12735,3306:489,69,-38,0,0,0.128538 -12736,3307:380,70,-38,0,0,0.128826 -12737,3307:381,71,-38,0,0,0.118628 -12738,3307:382,72,-38,0,0,0.116528 -12739,3307:384,74,-38,0,0,0.137249 -12740,3307:485,75,-38,0,0,0.143358 -12741,3307:486,76,-38,0,0,0.144472 -12742,3307:487,77,-38,0,0,0.140903 -12743,3307:488,78,-38,0,0,0.140691 -12744,3307:489,79,-38,0,0,0.160859 -12745,3308:380,80,-38,0,0,0.16385 -12746,3308:381,81,-38,0,0,0.169182 -12747,3308:382,82,-38,0,0,0.166 -12748,3308:383,83,-38,0,0,0.173986 -12749,3308:384,84,-38,0,0,0.175661 -12750,3308:485,85,-38,0,0,0.173677 -12751,3308:486,86,-38,0,0,0.177334 -12752,3308:487,87,-38,0,0,0.192631 -12753,3308:488,88,-38,0,0,0.195459 -12754,3308:489,89,-38,0,0,0.195427 -12755,3309:380,90,-38,0,0,0.190419 -12756,3309:381,91,-38,0,0,0.189723 -12757,3309:382,92,-38,0,0,0.182105 -12758,3309:383,93,-38,0,0,0.16677 -12759,3309:384,94,-38,0,0,0.168836 -12760,3309:485,95,-38,0,0,0.161554 -12761,3309:486,96,-38,0,0,0.156267 -12762,3309:487,97,-38,0,0,0.15434 -12763,3309:488,98,-38,0,0,0.154394 -12764,3309:489,99,-38,0,0,0.152685 -12765,3310:380,100,-38,0,0,0.14703 -12766,3310:381,101,-38,0,0,0.153911 -12767,3310:382,102,-38,0,0,0.155214 -12768,3310:383,103,-38,0,0,0.152498 -12769,3310:384,104,-38,0,0,0.1579 -12770,3310:485,105,-38,0,0,0.160624 -12771,3310:486,106,-38,0,0,0.156796 -12772,3310:487,107,-38,0,0,0.165106 -12773,3310:488,108,-38,0,0,0.165177 -12774,3310:489,109,-38,0,0,0.15764 -12775,3311:380,110,-38,0,0,0.170559 -12776,3311:381,111,-38,0,0,0.173868 -12777,3311:382,112,-38,0,0,0.19169 -12778,3311:383,113,-38,0,0,0.200961 -12779,3311:384,114,-38,0,0,0.18632 -12780,3311:485,115,-38,0,0,0.185915 -12781,3311:486,116,-38,0,0,0.18925 -12782,3311:487,117,-38,0,0,0.193864 -12783,3311:488,118,-38,0,0,0.194153 -12784,3311:489,119,-38,0,0,0.198989 -12785,3312:380,120,-38,0,0,0.205201 -12786,3312:381,121,-38,0,0,0.197015 -12787,3312:382,122,-38,0,0,0.183918 -12788,3312:383,123,-38,0,0,0.189487 -12789,3312:384,124,-38,0,0,0.20149 -12790,3312:485,125,-38,0,0,0.19372 -12791,3312:486,126,-38,0,0,0.181036 -12792,3312:487,127,-38,0,0,0.196625 -12793,3312:488,128,-38,0,0,0.214536 -12794,3312:489,129,-38,0,0,0.213017 -12795,3313:380,130,-38,0,0,0.211231 -12796,3313:381,131,-38,0,0,0.209456 -12797,3313:382,132,-38,0,0,0.211848 -12798,3313:383,133,-38,0,0,0.211556 -12799,3313:384,134,-38,0,0,0.207811 -12800,3313:485,135,-38,0,0,0.203631 -12801,3313:486,136,-38,0,0,0.207017 -12802,3313:487,137,-38,0,0,0.213258 -12803,3313:488,138,-38,0,0,0.20932 -12804,3313:489,139,-38,0,0,0.202865 -12805,3314:380,140,-38,0,0,0.205755 -12806,3314:381,141,-38,0,0,0.215577 -12807,3314:382,142,-38,0,0,0.221543 -12808,3314:383,143,-38,0,0,0.221915 -12809,3314:384,144,-38,0,0,0.226706 -12810,3314:485,145,-38,0,0,0.230274 -12811,3314:486,146,-38,0,0,0.223124 -12812,3314:487,147,-38,0,0,0.208912 -12813,3314:488,148,-38,0,0,0.207591 -12814,3314:489,149,-38,0,0,0.204532 -12815,3315:380,150,-38,0,0,0.206107 -12816,3315:381,151,-38,0,0,0.208573 -12817,3315:382,152,-38,0,0,0.222075 -12818,3315:383,153,-38,0,0,0.225196 -12819,3315:384,154,-38,0,0,0.215681 -12820,3315:485,155,-38,0,0,0.225251 -12821,3315:486,156,-38,0,0,0.223178 -12822,3315:487,157,-38,0,0,0.217792 -12823,3315:488,158,-38,0,0,0.211934 -12824,3315:489,159,-38,0,0,0.214225 -12825,3316:380,160,-38,0,0,0.215299 -12826,3316:381,161,-38,0,0,0.220217 -12827,3316:382,162,-38,0,0,0.217652 -12828,3316:383,163,-38,0,0,0.2196 -12829,3316:384,164,-38,0,0,0.222466 -12830,3316:485,165,-38,0,0,0.221224 -12831,3316:486,166,-38,0,0,0.217792 -12832,3316:487,167,-38,0,0,0.225 -12833,3316:488,168,-38,0,0,0.220393 -12834,3316:489,169,-38,0,0,0.208624 -12835,3317:380,170,-38,0,0,0.199809 -12836,3317:381,171,-38,0,0,0.193736 -12837,3317:382,172,-38,0,0,0.191499 -12838,3317:383,173,-38,0,0,0.19126 -12839,3317:384,174,-38,0,0,0.190641 -12840,3317:485,175,-38,0,0,0.188919 -12841,3317:486,176,-38,0,0,0.188919 -12842,3317:487,177,-38,0,0,0.194765 -12843,3317:488,178,-38,0,0,0.196738 -12844,3317:489,179,-38,0,0,0.196852 -12845,3318:380,180,-38,0,0,0.196609 -12846,5318:370,-180,-37,0,0,0.190451 -12847,5317:479,-179,-37,0,0,0.19999 -12848,5317:478,-178,-37,0,0,0.217442 -12849,5317:477,-177,-37,0,0,0.22027 -12850,5317:476,-176,-37,0,0,0.225018 -12851,5317:475,-175,-37,0,0,0.22922 -12852,5317:374,-174,-37,0,0,0.236005 -12853,5317:373,-173,-37,0,0,0.22482 -12854,5317:372,-172,-37,0,0,0.227608 -12855,5317:371,-171,-37,0,0,0.240067 -12856,5317:370,-170,-37,0,0,0.258795 -12857,5316:479,-169,-37,0,0,0.256144 -12858,5316:478,-168,-37,0,0,0.254152 -12859,5316:477,-167,-37,0,0,0.248488 -12860,5316:476,-166,-37,0,0,0.248162 -12861,5316:475,-165,-37,0,0,0.248661 -12862,5316:374,-164,-37,0,0,0.248392 -12863,5316:373,-163,-37,0,0,0.242343 -12864,5316:372,-162,-37,0,0,0.242324 -12865,5316:371,-161,-37,0,0,0.252655 -12866,5316:370,-160,-37,0,0,0.251551 -12867,5315:479,-159,-37,0,0,0.2513 -12868,5315:478,-158,-37,0,0,0.252539 -12869,5315:477,-157,-37,0,0,0.257084 -12870,5315:476,-156,-37,0,0,0.256692 -12871,5315:475,-155,-37,0,0,0.257045 -12872,5315:374,-154,-37,0,0,0.257654 -12873,5315:373,-153,-37,0,0,0.256594 -12874,5315:372,-152,-37,0,0,0.257949 -12875,5315:371,-151,-37,0,0,0.261961 -12876,5315:370,-150,-37,0,0,0.258775 -12877,5314:479,-149,-37,0,0,0.259999 -12878,5314:478,-148,-37,0,0,0.26085 -12879,5314:477,-147,-37,0,0,0.259032 -12880,5314:476,-146,-37,0,0,0.255596 -12881,5314:475,-145,-37,0,0,0.252539 -12882,5314:374,-144,-37,0,0,0.256281 -12883,5314:373,-143,-37,0,0,0.259269 -12884,5314:372,-142,-37,0,0,0.255948 -12885,5314:371,-141,-37,0,0,0.253977 -12886,5314:370,-140,-37,0,0,0.259012 -12887,5313:479,-139,-37,0,0,0.255928 -12888,5313:478,-138,-37,0,0,0.25072 -12889,5313:477,-137,-37,0,0,0.249141 -12890,5313:476,-136,-37,0,0,0.249795 -12891,5313:475,-135,-37,0,0,0.248641 -12892,5313:374,-134,-37,0,0,0.24545 -12893,5313:373,-133,-37,0,0,0.243798 -12894,5313:372,-132,-37,0,0,0.245869 -12895,5313:371,-131,-37,0,0,0.246193 -12896,5313:370,-130,-37,0,0,0.244424 -12897,5312:479,-129,-37,0,0,0.247224 -12898,5312:478,-128,-37,0,0,0.248277 -12899,5312:477,-127,-37,0,0,0.246765 -12900,5312:476,-126,-37,0,0,0.246632 -12901,5312:475,-125,-37,0,0,0.24688 -12902,5312:374,-124,-37,0,0,0.246727 -12903,5312:373,-123,-37,0,0,0.25072 -12904,5312:372,-122,-37,0,0,0.244443 -12905,5312:371,-121,-37,0,0,0.243741 -12906,5312:370,-120,-37,0,0,0.23859 -12907,5311:479,-119,-37,0,0,0.240424 -12908,5311:478,-118,-37,0,0,0.233899 -12909,5311:477,-117,-37,0,0,0.235968 -12910,5311:476,-116,-37,0,0,0.234637 -12911,5311:475,-115,-37,0,0,0.227428 -12912,5311:374,-114,-37,0,0,0.222981 -12913,5311:373,-113,-37,0,0,0.219301 -12914,5311:372,-112,-37,0,0,0.22087 -12915,5311:371,-111,-37,0,0,0.225591 -12916,5311:370,-110,-37,0,0,0.21516 -12917,5310:479,-109,-37,0,0,0.2125 -12918,5310:478,-108,-37,0,0,0.212793 -12919,5310:477,-107,-37,0,0,0.212655 -12920,5310:476,-106,-37,0,0,0.210564 -12921,5310:475,-105,-37,0,0,0.208692 -12922,5310:374,-104,-37,0,0,0.210188 -12923,5310:373,-103,-37,0,0,0.204231 -12924,5310:372,-102,-37,0,0,0.205452 -12925,5310:371,-101,-37,0,0,0.205184 -12926,5310:370,-100,-37,0,0,0.207506 -12927,5309:479,-99,-37,0,0,0.205603 -12928,5309:478,-98,-37,0,0,0.204264 -12929,5309:477,-97,-37,0,0,0.199874 -12930,5309:476,-96,-37,0,0,0.201672 -12931,5309:475,-95,-37,0,0,0.20255 -12932,5309:374,-94,-37,0,0,0.20358 -12933,5309:373,-93,-37,0,0,0.199957 -12934,5309:372,-92,-37,0,0,0.199661 -12935,5309:371,-91,-37,0,0,0.200615 -12936,5309:370,-90,-37,0,0,0.202268 -12937,5308:479,-89,-37,0,0,0.202832 -12938,5308:478,-88,-37,0,0,0.203864 -12939,5308:477,-87,-37,0,0,0.199907 -12940,5308:476,-86,-37,0,0,0.203447 -12941,5308:475,-85,-37,0,0,0.198612 -12942,5308:374,-84,-37,0,0,0.200994 -12943,5308:373,-83,-37,0,0,0.204532 -12944,5308:372,-82,-37,0,0,0.20599 -12945,5308:371,-81,-37,0,0,0.204699 -12946,5308:370,-80,-37,0,0,0.209473 -12947,5307:479,-79,-37,0,0,0.21238 -12948,5307:478,-78,-37,0,0,0.211848 -12949,5307:477,-77,-37,0,0,0.207624 -12950,5307:476,-76,-37,0,0,0.218633 -12951,5307:475,-75,-37,0,0,0.217617 -12952,5306:477,-67,-37,0,0,0.252035 -12953,5306:476,-66,-37,0,0,0.24431 -12954,5306:475,-65,-37,0,0,0.234673 -12955,5306:374,-64,-37,0,0,0.231076 -12956,5306:373,-63,-37,0,0,0.225196 -12957,5306:372,-62,-37,0,0,0.225609 -12958,5306:371,-61,-37,0,0,0.222004 -12959,5306:370,-60,-37,0,0,0.208166 -12960,5305:479,-59,-37,0,0,0.178778 -12961,5305:478,-58,-37,0,0,0.193207 -12962,5305:477,-57,-37,0,0,0.22316 -12963,5305:476,-56,-37,0,0,0.222697 -12964,5305:475,-55,-37,0,0,0.222572 -12965,5305:374,-54,-37,0,0,0.237304 -12966,5305:373,-53,-37,0,0,0.238889 -12967,5305:372,-52,-37,0,0,0.243004 -12968,5305:371,-51,-37,0,0,0.270572 -12969,5305:370,-50,-37,0,0,0.269215 -12970,5304:479,-49,-37,0,0,0.237881 -12971,5304:478,-48,-37,0,0,0.222572 -12972,5304:477,-47,-37,0,0,0.222803 -12973,5304:476,-46,-37,0,0,0.220058 -12974,5304:475,-45,-37,0,0,0.219424 -12975,5304:374,-44,-37,0,0,0.21464 -12976,5304:373,-43,-37,0,0,0.203998 -12977,5304:372,-42,-37,0,0,0.2049 -12978,5304:371,-41,-37,0,0,0.202849 -12979,5304:370,-40,-37,0,0,0.198204 -12980,5303:479,-39,-37,0,0,0.199628 -12981,5303:478,-38,-37,0,0,0.201341 -12982,5303:477,-37,-37,0,0,0.19669 -12983,5303:476,-36,-37,0,0,0.192823 -12984,5303:475,-35,-37,0,0,0.184411 -12985,5303:374,-34,-37,0,0,0.168346 -12986,5303:373,-33,-37,0,0,0.168735 -12987,5303:372,-32,-37,0,0,0.169211 -12988,5303:371,-31,-37,0,0,0.165106 -12989,5303:370,-30,-37,0,0,0.166057 -12990,5302:479,-29,-37,0,0,0.177649 -12991,5302:478,-28,-37,0,0,0.173471 -12992,5302:477,-27,-37,0,0,0.165929 -12993,5302:476,-26,-37,0,0,0.179821 -12994,5302:475,-25,-37,0,0,0.167743 -12995,5302:374,-24,-37,0,0,0.185744 -12996,5302:373,-23,-37,0,0,0.177394 -12997,5302:372,-22,-37,0,0,0.189692 -12998,5302:371,-21,-37,0,0,0.209048 -12999,5302:370,-20,-37,0,0,0.201738 -13000,5301:479,-19,-37,0,0,0.16573 -13001,5301:478,-18,-37,0,0,0.184427 -13002,5301:477,-17,-37,0,0,0.173721 -13003,5301:476,-16,-37,0,0,0.159905 -13004,5301:475,-15,-37,0,0,0.166969 -13005,5301:374,-14,-37,0,0,0.153737 -13006,5301:373,-13,-37,0,0,0.146901 -13007,5301:372,-12,-37,0,0,0.150859 -13008,5301:371,-11,-37,0,0,0.15299 -13009,5301:370,-10,-37,0,0,0.160957 -13010,5300:479,-9,-37,0,0,0.153938 -13011,5300:478,-8,-37,0,0,0.158639 -13012,5300:477,-7,-37,0,0,0.163441 -13013,5300:476,-6,-37,0,0,0.184535 -13014,5300:475,-5,-37,0,0,0.180534 -13015,5300:374,-4,-37,0,0,0.177919 -13016,5300:373,-3,-37,0,0,0.189471 -13017,5300:372,-2,-37,0,0,0.197812 -13018,5300:371,-1,-37,0,0,0.196511 -13019,3300:371,0,-37,0,0,0.181143 -13020,3300:371,1,-37,0,0,0.168648 -13021,3300:372,2,-37,0,0,0.17678 -13022,3300:373,3,-37,0,0,0.174252 -13023,3300:374,4,-37,0,0,0.174622 -13889,3317:455,175,-35,0,0,0.22211 -13024,3300:475,5,-37,0,0,0.166328 -13025,3300:476,6,-37,0,0,0.161415 -13026,3300:477,7,-37,0,0,0.155537 -13027,3300:478,8,-37,0,0,0.156362 -13028,3300:479,9,-37,0,0,0.159257 -13029,3301:370,10,-37,0,0,0.16849 -13030,3301:371,11,-37,0,0,0.167213 -13031,3301:372,12,-37,0,0,0.156444 -13032,3301:373,13,-37,0,0,0.155564 -13033,3301:374,14,-37,0,0,0.162629 -13034,3301:475,15,-37,0,0,0.169023 -13035,3301:476,16,-37,0,0,0.175052 -13036,3301:477,17,-37,0,0,0.1589 -13037,3301:478,18,-37,0,0,0.146464 -13038,3301:479,19,-37,0,0,0.142703 -13039,3302:370,20,-37,0,0,0.148896 -13040,3302:371,21,-37,0,0,0.154904 -13041,3302:372,22,-37,0,0,0.159877 -13042,3302:373,23,-37,0,0,0.159849 -13043,3302:374,24,-37,0,0,0.166143 -13044,3302:475,25,-37,0,0,0.167786 -13045,3302:476,26,-37,0,0,0.165163 -13046,3302:477,27,-37,0,0,0.151558 -13047,3302:478,28,-37,0,0,0.150491 -13048,3302:479,29,-37,0,0,0.163245 -13049,3303:370,30,-37,0,0,0.17587 -13050,3303:371,31,-37,0,0,0.175646 -13051,3303:372,32,-37,0,0,0.174519 -13052,3303:373,33,-37,0,0,0.170864 -13053,3303:374,34,-37,0,0,0.166827 -13054,3303:475,35,-37,0,0,0.15956 -13055,3303:476,36,-37,0,0,0.154474 -13056,3303:477,37,-37,0,0,0.157627 -13057,3303:478,38,-37,0,0,0.156634 -13058,3303:479,39,-37,0,0,0.151241 -13059,3304:370,40,-37,0,0,0.14703 -13060,3304:371,41,-37,0,0,0.149352 -13061,3304:372,42,-37,0,0,0.161081 -13062,3304:373,43,-37,0,0,0.160832 -13063,3304:374,44,-37,0,0,0.161637 -13064,3304:475,45,-37,0,0,0.157859 -13065,3304:476,46,-37,0,0,0.154743 -13066,3304:477,47,-37,0,0,0.150478 -13067,3304:478,48,-37,0,0,0.142301 -13068,3304:479,49,-37,0,0,0.137103 -13069,3305:370,50,-37,0,0,0.137822 -13070,3305:371,51,-37,0,0,0.138789 -13071,3305:372,52,-37,0,0,0.137274 -13072,3305:373,53,-37,0,0,0.133711 -13073,3305:374,54,-37,0,0,0.142088 -13074,3305:475,55,-37,0,0,0.155456 -13075,3305:476,56,-37,0,0,0.148389 -13076,3305:477,57,-37,0,0,0.14249 -13077,3305:478,58,-37,0,0,0.143282 -13078,3305:479,59,-37,0,0,0.14977 -13079,3306:370,60,-37,0,0,0.162265 -13080,3306:371,61,-37,0,0,0.180519 -13081,3306:372,62,-37,0,0,0.146786 -13082,3306:373,63,-37,0,0,0.13426 -13083,3306:374,64,-37,0,0,0.142766 -13084,3306:475,65,-37,0,0,0.128746 -13085,3306:476,66,-37,0,0,0.140518 -13086,3306:477,67,-37,0,0,0.138838 -13087,3306:478,68,-37,0,0,0.139701 -13088,3306:479,69,-37,0,0,0.147883 -13089,3307:370,70,-37,0,0,0.14725 -13090,3307:371,71,-37,0,0,0.146208 -13091,3307:372,72,-37,0,0,0.156823 -13092,3307:374,74,-37,0,0,0.178566 -13093,3307:475,75,-37,0,0,0.18093 -13094,3307:476,76,-37,0,0,0.17584 -13095,3307:477,77,-37,0,0,0.18093 -13096,3307:478,78,-37,0,0,0.176108 -13097,3307:479,79,-37,0,0,0.178898 -13098,3308:370,80,-37,0,0,0.175706 -13099,3308:371,81,-37,0,0,0.180792 -13100,3308:372,82,-37,0,0,0.170602 -13101,3308:373,83,-37,0,0,0.201622 -13102,3308:374,84,-37,0,0,0.191642 -13103,3308:475,85,-37,0,0,0.174312 -13104,3308:476,86,-37,0,0,0.190499 -13105,3308:477,87,-37,0,0,0.199349 -13106,3308:478,88,-37,0,0,0.205352 -13107,3308:479,89,-37,0,0,0.200138 -13108,3309:370,90,-37,0,0,0.18884 -13109,3309:371,91,-37,0,0,0.186741 -13110,3309:372,92,-37,0,0,0.186866 -13111,3309:373,93,-37,0,0,0.184041 -13112,3309:374,94,-37,0,0,0.179593 -13113,3309:475,95,-37,0,0,0.16849 -13114,3309:476,96,-37,0,0,0.16354 -13115,3309:477,97,-37,0,0,0.157914 -13116,3309:478,98,-37,0,0,0.162937 -13117,3309:479,99,-37,0,0,0.170559 -13118,3310:370,100,-37,0,0,0.172354 -13119,3310:371,101,-37,0,0,0.15996 -13120,3310:372,102,-37,0,0,0.170893 -13121,3310:373,103,-37,0,0,0.166927 -13122,3310:374,104,-37,0,0,0.175676 -13123,3310:475,105,-37,0,0,0.181265 -13124,3310:476,106,-37,0,0,0.180853 -13125,3310:477,107,-37,0,0,0.190134 -13126,3310:478,108,-37,0,0,0.190467 -13127,3310:479,109,-37,0,0,0.167241 -13128,3311:370,110,-37,0,0,0.173102 -13129,3311:371,111,-37,0,0,0.20187 -13130,3311:372,112,-37,0,0,0.216047 -13131,3311:373,113,-37,0,0,0.216639 -13132,3311:374,114,-37,0,0,0.202334 -13133,3311:475,115,-37,0,0,0.189329 -13134,3311:476,116,-37,0,0,0.196771 -13135,3311:477,117,-37,0,0,0.201936 -13136,3311:478,118,-37,0,0,0.193543 -13137,3311:479,119,-37,0,0,0.192903 -13138,3312:370,120,-37,0,0,0.211471 -13139,3312:371,121,-37,0,0,0.21711 -13140,3312:372,122,-37,0,0,0.213672 -13141,3312:373,123,-37,0,0,0.213516 -13142,3312:374,124,-37,0,0,0.214156 -13143,3312:475,125,-37,0,0,0.213223 -13144,3312:476,126,-37,0,0,0.210974 -13145,3312:477,127,-37,0,0,0.215091 -13146,3312:478,128,-37,0,0,0.216604 -13147,3312:479,129,-37,0,0,0.214087 -13148,3313:370,130,-37,0,0,0.214259 -13149,3313:371,131,-37,0,0,0.21556 -13150,3313:372,132,-37,0,0,0.214311 -13151,3313:373,133,-37,0,0,0.21238 -13152,3313:374,134,-37,0,0,0.211197 -13153,3313:475,135,-37,0,0,0.212294 -13154,3313:476,136,-37,0,0,0.216988 -13155,3313:477,137,-37,0,0,0.217232 -13156,3313:478,138,-37,0,0,0.211162 -13157,3313:479,139,-37,0,0,0.210478 -13158,3314:370,140,-37,0,0,0.222306 -13159,3314:371,141,-37,0,0,0.220041 -13160,3314:372,142,-37,0,0,0.223552 -13161,3314:373,143,-37,0,0,0.226544 -13162,3314:374,144,-37,0,0,0.231734 -13163,3314:475,145,-37,0,0,0.245564 -13164,3314:476,146,-37,0,0,0.242777 -13165,3314:477,147,-37,0,0,0.219846 -13166,3314:478,148,-37,0,0,0.216621 -13167,3314:479,149,-37,0,0,0.220693 -13168,3315:370,150,-37,0,0,0.232045 -13169,3315:371,151,-37,0,0,0.235912 -13170,3315:372,152,-37,0,0,0.244177 -13171,3315:373,153,-37,0,0,0.242078 -13172,3315:374,154,-37,0,0,0.222981 -13173,3315:475,155,-37,0,0,0.229583 -13174,3315:476,156,-37,0,0,0.223195 -13175,3315:477,157,-37,0,0,0.222057 -13176,3315:478,158,-37,0,0,0.223855 -13177,3315:479,159,-37,0,0,0.229419 -13178,3316:370,160,-37,0,0,0.231022 -13179,3316:371,161,-37,0,0,0.227138 -13180,3316:372,162,-37,0,0,0.232466 -13181,3316:373,163,-37,0,0,0.230383 -13182,3316:374,164,-37,0,0,0.232705 -13183,3316:475,165,-37,0,0,0.234692 -13184,3316:476,166,-37,0,0,0.23532 -13185,3316:477,167,-37,0,0,0.234526 -13186,3316:478,168,-37,0,0,0.244594 -13187,3316:479,169,-37,0,0,0.243079 -13188,3317:370,170,-37,0,0,0.229619 -13189,3317:371,171,-37,0,0,0.201539 -13190,3317:372,172,-37,0,0,0.196885 -13191,3317:373,173,-37,0,0,0.2024 -13192,3317:374,174,-37,0,0,0.201655 -13193,3317:475,175,-37,0,0,0.200549 -13194,3317:476,176,-37,0,0,0.198351 -13195,3317:477,177,-37,0,0,0.195055 -13196,3317:478,178,-37,0,0,0.191531 -13197,3317:479,179,-37,0,0,0.189992 -13198,3318:370,180,-37,0,0,0.190451 -13199,5318:360,-180,-36,0,0,0.22027 -13200,5317:469,-179,-36,0,0,0.222039 -13201,5317:468,-178,-36,0,0,0.223748 -13202,5317:467,-177,-36,0,0,0.227428 -13203,5317:466,-176,-36,0,0,0.22631 -13204,5317:465,-175,-36,0,0,0.223516 -13205,5317:364,-174,-36,0,0,0.226778 -13206,5317:363,-173,-36,0,0,0.242852 -13207,5317:362,-172,-36,0,0,0.237044 -13208,5317:361,-171,-36,0,0,0.244367 -13209,5317:360,-170,-36,0,0,0.253996 -13210,5316:469,-169,-36,0,0,0.262896 -13211,5316:468,-168,-36,0,0,0.252617 -13212,5316:467,-167,-36,0,0,0.249064 -13213,5316:466,-166,-36,0,0,0.251087 -13214,5316:465,-165,-36,0,0,0.25283 -13215,5316:364,-164,-36,0,0,0.251977 -13216,5316:363,-163,-36,0,0,0.25283 -13217,5316:362,-162,-36,0,0,0.257673 -13218,5316:361,-161,-36,0,0,0.258421 -13219,5316:360,-160,-36,0,0,0.258953 -13220,5315:469,-159,-36,0,0,0.258973 -13221,5315:468,-158,-36,0,0,0.260256 -13222,5315:467,-157,-36,0,0,0.265092 -13223,5315:466,-156,-36,0,0,0.267682 -13224,5315:465,-155,-36,0,0,0.268407 -13225,5315:364,-154,-36,0,0,0.268791 -13226,5315:363,-153,-36,0,0,0.272258 -13227,5315:362,-152,-36,0,0,0.27342 -13228,5315:361,-151,-36,0,0,0.270025 -13229,5315:360,-150,-36,0,0,0.268367 -13230,5314:469,-149,-36,0,0,0.272401 -13231,5314:468,-148,-36,0,0,0.270633 -13232,5314:467,-147,-36,0,0,0.270531 -13233,5314:466,-146,-36,0,0,0.270207 -13234,5314:465,-145,-36,0,0,0.268529 -13235,5314:364,-144,-36,0,0,0.269964 -13236,5314:363,-143,-36,0,0,0.274462 -13237,5314:362,-142,-36,0,0,0.275036 -13238,5314:361,-141,-36,0,0,0.272523 -13239,5314:360,-140,-36,0,0,0.272075 -13240,5313:469,-139,-36,0,0,0.269195 -13241,5313:468,-138,-36,0,0,0.264312 -13242,5313:467,-137,-36,0,0,0.260514 -13243,5313:466,-136,-36,0,0,0.260415 -13244,5313:465,-135,-36,0,0,0.258579 -13245,5313:364,-134,-36,0,0,0.257399 -13246,5313:363,-133,-36,0,0,0.25996 -13247,5313:362,-132,-36,0,0,0.261902 -13248,5313:361,-131,-36,0,0,0.258775 -13249,5313:360,-130,-36,0,0,0.255557 -13250,5312:469,-129,-36,0,0,0.255674 -13251,5312:468,-128,-36,0,0,0.260039 -13252,5312:467,-127,-36,0,0,0.263633 -13253,5312:466,-126,-36,0,0,0.261167 -13254,5312:465,-125,-36,0,0,0.26083 -13255,5312:364,-124,-36,0,0,0.259762 -13256,5312:363,-123,-36,0,0,0.259288 -13257,5312:362,-122,-36,0,0,0.256281 -13258,5312:361,-121,-36,0,0,0.253782 -13259,5312:360,-120,-36,0,0,0.252345 -13260,5311:469,-119,-36,0,0,0.247186 -13261,5311:468,-118,-36,0,0,0.248085 -13262,5311:467,-117,-36,0,0,0.244689 -13263,5311:466,-116,-36,0,0,0.24507 -13264,5311:465,-115,-36,0,0,0.243969 -13265,5311:364,-114,-36,0,0,0.241947 -13266,5311:363,-113,-36,0,0,0.232595 -13267,5311:362,-112,-36,0,0,0.233992 -13268,5311:361,-111,-36,0,0,0.2393 -13269,5311:360,-110,-36,0,0,0.230402 -13270,5310:469,-109,-36,0,0,0.225896 -13271,5310:468,-108,-36,0,0,0.22275 -13272,5310:467,-107,-36,0,0,0.223605 -13273,5310:466,-106,-36,0,0,0.226166 -13274,5310:465,-105,-36,0,0,0.221189 -13275,5310:364,-104,-36,0,0,0.219266 -13276,5310:363,-103,-36,0,0,0.222341 -13277,5310:362,-102,-36,0,0,0.214346 -13278,5310:361,-101,-36,0,0,0.215595 -13279,5310:360,-100,-36,0,0,0.219142 -13280,5309:469,-99,-36,0,0,0.219935 -13281,5309:468,-98,-36,0,0,0.216604 -13282,5309:467,-97,-36,0,0,0.213051 -13283,5309:466,-96,-36,0,0,0.210838 -13284,5309:465,-95,-36,0,0,0.211762 -13285,5309:364,-94,-36,0,0,0.213292 -13286,5309:363,-93,-36,0,0,0.215768 -13287,5309:362,-92,-36,0,0,0.216883 -13288,5309:361,-91,-36,0,0,0.211334 -13289,5309:360,-90,-36,0,0,0.216429 -13290,5308:469,-89,-36,0,0,0.214744 -13291,5308:468,-88,-36,0,0,0.211676 -13292,5308:467,-87,-36,0,0,0.212483 -13293,5308:466,-86,-36,0,0,0.209507 -13294,5308:465,-85,-36,0,0,0.21697 -13295,5308:364,-84,-36,0,0,0.214779 -13296,5308:363,-83,-36,0,0,0.211556 -13297,5308:362,-82,-36,0,0,0.212071 -13298,5308:361,-81,-36,0,0,0.215664 -13299,5308:360,-80,-36,0,0,0.216029 -13300,5307:469,-79,-36,0,0,0.2208 -13301,5307:468,-78,-36,0,0,0.220905 -13302,5307:467,-77,-36,0,0,0.219494 -13303,5307:466,-76,-36,0,0,0.218879 -13304,5307:465,-75,-36,0,0,0.230475 -13305,5306:467,-67,-36,0,0,0.25681 -13306,5306:466,-66,-36,0,0,0.251107 -13307,5306:465,-65,-36,0,0,0.253141 -13308,5306:364,-64,-36,0,0,0.249891 -13309,5306:363,-63,-36,0,0,0.243912 -13310,5306:362,-62,-36,0,0,0.247664 -13311,5306:361,-61,-36,0,0,0.246574 -13312,5306:360,-60,-36,0,0,0.220058 -13313,5305:469,-59,-36,0,0,0.186788 -13314,5305:468,-58,-36,0,0,0.214225 -13315,5305:467,-57,-36,0,0,0.264872 -13316,5305:466,-56,-36,0,0,0.28056 -13317,5305:465,-55,-36,0,0,0.305211 -13318,5305:364,-54,-36,0,0,0.342157 -13319,5305:363,-53,-36,0,0,0.349454 -13320,5305:362,-52,-36,0,0,0.300547 -13321,5305:361,-51,-36,0,0,0.279172 -13322,5305:360,-50,-36,0,0,0.243647 -13323,5304:469,-49,-36,0,0,0.233789 -13324,5304:468,-48,-36,0,0,0.235468 -13325,5304:467,-47,-36,0,0,0.235672 -13326,5304:466,-46,-36,0,0,0.22951 -13327,5304:465,-45,-36,0,0,0.222306 -13328,5304:364,-44,-36,0,0,0.217844 -13329,5304:363,-43,-36,0,0,0.214173 -13330,5304:362,-42,-36,0,0,0.210376 -13331,5304:361,-41,-36,0,0,0.210872 -13332,5304:360,-40,-36,0,0,0.210427 -13333,5303:469,-39,-36,0,0,0.200961 -13334,5303:468,-38,-36,0,0,0.202135 -13335,5303:467,-37,-36,0,0,0.200879 -13336,5303:466,-36,-36,0,0,0.193303 -13337,5303:465,-35,-36,0,0,0.186538 -13338,5303:364,-34,-36,0,0,0.182166 -13339,5303:363,-33,-36,0,0,0.19023 -13340,5303:362,-32,-36,0,0,0.189534 -13341,5303:361,-31,-36,0,0,0.176079 -13342,5303:360,-30,-36,0,0,0.172809 -13343,5302:469,-29,-36,0,0,0.185853 -13344,5302:468,-28,-36,0,0,0.178325 -13345,5302:467,-27,-36,0,0,0.178717 -13346,5302:466,-26,-36,0,0,0.193463 -13347,5302:465,-25,-36,0,0,0.178853 -13348,5302:364,-24,-36,0,0,0.195976 -13349,5302:363,-23,-36,0,0,0.199251 -13350,5302:362,-22,-36,0,0,0.209694 -13351,5302:361,-21,-36,0,0,0.208912 -13352,5302:360,-20,-36,0,0,0.200154 -13353,5301:469,-19,-36,0,0,0.17816 -13354,5301:468,-18,-36,0,0,0.198122 -13355,5301:467,-17,-36,0,0,0.18364 -13356,5301:466,-16,-36,0,0,0.162811 -13357,5301:465,-15,-36,0,0,0.169139 -13358,5301:364,-14,-36,0,0,0.171534 -13359,5301:363,-13,-36,0,0,0.172061 -13360,5301:362,-12,-36,0,0,0.187694 -13361,5301:361,-11,-36,0,0,0.184566 -13362,5301:360,-10,-36,0,0,0.181707 -13363,5300:469,-9,-36,0,0,0.182136 -13364,5300:468,-8,-36,0,0,0.18985 -13365,5300:467,-7,-36,0,0,0.193383 -13366,5300:466,-6,-36,0,0,0.19034 -13367,5300:465,-5,-36,0,0,0.197275 -13368,5300:364,-4,-36,0,0,0.187835 -13369,5300:363,-3,-36,0,0,0.184891 -13370,5300:362,-2,-36,0,0,0.203497 -13371,5300:361,-1,-36,0,0,0.198236 -13372,3300:361,0,-36,0,0,0.189882 -13373,3300:361,1,-36,0,0,0.19142 -13374,3300:362,2,-36,0,0,0.187835 -13375,3300:363,3,-36,0,0,0.174963 -13376,3300:364,4,-36,0,0,0.176242 -13377,3300:465,5,-36,0,0,0.180033 -13378,3300:466,6,-36,0,0,0.173854 -13379,3300:467,7,-36,0,0,0.183194 -13380,3300:468,8,-36,0,0,0.193575 -13381,3300:469,9,-36,0,0,0.200483 -13382,3301:360,10,-36,0,0,0.19372 -13383,3301:361,11,-36,0,0,0.17005 -13384,3301:362,12,-36,0,0,0.167227 -13385,3301:363,13,-36,0,0,0.182902 -13386,3301:364,14,-36,0,0,0.184164 -13387,3301:465,15,-36,0,0,0.176138 -13388,3301:466,16,-36,0,0,0.175899 -13389,3301:467,17,-36,0,0,0.17325 -13390,3301:468,18,-36,0,0,0.157054 -13391,3301:469,19,-36,0,0,0.149809 -13392,3302:360,20,-36,0,0,0.155146 -13393,3302:361,21,-36,0,0,0.164103 -13394,3302:362,22,-36,0,0,0.163399 -13395,3302:363,23,-36,0,0,0.165617 -13396,3302:364,24,-36,0,0,0.178325 -13397,3302:465,25,-36,0,0,0.173132 -13398,3302:466,26,-36,0,0,0.180914 -13399,3302:467,27,-36,0,0,0.183363 -13400,3302:468,28,-36,0,0,0.173014 -13401,3302:469,29,-36,0,0,0.165418 -13402,3303:360,30,-36,0,0,0.190435 -13403,3303:361,31,-36,0,0,0.185589 -13404,3303:362,32,-36,0,0,0.172442 -13405,3303:363,33,-36,0,0,0.171958 -13406,3303:364,34,-36,0,0,0.171724 -13407,3303:465,35,-36,0,0,0.173559 -13408,3303:466,36,-36,0,0,0.167614 -13409,3303:467,37,-36,0,0,0.160582 -13410,3303:468,38,-36,0,0,0.160804 -13411,3303:469,39,-36,0,0,0.16354 -13412,3304:360,40,-36,0,0,0.16687 -13413,3304:361,41,-36,0,0,0.177739 -13414,3304:362,42,-36,0,0,0.169081 -13415,3304:363,43,-36,0,0,0.167413 -13416,3304:364,44,-36,0,0,0.164922 -13417,3304:465,45,-36,0,0,0.162419 -13418,3304:466,46,-36,0,0,0.158804 -13419,3304:467,47,-36,0,0,0.149299 -13420,3304:468,48,-36,0,0,0.141901 -13421,3304:469,49,-36,0,0,0.147663 -13422,3305:360,50,-36,0,0,0.141726 -13423,3305:361,51,-36,0,0,0.141276 -13424,3305:362,52,-36,0,0,0.136569 -13425,3305:363,53,-36,0,0,0.141926 -13426,3305:364,54,-36,0,0,0.148791 -13427,3305:465,55,-36,0,0,0.155416 -13428,3305:466,56,-36,0,0,0.195507 -13429,3305:467,57,-36,0,0,0.170399 -13430,3305:468,58,-36,0,0,0.163245 -13431,3305:469,59,-36,0,0,0.203797 -13432,3306:360,60,-36,0,0,0.226112 -13433,3306:361,61,-36,0,0,0.202699 -13434,3306:362,62,-36,0,0,0.207253 -13435,3306:363,63,-36,0,0,0.148609 -13436,3306:364,64,-36,0,0,0.16717 -13437,3306:465,65,-36,0,0,0.188322 -13438,3306:466,66,-36,0,0,0.146156 -13439,3306:467,67,-36,0,0,0.135278 -13440,3306:468,68,-36,0,0,0.141226 -13441,3306:469,69,-36,0,0,0.151479 -13442,3307:360,70,-36,0,0,0.162447 -13443,3307:361,71,-36,0,0,0.181601 -13444,3307:362,72,-36,0,0,0.198907 -13445,3307:364,74,-36,0,0,0.238459 -13446,3307:465,75,-36,0,0,0.238571 -13447,3307:466,76,-36,0,0,0.211008 -13448,3307:467,77,-36,0,0,0.197503 -13449,3307:468,78,-36,0,0,0.200499 -13450,3307:469,79,-36,0,0,0.196252 -13451,3308:360,80,-36,0,0,0.192583 -13452,3308:361,81,-36,0,0,0.196106 -13453,3308:362,82,-36,0,0,0.19417 -13454,3308:363,83,-36,0,0,0.205436 -13455,3308:364,84,-36,0,0,0.198792 -13456,3308:465,85,-36,0,0,0.191992 -13457,3308:466,86,-36,0,0,0.199415 -13458,3308:467,87,-36,0,0,0.211265 -13459,3308:468,88,-36,0,0,0.204749 -13460,3308:469,89,-36,0,0,0.195944 -13461,3309:360,90,-36,0,0,0.187084 -13462,3309:361,91,-36,0,0,0.184891 -13463,3309:362,92,-36,0,0,0.186632 -13464,3309:363,93,-36,0,0,0.184535 -13465,3309:364,94,-36,0,0,0.176064 -13466,3309:465,95,-36,0,0,0.171783 -13467,3309:466,96,-36,0,0,0.175453 -13468,3309:467,97,-36,0,0,0.175646 -13469,3309:468,98,-36,0,0,0.163484 -13470,3309:469,99,-36,0,0,0.176855 -13471,3310:360,100,-36,0,0,0.191133 -13472,3310:361,101,-36,0,0,0.174563 -13473,3310:362,102,-36,0,0,0.173957 -13474,3310:363,103,-36,0,0,0.184365 -13475,3310:364,104,-36,0,0,0.18096 -13476,3310:465,105,-36,0,0,0.17831 -13477,3310:466,106,-36,0,0,0.182733 -13478,3310:467,107,-36,0,0,0.221366 -13479,3310:468,108,-36,0,0,0.218387 -13480,3310:469,109,-36,0,0,0.192503 -13481,3311:360,110,-36,0,0,0.217267 -13482,3311:361,111,-36,0,0,0.217127 -13483,3311:362,112,-36,0,0,0.213793 -13484,3311:363,113,-36,0,0,0.214242 -13485,3311:364,114,-36,0,0,0.212002 -13486,3311:465,115,-36,0,0,0.208709 -13487,3311:466,116,-36,0,0,0.223337 -13488,3311:467,117,-36,0,0,0.222946 -13489,3311:468,118,-36,0,0,0.221454 -13490,3311:469,119,-36,0,0,0.217145 -13491,3312:360,120,-36,0,0,0.218019 -13492,3312:361,121,-36,0,0,0.221366 -13493,3312:362,122,-36,0,0,0.218317 -13494,3312:363,123,-36,0,0,0.21636 -13495,3312:364,124,-36,0,0,0.216883 -13496,3312:465,125,-36,0,0,0.217879 -13497,3312:466,126,-36,0,0,0.22057 -13498,3312:467,127,-36,0,0,0.222537 -13499,3312:468,128,-36,0,0,0.22373 -13500,3312:469,129,-36,0,0,0.223071 -13501,3313:360,130,-36,0,0,0.219617 -13502,3313:361,131,-36,0,0,0.219424 -13503,3313:362,132,-36,0,0,0.219213 -13504,3313:363,133,-36,0,0,0.218177 -13505,3313:364,134,-36,0,0,0.219565 -13506,3313:465,135,-36,0,0,0.222039 -13507,3313:466,136,-36,0,0,0.220517 -13508,3313:467,137,-36,0,0,0.219142 -13509,3313:468,138,-36,0,0,0.22482 -13510,3313:469,139,-36,0,0,0.231204 -13511,3314:360,140,-36,0,0,0.235006 -13512,3314:361,141,-36,0,0,0.253821 -13513,3314:362,142,-36,0,0,0.256574 -13514,3314:363,143,-36,0,0,0.240687 -13515,3314:364,144,-36,0,0,0.234582 -13516,3314:465,145,-36,0,0,0.25583 -13517,3314:466,146,-36,0,0,0.259624 -13518,3314:467,147,-36,0,0,0.260395 -13519,3314:468,148,-36,0,0,0.291978 -13520,3314:469,149,-36,0,0,0.278202 -13521,3315:360,150,-36,0,0,0.266556 -13522,3315:361,151,-36,0,0,0.258362 -13523,3315:362,152,-36,0,0,0.252093 -13524,3315:363,153,-36,0,0,0.236932 -13525,3315:364,154,-36,0,0,0.23671 -13526,3315:465,155,-36,0,0,0.238403 -13527,3315:466,156,-36,0,0,0.236765 -13528,3315:467,157,-36,0,0,0.241099 -13529,3315:468,158,-36,0,0,0.242588 -13530,3315:469,159,-36,0,0,0.241062 -13531,3316:360,160,-36,0,0,0.241758 -13532,3316:361,161,-36,0,0,0.237825 -13533,3316:362,162,-36,0,0,0.242381 -13534,3316:363,163,-36,0,0,0.246975 -13535,3316:364,164,-36,0,0,0.251242 -13536,3316:465,165,-36,0,0,0.250065 -13537,3316:466,166,-36,0,0,0.247836 -13538,3317:361,171,-36,0,0,0.248162 -13539,3317:362,172,-36,0,0,0.204917 -13540,3317:363,173,-36,0,0,0.20485 -13541,3317:364,174,-36,0,0,0.209541 -13542,3317:465,175,-36,0,0,0.212604 -13543,3317:466,176,-36,0,0,0.207067 -13544,3317:467,177,-36,0,0,0.204114 -13545,3317:468,178,-36,0,0,0.206427 -13546,3317:469,179,-36,0,0,0.21381 -13547,3318:360,180,-36,0,0,0.22027 -13548,5318:350,-180,-35,0,0,0.216412 -13549,5317:459,-179,-35,0,0,0.223766 -13550,5317:458,-178,-35,0,0,0.230056 -13551,5317:457,-177,-35,0,0,0.236042 -13552,5317:456,-176,-35,0,0,0.242418 -13553,5317:455,-175,-35,0,0,0.235246 -13554,5317:354,-174,-35,0,0,0.234858 -13555,5317:353,-173,-35,0,0,0.281016 -13556,5317:352,-172,-35,0,0,0.282972 -13557,5317:351,-171,-35,0,0,0.26867 -13558,5317:350,-170,-35,0,0,0.246861 -13559,5316:459,-169,-35,0,0,0.260692 -13560,5316:458,-168,-35,0,0,0.270126 -13561,5316:457,-167,-35,0,0,0.257713 -13562,5316:456,-166,-35,0,0,0.258343 -13563,5316:455,-165,-35,0,0,0.262398 -13564,5316:354,-164,-35,0,0,0.263633 -13565,5316:353,-163,-35,0,0,0.263234 -13566,5316:352,-162,-35,0,0,0.264512 -13567,5316:351,-161,-35,0,0,0.266455 -13568,5316:350,-160,-35,0,0,0.269094 -13569,5315:459,-159,-35,0,0,0.269276 -13570,5315:458,-158,-35,0,0,0.27116 -13571,5315:457,-157,-35,0,0,0.276657 -13572,5315:456,-156,-35,0,0,0.281577 -13573,5315:455,-155,-35,0,0,0.284621 -13574,5315:354,-154,-35,0,0,0.285836 -13575,5315:353,-153,-35,0,0,0.286781 -13576,5315:352,-152,-35,0,0,0.284496 -13577,5315:351,-151,-35,0,0,0.281286 -13578,5315:350,-150,-35,0,0,0.28412 -13579,5314:459,-149,-35,0,0,0.289584 -13580,5314:458,-148,-35,0,0,0.28933 -13581,5314:457,-147,-35,0,0,0.285459 -13582,5314:456,-146,-35,0,0,0.287728 -13583,5314:455,-145,-35,0,0,0.291215 -13584,5314:354,-144,-35,0,0,0.294406 -13585,5314:353,-143,-35,0,0,0.294555 -13586,5314:352,-142,-35,0,0,0.293808 -13587,5314:351,-141,-35,0,0,0.290642 -13588,5314:350,-140,-35,0,0,0.288507 -13589,5313:459,-139,-35,0,0,0.286823 -13590,5313:458,-138,-35,0,0,0.281245 -13591,5313:457,-137,-35,0,0,0.276267 -13592,5313:456,-136,-35,0,0,0.274688 -13593,5313:455,-135,-35,0,0,0.276637 -13594,5313:354,-134,-35,0,0,0.276739 -13595,5313:353,-133,-35,0,0,0.276739 -13596,5313:352,-132,-35,0,0,0.27524 -13597,5313:351,-131,-35,0,0,0.274462 -13598,5313:350,-130,-35,0,0,0.278367 -13599,5312:459,-129,-35,0,0,0.27847 -13600,5312:458,-128,-35,0,0,0.276616 -13601,5312:457,-127,-35,0,0,0.278057 -13602,5312:456,-126,-35,0,0,0.277357 -13603,5312:455,-125,-35,0,0,0.276677 -13604,5312:354,-124,-35,0,0,0.273849 -13605,5312:353,-123,-35,0,0,0.273012 -13606,5312:352,-122,-35,0,0,0.271384 -13607,5312:351,-121,-35,0,0,0.268488 -13608,5312:350,-120,-35,0,0,0.264432 -13609,5311:459,-119,-35,0,0,0.263733 -13610,5311:458,-118,-35,0,0,0.26212 -13611,5311:457,-117,-35,0,0,0.258263 -13612,5311:456,-116,-35,0,0,0.256732 -13613,5311:455,-115,-35,0,0,0.260474 -13614,5311:354,-114,-35,0,0,0.257261 -13615,5311:353,-113,-35,0,0,0.24709 -13616,5311:352,-112,-35,0,0,0.248124 -13617,5311:351,-111,-35,0,0,0.252345 -13618,5311:350,-110,-35,0,0,0.253568 -13619,5310:459,-109,-35,0,0,0.246784 -13620,5310:458,-108,-35,0,0,0.241495 -13621,5310:457,-107,-35,0,0,0.236672 -13622,5310:456,-106,-35,0,0,0.234932 -13623,5310:455,-105,-35,0,0,0.235801 -13624,5310:354,-104,-35,0,0,0.231149 -13625,5310:353,-103,-35,0,0,0.234342 -13626,5310:352,-102,-35,0,0,0.228712 -13627,5310:351,-101,-35,0,0,0.228259 -13628,5310:350,-100,-35,0,0,0.229038 -13629,5309:459,-99,-35,0,0,0.230292 -13630,5309:458,-98,-35,0,0,0.228277 -13631,5309:457,-97,-35,0,0,0.228585 -13632,5309:456,-96,-35,0,0,0.232595 -13633,5309:455,-95,-35,0,0,0.226778 -13634,5309:354,-94,-35,0,0,0.222217 -13635,5309:353,-93,-35,0,0,0.225035 -13636,5309:352,-92,-35,0,0,0.229419 -13637,5309:351,-91,-35,0,0,0.227698 -13638,5309:350,-90,-35,0,0,0.225071 -13639,5308:459,-89,-35,0,0,0.221224 -13640,5308:458,-88,-35,0,0,0.221012 -13641,5308:457,-87,-35,0,0,0.223801 -13642,5308:456,-86,-35,0,0,0.225107 -13643,5308:455,-85,-35,0,0,0.223284 -13644,5308:354,-84,-35,0,0,0.222555 -13645,5308:353,-83,-35,0,0,0.21858 -13646,5308:352,-82,-35,0,0,0.222128 -13647,5308:351,-81,-35,0,0,0.223498 -13648,5308:350,-80,-35,0,0,0.225018 -13649,5307:459,-79,-35,0,0,0.227626 -13650,5307:458,-78,-35,0,0,0.228639 -13651,5307:457,-77,-35,0,0,0.230201 -13652,5307:456,-76,-35,0,0,0.229383 -13653,5307:455,-75,-35,0,0,0.23988 -13654,5306:455,-65,-35,0,0,0.269883 -13655,5306:354,-64,-35,0,0,0.267199 -13656,5306:353,-63,-35,0,0,0.266576 -13657,5306:352,-62,-35,0,0,0.267259 -13658,5306:351,-61,-35,0,0,0.264932 -13659,5306:350,-60,-35,0,0,0.233605 -13660,5305:459,-59,-35,0,0,0.196544 -13661,5305:458,-58,-35,0,0,0.249853 -13662,5305:457,-57,-35,0,0,0.275425 -13663,5305:456,-56,-35,0,0,0.275691 -13664,5305:455,-55,-35,0,0,0.313353 -13665,5305:354,-54,-35,0,0,0.335413 -13666,5305:353,-53,-35,0,0,0.321478 -13667,5305:352,-52,-35,0,0,0.286886 -13668,5305:351,-51,-35,0,0,0.25353 -13669,5305:350,-50,-35,0,0,0.244784 -13670,5304:459,-49,-35,0,0,0.244879 -13671,5304:458,-48,-35,0,0,0.250219 -13672,5304:457,-47,-35,0,0,0.238757 -13673,5304:456,-46,-35,0,0,0.234286 -13674,5304:455,-45,-35,0,0,0.227319 -13675,5304:354,-44,-35,0,0,0.220587 -13676,5304:353,-43,-35,0,0,0.216778 -13677,5304:352,-42,-35,0,0,0.214623 -13678,5304:351,-41,-35,0,0,0.212449 -13679,5304:350,-40,-35,0,0,0.212724 -13680,5303:459,-39,-35,0,0,0.208284 -13681,5303:458,-38,-35,0,0,0.20495 -13682,5303:457,-37,-35,0,0,0.199563 -13683,5303:456,-36,-35,0,0,0.197959 -13684,5303:455,-35,-35,0,0,0.195588 -13685,5303:354,-34,-35,0,0,0.196836 -13686,5303:353,-33,-35,0,0,0.189676 -13687,5303:352,-32,-35,0,0,0.184969 -13688,5303:351,-31,-35,0,0,0.181265 -13689,5303:350,-30,-35,0,0,0.197438 -13690,5302:459,-29,-35,0,0,0.219653 -13691,5302:458,-28,-35,0,0,0.208369 -13692,5302:457,-27,-35,0,0,0.206949 -13693,5302:456,-26,-35,0,0,0.211111 -13694,5302:455,-25,-35,0,0,0.195281 -13695,5302:354,-24,-35,0,0,0.204231 -13696,5302:353,-23,-35,0,0,0.220393 -13697,5302:352,-22,-35,0,0,0.228187 -13698,5302:351,-21,-35,0,0,0.216099 -13699,5302:350,-20,-35,0,0,0.211848 -13700,5301:459,-19,-35,0,0,0.211882 -13701,5301:458,-18,-35,0,0,0.207743 -13702,5301:457,-17,-35,0,0,0.206679 -13703,5301:456,-16,-35,0,0,0.17816 -13704,5301:455,-15,-35,0,0,0.170631 -13705,5301:354,-14,-35,0,0,0.199365 -13706,5301:353,-13,-35,0,0,0.218072 -13707,5301:352,-12,-35,0,0,0.234102 -13708,5301:351,-11,-35,0,0,0.230056 -13709,5301:350,-10,-35,0,0,0.228349 -13710,5300:459,-9,-35,0,0,0.242343 -13711,5300:458,-8,-35,0,0,0.236246 -13712,5300:457,-7,-35,0,0,0.237025 -13713,5300:456,-6,-35,0,0,0.226418 -13714,5300:455,-5,-35,0,0,0.209031 -13715,5300:354,-4,-35,0,0,0.210155 -13716,5300:353,-3,-35,0,0,0.224838 -13717,5300:352,-2,-35,0,0,0.227283 -13718,5300:351,-1,-35,0,0,0.218072 -13719,3300:351,0,-35,0,0,0.218089 -13720,3300:351,1,-35,0,0,0.220729 -13721,3300:352,2,-35,0,0,0.219829 -13722,3300:353,3,-35,0,0,0.217512 -13723,3300:354,4,-35,0,0,0.211162 -13724,3300:455,5,-35,0,0,0.199907 -13725,3300:456,6,-35,0,0,0.188699 -13726,3300:457,7,-35,0,0,0.193672 -13727,3300:458,8,-35,0,0,0.197112 -13728,3300:459,9,-35,0,0,0.205788 -13729,3301:350,10,-35,0,0,0.197584 -13730,3301:351,11,-35,0,0,0.189093 -13731,3301:352,12,-35,0,0,0.193639 -13732,3301:353,13,-35,0,0,0.21106 -13733,3301:354,14,-35,0,0,0.195265 -13734,3301:455,15,-35,0,0,0.209116 -13735,3301:456,16,-35,0,0,0.221561 -13736,3301:457,17,-35,0,0,0.202218 -13737,3301:458,18,-35,0,0,0.200105 -13738,3301:459,19,-35,0,0,0.210547 -13739,3302:350,20,-35,0,0,0.204465 -13740,3302:351,21,-35,0,0,0.195152 -13741,3302:352,22,-35,0,0,0.217564 -13742,3302:353,23,-35,0,0,0.229655 -13743,3302:354,24,-35,0,0,0.188605 -13744,3302:455,25,-35,0,0,0.187585 -13745,3302:456,26,-35,0,0,0.195669 -13746,3302:457,27,-35,0,0,0.19708 -13747,3302:458,28,-35,0,0,0.200253 -13748,3302:459,29,-35,0,0,0.187131 -13749,3303:350,30,-35,0,0,0.202516 -13750,3303:351,31,-35,0,0,0.225879 -13751,3303:352,32,-35,0,0,0.223569 -13752,3303:353,33,-35,0,0,0.202782 -13753,3303:354,34,-35,0,0,0.189109 -13754,3303:455,35,-35,0,0,0.18604 -13755,3303:456,36,-35,0,0,0.187053 -13756,3303:457,37,-35,0,0,0.182657 -13757,3303:458,38,-35,0,0,0.1769 -13758,3303:459,39,-35,0,0,0.174297 -13759,3304:350,40,-35,0,0,0.179321 -13760,3304:351,41,-35,0,0,0.182258 -13761,3304:352,42,-35,0,0,0.172236 -13762,3304:353,43,-35,0,0,0.168735 -13763,3304:354,44,-35,0,0,0.167084 -13764,3304:455,45,-35,0,0,0.162852 -13765,3304:456,46,-35,0,0,0.155416 -13766,3304:457,47,-35,0,0,0.147495 -13767,3304:458,48,-35,0,0,0.1496 -13768,3304:459,49,-35,0,0,0.152751 -13769,3305:350,50,-35,0,0,0.145032 -13770,3305:351,51,-35,0,0,0.144142 -13771,3305:352,52,-35,0,0,0.156674 -13772,3305:353,53,-35,0,0,0.162251 -13773,3305:354,54,-35,0,0,0.17973 -13774,3305:455,55,-35,0,0,0.178747 -13775,3305:456,56,-35,0,0,0.180321 -13776,3305:457,57,-35,0,0,0.240743 -13777,3305:458,58,-35,0,0,0.253024 -13778,3305:459,59,-35,0,0,0.279938 -13779,3306:350,60,-35,0,0,0.292744 -13780,3306:351,61,-35,0,0,0.278408 -13781,3306:352,62,-35,0,0,0.227175 -13782,3306:353,63,-35,0,0,0.236598 -13783,3306:354,64,-35,0,0,0.263534 -13784,3306:455,65,-35,0,0,0.270085 -13785,3306:456,66,-35,0,0,0.204632 -13786,3306:457,67,-35,0,0,0.205318 -13787,3306:458,68,-35,0,0,0.262458 -13788,3306:459,69,-35,0,0,0.271221 -13789,3307:350,70,-35,0,0,0.269822 -13790,3307:351,71,-35,0,0,0.26087 -13791,3307:352,72,-35,0,0,0.231387 -13792,3307:354,74,-35,0,0,0.25583 -13793,3307:455,75,-35,0,0,0.255205 -13794,3307:456,76,-35,0,0,0.221047 -13795,3307:457,77,-35,0,0,0.21556 -13796,3307:458,78,-35,0,0,0.228929 -13797,3307:459,79,-35,0,0,0.240574 -13798,3308:350,80,-35,0,0,0.235376 -13799,3308:351,81,-35,0,0,0.235394 -13800,3308:352,82,-35,0,0,0.229074 -13801,3308:353,83,-35,0,0,0.214519 -13802,3308:354,84,-35,0,0,0.209048 -13803,3308:455,85,-35,0,0,0.217284 -13804,3308:456,86,-35,0,0,0.230056 -13805,3308:457,87,-35,0,0,0.213344 -13806,3308:458,88,-35,0,0,0.20557 -13807,3308:459,89,-35,0,0,0.201258 -13808,3309:350,90,-35,0,0,0.195847 -13809,3309:351,91,-35,0,0,0.19609 -13810,3309:352,92,-35,0,0,0.195184 -13811,3309:353,93,-35,0,0,0.195523 -13812,3309:354,94,-35,0,0,0.192519 -13813,3309:455,95,-35,0,0,0.187616 -13814,3309:456,96,-35,0,0,0.200335 -13815,3309:457,97,-35,0,0,0.207405 -13816,3309:458,98,-35,0,0,0.216168 -13817,3309:459,99,-35,0,0,0.238497 -13818,3310:350,100,-35,0,0,0.236932 -13819,3310:351,101,-35,0,0,0.1938 -13820,3310:352,102,-35,0,0,0.190261 -13821,3310:353,103,-35,0,0,0.229837 -13822,3310:354,104,-35,0,0,0.228187 -13823,3310:455,105,-35,0,0,0.205402 -13824,3310:456,106,-35,0,0,0.207422 -13825,3310:457,107,-35,0,0,0.229456 -13826,3310:458,108,-35,0,0,0.207709 -13827,3310:459,109,-35,0,0,0.202384 -13828,3311:350,110,-35,0,0,0.230657 -13829,3311:351,111,-35,0,0,0.220287 -13830,3311:352,112,-35,0,0,0.214311 -13831,3311:353,113,-35,0,0,0.220835 -13832,3311:354,114,-35,0,0,0.225233 -13833,3311:455,115,-35,0,0,0.227283 -13834,3311:456,116,-35,0,0,0.226634 -13835,3311:457,117,-35,0,0,0.224194 -13836,3311:458,118,-35,0,0,0.222537 -13837,3311:459,119,-35,0,0,0.222395 -13838,3312:350,120,-35,0,0,0.223534 -13839,3312:351,121,-35,0,0,0.228241 -13840,3312:352,122,-35,0,0,0.224337 -13841,3312:353,123,-35,0,0,0.22332 -13842,3312:354,124,-35,0,0,0.224856 -13843,3312:455,125,-35,0,0,0.226076 -13844,3312:456,126,-35,0,0,0.227879 -13845,3312:457,127,-35,0,0,0.228385 -13846,3312:458,128,-35,0,0,0.228802 -13847,3312:459,129,-35,0,0,0.231095 -13848,3313:350,130,-35,0,0,0.229655 -13849,3313:351,131,-35,0,0,0.228984 -13850,3313:352,132,-35,0,0,0.229456 -13851,3313:353,133,-35,0,0,0.227987 -13852,3313:354,134,-35,0,0,0.227861 -13853,3313:455,135,-35,0,0,0.227085 -13854,3313:456,136,-35,0,0,0.229437 -13855,3313:457,137,-35,0,0,0.227933 -13856,3313:458,138,-35,0,0,0.229819 -13857,3313:459,139,-35,0,0,0.238142 -13858,3314:350,140,-35,0,0,0.240762 -13859,3314:351,141,-35,0,0,0.264952 -13860,3314:352,142,-35,0,0,0.260613 -13861,3314:353,143,-35,0,0,0.254367 -13862,3314:354,144,-35,0,0,0.257673 -13863,3314:455,145,-35,0,0,0.261108 -13864,3314:456,146,-35,0,0,0.271018 -13865,3314:457,147,-35,0,0,0.290939 -13866,3314:458,148,-35,0,0,0.309146 -13867,3314:459,149,-35,0,0,0.270937 -13868,3315:350,150,-35,0,0,0.261386 -13869,3315:351,151,-35,0,0,0.258362 -13870,3315:352,152,-35,0,0,0.253646 -13871,3315:353,153,-35,0,0,0.255596 -13872,3315:354,154,-35,0,0,0.263514 -13873,3315:455,155,-35,0,0,0.263195 -13874,3315:456,156,-35,0,0,0.259367 -13875,3315:457,157,-35,0,0,0.258008 -13876,3315:458,158,-35,0,0,0.255576 -13877,3315:459,159,-35,0,0,0.255909 -13878,3316:350,160,-35,0,0,0.262955 -13879,3316:351,161,-35,0,0,0.257792 -13880,3316:352,162,-35,0,0,0.255928 -13881,3316:353,163,-35,0,0,0.263075 -13882,3316:354,164,-35,0,0,0.263234 -13883,3316:455,165,-35,0,0,0.262578 -13884,3316:456,166,-35,0,0,0.265312 -13885,3316:457,167,-35,0,0,0.266335 -13886,3317:352,172,-35,0,0,0.238608 -13887,3317:353,173,-35,0,0,0.223498 -13888,3317:354,174,-35,0,0,0.218072 -13890,3317:456,176,-35,0,0,0.221951 -13891,3317:457,177,-35,0,0,0.215508 -13892,3317:458,178,-35,0,0,0.214848 -13893,3317:459,179,-35,0,0,0.213879 -13894,3318:350,180,-35,0,0,0.216412 -13895,5318:140,-180,-34,0,0,0.260039 -13896,5317:249,-179,-34,0,0,0.252694 -13897,5317:248,-178,-34,0,0,0.262001 -13898,5317:247,-177,-34,0,0,0.263334 -13899,5317:246,-176,-34,0,0,0.259466 -13900,5317:245,-175,-34,0,0,0.250933 -13901,5317:144,-174,-34,0,0,0.27816 -13902,5317:143,-173,-34,0,0,0.296394 -13903,5317:142,-172,-34,0,0,0.28164 -13904,5317:141,-171,-34,0,0,0.280809 -13905,5317:140,-170,-34,0,0,0.274503 -13906,5316:249,-169,-34,0,0,0.274974 -13907,5316:248,-168,-34,0,0,0.271445 -13908,5316:247,-167,-34,0,0,0.267763 -13909,5316:246,-166,-34,0,0,0.275917 -13910,5316:245,-165,-34,0,0,0.273788 -13911,5316:144,-164,-34,0,0,0.275118 -13912,5316:143,-163,-34,0,0,0.273951 -13913,5316:142,-162,-34,0,0,0.27604 -13914,5316:141,-161,-34,0,0,0.278449 -13915,5316:140,-160,-34,0,0,0.280809 -13916,5315:249,-159,-34,0,0,0.283305 -13917,5315:248,-158,-34,0,0,0.285417 -13918,5315:247,-157,-34,0,0,0.292 -13919,5315:246,-156,-34,0,0,0.296266 -13920,5315:245,-155,-34,0,0,0.300806 -13921,5315:144,-154,-34,0,0,0.302646 -13922,5315:143,-153,-34,0,0,0.300201 -13923,5315:142,-152,-34,0,0,0.297081 -13924,5315:141,-151,-34,0,0,0.296866 -13925,5315:140,-150,-34,0,0,0.302624 -13926,5314:249,-149,-34,0,0,0.306497 -13927,5314:248,-148,-34,0,0,0.304448 -13928,5314:247,-147,-34,0,0,0.305232 -13929,5314:246,-146,-34,0,0,0.313552 -13930,5314:245,-145,-34,0,0,0.311499 -13931,5314:144,-144,-34,0,0,0.308883 -13932,5314:143,-143,-34,0,0,0.308905 -13933,5314:142,-142,-34,0,0,0.309497 -13934,5314:141,-141,-34,0,0,0.306192 -13935,5314:140,-140,-34,0,0,0.305865 -13936,5313:249,-139,-34,0,0,0.30484 -13937,5313:248,-138,-34,0,0,0.300589 -13938,5313:247,-137,-34,0,0,0.297424 -13939,5313:246,-136,-34,0,0,0.295666 -13940,5313:245,-135,-34,0,0,0.295559 -13941,5313:144,-134,-34,0,0,0.292339 -13942,5313:143,-133,-34,0,0,0.289521 -13943,5313:142,-132,-34,0,0,0.293297 -13944,5313:141,-131,-34,0,0,0.290113 -13945,5313:140,-130,-34,0,0,0.291639 -13946,5312:249,-129,-34,0,0,0.29096 -13947,5312:248,-128,-34,0,0,0.295175 -13948,5312:247,-127,-34,0,0,0.295859 -13949,5312:246,-126,-34,0,0,0.298735 -13950,5312:245,-125,-34,0,0,0.296266 -13951,5312:144,-124,-34,0,0,0.292319 -13952,5312:143,-123,-34,0,0,0.290769 -13953,5312:142,-122,-34,0,0,0.286949 -13954,5312:141,-121,-34,0,0,0.28366 -13955,5312:140,-120,-34,0,0,0.284224 -13956,5311:249,-119,-34,0,0,0.278945 -13957,5311:248,-118,-34,0,0,0.27878 -13958,5311:247,-117,-34,0,0,0.27238 -13959,5311:246,-116,-34,0,0,0.268266 -13960,5311:245,-115,-34,0,0,0.268973 -13961,5311:144,-114,-34,0,0,0.275261 -13962,5311:143,-113,-34,0,0,0.270754 -13963,5311:142,-112,-34,0,0,0.268206 -13964,5311:141,-111,-34,0,0,0.263953 -13965,5311:140,-110,-34,0,0,0.262518 -13966,5310:249,-109,-34,0,0,0.259821 -13967,5310:248,-108,-34,0,0,0.255596 -13968,5310:247,-107,-34,0,0,0.25159 -13969,5310:246,-106,-34,0,0,0.247626 -13970,5310:245,-105,-34,0,0,0.243666 -13971,5310:144,-104,-34,0,0,0.243685 -13972,5310:143,-103,-34,0,0,0.250354 -13973,5310:142,-102,-34,0,0,0.248565 -13974,5310:141,-101,-34,0,0,0.245393 -13975,5310:140,-100,-34,0,0,0.245754 -13976,5309:249,-99,-34,0,0,0.242777 -13977,5309:248,-98,-34,0,0,0.238571 -13978,5309:247,-97,-34,0,0,0.244158 -13979,5309:246,-96,-34,0,0,0.244557 -13980,5309:245,-95,-34,0,0,0.249064 -13981,5309:144,-94,-34,0,0,0.244367 -13982,5309:143,-93,-34,0,0,0.236858 -13983,5309:142,-92,-34,0,0,0.242381 -13984,5309:141,-91,-34,0,0,0.237974 -13985,5309:140,-90,-34,0,0,0.244405 -13986,5308:249,-89,-34,0,0,0.238739 -13987,5308:248,-88,-34,0,0,0.235986 -13988,5308:247,-87,-34,0,0,0.241608 -13989,5308:246,-86,-34,0,0,0.238384 -13990,5308:245,-85,-34,0,0,0.236877 -13991,5308:144,-84,-34,0,0,0.241721 -13992,5308:143,-83,-34,0,0,0.233605 -13993,5308:142,-82,-34,0,0,0.236209 -13994,5308:141,-81,-34,0,0,0.236784 -13995,5308:140,-80,-34,0,0,0.236839 -13996,5307:249,-79,-34,0,0,0.23645 -13997,5307:248,-78,-34,0,0,0.238926 -13998,5307:247,-77,-34,0,0,0.241175 -13999,5307:246,-76,-34,0,0,0.240123 -14000,5307:245,-75,-34,0,0,0.245259 -14001,5307:144,-74,-34,0,0,0.257693 -14002,5306:245,-65,-34,0,0,0.299489 -14003,5306:144,-64,-34,0,0,0.294876 -14004,5306:143,-63,-34,0,0,0.29007 -14005,5306:142,-62,-34,0,0,0.286949 -14006,5306:141,-61,-34,0,0,0.287622 -14007,5306:140,-60,-34,0,0,0.282471 -14008,5305:249,-59,-34,0,0,0.216726 -14009,5305:248,-58,-34,0,0,0.247033 -14010,5305:247,-57,-34,0,0,0.276698 -14011,5305:246,-56,-34,0,0,0.282972 -14012,5305:245,-55,-34,0,0,0.312668 -14013,5305:144,-54,-34,0,0,0.349688 -14014,5305:143,-53,-34,0,0,0.271343 -14015,5305:142,-52,-34,0,0,0.289077 -14016,5305:141,-51,-34,0,0,0.288929 -14017,5305:140,-50,-34,0,0,0.265833 -14018,5304:249,-49,-34,0,0,0.256065 -14019,5304:248,-48,-34,0,0,0.253977 -14020,5304:247,-47,-34,0,0,0.241175 -14021,5304:246,-46,-34,0,0,0.234913 -14022,5304:245,-45,-34,0,0,0.227626 -14023,5304:144,-44,-34,0,0,0.227572 -14024,5304:143,-43,-34,0,0,0.227337 -14025,5304:142,-42,-34,0,0,0.224445 -14026,5304:141,-41,-34,0,0,0.224463 -14027,5304:140,-40,-34,0,0,0.222341 -14028,5303:249,-39,-34,0,0,0.21445 -14029,5303:248,-38,-34,0,0,0.210104 -14030,5303:247,-37,-34,0,0,0.209507 -14031,5303:246,-36,-34,0,0,0.209065 -14032,5303:245,-35,-34,0,0,0.210155 -14033,5303:144,-34,-34,0,0,0.212002 -14034,5303:143,-33,-34,0,0,0.226292 -14035,5303:142,-32,-34,0,0,0.22259 -14036,5303:141,-31,-34,0,0,0.235098 -14037,5303:140,-30,-34,0,0,0.235968 -14038,5302:249,-29,-34,0,0,0.22622 -14039,5302:248,-28,-34,0,0,0.230128 -14040,5302:247,-27,-34,0,0,0.236746 -14041,5302:246,-26,-34,0,0,0.211214 -14042,5302:245,-25,-34,0,0,0.212535 -14043,5302:144,-24,-34,0,0,0.237118 -14044,5302:143,-23,-34,0,0,0.253413 -14045,5302:142,-22,-34,0,0,0.241627 -14046,5302:141,-21,-34,0,0,0.238552 -14047,5302:140,-20,-34,0,0,0.222004 -14048,5301:249,-19,-34,0,0,0.211848 -14049,5301:248,-18,-34,0,0,0.207726 -14050,5301:247,-17,-34,0,0,0.20144 -14051,5301:246,-16,-34,0,0,0.181662 -14052,5301:245,-15,-34,0,0,0.189361 -14053,5301:144,-14,-34,0,0,0.230256 -14054,5301:143,-13,-34,0,0,0.258677 -14055,5301:142,-12,-34,0,0,0.252752 -14056,5301:141,-11,-34,0,0,0.242607 -14057,5301:140,-10,-34,0,0,0.239318 -14058,5300:249,-9,-34,0,0,0.233826 -14059,5300:248,-8,-34,0,0,0.230147 -14060,5300:247,-7,-34,0,0,0.23915 -14061,5300:246,-6,-34,0,0,0.236691 -14062,5300:245,-5,-34,0,0,0.235062 -14063,5300:144,-4,-34,0,0,0.231844 -14064,5300:143,-3,-34,0,0,0.230056 -14065,5300:142,-2,-34,0,0,0.224659 -14066,5300:141,-1,-34,0,0,0.225 -14067,3300:141,0,-34,0,0,0.224713 -14068,3300:141,1,-34,0,0,0.225896 -14069,3300:142,2,-34,0,0,0.220976 -14070,3300:143,3,-34,0,0,0.218335 -14071,3300:144,4,-34,0,0,0.217337 -14072,3300:245,5,-34,0,0,0.21082 -14073,3300:246,6,-34,0,0,0.19778 -14074,3300:247,7,-34,0,0,0.197226 -14075,3300:248,8,-34,0,0,0.199398 -14076,3300:249,9,-34,0,0,0.199447 -14077,3301:140,10,-34,0,0,0.214242 -14078,3301:141,11,-34,0,0,0.213482 -14079,3301:142,12,-34,0,0,0.219758 -14080,3301:143,13,-34,0,0,0.222093 -14081,3301:144,14,-34,0,0,0.209558 -14082,3301:245,15,-34,0,0,0.241758 -14083,3301:246,16,-34,0,0,0.264632 -14084,3301:247,17,-34,0,0,0.218861 -14085,3301:248,18,-34,0,0,0.281806 -14086,3301:249,19,-34,0,0,0.267883 -14087,3302:140,20,-34,0,0,0.248469 -14088,3302:141,21,-34,0,0,0.271425 -14089,3302:142,22,-34,0,0,0.263055 -14090,3302:143,23,-34,0,0,0.277048 -14091,3302:144,24,-34,0,0,0.258343 -14092,3302:245,25,-34,0,0,0.230292 -14093,3302:246,26,-34,0,0,0.249429 -14094,3302:247,27,-34,0,0,0.250084 -14095,3302:248,28,-34,0,0,0.252752 -14096,3302:249,29,-34,0,0,0.236746 -14097,3303:140,30,-34,0,0,0.223106 -14098,3303:141,31,-34,0,0,0.241627 -14099,3303:142,32,-34,0,0,0.20393 -14100,3303:143,33,-34,0,0,0.199021 -14101,3303:144,34,-34,0,0,0.201291 -14102,3303:245,35,-34,0,0,0.200566 -14103,3303:246,36,-34,0,0,0.212105 -14104,3303:247,37,-34,0,0,0.189187 -14105,3303:248,38,-34,0,0,0.186148 -14106,3303:249,39,-34,0,0,0.200088 -14107,3304:140,40,-34,0,0,0.202599 -14108,3304:141,41,-34,0,0,0.194234 -14109,3304:142,42,-34,0,0,0.184891 -14110,3304:143,43,-34,0,0,0.176646 -14111,3304:144,44,-34,0,0,0.170428 -14112,3304:245,45,-34,0,0,0.163709 -14113,3304:246,46,-34,0,0,0.157395 -14114,3304:247,47,-34,0,0,0.152114 -14115,3304:248,48,-34,0,0,0.157408 -14116,3304:249,49,-34,0,0,0.160943 -14117,3305:140,50,-34,0,0,0.165389 -14118,3305:141,51,-34,0,0,0.165872 -14119,3305:142,52,-34,0,0,0.205268 -14120,3305:143,53,-34,0,0,0.251513 -14121,3305:144,54,-34,0,0,0.260811 -14122,3305:245,55,-34,0,0,0.258874 -14123,3305:246,56,-34,0,0,0.228621 -14124,3305:247,57,-34,0,0,0.235062 -14125,3305:248,58,-34,0,0,0.239543 -14126,3305:249,59,-34,0,0,0.250065 -14127,3306:140,60,-34,0,0,0.299101 -14128,3306:141,61,-34,0,0,0.286319 -14129,3306:142,62,-34,0,0,0.266475 -14130,3306:143,63,-34,0,0,0.243344 -14131,3306:144,64,-34,0,0,0.256653 -14132,3306:245,65,-34,0,0,0.267662 -14133,3306:246,66,-34,0,0,0.269438 -14134,3306:247,67,-34,0,0,0.231533 -14135,3306:248,68,-34,0,0,0.279358 -14136,3306:249,69,-34,0,0,0.265712 -14137,3307:140,70,-34,0,0,0.263633 -14138,3307:141,71,-34,0,0,0.256594 -14139,3307:142,72,-34,0,0,0.235062 -14140,3307:144,74,-34,0,0,0.249199 -14141,3307:245,75,-34,0,0,0.244139 -14142,3307:246,76,-34,0,0,0.246117 -14143,3307:247,77,-34,0,0,0.253841 -14144,3307:248,78,-34,0,0,0.258599 -14145,3307:249,79,-34,0,0,0.248392 -14146,3308:140,80,-34,0,0,0.242399 -14147,3308:141,81,-34,0,0,0.242022 -14148,3308:142,82,-34,0,0,0.247281 -14149,3308:143,83,-34,0,0,0.244841 -14150,3308:144,84,-34,0,0,0.241758 -14151,3308:245,85,-34,0,0,0.244784 -14152,3308:246,86,-34,0,0,0.242626 -14153,3308:247,87,-34,0,0,0.229601 -14154,3308:248,88,-34,0,0,0.210445 -14155,3308:249,89,-34,0,0,0.216064 -14156,3309:140,90,-34,0,0,0.222679 -14157,3309:141,91,-34,0,0,0.222999 -14158,3309:142,92,-34,0,0,0.209303 -14159,3309:143,93,-34,0,0,0.200846 -14160,3309:144,94,-34,0,0,0.200335 -14161,3309:245,95,-34,0,0,0.201672 -14162,3309:246,96,-34,0,0,0.203614 -14163,3309:247,97,-34,0,0,0.206326 -14164,3309:248,98,-34,0,0,0.206461 -14165,3309:249,99,-34,0,0,0.226148 -14166,3310:140,100,-34,0,0,0.242531 -14167,3310:141,101,-34,0,0,0.238552 -14168,3310:142,102,-34,0,0,0.237658 -14169,3310:143,103,-34,0,0,0.235764 -14170,3310:144,104,-34,0,0,0.230201 -14171,3310:245,105,-34,0,0,0.216029 -14172,3310:246,106,-34,0,0,0.228838 -14173,3310:247,107,-34,0,0,0.240874 -14174,3310:248,108,-34,0,0,0.234268 -14175,3310:249,109,-34,0,0,0.233734 -14176,3311:140,110,-34,0,0,0.23723 -14177,3311:141,111,-34,0,0,0.232485 -14178,3311:142,112,-34,0,0,0.232668 -14179,3311:143,113,-34,0,0,0.235136 -14180,3311:144,114,-34,0,0,0.232925 -14181,3311:245,115,-34,0,0,0.231478 -14182,3311:246,116,-34,0,0,0.233495 -14183,3311:247,117,-34,0,0,0.233293 -14184,3311:248,118,-34,0,0,0.23276 -14185,3311:249,119,-34,0,0,0.234305 -14186,3312:140,120,-34,0,0,0.236246 -14187,3312:141,121,-34,0,0,0.239412 -14188,3312:142,122,-34,0,0,0.237695 -14189,3312:143,123,-34,0,0,0.235746 -14190,3312:144,124,-34,0,0,0.234526 -14191,3312:245,125,-34,0,0,0.235468 -14192,3312:246,126,-34,0,0,0.23645 -14193,3312:247,127,-34,0,0,0.235764 -14194,3312:248,128,-34,0,0,0.240799 -14195,3312:249,129,-34,0,0,0.237304 -14196,3313:140,130,-34,0,0,0.238142 -14197,3313:141,131,-34,0,0,0.238776 -14198,3313:142,132,-34,0,0,0.240893 -14199,3313:143,133,-34,0,0,0.242418 -14200,3313:144,134,-34,0,0,0.240067 -14201,3313:245,135,-34,0,0,0.235746 -14202,3313:246,136,-34,0,0,0.24003 -14203,3313:247,137,-34,0,0,0.239486 -14204,3313:248,138,-34,0,0,0.242928 -14205,3313:249,139,-34,0,0,0.253626 -14206,3314:140,140,-34,0,0,0.270045 -14207,3314:141,141,-34,0,0,0.26214 -14208,3314:142,142,-34,0,0,0.272706 -14209,3314:143,143,-34,0,0,0.263295 -14210,3314:144,144,-34,0,0,0.269721 -14211,3314:245,145,-34,0,0,0.2794 -14212,3314:246,146,-34,0,0,0.306913 -14213,3314:248,148,-34,0,0,0.291024 -14214,3314:249,149,-34,0,0,0.331486 -14215,3315:140,150,-34,0,0,0.293276 -14216,3315:141,151,-34,0,0,0.291024 -14217,3315:142,152,-34,0,0,0.271343 -14218,3315:143,153,-34,0,0,0.278202 -14219,3315:144,154,-34,0,0,0.287159 -14220,3315:245,155,-34,0,0,0.284956 -14221,3315:246,156,-34,0,0,0.278945 -14222,3315:247,157,-34,0,0,0.273441 -14223,3315:248,158,-34,0,0,0.27678 -14224,3315:249,159,-34,0,0,0.275917 -14225,3316:140,160,-34,0,0,0.280933 -14226,3316:141,161,-34,0,0,0.276719 -14227,3316:142,162,-34,0,0,0.27604 -14228,3316:143,163,-34,0,0,0.277769 -14229,3316:144,164,-34,0,0,0.27783 -14230,3316:245,165,-34,0,0,0.280622 -14231,3316:246,166,-34,0,0,0.281349 -14232,3316:247,167,-34,0,0,0.278656 -14233,3316:248,168,-34,0,0,0.281785 -14234,3316:249,169,-34,0,0,0.279958 -14235,3317:144,174,-34,0,0,0.242852 -14236,3317:245,175,-34,0,0,0.269074 -14237,3317:246,176,-34,0,0,0.262279 -14238,3317:247,177,-34,0,0,0.253899 -14239,3317:248,178,-34,0,0,0.249544 -14240,3317:249,179,-34,0,0,0.247836 -14241,3318:140,180,-34,0,0,0.260039 -14242,5318:130,-180,-33,0,0,0.294961 -14243,5317:239,-179,-33,0,0,0.30665 -14244,5317:238,-178,-33,0,0,0.318638 -14245,5317:237,-177,-33,0,0,0.317079 -14246,5317:236,-176,-33,0,0,0.316434 -14247,5317:235,-175,-33,0,0,0.317412 -14248,5317:134,-174,-33,0,0,0.316123 -14249,5317:133,-173,-33,0,0,0.308532 -14250,5317:132,-172,-33,0,0,0.292106 -14251,5317:131,-171,-33,0,0,0.28697 -14252,5317:130,-170,-33,0,0,0.28933 -14253,5316:239,-169,-33,0,0,0.281826 -14254,5316:238,-168,-33,0,0,0.281826 -14255,5316:237,-167,-33,0,0,0.283368 -14256,5316:236,-166,-33,0,0,0.289352 -14257,5316:235,-165,-33,0,0,0.287412 -14258,5316:134,-164,-33,0,0,0.293958 -14259,5316:133,-163,-33,0,0,0.293404 -14260,5316:132,-162,-33,0,0,0.29079 -14261,5316:131,-161,-33,0,0,0.294 -14262,5316:130,-160,-33,0,0,0.301324 -14263,5315:239,-159,-33,0,0,0.301584 -14264,5315:238,-158,-33,0,0,0.308708 -14265,5315:237,-157,-33,0,0,0.310266 -14266,5315:236,-156,-33,0,0,0.317012 -14267,5315:235,-155,-33,0,0,0.318861 -14268,5315:134,-154,-33,0,0,0.324173 -14269,5315:133,-153,-33,0,0,0.322375 -14270,5315:132,-152,-33,0,0,0.323813 -14271,5315:131,-151,-33,0,0,0.321926 -14272,5315:130,-150,-33,0,0,0.323183 -14273,5314:239,-149,-33,0,0,0.321141 -14274,5314:238,-148,-33,0,0,0.321949 -14275,5314:237,-147,-33,0,0,0.3274 -14276,5314:236,-146,-33,0,0,0.327106 -14277,5314:235,-145,-33,0,0,0.324668 -14278,5314:134,-144,-33,0,0,0.325705 -14279,5314:133,-143,-33,0,0,0.325638 -14280,5314:132,-142,-33,0,0,0.323071 -14281,5314:131,-141,-33,0,0,0.320828 -14282,5314:130,-140,-33,0,0,0.324038 -14283,5313:239,-139,-33,0,0,0.322061 -14284,5313:238,-138,-33,0,0,0.315901 -14285,5313:237,-137,-33,0,0,0.31866 -14286,5313:236,-136,-33,0,0,0.311653 -14287,5313:235,-135,-33,0,0,0.310728 -14288,5313:134,-134,-33,0,0,0.310948 -14289,5313:133,-133,-33,0,0,0.310113 -14290,5313:132,-132,-33,0,0,0.308335 -14291,5313:131,-131,-33,0,0,0.306148 -14292,5313:130,-130,-33,0,0,0.311455 -14293,5312:239,-129,-33,0,0,0.311345 -14294,5312:238,-128,-33,0,0,0.308181 -14295,5312:237,-127,-33,0,0,0.310904 -14296,5312:236,-126,-33,0,0,0.313861 -14297,5312:235,-125,-33,0,0,0.308686 -14298,5312:134,-124,-33,0,0,0.309432 -14299,5312:133,-123,-33,0,0,0.300481 -14300,5312:132,-122,-33,0,0,0.30397 -14301,5312:131,-121,-33,0,0,0.303992 -14302,5312:130,-120,-33,0,0,0.298326 -14303,5311:239,-119,-33,0,0,0.292872 -14304,5311:238,-118,-33,0,0,0.293467 -14305,5311:237,-117,-33,0,0,0.293489 -14306,5311:236,-116,-33,0,0,0.292892 -14307,5311:235,-115,-33,0,0,0.290939 -14308,5311:134,-114,-33,0,0,0.289859 -14309,5311:133,-113,-33,0,0,0.290918 -14310,5311:132,-112,-33,0,0,0.280975 -14311,5311:131,-111,-33,0,0,0.275589 -14312,5311:130,-110,-33,0,0,0.269984 -14313,5310:239,-109,-33,0,0,0.262856 -14314,5310:238,-108,-33,0,0,0.261346 -14315,5310:237,-107,-33,0,0,0.259269 -14316,5310:236,-106,-33,0,0,0.263514 -14317,5310:235,-105,-33,0,0,0.259091 -14318,5310:134,-104,-33,0,0,0.259703 -14319,5310:133,-103,-33,0,0,0.266154 -14320,5310:132,-102,-33,0,0,0.265993 -14321,5310:131,-101,-33,0,0,0.258874 -14322,5310:130,-100,-33,0,0,0.257084 -14323,5309:239,-99,-33,0,0,0.258795 -14324,5309:238,-98,-33,0,0,0.258165 -14325,5309:237,-97,-33,0,0,0.252578 -14326,5309:236,-96,-33,0,0,0.259486 -14327,5309:235,-95,-33,0,0,0.251435 -14328,5309:134,-94,-33,0,0,0.257673 -14329,5309:133,-93,-33,0,0,0.255518 -14330,5309:132,-92,-33,0,0,0.252442 -14331,5309:131,-91,-33,0,0,0.246689 -14332,5309:130,-90,-33,0,0,0.254152 -14333,5308:239,-89,-33,0,0,0.249064 -14334,5308:238,-88,-33,0,0,0.24753 -14335,5308:237,-87,-33,0,0,0.247472 -14336,5308:236,-86,-33,0,0,0.254327 -14337,5308:235,-85,-33,0,0,0.251996 -14338,5308:134,-84,-33,0,0,0.251745 -14339,5308:133,-83,-33,0,0,0.246498 -14340,5308:132,-82,-33,0,0,0.251377 -14341,5308:131,-81,-33,0,0,0.247128 -14342,5308:130,-80,-33,0,0,0.248334 -14343,5307:239,-79,-33,0,0,0.251339 -14344,5307:238,-78,-33,0,0,0.251532 -14345,5307:237,-77,-33,0,0,0.252268 -14346,5307:236,-76,-33,0,0,0.253082 -14347,5307:235,-75,-33,0,0,0.256771 -14348,5307:133,-73,-33,0,0,0.28058 -14349,5306:133,-63,-33,0,0,0.310091 -14350,5306:132,-62,-33,0,0,0.311543 -14351,5306:131,-61,-33,0,0,0.32242 -14352,5306:130,-60,-33,0,0,0.317569 -14353,5305:239,-59,-33,0,0,0.287559 -14354,5305:238,-58,-33,0,0,0.231058 -14355,5305:237,-57,-33,0,0,0.251474 -14356,5305:236,-56,-33,0,0,0.281037 -14357,5305:235,-55,-33,0,0,0.343801 -14358,5305:134,-54,-33,0,0,0.33971 -14359,5305:133,-53,-33,0,0,0.285291 -14360,5305:132,-52,-33,0,0,0.311675 -14361,5305:131,-51,-33,0,0,0.332351 -14362,5305:130,-50,-33,0,0,0.361791 -14363,5304:239,-49,-33,0,0,0.362479 -14364,5304:238,-48,-33,0,0,0.306279 -14365,5304:237,-47,-33,0,0,0.270471 -14366,5304:236,-46,-33,0,0,0.257359 -14367,5304:235,-45,-33,0,0,0.26216 -14368,5304:134,-44,-33,0,0,0.264152 -14369,5304:133,-43,-33,0,0,0.262796 -14370,5304:132,-42,-33,0,0,0.264692 -14371,5304:131,-41,-33,0,0,0.257792 -14372,5304:130,-40,-33,0,0,0.235764 -14373,5303:239,-39,-33,0,0,0.225753 -14374,5303:238,-38,-33,0,0,0.229583 -14375,5303:237,-37,-33,0,0,0.237993 -14376,5303:236,-36,-33,0,0,0.252403 -14377,5303:235,-35,-33,0,0,0.254698 -14378,5303:134,-34,-33,0,0,0.230165 -14379,5303:133,-33,-33,0,0,0.235542 -14380,5303:132,-32,-33,0,0,0.242947 -14381,5303:131,-31,-33,0,0,0.259012 -14382,5303:130,-30,-33,0,0,0.249544 -14383,5302:239,-29,-33,0,0,0.24359 -14384,5302:238,-28,-33,0,0,0.24359 -14385,5302:237,-27,-33,0,0,0.251048 -14386,5302:236,-26,-33,0,0,0.246117 -14387,5302:235,-25,-33,0,0,0.266596 -14388,5302:134,-24,-33,0,0,0.272462 -14389,5302:133,-23,-33,0,0,0.25992 -14390,5302:132,-22,-33,0,0,0.264692 -14391,5302:131,-21,-33,0,0,0.257988 -14392,5302:130,-20,-33,0,0,0.236079 -14393,5301:239,-19,-33,0,0,0.224051 -14394,5301:238,-18,-33,0,0,0.207658 -14395,5301:237,-17,-33,0,0,0.200269 -14396,5301:236,-16,-33,0,0,0.194298 -14397,5301:235,-15,-33,0,0,0.219882 -14398,5301:134,-14,-33,0,0,0.266174 -14399,5301:133,-13,-33,0,0,0.255772 -14400,5301:132,-12,-33,0,0,0.240874 -14401,5301:131,-11,-33,0,0,0.239449 -14402,5301:130,-10,-33,0,0,0.238646 -14403,5300:239,-9,-33,0,0,0.235468 -14404,5300:238,-8,-33,0,0,0.235376 -14405,5300:237,-7,-33,0,0,0.251532 -14406,5300:236,-6,-33,0,0,0.24063 -14407,5300:235,-5,-33,0,0,0.231314 -14408,5300:134,-4,-33,0,0,0.230967 -14409,5300:133,-3,-33,0,0,0.233385 -14410,5300:132,-2,-33,0,0,0.235764 -14411,5300:131,-1,-33,0,0,0.235949 -14412,3300:131,0,-33,0,0,0.231624 -14413,3300:131,1,-33,0,0,0.230857 -14414,3300:132,2,-33,0,0,0.23146 -14415,3300:133,3,-33,0,0,0.220358 -14416,3300:134,4,-33,0,0,0.21683 -14417,3300:235,5,-33,0,0,0.221756 -14418,3300:236,6,-33,0,0,0.232228 -14419,3300:237,7,-33,0,0,0.230311 -14420,3300:238,8,-33,0,0,0.227554 -14421,3300:239,9,-33,0,0,0.21497 -14422,3301:130,10,-33,0,0,0.210257 -14423,3301:131,11,-33,0,0,0.214104 -14424,3301:132,12,-33,0,0,0.22931 -14425,3301:133,13,-33,0,0,0.235672 -14426,3301:134,14,-33,0,0,0.243136 -14427,3301:235,15,-33,0,0,0.276143 -14428,3301:236,16,-33,0,0,0.280871 -14429,3301:237,17,-33,0,0,0.305102 -14430,3301:238,18,-33,0,0,0.322981 -14431,3301:239,19,-33,0,0,0.302863 -14432,3302:130,20,-33,0,0,0.30862 -14433,3302:131,21,-33,0,0,0.312734 -14434,3302:132,22,-33,0,0,0.300352 -14435,3302:133,23,-33,0,0,0.307328 -14436,3302:134,24,-33,0,0,0.284496 -14437,3302:235,25,-33,0,0,0.248968 -14438,3302:236,26,-33,0,0,0.235117 -14439,3302:237,27,-33,0,0,0.240593 -14440,3302:238,28,-33,0,0,0.26867 -14441,3302:239,29,-33,0,0,0.249987 -14442,3303:130,30,-33,0,0,0.278738 -14443,3303:131,31,-33,0,0,0.286613 -14444,3303:132,32,-33,0,0,0.258716 -14445,3303:133,33,-33,0,0,0.24272 -14446,3303:134,34,-33,0,0,0.271607 -14447,3303:235,35,-33,0,0,0.279483 -14448,3303:236,36,-33,0,0,0.266756 -14449,3303:237,37,-33,0,0,0.250431 -14450,3303:238,38,-33,0,0,0.257733 -14451,3303:239,39,-33,0,0,0.248009 -14452,3304:130,40,-33,0,0,0.20754 -14453,3304:131,41,-33,0,0,0.207676 -14454,3304:132,42,-33,0,0,0.220128 -14455,3304:133,43,-33,0,0,0.246842 -14456,3304:134,44,-33,0,0,0.227735 -14457,3304:235,45,-33,0,0,0.206646 -14458,3304:236,46,-33,0,0,0.207337 -14459,3304:237,47,-33,0,0,0.240067 -14460,3304:238,48,-33,0,0,0.244007 -14461,3304:239,49,-33,0,0,0.233238 -14462,3305:130,50,-33,0,0,0.237397 -14463,3305:131,51,-33,0,0,0.207523 -14464,3305:132,52,-33,0,0,0.237379 -14465,3305:133,53,-33,0,0,0.255635 -14466,3305:134,54,-33,0,0,0.255928 -14467,3305:235,55,-33,0,0,0.269741 -14468,3305:236,56,-33,0,0,0.2554 -14469,3305:237,57,-33,0,0,0.241796 -14470,3305:238,58,-33,0,0,0.237806 -14471,3305:239,59,-33,0,0,0.280124 -14472,3306:130,60,-33,0,0,0.311014 -14473,3306:131,61,-33,0,0,0.309937 -14474,3306:132,62,-33,0,0,0.301584 -14475,3306:133,63,-33,0,0,0.293276 -14476,3306:134,64,-33,0,0,0.30005 -14477,3306:235,65,-33,0,0,0.291873 -14478,3306:236,66,-33,0,0,0.283493 -14479,3306:237,67,-33,0,0,0.225771 -14480,3306:238,68,-33,0,0,0.238739 -14481,3306:239,69,-33,0,0,0.282243 -14482,3307:130,70,-33,0,0,0.279607 -14483,3307:131,71,-33,0,0,0.276657 -14484,3307:132,72,-33,0,0,0.27238 -14485,3307:134,74,-33,0,0,0.254737 -14486,3307:235,75,-33,0,0,0.25846 -14487,3307:236,76,-33,0,0,0.277872 -14488,3307:237,77,-33,0,0,0.265853 -14489,3307:238,78,-33,0,0,0.244671 -14490,3307:239,79,-33,0,0,0.24845 -14491,3308:130,80,-33,0,0,0.259052 -14492,3308:131,81,-33,0,0,0.268973 -14493,3308:132,82,-33,0,0,0.263773 -14494,3308:133,83,-33,0,0,0.261069 -14495,3308:134,84,-33,0,0,0.252403 -14496,3308:235,85,-33,0,0,0.2379 -14497,3308:236,86,-33,0,0,0.230967 -14498,3308:237,87,-33,0,0,0.233366 -14499,3308:238,88,-33,0,0,0.236988 -14500,3308:239,89,-33,0,0,0.236209 -14501,3309:130,90,-33,0,0,0.233274 -14502,3309:131,91,-33,0,0,0.234711 -14503,3309:132,92,-33,0,0,0.232687 -14504,3309:133,93,-33,0,0,0.227121 -14505,3309:134,94,-33,0,0,0.231478 -14506,3309:235,95,-33,0,0,0.247128 -14507,3309:236,96,-33,0,0,0.254561 -14508,3309:237,97,-33,0,0,0.251861 -14509,3309:238,98,-33,0,0,0.244215 -14510,3309:239,99,-33,0,0,0.248258 -14511,3310:130,100,-33,0,0,0.244804 -14512,3310:131,101,-33,0,0,0.244481 -14513,3310:132,102,-33,0,0,0.240086 -14514,3310:133,103,-33,0,0,0.23658 -14515,3310:134,104,-33,0,0,0.233109 -14516,3310:235,105,-33,0,0,0.237063 -14517,3310:236,106,-33,0,0,0.248641 -14518,3310:237,107,-33,0,0,0.249141 -14519,3310:238,108,-33,0,0,0.246193 -14520,3310:239,109,-33,0,0,0.244291 -14521,3311:130,110,-33,0,0,0.24125 -14522,3311:131,111,-33,0,0,0.241476 -14523,3311:132,112,-33,0,0,0.242947 -14524,3311:133,113,-33,0,0,0.239431 -14525,3311:134,114,-33,0,0,0.241589 -14526,3311:235,115,-33,0,0,0.240855 -14527,3311:236,116,-33,0,0,0.240818 -14528,3311:237,117,-33,0,0,0.242682 -14529,3311:238,118,-33,0,0,0.245907 -14530,3311:239,119,-33,0,0,0.247186 -14531,3312:130,120,-33,0,0,0.249699 -14532,3312:131,121,-33,0,0,0.252365 -14533,3312:132,122,-33,0,0,0.251068 -14534,3312:133,123,-33,0,0,0.250546 -14535,3312:134,124,-33,0,0,0.248219 -14536,3312:235,125,-33,0,0,0.245355 -14537,3312:236,126,-33,0,0,0.245183 -14538,3312:237,127,-33,0,0,0.254776 -14539,3312:238,128,-33,0,0,0.261286 -14540,3312:239,129,-33,0,0,0.248334 -14541,3313:130,130,-33,0,0,0.253374 -14542,3313:131,131,-33,0,0,0.250624 -14543,3313:132,132,-33,0,0,0.253432 -14544,3313:133,133,-33,0,0,0.251068 -14545,3313:134,134,-33,0,0,0.25501 -14546,3313:235,135,-33,0,0,0.254561 -14547,3313:236,136,-33,0,0,0.252287 -14548,3313:237,137,-33,0,0,0.253938 -14549,3313:238,138,-33,0,0,0.258205 -14550,3313:239,139,-33,0,0,0.283848 -14551,3314:130,140,-33,0,0,0.285774 -14552,3314:131,141,-33,0,0,0.294897 -14553,3314:132,142,-33,0,0,0.287812 -14554,3314:133,143,-33,0,0,0.292254 -14555,3314:134,144,-33,0,0,0.289732 -14556,3314:235,145,-33,0,0,0.317012 -14557,3314:239,149,-33,0,0,0.336078 -14558,3315:130,150,-33,0,0,0.31904 -14559,3315:131,151,-33,0,0,0.318215 -14560,3315:132,152,-33,0,0,0.305102 -14561,3315:133,153,-33,0,0,0.301995 -14562,3315:134,154,-33,0,0,0.309014 -14563,3315:235,155,-33,0,0,0.306803 -14564,3315:236,156,-33,0,0,0.30397 -14565,3315:237,157,-33,0,0,0.296931 -14566,3315:238,158,-33,0,0,0.295816 -14567,3315:239,159,-33,0,0,0.301606 -14568,3316:130,160,-33,0,0,0.30321 -14569,3316:131,161,-33,0,0,0.294876 -14570,3316:132,162,-33,0,0,0.290007 -14571,3316:133,163,-33,0,0,0.289436 -14572,3316:134,164,-33,0,0,0.289626 -14573,3316:235,165,-33,0,0,0.29113 -14574,3316:236,166,-33,0,0,0.291321 -14575,3316:237,167,-33,0,0,0.291448 -14576,3316:238,168,-33,0,0,0.295602 -14577,3316:239,169,-33,0,0,0.300806 -14578,3317:130,170,-33,0,0,0.294918 -14579,3317:131,171,-33,0,0,0.291405 -14580,3317:134,174,-33,0,0,0.259348 -14581,3317:235,175,-33,0,0,0.281037 -14582,3317:236,176,-33,0,0,0.305276 -14583,3317:237,177,-33,0,0,0.317212 -14584,3317:238,178,-33,0,0,0.346192 -14585,3317:239,179,-33,0,0,0.32919 -14586,3318:130,180,-33,0,0,0.294961 -14587,5318:120,-180,-32,0,0,0.335047 -14588,5317:229,-179,-32,0,0,0.325209 -14589,5317:228,-178,-32,0,0,0.324826 -14590,5317:227,-177,-32,0,0,0.323858 -14591,5317:226,-176,-32,0,0,0.322689 -14592,5317:225,-175,-32,0,0,0.331805 -14593,5317:124,-174,-32,0,0,0.327739 -14594,5317:123,-173,-32,0,0,0.310376 -14595,5317:122,-172,-32,0,0,0.301844 -14596,5317:121,-171,-32,0,0,0.308291 -14597,5317:120,-170,-32,0,0,0.308576 -14598,5316:229,-169,-32,0,0,0.302646 -14599,5316:228,-168,-32,0,0,0.30617 -14600,5316:227,-167,-32,0,0,0.307766 -14601,5316:226,-166,-32,0,0,0.309124 -14602,5316:225,-165,-32,0,0,0.312734 -14603,5316:124,-164,-32,0,0,0.307503 -14604,5316:123,-163,-32,0,0,0.312271 -14605,5316:122,-162,-32,0,0,0.311918 -14606,5316:121,-161,-32,0,0,0.319307 -14607,5316:120,-160,-32,0,0,0.327377 -14608,5315:229,-159,-32,0,0,0.328464 -14609,5315:228,-158,-32,0,0,0.329145 -14610,5315:227,-157,-32,0,0,0.329553 -14611,5315:226,-156,-32,0,0,0.334498 -14612,5315:225,-155,-32,0,0,0.337386 -14613,5315:124,-154,-32,0,0,0.341163 -14614,5315:123,-153,-32,0,0,0.340794 -14615,5315:122,-152,-32,0,0,0.341417 -14616,5315:121,-151,-32,0,0,0.33941 -14617,5315:120,-150,-32,0,0,0.338811 -14618,5314:229,-149,-32,0,0,0.341047 -14619,5314:228,-148,-32,0,0,0.346843 -14620,5314:227,-147,-32,0,0,0.346238 -14621,5314:226,-146,-32,0,0,0.345866 -14622,5314:225,-145,-32,0,0,0.343291 -14623,5314:124,-144,-32,0,0,0.344542 -14624,5314:123,-143,-32,0,0,0.346843 -14625,5314:122,-142,-32,0,0,0.345843 -14626,5314:121,-141,-32,0,0,0.343893 -14627,5314:120,-140,-32,0,0,0.342341 -14628,5313:229,-139,-32,0,0,0.341347 -14629,5313:228,-138,-32,0,0,0.338443 -14630,5313:227,-137,-32,0,0,0.334887 -14631,5313:226,-136,-32,0,0,0.332465 -14632,5313:225,-135,-32,0,0,0.332465 -14633,5313:124,-134,-32,0,0,0.331896 -14634,5313:123,-133,-32,0,0,0.33242 -14635,5313:122,-132,-32,0,0,0.328601 -14636,5313:121,-131,-32,0,0,0.331212 -14637,5313:120,-130,-32,0,0,0.333675 -14638,5312:229,-129,-32,0,0,0.332488 -14639,5312:228,-128,-32,0,0,0.329372 -14640,5312:227,-127,-32,0,0,0.331691 -14641,5312:226,-126,-32,0,0,0.326812 -14642,5312:225,-125,-32,0,0,0.327785 -14643,5312:124,-124,-32,0,0,0.324466 -14644,5312:123,-123,-32,0,0,0.326022 -14645,5312:122,-122,-32,0,0,0.315435 -14646,5312:121,-121,-32,0,0,0.318594 -14647,5312:120,-120,-32,0,0,0.311411 -14648,5311:229,-119,-32,0,0,0.311411 -14649,5311:228,-118,-32,0,0,0.312933 -14650,5311:227,-117,-32,0,0,0.317836 -14651,5311:226,-116,-32,0,0,0.31837 -14652,5311:225,-115,-32,0,0,0.316367 -14653,5311:124,-114,-32,0,0,0.315945 -14654,5311:123,-113,-32,0,0,0.310025 -14655,5311:122,-112,-32,0,0,0.29663 -14656,5311:121,-111,-32,0,0,0.28293 -14657,5311:120,-110,-32,0,0,0.287327 -14658,5310:229,-109,-32,0,0,0.284182 -14659,5310:228,-108,-32,0,0,0.279876 -14660,5310:227,-107,-32,0,0,0.277893 -14661,5310:226,-106,-32,0,0,0.276719 -14662,5310:225,-105,-32,0,0,0.281141 -14663,5310:124,-104,-32,0,0,0.279669 -14664,5310:123,-103,-32,0,0,0.277521 -14665,5310:122,-102,-32,0,0,0.285375 -14666,5310:121,-101,-32,0,0,0.27911 -14667,5310:120,-100,-32,0,0,0.278759 -14668,5309:229,-99,-32,0,0,0.276616 -14669,5309:228,-98,-32,0,0,0.278387 -14670,5309:227,-97,-32,0,0,0.271506 -14671,5309:226,-96,-32,0,0,0.275036 -14672,5309:225,-95,-32,0,0,0.271933 -14673,5309:124,-94,-32,0,0,0.272564 -14674,5309:123,-93,-32,0,0,0.275138 -14675,5309:122,-92,-32,0,0,0.27116 -14676,5309:121,-91,-32,0,0,0.267803 -14677,5309:120,-90,-32,0,0,0.26962 -14678,5308:229,-89,-32,0,0,0.266817 -14679,5308:228,-88,-32,0,0,0.268165 -14680,5308:227,-87,-32,0,0,0.265192 -14681,5308:226,-86,-32,0,0,0.267823 -14682,5308:225,-85,-32,0,0,0.27438 -14683,5308:124,-84,-32,0,0,0.272095 -14684,5308:123,-83,-32,0,0,0.269276 -14685,5308:122,-82,-32,0,0,0.26214 -14686,5308:121,-81,-32,0,0,0.261842 -14687,5308:120,-80,-32,0,0,0.263195 -14688,5307:229,-79,-32,0,0,0.266034 -14689,5307:228,-78,-32,0,0,0.268065 -14690,5307:227,-77,-32,0,0,0.266495 -14691,5307:226,-76,-32,0,0,0.273032 -14692,5307:225,-75,-32,0,0,0.275097 -14693,5307:124,-74,-32,0,0,0.275897 -14694,5306:225,-65,-32,0,0,0.342851 -14695,5306:124,-64,-32,0,0,0.349805 -14696,5306:123,-63,-32,0,0,0.354752 -14697,5306:122,-62,-32,0,0,0.343917 -14698,5306:121,-61,-32,0,0,0.342481 -14699,5306:120,-60,-32,0,0,0.346634 -14700,5305:229,-59,-32,0,0,0.332967 -14701,5305:228,-58,-32,0,0,0.305821 -14702,5305:227,-57,-32,0,0,0.25351 -14703,5305:226,-56,-32,0,0,0.250894 -14704,5305:225,-55,-32,0,0,0.296952 -14705,5305:124,-54,-32,0,0,0.345076 -14706,5305:123,-53,-32,0,0,0.299015 -14707,5305:122,-52,-32,0,0,0.305102 -14708,5305:121,-51,-32,0,0,0.316456 -14709,5305:120,-50,-32,0,0,0.35353 -14710,5304:229,-49,-32,0,0,0.392772 -14711,5304:228,-48,-32,0,0,0.336284 -14712,5304:227,-47,-32,0,0,0.280435 -14713,5304:226,-46,-32,0,0,0.283472 -14714,5304:225,-45,-32,0,0,0.275097 -14715,5304:124,-44,-32,0,0,0.275179 -14716,5304:123,-43,-32,0,0,0.274872 -14717,5304:122,-42,-32,0,0,0.277068 -14718,5304:121,-41,-32,0,0,0.303948 -14719,5304:120,-40,-32,0,0,0.311455 -14720,5303:229,-39,-32,0,0,0.293681 -14721,5303:228,-38,-32,0,0,0.272686 -14722,5303:227,-37,-32,0,0,0.274094 -14723,5303:226,-36,-32,0,0,0.270187 -14724,5303:225,-35,-32,0,0,0.266817 -14725,5303:124,-34,-32,0,0,0.257026 -14726,5303:123,-33,-32,0,0,0.266234 -14727,5303:122,-32,-32,0,0,0.273053 -14728,5303:121,-31,-32,0,0,0.275691 -14729,5303:120,-30,-32,0,0,0.281037 -14730,5302:229,-29,-32,0,0,0.288001 -14731,5302:228,-28,-32,0,0,0.284412 -14732,5302:227,-27,-32,0,0,0.274115 -14733,5302:226,-26,-32,0,0,0.271302 -14734,5302:225,-25,-32,0,0,0.276924 -14735,5302:124,-24,-32,0,0,0.285145 -14736,5302:123,-23,-32,0,0,0.284308 -14737,5302:122,-22,-32,0,0,0.274954 -14738,5302:121,-21,-32,0,0,0.263813 -14739,5302:120,-20,-32,0,0,0.258244 -14740,5301:229,-19,-32,0,0,0.241947 -14741,5301:228,-18,-32,0,0,0.232577 -14742,5301:227,-17,-32,0,0,0.211899 -14743,5301:226,-16,-32,0,0,0.21082 -14744,5301:225,-15,-32,0,0,0.250026 -14745,5301:124,-14,-32,0,0,0.275445 -14746,5301:123,-13,-32,0,0,0.26746 -14747,5301:122,-12,-32,0,0,0.266556 -14748,5301:121,-11,-32,0,0,0.254912 -14749,5301:120,-10,-32,0,0,0.254191 -14750,5300:229,-9,-32,0,0,0.25316 -14751,5300:228,-8,-32,0,0,0.25501 -14752,5300:227,-7,-32,0,0,0.265632 -14753,5300:226,-6,-32,0,0,0.25791 -14754,5300:225,-5,-32,0,0,0.251319 -14755,5300:124,-4,-32,0,0,0.246326 -14756,5300:123,-3,-32,0,0,0.247702 -14757,5300:122,-2,-32,0,0,0.248987 -14758,5300:121,-1,-32,0,0,0.246117 -14759,3300:121,0,-32,0,0,0.248833 -14760,3300:121,1,-32,0,0,0.252326 -14761,3300:122,2,-32,0,0,0.251358 -14762,3300:123,3,-32,0,0,0.244652 -14763,3300:124,4,-32,0,0,0.249371 -14764,3300:225,5,-32,0,0,0.252869 -14765,3300:226,6,-32,0,0,0.248201 -14766,3300:227,7,-32,0,0,0.254152 -14767,3300:228,8,-32,0,0,0.23859 -14768,3300:229,9,-32,0,0,0.238832 -14769,3301:120,10,-32,0,0,0.24776 -14770,3301:121,11,-32,0,0,0.249795 -14771,3301:122,12,-32,0,0,0.259841 -14772,3301:123,13,-32,0,0,0.247568 -14773,3301:124,14,-32,0,0,0.273828 -14774,3301:225,15,-32,0,0,0.309081 -14775,3301:226,16,-32,0,0,0.349595 -14776,3301:227,17,-32,0,0,0.40856 -14777,3301:228,18,-32,0,0,0.4102 -14778,3301:229,19,-32,0,0,0.40106 -14779,3302:120,20,-32,0,0,0.345634 -14780,3302:121,21,-32,0,0,0.333287 -14781,3302:122,22,-32,0,0,0.365857 -14782,3302:123,23,-32,0,0,0.372341 -14783,3302:124,24,-32,0,0,0.371213 -14784,3302:225,25,-32,0,0,0.378267 -14785,3302:226,26,-32,0,0,0.369536 -14786,3302:227,27,-32,0,0,0.344079 -14787,3302:228,28,-32,0,0,0.275794 -14788,3302:229,29,-32,0,0,0.308905 -14789,3303:120,30,-32,0,0,0.336032 -14790,3303:121,31,-32,0,0,0.348101 -14791,3303:122,32,-32,0,0,0.330393 -14792,3303:123,33,-32,0,0,0.30434 -14793,3303:124,34,-32,0,0,0.318036 -14794,3303:225,35,-32,0,0,0.329122 -14795,3303:226,36,-32,0,0,0.371573 -14796,3303:227,37,-32,0,0,0.360227 -14797,3303:228,38,-32,0,0,0.323813 -14798,3303:229,39,-32,0,0,0.315279 -14799,3304:120,40,-32,0,0,0.33242 -14800,3304:121,41,-32,0,0,0.334429 -14801,3304:122,42,-32,0,0,0.286403 -14802,3304:123,43,-32,0,0,0.254191 -14803,3304:124,44,-32,0,0,0.296352 -14804,3304:225,45,-32,0,0,0.3274 -14805,3304:226,46,-32,0,0,0.343824 -14806,3304:227,47,-32,0,0,0.31053 -14807,3304:228,48,-32,0,0,0.247301 -14808,3304:229,49,-32,0,0,0.305646 -14809,3305:120,50,-32,0,0,0.34054 -14810,3305:121,51,-32,0,0,0.339663 -14811,3305:122,52,-32,0,0,0.320448 -14812,3305:123,53,-32,0,0,0.265813 -14813,3305:124,54,-32,0,0,0.260929 -14814,3305:225,55,-32,0,0,0.3253 -14815,3305:226,56,-32,0,0,0.308839 -14816,3305:227,57,-32,0,0,0.310091 -14817,3305:228,58,-32,0,0,0.310223 -14818,3305:229,59,-32,0,0,0.309541 -14819,3306:120,60,-32,0,0,0.305211 -14820,3306:121,61,-32,0,0,0.310134 -14821,3306:122,62,-32,0,0,0.308313 -14822,3306:123,63,-32,0,0,0.295431 -14823,3306:124,64,-32,0,0,0.300439 -14824,3306:225,65,-32,0,0,0.292021 -14825,3306:226,66,-32,0,0,0.295367 -14826,3306:227,67,-32,0,0,0.290981 -14827,3306:228,68,-32,0,0,0.277893 -14828,3306:229,69,-32,0,0,0.290473 -14829,3307:120,70,-32,0,0,0.286466 -14830,3307:121,71,-32,0,0,0.293808 -14831,3307:122,72,-32,0,0,0.289563 -14832,3307:124,74,-32,0,0,0.277893 -14833,3307:225,75,-32,0,0,0.286277 -14834,3307:226,76,-32,0,0,0.287728 -14835,3307:227,77,-32,0,0,0.27236 -14836,3307:228,78,-32,0,0,0.264771 -14837,3307:229,79,-32,0,0,0.279255 -14838,3308:120,80,-32,0,0,0.279876 -14839,3308:121,81,-32,0,0,0.264272 -14840,3308:122,82,-32,0,0,0.257693 -14841,3308:123,83,-32,0,0,0.264672 -14842,3308:124,84,-32,0,0,0.26734 -14843,3308:225,85,-32,0,0,0.265172 -14844,3308:226,86,-32,0,0,0.248124 -14845,3308:227,87,-32,0,0,0.253899 -14846,3308:228,88,-32,0,0,0.263673 -14847,3308:229,89,-32,0,0,0.250392 -14848,3309:120,90,-32,0,0,0.249641 -14849,3309:121,91,-32,0,0,0.265032 -14850,3309:122,92,-32,0,0,0.268126 -14851,3309:123,93,-32,0,0,0.266395 -14852,3309:124,94,-32,0,0,0.26212 -14853,3309:225,95,-32,0,0,0.25992 -14854,3309:226,96,-32,0,0,0.258027 -14855,3309:227,97,-32,0,0,0.256183 -14856,3309:228,98,-32,0,0,0.25353 -14857,3309:229,99,-32,0,0,0.251609 -14858,3310:120,100,-32,0,0,0.257182 -14859,3310:121,101,-32,0,0,0.260276 -14860,3310:122,102,-32,0,0,0.259052 -14861,3310:123,103,-32,0,0,0.258146 -14862,3310:124,104,-32,0,0,0.257104 -14863,3310:225,105,-32,0,0,0.258599 -14864,3310:226,106,-32,0,0,0.25587 -14865,3310:227,107,-32,0,0,0.254405 -14866,3310:228,108,-32,0,0,0.253024 -14867,3310:229,109,-32,0,0,0.251706 -14868,3311:120,110,-32,0,0,0.253549 -14869,3311:121,111,-32,0,0,0.252791 -14870,3311:122,112,-32,0,0,0.253685 -14871,3311:123,113,-32,0,0,0.251822 -14872,3311:124,114,-32,0,0,0.255694 -14873,3311:225,115,-32,0,0,0.259664 -14874,3311:226,116,-32,0,0,0.261246 -14875,3311:227,117,-32,0,0,0.261386 -14876,3311:228,118,-32,0,0,0.261386 -14877,3311:229,119,-32,0,0,0.263912 -14878,3312:120,120,-32,0,0,0.265492 -14879,3312:121,121,-32,0,0,0.265412 -14880,3312:122,122,-32,0,0,0.266054 -14881,3312:123,123,-32,0,0,0.269701 -14882,3312:124,124,-32,0,0,0.269458 -14883,3312:225,125,-32,0,0,0.265352 -14884,3312:226,126,-32,0,0,0.265012 -14885,3312:227,127,-32,0,0,0.271282 -14886,3312:228,128,-32,0,0,0.271668 -14887,3312:229,129,-32,0,0,0.271364 -14888,3313:120,130,-32,0,0,0.270511 -14889,3313:121,131,-32,0,0,0.272279 -14890,3313:122,132,-32,0,0,0.273338 -14891,3313:123,133,-32,0,0,0.270876 -14892,3313:124,134,-32,0,0,0.276369 -14893,3313:225,135,-32,0,0,0.283118 -14894,3313:226,136,-32,0,0,0.289183 -14895,3313:227,137,-32,0,0,0.297875 -14896,3313:228,138,-32,0,0,0.295624 -14897,3313:229,139,-32,0,0,0.31172 -14898,3314:120,140,-32,0,0,0.316501 -14899,3314:121,141,-32,0,0,0.307503 -14900,3314:122,142,-32,0,0,0.303752 -14901,3314:123,143,-32,0,0,0.314371 -14902,3314:124,144,-32,0,0,0.321164 -14903,3314:229,149,-32,0,0,0.355316 -14904,3315:120,150,-32,0,0,0.345193 -14905,3315:121,151,-32,0,0,0.357508 -14906,3315:122,152,-32,0,0,0.347262 -14907,3315:123,153,-32,0,0,0.346518 -14908,3315:124,154,-32,0,0,0.335986 -14909,3315:225,155,-32,0,0,0.327468 -14910,3315:226,156,-32,0,0,0.328328 -14911,3315:227,157,-32,0,0,0.326383 -14912,3315:228,158,-32,0,0,0.329008 -14913,3315:229,159,-32,0,0,0.331554 -14914,3316:120,160,-32,0,0,0.329689 -14915,3316:121,161,-32,0,0,0.324016 -14916,3316:122,162,-32,0,0,0.321657 -14917,3316:123,163,-32,0,0,0.317457 -14918,3316:124,164,-32,0,0,0.31183 -14919,3316:225,165,-32,0,0,0.310992 -14920,3316:226,166,-32,0,0,0.311786 -14921,3316:227,167,-32,0,0,0.315258 -14922,3316:228,168,-32,0,0,0.311984 -14923,3316:229,169,-32,0,0,0.314482 -14924,3317:120,170,-32,0,0,0.313419 -14925,3317:121,171,-32,0,0,0.306607 -14926,3317:122,172,-32,0,0,0.301238 -14927,3317:227,177,-32,0,0,0.328601 -14928,3317:228,178,-32,0,0,0.339571 -14929,3317:229,179,-32,0,0,0.32233 -14930,3318:120,180,-32,0,0,0.335047 -14931,5318:110,-180,-31,0,0,0.345727 -14932,5317:219,-179,-31,0,0,0.338903 -14933,5317:218,-178,-31,0,0,0.329962 -14934,5317:217,-177,-31,0,0,0.334956 -14935,5317:216,-176,-31,0,0,0.334475 -14936,5317:215,-175,-31,0,0,0.330144 -14937,5317:114,-174,-31,0,0,0.325345 -14938,5317:113,-173,-31,0,0,0.31837 -14939,5317:112,-172,-31,0,0,0.323926 -14940,5317:111,-171,-31,0,0,0.332374 -14941,5317:110,-170,-31,0,0,0.326428 -14942,5316:219,-169,-31,0,0,0.323116 -14943,5316:218,-168,-31,0,0,0.324556 -14944,5316:217,-167,-31,0,0,0.324443 -14945,5316:216,-166,-31,0,0,0.323678 -14946,5316:215,-165,-31,0,0,0.325435 -14947,5316:114,-164,-31,0,0,0.320716 -14948,5316:113,-163,-31,0,0,0.325886 -14949,5316:112,-162,-31,0,0,0.329349 -14950,5316:111,-161,-31,0,0,0.342874 -14951,5316:110,-160,-31,0,0,0.343986 -14952,5315:219,-159,-31,0,0,0.342203 -14953,5315:218,-158,-31,0,0,0.345611 -14954,5315:217,-157,-31,0,0,0.343963 -14955,5315:216,-156,-31,0,0,0.345425 -14956,5315:215,-155,-31,0,0,0.347845 -14957,5315:114,-154,-31,0,0,0.352333 -14958,5315:113,-153,-31,0,0,0.354893 -14959,5315:112,-152,-31,0,0,0.358713 -14960,5315:111,-151,-31,0,0,0.355834 -14961,5315:110,-150,-31,0,0,0.358453 -14962,5314:219,-149,-31,0,0,0.36044 -14963,5314:218,-148,-31,0,0,0.363786 -14964,5314:217,-147,-31,0,0,0.362052 -14965,5314:216,-146,-31,0,0,0.362265 -14966,5314:215,-145,-31,0,0,0.361648 -14967,5314:114,-144,-31,0,0,0.359967 -14968,5314:113,-143,-31,0,0,0.363168 -14969,5314:112,-142,-31,0,0,0.362218 -14970,5314:111,-141,-31,0,0,0.358052 -14971,5314:110,-140,-31,0,0,0.357956 -14972,5313:219,-139,-31,0,0,0.354117 -14973,5313:218,-138,-31,0,0,0.352756 -14974,5313:217,-137,-31,0,0,0.349852 -14975,5313:216,-136,-31,0,0,0.347123 -14976,5313:215,-135,-31,0,0,0.349782 -14977,5313:114,-134,-31,0,0,0.349151 -14978,5313:113,-133,-31,0,0,0.349688 -14979,5313:112,-132,-31,0,0,0.350039 -14980,5313:111,-131,-31,0,0,0.347985 -14981,5313:110,-130,-31,0,0,0.347542 -14982,5312:219,-129,-31,0,0,0.346611 -14983,5312:218,-128,-31,0,0,0.342411 -14984,5312:217,-127,-31,0,0,0.335162 -14985,5312:216,-126,-31,0,0,0.335436 -14986,5312:215,-125,-31,0,0,0.33649 -14987,5312:114,-124,-31,0,0,0.33842 -14988,5312:113,-123,-31,0,0,0.333675 -14989,5312:112,-122,-31,0,0,0.331941 -14990,5312:111,-121,-31,0,0,0.324984 -14991,5312:110,-120,-31,0,0,0.321545 -14992,5311:219,-119,-31,0,0,0.326315 -14993,5311:218,-118,-31,0,0,0.332488 -14994,5311:217,-117,-31,0,0,0.33594 -14995,5311:216,-116,-31,0,0,0.336995 -14996,5311:215,-115,-31,0,0,0.333104 -14997,5311:114,-114,-31,0,0,0.31962 -14998,5311:113,-113,-31,0,0,0.31508 -14999,5311:112,-112,-31,0,0,0.310486 -15000,5311:111,-111,-31,0,0,0.297037 -15001,5311:110,-110,-31,0,0,0.294257 -15002,5310:219,-109,-31,0,0,0.304993 -15003,5310:218,-108,-31,0,0,0.296995 -15004,5310:217,-107,-31,0,0,0.29183 -15005,5310:216,-106,-31,0,0,0.296887 -15006,5310:215,-105,-31,0,0,0.293446 -15007,5310:114,-104,-31,0,0,0.299899 -15008,5310:113,-103,-31,0,0,0.294683 -15009,5310:112,-102,-31,0,0,0.294384 -15010,5310:111,-101,-31,0,0,0.295945 -15011,5310:110,-100,-31,0,0,0.291341 -15012,5309:219,-99,-31,0,0,0.296116 -15013,5309:218,-98,-31,0,0,0.298348 -15014,5309:217,-97,-31,0,0,0.291002 -15015,5309:216,-96,-31,0,0,0.294107 -15016,5309:215,-95,-31,0,0,0.29268 -15017,5309:114,-94,-31,0,0,0.298649 -15018,5309:113,-93,-31,0,0,0.300762 -15019,5309:112,-92,-31,0,0,0.288971 -15020,5309:111,-91,-31,0,0,0.283806 -15021,5309:110,-90,-31,0,0,0.282825 -15022,5308:219,-89,-31,0,0,0.284287 -15023,5308:218,-88,-31,0,0,0.284663 -15024,5308:217,-87,-31,0,0,0.287265 -15025,5308:216,-86,-31,0,0,0.288845 -15026,5308:215,-85,-31,0,0,0.286844 -15027,5308:114,-84,-31,0,0,0.279483 -15028,5308:113,-83,-31,0,0,0.276267 -15029,5308:112,-82,-31,0,0,0.271648 -15030,5308:111,-81,-31,0,0,0.276965 -15031,5308:110,-80,-31,0,0,0.278863 -15032,5307:219,-79,-31,0,0,0.281099 -15033,5307:218,-78,-31,0,0,0.282763 -15034,5307:217,-77,-31,0,0,0.28817 -15035,5307:216,-76,-31,0,0,0.287433 -15036,5307:215,-75,-31,0,0,0.288233 -15037,5307:114,-74,-31,0,0,0.291045 -15038,5306:112,-62,-31,0,0,0.424414 -15039,5306:111,-61,-31,0,0,0.370662 -15040,5306:110,-60,-31,0,0,0.366072 -15041,5305:219,-59,-31,0,0,0.35567 -15042,5305:218,-58,-31,0,0,0.346797 -15043,5305:217,-57,-31,0,0,0.330553 -15044,5305:216,-56,-31,0,0,0.263175 -15045,5305:215,-55,-31,0,0,0.263713 -15046,5305:114,-54,-31,0,0,0.33711 -15047,5305:113,-53,-31,0,0,0.39358 -15048,5305:112,-52,-31,0,0,0.32397 -15049,5305:111,-51,-31,0,0,0.339295 -15050,5305:110,-50,-31,0,0,0.399383 -15051,5304:219,-49,-31,0,0,0.409553 -15052,5304:218,-48,-31,0,0,0.350179 -15053,5304:217,-47,-31,0,0,0.374288 -15054,5304:216,-46,-31,0,0,0.381849 -15055,5304:215,-45,-31,0,0,0.356847 -15056,5304:114,-44,-31,0,0,0.302104 -15057,5304:113,-43,-31,0,0,0.288381 -15058,5304:112,-42,-31,0,0,0.32103 -15059,5304:111,-41,-31,0,0,0.337432 -15060,5304:110,-40,-31,0,0,0.324016 -15061,5303:219,-39,-31,0,0,0.303709 -15062,5303:218,-38,-31,0,0,0.289648 -15063,5303:217,-37,-31,0,0,0.281681 -15064,5303:216,-36,-31,0,0,0.292042 -15065,5303:215,-35,-31,0,0,0.296159 -15066,5303:114,-34,-31,0,0,0.292042 -15067,5303:113,-33,-31,0,0,0.296266 -15068,5303:112,-32,-31,0,0,0.308203 -15069,5303:111,-31,-31,0,0,0.309695 -15070,5303:110,-30,-31,0,0,0.308401 -15071,5302:219,-29,-31,0,0,0.318348 -15072,5302:218,-28,-31,0,0,0.307284 -15073,5302:217,-27,-31,0,0,0.30593 -15074,5302:216,-26,-31,0,0,0.305777 -15075,5302:215,-25,-31,0,0,0.302797 -15076,5302:114,-24,-31,0,0,0.30033 -15077,5302:113,-23,-31,0,0,0.298413 -15078,5302:112,-22,-31,0,0,0.29166 -15079,5302:111,-21,-31,0,0,0.28527 -15080,5302:110,-20,-31,0,0,0.2621 -15081,5301:219,-19,-31,0,0,0.26087 -15082,5301:218,-18,-31,0,0,0.271546 -15083,5301:217,-17,-31,0,0,0.275405 -15084,5301:216,-16,-31,0,0,0.276389 -15085,5301:215,-15,-31,0,0,0.290769 -15086,5301:114,-14,-31,0,0,0.288739 -15087,5301:113,-13,-31,0,0,0.274851 -15088,5301:112,-12,-31,0,0,0.279607 -15089,5301:111,-11,-31,0,0,0.282721 -15090,5301:110,-10,-31,0,0,0.277851 -15091,5300:219,-9,-31,0,0,0.280373 -15092,5300:218,-8,-31,0,0,0.277439 -15093,5300:217,-7,-31,0,0,0.274565 -15094,5300:216,-6,-31,0,0,0.271851 -15095,5300:215,-5,-31,0,0,0.277233 -15096,5300:114,-4,-31,0,0,0.274954 -15097,5300:113,-3,-31,0,0,0.262081 -15098,5300:112,-2,-31,0,0,0.265973 -15099,5300:111,-1,-31,0,0,0.262219 -15100,3300:111,0,-31,0,0,0.265813 -15101,3300:111,1,-31,0,0,0.258618 -15102,3300:112,2,-31,0,0,0.258244 -15103,3300:113,3,-31,0,0,0.266596 -15104,3300:114,4,-31,0,0,0.28139 -15105,3300:215,5,-31,0,0,0.281099 -15106,3300:216,6,-31,0,0,0.288064 -15107,3300:217,7,-31,0,0,0.308839 -15108,3300:218,8,-31,0,0,0.317546 -15109,3300:219,9,-31,0,0,0.310068 -15110,3301:110,10,-31,0,0,0.307766 -15111,3301:111,11,-31,0,0,0.358926 -15112,3301:112,12,-31,0,0,0.348591 -15113,3301:113,13,-31,0,0,0.366406 -15114,3301:114,14,-31,0,0,0.371957 -15115,3301:215,15,-31,0,0,0.344148 -15116,3301:216,16,-31,0,0,0.347355 -15117,3301:217,17,-31,0,0,0.425418 -15118,3301:218,18,-31,0,0,0.422533 -15119,3301:219,19,-31,0,0,0.430398 -15120,3302:110,20,-31,0,0,0.408983 -15121,3302:111,21,-31,0,0,0.359895 -15122,3302:112,22,-31,0,0,0.379306 -15123,3302:113,23,-31,0,0,0.40784 -15124,3302:114,24,-31,0,0,0.392085 -15125,3302:215,25,-31,0,0,0.364667 -15126,3302:216,26,-31,0,0,0.359753 -15127,3302:217,27,-31,0,0,0.328918 -15128,3302:218,28,-31,0,0,0.325164 -15129,3302:219,29,-31,0,0,0.356989 -15130,3303:110,30,-31,0,0,0.411045 -15131,3303:111,31,-31,0,0,0.414706 -15132,3303:112,32,-31,0,0,0.398816 -15133,3303:113,33,-31,0,0,0.321657 -15134,3303:114,34,-31,0,0,0.322173 -15135,3303:215,35,-31,0,0,0.390128 -15136,3303:216,36,-31,0,0,0.381971 -15137,3303:217,37,-31,0,0,0.383549 -15138,3303:218,38,-31,0,0,0.335505 -15139,3303:219,39,-31,0,0,0.321366 -15140,3304:110,40,-31,0,0,0.353131 -15141,3304:111,41,-31,0,0,0.371046 -15142,3304:112,42,-31,0,0,0.368077 -15143,3304:113,43,-31,0,0,0.345564 -15144,3304:114,44,-31,0,0,0.323431 -15145,3304:215,45,-31,0,0,0.357414 -15146,3304:216,46,-31,0,0,0.352778 -15147,3304:217,47,-31,0,0,0.351607 -15148,3304:218,48,-31,0,0,0.338604 -15149,3304:219,49,-31,0,0,0.339917 -15150,3305:110,50,-31,0,0,0.345843 -15151,3305:111,51,-31,0,0,0.328283 -15152,3305:112,52,-31,0,0,0.336376 -15153,3305:113,53,-31,0,0,0.30087 -15154,3305:114,54,-31,0,0,0.301497 -15155,3305:215,55,-31,0,0,0.330258 -15156,3305:216,56,-31,0,0,0.307722 -15157,3305:217,57,-31,0,0,0.306541 -15158,3305:218,58,-31,0,0,0.302971 -15159,3305:219,59,-31,0,0,0.305254 -15160,3306:110,60,-31,0,0,0.311918 -15161,3306:111,61,-31,0,0,0.313928 -15162,3306:112,62,-31,0,0,0.309849 -15163,3306:113,63,-31,0,0,0.305341 -15164,3306:114,64,-31,0,0,0.309387 -15165,3306:215,65,-31,0,0,0.305211 -15166,3306:216,66,-31,0,0,0.306497 -15167,3306:217,67,-31,0,0,0.305777 -15168,3306:218,68,-31,0,0,0.307831 -15169,3306:219,69,-31,0,0,0.305668 -15170,3307:110,70,-31,0,0,0.294705 -15171,3307:111,71,-31,0,0,0.302342 -15172,3307:112,72,-31,0,0,0.29588 -15173,3307:114,74,-31,0,0,0.298821 -15174,3307:215,75,-31,0,0,0.300892 -15175,3307:216,76,-31,0,0,0.299425 -15176,3307:217,77,-31,0,0,0.29464 -15177,3307:218,78,-31,0,0,0.288528 -15178,3307:219,79,-31,0,0,0.29268 -15179,3308:110,80,-31,0,0,0.290261 -15180,3308:111,81,-31,0,0,0.282471 -15181,3308:112,82,-31,0,0,0.274156 -15182,3308:113,83,-31,0,0,0.28697 -15183,3308:114,84,-31,0,0,0.289204 -15184,3308:215,85,-31,0,0,0.284601 -15185,3308:216,86,-31,0,0,0.277727 -15186,3308:217,87,-31,0,0,0.281494 -15187,3308:218,88,-31,0,0,0.280104 -15188,3308:219,89,-31,0,0,0.270795 -15189,3309:110,90,-31,0,0,0.273441 -15190,3309:111,91,-31,0,0,0.271607 -15191,3309:112,92,-31,0,0,0.270471 -15192,3309:113,93,-31,0,0,0.269822 -15193,3309:114,94,-31,0,0,0.269418 -15194,3309:215,95,-31,0,0,0.268085 -15195,3309:216,96,-31,0,0,0.265172 -15196,3309:217,97,-31,0,0,0.261445 -15197,3309:218,98,-31,0,0,0.259762 -15198,3309:219,99,-31,0,0,0.262637 -15199,3310:110,100,-31,0,0,0.267219 -15200,3310:111,101,-31,0,0,0.266737 -15201,3310:112,102,-31,0,0,0.265813 -15202,3310:113,103,-31,0,0,0.265933 -15203,3310:114,104,-31,0,0,0.266737 -15204,3310:215,105,-31,0,0,0.266676 -15205,3310:216,106,-31,0,0,0.266737 -15206,3310:217,107,-31,0,0,0.265954 -15207,3310:218,108,-31,0,0,0.264252 -15208,3310:219,109,-31,0,0,0.264332 -15209,3311:110,110,-31,0,0,0.265753 -15210,3311:111,111,-31,0,0,0.270045 -15211,3311:112,112,-31,0,0,0.311257 -15212,3311:113,113,-31,0,0,0.277006 -15213,3311:114,114,-31,0,0,0.27039 -15214,3311:215,115,-31,0,0,0.277769 -15215,3311:216,116,-31,0,0,0.28412 -15216,3311:217,117,-31,0,0,0.284998 -15217,3311:218,118,-31,0,0,0.28504 -15218,3311:219,119,-31,0,0,0.285124 -15219,3312:110,120,-31,0,0,0.281785 -15220,3312:111,121,-31,0,0,0.282618 -15221,3312:112,122,-31,0,0,0.289711 -15222,3312:113,123,-31,0,0,0.289901 -15223,3312:114,124,-31,0,0,0.289352 -15224,3312:215,125,-31,0,0,0.283848 -15225,3312:216,126,-31,0,0,0.2794 -15226,3312:217,127,-31,0,0,0.288381 -15227,3312:218,128,-31,0,0,0.285312 -15228,3312:219,129,-31,0,0,0.284182 -15229,3313:110,130,-31,0,0,0.28718 -15230,3313:111,131,-31,0,0,0.290685 -15231,3313:112,132,-31,0,0,0.290303 -15232,3313:113,133,-31,0,0,0.292786 -15233,3313:114,134,-31,0,0,0.294598 -15234,3313:215,135,-31,0,0,0.300654 -15235,3313:216,136,-31,0,0,0.311102 -15236,3313:217,137,-31,0,0,0.30545 -15237,3313:218,138,-31,0,0,0.317969 -15238,3313:219,139,-31,0,0,0.329372 -15239,3314:110,140,-31,0,0,0.325007 -15240,3314:111,141,-31,0,0,0.332876 -15241,3314:112,142,-31,0,0,0.334521 -15242,3314:113,143,-31,0,0,0.335162 -15243,3314:114,144,-31,0,0,0.347635 -15244,3314:215,145,-31,0,0,0.353999 -15245,3314:216,146,-31,0,0,0.343222 -15246,3314:217,147,-31,0,0,0.343291 -15247,3314:218,148,-31,0,0,0.372437 -15248,3314:219,149,-31,0,0,0.3655 -15249,3315:110,150,-31,0,0,0.354422 -15250,3315:111,151,-31,0,0,0.360843 -15251,3315:112,152,-31,0,0,0.38134 -15252,3315:113,153,-31,0,0,0.367982 -15253,3315:114,154,-31,0,0,0.352919 -15254,3315:215,155,-31,0,0,0.352756 -15255,3315:216,156,-31,0,0,0.357862 -15256,3315:217,157,-31,0,0,0.358783 -15257,3315:218,158,-31,0,0,0.359493 -15258,3315:219,159,-31,0,0,0.364952 -15259,3316:110,160,-31,0,0,0.364286 -15260,3316:111,161,-31,0,0,0.362337 -15261,3316:112,162,-31,0,0,0.350554 -15262,3316:113,163,-31,0,0,0.34024 -15263,3316:114,164,-31,0,0,0.33331 -15264,3316:215,165,-31,0,0,0.337501 -15265,3316:216,166,-31,0,0,0.336651 -15266,3316:217,167,-31,0,0,0.330416 -15267,3316:218,168,-31,0,0,0.324173 -15268,3316:219,169,-31,0,0,0.323318 -15269,3317:110,170,-31,0,0,0.323431 -15270,3317:111,171,-31,0,0,0.322599 -15271,3317:112,172,-31,0,0,0.311235 -15272,3317:113,173,-31,0,0,0.308795 -15273,3317:114,174,-31,0,0,0.312271 -15274,3317:215,175,-31,0,0,0.332922 -15275,3317:218,178,-31,0,0,0.378556 -15276,3317:219,179,-31,0,0,0.367767 -15277,3318:110,180,-31,0,0,0.345727 -15278,5318:100,-180,-30,0,0,0.369967 -15279,5317:209,-179,-30,0,0,0.347402 -15280,5317:208,-178,-30,0,0,0.345588 -15281,5317:207,-177,-30,0,0,0.345866 -15282,5317:206,-176,-30,0,0,0.338259 -15283,5317:205,-175,-30,0,0,0.335574 -15284,5317:104,-174,-30,0,0,0.337018 -15285,5317:103,-173,-30,0,0,0.340078 -15286,5317:102,-172,-30,0,0,0.351396 -15287,5317:101,-171,-30,0,0,0.349338 -15288,5317:100,-170,-30,0,0,0.346215 -15289,5316:209,-169,-30,0,0,0.340725 -15290,5316:208,-168,-30,0,0,0.337225 -15291,5316:207,-167,-30,0,0,0.336628 -15292,5316:206,-166,-30,0,0,0.340309 -15293,5316:205,-165,-30,0,0,0.343198 -15294,5316:104,-164,-30,0,0,0.345425 -15295,5316:103,-163,-30,0,0,0.349571 -15296,5316:102,-162,-30,0,0,0.350296 -15297,5316:101,-161,-30,0,0,0.355481 -15298,5316:100,-160,-30,0,0,0.355222 -15299,5315:209,-159,-30,0,0,0.358406 -15300,5315:208,-158,-30,0,0,0.358359 -15301,5315:207,-157,-30,0,0,0.35454 -15302,5315:206,-156,-30,0,0,0.354305 -15303,5315:205,-155,-30,0,0,0.35824 -15304,5315:104,-154,-30,0,0,0.363763 -15305,5315:103,-153,-30,0,0,0.365357 -15306,5315:102,-152,-30,0,0,0.365286 -15307,5315:101,-151,-30,0,0,0.367002 -15308,5315:100,-150,-30,0,0,0.36968 -15309,5314:209,-149,-30,0,0,0.371837 -15310,5314:208,-148,-30,0,0,0.370231 -15311,5314:207,-147,-30,0,0,0.370207 -15312,5314:206,-146,-30,0,0,0.374048 -15313,5314:205,-145,-30,0,0,0.379935 -15314,5314:104,-144,-30,0,0,0.377591 -15315,5314:103,-143,-30,0,0,0.375107 -15316,5314:102,-142,-30,0,0,0.375492 -15317,5314:101,-141,-30,0,0,0.37566 -15318,5314:100,-140,-30,0,0,0.372653 -15319,5313:209,-139,-30,0,0,0.371933 -15320,5313:208,-138,-30,0,0,0.372413 -15321,5313:207,-137,-30,0,0,0.368722 -15322,5313:206,-136,-30,0,0,0.36674 -15323,5313:205,-135,-30,0,0,0.367599 -15324,5313:104,-134,-30,0,0,0.363026 -15325,5313:103,-133,-30,0,0,0.366215 -15326,5313:102,-132,-30,0,0,0.36153 -15327,5313:101,-131,-30,0,0,0.359375 -15328,5313:100,-130,-30,0,0,0.35574 -15329,5312:209,-129,-30,0,0,0.35567 -15330,5312:208,-128,-30,0,0,0.350764 -15331,5312:207,-127,-30,0,0,0.347355 -15332,5312:206,-126,-30,0,0,0.3471 -15333,5312:205,-125,-30,0,0,0.348125 -15334,5312:104,-124,-30,0,0,0.343291 -15335,5312:103,-123,-30,0,0,0.344682 -15336,5312:102,-122,-30,0,0,0.341186 -15337,5312:101,-121,-30,0,0,0.342781 -15338,5312:100,-120,-30,0,0,0.345518 -15339,5311:209,-119,-30,0,0,0.343013 -15340,5311:208,-118,-30,0,0,0.34181 -15341,5311:207,-117,-30,0,0,0.34336 -15342,5311:206,-116,-30,0,0,0.342712 -15343,5311:205,-115,-30,0,0,0.334201 -15344,5311:104,-114,-30,0,0,0.330871 -15345,5311:103,-113,-30,0,0,0.334017 -15346,5311:102,-112,-30,0,0,0.330439 -15347,5311:101,-111,-30,0,0,0.313707 -15348,5311:100,-110,-30,0,0,0.323026 -15349,5310:209,-109,-30,0,0,0.318527 -15350,5310:208,-108,-30,0,0,0.319732 -15351,5310:207,-107,-30,0,0,0.321478 -15352,5310:206,-106,-30,0,0,0.310883 -15353,5310:205,-105,-30,0,0,0.31875 -15354,5310:104,-104,-30,0,0,0.315435 -15355,5310:103,-103,-30,0,0,0.312535 -15356,5310:102,-102,-30,0,0,0.314947 -15357,5310:101,-101,-30,0,0,0.310332 -15358,5310:100,-100,-30,0,0,0.31477 -15359,5309:209,-99,-30,0,0,0.307437 -15360,5309:208,-98,-30,0,0,0.307153 -15361,5309:207,-97,-30,0,0,0.304644 -15362,5309:206,-96,-30,0,0,0.307175 -15363,5309:205,-95,-30,0,0,0.317813 -15364,5309:104,-94,-30,0,0,0.317524 -15365,5309:103,-93,-30,0,0,0.312315 -15366,5309:102,-92,-30,0,0,0.307569 -15367,5309:101,-91,-30,0,0,0.306017 -15368,5309:100,-90,-30,0,0,0.304188 -15369,5308:209,-89,-30,0,0,0.296116 -15370,5308:208,-88,-30,0,0,0.29809 -15371,5308:207,-87,-30,0,0,0.303992 -15372,5308:206,-86,-30,0,0,0.307088 -15373,5308:205,-85,-30,0,0,0.303514 -15374,5308:104,-84,-30,0,0,0.29633 -15375,5308:103,-83,-30,0,0,0.291787 -15376,5308:102,-82,-30,0,0,0.294961 -15377,5308:101,-81,-30,0,0,0.293787 -15378,5308:100,-80,-30,0,0,0.30033 -15379,5307:209,-79,-30,0,0,0.300439 -15380,5307:208,-78,-30,0,0,0.295773 -15381,5307:207,-77,-30,0,0,0.301281 -15382,5307:206,-76,-30,0,0,0.301887 -15383,5307:205,-75,-30,0,0,0.298133 -15384,5307:104,-74,-30,0,0,0.307021 -15385,5306:100,-60,-30,0,0,0.393262 -15386,5305:209,-59,-30,0,0,0.375396 -15387,5305:208,-58,-30,0,0,0.384836 -15388,5305:207,-57,-30,0,0,0.362527 -15389,5305:206,-56,-30,0,0,0.316523 -15390,5305:205,-55,-30,0,0,0.271709 -15391,5305:104,-54,-30,0,0,0.340194 -15392,5305:103,-53,-30,0,0,0.401356 -15393,5305:102,-52,-30,0,0,0.351865 -15394,5305:101,-51,-30,0,0,0.360937 -15395,5305:100,-50,-30,0,0,0.411518 -15396,5304:209,-49,-30,0,0,0.407146 -15397,5304:208,-48,-30,0,0,0.385445 -15398,5304:207,-47,-30,0,0,0.403085 -15399,5304:206,-46,-30,0,0,0.396969 -15400,5304:205,-45,-30,0,0,0.381437 -15401,5304:104,-44,-30,0,0,0.361222 -15402,5304:103,-43,-30,0,0,0.351677 -15403,5304:102,-42,-30,0,0,0.348428 -15404,5304:101,-41,-30,0,0,0.364309 -15405,5304:100,-40,-30,0,0,0.33315 -15406,5303:209,-39,-30,0,0,0.300806 -15407,5303:208,-38,-30,0,0,0.303579 -15408,5303:207,-37,-30,0,0,0.312226 -15409,5303:206,-36,-30,0,0,0.326745 -15410,5303:205,-35,-30,0,0,0.332146 -15411,5303:104,-34,-30,0,0,0.332739 -15412,5303:103,-33,-30,0,0,0.324398 -15413,5303:102,-32,-30,0,0,0.322622 -15414,5303:101,-31,-30,0,0,0.322555 -15415,5303:100,-30,-30,0,0,0.322061 -15416,5302:209,-29,-30,0,0,0.316212 -15417,5302:208,-28,-30,0,0,0.310728 -15418,5302:207,-27,-30,0,0,0.308247 -15419,5302:206,-26,-30,0,0,0.308269 -15420,5302:205,-25,-30,0,0,0.305887 -15421,5302:104,-24,-30,0,0,0.304079 -15422,5302:103,-23,-30,0,0,0.302732 -15423,5302:102,-22,-30,0,0,0.302494 -15424,5302:101,-21,-30,0,0,0.301476 -15425,5302:100,-20,-30,0,0,0.299748 -15426,5301:209,-19,-30,0,0,0.303275 -15427,5301:208,-18,-30,0,0,0.312381 -15428,5301:207,-17,-30,0,0,0.306759 -15429,5301:206,-16,-30,0,0,0.303687 -15430,5301:205,-15,-30,0,0,0.301865 -15431,5301:104,-14,-30,0,0,0.311675 -15432,5301:103,-13,-30,0,0,0.306737 -15433,5301:102,-12,-30,0,0,0.297982 -15434,5301:101,-11,-30,0,0,0.292935 -15435,5301:100,-10,-30,0,0,0.295517 -15436,5300:209,-9,-30,0,0,0.293808 -15437,5300:208,-8,-30,0,0,0.302949 -15438,5300:207,-7,-30,0,0,0.297381 -15439,5300:206,-6,-30,0,0,0.30271 -15440,5300:205,-5,-30,0,0,0.294598 -15441,5300:104,-4,-30,0,0,0.290155 -15442,5300:103,-3,-30,0,0,0.277336 -15443,5300:102,-2,-30,0,0,0.283806 -15444,5300:101,-1,-30,0,0,0.294235 -15445,3300:101,0,-30,0,0,0.295153 -15446,3300:101,1,-30,0,0,0.280477 -15447,3300:102,2,-30,0,0,0.286004 -15448,3300:103,3,-30,0,0,0.284454 -15449,3300:104,4,-30,0,0,0.289035 -15450,3300:205,5,-30,0,0,0.298413 -15451,3300:206,6,-30,0,0,0.30321 -15452,3300:207,7,-30,0,0,0.302126 -15453,3300:208,8,-30,0,0,0.321792 -15454,3300:209,9,-30,0,0,0.323139 -15455,3301:100,10,-30,0,0,0.351489 -15456,3301:101,11,-30,0,0,0.379137 -15457,3301:102,12,-30,0,0,0.38598 -15458,3301:103,13,-30,0,0,0.387589 -15459,3301:104,14,-30,0,0,0.391743 -15460,3301:205,15,-30,0,0,0.387491 -15461,3301:206,16,-30,0,0,0.405857 -15462,3301:207,17,-30,0,0,0.432767 -15463,3301:208,18,-30,0,0,0.425996 -15464,3301:209,19,-30,0,0,0.429592 -15465,3302:100,20,-30,0,0,0.421656 -15466,3302:101,21,-30,0,0,0.415978 -15467,3302:102,22,-30,0,0,0.42316 -15468,3302:103,23,-30,0,0,0.426624 -15469,3302:104,24,-30,0,0,0.389102 -15470,3302:205,25,-30,0,0,0.398964 -15471,3302:206,26,-30,0,0,0.392796 -15472,3302:207,27,-30,0,0,0.333058 -15473,3302:208,28,-30,0,0,0.35574 -15474,3302:209,29,-30,0,0,0.401356 -15475,3303:100,30,-30,0,0,0.417152 -15476,3303:101,31,-30,0,0,0.402516 -15477,3303:102,32,-30,0,0,0.414058 -15478,3303:103,33,-30,0,0,0.327129 -15479,3303:104,34,-30,0,0,0.340217 -15480,3303:205,35,-30,0,0,0.401183 -15481,3303:206,36,-30,0,0,0.378533 -15482,3303:207,37,-30,0,0,0.377059 -15483,3303:208,38,-30,0,0,0.365452 -15484,3303:209,39,-30,0,0,0.341071 -15485,3304:100,40,-30,0,0,0.375107 -15486,3304:101,41,-30,0,0,0.365977 -15487,3304:102,42,-30,0,0,0.361625 -15488,3304:103,43,-30,0,0,0.365238 -15489,3304:104,44,-30,0,0,0.36581 -15490,3304:205,45,-30,0,0,0.358996 -15491,3304:206,46,-30,0,0,0.355552 -15492,3304:207,47,-30,0,0,0.35238 -15493,3304:208,48,-30,0,0,0.356117 -15494,3304:209,49,-30,0,0,0.358335 -15495,3305:100,50,-30,0,0,0.348218 -15496,3305:101,51,-30,0,0,0.340378 -15497,3305:102,52,-30,0,0,0.337592 -15498,3305:103,53,-30,0,0,0.320359 -15499,3305:104,54,-30,0,0,0.33617 -15500,3305:205,55,-30,0,0,0.33918 -15501,3305:206,56,-30,0,0,0.318705 -15502,3305:207,57,-30,0,0,0.322083 -15503,3305:208,58,-30,0,0,0.328713 -15504,3305:209,59,-30,0,0,0.323701 -15505,3306:100,60,-30,0,0,0.320359 -15506,3306:101,61,-30,0,0,0.322914 -15507,3306:102,62,-30,0,0,0.328464 -15508,3306:103,63,-30,0,0,0.327264 -15509,3306:104,64,-30,0,0,0.321836 -15510,3306:205,65,-30,0,0,0.318616 -15511,3306:206,66,-30,0,0,0.322465 -15512,3306:207,67,-30,0,0,0.320492 -15513,3306:208,68,-30,0,0,0.313707 -15514,3306:209,69,-30,0,0,0.314548 -15515,3307:100,70,-30,0,0,0.31457 -15516,3307:101,71,-30,0,0,0.313818 -15517,3307:102,72,-30,0,0,0.311278 -15518,3307:104,74,-30,0,0,0.313773 -15519,3307:205,75,-30,0,0,0.311631 -15520,3307:206,76,-30,0,0,0.300611 -15521,3307:207,77,-30,0,0,0.295068 -15522,3307:208,78,-30,0,0,0.295367 -15523,3307:209,79,-30,0,0,0.301043 -15524,3308:100,80,-30,0,0,0.296266 -15525,3308:101,81,-30,0,0,0.294939 -15526,3308:102,82,-30,0,0,0.296394 -15527,3308:103,83,-30,0,0,0.294576 -15528,3308:104,84,-30,0,0,0.292106 -15529,3308:205,85,-30,0,0,0.291597 -15530,3308:206,86,-30,0,0,0.296501 -15531,3308:207,87,-30,0,0,0.295324 -15532,3308:208,88,-30,0,0,0.29432 -15533,3308:209,89,-30,0,0,0.291915 -15534,3309:100,90,-30,0,0,0.285354 -15535,3309:101,91,-30,0,0,0.286277 -15536,3309:102,92,-30,0,0,0.285774 -15537,3309:103,93,-30,0,0,0.284287 -15538,3309:104,94,-30,0,0,0.28293 -15539,3309:205,95,-30,0,0,0.280913 -15540,3309:206,96,-30,0,0,0.277913 -15541,3309:207,97,-30,0,0,0.276965 -15542,3309:208,98,-30,0,0,0.279772 -15543,3309:209,99,-30,0,0,0.277789 -15544,3310:100,100,-30,0,0,0.276657 -15545,3310:101,101,-30,0,0,0.279876 -15546,3310:102,102,-30,0,0,0.27713 -15547,3310:103,103,-30,0,0,0.277893 -15548,3310:104,104,-30,0,0,0.28191 -15549,3310:205,105,-30,0,0,0.279793 -15550,3310:206,106,-30,0,0,0.278614 -15551,3310:207,107,-30,0,0,0.276822 -15552,3310:208,108,-30,0,0,0.277851 -15553,3310:209,109,-30,0,0,0.280373 -15554,3311:100,110,-30,0,0,0.302754 -15555,3311:101,111,-30,0,0,0.31962 -15556,3311:102,112,-30,0,0,0.326338 -15557,3311:103,113,-30,0,0,0.319688 -15558,3311:104,114,-30,0,0,0.329235 -15559,3311:205,115,-30,0,0,0.313928 -15560,3311:206,116,-30,0,0,0.30139 -15561,3311:207,117,-30,0,0,0.309981 -15562,3311:208,118,-30,0,0,0.305515 -15563,3311:209,119,-30,0,0,0.305385 -15564,3312:100,120,-30,0,0,0.308686 -15565,3312:101,121,-30,0,0,0.317435 -15566,3312:102,122,-30,0,0,0.309695 -15567,3312:103,123,-30,0,0,0.305559 -15568,3312:104,124,-30,0,0,0.308313 -15569,3312:205,125,-30,0,0,0.311675 -15570,3312:206,126,-30,0,0,0.311081 -15571,3312:207,127,-30,0,0,0.310244 -15572,3312:208,128,-30,0,0,0.303253 -15573,3312:209,129,-30,0,0,0.298735 -15574,3313:100,130,-30,0,0,0.303796 -15575,3313:101,131,-30,0,0,0.308401 -15576,3313:102,132,-30,0,0,0.31579 -15577,3313:103,133,-30,0,0,0.311102 -15578,3313:104,134,-30,0,0,0.320761 -15579,3313:205,135,-30,0,0,0.334429 -15580,3313:206,136,-30,0,0,0.330371 -15581,3313:207,137,-30,0,0,0.326496 -15582,3313:208,138,-30,0,0,0.327333 -15583,3313:209,139,-30,0,0,0.342087 -15584,3314:100,140,-30,0,0,0.340147 -15585,3314:101,141,-30,0,0,0.35156 -15586,3314:102,142,-30,0,0,0.357248 -15587,3314:103,143,-30,0,0,0.363382 -15588,3314:104,144,-30,0,0,0.367361 -15589,3314:205,145,-30,0,0,0.363263 -15590,3314:206,146,-30,0,0,0.375396 -15591,3314:207,147,-30,0,0,0.38384 -15592,3314:208,148,-30,0,0,0.366597 -15593,3314:209,149,-30,0,0,0.389737 -15594,3315:100,150,-30,0,0,0.423686 -15595,3315:101,151,-30,0,0,0.427152 -15596,3315:102,152,-30,0,0,0.425418 -15597,3315:103,153,-30,0,0,0.387784 -15598,3315:104,154,-30,0,0,0.411742 -15599,3315:205,155,-30,0,0,0.382116 -15600,3315:206,156,-30,0,0,0.409851 -15601,3315:207,157,-30,0,0,0.386663 -15602,3315:208,158,-30,0,0,0.39211 -15603,3315:209,159,-30,0,0,0.390984 -15604,3316:100,160,-30,0,0,0.389566 -15605,3316:101,161,-30,0,0,0.383718 -15606,3316:102,162,-30,0,0,0.375685 -15607,3316:103,163,-30,0,0,0.362931 -15608,3316:104,164,-30,0,0,0.359351 -15609,3316:205,165,-30,0,0,0.356447 -15610,3316:206,166,-30,0,0,0.352122 -15611,3316:207,167,-30,0,0,0.348941 -15612,3316:208,168,-30,0,0,0.348171 -15613,3316:209,169,-30,0,0,0.340932 -15614,3317:100,170,-30,0,0,0.338328 -15615,3317:101,171,-30,0,0,0.336766 -15616,3317:102,172,-30,0,0,0.335276 -15617,3317:103,173,-30,0,0,0.332238 -15618,3317:104,174,-30,0,0,0.343592 -15619,3317:209,179,-30,0,0,0.389346 -15620,3318:100,180,-30,0,0,0.369967 -15621,5218:390,-180,-29,0,0,0.392821 -15622,5217:499,-179,-29,0,0,0.379282 -15623,5217:498,-178,-29,0,0,0.364214 -15624,5217:497,-177,-29,0,0,0.355716 -15625,5217:496,-176,-29,0,0,0.352263 -15626,5217:495,-175,-29,0,0,0.350086 -15627,5217:394,-174,-29,0,0,0.351302 -15628,5217:393,-173,-29,0,0,0.352451 -15629,5217:392,-172,-29,0,0,0.363097 -15630,5217:391,-171,-29,0,0,0.371117 -15631,5217:390,-170,-29,0,0,0.367623 -15632,5216:499,-169,-29,0,0,0.358571 -15633,5216:498,-168,-29,0,0,0.354516 -15634,5216:497,-167,-29,0,0,0.348754 -15635,5216:496,-166,-29,0,0,0.355575 -15636,5216:495,-165,-29,0,0,0.359398 -15637,5216:394,-164,-29,0,0,0.360582 -15638,5216:393,-163,-29,0,0,0.366668 -15639,5216:392,-162,-29,0,0,0.367767 -15640,5216:391,-161,-29,0,0,0.366311 -15641,5216:390,-160,-29,0,0,0.370039 -15642,5215:499,-159,-29,0,0,0.369129 -15643,5215:498,-158,-29,0,0,0.369081 -15644,5215:497,-157,-29,0,0,0.371765 -15645,5215:496,-156,-29,0,0,0.367575 -15646,5215:495,-155,-29,0,0,0.367838 -15647,5215:394,-154,-29,0,0,0.372437 -15648,5215:393,-153,-29,0,0,0.374216 -15649,5215:392,-152,-29,0,0,0.373879 -15650,5215:391,-151,-29,0,0,0.379306 -15651,5215:390,-150,-29,0,0,0.382893 -15652,5214:499,-149,-29,0,0,0.385056 -15653,5214:498,-148,-29,0,0,0.381995 -15654,5214:497,-147,-29,0,0,0.381582 -15655,5214:496,-146,-29,0,0,0.38367 -15656,5214:495,-145,-29,0,0,0.383646 -15657,5214:394,-144,-29,0,0,0.386443 -15658,5214:393,-143,-29,0,0,0.387711 -15659,5214:392,-142,-29,0,0,0.38715 -15660,5214:391,-141,-29,0,0,0.385907 -15661,5214:390,-140,-29,0,0,0.384739 -15662,5213:499,-139,-29,0,0,0.385713 -15663,5213:498,-138,-29,0,0,0.383791 -15664,5213:497,-137,-29,0,0,0.379645 -15665,5213:496,-136,-29,0,0,0.377059 -15666,5213:495,-135,-29,0,0,0.379113 -15667,5213:394,-134,-29,0,0,0.372149 -15668,5213:393,-133,-29,0,0,0.375443 -15669,5213:392,-132,-29,0,0,0.369775 -15670,5213:391,-131,-29,0,0,0.364833 -15671,5213:390,-130,-29,0,0,0.363596 -15672,5212:499,-129,-29,0,0,0.363525 -15673,5212:498,-128,-29,0,0,0.361198 -15674,5212:497,-127,-29,0,0,0.360203 -15675,5212:496,-126,-29,0,0,0.358122 -15676,5212:495,-125,-29,0,0,0.357084 -15677,5212:394,-124,-29,0,0,0.35673 -15678,5212:393,-123,-29,0,0,0.352263 -15679,5212:392,-122,-29,0,0,0.349268 -15680,5212:391,-121,-29,0,0,0.352122 -15681,5212:390,-120,-29,0,0,0.354211 -15682,5211:499,-119,-29,0,0,0.353366 -15683,5211:498,-118,-29,0,0,0.355552 -15684,5211:497,-117,-29,0,0,0.3564 -15685,5211:496,-116,-29,0,0,0.351958 -15686,5211:495,-115,-29,0,0,0.345936 -15687,5211:394,-114,-29,0,0,0.347193 -15688,5211:393,-113,-29,0,0,0.345634 -15689,5211:392,-112,-29,0,0,0.342157 -15690,5211:391,-111,-29,0,0,0.335139 -15691,5211:390,-110,-29,0,0,0.341094 -15692,5210:499,-109,-29,0,0,0.347262 -15693,5210:498,-108,-29,0,0,0.340055 -15694,5210:497,-107,-29,0,0,0.334063 -15695,5210:496,-106,-29,0,0,0.330644 -15696,5210:495,-105,-29,0,0,0.332533 -15697,5210:394,-104,-29,0,0,0.33003 -15698,5210:393,-103,-29,0,0,0.329145 -15699,5210:392,-102,-29,0,0,0.321478 -15700,5210:391,-101,-29,0,0,0.328057 -15701,5210:390,-100,-29,0,0,0.323026 -15702,5209:499,-99,-29,0,0,0.320671 -15703,5209:498,-98,-29,0,0,0.325592 -15704,5209:497,-97,-29,0,0,0.327717 -15705,5209:496,-96,-29,0,0,0.325548 -15706,5209:495,-95,-29,0,0,0.331873 -15707,5209:394,-94,-29,0,0,0.326948 -15708,5209:393,-93,-29,0,0,0.331599 -15709,5209:392,-92,-29,0,0,0.324714 -15710,5209:391,-91,-29,0,0,0.321231 -15711,5209:390,-90,-29,0,0,0.317836 -15712,5208:499,-89,-29,0,0,0.322555 -15713,5208:498,-88,-29,0,0,0.315213 -15714,5208:497,-87,-29,0,0,0.312271 -15715,5208:496,-86,-29,0,0,0.31904 -15716,5208:495,-85,-29,0,0,0.320716 -15717,5208:394,-84,-29,0,0,0.316167 -15718,5208:393,-83,-29,0,0,0.315058 -15719,5208:392,-82,-29,0,0,0.319643 -15720,5208:391,-81,-29,0,0,0.317992 -15721,5208:390,-80,-29,0,0,0.3128 -15722,5207:499,-79,-29,0,0,0.315279 -15723,5207:498,-78,-29,0,0,0.315612 -15724,5207:497,-77,-29,0,0,0.318727 -15725,5207:496,-76,-29,0,0,0.315901 -15726,5207:495,-75,-29,0,0,0.315169 -15727,5207:394,-74,-29,0,0,0.319665 -15728,5205:497,-57,-29,0,0,0.432969 -15729,5205:496,-56,-29,0,0,0.40856 -15730,5205:495,-55,-29,0,0,0.307065 -15731,5205:394,-54,-29,0,0,0.336766 -15732,5205:393,-53,-29,0,0,0.397216 -15733,5205:392,-52,-29,0,0,0.391229 -15734,5205:391,-51,-29,0,0,0.43711 -15735,5205:390,-50,-29,0,0,0.432944 -15736,5204:499,-49,-29,0,0,0.432313 -15737,5204:498,-48,-29,0,0,0.394218 -15738,5204:497,-47,-29,0,0,0.39412 -15739,5204:496,-46,-29,0,0,0.411194 -15740,5204:495,-45,-29,0,0,0.418852 -15741,5204:394,-44,-29,0,0,0.386785 -15742,5204:393,-43,-29,0,0,0.346238 -15743,5204:392,-42,-29,0,0,0.350881 -15744,5204:391,-41,-29,0,0,0.357013 -15745,5204:390,-40,-29,0,0,0.372894 -15746,5203:499,-39,-29,0,0,0.356094 -15747,5203:498,-38,-29,0,0,0.353577 -15748,5203:497,-37,-29,0,0,0.347286 -15749,5203:496,-36,-29,0,0,0.343268 -15750,5203:495,-35,-29,0,0,0.33688 -15751,5203:394,-34,-29,0,0,0.335826 -15752,5203:393,-33,-29,0,0,0.339848 -15753,5203:392,-32,-29,0,0,0.349432 -15754,5203:391,-31,-29,0,0,0.342319 -15755,5203:390,-30,-29,0,0,0.338006 -15756,5202:499,-29,-29,0,0,0.33372 -15757,5202:498,-28,-29,0,0,0.32424 -15758,5202:497,-27,-29,0,0,0.329054 -15759,5202:496,-26,-29,0,0,0.330121 -15760,5202:495,-25,-29,0,0,0.314326 -15761,5202:394,-24,-29,0,0,0.316501 -15762,5202:393,-23,-29,0,0,0.323498 -15763,5202:392,-22,-29,0,0,0.327174 -15764,5202:391,-21,-29,0,0,0.327151 -15765,5202:390,-20,-29,0,0,0.335482 -15766,5201:499,-19,-29,0,0,0.327717 -15767,5201:498,-18,-29,0,0,0.325458 -15768,5201:497,-17,-29,0,0,0.311742 -15769,5201:496,-16,-29,0,0,0.312535 -15770,5201:495,-15,-29,0,0,0.317925 -15771,5201:394,-14,-29,0,0,0.326248 -15772,5201:393,-13,-29,0,0,0.321522 -15773,5201:392,-12,-29,0,0,0.31904 -15774,5201:391,-11,-29,0,0,0.319174 -15775,5201:390,-10,-29,0,0,0.315612 -15776,5200:499,-9,-29,0,0,0.319822 -15777,5200:498,-8,-29,0,0,0.316901 -15778,5200:497,-7,-29,0,0,0.313685 -15779,5200:496,-6,-29,0,0,0.319598 -15780,5200:495,-5,-29,0,0,0.321433 -15781,5200:394,-4,-29,0,0,0.32224 -15782,5200:393,-3,-29,0,0,0.310376 -15783,5200:392,-2,-29,0,0,0.309519 -15784,5200:391,-1,-29,0,0,0.321634 -15785,3200:391,0,-29,0,0,0.316968 -15786,3200:391,1,-29,0,0,0.310509 -15787,3200:392,2,-29,0,0,0.314017 -15788,3200:393,3,-29,0,0,0.311345 -15789,3200:394,4,-29,0,0,0.303905 -15790,3200:495,5,-29,0,0,0.305014 -15791,3200:496,6,-29,0,0,0.303318 -15792,3200:497,7,-29,0,0,0.313662 -15793,3200:498,8,-29,0,0,0.331827 -15794,3200:499,9,-29,0,0,0.334132 -15795,3201:390,10,-29,0,0,0.343314 -15796,3201:391,11,-29,0,0,0.35947 -15797,3201:392,12,-29,0,0,0.367122 -15798,3201:393,13,-29,0,0,0.381801 -15799,3201:394,14,-29,0,0,0.387711 -15800,3201:495,15,-29,0,0,0.389517 -15801,3201:496,16,-29,0,0,0.391278 -15802,3201:497,17,-29,0,0,0.418477 -15803,3201:498,18,-29,0,0,0.446638 -15804,3201:499,19,-29,0,0,0.455338 -15805,3202:390,20,-29,0,0,0.442021 -15806,3202:391,21,-29,0,0,0.435064 -15807,3202:392,22,-29,0,0,0.438148 -15808,3202:393,23,-29,0,0,0.433322 -15809,3202:394,24,-29,0,0,0.420403 -15810,3202:495,25,-29,0,0,0.433297 -15811,3202:496,26,-29,0,0,0.430675 -15812,3202:497,27,-29,0,0,0.419677 -15813,3202:498,28,-29,0,0,0.370326 -15814,3202:499,29,-29,0,0,0.427956 -15815,3203:390,30,-29,0,0,0.422031 -15816,3203:391,31,-29,0,0,0.402665 -15817,3203:392,32,-29,0,0,0.404396 -15818,3203:393,33,-29,0,0,0.410871 -15819,3203:394,34,-29,0,0,0.41538 -15820,3203:495,35,-29,0,0,0.393434 -15821,3203:496,36,-29,0,0,0.383694 -15822,3203:497,37,-29,0,0,0.379766 -15823,3203:498,38,-29,0,0,0.380226 -15824,3203:499,39,-29,0,0,0.38316 -15825,3204:390,40,-29,0,0,0.381098 -15826,3204:391,41,-29,0,0,0.366382 -15827,3204:392,42,-29,0,0,0.368603 -15828,3204:393,43,-29,0,0,0.366907 -15829,3204:394,44,-29,0,0,0.365071 -15830,3204:495,45,-29,0,0,0.364309 -15831,3204:496,46,-29,0,0,0.367122 -15832,3204:497,47,-29,0,0,0.364 -15833,3204:498,48,-29,0,0,0.357296 -15834,3204:499,49,-29,0,0,0.349595 -15835,3205:390,50,-29,0,0,0.345076 -15836,3205:391,51,-29,0,0,0.344102 -15837,3205:392,52,-29,0,0,0.346308 -15838,3205:393,53,-29,0,0,0.347822 -15839,3205:394,54,-29,0,0,0.34568 -15840,3205:495,55,-29,0,0,0.342504 -15841,3205:496,56,-29,0,0,0.32885 -15842,3205:497,57,-29,0,0,0.331827 -15843,3205:498,58,-29,0,0,0.338466 -15844,3205:499,59,-29,0,0,0.334178 -15845,3206:390,60,-29,0,0,0.33119 -15846,3206:391,61,-29,0,0,0.33404 -15847,3206:392,62,-29,0,0,0.33711 -15848,3206:393,63,-29,0,0,0.335207 -15849,3206:394,64,-29,0,0,0.33888 -15850,3206:495,65,-29,0,0,0.337822 -15851,3206:496,66,-29,0,0,0.335803 -15852,3206:497,67,-29,0,0,0.333035 -15853,3206:498,68,-29,0,0,0.330598 -15854,3206:499,69,-29,0,0,0.331782 -15855,3207:390,70,-29,0,0,0.327875 -15856,3207:391,71,-29,0,0,0.327513 -15857,3207:392,72,-29,0,0,0.325841 -15858,3207:394,74,-29,0,0,0.323318 -15859,3207:495,75,-29,0,0,0.323408 -15860,3207:496,76,-29,0,0,0.322599 -15861,3207:497,77,-29,0,0,0.317969 -15862,3207:498,78,-29,0,0,0.31205 -15863,3207:499,79,-29,0,0,0.313662 -15864,3208:390,80,-29,0,0,0.308247 -15865,3208:391,81,-29,0,0,0.309036 -15866,3208:392,82,-29,0,0,0.312624 -15867,3208:393,83,-29,0,0,0.314504 -15868,3208:394,84,-29,0,0,0.315346 -15869,3208:495,85,-29,0,0,0.315302 -15870,3208:496,86,-29,0,0,0.311918 -15871,3208:497,87,-29,0,0,0.306825 -15872,3208:498,88,-29,0,0,0.303492 -15873,3208:499,89,-29,0,0,0.300935 -15874,3209:390,90,-29,0,0,0.300633 -15875,3209:391,91,-29,0,0,0.301909 -15876,3209:392,92,-29,0,0,0.301173 -15877,3209:393,93,-29,0,0,0.299145 -15878,3209:394,94,-29,0,0,0.293254 -15879,3209:495,95,-29,0,0,0.29464 -15880,3209:496,96,-29,0,0,0.295281 -15881,3209:497,97,-29,0,0,0.295303 -15882,3209:498,98,-29,0,0,0.300395 -15883,3209:499,99,-29,0,0,0.296523 -15884,3210:390,100,-29,0,0,0.296694 -15885,3210:391,101,-29,0,0,0.29285 -15886,3210:392,102,-29,0,0,0.292489 -15887,3210:393,103,-29,0,0,0.299877 -15888,3210:394,104,-29,0,0,0.299467 -15889,3210:495,105,-29,0,0,0.298326 -15890,3210:496,106,-29,0,0,0.298843 -15891,3210:497,107,-29,0,0,0.297445 -15892,3210:498,108,-29,0,0,0.301865 -15893,3210:499,109,-29,0,0,0.307175 -15894,3211:390,110,-29,0,0,0.347729 -15895,3211:391,111,-29,0,0,0.362408 -15896,3211:392,112,-29,0,0,0.352708 -15897,3211:393,113,-29,0,0,0.351466 -15898,3211:394,114,-29,0,0,0.35156 -15899,3211:495,115,-29,0,0,0.358169 -15900,3211:496,116,-29,0,0,0.340863 -15901,3211:497,117,-29,0,0,0.338282 -15902,3211:498,118,-29,0,0,0.3451 -15903,3211:499,119,-29,0,0,0.354094 -15904,3212:390,120,-29,0,0,0.340725 -15905,3212:391,121,-29,0,0,0.331258 -15906,3212:392,122,-29,0,0,0.338489 -15907,3212:393,123,-29,0,0,0.339825 -15908,3212:394,124,-29,0,0,0.340194 -15909,3212:495,125,-29,0,0,0.330644 -15910,3212:496,126,-29,0,0,0.33819 -15911,3212:497,127,-29,0,0,0.334681 -15912,3212:498,128,-29,0,0,0.331622 -15913,3212:499,129,-29,0,0,0.326451 -15914,3213:390,130,-29,0,0,0.324286 -15915,3213:391,131,-29,0,0,0.328442 -15916,3213:392,132,-29,0,0,0.336628 -15917,3213:393,133,-29,0,0,0.350179 -15918,3213:394,134,-29,0,0,0.345983 -15919,3213:495,135,-29,0,0,0.345425 -15920,3213:496,136,-29,0,0,0.345169 -15921,3213:497,137,-29,0,0,0.34343 -15922,3213:498,138,-29,0,0,0.356094 -15923,3213:499,139,-29,0,0,0.359848 -15924,3214:390,140,-29,0,0,0.380662 -15925,3215:390,150,-29,0,0,0.408138 -15926,3215:391,151,-29,0,0,0.432793 -15927,3215:392,152,-29,0,0,0.423009 -15928,3215:393,153,-29,0,0,0.425795 -15929,3215:394,154,-29,0,0,0.420729 -15930,3215:495,155,-29,0,0,0.415554 -15931,3215:496,156,-29,0,0,0.426197 -15932,3215:497,157,-29,0,0,0.425845 -15933,3215:498,158,-29,0,0,0.438426 -15934,3215:499,159,-29,0,0,0.43128 -15935,3216:390,160,-29,0,0,0.418577 -15936,3216:391,161,-29,0,0,0.412762 -15937,3216:392,162,-29,0,0,0.399038 -15938,3216:393,163,-29,0,0,0.376191 -15939,3216:394,164,-29,0,0,0.376674 -15940,3216:495,165,-29,0,0,0.370854 -15941,3216:496,166,-29,0,0,0.369201 -15942,3216:497,167,-29,0,0,0.364928 -15943,3216:498,168,-29,0,0,0.362455 -15944,3216:499,169,-29,0,0,0.36172 -15945,3217:390,170,-29,0,0,0.363311 -15946,3217:391,171,-29,0,0,0.360748 -15947,3217:392,172,-29,0,0,0.354376 -15948,3217:393,173,-29,0,0,0.349618 -15949,3217:394,174,-29,0,0,0.35032 -15950,3217:495,175,-29,0,0,0.375902 -15951,3217:497,177,-29,0,0,0.383816 -15952,3217:498,178,-29,0,0,0.386054 -15953,3217:499,179,-29,0,0,0.379452 -15954,3218:390,180,-29,0,0,0.392821 -15955,5218:380,-180,-28,0,0,0.395716 -15956,5217:489,-179,-28,0,0,0.387613 -15957,5217:488,-178,-28,0,0,0.370063 -15958,5217:487,-177,-28,0,0,0.370806 -15959,5217:486,-176,-28,0,0,0.374216 -15960,5217:485,-175,-28,0,0,0.373639 -15961,5217:384,-174,-28,0,0,0.373518 -15962,5217:383,-173,-28,0,0,0.378025 -15963,5217:382,-172,-28,0,0,0.375034 -15964,5217:381,-171,-28,0,0,0.378073 -15965,5217:380,-170,-28,0,0,0.379669 -15966,5216:489,-169,-28,0,0,0.38168 -15967,5216:488,-168,-28,0,0,0.376504 -15968,5216:487,-167,-28,0,0,0.373518 -15969,5216:486,-166,-28,0,0,0.370781 -15970,5216:485,-165,-28,0,0,0.372485 -15971,5216:384,-164,-28,0,0,0.373711 -15972,5216:383,-163,-28,0,0,0.377325 -15973,5216:382,-162,-28,0,0,0.376529 -15974,5216:381,-161,-28,0,0,0.375637 -15975,5216:380,-160,-28,0,0,0.378049 -15976,5215:489,-159,-28,0,0,0.381219 -15977,5215:488,-158,-28,0,0,0.382868 -15978,5215:487,-157,-28,0,0,0.380081 -15979,5215:486,-156,-28,0,0,0.381413 -15980,5215:485,-155,-28,0,0,0.384132 -15981,5215:384,-154,-28,0,0,0.382577 -15982,5215:383,-153,-28,0,0,0.385445 -15983,5215:382,-152,-28,0,0,0.38859 -15984,5215:381,-151,-28,0,0,0.389493 -15985,5215:380,-150,-28,0,0,0.392698 -15986,5214:489,-149,-28,0,0,0.394733 -15987,5214:488,-148,-28,0,0,0.389322 -15988,5214:487,-147,-28,0,0,0.38754 -15989,5214:486,-146,-28,0,0,0.391351 -15990,5214:485,-145,-28,0,0,0.393482 -15991,5214:384,-144,-28,0,0,0.391253 -15992,5214:383,-143,-28,0,0,0.390446 -15993,5214:382,-142,-28,0,0,0.390593 -15994,5214:381,-141,-28,0,0,0.389224 -15995,5214:380,-140,-28,0,0,0.388565 -15996,5213:489,-139,-28,0,0,0.390568 -15997,5213:488,-138,-28,0,0,0.39189 -15998,5213:487,-137,-28,0,0,0.389908 -15999,5213:486,-136,-28,0,0,0.386736 -16000,5213:485,-135,-28,0,0,0.383233 -16001,5213:384,-134,-28,0,0,0.381753 -16002,5213:383,-133,-28,0,0,0.379766 -16003,5213:382,-132,-28,0,0,0.382528 -16004,5213:381,-131,-28,0,0,0.381316 -16005,5213:380,-130,-28,0,0,0.376866 -16006,5212:489,-129,-28,0,0,0.375034 -16007,5212:488,-128,-28,0,0,0.373158 -16008,5212:487,-127,-28,0,0,0.373038 -16009,5212:486,-126,-28,0,0,0.369919 -16010,5212:485,-125,-28,0,0,0.367886 -16011,5212:384,-124,-28,0,0,0.370182 -16012,5212:383,-123,-28,0,0,0.370039 -16013,5212:382,-122,-28,0,0,0.367193 -16014,5212:381,-121,-28,0,0,0.366573 -16015,5212:380,-120,-28,0,0,0.365881 -16016,5211:489,-119,-28,0,0,0.364095 -16017,5211:488,-118,-28,0,0,0.363477 -16018,5211:487,-117,-28,0,0,0.363786 -16019,5211:486,-116,-28,0,0,0.358642 -16020,5211:485,-115,-28,0,0,0.355952 -16021,5211:384,-114,-28,0,0,0.35706 -16022,5211:383,-113,-28,0,0,0.363002 -16023,5211:382,-112,-28,0,0,0.36343 -16024,5211:381,-111,-28,0,0,0.357768 -16025,5211:380,-110,-28,0,0,0.352169 -16026,5210:489,-109,-28,0,0,0.352216 -16027,5210:488,-108,-28,0,0,0.367814 -16028,5210:487,-107,-28,0,0,0.362432 -16029,5210:486,-106,-28,0,0,0.358052 -16030,5210:485,-105,-28,0,0,0.348801 -16031,5210:384,-104,-28,0,0,0.348311 -16032,5210:383,-103,-28,0,0,0.338765 -16033,5210:382,-102,-28,0,0,0.33711 -16034,5210:381,-101,-28,0,0,0.348264 -16035,5210:380,-100,-28,0,0,0.345588 -16036,5209:489,-99,-28,0,0,0.34218 -16037,5209:488,-98,-28,0,0,0.337754 -16038,5209:487,-97,-28,0,0,0.348754 -16039,5209:486,-96,-28,0,0,0.345564 -16040,5209:485,-95,-28,0,0,0.344984 -16041,5209:384,-94,-28,0,0,0.343383 -16042,5209:383,-93,-28,0,0,0.341047 -16043,5209:382,-92,-28,0,0,0.34575 -16044,5209:381,-91,-28,0,0,0.339825 -16045,5209:380,-90,-28,0,0,0.340517 -16046,5208:489,-89,-28,0,0,0.343082 -16047,5208:488,-88,-28,0,0,0.341094 -16048,5208:487,-87,-28,0,0,0.336766 -16049,5208:486,-86,-28,0,0,0.337731 -16050,5208:485,-85,-28,0,0,0.33226 -16051,5208:384,-84,-28,0,0,0.334887 -16052,5208:383,-83,-28,0,0,0.333675 -16053,5208:382,-82,-28,0,0,0.332602 -16054,5208:381,-81,-28,0,0,0.331303 -16055,5208:380,-80,-28,0,0,0.334155 -16056,5207:489,-79,-28,0,0,0.334201 -16057,5207:488,-78,-28,0,0,0.329122 -16058,5207:487,-77,-28,0,0,0.327853 -16059,5207:486,-76,-28,0,0,0.333446 -16060,5207:485,-75,-28,0,0,0.324466 -16061,5207:384,-74,-28,0,0,0.327966 -16062,5207:383,-73,-28,0,0,0.304296 -16063,5205:486,-56,-28,0,0,0.441286 -16064,5205:485,-55,-28,0,0,0.416228 -16065,5205:384,-54,-28,0,0,0.361056 -16066,5205:383,-53,-28,0,0,0.376432 -16067,5205:382,-52,-28,0,0,0.405956 -16068,5205:381,-51,-28,0,0,0.492155 -16069,5205:380,-50,-28,0,0,0.474351 -16070,5204:489,-49,-28,0,0,0.490126 -16071,5204:488,-48,-28,0,0,0.455771 -16072,5204:487,-47,-28,0,0,0.438047 -16073,5204:486,-46,-28,0,0,0.441134 -16074,5204:485,-45,-28,0,0,0.436732 -16075,5204:384,-44,-28,0,0,0.428813 -16076,5204:383,-43,-28,0,0,0.420028 -16077,5204:382,-42,-28,0,0,0.410722 -16078,5204:381,-41,-28,0,0,0.402097 -16079,5204:380,-40,-28,0,0,0.390324 -16080,5203:489,-39,-28,0,0,0.372341 -16081,5203:488,-38,-28,0,0,0.354704 -16082,5203:487,-37,-28,0,0,0.360653 -16083,5203:486,-36,-28,0,0,0.371477 -16084,5203:485,-35,-28,0,0,0.364691 -16085,5203:384,-34,-28,0,0,0.366263 -16086,5203:383,-33,-28,0,0,0.361696 -16087,5203:382,-32,-28,0,0,0.359327 -16088,5203:381,-31,-28,0,0,0.3585 -16089,5203:380,-30,-28,0,0,0.349385 -16090,5202:489,-29,-28,0,0,0.35501 -16091,5202:488,-28,-28,0,0,0.348195 -16092,5202:487,-27,-28,0,0,0.356541 -16093,5202:486,-26,-28,0,0,0.356753 -16094,5202:485,-25,-28,0,0,0.351209 -16095,5202:384,-24,-28,0,0,0.344473 -16096,5202:383,-23,-28,0,0,0.348171 -16097,5202:382,-22,-28,0,0,0.351115 -16098,5202:381,-21,-28,0,0,0.346099 -16099,5202:380,-20,-28,0,0,0.342296 -16100,5201:489,-19,-28,0,0,0.35574 -16101,5201:488,-18,-28,0,0,0.348988 -16102,5201:487,-17,-28,0,0,0.341856 -16103,5201:486,-16,-28,0,0,0.342041 -16104,5201:485,-15,-28,0,0,0.343129 -16105,5201:384,-14,-28,0,0,0.339019 -16106,5201:383,-13,-28,0,0,0.343685 -16107,5201:382,-12,-28,0,0,0.33594 -16108,5201:381,-11,-28,0,0,0.334315 -16109,5201:380,-10,-28,0,0,0.332876 -16110,5200:489,-9,-28,0,0,0.333904 -16111,5200:488,-8,-28,0,0,0.337547 -16112,5200:487,-7,-28,0,0,0.336078 -16113,5200:486,-6,-28,0,0,0.345286 -16114,5200:485,-5,-28,0,0,0.34336 -16115,5200:384,-4,-28,0,0,0.337662 -16116,5200:383,-3,-28,0,0,0.334567 -16117,5200:382,-2,-28,0,0,0.331736 -16118,5200:381,-1,-28,0,0,0.330371 -16119,3200:381,0,-28,0,0,0.335528 -16120,3200:381,1,-28,0,0,0.33842 -16121,3200:382,2,-28,0,0,0.335505 -16122,3200:383,3,-28,0,0,0.341995 -16123,3200:384,4,-28,0,0,0.330325 -16124,3200:485,5,-28,0,0,0.326112 -16125,3200:486,6,-28,0,0,0.318906 -16126,3200:487,7,-28,0,0,0.316923 -16127,3200:488,8,-28,0,0,0.335139 -16128,3200:489,9,-28,0,0,0.342504 -16129,3201:380,10,-28,0,0,0.346308 -16130,3201:381,11,-28,0,0,0.352849 -16131,3201:382,12,-28,0,0,0.377156 -16132,3201:383,13,-28,0,0,0.395839 -16133,3201:384,14,-28,0,0,0.392894 -16134,3201:485,15,-28,0,0,0.388492 -16135,3201:486,16,-28,0,0,0.401825 -16136,3201:487,17,-28,0,0,0.397757 -16137,3201:488,18,-28,0,0,0.425619 -16138,3201:489,19,-28,0,0,0.438148 -16139,3202:380,20,-28,0,0,0.440071 -16140,3202:381,21,-28,0,0,0.459852 -16141,3202:382,22,-28,0,0,0.482067 -16142,3202:383,23,-28,0,0,0.457071 -16143,3202:384,24,-28,0,0,0.465011 -16144,3202:485,25,-28,0,0,0.472405 -16145,3202:486,26,-28,0,0,0.461128 -16146,3202:487,27,-28,0,0,0.436554 -16147,3202:488,28,-28,0,0,0.438223 -16148,3202:489,29,-28,0,0,0.446485 -16149,3203:380,30,-28,0,0,0.420078 -16150,3203:381,31,-28,0,0,0.408485 -16151,3203:382,32,-28,0,0,0.407915 -16152,3203:383,33,-28,0,0,0.408983 -16153,3203:384,34,-28,0,0,0.403579 -16154,3203:485,35,-28,0,0,0.401528 -16155,3203:486,36,-28,0,0,0.391939 -16156,3203:487,37,-28,0,0,0.388126 -16157,3203:488,38,-28,0,0,0.386857 -16158,3203:489,39,-28,0,0,0.382626 -16159,3204:380,40,-28,0,0,0.379669 -16160,3204:381,41,-28,0,0,0.377421 -16161,3204:382,42,-28,0,0,0.374914 -16162,3204:383,43,-28,0,0,0.373494 -16163,3204:384,44,-28,0,0,0.373014 -16164,3204:485,45,-28,0,0,0.372942 -16165,3204:486,46,-28,0,0,0.372005 -16166,3204:487,47,-28,0,0,0.367504 -16167,3204:488,48,-28,0,0,0.362503 -16168,3204:489,49,-28,0,0,0.359683 -16169,3205:380,50,-28,0,0,0.354587 -16170,3205:381,51,-28,0,0,0.35501 -16171,3205:382,52,-28,0,0,0.35706 -16172,3205:383,53,-28,0,0,0.357673 -16173,3205:384,54,-28,0,0,0.352075 -16174,3205:485,55,-28,0,0,0.348754 -16175,3205:486,56,-28,0,0,0.34575 -16176,3205:487,57,-28,0,0,0.345286 -16177,3205:488,58,-28,0,0,0.347169 -16178,3205:489,59,-28,0,0,0.344055 -16179,3206:380,60,-28,0,0,0.34218 -16180,3206:381,61,-28,0,0,0.344195 -16181,3206:382,62,-28,0,0,0.348125 -16182,3206:383,63,-28,0,0,0.349852 -16183,3206:384,64,-28,0,0,0.352849 -16184,3206:485,65,-28,0,0,0.351419 -16185,3206:486,66,-28,0,0,0.346006 -16186,3206:487,67,-28,0,0,0.347193 -16187,3206:488,68,-28,0,0,0.351256 -16188,3206:489,69,-28,0,0,0.346308 -16189,3207:380,70,-28,0,0,0.346029 -16190,3207:381,71,-28,0,0,0.349829 -16191,3207:382,72,-28,0,0,0.344241 -16192,3207:384,74,-28,0,0,0.340425 -16193,3207:485,75,-28,0,0,0.344775 -16194,3207:486,76,-28,0,0,0.345843 -16195,3207:487,77,-28,0,0,0.339249 -16196,3207:488,78,-28,0,0,0.335734 -16197,3207:489,79,-28,0,0,0.333949 -16198,3208:380,80,-28,0,0,0.329168 -16199,3208:381,81,-28,0,0,0.331691 -16200,3208:382,82,-28,0,0,0.337271 -16201,3208:383,83,-28,0,0,0.33578 -16202,3208:384,84,-28,0,0,0.332785 -16203,3208:485,85,-28,0,0,0.329576 -16204,3208:486,86,-28,0,0,0.327264 -16205,3208:487,87,-28,0,0,0.325097 -16206,3208:488,88,-28,0,0,0.322083 -16207,3208:489,89,-28,0,0,0.321567 -16208,3209:380,90,-28,0,0,0.321567 -16209,3209:381,91,-28,0,0,0.321321 -16210,3209:382,92,-28,0,0,0.323723 -16211,3209:383,93,-28,0,0,0.322734 -16212,3209:384,94,-28,0,0,0.320761 -16213,3209:485,95,-28,0,0,0.321052 -16214,3209:486,96,-28,0,0,0.319286 -16215,3209:487,97,-28,0,0,0.320291 -16216,3209:488,98,-28,0,0,0.321299 -16217,3209:489,99,-28,0,0,0.317791 -16218,3210:380,100,-28,0,0,0.317168 -16219,3210:381,101,-28,0,0,0.322734 -16220,3210:382,102,-28,0,0,0.317658 -16221,3210:383,103,-28,0,0,0.32697 -16222,3210:384,104,-28,0,0,0.320828 -16223,3210:485,105,-28,0,0,0.321994 -16224,3210:486,106,-28,0,0,0.32826 -16225,3210:487,107,-28,0,0,0.327943 -16226,3210:488,108,-28,0,0,0.331508 -16227,3210:489,109,-28,0,0,0.339894 -16228,3211:380,110,-28,0,0,0.358075 -16229,3211:381,111,-28,0,0,0.369177 -16230,3211:382,112,-28,0,0,0.355246 -16231,3211:383,113,-28,0,0,0.373061 -16232,3211:384,114,-28,0,0,0.381801 -16233,3211:485,115,-28,0,0,0.379403 -16234,3211:486,116,-28,0,0,0.361838 -16235,3211:487,117,-28,0,0,0.367599 -16236,3211:488,118,-28,0,0,0.382043 -16237,3211:489,119,-28,0,0,0.377445 -16238,3212:380,120,-28,0,0,0.374866 -16239,3212:381,121,-28,0,0,0.352451 -16240,3212:382,122,-28,0,0,0.362384 -16241,3212:383,123,-28,0,0,0.358902 -16242,3212:384,124,-28,0,0,0.362337 -16243,3212:485,125,-28,0,0,0.357366 -16244,3212:486,126,-28,0,0,0.360061 -16245,3212:487,127,-28,0,0,0.347379 -16246,3212:488,128,-28,0,0,0.348847 -16247,3212:489,129,-28,0,0,0.352591 -16248,3213:380,130,-28,0,0,0.367408 -16249,3213:381,131,-28,0,0,0.365476 -16250,3213:382,132,-28,0,0,0.352826 -16251,3213:383,133,-28,0,0,0.364072 -16252,3213:384,134,-28,0,0,0.357461 -16253,3213:485,135,-28,0,0,0.361151 -16254,3213:486,136,-28,0,0,0.368173 -16255,3213:487,137,-28,0,0,0.379984 -16256,3213:488,138,-28,0,0,0.38025 -16257,3213:489,139,-28,0,0,0.385177 -16258,3214:380,140,-28,0,0,0.42133 -16259,3215:381,151,-28,0,0,0.476811 -16260,3215:382,152,-28,0,0,0.480118 -16261,3215:383,153,-28,0,0,0.480605 -16262,3215:384,154,-28,0,0,0.466161 -16263,3215:485,155,-28,0,0,0.441667 -16264,3215:486,156,-28,0,0,0.444886 -16265,3215:487,157,-28,0,0,0.466391 -16266,3215:488,158,-28,0,0,0.453046 -16267,3215:489,159,-28,0,0,0.443187 -16268,3216:380,160,-28,0,0,0.450679 -16269,3216:381,161,-28,0,0,0.454013 -16270,3216:382,162,-28,0,0,0.433676 -16271,3216:383,163,-28,0,0,0.420628 -16272,3216:384,164,-28,0,0,0.413859 -16273,3216:485,165,-28,0,0,0.3926 -16274,3216:486,166,-28,0,0,0.391939 -16275,3216:487,167,-28,0,0,0.391229 -16276,3216:488,168,-28,0,0,0.390666 -16277,3216:489,169,-28,0,0,0.381607 -16278,3217:380,170,-28,0,0,0.380178 -16279,3217:381,171,-28,0,0,0.374721 -16280,3217:382,172,-28,0,0,0.37359 -16281,3217:383,173,-28,0,0,0.365333 -16282,3217:384,174,-28,0,0,0.373999 -16283,3217:486,176,-28,0,0,0.396035 -16284,3217:487,177,-28,0,0,0.40101 -16285,3217:488,178,-28,0,0,0.395962 -16286,3217:489,179,-28,0,0,0.393875 -16287,3218:380,180,-28,0,0,0.395716 -16288,5218:370,-180,-27,0,0,0.391229 -16289,5217:479,-179,-27,0,0,0.396232 -16290,5217:478,-178,-27,0,0,0.390226 -16291,5217:477,-177,-27,0,0,0.387321 -16292,5217:476,-176,-27,0,0,0.390324 -16293,5217:475,-175,-27,0,0,0.394587 -16294,5217:374,-174,-27,0,0,0.398914 -16295,5217:373,-173,-27,0,0,0.398102 -16296,5217:372,-172,-27,0,0,0.393017 -16297,5217:371,-171,-27,0,0,0.393752 -16298,5217:370,-170,-27,0,0,0.3952 -16299,5216:479,-169,-27,0,0,0.396109 -16300,5216:478,-168,-27,0,0,0.394685 -16301,5216:477,-167,-27,0,0,0.390984 -16302,5216:476,-166,-27,0,0,0.387711 -16303,5216:475,-165,-27,0,0,0.38659 -16304,5216:374,-164,-27,0,0,0.387638 -16305,5216:373,-163,-27,0,0,0.387662 -16306,5216:372,-162,-27,0,0,0.387516 -16307,5216:371,-161,-27,0,0,0.388003 -16308,5216:370,-160,-27,0,0,0.388955 -16309,5215:479,-159,-27,0,0,0.390666 -16310,5215:478,-158,-27,0,0,0.393826 -16311,5215:477,-157,-27,0,0,0.397683 -16312,5215:476,-156,-27,0,0,0.39921 -16313,5215:475,-155,-27,0,0,0.396969 -16314,5215:374,-154,-27,0,0,0.395053 -16315,5215:373,-153,-27,0,0,0.398914 -16316,5215:372,-152,-27,0,0,0.401874 -16317,5215:371,-151,-27,0,0,0.402764 -16318,5215:370,-150,-27,0,0,0.40494 -16319,5214:479,-149,-27,0,0,0.404693 -16320,5214:478,-148,-27,0,0,0.401282 -16321,5214:477,-147,-27,0,0,0.397634 -16322,5214:476,-146,-27,0,0,0.397117 -16323,5214:475,-145,-27,0,0,0.401652 -16324,5214:374,-144,-27,0,0,0.397929 -16325,5214:373,-143,-27,0,0,0.394439 -16326,5214:372,-142,-27,0,0,0.394513 -16327,5214:371,-141,-27,0,0,0.393899 -16328,5214:370,-140,-27,0,0,0.392674 -16329,5213:479,-139,-27,0,0,0.395519 -16330,5213:478,-138,-27,0,0,0.397044 -16331,5213:477,-137,-27,0,0,0.396994 -16332,5213:476,-136,-27,0,0,0.398077 -16333,5213:475,-135,-27,0,0,0.399407 -16334,5213:374,-134,-27,0,0,0.396428 -16335,5213:373,-133,-27,0,0,0.395495 -16336,5213:372,-132,-27,0,0,0.394906 -16337,5213:371,-131,-27,0,0,0.391205 -16338,5213:370,-130,-27,0,0,0.390006 -16339,5212:479,-129,-27,0,0,0.388663 -16340,5212:478,-128,-27,0,0,0.383306 -16341,5212:477,-127,-27,0,0,0.382189 -16342,5212:476,-126,-27,0,0,0.383208 -16343,5212:475,-125,-27,0,0,0.380686 -16344,5212:374,-124,-27,0,0,0.381946 -16345,5212:373,-123,-27,0,0,0.382019 -16346,5212:372,-122,-27,0,0,0.380953 -16347,5212:371,-121,-27,0,0,0.379427 -16348,5212:370,-120,-27,0,0,0.379355 -16349,5211:479,-119,-27,0,0,0.37933 -16350,5211:478,-118,-27,0,0,0.372317 -16351,5211:477,-117,-27,0,0,0.366597 -16352,5211:476,-116,-27,0,0,0.368675 -16353,5211:475,-115,-27,0,0,0.37436 -16354,5211:374,-114,-27,0,0,0.378895 -16355,5211:373,-113,-27,0,0,0.382505 -16356,5211:372,-112,-27,0,0,0.378267 -16357,5211:371,-111,-27,0,0,0.375902 -16358,5211:370,-110,-27,0,0,0.379476 -16359,5210:479,-109,-27,0,0,0.379452 -16360,5210:478,-108,-27,0,0,0.387516 -16361,5210:477,-107,-27,0,0,0.377735 -16362,5210:476,-106,-27,0,0,0.375058 -16363,5210:475,-105,-27,0,0,0.37846 -16364,5210:374,-104,-27,0,0,0.360653 -16365,5210:373,-103,-27,0,0,0.371861 -16366,5210:372,-102,-27,0,0,0.369129 -16367,5210:371,-101,-27,0,0,0.367934 -16368,5210:370,-100,-27,0,0,0.356801 -16369,5209:479,-99,-27,0,0,0.362218 -16370,5209:478,-98,-27,0,0,0.365143 -16371,5209:477,-97,-27,0,0,0.362194 -16372,5209:476,-96,-27,0,0,0.35494 -16373,5209:475,-95,-27,0,0,0.360605 -16374,5209:374,-94,-27,0,0,0.357956 -16375,5209:373,-93,-27,0,0,0.355105 -16376,5209:372,-92,-27,0,0,0.365523 -16377,5209:371,-91,-27,0,0,0.358028 -16378,5209:370,-90,-27,0,0,0.361886 -16379,5208:479,-89,-27,0,0,0.362978 -16380,5208:478,-88,-27,0,0,0.360701 -16381,5208:477,-87,-27,0,0,0.358193 -16382,5208:476,-86,-27,0,0,0.35224 -16383,5208:475,-85,-27,0,0,0.349315 -16384,5208:374,-84,-27,0,0,0.349758 -16385,5208:373,-83,-27,0,0,0.347938 -16386,5208:372,-82,-27,0,0,0.346122 -16387,5208:371,-81,-27,0,0,0.343407 -16388,5208:370,-80,-27,0,0,0.341671 -16389,5207:479,-79,-27,0,0,0.350881 -16390,5207:478,-78,-27,0,0,0.346983 -16391,5207:477,-77,-27,0,0,0.346727 -16392,5207:476,-76,-27,0,0,0.343337 -16393,5207:475,-75,-27,0,0,0.335368 -16394,5207:374,-74,-27,0,0,0.332602 -16395,5207:373,-73,-27,0,0,0.325999 -16396,5205:477,-57,-27,0,0,0.503071 -16397,5205:476,-56,-27,0,0,0.466212 -16398,5205:475,-55,-27,0,0,0.408983 -16399,5205:374,-54,-27,0,0,0.403852 -16400,5205:373,-53,-27,0,0,0.405312 -16401,5205:372,-52,-27,0,0,0.447222 -16402,5205:371,-51,-27,0,0,0.5004 -16403,5205:370,-50,-27,0,0,0.475402 -16404,5204:479,-49,-27,0,0,0.466979 -16405,5204:478,-48,-27,0,0,0.457964 -16406,5204:477,-47,-27,0,0,0.463068 -16407,5204:476,-46,-27,0,0,0.439311 -16408,5204:475,-45,-27,0,0,0.432717 -16409,5204:374,-44,-27,0,0,0.41199 -16410,5204:373,-43,-27,0,0,0.407815 -16411,5204:372,-42,-27,0,0,0.399654 -16412,5204:371,-41,-27,0,0,0.403357 -16413,5204:370,-40,-27,0,0,0.396921 -16414,5203:479,-39,-27,0,0,0.39412 -16415,5203:478,-38,-27,0,0,0.387077 -16416,5203:477,-37,-27,0,0,0.376047 -16417,5203:476,-36,-27,0,0,0.379863 -16418,5203:475,-35,-27,0,0,0.373447 -16419,5203:374,-34,-27,0,0,0.370926 -16420,5203:373,-33,-27,0,0,0.377277 -16421,5203:372,-32,-27,0,0,0.36674 -16422,5203:371,-31,-27,0,0,0.369201 -16423,5203:370,-30,-27,0,0,0.366812 -16424,5202:479,-29,-27,0,0,0.363311 -16425,5202:478,-28,-27,0,0,0.367599 -16426,5202:477,-27,-27,0,0,0.371381 -16427,5202:476,-26,-27,0,0,0.36968 -16428,5202:475,-25,-27,0,0,0.366549 -16429,5202:374,-24,-27,0,0,0.364357 -16430,5202:373,-23,-27,0,0,0.359327 -16431,5202:372,-22,-27,0,0,0.360297 -16432,5202:371,-21,-27,0,0,0.366931 -16433,5202:370,-20,-27,0,0,0.364833 -16434,5201:479,-19,-27,0,0,0.363644 -16435,5201:478,-18,-27,0,0,0.362313 -16436,5201:477,-17,-27,0,0,0.361009 -16437,5201:476,-16,-27,0,0,0.351045 -16438,5201:475,-15,-27,0,0,0.348288 -16439,5201:374,-14,-27,0,0,0.355364 -16440,5201:373,-13,-27,0,0,0.354964 -16441,5201:372,-12,-27,0,0,0.365071 -16442,5201:371,-11,-27,0,0,0.351981 -16443,5201:370,-10,-27,0,0,0.36748 -16444,5200:479,-9,-27,0,0,0.357296 -16445,5200:478,-8,-27,0,0,0.362883 -16446,5200:477,-7,-27,0,0,0.361483 -16447,5200:476,-6,-27,0,0,0.363121 -16448,5200:475,-5,-27,0,0,0.362527 -16449,5200:374,-4,-27,0,0,0.36108 -16450,5200:373,-3,-27,0,0,0.354446 -16451,5200:372,-2,-27,0,0,0.352497 -16452,5200:371,-1,-27,0,0,0.347589 -16453,3200:371,0,-27,0,0,0.352451 -16454,3200:371,1,-27,0,0,0.354822 -16455,3200:372,2,-27,0,0,0.35928 -16456,3200:373,3,-27,0,0,0.358807 -16457,3200:374,4,-27,0,0,0.354658 -16458,3200:475,5,-27,0,0,0.353859 -16459,3200:476,6,-27,0,0,0.358902 -16460,3200:477,7,-27,0,0,0.362265 -16461,3200:478,8,-27,0,0,0.37424 -16462,3200:479,9,-27,0,0,0.378847 -16463,3201:370,10,-27,0,0,0.377977 -16464,3201:371,11,-27,0,0,0.367647 -16465,3201:372,12,-27,0,0,0.39233 -16466,3201:373,13,-27,0,0,0.396724 -16467,3201:374,14,-27,0,0,0.391082 -16468,3201:475,15,-27,0,0,0.393213 -16469,3201:476,16,-27,0,0,0.400196 -16470,3201:477,17,-27,0,0,0.397216 -16471,3201:478,18,-27,0,0,0.423761 -16472,3201:479,19,-27,0,0,0.424364 -16473,3202:370,20,-27,0,0,0.41513 -16474,3202:371,21,-27,0,0,0.416378 -16475,3202:372,22,-27,0,0,0.438122 -16476,3202:373,23,-27,0,0,0.48507 -16477,3202:374,24,-27,0,0,0.492977 -16478,3202:475,25,-27,0,0,0.487842 -16479,3202:476,26,-27,0,0,0.480426 -16480,3202:477,27,-27,0,0,0.482042 -16481,3202:478,28,-27,0,0,0.488355 -16482,3202:479,29,-27,0,0,0.452536 -16483,3203:370,30,-27,0,0,0.444049 -16484,3203:371,31,-27,0,0,0.416428 -16485,3203:372,32,-27,0,0,0.413609 -16486,3203:373,33,-27,0,0,0.411941 -16487,3203:374,34,-27,0,0,0.409578 -16488,3203:475,35,-27,0,0,0.418427 -16489,3203:476,36,-27,0,0,0.408262 -16490,3203:477,37,-27,0,0,0.39958 -16491,3203:478,38,-27,0,0,0.399974 -16492,3203:479,39,-27,0,0,0.404569 -16493,3204:370,40,-27,0,0,0.394488 -16494,3204:371,41,-27,0,0,0.38776 -16495,3204:372,42,-27,0,0,0.387247 -16496,3204:373,43,-27,0,0,0.386687 -16497,3204:374,44,-27,0,0,0.386176 -16498,3204:475,45,-27,0,0,0.386882 -16499,3204:476,46,-27,0,0,0.38384 -16500,3204:477,47,-27,0,0,0.379282 -16501,3204:478,48,-27,0,0,0.377301 -16502,3204:479,49,-27,0,0,0.374649 -16503,3205:370,50,-27,0,0,0.372509 -16504,3205:371,51,-27,0,0,0.37047 -16505,3205:372,52,-27,0,0,0.373374 -16506,3205:373,53,-27,0,0,0.366549 -16507,3205:374,54,-27,0,0,0.366406 -16508,3205:475,55,-27,0,0,0.362503 -16509,3205:476,56,-27,0,0,0.36255 -16510,3205:477,57,-27,0,0,0.3621 -16511,3205:478,58,-27,0,0,0.363525 -16512,3205:479,59,-27,0,0,0.368244 -16513,3206:370,60,-27,0,0,0.367982 -16514,3206:371,61,-27,0,0,0.369488 -16515,3206:372,62,-27,0,0,0.367671 -16516,3206:373,63,-27,0,0,0.369512 -16517,3206:374,64,-27,0,0,0.369943 -16518,3206:475,65,-27,0,0,0.369488 -16519,3206:476,66,-27,0,0,0.370926 -16520,3206:477,67,-27,0,0,0.36581 -16521,3206:478,68,-27,0,0,0.369225 -16522,3206:479,69,-27,0,0,0.365523 -16523,3207:370,70,-27,0,0,0.366096 -16524,3207:371,71,-27,0,0,0.367026 -16525,3207:372,72,-27,0,0,0.364691 -16526,3207:374,74,-27,0,0,0.372437 -16527,3207:475,75,-27,0,0,0.371357 -16528,3207:476,76,-27,0,0,0.377084 -16529,3207:477,77,-27,0,0,0.364072 -16530,3207:478,78,-27,0,0,0.358571 -16531,3207:479,79,-27,0,0,0.362289 -16532,3208:370,80,-27,0,0,0.359304 -16533,3208:371,81,-27,0,0,0.358594 -16534,3208:372,82,-27,0,0,0.363263 -16535,3208:373,83,-27,0,0,0.362337 -16536,3208:374,84,-27,0,0,0.357886 -16537,3208:475,85,-27,0,0,0.354681 -16538,3208:476,86,-27,0,0,0.355882 -16539,3208:477,87,-27,0,0,0.356659 -16540,3208:478,88,-27,0,0,0.354164 -16541,3208:479,89,-27,0,0,0.348242 -16542,3209:370,90,-27,0,0,0.350179 -16543,3209:371,91,-27,0,0,0.350974 -16544,3209:372,92,-27,0,0,0.349758 -16545,3209:373,93,-27,0,0,0.349782 -16546,3209:374,94,-27,0,0,0.344473 -16547,3209:475,95,-27,0,0,0.342319 -16548,3209:476,96,-27,0,0,0.343268 -16549,3209:477,97,-27,0,0,0.344914 -16550,3209:478,98,-27,0,0,0.344032 -16551,3209:479,99,-27,0,0,0.344195 -16552,3210:370,100,-27,0,0,0.345588 -16553,3210:371,101,-27,0,0,0.346029 -16554,3210:372,102,-27,0,0,0.339686 -16555,3210:373,103,-27,0,0,0.340217 -16556,3210:374,104,-27,0,0,0.339134 -16557,3210:475,105,-27,0,0,0.347379 -16558,3210:476,106,-27,0,0,0.350437 -16559,3210:477,107,-27,0,0,0.355764 -16560,3210:478,108,-27,0,0,0.349642 -16561,3210:479,109,-27,0,0,0.361269 -16562,3211:370,110,-27,0,0,0.377132 -16563,3211:371,111,-27,0,0,0.381267 -16564,3211:372,112,-27,0,0,0.38105 -16565,3211:373,113,-27,0,0,0.399086 -16566,3211:374,114,-27,0,0,0.424841 -16567,3211:475,115,-27,0,0,0.440071 -16568,3211:476,116,-27,0,0,0.437338 -16569,3211:477,117,-27,0,0,0.438299 -16570,3211:478,118,-27,0,0,0.430852 -16571,3211:479,119,-27,0,0,0.418802 -16572,3212:370,120,-27,0,0,0.396674 -16573,3212:371,121,-27,0,0,0.372461 -16574,3212:372,122,-27,0,0,0.38316 -16575,3212:373,123,-27,0,0,0.376166 -16576,3212:374,124,-27,0,0,0.369608 -16577,3212:475,125,-27,0,0,0.370063 -16578,3212:476,126,-27,0,0,0.368507 -16579,3212:477,127,-27,0,0,0.36901 -16580,3212:478,128,-27,0,0,0.365833 -16581,3212:479,129,-27,0,0,0.36612 -16582,3213:370,130,-27,0,0,0.373182 -16583,3213:371,131,-27,0,0,0.372581 -16584,3213:372,132,-27,0,0,0.368053 -16585,3213:373,133,-27,0,0,0.385932 -16586,3213:374,134,-27,0,0,0.389517 -16587,3213:475,135,-27,0,0,0.389102 -16588,3213:476,136,-27,0,0,0.393262 -16589,3213:477,137,-27,0,0,0.421079 -16590,3213:478,138,-27,0,0,0.412364 -16591,3215:371,151,-27,0,0,0.495108 -16592,3215:372,152,-27,0,0,0.478042 -16593,3215:373,153,-27,0,0,0.485942 -16594,3215:374,154,-27,0,0,0.510596 -16595,3215:475,155,-27,0,0,0.528828 -16596,3215:476,156,-27,0,0,0.502044 -16597,3215:477,157,-27,0,0,0.50302 -16598,3215:478,158,-27,0,0,0.475171 -16599,3215:479,159,-27,0,0,0.484018 -16600,3216:370,160,-27,0,0,0.50284 -16601,3216:371,161,-27,0,0,0.504869 -16602,3216:372,162,-27,0,0,0.450959 -16603,3216:373,163,-27,0,0,0.464985 -16604,3216:374,164,-27,0,0,0.438527 -16605,3216:475,165,-27,0,0,0.412339 -16606,3216:476,166,-27,0,0,0.41341 -16607,3216:477,167,-27,0,0,0.40866 -16608,3216:478,168,-27,0,0,0.402813 -16609,3216:479,169,-27,0,0,0.397437 -16610,3217:370,170,-27,0,0,0.391278 -16611,3217:371,171,-27,0,0,0.390421 -16612,3217:372,172,-27,0,0,0.38316 -16613,3217:373,173,-27,0,0,0.382505 -16614,3217:475,175,-27,0,0,0.397511 -16615,3217:476,176,-27,0,0,0.410647 -16616,3217:477,177,-27,0,0,0.406204 -16617,3217:478,178,-27,0,0,0.401085 -16618,3217:479,179,-27,0,0,0.397265 -16619,3218:370,180,-27,0,0,0.391229 -16620,5218:360,-180,-26,0,0,0.410747 -16621,5217:469,-179,-26,0,0,0.411617 -16622,5217:468,-178,-26,0,0,0.412837 -16623,5217:467,-177,-26,0,0,0.415155 -16624,5217:466,-176,-26,0,0,0.414307 -16625,5217:465,-175,-26,0,0,0.408734 -16626,5217:364,-174,-26,0,0,0.406352 -16627,5217:363,-173,-26,0,0,0.413111 -16628,5217:362,-172,-26,0,0,0.415454 -16629,5217:361,-171,-26,0,0,0.417427 -16630,5217:360,-170,-26,0,0,0.412638 -16631,5216:469,-169,-26,0,0,0.414157 -16632,5216:468,-168,-26,0,0,0.407146 -16633,5216:467,-167,-26,0,0,0.407047 -16634,5216:466,-166,-26,0,0,0.403802 -16635,5216:465,-165,-26,0,0,0.400024 -16636,5216:364,-164,-26,0,0,0.401479 -16637,5216:363,-163,-26,0,0,0.405485 -16638,5216:362,-162,-26,0,0,0.405956 -16639,5216:361,-161,-26,0,0,0.403678 -16640,5216:360,-160,-26,0,0,0.404717 -16641,5215:469,-159,-26,0,0,0.404965 -16642,5215:468,-158,-26,0,0,0.403134 -16643,5215:467,-157,-26,0,0,0.404445 -16644,5215:466,-156,-26,0,0,0.407393 -16645,5215:465,-155,-26,0,0,0.408958 -16646,5215:364,-154,-26,0,0,0.409802 -16647,5215:363,-153,-26,0,0,0.414831 -16648,5215:362,-152,-26,0,0,0.415554 -16649,5215:361,-151,-26,0,0,0.417028 -16650,5215:360,-150,-26,0,0,0.415679 -16651,5214:469,-149,-26,0,0,0.415804 -16652,5214:468,-148,-26,0,0,0.411941 -16653,5214:467,-147,-26,0,0,0.409082 -16654,5214:466,-146,-26,0,0,0.411891 -16655,5214:465,-145,-26,0,0,0.411518 -16656,5214:364,-144,-26,0,0,0.411841 -16657,5214:363,-143,-26,0,0,0.408014 -16658,5214:362,-142,-26,0,0,0.403332 -16659,5214:361,-141,-26,0,0,0.403407 -16660,5214:360,-140,-26,0,0,0.404916 -16661,5213:469,-139,-26,0,0,0.403777 -16662,5213:468,-138,-26,0,0,0.407418 -16663,5213:467,-137,-26,0,0,0.410846 -16664,5213:466,-136,-26,0,0,0.411717 -16665,5213:465,-135,-26,0,0,0.41229 -16666,5213:364,-134,-26,0,0,0.411916 -16667,5213:363,-133,-26,0,0,0.408138 -16668,5213:362,-132,-26,0,0,0.406352 -16669,5213:361,-131,-26,0,0,0.405758 -16670,5213:360,-130,-26,0,0,0.40306 -16671,5212:469,-129,-26,0,0,0.399086 -16672,5212:468,-128,-26,0,0,0.393949 -16673,5212:467,-127,-26,0,0,0.393507 -16674,5212:466,-126,-26,0,0,0.396748 -16675,5212:465,-125,-26,0,0,0.397462 -16676,5212:364,-124,-26,0,0,0.396576 -16677,5212:363,-123,-26,0,0,0.394979 -16678,5212:362,-122,-26,0,0,0.393605 -16679,5212:361,-121,-26,0,0,0.392135 -16680,5212:360,-120,-26,0,0,0.391645 -16681,5211:469,-119,-26,0,0,0.391816 -16682,5211:468,-118,-26,0,0,0.389981 -16683,5211:467,-117,-26,0,0,0.38793 -16684,5211:466,-116,-26,0,0,0.391523 -16685,5211:465,-115,-26,0,0,0.395814 -16686,5211:364,-114,-26,0,0,0.395053 -16687,5211:363,-113,-26,0,0,0.392526 -16688,5211:362,-112,-26,0,0,0.395667 -16689,5211:361,-111,-26,0,0,0.394685 -16690,5211:360,-110,-26,0,0,0.39439 -16691,5210:469,-109,-26,0,0,0.397068 -16692,5210:468,-108,-26,0,0,0.399629 -16693,5210:467,-107,-26,0,0,0.397732 -16694,5210:466,-106,-26,0,0,0.392649 -16695,5210:465,-105,-26,0,0,0.392943 -16696,5210:364,-104,-26,0,0,0.397634 -16697,5210:363,-103,-26,0,0,0.407865 -16698,5210:362,-102,-26,0,0,0.39788 -16699,5210:361,-101,-26,0,0,0.384472 -16700,5210:360,-100,-26,0,0,0.38859 -16701,5209:469,-99,-26,0,0,0.384132 -16702,5209:468,-98,-26,0,0,0.37718 -16703,5209:467,-97,-26,0,0,0.378871 -16704,5209:466,-96,-26,0,0,0.380105 -16705,5209:465,-95,-26,0,0,0.379379 -16706,5209:364,-94,-26,0,0,0.373711 -16707,5209:363,-93,-26,0,0,0.380928 -16708,5209:362,-92,-26,0,0,0.38054 -16709,5209:361,-91,-26,0,0,0.378919 -16710,5209:360,-90,-26,0,0,0.381849 -16711,5208:469,-89,-26,0,0,0.378122 -16712,5208:468,-88,-26,0,0,0.379379 -16713,5208:467,-87,-26,0,0,0.373686 -16714,5208:466,-86,-26,0,0,0.370135 -16715,5208:465,-85,-26,0,0,0.369129 -16716,5208:364,-84,-26,0,0,0.365381 -16717,5208:363,-83,-26,0,0,0.365357 -16718,5208:362,-82,-26,0,0,0.363691 -16719,5208:361,-81,-26,0,0,0.362123 -16720,5208:360,-80,-26,0,0,0.358311 -16721,5207:469,-79,-26,0,0,0.365286 -16722,5207:468,-78,-26,0,0,0.366573 -16723,5207:467,-77,-26,0,0,0.364404 -16724,5207:466,-76,-26,0,0,0.35567 -16725,5207:465,-75,-26,0,0,0.348847 -16726,5207:364,-74,-26,0,0,0.343824 -16727,5207:363,-73,-26,0,0,0.339641 -16728,5207:362,-72,-26,0,0,0.306694 -16729,5205:363,-53,-26,0,0,0.437768 -16730,5205:362,-52,-26,0,0,0.431079 -16731,5205:361,-51,-26,0,0,0.530696 -16732,5205:360,-50,-26,0,0,0.541683 -16733,5204:469,-49,-26,0,0,0.512341 -16734,5204:468,-48,-26,0,0,0.483478 -16735,5204:467,-47,-26,0,0,0.496753 -16736,5204:466,-46,-26,0,0,0.472507 -16737,5204:465,-45,-26,0,0,0.461638 -16738,5204:364,-44,-26,0,0,0.426624 -16739,5204:363,-43,-26,0,0,0.42846 -16740,5204:362,-42,-26,0,0,0.429014 -16741,5204:361,-41,-26,0,0,0.417752 -16742,5204:360,-40,-26,0,0,0.408485 -16743,5203:469,-39,-26,0,0,0.41092 -16744,5203:468,-38,-26,0,0,0.395077 -16745,5203:467,-37,-26,0,0,0.401479 -16746,5203:466,-36,-26,0,0,0.391792 -16747,5203:465,-35,-26,0,0,0.393458 -16748,5203:364,-34,-26,0,0,0.391498 -16749,5203:363,-33,-26,0,0,0.381267 -16750,5203:362,-32,-26,0,0,0.38054 -16751,5203:361,-31,-26,0,0,0.382165 -16752,5203:360,-30,-26,0,0,0.386638 -16753,5202:469,-29,-26,0,0,0.382577 -16754,5202:468,-28,-26,0,0,0.381631 -16755,5202:467,-27,-26,0,0,0.389835 -16756,5202:466,-26,-26,0,0,0.391473 -16757,5202:465,-25,-26,0,0,0.384204 -16758,5202:364,-24,-26,0,0,0.3892 -16759,5202:363,-23,-26,0,0,0.393311 -16760,5202:362,-22,-26,0,0,0.389933 -16761,5202:361,-21,-26,0,0,0.388003 -16762,5202:360,-20,-26,0,0,0.383111 -16763,5201:469,-19,-26,0,0,0.38134 -16764,5201:468,-18,-26,0,0,0.375324 -16765,5201:467,-17,-26,0,0,0.377808 -16766,5201:466,-16,-26,0,0,0.373903 -16767,5201:465,-15,-26,0,0,0.381316 -16768,5201:364,-14,-26,0,0,0.37477 -16769,5201:363,-13,-26,0,0,0.372797 -16770,5201:362,-12,-26,0,0,0.383694 -16771,5201:361,-11,-26,0,0,0.372293 -16772,5201:360,-10,-26,0,0,0.383791 -16773,5200:469,-9,-26,0,0,0.378654 -16774,5200:468,-8,-26,0,0,0.383354 -16775,5200:467,-7,-26,0,0,0.384132 -16776,5200:466,-6,-26,0,0,0.38025 -16777,5200:465,-5,-26,0,0,0.382674 -16778,5200:364,-4,-26,0,0,0.383549 -16779,5200:363,-3,-26,0,0,0.387711 -16780,5200:362,-2,-26,0,0,0.384083 -16781,5200:361,-1,-26,0,0,0.373278 -16782,3200:361,0,-26,0,0,0.372053 -16783,3200:361,1,-26,0,0,0.37875 -16784,3200:362,2,-26,0,0,0.377905 -16785,3200:363,3,-26,0,0,0.377301 -16786,3200:364,4,-26,0,0,0.376674 -16787,3200:465,5,-26,0,0,0.377735 -16788,3200:466,6,-26,0,0,0.386029 -16789,3200:467,7,-26,0,0,0.387833 -16790,3200:468,8,-26,0,0,0.383962 -16791,3200:469,9,-26,0,0,0.38042 -16792,3201:360,10,-26,0,0,0.379137 -16793,3201:361,11,-26,0,0,0.37933 -16794,3201:362,12,-26,0,0,0.390031 -16795,3201:363,13,-26,0,0,0.402467 -16796,3201:364,14,-26,0,0,0.401356 -16797,3201:465,15,-26,0,0,0.401232 -16798,3201:466,16,-26,0,0,0.407096 -16799,3201:467,17,-26,0,0,0.41518 -16800,3201:468,18,-26,0,0,0.393213 -16801,3202:465,25,-26,0,0,0.421631 -16802,3202:466,26,-26,0,0,0.463452 -16803,3202:467,27,-26,0,0,0.520243 -16804,3202:468,28,-26,0,0,0.505896 -16805,3202:469,29,-26,0,0,0.502865 -16806,3203:360,30,-26,0,0,0.49927 -16807,3203:361,31,-26,0,0,0.451314 -16808,3203:362,32,-26,0,0,0.446232 -16809,3203:363,33,-26,0,0,0.444404 -16810,3203:364,34,-26,0,0,0.439185 -17135,3204:457,47,-25,0,0,0.42133 -16811,3203:465,35,-26,0,0,0.435746 -16812,3203:466,36,-26,0,0,0.427479 -16813,3203:467,37,-26,0,0,0.427781 -16814,3203:468,38,-26,0,0,0.427755 -16815,3203:469,39,-26,0,0,0.426373 -16816,3204:360,40,-26,0,0,0.419878 -16817,3204:361,41,-26,0,0,0.411393 -16818,3204:362,42,-26,0,0,0.407791 -16819,3204:363,43,-26,0,0,0.405634 -16820,3204:364,44,-26,0,0,0.408585 -16821,3204:465,45,-26,0,0,0.40861 -16822,3204:466,46,-26,0,0,0.401381 -16823,3204:467,47,-26,0,0,0.397019 -16824,3204:468,48,-26,0,0,0.400368 -16825,3204:469,49,-26,0,0,0.393409 -16826,3205:360,50,-26,0,0,0.393654 -16827,3205:361,51,-26,0,0,0.391473 -16828,3205:362,52,-26,0,0,0.390739 -16829,3205:363,53,-26,0,0,0.392919 -16830,3205:364,54,-26,0,0,0.390837 -16831,3205:465,55,-26,0,0,0.387686 -16832,3205:466,56,-26,0,0,0.383063 -16833,3205:467,57,-26,0,0,0.38134 -16834,3205:468,58,-26,0,0,0.382505 -16835,3205:469,59,-26,0,0,0.386395 -16836,3206:360,60,-26,0,0,0.393654 -16837,3206:361,61,-26,0,0,0.395962 -16838,3206:362,62,-26,0,0,0.394979 -16839,3206:363,63,-26,0,0,0.391498 -16840,3206:364,64,-26,0,0,0.386054 -16841,3206:465,65,-26,0,0,0.394194 -16842,3206:466,66,-26,0,0,0.391718 -16843,3206:467,67,-26,0,0,0.388053 -16844,3206:468,68,-26,0,0,0.388663 -16845,3206:469,69,-26,0,0,0.389053 -16846,3207:360,70,-26,0,0,0.386516 -16847,3207:361,71,-26,0,0,0.387589 -16848,3207:362,72,-26,0,0,0.390275 -16849,3207:364,74,-26,0,0,0.395962 -16850,3207:465,75,-26,0,0,0.401306 -16851,3207:466,76,-26,0,0,0.40442 -16852,3207:467,77,-26,0,0,0.398594 -16853,3207:468,78,-26,0,0,0.398544 -16854,3207:469,79,-26,0,0,0.396551 -16855,3208:360,80,-26,0,0,0.398027 -16856,3208:361,81,-26,0,0,0.396404 -16857,3208:362,82,-26,0,0,0.39189 -16858,3208:363,83,-26,0,0,0.387199 -16859,3208:364,84,-26,0,0,0.387077 -16860,3208:465,85,-26,0,0,0.388394 -16861,3208:466,86,-26,0,0,0.386492 -16862,3208:467,87,-26,0,0,0.387077 -16863,3208:468,88,-26,0,0,0.383403 -16864,3208:469,89,-26,0,0,0.379185 -16865,3209:360,90,-26,0,0,0.377832 -16866,3209:361,91,-26,0,0,0.376119 -16867,3209:362,92,-26,0,0,0.376022 -16868,3209:363,93,-26,0,0,0.371405 -16869,3209:364,94,-26,0,0,0.36834 -16870,3209:465,95,-26,0,0,0.371309 -16871,3209:466,96,-26,0,0,0.37424 -16872,3209:467,97,-26,0,0,0.368005 -16873,3209:468,98,-26,0,0,0.363668 -16874,3209:469,99,-26,0,0,0.365452 -16875,3210:360,100,-26,0,0,0.3621 -16876,3210:361,101,-26,0,0,0.363311 -16877,3210:362,102,-26,0,0,0.369106 -16878,3210:363,103,-26,0,0,0.366287 -16879,3210:364,104,-26,0,0,0.357248 -16880,3210:465,105,-26,0,0,0.355622 -16881,3210:466,106,-26,0,0,0.364691 -16882,3210:467,107,-26,0,0,0.373879 -16883,3210:468,108,-26,0,0,0.381122 -16884,3210:469,109,-26,0,0,0.389908 -16885,3211:360,110,-26,0,0,0.400689 -16886,3211:361,111,-26,0,0,0.407146 -16887,3211:362,112,-26,0,0,0.412663 -16888,3211:363,113,-26,0,0,0.417627 -16889,3211:364,114,-26,0,0,0.421355 -16890,3211:465,115,-26,0,0,0.449992 -16891,3212:360,120,-26,0,0,0.419527 -16892,3212:361,121,-26,0,0,0.420328 -16893,3212:362,122,-26,0,0,0.420628 -16894,3212:363,123,-26,0,0,0.415904 -16895,3212:364,124,-26,0,0,0.403258 -16896,3212:465,125,-26,0,0,0.390446 -16897,3212:466,126,-26,0,0,0.372533 -16898,3212:467,127,-26,0,0,0.37323 -16899,3212:468,128,-26,0,0,0.383888 -16900,3212:469,129,-26,0,0,0.394464 -16901,3213:360,130,-26,0,0,0.398988 -16902,3213:361,131,-26,0,0,0.398569 -16903,3213:362,132,-26,0,0,0.403283 -16904,3213:363,133,-26,0,0,0.40301 -16905,3213:364,134,-26,0,0,0.411319 -16906,3213:465,135,-26,0,0,0.422457 -16907,3213:467,137,-26,0,0,0.449255 -16908,3215:362,152,-26,0,0,0.494595 -16909,3215:363,153,-26,0,0,0.498294 -16910,3215:364,154,-26,0,0,0.5614 -16911,3215:465,155,-26,0,0,0.552883 -16912,3215:466,156,-26,0,0,0.560084 -16913,3215:467,157,-26,0,0,0.529186 -16914,3215:468,158,-26,0,0,0.5365 -16915,3215:469,159,-26,0,0,0.531617 -16916,3216:360,160,-26,0,0,0.515678 -16917,3216:361,161,-26,0,0,0.50849 -16918,3216:362,162,-26,0,0,0.483376 -16919,3216:363,163,-26,0,0,0.488688 -16920,3216:364,164,-26,0,0,0.467797 -16921,3216:465,165,-26,0,0,0.444734 -16922,3216:466,166,-26,0,0,0.448975 -16923,3216:467,167,-26,0,0,0.445648 -16924,3216:468,168,-26,0,0,0.422633 -16925,3216:469,169,-26,0,0,0.411493 -16926,3217:360,170,-26,0,0,0.405287 -16927,3217:361,171,-26,0,0,0.40353 -16928,3217:362,172,-26,0,0,0.394022 -16929,3217:363,173,-26,0,0,0.401454 -16930,3217:364,174,-26,0,0,0.434079 -16931,3217:465,175,-26,0,0,0.423938 -16932,3217:466,176,-26,0,0,0.42158 -16933,3217:467,177,-26,0,0,0.407096 -16934,3217:468,178,-26,0,0,0.419427 -16935,3217:469,179,-26,0,0,0.417527 -16936,3218:360,180,-26,0,0,0.410747 -16937,5218:350,-180,-25,0,0,0.427529 -16938,5217:459,-179,-25,0,0,0.428234 -16939,5217:458,-178,-25,0,0,0.43754 -16940,5217:457,-177,-25,0,0,0.438653 -16941,5217:456,-176,-25,0,0,0.435014 -16942,5217:455,-175,-25,0,0,0.435897 -16943,5217:354,-174,-25,0,0,0.433903 -16944,5217:353,-173,-25,0,0,0.433676 -16945,5217:352,-172,-25,0,0,0.434281 -16946,5217:351,-171,-25,0,0,0.431557 -16947,5217:350,-170,-25,0,0,0.429895 -16948,5216:459,-169,-25,0,0,0.425444 -16949,5216:458,-168,-25,0,0,0.423435 -16950,5216:457,-167,-25,0,0,0.422433 -16951,5216:456,-166,-25,0,0,0.421831 -16952,5216:455,-165,-25,0,0,0.417677 -16953,5216:354,-164,-25,0,0,0.416128 -16954,5216:353,-163,-25,0,0,0.420379 -16955,5216:352,-162,-25,0,0,0.42138 -16956,5216:351,-161,-25,0,0,0.419327 -16957,5216:350,-160,-25,0,0,0.42123 -16958,5215:459,-159,-25,0,0,0.423812 -16959,5215:458,-158,-25,0,0,0.42103 -16960,5215:457,-157,-25,0,0,0.418327 -16961,5215:456,-156,-25,0,0,0.420078 -16962,5215:455,-155,-25,0,0,0.423787 -16963,5215:354,-154,-25,0,0,0.429064 -16964,5215:353,-153,-25,0,0,0.434231 -16965,5215:352,-152,-25,0,0,0.432742 -16966,5215:351,-151,-25,0,0,0.440146 -16967,5215:350,-150,-25,0,0,0.437389 -16968,5214:459,-149,-25,0,0,0.434408 -16969,5214:458,-148,-25,0,0,0.434281 -16970,5214:457,-147,-25,0,0,0.425167 -16971,5214:456,-146,-25,0,0,0.431255 -16972,5214:455,-145,-25,0,0,0.429391 -16973,5214:354,-144,-25,0,0,0.432641 -16974,5214:353,-143,-25,0,0,0.425845 -16975,5214:352,-142,-25,0,0,0.422232 -16976,5214:351,-141,-25,0,0,0.421881 -16977,5214:350,-140,-25,0,0,0.417902 -16978,5213:459,-139,-25,0,0,0.420379 -16979,5213:458,-138,-25,0,0,0.425192 -16980,5213:457,-137,-25,0,0,0.430953 -16981,5213:456,-136,-25,0,0,0.426097 -16982,5213:455,-135,-25,0,0,0.427303 -16983,5213:354,-134,-25,0,0,0.425468 -16984,5213:353,-133,-25,0,0,0.427629 -16985,5213:352,-132,-25,0,0,0.427932 -16986,5213:351,-131,-25,0,0,0.422934 -16987,5213:350,-130,-25,0,0,0.416553 -16988,5212:459,-129,-25,0,0,0.419903 -16989,5212:458,-128,-25,0,0,0.419828 -16990,5212:457,-127,-25,0,0,0.416778 -16991,5212:456,-126,-25,0,0,0.417802 -16992,5212:455,-125,-25,0,0,0.417902 -16993,5212:354,-124,-25,0,0,0.418226 -16994,5212:353,-123,-25,0,0,0.416103 -16995,5212:352,-122,-25,0,0,0.410722 -16996,5212:351,-121,-25,0,0,0.406055 -16997,5212:350,-120,-25,0,0,0.405659 -16998,5211:459,-119,-25,0,0,0.410448 -16999,5211:458,-118,-25,0,0,0.407543 -17000,5211:457,-117,-25,0,0,0.418127 -17001,5211:456,-116,-25,0,0,0.417877 -17002,5211:455,-115,-25,0,0,0.414357 -17003,5211:354,-114,-25,0,0,0.411021 -17004,5211:353,-113,-25,0,0,0.405238 -17005,5211:352,-112,-25,0,0,0.413884 -17006,5211:351,-111,-25,0,0,0.415704 -17007,5211:350,-110,-25,0,0,0.40722 -17008,5210:459,-109,-25,0,0,0.407171 -17009,5210:458,-108,-25,0,0,0.409802 -17010,5210:457,-107,-25,0,0,0.420954 -17011,5210:456,-106,-25,0,0,0.425142 -17012,5210:455,-105,-25,0,0,0.420879 -17013,5210:354,-104,-25,0,0,0.419503 -17014,5210:353,-103,-25,0,0,0.423736 -17015,5210:352,-102,-25,0,0,0.42113 -17016,5210:351,-101,-25,0,0,0.414706 -17017,5210:350,-100,-25,0,0,0.406898 -17018,5209:459,-99,-25,0,0,0.400886 -17019,5209:458,-98,-25,0,0,0.401331 -17020,5209:457,-97,-25,0,0,0.400418 -17021,5209:456,-96,-25,0,0,0.396969 -17022,5209:455,-95,-25,0,0,0.397265 -17023,5209:354,-94,-25,0,0,0.398348 -17024,5209:353,-93,-25,0,0,0.399235 -17025,5209:352,-92,-25,0,0,0.401578 -17026,5209:351,-91,-25,0,0,0.401751 -17027,5209:350,-90,-25,0,0,0.399974 -17028,5208:459,-89,-25,0,0,0.393409 -17029,5208:458,-88,-25,0,0,0.390373 -17030,5208:457,-87,-25,0,0,0.387589 -17031,5208:456,-86,-25,0,0,0.386127 -17032,5208:455,-85,-25,0,0,0.385907 -17033,5208:354,-84,-25,0,0,0.382674 -17034,5208:353,-83,-25,0,0,0.378219 -17035,5208:352,-82,-25,0,0,0.378508 -17036,5208:351,-81,-25,0,0,0.378242 -17037,5208:350,-80,-25,0,0,0.381825 -17038,5207:459,-79,-25,0,0,0.38042 -17039,5207:458,-78,-25,0,0,0.379282 -17040,5207:457,-77,-25,0,0,0.376601 -17041,5207:456,-76,-25,0,0,0.367241 -17042,5207:455,-75,-25,0,0,0.361838 -17043,5207:354,-74,-25,0,0,0.350951 -17044,5207:353,-73,-25,0,0,0.351372 -17045,5207:352,-72,-25,0,0,0.344798 -17046,5205:352,-52,-25,0,0,0.480298 -17047,5205:351,-51,-25,0,0,0.496136 -17048,5205:350,-50,-25,0,0,0.561274 -17049,5204:459,-49,-25,0,0,0.513445 -17050,5204:458,-48,-25,0,0,0.509722 -17051,5204:457,-47,-25,0,0,0.50546 -17052,5204:456,-46,-25,0,0,0.473147 -17053,5204:455,-45,-25,0,0,0.456893 -17054,5204:354,-44,-25,0,0,0.447349 -17055,5204:353,-43,-25,0,0,0.444683 -17056,5204:352,-42,-25,0,0,0.439969 -17057,5204:351,-41,-25,0,0,0.43249 -17058,5204:350,-40,-25,0,0,0.438704 -17059,5203:459,-39,-25,0,0,0.432767 -17060,5203:458,-38,-25,0,0,0.417253 -17061,5203:457,-37,-25,0,0,0.425218 -17062,5203:456,-36,-25,0,0,0.422107 -17063,5203:455,-35,-25,0,0,0.426197 -17064,5203:354,-34,-25,0,0,0.414931 -17065,5203:353,-33,-25,0,0,0.416378 -17066,5203:352,-32,-25,0,0,0.402739 -17067,5203:351,-31,-25,0,0,0.41092 -17068,5203:350,-30,-25,0,0,0.417527 -17069,5202:459,-29,-25,0,0,0.415954 -17070,5202:458,-28,-25,0,0,0.404173 -17071,5202:457,-27,-25,0,0,0.41092 -17072,5202:456,-26,-25,0,0,0.417602 -17073,5202:455,-25,-25,0,0,0.411244 -17074,5202:354,-24,-25,0,0,0.403753 -17075,5202:353,-23,-25,0,0,0.415305 -17076,5202:352,-22,-25,0,0,0.404767 -17077,5202:351,-21,-25,0,0,0.397536 -17078,5202:350,-20,-25,0,0,0.405659 -17079,5201:459,-19,-25,0,0,0.407939 -17080,5201:458,-18,-25,0,0,0.401924 -17081,5201:457,-17,-25,0,0,0.403209 -17082,5201:456,-16,-25,0,0,0.403926 -17083,5201:455,-15,-25,0,0,0.400467 -17084,5201:354,-14,-25,0,0,0.401899 -17085,5201:353,-13,-25,0,0,0.403653 -17086,5201:352,-12,-25,0,0,0.390055 -17087,5201:351,-11,-25,0,0,0.400368 -17088,5201:350,-10,-25,0,0,0.405733 -17089,5200:459,-9,-25,0,0,0.401652 -17090,5200:458,-8,-25,0,0,0.400961 -17091,5200:457,-7,-25,0,0,0.408361 -17092,5200:456,-6,-25,0,0,0.404223 -17093,5200:455,-5,-25,0,0,0.403728 -17094,5200:354,-4,-25,0,0,0.406055 -17095,5200:353,-3,-25,0,0,0.404297 -17096,5200:352,-2,-25,0,0,0.400788 -17097,5200:351,-1,-25,0,0,0.399185 -17098,3200:351,0,-25,0,0,0.395912 -17099,3200:351,1,-25,0,0,0.393703 -17100,3200:352,2,-25,0,0,0.393728 -17101,3200:353,3,-25,0,0,0.393115 -17102,3200:354,4,-25,0,0,0.394316 -17103,3200:455,5,-25,0,0,0.392085 -17104,3200:456,6,-25,0,0,0.394856 -17105,3200:457,7,-25,0,0,0.397634 -17106,3200:458,8,-25,0,0,0.396798 -17107,3200:459,9,-25,0,0,0.400443 -17108,3201:350,10,-25,0,0,0.406824 -17109,3201:351,11,-25,0,0,0.408833 -17110,3201:352,12,-25,0,0,0.40933 -17111,3201:353,13,-25,0,0,0.412688 -17112,3201:354,14,-25,0,0,0.415679 -17113,3201:455,15,-25,0,0,0.418102 -17114,3201:456,16,-25,0,0,0.426197 -17115,3201:457,17,-25,0,0,0.419652 -17116,3202:458,28,-25,0,0,0.496778 -17117,3202:459,29,-25,0,0,0.53885 -17118,3203:350,30,-25,0,0,0.523397 -17119,3203:351,31,-25,0,0,0.518781 -17120,3203:352,32,-25,0,0,0.486584 -17121,3203:353,33,-25,0,0,0.455669 -17122,3203:354,34,-25,0,0,0.454217 -17123,3203:455,35,-25,0,0,0.445267 -17124,3203:456,36,-25,0,0,0.441235 -17125,3203:457,37,-25,0,0,0.448975 -17126,3203:458,38,-25,0,0,0.461817 -17127,3203:459,39,-25,0,0,0.476093 -17128,3204:350,40,-25,0,0,0.4774 -17129,3204:351,41,-25,0,0,0.453351 -17130,3204:352,42,-25,0,0,0.440729 -17131,3204:353,43,-25,0,0,0.430499 -17132,3204:354,44,-25,0,0,0.431936 -17133,3204:455,45,-25,0,0,0.43471 -17134,3204:456,46,-25,0,0,0.427705 -17136,3204:458,48,-25,0,0,0.421956 -17137,3204:459,49,-25,0,0,0.427227 -17138,3205:350,50,-25,0,0,0.413111 -17139,3205:351,51,-25,0,0,0.415454 -17140,3205:352,52,-25,0,0,0.412986 -17141,3205:353,53,-25,0,0,0.419677 -17142,3205:354,54,-25,0,0,0.425343 -17143,3205:455,55,-25,0,0,0.416128 -17144,3205:456,56,-25,0,0,0.410324 -17145,3205:457,57,-25,0,0,0.4101 -17146,3205:458,58,-25,0,0,0.410423 -17147,3205:459,59,-25,0,0,0.41331 -17148,3206:350,60,-25,0,0,0.416852 -17149,3206:351,61,-25,0,0,0.421405 -17150,3206:352,62,-25,0,0,0.422759 -17151,3206:353,63,-25,0,0,0.423736 -17152,3206:354,64,-25,0,0,0.419503 -17153,3206:455,65,-25,0,0,0.414557 -17154,3206:456,66,-25,0,0,0.419152 -17155,3206:457,67,-25,0,0,0.413983 -17156,3206:458,68,-25,0,0,0.410523 -17157,3206:459,69,-25,0,0,0.408958 -17158,3207:350,70,-25,0,0,0.413859 -17159,3207:351,71,-25,0,0,0.431986 -17160,3207:352,72,-25,0,0,0.428032 -17161,3207:354,74,-25,0,0,0.430071 -17162,3207:455,75,-25,0,0,0.436075 -17163,3207:456,76,-25,0,0,0.443871 -17164,3207:457,77,-25,0,0,0.429467 -17165,3207:458,78,-25,0,0,0.427202 -17166,3207:459,79,-25,0,0,0.425519 -17167,3208:350,80,-25,0,0,0.426926 -17168,3208:351,81,-25,0,0,0.426499 -17169,3208:352,82,-25,0,0,0.424213 -17170,3208:353,83,-25,0,0,0.422658 -17171,3208:354,84,-25,0,0,0.418226 -17172,3208:455,85,-25,0,0,0.411443 -17173,3208:456,86,-25,0,0,0.410473 -17174,3208:457,87,-25,0,0,0.414881 -17175,3208:458,88,-25,0,0,0.411319 -17176,3208:459,89,-25,0,0,0.407418 -17177,3209:350,90,-25,0,0,0.401627 -17178,3209:351,91,-25,0,0,0.39633 -17179,3209:352,92,-25,0,0,0.399407 -17180,3209:353,93,-25,0,0,0.394145 -17181,3209:354,94,-25,0,0,0.394414 -17182,3209:455,95,-25,0,0,0.397265 -17183,3209:456,96,-25,0,0,0.396822 -17184,3209:457,97,-25,0,0,0.3835 -17185,3209:458,98,-25,0,0,0.380105 -17186,3209:459,99,-25,0,0,0.382334 -17187,3210:350,100,-25,0,0,0.375299 -17188,3210:351,101,-25,0,0,0.378533 -17189,3210:352,102,-25,0,0,0.386395 -17190,3210:353,103,-25,0,0,0.375443 -17191,3210:354,104,-25,0,0,0.379234 -17192,3210:455,105,-25,0,0,0.379694 -17193,3210:456,106,-25,0,0,0.390691 -17194,3210:457,107,-25,0,0,0.389664 -17195,3210:458,108,-25,0,0,0.398274 -17196,3210:459,109,-25,0,0,0.393507 -17197,3211:350,110,-25,0,0,0.393924 -17198,3211:351,111,-25,0,0,0.421054 -17199,3211:352,112,-25,0,0,0.42123 -17200,3211:353,113,-25,0,0,0.43466 -17201,3211:354,114,-25,0,0,0.4598 -17202,3211:455,115,-25,0,0,0.469281 -17203,3212:456,126,-25,0,0,0.39466 -17204,3212:457,127,-25,0,0,0.391523 -17205,3212:458,128,-25,0,0,0.393213 -17206,3212:459,129,-25,0,0,0.40027 -17207,3213:350,130,-25,0,0,0.408958 -17208,3213:351,131,-25,0,0,0.411393 -17209,3213:352,132,-25,0,0,0.418402 -17210,3213:353,133,-25,0,0,0.442274 -17211,3213:354,134,-25,0,0,0.465061 -17212,3215:353,153,-25,0,0,0.546321 -17213,3215:354,154,-25,0,0,0.550469 -17214,3215:455,155,-25,0,0,0.535095 -17215,3215:456,156,-25,0,0,0.559198 -17216,3215:457,157,-25,0,0,0.530414 -17217,3215:458,158,-25,0,0,0.546754 -17218,3215:459,159,-25,0,0,0.527009 -17219,3216:350,160,-25,0,0,0.524576 -17220,3216:351,161,-25,0,0,0.515831 -17221,3216:352,162,-25,0,0,0.498602 -17222,3216:353,163,-25,0,0,0.496033 -17223,3216:354,164,-25,0,0,0.491128 -17224,3216:455,165,-25,0,0,0.492515 -17225,3216:456,166,-25,0,0,0.466545 -17226,3216:457,167,-25,0,0,0.455465 -17227,3216:458,168,-25,0,0,0.449407 -17228,3216:459,169,-25,0,0,0.43509 -17229,3217:350,170,-25,0,0,0.442451 -17230,3217:351,171,-25,0,0,0.441413 -17231,3217:352,172,-25,0,0,0.433852 -17232,3217:353,173,-25,0,0,0.433701 -17233,3217:354,174,-25,0,0,0.435544 -17234,3217:455,175,-25,0,0,0.425468 -17235,3217:456,176,-25,0,0,0.420954 -17236,3217:457,177,-25,0,0,0.426423 -17237,3217:458,178,-25,0,0,0.437667 -17238,3217:459,179,-25,0,0,0.430877 -17239,3218:350,180,-25,0,0,0.427529 -17240,5218:140,-180,-24,0,0,0.450069 -17241,5217:249,-179,-24,0,0,0.450551 -17242,5217:248,-178,-24,0,0,0.452816 -17243,5217:247,-177,-24,0,0,0.458703 -17244,5217:246,-176,-24,0,0,0.452205 -17245,5217:245,-175,-24,0,0,0.453453 -17246,5217:144,-174,-24,0,0,0.451085 -17247,5217:143,-173,-24,0,0,0.451314 -17248,5217:142,-172,-24,0,0,0.44806 -17249,5217:141,-171,-24,0,0,0.448035 -17250,5217:140,-170,-24,0,0,0.447349 -17251,5216:249,-169,-24,0,0,0.444683 -17252,5216:248,-168,-24,0,0,0.448111 -17253,5216:247,-167,-24,0,0,0.445648 -17254,5216:246,-166,-24,0,0,0.443821 -17255,5216:245,-165,-24,0,0,0.4458 -17256,5216:144,-164,-24,0,0,0.442756 -17257,5216:143,-163,-24,0,0,0.439817 -17258,5216:142,-162,-24,0,0,0.441008 -17259,5216:141,-161,-24,0,0,0.441616 -17260,5216:140,-160,-24,0,0,0.444658 -17261,5215:249,-159,-24,0,0,0.442654 -17262,5215:248,-158,-24,0,0,0.446562 -17263,5215:247,-157,-24,0,0,0.450119 -17264,5215:246,-156,-24,0,0,0.446155 -17265,5215:245,-155,-24,0,0,0.450196 -17266,5215:144,-154,-24,0,0,0.453478 -17267,5215:143,-153,-24,0,0,0.45855 -17268,5215:142,-152,-24,0,0,0.464755 -17269,5215:141,-151,-24,0,0,0.46726 -17270,5215:140,-150,-24,0,0,0.456127 -17271,5214:249,-149,-24,0,0,0.454497 -17272,5214:248,-148,-24,0,0,0.455949 -17273,5214:247,-147,-24,0,0,0.44372 -17274,5214:246,-146,-24,0,0,0.451085 -17275,5214:245,-145,-24,0,0,0.448035 -17276,5214:144,-144,-24,0,0,0.4441 -17277,5214:143,-143,-24,0,0,0.440273 -17278,5214:142,-142,-24,0,0,0.4423 -17279,5214:141,-141,-24,0,0,0.443212 -17280,5214:140,-140,-24,0,0,0.441793 -17281,5213:249,-139,-24,0,0,0.444988 -17282,5213:248,-138,-24,0,0,0.445927 -17283,5213:247,-137,-24,0,0,0.439185 -17284,5213:246,-136,-24,0,0,0.448975 -17285,5213:245,-135,-24,0,0,0.443289 -17286,5213:144,-134,-24,0,0,0.440628 -17287,5213:143,-133,-24,0,0,0.439261 -17288,5213:142,-132,-24,0,0,0.441008 -17289,5213:141,-131,-24,0,0,0.444937 -17290,5213:140,-130,-24,0,0,0.440045 -17291,5212:249,-129,-24,0,0,0.440096 -17292,5212:248,-128,-24,0,0,0.441286 -17293,5212:247,-127,-24,0,0,0.441742 -17294,5212:246,-126,-24,0,0,0.434686 -17295,5212:245,-125,-24,0,0,0.44268 -17296,5212:144,-124,-24,0,0,0.438502 -17297,5212:143,-123,-24,0,0,0.430801 -17298,5212:142,-122,-24,0,0,0.429542 -17299,5212:141,-121,-24,0,0,0.425996 -17300,5212:140,-120,-24,0,0,0.426222 -17301,5211:249,-119,-24,0,0,0.438324 -17302,5211:248,-118,-24,0,0,0.43567 -17303,5211:247,-117,-24,0,0,0.4306 -17304,5211:246,-116,-24,0,0,0.428813 -17305,5211:245,-115,-24,0,0,0.437819 -17306,5211:144,-114,-24,0,0,0.440881 -17307,5211:143,-113,-24,0,0,0.431406 -17308,5211:142,-112,-24,0,0,0.435392 -17309,5211:141,-111,-24,0,0,0.425243 -17310,5211:140,-110,-24,0,0,0.432692 -17311,5210:249,-109,-24,0,0,0.428082 -17312,5210:248,-108,-24,0,0,0.437313 -17313,5210:247,-107,-24,0,0,0.439185 -17314,5210:246,-106,-24,0,0,0.442427 -17315,5210:245,-105,-24,0,0,0.438021 -17316,5210:144,-104,-24,0,0,0.437742 -17317,5210:143,-103,-24,0,0,0.431431 -17318,5210:142,-102,-24,0,0,0.431356 -17319,5210:141,-101,-24,0,0,0.431557 -17320,5210:140,-100,-24,0,0,0.427202 -17321,5209:249,-99,-24,0,0,0.420278 -17322,5209:248,-98,-24,0,0,0.415654 -17323,5209:247,-97,-24,0,0,0.414706 -17324,5209:246,-96,-24,0,0,0.415679 -17325,5209:245,-95,-24,0,0,0.414731 -17326,5209:144,-94,-24,0,0,0.415879 -17327,5209:143,-93,-24,0,0,0.417577 -17328,5209:142,-92,-24,0,0,0.417377 -17329,5209:141,-91,-24,0,0,0.414108 -17330,5209:140,-90,-24,0,0,0.408833 -17331,5208:249,-89,-24,0,0,0.408064 -17332,5208:248,-88,-24,0,0,0.406204 -17333,5208:247,-87,-24,0,0,0.403283 -17334,5208:246,-86,-24,0,0,0.401504 -17335,5208:245,-85,-24,0,0,0.397609 -17336,5208:144,-84,-24,0,0,0.3952 -17337,5208:143,-83,-24,0,0,0.394366 -17338,5208:142,-82,-24,0,0,0.395053 -17339,5208:141,-81,-24,0,0,0.39118 -17340,5208:140,-80,-24,0,0,0.391009 -17341,5207:249,-79,-24,0,0,0.393507 -17342,5207:248,-78,-24,0,0,0.389298 -17343,5207:247,-77,-24,0,0,0.384204 -17344,5207:246,-76,-24,0,0,0.380202 -17345,5207:245,-75,-24,0,0,0.370926 -17346,5207:144,-74,-24,0,0,0.363715 -17347,5207:143,-73,-24,0,0,0.360061 -17348,5207:142,-72,-24,0,0,0.345495 -17349,5205:141,-51,-24,0,0,0.519782 -17350,5205:140,-50,-24,0,0,0.551333 -17351,5204:249,-49,-24,0,0,0.570914 -17352,5204:248,-48,-24,0,0,0.538773 -17353,5204:247,-47,-24,0,0,0.513727 -17354,5204:246,-46,-24,0,0,0.48394 -17355,5204:245,-45,-24,0,0,0.474197 -17356,5204:144,-44,-24,0,0,0.465266 -17357,5204:143,-43,-24,0,0,0.461153 -17358,5204:142,-42,-24,0,0,0.463962 -17359,5204:141,-41,-24,0,0,0.465573 -17360,5204:140,-40,-24,0,0,0.465854 -17361,5203:249,-39,-24,0,0,0.464397 -17362,5203:248,-38,-24,0,0,0.451518 -17363,5203:247,-37,-24,0,0,0.452994 -17364,5203:246,-36,-24,0,0,0.450196 -17365,5203:245,-35,-24,0,0,0.455847 -17366,5203:144,-34,-24,0,0,0.454191 -17367,5203:143,-33,-24,0,0,0.443313 -17368,5203:142,-32,-24,0,0,0.43797 -17369,5203:141,-31,-24,0,0,0.442376 -17370,5203:140,-30,-24,0,0,0.451951 -17371,5202:249,-29,-24,0,0,0.445723 -17372,5202:248,-28,-24,0,0,0.441312 -17373,5202:247,-27,-24,0,0,0.439438 -17374,5202:246,-26,-24,0,0,0.43883 -17375,5202:245,-25,-24,0,0,0.443035 -17376,5202:144,-24,-24,0,0,0.443694 -17377,5202:143,-23,-24,0,0,0.441564 -17378,5202:142,-22,-24,0,0,0.448899 -17379,5202:141,-21,-24,0,0,0.443035 -17380,5202:140,-20,-24,0,0,0.427806 -17381,5201:249,-19,-24,0,0,0.428435 -17382,5201:248,-18,-24,0,0,0.422934 -17383,5201:247,-17,-24,0,0,0.42919 -17384,5201:246,-16,-24,0,0,0.42851 -17385,5201:245,-15,-24,0,0,0.428334 -17386,5201:144,-14,-24,0,0,0.420028 -17387,5201:143,-13,-24,0,0,0.41538 -17388,5201:142,-12,-24,0,0,0.412065 -17389,5201:141,-11,-24,0,0,0.43921 -17390,5201:140,-10,-24,0,0,0.439387 -17391,5200:249,-9,-24,0,0,0.433045 -17392,5200:248,-8,-24,0,0,0.438679 -17393,5200:247,-7,-24,0,0,0.431709 -17394,5200:246,-6,-24,0,0,0.43186 -17395,5200:245,-5,-24,0,0,0.429945 -17396,5200:144,-4,-24,0,0,0.426448 -17397,5200:143,-3,-24,0,0,0.431229 -17398,5200:142,-2,-24,0,0,0.43191 -17399,5200:141,-1,-24,0,0,0.430801 -17400,3200:141,0,-24,0,0,0.42316 -17401,3200:141,1,-24,0,0,0.415604 -17402,3200:142,2,-24,0,0,0.411617 -17403,3200:143,3,-24,0,0,0.405708 -17404,3200:144,4,-24,0,0,0.405312 -17405,3200:245,5,-24,0,0,0.404965 -17406,3200:246,6,-24,0,0,0.410622 -17407,3200:247,7,-24,0,0,0.411244 -17408,3200:248,8,-24,0,0,0.40789 -17409,3200:249,9,-24,0,0,0.410797 -17410,3201:140,10,-24,0,0,0.411368 -17411,3201:141,11,-24,0,0,0.411294 -17412,3201:142,12,-24,0,0,0.417202 -17413,3201:143,13,-24,0,0,0.417952 -17414,3201:144,14,-24,0,0,0.428963 -17415,3201:245,15,-24,0,0,0.437313 -17416,3201:246,16,-24,0,0,0.439969 -17417,3201:247,17,-24,0,0,0.430877 -17418,3203:140,30,-24,0,0,0.549426 -17419,3203:141,31,-24,0,0,0.558894 -17420,3203:142,32,-24,0,0,0.536194 -17421,3203:143,33,-24,0,0,0.516217 -17422,3203:144,34,-24,0,0,0.485326 -17423,3203:245,35,-24,0,0,0.499809 -17424,3203:246,36,-24,0,0,0.512752 -17425,3203:247,37,-24,0,0,0.510133 -17426,3203:248,38,-24,0,0,0.480426 -17427,3203:249,39,-24,0,0,0.492694 -17428,3204:140,40,-24,0,0,0.495031 -17429,3204:141,41,-24,0,0,0.490794 -17430,3204:142,42,-24,0,0,0.488304 -17431,3204:143,43,-24,0,0,0.484326 -17432,3204:144,44,-24,0,0,0.480862 -17433,3204:245,45,-24,0,0,0.473583 -17434,3204:246,46,-24,0,0,0.466442 -17435,3204:247,47,-24,0,0,0.447527 -17436,3204:248,48,-24,0,0,0.453886 -17437,3204:249,49,-24,0,0,0.453987 -17438,3205:140,50,-24,0,0,0.454522 -17439,3205:141,51,-24,0,0,0.448518 -17440,3205:142,52,-24,0,0,0.449865 -17441,3205:143,53,-24,0,0,0.452562 -17442,3205:144,54,-24,0,0,0.444607 -17443,3205:245,55,-24,0,0,0.446993 -17444,3205:246,56,-24,0,0,0.437136 -17445,3205:247,57,-24,0,0,0.436554 -17446,3205:248,58,-24,0,0,0.43835 -17447,3205:249,59,-24,0,0,0.440653 -17448,3206:140,60,-24,0,0,0.446435 -17449,3206:141,61,-24,0,0,0.449204 -17450,3206:142,62,-24,0,0,0.449382 -17451,3206:143,63,-24,0,0,0.446587 -17452,3206:144,64,-24,0,0,0.446866 -17453,3206:245,65,-24,0,0,0.441033 -17454,3206:246,66,-24,0,0,0.44235 -17455,3206:247,67,-24,0,0,0.441159 -17456,3206:248,68,-24,0,0,0.439058 -17457,3206:249,69,-24,0,0,0.447171 -17458,3207:140,70,-24,0,0,0.457708 -17459,3207:141,71,-24,0,0,0.454548 -17460,3207:142,72,-24,0,0,0.465956 -17461,3207:144,74,-24,0,0,0.468003 -17462,3207:245,75,-24,0,0,0.467362 -17463,3207:246,76,-24,0,0,0.466621 -17464,3207:247,77,-24,0,0,0.457249 -17465,3207:248,78,-24,0,0,0.452867 -17466,3207:249,79,-24,0,0,0.460668 -17467,3208:140,80,-24,0,0,0.462455 -17468,3208:141,81,-24,0,0,0.461817 -17469,3208:142,82,-24,0,0,0.449127 -17470,3208:143,83,-24,0,0,0.45302 -17471,3208:144,84,-24,0,0,0.447171 -17472,3208:245,85,-24,0,0,0.43959 -17473,3208:246,86,-24,0,0,0.441844 -17474,3208:247,87,-24,0,0,0.436201 -17475,3208:248,88,-24,0,0,0.438653 -17476,3208:249,89,-24,0,0,0.429265 -17477,3209:140,90,-24,0,0,0.427001 -17478,3209:141,91,-24,0,0,0.423034 -17479,3209:142,92,-24,0,0,0.423335 -17480,3209:143,93,-24,0,0,0.419603 -17481,3209:144,94,-24,0,0,0.412713 -17482,3209:245,95,-24,0,0,0.405683 -17483,3209:246,96,-24,0,0,0.410423 -17484,3209:247,97,-24,0,0,0.400073 -17485,3209:248,98,-24,0,0,0.391718 -17486,3209:249,99,-24,0,0,0.39118 -17487,3210:140,100,-24,0,0,0.390446 -17488,3210:141,101,-24,0,0,0.390471 -17489,3210:142,102,-24,0,0,0.386833 -17490,3210:143,103,-24,0,0,0.396626 -17491,3210:144,104,-24,0,0,0.398865 -17492,3210:245,105,-24,0,0,0.388516 -17493,3210:246,106,-24,0,0,0.404965 -17494,3210:247,107,-24,0,0,0.401849 -17495,3210:248,108,-24,0,0,0.406228 -17496,3210:249,109,-24,0,0,0.411493 -17497,3211:140,110,-24,0,0,0.413833 -17498,3211:141,111,-24,0,0,0.443313 -17499,3211:142,112,-24,0,0,0.446308 -17500,3211:143,113,-24,0,0,0.454624 -17501,3211:144,114,-24,0,0,0.473019 -17502,3211:245,115,-24,0,0,0.487944 -17503,3215:144,154,-24,0,0,0.565772 -17504,3215:245,155,-24,0,0,0.545175 -17505,3215:246,156,-24,0,0,0.55273 -17506,3215:247,157,-24,0,0,0.552959 -17507,3215:248,158,-24,0,0,0.535069 -17508,3215:249,159,-24,0,0,0.529237 -17509,3216:140,160,-24,0,0,0.53131 -17510,3216:141,161,-24,0,0,0.518115 -17511,3216:142,162,-24,0,0,0.511905 -17512,3216:143,163,-24,0,0,0.50849 -17513,3216:144,164,-24,0,0,0.502814 -17514,3216:245,165,-24,0,0,0.499963 -17515,3216:246,166,-24,0,0,0.473839 -17516,3216:247,167,-24,0,0,0.466417 -17517,3216:248,168,-24,0,0,0.46312 -17518,3216:249,169,-24,0,0,0.45781 -17519,3217:140,170,-24,0,0,0.450374 -17520,3217:141,171,-24,0,0,0.447755 -17521,3217:142,172,-24,0,0,0.447628 -17522,3217:143,173,-24,0,0,0.448136 -17523,3217:144,174,-24,0,0,0.450322 -17524,3217:245,175,-24,0,0,0.442223 -17525,3217:246,176,-24,0,0,0.446968 -17526,3217:247,177,-24,0,0,0.44984 -17527,3217:248,178,-24,0,0,0.452002 -17528,3217:249,179,-24,0,0,0.455873 -17529,3218:140,180,-24,0,0,0.450069 -17530,5218:130,-180,-23,0,0,0.465547 -17531,5217:239,-179,-23,0,0,0.464857 -17532,5217:238,-178,-23,0,0,0.467286 -17533,5217:237,-177,-23,0,0,0.473839 -17534,5217:236,-176,-23,0,0,0.465803 -17535,5217:235,-175,-23,0,0,0.461511 -17536,5217:134,-174,-23,0,0,0.461383 -17537,5217:133,-173,-23,0,0,0.457504 -17538,5217:132,-172,-23,0,0,0.461281 -17539,5217:131,-171,-23,0,0,0.47243 -17540,5217:130,-170,-23,0,0,0.460234 -17541,5216:239,-169,-23,0,0,0.465726 -17542,5216:238,-168,-23,0,0,0.465752 -17543,5216:237,-167,-23,0,0,0.461613 -17544,5216:236,-166,-23,0,0,0.457606 -17545,5216:235,-165,-23,0,0,0.457683 -17546,5216:134,-164,-23,0,0,0.460617 -17547,5216:133,-163,-23,0,0,0.453198 -17548,5216:132,-162,-23,0,0,0.458601 -17549,5216:131,-161,-23,0,0,0.461025 -17550,5216:130,-160,-23,0,0,0.460745 -17551,5215:239,-159,-23,0,0,0.4657 -17552,5215:238,-158,-23,0,0,0.460489 -17553,5215:237,-157,-23,0,0,0.457249 -17554,5215:236,-156,-23,0,0,0.46335 -17555,5215:235,-155,-23,0,0,0.466084 -17556,5215:134,-154,-23,0,0,0.470791 -17557,5215:133,-153,-23,0,0,0.472866 -17558,5215:132,-152,-23,0,0,0.47535 -17559,5215:131,-151,-23,0,0,0.479811 -17560,5215:130,-150,-23,0,0,0.478733 -17561,5214:239,-149,-23,0,0,0.473659 -17562,5214:238,-148,-23,0,0,0.465369 -17563,5214:237,-147,-23,0,0,0.468284 -17564,5214:236,-146,-23,0,0,0.466595 -17565,5214:235,-145,-23,0,0,0.465778 -17566,5214:134,-144,-23,0,0,0.469973 -17567,5214:133,-143,-23,0,0,0.464116 -17568,5214:132,-142,-23,0,0,0.467107 -17569,5214:131,-141,-23,0,0,0.461536 -17570,5214:130,-140,-23,0,0,0.463707 -17571,5213:239,-139,-23,0,0,0.46657 -17572,5213:238,-138,-23,0,0,0.465956 -17573,5213:237,-137,-23,0,0,0.457556 -17574,5213:236,-136,-23,0,0,0.466903 -17575,5213:235,-135,-23,0,0,0.456382 -17576,5213:134,-134,-23,0,0,0.458907 -17577,5213:133,-133,-23,0,0,0.460106 -17578,5213:132,-132,-23,0,0,0.465522 -17579,5213:131,-131,-23,0,0,0.459877 -17580,5213:130,-130,-23,0,0,0.458703 -17581,5212:239,-129,-23,0,0,0.473454 -17582,5212:238,-128,-23,0,0,0.466979 -17583,5212:237,-127,-23,0,0,0.45493 -17584,5212:236,-126,-23,0,0,0.458652 -17585,5212:235,-125,-23,0,0,0.456 -17586,5212:134,-124,-23,0,0,0.451188 -17587,5212:133,-123,-23,0,0,0.447654 -17588,5212:132,-122,-23,0,0,0.439817 -17589,5212:131,-121,-23,0,0,0.443111 -17590,5212:130,-120,-23,0,0,0.451238 -17591,5211:239,-119,-23,0,0,0.448645 -17592,5211:238,-118,-23,0,0,0.446638 -17593,5211:237,-117,-23,0,0,0.451238 -17594,5211:236,-116,-23,0,0,0.450348 -17595,5211:235,-115,-23,0,0,0.456841 -17596,5211:134,-114,-23,0,0,0.454853 -17597,5211:133,-113,-23,0,0,0.454217 -17598,5211:132,-112,-23,0,0,0.444074 -17599,5211:131,-111,-23,0,0,0.445292 -17600,5211:130,-110,-23,0,0,0.446562 -17601,5210:239,-109,-23,0,0,0.450628 -17602,5210:238,-108,-23,0,0,0.454217 -17603,5210:237,-107,-23,0,0,0.453172 -17604,5210:236,-106,-23,0,0,0.452231 -17605,5210:235,-105,-23,0,0,0.453733 -17606,5210:134,-104,-23,0,0,0.4519 -17607,5210:133,-103,-23,0,0,0.451951 -17608,5210:132,-102,-23,0,0,0.450297 -17609,5210:131,-101,-23,0,0,0.447527 -17610,5210:130,-100,-23,0,0,0.44339 -17611,5209:239,-99,-23,0,0,0.437667 -17612,5209:238,-98,-23,0,0,0.437465 -17613,5209:237,-97,-23,0,0,0.43792 -17614,5209:236,-96,-23,0,0,0.438249 -17615,5209:235,-95,-23,0,0,0.436605 -17616,5209:134,-94,-23,0,0,0.436378 -17617,5209:133,-93,-23,0,0,0.433676 -17618,5209:132,-92,-23,0,0,0.429668 -17619,5209:131,-91,-23,0,0,0.425218 -17620,5209:130,-90,-23,0,0,0.419303 -17621,5208:239,-89,-23,0,0,0.415879 -17622,5208:238,-88,-23,0,0,0.414208 -17623,5208:237,-87,-23,0,0,0.411543 -17624,5208:236,-86,-23,0,0,0.409528 -17625,5208:235,-85,-23,0,0,0.408262 -17626,5208:134,-84,-23,0,0,0.40933 -17627,5208:133,-83,-23,0,0,0.408908 -17628,5208:132,-82,-23,0,0,0.404767 -17629,5208:131,-81,-23,0,0,0.400911 -17630,5208:130,-80,-23,0,0,0.398644 -17631,5207:239,-79,-23,0,0,0.399727 -17632,5207:238,-78,-23,0,0,0.39638 -17633,5207:237,-77,-23,0,0,0.386663 -17634,5207:236,-76,-23,0,0,0.385591 -17635,5207:235,-75,-23,0,0,0.374986 -17636,5207:134,-74,-23,0,0,0.367575 -17637,5207:133,-73,-23,0,0,0.360297 -17638,5207:132,-72,-23,0,0,0.35238 -17639,5205:130,-50,-23,0,0,0.529826 -17640,5204:239,-49,-23,0,0,0.564105 -17641,5204:238,-48,-23,0,0,0.582876 -17642,5204:237,-47,-23,0,0,0.530261 -17643,5204:236,-46,-23,0,0,0.535836 -17644,5204:235,-45,-23,0,0,0.509183 -17645,5204:134,-44,-23,0,0,0.504201 -17646,5204:133,-43,-23,0,0,0.494595 -17647,5204:132,-42,-23,0,0,0.493259 -17648,5204:131,-41,-23,0,0,0.50492 -17649,5204:130,-40,-23,0,0,0.50379 -17650,5203:239,-39,-23,0,0,0.492746 -17651,5203:238,-38,-23,0,0,0.496187 -17652,5203:237,-37,-23,0,0,0.484762 -17653,5203:236,-36,-23,0,0,0.476401 -17654,5203:235,-35,-23,0,0,0.472891 -17655,5203:134,-34,-23,0,0,0.472866 -17656,5203:133,-33,-23,0,0,0.467312 -17657,5203:132,-32,-23,0,0,0.470305 -17658,5203:131,-31,-23,0,0,0.474146 -17659,5203:130,-30,-23,0,0,0.469895 -17660,5202:239,-29,-23,0,0,0.471022 -17661,5202:238,-28,-23,0,0,0.481119 -17662,5202:237,-27,-23,0,0,0.46964 -17663,5202:236,-26,-23,0,0,0.466161 -17664,5202:235,-25,-23,0,0,0.463196 -17665,5202:134,-24,-23,0,0,0.469307 -17666,5202:133,-23,-23,0,0,0.468514 -17667,5202:132,-22,-23,0,0,0.46611 -17668,5202:131,-21,-23,0,0,0.460081 -17669,5202:130,-20,-23,0,0,0.458066 -17670,5201:239,-19,-23,0,0,0.450984 -17671,5201:238,-18,-23,0,0,0.450526 -17672,5201:237,-17,-23,0,0,0.452155 -17673,5201:236,-16,-23,0,0,0.449204 -17674,5201:235,-15,-23,0,0,0.450145 -17675,5201:134,-14,-23,0,0,0.441667 -17676,5201:133,-13,-23,0,0,0.441919 -17677,5201:132,-12,-23,0,0,0.456765 -17678,5201:131,-11,-23,0,0,0.465394 -17679,5201:130,-10,-23,0,0,0.459162 -17680,5200:239,-9,-23,0,0,0.456153 -17681,5200:238,-8,-23,0,0,0.454879 -17682,5200:237,-7,-23,0,0,0.451926 -17683,5200:236,-6,-23,0,0,0.449788 -17684,5200:235,-5,-23,0,0,0.448086 -17685,5200:134,-4,-23,0,0,0.447527 -17686,5200:133,-3,-23,0,0,0.449661 -17687,5200:132,-2,-23,0,0,0.446003 -17688,5200:131,-1,-23,0,0,0.437869 -17689,3200:131,0,-23,0,0,0.433373 -17690,3200:131,1,-23,0,0,0.429442 -17691,3200:132,2,-23,0,0,0.422232 -17692,3200:133,3,-23,0,0,0.424013 -17693,3200:134,4,-23,0,0,0.425167 -17694,3200:235,5,-23,0,0,0.419477 -17695,3200:236,6,-23,0,0,0.423837 -17696,3200:237,7,-23,0,0,0.423461 -17697,3200:238,8,-23,0,0,0.423461 -17698,3200:239,9,-23,0,0,0.426046 -17699,3201:130,10,-23,0,0,0.423109 -17700,3201:131,11,-23,0,0,0.427278 -17701,3201:132,12,-23,0,0,0.431129 -17702,3201:133,13,-23,0,0,0.427303 -17703,3201:134,14,-23,0,0,0.437566 -17704,3201:235,15,-23,0,0,0.442046 -17705,3201:236,16,-23,0,0,0.442427 -17706,3203:131,31,-23,0,0,0.567538 -17707,3203:132,32,-23,0,0,0.575313 -17708,3203:133,33,-23,0,0,0.557855 -17709,3203:134,34,-23,0,0,0.531873 -17710,3203:235,35,-23,0,0,0.531873 -17711,3203:236,36,-23,0,0,0.542728 -17712,3203:237,37,-23,0,0,0.524832 -17713,3203:238,38,-23,0,0,0.513932 -17714,3203:239,39,-23,0,0,0.522653 -17715,3204:130,40,-23,0,0,0.526293 -17716,3204:131,41,-23,0,0,0.521808 -17717,3204:132,42,-23,0,0,0.521782 -17718,3204:133,43,-23,0,0,0.514702 -17719,3204:134,44,-23,0,0,0.484736 -17720,3204:235,45,-23,0,0,0.470663 -17721,3204:236,46,-23,0,0,0.474838 -17722,3204:237,47,-23,0,0,0.491154 -17723,3204:238,48,-23,0,0,0.489408 -17724,3204:239,49,-23,0,0,0.480759 -17725,3205:130,50,-23,0,0,0.491462 -17726,3205:131,51,-23,0,0,0.478426 -17727,3205:132,52,-23,0,0,0.472968 -17728,3205:133,53,-23,0,0,0.466468 -17729,3205:134,54,-23,0,0,0.465061 -17730,3205:235,55,-23,0,0,0.467644 -17731,3205:236,56,-23,0,0,0.474479 -17732,3205:237,57,-23,0,0,0.469666 -17733,3205:238,58,-23,0,0,0.468668 -17734,3205:239,59,-23,0,0,0.472353 -17735,3206:130,60,-23,0,0,0.473608 -17736,3206:131,61,-23,0,0,0.473506 -17737,3206:132,62,-23,0,0,0.47138 -17738,3206:133,63,-23,0,0,0.47266 -17739,3206:134,64,-23,0,0,0.473634 -17740,3206:235,65,-23,0,0,0.471304 -17741,3206:236,66,-23,0,0,0.469921 -17742,3206:237,67,-23,0,0,0.473941 -17743,3206:238,68,-23,0,0,0.483582 -17744,3206:239,69,-23,0,0,0.478554 -17745,3207:130,70,-23,0,0,0.482248 -17746,3207:131,71,-23,0,0,0.48294 -17747,3207:132,72,-23,0,0,0.485429 -17748,3207:134,74,-23,0,0,0.487379 -17749,3207:235,75,-23,0,0,0.483068 -17750,3207:236,76,-23,0,0,0.486481 -17751,3207:237,77,-23,0,0,0.483299 -17752,3207:238,78,-23,0,0,0.478118 -17753,3207:239,79,-23,0,0,0.488612 -17754,3208:130,80,-23,0,0,0.485326 -17755,3208:131,81,-23,0,0,0.480914 -17756,3208:132,82,-23,0,0,0.469742 -17757,3208:133,83,-23,0,0,0.467797 -17758,3208:134,84,-23,0,0,0.465828 -17759,3208:235,85,-23,0,0,0.469563 -17760,3208:236,86,-23,0,0,0.456765 -17761,3208:237,87,-23,0,0,0.449916 -17762,3208:238,88,-23,0,0,0.449967 -17763,3208:239,89,-23,0,0,0.440754 -17764,3209:130,90,-23,0,0,0.4336 -17765,3209:131,91,-23,0,0,0.435796 -17766,3209:132,92,-23,0,0,0.434155 -17767,3209:133,93,-23,0,0,0.431179 -17768,3209:134,94,-23,0,0,0.434079 -17769,3209:235,95,-23,0,0,0.425946 -17770,3209:236,96,-23,0,0,0.420228 -17771,3209:237,97,-23,0,0,0.412389 -17772,3209:238,98,-23,0,0,0.416503 -17773,3209:239,99,-23,0,0,0.408983 -17774,3210:130,100,-23,0,0,0.420904 -17775,3210:131,101,-23,0,0,0.40727 -17776,3210:132,102,-23,0,0,0.408238 -17777,3210:133,103,-23,0,0,0.41199 -17778,3210:134,104,-23,0,0,0.427177 -17779,3210:235,105,-23,0,0,0.408361 -17780,3210:236,106,-23,0,0,0.421731 -17781,3210:237,107,-23,0,0,0.415679 -17782,3210:238,108,-23,0,0,0.420078 -17783,3210:239,109,-23,0,0,0.429265 -17784,3211:130,110,-23,0,0,0.441717 -17785,3211:131,111,-23,0,0,0.457862 -17786,3211:132,112,-23,0,0,0.45251 -17787,3211:133,113,-23,0,0,0.467184 -17788,3211:134,114,-23,0,0,0.491308 -17789,3211:235,115,-23,0,0,0.490538 -17790,3215:134,154,-23,0,0,0.576066 -17791,3215:235,155,-23,0,0,0.568874 -17792,3215:236,156,-23,0,0,0.541249 -17793,3215:237,157,-23,0,0,0.539769 -17794,3215:238,158,-23,0,0,0.534763 -17795,3215:239,159,-23,0,0,0.520295 -17796,3216:130,160,-23,0,0,0.515318 -17797,3216:131,161,-23,0,0,0.511802 -17798,3216:132,162,-23,0,0,0.51021 -17799,3216:133,163,-23,0,0,0.511468 -17800,3216:134,164,-23,0,0,0.508798 -17801,3216:235,165,-23,0,0,0.506821 -17802,3216:236,166,-23,0,0,0.493798 -17803,3216:237,167,-23,0,0,0.470945 -17804,3216:238,168,-23,0,0,0.466468 -17805,3216:239,169,-23,0,0,0.464933 -17806,3217:130,170,-23,0,0,0.462864 -17807,3217:131,171,-23,0,0,0.462481 -17808,3217:132,172,-23,0,0,0.464065 -17809,3217:133,173,-23,0,0,0.46432 -17810,3217:134,174,-23,0,0,0.466877 -17811,3217:235,175,-23,0,0,0.462736 -17812,3217:236,176,-23,0,0,0.462558 -17813,3217:237,177,-23,0,0,0.471534 -17814,3217:238,178,-23,0,0,0.470177 -17815,3217:239,179,-23,0,0,0.469666 -17816,3218:130,180,-23,0,0,0.465547 -17817,5218:120,-180,-22,0,0,0.482812 -17818,5217:229,-179,-22,0,0,0.492746 -17819,5217:228,-178,-22,0,0,0.486969 -17820,5217:227,-177,-22,0,0,0.481683 -17821,5217:226,-176,-22,0,0,0.478426 -17822,5217:225,-175,-22,0,0,0.479502 -17823,5217:124,-174,-22,0,0,0.485532 -17824,5217:123,-173,-22,0,0,0.487072 -17825,5217:122,-172,-22,0,0,0.482427 -17826,5217:121,-171,-22,0,0,0.492746 -17827,5217:120,-170,-22,0,0,0.480169 -17828,5216:229,-169,-22,0,0,0.476247 -17829,5216:228,-168,-22,0,0,0.478682 -17830,5216:227,-167,-22,0,0,0.473557 -17831,5216:226,-166,-22,0,0,0.472584 -17832,5216:225,-165,-22,0,0,0.468488 -17833,5216:124,-164,-22,0,0,0.47512 -17834,5216:123,-163,-22,0,0,0.470356 -17835,5216:122,-162,-22,0,0,0.47028 -17836,5216:121,-161,-22,0,0,0.469205 -17837,5216:120,-160,-22,0,0,0.47412 -17838,5215:229,-159,-22,0,0,0.481195 -17839,5215:228,-158,-22,0,0,0.481811 -17840,5215:227,-157,-22,0,0,0.479939 -17841,5215:226,-156,-22,0,0,0.480605 -17842,5215:225,-155,-22,0,0,0.488381 -17843,5215:124,-154,-22,0,0,0.49159 -17844,5215:123,-153,-22,0,0,0.490794 -17845,5215:122,-152,-22,0,0,0.487893 -17846,5215:121,-151,-22,0,0,0.493002 -17847,5215:120,-150,-22,0,0,0.500913 -17848,5214:229,-149,-22,0,0,0.49367 -17849,5214:228,-148,-22,0,0,0.493748 -17850,5214:227,-147,-22,0,0,0.490024 -17851,5214:226,-146,-22,0,0,0.490512 -17852,5214:225,-145,-22,0,0,0.491873 -17853,5214:124,-144,-22,0,0,0.492181 -17854,5214:123,-143,-22,0,0,0.485172 -17855,5214:122,-142,-22,0,0,0.481631 -17856,5214:121,-141,-22,0,0,0.48987 -17857,5214:120,-140,-22,0,0,0.480349 -17858,5213:229,-139,-22,0,0,0.487765 -17859,5213:228,-138,-22,0,0,0.485044 -17860,5213:227,-137,-22,0,0,0.476298 -17861,5213:226,-136,-22,0,0,0.477708 -17862,5213:225,-135,-22,0,0,0.469153 -17863,5213:124,-134,-22,0,0,0.470561 -17864,5213:123,-133,-22,0,0,0.478118 -17865,5213:122,-132,-22,0,0,0.475043 -17866,5213:121,-131,-22,0,0,0.491795 -17867,5213:120,-130,-22,0,0,0.496136 -17868,5212:229,-129,-22,0,0,0.489202 -17869,5212:228,-128,-22,0,0,0.479759 -17870,5212:227,-127,-22,0,0,0.473121 -17871,5212:226,-126,-22,0,0,0.476401 -17872,5212:225,-125,-22,0,0,0.471765 -17873,5212:124,-124,-22,0,0,0.465369 -17874,5212:123,-123,-22,0,0,0.4634 -17875,5212:122,-122,-22,0,0,0.465778 -17876,5212:121,-121,-22,0,0,0.458729 -17877,5212:120,-120,-22,0,0,0.467516 -17878,5211:229,-119,-22,0,0,0.463375 -17879,5211:228,-118,-22,0,0,0.468003 -17880,5211:227,-117,-22,0,0,0.465189 -17881,5211:226,-116,-22,0,0,0.461255 -17882,5211:225,-115,-22,0,0,0.46749 -17883,5211:124,-114,-22,0,0,0.467542 -17884,5211:123,-113,-22,0,0,0.468693 -17885,5211:122,-112,-22,0,0,0.456204 -17886,5211:121,-111,-22,0,0,0.463043 -17887,5211:120,-110,-22,0,0,0.463502 -17888,5210:229,-109,-22,0,0,0.467286 -17889,5210:228,-108,-22,0,0,0.471585 -17890,5210:227,-107,-22,0,0,0.473096 -17891,5210:226,-106,-22,0,0,0.47028 -17892,5210:225,-105,-22,0,0,0.470971 -17893,5210:124,-104,-22,0,0,0.469947 -17894,5210:123,-103,-22,0,0,0.468949 -17895,5210:122,-102,-22,0,0,0.466621 -17896,5210:121,-101,-22,0,0,0.462302 -17897,5210:120,-100,-22,0,0,0.45975 -17898,5209:229,-99,-22,0,0,0.454497 -17899,5209:228,-98,-22,0,0,0.455465 -17900,5209:227,-97,-22,0,0,0.453911 -17901,5209:226,-96,-22,0,0,0.448899 -17902,5209:225,-95,-22,0,0,0.447425 -17903,5209:124,-94,-22,0,0,0.444506 -17904,5209:123,-93,-22,0,0,0.439185 -17905,5209:122,-92,-22,0,0,0.43466 -17906,5209:121,-91,-22,0,0,0.429542 -17907,5209:120,-90,-22,0,0,0.425343 -17908,5208:229,-89,-22,0,0,0.421831 -17909,5208:228,-88,-22,0,0,0.420453 -17910,5208:227,-87,-22,0,0,0.417502 -17911,5208:226,-86,-22,0,0,0.414806 -17912,5208:225,-85,-22,0,0,0.416203 -17913,5208:124,-84,-22,0,0,0.414856 -17914,5208:123,-83,-22,0,0,0.412563 -17915,5208:122,-82,-22,0,0,0.411966 -17916,5208:121,-81,-22,0,0,0.411319 -17917,5208:120,-80,-22,0,0,0.406501 -17918,5207:229,-79,-22,0,0,0.401232 -17919,5207:228,-78,-22,0,0,0.399308 -17920,5207:227,-77,-22,0,0,0.397486 -17921,5207:226,-76,-22,0,0,0.388053 -17922,5207:225,-75,-22,0,0,0.384083 -17923,5207:124,-74,-22,0,0,0.372101 -17924,5207:123,-73,-22,0,0,0.358831 -17925,5207:122,-72,-22,0,0,0.364786 -17926,5204:229,-49,-22,0,0,0.540841 -17927,5204:228,-48,-22,0,0,0.575514 -17928,5204:227,-47,-22,0,0,0.571845 -17929,5204:226,-46,-22,0,0,0.541657 -17930,5204:225,-45,-22,0,0,0.529749 -17931,5204:124,-44,-22,0,0,0.528085 -17932,5204:123,-43,-22,0,0,0.53241 -17933,5204:122,-42,-22,0,0,0.530184 -17934,5204:121,-41,-22,0,0,0.531949 -17935,5204:120,-40,-22,0,0,0.516806 -17936,5203:229,-39,-22,0,0,0.523833 -17937,5203:228,-38,-22,0,0,0.517678 -17938,5203:227,-37,-22,0,0,0.507823 -17939,5203:226,-36,-22,0,0,0.502018 -17940,5203:225,-35,-22,0,0,0.494672 -17941,5203:124,-34,-22,0,0,0.492489 -17942,5203:123,-33,-22,0,0,0.491976 -17943,5203:122,-32,-22,0,0,0.500477 -17944,5203:121,-31,-22,0,0,0.50415 -17945,5203:120,-30,-22,0,0,0.502429 -17946,5202:229,-29,-22,0,0,0.506281 -17947,5202:228,-28,-22,0,0,0.509902 -17948,5202:227,-27,-22,0,0,0.50492 -17949,5202:226,-26,-22,0,0,0.502788 -17950,5202:225,-25,-22,0,0,0.502762 -17951,5202:124,-24,-22,0,0,0.500374 -17952,5202:123,-23,-22,0,0,0.497137 -17953,5202:122,-22,-22,0,0,0.487328 -17954,5202:121,-21,-22,0,0,0.481683 -17955,5202:120,-20,-22,0,0,0.476606 -17956,5201:229,-19,-22,0,0,0.482427 -17957,5201:228,-18,-22,0,0,0.483838 -17958,5201:227,-17,-22,0,0,0.478733 -17959,5201:226,-16,-22,0,0,0.480759 -17960,5201:225,-15,-22,0,0,0.479502 -17961,5201:124,-14,-22,0,0,0.482889 -17962,5201:123,-13,-22,0,0,0.480709 -17963,5201:122,-12,-22,0,0,0.483068 -17964,5201:121,-11,-22,0,0,0.47817 -17965,5201:120,-10,-22,0,0,0.479528 -17966,5200:229,-9,-22,0,0,0.483735 -17967,5200:228,-8,-22,0,0,0.483325 -17968,5200:227,-7,-22,0,0,0.48058 -17969,5200:226,-6,-22,0,0,0.477195 -17970,5200:225,-5,-22,0,0,0.472533 -17971,5200:124,-4,-22,0,0,0.466775 -17972,5200:123,-3,-22,0,0,0.463707 -17973,5200:122,-2,-22,0,0,0.461383 -17974,5200:121,-1,-22,0,0,0.452715 -17975,3200:121,0,-22,0,0,0.442933 -17976,3200:121,1,-22,0,0,0.440247 -17977,3200:122,2,-22,0,0,0.446029 -17978,3200:123,3,-22,0,0,0.444074 -17979,3200:124,4,-22,0,0,0.433928 -17980,3200:225,5,-22,0,0,0.437364 -17981,3200:226,6,-22,0,0,0.436125 -17982,3200:227,7,-22,0,0,0.433878 -17983,3200:228,8,-22,0,0,0.433726 -17984,3200:229,9,-22,0,0,0.431734 -17985,3201:120,10,-22,0,0,0.431633 -17986,3201:121,11,-22,0,0,0.434686 -17987,3201:122,12,-22,0,0,0.435266 -17988,3201:123,13,-22,0,0,0.437085 -17989,3201:124,14,-22,0,0,0.436908 -17990,3201:225,15,-22,0,0,0.434433 -17991,3201:226,16,-22,0,0,0.41356 -17992,3203:122,32,-22,0,0,0.572121 -17993,3203:123,33,-22,0,0,0.58395 -17994,3203:124,34,-22,0,0,0.562286 -17995,3203:225,35,-22,0,0,0.550341 -17996,3203:226,36,-22,0,0,0.559224 -17997,3203:227,37,-22,0,0,0.533766 -17998,3203:228,38,-22,0,0,0.538339 -17999,3203:229,39,-22,0,0,0.541988 -18000,3204:120,40,-22,0,0,0.539514 -18001,3204:121,41,-22,0,0,0.539386 -18002,3204:122,42,-22,0,0,0.537956 -18003,3204:123,43,-22,0,0,0.528289 -18004,3204:124,44,-22,0,0,0.532589 -18005,3204:225,45,-22,0,0,0.529749 -18006,3204:226,46,-22,0,0,0.511802 -18007,3204:227,47,-22,0,0,0.520243 -18008,3204:228,48,-22,0,0,0.522936 -18009,3204:229,49,-22,0,0,0.508772 -18010,3205:120,50,-22,0,0,0.518269 -18011,3205:121,51,-22,0,0,0.503738 -18012,3205:122,52,-22,0,0,0.507155 -18013,3205:123,53,-22,0,0,0.499346 -18014,3205:124,54,-22,0,0,0.495134 -18015,3205:225,55,-22,0,0,0.503277 -18016,3205:226,56,-22,0,0,0.505202 -18017,3205:227,57,-22,0,0,0.509851 -18018,3205:228,58,-22,0,0,0.50343 -18019,3205:229,59,-22,0,0,0.503636 -18020,3206:120,60,-22,0,0,0.499654 -18021,3206:121,61,-22,0,0,0.504175 -18022,3206:122,62,-22,0,0,0.505562 -18023,3206:123,63,-22,0,0,0.499115 -18024,3206:124,64,-22,0,0,0.508156 -18025,3206:225,65,-22,0,0,0.500425 -18026,3206:226,66,-22,0,0,0.502352 -18027,3206:227,67,-22,0,0,0.501632 -18028,3206:228,68,-22,0,0,0.50795 -18029,3206:229,69,-22,0,0,0.514933 -18030,3207:120,70,-22,0,0,0.517807 -18031,3207:121,71,-22,0,0,0.510158 -18032,3207:122,72,-22,0,0,0.504329 -18033,3207:124,74,-22,0,0,0.499988 -18034,3207:225,75,-22,0,0,0.506025 -18035,3207:226,76,-22,0,0,0.507386 -18036,3207:227,77,-22,0,0,0.506538 -18037,3207:228,78,-22,0,0,0.502506 -18038,3207:229,79,-22,0,0,0.50212 -18039,3208:120,80,-22,0,0,0.506641 -18040,3208:121,81,-22,0,0,0.494287 -18041,3208:122,82,-22,0,0,0.501915 -18042,3208:123,83,-22,0,0,0.49236 -18043,3208:124,84,-22,0,0,0.488149 -18044,3208:225,85,-22,0,0,0.478247 -18045,3208:226,86,-22,0,0,0.47512 -18046,3208:227,87,-22,0,0,0.467516 -18047,3208:228,88,-22,0,0,0.459724 -18048,3208:229,89,-22,0,0,0.459698 -18049,3209:120,90,-22,0,0,0.461459 -18050,3209:121,91,-22,0,0,0.455899 -18051,3209:122,92,-22,0,0,0.447069 -18052,3209:123,93,-22,0,0,0.446232 -18053,3209:124,94,-22,0,0,0.449814 -18054,3209:225,95,-22,0,0,0.441286 -18055,3209:226,96,-22,0,0,0.431306 -18056,3209:227,97,-22,0,0,0.441312 -18057,3209:228,98,-22,0,0,0.430373 -18058,3209:229,99,-22,0,0,0.437085 -18059,3210:120,100,-22,0,0,0.422959 -18060,3210:121,101,-22,0,0,0.418302 -18061,3210:122,102,-22,0,0,0.42924 -18062,3210:123,103,-22,0,0,0.43509 -18063,3210:124,104,-22,0,0,0.435064 -18064,3210:225,105,-22,0,0,0.428561 -18065,3210:226,106,-22,0,0,0.430071 -18066,3210:227,107,-22,0,0,0.427379 -18067,3210:228,108,-22,0,0,0.435772 -18068,3210:229,109,-22,0,0,0.444632 -18069,3211:120,110,-22,0,0,0.466468 -18070,3211:121,111,-22,0,0,0.471432 -18071,3211:122,112,-22,0,0,0.47389 -18072,3211:123,113,-22,0,0,0.494672 -18073,3211:124,114,-22,0,0,0.509466 -18074,3215:124,154,-22,0,0,0.578473 -18075,3215:225,155,-22,0,0,0.568395 -18076,3215:226,156,-22,0,0,0.552933 -18077,3215:227,157,-22,0,0,0.530005 -18078,3215:228,158,-22,0,0,0.53021 -18079,3215:229,159,-22,0,0,0.523551 -18080,3216:120,160,-22,0,0,0.517063 -18081,3216:121,161,-22,0,0,0.515447 -18082,3216:122,162,-22,0,0,0.515447 -18083,3216:123,163,-22,0,0,0.51519 -18084,3216:124,164,-22,0,0,0.513419 -18085,3216:225,165,-22,0,0,0.514497 -18086,3216:226,166,-22,0,0,0.503508 -18087,3216:227,167,-22,0,0,0.485403 -18088,3216:228,168,-22,0,0,0.477042 -18089,3216:229,169,-22,0,0,0.481811 -18090,3217:120,170,-22,0,0,0.48471 -18091,3217:121,171,-22,0,0,0.488766 -18092,3217:122,172,-22,0,0,0.490281 -18093,3217:123,173,-22,0,0,0.491154 -18094,3217:124,174,-22,0,0,0.488099 -18095,3217:225,175,-22,0,0,0.488099 -18096,3217:226,176,-22,0,0,0.488047 -18097,3217:227,177,-22,0,0,0.483992 -18098,3217:228,178,-22,0,0,0.49236 -18099,3217:229,179,-22,0,0,0.492874 -18100,3218:120,180,-22,0,0,0.482812 -18101,5218:110,-180,-21,0,0,0.495314 -18102,5217:219,-179,-21,0,0,0.497857 -18103,5217:218,-178,-21,0,0,0.495776 -18104,5217:217,-177,-21,0,0,0.497497 -18105,5217:216,-176,-21,0,0,0.500759 -18106,5217:215,-175,-21,0,0,0.503713 -18107,5217:114,-174,-21,0,0,0.490948 -18108,5217:113,-173,-21,0,0,0.49927 -18109,5217:112,-172,-21,0,0,0.495982 -18110,5217:111,-171,-21,0,0,0.494723 -18111,5217:110,-170,-21,0,0,0.495622 -18112,5216:219,-169,-21,0,0,0.487482 -18113,5216:218,-168,-21,0,0,0.500014 -18114,5216:217,-167,-21,0,0,0.495622 -18115,5216:216,-166,-21,0,0,0.485146 -18116,5216:215,-165,-21,0,0,0.487379 -18117,5216:114,-164,-21,0,0,0.482298 -18118,5216:113,-163,-21,0,0,0.481452 -18119,5216:112,-162,-21,0,0,0.487687 -18120,5216:111,-161,-21,0,0,0.490769 -18121,5216:110,-160,-21,0,0,0.492694 -18122,5215:219,-159,-21,0,0,0.502506 -18123,5215:218,-158,-21,0,0,0.494132 -18124,5215:217,-157,-21,0,0,0.500605 -18125,5215:216,-156,-21,0,0,0.499783 -18126,5215:215,-155,-21,0,0,0.500477 -18127,5215:114,-154,-21,0,0,0.508387 -18128,5215:113,-153,-21,0,0,0.512597 -18129,5215:112,-152,-21,0,0,0.514318 -18130,5215:111,-151,-21,0,0,0.515986 -18131,5215:110,-150,-21,0,0,0.513317 -18132,5214:219,-149,-21,0,0,0.513034 -18133,5214:218,-148,-21,0,0,0.520705 -18134,5214:217,-147,-21,0,0,0.515678 -18135,5214:216,-146,-21,0,0,0.512726 -18136,5214:215,-145,-21,0,0,0.508695 -18137,5214:114,-144,-21,0,0,0.515164 -18138,5214:113,-143,-21,0,0,0.506281 -18139,5214:112,-142,-21,0,0,0.509774 -18140,5214:111,-141,-21,0,0,0.505691 -18141,5214:110,-140,-21,0,0,0.503636 -18142,5213:219,-139,-21,0,0,0.500194 -18143,5213:218,-138,-21,0,0,0.500246 -18144,5213:217,-137,-21,0,0,0.496341 -18145,5213:216,-136,-21,0,0,0.496958 -18146,5213:215,-135,-21,0,0,0.498345 -18147,5213:114,-134,-21,0,0,0.503687 -18148,5213:113,-133,-21,0,0,0.506615 -18149,5213:112,-132,-21,0,0,0.503713 -18150,5213:111,-131,-21,0,0,0.495622 -18151,5213:110,-130,-21,0,0,0.511956 -18152,5212:219,-129,-21,0,0,0.496238 -18153,5212:218,-128,-21,0,0,0.506307 -18154,5212:217,-127,-21,0,0,0.495802 -18155,5212:216,-126,-21,0,0,0.49272 -18156,5212:215,-125,-21,0,0,0.488945 -18157,5212:114,-124,-21,0,0,0.481965 -18158,5212:113,-123,-21,0,0,0.477067 -18159,5212:112,-122,-21,0,0,0.480016 -18160,5212:111,-121,-21,0,0,0.475683 -18161,5212:110,-120,-21,0,0,0.482837 -18162,5211:219,-119,-21,0,0,0.478067 -18163,5211:218,-118,-21,0,0,0.481452 -18164,5211:217,-117,-21,0,0,0.479118 -18165,5211:216,-116,-21,0,0,0.48135 -18166,5211:215,-115,-21,0,0,0.484659 -18167,5211:114,-114,-21,0,0,0.487123 -18168,5211:113,-113,-21,0,0,0.48507 -18169,5211:112,-112,-21,0,0,0.479118 -18170,5211:111,-111,-21,0,0,0.482375 -18171,5211:110,-110,-21,0,0,0.482991 -18172,5210:219,-109,-21,0,0,0.48471 -18173,5210:218,-108,-21,0,0,0.485839 -18174,5210:217,-107,-21,0,0,0.489202 -18175,5210:216,-106,-21,0,0,0.485686 -18176,5210:215,-105,-21,0,0,0.485121 -18177,5210:114,-104,-21,0,0,0.486892 -18178,5210:113,-103,-21,0,0,0.484223 -18179,5210:112,-102,-21,0,0,0.479067 -18180,5210:111,-101,-21,0,0,0.475632 -18181,5210:110,-100,-21,0,0,0.474428 -18182,5209:219,-99,-21,0,0,0.472763 -18183,5209:218,-98,-21,0,0,0.471176 -18184,5209:217,-97,-21,0,0,0.465624 -18185,5209:216,-96,-21,0,0,0.458397 -18186,5209:215,-95,-21,0,0,0.455312 -18187,5209:114,-94,-21,0,0,0.451264 -18188,5209:113,-93,-21,0,0,0.446384 -18189,5209:112,-92,-21,0,0,0.440146 -18190,5209:111,-91,-21,0,0,0.434862 -18191,5209:110,-90,-21,0,0,0.429794 -18192,5208:219,-89,-21,0,0,0.426298 -18193,5208:218,-88,-21,0,0,0.424288 -18194,5208:217,-87,-21,0,0,0.422332 -18195,5208:216,-86,-21,0,0,0.420353 -18196,5208:215,-85,-21,0,0,0.418752 -18197,5208:114,-84,-21,0,0,0.419403 -18198,5208:113,-83,-21,0,0,0.419227 -18199,5208:112,-82,-21,0,0,0.418352 -18200,5208:111,-81,-21,0,0,0.415081 -18201,5208:110,-80,-21,0,0,0.40608 -18202,5207:219,-79,-21,0,0,0.406873 -18203,5207:218,-78,-21,0,0,0.404792 -18204,5207:217,-77,-21,0,0,0.399161 -18205,5207:216,-76,-21,0,0,0.394709 -18206,5207:215,-75,-21,0,0,0.384594 -18207,5207:114,-74,-21,0,0,0.377566 -18208,5207:113,-73,-21,0,0,0.367767 -18209,5207:112,-72,-21,0,0,0.382408 -18210,5207:111,-71,-21,0,0,0.346727 -18211,5204:218,-48,-21,0,0,0.580876 -18212,5204:217,-47,-21,0,0,0.594889 -18213,5204:216,-46,-21,0,0,0.566605 -18214,5204:215,-45,-21,0,0,0.564737 -18215,5204:114,-44,-21,0,0,0.558742 -18216,5204:113,-43,-21,0,0,0.561729 -18217,5204:112,-42,-21,0,0,0.551816 -18218,5204:111,-41,-21,0,0,0.547951 -18219,5204:110,-40,-21,0,0,0.549884 -18220,5203:219,-39,-21,0,0,0.548612 -18221,5203:218,-38,-21,0,0,0.543544 -18222,5203:217,-37,-21,0,0,0.543697 -18223,5203:216,-36,-21,0,0,0.535095 -18224,5203:215,-35,-21,0,0,0.522731 -18225,5203:114,-34,-21,0,0,0.526523 -18226,5203:113,-33,-21,0,0,0.532512 -18227,5203:112,-32,-21,0,0,0.53535 -18228,5203:111,-31,-21,0,0,0.530286 -18229,5203:110,-30,-21,0,0,0.532845 -18230,5202:219,-29,-21,0,0,0.533996 -18231,5202:218,-28,-21,0,0,0.531899 -18232,5202:217,-27,-21,0,0,0.532027 -18233,5202:216,-26,-21,0,0,0.53241 -18234,5202:215,-25,-21,0,0,0.527342 -18235,5202:114,-24,-21,0,0,0.521423 -18236,5202:113,-23,-21,0,0,0.514625 -18237,5202:112,-22,-21,0,0,0.508901 -18238,5202:111,-21,-21,0,0,0.504355 -18239,5202:110,-20,-21,0,0,0.502891 -18240,5201:219,-19,-21,0,0,0.506975 -18241,5201:218,-18,-21,0,0,0.511494 -18242,5201:217,-17,-21,0,0,0.510184 -18243,5201:216,-16,-21,0,0,0.515216 -18244,5201:215,-15,-21,0,0,0.513137 -18245,5201:114,-14,-21,0,0,0.514549 -18246,5201:113,-13,-21,0,0,0.511057 -18247,5201:112,-12,-21,0,0,0.506846 -18248,5201:111,-11,-21,0,0,0.508284 -18249,5201:110,-10,-21,0,0,0.508284 -18250,5200:219,-9,-21,0,0,0.50415 -18251,5200:218,-8,-21,0,0,0.500117 -18252,5200:217,-7,-21,0,0,0.496162 -18253,5200:216,-6,-21,0,0,0.492668 -18254,5200:215,-5,-21,0,0,0.489536 -18255,5200:114,-4,-21,0,0,0.486712 -18256,5200:113,-3,-21,0,0,0.482786 -18257,5200:112,-2,-21,0,0,0.47576 -18258,5200:111,-1,-21,0,0,0.471099 -18259,3200:111,0,-21,0,0,0.471559 -18260,3200:111,1,-21,0,0,0.469793 -18261,3200:112,2,-21,0,0,0.466545 -18262,3200:113,3,-21,0,0,0.456408 -18263,3200:114,4,-21,0,0,0.449687 -18264,3200:215,5,-21,0,0,0.446638 -18265,3200:216,6,-21,0,0,0.443237 -18266,3200:217,7,-21,0,0,0.440856 -18267,3200:218,8,-21,0,0,0.439894 -18268,3200:219,9,-21,0,0,0.437085 -18269,3201:110,10,-21,0,0,0.436327 -18270,3201:111,11,-21,0,0,0.43921 -18271,3201:112,12,-21,0,0,0.439463 -18272,3201:113,13,-21,0,0,0.441438 -18273,3201:114,14,-21,0,0,0.437085 -18274,3201:215,15,-21,0,0,0.39633 -18275,3203:113,33,-21,0,0,0.589132 -18276,3203:114,34,-21,0,0,0.59112 -18277,3203:215,35,-21,0,0,0.587763 -18278,3203:216,36,-21,0,0,0.556689 -18279,3203:217,37,-21,0,0,0.551994 -18280,3203:218,38,-21,0,0,0.547747 -18281,3203:219,39,-21,0,0,0.550443 -18282,3204:110,40,-21,0,0,0.553543 -18283,3204:111,41,-21,0,0,0.56365 -18284,3204:112,42,-21,0,0,0.566428 -18285,3204:113,43,-21,0,0,0.568042 -18286,3204:114,44,-21,0,0,0.568521 -18287,3204:215,45,-21,0,0,0.552705 -18288,3204:216,46,-21,0,0,0.545404 -18289,3204:217,47,-21,0,0,0.542167 -18290,3204:218,48,-21,0,0,0.544614 -18291,3204:219,49,-21,0,0,0.536014 -18292,3205:110,50,-21,0,0,0.536398 -18293,3205:111,51,-21,0,0,0.54181 -18294,3205:112,52,-21,0,0,0.531029 -18295,3205:113,53,-21,0,0,0.534277 -18296,3205:114,54,-21,0,0,0.534993 -18297,3205:215,55,-21,0,0,0.53131 -18298,3205:216,56,-21,0,0,0.527803 -18299,3205:217,57,-21,0,0,0.529211 -18300,3205:218,58,-21,0,0,0.533254 -18301,3205:219,59,-21,0,0,0.53218 -18302,3206:110,60,-21,0,0,0.524909 -18303,3206:111,61,-21,0,0,0.52496 -18304,3206:112,62,-21,0,0,0.532231 -18305,3206:113,63,-21,0,0,0.51991 -18306,3206:114,64,-21,0,0,0.527188 -18307,3206:215,65,-21,0,0,0.530466 -18308,3206:216,66,-21,0,0,0.523295 -18309,3206:217,67,-21,0,0,0.529365 -18310,3206:218,68,-21,0,0,0.533663 -18311,3206:219,69,-21,0,0,0.531847 -18312,3207:110,70,-21,0,0,0.522423 -18313,3207:111,71,-21,0,0,0.523115 -18314,3207:112,72,-21,0,0,0.5266 -18315,3207:114,74,-21,0,0,0.517473 -18316,3207:215,75,-21,0,0,0.518885 -18317,3207:216,76,-21,0,0,0.524038 -18318,3207:217,77,-21,0,0,0.522372 -18319,3207:218,78,-21,0,0,0.515216 -18320,3207:219,79,-21,0,0,0.518218 -18321,3208:110,80,-21,0,0,0.516832 -18322,3208:111,81,-21,0,0,0.508824 -18323,3208:112,82,-21,0,0,0.508952 -18649,3216:206,166,-20,0,0,0.53264 -18324,3208:113,83,-21,0,0,0.496367 -18325,3208:114,84,-21,0,0,0.50415 -18326,3208:215,85,-21,0,0,0.497985 -18327,3208:216,86,-21,0,0,0.49367 -18328,3208:217,87,-21,0,0,0.487534 -18329,3208:218,88,-21,0,0,0.481426 -18330,3208:219,89,-21,0,0,0.481016 -18331,3209:110,90,-21,0,0,0.479888 -18332,3209:111,91,-21,0,0,0.469486 -18333,3209:112,92,-21,0,0,0.463707 -18334,3209:113,93,-21,0,0,0.460515 -18335,3209:114,94,-21,0,0,0.460694 -18336,3209:215,95,-21,0,0,0.460106 -18337,3209:216,96,-21,0,0,0.453733 -18338,3209:217,97,-21,0,0,0.453962 -18339,3209:218,98,-21,0,0,0.448924 -18340,3209:219,99,-21,0,0,0.449077 -18341,3210:110,100,-21,0,0,0.464346 -18342,3210:111,101,-21,0,0,0.45437 -18343,3210:112,102,-21,0,0,0.443136 -18344,3210:113,103,-21,0,0,0.441387 -18345,3210:114,104,-21,0,0,0.444354 -18346,3210:215,105,-21,0,0,0.466595 -18347,3210:216,106,-21,0,0,0.470791 -18348,3210:217,107,-21,0,0,0.459086 -18349,3210:218,108,-21,0,0,0.472968 -18350,3210:219,109,-21,0,0,0.465675 -18351,3211:110,110,-21,0,0,0.472891 -18352,3211:111,111,-21,0,0,0.476504 -18353,3211:112,112,-21,0,0,0.519988 -18354,3211:113,113,-21,0,0,0.533254 -18355,3211:114,114,-21,0,0,0.518551 -18356,3215:114,154,-21,0,0,0.586244 -18357,3215:215,155,-21,0,0,0.563929 -18358,3215:216,156,-21,0,0,0.54232 -18359,3215:217,157,-21,0,0,0.534583 -18360,3215:218,158,-21,0,0,0.53154 -18361,3215:219,159,-21,0,0,0.527829 -18362,3216:110,160,-21,0,0,0.523935 -18363,3216:111,161,-21,0,0,0.521628 -18364,3216:112,162,-21,0,0,0.527803 -18365,3216:113,163,-21,0,0,0.527471 -18366,3216:114,164,-21,0,0,0.523269 -18367,3216:215,165,-21,0,0,0.519012 -18368,3216:216,166,-21,0,0,0.513624 -18369,3216:217,167,-21,0,0,0.508541 -18370,3216:218,168,-21,0,0,0.49891 -18371,3216:219,169,-21,0,0,0.508438 -18372,3217:110,170,-21,0,0,0.504227 -18373,3217:111,171,-21,0,0,0.500348 -18374,3217:112,172,-21,0,0,0.50397 -18375,3217:113,173,-21,0,0,0.508464 -18376,3217:114,174,-21,0,0,0.506127 -18377,3217:215,175,-21,0,0,0.503379 -18378,3217:216,176,-21,0,0,0.505126 -18379,3217:217,177,-21,0,0,0.505049 -18380,3217:218,178,-21,0,0,0.502557 -18381,3217:219,179,-21,0,0,0.496393 -18382,3218:110,180,-21,0,0,0.495314 -18383,5218:100,-180,-20,0,0,0.514805 -18384,5217:209,-179,-20,0,0,0.512213 -18385,5217:208,-178,-20,0,0,0.512213 -18386,5217:207,-177,-20,0,0,0.510184 -18387,5217:206,-176,-20,0,0,0.50397 -18388,5217:205,-175,-20,0,0,0.514625 -18389,5217:104,-174,-20,0,0,0.509388 -18390,5217:103,-173,-20,0,0,0.506846 -18391,5217:102,-172,-20,0,0,0.508593 -18392,5217:101,-171,-20,0,0,0.511596 -18393,5217:100,-170,-20,0,0,0.503611 -18394,5216:209,-169,-20,0,0,0.508028 -18395,5216:208,-168,-20,0,0,0.506512 -18396,5216:207,-167,-20,0,0,0.510005 -18397,5216:206,-166,-20,0,0,0.499012 -18398,5216:205,-165,-20,0,0,0.508515 -18399,5216:104,-164,-20,0,0,0.499988 -18400,5216:103,-163,-20,0,0,0.510878 -18401,5216:102,-162,-20,0,0,0.512213 -18402,5216:101,-161,-20,0,0,0.509363 -18403,5216:100,-160,-20,0,0,0.504715 -18404,5215:209,-159,-20,0,0,0.512726 -18405,5215:208,-158,-20,0,0,0.519731 -18406,5215:207,-157,-20,0,0,0.523115 -18407,5215:206,-156,-20,0,0,0.522448 -18408,5215:205,-155,-20,0,0,0.523448 -18409,5215:104,-154,-20,0,0,0.525908 -18410,5215:103,-153,-20,0,0,0.526548 -18411,5215:102,-152,-20,0,0,0.529544 -18412,5215:101,-151,-20,0,0,0.527803 -18413,5215:100,-150,-20,0,0,0.527957 -18414,5214:209,-149,-20,0,0,0.534558 -18415,5214:208,-148,-20,0,0,0.533203 -18416,5214:207,-147,-20,0,0,0.534149 -18417,5214:206,-146,-20,0,0,0.52852 -18418,5214:205,-145,-20,0,0,0.531847 -18419,5214:104,-144,-20,0,0,0.530414 -18420,5214:103,-143,-20,0,0,0.526241 -18421,5214:102,-142,-20,0,0,0.525882 -18422,5214:101,-141,-20,0,0,0.523397 -18423,5214:100,-140,-20,0,0,0.520628 -18424,5213:209,-139,-20,0,0,0.515062 -18425,5213:208,-138,-20,0,0,0.523628 -18426,5213:207,-137,-20,0,0,0.525652 -18427,5213:206,-136,-20,0,0,0.521398 -18428,5213:205,-135,-20,0,0,0.52209 -18429,5213:104,-134,-20,0,0,0.521962 -18430,5213:103,-133,-20,0,0,0.521936 -18431,5213:102,-132,-20,0,0,0.527086 -18432,5213:101,-131,-20,0,0,0.524064 -18433,5213:100,-130,-20,0,0,0.52232 -18434,5212:209,-129,-20,0,0,0.516601 -18435,5212:208,-128,-20,0,0,0.509106 -18436,5212:207,-127,-20,0,0,0.506435 -18437,5212:206,-126,-20,0,0,0.501427 -18438,5212:205,-125,-20,0,0,0.497985 -18439,5212:104,-124,-20,0,0,0.501787 -18440,5212:103,-123,-20,0,0,0.495648 -18441,5212:102,-122,-20,0,0,0.492849 -18442,5212:101,-121,-20,0,0,0.498088 -18443,5212:100,-120,-20,0,0,0.495031 -18444,5211:209,-119,-20,0,0,0.499526 -18445,5211:208,-118,-20,0,0,0.500811 -18446,5211:207,-117,-20,0,0,0.497754 -18447,5211:206,-116,-20,0,0,0.499809 -18448,5211:205,-115,-20,0,0,0.501453 -18449,5211:104,-114,-20,0,0,0.50397 -18450,5211:103,-113,-20,0,0,0.501863 -18451,5211:102,-112,-20,0,0,0.500888 -18452,5211:101,-111,-20,0,0,0.504971 -18453,5211:100,-110,-20,0,0,0.50492 -18454,5210:209,-109,-20,0,0,0.505614 -18455,5210:208,-108,-20,0,0,0.505614 -18456,5210:207,-107,-20,0,0,0.501581 -18457,5210:206,-106,-20,0,0,0.497574 -18458,5210:205,-105,-20,0,0,0.499937 -18459,5210:104,-104,-20,0,0,0.504201 -18460,5210:103,-103,-20,0,0,0.50266 -18461,5210:102,-102,-20,0,0,0.494621 -18462,5210:101,-101,-20,0,0,0.490126 -18463,5210:100,-100,-20,0,0,0.490717 -18464,5209:209,-99,-20,0,0,0.488406 -18465,5209:208,-98,-20,0,0,0.484428 -18466,5209:207,-97,-20,0,0,0.478144 -18467,5209:206,-96,-20,0,0,0.470151 -18468,5209:205,-95,-20,0,0,0.465803 -18469,5209:104,-94,-20,0,0,0.46174 -18470,5209:103,-93,-20,0,0,0.45358 -18471,5209:102,-92,-20,0,0,0.446181 -18472,5209:101,-91,-20,0,0,0.441691 -18473,5209:100,-90,-20,0,0,0.43711 -18474,5208:209,-89,-20,0,0,0.431784 -18475,5208:208,-88,-20,0,0,0.429039 -18476,5208:207,-87,-20,0,0,0.426172 -18477,5208:206,-86,-20,0,0,0.423209 -18478,5208:205,-85,-20,0,0,0.421605 -18479,5208:104,-84,-20,0,0,0.423837 -18480,5208:103,-83,-20,0,0,0.422683 -18481,5208:102,-82,-20,0,0,0.418152 -18482,5208:101,-81,-20,0,0,0.410772 -18483,5208:100,-80,-20,0,0,0.409131 -18484,5207:209,-79,-20,0,0,0.408014 -18485,5207:208,-78,-20,0,0,0.403802 -18486,5207:207,-77,-20,0,0,0.39385 -18487,5207:206,-76,-20,0,0,0.386687 -18488,5207:205,-75,-20,0,0,0.382941 -18489,5207:104,-74,-20,0,0,0.384691 -18490,5207:103,-73,-20,0,0,0.386054 -18491,5207:102,-72,-20,0,0,0.394808 -18492,5207:101,-71,-20,0,0,0.38299 -18493,5204:208,-48,-20,0,0,0.591046 -18494,5204:207,-47,-20,0,0,0.581576 -18495,5204:206,-46,-20,0,0,0.601015 -18496,5204:205,-45,-20,0,0,0.588858 -18497,5204:104,-44,-20,0,0,0.590996 -18498,5204:103,-43,-20,0,0,0.593948 -18499,5204:102,-42,-20,0,0,0.578272 -18500,5204:101,-41,-20,0,0,0.577144 -18501,5204:100,-40,-20,0,0,0.579074 -18502,5203:209,-39,-20,0,0,0.577395 -18503,5203:208,-38,-20,0,0,0.57594 -18504,5203:207,-37,-20,0,0,0.578222 -18505,5203:206,-36,-20,0,0,0.571845 -18506,5203:205,-35,-20,0,0,0.55859 -18507,5203:104,-34,-20,0,0,0.561856 -18508,5203:103,-33,-20,0,0,0.560894 -18509,5203:102,-32,-20,0,0,0.558818 -18510,5203:101,-31,-20,0,0,0.55466 -18511,5203:100,-30,-20,0,0,0.553848 -18512,5202:209,-29,-20,0,0,0.556943 -18513,5202:208,-28,-20,0,0,0.554812 -18514,5202:207,-27,-20,0,0,0.550672 -18515,5202:206,-26,-20,0,0,0.547543 -18516,5202:205,-25,-20,0,0,0.542855 -18517,5202:104,-24,-20,0,0,0.539998 -18518,5202:103,-23,-20,0,0,0.537164 -18519,5202:102,-22,-20,0,0,0.5365 -18520,5202:101,-21,-20,0,0,0.535452 -18521,5202:100,-20,-20,0,0,0.537062 -18522,5201:209,-19,-20,0,0,0.535555 -18523,5201:208,-18,-20,0,0,0.535069 -18524,5201:207,-17,-20,0,0,0.534685 -18525,5201:206,-16,-20,0,0,0.534021 -18526,5201:205,-15,-20,0,0,0.533126 -18527,5201:104,-14,-20,0,0,0.533331 -18528,5201:103,-13,-20,0,0,0.527982 -18529,5201:102,-12,-20,0,0,0.526958 -18530,5201:101,-11,-20,0,0,0.526933 -18531,5201:100,-10,-20,0,0,0.523781 -18532,5200:209,-9,-20,0,0,0.518756 -18533,5200:208,-8,-20,0,0,0.51478 -18534,5200:207,-7,-20,0,0,0.513445 -18535,5200:206,-6,-20,0,0,0.509928 -18536,5200:205,-5,-20,0,0,0.506461 -18537,5200:104,-4,-20,0,0,0.502634 -18538,5200:103,-3,-20,0,0,0.497728 -18539,5200:102,-2,-20,0,0,0.491821 -20488,3107:131,71,-13,0,0,0.60728 -18540,5200:101,-1,-20,0,0,0.487277 -18541,3200:101,0,-20,0,0,0.484813 -18542,3200:101,1,-20,0,0,0.481862 -18543,3200:102,2,-20,0,0,0.472507 -18544,3200:103,3,-20,0,0,0.46335 -18545,3200:104,4,-20,0,0,0.458066 -18546,3200:205,5,-20,0,0,0.453427 -18547,3200:206,6,-20,0,0,0.450374 -18548,3200:207,7,-20,0,0,0.446638 -18549,3200:208,8,-20,0,0,0.444683 -18550,3200:209,9,-20,0,0,0.444176 -18551,3201:100,10,-20,0,0,0.443289 -18552,3201:101,11,-20,0,0,0.44339 -18553,3201:102,12,-20,0,0,0.439767 -18554,3201:103,13,-20,0,0,0.435544 -18555,3201:104,14,-20,0,0,0.422332 -18556,3203:103,33,-20,0,0,0.592014 -18557,3203:104,34,-20,0,0,0.60728 -18558,3203:205,35,-20,0,0,0.610901 -18559,3203:206,36,-20,0,0,0.60652 -18560,3203:207,37,-20,0,0,0.58739 -18561,3203:208,38,-20,0,0,0.561704 -18562,3203:209,39,-20,0,0,0.568471 -18563,3204:100,40,-20,0,0,0.581651 -18564,3204:101,41,-20,0,0,0.581676 -18565,3204:102,42,-20,0,0,0.582501 -18566,3204:103,43,-20,0,0,0.59422 -18567,3204:104,44,-20,0,0,0.612146 -18568,3204:205,45,-20,0,0,0.579349 -18569,3204:206,46,-20,0,0,0.570158 -18570,3204:207,47,-20,0,0,0.567916 -18571,3204:208,48,-20,0,0,0.563828 -18572,3204:209,49,-20,0,0,0.569302 -18573,3205:100,50,-20,0,0,0.559046 -18574,3205:101,51,-20,0,0,0.558615 -18575,3205:102,52,-20,0,0,0.561755 -18576,3205:103,53,-20,0,0,0.554279 -18577,3205:104,54,-20,0,0,0.554279 -18578,3205:205,55,-20,0,0,0.557044 -18579,3205:206,56,-20,0,0,0.551104 -18580,3205:207,57,-20,0,0,0.546627 -18581,3205:208,58,-20,0,0,0.555751 -18582,3205:209,59,-20,0,0,0.558033 -18583,3206:100,60,-20,0,0,0.545022 -18584,3206:101,61,-20,0,0,0.542498 -18585,3206:102,62,-20,0,0,0.554051 -18586,3206:103,63,-20,0,0,0.553645 -18587,3206:104,64,-20,0,0,0.552527 -18588,3206:205,65,-20,0,0,0.550062 -18589,3206:206,66,-20,0,0,0.550951 -18590,3206:207,67,-20,0,0,0.547213 -18591,3206:208,68,-20,0,0,0.543799 -18592,3206:209,69,-20,0,0,0.543493 -18593,3207:100,70,-20,0,0,0.53862 -18594,3207:101,71,-20,0,0,0.533075 -18595,3207:102,72,-20,0,0,0.532027 -18596,3207:104,74,-20,0,0,0.528546 -18597,3207:205,75,-20,0,0,0.530849 -18598,3207:206,76,-20,0,0,0.525856 -18599,3207:207,77,-20,0,0,0.520141 -18600,3207:208,78,-20,0,0,0.521218 -18601,3207:209,79,-20,0,0,0.515703 -18602,3208:100,80,-20,0,0,0.513162 -18603,3208:101,81,-20,0,0,0.51365 -18604,3208:102,82,-20,0,0,0.506846 -18605,3208:103,83,-20,0,0,0.507976 -18606,3208:104,84,-20,0,0,0.509466 -18607,3208:205,85,-20,0,0,0.49629 -18608,3208:206,86,-20,0,0,0.496238 -18609,3208:207,87,-20,0,0,0.49082 -18610,3208:208,88,-20,0,0,0.48987 -18611,3208:209,89,-20,0,0,0.483376 -18612,3209:100,90,-20,0,0,0.479118 -18613,3209:101,91,-20,0,0,0.473941 -18614,3209:102,92,-20,0,0,0.476657 -18615,3209:103,93,-20,0,0,0.477657 -18616,3209:104,94,-20,0,0,0.475786 -18617,3209:205,95,-20,0,0,0.46634 -18618,3209:206,96,-20,0,0,0.467235 -18619,3209:207,97,-20,0,0,0.47594 -18620,3209:208,98,-20,0,0,0.458142 -18621,3209:209,99,-20,0,0,0.462175 -18622,3210:100,100,-20,0,0,0.481529 -18623,3210:101,101,-20,0,0,0.474838 -18624,3210:102,102,-20,0,0,0.466417 -18625,3210:103,103,-20,0,0,0.465087 -18626,3210:104,104,-20,0,0,0.480759 -18627,3210:205,105,-20,0,0,0.472814 -18628,3210:206,106,-20,0,0,0.47389 -18629,3210:207,107,-20,0,0,0.492335 -18630,3210:208,108,-20,0,0,0.488047 -18631,3210:209,109,-20,0,0,0.490563 -18632,3211:100,110,-20,0,0,0.501581 -18633,3211:101,111,-20,0,0,0.50908 -18634,3211:102,112,-20,0,0,0.531821 -18635,3211:103,113,-20,0,0,0.540382 -18636,3211:104,114,-20,0,0,0.565949 -18637,3215:104,154,-20,0,0,0.587689 -18638,3215:205,155,-20,0,0,0.568446 -18639,3215:206,156,-20,0,0,0.563575 -18640,3215:207,157,-20,0,0,0.544666 -18641,3215:208,158,-20,0,0,0.540202 -18642,3215:209,159,-20,0,0,0.538313 -18643,3216:100,160,-20,0,0,0.531847 -18644,3216:101,161,-20,0,0,0.531233 -18645,3216:102,162,-20,0,0,0.535606 -18646,3216:103,163,-20,0,0,0.529416 -18647,3216:104,164,-20,0,0,0.52765 -18648,3216:205,165,-20,0,0,0.530977 -18650,3216:207,167,-20,0,0,0.520013 -18651,3216:208,168,-20,0,0,0.514677 -18652,3216:209,169,-20,0,0,0.518654 -18653,3217:100,170,-20,0,0,0.519295 -18654,3217:101,171,-20,0,0,0.520731 -18655,3217:102,172,-20,0,0,0.513291 -18656,3217:103,173,-20,0,0,0.517551 -18657,3217:104,174,-20,0,0,0.515164 -18658,3217:205,175,-20,0,0,0.51714 -18659,3217:206,176,-20,0,0,0.513496 -18660,3217:207,177,-20,0,0,0.509876 -18661,3217:208,178,-20,0,0,0.510287 -18662,3217:209,179,-20,0,0,0.512957 -18663,3218:100,180,-20,0,0,0.514805 -18664,5118:390,-180,-19,0,0,0.526318 -18665,5117:499,-179,-19,0,0,0.530107 -18666,5117:498,-178,-19,0,0,0.535734 -18667,5117:497,-177,-19,0,0,0.529365 -18668,5117:496,-176,-19,0,0,0.530031 -18669,5117:495,-175,-19,0,0,0.525011 -18670,5117:394,-174,-19,0,0,0.524627 -18671,5117:393,-173,-19,0,0,0.527547 -18672,5117:392,-172,-19,0,0,0.529544 -18673,5117:391,-171,-19,0,0,0.517551 -18674,5117:390,-170,-19,0,0,0.523859 -18675,5116:499,-169,-19,0,0,0.525549 -18676,5116:498,-168,-19,0,0,0.526626 -18677,5116:497,-167,-19,0,0,0.523833 -18678,5116:496,-166,-19,0,0,0.518936 -18679,5116:495,-165,-19,0,0,0.533996 -18680,5116:394,-164,-19,0,0,0.527086 -18681,5116:393,-163,-19,0,0,0.518371 -18682,5116:392,-162,-19,0,0,0.529929 -18683,5116:391,-161,-19,0,0,0.527342 -18684,5116:390,-160,-19,0,0,0.53742 -18685,5115:499,-159,-19,0,0,0.5365 -18686,5115:498,-158,-19,0,0,0.532027 -18687,5115:497,-157,-19,0,0,0.53021 -18688,5115:496,-156,-19,0,0,0.540458 -18689,5115:495,-155,-19,0,0,0.539973 -18690,5115:394,-154,-19,0,0,0.542983 -18691,5115:393,-153,-19,0,0,0.543468 -18692,5115:392,-152,-19,0,0,0.53982 -18693,5115:391,-151,-19,0,0,0.551053 -18694,5115:390,-150,-19,0,0,0.547467 -18695,5114:499,-149,-19,0,0,0.546398 -18696,5114:498,-148,-19,0,0,0.546448 -18697,5114:497,-147,-19,0,0,0.548383 -18698,5114:496,-146,-19,0,0,0.551511 -18699,5114:495,-145,-19,0,0,0.546627 -18700,5114:394,-144,-19,0,0,0.545073 -18701,5114:393,-143,-19,0,0,0.541453 -18702,5114:392,-142,-19,0,0,0.540126 -18703,5114:391,-141,-19,0,0,0.541351 -18704,5114:390,-140,-19,0,0,0.54907 -18705,5113:499,-139,-19,0,0,0.545761 -18706,5113:498,-138,-19,0,0,0.545506 -18707,5113:497,-137,-19,0,0,0.549248 -18708,5113:496,-136,-19,0,0,0.545965 -18709,5113:495,-135,-19,0,0,0.552578 -18710,5113:394,-134,-19,0,0,0.543442 -18711,5113:393,-133,-19,0,0,0.552374 -18712,5113:392,-132,-19,0,0,0.534839 -18713,5113:391,-131,-19,0,0,0.544105 -18714,5113:390,-130,-19,0,0,0.539029 -18715,5112:499,-129,-19,0,0,0.533816 -18716,5112:498,-128,-19,0,0,0.531361 -18717,5112:497,-127,-19,0,0,0.52683 -18718,5112:496,-126,-19,0,0,0.524909 -18719,5112:495,-125,-19,0,0,0.523628 -18720,5112:394,-124,-19,0,0,0.516499 -18721,5112:393,-123,-19,0,0,0.51832 -18722,5112:392,-122,-19,0,0,0.520988 -18723,5112:391,-121,-19,0,0,0.520013 -18724,5112:390,-120,-19,0,0,0.517704 -18725,5111:499,-119,-19,0,0,0.518423 -18726,5111:498,-118,-19,0,0,0.516293 -18727,5111:497,-117,-19,0,0,0.514241 -18728,5111:496,-116,-19,0,0,0.519474 -18729,5111:495,-115,-19,0,0,0.521833 -18730,5111:394,-114,-19,0,0,0.523192 -18731,5111:393,-113,-19,0,0,0.521398 -18732,5111:392,-112,-19,0,0,0.522115 -18733,5111:391,-111,-19,0,0,0.521244 -18734,5111:390,-110,-19,0,0,0.517551 -18735,5110:499,-109,-19,0,0,0.518243 -18736,5110:498,-108,-19,0,0,0.51832 -18737,5110:497,-107,-19,0,0,0.513624 -18738,5110:496,-106,-19,0,0,0.512546 -18739,5110:495,-105,-19,0,0,0.517576 -18740,5110:394,-104,-19,0,0,0.514061 -18741,5110:393,-103,-19,0,0,0.510596 -18742,5110:392,-102,-19,0,0,0.510672 -18743,5110:391,-101,-19,0,0,0.507052 -18744,5110:390,-100,-19,0,0,0.503328 -18745,5109:499,-99,-19,0,0,0.498576 -18746,5109:498,-98,-19,0,0,0.489947 -18747,5109:497,-97,-19,0,0,0.483915 -18748,5109:496,-96,-19,0,0,0.475504 -18749,5109:495,-95,-19,0,0,0.467695 -18750,5109:394,-94,-19,0,0,0.46003 -18751,5109:393,-93,-19,0,0,0.453224 -18752,5109:392,-92,-19,0,0,0.446333 -18753,5109:391,-91,-19,0,0,0.441717 -18754,5109:390,-90,-19,0,0,0.438223 -18755,5108:499,-89,-19,0,0,0.435468 -18756,5108:498,-88,-19,0,0,0.431936 -18757,5108:497,-87,-19,0,0,0.429215 -18758,5108:496,-86,-19,0,0,0.424615 -18759,5108:495,-85,-19,0,0,0.423009 -18760,5108:394,-84,-19,0,0,0.422157 -18761,5108:393,-83,-19,0,0,0.418002 -18762,5108:392,-82,-19,0,0,0.413161 -18763,5108:391,-81,-19,0,0,0.412514 -18764,5108:390,-80,-19,0,0,0.409504 -18765,5107:499,-79,-19,0,0,0.406824 -18766,5107:498,-78,-19,0,0,0.400344 -18767,5107:497,-77,-19,0,0,0.394906 -18768,5107:496,-76,-19,0,0,0.394145 -18769,5107:495,-75,-19,0,0,0.39211 -18770,5107:394,-74,-19,0,0,0.391939 -18771,5107:393,-73,-19,0,0,0.398594 -18772,5107:392,-72,-19,0,0,0.407468 -18773,5107:391,-71,-19,0,0,0.394832 -18774,5104:497,-47,-19,0,0,0.577871 -18775,5104:496,-46,-19,0,0,0.554762 -18776,5104:495,-45,-19,0,0,0.604802 -18777,5104:394,-44,-19,0,0,0.611511 -18778,5104:393,-43,-19,0,0,0.608236 -18779,5104:392,-42,-19,0,0,0.600275 -18780,5104:391,-41,-19,0,0,0.603378 -18781,5104:390,-40,-19,0,0,0.6063 -18782,5103:499,-39,-19,0,0,0.602812 -18783,5103:498,-38,-19,0,0,0.599708 -18784,5103:497,-37,-19,0,0,0.598894 -18785,5103:496,-36,-19,0,0,0.596349 -18786,5103:495,-35,-19,0,0,0.588609 -18787,5103:394,-34,-19,0,0,0.583326 -18788,5103:393,-33,-19,0,0,0.582726 -18789,5103:392,-32,-19,0,0,0.58355 -18790,5103:391,-31,-19,0,0,0.581951 -18791,5103:390,-30,-19,0,0,0.58035 -18792,5102:499,-29,-19,0,0,0.574836 -18793,5102:498,-28,-19,0,0,0.568874 -18794,5102:497,-27,-19,0,0,0.565015 -18795,5102:496,-26,-19,0,0,0.563145 -18796,5102:495,-25,-19,0,0,0.560565 -18797,5102:394,-24,-19,0,0,0.561982 -18798,5102:393,-23,-19,0,0,0.557247 -18799,5102:392,-22,-19,0,0,0.55745 -18800,5102:391,-21,-19,0,0,0.555954 -18801,5102:390,-20,-19,0,0,0.552908 -18802,5101:499,-19,-19,0,0,0.552984 -18803,5101:498,-18,-19,0,0,0.552629 -18804,5101:497,-17,-19,0,0,0.549146 -18805,5101:496,-16,-19,0,0,0.551918 -18806,5101:495,-15,-19,0,0,0.551663 -18807,5101:394,-14,-19,0,0,0.550367 -18808,5101:393,-13,-19,0,0,0.549324 -18809,5101:392,-12,-19,0,0,0.545328 -18810,5101:391,-11,-19,0,0,0.541529 -18811,5101:390,-10,-19,0,0,0.54028 -18812,5100:499,-9,-19,0,0,0.539437 -18813,5100:498,-8,-19,0,0,0.537522 -18814,5100:497,-7,-19,0,0,0.532896 -18815,5100:496,-6,-19,0,0,0.524217 -18816,5100:495,-5,-19,0,0,0.517166 -18817,5100:394,-4,-19,0,0,0.513522 -18818,5100:393,-3,-19,0,0,0.508181 -18819,5100:392,-2,-19,0,0,0.503302 -18820,5100:391,-1,-19,0,0,0.494723 -18821,3100:391,0,-19,0,0,0.487662 -18822,3100:391,1,-19,0,0,0.481272 -18823,3100:392,2,-19,0,0,0.472123 -18824,3100:393,3,-19,0,0,0.46404 -18825,3100:394,4,-19,0,0,0.45855 -18826,3100:495,5,-19,0,0,0.45465 -18827,3100:496,6,-19,0,0,0.452638 -18828,3100:497,7,-19,0,0,0.452486 -18829,3100:498,8,-19,0,0,0.44801 -18830,3100:499,9,-19,0,0,0.449306 -18831,3101:390,10,-19,0,0,0.446815 -18832,3101:391,11,-19,0,0,0.450119 -18833,3101:392,12,-19,0,0,0.450374 -18834,3101:393,13,-19,0,0,0.446942 -18835,3101:394,14,-19,0,0,0.417727 -18836,3103:495,35,-19,0,0,0.606055 -18837,3103:496,36,-19,0,0,0.618274 -18838,3103:497,37,-19,0,0,0.605932 -18839,3103:498,38,-19,0,0,0.604213 -18840,3103:499,39,-19,0,0,0.594369 -18841,3104:390,40,-19,0,0,0.606079 -18842,3104:391,41,-19,0,0,0.596794 -18843,3104:392,42,-19,0,0,0.607893 -18844,3104:393,43,-19,0,0,0.639965 -18845,3104:497,47,-19,0,0,0.575036 -18846,3104:498,48,-19,0,0,0.602443 -18847,3104:499,49,-19,0,0,0.590599 -18848,3105:390,50,-19,0,0,0.58953 -18849,3105:391,51,-19,0,0,0.571593 -18850,3105:392,52,-19,0,0,0.579925 -18851,3105:393,53,-19,0,0,0.57363 -18852,3105:394,54,-19,0,0,0.564181 -18853,3105:495,55,-19,0,0,0.565015 -18854,3105:496,56,-19,0,0,0.572976 -18855,3105:497,57,-19,0,0,0.568143 -18856,3105:498,58,-19,0,0,0.569882 -18857,3105:499,59,-19,0,0,0.576492 -18858,3106:390,60,-19,0,0,0.551333 -18859,3106:391,61,-19,0,0,0.563094 -18860,3106:392,62,-19,0,0,0.566756 -18861,3106:393,63,-19,0,0,0.56312 -18862,3106:394,64,-19,0,0,0.558362 -18863,3106:495,65,-19,0,0,0.562108 -18864,3106:496,66,-19,0,0,0.552578 -18865,3106:497,67,-19,0,0,0.554102 -18866,3106:498,68,-19,0,0,0.551155 -18867,3106:499,69,-19,0,0,0.546474 -18868,3107:390,70,-19,0,0,0.53982 -18869,3107:391,71,-19,0,0,0.535964 -18870,3107:392,72,-19,0,0,0.540509 -18871,3107:394,74,-19,0,0,0.538365 -18872,3107:495,75,-19,0,0,0.530056 -18873,3107:496,76,-19,0,0,0.529135 -18874,3107:497,77,-19,0,0,0.525652 -18875,3107:498,78,-19,0,0,0.523064 -18876,3107:499,79,-19,0,0,0.516524 -18877,3108:390,80,-19,0,0,0.516011 -18878,3108:391,81,-19,0,0,0.519552 -18879,3108:392,82,-19,0,0,0.519654 -18880,3108:393,83,-19,0,0,0.512161 -18881,3108:394,84,-19,0,0,0.510929 -18882,3108:495,85,-19,0,0,0.509517 -18883,3108:496,86,-19,0,0,0.505074 -18884,3108:497,87,-19,0,0,0.502249 -18885,3108:498,88,-19,0,0,0.493388 -18886,3108:499,89,-19,0,0,0.489074 -18887,3109:390,90,-19,0,0,0.491898 -18888,3109:391,91,-19,0,0,0.48987 -18889,3109:392,92,-19,0,0,0.48602 -18890,3109:393,93,-19,0,0,0.48643 -18891,3109:394,94,-19,0,0,0.490614 -18892,3109:495,95,-19,0,0,0.480631 -18893,3109:496,96,-19,0,0,0.48058 -18894,3109:497,97,-19,0,0,0.488817 -18895,3109:498,98,-19,0,0,0.492438 -18896,3109:499,99,-19,0,0,0.490178 -18897,3110:390,100,-19,0,0,0.481606 -18898,3110:391,101,-19,0,0,0.4794 -18899,3110:392,102,-19,0,0,0.476504 -18900,3110:393,103,-19,0,0,0.493233 -18901,3110:394,104,-19,0,0,0.491719 -18902,3110:495,105,-19,0,0,0.48276 -18903,3110:496,106,-19,0,0,0.480144 -18904,3110:497,107,-19,0,0,0.498011 -18905,3110:498,108,-19,0,0,0.503302 -18906,3110:499,109,-19,0,0,0.502454 -18907,3111:390,110,-19,0,0,0.507565 -18908,3111:391,111,-19,0,0,0.534353 -18909,3111:392,112,-19,0,0,0.542218 -18910,3111:393,113,-19,0,0,0.559781 -18911,3115:393,153,-19,0,0,0.594716 -18912,3115:394,154,-19,0,0,0.595161 -18913,3115:495,155,-19,0,0,0.572273 -18914,3115:496,156,-19,0,0,0.565646 -18915,3115:497,157,-19,0,0,0.569428 -18916,3115:498,158,-19,0,0,0.566832 -18917,3115:499,159,-19,0,0,0.554762 -18918,3116:390,160,-19,0,0,0.542014 -18919,3116:391,161,-19,0,0,0.544818 -18920,3116:392,162,-19,0,0,0.544029 -18921,3116:393,163,-19,0,0,0.551409 -18922,3116:394,164,-19,0,0,0.554381 -18923,3116:495,165,-19,0,0,0.545302 -18924,3116:496,166,-19,0,0,0.535043 -18925,3116:497,167,-19,0,0,0.53627 -18926,3116:498,168,-19,0,0,0.539514 -18927,3116:499,169,-19,0,0,0.542805 -18928,3117:390,170,-19,0,0,0.533663 -18929,3117:391,171,-19,0,0,0.533918 -18930,3117:392,172,-19,0,0,0.537292 -18931,3117:393,173,-19,0,0,0.530696 -18932,3117:394,174,-19,0,0,0.524806 -18933,3117:495,175,-19,0,0,0.527266 -18934,3117:496,176,-19,0,0,0.527317 -18935,3117:497,177,-19,0,0,0.522474 -18936,3117:498,178,-19,0,0,0.52537 -18937,3117:499,179,-19,0,0,0.524627 -18938,3118:390,180,-19,0,0,0.526318 -18939,5118:380,-180,-18,0,0,0.546474 -18940,5117:489,-179,-18,0,0,0.541427 -18941,5117:488,-178,-18,0,0,0.547976 -18942,5117:487,-177,-18,0,0,0.539718 -18943,5117:486,-176,-18,0,0,0.539565 -18944,5117:485,-175,-18,0,0,0.53742 -18945,5117:384,-174,-18,0,0,0.531438 -18946,5117:383,-173,-18,0,0,0.534788 -18947,5117:382,-172,-18,0,0,0.535632 -18948,5117:381,-171,-18,0,0,0.536014 -18949,5117:380,-170,-18,0,0,0.53131 -18950,5116:489,-169,-18,0,0,0.534558 -18951,5116:488,-168,-18,0,0,0.537369 -18952,5116:487,-167,-18,0,0,0.534328 -18953,5116:486,-166,-18,0,0,0.539054 -18954,5116:485,-165,-18,0,0,0.543442 -18955,5116:384,-164,-18,0,0,0.54907 -18956,5116:383,-163,-18,0,0,0.540738 -18957,5116:382,-162,-18,0,0,0.540841 -18958,5116:381,-161,-18,0,0,0.54209 -18959,5116:380,-160,-18,0,0,0.549579 -18960,5115:489,-159,-18,0,0,0.549579 -18961,5115:488,-158,-18,0,0,0.548357 -18962,5115:487,-157,-18,0,0,0.550316 -18963,5115:486,-156,-18,0,0,0.548103 -18964,5115:485,-155,-18,0,0,0.549782 -18965,5115:384,-154,-18,0,0,0.55499 -18966,5115:383,-153,-18,0,0,0.550825 -18967,5115:382,-152,-18,0,0,0.560489 -18968,5115:381,-151,-18,0,0,0.564813 -18969,5115:380,-150,-18,0,0,0.563499 -18970,5114:489,-149,-18,0,0,0.561223 -18971,5114:488,-148,-18,0,0,0.566227 -18972,5114:487,-147,-18,0,0,0.569655 -18973,5114:486,-146,-18,0,0,0.563701 -21244,5108:103,-83,-10,0,0,0.47179 -18974,5114:485,-145,-18,0,0,0.557678 -18975,5114:384,-144,-18,0,0,0.561173 -18976,5114:383,-143,-18,0,0,0.559299 -18977,5114:382,-142,-18,0,0,0.566478 -18978,5114:381,-141,-18,0,0,0.563448 -18979,5114:380,-140,-18,0,0,0.572775 -18980,5113:489,-139,-18,0,0,0.5727 -18981,5113:488,-138,-18,0,0,0.57099 -18982,5113:487,-137,-18,0,0,0.572574 -18983,5113:486,-136,-18,0,0,0.573806 -18984,5113:485,-135,-18,0,0,0.570158 -18985,5113:384,-134,-18,0,0,0.571166 -18986,5113:383,-133,-18,0,0,0.570687 -18987,5113:382,-132,-18,0,0,0.557374 -18988,5113:381,-131,-18,0,0,0.561856 -18989,5113:380,-130,-18,0,0,0.550799 -18990,5112:489,-129,-18,0,0,0.552553 -18991,5112:488,-128,-18,0,0,0.550774 -18992,5112:487,-127,-18,0,0,0.545837 -18993,5112:486,-126,-18,0,0,0.541249 -18994,5112:485,-125,-18,0,0,0.542498 -18995,5112:384,-124,-18,0,0,0.538186 -18996,5112:383,-123,-18,0,0,0.542779 -18997,5112:382,-122,-18,0,0,0.542014 -18998,5112:381,-121,-18,0,0,0.542907 -18999,5112:380,-120,-18,0,0,0.537726 -19000,5111:489,-119,-18,0,0,0.536756 -19001,5111:488,-118,-18,0,0,0.537726 -19002,5111:487,-117,-18,0,0,0.538467 -19003,5111:486,-116,-18,0,0,0.53862 -19004,5111:485,-115,-18,0,0,0.541249 -19005,5111:384,-114,-18,0,0,0.543314 -19006,5111:383,-113,-18,0,0,0.542269 -19007,5111:382,-112,-18,0,0,0.542192 -19008,5111:381,-111,-18,0,0,0.537981 -19009,5111:380,-110,-18,0,0,0.531873 -19010,5110:489,-109,-18,0,0,0.530286 -19011,5110:488,-108,-18,0,0,0.531924 -19012,5110:487,-107,-18,0,0,0.530158 -19013,5110:486,-106,-18,0,0,0.528008 -19014,5110:485,-105,-18,0,0,0.524883 -19015,5110:384,-104,-18,0,0,0.522295 -19016,5110:383,-103,-18,0,0,0.51991 -19017,5110:382,-102,-18,0,0,0.515472 -19018,5110:381,-101,-18,0,0,0.510031 -19019,5110:380,-100,-18,0,0,0.504253 -19020,5109:489,-99,-18,0,0,0.49629 -19021,5109:488,-98,-18,0,0,0.49064 -19022,5109:487,-97,-18,0,0,0.482427 -19023,5109:486,-96,-18,0,0,0.475888 -19024,5109:485,-95,-18,0,0,0.470356 -19025,5109:384,-94,-18,0,0,0.466212 -19026,5109:383,-93,-18,0,0,0.460566 -19027,5109:382,-92,-18,0,0,0.452358 -19028,5109:381,-91,-18,0,0,0.444912 -19029,5109:380,-90,-18,0,0,0.438628 -19030,5108:489,-89,-18,0,0,0.43653 -19031,5108:488,-88,-18,0,0,0.433751 -19032,5108:487,-87,-18,0,0,0.430096 -19033,5108:486,-86,-18,0,0,0.426499 -19034,5108:485,-85,-18,0,0,0.421605 -19035,5108:384,-84,-18,0,0,0.418352 -19036,5108:383,-83,-18,0,0,0.41331 -19037,5108:382,-82,-18,0,0,0.406824 -19038,5108:381,-81,-18,0,0,0.401405 -19039,5108:380,-80,-18,0,0,0.398939 -19040,5107:489,-79,-18,0,0,0.395937 -19041,5107:488,-78,-18,0,0,0.394464 -19042,5107:487,-77,-18,0,0,0.394587 -19043,5107:486,-76,-18,0,0,0.395029 -19044,5107:485,-75,-18,0,0,0.395225 -19045,5107:384,-74,-18,0,0,0.397388 -19046,5107:383,-73,-18,0,0,0.403456 -19047,5107:382,-72,-18,0,0,0.419327 -19048,5107:381,-71,-18,0,0,0.411219 -19049,5104:384,-44,-18,0,0,0.56269 -19050,5104:383,-43,-18,0,0,0.604361 -19051,5104:382,-42,-18,0,0,0.606201 -19052,5104:381,-41,-18,0,0,0.623354 -19053,5104:380,-40,-18,0,0,0.623812 -19054,5103:489,-39,-18,0,0,0.620575 -19055,5103:488,-38,-18,0,0,0.615579 -19056,5103:487,-37,-18,0,0,0.611731 -19057,5103:486,-36,-18,0,0,0.605736 -19058,5103:485,-35,-18,0,0,0.603353 -19059,5103:384,-34,-18,0,0,0.603451 -19060,5103:383,-33,-18,0,0,0.607403 -19061,5103:382,-32,-18,0,0,0.603451 -19062,5103:381,-31,-18,0,0,0.601408 -19063,5103:380,-30,-18,0,0,0.597857 -19064,5102:489,-29,-18,0,0,0.587091 -19065,5102:488,-28,-18,0,0,0.57995 -19066,5102:487,-27,-18,0,0,0.577746 -19067,5102:486,-26,-18,0,0,0.578874 -19068,5102:485,-25,-18,0,0,0.577922 -19069,5102:384,-24,-18,0,0,0.576442 -19070,5102:383,-23,-18,0,0,0.574434 -19071,5102:382,-22,-18,0,0,0.57461 -19072,5102:381,-21,-18,0,0,0.576743 -19073,5102:380,-20,-18,0,0,0.576642 -19074,5101:489,-19,-18,0,0,0.574383 -19075,5101:488,-18,-18,0,0,0.576015 -19076,5101:487,-17,-18,0,0,0.574308 -19077,5101:486,-16,-18,0,0,0.57192 -19078,5101:485,-15,-18,0,0,0.568345 -19079,5101:384,-14,-18,0,0,0.563094 -19080,5101:383,-13,-18,0,0,0.558083 -19081,5101:382,-12,-18,0,0,0.555802 -19082,5101:381,-11,-18,0,0,0.552578 -19083,5101:380,-10,-18,0,0,0.547365 -19084,5100:489,-9,-18,0,0,0.540738 -19085,5100:488,-8,-18,0,0,0.534251 -19086,5100:487,-7,-18,0,0,0.526676 -19087,5100:486,-6,-18,0,0,0.518218 -19088,5100:485,-5,-18,0,0,0.513265 -19089,5100:384,-4,-18,0,0,0.505896 -19090,5100:383,-3,-18,0,0,0.498653 -19091,5100:382,-2,-18,0,0,0.49308 -19092,5100:381,-1,-18,0,0,0.486584 -19093,3100:381,0,-18,0,0,0.480247 -19094,3100:381,1,-18,0,0,0.474607 -19095,3100:382,2,-18,0,0,0.469973 -19096,3100:383,3,-18,0,0,0.464601 -19097,3100:384,4,-18,0,0,0.460668 -19098,3100:485,5,-18,0,0,0.460438 -19099,3100:486,6,-18,0,0,0.45804 -19100,3100:487,7,-18,0,0,0.456255 -19101,3100:488,8,-18,0,0,0.454446 -19102,3100:489,9,-18,0,0,0.455108 -19103,3101:380,10,-18,0,0,0.455949 -19104,3101:381,11,-18,0,0,0.455261 -19105,3101:382,12,-18,0,0,0.450196 -19106,3101:383,13,-18,0,0,0.443897 -19107,3101:384,14,-18,0,0,0.385566 -19108,3103:486,36,-18,0,0,0.632308 -19109,3103:487,37,-18,0,0,0.615968 -19110,3103:488,38,-18,0,0,0.613681 -19111,3103:489,39,-18,0,0,0.611438 -19112,3104:380,40,-18,0,0,0.617693 -19113,3104:381,41,-18,0,0,0.625763 -19114,3104:382,42,-18,0,0,0.648068 -19115,3104:383,43,-18,0,0,0.666784 -19116,3104:488,48,-18,0,0,0.61217 -19117,3104:489,49,-18,0,0,0.597956 -19118,3105:380,50,-18,0,0,0.598845 -19119,3105:381,51,-18,0,0,0.593526 -19120,3105:382,52,-18,0,0,0.590151 -19121,3105:383,53,-18,0,0,0.581176 -19122,3105:384,54,-18,0,0,0.576166 -19123,3105:485,55,-18,0,0,0.580376 -19124,3105:486,56,-18,0,0,0.5833 -19125,3105:487,57,-18,0,0,0.585322 -19126,3105:488,58,-18,0,0,0.585048 -19127,3105:489,59,-18,0,0,0.585097 -19128,3106:380,60,-18,0,0,0.57985 -19129,3106:381,61,-18,0,0,0.570788 -19130,3106:382,62,-18,0,0,0.569604 -19131,3106:383,63,-18,0,0,0.574509 -19132,3106:384,64,-18,0,0,0.570536 -19133,3106:485,65,-18,0,0,0.567639 -19134,3106:486,66,-18,0,0,0.561071 -19135,3106:487,67,-18,0,0,0.556588 -19136,3106:488,68,-18,0,0,0.553315 -19137,3106:489,69,-18,0,0,0.547874 -19138,3107:380,70,-18,0,0,0.549884 -19139,3107:381,71,-18,0,0,0.545684 -19140,3107:382,72,-18,0,0,0.542754 -19141,3107:384,74,-18,0,0,0.535912 -19142,3107:485,75,-18,0,0,0.533024 -19143,3107:486,76,-18,0,0,0.538211 -19144,3107:487,77,-18,0,0,0.533816 -19145,3107:488,78,-18,0,0,0.530312 -19146,3107:489,79,-18,0,0,0.530261 -19147,3108:380,80,-18,0,0,0.525882 -19148,3108:381,81,-18,0,0,0.527291 -19149,3108:382,82,-18,0,0,0.518551 -19150,3108:383,83,-18,0,0,0.523755 -19151,3108:384,84,-18,0,0,0.520833 -19152,3108:485,85,-18,0,0,0.513753 -19153,3108:486,86,-18,0,0,0.516396 -19154,3108:487,87,-18,0,0,0.509235 -19155,3108:488,88,-18,0,0,0.507745 -19156,3108:489,89,-18,0,0,0.509671 -19157,3109:380,90,-18,0,0,0.5117 -19158,3109:381,91,-18,0,0,0.506076 -19159,3109:382,92,-18,0,0,0.506051 -19160,3109:383,93,-18,0,0,0.510904 -19161,3109:384,94,-18,0,0,0.508079 -19162,3109:485,95,-18,0,0,0.501761 -19163,3109:486,96,-18,0,0,0.503251 -19164,3109:487,97,-18,0,0,0.496958 -19165,3109:488,98,-18,0,0,0.499398 -19166,3109:489,99,-18,0,0,0.491976 -19167,3110:380,100,-18,0,0,0.497677 -19168,3110:381,101,-18,0,0,0.491411 -19169,3110:382,102,-18,0,0,0.497651 -19170,3110:383,103,-18,0,0,0.507411 -19171,3110:384,104,-18,0,0,0.501478 -19172,3110:485,105,-18,0,0,0.500322 -19173,3110:486,106,-18,0,0,0.507771 -19174,3110:487,107,-18,0,0,0.517371 -19175,3110:488,108,-18,0,0,0.521577 -19176,3110:489,109,-18,0,0,0.529851 -19177,3111:380,110,-18,0,0,0.529288 -19178,3111:381,111,-18,0,0,0.532589 -19179,3111:382,112,-18,0,0,0.557956 -19180,3111:383,113,-18,0,0,0.570032 -19181,3111:384,114,-18,0,0,0.565318 -19182,3115:382,152,-18,0,0,0.591641 -19183,3115:383,153,-18,0,0,0.588734 -19184,3115:384,154,-18,0,0,0.594245 -19185,3115:485,155,-18,0,0,0.588336 -19186,3115:486,156,-18,0,0,0.568546 -19187,3115:487,157,-18,0,0,0.574509 -19188,3115:488,158,-18,0,0,0.571694 -19189,3115:489,159,-18,0,0,0.560565 -19190,3116:380,160,-18,0,0,0.558438 -19191,3116:381,161,-18,0,0,0.568848 -19192,3116:382,162,-18,0,0,0.564661 -19193,3116:383,163,-18,0,0,0.561729 -19194,3116:384,164,-18,0,0,0.566277 -19195,3116:485,165,-18,0,0,0.558007 -19196,3116:486,166,-18,0,0,0.552451 -19197,3116:487,167,-18,0,0,0.551562 -19198,3116:488,168,-18,0,0,0.54996 -19199,3116:489,169,-18,0,0,0.556918 -19200,3117:380,170,-18,0,0,0.54851 -19201,3117:381,171,-18,0,0,0.543238 -19202,3117:382,172,-18,0,0,0.543111 -19203,3117:383,173,-18,0,0,0.542907 -19204,3117:384,174,-18,0,0,0.535708 -19205,3117:485,175,-18,0,0,0.534737 -19206,3117:486,176,-18,0,0,0.543391 -19207,3117:487,177,-18,0,0,0.541988 -19208,3117:488,178,-18,0,0,0.535606 -19209,3117:489,179,-18,0,0,0.542957 -19210,3118:380,180,-18,0,0,0.546474 -19211,5118:370,-180,-17,0,0,0.544283 -19212,5117:479,-179,-17,0,0,0.546882 -19213,5117:478,-178,-17,0,0,0.54968 -19214,5117:477,-177,-17,0,0,0.546499 -19215,5117:476,-176,-17,0,0,0.548154 -19216,5117:475,-175,-17,0,0,0.542422 -19217,5117:374,-174,-17,0,0,0.541912 -19218,5117:373,-173,-17,0,0,0.542192 -19219,5117:372,-172,-17,0,0,0.553492 -19220,5117:371,-171,-17,0,0,0.545761 -19221,5117:370,-170,-17,0,0,0.55085 -19222,5116:479,-169,-17,0,0,0.560869 -19223,5116:478,-168,-17,0,0,0.552248 -19224,5116:477,-167,-17,0,0,0.555396 -19225,5116:476,-166,-17,0,0,0.546677 -19226,5116:475,-165,-17,0,0,0.551333 -19227,5116:374,-164,-17,0,0,0.55897 -19228,5116:373,-163,-17,0,0,0.554838 -19229,5116:372,-162,-17,0,0,0.556866 -19230,5116:371,-161,-17,0,0,0.554736 -19231,5116:370,-160,-17,0,0,0.559932 -19232,5115:479,-159,-17,0,0,0.560691 -19233,5115:478,-158,-17,0,0,0.564838 -19234,5115:477,-157,-17,0,0,0.564054 -19235,5115:476,-156,-17,0,0,0.566403 -19236,5115:475,-155,-17,0,0,0.561957 -19237,5115:374,-154,-17,0,0,0.569353 -19238,5115:373,-153,-17,0,0,0.574359 -19239,5115:372,-152,-17,0,0,0.579449 -19240,5115:371,-151,-17,0,0,0.588012 -19241,5115:370,-150,-17,0,0,0.58035 -19242,5114:479,-149,-17,0,0,0.587016 -19243,5114:478,-148,-17,0,0,0.585247 -19244,5114:477,-147,-17,0,0,0.58395 -19245,5114:476,-146,-17,0,0,0.584298 -19246,5114:475,-145,-17,0,0,0.58597 -19247,5114:374,-144,-17,0,0,0.58345 -19248,5114:373,-143,-17,0,0,0.585023 -19249,5114:372,-142,-17,0,0,0.585247 -19250,5114:371,-141,-17,0,0,0.587838 -19251,5114:370,-140,-17,0,0,0.59107 -19252,5113:479,-139,-17,0,0,0.589331 -19253,5113:478,-138,-17,0,0,0.588385 -19254,5113:477,-137,-17,0,0,0.590325 -19255,5113:476,-136,-17,0,0,0.591244 -19256,5113:475,-135,-17,0,0,0.589927 -19257,5113:374,-134,-17,0,0,0.587962 -19258,5113:373,-133,-17,0,0,0.583375 -19259,5113:372,-132,-17,0,0,0.579474 -19260,5113:371,-131,-17,0,0,0.575062 -19261,5113:370,-130,-17,0,0,0.575213 -19262,5112:479,-129,-17,0,0,0.573479 -19263,5112:478,-128,-17,0,0,0.570008 -19264,5112:477,-127,-17,0,0,0.564938 -19265,5112:476,-126,-17,0,0,0.564408 -19266,5112:475,-125,-17,0,0,0.561527 -19267,5112:374,-124,-17,0,0,0.560768 -19268,5112:373,-123,-17,0,0,0.559071 -19269,5112:372,-122,-17,0,0,0.559122 -19270,5112:371,-121,-17,0,0,0.55674 -19271,5112:370,-120,-17,0,0,0.55306 -19272,5111:479,-119,-17,0,0,0.555167 -19273,5111:478,-118,-17,0,0,0.558007 -19274,5111:477,-117,-17,0,0,0.559704 -19275,5111:476,-116,-17,0,0,0.562563 -19276,5111:475,-115,-17,0,0,0.566277 -19277,5111:374,-114,-17,0,0,0.5636 -19278,5111:373,-113,-17,0,0,0.557906 -19279,5111:372,-112,-17,0,0,0.556689 -19280,5111:371,-111,-17,0,0,0.553822 -19281,5111:370,-110,-17,0,0,0.549935 -19282,5110:479,-109,-17,0,0,0.548816 -19283,5110:478,-108,-17,0,0,0.545863 -19284,5110:477,-107,-17,0,0,0.543187 -19285,5110:476,-106,-17,0,0,0.539233 -19286,5110:475,-105,-17,0,0,0.531361 -19287,5110:374,-104,-17,0,0,0.523423 -19288,5110:373,-103,-17,0,0,0.515318 -19289,5110:372,-102,-17,0,0,0.508567 -19290,5110:371,-101,-17,0,0,0.503302 -19291,5110:370,-100,-17,0,0,0.498987 -19292,5109:479,-99,-17,0,0,0.495314 -19293,5109:478,-98,-17,0,0,0.489408 -19294,5109:477,-97,-17,0,0,0.483735 -19295,5109:476,-96,-17,0,0,0.477631 -19296,5109:475,-95,-17,0,0,0.468053 -19297,5109:374,-94,-17,0,0,0.458703 -19298,5109:373,-93,-17,0,0,0.453936 -19299,5109:372,-92,-17,0,0,0.449204 -19300,5109:371,-91,-17,0,0,0.441641 -19301,5109:370,-90,-17,0,0,0.437591 -19302,5108:479,-89,-17,0,0,0.435367 -19303,5108:478,-88,-17,0,0,0.429643 -19304,5108:477,-87,-17,0,0,0.424062 -19305,5108:476,-86,-17,0,0,0.421405 -19306,5108:475,-85,-17,0,0,0.417177 -19307,5108:374,-84,-17,0,0,0.412239 -19308,5108:373,-83,-17,0,0,0.407543 -19309,5108:372,-82,-17,0,0,0.404916 -19310,5108:371,-81,-17,0,0,0.404346 -19311,5108:370,-80,-17,0,0,0.404594 -19312,5107:479,-79,-17,0,0,0.401627 -19313,5107:478,-78,-17,0,0,0.396994 -19314,5107:477,-77,-17,0,0,0.395077 -19315,5107:476,-76,-17,0,0,0.395298 -19316,5107:475,-75,-17,0,0,0.399826 -19317,5107:374,-74,-17,0,0,0.406799 -19318,5107:373,-73,-17,0,0,0.424966 -19319,5107:372,-72,-17,0,0,0.438881 -19320,5107:371,-71,-17,0,0,0.447349 -19321,5104:371,-41,-17,0,0,0.622944 -19322,5104:370,-40,-17,0,0,0.628118 -19323,5103:479,-39,-17,0,0,0.628502 -19324,5103:478,-38,-17,0,0,0.623209 -19325,5103:477,-37,-17,0,0,0.619462 -19326,5103:476,-36,-17,0,0,0.617037 -19327,5103:475,-35,-17,0,0,0.617328 -19328,5103:374,-34,-17,0,0,0.617596 -19329,5103:373,-33,-17,0,0,0.618468 -19330,5103:372,-32,-17,0,0,0.619293 -19331,5103:371,-31,-17,0,0,0.617838 -19332,5103:370,-30,-17,0,0,0.614972 -19333,5102:479,-29,-17,0,0,0.604704 -19334,5102:478,-28,-17,0,0,0.588435 -19335,5102:477,-27,-17,0,0,0.582726 -19336,5102:476,-26,-17,0,0,0.584224 -19337,5102:475,-25,-17,0,0,0.586667 -19338,5102:374,-24,-17,0,0,0.586792 -19339,5102:373,-23,-17,0,0,0.586867 -19340,5102:372,-22,-17,0,0,0.587365 -19341,5102:371,-21,-17,0,0,0.585695 -19342,5102:370,-20,-17,0,0,0.58325 -19343,5101:479,-19,-17,0,0,0.581426 -19344,5101:478,-18,-17,0,0,0.580301 -19345,5101:477,-17,-17,0,0,0.578197 -19346,5101:476,-16,-17,0,0,0.573881 -19347,5101:475,-15,-17,0,0,0.568345 -19348,5101:374,-14,-17,0,0,0.563044 -19349,5101:373,-13,-17,0,0,0.556157 -19350,5101:372,-12,-17,0,0,0.550265 -19351,5101:371,-11,-17,0,0,0.543875 -19352,5101:370,-10,-17,0,0,0.535989 -19353,5100:479,-9,-17,0,0,0.52934 -19354,5100:478,-8,-17,0,0,0.524012 -19355,5100:477,-7,-17,0,0,0.515986 -19356,5100:476,-6,-17,0,0,0.508515 -19357,5100:475,-5,-17,0,0,0.50207 -19358,5100:374,-4,-17,0,0,0.497266 -19359,5100:373,-3,-17,0,0,0.492104 -19360,5100:372,-2,-17,0,0,0.483248 -19361,5100:371,-1,-17,0,0,0.478836 -19362,3100:371,0,-17,0,0,0.475376 -19363,3100:371,1,-17,0,0,0.472148 -19364,3100:372,2,-17,0,0,0.467414 -19365,3100:373,3,-17,0,0,0.46386 -19366,3100:374,4,-17,0,0,0.462736 -19367,3100:475,5,-17,0,0,0.461817 -19368,3100:476,6,-17,0,0,0.460974 -19369,3100:477,7,-17,0,0,0.458856 -19370,3100:478,8,-17,0,0,0.458881 -19371,3100:479,9,-17,0,0,0.461459 -19372,3101:370,10,-17,0,0,0.460004 -19373,3101:371,11,-17,0,0,0.455414 -19374,3101:372,12,-17,0,0,0.451162 -19375,3101:373,13,-17,0,0,0.445267 -19376,3103:476,36,-17,0,0,0.639823 -19377,3103:477,37,-17,0,0,0.623498 -19378,3103:478,38,-17,0,0,0.630299 -19379,3103:479,39,-17,0,0,0.62545 -19380,3104:370,40,-17,0,0,0.64006 -19381,3104:371,41,-17,0,0,0.656364 -19382,3104:372,42,-17,0,0,0.67362 -19383,3104:373,43,-17,0,0,0.671402 -19384,3104:478,48,-17,0,0,0.619849 -19385,3104:479,49,-17,0,0,0.609753 -19386,3105:370,50,-17,0,0,0.600966 -19387,3105:371,51,-17,0,0,0.593923 -19388,3105:372,52,-17,0,0,0.590673 -19389,3105:373,53,-17,0,0,0.593155 -19390,3105:374,54,-17,0,0,0.58953 -19391,3105:475,55,-17,0,0,0.585771 -19392,3105:476,56,-17,0,0,0.587863 -19393,3105:477,57,-17,0,0,0.598647 -19394,3105:478,58,-17,0,0,0.595582 -19395,3105:479,59,-17,0,0,0.592733 -19396,3106:370,60,-17,0,0,0.589604 -19397,3106:371,61,-17,0,0,0.584972 -19398,3106:372,62,-17,0,0,0.578197 -19399,3106:373,63,-17,0,0,0.575313 -19400,3106:374,64,-17,0,0,0.569075 -19401,3106:475,65,-17,0,0,0.567942 -19402,3106:476,66,-17,0,0,0.567185 -19403,3106:477,67,-17,0,0,0.561779 -19404,3106:478,68,-17,0,0,0.560565 -19405,3106:479,69,-17,0,0,0.556715 -19406,3107:370,70,-17,0,0,0.550698 -19407,3107:371,71,-17,0,0,0.558843 -19408,3107:372,72,-17,0,0,0.552527 -19409,3107:374,74,-17,0,0,0.549655 -19410,3107:475,75,-17,0,0,0.54767 -19411,3107:476,76,-17,0,0,0.54181 -19412,3107:477,77,-17,0,0,0.541479 -19413,3107:478,78,-17,0,0,0.536551 -19414,3107:479,79,-17,0,0,0.538467 -19415,3108:370,80,-17,0,0,0.536654 -19416,3108:371,81,-17,0,0,0.534021 -19417,3108:372,82,-17,0,0,0.526805 -19418,3108:373,83,-17,0,0,0.537343 -19419,3108:374,84,-17,0,0,0.53021 -19420,3108:475,85,-17,0,0,0.528853 -19421,3108:476,86,-17,0,0,0.531029 -19422,3108:477,87,-17,0,0,0.532845 -19423,3108:478,88,-17,0,0,0.521987 -19424,3108:479,89,-17,0,0,0.535555 -19425,3109:370,90,-17,0,0,0.538416 -19426,3109:371,91,-17,0,0,0.515113 -19427,3109:372,92,-17,0,0,0.532154 -19428,3109:373,93,-17,0,0,0.519885 -19429,3109:374,94,-17,0,0,0.5298 -19430,3109:475,95,-17,0,0,0.527291 -19431,3109:476,96,-17,0,0,0.52209 -19432,3109:477,97,-17,0,0,0.528776 -19433,3109:478,98,-17,0,0,0.527547 -19434,3109:479,99,-17,0,0,0.509054 -19435,3110:370,100,-17,0,0,0.510749 -19436,3110:371,101,-17,0,0,0.522987 -19437,3110:372,102,-17,0,0,0.528213 -19438,3110:373,103,-17,0,0,0.523961 -19439,3110:374,104,-17,0,0,0.524243 -19440,3110:475,105,-17,0,0,0.534558 -19441,3110:476,106,-17,0,0,0.53535 -19442,3110:477,107,-17,0,0,0.52893 -19443,3110:478,108,-17,0,0,0.53108 -19444,3110:479,109,-17,0,0,0.540636 -19445,3111:370,110,-17,0,0,0.548103 -19446,3111:371,111,-17,0,0,0.56183 -19447,3111:372,112,-17,0,0,0.561501 -19448,3111:373,113,-17,0,0,0.573982 -19449,3111:374,114,-17,0,0,0.581376 -19450,3115:370,150,-17,0,0,0.624968 -19451,3115:371,151,-17,0,0,0.60136 -19452,3115:372,152,-17,0,0,0.610901 -19453,3115:373,153,-17,0,0,0.601408 -19454,3115:374,154,-17,0,0,0.597585 -19455,3115:475,155,-17,0,0,0.586394 -19456,3115:476,156,-17,0,0,0.5833 -19457,3115:477,157,-17,0,0,0.57368 -19458,3115:478,158,-17,0,0,0.580951 -19459,3115:479,159,-17,0,0,0.571291 -19460,3116:370,160,-17,0,0,0.568521 -19461,3116:371,161,-17,0,0,0.580801 -19462,3116:372,162,-17,0,0,0.576642 -19463,3116:373,163,-17,0,0,0.580225 -19464,3116:374,164,-17,0,0,0.5801 -19465,3116:475,165,-17,0,0,0.572876 -19466,3116:476,166,-17,0,0,0.545226 -19467,3116:477,167,-17,0,0,0.550799 -19468,3116:478,168,-17,0,0,0.562286 -19469,3116:479,169,-17,0,0,0.565368 -19470,3117:370,170,-17,0,0,0.559628 -19471,3117:371,171,-17,0,0,0.551383 -19472,3117:372,172,-17,0,0,0.556309 -19473,3117:373,173,-17,0,0,0.552806 -19474,3117:374,174,-17,0,0,0.55024 -19475,3117:475,175,-17,0,0,0.544895 -19476,3117:476,176,-17,0,0,0.551231 -19477,3117:477,177,-17,0,0,0.543824 -19478,3117:478,178,-17,0,0,0.539616 -19479,3117:479,179,-17,0,0,0.554736 -19480,3118:370,180,-17,0,0,0.544283 -19481,5118:360,-180,-16,0,0,0.559046 -19482,5117:469,-179,-16,0,0,0.556918 -19483,5117:468,-178,-16,0,0,0.559476 -19484,5117:467,-177,-16,0,0,0.565519 -19485,5117:466,-176,-16,0,0,0.563347 -19486,5117:465,-175,-16,0,0,0.563802 -19487,5117:364,-174,-16,0,0,0.555954 -19488,5117:363,-173,-16,0,0,0.563575 -19489,5117:362,-172,-16,0,0,0.562867 -19490,5117:361,-171,-16,0,0,0.558083 -19491,5117:360,-170,-16,0,0,0.569932 -19492,5116:469,-169,-16,0,0,0.566983 -19493,5116:468,-168,-16,0,0,0.56615 -19494,5116:467,-167,-16,0,0,0.564282 -19495,5116:466,-166,-16,0,0,0.569227 -19496,5116:465,-165,-16,0,0,0.565116 -19497,5116:364,-164,-16,0,0,0.568647 -19498,5116:363,-163,-16,0,0,0.572474 -19499,5116:362,-162,-16,0,0,0.571392 -19500,5116:361,-161,-16,0,0,0.573504 -19501,5116:360,-160,-16,0,0,0.579249 -19502,5115:469,-159,-16,0,0,0.582101 -19503,5115:468,-158,-16,0,0,0.5829 -19504,5115:467,-157,-16,0,0,0.586493 -19505,5115:466,-156,-16,0,0,0.589405 -19506,5115:465,-155,-16,0,0,0.593824 -19507,5115:364,-154,-16,0,0,0.595384 -19508,5115:363,-153,-16,0,0,0.600103 -19509,5115:362,-152,-16,0,0,0.60163 -19510,5115:361,-151,-16,0,0,0.603131 -19511,5115:360,-150,-16,0,0,0.605319 -19512,5114:469,-149,-16,0,0,0.605171 -19513,5114:468,-148,-16,0,0,0.607035 -19514,5114:467,-147,-16,0,0,0.609654 -19515,5114:466,-146,-16,0,0,0.609801 -19516,5114:465,-145,-16,0,0,0.610144 -19517,5114:364,-144,-16,0,0,0.609067 -19518,5114:363,-143,-16,0,0,0.60804 -19519,5114:362,-142,-16,0,0,0.608897 -19520,5114:361,-141,-16,0,0,0.609581 -19521,5114:360,-140,-16,0,0,0.609703 -19522,5113:469,-139,-16,0,0,0.609215 -19523,5113:468,-138,-16,0,0,0.608138 -19524,5113:467,-137,-16,0,0,0.606398 -19525,5113:466,-136,-16,0,0,0.605932 -19526,5113:465,-135,-16,0,0,0.604754 -19527,5113:364,-134,-16,0,0,0.603205 -19528,5113:363,-133,-16,0,0,0.600866 -19529,5113:362,-132,-16,0,0,0.596843 -19530,5113:361,-131,-16,0,0,0.594963 -19531,5113:360,-130,-16,0,0,0.59184 -19532,5112:469,-129,-16,0,0,0.58856 -19533,5112:468,-128,-16,0,0,0.586743 -19534,5112:467,-127,-16,0,0,0.587539 -19535,5112:466,-126,-16,0,0,0.586543 -19536,5112:465,-125,-16,0,0,0.583125 -19537,5112:364,-124,-16,0,0,0.585421 -19538,5112:363,-123,-16,0,0,0.584623 -19539,5112:362,-122,-16,0,0,0.585197 -19540,5112:361,-121,-16,0,0,0.5833 -19541,5112:360,-120,-16,0,0,0.580476 -19542,5111:469,-119,-16,0,0,0.581926 -19543,5111:468,-118,-16,0,0,0.582426 -19544,5111:467,-117,-16,0,0,0.583326 -19545,5111:466,-116,-16,0,0,0.582376 -19546,5111:465,-115,-16,0,0,0.578874 -19547,5111:364,-114,-16,0,0,0.575589 -19548,5111:363,-113,-16,0,0,0.572499 -19549,5111:362,-112,-16,0,0,0.566781 -19550,5111:361,-111,-16,0,0,0.562867 -19551,5111:360,-110,-16,0,0,0.559603 -19552,5110:469,-109,-16,0,0,0.555421 -19553,5110:468,-108,-16,0,0,0.550672 -19554,5110:467,-107,-16,0,0,0.546398 -19555,5110:466,-106,-16,0,0,0.540636 -19556,5110:465,-105,-16,0,0,0.534737 -19557,5110:364,-104,-16,0,0,0.52724 -19558,5110:363,-103,-16,0,0,0.519038 -19559,5110:362,-102,-16,0,0,0.513522 -19560,5110:361,-101,-16,0,0,0.508079 -19561,5110:360,-100,-16,0,0,0.503277 -19562,5109:469,-99,-16,0,0,0.49873 -19563,5109:468,-98,-16,0,0,0.494313 -19564,5109:467,-97,-16,0,0,0.487354 -19565,5109:466,-96,-16,0,0,0.476939 -19566,5109:465,-95,-16,0,0,0.470433 -19567,5109:364,-94,-16,0,0,0.466186 -19568,5109:363,-93,-16,0,0,0.459392 -19569,5109:362,-92,-16,0,0,0.451111 -19570,5109:361,-91,-16,0,0,0.444962 -19571,5109:360,-90,-16,0,0,0.437414 -19572,5108:469,-89,-16,0,0,0.432465 -19573,5108:468,-88,-16,0,0,0.42914 -19574,5108:467,-87,-16,0,0,0.424715 -19575,5108:466,-86,-16,0,0,0.418577 -19576,5108:465,-85,-16,0,0,0.410871 -19577,5108:364,-84,-16,0,0,0.40556 -19578,5108:363,-83,-16,0,0,0.403554 -19579,5108:362,-82,-16,0,0,0.400245 -19580,5108:361,-81,-16,0,0,0.400566 -19581,5108:360,-80,-16,0,0,0.398471 -19582,5107:469,-79,-16,0,0,0.397117 -19583,5107:468,-78,-16,0,0,0.397412 -19584,5107:467,-77,-16,0,0,0.40106 -19585,5107:466,-76,-16,0,0,0.403209 -19586,5107:465,-75,-16,0,0,0.410423 -19587,5107:364,-74,-16,0,0,0.42459 -19588,5107:363,-73,-16,0,0,0.437085 -19589,5107:362,-72,-16,0,0,0.456357 -19590,5107:361,-71,-16,0,0,0.446536 -19591,5104:360,-40,-16,0,0,0.636002 -19592,5103:469,-39,-16,0,0,0.632594 -19593,5103:468,-38,-16,0,0,0.629964 -19594,5103:467,-37,-16,0,0,0.623981 -19595,5103:466,-36,-16,0,0,0.623932 -19596,5103:465,-35,-16,0,0,0.626797 -19597,5103:364,-34,-16,0,0,0.627086 -19598,5103:363,-33,-16,0,0,0.625017 -19599,5103:362,-32,-16,0,0,0.623836 -19600,5103:361,-31,-16,0,0,0.620624 -19601,5103:360,-30,-16,0,0,0.615239 -19602,5102:469,-29,-16,0,0,0.609336 -19603,5102:468,-28,-16,0,0,0.595062 -19604,5102:467,-27,-16,0,0,0.583924 -19605,5102:466,-26,-16,0,0,0.583125 -19606,5102:465,-25,-16,0,0,0.584748 -19607,5102:364,-24,-16,0,0,0.585845 -19608,5102:363,-23,-16,0,0,0.585895 -19609,5102:362,-22,-16,0,0,0.584673 -19610,5102:361,-21,-16,0,0,0.582976 -19611,5102:360,-20,-16,0,0,0.581551 -19612,5101:469,-19,-16,0,0,0.578422 -19613,5101:468,-18,-16,0,0,0.572172 -19614,5101:467,-17,-16,0,0,0.567437 -19615,5101:466,-16,-16,0,0,0.562842 -19616,5101:465,-15,-16,0,0,0.558134 -19617,5101:364,-14,-16,0,0,0.553239 -19618,5101:363,-13,-16,0,0,0.546754 -19619,5101:362,-12,-16,0,0,0.538493 -19620,5101:361,-11,-16,0,0,0.529468 -19621,5101:360,-10,-16,0,0,0.523755 -19622,5100:469,-9,-16,0,0,0.517628 -19623,5100:468,-8,-16,0,0,0.512161 -19624,5100:467,-7,-16,0,0,0.505999 -19625,5100:466,-6,-16,0,0,0.499295 -19626,5100:465,-5,-16,0,0,0.491976 -19627,5100:364,-4,-16,0,0,0.486609 -19628,5100:363,-3,-16,0,0,0.484736 -19629,5100:362,-2,-16,0,0,0.480144 -19630,5100:361,-1,-16,0,0,0.477119 -19631,3100:361,0,-16,0,0,0.475581 -19632,3100:361,1,-16,0,0,0.473557 -19633,3100:362,2,-16,0,0,0.470101 -19634,3100:363,3,-16,0,0,0.467746 -19635,3100:364,4,-16,0,0,0.466058 -19636,3100:465,5,-16,0,0,0.465369 -19637,3100:466,6,-16,0,0,0.464831 -19638,3100:467,7,-16,0,0,0.464218 -19639,3100:468,8,-16,0,0,0.464269 -19640,3100:469,9,-16,0,0,0.463732 -19641,3101:360,10,-16,0,0,0.46054 -19642,3101:361,11,-16,0,0,0.461332 -19643,3101:362,12,-16,0,0,0.453172 -19644,3101:363,13,-16,0,0,0.403505 -19645,3103:465,35,-16,0,0,0.644686 -19646,3103:466,36,-16,0,0,0.646285 -19647,3103:467,37,-16,0,0,0.644168 -19648,3103:468,38,-16,0,0,0.627086 -19649,3103:469,39,-16,0,0,0.643956 -19650,3104:360,40,-16,0,0,0.655112 -19651,3104:361,41,-16,0,0,0.66156 -19652,3104:362,42,-16,0,0,0.679152 -19653,3104:363,43,-16,0,0,0.685521 -19654,3104:469,49,-16,0,0,0.619656 -19655,3105:360,50,-16,0,0,0.608481 -19656,3105:361,51,-16,0,0,0.606839 -19657,3105:362,52,-16,0,0,0.603476 -19658,3105:363,53,-16,0,0,0.601187 -19659,3105:364,54,-16,0,0,0.603795 -19660,3105:465,55,-16,0,0,0.601729 -19661,3105:466,56,-16,0,0,0.603353 -19662,3105:467,57,-16,0,0,0.603107 -19663,3105:468,58,-16,0,0,0.599017 -19664,3105:469,59,-16,0,0,0.593923 -19665,3106:360,60,-16,0,0,0.593576 -19666,3106:361,61,-16,0,0,0.591369 -19667,3106:362,62,-16,0,0,0.582476 -19668,3106:363,63,-16,0,0,0.5835 -19669,3106:364,64,-16,0,0,0.577345 -19670,3106:465,65,-16,0,0,0.571794 -19671,3106:466,66,-16,0,0,0.575162 -19672,3106:467,67,-16,0,0,0.576116 -19673,3106:468,68,-16,0,0,0.572273 -19674,3106:469,69,-16,0,0,0.567387 -19675,3107:360,70,-16,0,0,0.568219 -19676,3107:361,71,-16,0,0,0.566227 -19677,3107:362,72,-16,0,0,0.558615 -19678,3107:364,74,-16,0,0,0.557652 -19679,3107:465,75,-16,0,0,0.555497 -19680,3107:466,76,-16,0,0,0.553162 -19681,3107:467,77,-16,0,0,0.55235 -19682,3107:468,78,-16,0,0,0.552171 -19683,3107:469,79,-16,0,0,0.54464 -19684,3108:360,80,-16,0,0,0.556411 -19685,3108:361,81,-16,0,0,0.557069 -19686,3108:362,82,-16,0,0,0.552806 -19687,3108:363,83,-16,0,0,0.53742 -19688,3108:364,84,-16,0,0,0.553975 -19689,3108:465,85,-16,0,0,0.552832 -19690,3108:466,86,-16,0,0,0.540892 -19691,3108:467,87,-16,0,0,0.550977 -19692,3108:468,88,-16,0,0,0.545532 -19693,3108:469,89,-16,0,0,0.547314 -19694,3109:360,90,-16,0,0,0.55334 -19695,3109:361,91,-16,0,0,0.542957 -19696,3109:362,92,-16,0,0,0.551257 -19697,3109:363,93,-16,0,0,0.53982 -19698,3109:364,94,-16,0,0,0.540764 -19699,3109:465,95,-16,0,0,0.540815 -19700,3109:466,96,-16,0,0,0.525856 -19701,3109:467,97,-16,0,0,0.541325 -19702,3109:468,98,-16,0,0,0.527342 -19703,3109:469,99,-16,0,0,0.523551 -19704,3110:360,100,-16,0,0,0.521654 -19705,3110:361,101,-16,0,0,0.53673 -19706,3110:362,102,-16,0,0,0.532333 -19707,3110:363,103,-16,0,0,0.543289 -19708,3110:364,104,-16,0,0,0.55118 -19709,3110:465,105,-16,0,0,0.541121 -19710,3110:466,106,-16,0,0,0.543773 -19711,3110:467,107,-16,0,0,0.545761 -19712,3110:468,108,-16,0,0,0.554406 -19713,3110:469,109,-16,0,0,0.560362 -19714,3111:360,110,-16,0,0,0.566554 -19715,3111:361,111,-16,0,0,0.572976 -19716,3111:362,112,-16,0,0,0.571266 -19717,3111:363,113,-16,0,0,0.582551 -19718,3111:364,114,-16,0,0,0.595954 -19719,3111:465,115,-16,0,0,0.603083 -19720,3111:466,116,-16,0,0,0.611657 -19721,3111:467,117,-16,0,0,0.6314 -19722,3111:468,118,-16,0,0,0.65611 -19723,3115:360,150,-16,0,0,0.60706 -19724,3115:361,151,-16,0,0,0.611853 -19725,3115:362,152,-16,0,0,0.60603 -19726,3115:363,153,-16,0,0,0.605686 -19727,3115:364,154,-16,0,0,0.588361 -19728,3115:465,155,-16,0,0,0.584349 -19729,3115:466,156,-16,0,0,0.583575 -19730,3115:467,157,-16,0,0,0.591766 -21245,5108:102,-82,-10,0,0,0.47594 -19731,3115:468,158,-16,0,0,0.591741 -19732,3115:469,159,-16,0,0,0.582126 -19733,3116:360,160,-16,0,0,0.581676 -19734,3116:361,161,-16,0,0,0.595235 -19735,3116:362,162,-16,0,0,0.592957 -19736,3116:363,163,-16,0,0,0.591194 -19737,3116:364,164,-16,0,0,0.590052 -19738,3116:465,165,-16,0,0,0.584648 -19739,3116:466,166,-16,0,0,0.577846 -19740,3116:467,167,-16,0,0,0.580401 -19741,3116:468,168,-16,0,0,0.574509 -19742,3116:469,169,-16,0,0,0.569201 -19743,3117:360,170,-16,0,0,0.565166 -19744,3117:361,171,-16,0,0,0.566251 -19745,3117:362,172,-16,0,0,0.561527 -19746,3117:363,173,-16,0,0,0.555345 -19747,3117:364,174,-16,0,0,0.56461 -19748,3117:465,175,-16,0,0,0.566428 -19749,3117:466,176,-16,0,0,0.557146 -19750,3117:467,177,-16,0,0,0.566504 -19751,3117:468,178,-16,0,0,0.564257 -19752,3117:469,179,-16,0,0,0.564054 -19753,3118:360,180,-16,0,0,0.559046 -19754,5118:350,-180,-15,0,0,0.576467 -19755,5117:459,-179,-15,0,0,0.576668 -19756,5117:458,-178,-15,0,0,0.574987 -19757,5117:457,-177,-15,0,0,0.576266 -19758,5117:456,-176,-15,0,0,0.584573 -19759,5117:455,-175,-15,0,0,0.586493 -19760,5117:354,-174,-15,0,0,0.582976 -19761,5117:353,-173,-15,0,0,0.585072 -19762,5117:352,-172,-15,0,0,0.585646 -19763,5117:351,-171,-15,0,0,0.585571 -19764,5117:350,-170,-15,0,0,0.586419 -19765,5116:459,-169,-15,0,0,0.589629 -19766,5116:458,-168,-15,0,0,0.587738 -19767,5116:457,-167,-15,0,0,0.589927 -19768,5116:456,-166,-15,0,0,0.590474 -19769,5116:455,-165,-15,0,0,0.594146 -19770,5116:354,-164,-15,0,0,0.598845 -19771,5116:353,-163,-15,0,0,0.596151 -19772,5116:352,-162,-15,0,0,0.600275 -19773,5116:351,-161,-15,0,0,0.602861 -19774,5116:350,-160,-15,0,0,0.605564 -19775,5115:459,-159,-15,0,0,0.610119 -19776,5115:458,-158,-15,0,0,0.616843 -19777,5115:457,-157,-15,0,0,0.616211 -19778,5115:456,-156,-15,0,0,0.618371 -19779,5115:455,-155,-15,0,0,0.621204 -19780,5115:354,-154,-15,0,0,0.62234 -19781,5115:353,-153,-15,0,0,0.624944 -19782,5115:352,-152,-15,0,0,0.628669 -19783,5115:351,-151,-15,0,0,0.63331 -19784,5115:350,-150,-15,0,0,0.633168 -19785,5114:459,-149,-15,0,0,0.631113 -19786,5114:458,-148,-15,0,0,0.632475 -19787,5114:457,-147,-15,0,0,0.632905 -19788,5114:456,-146,-15,0,0,0.63226 -19789,5114:455,-145,-15,0,0,0.629677 -19790,5114:354,-144,-15,0,0,0.628838 -19791,5114:353,-143,-15,0,0,0.629581 -19792,5114:352,-142,-15,0,0,0.627517 -19793,5114:351,-141,-15,0,0,0.628765 -19794,5114:350,-140,-15,0,0,0.62831 -19795,5113:459,-139,-15,0,0,0.627157 -19796,5113:458,-138,-15,0,0,0.625666 -19797,5113:457,-137,-15,0,0,0.626244 -19798,5113:456,-136,-15,0,0,0.626629 -19799,5113:455,-135,-15,0,0,0.625089 -19800,5113:354,-134,-15,0,0,0.623523 -19801,5113:353,-133,-15,0,0,0.623064 -19802,5113:352,-132,-15,0,0,0.622413 -19803,5113:351,-131,-15,0,0,0.61951 -19804,5113:350,-130,-15,0,0,0.61609 -19805,5112:459,-129,-15,0,0,0.614387 -19806,5112:458,-128,-15,0,0,0.615117 -19807,5112:457,-127,-15,0,0,0.610412 -19808,5112:456,-126,-15,0,0,0.612658 -19809,5112:455,-125,-15,0,0,0.609043 -19810,5112:354,-124,-15,0,0,0.610901 -19811,5112:353,-123,-15,0,0,0.610241 -19812,5112:352,-122,-15,0,0,0.60941 -19813,5112:351,-121,-15,0,0,0.610876 -19814,5112:350,-120,-15,0,0,0.609361 -19815,5111:459,-119,-15,0,0,0.605883 -19816,5111:458,-118,-15,0,0,0.602369 -19817,5111:457,-117,-15,0,0,0.59919 -19818,5111:456,-116,-15,0,0,0.594369 -19819,5111:455,-115,-15,0,0,0.58953 -19820,5111:354,-114,-15,0,0,0.585347 -19821,5111:353,-113,-15,0,0,0.579123 -19822,5111:352,-112,-15,0,0,0.572147 -19823,5111:351,-111,-15,0,0,0.566983 -19824,5111:350,-110,-15,0,0,0.559958 -19825,5110:459,-109,-15,0,0,0.554609 -19826,5110:458,-108,-15,0,0,0.547645 -19827,5110:457,-107,-15,0,0,0.541121 -19828,5110:456,-106,-15,0,0,0.531233 -19829,5110:455,-105,-15,0,0,0.520962 -19830,5110:354,-104,-15,0,0,0.515036 -19831,5110:353,-103,-15,0,0,0.50908 -19832,5110:352,-102,-15,0,0,0.502172 -19833,5110:351,-101,-15,0,0,0.499193 -19834,5110:350,-100,-15,0,0,0.49444 -19835,5109:459,-99,-15,0,0,0.490075 -19836,5109:458,-98,-15,0,0,0.488149 -19837,5109:457,-97,-15,0,0,0.482734 -19838,5109:456,-96,-15,0,0,0.471355 -19839,5109:455,-95,-15,0,0,0.461689 -19840,5109:354,-94,-15,0,0,0.458601 -19841,5109:353,-93,-15,0,0,0.453046 -19842,5109:352,-92,-15,0,0,0.439843 -19843,5109:351,-91,-15,0,0,0.431507 -19844,5109:350,-90,-15,0,0,0.436176 -19845,5108:459,-89,-15,0,0,0.436757 -19846,5108:458,-88,-15,0,0,0.42675 -19847,5108:457,-87,-15,0,0,0.419928 -19848,5108:456,-86,-15,0,0,0.414756 -19849,5108:455,-85,-15,0,0,0.404965 -19850,5108:354,-84,-15,0,0,0.40143 -19851,5108:353,-83,-15,0,0,0.399802 -19852,5108:352,-82,-15,0,0,0.400146 -19853,5108:351,-81,-15,0,0,0.399185 -19854,5108:350,-80,-15,0,0,0.399407 -19855,5107:459,-79,-15,0,0,0.401479 -19856,5107:458,-78,-15,0,0,0.404866 -19857,5107:457,-77,-15,0,0,0.405931 -19858,5107:456,-76,-15,0,0,0.418127 -19859,5107:455,-75,-15,0,0,0.440324 -19860,5107:354,-74,-15,0,0,0.453631 -19861,5107:353,-73,-15,0,0,0.469845 -19862,5107:352,-72,-15,0,0,0.47407 -19863,5107:351,-71,-15,0,0,0.459494 -19864,5103:459,-39,-15,0,0,0.622823 -19865,5103:458,-38,-15,0,0,0.621906 -19866,5103:457,-37,-15,0,0,0.624197 -19867,5103:456,-36,-15,0,0,0.624704 -19868,5103:455,-35,-15,0,0,0.625281 -19869,5103:354,-34,-15,0,0,0.623209 -19870,5103:353,-33,-15,0,0,0.621204 -19871,5103:352,-32,-15,0,0,0.618638 -19872,5103:351,-31,-15,0,0,0.614533 -19873,5103:350,-30,-15,0,0,0.610364 -19874,5102:459,-29,-15,0,0,0.606496 -19875,5102:458,-28,-15,0,0,0.599215 -19876,5102:457,-27,-15,0,0,0.586867 -19877,5102:456,-26,-15,0,0,0.580175 -19878,5102:455,-25,-15,0,0,0.579074 -19879,5102:354,-24,-15,0,0,0.5798 -19880,5102:353,-23,-15,0,0,0.577545 -19881,5102:352,-22,-15,0,0,0.573605 -19882,5102:351,-21,-15,0,0,0.570335 -19883,5102:350,-20,-15,0,0,0.566907 -19884,5101:459,-19,-15,0,0,0.565393 -19885,5101:458,-18,-15,0,0,0.561223 -19886,5101:457,-17,-15,0,0,0.556309 -19887,5101:456,-16,-15,0,0,0.550037 -19888,5101:455,-15,-15,0,0,0.542754 -19889,5101:354,-14,-15,0,0,0.536756 -19890,5101:353,-13,-15,0,0,0.530645 -19891,5101:352,-12,-15,0,0,0.524217 -19892,5101:351,-11,-15,0,0,0.521372 -19893,5101:350,-10,-15,0,0,0.515062 -19894,5100:459,-9,-15,0,0,0.509645 -19895,5100:458,-8,-15,0,0,0.502994 -19896,5100:457,-7,-15,0,0,0.498139 -19897,5100:456,-6,-15,0,0,0.493362 -19898,5100:455,-5,-15,0,0,0.488612 -19899,5100:354,-4,-15,0,0,0.484505 -19900,5100:353,-3,-15,0,0,0.482093 -19901,5100:352,-2,-15,0,0,0.47899 -19902,5100:351,-1,-15,0,0,0.477324 -19903,3100:351,0,-15,0,0,0.476324 -19904,3100:351,1,-15,0,0,0.473787 -19905,3100:352,2,-15,0,0,0.471815 -19906,3100:353,3,-15,0,0,0.470971 -19907,3100:354,4,-15,0,0,0.470101 -19908,3100:455,5,-15,0,0,0.468897 -19909,3100:456,6,-15,0,0,0.469512 -19910,3100:457,7,-15,0,0,0.468284 -19911,3100:458,8,-15,0,0,0.469153 -19912,3100:459,9,-15,0,0,0.474044 -19913,3101:350,10,-15,0,0,0.480093 -19914,3101:351,11,-15,0,0,0.478657 -19915,3101:352,12,-15,0,0,0.43706 -19916,3103:456,36,-15,0,0,0.659694 -19917,3103:457,37,-15,0,0,0.644098 -19918,3103:458,38,-15,0,0,0.654973 -19919,3103:459,39,-15,0,0,0.647646 -19920,3104:350,40,-15,0,0,0.659209 -19921,3104:351,41,-15,0,0,0.665688 -19922,3104:352,42,-15,0,0,0.676775 -19923,3104:353,43,-15,0,0,0.68665 -19924,3104:354,44,-15,0,0,0.698029 -19925,3104:459,49,-15,0,0,0.632571 -19926,3105:350,50,-15,0,0,0.619268 -19927,3105:351,51,-15,0,0,0.613998 -19928,3105:352,52,-15,0,0,0.613535 -19929,3105:353,53,-15,0,0,0.612341 -19930,3105:354,54,-15,0,0,0.610852 -19931,3105:455,55,-15,0,0,0.61007 -19932,3105:456,56,-15,0,0,0.609508 -19933,3105:457,57,-15,0,0,0.608309 -19934,3105:458,58,-15,0,0,0.604311 -19935,3105:459,59,-15,0,0,0.601532 -19936,3106:350,60,-15,0,0,0.597511 -19937,3106:351,61,-15,0,0,0.599659 -19938,3106:352,62,-15,0,0,0.594444 -19939,3106:353,63,-15,0,0,0.591666 -19940,3106:354,64,-15,0,0,0.589082 -19941,3106:455,65,-15,0,0,0.585745 -19942,3106:456,66,-15,0,0,0.585446 -19943,3106:457,67,-15,0,0,0.584773 -19944,3106:458,68,-15,0,0,0.582726 -19945,3106:459,69,-15,0,0,0.575589 -19946,3107:350,70,-15,0,0,0.570259 -19947,3107:351,71,-15,0,0,0.579324 -19948,3107:352,72,-15,0,0,0.580626 -19949,3107:354,74,-15,0,0,0.573831 -19950,3107:455,75,-15,0,0,0.578072 -19951,3107:456,76,-15,0,0,0.572876 -19952,3107:457,77,-15,0,0,0.576392 -19953,3107:458,78,-15,0,0,0.574735 -19954,3107:459,79,-15,0,0,0.562361 -19955,3108:350,80,-15,0,0,0.574735 -19956,3108:351,81,-15,0,0,0.564813 -19957,3108:352,82,-15,0,0,0.562968 -19958,3108:353,83,-15,0,0,0.573454 -19959,3108:354,84,-15,0,0,0.577144 -19960,3108:455,85,-15,0,0,0.570864 -19961,3108:456,86,-15,0,0,0.565039 -19962,3108:457,87,-15,0,0,0.56716 -19963,3108:458,88,-15,0,0,0.566907 -19964,3108:459,89,-15,0,0,0.570838 -19965,3109:350,90,-15,0,0,0.560667 -19966,3109:351,91,-15,0,0,0.565949 -19967,3109:352,92,-15,0,0,0.561729 -19968,3109:353,93,-15,0,0,0.574434 -19969,3109:354,94,-15,0,0,0.549629 -19970,3109:455,95,-15,0,0,0.558058 -19971,3109:456,96,-15,0,0,0.550646 -19972,3109:457,97,-15,0,0,0.559071 -19973,3109:458,98,-15,0,0,0.553949 -19974,3109:459,99,-15,0,0,0.553898 -19975,3110:350,100,-15,0,0,0.557019 -19976,3110:351,101,-15,0,0,0.542575 -19977,3110:352,102,-15,0,0,0.539412 -19978,3110:353,103,-15,0,0,0.547568 -19979,3110:354,104,-15,0,0,0.561805 -19980,3110:455,105,-15,0,0,0.570335 -19981,3110:456,106,-15,0,0,0.561704 -19982,3110:457,107,-15,0,0,0.563246 -19983,3110:458,108,-15,0,0,0.566201 -19984,3110:459,109,-15,0,0,0.572322 -19985,3111:350,110,-15,0,0,0.589878 -19986,3111:351,111,-15,0,0,0.596176 -19987,3111:352,112,-15,0,0,0.611389 -19988,3111:353,113,-15,0,0,0.614752 -19989,3111:354,114,-15,0,0,0.612268 -19990,3111:455,115,-15,0,0,0.622292 -19991,3111:456,116,-15,0,0,0.62819 -19992,3111:457,117,-15,0,0,0.637381 -19993,3111:458,118,-15,0,0,0.645933 -19994,3111:459,119,-15,0,0,0.649543 -19995,3112:350,120,-15,0,0,0.650594 -19996,3112:351,121,-15,0,0,0.653508 -19997,3114:457,147,-15,0,0,0.64032 -19998,3114:458,148,-15,0,0,0.622847 -19999,3114:459,149,-15,0,0,0.623354 -20000,3115:350,150,-15,0,0,0.618032 -20001,3115:351,151,-15,0,0,0.60264 -20002,3115:352,152,-15,0,0,0.606912 -20003,3115:353,153,-15,0,0,0.611951 -20004,3115:354,154,-15,0,0,0.608945 -20005,3115:455,155,-15,0,0,0.605073 -20006,3115:456,156,-15,0,0,0.604581 -20007,3115:457,157,-15,0,0,0.606472 -20008,3115:458,158,-15,0,0,0.602295 -20009,3115:459,159,-15,0,0,0.604262 -20010,3116:350,160,-15,0,0,0.603426 -20011,3116:351,161,-15,0,0,0.598055 -20012,3116:352,162,-15,0,0,0.601039 -20013,3116:353,163,-15,0,0,0.594518 -20014,3116:354,164,-15,0,0,0.591046 -20015,3116:455,165,-15,0,0,0.589579 -20016,3116:456,166,-15,0,0,0.589455 -20017,3116:457,167,-15,0,0,0.591219 -20018,3116:458,168,-15,0,0,0.584673 -20019,3116:459,169,-15,0,0,0.586768 -20020,3117:350,170,-15,0,0,0.584823 -20021,3117:351,171,-15,0,0,0.591666 -20022,3117:352,172,-15,0,0,0.588211 -20023,3117:353,173,-15,0,0,0.58045 -20024,3117:354,174,-15,0,0,0.582776 -20025,3117:455,175,-15,0,0,0.587291 -20026,3117:456,176,-15,0,0,0.588958 -20027,3117:457,177,-15,0,0,0.590251 -20028,3117:458,178,-15,0,0,0.585895 -20029,3117:459,179,-15,0,0,0.584149 -20030,3118:350,180,-15,0,0,0.576467 -20031,5118:140,-180,-14,0,0,0.594493 -20032,5117:249,-179,-14,0,0,0.593502 -20033,5117:248,-178,-14,0,0,0.595533 -20034,5117:247,-177,-14,0,0,0.601803 -20035,5117:246,-176,-14,0,0,0.598993 -20036,5117:245,-175,-14,0,0,0.602812 -20037,5117:144,-174,-14,0,0,0.600645 -20038,5117:143,-173,-14,0,0,0.601729 -20039,5117:142,-172,-14,0,0,0.605736 -20040,5117:141,-171,-14,0,0,0.609165 -20041,5117:140,-170,-14,0,0,0.612731 -20042,5116:249,-169,-14,0,0,0.607966 -20043,5116:248,-168,-14,0,0,0.607942 -20044,5116:247,-167,-14,0,0,0.611414 -20045,5116:246,-166,-14,0,0,0.616527 -20046,5116:245,-165,-14,0,0,0.616017 -20047,5116:144,-164,-14,0,0,0.622413 -20048,5116:143,-163,-14,0,0,0.620914 -20049,5116:142,-162,-14,0,0,0.621591 -20050,5116:141,-161,-14,0,0,0.622654 -20051,5116:140,-160,-14,0,0,0.623981 -20052,5115:249,-159,-14,0,0,0.629293 -20053,5115:248,-158,-14,0,0,0.633549 -20054,5115:247,-157,-14,0,0,0.632594 -20055,5115:246,-156,-14,0,0,0.635098 -20056,5115:245,-155,-14,0,0,0.640652 -20057,5115:144,-154,-14,0,0,0.64332 -20058,5115:143,-153,-14,0,0,0.646919 -20059,5115:142,-152,-14,0,0,0.64713 -20060,5115:141,-151,-14,0,0,0.645274 -20061,5115:140,-150,-14,0,0,0.646708 -20062,5114:249,-149,-14,0,0,0.642447 -20063,5114:248,-148,-14,0,0,0.647505 -20064,5114:247,-147,-14,0,0,0.648654 -20065,5114:246,-146,-14,0,0,0.647575 -20066,5114:245,-145,-14,0,0,0.645228 -20067,5114:144,-144,-14,0,0,0.644874 -20068,5114:143,-143,-14,0,0,0.643202 -20069,5114:142,-142,-14,0,0,0.639776 -20070,5114:141,-141,-14,0,0,0.640604 -20071,5114:140,-140,-14,0,0,0.639586 -20072,5113:249,-139,-14,0,0,0.637998 -20073,5113:248,-138,-14,0,0,0.637975 -20074,5113:247,-137,-14,0,0,0.63897 -20075,5113:246,-136,-14,0,0,0.638212 -20076,5113:245,-135,-14,0,0,0.636455 -20077,5113:144,-134,-14,0,0,0.634479 -20078,5113:143,-133,-14,0,0,0.634408 -20079,5113:142,-132,-14,0,0,0.636074 -20080,5113:141,-131,-14,0,0,0.63655 -20081,5113:140,-130,-14,0,0,0.635193 -20082,5112:249,-129,-14,0,0,0.631113 -20083,5112:248,-128,-14,0,0,0.629868 -20084,5112:247,-127,-14,0,0,0.627494 -20085,5112:246,-126,-14,0,0,0.628045 -20086,5112:245,-125,-14,0,0,0.623715 -20087,5112:144,-124,-14,0,0,0.62147 -20088,5112:143,-123,-14,0,0,0.623571 -20089,5112:142,-122,-14,0,0,0.618711 -20090,5112:141,-121,-14,0,0,0.616989 -20091,5112:140,-120,-14,0,0,0.614631 -20092,5111:249,-119,-14,0,0,0.611462 -20093,5111:248,-118,-14,0,0,0.605122 -20094,5111:247,-117,-14,0,0,0.599757 -20095,5111:246,-116,-14,0,0,0.592559 -20096,5111:245,-115,-14,0,0,0.587714 -20097,5111:144,-114,-14,0,0,0.582176 -20098,5111:143,-113,-14,0,0,0.575288 -20099,5111:142,-112,-14,0,0,0.569151 -20100,5111:141,-111,-14,0,0,0.563347 -20101,5111:140,-110,-14,0,0,0.556309 -20102,5110:249,-109,-14,0,0,0.551587 -20103,5110:248,-108,-14,0,0,0.546779 -20104,5110:247,-107,-14,0,0,0.54209 -20105,5110:246,-106,-14,0,0,0.536372 -20106,5110:245,-105,-14,0,0,0.529007 -20107,5110:144,-104,-14,0,0,0.516781 -20108,5110:143,-103,-14,0,0,0.507206 -20109,5110:142,-102,-14,0,0,0.499089 -20110,5110:141,-101,-14,0,0,0.495339 -20111,5110:140,-100,-14,0,0,0.490357 -20112,5109:249,-99,-14,0,0,0.48235 -20113,5109:248,-98,-14,0,0,0.477349 -20114,5109:247,-97,-14,0,0,0.47535 -20115,5109:246,-96,-14,0,0,0.470458 -20116,5109:245,-95,-14,0,0,0.461128 -20117,5109:144,-94,-14,0,0,0.452179 -20118,5109:143,-93,-14,0,0,0.446308 -20119,5109:142,-92,-14,0,0,0.43959 -20120,5109:141,-91,-14,0,0,0.429668 -20121,5109:140,-90,-14,0,0,0.42464 -20122,5108:249,-89,-14,0,0,0.423034 -20123,5108:248,-88,-14,0,0,0.418927 -20124,5108:247,-87,-14,0,0,0.413186 -20125,5108:246,-86,-14,0,0,0.411692 -20126,5108:245,-85,-14,0,0,0.40727 -20127,5108:144,-84,-14,0,0,0.403184 -20128,5108:143,-83,-14,0,0,0.397707 -20129,5108:142,-82,-14,0,0,0.397585 -20130,5108:141,-81,-14,0,0,0.398693 -20131,5108:140,-80,-14,0,0,0.40442 -20132,5107:249,-79,-14,0,0,0.409976 -20133,5107:248,-78,-14,0,0,0.419027 -20134,5107:247,-77,-14,0,0,0.4267 -20135,5107:246,-76,-14,0,0,0.438502 -20136,5107:245,-75,-14,0,0,0.449788 -20137,5107:144,-74,-14,0,0,0.452587 -20138,5107:143,-73,-14,0,0,0.458754 -20139,5107:142,-72,-14,0,0,0.459698 -20140,5103:249,-39,-14,0,0,0.597141 -20141,5103:248,-38,-14,0,0,0.626532 -20142,5103:247,-37,-14,0,0,0.623088 -20143,5103:246,-36,-14,0,0,0.623402 -20144,5103:245,-35,-14,0,0,0.622581 -20145,5103:144,-34,-14,0,0,0.619849 -20146,5103:143,-33,-14,0,0,0.61626 -20147,5103:142,-32,-14,0,0,0.61256 -20148,5103:141,-31,-14,0,0,0.607574 -20149,5103:140,-30,-14,0,0,0.603328 -20150,5102:249,-29,-14,0,0,0.599387 -20151,5102:248,-28,-14,0,0,0.595186 -20152,5102:247,-27,-14,0,0,0.589754 -20153,5102:246,-26,-14,0,0,0.5799 -20154,5102:245,-25,-14,0,0,0.577119 -20155,5102:144,-24,-14,0,0,0.57456 -20156,5102:143,-23,-14,0,0,0.572574 -20157,5102:142,-22,-14,0,0,0.569454 -20158,5102:141,-21,-14,0,0,0.56514 -20159,5102:140,-20,-14,0,0,0.560768 -20160,5101:249,-19,-14,0,0,0.556004 -20161,5101:248,-18,-14,0,0,0.549298 -20162,5101:247,-17,-14,0,0,0.542422 -20163,5101:246,-16,-14,0,0,0.539846 -20164,5101:245,-15,-14,0,0,0.535912 -20165,5101:144,-14,-14,0,0,0.53443 -20166,5101:143,-13,-14,0,0,0.52939 -20167,5101:142,-12,-14,0,0,0.521782 -20168,5101:141,-11,-14,0,0,0.516499 -20169,5101:140,-10,-14,0,0,0.511443 -20170,5100:249,-9,-14,0,0,0.506153 -20171,5100:248,-8,-14,0,0,0.500888 -20172,5100:247,-7,-14,0,0,0.495622 -20173,5100:246,-6,-14,0,0,0.490922 -20174,5100:245,-5,-14,0,0,0.48756 -20175,5100:144,-4,-14,0,0,0.485763 -20176,5100:143,-3,-14,0,0,0.484145 -20177,5100:142,-2,-14,0,0,0.480939 -20178,5100:141,-1,-14,0,0,0.481042 -20179,3100:141,0,-14,0,0,0.479375 -20180,3100:141,1,-14,0,0,0.477221 -20181,3100:142,2,-14,0,0,0.475324 -20182,3100:143,3,-14,0,0,0.474736 -20183,3100:144,4,-14,0,0,0.474736 -20184,3100:245,5,-14,0,0,0.475735 -20185,3100:246,6,-14,0,0,0.4743 -20186,3100:247,7,-14,0,0,0.48235 -20187,3100:248,8,-14,0,0,0.489331 -20188,3100:249,9,-14,0,0,0.507334 -20189,3101:140,10,-14,0,0,0.522859 -20190,3101:141,11,-14,0,0,0.487867 -20191,3103:248,38,-14,0,0,0.639184 -20192,3103:249,39,-14,0,0,0.669131 -20193,3104:140,40,-14,0,0,0.666967 -20194,3104:141,41,-14,0,0,0.669381 -20195,3104:142,42,-14,0,0,0.678928 -20196,3104:143,43,-14,0,0,0.689384 -20197,3105:140,50,-14,0,0,0.631806 -20198,3105:141,51,-14,0,0,0.624246 -20199,3105:142,52,-14,0,0,0.616624 -20200,3105:143,53,-14,0,0,0.613657 -20201,3105:144,54,-14,0,0,0.612268 -20202,3105:245,55,-14,0,0,0.61278 -20203,3105:246,56,-14,0,0,0.614899 -20204,3105:247,57,-14,0,0,0.617474 -20205,3105:248,58,-14,0,0,0.613754 -20206,3105:249,59,-14,0,0,0.60941 -20207,3106:140,60,-14,0,0,0.608799 -20208,3106:141,61,-14,0,0,0.606153 -20209,3106:142,62,-14,0,0,0.602812 -20210,3106:143,63,-14,0,0,0.601335 -20211,3106:144,64,-14,0,0,0.599412 -20212,3106:245,65,-14,0,0,0.596843 -20213,3106:246,66,-14,0,0,0.596572 -20214,3106:247,67,-14,0,0,0.595136 -20215,3106:248,68,-14,0,0,0.594741 -20216,3106:249,69,-14,0,0,0.59422 -20217,3107:140,70,-14,0,0,0.594716 -20218,3107:141,71,-14,0,0,0.59427 -20219,3107:142,72,-14,0,0,0.59246 -20220,3107:144,74,-14,0,0,0.588261 -20221,3107:245,75,-14,0,0,0.591815 -20222,3107:246,76,-14,0,0,0.589032 -20223,3107:247,77,-14,0,0,0.587962 -20224,3107:248,78,-14,0,0,0.585571 -20225,3107:249,79,-14,0,0,0.590846 -20226,3108:140,80,-14,0,0,0.596547 -20227,3108:141,81,-14,0,0,0.59365 -20228,3108:142,82,-14,0,0,0.589232 -20229,3108:143,83,-14,0,0,0.585596 -20230,3108:144,84,-14,0,0,0.587863 -20231,3108:245,85,-14,0,0,0.594394 -20232,3108:246,86,-14,0,0,0.596176 -20233,3108:247,87,-14,0,0,0.586219 -20234,3108:248,88,-14,0,0,0.586269 -20235,3108:249,89,-14,0,0,0.588385 -20236,3109:140,90,-14,0,0,0.578197 -20237,3109:141,91,-14,0,0,0.570738 -20238,3109:142,92,-14,0,0,0.570335 -20239,3109:143,93,-14,0,0,0.582051 -20240,3109:144,94,-14,0,0,0.569075 -20241,3109:245,95,-14,0,0,0.558236 -20242,3109:246,96,-14,0,0,0.562665 -20243,3109:247,97,-14,0,0,0.575388 -20244,3109:248,98,-14,0,0,0.568798 -20245,3109:249,99,-14,0,0,0.566806 -20246,3110:140,100,-14,0,0,0.572649 -20247,3110:141,101,-14,0,0,0.572298 -20248,3110:142,102,-14,0,0,0.566781 -20249,3110:143,103,-14,0,0,0.565318 -20250,3110:144,104,-14,0,0,0.571014 -20251,3110:245,105,-14,0,0,0.577094 -20252,3110:246,106,-14,0,0,0.584124 -20253,3110:247,107,-14,0,0,0.587141 -20254,3110:248,108,-14,0,0,0.597684 -20255,3110:249,109,-14,0,0,0.598302 -20256,3111:140,110,-14,0,0,0.610559 -20257,3111:141,111,-14,0,0,0.607697 -20258,3111:142,112,-14,0,0,0.612219 -20259,3111:143,113,-14,0,0,0.620358 -20260,3111:144,114,-14,0,0,0.623715 -20261,3111:245,115,-14,0,0,0.632809 -20262,3111:246,116,-14,0,0,0.641597 -20263,3111:247,117,-14,0,0,0.647412 -20264,3111:248,118,-14,0,0,0.651715 -20265,3111:249,119,-14,0,0,0.657614 -20266,3112:140,120,-14,0,0,0.656341 -20267,3112:141,121,-14,0,0,0.667058 -20268,3112:142,122,-14,0,0,0.670653 -20269,3114:140,140,-14,0,0,0.714355 -20270,3114:141,141,-14,0,0,0.712569 -20271,3114:247,147,-14,0,0,0.635741 -20272,3114:248,148,-14,0,0,0.629101 -20273,3114:249,149,-14,0,0,0.617887 -20274,3115:140,150,-14,0,0,0.624053 -20275,3115:141,151,-14,0,0,0.622847 -20276,3115:142,152,-14,0,0,0.624149 -20277,3115:143,153,-14,0,0,0.617256 -20278,3115:144,154,-14,0,0,0.625185 -20279,3115:245,155,-14,0,0,0.623498 -20280,3115:246,156,-14,0,0,0.616576 -20281,3115:247,157,-14,0,0,0.615117 -20282,3115:248,158,-14,0,0,0.616964 -20283,3115:249,159,-14,0,0,0.61029 -20284,3116:140,160,-14,0,0,0.613316 -20285,3116:141,161,-14,0,0,0.609874 -20286,3116:142,162,-14,0,0,0.605883 -20287,3116:143,163,-14,0,0,0.605809 -20288,3116:144,164,-14,0,0,0.606275 -20289,3116:245,165,-14,0,0,0.605613 -20290,3116:246,166,-14,0,0,0.60826 -20291,3116:247,167,-14,0,0,0.604508 -20292,3116:248,168,-14,0,0,0.599066 -20293,3116:249,169,-14,0,0,0.595582 -20294,3117:140,170,-14,0,0,0.60025 -20295,3117:141,171,-14,0,0,0.598993 -20296,3117:142,172,-14,0,0,0.601483 -20297,3117:143,173,-14,0,0,0.603033 -20298,3117:144,174,-14,0,0,0.604999 -20299,3117:245,175,-14,0,0,0.605515 -20300,3117:246,176,-14,0,0,0.607182 -20301,3117:247,177,-14,0,0,0.60985 -20302,3117:248,178,-14,0,0,0.606422 -20303,3117:249,179,-14,0,0,0.593056 -20304,3118:140,180,-14,0,0,0.594493 -20305,5118:130,-180,-13,0,0,0.611536 -20306,5117:239,-179,-13,0,0,0.614192 -20307,5117:238,-178,-13,0,0,0.614582 -20308,5117:237,-177,-13,0,0,0.615117 -20309,5117:236,-176,-13,0,0,0.614777 -20310,5117:235,-175,-13,0,0,0.616892 -20311,5117:134,-174,-13,0,0,0.622702 -20312,5117:133,-173,-13,0,0,0.62622 -20313,5117:132,-172,-13,0,0,0.626052 -20314,5117:131,-171,-13,0,0,0.627278 -20315,5117:130,-170,-13,0,0,0.630418 -20316,5116:239,-169,-13,0,0,0.631639 -20317,5116:238,-168,-13,0,0,0.6297 -20318,5116:237,-167,-13,0,0,0.630825 -20319,5116:236,-166,-13,0,0,0.635217 -20320,5116:235,-165,-13,0,0,0.635979 -20321,5116:134,-164,-13,0,0,0.639634 -20322,5116:133,-163,-13,0,0,0.639752 -20323,5116:132,-162,-13,0,0,0.641952 -20324,5116:131,-161,-13,0,0,0.646426 -20325,5116:130,-160,-13,0,0,0.647412 -20326,5115:239,-159,-13,0,0,0.646073 -20327,5115:238,-158,-13,0,0,0.648817 -20328,5115:237,-157,-13,0,0,0.646144 -20329,5115:236,-156,-13,0,0,0.646966 -20330,5115:235,-155,-13,0,0,0.652764 -20331,5115:134,-154,-13,0,0,0.653531 -20332,5115:133,-153,-13,0,0,0.655367 -20333,5115:132,-152,-13,0,0,0.655413 -20334,5115:131,-151,-13,0,0,0.65699 -20335,5115:130,-150,-13,0,0,0.65884 -20336,5114:239,-149,-13,0,0,0.659024 -20337,5114:238,-148,-13,0,0,0.656943 -20338,5114:237,-147,-13,0,0,0.653508 -20339,5114:236,-146,-13,0,0,0.65253 -20340,5114:235,-145,-13,0,0,0.651575 -20341,5114:134,-144,-13,0,0,0.650945 -20342,5114:133,-143,-13,0,0,0.649379 -20343,5114:132,-142,-13,0,0,0.647904 -20344,5114:131,-141,-13,0,0,0.650104 -20345,5114:130,-140,-13,0,0,0.649285 -20346,5113:239,-139,-13,0,0,0.647786 -20347,5113:238,-138,-13,0,0,0.647575 -20348,5113:237,-137,-13,0,0,0.647013 -20349,5113:236,-136,-13,0,0,0.644804 -20350,5113:235,-135,-13,0,0,0.643273 -20351,5113:134,-134,-13,0,0,0.644686 -20352,5113:133,-133,-13,0,0,0.643037 -20353,5113:132,-132,-13,0,0,0.642282 -20354,5113:131,-131,-13,0,0,0.641881 -20355,5113:130,-130,-13,0,0,0.639729 -20356,5112:239,-129,-13,0,0,0.637286 -20357,5112:238,-128,-13,0,0,0.635859 -20358,5112:237,-127,-13,0,0,0.634813 -20359,5112:236,-126,-13,0,0,0.6314 -20360,5112:235,-125,-13,0,0,0.627205 -20361,5112:134,-124,-13,0,0,0.622364 -20362,5112:133,-123,-13,0,0,0.624222 -20363,5112:132,-122,-13,0,0,0.623378 -20364,5112:131,-121,-13,0,0,0.616867 -20365,5112:130,-120,-13,0,0,0.610901 -20366,5111:239,-119,-13,0,0,0.60603 -20367,5111:238,-118,-13,0,0,0.599609 -20368,5111:237,-117,-13,0,0,0.595607 -20369,5111:236,-116,-13,0,0,0.589132 -20370,5111:235,-115,-13,0,0,0.586618 -20371,5111:134,-114,-13,0,0,0.582351 -20372,5111:133,-113,-13,0,0,0.573479 -20373,5111:132,-112,-13,0,0,0.565848 -20374,5111:131,-111,-13,0,0,0.561147 -20375,5111:130,-110,-13,0,0,0.557703 -20376,5110:239,-109,-13,0,0,0.547568 -20377,5110:238,-108,-13,0,0,0.540126 -20378,5110:237,-107,-13,0,0,0.53397 -20379,5110:236,-106,-13,0,0,0.526933 -20380,5110:235,-105,-13,0,0,0.524832 -20381,5110:134,-104,-13,0,0,0.519423 -20382,5110:133,-103,-13,0,0,0.51057 -20383,5110:132,-102,-13,0,0,0.500143 -20384,5110:131,-101,-13,0,0,0.495083 -20385,5110:130,-100,-13,0,0,0.488175 -20386,5109:239,-99,-13,0,0,0.48058 -20387,5109:238,-98,-13,0,0,0.475376 -20388,5109:237,-97,-13,0,0,0.470458 -20389,5109:236,-96,-13,0,0,0.464397 -20390,5109:235,-95,-13,0,0,0.458295 -20391,5109:134,-94,-13,0,0,0.451747 -20392,5109:133,-93,-13,0,0,0.446029 -20393,5109:132,-92,-13,0,0,0.442553 -20394,5109:131,-91,-13,0,0,0.439691 -20395,5109:130,-90,-13,0,0,0.435569 -20396,5108:239,-89,-13,0,0,0.430348 -20397,5108:238,-88,-13,0,0,0.423386 -20398,5108:237,-87,-13,0,0,0.413709 -20399,5108:236,-86,-13,0,0,0.405882 -20400,5108:235,-85,-13,0,0,0.40353 -20401,5108:134,-84,-13,0,0,0.402467 -20402,5108:133,-83,-13,0,0,0.40222 -20403,5108:132,-82,-13,0,0,0.402566 -20404,5108:131,-81,-13,0,0,0.41209 -20405,5108:130,-80,-13,0,0,0.418427 -20406,5107:239,-79,-13,0,0,0.421731 -20407,5107:238,-78,-13,0,0,0.426951 -20408,5107:237,-77,-13,0,0,0.436226 -20409,5107:236,-76,-13,0,0,0.44154 -20410,5107:235,-75,-13,0,0,0.440628 -20411,5103:239,-39,-13,0,0,0.588709 -20412,5103:238,-38,-13,0,0,0.623812 -20413,5103:237,-37,-13,0,0,0.626075 -20414,5103:236,-36,-13,0,0,0.623498 -20415,5103:235,-35,-13,0,0,0.621083 -20416,5103:134,-34,-13,0,0,0.617499 -20417,5103:133,-33,-13,0,0,0.613754 -20418,5103:132,-32,-13,0,0,0.609141 -20419,5103:131,-31,-13,0,0,0.603942 -20420,5103:130,-30,-13,0,0,0.599338 -20421,5102:239,-29,-13,0,0,0.595384 -20422,5102:238,-28,-13,0,0,0.589878 -20423,5102:237,-27,-13,0,0,0.5837 -20424,5102:236,-26,-13,0,0,0.576618 -20425,5102:235,-25,-13,0,0,0.574459 -20426,5102:134,-24,-13,0,0,0.571291 -20427,5102:133,-23,-13,0,0,0.567815 -20428,5102:132,-22,-13,0,0,0.564307 -20429,5102:131,-21,-13,0,0,0.559882 -20430,5102:130,-20,-13,0,0,0.555243 -20431,5101:239,-19,-13,0,0,0.551053 -20432,5101:238,-18,-13,0,0,0.546575 -20433,5101:237,-17,-13,0,0,0.542575 -20434,5101:236,-16,-13,0,0,0.539233 -20435,5101:235,-15,-13,0,0,0.534891 -20436,5101:134,-14,-13,0,0,0.527035 -20437,5101:133,-13,-13,0,0,0.522705 -20438,5101:132,-12,-13,0,0,0.520449 -20439,5101:131,-11,-13,0,0,0.516499 -20440,5101:130,-10,-13,0,0,0.511057 -20441,5100:239,-9,-13,0,0,0.504458 -20442,5100:238,-8,-13,0,0,0.499038 -20443,5100:237,-7,-13,0,0,0.495596 -20444,5100:236,-6,-13,0,0,0.493798 -20445,5100:235,-5,-13,0,0,0.490589 -20446,5100:134,-4,-13,0,0,0.487713 -20447,5100:133,-3,-13,0,0,0.48684 -20448,5100:132,-2,-13,0,0,0.485686 -20449,5100:131,-1,-13,0,0,0.484197 -20450,3100:131,0,-13,0,0,0.482145 -20451,3100:131,1,-13,0,0,0.481606 -20452,3100:132,2,-13,0,0,0.484659 -20453,3100:133,3,-13,0,0,0.484659 -20454,3100:134,4,-13,0,0,0.484607 -20455,3100:235,5,-13,0,0,0.483992 -20456,3100:236,6,-13,0,0,0.485352 -20457,3100:237,7,-13,0,0,0.487611 -20458,3100:238,8,-13,0,0,0.499372 -20459,3100:239,9,-13,0,0,0.511982 -20460,3101:130,10,-13,0,0,0.538799 -20461,3101:131,11,-13,0,0,0.5185 -20462,3104:130,40,-13,0,0,0.665322 -20463,3104:131,41,-13,0,0,0.675672 -20464,3104:132,42,-13,0,0,0.681832 -20465,3104:133,43,-13,0,0,0.686252 -20466,3104:134,44,-13,0,0,0.695924 -20467,3105:130,50,-13,0,0,0.634932 -20468,3105:131,51,-13,0,0,0.63226 -20469,3105:132,52,-13,0,0,0.626316 -20470,3105:133,53,-13,0,0,0.621132 -20471,3105:134,54,-13,0,0,0.620431 -20472,3105:235,55,-13,0,0,0.622195 -20473,3105:236,56,-13,0,0,0.622267 -20474,3105:237,57,-13,0,0,0.624487 -20475,3105:238,58,-13,0,0,0.623619 -20476,3105:239,59,-13,0,0,0.620696 -20477,3106:130,60,-13,0,0,0.617717 -20478,3106:131,61,-13,0,0,0.613925 -20479,3106:132,62,-13,0,0,0.611974 -20480,3106:133,63,-13,0,0,0.610949 -20481,3106:134,64,-13,0,0,0.610217 -20482,3106:235,65,-13,0,0,0.609826 -20483,3106:236,66,-13,0,0,0.609361 -20484,3106:237,67,-13,0,0,0.60919 -20485,3106:238,68,-13,0,0,0.608113 -20486,3106:239,69,-13,0,0,0.606716 -20487,3107:130,70,-13,0,0,0.60657 -20489,3107:132,72,-13,0,0,0.608897 -20490,3107:134,74,-13,0,0,0.615142 -20491,3107:235,75,-13,0,0,0.615531 -20492,3107:236,76,-13,0,0,0.614047 -20493,3107:237,77,-13,0,0,0.613876 -20494,3107:238,78,-13,0,0,0.614606 -20495,3107:239,79,-13,0,0,0.612731 -20496,3108:130,80,-13,0,0,0.614801 -20497,3108:131,81,-13,0,0,0.61334 -20498,3108:132,82,-13,0,0,0.610217 -20499,3108:133,83,-13,0,0,0.60522 -20500,3108:134,84,-13,0,0,0.608015 -20501,3108:235,85,-13,0,0,0.599066 -20502,3108:236,86,-13,0,0,0.599289 -20503,3108:237,87,-13,0,0,0.597832 -20504,3108:238,88,-13,0,0,0.595013 -20505,3108:239,89,-13,0,0,0.598968 -20506,3109:130,90,-13,0,0,0.593625 -20507,3109:131,91,-13,0,0,0.593378 -20508,3109:132,92,-13,0,0,0.590276 -20509,3109:133,93,-13,0,0,0.588784 -20510,3109:134,94,-13,0,0,0.578097 -20511,3109:235,95,-13,0,0,0.58315 -20512,3109:236,96,-13,0,0,0.582526 -20513,3109:237,97,-13,0,0,0.580701 -20514,3109:238,98,-13,0,0,0.584947 -20515,3109:239,99,-13,0,0,0.579149 -20516,3110:130,100,-13,0,0,0.582201 -20517,3110:131,101,-13,0,0,0.589405 -20518,3110:132,102,-13,0,0,0.591964 -20519,3110:133,103,-13,0,0,0.589803 -20520,3110:134,104,-13,0,0,0.594617 -20521,3110:235,105,-13,0,0,0.594444 -20522,3110:236,106,-13,0,0,0.592287 -20523,3110:237,107,-13,0,0,0.599437 -20524,3110:238,108,-13,0,0,0.616139 -20525,3110:239,109,-13,0,0,0.612926 -20526,3111:130,110,-13,0,0,0.617741 -20527,3111:131,111,-13,0,0,0.620019 -20528,3111:132,112,-13,0,0,0.627614 -20529,3111:133,113,-13,0,0,0.632977 -20530,3111:134,114,-13,0,0,0.642872 -20531,3111:235,115,-13,0,0,0.646191 -20532,3111:236,116,-13,0,0,0.643956 -20533,3111:237,117,-13,0,0,0.653392 -20534,3111:238,118,-13,0,0,0.663007 -20535,3111:239,119,-13,0,0,0.668153 -20536,3112:130,120,-13,0,0,0.666716 -20537,3112:131,121,-13,0,0,0.676392 -20538,3112:132,122,-13,0,0,0.678301 -20539,3112:133,123,-13,0,0,0.682167 -20540,3112:134,124,-13,0,0,0.707471 -20541,3113:238,138,-13,0,0,0.714355 -20542,3113:239,139,-13,0,0,0.712927 -20543,3114:130,140,-13,0,0,0.709339 -20544,3114:131,141,-13,0,0,0.702063 -20545,3114:236,146,-13,0,0,0.641172 -20546,3114:237,147,-13,0,0,0.635859 -20547,3114:238,148,-13,0,0,0.635074 -20548,3114:239,149,-13,0,0,0.636383 -20549,3115:130,150,-13,0,0,0.633191 -20550,3115:131,151,-13,0,0,0.631089 -20551,3115:132,152,-13,0,0,0.635955 -20552,3115:133,153,-13,0,0,0.633478 -20553,3115:134,154,-13,0,0,0.633788 -20554,3115:235,155,-13,0,0,0.631209 -20555,3115:236,156,-13,0,0,0.630395 -20556,3115:237,157,-13,0,0,0.629077 -20557,3115:238,158,-13,0,0,0.628478 -20558,3115:239,159,-13,0,0,0.622654 -20559,3116:130,160,-13,0,0,0.620334 -20560,3116:131,161,-13,0,0,0.619608 -20561,3116:132,162,-13,0,0,0.619365 -20562,3116:133,163,-13,0,0,0.618905 -20563,3116:134,164,-13,0,0,0.612341 -20564,3116:235,165,-13,0,0,0.617377 -20565,3116:236,166,-13,0,0,0.618953 -20566,3116:237,167,-13,0,0,0.612316 -20567,3116:238,168,-13,0,0,0.613876 -20568,3116:239,169,-13,0,0,0.618008 -20569,3117:130,170,-13,0,0,0.621446 -20570,3117:131,171,-13,0,0,0.621712 -20571,3117:132,172,-13,0,0,0.621906 -20572,3117:133,173,-13,0,0,0.621446 -20573,3117:134,174,-13,0,0,0.621397 -20574,3117:235,175,-13,0,0,0.621978 -20575,3117:236,176,-13,0,0,0.621808 -20576,3117:237,177,-13,0,0,0.620552 -20577,3117:238,178,-13,0,0,0.617474 -20578,3117:239,179,-13,0,0,0.615895 -20579,3118:130,180,-13,0,0,0.611536 -20580,5118:120,-180,-12,0,0,0.630227 -20581,5117:229,-179,-12,0,0,0.630371 -20582,5117:228,-178,-12,0,0,0.631973 -20583,5117:227,-177,-12,0,0,0.63505 -20584,5117:226,-176,-12,0,0,0.638093 -20585,5117:225,-175,-12,0,0,0.641597 -20586,5117:124,-174,-12,0,0,0.646261 -20587,5117:123,-173,-12,0,0,0.649122 -20588,5117:122,-172,-12,0,0,0.647412 -20589,5117:121,-171,-12,0,0,0.647599 -20590,5117:120,-170,-12,0,0,0.647669 -20591,5116:229,-169,-12,0,0,0.648771 -20592,5116:228,-168,-12,0,0,0.649589 -20593,5116:227,-167,-12,0,0,0.651248 -20594,5116:226,-166,-12,0,0,0.652624 -20595,5116:225,-165,-12,0,0,0.653043 -21246,5108:101,-81,-10,0,0,0.48117 -20596,5116:124,-164,-12,0,0,0.653834 -20597,5116:123,-163,-12,0,0,0.656943 -20598,5116:122,-162,-12,0,0,0.659901 -20599,5116:121,-161,-12,0,0,0.661214 -20600,5116:120,-160,-12,0,0,0.662571 -20601,5115:229,-159,-12,0,0,0.662663 -20602,5115:228,-158,-12,0,0,0.661882 -20603,5115:227,-157,-12,0,0,0.662456 -20604,5115:226,-156,-12,0,0,0.663489 -20605,5115:225,-155,-12,0,0,0.665047 -20606,5115:124,-154,-12,0,0,0.665161 -20607,5115:123,-153,-12,0,0,0.664177 -20608,5115:122,-152,-12,0,0,0.664314 -20609,5115:121,-151,-12,0,0,0.663718 -20610,5115:120,-150,-12,0,0,0.663191 -20611,5114:229,-149,-12,0,0,0.663282 -20612,5114:228,-148,-12,0,0,0.661789 -20613,5114:227,-147,-12,0,0,0.660178 -20614,5114:226,-146,-12,0,0,0.658308 -20615,5114:225,-145,-12,0,0,0.657013 -20616,5114:124,-144,-12,0,0,0.658285 -20617,5114:123,-143,-12,0,0,0.659324 -20618,5114:122,-142,-12,0,0,0.659532 -20619,5114:121,-141,-12,0,0,0.658447 -20620,5114:120,-140,-12,0,0,0.657684 -20621,5113:229,-139,-12,0,0,0.657453 -20622,5113:228,-138,-12,0,0,0.656272 -20623,5113:227,-137,-12,0,0,0.654392 -20624,5113:226,-136,-12,0,0,0.653438 -20625,5113:225,-135,-12,0,0,0.652414 -20626,5113:124,-134,-12,0,0,0.652368 -20627,5113:123,-133,-12,0,0,0.650314 -20628,5113:122,-132,-12,0,0,0.646708 -20629,5113:121,-131,-12,0,0,0.64471 -20630,5113:120,-130,-12,0,0,0.643131 -20631,5112:229,-129,-12,0,0,0.640959 -20632,5112:228,-128,-12,0,0,0.637975 -20633,5112:227,-127,-12,0,0,0.634979 -20634,5112:226,-126,-12,0,0,0.631519 -20635,5112:225,-125,-12,0,0,0.628694 -20636,5112:124,-124,-12,0,0,0.622847 -20637,5112:123,-123,-12,0,0,0.620019 -20638,5112:122,-122,-12,0,0,0.616624 -20639,5112:121,-121,-12,0,0,0.612146 -20640,5112:120,-120,-12,0,0,0.605196 -20641,5111:229,-119,-12,0,0,0.600719 -20642,5111:228,-118,-12,0,0,0.595434 -20643,5111:227,-117,-12,0,0,0.592485 -20644,5111:226,-116,-12,0,0,0.588385 -20645,5111:225,-115,-12,0,0,0.581776 -20646,5111:124,-114,-12,0,0,0.574283 -20647,5111:123,-113,-12,0,0,0.570889 -20648,5111:122,-112,-12,0,0,0.567412 -20649,5111:121,-111,-12,0,0,0.558311 -20650,5111:120,-110,-12,0,0,0.554102 -20651,5110:229,-109,-12,0,0,0.549274 -20652,5110:228,-108,-12,0,0,0.543799 -20653,5110:227,-107,-12,0,0,0.535325 -20654,5110:226,-106,-12,0,0,0.526241 -20655,5110:225,-105,-12,0,0,0.520449 -20656,5110:124,-104,-12,0,0,0.515857 -20657,5110:123,-103,-12,0,0,0.507591 -20658,5110:122,-102,-12,0,0,0.500656 -20659,5110:121,-101,-12,0,0,0.495776 -20660,5110:120,-100,-12,0,0,0.492592 -20661,5109:229,-99,-12,0,0,0.486353 -20662,5109:228,-98,-12,0,0,0.479016 -20663,5109:227,-97,-12,0,0,0.472379 -20664,5109:226,-96,-12,0,0,0.466084 -20665,5109:225,-95,-12,0,0,0.459392 -20666,5109:124,-94,-12,0,0,0.45493 -20667,5109:123,-93,-12,0,0,0.448721 -20668,5109:122,-92,-12,0,0,0.44344 -20669,5109:121,-91,-12,0,0,0.437085 -20670,5109:120,-90,-12,0,0,0.434079 -20671,5108:229,-89,-12,0,0,0.427328 -20672,5108:228,-88,-12,0,0,0.421956 -20673,5108:227,-87,-12,0,0,0.418477 -20674,5108:226,-86,-12,0,0,0.414557 -20675,5108:225,-85,-12,0,0,0.413261 -20676,5108:124,-84,-12,0,0,0.414482 -20677,5108:123,-83,-12,0,0,0.420403 -20678,5108:122,-82,-12,0,0,0.423736 -20679,5108:121,-81,-12,0,0,0.42997 -20680,5108:120,-80,-12,0,0,0.439615 -20681,5107:229,-79,-12,0,0,0.445039 -20682,5107:228,-78,-12,0,0,0.458014 -20683,5107:227,-77,-12,0,0,0.45073 -20684,5107:226,-76,-12,0,0,0.396158 -20685,5103:229,-39,-12,0,0,0.62205 -20686,5103:228,-38,-12,0,0,0.627806 -20687,5103:227,-37,-12,0,0,0.627541 -20688,5103:226,-36,-12,0,0,0.626532 -20689,5103:225,-35,-12,0,0,0.622895 -20690,5103:124,-34,-12,0,0,0.620043 -20691,5103:123,-33,-12,0,0,0.615847 -20692,5103:122,-32,-12,0,0,0.611511 -20693,5103:121,-31,-12,0,0,0.605809 -20694,5103:120,-30,-12,0,0,0.599091 -20695,5102:229,-29,-12,0,0,0.592758 -20696,5102:228,-28,-12,0,0,0.588261 -20697,5102:227,-27,-12,0,0,0.586743 -20698,5102:226,-26,-12,0,0,0.58025 -20699,5102:225,-25,-12,0,0,0.57584 -20700,5102:124,-24,-12,0,0,0.570838 -20701,5102:123,-23,-12,0,0,0.567563 -20702,5102:122,-22,-12,0,0,0.563499 -20703,5102:121,-21,-12,0,0,0.558995 -20704,5102:120,-20,-12,0,0,0.554888 -20705,5101:229,-19,-12,0,0,0.550341 -20706,5101:228,-18,-12,0,0,0.547441 -20707,5101:227,-17,-12,0,0,0.543263 -20708,5101:226,-16,-12,0,0,0.538007 -20709,5101:225,-15,-12,0,0,0.533766 -20710,5101:124,-14,-12,0,0,0.530286 -20711,5101:123,-13,-12,0,0,0.525729 -20712,5101:122,-12,-12,0,0,0.521295 -20713,5101:121,-11,-12,0,0,0.516448 -20714,5101:120,-10,-12,0,0,0.512058 -20715,5100:229,-9,-12,0,0,0.506872 -20716,5100:228,-8,-12,0,0,0.501324 -20717,5100:227,-7,-12,0,0,0.494647 -20718,5100:226,-6,-12,0,0,0.48969 -20719,5100:225,-5,-12,0,0,0.488945 -20720,5100:124,-4,-12,0,0,0.488869 -20721,5100:123,-3,-12,0,0,0.490486 -20722,5100:122,-2,-12,0,0,0.491976 -20723,5100:121,-1,-12,0,0,0.493619 -20724,3100:121,0,-12,0,0,0.494313 -20725,3100:121,1,-12,0,0,0.49647 -20726,3100:122,2,-12,0,0,0.493876 -20727,3100:123,3,-12,0,0,0.492104 -20728,3100:124,4,-12,0,0,0.493619 -20729,3100:225,5,-12,0,0,0.498113 -20730,3100:226,6,-12,0,0,0.504201 -20731,3100:227,7,-12,0,0,0.509619 -20732,3100:228,8,-12,0,0,0.513522 -20733,3100:229,9,-12,0,0,0.528674 -20734,3101:120,10,-12,0,0,0.557297 -20735,3101:121,11,-12,0,0,0.559249 -20736,3101:122,12,-12,0,0,0.488561 -20737,3104:121,41,-12,0,0,0.677874 -20738,3104:122,42,-12,0,0,0.684101 -20739,3104:123,43,-12,0,0,0.684701 -20740,3104:124,44,-12,0,0,0.682567 -20741,3104:225,45,-12,0,0,0.68123 -20742,3104:226,46,-12,0,0,0.683413 -20743,3104:227,47,-12,0,0,0.690922 -20744,3105:120,50,-12,0,0,0.636383 -20745,3105:121,51,-12,0,0,0.63343 -20746,3105:122,52,-12,0,0,0.633597 -20747,3105:123,53,-12,0,0,0.631639 -20748,3105:124,54,-12,0,0,0.632571 -20749,3105:225,55,-12,0,0,0.63331 -20750,3105:226,56,-12,0,0,0.633096 -20751,3105:227,57,-12,0,0,0.632547 -20752,3105:228,58,-12,0,0,0.631615 -20753,3105:229,59,-12,0,0,0.629653 -20754,3106:120,60,-12,0,0,0.624583 -20755,3106:121,61,-12,0,0,0.62333 -20756,3106:122,62,-12,0,0,0.624921 -20757,3106:123,63,-12,0,0,0.620745 -20758,3106:124,64,-12,0,0,0.620745 -20759,3106:225,65,-12,0,0,0.619777 -20760,3106:226,66,-12,0,0,0.621011 -20761,3106:227,67,-12,0,0,0.623305 -20762,3106:228,68,-12,0,0,0.623426 -20763,3106:229,69,-12,0,0,0.62147 -20764,3107:120,70,-12,0,0,0.619971 -20765,3107:121,71,-12,0,0,0.619075 -20766,3107:122,72,-12,0,0,0.618566 -20767,3107:124,74,-12,0,0,0.626845 -20768,3107:225,75,-12,0,0,0.634121 -20769,3107:226,76,-12,0,0,0.635764 -20770,3107:227,77,-12,0,0,0.63517 -20771,3107:228,78,-12,0,0,0.632451 -20772,3107:229,79,-12,0,0,0.628934 -20773,3108:120,80,-12,0,0,0.62795 -20774,3108:121,81,-12,0,0,0.625233 -20775,3108:122,82,-12,0,0,0.620914 -20776,3108:123,83,-12,0,0,0.618783 -20777,3108:124,84,-12,0,0,0.616818 -20778,3108:225,85,-12,0,0,0.613973 -20779,3108:226,86,-12,0,0,0.610852 -20780,3108:227,87,-12,0,0,0.607084 -20781,3108:228,88,-12,0,0,0.604361 -20782,3108:229,89,-12,0,0,0.604361 -20783,3109:120,90,-12,0,0,0.60468 -20784,3109:121,91,-12,0,0,0.605613 -20785,3109:122,92,-12,0,0,0.605588 -20786,3109:123,93,-12,0,0,0.604188 -20787,3109:124,94,-12,0,0,0.603156 -20788,3109:225,95,-12,0,0,0.601877 -20789,3109:226,96,-12,0,0,0.59479 -20790,3109:227,97,-12,0,0,0.592708 -20791,3109:228,98,-12,0,0,0.593006 -20792,3109:229,99,-12,0,0,0.601803 -20793,3110:120,100,-12,0,0,0.609948 -20794,3110:121,101,-12,0,0,0.617741 -20795,3110:122,102,-12,0,0,0.627374 -20796,3110:123,103,-12,0,0,0.63312 -20797,3110:124,104,-12,0,0,0.631089 -20798,3110:225,105,-12,0,0,0.619438 -20799,3110:226,106,-12,0,0,0.616211 -20800,3110:227,107,-12,0,0,0.620503 -20801,3110:228,108,-12,0,0,0.628861 -20802,3110:229,109,-12,0,0,0.637951 -20803,3111:120,110,-12,0,0,0.63788 -20804,3111:121,111,-12,0,0,0.638425 -20805,3111:122,112,-12,0,0,0.650151 -20806,3111:123,113,-12,0,0,0.662755 -20807,3111:124,114,-12,0,0,0.671651 -20808,3111:225,115,-12,0,0,0.670109 -20809,3111:226,116,-12,0,0,0.663374 -20810,3111:227,117,-12,0,0,0.665116 -20811,3111:228,118,-12,0,0,0.67113 -21247,5108:100,-80,-10,0,0,0.4843 -20812,3111:229,119,-12,0,0,0.678345 -20813,3112:120,120,-12,0,0,0.674613 -20814,3112:121,121,-12,0,0,0.677067 -20815,3112:122,122,-12,0,0,0.680561 -20816,3112:123,123,-12,0,0,0.686295 -20817,3112:124,124,-12,0,0,0.690022 -20818,3112:225,125,-12,0,0,0.702557 -20819,3112:229,129,-12,0,0,0.714355 -20820,3113:226,136,-12,0,0,0.714355 -20821,3113:227,137,-12,0,0,0.714355 -20822,3113:228,138,-12,0,0,0.702536 -20823,3113:229,139,-12,0,0,0.693876 -20824,3114:120,140,-12,0,0,0.69123 -20825,3114:121,141,-12,0,0,0.692631 -20826,3114:226,146,-12,0,0,0.639255 -20827,3114:227,147,-12,0,0,0.640013 -20828,3114:228,148,-12,0,0,0.642896 -20829,3114:229,149,-12,0,0,0.642848 -20830,3115:120,150,-12,0,0,0.645251 -20831,3115:121,151,-12,0,0,0.644639 -20832,3115:122,152,-12,0,0,0.643886 -20833,3115:123,153,-12,0,0,0.646379 -20834,3115:124,154,-12,0,0,0.647107 -20835,3115:225,155,-12,0,0,0.646073 -20836,3115:226,156,-12,0,0,0.643108 -20837,3115:227,157,-12,0,0,0.639208 -20838,3115:228,158,-12,0,0,0.635646 -20839,3115:229,159,-12,0,0,0.634384 -20840,3116:120,160,-12,0,0,0.633168 -20841,3116:121,161,-12,0,0,0.631878 -20842,3116:122,162,-12,0,0,0.631136 -20843,3116:123,163,-12,0,0,0.630945 -20844,3116:124,164,-12,0,0,0.632045 -20845,3116:225,165,-12,0,0,0.632762 -20846,3116:226,166,-12,0,0,0.631711 -20847,3116:227,167,-12,0,0,0.62333 -20848,3116:228,168,-12,0,0,0.629484 -20849,3116:229,169,-12,0,0,0.634384 -20850,3117:120,170,-12,0,0,0.636265 -20851,3117:121,171,-12,0,0,0.637309 -20852,3117:122,172,-12,0,0,0.635622 -20853,3117:123,173,-12,0,0,0.635622 -20854,3117:124,174,-12,0,0,0.63343 -20855,3117:225,175,-12,0,0,0.631782 -20856,3117:226,176,-12,0,0,0.630706 -20857,3117:227,177,-12,0,0,0.630418 -20858,3117:228,178,-12,0,0,0.631471 -20859,3117:229,179,-12,0,0,0.630802 -20860,3118:120,180,-12,0,0,0.630227 -20861,5118:110,-180,-11,0,0,0.645345 -20862,5117:219,-179,-11,0,0,0.646966 -20863,5117:218,-178,-11,0,0,0.649052 -20864,5117:217,-177,-11,0,0,0.652204 -20865,5117:216,-176,-11,0,0,0.655413 -20866,5117:215,-175,-11,0,0,0.659716 -20867,5117:114,-174,-11,0,0,0.662984 -20868,5117:113,-173,-11,0,0,0.662226 -20869,5117:112,-172,-11,0,0,0.658007 -20870,5117:111,-171,-11,0,0,0.659255 -20871,5117:110,-170,-11,0,0,0.660063 -20872,5116:219,-169,-11,0,0,0.66172 -20873,5116:218,-168,-11,0,0,0.663443 -20874,5116:217,-167,-11,0,0,0.665161 -20875,5116:216,-166,-11,0,0,0.665779 -20876,5116:215,-165,-11,0,0,0.666716 -20877,5116:114,-164,-11,0,0,0.667583 -20878,5116:113,-163,-11,0,0,0.669131 -20879,5116:112,-162,-11,0,0,0.668882 -20880,5116:111,-161,-11,0,0,0.669904 -20881,5116:110,-160,-11,0,0,0.669381 -20882,5115:219,-159,-11,0,0,0.669927 -20883,5115:218,-158,-11,0,0,0.670767 -20884,5115:217,-157,-11,0,0,0.671832 -20885,5115:216,-156,-11,0,0,0.672014 -20886,5115:215,-155,-11,0,0,0.67113 -20887,5115:114,-154,-11,0,0,0.669472 -20888,5115:113,-153,-11,0,0,0.668722 -20889,5115:112,-152,-11,0,0,0.668745 -20890,5115:111,-151,-11,0,0,0.668586 -20891,5115:110,-150,-11,0,0,0.667583 -20892,5114:219,-149,-11,0,0,0.666761 -20893,5114:218,-148,-11,0,0,0.666191 -20894,5114:217,-147,-11,0,0,0.664131 -20895,5114:216,-146,-11,0,0,0.662019 -20896,5114:215,-145,-11,0,0,0.660523 -20897,5114:114,-144,-11,0,0,0.659671 -20898,5114:113,-143,-11,0,0,0.658932 -20899,5114:112,-142,-11,0,0,0.658424 -20900,5114:111,-141,-11,0,0,0.658516 -20901,5114:110,-140,-11,0,0,0.657198 -20902,5113:219,-139,-11,0,0,0.656735 -20903,5113:218,-138,-11,0,0,0.655112 -20904,5113:217,-137,-11,0,0,0.653927 -20905,5113:216,-136,-11,0,0,0.651201 -20906,5113:215,-135,-11,0,0,0.650407 -20907,5113:114,-134,-11,0,0,0.647575 -20908,5113:113,-133,-11,0,0,0.64605 -20909,5113:112,-132,-11,0,0,0.644969 -20910,5113:111,-131,-11,0,0,0.641786 -20911,5113:110,-130,-11,0,0,0.638852 -20912,5112:219,-129,-11,0,0,0.633835 -20913,5112:218,-128,-11,0,0,0.630203 -20914,5112:217,-127,-11,0,0,0.628526 -20915,5112:216,-126,-11,0,0,0.623378 -20916,5112:215,-125,-11,0,0,0.621422 -20917,5112:114,-124,-11,0,0,0.618783 -20918,5112:113,-123,-11,0,0,0.614972 -20919,5112:112,-122,-11,0,0,0.61134 -20920,5112:111,-121,-11,0,0,0.608652 -20921,5112:110,-120,-11,0,0,0.605122 -20922,5111:219,-119,-11,0,0,0.601113 -20923,5111:218,-118,-11,0,0,0.595211 -20924,5111:217,-117,-11,0,0,0.588585 -20925,5111:216,-116,-11,0,0,0.582126 -20926,5111:215,-115,-11,0,0,0.57476 -20927,5111:114,-114,-11,0,0,0.567992 -20928,5111:113,-113,-11,0,0,0.562943 -20929,5111:112,-112,-11,0,0,0.557273 -20930,5111:111,-111,-11,0,0,0.554812 -20931,5111:110,-110,-11,0,0,0.550393 -20932,5110:219,-109,-11,0,0,0.544564 -20933,5110:218,-108,-11,0,0,0.535171 -20934,5110:217,-107,-11,0,0,0.527112 -20935,5110:216,-106,-11,0,0,0.522167 -20936,5110:215,-105,-11,0,0,0.515755 -20937,5110:114,-104,-11,0,0,0.511109 -20938,5110:113,-103,-11,0,0,0.505793 -20939,5110:112,-102,-11,0,0,0.498679 -20940,5110:111,-101,-11,0,0,0.492027 -20941,5110:110,-100,-11,0,0,0.483684 -20942,5109:219,-99,-11,0,0,0.477862 -20943,5109:218,-98,-11,0,0,0.474966 -20944,5109:217,-97,-11,0,0,0.46813 -20945,5109:216,-96,-11,0,0,0.46409 -20946,5109:215,-95,-11,0,0,0.460489 -20947,5109:114,-94,-11,0,0,0.455899 -20948,5109:113,-93,-11,0,0,0.4519 -20949,5109:112,-92,-11,0,0,0.4441 -20950,5109:111,-91,-11,0,0,0.441919 -20951,5109:110,-90,-11,0,0,0.439995 -20952,5108:219,-89,-11,0,0,0.430046 -20953,5108:218,-88,-11,0,0,0.431154 -20954,5108:217,-87,-11,0,0,0.431885 -20955,5108:216,-86,-11,0,0,0.431582 -20956,5108:215,-85,-11,0,0,0.437768 -20957,5108:114,-84,-11,0,0,0.4404 -20958,5108:113,-83,-11,0,0,0.447501 -20959,5108:112,-82,-11,0,0,0.451696 -20960,5108:111,-81,-11,0,0,0.455923 -20961,5108:110,-80,-11,0,0,0.461076 -20962,5107:219,-79,-11,0,0,0.472302 -20963,5107:218,-78,-11,0,0,0.465778 -20964,5107:217,-77,-11,0,0,0.439185 -20965,5103:219,-39,-11,0,0,0.620914 -20966,5103:218,-38,-11,0,0,0.631615 -20967,5103:217,-37,-11,0,0,0.625907 -20968,5103:216,-36,-11,0,0,0.624318 -20969,5103:215,-35,-11,0,0,0.622944 -20970,5103:114,-34,-11,0,0,0.618517 -20971,5103:113,-33,-11,0,0,0.616211 -20972,5103:112,-32,-11,0,0,0.61256 -20973,5103:111,-31,-11,0,0,0.608358 -20974,5103:110,-30,-11,0,0,0.605417 -20975,5102:219,-29,-11,0,0,0.601606 -20976,5102:218,-28,-11,0,0,0.596275 -20977,5102:217,-27,-11,0,0,0.594344 -20978,5102:216,-26,-11,0,0,0.587141 -20979,5102:215,-25,-11,0,0,0.581851 -20980,5102:114,-24,-11,0,0,0.581576 -20981,5102:113,-23,-11,0,0,0.576316 -20982,5102:112,-22,-11,0,0,0.573605 -20983,5102:111,-21,-11,0,0,0.570511 -20984,5102:110,-20,-11,0,0,0.56663 -20985,5101:219,-19,-11,0,0,0.562538 -20986,5101:218,-18,-11,0,0,0.556664 -20987,5101:217,-17,-11,0,0,0.551435 -20988,5101:216,-16,-11,0,0,0.543646 -20989,5101:215,-15,-11,0,0,0.539182 -20990,5101:114,-14,-11,0,0,0.532333 -20991,5101:113,-13,-11,0,0,0.528136 -20992,5101:112,-12,-11,0,0,0.523448 -20993,5101:111,-11,-11,0,0,0.519269 -20994,5101:110,-10,-11,0,0,0.515062 -20995,5100:219,-9,-11,0,0,0.51116 -20996,5100:218,-8,-11,0,0,0.507283 -20997,5100:217,-7,-11,0,0,0.504253 -20998,5100:216,-6,-11,0,0,0.506101 -20999,5100:215,-5,-11,0,0,0.504869 -21000,5100:114,-4,-11,0,0,0.503045 -21001,5100:113,-3,-11,0,0,0.504663 -21002,5100:112,-2,-11,0,0,0.504715 -21003,5100:111,-1,-11,0,0,0.507129 -21004,3100:111,0,-11,0,0,0.505614 -21005,3100:111,1,-11,0,0,0.504971 -21006,3100:112,2,-11,0,0,0.502249 -21007,3100:113,3,-11,0,0,0.502223 -21008,3100:114,4,-11,0,0,0.506153 -21009,3100:215,5,-11,0,0,0.512136 -21010,3100:216,6,-11,0,0,0.522372 -21011,3100:217,7,-11,0,0,0.527599 -21012,3100:218,8,-11,0,0,0.536934 -21013,3100:219,9,-11,0,0,0.55973 -21014,3101:110,10,-11,0,0,0.578072 -21015,3101:111,11,-11,0,0,0.57358 -21016,3101:112,12,-11,0,0,0.543187 -21017,3104:111,41,-11,0,0,0.673574 -21018,3104:112,42,-11,0,0,0.673371 -21019,3104:113,43,-11,0,0,0.671153 -21020,3104:114,44,-11,0,0,0.674793 -21021,3104:215,45,-11,0,0,0.67774 -21022,3104:216,46,-11,0,0,0.664062 -21023,3104:217,47,-11,0,0,0.656295 -21024,3104:218,48,-11,0,0,0.658771 -21025,3105:110,50,-11,0,0,0.63769 -21026,3105:111,51,-11,0,0,0.638473 -21027,3105:112,52,-11,0,0,0.639776 -21028,3105:113,53,-11,0,0,0.638307 -21029,3105:114,54,-11,0,0,0.641432 -21030,3105:215,55,-11,0,0,0.644545 -21031,3105:216,56,-11,0,0,0.645815 -21032,3105:217,57,-11,0,0,0.644828 -21033,3105:218,58,-11,0,0,0.642565 -21034,3105:219,59,-11,0,0,0.639918 -21035,3106:110,60,-11,0,0,0.636574 -21036,3106:111,61,-11,0,0,0.636431 -21037,3106:112,62,-11,0,0,0.632881 -21038,3106:113,63,-11,0,0,0.629772 -21039,3106:114,64,-11,0,0,0.630778 -21040,3106:215,65,-11,0,0,0.632236 -21041,3106:216,66,-11,0,0,0.635027 -21042,3106:217,67,-11,0,0,0.63833 -21043,3106:218,68,-11,0,0,0.640391 -21044,3106:219,69,-11,0,0,0.641337 -21045,3107:110,70,-11,0,0,0.640107 -21046,3107:111,71,-11,0,0,0.638069 -21047,3107:112,72,-11,0,0,0.638662 -21048,3107:114,74,-11,0,0,0.642329 -21049,3107:215,75,-11,0,0,0.643932 -21050,3107:216,76,-11,0,0,0.64431 -21051,3107:217,77,-11,0,0,0.643202 -21052,3107:218,78,-11,0,0,0.640935 -21053,3107:219,79,-11,0,0,0.637856 -21054,3108:110,80,-11,0,0,0.633406 -21055,3108:111,81,-11,0,0,0.629221 -21056,3108:112,82,-11,0,0,0.625402 -21057,3108:113,83,-11,0,0,0.621881 -21058,3108:114,84,-11,0,0,0.61842 -21059,3108:215,85,-11,0,0,0.61592 -21060,3108:216,86,-11,0,0,0.613559 -21061,3108:217,87,-11,0,0,0.612609 -21062,3108:218,88,-11,0,0,0.612341 -21063,3108:219,89,-11,0,0,0.612755 -21064,3109:110,90,-11,0,0,0.614461 -21065,3109:111,91,-11,0,0,0.617134 -21066,3109:112,92,-11,0,0,0.617547 -21067,3109:113,93,-11,0,0,0.614339 -21068,3109:114,94,-11,0,0,0.610705 -21069,3109:215,95,-11,0,0,0.60777 -21070,3109:216,96,-11,0,0,0.606594 -21071,3109:217,97,-11,0,0,0.606986 -21072,3109:218,98,-11,0,0,0.605441 -21073,3109:219,99,-11,0,0,0.608554 -21074,3110:110,100,-11,0,0,0.614728 -21075,3110:111,101,-11,0,0,0.62557 -21076,3110:112,102,-11,0,0,0.629581 -21077,3110:113,103,-11,0,0,0.633168 -21078,3110:114,104,-11,0,0,0.636526 -21079,3110:215,105,-11,0,0,0.630203 -21080,3110:216,106,-11,0,0,0.627037 -21081,3110:217,107,-11,0,0,0.637286 -21082,3110:218,108,-11,0,0,0.647482 -21083,3110:219,109,-11,0,0,0.657407 -21084,3111:110,110,-11,0,0,0.659209 -21085,3111:111,111,-11,0,0,0.663145 -21086,3111:112,112,-11,0,0,0.668062 -21087,3111:113,113,-11,0,0,0.673168 -21088,3111:114,114,-11,0,0,0.677336 -21089,3111:215,115,-11,0,0,0.678166 -21090,3111:216,116,-11,0,0,0.67792 -21091,3111:217,117,-11,0,0,0.679532 -21092,3111:218,118,-11,0,0,0.680159 -21093,3111:219,119,-11,0,0,0.680382 -21094,3112:110,120,-11,0,0,0.679644 -21095,3112:111,121,-11,0,0,0.681632 -21096,3112:112,122,-11,0,0,0.681609 -21097,3112:113,123,-11,0,0,0.683991 -21098,3112:114,124,-11,0,0,0.691054 -21099,3112:215,125,-11,0,0,0.697292 -21100,3112:216,126,-11,0,0,0.699024 -21101,3112:217,127,-11,0,0,0.698029 -21102,3112:218,128,-11,0,0,0.69924 -21103,3112:219,129,-11,0,0,0.703244 -21104,3113:110,130,-11,0,0,0.714355 -21105,3113:217,137,-11,0,0,0.70485 -21106,3113:218,138,-11,0,0,0.683835 -21107,3113:219,139,-11,0,0,0.677224 -21108,3114:110,140,-11,0,0,0.682813 -21109,3114:111,141,-11,0,0,0.68718 -21110,3114:114,144,-11,0,0,0.664108 -21111,3114:215,145,-11,0,0,0.641904 -21112,3114:216,146,-11,0,0,0.642612 -21113,3114:217,147,-11,0,0,0.643603 -21114,3114:218,148,-11,0,0,0.648607 -21115,3114:219,149,-11,0,0,0.652787 -21116,3115:110,150,-11,0,0,0.653624 -21117,3115:111,151,-11,0,0,0.656619 -21118,3115:112,152,-11,0,0,0.655321 -21119,3115:113,153,-11,0,0,0.657638 -21120,3115:114,154,-11,0,0,0.659855 -21121,3115:215,155,-11,0,0,0.660478 -21122,3115:216,156,-11,0,0,0.658308 -21123,3115:217,157,-11,0,0,0.654183 -21124,3115:218,158,-11,0,0,0.651458 -21125,3115:219,159,-11,0,0,0.649379 -21126,3116:110,160,-11,0,0,0.646872 -21127,3116:111,161,-11,0,0,0.645134 -21128,3116:112,162,-11,0,0,0.64478 -21129,3116:113,163,-11,0,0,0.644898 -21130,3116:114,164,-11,0,0,0.645698 -21131,3116:215,165,-11,0,0,0.646215 -21132,3116:216,166,-11,0,0,0.646801 -21133,3116:217,167,-11,0,0,0.646801 -21134,3116:218,168,-11,0,0,0.646426 -21135,3116:219,169,-11,0,0,0.649356 -21136,3117:110,170,-11,0,0,0.649613 -21137,3117:111,171,-11,0,0,0.648841 -21138,3117:112,172,-11,0,0,0.64856 -21139,3117:113,173,-11,0,0,0.646849 -21140,3117:114,174,-11,0,0,0.644498 -21141,3117:215,175,-11,0,0,0.643532 -21142,3117:216,176,-11,0,0,0.643084 -21143,3117:217,177,-11,0,0,0.642117 -21144,3117:218,178,-11,0,0,0.642872 -21145,3117:219,179,-11,0,0,0.643932 -21146,3118:110,180,-11,0,0,0.645345 -21147,5118:100,-180,-10,0,0,0.655437 -21148,5117:209,-179,-10,0,0,0.658146 -21149,5117:208,-178,-10,0,0,0.66103 -21150,5117:207,-177,-10,0,0,0.66365 -21151,5117:206,-176,-10,0,0,0.667241 -21152,5117:205,-175,-10,0,0,0.669768 -21153,5117:104,-174,-10,0,0,0.670495 -21154,5117:103,-173,-10,0,0,0.669541 -21155,5117:102,-172,-10,0,0,0.668358 -21156,5117:101,-171,-10,0,0,0.668312 -21157,5117:100,-170,-10,0,0,0.668768 -21158,5116:209,-169,-10,0,0,0.668608 -21159,5116:208,-168,-10,0,0,0.668631 -21160,5116:207,-167,-10,0,0,0.670223 -21161,5116:206,-166,-10,0,0,0.673168 -21162,5116:205,-165,-10,0,0,0.673665 -21163,5116:104,-164,-10,0,0,0.674455 -21164,5116:103,-163,-10,0,0,0.674906 -21165,5116:102,-162,-10,0,0,0.675424 -21166,5116:101,-161,-10,0,0,0.676324 -21167,5116:100,-160,-10,0,0,0.67468 -21168,5115:209,-159,-10,0,0,0.675131 -21169,5115:208,-158,-10,0,0,0.674883 -21170,5115:207,-157,-10,0,0,0.674771 -21171,5115:206,-156,-10,0,0,0.675154 -21172,5115:205,-155,-10,0,0,0.673371 -21173,5115:104,-154,-10,0,0,0.671221 -21174,5115:103,-153,-10,0,0,0.669836 -21175,5115:102,-152,-10,0,0,0.669131 -21176,5115:101,-151,-10,0,0,0.667902 -21177,5115:100,-150,-10,0,0,0.667446 -21178,5114:209,-149,-10,0,0,0.666579 -21179,5114:208,-148,-10,0,0,0.665139 -21180,5114:207,-147,-10,0,0,0.663099 -21181,5114:206,-146,-10,0,0,0.662226 -21182,5114:205,-145,-10,0,0,0.660869 -21183,5114:104,-144,-10,0,0,0.658978 -21184,5114:103,-143,-10,0,0,0.656712 -21185,5114:102,-142,-10,0,0,0.655669 -21186,5114:101,-141,-10,0,0,0.653881 -21187,5114:100,-140,-10,0,0,0.652461 -21188,5113:209,-139,-10,0,0,0.651762 -21189,5113:208,-138,-10,0,0,0.648817 -21190,5113:207,-137,-10,0,0,0.647646 -21191,5113:206,-136,-10,0,0,0.64478 -21192,5113:205,-135,-10,0,0,0.642471 -21193,5113:104,-134,-10,0,0,0.64103 -21194,5113:103,-133,-10,0,0,0.639586 -21195,5113:102,-132,-10,0,0,0.637167 -21196,5113:101,-131,-10,0,0,0.632833 -21197,5113:100,-130,-10,0,0,0.633024 -21198,5112:209,-129,-10,0,0,0.629892 -21199,5112:208,-128,-10,0,0,0.62545 -21200,5112:207,-127,-10,0,0,0.621736 -21201,5112:206,-126,-10,0,0,0.621688 -21202,5112:205,-125,-10,0,0,0.615336 -21203,5112:104,-124,-10,0,0,0.615433 -21204,5112:103,-123,-10,0,0,0.609874 -21205,5112:102,-122,-10,0,0,0.603476 -21206,5112:101,-121,-10,0,0,0.600226 -21207,5112:100,-120,-10,0,0,0.595508 -21208,5111:209,-119,-10,0,0,0.593427 -21209,5111:208,-118,-10,0,0,0.587639 -21210,5111:207,-117,-10,0,0,0.582626 -21211,5111:206,-116,-10,0,0,0.578046 -21212,5111:205,-115,-10,0,0,0.572222 -21213,5111:104,-114,-10,0,0,0.566731 -21214,5111:103,-113,-10,0,0,0.559502 -21215,5111:102,-112,-10,0,0,0.55466 -21216,5111:101,-111,-10,0,0,0.552374 -21217,5111:100,-110,-10,0,0,0.544029 -21218,5110:209,-109,-10,0,0,0.540126 -21219,5110:208,-108,-10,0,0,0.533996 -21220,5110:207,-107,-10,0,0,0.527624 -21221,5110:206,-106,-10,0,0,0.522679 -21222,5110:205,-105,-10,0,0,0.515524 -21223,5110:104,-104,-10,0,0,0.509132 -21224,5110:103,-103,-10,0,0,0.50474 -21225,5110:102,-102,-10,0,0,0.502378 -21226,5110:101,-101,-10,0,0,0.496932 -21227,5110:100,-100,-10,0,0,0.490922 -21228,5109:209,-99,-10,0,0,0.485994 -21229,5109:208,-98,-10,0,0,0.480811 -21230,5109:207,-97,-10,0,0,0.476964 -21231,5109:206,-96,-10,0,0,0.472686 -21232,5109:205,-95,-10,0,0,0.464985 -21233,5109:104,-94,-10,0,0,0.457658 -21234,5109:103,-93,-10,0,0,0.458397 -21235,5109:102,-92,-10,0,0,0.457862 -21236,5109:101,-91,-10,0,0,0.459647 -21237,5109:100,-90,-10,0,0,0.458448 -21238,5108:209,-89,-10,0,0,0.456179 -21239,5108:208,-88,-10,0,0,0.454497 -21240,5108:207,-87,-10,0,0,0.45804 -21241,5108:206,-86,-10,0,0,0.462098 -21242,5108:205,-85,-10,0,0,0.464474 -21243,5108:104,-84,-10,0,0,0.467133 -21248,5107:209,-79,-10,0,0,0.486635 -21249,5107:208,-78,-10,0,0,0.463426 -21250,5103:207,-37,-10,0,0,0.626629 -21251,5103:206,-36,-10,0,0,0.625402 -21252,5103:205,-35,-10,0,0,0.622774 -21253,5103:104,-34,-10,0,0,0.619898 -21254,5103:103,-33,-10,0,0,0.616357 -21255,5103:102,-32,-10,0,0,0.614412 -21256,5103:101,-31,-10,0,0,0.609067 -21257,5103:100,-30,-10,0,0,0.606912 -21258,5102:209,-29,-10,0,0,0.602541 -21259,5102:208,-28,-10,0,0,0.598598 -21260,5102:207,-27,-10,0,0,0.59427 -21261,5102:206,-26,-10,0,0,0.591046 -21262,5102:205,-25,-10,0,0,0.588634 -21263,5102:104,-24,-10,0,0,0.583175 -21264,5102:103,-23,-10,0,0,0.582526 -21265,5102:102,-22,-10,0,0,0.577821 -21266,5102:101,-21,-10,0,0,0.573303 -21267,5102:100,-20,-10,0,0,0.569051 -21268,5101:209,-19,-10,0,0,0.563019 -21269,5101:208,-18,-10,0,0,0.557095 -21270,5101:207,-17,-10,0,0,0.55268 -21271,5101:206,-16,-10,0,0,0.551892 -21272,5101:205,-15,-10,0,0,0.551078 -21273,5101:104,-14,-10,0,0,0.54209 -21274,5101:103,-13,-10,0,0,0.537701 -21275,5101:102,-12,-10,0,0,0.535095 -21276,5101:101,-11,-10,0,0,0.533177 -21277,5101:100,-10,-10,0,0,0.534685 -21278,5100:209,-9,-10,0,0,0.526881 -21279,5100:208,-8,-10,0,0,0.523807 -21280,5100:207,-7,-10,0,0,0.521884 -21281,5100:206,-6,-10,0,0,0.528008 -21282,5100:205,-5,-10,0,0,0.522141 -21283,5100:104,-4,-10,0,0,0.522961 -21284,5100:103,-3,-10,0,0,0.521269 -21285,5100:102,-2,-10,0,0,0.519141 -21286,5100:101,-1,-10,0,0,0.517884 -21287,3100:101,0,-10,0,0,0.519679 -21288,3100:101,1,-10,0,0,0.521141 -21289,3100:102,2,-10,0,0,0.519295 -21290,3100:103,3,-10,0,0,0.523602 -21291,3100:104,4,-10,0,0,0.530977 -21292,3100:205,5,-10,0,0,0.537241 -21293,3100:206,6,-10,0,0,0.544538 -21294,3100:207,7,-10,0,0,0.550722 -21295,3100:208,8,-10,0,0,0.565999 -21296,3100:209,9,-10,0,0,0.586343 -21297,3101:100,10,-10,0,0,0.597733 -21298,3101:101,11,-10,0,0,0.606668 -21299,3101:102,12,-10,0,0,0.609312 -21300,3101:103,13,-10,0,0,0.578247 -21301,3104:101,41,-10,0,0,0.66587 -21302,3104:102,42,-10,0,0,0.661583 -21303,3104:104,44,-10,0,0,0.658701 -21304,3104:205,45,-10,0,0,0.651902 -21305,3104:206,46,-10,0,0,0.647482 -21306,3104:207,47,-10,0,0,0.64565 -21307,3104:208,48,-10,0,0,0.642188 -21308,3104:209,49,-10,0,0,0.637808 -21309,3105:100,50,-10,0,0,0.639539 -21310,3105:101,51,-10,0,0,0.643202 -21311,3105:102,52,-10,0,0,0.646943 -21312,3105:103,53,-10,0,0,0.646285 -21313,3105:104,54,-10,0,0,0.648208 -21314,3105:205,55,-10,0,0,0.651435 -21315,3105:206,56,-10,0,0,0.653112 -21316,3105:207,57,-10,0,0,0.653183 -21317,3105:208,58,-10,0,0,0.651178 -21318,3105:209,59,-10,0,0,0.648467 -21319,3106:100,60,-10,0,0,0.64565 -21320,3106:101,61,-10,0,0,0.64155 -21321,3106:102,62,-10,0,0,0.638638 -21322,3106:103,63,-10,0,0,0.641361 -21323,3106:104,64,-10,0,0,0.644969 -21324,3106:205,65,-10,0,0,0.648489 -21325,3106:206,66,-10,0,0,0.650851 -21326,3106:207,67,-10,0,0,0.652158 -21327,3106:208,68,-10,0,0,0.652671 -21328,3106:209,69,-10,0,0,0.65253 -21329,3107:100,70,-10,0,0,0.652134 -21330,3107:101,71,-10,0,0,0.652088 -21331,3107:102,72,-10,0,0,0.652601 -21332,3107:104,74,-10,0,0,0.651389 -21333,3107:205,75,-10,0,0,0.649473 -21334,3107:206,76,-10,0,0,0.647529 -21335,3107:207,77,-10,0,0,0.644945 -21336,3107:208,78,-10,0,0,0.641975 -21337,3107:209,79,-10,0,0,0.638402 -21338,3108:100,80,-10,0,0,0.635313 -21339,3108:101,81,-10,0,0,0.632356 -21340,3108:102,82,-10,0,0,0.629461 -21341,3108:103,83,-10,0,0,0.626461 -21342,3108:104,84,-10,0,0,0.624004 -21343,3108:205,85,-10,0,0,0.621688 -21344,3108:206,86,-10,0,0,0.620237 -21345,3108:207,87,-10,0,0,0.619705 -21346,3108:208,88,-10,0,0,0.619195 -21347,3108:209,89,-10,0,0,0.618105 -21348,3109:100,90,-10,0,0,0.617571 -21349,3109:101,91,-10,0,0,0.618638 -21350,3109:102,92,-10,0,0,0.621978 -21351,3109:103,93,-10,0,0,0.623836 -21352,3109:104,94,-10,0,0,0.622799 -21353,3109:205,95,-10,0,0,0.620431 -21354,3109:206,96,-10,0,0,0.618493 -21355,3109:207,97,-10,0,0,0.616576 -21356,3109:208,98,-10,0,0,0.615336 -21357,3109:209,99,-10,0,0,0.616916 -21358,3110:100,100,-10,0,0,0.622895 -21359,3110:101,101,-10,0,0,0.630514 -21360,3110:102,102,-10,0,0,0.63343 -21361,3110:103,103,-10,0,0,0.63374 -21362,3110:104,104,-10,0,0,0.635764 -21363,3110:205,105,-10,0,0,0.637975 -21364,3110:206,106,-10,0,0,0.636122 -21365,3110:207,107,-10,0,0,0.636098 -21366,3110:208,108,-10,0,0,0.648911 -21367,3110:209,109,-10,0,0,0.660846 -21368,3111:100,110,-10,0,0,0.660478 -21369,3111:101,111,-10,0,0,0.664085 -21370,3111:102,112,-10,0,0,0.669245 -21371,3111:103,113,-10,0,0,0.67319 -21372,3111:104,114,-10,0,0,0.677313 -21373,3111:205,115,-10,0,0,0.680248 -21374,3111:206,116,-10,0,0,0.681632 -21375,3111:207,117,-10,0,0,0.681743 -21376,3111:208,118,-10,0,0,0.681677 -21377,3111:209,119,-10,0,0,0.681609 -21378,3112:100,120,-10,0,0,0.680382 -21379,3112:101,121,-10,0,0,0.680739 -21380,3112:102,122,-10,0,0,0.68408 -21381,3112:103,123,-10,0,0,0.685454 -21382,3112:104,124,-10,0,0,0.683435 -21383,3112:205,125,-10,0,0,0.689692 -21384,3112:206,126,-10,0,0,0.6974 -21385,3112:207,127,-10,0,0,0.699348 -21386,3112:208,128,-10,0,0,0.703051 -21387,3112:209,129,-10,0,0,0.706343 -21388,3113:100,130,-10,0,0,0.714355 -21389,3113:102,132,-10,0,0,0.714355 -21390,3113:104,134,-10,0,0,0.714355 -21391,3113:205,135,-10,0,0,0.710101 -21392,3113:206,136,-10,0,0,0.704336 -21393,3113:207,137,-10,0,0,0.698224 -21394,3113:208,138,-10,0,0,0.673349 -21395,3113:209,139,-10,0,0,0.671606 -21396,3114:100,140,-10,0,0,0.678099 -21397,3114:101,141,-10,0,0,0.683346 -21398,3114:102,142,-10,0,0,0.688437 -21399,3114:104,144,-10,0,0,0.656156 -21400,3114:205,145,-10,0,0,0.649192 -21401,3114:206,146,-10,0,0,0.651924 -21402,3114:207,147,-10,0,0,0.647459 -21403,3114:208,148,-10,0,0,0.646731 -21404,3114:209,149,-10,0,0,0.650875 -21405,3115:100,150,-10,0,0,0.654136 -21406,3115:101,151,-10,0,0,0.66326 -21407,3115:102,152,-10,0,0,0.666465 -21408,3115:103,153,-10,0,0,0.666076 -21409,3115:104,154,-10,0,0,0.664383 -21410,3115:205,155,-10,0,0,0.671402 -21411,3115:206,156,-10,0,0,0.67172 -21412,3115:207,157,-10,0,0,0.669427 -21413,3115:208,158,-10,0,0,0.66879 -21414,3115:209,159,-10,0,0,0.667332 -21415,3116:100,160,-10,0,0,0.661697 -21416,3116:101,161,-10,0,0,0.657708 -21417,3116:102,162,-10,0,0,0.658285 -21418,3116:103,163,-10,0,0,0.658863 -21419,3116:104,164,-10,0,0,0.659647 -21420,3116:205,165,-10,0,0,0.659901 -21421,3116:206,166,-10,0,0,0.659694 -21422,3116:207,167,-10,0,0,0.660339 -21423,3116:208,168,-10,0,0,0.661168 -21424,3116:209,169,-10,0,0,0.661744 -21425,3117:100,170,-10,0,0,0.661214 -21426,3117:101,171,-10,0,0,0.659971 -21427,3117:102,172,-10,0,0,0.658216 -21428,3117:103,173,-10,0,0,0.655344 -21429,3117:104,174,-10,0,0,0.653322 -21430,3117:205,175,-10,0,0,0.653508 -21431,3117:206,176,-10,0,0,0.653322 -21432,3117:207,177,-10,0,0,0.653974 -21433,3117:208,178,-10,0,0,0.653904 -21434,3117:209,179,-10,0,0,0.653881 -21435,3118:100,180,-10,0,0,0.655437 -21436,5018:390,-180,-9,0,0,0.664246 -21437,5017:499,-179,-9,0,0,0.666191 -21438,5017:498,-178,-9,0,0,0.668085 -21439,5017:497,-177,-9,0,0,0.670699 -21440,5017:496,-176,-9,0,0,0.672784 -21441,5017:495,-175,-9,0,0,0.673439 -21442,5017:394,-174,-9,0,0,0.673733 -21443,5017:393,-173,-9,0,0,0.673755 -21444,5017:392,-172,-9,0,0,0.673326 -21445,5017:391,-171,-9,0,0,0.673032 -21446,5017:390,-170,-9,0,0,0.674026 -21447,5016:499,-169,-9,0,0,0.674793 -21448,5016:498,-168,-9,0,0,0.675334 -21449,5016:497,-167,-9,0,0,0.675109 -21450,5016:496,-166,-9,0,0,0.675379 -21451,5016:495,-165,-9,0,0,0.676437 -21452,5016:394,-164,-9,0,0,0.677852 -21453,5016:393,-163,-9,0,0,0.678211 -21454,5016:392,-162,-9,0,0,0.678211 -21455,5016:391,-161,-9,0,0,0.678413 -21456,5016:390,-160,-9,0,0,0.678323 -21457,5015:499,-159,-9,0,0,0.678189 -21458,5015:498,-158,-9,0,0,0.677874 -21459,5015:497,-157,-9,0,0,0.676909 -21460,5015:496,-156,-9,0,0,0.675424 -21461,5015:495,-155,-9,0,0,0.673258 -21462,5015:394,-154,-9,0,0,0.671923 -21463,5015:393,-153,-9,0,0,0.670336 -21464,5015:392,-152,-9,0,0,0.668494 -21465,5015:391,-151,-9,0,0,0.66699 -21466,5015:390,-150,-9,0,0,0.665665 -21467,5014:499,-149,-9,0,0,0.66507 -21468,5014:498,-148,-9,0,0,0.661237 -21469,5014:497,-147,-9,0,0,0.659579 -21470,5014:496,-146,-9,0,0,0.658262 -21471,5014:495,-145,-9,0,0,0.658816 -21472,5014:394,-144,-9,0,0,0.656318 -21473,5014:393,-143,-9,0,0,0.654136 -21474,5014:392,-142,-9,0,0,0.652018 -21475,5014:391,-141,-9,0,0,0.650174 -21476,5014:390,-140,-9,0,0,0.648654 -21477,5013:499,-139,-9,0,0,0.646261 -21478,5013:498,-138,-9,0,0,0.643532 -21479,5013:497,-137,-9,0,0,0.641928 -21480,5013:496,-136,-9,0,0,0.64025 -21481,5013:495,-135,-9,0,0,0.636288 -21482,5013:394,-134,-9,0,0,0.63312 -21483,5013:393,-133,-9,0,0,0.630011 -21484,5013:392,-132,-9,0,0,0.628838 -21485,5013:391,-131,-9,0,0,0.624294 -21486,5013:390,-130,-9,0,0,0.622436 -21487,5012:499,-129,-9,0,0,0.618396 -21488,5012:498,-128,-9,0,0,0.617183 -21489,5012:497,-127,-9,0,0,0.613681 -21490,5012:496,-126,-9,0,0,0.608897 -21491,5012:495,-125,-9,0,0,0.607329 -21492,5012:394,-124,-9,0,0,0.603869 -21493,5012:393,-123,-9,0,0,0.59998 -21494,5012:392,-122,-9,0,0,0.595805 -21495,5012:391,-121,-9,0,0,0.591964 -21496,5012:390,-120,-9,0,0,0.587738 -21497,5011:499,-119,-9,0,0,0.583774 -21498,5011:498,-118,-9,0,0,0.57717 -21499,5011:497,-117,-9,0,0,0.571745 -21500,5011:496,-116,-9,0,0,0.567942 -21501,5011:495,-115,-9,0,0,0.563145 -21502,5011:394,-114,-9,0,0,0.557146 -21503,5011:393,-113,-9,0,0,0.551359 -21504,5011:392,-112,-9,0,0,0.544945 -21505,5011:391,-111,-9,0,0,0.539948 -21506,5011:390,-110,-9,0,0,0.535836 -21507,5010:499,-109,-9,0,0,0.532077 -21508,5010:498,-108,-9,0,0,0.527599 -21509,5010:497,-107,-9,0,0,0.523243 -21510,5010:496,-106,-9,0,0,0.519038 -21511,5010:495,-105,-9,0,0,0.514625 -21512,5010:394,-104,-9,0,0,0.510904 -21513,5010:393,-103,-9,0,0,0.508849 -21514,5010:392,-102,-9,0,0,0.505819 -21515,5010:391,-101,-9,0,0,0.501016 -21516,5010:390,-100,-9,0,0,0.495108 -21517,5009:499,-99,-9,0,0,0.492668 -21518,5009:498,-98,-9,0,0,0.491898 -21519,5009:497,-97,-9,0,0,0.488638 -21520,5009:496,-96,-9,0,0,0.486225 -21521,5009:495,-95,-9,0,0,0.478708 -21522,5009:394,-94,-9,0,0,0.476068 -21523,5009:393,-93,-9,0,0,0.480093 -21524,5009:392,-92,-9,0,0,0.485146 -21525,5009:391,-91,-9,0,0,0.484454 -21526,5009:390,-90,-9,0,0,0.488304 -21527,5008:499,-89,-9,0,0,0.488278 -21528,5008:498,-88,-9,0,0,0.488175 -21529,5008:497,-87,-9,0,0,0.488124 -21530,5008:496,-86,-9,0,0,0.48951 -21531,5008:495,-85,-9,0,0,0.489792 -21532,5008:394,-84,-9,0,0,0.491025 -21533,5008:393,-83,-9,0,0,0.4929 -21534,5008:392,-82,-9,0,0,0.495005 -21535,5008:391,-81,-9,0,0,0.492951 -21536,5008:390,-80,-9,0,0,0.488278 -21537,5007:499,-79,-9,0,0,0.480169 -21538,5003:496,-36,-9,0,0,0.62316 -21539,5003:495,-35,-9,0,0,0.625209 -21540,5003:394,-34,-9,0,0,0.618905 -21541,5003:393,-33,-9,0,0,0.615263 -21542,5003:392,-32,-9,0,0,0.611633 -21543,5003:391,-31,-9,0,0,0.609141 -21544,5003:390,-30,-9,0,0,0.604729 -21545,5002:499,-29,-9,0,0,0.601163 -21546,5002:498,-28,-9,0,0,0.598153 -21547,5002:497,-27,-9,0,0,0.595508 -21548,5002:496,-26,-9,0,0,0.591791 -21549,5002:495,-25,-9,0,0,0.589355 -21550,5002:394,-24,-9,0,0,0.585621 -21551,5002:393,-23,-9,0,0,0.581526 -21552,5002:392,-22,-9,0,0,0.57965 -21553,5002:391,-21,-9,0,0,0.57481 -21554,5002:390,-20,-9,0,0,0.572574 -21555,5001:499,-19,-9,0,0,0.569227 -21556,5001:498,-18,-9,0,0,0.565166 -21557,5001:497,-17,-9,0,0,0.562185 -21558,5001:496,-16,-9,0,0,0.560793 -21559,5001:495,-15,-9,0,0,0.556537 -21560,5001:394,-14,-9,0,0,0.554914 -21561,5001:393,-13,-9,0,0,0.550367 -21562,5001:392,-12,-9,0,0,0.54818 -21563,5001:391,-11,-9,0,0,0.547721 -21564,5001:390,-10,-9,0,0,0.545302 -21565,5000:499,-9,-9,0,0,0.54033 -21566,5000:498,-8,-9,0,0,0.539054 -21567,5000:497,-7,-9,0,0,0.537062 -21568,5000:496,-6,-9,0,0,0.538697 -21569,5000:495,-5,-9,0,0,0.537675 -21570,5000:394,-4,-9,0,0,0.535043 -21571,5000:393,-3,-9,0,0,0.533459 -21572,5000:392,-2,-9,0,0,0.534149 -21573,5000:391,-1,-9,0,0,0.534635 -21574,3000:391,0,-9,0,0,0.538033 -21575,3000:391,1,-9,0,0,0.541479 -21576,3000:392,2,-9,0,0,0.543263 -21577,3000:393,3,-9,0,0,0.548307 -21578,3000:394,4,-9,0,0,0.553442 -21579,3000:495,5,-9,0,0,0.559654 -21580,3000:496,6,-9,0,0,0.56963 -21581,3000:497,7,-9,0,0,0.584349 -21582,3000:498,8,-9,0,0,0.597141 -21583,3000:499,9,-9,0,0,0.607378 -21584,3001:390,10,-9,0,0,0.614363 -21585,3001:391,11,-9,0,0,0.623667 -21586,3001:392,12,-9,0,0,0.62345 -21587,3001:393,13,-9,0,0,0.589331 -21588,3004:390,40,-9,0,0,0.660039 -21589,3004:391,41,-9,0,0,0.664062 -21590,3004:392,42,-9,0,0,0.660892 -21591,3004:393,43,-9,0,0,0.658308 -21592,3004:394,44,-9,0,0,0.655622 -21593,3004:495,45,-9,0,0,0.65288 -21594,3004:496,46,-9,0,0,0.648982 -21595,3004:497,47,-9,0,0,0.64652 -21596,3004:498,48,-9,0,0,0.646167 -21597,3004:499,49,-9,0,0,0.648373 -21598,3005:390,50,-9,0,0,0.651272 -21599,3005:391,51,-9,0,0,0.654067 -21600,3005:392,52,-9,0,0,0.655762 -21601,3005:393,53,-9,0,0,0.656202 -21602,3005:394,54,-9,0,0,0.659186 -21603,3005:495,55,-9,0,0,0.661628 -21604,3005:496,56,-9,0,0,0.662249 -21605,3005:497,57,-9,0,0,0.660431 -21606,3005:498,58,-9,0,0,0.65692 -21607,3005:499,59,-9,0,0,0.652694 -21608,3006:390,60,-9,0,0,0.647951 -21609,3006:391,61,-9,0,0,0.644027 -21610,3006:392,62,-9,0,0,0.640746 -21611,3006:393,63,-9,0,0,0.647716 -21612,3006:394,64,-9,0,0,0.649473 -21613,3006:495,65,-9,0,0,0.650851 -21614,3006:496,66,-9,0,0,0.652926 -21615,3006:497,67,-9,0,0,0.651948 -21616,3006:498,68,-9,0,0,0.65295 -21617,3006:499,69,-9,0,0,0.657059 -21618,3007:390,70,-9,0,0,0.657407 -21619,3007:391,71,-9,0,0,0.659279 -21620,3007:392,72,-9,0,0,0.660777 -21621,3007:394,74,-9,0,0,0.658632 -21622,3007:495,75,-9,0,0,0.657106 -21623,3007:496,76,-9,0,0,0.65655 -21624,3007:497,77,-9,0,0,0.656272 -21625,3007:498,78,-9,0,0,0.655576 -21626,3007:499,79,-9,0,0,0.653881 -21627,3008:390,80,-9,0,0,0.650244 -21628,3008:391,81,-9,0,0,0.645768 -21629,3008:392,82,-9,0,0,0.640439 -21630,3008:393,83,-9,0,0,0.634932 -21631,3008:394,84,-9,0,0,0.632929 -21632,3008:495,85,-9,0,0,0.632809 -21633,3008:496,86,-9,0,0,0.633072 -21634,3008:497,87,-9,0,0,0.632332 -21635,3008:498,88,-9,0,0,0.630347 -21636,3008:499,89,-9,0,0,0.62747 -21637,3009:390,90,-9,0,0,0.625715 -21638,3009:391,91,-9,0,0,0.626196 -21639,3009:392,92,-9,0,0,0.628141 -21640,3009:393,93,-9,0,0,0.63006 -21641,3009:394,94,-9,0,0,0.631089 -21642,3009:495,95,-9,0,0,0.630922 -21643,3009:496,96,-9,0,0,0.630467 -21644,3009:497,97,-9,0,0,0.629269 -21645,3009:498,98,-9,0,0,0.627517 -21646,3009:499,99,-9,0,0,0.628022 -21647,3010:390,100,-9,0,0,0.630969 -21648,3010:391,101,-9,0,0,0.635408 -21649,3010:392,102,-9,0,0,0.640557 -21650,3010:393,103,-9,0,0,0.643249 -21651,3010:394,104,-9,0,0,0.643862 -21652,3010:495,105,-9,0,0,0.646355 -21653,3010:496,106,-9,0,0,0.653555 -21654,3010:497,107,-9,0,0,0.657522 -21655,3010:498,108,-9,0,0,0.660386 -21656,3010:499,109,-9,0,0,0.662249 -21657,3011:390,110,-9,0,0,0.66303 -21658,3011:391,111,-9,0,0,0.665436 -21659,3011:392,112,-9,0,0,0.667492 -21660,3011:393,113,-9,0,0,0.668859 -21661,3011:394,114,-9,0,0,0.671175 -21662,3011:495,115,-9,0,0,0.677224 -21663,3011:496,116,-9,0,0,0.677448 -21664,3011:497,117,-9,0,0,0.675244 -21665,3011:498,118,-9,0,0,0.674116 -21666,3011:499,119,-9,0,0,0.676234 -21667,3012:390,120,-9,0,0,0.677987 -21668,3012:392,122,-9,0,0,0.682256 -21669,3012:393,123,-9,0,0,0.678861 -21670,3012:495,125,-9,0,0,0.68368 -21671,3012:496,126,-9,0,0,0.684057 -21672,3012:497,127,-9,0,0,0.682746 -21673,3012:498,128,-9,0,0,0.693046 -21674,3012:499,129,-9,0,0,0.697292 -21675,3013:390,130,-9,0,0,0.695619 -21676,3013:391,131,-9,0,0,0.699175 -21677,3013:392,132,-9,0,0,0.695793 -21678,3013:393,133,-9,0,0,0.696858 -21679,3013:394,134,-9,0,0,0.691163 -21680,3013:495,135,-9,0,0,0.683991 -21681,3013:496,136,-9,0,0,0.675672 -21682,3013:497,137,-9,0,0,0.669927 -21683,3013:498,138,-9,0,0,0.671175 -21684,3013:499,139,-9,0,0,0.675649 -21685,3014:390,140,-9,0,0,0.678032 -21686,3014:391,141,-9,0,0,0.681699 -21687,3014:392,142,-9,0,0,0.684523 -21688,3014:393,143,-9,0,0,0.67637 -21689,3014:394,144,-9,0,0,0.658216 -21690,3014:495,145,-9,0,0,0.648467 -21691,3014:496,146,-9,0,0,0.651248 -21692,3014:497,147,-9,0,0,0.659971 -21693,3014:498,148,-9,0,0,0.640912 -21694,3015:391,151,-9,0,0,0.666761 -21695,3015:392,152,-9,0,0,0.675154 -21696,3015:393,153,-9,0,0,0.677605 -21697,3015:394,154,-9,0,0,0.679689 -21698,3015:495,155,-9,0,0,0.680136 -21699,3015:496,156,-9,0,0,0.680672 -21700,3015:497,157,-9,0,0,0.681319 -21701,3015:498,158,-9,0,0,0.681699 -21702,3015:499,159,-9,0,0,0.679935 -21703,3016:390,160,-9,0,0,0.677852 -21704,3016:391,161,-9,0,0,0.674252 -21705,3016:392,162,-9,0,0,0.668107 -21706,3016:393,163,-9,0,0,0.668335 -21707,3016:394,164,-9,0,0,0.668859 -21708,3016:495,165,-9,0,0,0.669859 -21709,3016:496,166,-9,0,0,0.66945 -21710,3016:497,167,-9,0,0,0.669768 -21711,3016:498,168,-9,0,0,0.670063 -21712,3016:499,169,-9,0,0,0.6697 -21713,3017:390,170,-9,0,0,0.669109 -21714,3017:391,171,-9,0,0,0.668039 -21715,3017:392,172,-9,0,0,0.666076 -21716,3017:393,173,-9,0,0,0.666488 -21717,3017:394,174,-9,0,0,0.663053 -21718,3017:495,175,-9,0,0,0.662777 -21719,3017:496,176,-9,0,0,0.662042 -21720,3017:497,177,-9,0,0,0.661859 -21721,3017:498,178,-9,0,0,0.661904 -21722,3017:499,179,-9,0,0,0.662295 -21723,3018:390,180,-9,0,0,0.664246 -21724,5018:380,-180,-8,0,0,0.673959 -21725,5017:489,-179,-8,0,0,0.675829 -21726,5017:488,-178,-8,0,0,0.676932 -21727,5017:487,-177,-8,0,0,0.677628 -21728,5017:486,-176,-8,0,0,0.676976 -21729,5017:485,-175,-8,0,0,0.676145 -21730,5017:384,-174,-8,0,0,0.676347 -21731,5017:383,-173,-8,0,0,0.676954 -21732,5017:382,-172,-8,0,0,0.676909 -21733,5017:381,-171,-8,0,0,0.677246 -21734,5017:380,-170,-8,0,0,0.677583 -21735,5016:489,-169,-8,0,0,0.676954 -21736,5016:488,-168,-8,0,0,0.676572 -21737,5016:487,-167,-8,0,0,0.677381 -21738,5016:486,-166,-8,0,0,0.677897 -21739,5016:485,-165,-8,0,0,0.67839 -21740,5016:384,-164,-8,0,0,0.678592 -21741,5016:383,-163,-8,0,0,0.677695 -21742,5016:382,-162,-8,0,0,0.676976 -21743,5016:381,-161,-8,0,0,0.676819 -21744,5016:380,-160,-8,0,0,0.677291 -21745,5015:489,-159,-8,0,0,0.676684 -21746,5015:488,-158,-8,0,0,0.675762 -21747,5015:487,-157,-8,0,0,0.673936 -21748,5015:486,-156,-8,0,0,0.672036 -21749,5015:485,-155,-8,0,0,0.669836 -21750,5015:384,-154,-8,0,0,0.668016 -21751,5015:383,-153,-8,0,0,0.667218 -21752,5015:382,-152,-8,0,0,0.665459 -21753,5015:381,-151,-8,0,0,0.662915 -21754,5015:380,-150,-8,0,0,0.66103 -21755,5014:489,-149,-8,0,0,0.659348 -21756,5014:488,-148,-8,0,0,0.656248 -21757,5014:487,-147,-8,0,0,0.653834 -21758,5014:486,-146,-8,0,0,0.652461 -21759,5014:485,-145,-8,0,0,0.651272 -21760,5014:384,-144,-8,0,0,0.649239 -21761,5014:383,-143,-8,0,0,0.646872 -21762,5014:382,-142,-8,0,0,0.645086 -21763,5014:381,-141,-8,0,0,0.642919 -21764,5014:380,-140,-8,0,0,0.640273 -21765,5013:489,-139,-8,0,0,0.637904 -21766,5013:488,-138,-8,0,0,0.635955 -21767,5013:487,-137,-8,0,0,0.633788 -21768,5013:486,-136,-8,0,0,0.630802 -21769,5013:485,-135,-8,0,0,0.627349 -21770,5013:384,-134,-8,0,0,0.624077 -21771,5013:383,-133,-8,0,0,0.621953 -21772,5013:382,-132,-8,0,0,0.619341 -21773,5013:381,-131,-8,0,0,0.616818 -21774,5013:380,-130,-8,0,0,0.614192 -21775,5012:489,-129,-8,0,0,0.61134 -21776,5012:488,-128,-8,0,0,0.60892 -21777,5012:487,-127,-8,0,0,0.606275 -21778,5012:486,-126,-8,0,0,0.603549 -21779,5012:485,-125,-8,0,0,0.60136 -21780,5012:384,-124,-8,0,0,0.599066 -21781,5012:383,-123,-8,0,0,0.59625 -21782,5012:382,-122,-8,0,0,0.593056 -21783,5012:381,-121,-8,0,0,0.589157 -21784,5012:380,-120,-8,0,0,0.584748 -21785,5011:489,-119,-8,0,0,0.580401 -21786,5011:488,-118,-8,0,0,0.576467 -21787,5011:487,-117,-8,0,0,0.573127 -21788,5011:486,-116,-8,0,0,0.569201 -21789,5011:485,-115,-8,0,0,0.563953 -21790,5011:384,-114,-8,0,0,0.558464 -21791,5011:383,-113,-8,0,0,0.553035 -21792,5011:382,-112,-8,0,0,0.549045 -21793,5011:381,-111,-8,0,0,0.54492 -21794,5011:380,-110,-8,0,0,0.538722 -21795,5010:489,-109,-8,0,0,0.533714 -21796,5010:488,-108,-8,0,0,0.530901 -21797,5010:487,-107,-8,0,0,0.529365 -21798,5010:486,-106,-8,0,0,0.52414 -21799,5010:485,-105,-8,0,0,0.520988 -21800,5010:384,-104,-8,0,0,0.52191 -21801,5010:383,-103,-8,0,0,0.520013 -21802,5010:382,-102,-8,0,0,0.515524 -21803,5010:381,-101,-8,0,0,0.512264 -21804,5010:380,-100,-8,0,0,0.507411 -21805,5009:489,-99,-8,0,0,0.509645 -21806,5009:488,-98,-8,0,0,0.5117 -21807,5009:487,-97,-8,0,0,0.514368 -21808,5009:486,-96,-8,0,0,0.514086 -21809,5009:485,-95,-8,0,0,0.509157 -21810,5009:384,-94,-8,0,0,0.506667 -21811,5009:383,-93,-8,0,0,0.509363 -21812,5009:382,-92,-8,0,0,0.513137 -21813,5009:381,-91,-8,0,0,0.513085 -21814,5009:380,-90,-8,0,0,0.512931 -21815,5008:489,-89,-8,0,0,0.514215 -21816,5008:488,-88,-8,0,0,0.511982 -21817,5008:487,-87,-8,0,0,0.509748 -21818,5008:486,-86,-8,0,0,0.50754 -21819,5008:485,-85,-8,0,0,0.503508 -21820,5008:384,-84,-8,0,0,0.504381 -21821,5008:383,-83,-8,0,0,0.504047 -21822,5008:382,-82,-8,0,0,0.497497 -21823,5008:381,-81,-8,0,0,0.49123 -21824,5008:380,-80,-8,0,0,0.479759 -21825,5007:489,-79,-8,0,0,0.455618 -21826,5003:485,-35,-8,0,0,0.62634 -21827,5003:384,-34,-8,0,0,0.619898 -21828,5003:383,-33,-8,0,0,0.61592 -21829,5003:382,-32,-8,0,0,0.612877 -21830,5003:381,-31,-8,0,0,0.609728 -21831,5003:380,-30,-8,0,0,0.605858 -21832,5002:489,-29,-8,0,0,0.602123 -21833,5002:488,-28,-8,0,0,0.598302 -21834,5002:487,-27,-8,0,0,0.594419 -21835,5002:486,-26,-8,0,0,0.591616 -21836,5002:485,-25,-8,0,0,0.588684 -21837,5002:384,-24,-8,0,0,0.586468 -21838,5002:383,-23,-8,0,0,0.584448 -21839,5002:382,-22,-8,0,0,0.581201 -21840,5002:381,-21,-8,0,0,0.578448 -21841,5002:380,-20,-8,0,0,0.57594 -21842,5001:489,-19,-8,0,0,0.574208 -21843,5001:488,-18,-8,0,0,0.57192 -21844,5001:487,-17,-8,0,0,0.569932 -21845,5001:486,-16,-8,0,0,0.567664 -21846,5001:485,-15,-8,0,0,0.563373 -21847,5001:384,-14,-8,0,0,0.562159 -21848,5001:383,-13,-8,0,0,0.561729 -21849,5001:382,-12,-8,0,0,0.560211 -21850,5001:381,-11,-8,0,0,0.559755 -21851,5001:380,-10,-8,0,0,0.557602 -21852,5000:489,-9,-8,0,0,0.552654 -21853,5000:488,-8,-8,0,0,0.549985 -21854,5000:487,-7,-8,0,0,0.549222 -21855,5000:486,-6,-8,0,0,0.549985 -21856,5000:485,-5,-8,0,0,0.55029 -21857,5000:384,-4,-8,0,0,0.548663 -21858,5000:383,-3,-8,0,0,0.550799 -21859,5000:382,-2,-8,0,0,0.550799 -21860,5000:381,-1,-8,0,0,0.553416 -21861,3000:381,0,-8,0,0,0.559654 -21862,3000:381,1,-8,0,0,0.562462 -21863,3000:382,2,-8,0,0,0.565696 -21864,3000:383,3,-8,0,0,0.571971 -21865,3000:384,4,-8,0,0,0.57737 -21866,3000:485,5,-8,0,0,0.581776 -21867,3000:486,6,-8,0,0,0.590871 -21868,3000:487,7,-8,0,0,0.601507 -21869,3000:488,8,-8,0,0,0.613437 -21870,3000:489,9,-8,0,0,0.624077 -21871,3001:380,10,-8,0,0,0.628453 -21872,3001:381,11,-8,0,0,0.628141 -21873,3001:382,12,-8,0,0,0.612268 -21874,3001:383,13,-8,0,0,0.568219 -21875,3004:380,40,-8,0,0,0.663352 -21876,3004:381,41,-8,0,0,0.665161 -21877,3004:382,42,-8,0,0,0.66683 -21878,3004:383,43,-8,0,0,0.665093 -21879,3004:384,44,-8,0,0,0.663489 -21880,3004:485,45,-8,0,0,0.661076 -21881,3004:486,46,-8,0,0,0.657314 -21882,3004:487,47,-8,0,0,0.657823 -21883,3004:488,48,-8,0,0,0.659024 -21884,3004:489,49,-8,0,0,0.661099 -21885,3005:380,50,-8,0,0,0.66218 -21886,3005:381,51,-8,0,0,0.660892 -21887,3005:382,52,-8,0,0,0.660662 -21888,3005:383,53,-8,0,0,0.660938 -21889,3005:384,54,-8,0,0,0.663902 -21890,3005:485,55,-8,0,0,0.665367 -21891,3005:486,56,-8,0,0,0.665093 -21892,3005:487,57,-8,0,0,0.663879 -21893,3005:488,58,-8,0,0,0.660823 -21894,3005:489,59,-8,0,0,0.655019 -21895,3006:380,60,-8,0,0,0.6424 -21896,3006:381,61,-8,0,0,0.651062 -21897,3006:382,62,-8,0,0,0.652158 -21898,3006:383,63,-8,0,0,0.653415 -21899,3006:384,64,-8,0,0,0.65402 -21900,3006:485,65,-8,0,0,0.656156 -21901,3006:486,66,-8,0,0,0.658608 -21902,3006:487,67,-8,0,0,0.660339 -21903,3006:488,68,-8,0,0,0.662847 -21904,3006:489,69,-8,0,0,0.66436 -21905,3007:380,70,-8,0,0,0.665047 -21906,3007:381,71,-8,0,0,0.666807 -21907,3007:382,72,-8,0,0,0.667035 -21908,3007:384,74,-8,0,0,0.665962 -21909,3007:485,75,-8,0,0,0.665688 -21910,3007:486,76,-8,0,0,0.666076 -21911,3007:487,77,-8,0,0,0.66475 -21912,3007:488,78,-8,0,0,0.663145 -21913,3007:489,79,-8,0,0,0.661996 -21914,3008:380,80,-8,0,0,0.660984 -21915,3008:381,81,-8,0,0,0.654624 -21916,3008:382,82,-8,0,0,0.649473 -21917,3008:383,83,-8,0,0,0.64372 -21918,3008:384,84,-8,0,0,0.640107 -21919,3008:485,85,-8,0,0,0.639065 -21920,3008:486,86,-8,0,0,0.639302 -21921,3008:487,87,-8,0,0,0.640628 -21922,3008:488,88,-8,0,0,0.642377 -21923,3008:489,89,-8,0,0,0.64365 -21924,3009:380,90,-8,0,0,0.64398 -21925,3009:381,91,-8,0,0,0.642565 -21926,3009:382,92,-8,0,0,0.641881 -21927,3009:383,93,-8,0,0,0.642825 -21928,3009:384,94,-8,0,0,0.642966 -21929,3009:485,95,-8,0,0,0.641881 -21930,3009:486,96,-8,0,0,0.64025 -21931,3009:487,97,-8,0,0,0.639041 -21932,3009:488,98,-8,0,0,0.637618 -21933,3009:489,99,-8,0,0,0.637642 -21934,3010:380,100,-8,0,0,0.641077 -21935,3010:381,101,-8,0,0,0.645157 -21936,3010:382,102,-8,0,0,0.647459 -21937,3010:383,103,-8,0,0,0.649122 -21938,3010:384,104,-8,0,0,0.650478 -21939,3010:485,105,-8,0,0,0.65281 -21940,3010:486,106,-8,0,0,0.65488 -21941,3010:487,107,-8,0,0,0.656712 -21942,3010:488,108,-8,0,0,0.657777 -21943,3010:489,109,-8,0,0,0.659002 -21944,3011:380,110,-8,0,0,0.659786 -21945,3011:381,111,-8,0,0,0.660915 -21946,3011:382,112,-8,0,0,0.661145 -21947,3011:383,113,-8,0,0,0.66326 -21948,3011:384,114,-8,0,0,0.666396 -21949,3011:485,115,-8,0,0,0.665619 -21950,3012:383,123,-8,0,0,0.692325 -21951,3012:384,124,-8,0,0,0.689208 -21952,3012:485,125,-8,0,0,0.683635 -21953,3012:488,128,-8,0,0,0.680181 -21954,3012:489,129,-8,0,0,0.684701 -21955,3013:380,130,-8,0,0,0.684634 -21956,3013:381,131,-8,0,0,0.686252 -21957,3013:382,132,-8,0,0,0.688173 -21958,3013:383,133,-8,0,0,0.686583 -21959,3013:384,134,-8,0,0,0.680315 -21960,3013:485,135,-8,0,0,0.670041 -21961,3013:486,136,-8,0,0,0.672648 -21962,3013:487,137,-8,0,0,0.677089 -21963,3013:488,138,-8,0,0,0.693833 -21964,3013:489,139,-8,0,0,0.693352 -21965,3014:380,140,-8,0,0,0.692106 -21966,3014:384,144,-8,0,0,0.68923 -21967,3014:485,145,-8,0,0,0.661835 -21968,3014:486,146,-8,0,0,0.67029 -21969,3014:489,149,-8,0,0,0.671742 -21970,3015:380,150,-8,0,0,0.672896 -21971,3015:381,151,-8,0,0,0.677067 -21972,3015:382,152,-8,0,0,0.679958 -21973,3015:383,153,-8,0,0,0.683235 -21974,3015:384,154,-8,0,0,0.684945 -21975,3015:485,155,-8,0,0,0.68687 -21976,3015:486,156,-8,0,0,0.685322 -21977,3015:487,157,-8,0,0,0.686362 -21978,3015:488,158,-8,0,0,0.687401 -21979,3015:489,159,-8,0,0,0.687445 -21980,3016:380,160,-8,0,0,0.681029 -21981,3016:382,162,-8,0,0,0.678794 -21982,3016:383,163,-8,0,0,0.676504 -21983,3016:384,164,-8,0,0,0.675942 -21984,3016:485,165,-8,0,0,0.674613 -21985,3016:486,166,-8,0,0,0.674184 -21986,3016:487,167,-8,0,0,0.675019 -21987,3016:488,168,-8,0,0,0.675537 -21988,3016:489,169,-8,0,0,0.674973 -21989,3017:380,170,-8,0,0,0.674771 -21990,3017:381,171,-8,0,0,0.674861 -21991,3017:382,172,-8,0,0,0.674929 -21992,3017:383,173,-8,0,0,0.675942 -21993,3017:384,174,-8,0,0,0.6738 -21994,3017:485,175,-8,0,0,0.671832 -21995,3017:486,176,-8,0,0,0.671425 -21996,3017:487,177,-8,0,0,0.67079 -21997,3017:488,178,-8,0,0,0.670744 -21998,3017:489,179,-8,0,0,0.671697 -21999,3018:380,180,-8,0,0,0.673959 -22000,5018:370,-180,-7,0,0,0.681163 -22001,5017:479,-179,-7,0,0,0.68094 -22002,5017:478,-178,-7,0,0,0.680338 -22003,5017:477,-177,-7,0,0,0.679264 -22004,5017:476,-176,-7,0,0,0.678099 -22005,5017:475,-175,-7,0,0,0.678099 -22006,5017:374,-174,-7,0,0,0.678503 -22007,5017:373,-173,-7,0,0,0.678928 -22008,5017:372,-172,-7,0,0,0.678861 -22009,5017:371,-171,-7,0,0,0.678615 -22010,5017:370,-170,-7,0,0,0.677672 -22011,5016:479,-169,-7,0,0,0.677089 -22012,5016:478,-168,-7,0,0,0.677381 -22013,5016:477,-167,-7,0,0,0.67783 -22014,5016:476,-166,-7,0,0,0.678122 -22015,5016:475,-165,-7,0,0,0.677448 -22016,5016:374,-164,-7,0,0,0.676617 -22017,5016:373,-163,-7,0,0,0.676077 -22018,5016:372,-162,-7,0,0,0.675064 -22019,5016:371,-161,-7,0,0,0.673868 -22020,5016:370,-160,-7,0,0,0.672286 -22021,5015:479,-159,-7,0,0,0.670699 -22022,5015:478,-158,-7,0,0,0.668198 -22023,5015:477,-157,-7,0,0,0.665596 -22024,5015:476,-156,-7,0,0,0.663604 -22025,5015:475,-155,-7,0,0,0.662249 -22026,5015:374,-154,-7,0,0,0.660247 -22027,5015:373,-153,-7,0,0,0.658031 -22028,5015:372,-152,-7,0,0,0.655599 -22029,5015:371,-151,-7,0,0,0.653788 -22030,5015:370,-150,-7,0,0,0.651924 -22031,5014:479,-149,-7,0,0,0.649402 -22032,5014:478,-148,-7,0,0,0.647716 -22033,5014:477,-147,-7,0,0,0.64605 -22034,5014:476,-146,-7,0,0,0.643626 -22035,5014:475,-145,-7,0,0,0.641101 -22036,5014:374,-144,-7,0,0,0.63897 -22037,5014:373,-143,-7,0,0,0.63712 -22038,5014:372,-142,-7,0,0,0.635717 -22039,5014:371,-141,-7,0,0,0.634693 -22040,5014:370,-140,-7,0,0,0.633478 -22041,5013:479,-139,-7,0,0,0.631471 -22042,5013:478,-138,-7,0,0,0.629173 -22043,5013:477,-137,-7,0,0,0.626749 -22044,5013:476,-136,-7,0,0,0.624197 -22045,5013:475,-135,-7,0,0,0.621494 -22046,5013:374,-134,-7,0,0,0.618953 -22047,5013:373,-133,-7,0,0,0.616478 -22048,5013:372,-132,-7,0,0,0.614436 -22049,5013:371,-131,-7,0,0,0.612902 -22050,5013:370,-130,-7,0,0,0.611902 -22051,5012:479,-129,-7,0,0,0.610412 -22052,5012:478,-128,-7,0,0,0.608431 -22053,5012:477,-127,-7,0,0,0.606226 -22054,5012:476,-126,-7,0,0,0.603476 -22055,5012:475,-125,-7,0,0,0.600028 -22056,5012:374,-124,-7,0,0,0.596498 -22057,5012:373,-123,-7,0,0,0.592982 -22058,5012:372,-122,-7,0,0,0.589008 -22059,5012:371,-121,-7,0,0,0.584399 -22060,5012:370,-120,-7,0,0,0.579274 -22061,5011:479,-119,-7,0,0,0.574584 -22062,5011:478,-118,-7,0,0,0.570612 -22063,5011:477,-117,-7,0,0,0.56721 -22064,5011:476,-116,-7,0,0,0.564181 -22065,5011:475,-115,-7,0,0,0.561097 -22066,5011:374,-114,-7,0,0,0.558007 -22067,5011:373,-113,-7,0,0,0.554355 -22068,5011:372,-112,-7,0,0,0.550494 -22069,5011:371,-111,-7,0,0,0.546779 -22070,5011:370,-110,-7,0,0,0.544614 -22071,5010:479,-109,-7,0,0,0.544385 -22072,5010:478,-108,-7,0,0,0.544105 -22073,5010:477,-107,-7,0,0,0.542448 -22074,5010:476,-106,-7,0,0,0.539309 -22075,5010:475,-105,-7,0,0,0.536424 -22076,5010:374,-104,-7,0,0,0.535171 -22077,5010:373,-103,-7,0,0,0.535682 -22078,5010:372,-102,-7,0,0,0.533126 -22079,5010:371,-101,-7,0,0,0.529621 -22080,5010:370,-100,-7,0,0,0.529518 -22081,5009:479,-99,-7,0,0,0.531284 -22082,5009:478,-98,-7,0,0,0.53241 -22083,5009:477,-97,-7,0,0,0.530364 -22084,5009:476,-96,-7,0,0,0.530977 -22085,5009:475,-95,-7,0,0,0.529877 -22086,5009:374,-94,-7,0,0,0.533535 -22087,5009:373,-93,-7,0,0,0.540662 -22088,5009:372,-92,-7,0,0,0.537139 -22089,5009:371,-91,-7,0,0,0.534507 -22090,5009:370,-90,-7,0,0,0.537624 -22091,5008:479,-89,-7,0,0,0.534839 -22092,5008:478,-88,-7,0,0,0.530184 -22093,5008:477,-87,-7,0,0,0.529953 -22094,5008:476,-86,-7,0,0,0.527471 -22095,5008:475,-85,-7,0,0,0.523269 -22096,5008:374,-84,-7,0,0,0.521833 -22097,5008:373,-83,-7,0,0,0.511545 -22098,5008:372,-82,-7,0,0,0.50546 -22099,5008:371,-81,-7,0,0,0.5051 -22100,5008:370,-80,-7,0,0,0.472174 -22101,5003:475,-35,-7,0,0,0.626171 -22102,5003:374,-34,-7,0,0,0.619341 -22103,5003:373,-33,-7,0,0,0.613852 -22104,5003:372,-32,-7,0,0,0.609679 -22105,5003:371,-31,-7,0,0,0.607403 -22106,5003:370,-30,-7,0,0,0.605736 -22107,5002:479,-29,-7,0,0,0.604385 -22108,5002:478,-28,-7,0,0,0.602492 -22109,5002:477,-27,-7,0,0,0.600916 -22110,5002:476,-26,-7,0,0,0.599708 -22111,5002:475,-25,-7,0,0,0.597116 -22112,5002:374,-24,-7,0,0,0.593427 -22113,5002:373,-23,-7,0,0,0.591492 -22114,5002:372,-22,-7,0,0,0.589008 -22115,5002:371,-21,-7,0,0,0.588958 -22116,5002:370,-20,-7,0,0,0.586543 -22117,5001:479,-19,-7,0,0,0.586368 -22118,5001:478,-18,-7,0,0,0.584499 -22119,5001:477,-17,-7,0,0,0.582726 -22120,5001:476,-16,-7,0,0,0.581851 -22121,5001:475,-15,-7,0,0,0.576693 -22122,5001:374,-14,-7,0,0,0.575262 -22123,5001:373,-13,-7,0,0,0.574861 -22124,5001:372,-12,-7,0,0,0.574886 -22125,5001:371,-11,-7,0,0,0.574534 -22126,5001:370,-10,-7,0,0,0.570586 -22127,5000:479,-9,-7,0,0,0.565898 -22128,5000:478,-8,-7,0,0,0.562791 -22129,5000:477,-7,-7,0,0,0.563676 -22130,5000:476,-6,-7,0,0,0.566907 -22131,5000:475,-5,-7,0,0,0.567261 -22132,5000:374,-4,-7,0,0,0.567437 -22133,5000:373,-3,-7,0,0,0.574183 -22134,5000:372,-2,-7,0,0,0.580601 -22135,5000:371,-1,-7,0,0,0.585446 -22136,3000:371,0,-7,0,0,0.590499 -22137,3000:371,1,-7,0,0,0.5937 -22138,3000:372,2,-7,0,0,0.593774 -22139,3000:373,3,-7,0,0,0.593204 -22140,3000:374,4,-7,0,0,0.597141 -22141,3000:475,5,-7,0,0,0.603648 -22142,3000:476,6,-7,0,0,0.610168 -22143,3000:477,7,-7,0,0,0.622992 -22144,3000:478,8,-7,0,0,0.632618 -22145,3000:479,9,-7,0,0,0.635384 -22146,3001:370,10,-7,0,0,0.634717 -22147,3001:371,11,-7,0,0,0.625209 -22148,3001:372,12,-7,0,0,0.617377 -22149,3004:370,40,-7,0,0,0.666693 -22150,3004:371,41,-7,0,0,0.671855 -22151,3004:372,42,-7,0,0,0.673462 -22152,3004:373,43,-7,0,0,0.673055 -22153,3004:374,44,-7,0,0,0.671946 -22154,3004:475,45,-7,0,0,0.67079 -22155,3004:476,46,-7,0,0,0.671108 -22156,3004:477,47,-7,0,0,0.670358 -22157,3004:478,48,-7,0,0,0.669564 -22158,3004:479,49,-7,0,0,0.669154 -22159,3005:370,50,-7,0,0,0.668062 -22160,3005:371,51,-7,0,0,0.666236 -22161,3005:372,52,-7,0,0,0.662479 -22162,3005:373,53,-7,0,0,0.661859 -22163,3005:374,54,-7,0,0,0.664772 -22164,3005:475,55,-7,0,0,0.666647 -22165,3005:476,56,-7,0,0,0.667423 -22166,3005:477,57,-7,0,0,0.668381 -22167,3005:478,58,-7,0,0,0.66797 -22168,3005:479,59,-7,0,0,0.665161 -22169,3006:370,60,-7,0,0,0.66218 -22170,3006:371,61,-7,0,0,0.661376 -22171,3006:372,62,-7,0,0,0.661329 -22172,3006:373,63,-7,0,0,0.66172 -22173,3006:374,64,-7,0,0,0.661882 -22174,3006:475,65,-7,0,0,0.66218 -22175,3006:476,66,-7,0,0,0.663512 -22176,3006:477,67,-7,0,0,0.664635 -22177,3006:478,68,-7,0,0,0.66491 -22178,3006:479,69,-7,0,0,0.665161 -22179,3007:370,70,-7,0,0,0.665436 -22180,3007:371,71,-7,0,0,0.662847 -22181,3007:372,72,-7,0,0,0.668062 -22182,3007:374,74,-7,0,0,0.670086 -22183,3007:475,75,-7,0,0,0.670676 -22184,3007:476,76,-7,0,0,0.669927 -22185,3007:477,77,-7,0,0,0.668312 -22186,3007:478,78,-7,0,0,0.667651 -22187,3007:479,79,-7,0,0,0.666076 -22188,3008:370,80,-7,0,0,0.661767 -22189,3008:371,81,-7,0,0,0.658493 -22190,3008:372,82,-7,0,0,0.656874 -22191,3008:373,83,-7,0,0,0.656364 -22192,3008:374,84,-7,0,0,0.655529 -22193,3008:475,85,-7,0,0,0.655205 -22194,3008:476,86,-7,0,0,0.654229 -22195,3008:477,87,-7,0,0,0.654578 -22196,3008:478,88,-7,0,0,0.655878 -22197,3008:479,89,-7,0,0,0.65692 -22198,3009:370,90,-7,0,0,0.6578 -22199,3009:371,91,-7,0,0,0.65773 -22200,3009:372,92,-7,0,0,0.657175 -22201,3009:373,93,-7,0,0,0.656364 -22202,3009:374,94,-7,0,0,0.655112 -22203,3009:475,95,-7,0,0,0.654856 -22204,3009:476,96,-7,0,0,0.653136 -22205,3009:477,97,-7,0,0,0.651808 -22206,3009:478,98,-7,0,0,0.652065 -22207,3009:479,99,-7,0,0,0.652833 -22208,3010:370,100,-7,0,0,0.653369 -22209,3010:371,101,-7,0,0,0.654601 -22210,3010:372,102,-7,0,0,0.655483 -22211,3010:373,103,-7,0,0,0.655205 -22212,3010:374,104,-7,0,0,0.658424 -22213,3010:475,105,-7,0,0,0.664864 -22214,3010:476,106,-7,0,0,0.663879 -22215,3011:475,115,-7,0,0,0.688106 -22216,3011:476,116,-7,0,0,0.690219 -22217,3011:477,117,-7,0,0,0.677672 -22218,3011:478,118,-7,0,0,0.678749 -22219,3011:479,119,-7,0,0,0.674342 -22220,3012:370,120,-7,0,0,0.678323 -22221,3012:371,121,-7,0,0,0.687136 -22222,3012:372,122,-7,0,0,0.691953 -22223,3012:373,123,-7,0,0,0.690659 -22224,3012:374,124,-7,0,0,0.691602 -22225,3012:475,125,-7,0,0,0.690527 -22226,3012:476,126,-7,0,0,0.688371 -22227,3012:477,127,-7,0,0,0.685654 -22228,3012:478,128,-7,0,0,0.682813 -22229,3012:479,129,-7,0,0,0.684324 -22230,3013:370,130,-7,0,0,0.687379 -22231,3013:371,131,-7,0,0,0.684878 -22232,3013:372,132,-7,0,0,0.683813 -22233,3013:373,133,-7,0,0,0.67998 -22234,3013:374,134,-7,0,0,0.677134 -22235,3013:475,135,-7,0,0,0.690593 -22236,3013:476,136,-7,0,0,0.677156 -22237,3013:477,137,-7,0,0,0.675334 -22238,3013:478,138,-7,0,0,0.701719 -22239,3014:478,148,-7,0,0,0.672399 -22240,3014:479,149,-7,0,0,0.675492 -22241,3015:370,150,-7,0,0,0.676707 -22242,3015:371,151,-7,0,0,0.678794 -22243,3015:372,152,-7,0,0,0.685942 -22244,3015:373,153,-7,0,0,0.689274 -22245,3015:374,154,-7,0,0,0.690768 -22246,3015:475,155,-7,0,0,0.692018 -22247,3015:476,156,-7,0,0,0.688724 -22248,3015:478,158,-7,0,0,0.687599 -22249,3015:479,159,-7,0,0,0.68718 -22250,3016:370,160,-7,0,0,0.685344 -22251,3016:371,161,-7,0,0,0.684235 -22252,3016:372,162,-7,0,0,0.684878 -22253,3016:373,163,-7,0,0,0.684124 -22254,3016:374,164,-7,0,0,0.683569 -22255,3016:475,165,-7,0,0,0.680203 -22256,3016:476,166,-7,0,0,0.677605 -22257,3016:477,167,-7,0,0,0.677897 -22258,3016:478,168,-7,0,0,0.678615 -22259,3016:479,169,-7,0,0,0.678749 -22260,3017:370,170,-7,0,0,0.67904 -22261,3017:371,171,-7,0,0,0.678906 -22262,3017:372,172,-7,0,0,0.678143 -22263,3017:373,173,-7,0,0,0.678413 -22264,3017:374,174,-7,0,0,0.678995 -22265,3017:475,175,-7,0,0,0.679085 -22266,3017:476,176,-7,0,0,0.678211 -22267,3017:477,177,-7,0,0,0.677852 -22268,3017:478,178,-7,0,0,0.678659 -22269,3017:479,179,-7,0,0,0.67989 -22270,3018:370,180,-7,0,0,0.681163 -22271,5018:360,-180,-6,0,0,0.680382 -22272,5017:469,-179,-6,0,0,0.680159 -22273,5017:468,-178,-6,0,0,0.678503 -22274,5017:467,-177,-6,0,0,0.677134 -22275,5017:466,-176,-6,0,0,0.676504 -22276,5017:465,-175,-6,0,0,0.675919 -22277,5017:364,-174,-6,0,0,0.676842 -22278,5017:363,-173,-6,0,0,0.67774 -22279,5017:362,-172,-6,0,0,0.677583 -22280,5017:361,-171,-6,0,0,0.676954 -22281,5017:360,-170,-6,0,0,0.676167 -22282,5016:469,-169,-6,0,0,0.675176 -22283,5016:468,-168,-6,0,0,0.6745 -22284,5016:467,-167,-6,0,0,0.67459 -22285,5016:466,-166,-6,0,0,0.673032 -22286,5016:465,-165,-6,0,0,0.671765 -22287,5016:364,-164,-6,0,0,0.670881 -22288,5016:363,-163,-6,0,0,0.67029 -22289,5016:362,-162,-6,0,0,0.668882 -22290,5016:361,-161,-6,0,0,0.666738 -22291,5016:360,-160,-6,0,0,0.664406 -22292,5015:469,-159,-6,0,0,0.662019 -22293,5015:468,-158,-6,0,0,0.659971 -22294,5015:467,-157,-6,0,0,0.657985 -22295,5015:466,-156,-6,0,0,0.656526 -22296,5015:465,-155,-6,0,0,0.654717 -22297,5015:364,-154,-6,0,0,0.652833 -22298,5015:363,-153,-6,0,0,0.650594 -22299,5015:362,-152,-6,0,0,0.648513 -22300,5015:361,-151,-6,0,0,0.647013 -22301,5015:360,-150,-6,0,0,0.64565 -22302,5014:469,-149,-6,0,0,0.643886 -22303,5014:468,-148,-6,0,0,0.64207 -22304,5014:467,-147,-6,0,0,0.640628 -22305,5014:466,-146,-6,0,0,0.639255 -22306,5014:465,-145,-6,0,0,0.636906 -22307,5014:364,-144,-6,0,0,0.634765 -22308,5014:363,-143,-6,0,0,0.632714 -22309,5014:362,-142,-6,0,0,0.630347 -22310,5014:361,-141,-6,0,0,0.627445 -22311,5014:360,-140,-6,0,0,0.624824 -22312,5013:469,-139,-6,0,0,0.622944 -22313,5013:468,-138,-6,0,0,0.622243 -22314,5013:467,-137,-6,0,0,0.620769 -22315,5013:466,-136,-6,0,0,0.619438 -22316,5013:465,-135,-6,0,0,0.617838 -22317,5013:364,-134,-6,0,0,0.615823 -22318,5013:363,-133,-6,0,0,0.613292 -22319,5013:362,-132,-6,0,0,0.610094 -22320,5013:361,-131,-6,0,0,0.607305 -22321,5013:360,-130,-6,0,0,0.605784 -22322,5012:469,-129,-6,0,0,0.604213 -22323,5012:468,-128,-6,0,0,0.602492 -22324,5012:467,-127,-6,0,0,0.6003 -22325,5012:466,-126,-6,0,0,0.597906 -22326,5012:465,-125,-6,0,0,0.594914 -22327,5012:364,-124,-6,0,0,0.591319 -22328,5012:363,-123,-6,0,0,0.588261 -22329,5012:362,-122,-6,0,0,0.584798 -22330,5012:361,-121,-6,0,0,0.581476 -22331,5012:360,-120,-6,0,0,0.578948 -22332,5011:469,-119,-6,0,0,0.576417 -22333,5011:468,-118,-6,0,0,0.573605 -22334,5011:467,-117,-6,0,0,0.570788 -22335,5011:466,-116,-6,0,0,0.568319 -22336,5011:465,-115,-6,0,0,0.566327 -22337,5011:364,-114,-6,0,0,0.563953 -22338,5011:363,-113,-6,0,0,0.561248 -22339,5011:362,-112,-6,0,0,0.558311 -22340,5011:361,-111,-6,0,0,0.555294 -22341,5011:360,-110,-6,0,0,0.552984 -22342,5010:469,-109,-6,0,0,0.55179 -22343,5010:468,-108,-6,0,0,0.550926 -22344,5010:467,-107,-6,0,0,0.54851 -22345,5010:466,-106,-6,0,0,0.545073 -22346,5010:465,-105,-6,0,0,0.544793 -22347,5010:364,-104,-6,0,0,0.547034 -22348,5010:363,-103,-6,0,0,0.54599 -22349,5010:362,-102,-6,0,0,0.543748 -22350,5010:361,-101,-6,0,0,0.542142 -22351,5010:360,-100,-6,0,0,0.542677 -22352,5009:469,-99,-6,0,0,0.543595 -22353,5009:468,-98,-6,0,0,0.541912 -22354,5009:467,-97,-6,0,0,0.540611 -22355,5009:466,-96,-6,0,0,0.540738 -22356,5009:465,-95,-6,0,0,0.542371 -22357,5009:364,-94,-6,0,0,0.547213 -22358,5009:363,-93,-6,0,0,0.554279 -22359,5009:362,-92,-6,0,0,0.559654 -22360,5009:361,-91,-6,0,0,0.56102 -22361,5009:360,-90,-6,0,0,0.560185 -22362,5008:469,-89,-6,0,0,0.55783 -22363,5008:468,-88,-6,0,0,0.551612 -22364,5008:467,-87,-6,0,0,0.544155 -22365,5008:466,-86,-6,0,0,0.538237 -22366,5008:465,-85,-6,0,0,0.532129 -22367,5008:364,-84,-6,0,0,0.522731 -22368,5008:363,-83,-6,0,0,0.516217 -22369,5008:362,-82,-6,0,0,0.524627 -22370,5008:361,-81,-6,0,0,0.512778 -22371,5003:465,-35,-6,0,0,0.61711 -22372,5003:364,-34,-6,0,0,0.612219 -22373,5003:363,-33,-6,0,0,0.612975 -22374,5003:362,-32,-6,0,0,0.612877 -22375,5003:361,-31,-6,0,0,0.611389 -22376,5003:360,-30,-6,0,0,0.610461 -22377,5002:469,-29,-6,0,0,0.608113 -22378,5002:468,-28,-6,0,0,0.603894 -22379,5002:467,-27,-6,0,0,0.602073 -22380,5002:466,-26,-6,0,0,0.601015 -22381,5002:465,-25,-6,0,0,0.600669 -22382,5002:364,-24,-6,0,0,0.599585 -22383,5002:363,-23,-6,0,0,0.596843 -22384,5002:362,-22,-6,0,0,0.594617 -22385,5002:361,-21,-6,0,0,0.594096 -22386,5002:360,-20,-6,0,0,0.593898 -22387,5001:469,-19,-6,0,0,0.594369 -22388,5001:468,-18,-6,0,0,0.594468 -22389,5001:467,-17,-6,0,0,0.592982 -22390,5001:466,-16,-6,0,0,0.593279 -22391,5001:465,-15,-6,0,0,0.592436 -22392,5001:364,-14,-6,0,0,0.589431 -22393,5001:363,-13,-6,0,0,0.586942 -22394,5001:362,-12,-6,0,0,0.586244 -22395,5001:361,-11,-6,0,0,0.585097 -22396,5001:360,-10,-6,0,0,0.581076 -22397,5000:469,-9,-6,0,0,0.578999 -22398,5000:468,-8,-6,0,0,0.580701 -22399,5000:467,-7,-6,0,0,0.583924 -22400,5000:466,-6,-6,0,0,0.585796 -22401,5000:465,-5,-6,0,0,0.587962 -22402,5000:364,-4,-6,0,0,0.589654 -22403,5000:363,-3,-6,0,0,0.591791 -22404,5000:362,-2,-6,0,0,0.595879 -22405,5000:361,-1,-6,0,0,0.601138 -22406,3000:361,0,-6,0,0,0.604262 -22407,3000:361,1,-6,0,0,0.605686 -22408,3000:362,2,-6,0,0,0.606888 -22409,3000:363,3,-6,0,0,0.607109 -22410,3000:364,4,-6,0,0,0.612365 -22411,3000:465,5,-6,0,0,0.619195 -22412,3000:466,6,-6,0,0,0.625113 -22413,3000:467,7,-6,0,0,0.631304 -22414,3000:468,8,-6,0,0,0.635265 -22415,3000:469,9,-6,0,0,0.632762 -22416,3001:360,10,-6,0,0,0.621712 -22417,3001:361,11,-6,0,0,0.584124 -22418,3003:469,39,-6,0,0,0.666556 -22419,3004:360,40,-6,0,0,0.669746 -22420,3004:361,41,-6,0,0,0.676414 -22421,3004:362,42,-6,0,0,0.679062 -22422,3004:363,43,-6,0,0,0.6823 -22423,3004:364,44,-6,0,0,0.683324 -22424,3004:465,45,-6,0,0,0.680762 -22425,3004:466,46,-6,0,0,0.678592 -22426,3004:467,47,-6,0,0,0.677403 -22427,3004:468,48,-6,0,0,0.675019 -22428,3004:469,49,-6,0,0,0.672557 -22429,3005:360,50,-6,0,0,0.670041 -22430,3005:361,51,-6,0,0,0.668631 -22431,3005:362,52,-6,0,0,0.662571 -22432,3005:363,53,-6,0,0,0.659232 -22433,3005:364,54,-6,0,0,0.660293 -22434,3005:465,55,-6,0,0,0.661145 -22435,3005:466,56,-6,0,0,0.662433 -22436,3005:467,57,-6,0,0,0.666511 -22437,3005:468,58,-6,0,0,0.669359 -22438,3005:469,59,-6,0,0,0.669495 -22439,3006:360,60,-6,0,0,0.668016 -22440,3006:361,61,-6,0,0,0.667058 -22441,3006:362,62,-6,0,0,0.666099 -22442,3006:363,63,-6,0,0,0.664589 -22443,3006:364,64,-6,0,0,0.66342 -22444,3006:465,65,-6,0,0,0.662364 -22445,3006:466,66,-6,0,0,0.661697 -22446,3006:467,67,-6,0,0,0.661145 -22447,3006:468,68,-6,0,0,0.65914 -22448,3006:469,69,-6,0,0,0.658978 -22449,3007:360,70,-6,0,0,0.661859 -22450,3007:361,71,-6,0,0,0.662456 -22451,3007:362,72,-6,0,0,0.663787 -22452,3007:364,74,-6,0,0,0.666008 -22453,3007:465,75,-6,0,0,0.666693 -22454,3007:466,76,-6,0,0,0.667446 -22455,3007:467,77,-6,0,0,0.667856 -22456,3007:468,78,-6,0,0,0.667674 -22457,3007:469,79,-6,0,0,0.667469 -22458,3008:360,80,-6,0,0,0.66683 -22459,3008:361,81,-6,0,0,0.666236 -22460,3008:362,82,-6,0,0,0.666511 -22461,3008:363,83,-6,0,0,0.66667 -22462,3008:364,84,-6,0,0,0.667514 -22463,3008:465,85,-6,0,0,0.668631 -22464,3008:466,86,-6,0,0,0.668153 -22465,3008:467,87,-6,0,0,0.667058 -22466,3008:468,88,-6,0,0,0.666921 -22467,3008:469,89,-6,0,0,0.666442 -22468,3009:360,90,-6,0,0,0.666031 -22469,3009:361,91,-6,0,0,0.665711 -22470,3009:362,92,-6,0,0,0.664246 -22471,3009:363,93,-6,0,0,0.663535 -22472,3009:364,94,-6,0,0,0.662318 -22473,3009:465,95,-6,0,0,0.6608 -22474,3009:466,96,-6,0,0,0.659763 -22475,3009:467,97,-6,0,0,0.659024 -22476,3009:468,98,-6,0,0,0.659186 -22477,3009:469,99,-6,0,0,0.659647 -22478,3010:360,100,-6,0,0,0.660155 -22479,3010:361,101,-6,0,0,0.660063 -22480,3010:362,102,-6,0,0,0.65944 -22481,3010:363,103,-6,0,0,0.659394 -22482,3010:364,104,-6,0,0,0.668677 -22483,3010:467,107,-6,0,0,0.677942 -22484,3010:468,108,-6,0,0,0.674703 -22485,3010:469,109,-6,0,0,0.674703 -22486,3011:360,110,-6,0,0,0.672625 -22487,3011:361,111,-6,0,0,0.673868 -22488,3011:362,112,-6,0,0,0.675829 -22489,3011:363,113,-6,0,0,0.677336 -22490,3011:364,114,-6,0,0,0.677762 -22491,3011:465,115,-6,0,0,0.679152 -22492,3011:466,116,-6,0,0,0.683257 -22493,3011:467,117,-6,0,0,0.683946 -22494,3011:468,118,-6,0,0,0.665528 -22495,3011:469,119,-6,0,0,0.67138 -22496,3012:361,121,-6,0,0,0.678838 -22497,3012:362,122,-6,0,0,0.685055 -22498,3012:364,124,-6,0,0,0.685942 -22499,3012:465,125,-6,0,0,0.681119 -22500,3012:466,126,-6,0,0,0.686915 -22501,3012:467,127,-6,0,0,0.685477 -22502,3012:468,128,-6,0,0,0.684767 -22503,3012:469,129,-6,0,0,0.685011 -22504,3013:360,130,-6,0,0,0.684812 -22505,3013:361,131,-6,0,0,0.683191 -22506,3013:362,132,-6,0,0,0.681097 -22507,3013:363,133,-6,0,0,0.682033 -22508,3013:364,134,-6,0,0,0.685631 -22509,3013:465,135,-6,0,0,0.690197 -22510,3013:466,136,-6,0,0,0.67147 -22511,3013:467,137,-6,0,0,0.678928 -22512,3013:468,138,-6,0,0,0.702321 -22513,3014:467,147,-6,0,0,0.669881 -22514,3014:468,148,-6,0,0,0.676842 -22515,3014:469,149,-6,0,0,0.679175 -22516,3015:360,150,-6,0,0,0.680762 -22517,3015:363,153,-6,0,0,0.682211 -22518,3015:364,154,-6,0,0,0.686627 -22519,3015:466,156,-6,0,0,0.680985 -22520,3015:467,157,-6,0,0,0.681342 -22521,3015:468,158,-6,0,0,0.683346 -22522,3015:469,159,-6,0,0,0.683324 -22523,3016:360,160,-6,0,0,0.681877 -22524,3016:361,161,-6,0,0,0.676775 -22525,3016:362,162,-6,0,0,0.68279 -22526,3016:363,163,-6,0,0,0.683413 -22527,3016:364,164,-6,0,0,0.682546 -22528,3016:465,165,-6,0,0,0.681409 -22529,3016:466,166,-6,0,0,0.67904 -22530,3016:467,167,-6,0,0,0.678883 -22531,3016:468,168,-6,0,0,0.679756 -22532,3016:469,169,-6,0,0,0.679958 -22533,3017:360,170,-6,0,0,0.678794 -22534,3017:361,171,-6,0,0,0.678211 -22535,3017:362,172,-6,0,0,0.678143 -22536,3017:363,173,-6,0,0,0.678368 -22537,3017:364,174,-6,0,0,0.678503 -22538,3017:465,175,-6,0,0,0.67857 -22539,3017:466,176,-6,0,0,0.678301 -22540,3017:467,177,-6,0,0,0.678861 -22541,3017:468,178,-6,0,0,0.67942 -22542,3017:469,179,-6,0,0,0.680069 -22543,3018:360,180,-6,0,0,0.680382 -22544,5018:350,-180,-5,0,0,0.680606 -22545,5017:459,-179,-5,0,0,0.679599 -22546,5017:458,-178,-5,0,0,0.678637 -22547,5017:457,-177,-5,0,0,0.678009 -22548,5017:456,-176,-5,0,0,0.67756 -22549,5017:455,-175,-5,0,0,0.676864 -22550,5017:354,-174,-5,0,0,0.677852 -22551,5017:353,-173,-5,0,0,0.676437 -22552,5017:352,-172,-5,0,0,0.674748 -22553,5017:351,-171,-5,0,0,0.673371 -22554,5017:350,-170,-5,0,0,0.672059 -22555,5016:459,-169,-5,0,0,0.671221 -22556,5016:458,-168,-5,0,0,0.670563 -22557,5016:457,-167,-5,0,0,0.6697 -22558,5016:456,-166,-5,0,0,0.668677 -22559,5016:455,-165,-5,0,0,0.66756 -22560,5016:354,-164,-5,0,0,0.666122 -22561,5016:353,-163,-5,0,0,0.664566 -22562,5016:352,-162,-5,0,0,0.662823 -22563,5016:351,-161,-5,0,0,0.660593 -22564,5016:350,-160,-5,0,0,0.658678 -22565,5015:459,-159,-5,0,0,0.657268 -22566,5015:458,-158,-5,0,0,0.655808 -22567,5015:457,-157,-5,0,0,0.653764 -22568,5015:456,-156,-5,0,0,0.651668 -22569,5015:455,-155,-5,0,0,0.650081 -22570,5015:354,-154,-5,0,0,0.647764 -22571,5015:353,-153,-5,0,0,0.645627 -22572,5015:352,-152,-5,0,0,0.643626 -22573,5015:351,-151,-5,0,0,0.642093 -22574,5015:350,-150,-5,0,0,0.640912 -22575,5014:459,-149,-5,0,0,0.640013 -22576,5014:458,-148,-5,0,0,0.639113 -22577,5014:457,-147,-5,0,0,0.637713 -22578,5014:456,-146,-5,0,0,0.635764 -22579,5014:455,-145,-5,0,0,0.633454 -22580,5014:354,-144,-5,0,0,0.631352 -22581,5014:353,-143,-5,0,0,0.629077 -22582,5014:352,-142,-5,0,0,0.626749 -22583,5014:351,-141,-5,0,0,0.62468 -22584,5014:350,-140,-5,0,0,0.622026 -22585,5013:459,-139,-5,0,0,0.620043 -22586,5013:458,-138,-5,0,0,0.617425 -22587,5013:457,-137,-5,0,0,0.614728 -22588,5013:456,-136,-5,0,0,0.611779 -22589,5013:455,-135,-5,0,0,0.609165 -22590,5013:354,-134,-5,0,0,0.606839 -22591,5013:353,-133,-5,0,0,0.604852 -22592,5013:352,-132,-5,0,0,0.603722 -22593,5013:351,-131,-5,0,0,0.602836 -22594,5013:350,-130,-5,0,0,0.600226 -22595,5012:459,-129,-5,0,0,0.598055 -22596,5012:458,-128,-5,0,0,0.595483 -22597,5012:457,-127,-5,0,0,0.593155 -22598,5012:456,-126,-5,0,0,0.590449 -22599,5012:455,-125,-5,0,0,0.588037 -22600,5012:354,-124,-5,0,0,0.585945 -22601,5012:353,-123,-5,0,0,0.583874 -22602,5012:352,-122,-5,0,0,0.581901 -22603,5012:351,-121,-5,0,0,0.58015 -22604,5012:350,-120,-5,0,0,0.578899 -22605,5011:459,-119,-5,0,0,0.57772 -22606,5011:458,-118,-5,0,0,0.576191 -22607,5011:457,-117,-5,0,0,0.573403 -22608,5011:456,-116,-5,0,0,0.570889 -22609,5011:455,-115,-5,0,0,0.568925 -22610,5011:354,-114,-5,0,0,0.566832 -22611,5011:353,-113,-5,0,0,0.564535 -22612,5011:352,-112,-5,0,0,0.561957 -22613,5011:351,-111,-5,0,0,0.559805 -22614,5011:350,-110,-5,0,0,0.55816 -22615,5010:459,-109,-5,0,0,0.557475 -22616,5010:458,-108,-5,0,0,0.556638 -22617,5010:457,-107,-5,0,0,0.556638 -22618,5010:456,-106,-5,0,0,0.557019 -22619,5010:455,-105,-5,0,0,0.556638 -22620,5010:354,-104,-5,0,0,0.557424 -22621,5010:353,-103,-5,0,0,0.55603 -22622,5010:352,-102,-5,0,0,0.554939 -22623,5010:351,-101,-5,0,0,0.553975 -22624,5010:350,-100,-5,0,0,0.552121 -22625,5009:459,-99,-5,0,0,0.550011 -22626,5009:458,-98,-5,0,0,0.550494 -22627,5009:457,-97,-5,0,0,0.553136 -22628,5009:456,-96,-5,0,0,0.55334 -22629,5009:455,-95,-5,0,0,0.553873 -22630,5009:354,-94,-5,0,0,0.555345 -22631,5009:353,-93,-5,0,0,0.557728 -22632,5009:352,-92,-5,0,0,0.560616 -22633,5009:351,-91,-5,0,0,0.563397 -22634,5009:350,-90,-5,0,0,0.566579 -22635,5008:459,-89,-5,0,0,0.564535 -22636,5008:458,-88,-5,0,0,0.558742 -22637,5008:457,-87,-5,0,0,0.553822 -22638,5008:456,-86,-5,0,0,0.548001 -22639,5008:455,-85,-5,0,0,0.542524 -22640,5008:354,-84,-5,0,0,0.538748 -22641,5008:353,-83,-5,0,0,0.536577 -22642,5008:352,-82,-5,0,0,0.541121 -22643,5008:351,-81,-5,0,0,0.528289 -22644,5003:458,-38,-5,0,0,0.622195 -22645,5003:457,-37,-5,0,0,0.615798 -22646,5003:456,-36,-5,0,0,0.616721 -22647,5003:455,-35,-5,0,0,0.617474 -22648,5003:354,-34,-5,0,0,0.616916 -22649,5003:353,-33,-5,0,0,0.616042 -22650,5003:352,-32,-5,0,0,0.615093 -22651,5003:351,-31,-5,0,0,0.613803 -22652,5003:350,-30,-5,0,0,0.612389 -22653,5002:459,-29,-5,0,0,0.611926 -22654,5002:458,-28,-5,0,0,0.611487 -22655,5002:457,-27,-5,0,0,0.610534 -22656,5002:456,-26,-5,0,0,0.608456 -22657,5002:455,-25,-5,0,0,0.606766 -22658,5002:354,-24,-5,0,0,0.60679 -22659,5002:353,-23,-5,0,0,0.607476 -22660,5002:352,-22,-5,0,0,0.606912 -22661,5002:351,-21,-5,0,0,0.605834 -22662,5002:350,-20,-5,0,0,0.604581 -22663,5001:459,-19,-5,0,0,0.603181 -22664,5001:458,-18,-5,0,0,0.602541 -22665,5001:457,-17,-5,0,0,0.603402 -22666,5001:456,-16,-5,0,0,0.605073 -22667,5001:455,-15,-5,0,0,0.605932 -22668,5001:354,-14,-5,0,0,0.606005 -22669,5001:353,-13,-5,0,0,0.606447 -22670,5001:352,-12,-5,0,0,0.606692 -22671,5001:351,-11,-5,0,0,0.60701 -22672,5001:350,-10,-5,0,0,0.608627 -22673,5000:459,-9,-5,0,0,0.610021 -22674,5000:458,-8,-5,0,0,0.610876 -22675,5000:457,-7,-5,0,0,0.611219 -22676,5000:456,-6,-5,0,0,0.612633 -22677,5000:455,-5,-5,0,0,0.61373 -22678,5000:354,-4,-5,0,0,0.614461 -22679,5000:353,-3,-5,0,0,0.615677 -22680,5000:352,-2,-5,0,0,0.617328 -22681,5000:351,-1,-5,0,0,0.617717 -22682,3000:351,0,-5,0,0,0.616649 -22683,3000:351,1,-5,0,0,0.616867 -22684,3000:352,2,-5,0,0,0.618783 -22685,3000:353,3,-5,0,0,0.622919 -22686,3000:354,4,-5,0,0,0.626604 -22687,3000:455,5,-5,0,0,0.628502 -22688,3000:456,6,-5,0,0,0.629796 -22689,3000:457,7,-5,0,0,0.630634 -22690,3000:458,8,-5,0,0,0.627445 -22691,3000:459,9,-5,0,0,0.618008 -22692,3001:350,10,-5,0,0,0.603353 -22693,3001:351,11,-5,0,0,0.596448 -22694,3004:350,40,-5,0,0,0.655645 -22695,3004:351,41,-5,0,0,0.670948 -22696,3004:352,42,-5,0,0,0.676999 -22697,3004:353,43,-5,0,0,0.676437 -22698,3004:354,44,-5,0,0,0.67045 -22699,3004:455,45,-5,0,0,0.67423 -22700,3004:456,46,-5,0,0,0.683591 -22701,3004:457,47,-5,0,0,0.684346 -22702,3004:458,48,-5,0,0,0.681944 -22703,3004:459,49,-5,0,0,0.679443 -22704,3005:350,50,-5,0,0,0.676864 -22705,3005:351,51,-5,0,0,0.6731 -22706,3005:352,52,-5,0,0,0.669268 -22707,3005:353,53,-5,0,0,0.663742 -22708,3005:354,54,-5,0,0,0.660454 -22709,3005:455,55,-5,0,0,0.659417 -22710,3005:456,56,-5,0,0,0.661697 -22711,3005:457,57,-5,0,0,0.663397 -22712,3005:458,58,-5,0,0,0.667742 -22713,3005:459,59,-5,0,0,0.668699 -22714,3006:350,60,-5,0,0,0.668426 -22715,3006:351,61,-5,0,0,0.667674 -22716,3006:352,62,-5,0,0,0.665734 -22717,3006:353,63,-5,0,0,0.66397 -22718,3006:354,64,-5,0,0,0.662962 -22719,3006:455,65,-5,0,0,0.66156 -22720,3006:456,66,-5,0,0,0.659809 -22721,3006:457,67,-5,0,0,0.657892 -22722,3006:458,68,-5,0,0,0.656666 -22723,3006:459,69,-5,0,0,0.656225 -22724,3007:350,70,-5,0,0,0.656827 -22725,3007:351,71,-5,0,0,0.658146 -22726,3007:352,72,-5,0,0,0.659716 -22727,3007:354,74,-5,0,0,0.661329 -22728,3007:455,75,-5,0,0,0.66149 -22729,3007:456,76,-5,0,0,0.662019 -22730,3007:457,77,-5,0,0,0.662571 -22731,3007:458,78,-5,0,0,0.662732 -22732,3007:459,79,-5,0,0,0.663191 -22733,3008:350,80,-5,0,0,0.664223 -22734,3008:351,81,-5,0,0,0.665665 -22735,3008:352,82,-5,0,0,0.666761 -22736,3008:353,83,-5,0,0,0.667651 -22737,3008:354,84,-5,0,0,0.669154 -22738,3008:455,85,-5,0,0,0.670586 -22739,3008:456,86,-5,0,0,0.671855 -22740,3008:457,87,-5,0,0,0.671697 -22741,3008:458,88,-5,0,0,0.670722 -22742,3008:459,89,-5,0,0,0.670155 -22743,3009:350,90,-5,0,0,0.669109 -22744,3009:351,91,-5,0,0,0.667537 -22745,3009:352,92,-5,0,0,0.66635 -22746,3009:353,93,-5,0,0,0.665299 -22747,3009:354,94,-5,0,0,0.663948 -22748,3009:455,95,-5,0,0,0.662709 -22749,3009:456,96,-5,0,0,0.661628 -22750,3009:457,97,-5,0,0,0.660892 -22751,3009:458,98,-5,0,0,0.660431 -22752,3009:459,99,-5,0,0,0.660662 -22753,3010:350,100,-5,0,0,0.661628 -22754,3010:351,101,-5,0,0,0.663191 -22755,3010:352,102,-5,0,0,0.668972 -22756,3010:457,107,-5,0,0,0.682122 -22757,3010:458,108,-5,0,0,0.680091 -22758,3010:459,109,-5,0,0,0.674274 -22759,3011:350,110,-5,0,0,0.668995 -22760,3011:351,111,-5,0,0,0.671651 -22761,3011:352,112,-5,0,0,0.675649 -22762,3011:353,113,-5,0,0,0.677538 -22763,3011:354,114,-5,0,0,0.67942 -22764,3011:456,116,-5,0,0,0.686185 -22765,3011:457,117,-5,0,0,0.686052 -22766,3011:458,118,-5,0,0,0.677942 -22767,3011:459,119,-5,0,0,0.669655 -22768,3012:351,121,-5,0,0,0.681052 -22769,3012:353,123,-5,0,0,0.682501 -22770,3012:354,124,-5,0,0,0.685145 -22771,3012:455,125,-5,0,0,0.686163 -22772,3012:456,126,-5,0,0,0.683702 -22773,3012:457,127,-5,0,0,0.676932 -22774,3012:458,128,-5,0,0,0.681677 -22775,3012:459,129,-5,0,0,0.686849 -22776,3013:350,130,-5,0,0,0.687246 -22777,3013:351,131,-5,0,0,0.681008 -22778,3013:352,132,-5,0,0,0.680427 -22779,3013:353,133,-5,0,0,0.679935 -22780,3013:354,134,-5,0,0,0.687246 -22781,3014:455,145,-5,0,0,0.659532 -22782,3014:456,146,-5,0,0,0.673122 -22783,3014:457,147,-5,0,0,0.674387 -22784,3014:458,148,-5,0,0,0.674883 -22785,3014:459,149,-5,0,0,0.674906 -22786,3015:350,150,-5,0,0,0.677178 -22787,3015:351,151,-5,0,0,0.680494 -22788,3015:352,152,-5,0,0,0.679175 -22789,3015:354,154,-5,0,0,0.677044 -22790,3015:455,155,-5,0,0,0.67637 -22791,3015:456,156,-5,0,0,0.676796 -22792,3015:457,157,-5,0,0,0.677089 -22793,3015:458,158,-5,0,0,0.678682 -22794,3015:459,159,-5,0,0,0.678547 -22795,3016:350,160,-5,0,0,0.677381 -22796,3016:351,161,-5,0,0,0.677628 -22797,3016:352,162,-5,0,0,0.67783 -22798,3016:353,163,-5,0,0,0.678682 -22799,3016:354,164,-5,0,0,0.678749 -22800,3016:455,165,-5,0,0,0.678816 -22801,3016:456,166,-5,0,0,0.677897 -22802,3016:457,167,-5,0,0,0.677538 -22803,3016:458,168,-5,0,0,0.678189 -22804,3016:459,169,-5,0,0,0.677785 -22805,3017:350,170,-5,0,0,0.676819 -22806,3017:351,171,-5,0,0,0.676324 -22807,3017:352,172,-5,0,0,0.675717 -22808,3017:353,173,-5,0,0,0.675649 -22809,3017:354,174,-5,0,0,0.676347 -22810,3017:455,175,-5,0,0,0.676932 -22811,3017:456,176,-5,0,0,0.676707 -22812,3017:457,177,-5,0,0,0.677313 -22813,3017:458,178,-5,0,0,0.67839 -22814,3017:459,179,-5,0,0,0.679622 -22815,3018:350,180,-5,0,0,0.680606 -22816,5018:140,-180,-4,0,0,0.678032 -22817,5017:249,-179,-4,0,0,0.678099 -22818,5017:248,-178,-4,0,0,0.678009 -22819,5017:247,-177,-4,0,0,0.677785 -22820,5017:246,-176,-4,0,0,0.678143 -22821,5017:245,-175,-4,0,0,0.678816 -22822,5017:144,-174,-4,0,0,0.679287 -22823,5017:143,-173,-4,0,0,0.678861 -22824,5017:142,-172,-4,0,0,0.677246 -22825,5017:141,-171,-4,0,0,0.675492 -22826,5017:140,-170,-4,0,0,0.672896 -22827,5016:249,-169,-4,0,0,0.671402 -22828,5016:248,-168,-4,0,0,0.669995 -22829,5016:247,-167,-4,0,0,0.668631 -22830,5016:246,-166,-4,0,0,0.66731 -22831,5016:245,-165,-4,0,0,0.666236 -22832,5016:144,-164,-4,0,0,0.664727 -22833,5016:143,-163,-4,0,0,0.662663 -22834,5016:142,-162,-4,0,0,0.660754 -22835,5016:141,-161,-4,0,0,0.659024 -22836,5016:140,-160,-4,0,0,0.65773 -22837,5015:249,-159,-4,0,0,0.656225 -22838,5015:248,-158,-4,0,0,0.654508 -22839,5015:247,-157,-4,0,0,0.652554 -22840,5015:246,-156,-4,0,0,0.650385 -22841,5015:245,-155,-4,0,0,0.649169 -22842,5015:144,-154,-4,0,0,0.647154 -22843,5015:143,-153,-4,0,0,0.645345 -22844,5015:142,-152,-4,0,0,0.644027 -22845,5015:141,-151,-4,0,0,0.641904 -22846,5015:140,-150,-4,0,0,0.640415 -22847,5014:249,-149,-4,0,0,0.63814 -22848,5014:248,-148,-4,0,0,0.636383 -22849,5014:247,-147,-4,0,0,0.634216 -22850,5014:246,-146,-4,0,0,0.631471 -22851,5014:245,-145,-4,0,0,0.629173 -22852,5014:144,-144,-4,0,0,0.626941 -22853,5014:143,-143,-4,0,0,0.624776 -22854,5014:142,-142,-4,0,0,0.622654 -22855,5014:141,-141,-4,0,0,0.620164 -22856,5014:140,-140,-4,0,0,0.617814 -22857,5013:249,-139,-4,0,0,0.615749 -22858,5013:248,-138,-4,0,0,0.613292 -22859,5013:247,-137,-4,0,0,0.610852 -22860,5013:246,-136,-4,0,0,0.608383 -22861,5013:245,-135,-4,0,0,0.606177 -22862,5013:144,-134,-4,0,0,0.605023 -22863,5013:143,-133,-4,0,0,0.604115 -22864,5013:142,-132,-4,0,0,0.602713 -22865,5013:141,-131,-4,0,0,0.600818 -22866,5013:140,-130,-4,0,0,0.598573 -22867,5012:249,-129,-4,0,0,0.596498 -22868,5012:248,-128,-4,0,0,0.594963 -22869,5012:247,-127,-4,0,0,0.593675 -22870,5012:246,-126,-4,0,0,0.592559 -22871,5012:245,-125,-4,0,0,0.590723 -22872,5012:144,-124,-4,0,0,0.588137 -22873,5012:143,-123,-4,0,0,0.585421 -22874,5012:142,-122,-4,0,0,0.583201 -22875,5012:141,-121,-4,0,0,0.581576 -22876,5012:140,-120,-4,0,0,0.580526 -22877,5011:249,-119,-4,0,0,0.579074 -22878,5011:248,-118,-4,0,0,0.576868 -22879,5011:247,-117,-4,0,0,0.575313 -22880,5011:246,-116,-4,0,0,0.57358 -22881,5011:245,-115,-4,0,0,0.572096 -22882,5011:144,-114,-4,0,0,0.570032 -22883,5011:143,-113,-4,0,0,0.567462 -22884,5011:142,-112,-4,0,0,0.566251 -22885,5011:141,-111,-4,0,0,0.564586 -22886,5011:140,-110,-4,0,0,0.562361 -22887,5010:249,-109,-4,0,0,0.560211 -22888,5010:248,-108,-4,0,0,0.55935 -22889,5010:247,-107,-4,0,0,0.559805 -22890,5010:246,-106,-4,0,0,0.561097 -22891,5010:245,-105,-4,0,0,0.561173 -22892,5010:144,-104,-4,0,0,0.560261 -22893,5010:143,-103,-4,0,0,0.559021 -22894,5010:142,-102,-4,0,0,0.558007 -22895,5010:141,-101,-4,0,0,0.557273 -22896,5010:140,-100,-4,0,0,0.556664 -22897,5009:249,-99,-4,0,0,0.556664 -22898,5009:248,-98,-4,0,0,0.557146 -22899,5009:247,-97,-4,0,0,0.557247 -22900,5009:246,-96,-4,0,0,0.557475 -22901,5009:245,-95,-4,0,0,0.557932 -22902,5009:144,-94,-4,0,0,0.558236 -22903,5009:143,-93,-4,0,0,0.557956 -22904,5009:142,-92,-4,0,0,0.558007 -22905,5009:141,-91,-4,0,0,0.559476 -22906,5009:140,-90,-4,0,0,0.565494 -22907,5008:249,-89,-4,0,0,0.566832 -22908,5008:248,-88,-4,0,0,0.563701 -22909,5008:247,-87,-4,0,0,0.55816 -22910,5008:246,-86,-4,0,0,0.552121 -22911,5008:245,-85,-4,0,0,0.547696 -22912,5008:144,-84,-4,0,0,0.555015 -22913,5008:143,-83,-4,0,0,0.56231 -22914,5008:142,-82,-4,0,0,0.562867 -22915,5008:141,-81,-4,0,0,0.568521 -22916,5004:143,-43,-4,0,0,0.638164 -22917,5004:142,-42,-4,0,0,0.628334 -22918,5004:141,-41,-4,0,0,0.62622 -22919,5004:140,-40,-4,0,0,0.617571 -22920,5003:249,-39,-4,0,0,0.61876 -22921,5003:248,-38,-4,0,0,0.618978 -22922,5003:247,-37,-4,0,0,0.618056 -22923,5003:246,-36,-4,0,0,0.61762 -22924,5003:245,-35,-4,0,0,0.616867 -22925,5003:144,-34,-4,0,0,0.615628 -22926,5003:143,-33,-4,0,0,0.614533 -22927,5003:142,-32,-4,0,0,0.613292 -22928,5003:141,-31,-4,0,0,0.613608 -22929,5003:140,-30,-4,0,0,0.612877 -22930,5002:249,-29,-4,0,0,0.612024 -22931,5002:248,-28,-4,0,0,0.611145 -22932,5002:247,-27,-4,0,0,0.610632 -22933,5002:246,-26,-4,0,0,0.610192 -22934,5002:245,-25,-4,0,0,0.609728 -22935,5002:144,-24,-4,0,0,0.60919 -22936,5002:143,-23,-4,0,0,0.608823 -22937,5002:142,-22,-4,0,0,0.608554 -22938,5002:141,-21,-4,0,0,0.608309 -22939,5002:140,-20,-4,0,0,0.608284 -22940,5001:249,-19,-4,0,0,0.608431 -22941,5001:248,-18,-4,0,0,0.6087 -22942,5001:247,-17,-4,0,0,0.609165 -22943,5001:246,-16,-4,0,0,0.60919 -22944,5001:245,-15,-4,0,0,0.609972 -22945,5001:144,-14,-4,0,0,0.611438 -22946,5001:143,-13,-4,0,0,0.613292 -22947,5001:142,-12,-4,0,0,0.615628 -22948,5001:141,-11,-4,0,0,0.618032 -22949,5001:140,-10,-4,0,0,0.620043 -22950,5000:249,-9,-4,0,0,0.621397 -22951,5000:248,-8,-4,0,0,0.623016 -22952,5000:247,-7,-4,0,0,0.624004 -22953,5000:246,-6,-4,0,0,0.624872 -22954,5000:245,-5,-4,0,0,0.625498 -22955,5000:144,-4,-4,0,0,0.626003 -22956,5000:143,-3,-4,0,0,0.627037 -22957,5000:142,-2,-4,0,0,0.628262 -22958,5000:141,-1,-4,0,0,0.629844 -22959,3000:141,0,-4,0,0,0.631376 -22960,3000:141,1,-4,0,0,0.631543 -22961,3000:142,2,-4,0,0,0.631136 -22962,3000:143,3,-4,0,0,0.630155 -22963,3000:144,4,-4,0,0,0.628549 -22964,3000:245,5,-4,0,0,0.626171 -22965,3000:246,6,-4,0,0,0.623088 -22966,3000:247,7,-4,0,0,0.617838 -22967,3000:248,8,-4,0,0,0.611755 -22968,3000:249,9,-4,0,0,0.597832 -22969,3004:141,41,-4,0,0,0.626773 -22970,3004:142,42,-4,0,0,0.675334 -22971,3004:143,43,-4,0,0,0.667195 -22972,3004:144,44,-4,0,0,0.654949 -22973,3004:245,45,-4,0,0,0.662777 -22974,3004:246,46,-4,0,0,0.66995 -22975,3004:247,47,-4,0,0,0.677089 -22976,3004:248,48,-4,0,0,0.680829 -22977,3004:249,49,-4,0,0,0.679085 -22978,3005:140,50,-4,0,0,0.676999 -22979,3005:141,51,-4,0,0,0.676302 -22980,3005:142,52,-4,0,0,0.674929 -22981,3005:143,53,-4,0,0,0.671516 -22982,3005:144,54,-4,0,0,0.666511 -22983,3005:245,55,-4,0,0,0.663581 -22984,3005:246,56,-4,0,0,0.661904 -22985,3005:247,57,-4,0,0,0.660362 -22986,3005:248,58,-4,0,0,0.660108 -22987,3005:249,59,-4,0,0,0.661214 -22988,3006:140,60,-4,0,0,0.662364 -22989,3006:141,61,-4,0,0,0.661996 -22990,3006:142,62,-4,0,0,0.660846 -22991,3006:143,63,-4,0,0,0.659855 -22992,3006:144,64,-4,0,0,0.659532 -22993,3006:245,65,-4,0,0,0.659994 -22994,3006:246,66,-4,0,0,0.659624 -22995,3006:247,67,-4,0,0,0.658909 -22996,3006:248,68,-4,0,0,0.65847 -22997,3006:249,69,-4,0,0,0.657985 -22998,3007:140,70,-4,0,0,0.657915 -22999,3007:141,71,-4,0,0,0.658331 -23000,3007:142,72,-4,0,0,0.659463 -23001,3007:144,74,-4,0,0,0.660339 -23002,3007:245,75,-4,0,0,0.660454 -23003,3007:246,76,-4,0,0,0.660386 -23004,3007:247,77,-4,0,0,0.660224 -23005,3007:248,78,-4,0,0,0.659486 -23006,3007:249,79,-4,0,0,0.658886 -23007,3008:140,80,-4,0,0,0.659279 -23008,3008:141,81,-4,0,0,0.659579 -23009,3008:142,82,-4,0,0,0.660408 -23010,3008:143,83,-4,0,0,0.662226 -23011,3008:144,84,-4,0,0,0.664521 -23012,3008:245,85,-4,0,0,0.666442 -23013,3008:246,86,-4,0,0,0.66813 -23014,3008:247,87,-4,0,0,0.669564 -23015,3008:248,88,-4,0,0,0.670358 -23016,3008:249,89,-4,0,0,0.670881 -23017,3009:140,90,-4,0,0,0.669427 -23018,3009:141,91,-4,0,0,0.66756 -23019,3009:142,92,-4,0,0,0.664933 -23020,3009:143,93,-4,0,0,0.663443 -23021,3009:144,94,-4,0,0,0.661882 -23022,3009:245,95,-4,0,0,0.6605 -23023,3009:246,96,-4,0,0,0.659832 -23024,3009:247,97,-4,0,0,0.660293 -23025,3009:248,98,-4,0,0,0.661329 -23026,3009:249,99,-4,0,0,0.663076 -23027,3010:140,100,-4,0,0,0.667879 -23028,3010:141,101,-4,0,0,0.669632 -23029,3010:247,107,-4,0,0,0.67432 -23030,3010:248,108,-4,0,0,0.676347 -23031,3010:249,109,-4,0,0,0.668472 -23032,3011:140,110,-4,0,0,0.676392 -23033,3011:247,117,-4,0,0,0.68603 -23034,3011:248,118,-4,0,0,0.674004 -23035,3011:249,119,-4,0,0,0.666305 -23036,3012:143,123,-4,0,0,0.686959 -23037,3012:144,124,-4,0,0,0.688746 -23038,3012:245,125,-4,0,0,0.690022 -23039,3012:246,126,-4,0,0,0.686893 -23040,3012:247,127,-4,0,0,0.666145 -23041,3012:248,128,-4,0,0,0.666579 -23042,3012:249,129,-4,0,0,0.660892 -23043,3013:140,130,-4,0,0,0.66264 -23044,3013:141,131,-4,0,0,0.66507 -23045,3013:142,132,-4,0,0,0.684812 -23046,3013:143,133,-4,0,0,0.69844 -23047,3013:245,135,-4,0,0,0.671062 -23048,3013:246,136,-4,0,0,0.678592 -23049,3014:141,141,-4,0,0,0.657128 -23050,3014:142,142,-4,0,0,0.663352 -23051,3014:143,143,-4,0,0,0.666784 -23052,3014:144,144,-4,0,0,0.66895 -23053,3014:245,145,-4,0,0,0.67113 -23054,3014:246,146,-4,0,0,0.673213 -23055,3014:247,147,-4,0,0,0.674816 -23056,3014:248,148,-4,0,0,0.674861 -23057,3014:249,149,-4,0,0,0.67628 -23058,3015:140,150,-4,0,0,0.678233 -23059,3015:141,151,-4,0,0,0.676819 -23060,3015:142,152,-4,0,0,0.676999 -23061,3015:143,153,-4,0,0,0.67646 -23062,3015:144,154,-4,0,0,0.675829 -23063,3015:245,155,-4,0,0,0.675897 -23064,3015:246,156,-4,0,0,0.676504 -23065,3015:247,157,-4,0,0,0.676909 -23066,3015:248,158,-4,0,0,0.676482 -23067,3015:249,159,-4,0,0,0.677493 -23068,3016:140,160,-4,0,0,0.677964 -23069,3016:141,161,-4,0,0,0.677583 -23070,3016:142,162,-4,0,0,0.678009 -23071,3016:143,163,-4,0,0,0.678054 -23072,3016:144,164,-4,0,0,0.678413 -23073,3016:245,165,-4,0,0,0.678211 -23074,3016:246,166,-4,0,0,0.678099 -23075,3016:247,167,-4,0,0,0.677336 -23076,3016:248,168,-4,0,0,0.676212 -23077,3016:249,169,-4,0,0,0.675739 -23078,3017:140,170,-4,0,0,0.674816 -23079,3017:141,171,-4,0,0,0.673642 -23080,3017:142,172,-4,0,0,0.67319 -23081,3017:143,173,-4,0,0,0.6731 -23082,3017:144,174,-4,0,0,0.67441 -23083,3017:245,175,-4,0,0,0.6745 -23084,3017:246,176,-4,0,0,0.674861 -23085,3017:247,177,-4,0,0,0.675379 -23086,3017:248,178,-4,0,0,0.675965 -23087,3017:249,179,-4,0,0,0.677089 -23088,3018:140,180,-4,0,0,0.678032 -23089,5018:130,-180,-3,0,0,0.677605 -23090,5017:239,-179,-3,0,0,0.67783 -23091,5017:238,-178,-3,0,0,0.677942 -23092,5017:237,-177,-3,0,0,0.677942 -23093,5017:236,-176,-3,0,0,0.677111 -23094,5017:235,-175,-3,0,0,0.676684 -23095,5017:134,-174,-3,0,0,0.6761 -23096,5017:133,-173,-3,0,0,0.674996 -23097,5017:132,-172,-3,0,0,0.673597 -23098,5017:131,-171,-3,0,0,0.67224 -23099,5017:130,-170,-3,0,0,0.670994 -23100,5016:239,-169,-3,0,0,0.670608 -23101,5016:238,-168,-3,0,0,0.668426 -23102,5016:237,-167,-3,0,0,0.665619 -23103,5016:236,-166,-3,0,0,0.66381 -23104,5016:235,-165,-3,0,0,0.662088 -23105,5016:134,-164,-3,0,0,0.660662 -23106,5016:133,-163,-3,0,0,0.658794 -23107,5016:132,-162,-3,0,0,0.65655 -23108,5016:131,-161,-3,0,0,0.655391 -23109,5016:130,-160,-3,0,0,0.654322 -23110,5015:239,-159,-3,0,0,0.652997 -23111,5015:238,-158,-3,0,0,0.651225 -23112,5015:237,-157,-3,0,0,0.649777 -23113,5015:236,-156,-3,0,0,0.648162 -23114,5015:235,-155,-3,0,0,0.648068 -23115,5015:134,-154,-3,0,0,0.64551 -23116,5015:133,-153,-3,0,0,0.643862 -23117,5015:132,-152,-3,0,0,0.642684 -23118,5015:131,-151,-3,0,0,0.640817 -23119,5015:130,-150,-3,0,0,0.637713 -23120,5014:239,-149,-3,0,0,0.634789 -23121,5014:238,-148,-3,0,0,0.632332 -23122,5014:237,-147,-3,0,0,0.6297 -23123,5014:236,-146,-3,0,0,0.628262 -23124,5014:235,-145,-3,0,0,0.627445 -23125,5014:134,-144,-3,0,0,0.62622 -23126,5014:133,-143,-3,0,0,0.623691 -23127,5014:132,-142,-3,0,0,0.620817 -23128,5014:131,-141,-3,0,0,0.618468 -23129,5014:130,-140,-3,0,0,0.616236 -23130,5013:239,-139,-3,0,0,0.614217 -23131,5013:238,-138,-3,0,0,0.612633 -23132,5013:237,-137,-3,0,0,0.611047 -23133,5013:236,-136,-3,0,0,0.608015 -23134,5013:235,-135,-3,0,0,0.605392 -23135,5013:134,-134,-3,0,0,0.603402 -23136,5013:133,-133,-3,0,0,0.601926 -23137,5013:132,-132,-3,0,0,0.600793 -23138,5013:131,-131,-3,0,0,0.59998 -23139,5013:130,-130,-3,0,0,0.598869 -23140,5012:239,-129,-3,0,0,0.598153 -23141,5012:238,-128,-3,0,0,0.597141 -23142,5012:237,-127,-3,0,0,0.595855 -23143,5012:236,-126,-3,0,0,0.593923 -23144,5012:235,-125,-3,0,0,0.591567 -23145,5012:134,-124,-3,0,0,0.589878 -23146,5012:133,-123,-3,0,0,0.588808 -23147,5012:132,-122,-3,0,0,0.58724 -23148,5012:131,-121,-3,0,0,0.585446 -23149,5012:130,-120,-3,0,0,0.583825 -23150,5011:239,-119,-3,0,0,0.582101 -23151,5011:238,-118,-3,0,0,0.580626 -23152,5011:237,-117,-3,0,0,0.578874 -23153,5011:236,-116,-3,0,0,0.575915 -23154,5011:235,-115,-3,0,0,0.573605 -23155,5011:134,-114,-3,0,0,0.571568 -23156,5011:133,-113,-3,0,0,0.570838 -23157,5011:132,-112,-3,0,0,0.570486 -23158,5011:131,-111,-3,0,0,0.569454 -23159,5011:130,-110,-3,0,0,0.568546 -23160,5010:239,-109,-3,0,0,0.567387 -23161,5010:238,-108,-3,0,0,0.566706 -23162,5010:237,-107,-3,0,0,0.565923 -23163,5010:236,-106,-3,0,0,0.565393 -23164,5010:235,-105,-3,0,0,0.56514 -23165,5010:134,-104,-3,0,0,0.565015 -23166,5010:133,-103,-3,0,0,0.564459 -23167,5010:132,-102,-3,0,0,0.563474 -23168,5010:131,-101,-3,0,0,0.562741 -23169,5010:130,-100,-3,0,0,0.561653 -23170,5009:239,-99,-3,0,0,0.56097 -23171,5009:238,-98,-3,0,0,0.560084 -23172,5009:237,-97,-3,0,0,0.559122 -23173,5009:236,-96,-3,0,0,0.559299 -23174,5009:235,-95,-3,0,0,0.559299 -23175,5009:134,-94,-3,0,0,0.558337 -23176,5009:133,-93,-3,0,0,0.555929 -23177,5009:132,-92,-3,0,0,0.551028 -23178,5009:131,-91,-3,0,0,0.567084 -23179,5009:130,-90,-3,0,0,0.565999 -23180,5008:239,-89,-3,0,0,0.571895 -23181,5008:238,-88,-3,0,0,0.57031 -23182,5008:237,-87,-3,0,0,0.56968 -23183,5008:236,-86,-3,0,0,0.56968 -23184,5008:235,-85,-3,0,0,0.571845 -23185,5008:134,-84,-3,0,0,0.57757 -23186,5008:133,-83,-3,0,0,0.581001 -23187,5008:132,-82,-3,0,0,0.580726 -23188,5008:131,-81,-3,0,0,0.584997 -23189,5004:236,-46,-3,0,0,0.638259 -23190,5004:235,-45,-3,0,0,0.628453 -23191,5004:134,-44,-3,0,0,0.622292 -23192,5004:133,-43,-3,0,0,0.623932 -23193,5004:132,-42,-3,0,0,0.62333 -23194,5004:131,-41,-3,0,0,0.622581 -23195,5004:130,-40,-3,0,0,0.62089 -23196,5003:239,-39,-3,0,0,0.620454 -23197,5003:238,-38,-3,0,0,0.620213 -23198,5003:237,-37,-3,0,0,0.619559 -23199,5003:236,-36,-3,0,0,0.61779 -23200,5003:235,-35,-3,0,0,0.616989 -23201,5003:134,-34,-3,0,0,0.615458 -23202,5003:133,-33,-3,0,0,0.613145 -23203,5003:132,-32,-3,0,0,0.611536 -23204,5003:131,-31,-3,0,0,0.609899 -23205,5003:130,-30,-3,0,0,0.608774 -23206,5002:239,-29,-3,0,0,0.608162 -23207,5002:238,-28,-3,0,0,0.606814 -23208,5002:237,-27,-3,0,0,0.605122 -23209,5002:236,-26,-3,0,0,0.60441 -23210,5002:235,-25,-3,0,0,0.603574 -23211,5002:134,-24,-3,0,0,0.602713 -23212,5002:133,-23,-3,0,0,0.601803 -23213,5002:132,-22,-3,0,0,0.601557 -23214,5002:131,-21,-3,0,0,0.60099 -23215,5002:130,-20,-3,0,0,0.600399 -23216,5001:239,-19,-3,0,0,0.601015 -23217,5001:238,-18,-3,0,0,0.602123 -23218,5001:237,-17,-3,0,0,0.603353 -23219,5001:236,-16,-3,0,0,0.60414 -23220,5001:235,-15,-3,0,0,0.605319 -23221,5001:134,-14,-3,0,0,0.607035 -23222,5001:133,-13,-3,0,0,0.608847 -23223,5001:132,-12,-3,0,0,0.611072 -23224,5001:131,-11,-3,0,0,0.61429 -23225,5001:130,-10,-3,0,0,0.616843 -23226,5000:239,-9,-3,0,0,0.618105 -23227,5000:238,-8,-3,0,0,0.618735 -23228,5000:237,-7,-3,0,0,0.62031 -23229,5000:236,-6,-3,0,0,0.622436 -23230,5000:235,-5,-3,0,0,0.625402 -23231,5000:134,-4,-3,0,0,0.627614 -23232,5000:133,-3,-3,0,0,0.629461 -23233,5000:132,-2,-3,0,0,0.631017 -23234,5000:131,-1,-3,0,0,0.632571 -23235,3000:131,0,-3,0,0,0.632881 -23236,3000:131,1,-3,0,0,0.632069 -23237,3000:132,2,-3,0,0,0.630587 -23238,3000:133,3,-3,0,0,0.628598 -23239,3000:134,4,-3,0,0,0.626436 -23240,3000:235,5,-3,0,0,0.62427 -23241,3000:236,6,-3,0,0,0.623523 -23242,3000:237,7,-3,0,0,0.6248 -23243,3000:238,8,-3,0,0,0.626532 -23244,3004:132,42,-3,0,0,0.6087 -23245,3004:133,43,-3,0,0,0.654136 -23246,3004:134,44,-3,0,0,0.645533 -23247,3004:235,45,-3,0,0,0.645039 -23248,3004:236,46,-3,0,0,0.650992 -23249,3004:237,47,-3,0,0,0.653671 -23250,3004:238,48,-3,0,0,0.649426 -23251,3004:239,49,-3,0,0,0.651762 -23252,3005:130,50,-3,0,0,0.655947 -23253,3005:131,51,-3,0,0,0.672761 -23254,3005:132,52,-3,0,0,0.6761 -23255,3005:133,53,-3,0,0,0.676886 -23256,3005:134,54,-3,0,0,0.673552 -23257,3005:235,55,-3,0,0,0.667833 -23258,3005:236,56,-3,0,0,0.664681 -23259,3005:237,57,-3,0,0,0.664062 -23260,3005:238,58,-3,0,0,0.66287 -23261,3005:239,59,-3,0,0,0.660731 -23262,3006:130,60,-3,0,0,0.659232 -23263,3006:131,61,-3,0,0,0.658655 -23264,3006:132,62,-3,0,0,0.658747 -23265,3006:133,63,-3,0,0,0.658932 -23266,3006:134,64,-3,0,0,0.658216 -23267,3006:235,65,-3,0,0,0.657938 -23268,3006:236,66,-3,0,0,0.658239 -23269,3006:237,67,-3,0,0,0.659024 -23270,3006:238,68,-3,0,0,0.660201 -23271,3006:239,69,-3,0,0,0.661237 -23272,3007:130,70,-3,0,0,0.662456 -23273,3007:131,71,-3,0,0,0.663191 -23274,3007:132,72,-3,0,0,0.663627 -23275,3007:134,74,-3,0,0,0.663993 -23276,3007:235,75,-3,0,0,0.663604 -23277,3007:236,76,-3,0,0,0.663489 -23278,3007:237,77,-3,0,0,0.663282 -23279,3007:238,78,-3,0,0,0.662249 -23280,3007:239,79,-3,0,0,0.661352 -23281,3008:130,80,-3,0,0,0.66057 -23282,3008:131,81,-3,0,0,0.660478 -23283,3008:132,82,-3,0,0,0.660777 -23284,3008:133,83,-3,0,0,0.660961 -23285,3008:134,84,-3,0,0,0.663007 -23286,3008:235,85,-3,0,0,0.665459 -23287,3008:236,86,-3,0,0,0.666716 -23288,3008:237,87,-3,0,0,0.667765 -23289,3008:238,88,-3,0,0,0.669723 -23290,3008:239,89,-3,0,0,0.670495 -23291,3009:130,90,-3,0,0,0.668381 -23292,3009:131,91,-3,0,0,0.666602 -23293,3009:132,92,-3,0,0,0.664383 -23294,3009:133,93,-3,0,0,0.662088 -23295,3009:134,94,-3,0,0,0.660938 -23296,3009:235,95,-3,0,0,0.660316 -23297,3009:236,96,-3,0,0,0.660247 -23298,3009:237,97,-3,0,0,0.661767 -23299,3009:238,98,-3,0,0,0.66342 -23300,3010:130,100,-3,0,0,0.670041 -23301,3010:235,105,-3,0,0,0.679487 -23302,3010:236,106,-3,0,0,0.673507 -23303,3010:237,107,-3,0,0,0.66057 -23304,3010:238,108,-3,0,0,0.66126 -23305,3010:239,109,-3,0,0,0.670608 -23306,3011:238,118,-3,0,0,0.657314 -23307,3011:239,119,-3,0,0,0.659002 -23308,3012:131,121,-3,0,0,0.672784 -23309,3012:134,124,-3,0,0,0.672964 -23310,3012:235,125,-3,0,0,0.680762 -23311,3012:236,126,-3,0,0,0.683724 -23312,3012:237,127,-3,0,0,0.677672 -23313,3012:238,128,-3,0,0,0.684013 -23314,3012:239,129,-3,0,0,0.669086 -23315,3013:130,130,-3,0,0,0.667833 -23316,3013:235,135,-3,0,0,0.673755 -23317,3013:236,136,-3,0,0,0.674839 -23318,3013:237,137,-3,0,0,0.668745 -23319,3013:238,138,-3,0,0,0.665161 -23320,3013:239,139,-3,0,0,0.665825 -23321,3014:130,140,-3,0,0,0.666076 -23322,3014:131,141,-3,0,0,0.667925 -23323,3014:132,142,-3,0,0,0.6697 -23324,3014:133,143,-3,0,0,0.670948 -23325,3014:134,144,-3,0,0,0.67215 -23326,3014:235,145,-3,0,0,0.674184 -23327,3014:236,146,-3,0,0,0.675762 -23328,3014:237,147,-3,0,0,0.676932 -23329,3014:238,148,-3,0,0,0.67765 -23330,3014:239,149,-3,0,0,0.678503 -23331,3015:130,150,-3,0,0,0.679241 -23332,3015:131,151,-3,0,0,0.679129 -23333,3015:132,152,-3,0,0,0.678592 -23334,3015:133,153,-3,0,0,0.678301 -23335,3015:134,154,-3,0,0,0.67792 -23336,3015:235,155,-3,0,0,0.677359 -23337,3015:236,156,-3,0,0,0.676684 -23338,3015:237,157,-3,0,0,0.676167 -23339,3015:238,158,-3,0,0,0.676662 -23340,3015:239,159,-3,0,0,0.677538 -23341,3016:130,160,-3,0,0,0.678413 -23342,3016:131,161,-3,0,0,0.678749 -23343,3016:132,162,-3,0,0,0.678771 -23344,3016:133,163,-3,0,0,0.679175 -23345,3016:134,164,-3,0,0,0.679644 -23346,3016:235,165,-3,0,0,0.67989 -23347,3016:236,166,-3,0,0,0.680025 -23348,3016:237,167,-3,0,0,0.679331 -23349,3016:238,168,-3,0,0,0.67857 -23350,3016:239,169,-3,0,0,0.678122 -23351,3017:130,170,-3,0,0,0.677762 -23352,3017:131,171,-3,0,0,0.676954 -23353,3017:132,172,-3,0,0,0.676572 -23354,3017:133,173,-3,0,0,0.676909 -23355,3017:134,174,-3,0,0,0.677089 -23356,3017:235,175,-3,0,0,0.677313 -23357,3017:236,176,-3,0,0,0.677381 -23358,3017:237,177,-3,0,0,0.67747 -23359,3017:238,178,-3,0,0,0.677336 -23360,3017:239,179,-3,0,0,0.677583 -23361,3018:130,180,-3,0,0,0.677605 -23362,5018:120,-180,-2,0,0,0.677538 -23363,5017:229,-179,-2,0,0,0.677268 -23364,5017:228,-178,-2,0,0,0.676886 -23365,5017:227,-177,-2,0,0,0.675717 -23366,5017:226,-176,-2,0,0,0.67432 -23367,5017:225,-175,-2,0,0,0.674116 -23368,5017:124,-174,-2,0,0,0.672964 -23369,5017:123,-173,-2,0,0,0.670858 -23370,5017:122,-172,-2,0,0,0.668859 -23371,5017:121,-171,-2,0,0,0.667264 -23372,5017:120,-170,-2,0,0,0.66587 -23373,5016:229,-169,-2,0,0,0.664704 -23374,5016:228,-168,-2,0,0,0.663879 -23375,5016:227,-167,-2,0,0,0.662915 -23376,5016:226,-166,-2,0,0,0.660938 -23377,5016:225,-165,-2,0,0,0.657198 -23378,5016:124,-164,-2,0,0,0.654415 -23379,5016:123,-163,-2,0,0,0.653252 -23380,5016:122,-162,-2,0,0,0.652111 -23381,5016:121,-161,-2,0,0,0.650758 -23382,5016:120,-160,-2,0,0,0.650244 -23383,5015:229,-159,-2,0,0,0.649964 -23384,5015:228,-158,-2,0,0,0.649426 -23385,5015:227,-157,-2,0,0,0.647435 -23386,5015:226,-156,-2,0,0,0.647107 -23387,5015:225,-155,-2,0,0,0.646872 -23388,5015:124,-154,-2,0,0,0.646215 -23389,5015:123,-153,-2,0,0,0.644522 -23390,5015:122,-152,-2,0,0,0.641668 -23391,5015:121,-151,-2,0,0,0.63852 -23392,5015:120,-150,-2,0,0,0.636002 -23393,5014:229,-149,-2,0,0,0.633621 -23394,5014:228,-148,-2,0,0,0.630538 -23395,5014:227,-147,-2,0,0,0.62831 -23396,5014:226,-146,-2,0,0,0.626917 -23397,5014:225,-145,-2,0,0,0.625306 -23398,5014:124,-144,-2,0,0,0.624004 -23399,5014:123,-143,-2,0,0,0.622002 -23400,5014:122,-142,-2,0,0,0.620503 -23401,5014:121,-141,-2,0,0,0.619341 -23402,5014:120,-140,-2,0,0,0.617717 -23403,5013:229,-139,-2,0,0,0.618202 -23404,5013:228,-138,-2,0,0,0.617425 -23405,5013:227,-137,-2,0,0,0.614972 -23406,5013:226,-136,-2,0,0,0.611974 -23407,5013:225,-135,-2,0,0,0.610119 -23408,5013:124,-134,-2,0,0,0.608945 -23409,5013:123,-133,-2,0,0,0.60804 -23410,5013:122,-132,-2,0,0,0.606128 -23411,5013:121,-131,-2,0,0,0.601803 -23412,5013:120,-130,-2,0,0,0.600201 -23413,5012:229,-129,-2,0,0,0.600325 -23414,5012:228,-128,-2,0,0,0.59956 -23415,5012:227,-127,-2,0,0,0.598055 -23416,5012:226,-126,-2,0,0,0.596794 -23417,5012:225,-125,-2,0,0,0.5962 -23418,5012:124,-124,-2,0,0,0.594344 -23419,5012:123,-123,-2,0,0,0.591095 -23420,5012:122,-122,-2,0,0,0.588261 -23421,5012:121,-121,-2,0,0,0.587141 -23422,5012:120,-120,-2,0,0,0.586493 -23423,5011:229,-119,-2,0,0,0.585621 -23424,5011:228,-118,-2,0,0,0.581951 -23425,5011:227,-117,-2,0,0,0.58055 -23426,5011:226,-116,-2,0,0,0.580325 -23427,5011:225,-115,-2,0,0,0.579324 -23428,5011:124,-114,-2,0,0,0.57772 -23429,5011:123,-113,-2,0,0,0.577596 -23430,5011:122,-112,-2,0,0,0.578272 -23431,5011:121,-111,-2,0,0,0.579525 -23432,5011:120,-110,-2,0,0,0.581576 -23433,5010:229,-109,-2,0,0,0.583825 -23434,5010:228,-108,-2,0,0,0.583799 -23435,5010:227,-107,-2,0,0,0.583799 -23436,5010:226,-106,-2,0,0,0.584499 -23437,5010:225,-105,-2,0,0,0.585048 -23438,5010:124,-104,-2,0,0,0.584823 -23439,5010:123,-103,-2,0,0,0.584324 -23440,5010:122,-102,-2,0,0,0.58305 -23441,5010:121,-101,-2,0,0,0.580576 -23442,5010:120,-100,-2,0,0,0.579324 -23443,5009:229,-99,-2,0,0,0.5797 -23444,5009:228,-98,-2,0,0,0.58 -23445,5009:227,-97,-2,0,0,0.581726 -23446,5009:226,-96,-2,0,0,0.580726 -23447,5009:225,-95,-2,0,0,0.582825 -23448,5009:124,-94,-2,0,0,0.578548 -23449,5009:123,-93,-2,0,0,0.570108 -23450,5009:122,-92,-2,0,0,0.560565 -23451,5009:121,-91,-2,0,0,0.585347 -23452,5009:120,-90,-2,0,0,0.589232 -23453,5008:229,-89,-2,0,0,0.591791 -23454,5008:228,-88,-2,0,0,0.595037 -23455,5008:227,-87,-2,0,0,0.597091 -23456,5008:226,-86,-2,0,0,0.597511 -23457,5008:225,-85,-2,0,0,0.596448 -23458,5008:124,-84,-2,0,0,0.596967 -23459,5008:123,-83,-2,0,0,0.598425 -23460,5008:122,-82,-2,0,0,0.598647 -23461,5008:121,-81,-2,0,0,0.603722 -23462,5005:120,-50,-2,0,0,0.639965 -23463,5004:229,-49,-2,0,0,0.638188 -23464,5004:228,-48,-2,0,0,0.635146 -23465,5004:227,-47,-2,0,0,0.623547 -23466,5004:226,-46,-2,0,0,0.622002 -23467,5004:225,-45,-2,0,0,0.624655 -23468,5004:124,-44,-2,0,0,0.624318 -23469,5004:123,-43,-2,0,0,0.624872 -23470,5004:122,-42,-2,0,0,0.626171 -23471,5004:121,-41,-2,0,0,0.627253 -23472,5004:120,-40,-2,0,0,0.626917 -23473,5003:229,-39,-2,0,0,0.625065 -23474,5003:228,-38,-2,0,0,0.621374 -23475,5003:227,-37,-2,0,0,0.618978 -23476,5003:226,-36,-2,0,0,0.617256 -23477,5003:225,-35,-2,0,0,0.61609 -23478,5003:124,-34,-2,0,0,0.614387 -23479,5003:123,-33,-2,0,0,0.613267 -23480,5003:122,-32,-2,0,0,0.613681 -23481,5003:121,-31,-2,0,0,0.613681 -23482,5003:120,-30,-2,0,0,0.610583 -23483,5002:229,-29,-2,0,0,0.607501 -23484,5002:228,-28,-2,0,0,0.607844 -23485,5002:227,-27,-2,0,0,0.606374 -23486,5002:226,-26,-2,0,0,0.606545 -23487,5002:225,-25,-2,0,0,0.605784 -23488,5002:124,-24,-2,0,0,0.603894 -23489,5002:123,-23,-2,0,0,0.604729 -23490,5002:122,-22,-2,0,0,0.607109 -23491,5002:121,-21,-2,0,0,0.609361 -23492,5002:120,-20,-2,0,0,0.61134 -23493,5001:229,-19,-2,0,0,0.613706 -23494,5001:228,-18,-2,0,0,0.615555 -23495,5001:227,-17,-2,0,0,0.617256 -23496,5001:226,-16,-2,0,0,0.618566 -23497,5001:225,-15,-2,0,0,0.620721 -23498,5001:124,-14,-2,0,0,0.623715 -23499,5001:123,-13,-2,0,0,0.626869 -23500,5001:122,-12,-2,0,0,0.62994 -23501,5001:121,-11,-2,0,0,0.632857 -23502,5001:120,-10,-2,0,0,0.635074 -23503,5000:229,-9,-2,0,0,0.63655 -23504,5000:228,-8,-2,0,0,0.637832 -23505,5000:227,-7,-2,0,0,0.638781 -23506,5000:226,-6,-2,0,0,0.639823 -23507,5000:225,-5,-2,0,0,0.640675 -23508,5000:124,-4,-2,0,0,0.641904 -23509,5000:123,-3,-2,0,0,0.642802 -23510,5000:122,-2,-2,0,0,0.64299 -23511,5000:121,-1,-2,0,0,0.643438 -23512,3000:121,0,-2,0,0,0.644239 -23513,3000:121,1,-2,0,0,0.643838 -23514,3000:122,2,-2,0,0,0.643108 -23515,3000:123,3,-2,0,0,0.642377 -23516,3000:124,4,-2,0,0,0.642377 -23517,3000:225,5,-2,0,0,0.643202 -23518,3000:226,6,-2,0,0,0.64431 -23519,3000:227,7,-2,0,0,0.646121 -23520,3000:228,8,-2,0,0,0.646684 -23521,3000:229,9,-2,0,0,0.646872 -23522,3004:124,44,-2,0,0,0.640013 -23523,3004:225,45,-2,0,0,0.628861 -23524,3004:226,46,-2,0,0,0.633215 -23525,3004:227,47,-2,0,0,0.633191 -23526,3004:228,48,-2,0,0,0.633096 -23527,3004:229,49,-2,0,0,0.641502 -23528,3005:120,50,-2,0,0,0.64863 -23529,3005:121,51,-2,0,0,0.659002 -23530,3005:122,52,-2,0,0,0.662938 -23531,3005:123,53,-2,0,0,0.662134 -23532,3005:124,54,-2,0,0,0.668472 -23533,3005:225,55,-2,0,0,0.6745 -23534,3005:226,56,-2,0,0,0.675289 -23535,3005:227,57,-2,0,0,0.670676 -23536,3005:228,58,-2,0,0,0.661583 -23537,3005:229,59,-2,0,0,0.657708 -23538,3006:120,60,-2,0,0,0.653159 -23539,3006:121,61,-2,0,0,0.650478 -23540,3006:122,62,-2,0,0,0.649449 -23541,3006:123,63,-2,0,0,0.651015 -23542,3006:124,64,-2,0,0,0.652694 -23543,3006:225,65,-2,0,0,0.654252 -23544,3006:226,66,-2,0,0,0.656016 -23545,3006:227,67,-2,0,0,0.657476 -23546,3006:228,68,-2,0,0,0.658285 -23547,3006:229,69,-2,0,0,0.658563 -23548,3007:120,70,-2,0,0,0.658909 -23549,3007:121,71,-2,0,0,0.660523 -23550,3007:122,72,-2,0,0,0.662364 -23551,3007:124,74,-2,0,0,0.662479 -23552,3007:225,75,-2,0,0,0.664841 -23553,3007:226,76,-2,0,0,0.66507 -23554,3007:227,77,-2,0,0,0.664772 -23555,3007:228,78,-2,0,0,0.664314 -23556,3007:229,79,-2,0,0,0.663833 -23557,3008:120,80,-2,0,0,0.664108 -23558,3008:121,81,-2,0,0,0.664566 -23559,3008:122,82,-2,0,0,0.664704 -23560,3008:123,83,-2,0,0,0.664544 -23561,3008:124,84,-2,0,0,0.664498 -23562,3008:225,85,-2,0,0,0.664795 -23563,3008:226,86,-2,0,0,0.66507 -23564,3008:227,87,-2,0,0,0.665962 -23565,3008:228,88,-2,0,0,0.666488 -23566,3008:229,89,-2,0,0,0.667195 -23567,3009:120,90,-2,0,0,0.668813 -23568,3009:121,91,-2,0,0,0.669313 -23569,3009:122,92,-2,0,0,0.665596 -23570,3009:123,93,-2,0,0,0.662111 -23571,3009:124,94,-2,0,0,0.659394 -23572,3009:225,95,-2,0,0,0.659163 -23573,3009:226,96,-2,0,0,0.660408 -23574,3009:227,97,-2,0,0,0.662938 -23575,3009:228,98,-2,0,0,0.66683 -23576,3009:229,99,-2,0,0,0.673032 -23577,3010:124,104,-2,0,0,0.67371 -23578,3010:225,105,-2,0,0,0.661536 -23579,3010:226,106,-2,0,0,0.652088 -23580,3010:227,107,-2,0,0,0.655831 -23581,3010:228,108,-2,0,0,0.665917 -23582,3010:229,109,-2,0,0,0.676775 -23583,3011:228,118,-2,0,0,0.647575 -23584,3011:229,119,-2,0,0,0.649683 -23585,3012:120,120,-2,0,0,0.651552 -23586,3012:225,125,-2,0,0,0.685189 -23587,3012:226,126,-2,0,0,0.676617 -23588,3012:227,127,-2,0,0,0.671175 -23589,3012:229,129,-2,0,0,0.677268 -23590,3013:120,130,-2,0,0,0.669814 -23591,3013:121,131,-2,0,0,0.674184 -23592,3013:122,132,-2,0,0,0.672648 -23593,3013:123,133,-2,0,0,0.673122 -23594,3013:124,134,-2,0,0,0.673145 -23595,3013:225,135,-2,0,0,0.671402 -23596,3013:226,136,-2,0,0,0.66854 -23597,3013:227,137,-2,0,0,0.669609 -23598,3013:228,138,-2,0,0,0.668472 -23599,3013:229,139,-2,0,0,0.667537 -23600,3014:120,140,-2,0,0,0.667856 -23601,3014:121,141,-2,0,0,0.671175 -23602,3014:122,142,-2,0,0,0.671243 -23603,3014:123,143,-2,0,0,0.671538 -23604,3014:124,144,-2,0,0,0.673213 -23605,3014:225,145,-2,0,0,0.674726 -23606,3014:226,146,-2,0,0,0.676617 -23607,3014:227,147,-2,0,0,0.678032 -23608,3014:228,148,-2,0,0,0.678032 -23609,3014:229,149,-2,0,0,0.678189 -23610,3015:120,150,-2,0,0,0.678323 -23611,3015:121,151,-2,0,0,0.678615 -23612,3015:122,152,-2,0,0,0.678457 -23613,3015:123,153,-2,0,0,0.677605 -23614,3015:124,154,-2,0,0,0.676504 -23615,3015:225,155,-2,0,0,0.676302 -23616,3015:226,156,-2,0,0,0.676775 -23617,3015:227,157,-2,0,0,0.676842 -23618,3015:228,158,-2,0,0,0.677067 -23619,3015:229,159,-2,0,0,0.677583 -23620,3016:120,160,-2,0,0,0.678122 -23621,3016:121,161,-2,0,0,0.678143 -23622,3016:122,162,-2,0,0,0.678143 -23623,3016:123,163,-2,0,0,0.678524 -23624,3016:124,164,-2,0,0,0.678928 -23625,3016:225,165,-2,0,0,0.678816 -23626,3016:226,166,-2,0,0,0.678503 -23627,3016:227,167,-2,0,0,0.678435 -23628,3016:228,168,-2,0,0,0.67857 -23629,3016:229,169,-2,0,0,0.67857 -23630,3017:120,170,-2,0,0,0.678861 -23631,3017:121,171,-2,0,0,0.678995 -23632,3017:122,172,-2,0,0,0.678906 -23633,3017:123,173,-2,0,0,0.678099 -23634,3017:124,174,-2,0,0,0.677672 -23635,3017:225,175,-2,0,0,0.677762 -23636,3017:226,176,-2,0,0,0.67774 -23637,3017:227,177,-2,0,0,0.678143 -23638,3017:228,178,-2,0,0,0.678233 -23639,3017:229,179,-2,0,0,0.67792 -23640,3018:120,180,-2,0,0,0.677538 -23641,5018:110,-180,-1,0,0,0.675672 -23642,5017:219,-179,-1,0,0,0.674636 -23643,5017:218,-178,-1,0,0,0.672625 -23644,5017:217,-177,-1,0,0,0.672602 -23645,5017:216,-176,-1,0,0,0.672286 -23646,5017:215,-175,-1,0,0,0.671788 -23647,5017:114,-174,-1,0,0,0.67079 -23648,5017:113,-173,-1,0,0,0.669313 -23649,5017:112,-172,-1,0,0,0.666465 -23650,5017:111,-171,-1,0,0,0.663948 -23651,5017:110,-170,-1,0,0,0.661974 -23652,5016:219,-169,-1,0,0,0.659809 -23653,5016:218,-168,-1,0,0,0.661306 -23654,5016:217,-167,-1,0,0,0.661468 -23655,5016:216,-166,-1,0,0,0.658262 -23656,5016:215,-165,-1,0,0,0.655205 -23657,5016:114,-164,-1,0,0,0.655065 -23658,5016:113,-163,-1,0,0,0.656016 -23659,5016:112,-162,-1,0,0,0.656457 -23660,5016:111,-161,-1,0,0,0.65481 -23661,5016:110,-160,-1,0,0,0.650945 -23662,5015:219,-159,-1,0,0,0.650571 -23663,5015:218,-158,-1,0,0,0.652997 -23664,5015:217,-157,-1,0,0,0.654601 -23665,5015:216,-156,-1,0,0,0.65481 -23666,5015:215,-155,-1,0,0,0.654787 -23667,5015:114,-154,-1,0,0,0.651482 -23668,5015:113,-153,-1,0,0,0.647575 -23669,5015:112,-152,-1,0,0,0.643626 -23670,5015:111,-151,-1,0,0,0.643344 -23671,5015:110,-150,-1,0,0,0.641739 -23672,5014:219,-149,-1,0,0,0.636669 -23673,5014:218,-148,-1,0,0,0.634169 -23674,5014:217,-147,-1,0,0,0.633597 -23675,5014:216,-146,-1,0,0,0.632547 -23676,5014:215,-145,-1,0,0,0.633931 -23677,5014:114,-144,-1,0,0,0.634526 -23678,5014:113,-143,-1,0,0,0.633478 -23679,5014:112,-142,-1,0,0,0.631041 -23680,5014:111,-141,-1,0,0,0.628981 -23681,5014:110,-140,-1,0,0,0.627182 -23682,5013:219,-139,-1,0,0,0.627782 -23683,5013:218,-138,-1,0,0,0.629101 -23684,5013:217,-137,-1,0,0,0.627686 -23685,5013:216,-136,-1,0,0,0.624968 -23686,5013:215,-135,-1,0,0,0.62106 -23687,5013:114,-134,-1,0,0,0.6206 -23688,5013:113,-133,-1,0,0,0.621156 -23689,5013:112,-132,-1,0,0,0.622799 -23690,5013:111,-131,-1,0,0,0.62333 -23691,5013:110,-130,-1,0,0,0.618663 -23692,5012:219,-129,-1,0,0,0.616065 -23693,5012:218,-128,-1,0,0,0.613608 -23694,5012:217,-127,-1,0,0,0.614655 -23695,5012:216,-126,-1,0,0,0.613535 -23696,5012:215,-125,-1,0,0,0.611047 -23697,5012:114,-124,-1,0,0,0.611779 -23698,5012:113,-123,-1,0,0,0.610168 -23699,5012:112,-122,-1,0,0,0.604065 -23700,5012:111,-121,-1,0,0,0.600028 -23701,5012:110,-120,-1,0,0,0.598326 -23702,5011:219,-119,-1,0,0,0.60232 -23703,5011:218,-118,-1,0,0,0.605637 -23704,5011:217,-117,-1,0,0,0.606374 -23705,5011:216,-116,-1,0,0,0.605515 -23706,5011:215,-115,-1,0,0,0.602935 -23707,5011:114,-114,-1,0,0,0.601581 -23708,5011:113,-113,-1,0,0,0.60232 -23709,5011:112,-112,-1,0,0,0.602689 -23710,5011:111,-111,-1,0,0,0.604901 -23711,5011:110,-110,-1,0,0,0.608015 -23712,5010:219,-109,-1,0,0,0.609483 -23713,5010:218,-108,-1,0,0,0.61051 -23714,5010:217,-107,-1,0,0,0.61134 -23715,5010:216,-106,-1,0,0,0.61156 -23716,5010:215,-105,-1,0,0,0.611633 -23717,5010:114,-104,-1,0,0,0.611438 -23718,5010:113,-103,-1,0,0,0.611316 -23719,5010:112,-102,-1,0,0,0.610949 -23720,5010:111,-101,-1,0,0,0.610681 -23721,5010:110,-100,-1,0,0,0.611877 -23722,5009:219,-99,-1,0,0,0.61334 -23723,5009:218,-98,-1,0,0,0.614022 -23724,5009:217,-97,-1,0,0,0.614972 -23725,5009:216,-96,-1,0,0,0.615677 -23726,5009:215,-95,-1,0,0,0.616017 -23727,5009:114,-94,-1,0,0,0.614169 -23728,5009:113,-93,-1,0,0,0.610779 -23729,5009:112,-92,-1,0,0,0.611974 -23730,5009:111,-91,-1,0,0,0.6139 -23731,5009:110,-90,-1,0,0,0.617159 -23732,5008:219,-89,-1,0,0,0.619293 -23733,5008:218,-88,-1,0,0,0.62014 -23734,5008:217,-87,-1,0,0,0.619075 -23735,5008:216,-86,-1,0,0,0.616236 -23736,5008:215,-85,-1,0,0,0.61312 -23737,5008:114,-84,-1,0,0,0.611096 -23738,5008:113,-83,-1,0,0,0.61051 -23739,5008:112,-82,-1,0,0,0.609263 -23740,5008:111,-81,-1,0,0,0.61073 -23741,5008:110,-80,-1,0,0,0.613852 -23742,5007:219,-79,-1,0,0,0.619946 -23743,5005:110,-50,-1,0,0,0.639232 -23744,5004:219,-49,-1,0,0,0.633621 -23745,5004:218,-48,-1,0,0,0.620865 -23746,5004:217,-47,-1,0,0,0.624246 -23747,5004:216,-46,-1,0,0,0.625907 -23748,5004:215,-45,-1,0,0,0.628909 -23749,5004:114,-44,-1,0,0,0.630587 -23750,5004:113,-43,-1,0,0,0.631424 -23751,5004:112,-42,-1,0,0,0.631902 -23752,5004:111,-41,-1,0,0,0.631017 -23753,5004:110,-40,-1,0,0,0.629581 -23754,5003:219,-39,-1,0,0,0.626893 -23755,5003:218,-38,-1,0,0,0.624125 -23756,5003:217,-37,-1,0,0,0.622171 -23757,5003:216,-36,-1,0,0,0.621397 -23758,5003:215,-35,-1,0,0,0.620986 -23759,5003:114,-34,-1,0,0,0.620865 -23760,5003:113,-33,-1,0,0,0.620842 -23761,5003:112,-32,-1,0,0,0.62118 -23762,5003:111,-31,-1,0,0,0.621374 -23763,5003:110,-30,-1,0,0,0.623836 -23764,5002:219,-29,-1,0,0,0.625378 -23765,5002:218,-28,-1,0,0,0.625546 -23766,5002:217,-27,-1,0,0,0.626171 -23767,5002:216,-26,-1,0,0,0.627421 -23768,5002:215,-25,-1,0,0,0.627374 -23769,5002:114,-24,-1,0,0,0.627974 -23770,5002:113,-23,-1,0,0,0.627902 -23771,5002:112,-22,-1,0,0,0.628382 -23772,5002:111,-21,-1,0,0,0.629772 -23773,5002:110,-20,-1,0,0,0.630299 -23774,5001:219,-19,-1,0,0,0.632427 -23775,5001:218,-18,-1,0,0,0.633955 -23776,5001:217,-17,-1,0,0,0.634741 -23777,5001:216,-16,-1,0,0,0.636431 -23778,5001:215,-15,-1,0,0,0.638662 -23779,5001:114,-14,-1,0,0,0.640817 -23780,5001:113,-13,-1,0,0,0.643509 -23781,5001:112,-12,-1,0,0,0.64652 -23782,5001:111,-11,-1,0,0,0.649473 -23783,5001:110,-10,-1,0,0,0.652228 -23784,5000:219,-9,-1,0,0,0.654438 -23785,5000:218,-8,-1,0,0,0.656016 -23786,5000:217,-7,-1,0,0,0.657314 -23787,5000:216,-6,-1,0,0,0.658355 -23788,5000:215,-5,-1,0,0,0.659324 -23789,5000:114,-4,-1,0,0,0.659647 -23790,5000:113,-3,-1,0,0,0.659301 -23791,5000:112,-2,-1,0,0,0.659002 -23792,5000:111,-1,-1,0,0,0.658239 -23793,3000:111,0,-1,0,0,0.658101 -23794,3000:111,1,-1,0,0,0.657545 -23795,3000:112,2,-1,0,0,0.658401 -23796,3000:113,3,-1,0,0,0.657915 -23797,3000:114,4,-1,0,0,0.657036 -23798,3000:215,5,-1,0,0,0.656248 -23799,3000:216,6,-1,0,0,0.65481 -23800,3000:217,7,-1,0,0,0.655854 -23801,3000:218,8,-1,0,0,0.657106 -23802,3000:219,9,-1,0,0,0.656016 -23803,3004:216,46,-1,0,0,0.615507 -23804,3004:217,47,-1,0,0,0.631232 -23805,3004:218,48,-1,0,0,0.636288 -23806,3004:219,49,-1,0,0,0.640273 -23807,3005:110,50,-1,0,0,0.64405 -23808,3005:111,51,-1,0,0,0.650151 -23809,3005:112,52,-1,0,0,0.651995 -23810,3005:113,53,-1,0,0,0.661306 -23811,3005:114,54,-1,0,0,0.663627 -23812,3005:215,55,-1,0,0,0.660016 -23813,3005:216,56,-1,0,0,0.662548 -23814,3005:217,57,-1,0,0,0.666967 -23815,3005:218,58,-1,0,0,0.659279 -23816,3005:219,59,-1,0,0,0.651482 -23817,3006:110,60,-1,0,0,0.649145 -23818,3006:111,61,-1,0,0,0.648958 -23819,3006:112,62,-1,0,0,0.645933 -23820,3006:113,63,-1,0,0,0.646473 -23821,3006:114,64,-1,0,0,0.648021 -23822,3006:215,65,-1,0,0,0.650034 -23823,3006:216,66,-1,0,0,0.653438 -23824,3006:217,67,-1,0,0,0.656526 -23825,3006:218,68,-1,0,0,0.659071 -23826,3006:219,69,-1,0,0,0.661007 -23827,3007:110,70,-1,0,0,0.66287 -23828,3007:111,71,-1,0,0,0.663397 -23829,3007:112,72,-1,0,0,0.662548 -23830,3007:114,74,-1,0,0,0.662938 -23831,3007:215,75,-1,0,0,0.66436 -23832,3007:216,76,-1,0,0,0.663948 -23833,3007:217,77,-1,0,0,0.664338 -23834,3007:218,78,-1,0,0,0.664727 -23835,3007:219,79,-1,0,0,0.663214 -23836,3008:110,80,-1,0,0,0.662685 -23837,3008:111,81,-1,0,0,0.662042 -23838,3008:112,82,-1,0,0,0.662111 -23839,3008:113,83,-1,0,0,0.663168 -23840,3008:114,84,-1,0,0,0.66397 -23841,3008:215,85,-1,0,0,0.664887 -23842,3008:216,86,-1,0,0,0.664978 -23843,3008:217,87,-1,0,0,0.664841 -23844,3008:218,88,-1,0,0,0.663993 -23845,3008:219,89,-1,0,0,0.664291 -23846,3009:110,90,-1,0,0,0.665231 -23847,3009:111,91,-1,0,0,0.665001 -23848,3009:112,92,-1,0,0,0.661996 -23849,3009:113,93,-1,0,0,0.662066 -23850,3009:114,94,-1,0,0,0.661652 -23851,3009:215,95,-1,0,0,0.662962 -23852,3009:216,96,-1,0,0,0.666259 -23853,3009:217,97,-1,0,0,0.669495 -23854,3009:218,98,-1,0,0,0.671425 -23855,3010:112,102,-1,0,0,0.673687 -23856,3010:215,105,-1,0,0,0.645792 -23857,3010:216,106,-1,0,0,0.648091 -23858,3010:217,107,-1,0,0,0.650127 -23859,3010:218,108,-1,0,0,0.656596 -23860,3010:219,109,-1,0,0,0.671765 -23861,3011:110,110,-1,0,0,0.676864 -23862,3011:111,111,-1,0,0,0.681877 -23863,3011:219,119,-1,0,0,0.654973 -23864,3012:110,120,-1,0,0,0.661284 -23865,3012:111,121,-1,0,0,0.661675 -23866,3012:112,122,-1,0,0,0.664062 -23867,3012:113,123,-1,0,0,0.666738 -23868,3012:114,124,-1,0,0,0.668358 -23869,3012:215,125,-1,0,0,0.664223 -23870,3012:216,126,-1,0,0,0.665962 -23871,3012:217,127,-1,0,0,0.66491 -23872,3012:219,129,-1,0,0,0.672444 -23873,3013:110,130,-1,0,0,0.667606 -23874,3013:111,131,-1,0,0,0.668449 -23875,3013:112,132,-1,0,0,0.667833 -23876,3013:113,133,-1,0,0,0.667925 -23877,3013:114,134,-1,0,0,0.665917 -23878,3013:215,135,-1,0,0,0.664933 -23879,3013:216,136,-1,0,0,0.66475 -23880,3013:217,137,-1,0,0,0.664955 -23881,3013:218,138,-1,0,0,0.66397 -23882,3013:219,139,-1,0,0,0.663305 -23883,3014:110,140,-1,0,0,0.663512 -23884,3014:111,141,-1,0,0,0.665779 -23885,3014:112,142,-1,0,0,0.668062 -23886,3014:113,143,-1,0,0,0.670971 -23887,3014:114,144,-1,0,0,0.673552 -23888,3014:215,145,-1,0,0,0.674523 -23889,3014:216,146,-1,0,0,0.675762 -23890,3014:217,147,-1,0,0,0.676549 -23891,3014:218,148,-1,0,0,0.677762 -23892,3014:219,149,-1,0,0,0.678794 -23893,3015:110,150,-1,0,0,0.679264 -23894,3015:111,151,-1,0,0,0.679107 -23895,3015:112,152,-1,0,0,0.678704 -23896,3015:113,153,-1,0,0,0.677336 -23897,3015:114,154,-1,0,0,0.676392 -23898,3015:215,155,-1,0,0,0.676976 -23899,3015:216,156,-1,0,0,0.677201 -23900,3015:217,157,-1,0,0,0.676775 -23901,3015:218,158,-1,0,0,0.676302 -23902,3015:219,159,-1,0,0,0.675965 -23903,3016:110,160,-1,0,0,0.675559 -23904,3016:111,161,-1,0,0,0.675222 -23905,3016:112,162,-1,0,0,0.675289 -23906,3016:113,163,-1,0,0,0.675785 -23907,3016:114,164,-1,0,0,0.67637 -23908,3016:215,165,-1,0,0,0.676729 -23909,3016:216,166,-1,0,0,0.676752 -23910,3016:217,167,-1,0,0,0.676796 -23911,3016:218,168,-1,0,0,0.677089 -23912,3016:219,169,-1,0,0,0.676055 -23913,3017:110,170,-1,0,0,0.677874 -23914,3017:111,171,-1,0,0,0.677762 -23915,3017:112,172,-1,0,0,0.677493 -23916,3017:113,173,-1,0,0,0.677942 -23917,3017:114,174,-1,0,0,0.678435 -23918,3017:215,175,-1,0,0,0.678143 -23919,3017:216,176,-1,0,0,0.676819 -23920,3017:217,177,-1,0,0,0.67637 -23921,3017:218,178,-1,0,0,0.675807 -23922,3017:219,179,-1,0,0,0.676055 -23923,3018:110,180,-1,0,0,0.675672 -23924,7018:110,-180,0,0,0,0.670018 -23925,7017:219,-179,0,0,0,0.669245 -23926,7017:218,-178,0,0,0,0.66854 -23927,7017:217,-177,0,0,0,0.668107 -23928,7017:216,-176,0,0,0,0.667902 -23929,7017:215,-175,0,0,0,0.667628 -23930,7017:114,-174,0,0,0,0.666168 -23931,7017:113,-173,0,0,0,0.665665 -23932,7017:112,-172,0,0,0,0.665207 -23933,7017:111,-171,0,0,0,0.665024 -23934,7017:110,-170,0,0,0,0.663558 -23935,7016:219,-169,0,0,0,0.66241 -23936,7016:218,-168,0,0,0,0.66397 -23937,7016:217,-167,0,0,0,0.662685 -23938,7016:216,-166,0,0,0,0.659394 -23939,7016:215,-165,0,0,0,0.656179 -23940,7016:114,-164,0,0,0,0.654276 -23941,7016:113,-163,0,0,0,0.653462 -23942,7016:112,-162,0,0,0,0.654531 -23943,7016:111,-161,0,0,0,0.65611 -23944,7016:110,-160,0,0,0,0.653229 -23945,7015:219,-159,0,0,0,0.650641 -23946,7015:218,-158,0,0,0,0.655344 -23947,7015:217,-157,0,0,0,0.654136 -23948,7015:216,-156,0,0,0,0.653183 -23949,7015:215,-155,0,0,0,0.654833 -23950,7015:114,-154,0,0,0,0.655321 -23951,7015:113,-153,0,0,0,0.652671 -23952,7015:112,-152,0,0,0,0.649052 -23953,7015:111,-151,0,0,0,0.647271 -23954,7015:110,-150,0,0,0,0.645839 -23955,7014:219,-149,0,0,0,0.645768 -23956,7014:218,-148,0,0,0,0.64398 -23957,7014:217,-147,0,0,0,0.641574 -23958,7014:216,-146,0,0,0,0.63961 -23959,7014:215,-145,0,0,0,0.638212 -23960,7014:114,-144,0,0,0,0.639349 -23961,7014:113,-143,0,0,0,0.64214 -23962,7014:112,-142,0,0,0,0.638235 -23963,7014:111,-141,0,0,0,0.632785 -23964,7014:110,-140,0,0,0,0.633811 -23965,7013:219,-139,0,0,0,0.634193 -23966,7013:218,-138,0,0,0,0.638307 -23967,7013:217,-137,0,0,0,0.639681 -23968,7013:216,-136,0,0,0,0.638638 -23969,7013:215,-135,0,0,0,0.632762 -23970,7013:114,-134,0,0,0,0.628237 -23971,7013:113,-133,0,0,0,0.630371 -23972,7013:112,-132,0,0,0,0.632977 -23973,7013:111,-131,0,0,0,0.629269 -23974,7013:110,-130,0,0,0,0.620503 -23975,7012:219,-129,0,0,0,0.630251 -23976,7012:218,-128,0,0,0,0.632833 -23977,7012:217,-127,0,0,0,0.631256 -23978,7012:216,-126,0,0,0,0.632093 -23979,7012:215,-125,0,0,0,0.625233 -23980,7012:114,-124,0,0,0,0.621808 -23981,7012:113,-123,0,0,0,0.621132 -23982,7012:112,-122,0,0,0,0.611365 -23983,7012:111,-121,0,0,0,0.611633 -23984,7012:110,-120,0,0,0,0.612682 -23985,7011:219,-119,0,0,0,0.621567 -23986,7011:218,-118,0,0,0,0.618978 -23987,7011:217,-117,0,0,0,0.618711 -23988,7011:216,-116,0,0,0,0.620213 -23989,7011:215,-115,0,0,0,0.621422 -23990,7011:114,-114,0,0,0,0.621035 -23991,7011:113,-113,0,0,0,0.619317 -23992,7011:112,-112,0,0,0,0.618008 -23993,7011:111,-111,0,0,0,0.618881 -23994,7011:110,-110,0,0,0,0.62176 -23995,7010:219,-109,0,0,0,0.621833 -23996,7010:218,-108,0,0,0,0.620914 -23997,7010:217,-107,0,0,0,0.620842 -23998,7010:216,-106,0,0,0,0.620454 -23999,7010:215,-105,0,0,0,0.619462 -24000,7010:114,-104,0,0,0,0.618832 -24001,7010:113,-103,0,0,0,0.618663 -24002,7010:112,-102,0,0,0,0.619026 -24003,7010:111,-101,0,0,0,0.620043 -24004,7010:110,-100,0,0,0,0.620865 -24005,7009:219,-99,0,0,0,0.621833 -24006,7009:218,-98,0,0,0,0.622919 -24007,7009:217,-97,0,0,0,0.624149 -24008,7009:216,-96,0,0,0,0.62545 -24009,7009:215,-95,0,0,0,0.62557 -24010,7009:114,-94,0,0,0,0.624608 -24011,7009:113,-93,0,0,0,0.623812 -24012,7009:112,-92,0,0,0,0.623691 -24013,7009:111,-91,0,0,0,0.623643 -24014,7009:110,-90,0,0,0,0.625113 -24015,7008:219,-89,0,0,0,0.626484 -24016,7008:218,-88,0,0,0,0.627637 -24017,7008:217,-87,0,0,0,0.628118 -24018,7008:216,-86,0,0,0,0.626075 -24019,7008:215,-85,0,0,0,0.623595 -24020,7008:114,-84,0,0,0,0.622919 -24021,7008:113,-83,0,0,0,0.621108 -24022,7008:112,-82,0,0,0,0.619365 -24023,7008:111,-81,0,0,0,0.618274 -24024,7008:110,-80,0,0,0,0.618735 -24025,7007:219,-79,0,0,0,0.618008 -24026,7007:218,-78,0,0,0,0.630849 -24027,7005:111,-51,0,0,0,0.637025 -24028,7005:110,-50,0,0,0,0.629413 -24029,7004:219,-49,0,0,0,0.624487 -24030,7004:218,-48,0,0,0,0.626893 -24031,7004:217,-47,0,0,0,0.631185 -24032,7004:216,-46,0,0,0,0.63486 -24033,7004:215,-45,0,0,0,0.636217 -24034,7004:114,-44,0,0,0,0.636526 -24035,7004:113,-43,0,0,0,0.636026 -24036,7004:112,-42,0,0,0,0.634121 -24037,7004:111,-41,0,0,0,0.632857 -24038,7004:110,-40,0,0,0,0.632571 -24039,7003:219,-39,0,0,0,0.632332 -24040,7003:218,-38,0,0,0,0.630849 -24041,7003:217,-37,0,0,0,0.628981 -24042,7003:216,-36,0,0,0,0.627133 -24043,7003:215,-35,0,0,0,0.626388 -24044,7003:114,-34,0,0,0,0.626436 -24045,7003:113,-33,0,0,0,0.625859 -24046,7003:112,-32,0,0,0,0.62557 -24047,7003:111,-31,0,0,0,0.625185 -24048,7003:110,-30,0,0,0,0.625017 -24049,7002:219,-29,0,0,0,0.626965 -24050,7002:218,-28,0,0,0,0.627662 -24051,7002:217,-27,0,0,0,0.628357 -24052,7002:216,-26,0,0,0,0.629149 -24053,7002:215,-25,0,0,0,0.631041 -24054,7002:114,-24,0,0,0,0.632762 -24055,7002:113,-23,0,0,0,0.634098 -24056,7002:112,-22,0,0,0,0.635337 -24057,7002:111,-21,0,0,0,0.635432 -24058,7002:110,-20,0,0,0,0.635432 -24059,7001:219,-19,0,0,0,0.637832 -24060,7001:218,-18,0,0,0,0.638876 -24061,7001:217,-17,0,0,0,0.639989 -24062,7001:216,-16,0,0,0,0.641526 -24063,7001:215,-15,0,0,0,0.642565 -24064,7001:114,-14,0,0,0,0.644074 -24065,7001:113,-13,0,0,0,0.646544 -24066,7001:112,-12,0,0,0,0.64987 -24067,7001:111,-11,0,0,0,0.652833 -24068,7001:110,-10,0,0,0,0.655483 -24069,7000:219,-9,0,0,0,0.65699 -24070,7000:218,-8,0,0,0,0.658378 -24071,7000:217,-7,0,0,0,0.659809 -24072,7000:216,-6,0,0,0,0.661536 -24073,7000:215,-5,0,0,0,0.664017 -24074,7000:114,-4,0,0,0,0.66635 -24075,7000:113,-3,0,0,0,0.667879 -24076,7000:112,-2,0,0,0,0.668972 -24077,7000:111,-1,0,0,0,0.671584 -24078,1000:111,0,0,0,0,0.672263 -24079,1000:111,1,0,0,0,0.669427 -24080,1000:112,2,0,0,0,0.669836 -24081,1000:113,3,0,0,0,0.669972 -24082,1000:114,4,0,0,0,0.671991 -24083,1000:215,5,0,0,0,0.672625 -24084,1000:216,6,0,0,0,0.666899 -24085,1000:217,7,0,0,0,0.662594 -24086,1000:218,8,0,0,0,0.660178 -24087,1000:219,9,0,0,0,0.660247 -24088,1004:217,47,0,0,0,0.633835 -24089,1004:218,48,0,0,0,0.633859 -24090,1004:219,49,0,0,0,0.63871 -24091,1005:110,50,0,0,0,0.641715 -24092,1005:111,51,0,0,0,0.646731 -24093,1005:112,52,0,0,0,0.646825 -24094,1005:113,53,0,0,0,0.647552 -24095,1005:114,54,0,0,0,0.646637 -24096,1005:215,55,0,0,0,0.650127 -24097,1005:216,56,0,0,0,0.65488 -24098,1005:217,57,0,0,0,0.659371 -24099,1005:218,58,0,0,0,0.658216 -24100,1005:219,59,0,0,0,0.654508 -24101,1006:110,60,0,0,0,0.650898 -24102,1006:111,61,0,0,0,0.651201 -24103,1006:112,62,0,0,0,0.650594 -24104,1006:113,63,0,0,0,0.647951 -24105,1006:114,64,0,0,0,0.646989 -24106,1006:215,65,0,0,0,0.652694 -24107,1006:216,66,0,0,0,0.657291 -24108,1006:217,67,0,0,0,0.659555 -24109,1006:218,68,0,0,0,0.661376 -24110,1006:219,69,0,0,0,0.664658 -24111,1007:110,70,0,0,0,0.66635 -24112,1007:111,71,0,0,0,0.666053 -24113,1007:112,72,0,0,0,0.66475 -24114,1007:114,74,0,0,0,0.663237 -24115,1007:215,75,0,0,0,0.661789 -24116,1007:216,76,0,0,0,0.660178 -24117,1007:217,77,0,0,0,0.660016 -24118,1007:218,78,0,0,0,0.659555 -24119,1007:219,79,0,0,0,0.658932 -24120,1008:110,80,0,0,0,0.658077 -24121,1008:111,81,0,0,0,0.65817 -24122,1008:112,82,0,0,0,0.659509 -24123,1008:113,83,0,0,0,0.660708 -24124,1008:114,84,0,0,0,0.662915 -24125,1008:215,85,0,0,0,0.664772 -24126,1008:216,86,0,0,0,0.66397 -24127,1008:217,87,0,0,0,0.662938 -24128,1008:218,88,0,0,0,0.662685 -24129,1008:219,89,0,0,0,0.663099 -24130,1009:110,90,0,0,0,0.663604 -24131,1009:111,91,0,0,0,0.661767 -24132,1009:112,92,0,0,0,0.662525 -24133,1009:113,93,0,0,0,0.665322 -24134,1009:114,94,0,0,0,0.666738 -24135,1009:215,95,0,0,0,0.667765 -24136,1009:216,96,0,0,0,0.669904 -24137,1009:217,97,0,0,0,0.671493 -24138,1010:110,100,0,0,0,0.673394 -24139,1010:111,101,0,0,0,0.679354 -24140,1010:114,104,0,0,0,0.640202 -24141,1010:215,105,0,0,0,0.637499 -24142,1010:216,106,0,0,0,0.639563 -24143,1010:217,107,0,0,0,0.631567 -24144,1010:218,108,0,0,0,0.644357 -24145,1010:219,109,0,0,0,0.656573 -24146,1011:110,110,0,0,0,0.664635 -24147,1011:111,111,0,0,0,0.667378 -24148,1011:112,112,0,0,0,0.670155 -24149,1011:113,113,0,0,0,0.672942 -24150,1011:218,118,0,0,0,0.66172 -24151,1011:219,119,0,0,0,0.651155 -24152,1012:110,120,0,0,0,0.658632 -24153,1012:111,121,0,0,0,0.664017 -24154,1012:112,122,0,0,0,0.665596 -24155,1012:113,123,0,0,0,0.666944 -24156,1012:114,124,0,0,0,0.667195 -24157,1012:215,125,0,0,0,0.665847 -24158,1012:216,126,0,0,0,0.66895 -24159,1012:217,127,0,0,0,0.662042 -24160,1012:218,128,0,0,0,0.664131 -24161,1012:219,129,0,0,0,0.664589 -24162,1013:110,130,0,0,0,0.665367 -24163,1013:111,131,0,0,0,0.663099 -24164,1013:112,132,0,0,0,0.658863 -24165,1013:113,133,0,0,0,0.659094 -24166,1013:114,134,0,0,0,0.661789 -24167,1013:215,135,0,0,0,0.664589 -24168,1013:216,136,0,0,0,0.667537 -24169,1013:217,137,0,0,0,0.671062 -24170,1013:218,138,0,0,0,0.669746 -24171,1013:219,139,0,0,0,0.66929 -24172,1014:110,140,0,0,0,0.669972 -24173,1014:111,141,0,0,0,0.669586 -24174,1014:112,142,0,0,0,0.669131 -24175,1014:113,143,0,0,0,0.670268 -24176,1014:114,144,0,0,0,0.672308 -24177,1014:215,145,0,0,0,0.673981 -24178,1014:216,146,0,0,0,0.674658 -24179,1014:217,147,0,0,0,0.676055 -24180,1014:218,148,0,0,0,0.678054 -24181,1014:219,149,0,0,0,0.67839 -24182,1015:110,150,0,0,0,0.678524 -24183,1015:111,151,0,0,0,0.678189 -24184,1015:112,152,0,0,0,0.677403 -24185,1015:113,153,0,0,0,0.67637 -24186,1015:114,154,0,0,0,0.675739 -24187,1015:215,155,0,0,0,0.675357 -24188,1015:216,156,0,0,0,0.675041 -24189,1015:217,157,0,0,0,0.674297 -24190,1015:218,158,0,0,0,0.673122 -24191,1015:219,159,0,0,0,0.672217 -24192,1016:110,160,0,0,0,0.671538 -24193,1016:111,161,0,0,0,0.671357 -24194,1016:112,162,0,0,0,0.671878 -24195,1016:113,163,0,0,0,0.672602 -24196,1016:114,164,0,0,0,0.67319 -24197,1016:215,165,0,0,0,0.673258 -24198,1016:216,166,0,0,0,0.672467 -24199,1016:217,167,0,0,0,0.672105 -24200,1016:218,168,0,0,0,0.672308 -24201,1016:219,169,0,0,0,0.674342 -24202,1017:110,170,0,0,0,0.675289 -24203,1017:111,171,0,0,0,0.675199 -24204,1017:112,172,0,0,0,0.675086 -24205,1017:113,173,0,0,0,0.675041 -24206,1017:114,174,0,0,0,0.675447 -24207,1017:215,175,0,0,0,0.676864 -24208,1017:216,176,0,0,0,0.675785 -24209,1017:217,177,0,0,0,0.672942 -24210,1017:218,178,0,0,0,0.67138 -24211,1017:219,179,0,0,0,0.670971 -24212,1018:110,180,0,0,0,0.670018 -24213,7018:110,-180,1,0,0,0.667172 -24214,7017:219,-179,1,0,0,0.665939 -24215,7017:218,-178,1,0,0,0.664521 -24216,7017:217,-177,1,0,0,0.663168 -24217,7017:216,-176,1,0,0,0.662387 -24218,7017:215,-175,1,0,0,0.662433 -24219,7017:114,-174,1,0,0,0.66241 -24220,7017:113,-173,1,0,0,0.662594 -24221,7017:112,-172,1,0,0,0.661007 -24222,7017:111,-171,1,0,0,0.66057 -24223,7017:110,-170,1,0,0,0.659947 -24224,7016:219,-169,1,0,0,0.660408 -24225,7016:218,-168,1,0,0,0.660293 -24226,7016:217,-167,1,0,0,0.660408 -24227,7016:216,-166,1,0,0,0.659647 -24228,7016:215,-165,1,0,0,0.659486 -24229,7016:114,-164,1,0,0,0.659024 -24230,7016:113,-163,1,0,0,0.658539 -24231,7016:112,-162,1,0,0,0.657777 -24232,7016:111,-161,1,0,0,0.656086 -24233,7016:110,-160,1,0,0,0.655042 -24234,7015:219,-159,1,0,0,0.656132 -24235,7015:218,-158,1,0,0,0.656016 -24236,7015:217,-157,1,0,0,0.655344 -24237,7015:216,-156,1,0,0,0.654787 -24238,7015:215,-155,1,0,0,0.655089 -24239,7015:114,-154,1,0,0,0.654671 -24240,7015:113,-153,1,0,0,0.654671 -24241,7015:112,-152,1,0,0,0.653462 -24242,7015:111,-151,1,0,0,0.651715 -24243,7015:110,-150,1,0,0,0.651201 -24244,7014:219,-149,1,0,0,0.651715 -24245,7014:218,-148,1,0,0,0.651015 -24246,7014:217,-147,1,0,0,0.649823 -24247,7014:216,-146,1,0,0,0.647764 -24248,7014:215,-145,1,0,0,0.646426 -24249,7014:114,-144,1,0,0,0.647834 -24250,7014:113,-143,1,0,0,0.648841 -24251,7014:112,-142,1,0,0,0.648443 -24252,7014:111,-141,1,0,0,0.646567 -24253,7014:110,-140,1,0,0,0.648021 -24254,7013:219,-139,1,0,0,0.646027 -24255,7013:218,-138,1,0,0,0.643084 -24256,7013:217,-137,1,0,0,0.641384 -24257,7013:216,-136,1,0,0,0.641763 -24258,7013:215,-135,1,0,0,0.641763 -24259,7013:114,-134,1,0,0,0.640367 -24260,7013:113,-133,1,0,0,0.637476 -24261,7013:112,-132,1,0,0,0.640084 -24262,7013:111,-131,1,0,0,0.642518 -24263,7013:110,-130,1,0,0,0.643225 -24264,7012:219,-129,1,0,0,0.640699 -24265,7012:218,-128,1,0,0,0.643485 -24266,7012:217,-127,1,0,0,0.643084 -24267,7012:216,-126,1,0,0,0.640817 -24268,7012:215,-125,1,0,0,0.636074 -24269,7012:114,-124,1,0,0,0.640652 -24270,7012:113,-123,1,0,0,0.64103 -24271,7012:112,-122,1,0,0,0.631878 -24272,7012:111,-121,1,0,0,0.628742 -24273,7012:110,-120,1,0,0,0.635883 -24274,7011:219,-119,1,0,0,0.637998 -24275,7011:218,-118,1,0,0,0.63486 -24276,7011:217,-117,1,0,0,0.634098 -24277,7011:216,-116,1,0,0,0.634312 -24278,7011:215,-115,1,0,0,0.634264 -24279,7011:114,-114,1,0,0,0.634384 -24280,7011:113,-113,1,0,0,0.63455 -24281,7011:112,-112,1,0,0,0.635098 -24282,7011:111,-111,1,0,0,0.635408 -24283,7011:110,-110,1,0,0,0.635122 -24284,7010:219,-109,1,0,0,0.634026 -24285,7010:218,-108,1,0,0,0.632785 -24286,7010:217,-107,1,0,0,0.631567 -24287,7010:216,-106,1,0,0,0.630514 -24288,7010:215,-105,1,0,0,0.629628 -24289,7010:114,-104,1,0,0,0.628694 -24290,7010:113,-103,1,0,0,0.627902 -24291,7010:112,-102,1,0,0,0.627374 -24292,7010:111,-101,1,0,0,0.627374 -24293,7010:110,-100,1,0,0,0.62747 -24294,7009:219,-99,1,0,0,0.627902 -24295,7009:218,-98,1,0,0,0.628118 -24296,7009:217,-97,1,0,0,0.628141 -24297,7009:216,-96,1,0,0,0.628357 -24298,7009:215,-95,1,0,0,0.629054 -24299,7009:114,-94,1,0,0,0.628646 -24300,7009:113,-93,1,0,0,0.628357 -24301,7009:112,-92,1,0,0,0.62771 -24302,7009:111,-91,1,0,0,0.627157 -24303,7009:110,-90,1,0,0,0.627421 -24304,7008:219,-89,1,0,0,0.628765 -24305,7008:218,-88,1,0,0,0.630802 -24306,7008:217,-87,1,0,0,0.633669 -24307,7008:216,-86,1,0,0,0.633764 -24308,7008:215,-85,1,0,0,0.636621 -24309,7008:114,-84,1,0,0,0.636336 -24310,7008:113,-83,1,0,0,0.632451 -24311,7008:112,-82,1,0,0,0.633263 -24312,7008:111,-81,1,0,0,0.633693 -24313,7008:110,-80,1,0,0,0.633239 -24314,7007:219,-79,1,0,0,0.629724 -24315,7007:218,-78,1,0,0,0.630802 -24316,7005:112,-52,1,0,0,0.619293 -24317,7005:111,-51,1,0,0,0.625956 -24318,7005:110,-50,1,0,0,0.626893 -24319,7004:219,-49,1,0,0,0.631376 -24320,7004:218,-48,1,0,0,0.630611 -24321,7004:217,-47,1,0,0,0.630443 -24322,7004:216,-46,1,0,0,0.633573 -24323,7004:215,-45,1,0,0,0.636002 -24324,7004:114,-44,1,0,0,0.635479 -24325,7004:113,-43,1,0,0,0.632571 -24326,7004:112,-42,1,0,0,0.630922 -24327,7004:111,-41,1,0,0,0.632045 -24328,7004:110,-40,1,0,0,0.632356 -24329,7003:219,-39,1,0,0,0.63269 -24330,7003:218,-38,1,0,0,0.632499 -24331,7003:217,-37,1,0,0,0.631639 -24332,7003:216,-36,1,0,0,0.63128 -24333,7003:215,-35,1,0,0,0.630347 -24334,7003:114,-34,1,0,0,0.630323 -24335,7003:113,-33,1,0,0,0.629365 -24336,7003:112,-32,1,0,0,0.628958 -24337,7003:111,-31,1,0,0,0.629221 -24338,7003:110,-30,1,0,0,0.629557 -24339,7002:219,-29,1,0,0,0.630227 -24340,7002:218,-28,1,0,0,0.630969 -24341,7002:217,-27,1,0,0,0.632212 -24342,7002:216,-26,1,0,0,0.633072 -24343,7002:215,-25,1,0,0,0.633693 -24344,7002:114,-24,1,0,0,0.634884 -24345,7002:113,-23,1,0,0,0.635907 -24346,7002:112,-22,1,0,0,0.637381 -24347,7002:111,-21,1,0,0,0.638497 -24348,7002:110,-20,1,0,0,0.64006 -24349,7001:219,-19,1,0,0,0.642164 -24350,7001:218,-18,1,0,0,0.644992 -24351,7001:217,-17,1,0,0,0.646191 -24352,7001:216,-16,1,0,0,0.647341 -24353,7001:215,-15,1,0,0,0.648091 -24354,7001:114,-14,1,0,0,0.648185 -24355,7001:113,-13,1,0,0,0.649519 -24356,7001:112,-12,1,0,0,0.650992 -24357,7001:111,-11,1,0,0,0.655019 -24358,7001:110,-10,1,0,0,0.659901 -24359,7000:216,-6,1,0,0,0.661053 -24360,7000:215,-5,1,0,0,0.663305 -24361,7000:114,-4,1,0,0,0.665619 -24362,7000:113,-3,1,0,0,0.667993 -24363,7000:111,-1,1,0,0,0.664978 -24364,1000:111,0,1,0,0,0.673733 -24365,1000:111,1,1,0,0,0.673913 -24366,1000:112,2,1,0,0,0.673236 -24367,1000:113,3,1,0,0,0.67468 -24368,1000:114,4,1,0,0,0.676234 -24369,1000:215,5,1,0,0,0.674342 -24370,1004:219,49,1,0,0,0.631567 -24371,1005:110,50,1,0,0,0.639586 -24372,1005:111,51,1,0,0,0.63987 -24373,1005:112,52,1,0,0,0.63814 -24374,1005:113,53,1,0,0,0.638994 -24375,1005:114,54,1,0,0,0.643603 -24376,1005:215,55,1,0,0,0.648537 -24377,1005:216,56,1,0,0,0.654345 -24378,1005:217,57,1,0,0,0.656248 -24379,1005:218,58,1,0,0,0.656781 -24380,1005:219,59,1,0,0,0.654415 -24381,1006:110,60,1,0,0,0.656897 -24382,1006:111,61,1,0,0,0.654787 -24383,1006:112,62,1,0,0,0.652368 -24384,1006:113,63,1,0,0,0.651924 -24385,1006:114,64,1,0,0,0.65402 -24386,1006:215,65,1,0,0,0.656318 -24387,1006:216,66,1,0,0,0.656897 -24388,1006:217,67,1,0,0,0.659209 -24389,1006:218,68,1,0,0,0.661675 -24390,1006:219,69,1,0,0,0.662318 -24391,1007:110,70,1,0,0,0.662502 -24392,1007:111,71,1,0,0,0.662617 -24393,1007:112,72,1,0,0,0.661882 -24394,1007:114,74,1,0,0,0.657198 -24395,1007:215,75,1,0,0,0.65481 -24396,1007:216,76,1,0,0,0.653578 -24397,1007:217,77,1,0,0,0.65395 -24398,1007:218,78,1,0,0,0.654369 -24399,1007:219,79,1,0,0,0.654508 -24400,1008:110,80,1,0,0,0.652414 -24401,1008:111,81,1,0,0,0.649332 -24402,1008:112,82,1,0,0,0.652181 -24403,1008:113,83,1,0,0,0.658077 -24404,1008:114,84,1,0,0,0.660386 -24405,1008:215,85,1,0,0,0.660339 -24406,1008:216,86,1,0,0,0.659301 -24407,1008:217,87,1,0,0,0.656642 -24408,1008:218,88,1,0,0,0.655669 -24409,1008:219,89,1,0,0,0.655924 -24410,1009:110,90,1,0,0,0.654764 -24411,1009:111,91,1,0,0,0.654276 -24412,1009:112,92,1,0,0,0.65611 -24413,1009:113,93,1,0,0,0.657106 -24414,1009:114,94,1,0,0,0.659024 -24415,1009:215,95,1,0,0,0.66404 -24416,1009:219,99,1,0,0,0.662571 -24417,1010:110,100,1,0,0,0.658608 -24418,1010:114,104,1,0,0,0.638093 -24419,1010:215,105,1,0,0,0.629964 -24420,1010:216,106,1,0,0,0.629005 -24421,1010:217,107,1,0,0,0.62807 -24422,1010:218,108,1,0,0,0.633835 -24423,1010:219,109,1,0,0,0.643674 -24424,1011:110,110,1,0,0,0.646473 -24425,1011:111,111,1,0,0,0.653741 -24426,1011:112,112,1,0,0,0.658493 -24427,1011:113,113,1,0,0,0.662456 -24428,1011:114,114,1,0,0,0.66683 -24429,1011:215,115,1,0,0,0.669586 -24430,1012:110,120,1,0,0,0.662594 -24431,1012:111,121,1,0,0,0.649215 -24432,1012:112,122,1,0,0,0.65409 -24433,1012:113,123,1,0,0,0.658146 -24434,1012:114,124,1,0,0,0.654833 -24435,1012:215,125,1,0,0,0.645439 -24436,1012:216,126,1,0,0,0.644592 -24437,1012:217,127,1,0,0,0.655135 -24438,1012:218,128,1,0,0,0.663374 -24439,1012:219,129,1,0,0,0.665161 -24440,1013:110,130,1,0,0,0.666282 -24441,1013:111,131,1,0,0,0.666738 -24442,1013:112,132,1,0,0,0.664612 -24443,1013:113,133,1,0,0,0.6628 -24444,1013:114,134,1,0,0,0.664544 -24445,1013:215,135,1,0,0,0.668768 -24446,1013:216,136,1,0,0,0.672308 -24447,1013:217,137,1,0,0,0.671153 -24448,1013:218,138,1,0,0,0.667606 -24449,1013:219,139,1,0,0,0.66797 -24450,1014:110,140,1,0,0,0.669086 -24451,1014:111,141,1,0,0,0.66929 -24452,1014:112,142,1,0,0,0.670018 -24453,1014:113,143,1,0,0,0.671108 -24454,1014:114,144,1,0,0,0.672399 -24455,1014:215,145,1,0,0,0.673755 -24456,1014:216,146,1,0,0,0.674161 -24457,1014:217,147,1,0,0,0.673778 -24458,1014:218,148,1,0,0,0.673484 -24459,1014:219,149,1,0,0,0.673349 -24460,1015:110,150,1,0,0,0.674026 -24461,1015:111,151,1,0,0,0.67441 -24462,1015:112,152,1,0,0,0.673529 -24463,1015:113,153,1,0,0,0.672399 -24464,1015:114,154,1,0,0,0.66995 -24465,1015:215,155,1,0,0,0.668722 -24466,1015:216,156,1,0,0,0.669313 -24467,1015:217,157,1,0,0,0.671039 -24468,1015:218,158,1,0,0,0.671493 -24469,1015:219,159,1,0,0,0.670881 -24470,1016:110,160,1,0,0,0.670132 -24471,1016:111,161,1,0,0,0.669609 -24472,1016:112,162,1,0,0,0.669518 -24473,1016:113,163,1,0,0,0.669586 -24474,1016:114,164,1,0,0,0.669268 -24475,1016:215,165,1,0,0,0.668381 -24476,1016:216,166,1,0,0,0.668586 -24477,1016:217,167,1,0,0,0.669381 -24478,1016:218,168,1,0,0,0.670336 -24479,1016:219,169,1,0,0,0.67079 -24480,1017:110,170,1,0,0,0.670086 -24481,1017:111,171,1,0,0,0.671085 -24482,1017:112,172,1,0,0,0.672806 -24483,1017:113,173,1,0,0,0.672421 -24484,1017:114,174,1,0,0,0.670858 -24485,1017:215,175,1,0,0,0.669199 -24486,1017:216,176,1,0,0,0.669836 -24487,1017:217,177,1,0,0,0.668586 -24488,1017:218,178,1,0,0,0.667742 -24489,1017:219,179,1,0,0,0.667697 -24490,1018:110,180,1,0,0,0.667172 -24491,7018:120,-180,2,0,0,0.66149 -24492,7017:229,-179,2,0,0,0.661789 -24493,7017:228,-178,2,0,0,0.660777 -24926,1006:134,64,3,0,0,0.64438 -24494,7017:227,-177,2,0,0,0.658401 -24495,7017:226,-176,2,0,0,0.655947 -24496,7017:225,-175,2,0,0,0.654601 -24497,7017:124,-174,2,0,0,0.653927 -24498,7017:123,-173,2,0,0,0.65395 -24499,7017:122,-172,2,0,0,0.654392 -24500,7017:121,-171,2,0,0,0.654345 -24501,7017:120,-170,2,0,0,0.654043 -24502,7016:229,-169,2,0,0,0.653112 -24503,7016:228,-168,2,0,0,0.652857 -24504,7016:227,-167,2,0,0,0.651738 -24505,7016:226,-166,2,0,0,0.651505 -24506,7016:225,-165,2,0,0,0.651855 -24507,7016:124,-164,2,0,0,0.652647 -24508,7016:123,-163,2,0,0,0.652904 -24509,7016:122,-162,2,0,0,0.652717 -24510,7016:121,-161,2,0,0,0.652647 -24511,7016:120,-160,2,0,0,0.65281 -24512,7015:229,-159,2,0,0,0.653415 -24513,7015:228,-158,2,0,0,0.653531 -24514,7015:227,-157,2,0,0,0.652997 -24515,7015:226,-156,2,0,0,0.652251 -24516,7015:225,-155,2,0,0,0.651762 -24517,7015:124,-154,2,0,0,0.651668 -24518,7015:123,-153,2,0,0,0.651855 -24519,7015:122,-152,2,0,0,0.652018 -24520,7015:121,-151,2,0,0,0.651855 -24521,7015:120,-150,2,0,0,0.651248 -24522,7014:229,-149,2,0,0,0.650338 -24523,7014:228,-148,2,0,0,0.649777 -24524,7014:227,-147,2,0,0,0.649613 -24525,7014:226,-146,2,0,0,0.649753 -24526,7014:225,-145,2,0,0,0.649823 -24527,7014:124,-144,2,0,0,0.649473 -24528,7014:123,-143,2,0,0,0.649028 -24529,7014:122,-142,2,0,0,0.648817 -24530,7014:121,-141,2,0,0,0.648724 -24531,7014:120,-140,2,0,0,0.648396 -24532,7013:229,-139,2,0,0,0.648208 -24533,7013:228,-138,2,0,0,0.647505 -24534,7013:227,-137,2,0,0,0.646684 -24535,7013:226,-136,2,0,0,0.646215 -24536,7013:225,-135,2,0,0,0.645627 -24537,7013:124,-134,2,0,0,0.64471 -24538,7013:123,-133,2,0,0,0.643556 -24539,7013:122,-132,2,0,0,0.643037 -24540,7013:121,-131,2,0,0,0.643485 -24541,7013:120,-130,2,0,0,0.643626 -24542,7012:229,-129,2,0,0,0.644192 -24543,7012:228,-128,2,0,0,0.644145 -24544,7012:227,-127,2,0,0,0.642377 -24545,7012:226,-126,2,0,0,0.641172 -24546,7012:225,-125,2,0,0,0.642188 -24547,7012:124,-124,2,0,0,0.642211 -24548,7012:123,-123,2,0,0,0.641101 -24549,7012:122,-122,2,0,0,0.639349 -24550,7012:121,-121,2,0,0,0.637998 -24551,7012:120,-120,2,0,0,0.638378 -24552,7011:229,-119,2,0,0,0.639563 -24553,7011:228,-118,2,0,0,0.640178 -24554,7011:227,-117,2,0,0,0.641479 -24555,7011:226,-116,2,0,0,0.641998 -24556,7011:225,-115,2,0,0,0.641408 -24557,7011:124,-114,2,0,0,0.641337 -24558,7011:123,-113,2,0,0,0.641361 -24559,7011:122,-112,2,0,0,0.64129 -24560,7011:121,-111,2,0,0,0.640439 -24561,7011:120,-110,2,0,0,0.638947 -24562,7010:229,-109,2,0,0,0.637167 -24563,7010:228,-108,2,0,0,0.635217 -24564,7010:227,-107,2,0,0,0.63312 -24565,7010:226,-106,2,0,0,0.631519 -24566,7010:225,-105,2,0,0,0.630036 -24567,7010:124,-104,2,0,0,0.629317 -24568,7010:123,-103,2,0,0,0.628718 -24569,7010:122,-102,2,0,0,0.628598 -24570,7010:121,-101,2,0,0,0.628526 -24571,7010:120,-100,2,0,0,0.629077 -24572,7009:229,-99,2,0,0,0.629604 -24573,7009:228,-98,2,0,0,0.629653 -24574,7009:227,-97,2,0,0,0.629269 -24575,7009:226,-96,2,0,0,0.628981 -24576,7009:225,-95,2,0,0,0.628838 -24577,7009:124,-94,2,0,0,0.629413 -24578,7009:123,-93,2,0,0,0.630706 -24579,7009:122,-92,2,0,0,0.631782 -24580,7009:121,-91,2,0,0,0.631902 -24581,7009:120,-90,2,0,0,0.632188 -24582,7008:229,-89,2,0,0,0.633072 -24583,7008:228,-88,2,0,0,0.634622 -24584,7008:227,-87,2,0,0,0.638615 -24585,7008:226,-86,2,0,0,0.643909 -24586,7008:225,-85,2,0,0,0.648373 -24587,7008:124,-84,2,0,0,0.651178 -24588,7008:123,-83,2,0,0,0.652414 -24589,7008:122,-82,2,0,0,0.652041 -24590,7008:121,-81,2,0,0,0.652274 -24591,7008:120,-80,2,0,0,0.649215 -24592,7007:229,-79,2,0,0,0.644969 -24593,7007:228,-78,2,0,0,0.647412 -24594,7005:227,-57,2,0,0,0.611169 -24595,7005:226,-56,2,0,0,0.600447 -24596,7005:225,-55,2,0,0,0.600596 -24597,7005:124,-54,2,0,0,0.60468 -24598,7005:123,-53,2,0,0,0.619898 -24599,7005:122,-52,2,0,0,0.626268 -24600,7005:121,-51,2,0,0,0.629365 -24601,7005:120,-50,2,0,0,0.63006 -24602,7004:229,-49,2,0,0,0.628357 -24603,7004:228,-48,2,0,0,0.627253 -24604,7004:227,-47,2,0,0,0.628045 -24605,7004:226,-46,2,0,0,0.629508 -24606,7004:225,-45,2,0,0,0.632379 -24607,7004:124,-44,2,0,0,0.632308 -24608,7004:123,-43,2,0,0,0.627037 -24609,7004:122,-42,2,0,0,0.625185 -24610,7004:121,-41,2,0,0,0.626244 -24611,7004:120,-40,2,0,0,0.628573 -24612,7003:229,-39,2,0,0,0.629557 -24613,7003:228,-38,2,0,0,0.628262 -24614,7003:227,-37,2,0,0,0.62468 -24615,7003:226,-36,2,0,0,0.624197 -24616,7003:225,-35,2,0,0,0.625474 -24617,7003:124,-34,2,0,0,0.626148 -24618,7003:123,-33,2,0,0,0.624944 -24619,7003:122,-32,2,0,0,0.624197 -24620,7003:121,-31,2,0,0,0.624149 -24621,7003:120,-30,2,0,0,0.624583 -24622,7002:229,-29,2,0,0,0.624391 -24623,7002:228,-28,2,0,0,0.625546 -24624,7002:227,-27,2,0,0,0.62843 -24625,7002:226,-26,2,0,0,0.62994 -24626,7002:225,-25,2,0,0,0.630514 -24627,7002:124,-24,2,0,0,0.631567 -24628,7002:123,-23,2,0,0,0.633621 -24629,7002:122,-22,2,0,0,0.635812 -24630,7002:121,-21,2,0,0,0.638069 -24631,7002:120,-20,2,0,0,0.640912 -24632,7001:229,-19,2,0,0,0.64478 -24633,7001:228,-18,2,0,0,0.647927 -24634,7001:227,-17,2,0,0,0.651924 -24635,7001:226,-16,2,0,0,0.655158 -24636,7001:225,-15,2,0,0,0.656132 -24637,7001:124,-14,2,0,0,0.657499 -24638,7001:123,-13,2,0,0,0.65817 -24639,7001:122,-12,2,0,0,0.657013 -24640,1004:229,49,2,0,0,0.626268 -24641,1005:120,50,2,0,0,0.631687 -24642,1005:121,51,2,0,0,0.636098 -24643,1005:122,52,2,0,0,0.640107 -24644,1005:123,53,2,0,0,0.643179 -24645,1005:124,54,2,0,0,0.64565 -24646,1005:225,55,2,0,0,0.647224 -24647,1005:226,56,2,0,0,0.649519 -24648,1005:227,57,2,0,0,0.650945 -24649,1005:228,58,2,0,0,0.653299 -24650,1005:229,59,2,0,0,0.653322 -24651,1006:120,60,2,0,0,0.655483 -24652,1006:121,61,2,0,0,0.650548 -24653,1006:122,62,2,0,0,0.645416 -24654,1006:123,63,2,0,0,0.646731 -24655,1006:124,64,2,0,0,0.649706 -24656,1006:225,65,2,0,0,0.652088 -24657,1006:226,66,2,0,0,0.654764 -24658,1006:227,67,2,0,0,0.655228 -24659,1006:228,68,2,0,0,0.655576 -24660,1006:229,69,2,0,0,0.657499 -24661,1007:120,70,2,0,0,0.659532 -24662,1007:121,71,2,0,0,0.660132 -24663,1007:122,72,2,0,0,0.659532 -24664,1007:124,74,2,0,0,0.655808 -24665,1007:225,75,2,0,0,0.648162 -24666,1007:226,76,2,0,0,0.646614 -24667,1007:227,77,2,0,0,0.645815 -24668,1007:228,78,2,0,0,0.64431 -24669,1007:229,79,2,0,0,0.642684 -24670,1008:120,80,2,0,0,0.644404 -24671,1008:123,83,2,0,0,0.642612 -24672,1008:124,84,2,0,0,0.65253 -24673,1008:225,85,2,0,0,0.652437 -24674,1008:226,86,2,0,0,0.651131 -24675,1008:227,87,2,0,0,0.650104 -24676,1008:228,88,2,0,0,0.647857 -24677,1008:229,89,2,0,0,0.645839 -24678,1009:120,90,2,0,0,0.643792 -24679,1009:121,91,2,0,0,0.645815 -24680,1009:122,92,2,0,0,0.649379 -24681,1009:123,93,2,0,0,0.651272 -24682,1009:124,94,2,0,0,0.647294 -24683,1009:225,95,2,0,0,0.6487 -24684,1009:226,96,2,0,0,0.648654 -24685,1009:227,97,2,0,0,0.648396 -24686,1009:228,98,2,0,0,0.651575 -24687,1009:229,99,2,0,0,0.650688 -24688,1010:120,100,2,0,0,0.648467 -24689,1010:122,102,2,0,0,0.634645 -24690,1010:123,103,2,0,0,0.638283 -24691,1010:124,104,2,0,0,0.625835 -24692,1010:225,105,2,0,0,0.623354 -24693,1010:226,106,2,0,0,0.619462 -24694,1010:227,107,2,0,0,0.615166 -24695,1010:228,108,2,0,0,0.616697 -24696,1010:229,109,2,0,0,0.635527 -24697,1011:120,110,2,0,0,0.642848 -24698,1011:121,111,2,0,0,0.647669 -24699,1011:122,112,2,0,0,0.649402 -24700,1011:123,113,2,0,0,0.651575 -24701,1011:124,114,2,0,0,0.653345 -24702,1011:225,115,2,0,0,0.654531 -24703,1011:226,116,2,0,0,0.656156 -24704,1011:228,118,2,0,0,0.656202 -24705,1011:229,119,2,0,0,0.652857 -24706,1012:120,120,2,0,0,0.652694 -24707,1012:121,121,2,0,0,0.646261 -24708,1012:122,122,2,0,0,0.64299 -24709,1012:123,123,2,0,0,0.642542 -24710,1012:124,124,2,0,0,0.631519 -24711,1012:226,126,2,0,0,0.648724 -24712,1012:227,127,2,0,0,0.649075 -24713,1012:228,128,2,0,0,0.660063 -24714,1012:229,129,2,0,0,0.662456 -24715,1013:120,130,2,0,0,0.662732 -24716,1013:121,131,2,0,0,0.661007 -24717,1013:122,132,2,0,0,0.66149 -24718,1013:123,133,2,0,0,0.663099 -24719,1013:124,134,2,0,0,0.664887 -24720,1013:225,135,2,0,0,0.665711 -24721,1013:226,136,2,0,0,0.666716 -24722,1013:227,137,2,0,0,0.668312 -24723,1013:228,138,2,0,0,0.667948 -24724,1013:229,139,2,0,0,0.661237 -24725,1014:120,140,2,0,0,0.660201 -24726,1014:121,141,2,0,0,0.662226 -24727,1014:122,142,2,0,0,0.663191 -24728,1014:123,143,2,0,0,0.663948 -24729,1014:124,144,2,0,0,0.664544 -24730,1014:225,145,2,0,0,0.664589 -24731,1014:226,146,2,0,0,0.665711 -24732,1014:227,147,2,0,0,0.666465 -24733,1014:228,148,2,0,0,0.666853 -24734,1014:229,149,2,0,0,0.667081 -24735,1015:120,150,2,0,0,0.668085 -24736,1015:121,151,2,0,0,0.668859 -24737,1015:122,152,2,0,0,0.667833 -24738,1015:123,153,2,0,0,0.667172 -24739,1015:124,154,2,0,0,0.66683 -24740,1015:225,155,2,0,0,0.666807 -24741,1015:226,156,2,0,0,0.667149 -24742,1015:227,157,2,0,0,0.667401 -24743,1015:228,158,2,0,0,0.667332 -24744,1015:229,159,2,0,0,0.662456 -24745,1016:120,160,2,0,0,0.665482 -24746,1016:121,161,2,0,0,0.667035 -24747,1016:122,162,2,0,0,0.666305 -24748,1016:123,163,2,0,0,0.664978 -24749,1016:124,164,2,0,0,0.66381 -24750,1016:225,165,2,0,0,0.662915 -24751,1016:226,166,2,0,0,0.662823 -24752,1016:227,167,2,0,0,0.663833 -24753,1016:228,168,2,0,0,0.664704 -24754,1016:229,169,2,0,0,0.664406 -24755,1017:120,170,2,0,0,0.662111 -24756,1017:121,171,2,0,0,0.660639 -24757,1017:122,172,2,0,0,0.662456 -24758,1017:123,173,2,0,0,0.665344 -24759,1017:124,174,2,0,0,0.669041 -24760,1017:225,175,2,0,0,0.669359 -24761,1017:226,176,2,0,0,0.667993 -24762,1017:227,177,2,0,0,0.666533 -24763,1017:228,178,2,0,0,0.66365 -24764,1017:229,179,2,0,0,0.661468 -24765,1018:120,180,2,0,0,0.66149 -24766,7018:130,-180,3,0,0,0.648841 -24767,7017:239,-179,3,0,0,0.651482 -24768,7017:238,-178,3,0,0,0.650291 -24769,7017:237,-177,3,0,0,0.648068 -24770,7017:236,-176,3,0,0,0.646872 -24771,7017:235,-175,3,0,0,0.645157 -24772,7017:134,-174,3,0,0,0.642802 -24773,7017:133,-173,3,0,0,0.642211 -24774,7017:132,-172,3,0,0,0.642495 -24775,7017:131,-171,3,0,0,0.644404 -24776,7017:130,-170,3,0,0,0.643131 -24777,7016:239,-169,3,0,0,0.641054 -24778,7016:238,-168,3,0,0,0.638022 -24779,7016:237,-167,3,0,0,0.637547 -24780,7016:236,-166,3,0,0,0.639444 -24781,7016:235,-165,3,0,0,0.640604 -24782,7016:134,-164,3,0,0,0.640935 -24783,7016:133,-163,3,0,0,0.641267 -24784,7016:132,-162,3,0,0,0.642305 -24785,7016:131,-161,3,0,0,0.641928 -24786,7016:130,-160,3,0,0,0.640297 -24787,7015:239,-159,3,0,0,0.639421 -24788,7015:238,-158,3,0,0,0.639421 -24789,7015:237,-157,3,0,0,0.639468 -24790,7015:236,-156,3,0,0,0.639373 -24791,7015:235,-155,3,0,0,0.639255 -24792,7015:134,-154,3,0,0,0.64006 -24793,7015:133,-153,3,0,0,0.640982 -24794,7015:132,-152,3,0,0,0.639752 -24795,7015:131,-151,3,0,0,0.635098 -24796,7015:130,-150,3,0,0,0.631973 -24797,7014:239,-149,3,0,0,0.633931 -24798,7014:238,-148,3,0,0,0.635027 -24799,7014:237,-147,3,0,0,0.635574 -24800,7014:236,-146,3,0,0,0.636692 -24801,7014:235,-145,3,0,0,0.636621 -24802,7014:134,-144,3,0,0,0.635027 -24803,7014:133,-143,3,0,0,0.633716 -24804,7014:132,-142,3,0,0,0.632236 -24805,7014:131,-141,3,0,0,0.631471 -24806,7014:130,-140,3,0,0,0.633859 -24807,7013:239,-139,3,0,0,0.637143 -24808,7013:238,-138,3,0,0,0.638686 -24809,7013:237,-137,3,0,0,0.638378 -24810,7013:236,-136,3,0,0,0.638188 -24811,7013:235,-135,3,0,0,0.637404 -24812,7013:134,-134,3,0,0,0.635574 -24813,7013:133,-133,3,0,0,0.633716 -24814,7013:132,-132,3,0,0,0.632785 -24815,7013:131,-131,3,0,0,0.63226 -24816,7013:130,-130,3,0,0,0.634431 -24817,7012:239,-129,3,0,0,0.636811 -24818,7012:238,-128,3,0,0,0.637618 -24819,7012:237,-127,3,0,0,0.637262 -24820,7012:236,-126,3,0,0,0.637025 -24821,7012:235,-125,3,0,0,0.638093 -24822,7012:134,-124,3,0,0,0.639349 -24823,7012:133,-123,3,0,0,0.639942 -24824,7012:132,-122,3,0,0,0.640131 -24825,7012:131,-121,3,0,0,0.639729 -24826,7012:130,-120,3,0,0,0.639847 -24827,7011:239,-119,3,0,0,0.640935 -24828,7011:238,-118,3,0,0,0.641952 -24829,7011:237,-117,3,0,0,0.64155 -24830,7011:236,-116,3,0,0,0.640391 -24831,7011:235,-115,3,0,0,0.63961 -24832,7011:134,-114,3,0,0,0.639468 -24833,7011:133,-113,3,0,0,0.639492 -24834,7011:132,-112,3,0,0,0.637975 -24835,7011:131,-111,3,0,0,0.634979 -24836,7011:130,-110,3,0,0,0.633263 -24837,7010:239,-109,3,0,0,0.631806 -24838,7010:238,-108,3,0,0,0.629533 -24839,7010:237,-107,3,0,0,0.628382 -24840,7010:236,-106,3,0,0,0.628094 -24841,7010:235,-105,3,0,0,0.628526 -24842,7010:134,-104,3,0,0,0.628118 -24843,7010:133,-103,3,0,0,0.626316 -24844,7010:132,-102,3,0,0,0.623233 -24845,7010:131,-101,3,0,0,0.617814 -24846,7010:130,-100,3,0,0,0.614485 -24847,7009:239,-99,3,0,0,0.615993 -24848,7009:238,-98,3,0,0,0.618129 -24849,7009:237,-97,3,0,0,0.619946 -24850,7009:236,-96,3,0,0,0.620865 -24851,7009:235,-95,3,0,0,0.621808 -24852,7009:134,-94,3,0,0,0.624101 -24853,7009:133,-93,3,0,0,0.627806 -24854,7009:132,-92,3,0,0,0.628141 -24855,7009:131,-91,3,0,0,0.626148 -24856,7009:130,-90,3,0,0,0.622702 -24857,7008:239,-89,3,0,0,0.628598 -24858,7008:238,-88,3,0,0,0.636383 -24859,7008:237,-87,3,0,0,0.641125 -24860,7008:236,-86,3,0,0,0.651924 -24861,7008:235,-85,3,0,0,0.658794 -24862,7008:134,-84,3,0,0,0.660708 -24863,7008:133,-83,3,0,0,0.656434 -24864,7008:130,-80,3,0,0,0.657684 -24865,7007:239,-79,3,0,0,0.65253 -24866,7005:239,-59,3,0,0,0.624559 -24867,7005:238,-58,3,0,0,0.619487 -24868,7005:237,-57,3,0,0,0.626725 -24869,7005:236,-56,3,0,0,0.627421 -24870,7005:235,-55,3,0,0,0.626989 -24871,7005:134,-54,3,0,0,0.630825 -24872,7005:133,-53,3,0,0,0.631662 -24873,7005:132,-52,3,0,0,0.63073 -24874,7005:131,-51,3,0,0,0.629628 -24875,7005:130,-50,3,0,0,0.628382 -24876,7004:239,-49,3,0,0,0.630323 -24877,7004:238,-48,3,0,0,0.628742 -24878,7004:237,-47,3,0,0,0.628382 -24879,7004:236,-46,3,0,0,0.627541 -24880,7004:235,-45,3,0,0,0.627109 -24881,7004:134,-44,3,0,0,0.626436 -24882,7004:133,-43,3,0,0,0.625931 -24883,7004:132,-42,3,0,0,0.623908 -24884,7004:131,-41,3,0,0,0.622799 -24885,7004:130,-40,3,0,0,0.623523 -24886,7003:239,-39,3,0,0,0.623787 -24887,7003:238,-38,3,0,0,0.620213 -24888,7003:237,-37,3,0,0,0.616721 -24889,7003:236,-36,3,0,0,0.617693 -24890,7003:235,-35,3,0,0,0.619293 -24891,7003:134,-34,3,0,0,0.616649 -24892,7003:133,-33,3,0,0,0.617061 -24893,7003:132,-32,3,0,0,0.617231 -24894,7003:131,-31,3,0,0,0.619244 -24895,7003:130,-30,3,0,0,0.619777 -24896,7002:239,-29,3,0,0,0.620237 -24897,7002:238,-28,3,0,0,0.62014 -24898,7002:237,-27,3,0,0,0.621518 -24899,7002:236,-26,3,0,0,0.624921 -24900,7002:235,-25,3,0,0,0.624631 -24901,7002:134,-24,3,0,0,0.625811 -24902,7002:133,-23,3,0,0,0.629677 -24903,7002:132,-22,3,0,0,0.633263 -24904,7002:131,-21,3,0,0,0.635859 -24905,7002:130,-20,3,0,0,0.639208 -24906,7001:239,-19,3,0,0,0.645063 -24907,7001:238,-18,3,0,0,0.650268 -24908,7001:237,-17,3,0,0,0.653322 -24909,7001:236,-16,3,0,0,0.657592 -24910,7001:235,-15,3,0,0,0.657175 -24911,7001:134,-14,3,0,0,0.665482 -24912,1005:130,50,3,0,0,0.623595 -24913,1005:131,51,3,0,0,0.625402 -24914,1005:132,52,3,0,0,0.623667 -24915,1005:133,53,3,0,0,0.625763 -24916,1005:134,54,3,0,0,0.634408 -24917,1005:235,55,3,0,0,0.637666 -24918,1005:236,56,3,0,0,0.633597 -24919,1005:237,57,3,0,0,0.635883 -24920,1005:238,58,3,0,0,0.643013 -24921,1005:239,59,3,0,0,0.647716 -24922,1006:130,60,3,0,0,0.648935 -24923,1006:131,61,3,0,0,0.64471 -24924,1006:132,62,3,0,0,0.642754 -24925,1006:133,63,3,0,0,0.64058 -24927,1006:235,65,3,0,0,0.647669 -24928,1006:236,66,3,0,0,0.64966 -24929,1006:237,67,3,0,0,0.650594 -24930,1006:238,68,3,0,0,0.652065 -24931,1006:239,69,3,0,0,0.65295 -24932,1007:130,70,3,0,0,0.655367 -24933,1007:131,71,3,0,0,0.657128 -24934,1007:132,72,3,0,0,0.653438 -24935,1007:134,74,3,0,0,0.647857 -24936,1007:235,75,3,0,0,0.645627 -24937,1007:236,76,3,0,0,0.645768 -24938,1007:237,77,3,0,0,0.645462 -24939,1007:239,79,3,0,0,0.648256 -24940,1008:130,80,3,0,0,0.644498 -24941,1008:132,82,3,0,0,0.627662 -24942,1008:133,83,3,0,0,0.639208 -24943,1008:134,84,3,0,0,0.644357 -24944,1008:235,85,3,0,0,0.644216 -24945,1008:236,86,3,0,0,0.643532 -24946,1008:237,87,3,0,0,0.645039 -24947,1008:238,88,3,0,0,0.645204 -24948,1008:239,89,3,0,0,0.643556 -24949,1009:130,90,3,0,0,0.64372 -24950,1009:131,91,3,0,0,0.644027 -24951,1009:132,92,3,0,0,0.646332 -24952,1009:133,93,3,0,0,0.647412 -24953,1009:134,94,3,0,0,0.645416 -24954,1009:235,95,3,0,0,0.64645 -24955,1009:236,96,3,0,0,0.646989 -24956,1009:237,97,3,0,0,0.649519 -24957,1009:238,98,3,0,0,0.650455 -24958,1010:131,101,3,0,0,0.638402 -24959,1010:132,102,3,0,0,0.638402 -24960,1010:133,103,3,0,0,0.635717 -24961,1010:134,104,3,0,0,0.628861 -24962,1010:235,105,3,0,0,0.615823 -24963,1010:236,106,3,0,0,0.612828 -24964,1010:237,107,3,0,0,0.611072 -24965,1010:238,108,3,0,0,0.610974 -24966,1010:239,109,3,0,0,0.624174 -24967,1011:130,110,3,0,0,0.637476 -24968,1011:131,111,3,0,0,0.645134 -24969,1011:132,112,3,0,0,0.64605 -24970,1011:133,113,3,0,0,0.647435 -24971,1011:134,114,3,0,0,0.648302 -24972,1011:235,115,3,0,0,0.649964 -24973,1011:236,116,3,0,0,0.652228 -24974,1011:237,117,3,0,0,0.65288 -24975,1011:238,118,3,0,0,0.653438 -24976,1011:239,119,3,0,0,0.650758 -24977,1012:130,120,3,0,0,0.647505 -24978,1012:131,121,3,0,0,0.644616 -24979,1012:132,122,3,0,0,0.646332 -24980,1012:133,123,3,0,0,0.629293 -24981,1012:237,127,3,0,0,0.647083 -24982,1012:238,128,3,0,0,0.655391 -24983,1012:239,129,3,0,0,0.658239 -24984,1013:130,130,3,0,0,0.658978 -24985,1013:131,131,3,0,0,0.658794 -24986,1013:132,132,3,0,0,0.658655 -24987,1013:133,133,3,0,0,0.658563 -24988,1013:134,134,3,0,0,0.658447 -24989,1013:235,135,3,0,0,0.659555 -24990,1013:236,136,3,0,0,0.6628 -24991,1013:237,137,3,0,0,0.663833 -24992,1013:238,138,3,0,0,0.664658 -24993,1013:239,139,3,0,0,0.659624 -24994,1014:130,140,3,0,0,0.657846 -24995,1014:131,141,3,0,0,0.658516 -24996,1014:132,142,3,0,0,0.658493 -24997,1014:133,143,3,0,0,0.658401 -24998,1014:134,144,3,0,0,0.658771 -24999,1014:235,145,3,0,0,0.658955 -25000,1014:236,146,3,0,0,0.66149 -25001,1014:237,147,3,0,0,0.663305 -25002,1014:238,148,3,0,0,0.664246 -25003,1014:239,149,3,0,0,0.663191 -25004,1015:130,150,3,0,0,0.665184 -25005,1015:131,151,3,0,0,0.665734 -25006,1015:132,152,3,0,0,0.666008 -25007,1015:133,153,3,0,0,0.666442 -25008,1015:134,154,3,0,0,0.666031 -25009,1015:235,155,3,0,0,0.664795 -25010,1015:236,156,3,0,0,0.663948 -25011,1015:237,157,3,0,0,0.662984 -25012,1015:238,158,3,0,0,0.660915 -25013,1015:239,159,3,0,0,0.661076 -25014,1016:130,160,3,0,0,0.662157 -25015,1016:131,161,3,0,0,0.661214 -25016,1016:132,162,3,0,0,0.659186 -25017,1016:133,163,3,0,0,0.657869 -25018,1016:134,164,3,0,0,0.657499 -25019,1016:235,165,3,0,0,0.657291 -25020,1016:236,166,3,0,0,0.657892 -25021,1016:237,167,3,0,0,0.65847 -25022,1016:238,168,3,0,0,0.658724 -25023,1016:239,169,3,0,0,0.651528 -25024,1017:130,170,3,0,0,0.651389 -25025,1017:131,171,3,0,0,0.655599 -25026,1017:132,172,3,0,0,0.644451 -25027,1017:133,173,3,0,0,0.647834 -25028,1017:134,174,3,0,0,0.653531 -25029,1017:235,175,3,0,0,0.657268 -25030,1017:236,176,3,0,0,0.657106 -25031,1017:237,177,3,0,0,0.652088 -25032,1017:238,178,3,0,0,0.643603 -25033,1017:239,179,3,0,0,0.644545 -25034,1018:130,180,3,0,0,0.648841 -25035,7018:140,-180,4,0,0,0.638307 -25036,7017:249,-179,4,0,0,0.637452 -25037,7017:248,-178,4,0,0,0.636835 -25038,7017:247,-177,4,0,0,0.637238 -25039,7017:246,-176,4,0,0,0.635812 -25040,7017:245,-175,4,0,0,0.634384 -25041,7017:144,-174,4,0,0,0.63436 -25042,7017:143,-173,4,0,0,0.634717 -25043,7017:142,-172,4,0,0,0.63486 -25044,7017:141,-171,4,0,0,0.63374 -25045,7017:140,-170,4,0,0,0.630682 -25046,7016:249,-169,4,0,0,0.62759 -25047,7016:248,-168,4,0,0,0.62622 -25048,7016:247,-167,4,0,0,0.626412 -25049,7016:246,-166,4,0,0,0.628166 -25050,7016:245,-165,4,0,0,0.629197 -25051,7016:144,-164,4,0,0,0.63018 -25052,7016:143,-163,4,0,0,0.629844 -25053,7016:142,-162,4,0,0,0.629269 -25054,7016:141,-161,4,0,0,0.628357 -25055,7016:140,-160,4,0,0,0.626028 -25056,7015:249,-159,4,0,0,0.624222 -25057,7015:248,-158,4,0,0,0.623643 -25058,7015:247,-157,4,0,0,0.622243 -25059,7015:246,-156,4,0,0,0.623547 -25060,7015:245,-155,4,0,0,0.626725 -25061,7015:144,-154,4,0,0,0.627349 -25062,7015:143,-153,4,0,0,0.624391 -25063,7015:142,-152,4,0,0,0.620285 -25064,7015:141,-151,4,0,0,0.61842 -25065,7015:140,-150,4,0,0,0.618832 -25066,7014:249,-149,4,0,0,0.619244 -25067,7014:248,-148,4,0,0,0.618541 -25068,7014:247,-147,4,0,0,0.61859 -25069,7014:246,-146,4,0,0,0.619462 -25070,7014:245,-145,4,0,0,0.618978 -25071,7014:144,-144,4,0,0,0.614485 -25072,7014:143,-143,4,0,0,0.607721 -25073,7014:142,-142,4,0,0,0.607451 -25074,7014:141,-141,4,0,0,0.611096 -25075,7014:140,-140,4,0,0,0.617231 -25076,7013:249,-139,4,0,0,0.620575 -25077,7013:248,-138,4,0,0,0.621978 -25078,7013:247,-137,4,0,0,0.620696 -25079,7013:246,-136,4,0,0,0.618905 -25080,7013:245,-135,4,0,0,0.618686 -25081,7013:144,-134,4,0,0,0.618735 -25082,7013:143,-133,4,0,0,0.618274 -25083,7013:142,-132,4,0,0,0.61728 -25084,7013:141,-131,4,0,0,0.619777 -25085,7013:140,-130,4,0,0,0.624174 -25086,7012:249,-129,4,0,0,0.624848 -25087,7012:248,-128,4,0,0,0.623426 -25088,7012:247,-127,4,0,0,0.622823 -25089,7012:246,-126,4,0,0,0.624463 -25090,7012:245,-125,4,0,0,0.627637 -25091,7012:144,-124,4,0,0,0.63128 -25092,7012:143,-123,4,0,0,0.633573 -25093,7012:142,-122,4,0,0,0.634431 -25094,7012:141,-121,4,0,0,0.635217 -25095,7012:140,-120,4,0,0,0.636526 -25096,7011:249,-119,4,0,0,0.637452 -25097,7011:248,-118,4,0,0,0.637096 -25098,7011:247,-117,4,0,0,0.635883 -25099,7011:246,-116,4,0,0,0.634622 -25100,7011:245,-115,4,0,0,0.633645 -25101,7011:144,-114,4,0,0,0.633239 -25102,7011:143,-113,4,0,0,0.63343 -25103,7011:142,-112,4,0,0,0.632977 -25104,7011:141,-111,4,0,0,0.631495 -25105,7011:140,-110,4,0,0,0.630849 -25106,7010:249,-109,4,0,0,0.630802 -25107,7010:248,-108,4,0,0,0.631352 -25108,7010:247,-107,4,0,0,0.634455 -25109,7010:246,-106,4,0,0,0.636906 -25110,7010:245,-105,4,0,0,0.633811 -25111,7010:144,-104,4,0,0,0.6267 -25112,7010:143,-103,4,0,0,0.622388 -25113,7010:142,-102,4,0,0,0.619656 -25114,7010:141,-101,4,0,0,0.616867 -25115,7010:140,-100,4,0,0,0.613437 -25116,7009:249,-99,4,0,0,0.613706 -25117,7009:248,-98,4,0,0,0.614996 -25118,7009:247,-97,4,0,0,0.617328 -25119,7009:246,-96,4,0,0,0.619825 -25120,7009:245,-95,4,0,0,0.622388 -25121,7009:144,-94,4,0,0,0.625209 -25122,7009:143,-93,4,0,0,0.622847 -25123,7009:142,-92,4,0,0,0.622074 -25124,7009:141,-91,4,0,0,0.618177 -25125,7009:140,-90,4,0,0,0.612731 -25126,7008:249,-89,4,0,0,0.620648 -25127,7008:248,-88,4,0,0,0.629533 -25128,7008:247,-87,4,0,0,0.638733 -25129,7008:246,-86,4,0,0,0.657453 -25130,7008:245,-85,4,0,0,0.656573 -25131,7008:142,-82,4,0,0,0.639492 -25132,7008:141,-81,4,0,0,0.635859 -25133,7008:140,-80,4,0,0,0.641172 -25134,7007:249,-79,4,0,0,0.642919 -25135,7007:248,-78,4,0,0,0.644216 -25136,7007:247,-77,4,0,0,0.653206 -25137,7007:246,-76,4,0,0,0.648326 -25138,7006:141,-61,4,0,0,0.623088 -25139,7006:140,-60,4,0,0,0.623812 -25140,7005:249,-59,4,0,0,0.627782 -25141,7005:248,-58,4,0,0,0.630634 -25142,7005:247,-57,4,0,0,0.631185 -25143,7005:246,-56,4,0,0,0.630849 -25144,7005:245,-55,4,0,0,0.631352 -25145,7005:144,-54,4,0,0,0.629533 -25146,7005:143,-53,4,0,0,0.629748 -25147,7005:142,-52,4,0,0,0.629149 -25148,7005:141,-51,4,0,0,0.630323 -25149,7005:140,-50,4,0,0,0.629964 -25150,7004:249,-49,4,0,0,0.629245 -25151,7004:248,-48,4,0,0,0.627517 -25152,7004:247,-47,4,0,0,0.626244 -25153,7004:246,-46,4,0,0,0.625113 -25154,7004:245,-45,4,0,0,0.623643 -25155,7004:144,-44,4,0,0,0.623233 -25156,7004:143,-43,4,0,0,0.623137 -25157,7004:142,-42,4,0,0,0.620769 -25158,7004:141,-41,4,0,0,0.618663 -25159,7004:140,-40,4,0,0,0.61745 -25160,7003:249,-39,4,0,0,0.61626 -25161,7003:248,-38,4,0,0,0.612902 -25162,7003:247,-37,4,0,0,0.607893 -25163,7003:246,-36,4,0,0,0.609606 -25164,7003:245,-35,4,0,0,0.608774 -25165,7003:144,-34,4,0,0,0.60657 -25166,7003:143,-33,4,0,0,0.609972 -25167,7003:142,-32,4,0,0,0.610241 -25168,7003:141,-31,4,0,0,0.610387 -25169,7003:140,-30,4,0,0,0.608652 -25170,7002:249,-29,4,0,0,0.611706 -25171,7002:248,-28,4,0,0,0.614217 -25172,7002:247,-27,4,0,0,0.61485 -25173,7002:246,-26,4,0,0,0.614947 -25174,7002:245,-25,4,0,0,0.616746 -25175,7002:144,-24,4,0,0,0.618541 -25176,7002:143,-23,4,0,0,0.622895 -25177,7002:142,-22,4,0,0,0.631304 -25178,7002:141,-21,4,0,0,0.634884 -25179,7002:140,-20,4,0,0,0.637571 -25180,7001:249,-19,4,0,0,0.64214 -25181,7001:248,-18,4,0,0,0.647083 -25182,7001:247,-17,4,0,0,0.648935 -25183,7001:246,-16,4,0,0,0.652181 -25184,7001:245,-15,4,0,0,0.655831 -25185,7001:144,-14,4,0,0,0.675199 -25186,1005:141,51,4,0,0,0.619317 -25187,1005:142,52,4,0,0,0.618177 -25188,1005:143,53,4,0,0,0.617134 -25189,1005:144,54,4,0,0,0.615726 -25190,1005:245,55,4,0,0,0.622847 -25191,1005:246,56,4,0,0,0.627829 -25192,1005:247,57,4,0,0,0.625787 -25193,1005:248,58,4,0,0,0.629581 -25194,1005:249,59,4,0,0,0.637381 -25195,1006:140,60,4,0,0,0.641337 -25196,1006:141,61,4,0,0,0.638235 -25197,1006:142,62,4,0,0,0.637238 -25198,1006:143,63,4,0,0,0.638116 -25199,1006:144,64,4,0,0,0.638805 -25200,1006:245,65,4,0,0,0.642259 -25201,1006:246,66,4,0,0,0.643179 -25202,1006:247,67,4,0,0,0.64405 -25203,1006:248,68,4,0,0,0.645933 -25204,1006:249,69,4,0,0,0.648817 -25205,1007:140,70,4,0,0,0.651411 -25206,1007:141,71,4,0,0,0.652717 -25207,1007:142,72,4,0,0,0.652461 -25208,1007:144,74,4,0,0,0.649005 -25209,1007:245,75,4,0,0,0.648091 -25210,1007:246,76,4,0,0,0.649075 -25211,1008:140,80,4,0,0,0.629581 -25212,1008:141,81,4,0,0,0.62807 -25213,1008:142,82,4,0,0,0.629101 -25214,1008:143,83,4,0,0,0.638188 -25215,1008:144,84,4,0,0,0.640415 -25216,1008:245,85,4,0,0,0.642046 -25217,1008:246,86,4,0,0,0.642636 -25218,1008:247,87,4,0,0,0.643438 -25219,1008:248,88,4,0,0,0.643344 -25220,1008:249,89,4,0,0,0.643414 -25221,1009:140,90,4,0,0,0.643768 -25222,1009:141,91,4,0,0,0.643697 -25223,1009:142,92,4,0,0,0.642802 -25224,1009:143,93,4,0,0,0.643084 -25225,1009:144,94,4,0,0,0.643461 -25226,1009:245,95,4,0,0,0.644922 -25227,1009:246,96,4,0,0,0.646191 -25228,1009:247,97,4,0,0,0.647013 -25229,1009:248,98,4,0,0,0.649473 -25230,1010:140,100,4,0,0,0.640841 -25231,1010:141,101,4,0,0,0.641597 -25232,1010:142,102,4,0,0,0.64077 -25233,1010:143,103,4,0,0,0.63852 -25234,1010:144,104,4,0,0,0.630443 -25235,1010:245,105,4,0,0,0.623643 -25236,1010:247,107,4,0,0,0.60728 -25237,1010:248,108,4,0,0,0.601458 -25238,1010:249,109,4,0,0,0.612658 -25239,1011:140,110,4,0,0,0.631089 -25240,1011:141,111,4,0,0,0.639468 -25241,1011:142,112,4,0,0,0.64077 -25242,1011:143,113,4,0,0,0.639752 -25243,1011:144,114,4,0,0,0.643532 -25244,1011:245,115,4,0,0,0.648162 -25245,1011:246,116,4,0,0,0.64863 -25246,1011:247,117,4,0,0,0.649613 -25247,1011:248,118,4,0,0,0.648091 -25248,1012:140,120,4,0,0,0.644286 -25249,1012:141,121,4,0,0,0.642424 -25250,1012:142,122,4,0,0,0.64051 -25251,1012:144,124,4,0,0,0.639089 -25252,1012:245,125,4,0,0,0.629029 -25253,1012:246,126,4,0,0,0.635979 -25254,1012:247,127,4,0,0,0.644922 -25255,1012:248,128,4,0,0,0.651131 -25256,1012:249,129,4,0,0,0.653531 -25257,1013:140,130,4,0,0,0.654299 -25258,1013:141,131,4,0,0,0.654694 -25259,1013:142,132,4,0,0,0.655019 -25260,1013:143,133,4,0,0,0.656016 -25261,1013:144,134,4,0,0,0.657962 -25262,1013:245,135,4,0,0,0.659994 -25263,1013:246,136,4,0,0,0.659786 -25264,1013:247,137,4,0,0,0.659394 -25265,1013:248,138,4,0,0,0.659786 -25266,1013:249,139,4,0,0,0.656897 -25267,1014:140,140,4,0,0,0.654856 -25268,1014:141,141,4,0,0,0.655901 -25269,1014:142,142,4,0,0,0.655437 -25270,1014:143,143,4,0,0,0.654903 -25271,1014:144,144,4,0,0,0.655808 -25272,1014:245,145,4,0,0,0.65736 -25273,1014:246,146,4,0,0,0.658978 -25274,1014:247,147,4,0,0,0.660408 -25275,1014:248,148,4,0,0,0.66103 -25276,1014:249,149,4,0,0,0.66126 -25277,1015:140,150,4,0,0,0.659947 -25278,1015:141,151,4,0,0,0.662732 -25279,1015:142,152,4,0,0,0.662892 -25280,1015:143,153,4,0,0,0.66172 -25281,1015:144,154,4,0,0,0.660132 -25282,1015:245,155,4,0,0,0.65914 -25283,1015:246,156,4,0,0,0.658077 -25284,1015:247,157,4,0,0,0.6578 -25285,1015:248,158,4,0,0,0.657407 -25286,1015:249,159,4,0,0,0.65655 -25287,1016:140,160,4,0,0,0.655413 -25288,1016:141,161,4,0,0,0.654043 -25289,1016:142,162,4,0,0,0.65281 -25290,1016:143,163,4,0,0,0.652088 -25291,1016:144,164,4,0,0,0.651855 -25292,1016:245,165,4,0,0,0.651738 -25293,1016:246,166,4,0,0,0.649426 -25294,1016:247,167,4,0,0,0.649706 -25295,1016:248,168,4,0,0,0.645698 -25296,1016:249,169,4,0,0,0.645556 -25297,1017:140,170,4,0,0,0.643603 -25298,1017:141,171,4,0,0,0.642848 -25299,1017:142,172,4,0,0,0.643202 -25300,1017:143,173,4,0,0,0.643932 -25301,1017:144,174,4,0,0,0.64431 -25302,1017:245,175,4,0,0,0.642919 -25303,1017:246,176,4,0,0,0.63871 -25304,1017:247,177,4,0,0,0.635717 -25305,1017:248,178,4,0,0,0.635812 -25306,1017:249,179,4,0,0,0.637381 -25307,1018:140,180,4,0,0,0.638307 -25308,7018:350,-180,5,0,0,0.630418 -25309,7017:459,-179,5,0,0,0.629988 -25310,7017:458,-178,5,0,0,0.628861 -25311,7017:457,-177,5,0,0,0.62819 -25312,7017:456,-176,5,0,0,0.627614 -25313,7017:455,-175,5,0,0,0.626869 -25314,7017:354,-174,5,0,0,0.626629 -25315,7017:353,-173,5,0,0,0.626461 -25316,7017:352,-172,5,0,0,0.625498 -25317,7017:351,-171,5,0,0,0.623571 -25318,7017:350,-170,5,0,0,0.622026 -25319,7016:459,-169,5,0,0,0.621204 -25320,7016:458,-168,5,0,0,0.621639 -25321,7016:457,-167,5,0,0,0.622702 -25322,7016:456,-166,5,0,0,0.622847 -25323,7016:455,-165,5,0,0,0.621881 -25324,7016:354,-164,5,0,0,0.619971 -25325,7016:353,-163,5,0,0,0.617984 -25326,7016:352,-162,5,0,0,0.616187 -25327,7016:351,-161,5,0,0,0.615677 -25328,7016:350,-160,5,0,0,0.61502 -25329,7015:459,-159,5,0,0,0.614485 -25330,7015:458,-158,5,0,0,0.61317 -25331,7015:457,-157,5,0,0,0.612389 -25332,7015:456,-156,5,0,0,0.613023 -25333,7015:455,-155,5,0,0,0.615093 -25334,7015:354,-154,5,0,0,0.615895 -25335,7015:353,-153,5,0,0,0.615579 -25336,7015:352,-152,5,0,0,0.615069 -25337,7015:351,-151,5,0,0,0.613535 -25338,7015:350,-150,5,0,0,0.611292 -25339,7014:459,-149,5,0,0,0.60892 -25340,7014:458,-148,5,0,0,0.607501 -25341,7014:457,-147,5,0,0,0.606912 -25342,7014:456,-146,5,0,0,0.60522 -25343,7014:455,-145,5,0,0,0.603525 -25344,7014:354,-144,5,0,0,0.602885 -25345,7014:353,-143,5,0,0,0.602665 -25346,7014:352,-142,5,0,0,0.603328 -25347,7014:351,-141,5,0,0,0.603942 -25348,7014:350,-140,5,0,0,0.601015 -25349,7013:459,-139,5,0,0,0.598474 -25350,7013:458,-138,5,0,0,0.598104 -25351,7013:457,-137,5,0,0,0.601384 -25352,7013:456,-136,5,0,0,0.604311 -25353,7013:455,-135,5,0,0,0.606888 -25354,7013:354,-134,5,0,0,0.60826 -25355,7013:353,-133,5,0,0,0.605367 -25356,7013:352,-132,5,0,0,0.60323 -25357,7013:351,-131,5,0,0,0.607207 -25358,7013:350,-130,5,0,0,0.611194 -25359,7012:459,-129,5,0,0,0.612706 -25360,7012:458,-128,5,0,0,0.612877 -25361,7012:457,-127,5,0,0,0.613803 -25362,7012:456,-126,5,0,0,0.617134 -25363,7012:455,-125,5,0,0,0.620865 -25364,7012:354,-124,5,0,0,0.623523 -25365,7012:353,-123,5,0,0,0.625306 -25366,7012:352,-122,5,0,0,0.626941 -25367,7012:351,-121,5,0,0,0.629005 -25368,7012:350,-120,5,0,0,0.629317 -25369,7011:459,-119,5,0,0,0.628981 -25370,7011:458,-118,5,0,0,0.628022 -25371,7011:457,-117,5,0,0,0.627302 -25372,7011:456,-116,5,0,0,0.627061 -25373,7011:455,-115,5,0,0,0.626989 -25374,7011:354,-114,5,0,0,0.628237 -25375,7011:353,-113,5,0,0,0.629149 -25376,7011:352,-112,5,0,0,0.629964 -25377,7011:351,-111,5,0,0,0.630825 -25378,7011:350,-110,5,0,0,0.631878 -25379,7010:459,-109,5,0,0,0.632379 -25380,7010:458,-108,5,0,0,0.635455 -25381,7010:457,-107,5,0,0,0.639184 -25382,7010:456,-106,5,0,0,0.642825 -25383,7010:455,-105,5,0,0,0.6424 -25384,7010:354,-104,5,0,0,0.637404 -25385,7010:353,-103,5,0,0,0.630275 -25386,7010:352,-102,5,0,0,0.626532 -25387,7010:351,-101,5,0,0,0.625859 -25388,7010:350,-100,5,0,0,0.622219 -25389,7009:459,-99,5,0,0,0.613925 -25390,7009:458,-98,5,0,0,0.612926 -25391,7009:457,-97,5,0,0,0.61711 -25392,7009:456,-96,5,0,0,0.616211 -25393,7009:455,-95,5,0,0,0.626124 -25394,7009:354,-94,5,0,0,0.628622 -25395,7009:353,-93,5,0,0,0.62759 -25396,7009:352,-92,5,0,0,0.62994 -25397,7009:351,-91,5,0,0,0.626268 -25398,7009:350,-90,5,0,0,0.626052 -25399,7008:459,-89,5,0,0,0.6267 -25400,7008:458,-88,5,0,0,0.630418 -25401,7008:457,-87,5,0,0,0.641195 -25402,7008:456,-86,5,0,0,0.645956 -25403,7008:353,-83,5,0,0,0.63517 -25404,7008:352,-82,5,0,0,0.629197 -25405,7008:351,-81,5,0,0,0.629677 -25406,7008:350,-80,5,0,0,0.62994 -25407,7007:459,-79,5,0,0,0.63455 -25408,7007:458,-78,5,0,0,0.641054 -25409,7007:457,-77,5,0,0,0.646708 -25410,7007:456,-76,5,0,0,0.64605 -25411,7007:455,-75,5,0,0,0.629005 -25412,7007:351,-71,5,0,0,0.632451 -25413,7006:458,-68,5,0,0,0.599141 -25414,7006:457,-67,5,0,0,0.607819 -25415,7006:456,-66,5,0,0,0.610925 -25416,7006:455,-65,5,0,0,0.615726 -25417,7006:354,-64,5,0,0,0.603451 -25418,7006:353,-63,5,0,0,0.602885 -25419,7006:352,-62,5,0,0,0.618566 -25420,7006:351,-61,5,0,0,0.625281 -25421,7006:350,-60,5,0,0,0.629844 -25422,7005:459,-59,5,0,0,0.631256 -25423,7005:458,-58,5,0,0,0.631065 -25424,7005:457,-57,5,0,0,0.629916 -25425,7005:456,-56,5,0,0,0.630443 -25426,7005:455,-55,5,0,0,0.63006 -25427,7005:354,-54,5,0,0,0.629988 -25428,7005:353,-53,5,0,0,0.627998 -25429,7005:352,-52,5,0,0,0.628094 -25430,7005:351,-51,5,0,0,0.62843 -25431,7005:350,-50,5,0,0,0.627061 -25432,7004:459,-49,5,0,0,0.624993 -25433,7004:458,-48,5,0,0,0.619631 -25434,7004:457,-47,5,0,0,0.616503 -25435,7004:456,-46,5,0,0,0.61502 -25436,7004:455,-45,5,0,0,0.614095 -25437,7004:354,-44,5,0,0,0.614606 -25438,7004:353,-43,5,0,0,0.613778 -25439,7004:352,-42,5,0,0,0.608897 -25440,7004:351,-41,5,0,0,0.605736 -25441,7004:350,-40,5,0,0,0.606888 -25442,7003:459,-39,5,0,0,0.606766 -25443,7003:458,-38,5,0,0,0.603402 -25444,7003:457,-37,5,0,0,0.600349 -25445,7003:456,-36,5,0,0,0.598104 -25446,7003:455,-35,5,0,0,0.597857 -25447,7003:354,-34,5,0,0,0.598104 -25448,7003:353,-33,5,0,0,0.600966 -25449,7003:352,-32,5,0,0,0.599955 -25450,7003:351,-31,5,0,0,0.597857 -25451,7003:350,-30,5,0,0,0.599066 -25452,7002:459,-29,5,0,0,0.602197 -25453,7002:458,-28,5,0,0,0.604361 -25454,7002:457,-27,5,0,0,0.605343 -25455,7002:456,-26,5,0,0,0.607329 -25456,7002:455,-25,5,0,0,0.607819 -25457,7002:354,-24,5,0,0,0.611121 -25458,7002:353,-23,5,0,0,0.617353 -25459,7002:352,-22,5,0,0,0.619293 -25460,7002:351,-21,5,0,0,0.621156 -25461,7002:350,-20,5,0,0,0.63128 -25462,7001:459,-19,5,0,0,0.631782 -25463,7001:458,-18,5,0,0,0.635503 -25464,7001:457,-17,5,0,0,0.645134 -25465,7001:456,-16,5,0,0,0.657175 -25466,1004:354,44,5,0,0,0.598104 -25467,1004:455,45,5,0,0,0.59998 -25468,1004:456,46,5,0,0,0.59719 -25469,1004:457,47,5,0,0,0.589729 -25470,1005:351,51,5,0,0,0.599757 -25471,1005:352,52,5,0,0,0.614461 -25472,1005:353,53,5,0,0,0.614071 -25473,1005:354,54,5,0,0,0.614169 -25474,1005:455,55,5,0,0,0.614387 -25475,1005:456,56,5,0,0,0.615774 -25476,1005:457,57,5,0,0,0.616455 -25477,1005:458,58,5,0,0,0.616867 -25478,1005:459,59,5,0,0,0.623981 -25479,1006:350,60,5,0,0,0.629533 -25480,1006:351,61,5,0,0,0.629988 -25481,1006:352,62,5,0,0,0.63331 -25482,1006:353,63,5,0,0,0.636574 -25483,1006:354,64,5,0,0,0.636977 -25484,1006:455,65,5,0,0,0.638852 -25485,1006:456,66,5,0,0,0.639326 -25486,1006:457,67,5,0,0,0.639776 -25487,1006:458,68,5,0,0,0.641148 -25488,1006:459,69,5,0,0,0.645204 -25489,1007:350,70,5,0,0,0.648677 -25490,1007:351,71,5,0,0,0.650804 -25491,1007:352,72,5,0,0,0.651924 -25492,1007:354,74,5,0,0,0.652321 -25493,1007:455,75,5,0,0,0.651738 -25494,1007:456,76,5,0,0,0.652158 -25495,1008:351,81,5,0,0,0.616308 -25496,1008:352,82,5,0,0,0.628694 -25497,1008:353,83,5,0,0,0.635432 -25498,1008:354,84,5,0,0,0.633883 -25499,1008:455,85,5,0,0,0.639752 -25500,1008:456,86,5,0,0,0.641952 -25501,1008:457,87,5,0,0,0.642754 -25502,1008:458,88,5,0,0,0.64372 -25503,1008:459,89,5,0,0,0.644851 -25504,1009:350,90,5,0,0,0.644639 -25505,1009:351,91,5,0,0,0.644404 -25506,1009:352,92,5,0,0,0.644568 -25507,1009:353,93,5,0,0,0.64565 -25508,1009:354,94,5,0,0,0.643697 -25509,1009:455,95,5,0,0,0.643273 -25510,1009:456,96,5,0,0,0.64398 -25511,1009:457,97,5,0,0,0.644522 -25512,1009:458,98,5,0,0,0.646121 -25513,1010:350,100,5,0,0,0.637238 -25514,1010:351,101,5,0,0,0.63788 -25515,1010:352,102,5,0,0,0.641432 -25516,1010:353,103,5,0,0,0.636502 -25517,1010:459,109,5,0,0,0.598005 -25518,1011:350,110,5,0,0,0.615531 -25519,1011:351,111,5,0,0,0.631591 -25520,1011:352,112,5,0,0,0.634979 -25521,1011:353,113,5,0,0,0.626893 -25522,1011:354,114,5,0,0,0.632666 -25523,1011:455,115,5,0,0,0.642848 -25524,1011:456,116,5,0,0,0.646309 -25525,1011:457,117,5,0,0,0.644216 -25526,1011:458,118,5,0,0,0.647786 -25527,1011:459,119,5,0,0,0.644545 -25528,1012:350,120,5,0,0,0.641243 -25529,1012:351,121,5,0,0,0.639776 -25530,1012:352,122,5,0,0,0.637333 -25531,1012:354,124,5,0,0,0.639586 -25532,1012:456,126,5,0,0,0.633287 -25533,1012:457,127,5,0,0,0.642117 -25534,1012:458,128,5,0,0,0.647036 -25535,1012:459,129,5,0,0,0.6498 -25536,1013:350,130,5,0,0,0.651762 -25537,1013:351,131,5,0,0,0.653206 -25538,1013:352,132,5,0,0,0.654113 -25539,1013:353,133,5,0,0,0.654949 -25540,1013:354,134,5,0,0,0.656526 -25541,1013:455,135,5,0,0,0.657892 -25542,1013:456,136,5,0,0,0.655158 -25543,1013:457,137,5,0,0,0.65409 -25544,1013:458,138,5,0,0,0.653462 -25545,1013:459,139,5,0,0,0.652368 -25546,1014:350,140,5,0,0,0.652274 -25547,1014:351,141,5,0,0,0.652274 -25548,1014:352,142,5,0,0,0.652111 -25549,1014:353,143,5,0,0,0.651902 -25550,1014:354,144,5,0,0,0.651878 -25551,1014:455,145,5,0,0,0.652437 -25552,1014:456,146,5,0,0,0.653438 -25553,1014:457,147,5,0,0,0.654415 -25554,1014:458,148,5,0,0,0.654996 -25555,1014:459,149,5,0,0,0.655274 -25556,1015:350,150,5,0,0,0.655669 -25557,1015:351,151,5,0,0,0.655715 -25558,1015:352,152,5,0,0,0.655182 -25559,1015:353,153,5,0,0,0.654206 -25560,1015:354,154,5,0,0,0.653508 -25561,1015:455,155,5,0,0,0.653602 -25562,1015:456,156,5,0,0,0.653648 -25563,1015:457,157,5,0,0,0.652973 -25564,1015:458,158,5,0,0,0.652321 -25565,1015:459,159,5,0,0,0.651085 -25566,1016:350,160,5,0,0,0.649028 -25567,1016:351,161,5,0,0,0.646872 -25568,1016:352,162,5,0,0,0.64372 -25569,1016:353,163,5,0,0,0.643674 -25570,1016:354,164,5,0,0,0.644333 -25571,1016:455,165,5,0,0,0.643061 -25572,1016:456,166,5,0,0,0.640297 -25573,1016:458,168,5,0,0,0.636478 -25574,1016:459,169,5,0,0,0.638212 -25575,1017:351,171,5,0,0,0.63636 -25576,1017:352,172,5,0,0,0.635883 -25577,1017:353,173,5,0,0,0.634479 -25578,1017:354,174,5,0,0,0.632929 -25579,1017:455,175,5,0,0,0.63226 -25580,1017:456,176,5,0,0,0.631997 -25581,1017:457,177,5,0,0,0.630898 -25582,1017:458,178,5,0,0,0.629892 -25583,1017:459,179,5,0,0,0.629964 -25584,1018:350,180,5,0,0,0.630418 -25585,7018:360,-180,6,0,0,0.624077 -25586,7017:469,-179,6,0,0,0.623691 -25587,7017:468,-178,6,0,0,0.623547 -25588,7017:467,-177,6,0,0,0.623787 -25589,7017:466,-176,6,0,0,0.623691 -25590,7017:465,-175,6,0,0,0.622944 -25591,7017:364,-174,6,0,0,0.62176 -25592,7017:363,-173,6,0,0,0.620575 -25593,7017:362,-172,6,0,0,0.619753 -25594,7017:361,-171,6,0,0,0.619026 -25595,7017:360,-170,6,0,0,0.617717 -25596,7016:469,-169,6,0,0,0.617305 -25597,7016:468,-168,6,0,0,0.617134 -25598,7016:467,-167,6,0,0,0.614461 -25599,7016:466,-166,6,0,0,0.611389 -25600,7016:465,-165,6,0,0,0.609826 -25601,7016:364,-164,6,0,0,0.608994 -25602,7016:363,-163,6,0,0,0.609141 -25603,7016:362,-162,6,0,0,0.608652 -25604,7016:361,-161,6,0,0,0.607746 -25605,7016:360,-160,6,0,0,0.607256 -25606,7015:469,-159,6,0,0,0.606668 -25607,7015:468,-158,6,0,0,0.605417 -25608,7015:467,-157,6,0,0,0.604238 -25609,7015:466,-156,6,0,0,0.60495 -25610,7015:465,-155,6,0,0,0.607893 -25611,7015:364,-154,6,0,0,0.61007 -25612,7015:363,-153,6,0,0,0.608481 -25613,7015:362,-152,6,0,0,0.604975 -25614,7015:361,-151,6,0,0,0.603771 -25615,7015:360,-150,6,0,0,0.605319 -25616,7014:469,-149,6,0,0,0.604778 -25617,7014:468,-148,6,0,0,0.602443 -25618,7014:467,-147,6,0,0,0.600374 -25619,7014:466,-146,6,0,0,0.599609 -25620,7014:465,-145,6,0,0,0.597362 -25621,7014:364,-144,6,0,0,0.59484 -25622,7014:363,-143,6,0,0,0.593031 -25623,7014:362,-142,6,0,0,0.593601 -25624,7014:361,-141,6,0,0,0.596225 -25625,7014:360,-140,6,0,0,0.595359 -25626,7013:469,-139,6,0,0,0.590797 -25627,7013:468,-138,6,0,0,0.587714 -25628,7013:467,-137,6,0,0,0.591616 -25629,7013:466,-136,6,0,0,0.593873 -25630,7013:465,-135,6,0,0,0.594765 -25631,7013:364,-134,6,0,0,0.596053 -25632,7013:363,-133,6,0,0,0.598499 -25633,7013:362,-132,6,0,0,0.599881 -25634,7013:361,-131,6,0,0,0.598005 -25635,7013:360,-130,6,0,0,0.597165 -25636,7012:469,-129,6,0,0,0.597956 -25637,7012:468,-128,6,0,0,0.601138 -25638,7012:467,-127,6,0,0,0.607476 -25639,7012:466,-126,6,0,0,0.613194 -25640,7012:465,-125,6,0,0,0.616065 -25641,7012:364,-124,6,0,0,0.61762 -25642,7012:363,-123,6,0,0,0.619341 -25643,7012:362,-122,6,0,0,0.620865 -25644,7012:361,-121,6,0,0,0.622219 -25645,7012:360,-120,6,0,0,0.622678 -25646,7011:469,-119,6,0,0,0.622171 -25647,7011:468,-118,6,0,0,0.621325 -25648,7011:467,-117,6,0,0,0.621446 -25649,7011:466,-116,6,0,0,0.622122 -25650,7011:465,-115,6,0,0,0.623908 -25651,7011:364,-114,6,0,0,0.626725 -25652,7011:363,-113,6,0,0,0.629461 -25653,7011:362,-112,6,0,0,0.631424 -25654,7011:361,-111,6,0,0,0.631902 -25655,7011:360,-110,6,0,0,0.632164 -25656,7010:469,-109,6,0,0,0.632905 -25657,7010:468,-108,6,0,0,0.634336 -25658,7010:467,-107,6,0,0,0.637832 -25659,7010:466,-106,6,0,0,0.641314 -25660,7010:465,-105,6,0,0,0.642259 -25661,7010:364,-104,6,0,0,0.638733 -25662,7010:363,-103,6,0,0,0.634789 -25663,7010:362,-102,6,0,0,0.634336 -25664,7010:361,-101,6,0,0,0.642447 -25665,7010:360,-100,6,0,0,0.643792 -25666,7009:469,-99,6,0,0,0.63674 -25667,7009:468,-98,6,0,0,0.642259 -25668,7009:467,-97,6,0,0,0.622871 -25669,7009:466,-96,6,0,0,0.611219 -25670,7009:465,-95,6,0,0,0.624848 -25671,7009:364,-94,6,0,0,0.642542 -25672,7009:363,-93,6,0,0,0.641125 -25673,7009:362,-92,6,0,0,0.640486 -25674,7009:361,-91,6,0,0,0.639965 -25675,7009:360,-90,6,0,0,0.649496 -25676,7008:469,-89,6,0,0,0.647412 -25677,7008:468,-88,6,0,0,0.643956 -25678,7008:363,-83,6,0,0,0.632785 -25679,7008:362,-82,6,0,0,0.635027 -25680,7008:361,-81,6,0,0,0.63424 -25681,7008:360,-80,6,0,0,0.637167 -25682,7007:469,-79,6,0,0,0.638544 -25683,7007:468,-78,6,0,0,0.637096 -25684,7007:467,-77,6,0,0,0.634789 -25685,7007:466,-76,6,0,0,0.632881 -25686,7007:465,-75,6,0,0,0.630418 -25687,7007:364,-74,6,0,0,0.626268 -25688,7007:363,-73,6,0,0,0.62557 -25689,7007:362,-72,6,0,0,0.61694 -25690,7007:361,-71,6,0,0,0.610999 -25691,7006:469,-69,6,0,0,0.624463 -25692,7006:468,-68,6,0,0,0.62545 -25693,7006:467,-67,6,0,0,0.630587 -25694,7006:466,-66,6,0,0,0.635146 -25695,7006:465,-65,6,0,0,0.634455 -25696,7006:364,-64,6,0,0,0.633048 -25697,7006:363,-63,6,0,0,0.632785 -25698,7006:362,-62,6,0,0,0.633239 -25699,7006:361,-61,6,0,0,0.633955 -25700,7006:360,-60,6,0,0,0.632045 -25701,7005:469,-59,6,0,0,0.631328 -25702,7005:468,-58,6,0,0,0.631424 -25703,7005:467,-57,6,0,0,0.628814 -25704,7005:466,-56,6,0,0,0.627662 -25705,7005:465,-55,6,0,0,0.62771 -25706,7005:364,-54,6,0,0,0.627733 -25707,7005:363,-53,6,0,0,0.627614 -25708,7005:362,-52,6,0,0,0.626268 -25709,7005:361,-51,6,0,0,0.625113 -25710,7005:360,-50,6,0,0,0.623305 -25711,7004:469,-49,6,0,0,0.62118 -25712,7004:468,-48,6,0,0,0.618153 -25713,7004:467,-47,6,0,0,0.613437 -25714,7004:466,-46,6,0,0,0.611096 -25715,7004:465,-45,6,0,0,0.609483 -25716,7004:364,-44,6,0,0,0.608823 -25717,7004:363,-43,6,0,0,0.605784 -25718,7004:362,-42,6,0,0,0.60259 -25719,7004:361,-41,6,0,0,0.600793 -25720,7004:360,-40,6,0,0,0.598721 -25721,7003:469,-39,6,0,0,0.595954 -25722,7003:468,-38,6,0,0,0.592559 -25723,7003:467,-37,6,0,0,0.590797 -25724,7003:466,-36,6,0,0,0.590673 -25725,7003:465,-35,6,0,0,0.590499 -25726,7003:364,-34,6,0,0,0.59035 -25727,7003:363,-33,6,0,0,0.589629 -25728,7003:362,-32,6,0,0,0.589455 -25729,7003:361,-31,6,0,0,0.590574 -25730,7003:360,-30,6,0,0,0.592708 -25731,7002:469,-29,6,0,0,0.594666 -25732,7002:468,-28,6,0,0,0.593848 -25733,7002:467,-27,6,0,0,0.59246 -25734,7002:466,-26,6,0,0,0.594146 -25735,7002:465,-25,6,0,0,0.596077 -25736,7002:364,-24,6,0,0,0.600177 -25737,7002:363,-23,6,0,0,0.599831 -25738,7002:362,-22,6,0,0,0.598079 -25739,7002:361,-21,6,0,0,0.59924 -25740,7002:360,-20,6,0,0,0.609533 -25741,7001:469,-19,6,0,0,0.620334 -25742,7001:468,-18,6,0,0,0.621591 -25743,7001:467,-17,6,0,0,0.627374 -25744,1004:363,43,6,0,0,0.5984 -25745,1004:465,45,6,0,0,0.595334 -25746,1004:466,46,6,0,0,0.591269 -25747,1004:467,47,6,0,0,0.587888 -25748,1004:468,48,6,0,0,0.58612 -25749,1004:469,49,6,0,0,0.584573 -25750,1005:360,50,6,0,0,0.589654 -25751,1005:361,51,6,0,0,0.606055 -25752,1005:362,52,6,0,0,0.609238 -25753,1005:363,53,6,0,0,0.605417 -25754,1005:364,54,6,0,0,0.602492 -25755,1005:465,55,6,0,0,0.601458 -25756,1005:466,56,6,0,0,0.607599 -25757,1005:467,57,6,0,0,0.609263 -25758,1005:468,58,6,0,0,0.609336 -25759,1005:469,59,6,0,0,0.613242 -25760,1006:360,60,6,0,0,0.61609 -25761,1006:361,61,6,0,0,0.619487 -25762,1006:362,62,6,0,0,0.623908 -25763,1006:363,63,6,0,0,0.626436 -25764,1006:364,64,6,0,0,0.628118 -25765,1006:465,65,6,0,0,0.632236 -25766,1006:466,66,6,0,0,0.637381 -25767,1006:467,67,6,0,0,0.640534 -25768,1006:468,68,6,0,0,0.641006 -25769,1006:469,69,6,0,0,0.642636 -25770,1007:360,70,6,0,0,0.646943 -25771,1007:361,71,6,0,0,0.649262 -25772,1007:362,72,6,0,0,0.650478 -25773,1007:364,74,6,0,0,0.654438 -25774,1007:465,75,6,0,0,0.654485 -25775,1008:361,81,6,0,0,0.617717 -25776,1008:362,82,6,0,0,0.62234 -25777,1008:363,83,6,0,0,0.632785 -25778,1008:364,84,6,0,0,0.633454 -25779,1008:465,85,6,0,0,0.635955 -25780,1008:466,86,6,0,0,0.641243 -25781,1008:467,87,6,0,0,0.642778 -25782,1008:468,88,6,0,0,0.643249 -25783,1008:469,89,6,0,0,0.642684 -25784,1009:360,90,6,0,0,0.6424 -25785,1009:361,91,6,0,0,0.641998 -25786,1009:362,92,6,0,0,0.646895 -25787,1009:364,94,6,0,0,0.643862 -25788,1009:465,95,6,0,0,0.643344 -25789,1009:466,96,6,0,0,0.640723 -25790,1009:467,97,6,0,0,0.644098 -25791,1009:468,98,6,0,0,0.643815 -25792,1010:361,101,6,0,0,0.630945 -26226,7007:486,-76,8,0,0,0.64266 -25793,1011:360,110,6,0,0,0.591194 -25794,1011:361,111,6,0,0,0.622606 -25795,1011:362,112,6,0,0,0.621083 -25796,1011:363,113,6,0,0,0.614314 -25797,1011:364,114,6,0,0,0.608162 -25798,1011:465,115,6,0,0,0.634932 -25799,1011:466,116,6,0,0,0.642447 -25800,1011:467,117,6,0,0,0.638757 -25801,1011:468,118,6,0,0,0.635646 -25802,1011:469,119,6,0,0,0.644639 -25803,1012:360,120,6,0,0,0.641668 -25804,1012:361,121,6,0,0,0.637309 -25805,1012:362,122,6,0,0,0.63331 -25806,1012:363,123,6,0,0,0.629533 -25807,1012:364,124,6,0,0,0.616673 -25808,1012:465,125,6,0,0,0.634288 -25809,1012:466,126,6,0,0,0.634717 -25810,1012:467,127,6,0,0,0.638591 -25811,1012:468,128,6,0,0,0.642188 -25812,1012:469,129,6,0,0,0.645368 -25813,1013:360,130,6,0,0,0.648115 -25814,1013:361,131,6,0,0,0.649823 -25815,1013:362,132,6,0,0,0.650385 -25816,1013:363,133,6,0,0,0.650665 -25817,1013:364,134,6,0,0,0.65001 -25818,1013:465,135,6,0,0,0.649987 -25819,1013:466,136,6,0,0,0.650594 -25820,1013:467,137,6,0,0,0.649917 -25821,1013:468,138,6,0,0,0.648771 -25822,1013:469,139,6,0,0,0.64774 -25823,1014:360,140,6,0,0,0.647786 -25824,1014:361,141,6,0,0,0.647716 -25825,1014:362,142,6,0,0,0.64788 -25826,1014:363,143,6,0,0,0.64863 -25827,1014:364,144,6,0,0,0.649309 -25828,1014:465,145,6,0,0,0.649309 -25829,1014:466,146,6,0,0,0.64994 -25830,1014:467,147,6,0,0,0.650291 -25831,1014:468,148,6,0,0,0.650314 -25832,1014:469,149,6,0,0,0.649777 -25833,1015:360,150,6,0,0,0.648982 -25834,1015:361,151,6,0,0,0.648302 -25835,1015:362,152,6,0,0,0.647623 -25836,1015:363,153,6,0,0,0.646966 -25837,1015:364,154,6,0,0,0.646684 -25838,1015:465,155,6,0,0,0.646496 -25839,1015:466,156,6,0,0,0.645862 -25840,1015:467,157,6,0,0,0.645039 -25841,1015:468,158,6,0,0,0.644451 -25842,1015:469,159,6,0,0,0.643202 -25843,1016:360,160,6,0,0,0.641243 -25844,1016:361,161,6,0,0,0.639965 -25845,1016:362,162,6,0,0,0.6389 -25846,1016:363,163,6,0,0,0.637666 -25847,1016:364,164,6,0,0,0.636241 -25848,1016:465,165,6,0,0,0.634479 -25849,1016:466,166,6,0,0,0.633549 -25850,1016:467,167,6,0,0,0.632785 -25851,1016:468,168,6,0,0,0.630658 -25852,1016:469,169,6,0,0,0.628646 -25853,1017:360,170,6,0,0,0.62795 -25854,1017:361,171,6,0,0,0.628094 -25855,1017:362,172,6,0,0,0.629101 -25856,1017:363,173,6,0,0,0.629005 -25857,1017:364,174,6,0,0,0.628622 -25858,1017:465,175,6,0,0,0.627854 -25859,1017:466,176,6,0,0,0.626941 -25860,1017:467,177,6,0,0,0.625402 -25861,1017:468,178,6,0,0,0.62504 -25862,1017:469,179,6,0,0,0.624391 -25863,1018:360,180,6,0,0,0.624077 -25864,7018:370,-180,7,0,0,0.61762 -25865,7017:479,-179,7,0,0,0.615726 -25866,7017:478,-178,7,0,0,0.614631 -25867,7017:477,-177,7,0,0,0.614582 -25868,7017:476,-176,7,0,0,0.615312 -25869,7017:475,-175,7,0,0,0.615531 -25870,7017:374,-174,7,0,0,0.613706 -25871,7017:373,-173,7,0,0,0.611145 -25872,7017:372,-172,7,0,0,0.610803 -25873,7017:371,-171,7,0,0,0.612097 -25874,7017:370,-170,7,0,0,0.612682 -25875,7016:479,-169,7,0,0,0.612389 -25876,7016:478,-168,7,0,0,0.611438 -25877,7016:477,-167,7,0,0,0.610827 -25878,7016:476,-166,7,0,0,0.609728 -25879,7016:475,-165,7,0,0,0.608284 -25880,7016:374,-164,7,0,0,0.607231 -25881,7016:373,-163,7,0,0,0.60701 -25882,7016:372,-162,7,0,0,0.60679 -25883,7016:371,-161,7,0,0,0.60576 -25884,7016:370,-160,7,0,0,0.605662 -25885,7015:479,-159,7,0,0,0.604656 -25886,7015:478,-158,7,0,0,0.602836 -25887,7015:477,-157,7,0,0,0.601015 -25888,7015:476,-156,7,0,0,0.59877 -25889,7015:475,-155,7,0,0,0.597782 -25890,7015:374,-154,7,0,0,0.59766 -25891,7015:373,-153,7,0,0,0.598647 -25892,7015:372,-152,7,0,0,0.599091 -25893,7015:371,-151,7,0,0,0.597362 -25894,7015:370,-150,7,0,0,0.598993 -25895,7014:479,-149,7,0,0,0.601606 -25896,7014:478,-148,7,0,0,0.599042 -25897,7014:477,-147,7,0,0,0.592907 -25898,7014:476,-146,7,0,0,0.595087 -25899,7014:475,-145,7,0,0,0.593353 -25900,7014:374,-144,7,0,0,0.589505 -25901,7014:373,-143,7,0,0,0.588659 -25902,7014:372,-142,7,0,0,0.589629 -25903,7014:371,-141,7,0,0,0.591989 -25904,7014:370,-140,7,0,0,0.593006 -25905,7013:479,-139,7,0,0,0.586717 -25906,7013:478,-138,7,0,0,0.581376 -25907,7013:477,-137,7,0,0,0.584474 -25908,7013:476,-136,7,0,0,0.585147 -25909,7013:475,-135,7,0,0,0.584099 -25910,7013:374,-134,7,0,0,0.583924 -25911,7013:373,-133,7,0,0,0.585147 -25912,7013:372,-132,7,0,0,0.584124 -25913,7013:371,-131,7,0,0,0.583025 -25914,7013:370,-130,7,0,0,0.585347 -25915,7012:479,-129,7,0,0,0.590176 -25916,7012:478,-128,7,0,0,0.595186 -25917,7012:477,-127,7,0,0,0.598153 -25918,7012:476,-126,7,0,0,0.601926 -25919,7012:475,-125,7,0,0,0.604729 -25920,7012:374,-124,7,0,0,0.605588 -25921,7012:373,-123,7,0,0,0.606201 -25922,7012:372,-122,7,0,0,0.606472 -25923,7012:371,-121,7,0,0,0.607256 -25924,7012:370,-120,7,0,0,0.609312 -25925,7011:479,-119,7,0,0,0.612999 -25926,7011:478,-118,7,0,0,0.614582 -25927,7011:477,-117,7,0,0,0.615798 -25928,7011:476,-116,7,0,0,0.618105 -25929,7011:475,-115,7,0,0,0.621108 -25930,7011:374,-114,7,0,0,0.62275 -25931,7011:373,-113,7,0,0,0.622919 -25932,7011:372,-112,7,0,0,0.622967 -25933,7011:371,-111,7,0,0,0.626028 -25934,7011:370,-110,7,0,0,0.632905 -25935,7010:479,-109,7,0,0,0.637618 -25936,7010:478,-108,7,0,0,0.63852 -25937,7010:477,-107,7,0,0,0.63897 -25938,7010:476,-106,7,0,0,0.642447 -25939,7010:475,-105,7,0,0,0.648841 -25940,7010:374,-104,7,0,0,0.649426 -25941,7010:373,-103,7,0,0,0.640391 -25942,7010:372,-102,7,0,0,0.630611 -25943,7010:371,-101,7,0,0,0.632642 -25944,7010:370,-100,7,0,0,0.637998 -25945,7009:479,-99,7,0,0,0.635598 -25946,7009:478,-98,7,0,0,0.643838 -25947,7009:477,-97,7,0,0,0.638497 -25948,7009:476,-96,7,0,0,0.614314 -25949,7009:475,-95,7,0,0,0.638235 -25950,7009:374,-94,7,0,0,0.64987 -25951,7009:373,-93,7,0,0,0.645886 -25952,7009:372,-92,7,0,0,0.656596 -25953,7008:373,-83,7,0,0,0.624776 -25954,7008:372,-82,7,0,0,0.633501 -25955,7008:371,-81,7,0,0,0.639847 -25956,7008:370,-80,7,0,0,0.641857 -25957,7007:479,-79,7,0,0,0.640746 -25958,7007:478,-78,7,0,0,0.638473 -25959,7007:477,-77,7,0,0,0.635527 -25960,7007:476,-76,7,0,0,0.635646 -25961,7007:475,-75,7,0,0,0.636669 -25962,7007:374,-74,7,0,0,0.637975 -25963,7007:373,-73,7,0,0,0.636431 -25964,7007:372,-72,7,0,0,0.634003 -25965,7007:371,-71,7,0,0,0.633239 -25966,7007:370,-70,7,0,0,0.631902 -25967,7006:479,-69,7,0,0,0.630275 -25968,7006:478,-68,7,0,0,0.634288 -25969,7006:477,-67,7,0,0,0.635646 -25970,7006:476,-66,7,0,0,0.638947 -25971,7006:475,-65,7,0,0,0.6389 -25972,7006:374,-64,7,0,0,0.637143 -25973,7006:373,-63,7,0,0,0.635193 -25974,7006:372,-62,7,0,0,0.634145 -25975,7006:371,-61,7,0,0,0.631687 -25976,7006:370,-60,7,0,0,0.630802 -25977,7005:479,-59,7,0,0,0.629581 -25978,7005:478,-58,7,0,0,0.626436 -25979,7005:477,-57,7,0,0,0.62468 -25980,7005:476,-56,7,0,0,0.623305 -25981,7005:475,-55,7,0,0,0.623474 -25982,7005:374,-54,7,0,0,0.623185 -25983,7005:373,-53,7,0,0,0.622509 -25984,7005:372,-52,7,0,0,0.617862 -25985,7005:371,-51,7,0,0,0.614947 -25986,7005:370,-50,7,0,0,0.613097 -25987,7004:479,-49,7,0,0,0.61156 -25988,7004:478,-48,7,0,0,0.608554 -25989,7004:477,-47,7,0,0,0.603771 -25990,7004:476,-46,7,0,0,0.601088 -25991,7004:475,-45,7,0,0,0.60099 -25992,7004:374,-44,7,0,0,0.602246 -25993,7004:373,-43,7,0,0,0.5962 -25994,7004:372,-42,7,0,0,0.596473 -25995,7004:371,-41,7,0,0,0.595285 -25996,7004:370,-40,7,0,0,0.593204 -25997,7003:479,-39,7,0,0,0.591219 -25998,7003:478,-38,7,0,0,0.589952 -25999,7003:477,-37,7,0,0,0.589207 -26000,7003:476,-36,7,0,0,0.585297 -26001,7003:475,-35,7,0,0,0.577445 -26002,7003:374,-34,7,0,0,0.575865 -26003,7003:373,-33,7,0,0,0.57589 -26004,7003:372,-32,7,0,0,0.577144 -26005,7003:371,-31,7,0,0,0.578322 -26006,7003:370,-30,7,0,0,0.580201 -26007,7002:479,-29,7,0,0,0.579349 -26008,7002:478,-28,7,0,0,0.576116 -26009,7002:477,-27,7,0,0,0.577245 -26010,7002:476,-26,7,0,0,0.582401 -26011,7002:475,-25,7,0,0,0.584448 -26012,7002:374,-24,7,0,0,0.587141 -26013,7002:373,-23,7,0,0,0.584174 -26014,7002:372,-22,7,0,0,0.584249 -26015,7002:371,-21,7,0,0,0.588634 -26016,7002:370,-20,7,0,0,0.599091 -26017,7001:479,-19,7,0,0,0.603894 -26018,7001:478,-18,7,0,0,0.605465 -26019,1004:372,42,7,0,0,0.607672 -26020,1004:479,49,7,0,0,0.598203 -26021,1005:370,50,7,0,0,0.600966 -26022,1005:371,51,7,0,0,0.604213 -26023,1005:372,52,7,0,0,0.604361 -26024,1005:373,53,7,0,0,0.603402 -26025,1005:374,54,7,0,0,0.600818 -26026,1005:475,55,7,0,0,0.599881 -26027,1005:476,56,7,0,0,0.600325 -26028,1005:477,57,7,0,0,0.601286 -26029,1005:478,58,7,0,0,0.606153 -26030,1005:479,59,7,0,0,0.604729 -26031,1006:370,60,7,0,0,0.605539 -26032,1006:371,61,7,0,0,0.60728 -26033,1006:372,62,7,0,0,0.611853 -26034,1006:373,63,7,0,0,0.617838 -26035,1006:374,64,7,0,0,0.619172 -26036,1006:475,65,7,0,0,0.624655 -26037,1006:476,66,7,0,0,0.630802 -26038,1006:477,67,7,0,0,0.63405 -26039,1006:478,68,7,0,0,0.636645 -26040,1006:479,69,7,0,0,0.640273 -26041,1007:370,70,7,0,0,0.644686 -26042,1007:371,71,7,0,0,0.64706 -26043,1007:372,72,7,0,0,0.648841 -26044,1007:374,74,7,0,0,0.653415 -26045,1008:371,81,7,0,0,0.615409 -26046,1008:372,82,7,0,0,0.622195 -26047,1008:373,83,7,0,0,0.625715 -26048,1008:374,84,7,0,0,0.629484 -26049,1008:475,85,7,0,0,0.634884 -26050,1008:476,86,7,0,0,0.63987 -26051,1008:477,87,7,0,0,0.640982 -26052,1008:478,88,7,0,0,0.641101 -26053,1008:479,89,7,0,0,0.64398 -26054,1009:370,90,7,0,0,0.645416 -26055,1009:371,91,7,0,0,0.64511 -26056,1009:372,92,7,0,0,0.648115 -26057,1009:373,93,7,0,0,0.646544 -26058,1009:374,94,7,0,0,0.638852 -26059,1009:475,95,7,0,0,0.637642 -26060,1009:476,96,7,0,0,0.638781 -26061,1009:477,97,7,0,0,0.64051 -26062,1009:478,98,7,0,0,0.647412 -26063,1011:370,110,7,0,0,0.590375 -26064,1011:371,111,7,0,0,0.596028 -26065,1011:372,112,7,0,0,0.615871 -26066,1011:373,113,7,0,0,0.609238 -26067,1011:374,114,7,0,0,0.602 -26068,1011:475,115,7,0,0,0.616964 -26069,1011:476,116,7,0,0,0.627349 -26070,1011:477,117,7,0,0,0.622799 -26071,1011:478,118,7,0,0,0.631902 -26072,1011:479,119,7,0,0,0.641337 -26073,1012:370,120,7,0,0,0.633931 -26074,1012:374,124,7,0,0,0.618614 -26075,1012:475,125,7,0,0,0.630443 -26076,1012:476,126,7,0,0,0.631926 -26077,1012:477,127,7,0,0,0.633693 -26078,1012:478,128,7,0,0,0.635955 -26079,1012:479,129,7,0,0,0.638615 -26080,1013:370,130,7,0,0,0.641479 -26081,1013:371,131,7,0,0,0.644098 -26082,1013:372,132,7,0,0,0.646167 -26083,1013:373,133,7,0,0,0.646825 -26084,1013:374,134,7,0,0,0.646003 -26085,1013:475,135,7,0,0,0.645698 -26086,1013:476,136,7,0,0,0.644874 -26087,1013:477,137,7,0,0,0.644004 -26088,1013:478,138,7,0,0,0.644098 -26089,1013:479,139,7,0,0,0.644192 -26090,1014:370,140,7,0,0,0.644474 -26091,1014:371,141,7,0,0,0.644451 -26092,1014:372,142,7,0,0,0.64438 -26093,1014:373,143,7,0,0,0.644733 -26094,1014:374,144,7,0,0,0.645134 -26095,1014:475,145,7,0,0,0.644898 -26096,1014:476,146,7,0,0,0.64518 -26097,1014:477,147,7,0,0,0.645274 -26098,1014:478,148,7,0,0,0.644851 -26099,1014:479,149,7,0,0,0.64431 -26100,1015:370,150,7,0,0,0.64398 -26101,1015:371,151,7,0,0,0.643697 -26102,1015:372,152,7,0,0,0.643179 -26103,1015:373,153,7,0,0,0.642377 -26104,1015:374,154,7,0,0,0.641408 -26105,1015:475,155,7,0,0,0.640439 -26106,1015:476,156,7,0,0,0.639421 -26107,1015:477,157,7,0,0,0.638093 -26108,1015:478,158,7,0,0,0.636811 -26109,1015:479,159,7,0,0,0.635883 -26110,1016:370,160,7,0,0,0.63486 -26111,1016:371,161,7,0,0,0.634169 -26112,1016:372,162,7,0,0,0.633573 -26113,1016:373,163,7,0,0,0.632356 -26114,1016:374,164,7,0,0,0.630491 -26115,1016:475,165,7,0,0,0.628406 -26116,1016:476,166,7,0,0,0.6267 -26117,1016:477,167,7,0,0,0.625811 -27202,7112:226,-126,12,0,0,0.46312 -26118,1016:478,168,7,0,0,0.624752 -26119,1016:479,169,7,0,0,0.623305 -26120,1017:370,170,7,0,0,0.621881 -26121,1017:371,171,7,0,0,0.620552 -26122,1017:372,172,7,0,0,0.620431 -26123,1017:373,173,7,0,0,0.620986 -26124,1017:374,174,7,0,0,0.621446 -26125,1017:475,175,7,0,0,0.621446 -26126,1017:476,176,7,0,0,0.621083 -26127,1017:477,177,7,0,0,0.620406 -26128,1017:478,178,7,0,0,0.619825 -26129,1017:479,179,7,0,0,0.619172 -26130,1018:370,180,7,0,0,0.61762 -26131,7018:380,-180,8,0,0,0.611242 -26132,7017:489,-179,8,0,0,0.609679 -26133,7017:488,-178,8,0,0,0.607158 -26134,7017:487,-177,8,0,0,0.604188 -26135,7017:486,-176,8,0,0,0.603254 -26136,7017:485,-175,8,0,0,0.603771 -26137,7017:384,-174,8,0,0,0.603894 -26138,7017:383,-173,8,0,0,0.604065 -26139,7017:382,-172,8,0,0,0.605319 -26140,7017:381,-171,8,0,0,0.606814 -26141,7017:380,-170,8,0,0,0.605441 -26142,7016:489,-169,8,0,0,0.60195 -26143,7016:488,-168,8,0,0,0.600596 -26144,7016:487,-167,8,0,0,0.602221 -26145,7016:486,-166,8,0,0,0.604778 -26146,7016:485,-165,8,0,0,0.604483 -26147,7016:384,-164,8,0,0,0.602393 -26148,7016:383,-163,8,0,0,0.598252 -26149,7016:382,-162,8,0,0,0.594468 -26150,7016:381,-161,8,0,0,0.594344 -26151,7016:380,-160,8,0,0,0.597437 -26152,7015:489,-159,8,0,0,0.597956 -26153,7015:488,-158,8,0,0,0.596324 -26154,7015:487,-157,8,0,0,0.594518 -26155,7015:486,-156,8,0,0,0.592162 -26156,7015:485,-155,8,0,0,0.590002 -26157,7015:384,-154,8,0,0,0.590871 -26158,7015:383,-153,8,0,0,0.59184 -26159,7015:382,-152,8,0,0,0.59184 -26160,7015:381,-151,8,0,0,0.589902 -26161,7015:380,-150,8,0,0,0.588609 -26162,7014:489,-149,8,0,0,0.585596 -26163,7014:488,-148,8,0,0,0.58592 -26164,7014:487,-147,8,0,0,0.588361 -26165,7014:486,-146,8,0,0,0.585472 -26166,7014:485,-145,8,0,0,0.584947 -26167,7014:384,-144,8,0,0,0.586618 -26168,7014:383,-143,8,0,0,0.586219 -26169,7014:382,-142,8,0,0,0.584249 -26170,7014:381,-141,8,0,0,0.580726 -26171,7014:380,-140,8,0,0,0.575789 -26172,7013:489,-139,8,0,0,0.572298 -26173,7013:488,-138,8,0,0,0.57456 -26174,7013:487,-137,8,0,0,0.575288 -26175,7013:486,-136,8,0,0,0.572322 -26176,7013:485,-135,8,0,0,0.569831 -26177,7013:384,-134,8,0,0,0.567588 -26178,7013:383,-133,8,0,0,0.567412 -26179,7013:382,-132,8,0,0,0.568193 -26180,7013:381,-131,8,0,0,0.569806 -26181,7013:380,-130,8,0,0,0.564964 -26182,7012:489,-129,8,0,0,0.568068 -26183,7012:488,-128,8,0,0,0.571644 -26184,7012:487,-127,8,0,0,0.57285 -26185,7012:486,-126,8,0,0,0.577119 -26186,7012:485,-125,8,0,0,0.577671 -26187,7012:384,-124,8,0,0,0.577019 -26188,7012:383,-123,8,0,0,0.576417 -26189,7012:382,-122,8,0,0,0.58 -26190,7012:381,-121,8,0,0,0.590424 -26191,7012:380,-120,8,0,0,0.60136 -26192,7011:489,-119,8,0,0,0.603426 -26193,7011:488,-118,8,0,0,0.602665 -26194,7011:487,-117,8,0,0,0.597635 -26195,7011:486,-116,8,0,0,0.602443 -26196,7011:485,-115,8,0,0,0.602172 -26197,7011:384,-114,8,0,0,0.600866 -26198,7011:383,-113,8,0,0,0.600522 -26199,7011:382,-112,8,0,0,0.608358 -26200,7011:381,-111,8,0,0,0.617911 -26201,7011:380,-110,8,0,0,0.624776 -26202,7010:489,-109,8,0,0,0.63006 -26203,7010:488,-108,8,0,0,0.63712 -26204,7010:487,-107,8,0,0,0.640534 -26205,7010:486,-106,8,0,0,0.642848 -26206,7010:485,-105,8,0,0,0.645462 -26207,7010:384,-104,8,0,0,0.659186 -26208,7010:383,-103,8,0,0,0.663305 -26209,7010:382,-102,8,0,0,0.665825 -26210,7010:381,-101,8,0,0,0.663397 -26211,7010:380,-100,8,0,0,0.661007 -26212,7009:489,-99,8,0,0,0.653904 -26213,7009:488,-98,8,0,0,0.641125 -26214,7009:487,-97,8,0,0,0.636026 -26215,7009:486,-96,8,0,0,0.634526 -26216,7009:485,-95,8,0,0,0.639373 -26217,7009:384,-94,8,0,0,0.645039 -26218,7008:384,-84,8,0,0,0.624053 -26219,7008:383,-83,8,0,0,0.618881 -26220,7008:382,-82,8,0,0,0.626484 -26221,7008:381,-81,8,0,0,0.636098 -26222,7008:380,-80,8,0,0,0.641054 -26223,7007:489,-79,8,0,0,0.64103 -26224,7007:488,-78,8,0,0,0.640178 -26225,7007:487,-77,8,0,0,0.641314 -26227,7007:485,-75,8,0,0,0.643697 -26228,7007:384,-74,8,0,0,0.642919 -26229,7007:383,-73,8,0,0,0.64006 -26230,7007:382,-72,8,0,0,0.63769 -26231,7007:381,-71,8,0,0,0.637215 -26232,7007:380,-70,8,0,0,0.637666 -26233,7006:489,-69,8,0,0,0.638164 -26234,7006:488,-68,8,0,0,0.638497 -26235,7006:487,-67,8,0,0,0.638923 -26236,7006:486,-66,8,0,0,0.637049 -26237,7006:485,-65,8,0,0,0.637499 -26238,7006:384,-64,8,0,0,0.636122 -26239,7006:383,-63,8,0,0,0.634979 -26240,7006:382,-62,8,0,0,0.631735 -26241,7006:381,-61,8,0,0,0.627566 -26242,7006:380,-60,8,0,0,0.628526 -26243,7005:489,-59,8,0,0,0.625931 -26244,7005:488,-58,8,0,0,0.623691 -26245,7005:487,-57,8,0,0,0.621277 -26246,7005:486,-56,8,0,0,0.617741 -26247,7005:485,-55,8,0,0,0.616042 -26248,7005:384,-54,8,0,0,0.615823 -26249,7005:383,-53,8,0,0,0.613389 -26250,7005:382,-52,8,0,0,0.609043 -26251,7005:381,-51,8,0,0,0.606912 -26252,7005:380,-50,8,0,0,0.604533 -26253,7004:489,-49,8,0,0,0.602049 -26254,7004:488,-48,8,0,0,0.600201 -26255,7004:487,-47,8,0,0,0.598598 -26256,7004:486,-46,8,0,0,0.596868 -26257,7004:485,-45,8,0,0,0.594864 -26258,7004:384,-44,8,0,0,0.592312 -26259,7004:383,-43,8,0,0,0.589729 -26260,7004:382,-42,8,0,0,0.588361 -26261,7004:381,-41,8,0,0,0.58572 -26262,7004:380,-40,8,0,0,0.583825 -26263,7003:489,-39,8,0,0,0.581651 -26264,7003:488,-38,8,0,0,0.578573 -26265,7003:487,-37,8,0,0,0.576567 -26266,7003:486,-36,8,0,0,0.574886 -26267,7003:485,-35,8,0,0,0.573027 -26268,7003:384,-34,8,0,0,0.572725 -26269,7003:383,-33,8,0,0,0.569504 -26270,7003:382,-32,8,0,0,0.568748 -26271,7003:381,-31,8,0,0,0.569201 -26272,7003:380,-30,8,0,0,0.570259 -26273,7002:489,-29,8,0,0,0.569201 -26274,7002:488,-28,8,0,0,0.567286 -26275,7002:487,-27,8,0,0,0.56721 -26276,7002:486,-26,8,0,0,0.567765 -26277,7002:485,-25,8,0,0,0.566882 -26278,7002:384,-24,8,0,0,0.56779 -26279,7002:383,-23,8,0,0,0.571116 -26280,7002:382,-22,8,0,0,0.568874 -26281,7002:381,-21,8,0,0,0.573177 -26282,7002:380,-20,8,0,0,0.583425 -26283,7001:489,-19,8,0,0,0.586368 -26284,7001:488,-18,8,0,0,0.585472 -26285,7001:487,-17,8,0,0,0.559983 -26286,1004:380,40,8,0,0,0.625546 -26287,1004:381,41,8,0,0,0.616989 -26288,1004:382,42,8,0,0,0.629508 -26289,1005:382,52,8,0,0,0.595409 -26290,1005:383,53,8,0,0,0.592708 -26291,1005:384,54,8,0,0,0.590574 -26292,1005:485,55,8,0,0,0.591542 -26293,1005:486,56,8,0,0,0.596671 -26294,1005:487,57,8,0,0,0.596646 -26295,1005:488,58,8,0,0,0.59422 -26296,1005:489,59,8,0,0,0.598079 -26297,1006:380,60,8,0,0,0.601778 -26298,1006:381,61,8,0,0,0.604262 -26299,1006:382,62,8,0,0,0.610852 -26300,1006:383,63,8,0,0,0.614947 -26301,1006:384,64,8,0,0,0.620552 -26302,1006:485,65,8,0,0,0.626845 -26303,1006:486,66,8,0,0,0.630443 -26304,1006:487,67,8,0,0,0.635883 -26305,1006:488,68,8,0,0,0.638662 -26306,1006:489,69,8,0,0,0.64103 -26307,1007:380,70,8,0,0,0.643485 -26308,1007:381,71,8,0,0,0.648349 -26309,1007:382,72,8,0,0,0.654392 -26310,1007:384,74,8,0,0,0.647599 -26311,1008:381,81,8,0,0,0.611706 -26312,1008:382,82,8,0,0,0.613145 -26313,1008:383,83,8,0,0,0.622436 -26314,1008:384,84,8,0,0,0.626604 -26315,1008:485,85,8,0,0,0.630945 -26316,1008:486,86,8,0,0,0.634884 -26317,1008:487,87,8,0,0,0.636621 -26318,1008:488,88,8,0,0,0.637547 -26319,1008:489,89,8,0,0,0.64058 -26320,1009:380,90,8,0,0,0.642966 -26321,1009:381,91,8,0,0,0.645839 -26322,1009:382,92,8,0,0,0.647951 -26323,1009:383,93,8,0,0,0.642046 -26324,1009:384,94,8,0,0,0.63833 -26325,1009:485,95,8,0,0,0.634431 -26326,1009:486,96,8,0,0,0.633382 -26327,1009:487,97,8,0,0,0.637357 -26328,1010:489,109,8,0,0,0.584898 -26329,1011:380,110,8,0,0,0.587141 -26330,1011:381,111,8,0,0,0.598351 -26331,1011:382,112,8,0,0,0.599856 -26332,1011:383,113,8,0,0,0.603697 -26333,1011:384,114,8,0,0,0.607697 -26334,1011:485,115,8,0,0,0.610632 -26335,1011:486,116,8,0,0,0.613535 -26336,1011:487,117,8,0,0,0.618638 -26337,1011:488,118,8,0,0,0.628286 -26338,1011:489,119,8,0,0,0.637286 -26339,1012:380,120,8,0,0,0.620842 -26340,1012:382,122,8,0,0,0.625594 -26341,1012:383,123,8,0,0,0.627614 -26342,1012:384,124,8,0,0,0.624968 -26343,1012:485,125,8,0,0,0.623643 -26344,1012:486,126,8,0,0,0.624391 -26345,1012:487,127,8,0,0,0.626436 -26346,1012:488,128,8,0,0,0.628118 -26347,1012:489,129,8,0,0,0.629796 -26348,1013:380,130,8,0,0,0.631806 -26349,1013:381,131,8,0,0,0.635788 -26350,1013:382,132,8,0,0,0.640013 -26351,1013:383,133,8,0,0,0.640367 -26352,1013:384,134,8,0,0,0.637049 -26353,1013:485,135,8,0,0,0.636669 -26354,1013:486,136,8,0,0,0.638402 -26355,1013:487,137,8,0,0,0.638876 -26356,1013:488,138,8,0,0,0.639752 -26357,1013:489,139,8,0,0,0.640391 -26358,1014:380,140,8,0,0,0.640439 -26359,1014:381,141,8,0,0,0.640415 -26360,1014:382,142,8,0,0,0.640391 -26361,1014:383,143,8,0,0,0.640699 -26362,1014:384,144,8,0,0,0.640912 -26363,1014:485,145,8,0,0,0.641148 -26364,1014:486,146,8,0,0,0.6398 -26365,1014:487,147,8,0,0,0.640604 -26366,1014:488,148,8,0,0,0.640273 -26367,1014:489,149,8,0,0,0.640462 -26368,1015:380,150,8,0,0,0.640817 -26369,1015:381,151,8,0,0,0.641006 -26370,1015:382,152,8,0,0,0.640817 -26371,1015:383,153,8,0,0,0.640202 -26372,1015:384,154,8,0,0,0.639302 -26373,1015:485,155,8,0,0,0.638164 -26374,1015:486,156,8,0,0,0.637001 -26375,1015:487,157,8,0,0,0.635955 -26376,1015:488,158,8,0,0,0.634789 -26377,1015:489,159,8,0,0,0.633549 -26378,1016:380,160,8,0,0,0.632236 -26379,1016:381,161,8,0,0,0.631017 -26380,1016:382,162,8,0,0,0.630251 -26381,1016:383,163,8,0,0,0.629964 -26382,1016:384,164,8,0,0,0.629221 -26383,1016:485,165,8,0,0,0.627733 -26384,1016:486,166,8,0,0,0.625811 -26385,1016:487,167,8,0,0,0.624077 -26386,1016:488,168,8,0,0,0.622267 -26387,1016:489,169,8,0,0,0.620164 -26388,1017:380,170,8,0,0,0.617862 -26389,1017:381,171,8,0,0,0.616381 -26390,1017:382,172,8,0,0,0.615895 -26391,1017:383,173,8,0,0,0.615774 -26392,1017:384,174,8,0,0,0.615409 -26393,1017:485,175,8,0,0,0.61429 -26394,1017:486,176,8,0,0,0.612902 -26395,1017:487,177,8,0,0,0.612146 -26396,1017:488,178,8,0,0,0.612316 -26397,1017:489,179,8,0,0,0.612389 -26398,1018:380,180,8,0,0,0.611242 -26399,7018:390,-180,9,0,0,0.606839 -26400,7017:499,-179,9,0,0,0.60777 -26401,7017:498,-178,9,0,0,0.606741 -26402,7017:497,-177,9,0,0,0.605171 -26403,7017:496,-176,9,0,0,0.604065 -26404,7017:495,-175,9,0,0,0.601606 -26405,7017:394,-174,9,0,0,0.599338 -26406,7017:393,-173,9,0,0,0.598227 -26407,7017:392,-172,9,0,0,0.599313 -26408,7017:391,-171,9,0,0,0.600916 -26409,7017:390,-170,9,0,0,0.601113 -26410,7016:499,-169,9,0,0,0.598153 -26411,7016:498,-168,9,0,0,0.595211 -26412,7016:497,-167,9,0,0,0.594419 -26413,7016:496,-166,9,0,0,0.596918 -26414,7016:495,-165,9,0,0,0.597017 -26415,7016:394,-164,9,0,0,0.595409 -26416,7016:393,-163,9,0,0,0.592436 -26417,7016:392,-162,9,0,0,0.590276 -26418,7016:391,-161,9,0,0,0.590698 -26419,7016:390,-160,9,0,0,0.588734 -26420,7015:499,-159,9,0,0,0.590624 -26421,7015:498,-158,9,0,0,0.58739 -26422,7015:497,-157,9,0,0,0.579599 -26423,7015:496,-156,9,0,0,0.5797 -26424,7015:495,-155,9,0,0,0.58572 -26425,7015:394,-154,9,0,0,0.582851 -26426,7015:393,-153,9,0,0,0.580401 -26427,7015:392,-152,9,0,0,0.580425 -26428,7015:391,-151,9,0,0,0.578623 -26429,7015:390,-150,9,0,0,0.576618 -26430,7014:499,-149,9,0,0,0.575689 -26431,7014:498,-148,9,0,0,0.577671 -26432,7014:497,-147,9,0,0,0.579399 -26433,7014:496,-146,9,0,0,0.578297 -26434,7014:495,-145,9,0,0,0.576066 -26435,7014:394,-144,9,0,0,0.576316 -26436,7014:393,-143,9,0,0,0.568521 -26437,7014:392,-142,9,0,0,0.571946 -26438,7014:391,-141,9,0,0,0.575488 -26439,7014:390,-140,9,0,0,0.566806 -26440,7013:499,-139,9,0,0,0.556892 -26441,7013:498,-138,9,0,0,0.558413 -26442,7013:497,-137,9,0,0,0.555649 -26443,7013:496,-136,9,0,0,0.550825 -26444,7013:495,-135,9,0,0,0.553263 -26445,7013:394,-134,9,0,0,0.545124 -26446,7013:393,-133,9,0,0,0.541045 -26447,7013:392,-132,9,0,0,0.54005 -26448,7013:391,-131,9,0,0,0.538773 -26449,7013:390,-130,9,0,0,0.533203 -26450,7012:499,-129,9,0,0,0.533407 -26451,7012:498,-128,9,0,0,0.54079 -26452,7012:497,-127,9,0,0,0.537726 -26453,7012:496,-126,9,0,0,0.539156 -26454,7012:495,-125,9,0,0,0.551078 -26455,7012:394,-124,9,0,0,0.546066 -26456,7012:393,-123,9,0,0,0.553543 -26457,7012:392,-122,9,0,0,0.553289 -26458,7012:391,-121,9,0,0,0.565343 -26459,7012:390,-120,9,0,0,0.571442 -26460,7011:499,-119,9,0,0,0.578097 -26461,7011:498,-118,9,0,0,0.579099 -26462,7011:497,-117,9,0,0,0.578623 -26463,7011:496,-116,9,0,0,0.581826 -26464,7011:495,-115,9,0,0,0.58005 -26465,7011:394,-114,9,0,0,0.5827 -26466,7011:393,-113,9,0,0,0.581626 -26467,7011:392,-112,9,0,0,0.584972 -26468,7011:391,-111,9,0,0,0.597536 -26469,7011:390,-110,9,0,0,0.60826 -26470,7010:499,-109,9,0,0,0.62304 -26471,7010:498,-108,9,0,0,0.63195 -26472,7010:497,-107,9,0,0,0.636265 -26473,7010:496,-106,9,0,0,0.640226 -26474,7010:495,-105,9,0,0,0.6498 -26475,7010:394,-104,9,0,0,0.655669 -26476,7010:393,-103,9,0,0,0.659232 -26477,7010:392,-102,9,0,0,0.664841 -26478,7010:391,-101,9,0,0,0.65884 -26479,7008:498,-88,9,0,0,0.637143 -26480,7008:497,-87,9,0,0,0.635003 -26481,7008:496,-86,9,0,0,0.634264 -26482,7008:495,-85,9,0,0,0.63605 -26483,7008:394,-84,9,0,0,0.634598 -26484,7008:393,-83,9,0,0,0.634408 -26485,7008:392,-82,9,0,0,0.635313 -26486,7008:391,-81,9,0,0,0.636645 -26487,7008:390,-80,9,0,0,0.640486 -26488,7007:499,-79,9,0,0,0.640391 -26489,7007:498,-78,9,0,0,0.63769 -26490,7007:497,-77,9,0,0,0.63871 -26491,7007:496,-76,9,0,0,0.641739 -26492,7007:495,-75,9,0,0,0.638544 -26493,7007:394,-74,9,0,0,0.640793 -26494,7007:393,-73,9,0,0,0.639634 -26495,7007:392,-72,9,0,0,0.638686 -26496,7007:391,-71,9,0,0,0.636574 -26497,7007:390,-70,9,0,0,0.637167 -26498,7006:499,-69,9,0,0,0.637001 -26499,7006:498,-68,9,0,0,0.636621 -26500,7006:497,-67,9,0,0,0.635098 -26501,7006:496,-66,9,0,0,0.635479 -26502,7006:495,-65,9,0,0,0.634336 -26503,7006:394,-64,9,0,0,0.633406 -26504,7006:393,-63,9,0,0,0.63006 -26505,7006:392,-62,9,0,0,0.628861 -26506,7006:391,-61,9,0,0,0.626268 -26507,7006:390,-60,9,0,0,0.625185 -26508,7005:499,-59,9,0,0,0.62333 -26509,7005:498,-58,9,0,0,0.621277 -26510,7005:497,-57,9,0,0,0.61968 -26511,7005:496,-56,9,0,0,0.617668 -26512,7005:495,-55,9,0,0,0.615433 -26513,7005:394,-54,9,0,0,0.612877 -26514,7005:393,-53,9,0,0,0.609899 -26515,7005:392,-52,9,0,0,0.607574 -26516,7005:391,-51,9,0,0,0.605662 -26517,7005:390,-50,9,0,0,0.60441 -26518,7004:499,-49,9,0,0,0.60195 -26519,7004:498,-48,9,0,0,0.599511 -26520,7004:497,-47,9,0,0,0.596003 -26521,7004:496,-46,9,0,0,0.593526 -26522,7004:495,-45,9,0,0,0.591344 -26523,7004:394,-44,9,0,0,0.588983 -26524,7004:393,-43,9,0,0,0.586593 -26525,7004:392,-42,9,0,0,0.586394 -26526,7004:391,-41,9,0,0,0.58385 -26527,7004:390,-40,9,0,0,0.578397 -26528,7003:499,-39,9,0,0,0.57732 -26529,7003:498,-38,9,0,0,0.575665 -26530,7003:497,-37,9,0,0,0.571895 -26531,7003:496,-36,9,0,0,0.571266 -26532,7003:495,-35,9,0,0,0.570385 -26533,7003:394,-34,9,0,0,0.567336 -26534,7003:393,-33,9,0,0,0.56514 -26535,7003:392,-32,9,0,0,0.563953 -26536,7003:391,-31,9,0,0,0.564434 -26537,7003:390,-30,9,0,0,0.563524 -26538,7002:499,-29,9,0,0,0.562943 -26539,7002:498,-28,9,0,0,0.561678 -26540,7002:497,-27,9,0,0,0.561603 -26541,7002:496,-26,9,0,0,0.562209 -26542,7002:495,-25,9,0,0,0.561653 -26543,7002:394,-24,9,0,0,0.560742 -26544,7002:393,-23,9,0,0,0.55816 -26545,7002:392,-22,9,0,0,0.555269 -26546,7002:391,-21,9,0,0,0.562993 -26547,7002:390,-20,9,0,0,0.567286 -26548,7001:499,-19,9,0,0,0.565822 -26549,7001:498,-18,9,0,0,0.564938 -26550,7001:497,-17,9,0,0,0.541785 -26551,1003:499,39,9,0,0,0.643838 -26552,1004:390,40,9,0,0,0.631735 -26553,1004:392,42,9,0,0,0.642305 -26554,1005:394,54,9,0,0,0.589232 -26555,1005:495,55,9,0,0,0.588236 -26556,1005:496,56,9,0,0,0.593625 -26557,1005:497,57,9,0,0,0.59184 -26558,1005:498,58,9,0,0,0.593502 -26559,1005:499,59,9,0,0,0.591666 -26560,1006:390,60,9,0,0,0.593031 -26561,1006:391,61,9,0,0,0.602763 -26562,1006:392,62,9,0,0,0.603451 -26563,1006:393,63,9,0,0,0.605417 -26564,1006:394,64,9,0,0,0.608774 -26565,1006:495,65,9,0,0,0.611267 -26566,1006:496,66,9,0,0,0.617231 -26567,1006:497,67,9,0,0,0.622871 -26568,1006:498,68,9,0,0,0.627278 -26569,1006:499,69,9,0,0,0.636169 -26570,1007:390,70,9,0,0,0.642565 -26571,1007:391,71,9,0,0,0.647435 -26572,1007:392,72,9,0,0,0.650197 -26573,1008:393,83,9,0,0,0.604188 -26574,1008:394,84,9,0,0,0.613803 -26575,1008:495,85,9,0,0,0.614314 -26576,1008:496,86,9,0,0,0.61905 -26577,1008:497,87,9,0,0,0.627421 -26578,1008:498,88,9,0,0,0.63424 -26579,1008:499,89,9,0,0,0.634622 -26580,1009:390,90,9,0,0,0.636145 -26581,1009:391,91,9,0,0,0.638473 -26582,1009:392,92,9,0,0,0.642542 -26583,1009:393,93,9,0,0,0.641195 -26584,1009:394,94,9,0,0,0.635503 -26585,1010:498,108,9,0,0,0.575288 -26586,1010:499,109,9,0,0,0.578448 -26587,1011:390,110,9,0,0,0.579149 -26588,1011:391,111,9,0,0,0.58749 -26589,1011:392,112,9,0,0,0.588883 -26590,1011:393,113,9,0,0,0.5834 -26591,1011:394,114,9,0,0,0.592782 -26592,1011:495,115,9,0,0,0.592088 -26593,1011:496,116,9,0,0,0.592609 -26594,1011:497,117,9,0,0,0.599462 -26595,1011:498,118,9,0,0,0.617935 -26596,1011:499,119,9,0,0,0.629868 -26597,1012:390,120,9,0,0,0.619002 -26598,1012:393,123,9,0,0,0.625787 -26599,1012:394,124,9,0,0,0.616284 -26600,1012:495,125,9,0,0,0.614241 -26601,1012:496,126,9,0,0,0.614022 -26602,1012:497,127,9,0,0,0.615458 -26603,1012:498,128,9,0,0,0.616381 -26604,1012:499,129,9,0,0,0.618056 -26605,1013:390,130,9,0,0,0.620817 -26606,1013:391,131,9,0,0,0.623619 -26607,1013:392,132,9,0,0,0.626797 -26608,1013:393,133,9,0,0,0.631782 -26609,1013:394,134,9,0,0,0.633382 -26610,1013:495,135,9,0,0,0.632284 -26611,1013:496,136,9,0,0,0.632308 -26612,1013:497,137,9,0,0,0.634408 -26613,1013:498,138,9,0,0,0.635217 -26614,1013:499,139,9,0,0,0.635551 -26615,1014:390,140,9,0,0,0.63517 -26616,1014:391,141,9,0,0,0.634479 -26617,1014:392,142,9,0,0,0.634503 -26618,1014:393,143,9,0,0,0.635027 -26619,1014:394,144,9,0,0,0.635479 -26620,1014:495,145,9,0,0,0.635337 -26621,1014:496,146,9,0,0,0.634288 -26622,1014:497,147,9,0,0,0.635146 -26623,1014:498,148,9,0,0,0.635384 -26624,1014:499,149,9,0,0,0.636074 -26625,1015:390,150,9,0,0,0.636502 -26626,1015:391,151,9,0,0,0.63605 -26627,1015:392,152,9,0,0,0.636336 -26628,1015:393,153,9,0,0,0.636764 -26629,1015:394,154,9,0,0,0.637595 -26630,1015:495,155,9,0,0,0.636645 -26631,1015:496,156,9,0,0,0.635432 -26632,1015:497,157,9,0,0,0.633859 -26633,1015:498,158,9,0,0,0.632714 -26634,1015:499,159,9,0,0,0.632762 -26635,1016:390,160,9,0,0,0.632117 -26636,1016:391,161,9,0,0,0.630634 -26637,1016:392,162,9,0,0,0.628526 -26638,1016:393,163,9,0,0,0.626412 -26639,1016:394,164,9,0,0,0.624993 -26640,1016:495,165,9,0,0,0.624968 -26641,1016:496,166,9,0,0,0.625233 -26642,1016:497,167,9,0,0,0.624391 -26643,1016:498,168,9,0,0,0.621953 -26644,1016:499,169,9,0,0,0.619946 -26645,1017:390,170,9,0,0,0.61762 -26646,1017:391,171,9,0,0,0.615288 -26647,1017:392,172,9,0,0,0.613973 -26648,1017:393,173,9,0,0,0.61317 -26649,1017:394,174,9,0,0,0.612658 -26650,1017:495,175,9,0,0,0.611974 -26651,1017:496,176,9,0,0,0.610779 -26652,1017:497,177,9,0,0,0.608333 -26653,1017:498,178,9,0,0,0.606594 -26654,1017:499,179,9,0,0,0.606374 -26655,1018:390,180,9,0,0,0.606839 -26656,7118:100,-180,10,0,0,0.602763 -26657,7117:209,-179,10,0,0,0.603008 -26658,7117:208,-178,10,0,0,0.601975 -26659,7117:207,-177,10,0,0,0.597956 -26660,7117:206,-176,10,0,0,0.600004 -26661,7117:205,-175,10,0,0,0.597561 -26662,7117:104,-174,10,0,0,0.596151 -26663,7117:103,-173,10,0,0,0.594419 -26664,7117:102,-172,10,0,0,0.595334 -26665,7117:101,-171,10,0,0,0.59432 -26666,7117:100,-170,10,0,0,0.59672 -26667,7116:209,-169,10,0,0,0.59761 -26668,7116:208,-168,10,0,0,0.595756 -26669,7116:207,-167,10,0,0,0.593997 -26670,7116:206,-166,10,0,0,0.591244 -26671,7116:205,-165,10,0,0,0.589057 -26672,7116:104,-164,10,0,0,0.588311 -26673,7116:103,-163,10,0,0,0.589057 -26674,7116:102,-162,10,0,0,0.588286 -26675,7116:101,-161,10,0,0,0.587689 -26676,7116:100,-160,10,0,0,0.589132 -26677,7115:209,-159,10,0,0,0.5902 -26678,7115:208,-158,10,0,0,0.590151 -26679,7115:207,-157,10,0,0,0.577445 -26680,7115:206,-156,10,0,0,0.568949 -26681,7115:205,-155,10,0,0,0.567992 -26682,7115:104,-154,10,0,0,0.570838 -26683,7115:103,-153,10,0,0,0.569176 -26684,7115:102,-152,10,0,0,0.56514 -26685,7115:101,-151,10,0,0,0.564282 -26686,7115:100,-150,10,0,0,0.560211 -26687,7114:209,-149,10,0,0,0.562741 -26688,7114:208,-148,10,0,0,0.559122 -26689,7114:207,-147,10,0,0,0.560033 -26690,7114:206,-146,10,0,0,0.560996 -26691,7114:205,-145,10,0,0,0.566176 -26692,7114:104,-144,10,0,0,0.56509 -26693,7114:103,-143,10,0,0,0.563828 -26694,7114:102,-142,10,0,0,0.549426 -26695,7114:101,-141,10,0,0,0.544666 -26696,7114:100,-140,10,0,0,0.54762 -26697,7113:209,-139,10,0,0,0.549629 -26698,7113:208,-138,10,0,0,0.539794 -26699,7113:207,-137,10,0,0,0.530491 -26700,7113:206,-136,10,0,0,0.532205 -26701,7113:205,-135,10,0,0,0.527803 -26702,7113:104,-134,10,0,0,0.526446 -26703,7113:103,-133,10,0,0,0.522602 -26704,7113:102,-132,10,0,0,0.517217 -26705,7113:101,-131,10,0,0,0.510133 -26706,7113:100,-130,10,0,0,0.509568 -26707,7112:209,-129,10,0,0,0.50926 -26708,7112:208,-128,10,0,0,0.511776 -26709,7112:207,-127,10,0,0,0.517859 -26710,7112:206,-126,10,0,0,0.520372 -26711,7112:205,-125,10,0,0,0.516165 -26712,7112:104,-124,10,0,0,0.510723 -26713,7112:103,-123,10,0,0,0.519243 -26714,7112:102,-122,10,0,0,0.53264 -26715,7112:101,-121,10,0,0,0.542601 -26716,7112:100,-120,10,0,0,0.546244 -26717,7111:209,-119,10,0,0,0.548204 -26718,7111:208,-118,10,0,0,0.542703 -26719,7111:207,-117,10,0,0,0.546117 -26720,7111:206,-116,10,0,0,0.547772 -26721,7111:205,-115,10,0,0,0.548434 -26722,7111:104,-114,10,0,0,0.557222 -26723,7111:103,-113,10,0,0,0.565267 -26724,7111:102,-112,10,0,0,0.573956 -26725,7111:101,-111,10,0,0,0.58375 -26726,7111:100,-110,10,0,0,0.596893 -26727,7110:209,-109,10,0,0,0.615944 -26728,7110:208,-108,10,0,0,0.629557 -26729,7110:207,-107,10,0,0,0.625378 -26730,7110:206,-106,10,0,0,0.622243 -26731,7110:205,-105,10,0,0,0.637428 -26732,7110:104,-104,10,0,0,0.648045 -26733,7109:104,-94,10,0,0,0.600127 -26734,7108:208,-88,10,0,0,0.611682 -26735,7108:207,-87,10,0,0,0.633931 -26736,7108:206,-86,10,0,0,0.63655 -26737,7108:205,-85,10,0,0,0.638615 -26738,7108:104,-84,10,0,0,0.639184 -26739,7108:103,-83,10,0,0,0.638235 -26740,7108:102,-82,10,0,0,0.638615 -26741,7108:101,-81,10,0,0,0.63871 -26742,7108:100,-80,10,0,0,0.638307 -26743,7107:209,-79,10,0,0,0.638781 -26744,7107:207,-77,10,0,0,0.634765 -26745,7107:206,-76,10,0,0,0.634884 -26746,7107:205,-75,10,0,0,0.638235 -26747,7107:100,-70,10,0,0,0.62831 -26748,7106:208,-68,10,0,0,0.631902 -26749,7106:205,-65,10,0,0,0.626653 -26750,7106:104,-64,10,0,0,0.626052 -26751,7106:103,-63,10,0,0,0.626461 -26752,7106:102,-62,10,0,0,0.623667 -26753,7106:101,-61,10,0,0,0.62304 -26754,7106:100,-60,10,0,0,0.62118 -26755,7105:209,-59,10,0,0,0.618493 -26756,7105:208,-58,10,0,0,0.617231 -26757,7105:207,-57,10,0,0,0.616867 -26758,7105:206,-56,10,0,0,0.616478 -26759,7105:205,-55,10,0,0,0.613023 -26760,7105:104,-54,10,0,0,0.611169 -26761,7105:103,-53,10,0,0,0.60963 -26762,7105:102,-52,10,0,0,0.607354 -26763,7105:101,-51,10,0,0,0.60468 -26764,7105:100,-50,10,0,0,0.603254 -26765,7104:209,-49,10,0,0,0.600793 -26766,7104:208,-48,10,0,0,0.597758 -26767,7104:207,-47,10,0,0,0.592584 -26768,7104:206,-46,10,0,0,0.590499 -26769,7104:205,-45,10,0,0,0.588585 -26770,7104:104,-44,10,0,0,0.586942 -26771,7104:103,-43,10,0,0,0.585745 -26772,7104:102,-42,10,0,0,0.583825 -26773,7104:101,-41,10,0,0,0.581401 -26774,7104:100,-40,10,0,0,0.578523 -26775,7103:209,-39,10,0,0,0.575388 -26776,7103:208,-38,10,0,0,0.574007 -26777,7103:207,-37,10,0,0,0.57192 -26778,7103:206,-36,10,0,0,0.568521 -26779,7103:205,-35,10,0,0,0.565797 -26780,7103:104,-34,10,0,0,0.563373 -26781,7103:103,-33,10,0,0,0.560691 -26782,7103:102,-32,10,0,0,0.558286 -26783,7103:101,-31,10,0,0,0.556207 -26784,7103:100,-30,10,0,0,0.555929 -26785,7102:209,-29,10,0,0,0.555649 -26786,7102:208,-28,10,0,0,0.553848 -26787,7102:207,-27,10,0,0,0.554051 -26788,7102:206,-26,10,0,0,0.552146 -26789,7102:205,-25,10,0,0,0.551486 -26790,7102:104,-24,10,0,0,0.549858 -26791,7102:103,-23,10,0,0,0.55024 -26792,7102:102,-22,10,0,0,0.547772 -26793,7102:101,-21,10,0,0,0.548561 -26794,7102:100,-20,10,0,0,0.542346 -26795,7101:209,-19,10,0,0,0.536858 -26796,7101:208,-18,10,0,0,0.549375 -26797,7101:207,-17,10,0,0,0.527906 -26798,1103:208,38,10,0,0,0.642542 -26799,1103:209,39,10,0,0,0.657684 -26800,1104:100,40,10,0,0,0.665047 -26801,1104:101,41,10,0,0,0.643932 -26802,1105:207,57,10,0,0,0.581401 -26803,1105:208,58,10,0,0,0.587788 -26804,1105:209,59,10,0,0,0.588236 -26805,1106:100,60,10,0,0,0.588833 -26806,1106:101,61,10,0,0,0.594988 -26807,1106:102,62,10,0,0,0.597536 -26808,1106:103,63,10,0,0,0.596473 -26809,1106:104,64,10,0,0,0.597536 -26810,1106:205,65,10,0,0,0.600621 -26811,1106:206,66,10,0,0,0.606374 -26812,1106:207,67,10,0,0,0.610827 -26813,1106:208,68,10,0,0,0.623981 -26814,1106:209,69,10,0,0,0.63424 -26815,1107:100,70,10,0,0,0.636764 -26816,1107:101,71,10,0,0,0.632977 -26817,1107:102,72,10,0,0,0.638497 -26818,1108:205,85,10,0,0,0.598968 -26819,1108:206,86,10,0,0,0.608872 -26820,1108:207,87,10,0,0,0.61728 -26821,1108:208,88,10,0,0,0.619946 -26822,1108:209,89,10,0,0,0.627133 -26823,1109:100,90,10,0,0,0.627782 -26824,1109:101,91,10,0,0,0.626244 -26825,1109:102,92,10,0,0,0.628694 -26826,1109:103,93,10,0,0,0.635479 -26827,1109:104,94,10,0,0,0.639657 -26828,1110:207,107,10,0,0,0.544029 -26829,1110:208,108,10,0,0,0.574735 -26830,1110:209,109,10,0,0,0.552374 -26831,1111:101,111,10,0,0,0.56461 -26832,1111:102,112,10,0,0,0.571417 -26833,1111:103,113,10,0,0,0.577044 -26834,1111:104,114,10,0,0,0.578548 -26835,1111:205,115,10,0,0,0.578673 -26836,1111:206,116,10,0,0,0.586942 -26837,1111:207,117,10,0,0,0.590574 -26838,1111:208,118,10,0,0,0.592535 -26839,1111:209,119,10,0,0,0.602665 -26840,1112:100,120,10,0,0,0.611047 -26841,1112:102,122,10,0,0,0.601261 -26842,1112:103,123,10,0,0,0.620285 -26843,1112:104,124,10,0,0,0.59318 -26844,1112:205,125,10,0,0,0.602025 -26845,1112:206,126,10,0,0,0.604606 -26846,1112:207,127,10,0,0,0.60296 -26847,1112:208,128,10,0,0,0.60291 -26848,1112:209,129,10,0,0,0.606766 -26849,1113:100,130,10,0,0,0.6087 -26850,1113:101,131,10,0,0,0.610754 -26851,1113:102,132,10,0,0,0.613364 -26852,1113:103,133,10,0,0,0.617959 -26853,1113:104,134,10,0,0,0.62316 -26854,1113:205,135,10,0,0,0.623112 -26855,1113:206,136,10,0,0,0.625353 -26856,1113:207,137,10,0,0,0.628045 -26857,1113:208,138,10,0,0,0.63018 -26858,1113:209,139,10,0,0,0.630491 -26859,1114:100,140,10,0,0,0.629868 -26860,1114:101,141,10,0,0,0.629628 -26861,1114:102,142,10,0,0,0.629077 -26862,1114:103,143,10,0,0,0.628694 -26863,1114:104,144,10,0,0,0.628934 -26864,1114:205,145,10,0,0,0.628694 -26865,1114:206,146,10,0,0,0.629101 -26866,1114:207,147,10,0,0,0.629101 -26867,1114:208,148,10,0,0,0.629197 -26868,1114:209,149,10,0,0,0.628958 -26869,1115:100,150,10,0,0,0.628166 -26870,1115:101,151,10,0,0,0.629844 -26871,1115:102,152,10,0,0,0.629461 -26872,1115:103,153,10,0,0,0.628958 -26873,1115:104,154,10,0,0,0.630418 -26874,1115:205,155,10,0,0,0.629125 -26875,1115:206,156,10,0,0,0.629341 -26876,1115:207,157,10,0,0,0.628669 -26877,1115:208,158,10,0,0,0.628262 -26878,1115:209,159,10,0,0,0.627421 -26879,1116:100,160,10,0,0,0.62622 -26880,1116:101,161,10,0,0,0.627278 -26881,1116:102,162,10,0,0,0.627566 -26882,1116:103,163,10,0,0,0.625811 -26883,1116:104,164,10,0,0,0.623498 -26884,1116:205,165,10,0,0,0.620939 -26885,1116:206,166,10,0,0,0.621108 -26886,1116:207,167,10,0,0,0.620454 -26887,1116:208,168,10,0,0,0.617523 -26888,1116:209,169,10,0,0,0.618686 -26889,1117:100,170,10,0,0,0.618348 -26890,1117:101,171,10,0,0,0.616892 -26891,1117:102,172,10,0,0,0.615433 -26892,1117:103,173,10,0,0,0.614996 -26893,1117:104,174,10,0,0,0.613242 -26894,1117:205,175,10,0,0,0.61134 -26895,1117:206,176,10,0,0,0.609435 -26896,1117:207,177,10,0,0,0.607844 -26897,1117:208,178,10,0,0,0.606643 -26898,1117:209,179,10,0,0,0.605613 -26899,1118:100,180,10,0,0,0.602763 -26900,7118:110,-180,11,0,0,0.594419 -26901,7117:219,-179,11,0,0,0.59625 -26902,7117:218,-178,11,0,0,0.594171 -26903,7117:217,-177,11,0,0,0.589927 -26904,7117:216,-176,11,0,0,0.590996 -26905,7117:215,-175,11,0,0,0.586019 -26906,7117:114,-174,11,0,0,0.5834 -26907,7117:113,-173,11,0,0,0.58075 -26908,7117:112,-172,11,0,0,0.577545 -26909,7117:111,-171,11,0,0,0.576166 -26910,7117:110,-170,11,0,0,0.580701 -26911,7116:219,-169,11,0,0,0.584798 -26912,7116:218,-168,11,0,0,0.584024 -26913,7116:217,-167,11,0,0,0.584748 -26914,7116:216,-166,11,0,0,0.583025 -26915,7116:215,-165,11,0,0,0.568572 -26916,7116:114,-164,11,0,0,0.565166 -26917,7116:113,-163,11,0,0,0.565898 -26918,7116:112,-162,11,0,0,0.572725 -26919,7116:111,-161,11,0,0,0.580901 -26920,7116:110,-160,11,0,0,0.581176 -26921,7115:219,-159,11,0,0,0.577796 -26922,7115:218,-158,11,0,0,0.577645 -26923,7115:217,-157,11,0,0,0.579399 -26924,7115:216,-156,11,0,0,0.565469 -26925,7115:215,-155,11,0,0,0.558742 -26926,7115:114,-154,11,0,0,0.561426 -26927,7115:113,-153,11,0,0,0.55783 -26928,7115:112,-152,11,0,0,0.549121 -26929,7115:111,-151,11,0,0,0.545251 -26930,7115:110,-150,11,0,0,0.543391 -26931,7114:219,-149,11,0,0,0.54028 -26932,7114:218,-148,11,0,0,0.5413 -26933,7114:217,-147,11,0,0,0.538416 -26934,7114:216,-146,11,0,0,0.541249 -26935,7114:215,-145,11,0,0,0.537547 -26936,7114:114,-144,11,0,0,0.534072 -26937,7114:113,-143,11,0,0,0.531566 -26938,7114:112,-142,11,0,0,0.525268 -26939,7114:111,-141,11,0,0,0.525242 -26940,7114:110,-140,11,0,0,0.522474 -26941,7113:219,-139,11,0,0,0.517242 -26942,7113:218,-138,11,0,0,0.515318 -26943,7113:217,-137,11,0,0,0.512828 -26944,7113:216,-136,11,0,0,0.515318 -26945,7113:215,-135,11,0,0,0.508567 -26946,7113:114,-134,11,0,0,0.498499 -26947,7113:113,-133,11,0,0,0.503713 -26948,7113:112,-132,11,0,0,0.496572 -26949,7113:111,-131,11,0,0,0.491333 -26950,7113:110,-130,11,0,0,0.492617 -26951,7112:219,-129,11,0,0,0.487816 -26952,7112:218,-128,11,0,0,0.482298 -26953,7112:217,-127,11,0,0,0.483582 -26954,7112:216,-126,11,0,0,0.484479 -26955,7112:215,-125,11,0,0,0.47999 -26956,7112:114,-124,11,0,0,0.481734 -26957,7112:113,-123,11,0,0,0.480836 -26958,7112:112,-122,11,0,0,0.482915 -26959,7112:111,-121,11,0,0,0.489074 -26960,7112:110,-120,11,0,0,0.501247 -26961,7111:219,-119,11,0,0,0.508798 -26962,7111:218,-118,11,0,0,0.517935 -26963,7111:217,-117,11,0,0,0.521423 -26964,7111:216,-116,11,0,0,0.516832 -26965,7111:215,-115,11,0,0,0.521833 -26966,7111:114,-114,11,0,0,0.533791 -26967,7111:113,-113,11,0,0,0.541708 -26968,7111:112,-112,11,0,0,0.550799 -26969,7111:111,-111,11,0,0,0.557019 -26970,7111:110,-110,11,0,0,0.563296 -26971,7110:219,-109,11,0,0,0.57285 -26972,7110:218,-108,11,0,0,0.596275 -26973,7110:217,-107,11,0,0,0.605932 -26974,7110:216,-106,11,0,0,0.623281 -26975,7109:216,-96,11,0,0,0.578022 -26976,7109:215,-95,11,0,0,0.578147 -26977,7109:114,-94,11,0,0,0.584349 -26978,7109:113,-93,11,0,0,0.586917 -26979,7109:112,-92,11,0,0,0.594419 -26980,7109:111,-91,11,0,0,0.588684 -26981,7108:217,-87,11,0,0,0.632762 -26982,7108:216,-86,11,0,0,0.633048 -26983,7108:215,-85,11,0,0,0.625498 -26984,7108:114,-84,11,0,0,0.620817 -26985,7108:113,-83,11,0,0,0.616284 -26986,7108:112,-82,11,0,0,0.619075 -26987,7108:111,-81,11,0,0,0.619317 -26988,7108:110,-80,11,0,0,0.624222 -26989,7107:219,-79,11,0,0,0.626052 -26990,7107:218,-78,11,0,0,0.620213 -26991,7107:114,-74,11,0,0,0.610119 -26992,7107:113,-73,11,0,0,0.621639 -26993,7107:112,-72,11,0,0,0.61808 -26994,7107:111,-71,11,0,0,0.612902 -26995,7107:110,-70,11,0,0,0.616042 -26996,7106:219,-69,11,0,0,0.619971 -26997,7106:218,-68,11,0,0,0.623595 -26998,7106:217,-67,11,0,0,0.625257 -26999,7106:216,-66,11,0,0,0.623595 -27000,7106:215,-65,11,0,0,0.623258 -27001,7106:114,-64,11,0,0,0.623764 -27002,7106:113,-63,11,0,0,0.621785 -27003,7106:112,-62,11,0,0,0.616478 -27004,7106:111,-61,11,0,0,0.61762 -27005,7106:110,-60,11,0,0,0.615385 -27006,7105:219,-59,11,0,0,0.613608 -27007,7105:218,-58,11,0,0,0.612902 -27008,7105:217,-57,11,0,0,0.610632 -27009,7105:216,-56,11,0,0,0.608407 -27010,7105:215,-55,11,0,0,0.607549 -27011,7105:114,-54,11,0,0,0.60777 -27012,7105:113,-53,11,0,0,0.60409 -27013,7105:112,-52,11,0,0,0.599856 -27014,7105:111,-51,11,0,0,0.596126 -27015,7105:110,-50,11,0,0,0.592957 -27016,7104:219,-49,11,0,0,0.590797 -27017,7104:218,-48,11,0,0,0.59184 -27018,7104:217,-47,11,0,0,0.590027 -27019,7104:216,-46,11,0,0,0.588585 -27020,7104:215,-45,11,0,0,0.584499 -27021,7104:114,-44,11,0,0,0.579975 -27022,7104:113,-43,11,0,0,0.578422 -27023,7104:112,-42,11,0,0,0.575514 -27024,7104:111,-41,11,0,0,0.576066 -27025,7104:110,-40,11,0,0,0.575012 -27026,7103:219,-39,11,0,0,0.57104 -27027,7103:218,-38,11,0,0,0.568446 -27028,7103:217,-37,11,0,0,0.568017 -27029,7103:216,-36,11,0,0,0.565595 -27030,7103:215,-35,11,0,0,0.56269 -27031,7103:114,-34,11,0,0,0.557855 -27032,7103:113,-33,11,0,0,0.554178 -27033,7103:112,-32,11,0,0,0.553162 -27034,7103:111,-31,11,0,0,0.55085 -27035,7103:110,-30,11,0,0,0.550189 -27036,7102:219,-29,11,0,0,0.546932 -27037,7102:218,-28,11,0,0,0.545506 -27038,7102:217,-27,11,0,0,0.544079 -27039,7102:216,-26,11,0,0,0.541377 -27040,7102:215,-25,11,0,0,0.537956 -27041,7102:114,-24,11,0,0,0.535784 -27042,7102:113,-23,11,0,0,0.532231 -27043,7102:112,-22,11,0,0,0.52852 -27044,7102:111,-21,11,0,0,0.522372 -27045,7102:110,-20,11,0,0,0.50754 -27046,7101:219,-19,11,0,0,0.517191 -27047,7101:218,-18,11,0,0,0.50659 -27048,7101:217,-17,11,0,0,0.49873 -27049,1103:217,37,11,0,0,0.64077 -27050,1103:218,38,11,0,0,0.650992 -27051,1103:219,39,11,0,0,0.65597 -27052,1104:110,40,11,0,0,0.650968 -27053,1105:218,58,11,0,0,0.572625 -27054,1105:219,59,11,0,0,0.572775 -27055,1106:110,60,11,0,0,0.588286 -27056,1106:111,61,11,0,0,0.587215 -27057,1106:112,62,11,0,0,0.592038 -27058,1106:113,63,11,0,0,0.589803 -27059,1106:114,64,11,0,0,0.591964 -27060,1106:215,65,11,0,0,0.587365 -27061,1106:216,66,11,0,0,0.592807 -27062,1106:217,67,11,0,0,0.599609 -27063,1106:218,68,11,0,0,0.619631 -27064,1106:219,69,11,0,0,0.619801 -27065,1107:110,70,11,0,0,0.61779 -27066,1107:111,71,11,0,0,0.625474 -27067,1107:112,72,11,0,0,0.630107 -27068,1108:217,87,11,0,0,0.597857 -27069,1108:218,88,11,0,0,0.598449 -27070,1108:219,89,11,0,0,0.611292 -27071,1109:110,90,11,0,0,0.621518 -27072,1109:111,91,11,0,0,0.631711 -27073,1109:112,92,11,0,0,0.639918 -27074,1109:113,93,11,0,0,0.633907 -27075,1110:217,107,11,0,0,0.519321 -27076,1110:218,108,11,0,0,0.535504 -27077,1110:219,109,11,0,0,0.526805 -27078,1111:110,110,11,0,0,0.501863 -27079,1111:111,111,11,0,0,0.495879 -27080,1111:112,112,11,0,0,0.55499 -27081,1111:113,113,11,0,0,0.558995 -27082,1111:114,114,11,0,0,0.571719 -27083,1111:215,115,11,0,0,0.576919 -27084,1111:216,116,11,0,0,0.584099 -27085,1111:217,117,11,0,0,0.591046 -27086,1111:218,118,11,0,0,0.594988 -27087,1111:219,119,11,0,0,0.600177 -27088,1112:110,120,11,0,0,0.604238 -27089,1112:111,121,11,0,0,0.60136 -27090,1112:112,122,11,0,0,0.58365 -27091,1112:113,123,11,0,0,0.581301 -27092,1112:114,124,11,0,0,0.579074 -27093,1112:215,125,11,0,0,0.577997 -27094,1112:216,126,11,0,0,0.576392 -27095,1112:217,127,11,0,0,0.580201 -27096,1112:218,128,11,0,0,0.584898 -27097,1112:219,129,11,0,0,0.586892 -27098,1113:110,130,11,0,0,0.588659 -27099,1113:111,131,11,0,0,0.596077 -27100,1113:112,132,11,0,0,0.597017 -27101,1113:113,133,11,0,0,0.598623 -27102,1113:114,134,11,0,0,0.597288 -27103,1113:215,135,11,0,0,0.606912 -27104,1113:216,136,11,0,0,0.607574 -27105,1113:217,137,11,0,0,0.607893 -27106,1113:218,138,11,0,0,0.616673 -27107,1113:219,139,11,0,0,0.622702 -27108,1114:110,140,11,0,0,0.621639 -27109,1114:111,141,11,0,0,0.621785 -27110,1114:112,142,11,0,0,0.621639 -27111,1114:113,143,11,0,0,0.621591 -27112,1114:114,144,11,0,0,0.625233 -27113,1114:215,145,11,0,0,0.623547 -27114,1114:216,146,11,0,0,0.621132 -27115,1114:217,147,11,0,0,0.624125 -27116,1114:218,148,11,0,0,0.624294 -27117,1114:219,149,11,0,0,0.624318 -27118,1115:110,150,11,0,0,0.624535 -27119,1115:111,151,11,0,0,0.62263 -27120,1115:112,152,11,0,0,0.622171 -27121,1115:113,153,11,0,0,0.622099 -27122,1115:114,154,11,0,0,0.622099 -27123,1115:215,155,11,0,0,0.62386 -27124,1115:216,156,11,0,0,0.623258 -27125,1115:217,157,11,0,0,0.622002 -27126,1115:218,158,11,0,0,0.620696 -27127,1115:219,159,11,0,0,0.619608 -27128,1116:110,160,11,0,0,0.618105 -27129,1116:111,161,11,0,0,0.617377 -27130,1116:112,162,11,0,0,0.618251 -27131,1116:113,163,11,0,0,0.618953 -27132,1116:114,164,11,0,0,0.617377 -27133,1116:215,165,11,0,0,0.611657 -27134,1116:216,166,11,0,0,0.611121 -27135,1116:217,167,11,0,0,0.613778 -27136,1116:218,168,11,0,0,0.613828 -27137,1116:219,169,11,0,0,0.611999 -27138,1117:110,170,11,0,0,0.610192 -27139,1117:111,171,11,0,0,0.609117 -27140,1117:112,172,11,0,0,0.6063 -27141,1117:113,173,11,0,0,0.605515 -27142,1117:114,174,11,0,0,0.602049 -27143,1117:215,175,11,0,0,0.601705 -27144,1117:216,176,11,0,0,0.600201 -27145,1117:217,177,11,0,0,0.594518 -27146,1117:218,178,11,0,0,0.597437 -27147,1117:219,179,11,0,0,0.598128 -27148,1118:110,180,11,0,0,0.594419 -27149,7118:120,-180,12,0,0,0.583225 -27150,7117:229,-179,12,0,0,0.584548 -27151,7117:228,-178,12,0,0,0.582526 -27152,7117:227,-177,12,0,0,0.579975 -27153,7117:226,-176,12,0,0,0.579023 -27154,7117:225,-175,12,0,0,0.576893 -27155,7117:124,-174,12,0,0,0.575966 -27156,7117:123,-173,12,0,0,0.573605 -27157,7117:122,-172,12,0,0,0.571014 -27158,7117:121,-171,12,0,0,0.568017 -27159,7117:120,-170,12,0,0,0.563499 -27160,7116:229,-169,12,0,0,0.561704 -27161,7116:228,-168,12,0,0,0.560641 -27162,7116:227,-167,12,0,0,0.571518 -27163,7116:226,-166,12,0,0,0.572348 -27164,7116:225,-165,12,0,0,0.559071 -27165,7116:124,-164,12,0,0,0.558843 -27166,7116:123,-163,12,0,0,0.565166 -27167,7116:122,-162,12,0,0,0.571493 -27168,7116:121,-161,12,0,0,0.569051 -27169,7116:120,-160,12,0,0,0.558514 -27170,7115:229,-159,12,0,0,0.560388 -27171,7115:227,-157,12,0,0,0.554457 -27172,7115:226,-156,12,0,0,0.554762 -27173,7115:225,-155,12,0,0,0.555853 -27174,7115:124,-154,12,0,0,0.552374 -27175,7115:123,-153,12,0,0,0.547136 -27176,7115:122,-152,12,0,0,0.54492 -27177,7115:121,-151,12,0,0,0.539335 -27178,7115:120,-150,12,0,0,0.537394 -27179,7114:229,-149,12,0,0,0.532027 -27180,7114:228,-148,12,0,0,0.526855 -27181,7114:227,-147,12,0,0,0.524627 -27182,7114:226,-146,12,0,0,0.520603 -27183,7114:225,-145,12,0,0,0.514318 -27184,7114:124,-144,12,0,0,0.513804 -27185,7114:123,-143,12,0,0,0.512084 -27186,7114:122,-142,12,0,0,0.511596 -27187,7114:121,-141,12,0,0,0.505177 -27188,7114:120,-140,12,0,0,0.504535 -27189,7113:229,-139,12,0,0,0.495571 -27190,7113:228,-138,12,0,0,0.495108 -27191,7113:227,-137,12,0,0,0.486481 -27192,7113:226,-136,12,0,0,0.49349 -27193,7113:225,-135,12,0,0,0.495879 -27194,7113:124,-134,12,0,0,0.489895 -27195,7113:123,-133,12,0,0,0.477016 -27196,7113:122,-132,12,0,0,0.471226 -27197,7113:121,-131,12,0,0,0.47453 -27198,7113:120,-130,12,0,0,0.471944 -27199,7112:229,-129,12,0,0,0.467593 -27200,7112:228,-128,12,0,0,0.46703 -27201,7112:227,-127,12,0,0,0.462302 -27203,7112:225,-125,12,0,0,0.461945 -27204,7112:124,-124,12,0,0,0.460745 -27205,7112:123,-123,12,0,0,0.459162 -27206,7112:122,-122,12,0,0,0.461587 -27207,7112:121,-121,12,0,0,0.460872 -27208,7112:120,-120,12,0,0,0.465828 -27209,7111:229,-119,12,0,0,0.4679 -27210,7111:228,-118,12,0,0,0.474812 -27211,7111:227,-117,12,0,0,0.479092 -27212,7111:226,-116,12,0,0,0.489665 -27213,7111:225,-115,12,0,0,0.501273 -27214,7111:124,-114,12,0,0,0.517397 -27215,7111:123,-113,12,0,0,0.528443 -27216,7111:122,-112,12,0,0,0.528111 -27217,7111:121,-111,12,0,0,0.520372 -27218,7111:120,-110,12,0,0,0.536781 -27219,7110:229,-109,12,0,0,0.58395 -27220,7110:228,-108,12,0,0,0.586319 -27221,7110:227,-107,12,0,0,0.608113 -27222,7110:226,-106,12,0,0,0.60799 -27223,7109:227,-97,12,0,0,0.576191 -27224,7109:226,-96,12,0,0,0.579149 -27225,7109:225,-95,12,0,0,0.582226 -27226,7109:124,-94,12,0,0,0.584898 -27227,7109:123,-93,12,0,0,0.583799 -27228,7109:122,-92,12,0,0,0.59189 -27229,7109:121,-91,12,0,0,0.585247 -27230,7109:120,-90,12,0,0,0.580376 -27231,7108:229,-89,12,0,0,0.5836 -27232,7108:226,-86,12,0,0,0.631782 -27233,7108:225,-85,12,0,0,0.613608 -27234,7108:124,-84,12,0,0,0.611145 -27235,7108:122,-82,12,0,0,0.612755 -27236,7108:121,-81,12,0,0,0.613754 -27237,7108:120,-80,12,0,0,0.615895 -27238,7107:229,-79,12,0,0,0.592733 -27239,7107:226,-76,12,0,0,0.610803 -27240,7107:225,-75,12,0,0,0.606079 -27241,7107:124,-74,12,0,0,0.612585 -27242,7107:123,-73,12,0,0,0.612975 -27243,7107:122,-72,12,0,0,0.604606 -27244,7107:121,-71,12,0,0,0.606079 -27245,7107:120,-70,12,0,0,0.612194 -27246,7106:229,-69,12,0,0,0.612682 -27247,7106:228,-68,12,0,0,0.613194 -27248,7106:227,-67,12,0,0,0.61745 -27249,7106:226,-66,12,0,0,0.618274 -27250,7106:225,-65,12,0,0,0.614582 -27251,7106:124,-64,12,0,0,0.614947 -27252,7106:123,-63,12,0,0,0.615385 -27253,7106:122,-62,12,0,0,0.613267 -27254,7106:121,-61,12,0,0,0.613097 -27255,7106:120,-60,12,0,0,0.613511 -27256,7105:229,-59,12,0,0,0.611047 -27257,7105:228,-58,12,0,0,0.607672 -27258,7105:227,-57,12,0,0,0.606962 -27259,7105:226,-56,12,0,0,0.604434 -27260,7105:225,-55,12,0,0,0.60232 -27261,7105:124,-54,12,0,0,0.600744 -27262,7105:123,-53,12,0,0,0.59882 -27263,7105:122,-52,12,0,0,0.596597 -27264,7105:121,-51,12,0,0,0.59583 -27265,7105:120,-50,12,0,0,0.593204 -27266,7104:229,-49,12,0,0,0.588012 -27267,7104:228,-48,12,0,0,0.585646 -27268,7104:227,-47,12,0,0,0.58572 -27269,7104:226,-46,12,0,0,0.583725 -27270,7104:225,-45,12,0,0,0.580125 -27271,7104:124,-44,12,0,0,0.575765 -27272,7104:123,-43,12,0,0,0.575765 -27273,7104:122,-42,12,0,0,0.572046 -27274,7104:121,-41,12,0,0,0.570461 -27275,7104:120,-40,12,0,0,0.568572 -27276,7103:229,-39,12,0,0,0.564485 -27277,7103:228,-38,12,0,0,0.563296 -27278,7103:227,-37,12,0,0,0.562209 -27279,7103:226,-36,12,0,0,0.560515 -27280,7103:225,-35,12,0,0,0.558261 -27281,7103:124,-34,12,0,0,0.558236 -27282,7103:123,-33,12,0,0,0.554482 -27283,7103:122,-32,12,0,0,0.549909 -27284,7103:121,-31,12,0,0,0.546779 -27285,7103:120,-30,12,0,0,0.543748 -27286,7102:229,-29,12,0,0,0.541708 -27287,7102:228,-28,12,0,0,0.539948 -27288,7102:227,-27,12,0,0,0.539156 -27289,7102:226,-26,12,0,0,0.536986 -27290,7102:225,-25,12,0,0,0.534456 -27291,7102:124,-24,12,0,0,0.531259 -27292,7102:123,-23,12,0,0,0.527214 -27293,7102:122,-22,12,0,0,0.522167 -27294,7102:121,-21,12,0,0,0.517551 -27295,7102:120,-20,12,0,0,0.505691 -27296,7101:229,-19,12,0,0,0.500066 -27297,7101:228,-18,12,0,0,0.487739 -27298,1103:227,37,12,0,0,0.632427 -27299,1103:228,38,12,0,0,0.647271 -27300,1106:120,60,12,0,0,0.57985 -27301,1106:121,61,12,0,0,0.58724 -27302,1106:122,62,12,0,0,0.584548 -27303,1106:123,63,12,0,0,0.586144 -27304,1106:124,64,12,0,0,0.579674 -27305,1106:225,65,12,0,0,0.58065 -27306,1106:226,66,12,0,0,0.588808 -27307,1106:227,67,12,0,0,0.603353 -27308,1106:228,68,12,0,0,0.609508 -27309,1106:229,69,12,0,0,0.61256 -27310,1107:122,72,12,0,0,0.617911 -28933,7214:104,-144,20,0,0,0.41528 -27311,1108:228,88,12,0,0,0.582651 -27312,1108:229,89,12,0,0,0.585297 -27313,1109:120,90,12,0,0,0.585771 -27314,1109:121,91,12,0,0,0.573982 -27315,1109:122,92,12,0,0,0.606324 -27316,1110:229,109,12,0,0,0.493105 -27317,1111:120,110,12,0,0,0.47699 -27318,1111:122,112,12,0,0,0.486943 -27319,1111:123,113,12,0,0,0.506924 -27320,1111:124,114,12,0,0,0.524114 -27321,1111:225,115,12,0,0,0.542626 -27322,1111:226,116,12,0,0,0.567084 -27323,1111:227,117,12,0,0,0.575062 -27324,1111:228,118,12,0,0,0.583999 -27325,1111:229,119,12,0,0,0.576417 -27326,1112:120,120,12,0,0,0.572926 -27327,1112:121,121,12,0,0,0.569655 -27328,1112:122,122,12,0,0,0.561375 -27329,1112:123,123,12,0,0,0.556638 -27330,1112:124,124,12,0,0,0.56231 -27331,1112:225,125,12,0,0,0.560135 -27332,1112:226,126,12,0,0,0.5594 -27333,1112:227,127,12,0,0,0.561755 -27334,1112:228,128,12,0,0,0.56958 -27335,1112:229,129,12,0,0,0.576442 -27336,1113:120,130,12,0,0,0.577044 -27337,1113:121,131,12,0,0,0.575639 -27338,1113:122,132,12,0,0,0.580926 -27339,1113:123,133,12,0,0,0.587291 -27340,1113:124,134,12,0,0,0.586618 -27341,1113:225,135,12,0,0,0.593353 -27342,1113:226,136,12,0,0,0.599609 -27343,1113:227,137,12,0,0,0.608799 -27344,1113:228,138,12,0,0,0.60941 -27345,1113:229,139,12,0,0,0.60657 -27346,1114:120,140,12,0,0,0.61373 -27347,1114:121,141,12,0,0,0.611633 -27348,1114:122,142,12,0,0,0.613535 -27349,1114:123,143,12,0,0,0.610827 -27350,1114:124,144,12,0,0,0.612926 -27351,1114:225,145,12,0,0,0.617134 -27352,1114:226,146,12,0,0,0.615798 -27353,1114:227,147,12,0,0,0.613973 -27354,1114:228,148,12,0,0,0.616211 -27355,1114:229,149,12,0,0,0.618032 -27356,1115:120,150,12,0,0,0.619801 -27357,1115:121,151,12,0,0,0.617596 -27358,1115:122,152,12,0,0,0.617887 -27359,1115:123,153,12,0,0,0.616139 -27360,1115:124,154,12,0,0,0.61728 -27361,1115:225,155,12,0,0,0.61626 -27362,1115:226,156,12,0,0,0.615215 -27363,1115:227,157,12,0,0,0.615482 -27364,1115:228,158,12,0,0,0.613584 -27365,1115:229,159,12,0,0,0.613998 -27366,1116:120,160,12,0,0,0.613437 -27367,1116:121,161,12,0,0,0.611219 -27368,1116:122,162,12,0,0,0.609826 -27369,1116:123,163,12,0,0,0.610437 -27370,1116:124,164,12,0,0,0.610999 -27371,1116:225,165,12,0,0,0.606496 -27372,1116:226,166,12,0,0,0.607182 -27373,1116:227,167,12,0,0,0.606472 -27374,1116:228,168,12,0,0,0.607133 -27375,1116:229,169,12,0,0,0.606447 -27376,1117:120,170,12,0,0,0.600103 -27377,1117:121,171,12,0,0,0.596126 -27378,1117:122,172,12,0,0,0.598746 -27379,1117:123,173,12,0,0,0.598968 -27380,1117:124,174,12,0,0,0.597956 -27381,1117:225,175,12,0,0,0.595087 -27382,1117:226,176,12,0,0,0.589952 -27383,1117:227,177,12,0,0,0.584573 -27384,1117:228,178,12,0,0,0.582501 -27385,1117:229,179,12,0,0,0.582876 -27386,1118:120,180,12,0,0,0.583225 -27387,7118:130,-180,13,0,0,0.576392 -27388,7117:239,-179,13,0,0,0.573052 -27389,7117:238,-178,13,0,0,0.571467 -27390,7117:237,-177,13,0,0,0.569428 -27391,7117:236,-176,13,0,0,0.568496 -27392,7117:235,-175,13,0,0,0.568521 -27393,7117:134,-174,13,0,0,0.56456 -27394,7117:133,-173,13,0,0,0.563625 -27395,7117:132,-172,13,0,0,0.561755 -27396,7117:131,-171,13,0,0,0.559805 -27397,7117:130,-170,13,0,0,0.558666 -27398,7116:239,-169,13,0,0,0.550901 -27399,7116:238,-168,13,0,0,0.552756 -27400,7116:237,-167,13,0,0,0.560009 -27401,7116:236,-166,13,0,0,0.552374 -27402,7116:235,-165,13,0,0,0.545659 -27403,7116:134,-164,13,0,0,0.544869 -27404,7116:133,-163,13,0,0,0.550672 -27405,7116:132,-162,13,0,0,0.548307 -27406,7116:131,-161,13,0,0,0.548968 -27407,7116:130,-160,13,0,0,0.548332 -27408,7115:239,-159,13,0,0,0.545022 -27409,7115:238,-158,13,0,0,0.547339 -27410,7115:237,-157,13,0,0,0.547798 -27411,7115:236,-156,13,0,0,0.54548 -27412,7115:235,-155,13,0,0,0.541912 -27413,7115:134,-154,13,0,0,0.540406 -27414,7115:133,-153,13,0,0,0.536449 -27415,7115:132,-152,13,0,0,0.532001 -27416,7115:131,-151,13,0,0,0.527342 -27417,7115:130,-150,13,0,0,0.526548 -27418,7114:239,-149,13,0,0,0.525165 -27419,7114:238,-148,13,0,0,0.521295 -27420,7114:237,-147,13,0,0,0.516165 -27421,7114:236,-146,13,0,0,0.512084 -27422,7114:235,-145,13,0,0,0.507411 -27423,7114:134,-144,13,0,0,0.502891 -27424,7114:133,-143,13,0,0,0.499809 -27425,7114:132,-142,13,0,0,0.49498 -27426,7114:131,-141,13,0,0,0.489665 -27427,7114:130,-140,13,0,0,0.491436 -27428,7113:239,-139,13,0,0,0.484428 -27429,7113:238,-138,13,0,0,0.478836 -27430,7113:237,-137,13,0,0,0.469 -27431,7113:236,-136,13,0,0,0.468181 -27432,7113:235,-135,13,0,0,0.464295 -27433,7113:134,-134,13,0,0,0.466493 -27434,7113:133,-133,13,0,0,0.456306 -27435,7113:132,-132,13,0,0,0.454955 -27436,7113:131,-131,13,0,0,0.450577 -27437,7113:130,-130,13,0,0,0.445597 -27438,7112:239,-129,13,0,0,0.450017 -27439,7112:238,-128,13,0,0,0.44801 -27440,7112:237,-127,13,0,0,0.444176 -27441,7112:236,-126,13,0,0,0.447679 -27442,7112:235,-125,13,0,0,0.448162 -27443,7112:134,-124,13,0,0,0.448568 -27444,7112:133,-123,13,0,0,0.446892 -27445,7112:132,-122,13,0,0,0.446181 -27446,7112:131,-121,13,0,0,0.443187 -27447,7112:130,-120,13,0,0,0.444709 -27448,7111:239,-119,13,0,0,0.447247 -27449,7111:238,-118,13,0,0,0.458014 -27450,7111:237,-117,13,0,0,0.457708 -27451,7111:236,-116,13,0,0,0.463656 -27452,7111:235,-115,13,0,0,0.476401 -27453,7111:134,-114,13,0,0,0.485557 -27454,7111:133,-113,13,0,0,0.489818 -27455,7111:132,-112,13,0,0,0.504253 -27456,7111:131,-111,13,0,0,0.542396 -27457,7111:130,-110,13,0,0,0.571895 -27458,7110:239,-109,13,0,0,0.568395 -27459,7110:238,-108,13,0,0,0.581226 -27460,7110:237,-107,13,0,0,0.592832 -27461,7109:237,-97,13,0,0,0.571995 -27462,7109:236,-96,13,0,0,0.573932 -27463,7109:235,-95,13,0,0,0.576191 -27464,7109:134,-94,13,0,0,0.580401 -27465,7109:133,-93,13,0,0,0.581026 -27466,7109:132,-92,13,0,0,0.580576 -27467,7109:131,-91,13,0,0,0.57955 -27468,7109:130,-90,13,0,0,0.578397 -27469,7108:239,-89,13,0,0,0.581826 -27470,7108:238,-88,13,0,0,0.593502 -27471,7108:237,-87,13,0,0,0.622967 -27472,7108:236,-86,13,0,0,0.61502 -27473,7108:235,-85,13,0,0,0.607844 -27474,7108:134,-84,13,0,0,0.607354 -27475,7107:239,-79,13,0,0,0.602467 -27476,7107:238,-78,13,0,0,0.56779 -27477,7107:237,-77,13,0,0,0.569403 -27478,7107:236,-76,13,0,0,0.586019 -27479,7107:235,-75,13,0,0,0.596843 -27480,7107:134,-74,13,0,0,0.595756 -27481,7107:133,-73,13,0,0,0.598425 -27482,7107:132,-72,13,0,0,0.600793 -27483,7107:131,-71,13,0,0,0.603304 -27484,7107:130,-70,13,0,0,0.606201 -27485,7106:239,-69,13,0,0,0.604533 -27486,7106:238,-68,13,0,0,0.600621 -27487,7106:237,-67,13,0,0,0.601852 -27488,7106:236,-66,13,0,0,0.601803 -27489,7106:235,-65,13,0,0,0.60025 -27490,7106:134,-64,13,0,0,0.601261 -27491,7106:133,-63,13,0,0,0.602049 -27492,7106:132,-62,13,0,0,0.605343 -27493,7106:131,-61,13,0,0,0.606594 -27494,7106:130,-60,13,0,0,0.603525 -27495,7105:239,-59,13,0,0,0.600768 -27496,7105:238,-58,13,0,0,0.603378 -27497,7105:237,-57,13,0,0,0.605171 -27498,7105:236,-56,13,0,0,0.603083 -27499,7105:235,-55,13,0,0,0.598277 -27500,7105:134,-54,13,0,0,0.599042 -27501,7105:133,-53,13,0,0,0.595434 -27502,7105:132,-52,13,0,0,0.591616 -27503,7105:131,-51,13,0,0,0.590549 -27504,7105:130,-50,13,0,0,0.584324 -27505,7104:239,-49,13,0,0,0.582526 -27506,7104:238,-48,13,0,0,0.581126 -27507,7104:237,-47,13,0,0,0.57717 -27508,7104:236,-46,13,0,0,0.575488 -27509,7104:235,-45,13,0,0,0.573781 -27510,7104:134,-44,13,0,0,0.572373 -27511,7104:133,-43,13,0,0,0.571116 -27512,7104:132,-42,13,0,0,0.566529 -27513,7104:131,-41,13,0,0,0.563322 -27514,7104:130,-40,13,0,0,0.561349 -27515,7103:239,-39,13,0,0,0.557932 -27516,7103:238,-38,13,0,0,0.554914 -27517,7103:237,-37,13,0,0,0.551078 -27518,7103:236,-36,13,0,0,0.549833 -27519,7103:235,-35,13,0,0,0.550519 -27520,7103:134,-34,13,0,0,0.549732 -27521,7103:133,-33,13,0,0,0.544512 -27522,7103:132,-32,13,0,0,0.539641 -27523,7103:131,-31,13,0,0,0.539514 -27524,7103:130,-30,13,0,0,0.538543 -27525,7102:239,-29,13,0,0,0.536244 -27526,7102:238,-28,13,0,0,0.534277 -27527,7102:237,-27,13,0,0,0.533894 -27528,7102:236,-26,13,0,0,0.532717 -27529,7102:235,-25,13,0,0,0.531361 -27530,7102:134,-24,13,0,0,0.528315 -27531,7102:133,-23,13,0,0,0.525754 -27532,7102:132,-22,13,0,0,0.519474 -27533,7102:131,-21,13,0,0,0.508772 -27534,7102:130,-20,13,0,0,0.505691 -27535,7101:239,-19,13,0,0,0.485198 -27536,7101:238,-18,13,0,0,0.474838 -27537,7101:237,-17,13,0,0,0.457581 -27538,1103:236,36,13,0,0,0.588311 -27539,1103:237,37,13,0,0,0.622267 -27540,1103:238,38,13,0,0,0.629197 -27541,1106:130,60,13,0,0,0.570864 -27542,1106:131,61,13,0,0,0.57965 -27543,1106:132,62,13,0,0,0.576091 -27544,1106:133,63,13,0,0,0.575363 -27545,1106:134,64,13,0,0,0.576417 -27546,1106:235,65,13,0,0,0.579074 -27547,1106:236,66,13,0,0,0.590499 -27548,1106:237,67,13,0,0,0.596498 -27549,1106:238,68,13,0,0,0.581626 -27550,1111:237,117,13,0,0,0.489434 -27551,1111:238,118,13,0,0,0.498268 -27552,1111:239,119,13,0,0,0.522115 -27553,1112:130,120,13,0,0,0.550951 -27554,1112:132,122,13,0,0,0.56226 -27555,1112:133,123,13,0,0,0.551282 -27556,1112:134,124,13,0,0,0.553898 -27557,1112:235,125,13,0,0,0.548866 -27558,1112:236,126,13,0,0,0.550646 -27559,1112:237,127,13,0,0,0.561046 -27560,1112:238,128,13,0,0,0.568169 -27561,1112:239,129,13,0,0,0.564485 -27562,1113:130,130,13,0,0,0.558615 -27563,1113:131,131,13,0,0,0.557779 -27564,1113:132,132,13,0,0,0.568798 -27565,1113:133,133,13,0,0,0.579049 -27566,1113:134,134,13,0,0,0.573253 -27567,1113:235,135,13,0,0,0.572172 -27568,1113:236,136,13,0,0,0.5837 -27569,1113:237,137,13,0,0,0.592485 -27570,1113:238,138,13,0,0,0.589082 -27571,1113:239,139,13,0,0,0.594617 -27572,1114:130,140,13,0,0,0.597066 -27573,1114:131,141,13,0,0,0.601433 -27574,1114:132,142,13,0,0,0.603648 -27575,1114:133,143,13,0,0,0.603574 -27576,1114:134,144,13,0,0,0.605171 -27577,1114:235,145,13,0,0,0.602443 -27578,1114:236,146,13,0,0,0.604065 -27579,1114:237,147,13,0,0,0.604287 -27580,1114:238,148,13,0,0,0.607329 -27581,1114:239,149,13,0,0,0.609483 -27582,1115:130,150,13,0,0,0.609043 -27583,1115:131,151,13,0,0,0.60804 -27584,1115:132,152,13,0,0,0.603624 -27585,1115:133,153,13,0,0,0.601852 -27586,1115:134,154,13,0,0,0.602984 -27587,1115:235,155,13,0,0,0.602836 -27588,1115:236,156,13,0,0,0.605269 -27589,1115:237,157,13,0,0,0.60728 -27590,1115:238,158,13,0,0,0.609556 -27591,1115:239,159,13,0,0,0.606472 -27592,1116:130,160,13,0,0,0.607697 -27593,1116:131,161,13,0,0,0.605244 -27594,1116:132,162,13,0,0,0.60657 -27595,1116:133,163,13,0,0,0.605441 -27596,1116:134,164,13,0,0,0.604631 -27597,1116:235,165,13,0,0,0.601581 -27598,1116:236,166,13,0,0,0.601286 -27599,1116:237,167,13,0,0,0.598326 -27600,1116:238,168,13,0,0,0.596745 -27601,1116:239,169,13,0,0,0.594096 -27602,1117:130,170,13,0,0,0.595929 -27603,1117:131,171,13,0,0,0.586917 -27604,1117:132,172,13,0,0,0.588236 -27605,1117:133,173,13,0,0,0.588311 -27606,1117:134,174,13,0,0,0.579123 -27607,1117:235,175,13,0,0,0.581151 -27608,1117:236,176,13,0,0,0.583025 -27609,1117:237,177,13,0,0,0.586294 -27610,1117:238,178,13,0,0,0.5835 -27611,1117:239,179,13,0,0,0.58025 -27612,1118:130,180,13,0,0,0.576392 -27613,7118:140,-180,14,0,0,0.567311 -27614,7117:249,-179,14,0,0,0.565191 -27615,7117:248,-178,14,0,0,0.549782 -27616,7117:247,-177,14,0,0,0.558995 -27617,7117:246,-176,14,0,0,0.555877 -27618,7117:245,-175,14,0,0,0.560565 -27619,7117:144,-174,14,0,0,0.548764 -27620,7117:143,-173,14,0,0,0.549732 -27621,7117:142,-172,14,0,0,0.548663 -27622,7117:141,-171,14,0,0,0.551383 -27623,7117:140,-170,14,0,0,0.546601 -27624,7116:249,-169,14,0,0,0.545277 -27625,7116:248,-168,14,0,0,0.539003 -27626,7116:247,-167,14,0,0,0.534865 -27627,7116:246,-166,14,0,0,0.536526 -27628,7116:245,-165,14,0,0,0.533663 -27629,7116:144,-164,14,0,0,0.531156 -27630,7116:143,-163,14,0,0,0.530491 -27631,7116:142,-162,14,0,0,0.532052 -27632,7116:141,-161,14,0,0,0.533075 -27633,7116:140,-160,14,0,0,0.531617 -27634,7115:249,-159,14,0,0,0.529953 -27635,7115:248,-158,14,0,0,0.530491 -27636,7115:247,-157,14,0,0,0.530491 -27637,7115:246,-156,14,0,0,0.527957 -27638,7115:245,-155,14,0,0,0.525294 -27639,7115:144,-154,14,0,0,0.523141 -27640,7115:143,-153,14,0,0,0.5225 -27641,7115:142,-152,14,0,0,0.522372 -27642,7115:141,-151,14,0,0,0.519602 -27643,7115:140,-150,14,0,0,0.517961 -27644,7114:249,-149,14,0,0,0.516755 -27645,7114:248,-148,14,0,0,0.514574 -27646,7114:247,-147,14,0,0,0.514215 -27647,7114:246,-146,14,0,0,0.509209 -27648,7114:245,-145,14,0,0,0.502044 -27649,7114:144,-144,14,0,0,0.496753 -27650,7114:143,-143,14,0,0,0.493953 -27651,7114:142,-142,14,0,0,0.48833 -27652,7114:141,-141,14,0,0,0.485916 -27653,7114:140,-140,14,0,0,0.483376 -27654,7113:249,-139,14,0,0,0.474172 -27655,7113:248,-138,14,0,0,0.466928 -27656,7113:247,-137,14,0,0,0.461919 -27657,7113:246,-136,14,0,0,0.460592 -27658,7113:245,-135,14,0,0,0.453351 -27659,7113:144,-134,14,0,0,0.449941 -27660,7113:143,-133,14,0,0,0.445546 -27661,7113:142,-132,14,0,0,0.443744 -27662,7113:141,-131,14,0,0,0.436403 -27663,7113:140,-130,14,0,0,0.434332 -27664,7112:249,-129,14,0,0,0.434358 -27665,7112:248,-128,14,0,0,0.432112 -27666,7112:247,-127,14,0,0,0.431582 -27667,7112:246,-126,14,0,0,0.43128 -27668,7112:245,-125,14,0,0,0.432566 -27669,7112:144,-124,14,0,0,0.430222 -27670,7112:143,-123,14,0,0,0.430852 -27671,7112:142,-122,14,0,0,0.428888 -27672,7112:141,-121,14,0,0,0.432339 -27673,7112:140,-120,14,0,0,0.430978 -27674,7111:249,-119,14,0,0,0.433802 -27675,7111:248,-118,14,0,0,0.435493 -27676,7111:247,-117,14,0,0,0.448975 -27677,7111:246,-116,14,0,0,0.45386 -27678,7111:245,-115,14,0,0,0.45442 -27679,7111:144,-114,14,0,0,0.467081 -27680,7111:143,-113,14,0,0,0.531924 -27681,7111:142,-112,14,0,0,0.554051 -27682,7111:140,-110,14,0,0,0.568748 -27683,7110:249,-109,14,0,0,0.571518 -27684,7110:248,-108,14,0,0,0.568899 -27685,7109:247,-97,14,0,0,0.567815 -27686,7109:246,-96,14,0,0,0.561122 -27687,7109:245,-95,14,0,0,0.562817 -27688,7109:144,-94,14,0,0,0.568546 -27689,7109:143,-93,14,0,0,0.571518 -27690,7109:142,-92,14,0,0,0.572247 -27691,7109:141,-91,14,0,0,0.569554 -27692,7109:140,-90,14,0,0,0.566251 -27693,7108:249,-89,14,0,0,0.566529 -27694,7108:248,-88,14,0,0,0.586991 -27695,7108:247,-87,14,0,0,0.626508 -27696,7108:246,-86,14,0,0,0.60603 -27697,7108:245,-85,14,0,0,0.607549 -27698,7108:144,-84,14,0,0,0.588236 -27699,7108:143,-83,14,0,0,0.568597 -27700,7108:142,-82,14,0,0,0.572499 -27701,7108:141,-81,14,0,0,0.581801 -27702,7108:140,-80,14,0,0,0.606472 -27703,7107:249,-79,14,0,0,0.544818 -27704,7107:248,-78,14,0,0,0.548714 -27705,7107:247,-77,14,0,0,0.556258 -27706,7107:246,-76,14,0,0,0.591219 -27707,7107:245,-75,14,0,0,0.592782 -27708,7107:144,-74,14,0,0,0.588037 -27709,7107:143,-73,14,0,0,0.586892 -27710,7107:142,-72,14,0,0,0.585521 -27711,7107:141,-71,14,0,0,0.589927 -27712,7107:140,-70,14,0,0,0.586743 -27713,7106:249,-69,14,0,0,0.585222 -27714,7106:248,-68,14,0,0,0.58607 -27715,7106:247,-67,14,0,0,0.586219 -27716,7106:246,-66,14,0,0,0.585446 -27717,7106:245,-65,14,0,0,0.588137 -27718,7106:144,-64,14,0,0,0.586019 -27719,7106:143,-63,14,0,0,0.586717 -27720,7106:142,-62,14,0,0,0.585322 -27721,7106:141,-61,14,0,0,0.583974 -27722,7106:140,-60,14,0,0,0.585546 -27723,7105:249,-59,14,0,0,0.588435 -27724,7105:248,-58,14,0,0,0.587913 -27725,7105:247,-57,14,0,0,0.590077 -27726,7105:246,-56,14,0,0,0.588684 -27727,7105:245,-55,14,0,0,0.591046 -27728,7105:144,-54,14,0,0,0.591815 -27729,7105:143,-53,14,0,0,0.586568 -27730,7105:142,-52,14,0,0,0.58375 -27731,7105:141,-51,14,0,0,0.579574 -27732,7105:140,-50,14,0,0,0.573605 -27733,7104:249,-49,14,0,0,0.572096 -27734,7104:248,-48,14,0,0,0.571442 -27735,7104:247,-47,14,0,0,0.570562 -27736,7104:246,-46,14,0,0,0.566832 -27737,7104:245,-45,14,0,0,0.565519 -27738,7104:144,-44,14,0,0,0.565848 -27739,7104:143,-43,14,0,0,0.562817 -27740,7104:142,-42,14,0,0,0.55745 -27741,7104:141,-41,14,0,0,0.553924 -27742,7104:140,-40,14,0,0,0.5524 -27743,7103:249,-39,14,0,0,0.549833 -27744,7103:248,-38,14,0,0,0.54385 -27745,7103:247,-37,14,0,0,0.543213 -27746,7103:246,-36,14,0,0,0.542218 -27747,7103:245,-35,14,0,0,0.541147 -27748,7103:144,-34,14,0,0,0.539514 -27749,7103:143,-33,14,0,0,0.536117 -27750,7103:142,-32,14,0,0,0.532308 -27751,7103:141,-31,14,0,0,0.528597 -27752,7103:140,-30,14,0,0,0.52806 -27753,7102:249,-29,14,0,0,0.524166 -27754,7102:248,-28,14,0,0,0.523295 -27755,7102:247,-27,14,0,0,0.524909 -27756,7102:246,-26,14,0,0,0.525934 -27757,7102:245,-25,14,0,0,0.523833 -27758,7102:144,-24,14,0,0,0.521372 -27759,7102:143,-23,14,0,0,0.521962 -27760,7102:142,-22,14,0,0,0.517909 -27761,7102:141,-21,14,0,0,0.509671 -27762,7102:140,-20,14,0,0,0.50171 -27763,7101:249,-19,14,0,0,0.495776 -27764,7101:248,-18,14,0,0,0.487431 -27765,7101:247,-17,14,0,0,0.46174 -27766,7101:246,-16,14,0,0,0.43509 -27767,1103:246,36,14,0,0,0.594121 -27768,1103:247,37,14,0,0,0.61808 -27769,1105:142,52,14,0,0,0.551409 -27770,1105:143,53,14,0,0,0.545557 -27771,1105:247,57,14,0,0,0.55712 -27772,1105:248,58,14,0,0,0.561325 -27773,1105:249,59,14,0,0,0.564863 -27774,1106:140,60,14,0,0,0.577144 -27775,1106:141,61,14,0,0,0.570209 -27776,1106:142,62,14,0,0,0.570134 -27777,1106:143,63,14,0,0,0.575012 -27778,1106:144,64,14,0,0,0.579123 -27779,1106:245,65,14,0,0,0.582601 -27780,1106:246,66,14,0,0,0.585122 -27781,1106:247,67,14,0,0,0.553924 -27782,1111:249,119,14,0,0,0.480349 -27783,1112:140,120,14,0,0,0.540432 -27784,1112:142,122,14,0,0,0.559021 -27785,1112:143,123,14,0,0,0.543595 -27786,1112:245,125,14,0,0,0.533663 -27787,1112:246,126,14,0,0,0.539641 -27788,1112:247,127,14,0,0,0.55113 -27789,1112:248,128,14,0,0,0.553569 -27790,1112:249,129,14,0,0,0.553162 -27791,1113:140,130,14,0,0,0.547161 -27792,1113:141,131,14,0,0,0.540636 -27793,1113:142,132,14,0,0,0.539973 -27794,1113:143,133,14,0,0,0.557577 -27795,1113:144,134,14,0,0,0.567033 -27796,1113:245,135,14,0,0,0.564509 -27797,1113:246,136,14,0,0,0.57182 -27798,1113:247,137,14,0,0,0.57041 -27799,1113:248,138,14,0,0,0.57041 -27800,1113:249,139,14,0,0,0.576116 -27801,1114:140,140,14,0,0,0.585147 -27802,1114:141,141,14,0,0,0.582551 -27803,1114:142,142,14,0,0,0.581601 -27804,1114:143,143,14,0,0,0.589505 -27805,1114:144,144,14,0,0,0.594096 -27806,1114:245,145,14,0,0,0.590126 -27807,1114:246,146,14,0,0,0.589828 -27808,1114:247,147,14,0,0,0.596473 -27809,1114:248,148,14,0,0,0.59998 -27810,1114:249,149,14,0,0,0.600891 -27811,1115:140,150,14,0,0,0.598128 -27812,1115:141,151,14,0,0,0.593477 -27813,1115:142,152,14,0,0,0.590325 -27814,1115:143,153,14,0,0,0.587465 -27815,1115:144,154,14,0,0,0.58953 -27816,1115:245,155,14,0,0,0.588336 -27817,1115:246,156,14,0,0,0.593477 -27818,1115:247,157,14,0,0,0.594196 -27819,1115:248,158,14,0,0,0.591517 -27820,1115:249,159,14,0,0,0.590996 -27821,1116:140,160,14,0,0,0.587714 -27822,1116:141,161,14,0,0,0.586917 -27823,1116:142,162,14,0,0,0.590624 -27824,1116:143,163,14,0,0,0.591616 -27825,1116:144,164,14,0,0,0.590126 -27826,1116:245,165,14,0,0,0.588634 -27827,1116:246,166,14,0,0,0.590424 -27828,1116:247,167,14,0,0,0.581751 -27829,1116:248,168,14,0,0,0.589306 -27830,1116:249,169,14,0,0,0.588684 -27831,1117:140,170,14,0,0,0.583201 -27832,1117:141,171,14,0,0,0.578948 -27833,1117:142,172,14,0,0,0.575966 -27834,1117:143,173,14,0,0,0.574459 -27835,1117:144,174,14,0,0,0.566529 -27836,1117:245,175,14,0,0,0.560413 -27837,1117:246,176,14,0,0,0.563828 -27838,1117:247,177,14,0,0,0.561931 -27839,1117:248,178,14,0,0,0.559071 -27840,1117:249,179,14,0,0,0.563397 -27841,1118:140,180,14,0,0,0.567311 -27842,7118:350,-180,15,0,0,0.545149 -27843,7117:459,-179,15,0,0,0.537522 -27844,7117:458,-178,15,0,0,0.535606 -27845,7117:457,-177,15,0,0,0.534174 -27846,7117:456,-176,15,0,0,0.544232 -27847,7117:455,-175,15,0,0,0.54996 -27848,7117:354,-174,15,0,0,0.533944 -27849,7117:353,-173,15,0,0,0.53742 -27850,7117:352,-172,15,0,0,0.531847 -27851,7117:351,-171,15,0,0,0.533151 -27852,7117:350,-170,15,0,0,0.521628 -27853,7116:459,-169,15,0,0,0.529161 -27854,7116:458,-168,15,0,0,0.519397 -27855,7116:457,-167,15,0,0,0.525934 -27856,7116:456,-166,15,0,0,0.522064 -27857,7116:455,-165,15,0,0,0.518089 -27858,7116:354,-164,15,0,0,0.518576 -27859,7116:353,-163,15,0,0,0.516729 -27860,7116:352,-162,15,0,0,0.513471 -27861,7116:351,-161,15,0,0,0.514625 -27862,7116:350,-160,15,0,0,0.512828 -27863,7115:459,-159,15,0,0,0.51519 -27864,7115:458,-158,15,0,0,0.517345 -27865,7115:457,-157,15,0,0,0.51578 -27866,7115:456,-156,15,0,0,0.513522 -27867,7115:455,-155,15,0,0,0.515549 -27868,7115:354,-154,15,0,0,0.513214 -27869,7115:353,-153,15,0,0,0.505562 -27870,7115:352,-152,15,0,0,0.502891 -27871,7115:351,-151,15,0,0,0.502557 -27872,7115:350,-150,15,0,0,0.501273 -27873,7114:459,-149,15,0,0,0.500528 -27874,7114:458,-148,15,0,0,0.498088 -27875,7114:457,-147,15,0,0,0.499526 -27876,7114:456,-146,15,0,0,0.49688 -27877,7114:455,-145,15,0,0,0.489742 -27878,7114:354,-144,15,0,0,0.485814 -27879,7114:353,-143,15,0,0,0.481965 -27880,7114:352,-142,15,0,0,0.475529 -27881,7114:351,-141,15,0,0,0.468975 -27882,7114:350,-140,15,0,0,0.466033 -27883,7113:459,-139,15,0,0,0.463094 -27884,7113:458,-138,15,0,0,0.459137 -27885,7113:457,-137,15,0,0,0.453172 -27886,7113:456,-136,15,0,0,0.447145 -27887,7113:455,-135,15,0,0,0.443871 -27888,7113:354,-134,15,0,0,0.440957 -27889,7113:353,-133,15,0,0,0.440298 -27890,7113:352,-132,15,0,0,0.435519 -27891,7113:351,-131,15,0,0,0.431683 -27892,7113:350,-130,15,0,0,0.426272 -27893,7112:459,-129,15,0,0,0.423461 -27894,7112:458,-128,15,0,0,0.422533 -27895,7112:457,-127,15,0,0,0.422031 -27896,7112:456,-126,15,0,0,0.426021 -27897,7112:455,-125,15,0,0,0.421079 -27898,7112:354,-124,15,0,0,0.416453 -27899,7112:353,-123,15,0,0,0.419227 -27900,7112:352,-122,15,0,0,0.418477 -27901,7112:351,-121,15,0,0,0.413859 -27902,7112:350,-120,15,0,0,0.412787 -27903,7111:459,-119,15,0,0,0.404297 -27904,7111:458,-118,15,0,0,0.405015 -27905,7111:457,-117,15,0,0,0.420929 -27906,7111:456,-116,15,0,0,0.422808 -27907,7111:455,-115,15,0,0,0.43418 -27908,7111:354,-114,15,0,0,0.476631 -27909,7111:353,-113,15,0,0,0.523474 -27910,7111:351,-111,15,0,0,0.553721 -27911,7111:350,-110,15,0,0,0.557805 -27912,7109:457,-97,15,0,0,0.533049 -27913,7109:456,-96,15,0,0,0.559907 -27914,7109:455,-95,15,0,0,0.548993 -27915,7109:354,-94,15,0,0,0.553898 -27916,7109:353,-93,15,0,0,0.560287 -27917,7109:352,-92,15,0,0,0.570662 -27918,7109:351,-91,15,0,0,0.571317 -27919,7109:350,-90,15,0,0,0.569806 -27920,7108:459,-89,15,0,0,0.561856 -27921,7108:458,-88,15,0,0,0.57955 -27922,7108:457,-87,15,0,0,0.614631 -27923,7108:456,-86,15,0,0,0.616211 -27924,7108:455,-85,15,0,0,0.604041 -27925,7108:354,-84,15,0,0,0.543059 -27926,7108:353,-83,15,0,0,0.556715 -27927,7108:352,-82,15,0,0,0.523448 -27928,7108:350,-80,15,0,0,0.580175 -27929,7107:459,-79,15,0,0,0.532103 -27930,7107:458,-78,15,0,0,0.56509 -27931,7107:457,-77,15,0,0,0.593279 -27932,7107:456,-76,15,0,0,0.586618 -27933,7107:455,-75,15,0,0,0.583625 -27934,7107:354,-74,15,0,0,0.574283 -27935,7107:353,-73,15,0,0,0.577144 -27936,7107:352,-72,15,0,0,0.572649 -27937,7107:351,-71,15,0,0,0.574936 -27938,7107:350,-70,15,0,0,0.571568 -27939,7106:459,-69,15,0,0,0.571291 -27940,7106:458,-68,15,0,0,0.57041 -27941,7106:457,-67,15,0,0,0.567387 -27942,7106:456,-66,15,0,0,0.571266 -27943,7106:455,-65,15,0,0,0.575187 -27944,7106:354,-64,15,0,0,0.573153 -27945,7106:353,-63,15,0,0,0.573203 -27946,7106:352,-62,15,0,0,0.575413 -27947,7106:351,-61,15,0,0,0.57031 -27948,7106:350,-60,15,0,0,0.565343 -27949,7105:459,-59,15,0,0,0.572197 -27950,7105:458,-58,15,0,0,0.573253 -27951,7105:457,-57,15,0,0,0.579674 -27952,7105:456,-56,15,0,0,0.582251 -27953,7105:455,-55,15,0,0,0.583874 -27954,7105:354,-54,15,0,0,0.581901 -27955,7105:353,-53,15,0,0,0.581576 -27956,7105:352,-52,15,0,0,0.574409 -27957,7105:351,-51,15,0,0,0.567462 -27958,7105:350,-50,15,0,0,0.564485 -27959,7104:459,-49,15,0,0,0.562387 -27960,7104:458,-48,15,0,0,0.559983 -27961,7104:457,-47,15,0,0,0.555802 -27962,7104:456,-46,15,0,0,0.553594 -27963,7104:455,-45,15,0,0,0.553086 -27964,7104:354,-44,15,0,0,0.551333 -27965,7104:353,-43,15,0,0,0.550011 -27966,7104:352,-42,15,0,0,0.550164 -27967,7104:351,-41,15,0,0,0.548943 -27968,7104:350,-40,15,0,0,0.544614 -27969,7103:459,-39,15,0,0,0.541096 -27970,7103:458,-38,15,0,0,0.539412 -27971,7103:457,-37,15,0,0,0.53627 -27972,7103:456,-36,15,0,0,0.535325 -27973,7103:455,-35,15,0,0,0.533918 -27974,7103:354,-34,15,0,0,0.532333 -27975,7103:353,-33,15,0,0,0.530107 -27976,7103:352,-32,15,0,0,0.527854 -27977,7103:351,-31,15,0,0,0.52414 -27978,7103:350,-30,15,0,0,0.520243 -27979,7102:459,-29,15,0,0,0.517422 -27980,7102:458,-28,15,0,0,0.514856 -27981,7102:457,-27,15,0,0,0.514985 -27982,7102:456,-26,15,0,0,0.513342 -27983,7102:455,-25,15,0,0,0.511417 -27984,7102:354,-24,15,0,0,0.510158 -27985,7102:353,-23,15,0,0,0.511391 -27986,7102:352,-22,15,0,0,0.514574 -27987,7102:351,-21,15,0,0,0.512366 -27988,7102:350,-20,15,0,0,0.509183 -27989,7101:459,-19,15,0,0,0.505383 -27990,7101:458,-18,15,0,0,0.487482 -27991,7101:457,-17,15,0,0,0.477144 -27992,7101:456,-16,15,0,0,0.467184 -27993,7101:455,-15,15,0,0,0.429014 -27994,1103:455,35,15,0,0,0.567639 -27995,1103:456,36,15,0,0,0.597313 -27996,1105:352,52,15,0,0,0.541479 -27997,1105:353,53,15,0,0,0.547721 -27998,1105:354,54,15,0,0,0.559097 -27999,1105:455,55,15,0,0,0.564156 -28000,1105:457,57,15,0,0,0.567891 -28001,1105:458,58,15,0,0,0.569655 -28002,1112:350,120,15,0,0,0.401405 -28003,1112:351,121,15,0,0,0.500888 -28004,1112:352,122,15,0,0,0.512444 -28005,1112:353,123,15,0,0,0.548892 -28006,1112:354,124,15,0,0,0.543161 -28007,1112:455,125,15,0,0,0.537522 -28008,1112:456,126,15,0,0,0.524294 -28009,1112:457,127,15,0,0,0.53512 -28010,1112:458,128,15,0,0,0.536602 -28011,1112:459,129,15,0,0,0.539769 -28012,1113:350,130,15,0,0,0.537854 -28013,1113:351,131,15,0,0,0.529237 -28014,1113:352,132,15,0,0,0.535784 -28015,1113:353,133,15,0,0,0.536142 -28016,1113:354,134,15,0,0,0.540688 -28017,1113:455,135,15,0,0,0.527521 -28018,1113:456,136,15,0,0,0.526318 -28019,1113:457,137,15,0,0,0.545633 -28020,1113:458,138,15,0,0,0.550113 -28021,1113:459,139,15,0,0,0.554102 -28022,1114:350,140,15,0,0,0.551918 -28023,1114:351,141,15,0,0,0.561375 -28024,1114:352,142,15,0,0,0.562589 -28025,1114:353,143,15,0,0,0.560996 -28026,1114:354,144,15,0,0,0.562058 -28027,1114:455,145,15,0,0,0.570486 -28028,1114:456,146,15,0,0,0.575262 -28029,1114:457,147,15,0,0,0.582726 -28030,1114:458,148,15,0,0,0.588361 -28031,1114:459,149,15,0,0,0.58734 -28032,1115:350,150,15,0,0,0.58375 -28033,1115:351,151,15,0,0,0.578197 -28034,1115:352,152,15,0,0,0.576367 -28035,1115:353,153,15,0,0,0.578823 -28036,1115:354,154,15,0,0,0.576944 -28037,1115:455,155,15,0,0,0.576693 -28038,1115:456,156,15,0,0,0.578573 -28039,1115:457,157,15,0,0,0.579525 -28040,1115:458,158,15,0,0,0.578673 -28041,1115:459,159,15,0,0,0.573982 -28042,1116:350,160,15,0,0,0.571845 -28043,1116:351,161,15,0,0,0.571568 -28044,1116:352,162,15,0,0,0.568975 -28045,1116:353,163,15,0,0,0.567538 -28046,1116:354,164,15,0,0,0.568143 -28047,1116:455,165,15,0,0,0.567689 -28048,1116:456,166,15,0,0,0.575563 -28049,1116:457,167,15,0,0,0.575714 -28050,1116:458,168,15,0,0,0.566806 -28051,1116:459,169,15,0,0,0.567992 -28052,1117:350,170,15,0,0,0.571668 -28053,1117:351,171,15,0,0,0.570964 -28054,1117:352,172,15,0,0,0.565772 -28055,1117:353,173,15,0,0,0.563195 -28056,1117:354,174,15,0,0,0.558641 -28057,1117:455,175,15,0,0,0.553035 -28058,1117:456,176,15,0,0,0.545328 -28059,1117:457,177,15,0,0,0.551739 -28060,1117:458,178,15,0,0,0.538313 -28061,1117:459,179,15,0,0,0.535938 -28062,1118:350,180,15,0,0,0.545149 -28063,7118:360,-180,16,0,0,0.52332 -28064,7117:469,-179,16,0,0,0.509953 -28065,7117:468,-178,16,0,0,0.526523 -28066,7117:467,-177,16,0,0,0.520013 -28067,7117:466,-176,16,0,0,0.515934 -28068,7117:465,-175,16,0,0,0.506153 -28069,7117:364,-174,16,0,0,0.513471 -28070,7117:363,-173,16,0,0,0.508207 -28071,7117:362,-172,16,0,0,0.512495 -28072,7117:361,-171,16,0,0,0.509722 -28073,7117:360,-170,16,0,0,0.50004 -28074,7116:469,-169,16,0,0,0.516217 -28075,7116:468,-168,16,0,0,0.491873 -28076,7116:467,-167,16,0,0,0.501247 -28077,7116:466,-166,16,0,0,0.502531 -28078,7116:465,-165,16,0,0,0.50022 -28079,7116:364,-164,16,0,0,0.500246 -28080,7116:363,-163,16,0,0,0.501838 -28081,7116:362,-162,16,0,0,0.49629 -28082,7116:361,-161,16,0,0,0.493311 -28083,7116:360,-160,16,0,0,0.497754 -28084,7115:469,-159,16,0,0,0.497292 -28085,7115:468,-158,16,0,0,0.499835 -28086,7115:467,-157,16,0,0,0.492951 -28087,7115:466,-156,16,0,0,0.491308 -28088,7115:465,-155,16,0,0,0.493748 -28089,7115:364,-154,16,0,0,0.489999 -28090,7115:363,-153,16,0,0,0.490743 -28091,7115:362,-152,16,0,0,0.489973 -28092,7115:361,-151,16,0,0,0.488945 -28093,7115:360,-150,16,0,0,0.489485 -28094,7114:469,-149,16,0,0,0.489999 -28095,7114:468,-148,16,0,0,0.490126 -28096,7114:467,-147,16,0,0,0.486686 -28097,7114:466,-146,16,0,0,0.484197 -28098,7114:465,-145,16,0,0,0.480862 -28099,7114:364,-144,16,0,0,0.476452 -28100,7114:363,-143,16,0,0,0.472174 -28101,7114:362,-142,16,0,0,0.468668 -28102,7114:361,-141,16,0,0,0.466697 -28103,7114:360,-140,16,0,0,0.462455 -28104,7113:469,-139,16,0,0,0.456127 -28105,7113:468,-138,16,0,0,0.450908 -28106,7113:467,-137,16,0,0,0.442908 -28107,7113:466,-136,16,0,0,0.439311 -28108,7113:465,-135,16,0,0,0.433726 -28109,7113:364,-134,16,0,0,0.428183 -28110,7113:363,-133,16,0,0,0.42454 -28111,7113:362,-132,16,0,0,0.421806 -28112,7113:361,-131,16,0,0,0.418152 -28113,7113:360,-130,16,0,0,0.415604 -28114,7112:469,-129,16,0,0,0.414831 -28115,7112:468,-128,16,0,0,0.415679 -28116,7112:467,-127,16,0,0,0.411244 -28117,7112:466,-126,16,0,0,0.406402 -28118,7112:465,-125,16,0,0,0.40405 -28119,7112:364,-124,16,0,0,0.397609 -28120,7112:363,-123,16,0,0,0.391645 -28121,7112:362,-122,16,0,0,0.40101 -28122,7112:361,-121,16,0,0,0.404767 -28123,7112:360,-120,16,0,0,0.407171 -28124,7111:469,-119,16,0,0,0.397068 -28125,7111:468,-118,16,0,0,0.405312 -28126,7111:467,-117,16,0,0,0.408734 -28127,7111:466,-116,16,0,0,0.432364 -28128,7111:465,-115,16,0,0,0.479349 -28129,7111:364,-114,16,0,0,0.499886 -28130,7111:361,-111,16,0,0,0.54181 -28131,7111:360,-110,16,0,0,0.540713 -28132,7109:467,-97,16,0,0,0.514446 -28133,7109:466,-96,16,0,0,0.553492 -28134,7109:465,-95,16,0,0,0.547721 -28135,7109:364,-94,16,0,0,0.549884 -28136,7109:363,-93,16,0,0,0.550722 -28137,7109:362,-92,16,0,0,0.55207 -28138,7109:361,-91,16,0,0,0.567059 -28139,7109:360,-90,16,0,0,0.564787 -28140,7108:469,-89,16,0,0,0.547441 -28141,7108:468,-88,16,0,0,0.547518 -28142,7108:467,-87,16,0,0,0.544538 -28143,7108:466,-86,16,0,0,0.556689 -28144,7108:465,-85,16,0,0,0.536807 -28145,7108:364,-84,16,0,0,0.523859 -28146,7108:363,-83,16,0,0,0.511545 -28147,7108:360,-80,16,0,0,0.574635 -28148,7107:469,-79,16,0,0,0.533331 -28149,7107:468,-78,16,0,0,0.530952 -28150,7107:467,-77,16,0,0,0.579499 -28151,7107:466,-76,16,0,0,0.550875 -28152,7107:465,-75,16,0,0,0.550494 -28153,7107:364,-74,16,0,0,0.552527 -28154,7107:363,-73,16,0,0,0.547518 -28155,7107:362,-72,16,0,0,0.546677 -28156,7107:361,-71,16,0,0,0.54907 -28157,7107:360,-70,16,0,0,0.560338 -28158,7106:469,-69,16,0,0,0.56307 -28159,7106:468,-68,16,0,0,0.558236 -28160,7106:467,-67,16,0,0,0.553239 -28161,7106:466,-66,16,0,0,0.552374 -28162,7106:465,-65,16,0,0,0.562083 -28163,7106:364,-64,16,0,0,0.559603 -28164,7106:363,-63,16,0,0,0.556461 -28165,7106:362,-62,16,0,0,0.555979 -28166,7106:361,-61,16,0,0,0.557095 -28167,7106:360,-60,16,0,0,0.55113 -28168,7105:469,-59,16,0,0,0.547645 -28169,7105:468,-58,16,0,0,0.549477 -28170,7105:467,-57,16,0,0,0.553772 -28171,7105:466,-56,16,0,0,0.558236 -28172,7105:465,-55,16,0,0,0.548078 -28173,7105:364,-54,16,0,0,0.550011 -28174,7105:363,-53,16,0,0,0.558134 -28175,7105:362,-52,16,0,0,0.558083 -28176,7105:361,-51,16,0,0,0.553315 -28177,7105:360,-50,16,0,0,0.546092 -28178,7104:469,-49,16,0,0,0.546168 -28179,7104:468,-48,16,0,0,0.545684 -28180,7104:467,-47,16,0,0,0.543238 -28181,7104:466,-46,16,0,0,0.540688 -28182,7104:465,-45,16,0,0,0.542065 -28183,7104:364,-44,16,0,0,0.544334 -28184,7104:363,-43,16,0,0,0.54232 -28185,7104:362,-42,16,0,0,0.539998 -28186,7104:361,-41,16,0,0,0.538543 -28187,7104:360,-40,16,0,0,0.535376 -28188,7103:469,-39,16,0,0,0.533305 -28189,7103:468,-38,16,0,0,0.531975 -28190,7103:467,-37,16,0,0,0.527188 -28191,7103:466,-36,16,0,0,0.528725 -28192,7103:465,-35,16,0,0,0.522961 -28193,7103:364,-34,16,0,0,0.522193 -28194,7103:363,-33,16,0,0,0.517551 -28195,7103:362,-32,16,0,0,0.510262 -28196,7103:361,-31,16,0,0,0.517987 -28197,7103:360,-30,16,0,0,0.511648 -28198,7102:469,-29,16,0,0,0.509722 -28199,7102:468,-28,16,0,0,0.507077 -28200,7102:467,-27,16,0,0,0.506461 -28201,7102:466,-26,16,0,0,0.503867 -28202,7102:465,-25,16,0,0,0.501145 -28203,7102:364,-24,16,0,0,0.498628 -28204,7102:363,-23,16,0,0,0.499809 -28205,7102:362,-22,16,0,0,0.501632 -28206,7102:361,-21,16,0,0,0.500425 -28207,7102:360,-20,16,0,0,0.498962 -28208,7101:469,-19,16,0,0,0.495391 -28209,7101:468,-18,16,0,0,0.490229 -28210,7101:467,-17,16,0,0,0.485198 -28211,7101:466,-16,16,0,0,0.470075 -28212,7101:465,-15,16,0,0,0.46363 -28213,7101:364,-14,16,0,0,0.434938 -28214,1103:364,34,16,0,0,0.562513 -28215,1103:465,35,16,0,0,0.570335 -28216,1105:360,50,16,0,0,0.524781 -28217,1105:361,51,16,0,0,0.539335 -28218,1105:362,52,16,0,0,0.55113 -28219,1105:363,53,16,0,0,0.557602 -28220,1105:466,56,16,0,0,0.551003 -28221,1112:361,121,16,0,0,0.396798 -28222,1112:362,122,16,0,0,0.488895 -28223,1112:363,123,16,0,0,0.511853 -28224,1112:364,124,16,0,0,0.524985 -28225,1112:465,125,16,0,0,0.507308 -28226,1112:466,126,16,0,0,0.53862 -28227,1112:467,127,16,0,0,0.52514 -28228,1112:468,128,16,0,0,0.527471 -28229,1112:469,129,16,0,0,0.53021 -28230,1113:360,130,16,0,0,0.535223 -28231,1113:361,131,16,0,0,0.526395 -28232,1113:362,132,16,0,0,0.516037 -28233,1113:363,133,16,0,0,0.515472 -28234,1113:364,134,16,0,0,0.504663 -28235,1113:465,135,16,0,0,0.497087 -28236,1113:466,136,16,0,0,0.498113 -28237,1113:467,137,16,0,0,0.507925 -28238,1113:468,138,16,0,0,0.51306 -28239,1113:469,139,16,0,0,0.518038 -28240,1114:360,140,16,0,0,0.516217 -28241,1114:361,141,16,0,0,0.526036 -28242,1114:362,142,16,0,0,0.535223 -28243,1114:363,143,16,0,0,0.535478 -28244,1114:364,144,16,0,0,0.550113 -28245,1114:465,145,16,0,0,0.546372 -28246,1114:466,146,16,0,0,0.554914 -28247,1114:467,147,16,0,0,0.545404 -28248,1114:468,148,16,0,0,0.542346 -28249,1114:469,149,16,0,0,0.551028 -28250,1115:360,150,16,0,0,0.556233 -28251,1115:361,151,16,0,0,0.551078 -28252,1115:362,152,16,0,0,0.550825 -28253,1115:363,153,16,0,0,0.560135 -28254,1115:364,154,16,0,0,0.554914 -28255,1115:465,155,16,0,0,0.557374 -28256,1115:466,156,16,0,0,0.56403 -28257,1115:467,157,16,0,0,0.559704 -28258,1115:468,158,16,0,0,0.560945 -28259,1115:469,159,16,0,0,0.558869 -28260,1116:360,160,16,0,0,0.556309 -28261,1116:361,161,16,0,0,0.558438 -28262,1116:362,162,16,0,0,0.557855 -28263,1116:363,163,16,0,0,0.559578 -28264,1116:364,164,16,0,0,0.556689 -28265,1116:465,165,16,0,0,0.556866 -28266,1116:466,166,16,0,0,0.554305 -28267,1116:467,167,16,0,0,0.551942 -28268,1116:468,168,16,0,0,0.54996 -28269,1116:469,169,16,0,0,0.54818 -28270,1117:360,170,16,0,0,0.545633 -28271,1117:361,171,16,0,0,0.550799 -28272,1117:362,172,16,0,0,0.549451 -28273,1117:363,173,16,0,0,0.542626 -28274,1117:364,174,16,0,0,0.535734 -28275,1117:465,175,16,0,0,0.540406 -28276,1117:466,176,16,0,0,0.542524 -28277,1117:467,177,16,0,0,0.533484 -28278,1117:468,178,16,0,0,0.517756 -28279,1117:469,179,16,0,0,0.522372 -28280,1118:360,180,16,0,0,0.52332 -28281,7118:370,-180,17,0,0,0.489022 -28282,7117:479,-179,17,0,0,0.489022 -28283,7117:478,-178,17,0,0,0.486609 -28284,7117:477,-177,17,0,0,0.484736 -28285,7117:476,-176,17,0,0,0.478862 -28286,7117:475,-175,17,0,0,0.482427 -28287,7117:374,-174,17,0,0,0.485634 -28288,7117:373,-173,17,0,0,0.479733 -28289,7117:372,-172,17,0,0,0.488561 -28290,7117:371,-171,17,0,0,0.47635 -28291,7117:370,-170,17,0,0,0.483658 -28292,7116:479,-169,17,0,0,0.477888 -28293,7116:478,-168,17,0,0,0.470869 -28294,7116:477,-167,17,0,0,0.4804 -28295,7116:476,-166,17,0,0,0.473608 -28296,7116:475,-165,17,0,0,0.482581 -28297,7116:374,-164,17,0,0,0.474018 -28298,7116:373,-163,17,0,0,0.469051 -28299,7116:372,-162,17,0,0,0.481888 -28300,7116:371,-161,17,0,0,0.468872 -28301,7116:370,-160,17,0,0,0.479426 -28302,7115:479,-159,17,0,0,0.479785 -28303,7115:478,-158,17,0,0,0.475094 -28304,7115:477,-157,17,0,0,0.475991 -28305,7115:476,-156,17,0,0,0.474197 -28306,7115:475,-155,17,0,0,0.473199 -28307,7115:374,-154,17,0,0,0.470791 -28308,7115:373,-153,17,0,0,0.473557 -28309,7115:372,-152,17,0,0,0.479913 -28310,7115:371,-151,17,0,0,0.476145 -28311,7115:370,-150,17,0,0,0.476811 -28312,7114:479,-149,17,0,0,0.476888 -28313,7114:478,-148,17,0,0,0.476606 -28314,7114:477,-147,17,0,0,0.47717 -28315,7114:476,-146,17,0,0,0.476504 -28316,7114:475,-145,17,0,0,0.473762 -28317,7114:374,-144,17,0,0,0.47243 -28318,7114:373,-143,17,0,0,0.470101 -28319,7114:372,-142,17,0,0,0.466825 -28320,7114:371,-141,17,0,0,0.460745 -28321,7114:370,-140,17,0,0,0.456586 -28322,7113:479,-139,17,0,0,0.451518 -28323,7113:478,-138,17,0,0,0.446663 -28324,7113:477,-137,17,0,0,0.442477 -28325,7113:476,-136,17,0,0,0.437288 -28326,7113:475,-135,17,0,0,0.432414 -28327,7113:374,-134,17,0,0,0.426222 -28328,7113:373,-133,17,0,0,0.418302 -28329,7113:372,-132,17,0,0,0.41229 -28330,7113:371,-131,17,0,0,0.409355 -28331,7113:370,-130,17,0,0,0.406278 -28332,7112:479,-129,17,0,0,0.401454 -28333,7112:478,-128,17,0,0,0.399703 -28334,7112:477,-127,17,0,0,0.393776 -28335,7112:476,-126,17,0,0,0.390568 -28336,7112:475,-125,17,0,0,0.39358 -28337,7112:374,-124,17,0,0,0.386492 -28338,7112:373,-123,17,0,0,0.379379 -28339,7112:372,-122,17,0,0,0.37595 -28340,7112:371,-121,17,0,0,0.374529 -28341,7112:370,-120,17,0,0,0.37636 -28342,7111:479,-119,17,0,0,0.381922 -28343,7111:478,-118,17,0,0,0.379935 -28344,7111:477,-117,17,0,0,0.384861 -28345,7111:476,-116,17,0,0,0.450908 -28346,7111:475,-115,17,0,0,0.453834 -28347,7111:372,-112,17,0,0,0.521731 -28348,7109:476,-96,17,0,0,0.463962 -28349,7109:475,-95,17,0,0,0.488252 -28350,7109:374,-94,17,0,0,0.498396 -28351,7109:373,-93,17,0,0,0.508875 -28352,7109:372,-92,17,0,0,0.51057 -28353,7109:371,-91,17,0,0,0.513624 -28354,7109:370,-90,17,0,0,0.521654 -28355,7108:479,-89,17,0,0,0.526907 -28356,7108:478,-88,17,0,0,0.525063 -28357,7108:477,-87,17,0,0,0.523397 -28358,7108:476,-86,17,0,0,0.52724 -28359,7108:475,-85,17,0,0,0.498447 -28360,7108:374,-84,17,0,0,0.479913 -28361,7108:373,-83,17,0,0,0.443593 -28362,7108:370,-80,17,0,0,0.559755 -28363,7107:479,-79,17,0,0,0.58734 -28364,7107:478,-78,17,0,0,0.577069 -28365,7107:477,-77,17,0,0,0.574861 -28366,7107:476,-76,17,0,0,0.547543 -28367,7107:475,-75,17,0,0,0.544436 -28368,7107:374,-74,17,0,0,0.543085 -28369,7107:373,-73,17,0,0,0.543697 -28370,7107:372,-72,17,0,0,0.532384 -28371,7107:371,-71,17,0,0,0.540509 -28372,7107:370,-70,17,0,0,0.539973 -28373,7106:479,-69,17,0,0,0.53512 -28374,7106:478,-68,17,0,0,0.541479 -28375,7106:477,-67,17,0,0,0.539258 -28376,7106:476,-66,17,0,0,0.532998 -28377,7106:475,-65,17,0,0,0.533279 -28378,7106:374,-64,17,0,0,0.53558 -28379,7106:373,-63,17,0,0,0.537497 -28380,7106:372,-62,17,0,0,0.540382 -28381,7106:371,-61,17,0,0,0.543672 -28382,7106:370,-60,17,0,0,0.539386 -28383,7105:479,-59,17,0,0,0.534609 -28384,7105:478,-58,17,0,0,0.526318 -28385,7105:477,-57,17,0,0,0.517037 -28386,7105:476,-56,17,0,0,0.521398 -28387,7105:475,-55,17,0,0,0.536551 -28388,7105:374,-54,17,0,0,0.533791 -28389,7105:373,-53,17,0,0,0.525754 -28390,7105:372,-52,17,0,0,0.52724 -28391,7105:371,-51,17,0,0,0.533586 -29690,1212:131,121,23,0,0,0.21556 -28392,7105:370,-50,17,0,0,0.532231 -28393,7104:479,-49,17,0,0,0.523859 -28394,7104:478,-48,17,0,0,0.518731 -28395,7104:477,-47,17,0,0,0.523012 -28396,7104:476,-46,17,0,0,0.526267 -28397,7104:475,-45,17,0,0,0.524243 -28398,7104:374,-44,17,0,0,0.526702 -28399,7104:373,-43,17,0,0,0.527932 -28400,7104:372,-42,17,0,0,0.525088 -28401,7104:371,-41,17,0,0,0.523961 -28402,7104:370,-40,17,0,0,0.517089 -28403,7103:479,-39,17,0,0,0.516139 -28404,7103:478,-38,17,0,0,0.518269 -28405,7103:477,-37,17,0,0,0.514651 -28406,7103:476,-36,17,0,0,0.506975 -28407,7103:475,-35,17,0,0,0.503585 -28408,7103:374,-34,17,0,0,0.501555 -28409,7103:373,-33,17,0,0,0.497703 -28410,7103:372,-32,17,0,0,0.494004 -28411,7103:371,-31,17,0,0,0.493414 -28412,7103:370,-30,17,0,0,0.492438 -28413,7102:479,-29,17,0,0,0.496367 -28414,7102:478,-28,17,0,0,0.494261 -28415,7102:477,-27,17,0,0,0.490743 -28416,7102:476,-26,17,0,0,0.489818 -28417,7102:475,-25,17,0,0,0.490383 -28418,7102:374,-24,17,0,0,0.486686 -28419,7102:373,-23,17,0,0,0.489767 -28420,7102:372,-22,17,0,0,0.490075 -28421,7102:371,-21,17,0,0,0.485198 -28422,7102:370,-20,17,0,0,0.486404 -28423,7101:479,-19,17,0,0,0.487148 -28424,7101:478,-18,17,0,0,0.483402 -28425,7101:476,-16,17,0,0,0.475145 -28426,7101:475,-15,17,0,0,0.470203 -28427,7101:374,-14,17,0,0,0.450959 -28428,7101:373,-13,17,0,0,0.427202 -28429,7101:372,-12,17,0,0,0.411742 -28430,1103:373,33,17,0,0,0.515755 -28431,1104:479,49,17,0,0,0.522833 -28432,1105:370,50,17,0,0,0.539616 -28433,1105:371,51,17,0,0,0.529596 -28434,1112:372,122,17,0,0,0.356164 -28435,1112:373,123,17,0,0,0.445191 -28436,1112:374,124,17,0,0,0.464346 -28437,1112:475,125,17,0,0,0.470126 -28438,1112:476,126,17,0,0,0.506949 -28439,1112:477,127,17,0,0,0.5342 -28440,1112:478,128,17,0,0,0.523833 -28441,1112:479,129,17,0,0,0.521039 -28442,1113:370,130,17,0,0,0.519808 -28443,1113:371,131,17,0,0,0.522833 -28444,1113:372,132,17,0,0,0.522038 -28445,1113:373,133,17,0,0,0.512597 -28446,1113:374,134,17,0,0,0.502403 -28447,1113:475,135,17,0,0,0.49046 -28448,1113:476,136,17,0,0,0.483787 -28449,1113:477,137,17,0,0,0.480785 -28450,1113:478,138,17,0,0,0.48548 -28451,1113:479,139,17,0,0,0.50248 -28452,1114:370,140,17,0,0,0.508952 -28453,1114:371,141,17,0,0,0.516345 -28454,1114:372,142,17,0,0,0.521398 -28455,1114:373,143,17,0,0,0.514933 -28456,1114:374,144,17,0,0,0.512854 -28457,1114:475,145,17,0,0,0.521808 -28458,1114:476,146,17,0,0,0.52414 -28459,1114:477,147,17,0,0,0.511622 -28460,1114:478,148,17,0,0,0.515986 -28461,1114:479,149,17,0,0,0.52765 -28462,1115:370,150,17,0,0,0.525523 -28463,1115:371,151,17,0,0,0.532001 -28464,1115:372,152,17,0,0,0.53351 -28465,1115:373,153,17,0,0,0.531336 -28466,1115:374,154,17,0,0,0.532154 -28467,1115:475,155,17,0,0,0.536168 -28468,1115:476,156,17,0,0,0.533638 -28469,1115:477,157,17,0,0,0.535555 -28470,1115:478,158,17,0,0,0.535862 -28471,1115:479,159,17,0,0,0.536704 -28472,1116:370,160,17,0,0,0.537829 -28473,1116:371,161,17,0,0,0.538569 -28474,1116:372,162,17,0,0,0.53982 -28475,1116:373,163,17,0,0,0.539896 -28476,1116:374,164,17,0,0,0.540738 -28477,1116:475,165,17,0,0,0.536807 -28478,1116:476,166,17,0,0,0.534046 -28479,1116:477,167,17,0,0,0.534813 -28480,1116:478,168,17,0,0,0.533459 -28481,1116:479,169,17,0,0,0.521679 -28482,1117:370,170,17,0,0,0.512597 -28483,1117:371,171,17,0,0,0.520141 -28484,1117:372,172,17,0,0,0.525114 -28485,1117:373,173,17,0,0,0.520526 -28486,1117:374,174,17,0,0,0.508824 -28487,1117:475,175,17,0,0,0.501016 -28488,1117:476,176,17,0,0,0.510596 -28489,1117:477,177,17,0,0,0.506051 -28490,1117:478,178,17,0,0,0.504535 -28491,1117:479,179,17,0,0,0.501838 -28492,1118:370,180,17,0,0,0.489022 -28493,7118:380,-180,18,0,0,0.463707 -28494,7117:489,-179,18,0,0,0.461689 -28495,7117:488,-178,18,0,0,0.456536 -28496,7117:487,-177,18,0,0,0.45702 -28497,7117:486,-176,18,0,0,0.449382 -28498,7117:485,-175,18,0,0,0.44867 -28499,7117:384,-174,18,0,0,0.452179 -28500,7117:383,-173,18,0,0,0.444404 -28501,7117:382,-172,18,0,0,0.443136 -28502,7117:381,-171,18,0,0,0.447171 -28503,7117:380,-170,18,0,0,0.448721 -28504,7116:489,-169,18,0,0,0.445952 -28505,7116:488,-168,18,0,0,0.445267 -28506,7116:487,-167,18,0,0,0.443567 -28507,7116:486,-166,18,0,0,0.440957 -28508,7116:485,-165,18,0,0,0.441084 -28509,7116:384,-164,18,0,0,0.444379 -28510,7116:383,-163,18,0,0,0.443795 -28511,7116:382,-162,18,0,0,0.448086 -28512,7116:381,-161,18,0,0,0.452358 -28513,7116:380,-160,18,0,0,0.453784 -28514,7115:489,-159,18,0,0,0.44984 -28515,7115:488,-158,18,0,0,0.44585 -28516,7115:487,-157,18,0,0,0.446841 -28517,7115:486,-156,18,0,0,0.451671 -28518,7115:485,-155,18,0,0,0.451035 -28519,7115:384,-154,18,0,0,0.452816 -28520,7115:383,-153,18,0,0,0.452562 -28521,7115:382,-152,18,0,0,0.451009 -28522,7115:381,-151,18,0,0,0.446993 -28523,7115:380,-150,18,0,0,0.452587 -28524,7114:489,-149,18,0,0,0.45952 -28525,7114:488,-148,18,0,0,0.455975 -28526,7114:487,-147,18,0,0,0.452179 -28527,7114:486,-146,18,0,0,0.456179 -28528,7114:485,-145,18,0,0,0.449407 -28529,7114:384,-144,18,0,0,0.45045 -28530,7114:383,-143,18,0,0,0.447272 -28531,7114:382,-142,18,0,0,0.445369 -28532,7114:381,-141,18,0,0,0.441008 -28533,7114:380,-140,18,0,0,0.438173 -28534,7113:489,-139,18,0,0,0.43239 -28535,7113:488,-138,18,0,0,0.428712 -28536,7113:487,-137,18,0,0,0.42665 -28537,7113:486,-136,18,0,0,0.422984 -28538,7113:485,-135,18,0,0,0.419102 -28539,7113:384,-134,18,0,0,0.412912 -28540,7113:383,-133,18,0,0,0.410896 -28541,7113:382,-132,18,0,0,0.407022 -28542,7113:381,-131,18,0,0,0.402541 -28543,7113:380,-130,18,0,0,0.398841 -28544,7112:489,-129,18,0,0,0.392772 -28545,7112:488,-128,18,0,0,0.38384 -28546,7112:487,-127,18,0,0,0.377566 -28547,7112:486,-126,18,0,0,0.377711 -28548,7112:485,-125,18,0,0,0.381219 -28549,7112:384,-124,18,0,0,0.377277 -28550,7112:383,-123,18,0,0,0.373158 -28551,7112:382,-122,18,0,0,0.372413 -28552,7112:381,-121,18,0,0,0.370901 -28553,7112:380,-120,18,0,0,0.366215 -28554,7111:489,-119,18,0,0,0.372053 -28555,7111:488,-118,18,0,0,0.367719 -28556,7111:487,-117,18,0,0,0.374866 -28557,7111:486,-116,18,0,0,0.424239 -28558,7111:383,-113,18,0,0,0.505793 -28559,7109:384,-94,18,0,0,0.382674 -28560,7109:383,-93,18,0,0,0.385299 -28561,7109:382,-92,18,0,0,0.39412 -28562,7108:489,-89,18,0,0,0.428561 -28563,7108:488,-88,18,0,0,0.486327 -28564,7108:487,-87,18,0,0,0.51021 -28565,7108:486,-86,18,0,0,0.478452 -28566,7108:485,-85,18,0,0,0.42567 -28567,7108:384,-84,18,0,0,0.429215 -28568,7108:381,-81,18,0,0,0.498859 -28569,7108:380,-80,18,0,0,0.566024 -28570,7107:489,-79,18,0,0,0.557932 -28571,7107:488,-78,18,0,0,0.550951 -28572,7107:487,-77,18,0,0,0.551383 -28573,7107:486,-76,18,0,0,0.55273 -28574,7107:485,-75,18,0,0,0.539437 -28575,7107:384,-74,18,0,0,0.52957 -28576,7107:383,-73,18,0,0,0.52875 -28577,7107:382,-72,18,0,0,0.526753 -28578,7107:381,-71,18,0,0,0.526779 -28579,7107:380,-70,18,0,0,0.526241 -28580,7106:489,-69,18,0,0,0.521757 -28581,7106:488,-68,18,0,0,0.518602 -28582,7106:487,-67,18,0,0,0.517551 -28583,7106:486,-66,18,0,0,0.523986 -28584,7106:485,-65,18,0,0,0.521731 -28585,7106:384,-64,18,0,0,0.518987 -28586,7106:383,-63,18,0,0,0.520526 -28587,7106:382,-62,18,0,0,0.517525 -28588,7106:381,-61,18,0,0,0.512957 -28589,7106:380,-60,18,0,0,0.512521 -28590,7105:489,-59,18,0,0,0.514471 -28591,7105:488,-58,18,0,0,0.507668 -28592,7105:487,-57,18,0,0,0.503302 -28593,7105:486,-56,18,0,0,0.506512 -28594,7105:485,-55,18,0,0,0.505819 -28595,7105:384,-54,18,0,0,0.500246 -28596,7105:383,-53,18,0,0,0.504227 -28597,7105:382,-52,18,0,0,0.507848 -28598,7105:381,-51,18,0,0,0.507694 -28599,7105:380,-50,18,0,0,0.505023 -28600,7104:489,-49,18,0,0,0.501915 -28601,7104:488,-48,18,0,0,0.504637 -28602,7104:487,-47,18,0,0,0.50623 -28603,7104:486,-46,18,0,0,0.505152 -28604,7104:485,-45,18,0,0,0.508978 -28605,7104:384,-44,18,0,0,0.513573 -28606,7104:383,-43,18,0,0,0.511674 -28607,7104:382,-42,18,0,0,0.507489 -31960,7313:466,-136,36,0,0,0.20022 -28608,7104:381,-41,18,0,0,0.506359 -28609,7104:380,-40,18,0,0,0.497009 -28610,7103:489,-39,18,0,0,0.502326 -28611,7103:488,-38,18,0,0,0.500297 -28612,7103:487,-37,18,0,0,0.4976 -28613,7103:486,-36,18,0,0,0.496367 -28614,7103:485,-35,18,0,0,0.490666 -28615,7103:384,-34,18,0,0,0.48679 -28616,7103:383,-33,18,0,0,0.486456 -28617,7103:382,-32,18,0,0,0.48235 -28618,7103:381,-31,18,0,0,0.480503 -28619,7103:380,-30,18,0,0,0.480836 -28620,7102:489,-29,18,0,0,0.480169 -28621,7102:488,-28,18,0,0,0.478708 -28622,7102:487,-27,18,0,0,0.480042 -28623,7102:486,-26,18,0,0,0.48117 -28624,7102:485,-25,18,0,0,0.475914 -28625,7102:384,-24,18,0,0,0.476324 -28626,7102:383,-23,18,0,0,0.478785 -28627,7102:382,-22,18,0,0,0.474479 -28628,7102:381,-21,18,0,0,0.473967 -28629,7102:380,-20,18,0,0,0.474582 -28630,7101:489,-19,18,0,0,0.471637 -28631,7101:488,-18,18,0,0,0.47266 -28632,7101:487,-17,18,0,0,0.474377 -28633,7101:486,-16,18,0,0,0.472993 -28634,7101:485,-15,18,0,0,0.46854 -28635,7101:384,-14,18,0,0,0.463707 -28636,7101:383,-13,18,0,0,0.461434 -28637,7101:382,-12,18,0,0,0.453555 -28638,7101:381,-11,18,0,0,0.444151 -28639,1104:488,48,18,0,0,0.469921 -28640,1104:489,49,18,0,0,0.510518 -28641,1105:380,50,18,0,0,0.523781 -28642,1112:383,123,18,0,0,0.340494 -28643,1112:384,124,18,0,0,0.433827 -28644,1112:485,125,18,0,0,0.423009 -28645,1112:486,126,18,0,0,0.442731 -28646,1112:487,127,18,0,0,0.496753 -28647,1112:488,128,18,0,0,0.532077 -28648,1112:489,129,18,0,0,0.52519 -28649,1113:380,130,18,0,0,0.5225 -28650,1113:381,131,18,0,0,0.525063 -28651,1113:382,132,18,0,0,0.522731 -28652,1113:383,133,18,0,0,0.502968 -28653,1113:384,134,18,0,0,0.467286 -28654,1113:485,135,18,0,0,0.490101 -28655,1113:486,136,18,0,0,0.489151 -28656,1113:487,137,18,0,0,0.464601 -28657,1113:488,138,18,0,0,0.464295 -28658,1113:489,139,18,0,0,0.480169 -28659,1114:380,140,18,0,0,0.487046 -28660,1114:381,141,18,0,0,0.505177 -28661,1114:382,142,18,0,0,0.508028 -28662,1114:383,143,18,0,0,0.499963 -28663,1114:384,144,18,0,0,0.500605 -28664,1114:485,145,18,0,0,0.501555 -28665,1114:486,146,18,0,0,0.514549 -28666,1114:487,147,18,0,0,0.50659 -28667,1114:488,148,18,0,0,0.498962 -28668,1114:489,149,18,0,0,0.498165 -28669,1115:380,150,18,0,0,0.500271 -28670,1115:381,151,18,0,0,0.503508 -28671,1115:382,152,18,0,0,0.504098 -28672,1115:383,153,18,0,0,0.508053 -28673,1115:384,154,18,0,0,0.510544 -28674,1115:485,155,18,0,0,0.505665 -28675,1115:486,156,18,0,0,0.501863 -28676,1115:487,157,18,0,0,0.502378 -28677,1115:488,158,18,0,0,0.504355 -28678,1115:489,159,18,0,0,0.502454 -28679,1116:380,160,18,0,0,0.502095 -28680,1116:381,161,18,0,0,0.502814 -28681,1116:382,162,18,0,0,0.501941 -28682,1116:383,163,18,0,0,0.500322 -28683,1116:384,164,18,0,0,0.498987 -28684,1116:485,165,18,0,0,0.505665 -28685,1116:486,166,18,0,0,0.508207 -28686,1116:487,167,18,0,0,0.504869 -28687,1116:488,168,18,0,0,0.498653 -28688,1116:489,169,18,0,0,0.489382 -28689,1117:380,170,18,0,0,0.480375 -28690,1117:381,171,18,0,0,0.480759 -28691,1117:382,172,18,0,0,0.480785 -28692,1117:383,173,18,0,0,0.481272 -28693,1117:384,174,18,0,0,0.474658 -28694,1117:485,175,18,0,0,0.471099 -28695,1117:486,176,18,0,0,0.487226 -28696,1117:487,177,18,0,0,0.479272 -28697,1117:488,178,18,0,0,0.47179 -28698,1117:489,179,18,0,0,0.465189 -28699,1118:380,180,18,0,0,0.463707 -28700,7118:390,-180,19,0,0,0.439235 -28701,7117:499,-179,19,0,0,0.42768 -28702,7117:498,-178,19,0,0,0.435847 -28703,7117:497,-177,19,0,0,0.426499 -28704,7117:496,-176,19,0,0,0.42758 -28705,7117:495,-175,19,0,0,0.420879 -28706,7117:394,-174,19,0,0,0.418577 -28707,7117:393,-173,19,0,0,0.418802 -28708,7117:392,-172,19,0,0,0.41533 -28709,7117:391,-171,19,0,0,0.418802 -28710,7117:390,-170,19,0,0,0.417277 -28711,7116:499,-169,19,0,0,0.418277 -28712,7116:498,-168,19,0,0,0.41346 -28713,7116:497,-167,19,0,0,0.414482 -28714,7116:496,-166,19,0,0,0.414382 -28715,7116:495,-165,19,0,0,0.418802 -28716,7116:394,-164,19,0,0,0.424264 -28717,7116:393,-163,19,0,0,0.415879 -28718,7116:392,-162,19,0,0,0.411742 -28719,7116:391,-161,19,0,0,0.413759 -28720,7116:390,-160,19,0,0,0.419828 -28721,7115:499,-159,19,0,0,0.425519 -28722,7115:498,-158,19,0,0,0.423862 -28723,7115:497,-157,19,0,0,0.426926 -28724,7115:496,-156,19,0,0,0.429744 -28725,7115:495,-155,19,0,0,0.42577 -28726,7115:394,-154,19,0,0,0.418777 -28727,7115:393,-153,19,0,0,0.421305 -28728,7115:392,-152,19,0,0,0.430222 -28729,7115:391,-151,19,0,0,0.43307 -28730,7115:390,-150,19,0,0,0.429895 -28731,7114:499,-149,19,0,0,0.430776 -28732,7114:498,-148,19,0,0,0.432188 -28733,7114:497,-147,19,0,0,0.434307 -28734,7114:496,-146,19,0,0,0.435695 -28735,7114:495,-145,19,0,0,0.436504 -28736,7114:394,-144,19,0,0,0.4384 -28737,7114:393,-143,19,0,0,0.437313 -28738,7114:392,-142,19,0,0,0.434837 -28739,7114:391,-141,19,0,0,0.424916 -28740,7114:390,-140,19,0,0,0.42341 -28741,7113:499,-139,19,0,0,0.424163 -28742,7113:498,-138,19,0,0,0.423862 -28743,7113:497,-137,19,0,0,0.421631 -28744,7113:496,-136,19,0,0,0.416328 -28745,7113:495,-135,19,0,0,0.407766 -28746,7113:394,-134,19,0,0,0.399457 -28747,7113:393,-133,19,0,0,0.394316 -28748,7113:392,-132,19,0,0,0.393458 -28749,7113:391,-131,19,0,0,0.391816 -28750,7113:390,-130,19,0,0,0.390691 -28751,7112:499,-129,19,0,0,0.383646 -28752,7112:498,-128,19,0,0,0.371957 -28753,7112:497,-127,19,0,0,0.369608 -28754,7112:496,-126,19,0,0,0.364809 -28755,7112:495,-125,19,0,0,0.357343 -28756,7112:394,-124,19,0,0,0.349875 -28757,7112:393,-123,19,0,0,0.345797 -28758,7112:392,-122,19,0,0,0.339249 -28759,7112:391,-121,19,0,0,0.344264 -28760,7112:390,-120,19,0,0,0.349454 -28761,7111:499,-119,19,0,0,0.350764 -28762,7111:498,-118,19,0,0,0.361933 -28763,7111:497,-117,19,0,0,0.370207 -28764,7111:394,-114,19,0,0,0.49647 -28765,7108:391,-81,19,0,0,0.455363 -28766,7108:390,-80,19,0,0,0.517756 -28767,7107:499,-79,19,0,0,0.576567 -28768,7107:498,-78,19,0,0,0.558869 -28769,7107:497,-77,19,0,0,0.549732 -28770,7107:496,-76,19,0,0,0.555599 -28771,7107:495,-75,19,0,0,0.536602 -28772,7107:394,-74,19,0,0,0.516781 -28773,7107:393,-73,19,0,0,0.510749 -28774,7107:392,-72,19,0,0,0.518269 -28775,7107:391,-71,19,0,0,0.521731 -28776,7107:390,-70,19,0,0,0.518038 -28777,7106:499,-69,19,0,0,0.512521 -28778,7106:498,-68,19,0,0,0.508644 -28779,7106:497,-67,19,0,0,0.505717 -28780,7106:496,-66,19,0,0,0.503919 -28781,7106:495,-65,19,0,0,0.504124 -28782,7106:394,-64,19,0,0,0.50546 -28783,7106:393,-63,19,0,0,0.499089 -28784,7106:392,-62,19,0,0,0.496572 -28785,7106:391,-61,19,0,0,0.498268 -28786,7106:390,-60,19,0,0,0.491821 -28787,7105:499,-59,19,0,0,0.488432 -28788,7105:498,-58,19,0,0,0.485763 -28789,7105:497,-57,19,0,0,0.486225 -28790,7105:496,-56,19,0,0,0.484788 -28791,7105:495,-55,19,0,0,0.486635 -28792,7105:394,-54,19,0,0,0.486584 -28793,7105:393,-53,19,0,0,0.482504 -28794,7105:392,-52,19,0,0,0.478118 -28795,7105:391,-51,19,0,0,0.471969 -28796,7105:390,-50,19,0,0,0.473352 -28797,7104:499,-49,19,0,0,0.475376 -28798,7104:498,-48,19,0,0,0.481426 -28799,7104:497,-47,19,0,0,0.485019 -28800,7104:496,-46,19,0,0,0.479836 -28801,7104:495,-45,19,0,0,0.476171 -28802,7104:394,-44,19,0,0,0.486147 -28803,7104:393,-43,19,0,0,0.485275 -28804,7104:392,-42,19,0,0,0.48566 -28805,7104:391,-41,19,0,0,0.48625 -28806,7104:390,-40,19,0,0,0.486378 -28807,7103:499,-39,19,0,0,0.483042 -28808,7103:498,-38,19,0,0,0.475094 -28809,7103:497,-37,19,0,0,0.475581 -28810,7103:496,-36,19,0,0,0.476631 -28811,7103:495,-35,19,0,0,0.467721 -28812,7103:394,-34,19,0,0,0.468437 -28813,7103:393,-33,19,0,0,0.468488 -28814,7103:392,-32,19,0,0,0.471559 -28815,7103:391,-31,19,0,0,0.462328 -28816,7103:390,-30,19,0,0,0.460515 -28817,7102:499,-29,19,0,0,0.468872 -28818,7102:498,-28,19,0,0,0.462992 -28819,7102:497,-27,19,0,0,0.4598 -28820,7102:496,-26,19,0,0,0.458193 -28821,7102:495,-25,19,0,0,0.462915 -28822,7102:394,-24,19,0,0,0.465266 -28823,7102:393,-23,19,0,0,0.461204 -28824,7102:392,-22,19,0,0,0.457658 -28825,7102:391,-21,19,0,0,0.458116 -28826,7102:390,-20,19,0,0,0.460413 -28827,7101:499,-19,19,0,0,0.462123 -28828,7101:498,-18,19,0,0,0.460413 -28829,7101:497,-17,19,0,0,0.458448 -28830,7101:496,-16,19,0,0,0.454344 -28831,7101:495,-15,19,0,0,0.453427 -28832,7101:394,-14,19,0,0,0.450322 -28833,7101:393,-13,19,0,0,0.450069 -28834,7101:392,-12,19,0,0,0.443086 -28835,7101:391,-11,19,0,0,0.434408 -28836,1101:498,18,19,0,0,0.443922 -28837,1101:499,19,19,0,0,0.453809 -28838,1102:499,29,19,0,0,0.42123 -28839,1112:393,123,19,0,0,0.298907 -28840,1112:394,124,19,0,0,0.414731 -28841,1112:495,125,19,0,0,0.40846 -28842,1112:496,126,19,0,0,0.410647 -28843,1112:497,127,19,0,0,0.443086 -28844,1112:498,128,19,0,0,0.50623 -28845,1112:499,129,19,0,0,0.514805 -28846,1113:390,130,19,0,0,0.500477 -28847,1113:391,131,19,0,0,0.504894 -28848,1113:392,132,19,0,0,0.5205 -28849,1113:393,133,19,0,0,0.508028 -28850,1113:394,134,19,0,0,0.46432 -28851,1113:495,135,19,0,0,0.456255 -28852,1113:496,136,19,0,0,0.469384 -28853,1113:497,137,19,0,0,0.457938 -28854,1113:498,138,19,0,0,0.457351 -28855,1113:499,139,19,0,0,0.464781 -28856,1114:390,140,19,0,0,0.479708 -28857,1114:391,141,19,0,0,0.480785 -28858,1114:392,142,19,0,0,0.480811 -28859,1114:393,143,19,0,0,0.485711 -28860,1114:394,144,19,0,0,0.495288 -28861,1114:495,145,19,0,0,0.493722 -28862,1114:496,146,19,0,0,0.491154 -28863,1114:497,147,19,0,0,0.489177 -28864,1114:498,148,19,0,0,0.489279 -28865,1114:499,149,19,0,0,0.492694 -28866,1115:390,150,19,0,0,0.49236 -28867,1115:391,151,19,0,0,0.491128 -28868,1115:392,152,19,0,0,0.491462 -28869,1115:393,153,19,0,0,0.48951 -28870,1115:394,154,19,0,0,0.484915 -28871,1115:495,155,19,0,0,0.484659 -28872,1115:496,156,19,0,0,0.486378 -28873,1115:497,157,19,0,0,0.487072 -28874,1115:498,158,19,0,0,0.483273 -28875,1115:499,159,19,0,0,0.478426 -28876,1116:390,160,19,0,0,0.473301 -28877,1116:391,161,19,0,0,0.467388 -28878,1116:392,162,19,0,0,0.470996 -28879,1116:393,163,19,0,0,0.475017 -28880,1116:394,164,19,0,0,0.474325 -28881,1116:495,165,19,0,0,0.468437 -28882,1116:496,166,19,0,0,0.46749 -28883,1116:497,167,19,0,0,0.465036 -28884,1116:498,168,19,0,0,0.460642 -28885,1116:499,169,19,0,0,0.460719 -28886,1117:390,170,19,0,0,0.453249 -28887,1117:391,171,19,0,0,0.454472 -28888,1117:392,172,19,0,0,0.456408 -28889,1117:393,173,19,0,0,0.450577 -28890,1117:394,174,19,0,0,0.449763 -28891,1117:495,175,19,0,0,0.442072 -28892,1117:496,176,19,0,0,0.44613 -28893,1117:497,177,19,0,0,0.434736 -28894,1117:498,178,19,0,0,0.439741 -28895,1117:499,179,19,0,0,0.440223 -28896,1118:390,180,19,0,0,0.439235 -28897,7218:100,-180,20,0,0,0.407369 -28898,7217:209,-179,20,0,0,0.40259 -28899,7217:208,-178,20,0,0,0.391841 -28900,7217:207,-177,20,0,0,0.394709 -28901,7217:206,-176,20,0,0,0.389493 -28902,7217:205,-175,20,0,0,0.390471 -28903,7217:104,-174,20,0,0,0.392233 -28904,7217:103,-173,20,0,0,0.395053 -28905,7217:102,-172,20,0,0,0.396208 -28906,7217:101,-171,20,0,0,0.395544 -28907,7217:100,-170,20,0,0,0.396085 -28908,7216:209,-169,20,0,0,0.389981 -28909,7216:208,-168,20,0,0,0.379621 -28910,7216:207,-167,20,0,0,0.382747 -28911,7216:206,-166,20,0,0,0.38964 -28912,7216:205,-165,20,0,0,0.393384 -28913,7216:104,-164,20,0,0,0.395912 -28914,7216:103,-163,20,0,0,0.39788 -28915,7216:102,-162,20,0,0,0.395691 -28916,7216:101,-161,20,0,0,0.374962 -28917,7216:100,-160,20,0,0,0.40027 -28918,7215:209,-159,20,0,0,0.389127 -28919,7215:208,-158,20,0,0,0.403579 -28920,7215:207,-157,20,0,0,0.406402 -28921,7215:206,-156,20,0,0,0.401356 -28922,7215:205,-155,20,0,0,0.399086 -28923,7215:104,-154,20,0,0,0.40665 -28924,7215:103,-153,20,0,0,0.400368 -28925,7215:102,-152,20,0,0,0.41107 -28926,7215:101,-151,20,0,0,0.415604 -28927,7215:100,-150,20,0,0,0.416203 -28928,7214:209,-149,20,0,0,0.417802 -28929,7214:208,-148,20,0,0,0.415854 -28930,7214:207,-147,20,0,0,0.422733 -28931,7214:206,-146,20,0,0,0.427454 -28932,7214:205,-145,20,0,0,0.422533 -28934,7214:103,-143,20,0,0,0.415429 -28935,7214:102,-142,20,0,0,0.412165 -28936,7214:101,-141,20,0,0,0.411518 -28937,7214:100,-140,20,0,0,0.408635 -28938,7213:209,-139,20,0,0,0.408709 -28939,7213:208,-138,20,0,0,0.409355 -28940,7213:207,-137,20,0,0,0.405287 -28941,7213:206,-136,20,0,0,0.401504 -28942,7213:205,-135,20,0,0,0.392453 -28943,7213:104,-134,20,0,0,0.390397 -28944,7213:103,-133,20,0,0,0.387564 -28945,7213:102,-132,20,0,0,0.384034 -28946,7213:101,-131,20,0,0,0.376794 -28947,7213:100,-130,20,0,0,0.370351 -28948,7212:209,-129,20,0,0,0.360345 -28949,7212:208,-128,20,0,0,0.3451 -28950,7212:207,-127,20,0,0,0.348008 -28951,7212:206,-126,20,0,0,0.338995 -28952,7212:205,-125,20,0,0,0.331987 -28953,7212:104,-124,20,0,0,0.334658 -28954,7212:103,-123,20,0,0,0.327831 -28955,7212:102,-122,20,0,0,0.331349 -28956,7212:101,-121,20,0,0,0.331053 -28957,7212:100,-120,20,0,0,0.339571 -28958,7211:209,-119,20,0,0,0.348591 -28959,7211:208,-118,20,0,0,0.355976 -28960,7211:207,-117,20,0,0,0.351981 -28961,7208:100,-80,20,0,0,0.440172 -28962,7207:209,-79,20,0,0,0.506821 -28963,7207:208,-78,20,0,0,0.537854 -28964,7207:207,-77,20,0,0,0.565494 -28965,7207:206,-76,20,0,0,0.565797 -28966,7207:205,-75,20,0,0,0.540764 -28967,7207:104,-74,20,0,0,0.508002 -28968,7207:103,-73,20,0,0,0.512546 -28969,7207:102,-72,20,0,0,0.5004 -28970,7207:101,-71,20,0,0,0.511314 -28971,7207:100,-70,20,0,0,0.514625 -28972,7206:209,-69,20,0,0,0.509337 -28973,7206:208,-68,20,0,0,0.505844 -28974,7206:207,-67,20,0,0,0.500811 -28975,7206:206,-66,20,0,0,0.494158 -28976,7206:205,-65,20,0,0,0.491154 -28977,7206:104,-64,20,0,0,0.487482 -28978,7206:103,-63,20,0,0,0.486481 -28979,7206:102,-62,20,0,0,0.484813 -28980,7206:101,-61,20,0,0,0.4804 -28981,7206:100,-60,20,0,0,0.47817 -28982,7205:209,-59,20,0,0,0.477119 -28983,7205:208,-58,20,0,0,0.473583 -28984,7205:207,-57,20,0,0,0.472379 -28985,7205:206,-56,20,0,0,0.472455 -28986,7205:205,-55,20,0,0,0.471099 -28987,7205:104,-54,20,0,0,0.468642 -28988,7205:103,-53,20,0,0,0.465905 -28989,7205:102,-52,20,0,0,0.463273 -28990,7205:101,-51,20,0,0,0.459545 -28991,7205:100,-50,20,0,0,0.460056 -28992,7204:209,-49,20,0,0,0.461025 -28993,7204:208,-48,20,0,0,0.463758 -28994,7204:207,-47,20,0,0,0.460642 -28995,7204:206,-46,20,0,0,0.451035 -28996,7204:205,-45,20,0,0,0.452663 -28997,7204:104,-44,20,0,0,0.45804 -28998,7204:103,-43,20,0,0,0.466391 -28999,7204:102,-42,20,0,0,0.463273 -29000,7204:101,-41,20,0,0,0.468335 -29001,7204:100,-40,20,0,0,0.472507 -29002,7203:209,-39,20,0,0,0.469486 -29003,7203:208,-38,20,0,0,0.463273 -29004,7203:207,-37,20,0,0,0.454191 -29005,7203:206,-36,20,0,0,0.450272 -29006,7203:205,-35,20,0,0,0.45493 -29007,7203:104,-34,20,0,0,0.457862 -29008,7203:103,-33,20,0,0,0.456586 -29009,7203:102,-32,20,0,0,0.451264 -29010,7203:101,-31,20,0,0,0.447755 -29011,7203:100,-30,20,0,0,0.448899 -29012,7202:209,-29,20,0,0,0.449483 -29013,7202:208,-28,20,0,0,0.454981 -29014,7202:207,-27,20,0,0,0.447755 -29015,7202:206,-26,20,0,0,0.440881 -29016,7202:205,-25,20,0,0,0.444379 -29017,7202:104,-24,20,0,0,0.452205 -29018,7202:103,-23,20,0,0,0.448238 -29019,7202:102,-22,20,0,0,0.445242 -29020,7202:101,-21,20,0,0,0.450577 -29021,7202:100,-20,20,0,0,0.451747 -29022,7201:209,-19,20,0,0,0.450882 -29023,7201:208,-18,20,0,0,0.450043 -29024,7201:207,-17,20,0,0,0.446079 -29025,7201:206,-16,20,0,0,0.442604 -29026,7201:205,-15,20,0,0,0.445952 -29027,7201:104,-14,20,0,0,0.444632 -29028,7201:103,-13,20,0,0,0.445369 -29029,7201:102,-12,20,0,0,0.440552 -29030,7201:101,-11,20,0,0,0.423235 -29031,7201:100,-10,20,0,0,0.399161 -29032,1201:206,16,20,0,0,0.427881 -29033,1201:207,17,20,0,0,0.420779 -29034,1201:208,18,20,0,0,0.428661 -29035,1201:209,19,20,0,0,0.445064 -29036,1202:104,24,20,0,0,0.445318 -29037,1202:205,25,20,0,0,0.443618 -29038,1202:206,26,20,0,0,0.439944 -29039,1202:207,27,20,0,0,0.439362 -29040,1202:208,28,20,0,0,0.439792 -29041,1202:209,29,20,0,0,0.446511 -29042,1203:100,30,20,0,0,0.457938 -29043,1203:101,31,20,0,0,0.464499 -29044,1203:102,32,20,0,0,0.466851 -29045,1203:103,33,20,0,0,0.459672 -29046,1203:104,34,20,0,0,0.476709 -29047,1212:101,121,20,0,0,0.262279 -29048,1212:102,122,20,0,0,0.246307 -29049,1212:103,123,20,0,0,0.306759 -29050,1212:104,124,20,0,0,0.348918 -29051,1212:205,125,20,0,0,0.382116 -29052,1212:206,126,20,0,0,0.433903 -29053,1212:207,127,20,0,0,0.471687 -29054,1212:208,128,20,0,0,0.493696 -29055,1212:209,129,20,0,0,0.481195 -29056,1213:100,130,20,0,0,0.47243 -29057,1213:102,132,20,0,0,0.501787 -29058,1213:103,133,20,0,0,0.5185 -29059,1213:104,134,20,0,0,0.509414 -29060,1213:205,135,20,0,0,0.476555 -29061,1213:206,136,20,0,0,0.459086 -29062,1213:207,137,20,0,0,0.458091 -29063,1213:208,138,20,0,0,0.45975 -29064,1213:209,139,20,0,0,0.462762 -29065,1214:100,140,20,0,0,0.465982 -29066,1214:101,141,20,0,0,0.469153 -29067,1214:102,142,20,0,0,0.480016 -29068,1214:103,143,20,0,0,0.487174 -29069,1214:104,144,20,0,0,0.483658 -29070,1214:205,145,20,0,0,0.482453 -29071,1214:206,146,20,0,0,0.474197 -29072,1214:207,147,20,0,0,0.46946 -29073,1214:208,148,20,0,0,0.471637 -29074,1214:209,149,20,0,0,0.474325 -29075,1215:100,150,20,0,0,0.477119 -29076,1215:101,151,20,0,0,0.482529 -29077,1215:102,152,20,0,0,0.489074 -29078,1215:103,153,20,0,0,0.484607 -29079,1215:104,154,20,0,0,0.487328 -29080,1215:205,155,20,0,0,0.484531 -29081,1215:206,156,20,0,0,0.483146 -29082,1215:207,157,20,0,0,0.48548 -29083,1215:208,158,20,0,0,0.470715 -29084,1215:209,159,20,0,0,0.46031 -29085,1216:100,160,20,0,0,0.453478 -29086,1216:101,161,20,0,0,0.451543 -29087,1216:102,162,20,0,0,0.437945 -29088,1216:103,163,20,0,0,0.443618 -29089,1216:104,164,20,0,0,0.439488 -29090,1216:205,165,20,0,0,0.437996 -29091,1216:206,166,20,0,0,0.441641 -29092,1216:207,167,20,0,0,0.43307 -29093,1216:208,168,20,0,0,0.436807 -29094,1216:209,169,20,0,0,0.432919 -29095,1217:100,170,20,0,0,0.438552 -29096,1217:101,171,20,0,0,0.433373 -29097,1217:102,172,20,0,0,0.421656 -29098,1217:103,173,20,0,0,0.419303 -29099,1217:104,174,20,0,0,0.419027 -29100,1217:205,175,20,0,0,0.421556 -29101,1217:206,176,20,0,0,0.420528 -29102,1217:207,177,20,0,0,0.417277 -29103,1217:208,178,20,0,0,0.408983 -29104,1217:209,179,20,0,0,0.410647 -29105,1218:100,180,20,0,0,0.407369 -29106,7218:110,-180,21,0,0,0.377638 -29107,7217:219,-179,21,0,0,0.380735 -29108,7217:218,-178,21,0,0,0.374168 -29109,7217:217,-177,21,0,0,0.368436 -29110,7217:216,-176,21,0,0,0.364238 -29111,7217:215,-175,21,0,0,0.365214 -29112,7217:114,-174,21,0,0,0.372173 -29113,7217:113,-173,21,0,0,0.365857 -29114,7217:112,-172,21,0,0,0.371309 -29115,7217:111,-171,21,0,0,0.380008 -29116,7217:110,-170,21,0,0,0.381292 -29117,7216:219,-169,21,0,0,0.373518 -29118,7216:218,-168,21,0,0,0.363026 -29119,7216:217,-167,21,0,0,0.36343 -29120,7216:216,-166,21,0,0,0.365405 -29121,7216:215,-165,21,0,0,0.372245 -29122,7216:114,-164,21,0,0,0.360227 -29123,7216:113,-163,21,0,0,0.364857 -29124,7216:112,-162,21,0,0,0.357131 -29125,7216:111,-161,21,0,0,0.370662 -29126,7216:110,-160,21,0,0,0.381389 -29127,7215:219,-159,21,0,0,0.383718 -29128,7215:218,-158,21,0,0,0.377373 -29129,7215:217,-157,21,0,0,0.383694 -29130,7215:216,-156,21,0,0,0.377373 -29131,7215:215,-155,21,0,0,0.388223 -29132,7215:114,-154,21,0,0,0.382019 -29133,7215:113,-153,21,0,0,0.386224 -29134,7215:112,-152,21,0,0,0.39096 -29135,7215:111,-151,21,0,0,0.395839 -29136,7215:110,-150,21,0,0,0.399407 -29137,7214:219,-149,21,0,0,0.395519 -29138,7214:218,-148,21,0,0,0.401479 -29139,7214:217,-147,21,0,0,0.400492 -29140,7214:216,-146,21,0,0,0.400245 -29141,7214:215,-145,21,0,0,0.40551 -29142,7214:114,-144,21,0,0,0.404742 -29143,7214:113,-143,21,0,0,0.402665 -29144,7214:112,-142,21,0,0,0.399851 -29145,7214:111,-141,21,0,0,0.393286 -29146,7214:110,-140,21,0,0,0.388907 -29147,7213:219,-139,21,0,0,0.394709 -29148,7213:218,-138,21,0,0,0.399259 -29149,7213:217,-137,21,0,0,0.39211 -29150,7213:216,-136,21,0,0,0.389688 -29151,7213:215,-135,21,0,0,0.382456 -29152,7213:114,-134,21,0,0,0.380444 -29153,7213:113,-133,21,0,0,0.373543 -29154,7213:112,-132,21,0,0,0.369919 -29155,7213:111,-131,21,0,0,0.367002 -29156,7213:110,-130,21,0,0,0.349128 -29157,7212:219,-129,21,0,0,0.348311 -29158,7212:218,-128,21,0,0,0.349408 -29159,7212:217,-127,21,0,0,0.335872 -29160,7212:216,-126,21,0,0,0.334406 -29161,7212:215,-125,21,0,0,0.328079 -29162,7212:114,-124,21,0,0,0.311037 -29163,7212:113,-123,21,0,0,0.310442 -29164,7212:112,-122,21,0,0,0.317123 -29165,7212:111,-121,21,0,0,0.324961 -29166,7212:110,-120,21,0,0,0.334452 -29167,7211:219,-119,21,0,0,0.342111 -29168,7211:218,-118,21,0,0,0.336422 -29169,7207:219,-79,21,0,0,0.396798 -29170,7207:218,-78,21,0,0,0.440703 -29171,7207:217,-77,21,0,0,0.487508 -29172,7207:216,-76,21,0,0,0.55537 -29173,7207:215,-75,21,0,0,0.547568 -29174,7207:114,-74,21,0,0,0.512931 -29175,7207:113,-73,21,0,0,0.507489 -29176,7207:112,-72,21,0,0,0.500117 -29177,7207:111,-71,21,0,0,0.498165 -29178,7207:110,-70,21,0,0,0.498755 -29179,7206:219,-69,21,0,0,0.502044 -29180,7206:218,-68,21,0,0,0.503816 -29181,7206:217,-67,21,0,0,0.497292 -29182,7206:216,-66,21,0,0,0.498755 -29183,7206:215,-65,21,0,0,0.498294 -29184,7206:114,-64,21,0,0,0.498345 -29185,7206:113,-63,21,0,0,0.492617 -29186,7206:112,-62,21,0,0,0.480811 -29187,7206:111,-61,21,0,0,0.476964 -29188,7206:110,-60,21,0,0,0.477093 -29189,7205:219,-59,21,0,0,0.476247 -29190,7205:218,-58,21,0,0,0.471944 -29191,7205:217,-57,21,0,0,0.468233 -29192,7205:216,-56,21,0,0,0.467286 -29193,7205:215,-55,21,0,0,0.460413 -29194,7205:114,-54,21,0,0,0.452307 -29195,7205:113,-53,21,0,0,0.449687 -29196,7205:112,-52,21,0,0,0.448975 -29197,7205:111,-51,21,0,0,0.451671 -29198,7205:110,-50,21,0,0,0.44984 -29199,7204:219,-49,21,0,0,0.452231 -29200,7204:218,-48,21,0,0,0.449255 -29201,7204:217,-47,21,0,0,0.441616 -29202,7204:216,-46,21,0,0,0.437718 -29203,7204:215,-45,21,0,0,0.443136 -29204,7204:114,-44,21,0,0,0.439817 -29205,7204:113,-43,21,0,0,0.434888 -29206,7204:112,-42,21,0,0,0.443162 -29207,7204:111,-41,21,0,0,0.447857 -29208,7204:110,-40,21,0,0,0.445699 -29209,7203:219,-39,21,0,0,0.441919 -29210,7203:218,-38,21,0,0,0.433676 -29211,7203:217,-37,21,0,0,0.439691 -29212,7203:216,-36,21,0,0,0.442832 -29213,7203:215,-35,21,0,0,0.435923 -29214,7203:114,-34,21,0,0,0.435367 -29215,7203:113,-33,21,0,0,0.418627 -29216,7203:112,-32,21,0,0,0.440122 -29217,7203:111,-31,21,0,0,0.437718 -29218,7203:110,-30,21,0,0,0.434509 -29219,7202:219,-29,21,0,0,0.434787 -29220,7202:218,-28,21,0,0,0.439488 -29221,7202:217,-27,21,0,0,0.43128 -29222,7202:216,-26,21,0,0,0.426197 -29223,7202:215,-25,21,0,0,0.423912 -29224,7202:114,-24,21,0,0,0.427428 -29225,7202:113,-23,21,0,0,0.433827 -29226,7202:112,-22,21,0,0,0.434307 -29227,7202:111,-21,21,0,0,0.445699 -29228,7202:110,-20,21,0,0,0.443364 -29229,7201:219,-19,21,0,0,0.44154 -29230,7201:218,-18,21,0,0,0.442097 -29231,7201:217,-17,21,0,0,0.440577 -29232,7201:216,-16,21,0,0,0.437439 -29233,7201:215,-15,21,0,0,0.437894 -29234,7201:114,-14,21,0,0,0.437819 -29235,7201:113,-13,21,0,0,0.436479 -29236,7201:112,-12,21,0,0,0.435822 -29237,7201:111,-11,21,0,0,0.434382 -29238,7201:110,-10,21,0,0,0.433524 -29239,7200:219,-9,21,0,0,0.41346 -29240,7200:218,-8,21,0,0,0.394341 -29241,1201:111,11,21,0,0,0.386127 -29242,1201:112,12,21,0,0,0.408684 -29243,1201:113,13,21,0,0,0.410797 -29244,1201:114,14,21,0,0,0.419152 -29245,1201:215,15,21,0,0,0.408783 -29246,1201:216,16,21,0,0,0.425368 -29247,1201:217,17,21,0,0,0.418302 -29248,1201:218,18,21,0,0,0.40353 -29249,1201:219,19,21,0,0,0.416378 -29250,1202:110,20,21,0,0,0.413435 -29251,1202:111,21,21,0,0,0.429744 -29252,1202:112,22,21,0,0,0.43128 -29253,1202:113,23,21,0,0,0.424239 -29254,1202:114,24,21,0,0,0.424715 -29255,1202:215,25,21,0,0,0.420203 -29256,1202:216,26,21,0,0,0.428988 -29257,1202:217,27,21,0,0,0.430675 -29258,1202:218,28,21,0,0,0.426121 -29259,1202:219,29,21,0,0,0.432364 -29260,1203:110,30,21,0,0,0.43254 -29261,1203:111,31,21,0,0,0.441337 -29262,1203:112,32,21,0,0,0.441995 -29263,1203:113,33,21,0,0,0.450704 -29264,1203:114,34,21,0,0,0.479708 -29265,1212:112,122,21,0,0,0.229074 -29266,1212:113,123,21,0,0,0.302754 -29267,1212:114,124,21,0,0,0.384301 -29268,1212:215,125,21,0,0,0.417327 -29269,1212:216,126,21,0,0,0.446866 -29270,1212:218,128,21,0,0,0.481042 -29271,1212:219,129,21,0,0,0.468437 -29272,1213:110,130,21,0,0,0.402912 -29273,1213:114,134,21,0,0,0.485275 -29274,1213:215,135,21,0,0,0.497446 -29275,1213:216,136,21,0,0,0.500169 -29276,1213:217,137,21,0,0,0.504175 -29277,1213:218,138,21,0,0,0.501607 -29278,1213:219,139,21,0,0,0.494929 -29279,1214:110,140,21,0,0,0.490204 -29280,1214:111,141,21,0,0,0.480631 -29281,1214:112,142,21,0,0,0.472738 -29282,1214:113,143,21,0,0,0.478887 -29283,1214:114,144,21,0,0,0.477503 -29284,1214:215,145,21,0,0,0.470049 -29285,1214:216,146,21,0,0,0.470843 -29286,1214:217,147,21,0,0,0.473532 -29287,1214:218,148,21,0,0,0.462634 -29288,1214:219,149,21,0,0,0.461306 -29289,1215:110,150,21,0,0,0.469103 -29290,1215:111,151,21,0,0,0.473096 -29291,1215:112,152,21,0,0,0.483427 -29292,1215:113,153,21,0,0,0.483915 -29293,1215:114,154,21,0,0,0.474505 -29294,1215:215,155,21,0,0,0.476555 -29295,1215:216,156,21,0,0,0.478452 -29296,1215:217,157,21,0,0,0.478528 -29297,1215:218,158,21,0,0,0.475837 -29298,1215:219,159,21,0,0,0.463043 -29299,1216:110,160,21,0,0,0.453682 -29300,1216:111,161,21,0,0,0.431658 -29301,1216:112,162,21,0,0,0.421205 -29302,1216:113,163,21,0,0,0.417227 -29303,1216:114,164,21,0,0,0.411518 -29304,1216:215,165,21,0,0,0.41025 -29305,1216:216,166,21,0,0,0.412837 -29306,1216:217,167,21,0,0,0.413435 -29307,1216:218,168,21,0,0,0.412065 -29308,1216:219,169,21,0,0,0.408238 -29309,1217:110,170,21,0,0,0.406352 -29310,1217:111,171,21,0,0,0.403407 -29311,1217:112,172,21,0,0,0.400467 -29312,1217:113,173,21,0,0,0.395397 -29313,1217:114,174,21,0,0,0.385786 -29314,1217:215,175,21,0,0,0.379717 -29315,1217:216,176,21,0,0,0.37996 -29316,1217:217,177,21,0,0,0.380129 -29317,1217:218,178,21,0,0,0.37648 -29318,1217:219,179,21,0,0,0.375516 -29319,1218:110,180,21,0,0,0.377638 -29320,7218:120,-180,22,0,0,0.357791 -29321,7217:229,-179,22,0,0,0.353765 -29322,7217:228,-178,22,0,0,0.347472 -29323,7217:227,-177,22,0,0,0.343198 -29324,7217:226,-176,22,0,0,0.340125 -29325,7217:225,-175,22,0,0,0.340078 -29326,7217:124,-174,22,0,0,0.33918 -29327,7217:123,-173,22,0,0,0.338604 -29328,7217:122,-172,22,0,0,0.340078 -29329,7217:121,-171,22,0,0,0.342712 -29330,7217:120,-170,22,0,0,0.341325 -29331,7216:229,-169,22,0,0,0.332876 -29332,7216:228,-168,22,0,0,0.333219 -29333,7216:227,-167,22,0,0,0.33578 -29334,7216:226,-166,22,0,0,0.339203 -29335,7216:225,-165,22,0,0,0.337133 -29336,7216:124,-164,22,0,0,0.337961 -29337,7216:123,-163,22,0,0,0.335505 -29338,7216:122,-162,22,0,0,0.336147 -29339,7216:121,-161,22,0,0,0.342018 -29340,7216:120,-160,22,0,0,0.351349 -29341,7215:229,-159,22,0,0,0.359848 -29342,7215:228,-158,22,0,0,0.358075 -29343,7215:227,-157,22,0,0,0.359919 -29344,7215:226,-156,22,0,0,0.35487 -29345,7215:225,-155,22,0,0,0.358548 -29346,7215:124,-154,22,0,0,0.359233 -29347,7215:123,-153,22,0,0,0.365357 -29348,7215:122,-152,22,0,0,0.368746 -29349,7215:121,-151,22,0,0,0.370207 -29350,7215:120,-150,22,0,0,0.373855 -29351,7214:229,-149,22,0,0,0.376746 -29352,7214:228,-148,22,0,0,0.377663 -29353,7214:227,-147,22,0,0,0.382165 -29354,7214:226,-146,22,0,0,0.384448 -29355,7214:225,-145,22,0,0,0.387808 -29356,7214:124,-144,22,0,0,0.381485 -29357,7214:123,-143,22,0,0,0.379161 -29358,7214:122,-142,22,0,0,0.379717 -29359,7214:121,-141,22,0,0,0.376939 -29360,7214:120,-140,22,0,0,0.379209 -29361,7213:229,-139,22,0,0,0.377132 -29362,7213:228,-138,22,0,0,0.38435 -29363,7213:227,-137,22,0,0,0.380299 -29364,7213:226,-136,22,0,0,0.379476 -29365,7213:225,-135,22,0,0,0.372869 -29366,7213:124,-134,22,0,0,0.374529 -29367,7213:123,-133,22,0,0,0.363881 -29368,7213:122,-132,22,0,0,0.358618 -29369,7213:121,-131,22,0,0,0.355999 -29370,7213:120,-130,22,0,0,0.349128 -29371,7212:229,-129,22,0,0,0.336743 -29372,7212:228,-128,22,0,0,0.328669 -29373,7212:227,-127,22,0,0,0.322509 -29374,7212:226,-126,22,0,0,0.311014 -29375,7212:225,-125,22,0,0,0.307744 -29376,7212:124,-124,22,0,0,0.301173 -29377,7212:123,-123,22,0,0,0.300957 -29378,7212:122,-122,22,0,0,0.307088 -29379,7212:121,-121,22,0,0,0.308554 -29380,7207:227,-77,22,0,0,0.391645 -29381,7207:226,-76,22,0,0,0.454064 -29382,7207:225,-75,22,0,0,0.551435 -29383,7207:124,-74,22,0,0,0.523755 -29384,7207:123,-73,22,0,0,0.504303 -29385,7207:122,-72,22,0,0,0.484864 -29386,7207:121,-71,22,0,0,0.490974 -29387,7207:120,-70,22,0,0,0.493645 -29388,7206:229,-69,22,0,0,0.499372 -29389,7206:228,-68,22,0,0,0.499526 -29390,7206:227,-67,22,0,0,0.497728 -29391,7206:226,-66,22,0,0,0.493542 -29392,7206:225,-65,22,0,0,0.484326 -29393,7206:124,-64,22,0,0,0.47817 -29394,7206:123,-63,22,0,0,0.467644 -29395,7206:122,-62,22,0,0,0.453809 -29396,7206:121,-61,22,0,0,0.462328 -29397,7206:120,-60,22,0,0,0.467388 -29398,7205:229,-59,22,0,0,0.454089 -29399,7205:228,-58,22,0,0,0.441235 -29400,7205:227,-57,22,0,0,0.448492 -29401,7205:226,-56,22,0,0,0.439792 -29402,7205:225,-55,22,0,0,0.447121 -29403,7205:124,-54,22,0,0,0.449535 -29404,7205:123,-53,22,0,0,0.440906 -29405,7205:122,-52,22,0,0,0.441413 -29406,7205:121,-51,22,0,0,0.441463 -29407,7205:120,-50,22,0,0,0.436631 -29408,7204:229,-49,22,0,0,0.436833 -29409,7204:228,-48,22,0,0,0.436403 -29410,7204:227,-47,22,0,0,0.425017 -29411,7204:226,-46,22,0,0,0.431406 -29412,7204:225,-45,22,0,0,0.432011 -29413,7204:124,-44,22,0,0,0.426398 -29414,7204:123,-43,22,0,0,0.420353 -29415,7204:122,-42,22,0,0,0.420704 -29416,7204:121,-41,22,0,0,0.425594 -29417,7204:120,-40,22,0,0,0.432163 -29418,7203:229,-39,22,0,0,0.41528 -29419,7203:228,-38,22,0,0,0.405114 -29420,7203:227,-37,22,0,0,0.415081 -29421,7203:226,-36,22,0,0,0.417377 -29422,7203:225,-35,22,0,0,0.420003 -29423,7203:124,-34,22,0,0,0.416078 -29424,7203:123,-33,22,0,0,0.408535 -29425,7203:122,-32,22,0,0,0.412239 -29426,7203:121,-31,22,0,0,0.407171 -29427,7203:120,-30,22,0,0,0.410174 -29428,7202:229,-29,22,0,0,0.415155 -29429,7202:228,-28,22,0,0,0.419352 -29430,7202:227,-27,22,0,0,0.416627 -29431,7202:226,-26,22,0,0,0.400196 -29432,7202:225,-25,22,0,0,0.413909 -29433,7202:124,-24,22,0,0,0.411319 -29434,7202:123,-23,22,0,0,0.416528 -29435,7202:122,-22,22,0,0,0.417527 -29436,7202:121,-21,22,0,0,0.423887 -29437,7202:120,-20,22,0,0,0.425117 -29438,7201:229,-19,22,0,0,0.416952 -29439,7201:228,-18,22,0,0,0.425041 -29440,7201:227,-17,22,0,0,0.427907 -29441,7201:226,-16,22,0,0,0.43191 -29442,7201:225,-15,22,0,0,0.423335 -29443,7201:124,-14,22,0,0,0.431533 -29444,7201:123,-13,22,0,0,0.428108 -29445,7201:122,-12,22,0,0,0.427956 -29446,7201:121,-11,22,0,0,0.430801 -29447,7201:120,-10,22,0,0,0.423661 -29448,7200:229,-9,22,0,0,0.418127 -29449,7200:228,-8,22,0,0,0.408485 -29450,7200:227,-7,22,0,0,0.392649 -29451,1201:121,11,22,0,0,0.371837 -29452,1201:122,12,22,0,0,0.400591 -29453,1201:123,13,22,0,0,0.402072 -29454,1201:124,14,22,0,0,0.413261 -29455,1201:225,15,22,0,0,0.399876 -29456,1201:226,16,22,0,0,0.39466 -29457,1201:227,17,22,0,0,0.391866 -29458,1201:228,18,22,0,0,0.394954 -29459,1201:229,19,22,0,0,0.399604 -29460,1202:120,20,22,0,0,0.406327 -29461,1202:121,21,22,0,0,0.414606 -29462,1202:122,22,22,0,0,0.418952 -29463,1202:123,23,22,0,0,0.416903 -29464,1202:124,24,22,0,0,0.414482 -29465,1202:225,25,22,0,0,0.413659 -29466,1202:226,26,22,0,0,0.415779 -29467,1202:227,27,22,0,0,0.416478 -29468,1202:228,28,22,0,0,0.415829 -29469,1202:229,29,22,0,0,0.420679 -29470,1203:120,30,22,0,0,0.429014 -29471,1203:121,31,22,0,0,0.431028 -29472,1203:122,32,22,0,0,0.43754 -29473,1203:123,33,22,0,0,0.442173 -29474,1203:124,34,22,0,0,0.445064 -29475,1203:225,35,22,0,0,0.486943 -29476,1212:121,121,22,0,0,0.23859 -29477,1212:122,122,22,0,0,0.282347 -29478,1212:123,123,22,0,0,0.355316 -29479,1212:124,124,22,0,0,0.389737 -29480,1212:225,125,22,0,0,0.351162 -29481,1212:226,126,22,0,0,0.30139 -29482,1212:228,128,22,0,0,0.254367 -29483,1212:229,129,22,0,0,0.328442 -29484,1213:120,130,22,0,0,0.425694 -29485,1213:121,131,22,0,0,0.444658 -29486,1213:225,135,22,0,0,0.320604 -29487,1213:227,137,22,0,0,0.358193 -29488,1213:229,139,22,0,0,0.432414 -29489,1214:120,140,22,0,0,0.442629 -29490,1214:121,141,22,0,0,0.455057 -29491,1214:122,142,22,0,0,0.473941 -29492,1214:123,143,22,0,0,0.479247 -29493,1214:124,144,22,0,0,0.472763 -29494,1214:225,145,22,0,0,0.430877 -29495,1214:226,146,22,0,0,0.417802 -29496,1214:227,147,22,0,0,0.455618 -29497,1214:228,148,22,0,0,0.479118 -29498,1214:229,149,22,0,0,0.473121 -29499,1215:120,150,22,0,0,0.478554 -29500,1215:121,151,22,0,0,0.455236 -29501,1215:122,152,22,0,0,0.476504 -29502,1215:123,153,22,0,0,0.483633 -29503,1215:124,154,22,0,0,0.47999 -29504,1215:225,155,22,0,0,0.48135 -29505,1215:226,156,22,0,0,0.466289 -29506,1215:227,157,22,0,0,0.474941 -29507,1215:228,158,22,0,0,0.448822 -29508,1215:229,159,22,0,0,0.455057 -29509,1216:120,160,22,0,0,0.445927 -29510,1216:121,161,22,0,0,0.430474 -29511,1216:122,162,22,0,0,0.414706 -29512,1216:123,163,22,0,0,0.407692 -29513,1216:124,164,22,0,0,0.404223 -29514,1216:225,165,22,0,0,0.396921 -29515,1216:226,166,22,0,0,0.389664 -29516,1216:227,167,22,0,0,0.389713 -29517,1216:228,168,22,0,0,0.390642 -29518,1216:229,169,22,0,0,0.391523 -29519,1217:120,170,22,0,0,0.389542 -29520,1217:121,171,22,0,0,0.384642 -29521,1217:122,172,22,0,0,0.379669 -29522,1217:123,173,22,0,0,0.383452 -29523,1217:124,174,22,0,0,0.374866 -29524,1217:225,175,22,0,0,0.36956 -29525,1217:226,176,22,0,0,0.368842 -29526,1217:227,177,22,0,0,0.361293 -29527,1217:228,178,22,0,0,0.357603 -29528,1217:229,179,22,0,0,0.355811 -29529,1218:120,180,22,0,0,0.357791 -29530,7218:130,-180,23,0,0,0.334429 -29531,7217:239,-179,23,0,0,0.336513 -29532,7217:238,-178,23,0,0,0.333035 -29533,7217:237,-177,23,0,0,0.325774 -29534,7217:236,-176,23,0,0,0.327106 -29535,7217:235,-175,23,0,0,0.326745 -29536,7217:134,-174,23,0,0,0.32085 -29537,7217:133,-173,23,0,0,0.319576 -29538,7217:132,-172,23,0,0,0.318215 -29539,7217:131,-171,23,0,0,0.314925 -29540,7217:130,-170,23,0,0,0.313773 -29541,7216:239,-169,23,0,0,0.313331 -29542,7216:238,-168,23,0,0,0.316501 -29543,7216:237,-167,23,0,0,0.317969 -29544,7216:236,-166,23,0,0,0.320627 -29545,7216:235,-165,23,0,0,0.321433 -29546,7216:134,-164,23,0,0,0.321164 -29547,7216:133,-163,23,0,0,0.32085 -29548,7216:132,-162,23,0,0,0.321702 -29549,7216:131,-161,23,0,0,0.330439 -29550,7216:130,-160,23,0,0,0.330644 -29551,7215:239,-159,23,0,0,0.329213 -29552,7215:238,-158,23,0,0,0.333835 -29553,7215:237,-157,23,0,0,0.336972 -29554,7215:236,-156,23,0,0,0.337432 -29555,7215:235,-155,23,0,0,0.341025 -29556,7215:134,-154,23,0,0,0.342712 -29557,7215:133,-153,23,0,0,0.349618 -29558,7215:132,-152,23,0,0,0.352685 -29559,7215:131,-151,23,0,0,0.352286 -29560,7215:130,-150,23,0,0,0.349408 -29561,7214:239,-149,23,0,0,0.36134 -29562,7214:238,-148,23,0,0,0.353553 -29563,7214:237,-147,23,0,0,0.362836 -29564,7214:236,-146,23,0,0,0.35534 -29565,7214:235,-145,23,0,0,0.358783 -29566,7214:134,-144,23,0,0,0.361412 -29567,7214:133,-143,23,0,0,0.341533 -29568,7214:132,-142,23,0,0,0.346122 -29569,7214:131,-141,23,0,0,0.364547 -29570,7214:130,-140,23,0,0,0.355999 -29571,7213:239,-139,23,0,0,0.363145 -29572,7213:238,-138,23,0,0,0.357414 -29573,7213:237,-137,23,0,0,0.350016 -29574,7213:236,-136,23,0,0,0.364476 -29575,7213:235,-135,23,0,0,0.359848 -29576,7213:134,-134,23,0,0,0.358453 -29577,7213:133,-133,23,0,0,0.345053 -29578,7213:132,-132,23,0,0,0.340817 -29579,7213:131,-131,23,0,0,0.336032 -29580,7213:130,-130,23,0,0,0.32944 -29581,7212:239,-129,23,0,0,0.318058 -29582,7212:238,-128,23,0,0,0.307043 -29583,7212:237,-127,23,0,0,0.310904 -29584,7212:236,-126,23,0,0,0.316745 -29585,7212:235,-125,23,0,0,0.310046 -29586,7212:134,-124,23,0,0,0.293766 -29587,7212:133,-123,23,0,0,0.297274 -29588,7212:132,-122,23,0,0,0.296223 -29589,7207:235,-75,23,0,0,0.472148 -29590,7207:134,-74,23,0,0,0.540432 -29591,7207:133,-73,23,0,0,0.527496 -29592,7207:132,-72,23,0,0,0.481555 -29593,7207:131,-71,23,0,0,0.485198 -29594,7207:130,-70,23,0,0,0.502506 -29595,7206:239,-69,23,0,0,0.489228 -29596,7206:238,-68,23,0,0,0.49498 -29597,7206:237,-67,23,0,0,0.490589 -29598,7206:236,-66,23,0,0,0.474505 -29599,7206:235,-65,23,0,0,0.47284 -29600,7206:134,-64,23,0,0,0.466621 -29601,7206:133,-63,23,0,0,0.460234 -29602,7206:132,-62,23,0,0,0.462251 -29603,7206:131,-61,23,0,0,0.452791 -29604,7206:130,-60,23,0,0,0.443948 -29605,7205:239,-59,23,0,0,0.441489 -29606,7205:238,-58,23,0,0,0.435241 -29607,7205:237,-57,23,0,0,0.4306 -29608,7205:236,-56,23,0,0,0.430978 -29609,7205:235,-55,23,0,0,0.433095 -29610,7205:134,-54,23,0,0,0.428309 -29611,7205:133,-53,23,0,0,0.425946 -29612,7205:132,-52,23,0,0,0.433373 -29613,7205:131,-51,23,0,0,0.434837 -29614,7205:130,-50,23,0,0,0.424062 -29615,7204:239,-49,23,0,0,0.416103 -29616,7204:238,-48,23,0,0,0.419903 -29617,7204:237,-47,23,0,0,0.414033 -29618,7204:236,-46,23,0,0,0.416203 -29619,7204:235,-45,23,0,0,0.415305 -29620,7204:134,-44,23,0,0,0.409479 -29621,7204:133,-43,23,0,0,0.404817 -29622,7204:132,-42,23,0,0,0.400961 -29623,7204:131,-41,23,0,0,0.408213 -29624,7204:130,-40,23,0,0,0.405857 -29625,7203:239,-39,23,0,0,0.393434 -29626,7203:238,-38,23,0,0,0.39238 -29627,7203:237,-37,23,0,0,0.396158 -29628,7203:236,-36,23,0,0,0.400171 -29629,7203:235,-35,23,0,0,0.386492 -29630,7203:134,-34,23,0,0,0.396232 -29631,7203:133,-33,23,0,0,0.387394 -29632,7203:132,-32,23,0,0,0.389298 -29633,7203:131,-31,23,0,0,0.387126 -29634,7203:130,-30,23,0,0,0.385177 -29635,7202:239,-29,23,0,0,0.40222 -29636,7202:238,-28,23,0,0,0.391841 -29637,7202:237,-27,23,0,0,0.38367 -29638,7202:236,-26,23,0,0,0.391425 -29639,7202:235,-25,23,0,0,0.392453 -29640,7202:134,-24,23,0,0,0.402739 -29641,7202:133,-23,23,0,0,0.399235 -29642,7202:132,-22,23,0,0,0.406625 -29643,7202:131,-21,23,0,0,0.402443 -29644,7202:130,-20,23,0,0,0.405683 -29645,7201:239,-19,23,0,0,0.411443 -29646,7201:238,-18,23,0,0,0.410896 -29647,7201:237,-17,23,0,0,0.41356 -29648,7201:236,-16,23,0,0,0.415829 -29649,7201:235,-15,23,0,0,0.415804 -29650,7201:134,-14,23,0,0,0.410647 -29651,7201:133,-13,23,0,0,0.402566 -29652,7201:132,-12,23,0,0,0.404495 -29653,7201:131,-11,23,0,0,0.409851 -29654,7201:130,-10,23,0,0,0.383111 -29655,7200:239,-9,23,0,0,0.379548 -29656,7200:238,-8,23,0,0,0.375757 -29657,7200:237,-7,23,0,0,0.379355 -29658,7200:236,-6,23,0,0,0.357202 -29659,7200:235,-5,23,0,0,0.349688 -29660,7200:134,-4,23,0,0,0.332533 -29661,7200:133,-3,23,0,0,0.344984 -29662,7200:132,-2,23,0,0,0.352263 -29663,7200:131,-1,23,0,0,0.367552 -29664,1201:131,11,23,0,0,0.395348 -29665,1201:132,12,23,0,0,0.395987 -29666,1201:133,13,23,0,0,0.386736 -29667,1201:134,14,23,0,0,0.378798 -29668,1201:235,15,23,0,0,0.392722 -29669,1201:236,16,23,0,0,0.396674 -29670,1201:237,17,23,0,0,0.396109 -29671,1201:238,18,23,0,0,0.396724 -29672,1201:239,19,23,0,0,0.402888 -29673,1202:130,20,23,0,0,0.418252 -29674,1202:131,21,23,0,0,0.418827 -29675,1202:132,22,23,0,0,0.418952 -29676,1202:133,23,23,0,0,0.414282 -29677,1202:134,24,23,0,0,0.415879 -29678,1202:235,25,23,0,0,0.418452 -29679,1202:236,26,23,0,0,0.414931 -29680,1202:237,27,23,0,0,0.425569 -29681,1202:238,28,23,0,0,0.424916 -29682,1202:239,29,23,0,0,0.42846 -29683,1203:130,30,23,0,0,0.425041 -29684,1203:131,31,23,0,0,0.436807 -29685,1203:132,32,23,0,0,0.44989 -29686,1203:133,33,23,0,0,0.45274 -29687,1203:134,34,23,0,0,0.444937 -29688,1203:235,35,23,0,0,0.482915 -29689,1212:130,120,23,0,0,0.257359 -29691,1212:132,122,23,0,0,0.274606 -29692,1212:133,123,23,0,0,0.331486 -29693,1212:134,124,23,0,0,0.367528 -29694,1212:235,125,23,0,0,0.35238 -29695,1212:236,126,23,0,0,0.304144 -29696,1213:130,130,23,0,0,0.407171 -29697,1213:131,131,23,0,0,0.412713 -29698,1213:132,132,23,0,0,0.410374 -29699,1213:133,133,23,0,0,0.437136 -29700,1213:134,134,23,0,0,0.429416 -29701,1213:235,135,23,0,0,0.423611 -29702,1213:236,136,23,0,0,0.42459 -29703,1214:132,142,23,0,0,0.421079 -29704,1214:133,143,23,0,0,0.422558 -29705,1214:134,144,23,0,0,0.430827 -29706,1214:235,145,23,0,0,0.430524 -29707,1214:236,146,23,0,0,0.425594 -29708,1214:237,147,23,0,0,0.426499 -29709,1214:238,148,23,0,0,0.443162 -29710,1214:239,149,23,0,0,0.454905 -29711,1215:130,150,23,0,0,0.453631 -29712,1215:131,151,23,0,0,0.456638 -29713,1215:132,152,23,0,0,0.461051 -29714,1215:133,153,23,0,0,0.456688 -29715,1215:134,154,23,0,0,0.45246 -29716,1215:235,155,23,0,0,0.462813 -29717,1215:236,156,23,0,0,0.467337 -29718,1215:237,157,23,0,0,0.470101 -29719,1215:238,158,23,0,0,0.437894 -29720,1215:239,159,23,0,0,0.450551 -29721,1216:130,160,23,0,0,0.401603 -29722,1216:131,161,23,0,0,0.409156 -29723,1216:132,162,23,0,0,0.4268 -29724,1216:133,163,23,0,0,0.415854 -29725,1216:134,164,23,0,0,0.400566 -29726,1216:235,165,23,0,0,0.393728 -29727,1216:236,166,23,0,0,0.377301 -29728,1216:237,167,23,0,0,0.367862 -29729,1216:238,168,23,0,0,0.357248 -29730,1216:239,169,23,0,0,0.35238 -29731,1217:130,170,23,0,0,0.353107 -29732,1217:131,171,23,0,0,0.359659 -29733,1217:132,172,23,0,0,0.357343 -29734,1217:133,173,23,0,0,0.358193 -29735,1217:134,174,23,0,0,0.3517 -29736,1217:235,175,23,0,0,0.348521 -29737,1217:236,176,23,0,0,0.351865 -29738,1217:237,177,23,0,0,0.346564 -29739,1217:238,178,23,0,0,0.343592 -29740,1217:239,179,23,0,0,0.336307 -29741,1218:130,180,23,0,0,0.334429 -29742,7218:140,-180,24,0,0,0.301779 -29743,7217:249,-179,24,0,0,0.303536 -29744,7217:248,-178,24,0,0,0.301109 -29745,7217:247,-177,24,0,0,0.293404 -29746,7217:246,-176,24,0,0,0.298391 -29747,7217:245,-175,24,0,0,0.29992 -29748,7217:144,-174,24,0,0,0.293063 -29749,7217:143,-173,24,0,0,0.295837 -29750,7217:142,-172,24,0,0,0.301216 -29751,7217:141,-171,24,0,0,0.298886 -29752,7217:140,-170,24,0,0,0.297918 -29753,7216:249,-169,24,0,0,0.296738 -29754,7216:248,-168,24,0,0,0.298972 -29755,7216:247,-167,24,0,0,0.30508 -29756,7216:246,-166,24,0,0,0.303188 -29757,7216:245,-165,24,0,0,0.303448 -29758,7216:144,-164,24,0,0,0.300719 -29759,7216:143,-163,24,0,0,0.302797 -29760,7216:142,-162,24,0,0,0.303644 -29761,7216:141,-161,24,0,0,0.311169 -29762,7216:140,-160,24,0,0,0.306257 -29763,7215:249,-159,24,0,0,0.307744 -29764,7215:248,-158,24,0,0,0.320537 -29765,7215:247,-157,24,0,0,0.31846 -29766,7215:246,-156,24,0,0,0.324016 -29767,7215:245,-155,24,0,0,0.326157 -29768,7215:144,-154,24,0,0,0.329485 -29769,7215:143,-153,24,0,0,0.325435 -29770,7215:142,-152,24,0,0,0.319531 -29771,7215:141,-151,24,0,0,0.328238 -29772,7215:140,-150,24,0,0,0.335963 -29773,7214:249,-149,24,0,0,0.333401 -29774,7214:248,-148,24,0,0,0.339156 -29775,7214:247,-147,24,0,0,0.334087 -29776,7214:246,-146,24,0,0,0.339825 -29777,7214:245,-145,24,0,0,0.334841 -29778,7214:144,-144,24,0,0,0.344914 -29779,7214:143,-143,24,0,0,0.343685 -29780,7214:142,-142,24,0,0,0.338144 -29781,7214:141,-141,24,0,0,0.34682 -29782,7214:140,-140,24,0,0,0.336399 -29783,7213:249,-139,24,0,0,0.343685 -29784,7213:248,-138,24,0,0,0.340655 -29785,7213:247,-137,24,0,0,0.345193 -29786,7213:246,-136,24,0,0,0.352075 -29787,7213:245,-135,24,0,0,0.353624 -29788,7213:144,-134,24,0,0,0.346797 -29789,7213:143,-133,24,0,0,0.34054 -29790,7213:142,-132,24,0,0,0.337065 -29791,7213:141,-131,24,0,0,0.333355 -29792,7213:140,-130,24,0,0,0.327966 -29793,7212:249,-129,24,0,0,0.314747 -29794,7212:248,-128,24,0,0,0.300287 -29795,7212:247,-127,24,0,0,0.295196 -29796,7212:246,-126,24,0,0,0.289838 -29797,7212:245,-125,24,0,0,0.293404 -29798,7212:144,-124,24,0,0,0.29096 -29799,7212:143,-123,24,0,0,0.288845 -29800,7212:142,-122,24,0,0,0.279483 -29801,7207:246,-76,24,0,0,0.318505 -29802,7207:245,-75,24,0,0,0.420628 -29803,7207:144,-74,24,0,0,0.517807 -29804,7207:143,-73,24,0,0,0.535427 -29805,7207:142,-72,24,0,0,0.517345 -29806,7207:141,-71,24,0,0,0.498859 -29807,7207:140,-70,24,0,0,0.505254 -29808,7206:249,-69,24,0,0,0.515369 -29809,7206:248,-68,24,0,0,0.500271 -29810,7206:247,-67,24,0,0,0.48117 -29811,7206:246,-66,24,0,0,0.487379 -29812,7206:245,-65,24,0,0,0.481042 -29813,7206:144,-64,24,0,0,0.470356 -29814,7206:143,-63,24,0,0,0.465778 -29815,7206:142,-62,24,0,0,0.45549 -29816,7206:141,-61,24,0,0,0.452841 -29817,7206:140,-60,24,0,0,0.446917 -29818,7205:249,-59,24,0,0,0.444455 -29819,7205:248,-58,24,0,0,0.433726 -29820,7205:247,-57,24,0,0,0.432843 -29821,7205:246,-56,24,0,0,0.427554 -29822,7205:245,-55,24,0,0,0.427353 -29823,7205:144,-54,24,0,0,0.426775 -29824,7205:143,-53,24,0,0,0.427152 -29825,7205:142,-52,24,0,0,0.416303 -29826,7205:141,-51,24,0,0,0.411891 -29827,7205:140,-50,24,0,0,0.40665 -29828,7204:249,-49,24,0,0,0.404668 -29829,7204:248,-48,24,0,0,0.400024 -29830,7204:247,-47,24,0,0,0.403901 -29831,7204:246,-46,24,0,0,0.399358 -29832,7204:245,-45,24,0,0,0.399802 -29833,7204:144,-44,24,0,0,0.3926 -29834,7204:143,-43,24,0,0,0.391914 -29835,7204:142,-42,24,0,0,0.38859 -29836,7204:141,-41,24,0,0,0.38367 -29837,7204:140,-40,24,0,0,0.388443 -29838,7203:249,-39,24,0,0,0.387881 -29839,7203:248,-38,24,0,0,0.385543 -29840,7203:247,-37,24,0,0,0.380202 -29841,7203:246,-36,24,0,0,0.376529 -29842,7203:245,-35,24,0,0,0.378436 -29843,7203:144,-34,24,0,0,0.375805 -29844,7203:143,-33,24,0,0,0.374577 -29845,7203:142,-32,24,0,0,0.370518 -29846,7203:141,-31,24,0,0,0.368101 -29847,7203:140,-30,24,0,0,0.373326 -29848,7202:249,-29,24,0,0,0.370542 -29849,7202:248,-28,24,0,0,0.370854 -29850,7202:247,-27,24,0,0,0.368818 -29851,7202:246,-26,24,0,0,0.37513 -29852,7202:245,-25,24,0,0,0.373158 -29853,7202:144,-24,24,0,0,0.378919 -29854,7202:143,-23,24,0,0,0.382674 -29855,7202:142,-22,24,0,0,0.385883 -29856,7202:141,-21,24,0,0,0.384059 -29857,7202:140,-20,24,0,0,0.388077 -29858,7201:249,-19,24,0,0,0.393409 -29859,7201:248,-18,24,0,0,0.394832 -29860,7201:247,-17,24,0,0,0.396183 -29861,7201:246,-16,24,0,0,0.395642 -29862,7201:245,-15,24,0,0,0.393066 -29863,7201:144,-14,24,0,0,0.393997 -29864,7201:143,-13,24,0,0,0.395372 -29865,7201:142,-12,24,0,0,0.385518 -29866,7201:141,-11,24,0,0,0.382965 -29867,7201:140,-10,24,0,0,0.355222 -29868,7200:142,-2,24,0,0,0.337501 -29869,7200:141,-1,24,0,0,0.34582 -29870,1200:141,0,24,0,0,0.373014 -29871,1200:141,1,24,0,0,0.364809 -29872,1200:142,2,24,0,0,0.373014 -29873,1200:143,3,24,0,0,0.376239 -29874,1200:144,4,24,0,0,0.381437 -29875,1200:245,5,24,0,0,0.38401 -29876,1200:248,8,24,0,0,0.393826 -29877,1201:140,10,24,0,0,0.389688 -29878,1201:141,11,24,0,0,0.388053 -29879,1201:142,12,24,0,0,0.37047 -29880,1201:143,13,24,0,0,0.360843 -29881,1201:144,14,24,0,0,0.358524 -29882,1201:245,15,24,0,0,0.399727 -29883,1201:246,16,24,0,0,0.396699 -29884,1201:247,17,24,0,0,0.394587 -29885,1201:248,18,24,0,0,0.401085 -29886,1201:249,19,24,0,0,0.417952 -29887,1202:140,20,24,0,0,0.420603 -29888,1202:141,21,24,0,0,0.417377 -29889,1202:143,23,24,0,0,0.404297 -29890,1202:144,24,24,0,0,0.411294 -29891,1202:245,25,24,0,0,0.418302 -29892,1202:246,26,24,0,0,0.428007 -29893,1202:247,27,24,0,0,0.437439 -29894,1202:248,28,24,0,0,0.45544 -29895,1203:141,31,24,0,0,0.470945 -29896,1203:144,34,24,0,0,0.480503 -29897,1203:245,35,24,0,0,0.48679 -29898,1212:142,122,24,0,0,0.212397 -29899,1212:143,123,24,0,0,0.23859 -29900,1212:144,124,24,0,0,0.344729 -29901,1212:245,125,24,0,0,0.352403 -29902,1212:246,126,24,0,0,0.245259 -29903,1213:140,130,24,0,0,0.396404 -29904,1213:141,131,24,0,0,0.341764 -29905,1213:142,132,24,0,0,0.389151 -29906,1213:143,133,24,0,0,0.404272 -29907,1213:144,134,24,0,0,0.404767 -29908,1213:245,135,24,0,0,0.386443 -29909,1213:246,136,24,0,0,0.400393 -29910,1213:247,137,24,0,0,0.396896 -29911,1213:248,138,24,0,0,0.401356 -29912,1214:142,142,24,0,0,0.412239 -29913,1214:143,143,24,0,0,0.429618 -29914,1214:144,144,24,0,0,0.414133 -29915,1214:245,145,24,0,0,0.408064 -29916,1214:246,146,24,0,0,0.411966 -29917,1214:247,147,24,0,0,0.433121 -29918,1214:248,148,24,0,0,0.440374 -29919,1214:249,149,24,0,0,0.436049 -29920,1215:140,150,24,0,0,0.418502 -29921,1215:141,151,24,0,0,0.416678 -29922,1215:142,152,24,0,0,0.414507 -29923,1215:143,153,24,0,0,0.41097 -29924,1215:144,154,24,0,0,0.408833 -29925,1215:245,155,24,0,0,0.401504 -29926,1215:246,156,24,0,0,0.390471 -29927,1215:247,157,24,0,0,0.396428 -29928,1215:248,158,24,0,0,0.420904 -29929,1215:249,159,24,0,0,0.412663 -29930,1216:140,160,24,0,0,0.410697 -29931,1216:141,161,24,0,0,0.386565 -29932,1216:142,162,24,0,0,0.376987 -29933,1216:143,163,24,0,0,0.37071 -29934,1216:144,164,24,0,0,0.373615 -29935,1216:245,165,24,0,0,0.373927 -29936,1216:246,166,24,0,0,0.372269 -29937,1216:247,167,24,0,0,0.361009 -29938,1216:248,168,24,0,0,0.356117 -29939,1216:249,169,24,0,0,0.349595 -29940,1217:140,170,24,0,0,0.345193 -29941,1217:141,171,24,0,0,0.340609 -29942,1217:142,172,24,0,0,0.335734 -29943,1217:143,173,24,0,0,0.328646 -29944,1217:144,174,24,0,0,0.321209 -29945,1217:245,175,24,0,0,0.321792 -29946,1217:246,176,24,0,0,0.312624 -29947,1217:247,177,24,0,0,0.310288 -29948,1217:248,178,24,0,0,0.314282 -29949,1217:249,179,24,0,0,0.309059 -29950,1218:140,180,24,0,0,0.301779 -29951,7218:350,-180,25,0,0,0.278656 -29952,7217:459,-179,25,0,0,0.278037 -29953,7217:458,-178,25,0,0,0.282409 -29954,7217:457,-177,25,0,0,0.272829 -29955,7217:456,-176,25,0,0,0.272197 -29956,7217:455,-175,25,0,0,0.275527 -29957,7217:354,-174,25,0,0,0.275835 -29958,7217:353,-173,25,0,0,0.277851 -29959,7217:352,-172,25,0,0,0.277665 -29960,7217:351,-171,25,0,0,0.276102 -29961,7217:350,-170,25,0,0,0.278759 -29962,7216:459,-169,25,0,0,0.281847 -29963,7216:458,-168,25,0,0,0.28569 -29964,7216:457,-167,25,0,0,0.292319 -29965,7216:456,-166,25,0,0,0.284099 -29966,7216:455,-165,25,0,0,0.278697 -29967,7216:354,-164,25,0,0,0.283827 -29968,7216:353,-163,25,0,0,0.28318 -29969,7216:352,-162,25,0,0,0.282471 -29970,7216:351,-161,25,0,0,0.284391 -29971,7216:350,-160,25,0,0,0.282638 -29972,7215:459,-159,25,0,0,0.285774 -29973,7215:458,-158,25,0,0,0.293084 -29974,7215:457,-157,25,0,0,0.290473 -29975,7215:456,-156,25,0,0,0.300158 -29976,7215:455,-155,25,0,0,0.301238 -29977,7215:354,-154,25,0,0,0.303383 -29978,7215:353,-153,25,0,0,0.30018 -29979,7215:352,-152,25,0,0,0.310178 -29980,7215:351,-151,25,0,0,0.309059 -29981,7215:350,-150,25,0,0,0.31539 -29982,7214:459,-149,25,0,0,0.313751 -29983,7214:458,-148,25,0,0,0.315324 -29984,7214:457,-147,25,0,0,0.317635 -29985,7214:456,-146,25,0,0,0.315258 -29986,7214:455,-145,25,0,0,0.315124 -29987,7214:354,-144,25,0,0,0.317235 -29988,7214:353,-143,25,0,0,0.319017 -29989,7214:352,-142,25,0,0,0.321926 -29990,7214:351,-141,25,0,0,0.332465 -29991,7214:350,-140,25,0,0,0.332055 -29992,7213:459,-139,25,0,0,0.315568 -29993,7213:458,-138,25,0,0,0.330484 -29994,7213:457,-137,25,0,0,0.327558 -29995,7213:456,-136,25,0,0,0.336124 -29996,7213:455,-135,25,0,0,0.341764 -29997,7213:354,-134,25,0,0,0.342527 -29998,7213:353,-133,25,0,0,0.335642 -29999,7213:352,-132,25,0,0,0.329168 -30000,7213:351,-131,25,0,0,0.322307 -30001,7213:350,-130,25,0,0,0.326044 -30002,7212:459,-129,25,0,0,0.317168 -30003,7212:458,-128,25,0,0,0.311851 -30004,7212:457,-127,25,0,0,0.299252 -30005,7212:456,-126,25,0,0,0.289648 -30006,7212:455,-125,25,0,0,0.289014 -30007,7212:354,-124,25,0,0,0.27783 -30008,7212:353,-123,25,0,0,0.265712 -30009,7207:456,-76,25,0,0,0.288128 -30010,7207:455,-75,25,0,0,0.318839 -30011,7207:354,-74,25,0,0,0.439387 -30012,7207:353,-73,25,0,0,0.491308 -30013,7207:352,-72,25,0,0,0.50397 -30014,7207:351,-71,25,0,0,0.492643 -30015,7207:350,-70,25,0,0,0.443897 -30016,7206:459,-69,25,0,0,0.438021 -30017,7206:458,-68,25,0,0,0.490563 -30018,7206:457,-67,25,0,0,0.491103 -30019,7206:456,-66,25,0,0,0.462251 -30020,7206:455,-65,25,0,0,0.468744 -30021,7206:354,-64,25,0,0,0.472635 -30022,7206:353,-63,25,0,0,0.462277 -30023,7206:352,-62,25,0,0,0.46634 -30024,7206:351,-61,25,0,0,0.453071 -30025,7206:350,-60,25,0,0,0.426825 -30026,7205:459,-59,25,0,0,0.423561 -30027,7205:458,-58,25,0,0,0.423386 -30028,7205:457,-57,25,0,0,0.418702 -30029,7205:456,-56,25,0,0,0.414905 -30030,7205:455,-55,25,0,0,0.418727 -30031,7205:354,-54,25,0,0,0.425519 -30032,7205:353,-53,25,0,0,0.425368 -30033,7205:352,-52,25,0,0,0.417077 -30034,7205:351,-51,25,0,0,0.402813 -30035,7205:350,-50,25,0,0,0.397044 -30036,7204:459,-49,25,0,0,0.391131 -30037,7204:458,-48,25,0,0,0.388565 -30038,7204:457,-47,25,0,0,0.395691 -30039,7204:456,-46,25,0,0,0.397388 -30040,7204:455,-45,25,0,0,0.399752 -30041,7204:354,-44,25,0,0,0.399407 -30042,7204:353,-43,25,0,0,0.378146 -30043,7204:352,-42,25,0,0,0.373278 -30044,7204:351,-41,25,0,0,0.373686 -30045,7204:350,-40,25,0,0,0.372701 -30046,7203:459,-39,25,0,0,0.377228 -30047,7203:458,-38,25,0,0,0.374529 -30048,7203:457,-37,25,0,0,0.368818 -30049,7203:456,-36,25,0,0,0.371381 -30050,7203:455,-35,25,0,0,0.371813 -30051,7203:354,-34,25,0,0,0.367432 -30052,7203:353,-33,25,0,0,0.360061 -30053,7203:352,-32,25,0,0,0.359044 -30054,7203:351,-31,25,0,0,0.36324 -30055,7203:350,-30,25,0,0,0.358406 -30056,7202:458,-28,25,0,0,0.356518 -30057,7202:457,-27,25,0,0,0.351279 -30058,7202:456,-26,25,0,0,0.356541 -30059,7202:455,-25,25,0,0,0.361886 -30060,7202:354,-24,25,0,0,0.365476 -30061,7202:353,-23,25,0,0,0.35876 -30062,7202:352,-22,25,0,0,0.364119 -30063,7202:351,-21,25,0,0,0.369967 -30064,7202:350,-20,25,0,0,0.374914 -30065,7201:459,-19,25,0,0,0.368914 -30066,7201:458,-18,25,0,0,0.372726 -30067,7201:457,-17,25,0,0,0.37107 -30068,7201:456,-16,25,0,0,0.372149 -30069,7201:455,-15,25,0,0,0.373639 -30070,7201:354,-14,25,0,0,0.371309 -30071,7201:353,-13,25,0,0,0.372605 -30072,7201:352,-12,25,0,0,0.381147 -30073,7201:351,-11,25,0,0,0.374817 -30074,7201:350,-10,25,0,0,0.343801 -30075,1200:351,0,25,0,0,0.366263 -30076,1200:351,1,25,0,0,0.379379 -30077,1200:352,2,25,0,0,0.381656 -30078,1200:353,3,25,0,0,0.383913 -30079,1200:354,4,25,0,0,0.384739 -30080,1200:455,5,25,0,0,0.385372 -30081,1200:456,6,25,0,0,0.381656 -30082,1200:457,7,25,0,0,0.388931 -30083,1200:458,8,25,0,0,0.377977 -30084,1200:459,9,25,0,0,0.373061 -30085,1201:350,10,25,0,0,0.368938 -30086,1201:351,11,25,0,0,0.372845 -30087,1201:352,12,25,0,0,0.373422 -30088,1201:455,15,25,0,0,0.399481 -30089,1201:456,16,25,0,0,0.396085 -30090,1201:457,17,25,0,0,0.38854 -30091,1201:458,18,25,0,0,0.393458 -30092,1201:459,19,25,0,0,0.413684 -30093,1202:350,20,25,0,0,0.423511 -30094,1202:353,23,25,0,0,0.40264 -30095,1202:354,24,25,0,0,0.399949 -30096,1202:455,25,25,0,0,0.41518 -30097,1202:456,26,25,0,0,0.433247 -30098,1212:350,120,25,0,0,0.188275 -30099,1212:352,122,25,0,0,0.209558 -30100,1212:353,123,25,0,0,0.242814 -30101,1212:354,124,25,0,0,0.306585 -30102,1212:455,125,25,0,0,0.288634 -30103,1212:456,126,25,0,0,0.193591 -30104,1213:350,130,25,0,0,0.382747 -30105,1213:351,131,25,0,0,0.32885 -30106,1213:352,132,25,0,0,0.355716 -30107,1213:353,133,25,0,0,0.328216 -30108,1213:354,134,25,0,0,0.325232 -30109,1213:455,135,25,0,0,0.343523 -30110,1213:456,136,25,0,0,0.320962 -30111,1213:457,137,25,0,0,0.362907 -30112,1213:458,138,25,0,0,0.383524 -30113,1213:459,139,25,0,0,0.384375 -30114,1214:352,142,25,0,0,0.351068 -30115,1214:353,143,25,0,0,0.418477 -30116,1214:354,144,25,0,0,0.410299 -30117,1214:455,145,25,0,0,0.404223 -30118,1214:456,146,25,0,0,0.350109 -30119,1214:457,147,25,0,0,0.358004 -30120,1214:458,148,25,0,0,0.417627 -30121,1214:459,149,25,0,0,0.420679 -30122,1215:350,150,25,0,0,0.418277 -30123,1215:351,151,25,0,0,0.412663 -30124,1215:352,152,25,0,0,0.369775 -30125,1215:353,153,25,0,0,0.353318 -30126,1215:354,154,25,0,0,0.377277 -30127,1215:455,155,25,0,0,0.384229 -30128,1215:456,156,25,0,0,0.361886 -30129,1215:457,157,25,0,0,0.358996 -30130,1215:458,158,25,0,0,0.389444 -30131,1215:459,159,25,0,0,0.406799 -30132,1216:350,160,25,0,0,0.394856 -30133,1216:351,161,25,0,0,0.376432 -30134,1216:352,162,25,0,0,0.38637 -30135,1216:353,163,25,0,0,0.363026 -30136,1216:354,164,25,0,0,0.378436 -30137,1216:455,165,25,0,0,0.352146 -30138,1216:456,166,25,0,0,0.361696 -30139,1216:457,167,25,0,0,0.352826 -30140,1216:458,168,25,0,0,0.342504 -30141,1216:459,169,25,0,0,0.345866 -30142,1217:350,170,25,0,0,0.345169 -30143,1217:351,171,25,0,0,0.338328 -30144,1217:352,172,25,0,0,0.333995 -30145,1217:353,173,25,0,0,0.323363 -30146,1217:354,174,25,0,0,0.312779 -30147,1217:455,175,25,0,0,0.305385 -30148,1217:456,176,25,0,0,0.297102 -30149,1217:457,177,25,0,0,0.292425 -30150,1217:458,178,25,0,0,0.292127 -30151,1217:459,179,25,0,0,0.290049 -30152,1218:350,180,25,0,0,0.278656 -30153,7218:360,-180,26,0,0,0.270126 -30154,7217:469,-179,26,0,0,0.260197 -30155,7217:468,-178,26,0,0,0.264572 -30156,7217:467,-177,26,0,0,0.260138 -30157,7217:466,-176,26,0,0,0.256183 -30158,7217:465,-175,26,0,0,0.252481 -30159,7217:364,-174,26,0,0,0.249487 -30160,7217:363,-173,26,0,0,0.253432 -30161,7217:362,-172,26,0,0,0.255811 -30162,7217:361,-171,26,0,0,0.251281 -30163,7217:360,-170,26,0,0,0.254113 -30164,7216:469,-169,26,0,0,0.264712 -30165,7216:468,-168,26,0,0,0.262041 -30166,7216:467,-167,26,0,0,0.256203 -30167,7216:466,-166,26,0,0,0.253938 -30168,7216:465,-165,26,0,0,0.255205 -30169,7216:364,-164,26,0,0,0.255792 -30170,7216:363,-163,26,0,0,0.264272 -30171,7216:362,-162,26,0,0,0.264552 -30172,7216:361,-161,26,0,0,0.264232 -30173,7216:360,-160,26,0,0,0.265432 -30174,7215:469,-159,26,0,0,0.266234 -30175,7215:468,-158,26,0,0,0.26738 -30176,7215:467,-157,26,0,0,0.269438 -30177,7215:466,-156,26,0,0,0.266837 -30178,7215:465,-155,26,0,0,0.272706 -30179,7215:364,-154,26,0,0,0.279565 -30180,7215:363,-153,26,0,0,0.281515 -30181,7215:362,-152,26,0,0,0.29603 -30182,7215:361,-151,26,0,0,0.289901 -30183,7215:360,-150,26,0,0,0.291511 -30184,7214:469,-149,26,0,0,0.292382 -30185,7214:468,-148,26,0,0,0.291851 -30186,7214:467,-147,26,0,0,0.289605 -30187,7214:466,-146,26,0,0,0.297467 -30188,7214:465,-145,26,0,0,0.30805 -30189,7214:364,-144,26,0,0,0.301865 -30190,7214:363,-143,26,0,0,0.300503 -30191,7214:362,-142,26,0,0,0.300136 -30192,7214:361,-141,26,0,0,0.30206 -30193,7214:360,-140,26,0,0,0.295709 -30194,7213:469,-139,26,0,0,0.305887 -30195,7213:468,-138,26,0,0,0.312668 -30196,7213:467,-137,26,0,0,0.314593 -30197,7213:466,-136,26,0,0,0.309212 -30198,7213:465,-135,26,0,0,0.317836 -30199,7213:364,-134,26,0,0,0.321321 -30200,7213:363,-133,26,0,0,0.325232 -30201,7213:362,-132,26,0,0,0.321814 -30202,7213:361,-131,26,0,0,0.313198 -30203,7213:360,-130,26,0,0,0.31353 -30204,7212:469,-129,26,0,0,0.306475 -30205,7212:468,-128,26,0,0,0.291873 -30206,7212:467,-127,26,0,0,0.287096 -30207,7212:466,-126,26,0,0,0.286067 -30208,7212:465,-125,26,0,0,0.277089 -30209,7212:364,-124,26,0,0,0.264432 -30210,7207:465,-75,26,0,0,0.259466 -30211,7207:364,-74,26,0,0,0.295239 -30212,7207:363,-73,26,0,0,0.354964 -30213,7207:362,-72,26,0,0,0.441818 -30214,7207:361,-71,26,0,0,0.431608 -30215,7207:360,-70,26,0,0,0.436934 -30216,7206:469,-69,26,0,0,0.438249 -30217,7206:468,-68,26,0,0,0.434332 -30218,7206:467,-67,26,0,0,0.486995 -30219,7206:466,-66,26,0,0,0.477964 -30220,7206:465,-65,26,0,0,0.470075 -30221,7206:364,-64,26,0,0,0.465675 -30222,7206:363,-63,26,0,0,0.418352 -30223,7206:362,-62,26,0,0,0.418452 -30224,7206:361,-61,26,0,0,0.456739 -30225,7206:360,-60,26,0,0,0.442199 -30226,7205:469,-59,26,0,0,0.435519 -30227,7205:468,-58,26,0,0,0.431835 -30228,7205:467,-57,26,0,0,0.433196 -30229,7205:466,-56,26,0,0,0.40923 -30230,7205:465,-55,26,0,0,0.416029 -30231,7205:364,-54,26,0,0,0.424966 -30232,7205:363,-53,26,0,0,0.382165 -30233,7205:362,-52,26,0,0,0.42341 -30234,7205:361,-51,26,0,0,0.403802 -30235,7205:360,-50,26,0,0,0.395593 -30236,7204:469,-49,26,0,0,0.392772 -30237,7204:468,-48,26,0,0,0.392551 -30238,7204:467,-47,26,0,0,0.388931 -30239,7204:466,-46,26,0,0,0.381656 -30240,7204:465,-45,26,0,0,0.365167 -30241,7204:364,-44,26,0,0,0.360701 -30242,7204:363,-43,26,0,0,0.376456 -30243,7204:362,-42,26,0,0,0.38859 -30244,7204:361,-41,26,0,0,0.37335 -30245,7204:360,-40,26,0,0,0.380178 -30246,7203:469,-39,26,0,0,0.377325 -30247,7203:468,-38,26,0,0,0.370302 -30248,7203:467,-37,26,0,0,0.373182 -30249,7203:466,-36,26,0,0,0.366668 -30250,7203:465,-35,26,0,0,0.360866 -30251,7203:364,-34,26,0,0,0.359185 -30252,7203:363,-33,26,0,0,0.349478 -30253,7203:362,-32,26,0,0,0.353953 -30254,7203:361,-31,26,0,0,0.354164 -30255,7203:360,-30,26,0,0,0.346797 -30256,7202:469,-29,26,0,0,0.348847 -30257,7202:468,-28,26,0,0,0.342365 -30258,7202:467,-27,26,0,0,0.340725 -30259,7202:466,-26,26,0,0,0.346843 -30260,7202:465,-25,26,0,0,0.347309 -30261,7202:364,-24,26,0,0,0.341648 -30262,7202:363,-23,26,0,0,0.348544 -30263,7202:362,-22,26,0,0,0.342226 -30264,7202:361,-21,26,0,0,0.337248 -30265,7202:360,-20,26,0,0,0.336766 -30266,7201:469,-19,26,0,0,0.346355 -30267,7201:468,-18,26,0,0,0.346401 -30268,7201:467,-17,26,0,0,0.352662 -30269,7201:466,-16,26,0,0,0.352427 -30270,7201:465,-15,26,0,0,0.347961 -30271,7201:364,-14,26,0,0,0.350647 -30272,7201:363,-13,26,0,0,0.35574 -30273,7201:362,-12,26,0,0,0.361696 -30274,7201:361,-11,26,0,0,0.353811 -30275,7201:360,-10,26,0,0,0.32548 -30276,1200:361,0,26,0,0,0.369775 -30277,1200:361,1,26,0,0,0.371141 -30278,1200:362,2,26,0,0,0.375324 -30279,1200:363,3,26,0,0,0.379887 -30280,1200:364,4,26,0,0,0.379742 -30281,1200:465,5,26,0,0,0.381073 -30282,1200:466,6,26,0,0,0.377759 -30283,1200:467,7,26,0,0,0.371549 -30284,1201:360,10,26,0,0,0.367814 -30285,1201:361,11,26,0,0,0.373278 -30286,1201:362,12,26,0,0,0.372653 -30287,1201:363,13,26,0,0,0.369799 -30288,1201:364,14,26,0,0,0.374481 -30289,1201:465,15,26,0,0,0.377952 -30290,1201:467,17,26,0,0,0.392135 -30291,1201:468,18,26,0,0,0.390348 -30292,1201:469,19,26,0,0,0.402319 -30293,1202:360,20,26,0,0,0.419327 -30294,1202:364,24,26,0,0,0.402048 -30295,1202:465,25,26,0,0,0.413161 -30296,1202:466,26,26,0,0,0.426021 -30297,1211:469,119,26,0,0,0.18548 -30298,1212:360,120,26,0,0,0.219301 -30299,1212:361,121,26,0,0,0.246727 -30300,1212:362,122,26,0,0,0.26867 -30301,1212:363,123,26,0,0,0.261406 -30302,1212:364,124,26,0,0,0.254796 -30303,1212:465,125,26,0,0,0.223873 -30304,1212:469,129,26,0,0,0.371621 -30305,1213:360,130,26,0,0,0.326676 -30306,1213:361,131,26,0,0,0.301281 -30307,1213:362,132,26,0,0,0.328102 -30308,1213:363,133,26,0,0,0.335001 -30309,1213:364,134,26,0,0,0.294427 -30310,1213:465,135,26,0,0,0.316545 -30311,1213:466,136,26,0,0,0.275487 -30312,1213:467,137,26,0,0,0.348988 -30313,1213:468,138,26,0,0,0.304035 -30314,1213:469,139,26,0,0,0.371381 -30315,1214:360,140,26,0,0,0.373038 -30316,1214:363,143,26,0,0,0.314659 -30317,1214:364,144,26,0,0,0.40856 -30318,1214:465,145,26,0,0,0.35706 -30319,1214:466,146,26,0,0,0.297467 -30320,1214:467,147,26,0,0,0.283201 -30321,1214:468,148,26,0,0,0.29251 -30322,1214:469,149,26,0,0,0.322285 -30323,1215:360,150,26,0,0,0.326022 -30324,1215:361,151,26,0,0,0.320336 -30325,1215:362,152,26,0,0,0.32168 -30326,1215:363,153,26,0,0,0.311543 -30327,1215:364,154,26,0,0,0.319464 -30328,1215:465,155,26,0,0,0.334132 -30329,1215:466,156,26,0,0,0.323004 -30330,1215:467,157,26,0,0,0.341718 -30331,1215:468,158,26,0,0,0.344334 -30332,1215:469,159,26,0,0,0.372894 -30333,1216:360,160,26,0,0,0.331805 -30334,1216:361,161,26,0,0,0.324691 -30335,1216:362,162,26,0,0,0.364833 -30336,1216:363,163,26,0,0,0.374481 -30337,1216:364,164,26,0,0,0.316567 -30338,1216:465,165,26,0,0,0.343059 -30339,1216:466,166,26,0,0,0.335047 -30340,1216:467,167,26,0,0,0.319867 -30341,1216:468,168,26,0,0,0.317101 -30342,1216:469,169,26,0,0,0.312933 -30343,1217:360,170,26,0,0,0.307306 -30344,1217:361,171,26,0,0,0.31042 -30345,1217:362,172,26,0,0,0.307678 -30346,1217:363,173,26,0,0,0.302364 -30347,1217:364,174,26,0,0,0.285815 -30348,1217:465,175,26,0,0,0.291469 -30349,1217:466,176,26,0,0,0.288613 -30350,1217:467,177,26,0,0,0.28029 -30351,1217:468,178,26,0,0,0.265572 -30352,1217:469,179,26,0,0,0.273992 -30353,1218:360,180,26,0,0,0.270126 -30354,7218:370,-180,27,0,0,0.247568 -30355,7217:479,-179,27,0,0,0.240687 -30356,7217:478,-178,27,0,0,0.240668 -30357,7217:477,-177,27,0,0,0.236172 -30358,7217:476,-176,27,0,0,0.237955 -30359,7217:475,-175,27,0,0,0.236431 -30360,7217:374,-174,27,0,0,0.235376 -30361,7217:373,-173,27,0,0,0.23146 -30362,7217:372,-172,27,0,0,0.233421 -30363,7217:371,-171,27,0,0,0.231514 -30364,7217:370,-170,27,0,0,0.233605 -30365,7216:479,-169,27,0,0,0.235505 -30366,7216:478,-168,27,0,0,0.23062 -30367,7216:477,-167,27,0,0,0.230949 -30368,7216:476,-166,27,0,0,0.236339 -30369,7216:475,-165,27,0,0,0.238814 -30370,7216:374,-164,27,0,0,0.240818 -30371,7216:373,-163,27,0,0,0.24667 -30372,7216:372,-162,27,0,0,0.24968 -30373,7216:371,-161,27,0,0,0.248334 -30374,7216:370,-160,27,0,0,0.247071 -30375,7215:479,-159,27,0,0,0.246593 -30376,7215:478,-158,27,0,0,0.249468 -30377,7215:477,-157,27,0,0,0.254249 -30378,7215:476,-156,27,0,0,0.254834 -30379,7215:475,-155,27,0,0,0.262975 -30380,7215:374,-154,27,0,0,0.264112 -30381,7215:373,-153,27,0,0,0.264252 -30382,7215:372,-152,27,0,0,0.26869 -30383,7215:371,-151,27,0,0,0.266114 -30384,7215:370,-150,27,0,0,0.269256 -30385,7214:479,-149,27,0,0,0.275384 -30386,7214:478,-148,27,0,0,0.275425 -30387,7214:477,-147,27,0,0,0.275938 -30388,7214:476,-146,27,0,0,0.284161 -30389,7214:475,-145,27,0,0,0.284182 -30390,7214:374,-144,27,0,0,0.283702 -30391,7214:373,-143,27,0,0,0.282347 -30392,7214:372,-142,27,0,0,0.282576 -30393,7214:371,-141,27,0,0,0.283827 -30394,7214:370,-140,27,0,0,0.286361 -30395,7213:479,-139,27,0,0,0.292892 -30396,7213:478,-138,27,0,0,0.297424 -30397,7213:477,-137,27,0,0,0.293893 -30398,7213:476,-136,27,0,0,0.29663 -30399,7213:475,-135,27,0,0,0.302321 -30400,7213:374,-134,27,0,0,0.305624 -30401,7213:373,-133,27,0,0,0.310266 -30402,7213:372,-132,27,0,0,0.307503 -30403,7213:371,-131,27,0,0,0.302407 -30404,7213:370,-130,27,0,0,0.293766 -30405,7212:479,-129,27,0,0,0.286718 -30406,7212:478,-128,27,0,0,0.27438 -30407,7212:477,-127,27,0,0,0.276287 -30408,7212:476,-126,27,0,0,0.280477 -30409,7212:475,-125,27,0,0,0.273624 -30410,7212:374,-124,27,0,0,0.255654 -30411,7207:373,-73,27,0,0,0.277769 -30412,7207:372,-72,27,0,0,0.325931 -30413,7207:371,-71,27,0,0,0.355764 -30414,7207:370,-70,27,0,0,0.346215 -30415,7206:479,-69,27,0,0,0.3077 -30416,7206:478,-68,27,0,0,0.404544 -30417,7206:477,-67,27,0,0,0.44481 -30418,7206:476,-66,27,0,0,0.464678 -30419,7206:475,-65,27,0,0,0.433726 -30420,7206:374,-64,27,0,0,0.375443 -30421,7206:373,-63,27,0,0,0.425996 -30422,7206:372,-62,27,0,0,0.424163 -30423,7206:371,-61,27,0,0,0.446257 -30424,7206:370,-60,27,0,0,0.447603 -30425,7205:479,-59,27,0,0,0.405733 -30426,7205:478,-58,27,0,0,0.346099 -30427,7205:477,-57,27,0,0,0.371477 -30428,7205:476,-56,27,0,0,0.423109 -30429,7205:475,-55,27,0,0,0.420428 -30430,7205:374,-54,27,0,0,0.385056 -30431,7205:373,-53,27,0,0,0.372389 -30432,7205:372,-52,27,0,0,0.399974 -30433,7205:371,-51,27,0,0,0.412912 -30434,7205:370,-50,27,0,0,0.413435 -30435,7204:479,-49,27,0,0,0.413261 -30436,7204:478,-48,27,0,0,0.408262 -30437,7204:477,-47,27,0,0,0.404965 -30438,7204:476,-46,27,0,0,0.3892 -30439,7204:475,-45,27,0,0,0.386516 -30440,7204:374,-44,27,0,0,0.355152 -30441,7204:373,-43,27,0,0,0.35156 -30442,7204:372,-42,27,0,0,0.351045 -30443,7204:371,-41,27,0,0,0.37347 -30444,7204:370,-40,27,0,0,0.36324 -30445,7203:479,-39,27,0,0,0.347146 -30446,7203:478,-38,27,0,0,0.377349 -30447,7203:477,-37,27,0,0,0.349338 -30448,7203:476,-36,27,0,0,0.349735 -30449,7203:475,-35,27,0,0,0.359138 -30450,7203:374,-34,27,0,0,0.355058 -30451,7203:373,-33,27,0,0,0.350437 -30452,7203:372,-32,27,0,0,0.341948 -30453,7203:371,-31,27,0,0,0.344984 -30454,7203:370,-30,27,0,0,0.341671 -30455,7202:479,-29,27,0,0,0.337868 -30456,7202:478,-28,27,0,0,0.331645 -30457,7202:477,-27,27,0,0,0.331053 -30458,7202:476,-26,27,0,0,0.333173 -30459,7202:475,-25,27,0,0,0.331736 -30460,7202:374,-24,27,0,0,0.327151 -30461,7202:373,-23,27,0,0,0.330189 -30462,7202:372,-22,27,0,0,0.333355 -30463,7202:371,-21,27,0,0,0.327808 -30464,7202:370,-20,27,0,0,0.325818 -30465,7201:479,-19,27,0,0,0.329984 -30466,7201:478,-18,27,0,0,0.324601 -30467,7201:477,-17,27,0,0,0.331417 -30468,7201:476,-16,27,0,0,0.333287 -30469,7201:475,-15,27,0,0,0.330985 -30470,7201:374,-14,27,0,0,0.33372 -30471,7201:373,-13,27,0,0,0.330189 -30472,7201:372,-12,27,0,0,0.340055 -30473,7201:371,-11,27,0,0,0.343476 -30474,7201:370,-10,27,0,0,0.32103 -30475,1200:371,1,27,0,0,0.360629 -30476,1200:372,2,27,0,0,0.359493 -30477,1200:373,3,27,0,0,0.364738 -30478,1200:374,4,27,0,0,0.36846 -30479,1200:475,5,27,0,0,0.367002 -30480,1200:476,6,27,0,0,0.369608 -30481,1200:477,7,27,0,0,0.362384 -30482,1201:370,10,27,0,0,0.364119 -30483,1201:371,11,27,0,0,0.364928 -30484,1201:372,12,27,0,0,0.365071 -30485,1201:373,13,27,0,0,0.367456 -30486,1201:374,14,27,0,0,0.371213 -30487,1201:475,15,27,0,0,0.374336 -30488,1201:477,17,27,0,0,0.3914 -30489,1201:478,18,27,0,0,0.389762 -30490,1201:479,19,27,0,0,0.410597 -30491,1202:373,23,27,0,0,0.396183 -30492,1202:374,24,27,0,0,0.397782 -30493,1202:475,25,27,0,0,0.423386 -30494,1212:370,120,27,0,0,0.188039 -30495,1212:371,121,27,0,0,0.203214 -30496,1212:372,122,27,0,0,0.178702 -30497,1212:374,124,27,0,0,0.190182 -30498,1212:475,125,27,0,0,0.168605 -30499,1212:479,129,27,0,0,0.319017 -30500,1213:370,130,27,0,0,0.315901 -30501,1213:371,131,27,0,0,0.291384 -30502,1213:372,132,27,0,0,0.314482 -30503,1213:373,133,27,0,0,0.307131 -30504,1213:374,134,27,0,0,0.269397 -30505,1213:475,135,27,0,0,0.285333 -30506,1213:476,136,27,0,0,0.25283 -30507,1213:477,137,27,0,0,0.295624 -30508,1213:478,138,27,0,0,0.303774 -30509,1213:479,139,27,0,0,0.304775 -30510,1214:370,140,27,0,0,0.350764 -30511,1214:373,143,27,0,0,0.29603 -30512,1214:374,144,27,0,0,0.377398 -30513,1214:475,145,27,0,0,0.338374 -30514,1214:476,146,27,0,0,0.327264 -30515,1214:477,147,27,0,0,0.353506 -30516,1214:478,148,27,0,0,0.297639 -30517,1214:479,149,27,0,0,0.311851 -30518,1215:370,150,27,0,0,0.318928 -30519,1215:371,151,27,0,0,0.307525 -30520,1215:372,152,27,0,0,0.310552 -30521,1215:373,153,27,0,0,0.314681 -30522,1215:374,154,27,0,0,0.29479 -30523,1215:475,155,27,0,0,0.284831 -30524,1215:476,156,27,0,0,0.281951 -30525,1215:477,157,27,0,0,0.280373 -30526,1215:478,158,27,0,0,0.284475 -30527,1215:479,159,27,0,0,0.276184 -30528,1216:370,160,27,0,0,0.279214 -30529,1216:371,161,27,0,0,0.275261 -30530,1216:372,162,27,0,0,0.322509 -30531,1216:373,163,27,0,0,0.286361 -30532,1216:374,164,27,0,0,0.281349 -30533,1216:475,165,27,0,0,0.301043 -30534,1216:476,166,27,0,0,0.308247 -30535,1216:477,167,27,0,0,0.283222 -30536,1216:478,168,27,0,0,0.280414 -30537,1216:479,169,27,0,0,0.256516 -30538,1217:370,170,27,0,0,0.280497 -30539,1217:371,171,27,0,0,0.28655 -30540,1217:372,172,27,0,0,0.263853 -30541,1217:373,173,27,0,0,0.261286 -30542,1217:374,174,27,0,0,0.24993 -30543,1217:475,175,27,0,0,0.241947 -30544,1217:476,176,27,0,0,0.25423 -30545,1217:477,177,27,0,0,0.264932 -30546,1217:478,178,27,0,0,0.246689 -30547,1217:479,179,27,0,0,0.251261 -30548,1218:370,180,27,0,0,0.247568 -30549,7218:380,-180,28,0,0,0.220782 -30550,7217:489,-179,28,0,0,0.218685 -30551,7217:488,-178,28,0,0,0.218703 -30552,7217:487,-177,28,0,0,0.217494 -30553,7217:486,-176,28,0,0,0.213017 -30554,7217:485,-175,28,0,0,0.2135 -30555,7217:384,-174,28,0,0,0.215699 -30556,7217:383,-173,28,0,0,0.215264 -30557,7217:382,-172,28,0,0,0.213983 -30558,7217:381,-171,28,0,0,0.215403 -30559,7217:380,-170,28,0,0,0.217967 -30560,7216:489,-169,28,0,0,0.217494 -30561,7216:488,-168,28,0,0,0.216099 -30562,7216:487,-167,28,0,0,0.216743 -30563,7216:486,-166,28,0,0,0.221525 -30564,7216:485,-165,28,0,0,0.223801 -30565,7216:384,-164,28,0,0,0.225251 -30566,7216:383,-163,28,0,0,0.223784 -30567,7216:382,-162,28,0,0,0.223587 -30568,7216:381,-161,28,0,0,0.226904 -30569,7216:380,-160,28,0,0,0.231514 -30570,7215:489,-159,28,0,0,0.237695 -30571,7215:488,-158,28,0,0,0.240274 -30572,7215:487,-157,28,0,0,0.238086 -30573,7215:486,-156,28,0,0,0.238235 -30574,7215:485,-155,28,0,0,0.242852 -30575,7215:384,-154,28,0,0,0.240105 -30576,7215:383,-153,28,0,0,0.244405 -30577,7215:382,-152,28,0,0,0.249429 -30578,7215:381,-151,28,0,0,0.249891 -30579,7215:380,-150,28,0,0,0.253063 -30580,7214:489,-149,28,0,0,0.257634 -30581,7214:488,-148,28,0,0,0.258559 -30582,7214:487,-147,28,0,0,0.258343 -30583,7214:486,-146,28,0,0,0.263912 -30584,7214:485,-145,28,0,0,0.267984 -30585,7214:384,-144,28,0,0,0.265993 -30586,7214:383,-143,28,0,0,0.2621 -30587,7214:382,-142,28,0,0,0.266094 -30588,7214:381,-141,28,0,0,0.269762 -30589,7214:380,-140,28,0,0,0.276143 -30590,7213:489,-139,28,0,0,0.281432 -30591,7213:488,-138,28,0,0,0.285438 -30592,7213:487,-137,28,0,0,0.281993 -30593,7213:486,-136,28,0,0,0.281889 -30594,7213:485,-135,28,0,0,0.284559 -30595,7213:384,-134,28,0,0,0.28798 -30596,7213:383,-133,28,0,0,0.284935 -30597,7213:382,-132,28,0,0,0.284329 -30598,7213:381,-131,28,0,0,0.284349 -30599,7213:380,-130,28,0,0,0.284266 -30600,7212:489,-129,28,0,0,0.28243 -30601,7212:488,-128,28,0,0,0.270045 -30602,7212:487,-127,28,0,0,0.268892 -30603,7212:486,-126,28,0,0,0.265392 -30604,7212:485,-125,28,0,0,0.263354 -30605,7207:380,-70,28,0,0,0.201523 -30606,7206:489,-69,28,0,0,0.233605 -30607,7206:488,-68,28,0,0,0.261802 -30608,7206:487,-67,28,0,0,0.259486 -30609,7206:486,-66,28,0,0,0.274176 -30610,7206:485,-65,28,0,0,0.334956 -30611,7206:384,-64,28,0,0,0.299187 -30612,7206:383,-63,28,0,0,0.377759 -30613,7206:382,-62,28,0,0,0.416103 -30614,7206:381,-61,28,0,0,0.423736 -30615,7206:380,-60,28,0,0,0.407543 -30616,7205:489,-59,28,0,0,0.364738 -30617,7205:488,-58,28,0,0,0.296373 -30618,7205:487,-57,28,0,0,0.307744 -30619,7205:486,-56,28,0,0,0.302863 -30620,7205:485,-55,28,0,0,0.322577 -30621,7205:384,-54,28,0,0,0.283326 -30622,7205:383,-53,28,0,0,0.2321 -30623,7205:382,-52,28,0,0,0.231168 -30624,7205:381,-51,28,0,0,0.266174 -30625,7205:380,-50,28,0,0,0.318036 -30626,7204:489,-49,28,0,0,0.349315 -30627,7204:488,-48,28,0,0,0.375998 -30628,7204:487,-47,28,0,0,0.375275 -30629,7204:486,-46,28,0,0,0.299403 -30630,7204:485,-45,28,0,0,0.264952 -30631,7204:384,-44,28,0,0,0.374577 -30632,7204:383,-43,28,0,0,0.384059 -30633,7204:382,-42,28,0,0,0.380396 -30634,7204:381,-41,28,0,0,0.331622 -30635,7204:380,-40,28,0,0,0.346332 -30636,7203:489,-39,28,0,0,0.349198 -30637,7203:488,-38,28,0,0,0.368962 -30638,7203:487,-37,28,0,0,0.360535 -30639,7203:486,-36,28,0,0,0.362883 -30640,7203:485,-35,28,0,0,0.353624 -30641,7203:384,-34,28,0,0,0.352005 -30642,7203:383,-33,28,0,0,0.340147 -30643,7203:382,-32,28,0,0,0.331167 -30644,7203:381,-31,28,0,0,0.331303 -30645,7203:380,-30,28,0,0,0.332648 -30646,7202:489,-29,28,0,0,0.332238 -30647,7202:488,-28,28,0,0,0.331873 -30648,7202:487,-27,28,0,0,0.326157 -30649,7202:486,-26,28,0,0,0.322509 -30650,7202:485,-25,28,0,0,0.322196 -30651,7202:384,-24,28,0,0,0.32047 -30652,7202:383,-23,28,0,0,0.317346 -30653,7202:382,-22,28,0,0,0.316367 -30654,7202:381,-21,28,0,0,0.310091 -30655,7202:380,-20,28,0,0,0.316278 -30656,7201:489,-19,28,0,0,0.31639 -30657,7201:488,-18,28,0,0,0.310926 -30658,7201:487,-17,28,0,0,0.305494 -30659,7201:486,-16,28,0,0,0.310773 -30660,7201:485,-15,28,0,0,0.313884 -30661,7201:384,-14,28,0,0,0.311697 -30662,7201:383,-13,28,0,0,0.312425 -30663,7201:382,-12,28,0,0,0.31539 -30664,7201:381,-11,28,0,0,0.323701 -30665,7201:380,-10,28,0,0,0.305646 -30666,1200:383,3,28,0,0,0.346541 -30667,1200:384,4,28,0,0,0.348474 -30668,1200:485,5,28,0,0,0.356258 -30669,1200:486,6,28,0,0,0.355928 -30670,1200:487,7,28,0,0,0.35999 -30671,1200:488,8,28,0,0,0.35798 -30672,1200:489,9,28,0,0,0.366836 -30673,1201:380,10,28,0,0,0.364904 -30674,1201:381,11,28,0,0,0.363477 -30675,1201:382,12,28,0,0,0.365381 -30676,1201:487,17,28,0,0,0.364333 -30677,1201:488,18,28,0,0,0.370063 -30678,1202:384,24,28,0,0,0.349805 -30679,1202:485,25,28,0,0,0.339272 -30680,1202:487,27,28,0,0,0.313286 -30681,1202:488,28,28,0,0,0.300006 -30682,1212:382,122,28,0,0,0.158296 -30683,1213:381,131,28,0,0,0.237025 -30684,1213:382,132,28,0,0,0.261544 -30685,1213:383,133,28,0,0,0.242437 -30686,1213:384,134,28,0,0,0.269033 -30687,1213:485,135,28,0,0,0.25351 -30688,1213:486,136,28,0,0,0.240743 -30689,1213:487,137,28,0,0,0.278842 -30690,1213:488,138,28,0,0,0.269377 -30691,1213:489,139,28,0,0,0.254094 -30692,1214:380,140,28,0,0,0.255186 -30693,1214:382,142,28,0,0,0.302602 -30694,1214:383,143,28,0,0,0.283263 -30695,1214:384,144,28,0,0,0.208709 -30696,1214:485,145,28,0,0,0.284308 -30697,1214:486,146,28,0,0,0.325683 -30698,1214:487,147,28,0,0,0.321388 -30699,1214:488,148,28,0,0,0.263354 -30700,1214:489,149,28,0,0,0.293169 -30701,1215:380,150,28,0,0,0.272116 -30702,1215:381,151,28,0,0,0.272666 -30703,1215:382,152,28,0,0,0.253355 -30704,1215:383,153,28,0,0,0.268065 -30705,1215:384,154,28,0,0,0.297918 -30706,1215:485,155,28,0,0,0.290092 -30707,1215:486,156,28,0,0,0.28798 -30708,1215:487,157,28,0,0,0.275609 -30709,1215:488,158,28,0,0,0.268407 -30710,1215:489,159,28,0,0,0.266234 -30711,1216:380,160,28,0,0,0.265452 -30712,1216:381,161,28,0,0,0.246212 -30713,1216:382,162,28,0,0,0.238702 -30714,1216:383,163,28,0,0,0.261029 -30715,1216:384,164,28,0,0,0.248277 -30716,1216:485,165,28,0,0,0.257772 -30717,1216:486,166,28,0,0,0.263873 -30718,1216:487,167,28,0,0,0.25252 -30719,1216:488,168,28,0,0,0.243023 -30720,1216:489,169,28,0,0,0.235394 -30721,1217:380,170,28,0,0,0.23872 -30722,1217:381,171,28,0,0,0.251068 -30723,1217:382,172,28,0,0,0.22389 -30724,1217:383,173,28,0,0,0.218598 -30725,1217:384,174,28,0,0,0.227012 -30726,1217:485,175,28,0,0,0.226004 -30727,1217:486,176,28,0,0,0.221295 -30728,1217:487,177,28,0,0,0.221366 -30729,1217:488,178,28,0,0,0.226922 -30730,1217:489,179,28,0,0,0.22667 -30731,1218:380,180,28,0,0,0.220782 -30732,7218:390,-180,29,0,0,0.209218 -30733,7217:499,-179,29,0,0,0.207777 -30734,7217:498,-178,29,0,0,0.203198 -30735,7217:497,-177,29,0,0,0.204047 -30736,7217:496,-176,29,0,0,0.204364 -30737,7217:495,-175,29,0,0,0.201771 -30738,7217:394,-174,29,0,0,0.201423 -30739,7217:393,-173,29,0,0,0.19999 -30740,7217:392,-172,29,0,0,0.19971 -30741,7217:391,-171,29,0,0,0.20197 -30742,7217:390,-170,29,0,0,0.202815 -30743,7216:499,-169,29,0,0,0.202069 -30744,7216:498,-168,29,0,0,0.203015 -30745,7216:497,-167,29,0,0,0.205369 -30746,7216:496,-166,29,0,0,0.208777 -30747,7216:495,-165,29,0,0,0.212741 -30748,7216:394,-164,29,0,0,0.211539 -30749,7216:393,-163,29,0,0,0.208183 -30750,7216:392,-162,29,0,0,0.209048 -30751,7216:391,-161,29,0,0,0.211762 -30752,7216:390,-160,29,0,0,0.217232 -30753,7215:499,-159,29,0,0,0.222839 -30754,7215:498,-158,29,0,0,0.222075 -30755,7215:497,-157,29,0,0,0.222928 -30756,7215:496,-156,29,0,0,0.225933 -30757,7215:495,-155,29,0,0,0.226778 -30758,7215:394,-154,29,0,0,0.233109 -30759,7215:393,-153,29,0,0,0.233992 -30760,7215:392,-152,29,0,0,0.232907 -30761,7215:391,-151,29,0,0,0.237732 -30762,7215:390,-150,29,0,0,0.234286 -30763,7214:499,-149,29,0,0,0.236079 -30764,7214:498,-148,29,0,0,0.243666 -30765,7214:497,-147,29,0,0,0.244765 -30766,7214:496,-146,29,0,0,0.250643 -30767,7214:495,-145,29,0,0,0.252869 -30768,7214:394,-144,29,0,0,0.253646 -30769,7214:393,-143,29,0,0,0.252209 -30770,7214:392,-142,29,0,0,0.251319 -30771,7214:391,-141,29,0,0,0.254952 -30772,7214:390,-140,29,0,0,0.256477 -30773,7213:499,-139,29,0,0,0.257929 -30774,7213:498,-138,29,0,0,0.264372 -30775,7213:497,-137,29,0,0,0.267621 -30776,7213:496,-136,29,0,0,0.269114 -30777,7213:495,-135,29,0,0,0.267481 -30778,7213:394,-134,29,0,0,0.270856 -30779,7213:393,-133,29,0,0,0.27389 -30780,7213:392,-132,29,0,0,0.272645 -30781,7213:391,-131,29,0,0,0.273502 -30782,7213:390,-130,29,0,0,0.275897 -30783,7212:499,-129,29,0,0,0.270268 -30784,7212:498,-128,29,0,0,0.256065 -30785,7212:497,-127,29,0,0,0.25846 -30786,7212:496,-126,29,0,0,0.260415 -30787,7212:495,-125,29,0,0,0.254074 -30788,7207:390,-70,29,0,0,0.216499 -30789,7206:499,-69,29,0,0,0.216482 -30790,7206:498,-68,29,0,0,0.22398 -30791,7206:497,-67,29,0,0,0.221933 -30792,7206:496,-66,29,0,0,0.233182 -30793,7206:495,-65,29,0,0,0.233973 -30794,7206:394,-64,29,0,0,0.215455 -30795,7206:393,-63,29,0,0,0.217931 -30796,7206:392,-62,29,0,0,0.234194 -30797,7206:391,-61,29,0,0,0.230201 -30798,7206:390,-60,29,0,0,0.218282 -30799,7205:499,-59,29,0,0,0.230985 -30800,7205:498,-58,29,0,0,0.273053 -30801,7205:497,-57,29,0,0,0.279028 -30802,7205:496,-56,29,0,0,0.307328 -30803,7205:495,-55,29,0,0,0.29794 -30804,7205:394,-54,29,0,0,0.204749 -30805,7205:393,-53,29,0,0,0.213206 -30806,7205:392,-52,29,0,0,0.208895 -30807,7205:391,-51,29,0,0,0.186086 -30808,7205:390,-50,29,0,0,0.151228 -30809,7204:499,-49,29,0,0,0.131819 -30810,7204:498,-48,29,0,0,0.345378 -30811,7204:497,-47,29,0,0,0.297016 -30812,7204:496,-46,29,0,0,0.301433 -30813,7204:495,-45,29,0,0,0.247549 -30814,7204:394,-44,29,0,0,0.26738 -30815,7204:393,-43,29,0,0,0.287349 -30816,7204:392,-42,29,0,0,0.294257 -30817,7204:391,-41,29,0,0,0.329735 -30818,7204:390,-40,29,0,0,0.326225 -30819,7203:499,-39,29,0,0,0.320582 -30820,7203:498,-38,29,0,0,0.317368 -30821,7203:497,-37,29,0,0,0.289479 -30822,7203:496,-36,29,0,0,0.31579 -30823,7203:495,-35,29,0,0,0.313265 -30824,7203:394,-34,29,0,0,0.336766 -30825,7203:393,-33,29,0,0,0.317034 -30826,7203:392,-32,29,0,0,0.315812 -30827,7203:391,-31,29,0,0,0.328963 -30828,7203:390,-30,29,0,0,0.331713 -30829,7202:499,-29,29,0,0,0.329735 -30830,7202:498,-28,29,0,0,0.329213 -30831,7202:497,-27,29,0,0,0.322577 -30832,7202:496,-26,29,0,0,0.32038 -30833,7202:495,-25,29,0,0,0.317168 -30834,7202:394,-24,29,0,0,0.312425 -30835,7202:393,-23,29,0,0,0.310992 -30836,7202:392,-22,29,0,0,0.304362 -30837,7202:391,-21,29,0,0,0.30665 -30838,7202:390,-20,29,0,0,0.303383 -30839,7201:499,-19,29,0,0,0.298455 -30840,7201:498,-18,29,0,0,0.300481 -30841,7201:497,-17,29,0,0,0.296416 -30842,7201:496,-16,29,0,0,0.298413 -30843,7201:495,-15,29,0,0,0.300287 -30844,7201:394,-14,29,0,0,0.304188 -30845,7201:393,-13,29,0,0,0.296909 -30846,7201:392,-12,29,0,0,0.298176 -30847,7201:391,-11,29,0,0,0.311367 -30848,7201:390,-10,29,0,0,0.293404 -30849,1200:393,3,29,0,0,0.34218 -30850,1200:394,4,29,0,0,0.336192 -30851,1200:495,5,29,0,0,0.344334 -30852,1200:496,6,29,0,0,0.348474 -30853,1200:497,7,29,0,0,0.352427 -30854,1200:498,8,29,0,0,0.355081 -30855,1200:499,9,29,0,0,0.360961 -30856,1201:390,10,29,0,0,0.360724 -30857,1201:394,14,29,0,0,0.354328 -30858,1201:495,15,29,0,0,0.360866 -30859,1201:496,16,29,0,0,0.371885 -30860,1201:497,17,29,0,0,0.374168 -30861,1201:498,18,29,0,0,0.388077 -30862,1202:498,28,29,0,0,0.281723 -30863,1202:499,29,29,0,0,0.279669 -30864,1203:390,30,29,0,0,0.2788 -30865,1203:498,38,29,0,0,0.287538 -30866,1213:391,131,29,0,0,0.195766 -30867,1213:392,132,29,0,0,0.174119 -30868,1213:393,133,29,0,0,0.181585 -30869,1213:394,134,29,0,0,0.183009 -30870,1213:495,135,29,0,0,0.189361 -30871,1213:496,136,29,0,0,0.196398 -30872,1213:497,137,29,0,0,0.192663 -30873,1213:498,138,29,0,0,0.22491 -30874,1213:499,139,29,0,0,0.237583 -30875,1214:390,140,29,0,0,0.227897 -30876,1214:495,145,29,0,0,0.152671 -30877,1214:496,146,29,0,0,0.147069 -30878,1214:497,147,29,0,0,0.198269 -30879,1214:498,148,29,0,0,0.219635 -30880,1214:499,149,29,0,0,0.292234 -30881,1215:390,150,29,0,0,0.276822 -30882,1215:391,151,29,0,0,0.269579 -30883,1215:392,152,29,0,0,0.161317 -30884,1215:393,153,29,0,0,0.179004 -30885,1215:394,154,29,0,0,0.196625 -30886,1215:495,155,29,0,0,0.203964 -30887,1215:496,156,29,0,0,0.20727 -30888,1215:497,157,29,0,0,0.202982 -30889,1215:498,158,29,0,0,0.212157 -30890,1215:499,159,29,0,0,0.237639 -30891,1216:390,160,29,0,0,0.232999 -30892,1216:391,161,29,0,0,0.226256 -30893,1216:392,162,29,0,0,0.243249 -30894,1216:393,163,29,0,0,0.217897 -30895,1216:394,164,29,0,0,0.223623 -30896,1216:495,165,29,0,0,0.228313 -30897,1216:496,166,29,0,0,0.206444 -30898,1216:497,167,29,0,0,0.201407 -30899,1216:498,168,29,0,0,0.199349 -30900,1216:499,169,29,0,0,0.208742 -30901,1217:390,170,29,0,0,0.204883 -30902,1217:391,171,29,0,0,0.224355 -30903,1217:392,172,29,0,0,0.214363 -30904,1217:393,173,29,0,0,0.204214 -30905,1217:394,174,29,0,0,0.194459 -30906,1217:495,175,29,0,0,0.204833 -30907,1217:496,176,29,0,0,0.215525 -30908,1217:497,177,29,0,0,0.207152 -30909,1217:498,178,29,0,0,0.202268 -30910,1217:499,179,29,0,0,0.205973 -30911,1218:390,180,29,0,0,0.209218 -30912,7318:100,-180,30,0,0,0.184427 -30913,7317:209,-179,30,0,0,0.185884 -30914,7317:208,-178,30,0,0,0.191244 -30915,7317:207,-177,30,0,0,0.191038 -30916,7317:206,-176,30,0,0,0.1922 -30917,7317:205,-175,30,0,0,0.192855 -30918,7317:104,-174,30,0,0,0.190974 -30919,7317:103,-173,30,0,0,0.18955 -30920,7317:102,-172,30,0,0,0.188039 -30921,7317:101,-171,30,0,0,0.187225 -30922,7317:100,-170,30,0,0,0.188668 -30923,7316:209,-169,30,0,0,0.188856 -30924,7316:208,-168,30,0,0,0.189629 -30925,7316:207,-167,30,0,0,0.189093 -30926,7316:206,-166,30,0,0,0.192455 -30927,7316:205,-165,30,0,0,0.200401 -30928,7316:104,-164,30,0,0,0.197747 -30929,7316:103,-163,30,0,0,0.195475 -30930,7316:102,-162,30,0,0,0.19669 -30931,7316:101,-161,30,0,0,0.198286 -30932,7316:100,-160,30,0,0,0.207371 -30933,7315:209,-159,30,0,0,0.209031 -30934,7315:208,-158,30,0,0,0.204281 -30935,7315:207,-157,30,0,0,0.212965 -30936,7315:206,-156,30,0,0,0.212741 -30937,7315:205,-155,30,0,0,0.214709 -30938,7315:104,-154,30,0,0,0.218265 -30939,7315:103,-153,30,0,0,0.215316 -30940,7315:102,-152,30,0,0,0.219072 -30941,7315:101,-151,30,0,0,0.218528 -30942,7315:100,-150,30,0,0,0.2211 -30943,7314:209,-149,30,0,0,0.230894 -30944,7314:208,-148,30,0,0,0.232357 -30945,7314:207,-147,30,0,0,0.23412 -30946,7314:206,-146,30,0,0,0.2379 -30947,7314:205,-145,30,0,0,0.240349 -30948,7314:104,-144,30,0,0,0.239561 -30949,7314:103,-143,30,0,0,0.238272 -30950,7314:102,-142,30,0,0,0.23872 -30951,7314:101,-141,30,0,0,0.240123 -30952,7314:100,-140,30,0,0,0.245964 -30953,7313:209,-139,30,0,0,0.247893 -30954,7313:208,-138,30,0,0,0.259367 -30955,7313:207,-137,30,0,0,0.256124 -30956,7313:206,-136,30,0,0,0.258185 -30957,7313:205,-135,30,0,0,0.25994 -30958,7313:104,-134,30,0,0,0.264692 -30959,7313:103,-133,30,0,0,0.262796 -30960,7313:102,-132,30,0,0,0.259111 -30961,7313:101,-131,30,0,0,0.259447 -30962,7313:100,-130,30,0,0,0.259604 -30963,7312:209,-129,30,0,0,0.252287 -30964,7312:208,-128,30,0,0,0.254952 -30965,7312:207,-127,30,0,0,0.257969 -30966,7312:206,-126,30,0,0,0.247415 -30967,7312:205,-125,30,0,0,0.243798 -30968,7306:209,-69,30,0,0,0.204314 -30969,7306:208,-68,30,0,0,0.202583 -30970,7306:207,-67,30,0,0,0.203514 -30971,7306:206,-66,30,0,0,0.211556 -30972,7306:104,-64,30,0,0,0.204816 -30973,7306:103,-63,30,0,0,0.196365 -30974,7306:102,-62,30,0,0,0.190848 -30975,7306:101,-61,30,0,0,0.196219 -30976,7306:100,-60,30,0,0,0.19169 -30977,7305:209,-59,30,0,0,0.181815 -30978,7305:208,-58,30,0,0,0.16274 -30979,7305:207,-57,30,0,0,0.161415 -30980,7305:206,-56,30,0,0,0.201589 -30981,7305:205,-55,30,0,0,0.18966 -30982,7305:104,-54,30,0,0,0.165049 -30983,7305:103,-53,30,0,0,0.178611 -30984,7305:102,-52,30,0,0,0.170007 -30985,7305:101,-51,30,0,0,0.159257 -30986,7305:100,-50,30,0,0,0.150583 -30987,7304:209,-49,30,0,0,0.127426 -30988,7304:208,-48,30,0,0,0.151294 -30989,7304:207,-47,30,0,0,0.324083 -30990,7304:206,-46,30,0,0,0.311037 -30991,7304:205,-45,30,0,0,0.212243 -30992,7304:104,-44,30,0,0,0.276616 -30993,7304:103,-43,30,0,0,0.271993 -30994,7304:102,-42,30,0,0,0.291448 -30995,7304:101,-41,30,0,0,0.301195 -30996,7304:100,-40,30,0,0,0.253899 -30997,7303:209,-39,30,0,0,0.275589 -30998,7303:208,-38,30,0,0,0.274933 -30999,7303:207,-37,30,0,0,0.273481 -31000,7303:206,-36,30,0,0,0.293276 -31001,7303:205,-35,30,0,0,0.330621 -31002,7303:104,-34,30,0,0,0.329303 -31003,7303:103,-33,30,0,0,0.297402 -31004,7303:102,-32,30,0,0,0.29633 -31005,7303:101,-31,30,0,0,0.310442 -31006,7303:100,-30,30,0,0,0.318839 -31007,7302:209,-29,30,0,0,0.328306 -31008,7302:208,-28,30,0,0,0.324511 -31009,7302:207,-27,30,0,0,0.312183 -31010,7302:206,-26,30,0,0,0.308181 -31011,7302:205,-25,30,0,0,0.309454 -31012,7302:104,-24,30,0,0,0.307437 -31013,7302:103,-23,30,0,0,0.303774 -31014,7302:102,-22,30,0,0,0.299381 -31015,7302:101,-21,30,0,0,0.298047 -31016,7302:100,-20,30,0,0,0.295495 -31017,7301:209,-19,30,0,0,0.292191 -31018,7301:208,-18,30,0,0,0.294534 -31019,7301:207,-17,30,0,0,0.290769 -31020,7301:206,-16,30,0,0,0.291915 -31021,7301:205,-15,30,0,0,0.290748 -31022,7301:104,-14,30,0,0,0.293382 -31023,7301:103,-13,30,0,0,0.290621 -31024,7301:102,-12,30,0,0,0.290176 -31025,7301:101,-11,30,0,0,0.287665 -31026,7301:100,-10,30,0,0,0.287622 -31027,7300:209,-9,30,0,0,0.28988 -31028,7300:208,-8,30,0,0,0.293042 -31029,7300:207,-7,30,0,0,0.294769 -31030,7300:206,-6,30,0,0,0.295923 -31031,7300:205,-5,30,0,0,0.295303 -31032,7300:104,-4,30,0,0,0.297123 -31033,7300:103,-3,30,0,0,0.298714 -31034,1300:207,7,30,0,0,0.350179 -31035,1300:208,8,30,0,0,0.349525 -31036,1300:209,9,30,0,0,0.35487 -31037,1301:103,13,30,0,0,0.319286 -31038,1301:104,14,30,0,0,0.368675 -31039,1301:205,15,30,0,0,0.374649 -31040,1301:206,16,30,0,0,0.320045 -31041,1302:207,27,30,0,0,0.281245 -31042,1302:208,28,30,0,0,0.267944 -31043,1302:209,29,30,0,0,0.26738 -31044,1303:100,30,30,0,0,0.270876 -31045,1303:101,31,30,0,0,0.273216 -31046,1303:102,32,30,0,0,0.282118 -31047,1303:103,33,30,0,0,0.285878 -31048,1303:104,34,30,0,0,0.286298 -31049,1303:205,35,30,0,0,0.284663 -31050,1303:206,36,30,0,0,0.27604 -31051,1303:207,37,30,0,0,0.261227 -31052,1303:208,38,30,0,0,0.263095 -31053,1303:209,39,30,0,0,0.275302 -31054,1304:100,40,30,0,0,0.288107 -31055,1313:206,136,30,0,0,0.168001 -31056,1313:207,137,30,0,0,0.181173 -31057,1313:208,138,30,0,0,0.219565 -31058,1313:209,139,30,0,0,0.233605 -31059,1314:100,140,30,0,0,0.203264 -31060,1314:101,141,30,0,0,0.201126 -31061,1314:102,142,30,0,0,0.199776 -31062,1314:206,146,30,0,0,0.156294 -31063,1314:207,147,30,0,0,0.147043 -31064,1314:208,148,30,0,0,0.139109 -31065,1314:209,149,30,0,0,0.142138 -31066,1315:100,150,30,0,0,0.141114 -31067,1315:101,151,30,0,0,0.137322 -31068,1315:102,152,30,0,0,0.146683 -31069,1315:103,153,30,0,0,0.152618 -31070,1315:104,154,30,0,0,0.14658 -31071,1315:205,155,30,0,0,0.150622 -31072,1315:206,156,30,0,0,0.188904 -31073,1315:207,157,30,0,0,0.188668 -31074,1315:208,158,30,0,0,0.179866 -31075,1315:209,159,30,0,0,0.175008 -31076,1316:100,160,30,0,0,0.184427 -31077,1316:101,161,30,0,0,0.23135 -31078,1316:102,162,30,0,0,0.215751 -31079,1316:103,163,30,0,0,0.208793 -31080,1316:104,164,30,0,0,0.200796 -31081,1316:205,165,30,0,0,0.196414 -31082,1316:206,166,30,0,0,0.194943 -31083,1316:207,167,30,0,0,0.186258 -31084,1316:208,168,30,0,0,0.192519 -31085,1316:209,169,30,0,0,0.189156 -31086,1317:100,170,30,0,0,0.177559 -31087,1317:101,171,30,0,0,0.18435 -31088,1317:102,172,30,0,0,0.205234 -31089,1317:103,173,30,0,0,0.196171 -31090,1317:104,174,30,0,0,0.175171 -31091,1317:205,175,30,0,0,0.183517 -31092,1317:206,176,30,0,0,0.189929 -31093,1317:207,177,30,0,0,0.19004 -31094,1317:208,178,30,0,0,0.187366 -31095,1317:209,179,30,0,0,0.188196 -31096,1318:100,180,30,0,0,0.184427 -31097,7318:110,-180,31,0,0,0.169023 -31098,7317:219,-179,31,0,0,0.17066 -31099,7317:218,-178,31,0,0,0.177244 -31100,7317:217,-177,31,0,0,0.176108 -31101,7317:216,-176,31,0,0,0.177289 -31102,7317:215,-175,31,0,0,0.182059 -31103,7317:114,-174,31,0,0,0.177529 -31104,7317:113,-173,31,0,0,0.176944 -31105,7317:112,-172,31,0,0,0.179412 -31106,7317:111,-171,31,0,0,0.177334 -31107,7317:110,-170,31,0,0,0.176795 -31108,7316:219,-169,31,0,0,0.178702 -31109,7316:218,-168,31,0,0,0.181219 -31110,7316:217,-167,31,0,0,0.182136 -31111,7316:216,-166,31,0,0,0.183271 -31112,7316:215,-165,31,0,0,0.184628 -31113,7316:114,-164,31,0,0,0.1871 -31114,7316:113,-163,31,0,0,0.188447 -31115,7316:112,-162,31,0,0,0.189471 -31116,7316:111,-161,31,0,0,0.189266 -31117,7316:110,-160,31,0,0,0.19177 -31118,7315:219,-159,31,0,0,0.191372 -31119,7315:218,-158,31,0,0,0.189597 -31120,7315:217,-157,31,0,0,0.198204 -31121,7315:216,-156,31,0,0,0.200467 -31122,7315:215,-155,31,0,0,0.195265 -31123,7315:114,-154,31,0,0,0.194943 -31124,7315:113,-153,31,0,0,0.196625 -31125,7315:112,-152,31,0,0,0.202965 -31126,7315:111,-151,31,0,0,0.209439 -31127,7315:110,-150,31,0,0,0.209184 -31128,7314:219,-149,31,0,0,0.213017 -31129,7314:218,-148,31,0,0,0.218335 -31130,7314:217,-147,31,0,0,0.221702 -31131,7314:216,-146,31,0,0,0.22275 -31132,7314:215,-145,31,0,0,0.222359 -31133,7314:114,-144,31,0,0,0.227662 -31134,7314:113,-143,31,0,0,0.226742 -31135,7314:112,-142,31,0,0,0.227103 -31136,7314:111,-141,31,0,0,0.234157 -31137,7314:110,-140,31,0,0,0.235542 -31138,7313:219,-139,31,0,0,0.233826 -31139,7313:218,-138,31,0,0,0.242267 -31140,7313:217,-137,31,0,0,0.244823 -31141,7313:216,-136,31,0,0,0.2502 -31142,7313:215,-135,31,0,0,0.250392 -31143,7313:114,-134,31,0,0,0.250778 -31144,7313:113,-133,31,0,0,0.248488 -31145,7313:112,-132,31,0,0,0.250045 -31146,7313:111,-131,31,0,0,0.251648 -31147,7313:110,-130,31,0,0,0.249103 -31148,7312:219,-129,31,0,0,0.245374 -31149,7312:218,-128,31,0,0,0.249949 -31150,7312:217,-127,31,0,0,0.249218 -31151,7312:216,-126,31,0,0,0.247262 -31152,7312:215,-125,31,0,0,0.242116 -31153,7306:216,-66,31,0,0,0.2025 -31154,7306:112,-62,31,0,0,0.173279 -31155,7306:111,-61,31,0,0,0.1719 -31156,7306:110,-60,31,0,0,0.163259 -31157,7305:219,-59,31,0,0,0.161874 -31158,7305:218,-58,31,0,0,0.152857 -31159,7305:217,-57,31,0,0,0.146529 -31160,7305:216,-56,31,0,0,0.142063 -31161,7305:215,-55,31,0,0,0.133605 -31162,7305:114,-54,31,0,0,0.144472 -31163,7305:113,-53,31,0,0,0.142741 -31164,7305:112,-52,31,0,0,0.143005 -31165,7305:111,-51,31,0,0,0.143459 -31166,7305:110,-50,31,0,0,0.135748 -31167,7304:219,-49,31,0,0,0.129149 -31168,7304:218,-48,31,0,0,0.128988 -31169,7304:217,-47,31,0,0,0.200681 -31170,7304:216,-46,31,0,0,0.2025 -31171,7304:215,-45,31,0,0,0.237974 -31172,7304:114,-44,31,0,0,0.255303 -31173,7304:113,-43,31,0,0,0.251667 -31174,7304:112,-42,31,0,0,0.251899 -31175,7304:111,-41,31,0,0,0.249391 -31176,7304:110,-40,31,0,0,0.232705 -31177,7303:219,-39,31,0,0,0.260177 -31178,7303:218,-38,31,0,0,0.274422 -31179,7303:217,-37,31,0,0,0.268549 -31180,7303:216,-36,31,0,0,0.275118 -31181,7303:215,-35,31,0,0,0.294448 -31182,7303:114,-34,31,0,0,0.306716 -31183,7303:113,-33,31,0,0,0.275897 -31184,7303:112,-32,31,0,0,0.289267 -31185,7303:111,-31,31,0,0,0.281266 -31186,7303:110,-30,31,0,0,0.291066 -31187,7302:219,-29,31,0,0,0.323611 -31188,7302:218,-28,31,0,0,0.325007 -31189,7302:217,-27,31,0,0,0.315834 -31190,7302:216,-26,31,0,0,0.315479 -31191,7302:215,-25,31,0,0,0.315945 -31192,7302:114,-24,31,0,0,0.31042 -31193,7302:113,-23,31,0,0,0.306279 -31194,7302:112,-22,31,0,0,0.299532 -31195,7302:111,-21,31,0,0,0.29736 -31196,7302:110,-20,31,0,0,0.290155 -31197,7301:219,-19,31,0,0,0.286424 -31198,7301:218,-18,31,0,0,0.284141 -31199,7301:217,-17,31,0,0,0.284768 -31200,7301:216,-16,31,0,0,0.283451 -31201,7301:215,-15,31,0,0,0.284287 -31202,7301:114,-14,31,0,0,0.285815 -31203,7301:113,-13,31,0,0,0.281411 -31204,7301:112,-12,31,0,0,0.282139 -31205,7301:111,-11,31,0,0,0.285229 -31206,7301:110,-10,31,0,0,0.282201 -31207,7300:219,-9,31,0,0,0.281806 -31208,7300:218,-8,31,0,0,0.280394 -31209,7300:217,-7,31,0,0,0.283702 -31210,7300:216,-6,31,0,0,0.28437 -31211,7300:215,-5,31,0,0,0.288212 -31212,7300:114,-4,31,0,0,0.287054 -31213,7300:113,-3,31,0,0,0.293915 -31214,7300:112,-2,31,0,0,0.27049 -31215,1301:112,12,31,0,0,0.324421 -31216,1301:113,13,31,0,0,0.348825 -31217,1301:114,14,31,0,0,0.326405 -31218,1302:218,28,31,0,0,0.27236 -31219,1302:219,29,31,0,0,0.266696 -31220,1303:110,30,31,0,0,0.270247 -31221,1303:111,31,31,0,0,0.273624 -31222,1303:112,32,31,0,0,0.275466 -31223,1303:113,33,31,0,0,0.281058 -31224,1303:114,34,31,0,0,0.277089 -31225,1303:215,35,31,0,0,0.262458 -31226,1303:216,36,31,0,0,0.258303 -31227,1303:217,37,31,0,0,0.264792 -31228,1303:218,38,31,0,0,0.267903 -31229,1303:219,39,31,0,0,0.28166 -31230,1304:110,40,31,0,0,0.291108 -31231,1313:218,138,31,0,0,0.173574 -31232,1313:219,139,31,0,0,0.185124 -31233,1314:110,140,31,0,0,0.184551 -31234,1314:111,141,31,0,0,0.181371 -31235,1314:112,142,31,0,0,0.195055 -31236,1314:114,144,31,0,0,0.126016 -31237,1314:215,145,31,0,0,0.110916 -31238,1314:216,146,31,0,0,0.136351 -31239,1314:217,147,31,0,0,0.132207 -31240,1314:218,148,31,0,0,0.1337 -31241,1314:219,149,31,0,0,0.149561 -31242,1315:110,150,31,0,0,0.141838 -31243,1315:111,151,31,0,0,0.134248 -31244,1315:112,152,31,0,0,0.135808 -31245,1315:113,153,31,0,0,0.145913 -31246,1315:114,154,31,0,0,0.151518 -31247,1315:215,155,31,0,0,0.138287 -31248,1315:216,156,31,0,0,0.138655 -31249,1315:217,157,31,0,0,0.169891 -31250,1315:218,158,31,0,0,0.150294 -31251,1315:219,159,31,0,0,0.141676 -31252,1316:110,160,31,0,0,0.14413 -31253,1316:111,161,31,0,0,0.151347 -31254,1316:112,162,31,0,0,0.220729 -31255,1316:113,163,31,0,0,0.213189 -31256,1316:114,164,31,0,0,0.178747 -31257,1316:215,165,31,0,0,0.169587 -31258,1316:216,166,31,0,0,0.183809 -31259,1316:217,167,31,0,0,0.174608 -31260,1316:218,168,31,0,0,0.165716 -31261,1316:219,169,31,0,0,0.180382 -31262,1317:110,170,31,0,0,0.169572 -31263,1317:111,171,31,0,0,0.171053 -31264,1317:112,172,31,0,0,0.177589 -31265,1317:113,173,31,0,0,0.166969 -31266,1317:114,174,31,0,0,0.166299 -31267,1317:215,175,31,0,0,0.172354 -31268,1317:216,176,31,0,0,0.173323 -31269,1317:217,177,31,0,0,0.171491 -31270,1317:218,178,31,0,0,0.169616 -31271,1317:219,179,31,0,0,0.172809 -31272,1318:110,180,31,0,0,0.169023 -31273,7318:120,-180,32,0,0,0.16079 -31274,7317:229,-179,32,0,0,0.163779 -31275,7317:228,-178,32,0,0,0.166399 -31276,7317:227,-177,32,0,0,0.160748 -31277,7317:226,-176,32,0,0,0.162685 -31278,7317:225,-175,32,0,0,0.169442 -31279,7317:124,-174,32,0,0,0.169269 -31280,7317:123,-173,32,0,0,0.169891 -31281,7317:122,-172,32,0,0,0.170108 -31282,7317:121,-171,32,0,0,0.16849 -31283,7317:120,-170,32,0,0,0.171301 -31284,7316:229,-169,32,0,0,0.170849 -31285,7316:228,-168,32,0,0,0.173191 -31286,7316:227,-167,32,0,0,0.174874 -31287,7316:226,-166,32,0,0,0.174445 -31288,7316:225,-165,32,0,0,0.175379 -31289,7316:124,-164,32,0,0,0.178235 -31290,7316:123,-163,32,0,0,0.180382 -31291,7316:122,-162,32,0,0,0.181112 -31292,7316:121,-161,32,0,0,0.181188 -31293,7316:120,-160,32,0,0,0.180747 -31294,7315:229,-159,32,0,0,0.181952 -31295,7315:228,-158,32,0,0,0.181982 -31296,7315:227,-157,32,0,0,0.182028 -31297,7315:226,-156,32,0,0,0.181967 -31298,7315:225,-155,32,0,0,0.183625 -31299,7315:124,-154,32,0,0,0.186881 -31300,7315:123,-153,32,0,0,0.189455 -31301,7315:122,-152,32,0,0,0.192967 -31302,7315:121,-151,32,0,0,0.199054 -31303,7315:120,-150,32,0,0,0.20045 -31304,7314:229,-149,32,0,0,0.202367 -31305,7314:228,-148,32,0,0,0.206494 -31306,7314:227,-147,32,0,0,0.209882 -31307,7314:226,-146,32,0,0,0.212328 -31308,7314:225,-145,32,0,0,0.209388 -31309,7314:124,-144,32,0,0,0.216151 -31310,7314:123,-143,32,0,0,0.220252 -31311,7314:122,-142,32,0,0,0.216064 -31312,7314:121,-141,32,0,0,0.226238 -31313,7314:120,-140,32,0,0,0.224141 -31314,7313:229,-139,32,0,0,0.221685 -31315,7313:228,-138,32,0,0,0.228693 -31316,7313:227,-137,32,0,0,0.229837 -31317,7313:226,-136,32,0,0,0.239992 -31318,7313:225,-135,32,0,0,0.244329 -31319,7313:124,-134,32,0,0,0.239543 -31320,7313:123,-133,32,0,0,0.240931 -31321,7313:122,-132,32,0,0,0.244975 -31322,7313:121,-131,32,0,0,0.246498 -31323,7313:120,-130,32,0,0,0.244063 -31324,7312:229,-129,32,0,0,0.240461 -31325,7312:228,-128,32,0,0,0.241194 -31326,7312:227,-127,32,0,0,0.235986 -31327,7312:226,-126,32,0,0,0.23831 -31328,7312:225,-125,32,0,0,0.23803 -31329,7306:122,-62,32,0,0,0.134152 -31330,7306:121,-61,32,0,0,0.144447 -31331,7305:229,-59,32,0,0,0.147935 -31332,7305:228,-58,32,0,0,0.142678 -31333,7305:227,-57,32,0,0,0.140617 -31334,7305:226,-56,32,0,0,0.139011 -31335,7305:225,-55,32,0,0,0.13115 -31336,7305:124,-54,32,0,0,0.125384 -31337,7305:123,-53,32,0,0,0.117515 -31338,7305:122,-52,32,0,0,0.120444 -31339,7305:121,-51,32,0,0,0.130589 -31340,7305:120,-50,32,0,0,0.124474 -31341,7304:229,-49,32,0,0,0.129161 -31342,7304:228,-48,32,0,0,0.120728 -31343,7304:227,-47,32,0,0,0.125779 -31344,7304:226,-46,32,0,0,0.165432 -31345,7304:225,-45,32,0,0,0.165475 -31346,7304:124,-44,32,0,0,0.164795 -31347,7304:123,-43,32,0,0,0.200022 -31348,7304:122,-42,32,0,0,0.243779 -31349,7304:121,-41,32,0,0,0.241551 -31350,7304:120,-40,32,0,0,0.234231 -31351,7303:229,-39,32,0,0,0.256496 -31352,7303:228,-38,32,0,0,0.277089 -31353,7303:227,-37,32,0,0,0.276164 -31354,7303:226,-36,32,0,0,0.258047 -31355,7303:225,-35,32,0,0,0.271628 -31356,7303:124,-34,32,0,0,0.256594 -31357,7303:123,-33,32,0,0,0.248354 -31358,7303:122,-32,32,0,0,0.242984 -31359,7303:121,-31,32,0,0,0.284057 -31360,7303:120,-30,32,0,0,0.288149 -31361,7302:229,-29,32,0,0,0.314747 -31362,7302:228,-28,32,0,0,0.320157 -31363,7302:227,-27,32,0,0,0.310332 -31364,7302:226,-26,32,0,0,0.296009 -31365,7302:225,-25,32,0,0,0.291172 -31366,7302:124,-24,32,0,0,0.300072 -31367,7302:123,-23,32,0,0,0.299619 -31368,7302:122,-22,32,0,0,0.300547 -31369,7302:121,-21,32,0,0,0.292872 -31370,7302:120,-20,32,0,0,0.296266 -31371,7301:229,-19,32,0,0,0.292659 -31372,7301:228,-18,32,0,0,0.280539 -31373,7301:227,-17,32,0,0,0.276637 -31374,7301:226,-16,32,0,0,0.276431 -31375,7301:225,-15,32,0,0,0.278697 -31376,7301:124,-14,32,0,0,0.279545 -31377,7301:123,-13,32,0,0,0.275323 -31378,7301:122,-12,32,0,0,0.272645 -31379,7301:121,-11,32,0,0,0.273297 -31380,7301:120,-10,32,0,0,0.271729 -31381,7300:229,-9,32,0,0,0.272686 -31382,7300:228,-8,32,0,0,0.273665 -31383,7300:227,-7,32,0,0,0.273767 -31384,7300:226,-6,32,0,0,0.279193 -31385,7300:225,-5,32,0,0,0.278367 -31386,7300:124,-4,32,0,0,0.282909 -31387,7300:123,-3,32,0,0,0.28243 -31388,7300:122,-2,32,0,0,0.236487 -31389,1301:122,12,32,0,0,0.313861 -31390,1302:228,28,32,0,0,0.279358 -31391,1302:229,29,32,0,0,0.265032 -31392,1303:120,30,32,0,0,0.265112 -31393,1303:121,31,32,0,0,0.266998 -31394,1303:122,32,32,0,0,0.265893 -31395,1303:123,33,32,0,0,0.263773 -31396,1303:124,34,32,0,0,0.257222 -31397,1303:225,35,32,0,0,0.25501 -31398,1303:226,36,32,0,0,0.263573 -31399,1303:227,37,32,0,0,0.272218 -31400,1303:228,38,32,0,0,0.280145 -31401,1303:229,39,32,0,0,0.285312 -31402,1313:229,139,32,0,0,0.153551 -31403,1314:120,140,32,0,0,0.167155 -31404,1314:121,141,32,0,0,0.173 -31405,1314:122,142,32,0,0,0.181616 -31406,1314:123,143,32,0,0,0.122054 -31407,1314:124,144,32,0,0,0.112209 -31408,1314:225,145,32,0,0,0.107439 -31409,1314:226,146,32,0,0,0.13383 -31410,1314:227,147,32,0,0,0.139343 -31411,1314:228,148,32,0,0,0.143396 -31412,1314:229,149,32,0,0,0.142389 -31413,1315:120,150,32,0,0,0.142264 -31414,1315:121,151,32,0,0,0.145798 -31415,1315:122,152,32,0,0,0.135507 -31416,1315:123,153,32,0,0,0.128699 -31417,1315:124,154,32,0,0,0.136436 -31418,1315:225,155,32,0,0,0.14535 -31419,1315:226,156,32,0,0,0.132077 -31420,1315:227,157,32,0,0,0.132597 -31421,1315:228,158,32,0,0,0.141052 -31422,1315:229,159,32,0,0,0.142427 -31423,1316:120,160,32,0,0,0.138483 -31424,1316:121,161,32,0,0,0.13517 -31425,1316:122,162,32,0,0,0.143585 -31426,1316:123,163,32,0,0,0.153377 -31427,1316:124,164,32,0,0,0.149391 -31428,1316:225,165,32,0,0,0.154971 -31429,1316:226,166,32,0,0,0.168576 -31430,1316:227,167,32,0,0,0.14743 -31431,1316:228,168,32,0,0,0.143257 -31432,1316:229,169,32,0,0,0.150807 -31433,1317:120,170,32,0,0,0.157014 -31434,1317:121,171,32,0,0,0.154998 -31435,1317:122,172,32,0,0,0.152206 -31436,1317:123,173,32,0,0,0.150636 -31437,1317:124,174,32,0,0,0.154019 -31438,1317:225,175,32,0,0,0.156132 -31439,1317:226,176,32,0,0,0.154675 -31440,1317:227,177,32,0,0,0.157231 -31441,1317:228,178,32,0,0,0.159367 -31442,1317:229,179,32,0,0,0.160707 -31443,1318:120,180,32,0,0,0.16079 -31444,7318:130,-180,33,0,0,0.151281 -31445,7317:239,-179,33,0,0,0.154072 -31446,7317:238,-178,33,0,0,0.156416 -31447,7317:237,-177,33,0,0,0.154099 -31448,7317:236,-176,33,0,0,0.153684 -31449,7317:235,-175,33,0,0,0.153177 -31450,7317:134,-174,33,0,0,0.155066 -31451,7317:133,-173,33,0,0,0.159988 -31452,7317:132,-172,33,0,0,0.161234 -31453,7317:131,-171,33,0,0,0.161262 -31454,7317:130,-170,33,0,0,0.161944 -31455,7316:239,-169,33,0,0,0.161763 -31456,7316:238,-168,33,0,0,0.164385 -31457,7316:237,-167,33,0,0,0.167456 -31458,7316:236,-166,33,0,0,0.16826 -31459,7316:235,-165,33,0,0,0.168303 -31460,7316:134,-164,33,0,0,0.16885 -31461,7316:133,-163,33,0,0,0.17209 -31462,7316:132,-162,33,0,0,0.174726 -31463,7316:131,-161,33,0,0,0.172486 -31464,7316:130,-160,33,0,0,0.171272 -31465,7315:239,-159,33,0,0,0.175468 -31466,7315:238,-158,33,0,0,0.174534 -31467,7315:237,-157,33,0,0,0.173308 -31468,7315:236,-156,33,0,0,0.178913 -31469,7315:235,-155,33,0,0,0.182304 -31470,7315:134,-154,33,0,0,0.184907 -31471,7315:133,-153,33,0,0,0.185542 -31472,7315:132,-152,33,0,0,0.188526 -31473,7315:131,-151,33,0,0,0.192104 -31474,7315:130,-150,33,0,0,0.193848 -31475,7314:239,-149,33,0,0,0.19708 -31476,7314:238,-148,33,0,0,0.198139 -31477,7314:237,-147,33,0,0,0.19953 -31478,7314:236,-146,33,0,0,0.20022 -31479,7314:235,-145,33,0,0,0.201258 -31480,7314:134,-144,33,0,0,0.205352 -31481,7314:133,-143,33,0,0,0.207371 -31482,7314:132,-142,33,0,0,0.206831 -31483,7314:131,-141,33,0,0,0.213396 -31484,7314:130,-140,33,0,0,0.215542 -31485,7313:239,-139,33,0,0,0.217477 -31486,7313:238,-138,33,0,0,0.220234 -31487,7313:237,-137,33,0,0,0.222413 -31488,7313:236,-136,33,0,0,0.229892 -31489,7313:235,-135,33,0,0,0.230328 -31490,7313:134,-134,33,0,0,0.228802 -31491,7313:133,-133,33,0,0,0.233532 -31492,7313:132,-132,33,0,0,0.237007 -31493,7313:131,-131,33,0,0,0.237806 -31494,7313:130,-130,33,0,0,0.236672 -31495,7312:239,-129,33,0,0,0.235172 -31496,7312:238,-128,33,0,0,0.229892 -31497,7312:237,-127,33,0,0,0.227879 -31498,7312:236,-126,33,0,0,0.233771 -31499,7312:235,-125,33,0,0,0.234858 -31500,7306:134,-64,33,0,0,0.136872 -31501,7306:133,-63,33,0,0,0.151228 -31502,7306:132,-62,33,0,0,0.166299 -31503,7306:131,-61,33,0,0,0.158735 -31504,7305:239,-59,33,0,0,0.137493 -31505,7305:238,-58,33,0,0,0.14022 -31506,7305:237,-57,33,0,0,0.140629 -31507,7305:236,-56,33,0,0,0.136509 -31508,7305:235,-55,33,0,0,0.137359 -31509,7305:134,-54,33,0,0,0.131232 -31510,7305:132,-52,33,0,0,0.110098 -31511,7305:131,-51,33,0,0,0.112825 -31512,7305:130,-50,33,0,0,0.115884 -31513,7304:239,-49,33,0,0,0.116994 -31514,7304:238,-48,33,0,0,0.114909 -31515,7304:237,-47,33,0,0,0.123748 -31516,7304:236,-46,33,0,0,0.140753 -31517,7304:235,-45,33,0,0,0.145977 -31518,7304:134,-44,33,0,0,0.143674 -31519,7304:133,-43,33,0,0,0.170704 -31520,7304:132,-42,33,0,0,0.19512 -31521,7304:131,-41,33,0,0,0.207202 -31522,7304:130,-40,33,0,0,0.230128 -31523,7303:239,-39,33,0,0,0.233789 -31524,7303:238,-38,33,0,0,0.208844 -31525,7303:237,-37,33,0,0,0.215994 -31526,7303:236,-36,33,0,0,0.222022 -31527,7303:235,-35,33,0,0,0.231899 -31528,7303:134,-34,33,0,0,0.235672 -31529,7303:133,-33,33,0,0,0.229782 -31530,7303:132,-32,33,0,0,0.249487 -31531,7303:131,-31,33,0,0,0.249833 -31532,7303:130,-30,33,0,0,0.262458 -31533,7302:239,-29,33,0,0,0.300287 -31534,7302:238,-28,33,0,0,0.295517 -31535,7302:237,-27,33,0,0,0.288697 -31536,7302:236,-26,33,0,0,0.28836 -31537,7302:235,-25,33,0,0,0.280062 -31538,7302:134,-24,33,0,0,0.279462 -31539,7302:133,-23,33,0,0,0.292807 -31540,7302:132,-22,33,0,0,0.294491 -31541,7302:131,-21,33,0,0,0.285249 -31542,7302:130,-20,33,0,0,0.286193 -31543,7301:239,-19,33,0,0,0.288971 -31544,7301:238,-18,33,0,0,0.274749 -31545,7301:237,-17,33,0,0,0.274033 -31546,7301:236,-16,33,0,0,0.270917 -31547,7301:235,-15,33,0,0,0.271242 -31548,7301:134,-14,33,0,0,0.269195 -31549,7301:133,-13,33,0,0,0.270065 -31550,7301:132,-12,33,0,0,0.267662 -31551,7301:131,-11,33,0,0,0.263155 -31552,7301:130,-10,33,0,0,0.265112 -31553,7300:239,-9,33,0,0,0.265452 -31554,7300:238,-8,33,0,0,0.268407 -31555,7300:237,-7,33,0,0,0.268126 -31556,7300:236,-6,33,0,0,0.267602 -31557,7300:235,-5,33,0,0,0.274196 -31558,7300:134,-4,33,0,0,0.267883 -31559,1302:239,29,33,0,0,0.27179 -31560,1303:130,30,33,0,0,0.265032 -31561,1303:131,31,33,0,0,0.268206 -31562,1303:132,32,33,0,0,0.266114 -31563,1303:133,33,33,0,0,0.265973 -31564,1303:134,34,33,0,0,0.262398 -31565,1303:235,35,33,0,0,0.259466 -31566,1303:236,36,33,0,0,0.265673 -31567,1303:237,37,33,0,0,0.273951 -31568,1303:238,38,33,0,0,0.280228 -31569,1314:130,140,33,0,0,0.144332 -31570,1314:131,141,33,0,0,0.161498 -31571,1314:132,142,33,0,0,0.16637 -31572,1314:235,145,33,0,0,0.106771 -31573,1314:236,146,33,0,0,0.118843 -31574,1314:237,147,33,0,0,0.121526 -31575,1314:238,148,33,0,0,0.126016 -31576,1314:239,149,33,0,0,0.126822 -31577,1315:130,150,33,0,0,0.126367 -31578,1315:131,151,33,0,0,0.130963 -31579,1315:132,152,33,0,0,0.130671 -31580,1315:133,153,33,0,0,0.127792 -31581,1315:134,154,33,0,0,0.126651 -31582,1315:235,155,33,0,0,0.133569 -31583,1315:236,156,33,0,0,0.130496 -31584,1315:237,157,33,0,0,0.129555 -31585,1315:238,158,33,0,0,0.129972 -31586,1315:239,159,33,0,0,0.133533 -31587,1316:130,160,33,0,0,0.133212 -31588,1316:131,161,33,0,0,0.132443 -31589,1316:132,162,33,0,0,0.13487 -31590,1316:133,163,33,0,0,0.140716 -31591,1316:134,164,33,0,0,0.140282 -31592,1316:235,165,33,0,0,0.136836 -31593,1316:236,166,33,0,0,0.1364 -31594,1316:237,167,33,0,0,0.139787 -31595,1316:238,168,33,0,0,0.142942 -31596,1316:239,169,33,0,0,0.145146 -31597,1317:130,170,33,0,0,0.145695 -31598,1317:131,171,33,0,0,0.145695 -31599,1317:132,172,33,0,0,0.145964 -31600,1317:133,173,33,0,0,0.147857 -31601,1317:134,174,33,0,0,0.148025 -31602,1317:235,175,33,0,0,0.146631 -31603,1317:236,176,33,0,0,0.149469 -31604,1317:237,177,33,0,0,0.15319 -31605,1317:238,178,33,0,0,0.151333 -31606,1317:239,179,33,0,0,0.149026 -31607,1318:130,180,33,0,0,0.151281 -31608,7318:140,-180,34,0,0,0.147056 -31609,7317:249,-179,34,0,0,0.14658 -31610,7317:248,-178,34,0,0,0.146439 -31611,7317:247,-177,34,0,0,0.146992 -31612,7317:246,-176,34,0,0,0.147663 -31613,7317:245,-175,34,0,0,0.148856 -31614,7317:144,-174,34,0,0,0.150504 -31615,7317:143,-173,34,0,0,0.151584 -31616,7317:142,-172,34,0,0,0.15177 -31617,7317:141,-171,34,0,0,0.15363 -31618,7317:140,-170,34,0,0,0.156946 -31619,7316:249,-169,34,0,0,0.157245 -31620,7316:248,-168,34,0,0,0.157627 -31621,7316:247,-167,34,0,0,0.159546 -31622,7316:246,-166,34,0,0,0.161415 -31623,7316:245,-165,34,0,0,0.162712 -31624,7316:144,-164,34,0,0,0.163062 -31625,7316:143,-163,34,0,0,0.163119 -31626,7316:142,-162,34,0,0,0.164526 -31627,7316:141,-161,34,0,0,0.162139 -31628,7316:140,-160,34,0,0,0.16529 -31629,7315:249,-159,34,0,0,0.166827 -31630,7315:248,-158,34,0,0,0.165361 -31631,7315:247,-157,34,0,0,0.167514 -31632,7315:246,-156,34,0,0,0.17066 -31633,7315:245,-155,34,0,0,0.172765 -31634,7315:144,-154,34,0,0,0.178642 -31635,7315:143,-153,34,0,0,0.17976 -31636,7315:142,-152,34,0,0,0.184411 -31637,7315:141,-151,34,0,0,0.185962 -31638,7315:140,-150,34,0,0,0.188055 -31639,7314:249,-149,34,0,0,0.190309 -31640,7314:248,-148,34,0,0,0.190515 -31641,7314:247,-147,34,0,0,0.189156 -31642,7314:246,-146,34,0,0,0.191929 -31643,7314:245,-145,34,0,0,0.197193 -31644,7314:144,-144,34,0,0,0.198171 -31645,7314:143,-143,34,0,0,0.201705 -31646,7314:142,-142,34,0,0,0.203947 -31647,7314:141,-141,34,0,0,0.207811 -31648,7314:140,-140,34,0,0,0.209797 -31649,7313:249,-139,34,0,0,0.212896 -31650,7313:248,-138,34,0,0,0.212586 -31651,7313:247,-137,34,0,0,0.21195 -31652,7313:246,-136,34,0,0,0.214918 -31653,7313:245,-135,34,0,0,0.216099 -31654,7313:144,-134,34,0,0,0.222946 -31655,7313:143,-133,34,0,0,0.226274 -31656,7313:142,-132,34,0,0,0.226328 -31657,7313:141,-131,34,0,0,0.22991 -31658,7313:140,-130,34,0,0,0.229292 -31659,7312:249,-129,34,0,0,0.232852 -31660,7312:248,-128,34,0,0,0.229782 -31661,7312:247,-127,34,0,0,0.226202 -31662,7312:246,-126,34,0,0,0.226094 -31663,7312:245,-125,34,0,0,0.222661 -31664,7306:144,-64,34,0,0,0.136388 -31665,7306:143,-63,34,0,0,0.151017 -31666,7306:142,-62,34,0,0,0.138912 -31667,7306:141,-61,34,0,0,0.138483 -31668,7306:140,-60,34,0,0,0.135615 -31669,7305:249,-59,34,0,0,0.128251 -31670,7305:142,-52,34,0,0,0.104346 -31671,7305:141,-51,34,0,0,0.110159 -31672,7305:140,-50,34,0,0,0.112486 -31673,7304:249,-49,34,0,0,0.118274 -31674,7304:248,-48,34,0,0,0.129624 -31675,7304:247,-47,34,0,0,0.133402 -31676,7304:246,-46,34,0,0,0.132798 -31677,7304:245,-45,34,0,0,0.135627 -31678,7304:144,-44,34,0,0,0.139072 -31679,7304:143,-43,34,0,0,0.163934 -31680,7304:142,-42,34,0,0,0.187898 -31681,7304:141,-41,34,0,0,0.204031 -31682,7304:140,-40,34,0,0,0.202982 -31683,7303:249,-39,34,0,0,0.214813 -31684,7303:248,-38,34,0,0,0.194733 -31685,7303:247,-37,34,0,0,0.211574 -31686,7303:246,-36,34,0,0,0.217127 -31687,7303:245,-35,34,0,0,0.21269 -31688,7303:144,-34,34,0,0,0.221313 -31689,7303:143,-33,34,0,0,0.222217 -31690,7303:142,-32,34,0,0,0.242569 -31691,7303:141,-31,34,0,0,0.251396 -31692,7303:140,-30,34,0,0,0.252908 -31693,7302:249,-29,34,0,0,0.260276 -31694,7302:248,-28,34,0,0,0.294022 -31695,7302:247,-27,34,0,0,0.28243 -31696,7302:246,-26,34,0,0,0.287749 -31697,7302:245,-25,34,0,0,0.287223 -31698,7302:144,-24,34,0,0,0.285543 -31699,7302:143,-23,34,0,0,0.277357 -31700,7302:142,-22,34,0,0,0.283953 -31701,7302:141,-21,34,0,0,0.279586 -31702,7302:140,-20,34,0,0,0.276822 -31703,7301:249,-19,34,0,0,0.265712 -31704,7301:248,-18,34,0,0,0.271587 -31705,7301:247,-17,34,0,0,0.270349 -31706,7301:246,-16,34,0,0,0.267944 -31707,7301:245,-15,34,0,0,0.269074 -31708,7301:144,-14,34,0,0,0.261762 -31709,7301:143,-13,34,0,0,0.264012 -31710,7301:142,-12,34,0,0,0.258087 -31711,7301:141,-11,34,0,0,0.258441 -31712,7301:140,-10,34,0,0,0.260276 -31713,7300:249,-9,34,0,0,0.260534 -31714,7300:248,-8,34,0,0,0.263016 -31715,7300:247,-7,34,0,0,0.264492 -31716,7300:246,-6,34,0,0,0.257281 -31717,1302:249,29,34,0,0,0.262498 -31718,1303:140,30,34,0,0,0.269964 -31719,1303:141,31,34,0,0,0.276719 -31720,1303:245,35,34,0,0,0.266716 -31721,1303:246,36,34,0,0,0.270328 -31722,1314:141,141,34,0,0,0.110825 -31723,1314:142,142,34,0,0,0.123915 -31724,1314:143,143,34,0,0,0.130216 -31725,1314:144,144,34,0,0,0.105281 -31726,1314:245,145,34,0,0,0.103733 -31727,1314:246,146,34,0,0,0.100818 -31728,1314:247,147,34,0,0,0.112138 -31729,1314:248,148,34,0,0,0.120488 -31730,1314:249,149,34,0,0,0.122439 -31731,1315:140,150,34,0,0,0.126254 -31732,1315:141,151,34,0,0,0.127369 -31733,1315:142,152,34,0,0,0.124968 -31734,1315:143,153,34,0,0,0.122384 -31735,1315:144,154,34,0,0,0.123848 -31736,1315:245,155,34,0,0,0.119825 -31737,1315:246,156,34,0,0,0.11976 -31738,1315:247,157,34,0,0,0.13115 -31739,1315:248,158,34,0,0,0.133236 -31740,1315:249,159,34,0,0,0.131572 -31741,1316:140,160,34,0,0,0.130449 -31742,1316:141,161,34,0,0,0.130939 -31743,1316:142,162,34,0,0,0.133165 -31744,1316:143,163,34,0,0,0.141052 -31745,1316:144,164,34,0,0,0.140468 -31746,1316:245,165,34,0,0,0.132857 -31747,1316:246,166,34,0,0,0.133545 -31748,1316:247,167,34,0,0,0.137724 -31749,1316:248,168,34,0,0,0.135639 -31750,1316:249,169,34,0,0,0.141326 -31751,1317:140,170,34,0,0,0.142101 -31752,1317:141,171,34,0,0,0.141676 -31753,1317:142,172,34,0,0,0.141688 -31754,1317:143,173,34,0,0,0.141401 -31755,1317:144,174,34,0,0,0.140592 -31756,1317:245,175,34,0,0,0.140629 -31757,1317:246,176,34,0,0,0.141813 -31758,1317:247,177,34,0,0,0.143144 -31759,1317:248,178,34,0,0,0.144003 -31760,1317:249,179,34,0,0,0.146323 -31761,1318:140,180,34,0,0,0.147056 -31762,7318:350,-180,35,0,0,0.143699 -31763,7317:459,-179,35,0,0,0.143977 -31764,7317:458,-178,35,0,0,0.144879 -31765,7317:457,-177,35,0,0,0.145491 -31766,7317:456,-176,35,0,0,0.146221 -31767,7317:455,-175,35,0,0,0.147637 -31768,7317:354,-174,35,0,0,0.148012 -31769,7317:353,-173,35,0,0,0.148311 -31770,7317:352,-172,35,0,0,0.148687 -31771,7317:351,-171,35,0,0,0.150176 -31772,7317:350,-170,35,0,0,0.151664 -31773,7316:459,-169,35,0,0,0.152911 -31774,7316:458,-168,35,0,0,0.151981 -31775,7316:457,-167,35,0,0,0.151928 -31776,7316:456,-166,35,0,0,0.154407 -31777,7316:455,-165,35,0,0,0.157763 -31778,7316:354,-164,35,0,0,0.157927 -31779,7316:353,-163,35,0,0,0.155039 -31780,7316:352,-162,35,0,0,0.156091 -31781,7316:351,-161,35,0,0,0.156851 -31782,7316:350,-160,35,0,0,0.15868 -31783,7315:459,-159,35,0,0,0.158433 -31784,7315:458,-158,35,0,0,0.157518 -31785,7315:457,-157,35,0,0,0.157545 -31786,7315:456,-156,35,0,0,0.159505 -31787,7315:455,-155,35,0,0,0.161068 -31788,7315:354,-154,35,0,0,0.163161 -31789,7315:353,-153,35,0,0,0.168274 -31790,7315:352,-152,35,0,0,0.173161 -31791,7315:351,-151,35,0,0,0.177484 -31792,7315:350,-150,35,0,0,0.181784 -31793,7314:459,-149,35,0,0,0.183086 -31794,7314:458,-148,35,0,0,0.18418 -31795,7314:457,-147,35,0,0,0.180975 -31796,7314:456,-146,35,0,0,0.177589 -31797,7314:455,-145,35,0,0,0.187804 -31798,7314:354,-144,35,0,0,0.18944 -31799,7314:353,-143,35,0,0,0.188856 -31800,7314:352,-142,35,0,0,0.193993 -31801,7314:351,-141,35,0,0,0.195944 -31802,7314:350,-140,35,0,0,0.199645 -31803,7313:459,-139,35,0,0,0.200615 -31804,7313:458,-138,35,0,0,0.201903 -31805,7313:457,-137,35,0,0,0.203314 -31806,7313:456,-136,35,0,0,0.206377 -31807,7313:455,-135,35,0,0,0.2107 -31808,7313:354,-134,35,0,0,0.216621 -31809,7313:353,-133,35,0,0,0.217005 -31810,7313:352,-132,35,0,0,0.220941 -31811,7313:351,-131,35,0,0,0.221419 -31812,7313:350,-130,35,0,0,0.21851 -31813,7312:459,-129,35,0,0,0.220199 -31814,7312:458,-128,35,0,0,0.221632 -31815,7312:457,-127,35,0,0,0.223231 -31816,7312:456,-126,35,0,0,0.222963 -31817,7312:455,-125,35,0,0,0.218317 -31818,7306:458,-68,35,0,0,0.12809 -31819,7306:353,-63,35,0,0,0.122915 -31820,7306:352,-62,35,0,0,0.128504 -31821,7306:351,-61,35,0,0,0.121493 -31822,7306:350,-60,35,0,0,0.120281 -31823,7305:459,-59,35,0,0,0.126265 -31824,7305:458,-58,35,0,0,0.120902 -31825,7305:352,-52,35,0,0,0.103037 -31826,7305:351,-51,35,0,0,0.118617 -31827,7305:350,-50,35,0,0,0.11988 -31828,7304:459,-49,35,0,0,0.129254 -31829,7304:458,-48,35,0,0,0.134774 -31830,7304:457,-47,35,0,0,0.150124 -31831,7304:456,-46,35,0,0,0.154675 -31832,7304:455,-45,35,0,0,0.153537 -31833,7304:354,-44,35,0,0,0.169168 -31834,7304:353,-43,35,0,0,0.18304 -31835,7304:352,-42,35,0,0,0.19134 -31836,7304:351,-41,35,0,0,0.180884 -31837,7304:350,-40,35,0,0,0.208437 -31838,7303:459,-39,35,0,0,0.186569 -31839,7303:458,-38,35,0,0,0.195459 -31840,7303:457,-37,35,0,0,0.198825 -31841,7303:456,-36,35,0,0,0.202915 -31842,7303:455,-35,35,0,0,0.212999 -31843,7303:354,-34,35,0,0,0.211831 -31844,7303:353,-33,35,0,0,0.210581 -31845,7303:352,-32,35,0,0,0.210291 -31846,7303:351,-31,35,0,0,0.25353 -31847,7303:350,-30,35,0,0,0.273277 -31848,7302:459,-29,35,0,0,0.268367 -31849,7302:458,-28,35,0,0,0.284329 -31850,7302:457,-27,35,0,0,0.281182 -31851,7302:456,-26,35,0,0,0.274053 -31852,7302:455,-25,35,0,0,0.250219 -31853,7302:354,-24,35,0,0,0.258224 -31854,7302:353,-23,35,0,0,0.278367 -31855,7302:352,-22,35,0,0,0.280601 -31856,7302:351,-21,35,0,0,0.276801 -31857,7302:350,-20,35,0,0,0.270795 -31858,7301:459,-19,35,0,0,0.263773 -31859,7301:458,-18,35,0,0,0.269013 -31860,7301:457,-17,35,0,0,0.267944 -31861,7301:456,-16,35,0,0,0.266877 -31862,7301:455,-15,35,0,0,0.265212 -31863,7301:354,-14,35,0,0,0.259407 -31864,7301:353,-13,35,0,0,0.256516 -31865,7301:352,-12,35,0,0,0.250392 -31866,7301:351,-11,35,0,0,0.25101 -31867,7301:350,-10,35,0,0,0.25072 -31868,7300:459,-9,35,0,0,0.25157 -31869,7300:458,-8,35,0,0,0.254191 -31870,7300:457,-7,35,0,0,0.254191 -31871,7300:456,-6,35,0,0,0.256771 -31872,7300:455,-5,35,0,0,0.255811 -31873,7300:354,-4,35,0,0,0.253238 -31874,7300:353,-3,35,0,0,0.213258 -31875,1303:350,30,35,0,0,0.254074 -31876,1303:351,31,35,0,0,0.2585 -31877,1303:352,32,35,0,0,0.246822 -31878,1314:352,142,35,0,0,0.0930596 -31879,1314:353,143,35,0,0,0.105562 -31880,1314:455,145,35,0,0,0.094694 -31881,1314:456,146,35,0,0,0.0931986 -31882,1314:457,147,35,0,0,0.10741 -31883,1314:458,148,35,0,0,0.11493 -31884,1314:459,149,35,0,0,0.117408 -31885,1315:350,150,35,0,0,0.116644 -31886,1315:351,151,35,0,0,0.119652 -31887,1315:352,152,35,0,0,0.119836 -31888,1315:353,153,35,0,0,0.121263 -31889,1315:354,154,35,0,0,0.123459 -31890,1315:455,155,35,0,0,0.121285 -31891,1315:456,156,35,0,0,0.119349 -31892,1315:457,157,35,0,0,0.119446 -31893,1315:458,158,35,0,0,0.12508 -31894,1315:459,159,35,0,0,0.130344 -31895,1316:350,160,35,0,0,0.129833 -31896,1316:351,161,35,0,0,0.129566 -31897,1316:352,162,35,0,0,0.130753 -31898,1316:353,163,35,0,0,0.131396 -31899,1316:354,164,35,0,0,0.131819 -31900,1316:455,165,35,0,0,0.131866 -31901,1316:456,166,35,0,0,0.132821 -31902,1316:457,167,35,0,0,0.133795 -31903,1316:458,168,35,0,0,0.137371 -31904,1316:459,169,35,0,0,0.138556 -31905,1317:350,170,35,0,0,0.138863 -31906,1317:351,171,35,0,0,0.138617 -31907,1317:352,172,35,0,0,0.138986 -31908,1317:353,173,35,0,0,0.139849 -31909,1317:354,174,35,0,0,0.139898 -31910,1317:455,175,35,0,0,0.140084 -31911,1317:456,176,35,0,0,0.140518 -31912,1317:457,177,35,0,0,0.141189 -31913,1317:458,178,35,0,0,0.142251 -31914,1317:459,179,35,0,0,0.143106 -31915,1318:350,180,35,0,0,0.143699 -31916,7318:360,-180,36,0,0,0.143813 -31917,7317:469,-179,36,0,0,0.144332 -31918,7317:468,-178,36,0,0,0.145133 -31919,7317:467,-177,36,0,0,0.145746 -31920,7317:466,-176,36,0,0,0.146105 -31921,7317:465,-175,36,0,0,0.146349 -31922,7317:364,-174,36,0,0,0.146683 -31923,7317:363,-173,36,0,0,0.147133 -31924,7317:362,-172,36,0,0,0.147456 -31925,7317:361,-171,36,0,0,0.147288 -31926,7317:360,-170,36,0,0,0.147211 -31927,7316:469,-169,36,0,0,0.148064 -31928,7316:468,-168,36,0,0,0.148661 -31929,7316:467,-167,36,0,0,0.14926 -31930,7316:466,-166,36,0,0,0.150583 -31931,7316:465,-165,36,0,0,0.152233 -31932,7316:364,-164,36,0,0,0.152472 -31933,7316:363,-163,36,0,0,0.150609 -31934,7316:362,-162,36,0,0,0.15015 -31935,7316:361,-161,36,0,0,0.150189 -31936,7316:360,-160,36,0,0,0.151518 -31937,7315:469,-159,36,0,0,0.152392 -31938,7315:468,-158,36,0,0,0.152844 -31939,7315:467,-157,36,0,0,0.153684 -31940,7315:466,-156,36,0,0,0.155011 -31941,7315:465,-155,36,0,0,0.155443 -31942,7315:364,-154,36,0,0,0.155146 -31943,7315:363,-153,36,0,0,0.156905 -31944,7315:362,-152,36,0,0,0.16025 -31945,7315:361,-151,36,0,0,0.164653 -31946,7315:360,-150,36,0,0,0.167399 -31947,7314:469,-149,36,0,0,0.16803 -31948,7314:468,-148,36,0,0,0.169674 -31949,7314:467,-147,36,0,0,0.1719 -31950,7314:466,-146,36,0,0,0.170718 -31951,7314:465,-145,36,0,0,0.17133 -31952,7314:364,-144,36,0,0,0.178355 -31953,7314:363,-143,36,0,0,0.180519 -31954,7314:362,-142,36,0,0,0.182825 -31955,7314:361,-141,36,0,0,0.184504 -31956,7314:360,-140,36,0,0,0.187413 -31957,7313:469,-139,36,0,0,0.190784 -31958,7313:468,-138,36,0,0,0.195007 -31959,7313:467,-137,36,0,0,0.197389 -31961,7313:465,-135,36,0,0,0.206966 -31962,7313:364,-134,36,0,0,0.20978 -31963,7313:363,-133,36,0,0,0.216047 -31964,7313:362,-132,36,0,0,0.219213 -31965,7313:361,-131,36,0,0,0.21497 -31966,7313:360,-130,36,0,0,0.211265 -31967,7312:469,-129,36,0,0,0.213378 -31968,7312:468,-128,36,0,0,0.213879 -31969,7312:467,-127,36,0,0,0.216796 -31970,7312:466,-126,36,0,0,0.219072 -31971,7306:466,-66,36,0,0,0.123437 -31972,7306:465,-65,36,0,0,0.122186 -31973,7306:364,-64,36,0,0,0.123648 -31974,7306:363,-63,36,0,0,0.125001 -31975,7306:361,-61,36,0,0,0.120979 -31976,7306:360,-60,36,0,0,0.11494 -31977,7305:469,-59,36,0,0,0.112948 -31978,7305:468,-58,36,0,0,0.117952 -31979,7305:467,-57,36,0,0,0.117536 -31980,7305:465,-55,36,0,0,0.100753 -31981,7305:364,-54,36,0,0,0.09533 -31982,7305:363,-53,36,0,0,0.0979943 -31983,7305:362,-52,36,0,0,0.113733 -31984,7305:361,-51,36,0,0,0.117547 -31985,7305:360,-50,36,0,0,0.121867 -31986,7304:469,-49,36,0,0,0.13101 -31987,7304:468,-48,36,0,0,0.135675 -31988,7304:467,-47,36,0,0,0.14913 -31989,7304:466,-46,36,0,0,0.162419 -31990,7304:465,-45,36,0,0,0.163709 -31991,7304:364,-44,36,0,0,0.16161 -31992,7304:363,-43,36,0,0,0.162796 -31993,7304:362,-42,36,0,0,0.177829 -31994,7304:361,-41,36,0,0,0.169992 -31995,7304:360,-40,36,0,0,0.178295 -31996,7303:469,-39,36,0,0,0.180124 -31997,7303:468,-38,36,0,0,0.180762 -31998,7303:467,-37,36,0,0,0.194491 -31999,7303:466,-36,36,0,0,0.188055 -32000,7303:465,-35,36,0,0,0.182411 -32001,7303:364,-34,36,0,0,0.180762 -32002,7303:363,-33,36,0,0,0.181707 -32003,7303:362,-32,36,0,0,0.188825 -32004,7303:361,-31,36,0,0,0.214848 -32005,7303:360,-30,36,0,0,0.264892 -32006,7302:469,-29,36,0,0,0.23146 -32007,7302:468,-28,36,0,0,0.25587 -32008,7302:467,-27,36,0,0,0.266937 -32009,7302:466,-26,36,0,0,0.252209 -32010,7302:465,-25,36,0,0,0.233329 -32011,7302:364,-24,36,0,0,0.249718 -32012,7302:363,-23,36,0,0,0.23844 -32013,7302:362,-22,36,0,0,0.237676 -32014,7302:361,-21,36,0,0,0.243439 -32015,7302:360,-20,36,0,0,0.265613 -32016,7301:469,-19,36,0,0,0.260256 -32017,7301:468,-18,36,0,0,0.260534 -32018,7301:467,-17,36,0,0,0.262219 -32019,7301:466,-16,36,0,0,0.266254 -32020,7301:465,-15,36,0,0,0.262796 -32021,7301:364,-14,36,0,0,0.257556 -32022,7301:363,-13,36,0,0,0.253977 -32023,7301:362,-12,36,0,0,0.246422 -32024,7301:361,-11,36,0,0,0.242588 -32025,7301:360,-10,36,0,0,0.243211 -32026,7300:469,-9,36,0,0,0.244747 -32027,7300:468,-8,36,0,0,0.245697 -32028,7300:467,-7,36,0,0,0.236932 -32029,7300:364,-4,36,0,0,0.241513 -32030,7300:363,-3,36,0,0,0.246613 -32031,7300:362,-2,36,0,0,0.247052 -32032,7300:361,-1,36,0,0,0.2346 -32033,1314:363,143,36,0,0,0.0866592 -32034,1314:466,146,36,0,0,0.0921963 -32035,1314:467,147,36,0,0,0.102516 -32036,1314:468,148,36,0,0,0.11038 -32037,1314:469,149,36,0,0,0.113847 -32038,1315:360,150,36,0,0,0.116707 -32039,1315:361,151,36,0,0,0.116824 -32040,1315:362,152,36,0,0,0.119188 -32041,1315:363,153,36,0,0,0.121088 -32042,1315:364,154,36,0,0,0.123447 -32043,1315:465,155,36,0,0,0.122649 -32044,1315:466,156,36,0,0,0.119966 -32045,1315:468,158,36,0,0,0.120118 -32046,1315:469,159,36,0,0,0.118434 -32047,1316:360,160,36,0,0,0.130216 -32048,1316:361,161,36,0,0,0.129103 -32049,1316:362,162,36,0,0,0.128113 -32050,1316:363,163,36,0,0,0.131185 -32051,1316:364,164,36,0,0,0.134045 -32052,1316:465,165,36,0,0,0.134033 -32053,1316:466,166,36,0,0,0.134248 -32054,1316:467,167,36,0,0,0.136436 -32055,1316:468,168,36,0,0,0.135519 -32056,1316:469,169,36,0,0,0.135399 -32057,1317:360,170,36,0,0,0.135194 -32058,1317:361,171,36,0,0,0.135675 -32059,1317:362,172,36,0,0,0.137407 -32060,1317:363,173,36,0,0,0.13874 -32061,1317:364,174,36,0,0,0.139688 -32062,1317:465,175,36,0,0,0.139985 -32063,1317:466,176,36,0,0,0.140903 -32064,1317:467,177,36,0,0,0.1417 -32065,1317:468,178,36,0,0,0.142301 -32066,1317:469,179,36,0,0,0.143068 -32067,1318:360,180,36,0,0,0.143813 -32068,7318:370,-180,37,0,0,0.138067 -32069,7317:479,-179,37,0,0,0.140567 -32070,7317:478,-178,37,0,0,0.142026 -32071,7317:477,-177,37,0,0,0.142076 -32072,7317:476,-176,37,0,0,0.142051 -32073,7317:475,-175,37,0,0,0.143459 -32074,7317:374,-174,37,0,0,0.144015 -32075,7317:373,-173,37,0,0,0.145236 -32076,7317:372,-172,37,0,0,0.145363 -32077,7317:371,-171,37,0,0,0.145414 -32078,7317:370,-170,37,0,0,0.145657 -32079,7316:479,-169,37,0,0,0.146092 -32080,7316:478,-168,37,0,0,0.146554 -32081,7316:477,-167,37,0,0,0.147159 -32082,7316:476,-166,37,0,0,0.146811 -32083,7316:475,-165,37,0,0,0.146208 -32084,7316:374,-164,37,0,0,0.146451 -32085,7316:373,-163,37,0,0,0.14725 -32086,7316:372,-162,37,0,0,0.146992 -32087,7316:371,-161,37,0,0,0.14712 -32088,7316:370,-160,37,0,0,0.147624 -32089,7315:479,-159,37,0,0,0.14712 -32090,7315:478,-158,37,0,0,0.148 -32091,7315:477,-157,37,0,0,0.14896 -32092,7315:476,-156,37,0,0,0.149404 -32093,7315:475,-155,37,0,0,0.150084 -32094,7315:374,-154,37,0,0,0.152127 -32095,7315:373,-153,37,0,0,0.154917 -32096,7315:372,-152,37,0,0,0.15764 -32097,7315:371,-151,37,0,0,0.160845 -32098,7315:370,-150,37,0,0,0.162265 -32099,7314:479,-149,37,0,0,0.163638 -32100,7314:478,-148,37,0,0,0.16512 -32101,7314:477,-147,37,0,0,0.166385 -32102,7314:476,-146,37,0,0,0.167815 -32103,7314:475,-145,37,0,0,0.169312 -32104,7314:374,-144,37,0,0,0.17101 -32105,7314:373,-143,37,0,0,0.173559 -32106,7314:372,-142,37,0,0,0.176511 -32107,7314:371,-141,37,0,0,0.179472 -32108,7314:370,-140,37,0,0,0.183995 -32109,7313:479,-139,37,0,0,0.188322 -32110,7313:478,-138,37,0,0,0.19088 -32111,7313:477,-137,37,0,0,0.1938 -32112,7313:476,-136,37,0,0,0.199365 -32113,7313:475,-135,37,0,0,0.202666 -32114,7313:374,-134,37,0,0,0.205201 -32115,7313:373,-133,37,0,0,0.210684 -32116,7313:372,-132,37,0,0,0.209813 -32117,7313:371,-131,37,0,0,0.208675 -32118,7313:370,-130,37,0,0,0.210257 -32119,7312:479,-129,37,0,0,0.209422 -32120,7312:478,-128,37,0,0,0.211762 -32121,7312:477,-127,37,0,0,0.214865 -32122,7312:476,-126,37,0,0,0.213585 -32123,7305:477,-57,37,0,0,0.099402 -32124,7305:476,-56,37,0,0,0.101791 -32125,7305:374,-54,37,0,0,0.0913568 -32126,7305:373,-53,37,0,0,0.103599 -32127,7305:372,-52,37,0,0,0.111607 -32128,7305:371,-51,37,0,0,0.114387 -32129,7305:370,-50,37,0,0,0.117121 -32130,7304:479,-49,37,0,0,0.127357 -32131,7304:478,-48,37,0,0,0.140468 -32132,7304:477,-47,37,0,0,0.152871 -32133,7304:476,-46,37,0,0,0.156308 -32134,7304:475,-45,37,0,0,0.158817 -32135,7304:374,-44,37,0,0,0.155295 -32136,7304:373,-43,37,0,0,0.150767 -32137,7304:372,-42,37,0,0,0.15434 -32138,7304:371,-41,37,0,0,0.149091 -32139,7304:370,-40,37,0,0,0.153097 -32140,7303:479,-39,37,0,0,0.154582 -32141,7303:478,-38,37,0,0,0.163119 -32142,7303:477,-37,37,0,0,0.161623 -32143,7303:476,-36,37,0,0,0.154099 -32144,7303:475,-35,37,0,0,0.152459 -32145,7303:374,-34,37,0,0,0.158269 -32146,7303:373,-33,37,0,0,0.198155 -32147,7303:372,-32,37,0,0,0.195168 -32148,7303:371,-31,37,0,0,0.230147 -32149,7303:370,-30,37,0,0,0.244291 -32150,7302:479,-29,37,0,0,0.245412 -32151,7302:478,-28,37,0,0,0.213655 -32152,7302:477,-27,37,0,0,0.219266 -32153,7302:476,-26,37,0,0,0.218002 -32154,7302:475,-25,37,0,0,0.223641 -32155,7302:374,-24,37,0,0,0.217215 -32156,7302:373,-23,37,0,0,0.22759 -32157,7302:372,-22,37,0,0,0.24868 -32158,7302:371,-21,37,0,0,0.258579 -32159,7302:370,-20,37,0,0,0.258736 -32160,7301:479,-19,37,0,0,0.259328 -32161,7301:478,-18,37,0,0,0.25589 -32162,7301:477,-17,37,0,0,0.253626 -32163,7301:476,-16,37,0,0,0.256203 -32164,7301:475,-15,37,0,0,0.241928 -32165,7301:374,-14,37,0,0,0.249583 -32166,7301:373,-13,37,0,0,0.246689 -32167,7301:372,-12,37,0,0,0.238571 -32168,7300:479,-9,37,0,0,0.235708 -32169,7300:478,-8,37,0,0,0.235912 -32170,7300:477,-7,37,0,0,0.23606 -32171,7300:476,-6,37,0,0,0.222377 -32172,7300:475,-5,37,0,0,0.205285 -32173,1300:371,0,37,0,0,0.230985 -32174,1314:373,143,37,0,0,0.0859141 -32175,1314:476,146,37,0,0,0.0933116 -32176,1314:477,147,37,0,0,0.101575 -32177,1314:478,148,37,0,0,0.108657 -32178,1314:479,149,37,0,0,0.112845 -32179,1315:370,150,37,0,0,0.118102 -32180,1315:371,151,37,0,0,0.119134 -32181,1315:372,152,37,0,0,0.119134 -32182,1315:373,153,37,0,0,0.120379 -32183,1315:374,154,37,0,0,0.120913 -32184,1315:475,155,37,0,0,0.12076 -32185,1315:476,156,37,0,0,0.121647 -32186,1315:477,157,37,0,0,0.120815 -32187,1316:370,160,37,0,0,0.117121 -32188,1316:371,161,37,0,0,0.123514 -32189,1316:372,162,37,0,0,0.126753 -32190,1316:373,163,37,0,0,0.126186 -32191,1316:374,164,37,0,0,0.131173 -32192,1316:475,165,37,0,0,0.132892 -32193,1316:476,166,37,0,0,0.133414 -32194,1316:477,167,37,0,0,0.13262 -32195,1316:478,168,37,0,0,0.13156 -32196,1316:479,169,37,0,0,0.132738 -32197,1317:370,170,37,0,0,0.1342 -32198,1317:371,171,37,0,0,0.134631 -32199,1317:372,172,37,0,0,0.134475 -32200,1317:373,173,37,0,0,0.131419 -32201,1317:374,174,37,0,0,0.131185 -32202,1317:475,175,37,0,0,0.133545 -32203,1317:476,176,37,0,0,0.136194 -32204,1317:477,177,37,0,0,0.136933 -32205,1317:478,178,37,0,0,0.136122 -32206,1317:479,179,37,0,0,0.138274 -32207,1318:370,180,37,0,0,0.138067 -32208,7318:380,-180,38,0,0,0.135808 -32209,7317:489,-179,38,0,0,0.137712 -32210,7317:488,-178,38,0,0,0.140109 -32211,7317:487,-177,38,0,0,0.140592 -32212,7317:486,-176,38,0,0,0.141239 -32213,7317:485,-175,38,0,0,0.141851 -32214,7317:384,-174,38,0,0,0.142264 -32215,7317:383,-173,38,0,0,0.14254 -32216,7317:382,-172,38,0,0,0.144955 -32217,7317:381,-171,38,0,0,0.14535 -32218,7317:380,-170,38,0,0,0.14493 -32219,7316:489,-169,38,0,0,0.14507 -32220,7316:488,-168,38,0,0,0.145223 -32221,7316:487,-167,38,0,0,0.145951 -32222,7316:486,-166,38,0,0,0.146349 -32223,7316:485,-165,38,0,0,0.145849 -32224,7316:384,-164,38,0,0,0.145299 -32225,7316:383,-163,38,0,0,0.144993 -32226,7316:382,-162,38,0,0,0.144726 -32227,7316:381,-161,38,0,0,0.144358 -32228,7316:380,-160,38,0,0,0.143927 -32229,7315:489,-159,38,0,0,0.143649 -32230,7315:488,-158,38,0,0,0.143737 -32231,7315:487,-157,38,0,0,0.144612 -32232,7315:486,-156,38,0,0,0.146131 -32233,7315:485,-155,38,0,0,0.147831 -32234,7315:384,-154,38,0,0,0.151399 -32235,7315:383,-153,38,0,0,0.152698 -32236,7315:382,-152,38,0,0,0.154582 -32237,7315:381,-151,38,0,0,0.157463 -32238,7315:380,-150,38,0,0,0.15923 -32239,7314:489,-149,38,0,0,0.160693 -32240,7314:488,-148,38,0,0,0.163638 -32241,7314:487,-147,38,0,0,0.16385 -32242,7314:486,-146,38,0,0,0.164837 -32243,7314:485,-145,38,0,0,0.165574 -32244,7314:384,-144,38,0,0,0.167413 -32245,7314:383,-143,38,0,0,0.174075 -32246,7314:382,-142,38,0,0,0.174741 -32247,7314:381,-141,38,0,0,0.178566 -32248,7314:380,-140,38,0,0,0.185263 -32249,7313:489,-139,38,0,0,0.186273 -32250,7313:488,-138,38,0,0,0.187632 -32251,7313:487,-137,38,0,0,0.192599 -32252,7313:486,-136,38,0,0,0.196009 -32253,7313:485,-135,38,0,0,0.19809 -32254,7313:384,-134,38,0,0,0.203664 -32255,7313:383,-133,38,0,0,0.20798 -32256,7313:382,-132,38,0,0,0.206393 -32257,7313:381,-131,38,0,0,0.206477 -32258,7313:380,-130,38,0,0,0.208946 -32259,7312:489,-129,38,0,0,0.209558 -32260,7312:488,-128,38,0,0,0.202052 -32261,7312:485,-125,38,0,0,0.19099 -32262,7305:384,-54,38,0,0,0.0893389 -32263,7305:383,-53,38,0,0,0.101331 -32264,7305:382,-52,38,0,0,0.111974 -32265,7305:381,-51,38,0,0,0.110511 -32266,7305:380,-50,38,0,0,0.120075 -32267,7304:489,-49,38,0,0,0.135062 -32268,7304:488,-48,38,0,0,0.148987 -32269,7304:487,-47,38,0,0,0.154608 -32270,7304:486,-46,38,0,0,0.151241 -32271,7304:485,-45,38,0,0,0.148427 -32272,7304:384,-44,38,0,0,0.145542 -32273,7304:383,-43,38,0,0,0.149417 -32274,7304:382,-42,38,0,0,0.147133 -32275,7304:381,-41,38,0,0,0.144726 -32276,7304:380,-40,38,0,0,0.148259 -32277,7303:489,-39,38,0,0,0.145542 -32278,7303:488,-38,38,0,0,0.147779 -32279,7303:487,-37,38,0,0,0.146722 -32280,7303:486,-36,38,0,0,0.157327 -32281,7303:485,-35,38,0,0,0.158351 -32282,7303:384,-34,38,0,0,0.158872 -32283,7303:383,-33,38,0,0,0.164046 -32284,7303:382,-32,38,0,0,0.190182 -32285,7303:381,-31,38,0,0,0.204799 -32286,7303:380,-30,38,0,0,0.215229 -32287,7302:489,-29,38,0,0,0.223249 -32288,7302:488,-28,38,0,0,0.216255 -32289,7302:487,-27,38,0,0,0.212312 -32290,7302:486,-26,38,0,0,0.2049 -32291,7302:485,-25,38,0,0,0.221224 -32292,7302:384,-24,38,0,0,0.211077 -32293,7302:383,-23,38,0,0,0.222572 -32294,7302:382,-22,38,0,0,0.238198 -32295,7302:381,-21,38,0,0,0.236283 -32296,7302:380,-20,38,0,0,0.232962 -32297,7301:489,-19,38,0,0,0.230165 -32298,7301:488,-18,38,0,0,0.233385 -32299,7301:487,-17,38,0,0,0.24395 -32300,7301:486,-16,38,0,0,0.25499 -32301,7301:485,-15,38,0,0,0.241269 -32302,7301:384,-14,38,0,0,0.241721 -32303,7301:383,-13,38,0,0,0.237658 -32304,7301:382,-12,38,0,0,0.236042 -32305,7301:381,-11,38,0,0,0.228603 -32306,7300:487,-7,38,0,0,0.235043 -32307,7300:486,-6,38,0,0,0.206293 -32308,1300:381,0,38,0,0,0.222341 -32309,1300:381,1,38,0,0,0.225466 -32310,1314:383,143,38,0,0,0.0804923 -32311,1314:486,146,38,0,0,0.0912546 -32312,1314:487,147,38,0,0,0.103656 -32313,1314:488,148,38,0,0,0.108071 -32314,1314:489,149,38,0,0,0.111058 -32315,1315:380,150,38,0,0,0.113702 -32316,1315:381,151,38,0,0,0.117079 -32317,1315:382,152,38,0,0,0.119793 -32318,1315:383,153,38,0,0,0.120968 -32319,1315:384,154,38,0,0,0.121746 -32320,1315:485,155,38,0,0,0.122605 -32321,1315:486,156,38,0,0,0.123614 -32322,1315:487,157,38,0,0,0.12135 -32323,1316:380,160,38,0,0,0.116782 -32324,1316:381,161,38,0,0,0.114596 -32325,1316:382,162,38,0,0,0.119511 -32326,1316:383,163,38,0,0,0.127483 -32327,1316:384,164,38,0,0,0.128228 -32328,1316:485,165,38,0,0,0.128274 -32329,1316:486,166,38,0,0,0.129242 -32330,1316:487,167,38,0,0,0.1301 -32331,1316:488,168,38,0,0,0.13108 -32332,1316:489,169,38,0,0,0.132963 -32333,1317:380,170,38,0,0,0.133284 -32334,1317:381,171,38,0,0,0.129566 -32335,1317:382,172,38,0,0,0.126685 -32336,1317:383,173,38,0,0,0.126708 -32337,1317:384,174,38,0,0,0.127221 -32338,1317:485,175,38,0,0,0.127278 -32339,1317:486,176,38,0,0,0.129011 -32340,1317:487,177,38,0,0,0.13101 -32341,1317:488,178,38,0,0,0.132928 -32342,1317:489,179,38,0,0,0.134535 -32343,1318:380,180,38,0,0,0.135808 -32344,7318:390,-180,39,0,0,0.135242 -32345,7317:499,-179,39,0,0,0.134355 -32346,7317:498,-178,39,0,0,0.13101 -32347,7317:497,-177,39,0,0,0.130787 -32348,7317:496,-176,39,0,0,0.13122 -32349,7317:495,-175,39,0,0,0.131889 -32350,7317:394,-174,39,0,0,0.133997 -32351,7317:393,-173,39,0,0,0.136861 -32352,7317:392,-172,39,0,0,0.140158 -32353,7317:391,-171,39,0,0,0.141863 -32354,7317:390,-170,39,0,0,0.14356 -32355,7316:499,-169,39,0,0,0.144739 -32356,7316:497,-167,39,0,0,0.145032 -32357,7316:496,-166,39,0,0,0.145146 -32358,7316:495,-165,39,0,0,0.145197 -32359,7316:394,-164,39,0,0,0.144981 -32360,7316:393,-163,39,0,0,0.144815 -32361,7316:392,-162,39,0,0,0.144943 -32362,7316:391,-161,39,0,0,0.145006 -32363,7316:390,-160,39,0,0,0.143421 -32364,7315:499,-159,39,0,0,0.141963 -32365,7315:498,-158,39,0,0,0.143118 -32366,7315:497,-157,39,0,0,0.145338 -32367,7315:496,-156,39,0,0,0.146439 -32368,7315:495,-155,39,0,0,0.148765 -32369,7315:394,-154,39,0,0,0.149495 -32370,7315:393,-153,39,0,0,0.15078 -32371,7315:392,-152,39,0,0,0.152286 -32372,7315:391,-151,39,0,0,0.155349 -32373,7315:390,-150,39,0,0,0.157354 -32374,7314:499,-149,39,0,0,0.15764 -32375,7314:498,-148,39,0,0,0.157831 -32376,7314:497,-147,39,0,0,0.158913 -32377,7314:496,-146,39,0,0,0.162279 -32378,7314:495,-145,39,0,0,0.164894 -32379,7314:394,-144,39,0,0,0.166784 -32380,7314:393,-143,39,0,0,0.168404 -32381,7314:392,-142,39,0,0,0.169732 -32382,7314:391,-141,39,0,0,0.17209 -32383,7314:390,-140,39,0,0,0.177289 -32384,7313:499,-139,39,0,0,0.177499 -32385,7313:498,-138,39,0,0,0.181249 -32386,7313:497,-137,39,0,0,0.183333 -32387,7313:496,-136,39,0,0,0.185154 -32388,7313:495,-135,39,0,0,0.19034 -32389,7313:394,-134,39,0,0,0.199202 -32390,7313:393,-133,39,0,0,0.199973 -32391,7313:392,-132,39,0,0,0.200598 -32392,7313:391,-131,39,0,0,0.203631 -32393,7313:390,-130,39,0,0,0.207692 -32394,7305:394,-54,39,0,0,0.0876154 -32395,7305:393,-53,39,0,0,0.100307 -32396,7305:392,-52,39,0,0,0.106428 -32397,7305:391,-51,39,0,0,0.11036 -32398,7305:390,-50,39,0,0,0.134379 -32399,7304:499,-49,39,0,0,0.141152 -32400,7304:498,-48,39,0,0,0.148038 -32401,7304:497,-47,39,0,0,0.14558 -32402,7304:496,-46,39,0,0,0.139293 -32403,7304:495,-45,39,0,0,0.142565 -32404,7304:394,-44,39,0,0,0.147133 -32405,7304:393,-43,39,0,0,0.142314 -32406,7304:392,-42,39,0,0,0.139257 -32407,7304:391,-41,39,0,0,0.139874 -32408,7304:390,-40,39,0,0,0.143018 -32409,7303:499,-39,39,0,0,0.143383 -32410,7303:498,-38,39,0,0,0.142703 -32411,7303:497,-37,39,0,0,0.15222 -32412,7303:496,-36,39,0,0,0.158201 -32413,7303:495,-35,39,0,0,0.160402 -32414,7303:394,-34,39,0,0,0.164103 -32415,7303:393,-33,39,0,0,0.166855 -32416,7303:392,-32,39,0,0,0.180033 -32417,7303:391,-31,39,0,0,0.194862 -32418,7303:390,-30,39,0,0,0.210649 -32419,7302:499,-29,39,0,0,0.20182 -32420,7302:498,-28,39,0,0,0.209014 -32421,7302:497,-27,39,0,0,0.206629 -32422,7302:496,-26,39,0,0,0.202218 -32423,7302:495,-25,39,0,0,0.20073 -32424,7302:394,-24,39,0,0,0.202931 -32425,7302:393,-23,39,0,0,0.216639 -32426,7302:392,-22,39,0,0,0.231825 -32427,7302:391,-21,39,0,0,0.246498 -32428,7302:390,-20,39,0,0,0.247702 -32429,7301:499,-19,39,0,0,0.244689 -32430,7301:498,-18,39,0,0,0.241194 -32431,7301:497,-17,39,0,0,0.243552 -32432,7301:496,-16,39,0,0,0.252947 -32433,7301:495,-15,39,0,0,0.251107 -32434,7301:394,-14,39,0,0,0.247702 -32435,7301:393,-13,39,0,0,0.242211 -32436,7301:392,-12,39,0,0,0.234065 -32437,7300:497,-7,39,0,0,0.232045 -32438,1300:391,0,39,0,0,0.211574 -32439,1300:391,1,39,0,0,0.226346 -32440,1300:392,2,39,0,0,0.214208 -32441,1314:496,146,39,0,0,0.0884236 -32442,1314:497,147,39,0,0,0.10598 -32443,1314:498,148,39,0,0,0.108627 -32444,1314:499,149,39,0,0,0.109877 -32445,1315:390,150,39,0,0,0.114982 -32446,1315:391,151,39,0,0,0.118983 -32447,1315:392,152,39,0,0,0.121077 -32448,1315:393,153,39,0,0,0.122164 -32449,1315:394,154,39,0,0,0.12245 -32450,1315:495,155,39,0,0,0.122682 -32451,1315:496,156,39,0,0,0.12367 -32452,1315:497,157,39,0,0,0.119144 -32453,1316:391,161,39,0,0,0.112097 -32454,1316:392,162,39,0,0,0.112117 -32455,1316:393,163,39,0,0,0.117313 -32456,1316:394,164,39,0,0,0.124497 -32457,1316:495,165,39,0,0,0.123425 -32458,1316:496,166,39,0,0,0.122837 -32459,1316:497,167,39,0,0,0.127872 -32460,1316:498,168,39,0,0,0.128607 -32461,1316:499,169,39,0,0,0.131021 -32462,1317:390,170,39,0,0,0.128538 -32463,1317:391,171,39,0,0,0.127975 -32464,1317:392,172,39,0,0,0.128102 -32465,1317:393,173,39,0,0,0.125994 -32466,1317:394,174,39,0,0,0.128699 -32467,1317:495,175,39,0,0,0.130274 -32468,1317:496,176,39,0,0,0.131185 -32469,1317:497,177,39,0,0,0.131443 -32470,1317:498,178,39,0,0,0.131478 -32471,1317:499,179,39,0,0,0.13481 -32472,1318:390,180,39,0,0,0.135242 -32473,7418:100,-180,40,0,0,0.13183 -32474,7417:209,-179,40,0,0,0.13216 -32475,7417:208,-178,40,0,0,0.130834 -32476,7417:207,-177,40,0,0,0.130298 -32477,7417:206,-176,40,0,0,0.130472 -32478,7417:205,-175,40,0,0,0.130904 -32479,7417:104,-174,40,0,0,0.133557 -32480,7417:103,-173,40,0,0,0.138617 -32481,7417:102,-172,40,0,0,0.138115 -32482,7417:101,-171,40,0,0,0.140158 -32483,7417:100,-170,40,0,0,0.141863 -32484,7416:209,-169,40,0,0,0.144332 -32485,7416:208,-168,40,0,0,0.145798 -32486,7416:207,-167,40,0,0,0.145236 -32487,7416:206,-166,40,0,0,0.136569 -32488,7416:205,-165,40,0,0,0.140779 -32489,7416:104,-164,40,0,0,0.138704 -32490,7416:103,-163,40,0,0,0.14694 -32491,7416:102,-162,40,0,0,0.146876 -32492,7416:101,-161,40,0,0,0.145849 -32493,7416:100,-160,40,0,0,0.14399 -32494,7415:209,-159,40,0,0,0.143055 -32495,7415:208,-158,40,0,0,0.142051 -32496,7415:207,-157,40,0,0,0.142917 -32497,7415:206,-156,40,0,0,0.143775 -32498,7415:205,-155,40,0,0,0.143825 -32499,7415:104,-154,40,0,0,0.1459 -32500,7415:103,-153,40,0,0,0.144993 -32501,7415:102,-152,40,0,0,0.145236 -32502,7415:101,-151,40,0,0,0.149888 -32503,7415:100,-150,40,0,0,0.153217 -32504,7414:209,-149,40,0,0,0.154166 -32505,7414:208,-148,40,0,0,0.153871 -32506,7414:207,-147,40,0,0,0.153591 -32507,7414:206,-146,40,0,0,0.161206 -32508,7414:205,-145,40,0,0,0.163062 -32509,7414:104,-144,40,0,0,0.163441 -32510,7414:103,-143,40,0,0,0.167356 -32511,7414:102,-142,40,0,0,0.173117 -32512,7414:101,-141,40,0,0,0.175245 -32513,7414:100,-140,40,0,0,0.177334 -32514,7413:209,-139,40,0,0,0.17801 -32515,7413:208,-138,40,0,0,0.177634 -32516,7413:207,-137,40,0,0,0.179367 -32517,7413:206,-136,40,0,0,0.182657 -32518,7413:205,-135,40,0,0,0.192168 -32519,7413:104,-134,40,0,0,0.190356 -32520,7413:103,-133,40,0,0,0.193543 -32521,7413:102,-132,40,0,0,0.197666 -32522,7413:101,-131,40,0,0,0.199382 -32523,7413:100,-130,40,0,0,0.204498 -32524,7412:209,-129,40,0,0,0.194443 -32525,7407:209,-79,40,0,0,0.0898333 -32526,7407:208,-78,40,0,0,0.089699 -32527,7405:205,-55,40,0,0,0.0845682 -32528,7405:104,-54,40,0,0,0.0862941 -32529,7405:103,-53,40,0,0,0.0922133 -32530,7405:102,-52,40,0,0,0.0977042 -32531,7405:101,-51,40,0,0,0.121537 -32532,7405:100,-50,40,0,0,0.136751 -32533,7404:209,-49,40,0,0,0.136025 -32534,7404:208,-48,40,0,0,0.135723 -32535,7404:207,-47,40,0,0,0.136691 -32536,7404:206,-46,40,0,0,0.13576 -32537,7404:205,-45,40,0,0,0.133962 -32538,7404:104,-44,40,0,0,0.135182 -32539,7404:103,-43,40,0,0,0.134798 -32540,7404:102,-42,40,0,0,0.137749 -32541,7404:101,-41,40,0,0,0.137481 -32542,7404:100,-40,40,0,0,0.138888 -32543,7403:209,-39,40,0,0,0.141338 -32544,7403:208,-38,40,0,0,0.148389 -32545,7403:207,-37,40,0,0,0.151505 -32546,7403:206,-36,40,0,0,0.153217 -32547,7403:205,-35,40,0,0,0.157408 -32548,7403:104,-34,40,0,0,0.157599 -32549,7403:103,-33,40,0,0,0.160209 -32550,7403:102,-32,40,0,0,0.173942 -32551,7403:101,-31,40,0,0,0.181692 -32552,7403:100,-30,40,0,0,0.177394 -32553,7402:209,-29,40,0,0,0.175394 -32554,7402:208,-28,40,0,0,0.181082 -32555,7402:207,-27,40,0,0,0.201622 -32556,7402:206,-26,40,0,0,0.202152 -32557,7402:205,-25,40,0,0,0.211968 -32558,7402:104,-24,40,0,0,0.214831 -32559,7402:103,-23,40,0,0,0.207946 -32560,7402:102,-22,40,0,0,0.208675 -32561,7402:101,-21,40,0,0,0.227138 -32562,7402:100,-20,40,0,0,0.243552 -32563,7401:209,-19,40,0,0,0.248661 -32564,7401:208,-18,40,0,0,0.250412 -32565,7401:207,-17,40,0,0,0.250836 -32566,7401:206,-16,40,0,0,0.251899 -32567,7401:205,-15,40,0,0,0.24776 -32568,7401:104,-14,40,0,0,0.24665 -32569,7401:103,-13,40,0,0,0.247702 -32570,7401:102,-12,40,0,0,0.24157 -32571,7401:101,-11,40,0,0,0.228821 -32572,7400:207,-7,40,0,0,0.230147 -32573,7400:206,-6,40,0,0,0.201903 -32574,7400:102,-2,40,0,0,0.20881 -32575,7400:101,-1,40,0,0,0.207861 -32576,1400:101,0,40,0,0,0.205251 -32577,1400:101,1,40,0,0,0.208048 -32578,1400:102,2,40,0,0,0.217722 -32579,1400:103,3,40,0,0,0.19953 -32580,1414:104,144,40,0,0,0.0792464 -32581,1414:205,145,40,0,0,0.0773852 -32582,1414:206,146,40,0,0,0.0884982 -32583,1414:207,147,40,0,0,0.109135 -32584,1414:208,148,40,0,0,0.111699 -32585,1414:209,149,40,0,0,0.113702 -32586,1415:100,150,40,0,0,0.116877 -32587,1415:101,151,40,0,0,0.119058 -32588,1415:102,152,40,0,0,0.119414 -32589,1415:103,153,40,0,0,0.118402 -32590,1415:104,154,40,0,0,0.118832 -32591,1415:205,155,40,0,0,0.120695 -32592,1415:206,156,40,0,0,0.121669 -32593,1415:207,157,40,0,0,0.10563 -32594,1416:104,164,40,0,0,0.111984 -32595,1416:205,165,40,0,0,0.121822 -32596,1416:206,166,40,0,0,0.122771 -32597,1416:208,168,40,0,0,0.124016 -32598,1416:209,169,40,0,0,0.127198 -32599,1417:100,170,40,0,0,0.128262 -32600,1417:101,171,40,0,0,0.12605 -32601,1417:102,172,40,0,0,0.127723 -32602,1417:103,173,40,0,0,0.127312 -32603,1417:104,174,40,0,0,0.127884 -32604,1417:205,175,40,0,0,0.127712 -32605,1417:206,176,40,0,0,0.12809 -32606,1417:207,177,40,0,0,0.128757 -32607,1417:208,178,40,0,0,0.12817 -32608,1417:209,179,40,0,0,0.127998 -32609,1418:100,180,40,0,0,0.13183 -32610,7418:110,-180,41,0,0,0.125406 -32611,7417:219,-179,41,0,0,0.126992 -32612,7417:218,-178,41,0,0,0.128354 -32613,7417:217,-177,41,0,0,0.129068 -32614,7417:216,-176,41,0,0,0.129404 -32615,7417:215,-175,41,0,0,0.129949 -32616,7417:114,-174,41,0,0,0.134439 -32617,7417:113,-173,41,0,0,0.139146 -32618,7417:112,-172,41,0,0,0.143081 -32619,7417:111,-171,41,0,0,0.144472 -32620,7417:110,-170,41,0,0,0.145236 -32621,7416:219,-169,41,0,0,0.142289 -32622,7416:218,-168,41,0,0,0.13847 -32623,7416:217,-167,41,0,0,0.144332 -32624,7416:216,-166,41,0,0,0.140965 -32625,7416:215,-165,41,0,0,0.131936 -32626,7416:113,-163,41,0,0,0.130846 -32627,7416:112,-162,41,0,0,0.1364 -32628,7416:111,-161,41,0,0,0.132573 -32629,7416:110,-160,41,0,0,0.147469 -32630,7415:219,-159,41,0,0,0.150124 -32631,7415:218,-158,41,0,0,0.146953 -32632,7415:217,-157,41,0,0,0.143598 -32633,7415:216,-156,41,0,0,0.141551 -32634,7415:215,-155,41,0,0,0.141688 -32635,7415:114,-154,41,0,0,0.142904 -32636,7415:113,-153,41,0,0,0.141963 -32637,7415:112,-152,41,0,0,0.142164 -32638,7415:111,-151,41,0,0,0.142728 -32639,7415:110,-150,41,0,0,0.145478 -32640,7414:219,-149,41,0,0,0.146863 -32641,7414:218,-148,41,0,0,0.148922 -32642,7414:217,-147,41,0,0,0.15327 -32643,7414:216,-146,41,0,0,0.155092 -32644,7414:215,-145,41,0,0,0.158365 -32645,7414:114,-144,41,0,0,0.159257 -32646,7414:113,-143,41,0,0,0.160748 -32647,7414:112,-142,41,0,0,0.170413 -32648,7414:111,-141,41,0,0,0.174637 -32649,7414:110,-140,41,0,0,0.179185 -32650,7413:219,-139,41,0,0,0.180884 -32651,7413:218,-138,41,0,0,0.182917 -32652,7413:217,-137,41,0,0,0.182856 -32653,7413:216,-136,41,0,0,0.185713 -32654,7413:215,-135,41,0,0,0.192391 -32655,7413:114,-134,41,0,0,0.194057 -32656,7413:113,-133,41,0,0,0.196868 -32657,7413:112,-132,41,0,0,0.198514 -32658,7413:111,-131,41,0,0,0.200928 -32659,7413:110,-130,41,0,0,0.199038 -32660,7408:110,-80,41,0,0,0.0875087 -32661,7407:219,-79,41,0,0,0.0877551 -32662,7407:218,-78,41,0,0,0.0903556 -32663,7405:215,-55,41,0,0,0.0824918 -32664,7405:114,-54,41,0,0,0.0900941 -32665,7405:113,-53,41,0,0,0.0920416 -32666,7405:112,-52,41,0,0,0.107498 -32667,7405:111,-51,41,0,0,0.130893 -32668,7405:110,-50,41,0,0,0.137164 -32669,7404:219,-49,41,0,0,0.136327 -32670,7404:218,-48,41,0,0,0.135543 -32671,7404:217,-47,41,0,0,0.134798 -32672,7404:216,-46,41,0,0,0.131443 -32673,7404:215,-45,41,0,0,0.131255 -32674,7404:114,-44,41,0,0,0.132845 -32675,7404:113,-43,41,0,0,0.132384 -32676,7404:112,-42,41,0,0,0.13294 -32677,7404:111,-41,41,0,0,0.134966 -32678,7404:110,-40,41,0,0,0.134081 -32679,7403:219,-39,41,0,0,0.1364 -32680,7403:218,-38,41,0,0,0.140233 -32681,7403:217,-37,41,0,0,0.143699 -32682,7403:216,-36,41,0,0,0.152313 -32683,7403:215,-35,41,0,0,0.152273 -32684,7403:114,-34,41,0,0,0.150714 -32685,7403:113,-33,41,0,0,0.150833 -32686,7403:112,-32,41,0,0,0.154743 -32687,7403:111,-31,41,0,0,0.172031 -32688,7403:110,-30,41,0,0,0.174119 -32689,7402:219,-29,41,0,0,0.172735 -32690,7402:218,-28,41,0,0,0.190245 -32691,7402:217,-27,41,0,0,0.191801 -32692,7402:216,-26,41,0,0,0.19695 -32693,7402:215,-25,41,0,0,0.215768 -32694,7402:114,-24,41,0,0,0.21923 -32695,7402:113,-23,41,0,0,0.216499 -32696,7402:112,-22,41,0,0,0.216796 -32697,7402:111,-21,41,0,0,0.243647 -32698,7402:110,-20,41,0,0,0.239543 -32699,7401:219,-19,41,0,0,0.238235 -32700,7401:218,-18,41,0,0,0.234471 -32701,7401:217,-17,41,0,0,0.231405 -32702,7401:216,-16,41,0,0,0.238963 -32703,7401:215,-15,41,0,0,0.234673 -32704,7401:114,-14,41,0,0,0.248623 -32705,7401:113,-13,41,0,0,0.247281 -32706,7401:112,-12,41,0,0,0.244139 -32707,7401:111,-11,41,0,0,0.234766 -32708,7401:110,-10,41,0,0,0.225681 -32709,7400:219,-9,41,0,0,0.220128 -32710,7400:218,-8,41,0,0,0.228024 -32711,7400:217,-7,41,0,0,0.215525 -32712,7400:113,-3,41,0,0,0.216116 -32713,7400:112,-2,41,0,0,0.217599 -32714,7400:111,-1,41,0,0,0.198433 -32715,1400:111,0,41,0,0,0.19142 -32716,1400:111,1,41,0,0,0.204198 -32717,1400:112,2,41,0,0,0.215143 -32718,1400:113,3,41,0,0,0.217809 -32719,1400:114,4,41,0,0,0.215873 -32720,1400:215,5,41,0,0,0.207354 -32721,1400:216,6,41,0,0,0.176302 -32722,1414:110,140,41,0,0,0.0791266 -32723,1414:111,141,41,0,0,0.077451 -32724,1414:112,142,41,0,0,0.0787084 -32725,1414:113,143,41,0,0,0.0829908 -32726,1414:114,144,41,0,0,0.0857045 -32727,1414:215,145,41,0,0,0.0862049 -32728,1414:216,146,41,0,0,0.0867814 -32729,1414:217,147,41,0,0,0.107794 -32730,1414:218,148,41,0,0,0.11177 -32731,1414:219,149,41,0,0,0.111709 -32732,1415:110,150,41,0,0,0.113899 -32733,1415:111,151,41,0,0,0.11264 -32734,1415:112,152,41,0,0,0.109166 -32735,1415:113,153,41,0,0,0.109526 -32736,1415:114,154,41,0,0,0.111018 -32737,1415:215,155,41,0,0,0.116338 -32738,1415:216,156,41,0,0,0.119717 -32739,1415:217,157,41,0,0,0.103628 -32740,1416:114,164,41,0,0,0.107607 -32741,1416:215,165,41,0,0,0.112445 -32742,1416:216,166,41,0,0,0.115758 -32743,1416:217,167,41,0,0,0.1176 -32744,1416:218,168,41,0,0,0.119382 -32745,1416:219,169,41,0,0,0.124206 -32746,1417:110,170,41,0,0,0.126197 -32747,1417:111,171,41,0,0,0.118509 -32748,1417:112,172,41,0,0,0.124317 -32749,1417:113,173,41,0,0,0.125666 -32750,1417:114,174,41,0,0,0.125711 -32751,1417:215,175,41,0,0,0.126469 -32752,1417:216,176,41,0,0,0.123781 -32753,1417:217,177,41,0,0,0.123392 -32754,1417:218,178,41,0,0,0.123037 -32755,1417:219,179,41,0,0,0.123004 -32756,1418:110,180,41,0,0,0.125406 -32757,7418:120,-180,42,0,0,0.126367 -32758,7417:229,-179,42,0,0,0.126039 -32759,7417:228,-178,42,0,0,0.127895 -32760,7417:227,-177,42,0,0,0.129358 -32761,7417:226,-176,42,0,0,0.130566 -32762,7417:225,-175,42,0,0,0.135026 -32763,7417:124,-174,42,0,0,0.132077 -32764,7417:123,-173,42,0,0,0.131443 -32765,7417:122,-172,42,0,0,0.13017 -32766,7417:121,-171,42,0,0,0.127004 -32767,7417:120,-170,42,0,0,0.12893 -32768,7416:229,-169,42,0,0,0.131995 -32769,7416:228,-168,42,0,0,0.136994 -32770,7416:227,-167,42,0,0,0.141501 -32771,7416:226,-166,42,0,0,0.140629 -32772,7416:225,-165,42,0,0,0.134894 -32773,7416:124,-164,42,0,0,0.124094 -32774,7416:121,-161,42,0,0,0.142691 -32775,7416:120,-160,42,0,0,0.147534 -32776,7415:229,-159,42,0,0,0.148298 -32777,7415:228,-158,42,0,0,0.151717 -32778,7415:227,-157,42,0,0,0.150084 -32779,7415:226,-156,42,0,0,0.148233 -32780,7415:225,-155,42,0,0,0.144332 -32781,7415:124,-154,42,0,0,0.142339 -32782,7415:123,-153,42,0,0,0.141002 -32783,7415:122,-152,42,0,0,0.141538 -32784,7415:121,-151,42,0,0,0.143232 -32785,7415:120,-150,42,0,0,0.148272 -32786,7414:229,-149,42,0,0,0.150649 -32787,7414:228,-148,42,0,0,0.152021 -32788,7414:227,-147,42,0,0,0.154394 -32789,7414:226,-146,42,0,0,0.155821 -32790,7414:225,-145,42,0,0,0.163624 -32791,7414:124,-144,42,0,0,0.165645 -32792,7414:123,-143,42,0,0,0.164188 -32793,7414:122,-142,42,0,0,0.163035 -32794,7414:121,-141,42,0,0,0.169847 -32795,7414:120,-140,42,0,0,0.173957 -32796,7413:229,-139,42,0,0,0.173942 -32797,7413:228,-138,42,0,0,0.182687 -32798,7413:227,-137,42,0,0,0.186133 -32799,7413:226,-136,42,0,0,0.186304 -32800,7413:225,-135,42,0,0,0.191961 -32801,7413:123,-133,42,0,0,0.186351 -32802,7413:122,-132,42,0,0,0.197601 -32803,7413:121,-131,42,0,0,0.195088 -32804,7407:229,-79,42,0,0,0.088548 -32805,7407:228,-78,42,0,0,0.0882746 -32806,7405:228,-58,42,0,0,0.0771947 -32807,7405:227,-57,42,0,0,0.0806066 -32808,7405:226,-56,42,0,0,0.0841079 -32809,7405:225,-55,42,0,0,0.0859464 -32810,7405:124,-54,42,0,0,0.122837 -32811,7405:123,-53,42,0,0,0.139343 -32812,7405:122,-52,42,0,0,0.134858 -32813,7405:121,-51,42,0,0,0.133985 -32814,7405:120,-50,42,0,0,0.130356 -32815,7404:229,-49,42,0,0,0.133962 -32816,7404:228,-48,42,0,0,0.134188 -32817,7404:227,-47,42,0,0,0.132113 -32818,7404:226,-46,42,0,0,0.13003 -32819,7404:225,-45,42,0,0,0.129531 -32820,7404:124,-44,42,0,0,0.129138 -32821,7404:123,-43,42,0,0,0.129682 -32822,7404:122,-42,42,0,0,0.131091 -32823,7404:121,-41,42,0,0,0.131419 -32824,7404:120,-40,42,0,0,0.131689 -32825,7403:229,-39,42,0,0,0.133023 -32826,7403:228,-38,42,0,0,0.138888 -32827,7403:227,-37,42,0,0,0.139923 -32828,7403:226,-36,42,0,0,0.142967 -32829,7403:225,-35,42,0,0,0.145836 -32830,7403:124,-34,42,0,0,0.151149 -32831,7403:123,-33,42,0,0,0.15343 -32832,7403:122,-32,42,0,0,0.156606 -32833,7403:121,-31,42,0,0,0.157777 -32834,7403:120,-30,42,0,0,0.161054 -32835,7402:229,-29,42,0,0,0.164837 -32836,7402:228,-28,42,0,0,0.166242 -32837,7402:227,-27,42,0,0,0.170413 -32838,7402:226,-26,42,0,0,0.174193 -32839,7402:225,-25,42,0,0,0.180109 -32840,7402:124,-24,42,0,0,0.192088 -32841,7402:123,-23,42,0,0,0.197845 -32842,7402:122,-22,42,0,0,0.220041 -32843,7402:121,-21,42,0,0,0.240386 -32844,7402:120,-20,42,0,0,0.239356 -32845,7401:229,-19,42,0,0,0.231752 -32846,7401:228,-18,42,0,0,0.233329 -32847,7401:227,-17,42,0,0,0.222644 -32848,7401:226,-16,42,0,0,0.219406 -32849,7401:225,-15,42,0,0,0.231441 -32850,7401:124,-14,42,0,0,0.236932 -32851,7401:123,-13,42,0,0,0.244386 -32852,7401:122,-12,42,0,0,0.244633 -32853,7401:121,-11,42,0,0,0.237007 -32854,7401:120,-10,42,0,0,0.229746 -32855,7400:229,-9,42,0,0,0.213034 -32856,7400:228,-8,42,0,0,0.198923 -32857,7400:225,-5,42,0,0,0.20636 -32858,7400:124,-4,42,0,0,0.212157 -32859,7400:123,-3,42,0,0,0.212775 -32860,7400:122,-2,42,0,0,0.212312 -32861,7400:121,-1,42,0,0,0.212054 -32862,1400:121,0,42,0,0,0.204498 -32863,1400:121,1,42,0,0,0.198449 -32864,1400:122,2,42,0,0,0.205402 -32865,1400:123,3,42,0,0,0.21556 -32866,1400:124,4,42,0,0,0.209609 -32867,1400:225,5,42,0,0,0.181173 -32868,1400:227,7,42,0,0,0.16147 -32869,1400:228,8,42,0,0,0.162559 -32870,1400:229,9,42,0,0,0.168692 -32871,1401:121,11,42,0,0,0.157504 -32872,1413:229,139,42,0,0,0.0779224 -32873,1414:120,140,42,0,0,0.0787755 -32874,1414:122,142,42,0,0,0.0942107 -32875,1414:123,143,42,0,0,0.0880847 -32876,1414:124,144,42,0,0,0.0833277 -32877,1414:225,145,42,0,0,0.0848548 -32878,1414:226,146,42,0,0,0.091093 -32879,1414:227,147,42,0,0,0.0992458 -32880,1414:228,148,42,0,0,0.0993652 -32881,1414:229,149,42,0,0,0.101885 -32882,1415:120,150,42,0,0,0.105455 -32883,1415:121,151,42,0,0,0.105039 -32884,1415:122,152,42,0,0,0.103628 -32885,1415:123,153,42,0,0,0.105999 -32886,1415:124,154,42,0,0,0.108498 -32887,1415:225,155,42,0,0,0.112774 -32888,1415:226,156,42,0,0,0.116856 -32889,1415:227,157,42,0,0,0.0982854 -32890,1416:225,165,42,0,0,0.111018 -32891,1416:226,166,42,0,0,0.114804 -32892,1416:227,167,42,0,0,0.119706 -32893,1416:228,168,42,0,0,0.120738 -32894,1416:229,169,42,0,0,0.124698 -32895,1417:120,170,42,0,0,0.125982 -32896,1417:121,171,42,0,0,0.119144 -32897,1417:122,172,42,0,0,0.117739 -32898,1417:123,173,42,0,0,0.120968 -32899,1417:124,174,42,0,0,0.123425 -32900,1417:225,175,42,0,0,0.123547 -32901,1417:226,176,42,0,0,0.121955 -32902,1417:227,177,42,0,0,0.121515 -32903,1417:228,178,42,0,0,0.121537 -32904,1417:229,179,42,0,0,0.123537 -32905,1418:120,180,42,0,0,0.126367 -32906,7418:130,-180,43,0,0,0.126288 -32907,7417:239,-179,43,0,0,0.125508 -32908,7417:238,-178,43,0,0,0.124161 -32909,7417:237,-177,43,0,0,0.128584 -32910,7417:236,-176,43,0,0,0.131045 -32911,7417:235,-175,43,0,0,0.129011 -32912,7417:134,-174,43,0,0,0.123893 -32913,7417:133,-173,43,0,0,0.123781 -32914,7417:132,-172,43,0,0,0.118886 -32915,7417:131,-171,43,0,0,0.117568 -32916,7417:130,-170,43,0,0,0.123114 -32917,7416:239,-169,43,0,0,0.124911 -32918,7416:238,-168,43,0,0,0.126277 -32919,7416:237,-167,43,0,0,0.125575 -32920,7416:236,-166,43,0,0,0.124631 -32921,7416:235,-165,43,0,0,0.122406 -32922,7416:134,-164,43,0,0,0.122506 -32923,7416:133,-163,43,0,0,0.123481 -32924,7416:132,-162,43,0,0,0.1104 -32925,7416:130,-160,43,0,0,0.139171 -32926,7415:239,-159,43,0,0,0.148311 -32927,7415:238,-158,43,0,0,0.146041 -32928,7415:237,-157,43,0,0,0.145504 -32929,7415:236,-156,43,0,0,0.154434 -32930,7415:235,-155,43,0,0,0.148012 -32931,7415:134,-154,43,0,0,0.143219 -32932,7415:133,-153,43,0,0,0.141763 -32933,7415:132,-152,43,0,0,0.143409 -32934,7415:131,-151,43,0,0,0.144345 -32935,7415:130,-150,43,0,0,0.149299 -32936,7414:239,-149,43,0,0,0.150032 -32937,7414:238,-148,43,0,0,0.152871 -32938,7414:237,-147,43,0,0,0.157218 -32939,7414:236,-146,43,0,0,0.160236 -32940,7414:235,-145,43,0,0,0.163441 -32941,7414:134,-144,43,0,0,0.163441 -32942,7414:133,-143,43,0,0,0.165318 -32943,7414:132,-142,43,0,0,0.166713 -32944,7414:131,-141,43,0,0,0.167356 -32945,7414:130,-140,43,0,0,0.168836 -32946,7413:239,-139,43,0,0,0.171783 -32947,7413:238,-138,43,0,0,0.177019 -32948,7413:237,-137,43,0,0,0.18026 -32949,7413:236,-136,43,0,0,0.190657 -32950,7413:133,-133,43,0,0,0.175691 -32951,7408:130,-80,43,0,0,0.0830691 -32952,7407:239,-79,43,0,0,0.0910247 -32953,7407:238,-78,43,0,0,0.088606 -32954,7405:238,-58,43,0,0,0.0789844 -32955,7405:237,-57,43,0,0,0.0836028 -32956,7405:236,-56,43,0,0,0.0907786 -32957,7405:235,-55,43,0,0,0.118767 -32958,7405:134,-54,43,0,0,0.13938 -32959,7405:133,-53,43,0,0,0.131901 -32960,7405:132,-52,43,0,0,0.129323 -32961,7405:131,-51,43,0,0,0.128412 -32962,7405:130,-50,43,0,0,0.129381 -32963,7404:239,-49,43,0,0,0.129624 -32964,7404:238,-48,43,0,0,0.129531 -32965,7404:237,-47,43,0,0,0.130077 -32966,7404:236,-46,43,0,0,0.128942 -32967,7404:235,-45,43,0,0,0.128746 -32968,7404:134,-44,43,0,0,0.128964 -32969,7404:133,-43,43,0,0,0.13024 -32970,7404:132,-42,43,0,0,0.132125 -32971,7404:131,-41,43,0,0,0.132384 -32972,7404:130,-40,43,0,0,0.129798 -32973,7403:239,-39,43,0,0,0.130822 -32974,7403:238,-38,43,0,0,0.133818 -32975,7403:237,-37,43,0,0,0.135977 -32976,7403:236,-36,43,0,0,0.136424 -32977,7403:235,-35,43,0,0,0.138924 -32978,7403:134,-34,43,0,0,0.150596 -32979,7403:133,-33,43,0,0,0.163133 -32980,7403:132,-32,43,0,0,0.179215 -32981,7403:131,-31,43,0,0,0.179004 -32982,7403:130,-30,43,0,0,0.169804 -32983,7402:239,-29,43,0,0,0.16727 -32984,7402:238,-28,43,0,0,0.16546 -32985,7402:237,-27,43,0,0,0.168116 -32986,7402:236,-26,43,0,0,0.176123 -32987,7402:235,-25,43,0,0,0.179972 -32988,7402:134,-24,43,0,0,0.185993 -32989,7402:133,-23,43,0,0,0.194282 -32990,7402:132,-22,43,0,0,0.195831 -32991,7402:131,-21,43,0,0,0.236246 -32992,7402:130,-20,43,0,0,0.234729 -32993,7401:239,-19,43,0,0,0.231698 -32994,7401:238,-18,43,0,0,0.230949 -32995,7401:237,-17,43,0,0,0.225861 -32996,7401:236,-16,43,0,0,0.216691 -32997,7401:235,-15,43,0,0,0.218335 -32998,7401:134,-14,43,0,0,0.237806 -32999,7401:133,-13,43,0,0,0.238384 -33000,7401:132,-12,43,0,0,0.239187 -33001,7401:131,-11,43,0,0,0.23135 -33002,7401:130,-10,43,0,0,0.217302 -33003,7400:239,-9,43,0,0,0.217162 -33004,7400:134,-4,43,0,0,0.211077 -33005,7400:133,-3,43,0,0,0.211008 -33006,7400:132,-2,43,0,0,0.212724 -33007,7400:131,-1,43,0,0,0.210257 -33008,1400:131,0,43,0,0,0.207624 -33009,1400:131,1,43,0,0,0.205771 -33010,1400:132,2,43,0,0,0.205251 -33011,1400:133,3,43,0,0,0.213327 -33012,1400:134,4,43,0,0,0.200598 -33013,1400:239,9,43,0,0,0.166499 -33014,1401:130,10,43,0,0,0.187397 -33015,1401:131,11,43,0,0,0.181967 -33016,1401:132,12,43,0,0,0.198416 -33017,1401:133,13,43,0,0,0.174178 -33018,1414:131,141,43,0,0,0.0888552 -33019,1414:132,142,43,0,0,0.0926444 -33020,1414:133,143,43,0,0,0.0894308 -33021,1414:134,144,43,0,0,0.084576 -33022,1414:235,145,43,0,0,0.0848468 -33023,1414:236,146,43,0,0,0.0882829 -33024,1414:237,147,43,0,0,0.0928864 -33025,1414:238,148,43,0,0,0.0954452 -33026,1414:239,149,43,0,0,0.0972973 -33027,1415:130,150,43,0,0,0.0971171 -33028,1415:131,151,43,0,0,0.098934 -33029,1415:132,152,43,0,0,0.101791 -33030,1415:133,153,43,0,0,0.104039 -33031,1415:134,154,43,0,0,0.104125 -33032,1415:235,155,43,0,0,0.105805 -33033,1415:236,156,43,0,0,0.108896 -33034,1415:237,157,43,0,0,0.107203 -33035,1415:238,158,43,0,0,0.0952857 -33036,1416:235,165,43,0,0,0.107282 -33037,1416:236,166,43,0,0,0.111058 -33038,1416:237,167,43,0,0,0.111322 -33039,1416:238,168,43,0,0,0.116549 -33040,1416:239,169,43,0,0,0.118145 -33041,1417:130,170,43,0,0,0.118188 -33042,1417:131,171,43,0,0,0.117952 -33043,1417:132,172,43,0,0,0.11989 -33044,1417:133,173,43,0,0,0.119825 -33045,1417:134,174,43,0,0,0.119977 -33046,1417:235,175,43,0,0,0.12063 -33047,1417:236,176,43,0,0,0.121822 -33048,1417:237,177,43,0,0,0.123937 -33049,1417:238,178,43,0,0,0.124945 -33050,1417:239,179,43,0,0,0.125733 -33051,1418:130,180,43,0,0,0.126288 -33052,7418:140,-180,44,0,0,0.124485 -33053,7417:249,-179,44,0,0,0.125159 -33054,7417:248,-178,44,0,0,0.123259 -33055,7417:247,-177,44,0,0,0.122142 -33056,7417:246,-176,44,0,0,0.12307 -33057,7417:245,-175,44,0,0,0.119479 -33058,7417:144,-174,44,0,0,0.118209 -33059,7417:143,-173,44,0,0,0.115663 -33060,7417:142,-172,44,0,0,0.110957 -33061,7417:141,-171,44,0,0,0.113485 -33062,7417:140,-170,44,0,0,0.113495 -33063,7416:249,-169,44,0,0,0.11224 -33064,7416:248,-168,44,0,0,0.112722 -33065,7416:247,-167,44,0,0,0.11224 -33066,7416:246,-166,44,0,0,0.112743 -33067,7416:245,-165,44,0,0,0.11822 -33068,7416:144,-164,44,0,0,0.122738 -33069,7416:143,-163,44,0,0,0.124507 -33070,7416:142,-162,44,0,0,0.120412 -33071,7416:141,-161,44,0,0,0.100418 -33072,7415:248,-158,44,0,0,0.149979 -33073,7415:246,-156,44,0,0,0.142452 -33074,7415:245,-155,44,0,0,0.153591 -33075,7415:144,-154,44,0,0,0.155187 -33076,7415:143,-153,44,0,0,0.146297 -33077,7415:142,-152,44,0,0,0.147211 -33078,7415:141,-151,44,0,0,0.148492 -33079,7415:140,-150,44,0,0,0.149039 -33080,7414:249,-149,44,0,0,0.149849 -33081,7414:248,-148,44,0,0,0.149888 -33082,7414:247,-147,44,0,0,0.151849 -33083,7414:246,-146,44,0,0,0.157422 -33084,7414:245,-145,44,0,0,0.155861 -33085,7414:144,-144,44,0,0,0.155524 -33086,7414:143,-143,44,0,0,0.158941 -33087,7414:142,-142,44,0,0,0.162559 -33088,7414:141,-141,44,0,0,0.165163 -33089,7414:140,-140,44,0,0,0.170704 -33090,7413:249,-139,44,0,0,0.175305 -33091,7413:248,-138,44,0,0,0.175037 -33092,7413:247,-137,44,0,0,0.184319 -33093,7413:246,-136,44,0,0,0.18646 -33094,7413:245,-135,44,0,0,0.178883 -33095,7413:144,-134,44,0,0,0.175334 -33096,7413:143,-133,44,0,0,0.168937 -33097,7408:140,-80,44,0,0,0.0827333 -33098,7407:249,-79,44,0,0,0.0891717 -33099,7407:248,-78,44,0,0,0.0889469 -33100,7405:249,-59,44,0,0,0.0768076 -33101,7405:248,-58,44,0,0,0.0803935 -33102,7405:247,-57,44,0,0,0.0808581 -33103,7405:246,-56,44,0,0,0.108359 -33104,7405:245,-55,44,0,0,0.140791 -33105,7405:144,-54,44,0,0,0.137724 -33106,7405:143,-53,44,0,0,0.131326 -33107,7405:142,-52,44,0,0,0.127632 -33108,7405:141,-51,44,0,0,0.126095 -33109,7405:140,-50,44,0,0,0.126583 -33110,7404:249,-49,44,0,0,0.126243 -33111,7404:248,-48,44,0,0,0.127552 -33112,7404:247,-47,44,0,0,0.129694 -33113,7404:246,-46,44,0,0,0.131948 -33114,7404:245,-45,44,0,0,0.136848 -33115,7404:144,-44,44,0,0,0.144713 -33116,7404:143,-43,44,0,0,0.149469 -33117,7404:142,-42,44,0,0,0.14756 -33118,7404:141,-41,44,0,0,0.141214 -33119,7404:140,-40,44,0,0,0.137067 -33120,7403:249,-39,44,0,0,0.133129 -33121,7403:248,-38,44,0,0,0.131783 -33122,7403:247,-37,44,0,0,0.133866 -33123,7403:246,-36,44,0,0,0.137322 -33124,7403:245,-35,44,0,0,0.140195 -33125,7403:144,-34,44,0,0,0.145619 -33126,7403:143,-33,44,0,0,0.15136 -33127,7403:142,-32,44,0,0,0.176795 -33128,7403:141,-31,44,0,0,0.185248 -33129,7403:140,-30,44,0,0,0.184149 -33130,7402:249,-29,44,0,0,0.177139 -33131,7402:248,-28,44,0,0,0.17532 -33132,7402:247,-27,44,0,0,0.169225 -33133,7402:246,-26,44,0,0,0.167858 -33134,7402:245,-25,44,0,0,0.171812 -33135,7402:144,-24,44,0,0,0.17409 -33136,7402:143,-23,44,0,0,0.182994 -33137,7402:142,-22,44,0,0,0.184736 -33138,7402:141,-21,44,0,0,0.214018 -33139,7402:140,-20,44,0,0,0.232045 -33140,7401:249,-19,44,0,0,0.233605 -33141,7401:248,-18,44,0,0,0.228349 -33142,7401:247,-17,44,0,0,0.225214 -33143,7401:246,-16,44,0,0,0.220305 -33144,7401:245,-15,44,0,0,0.225071 -33145,7401:144,-14,44,0,0,0.232577 -33146,7401:143,-13,44,0,0,0.234526 -33147,7401:142,-12,44,0,0,0.23366 -33148,7401:141,-11,44,0,0,0.230311 -33149,7401:140,-10,44,0,0,0.219512 -33150,7400:248,-8,44,0,0,0.213465 -33151,7400:246,-6,44,0,0,0.207236 -33152,7400:245,-5,44,0,0,0.21118 -33153,7400:144,-4,44,0,0,0.210206 -33154,7400:143,-3,44,0,0,0.208759 -33155,7400:142,-2,44,0,0,0.204498 -33156,7400:141,-1,44,0,0,0.204615 -33157,1400:141,0,44,0,0,0.200796 -33158,1400:141,1,44,0,0,0.201225 -33159,1400:142,2,44,0,0,0.205486 -33160,1400:143,3,44,0,0,0.205436 -33161,1400:144,4,44,0,0,0.194926 -33162,1400:247,7,44,0,0,0.165404 -33163,1400:248,8,44,0,0,0.156701 -33164,1401:141,11,44,0,0,0.193608 -33165,1401:142,12,44,0,0,0.19778 -33166,1401:143,13,44,0,0,0.188825 -33167,1401:144,14,44,0,0,0.188762 -33168,1401:245,15,44,0,0,0.194797 -33169,1414:143,143,44,0,0,0.09169 -33170,1414:144,144,44,0,0,0.0911779 -33171,1414:245,145,44,0,0,0.0860191 -33172,1414:246,146,44,0,0,0.0868873 -33173,1414:247,147,44,0,0,0.0888968 -33174,1414:248,148,44,0,0,0.0928431 -33175,1414:249,149,44,0,0,0.094158 -33176,1415:140,150,44,0,0,0.09533 -33177,1415:141,151,44,0,0,0.0960324 -33178,1415:142,152,44,0,0,0.0974147 -33179,1415:143,153,44,0,0,0.100409 -33180,1415:144,154,44,0,0,0.101051 -33181,1415:245,155,44,0,0,0.100679 -33182,1415:246,156,44,0,0,0.0989155 -33183,1415:247,157,44,0,0,0.0963718 -33184,1415:248,158,44,0,0,0.0947908 -33185,1415:249,159,44,0,0,0.0926096 -33186,1416:140,160,44,0,0,0.090516 -33187,1416:141,161,44,0,0,0.0869851 -33188,1416:245,165,44,0,0,0.0813097 -33189,1416:246,166,44,0,0,0.103742 -33190,1416:247,167,44,0,0,0.108359 -33191,1416:248,168,44,0,0,0.107646 -33192,1416:249,169,44,0,0,0.112671 -33193,1417:140,170,44,0,0,0.115055 -33194,1417:141,171,44,0,0,0.110734 -33195,1417:142,172,44,0,0,0.111505 -33196,1417:143,173,44,0,0,0.117153 -33197,1417:144,174,44,0,0,0.117068 -33198,1417:245,175,44,0,0,0.117675 -33199,1417:246,176,44,0,0,0.114211 -33200,1417:247,177,44,0,0,0.119522 -33201,1417:248,178,44,0,0,0.119782 -33202,1417:249,179,44,0,0,0.119306 -33203,1418:140,180,44,0,0,0.124485 -33204,7418:350,-180,45,0,0,0.121044 -33205,7417:459,-179,45,0,0,0.116686 -33206,7417:458,-178,45,0,0,0.114075 -33207,7417:457,-177,45,0,0,0.107262 -33208,7417:456,-176,45,0,0,0.108508 -33209,7417:455,-175,45,0,0,0.107834 -33210,7417:354,-174,45,0,0,0.106653 -33211,7417:353,-173,45,0,0,0.106253 -33212,7417:352,-172,45,0,0,0.104904 -33213,7417:351,-171,45,0,0,0.103351 -33214,7417:350,-170,45,0,0,0.101622 -33215,7416:459,-169,45,0,0,0.0975957 -33216,7416:458,-168,45,0,0,0.0962108 -33217,7416:457,-167,45,0,0,0.0945267 -33218,7416:456,-166,45,0,0,0.0960144 -33219,7416:455,-165,45,0,0,0.0877963 -33220,7416:353,-163,45,0,0,0.085407 -33221,7416:352,-162,45,0,0,0.0841316 -33222,7416:351,-161,45,0,0,0.0887887 -33223,7415:457,-157,45,0,0,0.152937 -33224,7415:455,-155,45,0,0,0.14581 -33225,7415:354,-154,45,0,0,0.155429 -33226,7415:353,-153,45,0,0,0.159684 -33227,7415:352,-152,45,0,0,0.150741 -33228,7415:351,-151,45,0,0,0.152512 -33229,7415:350,-150,45,0,0,0.151928 -33230,7414:459,-149,45,0,0,0.151466 -33231,7414:458,-148,45,0,0,0.152101 -33232,7414:457,-147,45,0,0,0.153524 -33233,7414:456,-146,45,0,0,0.153724 -33234,7414:455,-145,45,0,0,0.156389 -33235,7414:354,-144,45,0,0,0.160319 -33236,7414:353,-143,45,0,0,0.167442 -33237,7414:352,-142,45,0,0,0.167987 -33238,7414:351,-141,45,0,0,0.165815 -33239,7414:350,-140,45,0,0,0.166998 -33240,7413:459,-139,45,0,0,0.169877 -33241,7413:458,-138,45,0,0,0.174415 -33242,7413:457,-137,45,0,0,0.183133 -33243,7413:354,-134,45,0,0,0.164385 -33244,7408:350,-80,45,0,0,0.082414 -33245,7407:459,-79,45,0,0,0.0902541 -33246,7407:458,-78,45,0,0,0.0910247 -33247,7407:457,-77,45,0,0,0.0928431 -33248,7407:456,-76,45,0,0,0.0917843 -33249,7407:455,-75,45,0,0,0.0914936 -33250,7405:458,-58,45,0,0,0.0811487 -33251,7405:457,-57,45,0,0,0.0861239 -33252,7405:456,-56,45,0,0,0.138042 -33253,7405:455,-55,45,0,0,0.144104 -33254,7405:354,-54,45,0,0,0.133035 -33255,7405:353,-53,45,0,0,0.128297 -33256,7405:352,-52,45,0,0,0.124878 -33257,7405:351,-51,45,0,0,0.125598 -33258,7405:350,-50,45,0,0,0.127323 -33259,7404:459,-49,45,0,0,0.129949 -33260,7404:458,-48,45,0,0,0.13101 -33261,7404:457,-47,45,0,0,0.134631 -33262,7404:456,-46,45,0,0,0.139836 -33263,7404:455,-45,45,0,0,0.145555 -33264,7404:354,-44,45,0,0,0.161081 -33265,7404:353,-43,45,0,0,0.157927 -33266,7404:352,-42,45,0,0,0.152206 -33267,7404:351,-41,45,0,0,0.159477 -33268,7404:350,-40,45,0,0,0.156634 -33269,7403:459,-39,45,0,0,0.138458 -33270,7403:458,-38,45,0,0,0.136315 -33271,7403:457,-37,45,0,0,0.136775 -33272,7403:456,-36,45,0,0,0.13646 -33273,7403:455,-35,45,0,0,0.138348 -33274,7403:354,-34,45,0,0,0.141813 -33275,7403:353,-33,45,0,0,0.154206 -33276,7403:352,-32,45,0,0,0.164554 -33277,7403:351,-31,45,0,0,0.18096 -33278,7403:350,-30,45,0,0,0.191022 -33279,7402:459,-29,45,0,0,0.193591 -33280,7402:458,-28,45,0,0,0.183194 -33281,7402:457,-27,45,0,0,0.176332 -33282,7402:456,-26,45,0,0,0.173456 -33283,7402:455,-25,45,0,0,0.172163 -33284,7402:354,-24,45,0,0,0.169601 -33285,7402:353,-23,45,0,0,0.179654 -33286,7402:352,-22,45,0,0,0.186616 -33287,7402:351,-21,45,0,0,0.18131 -33288,7402:350,-20,45,0,0,0.192455 -33289,7401:459,-19,45,0,0,0.207658 -33290,7401:458,-18,45,0,0,0.21118 -33291,7401:457,-17,45,0,0,0.221348 -33292,7401:456,-16,45,0,0,0.227843 -33293,7401:455,-15,45,0,0,0.217634 -33294,7401:354,-14,45,0,0,0.215247 -33295,7401:353,-13,45,0,0,0.226382 -33296,7401:352,-12,45,0,0,0.229201 -33297,7401:351,-11,45,0,0,0.228911 -33298,7401:350,-10,45,0,0,0.228929 -33299,7400:459,-9,45,0,0,0.220605 -33300,7400:458,-8,45,0,0,0.21844 -33301,7400:457,-7,45,0,0,0.219459 -33302,7400:456,-6,45,0,0,0.203814 -33303,7400:455,-5,45,0,0,0.208166 -33304,7400:354,-4,45,0,0,0.203198 -33305,7400:353,-3,45,0,0,0.199891 -33306,7400:352,-2,45,0,0,0.201688 -33307,7400:351,-1,45,0,0,0.200895 -33308,1400:351,0,45,0,0,0.200945 -33309,1400:351,1,45,0,0,0.198907 -33310,1400:352,2,45,0,0,0.201936 -33311,1400:353,3,45,0,0,0.196236 -33312,1400:354,4,45,0,0,0.19228 -33313,1400:455,5,45,0,0,0.193977 -33314,1400:457,7,45,0,0,0.162894 -33315,1401:353,13,45,0,0,0.168289 -33316,1401:354,14,45,0,0,0.180139 -33317,1401:455,15,45,0,0,0.187131 -33318,1401:456,16,45,0,0,0.189298 -33319,1414:455,145,45,0,0,0.0912546 -33320,1414:456,146,45,0,0,0.0966854 -33321,1414:457,147,45,0,0,0.093103 -33322,1414:458,148,45,0,0,0.0898502 -33323,1414:459,149,45,0,0,0.0920072 -33324,1415:350,150,45,0,0,0.0960504 -33325,1415:351,151,45,0,0,0.0993285 -33326,1415:352,152,45,0,0,0.100995 -33327,1415:353,153,45,0,0,0.101126 -33328,1415:354,154,45,0,0,0.088093 -33329,1415:458,158,45,0,0,0.0804543 -33330,1415:459,159,45,0,0,0.0877797 -33331,1416:350,160,45,0,0,0.0864398 -33332,1416:351,161,45,0,0,0.086936 -33333,1416:352,162,45,0,0,0.0866999 -33334,1416:455,165,45,0,0,0.0757937 -33335,1416:456,166,45,0,0,0.0828268 -33336,1416:457,167,45,0,0,0.0983402 -33337,1416:458,168,45,0,0,0.0961484 -33338,1416:459,169,45,0,0,0.102016 -33339,1417:350,170,45,0,0,0.0999645 -33340,1417:351,171,45,0,0,0.091596 -33341,1417:352,172,45,0,0,0.104586 -33342,1417:353,173,45,0,0,0.111576 -33343,1417:354,174,45,0,0,0.11365 -33344,1417:455,175,45,0,0,0.112066 -33345,1417:456,176,45,0,0,0.112322 -33346,1417:457,177,45,0,0,0.11419 -33347,1417:458,178,45,0,0,0.116697 -33348,1417:459,179,45,0,0,0.120205 -33349,1418:350,180,45,0,0,0.121044 -33350,7418:360,-180,46,0,0,0.114804 -33351,7417:469,-179,46,0,0,0.113031 -33352,7417:468,-178,46,0,0,0.105184 -33353,7417:467,-177,46,0,0,0.0985041 -33354,7417:466,-176,46,0,0,0.0993375 -33355,7417:465,-175,46,0,0,0.0993375 -33356,7417:364,-174,46,0,0,0.100011 -33357,7417:363,-173,46,0,0,0.100103 -33358,7417:362,-172,46,0,0,0.0952327 -33359,7417:361,-171,46,0,0,0.0875743 -33360,7417:360,-170,46,0,0,0.0805455 -33361,7416:467,-167,46,0,0,0.0791865 -33362,7416:466,-166,46,0,0,0.0802342 -33363,7416:465,-165,46,0,0,0.0799994 -33364,7415:466,-156,46,0,0,0.152034 -33365,7415:465,-155,46,0,0,0.15749 -33366,7415:364,-154,46,0,0,0.158886 -33367,7415:363,-153,46,0,0,0.163709 -33368,7415:362,-152,46,0,0,0.163161 -33369,7415:361,-151,46,0,0,0.160929 -33370,7415:360,-150,46,0,0,0.159863 -33371,7414:469,-149,46,0,0,0.158666 -33372,7414:468,-148,46,0,0,0.155848 -33373,7414:467,-147,46,0,0,0.154447 -33374,7414:466,-146,46,0,0,0.153845 -33375,7414:465,-145,46,0,0,0.157777 -33376,7414:364,-144,46,0,0,0.16399 -33377,7414:363,-143,46,0,0,0.166413 -33378,7414:362,-142,46,0,0,0.170123 -33379,7414:361,-141,46,0,0,0.168822 -33380,7414:360,-140,46,0,0,0.16937 -33381,7413:469,-139,46,0,0,0.175795 -33382,7413:468,-138,46,0,0,0.173706 -33383,7413:467,-137,46,0,0,0.16803 -33384,7408:363,-83,46,0,0,0.0814865 -33385,7408:362,-82,46,0,0,0.0854712 -33386,7408:361,-81,46,0,0,0.087083 -33387,7408:360,-80,46,0,0,0.0892387 -33388,7407:469,-79,46,0,0,0.0902963 -33389,7407:468,-78,46,0,0,0.0899677 -33390,7407:467,-77,46,0,0,0.0906092 -33391,7407:465,-75,46,0,0,0.0831865 -33392,7407:364,-74,46,0,0,0.0911525 -33393,7405:469,-59,46,0,0,0.0785371 -33394,7405:468,-58,46,0,0,0.0799012 -33395,7405:467,-57,46,0,0,0.0826008 -33396,7405:466,-56,46,0,0,0.144599 -33397,7405:465,-55,46,0,0,0.142904 -33398,7405:364,-54,46,0,0,0.129914 -33399,7405:363,-53,46,0,0,0.127483 -33400,7405:362,-52,46,0,0,0.125001 -33401,7405:361,-51,46,0,0,0.126549 -33402,7405:360,-50,46,0,0,0.126333 -33403,7404:469,-49,46,0,0,0.12697 -33404,7404:468,-48,46,0,0,0.13196 -33405,7404:467,-47,46,0,0,0.145798 -33406,7404:466,-46,46,0,0,0.155173 -33407,7404:465,-45,46,0,0,0.155335 -33408,7404:364,-44,46,0,0,0.141888 -33409,7404:361,-41,46,0,0,0.13714 -33410,7404:360,-40,46,0,0,0.161373 -33411,7403:469,-39,46,0,0,0.154085 -33412,7403:468,-38,46,0,0,0.137261 -33413,7403:467,-37,46,0,0,0.134679 -33414,7403:466,-36,46,0,0,0.134666 -33415,7403:465,-35,46,0,0,0.136182 -33416,7403:364,-34,46,0,0,0.138593 -33417,7403:363,-33,46,0,0,0.145478 -33418,7403:362,-32,46,0,0,0.156471 -33419,7403:361,-31,46,0,0,0.164809 -33420,7403:360,-30,46,0,0,0.184381 -33421,7402:469,-29,46,0,0,0.197356 -33422,7402:468,-28,46,0,0,0.202931 -33423,7402:467,-27,46,0,0,0.198743 -33424,7402:466,-26,46,0,0,0.190974 -33425,7402:465,-25,46,0,0,0.191372 -33426,7402:364,-24,46,0,0,0.18531 -33427,7402:363,-23,46,0,0,0.183579 -33428,7402:362,-22,46,0,0,0.188967 -33429,7402:361,-21,46,0,0,0.200269 -33430,7402:360,-20,46,0,0,0.200318 -33431,7401:469,-19,46,0,0,0.203864 -33432,7401:468,-18,46,0,0,0.209609 -33433,7401:467,-17,46,0,0,0.207489 -33434,7401:466,-16,46,0,0,0.225986 -33435,7401:465,-15,46,0,0,0.217249 -33436,7401:364,-14,46,0,0,0.215734 -33437,7401:363,-13,46,0,0,0.214606 -33438,7401:362,-12,46,0,0,0.220499 -33439,7401:361,-11,46,0,0,0.219283 -33440,7401:360,-10,46,0,0,0.215907 -33441,7400:469,-9,46,0,0,0.216047 -33442,7400:468,-8,46,0,0,0.222039 -33443,7400:467,-7,46,0,0,0.219829 -33444,7400:466,-6,46,0,0,0.217267 -33445,7400:465,-5,46,0,0,0.207236 -33446,7400:364,-4,46,0,0,0.20149 -33447,7400:363,-3,46,0,0,0.200697 -33448,7400:362,-2,46,0,0,0.201176 -33449,7400:361,-1,46,0,0,0.19894 -33450,1400:361,0,46,0,0,0.202218 -33451,1400:361,1,46,0,0,0.201341 -33452,1400:465,5,46,0,0,0.182181 -33453,1400:466,6,46,0,0,0.179912 -33454,1401:362,12,46,0,0,0.16186 -33455,1401:363,13,46,0,0,0.171213 -33456,1401:364,14,46,0,0,0.174134 -33457,1401:465,15,46,0,0,0.179624 -33458,1401:466,16,46,0,0,0.160776 -33459,1414:467,147,46,0,0,0.0820961 -33460,1414:468,148,46,0,0,0.0829908 -33461,1415:468,158,46,0,0,0.0797805 -33462,1415:469,159,46,0,0,0.0840999 -33463,1416:360,160,46,0,0,0.0838865 -33464,1416:361,161,46,0,0,0.0805761 -33465,1416:362,162,46,0,0,0.0789023 -33466,1416:363,163,46,0,0,0.0787978 -33467,1416:364,164,46,0,0,0.0794567 -33468,1417:363,173,46,0,0,0.0928172 -33469,1417:364,174,46,0,0,0.102952 -33470,1417:465,175,46,0,0,0.105999 -33471,1417:466,176,46,0,0,0.107498 -33472,1417:467,177,46,0,0,0.11035 -33473,1417:468,178,46,0,0,0.115254 -33474,1417:469,179,46,0,0,0.113878 -33475,1418:360,180,46,0,0,0.114804 -33476,7418:370,-180,47,0,0,0.108061 -33477,7417:479,-179,47,0,0,0.106663 -33478,7417:478,-178,47,0,0,0.0988331 -33479,7417:477,-177,47,0,0,0.0942458 -33480,7417:476,-176,47,0,0,0.0913826 -33481,7417:475,-175,47,0,0,0.0901866 -33482,7417:374,-174,47,0,0,0.0901699 -33483,7417:373,-173,47,0,0,0.0889385 -33484,7417:372,-172,47,0,0,0.0863265 -33485,7417:371,-171,47,0,0,0.0802948 -33486,7417:370,-170,47,0,0,0.0788053 -33487,7416:479,-169,47,0,0,0.0789099 -33488,7416:478,-168,47,0,0,0.0790444 -33489,7415:477,-157,47,0,0,0.113609 -33490,7415:476,-156,47,0,0,0.136497 -33491,7415:374,-154,47,0,0,0.165389 -33492,7415:373,-153,47,0,0,0.164004 -33493,7415:372,-152,47,0,0,0.165801 -33494,7415:371,-151,47,0,0,0.158927 -33495,7415:370,-150,47,0,0,0.153858 -33496,7414:479,-149,47,0,0,0.152167 -33497,7414:478,-148,47,0,0,0.154233 -33498,7414:477,-147,47,0,0,0.15597 -33499,7414:476,-146,47,0,0,0.153898 -33500,7414:475,-145,47,0,0,0.153404 -33501,7414:374,-144,47,0,0,0.159877 -33502,7414:373,-143,47,0,0,0.165234 -33503,7414:372,-142,47,0,0,0.172941 -33504,7414:371,-141,47,0,0,0.174075 -33505,7414:370,-140,47,0,0,0.175439 -33506,7408:374,-84,47,0,0,0.0809726 -33507,7408:373,-83,47,0,0,0.0867324 -33508,7408:372,-82,47,0,0,0.0883905 -33509,7408:371,-81,47,0,0,0.0888136 -33510,7408:370,-80,47,0,0,0.0893639 -33511,7407:479,-79,47,0,0,0.0896906 -33512,7407:478,-78,47,0,0,0.0896655 -33513,7407:477,-77,47,0,0,0.088374 -33514,7407:476,-76,47,0,0,0.0890885 -33515,7407:475,-75,47,0,0,0.0803708 -33516,7407:374,-74,47,0,0,0.0924975 -33517,7406:374,-64,47,0,0,0.0784108 -33518,7406:373,-63,47,0,0,0.0800901 -33519,7405:479,-59,47,0,0,0.078865 -33520,7405:478,-58,47,0,0,0.0797805 -33521,7405:477,-57,47,0,0,0.0813559 -33522,7405:476,-56,47,0,0,0.14703 -33523,7405:475,-55,47,0,0,0.14558 -33524,7405:374,-54,47,0,0,0.134033 -33525,7405:373,-53,47,0,0,0.131913 -33526,7405:372,-52,47,0,0,0.129022 -33527,7405:371,-51,47,0,0,0.125372 -33528,7405:370,-50,47,0,0,0.137042 -33529,7404:479,-49,47,0,0,0.13576 -33530,7404:478,-48,47,0,0,0.149247 -33531,7404:477,-47,47,0,0,0.154622 -33532,7404:476,-46,47,0,0,0.1416 -33533,7404:374,-44,47,0,0,0.0957472 -33534,7404:370,-40,47,0,0,0.139799 -33535,7403:479,-39,47,0,0,0.16937 -33536,7403:478,-38,47,0,0,0.15831 -33537,7403:477,-37,47,0,0,0.142678 -33538,7403:476,-36,47,0,0,0.135302 -33539,7403:475,-35,47,0,0,0.135519 -33540,7403:374,-34,47,0,0,0.13714 -33541,7403:373,-33,47,0,0,0.139293 -33542,7403:372,-32,47,0,0,0.145146 -33543,7403:371,-31,47,0,0,0.152087 -33544,7403:370,-30,47,0,0,0.171622 -33545,7402:479,-29,47,0,0,0.186118 -33546,7402:478,-28,47,0,0,0.198318 -33547,7402:477,-27,47,0,0,0.204816 -33548,7402:476,-26,47,0,0,0.204799 -33549,7402:475,-25,47,0,0,0.197405 -33550,7402:374,-24,47,0,0,0.192983 -33551,7402:373,-23,47,0,0,0.191594 -33552,7402:372,-22,47,0,0,0.191308 -33553,7402:371,-21,47,0,0,0.192791 -33554,7402:370,-20,47,0,0,0.194137 -33555,7401:479,-19,47,0,0,0.197812 -33556,7401:478,-18,47,0,0,0.200022 -33557,7401:477,-17,47,0,0,0.212036 -33558,7401:476,-16,47,0,0,0.223053 -33559,7401:475,-15,47,0,0,0.22259 -33560,7401:374,-14,47,0,0,0.219441 -33561,7401:373,-13,47,0,0,0.21851 -33562,7401:372,-12,47,0,0,0.208505 -33563,7401:371,-11,47,0,0,0.213051 -33564,7401:370,-10,47,0,0,0.185869 -33565,7400:479,-9,47,0,0,0.183933 -33566,7400:478,-8,47,0,0,0.190356 -33567,7400:477,-7,47,0,0,0.21024 -33568,7400:476,-6,47,0,0,0.215247 -33569,7400:374,-4,47,0,0,0.206007 -33570,7400:373,-3,47,0,0,0.202218 -33571,7400:372,-2,47,0,0,0.201209 -33572,7400:371,-1,47,0,0,0.196463 -33573,1400:371,0,47,0,0,0.200269 -33574,1401:372,12,47,0,0,0.173957 -33575,1401:374,14,47,0,0,0.173633 -33576,1401:475,15,47,0,0,0.18157 -33577,1416:370,160,47,0,0,0.0806445 -33578,1416:371,161,47,0,0,0.0818331 -33579,1416:372,162,47,0,0,0.0793439 -33580,1416:475,165,47,0,0,0.0797954 -33581,1417:475,175,47,0,0,0.0862696 -33582,1417:476,176,47,0,0,0.102243 -33583,1417:477,177,47,0,0,0.106126 -33584,1417:478,178,47,0,0,0.105087 -33585,1417:479,179,47,0,0,0.10318 -33586,1418:370,180,47,0,0,0.108061 -33587,7418:380,-180,48,0,0,0.0986503 -33588,7417:489,-179,48,0,0,0.0966228 -33589,7417:488,-178,48,0,0,0.0926616 -33590,7417:487,-177,48,0,0,0.090821 -33591,7417:486,-176,48,0,0,0.0882251 -33592,7417:485,-175,48,0,0,0.0844726 -33593,7417:384,-174,48,0,0,0.0806066 -33594,7417:383,-173,48,0,0,0.0792316 -33595,7417:382,-172,48,0,0,0.0786041 -33596,7417:381,-171,48,0,0,0.0780405 -33597,7417:380,-170,48,0,0,0.078344 -33598,7416:489,-169,48,0,0,0.079224 -33599,7415:486,-156,48,0,0,0.109315 -33600,7415:383,-153,48,0,0,0.167256 -33601,7415:382,-152,48,0,0,0.169399 -33602,7415:381,-151,48,0,0,0.17021 -33603,7415:380,-150,48,0,0,0.166399 -33604,7414:489,-149,48,0,0,0.156715 -33605,7414:488,-148,48,0,0,0.152871 -33606,7414:487,-147,48,0,0,0.152074 -33607,7414:486,-146,48,0,0,0.153711 -33608,7414:485,-145,48,0,0,0.15745 -33609,7414:384,-144,48,0,0,0.164357 -33610,7414:383,-143,48,0,0,0.174934 -33611,7414:382,-142,48,0,0,0.175409 -33612,7414:381,-141,48,0,0,0.174963 -33613,7413:487,-137,48,0,0,0.159106 -33614,7408:485,-85,48,0,0,0.0805455 -33615,7408:384,-84,48,0,0,0.0862212 -33616,7408:383,-83,48,0,0,0.0872546 -33617,7408:382,-82,48,0,0,0.0879446 -33618,7408:381,-81,48,0,0,0.0878126 -33619,7408:380,-80,48,0,0,0.0884319 -33620,7407:489,-79,48,0,0,0.0891885 -33621,7407:488,-78,48,0,0,0.0890384 -33622,7407:487,-77,48,0,0,0.0907193 -33623,7407:486,-76,48,0,0,0.0816944 -33624,7407:485,-75,48,0,0,0.0799164 -33625,7407:384,-74,48,0,0,0.0930424 -33626,7406:485,-65,48,0,0,0.0781588 -33627,7406:384,-64,48,0,0,0.0786936 -33628,7406:383,-63,48,0,0,0.0788053 -33629,7406:382,-62,48,0,0,0.0792464 -33630,7406:380,-60,48,0,0,0.077797 -33631,7405:489,-59,48,0,0,0.0791717 -33632,7405:488,-58,48,0,0,0.079149 -33633,7405:487,-57,48,0,0,0.0942809 -33634,7405:486,-56,48,0,0,0.149561 -33635,7405:485,-55,48,0,0,0.150163 -33636,7405:384,-54,48,0,0,0.144663 -33637,7405:383,-53,48,0,0,0.134164 -33638,7405:382,-52,48,0,0,0.140233 -33639,7405:381,-51,48,0,0,0.139985 -33640,7405:380,-50,48,0,0,0.141863 -33641,7404:489,-49,48,0,0,0.148376 -33642,7404:488,-48,48,0,0,0.153764 -33643,7404:487,-47,48,0,0,0.142904 -33644,7404:380,-40,48,0,0,0.116253 -33645,7403:489,-39,48,0,0,0.148648 -33646,7403:488,-38,48,0,0,0.169847 -33647,7403:487,-37,48,0,0,0.168145 -33648,7403:486,-36,48,0,0,0.159009 -33649,7403:485,-35,48,0,0,0.144472 -33650,7403:384,-34,48,0,0,0.142791 -33651,7403:383,-33,48,0,0,0.149078 -33652,7403:382,-32,48,0,0,0.142214 -33653,7403:381,-31,48,0,0,0.144269 -33654,7403:380,-30,48,0,0,0.155187 -33655,7402:489,-29,48,0,0,0.17529 -33656,7402:488,-28,48,0,0,0.190974 -33657,7402:487,-27,48,0,0,0.199398 -33658,7402:486,-26,48,0,0,0.20557 -33659,7402:485,-25,48,0,0,0.206141 -33660,7402:384,-24,48,0,0,0.20842 -33661,7402:383,-23,48,0,0,0.208946 -33662,7402:382,-22,48,0,0,0.209507 -33663,7402:381,-21,48,0,0,0.207912 -33664,7402:380,-20,48,0,0,0.208861 -33665,7401:489,-19,48,0,0,0.205654 -33666,7401:488,-18,48,0,0,0.204515 -33667,7401:487,-17,48,0,0,0.217337 -33668,7401:486,-16,48,0,0,0.220252 -33669,7401:485,-15,48,0,0,0.216656 -33670,7401:384,-14,48,0,0,0.215108 -33671,7401:383,-13,48,0,0,0.208319 -33672,7401:382,-12,48,0,0,0.200022 -33673,7401:381,-11,48,0,0,0.18746 -33674,7401:380,-10,48,0,0,0.183563 -33675,7400:489,-9,48,0,0,0.180777 -33676,7400:488,-8,48,0,0,0.17672 -33677,7400:487,-7,48,0,0,0.19491 -33678,7400:486,-6,48,0,0,0.204983 -33679,7400:485,-5,48,0,0,0.214208 -33680,7400:384,-4,48,0,0,0.211231 -33681,7400:383,-3,48,0,0,0.206713 -33682,7400:382,-2,48,0,0,0.208369 -33683,7400:381,-1,48,0,0,0.196446 -33684,1401:382,12,48,0,0,0.165134 -33685,1401:383,13,48,0,0,0.174445 -33686,1401:384,14,48,0,0,0.176392 -33687,1401:485,15,48,0,0,0.181387 -33688,1401:486,16,48,0,0,0.152658 -33689,1401:487,17,48,0,0,0.155268 -33690,1401:488,18,48,0,0,0.170428 -33691,1416:486,166,48,0,0,0.082554 -33692,1417:489,179,48,0,0,0.0883657 -33693,1418:380,180,48,0,0,0.0986503 -33694,7418:390,-180,49,0,0,0.0920502 -33695,7417:499,-179,49,0,0,0.0918186 -33696,7417:498,-178,49,0,0,0.0899258 -33697,7417:497,-177,49,0,0,0.0869116 -33698,7417:496,-176,49,0,0,0.0847672 -33699,7417:495,-175,49,0,0,0.0810875 -33700,7417:394,-174,49,0,0,0.0785074 -33701,7417:393,-173,49,0,0,0.0762196 -33702,7417:392,-172,49,0,0,0.0764659 -33703,7417:391,-171,49,0,0,0.0768367 -33704,7417:390,-170,49,0,0,0.0777158 -33705,7416:499,-169,49,0,0,0.0787978 -33706,7415:496,-156,49,0,0,0.0896821 -33707,7415:392,-152,49,0,0,0.153724 -33708,7415:391,-151,49,0,0,0.166969 -33709,7415:390,-150,49,0,0,0.170689 -33710,7414:499,-149,49,0,0,0.170907 -33711,7414:498,-148,49,0,0,0.170937 -33712,7414:497,-147,49,0,0,0.168922 -33713,7414:496,-146,49,0,0,0.171082 -33714,7414:495,-145,49,0,0,0.173235 -33715,7414:394,-144,49,0,0,0.174845 -33716,7414:393,-143,49,0,0,0.1748 -33717,7408:496,-86,49,0,0,0.0801054 -33718,7408:495,-85,49,0,0,0.0849906 -33719,7408:394,-84,49,0,0,0.0869686 -33720,7408:393,-83,49,0,0,0.0868221 -33721,7408:392,-82,49,0,0,0.0877057 -33722,7408:391,-81,49,0,0,0.0875498 -33723,7408:390,-80,49,0,0,0.0888219 -33724,7407:499,-79,49,0,0,0.08903 -33725,7407:498,-78,49,0,0,0.0885728 -33726,7407:497,-77,49,0,0,0.0895312 -33727,7407:496,-76,49,0,0,0.0898668 -33728,7407:495,-75,49,0,0,0.0892803 -33729,7406:495,-65,49,0,0,0.0773559 -33730,7406:394,-64,49,0,0,0.0793215 -33731,7406:393,-63,49,0,0,0.0802798 -33732,7406:392,-62,49,0,0,0.081034 -33733,7406:391,-61,49,0,0,0.0811104 -33734,7406:390,-60,49,0,0,0.0799088 -33735,7405:499,-59,49,0,0,0.0794342 -33736,7405:498,-58,49,0,0,0.0808048 -33737,7405:497,-57,49,0,0,0.109515 -33738,7405:496,-56,49,0,0,0.148 -33739,7405:495,-55,49,0,0,0.150701 -33740,7405:394,-54,49,0,0,0.150242 -33741,7405:393,-53,49,0,0,0.149993 -33742,7405:392,-52,49,0,0,0.150662 -33743,7405:391,-51,49,0,0,0.150071 -33744,7405:390,-50,49,0,0,0.151294 -33745,7404:499,-49,49,0,0,0.153257 -33746,7404:498,-48,49,0,0,0.153404 -33747,7404:497,-47,49,0,0,0.142553 -33748,7403:499,-39,49,0,0,0.112599 -33749,7403:498,-38,49,0,0,0.172002 -33750,7403:497,-37,49,0,0,0.17275 -33751,7403:496,-36,49,0,0,0.173367 -33752,7403:495,-35,49,0,0,0.172823 -33753,7403:394,-34,49,0,0,0.171608 -33754,7403:393,-33,49,0,0,0.170864 -33755,7403:392,-32,49,0,0,0.159574 -33756,7403:391,-31,49,0,0,0.155308 -33757,7403:390,-30,49,0,0,0.160485 -33758,7402:499,-29,49,0,0,0.182396 -33759,7402:498,-28,49,0,0,0.190832 -33760,7402:497,-27,49,0,0,0.203531 -33761,7402:496,-26,49,0,0,0.1984 -33762,7402:495,-25,49,0,0,0.194926 -33763,7402:394,-24,49,0,0,0.194411 -33764,7402:393,-23,49,0,0,0.195895 -33765,7402:392,-22,49,0,0,0.186678 -33766,7402:390,-20,49,0,0,0.188967 -33767,7401:499,-19,49,0,0,0.199924 -33768,7401:498,-18,49,0,0,0.211419 -33769,7401:497,-17,49,0,0,0.216447 -33770,7401:496,-16,49,0,0,0.213655 -33771,7401:495,-15,49,0,0,0.172985 -33772,7401:394,-14,49,0,0,0.176302 -33773,7401:393,-13,49,0,0,0.178989 -33774,7401:392,-12,49,0,0,0.186367 -33775,7401:391,-11,49,0,0,0.187522 -33776,7401:390,-10,49,0,0,0.178265 -33777,7400:499,-9,49,0,0,0.171797 -33778,7400:498,-8,49,0,0,0.167786 -33779,7400:497,-7,49,0,0,0.174519 -33780,7400:496,-6,49,0,0,0.196446 -33781,7400:495,-5,49,0,0,0.205285 -33782,7400:394,-4,49,0,0,0.20881 -33783,7400:393,-3,49,0,0,0.203447 -33784,7400:392,-2,49,0,0,0.198874 -33785,7400:391,-1,49,0,0,0.200055 -33786,1401:392,12,49,0,0,0.131983 -33787,1401:393,13,49,0,0,0.168663 -33788,1401:394,14,49,0,0,0.179064 -33789,1401:495,15,49,0,0,0.177484 -33790,1401:497,17,49,0,0,0.147818 -33791,1401:498,18,49,0,0,0.142126 -33792,1417:498,178,49,0,0,0.0767056 -33793,1417:499,179,49,0,0,0.0812638 -33794,1418:390,180,49,0,0,0.0920502 -33795,7518:100,-180,50,0,0,0.0828971 -33796,7517:209,-179,50,0,0,0.086651 -33797,7517:208,-178,50,0,0,0.0873283 -33798,7517:207,-177,50,0,0,0.0865617 -33799,7517:206,-176,50,0,0,0.0834298 -33800,7517:205,-175,50,0,0,0.0815327 -33801,7517:104,-174,50,0,0,0.0764732 -33802,7517:103,-173,50,0,0,0.076386 -33803,7517:102,-172,50,0,0,0.0760967 -33804,7517:101,-171,50,0,0,0.0763208 -33805,7517:100,-170,50,0,0,0.0766839 -33806,7516:209,-169,50,0,0,0.07751 -33807,7516:207,-167,50,0,0,0.0798408 -33808,7515:102,-152,50,0,0,0.139293 -33809,7508:207,-87,50,0,0,0.0820883 -33810,7508:206,-86,50,0,0,0.0854151 -33811,7508:205,-85,50,0,0,0.086132 -33812,7508:104,-84,50,0,0,0.0860837 -33813,7508:103,-83,50,0,0,0.0860514 -33814,7508:102,-82,50,0,0,0.0869686 -33815,7508:101,-81,50,0,0,0.0871648 -33816,7508:100,-80,50,0,0,0.0882582 -33817,7507:209,-79,50,0,0,0.0889802 -33818,7507:208,-78,50,0,0,0.089105 -33819,7507:207,-77,50,0,0,0.0890384 -33820,7507:206,-76,50,0,0,0.0890801 -33821,7507:205,-75,50,0,0,0.0874924 -33822,7507:104,-74,50,0,0,0.0790743 -33823,7506:104,-64,50,0,0,0.0793966 -33824,7506:103,-63,50,0,0,0.0791417 -33825,7506:102,-62,50,0,0,0.0786636 -33826,7506:101,-61,50,0,0,0.0782033 -33827,7506:100,-60,50,0,0,0.0785521 -33828,7505:209,-59,50,0,0,0.0813788 -33829,7505:208,-58,50,0,0,0.102677 -33830,7505:207,-57,50,0,0,0.120531 -33831,7505:206,-56,50,0,0,0.122616 -33832,7505:205,-55,50,0,0,0.151783 -33833,7505:104,-54,50,0,0,0.152366 -33834,7505:103,-53,50,0,0,0.15173 -33835,7505:102,-52,50,0,0,0.151637 -33836,7505:101,-51,50,0,0,0.152259 -33837,7505:100,-50,50,0,0,0.15311 -33838,7504:209,-49,50,0,0,0.152937 -33839,7504:208,-48,50,0,0,0.1459 -33840,7503:208,-38,50,0,0,0.115244 -33841,7503:207,-37,50,0,0,0.138974 -33842,7503:206,-36,50,0,0,0.141451 -33843,7503:205,-35,50,0,0,0.171973 -33844,7503:104,-34,50,0,0,0.172471 -33845,7503:103,-33,50,0,0,0.179684 -33846,7503:102,-32,50,0,0,0.181601 -33847,7503:101,-31,50,0,0,0.181768 -33848,7503:100,-30,50,0,0,0.181387 -33849,7502:209,-29,50,0,0,0.187851 -33850,7502:208,-28,50,0,0,0.198155 -33851,7502:207,-27,50,0,0,0.196917 -33852,7502:206,-26,50,0,0,0.183579 -33853,7502:205,-25,50,0,0,0.185402 -33854,7502:104,-24,50,0,0,0.17443 -33855,7501:207,-17,50,0,0,0.130496 -33856,7501:206,-16,50,0,0,0.170137 -33857,7501:205,-15,50,0,0,0.176765 -33858,7501:104,-14,50,0,0,0.120249 -33859,7501:103,-13,50,0,0,0.12908 -33860,7501:102,-12,50,0,0,0.129369 -33861,7501:101,-11,50,0,0,0.130228 -33862,7501:100,-10,50,0,0,0.14926 -33863,7500:209,-9,50,0,0,0.156878 -33864,7500:208,-8,50,0,0,0.165134 -33865,7500:207,-7,50,0,0,0.185806 -33866,7500:206,-6,50,0,0,0.191372 -33867,7500:205,-5,50,0,0,0.194781 -33868,7500:104,-4,50,0,0,0.197796 -33869,7500:103,-3,50,0,0,0.200566 -33870,7500:102,-2,50,0,0,0.202749 -33871,7500:101,-1,50,0,0,0.204615 -33872,1501:102,12,50,0,0,0.16079 -33873,1501:103,13,50,0,0,0.158982 -33874,1501:104,14,50,0,0,0.166399 -33875,1501:205,15,50,0,0,0.177199 -33876,1501:206,16,50,0,0,0.160707 -33877,1517:207,177,50,0,0,0.0804466 -33878,1517:208,178,50,0,0,0.077679 -33879,1517:209,179,50,0,0,0.0778929 -33880,1518:100,180,50,0,0,0.0828971 -33881,7518:110,-180,51,0,0,0.0767785 -33882,7517:219,-179,51,0,0,0.077797 -33883,7517:218,-178,51,0,0,0.0768732 -33884,7517:215,-175,51,0,0,0.0761689 -33885,7517:114,-174,51,0,0,0.078448 -33886,7517:113,-173,51,0,0,0.0784258 -33887,7517:112,-172,51,0,0,0.0773559 -33888,7517:111,-171,51,0,0,0.0764949 -33889,7517:110,-170,51,0,0,0.0763789 -33890,7516:219,-169,51,0,0,0.0763064 -33891,7516:218,-168,51,0,0,0.0769825 -33892,7516:217,-167,51,0,0,0.0776421 -33893,7516:216,-166,51,0,0,0.0781884 -33894,7508:219,-89,51,0,0,0.0811487 -33895,7508:218,-88,51,0,0,0.0817097 -33896,7508:217,-87,51,0,0,0.0844806 -33897,7508:216,-86,51,0,0,0.0843536 -33898,7508:215,-85,51,0,0,0.0845362 -33899,7508:114,-84,51,0,0,0.0850545 -33900,7508:113,-83,51,0,0,0.0858656 -33901,7508:112,-82,51,0,0,0.0864561 -33902,7508:111,-81,51,0,0,0.0867975 -33903,7508:110,-80,51,0,0,0.0870013 -33904,7507:219,-79,51,0,0,0.0874186 -33905,7507:218,-78,51,0,0,0.0882498 -33906,7507:217,-77,51,0,0,0.0888719 -33907,7507:216,-76,51,0,0,0.0821812 -33908,7507:215,-75,51,0,0,0.0868791 -33909,7507:114,-74,51,0,0,0.0869933 -33910,7507:113,-73,51,0,0,0.0810646 -33911,7506:215,-65,51,0,0,0.079562 -33912,7506:114,-64,51,0,0,0.0782551 -33913,7506:113,-63,51,0,0,0.0781884 -33914,7506:112,-62,51,0,0,0.0781218 -33915,7506:111,-61,51,0,0,0.0783737 -33916,7506:110,-60,51,0,0,0.079149 -33917,7505:219,-59,51,0,0,0.0780701 -33918,7505:218,-58,51,0,0,0.0791717 -33919,7505:217,-57,51,0,0,0.0819182 -33920,7505:216,-56,51,0,0,0.1056 -33921,7505:215,-55,51,0,0,0.132136 -33922,7505:114,-54,51,0,0,0.15015 -33923,7505:113,-53,51,0,0,0.152206 -33924,7505:112,-52,51,0,0,0.152512 -33925,7505:111,-51,51,0,0,0.152831 -33926,7505:110,-50,51,0,0,0.152897 -33927,7504:219,-49,51,0,0,0.150071 -33928,7504:218,-48,51,0,0,0.135386 -33929,7503:217,-37,51,0,0,0.112774 -33930,7503:216,-36,51,0,0,0.160957 -33931,7503:215,-35,51,0,0,0.153671 -33932,7503:114,-34,51,0,0,0.154528 -33933,7503:113,-33,51,0,0,0.154072 -33934,7503:112,-32,51,0,0,0.178025 -33935,7503:111,-31,51,0,0,0.185635 -33936,7503:110,-30,51,0,0,0.185387 -33937,7502:219,-29,51,0,0,0.189961 -33938,7502:218,-28,51,0,0,0.194958 -33939,7502:217,-27,51,0,0,0.182411 -33940,7502:216,-26,51,0,0,0.171871 -33941,7502:215,-25,51,0,0,0.154675 -33942,7502:114,-24,51,0,0,0.126061 -33943,7501:216,-16,51,0,0,0.120129 -33944,7501:215,-15,51,0,0,0.111454 -33945,7501:114,-14,51,0,0,0.114158 -33946,7501:113,-13,51,0,0,0.120837 -33947,7501:112,-12,51,0,0,0.1249 -33948,7501:111,-11,51,0,0,0.145478 -33949,7501:110,-10,51,0,0,0.150636 -33950,7500:219,-9,51,0,0,0.157859 -33951,7500:218,-8,51,0,0,0.161804 -33952,7500:217,-7,51,0,0,0.174741 -33953,7500:216,-6,51,0,0,0.18064 -33954,7500:215,-5,51,0,0,0.181417 -33955,7500:114,-4,51,0,0,0.185496 -33956,7500:113,-3,51,0,0,0.195588 -33957,7500:112,-2,51,0,0,0.197421 -33958,7500:111,-1,51,0,0,0.20358 -33959,1500:111,0,51,0,0,0.200533 -33960,1501:110,10,51,0,0,0.149013 -33961,1501:111,11,51,0,0,0.155011 -33962,1501:112,12,51,0,0,0.157681 -33963,1501:113,13,51,0,0,0.125609 -33964,1501:114,14,51,0,0,0.12146 -33965,1501:215,15,51,0,0,0.12967 -33966,1501:216,16,51,0,0,0.147676 -33967,1501:217,17,51,0,0,0.169124 -33968,1517:219,179,51,0,0,0.0773118 -33969,1518:110,180,51,0,0,0.0767785 -33970,7517:124,-174,52,0,0,0.0766548 -33971,7517:123,-173,52,0,0,0.0776864 -33972,7517:122,-172,52,0,0,0.0775394 -33973,7517:121,-171,52,0,0,0.0762267 -33974,7508:229,-89,52,0,0,0.0813329 -33975,7508:228,-88,52,0,0,0.0831865 -33976,7508:227,-87,52,0,0,0.0833277 -33977,7508:226,-86,52,0,0,0.0832649 -33978,7508:225,-85,52,0,0,0.0844649 -33979,7508:124,-84,52,0,0,0.0852548 -33980,7508:123,-83,52,0,0,0.0854472 -33981,7508:122,-82,52,0,0,0.0863265 -33982,7508:121,-81,52,0,0,0.0860997 -33983,7508:120,-80,52,0,0,0.0857849 -33984,7507:229,-79,52,0,0,0.0861078 -33985,7507:228,-78,52,0,0,0.0850864 -33986,7507:227,-77,52,0,0,0.0863831 -33987,7507:226,-76,52,0,0,0.0855597 -33988,7507:225,-75,52,0,0,0.0841712 -33989,7507:124,-74,52,0,0,0.0877797 -33990,7507:123,-73,52,0,0,0.087181 -33991,7506:225,-65,52,0,0,0.0788203 -33992,7506:124,-64,52,0,0,0.0787605 -33993,7506:123,-63,52,0,0,0.0782551 -33994,7506:120,-60,52,0,0,0.0794792 -33995,7505:229,-59,52,0,0,0.076205 -33996,7505:228,-58,52,0,0,0.0774952 -33997,7505:227,-57,52,0,0,0.0773044 -33998,7505:226,-56,52,0,0,0.0777527 -33999,7505:225,-55,52,0,0,0.085648 -34000,7505:124,-54,52,0,0,0.123871 -34001,7505:123,-53,52,0,0,0.140418 -34002,7505:122,-52,52,0,0,0.150543 -34003,7505:121,-51,52,0,0,0.151756 -34004,7505:120,-50,52,0,0,0.151518 -34005,7504:229,-49,52,0,0,0.144764 -34006,7504:228,-48,52,0,0,0.131115 -34007,7503:124,-34,52,0,0,0.0904399 -34008,7503:123,-33,52,0,0,0.100149 -34009,7503:122,-32,52,0,0,0.104894 -34010,7503:121,-31,52,0,0,0.104904 -34011,7503:120,-30,52,0,0,0.10165 -34012,7502:229,-29,52,0,0,0.0874103 -34013,7502:228,-28,52,0,0,0.0879692 -34014,7502:227,-27,52,0,0,0.113258 -34015,7502:226,-26,52,0,0,0.168159 -34016,7502:225,-25,52,0,0,0.138777 -34017,7502:124,-24,52,0,0,0.137225 -34018,7502:123,-23,52,0,0,0.1176 -34019,7502:122,-22,52,0,0,0.123804 -34020,7501:227,-17,52,0,0,0.119566 -34021,7501:226,-16,52,0,0,0.115149 -34022,7501:225,-15,52,0,0,0.110592 -34023,7501:124,-14,52,0,0,0.116771 -34024,7501:123,-13,52,0,0,0.115569 -34025,7501:122,-12,52,0,0,0.116761 -34026,7501:121,-11,52,0,0,0.127918 -34027,7501:120,-10,52,0,0,0.155605 -34028,7500:229,-9,52,0,0,0.160693 -34029,7500:228,-8,52,0,0,0.165064 -34030,7500:227,-7,52,0,0,0.168677 -34031,7500:226,-6,52,0,0,0.173588 -34032,7500:225,-5,52,0,0,0.175052 -34033,7500:124,-4,52,0,0,0.17678 -34034,7500:123,-3,52,0,0,0.174845 -34035,7500:122,-2,52,0,0,0.17114 -34036,7500:121,-1,52,0,0,0.200829 -34037,1500:121,0,52,0,0,0.200664 -34038,1500:121,1,52,0,0,0.189818 -34039,1500:122,2,52,0,0,0.162335 -34040,1501:120,10,52,0,0,0.160374 -34041,1501:121,11,52,0,0,0.157164 -34042,1501:122,12,52,0,0,0.16043 -34043,1501:123,13,52,0,0,0.133165 -34044,1501:228,18,52,0,0,0.163329 -34045,1501:229,19,52,0,0,0.160568 -34046,1517:229,179,52,0,0,0.0769899 -34047,7517:237,-177,53,0,0,0.0773778 -34048,7517:133,-173,53,0,0,0.077063 -34049,7517:132,-172,53,0,0,0.0760967 -34050,7508:239,-89,53,0,0,0.0817561 -34051,7508:238,-88,53,0,0,0.0824762 -34052,7508:237,-87,53,0,0,0.0833432 -34053,7508:236,-86,53,0,0,0.0841159 -34054,7508:235,-85,53,0,0,0.0847354 -34055,7508:134,-84,53,0,0,0.0845682 -34056,7508:133,-83,53,0,0,0.0848709 -34057,7508:132,-82,53,0,0,0.0846476 -34058,7508:131,-81,53,0,0,0.0849109 -34059,7508:130,-80,53,0,0,0.0848867 -34060,7507:239,-79,53,0,0,0.0844966 -34061,7507:238,-78,53,0,0,0.0836499 -34062,7507:237,-77,53,0,0,0.0847113 -34063,7507:236,-76,53,0,0,0.0837918 -34064,7507:235,-75,53,0,0,0.0829987 -34065,7507:134,-74,53,0,0,0.0847431 -34066,7507:133,-73,53,0,0,0.0843854 -34067,7507:132,-72,53,0,0,0.078783 -34068,7506:236,-66,53,0,0,0.0795921 -34069,7506:235,-65,53,0,0,0.078448 -34070,7506:131,-61,53,0,0,0.0790892 -34071,7505:238,-58,53,0,0,0.0760099 -34072,7505:237,-57,53,0,0,0.0772532 -34073,7505:236,-56,53,0,0,0.0769315 -34074,7505:235,-55,53,0,0,0.0774291 -34075,7505:134,-54,53,0,0,0.0792316 -34076,7505:133,-53,53,0,0,0.0884072 -34077,7505:132,-52,53,0,0,0.144345 -34078,7505:131,-51,53,0,0,0.145682 -34079,7505:130,-50,53,0,0,0.149809 -34080,7504:239,-49,53,0,0,0.140505 -34081,7504:238,-48,53,0,0,0.117547 -34082,7503:132,-32,53,0,0,0.0810646 -34083,7503:131,-31,53,0,0,0.0831081 -34084,7503:130,-30,53,0,0,0.0910844 -34085,7502:239,-29,53,0,0,0.0846238 -34086,7502:238,-28,53,0,0,0.0813788 -34087,7502:237,-27,53,0,0,0.079577 -34088,7502:236,-26,53,0,0,0.0845602 -34089,7502:235,-25,53,0,0,0.123148 -34090,7502:134,-24,53,0,0,0.140729 -34091,7502:133,-23,53,0,0,0.14254 -34092,7502:132,-22,53,0,0,0.129138 -34093,7502:131,-21,53,0,0,0.118284 -34094,7502:130,-20,53,0,0,0.127415 -34095,7501:239,-19,53,0,0,0.122815 -34096,7501:238,-18,53,0,0,0.119188 -34097,7501:237,-17,53,0,0,0.117526 -34098,7501:236,-16,53,0,0,0.110048 -34099,7501:235,-15,53,0,0,0.105126 -34100,7501:134,-14,53,0,0,0.111373 -34101,7501:133,-13,53,0,0,0.111923 -34102,7501:132,-12,53,0,0,0.123303 -34103,7501:131,-11,53,0,0,0.129415 -34104,7501:130,-10,53,0,0,0.14649 -34105,7500:239,-9,53,0,0,0.157068 -34106,7500:238,-8,53,0,0,0.161791 -34107,7500:237,-7,53,0,0,0.164611 -34108,7500:236,-6,53,0,0,0.152977 -34109,7500:235,-5,53,0,0,0.160943 -34110,7500:134,-4,53,0,0,0.162993 -34111,7500:133,-3,53,0,0,0.1695 -34112,7500:132,-2,53,0,0,0.18093 -34113,7500:131,-1,53,0,0,0.193897 -34114,1500:131,0,53,0,0,0.193319 -34115,1500:131,1,53,0,0,0.198139 -34116,1500:132,2,53,0,0,0.195847 -34117,1501:130,10,53,0,0,0.154917 -34118,1501:131,11,53,0,0,0.158228 -34119,1501:132,12,53,0,0,0.147547 -34120,1501:239,19,53,0,0,0.13792 -34121,1502:130,20,53,0,0,0.140022 -34122,7517:248,-178,54,0,0,0.0765093 -34123,7517:247,-177,54,0,0,0.0767056 -34124,7517:246,-176,54,0,0,0.0768806 -34125,7517:245,-175,54,0,0,0.0769754 -34126,7517:144,-174,54,0,0,0.0770704 -34127,7517:143,-173,54,0,0,0.0769168 -34128,7517:142,-172,54,0,0,0.0765603 -34129,7517:141,-171,54,0,0,0.0763427 -34130,7517:140,-170,54,0,0,0.0762775 -34131,7516:249,-169,54,0,0,0.0762267 -34132,7516:248,-168,54,0,0,0.0762991 -34133,7509:141,-91,54,0,0,0.0779519 -34134,7509:140,-90,54,0,0,0.0780184 -34135,7508:249,-89,54,0,0,0.083532 -34136,7508:248,-88,54,0,0,0.0825851 -34137,7508:247,-87,54,0,0,0.0829908 -34138,7508:246,-86,54,0,0,0.0835555 -34139,7508:245,-85,54,0,0,0.0834063 -34140,7508:144,-84,54,0,0,0.0837288 -34141,7508:143,-83,54,0,0,0.0835634 -34142,7508:142,-82,54,0,0,0.0832336 -34143,7508:141,-81,54,0,0,0.0836737 -34144,7508:140,-80,54,0,0,0.0837446 -34145,7507:249,-79,54,0,0,0.0829596 -34146,7507:248,-78,54,0,0,0.0824918 -34147,7507:247,-77,54,0,0,0.0815635 -34148,7507:246,-76,54,0,0,0.0815017 -34149,7507:245,-75,54,0,0,0.0817252 -34150,7507:144,-74,54,0,0,0.0812713 -34151,7507:143,-73,54,0,0,0.082251 -34152,7507:142,-72,54,0,0,0.0830064 -34153,7506:249,-69,54,0,0,0.0794567 -34154,7506:248,-68,54,0,0,0.079871 -34155,7506:247,-67,54,0,0,0.0804012 -34156,7506:246,-66,54,0,0,0.0783886 -34157,7506:245,-65,54,0,0,0.0797427 -34158,7505:248,-58,54,0,0,0.0768149 -34159,7505:247,-57,54,0,0,0.077856 -34160,7505:246,-56,54,0,0,0.0771873 -34161,7505:245,-55,54,0,0,0.0770046 -34162,7505:144,-54,54,0,0,0.0771799 -34163,7505:143,-53,54,0,0,0.0770338 -34164,7505:142,-52,54,0,0,0.0849986 -34165,7505:141,-51,54,0,0,0.137188 -34166,7505:140,-50,54,0,0,0.147237 -34167,7504:249,-49,54,0,0,0.134284 -34168,7504:248,-48,54,0,0,0.108846 -34169,7503:141,-31,54,0,0,0.0772018 -34170,7503:140,-30,54,0,0,0.0777232 -34171,7502:249,-29,54,0,0,0.0769024 -34172,7502:248,-28,54,0,0,0.0765093 -34173,7502:247,-27,54,0,0,0.076386 -34174,7502:246,-26,54,0,0,0.0764732 -34175,7502:245,-25,54,0,0,0.076553 -34176,7502:144,-24,54,0,0,0.0817019 -34177,7502:143,-23,54,0,0,0.0877551 -34178,7502:142,-22,54,0,0,0.0965598 -34179,7502:141,-21,54,0,0,0.103028 -34180,7502:140,-20,54,0,0,0.095623 -34181,7501:249,-19,54,0,0,0.0998351 -34182,7501:248,-18,54,0,0,0.0981943 -34183,7501:247,-17,54,0,0,0.103123 -34184,7501:246,-16,54,0,0,0.1053 -34185,7501:245,-15,54,0,0,0.108597 -34186,7501:144,-14,54,0,0,0.112969 -34187,7501:143,-13,54,0,0,0.117739 -34188,7501:142,-12,54,0,0,0.123281 -34189,7501:141,-11,54,0,0,0.132066 -34190,7501:140,-10,54,0,0,0.14544 -34191,7500:249,-9,54,0,0,0.149652 -34192,7500:248,-8,54,0,0,0.148259 -34193,7500:247,-7,54,0,0,0.150504 -34194,7500:246,-6,54,0,0,0.154501 -34195,7500:245,-5,54,0,0,0.155335 -34196,7500:144,-4,54,0,0,0.166884 -34197,7500:143,-3,54,0,0,0.175825 -34198,7500:142,-2,54,0,0,0.19356 -34199,7500:141,-1,54,0,0,0.188212 -34200,1500:141,0,54,0,0,0.18685 -34201,1500:141,1,54,0,0,0.195782 -34202,1500:142,2,54,0,0,0.187647 -34203,1501:140,10,54,0,0,0.130414 -34204,1501:141,11,54,0,0,0.134069 -34205,7518:350,-180,55,0,0,0.0768732 -34206,7517:459,-179,55,0,0,0.0768149 -34207,7517:458,-178,55,0,0,0.0767858 -34208,7517:457,-177,55,0,0,0.0767274 -34209,7517:456,-176,55,0,0,0.0771799 -34210,7517:455,-175,55,0,0,0.0775465 -34211,7517:354,-174,55,0,0,0.07751 -34212,7517:353,-173,55,0,0,0.0772459 -34213,7517:352,-172,55,0,0,0.0772166 -34214,7517:351,-171,55,0,0,0.0768149 -34215,7517:350,-170,55,0,0,0.0763064 -34216,7509:351,-91,55,0,0,0.0787307 -34217,7509:350,-90,55,0,0,0.0832649 -34218,7508:459,-89,55,0,0,0.0833825 -34219,7508:458,-88,55,0,0,0.0819335 -34220,7508:457,-87,55,0,0,0.082282 -34221,7508:456,-86,55,0,0,0.0827176 -34222,7508:455,-85,55,0,0,0.0830768 -34223,7508:354,-84,55,0,0,0.0832023 -34224,7508:353,-83,55,0,0,0.0828347 -34225,7508:352,-82,55,0,0,0.0821271 -34226,7508:351,-81,55,0,0,0.0821037 -34227,7508:350,-80,55,0,0,0.0824683 -34228,7507:459,-79,55,0,0,0.0821271 -34229,7507:458,-78,55,0,0,0.08181 -34230,7507:457,-77,55,0,0,0.0808581 -34231,7507:456,-76,55,0,0,0.0805761 -34232,7507:455,-75,55,0,0,0.0807131 -34233,7507:354,-74,55,0,0,0.0808276 -34234,7507:352,-72,55,0,0,0.0813711 -34235,7507:351,-71,55,0,0,0.0810875 -34236,7507:350,-70,55,0,0,0.0789322 -34237,7506:459,-69,55,0,0,0.0794342 -34238,7506:458,-68,55,0,0,0.0787532 -34239,7506:457,-67,55,0,0,0.078085 -34240,7506:456,-66,55,0,0,0.0787755 -34241,7506:455,-65,55,0,0,0.0758946 -34242,7505:458,-58,55,0,0,0.0788128 -34243,7505:455,-55,55,0,0,0.0762558 -34244,7505:354,-54,55,0,0,0.0770922 -34245,7505:353,-53,55,0,0,0.077136 -34246,7505:352,-52,55,0,0,0.0817252 -34247,7505:351,-51,55,0,0,0.0992915 -34248,7505:350,-50,55,0,0,0.132231 -34249,7504:459,-49,55,0,0,0.132656 -34250,7504:458,-48,55,0,0,0.108986 -34251,7502:456,-26,55,0,0,0.0763064 -34252,7502:455,-25,55,0,0,0.0762918 -34253,7502:354,-24,55,0,0,0.0765384 -34254,7502:353,-23,55,0,0,0.0769899 -34255,7502:352,-22,55,0,0,0.0782476 -34256,7502:351,-21,55,0,0,0.0815557 -34257,7502:350,-20,55,0,0,0.0879775 -34258,7501:459,-19,55,0,0,0.0981036 -34259,7501:458,-18,55,0,0,0.101088 -34260,7501:457,-17,55,0,0,0.104471 -34261,7501:456,-16,55,0,0,0.107075 -34262,7501:455,-15,55,0,0,0.109696 -34263,7501:354,-14,55,0,0,0.112107 -34264,7501:353,-13,55,0,0,0.116686 -34265,7501:352,-12,55,0,0,0.122329 -34266,7501:351,-11,55,0,0,0.12945 -34267,7501:350,-10,55,0,0,0.137481 -34268,7500:459,-9,55,0,0,0.141202 -34269,7500:458,-8,55,0,0,0.143901 -34270,7500:457,-7,55,0,0,0.147508 -34271,7500:456,-6,55,0,0,0.154917 -34272,7500:455,-5,55,0,0,0.16556 -34273,7500:354,-4,55,0,0,0.170646 -34274,7500:353,-3,55,0,0,0.174489 -34275,7500:352,-2,55,0,0,0.186678 -34276,7500:351,-1,55,0,0,0.185434 -34277,1500:351,0,55,0,0,0.183579 -34278,1500:351,1,55,0,0,0.186866 -34279,1500:352,2,55,0,0,0.191499 -34280,1501:351,11,55,0,0,0.142666 -34281,1517:351,171,55,0,0,0.0805912 -34282,1518:350,180,55,0,0,0.0768732 -34283,7518:360,-180,56,0,0,0.0766839 -34284,7517:469,-179,56,0,0,0.0765893 -34285,7517:468,-178,56,0,0,0.0768003 -34286,7517:467,-177,56,0,0,0.0775026 -34287,7517:466,-176,56,0,0,0.0781588 -34288,7517:465,-175,56,0,0,0.0780701 -34289,7517:364,-174,56,0,0,0.0775613 -34290,7517:363,-173,56,0,0,0.0770996 -34291,7509:360,-90,56,0,0,0.0822899 -34292,7508:469,-89,56,0,0,0.0820805 -34293,7508:468,-88,56,0,0,0.0815635 -34294,7508:467,-87,56,0,0,0.0817483 -34295,7508:466,-86,56,0,0,0.0822899 -34296,7508:465,-85,56,0,0,0.0828423 -34297,7508:364,-84,56,0,0,0.0819335 -34298,7508:363,-83,56,0,0,0.081548 -34299,7508:362,-82,56,0,0,0.0815635 -34300,7508:361,-81,56,0,0,0.0813866 -34301,7508:360,-80,56,0,0,0.0814942 -34302,7507:469,-79,56,0,0,0.0815327 -34303,7507:468,-78,56,0,0,0.0808887 -34304,7507:467,-77,56,0,0,0.0796824 -34305,7507:466,-76,56,0,0,0.0777379 -34306,7507:465,-75,56,0,0,0.0791266 -34307,7507:364,-74,56,0,0,0.0784555 -34308,7507:363,-73,56,0,0,0.0785299 -34309,7507:362,-72,56,0,0,0.0803101 -34310,7507:361,-71,56,0,0,0.0795393 -34311,7506:468,-68,56,0,0,0.078218 -34312,7506:467,-67,56,0,0,0.0785446 -34313,7506:466,-66,56,0,0,0.0766839 -34314,7505:468,-58,56,0,0,0.0791717 -34315,7505:363,-53,56,0,0,0.0768585 -34316,7505:362,-52,56,0,0,0.0770849 -34317,7505:361,-51,56,0,0,0.0770922 -34318,7505:360,-50,56,0,0,0.0917501 -34319,7504:469,-49,56,0,0,0.129045 -34320,7504:468,-48,56,0,0,0.101979 -34321,7504:467,-47,56,0,0,0.0865292 -34322,7502:364,-24,56,0,0,0.0766621 -34323,7502:363,-23,56,0,0,0.0764659 -34324,7502:362,-22,56,0,0,0.0764659 -34325,7502:361,-21,56,0,0,0.0781071 -34326,7502:360,-20,56,0,0,0.0923854 -34327,7501:469,-19,56,0,0,0.10002 -34328,7501:468,-18,56,0,0,0.102658 -34329,7501:467,-17,56,0,0,0.102658 -34330,7501:466,-16,56,0,0,0.104375 -34331,7501:465,-15,56,0,0,0.109185 -34332,7501:364,-14,56,0,0,0.111923 -34333,7501:363,-13,56,0,0,0.117686 -34334,7501:362,-12,56,0,0,0.123971 -34335,7501:361,-11,56,0,0,0.127689 -34336,7501:360,-10,56,0,0,0.134188 -34337,7500:469,-9,56,0,0,0.138348 -34338,7500:468,-8,56,0,0,0.137761 -34339,7500:467,-7,56,0,0,0.142666 -34340,7500:466,-6,56,0,0,0.145913 -34341,7500:465,-5,56,0,0,0.154945 -34342,7500:364,-4,56,0,0,0.161637 -34343,7500:363,-3,56,0,0,0.173898 -34344,7500:362,-2,56,0,0,0.181829 -34345,7500:361,-1,56,0,0,0.187522 -34346,1500:361,0,56,0,0,0.183625 -34347,1500:361,1,56,0,0,0.18534 -34348,1500:362,2,56,0,0,0.173102 -34349,1501:360,10,56,0,0,0.130146 -34350,1501:361,11,56,0,0,0.151452 -34351,1501:362,12,56,0,0,0.131443 -34352,1516:465,165,56,0,0,0.0793064 -34353,1516:467,167,56,0,0,0.0784258 -34354,1516:468,168,56,0,0,0.0782255 -34355,1516:469,169,56,0,0,0.077937 -34356,1517:467,177,56,0,0,0.0772166 -34357,1517:468,178,56,0,0,0.0772018 -34358,1517:469,179,56,0,0,0.0769024 -34359,1518:360,180,56,0,0,0.0766839 -34360,7518:370,-180,57,0,0,0.0772311 -34361,7517:479,-179,57,0,0,0.0771433 -34362,7517:478,-178,57,0,0,0.0776275 -34363,7517:477,-177,57,0,0,0.0777821 -34364,7517:476,-176,57,0,0,0.077974 -34365,7517:475,-175,57,0,0,0.0784036 -34366,7517:374,-174,57,0,0,0.0776938 -34367,7517:373,-173,57,0,0,0.0769315 -34368,7517:372,-172,57,0,0,0.0762123 -34369,7517:371,-171,57,0,0,0.0758443 -34370,7509:370,-90,57,0,0,0.0795845 -34371,7508:479,-89,57,0,0,0.0813329 -34372,7508:478,-88,57,0,0,0.0808276 -34373,7508:477,-87,57,0,0,0.0812254 -34374,7508:476,-86,57,0,0,0.0818486 -34375,7508:475,-85,57,0,0,0.0820961 -34376,7508:374,-84,57,0,0,0.0811487 -34377,7508:373,-83,57,0,0,0.0808504 -34378,7508:372,-82,57,0,0,0.0811487 -34379,7508:371,-81,57,0,0,0.0811104 -34380,7508:370,-80,57,0,0,0.0810109 -34381,7507:479,-79,57,0,0,0.0808581 -34382,7507:478,-78,57,0,0,0.0805227 -34383,7507:477,-77,57,0,0,0.0788502 -34384,7507:374,-74,57,0,0,0.0785074 -34385,7507:373,-73,57,0,0,0.0784927 -34386,7507:372,-72,57,0,0,0.0778706 -34387,7507:371,-71,57,0,0,0.0777821 -34388,7507:370,-70,57,0,0,0.0783071 -34389,7506:479,-69,57,0,0,0.0779961 -34390,7505:478,-58,57,0,0,0.0765747 -34391,7505:374,-54,57,0,0,0.0768585 -34392,7505:373,-53,57,0,0,0.0769534 -34393,7505:372,-52,57,0,0,0.0767347 -34394,7505:371,-51,57,0,0,0.0771288 -34395,7505:370,-50,57,0,0,0.0793215 -34396,7504:479,-49,57,0,0,0.0895396 -34397,7504:478,-48,57,0,0,0.114346 -34398,7504:477,-47,57,0,0,0.11493 -34399,7504:476,-46,57,0,0,0.109345 -34400,7504:475,-45,57,0,0,0.102111 -34401,7502:475,-25,57,0,0,0.0780701 -34402,7502:373,-23,57,0,0,0.0764369 -34403,7502:372,-22,57,0,0,0.0764369 -34404,7502:371,-21,57,0,0,0.0768367 -34405,7502:370,-20,57,0,0,0.078011 -34406,7501:479,-19,57,0,0,0.0832023 -34407,7501:478,-18,57,0,0,0.0932853 -34408,7501:477,-17,57,0,0,0.103513 -34409,7501:476,-16,57,0,0,0.106126 -34410,7501:475,-15,57,0,0,0.106879 -34411,7501:374,-14,57,0,0,0.106087 -34412,7501:373,-13,57,0,0,0.111841 -34413,7501:372,-12,57,0,0,0.126719 -34414,7501:371,-11,57,0,0,0.129057 -34415,7501:370,-10,57,0,0,0.130881 -34416,7500:479,-9,57,0,0,0.134093 -34417,7500:478,-8,57,0,0,0.135748 -34418,7500:477,-7,57,0,0,0.13742 -34419,7500:476,-6,57,0,0,0.137456 -34420,7500:475,-5,57,0,0,0.137932 -34421,7500:374,-4,57,0,0,0.14356 -34422,7500:373,-3,57,0,0,0.174785 -34423,7500:372,-2,57,0,0,0.183117 -34424,7500:371,-1,57,0,0,0.184798 -34425,1500:371,0,57,0,0,0.184736 -34426,1500:371,1,57,0,0,0.184242 -34427,1500:372,2,57,0,0,0.188495 -34428,1501:370,10,57,0,0,0.110643 -34429,1501:371,11,57,0,0,0.144104 -34430,1501:372,12,57,0,0,0.12014 -34431,1516:475,165,57,0,0,0.0791717 -34432,1516:476,166,57,0,0,0.0789247 -34433,1516:477,167,57,0,0,0.0786936 -34434,1516:478,168,57,0,0,0.0784333 -34435,1516:479,169,57,0,0,0.0781663 -34436,1517:370,170,57,0,0,0.0780331 -34437,1517:371,171,57,0,0,0.077878 -34438,1517:372,172,57,0,0,0.0777012 -34439,1517:373,173,57,0,0,0.0775762 -34440,1517:374,174,57,0,0,0.077451 -34441,1517:475,175,57,0,0,0.0773559 -34442,1517:476,176,57,0,0,0.0772459 -34443,1517:477,177,57,0,0,0.0772385 -34444,1517:478,178,57,0,0,0.0767567 -34445,1517:479,179,57,0,0,0.0768076 -34446,1518:370,180,57,0,0,0.0772311 -34447,7518:380,-180,58,0,0,0.0771433 -34448,7517:489,-179,58,0,0,0.0770556 -34449,7517:488,-178,58,0,0,0.0767785 -34450,7517:487,-177,58,0,0,0.0762629 -34451,7517:486,-176,58,0,0,0.0760822 -34452,7517:485,-175,58,0,0,0.0765603 -34453,7517:384,-174,58,0,0,0.0772532 -34454,7517:383,-173,58,0,0,0.0775687 -34455,7517:382,-172,58,0,0,0.0767929 -34456,7517:381,-171,58,0,0,0.0760317 -34457,7508:489,-89,58,0,0,0.0779001 -34458,7508:488,-88,58,0,0,0.0815095 -34459,7508:487,-87,58,0,0,0.0803405 -34460,7508:486,-86,58,0,0,0.0806751 -34461,7508:485,-85,58,0,0,0.0806826 -34462,7508:384,-84,58,0,0,0.0803632 -34463,7508:383,-83,58,0,0,0.0807284 -34464,7508:382,-82,58,0,0,0.0807512 -34465,7508:381,-81,58,0,0,0.0805912 -34466,7508:380,-80,58,0,0,0.0802265 -34467,7507:489,-79,58,0,0,0.0799542 -34468,7507:488,-78,58,0,0,0.0797351 -34469,7507:487,-77,58,0,0,0.0782551 -34470,7507:486,-76,58,0,0,0.0785299 -34471,7507:485,-75,58,0,0,0.0784777 -34472,7507:384,-74,58,0,0,0.0771726 -34473,7507:381,-71,58,0,0,0.0776938 -34474,7507:380,-70,58,0,0,0.0774584 -34475,7506:489,-69,58,0,0,0.077819 -34476,7506:485,-65,58,0,0,0.0774217 -34477,7506:384,-64,58,0,0,0.0773559 -34478,7505:384,-54,58,0,0,0.0769534 -34479,7505:383,-53,58,0,0,0.0764586 -34480,7505:382,-52,58,0,0,0.0763571 -34481,7505:381,-51,58,0,0,0.0766548 -34482,7505:380,-50,58,0,0,0.07635 -34483,7504:489,-49,58,0,0,0.0785149 -34484,7504:488,-48,58,0,0,0.0882004 -34485,7504:487,-47,58,0,0,0.0892387 -34486,7504:384,-44,58,0,0,0.104769 -34487,7502:383,-23,58,0,0,0.0763427 -34488,7502:382,-22,58,0,0,0.0764223 -34489,7502:381,-21,58,0,0,0.0769973 -34490,7502:380,-20,58,0,0,0.0805761 -34491,7501:489,-19,58,0,0,0.0882415 -34492,7501:488,-18,58,0,0,0.092627 -34493,7501:487,-17,58,0,0,0.0944564 -34494,7501:486,-16,58,0,0,0.0981854 -34495,7501:485,-15,58,0,0,0.102092 -34496,7501:384,-14,58,0,0,0.10229 -34497,7501:383,-13,58,0,0,0.104634 -34498,7501:382,-12,58,0,0,0.115716 -34499,7501:381,-11,58,0,0,0.126515 -34500,7501:380,-10,58,0,0,0.133272 -34501,7500:489,-9,58,0,0,0.142527 -34502,7500:488,-8,58,0,0,0.143345 -34503,7500:487,-7,58,0,0,0.14521 -34504,7500:486,-6,58,0,0,0.140617 -34505,7500:485,-5,58,0,0,0.139134 -34506,7500:384,-4,58,0,0,0.158941 -34507,7500:383,-3,58,0,0,0.165673 -34508,7500:382,-2,58,0,0,0.168591 -34509,7500:381,-1,58,0,0,0.178295 -34510,1500:381,0,58,0,0,0.181554 -34511,1500:381,1,58,0,0,0.183995 -34512,1500:382,2,58,0,0,0.1748 -34513,1516:383,163,58,0,0,0.0797503 -34514,1516:384,164,58,0,0,0.0794643 -34515,1516:485,165,58,0,0,0.0791342 -34516,1516:486,166,58,0,0,0.0789099 -34517,1516:487,167,58,0,0,0.0786041 -34518,1516:488,168,58,0,0,0.0782329 -34519,1516:489,169,58,0,0,0.077878 -34520,1517:380,170,58,0,0,0.0776055 -34521,1517:381,171,58,0,0,0.0774732 -34522,1517:382,172,58,0,0,0.0773704 -34523,1517:383,173,58,0,0,0.0773192 -34524,1517:384,174,58,0,0,0.0772459 -34525,1517:485,175,58,0,0,0.077063 -34526,1517:486,176,58,0,0,0.0769242 -34527,1517:489,179,58,0,0,0.0764732 -34528,1518:380,180,58,0,0,0.0771433 -34529,7518:390,-180,59,0,0,0.0767858 -34530,7517:499,-179,59,0,0,0.0771947 -34531,7517:498,-178,59,0,0,0.0769315 -34532,7517:497,-177,59,0,0,0.0768294 -34533,7517:496,-176,59,0,0,0.0765747 -34534,7517:495,-175,59,0,0,0.0769754 -34535,7517:394,-174,59,0,0,0.0772899 -34536,7517:393,-173,59,0,0,0.0767347 -34537,7517:392,-172,59,0,0,0.0768514 -34538,7517:391,-171,59,0,0,0.0768367 -34539,7517:390,-170,59,0,0,0.0762267 -34540,7508:498,-88,59,0,0,0.0765022 -34541,7508:497,-87,59,0,0,0.0792764 -34542,7508:496,-86,59,0,0,0.0810875 -34543,7508:495,-85,59,0,0,0.0816173 -34544,7508:394,-84,59,0,0,0.0814865 -34545,7508:393,-83,59,0,0,0.0806293 -34546,7508:392,-82,59,0,0,0.0801962 -34547,7508:391,-81,59,0,0,0.0800901 -34548,7508:390,-80,59,0,0,0.079803 -34549,7507:499,-79,59,0,0,0.0790369 -34550,7507:498,-78,59,0,0,0.077878 -34551,7507:392,-72,59,0,0,0.0777747 -34552,7507:391,-71,59,0,0,0.076713 -34553,7507:390,-70,59,0,0,0.0768076 -34554,7506:499,-69,59,0,0,0.0767347 -34555,7506:498,-68,59,0,0,0.0767494 -34556,7506:497,-67,59,0,0,0.0770191 -34557,7506:496,-66,59,0,0,0.0770849 -34558,7506:495,-65,59,0,0,0.0771726 -34559,7506:394,-64,59,0,0,0.0775539 -34560,7506:393,-63,59,0,0,0.0779445 -34561,7505:495,-55,59,0,0,0.0773263 -34562,7505:394,-54,59,0,0,0.076742 -34563,7505:393,-53,59,0,0,0.0764369 -34564,7505:392,-52,59,0,0,0.0764732 -34565,7505:391,-51,59,0,0,0.0765166 -34566,7505:390,-50,59,0,0,0.0764442 -34567,7504:499,-49,59,0,0,0.0762267 -34568,7504:498,-48,59,0,0,0.0769168 -34569,7504:497,-47,59,0,0,0.0837052 -34570,7504:496,-46,59,0,0,0.0862212 -34571,7504:495,-45,59,0,0,0.105262 -34572,7502:394,-24,59,0,0,0.076524 -34573,7502:393,-23,59,0,0,0.076234 -34574,7502:392,-22,59,0,0,0.0762558 -34575,7502:391,-21,59,0,0,0.0766257 -34576,7502:390,-20,59,0,0,0.0784183 -34577,7501:499,-19,59,0,0,0.0851106 -34578,7501:498,-18,59,0,0,0.0899931 -34579,7501:497,-17,59,0,0,0.0918013 -34580,7501:496,-16,59,0,0,0.0928344 -34581,7501:495,-15,59,0,0,0.0940968 -34582,7501:394,-14,59,0,0,0.0967753 -34583,7501:393,-13,59,0,0,0.0981308 -34584,7501:392,-12,59,0,0,0.0988697 -34585,7501:391,-11,59,0,0,0.108796 -34586,7501:390,-10,59,0,0,0.12656 -34587,7500:499,-9,59,0,0,0.144777 -34588,7500:498,-8,59,0,0,0.150124 -34589,7500:497,-7,59,0,0,0.148038 -34590,7500:496,-6,59,0,0,0.146696 -34591,7500:495,-5,59,0,0,0.147779 -34592,7500:394,-4,59,0,0,0.156024 -34593,7500:393,-3,59,0,0,0.157995 -34594,7500:392,-2,59,0,0,0.166827 -34595,7500:391,-1,59,0,0,0.167528 -34596,1500:391,0,59,0,0,0.176049 -34597,1500:391,1,59,0,0,0.179276 -34598,1515:499,159,59,0,0,0.0809115 -34599,1516:390,160,59,0,0,0.0806217 -34600,1516:391,161,59,0,0,0.0801812 -34601,1516:392,162,59,0,0,0.079705 -34602,1516:393,163,59,0,0,0.0794567 -34603,1516:394,164,59,0,0,0.0792615 -34604,1516:495,165,59,0,0,0.0790668 -34605,1516:496,166,59,0,0,0.0788203 -34606,1516:497,167,59,0,0,0.0785074 -34607,1516:498,168,59,0,0,0.078218 -34608,1516:499,169,59,0,0,0.0779814 -34609,1517:390,170,59,0,0,0.077819 -34610,1517:391,171,59,0,0,0.0775981 -34611,1517:392,172,59,0,0,0.0772532 -34612,1517:393,173,59,0,0,0.0770922 -34613,1517:394,174,59,0,0,0.0770409 -34614,1517:495,175,59,0,0,0.0770046 -34615,1517:496,176,59,0,0,0.0769754 -34616,1517:497,177,59,0,0,0.0769168 -34617,1517:498,178,59,0,0,0.0768149 -34618,1517:499,179,59,0,0,0.0767274 -34619,1518:390,180,59,0,0,0.0767858 -34620,7618:100,-180,60,0,0,0.0771067 -34621,7617:209,-179,60,0,0,0.0769315 -34622,7617:208,-178,60,0,0,0.0769899 -34623,7617:207,-177,60,0,0,0.0770849 -34624,7617:206,-176,60,0,0,0.0768659 -34625,7617:205,-175,60,0,0,0.0768076 -34626,7617:104,-174,60,0,0,0.0770117 -34627,7617:103,-173,60,0,0,0.0765603 -34628,7617:102,-172,60,0,0,0.0764442 -34629,7617:101,-171,60,0,0,0.076582 -34630,7617:100,-170,60,0,0,0.0767638 -34631,7616:209,-169,60,0,0,0.0767347 -34632,7608:207,-87,60,0,0,0.0756572 -34633,7608:206,-86,60,0,0,0.0757937 -34634,7608:205,-85,60,0,0,0.0770338 -34635,7608:104,-84,60,0,0,0.0787009 -34636,7608:103,-83,60,0,0,0.079562 -34637,7608:102,-82,60,0,0,0.0809726 -34638,7608:101,-81,60,0,0,0.0803405 -34639,7608:100,-80,60,0,0,0.079856 -34640,7607:209,-79,60,0,0,0.0783961 -34641,7607:102,-72,60,0,0,0.0778042 -34642,7607:101,-71,60,0,0,0.0771726 -34643,7607:100,-70,60,0,0,0.0765022 -34644,7606:209,-69,60,0,0,0.0764876 -34645,7606:208,-68,60,0,0,0.0764803 -34646,7606:207,-67,60,0,0,0.0764659 -34647,7606:206,-66,60,0,0,0.0764513 -34648,7606:205,-65,60,0,0,0.0765384 -34649,7606:104,-64,60,0,0,0.0768514 -34650,7606:103,-63,60,0,0,0.0773118 -34651,7606:102,-62,60,0,0,0.077937 -34652,7606:101,-61,60,0,0,0.07827 -34653,7605:206,-56,60,0,0,0.0779519 -34654,7605:205,-55,60,0,0,0.0778485 -34655,7605:104,-54,60,0,0,0.0768806 -34656,7605:103,-53,60,0,0,0.0766328 -34657,7605:102,-52,60,0,0,0.0765166 -34658,7605:101,-51,60,0,0,0.0763716 -34659,7605:100,-50,60,0,0,0.0763643 -34660,7604:209,-49,60,0,0,0.0763354 -34661,7604:208,-48,60,0,0,0.0764296 -34662,7604:207,-47,60,0,0,0.0769097 -34663,7604:206,-46,60,0,0,0.0779889 -34664,7604:205,-45,60,0,0,0.0823441 -34665,7604:104,-44,60,0,0,0.0925493 -34666,7602:103,-23,60,0,0,0.0762918 -34667,7602:102,-22,60,0,0,0.076046 -34668,7602:101,-21,60,0,0,0.0762629 -34669,7602:100,-20,60,0,0,0.0766839 -34670,7601:209,-19,60,0,0,0.0769534 -34671,7601:208,-18,60,0,0,0.0778634 -34672,7601:207,-17,60,0,0,0.0801736 -34673,7601:206,-16,60,0,0,0.0833825 -34674,7601:205,-15,60,0,0,0.0905498 -34675,7601:104,-14,60,0,0,0.0955341 -34676,7601:103,-13,60,0,0,0.0953213 -34677,7601:102,-12,60,0,0,0.0949144 -34678,7601:101,-11,60,0,0,0.0957741 -34679,7601:100,-10,60,0,0,0.102583 -34680,7600:209,-9,60,0,0,0.126549 -34681,7600:208,-8,60,0,0,0.137761 -34682,7600:207,-7,60,0,0,0.150006 -34683,7600:206,-6,60,0,0,0.151611 -34684,7600:205,-5,60,0,0,0.151136 -34685,7600:104,-4,60,0,0,0.150215 -34686,7600:103,-3,60,0,0,0.16104 -34687,7600:102,-2,60,0,0,0.163189 -34688,7600:101,-1,60,0,0,0.163287 -34689,1600:101,0,60,0,0,0.172926 -34690,1600:101,1,60,0,0,0.17375 -34691,1600:102,2,60,0,0,0.179745 -34692,1615:209,159,60,0,0,0.0802492 -34693,1616:100,160,60,0,0,0.0799692 -34694,1616:101,161,60,0,0,0.0797277 -34695,1616:102,162,60,0,0,0.0795995 -34696,1616:103,163,60,0,0,0.0794491 -34697,1616:104,164,60,0,0,0.0792464 -34698,1616:205,165,60,0,0,0.0790145 -34699,1616:206,166,60,0,0,0.0787084 -34700,1616:207,167,60,0,0,0.078359 -34701,1616:208,168,60,0,0,0.0780405 -34702,1616:209,169,60,0,0,0.0777675 -34703,1617:100,170,60,0,0,0.077679 -34704,1617:101,171,60,0,0,0.0775907 -34705,1617:102,172,60,0,0,0.0773263 -34706,1617:103,173,60,0,0,0.0771141 -34707,1617:104,174,60,0,0,0.0769825 -34708,1617:205,175,60,0,0,0.0769973 -34709,1617:206,176,60,0,0,0.0769168 -34710,1617:207,177,60,0,0,0.0768441 -34711,1617:208,178,60,0,0,0.0767785 -34712,1617:209,179,60,0,0,0.0766912 -34713,1618:100,180,60,0,0,0.0771067 -34714,7618:110,-180,61,0,0,0.0768877 -34715,7617:219,-179,61,0,0,0.0770556 -34716,7617:218,-178,61,0,0,0.0769754 -34717,7617:217,-177,61,0,0,0.0769681 -34718,7617:216,-176,61,0,0,0.0771141 -34719,7617:215,-175,61,0,0,0.0768659 -34720,7617:114,-174,61,0,0,0.0767567 -34721,7617:113,-173,61,0,0,0.0765457 -34722,7617:112,-172,61,0,0,0.0762558 -34723,7617:111,-171,61,0,0,0.076415 -34724,7617:110,-170,61,0,0,0.0772166 -34725,7616:219,-169,61,0,0,0.0773337 -34726,7616:218,-168,61,0,0,0.0772532 -34727,7616:217,-167,61,0,0,0.0762629 -34728,7616:216,-166,61,0,0,0.0762848 -34729,7608:112,-82,61,0,0,0.0775613 -34730,7608:111,-81,61,0,0,0.0794868 -34731,7608:110,-80,61,0,0,0.0787532 -34732,7607:219,-79,61,0,0,0.0790444 -34733,7607:218,-78,61,0,0,0.0794943 -34734,7607:217,-77,61,0,0,0.0773485 -34735,7607:113,-73,61,0,0,0.0775539 -34736,7607:112,-72,61,0,0,0.0776127 -34737,7607:111,-71,61,0,0,0.0772166 -34738,7607:110,-70,61,0,0,0.0770849 -34739,7606:219,-69,61,0,0,0.0768514 -34740,7606:218,-68,61,0,0,0.0766328 -34741,7606:217,-67,61,0,0,0.0767638 -34742,7606:216,-66,61,0,0,0.0766839 -34743,7606:215,-65,61,0,0,0.0764296 -34744,7606:111,-61,61,0,0,0.0781884 -34745,7605:114,-54,61,0,0,0.0768659 -34746,7605:113,-53,61,0,0,0.0765022 -34747,7605:112,-52,61,0,0,0.0762918 -34748,7605:111,-51,61,0,0,0.0764369 -34749,7605:110,-50,61,0,0,0.0762848 -34750,7604:219,-49,61,0,0,0.0763427 -34751,7604:218,-48,61,0,0,0.0777232 -34752,7604:217,-47,61,0,0,0.0815095 -34753,7604:216,-46,61,0,0,0.0860592 -34754,7602:112,-22,61,0,0,0.0761256 -34755,7602:111,-21,61,0,0,0.0761183 -34756,7602:110,-20,61,0,0,0.0765893 -34757,7601:219,-19,61,0,0,0.077224 -34758,7601:218,-18,61,0,0,0.0792691 -34759,7601:217,-17,61,0,0,0.0844409 -34760,7601:216,-16,61,0,0,0.0899846 -34761,7601:215,-15,61,0,0,0.0925838 -34762,7601:114,-14,61,0,0,0.094237 -34763,7601:113,-13,61,0,0,0.0932593 -34764,7601:112,-12,61,0,0,0.0927394 -34765,7601:111,-11,61,0,0,0.0931811 -34766,7601:110,-10,61,0,0,0.0948438 -34767,7600:219,-9,61,0,0,0.119112 -34768,7600:218,-8,61,0,0,0.140592 -34769,7600:217,-7,61,0,0,0.139824 -34770,7600:216,-6,61,0,0,0.148908 -34771,7600:215,-5,61,0,0,0.150229 -34772,7600:114,-4,61,0,0,0.152565 -34773,7600:113,-3,61,0,0,0.156105 -34774,7600:112,-2,61,0,0,0.153898 -34775,7600:111,-1,61,0,0,0.163161 -34776,1600:111,0,61,0,0,0.175959 -34777,1600:111,1,61,0,0,0.176183 -34778,1600:112,2,61,0,0,0.17979 -34779,1600:113,3,61,0,0,0.148817 -34780,1601:219,19,61,0,0,0.0927913 -34781,1602:110,20,61,0,0,0.094237 -34782,1602:112,22,61,0,0,0.0881838 -34783,1615:110,150,61,0,0,0.0812332 -34784,1615:111,151,61,0,0,0.0811104 -34785,1615:112,152,61,0,0,0.0810415 -34786,1615:216,156,61,0,0,0.0806751 -34787,1615:217,157,61,0,0,0.0804696 -34788,1615:218,158,61,0,0,0.0801736 -34789,1615:219,159,61,0,0,0.079939 -34790,1616:110,160,61,0,0,0.0798408 -34791,1616:111,161,61,0,0,0.0797653 -34792,1616:112,162,61,0,0,0.0796222 -34793,1616:113,163,61,0,0,0.0794643 -34794,1616:114,164,61,0,0,0.0789771 -34795,1616:215,165,61,0,0,0.0785002 -34796,1616:216,166,61,0,0,0.0780184 -34797,1616:217,167,61,0,0,0.0776127 -34798,1616:218,168,61,0,0,0.0774071 -34799,1616:219,169,61,0,0,0.0772678 -34800,1617:110,170,61,0,0,0.0772018 -34801,1617:111,171,61,0,0,0.0771654 -34802,1617:112,172,61,0,0,0.0770922 -34803,1617:113,173,61,0,0,0.0769754 -34804,1617:114,174,61,0,0,0.0768659 -34805,1617:215,175,61,0,0,0.0767274 -34806,1617:216,176,61,0,0,0.0766184 -34807,1617:217,177,61,0,0,0.0764803 -34808,1617:218,178,61,0,0,0.0764079 -34809,1617:219,179,61,0,0,0.0765603 -34810,1618:110,180,61,0,0,0.0768877 -34811,7618:120,-180,62,0,0,0.0766839 -34812,7617:229,-179,62,0,0,0.0765967 -34813,7617:228,-178,62,0,0,0.076582 -34814,7617:227,-177,62,0,0,0.0769754 -34815,7617:226,-176,62,0,0,0.0771947 -34816,7617:225,-175,62,0,0,0.0770338 -34817,7617:124,-174,62,0,0,0.0773852 -34818,7617:123,-173,62,0,0,0.0774291 -34819,7617:122,-172,62,0,0,0.0770046 -34820,7617:121,-171,62,0,0,0.0768732 -34821,7617:120,-170,62,0,0,0.0770191 -34822,7616:229,-169,62,0,0,0.0771873 -34823,7616:228,-168,62,0,0,0.0769462 -34824,7616:227,-167,62,0,0,0.0770338 -34825,7616:226,-166,62,0,0,0.0772751 -34826,7616:225,-165,62,0,0,0.0769462 -34827,7616:124,-164,62,0,0,0.0767929 -34828,7616:123,-163,62,0,0,0.0768076 -34829,7616:122,-162,62,0,0,0.0769024 -34830,7616:121,-161,62,0,0,0.0769462 -34831,7616:120,-160,62,0,0,0.076742 -34832,7615:229,-159,62,0,0,0.0770191 -34833,7607:226,-76,62,0,0,0.0766475 -34834,7607:123,-73,62,0,0,0.0777084 -34835,7607:121,-71,62,0,0,0.0768221 -34836,7607:120,-70,62,0,0,0.0771433 -34837,7606:229,-69,62,0,0,0.0768441 -34838,7606:228,-68,62,0,0,0.076742 -34839,7606:227,-67,62,0,0,0.0767567 -34840,7606:226,-66,62,0,0,0.0768732 -34841,7606:225,-65,62,0,0,0.0764586 -34842,7606:124,-64,62,0,0,0.0765457 -34843,7606:122,-62,62,0,0,0.0765457 -34844,7605:124,-54,62,0,0,0.0767274 -34845,7605:123,-53,62,0,0,0.0765457 -34846,7605:122,-52,62,0,0,0.0762485 -34847,7605:121,-51,62,0,0,0.0764006 -34848,7605:120,-50,62,0,0,0.0765384 -34849,7604:229,-49,62,0,0,0.0763933 -34850,7604:228,-48,62,0,0,0.0773559 -34851,7604:227,-47,62,0,0,0.0796673 -34852,7604:226,-46,62,0,0,0.081448 -34853,7604:225,-45,62,0,0,0.0844649 -34854,7602:121,-21,62,0,0,0.076039 -34855,7602:120,-20,62,0,0,0.0762123 -34856,7601:229,-19,62,0,0,0.0773118 -34857,7601:228,-18,62,0,0,0.0811029 -34858,7601:227,-17,62,0,0,0.0848709 -34859,7601:226,-16,62,0,0,0.0862291 -34860,7601:225,-15,62,0,0,0.087173 -34861,7601:124,-14,62,0,0,0.0886723 -34862,7601:123,-13,62,0,0,0.0909143 -34863,7601:122,-12,62,0,0,0.0928777 -34864,7601:121,-11,62,0,0,0.0933288 -34865,7601:120,-10,62,0,0,0.0938432 -34866,7600:229,-9,62,0,0,0.0978763 -34867,7600:228,-8,62,0,0,0.117942 -34868,7600:227,-7,62,0,0,0.135591 -34869,7600:226,-6,62,0,0,0.140035 -34870,7600:225,-5,62,0,0,0.15327 -34871,7600:124,-4,62,0,0,0.150964 -34872,7600:123,-3,62,0,0,0.151942 -34873,7600:122,-2,62,0,0,0.159891 -34874,7600:121,-1,62,0,0,0.167313 -34875,1600:121,0,62,0,0,0.177244 -34876,1600:121,1,62,0,0,0.180412 -34877,1600:122,2,62,0,0,0.177499 -34878,1600:123,3,62,0,0,0.179503 -34879,1600:124,4,62,0,0,0.177859 -34880,1601:226,16,62,0,0,0.0957918 -34881,1601:227,17,62,0,0,0.102706 -34882,1601:228,18,62,0,0,0.0983127 -34883,1601:229,19,62,0,0,0.0982763 -34884,1602:120,20,62,0,0,0.104087 -34885,1602:121,21,62,0,0,0.10448 -34886,1614:226,146,62,0,0,0.0821581 -34887,1614:227,147,62,0,0,0.0819182 -34888,1614:229,149,62,0,0,0.0811871 -34889,1615:120,150,62,0,0,0.0805531 -34890,1615:121,151,62,0,0,0.0802492 -34891,1615:122,152,62,0,0,0.0801509 -34892,1615:123,153,62,0,0,0.0802872 -34893,1615:124,154,62,0,0,0.0807207 -34894,1615:226,156,62,0,0,0.0807056 -34895,1615:227,157,62,0,0,0.0805531 -34896,1615:228,158,62,0,0,0.0803025 -34897,1615:229,159,62,0,0,0.0800525 -34898,1616:120,160,62,0,0,0.07969 -34899,1616:121,161,62,0,0,0.0793666 -34900,1616:122,162,62,0,0,0.0792165 -34901,1616:123,163,62,0,0,0.0787009 -34902,1616:124,164,62,0,0,0.0781514 -34903,1616:225,165,62,0,0,0.0777232 -34904,1616:226,166,62,0,0,0.0774365 -34905,1616:227,167,62,0,0,0.0772166 -34906,1616:228,168,62,0,0,0.077063 -34907,1616:229,169,62,0,0,0.0769534 -34908,1617:120,170,62,0,0,0.0768732 -34909,1617:121,171,62,0,0,0.0768221 -34910,1617:122,172,62,0,0,0.0767858 -34911,1617:123,173,62,0,0,0.0767567 -34912,1617:124,174,62,0,0,0.0767203 -34913,1617:225,175,62,0,0,0.0766839 -34914,1617:226,176,62,0,0,0.0766401 -34915,1617:227,177,62,0,0,0.0765967 -34916,1617:228,178,62,0,0,0.076415 -34917,1617:229,179,62,0,0,0.0763716 -34918,1618:120,180,62,0,0,0.0766839 -34919,7618:130,-180,63,0,0,0.0764006 -34920,7617:239,-179,63,0,0,0.0763427 -34921,7617:238,-178,63,0,0,0.0765676 -34922,7617:237,-177,63,0,0,0.077224 -34923,7617:236,-176,63,0,0,0.0773924 -34924,7617:235,-175,63,0,0,0.077297 -34925,7617:134,-174,63,0,0,0.0771507 -34926,7617:133,-173,63,0,0,0.0773263 -34927,7617:132,-172,63,0,0,0.0774584 -34928,7617:131,-171,63,0,0,0.077224 -34929,7617:130,-170,63,0,0,0.0770996 -34930,7616:239,-169,63,0,0,0.0770264 -34931,7616:238,-168,63,0,0,0.0767929 -34932,7616:237,-167,63,0,0,0.0767929 -34933,7616:236,-166,63,0,0,0.0769315 -34934,7616:235,-165,63,0,0,0.077224 -34935,7616:134,-164,63,0,0,0.0771067 -34936,7616:133,-163,63,0,0,0.0772751 -34937,7616:132,-162,63,0,0,0.0773559 -34938,7616:131,-161,63,0,0,0.0773924 -34939,7616:130,-160,63,0,0,0.0773411 -34940,7615:239,-159,63,0,0,0.0773118 -34941,7615:238,-158,63,0,0,0.0773192 -34942,7615:237,-157,63,0,0,0.0773704 -34943,7615:236,-156,63,0,0,0.0773998 -34944,7615:235,-155,63,0,0,0.0775026 -34945,7615:133,-153,63,0,0,0.0783218 -34946,7607:133,-73,63,0,0,0.0780035 -34947,7606:237,-67,63,0,0,0.0767274 -34948,7606:236,-66,63,0,0,0.0768076 -34949,7606:235,-65,63,0,0,0.0763137 -34950,7606:134,-64,63,0,0,0.0763137 -34951,7606:133,-63,63,0,0,0.0767274 -34952,7606:132,-62,63,0,0,0.0762775 -34953,7606:131,-61,63,0,0,0.0771799 -34954,7605:134,-54,63,0,0,0.076713 -34955,7605:133,-53,63,0,0,0.0762413 -34956,7605:132,-52,63,0,0,0.0760606 -34957,7605:131,-51,63,0,0,0.0762267 -34958,7605:130,-50,63,0,0,0.076386 -34959,7604:239,-49,63,0,0,0.076205 -34960,7604:238,-48,63,0,0,0.0762775 -34961,7604:237,-47,63,0,0,0.0784555 -34962,7604:236,-46,63,0,0,0.0791566 -34963,7604:235,-45,63,0,0,0.0782775 -34964,7604:134,-44,63,0,0,0.0770996 -34965,7602:132,-22,63,0,0,0.0762123 -34966,7602:131,-21,63,0,0,0.0761545 -34967,7602:130,-20,63,0,0,0.0762558 -34968,7601:239,-19,63,0,0,0.0759811 -34969,7601:238,-18,63,0,0,0.0771433 -34970,7601:237,-17,63,0,0,0.0854633 -34971,7601:236,-16,63,0,0,0.093103 -34972,7601:235,-15,63,0,0,0.08764 -34973,7601:134,-14,63,0,0,0.0888884 -34974,7601:133,-13,63,0,0,0.091212 -34975,7601:132,-12,63,0,0,0.0926961 -34976,7601:131,-11,63,0,0,0.094395 -34977,7601:130,-10,63,0,0,0.0939392 -34978,7600:239,-9,63,0,0,0.0994388 -34979,7600:238,-8,63,0,0,0.124676 -34980,7600:237,-7,63,0,0,0.147301 -34981,7600:236,-6,63,0,0,0.151743 -34982,7600:235,-5,63,0,0,0.1543 -34983,7600:134,-4,63,0,0,0.163329 -34984,7600:133,-3,63,0,0,0.168246 -34985,7600:132,-2,63,0,0,0.173147 -34986,7600:131,-1,63,0,0,0.176929 -34987,1600:131,0,63,0,0,0.175127 -34988,1600:131,1,63,0,0,0.174252 -34989,1600:132,2,63,0,0,0.173102 -34990,1600:133,3,63,0,0,0.1679 -34991,1600:134,4,63,0,0,0.176257 -34992,1600:235,5,63,0,0,0.165219 -34993,1602:130,20,63,0,0,0.109456 -34994,1602:131,21,63,0,0,0.10735 -34995,1614:237,147,63,0,0,0.0827254 -34996,1614:238,148,63,0,0,0.0820496 -34997,1614:239,149,63,0,0,0.0812254 -34998,1615:130,150,63,0,0,0.0808122 -34999,1615:131,151,63,0,0,0.0803479 -35000,1615:132,152,63,0,0,0.0801204 -35001,1615:133,153,63,0,0,0.0801812 -35002,1615:134,154,63,0,0,0.0804392 -35003,1615:235,155,63,0,0,0.0803479 -35004,1615:236,156,63,0,0,0.0803935 -35005,1615:237,157,63,0,0,0.0803101 -35006,1615:238,158,63,0,0,0.0798256 -35007,1616:131,161,63,0,0,0.0787755 -35008,1616:132,162,63,0,0,0.0782255 -35009,1616:133,163,63,0,0,0.0778634 -35010,1616:134,164,63,0,0,0.0776127 -35011,1616:235,165,63,0,0,0.0773485 -35012,1616:236,166,63,0,0,0.0770996 -35013,1616:237,167,63,0,0,0.0769024 -35014,1616:238,168,63,0,0,0.0767347 -35015,1616:239,169,63,0,0,0.0765967 -35016,1617:130,170,63,0,0,0.0765457 -35017,1617:131,171,63,0,0,0.0765384 -35018,1617:132,172,63,0,0,0.0766184 -35019,1617:133,173,63,0,0,0.0766328 -35020,1617:134,174,63,0,0,0.0765967 -35021,1617:235,175,63,0,0,0.0765603 -35022,1617:236,176,63,0,0,0.0765457 -35023,1617:237,177,63,0,0,0.0765384 -35024,1617:238,178,63,0,0,0.0765384 -35025,1617:239,179,63,0,0,0.0764803 -35026,1618:130,180,63,0,0,0.0764006 -35027,7618:140,-180,64,0,0,0.0764369 -35028,7617:249,-179,64,0,0,0.0763643 -35029,7617:248,-178,64,0,0,0.076386 -35030,7617:247,-177,64,0,0,0.0767347 -35031,7617:246,-176,64,0,0,0.0765384 -35032,7617:245,-175,64,0,0,0.0767274 -35033,7617:144,-174,64,0,0,0.0771141 -35034,7617:143,-173,64,0,0,0.0772166 -35035,7617:142,-172,64,0,0,0.0769825 -35036,7617:141,-171,64,0,0,0.0767274 -35037,7617:140,-170,64,0,0,0.076582 -35038,7616:249,-169,64,0,0,0.0765967 -35039,7616:248,-168,64,0,0,0.0766401 -35040,7616:247,-167,64,0,0,0.0766621 -35041,7616:246,-166,64,0,0,0.0766765 -35042,7616:245,-165,64,0,0,0.0767347 -35043,7616:144,-164,64,0,0,0.0766765 -35044,7616:143,-163,64,0,0,0.0767494 -35045,7616:142,-162,64,0,0,0.0767858 -35046,7616:141,-161,64,0,0,0.0769315 -35047,7616:140,-160,64,0,0,0.0770409 -35048,7615:249,-159,64,0,0,0.0770191 -35049,7615:248,-158,64,0,0,0.0768514 -35050,7615:247,-157,64,0,0,0.076742 -35051,7615:246,-156,64,0,0,0.0766475 -35052,7615:245,-155,64,0,0,0.0767347 -35053,7615:144,-154,64,0,0,0.0772311 -35054,7615:143,-153,64,0,0,0.0774365 -35055,7615:142,-152,64,0,0,0.0785446 -35056,7606:247,-67,64,0,0,0.0763354 -35057,7606:246,-66,64,0,0,0.0765022 -35058,7606:245,-65,64,0,0,0.0768441 -35059,7606:144,-64,64,0,0,0.076524 -35060,7606:142,-62,64,0,0,0.0765457 -35061,7605:245,-55,64,0,0,0.0766765 -35062,7605:144,-54,64,0,0,0.0764586 -35063,7605:143,-53,64,0,0,0.0761111 -35064,7605:142,-52,64,0,0,0.0759595 -35065,7605:141,-51,64,0,0,0.07614 -35066,7605:140,-50,64,0,0,0.0763281 -35067,7604:249,-49,64,0,0,0.0761978 -35068,7604:248,-48,64,0,0,0.0760679 -35069,7604:247,-47,64,0,0,0.0766548 -35070,7604:246,-46,64,0,0,0.0767638 -35071,7604:245,-45,64,0,0,0.0774071 -35072,7604:144,-44,64,0,0,0.0777158 -35073,7602:143,-23,64,0,0,0.0766038 -35074,7602:141,-21,64,0,0,0.0762702 -35075,7602:140,-20,64,0,0,0.0760895 -35076,7601:249,-19,64,0,0,0.0759234 -35077,7601:248,-18,64,0,0,0.0760317 -35078,7601:247,-17,64,0,0,0.0765603 -35079,7601:246,-16,64,0,0,0.0865699 -35080,7601:245,-15,64,0,0,0.0984587 -35081,7601:144,-14,64,0,0,0.0918614 -35082,7601:143,-13,64,0,0,0.101772 -35083,7601:142,-12,64,0,0,0.104039 -35084,7601:141,-11,64,0,0,0.103934 -35085,7601:140,-10,64,0,0,0.101706 -35086,7600:249,-9,64,0,0,0.112548 -35087,7600:248,-8,64,0,0,0.130437 -35088,7600:247,-7,64,0,0,0.138924 -35089,7600:246,-6,64,0,0,0.147689 -35090,7600:245,-5,64,0,0,0.14712 -35091,7600:144,-4,64,0,0,0.157886 -35092,7600:143,-3,64,0,0,0.171082 -35093,7600:142,-2,64,0,0,0.160818 -35094,7600:141,-1,64,0,0,0.163301 -35095,1600:141,0,64,0,0,0.167313 -35096,1600:141,1,64,0,0,0.166755 -35097,1600:142,2,64,0,0,0.160596 -35098,1600:143,3,64,0,0,0.163273 -35099,1600:144,4,64,0,0,0.167929 -35100,1600:245,5,64,0,0,0.174134 -35101,1600:246,6,64,0,0,0.172442 -35102,1601:140,10,64,0,0,0.160915 -35103,1602:141,21,64,0,0,0.104259 -35104,1614:248,148,64,0,0,0.0816251 -35105,1614:249,149,64,0,0,0.0802721 -35106,1615:140,150,64,0,0,0.0800599 -35107,1615:141,151,64,0,0,0.0803708 -35108,1615:142,152,64,0,0,0.0799088 -35109,1615:143,153,64,0,0,0.0797277 -35110,1615:248,158,64,0,0,0.0788053 -35111,1615:249,159,64,0,0,0.0786116 -35112,1616:140,160,64,0,0,0.0785446 -35113,1616:141,161,64,0,0,0.0782922 -35114,1616:142,162,64,0,0,0.0777747 -35115,1616:143,163,64,0,0,0.0772825 -35116,1616:144,164,64,0,0,0.0770775 -35117,1616:245,165,64,0,0,0.0769168 -35118,1616:246,166,64,0,0,0.0766621 -35119,1616:247,167,64,0,0,0.076415 -35120,1616:248,168,64,0,0,0.076234 -35121,1616:249,169,64,0,0,0.0761907 -35122,1617:140,170,64,0,0,0.0762702 -35123,1617:141,171,64,0,0,0.0763208 -35124,1617:142,172,64,0,0,0.0763643 -35125,1617:143,173,64,0,0,0.076415 -35126,1617:144,174,64,0,0,0.0764442 -35127,1617:245,175,64,0,0,0.0764659 -35128,1617:246,176,64,0,0,0.0765166 -35129,1617:247,177,64,0,0,0.0765313 -35130,1617:248,178,64,0,0,0.076524 -35131,1617:249,179,64,0,0,0.0764876 -35132,1618:140,180,64,0,0,0.0764369 -35133,7618:350,-180,65,0,0,0.0763643 -35134,7617:459,-179,65,0,0,0.0763281 -35135,7617:458,-178,65,0,0,0.0762702 -35136,7617:457,-177,65,0,0,0.0762702 -35137,7617:456,-176,65,0,0,0.0762558 -35138,7617:455,-175,65,0,0,0.0765893 -35139,7617:354,-174,65,0,0,0.0768149 -35140,7617:353,-173,65,0,0,0.0767858 -35141,7617:352,-172,65,0,0,0.0766184 -35142,7617:351,-171,65,0,0,0.0764586 -35143,7617:350,-170,65,0,0,0.0765384 -35144,7616:459,-169,65,0,0,0.076713 -35145,7616:458,-168,65,0,0,0.0767494 -35146,7616:457,-167,65,0,0,0.0766184 -35147,7616:456,-166,65,0,0,0.0766548 -35148,7616:455,-165,65,0,0,0.0766912 -35149,7616:354,-164,65,0,0,0.0767494 -35150,7616:353,-163,65,0,0,0.0767638 -35151,7616:352,-162,65,0,0,0.0768003 -35152,7616:351,-161,65,0,0,0.0766983 -35153,7616:350,-160,65,0,0,0.0767494 -35154,7615:459,-159,65,0,0,0.0766983 -35155,7615:458,-158,65,0,0,0.0765166 -35156,7615:457,-157,65,0,0,0.0764006 -35157,7615:456,-156,65,0,0,0.076386 -35158,7615:455,-155,65,0,0,0.0765022 -35159,7615:354,-154,65,0,0,0.0769168 -35160,7615:353,-153,65,0,0,0.0771433 -35161,7615:352,-152,65,0,0,0.0776127 -35162,7606:354,-64,65,0,0,0.0767567 -35163,7606:351,-61,65,0,0,0.0768221 -35164,7605:456,-56,65,0,0,0.0767274 -35165,7605:455,-55,65,0,0,0.0768003 -35166,7605:354,-54,65,0,0,0.0764803 -35167,7605:353,-53,65,0,0,0.0760317 -35168,7605:352,-52,65,0,0,0.0761834 -35169,7605:351,-51,65,0,0,0.0762629 -35170,7605:350,-50,65,0,0,0.0763064 -35171,7604:459,-49,65,0,0,0.0762485 -35172,7604:458,-48,65,0,0,0.076039 -35173,7604:457,-47,65,0,0,0.0760317 -35174,7604:456,-46,65,0,0,0.0761978 -35175,7604:455,-45,65,0,0,0.0763571 -35176,7604:354,-44,65,0,0,0.0768076 -35177,7604:353,-43,65,0,0,0.0755352 -35178,7602:351,-21,65,0,0,0.076234 -35179,7602:350,-20,65,0,0,0.0760099 -35180,7601:459,-19,65,0,0,0.0759379 -35181,7601:458,-18,65,0,0,0.0759595 -35182,7601:457,-17,65,0,0,0.0760749 -35183,7601:456,-16,65,0,0,0.0771141 -35184,7601:455,-15,65,0,0,0.0997334 -35185,7601:354,-14,65,0,0,0.112219 -35186,7601:353,-13,65,0,0,0.107311 -35187,7601:352,-12,65,0,0,0.104808 -35188,7601:351,-11,65,0,0,0.10738 -35189,7601:350,-10,65,0,0,0.117632 -35190,7600:459,-9,65,0,0,0.125102 -35191,7600:458,-8,65,0,0,0.130484 -35192,7600:457,-7,65,0,0,0.138164 -35193,7600:456,-6,65,0,0,0.150557 -35194,7600:455,-5,65,0,0,0.154246 -35195,7600:354,-4,65,0,0,0.159766 -35196,7600:353,-3,65,0,0,0.158762 -35197,7600:352,-2,65,0,0,0.139985 -35198,7600:351,-1,65,0,0,0.13863 -35199,1600:351,0,65,0,0,0.131842 -35200,1600:351,1,65,0,0,0.13996 -35201,1600:352,2,65,0,0,0.151044 -35202,1600:353,3,65,0,0,0.15715 -35203,1600:354,4,65,0,0,0.153177 -35204,1600:455,5,65,0,0,0.164399 -35205,1600:456,6,65,0,0,0.16347 -35206,1600:457,7,65,0,0,0.161456 -35207,1600:458,8,65,0,0,0.161777 -35208,1600:459,9,65,0,0,0.16637 -35209,1601:350,10,65,0,0,0.162111 -35210,1601:351,11,65,0,0,0.159546 -35211,1601:352,12,65,0,0,0.156837 -35212,1601:353,13,65,0,0,0.151875 -35213,1602:350,20,65,0,0,0.104759 -35214,1602:351,21,65,0,0,0.0974781 -35215,1614:457,147,65,0,0,0.0811335 -35216,1614:458,148,65,0,0,0.079705 -35217,1614:459,149,65,0,0,0.0790967 -35218,1615:350,150,65,0,0,0.0787905 -35219,1615:351,151,65,0,0,0.079532 -35220,1615:352,152,65,0,0,0.079705 -35221,1615:353,153,65,0,0,0.0795469 -35222,1615:457,157,65,0,0,0.0783665 -35223,1615:458,158,65,0,0,0.0781737 -35224,1615:459,159,65,0,0,0.0780184 -35225,1616:350,160,65,0,0,0.0777232 -35226,1616:351,161,65,0,0,0.0774145 -35227,1616:352,162,65,0,0,0.0771067 -35228,1616:353,163,65,0,0,0.0768514 -35229,1616:354,164,65,0,0,0.0766111 -35230,1616:455,165,65,0,0,0.076386 -35231,1616:456,166,65,0,0,0.0761907 -35232,1616:457,167,65,0,0,0.0760533 -35233,1616:458,168,65,0,0,0.0760749 -35234,1616:459,169,65,0,0,0.07614 -35235,1617:350,170,65,0,0,0.0762123 -35236,1617:351,171,65,0,0,0.0762775 -35237,1617:352,172,65,0,0,0.07635 -35238,1617:353,173,65,0,0,0.0764079 -35239,1617:354,174,65,0,0,0.0764732 -35240,1617:455,175,65,0,0,0.0765022 -35241,1617:456,176,65,0,0,0.0765022 -35242,1617:457,177,65,0,0,0.0765093 -35243,1617:458,178,65,0,0,0.0764659 -35244,1617:459,179,65,0,0,0.0764296 -35245,1618:350,180,65,0,0,0.0763643 -35246,7618:360,-180,66,0,0,0.0764223 -35247,7617:469,-179,66,0,0,0.0763571 -35248,7617:468,-178,66,0,0,0.0763208 -35249,7617:467,-177,66,0,0,0.0763064 -35250,7617:466,-176,66,0,0,0.0762991 -35251,7617:465,-175,66,0,0,0.0764732 -35252,7617:364,-174,66,0,0,0.0765457 -35253,7617:363,-173,66,0,0,0.076582 -35254,7617:362,-172,66,0,0,0.0765676 -35255,7617:361,-171,66,0,0,0.0765967 -35256,7617:360,-170,66,0,0,0.0766839 -35257,7616:469,-169,66,0,0,0.0766839 -35258,7616:468,-168,66,0,0,0.0768149 -35259,7616:467,-167,66,0,0,0.0768732 -35260,7616:466,-166,66,0,0,0.0768732 -35261,7616:465,-165,66,0,0,0.0768877 -35262,7616:364,-164,66,0,0,0.0769607 -35263,7616:363,-163,66,0,0,0.0770117 -35264,7616:362,-162,66,0,0,0.0769462 -35265,7616:361,-161,66,0,0,0.0767785 -35266,7616:360,-160,66,0,0,0.0766401 -35267,7615:469,-159,66,0,0,0.076553 -35268,7615:468,-158,66,0,0,0.0764586 -35269,7615:467,-157,66,0,0,0.076386 -35270,7615:466,-156,66,0,0,0.0763427 -35271,7615:465,-155,66,0,0,0.0763427 -35272,7615:364,-154,66,0,0,0.0764223 -35273,7615:363,-153,66,0,0,0.0767274 -35274,7615:362,-152,66,0,0,0.0767858 -35275,7615:361,-151,66,0,0,0.0773044 -35276,7615:360,-150,66,0,0,0.0774145 -35277,7607:362,-72,66,0,0,0.0779814 -35278,7607:361,-71,66,0,0,0.077679 -35279,7607:360,-70,66,0,0,0.0775246 -35280,7606:364,-64,66,0,0,0.0773411 -35281,7606:363,-63,66,0,0,0.0762267 -35282,7605:465,-55,66,0,0,0.0769534 -35283,7605:364,-54,66,0,0,0.0764949 -35284,7605:363,-53,66,0,0,0.0760679 -35285,7605:362,-52,66,0,0,0.0760606 -35286,7605:361,-51,66,0,0,0.0761111 -35287,7605:360,-50,66,0,0,0.0761256 -35288,7604:469,-49,66,0,0,0.0761256 -35289,7604:468,-48,66,0,0,0.076039 -35290,7604:467,-47,66,0,0,0.0761111 -35291,7604:466,-46,66,0,0,0.0766038 -35292,7604:465,-45,66,0,0,0.0764876 -35293,7604:364,-44,66,0,0,0.0767785 -35294,7604:363,-43,66,0,0,0.0771873 -35295,7602:362,-22,66,0,0,0.0766765 -35296,7602:361,-21,66,0,0,0.0761472 -35297,7602:360,-20,66,0,0,0.0759379 -35298,7601:469,-19,66,0,0,0.0759091 -35299,7601:468,-18,66,0,0,0.0759019 -35300,7601:467,-17,66,0,0,0.0759668 -35301,7601:466,-16,66,0,0,0.0767929 -35302,7601:465,-15,66,0,0,0.086116 -35303,7601:364,-14,66,0,0,0.115937 -35304,7601:363,-13,66,0,0,0.113433 -35305,7601:362,-12,66,0,0,0.110239 -35306,7601:361,-11,66,0,0,0.116274 -35307,7601:360,-10,66,0,0,0.121154 -35308,7600:469,-9,66,0,0,0.137578 -35309,7600:468,-8,66,0,0,0.143409 -35310,7600:467,-7,66,0,0,0.145964 -35311,7600:466,-6,66,0,0,0.151809 -35312,7600:465,-5,66,0,0,0.153657 -35313,7600:364,-4,66,0,0,0.139738 -35314,7600:363,-3,66,0,0,0.131736 -35315,7600:362,-2,66,0,0,0.115139 -35316,7600:361,-1,66,0,0,0.130181 -35317,1600:361,0,66,0,0,0.132999 -35318,1600:361,1,66,0,0,0.13249 -35319,1600:362,2,66,0,0,0.138949 -35320,1600:363,3,66,0,0,0.15057 -35321,1600:364,4,66,0,0,0.150032 -35322,1600:465,5,66,0,0,0.146374 -35323,1600:466,6,66,0,0,0.152857 -35324,1600:467,7,66,0,0,0.148596 -35325,1600:468,8,66,0,0,0.156579 -35326,1600:469,9,66,0,0,0.156905 -35327,1601:360,10,66,0,0,0.146799 -35328,1601:361,11,66,0,0,0.142841 -35329,1601:362,12,66,0,0,0.141376 -35330,1601:363,13,66,0,0,0.133094 -35331,1601:364,14,66,0,0,0.133153 -35332,1601:465,15,66,0,0,0.1377 -35333,1601:466,16,66,0,0,0.138115 -35334,1601:467,17,66,0,0,0.130414 -35335,1601:468,18,66,0,0,0.118875 -35336,1601:469,19,66,0,0,0.116148 -35337,1602:360,20,66,0,0,0.101172 -35338,1602:361,21,66,0,0,0.0881591 -35339,1602:362,22,66,0,0,0.084013 -35340,1614:363,143,66,0,0,0.0793591 -35341,1614:364,144,66,0,0,0.0807131 -35342,1614:465,145,66,0,0,0.081548 -35343,1614:466,146,66,0,0,0.081034 -35344,1614:467,147,66,0,0,0.0804315 -35345,1614:468,148,66,0,0,0.0797277 -35346,1614:469,149,66,0,0,0.0791717 -35347,1615:360,150,66,0,0,0.0783144 -35348,1615:361,151,66,0,0,0.0781812 -35349,1615:362,152,66,0,0,0.0787905 -35350,1615:363,153,66,0,0,0.0794643 -35351,1615:364,154,66,0,0,0.0793139 -35352,1615:465,155,66,0,0,0.0789844 -35353,1615:466,156,66,0,0,0.0787084 -35354,1615:467,157,66,0,0,0.078218 -35355,1615:468,158,66,0,0,0.0776864 -35356,1615:469,159,66,0,0,0.077363 -35357,1616:360,160,66,0,0,0.0770849 -35358,1616:361,161,66,0,0,0.0767712 -35359,1616:362,162,66,0,0,0.0764803 -35360,1616:363,163,66,0,0,0.0762918 -35361,1616:364,164,66,0,0,0.0761834 -35362,1616:465,165,66,0,0,0.0760967 -35363,1616:466,166,66,0,0,0.076039 -35364,1616:467,167,66,0,0,0.0760895 -35365,1616:468,168,66,0,0,0.0761761 -35366,1616:469,169,66,0,0,0.0762123 -35367,1617:360,170,66,0,0,0.0762413 -35368,1617:361,171,66,0,0,0.0762991 -35369,1617:362,172,66,0,0,0.0763643 -35370,1617:363,173,66,0,0,0.0764296 -35371,1617:364,174,66,0,0,0.0764732 -35372,1617:465,175,66,0,0,0.0764513 -35373,1617:466,176,66,0,0,0.0764513 -35374,1617:467,177,66,0,0,0.0764513 -35375,1617:468,178,66,0,0,0.0764513 -35376,1617:469,179,66,0,0,0.0764659 -35377,1618:360,180,66,0,0,0.0764223 -35378,7618:370,-180,67,0,0,0.0764803 -35379,7617:479,-179,67,0,0,0.0764732 -35380,7617:478,-178,67,0,0,0.0764369 -35381,7617:477,-177,67,0,0,0.076386 -35382,7617:476,-176,67,0,0,0.0763933 -35383,7617:475,-175,67,0,0,0.0763789 -35384,7617:374,-174,67,0,0,0.0765313 -35385,7617:373,-173,67,0,0,0.0766475 -35386,7617:372,-172,67,0,0,0.0766621 -35387,7617:371,-171,67,0,0,0.0766692 -35388,7617:370,-170,67,0,0,0.0767494 -35389,7616:479,-169,67,0,0,0.0767567 -35390,7616:478,-168,67,0,0,0.0767494 -35391,7616:477,-167,67,0,0,0.0767567 -35392,7616:476,-166,67,0,0,0.0767347 -35393,7616:475,-165,67,0,0,0.076742 -35394,7616:374,-164,67,0,0,0.0768294 -35395,7616:373,-163,67,0,0,0.0769534 -35396,7616:372,-162,67,0,0,0.0770117 -35397,7616:371,-161,67,0,0,0.0769024 -35398,7616:370,-160,67,0,0,0.076713 -35399,7615:479,-159,67,0,0,0.0765603 -35400,7615:478,-158,67,0,0,0.0764586 -35401,7615:477,-157,67,0,0,0.076415 -35402,7615:476,-156,67,0,0,0.0763716 -35403,7615:475,-155,67,0,0,0.0763571 -35404,7615:374,-154,67,0,0,0.07635 -35405,7615:373,-153,67,0,0,0.0763354 -35406,7615:372,-152,67,0,0,0.076553 -35407,7615:371,-151,67,0,0,0.076553 -35408,7615:370,-150,67,0,0,0.0761472 -35409,7607:370,-70,67,0,0,0.0771873 -35410,7606:479,-69,67,0,0,0.0773118 -35411,7606:478,-68,67,0,0,0.0775539 -35412,7606:475,-65,67,0,0,0.077797 -35413,7605:475,-55,67,0,0,0.0768585 -35414,7605:374,-54,67,0,0,0.0766912 -35415,7605:373,-53,67,0,0,0.0765022 -35416,7605:372,-52,67,0,0,0.0761183 -35417,7605:371,-51,67,0,0,0.0761111 -35418,7605:370,-50,67,0,0,0.0760533 -35419,7604:479,-49,67,0,0,0.076039 -35420,7604:478,-48,67,0,0,0.0759523 -35421,7604:477,-47,67,0,0,0.0764296 -35422,7604:476,-46,67,0,0,0.0769242 -35423,7604:475,-45,67,0,0,0.0768076 -35424,7604:374,-44,67,0,0,0.0771288 -35425,7604:373,-43,67,0,0,0.0761545 -35426,7602:373,-23,67,0,0,0.0771433 -35427,7602:371,-21,67,0,0,0.0762991 -35428,7602:370,-20,67,0,0,0.0760099 -35429,7601:479,-19,67,0,0,0.0759595 -35430,7601:478,-18,67,0,0,0.075974 -35431,7601:477,-17,67,0,0,0.0759523 -35432,7601:476,-16,67,0,0,0.0771726 -35433,7601:475,-15,67,0,0,0.103228 -35434,7601:374,-14,67,0,0,0.118864 -35435,7601:373,-13,67,0,0,0.115758 -35436,7601:372,-12,67,0,0,0.128872 -35437,7601:371,-11,67,0,0,0.133771 -35438,7601:370,-10,67,0,0,0.138998 -35439,7600:479,-9,67,0,0,0.141226 -35440,7600:478,-8,67,0,0,0.145082 -35441,7600:477,-7,67,0,0,0.1459 -35442,7600:476,-6,67,0,0,0.141813 -35443,7600:475,-5,67,0,0,0.135182 -35444,7600:374,-4,67,0,0,0.12123 -35445,7600:373,-3,67,0,0,0.106467 -35446,7600:372,-2,67,0,0,0.0980218 -35447,7600:371,-1,67,0,0,0.108736 -35448,1600:371,0,67,0,0,0.127437 -35449,1600:371,1,67,0,0,0.13505 -35450,1600:372,2,67,0,0,0.137529 -35451,1600:373,3,67,0,0,0.147069 -35452,1600:374,4,67,0,0,0.147198 -35453,1600:475,5,67,0,0,0.14451 -35454,1600:476,6,67,0,0,0.135266 -35455,1600:477,7,67,0,0,0.137944 -35456,1600:478,8,67,0,0,0.142264 -35457,1600:479,9,67,0,0,0.140381 -35458,1601:370,10,67,0,0,0.135483 -35459,1601:371,11,67,0,0,0.128504 -35460,1601:372,12,67,0,0,0.126515 -35461,1601:373,13,67,0,0,0.126538 -35462,1601:374,14,67,0,0,0.126061 -35463,1601:475,15,67,0,0,0.125192 -35464,1601:476,16,67,0,0,0.13108 -35465,1601:477,17,67,0,0,0.119999 -35466,1601:478,18,67,0,0,0.103332 -35467,1601:479,19,67,0,0,0.0954098 -35468,1614:373,143,67,0,0,0.0783961 -35469,1614:374,144,67,0,0,0.0783218 -35470,1614:475,145,67,0,0,0.0786711 -35471,1614:476,146,67,0,0,0.0788203 -35472,1614:477,147,67,0,0,0.0786116 -35473,1614:478,148,67,0,0,0.0777675 -35474,1614:479,149,67,0,0,0.0782033 -35475,1615:370,150,67,0,0,0.0781367 -35476,1615:371,151,67,0,0,0.0777601 -35477,1615:372,152,67,0,0,0.0775981 -35478,1615:373,153,67,0,0,0.0775246 -35479,1615:374,154,67,0,0,0.0780552 -35480,1615:475,155,67,0,0,0.078048 -35481,1615:476,156,67,0,0,0.0775833 -35482,1615:477,157,67,0,0,0.0771067 -35483,1615:478,158,67,0,0,0.0768076 -35484,1615:479,159,67,0,0,0.0765457 -35485,1616:370,160,67,0,0,0.07635 -35486,1616:371,161,67,0,0,0.0762196 -35487,1616:372,162,67,0,0,0.0761038 -35488,1616:373,163,67,0,0,0.0760895 -35489,1616:374,164,67,0,0,0.0760822 -35490,1616:475,165,67,0,0,0.0760245 -35491,1616:476,166,67,0,0,0.0760317 -35492,1616:477,167,67,0,0,0.0761761 -35493,1616:478,168,67,0,0,0.0762413 -35494,1616:479,169,67,0,0,0.0762702 -35495,1617:370,170,67,0,0,0.0762702 -35496,1617:371,171,67,0,0,0.0763137 -35497,1617:372,172,67,0,0,0.0763789 -35498,1617:373,173,67,0,0,0.0764296 -35499,1617:374,174,67,0,0,0.0764369 -35500,1617:475,175,67,0,0,0.0764079 -35501,1617:476,176,67,0,0,0.0764006 -35502,1617:477,177,67,0,0,0.0764079 -35503,1617:478,178,67,0,0,0.0764296 -35504,1617:479,179,67,0,0,0.0764659 -35505,1618:370,180,67,0,0,0.0764803 -35506,7618:380,-180,68,0,0,0.0764803 -35507,7617:489,-179,68,0,0,0.0764949 -35508,7617:488,-178,68,0,0,0.0765022 -35509,7617:487,-177,68,0,0,0.0765022 -35510,7617:486,-176,68,0,0,0.0764732 -35511,7617:485,-175,68,0,0,0.0764876 -35512,7617:384,-174,68,0,0,0.0766111 -35513,7617:383,-173,68,0,0,0.0767274 -35514,7617:382,-172,68,0,0,0.076742 -35515,7617:381,-171,68,0,0,0.0767712 -35516,7617:380,-170,68,0,0,0.0768003 -35517,7616:489,-169,68,0,0,0.0767638 -35518,7616:488,-168,68,0,0,0.0766621 -35519,7616:487,-167,68,0,0,0.0766401 -35520,7616:486,-166,68,0,0,0.0766257 -35521,7616:485,-165,68,0,0,0.0766184 -35522,7616:384,-164,68,0,0,0.0766548 -35523,7616:383,-163,68,0,0,0.0767347 -35524,7616:382,-162,68,0,0,0.0767858 -35525,7616:381,-161,68,0,0,0.0767347 -35526,7616:380,-160,68,0,0,0.0766765 -35527,7615:489,-159,68,0,0,0.0766257 -35528,7615:488,-158,68,0,0,0.0765747 -35529,7615:487,-157,68,0,0,0.0765676 -35530,7615:486,-156,68,0,0,0.0765384 -35531,7615:485,-155,68,0,0,0.0764079 -35532,7615:384,-154,68,0,0,0.0763427 -35533,7615:383,-153,68,0,0,0.076415 -35534,7615:382,-152,68,0,0,0.0762775 -35535,7615:381,-151,68,0,0,0.07635 -35536,7615:380,-150,68,0,0,0.0759091 -35537,7614:489,-149,68,0,0,0.0755781 -35538,7606:489,-69,68,0,0,0.0771215 -35539,7606:488,-68,68,0,0,0.0772166 -35540,7606:487,-67,68,0,0,0.0774439 -35541,7606:486,-66,68,0,0,0.0775539 -35542,7605:487,-57,68,0,0,0.0769754 -35543,7605:384,-54,68,0,0,0.0765093 -35544,7605:383,-53,68,0,0,0.0764513 -35545,7605:382,-52,68,0,0,0.0760606 -35546,7605:381,-51,68,0,0,0.075974 -35547,7605:380,-50,68,0,0,0.0759379 -35548,7604:489,-49,68,0,0,0.0760679 -35549,7604:488,-48,68,0,0,0.0763137 -35550,7604:487,-47,68,0,0,0.0764442 -35551,7604:486,-46,68,0,0,0.077136 -35552,7604:485,-45,68,0,0,0.0772311 -35553,7602:382,-22,68,0,0,0.076415 -35554,7602:381,-21,68,0,0,0.0763789 -35555,7602:380,-20,68,0,0,0.0761545 -35556,7601:489,-19,68,0,0,0.0760317 -35557,7601:488,-18,68,0,0,0.0760172 -35558,7601:487,-17,68,0,0,0.0759307 -35559,7601:486,-16,68,0,0,0.0768441 -35560,7601:485,-15,68,0,0,0.0966047 -35561,7601:384,-14,68,0,0,0.125858 -35562,7601:383,-13,68,0,0,0.130881 -35563,7601:382,-12,68,0,0,0.1342 -35564,7601:381,-11,68,0,0,0.138323 -35565,7601:380,-10,68,0,0,0.137944 -35566,7600:489,-9,68,0,0,0.131349 -35567,7600:488,-8,68,0,0,0.123081 -35568,7600:485,-5,68,0,0,0.104923 -35569,7600:384,-4,68,0,0,0.117472 -35570,7600:383,-3,68,0,0,0.104808 -35571,7600:382,-2,68,0,0,0.0934331 -35572,7600:381,-1,68,0,0,0.104576 -35573,1600:381,0,68,0,0,0.121932 -35574,1600:381,1,68,0,0,0.130367 -35575,1600:382,2,68,0,0,0.136945 -35576,1600:383,3,68,0,0,0.140766 -35577,1600:384,4,68,0,0,0.135086 -35578,1600:485,5,68,0,0,0.141251 -35579,1600:486,6,68,0,0,0.132762 -35580,1600:487,7,68,0,0,0.126515 -35581,1600:488,8,68,0,0,0.125249 -35582,1600:489,9,68,0,0,0.116074 -35583,1601:380,10,68,0,0,0.109766 -35584,1601:381,11,68,0,0,0.110926 -35585,1601:382,12,68,0,0,0.117728 -35586,1601:383,13,68,0,0,0.123236 -35587,1601:384,14,68,0,0,0.120162 -35588,1601:485,15,68,0,0,0.122263 -35589,1601:486,16,68,0,0,0.123547 -35590,1601:487,17,68,0,0,0.105232 -35591,1601:488,18,68,0,0,0.0968831 -35592,1602:381,21,68,0,0,0.0781071 -35593,1602:382,22,68,0,0,0.0845602 -35594,1614:381,141,68,0,0,0.0786414 -35595,1614:382,142,68,0,0,0.0784333 -35596,1614:383,143,68,0,0,0.0781145 -35597,1614:384,144,68,0,0,0.0775833 -35598,1614:485,145,68,0,0,0.0769899 -35599,1614:486,146,68,0,0,0.0767638 -35600,1614:487,147,68,0,0,0.0767785 -35601,1614:488,148,68,0,0,0.0766983 -35602,1614:489,149,68,0,0,0.0766983 -35603,1615:380,150,68,0,0,0.0767347 -35604,1615:381,151,68,0,0,0.076713 -35605,1615:382,152,68,0,0,0.0766038 -35606,1615:383,153,68,0,0,0.076524 -35607,1615:384,154,68,0,0,0.0764803 -35608,1615:485,155,68,0,0,0.0764586 -35609,1615:486,156,68,0,0,0.0763933 -35610,1615:487,157,68,0,0,0.0763354 -35611,1615:488,158,68,0,0,0.0762702 -35612,1615:489,159,68,0,0,0.0761327 -35613,1616:380,160,68,0,0,0.0760245 -35614,1616:381,161,68,0,0,0.0759452 -35615,1616:382,162,68,0,0,0.0759307 -35616,1616:383,163,68,0,0,0.0759884 -35617,1616:384,164,68,0,0,0.0760099 -35618,1616:485,165,68,0,0,0.0759884 -35619,1616:486,166,68,0,0,0.0760172 -35620,1616:487,167,68,0,0,0.0761689 -35621,1616:488,168,68,0,0,0.0762702 -35622,1616:489,169,68,0,0,0.0762918 -35623,1617:380,170,68,0,0,0.0763064 -35624,1617:381,171,68,0,0,0.0763571 -35625,1617:382,172,68,0,0,0.0764006 -35626,1617:383,173,68,0,0,0.0764223 -35627,1617:384,174,68,0,0,0.076415 -35628,1617:485,175,68,0,0,0.0764006 -35629,1617:486,176,68,0,0,0.0764006 -35630,1617:487,177,68,0,0,0.0764006 -35631,1617:488,178,68,0,0,0.0764296 -35632,1617:489,179,68,0,0,0.0764659 -35633,1618:380,180,68,0,0,0.0764803 -35634,7618:390,-180,69,0,0,0.076524 -35635,7617:499,-179,69,0,0,0.0765313 -35636,7617:498,-178,69,0,0,0.0765313 -35637,7617:497,-177,69,0,0,0.0765603 -35638,7617:496,-176,69,0,0,0.0765893 -35639,7617:495,-175,69,0,0,0.0765603 -35640,7617:394,-174,69,0,0,0.0766257 -35641,7617:393,-173,69,0,0,0.0767494 -35642,7617:392,-172,69,0,0,0.0767638 -35643,7617:391,-171,69,0,0,0.0767347 -35644,7617:390,-170,69,0,0,0.0766839 -35645,7616:499,-169,69,0,0,0.0766257 -35646,7616:498,-168,69,0,0,0.0766038 -35647,7616:497,-167,69,0,0,0.0766328 -35648,7616:496,-166,69,0,0,0.0766257 -35649,7616:495,-165,69,0,0,0.0766184 -35650,7616:394,-164,69,0,0,0.0765893 -35651,7616:393,-163,69,0,0,0.0765457 -35652,7616:392,-162,69,0,0,0.0765166 -35653,7616:391,-161,69,0,0,0.0765457 -35654,7616:390,-160,69,0,0,0.076582 -35655,7615:499,-159,69,0,0,0.0765893 -35656,7615:498,-158,69,0,0,0.0766328 -35657,7615:497,-157,69,0,0,0.0766765 -35658,7615:496,-156,69,0,0,0.0766401 -35659,7615:495,-155,69,0,0,0.0765093 -35660,7615:394,-154,69,0,0,0.0763427 -35661,7615:393,-153,69,0,0,0.0765166 -35662,7615:392,-152,69,0,0,0.0764803 -35663,7615:391,-151,69,0,0,0.0763427 -35664,7615:390,-150,69,0,0,0.076524 -35665,7614:499,-149,69,0,0,0.0765022 -35666,7614:498,-148,69,0,0,0.0765893 -35667,7614:497,-147,69,0,0,0.0766184 -35668,7614:496,-146,69,0,0,0.0764079 -35669,7607:391,-71,69,0,0,0.0777084 -35670,7607:390,-70,69,0,0,0.0774071 -35671,7606:499,-69,69,0,0,0.0771873 -35672,7606:498,-68,69,0,0,0.0769607 -35673,7606:497,-67,69,0,0,0.0771067 -35674,7605:497,-57,69,0,0,0.0769607 -35675,7605:394,-54,69,0,0,0.0762775 -35676,7605:393,-53,69,0,0,0.0759091 -35677,7605:392,-52,69,0,0,0.0761978 -35678,7605:391,-51,69,0,0,0.0762629 -35679,7605:390,-50,69,0,0,0.0761183 -35680,7604:499,-49,69,0,0,0.076234 -35681,7604:498,-48,69,0,0,0.0763354 -35682,7604:497,-47,69,0,0,0.0766475 -35683,7602:391,-21,69,0,0,0.0763354 -35684,7602:390,-20,69,0,0,0.0761327 -35685,7601:499,-19,69,0,0,0.0760749 -35686,7601:498,-18,69,0,0,0.0760967 -35687,7601:497,-17,69,0,0,0.0759668 -35688,7601:496,-16,69,0,0,0.0777747 -35689,7601:495,-15,69,0,0,0.108647 -35690,7601:394,-14,69,0,0,0.10637 -35691,7601:393,-13,69,0,0,0.116369 -35692,7601:392,-12,69,0,0,0.123414 -35693,7601:391,-11,69,0,0,0.12863 -35694,7600:496,-6,69,0,0,0.0882168 -35695,7600:495,-5,69,0,0,0.0864561 -35696,7600:394,-4,69,0,0,0.0860432 -35697,7600:393,-3,69,0,0,0.0975774 -35698,7600:392,-2,69,0,0,0.0852147 -35699,7600:391,-1,69,0,0,0.111109 -35700,1600:391,0,69,0,0,0.120227 -35701,1600:391,1,69,0,0,0.127838 -35702,1600:392,2,69,0,0,0.134918 -35703,1600:393,3,69,0,0,0.125779 -35704,1600:394,4,69,0,0,0.117036 -35705,1600:495,5,69,0,0,0.13268 -35706,1600:496,6,69,0,0,0.127106 -35707,1600:497,7,69,0,0,0.116232 -35708,1600:498,8,69,0,0,0.118413 -35709,1600:499,9,69,0,0,0.111058 -35710,1601:390,10,69,0,0,0.105736 -35711,1601:391,11,69,0,0,0.111546 -35712,1601:392,12,69,0,0,0.117942 -35713,1601:393,13,69,0,0,0.121012 -35714,1601:394,14,69,0,0,0.112815 -35715,1601:495,15,69,0,0,0.111862 -35716,1601:496,16,69,0,0,0.115916 -35717,1601:497,17,69,0,0,0.114148 -35718,1601:498,18,69,0,0,0.105107 -35719,1601:499,19,69,0,0,0.104442 -35720,1602:390,20,69,0,0,0.0981308 -35721,1602:391,21,69,0,0,0.0957386 -35722,1614:391,141,69,0,0,0.0797503 -35723,1614:392,142,69,0,0,0.0793366 -35724,1614:393,143,69,0,0,0.0778116 -35725,1614:394,144,69,0,0,0.0769097 -35726,1614:495,145,69,0,0,0.0767567 -35727,1614:496,146,69,0,0,0.0769024 -35728,1614:497,147,69,0,0,0.0771215 -35729,1614:498,148,69,0,0,0.0772092 -35730,1614:499,149,69,0,0,0.0769973 -35731,1615:390,150,69,0,0,0.0766548 -35732,1615:391,151,69,0,0,0.0764659 -35733,1615:392,152,69,0,0,0.0765093 -35734,1615:393,153,69,0,0,0.0765384 -35735,1615:394,154,69,0,0,0.0765093 -35736,1615:495,155,69,0,0,0.0763933 -35737,1615:496,156,69,0,0,0.0761978 -35738,1615:497,157,69,0,0,0.0760895 -35739,1615:498,158,69,0,0,0.0759811 -35740,1615:499,159,69,0,0,0.0758586 -35741,1616:390,160,69,0,0,0.0758225 -35742,1616:391,161,69,0,0,0.075837 -35743,1616:392,162,69,0,0,0.0758946 -35744,1616:393,163,69,0,0,0.0759452 -35745,1616:394,164,69,0,0,0.0760029 -35746,1616:495,165,69,0,0,0.0760679 -35747,1616:496,166,69,0,0,0.0761472 -35748,1616:497,167,69,0,0,0.0762485 -35749,1616:498,168,69,0,0,0.0762702 -35750,1616:499,169,69,0,0,0.0762775 -35751,1617:390,170,69,0,0,0.0762991 -35752,1617:391,171,69,0,0,0.0763208 -35753,1617:392,172,69,0,0,0.0763643 -35754,1617:393,173,69,0,0,0.0763933 -35755,1617:394,174,69,0,0,0.076386 -35756,1617:495,175,69,0,0,0.0763933 -35757,1617:496,176,69,0,0,0.076415 -35758,1617:497,177,69,0,0,0.0764442 -35759,1617:498,178,69,0,0,0.0764949 -35760,1617:499,179,69,0,0,0.0765093 -35761,1618:390,180,69,0,0,0.076524 -35762,7718:100,-180,70,0,0,0.0765747 -35763,7717:209,-179,70,0,0,0.0765747 -35764,7717:208,-178,70,0,0,0.0765893 -35765,7717:207,-177,70,0,0,0.0766257 -35766,7717:206,-176,70,0,0,0.0766401 -35767,7717:205,-175,70,0,0,0.0766401 -35768,7717:104,-174,70,0,0,0.0766621 -35769,7717:103,-173,70,0,0,0.076713 -35770,7717:102,-172,70,0,0,0.0766839 -35771,7717:101,-171,70,0,0,0.0766475 -35772,7717:100,-170,70,0,0,0.0766328 -35773,7716:209,-169,70,0,0,0.0766111 -35774,7716:208,-168,70,0,0,0.0765747 -35775,7716:207,-167,70,0,0,0.0766038 -35776,7716:206,-166,70,0,0,0.0766401 -35777,7716:205,-165,70,0,0,0.0766184 -35778,7716:104,-164,70,0,0,0.0765967 -35779,7716:103,-163,70,0,0,0.0765166 -35780,7716:102,-162,70,0,0,0.0764876 -35781,7716:101,-161,70,0,0,0.0764949 -35782,7716:100,-160,70,0,0,0.0764803 -35783,7715:209,-159,70,0,0,0.0764732 -35784,7715:208,-158,70,0,0,0.0764876 -35785,7715:207,-157,70,0,0,0.0765457 -35786,7715:206,-156,70,0,0,0.076553 -35787,7715:205,-155,70,0,0,0.0764949 -35788,7715:104,-154,70,0,0,0.0763933 -35789,7715:103,-153,70,0,0,0.0764223 -35790,7715:102,-152,70,0,0,0.0765384 -35791,7715:101,-151,70,0,0,0.0766692 -35792,7715:100,-150,70,0,0,0.076713 -35793,7714:209,-149,70,0,0,0.0767203 -35794,7714:208,-148,70,0,0,0.0766912 -35795,7714:207,-147,70,0,0,0.0766475 -35796,7714:206,-146,70,0,0,0.0767929 -35797,7714:205,-145,70,0,0,0.0768367 -35798,7707:100,-70,70,0,0,0.0769973 -35799,7706:209,-69,70,0,0,0.0770922 -35800,7706:208,-68,70,0,0,0.0769534 -35801,7706:207,-67,70,0,0,0.0769315 -35802,7706:205,-65,70,0,0,0.0764876 -35803,7706:102,-62,70,0,0,0.0774878 -35804,7705:206,-56,70,0,0,0.0768659 -35805,7705:205,-55,70,0,0,0.0765166 -35806,7705:104,-54,70,0,0,0.07614 -35807,7705:103,-53,70,0,0,0.0760172 -35808,7705:102,-52,70,0,0,0.0759307 -35809,7705:101,-51,70,0,0,0.0759162 -35810,7705:100,-50,70,0,0,0.0760029 -35811,7704:209,-49,70,0,0,0.0760895 -35812,7704:208,-48,70,0,0,0.076046 -35813,7704:207,-47,70,0,0,0.0766475 -35814,7704:206,-46,70,0,0,0.0777527 -35815,7702:100,-20,70,0,0,0.0760749 -35816,7701:209,-19,70,0,0,0.0760822 -35817,7701:208,-18,70,0,0,0.0761472 -35818,7701:207,-17,70,0,0,0.0758443 -35819,7701:206,-16,70,0,0,0.0807435 -35820,7701:205,-15,70,0,0,0.116962 -35821,7701:104,-14,70,0,0,0.121526 -35822,7701:103,-13,70,0,0,0.1249 -35823,7701:102,-12,70,0,0,0.127895 -35824,7700:104,-4,70,0,0,0.0790967 -35825,7700:103,-3,70,0,0,0.0843219 -35826,7700:102,-2,70,0,0,0.0853509 -35827,7700:101,-1,70,0,0,0.113278 -35828,1700:101,0,70,0,0,0.12286 -35829,1700:101,1,70,0,0,0.128124 -35830,1700:102,2,70,0,0,0.131889 -35831,1700:103,3,70,0,0,0.11266 -35832,1700:104,4,70,0,0,0.105465 -35833,1700:205,5,70,0,0,0.118231 -35834,1700:206,6,70,0,0,0.105504 -35835,1700:207,7,70,0,0,0.100921 -35836,1700:208,8,70,0,0,0.0992825 -35837,1700:209,9,70,0,0,0.103408 -35838,1701:100,10,70,0,0,0.108697 -35839,1701:101,11,70,0,0,0.115548 -35840,1701:102,12,70,0,0,0.118467 -35841,1701:103,13,70,0,0,0.117568 -35842,1701:104,14,70,0,0,0.11224 -35843,1701:205,15,70,0,0,0.115045 -35844,1701:206,16,70,0,0,0.111322 -35845,1701:207,17,70,0,0,0.109937 -35846,1701:208,18,70,0,0,0.0972521 -35847,1702:101,21,70,0,0,0.0910079 -35848,1714:205,145,70,0,0,0.0770704 -35849,1714:206,146,70,0,0,0.0771654 -35850,1714:207,147,70,0,0,0.0773559 -35851,1714:208,148,70,0,0,0.0771726 -35852,1714:209,149,70,0,0,0.0766111 -35853,1715:100,150,70,0,0,0.0761689 -35854,1715:101,151,70,0,0,0.0760606 -35855,1715:102,152,70,0,0,0.0759379 -35856,1715:103,153,70,0,0,0.0759379 -35857,1715:104,154,70,0,0,0.0759379 -35858,1715:205,155,70,0,0,0.0758515 -35859,1715:206,156,70,0,0,0.0758082 -35860,1715:207,157,70,0,0,0.0758082 -35861,1715:208,158,70,0,0,0.0758298 -35862,1715:209,159,70,0,0,0.0758515 -35863,1716:100,160,70,0,0,0.0758658 -35864,1716:101,161,70,0,0,0.0759884 -35865,1716:102,162,70,0,0,0.0760317 -35866,1716:103,163,70,0,0,0.0760967 -35867,1716:104,164,70,0,0,0.076205 -35868,1716:205,165,70,0,0,0.076234 -35869,1716:206,166,70,0,0,0.0762413 -35870,1716:207,167,70,0,0,0.0762558 -35871,1716:208,168,70,0,0,0.0762558 -35872,1716:209,169,70,0,0,0.0762629 -35873,1717:100,170,70,0,0,0.0762991 -35874,1717:101,171,70,0,0,0.0763281 -35875,1717:102,172,70,0,0,0.0763643 -35876,1717:103,173,70,0,0,0.0763643 -35877,1717:104,174,70,0,0,0.0763716 -35878,1717:205,175,70,0,0,0.0763933 -35879,1717:206,176,70,0,0,0.0764223 -35880,1717:207,177,70,0,0,0.0764442 -35881,1717:208,178,70,0,0,0.0764659 -35882,1717:209,179,70,0,0,0.0765384 -35883,1718:100,180,70,0,0,0.0765747 -35884,7718:110,-180,71,0,0,0.0765893 -35885,7717:219,-179,71,0,0,0.0766111 -35886,7717:218,-178,71,0,0,0.0765967 -35887,7717:217,-177,71,0,0,0.0765967 -35888,7717:216,-176,71,0,0,0.0766401 -35889,7717:215,-175,71,0,0,0.0766548 -35890,7717:114,-174,71,0,0,0.0766621 -35891,7717:113,-173,71,0,0,0.0766257 -35892,7717:112,-172,71,0,0,0.0765747 -35893,7717:111,-171,71,0,0,0.0766038 -35894,7717:110,-170,71,0,0,0.0766912 -35895,7716:219,-169,71,0,0,0.0766839 -35896,7716:218,-168,71,0,0,0.0766111 -35897,7716:217,-167,71,0,0,0.076582 -35898,7716:216,-166,71,0,0,0.0766111 -35899,7716:215,-165,71,0,0,0.0766111 -35900,7716:114,-164,71,0,0,0.0765603 -35901,7716:113,-163,71,0,0,0.0765093 -35902,7716:112,-162,71,0,0,0.0764949 -35903,7716:111,-161,71,0,0,0.0764803 -35904,7716:110,-160,71,0,0,0.0764586 -35905,7715:219,-159,71,0,0,0.0764586 -35906,7715:218,-158,71,0,0,0.0764732 -35907,7715:217,-157,71,0,0,0.0765166 -35908,7715:216,-156,71,0,0,0.0765676 -35909,7715:215,-155,71,0,0,0.0765313 -35910,7715:114,-154,71,0,0,0.0763716 -35911,7715:113,-153,71,0,0,0.0763716 -35912,7715:112,-152,71,0,0,0.0759523 -35913,7715:111,-151,71,0,0,0.0762485 -35914,7715:110,-150,71,0,0,0.0765967 -35915,7714:219,-149,71,0,0,0.0767056 -35916,7714:218,-148,71,0,0,0.0767347 -35917,7714:217,-147,71,0,0,0.0766401 -35918,7714:216,-146,71,0,0,0.076742 -35919,7714:215,-145,71,0,0,0.0767567 -35920,7714:114,-144,71,0,0,0.0771726 -35921,7707:218,-78,71,0,0,0.0860837 -35922,7707:217,-77,71,0,0,0.0854472 -35923,7707:216,-76,71,0,0,0.0847193 -35924,7707:215,-75,71,0,0,0.0841236 -35925,7707:114,-74,71,0,0,0.083367 -35926,7707:110,-70,71,0,0,0.0770849 -35927,7706:218,-68,71,0,0,0.0769899 -35928,7706:217,-67,71,0,0,0.0768367 -35929,7706:216,-66,71,0,0,0.0768149 -35930,7706:110,-60,71,0,0,0.0769899 -35931,7705:219,-59,71,0,0,0.0769315 -35932,7705:218,-58,71,0,0,0.076895 -35933,7705:217,-57,71,0,0,0.0769754 -35934,7705:216,-56,71,0,0,0.0768294 -35935,7705:215,-55,71,0,0,0.076386 -35936,7705:112,-52,71,0,0,0.0770775 -35937,7705:111,-51,71,0,0,0.0766983 -35938,7705:110,-50,71,0,0,0.0764369 -35939,7704:219,-49,71,0,0,0.0762848 -35940,7704:218,-48,71,0,0,0.0761111 -35941,7704:217,-47,71,0,0,0.07635 -35942,7704:216,-46,71,0,0,0.077297 -35943,7704:215,-45,71,0,0,0.0771654 -35944,7702:113,-23,71,0,0,0.0764442 -35945,7702:112,-22,71,0,0,0.0763571 -35946,7702:110,-20,71,0,0,0.0761327 -35947,7701:219,-19,71,0,0,0.0761834 -35948,7701:218,-18,71,0,0,0.0759884 -35949,7701:217,-17,71,0,0,0.0762267 -35950,7701:216,-16,71,0,0,0.0789247 -35951,7701:215,-15,71,0,0,0.0824607 -35952,7701:114,-14,71,0,0,0.0817328 -35953,7701:113,-13,71,0,0,0.0874021 -35954,7701:112,-12,71,0,0,0.116686 -35955,7701:111,-11,71,0,0,0.111058 -35956,7701:110,-10,71,0,0,0.103408 -35957,7700:217,-7,71,0,0,0.0763933 -35958,7700:216,-6,71,0,0,0.0762918 -35959,7700:215,-5,71,0,0,0.0762267 -35960,7700:114,-4,71,0,0,0.0763427 -35961,7700:113,-3,71,0,0,0.076386 -35962,7700:112,-2,71,0,0,0.0810109 -35963,7700:111,-1,71,0,0,0.102073 -35964,1700:111,0,71,0,0,0.0920502 -35965,1700:111,1,71,0,0,0.100418 -35966,1700:112,2,71,0,0,0.120303 -35967,1700:113,3,71,0,0,0.114055 -35968,1700:114,4,71,0,0,0.10819 -35969,1700:215,5,71,0,0,0.100205 -35970,1700:216,6,71,0,0,0.0947292 -35971,1700:217,7,71,0,0,0.0982218 -35972,1700:218,8,71,0,0,0.098998 -35973,1700:219,9,71,0,0,0.101098 -35974,1701:110,10,71,0,0,0.102318 -35975,1701:111,11,71,0,0,0.109786 -35976,1701:112,12,71,0,0,0.11365 -35977,1701:113,13,71,0,0,0.117259 -35978,1701:114,14,71,0,0,0.102007 -35979,1701:215,15,71,0,0,0.107252 -35980,1701:216,16,71,0,0,0.110784 -35981,1701:217,17,71,0,0,0.104154 -35982,1701:218,18,71,0,0,0.0975595 -35983,1701:219,19,71,0,0,0.0907786 -35984,1702:110,20,71,0,0,0.0880518 -35985,1702:111,21,71,0,0,0.0822122 -35986,1714:216,146,71,0,0,0.0775394 -35987,1714:217,147,71,0,0,0.0772678 -35988,1714:218,148,71,0,0,0.0766401 -35989,1714:219,149,71,0,0,0.075686 -35990,1715:110,150,71,0,0,0.0759162 -35991,1715:111,151,71,0,0,0.0758803 -35992,1715:112,152,71,0,0,0.075758 -35993,1715:113,153,71,0,0,0.075765 -35994,1715:114,154,71,0,0,0.075765 -35995,1715:215,155,71,0,0,0.0757362 -35996,1715:216,156,71,0,0,0.0757362 -35997,1715:217,157,71,0,0,0.075765 -35998,1715:218,158,71,0,0,0.0758298 -35999,1715:219,159,71,0,0,0.0759452 -36000,1716:110,160,71,0,0,0.0760895 -36001,1716:111,161,71,0,0,0.076205 -36002,1716:112,162,71,0,0,0.0762413 -36003,1716:113,163,71,0,0,0.0762558 -36004,1716:114,164,71,0,0,0.0762558 -36005,1716:215,165,71,0,0,0.0762558 -36006,1716:216,166,71,0,0,0.0762558 -36007,1716:217,167,71,0,0,0.0762629 -36008,1716:218,168,71,0,0,0.0762558 -36009,1716:219,169,71,0,0,0.0762629 -36010,1717:110,170,71,0,0,0.0762848 -36011,1717:111,171,71,0,0,0.0763137 -36012,1717:112,172,71,0,0,0.0763354 -36013,1717:113,173,71,0,0,0.07635 -36014,1717:114,174,71,0,0,0.0763571 -36015,1717:215,175,71,0,0,0.0763643 -36016,1717:216,176,71,0,0,0.0763716 -36017,1717:217,177,71,0,0,0.076386 -36018,1717:218,178,71,0,0,0.0764079 -36019,1717:219,179,71,0,0,0.0765022 -36020,1718:110,180,71,0,0,0.0765893 -36021,7718:120,-180,72,0,0,0.0764876 -36022,7717:229,-179,72,0,0,0.0765676 -36023,7717:228,-178,72,0,0,0.0765747 -36024,7717:227,-177,72,0,0,0.0766111 -36025,7717:226,-176,72,0,0,0.0766184 -36026,7717:225,-175,72,0,0,0.0766184 -36027,7717:124,-174,72,0,0,0.0766328 -36028,7717:123,-173,72,0,0,0.0766328 -36029,7717:122,-172,72,0,0,0.0766257 -36030,7717:121,-171,72,0,0,0.0766475 -36031,7717:120,-170,72,0,0,0.0766401 -36032,7716:229,-169,72,0,0,0.0766475 -36033,7716:228,-168,72,0,0,0.0766692 -36034,7716:227,-167,72,0,0,0.0766111 -36035,7716:226,-166,72,0,0,0.0766038 -36036,7716:225,-165,72,0,0,0.0766038 -36037,7716:124,-164,72,0,0,0.0765384 -36038,7716:123,-163,72,0,0,0.0764876 -36039,7716:122,-162,72,0,0,0.0764659 -36040,7716:121,-161,72,0,0,0.0764442 -36041,7716:120,-160,72,0,0,0.0764442 -36042,7715:229,-159,72,0,0,0.0764803 -36043,7715:228,-158,72,0,0,0.0765893 -36044,7715:227,-157,72,0,0,0.0766692 -36045,7715:226,-156,72,0,0,0.0765747 -36046,7715:225,-155,72,0,0,0.0763789 -36047,7715:124,-154,72,0,0,0.076524 -36048,7715:123,-153,72,0,0,0.075722 -36049,7714:227,-147,72,0,0,0.0766475 -36050,7714:226,-146,72,0,0,0.0765893 -36051,7714:225,-145,72,0,0,0.0767494 -36052,7714:124,-144,72,0,0,0.0766839 -36053,7714:123,-143,72,0,0,0.0766475 -36054,7714:122,-142,72,0,0,0.0768806 -36055,7707:226,-76,72,0,0,0.0835713 -36056,7707:225,-75,72,0,0,0.0823597 -36057,7707:124,-74,72,0,0,0.0807666 -36058,7707:123,-73,72,0,0,0.080128 -36059,7707:122,-72,72,0,0,0.0792016 -36060,7706:228,-68,72,0,0,0.0770409 -36061,7706:227,-67,72,0,0,0.0769242 -36062,7706:226,-66,72,0,0,0.0768221 -36063,7706:225,-65,72,0,0,0.0767858 -36064,7706:124,-64,72,0,0,0.0767347 -36065,7705:227,-57,72,0,0,0.0769462 -36066,7705:226,-56,72,0,0,0.0765676 -36067,7705:121,-51,72,0,0,0.0769754 -36068,7704:228,-48,72,0,0,0.076386 -36069,7704:227,-47,72,0,0,0.076234 -36070,7704:226,-46,72,0,0,0.0762196 -36071,7704:225,-45,72,0,0,0.0762918 -36072,7704:123,-43,72,0,0,0.0763354 -36073,7704:122,-42,72,0,0,0.0762413 -36074,7704:121,-41,72,0,0,0.0762196 -36075,7704:120,-40,72,0,0,0.0761978 -36076,7702:123,-23,72,0,0,0.0762702 -36077,7702:122,-22,72,0,0,0.0762196 -36078,7702:121,-21,72,0,0,0.0761978 -36079,7702:120,-20,72,0,0,0.0761978 -36080,7701:229,-19,72,0,0,0.0759956 -36081,7701:228,-18,72,0,0,0.0756715 -36082,7701:227,-17,72,0,0,0.0755065 -36083,7701:226,-16,72,0,0,0.0755567 -36084,7701:225,-15,72,0,0,0.0762848 -36085,7701:124,-14,72,0,0,0.077657 -36086,7701:123,-13,72,0,0,0.0926529 -36087,7701:122,-12,72,0,0,0.109405 -36088,7701:121,-11,72,0,0,0.117568 -36089,7701:120,-10,72,0,0,0.0980126 -36090,7700:229,-9,72,0,0,0.0794567 -36091,7700:226,-6,72,0,0,0.076895 -36092,7700:225,-5,72,0,0,0.0767858 -36093,7700:124,-4,72,0,0,0.0770409 -36094,7700:123,-3,72,0,0,0.0787009 -36095,7700:122,-2,72,0,0,0.0943773 -36096,7700:121,-1,72,0,0,0.0821968 -36097,1700:121,0,72,0,0,0.084576 -36098,1700:121,1,72,0,0,0.0831081 -36099,1700:122,2,72,0,0,0.0907532 -36100,1700:123,3,72,0,0,0.111109 -36101,1700:124,4,72,0,0,0.105329 -36102,1700:225,5,72,0,0,0.105029 -36103,1700:226,6,72,0,0,0.102337 -36104,1700:227,7,72,0,0,0.100921 -36105,1700:228,8,72,0,0,0.105262 -36106,1700:229,9,72,0,0,0.105358 -36107,1701:120,10,72,0,0,0.107095 -36108,1701:121,11,72,0,0,0.108647 -36109,1701:122,12,72,0,0,0.115233 -36110,1701:123,13,72,0,0,0.113278 -36111,1701:124,14,72,0,0,0.103542 -36112,1701:225,15,72,0,0,0.103532 -36113,1701:226,16,72,0,0,0.096068 -36114,1701:227,17,72,0,0,0.0952857 -36115,1701:228,18,72,0,0,0.0962288 -36116,1701:229,19,72,0,0,0.0928518 -36117,1702:120,20,72,0,0,0.0857124 -36118,1702:121,21,72,0,0,0.0798634 -36119,1702:123,23,72,0,0,0.0823131 -36120,1714:124,144,72,0,0,0.0771067 -36121,1714:225,145,72,0,0,0.0775465 -36122,1714:226,146,72,0,0,0.0773337 -36123,1714:227,147,72,0,0,0.0769462 -36124,1714:228,148,72,0,0,0.0760967 -36125,1714:229,149,72,0,0,0.075442 -36126,1715:120,150,72,0,0,0.0756932 -36127,1715:121,151,72,0,0,0.0757722 -36128,1715:122,152,72,0,0,0.0756068 -36129,1715:123,153,72,0,0,0.0755352 -36130,1715:124,154,72,0,0,0.0756141 -36131,1715:225,155,72,0,0,0.0757002 -36132,1715:226,156,72,0,0,0.0758155 -36133,1715:227,157,72,0,0,0.0758946 -36134,1715:228,158,72,0,0,0.0759452 -36135,1715:229,159,72,0,0,0.0759668 -36136,1716:120,160,72,0,0,0.076046 -36137,1716:121,161,72,0,0,0.0761327 -36138,1716:122,162,72,0,0,0.0762123 -36139,1716:123,163,72,0,0,0.0762558 -36140,1716:124,164,72,0,0,0.0762558 -36141,1716:225,165,72,0,0,0.0762485 -36142,1716:226,166,72,0,0,0.0762413 -36143,1716:227,167,72,0,0,0.0762413 -36144,1716:228,168,72,0,0,0.0762413 -36145,1716:229,169,72,0,0,0.0762629 -36146,1717:120,170,72,0,0,0.0762848 -36147,1717:121,171,72,0,0,0.0763137 -36148,1717:122,172,72,0,0,0.0763281 -36149,1717:123,173,72,0,0,0.0763354 -36150,1717:124,174,72,0,0,0.0763427 -36151,1717:225,175,72,0,0,0.07635 -36152,1717:226,176,72,0,0,0.07635 -36153,1717:227,177,72,0,0,0.0763354 -36154,1717:228,178,72,0,0,0.07635 -36155,1717:229,179,72,0,0,0.0764006 -36156,1718:120,180,72,0,0,0.0764876 -36157,7718:130,-180,73,0,0,0.0764442 -36158,7717:239,-179,73,0,0,0.0764949 -36159,7717:238,-178,73,0,0,0.0765093 -36160,7717:237,-177,73,0,0,0.0765313 -36161,7717:236,-176,73,0,0,0.076582 -36162,7717:235,-175,73,0,0,0.0766038 -36163,7717:134,-174,73,0,0,0.0766111 -36164,7717:133,-173,73,0,0,0.0766184 -36165,7717:132,-172,73,0,0,0.0766184 -36166,7717:131,-171,73,0,0,0.0766328 -36167,7717:130,-170,73,0,0,0.0766401 -36168,7716:239,-169,73,0,0,0.0766621 -36169,7716:238,-168,73,0,0,0.0766548 -36170,7716:237,-167,73,0,0,0.0766257 -36171,7716:236,-166,73,0,0,0.0766328 -36172,7716:235,-165,73,0,0,0.0765893 -36173,7716:134,-164,73,0,0,0.0765166 -36174,7716:133,-163,73,0,0,0.0764949 -36175,7716:132,-162,73,0,0,0.0764442 -36176,7716:131,-161,73,0,0,0.076415 -36177,7716:130,-160,73,0,0,0.076415 -36178,7715:239,-159,73,0,0,0.0764803 -36179,7715:238,-158,73,0,0,0.0766328 -36180,7715:237,-157,73,0,0,0.0766621 -36181,7715:236,-156,73,0,0,0.0766111 -36182,7715:235,-155,73,0,0,0.0759595 -36183,7715:134,-154,73,0,0,0.0755854 -36184,7714:237,-147,73,0,0,0.0768659 -36185,7714:236,-146,73,0,0,0.0767347 -36186,7714:235,-145,73,0,0,0.0765603 -36187,7714:134,-144,73,0,0,0.0766983 -36188,7714:133,-143,73,0,0,0.0767712 -36189,7714:132,-142,73,0,0,0.0766765 -36190,7714:131,-141,73,0,0,0.076524 -36191,7714:130,-140,73,0,0,0.0769754 -36192,7707:133,-73,73,0,0,0.0790369 -36193,7707:132,-72,73,0,0,0.0784405 -36194,7706:236,-66,73,0,0,0.0769315 -36195,7706:235,-65,73,0,0,0.0769462 -36196,7706:134,-64,73,0,0,0.0769825 -36197,7706:133,-63,73,0,0,0.0770264 -36198,7706:132,-62,73,0,0,0.0769899 -36199,7706:131,-61,73,0,0,0.0769754 -36200,7706:130,-60,73,0,0,0.0769681 -36201,7705:239,-59,73,0,0,0.0769534 -36202,7705:238,-58,73,0,0,0.0769097 -36203,7705:237,-57,73,0,0,0.0768806 -36204,7705:133,-53,73,0,0,0.0768076 -36205,7705:132,-52,73,0,0,0.0767567 -36206,7704:134,-44,73,0,0,0.07635 -36207,7704:133,-43,73,0,0,0.0762558 -36208,7704:132,-42,73,0,0,0.0762267 -36209,7704:131,-41,73,0,0,0.0762558 -36210,7704:130,-40,73,0,0,0.076205 -36211,7703:239,-39,73,0,0,0.0762123 -36212,7703:236,-36,73,0,0,0.0762558 -36213,7703:132,-32,73,0,0,0.0763789 -36214,7703:131,-31,73,0,0,0.0763354 -36215,7702:134,-24,73,0,0,0.076234 -36216,7702:133,-23,73,0,0,0.0762123 -36217,7702:132,-22,73,0,0,0.076205 -36218,7702:131,-21,73,0,0,0.0761256 -36219,7702:130,-20,73,0,0,0.0760606 -36220,7701:239,-19,73,0,0,0.0759234 -36221,7701:238,-18,73,0,0,0.075686 -36222,7701:237,-17,73,0,0,0.0755065 -36223,7701:236,-16,73,0,0,0.0754348 -36224,7701:235,-15,73,0,0,0.0755065 -36225,7701:134,-14,73,0,0,0.0764586 -36226,7701:133,-13,73,0,0,0.0788053 -36227,7701:132,-12,73,0,0,0.0884155 -36228,7701:131,-11,73,0,0,0.113537 -36229,7701:130,-10,73,0,0,0.114752 -36230,7700:239,-9,73,0,0,0.0945181 -36231,7700:238,-8,73,0,0,0.0860351 -36232,7700:237,-7,73,0,0,0.0841159 -36233,7700:236,-6,73,0,0,0.0820805 -36234,7700:235,-5,73,0,0,0.077451 -36235,7700:134,-4,73,0,0,0.077363 -36236,7700:133,-3,73,0,0,0.0785744 -36237,7700:132,-2,73,0,0,0.0813711 -36238,7700:131,-1,73,0,0,0.079284 -36239,1700:131,0,73,0,0,0.0800449 -36240,1700:131,1,73,0,0,0.0808276 -36241,1700:132,2,73,0,0,0.0866917 -36242,1700:133,3,73,0,0,0.0925235 -36243,1700:134,4,73,0,0,0.105078 -36244,1700:235,5,73,0,0,0.104615 -36245,1700:236,6,73,0,0,0.106467 -36246,1700:237,7,73,0,0,0.109095 -36247,1700:238,8,73,0,0,0.109666 -36248,1700:239,9,73,0,0,0.107893 -36249,1701:130,10,73,0,0,0.108826 -36250,1701:131,11,73,0,0,0.109706 -36251,1701:132,12,73,0,0,0.114491 -36252,1701:133,13,73,0,0,0.108081 -36253,1701:134,14,73,0,0,0.0931552 -36254,1701:237,17,73,0,0,0.0837997 -36255,1701:238,18,73,0,0,0.0906516 -36256,1701:239,19,73,0,0,0.092463 -36257,1702:130,20,73,0,0,0.0852306 -36258,1702:131,21,73,0,0,0.077974 -36259,1702:132,22,73,0,0,0.0769534 -36260,1714:235,145,73,0,0,0.0773998 -36261,1714:236,146,73,0,0,0.0769607 -36262,1714:237,147,73,0,0,0.0757362 -36263,1714:238,148,73,0,0,0.0756645 -36264,1714:239,149,73,0,0,0.075442 -36265,1715:130,150,73,0,0,0.0755781 -36266,1715:131,151,73,0,0,0.0756285 -36267,1715:132,152,73,0,0,0.0754706 -36268,1715:133,153,73,0,0,0.075442 -36269,1715:134,154,73,0,0,0.0755207 -36270,1715:235,155,73,0,0,0.0756068 -36271,1715:236,156,73,0,0,0.075686 -36272,1715:237,157,73,0,0,0.0758155 -36273,1715:238,158,73,0,0,0.0759595 -36274,1715:239,159,73,0,0,0.0760245 -36275,1716:130,160,73,0,0,0.0760749 -36276,1716:131,161,73,0,0,0.0761183 -36277,1716:132,162,73,0,0,0.0761761 -36278,1716:133,163,73,0,0,0.0762123 -36279,1716:134,164,73,0,0,0.0761978 -36280,1716:235,165,73,0,0,0.0761907 -36281,1716:236,166,73,0,0,0.0761834 -36282,1716:237,167,73,0,0,0.0761761 -36283,1716:238,168,73,0,0,0.0761978 -36284,1716:239,169,73,0,0,0.076234 -36285,1717:130,170,73,0,0,0.0762629 -36286,1717:131,171,73,0,0,0.0762918 -36287,1717:132,172,73,0,0,0.0763064 -36288,1717:133,173,73,0,0,0.0762991 -36289,1717:134,174,73,0,0,0.0763064 -36290,1717:235,175,73,0,0,0.0763137 -36291,1717:236,176,73,0,0,0.0763281 -36292,1717:237,177,73,0,0,0.0763427 -36293,1717:238,178,73,0,0,0.0763716 -36294,1717:239,179,73,0,0,0.076415 -36295,1718:130,180,73,0,0,0.0764442 -36296,7718:140,-180,74,0,0,0.0764369 -36297,7717:249,-179,74,0,0,0.0764369 -36298,7717:248,-178,74,0,0,0.0764513 -36299,7717:247,-177,74,0,0,0.0764803 -36300,7717:246,-176,74,0,0,0.0765093 -36301,7717:245,-175,74,0,0,0.0765313 -36302,7717:144,-174,74,0,0,0.0765603 -36303,7717:143,-173,74,0,0,0.0765676 -36304,7717:142,-172,74,0,0,0.0765603 -36305,7717:141,-171,74,0,0,0.0765384 -36306,7717:140,-170,74,0,0,0.0765384 -36307,7716:249,-169,74,0,0,0.076553 -36308,7716:248,-168,74,0,0,0.0766257 -36309,7716:247,-167,74,0,0,0.0766401 -36310,7716:246,-166,74,0,0,0.0766184 -36311,7716:245,-165,74,0,0,0.0765603 -36312,7716:144,-164,74,0,0,0.0764949 -36313,7716:143,-163,74,0,0,0.0764586 -36314,7716:142,-162,74,0,0,0.0764223 -36315,7716:141,-161,74,0,0,0.0764006 -36316,7716:140,-160,74,0,0,0.0764223 -36317,7715:249,-159,74,0,0,0.0765603 -36318,7715:248,-158,74,0,0,0.0766328 -36319,7715:247,-157,74,0,0,0.0766038 -36320,7714:249,-149,74,0,0,0.076895 -36321,7714:248,-148,74,0,0,0.0771067 -36322,7714:247,-147,74,0,0,0.0769681 -36323,7714:246,-146,74,0,0,0.0769462 -36324,7714:245,-145,74,0,0,0.0766765 -36325,7714:144,-144,74,0,0,0.0768514 -36326,7714:143,-143,74,0,0,0.0769242 -36327,7714:140,-140,74,0,0,0.0767567 -36328,7713:249,-139,74,0,0,0.0773559 -36329,7713:245,-135,74,0,0,0.077937 -36330,7707:249,-79,74,0,0,0.0797126 -36331,7707:248,-78,74,0,0,0.0804088 -36332,7707:247,-77,74,0,0,0.0808887 -36333,7707:142,-72,74,0,0,0.0779814 -36334,7706:245,-65,74,0,0,0.0769242 -36335,7706:144,-64,74,0,0,0.0770046 -36336,7706:143,-63,74,0,0,0.0770849 -36337,7705:249,-59,74,0,0,0.0769168 -36338,7705:248,-58,74,0,0,0.0769024 -36339,7705:144,-54,74,0,0,0.0766401 -36340,7705:143,-53,74,0,0,0.0766475 -36341,7703:247,-37,74,0,0,0.0762918 -36342,7703:245,-35,74,0,0,0.0762629 -36343,7703:144,-34,74,0,0,0.0762196 -36344,7703:143,-33,74,0,0,0.076234 -36345,7703:142,-32,74,0,0,0.076234 -36346,7703:141,-31,74,0,0,0.0762991 -36347,7703:140,-30,74,0,0,0.0762775 -36348,7702:249,-29,74,0,0,0.0762485 -36349,7702:248,-28,74,0,0,0.0762267 -36350,7702:247,-27,74,0,0,0.0762123 -36351,7702:246,-26,74,0,0,0.076205 -36352,7702:245,-25,74,0,0,0.076205 -36353,7702:144,-24,74,0,0,0.0762267 -36354,7702:143,-23,74,0,0,0.0762196 -36355,7702:142,-22,74,0,0,0.07614 -36356,7702:141,-21,74,0,0,0.0760029 -36357,7702:140,-20,74,0,0,0.0759091 -36358,7701:249,-19,74,0,0,0.0758803 -36359,7701:248,-18,74,0,0,0.0758298 -36360,7701:247,-17,74,0,0,0.075722 -36361,7701:246,-16,74,0,0,0.0755494 -36362,7701:245,-15,74,0,0,0.0754348 -36363,7701:144,-14,74,0,0,0.075758 -36364,7701:143,-13,74,0,0,0.0764223 -36365,7701:142,-12,74,0,0,0.076895 -36366,7701:141,-11,74,0,0,0.0783737 -36367,7701:140,-10,74,0,0,0.100521 -36368,7700:249,-9,74,0,0,0.112466 -36369,7700:248,-8,74,0,0,0.102535 -36370,7700:247,-7,74,0,0,0.0816018 -36371,7700:246,-6,74,0,0,0.0773778 -36372,7700:245,-5,74,0,0,0.0771799 -36373,7700:144,-4,74,0,0,0.077451 -36374,7700:143,-3,74,0,0,0.0770996 -36375,7700:142,-2,74,0,0,0.0783737 -36376,7700:141,-1,74,0,0,0.0782551 -36377,1700:141,0,74,0,0,0.0855999 -36378,1700:141,1,74,0,0,0.0909314 -36379,1700:142,2,74,0,0,0.0974329 -36380,1700:143,3,74,0,0,0.102158 -36381,1700:144,4,74,0,0,0.103209 -36382,1700:245,5,74,0,0,0.0963898 -36383,1700:246,6,74,0,0,0.100344 -36384,1700:247,7,74,0,0,0.10596 -36385,1700:248,8,74,0,0,0.106693 -36386,1700:249,9,74,0,0,0.102668 -36387,1701:140,10,74,0,0,0.094395 -36388,1701:141,11,74,0,0,0.104384 -36389,1701:142,12,74,0,0,0.0993467 -36390,1701:143,13,74,0,0,0.0871401 -36391,1701:249,19,74,0,0,0.0835084 -36392,1702:140,20,74,0,0,0.0870177 -36393,1702:141,21,74,0,0,0.0775394 -36394,1702:142,22,74,0,0,0.076386 -36395,1702:143,23,74,0,0,0.0766475 -36396,1714:142,142,74,0,0,0.0787084 -36397,1714:143,143,74,0,0,0.0785224 -36398,1714:144,144,74,0,0,0.0781663 -36399,1714:245,145,74,0,0,0.0773411 -36400,1714:246,146,74,0,0,0.0762629 -36401,1714:247,147,74,0,0,0.0758082 -36402,1714:248,148,74,0,0,0.075765 -36403,1714:249,149,74,0,0,0.075528 -36404,1715:140,150,74,0,0,0.0753561 -36405,1715:141,151,74,0,0,0.0755424 -36406,1715:142,152,74,0,0,0.075442 -36407,1715:143,153,74,0,0,0.0754348 -36408,1715:144,154,74,0,0,0.0755494 -36409,1715:245,155,74,0,0,0.0756141 -36410,1715:246,156,74,0,0,0.0756645 -36411,1715:247,157,74,0,0,0.075765 -36412,1715:248,158,74,0,0,0.0758658 -36413,1715:249,159,74,0,0,0.0759595 -36414,1716:140,160,74,0,0,0.0760317 -36415,1716:141,161,74,0,0,0.0760822 -36416,1716:142,162,74,0,0,0.0761327 -36417,1716:143,163,74,0,0,0.0761545 -36418,1716:144,164,74,0,0,0.0761618 -36419,1716:245,165,74,0,0,0.0761545 -36420,1716:246,166,74,0,0,0.0761472 -36421,1716:247,167,74,0,0,0.0761472 -36422,1716:248,168,74,0,0,0.0761618 -36423,1716:249,169,74,0,0,0.0761978 -36424,1717:140,170,74,0,0,0.0762267 -36425,1717:141,171,74,0,0,0.0762558 -36426,1717:142,172,74,0,0,0.0762702 -36427,1717:143,173,74,0,0,0.0762702 -36428,1717:144,174,74,0,0,0.0762702 -36429,1717:245,175,74,0,0,0.0762991 -36430,1717:246,176,74,0,0,0.0763281 -36431,1717:247,177,74,0,0,0.0763354 -36432,1717:248,178,74,0,0,0.0763427 -36433,1717:249,179,74,0,0,0.0763933 -36434,1718:140,180,74,0,0,0.0764369 -36435,7718:350,-180,75,0,0,0.0763571 -36436,7717:459,-179,75,0,0,0.0763933 -36437,7717:458,-178,75,0,0,0.076386 -36438,7717:457,-177,75,0,0,0.0764223 -36439,7717:456,-176,75,0,0,0.0764513 -36440,7717:455,-175,75,0,0,0.0764659 -36441,7717:354,-174,75,0,0,0.0764803 -36442,7717:353,-173,75,0,0,0.0765022 -36443,7717:352,-172,75,0,0,0.0765022 -36444,7717:351,-171,75,0,0,0.0764876 -36445,7717:350,-170,75,0,0,0.0764803 -36446,7716:459,-169,75,0,0,0.0764803 -36447,7716:458,-168,75,0,0,0.0765603 -36448,7716:457,-167,75,0,0,0.0766111 -36449,7716:456,-166,75,0,0,0.0765747 -36450,7716:455,-165,75,0,0,0.0765093 -36451,7716:354,-164,75,0,0,0.0764442 -36452,7716:353,-163,75,0,0,0.0764079 -36453,7716:352,-162,75,0,0,0.0763789 -36454,7716:351,-161,75,0,0,0.0764659 -36455,7716:350,-160,75,0,0,0.0765676 -36456,7715:459,-159,75,0,0,0.076582 -36457,7715:458,-158,75,0,0,0.0765893 -36458,7715:457,-157,75,0,0,0.0764296 -36459,7715:456,-156,75,0,0,0.0768221 -36460,7715:350,-150,75,0,0,0.0766983 -36461,7714:459,-149,75,0,0,0.0772018 -36462,7714:456,-146,75,0,0,0.0768806 -36463,7714:353,-143,75,0,0,0.0767929 -36464,7713:459,-139,75,0,0,0.0773118 -36465,7713:458,-138,75,0,0,0.0774291 -36466,7713:457,-137,75,0,0,0.0776421 -36467,7713:456,-136,75,0,0,0.0781218 -36468,7713:455,-135,75,0,0,0.0779519 -36469,7713:354,-134,75,0,0,0.0777896 -36470,7708:350,-80,75,0,0,0.0795694 -36471,7707:459,-79,75,0,0,0.0789322 -36472,7707:458,-78,75,0,0,0.0800599 -36473,7707:457,-77,75,0,0,0.0808963 -36474,7707:455,-75,75,0,0,0.0796523 -36475,7707:354,-74,75,0,0,0.0786861 -36476,7707:353,-73,75,0,0,0.0781071 -36477,7707:352,-72,75,0,0,0.0779296 -36478,7707:351,-71,75,0,0,0.0778337 -36479,7707:350,-70,75,0,0,0.0777601 -36480,7706:459,-69,75,0,0,0.077679 -36481,7706:458,-68,75,0,0,0.0775981 -36482,7706:457,-67,75,0,0,0.0774732 -36483,7706:456,-66,75,0,0,0.0772678 -36484,7706:455,-65,75,0,0,0.0769899 -36485,7705:459,-59,75,0,0,0.0769534 -36486,7705:458,-58,75,0,0,0.0768221 -36487,7705:354,-54,75,0,0,0.0768806 -36488,7705:353,-53,75,0,0,0.0768514 -36489,7704:459,-49,75,0,0,0.0767567 -36490,7703:354,-34,75,0,0,0.0762848 -36491,7703:353,-33,75,0,0,0.0762196 -36492,7703:352,-32,75,0,0,0.076205 -36493,7703:351,-31,75,0,0,0.0761907 -36494,7703:350,-30,75,0,0,0.0761978 -36495,7702:459,-29,75,0,0,0.0761978 -36496,7702:458,-28,75,0,0,0.0761978 -36497,7702:457,-27,75,0,0,0.0761978 -36498,7702:456,-26,75,0,0,0.076205 -36499,7702:455,-25,75,0,0,0.0762267 -36500,7702:354,-24,75,0,0,0.076234 -36501,7702:353,-23,75,0,0,0.0762485 -36502,7702:352,-22,75,0,0,0.0762123 -36503,7702:351,-21,75,0,0,0.0761183 -36504,7702:350,-20,75,0,0,0.0760317 -36505,7701:459,-19,75,0,0,0.0759956 -36506,7701:458,-18,75,0,0,0.0759234 -36507,7701:457,-17,75,0,0,0.0757795 -36508,7701:456,-16,75,0,0,0.0755854 -36509,7701:455,-15,75,0,0,0.075442 -36510,7701:354,-14,75,0,0,0.0753272 -36511,7701:353,-13,75,0,0,0.0753989 -36512,7701:352,-12,75,0,0,0.0755352 -36513,7701:351,-11,75,0,0,0.0762918 -36514,7701:350,-10,75,0,0,0.078463 -36515,7700:459,-9,75,0,0,0.089741 -36516,7700:458,-8,75,0,0,0.103047 -36517,7700:457,-7,75,0,0,0.080988 -36518,7700:456,-6,75,0,0,0.0782997 -36519,7700:455,-5,75,0,0,0.0789995 -36520,7700:354,-4,75,0,0,0.0796372 -36521,7700:353,-3,75,0,0,0.0791191 -36522,7700:352,-2,75,0,0,0.0774658 -36523,7700:351,-1,75,0,0,0.0800525 -36524,1700:351,0,75,0,0,0.0819026 -36525,1700:351,1,75,0,0,0.0916472 -36526,1700:352,2,75,0,0,0.0958097 -36527,1700:353,3,75,0,0,0.0958187 -36528,1700:354,4,75,0,0,0.0948438 -36529,1700:455,5,75,0,0,0.094237 -36530,1700:456,6,75,0,0,0.0921963 -36531,1700:457,7,75,0,0,0.102914 -36532,1700:458,8,75,0,0,0.0982218 -36533,1700:459,9,75,0,0,0.0959255 -36534,1701:350,10,75,0,0,0.0977858 -36535,1701:351,11,75,0,0,0.0978038 -36536,1701:455,15,75,0,0,0.0781663 -36537,1701:456,16,75,0,0,0.0801583 -36538,1701:457,17,75,0,0,0.0808353 -36539,1701:458,18,75,0,0,0.0815327 -36540,1701:459,19,75,0,0,0.0799844 -36541,1702:350,20,75,0,0,0.0797351 -36542,1702:351,21,75,0,0,0.0797427 -36543,1702:352,22,75,0,0,0.0762196 -36544,1702:353,23,75,0,0,0.0770117 -36545,1702:354,24,75,0,0,0.0777453 -36546,1714:350,140,75,0,0,0.0783812 -36547,1714:351,141,75,0,0,0.0780701 -36548,1714:352,142,75,0,0,0.0777158 -36549,1714:353,143,75,0,0,0.076713 -36550,1714:354,144,75,0,0,0.0757075 -36551,1714:458,148,75,0,0,0.0759091 -36552,1714:459,149,75,0,0,0.0755854 -36553,1715:350,150,75,0,0,0.0753631 -36554,1715:351,151,75,0,0,0.0753703 -36555,1715:352,152,75,0,0,0.0753703 -36556,1715:353,153,75,0,0,0.0754203 -36557,1715:354,154,75,0,0,0.0755711 -36558,1715:455,155,75,0,0,0.0756715 -36559,1715:456,156,75,0,0,0.0757002 -36560,1715:457,157,75,0,0,0.075729 -36561,1715:458,158,75,0,0,0.0758225 -36562,1715:459,159,75,0,0,0.0759307 -36563,1716:350,160,75,0,0,0.0759956 -36564,1716:351,161,75,0,0,0.076046 -36565,1716:352,162,75,0,0,0.0761111 -36566,1716:353,163,75,0,0,0.0761256 -36567,1716:354,164,75,0,0,0.0761327 -36568,1716:455,165,75,0,0,0.0761327 -36569,1716:456,166,75,0,0,0.07614 -36570,1716:457,167,75,0,0,0.0761545 -36571,1716:458,168,75,0,0,0.0761618 -36572,1716:459,169,75,0,0,0.0761907 -36573,1717:350,170,75,0,0,0.0762123 -36574,1717:351,171,75,0,0,0.0762267 -36575,1717:352,172,75,0,0,0.076234 -36576,1717:353,173,75,0,0,0.076234 -36577,1717:354,174,75,0,0,0.0762413 -36578,1717:455,175,75,0,0,0.0762629 -36579,1717:456,176,75,0,0,0.0762918 -36580,1717:457,177,75,0,0,0.0763137 -36581,1717:458,178,75,0,0,0.0763208 -36582,1717:459,179,75,0,0,0.0763208 -36583,1718:350,180,75,0,0,0.0763571 -36584,7718:360,-180,76,0,0,0.0763427 -36585,7717:469,-179,76,0,0,0.0763571 -36586,7717:468,-178,76,0,0,0.0763571 -36587,7717:467,-177,76,0,0,0.0763643 -36588,7717:466,-176,76,0,0,0.0764006 -36589,7717:465,-175,76,0,0,0.0764223 -36590,7717:364,-174,76,0,0,0.0764296 -36591,7717:363,-173,76,0,0,0.0764513 -36592,7717:362,-172,76,0,0,0.0764659 -36593,7717:361,-171,76,0,0,0.0764732 -36594,7717:360,-170,76,0,0,0.0764803 -36595,7716:469,-169,76,0,0,0.0764949 -36596,7716:468,-168,76,0,0,0.0765384 -36597,7716:467,-167,76,0,0,0.0765747 -36598,7716:466,-166,76,0,0,0.076553 -36599,7716:465,-165,76,0,0,0.0764803 -36600,7716:364,-164,76,0,0,0.0764006 -36601,7716:363,-163,76,0,0,0.0763571 -36602,7716:362,-162,76,0,0,0.0764803 -36603,7716:361,-161,76,0,0,0.0766111 -36604,7715:469,-159,76,0,0,0.0766765 -36605,7715:468,-158,76,0,0,0.0765967 -36606,7715:467,-157,76,0,0,0.0766257 -36607,7715:466,-156,76,0,0,0.0767785 -36608,7715:465,-155,76,0,0,0.0768221 -36609,7715:364,-154,76,0,0,0.0764876 -36610,7714:363,-143,76,0,0,0.0767274 -36611,7713:465,-135,76,0,0,0.077856 -36612,7713:364,-134,76,0,0,0.077878 -36613,7713:363,-133,76,0,0,0.0779296 -36614,7708:361,-81,76,0,0,0.0785819 -36615,7708:360,-80,76,0,0,0.0785744 -36616,7707:469,-79,76,0,0,0.0782922 -36617,7707:468,-78,76,0,0,0.080007 -36618,7707:467,-77,76,0,0,0.080113 -36619,7707:466,-76,76,0,0,0.0790369 -36620,7707:465,-75,76,0,0,0.0792915 -36621,7707:364,-74,76,0,0,0.0783368 -36622,7707:363,-73,76,0,0,0.078048 -36623,7707:362,-72,76,0,0,0.077797 -36624,7707:361,-71,76,0,0,0.0775394 -36625,7707:360,-70,76,0,0,0.0774806 -36626,7706:469,-69,76,0,0,0.077679 -36627,7706:468,-68,76,0,0,0.0777821 -36628,7706:364,-64,76,0,0,0.0769973 -36629,7706:363,-63,76,0,0,0.0770191 -36630,7706:362,-62,76,0,0,0.0769681 -36631,7706:360,-60,76,0,0,0.0769754 -36632,7705:469,-59,76,0,0,0.0769462 -36633,7705:467,-57,76,0,0,0.0766621 -36634,7705:466,-56,76,0,0,0.0765967 -36635,7705:465,-55,76,0,0,0.0764369 -36636,7705:362,-52,76,0,0,0.0766692 -36637,7705:360,-50,76,0,0,0.0765676 -36638,7704:469,-49,76,0,0,0.0765747 -36639,7704:468,-48,76,0,0,0.0764876 -36640,7704:467,-47,76,0,0,0.076415 -36641,7704:362,-42,76,0,0,0.0767056 -36642,7703:364,-34,76,0,0,0.0761834 -36643,7703:363,-33,76,0,0,0.0761834 -36644,7703:362,-32,76,0,0,0.0761618 -36645,7703:361,-31,76,0,0,0.0761618 -36646,7703:360,-30,76,0,0,0.0761689 -36647,7702:469,-29,76,0,0,0.0761978 -36648,7702:468,-28,76,0,0,0.076234 -36649,7702:467,-27,76,0,0,0.0762702 -36650,7702:466,-26,76,0,0,0.0762702 -36651,7702:465,-25,76,0,0,0.0762775 -36652,7702:364,-24,76,0,0,0.0762918 -36653,7702:363,-23,76,0,0,0.0762991 -36654,7702:362,-22,76,0,0,0.0762775 -36655,7702:361,-21,76,0,0,0.0761761 -36656,7702:360,-20,76,0,0,0.0761111 -36657,7701:469,-19,76,0,0,0.0759595 -36658,7701:468,-18,76,0,0,0.075729 -36659,7701:467,-17,76,0,0,0.0755998 -36660,7701:466,-16,76,0,0,0.0755711 -36661,7701:465,-15,76,0,0,0.0755781 -36662,7701:364,-14,76,0,0,0.0754706 -36663,7701:363,-13,76,0,0,0.0754133 -36664,7701:362,-12,76,0,0,0.0754562 -36665,7701:361,-11,76,0,0,0.0756141 -36666,7701:360,-10,76,0,0,0.0758874 -36667,7700:469,-9,76,0,0,0.0765384 -36668,7700:468,-8,76,0,0,0.0842266 -36669,7700:467,-7,76,0,0,0.0779075 -36670,7700:466,-6,76,0,0,0.0776495 -36671,7700:465,-5,76,0,0,0.0778854 -36672,7700:364,-4,76,0,0,0.0787159 -36673,7700:363,-3,76,0,0,0.0787605 -36674,7700:362,-2,76,0,0,0.0781663 -36675,7700:361,-1,76,0,0,0.0786636 -36676,1700:361,0,76,0,0,0.0803632 -36677,1700:361,1,76,0,0,0.0877057 -36678,1700:362,2,76,0,0,0.0847193 -36679,1700:363,3,76,0,0,0.0848149 -36680,1700:364,4,76,0,0,0.0888136 -36681,1700:465,5,76,0,0,0.0904231 -36682,1700:466,6,76,0,0,0.0990346 -36683,1700:467,7,76,0,0,0.0904992 -36684,1700:468,8,76,0,0,0.0935551 -36685,1700:469,9,76,0,0,0.0970091 -36686,1701:360,10,76,0,0,0.0937995 -36687,1701:364,14,76,0,0,0.077797 -36688,1701:465,15,76,0,0,0.0778116 -36689,1701:466,16,76,0,0,0.0773411 -36690,1701:467,17,76,0,0,0.077635 -36691,1701:468,18,76,0,0,0.0780256 -36692,1701:469,19,76,0,0,0.0789545 -36693,1702:360,20,76,0,0,0.0814173 -36694,1702:361,21,76,0,0,0.0815327 -36695,1713:469,139,76,0,0,0.0784927 -36696,1714:360,140,76,0,0,0.077974 -36697,1714:361,141,76,0,0,0.0771873 -36698,1714:362,142,76,0,0,0.0761689 -36699,1714:363,143,76,0,0,0.0755567 -36700,1714:364,144,76,0,0,0.075758 -36701,1714:465,145,76,0,0,0.0754706 -36702,1714:468,148,76,0,0,0.0758225 -36703,1714:469,149,76,0,0,0.0758298 -36704,1715:360,150,76,0,0,0.0755207 -36705,1715:361,151,76,0,0,0.0753203 -36706,1715:362,152,76,0,0,0.0753272 -36707,1715:363,153,76,0,0,0.0753561 -36708,1715:364,154,76,0,0,0.0755065 -36709,1715:465,155,76,0,0,0.0756715 -36710,1715:466,156,76,0,0,0.0757507 -36711,1715:467,157,76,0,0,0.0757937 -36712,1715:468,158,76,0,0,0.0758298 -36713,1715:469,159,76,0,0,0.0758946 -36714,1716:360,160,76,0,0,0.0759379 -36715,1716:361,161,76,0,0,0.0759884 -36716,1716:362,162,76,0,0,0.0760606 -36717,1716:363,163,76,0,0,0.0761111 -36718,1716:364,164,76,0,0,0.0761256 -36719,1716:465,165,76,0,0,0.0761327 -36720,1716:466,166,76,0,0,0.0761472 -36721,1716:467,167,76,0,0,0.0761618 -36722,1716:468,168,76,0,0,0.0761761 -36723,1716:469,169,76,0,0,0.0761761 -36724,1717:360,170,76,0,0,0.0761907 -36725,1717:361,171,76,0,0,0.0761978 -36726,1717:362,172,76,0,0,0.076205 -36727,1717:363,173,76,0,0,0.0762196 -36728,1717:364,174,76,0,0,0.076234 -36729,1717:465,175,76,0,0,0.0762558 -36730,1717:466,176,76,0,0,0.0762848 -36731,1717:467,177,76,0,0,0.0763064 -36732,1717:468,178,76,0,0,0.0763208 -36733,1717:469,179,76,0,0,0.0763281 -36734,1718:360,180,76,0,0,0.0763427 -36735,7718:370,-180,77,0,0,0.0763354 -36736,7717:479,-179,77,0,0,0.07635 -36737,7717:478,-178,77,0,0,0.07635 -36738,7717:477,-177,77,0,0,0.0763643 -36739,7717:476,-176,77,0,0,0.0763789 -36740,7717:475,-175,77,0,0,0.0764006 -36741,7717:374,-174,77,0,0,0.0764079 -36742,7717:373,-173,77,0,0,0.0764079 -36743,7717:372,-172,77,0,0,0.0764079 -36744,7717:371,-171,77,0,0,0.0764369 -36745,7717:370,-170,77,0,0,0.0764803 -36746,7716:479,-169,77,0,0,0.0765166 -36747,7716:478,-168,77,0,0,0.076524 -36748,7716:477,-167,77,0,0,0.0765384 -36749,7716:476,-166,77,0,0,0.0764949 -36750,7716:475,-165,77,0,0,0.076415 -36751,7716:374,-164,77,0,0,0.0763571 -36752,7716:373,-163,77,0,0,0.0763789 -36753,7716:372,-162,77,0,0,0.0765967 -36754,7715:479,-159,77,0,0,0.0765313 -36755,7715:477,-157,77,0,0,0.0765603 -36756,7715:476,-156,77,0,0,0.0766111 -36757,7715:475,-155,77,0,0,0.0766912 -36758,7715:374,-154,77,0,0,0.0767203 -36759,7715:371,-151,77,0,0,0.0766692 -36760,7714:372,-142,77,0,0,0.0767056 -36761,7713:475,-135,77,0,0,0.077679 -36762,7713:374,-134,77,0,0,0.0777084 -36763,7713:373,-133,77,0,0,0.0778854 -36764,7708:371,-81,77,0,0,0.0781367 -36765,7708:370,-80,77,0,0,0.0780331 -36766,7707:479,-79,77,0,0,0.0780035 -36767,7707:477,-77,77,0,0,0.0786041 -36768,7707:476,-76,77,0,0,0.0782255 -36769,7707:373,-73,77,0,0,0.0778854 -36770,7707:372,-72,77,0,0,0.0776644 -36771,7707:371,-71,77,0,0,0.0773559 -36772,7707:370,-70,77,0,0,0.0772018 -36773,7706:479,-69,77,0,0,0.0776421 -36774,7706:371,-61,77,0,0,0.0766475 -36775,7706:370,-60,77,0,0,0.0767638 -36776,7705:479,-59,77,0,0,0.0768659 -36777,7705:476,-56,77,0,0,0.0765022 -36778,7705:475,-55,77,0,0,0.0764949 -36779,7705:372,-52,77,0,0,0.0764659 -36780,7705:371,-51,77,0,0,0.0764296 -36781,7705:370,-50,77,0,0,0.0764513 -36782,7704:374,-44,77,0,0,0.0765967 -36783,7704:373,-43,77,0,0,0.0766257 -36784,7703:476,-36,77,0,0,0.0763137 -36785,7703:475,-35,77,0,0,0.0761978 -36786,7703:374,-34,77,0,0,0.0761618 -36787,7703:373,-33,77,0,0,0.0761327 -36788,7703:372,-32,77,0,0,0.0761472 -36789,7703:371,-31,77,0,0,0.0761907 -36790,7703:370,-30,77,0,0,0.076234 -36791,7702:479,-29,77,0,0,0.0762629 -36792,7702:478,-28,77,0,0,0.0762629 -36793,7702:477,-27,77,0,0,0.0762702 -36794,7702:476,-26,77,0,0,0.0762848 -36795,7702:475,-25,77,0,0,0.0762848 -36796,7702:374,-24,77,0,0,0.0762848 -36797,7702:373,-23,77,0,0,0.0762702 -36798,7702:372,-22,77,0,0,0.0762267 -36799,7702:371,-21,77,0,0,0.0761907 -36800,7702:370,-20,77,0,0,0.0761472 -36801,7701:479,-19,77,0,0,0.076046 -36802,7701:478,-18,77,0,0,0.0759307 -36803,7701:477,-17,77,0,0,0.075758 -36804,7701:476,-16,77,0,0,0.0755567 -36805,7701:475,-15,77,0,0,0.0753631 -36806,7701:374,-14,77,0,0,0.0753344 -36807,7701:373,-13,77,0,0,0.0753489 -36808,7701:372,-12,77,0,0,0.0752772 -36809,7701:371,-11,77,0,0,0.0753631 -36810,7701:370,-10,77,0,0,0.0756068 -36811,7700:479,-9,77,0,0,0.0761545 -36812,7700:478,-8,77,0,0,0.0767056 -36813,7700:477,-7,77,0,0,0.0775687 -36814,7700:476,-6,77,0,0,0.078783 -36815,7700:475,-5,77,0,0,0.0788128 -36816,7700:374,-4,77,0,0,0.0778706 -36817,7700:372,-2,77,0,0,0.0795921 -36818,7700:371,-1,77,0,0,0.0792764 -36819,1700:371,0,77,0,0,0.0839498 -36820,1700:371,1,77,0,0,0.086448 -36821,1700:372,2,77,0,0,0.0850786 -36822,1700:373,3,77,0,0,0.0836422 -36823,1700:374,4,77,0,0,0.0938867 -36824,1700:475,5,77,0,0,0.096542 -36825,1700:476,6,77,0,0,0.0947997 -36826,1700:477,7,77,0,0,0.0852225 -36827,1700:478,8,77,0,0,0.0910759 -36828,1700:479,9,77,0,0,0.0895062 -36829,1701:372,12,77,0,0,0.0771799 -36830,1701:373,13,77,0,0,0.0768149 -36831,1701:374,14,77,0,0,0.0769754 -36832,1701:475,15,77,0,0,0.0769462 -36833,1701:476,16,77,0,0,0.077063 -36834,1701:477,17,77,0,0,0.0771581 -36835,1701:478,18,77,0,0,0.0773778 -36836,1701:479,19,77,0,0,0.0779591 -36837,1702:370,20,77,0,0,0.0801736 -36838,1702:371,21,77,0,0,0.0786861 -36839,1702:372,22,77,0,0,0.0764006 -36840,1713:477,137,77,0,0,0.078783 -36841,1713:478,138,77,0,0,0.0785669 -36842,1713:479,139,77,0,0,0.0779519 -36843,1714:370,140,77,0,0,0.0769681 -36844,1714:371,141,77,0,0,0.075313 -36845,1714:372,142,77,0,0,0.0752986 -36846,1714:373,143,77,0,0,0.0754779 -36847,1714:374,144,77,0,0,0.0758443 -36848,1714:475,145,77,0,0,0.0757002 -36849,1714:479,149,77,0,0,0.0756572 -36850,1715:370,150,77,0,0,0.0758155 -36851,1715:371,151,77,0,0,0.0753561 -36852,1715:372,152,77,0,0,0.0753203 -36853,1715:373,153,77,0,0,0.0753272 -36854,1715:374,154,77,0,0,0.0754921 -36855,1715:475,155,77,0,0,0.0756428 -36856,1715:476,156,77,0,0,0.0757002 -36857,1715:477,157,77,0,0,0.0757362 -36858,1715:478,158,77,0,0,0.0757937 -36859,1715:479,159,77,0,0,0.0758731 -36860,1716:370,160,77,0,0,0.0759307 -36861,1716:371,161,77,0,0,0.0759668 -36862,1716:372,162,77,0,0,0.0760245 -36863,1716:373,163,77,0,0,0.0761038 -36864,1716:374,164,77,0,0,0.07614 -36865,1716:475,165,77,0,0,0.0761472 -36866,1716:476,166,77,0,0,0.0761545 -36867,1716:477,167,77,0,0,0.0761618 -36868,1716:478,168,77,0,0,0.0761834 -36869,1716:479,169,77,0,0,0.0761907 -36870,1717:370,170,77,0,0,0.0761907 -36871,1717:371,171,77,0,0,0.0761978 -36872,1717:372,172,77,0,0,0.076205 -36873,1717:373,173,77,0,0,0.0762196 -36874,1717:374,174,77,0,0,0.0762267 -36875,1717:475,175,77,0,0,0.0762629 -36876,1717:476,176,77,0,0,0.0762918 -36877,1717:477,177,77,0,0,0.0763064 -36878,1717:478,178,77,0,0,0.0763137 -36879,1717:479,179,77,0,0,0.0763208 -36880,1718:370,180,77,0,0,0.0763354 -36881,7718:380,-180,78,0,0,0.0763064 -36882,7717:489,-179,78,0,0,0.0763137 -36883,7717:488,-178,78,0,0,0.0763281 -36884,7717:487,-177,78,0,0,0.07635 -36885,7717:486,-176,78,0,0,0.0763643 -36886,7717:485,-175,78,0,0,0.0763789 -36887,7717:384,-174,78,0,0,0.0763716 -36888,7717:383,-173,78,0,0,0.0763643 -36889,7717:382,-172,78,0,0,0.0764006 -36890,7717:381,-171,78,0,0,0.0764442 -36891,7717:380,-170,78,0,0,0.0764949 -36892,7716:489,-169,78,0,0,0.0764949 -36893,7716:488,-168,78,0,0,0.0764949 -36894,7716:487,-167,78,0,0,0.0764803 -36895,7716:486,-166,78,0,0,0.0764223 -36896,7716:485,-165,78,0,0,0.0763643 -36897,7716:384,-164,78,0,0,0.0763427 -36898,7716:383,-163,78,0,0,0.0765093 -36899,7715:489,-159,78,0,0,0.0764949 -36900,7715:488,-158,78,0,0,0.076553 -36901,7715:485,-155,78,0,0,0.0766328 -36902,7715:384,-154,78,0,0,0.0766111 -36903,7715:383,-153,78,0,0,0.0766184 -36904,7715:382,-152,78,0,0,0.0766621 -36905,7715:381,-151,78,0,0,0.0766184 -36906,7714:489,-149,78,0,0,0.0776275 -36907,7714:382,-142,78,0,0,0.0759452 -36908,7713:485,-135,78,0,0,0.0776644 -36909,7713:384,-134,78,0,0,0.077819 -36910,7713:383,-133,78,0,0,0.0778116 -36911,7708:380,-80,78,0,0,0.0779224 -36912,7707:489,-79,78,0,0,0.077974 -36913,7707:488,-78,78,0,0,0.078085 -36914,7707:485,-75,78,0,0,0.0784405 -36915,7707:382,-72,78,0,0,0.0773411 -36916,7707:381,-71,78,0,0,0.0770117 -36917,7707:380,-70,78,0,0,0.0770191 -36918,7706:489,-69,78,0,0,0.0770922 -36919,7706:488,-68,78,0,0,0.0772311 -36920,7706:487,-67,78,0,0,0.0772459 -36921,7706:382,-62,78,0,0,0.0766692 -36922,7706:381,-61,78,0,0,0.0766038 -36923,7706:380,-60,78,0,0,0.0766257 -36924,7705:489,-59,78,0,0,0.0767203 -36925,7705:488,-58,78,0,0,0.0766111 -36926,7705:487,-57,78,0,0,0.0765093 -36927,7705:486,-56,78,0,0,0.0765022 -36928,7705:485,-55,78,0,0,0.0764949 -36929,7705:384,-54,78,0,0,0.0765166 -36930,7705:382,-52,78,0,0,0.0765093 -36931,7705:380,-50,78,0,0,0.0764513 -36932,7704:489,-49,78,0,0,0.0765384 -36933,7704:383,-43,78,0,0,0.0766111 -36934,7703:488,-38,78,0,0,0.0764006 -36935,7703:487,-37,78,0,0,0.0763137 -36936,7703:486,-36,78,0,0,0.0762629 -36937,7703:485,-35,78,0,0,0.0762775 -36938,7703:384,-34,78,0,0,0.0762413 -36939,7703:383,-33,78,0,0,0.0762123 -36940,7703:382,-32,78,0,0,0.076205 -36941,7703:381,-31,78,0,0,0.0762123 -36942,7703:380,-30,78,0,0,0.0762413 -36943,7702:489,-29,78,0,0,0.0762558 -36944,7702:488,-28,78,0,0,0.0762485 -36945,7702:487,-27,78,0,0,0.0762702 -36946,7702:486,-26,78,0,0,0.0762775 -36947,7702:485,-25,78,0,0,0.0762918 -36948,7702:384,-24,78,0,0,0.0762558 -36949,7702:383,-23,78,0,0,0.0762267 -36950,7702:382,-22,78,0,0,0.0762123 -36951,7702:381,-21,78,0,0,0.0761472 -36952,7702:380,-20,78,0,0,0.0760749 -36953,7701:489,-19,78,0,0,0.0760029 -36954,7701:488,-18,78,0,0,0.0758658 -36955,7701:487,-17,78,0,0,0.0757867 -36956,7701:486,-16,78,0,0,0.07565 -36957,7701:485,-15,78,0,0,0.0754492 -36958,7701:384,-14,78,0,0,0.075313 -36959,7701:383,-13,78,0,0,0.07527 -36960,7701:382,-12,78,0,0,0.0752559 -36961,7701:381,-11,78,0,0,0.0752631 -36962,7701:380,-10,78,0,0,0.0754061 -36963,7700:489,-9,78,0,0,0.0759162 -36964,7700:488,-8,78,0,0,0.0762775 -36965,7700:487,-7,78,0,0,0.0775026 -36966,7700:486,-6,78,0,0,0.0786266 -36967,7700:485,-5,78,0,0,0.0788053 -36968,7700:384,-4,78,0,0,0.0790369 -36969,7700:383,-3,78,0,0,0.0784852 -36970,7700:381,-1,78,0,0,0.0818642 -36971,1700:381,0,78,0,0,0.0824762 -36972,1700:381,1,78,0,0,0.0787234 -36973,1700:382,2,78,0,0,0.0782551 -36974,1700:383,3,78,0,0,0.0773411 -36975,1700:384,4,78,0,0,0.0814095 -36976,1700:485,5,78,0,0,0.0871239 -36977,1700:486,6,78,0,0,0.0884567 -36978,1700:487,7,78,0,0,0.0905415 -36979,1700:488,8,78,0,0,0.0839419 -36980,1701:381,11,78,0,0,0.0786861 -36981,1701:382,12,78,0,0,0.0769754 -36982,1701:383,13,78,0,0,0.0768514 -36983,1701:384,14,78,0,0,0.0768732 -36984,1701:485,15,78,0,0,0.0766839 -36985,1701:486,16,78,0,0,0.0769973 -36986,1701:487,17,78,0,0,0.0773118 -36987,1701:488,18,78,0,0,0.0787009 -36988,1701:489,19,78,0,0,0.0803555 -36989,1702:380,20,78,0,0,0.0803405 -36990,1702:381,21,78,0,0,0.0811335 -36991,1702:382,22,78,0,0,0.0782775 -36992,1702:383,23,78,0,0,0.0762485 -36993,1713:383,133,78,0,0,0.0802265 -36994,1713:384,134,78,0,0,0.079939 -36995,1713:485,135,78,0,0,0.0794567 -36996,1713:486,136,78,0,0,0.07827 -36997,1713:487,137,78,0,0,0.0767056 -36998,1713:488,138,78,0,0,0.0764876 -36999,1713:489,139,78,0,0,0.0758298 -37000,1714:380,140,78,0,0,0.0756355 -37001,1714:381,141,78,0,0,0.0757435 -37002,1714:382,142,78,0,0,0.0759523 -37003,1714:383,143,78,0,0,0.0760679 -37004,1714:384,144,78,0,0,0.0760606 -37005,1714:485,145,78,0,0,0.076039 -37006,1714:486,146,78,0,0,0.0755135 -37007,1715:380,150,78,0,0,0.0755424 -37008,1715:381,151,78,0,0,0.0756787 -37009,1715:382,152,78,0,0,0.0753489 -37010,1715:383,153,78,0,0,0.075313 -37011,1715:384,154,78,0,0,0.0754492 -37012,1715:485,155,78,0,0,0.0755494 -37013,1715:486,156,78,0,0,0.0755926 -37014,1715:487,157,78,0,0,0.0756285 -37015,1715:488,158,78,0,0,0.0757507 -37016,1715:489,159,78,0,0,0.0758803 -37017,1716:380,160,78,0,0,0.0759019 -37018,1716:381,161,78,0,0,0.0759234 -37019,1716:382,162,78,0,0,0.075974 -37020,1716:383,163,78,0,0,0.0760749 -37021,1716:384,164,78,0,0,0.07614 -37022,1716:485,165,78,0,0,0.0761472 -37023,1716:486,166,78,0,0,0.0761689 -37024,1716:487,167,78,0,0,0.0761834 -37025,1716:488,168,78,0,0,0.0761978 -37026,1716:489,169,78,0,0,0.0761978 -37027,1717:380,170,78,0,0,0.076205 -37028,1717:381,171,78,0,0,0.0762123 -37029,1717:382,172,78,0,0,0.0762196 -37030,1717:383,173,78,0,0,0.0762123 -37031,1717:384,174,78,0,0,0.0762267 -37032,1717:485,175,78,0,0,0.0762558 -37033,1717:486,176,78,0,0,0.0762848 -37034,1717:487,177,78,0,0,0.0762918 -37035,1717:488,178,78,0,0,0.0762918 -37036,1717:489,179,78,0,0,0.0762918 -37037,1718:380,180,78,0,0,0.0763064 -37038,7718:390,-180,79,0,0,0.0762702 -37039,7717:499,-179,79,0,0,0.0762918 -37040,7717:498,-178,79,0,0,0.0763354 -37041,7717:497,-177,79,0,0,0.0763354 -37042,7717:496,-176,79,0,0,0.0763354 -37043,7717:495,-175,79,0,0,0.0763427 -37044,7717:394,-174,79,0,0,0.0763571 -37045,7717:393,-173,79,0,0,0.076386 -37046,7717:392,-172,79,0,0,0.0764442 -37047,7717:391,-171,79,0,0,0.0764803 -37048,7717:390,-170,79,0,0,0.0764659 -37049,7716:499,-169,79,0,0,0.0764442 -37050,7716:498,-168,79,0,0,0.0764223 -37051,7716:497,-167,79,0,0,0.0763933 -37052,7716:496,-166,79,0,0,0.0763643 -37053,7716:495,-165,79,0,0,0.0763354 -37054,7716:394,-164,79,0,0,0.0763933 -37055,7716:393,-163,79,0,0,0.0765457 -37056,7716:391,-161,79,0,0,0.076553 -37057,7716:390,-160,79,0,0,0.0765747 -37058,7715:495,-155,79,0,0,0.0766184 -37059,7715:393,-153,79,0,0,0.0765457 -37060,7715:392,-152,79,0,0,0.0766038 -37061,7715:391,-151,79,0,0,0.0766184 -37062,7715:390,-150,79,0,0,0.0766328 -37063,7713:495,-135,79,0,0,0.0775687 -37064,7713:394,-134,79,0,0,0.077635 -37065,7713:393,-133,79,0,0,0.0776201 -37066,7713:392,-132,79,0,0,0.0778634 -37067,7708:391,-81,79,0,0,0.0777084 -37068,7708:390,-80,79,0,0,0.0779519 -37069,7707:499,-79,79,0,0,0.077937 -37070,7707:392,-72,79,0,0,0.0772825 -37071,7707:391,-71,79,0,0,0.0770409 -37072,7707:390,-70,79,0,0,0.0769825 -37073,7706:499,-69,79,0,0,0.0769681 -37074,7706:498,-68,79,0,0,0.0769681 -37075,7706:497,-67,79,0,0,0.0769168 -37076,7706:495,-65,79,0,0,0.077063 -37077,7706:394,-64,79,0,0,0.0769973 -37078,7706:392,-62,79,0,0,0.0767494 -37079,7706:391,-61,79,0,0,0.0765313 -37080,7706:390,-60,79,0,0,0.076524 -37081,7705:499,-59,79,0,0,0.0766328 -37082,7705:394,-54,79,0,0,0.0766257 -37083,7705:393,-53,79,0,0,0.0765676 -37084,7705:392,-52,79,0,0,0.0764659 -37085,7705:391,-51,79,0,0,0.0762991 -37086,7704:498,-48,79,0,0,0.0765384 -37087,7704:392,-42,79,0,0,0.0764803 -37088,7704:390,-40,79,0,0,0.0764513 -37089,7703:499,-39,79,0,0,0.0763281 -37090,7703:498,-38,79,0,0,0.0762775 -37091,7703:497,-37,79,0,0,0.0762702 -37092,7703:496,-36,79,0,0,0.0762702 -37093,7703:495,-35,79,0,0,0.0762991 -37094,7703:394,-34,79,0,0,0.0762918 -37095,7703:393,-33,79,0,0,0.0762413 -37096,7703:392,-32,79,0,0,0.0762413 -37097,7703:391,-31,79,0,0,0.0762413 -37098,7703:390,-30,79,0,0,0.076234 -37099,7702:499,-29,79,0,0,0.076234 -37100,7702:498,-28,79,0,0,0.076234 -37101,7702:497,-27,79,0,0,0.0762702 -37102,7702:496,-26,79,0,0,0.0762848 -37103,7702:495,-25,79,0,0,0.0762918 -37104,7702:394,-24,79,0,0,0.0762702 -37105,7702:393,-23,79,0,0,0.076205 -37106,7702:392,-22,79,0,0,0.0761689 -37107,7702:391,-21,79,0,0,0.0761472 -37108,7702:390,-20,79,0,0,0.0760967 -37109,7701:499,-19,79,0,0,0.076046 -37110,7701:498,-18,79,0,0,0.0759307 -37111,7701:497,-17,79,0,0,0.0756787 -37112,7701:496,-16,79,0,0,0.0755854 -37113,7701:495,-15,79,0,0,0.0754921 -37114,7701:394,-14,79,0,0,0.0753489 -37115,7701:393,-13,79,0,0,0.0752844 -37116,7701:392,-12,79,0,0,0.0752559 -37117,7701:391,-11,79,0,0,0.0752631 -37118,7701:390,-10,79,0,0,0.0753703 -37119,7700:499,-9,79,0,0,0.0755854 -37120,7700:498,-8,79,0,0,0.0758946 -37121,7700:497,-7,79,0,0,0.0775907 -37122,7700:496,-6,79,0,0,0.0782775 -37123,7700:495,-5,79,0,0,0.0782847 -37124,7700:394,-4,79,0,0,0.0781071 -37125,7700:392,-2,79,0,0,0.0771215 -37126,1700:391,0,79,0,0,0.0780552 -37127,1700:391,1,79,0,0,0.0799466 -37128,1700:392,2,79,0,0,0.0782626 -37129,1700:393,3,79,0,0,0.0768877 -37130,1700:394,4,79,0,0,0.0767858 -37131,1700:495,5,79,0,0,0.0778116 -37132,1700:496,6,79,0,0,0.0870013 -37133,1700:497,7,79,0,0,0.089699 -37134,1701:390,10,79,0,0,0.0787605 -37135,1701:391,11,79,0,0,0.0769899 -37136,1701:392,12,79,0,0,0.0766401 -37137,1701:393,13,79,0,0,0.076553 -37138,1701:394,14,79,0,0,0.0764442 -37139,1701:495,15,79,0,0,0.0763427 -37140,1701:496,16,79,0,0,0.0769681 -37141,1701:497,17,79,0,0,0.0784927 -37142,1701:498,18,79,0,0,0.0791042 -37143,1701:499,19,79,0,0,0.0785224 -37144,1702:390,20,79,0,0,0.0757435 -37145,1702:391,21,79,0,0,0.0759956 -37146,1702:392,22,79,0,0,0.0769681 -37147,1702:393,23,79,0,0,0.0763933 -37148,1702:394,24,79,0,0,0.0765166 -37149,1712:499,129,79,0,0,0.0892469 -37150,1713:393,133,79,0,0,0.0801812 -37151,1713:394,134,79,0,0,0.0790369 -37152,1713:495,135,79,0,0,0.0775981 -37153,1713:496,136,79,0,0,0.0762267 -37154,1713:497,137,79,0,0,0.0759091 -37155,1713:498,138,79,0,0,0.0756428 -37156,1713:499,139,79,0,0,0.0755207 -37157,1714:390,140,79,0,0,0.0754849 -37158,1714:391,141,79,0,0,0.075758 -37159,1714:392,142,79,0,0,0.0757507 -37160,1714:393,143,79,0,0,0.0755926 -37161,1714:394,144,79,0,0,0.075765 -37162,1714:495,145,79,0,0,0.0756787 -37163,1714:496,146,79,0,0,0.0756355 -37164,1714:497,147,79,0,0,0.0755926 -37165,1714:498,148,79,0,0,0.0755567 -37166,1714:499,149,79,0,0,0.0755998 -37167,1715:390,150,79,0,0,0.0754562 -37168,1715:391,151,79,0,0,0.0756572 -37169,1715:392,152,79,0,0,0.0754849 -37170,1715:393,153,79,0,0,0.0755135 -37171,1715:394,154,79,0,0,0.0755494 -37172,1715:495,155,79,0,0,0.0755567 -37173,1715:496,156,79,0,0,0.0755639 -37174,1715:497,157,79,0,0,0.0755998 -37175,1715:498,158,79,0,0,0.075758 -37176,1715:499,159,79,0,0,0.0758586 -37177,1716:390,160,79,0,0,0.0758515 -37178,1716:391,161,79,0,0,0.0758586 -37179,1716:392,162,79,0,0,0.0759234 -37180,1716:393,163,79,0,0,0.0760245 -37181,1716:394,164,79,0,0,0.0761183 -37182,1716:495,165,79,0,0,0.0761545 -37183,1716:496,166,79,0,0,0.0761761 -37184,1716:497,167,79,0,0,0.0761978 -37185,1716:498,168,79,0,0,0.0762123 -37186,1716:499,169,79,0,0,0.0762196 -37187,1717:390,170,79,0,0,0.0762267 -37188,1717:391,171,79,0,0,0.0762196 -37189,1717:392,172,79,0,0,0.0762123 -37190,1717:393,173,79,0,0,0.0762123 -37191,1717:394,174,79,0,0,0.076234 -37192,1717:495,175,79,0,0,0.0762558 -37193,1717:496,176,79,0,0,0.0762775 -37194,1717:497,177,79,0,0,0.0762848 -37195,1717:498,178,79,0,0,0.0762702 -37196,1717:499,179,79,0,0,0.0762702 -37197,1718:390,180,79,0,0,0.0762702 -37198,7818:100,-180,80,0,0,0.0762629 -37199,7817:209,-179,80,0,0,0.0762629 -37200,7817:208,-178,80,0,0,0.0762702 -37201,7817:207,-177,80,0,0,0.0762848 -37202,7817:206,-176,80,0,0,0.0763137 -37203,7817:205,-175,80,0,0,0.0763643 -37204,7817:104,-174,80,0,0,0.076386 -37205,7817:103,-173,80,0,0,0.0764079 -37206,7817:102,-172,80,0,0,0.0764369 -37207,7817:101,-171,80,0,0,0.0764586 -37208,7817:100,-170,80,0,0,0.076415 -37209,7816:209,-169,80,0,0,0.076386 -37210,7816:208,-168,80,0,0,0.0763789 -37211,7816:207,-167,80,0,0,0.0763716 -37212,7816:206,-166,80,0,0,0.07635 -37213,7816:205,-165,80,0,0,0.0763571 -37214,7816:104,-164,80,0,0,0.0764586 -37215,7816:103,-163,80,0,0,0.0765747 -37216,7816:102,-162,80,0,0,0.0764513 -37217,7816:101,-161,80,0,0,0.076582 -37218,7816:100,-160,80,0,0,0.0766328 -37219,7815:209,-159,80,0,0,0.0766983 -37220,7815:103,-153,80,0,0,0.0765166 -37221,7815:102,-152,80,0,0,0.0765022 -37222,7815:101,-151,80,0,0,0.0765967 -37223,7815:100,-150,80,0,0,0.0766839 -37224,7814:209,-149,80,0,0,0.0767056 -37225,7814:208,-148,80,0,0,0.0766184 -37226,7813:205,-135,80,0,0,0.0778116 -37227,7813:104,-134,80,0,0,0.0776055 -37228,7813:103,-133,80,0,0,0.0777821 -37229,7813:102,-132,80,0,0,0.0779445 -37230,7813:101,-131,80,0,0,0.0785744 -37231,7808:100,-80,80,0,0,0.0776201 -37232,7807:209,-79,80,0,0,0.0779149 -37233,7807:101,-71,80,0,0,0.0769825 -37234,7807:100,-70,80,0,0,0.0769681 -37235,7806:209,-69,80,0,0,0.0769389 -37236,7806:208,-68,80,0,0,0.0769534 -37237,7806:207,-67,80,0,0,0.0769242 -37238,7806:206,-66,80,0,0,0.0768806 -37239,7806:205,-65,80,0,0,0.0768294 -37240,7806:104,-64,80,0,0,0.0767567 -37241,7806:103,-63,80,0,0,0.0766621 -37242,7806:102,-62,80,0,0,0.0765747 -37243,7806:101,-61,80,0,0,0.0764659 -37244,7806:100,-60,80,0,0,0.076415 -37245,7805:209,-59,80,0,0,0.0764296 -37246,7805:208,-58,80,0,0,0.0763789 -37247,7805:205,-55,80,0,0,0.0765747 -37248,7805:104,-54,80,0,0,0.076582 -37249,7805:103,-53,80,0,0,0.0765603 -37250,7805:102,-52,80,0,0,0.0764586 -37251,7804:209,-49,80,0,0,0.0764223 -37252,7804:208,-48,80,0,0,0.0764586 -37253,7804:207,-47,80,0,0,0.0765603 -37254,7804:206,-46,80,0,0,0.0765747 -37255,7804:205,-45,80,0,0,0.0765747 -37256,7804:104,-44,80,0,0,0.0765313 -37257,7804:103,-43,80,0,0,0.0764659 -37258,7804:102,-42,80,0,0,0.076386 -37259,7804:101,-41,80,0,0,0.0763064 -37260,7804:100,-40,80,0,0,0.0762918 -37261,7803:209,-39,80,0,0,0.0763064 -37262,7803:208,-38,80,0,0,0.0762991 -37263,7803:207,-37,80,0,0,0.0762991 -37264,7803:206,-36,80,0,0,0.0762991 -37265,7803:205,-35,80,0,0,0.0762918 -37266,7803:104,-34,80,0,0,0.0762775 -37267,7803:103,-33,80,0,0,0.0762775 -37268,7803:102,-32,80,0,0,0.0762991 -37269,7803:101,-31,80,0,0,0.0762991 -37270,7803:100,-30,80,0,0,0.0762848 -37271,7802:209,-29,80,0,0,0.0762775 -37272,7802:208,-28,80,0,0,0.0762775 -37273,7802:207,-27,80,0,0,0.0762918 -37274,7802:206,-26,80,0,0,0.0762918 -37275,7802:205,-25,80,0,0,0.0762918 -37276,7802:104,-24,80,0,0,0.0762775 -37277,7802:103,-23,80,0,0,0.0762267 -37278,7802:102,-22,80,0,0,0.0761761 -37279,7802:101,-21,80,0,0,0.0761256 -37280,7802:100,-20,80,0,0,0.0760533 -37281,7801:209,-19,80,0,0,0.0760317 -37282,7801:208,-18,80,0,0,0.0759307 -37283,7801:207,-17,80,0,0,0.0758443 -37284,7801:206,-16,80,0,0,0.0757435 -37285,7801:205,-15,80,0,0,0.0755854 -37286,7801:104,-14,80,0,0,0.0753775 -37287,7801:103,-13,80,0,0,0.0753058 -37288,7801:102,-12,80,0,0,0.0752631 -37289,7801:101,-11,80,0,0,0.0752631 -37290,7801:100,-10,80,0,0,0.0752916 -37291,7800:209,-9,80,0,0,0.0753989 -37292,7800:208,-8,80,0,0,0.0755711 -37293,7800:207,-7,80,0,0,0.0766038 -37294,7800:206,-6,80,0,0,0.077797 -37295,7800:205,-5,80,0,0,0.0784108 -37296,7800:104,-4,80,0,0,0.0783812 -37297,7800:103,-3,80,0,0,0.0785819 -37298,7800:101,-1,80,0,0,0.0774584 -37299,1800:101,0,80,0,0,0.0770556 -37300,1800:101,1,80,0,0,0.0771141 -37301,1800:102,2,80,0,0,0.0769754 -37302,1800:103,3,80,0,0,0.0765022 -37303,1800:104,4,80,0,0,0.077224 -37304,1800:205,5,80,0,0,0.0793366 -37305,1800:206,6,80,0,0,0.0829205 -37306,1800:207,7,80,0,0,0.0865453 -37307,1800:209,9,80,0,0,0.0787905 -37308,1801:100,10,80,0,0,0.0772018 -37309,1801:101,11,80,0,0,0.0761761 -37310,1801:102,12,80,0,0,0.0761472 -37311,1801:103,13,80,0,0,0.0762196 -37312,1801:104,14,80,0,0,0.076386 -37313,1801:205,15,80,0,0,0.0769462 -37314,1801:206,16,80,0,0,0.0773263 -37315,1801:207,17,80,0,0,0.0774439 -37316,1801:208,18,80,0,0,0.0772825 -37317,1802:205,25,80,0,0,0.0786936 -37318,1812:100,120,80,0,0,0.0895312 -37319,1812:101,121,80,0,0,0.089523 -37320,1813:100,130,80,0,0,0.085431 -37321,1813:101,131,80,0,0,0.0826707 -37322,1813:102,132,80,0,0,0.079939 -37323,1813:103,133,80,0,0,0.0801962 -37324,1813:104,134,80,0,0,0.0798332 -37325,1813:205,135,80,0,0,0.0780701 -37326,1813:206,136,80,0,0,0.0762918 -37327,1813:207,137,80,0,0,0.076039 -37328,1813:208,138,80,0,0,0.0759307 -37329,1813:209,139,80,0,0,0.0758946 -37330,1814:100,140,80,0,0,0.0757002 -37331,1814:101,141,80,0,0,0.075801 -37332,1814:102,142,80,0,0,0.0755639 -37333,1814:103,143,80,0,0,0.0752772 -37334,1814:104,144,80,0,0,0.075528 -37335,1814:205,145,80,0,0,0.0759019 -37336,1814:206,146,80,0,0,0.0760967 -37337,1814:207,147,80,0,0,0.0763789 -37338,1814:208,148,80,0,0,0.0763354 -37339,1814:209,149,80,0,0,0.0762848 -37340,1815:100,150,80,0,0,0.0760822 -37341,1815:101,151,80,0,0,0.0755135 -37342,1815:102,152,80,0,0,0.0754275 -37343,1815:103,153,80,0,0,0.0755065 -37344,1815:104,154,80,0,0,0.0755207 -37345,1815:205,155,80,0,0,0.0755065 -37346,1815:206,156,80,0,0,0.0755424 -37347,1815:207,157,80,0,0,0.0756285 -37348,1815:208,158,80,0,0,0.075722 -37349,1815:209,159,80,0,0,0.0758082 -37350,1816:100,160,80,0,0,0.0758082 -37351,1816:101,161,80,0,0,0.0758155 -37352,1816:102,162,80,0,0,0.0758658 -37353,1816:103,163,80,0,0,0.0759523 -37354,1816:104,164,80,0,0,0.0760679 -37355,1816:205,165,80,0,0,0.07614 -37356,1816:206,166,80,0,0,0.0761545 -37357,1816:207,167,80,0,0,0.0761834 -37358,1816:208,168,80,0,0,0.0762196 -37359,1816:209,169,80,0,0,0.0762267 -37360,1817:100,170,80,0,0,0.076234 -37361,1817:101,171,80,0,0,0.0762485 -37362,1817:102,172,80,0,0,0.0762485 -37363,1817:103,173,80,0,0,0.076234 -37364,1817:104,174,80,0,0,0.0762413 -37365,1817:205,175,80,0,0,0.0762558 -37366,1817:206,176,80,0,0,0.0762629 -37367,1817:207,177,80,0,0,0.0762702 -37368,1817:208,178,80,0,0,0.0762702 -37369,1817:209,179,80,0,0,0.0762702 -37370,1818:100,180,80,0,0,0.0762629 -37371,7818:110,-180,81,0,0,0.0762558 -37372,7817:219,-179,81,0,0,0.0762485 -37373,7817:218,-178,81,0,0,0.0762558 -37374,7817:217,-177,81,0,0,0.0762775 -37375,7817:216,-176,81,0,0,0.0763427 -37376,7817:215,-175,81,0,0,0.0763716 -37377,7817:114,-174,81,0,0,0.0763789 -37378,7817:113,-173,81,0,0,0.0763933 -37379,7817:112,-172,81,0,0,0.076415 -37380,7817:111,-171,81,0,0,0.076415 -37381,7817:110,-170,81,0,0,0.0763933 -37382,7816:219,-169,81,0,0,0.0763789 -37383,7816:218,-168,81,0,0,0.0763571 -37384,7816:217,-167,81,0,0,0.0763643 -37385,7816:216,-166,81,0,0,0.0763716 -37386,7816:215,-165,81,0,0,0.0764006 -37387,7816:111,-161,81,0,0,0.0766257 -37388,7816:110,-160,81,0,0,0.076713 -37389,7815:219,-159,81,0,0,0.0767785 -37390,7815:218,-158,81,0,0,0.0768149 -37391,7815:217,-157,81,0,0,0.0768294 -37392,7815:114,-154,81,0,0,0.0763716 -37393,7815:113,-153,81,0,0,0.0763789 -37394,7815:112,-152,81,0,0,0.0764659 -37395,7815:111,-151,81,0,0,0.0765893 -37396,7815:110,-150,81,0,0,0.0766765 -37397,7814:219,-149,81,0,0,0.0767056 -37398,7813:215,-135,81,0,0,0.0777453 -37399,7813:111,-131,81,0,0,0.0781514 -37400,7813:110,-130,81,0,0,0.0784036 -37401,7812:219,-129,81,0,0,0.0790294 -37402,7812:218,-128,81,0,0,0.0790743 -37403,7812:217,-127,81,0,0,0.0791417 -37404,7807:218,-78,81,0,0,0.0778706 -37405,7806:218,-68,81,0,0,0.0769607 -37406,7806:217,-67,81,0,0,0.0769899 -37407,7806:216,-66,81,0,0,0.0769168 -37408,7806:215,-65,81,0,0,0.0767929 -37409,7806:114,-64,81,0,0,0.0767203 -37410,7806:113,-63,81,0,0,0.0766475 -37411,7806:112,-62,81,0,0,0.0765457 -37412,7806:111,-61,81,0,0,0.076415 -37413,7806:110,-60,81,0,0,0.0763716 -37414,7805:219,-59,81,0,0,0.0763571 -37415,7805:218,-58,81,0,0,0.0764006 -37416,7805:217,-57,81,0,0,0.0764369 -37417,7805:215,-55,81,0,0,0.0764876 -37418,7805:114,-54,81,0,0,0.0765093 -37419,7805:113,-53,81,0,0,0.0764803 -37420,7805:112,-52,81,0,0,0.0764586 -37421,7805:111,-51,81,0,0,0.076415 -37422,7804:218,-48,81,0,0,0.0764006 -37423,7804:217,-47,81,0,0,0.0765967 -37424,7804:216,-46,81,0,0,0.0766184 -37425,7804:215,-45,81,0,0,0.0765676 -37426,7804:114,-44,81,0,0,0.0763933 -37427,7804:113,-43,81,0,0,0.0762991 -37428,7804:112,-42,81,0,0,0.0762848 -37429,7804:111,-41,81,0,0,0.0763064 -37430,7804:110,-40,81,0,0,0.0763354 -37431,7803:219,-39,81,0,0,0.0763354 -37432,7803:218,-38,81,0,0,0.0763281 -37433,7803:217,-37,81,0,0,0.0763208 -37434,7803:216,-36,81,0,0,0.0763137 -37435,7803:215,-35,81,0,0,0.0763064 -37436,7803:114,-34,81,0,0,0.0762991 -37437,7803:113,-33,81,0,0,0.0762918 -37438,7803:112,-32,81,0,0,0.0763064 -37439,7803:111,-31,81,0,0,0.0763137 -37440,7803:110,-30,81,0,0,0.0762918 -37441,7802:219,-29,81,0,0,0.0762918 -37442,7802:218,-28,81,0,0,0.0762918 -37443,7802:217,-27,81,0,0,0.0762918 -37444,7802:216,-26,81,0,0,0.0763064 -37445,7802:215,-25,81,0,0,0.0763137 -37446,7802:114,-24,81,0,0,0.0762848 -37447,7802:113,-23,81,0,0,0.076234 -37448,7802:112,-22,81,0,0,0.0761907 -37449,7802:111,-21,81,0,0,0.0761689 -37450,7802:110,-20,81,0,0,0.0761327 -37451,7801:219,-19,81,0,0,0.0760822 -37452,7801:218,-18,81,0,0,0.0759595 -37453,7801:217,-17,81,0,0,0.0758155 -37454,7801:216,-16,81,0,0,0.0757075 -37455,7801:215,-15,81,0,0,0.075528 -37456,7801:114,-14,81,0,0,0.075442 -37457,7801:113,-13,81,0,0,0.0753631 -37458,7801:112,-12,81,0,0,0.0753272 -37459,7801:111,-11,81,0,0,0.075313 -37460,7801:110,-10,81,0,0,0.0752916 -37461,7800:219,-9,81,0,0,0.0752986 -37462,7800:218,-8,81,0,0,0.0754133 -37463,7800:217,-7,81,0,0,0.0759307 -37464,7800:216,-6,81,0,0,0.0765747 -37465,7800:215,-5,81,0,0,0.077532 -37466,7800:114,-4,81,0,0,0.0781812 -37467,7800:113,-3,81,0,0,0.0784108 -37468,7800:112,-2,81,0,0,0.0787159 -37469,7800:111,-1,81,0,0,0.0784777 -37470,1800:111,0,81,0,0,0.0777307 -37471,1800:111,1,81,0,0,0.0770338 -37472,1800:112,2,81,0,0,0.0769462 -37473,1800:113,3,81,0,0,0.0763137 -37474,1800:114,4,81,0,0,0.0763208 -37475,1800:215,5,81,0,0,0.0772018 -37476,1800:216,6,81,0,0,0.0779445 -37477,1800:219,9,81,0,0,0.07888 -37478,1801:110,10,81,0,0,0.076415 -37479,1801:111,11,81,0,0,0.0771873 -37480,1801:112,12,81,0,0,0.0779591 -37481,1801:113,13,81,0,0,0.0787382 -37482,1801:114,14,81,0,0,0.079254 -37483,1801:215,15,81,0,0,0.0802039 -37484,1812:217,127,81,0,0,0.0857286 -37485,1812:219,129,81,0,0,0.085359 -37486,1813:110,130,81,0,0,0.0858415 -37487,1813:111,131,81,0,0,0.084831 -37488,1813:112,132,81,0,0,0.0800146 -37489,1813:113,133,81,0,0,0.0806751 -37490,1813:114,134,81,0,0,0.0795092 -37491,1813:215,135,81,0,0,0.0774658 -37492,1813:216,136,81,0,0,0.0768221 -37493,1813:217,137,81,0,0,0.0763064 -37494,1813:218,138,81,0,0,0.0765022 -37495,1813:219,139,81,0,0,0.0764442 -37496,1814:110,140,81,0,0,0.0763933 -37497,1814:111,141,81,0,0,0.0762775 -37498,1814:112,142,81,0,0,0.076415 -37499,1814:113,143,81,0,0,0.0761907 -37500,1814:114,144,81,0,0,0.0759379 -37501,1814:215,145,81,0,0,0.075765 -37502,1814:216,146,81,0,0,0.0760749 -37503,1814:217,147,81,0,0,0.0762196 -37504,1814:218,148,81,0,0,0.0763208 -37505,1814:219,149,81,0,0,0.0766328 -37506,1815:110,150,81,0,0,0.0764223 -37507,1815:111,151,81,0,0,0.0755065 -37508,1815:112,152,81,0,0,0.0753917 -37509,1815:113,153,81,0,0,0.0754706 -37510,1815:114,154,81,0,0,0.075442 -37511,1815:215,155,81,0,0,0.0754634 -37512,1815:216,156,81,0,0,0.0754562 -37513,1815:217,157,81,0,0,0.0755207 -37514,1815:218,158,81,0,0,0.07565 -37515,1815:219,159,81,0,0,0.075758 -37516,1816:110,160,81,0,0,0.0757722 -37517,1816:111,161,81,0,0,0.0757937 -37518,1816:112,162,81,0,0,0.0758225 -37519,1816:113,163,81,0,0,0.0758803 -37520,1816:114,164,81,0,0,0.075974 -37521,1816:215,165,81,0,0,0.0761038 -37522,1816:216,166,81,0,0,0.0761761 -37523,1816:217,167,81,0,0,0.076205 -37524,1816:218,168,81,0,0,0.0762196 -37525,1816:219,169,81,0,0,0.076234 -37526,1817:110,170,81,0,0,0.0762558 -37527,1817:111,171,81,0,0,0.0762702 -37528,1817:112,172,81,0,0,0.0762558 -37529,1817:113,173,81,0,0,0.0762485 -37530,1817:114,174,81,0,0,0.0762558 -37531,1817:215,175,81,0,0,0.0762702 -37532,1817:216,176,81,0,0,0.0762848 -37533,1817:217,177,81,0,0,0.0762848 -37534,1817:218,178,81,0,0,0.0762918 -37535,1817:219,179,81,0,0,0.0762702 -37536,1818:110,180,81,0,0,0.0762558 -37537,7818:120,-180,82,0,0,0.0762629 -37538,7817:229,-179,82,0,0,0.0762629 -37539,7817:228,-178,82,0,0,0.0762848 -37540,7817:227,-177,82,0,0,0.0763137 -37541,7817:226,-176,82,0,0,0.07635 -37542,7817:225,-175,82,0,0,0.0763643 -37543,7817:124,-174,82,0,0,0.0763789 -37544,7817:123,-173,82,0,0,0.076386 -37545,7817:122,-172,82,0,0,0.0763933 -37546,7817:121,-171,82,0,0,0.0763933 -37547,7817:120,-170,82,0,0,0.0763716 -37548,7816:229,-169,82,0,0,0.0763427 -37549,7816:228,-168,82,0,0,0.0763354 -37550,7816:227,-167,82,0,0,0.0763643 -37551,7816:226,-166,82,0,0,0.0764732 -37552,7816:225,-165,82,0,0,0.0764949 -37553,7816:124,-164,82,0,0,0.0764369 -37554,7816:123,-163,82,0,0,0.0764803 -37555,7816:122,-162,82,0,0,0.0765384 -37556,7816:121,-161,82,0,0,0.0765893 -37557,7816:120,-160,82,0,0,0.0766692 -37558,7815:124,-154,82,0,0,0.0762558 -37559,7815:123,-153,82,0,0,0.07635 -37560,7815:122,-152,82,0,0,0.0765093 -37561,7815:121,-151,82,0,0,0.0766548 -37562,7815:120,-150,82,0,0,0.0766839 -37563,7814:228,-148,82,0,0,0.0767567 -37564,7814:227,-147,82,0,0,0.0768294 -37565,7814:226,-146,82,0,0,0.0768294 -37566,7813:226,-136,82,0,0,0.0777084 -37567,7813:225,-135,82,0,0,0.0776421 -37568,7813:123,-133,82,0,0,0.0789397 -37569,7808:120,-80,82,0,0,0.0803708 -37570,7807:228,-78,82,0,0,0.0778116 -37571,7807:227,-77,82,0,0,0.0776718 -37572,7806:122,-62,82,0,0,0.0765676 -37573,7806:121,-61,82,0,0,0.0763643 -37574,7806:120,-60,82,0,0,0.0763281 -37575,7805:229,-59,82,0,0,0.0763933 -37576,7805:228,-58,82,0,0,0.076386 -37577,7805:226,-56,82,0,0,0.0765313 -37578,7805:225,-55,82,0,0,0.0764803 -37579,7805:124,-54,82,0,0,0.0765166 -37580,7805:122,-52,82,0,0,0.0764659 -37581,7805:121,-51,82,0,0,0.0764876 -37582,7804:229,-49,82,0,0,0.0765313 -37583,7804:227,-47,82,0,0,0.0766692 -37584,7804:226,-46,82,0,0,0.0766401 -37585,7804:225,-45,82,0,0,0.0764296 -37586,7804:124,-44,82,0,0,0.0763281 -37587,7804:123,-43,82,0,0,0.0763354 -37588,7804:122,-42,82,0,0,0.0763427 -37589,7804:121,-41,82,0,0,0.07635 -37590,7804:120,-40,82,0,0,0.07635 -37591,7803:229,-39,82,0,0,0.0763427 -37592,7803:228,-38,82,0,0,0.07635 -37593,7803:227,-37,82,0,0,0.0763427 -37594,7803:226,-36,82,0,0,0.0763208 -37595,7803:225,-35,82,0,0,0.0762991 -37596,7803:124,-34,82,0,0,0.0762918 -37597,7803:123,-33,82,0,0,0.0762918 -37598,7803:122,-32,82,0,0,0.0762918 -37599,7803:121,-31,82,0,0,0.0763064 -37600,7803:120,-30,82,0,0,0.0762991 -37601,7802:229,-29,82,0,0,0.0762918 -37602,7802:228,-28,82,0,0,0.0762991 -37603,7802:227,-27,82,0,0,0.0763137 -37604,7802:226,-26,82,0,0,0.0763208 -37605,7802:225,-25,82,0,0,0.0763137 -37606,7802:124,-24,82,0,0,0.0762918 -37607,7802:123,-23,82,0,0,0.0762413 -37608,7802:122,-22,82,0,0,0.0761978 -37609,7802:121,-21,82,0,0,0.0761618 -37610,7802:120,-20,82,0,0,0.0760679 -37611,7801:229,-19,82,0,0,0.0759884 -37612,7801:228,-18,82,0,0,0.0759234 -37613,7801:227,-17,82,0,0,0.0758082 -37614,7801:226,-16,82,0,0,0.0756285 -37615,7801:225,-15,82,0,0,0.0755854 -37616,7801:124,-14,82,0,0,0.0756068 -37617,7801:123,-13,82,0,0,0.0754993 -37618,7801:122,-12,82,0,0,0.0753561 -37619,7801:121,-11,82,0,0,0.0753489 -37620,7801:120,-10,82,0,0,0.0753272 -37621,7800:229,-9,82,0,0,0.0753344 -37622,7800:228,-8,82,0,0,0.0753489 -37623,7800:227,-7,82,0,0,0.0754779 -37624,7800:226,-6,82,0,0,0.07614 -37625,7800:225,-5,82,0,0,0.0769024 -37626,7800:124,-4,82,0,0,0.0766983 -37627,7800:123,-3,82,0,0,0.0765166 -37628,7800:122,-2,82,0,0,0.0766111 -37629,7800:121,-1,82,0,0,0.0768585 -37630,1800:121,0,82,0,0,0.0766475 -37631,1800:121,1,82,0,0,0.076205 -37632,1800:122,2,82,0,0,0.0762196 -37633,1800:123,3,82,0,0,0.0760749 -37634,1800:124,4,82,0,0,0.0771433 -37635,1800:225,5,82,0,0,0.080022 -37636,1800:226,6,82,0,0,0.0803859 -37637,1800:227,7,82,0,0,0.079939 -37638,1800:228,8,82,0,0,0.080614 -37639,1800:229,9,82,0,0,0.0764949 -37640,1801:120,10,82,0,0,0.0772459 -37641,1801:121,11,82,0,0,0.0781884 -37642,1801:122,12,82,0,0,0.0795545 -37643,1801:123,13,82,0,0,0.0806445 -37644,1801:124,14,82,0,0,0.081471 -37645,1803:120,30,82,0,0,0.0895312 -37646,1811:228,118,82,0,0,0.089523 -37647,1811:229,119,82,0,0,0.0895062 -37648,1812:120,120,82,0,0,0.0895062 -37649,1812:121,121,82,0,0,0.0895062 -37650,1812:229,129,82,0,0,0.0830534 -37651,1813:120,130,82,0,0,0.0824683 -37652,1813:121,131,82,0,0,0.0837446 -37653,1813:122,132,82,0,0,0.0818408 -37654,1813:123,133,82,0,0,0.0807056 -37655,1813:124,134,82,0,0,0.0800296 -37656,1813:225,135,82,0,0,0.0785968 -37657,1813:226,136,82,0,0,0.0777821 -37658,1813:227,137,82,0,0,0.0770775 -37659,1813:228,138,82,0,0,0.0764223 -37660,1813:229,139,82,0,0,0.0762702 -37661,1814:120,140,82,0,0,0.0788053 -37662,1814:121,141,82,0,0,0.0789771 -37663,1814:122,142,82,0,0,0.0783812 -37664,1814:123,143,82,0,0,0.0779961 -37665,1814:124,144,82,0,0,0.0777821 -37666,1814:225,145,82,0,0,0.0759668 -37667,1814:226,146,82,0,0,0.0765313 -37668,1814:227,147,82,0,0,0.0759668 -37669,1814:228,148,82,0,0,0.0755854 -37670,1814:229,149,82,0,0,0.0771799 -37671,1815:120,150,82,0,0,0.0768294 -37672,1815:121,151,82,0,0,0.0755494 -37673,1815:122,152,82,0,0,0.0753917 -37674,1815:123,153,82,0,0,0.0753775 -37675,1815:124,154,82,0,0,0.0753272 -37676,1815:225,155,82,0,0,0.0753561 -37677,1815:226,156,82,0,0,0.0754203 -37678,1815:227,157,82,0,0,0.0754061 -37679,1815:228,158,82,0,0,0.0754921 -37680,1815:229,159,82,0,0,0.0756355 -37681,1816:120,160,82,0,0,0.0757362 -37682,1816:121,161,82,0,0,0.075765 -37683,1816:122,162,82,0,0,0.075765 -37684,1816:123,163,82,0,0,0.0757937 -37685,1816:124,164,82,0,0,0.0758803 -37686,1816:225,165,82,0,0,0.0760533 -37687,1816:226,166,82,0,0,0.0761545 -37688,1816:227,167,82,0,0,0.076205 -37689,1816:228,168,82,0,0,0.0762196 -37690,1816:229,169,82,0,0,0.0762413 -37691,1817:120,170,82,0,0,0.0762702 -37692,1817:121,171,82,0,0,0.0762775 -37693,1817:122,172,82,0,0,0.0762629 -37694,1817:123,173,82,0,0,0.0762629 -37695,1817:124,174,82,0,0,0.0762775 -37696,1817:225,175,82,0,0,0.0762848 -37697,1817:226,176,82,0,0,0.0762848 -37698,1817:227,177,82,0,0,0.0762848 -37699,1817:228,178,82,0,0,0.0762918 -37700,1817:229,179,82,0,0,0.0762775 -37701,1818:120,180,82,0,0,0.0762629 -37702,7818:130,-180,83,0,0,0.0762775 -37703,7817:239,-179,83,0,0,0.0762848 -37704,7817:238,-178,83,0,0,0.0763137 -37705,7817:237,-177,83,0,0,0.0763354 -37706,7817:236,-176,83,0,0,0.07635 -37707,7817:235,-175,83,0,0,0.0763571 -37708,7817:134,-174,83,0,0,0.0763571 -37709,7817:133,-173,83,0,0,0.0763643 -37710,7817:132,-172,83,0,0,0.0763716 -37711,7817:131,-171,83,0,0,0.0763643 -37712,7817:130,-170,83,0,0,0.0763354 -37713,7816:239,-169,83,0,0,0.0763354 -37714,7816:238,-168,83,0,0,0.0765313 -37715,7816:237,-167,83,0,0,0.0766184 -37716,7816:236,-166,83,0,0,0.0766257 -37717,7816:235,-165,83,0,0,0.0766038 -37718,7816:134,-164,83,0,0,0.0765457 -37719,7816:133,-163,83,0,0,0.0765022 -37720,7816:132,-162,83,0,0,0.0765022 -37721,7816:131,-161,83,0,0,0.0765384 -37722,7816:130,-160,83,0,0,0.0765384 -37723,7815:239,-159,83,0,0,0.0765022 -37724,7815:238,-158,83,0,0,0.0766692 -37725,7815:134,-154,83,0,0,0.0762775 -37726,7815:133,-153,83,0,0,0.0763571 -37727,7815:132,-152,83,0,0,0.076553 -37728,7815:131,-151,83,0,0,0.0766548 -37729,7815:130,-150,83,0,0,0.0766621 -37730,7813:237,-137,83,0,0,0.0776055 -37731,7813:236,-136,83,0,0,0.0777675 -37732,7813:133,-133,83,0,0,0.0792391 -37733,7808:131,-81,83,0,0,0.0791266 -37734,7807:238,-78,83,0,0,0.0777527 -37735,7806:134,-64,83,0,0,0.0766621 -37736,7806:133,-63,83,0,0,0.0766475 -37737,7806:132,-62,83,0,0,0.0765457 -37738,7806:131,-61,83,0,0,0.0763571 -37739,7806:130,-60,83,0,0,0.0762629 -37740,7805:236,-56,83,0,0,0.0766912 -37741,7805:235,-55,83,0,0,0.0765676 -37742,7805:134,-54,83,0,0,0.076582 -37743,7805:133,-53,83,0,0,0.076553 -37744,7805:132,-52,83,0,0,0.0765022 -37745,7805:131,-51,83,0,0,0.0765093 -37746,7805:130,-50,83,0,0,0.076553 -37747,7804:239,-49,83,0,0,0.0765967 -37748,7804:238,-48,83,0,0,0.0766038 -37749,7804:237,-47,83,0,0,0.0765384 -37750,7804:236,-46,83,0,0,0.0764513 -37751,7804:235,-45,83,0,0,0.0763281 -37752,7804:134,-44,83,0,0,0.07635 -37753,7804:133,-43,83,0,0,0.0763789 -37754,7804:132,-42,83,0,0,0.076386 -37755,7804:131,-41,83,0,0,0.0763716 -37756,7804:130,-40,83,0,0,0.0763643 -37757,7803:239,-39,83,0,0,0.0763571 -37758,7803:238,-38,83,0,0,0.0763571 -37759,7803:237,-37,83,0,0,0.0763354 -37760,7803:236,-36,83,0,0,0.0763064 -37761,7803:235,-35,83,0,0,0.0762775 -37762,7803:134,-34,83,0,0,0.0762702 -37763,7803:133,-33,83,0,0,0.0762848 -37764,7803:132,-32,83,0,0,0.0762848 -37765,7803:131,-31,83,0,0,0.0762848 -37766,7803:130,-30,83,0,0,0.0762918 -37767,7802:239,-29,83,0,0,0.0762848 -37768,7802:238,-28,83,0,0,0.0762775 -37769,7802:237,-27,83,0,0,0.0762775 -37770,7802:236,-26,83,0,0,0.0762702 -37771,7802:235,-25,83,0,0,0.0762848 -37772,7802:134,-24,83,0,0,0.0762775 -37773,7802:133,-23,83,0,0,0.0762413 -37774,7802:132,-22,83,0,0,0.0762123 -37775,7802:131,-21,83,0,0,0.0761689 -37776,7802:130,-20,83,0,0,0.0760895 -37777,7801:239,-19,83,0,0,0.0760245 -37778,7801:238,-18,83,0,0,0.0758658 -37779,7801:237,-17,83,0,0,0.0757435 -37780,7801:236,-16,83,0,0,0.075686 -37781,7801:235,-15,83,0,0,0.0757075 -37782,7801:134,-14,83,0,0,0.0757147 -37783,7801:133,-13,83,0,0,0.0755998 -37784,7801:132,-12,83,0,0,0.0754133 -37785,7801:131,-11,83,0,0,0.0753847 -37786,7801:130,-10,83,0,0,0.0753917 -37787,7800:239,-9,83,0,0,0.0753703 -37788,7800:238,-8,83,0,0,0.075313 -37789,7800:237,-7,83,0,0,0.0754275 -37790,7800:236,-6,83,0,0,0.0755926 -37791,7800:235,-5,83,0,0,0.076046 -37792,7800:134,-4,83,0,0,0.0760245 -37793,7800:133,-3,83,0,0,0.077063 -37794,7800:132,-2,83,0,0,0.0774584 -37795,7800:131,-1,83,0,0,0.0775762 -37796,1800:131,0,83,0,0,0.0777084 -37797,1800:131,1,83,0,0,0.0778634 -37798,1800:132,2,83,0,0,0.0776421 -37799,1800:133,3,83,0,0,0.0779149 -37800,1800:134,4,83,0,0,0.0781292 -37801,1800:235,5,83,0,0,0.0797805 -37802,1800:236,6,83,0,0,0.0799466 -37803,1800:237,7,83,0,0,0.0786861 -37804,1800:238,8,83,0,0,0.0762196 -37805,1800:239,9,83,0,0,0.0767785 -37806,1801:130,10,83,0,0,0.0780405 -37807,1801:131,11,83,0,0,0.0794416 -37808,1801:132,12,83,0,0,0.0802948 -37809,1801:133,13,83,0,0,0.081448 -37810,1801:134,14,83,0,0,0.0822588 -37811,1801:235,15,83,0,0,0.0829675 -37812,1801:236,16,83,0,0,0.0827254 -37813,1801:237,17,83,0,0,0.0852147 -37814,1801:238,18,83,0,0,0.0885065 -37815,1802:130,20,83,0,0,0.0895146 -37816,1802:131,21,83,0,0,0.0895146 -37817,1802:132,22,83,0,0,0.089523 -37818,1802:133,23,83,0,0,0.089523 -37819,1802:134,24,83,0,0,0.0895146 -37820,1802:235,25,83,0,0,0.0895146 -37821,1802:237,27,83,0,0,0.0894895 -37822,1802:238,28,83,0,0,0.0895062 -37823,1802:239,29,83,0,0,0.0895312 -37824,1811:237,117,83,0,0,0.089523 -37825,1811:238,118,83,0,0,0.0895062 -37826,1812:131,121,83,0,0,0.089523 -37827,1812:132,122,83,0,0,0.089523 -37828,1812:133,123,83,0,0,0.089523 -37829,1812:134,124,83,0,0,0.089523 -37830,1812:236,126,83,0,0,0.0895146 -37831,1812:237,127,83,0,0,0.0894977 -37832,1812:238,128,83,0,0,0.0885232 -37833,1813:130,130,83,0,0,0.0831004 -37834,1813:131,131,83,0,0,0.08222 -37835,1813:132,132,83,0,0,0.0818873 -37836,1813:133,133,83,0,0,0.0807971 -37837,1813:134,134,83,0,0,0.0799542 -37838,1813:235,135,83,0,0,0.0793815 -37839,1813:236,136,83,0,0,0.0776055 -37840,1813:237,137,83,0,0,0.0763208 -37841,1813:238,138,83,0,0,0.0769315 -37842,1813:239,139,83,0,0,0.080128 -37843,1814:130,140,83,0,0,0.0801509 -37844,1814:131,141,83,0,0,0.0799542 -37845,1814:132,142,83,0,0,0.0773852 -37846,1814:133,143,83,0,0,0.0765457 -37847,1814:134,144,83,0,0,0.0763281 -37848,1814:235,145,83,0,0,0.0764079 -37849,1814:236,146,83,0,0,0.0765022 -37850,1814:237,147,83,0,0,0.0766038 -37851,1814:238,148,83,0,0,0.0766111 -37852,1814:239,149,83,0,0,0.0763933 -37853,1815:130,150,83,0,0,0.0762196 -37854,1815:131,151,83,0,0,0.0763933 -37855,1815:132,152,83,0,0,0.0756932 -37856,1815:133,153,83,0,0,0.075442 -37857,1815:134,154,83,0,0,0.0753203 -37858,1815:235,155,83,0,0,0.0753561 -37859,1815:236,156,83,0,0,0.0753631 -37860,1815:237,157,83,0,0,0.0753775 -37861,1815:238,158,83,0,0,0.0753847 -37862,1815:239,159,83,0,0,0.0755781 -37863,1816:130,160,83,0,0,0.0756932 -37864,1816:131,161,83,0,0,0.0756645 -37865,1816:132,162,83,0,0,0.07565 -37866,1816:133,163,83,0,0,0.0757507 -37867,1816:134,164,83,0,0,0.0758874 -37868,1816:235,165,83,0,0,0.0759956 -37869,1816:236,166,83,0,0,0.0760606 -37870,1816:237,167,83,0,0,0.0761618 -37871,1816:238,168,83,0,0,0.0762123 -37872,1816:239,169,83,0,0,0.0762413 -37873,1817:130,170,83,0,0,0.0762848 -37874,1817:131,171,83,0,0,0.0762918 -37875,1817:132,172,83,0,0,0.0762848 -37876,1817:133,173,83,0,0,0.0762848 -37877,1817:134,174,83,0,0,0.0762848 -37878,1817:235,175,83,0,0,0.0762848 -37879,1817:236,176,83,0,0,0.0762918 -37880,1817:237,177,83,0,0,0.0762918 -37881,1817:238,178,83,0,0,0.0762848 -37882,1817:239,179,83,0,0,0.0762918 -37883,1818:130,180,83,0,0,0.0762775 -37884,7918:100,-180,90,0,0,0.0749916 -37885,7917:209,-179,90,0,0,0.0750201 -37886,7917:208,-178,90,0,0,0.0750201 -37887,7917:207,-177,90,0,0,0.0750416 -37888,7917:206,-176,90,0,0,0.0750488 -37889,7917:205,-175,90,0,0,0.0750558 -37890,7917:104,-174,90,0,0,0.0750702 -37891,7917:103,-173,90,0,0,0.0750773 -37892,7917:102,-172,90,0,0,0.0750843 -37893,7917:101,-171,90,0,0,0.0750843 -37894,7917:100,-170,90,0,0,0.0750915 -37895,7916:209,-169,90,0,0,0.0750987 -37896,7916:208,-168,90,0,0,0.0751059 -37897,7916:207,-167,90,0,0,0.0751128 -37898,7916:206,-166,90,0,0,0.0751059 -37899,7916:205,-165,90,0,0,0.0751059 -37900,7916:104,-164,90,0,0,0.0751059 -37901,7916:103,-163,90,0,0,0.0751128 -37902,7916:102,-162,90,0,0,0.0751128 -37903,7916:101,-161,90,0,0,0.07512 -37904,7916:100,-160,90,0,0,0.0751344 -37905,7915:209,-159,90,0,0,0.0751416 -37906,7915:208,-158,90,0,0,0.0751558 -37907,7915:207,-157,90,0,0,0.0751486 -37908,7915:206,-156,90,0,0,0.0751558 -37909,7915:205,-155,90,0,0,0.075163 -37910,7915:104,-154,90,0,0,0.0751486 -37911,7915:103,-153,90,0,0,0.075163 -37912,7915:102,-152,90,0,0,0.0751558 -37913,7915:101,-151,90,0,0,0.0751416 -37914,7915:100,-150,90,0,0,0.0751416 -37915,7914:209,-149,90,0,0,0.0751344 -37916,7914:208,-148,90,0,0,0.0751344 -37917,7914:207,-147,90,0,0,0.0751272 -37918,7914:206,-146,90,0,0,0.07512 -37919,7914:205,-145,90,0,0,0.07512 -37920,7914:104,-144,90,0,0,0.0751128 -37921,7914:103,-143,90,0,0,0.07512 -37922,7914:102,-142,90,0,0,0.0751128 -37923,7914:101,-141,90,0,0,0.0751128 -37924,7914:100,-140,90,0,0,0.07512 -37925,7913:209,-139,90,0,0,0.07512 -37926,7913:208,-138,90,0,0,0.0751272 -37927,7913:207,-137,90,0,0,0.07527 -37928,7913:206,-136,90,0,0,0.0758155 -37929,7913:205,-135,90,0,0,0.0776421 -37930,7913:104,-134,90,0,0,0.0779001 -37931,7911:100,-110,90,0,0,0.0832649 -37932,7910:209,-109,90,0,0,0.0880188 -37933,7910:206,-106,90,0,0,0.0759162 -37934,7910:205,-105,90,0,0,0.0753775 -37935,7910:104,-104,90,0,0,0.0768514 -37936,7910:103,-103,90,0,0,0.0810109 -37937,7906:101,-61,90,0,0,0.0753489 -37938,7906:100,-60,90,0,0,0.075163 -37939,7905:209,-59,90,0,0,0.0750201 -37940,7905:208,-58,90,0,0,0.074949 -37941,7905:207,-57,90,0,0,0.0749346 -37942,7905:206,-56,90,0,0,0.0749275 -37943,7905:205,-55,90,0,0,0.0749346 -37944,7905:104,-54,90,0,0,0.0749346 -37945,7905:103,-53,90,0,0,0.0749418 -37946,7905:102,-52,90,0,0,0.0749562 -37947,7905:101,-51,90,0,0,0.0749631 -37948,7905:100,-50,90,0,0,0.0749631 -37949,7904:209,-49,90,0,0,0.0749631 -37950,7904:208,-48,90,0,0,0.074949 -37951,7904:207,-47,90,0,0,0.0749703 -37952,7904:206,-46,90,0,0,0.0749988 -37953,7904:205,-45,90,0,0,0.0750273 -37954,7904:104,-44,90,0,0,0.0750201 -37955,7904:103,-43,90,0,0,0.0750201 -37956,7904:102,-42,90,0,0,0.0750131 -37957,7904:101,-41,90,0,0,0.0750201 -37958,7904:100,-40,90,0,0,0.0750345 -37959,7903:209,-39,90,0,0,0.0750345 -37960,7903:208,-38,90,0,0,0.0750345 -37961,7903:207,-37,90,0,0,0.0750345 -37962,7903:206,-36,90,0,0,0.0750345 -37963,7903:205,-35,90,0,0,0.0750416 -37964,7903:104,-34,90,0,0,0.0750345 -37965,7903:103,-33,90,0,0,0.0750345 -37966,7903:102,-32,90,0,0,0.0750416 -37967,7903:101,-31,90,0,0,0.0750488 -37968,7903:100,-30,90,0,0,0.0750488 -37969,7902:209,-29,90,0,0,0.0750488 -37970,7902:208,-28,90,0,0,0.0750345 -37971,7902:207,-27,90,0,0,0.0750201 -37972,7902:206,-26,90,0,0,0.0761183 -37973,7902:205,-25,90,0,0,0.0756715 -37974,7902:104,-24,90,0,0,0.0789397 -37975,1916:206,166,90,0,0,0.0752487 -37976,1916:207,167,90,0,0,0.075063 -37977,1916:208,168,90,0,0,0.0749846 -37978,1916:209,169,90,0,0,0.074899 -37979,1917:100,170,90,0,0,0.074892 -37980,1917:101,171,90,0,0,0.0748777 -37981,1917:102,172,90,0,0,0.0807894 -37982,1917:103,173,90,0,0,0.0878209 -37983,1917:104,174,90,0,0,0.087558 -37984,1917:205,175,90,0,0,0.0873776 -37985,1917:206,176,90,0,0,0.0863183 -37986,1917:207,177,90,0,0,0.0752844 -37987,1917:208,178,90,0,0,0.0748849 -37988,1917:209,179,90,0,0,0.074949 -37989,1918:100,180,90,0,0,0.0749916 - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/N3hZMGdVTWZWdU51OUtmNGlWNFVMUEVwMFptYVc5MGtHbWJQNStIS0N6Yz0 - The warnings from the underlying MaxEnt model - text/csv - - - http://data-d.d4science.org/K1E3VTZxSGFNMTl1OUtmNGlWNFVMRzVvV05iRzVtNjdHbWJQNStIS0N6Yz0 - ASCII Maps of the environmental layers for checking features aligments - text/csv - - - http://data-d.d4science.org/Y0V2dzVuWkR0WkZ1OUtmNGlWNFVMQnNxOUtEM2ZXODhHbWJQNStIS0N6Yz0 - World Thumbnail - image/png - - - http://data-d.d4science.org/SnNhQnBVSWpDczV1OUtmNGlWNFVMSkhnaEZrall3TWpHbWJQNStIS0N6Yz0 - ROC Curve - image/png - - - http://data-d.d4science.org/MGs1amU2VEVmVTF1OUtmNGlWNFVMSjlTc2xqOUJCVFVHbWJQNStIS0N6Yz0 - Omission-Commission Curve - image/png - - - http://data-d.d4science.org/MGs1amU2VEVmVTF1OUtmNGlWNFVMSGlZK3c0SVVFcjJHbWJQNStIS0N6Yz0 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - text/csv - - - - - - - - -2016-05-06 17:12:32 DEBUG SClient4WPS:875 - WPS SUCCESS -2016-05-06 17:12:32 DEBUG SClient4WPS:900 - ComputationStatus: ComputationStatus [percentage=100.0, status=COMPLETE, endDate=null, message=null, errResource=null] -2016-05-06 17:12:33 DEBUG Log:91 - getResourceByComputationId: ComputationId [id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46] -2016-05-06 17:12:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-06 17:12:33 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-06 17:12:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-06 17:12:33 DEBUG SClient4WPS:436 - RetrieveProcessResult: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46 -2016-05-06 17:12:33 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=3fdd21cf-f0c5-482e-9c57-acb2c0740c46 -2016-05-06 17:12:33 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-05-06 17:12:33 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-05-06 17:12:33 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-05-06 17:12:33 DEBUG SClient4WPS:447 - Response: - - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - Process successful - - - - ASCII Maps of the environmental layers for checking features aligments - ASCII Maps of the environmental layers for checking features aligments - - _______________________________________________ __ ____ ______________________________________ _______________ - - - - - - -_______________________ _____ __ _ _ _ _____ ___________________________________________________________________________ ______ ___ __ ____ ___ ___________________________________________________ -_____________________ _____ ___ __ _ _ __ _____ ___ __ _ ______________________________________________________________ _ ____ ____________________________________________________ -________________ _____ ______ _ _____ _ ____________ _____ _______________________________________________________ _______ _ ____________________________________________________ -______________________ ______ _____ __ ______________ ____ _______________________________________________ _________ __________ _ __ ___________________________________________________ -__________________ __ _ ____ ____ ___ ______ __ ____ ____ _ _ _____________________________________ _ ________ _______________ _ ________________________________________________ -__________________ __ _____ _ _ ___ ___ _ ______ _________ _ __ _ ____________________________________ __________ _____________ ______________ _______________________________ -___________________ _ ____ _ _ ___ ___ __ _____ ___ __ ___ __ _________________________________ ____________ ___________ _________ ________________________________ -____________________ ______ _ ___ ______________ ___ __ ___ _ ____ _ _____________________________________________ ________ _______ _________________________________ -_________________________ __ _ _ ______ ____ ___________ __ __ _ ______________________________________________ __________ _____ _________________________________ -________________________ _______ __ _ ___ _ ___ __ __ _ _________________________________________________ _____ _______________________________________ -___________________________ ________ __ __________ __ ______ _ __ _______________________________________ ______ ____________________________________ -____________________________ ______ _____ _____ __ _ ____ ____ _______________ ____________________________ _ _____________________________________ -_____________________________________ _____ _ ___ ______ ________ __ ___________ _____________________________ ___________________________________ -____________________________________ ____ _ _ ___________ _________ _______________________ _ ____________________________________ -___________________________________ _____ _ ________ ___________ ____________________________ ________________________________________ -________________________________ ____ _ __________ _______________ ________________________ __ ________________________________________ -_______________________________ ___ _ _____________ _ _________________________________________ ______________________________________ -_______________________________ ___ __ _____________ _____________________________________________ ______________________________________ -_____________________________ _ _ ______________ ___________________________________ __ _______ ________________________ -_____________________________ ____ _ ____________ _ ____________________________ _ _ ______ _______________________ -__________________________ _ _ _______ ___________ ____________________________ __ ____________ ____________________ -______________________ _ _ ________ _ __________ __________________________ ______ __ ______ _________________________ -_______________ ______ _________ _ _________ __________________________ __ _ ___ _________________________ -____________ _________ ____________ _____________ __________________________ ______________________ -___________ ___________ __________ ___________ __________________________ ______________________ -__________ ________________ ___ __ ________ _ __________________________ ______________ __ -__________ ______________ ______ _ __________ _ __________________________ ___ ________________ -________ ____________________ ___ _ _______ ___________________________ ___ _ ___ ____ -___________ __________________ ________ _ ________ _____________________________ _ _ _ - ___________ ____________________ _____ ___________ __________________________________ __ - _ __ __________________ __ _ ___________ ___________________________________ ___ __ - ____ _________________ ___ _____________ _____________ ____________________ ____ __ _ -___ __________ _________________ __________________ ______________ _________________ ________ __ -____________ _ _ ______________ _________________ _______________ _________________ _____ ____ -____________ _ __________ ____________ ___________________ __________________ ____________________ ____ __ ___ -____________ _ _____________ _ ____________ ____ ______________ ________________________________________ _______ _ __ -_____________ __ _______________ ___________ __ ______________ _ ___________________________________ _____ _ __ ___ _ ______ -___________ ___ ____________________ _______ __ ________________ ___________________________________________ __ _____ __ _______ ________ -________________ ___ _ ___________________ _ ______ ________________________________________________________________ _ ____ __________ _____ ________________ -____________________ _ ________________________ ___ __________________________________________________ _ ___________ __ _____ ___________________ ________________ -___________________ _________________________ _ ___ __________________________________________________ _________ _____ __________________ ________________ -_________________ ___________________________ ___ __ ___________________________________________________ ___________ ___ _ __ ________________ ________________ -________________ __________________________________ ___ _________________________________________________ __________ __________________ _________________ -____________________________________________________ __ _____________________________________________ __ ______ ______________ ___ _____________ -____________ ______________________________________ ___________________________________________ _ ___ ____________ ____________________ -_____________________________________________________ _ ____________________________________________ __ __ _ ____________ _____________________ -_______________________________________________________ __ ___________________________________________ _____ _ _ ____________ _____________________ -_______________________________________________________ ____ _____ _________________________________________________ ____ _ ___________ _______________________ -________________________________________________________ _ ______ __________________________________________________ ___ __ ____________________________________ -________________________________________________________ ______ _______________________________________________ ___ __ ________________________________________ -________________________________________________________ ____ ______ _________________________________________________ __________ ___ ____________________________________ -________________________________________________________ __ __________________________________________________________ _ ____________ __________________________________________ -________________________________________________________ _ _____________________________________________________________ ___ _____________ _____ _____________________________________ -________________________________________________________ ____ ______________________________________________________________ ___ ____ ______________ _______ ___________________________________ -________________________________________________________ _____________________________________________________________ ________ _____ ___ _ __________ ____________________________________ -________________________________________________________ _____________________________________________________________ __________ __ __ __ _ __________ _______________________________________ -_________________________________________________________ ________________________________________________________________ _______ ______ ___ ___ ___ __ ____________ ______________________________________ -_________________________________________________________ __________________________________________________________________ ________ ______ ____ ___ _______ ____________ ______________________________________ -__________________________________________________________ _______________________________________________ ___________________ _____________ ______ ____ _ _____ __________ _______________________________________ -___________________________________________________________ ___________________________________________________________________ ________ _ ____________ ______ _ __ _____ _________ _______________________________________ -___________________________________________________________ ___________________________________________________________________________ _________________________ _______ _______ _______________________________________ -____________________________________________________________ _______________________________________________________________________ _________________________ ______ ____ _ _ __________________________________________ -_______________________________________________________________ ________________________________________________________________________ ________________________ _____ ___ _______________________________________________ -________________________________________________________________ _______________________________________________________________________ ____ ___________ __________ _________________________________________________ -________________________________________________________________ _ _______________________________________________________________________ __ _ __________________________________________________________ -_________________________________________________________________ _ ___ ______ _______________________________________________________________________ ___ __________________________________________________________ -__________________________________________________________________ _ ______________ _______________________________________________________________ _____ _ ___ ___________________________________________________________ -___________________________________________________________________ __ _______________ ___________________________________________________________________ __ ____ _ ____________________________________________________________ -____________________________________________________________________ __ ________________ __________________________________________________________________ __ ____ __ _____________________________________________________________ -_____________________________________________________________________ ___ __________________________________________________________________________________ __ __ ___________ __ __ ________________________________________________________ -__________________________________________________________________________ ______________ _______________________________________________________________ ___ _________ ____ ___________________________________________________________ -______________________ ____________________________________________________ _________ ___ ____ ___________________________________________________________ __ __________ _ _____ __ _____________________________________________________________________ -___________________________________________________________________________ ______ __________ __________________________________________________________ ____ _______________ _______ __________________________________________________________________________ -_____________________________________________________________________________ _ __________ ___ _ _ _________________________________________________ ____ ________________ __________ ___ __________ ___________________________________________________________ -________________________________________________________________________________ ________________________________________________________________________ __ _ ___________________ ____________ _____________ __________________________________________________________ -_______________________________________________________________________________________ ____________________________________________________________________ ___ _____________________ _ _________________ ____________ ___________________________________________________________ -_________________________________________________________________________________________ __________________________________________________________________ _ ________________________ _ __________________ ___________ _________________________________________________________ -_____________________________________________________________________________________________ _____________ _____________________________________________________ _ ____________________________ __ ____________ _____ _ _______________________________________________________________________ -_______________________________________________________________________________________________ _________ _ _____________________________________________________ ____ ______________________ ___ __________________ ____ ______________ _ _________________________________________ __ __________ -________________________________________________________________________________________________ _______ ________________________________________________ ______________________ ___ ___________________ ______ ____________ ___ _________________________________________________________ -__________________________________________________________________________________________________ __ ______________________________________________ _______________________ ____ __ _________________ _______________________ ______________________________________________________ -_______________________________________________________________________________________________________ ______________________________________________ ________________________ _______ __________________ _______________ _______ _______________________________________________________ -_______________________________________________________________________________________________________ ___________________________________________ ____ _______ ________________________ ______________________ __ ____________ _____________________________________________________________ -_______________________________________________________________________________________________________ _____________________________________________________________ __________________________ ________________________ __ __________ _______________________________________________________________ -______________________________________________________________________________________________________ ____________________________________________________________ ___________________________ _________________________ _ _______ _________ ____________________________________________________ -____________________________________________________________________________________________________ ____________________________________________________________ _____________________________ __________________________ ______ ___ ___ ____________________________________________________ -____________________________________________________________________________________________________ _______________________________________________________ _______________________________ _________________________ _ _____ __ _ _______ ______________________________________________ -____________________________________________________________________________________________________ _____________________________________________________ ________________________________ ____________________________ ____ ___ ___________ __ ________________________________________ -____________________________________________________________________________________________________ __________________________________________________ _________________________________ _____________________________ ________ ____ _ ____________ ________ ___________________________ -____________________________________________________________________________________________________ _______________________________________________ __________________________________ _______________________________ _____________ __ _______________ ____ __ _________________________ -_____________________________________________________________________________________________________ ________________________________________________ _________________________________ _________________________________ ________________________ _________ _______________________ -______________________________________________________________________________________________________ _________________________________________________ _________________________________ __________________________________________ ___ _____________ ___ ____________ ___________________ -______________________________________________________________________________________________________ __________________________________________________ _________________________________ _______________________________________________ __ ________________________ ______________________________ -_______________________________________________________________________________________________________ ___________________________________________________ __ _____________________________ _________________________________________________________ _ _________ _____________________________________ -________________________________________________________________________________________________________ ____________________________________________________ ________ _______________________ _________________________________________________________ _____ _____________________________________ -_________________________________________________________________________________________________________ ____________________________________________________ _______ _______________________ ____________________________________________________ _ ______ ___________________________________ -__________________________________________________________________________________________________________ ___________________________________________________ _____ _______________________ ___________________________________________________ ____ ___________________________________ -_____________________________________________________________________________________________________________ ___________________________________________________ ______ _______________________ _________________________________________________ __ __________________________________ -______________________________________________________________________________________________________________ ____________________________________________________ _________ ________________________ ________________________________________________ __________________________________ -______________________________________________________________________________________________________________ ______________________________________________________ _________ ________________________ _____________________________________________ _______________________________ -______________________________________________________________________________________________________________ _______________________________________________________ ________ _________________________ _________________________________________ _______________________________ -______________________________________________________________________________________________________________ ___________________________________________________________ ________ _________________________ _________________________________________ _____________________________ -______________________________________________________________________________________________________________ ______________________________________________________________ _________ __________________________ ________________________________________ ____________________________ -______________________________________________________________________________________________________________ _______________________________________________________________ ________________________________________ _________________________________________ ___________________________ -______________________________________________________________________________________________________________ ________________________________________________________________ ________________________________________ _________________________________________ ___________________________ -_____________________________________________________________________________________________________________ __________________________________________________________________ _________________________________________ _________________________________________ ___________________________ -_____________________________________________________________________________________________________________ ___________________________________________________________________ __________________________________________ __________________________________________ ___________________________ -_____________________________________________________________________________________________________________ _____________________________________________________________________ ___________________________________________ __________________________________________ ___________________________ -_____________________________________________________________________________________________________________ ______________________________________________________________________ _____________________________________________ __________________________________________ _________ ____________________________ -_____________________________________________________________________________________________________________ ________________________________________________________________________ ________________________________________________ __________________________________________ ________________ _ _____________________________ -____________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ _________________________________________________________________ _______________________ ______ -____________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________ ___________________________________________________________________ ________________________ _____ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ ___________________________________________________________________ __________________________ ____ -___________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________ __ -___________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ ___ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ _______________________________________________________________________ ________________________ ____ -__________________________________________________________________________________________________________ _ ________________________________________________________________________________________________________________________________________ ________________________________________________________________________ _______________________ _______ -___________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ _________________________________________________________________________ ______________________ _______ -__________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________ _________ -__________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________ __________ -__________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -__________________________________________________________________________________________________________ ________ ___________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -___________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -___________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_______________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -_______________________________________________________________________________________________________________________ _ _________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ -____________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________ ______________________ ___________________________________ _____________________________________________ -__________________________________________________________________________________________________________________ _ _____________________________________________________________________________________________________________________________________ ______________________ ________ _____________________ _____________________________________________ -__________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________ ________________ ________ _ ______ ___ _ _______ ____ __________________________________________ -________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________ _ _______________ _________ ____________________________________ -_______________________________________________________________________________________________________________ _ ___________________________________________________________________________________________________________ _ ________ ________ ___________________________________ -_________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ ___ ______ ________________________________ -_________________________________________________________________________________________________________________ ______________________________________________________________________________________________ ______ _ _____ _________________________ -____________________________________________________________________________________________________________ __ ___________________________________________________________________________________________ ____ ____ _______________________ -____________________________________________________________________________________________________________ _ ___________________________________________________________________________ ___________ ____________________ -__________________________________________________________________________________________________________ _______________________________________________________ _________________ -_________________________________________________________________________________________________________ ___________________________________________________ ____________ -___________________________________________________________________________________________________________ ________________________________________________ ___________ -_________________________________________________________________________________ _______________________ ________________________________________________ _________ -______________________________________________________________________________ ______________________ ______________________________________________ __________ -_____________________________________________________________________________ __________ ___ ____________________________________________ __________ -_____________________________________________________________________________ _____ ________________________________________ ___________ -_____________________________________________________ ______________ ______ __ _________________________________________ _____________ -_____________________________________________________ _ _ ____ ______ _________________________________________ ______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ -_______________________________________________ __ ____ ______________________________________ _______________ - - - - OutputTable7 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - id,csquarecode,x,y,z,time,fvalue -1,5918:100,-180,-90,0,0,0.0749916 -2,5917:209,-179,-90,0,0,0.0750201 -3,5917:208,-178,-90,0,0,0.0750201 -4,5917:207,-177,-90,0,0,0.0750416 -5,5917:206,-176,-90,0,0,0.0750488 -6,5917:205,-175,-90,0,0,0.0750558 -7,5917:104,-174,-90,0,0,0.0750702 -8,5917:103,-173,-90,0,0,0.0750773 -9,5917:102,-172,-90,0,0,0.0750843 -10,5917:101,-171,-90,0,0,0.0750843 -11,5917:100,-170,-90,0,0,0.0750915 -12,5916:209,-169,-90,0,0,0.0750987 -13,5916:208,-168,-90,0,0,0.0751059 -14,5916:207,-167,-90,0,0,0.0751128 -15,5916:206,-166,-90,0,0,0.0751059 -16,5916:205,-165,-90,0,0,0.0751059 -17,5916:104,-164,-90,0,0,0.0751059 -18,5916:103,-163,-90,0,0,0.0751128 -19,5916:102,-162,-90,0,0,0.0751128 -20,5916:101,-161,-90,0,0,0.07512 -21,5916:100,-160,-90,0,0,0.0751344 -22,5915:209,-159,-90,0,0,0.0751416 -23,5915:208,-158,-90,0,0,0.0751558 -24,5915:207,-157,-90,0,0,0.0751486 -25,5915:206,-156,-90,0,0,0.0751558 -26,5915:205,-155,-90,0,0,0.075163 -27,5915:104,-154,-90,0,0,0.0751486 -28,5915:103,-153,-90,0,0,0.075163 -29,5915:102,-152,-90,0,0,0.0751558 -30,5915:101,-151,-90,0,0,0.0751416 -31,5915:100,-150,-90,0,0,0.0751416 -32,5914:209,-149,-90,0,0,0.0751344 -33,5914:208,-148,-90,0,0,0.0751344 -34,5914:207,-147,-90,0,0,0.0751272 -35,5914:206,-146,-90,0,0,0.07512 -36,5914:205,-145,-90,0,0,0.07512 -37,5914:104,-144,-90,0,0,0.0751128 -38,5914:103,-143,-90,0,0,0.07512 -39,5914:102,-142,-90,0,0,0.0751128 -40,5914:101,-141,-90,0,0,0.0751128 -41,5914:100,-140,-90,0,0,0.07512 -42,5913:209,-139,-90,0,0,0.07512 -43,5913:208,-138,-90,0,0,0.0751272 -44,5913:207,-137,-90,0,0,0.07527 -45,5913:206,-136,-90,0,0,0.0758155 -46,5913:205,-135,-90,0,0,0.0776421 -47,5913:104,-134,-90,0,0,0.0779001 -48,5911:100,-110,-90,0,0,0.0832649 -49,5910:209,-109,-90,0,0,0.0880188 -50,5910:206,-106,-90,0,0,0.0759162 -51,5910:205,-105,-90,0,0,0.0753775 -52,5910:104,-104,-90,0,0,0.0768514 -53,5910:103,-103,-90,0,0,0.0810109 -54,5906:101,-61,-90,0,0,0.0753489 -55,5906:100,-60,-90,0,0,0.075163 -56,5905:209,-59,-90,0,0,0.0750201 -57,5905:208,-58,-90,0,0,0.074949 -58,5905:207,-57,-90,0,0,0.0749346 -59,5905:206,-56,-90,0,0,0.0749275 -60,5905:205,-55,-90,0,0,0.0749346 -61,5905:104,-54,-90,0,0,0.0749346 -62,5905:103,-53,-90,0,0,0.0749418 -63,5905:102,-52,-90,0,0,0.0749562 -64,5905:101,-51,-90,0,0,0.0749631 -65,5905:100,-50,-90,0,0,0.0749631 -66,5904:209,-49,-90,0,0,0.0749631 -67,5904:208,-48,-90,0,0,0.074949 -68,5904:207,-47,-90,0,0,0.0749703 -69,5904:206,-46,-90,0,0,0.0749988 -70,5904:205,-45,-90,0,0,0.0750273 -71,5904:104,-44,-90,0,0,0.0750201 -72,5904:103,-43,-90,0,0,0.0750201 -73,5904:102,-42,-90,0,0,0.0750131 -74,5904:101,-41,-90,0,0,0.0750201 -75,5904:100,-40,-90,0,0,0.0750345 -76,5903:209,-39,-90,0,0,0.0750345 -77,5903:208,-38,-90,0,0,0.0750345 -78,5903:207,-37,-90,0,0,0.0750345 -79,5903:206,-36,-90,0,0,0.0750345 -80,5903:205,-35,-90,0,0,0.0750416 -81,5903:104,-34,-90,0,0,0.0750345 -82,5903:103,-33,-90,0,0,0.0750345 -83,5903:102,-32,-90,0,0,0.0750416 -84,5903:101,-31,-90,0,0,0.0750488 -85,5903:100,-30,-90,0,0,0.0750488 -86,5902:209,-29,-90,0,0,0.0750488 -87,5902:208,-28,-90,0,0,0.0750345 -88,5902:207,-27,-90,0,0,0.0750201 -89,5902:206,-26,-90,0,0,0.0761183 -90,5902:205,-25,-90,0,0,0.0756715 -91,5902:104,-24,-90,0,0,0.0789397 -92,3916:206,166,-90,0,0,0.0752487 -93,3916:207,167,-90,0,0,0.075063 -94,3916:208,168,-90,0,0,0.0749846 -95,3916:209,169,-90,0,0,0.074899 -96,3917:100,170,-90,0,0,0.074892 -97,3917:101,171,-90,0,0,0.0748777 -98,3917:102,172,-90,0,0,0.0807894 -99,3917:103,173,-90,0,0,0.0878209 -100,3917:104,174,-90,0,0,0.087558 -101,3917:205,175,-90,0,0,0.0873776 -102,3917:206,176,-90,0,0,0.0863183 -103,3917:207,177,-90,0,0,0.0752844 -104,3917:208,178,-90,0,0,0.0748849 -105,3917:209,179,-90,0,0,0.074949 -106,3918:100,180,-90,0,0,0.0749916 -107,5818:390,-180,-89,0,0,0.0749916 -108,5817:499,-179,-89,0,0,0.0750201 -109,5817:498,-178,-89,0,0,0.0750201 -110,5817:497,-177,-89,0,0,0.0750416 -111,5817:496,-176,-89,0,0,0.0750488 -112,5817:495,-175,-89,0,0,0.0750558 -113,5817:394,-174,-89,0,0,0.0750702 -114,5817:393,-173,-89,0,0,0.0750773 -115,5817:392,-172,-89,0,0,0.0750843 -116,5817:391,-171,-89,0,0,0.0750843 -117,5817:390,-170,-89,0,0,0.0750915 -118,5816:499,-169,-89,0,0,0.0750987 -119,5816:498,-168,-89,0,0,0.0751059 -120,5816:497,-167,-89,0,0,0.0751128 -121,5816:496,-166,-89,0,0,0.0751059 -122,5816:495,-165,-89,0,0,0.0751059 -123,5816:394,-164,-89,0,0,0.0751059 -124,5816:393,-163,-89,0,0,0.0751128 -125,5816:392,-162,-89,0,0,0.0751128 -126,5816:391,-161,-89,0,0,0.07512 -127,5816:390,-160,-89,0,0,0.0751344 -128,5815:499,-159,-89,0,0,0.0751416 -129,5815:498,-158,-89,0,0,0.0751558 -130,5815:497,-157,-89,0,0,0.0751486 -131,5815:496,-156,-89,0,0,0.0751558 -132,5815:495,-155,-89,0,0,0.075163 -133,5815:394,-154,-89,0,0,0.0751486 -134,5815:393,-153,-89,0,0,0.075163 -135,5815:392,-152,-89,0,0,0.0751558 -136,5815:391,-151,-89,0,0,0.0751416 -137,5815:390,-150,-89,0,0,0.0751416 -138,5814:499,-149,-89,0,0,0.0751344 -139,5814:498,-148,-89,0,0,0.0751344 -140,5814:497,-147,-89,0,0,0.0751272 -141,5814:496,-146,-89,0,0,0.07512 -142,5814:495,-145,-89,0,0,0.07512 -143,5814:394,-144,-89,0,0,0.0751128 -144,5814:393,-143,-89,0,0,0.07512 -145,5814:392,-142,-89,0,0,0.0751128 -146,5814:391,-141,-89,0,0,0.0751128 -147,5814:390,-140,-89,0,0,0.07512 -148,5813:499,-139,-89,0,0,0.07512 -149,5813:498,-138,-89,0,0,0.0751272 -150,5813:497,-137,-89,0,0,0.07527 -151,5813:496,-136,-89,0,0,0.0758155 -152,5813:495,-135,-89,0,0,0.0776421 -153,5813:394,-134,-89,0,0,0.0779001 -154,5811:390,-110,-89,0,0,0.0832649 -155,5810:499,-109,-89,0,0,0.0880188 -156,5810:496,-106,-89,0,0,0.0759162 -157,5810:495,-105,-89,0,0,0.0753775 -158,5810:394,-104,-89,0,0,0.0768514 -159,5810:393,-103,-89,0,0,0.0810109 -160,5806:391,-61,-89,0,0,0.0753489 -161,5806:390,-60,-89,0,0,0.075163 -162,5805:499,-59,-89,0,0,0.0750201 -163,5805:498,-58,-89,0,0,0.074949 -164,5805:497,-57,-89,0,0,0.0749346 -165,5805:496,-56,-89,0,0,0.0749275 -166,5805:495,-55,-89,0,0,0.0749346 -167,5805:394,-54,-89,0,0,0.0749346 -168,5805:393,-53,-89,0,0,0.0749418 -169,5805:392,-52,-89,0,0,0.0749562 -170,5805:391,-51,-89,0,0,0.0749631 -171,5805:390,-50,-89,0,0,0.0749631 -172,5804:499,-49,-89,0,0,0.0749631 -173,5804:498,-48,-89,0,0,0.074949 -174,5804:497,-47,-89,0,0,0.0749703 -175,5804:496,-46,-89,0,0,0.0749988 -176,5804:495,-45,-89,0,0,0.0750273 -177,5804:394,-44,-89,0,0,0.0750201 -178,5804:393,-43,-89,0,0,0.0750201 -179,5804:392,-42,-89,0,0,0.0750131 -180,5804:391,-41,-89,0,0,0.0750201 -181,5804:390,-40,-89,0,0,0.0750345 -182,5803:499,-39,-89,0,0,0.0750345 -183,5803:498,-38,-89,0,0,0.0750345 -184,5803:497,-37,-89,0,0,0.0750345 -185,5803:496,-36,-89,0,0,0.0750345 -186,5803:495,-35,-89,0,0,0.0750416 -187,5803:394,-34,-89,0,0,0.0750345 -188,5803:393,-33,-89,0,0,0.0750345 -189,5803:392,-32,-89,0,0,0.0750416 -190,5803:391,-31,-89,0,0,0.0750488 -191,5803:390,-30,-89,0,0,0.0750488 -192,5802:499,-29,-89,0,0,0.0750488 -193,5802:498,-28,-89,0,0,0.0750345 -194,5802:497,-27,-89,0,0,0.0750201 -195,5802:496,-26,-89,0,0,0.0761183 -196,5802:495,-25,-89,0,0,0.0756715 -197,5802:394,-24,-89,0,0,0.0789397 -198,3816:496,166,-89,0,0,0.0752487 -199,3816:497,167,-89,0,0,0.075063 -200,3816:498,168,-89,0,0,0.0749846 -201,3816:499,169,-89,0,0,0.074899 -202,3817:390,170,-89,0,0,0.074892 -203,3817:391,171,-89,0,0,0.0748777 -204,3817:392,172,-89,0,0,0.0807894 -205,3817:393,173,-89,0,0,0.0878209 -206,3817:394,174,-89,0,0,0.087558 -207,3817:495,175,-89,0,0,0.0873776 -208,3817:496,176,-89,0,0,0.0863183 -209,3817:497,177,-89,0,0,0.0752844 -210,3817:498,178,-89,0,0,0.0748849 -211,3817:499,179,-89,0,0,0.074949 -212,3818:390,180,-89,0,0,0.0749916 -213,5818:380,-180,-88,0,0,0.0749916 -214,5817:489,-179,-88,0,0,0.0750201 -215,5817:488,-178,-88,0,0,0.0750201 -216,5817:487,-177,-88,0,0,0.0750416 -217,5817:486,-176,-88,0,0,0.0750488 -218,5817:485,-175,-88,0,0,0.0750558 -219,5817:384,-174,-88,0,0,0.0750702 -220,5817:383,-173,-88,0,0,0.0750773 -221,5817:382,-172,-88,0,0,0.0750843 -222,5817:381,-171,-88,0,0,0.0750843 -223,5817:380,-170,-88,0,0,0.0750915 -224,5816:489,-169,-88,0,0,0.0750987 -225,5816:488,-168,-88,0,0,0.0751059 -226,5816:487,-167,-88,0,0,0.0751128 -227,5816:486,-166,-88,0,0,0.0751059 -228,5816:485,-165,-88,0,0,0.0751059 -229,5816:384,-164,-88,0,0,0.0751059 -230,5816:383,-163,-88,0,0,0.0751128 -231,5816:382,-162,-88,0,0,0.0751128 -232,5816:381,-161,-88,0,0,0.07512 -233,5816:380,-160,-88,0,0,0.0751344 -234,5815:489,-159,-88,0,0,0.0751416 -235,5815:488,-158,-88,0,0,0.0751558 -236,5815:487,-157,-88,0,0,0.0751486 -237,5815:486,-156,-88,0,0,0.0751558 -238,5815:485,-155,-88,0,0,0.075163 -239,5815:384,-154,-88,0,0,0.0751486 -240,5815:383,-153,-88,0,0,0.075163 -241,5815:382,-152,-88,0,0,0.0751558 -242,5815:381,-151,-88,0,0,0.0751416 -243,5815:380,-150,-88,0,0,0.0751416 -244,5814:489,-149,-88,0,0,0.0751344 -245,5814:488,-148,-88,0,0,0.0751344 -246,5814:487,-147,-88,0,0,0.0751272 -247,5814:486,-146,-88,0,0,0.07512 -248,5814:485,-145,-88,0,0,0.07512 -249,5814:384,-144,-88,0,0,0.0751128 -250,5814:383,-143,-88,0,0,0.07512 -251,5814:382,-142,-88,0,0,0.0751128 -252,5814:381,-141,-88,0,0,0.0751128 -253,5814:380,-140,-88,0,0,0.07512 -254,5813:489,-139,-88,0,0,0.07512 -255,5813:488,-138,-88,0,0,0.0751272 -256,5813:487,-137,-88,0,0,0.07527 -257,5813:486,-136,-88,0,0,0.0758155 -258,5813:485,-135,-88,0,0,0.0776421 -259,5813:384,-134,-88,0,0,0.0779001 -260,5811:380,-110,-88,0,0,0.0832649 -261,5810:489,-109,-88,0,0,0.0880188 -262,5810:486,-106,-88,0,0,0.0759162 -263,5810:485,-105,-88,0,0,0.0753775 -264,5810:384,-104,-88,0,0,0.0768514 -265,5810:383,-103,-88,0,0,0.0810109 -266,5806:381,-61,-88,0,0,0.0753489 -267,5806:380,-60,-88,0,0,0.075163 -268,5805:489,-59,-88,0,0,0.0750201 -269,5805:488,-58,-88,0,0,0.074949 -270,5805:487,-57,-88,0,0,0.0749346 -271,5805:486,-56,-88,0,0,0.0749275 -272,5805:485,-55,-88,0,0,0.0749346 -273,5805:384,-54,-88,0,0,0.0749346 -274,5805:383,-53,-88,0,0,0.0749418 -275,5805:382,-52,-88,0,0,0.0749562 -276,5805:381,-51,-88,0,0,0.0749631 -277,5805:380,-50,-88,0,0,0.0749631 -278,5804:489,-49,-88,0,0,0.0749631 -279,5804:488,-48,-88,0,0,0.074949 -280,5804:487,-47,-88,0,0,0.0749703 -281,5804:486,-46,-88,0,0,0.0749988 -282,5804:485,-45,-88,0,0,0.0750273 -283,5804:384,-44,-88,0,0,0.0750201 -284,5804:383,-43,-88,0,0,0.0750201 -285,5804:382,-42,-88,0,0,0.0750131 -286,5804:381,-41,-88,0,0,0.0750201 -287,5804:380,-40,-88,0,0,0.0750345 -288,5803:489,-39,-88,0,0,0.0750345 -289,5803:488,-38,-88,0,0,0.0750345 -290,5803:487,-37,-88,0,0,0.0750345 -291,5803:486,-36,-88,0,0,0.0750345 -292,5803:485,-35,-88,0,0,0.0750416 -293,5803:384,-34,-88,0,0,0.0750345 -294,5803:383,-33,-88,0,0,0.0750345 -295,5803:382,-32,-88,0,0,0.0750416 -296,5803:381,-31,-88,0,0,0.0750488 -297,5803:380,-30,-88,0,0,0.0750488 -298,5802:489,-29,-88,0,0,0.0750488 -299,5802:488,-28,-88,0,0,0.0750345 -300,5802:487,-27,-88,0,0,0.0750201 -301,5802:486,-26,-88,0,0,0.0761183 -302,5802:485,-25,-88,0,0,0.0756715 -303,5802:384,-24,-88,0,0,0.0789397 -304,3816:486,166,-88,0,0,0.0752487 -305,3816:487,167,-88,0,0,0.075063 -306,3816:488,168,-88,0,0,0.0749846 -307,3816:489,169,-88,0,0,0.074899 -308,3817:380,170,-88,0,0,0.074892 -309,3817:381,171,-88,0,0,0.0748777 -310,3817:382,172,-88,0,0,0.0807894 -311,3817:383,173,-88,0,0,0.0878209 -312,3817:384,174,-88,0,0,0.087558 -313,3817:485,175,-88,0,0,0.0873776 -314,3817:486,176,-88,0,0,0.0863183 -315,3817:487,177,-88,0,0,0.0752844 -316,3817:488,178,-88,0,0,0.0748849 -317,3817:489,179,-88,0,0,0.074949 -318,3818:380,180,-88,0,0,0.0749916 -319,5818:370,-180,-87,0,0,0.0749916 -320,5817:479,-179,-87,0,0,0.0750201 -321,5817:478,-178,-87,0,0,0.0750201 -322,5817:477,-177,-87,0,0,0.0750416 -323,5817:476,-176,-87,0,0,0.0750488 -324,5817:475,-175,-87,0,0,0.0750558 -325,5817:374,-174,-87,0,0,0.0750702 -326,5817:373,-173,-87,0,0,0.0750773 -327,5817:372,-172,-87,0,0,0.0750843 -328,5817:371,-171,-87,0,0,0.0750843 -329,5817:370,-170,-87,0,0,0.0750915 -330,5816:479,-169,-87,0,0,0.0750987 -331,5816:478,-168,-87,0,0,0.0751059 -332,5816:477,-167,-87,0,0,0.0751128 -333,5816:476,-166,-87,0,0,0.0751059 -334,5816:475,-165,-87,0,0,0.0751059 -335,5816:374,-164,-87,0,0,0.0751059 -336,5816:373,-163,-87,0,0,0.0751128 -337,5816:372,-162,-87,0,0,0.0751128 -338,5816:371,-161,-87,0,0,0.07512 -339,5816:370,-160,-87,0,0,0.0751344 -340,5815:479,-159,-87,0,0,0.0751416 -341,5815:478,-158,-87,0,0,0.0751558 -342,5815:477,-157,-87,0,0,0.0751486 -343,5815:476,-156,-87,0,0,0.0751558 -344,5815:475,-155,-87,0,0,0.075163 -345,5815:374,-154,-87,0,0,0.0751486 -346,5815:373,-153,-87,0,0,0.075163 -347,5815:372,-152,-87,0,0,0.0751558 -348,5815:371,-151,-87,0,0,0.0751416 -349,5815:370,-150,-87,0,0,0.0751416 -350,5814:479,-149,-87,0,0,0.0751344 -351,5814:478,-148,-87,0,0,0.0751344 -352,5814:477,-147,-87,0,0,0.0751272 -353,5814:476,-146,-87,0,0,0.07512 -354,5814:475,-145,-87,0,0,0.07512 -355,5814:374,-144,-87,0,0,0.0751128 -356,5814:373,-143,-87,0,0,0.07512 -357,5814:372,-142,-87,0,0,0.0751128 -358,5814:371,-141,-87,0,0,0.0751128 -359,5814:370,-140,-87,0,0,0.07512 -360,5813:479,-139,-87,0,0,0.07512 -361,5813:478,-138,-87,0,0,0.0751272 -362,5813:477,-137,-87,0,0,0.07527 -363,5813:476,-136,-87,0,0,0.0758155 -364,5813:475,-135,-87,0,0,0.0776421 -365,5813:374,-134,-87,0,0,0.0779001 -366,5811:370,-110,-87,0,0,0.0832649 -367,5810:479,-109,-87,0,0,0.0880188 -368,5810:476,-106,-87,0,0,0.0759162 -369,5810:475,-105,-87,0,0,0.0753775 -370,5810:374,-104,-87,0,0,0.0768514 -371,5810:373,-103,-87,0,0,0.0810109 -372,5806:371,-61,-87,0,0,0.0753489 -373,5806:370,-60,-87,0,0,0.075163 -374,5805:479,-59,-87,0,0,0.0750201 -375,5805:478,-58,-87,0,0,0.074949 -376,5805:477,-57,-87,0,0,0.0749346 -377,5805:476,-56,-87,0,0,0.0749275 -378,5805:475,-55,-87,0,0,0.0749346 -379,5805:374,-54,-87,0,0,0.0749346 -380,5805:373,-53,-87,0,0,0.0749418 -381,5805:372,-52,-87,0,0,0.0749562 -382,5805:371,-51,-87,0,0,0.0749631 -383,5805:370,-50,-87,0,0,0.0749631 -384,5804:479,-49,-87,0,0,0.0749631 -385,5804:478,-48,-87,0,0,0.074949 -386,5804:477,-47,-87,0,0,0.0749703 -387,5804:476,-46,-87,0,0,0.0749988 -388,5804:475,-45,-87,0,0,0.0750273 -389,5804:374,-44,-87,0,0,0.0750201 -390,5804:373,-43,-87,0,0,0.0750201 -391,5804:372,-42,-87,0,0,0.0750131 -392,5804:371,-41,-87,0,0,0.0750201 -393,5804:370,-40,-87,0,0,0.0750345 -394,5803:479,-39,-87,0,0,0.0750345 -395,5803:478,-38,-87,0,0,0.0750345 -396,5803:477,-37,-87,0,0,0.0750345 -397,5803:476,-36,-87,0,0,0.0750345 -398,5803:475,-35,-87,0,0,0.0750416 -399,5803:374,-34,-87,0,0,0.0750345 -400,5803:373,-33,-87,0,0,0.0750345 -401,5803:372,-32,-87,0,0,0.0750416 -402,5803:371,-31,-87,0,0,0.0750488 -403,5803:370,-30,-87,0,0,0.0750488 -404,5802:479,-29,-87,0,0,0.0750488 -405,5802:478,-28,-87,0,0,0.0750345 -406,5802:477,-27,-87,0,0,0.0750201 -407,5802:476,-26,-87,0,0,0.0761183 -408,5802:475,-25,-87,0,0,0.0756715 -409,5802:374,-24,-87,0,0,0.0789397 -410,3816:476,166,-87,0,0,0.0752487 -411,3816:477,167,-87,0,0,0.075063 -412,3816:478,168,-87,0,0,0.0749846 -413,3816:479,169,-87,0,0,0.074899 -414,3817:370,170,-87,0,0,0.074892 -415,3817:371,171,-87,0,0,0.0748777 -416,3817:372,172,-87,0,0,0.0807894 -417,3817:373,173,-87,0,0,0.0878209 -418,3817:374,174,-87,0,0,0.087558 -419,3817:475,175,-87,0,0,0.0873776 -420,3817:476,176,-87,0,0,0.0863183 -421,3817:477,177,-87,0,0,0.0752844 -422,3817:478,178,-87,0,0,0.0748849 -423,3817:479,179,-87,0,0,0.074949 -424,3818:370,180,-87,0,0,0.0749916 -425,5818:360,-180,-86,0,0,0.0749916 -426,5817:469,-179,-86,0,0,0.0750201 -427,5817:468,-178,-86,0,0,0.0750201 -428,5817:467,-177,-86,0,0,0.0750416 -429,5817:466,-176,-86,0,0,0.0750488 -430,5817:465,-175,-86,0,0,0.0750558 -431,5817:364,-174,-86,0,0,0.0750702 -432,5817:363,-173,-86,0,0,0.0750773 -433,5817:362,-172,-86,0,0,0.0750843 -434,5817:361,-171,-86,0,0,0.0750843 -435,5817:360,-170,-86,0,0,0.0750915 -436,5816:469,-169,-86,0,0,0.0750987 -437,5816:468,-168,-86,0,0,0.0751059 -438,5816:467,-167,-86,0,0,0.0751128 -439,5816:466,-166,-86,0,0,0.0751059 -440,5816:465,-165,-86,0,0,0.0751059 -441,5816:364,-164,-86,0,0,0.0751059 -442,5816:363,-163,-86,0,0,0.0751128 -443,5816:362,-162,-86,0,0,0.0751128 -444,5816:361,-161,-86,0,0,0.07512 -445,5816:360,-160,-86,0,0,0.0751344 -446,5815:469,-159,-86,0,0,0.0751416 -447,5815:468,-158,-86,0,0,0.0751558 -448,5815:467,-157,-86,0,0,0.0751486 -449,5815:466,-156,-86,0,0,0.0751558 -450,5815:465,-155,-86,0,0,0.075163 -451,5815:364,-154,-86,0,0,0.0751486 -452,5815:363,-153,-86,0,0,0.075163 -453,5815:362,-152,-86,0,0,0.0751558 -454,5815:361,-151,-86,0,0,0.0751416 -455,5815:360,-150,-86,0,0,0.0751416 -456,5814:469,-149,-86,0,0,0.0751344 -457,5814:468,-148,-86,0,0,0.0751344 -458,5814:467,-147,-86,0,0,0.0751272 -459,5814:466,-146,-86,0,0,0.07512 -460,5814:465,-145,-86,0,0,0.07512 -461,5814:364,-144,-86,0,0,0.0751128 -462,5814:363,-143,-86,0,0,0.07512 -463,5814:362,-142,-86,0,0,0.0751128 -464,5814:361,-141,-86,0,0,0.0751128 -465,5814:360,-140,-86,0,0,0.07512 -466,5813:469,-139,-86,0,0,0.07512 -467,5813:468,-138,-86,0,0,0.0751272 -468,5813:467,-137,-86,0,0,0.07527 -469,5813:466,-136,-86,0,0,0.0758155 -470,5813:465,-135,-86,0,0,0.0776421 -471,5813:364,-134,-86,0,0,0.0779001 -472,5811:360,-110,-86,0,0,0.0832649 -473,5810:469,-109,-86,0,0,0.0880188 -474,5810:466,-106,-86,0,0,0.0759162 -475,5810:465,-105,-86,0,0,0.0753775 -476,5810:364,-104,-86,0,0,0.0768514 -477,5810:363,-103,-86,0,0,0.0810109 -478,5806:361,-61,-86,0,0,0.0753489 -479,5806:360,-60,-86,0,0,0.075163 -480,5805:469,-59,-86,0,0,0.0750201 -481,5805:468,-58,-86,0,0,0.074949 -482,5805:467,-57,-86,0,0,0.0749346 -483,5805:466,-56,-86,0,0,0.0749275 -484,5805:465,-55,-86,0,0,0.0749346 -485,5805:364,-54,-86,0,0,0.0749346 -486,5805:363,-53,-86,0,0,0.0749418 -487,5805:362,-52,-86,0,0,0.0749562 -488,5805:361,-51,-86,0,0,0.0749631 -489,5805:360,-50,-86,0,0,0.0749631 -490,5804:469,-49,-86,0,0,0.0749631 -491,5804:468,-48,-86,0,0,0.074949 -492,5804:467,-47,-86,0,0,0.0749703 -493,5804:466,-46,-86,0,0,0.0749988 -494,5804:465,-45,-86,0,0,0.0750273 -495,5804:364,-44,-86,0,0,0.0750201 -496,5804:363,-43,-86,0,0,0.0750201 -497,5804:362,-42,-86,0,0,0.0750131 -498,5804:361,-41,-86,0,0,0.0750201 -499,5804:360,-40,-86,0,0,0.0750345 -500,5803:469,-39,-86,0,0,0.0750345 -501,5803:468,-38,-86,0,0,0.0750345 -502,5803:467,-37,-86,0,0,0.0750345 -503,5803:466,-36,-86,0,0,0.0750345 -504,5803:465,-35,-86,0,0,0.0750416 -505,5803:364,-34,-86,0,0,0.0750345 -506,5803:363,-33,-86,0,0,0.0750345 -507,5803:362,-32,-86,0,0,0.0750416 -508,5803:361,-31,-86,0,0,0.0750488 -509,5803:360,-30,-86,0,0,0.0750488 -510,5802:469,-29,-86,0,0,0.0750488 -511,5802:468,-28,-86,0,0,0.0750345 -512,5802:467,-27,-86,0,0,0.0750201 -513,5802:466,-26,-86,0,0,0.0761183 -514,5802:465,-25,-86,0,0,0.0756715 -515,5802:364,-24,-86,0,0,0.0789397 -516,3816:466,166,-86,0,0,0.0752487 -517,3816:467,167,-86,0,0,0.075063 -518,3816:468,168,-86,0,0,0.0749846 -519,3816:469,169,-86,0,0,0.074899 -520,3817:360,170,-86,0,0,0.074892 -521,3817:361,171,-86,0,0,0.0748777 -522,3817:362,172,-86,0,0,0.0807894 -523,3817:363,173,-86,0,0,0.0878209 -524,3817:364,174,-86,0,0,0.087558 -525,3817:465,175,-86,0,0,0.0873776 -526,3817:466,176,-86,0,0,0.0863183 -527,3817:467,177,-86,0,0,0.0752844 -528,3817:468,178,-86,0,0,0.0748849 -529,3817:469,179,-86,0,0,0.074949 -530,3818:360,180,-86,0,0,0.0749916 -531,5818:350,-180,-85,0,0,0.0749916 -532,5817:459,-179,-85,0,0,0.0750201 -533,5817:458,-178,-85,0,0,0.0750201 -534,5817:457,-177,-85,0,0,0.0750416 -535,5817:456,-176,-85,0,0,0.0750488 -536,5817:455,-175,-85,0,0,0.0750558 -537,5817:354,-174,-85,0,0,0.0750702 -538,5817:353,-173,-85,0,0,0.0750773 -539,5817:352,-172,-85,0,0,0.0750843 -540,5817:351,-171,-85,0,0,0.0750843 -541,5817:350,-170,-85,0,0,0.0750915 -542,5816:459,-169,-85,0,0,0.0750987 -543,5816:458,-168,-85,0,0,0.0751059 -544,5816:457,-167,-85,0,0,0.0751128 -545,5816:456,-166,-85,0,0,0.0751059 -546,5816:455,-165,-85,0,0,0.0751059 -547,5816:354,-164,-85,0,0,0.0751059 -548,5816:353,-163,-85,0,0,0.0751128 -549,5816:352,-162,-85,0,0,0.0751128 -550,5816:351,-161,-85,0,0,0.07512 -551,5816:350,-160,-85,0,0,0.0751344 -552,5815:459,-159,-85,0,0,0.0751416 -553,5815:458,-158,-85,0,0,0.0751558 -554,5815:457,-157,-85,0,0,0.0751486 -555,5815:456,-156,-85,0,0,0.0751558 -556,5815:455,-155,-85,0,0,0.075163 -557,5815:354,-154,-85,0,0,0.0751486 -558,5815:353,-153,-85,0,0,0.075163 -559,5815:352,-152,-85,0,0,0.0751558 -560,5815:351,-151,-85,0,0,0.0751416 -561,5815:350,-150,-85,0,0,0.0751416 -562,5814:459,-149,-85,0,0,0.0751344 -563,5814:458,-148,-85,0,0,0.0751344 -564,5814:457,-147,-85,0,0,0.0751272 -565,5814:456,-146,-85,0,0,0.07512 -566,5814:455,-145,-85,0,0,0.07512 -567,5814:354,-144,-85,0,0,0.0751128 -568,5814:353,-143,-85,0,0,0.07512 -569,5814:352,-142,-85,0,0,0.0751128 -570,5814:351,-141,-85,0,0,0.0751128 -571,5814:350,-140,-85,0,0,0.07512 -572,5813:459,-139,-85,0,0,0.07512 -573,5813:458,-138,-85,0,0,0.0751272 -574,5813:457,-137,-85,0,0,0.07527 -575,5813:456,-136,-85,0,0,0.0758155 -576,5813:455,-135,-85,0,0,0.0776421 -577,5813:354,-134,-85,0,0,0.0779001 -578,5811:350,-110,-85,0,0,0.0832649 -579,5810:459,-109,-85,0,0,0.0880188 -580,5810:456,-106,-85,0,0,0.0759162 -581,5810:455,-105,-85,0,0,0.0753775 -582,5810:354,-104,-85,0,0,0.0768514 -583,5810:353,-103,-85,0,0,0.0810109 -584,5806:351,-61,-85,0,0,0.0753489 -585,5806:350,-60,-85,0,0,0.075163 -586,5805:459,-59,-85,0,0,0.0750201 -587,5805:458,-58,-85,0,0,0.074949 -588,5805:457,-57,-85,0,0,0.0749346 -589,5805:456,-56,-85,0,0,0.0749275 -590,5805:455,-55,-85,0,0,0.0749346 -591,5805:354,-54,-85,0,0,0.0749346 -592,5805:353,-53,-85,0,0,0.0749418 -593,5805:352,-52,-85,0,0,0.0749562 -594,5805:351,-51,-85,0,0,0.0749631 -595,5805:350,-50,-85,0,0,0.0749631 -596,5804:459,-49,-85,0,0,0.0749631 -597,5804:458,-48,-85,0,0,0.074949 -598,5804:457,-47,-85,0,0,0.0749703 -599,5804:456,-46,-85,0,0,0.0749988 -600,5804:455,-45,-85,0,0,0.0750273 -601,5804:354,-44,-85,0,0,0.0750201 -602,5804:353,-43,-85,0,0,0.0750201 -603,5804:352,-42,-85,0,0,0.0750131 -604,5804:351,-41,-85,0,0,0.0750201 -605,5804:350,-40,-85,0,0,0.0750345 -606,5803:459,-39,-85,0,0,0.0750345 -607,5803:458,-38,-85,0,0,0.0750345 -608,5803:457,-37,-85,0,0,0.0750345 -609,5803:456,-36,-85,0,0,0.0750345 -610,5803:455,-35,-85,0,0,0.0750416 -611,5803:354,-34,-85,0,0,0.0750345 -612,5803:353,-33,-85,0,0,0.0750345 -613,5803:352,-32,-85,0,0,0.0750416 -614,5803:351,-31,-85,0,0,0.0750488 -615,5803:350,-30,-85,0,0,0.0750488 -616,5802:459,-29,-85,0,0,0.0750488 -617,5802:458,-28,-85,0,0,0.0750345 -618,5802:457,-27,-85,0,0,0.0750201 -619,5802:456,-26,-85,0,0,0.0761183 -620,5802:455,-25,-85,0,0,0.0756715 -621,5802:354,-24,-85,0,0,0.0789397 -622,3816:456,166,-85,0,0,0.0752487 -623,3816:457,167,-85,0,0,0.075063 -624,3816:458,168,-85,0,0,0.0749846 -625,3816:459,169,-85,0,0,0.074899 -626,3817:350,170,-85,0,0,0.074892 -627,3817:351,171,-85,0,0,0.0748777 -628,3817:352,172,-85,0,0,0.0807894 -629,3817:353,173,-85,0,0,0.0878209 -630,3817:354,174,-85,0,0,0.087558 -631,3817:455,175,-85,0,0,0.0873776 -632,3817:456,176,-85,0,0,0.0863183 -633,3817:457,177,-85,0,0,0.0752844 -634,3817:458,178,-85,0,0,0.0748849 -635,3817:459,179,-85,0,0,0.074949 -636,3818:350,180,-85,0,0,0.0749916 -637,5818:140,-180,-84,0,0,0.0749916 -638,5817:249,-179,-84,0,0,0.0750201 -639,5817:248,-178,-84,0,0,0.0750201 -640,5817:247,-177,-84,0,0,0.0750416 -641,5817:246,-176,-84,0,0,0.0750488 -642,5817:245,-175,-84,0,0,0.0750558 -643,5817:144,-174,-84,0,0,0.0750702 -644,5817:143,-173,-84,0,0,0.0750773 -645,5817:142,-172,-84,0,0,0.0750843 -646,5817:141,-171,-84,0,0,0.0750843 -647,5817:140,-170,-84,0,0,0.0750915 -648,5816:249,-169,-84,0,0,0.0750987 -649,5816:248,-168,-84,0,0,0.0751059 -650,5816:247,-167,-84,0,0,0.0751128 -651,5816:246,-166,-84,0,0,0.0751059 -652,5816:245,-165,-84,0,0,0.0751059 -653,5816:144,-164,-84,0,0,0.0751059 -654,5816:143,-163,-84,0,0,0.0751128 -655,5816:142,-162,-84,0,0,0.0751128 -656,5816:141,-161,-84,0,0,0.07512 -657,5816:140,-160,-84,0,0,0.0751344 -658,5815:249,-159,-84,0,0,0.0751416 -659,5815:248,-158,-84,0,0,0.0751558 -660,5815:247,-157,-84,0,0,0.0751486 -661,5815:246,-156,-84,0,0,0.0751558 -662,5815:245,-155,-84,0,0,0.075163 -663,5815:144,-154,-84,0,0,0.0751486 -664,5815:143,-153,-84,0,0,0.075163 -665,5815:142,-152,-84,0,0,0.0751558 -666,5815:141,-151,-84,0,0,0.0751416 -667,5815:140,-150,-84,0,0,0.0751416 -668,5814:249,-149,-84,0,0,0.0751344 -669,5814:248,-148,-84,0,0,0.0751344 -670,5814:247,-147,-84,0,0,0.0751272 -671,5814:246,-146,-84,0,0,0.07512 -672,5814:245,-145,-84,0,0,0.07512 -673,5814:144,-144,-84,0,0,0.0751128 -674,5814:143,-143,-84,0,0,0.07512 -675,5814:142,-142,-84,0,0,0.0751128 -676,5814:141,-141,-84,0,0,0.0751128 -677,5814:140,-140,-84,0,0,0.07512 -678,5813:249,-139,-84,0,0,0.07512 -679,5813:248,-138,-84,0,0,0.0751272 -680,5813:247,-137,-84,0,0,0.07527 -681,5813:246,-136,-84,0,0,0.0758155 -682,5813:245,-135,-84,0,0,0.0776421 -683,5813:144,-134,-84,0,0,0.0779001 -684,5811:140,-110,-84,0,0,0.0832649 -685,5810:249,-109,-84,0,0,0.0880188 -686,5810:246,-106,-84,0,0,0.0759162 -687,5810:245,-105,-84,0,0,0.0753775 -688,5810:144,-104,-84,0,0,0.0768514 -689,5810:143,-103,-84,0,0,0.0810109 -690,5806:141,-61,-84,0,0,0.0753489 -691,5806:140,-60,-84,0,0,0.075163 -692,5805:249,-59,-84,0,0,0.0750201 -693,5805:248,-58,-84,0,0,0.074949 -694,5805:247,-57,-84,0,0,0.0749346 -695,5805:246,-56,-84,0,0,0.0749275 -696,5805:245,-55,-84,0,0,0.0749346 -697,5805:144,-54,-84,0,0,0.0749346 -698,5805:143,-53,-84,0,0,0.0749418 -699,5805:142,-52,-84,0,0,0.0749562 -700,5805:141,-51,-84,0,0,0.0749631 -701,5805:140,-50,-84,0,0,0.0749631 -702,5804:249,-49,-84,0,0,0.0749631 -703,5804:248,-48,-84,0,0,0.074949 -704,5804:247,-47,-84,0,0,0.0749703 -705,5804:246,-46,-84,0,0,0.0749988 -706,5804:245,-45,-84,0,0,0.0750273 -707,5804:144,-44,-84,0,0,0.0750201 -708,5804:143,-43,-84,0,0,0.0750201 -709,5804:142,-42,-84,0,0,0.0750131 -710,5804:141,-41,-84,0,0,0.0750201 -711,5804:140,-40,-84,0,0,0.0750345 -712,5803:249,-39,-84,0,0,0.0750345 -713,5803:248,-38,-84,0,0,0.0750345 -714,5803:247,-37,-84,0,0,0.0750345 -715,5803:246,-36,-84,0,0,0.0750345 -716,5803:245,-35,-84,0,0,0.0750416 -717,5803:144,-34,-84,0,0,0.0750345 -718,5803:143,-33,-84,0,0,0.0750345 -719,5803:142,-32,-84,0,0,0.0750416 -720,5803:141,-31,-84,0,0,0.0750488 -721,5803:140,-30,-84,0,0,0.0750488 -722,5802:249,-29,-84,0,0,0.0750488 -723,5802:248,-28,-84,0,0,0.0750345 -724,5802:247,-27,-84,0,0,0.0750201 -725,5802:246,-26,-84,0,0,0.0761183 -726,5802:245,-25,-84,0,0,0.0756715 -727,5802:144,-24,-84,0,0,0.0789397 -728,3816:246,166,-84,0,0,0.0752487 -729,3816:247,167,-84,0,0,0.075063 -730,3816:248,168,-84,0,0,0.0749846 -731,3816:249,169,-84,0,0,0.074899 -732,3817:140,170,-84,0,0,0.074892 -733,3817:141,171,-84,0,0,0.0748777 -734,3817:142,172,-84,0,0,0.0807894 -735,3817:143,173,-84,0,0,0.0878209 -736,3817:144,174,-84,0,0,0.087558 -737,3817:245,175,-84,0,0,0.0873776 -738,3817:246,176,-84,0,0,0.0863183 -739,3817:247,177,-84,0,0,0.0752844 -740,3817:248,178,-84,0,0,0.0748849 -741,3817:249,179,-84,0,0,0.074949 -742,3818:140,180,-84,0,0,0.0749916 -743,5818:130,-180,-83,0,0,0.0749916 -744,5817:239,-179,-83,0,0,0.0750201 -745,5817:238,-178,-83,0,0,0.0750201 -746,5817:237,-177,-83,0,0,0.0750416 -747,5817:236,-176,-83,0,0,0.0750488 -748,5817:235,-175,-83,0,0,0.0750558 -749,5817:134,-174,-83,0,0,0.0750702 -750,5817:133,-173,-83,0,0,0.0750773 -751,5817:132,-172,-83,0,0,0.0750843 -752,5817:131,-171,-83,0,0,0.0750843 -753,5817:130,-170,-83,0,0,0.0750915 -754,5816:239,-169,-83,0,0,0.0750987 -755,5816:238,-168,-83,0,0,0.0751059 -756,5816:237,-167,-83,0,0,0.0751128 -757,5816:236,-166,-83,0,0,0.0751059 -758,5816:235,-165,-83,0,0,0.0751059 -759,5816:134,-164,-83,0,0,0.0751059 -760,5816:133,-163,-83,0,0,0.0751128 -761,5816:132,-162,-83,0,0,0.0751128 -762,5816:131,-161,-83,0,0,0.07512 -763,5816:130,-160,-83,0,0,0.0751344 -764,5815:239,-159,-83,0,0,0.0751416 -765,5815:238,-158,-83,0,0,0.0751558 -766,5815:237,-157,-83,0,0,0.0751486 -767,5815:236,-156,-83,0,0,0.0751558 -768,5815:235,-155,-83,0,0,0.075163 -769,5815:134,-154,-83,0,0,0.0751486 -770,5815:133,-153,-83,0,0,0.075163 -771,5815:132,-152,-83,0,0,0.0751558 -772,5815:131,-151,-83,0,0,0.0751416 -773,5815:130,-150,-83,0,0,0.0751416 -774,5814:239,-149,-83,0,0,0.0751344 -775,5814:238,-148,-83,0,0,0.0751344 -776,5814:237,-147,-83,0,0,0.0751272 -777,5814:236,-146,-83,0,0,0.07512 -778,5814:235,-145,-83,0,0,0.07512 -779,5814:134,-144,-83,0,0,0.0751128 -780,5814:133,-143,-83,0,0,0.07512 -781,5814:132,-142,-83,0,0,0.0751128 -782,5814:131,-141,-83,0,0,0.0751128 -783,5814:130,-140,-83,0,0,0.07512 -784,5813:239,-139,-83,0,0,0.07512 -785,5813:238,-138,-83,0,0,0.0751272 -786,5813:237,-137,-83,0,0,0.07527 -787,5813:236,-136,-83,0,0,0.0758155 -788,5813:235,-135,-83,0,0,0.0776421 -789,5813:134,-134,-83,0,0,0.0779001 -790,5811:130,-110,-83,0,0,0.0832649 -791,5810:239,-109,-83,0,0,0.0880188 -792,5810:236,-106,-83,0,0,0.0759162 -793,5810:235,-105,-83,0,0,0.0753775 -794,5810:134,-104,-83,0,0,0.0768514 -795,5810:133,-103,-83,0,0,0.0810109 -796,5806:131,-61,-83,0,0,0.0753489 -797,5806:130,-60,-83,0,0,0.075163 -798,5805:239,-59,-83,0,0,0.0750201 -799,5805:238,-58,-83,0,0,0.074949 -800,5805:237,-57,-83,0,0,0.0749346 -801,5805:236,-56,-83,0,0,0.0749275 -802,5805:235,-55,-83,0,0,0.0749346 -803,5805:134,-54,-83,0,0,0.0749346 -804,5805:133,-53,-83,0,0,0.0749418 -805,5805:132,-52,-83,0,0,0.0749562 -806,5805:131,-51,-83,0,0,0.0749631 -807,5805:130,-50,-83,0,0,0.0749631 -808,5804:239,-49,-83,0,0,0.0749631 -809,5804:238,-48,-83,0,0,0.074949 -810,5804:237,-47,-83,0,0,0.0749703 -811,5804:236,-46,-83,0,0,0.0749988 -812,5804:235,-45,-83,0,0,0.0750273 -813,5804:134,-44,-83,0,0,0.0750201 -814,5804:133,-43,-83,0,0,0.0750201 -815,5804:132,-42,-83,0,0,0.0750131 -816,5804:131,-41,-83,0,0,0.0750201 -817,5804:130,-40,-83,0,0,0.0750345 -818,5803:239,-39,-83,0,0,0.0750345 -819,5803:238,-38,-83,0,0,0.0750345 -820,5803:237,-37,-83,0,0,0.0750345 -821,5803:236,-36,-83,0,0,0.0750345 -822,5803:235,-35,-83,0,0,0.0750416 -823,5803:134,-34,-83,0,0,0.0750345 -824,5803:133,-33,-83,0,0,0.0750345 -825,5803:132,-32,-83,0,0,0.0750416 -826,5803:131,-31,-83,0,0,0.0750488 -827,5803:130,-30,-83,0,0,0.0750488 -828,5802:239,-29,-83,0,0,0.0750488 -829,5802:238,-28,-83,0,0,0.0750345 -830,5802:237,-27,-83,0,0,0.0750201 -831,5802:236,-26,-83,0,0,0.0761183 -832,5802:235,-25,-83,0,0,0.0756715 -833,5802:134,-24,-83,0,0,0.0789397 -834,3816:236,166,-83,0,0,0.0752487 -835,3816:237,167,-83,0,0,0.075063 -836,3816:238,168,-83,0,0,0.0749846 -837,3816:239,169,-83,0,0,0.074899 -838,3817:130,170,-83,0,0,0.074892 -839,3817:131,171,-83,0,0,0.0748777 -840,3817:132,172,-83,0,0,0.0807894 -841,3817:133,173,-83,0,0,0.0878209 -842,3817:134,174,-83,0,0,0.087558 -843,3817:235,175,-83,0,0,0.0873776 -844,3817:236,176,-83,0,0,0.0863183 -845,3817:237,177,-83,0,0,0.0752844 -846,3817:238,178,-83,0,0,0.0748849 -847,3817:239,179,-83,0,0,0.074949 -848,3818:130,180,-83,0,0,0.0749916 -849,5818:120,-180,-82,0,0,0.0749916 -850,5817:229,-179,-82,0,0,0.0750201 -851,5817:228,-178,-82,0,0,0.0750201 -852,5817:227,-177,-82,0,0,0.0750416 -853,5817:226,-176,-82,0,0,0.0750488 -854,5817:225,-175,-82,0,0,0.0750558 -855,5817:124,-174,-82,0,0,0.0750702 -856,5817:123,-173,-82,0,0,0.0750773 -857,5817:122,-172,-82,0,0,0.0750843 -858,5817:121,-171,-82,0,0,0.0750843 -859,5817:120,-170,-82,0,0,0.0750915 -860,5816:229,-169,-82,0,0,0.0750987 -861,5816:228,-168,-82,0,0,0.0751059 -862,5816:227,-167,-82,0,0,0.0751128 -863,5816:226,-166,-82,0,0,0.0751059 -864,5816:225,-165,-82,0,0,0.0751059 -865,5816:124,-164,-82,0,0,0.0751059 -866,5816:123,-163,-82,0,0,0.0751128 -867,5816:122,-162,-82,0,0,0.0751128 -868,5816:121,-161,-82,0,0,0.07512 -869,5816:120,-160,-82,0,0,0.0751344 -870,5815:229,-159,-82,0,0,0.0751416 -871,5815:228,-158,-82,0,0,0.0751558 -872,5815:227,-157,-82,0,0,0.0751486 -873,5815:226,-156,-82,0,0,0.0751558 -874,5815:225,-155,-82,0,0,0.075163 -875,5815:124,-154,-82,0,0,0.0751486 -876,5815:123,-153,-82,0,0,0.075163 -877,5815:122,-152,-82,0,0,0.0751558 -878,5815:121,-151,-82,0,0,0.0751416 -879,5815:120,-150,-82,0,0,0.0751416 -880,5814:229,-149,-82,0,0,0.0751344 -881,5814:228,-148,-82,0,0,0.0751344 -882,5814:227,-147,-82,0,0,0.0751272 -883,5814:226,-146,-82,0,0,0.07512 -884,5814:225,-145,-82,0,0,0.07512 -885,5814:124,-144,-82,0,0,0.0751128 -886,5814:123,-143,-82,0,0,0.07512 -887,5814:122,-142,-82,0,0,0.0751128 -888,5814:121,-141,-82,0,0,0.0751128 -889,5814:120,-140,-82,0,0,0.07512 -890,5813:229,-139,-82,0,0,0.07512 -891,5813:228,-138,-82,0,0,0.0751272 -892,5813:227,-137,-82,0,0,0.07527 -893,5813:226,-136,-82,0,0,0.0758155 -894,5813:225,-135,-82,0,0,0.0776421 -895,5813:124,-134,-82,0,0,0.0779001 -896,5811:120,-110,-82,0,0,0.0832649 -897,5810:229,-109,-82,0,0,0.0880188 -898,5810:226,-106,-82,0,0,0.0759162 -899,5810:225,-105,-82,0,0,0.0753775 -900,5810:124,-104,-82,0,0,0.0768514 -901,5810:123,-103,-82,0,0,0.0810109 -902,5806:121,-61,-82,0,0,0.0753489 -903,5806:120,-60,-82,0,0,0.075163 -904,5805:229,-59,-82,0,0,0.0750201 -905,5805:228,-58,-82,0,0,0.074949 -906,5805:227,-57,-82,0,0,0.0749346 -907,5805:226,-56,-82,0,0,0.0749275 -908,5805:225,-55,-82,0,0,0.0749346 -909,5805:124,-54,-82,0,0,0.0749346 -910,5805:123,-53,-82,0,0,0.0749418 -911,5805:122,-52,-82,0,0,0.0749562 -912,5805:121,-51,-82,0,0,0.0749631 -913,5805:120,-50,-82,0,0,0.0749631 -914,5804:229,-49,-82,0,0,0.0749631 -915,5804:228,-48,-82,0,0,0.074949 -916,5804:227,-47,-82,0,0,0.0749703 -917,5804:226,-46,-82,0,0,0.0749988 -918,5804:225,-45,-82,0,0,0.0750273 -919,5804:124,-44,-82,0,0,0.0750201 -920,5804:123,-43,-82,0,0,0.0750201 -921,5804:122,-42,-82,0,0,0.0750131 -922,5804:121,-41,-82,0,0,0.0750201 -923,5804:120,-40,-82,0,0,0.0750345 -924,5803:229,-39,-82,0,0,0.0750345 -925,5803:228,-38,-82,0,0,0.0750345 -926,5803:227,-37,-82,0,0,0.0750345 -927,5803:226,-36,-82,0,0,0.0750345 -928,5803:225,-35,-82,0,0,0.0750416 -929,5803:124,-34,-82,0,0,0.0750345 -930,5803:123,-33,-82,0,0,0.0750345 -931,5803:122,-32,-82,0,0,0.0750416 -932,5803:121,-31,-82,0,0,0.0750488 -933,5803:120,-30,-82,0,0,0.0750488 -934,5802:229,-29,-82,0,0,0.0750488 -935,5802:228,-28,-82,0,0,0.0750345 -936,5802:227,-27,-82,0,0,0.0750201 -937,5802:226,-26,-82,0,0,0.0761183 -938,5802:225,-25,-82,0,0,0.0756715 -939,5802:124,-24,-82,0,0,0.0789397 -940,3816:226,166,-82,0,0,0.0752487 -941,3816:227,167,-82,0,0,0.075063 -942,3816:228,168,-82,0,0,0.0749846 -943,3816:229,169,-82,0,0,0.074899 -944,3817:120,170,-82,0,0,0.074892 -945,3817:121,171,-82,0,0,0.0748777 -946,3817:122,172,-82,0,0,0.0807894 -947,3817:123,173,-82,0,0,0.0878209 -948,3817:124,174,-82,0,0,0.087558 -949,3817:225,175,-82,0,0,0.0873776 -950,3817:226,176,-82,0,0,0.0863183 -951,3817:227,177,-82,0,0,0.0752844 -952,3817:228,178,-82,0,0,0.0748849 -953,3817:229,179,-82,0,0,0.074949 -954,3818:120,180,-82,0,0,0.0749916 -955,5818:110,-180,-81,0,0,0.0749916 -956,5817:219,-179,-81,0,0,0.0750201 -957,5817:218,-178,-81,0,0,0.0750201 -958,5817:217,-177,-81,0,0,0.0750416 -959,5817:216,-176,-81,0,0,0.0750488 -960,5817:215,-175,-81,0,0,0.0750558 -961,5817:114,-174,-81,0,0,0.0750702 -962,5817:113,-173,-81,0,0,0.0750773 -963,5817:112,-172,-81,0,0,0.0750843 -964,5817:111,-171,-81,0,0,0.0750843 -965,5817:110,-170,-81,0,0,0.0750915 -966,5816:219,-169,-81,0,0,0.0750987 -967,5816:218,-168,-81,0,0,0.0751059 -968,5816:217,-167,-81,0,0,0.0751128 -969,5816:216,-166,-81,0,0,0.0751059 -970,5816:215,-165,-81,0,0,0.0751059 -971,5816:114,-164,-81,0,0,0.0751059 -972,5816:113,-163,-81,0,0,0.0751128 -973,5816:112,-162,-81,0,0,0.0751128 -974,5816:111,-161,-81,0,0,0.07512 -975,5816:110,-160,-81,0,0,0.0751344 -976,5815:219,-159,-81,0,0,0.0751416 -977,5815:218,-158,-81,0,0,0.0751558 -978,5815:217,-157,-81,0,0,0.0751486 -979,5815:216,-156,-81,0,0,0.0751558 -980,5815:215,-155,-81,0,0,0.075163 -981,5815:114,-154,-81,0,0,0.0751486 -982,5815:113,-153,-81,0,0,0.075163 -983,5815:112,-152,-81,0,0,0.0751558 -984,5815:111,-151,-81,0,0,0.0751416 -985,5815:110,-150,-81,0,0,0.0751416 -986,5814:219,-149,-81,0,0,0.0751344 -987,5814:218,-148,-81,0,0,0.0751344 -988,5814:217,-147,-81,0,0,0.0751272 -989,5814:216,-146,-81,0,0,0.07512 -990,5814:215,-145,-81,0,0,0.07512 -991,5814:114,-144,-81,0,0,0.0751128 -992,5814:113,-143,-81,0,0,0.07512 -993,5814:112,-142,-81,0,0,0.0751128 -994,5814:111,-141,-81,0,0,0.0751128 -995,5814:110,-140,-81,0,0,0.07512 -996,5813:219,-139,-81,0,0,0.07512 -997,5813:218,-138,-81,0,0,0.0751272 -998,5813:217,-137,-81,0,0,0.07527 -999,5813:216,-136,-81,0,0,0.0758155 -1000,5813:215,-135,-81,0,0,0.0776421 -1001,5813:114,-134,-81,0,0,0.0779001 -1002,5811:110,-110,-81,0,0,0.0832649 -1003,5810:219,-109,-81,0,0,0.0880188 -1004,5810:216,-106,-81,0,0,0.0759162 -1005,5810:215,-105,-81,0,0,0.0753775 -1006,5810:114,-104,-81,0,0,0.0768514 -1007,5810:113,-103,-81,0,0,0.0810109 -1008,5806:111,-61,-81,0,0,0.0753489 -1009,5806:110,-60,-81,0,0,0.075163 -1010,5805:219,-59,-81,0,0,0.0750201 -1011,5805:218,-58,-81,0,0,0.074949 -1012,5805:217,-57,-81,0,0,0.0749346 -1013,5805:216,-56,-81,0,0,0.0749275 -1014,5805:215,-55,-81,0,0,0.0749346 -1015,5805:114,-54,-81,0,0,0.0749346 -1016,5805:113,-53,-81,0,0,0.0749418 -1017,5805:112,-52,-81,0,0,0.0749562 -1018,5805:111,-51,-81,0,0,0.0749631 -1019,5805:110,-50,-81,0,0,0.0749631 -1020,5804:219,-49,-81,0,0,0.0749631 -1021,5804:218,-48,-81,0,0,0.074949 -1022,5804:217,-47,-81,0,0,0.0749703 -1023,5804:216,-46,-81,0,0,0.0749988 -1024,5804:215,-45,-81,0,0,0.0750273 -1025,5804:114,-44,-81,0,0,0.0750201 -1026,5804:113,-43,-81,0,0,0.0750201 -1027,5804:112,-42,-81,0,0,0.0750131 -1028,5804:111,-41,-81,0,0,0.0750201 -1029,5804:110,-40,-81,0,0,0.0750345 -1030,5803:219,-39,-81,0,0,0.0750345 -1031,5803:218,-38,-81,0,0,0.0750345 -1032,5803:217,-37,-81,0,0,0.0750345 -1033,5803:216,-36,-81,0,0,0.0750345 -1034,5803:215,-35,-81,0,0,0.0750416 -1035,5803:114,-34,-81,0,0,0.0750345 -1036,5803:113,-33,-81,0,0,0.0750345 -1037,5803:112,-32,-81,0,0,0.0750416 -1038,5803:111,-31,-81,0,0,0.0750488 -1039,5803:110,-30,-81,0,0,0.0750488 -1040,5802:219,-29,-81,0,0,0.0750488 -1041,5802:218,-28,-81,0,0,0.0750345 -1042,5802:217,-27,-81,0,0,0.0750201 -1043,5802:216,-26,-81,0,0,0.0761183 -1044,5802:215,-25,-81,0,0,0.0756715 -1045,5802:114,-24,-81,0,0,0.0789397 -1046,3816:216,166,-81,0,0,0.0752487 -1047,3816:217,167,-81,0,0,0.075063 -1048,3816:218,168,-81,0,0,0.0749846 -1049,3816:219,169,-81,0,0,0.074899 -1050,3817:110,170,-81,0,0,0.074892 -1051,3817:111,171,-81,0,0,0.0748777 -1052,3817:112,172,-81,0,0,0.0807894 -1053,3817:113,173,-81,0,0,0.0878209 -1054,3817:114,174,-81,0,0,0.087558 -1055,3817:215,175,-81,0,0,0.0873776 -1056,3817:216,176,-81,0,0,0.0863183 -1057,3817:217,177,-81,0,0,0.0752844 -1058,3817:218,178,-81,0,0,0.0748849 -1059,3817:219,179,-81,0,0,0.074949 -1060,3818:110,180,-81,0,0,0.0749916 -1061,5818:100,-180,-80,0,0,0.0749916 -1062,5817:209,-179,-80,0,0,0.0750201 -1063,5817:208,-178,-80,0,0,0.0750201 -1064,5817:207,-177,-80,0,0,0.0750416 -1065,5817:206,-176,-80,0,0,0.0750488 -1066,5817:205,-175,-80,0,0,0.0750558 -1067,5817:104,-174,-80,0,0,0.0750702 -1068,5817:103,-173,-80,0,0,0.0750773 -1069,5817:102,-172,-80,0,0,0.0750843 -1070,5817:101,-171,-80,0,0,0.0750843 -1071,5817:100,-170,-80,0,0,0.0750915 -1072,5816:209,-169,-80,0,0,0.0750987 -1073,5816:208,-168,-80,0,0,0.0751059 -1074,5816:207,-167,-80,0,0,0.0751128 -1075,5816:206,-166,-80,0,0,0.0751059 -1076,5816:205,-165,-80,0,0,0.0751059 -1077,5816:104,-164,-80,0,0,0.0751059 -1078,5816:103,-163,-80,0,0,0.0751128 -1079,5816:102,-162,-80,0,0,0.0751128 -1080,5816:101,-161,-80,0,0,0.07512 -1081,5816:100,-160,-80,0,0,0.0751344 -1082,5815:209,-159,-80,0,0,0.0751416 -1083,5815:208,-158,-80,0,0,0.0751558 -1084,5815:207,-157,-80,0,0,0.0751486 -1085,5815:206,-156,-80,0,0,0.0751558 -1086,5815:205,-155,-80,0,0,0.075163 -1087,5815:104,-154,-80,0,0,0.0751486 -1088,5815:103,-153,-80,0,0,0.075163 -1089,5815:102,-152,-80,0,0,0.0751558 -1090,5815:101,-151,-80,0,0,0.0751416 -1091,5815:100,-150,-80,0,0,0.0751416 -1092,5814:209,-149,-80,0,0,0.0751344 -1093,5814:208,-148,-80,0,0,0.0751344 -1094,5814:207,-147,-80,0,0,0.0751272 -1095,5814:206,-146,-80,0,0,0.07512 -1096,5814:205,-145,-80,0,0,0.07512 -1097,5814:104,-144,-80,0,0,0.0751128 -1098,5814:103,-143,-80,0,0,0.07512 -1099,5814:102,-142,-80,0,0,0.0751128 -1100,5814:101,-141,-80,0,0,0.0751128 -1101,5814:100,-140,-80,0,0,0.07512 -1102,5813:209,-139,-80,0,0,0.07512 -1103,5813:208,-138,-80,0,0,0.0751272 -1104,5813:207,-137,-80,0,0,0.07527 -1105,5813:206,-136,-80,0,0,0.0758155 -1106,5813:205,-135,-80,0,0,0.0776421 -1107,5813:104,-134,-80,0,0,0.0779001 -1108,5811:100,-110,-80,0,0,0.0832649 -1109,5810:209,-109,-80,0,0,0.0880188 -1110,5810:206,-106,-80,0,0,0.0759162 -1111,5810:205,-105,-80,0,0,0.0753775 -1112,5810:104,-104,-80,0,0,0.0768514 -1113,5810:103,-103,-80,0,0,0.0810109 -1114,5806:101,-61,-80,0,0,0.0753489 -1115,5806:100,-60,-80,0,0,0.075163 -1116,5805:209,-59,-80,0,0,0.0750201 -1117,5805:208,-58,-80,0,0,0.074949 -1118,5805:207,-57,-80,0,0,0.0749346 -1119,5805:206,-56,-80,0,0,0.0749275 -1120,5805:205,-55,-80,0,0,0.0749346 -1121,5805:104,-54,-80,0,0,0.0749346 -1122,5805:103,-53,-80,0,0,0.0749418 -1123,5805:102,-52,-80,0,0,0.0749562 -1124,5805:101,-51,-80,0,0,0.0749631 -1125,5805:100,-50,-80,0,0,0.0749631 -1126,5804:209,-49,-80,0,0,0.0749631 -1127,5804:208,-48,-80,0,0,0.074949 -1128,5804:207,-47,-80,0,0,0.0749703 -1129,5804:206,-46,-80,0,0,0.0749988 -1130,5804:205,-45,-80,0,0,0.0750273 -1131,5804:104,-44,-80,0,0,0.0750201 -1132,5804:103,-43,-80,0,0,0.0750201 -1133,5804:102,-42,-80,0,0,0.0750131 -1134,5804:101,-41,-80,0,0,0.0750201 -1135,5804:100,-40,-80,0,0,0.0750345 -1136,5803:209,-39,-80,0,0,0.0750345 -1137,5803:208,-38,-80,0,0,0.0750345 -1138,5803:207,-37,-80,0,0,0.0750345 -1139,5803:206,-36,-80,0,0,0.0750345 -1140,5803:205,-35,-80,0,0,0.0750416 -1141,5803:104,-34,-80,0,0,0.0750345 -1142,5803:103,-33,-80,0,0,0.0750345 -1143,5803:102,-32,-80,0,0,0.0750416 -1144,5803:101,-31,-80,0,0,0.0750488 -1145,5803:100,-30,-80,0,0,0.0750488 -1146,5802:209,-29,-80,0,0,0.0750488 -1147,5802:208,-28,-80,0,0,0.0750345 -1148,5802:207,-27,-80,0,0,0.0750201 -1149,5802:206,-26,-80,0,0,0.0761183 -1150,5802:205,-25,-80,0,0,0.0756715 -1151,5802:104,-24,-80,0,0,0.0789397 -1152,3816:206,166,-80,0,0,0.0752487 -1153,3816:207,167,-80,0,0,0.075063 -1154,3816:208,168,-80,0,0,0.0749846 -1155,3816:209,169,-80,0,0,0.074899 -1156,3817:100,170,-80,0,0,0.074892 -1157,3817:101,171,-80,0,0,0.0748777 -1158,3817:102,172,-80,0,0,0.0807894 -1159,3817:103,173,-80,0,0,0.0878209 -1160,3817:104,174,-80,0,0,0.087558 -1161,3817:205,175,-80,0,0,0.0873776 -1162,3817:206,176,-80,0,0,0.0863183 -1163,3817:207,177,-80,0,0,0.0752844 -1164,3817:208,178,-80,0,0,0.0748849 -1165,3817:209,179,-80,0,0,0.074949 -1166,3818:100,180,-80,0,0,0.0749916 -1167,5718:390,-180,-79,0,0,0.0749916 -1168,5717:499,-179,-79,0,0,0.0750201 -1169,5717:498,-178,-79,0,0,0.0750201 -1170,5717:497,-177,-79,0,0,0.0750416 -1171,5717:496,-176,-79,0,0,0.0750488 -1172,5717:495,-175,-79,0,0,0.0750558 -1173,5717:394,-174,-79,0,0,0.0750702 -1174,5717:393,-173,-79,0,0,0.0750773 -1175,5717:392,-172,-79,0,0,0.0750843 -1176,5717:391,-171,-79,0,0,0.0750843 -1177,5717:390,-170,-79,0,0,0.0750915 -1178,5716:499,-169,-79,0,0,0.0750987 -1179,5716:498,-168,-79,0,0,0.0751059 -1180,5716:497,-167,-79,0,0,0.0751128 -1181,5716:496,-166,-79,0,0,0.0751059 -1182,5716:495,-165,-79,0,0,0.0751059 -1183,5716:394,-164,-79,0,0,0.0751059 -1184,5716:393,-163,-79,0,0,0.0751128 -1185,5716:392,-162,-79,0,0,0.0751128 -1186,5716:391,-161,-79,0,0,0.07512 -1187,5716:390,-160,-79,0,0,0.0751344 -1188,5715:499,-159,-79,0,0,0.0751416 -1189,5715:498,-158,-79,0,0,0.0751558 -1190,5715:497,-157,-79,0,0,0.0751486 -1191,5715:496,-156,-79,0,0,0.0751558 -1192,5715:495,-155,-79,0,0,0.075163 -1193,5715:394,-154,-79,0,0,0.0751486 -1194,5715:393,-153,-79,0,0,0.075163 -1195,5715:392,-152,-79,0,0,0.0751558 -1196,5715:391,-151,-79,0,0,0.0751416 -1197,5715:390,-150,-79,0,0,0.0751416 -1198,5714:499,-149,-79,0,0,0.0751344 -1199,5714:498,-148,-79,0,0,0.0751344 -1200,5714:497,-147,-79,0,0,0.0751272 -1201,5714:496,-146,-79,0,0,0.07512 -1202,5714:495,-145,-79,0,0,0.07512 -1203,5714:394,-144,-79,0,0,0.0751128 -1204,5714:393,-143,-79,0,0,0.07512 -1205,5714:392,-142,-79,0,0,0.0751128 -1206,5714:391,-141,-79,0,0,0.0751128 -1207,5714:390,-140,-79,0,0,0.07512 -1208,5713:499,-139,-79,0,0,0.07512 -1209,5713:498,-138,-79,0,0,0.0751272 -1210,5713:497,-137,-79,0,0,0.07527 -1211,5713:496,-136,-79,0,0,0.0758155 -1212,5713:495,-135,-79,0,0,0.0776421 -1213,5713:394,-134,-79,0,0,0.0779001 -1214,5711:390,-110,-79,0,0,0.0832649 -1215,5710:499,-109,-79,0,0,0.0880188 -1216,5710:496,-106,-79,0,0,0.0759162 -1217,5710:495,-105,-79,0,0,0.0753775 -1218,5710:394,-104,-79,0,0,0.0768514 -1219,5710:393,-103,-79,0,0,0.0810109 -1220,5706:391,-61,-79,0,0,0.0753489 -1221,5706:390,-60,-79,0,0,0.075163 -1222,5705:499,-59,-79,0,0,0.0750201 -1223,5705:498,-58,-79,0,0,0.074949 -1224,5705:497,-57,-79,0,0,0.0749346 -1225,5705:496,-56,-79,0,0,0.0749275 -1226,5705:495,-55,-79,0,0,0.0749346 -1227,5705:394,-54,-79,0,0,0.0749346 -1228,5705:393,-53,-79,0,0,0.0749418 -1229,5705:392,-52,-79,0,0,0.0749562 -1230,5705:391,-51,-79,0,0,0.0749631 -1231,5705:390,-50,-79,0,0,0.0749631 -1232,5704:499,-49,-79,0,0,0.0749631 -1233,5704:498,-48,-79,0,0,0.074949 -1234,5704:497,-47,-79,0,0,0.0749703 -1235,5704:496,-46,-79,0,0,0.0749988 -1236,5704:495,-45,-79,0,0,0.0750273 -1237,5704:394,-44,-79,0,0,0.0750201 -1238,5704:393,-43,-79,0,0,0.0750201 -1239,5704:392,-42,-79,0,0,0.0750131 -1240,5704:391,-41,-79,0,0,0.0750201 -1241,5704:390,-40,-79,0,0,0.0750345 -1242,5703:499,-39,-79,0,0,0.0750345 -1243,5703:498,-38,-79,0,0,0.0750345 -1244,5703:497,-37,-79,0,0,0.0750345 -1245,5703:496,-36,-79,0,0,0.0750345 -1246,5703:495,-35,-79,0,0,0.0750416 -1247,5703:394,-34,-79,0,0,0.0750345 -1248,5703:393,-33,-79,0,0,0.0750345 -1249,5703:392,-32,-79,0,0,0.0750416 -1250,5703:391,-31,-79,0,0,0.0750488 -1251,5703:390,-30,-79,0,0,0.0750488 -1252,5702:499,-29,-79,0,0,0.0750488 -1253,5702:498,-28,-79,0,0,0.0750345 -1254,5702:497,-27,-79,0,0,0.0750201 -1255,5702:496,-26,-79,0,0,0.0761183 -1256,5702:495,-25,-79,0,0,0.0756715 -1257,5702:394,-24,-79,0,0,0.0789397 -1258,3716:496,166,-79,0,0,0.0752487 -1259,3716:497,167,-79,0,0,0.075063 -1260,3716:498,168,-79,0,0,0.0749846 -1261,3716:499,169,-79,0,0,0.074899 -1262,3717:390,170,-79,0,0,0.074892 -1263,3717:391,171,-79,0,0,0.0748777 -1264,3717:392,172,-79,0,0,0.0807894 -1265,3717:393,173,-79,0,0,0.0878209 -1266,3717:394,174,-79,0,0,0.087558 -1267,3717:495,175,-79,0,0,0.0873776 -1268,3717:496,176,-79,0,0,0.0863183 -1269,3717:497,177,-79,0,0,0.0752844 -1270,3717:498,178,-79,0,0,0.0748849 -1271,3717:499,179,-79,0,0,0.074949 -1272,3718:390,180,-79,0,0,0.0749916 -1273,5718:380,-180,-78,0,0,0.0749916 -1274,5717:489,-179,-78,0,0,0.0750201 -1275,5717:488,-178,-78,0,0,0.0750201 -1276,5717:487,-177,-78,0,0,0.0750416 -1277,5717:486,-176,-78,0,0,0.0750488 -1278,5717:485,-175,-78,0,0,0.0750558 -1279,5717:384,-174,-78,0,0,0.0750702 -1280,5717:383,-173,-78,0,0,0.0750773 -1281,5717:382,-172,-78,0,0,0.0750843 -1282,5717:381,-171,-78,0,0,0.0750843 -1283,5717:380,-170,-78,0,0,0.0750915 -1284,5716:489,-169,-78,0,0,0.0750987 -1285,5716:488,-168,-78,0,0,0.0751059 -1286,5716:487,-167,-78,0,0,0.0751128 -1287,5716:486,-166,-78,0,0,0.0751059 -1288,5716:485,-165,-78,0,0,0.0751059 -1289,5716:384,-164,-78,0,0,0.0751059 -1290,5716:383,-163,-78,0,0,0.0751128 -1291,5716:382,-162,-78,0,0,0.0751128 -1292,5716:381,-161,-78,0,0,0.07512 -1293,5716:380,-160,-78,0,0,0.0751344 -1294,5715:489,-159,-78,0,0,0.0751416 -1295,5715:488,-158,-78,0,0,0.0751558 -1296,5715:487,-157,-78,0,0,0.0751486 -1297,5715:486,-156,-78,0,0,0.0751558 -1298,5715:485,-155,-78,0,0,0.075163 -1299,5715:384,-154,-78,0,0,0.0751486 -1300,5715:383,-153,-78,0,0,0.075163 -1301,5715:382,-152,-78,0,0,0.0751558 -1302,5715:381,-151,-78,0,0,0.0751416 -1303,5715:380,-150,-78,0,0,0.0751416 -1304,5714:489,-149,-78,0,0,0.0751344 -1305,5714:488,-148,-78,0,0,0.0751344 -1306,5714:487,-147,-78,0,0,0.0751272 -1307,5714:486,-146,-78,0,0,0.07512 -1308,5714:485,-145,-78,0,0,0.07512 -1309,5714:384,-144,-78,0,0,0.0751128 -1310,5714:383,-143,-78,0,0,0.07512 -1311,5714:382,-142,-78,0,0,0.0751128 -1312,5714:381,-141,-78,0,0,0.0751128 -1313,5714:380,-140,-78,0,0,0.07512 -1314,5713:489,-139,-78,0,0,0.07512 -1315,5713:488,-138,-78,0,0,0.0751272 -1316,5713:487,-137,-78,0,0,0.07527 -1317,5713:486,-136,-78,0,0,0.0758155 -1318,5713:485,-135,-78,0,0,0.0776421 -1319,5713:384,-134,-78,0,0,0.0779001 -1320,5711:380,-110,-78,0,0,0.0832649 -1321,5710:489,-109,-78,0,0,0.0880188 -1322,5710:486,-106,-78,0,0,0.0759162 -1323,5710:485,-105,-78,0,0,0.0753775 -1324,5710:384,-104,-78,0,0,0.0768514 -1325,5710:383,-103,-78,0,0,0.0810109 -1326,5706:381,-61,-78,0,0,0.0753489 -1327,5706:380,-60,-78,0,0,0.075163 -1328,5705:489,-59,-78,0,0,0.0750201 -1329,5705:488,-58,-78,0,0,0.074949 -1330,5705:487,-57,-78,0,0,0.0749346 -1331,5705:486,-56,-78,0,0,0.0749275 -1332,5705:485,-55,-78,0,0,0.0749346 -1333,5705:384,-54,-78,0,0,0.0749346 -1334,5705:383,-53,-78,0,0,0.0749418 -1335,5705:382,-52,-78,0,0,0.0749562 -1336,5705:381,-51,-78,0,0,0.0749631 -1337,5705:380,-50,-78,0,0,0.0749631 -1338,5704:489,-49,-78,0,0,0.0749631 -1339,5704:488,-48,-78,0,0,0.074949 -1340,5704:487,-47,-78,0,0,0.0749703 -1341,5704:486,-46,-78,0,0,0.0749988 -1342,5704:485,-45,-78,0,0,0.0750273 -1343,5704:384,-44,-78,0,0,0.0750201 -1344,5704:383,-43,-78,0,0,0.0750201 -1345,5704:382,-42,-78,0,0,0.0750131 -1346,5704:381,-41,-78,0,0,0.0750201 -1347,5704:380,-40,-78,0,0,0.0750345 -1348,5703:489,-39,-78,0,0,0.0750345 -1349,5703:488,-38,-78,0,0,0.0750345 -1350,5703:487,-37,-78,0,0,0.0750345 -1351,5703:486,-36,-78,0,0,0.0750345 -1352,5703:485,-35,-78,0,0,0.0750416 -1353,5703:384,-34,-78,0,0,0.0750345 -1354,5703:383,-33,-78,0,0,0.0750345 -1355,5703:382,-32,-78,0,0,0.0750416 -1356,5703:381,-31,-78,0,0,0.0750488 -1357,5703:380,-30,-78,0,0,0.0750488 -1358,5702:489,-29,-78,0,0,0.0750488 -1359,5702:488,-28,-78,0,0,0.0750345 -1360,5702:487,-27,-78,0,0,0.0750201 -1361,5702:486,-26,-78,0,0,0.0761183 -1362,5702:485,-25,-78,0,0,0.0756715 -1363,5702:384,-24,-78,0,0,0.0789397 -1364,3716:486,166,-78,0,0,0.0752487 -1365,3716:487,167,-78,0,0,0.075063 -1366,3716:488,168,-78,0,0,0.0749846 -1367,3716:489,169,-78,0,0,0.074899 -1368,3717:380,170,-78,0,0,0.074892 -1369,3717:381,171,-78,0,0,0.0748777 -1370,3717:382,172,-78,0,0,0.0807894 -1371,3717:383,173,-78,0,0,0.0878209 -1372,3717:384,174,-78,0,0,0.087558 -1373,3717:485,175,-78,0,0,0.0873776 -1374,3717:486,176,-78,0,0,0.0863183 -1375,3717:487,177,-78,0,0,0.0752844 -1376,3717:488,178,-78,0,0,0.0748849 -1377,3717:489,179,-78,0,0,0.074949 -1378,3718:380,180,-78,0,0,0.0749916 -1379,5718:370,-180,-77,0,0,0.0749916 -1380,5717:479,-179,-77,0,0,0.0750201 -1381,5717:478,-178,-77,0,0,0.0750201 -1382,5717:477,-177,-77,0,0,0.0750416 -1383,5717:476,-176,-77,0,0,0.0750488 -1384,5717:475,-175,-77,0,0,0.0750558 -1385,5717:374,-174,-77,0,0,0.0750702 -1386,5717:373,-173,-77,0,0,0.0750773 -1387,5717:372,-172,-77,0,0,0.0750843 -1388,5717:371,-171,-77,0,0,0.0750843 -1389,5717:370,-170,-77,0,0,0.0750915 -1390,5716:479,-169,-77,0,0,0.0750987 -1391,5716:478,-168,-77,0,0,0.0751059 -1392,5716:477,-167,-77,0,0,0.0751128 -1393,5716:476,-166,-77,0,0,0.0751059 -1394,5716:475,-165,-77,0,0,0.0751059 -1395,5716:374,-164,-77,0,0,0.0751059 -1396,5716:373,-163,-77,0,0,0.0751128 -1397,5716:372,-162,-77,0,0,0.0751128 -1398,5716:371,-161,-77,0,0,0.07512 -1399,5716:370,-160,-77,0,0,0.0751344 -1400,5715:479,-159,-77,0,0,0.0751416 -1401,5715:478,-158,-77,0,0,0.0751558 -1402,5715:477,-157,-77,0,0,0.0751486 -1403,5715:476,-156,-77,0,0,0.0751558 -1404,5715:475,-155,-77,0,0,0.075163 -1405,5715:374,-154,-77,0,0,0.0751486 -1406,5715:373,-153,-77,0,0,0.075163 -1407,5715:372,-152,-77,0,0,0.0751558 -1408,5715:371,-151,-77,0,0,0.0751416 -1409,5715:370,-150,-77,0,0,0.0751416 -1410,5714:479,-149,-77,0,0,0.0751344 -1411,5714:478,-148,-77,0,0,0.0751344 -1412,5714:477,-147,-77,0,0,0.0751272 -1413,5714:476,-146,-77,0,0,0.07512 -1414,5714:475,-145,-77,0,0,0.07512 -1415,5714:374,-144,-77,0,0,0.0751128 -1416,5714:373,-143,-77,0,0,0.07512 -1417,5714:372,-142,-77,0,0,0.0751128 -1418,5714:371,-141,-77,0,0,0.0751128 -1419,5714:370,-140,-77,0,0,0.07512 -1420,5713:479,-139,-77,0,0,0.07512 -1421,5713:478,-138,-77,0,0,0.0751272 -1422,5713:477,-137,-77,0,0,0.07527 -1423,5713:476,-136,-77,0,0,0.0758155 -1424,5713:475,-135,-77,0,0,0.0776421 -1425,5713:374,-134,-77,0,0,0.0779001 -1426,5711:370,-110,-77,0,0,0.0832649 -1427,5710:479,-109,-77,0,0,0.0880188 -1428,5710:476,-106,-77,0,0,0.0759162 -1429,5710:475,-105,-77,0,0,0.0753775 -1430,5710:374,-104,-77,0,0,0.0768514 -1431,5710:373,-103,-77,0,0,0.0810109 -1432,5706:371,-61,-77,0,0,0.0753489 -1433,5706:370,-60,-77,0,0,0.075163 -1434,5705:479,-59,-77,0,0,0.0750201 -1435,5705:478,-58,-77,0,0,0.074949 -1436,5705:477,-57,-77,0,0,0.0749346 -1437,5705:476,-56,-77,0,0,0.0749275 -1438,5705:475,-55,-77,0,0,0.0749346 -1439,5705:374,-54,-77,0,0,0.0749346 -1440,5705:373,-53,-77,0,0,0.0749418 -1441,5705:372,-52,-77,0,0,0.0749562 -1442,5705:371,-51,-77,0,0,0.0749631 -1443,5705:370,-50,-77,0,0,0.0749631 -1444,5704:479,-49,-77,0,0,0.0749631 -1445,5704:478,-48,-77,0,0,0.074949 -1446,5704:477,-47,-77,0,0,0.0749703 -1447,5704:476,-46,-77,0,0,0.0749988 -1448,5704:475,-45,-77,0,0,0.0750273 -1449,5704:374,-44,-77,0,0,0.0750201 -1450,5704:373,-43,-77,0,0,0.0750201 -1451,5704:372,-42,-77,0,0,0.0750131 -1452,5704:371,-41,-77,0,0,0.0750201 -1453,5704:370,-40,-77,0,0,0.0750345 -1454,5703:479,-39,-77,0,0,0.0750345 -1455,5703:478,-38,-77,0,0,0.0750345 -1456,5703:477,-37,-77,0,0,0.0750345 -1457,5703:476,-36,-77,0,0,0.0750345 -1458,5703:475,-35,-77,0,0,0.0750416 -1459,5703:374,-34,-77,0,0,0.0750345 -1460,5703:373,-33,-77,0,0,0.0750345 -1461,5703:372,-32,-77,0,0,0.0750416 -1462,5703:371,-31,-77,0,0,0.0750488 -1463,5703:370,-30,-77,0,0,0.0750488 -1464,5702:479,-29,-77,0,0,0.0750488 -1465,5702:478,-28,-77,0,0,0.0750345 -1466,5702:477,-27,-77,0,0,0.0750201 -1467,5702:476,-26,-77,0,0,0.0761183 -1468,5702:475,-25,-77,0,0,0.0756715 -1469,5702:374,-24,-77,0,0,0.0789397 -1470,3716:476,166,-77,0,0,0.0752487 -1471,3716:477,167,-77,0,0,0.075063 -1472,3716:478,168,-77,0,0,0.0749846 -1473,3716:479,169,-77,0,0,0.074899 -1474,3717:370,170,-77,0,0,0.074892 -1475,3717:371,171,-77,0,0,0.0748777 -1476,3717:372,172,-77,0,0,0.0807894 -1477,3717:373,173,-77,0,0,0.0878209 -1478,3717:374,174,-77,0,0,0.087558 -1479,3717:475,175,-77,0,0,0.0873776 -1480,3717:476,176,-77,0,0,0.0863183 -1481,3717:477,177,-77,0,0,0.0752844 -1482,3717:478,178,-77,0,0,0.0748849 -1483,3717:479,179,-77,0,0,0.074949 -1484,3718:370,180,-77,0,0,0.0749916 -1485,5718:360,-180,-76,0,0,0.0749775 -1486,5717:469,-179,-76,0,0,0.075006 -1487,5717:468,-178,-76,0,0,0.0750345 -1488,5717:467,-177,-76,0,0,0.0750345 -1489,5717:466,-176,-76,0,0,0.0750416 -1490,5717:465,-175,-76,0,0,0.0750488 -1491,5717:364,-174,-76,0,0,0.075063 -1492,5717:363,-173,-76,0,0,0.0750702 -1493,5717:362,-172,-76,0,0,0.0750702 -1494,5717:361,-171,-76,0,0,0.0750702 -1495,5717:360,-170,-76,0,0,0.0750702 -1496,5716:469,-169,-76,0,0,0.0750702 -1497,5716:468,-168,-76,0,0,0.0750702 -1498,5716:467,-167,-76,0,0,0.0750702 -1499,5716:466,-166,-76,0,0,0.0750773 -1500,5716:465,-165,-76,0,0,0.0750843 -1501,5716:364,-164,-76,0,0,0.0750915 -1502,5716:363,-163,-76,0,0,0.0750915 -1503,5716:362,-162,-76,0,0,0.0750987 -1504,5716:361,-161,-76,0,0,0.0751059 -1505,5716:360,-160,-76,0,0,0.0751128 -1506,5715:469,-159,-76,0,0,0.0751128 -1507,5715:468,-158,-76,0,0,0.0751059 -1508,5715:467,-157,-76,0,0,0.0751128 -1509,5715:466,-156,-76,0,0,0.0751272 -1510,5715:465,-155,-76,0,0,0.0751272 -1511,5715:364,-154,-76,0,0,0.0751416 -1512,5715:363,-153,-76,0,0,0.0751558 -1513,5715:362,-152,-76,0,0,0.075163 -1514,5715:361,-151,-76,0,0,0.075163 -1515,5715:360,-150,-76,0,0,0.0751558 -1516,5714:469,-149,-76,0,0,0.0751558 -1517,5714:468,-148,-76,0,0,0.075163 -1518,5714:467,-147,-76,0,0,0.0751701 -1519,5714:466,-146,-76,0,0,0.0751701 -1520,5714:465,-145,-76,0,0,0.0751558 -1521,5714:364,-144,-76,0,0,0.0751486 -1522,5714:363,-143,-76,0,0,0.0751558 -1523,5714:362,-142,-76,0,0,0.0751558 -1524,5714:361,-141,-76,0,0,0.0751416 -1525,5714:360,-140,-76,0,0,0.0751344 -1526,5713:469,-139,-76,0,0,0.07512 -1527,5713:468,-138,-76,0,0,0.0751059 -1528,5713:467,-137,-76,0,0,0.0750987 -1529,5713:466,-136,-76,0,0,0.0750915 -1530,5713:465,-135,-76,0,0,0.0750702 -1531,5713:364,-134,-76,0,0,0.0750416 -1532,5713:363,-133,-76,0,0,0.0750488 -1533,5713:362,-132,-76,0,0,0.0752844 -1534,5713:361,-131,-76,0,0,0.0790444 -1535,5713:360,-130,-76,0,0,0.0808658 -1536,5712:469,-129,-76,0,0,0.0833984 -1537,5712:468,-128,-76,0,0,0.0821503 -1538,5711:467,-117,-76,0,0,0.0752631 -1539,5711:465,-115,-76,0,0,0.0772606 -1540,5711:363,-113,-76,0,0,0.0838865 -1541,5711:362,-112,-76,0,0,0.0835949 -1542,5711:361,-111,-76,0,0,0.0856883 -1543,5711:360,-110,-76,0,0,0.0858897 -1544,5710:467,-107,-76,0,0,0.075729 -1545,5710:466,-106,-76,0,0,0.0752916 -1546,5710:465,-105,-76,0,0,0.0752844 -1547,5710:364,-104,-76,0,0,0.0764803 -1548,5710:363,-103,-76,0,0,0.0809726 -1549,5710:362,-102,-76,0,0,0.0821503 -1550,5706:361,-61,-76,0,0,0.0754061 -1551,5706:360,-60,-76,0,0,0.0752487 -1552,5705:469,-59,-76,0,0,0.0750488 -1553,5705:468,-58,-76,0,0,0.0749775 -1554,5705:467,-57,-76,0,0,0.0749418 -1555,5705:466,-56,-76,0,0,0.0749346 -1556,5705:465,-55,-76,0,0,0.0749346 -1557,5705:364,-54,-76,0,0,0.0749418 -1558,5705:363,-53,-76,0,0,0.0749562 -1559,5705:362,-52,-76,0,0,0.0749703 -1560,5705:361,-51,-76,0,0,0.0749775 -1561,5705:360,-50,-76,0,0,0.0749846 -1562,5704:469,-49,-76,0,0,0.0749846 -1563,5704:468,-48,-76,0,0,0.0749846 -1564,5704:467,-47,-76,0,0,0.0749775 -1565,5704:466,-46,-76,0,0,0.0749916 -1566,5704:465,-45,-76,0,0,0.0750131 -1567,5704:364,-44,-76,0,0,0.0750345 -1568,5704:363,-43,-76,0,0,0.0750345 -1569,5704:362,-42,-76,0,0,0.0750416 -1570,5704:361,-41,-76,0,0,0.0750416 -1571,5704:360,-40,-76,0,0,0.0750488 -1572,5703:469,-39,-76,0,0,0.0750488 -1573,5703:468,-38,-76,0,0,0.0750488 -1574,5703:467,-37,-76,0,0,0.0750488 -1575,5703:466,-36,-76,0,0,0.0750488 -1576,5703:465,-35,-76,0,0,0.0750488 -1577,5703:364,-34,-76,0,0,0.0750558 -1578,5703:363,-33,-76,0,0,0.0750558 -1579,5703:362,-32,-76,0,0,0.0750558 -1580,5703:361,-31,-76,0,0,0.0750488 -1581,5703:360,-30,-76,0,0,0.0750488 -1582,5702:469,-29,-76,0,0,0.0750488 -1583,5702:468,-28,-76,0,0,0.0750416 -1584,5702:467,-27,-76,0,0,0.0750345 -1585,5702:466,-26,-76,0,0,0.0750345 -1586,5702:465,-25,-76,0,0,0.0754348 -1587,5702:364,-24,-76,0,0,0.0767785 -1588,5702:363,-23,-76,0,0,0.0782775 -1589,5702:362,-22,-76,0,0,0.0828814 -1590,5702:361,-21,-76,0,0,0.0866349 -1591,3716:467,167,-76,0,0,0.0752273 -1592,3716:468,168,-76,0,0,0.0750416 -1593,3716:469,169,-76,0,0,0.0749916 -1594,3717:360,170,-76,0,0,0.0749988 -1595,3717:361,171,-76,0,0,0.074892 -1596,3717:362,172,-76,0,0,0.0763427 -1597,3717:363,173,-76,0,0,0.0795393 -1598,3717:364,174,-76,0,0,0.0850706 -1599,3717:465,175,-76,0,0,0.086651 -1600,3717:466,176,-76,0,0,0.0858252 -1601,3717:467,177,-76,0,0,0.0754133 -1602,3717:468,178,-76,0,0,0.0748777 -1603,3717:469,179,-76,0,0,0.0749346 -1604,3718:360,180,-76,0,0,0.0749775 -1605,5718:350,-180,-75,0,0,0.0749775 -1606,5717:459,-179,-75,0,0,0.0749988 -1607,5717:458,-178,-75,0,0,0.0750273 -1608,5717:457,-177,-75,0,0,0.0750345 -1609,5717:456,-176,-75,0,0,0.0750488 -1610,5717:455,-175,-75,0,0,0.0750488 -1611,5717:354,-174,-75,0,0,0.075063 -1612,5717:353,-173,-75,0,0,0.075063 -1613,5717:352,-172,-75,0,0,0.0750558 -1614,5717:351,-171,-75,0,0,0.0750558 -1615,5717:350,-170,-75,0,0,0.075063 -1616,5716:459,-169,-75,0,0,0.075063 -1617,5716:458,-168,-75,0,0,0.075063 -1618,5716:457,-167,-75,0,0,0.0750702 -1619,5716:456,-166,-75,0,0,0.0750702 -1620,5716:455,-165,-75,0,0,0.0750773 -1621,5716:354,-164,-75,0,0,0.0750843 -1622,5716:353,-163,-75,0,0,0.0750843 -1623,5716:352,-162,-75,0,0,0.0750843 -1624,5716:351,-161,-75,0,0,0.0750843 -1625,5716:350,-160,-75,0,0,0.0750843 -1626,5715:459,-159,-75,0,0,0.0750843 -1627,5715:458,-158,-75,0,0,0.0750915 -1628,5715:457,-157,-75,0,0,0.0751059 -1629,5715:456,-156,-75,0,0,0.0751128 -1630,5715:455,-155,-75,0,0,0.0751272 -1631,5715:354,-154,-75,0,0,0.0751272 -1632,5715:353,-153,-75,0,0,0.0751272 -1633,5715:352,-152,-75,0,0,0.0751486 -1634,5715:351,-151,-75,0,0,0.0751558 -1635,5715:350,-150,-75,0,0,0.0751486 -1636,5714:459,-149,-75,0,0,0.0751558 -1637,5714:458,-148,-75,0,0,0.075163 -1638,5714:457,-147,-75,0,0,0.0751701 -1639,5714:456,-146,-75,0,0,0.0751843 -1640,5714:455,-145,-75,0,0,0.0751843 -1641,5714:354,-144,-75,0,0,0.0751843 -1642,5714:353,-143,-75,0,0,0.0751843 -1643,5714:352,-142,-75,0,0,0.0751771 -1644,5714:351,-141,-75,0,0,0.0751771 -1645,5714:350,-140,-75,0,0,0.0751771 -1646,5713:459,-139,-75,0,0,0.0751558 -1647,5713:458,-138,-75,0,0,0.0751272 -1648,5713:457,-137,-75,0,0,0.0750987 -1649,5713:456,-136,-75,0,0,0.0750843 -1650,5713:455,-135,-75,0,0,0.0750345 -1651,5713:354,-134,-75,0,0,0.0750416 -1652,5713:353,-133,-75,0,0,0.075063 -1653,5713:352,-132,-75,0,0,0.0750915 -1654,5713:351,-131,-75,0,0,0.075163 -1655,5713:350,-130,-75,0,0,0.0754779 -1656,5712:459,-129,-75,0,0,0.0775539 -1657,5712:458,-128,-75,0,0,0.0755207 -1658,5712:354,-124,-75,0,0,0.0766328 -1659,5712:353,-123,-75,0,0,0.0758515 -1660,5712:352,-122,-75,0,0,0.0753203 -1661,5712:351,-121,-75,0,0,0.0753989 -1662,5712:350,-120,-75,0,0,0.0753203 -1663,5711:459,-119,-75,0,0,0.0753703 -1664,5711:458,-118,-75,0,0,0.0753203 -1665,5711:457,-117,-75,0,0,0.0751987 -1666,5711:456,-116,-75,0,0,0.0752559 -1667,5711:455,-115,-75,0,0,0.0763643 -1668,5711:354,-114,-75,0,0,0.077635 -1669,5711:353,-113,-75,0,0,0.0795545 -1670,5711:352,-112,-75,0,0,0.0751771 -1671,5711:351,-111,-75,0,0,0.0754061 -1672,5710:458,-108,-75,0,0,0.0756787 -1673,5710:457,-107,-75,0,0,0.0753489 -1674,5710:456,-106,-75,0,0,0.0752559 -1675,5710:455,-105,-75,0,0,0.0753703 -1676,5710:354,-104,-75,0,0,0.0787234 -1677,5710:353,-103,-75,0,0,0.0813097 -1678,5708:353,-83,-75,0,0,0.0902963 -1679,5708:352,-82,-75,0,0,0.0903556 -1680,5706:350,-60,-75,0,0,0.0752844 -1681,5705:459,-59,-75,0,0,0.0750131 -1682,5705:458,-58,-75,0,0,0.0749703 -1683,5705:457,-57,-75,0,0,0.074949 -1684,5705:456,-56,-75,0,0,0.074949 -1685,5705:455,-55,-75,0,0,0.0749346 -1686,5705:354,-54,-75,0,0,0.0749418 -1687,5705:353,-53,-75,0,0,0.0749631 -1688,5705:352,-52,-75,0,0,0.0749703 -1689,5705:351,-51,-75,0,0,0.0749916 -1690,5705:350,-50,-75,0,0,0.0749988 -1691,5704:459,-49,-75,0,0,0.0749988 -1692,5704:458,-48,-75,0,0,0.0749988 -1693,5704:457,-47,-75,0,0,0.075006 -1694,5704:456,-46,-75,0,0,0.0750131 -1695,5704:455,-45,-75,0,0,0.0750273 -1696,5704:354,-44,-75,0,0,0.0750416 -1697,5704:353,-43,-75,0,0,0.0750488 -1698,5704:352,-42,-75,0,0,0.0750558 -1699,5704:351,-41,-75,0,0,0.0750558 -1700,5704:350,-40,-75,0,0,0.0750558 -1701,5703:459,-39,-75,0,0,0.0750558 -1702,5703:458,-38,-75,0,0,0.0750488 -1703,5703:457,-37,-75,0,0,0.0750416 -1704,5703:456,-36,-75,0,0,0.0750416 -1705,5703:455,-35,-75,0,0,0.0750416 -1706,5703:354,-34,-75,0,0,0.0750416 -1707,5703:353,-33,-75,0,0,0.0750416 -1708,5703:352,-32,-75,0,0,0.0750416 -1709,5703:351,-31,-75,0,0,0.0750416 -1710,5703:350,-30,-75,0,0,0.0750345 -1711,5702:459,-29,-75,0,0,0.0750273 -1712,5702:458,-28,-75,0,0,0.0750273 -1713,5702:457,-27,-75,0,0,0.0750201 -1714,5702:456,-26,-75,0,0,0.0750131 -1715,5702:455,-25,-75,0,0,0.0749988 -1716,5702:354,-24,-75,0,0,0.0749846 -1717,5702:353,-23,-75,0,0,0.0754706 -1718,5702:352,-22,-75,0,0,0.077937 -1719,5702:351,-21,-75,0,0,0.0846637 -1720,5702:350,-20,-75,0,0,0.0867568 -1721,3716:458,168,-75,0,0,0.0754779 -1722,3716:459,169,-75,0,0,0.0753775 -1723,3717:350,170,-75,0,0,0.0751128 -1724,3717:351,171,-75,0,0,0.074949 -1725,3717:352,172,-75,0,0,0.0749133 -1726,3717:353,173,-75,0,0,0.0766839 -1727,3717:354,174,-75,0,0,0.0805836 -1728,3717:455,175,-75,0,0,0.0810721 -1729,3717:456,176,-75,0,0,0.0829675 -1730,3717:457,177,-75,0,0,0.0764223 -1731,3717:458,178,-75,0,0,0.074892 -1732,3717:459,179,-75,0,0,0.0749346 -1733,3718:350,180,-75,0,0,0.0749775 -1734,5718:140,-180,-74,0,0,0.0749703 -1735,5717:249,-179,-74,0,0,0.075006 -1736,5717:248,-178,-74,0,0,0.0750201 -1737,5717:247,-177,-74,0,0,0.0750416 -1738,5717:246,-176,-74,0,0,0.0750416 -1739,5717:245,-175,-74,0,0,0.0750416 -1740,5717:144,-174,-74,0,0,0.0750558 -1741,5717:143,-173,-74,0,0,0.0750558 -1742,5717:142,-172,-74,0,0,0.0750488 -1743,5717:141,-171,-74,0,0,0.0750488 -1744,5717:140,-170,-74,0,0,0.0750416 -1745,5716:249,-169,-74,0,0,0.0750488 -1746,5716:248,-168,-74,0,0,0.0750558 -1747,5716:247,-167,-74,0,0,0.0750558 -1748,5716:246,-166,-74,0,0,0.075063 -1749,5716:245,-165,-74,0,0,0.0750702 -1750,5716:144,-164,-74,0,0,0.0750843 -1751,5716:143,-163,-74,0,0,0.0750843 -1752,5716:142,-162,-74,0,0,0.0750987 -1753,5716:141,-161,-74,0,0,0.0750987 -1754,5716:140,-160,-74,0,0,0.0751128 -1755,5715:249,-159,-74,0,0,0.07512 -1756,5715:248,-158,-74,0,0,0.07512 -1757,5715:247,-157,-74,0,0,0.0751272 -1758,5715:246,-156,-74,0,0,0.0751344 -1759,5715:245,-155,-74,0,0,0.0751272 -1760,5715:144,-154,-74,0,0,0.07512 -1761,5715:143,-153,-74,0,0,0.07512 -1762,5715:142,-152,-74,0,0,0.0751416 -1763,5715:141,-151,-74,0,0,0.0751486 -1764,5715:140,-150,-74,0,0,0.0751558 -1765,5714:249,-149,-74,0,0,0.0751558 -1766,5714:248,-148,-74,0,0,0.075163 -1767,5714:247,-147,-74,0,0,0.075163 -1768,5714:246,-146,-74,0,0,0.0751701 -1769,5714:245,-145,-74,0,0,0.0751701 -1770,5714:144,-144,-74,0,0,0.0751701 -1771,5714:143,-143,-74,0,0,0.0751843 -1772,5714:142,-142,-74,0,0,0.0751843 -1773,5714:141,-141,-74,0,0,0.0751771 -1774,5714:140,-140,-74,0,0,0.0751987 -1775,5713:249,-139,-74,0,0,0.0752057 -1776,5713:248,-138,-74,0,0,0.0751701 -1777,5713:247,-137,-74,0,0,0.0751416 -1778,5713:246,-136,-74,0,0,0.07512 -1779,5713:245,-135,-74,0,0,0.0750987 -1780,5713:144,-134,-74,0,0,0.075063 -1781,5713:143,-133,-74,0,0,0.0750702 -1782,5713:142,-132,-74,0,0,0.0750915 -1783,5713:141,-131,-74,0,0,0.0750915 -1784,5713:140,-130,-74,0,0,0.0751128 -1785,5712:249,-129,-74,0,0,0.0751416 -1786,5712:248,-128,-74,0,0,0.0751701 -1787,5712:247,-127,-74,0,0,0.0752057 -1788,5712:246,-126,-74,0,0,0.0752772 -1789,5712:245,-125,-74,0,0,0.0753631 -1790,5712:144,-124,-74,0,0,0.0753417 -1791,5712:143,-123,-74,0,0,0.0752772 -1792,5712:142,-122,-74,0,0,0.0752559 -1793,5712:141,-121,-74,0,0,0.0751987 -1794,5712:140,-120,-74,0,0,0.075163 -1795,5711:249,-119,-74,0,0,0.0751771 -1796,5711:248,-118,-74,0,0,0.0751701 -1797,5711:247,-117,-74,0,0,0.0751272 -1798,5711:246,-116,-74,0,0,0.0751272 -1799,5711:245,-115,-74,0,0,0.0751272 -1800,5711:144,-114,-74,0,0,0.0750843 -1801,5711:143,-113,-74,0,0,0.0750488 -1802,5711:142,-112,-74,0,0,0.0750201 -1803,5711:141,-111,-74,0,0,0.075063 -1804,5711:140,-110,-74,0,0,0.0751059 -1805,5710:249,-109,-74,0,0,0.0753058 -1806,5710:248,-108,-74,0,0,0.0752273 -1807,5710:247,-107,-74,0,0,0.0752129 -1808,5710:246,-106,-74,0,0,0.0752559 -1809,5710:245,-105,-74,0,0,0.0756932 -1810,5710:144,-104,-74,0,0,0.0807207 -1811,5708:245,-85,-74,0,0,0.0878867 -1812,5708:144,-84,-74,0,0,0.0860028 -1813,5708:143,-83,-74,0,0,0.083524 -1814,5708:142,-82,-74,0,0,0.0852306 -1815,5708:141,-81,-74,0,0,0.0884319 -1816,5705:249,-59,-74,0,0,0.0751843 -1817,5705:248,-58,-74,0,0,0.0749775 -1818,5705:247,-57,-74,0,0,0.0749631 -1819,5705:246,-56,-74,0,0,0.074949 -1820,5705:245,-55,-74,0,0,0.074949 -1821,5705:144,-54,-74,0,0,0.074949 -1822,5705:143,-53,-74,0,0,0.0749631 -1823,5705:142,-52,-74,0,0,0.0749631 -1824,5705:141,-51,-74,0,0,0.0749775 -1825,5705:140,-50,-74,0,0,0.075006 -1826,5704:249,-49,-74,0,0,0.0750201 -1827,5704:248,-48,-74,0,0,0.0750131 -1828,5704:247,-47,-74,0,0,0.075006 -1829,5704:246,-46,-74,0,0,0.0750273 -1830,5704:245,-45,-74,0,0,0.0750416 -1831,5704:144,-44,-74,0,0,0.0750488 -1832,5704:143,-43,-74,0,0,0.0750558 -1833,5704:142,-42,-74,0,0,0.0750558 -1834,5704:141,-41,-74,0,0,0.0750558 -1835,5704:140,-40,-74,0,0,0.0750558 -1836,5703:249,-39,-74,0,0,0.0750488 -1837,5703:248,-38,-74,0,0,0.0750416 -1838,5703:247,-37,-74,0,0,0.0750345 -1839,5703:246,-36,-74,0,0,0.0750273 -1840,5703:245,-35,-74,0,0,0.0750273 -1841,5703:144,-34,-74,0,0,0.0750201 -1842,5703:143,-33,-74,0,0,0.0750201 -1843,5703:142,-32,-74,0,0,0.0750273 -1844,5703:141,-31,-74,0,0,0.0750273 -1845,5703:140,-30,-74,0,0,0.0750201 -1846,5702:249,-29,-74,0,0,0.0750131 -1847,5702:248,-28,-74,0,0,0.0750131 -1848,5702:247,-27,-74,0,0,0.0750131 -1849,5702:246,-26,-74,0,0,0.0750131 -1850,5702:245,-25,-74,0,0,0.0750131 -1851,5702:144,-24,-74,0,0,0.0749988 -1852,5702:143,-23,-74,0,0,0.0749775 -1853,5702:142,-22,-74,0,0,0.0749846 -1854,5702:141,-21,-74,0,0,0.0749775 -1855,5702:140,-20,-74,0,0,0.0758082 -1856,3717:140,170,-74,0,0,0.0749988 -1857,3717:141,171,-74,0,0,0.0749562 -1858,3717:142,172,-74,0,0,0.0749562 -1859,3717:143,173,-74,0,0,0.0763716 -1860,3717:144,174,-74,0,0,0.0784555 -1861,3717:245,175,-74,0,0,0.0797202 -1862,3717:246,176,-74,0,0,0.0760172 -1863,3717:247,177,-74,0,0,0.0748777 -1864,3717:248,178,-74,0,0,0.0748849 -1865,3717:249,179,-74,0,0,0.0749346 -1866,3718:140,180,-74,0,0,0.0749703 -1867,5718:130,-180,-73,0,0,0.0749703 -1868,5717:239,-179,-73,0,0,0.0749988 -1869,5717:238,-178,-73,0,0,0.0750131 -1870,5717:237,-177,-73,0,0,0.0750201 -1871,5717:236,-176,-73,0,0,0.0750345 -1872,5717:235,-175,-73,0,0,0.0750345 -1873,5717:134,-174,-73,0,0,0.0750416 -1874,5717:133,-173,-73,0,0,0.075063 -1875,5717:132,-172,-73,0,0,0.0750558 -1876,5717:131,-171,-73,0,0,0.0750416 -1877,5717:130,-170,-73,0,0,0.0750345 -1878,5716:239,-169,-73,0,0,0.0750416 -1879,5716:238,-168,-73,0,0,0.0750416 -1880,5716:237,-167,-73,0,0,0.0750416 -1881,5716:236,-166,-73,0,0,0.0750488 -1882,5716:235,-165,-73,0,0,0.075063 -1883,5716:134,-164,-73,0,0,0.0750773 -1884,5716:133,-163,-73,0,0,0.0750843 -1885,5716:132,-162,-73,0,0,0.0750915 -1886,5716:131,-161,-73,0,0,0.0750987 -1887,5716:130,-160,-73,0,0,0.0751059 -1888,5715:239,-159,-73,0,0,0.0751128 -1889,5715:238,-158,-73,0,0,0.0751272 -1890,5715:237,-157,-73,0,0,0.0751272 -1891,5715:236,-156,-73,0,0,0.0751272 -1892,5715:235,-155,-73,0,0,0.0751272 -1893,5715:134,-154,-73,0,0,0.07512 -1894,5715:133,-153,-73,0,0,0.07512 -1895,5715:132,-152,-73,0,0,0.0751272 -1896,5715:131,-151,-73,0,0,0.0751416 -1897,5715:130,-150,-73,0,0,0.075163 -1898,5714:239,-149,-73,0,0,0.0751771 -1899,5714:238,-148,-73,0,0,0.0751843 -1900,5714:237,-147,-73,0,0,0.0751915 -1901,5714:236,-146,-73,0,0,0.0752057 -1902,5714:235,-145,-73,0,0,0.0752057 -1903,5714:134,-144,-73,0,0,0.0751987 -1904,5714:133,-143,-73,0,0,0.0751915 -1905,5714:132,-142,-73,0,0,0.0751915 -1906,5714:131,-141,-73,0,0,0.0751701 -1907,5714:130,-140,-73,0,0,0.0751558 -1908,5713:239,-139,-73,0,0,0.0751987 -1909,5713:238,-138,-73,0,0,0.0752844 -1910,5713:237,-137,-73,0,0,0.07527 -1911,5713:236,-136,-73,0,0,0.0752273 -1912,5713:235,-135,-73,0,0,0.0751558 -1913,5713:134,-134,-73,0,0,0.075063 -1914,5713:133,-133,-73,0,0,0.0750416 -1915,5713:132,-132,-73,0,0,0.0750773 -1916,5713:131,-131,-73,0,0,0.07512 -1917,5713:130,-130,-73,0,0,0.0751344 -1918,5712:239,-129,-73,0,0,0.0751416 -1919,5712:238,-128,-73,0,0,0.0751486 -1920,5712:237,-127,-73,0,0,0.0751701 -1921,5712:236,-126,-73,0,0,0.0752273 -1922,5712:235,-125,-73,0,0,0.0752343 -1923,5712:134,-124,-73,0,0,0.0751771 -1924,5712:133,-123,-73,0,0,0.0751701 -1925,5712:132,-122,-73,0,0,0.0751558 -1926,5712:131,-121,-73,0,0,0.0751486 -1927,5712:130,-120,-73,0,0,0.0751416 -1928,5711:239,-119,-73,0,0,0.0751344 -1929,5711:238,-118,-73,0,0,0.0751272 -1930,5711:237,-117,-73,0,0,0.0751128 -1931,5711:236,-116,-73,0,0,0.0750987 -1932,5711:235,-115,-73,0,0,0.0750915 -1933,5711:134,-114,-73,0,0,0.0750773 -1934,5711:133,-113,-73,0,0,0.0750702 -1935,5711:132,-112,-73,0,0,0.0750558 -1936,5711:131,-111,-73,0,0,0.075063 -1937,5711:130,-110,-73,0,0,0.0751059 -1938,5710:239,-109,-73,0,0,0.0751416 -1939,5710:238,-108,-73,0,0,0.0751701 -1940,5710:237,-107,-73,0,0,0.0752201 -1941,5710:236,-106,-73,0,0,0.0755207 -4084,5615:124,-154,-62,0,0,0.07512 -1942,5710:235,-105,-73,0,0,0.0795244 -1943,5710:134,-104,-73,0,0,0.0808353 -1944,5708:238,-88,-73,0,0,0.0757435 -1945,5708:237,-87,-73,0,0,0.0761689 -1946,5708:236,-86,-73,0,0,0.0804088 -1947,5708:235,-85,-73,0,0,0.0771507 -1948,5708:134,-84,-73,0,0,0.0756645 -1949,5708:133,-83,-73,0,0,0.0751344 -1950,5708:132,-82,-73,0,0,0.077224 -1951,5708:131,-81,-73,0,0,0.0777012 -1952,5708:130,-80,-73,0,0,0.0796298 -1953,5707:239,-79,-73,0,0,0.0822742 -1954,5707:235,-75,-73,0,0,0.0795393 -1955,5707:134,-74,-73,0,0,0.0829675 -1956,5707:133,-73,-73,0,0,0.0876811 -1957,5706:130,-60,-73,0,0,0.075313 -1958,5705:239,-59,-73,0,0,0.07512 -1959,5705:238,-58,-73,0,0,0.075006 -1960,5705:237,-57,-73,0,0,0.0749703 -1961,5705:236,-56,-73,0,0,0.0749631 -1962,5705:235,-55,-73,0,0,0.0749562 -1963,5705:134,-54,-73,0,0,0.0749562 -1964,5705:133,-53,-73,0,0,0.0749916 -1965,5705:132,-52,-73,0,0,0.0749988 -1966,5705:131,-51,-73,0,0,0.075006 -1967,5705:130,-50,-73,0,0,0.0750345 -1968,5704:239,-49,-73,0,0,0.0750201 -1969,5704:238,-48,-73,0,0,0.0750131 -1970,5704:237,-47,-73,0,0,0.0750345 -1971,5704:236,-46,-73,0,0,0.0750488 -1972,5704:235,-45,-73,0,0,0.0750488 -1973,5704:134,-44,-73,0,0,0.0750558 -1974,5704:133,-43,-73,0,0,0.0750558 -1975,5704:132,-42,-73,0,0,0.0750558 -1976,5704:131,-41,-73,0,0,0.0750488 -1977,5704:130,-40,-73,0,0,0.0750416 -1978,5703:239,-39,-73,0,0,0.0750345 -1979,5703:238,-38,-73,0,0,0.0750273 -1980,5703:237,-37,-73,0,0,0.0750201 -1981,5703:236,-36,-73,0,0,0.0750131 -1982,5703:235,-35,-73,0,0,0.0750131 -1983,5703:134,-34,-73,0,0,0.0750131 -1984,5703:133,-33,-73,0,0,0.075006 -1985,5703:132,-32,-73,0,0,0.0750131 -1986,5703:131,-31,-73,0,0,0.0750131 -1987,5703:130,-30,-73,0,0,0.075006 -1988,5702:239,-29,-73,0,0,0.075006 -1989,5702:238,-28,-73,0,0,0.0749988 -1990,5702:237,-27,-73,0,0,0.0749916 -1991,5702:236,-26,-73,0,0,0.0749988 -1992,5702:235,-25,-73,0,0,0.075006 -1993,5702:134,-24,-73,0,0,0.075006 -1994,5702:133,-23,-73,0,0,0.0750131 -1995,5702:132,-22,-73,0,0,0.0750131 -1996,5702:131,-21,-73,0,0,0.0750131 -1997,5702:130,-20,-73,0,0,0.0750131 -1998,5701:239,-19,-73,0,0,0.0750843 -1999,5701:238,-18,-73,0,0,0.0751344 -2000,5701:237,-17,-73,0,0,0.0752057 -2001,3717:131,171,-73,0,0,0.0751558 -2002,3717:132,172,-73,0,0,0.0750416 -2003,3717:133,173,-73,0,0,0.0750843 -2004,3717:134,174,-73,0,0,0.0775172 -2005,3717:235,175,-73,0,0,0.0752916 -2006,3717:236,176,-73,0,0,0.0747284 -2007,3717:237,177,-73,0,0,0.0748208 -2008,3717:238,178,-73,0,0,0.0748849 -2009,3717:239,179,-73,0,0,0.0749346 -2010,3718:130,180,-73,0,0,0.0749703 -2011,5718:120,-180,-72,0,0,0.0749631 -2012,5717:229,-179,-72,0,0,0.0749916 -2013,5717:228,-178,-72,0,0,0.075006 -2014,5717:227,-177,-72,0,0,0.0750201 -2015,5717:226,-176,-72,0,0,0.0750345 -2016,5717:225,-175,-72,0,0,0.075063 -2017,5717:124,-174,-72,0,0,0.0750702 -2018,5717:123,-173,-72,0,0,0.0750773 -2019,5717:122,-172,-72,0,0,0.075063 -2020,5717:121,-171,-72,0,0,0.0750416 -2021,5717:120,-170,-72,0,0,0.0750416 -2022,5716:229,-169,-72,0,0,0.0750416 -2023,5716:228,-168,-72,0,0,0.0750345 -2024,5716:227,-167,-72,0,0,0.0750345 -2025,5716:226,-166,-72,0,0,0.0750416 -2026,5716:225,-165,-72,0,0,0.0750488 -2027,5716:124,-164,-72,0,0,0.075063 -2028,5716:123,-163,-72,0,0,0.0750702 -2029,5716:122,-162,-72,0,0,0.0750773 -2030,5716:121,-161,-72,0,0,0.0750773 -2031,5716:120,-160,-72,0,0,0.0750843 -2032,5715:229,-159,-72,0,0,0.0750915 -2033,5715:228,-158,-72,0,0,0.0750987 -2034,5715:227,-157,-72,0,0,0.0751128 -2035,5715:226,-156,-72,0,0,0.0751272 -2036,5715:225,-155,-72,0,0,0.07512 -2037,5715:124,-154,-72,0,0,0.0751272 -2038,5715:123,-153,-72,0,0,0.07512 -2039,5715:122,-152,-72,0,0,0.0751272 -2040,5715:121,-151,-72,0,0,0.0751416 -2041,5715:120,-150,-72,0,0,0.0751558 -2042,5714:229,-149,-72,0,0,0.0751701 -2043,5714:228,-148,-72,0,0,0.0751771 -2044,5714:227,-147,-72,0,0,0.0751843 -2045,5714:226,-146,-72,0,0,0.0751987 -2046,5714:225,-145,-72,0,0,0.0751987 -2047,5714:124,-144,-72,0,0,0.0752129 -2048,5714:123,-143,-72,0,0,0.0752201 -2049,5714:122,-142,-72,0,0,0.0752057 -2050,5714:121,-141,-72,0,0,0.0751771 -2051,5714:120,-140,-72,0,0,0.0751344 -2052,5713:229,-139,-72,0,0,0.07512 -2053,5713:228,-138,-72,0,0,0.0751128 -2054,5713:227,-137,-72,0,0,0.0751344 -2055,5713:226,-136,-72,0,0,0.0752772 -2056,5713:225,-135,-72,0,0,0.0755135 -2057,5713:124,-134,-72,0,0,0.0751558 -2058,5713:123,-133,-72,0,0,0.0750416 -2059,5713:122,-132,-72,0,0,0.0750702 -2060,5713:121,-131,-72,0,0,0.0751059 -2061,5713:120,-130,-72,0,0,0.0751344 -2062,5712:229,-129,-72,0,0,0.0751558 -2063,5712:228,-128,-72,0,0,0.0751558 -2064,5712:227,-127,-72,0,0,0.0751558 -2065,5712:226,-126,-72,0,0,0.0751558 -2066,5712:225,-125,-72,0,0,0.0751558 -2067,5712:124,-124,-72,0,0,0.075163 -2068,5712:123,-123,-72,0,0,0.075163 -2069,5712:122,-122,-72,0,0,0.0751558 -2070,5712:121,-121,-72,0,0,0.0751486 -2071,5712:120,-120,-72,0,0,0.0751344 -2072,5711:229,-119,-72,0,0,0.07512 -2073,5711:228,-118,-72,0,0,0.0751128 -2074,5711:227,-117,-72,0,0,0.0751059 -2075,5711:226,-116,-72,0,0,0.0750987 -2076,5711:225,-115,-72,0,0,0.0750915 -2077,5711:124,-114,-72,0,0,0.0750843 -2078,5711:123,-113,-72,0,0,0.0750773 -2079,5711:122,-112,-72,0,0,0.0750773 -2080,5711:121,-111,-72,0,0,0.0750843 -2081,5711:120,-110,-72,0,0,0.0750987 -2082,5710:229,-109,-72,0,0,0.0751128 -2083,5710:228,-108,-72,0,0,0.0751272 -2084,5710:227,-107,-72,0,0,0.0751344 -2085,5710:226,-106,-72,0,0,0.0752343 -2086,5710:225,-105,-72,0,0,0.0770849 -2087,5710:124,-104,-72,0,0,0.0783218 -2088,5710:123,-103,-72,0,0,0.0787159 -2089,5709:225,-95,-72,0,0,0.0756428 -2090,5709:124,-94,-72,0,0,0.0752487 -2091,5709:123,-93,-72,0,0,0.0752201 -2092,5709:122,-92,-72,0,0,0.0752343 -2093,5709:121,-91,-72,0,0,0.0752631 -2094,5709:120,-90,-72,0,0,0.07527 -2095,5708:229,-89,-72,0,0,0.0752559 -2096,5708:228,-88,-72,0,0,0.0752559 -2097,5708:227,-87,-72,0,0,0.0752631 -2098,5708:226,-86,-72,0,0,0.0751771 -2099,5708:225,-85,-72,0,0,0.0750345 -2100,5708:124,-84,-72,0,0,0.0760822 -2101,5708:123,-83,-72,0,0,0.0769681 -2102,5708:122,-82,-72,0,0,0.0764732 -2103,5708:121,-81,-72,0,0,0.0775613 -2104,5708:120,-80,-72,0,0,0.0770775 -2105,5707:229,-79,-72,0,0,0.0770775 -2106,5707:228,-78,-72,0,0,0.0770117 -2107,5707:227,-77,-72,0,0,0.0805912 -2108,5707:226,-76,-72,0,0,0.0820961 -2109,5707:225,-75,-72,0,0,0.0824297 -2110,5707:124,-74,-72,0,0,0.0878126 -2111,5706:120,-60,-72,0,0,0.0753489 -2112,5705:229,-59,-72,0,0,0.0751059 -2113,5705:228,-58,-72,0,0,0.0749916 -2114,5705:227,-57,-72,0,0,0.0749775 -2115,5705:226,-56,-72,0,0,0.0749703 -2116,5705:225,-55,-72,0,0,0.0749775 -2117,5705:124,-54,-72,0,0,0.075006 -2118,5705:123,-53,-72,0,0,0.0750345 -2119,5705:122,-52,-72,0,0,0.0750345 -2120,5705:121,-51,-72,0,0,0.0750345 -2121,5705:120,-50,-72,0,0,0.0750345 -2122,5704:229,-49,-72,0,0,0.0750416 -2123,5704:228,-48,-72,0,0,0.0750488 -2124,5704:227,-47,-72,0,0,0.0750488 -2125,5704:226,-46,-72,0,0,0.0750488 -2126,5704:225,-45,-72,0,0,0.0750558 -2127,5704:124,-44,-72,0,0,0.0750488 -2128,5704:123,-43,-72,0,0,0.0750488 -2129,5704:122,-42,-72,0,0,0.0750416 -2130,5704:121,-41,-72,0,0,0.0750345 -2131,5704:120,-40,-72,0,0,0.0750201 -2132,5703:229,-39,-72,0,0,0.0750131 -2133,5703:228,-38,-72,0,0,0.0750131 -2134,5703:227,-37,-72,0,0,0.0750131 -2135,5703:226,-36,-72,0,0,0.0750131 -2136,5703:225,-35,-72,0,0,0.0750131 -2137,5703:124,-34,-72,0,0,0.0750131 -2138,5703:123,-33,-72,0,0,0.075006 -2139,5703:122,-32,-72,0,0,0.075006 -2140,5703:121,-31,-72,0,0,0.075006 -2141,5703:120,-30,-72,0,0,0.0750131 -2142,5702:229,-29,-72,0,0,0.0750131 -2143,5702:228,-28,-72,0,0,0.075006 -2144,5702:227,-27,-72,0,0,0.0749988 -2145,5702:226,-26,-72,0,0,0.0749916 -2146,5702:225,-25,-72,0,0,0.0749846 -2147,5702:124,-24,-72,0,0,0.0749846 -2148,5702:123,-23,-72,0,0,0.0749916 -2149,5702:122,-22,-72,0,0,0.0749988 -2150,5702:121,-21,-72,0,0,0.075006 -2151,5702:120,-20,-72,0,0,0.075006 -2152,5701:229,-19,-72,0,0,0.075006 -2153,5701:228,-18,-72,0,0,0.075006 -2154,5701:227,-17,-72,0,0,0.0750131 -2155,5701:226,-16,-72,0,0,0.0750987 -2156,5701:225,-15,-72,0,0,0.0749133 -2157,3717:121,171,-72,0,0,0.075163 -2158,3717:122,172,-72,0,0,0.075006 -2159,3717:123,173,-72,0,0,0.0753344 -2160,3717:124,174,-72,0,0,0.0755567 -2161,3717:225,175,-72,0,0,0.0748636 -2162,3717:226,176,-72,0,0,0.0748705 -2163,3717:227,177,-72,0,0,0.0748849 -2164,3717:228,178,-72,0,0,0.0749062 -2165,3717:229,179,-72,0,0,0.0749275 -2166,3718:120,180,-72,0,0,0.0749631 -2167,5718:110,-180,-71,0,0,0.0749703 -2168,5717:219,-179,-71,0,0,0.0749916 -2169,5717:218,-178,-71,0,0,0.0750131 -2170,5717:217,-177,-71,0,0,0.0750273 -2171,5717:216,-176,-71,0,0,0.0750558 -2172,5717:215,-175,-71,0,0,0.0750843 -2173,5717:114,-174,-71,0,0,0.0750915 -2174,5717:113,-173,-71,0,0,0.0750843 -2175,5717:112,-172,-71,0,0,0.075063 -2176,5717:111,-171,-71,0,0,0.0750558 -2177,5717:110,-170,-71,0,0,0.0750345 -2178,5716:219,-169,-71,0,0,0.0750273 -2179,5716:218,-168,-71,0,0,0.0750201 -2180,5716:217,-167,-71,0,0,0.0750201 -2181,5716:216,-166,-71,0,0,0.0750201 -2182,5716:215,-165,-71,0,0,0.0750273 -2183,5716:114,-164,-71,0,0,0.0750345 -2184,5716:113,-163,-71,0,0,0.0750416 -2185,5716:112,-162,-71,0,0,0.0750488 -2186,5716:111,-161,-71,0,0,0.0750558 -2187,5716:110,-160,-71,0,0,0.075063 -2188,5715:219,-159,-71,0,0,0.075063 -2189,5715:218,-158,-71,0,0,0.075063 -2190,5715:217,-157,-71,0,0,0.0750773 -2191,5715:216,-156,-71,0,0,0.0750915 -2192,5715:215,-155,-71,0,0,0.0751128 -2193,5715:114,-154,-71,0,0,0.0751344 -2194,5715:113,-153,-71,0,0,0.0751344 -2195,5715:112,-152,-71,0,0,0.0751416 -2196,5715:111,-151,-71,0,0,0.0751558 -2197,5715:110,-150,-71,0,0,0.075163 -2198,5714:219,-149,-71,0,0,0.0751701 -2199,5714:218,-148,-71,0,0,0.0751915 -2200,5714:217,-147,-71,0,0,0.0751987 -2201,5714:216,-146,-71,0,0,0.0751843 -2202,5714:215,-145,-71,0,0,0.0751915 -2203,5714:114,-144,-71,0,0,0.0752129 -2204,5714:113,-143,-71,0,0,0.0752129 -2205,5714:112,-142,-71,0,0,0.0752129 -2206,5714:111,-141,-71,0,0,0.0751843 -2207,5714:110,-140,-71,0,0,0.0751344 -2208,5713:219,-139,-71,0,0,0.07512 -2209,5713:218,-138,-71,0,0,0.07512 -2210,5713:217,-137,-71,0,0,0.0753058 -2211,5713:216,-136,-71,0,0,0.0759379 -2212,5713:215,-135,-71,0,0,0.076234 -2213,5713:114,-134,-71,0,0,0.0762848 -2214,5713:113,-133,-71,0,0,0.0759956 -2215,5713:112,-132,-71,0,0,0.075722 -2216,5713:111,-131,-71,0,0,0.0753417 -2217,5713:110,-130,-71,0,0,0.07512 -2218,5712:219,-129,-71,0,0,0.0751486 -2219,5712:218,-128,-71,0,0,0.075163 -2220,5712:217,-127,-71,0,0,0.0751701 -2221,5712:216,-126,-71,0,0,0.0751701 -2222,5712:215,-125,-71,0,0,0.0751771 -2223,5712:114,-124,-71,0,0,0.0751701 -2224,5712:113,-123,-71,0,0,0.0751701 -2225,5712:112,-122,-71,0,0,0.0751701 -2226,5712:111,-121,-71,0,0,0.075163 -2227,5712:110,-120,-71,0,0,0.0751416 -2228,5711:219,-119,-71,0,0,0.0751272 -2229,5711:218,-118,-71,0,0,0.07512 -2230,5711:217,-117,-71,0,0,0.0751059 -2231,5711:216,-116,-71,0,0,0.0750987 -2232,5711:215,-115,-71,0,0,0.0750987 -2233,5711:114,-114,-71,0,0,0.0750987 -2234,5711:113,-113,-71,0,0,0.0750987 -2235,5711:112,-112,-71,0,0,0.0750987 -2236,5711:111,-111,-71,0,0,0.0751059 -2237,5711:110,-110,-71,0,0,0.0751059 -2238,5710:219,-109,-71,0,0,0.0751128 -2239,5710:218,-108,-71,0,0,0.0751059 -2240,5710:217,-107,-71,0,0,0.07512 -2241,5710:216,-106,-71,0,0,0.0751344 -2242,5710:215,-105,-71,0,0,0.0751771 -2243,5710:114,-104,-71,0,0,0.0751987 -2244,5710:113,-103,-71,0,0,0.0752631 -2245,5710:112,-102,-71,0,0,0.0754849 -2246,5710:111,-101,-71,0,0,0.0769462 -2247,5710:110,-100,-71,0,0,0.0763427 -2248,5709:218,-98,-71,0,0,0.0751987 -2249,5709:217,-97,-71,0,0,0.0753058 -2250,5709:216,-96,-71,0,0,0.0754634 -2251,5709:215,-95,-71,0,0,0.0752559 -2252,5709:114,-94,-71,0,0,0.0751486 -2253,5709:113,-93,-71,0,0,0.0751486 -2254,5709:112,-92,-71,0,0,0.0751701 -2255,5709:111,-91,-71,0,0,0.0751558 -2256,5709:110,-90,-71,0,0,0.0750773 -2257,5708:219,-89,-71,0,0,0.0750416 -2258,5708:218,-88,-71,0,0,0.0750345 -2259,5708:217,-87,-71,0,0,0.0749988 -2260,5708:216,-86,-71,0,0,0.074949 -2261,5708:215,-85,-71,0,0,0.0749205 -2262,5708:114,-84,-71,0,0,0.0749275 -2263,5708:113,-83,-71,0,0,0.0754133 -2264,5708:112,-82,-71,0,0,0.0771215 -2265,5708:111,-81,-71,0,0,0.0774952 -2266,5708:110,-80,-71,0,0,0.0775981 -2267,5707:219,-79,-71,0,0,0.0783886 -2268,5707:218,-78,-71,0,0,0.0788351 -2269,5707:217,-77,-71,0,0,0.079532 -2270,5707:216,-76,-71,0,0,0.0831709 -2271,5706:110,-60,-71,0,0,0.0753631 -2272,5705:219,-59,-71,0,0,0.0751059 -2273,5705:218,-58,-71,0,0,0.0750273 -2274,5705:217,-57,-71,0,0,0.0750201 -2275,5705:216,-56,-71,0,0,0.0749916 -2276,5705:215,-55,-71,0,0,0.0750131 -2277,5705:114,-54,-71,0,0,0.0750345 -2278,5705:113,-53,-71,0,0,0.0750345 -2279,5705:112,-52,-71,0,0,0.0750416 -2280,5705:111,-51,-71,0,0,0.0750416 -2281,5705:110,-50,-71,0,0,0.0750488 -2282,5704:219,-49,-71,0,0,0.0750488 -2283,5704:218,-48,-71,0,0,0.0750488 -2284,5704:217,-47,-71,0,0,0.0750558 -2285,5704:216,-46,-71,0,0,0.0750488 -2286,5704:215,-45,-71,0,0,0.0750416 -2287,5704:114,-44,-71,0,0,0.0750345 -2288,5704:113,-43,-71,0,0,0.0750273 -2289,5704:112,-42,-71,0,0,0.0750201 -2290,5704:111,-41,-71,0,0,0.0750131 -2291,5704:110,-40,-71,0,0,0.075006 -2292,5703:219,-39,-71,0,0,0.0749988 -2293,5703:218,-38,-71,0,0,0.0749916 -2294,5703:217,-37,-71,0,0,0.0749916 -2295,5703:216,-36,-71,0,0,0.0749916 -2296,5703:215,-35,-71,0,0,0.0749916 -2297,5703:114,-34,-71,0,0,0.0749916 -2298,5703:113,-33,-71,0,0,0.0749988 -2299,5703:112,-32,-71,0,0,0.0749988 -2300,5703:111,-31,-71,0,0,0.0749988 -2301,5703:110,-30,-71,0,0,0.0749988 -2302,5702:219,-29,-71,0,0,0.0750131 -2303,5702:218,-28,-71,0,0,0.0750201 -2304,5702:217,-27,-71,0,0,0.0750201 -2305,5702:216,-26,-71,0,0,0.075006 -2306,5702:215,-25,-71,0,0,0.0749846 -2307,5702:114,-24,-71,0,0,0.0749775 -2308,5702:113,-23,-71,0,0,0.0749775 -2309,5702:112,-22,-71,0,0,0.0749846 -2310,5702:111,-21,-71,0,0,0.0749916 -2311,5702:110,-20,-71,0,0,0.075006 -2312,5701:219,-19,-71,0,0,0.075006 -2313,5701:218,-18,-71,0,0,0.075006 -2314,5701:217,-17,-71,0,0,0.0750131 -2315,5701:216,-16,-71,0,0,0.0750131 -2316,5701:215,-15,-71,0,0,0.0750131 -2317,5701:114,-14,-71,0,0,0.0750558 -2318,5701:113,-13,-71,0,0,0.0786041 -2319,3717:112,172,-71,0,0,0.0750201 -2320,3717:113,173,-71,0,0,0.0750702 -2321,3717:114,174,-71,0,0,0.0749703 -2322,3717:215,175,-71,0,0,0.0749703 -2323,3717:216,176,-71,0,0,0.0749562 -2324,3717:217,177,-71,0,0,0.074949 -2325,3717:218,178,-71,0,0,0.074949 -2326,3717:219,179,-71,0,0,0.0749631 -2327,3718:110,180,-71,0,0,0.0749703 -2328,5718:100,-180,-70,0,0,0.075006 -2329,5717:209,-179,-70,0,0,0.0750273 -2330,5717:208,-178,-70,0,0,0.0750416 -2331,5717:207,-177,-70,0,0,0.075063 -2332,5717:206,-176,-70,0,0,0.0750987 -2333,5717:205,-175,-70,0,0,0.0751128 -2334,5717:104,-174,-70,0,0,0.0750915 -2335,5717:103,-173,-70,0,0,0.0750773 -2336,5717:102,-172,-70,0,0,0.0750702 -2337,5717:101,-171,-70,0,0,0.0750416 -2338,5717:100,-170,-70,0,0,0.0750273 -2339,5716:209,-169,-70,0,0,0.0750201 -2340,5716:208,-168,-70,0,0,0.0750131 -2341,5716:207,-167,-70,0,0,0.0750131 -2342,5716:206,-166,-70,0,0,0.0749988 -2343,5716:205,-165,-70,0,0,0.075006 -2344,5716:104,-164,-70,0,0,0.0750131 -2345,5716:103,-163,-70,0,0,0.0750131 -2346,5716:102,-162,-70,0,0,0.0750131 -2347,5716:101,-161,-70,0,0,0.0750201 -2348,5716:100,-160,-70,0,0,0.0750345 -2349,5715:209,-159,-70,0,0,0.0750488 -2350,5715:208,-158,-70,0,0,0.0750558 -2351,5715:207,-157,-70,0,0,0.0750702 -2352,5715:206,-156,-70,0,0,0.0750843 -2353,5715:205,-155,-70,0,0,0.0751059 -2354,5715:104,-154,-70,0,0,0.07512 -2355,5715:103,-153,-70,0,0,0.07512 -2356,5715:102,-152,-70,0,0,0.0751416 -2357,5715:101,-151,-70,0,0,0.075163 -2358,5715:100,-150,-70,0,0,0.0751701 -2359,5714:209,-149,-70,0,0,0.0751771 -2360,5714:208,-148,-70,0,0,0.0751843 -2361,5714:207,-147,-70,0,0,0.0751843 -2362,5714:206,-146,-70,0,0,0.0751843 -2363,5714:205,-145,-70,0,0,0.0751843 -2364,5714:104,-144,-70,0,0,0.0751915 -2365,5714:103,-143,-70,0,0,0.0752129 -2366,5714:102,-142,-70,0,0,0.0752057 -2367,5714:101,-141,-70,0,0,0.0751701 -2368,5714:100,-140,-70,0,0,0.0751272 -2369,5713:209,-139,-70,0,0,0.0751128 -2370,5713:208,-138,-70,0,0,0.0751128 -2371,5713:207,-137,-70,0,0,0.075163 -2372,5713:206,-136,-70,0,0,0.0754492 -2373,5713:205,-135,-70,0,0,0.0759234 -2374,5713:104,-134,-70,0,0,0.0755424 -2375,5713:103,-133,-70,0,0,0.0758443 -2376,5713:102,-132,-70,0,0,0.0760749 -2377,5713:101,-131,-70,0,0,0.0757795 -2378,5713:100,-130,-70,0,0,0.0754562 -2379,5712:209,-129,-70,0,0,0.0752916 -2380,5712:208,-128,-70,0,0,0.0751416 -2381,5712:207,-127,-70,0,0,0.0751558 -2382,5712:206,-126,-70,0,0,0.075163 -2383,5712:205,-125,-70,0,0,0.0751701 -2384,5712:104,-124,-70,0,0,0.0751701 -2385,5712:103,-123,-70,0,0,0.0751701 -2386,5712:102,-122,-70,0,0,0.0751701 -2387,5712:101,-121,-70,0,0,0.075163 -2388,5712:100,-120,-70,0,0,0.0751486 -2389,5711:209,-119,-70,0,0,0.0751344 -2390,5711:208,-118,-70,0,0,0.07512 -2391,5711:207,-117,-70,0,0,0.0751128 -2392,5711:206,-116,-70,0,0,0.0751059 -2393,5711:205,-115,-70,0,0,0.0750987 -2394,5711:104,-114,-70,0,0,0.0750987 -2395,5711:103,-113,-70,0,0,0.0750987 -2396,5711:102,-112,-70,0,0,0.0750987 -2397,5711:101,-111,-70,0,0,0.0750987 -2398,5711:100,-110,-70,0,0,0.0750987 -2399,5710:209,-109,-70,0,0,0.0751059 -2400,5710:208,-108,-70,0,0,0.0751128 -2401,5710:207,-107,-70,0,0,0.0751128 -2402,5710:206,-106,-70,0,0,0.0751128 -2403,5710:205,-105,-70,0,0,0.07512 -2404,5710:104,-104,-70,0,0,0.0751486 -2405,5710:103,-103,-70,0,0,0.0751344 -2406,5710:102,-102,-70,0,0,0.0751771 -2407,5710:101,-101,-70,0,0,0.0752415 -2408,5710:100,-100,-70,0,0,0.07527 -2409,5709:209,-99,-70,0,0,0.0752343 -2410,5709:208,-98,-70,0,0,0.0752129 -2411,5709:207,-97,-70,0,0,0.0751843 -2412,5709:206,-96,-70,0,0,0.0751771 -2413,5709:205,-95,-70,0,0,0.0751486 -2414,5709:104,-94,-70,0,0,0.0751344 -2415,5709:103,-93,-70,0,0,0.0751272 -2416,5709:102,-92,-70,0,0,0.0751128 -2417,5709:101,-91,-70,0,0,0.075063 -2418,5709:100,-90,-70,0,0,0.0750273 -2419,5708:209,-89,-70,0,0,0.0749846 -2420,5708:208,-88,-70,0,0,0.0749775 -2421,5708:207,-87,-70,0,0,0.0749703 -2422,5708:206,-86,-70,0,0,0.0749418 -2423,5708:205,-85,-70,0,0,0.0749346 -2424,5708:104,-84,-70,0,0,0.0749346 -2425,5708:103,-83,-70,0,0,0.0749418 -2426,5708:102,-82,-70,0,0,0.0749562 -2427,5708:101,-81,-70,0,0,0.0750131 -2428,5708:100,-80,-70,0,0,0.0750702 -2429,5707:209,-79,-70,0,0,0.0761907 -2430,5707:208,-78,-70,0,0,0.0779075 -2431,5707:207,-77,-70,0,0,0.0796974 -2432,5707:206,-76,-70,0,0,0.0819491 -2433,5707:205,-75,-70,0,0,0.0833749 -2434,5707:104,-74,-70,0,0,0.0866999 -2435,5706:100,-60,-70,0,0,0.0752772 -2436,5705:209,-59,-70,0,0,0.0751272 -2437,5705:208,-58,-70,0,0,0.0750345 -2438,5705:207,-57,-70,0,0,0.0750416 -2439,5705:206,-56,-70,0,0,0.0750273 -2440,5705:205,-55,-70,0,0,0.0750416 -2441,5705:104,-54,-70,0,0,0.0750416 -2442,5705:103,-53,-70,0,0,0.0750488 -2443,5705:102,-52,-70,0,0,0.0750488 -2444,5705:101,-51,-70,0,0,0.0750488 -2445,5705:100,-50,-70,0,0,0.0750416 -2446,5704:209,-49,-70,0,0,0.0750488 -2447,5704:208,-48,-70,0,0,0.0750488 -2448,5704:207,-47,-70,0,0,0.0750416 -2449,5704:206,-46,-70,0,0,0.0750345 -2450,5704:205,-45,-70,0,0,0.0750273 -2451,5704:104,-44,-70,0,0,0.0750131 -2452,5704:103,-43,-70,0,0,0.0750131 -2453,5704:102,-42,-70,0,0,0.0749988 -2454,5704:101,-41,-70,0,0,0.0749846 -2455,5704:100,-40,-70,0,0,0.0749703 -2456,5703:209,-39,-70,0,0,0.0749703 -2457,5703:208,-38,-70,0,0,0.0749703 -2458,5703:207,-37,-70,0,0,0.0749703 -2459,5703:206,-36,-70,0,0,0.0749775 -2460,5703:205,-35,-70,0,0,0.0749775 -2461,5703:104,-34,-70,0,0,0.0749846 -2462,5703:103,-33,-70,0,0,0.0749916 -2463,5703:102,-32,-70,0,0,0.0749916 -2464,5703:101,-31,-70,0,0,0.0749988 -2465,5703:100,-30,-70,0,0,0.0749988 -2466,5702:209,-29,-70,0,0,0.075006 -2467,5702:208,-28,-70,0,0,0.075006 -2468,5702:207,-27,-70,0,0,0.0750131 -2469,5702:206,-26,-70,0,0,0.0750131 -2470,5702:205,-25,-70,0,0,0.0749775 -2471,5702:104,-24,-70,0,0,0.0749775 -2472,5702:103,-23,-70,0,0,0.0749775 -2473,5702:102,-22,-70,0,0,0.0749775 -2474,5702:101,-21,-70,0,0,0.0749775 -2475,5702:100,-20,-70,0,0,0.0749846 -2476,5701:209,-19,-70,0,0,0.0749916 -2477,5701:208,-18,-70,0,0,0.0749988 -2478,5701:207,-17,-70,0,0,0.075006 -2479,5701:206,-16,-70,0,0,0.075006 -2480,5701:205,-15,-70,0,0,0.0750273 -2481,5701:104,-14,-70,0,0,0.0750843 -2482,5701:103,-13,-70,0,0,0.07512 -2483,3717:100,170,-70,0,0,0.0751416 -2484,3717:101,171,-70,0,0,0.0750131 -2485,3717:102,172,-70,0,0,0.075006 -2486,3717:103,173,-70,0,0,0.0750131 -2487,3717:104,174,-70,0,0,0.075006 -2488,3717:205,175,-70,0,0,0.0749988 -2489,3717:206,176,-70,0,0,0.0749916 -2490,3717:207,177,-70,0,0,0.0749916 -2491,3717:208,178,-70,0,0,0.0749846 -2492,3717:209,179,-70,0,0,0.0749916 -2493,3718:100,180,-70,0,0,0.075006 -2494,5618:390,-180,-69,0,0,0.0750416 -2495,5617:499,-179,-69,0,0,0.0750488 -2496,5617:498,-178,-69,0,0,0.0750702 -2497,5617:497,-177,-69,0,0,0.0750987 -2498,5617:496,-176,-69,0,0,0.0751059 -2499,5617:495,-175,-69,0,0,0.0750915 -2500,5617:394,-174,-69,0,0,0.0750843 -2501,5617:393,-173,-69,0,0,0.0750773 -2502,5617:392,-172,-69,0,0,0.0750558 -2503,5617:391,-171,-69,0,0,0.0750416 -2504,5617:390,-170,-69,0,0,0.0750273 -2505,5616:499,-169,-69,0,0,0.0750131 -2506,5616:498,-168,-69,0,0,0.075006 -2507,5616:497,-167,-69,0,0,0.075006 -2508,5616:496,-166,-69,0,0,0.0749916 -2509,5616:495,-165,-69,0,0,0.0749775 -2510,5616:394,-164,-69,0,0,0.0749775 -2511,5616:393,-163,-69,0,0,0.0749775 -2512,5616:392,-162,-69,0,0,0.0749775 -2513,5616:391,-161,-69,0,0,0.0749916 -2514,5616:390,-160,-69,0,0,0.0750131 -2515,5615:499,-159,-69,0,0,0.0750345 -2516,5615:498,-158,-69,0,0,0.0750488 -2517,5615:497,-157,-69,0,0,0.075063 -2518,5615:496,-156,-69,0,0,0.0750843 -2519,5615:495,-155,-69,0,0,0.0750987 -2520,5615:394,-154,-69,0,0,0.0751128 -2521,5615:393,-153,-69,0,0,0.0751128 -2522,5615:392,-152,-69,0,0,0.0751344 -2523,5615:391,-151,-69,0,0,0.0751558 -2524,5615:390,-150,-69,0,0,0.0751701 -2525,5614:499,-149,-69,0,0,0.0751771 -2526,5614:498,-148,-69,0,0,0.0751843 -2527,5614:497,-147,-69,0,0,0.0751771 -2528,5614:496,-146,-69,0,0,0.0751701 -2529,5614:495,-145,-69,0,0,0.0751771 -2530,5614:394,-144,-69,0,0,0.0751843 -2531,5614:393,-143,-69,0,0,0.0751915 -2532,5614:392,-142,-69,0,0,0.0751915 -2533,5614:391,-141,-69,0,0,0.0751843 -2534,5614:390,-140,-69,0,0,0.0751701 -2535,5613:499,-139,-69,0,0,0.0751344 -2536,5613:498,-138,-69,0,0,0.0751344 -2537,5613:497,-137,-69,0,0,0.0751701 -2538,5613:496,-136,-69,0,0,0.0752487 -2539,5613:495,-135,-69,0,0,0.0752916 -2540,5613:394,-134,-69,0,0,0.0753561 -2541,5613:393,-133,-69,0,0,0.0754562 -2542,5613:392,-132,-69,0,0,0.0754634 -2543,5613:391,-131,-69,0,0,0.0759379 -2544,5613:390,-130,-69,0,0,0.075758 -2545,5612:499,-129,-69,0,0,0.0754779 -2546,5612:498,-128,-69,0,0,0.0754348 -2547,5612:497,-127,-69,0,0,0.0754921 -2548,5612:496,-126,-69,0,0,0.0753561 -2549,5612:495,-125,-69,0,0,0.0751486 -2550,5612:394,-124,-69,0,0,0.0751558 -2551,5612:393,-123,-69,0,0,0.0751558 -2552,5612:392,-122,-69,0,0,0.0751558 -2553,5612:391,-121,-69,0,0,0.0751558 -2554,5612:390,-120,-69,0,0,0.0751344 -2555,5611:499,-119,-69,0,0,0.0751272 -2556,5611:498,-118,-69,0,0,0.0751272 -2557,5611:497,-117,-69,0,0,0.0751128 -2558,5611:496,-116,-69,0,0,0.0751059 -2559,5611:495,-115,-69,0,0,0.0751128 -2560,5611:394,-114,-69,0,0,0.0751059 -2561,5611:393,-113,-69,0,0,0.0751059 -2562,5611:392,-112,-69,0,0,0.0751059 -2563,5611:391,-111,-69,0,0,0.0751059 -2564,5611:390,-110,-69,0,0,0.0751059 -2565,5610:499,-109,-69,0,0,0.0751059 -2566,5610:498,-108,-69,0,0,0.0751059 -2567,5610:497,-107,-69,0,0,0.0751128 -2568,5610:496,-106,-69,0,0,0.07512 -2569,5610:495,-105,-69,0,0,0.07512 -2570,5610:394,-104,-69,0,0,0.07512 -2571,5610:393,-103,-69,0,0,0.07512 -2572,5610:392,-102,-69,0,0,0.0751128 -2573,5610:391,-101,-69,0,0,0.07512 -2574,5610:390,-100,-69,0,0,0.0751344 -2575,5609:499,-99,-69,0,0,0.0751701 -2576,5609:498,-98,-69,0,0,0.0751915 -2577,5609:497,-97,-69,0,0,0.0751843 -2578,5609:496,-96,-69,0,0,0.0751701 -2579,5609:495,-95,-69,0,0,0.075163 -2580,5609:394,-94,-69,0,0,0.0751344 -2581,5609:393,-93,-69,0,0,0.0750987 -2582,5609:392,-92,-69,0,0,0.0750558 -2583,5609:391,-91,-69,0,0,0.0750416 -2584,5609:390,-90,-69,0,0,0.0750273 -2585,5608:499,-89,-69,0,0,0.0750201 -2586,5608:498,-88,-69,0,0,0.075006 -2587,5608:497,-87,-69,0,0,0.0749988 -2588,5608:496,-86,-69,0,0,0.0749775 -2589,5608:495,-85,-69,0,0,0.0749631 -2590,5608:394,-84,-69,0,0,0.0749562 -2591,5608:393,-83,-69,0,0,0.0749631 -2592,5608:392,-82,-69,0,0,0.0749846 -2593,5608:391,-81,-69,0,0,0.0750345 -2594,5608:390,-80,-69,0,0,0.0750843 -2595,5607:499,-79,-69,0,0,0.0753203 -2596,5607:498,-78,-69,0,0,0.0772018 -2597,5607:497,-77,-69,0,0,0.0779296 -2598,5607:496,-76,-69,0,0,0.078011 -2599,5606:390,-60,-69,0,0,0.0753344 -2600,5605:499,-59,-69,0,0,0.0750558 -2601,5605:498,-58,-69,0,0,0.0750345 -2602,5605:497,-57,-69,0,0,0.0750488 -2603,5605:496,-56,-69,0,0,0.0750416 -2604,5605:495,-55,-69,0,0,0.0750488 -2605,5605:394,-54,-69,0,0,0.0750488 -2606,5605:393,-53,-69,0,0,0.0750488 -2607,5605:392,-52,-69,0,0,0.0750416 -2608,5605:391,-51,-69,0,0,0.0750416 -2609,5605:390,-50,-69,0,0,0.0750416 -2610,5604:499,-49,-69,0,0,0.0750345 -2611,5604:498,-48,-69,0,0,0.0750345 -2612,5604:497,-47,-69,0,0,0.0750273 -2613,5604:496,-46,-69,0,0,0.0750201 -2614,5604:495,-45,-69,0,0,0.075006 -2615,5604:394,-44,-69,0,0,0.0749916 -2616,5604:393,-43,-69,0,0,0.0749775 -2617,5604:392,-42,-69,0,0,0.0749703 -2618,5604:391,-41,-69,0,0,0.0749703 -2619,5604:390,-40,-69,0,0,0.0749631 -2620,5603:499,-39,-69,0,0,0.0749631 -2621,5603:498,-38,-69,0,0,0.0749631 -2622,5603:497,-37,-69,0,0,0.0749703 -2623,5603:496,-36,-69,0,0,0.0749775 -2624,5603:495,-35,-69,0,0,0.0749775 -2625,5603:394,-34,-69,0,0,0.0749846 -2626,5603:393,-33,-69,0,0,0.0749846 -2627,5603:392,-32,-69,0,0,0.0749988 -2628,5603:391,-31,-69,0,0,0.0749846 -2629,5603:390,-30,-69,0,0,0.0749916 -2630,5602:499,-29,-69,0,0,0.0749846 -2631,5602:498,-28,-69,0,0,0.0749846 -2632,5602:497,-27,-69,0,0,0.0749846 -2633,5602:496,-26,-69,0,0,0.0749846 -2634,5602:495,-25,-69,0,0,0.0749775 -2635,5602:394,-24,-69,0,0,0.0749703 -2636,5602:393,-23,-69,0,0,0.0749703 -2637,5602:392,-22,-69,0,0,0.0749631 -2638,5602:391,-21,-69,0,0,0.0749562 -2639,5602:390,-20,-69,0,0,0.0749703 -2640,5601:499,-19,-69,0,0,0.0749775 -2641,5601:498,-18,-69,0,0,0.0749846 -2642,5601:497,-17,-69,0,0,0.0749916 -2643,5601:496,-16,-69,0,0,0.0749988 -2644,5601:495,-15,-69,0,0,0.075006 -2645,5601:394,-14,-69,0,0,0.0750201 -2646,5601:393,-13,-69,0,0,0.0750345 -2647,5601:392,-12,-69,0,0,0.0751486 -2648,5601:391,-11,-69,0,0,0.075528 -2649,5601:390,-10,-69,0,0,0.0758515 -2650,3616:499,169,-69,0,0,0.0752487 -2651,3617:390,170,-69,0,0,0.075006 -2652,3617:391,171,-69,0,0,0.075006 -2653,3617:392,172,-69,0,0,0.0750131 -2654,3617:393,173,-69,0,0,0.0750131 -2655,3617:394,174,-69,0,0,0.075006 -2656,3617:495,175,-69,0,0,0.0749916 -2657,3617:496,176,-69,0,0,0.0749846 -2658,3617:497,177,-69,0,0,0.0749846 -2659,3617:498,178,-69,0,0,0.0749916 -2660,3617:499,179,-69,0,0,0.0750273 -2661,3618:390,180,-69,0,0,0.0750416 -2662,5618:380,-180,-68,0,0,0.0750915 -2663,5617:489,-179,-68,0,0,0.0751059 -2664,5617:488,-178,-68,0,0,0.0751059 -2665,5617:487,-177,-68,0,0,0.0751059 -2666,5617:486,-176,-68,0,0,0.0751059 -2667,5617:485,-175,-68,0,0,0.0750915 -2668,5617:384,-174,-68,0,0,0.0750773 -2669,5617:383,-173,-68,0,0,0.0750558 -2670,5617:382,-172,-68,0,0,0.0750345 -2671,5617:381,-171,-68,0,0,0.0750273 -2672,5617:380,-170,-68,0,0,0.0750131 -2673,5616:489,-169,-68,0,0,0.075006 -2674,5616:488,-168,-68,0,0,0.0749916 -2675,5616:487,-167,-68,0,0,0.0749916 -2676,5616:486,-166,-68,0,0,0.0749631 -2677,5616:485,-165,-68,0,0,0.074949 -2678,5616:384,-164,-68,0,0,0.0749562 -2679,5616:383,-163,-68,0,0,0.0749562 -2680,5616:382,-162,-68,0,0,0.0749562 -2681,5616:381,-161,-68,0,0,0.0749631 -2682,5616:380,-160,-68,0,0,0.0749916 -2683,5615:489,-159,-68,0,0,0.0750273 -2684,5615:488,-158,-68,0,0,0.0750488 -2685,5615:487,-157,-68,0,0,0.0750702 -2686,5615:486,-156,-68,0,0,0.0750987 -2687,5615:485,-155,-68,0,0,0.0751128 -2688,5615:384,-154,-68,0,0,0.07512 -2689,5615:383,-153,-68,0,0,0.0751272 -2690,5615:382,-152,-68,0,0,0.0751344 -2691,5615:381,-151,-68,0,0,0.0751486 -2692,5615:380,-150,-68,0,0,0.0751558 -2693,5614:489,-149,-68,0,0,0.075163 -2694,5614:488,-148,-68,0,0,0.0751701 -2695,5614:487,-147,-68,0,0,0.0751771 -2696,5614:486,-146,-68,0,0,0.0751771 -2697,5614:485,-145,-68,0,0,0.0751771 -2698,5614:384,-144,-68,0,0,0.0751771 -2699,5614:383,-143,-68,0,0,0.0751915 -2700,5614:382,-142,-68,0,0,0.0751843 -2701,5614:381,-141,-68,0,0,0.0751771 -2702,5614:380,-140,-68,0,0,0.0751771 -2703,5613:489,-139,-68,0,0,0.075163 -2704,5613:488,-138,-68,0,0,0.0751486 -2705,5613:487,-137,-68,0,0,0.0751344 -2706,5613:486,-136,-68,0,0,0.07512 -2707,5613:485,-135,-68,0,0,0.0751416 -2708,5613:384,-134,-68,0,0,0.0752559 -2709,5613:383,-133,-68,0,0,0.0753917 -2710,5613:382,-132,-68,0,0,0.0755424 -2711,5613:381,-131,-68,0,0,0.0761978 -2712,5613:380,-130,-68,0,0,0.0759162 -2713,5612:489,-129,-68,0,0,0.0757937 -2714,5612:488,-128,-68,0,0,0.0758586 -2715,5612:487,-127,-68,0,0,0.0759091 -2716,5612:486,-126,-68,0,0,0.0756932 -2717,5612:485,-125,-68,0,0,0.0754562 -2718,5612:384,-124,-68,0,0,0.075313 -2719,5612:383,-123,-68,0,0,0.0751344 -2720,5612:382,-122,-68,0,0,0.0751416 -2721,5612:381,-121,-68,0,0,0.0751272 -2722,5612:380,-120,-68,0,0,0.07512 -2723,5611:489,-119,-68,0,0,0.0751128 -2724,5611:488,-118,-68,0,0,0.0751059 -2725,5611:487,-117,-68,0,0,0.0750987 -2726,5611:486,-116,-68,0,0,0.0751272 -2727,5611:485,-115,-68,0,0,0.0750915 -2728,5611:384,-114,-68,0,0,0.0750915 -2729,5611:383,-113,-68,0,0,0.0751059 -2730,5611:382,-112,-68,0,0,0.0751059 -2731,5611:381,-111,-68,0,0,0.0751059 -2732,5611:380,-110,-68,0,0,0.0751059 -2733,5610:489,-109,-68,0,0,0.0751059 -2734,5610:488,-108,-68,0,0,0.0751059 -2735,5610:487,-107,-68,0,0,0.0750987 -2736,5610:486,-106,-68,0,0,0.0750987 -2737,5610:485,-105,-68,0,0,0.0750987 -2738,5610:384,-104,-68,0,0,0.0751128 -2739,5610:383,-103,-68,0,0,0.0751128 -2740,5610:382,-102,-68,0,0,0.0751128 -2741,5610:381,-101,-68,0,0,0.0751059 -2742,5610:380,-100,-68,0,0,0.0751059 -2743,5609:489,-99,-68,0,0,0.07512 -2744,5609:488,-98,-68,0,0,0.0751272 -2745,5609:487,-97,-68,0,0,0.0751272 -2746,5609:486,-96,-68,0,0,0.0751128 -2747,5609:485,-95,-68,0,0,0.0750987 -2748,5609:384,-94,-68,0,0,0.0750558 -2749,5609:383,-93,-68,0,0,0.0750201 -2750,5609:382,-92,-68,0,0,0.075006 -2751,5609:381,-91,-68,0,0,0.075006 -2752,5609:380,-90,-68,0,0,0.0750201 -2753,5608:489,-89,-68,0,0,0.0750273 -2754,5608:488,-88,-68,0,0,0.0750273 -2755,5608:487,-87,-68,0,0,0.0750201 -2756,5608:486,-86,-68,0,0,0.0750131 -2757,5608:485,-85,-68,0,0,0.0750131 -2758,5608:384,-84,-68,0,0,0.0749988 -2759,5608:383,-83,-68,0,0,0.0749916 -2760,5608:382,-82,-68,0,0,0.075006 -2761,5608:381,-81,-68,0,0,0.0750201 -2762,5608:380,-80,-68,0,0,0.0750702 -2763,5607:489,-79,-68,0,0,0.0755781 -2764,5607:488,-78,-68,0,0,0.0769681 -2765,5607:487,-77,-68,0,0,0.0794115 -2766,5607:486,-76,-68,0,0,0.0806751 -2767,5607:485,-75,-68,0,0,0.0805304 -2768,5606:380,-60,-68,0,0,0.0752201 -2769,5605:489,-59,-68,0,0,0.0750345 -2770,5605:488,-58,-68,0,0,0.0750345 -2771,5605:487,-57,-68,0,0,0.0750488 -2772,5605:486,-56,-68,0,0,0.0750416 -2773,5605:485,-55,-68,0,0,0.0750488 -2774,5605:384,-54,-68,0,0,0.0750488 -2775,5605:383,-53,-68,0,0,0.0750416 -2776,5605:382,-52,-68,0,0,0.0750345 -2777,5605:381,-51,-68,0,0,0.0750273 -2778,5605:380,-50,-68,0,0,0.0750273 -2779,5604:489,-49,-68,0,0,0.0750201 -2780,5604:488,-48,-68,0,0,0.075006 -2781,5604:487,-47,-68,0,0,0.0749916 -2782,5604:486,-46,-68,0,0,0.0749846 -2783,5604:485,-45,-68,0,0,0.0749775 -2784,5604:384,-44,-68,0,0,0.0749703 -2785,5604:383,-43,-68,0,0,0.0749631 -2786,5604:382,-42,-68,0,0,0.0749703 -2787,5604:381,-41,-68,0,0,0.0749631 -2788,5604:380,-40,-68,0,0,0.0749631 -2789,5603:489,-39,-68,0,0,0.0749631 -2790,5603:488,-38,-68,0,0,0.0749631 -2791,5603:487,-37,-68,0,0,0.0749703 -2792,5603:486,-36,-68,0,0,0.0749703 -2793,5603:485,-35,-68,0,0,0.0749775 -2794,5603:384,-34,-68,0,0,0.0749775 -2795,5603:383,-33,-68,0,0,0.0749775 -2796,5603:382,-32,-68,0,0,0.0749775 -2797,5603:381,-31,-68,0,0,0.0749775 -2798,5603:380,-30,-68,0,0,0.0749703 -2799,5602:489,-29,-68,0,0,0.0749775 -2800,5602:488,-28,-68,0,0,0.0749775 -2801,5602:487,-27,-68,0,0,0.0749703 -2802,5602:486,-26,-68,0,0,0.0749703 -2803,5602:485,-25,-68,0,0,0.0749631 -2804,5602:384,-24,-68,0,0,0.0749562 -2805,5602:383,-23,-68,0,0,0.0749562 -2806,5602:382,-22,-68,0,0,0.0749562 -2807,5602:381,-21,-68,0,0,0.0749562 -2808,5602:380,-20,-68,0,0,0.0749562 -2809,5601:489,-19,-68,0,0,0.0749562 -2810,5601:488,-18,-68,0,0,0.0749631 -2811,5601:487,-17,-68,0,0,0.0749631 -2812,5601:486,-16,-68,0,0,0.0749631 -2813,5601:485,-15,-68,0,0,0.0749846 -2814,5601:384,-14,-68,0,0,0.0749916 -2815,5601:383,-13,-68,0,0,0.0749988 -2816,5601:382,-12,-68,0,0,0.0750201 -2817,5601:381,-11,-68,0,0,0.0750702 -2818,5601:380,-10,-68,0,0,0.0756285 -2819,5600:489,-9,-68,0,0,0.0785446 -2820,5600:488,-8,-68,0,0,0.0793891 -2821,5600:487,-7,-68,0,0,0.0797351 -2822,5600:486,-6,-68,0,0,0.082034 -2823,3616:384,164,-68,0,0,0.0772166 -2824,3616:485,165,-68,0,0,0.0765747 -2825,3616:486,166,-68,0,0,0.0751771 -2826,3616:487,167,-68,0,0,0.0750488 -2827,3616:488,168,-68,0,0,0.0750416 -2828,3616:489,169,-68,0,0,0.0750131 -2829,3617:380,170,-68,0,0,0.0750201 -2830,3617:381,171,-68,0,0,0.0750131 -2831,3617:382,172,-68,0,0,0.0750131 -2832,3617:383,173,-68,0,0,0.075006 -2833,3617:384,174,-68,0,0,0.0749988 -2834,3617:485,175,-68,0,0,0.0749703 -2835,3617:486,176,-68,0,0,0.0749631 -2836,3617:487,177,-68,0,0,0.0749846 -2837,3617:488,178,-68,0,0,0.0750131 -2838,3617:489,179,-68,0,0,0.075063 -2839,3618:380,180,-68,0,0,0.0750915 -2840,5618:370,-180,-67,0,0,0.0750773 -2841,5617:479,-179,-67,0,0,0.0750915 -2842,5617:478,-178,-67,0,0,0.0750987 -2843,5617:477,-177,-67,0,0,0.0750987 -2844,5617:476,-176,-67,0,0,0.0750843 -2845,5617:475,-175,-67,0,0,0.0750702 -2846,5617:374,-174,-67,0,0,0.075063 -2847,5617:373,-173,-67,0,0,0.0750558 -2848,5617:372,-172,-67,0,0,0.0750416 -2849,5617:371,-171,-67,0,0,0.0750201 -2850,5617:370,-170,-67,0,0,0.075006 -2851,5616:479,-169,-67,0,0,0.0749916 -2852,5616:478,-168,-67,0,0,0.0749846 -2853,5616:477,-167,-67,0,0,0.0749631 -2854,5616:476,-166,-67,0,0,0.074949 -2855,5616:475,-165,-67,0,0,0.0749418 -2856,5616:374,-164,-67,0,0,0.0749346 -2857,5616:373,-163,-67,0,0,0.074949 -2858,5616:372,-162,-67,0,0,0.074949 -2859,5616:371,-161,-67,0,0,0.0749562 -2860,5616:370,-160,-67,0,0,0.0749846 -2861,5615:479,-159,-67,0,0,0.0750131 -2862,5615:478,-158,-67,0,0,0.0750558 -2863,5615:477,-157,-67,0,0,0.0750843 -2864,5615:476,-156,-67,0,0,0.0751059 -2865,5615:475,-155,-67,0,0,0.0751128 -2866,5615:374,-154,-67,0,0,0.07512 -2867,5615:373,-153,-67,0,0,0.0751272 -2868,5615:372,-152,-67,0,0,0.0751416 -2869,5615:371,-151,-67,0,0,0.0751486 -2870,5615:370,-150,-67,0,0,0.0751486 -2871,5614:479,-149,-67,0,0,0.0751558 -2872,5614:478,-148,-67,0,0,0.0751701 -2873,5614:477,-147,-67,0,0,0.0751843 -2874,5614:476,-146,-67,0,0,0.0751701 -2875,5614:475,-145,-67,0,0,0.0751771 -2876,5614:374,-144,-67,0,0,0.0751915 -2877,5614:373,-143,-67,0,0,0.0751701 -2878,5614:372,-142,-67,0,0,0.0751486 -2879,5614:371,-141,-67,0,0,0.0751344 -2880,5614:370,-140,-67,0,0,0.0751344 -2881,5613:479,-139,-67,0,0,0.0751486 -2882,5613:478,-138,-67,0,0,0.0751987 -2883,5613:477,-137,-67,0,0,0.0753703 -2884,5613:476,-136,-67,0,0,0.075163 -2885,5613:475,-135,-67,0,0,0.0751771 -2886,5613:374,-134,-67,0,0,0.0752057 -2887,5613:373,-133,-67,0,0,0.0754779 -2888,5613:372,-132,-67,0,0,0.0753489 -2889,5613:371,-131,-67,0,0,0.0761183 -2890,5613:370,-130,-67,0,0,0.076415 -2891,5612:479,-129,-67,0,0,0.0764296 -2892,5612:478,-128,-67,0,0,0.07635 -2893,5612:477,-127,-67,0,0,0.0760967 -2894,5612:476,-126,-67,0,0,0.0759091 -2895,5612:475,-125,-67,0,0,0.0757362 -2896,5612:374,-124,-67,0,0,0.0755207 -2897,5612:373,-123,-67,0,0,0.0754203 -2898,5612:372,-122,-67,0,0,0.0753561 -2899,5612:371,-121,-67,0,0,0.0752916 -2900,5612:370,-120,-67,0,0,0.0752273 -2901,5611:479,-119,-67,0,0,0.0751701 -2902,5611:478,-118,-67,0,0,0.0752273 -2903,5611:477,-117,-67,0,0,0.076046 -2904,5611:476,-116,-67,0,0,0.0760749 -2905,5611:475,-115,-67,0,0,0.0757867 -2906,5611:374,-114,-67,0,0,0.0755494 -2907,5611:373,-113,-67,0,0,0.0754275 -2908,5611:372,-112,-67,0,0,0.07527 -2909,5611:371,-111,-67,0,0,0.0750915 -2910,5611:370,-110,-67,0,0,0.0751059 -2911,5610:479,-109,-67,0,0,0.0751059 -2912,5610:478,-108,-67,0,0,0.0750987 -2913,5610:477,-107,-67,0,0,0.0750915 -2914,5610:476,-106,-67,0,0,0.0750987 -2915,5610:475,-105,-67,0,0,0.0750915 -2916,5610:374,-104,-67,0,0,0.0750915 -2917,5610:373,-103,-67,0,0,0.0751059 -2918,5610:372,-102,-67,0,0,0.0751059 -2919,5610:371,-101,-67,0,0,0.0750987 -2920,5610:370,-100,-67,0,0,0.0750987 -2921,5609:479,-99,-67,0,0,0.0750843 -2922,5609:478,-98,-67,0,0,0.0750488 -2923,5609:477,-97,-67,0,0,0.0750201 -2924,5609:476,-96,-67,0,0,0.0750131 -2925,5609:475,-95,-67,0,0,0.0749988 -2926,5609:374,-94,-67,0,0,0.075006 -2927,5609:373,-93,-67,0,0,0.075006 -2928,5609:372,-92,-67,0,0,0.0749988 -2929,5609:371,-91,-67,0,0,0.0749988 -2930,5609:370,-90,-67,0,0,0.0749988 -2931,5608:479,-89,-67,0,0,0.0750131 -2932,5608:478,-88,-67,0,0,0.0750201 -2933,5608:477,-87,-67,0,0,0.0750273 -2934,5608:476,-86,-67,0,0,0.0750345 -2935,5608:475,-85,-67,0,0,0.0750345 -2936,5608:374,-84,-67,0,0,0.0750416 -2937,5608:373,-83,-67,0,0,0.0750488 -2938,5608:372,-82,-67,0,0,0.0750488 -2939,5608:371,-81,-67,0,0,0.0750558 -2940,5608:370,-80,-67,0,0,0.075063 -2941,5607:479,-79,-67,0,0,0.0750987 -2942,5607:478,-78,-67,0,0,0.0751701 -2943,5607:477,-77,-67,0,0,0.0752415 -2944,5607:476,-76,-67,0,0,0.0753272 -2945,5607:475,-75,-67,0,0,0.0753703 -2946,5607:374,-74,-67,0,0,0.0763354 -2947,5607:373,-73,-67,0,0,0.0768221 -2948,5606:479,-69,-67,0,0,0.0761978 -2949,5606:371,-61,-67,0,0,0.0753917 -2950,5606:370,-60,-67,0,0,0.0752273 -2951,5605:479,-59,-67,0,0,0.0750345 -2952,5605:478,-58,-67,0,0,0.0750345 -2953,5605:477,-57,-67,0,0,0.0750345 -2954,5605:476,-56,-67,0,0,0.0750416 -2955,5605:475,-55,-67,0,0,0.0750488 -2956,5605:374,-54,-67,0,0,0.0750416 -2957,5605:373,-53,-67,0,0,0.0750345 -2958,5605:372,-52,-67,0,0,0.0750201 -2959,5605:371,-51,-67,0,0,0.0749988 -2960,5605:370,-50,-67,0,0,0.0749988 -2961,5604:479,-49,-67,0,0,0.0749916 -2962,5604:478,-48,-67,0,0,0.0749775 -2963,5604:477,-47,-67,0,0,0.0749703 -2964,5604:476,-46,-67,0,0,0.0749703 -2965,5604:475,-45,-67,0,0,0.0749703 -2966,5604:374,-44,-67,0,0,0.0749703 -2967,5604:373,-43,-67,0,0,0.0749631 -2968,5604:372,-42,-67,0,0,0.0749631 -2969,5604:371,-41,-67,0,0,0.0749631 -2970,5604:370,-40,-67,0,0,0.0749631 -2971,5603:479,-39,-67,0,0,0.0749631 -2972,5603:478,-38,-67,0,0,0.0749631 -2973,5603:477,-37,-67,0,0,0.0749631 -2974,5603:476,-36,-67,0,0,0.0749631 -2975,5603:475,-35,-67,0,0,0.0749631 -2976,5603:374,-34,-67,0,0,0.0749631 -2977,5603:373,-33,-67,0,0,0.0749562 -2978,5603:372,-32,-67,0,0,0.074949 -2979,5603:371,-31,-67,0,0,0.074949 -2980,5603:370,-30,-67,0,0,0.0749418 -2981,5602:479,-29,-67,0,0,0.0749418 -2982,5602:478,-28,-67,0,0,0.074949 -2983,5602:477,-27,-67,0,0,0.074949 -2984,5602:476,-26,-67,0,0,0.0749418 -2985,5602:475,-25,-67,0,0,0.0749418 -2986,5602:374,-24,-67,0,0,0.0749346 -2987,5602:373,-23,-67,0,0,0.0749346 -2988,5602:372,-22,-67,0,0,0.0749418 -2989,5602:371,-21,-67,0,0,0.0749562 -2990,5602:370,-20,-67,0,0,0.0749562 -2991,5601:479,-19,-67,0,0,0.0749562 -2992,5601:478,-18,-67,0,0,0.0749631 -2993,5601:477,-17,-67,0,0,0.074949 -2994,5601:476,-16,-67,0,0,0.0749631 -2995,5601:475,-15,-67,0,0,0.0749631 -2996,5601:374,-14,-67,0,0,0.0749562 -2997,5601:373,-13,-67,0,0,0.0749631 -2998,5601:372,-12,-67,0,0,0.0749775 -2999,5601:371,-11,-67,0,0,0.0749703 -3000,5601:370,-10,-67,0,0,0.0749703 -3001,5600:479,-9,-67,0,0,0.0749631 -3002,5600:478,-8,-67,0,0,0.0749703 -3003,5600:477,-7,-67,0,0,0.0749775 -3004,5600:476,-6,-67,0,0,0.0750345 -3005,5600:475,-5,-67,0,0,0.0755781 -3006,5600:374,-4,-67,0,0,0.0753058 -3007,5600:373,-3,-67,0,0,0.0751128 -3008,5600:372,-2,-67,0,0,0.0754275 -3009,5600:371,-1,-67,0,0,0.0761689 -3010,3600:371,0,-67,0,0,0.0774365 -3011,3600:371,1,-67,0,0,0.0756355 -3012,3600:372,2,-67,0,0,0.0752129 -3013,3600:373,3,-67,0,0,0.075163 -3014,3600:374,4,-67,0,0,0.0766184 -3015,3600:475,5,-67,0,0,0.0768659 -3016,3600:476,6,-67,0,0,0.0768367 -3017,3600:477,7,-67,0,0,0.0773852 -3018,3600:478,8,-67,0,0,0.0782329 -3019,3600:479,9,-67,0,0,0.0786564 -3020,3601:370,10,-67,0,0,0.0775172 -3021,3601:371,11,-67,0,0,0.0789023 -3022,3601:372,12,-67,0,0,0.0800296 -3023,3601:373,13,-67,0,0,0.0814942 -3024,3601:478,18,-67,0,0,0.0759523 -3025,3601:479,19,-67,0,0,0.0750702 -3026,3602:370,20,-67,0,0,0.07512 -3027,3602:371,21,-67,0,0,0.0751344 -3028,3602:372,22,-67,0,0,0.0751059 -3029,3602:373,23,-67,0,0,0.0750558 -3030,3602:374,24,-67,0,0,0.0749846 -3031,3602:475,25,-67,0,0,0.0749275 -3032,3602:476,26,-67,0,0,0.0750201 -3033,3602:477,27,-67,0,0,0.0749346 -3034,3602:478,28,-67,0,0,0.0761761 -3035,3616:371,161,-67,0,0,0.07565 -3036,3616:372,162,-67,0,0,0.075006 -3037,3616:373,163,-67,0,0,0.0750131 -3038,3616:374,164,-67,0,0,0.0750273 -3039,3616:475,165,-67,0,0,0.0750273 -3040,3616:476,166,-67,0,0,0.0750273 -3041,3616:477,167,-67,0,0,0.0750273 -3042,3616:478,168,-67,0,0,0.0750345 -3043,3616:479,169,-67,0,0,0.0750273 -3044,3617:370,170,-67,0,0,0.0750273 -3045,3617:371,171,-67,0,0,0.0750345 -3046,3617:372,172,-67,0,0,0.0750201 -3047,3617:373,173,-67,0,0,0.0750201 -3048,3617:374,174,-67,0,0,0.0749916 -3049,3617:475,175,-67,0,0,0.0749775 -3050,3617:476,176,-67,0,0,0.0749775 -3051,3617:477,177,-67,0,0,0.075006 -3052,3617:478,178,-67,0,0,0.0750345 -3053,3617:479,179,-67,0,0,0.0750558 -3054,3618:370,180,-67,0,0,0.0750773 -3055,5618:360,-180,-66,0,0,0.0750558 -3056,5617:469,-179,-66,0,0,0.0750702 -3057,5617:468,-178,-66,0,0,0.0750915 -3058,5617:467,-177,-66,0,0,0.0750915 -3059,5617:466,-176,-66,0,0,0.0750773 -3060,5617:465,-175,-66,0,0,0.075063 -3061,5617:364,-174,-66,0,0,0.0750558 -3062,5617:363,-173,-66,0,0,0.0750488 -3063,5617:362,-172,-66,0,0,0.0750416 -3064,5617:361,-171,-66,0,0,0.0750273 -3065,5617:360,-170,-66,0,0,0.0750131 -3066,5616:469,-169,-66,0,0,0.0749988 -3067,5616:468,-168,-66,0,0,0.0749916 -3068,5616:467,-167,-66,0,0,0.0749846 -3069,5616:466,-166,-66,0,0,0.0749562 -3070,5616:465,-165,-66,0,0,0.074949 -3071,5616:364,-164,-66,0,0,0.074949 -3072,5616:363,-163,-66,0,0,0.0749562 -3073,5616:362,-162,-66,0,0,0.0749703 -3074,5616:361,-161,-66,0,0,0.0749775 -3075,5616:360,-160,-66,0,0,0.075006 -3076,5615:469,-159,-66,0,0,0.0750345 -3077,5615:468,-158,-66,0,0,0.0750558 -3078,5615:467,-157,-66,0,0,0.0750843 -3079,5615:466,-156,-66,0,0,0.0750987 -3080,5615:465,-155,-66,0,0,0.0751059 -3081,5615:364,-154,-66,0,0,0.0751128 -3082,5615:363,-153,-66,0,0,0.0751272 -3083,5615:362,-152,-66,0,0,0.0751486 -3084,5615:361,-151,-66,0,0,0.0751486 -3085,5615:360,-150,-66,0,0,0.0751486 -3086,5614:469,-149,-66,0,0,0.0751558 -3087,5614:468,-148,-66,0,0,0.0751558 -3088,5614:467,-147,-66,0,0,0.0751771 -3089,5614:466,-146,-66,0,0,0.0751701 -3090,5614:465,-145,-66,0,0,0.075163 -3091,5614:364,-144,-66,0,0,0.0751701 -3092,5614:363,-143,-66,0,0,0.075163 -3093,5614:362,-142,-66,0,0,0.0751701 -3094,5614:361,-141,-66,0,0,0.0752844 -3095,5614:360,-140,-66,0,0,0.0752844 -3096,5613:469,-139,-66,0,0,0.0753058 -3097,5613:468,-138,-66,0,0,0.0752057 -3098,5613:467,-137,-66,0,0,0.0751272 -3099,5613:466,-136,-66,0,0,0.0751915 -3100,5613:465,-135,-66,0,0,0.07527 -3101,5613:364,-134,-66,0,0,0.075686 -3102,5613:363,-133,-66,0,0,0.0760172 -3103,5613:362,-132,-66,0,0,0.0759019 -3104,5613:361,-131,-66,0,0,0.0763281 -3105,5613:360,-130,-66,0,0,0.0764369 -3106,5612:469,-129,-66,0,0,0.0763716 -3107,5612:468,-128,-66,0,0,0.076386 -3108,5612:467,-127,-66,0,0,0.0763064 -3109,5612:466,-126,-66,0,0,0.0760245 -3110,5612:465,-125,-66,0,0,0.0758803 -3111,5612:364,-124,-66,0,0,0.0757722 -3112,5612:363,-123,-66,0,0,0.075686 -3113,5612:362,-122,-66,0,0,0.0755424 -3114,5612:361,-121,-66,0,0,0.0754348 -3115,5612:360,-120,-66,0,0,0.0753989 -3116,5611:469,-119,-66,0,0,0.075442 -3117,5611:468,-118,-66,0,0,0.0756355 -3118,5611:467,-117,-66,0,0,0.0761038 -3119,5611:466,-116,-66,0,0,0.0772606 -3120,5611:465,-115,-66,0,0,0.0782997 -3121,5611:364,-114,-66,0,0,0.0782108 -3122,5611:363,-113,-66,0,0,0.0782476 -3123,5611:362,-112,-66,0,0,0.0763571 -3124,5611:361,-111,-66,0,0,0.0753272 -3125,5611:360,-110,-66,0,0,0.0750915 -3126,5610:469,-109,-66,0,0,0.0752772 -3127,5610:468,-108,-66,0,0,0.0762413 -3128,5610:467,-107,-66,0,0,0.0750915 -3129,5610:466,-106,-66,0,0,0.0750773 -3130,5610:465,-105,-66,0,0,0.075063 -3131,5610:364,-104,-66,0,0,0.0750702 -3132,5610:363,-103,-66,0,0,0.0750702 -3133,5610:362,-102,-66,0,0,0.0750558 -3134,5610:361,-101,-66,0,0,0.0750273 -3135,5610:360,-100,-66,0,0,0.0750416 -3136,5609:469,-99,-66,0,0,0.0750201 -3137,5609:468,-98,-66,0,0,0.075006 -3138,5609:467,-97,-66,0,0,0.0749988 -3139,5609:466,-96,-66,0,0,0.0749988 -3140,5609:465,-95,-66,0,0,0.0749846 -3141,5609:364,-94,-66,0,0,0.075006 -3142,5609:363,-93,-66,0,0,0.0750273 -3143,5609:362,-92,-66,0,0,0.0750131 -3144,5609:361,-91,-66,0,0,0.0749916 -3145,5609:360,-90,-66,0,0,0.0749988 -3146,5608:469,-89,-66,0,0,0.0750131 -3147,5608:468,-88,-66,0,0,0.0750273 -3148,5608:467,-87,-66,0,0,0.0750273 -3149,5608:466,-86,-66,0,0,0.0750345 -3150,5608:465,-85,-66,0,0,0.075063 -3151,5608:364,-84,-66,0,0,0.0750773 -3152,5608:363,-83,-66,0,0,0.0750773 -3153,5608:362,-82,-66,0,0,0.0750773 -3154,5608:361,-81,-66,0,0,0.0750843 -3155,5608:360,-80,-66,0,0,0.0750843 -3156,5607:469,-79,-66,0,0,0.0750773 -3157,5607:468,-78,-66,0,0,0.07512 -3158,5607:467,-77,-66,0,0,0.0752201 -3159,5607:466,-76,-66,0,0,0.0753203 -3160,5607:465,-75,-66,0,0,0.0753775 -3161,5607:364,-74,-66,0,0,0.076234 -3162,5607:363,-73,-66,0,0,0.076713 -3163,5607:360,-70,-66,0,0,0.0757867 -3164,5606:469,-69,-66,0,0,0.0759307 -3165,5606:361,-61,-66,0,0,0.0754348 -3166,5606:360,-60,-66,0,0,0.0751059 -3167,5605:469,-59,-66,0,0,0.0750345 -3168,5605:468,-58,-66,0,0,0.0750273 -3169,5605:467,-57,-66,0,0,0.0750273 -3170,5605:466,-56,-66,0,0,0.0750416 -3171,5605:465,-55,-66,0,0,0.0750488 -3172,5605:364,-54,-66,0,0,0.0750416 -3173,5605:363,-53,-66,0,0,0.0750273 -3174,5605:362,-52,-66,0,0,0.0750131 -3175,5605:361,-51,-66,0,0,0.075006 -3176,5605:360,-50,-66,0,0,0.0749916 -3177,5604:469,-49,-66,0,0,0.0749846 -3178,5604:468,-48,-66,0,0,0.0749846 -3179,5604:467,-47,-66,0,0,0.0749775 -3180,5604:466,-46,-66,0,0,0.0749775 -3181,5604:465,-45,-66,0,0,0.0749775 -3182,5604:364,-44,-66,0,0,0.0749703 -3183,5604:363,-43,-66,0,0,0.0749703 -3184,5604:362,-42,-66,0,0,0.0749703 -3185,5604:361,-41,-66,0,0,0.0749631 -3186,5604:360,-40,-66,0,0,0.0749562 -3187,5603:469,-39,-66,0,0,0.074949 -3188,5603:468,-38,-66,0,0,0.0749562 -3189,5603:467,-37,-66,0,0,0.0749631 -3190,5603:466,-36,-66,0,0,0.0749562 -3191,5603:465,-35,-66,0,0,0.0749562 -3192,5603:364,-34,-66,0,0,0.0749562 -3193,5603:363,-33,-66,0,0,0.0749562 -3194,5603:362,-32,-66,0,0,0.0749562 -3195,5603:361,-31,-66,0,0,0.074949 -3196,5603:360,-30,-66,0,0,0.0749418 -3197,5602:469,-29,-66,0,0,0.0749346 -3198,5602:468,-28,-66,0,0,0.0749418 -3199,5602:467,-27,-66,0,0,0.0749418 -3200,5602:466,-26,-66,0,0,0.0749346 -3201,5602:465,-25,-66,0,0,0.0749346 -3202,5602:364,-24,-66,0,0,0.0749275 -3203,5602:363,-23,-66,0,0,0.0749205 -3204,5602:362,-22,-66,0,0,0.0749205 -3205,5602:361,-21,-66,0,0,0.0749275 -3206,5602:360,-20,-66,0,0,0.0749346 -3207,5601:469,-19,-66,0,0,0.0749346 -3208,5601:468,-18,-66,0,0,0.0749418 -3209,5601:467,-17,-66,0,0,0.0749418 -3210,5601:466,-16,-66,0,0,0.074949 -3211,5601:465,-15,-66,0,0,0.074949 -3212,5601:364,-14,-66,0,0,0.074949 -3213,5601:363,-13,-66,0,0,0.0749418 -3214,5601:362,-12,-66,0,0,0.0749275 -3215,5601:361,-11,-66,0,0,0.0749418 -3216,5601:360,-10,-66,0,0,0.0749418 -3217,5600:469,-9,-66,0,0,0.0749205 -3218,5600:468,-8,-66,0,0,0.0749133 -3219,5600:467,-7,-66,0,0,0.0749275 -3220,5600:466,-6,-66,0,0,0.0749562 -3221,5600:465,-5,-66,0,0,0.0749703 -3222,5600:364,-4,-66,0,0,0.074949 -3223,5600:363,-3,-66,0,0,0.074899 -3224,5600:362,-2,-66,0,0,0.0748636 -3225,5600:361,-1,-66,0,0,0.0748636 -3226,3600:361,0,-66,0,0,0.0748636 -3227,3600:361,1,-66,0,0,0.0748777 -3228,3600:362,2,-66,0,0,0.074892 -3229,3600:363,3,-66,0,0,0.074892 -3230,3600:364,4,-66,0,0,0.074892 -3231,3600:465,5,-66,0,0,0.0748849 -3232,3600:466,6,-66,0,0,0.0748636 -3233,3600:467,7,-66,0,0,0.0748849 -3234,3600:468,8,-66,0,0,0.0749062 -3235,3600:469,9,-66,0,0,0.0749133 -3236,3601:360,10,-66,0,0,0.0749346 -3237,3601:361,11,-66,0,0,0.0750558 -3238,3601:362,12,-66,0,0,0.0753631 -3239,3601:363,13,-66,0,0,0.075063 -3240,3601:364,14,-66,0,0,0.0753203 -3241,3601:465,15,-66,0,0,0.075442 -3242,3601:466,16,-66,0,0,0.0750773 -3243,3601:467,17,-66,0,0,0.0751128 -3244,3601:468,18,-66,0,0,0.075006 -3245,3601:469,19,-66,0,0,0.0749775 -3246,3602:360,20,-66,0,0,0.0749775 -3247,3602:361,21,-66,0,0,0.0749775 -3248,3602:362,22,-66,0,0,0.0749846 -3249,3602:363,23,-66,0,0,0.0749846 -3250,3602:364,24,-66,0,0,0.0749703 -3251,3602:465,25,-66,0,0,0.074949 -3252,3602:466,26,-66,0,0,0.074949 -3253,3602:467,27,-66,0,0,0.0749418 -3254,3602:468,28,-66,0,0,0.0749988 -3255,3602:469,29,-66,0,0,0.0749846 -3256,3603:466,36,-66,0,0,0.0755352 -3257,3603:467,37,-66,0,0,0.0754348 -3258,3603:468,38,-66,0,0,0.0753058 -3259,3603:469,39,-66,0,0,0.0750915 -3260,3607:364,74,-66,0,0,0.0888968 -3261,3607:465,75,-66,0,0,0.0871401 -3262,3607:466,76,-66,0,0,0.0890969 -3263,3607:467,77,-66,0,0,0.0890717 -3264,3615:468,158,-66,0,0,0.0754492 -3265,3615:469,159,-66,0,0,0.0751771 -3266,3616:360,160,-66,0,0,0.0750488 -3267,3616:361,161,-66,0,0,0.0750416 -3268,3616:362,162,-66,0,0,0.0750345 -3269,3616:363,163,-66,0,0,0.0750488 -3270,3616:364,164,-66,0,0,0.075063 -3271,3616:465,165,-66,0,0,0.0750558 -3272,3616:466,166,-66,0,0,0.0750558 -3273,3616:467,167,-66,0,0,0.0750488 -3274,3616:468,168,-66,0,0,0.0750416 -3275,3616:469,169,-66,0,0,0.0750488 -3276,3617:360,170,-66,0,0,0.0750488 -3277,3617:361,171,-66,0,0,0.0750201 -3278,3617:362,172,-66,0,0,0.0750131 -3279,3617:363,173,-66,0,0,0.075006 -3280,3617:364,174,-66,0,0,0.0749846 -3281,3617:465,175,-66,0,0,0.0749846 -3282,3617:466,176,-66,0,0,0.0749916 -3283,3617:467,177,-66,0,0,0.075006 -3284,3617:468,178,-66,0,0,0.0750345 -3285,3617:469,179,-66,0,0,0.0750488 -3286,3618:360,180,-66,0,0,0.0750558 -3287,5618:350,-180,-65,0,0,0.0750488 -3288,5617:459,-179,-65,0,0,0.0750558 -3289,5617:458,-178,-65,0,0,0.0750702 -3290,5617:457,-177,-65,0,0,0.0750773 -3291,5617:456,-176,-65,0,0,0.0750702 -3292,5617:455,-175,-65,0,0,0.075063 -3293,5617:354,-174,-65,0,0,0.0750702 -3294,5617:353,-173,-65,0,0,0.0750558 -3295,5617:352,-172,-65,0,0,0.0750488 -3296,5617:351,-171,-65,0,0,0.0750345 -3297,5617:350,-170,-65,0,0,0.0750273 -3298,5616:459,-169,-65,0,0,0.0750131 -3299,5616:458,-168,-65,0,0,0.0749988 -3300,5616:457,-167,-65,0,0,0.0749916 -3301,5616:456,-166,-65,0,0,0.0749775 -3302,5616:455,-165,-65,0,0,0.0749703 -3303,5616:354,-164,-65,0,0,0.0749703 -3304,5616:353,-163,-65,0,0,0.0749775 -3305,5616:352,-162,-65,0,0,0.0749846 -3306,5616:351,-161,-65,0,0,0.0749988 -3307,5616:350,-160,-65,0,0,0.0750201 -3308,5615:459,-159,-65,0,0,0.0750488 -3309,5615:458,-158,-65,0,0,0.0750702 -3310,5615:457,-157,-65,0,0,0.0750773 -3311,5615:456,-156,-65,0,0,0.0750915 -3312,5615:455,-155,-65,0,0,0.0750987 -3313,5615:354,-154,-65,0,0,0.0751128 -3314,5615:353,-153,-65,0,0,0.0751344 -3315,5615:352,-152,-65,0,0,0.0751486 -3316,5615:351,-151,-65,0,0,0.0751558 -3317,5615:350,-150,-65,0,0,0.0751344 -3318,5614:459,-149,-65,0,0,0.0751701 -3319,5614:458,-148,-65,0,0,0.075163 -3320,5614:457,-147,-65,0,0,0.0751771 -3321,5614:456,-146,-65,0,0,0.0751558 -3322,5614:455,-145,-65,0,0,0.0751416 -3323,5614:354,-144,-65,0,0,0.075163 -3324,5614:353,-143,-65,0,0,0.0751486 -3325,5614:352,-142,-65,0,0,0.0751558 -3326,5614:351,-141,-65,0,0,0.075163 -3327,5614:350,-140,-65,0,0,0.0752631 -3328,5613:459,-139,-65,0,0,0.075313 -3329,5613:458,-138,-65,0,0,0.0752343 -3330,5613:457,-137,-65,0,0,0.0752057 -3331,5613:456,-136,-65,0,0,0.0751701 -3332,5613:455,-135,-65,0,0,0.0751843 -3333,5613:354,-134,-65,0,0,0.0759162 -3334,5613:353,-133,-65,0,0,0.0763789 -3335,5613:352,-132,-65,0,0,0.0763933 -3336,5613:351,-131,-65,0,0,0.0764006 -3337,5613:350,-130,-65,0,0,0.0764296 -3338,5612:459,-129,-65,0,0,0.0765967 -3339,5612:458,-128,-65,0,0,0.076553 -3340,5612:457,-127,-65,0,0,0.0764369 -3341,5612:456,-126,-65,0,0,0.0763643 -3342,5612:455,-125,-65,0,0,0.0763789 -3343,5612:354,-124,-65,0,0,0.0762775 -3344,5612:353,-123,-65,0,0,0.0762413 -3345,5612:352,-122,-65,0,0,0.0764586 -3346,5612:351,-121,-65,0,0,0.0766111 -3347,5612:350,-120,-65,0,0,0.075722 -3348,5611:459,-119,-65,0,0,0.0755711 -3349,5611:458,-118,-65,0,0,0.0756932 -3350,5611:457,-117,-65,0,0,0.0760606 -3351,5611:456,-116,-65,0,0,0.0784927 -3352,5611:455,-115,-65,0,0,0.0785002 -3353,5611:354,-114,-65,0,0,0.079254 -3354,5611:353,-113,-65,0,0,0.079404 -3355,5611:352,-112,-65,0,0,0.078011 -3356,5611:351,-111,-65,0,0,0.0764876 -3357,5611:350,-110,-65,0,0,0.0782255 -3358,5610:459,-109,-65,0,0,0.0797579 -3359,5610:458,-108,-65,0,0,0.0805076 -3360,5610:457,-107,-65,0,0,0.0769534 -3361,5610:456,-106,-65,0,0,0.075063 -3362,5610:455,-105,-65,0,0,0.075006 -3363,5610:354,-104,-65,0,0,0.0751059 -3364,5610:353,-103,-65,0,0,0.0750488 -3365,5610:352,-102,-65,0,0,0.0750273 -3366,5610:351,-101,-65,0,0,0.0750345 -3367,5610:350,-100,-65,0,0,0.0750558 -3368,5609:459,-99,-65,0,0,0.0750345 -3369,5609:458,-98,-65,0,0,0.0750201 -3370,5609:457,-97,-65,0,0,0.0750273 -3371,5609:456,-96,-65,0,0,0.0750131 -3372,5609:455,-95,-65,0,0,0.0749775 -3373,5609:354,-94,-65,0,0,0.0749703 -3374,5609:353,-93,-65,0,0,0.075006 -3375,5609:352,-92,-65,0,0,0.0749988 -3376,5609:351,-91,-65,0,0,0.0749775 -3377,5609:350,-90,-65,0,0,0.0749916 -3378,5608:459,-89,-65,0,0,0.0749988 -3379,5608:458,-88,-65,0,0,0.0750131 -3380,5608:457,-87,-65,0,0,0.0750201 -3381,5608:456,-86,-65,0,0,0.0750416 -3382,5608:455,-85,-65,0,0,0.075063 -3383,5608:354,-84,-65,0,0,0.0750773 -3384,5608:353,-83,-65,0,0,0.0750915 -3385,5608:352,-82,-65,0,0,0.0750915 -3386,5608:351,-81,-65,0,0,0.0750987 -3387,5608:350,-80,-65,0,0,0.0750987 -3388,5607:459,-79,-65,0,0,0.0750987 -3389,5607:458,-78,-65,0,0,0.0750915 -3390,5607:457,-77,-65,0,0,0.0751344 -3391,5607:456,-76,-65,0,0,0.0752129 -3392,5607:455,-75,-65,0,0,0.07527 -3393,5607:354,-74,-65,0,0,0.0753417 -3394,5607:353,-73,-65,0,0,0.0754133 -3395,5607:352,-72,-65,0,0,0.0755567 -3396,5607:351,-71,-65,0,0,0.075758 -3397,5607:350,-70,-65,0,0,0.0756572 -3398,5606:459,-69,-65,0,0,0.0756645 -3399,5606:458,-68,-65,0,0,0.0764949 -3400,5606:350,-60,-65,0,0,0.0753058 -3401,5605:459,-59,-65,0,0,0.0752201 -3402,5605:458,-58,-65,0,0,0.0750488 -3403,5605:457,-57,-65,0,0,0.0750273 -3404,5605:456,-56,-65,0,0,0.0750345 -3405,5605:455,-55,-65,0,0,0.0750416 -3406,5605:354,-54,-65,0,0,0.0750416 -3407,5605:353,-53,-65,0,0,0.0750273 -3408,5605:352,-52,-65,0,0,0.075006 -3409,5605:351,-51,-65,0,0,0.0749916 -3410,5605:350,-50,-65,0,0,0.0749916 -3411,5604:459,-49,-65,0,0,0.0749916 -3412,5604:458,-48,-65,0,0,0.0749846 -3413,5604:457,-47,-65,0,0,0.0749846 -3414,5604:456,-46,-65,0,0,0.0749846 -3415,5604:455,-45,-65,0,0,0.0749775 -3416,5604:354,-44,-65,0,0,0.0749775 -3417,5604:353,-43,-65,0,0,0.0749775 -3418,5604:352,-42,-65,0,0,0.0749631 -3419,5604:351,-41,-65,0,0,0.0749562 -3420,5604:350,-40,-65,0,0,0.0749562 -3421,5603:459,-39,-65,0,0,0.0749562 -3422,5603:458,-38,-65,0,0,0.0749562 -3423,5603:457,-37,-65,0,0,0.0749562 -3424,5603:456,-36,-65,0,0,0.0749631 -3425,5603:455,-35,-65,0,0,0.0749631 -3426,5603:354,-34,-65,0,0,0.0749631 -3427,5603:353,-33,-65,0,0,0.0749631 -3428,5603:352,-32,-65,0,0,0.0749562 -3429,5603:351,-31,-65,0,0,0.074949 -3430,5603:350,-30,-65,0,0,0.074949 -3431,5602:459,-29,-65,0,0,0.0749418 -3432,5602:458,-28,-65,0,0,0.0749418 -3433,5602:457,-27,-65,0,0,0.0749418 -3434,5602:456,-26,-65,0,0,0.0749418 -3435,5602:455,-25,-65,0,0,0.0749418 -3436,5602:354,-24,-65,0,0,0.0749346 -3437,5602:353,-23,-65,0,0,0.0749275 -3438,5602:352,-22,-65,0,0,0.0749205 -3439,5602:351,-21,-65,0,0,0.0749205 -3440,5602:350,-20,-65,0,0,0.0749205 -3441,5601:459,-19,-65,0,0,0.0749205 -3442,5601:458,-18,-65,0,0,0.0749205 -3443,5601:457,-17,-65,0,0,0.0749275 -3444,5601:456,-16,-65,0,0,0.0749275 -3445,5601:455,-15,-65,0,0,0.0749275 -3446,5601:354,-14,-65,0,0,0.0749275 -3447,5601:353,-13,-65,0,0,0.0749275 -3448,5601:352,-12,-65,0,0,0.0749205 -3449,5601:351,-11,-65,0,0,0.074899 -3450,5601:350,-10,-65,0,0,0.0748705 -3451,5600:459,-9,-65,0,0,0.0748777 -3452,5600:458,-8,-65,0,0,0.0748849 -3453,5600:457,-7,-65,0,0,0.074899 -3454,5600:456,-6,-65,0,0,0.0749205 -3455,5600:455,-5,-65,0,0,0.0749275 -3456,5600:354,-4,-65,0,0,0.0749275 -3457,5600:353,-3,-65,0,0,0.0749062 -3458,5600:352,-2,-65,0,0,0.0748705 -3459,5600:351,-1,-65,0,0,0.0748777 -3460,3600:351,0,-65,0,0,0.0748849 -3461,3600:351,1,-65,0,0,0.074899 -3462,3600:352,2,-65,0,0,0.0749275 -3463,3600:353,3,-65,0,0,0.074892 -3464,3600:354,4,-65,0,0,0.0748705 -3465,3600:455,5,-65,0,0,0.0748493 -3466,3600:456,6,-65,0,0,0.0748421 -3467,3600:457,7,-65,0,0,0.0748349 -3468,3600:458,8,-65,0,0,0.0748564 -3469,3600:459,9,-65,0,0,0.0749062 -3470,3601:350,10,-65,0,0,0.0749418 -3471,3601:351,11,-65,0,0,0.075006 -3472,3601:352,12,-65,0,0,0.0749846 -3473,3601:353,13,-65,0,0,0.0750131 -3474,3601:354,14,-65,0,0,0.0750201 -3475,3601:455,15,-65,0,0,0.0749846 -3476,3601:456,16,-65,0,0,0.0749775 -3477,3601:457,17,-65,0,0,0.0749846 -3478,3601:458,18,-65,0,0,0.0749418 -3479,3601:459,19,-65,0,0,0.074949 -3480,3602:350,20,-65,0,0,0.0749418 -3481,3602:351,21,-65,0,0,0.074949 -3482,3602:352,22,-65,0,0,0.074949 -3483,3602:353,23,-65,0,0,0.0749346 -3484,3602:354,24,-65,0,0,0.0749346 -3485,3602:455,25,-65,0,0,0.0749418 -3486,3602:456,26,-65,0,0,0.0749703 -3487,3602:457,27,-65,0,0,0.0749631 -3488,3602:458,28,-65,0,0,0.0749562 -3489,3602:459,29,-65,0,0,0.0749562 -3490,3603:350,30,-65,0,0,0.0749631 -3491,3603:351,31,-65,0,0,0.0749631 -3492,3603:352,32,-65,0,0,0.0750345 -3493,3603:353,33,-65,0,0,0.0773998 -3494,3603:455,35,-65,0,0,0.0754275 -3495,3603:456,36,-65,0,0,0.0754061 -3496,3603:457,37,-65,0,0,0.0750702 -3497,3603:458,38,-65,0,0,0.0750558 -3498,3603:459,39,-65,0,0,0.0751701 -3499,3604:350,40,-65,0,0,0.07512 -3500,3607:352,72,-65,0,0,0.0854231 -3501,3607:354,74,-65,0,0,0.0807361 -3502,3607:455,75,-65,0,0,0.0816328 -3503,3607:456,76,-65,0,0,0.082554 -3504,3607:457,77,-65,0,0,0.0845044 -3505,3607:458,78,-65,0,0,0.0881094 -3506,3615:456,156,-65,0,0,0.0768221 -3507,3615:457,157,-65,0,0,0.0751486 -3508,3615:458,158,-65,0,0,0.0751128 -3509,3615:459,159,-65,0,0,0.0750558 -3510,3616:350,160,-65,0,0,0.0750558 -3511,3616:351,161,-65,0,0,0.0750488 -3512,3616:352,162,-65,0,0,0.075063 -3513,3616:353,163,-65,0,0,0.0750702 -3514,3616:354,164,-65,0,0,0.0750702 -3515,3616:455,165,-65,0,0,0.075063 -3516,3616:456,166,-65,0,0,0.075063 -3517,3616:457,167,-65,0,0,0.075063 -3518,3616:458,168,-65,0,0,0.0750558 -3519,3616:459,169,-65,0,0,0.0750558 -3520,3617:350,170,-65,0,0,0.0750416 -3521,3617:351,171,-65,0,0,0.0750201 -3522,3617:352,172,-65,0,0,0.075006 -3523,3617:353,173,-65,0,0,0.0749988 -3524,3617:354,174,-65,0,0,0.0749846 -3525,3617:455,175,-65,0,0,0.0749846 -3526,3617:456,176,-65,0,0,0.0749916 -3527,3617:457,177,-65,0,0,0.075006 -3528,3617:458,178,-65,0,0,0.0750345 -3529,3617:459,179,-65,0,0,0.0750416 -3530,3618:350,180,-65,0,0,0.0750488 -3531,5618:140,-180,-64,0,0,0.0750558 -3532,5617:249,-179,-64,0,0,0.075063 -3533,5617:248,-178,-64,0,0,0.075063 -3534,5617:247,-177,-64,0,0,0.0750702 -3535,5617:246,-176,-64,0,0,0.0750702 -3536,5617:245,-175,-64,0,0,0.0750843 -3537,5617:144,-174,-64,0,0,0.0750773 -3538,5617:143,-173,-64,0,0,0.075063 -3539,5617:142,-172,-64,0,0,0.0750558 -3540,5617:141,-171,-64,0,0,0.0750488 -3541,5617:140,-170,-64,0,0,0.0750416 -3542,5616:249,-169,-64,0,0,0.0750273 -3543,5616:248,-168,-64,0,0,0.0750201 -3544,5616:247,-167,-64,0,0,0.0750131 -3545,5616:246,-166,-64,0,0,0.0749916 -3546,5616:245,-165,-64,0,0,0.0749846 -3547,5616:144,-164,-64,0,0,0.0749916 -3548,5616:143,-163,-64,0,0,0.0749988 -3549,5616:142,-162,-64,0,0,0.0750131 -3550,5616:141,-161,-64,0,0,0.0750345 -3551,5616:140,-160,-64,0,0,0.0750488 -3552,5615:249,-159,-64,0,0,0.0750558 -3553,5615:248,-158,-64,0,0,0.0750702 -3554,5615:247,-157,-64,0,0,0.0750843 -3555,5615:246,-156,-64,0,0,0.0750915 -3556,5615:245,-155,-64,0,0,0.0751059 -3557,5615:144,-154,-64,0,0,0.0751272 -3558,5615:143,-153,-64,0,0,0.0751416 -3559,5615:142,-152,-64,0,0,0.0751416 -3560,5615:141,-151,-64,0,0,0.075163 -3561,5615:140,-150,-64,0,0,0.0751558 -3562,5614:249,-149,-64,0,0,0.075163 -3563,5614:248,-148,-64,0,0,0.0751843 -3564,5614:247,-147,-64,0,0,0.0751771 -3565,5614:246,-146,-64,0,0,0.0751701 -3566,5614:245,-145,-64,0,0,0.0751701 -3567,5614:144,-144,-64,0,0,0.0751843 -3568,5614:143,-143,-64,0,0,0.0751843 -3569,5614:142,-142,-64,0,0,0.0751987 -3570,5614:141,-141,-64,0,0,0.0752415 -3571,5614:140,-140,-64,0,0,0.0751915 -3572,5613:249,-139,-64,0,0,0.0751701 -3573,5613:248,-138,-64,0,0,0.0753631 -3574,5613:247,-137,-64,0,0,0.0755926 -3575,5613:246,-136,-64,0,0,0.0752129 -3576,5613:245,-135,-64,0,0,0.0751987 -3577,5613:144,-134,-64,0,0,0.0754921 -3578,5613:143,-133,-64,0,0,0.0794943 -3579,5613:142,-132,-64,0,0,0.0803252 -3580,5613:141,-131,-64,0,0,0.0802569 -3581,5613:140,-130,-64,0,0,0.0779445 -3582,5612:249,-129,-64,0,0,0.0764659 -3583,5612:248,-128,-64,0,0,0.0764876 -3584,5612:247,-127,-64,0,0,0.0767929 -3585,5612:246,-126,-64,0,0,0.0769754 -3586,5612:245,-125,-64,0,0,0.0771799 -3587,5612:144,-124,-64,0,0,0.0778337 -3588,5612:143,-123,-64,0,0,0.0788203 -3589,5612:142,-122,-64,0,0,0.0782551 -3590,5612:141,-121,-64,0,0,0.0778042 -3591,5612:140,-120,-64,0,0,0.0768441 -3592,5611:249,-119,-64,0,0,0.076039 -3593,5611:248,-118,-64,0,0,0.0764006 -3594,5611:247,-117,-64,0,0,0.0788427 -3595,5611:246,-116,-64,0,0,0.0801433 -3596,5611:245,-115,-64,0,0,0.0808276 -3597,5611:144,-114,-64,0,0,0.0804162 -3598,5611:143,-113,-64,0,0,0.079577 -3599,5611:142,-112,-64,0,0,0.0799542 -3600,5611:141,-111,-64,0,0,0.0798408 -3601,5611:140,-110,-64,0,0,0.0809957 -3602,5610:249,-109,-64,0,0,0.080614 -3603,5610:248,-108,-64,0,0,0.0809957 -3604,5610:247,-107,-64,0,0,0.0796673 -3605,5610:246,-106,-64,0,0,0.0766765 -3606,5610:245,-105,-64,0,0,0.075837 -3607,5610:144,-104,-64,0,0,0.0759162 -3608,5610:143,-103,-64,0,0,0.0756932 -3609,5610:142,-102,-64,0,0,0.0750702 -3610,5610:141,-101,-64,0,0,0.0754993 -3611,5610:140,-100,-64,0,0,0.0777307 -3612,5609:249,-99,-64,0,0,0.0784405 -3613,5609:248,-98,-64,0,0,0.0770117 -3614,5609:247,-97,-64,0,0,0.0758225 -3615,5609:246,-96,-64,0,0,0.0751771 -3616,5609:245,-95,-64,0,0,0.0750273 -3617,5609:144,-94,-64,0,0,0.0750488 -3618,5609:143,-93,-64,0,0,0.0750987 -3619,5609:142,-92,-64,0,0,0.0750273 -3620,5609:141,-91,-64,0,0,0.0749775 -3621,5609:140,-90,-64,0,0,0.0749916 -3622,5608:249,-89,-64,0,0,0.0749916 -3623,5608:248,-88,-64,0,0,0.0750131 -3624,5608:247,-87,-64,0,0,0.0750273 -3625,5608:246,-86,-64,0,0,0.0750416 -3626,5608:245,-85,-64,0,0,0.075063 -3627,5608:144,-84,-64,0,0,0.075063 -3628,5608:143,-83,-64,0,0,0.0750702 -3629,5608:142,-82,-64,0,0,0.0750773 -3630,5608:141,-81,-64,0,0,0.0750843 -3631,5608:140,-80,-64,0,0,0.0750915 -3632,5607:249,-79,-64,0,0,0.0750843 -3633,5607:248,-78,-64,0,0,0.0750843 -3634,5607:247,-77,-64,0,0,0.0750987 -3635,5607:246,-76,-64,0,0,0.0751059 -3636,5607:245,-75,-64,0,0,0.075163 -3637,5607:144,-74,-64,0,0,0.0752559 -3638,5607:143,-73,-64,0,0,0.0753631 -3639,5607:142,-72,-64,0,0,0.0754921 -3640,5607:141,-71,-64,0,0,0.0755494 -3641,5607:140,-70,-64,0,0,0.0756787 -3642,5606:249,-69,-64,0,0,0.0768294 -3643,5606:248,-68,-64,0,0,0.0776644 -3644,5605:249,-59,-64,0,0,0.0753489 -3645,5605:248,-58,-64,0,0,0.0751128 -3646,5605:247,-57,-64,0,0,0.0750345 -3647,5605:246,-56,-64,0,0,0.0750345 -3648,5605:245,-55,-64,0,0,0.0750488 -3649,5605:144,-54,-64,0,0,0.0750416 -3650,5605:143,-53,-64,0,0,0.0750273 -3651,5605:142,-52,-64,0,0,0.0749988 -3652,5605:141,-51,-64,0,0,0.0749916 -3653,5605:140,-50,-64,0,0,0.0749916 -3654,5604:249,-49,-64,0,0,0.0749916 -3655,5604:248,-48,-64,0,0,0.0749846 -3656,5604:247,-47,-64,0,0,0.0749846 -3657,5604:246,-46,-64,0,0,0.0749846 -3658,5604:245,-45,-64,0,0,0.0749846 -3659,5604:144,-44,-64,0,0,0.0749775 -3660,5604:143,-43,-64,0,0,0.0749703 -3661,5604:142,-42,-64,0,0,0.0749631 -3662,5604:141,-41,-64,0,0,0.0749631 -3663,5604:140,-40,-64,0,0,0.0749631 -3664,5603:249,-39,-64,0,0,0.0749631 -3665,5603:248,-38,-64,0,0,0.0749631 -3666,5603:247,-37,-64,0,0,0.0749631 -3667,5603:246,-36,-64,0,0,0.0749631 -3668,5603:245,-35,-64,0,0,0.0749631 -3669,5603:144,-34,-64,0,0,0.0749631 -3670,5603:143,-33,-64,0,0,0.0749631 -3671,5603:142,-32,-64,0,0,0.0749562 -3672,5603:141,-31,-64,0,0,0.0749562 -3673,5603:140,-30,-64,0,0,0.074949 -3674,5602:249,-29,-64,0,0,0.0749562 -3675,5602:248,-28,-64,0,0,0.0749562 -3676,5602:247,-27,-64,0,0,0.0749562 -3677,5602:246,-26,-64,0,0,0.0749562 -3678,5602:245,-25,-64,0,0,0.074949 -3679,5602:144,-24,-64,0,0,0.074949 -3680,5602:143,-23,-64,0,0,0.0749418 -3681,5602:142,-22,-64,0,0,0.0749275 -3682,5602:141,-21,-64,0,0,0.0749275 -3683,5602:140,-20,-64,0,0,0.0749205 -3684,5601:249,-19,-64,0,0,0.0749133 -3685,5601:248,-18,-64,0,0,0.0749062 -3686,5601:247,-17,-64,0,0,0.0749062 -3687,5601:246,-16,-64,0,0,0.0749062 -3688,5601:245,-15,-64,0,0,0.0749062 -3689,5601:144,-14,-64,0,0,0.0749133 -3690,5601:143,-13,-64,0,0,0.0749133 -3691,5601:142,-12,-64,0,0,0.0749062 -3692,5601:141,-11,-64,0,0,0.074892 -3693,5601:140,-10,-64,0,0,0.0748636 -3694,5600:249,-9,-64,0,0,0.0748493 -3695,5600:248,-8,-64,0,0,0.0748564 -3696,5600:247,-7,-64,0,0,0.0748777 -3697,5600:246,-6,-64,0,0,0.0748705 -3698,5600:245,-5,-64,0,0,0.0748636 -3699,5600:144,-4,-64,0,0,0.0748849 -3700,5600:143,-3,-64,0,0,0.0748849 -3701,5600:142,-2,-64,0,0,0.0748636 -3702,5600:141,-1,-64,0,0,0.074828 -3703,3600:141,0,-64,0,0,0.0748137 -3704,3600:141,1,-64,0,0,0.0748137 -3705,3600:142,2,-64,0,0,0.0748349 -3706,3600:143,3,-64,0,0,0.0748777 -3707,3600:144,4,-64,0,0,0.0748849 -3708,3600:245,5,-64,0,0,0.0748636 -3709,3600:246,6,-64,0,0,0.0748493 -3710,3600:247,7,-64,0,0,0.0748349 -3711,3600:248,8,-64,0,0,0.0748208 -3712,3600:249,9,-64,0,0,0.0748636 -3713,3601:140,10,-64,0,0,0.0749062 -3714,3601:141,11,-64,0,0,0.074949 -3715,3601:142,12,-64,0,0,0.075006 -3716,3601:143,13,-64,0,0,0.0749846 -3717,3601:144,14,-64,0,0,0.0749703 -3718,3601:245,15,-64,0,0,0.0749418 -3719,3601:246,16,-64,0,0,0.0749562 -3720,3601:247,17,-64,0,0,0.0749631 -3721,3601:248,18,-64,0,0,0.074949 -3722,3601:249,19,-64,0,0,0.0749562 -3723,3602:140,20,-64,0,0,0.0749562 -3724,3602:141,21,-64,0,0,0.0749418 -3725,3602:142,22,-64,0,0,0.0749205 -3726,3602:143,23,-64,0,0,0.074899 -3727,3602:144,24,-64,0,0,0.0749062 -3728,3602:245,25,-64,0,0,0.0749133 -3729,3602:246,26,-64,0,0,0.0749346 -3730,3602:247,27,-64,0,0,0.0749346 -3731,3602:248,28,-64,0,0,0.074949 -3732,3602:249,29,-64,0,0,0.0749631 -3733,3603:140,30,-64,0,0,0.0749703 -3734,3603:141,31,-64,0,0,0.0749703 -3735,3603:142,32,-64,0,0,0.0750273 -3736,3603:143,33,-64,0,0,0.0751344 -3737,3603:144,34,-64,0,0,0.07512 -3738,3603:245,35,-64,0,0,0.0750702 -3739,3603:246,36,-64,0,0,0.0750702 -3740,3603:247,37,-64,0,0,0.0750702 -3741,3603:248,38,-64,0,0,0.075063 -3742,3603:249,39,-64,0,0,0.0750773 -3743,3604:140,40,-64,0,0,0.0750488 -3744,3604:141,41,-64,0,0,0.075063 -3745,3604:142,42,-64,0,0,0.0750915 -3746,3607:140,70,-64,0,0,0.0826319 -3747,3607:141,71,-64,0,0,0.07969 -3748,3607:142,72,-64,0,0,0.0793591 -3749,3607:144,74,-64,0,0,0.0794792 -3750,3607:245,75,-64,0,0,0.0795694 -3751,3607:246,76,-64,0,0,0.079871 -3752,3607:247,77,-64,0,0,0.0808427 -3753,3607:248,78,-64,0,0,0.0858415 -3754,3607:249,79,-64,0,0,0.091212 -3755,3614:249,149,-64,0,0,0.0833198 -3756,3615:140,150,-64,0,0,0.0818642 -3757,3615:141,151,-64,0,0,0.0815327 -3758,3615:142,152,-64,0,0,0.0800599 -3759,3615:143,153,-64,0,0,0.0774806 -3760,3615:144,154,-64,0,0,0.0758658 -3761,3615:245,155,-64,0,0,0.0755135 -3762,3615:246,156,-64,0,0,0.075063 -3763,3615:247,157,-64,0,0,0.0750773 -3764,3615:248,158,-64,0,0,0.0750702 -3765,3615:249,159,-64,0,0,0.0750488 -3766,3616:140,160,-64,0,0,0.0750273 -3767,3616:141,161,-64,0,0,0.0750273 -3768,3616:142,162,-64,0,0,0.0750131 -3769,3616:143,163,-64,0,0,0.0750345 -3770,3616:144,164,-64,0,0,0.075063 -3771,3616:245,165,-64,0,0,0.0750416 -3772,3616:246,166,-64,0,0,0.0750488 -3773,3616:247,167,-64,0,0,0.0750488 -3774,3616:248,168,-64,0,0,0.0750416 -3775,3616:249,169,-64,0,0,0.0750416 -3776,3617:140,170,-64,0,0,0.0750345 -3777,3617:141,171,-64,0,0,0.0750273 -3778,3617:142,172,-64,0,0,0.0750131 -3779,3617:143,173,-64,0,0,0.075006 -3780,3617:144,174,-64,0,0,0.0749988 -3781,3617:245,175,-64,0,0,0.0750131 -3782,3617:246,176,-64,0,0,0.0750201 -3783,3617:247,177,-64,0,0,0.0750273 -3784,3617:248,178,-64,0,0,0.0750345 -3785,3617:249,179,-64,0,0,0.0750488 -3786,3618:140,180,-64,0,0,0.0750558 -3787,5618:130,-180,-63,0,0,0.0750558 -3788,5617:239,-179,-63,0,0,0.075063 -3789,5617:238,-178,-63,0,0,0.075063 -3790,5617:237,-177,-63,0,0,0.075063 -3791,5617:236,-176,-63,0,0,0.0750915 -3792,5617:235,-175,-63,0,0,0.0751128 -3793,5617:134,-174,-63,0,0,0.0750843 -3794,5617:133,-173,-63,0,0,0.075063 -3795,5617:132,-172,-63,0,0,0.0750558 -3796,5617:131,-171,-63,0,0,0.0750416 -3797,5617:130,-170,-63,0,0,0.0750416 -3798,5616:239,-169,-63,0,0,0.0750345 -3799,5616:238,-168,-63,0,0,0.0750273 -3800,5616:237,-167,-63,0,0,0.0750201 -3801,5616:236,-166,-63,0,0,0.075006 -3802,5616:235,-165,-63,0,0,0.0749988 -3803,5616:134,-164,-63,0,0,0.075006 -3804,5616:133,-163,-63,0,0,0.0750201 -3805,5616:132,-162,-63,0,0,0.0750345 -3806,5616:131,-161,-63,0,0,0.0750488 -3807,5616:130,-160,-63,0,0,0.075063 -3808,5615:239,-159,-63,0,0,0.0750702 -3809,5615:238,-158,-63,0,0,0.0750773 -3810,5615:237,-157,-63,0,0,0.0750843 -3811,5615:236,-156,-63,0,0,0.0750915 -3812,5615:235,-155,-63,0,0,0.0751059 -3813,5615:134,-154,-63,0,0,0.07512 -3814,5615:133,-153,-63,0,0,0.0751416 -3815,5615:132,-152,-63,0,0,0.0751558 -3816,5615:131,-151,-63,0,0,0.075163 -3817,5615:130,-150,-63,0,0,0.0751701 -3818,5614:239,-149,-63,0,0,0.075163 -3819,5614:238,-148,-63,0,0,0.0751771 -3820,5614:237,-147,-63,0,0,0.0751771 -3821,5614:236,-146,-63,0,0,0.0752057 -3822,5614:235,-145,-63,0,0,0.0752201 -3823,5614:134,-144,-63,0,0,0.0751915 -3824,5614:133,-143,-63,0,0,0.0752415 -3825,5614:132,-142,-63,0,0,0.0754779 -3826,5614:131,-141,-63,0,0,0.0773559 -3827,5614:130,-140,-63,0,0,0.0762918 -3828,5613:239,-139,-63,0,0,0.0759956 -3829,5613:238,-138,-63,0,0,0.076234 -3830,5613:237,-137,-63,0,0,0.0762918 -3831,5613:236,-136,-63,0,0,0.0760245 -3832,5613:235,-135,-63,0,0,0.0758443 -3833,5613:134,-134,-63,0,0,0.0752844 -3834,5613:133,-133,-63,0,0,0.0756213 -3835,5613:132,-132,-63,0,0,0.0794792 -3836,5613:131,-131,-63,0,0,0.0815017 -3837,5613:130,-130,-63,0,0,0.0837208 -3838,5612:239,-129,-63,0,0,0.0777084 -3839,5612:238,-128,-63,0,0,0.0780552 -3840,5612:237,-127,-63,0,0,0.0810952 -3841,5612:236,-126,-63,0,0,0.0799164 -3842,5612:235,-125,-63,0,0,0.0789621 -3843,5612:134,-124,-63,0,0,0.0798256 -3844,5612:133,-123,-63,0,0,0.0796599 -3845,5612:132,-122,-63,0,0,0.0788427 -3846,5612:131,-121,-63,0,0,0.0789472 -3847,5612:130,-120,-63,0,0,0.0788351 -3848,5611:239,-119,-63,0,0,0.0790816 -3849,5611:238,-118,-63,0,0,0.0799314 -3850,5611:237,-117,-63,0,0,0.0799088 -3851,5611:236,-116,-63,0,0,0.0799542 -3852,5611:235,-115,-63,0,0,0.0807589 -3853,5611:134,-114,-63,0,0,0.0820496 -3854,5611:133,-113,-63,0,0,0.0816636 -3855,5611:132,-112,-63,0,0,0.0810415 -3856,5611:131,-111,-63,0,0,0.0808048 -3857,5611:130,-110,-63,0,0,0.081302 -3858,5610:239,-109,-63,0,0,0.0811258 -3859,5610:238,-108,-63,0,0,0.081571 -3860,5610:237,-107,-63,0,0,0.0825851 -3861,5610:236,-106,-63,0,0,0.0837367 -3862,5610:235,-105,-63,0,0,0.0824918 -3863,5610:134,-104,-63,0,0,0.082819 -3864,5610:133,-103,-63,0,0,0.0817175 -3865,5610:132,-102,-63,0,0,0.0810569 -3866,5610:131,-101,-63,0,0,0.0793366 -3867,5610:130,-100,-63,0,0,0.0780405 -3868,5609:239,-99,-63,0,0,0.077532 -3869,5609:238,-98,-63,0,0,0.0752129 -3870,5609:237,-97,-63,0,0,0.0750987 -3871,5609:236,-96,-63,0,0,0.0750987 -3872,5609:235,-95,-63,0,0,0.0750416 -3873,5609:134,-94,-63,0,0,0.0750915 -3874,5609:133,-93,-63,0,0,0.0752631 -3875,5609:132,-92,-63,0,0,0.0753272 -3876,5609:131,-91,-63,0,0,0.0751272 -3877,5609:130,-90,-63,0,0,0.075006 -3878,5608:239,-89,-63,0,0,0.0750345 -3879,5608:238,-88,-63,0,0,0.0750131 -3880,5608:237,-87,-63,0,0,0.0750131 -3881,5608:236,-86,-63,0,0,0.0750345 -3882,5608:235,-85,-63,0,0,0.0750345 -3883,5608:134,-84,-63,0,0,0.0750488 -3884,5608:133,-83,-63,0,0,0.0750558 -3885,5608:132,-82,-63,0,0,0.0750915 -3886,5608:131,-81,-63,0,0,0.0750843 -3887,5608:130,-80,-63,0,0,0.0750702 -3888,5607:239,-79,-63,0,0,0.075063 -3889,5607:238,-78,-63,0,0,0.0750702 -3890,5607:237,-77,-63,0,0,0.075063 -3891,5607:236,-76,-63,0,0,0.0750702 -3892,5607:235,-75,-63,0,0,0.0750558 -3893,5607:134,-74,-63,0,0,0.075313 -3894,5607:133,-73,-63,0,0,0.075442 -3895,5607:132,-72,-63,0,0,0.0756141 -3896,5607:131,-71,-63,0,0,0.0761834 -3897,5607:130,-70,-63,0,0,0.076713 -3898,5606:238,-68,-63,0,0,0.0829126 -3899,5606:130,-60,-63,0,0,0.0759523 -3900,5605:239,-59,-63,0,0,0.0754275 -3901,5605:238,-58,-63,0,0,0.0751344 -3902,5605:237,-57,-63,0,0,0.0750416 -3903,5605:236,-56,-63,0,0,0.0750345 -3904,5605:235,-55,-63,0,0,0.0750416 -3905,5605:134,-54,-63,0,0,0.0750416 -3906,5605:133,-53,-63,0,0,0.0750201 -3907,5605:132,-52,-63,0,0,0.0749988 -3908,5605:131,-51,-63,0,0,0.0749988 -3909,5605:130,-50,-63,0,0,0.0749916 -3910,5604:239,-49,-63,0,0,0.0749916 -3911,5604:238,-48,-63,0,0,0.0749846 -3912,5604:237,-47,-63,0,0,0.0749775 -3913,5604:236,-46,-63,0,0,0.0749775 -3914,5604:235,-45,-63,0,0,0.0749775 -3915,5604:134,-44,-63,0,0,0.0749775 -3916,5604:133,-43,-63,0,0,0.0749703 -3917,5604:132,-42,-63,0,0,0.0749703 -3918,5604:131,-41,-63,0,0,0.0749703 -3919,5604:130,-40,-63,0,0,0.0749703 -3920,5603:239,-39,-63,0,0,0.0749703 -3921,5603:238,-38,-63,0,0,0.0749631 -3922,5603:237,-37,-63,0,0,0.0749631 -3923,5603:236,-36,-63,0,0,0.0749631 -3924,5603:235,-35,-63,0,0,0.0749631 -3925,5603:134,-34,-63,0,0,0.0749631 -3926,5603:133,-33,-63,0,0,0.0749562 -3927,5603:132,-32,-63,0,0,0.0749562 -3928,5603:131,-31,-63,0,0,0.0749562 -3929,5603:130,-30,-63,0,0,0.0749631 -3930,5602:239,-29,-63,0,0,0.0749631 -3931,5602:238,-28,-63,0,0,0.0749631 -3932,5602:237,-27,-63,0,0,0.0749631 -3933,5602:236,-26,-63,0,0,0.0749631 -3934,5602:235,-25,-63,0,0,0.0749562 -3935,5602:134,-24,-63,0,0,0.0749562 -3936,5602:133,-23,-63,0,0,0.074949 -3937,5602:132,-22,-63,0,0,0.0749418 -3938,5602:131,-21,-63,0,0,0.0749346 -3939,5602:130,-20,-63,0,0,0.0749275 -3940,5601:239,-19,-63,0,0,0.0749205 -3941,5601:238,-18,-63,0,0,0.0749062 -3942,5601:237,-17,-63,0,0,0.074899 -3943,5601:236,-16,-63,0,0,0.074892 -3944,5601:235,-15,-63,0,0,0.0748849 -3945,5601:134,-14,-63,0,0,0.074892 -3946,5601:133,-13,-63,0,0,0.074892 -3947,5601:132,-12,-63,0,0,0.0748849 -3948,5601:131,-11,-63,0,0,0.0748777 -3949,5601:130,-10,-63,0,0,0.0748705 -3950,5600:239,-9,-63,0,0,0.0748705 -3951,5600:238,-8,-63,0,0,0.0748636 -3952,5600:237,-7,-63,0,0,0.0748564 -3953,5600:236,-6,-63,0,0,0.0748493 -3954,5600:235,-5,-63,0,0,0.0748349 -3955,5600:134,-4,-63,0,0,0.074828 -3956,5600:133,-3,-63,0,0,0.0748137 -3957,5600:132,-2,-63,0,0,0.0748137 -3958,5600:131,-1,-63,0,0,0.074828 -3959,3600:131,0,-63,0,0,0.0748349 -3960,3600:131,1,-63,0,0,0.0748705 -3961,3600:132,2,-63,0,0,0.0748349 -3962,3600:133,3,-63,0,0,0.0748208 -3963,3600:134,4,-63,0,0,0.0748208 -3964,3600:235,5,-63,0,0,0.074828 -3965,3600:236,6,-63,0,0,0.074828 -3966,3600:237,7,-63,0,0,0.0748564 -3967,3600:238,8,-63,0,0,0.0748493 -3968,3600:239,9,-63,0,0,0.0748564 -3969,3601:130,10,-63,0,0,0.074899 -3970,3601:131,11,-63,0,0,0.0749275 -3971,3601:132,12,-63,0,0,0.074949 -3972,3601:133,13,-63,0,0,0.0749562 -3973,3601:134,14,-63,0,0,0.0749631 -3974,3601:235,15,-63,0,0,0.0749418 -3975,3601:236,16,-63,0,0,0.0749418 -3976,3601:237,17,-63,0,0,0.0749346 -3977,3601:238,18,-63,0,0,0.0749133 -3978,3601:239,19,-63,0,0,0.0749275 -3979,3602:130,20,-63,0,0,0.0749205 -3980,3602:131,21,-63,0,0,0.0749133 -3981,3602:132,22,-63,0,0,0.0749133 -3982,3602:133,23,-63,0,0,0.0749205 -3983,3602:134,24,-63,0,0,0.0749205 -3984,3602:235,25,-63,0,0,0.0749205 -3985,3602:236,26,-63,0,0,0.0749275 -3986,3602:237,27,-63,0,0,0.0749275 -3987,3602:238,28,-63,0,0,0.0749346 -3988,3602:239,29,-63,0,0,0.0749562 -3989,3603:130,30,-63,0,0,0.0749562 -3990,3603:131,31,-63,0,0,0.0749775 -3991,3603:132,32,-63,0,0,0.0749916 -3992,3603:133,33,-63,0,0,0.0750345 -3993,3603:134,34,-63,0,0,0.0750345 -3994,3603:235,35,-63,0,0,0.0750416 -3995,3603:236,36,-63,0,0,0.0750702 -3996,3603:237,37,-63,0,0,0.0750488 -3997,3603:238,38,-63,0,0,0.0750345 -3998,3603:239,39,-63,0,0,0.0750345 -3999,3604:130,40,-63,0,0,0.0750416 -4000,3604:131,41,-63,0,0,0.0750558 -4001,3604:132,42,-63,0,0,0.0750558 -4002,3604:133,43,-63,0,0,0.0750488 -4003,3604:134,44,-63,0,0,0.0750558 -4004,3604:235,45,-63,0,0,0.0750201 -4005,3604:236,46,-63,0,0,0.0747568 -4006,3604:238,48,-63,0,0,0.0815402 -4007,3606:235,65,-63,0,0,0.0795694 -4008,3606:236,66,-63,0,0,0.0792915 -4009,3606:237,67,-63,0,0,0.0787159 -4010,3606:238,68,-63,0,0,0.0776718 -4011,3606:239,69,-63,0,0,0.0785446 -4012,3607:130,70,-63,0,0,0.07751 -4013,3607:131,71,-63,0,0,0.0774658 -4014,3607:132,72,-63,0,0,0.0777307 -4015,3607:134,74,-63,0,0,0.0773852 -4016,3607:235,75,-63,0,0,0.0774584 -4017,3607:236,76,-63,0,0,0.0788276 -4018,3607:237,77,-63,0,0,0.0794342 -4019,3607:238,78,-63,0,0,0.081302 -4020,3607:239,79,-63,0,0,0.0837367 -4021,3608:130,80,-63,0,0,0.0864804 -4022,3608:131,81,-63,0,0,0.0908889 -4023,3614:236,146,-63,0,0,0.0848948 -4024,3614:237,147,-63,0,0,0.0829987 -4025,3614:238,148,-63,0,0,0.0812406 -4026,3614:239,149,-63,0,0,0.0810415 -4027,3615:130,150,-63,0,0,0.0785893 -4028,3615:131,151,-63,0,0,0.0766257 -4029,3615:132,152,-63,0,0,0.0750843 -4030,3615:133,153,-63,0,0,0.0750987 -4031,3615:134,154,-63,0,0,0.0750987 -4032,3615:235,155,-63,0,0,0.0750843 -4033,3615:236,156,-63,0,0,0.0750987 -4034,3615:237,157,-63,0,0,0.0750843 -4035,3615:238,158,-63,0,0,0.0750273 -4036,3615:239,159,-63,0,0,0.0749988 -4037,3616:130,160,-63,0,0,0.075006 -4038,3616:131,161,-63,0,0,0.0750131 -4039,3616:132,162,-63,0,0,0.0750201 -4040,3616:133,163,-63,0,0,0.0750201 -4041,3616:134,164,-63,0,0,0.0749346 -4042,3616:235,165,-63,0,0,0.0751843 -4043,3616:236,166,-63,0,0,0.0750416 -4044,3616:237,167,-63,0,0,0.0750345 -4045,3616:238,168,-63,0,0,0.0750345 -4046,3616:239,169,-63,0,0,0.0750345 -4047,3617:130,170,-63,0,0,0.0750273 -4048,3617:131,171,-63,0,0,0.0750273 -4049,3617:132,172,-63,0,0,0.0750273 -4050,3617:133,173,-63,0,0,0.0750273 -4051,3617:134,174,-63,0,0,0.0750201 -4052,3617:235,175,-63,0,0,0.0750131 -4053,3617:236,176,-63,0,0,0.0750345 -4054,3617:237,177,-63,0,0,0.0750416 -4055,3617:238,178,-63,0,0,0.0750488 -4056,3617:239,179,-63,0,0,0.0750558 -4057,3618:130,180,-63,0,0,0.0750558 -4058,5618:120,-180,-62,0,0,0.0750416 -4059,5617:229,-179,-62,0,0,0.0750416 -4060,5617:228,-178,-62,0,0,0.075063 -4061,5617:227,-177,-62,0,0,0.0751059 -4062,5617:226,-176,-62,0,0,0.0752057 -4063,5617:225,-175,-62,0,0,0.07512 -4064,5617:124,-174,-62,0,0,0.0750773 -4065,5617:123,-173,-62,0,0,0.075063 -4066,5617:122,-172,-62,0,0,0.0750488 -4067,5617:121,-171,-62,0,0,0.0750416 -4068,5617:120,-170,-62,0,0,0.0750273 -4069,5616:229,-169,-62,0,0,0.0750201 -4070,5616:228,-168,-62,0,0,0.0750131 -4071,5616:227,-167,-62,0,0,0.0750131 -4072,5616:226,-166,-62,0,0,0.0750131 -4073,5616:225,-165,-62,0,0,0.0750131 -4074,5616:124,-164,-62,0,0,0.0750201 -4075,5616:123,-163,-62,0,0,0.0750345 -4076,5616:122,-162,-62,0,0,0.0750488 -4077,5616:121,-161,-62,0,0,0.0750488 -4078,5616:120,-160,-62,0,0,0.075063 -4079,5615:229,-159,-62,0,0,0.0750773 -4080,5615:228,-158,-62,0,0,0.0750843 -4081,5615:227,-157,-62,0,0,0.0750915 -4082,5615:226,-156,-62,0,0,0.0750987 -4083,5615:225,-155,-62,0,0,0.0751128 -4085,5615:123,-153,-62,0,0,0.0751344 -4086,5615:122,-152,-62,0,0,0.0751486 -4087,5615:121,-151,-62,0,0,0.0751558 -4088,5615:120,-150,-62,0,0,0.075163 -4089,5614:229,-149,-62,0,0,0.0751701 -4090,5614:228,-148,-62,0,0,0.0751843 -4091,5614:227,-147,-62,0,0,0.0751843 -4092,5614:226,-146,-62,0,0,0.0751987 -4093,5614:225,-145,-62,0,0,0.0753703 -4094,5614:124,-144,-62,0,0,0.0751987 -4095,5614:123,-143,-62,0,0,0.0752631 -4096,5614:122,-142,-62,0,0,0.0757435 -4097,5614:121,-141,-62,0,0,0.0783144 -4098,5614:120,-140,-62,0,0,0.0788128 -4099,5613:229,-139,-62,0,0,0.0773118 -4100,5613:228,-138,-62,0,0,0.0775465 -4101,5613:227,-137,-62,0,0,0.0817175 -4102,5613:226,-136,-62,0,0,0.0809803 -4103,5613:225,-135,-62,0,0,0.082983 -4104,5613:124,-134,-62,0,0,0.0855597 -4105,5613:123,-133,-62,0,0,0.0837997 -4106,5613:122,-132,-62,0,0,0.078448 -4107,5613:121,-131,-62,0,0,0.0803405 -4108,5613:120,-130,-62,0,0,0.0836184 -4109,5612:229,-129,-62,0,0,0.0854633 -4110,5612:228,-128,-62,0,0,0.0803252 -4111,5612:227,-127,-62,0,0,0.0811716 -4112,5612:226,-126,-62,0,0,0.0819955 -4113,5612:225,-125,-62,0,0,0.0813559 -4114,5612:124,-124,-62,0,0,0.0810263 -4115,5612:123,-123,-62,0,0,0.0807817 -4116,5612:122,-122,-62,0,0,0.0809192 -4117,5612:121,-121,-62,0,0,0.0812254 -4118,5612:120,-120,-62,0,0,0.0816481 -4119,5611:229,-119,-62,0,0,0.0829987 -4120,5611:228,-118,-62,0,0,0.0849747 -4121,5611:227,-117,-62,0,0,0.0844726 -4122,5611:226,-116,-62,0,0,0.0840287 -4123,5611:225,-115,-62,0,0,0.0869933 -4124,5611:124,-114,-62,0,0,0.0839655 -4125,5611:123,-113,-62,0,0,0.0840526 -4126,5611:122,-112,-62,0,0,0.0841712 -4127,5611:121,-111,-62,0,0,0.0825308 -4128,5611:120,-110,-62,0,0,0.0823131 -4129,5610:229,-109,-62,0,0,0.0817405 -4130,5610:228,-108,-62,0,0,0.0815557 -4131,5610:227,-107,-62,0,0,0.083116 -4132,5610:226,-106,-62,0,0,0.0863913 -4133,5610:225,-105,-62,0,0,0.0846556 -4134,5610:124,-104,-62,0,0,0.0829205 -4135,5610:123,-103,-62,0,0,0.0817947 -4136,5610:122,-102,-62,0,0,0.0813252 -4137,5610:121,-101,-62,0,0,0.0804847 -4138,5610:120,-100,-62,0,0,0.0766983 -4139,5609:229,-99,-62,0,0,0.0765457 -4140,5609:228,-98,-62,0,0,0.0750345 -4141,5609:227,-97,-62,0,0,0.0750702 -4142,5609:226,-96,-62,0,0,0.0750488 -4143,5609:225,-95,-62,0,0,0.0754492 -4144,5609:124,-94,-62,0,0,0.0756285 -4145,5609:123,-93,-62,0,0,0.0755998 -4146,5609:122,-92,-62,0,0,0.0752916 -4147,5609:121,-91,-62,0,0,0.0753489 -4148,5609:120,-90,-62,0,0,0.0751771 -4149,5608:229,-89,-62,0,0,0.0750773 -4150,5608:228,-88,-62,0,0,0.0751344 -4151,5608:227,-87,-62,0,0,0.0752986 -4152,5608:226,-86,-62,0,0,0.0750488 -4153,5608:225,-85,-62,0,0,0.075729 -4154,5608:124,-84,-62,0,0,0.075837 -4155,5608:123,-83,-62,0,0,0.0758515 -4156,5608:122,-82,-62,0,0,0.0758298 -4157,5608:121,-81,-62,0,0,0.0763427 -4158,5608:120,-80,-62,0,0,0.0764803 -4159,5607:229,-79,-62,0,0,0.0766912 -4160,5607:228,-78,-62,0,0,0.0772899 -4161,5607:227,-77,-62,0,0,0.0756787 -4162,5607:226,-76,-62,0,0,0.0754061 -4163,5607:225,-75,-62,0,0,0.0756787 -4164,5607:124,-74,-62,0,0,0.0764949 -4165,5607:123,-73,-62,0,0,0.0765457 -4166,5607:122,-72,-62,0,0,0.0772092 -4167,5607:121,-71,-62,0,0,0.0769462 -4168,5607:120,-70,-62,0,0,0.0766912 -4169,5606:229,-69,-62,0,0,0.0785299 -4170,5606:120,-60,-62,0,0,0.0774217 -4171,5605:229,-59,-62,0,0,0.0752487 -4172,5605:228,-58,-62,0,0,0.0751344 -4173,5605:227,-57,-62,0,0,0.0751128 -4174,5605:226,-56,-62,0,0,0.0750558 -4175,5605:225,-55,-62,0,0,0.0750416 -4176,5605:124,-54,-62,0,0,0.0750488 -4177,5605:123,-53,-62,0,0,0.0750273 -4178,5605:122,-52,-62,0,0,0.075006 -4179,5605:121,-51,-62,0,0,0.0749988 -4180,5605:120,-50,-62,0,0,0.0749916 -4181,5604:229,-49,-62,0,0,0.0749846 -4182,5604:228,-48,-62,0,0,0.0749846 -4183,5604:227,-47,-62,0,0,0.0749775 -4184,5604:226,-46,-62,0,0,0.0749703 -4185,5604:225,-45,-62,0,0,0.0749775 -4186,5604:124,-44,-62,0,0,0.0749703 -4187,5604:123,-43,-62,0,0,0.0749703 -4188,5604:122,-42,-62,0,0,0.0749775 -4189,5604:121,-41,-62,0,0,0.0749775 -4190,5604:120,-40,-62,0,0,0.0749703 -4191,5603:229,-39,-62,0,0,0.0749703 -4192,5603:228,-38,-62,0,0,0.0749631 -4193,5603:227,-37,-62,0,0,0.0749631 -4194,5603:226,-36,-62,0,0,0.0749631 -4195,5603:225,-35,-62,0,0,0.0749631 -4196,5603:124,-34,-62,0,0,0.0749631 -4197,5603:123,-33,-62,0,0,0.0749631 -4198,5603:122,-32,-62,0,0,0.0749631 -4199,5603:121,-31,-62,0,0,0.0749703 -4200,5603:120,-30,-62,0,0,0.0749631 -4201,5602:229,-29,-62,0,0,0.0749631 -4202,5602:228,-28,-62,0,0,0.0749631 -4203,5602:227,-27,-62,0,0,0.0749631 -4204,5602:226,-26,-62,0,0,0.0749631 -4205,5602:225,-25,-62,0,0,0.0749631 -4206,5602:124,-24,-62,0,0,0.0749562 -4207,5602:123,-23,-62,0,0,0.074949 -4208,5602:122,-22,-62,0,0,0.074949 -4209,5602:121,-21,-62,0,0,0.0749346 -4210,5602:120,-20,-62,0,0,0.0749275 -4211,5601:229,-19,-62,0,0,0.0749205 -4212,5601:228,-18,-62,0,0,0.0749062 -4213,5601:227,-17,-62,0,0,0.074892 -4214,5601:226,-16,-62,0,0,0.0748777 -4215,5601:225,-15,-62,0,0,0.0748705 -4216,5601:124,-14,-62,0,0,0.0748705 -4217,5601:123,-13,-62,0,0,0.0748777 -4218,5601:122,-12,-62,0,0,0.0748777 -4219,5601:121,-11,-62,0,0,0.0748705 -4220,5601:120,-10,-62,0,0,0.0748705 -4221,5600:229,-9,-62,0,0,0.0748636 -4222,5600:228,-8,-62,0,0,0.0748636 -4223,5600:227,-7,-62,0,0,0.0748636 -4224,5600:226,-6,-62,0,0,0.0748705 -4225,5600:225,-5,-62,0,0,0.0748705 -4226,5600:124,-4,-62,0,0,0.0748564 -4227,5600:123,-3,-62,0,0,0.0748421 -4228,5600:122,-2,-62,0,0,0.0748349 -4229,5600:121,-1,-62,0,0,0.0748349 -4230,3600:121,0,-62,0,0,0.0748421 -4231,3600:121,1,-62,0,0,0.0748493 -4232,3600:122,2,-62,0,0,0.074828 -4233,3600:123,3,-62,0,0,0.0748349 -4234,3600:124,4,-62,0,0,0.074828 -4235,3600:225,5,-62,0,0,0.0748564 -4236,3600:226,6,-62,0,0,0.074828 -4237,3600:227,7,-62,0,0,0.0748421 -4238,3600:228,8,-62,0,0,0.0748564 -4239,3600:229,9,-62,0,0,0.0748705 -4240,3601:120,10,-62,0,0,0.0748777 -4241,3601:121,11,-62,0,0,0.0749133 -4242,3601:122,12,-62,0,0,0.0749205 -4243,3601:123,13,-62,0,0,0.0749205 -4244,3601:124,14,-62,0,0,0.0749133 -4245,3601:225,15,-62,0,0,0.0749133 -4246,3601:226,16,-62,0,0,0.0749133 -4247,3601:227,17,-62,0,0,0.0749062 -4248,3601:228,18,-62,0,0,0.0749062 -4249,3601:229,19,-62,0,0,0.0749062 -4250,3602:120,20,-62,0,0,0.074899 -4251,3602:121,21,-62,0,0,0.0749062 -4252,3602:122,22,-62,0,0,0.0749133 -4253,3602:123,23,-62,0,0,0.0749133 -4254,3602:124,24,-62,0,0,0.0749062 -4255,3602:225,25,-62,0,0,0.0749133 -4256,3602:226,26,-62,0,0,0.0749133 -4257,3602:227,27,-62,0,0,0.0749133 -4258,3602:228,28,-62,0,0,0.0749275 -4259,3602:229,29,-62,0,0,0.0749418 -4260,3603:120,30,-62,0,0,0.0749631 -4261,3603:121,31,-62,0,0,0.0749775 -4262,3603:122,32,-62,0,0,0.0749846 -4263,3603:123,33,-62,0,0,0.0750131 -4264,3603:124,34,-62,0,0,0.0750416 -4265,3603:225,35,-62,0,0,0.0750345 -4266,3603:226,36,-62,0,0,0.0749846 -4267,3603:227,37,-62,0,0,0.0749916 -4268,3603:228,38,-62,0,0,0.0749988 -4269,3603:229,39,-62,0,0,0.075006 -4270,3604:120,40,-62,0,0,0.0750201 -4271,3604:121,41,-62,0,0,0.0750131 -4272,3604:122,42,-62,0,0,0.0750131 -4273,3604:123,43,-62,0,0,0.0750201 -4274,3604:124,44,-62,0,0,0.0750201 -4275,3604:225,45,-62,0,0,0.075006 -4276,3604:226,46,-62,0,0,0.0749988 -4277,3604:227,47,-62,0,0,0.0766983 -4278,3604:228,48,-62,0,0,0.0794943 -4279,3605:120,50,-62,0,0,0.0826631 -4280,3605:228,58,-62,0,0,0.0752844 -4281,3605:229,59,-62,0,0,0.0751915 -4282,3606:120,60,-62,0,0,0.0751128 -4283,3606:121,61,-62,0,0,0.0752343 -4284,3606:122,62,-62,0,0,0.0756141 -4285,3606:123,63,-62,0,0,0.0759956 -4286,3606:124,64,-62,0,0,0.077063 -4287,3606:225,65,-62,0,0,0.0767567 -4288,3606:226,66,-62,0,0,0.0762918 -4289,3606:227,67,-62,0,0,0.0752631 -4290,3606:228,68,-62,0,0,0.0748849 -4291,3606:229,69,-62,0,0,0.0749631 -4292,3607:120,70,-62,0,0,0.0749846 -4293,3607:121,71,-62,0,0,0.0751059 -4294,3607:122,72,-62,0,0,0.0750558 -4295,3607:124,74,-62,0,0,0.0752415 -4296,3607:225,75,-62,0,0,0.0774584 -4297,3607:226,76,-62,0,0,0.0774439 -4298,3607:227,77,-62,0,0,0.077797 -4299,3607:228,78,-62,0,0,0.0788502 -4300,3607:229,79,-62,0,0,0.0791417 -4301,3608:120,80,-62,0,0,0.0805 -4302,3608:121,81,-62,0,0,0.0830691 -4303,3608:122,82,-62,0,0,0.0904737 -4304,3614:225,145,-62,0,0,0.0787978 -4305,3614:226,146,-62,0,0,0.0792615 -4306,3614:227,147,-62,0,0,0.0751128 -4307,3614:228,148,-62,0,0,0.07512 -4308,3614:229,149,-62,0,0,0.075063 -4309,3615:120,150,-62,0,0,0.0750702 -4310,3615:121,151,-62,0,0,0.0750773 -4311,3615:122,152,-62,0,0,0.0750915 -4312,3615:123,153,-62,0,0,0.0750773 -4313,3615:124,154,-62,0,0,0.0750773 -4314,3615:225,155,-62,0,0,0.075063 -4315,3615:226,156,-62,0,0,0.0750488 -4316,3615:227,157,-62,0,0,0.0750201 -4317,3615:228,158,-62,0,0,0.0749988 -4318,3615:229,159,-62,0,0,0.075006 -4319,3616:120,160,-62,0,0,0.0750201 -4320,3616:121,161,-62,0,0,0.0750131 -4321,3616:122,162,-62,0,0,0.075006 -4322,3616:123,163,-62,0,0,0.075006 -4323,3616:124,164,-62,0,0,0.0750345 -4324,3616:225,165,-62,0,0,0.0750416 -4325,3616:226,166,-62,0,0,0.0750488 -4326,3616:227,167,-62,0,0,0.0750488 -4327,3616:228,168,-62,0,0,0.0750416 -4328,3616:229,169,-62,0,0,0.0750345 -4329,3617:120,170,-62,0,0,0.0750273 -4330,3617:121,171,-62,0,0,0.0750345 -4331,3617:122,172,-62,0,0,0.0750416 -4332,3617:123,173,-62,0,0,0.0750416 -4333,3617:124,174,-62,0,0,0.0750416 -4334,3617:225,175,-62,0,0,0.0750345 -4335,3617:226,176,-62,0,0,0.0750273 -4336,3617:227,177,-62,0,0,0.0750273 -4337,3617:228,178,-62,0,0,0.0750488 -4338,3617:229,179,-62,0,0,0.0750488 -4339,3618:120,180,-62,0,0,0.0750416 -4340,5618:110,-180,-61,0,0,0.075063 -4341,5617:219,-179,-61,0,0,0.07512 -4342,5617:218,-178,-61,0,0,0.0752986 -4343,5617:217,-177,-61,0,0,0.0757507 -4344,5617:216,-176,-61,0,0,0.0755854 -4345,5617:215,-175,-61,0,0,0.0752916 -4346,5617:114,-174,-61,0,0,0.0750702 -4347,5617:113,-173,-61,0,0,0.075063 -4348,5617:112,-172,-61,0,0,0.0750416 -4349,5617:111,-171,-61,0,0,0.0750273 -4350,5617:110,-170,-61,0,0,0.0750131 -4351,5616:219,-169,-61,0,0,0.075006 -4352,5616:218,-168,-61,0,0,0.0749988 -4353,5616:217,-167,-61,0,0,0.0749988 -4354,5616:216,-166,-61,0,0,0.075006 -4355,5616:215,-165,-61,0,0,0.0750131 -4356,5616:114,-164,-61,0,0,0.0750201 -4357,5616:113,-163,-61,0,0,0.0750345 -4358,5616:112,-162,-61,0,0,0.0750488 -4359,5616:111,-161,-61,0,0,0.0750558 -4360,5616:110,-160,-61,0,0,0.0750702 -4361,5615:219,-159,-61,0,0,0.0750773 -4362,5615:218,-158,-61,0,0,0.0750843 -4363,5615:217,-157,-61,0,0,0.0750843 -4364,5615:216,-156,-61,0,0,0.0750915 -4365,5615:215,-155,-61,0,0,0.0751558 -4366,5615:114,-154,-61,0,0,0.0752631 -4367,5615:113,-153,-61,0,0,0.0752916 -4368,5615:112,-152,-61,0,0,0.0752273 -4369,5615:111,-151,-61,0,0,0.0751915 -4370,5615:110,-150,-61,0,0,0.0752487 -4371,5614:219,-149,-61,0,0,0.0754779 -4372,5614:218,-148,-61,0,0,0.0753489 -4373,5614:217,-147,-61,0,0,0.0754921 -4374,5614:216,-146,-61,0,0,0.0758298 -4375,5614:215,-145,-61,0,0,0.0765457 -4376,5614:114,-144,-61,0,0,0.0781588 -4377,5614:113,-143,-61,0,0,0.0796523 -4378,5614:112,-142,-61,0,0,0.0805761 -4379,5614:111,-141,-61,0,0,0.0809803 -4380,5614:110,-140,-61,0,0,0.0814787 -4381,5613:219,-139,-61,0,0,0.0810646 -4382,5613:218,-138,-61,0,0,0.082593 -4383,5613:217,-137,-61,0,0,0.0850864 -4384,5613:216,-136,-61,0,0,0.0848468 -4385,5613:215,-135,-61,0,0,0.0847113 -4386,5613:114,-134,-61,0,0,0.0870421 -4387,5613:113,-133,-61,0,0,0.0873121 -4388,5613:112,-132,-61,0,0,0.0861402 -4389,5613:111,-131,-61,0,0,0.0817483 -4390,5613:110,-130,-61,0,0,0.082819 -4391,5612:219,-129,-61,0,0,0.0875743 -4392,5612:218,-128,-61,0,0,0.0855195 -4393,5612:217,-127,-61,0,0,0.0855756 -4394,5612:216,-126,-61,0,0,0.0850225 -4395,5612:215,-125,-61,0,0,0.0828892 -4396,5612:114,-124,-61,0,0,0.0830064 -4397,5612:113,-123,-61,0,0,0.0907447 -4398,5612:112,-122,-61,0,0,0.092627 -4399,5612:111,-121,-61,0,0,0.0867893 -4400,5612:110,-120,-61,0,0,0.0863913 -4401,5611:219,-119,-61,0,0,0.0897912 -4402,5611:218,-118,-61,0,0,0.090626 -4403,5611:217,-117,-61,0,0,0.0855837 -4404,5611:216,-116,-61,0,0,0.0881755 -4405,5611:215,-115,-61,0,0,0.0911184 -4406,5611:114,-114,-61,0,0,0.0909399 -4407,5611:113,-113,-61,0,0,0.0931205 -4408,5611:112,-112,-61,0,0,0.0903556 -4409,5611:111,-111,-61,0,0,0.0860997 -4410,5611:110,-110,-61,0,0,0.0860432 -4411,5610:219,-109,-61,0,0,0.086132 -4412,5610:218,-108,-61,0,0,0.0852548 -4413,5610:217,-107,-61,0,0,0.0890384 -4414,5610:216,-106,-61,0,0,0.090533 -4415,5610:215,-105,-61,0,0,0.0857849 -4416,5610:114,-104,-61,0,0,0.0862617 -4417,5610:113,-103,-61,0,0,0.0854793 -4418,5610:112,-102,-61,0,0,0.0835869 -4419,5610:111,-101,-61,0,0,0.0823363 -4420,5610:110,-100,-61,0,0,0.079007 -4421,5609:219,-99,-61,0,0,0.0764296 -4422,5609:218,-98,-61,0,0,0.077297 -4423,5609:217,-97,-61,0,0,0.0780184 -4424,5609:216,-96,-61,0,0,0.0777158 -4425,5609:215,-95,-61,0,0,0.0758298 -4426,5609:114,-94,-61,0,0,0.0769168 -4427,5609:113,-93,-61,0,0,0.0765384 -4428,5609:112,-92,-61,0,0,0.0754203 -4429,5609:111,-91,-61,0,0,0.0755998 -4430,5609:110,-90,-61,0,0,0.0759668 -4431,5608:219,-89,-61,0,0,0.0773485 -4432,5608:218,-88,-61,0,0,0.0854151 -4433,5608:217,-87,-61,0,0,0.0874924 -4434,5608:216,-86,-61,0,0,0.0807817 -4435,5608:215,-85,-61,0,0,0.0769973 -4436,5608:114,-84,-61,0,0,0.0758225 -4437,5608:113,-83,-61,0,0,0.0756932 -4438,5608:112,-82,-61,0,0,0.0762267 -4439,5608:111,-81,-61,0,0,0.0762196 -4440,5608:110,-80,-61,0,0,0.0758946 -4441,5607:219,-79,-61,0,0,0.0758443 -4442,5607:218,-78,-61,0,0,0.0760245 -4443,5607:217,-77,-61,0,0,0.0765893 -4444,5607:216,-76,-61,0,0,0.0770338 -4445,5607:215,-75,-61,0,0,0.0768514 -4446,5607:114,-74,-61,0,0,0.0789397 -4447,5607:113,-73,-61,0,0,0.0826319 -4448,5607:112,-72,-61,0,0,0.0796146 -4449,5607:111,-71,-61,0,0,0.0780184 -4450,5607:110,-70,-61,0,0,0.0775613 -4451,5606:219,-69,-61,0,0,0.0772899 -4452,5606:218,-68,-61,0,0,0.0771215 -4453,5606:217,-67,-61,0,0,0.0806293 -4454,5606:110,-60,-61,0,0,0.0801433 -4455,5605:219,-59,-61,0,0,0.0774806 -4456,5605:218,-58,-61,0,0,0.0753344 -4457,5605:217,-57,-61,0,0,0.0752631 -4458,5605:216,-56,-61,0,0,0.0751915 -4459,5605:215,-55,-61,0,0,0.0750915 -4460,5605:114,-54,-61,0,0,0.0750416 -4461,5605:113,-53,-61,0,0,0.0750416 -4462,5605:112,-52,-61,0,0,0.0750201 -4463,5605:111,-51,-61,0,0,0.0749988 -4464,5605:110,-50,-61,0,0,0.0749846 -4465,5604:219,-49,-61,0,0,0.0749775 -4466,5604:218,-48,-61,0,0,0.0749775 -4467,5604:217,-47,-61,0,0,0.0749631 -4468,5604:216,-46,-61,0,0,0.0749703 -4469,5604:215,-45,-61,0,0,0.0749775 -4470,5604:114,-44,-61,0,0,0.0749775 -4471,5604:113,-43,-61,0,0,0.0749703 -4472,5604:112,-42,-61,0,0,0.0749703 -4473,5604:111,-41,-61,0,0,0.0749703 -4474,5604:110,-40,-61,0,0,0.0749703 -4475,5603:219,-39,-61,0,0,0.0749703 -4476,5603:218,-38,-61,0,0,0.0749703 -4477,5603:217,-37,-61,0,0,0.0749703 -4478,5603:216,-36,-61,0,0,0.0749703 -4479,5603:215,-35,-61,0,0,0.0749703 -4480,5603:114,-34,-61,0,0,0.0749703 -4481,5603:113,-33,-61,0,0,0.0749703 -4482,5603:112,-32,-61,0,0,0.0749703 -4483,5603:111,-31,-61,0,0,0.0749703 -4484,5603:110,-30,-61,0,0,0.0749703 -4485,5602:219,-29,-61,0,0,0.0749703 -4486,5602:218,-28,-61,0,0,0.0749703 -4487,5602:217,-27,-61,0,0,0.0749703 -4488,5602:216,-26,-61,0,0,0.0749631 -4489,5602:215,-25,-61,0,0,0.0749631 -4490,5602:114,-24,-61,0,0,0.0749562 -4491,5602:113,-23,-61,0,0,0.0749562 -4492,5602:112,-22,-61,0,0,0.0749418 -4493,5602:111,-21,-61,0,0,0.0749346 -4494,5602:110,-20,-61,0,0,0.0749275 -4495,5601:219,-19,-61,0,0,0.0749205 -4496,5601:218,-18,-61,0,0,0.0749062 -4497,5601:217,-17,-61,0,0,0.074892 -4498,5601:216,-16,-61,0,0,0.0748705 -4499,5601:215,-15,-61,0,0,0.0748636 -4500,5601:114,-14,-61,0,0,0.0748705 -4501,5601:113,-13,-61,0,0,0.0748705 -4502,5601:112,-12,-61,0,0,0.0748705 -4503,5601:111,-11,-61,0,0,0.0748636 -4504,5601:110,-10,-61,0,0,0.0748705 -4505,5600:219,-9,-61,0,0,0.0748705 -4506,5600:218,-8,-61,0,0,0.0748705 -4507,5600:217,-7,-61,0,0,0.0748636 -4508,5600:216,-6,-61,0,0,0.0748636 -4509,5600:215,-5,-61,0,0,0.0748777 -4510,5600:114,-4,-61,0,0,0.0748777 -4511,5600:113,-3,-61,0,0,0.0748705 -4512,5600:112,-2,-61,0,0,0.0748636 -4513,5600:111,-1,-61,0,0,0.0748636 -4514,3600:111,0,-61,0,0,0.0748636 -4515,3600:111,1,-61,0,0,0.0748564 -4516,3600:112,2,-61,0,0,0.0748493 -4517,3600:113,3,-61,0,0,0.0748493 -4518,3600:114,4,-61,0,0,0.0748421 -4519,3600:215,5,-61,0,0,0.0748705 -4520,3600:216,6,-61,0,0,0.0748564 -4521,3600:217,7,-61,0,0,0.0748493 -4522,3600:218,8,-61,0,0,0.0748493 -4523,3600:219,9,-61,0,0,0.0748636 -4524,3601:110,10,-61,0,0,0.0748705 -4525,3601:111,11,-61,0,0,0.0748849 -4526,3601:112,12,-61,0,0,0.0748777 -4527,3601:113,13,-61,0,0,0.0748777 -4528,3601:114,14,-61,0,0,0.0748777 -4529,3601:215,15,-61,0,0,0.074892 -4530,3601:216,16,-61,0,0,0.074899 -4531,3601:217,17,-61,0,0,0.074892 -4532,3601:218,18,-61,0,0,0.0748705 -4533,3601:219,19,-61,0,0,0.0748564 -4534,3602:110,20,-61,0,0,0.0748636 -4535,3602:111,21,-61,0,0,0.0748564 -4536,3602:112,22,-61,0,0,0.0748636 -4537,3602:113,23,-61,0,0,0.0748705 -4538,3602:114,24,-61,0,0,0.0748777 -4539,3602:215,25,-61,0,0,0.074892 -4540,3602:216,26,-61,0,0,0.074892 -4541,3602:217,27,-61,0,0,0.074899 -4542,3602:218,28,-61,0,0,0.0749205 -4543,3602:219,29,-61,0,0,0.0749205 -4544,3603:110,30,-61,0,0,0.0749346 -4545,3603:111,31,-61,0,0,0.074949 -4546,3603:112,32,-61,0,0,0.0749562 -4547,3603:113,33,-61,0,0,0.0749703 -4548,3603:114,34,-61,0,0,0.0750273 -4549,3603:215,35,-61,0,0,0.0749775 -4550,3603:216,36,-61,0,0,0.0749775 -4551,3603:217,37,-61,0,0,0.0749703 -4552,3603:218,38,-61,0,0,0.0749775 -4553,3603:219,39,-61,0,0,0.0749703 -4554,3604:110,40,-61,0,0,0.0749775 -4555,3604:111,41,-61,0,0,0.0749916 -4556,3604:112,42,-61,0,0,0.0749846 -4557,3604:113,43,-61,0,0,0.0749846 -4558,3604:114,44,-61,0,0,0.0749916 -4559,3604:215,45,-61,0,0,0.0750131 -4560,3604:216,46,-61,0,0,0.075006 -4561,3604:217,47,-61,0,0,0.075006 -4562,3604:218,48,-61,0,0,0.0750201 -4563,3604:219,49,-61,0,0,0.0751128 -4564,3605:110,50,-61,0,0,0.0749275 -4565,3605:217,57,-61,0,0,0.0752343 -4566,3605:218,58,-61,0,0,0.0752129 -4567,3605:219,59,-61,0,0,0.0751128 -4568,3606:110,60,-61,0,0,0.0751128 -4569,3606:111,61,-61,0,0,0.0750416 -4570,3606:112,62,-61,0,0,0.0749916 -4571,3606:113,63,-61,0,0,0.0749775 -4572,3606:114,64,-61,0,0,0.0749062 -4573,3606:215,65,-61,0,0,0.0749205 -4574,3606:216,66,-61,0,0,0.0749205 -4575,3606:217,67,-61,0,0,0.0749346 -4576,3606:218,68,-61,0,0,0.0749418 -4577,3606:219,69,-61,0,0,0.074949 -4578,3607:110,70,-61,0,0,0.074949 -4579,3607:111,71,-61,0,0,0.0749418 -4580,3607:112,72,-61,0,0,0.0749418 -4581,3607:114,74,-61,0,0,0.075722 -4582,3607:215,75,-61,0,0,0.074949 -4583,3607:216,76,-61,0,0,0.0749346 -4584,3607:217,77,-61,0,0,0.0751059 -4585,3607:218,78,-61,0,0,0.0749062 -4586,3607:219,79,-61,0,0,0.0749346 -4587,3608:110,80,-61,0,0,0.0749346 -4588,3608:111,81,-61,0,0,0.0752772 -4589,3608:113,83,-61,0,0,0.0753847 -4590,3608:219,89,-61,0,0,0.0753344 -4591,3609:110,90,-61,0,0,0.0753489 -4592,3609:111,91,-61,0,0,0.0756068 -4593,3609:112,92,-61,0,0,0.0771215 -4594,3609:113,93,-61,0,0,0.0784555 -4595,3609:114,94,-61,0,0,0.0869034 -4596,3610:218,108,-61,0,0,0.0750488 -4597,3610:219,109,-61,0,0,0.0792915 -4598,3611:110,110,-61,0,0,0.0853428 -4599,3611:215,115,-61,0,0,0.0755352 -4600,3611:217,117,-61,0,0,0.0753775 -4601,3611:218,118,-61,0,0,0.0751558 -4602,3611:219,119,-61,0,0,0.0750773 -4603,3612:110,120,-61,0,0,0.0750488 -4604,3612:111,121,-61,0,0,0.0751486 -4605,3612:112,122,-61,0,0,0.0752343 -4606,3612:113,123,-61,0,0,0.0750416 -4607,3612:217,127,-61,0,0,0.0802948 -4608,3612:218,128,-61,0,0,0.0803859 -4609,3612:219,129,-61,0,0,0.0774658 -4610,3613:110,130,-61,0,0,0.0819568 -4611,3613:219,139,-61,0,0,0.0893055 -4612,3614:110,140,-61,0,0,0.0890384 -4613,3614:111,141,-61,0,0,0.0883988 -4614,3614:112,142,-61,0,0,0.0878458 -4615,3614:113,143,-61,0,0,0.0862454 -4616,3614:114,144,-61,0,0,0.0871566 -4617,3614:215,145,-61,0,0,0.0834139 -4618,3614:216,146,-61,0,0,0.0768076 -4619,3614:217,147,-61,0,0,0.0752201 -4620,3614:218,148,-61,0,0,0.0750702 -4621,3614:219,149,-61,0,0,0.0750416 -4622,3615:110,150,-61,0,0,0.0750416 -4623,3615:111,151,-61,0,0,0.0750488 -4624,3615:112,152,-61,0,0,0.0750416 -4625,3615:113,153,-61,0,0,0.0750201 -4626,3615:114,154,-61,0,0,0.075006 -4627,3615:215,155,-61,0,0,0.0749916 -4628,3615:216,156,-61,0,0,0.0749846 -4629,3615:217,157,-61,0,0,0.0749916 -4630,3615:218,158,-61,0,0,0.0750131 -4631,3615:219,159,-61,0,0,0.0750345 -4632,3616:110,160,-61,0,0,0.0750131 -4633,3616:111,161,-61,0,0,0.0749703 -4634,3616:112,162,-61,0,0,0.0749205 -4635,3616:113,163,-61,0,0,0.075063 -4636,3616:114,164,-61,0,0,0.0750488 -4637,3616:215,165,-61,0,0,0.0750345 -4638,3616:216,166,-61,0,0,0.0750558 -4639,3616:217,167,-61,0,0,0.0750488 -4640,3616:218,168,-61,0,0,0.0750345 -4641,3616:219,169,-61,0,0,0.0750273 -4642,3617:110,170,-61,0,0,0.0750345 -4643,3617:111,171,-61,0,0,0.0750488 -4644,3617:112,172,-61,0,0,0.0750488 -4645,3617:113,173,-61,0,0,0.0750416 -4646,3617:114,174,-61,0,0,0.0750416 -4647,3617:215,175,-61,0,0,0.0750201 -4648,3617:216,176,-61,0,0,0.0750201 -4649,3617:217,177,-61,0,0,0.0750345 -4650,3617:218,178,-61,0,0,0.0750416 -4651,3617:219,179,-61,0,0,0.0750488 -4652,3618:110,180,-61,0,0,0.075063 -4653,5618:100,-180,-60,0,0,0.0751701 -4654,5617:209,-179,-60,0,0,0.075729 -4655,5617:208,-178,-60,0,0,0.0763789 -4656,5617:207,-177,-60,0,0,0.0755781 -4657,5617:206,-176,-60,0,0,0.0756068 -4658,5617:205,-175,-60,0,0,0.0756932 -4659,5617:104,-174,-60,0,0,0.0753703 -4660,5617:103,-173,-60,0,0,0.0751416 -4661,5617:102,-172,-60,0,0,0.0750702 -4662,5617:101,-171,-60,0,0,0.0750488 -4663,5617:100,-170,-60,0,0,0.0750273 -4664,5616:209,-169,-60,0,0,0.0750201 -4665,5616:208,-168,-60,0,0,0.0750131 -4666,5616:207,-167,-60,0,0,0.0750131 -4667,5616:206,-166,-60,0,0,0.075006 -4668,5616:205,-165,-60,0,0,0.0751558 -4669,5616:104,-164,-60,0,0,0.0753489 -4670,5616:103,-163,-60,0,0,0.0750488 -4671,5616:102,-162,-60,0,0,0.0750416 -4672,5616:101,-161,-60,0,0,0.0750558 -4673,5616:100,-160,-60,0,0,0.0751059 -4674,5615:209,-159,-60,0,0,0.0753703 -4675,5615:208,-158,-60,0,0,0.0757937 -4676,5615:207,-157,-60,0,0,0.0766184 -4677,5615:206,-156,-60,0,0,0.0773118 -4678,5615:205,-155,-60,0,0,0.0774952 -4679,5615:104,-154,-60,0,0,0.077657 -4680,5615:103,-153,-60,0,0,0.078783 -4681,5615:102,-152,-60,0,0,0.0799844 -4682,5615:101,-151,-60,0,0,0.0774145 -4683,5615:100,-150,-60,0,0,0.0783515 -4684,5614:209,-149,-60,0,0,0.0816789 -4685,5614:208,-148,-60,0,0,0.079374 -4686,5614:207,-147,-60,0,0,0.0785371 -4687,5614:206,-146,-60,0,0,0.0794342 -4688,5614:205,-145,-60,0,0,0.0803175 -4689,5614:104,-144,-60,0,0,0.0832023 -4690,5614:103,-143,-60,0,0,0.0842505 -4691,5614:102,-142,-60,0,0,0.0829596 -4692,5614:101,-141,-60,0,0,0.0832099 -4693,5614:100,-140,-60,0,0,0.0830455 -4694,5613:209,-139,-60,0,0,0.0818717 -4695,5613:208,-138,-60,0,0,0.0832884 -4696,5613:207,-137,-60,0,0,0.0859382 -4697,5613:206,-136,-60,0,0,0.0842505 -4698,5613:205,-135,-60,0,0,0.0849906 -4699,5613:104,-134,-60,0,0,0.0876811 -4700,5613:103,-133,-60,0,0,0.0903893 -4701,5613:102,-132,-60,0,0,0.0916986 -4702,5613:101,-131,-60,0,0,0.0872464 -4703,5613:100,-130,-60,0,0,0.0853348 -4704,5612:209,-129,-60,0,0,0.0891885 -4705,5612:208,-128,-60,0,0,0.088465 -4706,5612:207,-127,-60,0,0,0.0868383 -4707,5612:206,-126,-60,0,0,0.084831 -4708,5612:205,-125,-60,0,0,0.085624 -4709,5612:104,-124,-60,0,0,0.0901699 -4710,5612:103,-123,-60,0,0,0.0965957 -4711,5612:102,-122,-60,0,0,0.0970269 -4712,5612:101,-121,-60,0,0,0.0968562 -4713,5612:100,-120,-60,0,0,0.0966137 -4714,5611:209,-119,-60,0,0,0.0969459 -4715,5611:208,-118,-60,0,0,0.0979491 -4716,5611:207,-117,-60,0,0,0.0976951 -4717,5611:206,-116,-60,0,0,0.0945267 -4718,5611:205,-115,-60,0,0,0.0911013 -4719,5611:104,-114,-60,0,0,0.0927135 -4720,5611:103,-113,-60,0,0,0.0949233 -4721,5611:102,-112,-60,0,0,0.0957562 -4722,5611:101,-111,-60,0,0,0.0957296 -4723,5611:100,-110,-60,0,0,0.0949055 -4724,5610:209,-109,-60,0,0,0.0953833 -4725,5610:208,-108,-60,0,0,0.0957652 -4726,5610:207,-107,-60,0,0,0.0945707 -4727,5610:206,-106,-60,0,0,0.0902373 -4728,5610:205,-105,-60,0,0,0.0951441 -4729,5610:104,-104,-60,0,0,0.0989888 -4730,5610:103,-103,-60,0,0,0.090533 -4731,5610:102,-102,-60,0,0,0.0855756 -4732,5610:101,-101,-60,0,0,0.083257 -4733,5610:100,-100,-60,0,0,0.082414 -4734,5609:209,-99,-60,0,0,0.0842585 -4735,5609:208,-98,-60,0,0,0.088349 -4736,5609:207,-97,-60,0,0,0.0862859 -4737,5609:206,-96,-60,0,0,0.0785744 -4738,5609:205,-95,-60,0,0,0.0778634 -4739,5609:104,-94,-60,0,0,0.0809192 -4740,5609:103,-93,-60,0,0,0.0830925 -4741,5609:102,-92,-60,0,0,0.0836814 -4742,5609:101,-91,-60,0,0,0.0849825 -4743,5609:100,-90,-60,0,0,0.0871975 -4744,5608:209,-89,-60,0,0,0.0871648 -4745,5608:208,-88,-60,0,0,0.0885149 -4746,5608:207,-87,-60,0,0,0.0921703 -4747,5608:206,-86,-60,0,0,0.0874103 -4748,5608:205,-85,-60,0,0,0.0789322 -4749,5608:104,-84,-60,0,0,0.0759668 -4750,5608:103,-83,-60,0,0,0.0763354 -4751,5608:102,-82,-60,0,0,0.0761111 -4752,5608:101,-81,-60,0,0,0.0761761 -4753,5608:100,-80,-60,0,0,0.0754849 -4754,5607:209,-79,-60,0,0,0.0757147 -4755,5607:208,-78,-60,0,0,0.0786266 -4756,5607:207,-77,-60,0,0,0.0835399 -4757,5607:206,-76,-60,0,0,0.0795921 -4758,5607:205,-75,-60,0,0,0.0792691 -4759,5607:104,-74,-60,0,0,0.0847113 -4760,5607:103,-73,-60,0,0,0.089699 -4761,5607:102,-72,-60,0,0,0.0860837 -4762,5607:101,-71,-60,0,0,0.0802948 -4763,5607:100,-70,-60,0,0,0.0785968 -4764,5606:209,-69,-60,0,0,0.0780922 -4765,5606:208,-68,-60,0,0,0.0777601 -4766,5606:207,-67,-60,0,0,0.078463 -4767,5606:205,-65,-60,0,0,0.0924201 -4768,5606:100,-60,-60,0,0,0.0801736 -4769,5605:209,-59,-60,0,0,0.0795168 -4770,5605:208,-58,-60,0,0,0.0775026 -4771,5605:207,-57,-60,0,0,0.075313 -4772,5605:206,-56,-60,0,0,0.0752559 -4773,5605:205,-55,-60,0,0,0.0751701 -4774,5605:104,-54,-60,0,0,0.0750558 -4775,5605:103,-53,-60,0,0,0.0750345 -4776,5605:102,-52,-60,0,0,0.0750345 -4777,5605:101,-51,-60,0,0,0.0749988 -4778,5605:100,-50,-60,0,0,0.0749846 -4779,5604:209,-49,-60,0,0,0.0749846 -4780,5604:208,-48,-60,0,0,0.0749703 -4781,5604:207,-47,-60,0,0,0.0749703 -4782,5604:206,-46,-60,0,0,0.0749703 -4783,5604:205,-45,-60,0,0,0.0749631 -4784,5604:104,-44,-60,0,0,0.0749631 -4785,5604:103,-43,-60,0,0,0.0749631 -4786,5604:102,-42,-60,0,0,0.0749631 -4787,5604:101,-41,-60,0,0,0.0749631 -4788,5604:100,-40,-60,0,0,0.0749703 -4789,5603:209,-39,-60,0,0,0.0749703 -4790,5603:208,-38,-60,0,0,0.0749703 -4791,5603:207,-37,-60,0,0,0.0749703 -4792,5603:206,-36,-60,0,0,0.0749703 -4793,5603:205,-35,-60,0,0,0.0749703 -4794,5603:104,-34,-60,0,0,0.0749703 -4795,5603:103,-33,-60,0,0,0.0749703 -4796,5603:102,-32,-60,0,0,0.0749703 -4797,5603:101,-31,-60,0,0,0.0749775 -4798,5603:100,-30,-60,0,0,0.0749775 -4799,5602:209,-29,-60,0,0,0.0749703 -4800,5602:208,-28,-60,0,0,0.0749703 -4801,5602:207,-27,-60,0,0,0.0749631 -4802,5602:206,-26,-60,0,0,0.0749631 -4803,5602:205,-25,-60,0,0,0.0749631 -4804,5602:104,-24,-60,0,0,0.0749562 -4805,5602:103,-23,-60,0,0,0.074949 -4806,5602:102,-22,-60,0,0,0.0749418 -4807,5602:101,-21,-60,0,0,0.0749346 -4808,5602:100,-20,-60,0,0,0.0749275 -4809,5601:209,-19,-60,0,0,0.0749205 -4810,5601:208,-18,-60,0,0,0.0749062 -4811,5601:207,-17,-60,0,0,0.074892 -4812,5601:206,-16,-60,0,0,0.0748777 -4813,5601:205,-15,-60,0,0,0.0748636 -4814,5601:104,-14,-60,0,0,0.0748636 -4815,5601:103,-13,-60,0,0,0.0748705 -4816,5601:102,-12,-60,0,0,0.0748636 -4817,5601:101,-11,-60,0,0,0.0748564 -4818,5601:100,-10,-60,0,0,0.0748564 -4819,5600:209,-9,-60,0,0,0.0748636 -4820,5600:208,-8,-60,0,0,0.0748705 -4821,5600:207,-7,-60,0,0,0.0748636 -4822,5600:206,-6,-60,0,0,0.0748564 -4823,5600:205,-5,-60,0,0,0.0748564 -4824,5600:104,-4,-60,0,0,0.0748636 -4825,5600:103,-3,-60,0,0,0.0748636 -4826,5600:102,-2,-60,0,0,0.0748636 -4827,5600:101,-1,-60,0,0,0.0748705 -4828,3600:101,0,-60,0,0,0.0748777 -4829,3600:101,1,-60,0,0,0.0748636 -4830,3600:102,2,-60,0,0,0.0748636 -4831,3600:103,3,-60,0,0,0.0748636 -4832,3600:104,4,-60,0,0,0.0748705 -4833,3600:205,5,-60,0,0,0.0748705 -4834,3600:206,6,-60,0,0,0.0748777 -4835,3600:207,7,-60,0,0,0.0748777 -4836,3600:208,8,-60,0,0,0.0748705 -4837,3600:209,9,-60,0,0,0.0748636 -4838,3601:100,10,-60,0,0,0.0748564 -4839,3601:101,11,-60,0,0,0.0748636 -4840,3601:102,12,-60,0,0,0.0748564 -4841,3601:103,13,-60,0,0,0.0748705 -4842,3601:104,14,-60,0,0,0.0748777 -4843,3601:205,15,-60,0,0,0.0748636 -4844,3601:206,16,-60,0,0,0.0748636 -4845,3601:207,17,-60,0,0,0.0748636 -4846,3601:208,18,-60,0,0,0.0748493 -4847,3601:209,19,-60,0,0,0.074828 -4848,3602:100,20,-60,0,0,0.0748349 -4849,3602:101,21,-60,0,0,0.0748421 -4850,3602:102,22,-60,0,0,0.0748421 -4851,3602:103,23,-60,0,0,0.0748493 -4852,3602:104,24,-60,0,0,0.0748564 -4853,3602:205,25,-60,0,0,0.0748636 -4854,3602:206,26,-60,0,0,0.0748777 -4855,3602:207,27,-60,0,0,0.074892 -4856,3602:208,28,-60,0,0,0.0749133 -4857,3602:209,29,-60,0,0,0.0749205 -4858,3603:100,30,-60,0,0,0.0748849 -4859,3603:101,31,-60,0,0,0.0748636 -4860,3603:102,32,-60,0,0,0.0749205 -4861,3603:103,33,-60,0,0,0.0749562 -4862,3603:104,34,-60,0,0,0.0749916 -4863,3603:205,35,-60,0,0,0.0749703 -4864,3603:206,36,-60,0,0,0.0749418 -4865,3603:207,37,-60,0,0,0.0749205 -4866,3603:208,38,-60,0,0,0.0749133 -4867,3603:209,39,-60,0,0,0.074892 -4868,3604:100,40,-60,0,0,0.074899 -4869,3604:101,41,-60,0,0,0.0749275 -4870,3604:102,42,-60,0,0,0.0749418 -4871,3604:103,43,-60,0,0,0.0749916 -4872,3604:104,44,-60,0,0,0.0749846 -4873,3604:205,45,-60,0,0,0.0749916 -4874,3604:206,46,-60,0,0,0.0750131 -4875,3604:207,47,-60,0,0,0.0750416 -4876,3604:208,48,-60,0,0,0.0750558 -4877,3604:209,49,-60,0,0,0.0750773 -4878,3605:100,50,-60,0,0,0.0750773 -4879,3605:101,51,-60,0,0,0.0750843 -4880,3605:102,52,-60,0,0,0.0750915 -4881,3605:103,53,-60,0,0,0.0750488 -4882,3605:104,54,-60,0,0,0.0750273 -4883,3605:205,55,-60,0,0,0.0751128 -4884,3605:206,56,-60,0,0,0.0751558 -4885,3605:207,57,-60,0,0,0.0751344 -4886,3605:208,58,-60,0,0,0.0751128 -4887,3605:209,59,-60,0,0,0.0750843 -4888,3606:100,60,-60,0,0,0.0750201 -4889,3606:101,61,-60,0,0,0.0749916 -4890,3606:102,62,-60,0,0,0.0749988 -4891,3606:103,63,-60,0,0,0.0749988 -4892,3606:104,64,-60,0,0,0.0749703 -4893,3606:205,65,-60,0,0,0.074949 -4894,3606:206,66,-60,0,0,0.0749562 -4895,3606:207,67,-60,0,0,0.0749346 -4896,3606:208,68,-60,0,0,0.074949 -4897,3606:209,69,-60,0,0,0.074949 -4898,3607:100,70,-60,0,0,0.0749418 -4899,3607:101,71,-60,0,0,0.0749346 -4900,3607:102,72,-60,0,0,0.074949 -4901,3607:104,74,-60,0,0,0.0750131 -4902,3607:205,75,-60,0,0,0.0749631 -4903,3607:206,76,-60,0,0,0.0749418 -4904,3607:207,77,-60,0,0,0.074949 -4905,3607:208,78,-60,0,0,0.074949 -4906,3607:209,79,-60,0,0,0.0749631 -4907,3608:100,80,-60,0,0,0.0749846 -4908,3608:101,81,-60,0,0,0.0750345 -4909,3608:102,82,-60,0,0,0.07512 -4910,3608:103,83,-60,0,0,0.0751416 -4911,3608:104,84,-60,0,0,0.0751128 -4912,3608:205,85,-60,0,0,0.0751272 -4913,3608:206,86,-60,0,0,0.0751272 -4914,3608:207,87,-60,0,0,0.07512 -4915,3608:208,88,-60,0,0,0.07512 -4916,3608:209,89,-60,0,0,0.0750843 -4917,3609:100,90,-60,0,0,0.0750773 -4918,3609:101,91,-60,0,0,0.0750558 -4919,3609:102,92,-60,0,0,0.0750558 -4920,3609:103,93,-60,0,0,0.0750488 -4921,3609:104,94,-60,0,0,0.0750488 -4922,3609:205,95,-60,0,0,0.0770704 -4923,3610:205,105,-60,0,0,0.075313 -4924,3610:206,106,-60,0,0,0.0752343 -4925,3610:207,107,-60,0,0,0.0751059 -4926,3610:208,108,-60,0,0,0.0749562 -4927,3610:209,109,-60,0,0,0.074899 -4928,3611:100,110,-60,0,0,0.0749703 -4929,3611:101,111,-60,0,0,0.0750915 -4930,3611:102,112,-60,0,0,0.0750773 -4931,3611:104,114,-60,0,0,0.0753703 -4932,3611:205,115,-60,0,0,0.0752343 -4933,3611:206,116,-60,0,0,0.0751059 -4934,3611:207,117,-60,0,0,0.0751059 -4935,3611:208,118,-60,0,0,0.0750915 -4936,3611:209,119,-60,0,0,0.075063 -4937,3612:100,120,-60,0,0,0.0749916 -4938,3612:101,121,-60,0,0,0.075006 -4939,3612:102,122,-60,0,0,0.0750843 -4940,3612:103,123,-60,0,0,0.0750488 -4941,3612:104,124,-60,0,0,0.0749988 -4942,3612:205,125,-60,0,0,0.0749846 -4943,3612:206,126,-60,0,0,0.0749775 -4944,3612:207,127,-60,0,0,0.0749703 -4945,3612:208,128,-60,0,0,0.0753631 -4946,3612:209,129,-60,0,0,0.0751416 -4947,3613:100,130,-60,0,0,0.0752415 -4948,3613:101,131,-60,0,0,0.0760679 -4949,3613:102,132,-60,0,0,0.0790816 -4950,3613:103,133,-60,0,0,0.082858 -4951,3613:104,134,-60,0,0,0.0856321 -4952,3613:206,136,-60,0,0,0.0754779 -4953,3613:207,137,-60,0,0,0.075722 -4954,3613:208,138,-60,0,0,0.0787532 -4955,3613:209,139,-60,0,0,0.0811794 -4956,3614:100,140,-60,0,0,0.0817097 -4957,3614:101,141,-60,0,0,0.0829596 -4958,3614:102,142,-60,0,0,0.0820496 -4959,3614:103,143,-60,0,0,0.0796372 -4960,3614:104,144,-60,0,0,0.0785224 -4961,3614:205,145,-60,0,0,0.0757147 -4962,3614:206,146,-60,0,0,0.0750915 -4963,3614:207,147,-60,0,0,0.0750345 -4964,3614:208,148,-60,0,0,0.0749775 -4965,3614:209,149,-60,0,0,0.0749916 -4966,3615:100,150,-60,0,0,0.075006 -4967,3615:101,151,-60,0,0,0.0750131 -4968,3615:102,152,-60,0,0,0.0749988 -4969,3615:103,153,-60,0,0,0.0750201 -4970,3615:104,154,-60,0,0,0.0750416 -4971,3615:205,155,-60,0,0,0.0750416 -4972,3615:206,156,-60,0,0,0.0750416 -4973,3615:207,157,-60,0,0,0.0750416 -4974,3615:208,158,-60,0,0,0.0750273 -4975,3615:209,159,-60,0,0,0.0750273 -4976,3616:100,160,-60,0,0,0.0750201 -4977,3616:101,161,-60,0,0,0.0750131 -4978,3616:102,162,-60,0,0,0.0750345 -4979,3616:103,163,-60,0,0,0.0750416 -4980,3616:104,164,-60,0,0,0.0750558 -4981,3616:205,165,-60,0,0,0.0750558 -4982,3616:206,166,-60,0,0,0.0750702 -4983,3616:207,167,-60,0,0,0.0750702 -4984,3616:208,168,-60,0,0,0.0750558 -4985,3616:209,169,-60,0,0,0.0750488 -4986,3617:100,170,-60,0,0,0.0750488 -4987,3617:101,171,-60,0,0,0.0750488 -4988,3617:102,172,-60,0,0,0.0750416 -4989,3617:103,173,-60,0,0,0.0750416 -4990,3617:104,174,-60,0,0,0.0750345 -4991,3617:205,175,-60,0,0,0.0750345 -4992,3617:206,176,-60,0,0,0.0750416 -4993,3617:207,177,-60,0,0,0.0750416 -4994,3617:208,178,-60,0,0,0.0750488 -4995,3617:209,179,-60,0,0,0.0750773 -4996,3618:100,180,-60,0,0,0.0751701 -4997,5518:390,-180,-59,0,0,0.0776864 -4998,5517:499,-179,-59,0,0,0.0785224 -4999,5517:498,-178,-59,0,0,0.0758443 -5000,5517:497,-177,-59,0,0,0.0774806 -5001,5517:496,-176,-59,0,0,0.0819026 -5002,5517:495,-175,-59,0,0,0.0766184 -5003,5517:394,-174,-59,0,0,0.0753561 -5004,5517:393,-173,-59,0,0,0.0771067 -5005,5517:392,-172,-59,0,0,0.0764732 -5006,5517:391,-171,-59,0,0,0.0751344 -5007,5517:390,-170,-59,0,0,0.0750987 -5008,5516:499,-169,-59,0,0,0.0751987 -5009,5516:498,-168,-59,0,0,0.075313 -5010,5516:497,-167,-59,0,0,0.0751771 -5011,5516:496,-166,-59,0,0,0.0757147 -5012,5516:495,-165,-59,0,0,0.0757867 -5013,5516:394,-164,-59,0,0,0.0758443 -5014,5516:393,-163,-59,0,0,0.0769973 -5015,5516:392,-162,-59,0,0,0.0789545 -5016,5516:391,-161,-59,0,0,0.0805608 -5017,5516:390,-160,-59,0,0,0.0806521 -5018,5515:499,-159,-59,0,0,0.0822588 -5019,5515:498,-158,-59,0,0,0.0830847 -5020,5515:497,-157,-59,0,0,0.0830379 -5021,5515:496,-156,-59,0,0,0.0827644 -5022,5515:495,-155,-59,0,0,0.0823673 -5023,5515:394,-154,-59,0,0,0.0821037 -5024,5515:393,-153,-59,0,0,0.0822354 -5025,5515:392,-152,-59,0,0,0.0825462 -5026,5515:391,-151,-59,0,0,0.0836578 -5027,5515:390,-150,-59,0,0,0.0839419 -5028,5514:499,-149,-59,0,0,0.0832805 -5029,5514:498,-148,-59,0,0,0.0832649 -5030,5514:497,-147,-59,0,0,0.0834298 -5031,5514:496,-146,-59,0,0,0.0837682 -5032,5514:495,-145,-59,0,0,0.0844886 -5033,5514:394,-144,-59,0,0,0.0849986 -5034,5514:393,-143,-59,0,0,0.0860837 -5035,5514:392,-142,-59,0,0,0.0851426 -5036,5514:391,-141,-59,0,0,0.0848867 -5037,5514:390,-140,-59,0,0,0.0840683 -5038,5513:499,-139,-59,0,0,0.0837682 -5039,5513:498,-138,-59,0,0,0.0874842 -5040,5513:497,-137,-59,0,0,0.0869034 -5041,5513:496,-136,-59,0,0,0.0866756 -5042,5513:495,-135,-59,0,0,0.0849428 -5043,5513:394,-134,-59,0,0,0.0871648 -5044,5513:393,-133,-59,0,0,0.0872384 -5045,5513:392,-132,-59,0,0,0.092558 -5046,5513:391,-131,-59,0,0,0.0932768 -5047,5513:390,-130,-59,0,0,0.0916047 -5048,5512:499,-129,-59,0,0,0.0914764 -5049,5512:498,-128,-59,0,0,0.0911525 -5050,5512:497,-127,-59,0,0,0.0910333 -5051,5512:496,-126,-59,0,0,0.0935291 -5052,5512:495,-125,-59,0,0,0.0975683 -5053,5512:394,-124,-59,0,0,0.0982671 -5054,5512:393,-123,-59,0,0,0.0954277 -5055,5512:392,-122,-59,0,0,0.0962645 -5056,5512:391,-121,-59,0,0,0.0989063 -5057,5512:390,-120,-59,0,0,0.0997151 -5058,5511:499,-119,-59,0,0,0.100075 -5059,5511:498,-118,-59,0,0,0.099752 -5060,5511:497,-117,-59,0,0,0.0995399 -5061,5511:496,-116,-59,0,0,0.0994388 -5062,5511:495,-115,-59,0,0,0.097795 -5063,5511:394,-114,-59,0,0,0.0966586 -5064,5511:393,-113,-59,0,0,0.0988423 -5065,5511:392,-112,-59,0,0,0.100325 -5066,5511:391,-111,-59,0,0,0.0996136 -5067,5511:390,-110,-59,0,0,0.0975774 -5068,5510:499,-109,-59,0,0,0.0973967 -5069,5510:498,-108,-59,0,0,0.0979854 -5070,5510:497,-107,-59,0,0,0.0980489 -5071,5510:496,-106,-59,0,0,0.0965511 -5072,5510:495,-105,-59,0,0,0.0995031 -5073,5510:394,-104,-59,0,0,0.100335 -5074,5510:393,-103,-59,0,0,0.0971171 -5075,5510:392,-102,-59,0,0,0.0984222 -5076,5510:391,-101,-59,0,0,0.0968921 -5077,5510:390,-100,-59,0,0,0.0983947 -5078,5509:499,-99,-59,0,0,0.0986869 -5079,5509:498,-98,-59,0,0,0.0964076 -5080,5509:497,-97,-59,0,0,0.091673 -5081,5509:496,-96,-59,0,0,0.0808887 -5082,5509:495,-95,-59,0,0,0.0802872 -5083,5509:394,-94,-59,0,0,0.0830613 -5084,5509:393,-93,-59,0,0,0.0829047 -5085,5509:392,-92,-59,0,0,0.0886642 -5086,5509:391,-91,-59,0,0,0.0936597 -5087,5509:390,-90,-59,0,0,0.0986503 -5088,5508:499,-89,-59,0,0,0.0986685 -5089,5508:498,-88,-59,0,0,0.0993285 -5090,5508:497,-87,-59,0,0,0.101753 -5091,5508:496,-86,-59,0,0,0.102365 -5092,5508:495,-85,-59,0,0,0.102592 -5093,5508:394,-84,-59,0,0,0.102715 -5094,5508:393,-83,-59,0,0,0.0894142 -5095,5508:392,-82,-59,0,0,0.0825462 -5096,5508:391,-81,-59,0,0,0.0857446 -5097,5508:390,-80,-59,0,0,0.0766839 -5098,5507:499,-79,-59,0,0,0.0778411 -5099,5507:498,-78,-59,0,0,0.0879363 -5100,5507:497,-77,-59,0,0,0.0968562 -5101,5507:496,-76,-59,0,0,0.0967123 -5102,5507:495,-75,-59,0,0,0.0933288 -5103,5507:394,-74,-59,0,0,0.0936684 -5104,5507:393,-73,-59,0,0,0.0948086 -5105,5507:392,-72,-59,0,0,0.0913995 -5106,5507:391,-71,-59,0,0,0.0853267 -5107,5507:390,-70,-59,0,0,0.0818795 -5108,5506:499,-69,-59,0,0,0.0791191 -5109,5506:498,-68,-59,0,0,0.0783886 -5110,5506:497,-67,-59,0,0,0.0795393 -5111,5506:496,-66,-59,0,0,0.082772 -5112,5506:495,-65,-59,0,0,0.0894895 -5113,5505:499,-59,-59,0,0,0.0801583 -5114,5505:498,-58,-59,0,0,0.078768 -5115,5505:497,-57,-59,0,0,0.0766475 -5116,5505:496,-56,-59,0,0,0.0752201 -5117,5505:495,-55,-59,0,0,0.0751486 -5118,5505:394,-54,-59,0,0,0.0750558 -5119,5505:393,-53,-59,0,0,0.0750416 -5120,5505:392,-52,-59,0,0,0.0750273 -5121,5505:391,-51,-59,0,0,0.0749916 -5122,5505:390,-50,-59,0,0,0.0749916 -5123,5504:499,-49,-59,0,0,0.0749988 -5124,5504:498,-48,-59,0,0,0.0749703 -5125,5504:497,-47,-59,0,0,0.0749631 -5126,5504:496,-46,-59,0,0,0.0749631 -5127,5504:495,-45,-59,0,0,0.0749562 -5128,5504:394,-44,-59,0,0,0.0749631 -5129,5504:393,-43,-59,0,0,0.0749631 -5130,5504:392,-42,-59,0,0,0.0749631 -5131,5504:391,-41,-59,0,0,0.0749703 -5132,5504:390,-40,-59,0,0,0.0749703 -5133,5503:499,-39,-59,0,0,0.0749775 -5134,5503:498,-38,-59,0,0,0.0749775 -5135,5503:497,-37,-59,0,0,0.0749775 -5136,5503:496,-36,-59,0,0,0.0749775 -5137,5503:495,-35,-59,0,0,0.0749775 -5138,5503:394,-34,-59,0,0,0.0749775 -5139,5503:393,-33,-59,0,0,0.0749775 -5140,5503:392,-32,-59,0,0,0.0749775 -5141,5503:391,-31,-59,0,0,0.0749846 -5142,5503:390,-30,-59,0,0,0.0749775 -5143,5502:499,-29,-59,0,0,0.0749775 -5144,5502:498,-28,-59,0,0,0.0749703 -5145,5502:497,-27,-59,0,0,0.0749703 -5146,5502:496,-26,-59,0,0,0.0749631 -5147,5502:495,-25,-59,0,0,0.0749631 -5148,5502:394,-24,-59,0,0,0.0749631 -5149,5502:393,-23,-59,0,0,0.0749562 -5150,5502:392,-22,-59,0,0,0.074949 -5151,5502:391,-21,-59,0,0,0.0749346 -5152,5502:390,-20,-59,0,0,0.0749205 -5153,5501:499,-19,-59,0,0,0.0749133 -5154,5501:498,-18,-59,0,0,0.0749062 -5155,5501:497,-17,-59,0,0,0.0748849 -5156,5501:496,-16,-59,0,0,0.0748705 -5157,5501:495,-15,-59,0,0,0.0748564 -5158,5501:394,-14,-59,0,0,0.0748564 -5159,5501:393,-13,-59,0,0,0.0748564 -5160,5501:392,-12,-59,0,0,0.0748564 -5161,5501:391,-11,-59,0,0,0.0748493 -5162,5501:390,-10,-59,0,0,0.0748564 -5163,5500:499,-9,-59,0,0,0.0748705 -5164,5500:498,-8,-59,0,0,0.0748705 -5165,5500:497,-7,-59,0,0,0.0748705 -5166,5500:496,-6,-59,0,0,0.0748636 -5167,5500:495,-5,-59,0,0,0.0748564 -5168,5500:394,-4,-59,0,0,0.0748636 -5169,5500:393,-3,-59,0,0,0.0748636 -5170,5500:392,-2,-59,0,0,0.0748705 -5171,5500:391,-1,-59,0,0,0.0748849 -5172,3500:391,0,-59,0,0,0.074892 -5173,3500:391,1,-59,0,0,0.0748705 -5174,3500:392,2,-59,0,0,0.0748636 -5175,3500:393,3,-59,0,0,0.0748636 -5176,3500:394,4,-59,0,0,0.0748705 -5177,3500:495,5,-59,0,0,0.0748849 -5178,3500:496,6,-59,0,0,0.074892 -5179,3500:497,7,-59,0,0,0.074892 -5180,3500:498,8,-59,0,0,0.0748849 -5181,3500:499,9,-59,0,0,0.074892 -5182,3501:390,10,-59,0,0,0.0748777 -5183,3501:391,11,-59,0,0,0.0748777 -5184,3501:392,12,-59,0,0,0.0748636 -5185,3501:393,13,-59,0,0,0.0748564 -5186,3501:394,14,-59,0,0,0.0748636 -5187,3501:495,15,-59,0,0,0.0748564 -5188,3501:496,16,-59,0,0,0.0748564 -5189,3501:497,17,-59,0,0,0.0748421 -5190,3501:498,18,-59,0,0,0.0748065 -5191,3501:499,19,-59,0,0,0.0747996 -5192,3502:390,20,-59,0,0,0.0748208 -5193,3502:391,21,-59,0,0,0.074828 -5194,3502:392,22,-59,0,0,0.0748137 -5195,3502:393,23,-59,0,0,0.0748137 -5196,3502:394,24,-59,0,0,0.0748208 -5197,3502:495,25,-59,0,0,0.074828 -5198,3502:496,26,-59,0,0,0.074828 -5199,3502:497,27,-59,0,0,0.074828 -5200,3502:498,28,-59,0,0,0.074828 -5201,3502:499,29,-59,0,0,0.074828 -5202,3503:390,30,-59,0,0,0.074828 -5203,3503:391,31,-59,0,0,0.0748137 -5204,3503:392,32,-59,0,0,0.074899 -5205,3503:393,33,-59,0,0,0.0749346 -5206,3503:394,34,-59,0,0,0.0749562 -5207,3503:495,35,-59,0,0,0.0749562 -5208,3503:496,36,-59,0,0,0.0749275 -5209,3503:497,37,-59,0,0,0.074892 -5210,3503:498,38,-59,0,0,0.0748777 -5211,3503:499,39,-59,0,0,0.0748636 -5212,3504:390,40,-59,0,0,0.0748777 -5213,3504:391,41,-59,0,0,0.074899 -5214,3504:392,42,-59,0,0,0.0749275 -5215,3504:393,43,-59,0,0,0.0749418 -5216,3504:394,44,-59,0,0,0.074949 -5217,3504:495,45,-59,0,0,0.0749562 -5218,3504:496,46,-59,0,0,0.0749846 -5219,3504:497,47,-59,0,0,0.0749988 -5220,3504:498,48,-59,0,0,0.0750273 -5221,3504:499,49,-59,0,0,0.0750558 -5222,3505:390,50,-59,0,0,0.075063 -5223,3505:391,51,-59,0,0,0.0751059 -5224,3505:392,52,-59,0,0,0.0751128 -5225,3505:393,53,-59,0,0,0.07512 -5226,3505:394,54,-59,0,0,0.0751272 -5227,3505:495,55,-59,0,0,0.0751059 -5228,3505:496,56,-59,0,0,0.0750843 -5229,3505:497,57,-59,0,0,0.0750558 -5230,3505:498,58,-59,0,0,0.0749775 -5231,3505:499,59,-59,0,0,0.074949 -5232,3506:390,60,-59,0,0,0.0749346 -5233,3506:391,61,-59,0,0,0.0749133 -5234,3506:392,62,-59,0,0,0.074949 -5235,3506:393,63,-59,0,0,0.0749418 -5236,3506:394,64,-59,0,0,0.0749703 -5237,3506:495,65,-59,0,0,0.0749703 -5238,3506:496,66,-59,0,0,0.0749703 -5239,3506:497,67,-59,0,0,0.0749562 -5240,3506:498,68,-59,0,0,0.074949 -5241,3506:499,69,-59,0,0,0.0749418 -5242,3507:390,70,-59,0,0,0.0749346 -5243,3507:391,71,-59,0,0,0.0749346 -5244,3507:392,72,-59,0,0,0.0749418 -5245,3507:394,74,-59,0,0,0.074949 -5246,3507:495,75,-59,0,0,0.0749562 -5247,3507:496,76,-59,0,0,0.074949 -5248,3507:497,77,-59,0,0,0.0749562 -5249,3507:498,78,-59,0,0,0.0749562 -5250,3507:499,79,-59,0,0,0.074949 -5251,3508:390,80,-59,0,0,0.0749631 -5252,3508:391,81,-59,0,0,0.0749916 -5253,3508:392,82,-59,0,0,0.0750273 -5254,3508:393,83,-59,0,0,0.0750558 -5255,3508:394,84,-59,0,0,0.0750773 -5256,3508:495,85,-59,0,0,0.0750702 -5257,3508:496,86,-59,0,0,0.0750702 -5258,3508:497,87,-59,0,0,0.0750843 -5259,3508:498,88,-59,0,0,0.075063 -5260,3508:499,89,-59,0,0,0.0750488 -5261,3509:390,90,-59,0,0,0.0750345 -5262,3509:391,91,-59,0,0,0.0750558 -5263,3509:392,92,-59,0,0,0.0750702 -5264,3509:393,93,-59,0,0,0.0750843 -5265,3509:394,94,-59,0,0,0.0751272 -5266,3509:495,95,-59,0,0,0.0751344 -5267,3510:390,100,-59,0,0,0.0754492 -5268,3510:391,101,-59,0,0,0.075313 -5269,3510:392,102,-59,0,0,0.0752487 -5270,3510:393,103,-59,0,0,0.0751416 -5271,3510:394,104,-59,0,0,0.0751416 -5272,3510:495,105,-59,0,0,0.0751416 -5273,3510:496,106,-59,0,0,0.0751915 -5274,3510:497,107,-59,0,0,0.0749916 -5275,3510:498,108,-59,0,0,0.0749418 -5276,3510:499,109,-59,0,0,0.0749562 -5277,3511:390,110,-59,0,0,0.0749846 -5278,3511:391,111,-59,0,0,0.0749916 -5279,3511:392,112,-59,0,0,0.0750201 -5280,3511:393,113,-59,0,0,0.075063 -5281,3511:394,114,-59,0,0,0.0750915 -5282,3511:495,115,-59,0,0,0.0750915 -5283,3511:496,116,-59,0,0,0.0750915 -5284,3511:497,117,-59,0,0,0.0750702 -5285,3511:498,118,-59,0,0,0.0750416 -5286,3511:499,119,-59,0,0,0.075006 -5287,3512:390,120,-59,0,0,0.075006 -5288,3512:391,121,-59,0,0,0.0750558 -5289,3512:392,122,-59,0,0,0.07527 -5290,3512:393,123,-59,0,0,0.0749846 -5291,3512:394,124,-59,0,0,0.0750201 -5292,3512:495,125,-59,0,0,0.0755854 -5293,3512:496,126,-59,0,0,0.0756787 -5294,3512:497,127,-59,0,0,0.0757722 -5295,3512:498,128,-59,0,0,0.0758586 -5296,3512:499,129,-59,0,0,0.0758298 -5297,3513:390,130,-59,0,0,0.0758515 -5298,3513:391,131,-59,0,0,0.0759811 -5299,3513:392,132,-59,0,0,0.0749205 -5300,3513:393,133,-59,0,0,0.0749275 -5301,3513:394,134,-59,0,0,0.0749703 -5302,3513:496,136,-59,0,0,0.0752129 -5303,3513:497,137,-59,0,0,0.0764296 -5304,3513:498,138,-59,0,0,0.0760317 -5305,3513:499,139,-59,0,0,0.0757795 -5306,3514:390,140,-59,0,0,0.0753703 -5307,3514:391,141,-59,0,0,0.075163 -5308,3514:392,142,-59,0,0,0.0749775 -5309,3514:393,143,-59,0,0,0.0748777 -5310,3514:394,144,-59,0,0,0.0749062 -5311,3514:495,145,-59,0,0,0.0749275 -5312,3514:496,146,-59,0,0,0.0749562 -5313,3514:497,147,-59,0,0,0.0749916 -5314,3514:498,148,-59,0,0,0.0749988 -5315,3514:499,149,-59,0,0,0.0750201 -5316,3515:390,150,-59,0,0,0.0749988 -5317,3515:391,151,-59,0,0,0.0750201 -5318,3515:392,152,-59,0,0,0.0750558 -5319,3515:393,153,-59,0,0,0.0750843 -5320,3515:394,154,-59,0,0,0.0750773 -5321,3515:495,155,-59,0,0,0.0750843 -5322,3515:496,156,-59,0,0,0.075063 -5323,3515:497,157,-59,0,0,0.0750416 -5324,3515:498,158,-59,0,0,0.0750345 -5325,3515:499,159,-59,0,0,0.0750201 -5326,3516:390,160,-59,0,0,0.0750345 -5327,3516:391,161,-59,0,0,0.0750201 -5328,3516:392,162,-59,0,0,0.0750558 -5329,3516:393,163,-59,0,0,0.0750773 -5330,3516:394,164,-59,0,0,0.0750843 -5331,3516:495,165,-59,0,0,0.0750915 -5332,3516:496,166,-59,0,0,0.0750773 -5333,3516:497,167,-59,0,0,0.0750773 -5334,3516:498,168,-59,0,0,0.0750773 -5335,3516:499,169,-59,0,0,0.075063 -5336,3517:390,170,-59,0,0,0.0750488 -5337,3517:391,171,-59,0,0,0.0751059 -5338,3517:392,172,-59,0,0,0.0751416 -5339,3517:393,173,-59,0,0,0.0750702 -5340,3517:394,174,-59,0,0,0.0750702 -5341,3517:495,175,-59,0,0,0.0750773 -5342,3517:496,176,-59,0,0,0.0750558 -5343,3517:497,177,-59,0,0,0.0750843 -5344,3517:498,178,-59,0,0,0.0752129 -5345,3517:499,179,-59,0,0,0.0753344 -5346,3518:390,180,-59,0,0,0.0776864 -5347,5518:380,-180,-58,0,0,0.0818408 -5348,5517:489,-179,-58,0,0,0.084584 -5349,5517:488,-178,-58,0,0,0.0898166 -5350,5517:487,-177,-58,0,0,0.089657 -5351,5517:486,-176,-58,0,0,0.0842902 -5352,5517:485,-175,-58,0,0,0.0836893 -5353,5517:384,-174,-58,0,0,0.0840999 -5354,5517:383,-173,-58,0,0,0.0840603 -5355,5517:382,-172,-58,0,0,0.0800675 -5356,5517:381,-171,-58,0,0,0.0776495 -5357,5517:380,-170,-58,0,0,0.0785521 -5358,5516:489,-169,-58,0,0,0.0799616 -5359,5516:488,-168,-58,0,0,0.0784852 -5360,5516:487,-167,-58,0,0,0.0766184 -5361,5516:486,-166,-58,0,0,0.0775026 -5362,5516:485,-165,-58,0,0,0.0790444 -5363,5516:384,-164,-58,0,0,0.0819491 -5364,5516:383,-163,-58,0,0,0.0834453 -5365,5516:382,-162,-58,0,0,0.0835949 -5366,5516:381,-161,-58,0,0,0.0842822 -5367,5516:380,-160,-58,0,0,0.0845522 -5368,5515:489,-159,-58,0,0,0.0846795 -5369,5515:488,-158,-58,0,0,0.084775 -5370,5515:487,-157,-58,0,0,0.0843457 -5371,5515:486,-156,-58,0,0,0.0833042 -5372,5515:485,-155,-58,0,0,0.0829987 -5373,5515:384,-154,-58,0,0,0.083163 -5374,5515:383,-153,-58,0,0,0.0839024 -5375,5515:382,-152,-58,0,0,0.0853027 -5376,5515:381,-151,-58,0,0,0.0853267 -5377,5515:380,-150,-58,0,0,0.0843059 -5378,5514:489,-149,-58,0,0,0.0844251 -5379,5514:488,-148,-58,0,0,0.0844569 -5380,5514:487,-147,-58,0,0,0.0849825 -5381,5514:486,-146,-58,0,0,0.0861239 -5382,5514:485,-145,-58,0,0,0.0869933 -5383,5514:384,-144,-58,0,0,0.0857367 -5384,5514:383,-143,-58,0,0,0.0860592 -5385,5514:382,-142,-58,0,0,0.0863183 -5386,5514:381,-141,-58,0,0,0.0890633 -5387,5514:380,-140,-58,0,0,0.087181 -5388,5513:489,-139,-58,0,0,0.0848867 -5389,5513:488,-138,-58,0,0,0.087895 -5390,5513:487,-137,-58,0,0,0.08903 -5391,5513:486,-136,-58,0,0,0.0866024 -5392,5513:485,-135,-58,0,0,0.0865374 -5393,5513:384,-134,-58,0,0,0.0919041 -5394,5513:383,-133,-58,0,0,0.0956496 -5395,5513:382,-132,-58,0,0,0.0973695 -5396,5513:381,-131,-58,0,0,0.0950645 -5397,5513:380,-130,-58,0,0,0.0941407 -5398,5512:489,-129,-58,0,0,0.0952857 -5399,5512:488,-128,-58,0,0,0.0993007 -5400,5512:487,-127,-58,0,0,0.101678 -5401,5512:486,-126,-58,0,0,0.102007 -5402,5512:485,-125,-58,0,0,0.100205 -5403,5512:384,-124,-58,0,0,0.100047 -5404,5512:383,-123,-58,0,0,0.100279 -5405,5512:382,-122,-58,0,0,0.0999183 -5406,5512:381,-121,-58,0,0,0.100363 -5407,5512:380,-120,-58,0,0,0.10053 -5408,5511:489,-119,-58,0,0,0.100307 -5409,5511:488,-118,-58,0,0,0.101584 -5410,5511:487,-117,-58,0,0,0.10263 -5411,5511:486,-116,-58,0,0,0.102876 -5412,5511:485,-115,-58,0,0,0.104779 -5413,5511:384,-114,-58,0,0,0.106321 -5414,5511:383,-113,-58,0,0,0.106987 -5415,5511:382,-112,-58,0,0,0.106379 -5416,5511:381,-111,-58,0,0,0.105039 -5417,5511:380,-110,-58,0,0,0.104471 -5418,5510:489,-109,-58,0,0,0.105184 -5419,5510:488,-108,-58,0,0,0.106653 -5420,5510:487,-107,-58,0,0,0.105039 -5421,5510:486,-106,-58,0,0,0.101847 -5422,5510:485,-105,-58,0,0,0.10039 -5423,5510:384,-104,-58,0,0,0.102158 -5424,5510:383,-103,-58,0,0,0.10337 -5425,5510:382,-102,-58,0,0,0.1004 -5426,5510:381,-101,-58,0,0,0.0978583 -5427,5510:380,-100,-58,0,0,0.0989706 -5428,5509:489,-99,-58,0,0,0.0998351 -5429,5509:488,-98,-58,0,0,0.0987781 -5430,5509:487,-97,-58,0,0,0.0998258 -5431,5509:486,-96,-58,0,0,0.0995767 -5432,5509:485,-95,-58,0,0,0.0971531 -5433,5509:384,-94,-58,0,0,0.0966496 -5434,5509:383,-93,-58,0,0,0.098486 -5435,5509:382,-92,-58,0,0,0.0926703 -5436,5509:381,-91,-58,0,0,0.0962555 -5437,5509:380,-90,-58,0,0,0.100716 -5438,5508:489,-89,-58,0,0,0.103332 -5439,5508:488,-88,-58,0,0,0.103676 -5440,5508:487,-87,-58,0,0,0.103752 -5441,5508:486,-86,-58,0,0,0.102479 -5442,5508:485,-85,-58,0,0,0.103361 -5443,5508:384,-84,-58,0,0,0.102337 -5444,5508:383,-83,-58,0,0,0.101257 -5445,5508:382,-82,-58,0,0,0.0910419 -5446,5508:381,-81,-58,0,0,0.0810186 -5447,5508:380,-80,-58,0,0,0.0852868 -5448,5507:489,-79,-58,0,0,0.0895731 -5449,5507:488,-78,-58,0,0,0.0977496 -5450,5507:487,-77,-58,0,0,0.100057 -5451,5507:486,-76,-58,0,0,0.100075 -5452,5507:485,-75,-58,0,0,0.0994295 -5453,5507:384,-74,-58,0,0,0.0989247 -5454,5507:383,-73,-58,0,0,0.0985132 -5455,5507:382,-72,-58,0,0,0.0945707 -5456,5507:381,-71,-58,0,0,0.0883243 -5457,5507:380,-70,-58,0,0,0.0850147 -5458,5506:489,-69,-58,0,0,0.0822278 -5459,5506:488,-68,-58,0,0,0.0799088 -5460,5506:487,-67,-58,0,0,0.0788725 -5461,5506:486,-66,-58,0,0,0.0787009 -5462,5506:485,-65,-58,0,0,0.083367 -5463,5506:384,-64,-58,0,0,0.0901108 -5464,5506:383,-63,-58,0,0,0.0913826 -5465,5506:382,-62,-58,0,0,0.0934071 -5466,5505:488,-58,-58,0,0,0.0794868 -5467,5505:486,-56,-58,0,0,0.0778265 -5468,5505:485,-55,-58,0,0,0.0767056 -5469,5505:384,-54,-58,0,0,0.0750416 -5470,5505:383,-53,-58,0,0,0.0750488 -5471,5505:382,-52,-58,0,0,0.0750416 -5472,5505:381,-51,-58,0,0,0.0750201 -5473,5505:380,-50,-58,0,0,0.0749988 -5474,5504:489,-49,-58,0,0,0.0750131 -5475,5504:488,-48,-58,0,0,0.0749775 -5476,5504:487,-47,-58,0,0,0.0749631 -5477,5504:486,-46,-58,0,0,0.0749562 -5478,5504:485,-45,-58,0,0,0.0749562 -5479,5504:384,-44,-58,0,0,0.0749631 -5480,5504:383,-43,-58,0,0,0.0749631 -5481,5504:382,-42,-58,0,0,0.0749631 -5482,5504:381,-41,-58,0,0,0.0749631 -5483,5504:380,-40,-58,0,0,0.0749703 -5484,5503:489,-39,-58,0,0,0.0749775 -5485,5503:488,-38,-58,0,0,0.0749846 -5486,5503:487,-37,-58,0,0,0.0749916 -5487,5503:486,-36,-58,0,0,0.0749916 -5488,5503:485,-35,-58,0,0,0.0749916 -5489,5503:384,-34,-58,0,0,0.0749916 -5490,5503:383,-33,-58,0,0,0.0749916 -5491,5503:382,-32,-58,0,0,0.0749916 -5492,5503:381,-31,-58,0,0,0.0749916 -5493,5503:380,-30,-58,0,0,0.0749846 -5494,5502:489,-29,-58,0,0,0.0749846 -5495,5502:488,-28,-58,0,0,0.0749846 -5496,5502:487,-27,-58,0,0,0.0749775 -5497,5502:486,-26,-58,0,0,0.0749775 -5498,5502:485,-25,-58,0,0,0.0749703 -5499,5502:384,-24,-58,0,0,0.0749631 -5500,5502:383,-23,-58,0,0,0.0749562 -5501,5502:382,-22,-58,0,0,0.074949 -5502,5502:381,-21,-58,0,0,0.0749418 -5503,5502:380,-20,-58,0,0,0.0749275 -5504,5501:489,-19,-58,0,0,0.0749062 -5505,5501:488,-18,-58,0,0,0.074892 -5506,5501:487,-17,-58,0,0,0.0748777 -5507,5501:486,-16,-58,0,0,0.0748564 -5508,5501:485,-15,-58,0,0,0.0748493 -5509,5501:384,-14,-58,0,0,0.0748493 -5510,5501:383,-13,-58,0,0,0.0748493 -5511,5501:382,-12,-58,0,0,0.0748564 -5512,5501:381,-11,-58,0,0,0.0748636 -5513,5501:380,-10,-58,0,0,0.0748636 -5514,5500:489,-9,-58,0,0,0.0748777 -5515,5500:488,-8,-58,0,0,0.0748849 -5516,5500:487,-7,-58,0,0,0.0748849 -5517,5500:486,-6,-58,0,0,0.0748636 -5518,5500:485,-5,-58,0,0,0.0748564 -5519,5500:384,-4,-58,0,0,0.0748493 -5520,5500:383,-3,-58,0,0,0.0748421 -5521,5500:382,-2,-58,0,0,0.0748564 -5522,5500:381,-1,-58,0,0,0.0748777 -5523,3500:381,0,-58,0,0,0.074892 -5524,3500:381,1,-58,0,0,0.0749062 -5525,3500:382,2,-58,0,0,0.0748777 -5526,3500:383,3,-58,0,0,0.0748636 -5527,3500:384,4,-58,0,0,0.0748705 -5528,3500:485,5,-58,0,0,0.0748849 -5529,3500:486,6,-58,0,0,0.074899 -5530,3500:487,7,-58,0,0,0.0749062 -5531,3500:488,8,-58,0,0,0.0749275 -5532,3500:489,9,-58,0,0,0.0749418 -5533,3501:380,10,-58,0,0,0.0749562 -5534,3501:381,11,-58,0,0,0.0749631 -5535,3501:382,12,-58,0,0,0.0749562 -5536,3501:383,13,-58,0,0,0.074949 -5537,3501:384,14,-58,0,0,0.0748777 -5538,3501:485,15,-58,0,0,0.0748493 -5539,3501:486,16,-58,0,0,0.0748137 -5540,3501:487,17,-58,0,0,0.0747852 -5541,3501:488,18,-58,0,0,0.0747711 -5542,3501:489,19,-58,0,0,0.0747711 -5543,3502:380,20,-58,0,0,0.0747781 -5544,3502:381,21,-58,0,0,0.0747781 -5545,3502:382,22,-58,0,0,0.0747781 -5546,3502:383,23,-58,0,0,0.0747711 -5547,3502:384,24,-58,0,0,0.0747781 -5548,3502:485,25,-58,0,0,0.074764 -5549,3502:486,26,-58,0,0,0.0748208 -5550,3502:487,27,-58,0,0,0.0748493 -5551,3502:488,28,-58,0,0,0.0748849 -5552,3502:489,29,-58,0,0,0.0749275 -5553,3503:380,30,-58,0,0,0.0749775 -5554,3503:381,31,-58,0,0,0.0749703 -5555,3503:382,32,-58,0,0,0.0748705 -5556,3503:383,33,-58,0,0,0.0749062 -5557,3503:384,34,-58,0,0,0.0749133 -5558,3503:485,35,-58,0,0,0.0749062 -5559,3503:486,36,-58,0,0,0.0749062 -5560,3503:487,37,-58,0,0,0.0748705 -5561,3503:488,38,-58,0,0,0.0748421 -5562,3503:489,39,-58,0,0,0.0748349 -5563,3504:380,40,-58,0,0,0.0748349 -5564,3504:381,41,-58,0,0,0.074828 -5565,3504:382,42,-58,0,0,0.0748493 -5566,3504:383,43,-58,0,0,0.0748849 -5567,3504:384,44,-58,0,0,0.0749133 -5568,3504:485,45,-58,0,0,0.0749275 -5569,3504:486,46,-58,0,0,0.0749346 -5570,3504:487,47,-58,0,0,0.0749418 -5571,3504:488,48,-58,0,0,0.0749631 -5572,3504:489,49,-58,0,0,0.0749562 -5573,3505:380,50,-58,0,0,0.0749775 -5574,3505:381,51,-58,0,0,0.0749775 -5575,3505:382,52,-58,0,0,0.0750201 -5576,3505:383,53,-58,0,0,0.0750201 -5577,3505:384,54,-58,0,0,0.0750273 -5578,3505:485,55,-58,0,0,0.0750131 -5579,3505:486,56,-58,0,0,0.0749775 -5580,3505:487,57,-58,0,0,0.0749562 -5581,3505:488,58,-58,0,0,0.0749418 -5582,3505:489,59,-58,0,0,0.0749346 -5583,3506:380,60,-58,0,0,0.0749275 -5584,3506:381,61,-58,0,0,0.0749133 -5585,3506:382,62,-58,0,0,0.0750273 -5586,3506:383,63,-58,0,0,0.0749133 -5587,3506:384,64,-58,0,0,0.0749275 -5588,3506:485,65,-58,0,0,0.0749418 -5589,3506:486,66,-58,0,0,0.0749562 -5590,3506:487,67,-58,0,0,0.0749703 -5591,3506:488,68,-58,0,0,0.0749703 -5592,3506:489,69,-58,0,0,0.074949 -5593,3507:380,70,-58,0,0,0.0749205 -5594,3507:381,71,-58,0,0,0.074892 -5595,3507:382,72,-58,0,0,0.074899 -5596,3507:384,74,-58,0,0,0.0749562 -5597,3507:485,75,-58,0,0,0.0749275 -5598,3507:486,76,-58,0,0,0.074899 -5599,3507:487,77,-58,0,0,0.0749133 -5600,3507:488,78,-58,0,0,0.0749205 -5601,3507:489,79,-58,0,0,0.0749418 -5602,3508:380,80,-58,0,0,0.074949 -5603,3508:381,81,-58,0,0,0.0749346 -5604,3508:382,82,-58,0,0,0.0749346 -5605,3508:383,83,-58,0,0,0.0749846 -5606,3508:384,84,-58,0,0,0.0749916 -5607,3508:485,85,-58,0,0,0.0749846 -5608,3508:486,86,-58,0,0,0.0749846 -5609,3508:487,87,-58,0,0,0.0749846 -5610,3508:488,88,-58,0,0,0.0749631 -5611,3508:489,89,-58,0,0,0.0751771 -5612,3509:380,90,-58,0,0,0.0758803 -5613,3509:381,91,-58,0,0,0.0749916 -5614,3509:382,92,-58,0,0,0.075006 -5615,3509:383,93,-58,0,0,0.0750273 -5616,3509:384,94,-58,0,0,0.0750488 -5617,3509:485,95,-58,0,0,0.0750702 -5618,3509:486,96,-58,0,0,0.0751128 -5619,3509:487,97,-58,0,0,0.0751701 -5620,3509:488,98,-58,0,0,0.0752129 -5621,3509:489,99,-58,0,0,0.0752487 -5622,3510:380,100,-58,0,0,0.0751128 -5623,3510:381,101,-58,0,0,0.0750843 -5624,3510:382,102,-58,0,0,0.0750843 -5625,3510:383,103,-58,0,0,0.075063 -5626,3510:384,104,-58,0,0,0.0750558 -5627,3510:485,105,-58,0,0,0.0750273 -5628,3510:486,106,-58,0,0,0.075006 -5629,3510:487,107,-58,0,0,0.0749846 -5630,3510:488,108,-58,0,0,0.0749775 -5631,3510:489,109,-58,0,0,0.0749775 -5632,3511:380,110,-58,0,0,0.0749846 -5633,3511:381,111,-58,0,0,0.0749775 -5634,3511:382,112,-58,0,0,0.0749562 -5635,3511:383,113,-58,0,0,0.0749846 -5636,3511:384,114,-58,0,0,0.0750131 -5637,3511:485,115,-58,0,0,0.075006 -5638,3511:486,116,-58,0,0,0.0749988 -5639,3511:487,117,-58,0,0,0.0750702 -5640,3511:488,118,-58,0,0,0.0753489 -5641,3511:489,119,-58,0,0,0.0773192 -5642,3512:380,120,-58,0,0,0.0819182 -5643,3512:381,121,-58,0,0,0.0841872 -5644,3512:382,122,-58,0,0,0.0844251 -5645,3512:383,123,-58,0,0,0.084775 -5646,3512:384,124,-58,0,0,0.0836814 -5647,3512:485,125,-58,0,0,0.0772092 -5648,3512:486,126,-58,0,0,0.0794491 -5649,3512:487,127,-58,0,0,0.076234 -5650,3512:488,128,-58,0,0,0.0765384 -5651,3512:489,129,-58,0,0,0.0774584 -5652,3513:380,130,-58,0,0,0.0779296 -5653,3513:381,131,-58,0,0,0.0768076 -5654,3513:382,132,-58,0,0,0.0752916 -5655,3513:383,133,-58,0,0,0.0753203 -5656,3513:384,134,-58,0,0,0.0755207 -5657,3513:485,135,-58,0,0,0.0756355 -5658,3513:486,136,-58,0,0,0.0756932 -5659,3513:487,137,-58,0,0,0.07565 -5660,3513:488,138,-58,0,0,0.0755926 -5661,3513:489,139,-58,0,0,0.0755639 -5662,3514:380,140,-58,0,0,0.0758443 -5663,3514:381,141,-58,0,0,0.0761327 -5664,3514:382,142,-58,0,0,0.0762413 -5665,3514:383,143,-58,0,0,0.0763137 -5666,3514:384,144,-58,0,0,0.0769462 -5667,3514:485,145,-58,0,0,0.0766475 -5668,3514:486,146,-58,0,0,0.0770046 -5669,3514:487,147,-58,0,0,0.075765 -5670,3514:488,148,-58,0,0,0.0753489 -5671,3514:489,149,-58,0,0,0.0755998 -5672,3515:380,150,-58,0,0,0.0752916 -5673,3515:381,151,-58,0,0,0.0750558 -5674,3515:382,152,-58,0,0,0.0750201 -5675,3515:383,153,-58,0,0,0.0751486 -5676,3515:384,154,-58,0,0,0.0750702 -5677,3515:485,155,-58,0,0,0.0750987 -5678,3515:486,156,-58,0,0,0.0750702 -5679,3515:487,157,-58,0,0,0.0750488 -5680,3515:488,158,-58,0,0,0.0750416 -5681,3515:489,159,-58,0,0,0.0750345 -5682,3516:380,160,-58,0,0,0.0750558 -5683,3516:381,161,-58,0,0,0.0750488 -5684,3516:382,162,-58,0,0,0.075063 -5685,3516:383,163,-58,0,0,0.0750843 -5686,3516:384,164,-58,0,0,0.0750843 -5687,3516:485,165,-58,0,0,0.0750702 -5688,3516:486,166,-58,0,0,0.0750987 -5689,3516:487,167,-58,0,0,0.0751059 -5690,3516:488,168,-58,0,0,0.0750987 -5691,3516:489,169,-58,0,0,0.0750915 -5692,3517:380,170,-58,0,0,0.0750702 -5693,3517:381,171,-58,0,0,0.0752559 -5694,3517:382,172,-58,0,0,0.0755854 -5695,3517:383,173,-58,0,0,0.075528 -5696,3517:384,174,-58,0,0,0.0751701 -5697,3517:485,175,-58,0,0,0.0751059 -5698,3517:486,176,-58,0,0,0.0774291 -5699,3517:487,177,-58,0,0,0.0803479 -5700,3517:488,178,-58,0,0,0.0784777 -5701,3517:489,179,-58,0,0,0.0764659 -5702,3518:380,180,-58,0,0,0.0818408 -5703,5518:370,-180,-57,0,0,0.0915705 -5704,5517:479,-179,-57,0,0,0.0912632 -5705,5517:478,-178,-57,0,0,0.0919986 -5706,5517:477,-177,-57,0,0,0.0913909 -5707,5517:476,-176,-57,0,0,0.0899762 -5708,5517:475,-175,-57,0,0,0.0895396 -5709,5517:374,-174,-57,0,0,0.0876071 -5710,5517:373,-173,-57,0,0,0.0861565 -5711,5517:372,-172,-57,0,0,0.0849267 -5712,5517:371,-171,-57,0,0,0.0846875 -5713,5517:370,-170,-57,0,0,0.0871157 -5714,5516:479,-169,-57,0,0,0.0828892 -5715,5516:478,-168,-57,0,0,0.0818255 -5716,5516:477,-167,-57,0,0,0.0801357 -5717,5516:476,-166,-57,0,0,0.0788502 -5718,5516:475,-165,-57,0,0,0.0793366 -5719,5516:374,-164,-57,0,0,0.0808504 -5720,5516:373,-163,-57,0,0,0.0821656 -5721,5516:372,-162,-57,0,0,0.0839735 -5722,5516:371,-161,-57,0,0,0.084576 -5723,5516:370,-160,-57,0,0,0.0849347 -5724,5515:479,-159,-57,0,0,0.085648 -5725,5515:478,-158,-57,0,0,0.0860109 -5726,5515:477,-157,-57,0,0,0.0855435 -5727,5515:476,-156,-57,0,0,0.0848548 -5728,5515:475,-155,-57,0,0,0.084839 -5729,5515:374,-154,-57,0,0,0.0845602 -5730,5515:373,-153,-57,0,0,0.0844806 -5731,5515:372,-152,-57,0,0,0.0850786 -5732,5515:371,-151,-57,0,0,0.0852626 -5733,5515:370,-150,-57,0,0,0.0882168 -5734,5514:479,-149,-57,0,0,0.0860837 -5735,5514:478,-148,-57,0,0,0.0846795 -5736,5514:477,-147,-57,0,0,0.0860028 -5737,5514:476,-146,-57,0,0,0.0891717 -5738,5514:475,-145,-57,0,0,0.0893639 -5739,5514:374,-144,-57,0,0,0.0894561 -5740,5514:373,-143,-57,0,0,0.0884567 -5741,5514:372,-142,-57,0,0,0.0898081 -5742,5514:371,-141,-57,0,0,0.0917159 -5743,5514:370,-140,-57,0,0,0.0890969 -5744,5513:479,-139,-57,0,0,0.0930771 -5745,5513:478,-138,-57,0,0,0.0958986 -5746,5513:477,-137,-57,0,0,0.0950912 -5747,5513:476,-136,-57,0,0,0.0909228 -5748,5513:475,-135,-57,0,0,0.092489 -5749,5513:374,-134,-57,0,0,0.0966228 -5750,5513:373,-133,-57,0,0,0.0979763 -5751,5513:372,-132,-57,0,0,0.0996966 -5752,5513:371,-131,-57,0,0,0.099586 -5753,5513:370,-130,-57,0,0,0.0992458 -5754,5512:479,-129,-57,0,0,0.100344 -5755,5512:478,-128,-57,0,0,0.10136 -5756,5512:477,-127,-57,0,0,0.102082 -5757,5512:476,-126,-57,0,0,0.103247 -5758,5512:475,-125,-57,0,0,0.10228 -5759,5512:374,-124,-57,0,0,0.100911 -5760,5512:373,-123,-57,0,0,0.0999736 -5761,5512:372,-122,-57,0,0,0.100474 -5762,5512:371,-121,-57,0,0,0.101182 -5763,5512:370,-120,-57,0,0,0.10319 -5764,5511:479,-119,-57,0,0,0.103028 -5765,5511:478,-118,-57,0,0,0.104327 -5766,5511:477,-117,-57,0,0,0.106507 -5767,5511:476,-116,-57,0,0,0.108667 -5768,5511:475,-115,-57,0,0,0.107587 -5769,5511:374,-114,-57,0,0,0.110714 -5770,5511:373,-113,-57,0,0,0.11117 -5771,5511:372,-112,-57,0,0,0.112322 -5772,5511:371,-111,-57,0,0,0.109756 -5773,5511:370,-110,-57,0,0,0.106331 -5774,5510:479,-109,-57,0,0,0.108071 -5775,5510:478,-108,-57,0,0,0.11037 -5776,5510:477,-107,-57,0,0,0.110562 -5777,5510:476,-106,-57,0,0,0.110249 -5778,5510:475,-105,-57,0,0,0.109566 -5779,5510:374,-104,-57,0,0,0.108687 -5780,5510:373,-103,-57,0,0,0.107429 -5781,5510:372,-102,-57,0,0,0.104077 -5782,5510:371,-101,-57,0,0,0.101556 -5783,5510:370,-100,-57,0,0,0.103323 -5784,5509:479,-99,-57,0,0,0.102649 -5785,5509:478,-98,-57,0,0,0.100112 -5786,5509:477,-97,-57,0,0,0.099586 -5787,5509:476,-96,-57,0,0,0.100818 -5788,5509:475,-95,-57,0,0,0.0996136 -5789,5509:374,-94,-57,0,0,0.0997334 -5790,5509:373,-93,-57,0,0,0.100455 -5791,5509:372,-92,-57,0,0,0.100958 -5792,5509:371,-91,-57,0,0,0.0986869 -5793,5509:370,-90,-57,0,0,0.102148 -5794,5508:479,-89,-57,0,0,0.101763 -5795,5508:478,-88,-57,0,0,0.107016 -5796,5508:477,-87,-57,0,0,0.110774 -5797,5508:476,-86,-57,0,0,0.108468 -5798,5508:475,-85,-57,0,0,0.103991 -5799,5508:374,-84,-57,0,0,0.103609 -5800,5508:373,-83,-57,0,0,0.105339 -5801,5508:372,-82,-57,0,0,0.106448 -5802,5508:371,-81,-57,0,0,0.100874 -5803,5508:370,-80,-57,0,0,0.0867406 -5804,5507:479,-79,-57,0,0,0.0863265 -5805,5507:478,-78,-57,0,0,0.088316 -5806,5507:477,-77,-57,0,0,0.0939216 -5807,5507:476,-76,-57,0,0,0.100011 -5808,5507:475,-75,-57,0,0,0.0989614 -5809,5507:374,-74,-57,0,0,0.100409 -5810,5507:373,-73,-57,0,0,0.10196 -5811,5507:372,-72,-57,0,0,0.100298 -5812,5507:371,-71,-57,0,0,0.0977767 -5813,5507:370,-70,-57,0,0,0.092558 -5814,5506:479,-69,-57,0,0,0.0889802 -5815,5506:478,-68,-57,0,0,0.0819335 -5816,5506:477,-67,-57,0,0,0.0851426 -5817,5506:476,-66,-57,0,0,0.0820652 -5818,5506:475,-65,-57,0,0,0.0817328 -5819,5506:374,-64,-57,0,0,0.0815943 -5820,5506:373,-63,-57,0,0,0.081548 -5821,5506:372,-62,-57,0,0,0.0876976 -5822,5506:371,-61,-57,0,0,0.0820574 -5823,5506:370,-60,-57,0,0,0.0871483 -5824,5505:477,-57,-57,0,0,0.0793666 -5825,5505:476,-56,-57,0,0,0.0771141 -5826,5505:475,-55,-57,0,0,0.0766111 -5827,5505:374,-54,-57,0,0,0.0759379 -5828,5505:373,-53,-57,0,0,0.07565 -5829,5505:372,-52,-57,0,0,0.0749775 -5830,5505:371,-51,-57,0,0,0.0750273 -5831,5505:370,-50,-57,0,0,0.0750131 -5832,5504:479,-49,-57,0,0,0.0749988 -5833,5504:478,-48,-57,0,0,0.0749846 -5834,5504:477,-47,-57,0,0,0.0749703 -5835,5504:476,-46,-57,0,0,0.0749703 -5836,5504:475,-45,-57,0,0,0.0749775 -5837,5504:374,-44,-57,0,0,0.0749703 -5838,5504:373,-43,-57,0,0,0.074949 -5839,5504:372,-42,-57,0,0,0.0749418 -5840,5504:371,-41,-57,0,0,0.074949 -5841,5504:370,-40,-57,0,0,0.0749562 -5842,5503:479,-39,-57,0,0,0.0749631 -5843,5503:478,-38,-57,0,0,0.0749631 -5844,5503:477,-37,-57,0,0,0.0749703 -5845,5503:476,-36,-57,0,0,0.0749775 -5846,5503:475,-35,-57,0,0,0.0749916 -5847,5503:374,-34,-57,0,0,0.0749988 -5848,5503:373,-33,-57,0,0,0.0749988 -5849,5503:372,-32,-57,0,0,0.0749988 -5850,5503:371,-31,-57,0,0,0.0749916 -5851,5503:370,-30,-57,0,0,0.0749916 -5852,5502:479,-29,-57,0,0,0.0749916 -5853,5502:478,-28,-57,0,0,0.0749916 -5854,5502:477,-27,-57,0,0,0.0749846 -5855,5502:476,-26,-57,0,0,0.0749846 -5856,5502:475,-25,-57,0,0,0.0749775 -5857,5502:374,-24,-57,0,0,0.0749703 -5858,5502:373,-23,-57,0,0,0.0749631 -5859,5502:372,-22,-57,0,0,0.074949 -5860,5502:371,-21,-57,0,0,0.0749346 -5861,5502:370,-20,-57,0,0,0.0749205 -5862,5501:479,-19,-57,0,0,0.074899 -5863,5501:478,-18,-57,0,0,0.0748777 -5864,5501:477,-17,-57,0,0,0.0748636 -5865,5501:476,-16,-57,0,0,0.0748564 -5866,5501:475,-15,-57,0,0,0.0748493 -5867,5501:374,-14,-57,0,0,0.0748493 -5868,5501:373,-13,-57,0,0,0.0748564 -5869,5501:372,-12,-57,0,0,0.0748564 -5870,5501:371,-11,-57,0,0,0.0748705 -5871,5501:370,-10,-57,0,0,0.0748777 -5872,5500:479,-9,-57,0,0,0.0748705 -5873,5500:478,-8,-57,0,0,0.0748705 -5874,5500:477,-7,-57,0,0,0.0748705 -5875,5500:476,-6,-57,0,0,0.0748705 -5876,5500:475,-5,-57,0,0,0.0748636 -5877,5500:374,-4,-57,0,0,0.0748564 -5878,5500:373,-3,-57,0,0,0.0748493 -5879,5500:372,-2,-57,0,0,0.0748564 -5880,5500:371,-1,-57,0,0,0.0748564 -5881,3500:371,0,-57,0,0,0.0748636 -5882,3500:371,1,-57,0,0,0.0748705 -5883,3500:372,2,-57,0,0,0.074892 -5884,3500:373,3,-57,0,0,0.0748849 -5885,3500:374,4,-57,0,0,0.0748777 -5886,3500:475,5,-57,0,0,0.0748777 -5887,3500:476,6,-57,0,0,0.074892 -5888,3500:477,7,-57,0,0,0.0749062 -5889,3500:478,8,-57,0,0,0.0749133 -5890,3500:479,9,-57,0,0,0.0749275 -5891,3501:370,10,-57,0,0,0.074949 -5892,3501:371,11,-57,0,0,0.0749703 -5893,3501:372,12,-57,0,0,0.0749562 -5894,3501:373,13,-57,0,0,0.0749562 -5895,3501:374,14,-57,0,0,0.0749562 -5896,3501:475,15,-57,0,0,0.0749133 -5897,3501:476,16,-57,0,0,0.0748636 -5898,3501:477,17,-57,0,0,0.0748349 -5899,3501:478,18,-57,0,0,0.0747711 -5900,3501:479,19,-57,0,0,0.0747425 -5901,3502:370,20,-57,0,0,0.0748137 -5902,3502:371,21,-57,0,0,0.0748065 -5903,3502:372,22,-57,0,0,0.074764 -5904,3502:373,23,-57,0,0,0.074764 -5905,3502:374,24,-57,0,0,0.074764 -5906,3502:475,25,-57,0,0,0.0747497 -5907,3502:476,26,-57,0,0,0.074892 -5908,3502:477,27,-57,0,0,0.0750558 -5909,3502:478,28,-57,0,0,0.0753272 -5910,3502:479,29,-57,0,0,0.0753344 -5911,3503:370,30,-57,0,0,0.0752273 -5912,3503:371,31,-57,0,0,0.0751987 -5913,3503:372,32,-57,0,0,0.0750843 -5914,3503:373,33,-57,0,0,0.0748137 -5915,3503:374,34,-57,0,0,0.0748493 -5916,3503:475,35,-57,0,0,0.0748636 -5917,3503:476,36,-57,0,0,0.0748705 -5918,3503:477,37,-57,0,0,0.0748705 -5919,3503:478,38,-57,0,0,0.0748636 -5920,3503:479,39,-57,0,0,0.0748564 -5921,3504:370,40,-57,0,0,0.074828 -5922,3504:371,41,-57,0,0,0.0748493 -5923,3504:372,42,-57,0,0,0.0749062 -5924,3504:373,43,-57,0,0,0.0749631 -5925,3504:374,44,-57,0,0,0.0748349 -5926,3504:475,45,-57,0,0,0.0748493 -5927,3504:476,46,-57,0,0,0.0748705 -5928,3504:477,47,-57,0,0,0.0748777 -5929,3504:478,48,-57,0,0,0.0748705 -5930,3504:479,49,-57,0,0,0.0748705 -5931,3505:370,50,-57,0,0,0.0748849 -5932,3505:371,51,-57,0,0,0.0749062 -5933,3505:372,52,-57,0,0,0.0749133 -5934,3505:373,53,-57,0,0,0.0749275 -5935,3505:374,54,-57,0,0,0.0749346 -5936,3505:475,55,-57,0,0,0.0749275 -5937,3505:476,56,-57,0,0,0.0749775 -5938,3505:477,57,-57,0,0,0.0749346 -5939,3505:478,58,-57,0,0,0.0749418 -5940,3505:479,59,-57,0,0,0.0749418 -5941,3506:370,60,-57,0,0,0.0749418 -5942,3506:371,61,-57,0,0,0.0749631 -5943,3506:372,62,-57,0,0,0.0749562 -5944,3506:373,63,-57,0,0,0.0749562 -5945,3506:374,64,-57,0,0,0.0749631 -5946,3506:475,65,-57,0,0,0.0749703 -5947,3506:476,66,-57,0,0,0.0749846 -5948,3506:477,67,-57,0,0,0.0749916 -5949,3506:478,68,-57,0,0,0.0749775 -5950,3506:479,69,-57,0,0,0.0750131 -5951,3507:370,70,-57,0,0,0.0749562 -5952,3507:371,71,-57,0,0,0.0751059 -5953,3507:372,72,-57,0,0,0.0749275 -5954,3507:374,74,-57,0,0,0.0752559 -5955,3507:475,75,-57,0,0,0.0757937 -5956,3507:476,76,-57,0,0,0.0749846 -5957,3507:477,77,-57,0,0,0.074899 -5958,3507:478,78,-57,0,0,0.0753417 -5959,3507:479,79,-57,0,0,0.0749916 -5960,3508:370,80,-57,0,0,0.0749631 -5961,3508:371,81,-57,0,0,0.0750273 -5962,3508:372,82,-57,0,0,0.075063 -5963,3508:373,83,-57,0,0,0.0754562 -5964,3508:374,84,-57,0,0,0.0748705 -5965,3508:475,85,-57,0,0,0.0749346 -5966,3508:476,86,-57,0,0,0.0749418 -5967,3508:477,87,-57,0,0,0.0749346 -5968,3508:478,88,-57,0,0,0.074892 -5969,3508:479,89,-57,0,0,0.0755424 -5970,3509:370,90,-57,0,0,0.0758155 -5971,3509:371,91,-57,0,0,0.0770046 -5972,3509:372,92,-57,0,0,0.0764296 -5973,3509:373,93,-57,0,0,0.0754779 -5974,3509:374,94,-57,0,0,0.0749916 -5975,3509:475,95,-57,0,0,0.0750201 -5976,3509:476,96,-57,0,0,0.0750416 -5977,3509:477,97,-57,0,0,0.075063 -5978,3509:478,98,-57,0,0,0.0750702 -5979,3509:479,99,-57,0,0,0.0750773 -5980,3510:370,100,-57,0,0,0.0750773 -5981,3510:371,101,-57,0,0,0.075063 -5982,3510:372,102,-57,0,0,0.0750488 -5983,3510:373,103,-57,0,0,0.075006 -5984,3510:374,104,-57,0,0,0.075006 -5985,3510:475,105,-57,0,0,0.0750131 -5986,3510:476,106,-57,0,0,0.0749916 -5987,3510:477,107,-57,0,0,0.0749916 -5988,3510:478,108,-57,0,0,0.0749916 -5989,3510:479,109,-57,0,0,0.0749846 -5990,3511:370,110,-57,0,0,0.0749631 -5991,3511:371,111,-57,0,0,0.0749562 -5992,3511:372,112,-57,0,0,0.0749631 -5993,3511:373,113,-57,0,0,0.0749346 -5994,3511:374,114,-57,0,0,0.0757722 -5995,3511:475,115,-57,0,0,0.0779075 -5996,3511:476,116,-57,0,0,0.0752415 -5997,3511:477,117,-57,0,0,0.0751558 -5998,3511:478,118,-57,0,0,0.0784555 -5999,3511:479,119,-57,0,0,0.0795921 -6000,3512:370,120,-57,0,0,0.0804619 -6001,3512:371,121,-57,0,0,0.0847113 -6002,3512:372,122,-57,0,0,0.0877551 -6003,3512:373,123,-57,0,0,0.0883079 -6004,3512:374,124,-57,0,0,0.0889802 -6005,3512:475,125,-57,0,0,0.0891717 -6006,3512:476,126,-57,0,0,0.0889469 -6007,3512:477,127,-57,0,0,0.0878704 -6008,3512:478,128,-57,0,0,0.0874676 -6009,3512:479,129,-57,0,0,0.0853911 -6010,3513:370,130,-57,0,0,0.0864725 -6011,3513:371,131,-57,0,0,0.0867814 -6012,3513:372,132,-57,0,0,0.0906516 -6013,3513:373,133,-57,0,0,0.08959 -6014,3513:374,134,-57,0,0,0.0781663 -6015,3513:475,135,-57,0,0,0.0827956 -6016,3513:476,136,-57,0,0,0.0795168 -6017,3513:477,137,-57,0,0,0.0800599 -6018,3513:478,138,-57,0,0,0.0754562 -6019,3513:479,139,-57,0,0,0.0753703 -6020,3514:370,140,-57,0,0,0.0765166 -6021,3514:371,141,-57,0,0,0.0780775 -6022,3514:372,142,-57,0,0,0.079577 -6023,3514:373,143,-57,0,0,0.0798634 -6024,3514:374,144,-57,0,0,0.0796146 -6025,3514:475,145,-57,0,0,0.0822899 -6026,3514:476,146,-57,0,0,0.0803785 -6027,3514:477,147,-57,0,0,0.0760606 -6028,3514:478,148,-57,0,0,0.0759019 -6029,3514:479,149,-57,0,0,0.0756141 -6030,3515:370,150,-57,0,0,0.0756787 -6031,3515:371,151,-57,0,0,0.075686 -6032,3515:372,152,-57,0,0,0.0754275 -6033,3515:373,153,-57,0,0,0.0753203 -6034,3515:374,154,-57,0,0,0.0753489 -6035,3515:475,155,-57,0,0,0.0752343 -6036,3515:476,156,-57,0,0,0.0751558 -6037,3515:477,157,-57,0,0,0.0750773 -6038,3515:478,158,-57,0,0,0.0750773 -6039,3515:479,159,-57,0,0,0.075063 -6040,3516:370,160,-57,0,0,0.0750702 -6041,3516:371,161,-57,0,0,0.0750773 -6042,3516:372,162,-57,0,0,0.0750702 -6043,3516:373,163,-57,0,0,0.0750843 -6044,3516:374,164,-57,0,0,0.0750915 -6045,3516:475,165,-57,0,0,0.0751486 -6046,3516:476,166,-57,0,0,0.0752129 -6047,3516:477,167,-57,0,0,0.0752559 -6048,3516:478,168,-57,0,0,0.0758225 -6049,3516:479,169,-57,0,0,0.0782775 -6050,3517:370,170,-57,0,0,0.0796146 -6051,3517:371,171,-57,0,0,0.07969 -6052,3517:372,172,-57,0,0,0.0821503 -6053,3517:373,173,-57,0,0,0.0782108 -6054,3517:374,174,-57,0,0,0.0756285 -6055,3517:475,175,-57,0,0,0.0769462 -6056,3517:476,176,-57,0,0,0.090533 -6057,3517:477,177,-57,0,0,0.088316 -6058,3517:478,178,-57,0,0,0.0825073 -6059,3517:479,179,-57,0,0,0.0931811 -6060,3518:370,180,-57,0,0,0.0915705 -6061,5518:360,-180,-56,0,0,0.110138 -6062,5517:469,-179,-56,0,0,0.0982946 -6063,5517:468,-178,-56,0,0,0.0975051 -6064,5517:467,-177,-56,0,0,0.0968562 -6065,5517:466,-176,-56,0,0,0.0947733 -6066,5517:465,-175,-56,0,0,0.0946147 -6067,5517:364,-174,-56,0,0,0.0952592 -6068,5517:363,-173,-56,0,0,0.0917072 -6069,5517:362,-172,-56,0,0,0.0933723 -6070,5517:361,-171,-56,0,0,0.0919986 -6071,5517:360,-170,-56,0,0,0.0904146 -6072,5516:469,-169,-56,0,0,0.0873611 -6073,5516:468,-168,-56,0,0,0.0859705 -6074,5516:467,-167,-56,0,0,0.0862535 -6075,5516:466,-166,-56,0,0,0.0862212 -6076,5516:465,-165,-56,0,0,0.0856399 -6077,5516:364,-164,-56,0,0,0.0855033 -6078,5516:363,-163,-56,0,0,0.0842109 -6079,5516:362,-162,-56,0,0,0.083926 -6080,5516:361,-161,-56,0,0,0.0845124 -6081,5516:360,-160,-56,0,0,0.0849187 -6082,5515:469,-159,-56,0,0,0.0852946 -6083,5515:468,-158,-56,0,0,0.0856802 -6084,5515:467,-157,-56,0,0,0.0861402 -6085,5515:466,-156,-56,0,0,0.0862535 -6086,5515:465,-155,-56,0,0,0.0866024 -6087,5515:364,-154,-56,0,0,0.0862859 -6088,5515:363,-153,-56,0,0,0.0854954 -6089,5515:362,-152,-56,0,0,0.0860514 -6090,5515:361,-151,-56,0,0,0.0871648 -6091,5515:360,-150,-56,0,0,0.0913058 -6092,5514:469,-149,-56,0,0,0.0929644 -6093,5514:468,-148,-56,0,0,0.092222 -6094,5514:467,-147,-56,0,0,0.0868791 -6095,5514:466,-146,-56,0,0,0.087714 -6096,5514:465,-145,-56,0,0,0.0875908 -6097,5514:364,-144,-56,0,0,0.0921619 -6098,5514:363,-143,-56,0,0,0.0917328 -6099,5514:362,-142,-56,0,0,0.0898753 -6100,5514:361,-141,-56,0,0,0.090855 -6101,5514:360,-140,-56,0,0,0.0914594 -6102,5513:469,-139,-56,0,0,0.0941056 -6103,5513:468,-138,-56,0,0,0.0958899 -6104,5513:467,-137,-56,0,0,0.0957386 -6105,5513:466,-136,-56,0,0,0.0949674 -6106,5513:465,-135,-56,0,0,0.0973334 -6107,5513:364,-134,-56,0,0,0.0989247 -6108,5513:363,-133,-56,0,0,0.0990439 -6109,5513:362,-132,-56,0,0,0.0991813 -6110,5513:361,-131,-56,0,0,0.099752 -6111,5513:360,-130,-56,0,0,0.100502 -6112,5512:469,-129,-56,0,0,0.103066 -6113,5512:468,-128,-56,0,0,0.1028 -6114,5512:467,-127,-56,0,0,0.103418 -6115,5512:466,-126,-56,0,0,0.104567 -6116,5512:465,-125,-56,0,0,0.104058 -6117,5512:364,-124,-56,0,0,0.102167 -6118,5512:363,-123,-56,0,0,0.101537 -6119,5512:362,-122,-56,0,0,0.100837 -6120,5512:361,-121,-56,0,0,0.101904 -6121,5512:360,-120,-56,0,0,0.105029 -6122,5511:469,-119,-56,0,0,0.106663 -6123,5511:468,-118,-56,0,0,0.107301 -6124,5511:467,-117,-56,0,0,0.10817 -6125,5511:466,-116,-56,0,0,0.109235 -6126,5511:465,-115,-56,0,0,0.109857 -6127,5511:364,-114,-56,0,0,0.110108 -6128,5511:363,-113,-56,0,0,0.111668 -6129,5511:362,-112,-56,0,0,0.113795 -6130,5511:361,-111,-56,0,0,0.113774 -6131,5511:360,-110,-56,0,0,0.110229 -6132,5510:469,-109,-56,0,0,0.108866 -6133,5510:468,-108,-56,0,0,0.111587 -6134,5510:467,-107,-56,0,0,0.113495 -6135,5510:466,-106,-56,0,0,0.112476 -6136,5510:465,-105,-56,0,0,0.108458 -6137,5510:364,-104,-56,0,0,0.106262 -6138,5510:363,-103,-56,0,0,0.105252 -6139,5510:362,-102,-56,0,0,0.104827 -6140,5510:361,-101,-56,0,0,0.104576 -6141,5510:360,-100,-56,0,0,0.103304 -6142,5509:469,-99,-56,0,0,0.10212 -6143,5509:468,-98,-56,0,0,0.100837 -6144,5509:467,-97,-56,0,0,0.102857 -6145,5509:466,-96,-56,0,0,0.105252 -6146,5509:465,-95,-56,0,0,0.103886 -6147,5509:364,-94,-56,0,0,0.102271 -6148,5509:363,-93,-56,0,0,0.101547 -6149,5509:362,-92,-56,0,0,0.102205 -6150,5509:361,-91,-56,0,0,0.103953 -6151,5509:360,-90,-56,0,0,0.101988 -6152,5508:469,-89,-56,0,0,0.10165 -6153,5508:468,-88,-56,0,0,0.111485 -6154,5508:467,-87,-56,0,0,0.112887 -6155,5508:466,-86,-56,0,0,0.11032 -6156,5508:465,-85,-56,0,0,0.107301 -6157,5508:364,-84,-56,0,0,0.105912 -6158,5508:363,-83,-56,0,0,0.10814 -6159,5508:362,-82,-56,0,0,0.109606 -6160,5508:361,-81,-56,0,0,0.111893 -6161,5508:360,-80,-56,0,0,0.110299 -6162,5507:469,-79,-56,0,0,0.10027 -6163,5507:468,-78,-56,0,0,0.0920156 -6164,5507:467,-77,-56,0,0,0.0899004 -6165,5507:466,-76,-56,0,0,0.0922133 -6166,5507:465,-75,-56,0,0,0.0959255 -6167,5507:364,-74,-56,0,0,0.0987326 -6168,5507:363,-73,-56,0,0,0.108916 -6169,5507:362,-72,-56,0,0,0.104106 -6170,5507:361,-71,-56,0,0,0.105155 -6171,5507:360,-70,-56,0,0,0.10531 -6172,5506:469,-69,-56,0,0,0.10357 -6173,5506:468,-68,-56,0,0,0.0978492 -6174,5506:467,-67,-56,0,0,0.0966945 -6175,5506:466,-66,-56,0,0,0.0886891 -6176,5506:465,-65,-56,0,0,0.0808733 -6177,5506:364,-64,-56,0,0,0.0796146 -6178,5506:363,-63,-56,0,0,0.0793591 -6179,5506:362,-62,-56,0,0,0.0796071 -6180,5506:361,-61,-56,0,0,0.0796447 -6181,5506:360,-60,-56,0,0,0.0797653 -6182,5505:469,-59,-56,0,0,0.0799164 -6183,5505:468,-58,-56,0,0,0.080007 -6184,5505:467,-57,-56,0,0,0.0780996 -6185,5505:466,-56,-56,0,0,0.0784333 -6186,5505:465,-55,-56,0,0,0.0775981 -6187,5505:364,-54,-56,0,0,0.0763281 -6188,5505:363,-53,-56,0,0,0.0751059 -6189,5505:362,-52,-56,0,0,0.0751059 -6190,5505:361,-51,-56,0,0,0.0749988 -6191,5505:360,-50,-56,0,0,0.0749846 -6192,5504:469,-49,-56,0,0,0.0749775 -6193,5504:468,-48,-56,0,0,0.0749846 -6194,5504:467,-47,-56,0,0,0.0749916 -6195,5504:466,-46,-56,0,0,0.075006 -6196,5504:465,-45,-56,0,0,0.0749988 -6197,5504:364,-44,-56,0,0,0.0749775 -6198,5504:363,-43,-56,0,0,0.0749631 -6199,5504:362,-42,-56,0,0,0.074949 -6200,5504:361,-41,-56,0,0,0.0749275 -6201,5504:360,-40,-56,0,0,0.0749133 -6202,5503:469,-39,-56,0,0,0.0749062 -6203,5503:468,-38,-56,0,0,0.0749205 -6204,5503:467,-37,-56,0,0,0.0749346 -6205,5503:466,-36,-56,0,0,0.0749418 -6206,5503:465,-35,-56,0,0,0.0749703 -6207,5503:364,-34,-56,0,0,0.0749846 -6208,5503:363,-33,-56,0,0,0.0749846 -6209,5503:362,-32,-56,0,0,0.0749916 -6210,5503:361,-31,-56,0,0,0.0749988 -6211,5503:360,-30,-56,0,0,0.0749916 -6212,5502:469,-29,-56,0,0,0.0749916 -6213,5502:468,-28,-56,0,0,0.0749846 -6214,5502:467,-27,-56,0,0,0.0749846 -6215,5502:466,-26,-56,0,0,0.0749846 -6216,5502:465,-25,-56,0,0,0.0749846 -6217,5502:364,-24,-56,0,0,0.0749703 -6218,5502:363,-23,-56,0,0,0.0749631 -6219,5502:362,-22,-56,0,0,0.0749418 -6220,5502:361,-21,-56,0,0,0.0749275 -6221,5502:360,-20,-56,0,0,0.0749133 -6222,5501:469,-19,-56,0,0,0.074899 -6223,5501:468,-18,-56,0,0,0.0748777 -6224,5501:467,-17,-56,0,0,0.0748636 -6225,5501:466,-16,-56,0,0,0.074892 -6226,5501:465,-15,-56,0,0,0.0749275 -6227,5501:364,-14,-56,0,0,0.0749133 -6228,5501:363,-13,-56,0,0,0.0748849 -6229,5501:362,-12,-56,0,0,0.0748777 -6230,5501:361,-11,-56,0,0,0.0748705 -6231,5501:360,-10,-56,0,0,0.0748636 -6232,5500:469,-9,-56,0,0,0.0748705 -6233,5500:468,-8,-56,0,0,0.0748636 -6234,5500:467,-7,-56,0,0,0.0748564 -6235,5500:466,-6,-56,0,0,0.0748636 -6236,5500:465,-5,-56,0,0,0.0748636 -6237,5500:364,-4,-56,0,0,0.0748705 -6238,5500:363,-3,-56,0,0,0.0748705 -6239,5500:362,-2,-56,0,0,0.0748705 -6240,5500:361,-1,-56,0,0,0.0748636 -6241,3500:361,0,-56,0,0,0.0748777 -6242,3500:361,1,-56,0,0,0.0748849 -6243,3500:362,2,-56,0,0,0.0748849 -6244,3500:363,3,-56,0,0,0.0748777 -6245,3500:364,4,-56,0,0,0.0748705 -6246,3500:465,5,-56,0,0,0.0748849 -6247,3500:466,6,-56,0,0,0.074899 -6248,3500:467,7,-56,0,0,0.0749205 -6249,3500:468,8,-56,0,0,0.0749275 -6250,3500:469,9,-56,0,0,0.0749346 -6251,3501:360,10,-56,0,0,0.074949 -6252,3501:361,11,-56,0,0,0.0749418 -6253,3501:362,12,-56,0,0,0.074949 -6254,3501:363,13,-56,0,0,0.0749631 -6255,3501:364,14,-56,0,0,0.074949 -6256,3501:465,15,-56,0,0,0.0749205 -6257,3501:466,16,-56,0,0,0.0749062 -6258,3501:467,17,-56,0,0,0.0748849 -6259,3501:468,18,-56,0,0,0.0748636 -6260,3501:469,19,-56,0,0,0.0747996 -6261,3502:360,20,-56,0,0,0.0747425 -6262,3502:361,21,-56,0,0,0.0748208 -6263,3502:362,22,-56,0,0,0.0748777 -6264,3502:363,23,-56,0,0,0.0748777 -6265,3502:364,24,-56,0,0,0.0748564 -6266,3502:465,25,-56,0,0,0.0748564 -6267,3502:466,26,-56,0,0,0.0748564 -6268,3502:467,27,-56,0,0,0.0748849 -6269,3502:468,28,-56,0,0,0.075006 -6270,3502:469,29,-56,0,0,0.0753417 -6271,3503:360,30,-56,0,0,0.0753631 -6272,3503:361,31,-56,0,0,0.0751486 -6273,3503:362,32,-56,0,0,0.0751771 -6274,3503:363,33,-56,0,0,0.0751843 -6275,3503:364,34,-56,0,0,0.0751344 -6276,3503:465,35,-56,0,0,0.0749062 -6277,3503:466,36,-56,0,0,0.0748849 -6278,3503:467,37,-56,0,0,0.0748636 -6279,3503:468,38,-56,0,0,0.0748705 -6280,3503:469,39,-56,0,0,0.0748777 -6281,3504:360,40,-56,0,0,0.0748705 -6282,3504:361,41,-56,0,0,0.0748493 -6283,3504:362,42,-56,0,0,0.0748705 -6284,3504:363,43,-56,0,0,0.0749346 -6285,3504:364,44,-56,0,0,0.0750201 -6286,3504:465,45,-56,0,0,0.0754061 -6287,3504:466,46,-56,0,0,0.0751987 -6288,3504:467,47,-56,0,0,0.0748137 -6289,3504:468,48,-56,0,0,0.074828 -6290,3504:469,49,-56,0,0,0.0748349 -6291,3505:360,50,-56,0,0,0.0748421 -6292,3505:361,51,-56,0,0,0.0748564 -6293,3505:362,52,-56,0,0,0.0748636 -6294,3505:363,53,-56,0,0,0.0748636 -6295,3505:364,54,-56,0,0,0.0748564 -6296,3505:465,55,-56,0,0,0.0752844 -6297,3505:466,56,-56,0,0,0.0750773 -6298,3505:467,57,-56,0,0,0.074949 -6299,3505:468,58,-56,0,0,0.0749275 -6300,3505:469,59,-56,0,0,0.0749418 -6301,3506:360,60,-56,0,0,0.0749562 -6302,3506:361,61,-56,0,0,0.0749562 -6303,3506:362,62,-56,0,0,0.0750843 -6304,3506:363,63,-56,0,0,0.0749846 -6305,3506:364,64,-56,0,0,0.0750131 -6306,3506:465,65,-56,0,0,0.0751344 -6307,3506:466,66,-56,0,0,0.0750273 -6308,3506:467,67,-56,0,0,0.0750558 -6309,3506:468,68,-56,0,0,0.0758586 -6310,3506:469,69,-56,0,0,0.0779591 -6311,3507:360,70,-56,0,0,0.0765967 -6312,3507:361,71,-56,0,0,0.075974 -6313,3507:362,72,-56,0,0,0.0764296 -6314,3507:364,74,-56,0,0,0.0756285 -6315,3507:465,75,-56,0,0,0.0759452 -6316,3507:466,76,-56,0,0,0.0761256 -6317,3507:467,77,-56,0,0,0.0755926 -6318,3507:468,78,-56,0,0,0.0754921 -6319,3507:469,79,-56,0,0,0.0755207 -6320,3508:360,80,-56,0,0,0.07565 -6321,3508:361,81,-56,0,0,0.0754849 -6322,3508:362,82,-56,0,0,0.0757795 -6323,3508:363,83,-56,0,0,0.0766839 -6324,3508:364,84,-56,0,0,0.0765166 -6325,3508:465,85,-56,0,0,0.076039 -6326,3508:466,86,-56,0,0,0.0747852 -6327,3508:467,87,-56,0,0,0.074892 -6328,3508:468,88,-56,0,0,0.0749062 -6329,3508:469,89,-56,0,0,0.074899 -6330,3509:360,90,-56,0,0,0.0749631 -6331,3509:361,91,-56,0,0,0.0759452 -6332,3509:362,92,-56,0,0,0.0774365 -6333,3509:363,93,-56,0,0,0.0774658 -6334,3509:364,94,-56,0,0,0.0768877 -6335,3509:465,95,-56,0,0,0.0751059 -6336,3509:466,96,-56,0,0,0.0749846 -6337,3509:467,97,-56,0,0,0.0750201 -6338,3509:468,98,-56,0,0,0.0750345 -6339,3509:469,99,-56,0,0,0.0750273 -6340,3510:360,100,-56,0,0,0.0750131 -6341,3510:361,101,-56,0,0,0.075006 -6342,3510:362,102,-56,0,0,0.075006 -6343,3510:363,103,-56,0,0,0.0749988 -6344,3510:364,104,-56,0,0,0.0749916 -6345,3510:465,105,-56,0,0,0.0749988 -6346,3510:466,106,-56,0,0,0.0749988 -6347,3510:467,107,-56,0,0,0.0749846 -6348,3510:468,108,-56,0,0,0.074949 -6349,3510:469,109,-56,0,0,0.0750558 -6350,3511:360,110,-56,0,0,0.0753272 -6351,3511:361,111,-56,0,0,0.0764659 -6352,3511:362,112,-56,0,0,0.0786116 -6353,3511:363,113,-56,0,0,0.0788128 -6354,3511:364,114,-56,0,0,0.0751272 -6355,3511:465,115,-56,0,0,0.0783071 -6356,3511:466,116,-56,0,0,0.0798182 -6357,3511:467,117,-56,0,0,0.0818717 -6358,3511:468,118,-56,0,0,0.0834847 -6359,3511:469,119,-56,0,0,0.083532 -6360,3512:360,120,-56,0,0,0.0847592 -6361,3512:361,121,-56,0,0,0.0846637 -6362,3512:362,122,-56,0,0,0.0854151 -6363,3512:363,123,-56,0,0,0.0881755 -6364,3512:364,124,-56,0,0,0.0888054 -6365,3512:465,125,-56,0,0,0.0896821 -6366,3512:466,126,-56,0,0,0.0895731 -6367,3512:467,127,-56,0,0,0.0901193 -6368,3512:468,128,-56,0,0,0.0904316 -6369,3512:469,129,-56,0,0,0.0912717 -6370,3513:360,130,-56,0,0,0.0931639 -6371,3513:361,131,-56,0,0,0.0930771 -6372,3513:362,132,-56,0,0,0.0912886 -6373,3513:363,133,-56,0,0,0.0934679 -6374,3513:364,134,-56,0,0,0.0952946 -6375,3513:465,135,-56,0,0,0.0940092 -6376,3513:466,136,-56,0,0,0.0893724 -6377,3513:467,137,-56,0,0,0.0870748 -6378,3513:468,138,-56,0,0,0.0881921 -6379,3513:469,139,-56,0,0,0.0833749 -6380,3514:360,140,-56,0,0,0.0811335 -6381,3514:361,141,-56,0,0,0.0838944 -6382,3514:362,142,-56,0,0,0.0841632 -6383,3514:363,143,-56,0,0,0.0868791 -6384,3514:364,144,-56,0,0,0.0855999 -6385,3514:465,145,-56,0,0,0.0886475 -6386,3514:466,146,-56,0,0,0.084021 -6387,3514:467,147,-56,0,0,0.0797653 -6388,3514:468,148,-56,0,0,0.0806217 -6389,3514:469,149,-56,0,0,0.0767638 -6390,3515:360,150,-56,0,0,0.0758225 -6391,3515:361,151,-56,0,0,0.0756932 -6392,3515:362,152,-56,0,0,0.0767494 -6393,3515:363,153,-56,0,0,0.07614 -6394,3515:364,154,-56,0,0,0.0752916 -6395,3515:465,155,-56,0,0,0.0751272 -6396,3515:466,156,-56,0,0,0.0751128 -6397,3515:467,157,-56,0,0,0.0750987 -6398,3515:468,158,-56,0,0,0.0750915 -6399,3515:469,159,-56,0,0,0.0750702 -6400,3516:360,160,-56,0,0,0.0750702 -6401,3516:361,161,-56,0,0,0.0750702 -6402,3516:362,162,-56,0,0,0.0750558 -6403,3516:363,163,-56,0,0,0.075063 -6404,3516:364,164,-56,0,0,0.0750773 -6405,3516:465,165,-56,0,0,0.0751272 -6406,3516:466,166,-56,0,0,0.0755639 -6407,3516:467,167,-56,0,0,0.0813636 -6408,3516:468,168,-56,0,0,0.086448 -6409,3516:469,169,-56,0,0,0.0851905 -6410,3517:360,170,-56,0,0,0.0861402 -6411,3517:361,171,-56,0,0,0.0845522 -6412,3517:362,172,-56,0,0,0.0836263 -6413,3517:363,173,-56,0,0,0.0799012 -6414,3517:364,174,-56,0,0,0.0816328 -6415,3517:465,175,-56,0,0,0.102243 -6416,3517:466,176,-56,0,0,0.11119 -6417,3517:467,177,-56,0,0,0.109016 -6418,3517:468,178,-56,0,0,0.107065 -6419,3517:469,179,-56,0,0,0.110795 -6420,3518:360,180,-56,0,0,0.110138 -6421,5518:350,-180,-55,0,0,0.109736 -6422,5517:459,-179,-55,0,0,0.104942 -6423,5517:458,-178,-55,0,0,0.102092 -6424,5517:457,-177,-55,0,0,0.105339 -6425,5517:456,-176,-55,0,0,0.106145 -6426,5517:455,-175,-55,0,0,0.103446 -6427,5517:354,-174,-55,0,0,0.100967 -6428,5517:353,-173,-55,0,0,0.0978583 -6429,5517:352,-172,-55,0,0,0.0953124 -6430,5517:351,-171,-55,0,0,0.0923426 -6431,5517:350,-170,-55,0,0,0.0912205 -6432,5516:459,-169,-55,0,0,0.0885313 -6433,5516:458,-168,-55,0,0,0.0874349 -6434,5516:457,-167,-55,0,0,0.0874759 -6435,5516:456,-166,-55,0,0,0.0876154 -6436,5516:455,-165,-55,0,0,0.0873693 -6437,5516:354,-164,-55,0,0,0.0872629 -6438,5516:353,-163,-55,0,0,0.0872956 -6439,5516:352,-162,-55,0,0,0.086586 -6440,5516:351,-161,-55,0,0,0.0871321 -6441,5516:350,-160,-55,0,0,0.0877222 -6442,5515:459,-159,-55,0,0,0.087181 -6443,5515:458,-158,-55,0,0,0.0880847 -6444,5515:457,-157,-55,0,0,0.0885397 -6445,5515:456,-156,-55,0,0,0.0877551 -6446,5515:455,-155,-55,0,0,0.0870177 -6447,5515:354,-154,-55,0,0,0.0869851 -6448,5515:353,-153,-55,0,0,0.0868547 -6449,5515:352,-152,-55,0,0,0.0864643 -6450,5515:351,-151,-55,0,0,0.0901025 -6451,5515:350,-150,-55,0,0,0.090626 -6452,5514:459,-149,-55,0,0,0.0964972 -6453,5514:458,-148,-55,0,0,0.0951266 -6454,5514:457,-147,-55,0,0,0.0955961 -6455,5514:456,-146,-55,0,0,0.0920672 -6456,5514:455,-145,-55,0,0,0.0939392 -6457,5514:354,-144,-55,0,0,0.096865 -6458,5514:353,-143,-55,0,0,0.0978946 -6459,5514:352,-142,-55,0,0,0.09784 -6460,5514:351,-141,-55,0,0,0.0980218 -6461,5514:350,-140,-55,0,0,0.101135 -6462,5513:459,-139,-55,0,0,0.103466 -6463,5513:458,-138,-55,0,0,0.0984495 -6464,5513:457,-137,-55,0,0,0.095277 -6465,5513:456,-136,-55,0,0,0.0966854 -6466,5513:455,-135,-55,0,0,0.103637 -6467,5513:354,-134,-55,0,0,0.10165 -6468,5513:353,-133,-55,0,0,0.100149 -6469,5513:352,-132,-55,0,0,0.103095 -6470,5513:351,-131,-55,0,0,0.105068 -6471,5513:350,-130,-55,0,0,0.103342 -6472,5512:459,-129,-55,0,0,0.103676 -6473,5512:458,-128,-55,0,0,0.104682 -6474,5512:457,-127,-55,0,0,0.105513 -6475,5512:456,-126,-55,0,0,0.105649 -6476,5512:455,-125,-55,0,0,0.10449 -6477,5512:354,-124,-55,0,0,0.103867 -6478,5512:353,-123,-55,0,0,0.102687 -6479,5512:352,-122,-55,0,0,0.102573 -6480,5512:351,-121,-55,0,0,0.104653 -6481,5512:350,-120,-55,0,0,0.105834 -6482,5511:459,-119,-55,0,0,0.106653 -6483,5511:458,-118,-55,0,0,0.108637 -6484,5511:457,-117,-55,0,0,0.111689 -6485,5511:456,-116,-55,0,0,0.112753 -6486,5511:455,-115,-55,0,0,0.112209 -6487,5511:354,-114,-55,0,0,0.112189 -6488,5511:353,-113,-55,0,0,0.114752 -6489,5511:352,-112,-55,0,0,0.113072 -6490,5511:351,-111,-55,0,0,0.113175 -6491,5511:350,-110,-55,0,0,0.112928 -6492,5510:459,-109,-55,0,0,0.111607 -6493,5510:458,-108,-55,0,0,0.114252 -6494,5510:457,-107,-55,0,0,0.113661 -6495,5510:456,-106,-55,0,0,0.109816 -6496,5510:455,-105,-55,0,0,0.108002 -6497,5510:354,-104,-55,0,0,0.106928 -6498,5510:353,-103,-55,0,0,0.106175 -6499,5510:352,-102,-55,0,0,0.107498 -6500,5510:351,-101,-55,0,0,0.110249 -6501,5510:350,-100,-55,0,0,0.109245 -6502,5509:459,-99,-55,0,0,0.105902 -6503,5509:458,-98,-55,0,0,0.106009 -6504,5509:457,-97,-55,0,0,0.112825 -6505,5509:456,-96,-55,0,0,0.111597 -6506,5509:455,-95,-55,0,0,0.108081 -6507,5509:354,-94,-55,0,0,0.106741 -6508,5509:353,-93,-55,0,0,0.104875 -6509,5509:352,-92,-55,0,0,0.1056 -6510,5509:351,-91,-55,0,0,0.111078 -6511,5509:350,-90,-55,0,0,0.109335 -6512,5508:459,-89,-55,0,0,0.107666 -6513,5508:458,-88,-55,0,0,0.111872 -6514,5508:457,-87,-55,0,0,0.112353 -6515,5508:456,-86,-55,0,0,0.112969 -6516,5508:455,-85,-55,0,0,0.113392 -6517,5508:354,-84,-55,0,0,0.112804 -6518,5508:353,-83,-55,0,0,0.111709 -6519,5508:352,-82,-55,0,0,0.110179 -6520,5508:351,-81,-55,0,0,0.110815 -6521,5508:350,-80,-55,0,0,0.112281 -6522,5507:459,-79,-55,0,0,0.11419 -6523,5507:458,-78,-55,0,0,0.115024 -6524,5507:457,-77,-55,0,0,0.114231 -6525,5507:456,-76,-55,0,0,0.109045 -6526,5507:455,-75,-55,0,0,0.100242 -6527,5507:354,-74,-55,0,0,0.101669 -6528,5507:353,-73,-55,0,0,0.111505 -6529,5507:352,-72,-55,0,0,0.108856 -6530,5507:351,-71,-55,0,0,0.105824 -6531,5507:350,-70,-55,0,0,0.105533 -6532,5506:459,-69,-55,0,0,0.106898 -6533,5506:458,-68,-55,0,0,0.105387 -6534,5506:457,-67,-55,0,0,0.0937209 -6535,5506:456,-66,-55,0,0,0.0846238 -6536,5506:455,-65,-55,0,0,0.0853189 -6537,5506:354,-64,-55,0,0,0.0848548 -6538,5506:353,-63,-55,0,0,0.080774 -6539,5506:352,-62,-55,0,0,0.0827799 -6540,5506:351,-61,-55,0,0,0.0832963 -6541,5506:350,-60,-55,0,0,0.0844091 -6542,5505:459,-59,-55,0,0,0.0805608 -6543,5505:458,-58,-55,0,0,0.0797805 -6544,5505:457,-57,-55,0,0,0.0785299 -6545,5505:456,-56,-55,0,0,0.0779591 -6546,5505:455,-55,-55,0,0,0.0773044 -6547,5505:354,-54,-55,0,0,0.0759595 -6548,5505:353,-53,-55,0,0,0.0750201 -6549,5505:352,-52,-55,0,0,0.0749988 -6550,5505:351,-51,-55,0,0,0.0749916 -6551,5505:350,-50,-55,0,0,0.0750131 -6552,5504:459,-49,-55,0,0,0.0750201 -6553,5504:458,-48,-55,0,0,0.0750201 -6554,5504:457,-47,-55,0,0,0.0750201 -6555,5504:456,-46,-55,0,0,0.075006 -6556,5504:455,-45,-55,0,0,0.0749846 -6557,5504:354,-44,-55,0,0,0.0749846 -6558,5504:353,-43,-55,0,0,0.0749703 -6559,5504:352,-42,-55,0,0,0.0749562 -6560,5504:351,-41,-55,0,0,0.0749418 -6561,5504:350,-40,-55,0,0,0.0749275 -6562,5503:459,-39,-55,0,0,0.0749205 -6563,5503:458,-38,-55,0,0,0.0749205 -6564,5503:457,-37,-55,0,0,0.0749133 -6565,5503:456,-36,-55,0,0,0.0749346 -6566,5503:455,-35,-55,0,0,0.074949 -6567,5503:354,-34,-55,0,0,0.0749631 -6568,5503:353,-33,-55,0,0,0.0749846 -6569,5503:352,-32,-55,0,0,0.0749916 -6570,5503:351,-31,-55,0,0,0.0749916 -6571,5503:350,-30,-55,0,0,0.0749916 -6572,5502:459,-29,-55,0,0,0.0749916 -6573,5502:458,-28,-55,0,0,0.0749916 -6574,5502:457,-27,-55,0,0,0.0749916 -6575,5502:456,-26,-55,0,0,0.0749916 -6576,5502:455,-25,-55,0,0,0.0749846 -6577,5502:354,-24,-55,0,0,0.0749775 -6578,5502:353,-23,-55,0,0,0.0749562 -6579,5502:352,-22,-55,0,0,0.0749418 -6580,5502:351,-21,-55,0,0,0.0749275 -6581,5502:350,-20,-55,0,0,0.0749133 -6582,5501:459,-19,-55,0,0,0.0749062 -6583,5501:458,-18,-55,0,0,0.074892 -6584,5501:457,-17,-55,0,0,0.074899 -6585,5501:456,-16,-55,0,0,0.0749275 -6586,5501:455,-15,-55,0,0,0.0749988 -6587,5501:354,-14,-55,0,0,0.075006 -6588,5501:353,-13,-55,0,0,0.074949 -6589,5501:352,-12,-55,0,0,0.0749275 -6590,5501:351,-11,-55,0,0,0.0749062 -6591,5501:350,-10,-55,0,0,0.074892 -6592,5500:459,-9,-55,0,0,0.0749062 -6593,5500:458,-8,-55,0,0,0.074892 -6594,5500:457,-7,-55,0,0,0.0748777 -6595,5500:456,-6,-55,0,0,0.0748705 -6596,5500:455,-5,-55,0,0,0.0748849 -6597,5500:354,-4,-55,0,0,0.074892 -6598,5500:353,-3,-55,0,0,0.074899 -6599,5500:352,-2,-55,0,0,0.074892 -6600,5500:351,-1,-55,0,0,0.0748636 -6601,3500:351,0,-55,0,0,0.0748777 -6602,3500:351,1,-55,0,0,0.0748705 -6603,3500:352,2,-55,0,0,0.0748564 -6604,3500:353,3,-55,0,0,0.0748493 -6605,3500:354,4,-55,0,0,0.0748349 -6606,3500:455,5,-55,0,0,0.0748421 -6607,3500:456,6,-55,0,0,0.0748564 -6608,3500:457,7,-55,0,0,0.0748777 -6609,3500:458,8,-55,0,0,0.074899 -6610,3500:459,9,-55,0,0,0.0749133 -6611,3501:350,10,-55,0,0,0.0749346 -6612,3501:351,11,-55,0,0,0.074949 -6613,3501:352,12,-55,0,0,0.0749275 -6614,3501:353,13,-55,0,0,0.0749346 -6615,3501:354,14,-55,0,0,0.0749418 -6616,3501:455,15,-55,0,0,0.074949 -6617,3501:456,16,-55,0,0,0.0749346 -6618,3501:457,17,-55,0,0,0.0749205 -6619,3501:458,18,-55,0,0,0.0749133 -6620,3501:459,19,-55,0,0,0.0748636 -6621,3502:350,20,-55,0,0,0.0748493 -6622,3502:351,21,-55,0,0,0.0748137 -6623,3502:352,22,-55,0,0,0.0747852 -6624,3502:353,23,-55,0,0,0.0748564 -6625,3502:354,24,-55,0,0,0.074949 -6626,3502:455,25,-55,0,0,0.0749631 -6627,3502:456,26,-55,0,0,0.0749988 -6628,3502:457,27,-55,0,0,0.0750201 -6629,3502:458,28,-55,0,0,0.0751486 -6630,3502:459,29,-55,0,0,0.075313 -6631,3503:350,30,-55,0,0,0.0753847 -6632,3503:351,31,-55,0,0,0.0754634 -6633,3503:352,32,-55,0,0,0.0753847 -6634,3503:353,33,-55,0,0,0.0754849 -6635,3503:354,34,-55,0,0,0.0759019 -6636,3503:455,35,-55,0,0,0.0753775 -6637,3503:456,36,-55,0,0,0.0751486 -6638,3503:457,37,-55,0,0,0.0751272 -6639,3503:458,38,-55,0,0,0.0749703 -6640,3503:459,39,-55,0,0,0.0748636 -6641,3504:350,40,-55,0,0,0.0748564 -6642,3504:351,41,-55,0,0,0.0748564 -6643,3504:352,42,-55,0,0,0.0748564 -6644,3504:353,43,-55,0,0,0.0748777 -6645,3504:354,44,-55,0,0,0.0749418 -6646,3504:455,45,-55,0,0,0.0749775 -6647,3504:456,46,-55,0,0,0.0750843 -6648,3504:457,47,-55,0,0,0.0754921 -6649,3504:458,48,-55,0,0,0.0755711 -6650,3504:459,49,-55,0,0,0.0755639 -6651,3505:350,50,-55,0,0,0.0754061 -6652,3505:351,51,-55,0,0,0.0751843 -6653,3505:352,52,-55,0,0,0.0751128 -6654,3505:353,53,-55,0,0,0.0750702 -6655,3505:354,54,-55,0,0,0.0749062 -6656,3505:455,55,-55,0,0,0.074899 -6657,3505:456,56,-55,0,0,0.0749205 -6658,3505:457,57,-55,0,0,0.0749205 -6659,3505:458,58,-55,0,0,0.0749346 -6660,3505:459,59,-55,0,0,0.0749418 -6661,3506:350,60,-55,0,0,0.0749631 -6662,3506:351,61,-55,0,0,0.0750131 -6663,3506:352,62,-55,0,0,0.0753417 -6664,3506:353,63,-55,0,0,0.0750558 -6665,3506:354,64,-55,0,0,0.075837 -6666,3506:455,65,-55,0,0,0.0768806 -6667,3506:456,66,-55,0,0,0.0773118 -6668,3506:457,67,-55,0,0,0.0758298 -6669,3506:458,68,-55,0,0,0.0754203 -6670,3506:459,69,-55,0,0,0.0776644 -6671,3507:350,70,-55,0,0,0.0775539 -6672,3507:351,71,-55,0,0,0.0765313 -6673,3507:352,72,-55,0,0,0.0760317 -6674,3507:354,74,-55,0,0,0.0762267 -6675,3507:455,75,-55,0,0,0.0755352 -6676,3507:456,76,-55,0,0,0.0755352 -6677,3507:457,77,-55,0,0,0.075528 -6678,3507:458,78,-55,0,0,0.0758874 -6679,3507:459,79,-55,0,0,0.0761618 -6680,3508:350,80,-55,0,0,0.0764006 -6681,3508:351,81,-55,0,0,0.0766328 -6682,3508:352,82,-55,0,0,0.0764513 -6683,3508:353,83,-55,0,0,0.0763427 -6684,3508:354,84,-55,0,0,0.076742 -6685,3508:455,85,-55,0,0,0.0764949 -6686,3508:456,86,-55,0,0,0.0757075 -6687,3508:457,87,-55,0,0,0.0749562 -6688,3508:458,88,-55,0,0,0.0749062 -6689,3508:459,89,-55,0,0,0.074949 -6690,3509:350,90,-55,0,0,0.075006 -6691,3509:351,91,-55,0,0,0.0751272 -6692,3509:352,92,-55,0,0,0.0764442 -6693,3509:353,93,-55,0,0,0.0783812 -6694,3509:354,94,-55,0,0,0.07827 -6695,3509:455,95,-55,0,0,0.0776127 -6696,3509:456,96,-55,0,0,0.0777896 -6697,3509:457,97,-55,0,0,0.0779001 -6698,3509:458,98,-55,0,0,0.0754203 -6699,3509:459,99,-55,0,0,0.0754203 -6700,3510:350,100,-55,0,0,0.076742 -6701,3510:351,101,-55,0,0,0.0782329 -6702,3510:352,102,-55,0,0,0.0762558 -6703,3510:353,103,-55,0,0,0.0763208 -6704,3510:354,104,-55,0,0,0.0751344 -6705,3510:455,105,-55,0,0,0.0750345 -6706,3510:456,106,-55,0,0,0.0750416 -6707,3510:457,107,-55,0,0,0.0750345 -6708,3510:458,108,-55,0,0,0.074949 -6709,3510:459,109,-55,0,0,0.0749205 -6710,3511:350,110,-55,0,0,0.0751987 -6711,3511:351,111,-55,0,0,0.0777601 -6712,3511:352,112,-55,0,0,0.0801583 -6713,3511:353,113,-55,0,0,0.083116 -6714,3511:354,114,-55,0,0,0.0841632 -6715,3511:455,115,-55,0,0,0.0853989 -6716,3511:456,116,-55,0,0,0.0831786 -6717,3511:457,117,-55,0,0,0.0840843 -6718,3511:458,118,-55,0,0,0.0857045 -6719,3511:459,119,-55,0,0,0.0854552 -6720,3512:350,120,-55,0,0,0.0876811 -6721,3512:351,121,-55,0,0,0.0888552 -6722,3512:352,122,-55,0,0,0.0906854 -6723,3512:353,123,-55,0,0,0.0906769 -6724,3512:354,124,-55,0,0,0.0915105 -6725,3512:455,125,-55,0,0,0.0930943 -6726,3512:456,126,-55,0,0,0.0932071 -6727,3512:457,127,-55,0,0,0.0921189 -6728,3512:458,128,-55,0,0,0.0925061 -6729,3512:459,129,-55,0,0,0.095623 -6730,3513:350,130,-55,0,0,0.0984403 -6731,3513:351,131,-55,0,0,0.0987692 -6732,3513:352,132,-55,0,0,0.0967123 -6733,3513:353,133,-55,0,0,0.0954452 -6734,3513:354,134,-55,0,0,0.0952416 -6735,3513:455,135,-55,0,0,0.0939131 -6736,3513:456,136,-55,0,0,0.093747 -6737,3513:457,137,-55,0,0,0.0933288 -6738,3513:458,138,-55,0,0,0.0923941 -6739,3513:459,139,-55,0,0,0.0906177 -6740,3514:350,140,-55,0,0,0.0906769 -6741,3514:351,141,-55,0,0,0.0920243 -6742,3514:352,142,-55,0,0,0.0920072 -6743,3514:353,143,-55,0,0,0.0925751 -6744,3514:354,144,-55,0,0,0.0928259 -6745,3514:455,145,-55,0,0,0.0909568 -6746,3514:456,146,-55,0,0,0.0885895 -6747,3514:457,147,-55,0,0,0.0897241 -6748,3514:458,148,-55,0,0,0.0851585 -6749,3514:459,149,-55,0,0,0.0798862 -6750,3515:350,150,-55,0,0,0.0769825 -6751,3515:351,151,-55,0,0,0.0768003 -6752,3515:352,152,-55,0,0,0.079705 -6753,3515:353,153,-55,0,0,0.0759019 -6754,3515:354,154,-55,0,0,0.0752559 -6755,3515:455,155,-55,0,0,0.0753489 -6756,3515:456,156,-55,0,0,0.0751701 -6757,3515:457,157,-55,0,0,0.0752129 -6758,3515:458,158,-55,0,0,0.0755065 -6759,3515:459,159,-55,0,0,0.075442 -6760,3516:350,160,-55,0,0,0.07527 -6761,3516:351,161,-55,0,0,0.0752343 -6762,3516:352,162,-55,0,0,0.0754849 -6763,3516:353,163,-55,0,0,0.0754849 -6764,3516:354,164,-55,0,0,0.0775762 -6765,3516:455,165,-55,0,0,0.0775833 -6766,3516:456,166,-55,0,0,0.0855597 -6767,3516:457,167,-55,0,0,0.0952062 -6768,3516:458,168,-55,0,0,0.0955696 -6769,3516:459,169,-55,0,0,0.0929039 -6770,3517:350,170,-55,0,0,0.0924546 -6771,3517:351,171,-55,0,0,0.0995124 -6772,3517:352,172,-55,0,0,0.109125 -6773,3517:353,173,-55,0,0,0.116031 -6774,3517:354,174,-55,0,0,0.120303 -6775,3517:455,175,-55,0,0,0.118156 -6776,3517:456,176,-55,0,0,0.111811 -6777,3517:457,177,-55,0,0,0.11034 -6778,3517:458,178,-55,0,0,0.111658 -6779,3517:459,179,-55,0,0,0.113899 -6780,3518:350,180,-55,0,0,0.109736 -6781,5518:140,-180,-54,0,0,0.117249 -6782,5517:249,-179,-54,0,0,0.113186 -6783,5517:248,-178,-54,0,0,0.111312 -6784,5517:247,-177,-54,0,0,0.109245 -6785,5517:246,-176,-54,0,0,0.105175 -6786,5517:245,-175,-54,0,0,0.100316 -6787,5517:144,-174,-54,0,0,0.0984495 -6788,5517:143,-173,-54,0,0,0.0981216 -6789,5517:142,-172,-54,0,0,0.096865 -6790,5517:141,-171,-54,0,0,0.0954542 -6791,5517:140,-170,-54,0,0,0.0936511 -6792,5516:249,-169,-54,0,0,0.0906599 -6793,5516:248,-168,-54,0,0,0.0898838 -6794,5516:247,-167,-54,0,0,0.0899762 -6795,5516:246,-166,-54,0,0,0.0900267 -6796,5516:245,-165,-54,0,0,0.0900856 -6797,5516:144,-164,-54,0,0,0.0909399 -6798,5516:143,-163,-54,0,0,0.0918356 -6799,5516:142,-162,-54,0,0,0.0944564 -6800,5516:141,-161,-54,0,0,0.0980581 -6801,5516:140,-160,-54,0,0,0.0920759 -6802,5515:249,-159,-54,0,0,0.0899931 -6803,5515:248,-158,-54,0,0,0.0904484 -6804,5515:247,-157,-54,0,0,0.0914422 -6805,5515:246,-156,-54,0,0,0.0888136 -6806,5515:245,-155,-54,0,0,0.0895396 -6807,5515:144,-154,-54,0,0,0.0884817 -6808,5515:143,-153,-54,0,0,0.0875743 -6809,5515:142,-152,-54,0,0,0.0872219 -6810,5515:141,-151,-54,0,0,0.0939742 -6811,5515:140,-150,-54,0,0,0.0975595 -6812,5514:249,-149,-54,0,0,0.0974238 -6813,5514:248,-148,-54,0,0,0.0981216 -6814,5514:247,-147,-54,0,0,0.0985773 -6815,5514:246,-146,-54,0,0,0.104211 -6816,5514:245,-145,-54,0,0,0.106184 -6817,5514:144,-144,-54,0,0,0.102782 -6818,5514:143,-143,-54,0,0,0.105727 -6819,5514:142,-142,-54,0,0,0.122362 -6820,5514:141,-141,-54,0,0,0.124005 -6821,5514:140,-140,-54,0,0,0.108022 -6822,5513:249,-139,-54,0,0,0.101472 -6823,5513:248,-138,-54,0,0,0.101481 -6824,5513:247,-137,-54,0,0,0.104451 -6825,5513:246,-136,-54,0,0,0.108121 -6826,5513:245,-135,-54,0,0,0.109315 -6827,5513:144,-134,-54,0,0,0.109125 -6828,5513:143,-133,-54,0,0,0.102516 -6829,5513:142,-132,-54,0,0,0.103085 -6830,5513:141,-131,-54,0,0,0.107163 -6831,5513:140,-130,-54,0,0,0.108597 -6832,5512:249,-129,-54,0,0,0.105542 -6833,5512:248,-128,-54,0,0,0.103943 -6834,5512:247,-127,-54,0,0,0.103848 -6835,5512:246,-126,-54,0,0,0.104663 -6836,5512:245,-125,-54,0,0,0.105436 -6837,5512:144,-124,-54,0,0,0.10682 -6838,5512:143,-123,-54,0,0,0.107597 -6839,5512:142,-122,-54,0,0,0.108786 -6840,5512:141,-121,-54,0,0,0.110845 -6841,5512:140,-120,-54,0,0,0.113216 -6842,5511:249,-119,-54,0,0,0.112507 -6843,5511:248,-118,-54,0,0,0.113743 -6844,5511:247,-117,-54,0,0,0.118595 -6845,5511:246,-116,-54,0,0,0.118832 -6846,5511:245,-115,-54,0,0,0.118295 -6847,5511:144,-114,-54,0,0,0.116633 -6848,5511:143,-113,-54,0,0,0.115254 -6849,5511:142,-112,-54,0,0,0.112435 -6850,5511:141,-111,-54,0,0,0.113 -6851,5511:140,-110,-54,0,0,0.112589 -6852,5510:249,-109,-54,0,0,0.113568 -6853,5510:248,-108,-54,0,0,0.116432 -6854,5510:247,-107,-54,0,0,0.111995 -6855,5510:246,-106,-54,0,0,0.109666 -6856,5510:245,-105,-54,0,0,0.109315 -6857,5510:144,-104,-54,0,0,0.108986 -6858,5510:143,-103,-54,0,0,0.111312 -6859,5510:142,-102,-54,0,0,0.113505 -6860,5510:141,-101,-54,0,0,0.113247 -6861,5510:140,-100,-54,0,0,0.113764 -6862,5509:249,-99,-54,0,0,0.114543 -6863,5509:248,-98,-54,0,0,0.114564 -6864,5509:247,-97,-54,0,0,0.11639 -6865,5509:246,-96,-54,0,0,0.117089 -6866,5509:245,-95,-54,0,0,0.114877 -6867,5509:144,-94,-54,0,0,0.111312 -6868,5509:143,-93,-54,0,0,0.108816 -6869,5509:142,-92,-54,0,0,0.113186 -6870,5509:141,-91,-54,0,0,0.114034 -7192,5512:239,-129,-53,0,0,0.10679 -6871,5509:140,-90,-54,0,0,0.111913 -6872,5508:249,-89,-54,0,0,0.109135 -6873,5508:248,-88,-54,0,0,0.108269 -6874,5508:247,-87,-54,0,0,0.11034 -6875,5508:246,-86,-54,0,0,0.11392 -6876,5508:245,-85,-54,0,0,0.114961 -6877,5508:144,-84,-54,0,0,0.114242 -6878,5508:143,-83,-54,0,0,0.112691 -6879,5508:142,-82,-54,0,0,0.112804 -6880,5508:141,-81,-54,0,0,0.115832 -6881,5508:140,-80,-54,0,0,0.119684 -6882,5507:249,-79,-54,0,0,0.118424 -6883,5507:248,-78,-54,0,0,0.117111 -6884,5507:247,-77,-54,0,0,0.117292 -6885,5507:246,-76,-54,0,0,0.116581 -6886,5507:245,-75,-54,0,0,0.115705 -6887,5507:144,-74,-54,0,0,0.115516 -6888,5507:143,-73,-54,0,0,0.116053 -6889,5507:142,-72,-54,0,0,0.117771 -6890,5507:141,-71,-54,0,0,0.11302 -6891,5507:140,-70,-54,0,0,0.110491 -6892,5506:249,-69,-54,0,0,0.109576 -6893,5506:248,-68,-54,0,0,0.105513 -6894,5506:247,-67,-54,0,0,0.0905415 -6895,5506:246,-66,-54,0,0,0.0934331 -6896,5506:245,-65,-54,0,0,0.0970901 -6897,5506:144,-64,-54,0,0,0.0927998 -6898,5506:143,-63,-54,0,0,0.0821812 -6899,5506:142,-62,-54,0,0,0.0818951 -6900,5506:141,-61,-54,0,0,0.0834377 -6901,5506:140,-60,-54,0,0,0.082772 -6902,5505:249,-59,-54,0,0,0.0818642 -6903,5505:248,-58,-54,0,0,0.0808733 -6904,5505:247,-57,-54,0,0,0.0792165 -6905,5505:246,-56,-54,0,0,0.0784852 -6906,5505:245,-55,-54,0,0,0.0778042 -6907,5505:144,-54,-54,0,0,0.0774439 -6908,5505:143,-53,-54,0,0,0.076895 -6909,5505:142,-52,-54,0,0,0.0757147 -6910,5505:141,-51,-54,0,0,0.0752487 -6911,5505:140,-50,-54,0,0,0.0757722 -6912,5504:249,-49,-54,0,0,0.0751416 -6913,5504:248,-48,-54,0,0,0.0750201 -6914,5504:247,-47,-54,0,0,0.0749988 -6915,5504:246,-46,-54,0,0,0.0750131 -6916,5504:245,-45,-54,0,0,0.0749988 -6917,5504:144,-44,-54,0,0,0.0749775 -6918,5504:143,-43,-54,0,0,0.0749846 -6919,5504:142,-42,-54,0,0,0.0749988 -6920,5504:141,-41,-54,0,0,0.0749775 -6921,5504:140,-40,-54,0,0,0.0749703 -6922,5503:249,-39,-54,0,0,0.0749631 -6923,5503:248,-38,-54,0,0,0.0749562 -6924,5503:247,-37,-54,0,0,0.0749562 -6925,5503:246,-36,-54,0,0,0.0749631 -6926,5503:245,-35,-54,0,0,0.0749631 -6927,5503:144,-34,-54,0,0,0.0749631 -6928,5503:143,-33,-54,0,0,0.0749775 -6929,5503:142,-32,-54,0,0,0.0749988 -6930,5503:141,-31,-54,0,0,0.0749916 -6931,5503:140,-30,-54,0,0,0.0749846 -6932,5502:249,-29,-54,0,0,0.0749846 -6933,5502:248,-28,-54,0,0,0.0749846 -6934,5502:247,-27,-54,0,0,0.0749775 -6935,5502:246,-26,-54,0,0,0.0749775 -6936,5502:245,-25,-54,0,0,0.0749846 -6937,5502:144,-24,-54,0,0,0.0749846 -6938,5502:143,-23,-54,0,0,0.0749703 -6939,5502:142,-22,-54,0,0,0.0749562 -6940,5502:141,-21,-54,0,0,0.0749346 -6941,5502:140,-20,-54,0,0,0.0749988 -6942,5501:249,-19,-54,0,0,0.0751344 -6943,5501:248,-18,-54,0,0,0.0750273 -6944,5501:247,-17,-54,0,0,0.0749346 -6945,5501:246,-16,-54,0,0,0.0749205 -6946,5501:245,-15,-54,0,0,0.0749205 -6947,5501:144,-14,-54,0,0,0.0749346 -6948,5501:143,-13,-54,0,0,0.074949 -6949,5501:142,-12,-54,0,0,0.0749418 -6950,5501:141,-11,-54,0,0,0.0749275 -6951,5501:140,-10,-54,0,0,0.0749133 -6952,5500:249,-9,-54,0,0,0.0749133 -6953,5500:248,-8,-54,0,0,0.0749275 -6954,5500:247,-7,-54,0,0,0.0749275 -6955,5500:246,-6,-54,0,0,0.0749133 -6956,5500:245,-5,-54,0,0,0.074899 -6957,5500:144,-4,-54,0,0,0.074899 -6958,5500:143,-3,-54,0,0,0.0748849 -6959,5500:142,-2,-54,0,0,0.0748777 -6960,5500:141,-1,-54,0,0,0.0748636 -6961,3500:141,0,-54,0,0,0.0748636 -6962,3500:141,1,-54,0,0,0.0749205 -6963,3500:142,2,-54,0,0,0.0749703 -6964,3500:143,3,-54,0,0,0.075006 -6965,3500:144,4,-54,0,0,0.0750416 -6966,3500:245,5,-54,0,0,0.0750843 -6967,3500:246,6,-54,0,0,0.0750131 -6968,3500:247,7,-54,0,0,0.074949 -6969,3500:248,8,-54,0,0,0.0748564 -6970,3500:249,9,-54,0,0,0.0748777 -6971,3501:140,10,-54,0,0,0.074892 -6972,3501:141,11,-54,0,0,0.0749062 -6973,3501:142,12,-54,0,0,0.0749205 -6974,3501:143,13,-54,0,0,0.0749275 -6975,3501:144,14,-54,0,0,0.0749275 -6976,3501:245,15,-54,0,0,0.0749346 -6977,3501:246,16,-54,0,0,0.0749205 -6978,3501:247,17,-54,0,0,0.0749205 -6979,3501:248,18,-54,0,0,0.074949 -6980,3501:249,19,-54,0,0,0.0749988 -6981,3502:140,20,-54,0,0,0.075006 -6982,3502:141,21,-54,0,0,0.0749916 -6983,3502:142,22,-54,0,0,0.0749775 -6984,3502:143,23,-54,0,0,0.0749062 -6985,3502:144,24,-54,0,0,0.0749703 -6986,3502:245,25,-54,0,0,0.0751272 -6987,3502:246,26,-54,0,0,0.0751344 -6988,3502:247,27,-54,0,0,0.0749703 -6989,3502:248,28,-54,0,0,0.075006 -6990,3502:249,29,-54,0,0,0.0750558 -6991,3503:140,30,-54,0,0,0.0750987 -6992,3503:141,31,-54,0,0,0.0756068 -6993,3503:142,32,-54,0,0,0.0758946 -6994,3503:143,33,-54,0,0,0.0759019 -6995,3503:144,34,-54,0,0,0.0761978 -6996,3503:245,35,-54,0,0,0.0759452 -6997,3503:246,36,-54,0,0,0.075686 -6998,3503:247,37,-54,0,0,0.0755926 -6999,3503:248,38,-54,0,0,0.075729 -7000,3503:249,39,-54,0,0,0.0758155 -7001,3504:140,40,-54,0,0,0.075765 -7002,3504:141,41,-54,0,0,0.0755065 -7003,3504:142,42,-54,0,0,0.0752273 -7004,3504:143,43,-54,0,0,0.0751272 -7005,3504:144,44,-54,0,0,0.0749988 -7006,3504:245,45,-54,0,0,0.0749703 -7007,3504:246,46,-54,0,0,0.0749631 -7008,3504:247,47,-54,0,0,0.0756715 -7009,3504:248,48,-54,0,0,0.0759091 -7010,3504:249,49,-54,0,0,0.0757867 -7011,3505:140,50,-54,0,0,0.0756645 -7012,3505:141,51,-54,0,0,0.0756068 -7013,3505:142,52,-54,0,0,0.0754706 -7014,3505:143,53,-54,0,0,0.0753847 -7015,3505:144,54,-54,0,0,0.075163 -7016,3505:245,55,-54,0,0,0.0750201 -7017,3505:246,56,-54,0,0,0.0749775 -7018,3505:247,57,-54,0,0,0.0749703 -7019,3505:248,58,-54,0,0,0.0749631 -7020,3505:249,59,-54,0,0,0.0750131 -7021,3506:140,60,-54,0,0,0.0752916 -7022,3506:141,61,-54,0,0,0.0757795 -7023,3506:142,62,-54,0,0,0.0765166 -7024,3506:143,63,-54,0,0,0.0762629 -7025,3506:144,64,-54,0,0,0.0752772 -7026,3506:245,65,-54,0,0,0.0760029 -7027,3506:246,66,-54,0,0,0.0768367 -7028,3506:247,67,-54,0,0,0.0800146 -7029,3506:248,68,-54,0,0,0.0792091 -7030,3506:249,69,-54,0,0,0.0772899 -7031,3507:140,70,-54,0,0,0.0805151 -7032,3507:141,71,-54,0,0,0.0820961 -7033,3507:142,72,-54,0,0,0.0783515 -7034,3507:144,74,-54,0,0,0.0767494 -7035,3507:245,75,-54,0,0,0.076713 -7036,3507:246,76,-54,0,0,0.0769607 -7037,3507:247,77,-54,0,0,0.0771947 -7038,3507:248,78,-54,0,0,0.077657 -7039,3507:249,79,-54,0,0,0.0767929 -7040,3508:140,80,-54,0,0,0.0767274 -7041,3508:141,81,-54,0,0,0.0764803 -7042,3508:142,82,-54,0,0,0.0759595 -7043,3508:143,83,-54,0,0,0.0758082 -7044,3508:144,84,-54,0,0,0.0762267 -7045,3508:245,85,-54,0,0,0.0766475 -7046,3508:246,86,-54,0,0,0.0759162 -7047,3508:247,87,-54,0,0,0.0755854 -7048,3508:248,88,-54,0,0,0.0765166 -7049,3508:249,89,-54,0,0,0.0757362 -7050,3509:140,90,-54,0,0,0.0758874 -7051,3509:141,91,-54,0,0,0.0771141 -7052,3509:142,92,-54,0,0,0.0789919 -7053,3509:143,93,-54,0,0,0.0798862 -7054,3509:144,94,-54,0,0,0.0801054 -7055,3509:245,95,-54,0,0,0.0812484 -7056,3509:246,96,-54,0,0,0.0808427 -7057,3509:247,97,-54,0,0,0.0799466 -7058,3509:248,98,-54,0,0,0.0793966 -7059,3509:249,99,-54,0,0,0.0795845 -7060,3510:140,100,-54,0,0,0.0813788 -7061,3510:141,101,-54,0,0,0.0852147 -7062,3510:142,102,-54,0,0,0.0866999 -7063,3510:143,103,-54,0,0,0.0849347 -7064,3510:144,104,-54,0,0,0.0786861 -7065,3510:245,105,-54,0,0,0.0782775 -7066,3510:246,106,-54,0,0,0.0831944 -7067,3510:247,107,-54,0,0,0.0844489 -7068,3510:248,108,-54,0,0,0.0849109 -7069,3510:249,109,-54,0,0,0.0819568 -7070,3511:140,110,-54,0,0,0.0814328 -7071,3511:141,111,-54,0,0,0.085431 -7072,3511:142,112,-54,0,0,0.0855516 -7073,3511:143,113,-54,0,0,0.0863507 -7074,3511:144,114,-54,0,0,0.0882168 -7075,3511:245,115,-54,0,0,0.0883657 -7076,3511:246,116,-54,0,0,0.088465 -7077,3511:247,117,-54,0,0,0.0894224 -7078,3511:248,118,-54,0,0,0.0908125 -7079,3511:249,119,-54,0,0,0.0910247 -7080,3512:140,120,-54,0,0,0.0885644 -7081,3512:141,121,-54,0,0,0.0910419 -7082,3512:142,122,-54,0,0,0.0913995 -7083,3512:143,123,-54,0,0,0.0917843 -7084,3512:144,124,-54,0,0,0.0927135 -7085,3512:245,125,-54,0,0,0.0932421 -7086,3512:246,126,-54,0,0,0.0950292 -7087,3512:247,127,-54,0,0,0.0962465 -7088,3512:248,128,-54,0,0,0.0969459 -7089,3512:249,129,-54,0,0,0.0978129 -7090,3513:140,130,-54,0,0,0.0986961 -7091,3513:141,131,-54,0,0,0.101126 -7092,3513:142,132,-54,0,0,0.0991998 -7093,3513:143,133,-54,0,0,0.0962735 -7094,3513:144,134,-54,0,0,0.0974869 -7095,3513:245,135,-54,0,0,0.0971712 -7096,3513:246,136,-54,0,0,0.096336 -7097,3513:247,137,-54,0,0,0.0945267 -7098,3513:248,138,-54,0,0,0.0942546 -7099,3513:249,139,-54,0,0,0.095623 -7100,3514:140,140,-54,0,0,0.095552 -7101,3514:141,141,-54,0,0,0.0954986 -7102,3514:142,142,-54,0,0,0.0939918 -7103,3514:143,143,-54,0,0,0.093983 -7104,3514:144,144,-54,0,0,0.0936684 -7105,3514:245,145,-54,0,0,0.0913313 -7106,3514:246,146,-54,0,0,0.0925235 -7107,3514:247,147,-54,0,0,0.0929557 -7108,3514:248,148,-54,0,0,0.0861725 -7109,3514:249,149,-54,0,0,0.0844886 -7110,3515:140,150,-54,0,0,0.0849506 -7111,3515:141,151,-54,0,0,0.0851985 -7112,3515:142,152,-54,0,0,0.0801886 -7113,3515:143,153,-54,0,0,0.0767056 -7114,3515:144,154,-54,0,0,0.0761038 -7115,3515:245,155,-54,0,0,0.08181 -7116,3515:246,156,-54,0,0,0.0894224 -7117,3515:247,157,-54,0,0,0.0868383 -7118,3515:248,158,-54,0,0,0.0797954 -7119,3515:249,159,-54,0,0,0.081571 -7120,3516:140,160,-54,0,0,0.0793366 -7121,3516:141,161,-54,0,0,0.0792991 -7122,3516:142,162,-54,0,0,0.0855354 -7123,3516:143,163,-54,0,0,0.0873693 -7124,3516:144,164,-54,0,0,0.0852225 -7125,3516:245,165,-54,0,0,0.0825151 -7126,3516:246,166,-54,0,0,0.0847273 -7127,3516:247,167,-54,0,0,0.101257 -7128,3516:248,168,-54,0,0,0.102933 -7129,3516:249,169,-54,0,0,0.104144 -7130,3517:140,170,-54,0,0,0.111119 -7131,3517:141,171,-54,0,0,0.109166 -7132,3517:142,172,-54,0,0,0.113868 -7133,3517:143,173,-54,0,0,0.122119 -7134,3517:144,174,-54,0,0,0.121449 -7135,3517:245,175,-54,0,0,0.118972 -7136,3517:246,176,-54,0,0,0.113278 -7137,3517:247,177,-54,0,0,0.109666 -7138,3517:248,178,-54,0,0,0.116697 -7139,3517:249,179,-54,0,0,0.121856 -7140,3518:140,180,-54,0,0,0.117249 -7141,5518:130,-180,-53,0,0,0.120314 -7142,5517:239,-179,-53,0,0,0.115642 -7143,5517:238,-178,-53,0,0,0.111454 -7144,5517:237,-177,-53,0,0,0.106516 -7145,5517:236,-176,-53,0,0,0.102867 -7146,5517:235,-175,-53,0,0,0.100921 -7147,5517:134,-174,-53,0,0,0.100001 -7148,5517:133,-173,-53,0,0,0.0991264 -7149,5517:132,-172,-53,0,0,0.0983766 -7150,5517:131,-171,-53,0,0,0.0975142 -7151,5517:130,-170,-53,0,0,0.0953389 -7152,5516:239,-169,-53,0,0,0.094123 -7153,5516:238,-168,-53,0,0,0.0945618 -7154,5516:237,-167,-53,0,0,0.093983 -7155,5516:236,-166,-53,0,0,0.0949674 -7156,5516:235,-165,-53,0,0,0.0965511 -7157,5516:134,-164,-53,0,0,0.0982763 -7158,5516:133,-163,-53,0,0,0.0976589 -7159,5516:132,-162,-53,0,0,0.0972703 -7160,5516:131,-161,-53,0,0,0.0988515 -7161,5516:130,-160,-53,0,0,0.0950117 -7162,5515:239,-159,-53,0,0,0.0920243 -7163,5515:238,-158,-53,0,0,0.0932593 -7164,5515:237,-157,-53,0,0,0.0993652 -7165,5515:236,-156,-53,0,0,0.0999736 -7166,5515:235,-155,-53,0,0,0.0925061 -7167,5515:134,-154,-53,0,0,0.0889136 -7168,5515:133,-153,-53,0,0,0.0881755 -7169,5515:132,-152,-53,0,0,0.0900771 -7170,5515:131,-151,-53,0,0,0.096327 -7171,5515:130,-150,-53,0,0,0.0970989 -7172,5514:239,-149,-53,0,0,0.0963003 -7173,5514:238,-148,-53,0,0,0.0998258 -7174,5514:237,-147,-53,0,0,0.107085 -7175,5514:236,-146,-53,0,0,0.111566 -7176,5514:235,-145,-53,0,0,0.117387 -7177,5514:134,-144,-53,0,0,0.124754 -7178,5514:133,-143,-53,0,0,0.130694 -7179,5514:132,-142,-53,0,0,0.135627 -7180,5514:131,-141,-53,0,0,0.134379 -7181,5514:130,-140,-53,0,0,0.136545 -7182,5513:239,-139,-53,0,0,0.128056 -7183,5513:238,-138,-53,0,0,0.120303 -7184,5513:237,-137,-53,0,0,0.112702 -7185,5513:236,-136,-53,0,0,0.110633 -7186,5513:235,-135,-53,0,0,0.107616 -7187,5513:134,-134,-53,0,0,0.105746 -7188,5513:133,-133,-53,0,0,0.106292 -7189,5513:132,-132,-53,0,0,0.108647 -7190,5513:131,-131,-53,0,0,0.111129 -7191,5513:130,-130,-53,0,0,0.109977 -7193,5512:238,-128,-53,0,0,0.106879 -7194,5512:237,-127,-53,0,0,0.109937 -7195,5512:236,-126,-53,0,0,0.112804 -7196,5512:235,-125,-53,0,0,0.115045 -7197,5512:134,-124,-53,0,0,0.117185 -7198,5512:133,-123,-53,0,0,0.119047 -7199,5512:132,-122,-53,0,0,0.115779 -7200,5512:131,-121,-53,0,0,0.116994 -7201,5512:130,-120,-53,0,0,0.120444 -7202,5511:239,-119,-53,0,0,0.115537 -7203,5511:238,-118,-53,0,0,0.119004 -7204,5511:237,-117,-53,0,0,0.120129 -7205,5511:236,-116,-53,0,0,0.120531 -7206,5511:235,-115,-53,0,0,0.12146 -7207,5511:134,-114,-53,0,0,0.121296 -7208,5511:133,-113,-53,0,0,0.114836 -7209,5511:132,-112,-53,0,0,0.118682 -7210,5511:131,-111,-53,0,0,0.121702 -7211,5511:130,-110,-53,0,0,0.121691 -7212,5510:239,-109,-53,0,0,0.118156 -7213,5510:238,-108,-53,0,0,0.116729 -7214,5510:237,-107,-53,0,0,0.115842 -7215,5510:236,-106,-53,0,0,0.11175 -7216,5510:235,-105,-53,0,0,0.112866 -7217,5510:134,-104,-53,0,0,0.114263 -7218,5510:133,-103,-53,0,0,0.115244 -7219,5510:132,-102,-53,0,0,0.115139 -7220,5510:131,-101,-53,0,0,0.114346 -7221,5510:130,-100,-53,0,0,0.116633 -7222,5509:239,-99,-53,0,0,0.123014 -7223,5509:238,-98,-53,0,0,0.12526 -7224,5509:237,-97,-53,0,0,0.120096 -7225,5509:236,-96,-53,0,0,0.119847 -7226,5509:235,-95,-53,0,0,0.120717 -7227,5509:134,-94,-53,0,0,0.118381 -7228,5509:133,-93,-53,0,0,0.115076 -7229,5509:132,-92,-53,0,0,0.114252 -7230,5509:131,-91,-53,0,0,0.114086 -7231,5509:130,-90,-53,0,0,0.116179 -7232,5508:239,-89,-53,0,0,0.121581 -7233,5508:238,-88,-53,0,0,0.122329 -7234,5508:237,-87,-53,0,0,0.12123 -7235,5508:236,-86,-53,0,0,0.120815 -7236,5508:235,-85,-53,0,0,0.120466 -7237,5508:134,-84,-53,0,0,0.117164 -7238,5508:133,-83,-53,0,0,0.118017 -7239,5508:132,-82,-53,0,0,0.119576 -7240,5508:131,-81,-53,0,0,0.12202 -7241,5508:130,-80,-53,0,0,0.12123 -7242,5507:239,-79,-53,0,0,0.12064 -7243,5507:238,-78,-53,0,0,0.121186 -7244,5507:237,-77,-53,0,0,0.118081 -7245,5507:236,-76,-53,0,0,0.118092 -7246,5507:235,-75,-53,0,0,0.121285 -7247,5507:134,-74,-53,0,0,0.122395 -7248,5507:133,-73,-53,0,0,0.119858 -7249,5507:132,-72,-53,0,0,0.11619 -7250,5507:131,-71,-53,0,0,0.116613 -7251,5507:130,-70,-53,0,0,0.11866 -7252,5506:239,-69,-53,0,0,0.117089 -7253,5506:238,-68,-53,0,0,0.111281 -7254,5506:237,-67,-53,0,0,0.103943 -7255,5506:236,-66,-53,0,0,0.103209 -7256,5506:235,-65,-53,0,0,0.102981 -7257,5506:134,-64,-53,0,0,0.0925667 -7258,5506:133,-63,-53,0,0,0.0860837 -7259,5506:132,-62,-53,0,0,0.085648 -7260,5506:131,-61,-53,0,0,0.0819259 -7261,5506:130,-60,-53,0,0,0.0846795 -7262,5505:239,-59,-53,0,0,0.0859947 -7263,5505:238,-58,-53,0,0,0.0861967 -7264,5505:237,-57,-53,0,0,0.0816711 -7265,5505:236,-56,-53,0,0,0.078865 -7266,5505:235,-55,-53,0,0,0.0779889 -7267,5505:134,-54,-53,0,0,0.077063 -7268,5505:133,-53,-53,0,0,0.0773924 -7269,5505:132,-52,-53,0,0,0.07565 -7270,5505:131,-51,-53,0,0,0.0752487 -7271,5505:130,-50,-53,0,0,0.0756213 -7272,5504:239,-49,-53,0,0,0.0752201 -7273,5504:238,-48,-53,0,0,0.0749562 -7274,5504:237,-47,-53,0,0,0.075006 -7275,5504:236,-46,-53,0,0,0.0750273 -7276,5504:235,-45,-53,0,0,0.0750416 -7277,5504:134,-44,-53,0,0,0.0749703 -7278,5504:133,-43,-53,0,0,0.0749775 -7279,5504:132,-42,-53,0,0,0.0750273 -7280,5504:131,-41,-53,0,0,0.0750201 -7281,5504:130,-40,-53,0,0,0.0749988 -7282,5503:239,-39,-53,0,0,0.0750558 -7283,5503:238,-38,-53,0,0,0.0751558 -7284,5503:237,-37,-53,0,0,0.0749916 -7285,5503:236,-36,-53,0,0,0.0749703 -7286,5503:235,-35,-53,0,0,0.0749775 -7287,5503:134,-34,-53,0,0,0.0749846 -7288,5503:133,-33,-53,0,0,0.0749846 -7289,5503:132,-32,-53,0,0,0.0749846 -7290,5503:131,-31,-53,0,0,0.0749846 -7291,5503:130,-30,-53,0,0,0.0749916 -7292,5502:239,-29,-53,0,0,0.0749846 -7293,5502:238,-28,-53,0,0,0.0749775 -7294,5502:237,-27,-53,0,0,0.0749775 -7295,5502:236,-26,-53,0,0,0.0749988 -7296,5502:235,-25,-53,0,0,0.0750773 -7297,5502:134,-24,-53,0,0,0.0749988 -7298,5502:133,-23,-53,0,0,0.0750201 -7299,5502:132,-22,-53,0,0,0.0750558 -7300,5502:131,-21,-53,0,0,0.0750488 -7301,5502:130,-20,-53,0,0,0.07512 -7302,5501:239,-19,-53,0,0,0.0751701 -7303,5501:238,-18,-53,0,0,0.0752057 -7304,5501:237,-17,-53,0,0,0.0749988 -7305,5501:236,-16,-53,0,0,0.0749562 -7306,5501:235,-15,-53,0,0,0.0749562 -7307,5501:134,-14,-53,0,0,0.0749418 -7308,5501:133,-13,-53,0,0,0.0749275 -7309,5501:132,-12,-53,0,0,0.0749562 -7310,5501:131,-11,-53,0,0,0.0749846 -7311,5501:130,-10,-53,0,0,0.0749418 -7312,5500:239,-9,-53,0,0,0.0749205 -7313,5500:238,-8,-53,0,0,0.074949 -7314,5500:237,-7,-53,0,0,0.0749775 -7315,5500:236,-6,-53,0,0,0.0749418 -7316,5500:235,-5,-53,0,0,0.0749205 -7317,5500:134,-4,-53,0,0,0.0749133 -7318,5500:133,-3,-53,0,0,0.074899 -7319,5500:132,-2,-53,0,0,0.0748777 -7320,5500:131,-1,-53,0,0,0.0748705 -7321,3500:131,0,-53,0,0,0.0749418 -7322,3500:131,1,-53,0,0,0.0750416 -7323,3500:132,2,-53,0,0,0.0752129 -7324,3500:133,3,-53,0,0,0.0752559 -7325,3500:134,4,-53,0,0,0.0754133 -7326,3500:235,5,-53,0,0,0.0754779 -7327,3500:236,6,-53,0,0,0.0753917 -7328,3500:237,7,-53,0,0,0.0752343 -7329,3500:238,8,-53,0,0,0.0750702 -7330,3500:239,9,-53,0,0,0.0749775 -7331,3501:130,10,-53,0,0,0.0749062 -7332,3501:131,11,-53,0,0,0.0748849 -7333,3501:132,12,-53,0,0,0.0749062 -7334,3501:133,13,-53,0,0,0.0749062 -7335,3501:134,14,-53,0,0,0.0749062 -7336,3501:235,15,-53,0,0,0.0749205 -7337,3501:236,16,-53,0,0,0.0749205 -7338,3501:237,17,-53,0,0,0.0749275 -7339,3501:238,18,-53,0,0,0.074949 -7340,3501:239,19,-53,0,0,0.0749703 -7341,3502:130,20,-53,0,0,0.0749631 -7342,3502:131,21,-53,0,0,0.0749631 -7343,3502:132,22,-53,0,0,0.0749631 -7344,3502:133,23,-53,0,0,0.0749562 -7345,3502:134,24,-53,0,0,0.074949 -7346,3502:235,25,-53,0,0,0.0749916 -7347,3502:236,26,-53,0,0,0.0749562 -7348,3502:237,27,-53,0,0,0.0750558 -7349,3502:238,28,-53,0,0,0.0750843 -7350,3502:239,29,-53,0,0,0.0750416 -7351,3503:130,30,-53,0,0,0.0750273 -7352,3503:131,31,-53,0,0,0.0750558 -7353,3503:132,32,-53,0,0,0.0750843 -7354,3503:133,33,-53,0,0,0.0754348 -7355,3503:134,34,-53,0,0,0.0754061 -7356,3503:235,35,-53,0,0,0.0756787 -7357,3503:236,36,-53,0,0,0.0761327 -7358,3503:237,37,-53,0,0,0.0760172 -7359,3503:238,38,-53,0,0,0.0758946 -7360,3503:239,39,-53,0,0,0.0761472 -7361,3504:130,40,-53,0,0,0.0763789 -7362,3504:131,41,-53,0,0,0.0763064 -7363,3504:132,42,-53,0,0,0.0762848 -7364,3504:133,43,-53,0,0,0.0758803 -7365,3504:134,44,-53,0,0,0.0754849 -7366,3504:235,45,-53,0,0,0.0753272 -7367,3504:236,46,-53,0,0,0.0753631 -7368,3504:237,47,-53,0,0,0.0751128 -7369,3504:238,48,-53,0,0,0.0754275 -7370,3504:239,49,-53,0,0,0.0749916 -7371,3505:130,50,-53,0,0,0.0749916 -7372,3505:131,51,-53,0,0,0.0754706 -7373,3505:132,52,-53,0,0,0.0755207 -7374,3505:133,53,-53,0,0,0.0754203 -7375,3505:134,54,-53,0,0,0.075313 -7376,3505:235,55,-53,0,0,0.0751771 -7377,3505:236,56,-53,0,0,0.0751128 -7378,3505:237,57,-53,0,0,0.0750558 -7379,3505:238,58,-53,0,0,0.0750702 -7380,3505:239,59,-53,0,0,0.0750345 -7381,3506:130,60,-53,0,0,0.0757867 -7382,3506:131,61,-53,0,0,0.0760967 -7383,3506:132,62,-53,0,0,0.0768877 -7384,3506:133,63,-53,0,0,0.077856 -7385,3506:134,64,-53,0,0,0.0782329 -7386,3506:235,65,-53,0,0,0.0779445 -7387,3506:236,66,-53,0,0,0.0784258 -7388,3506:237,67,-53,0,0,0.0822044 -7389,3506:238,68,-53,0,0,0.0845362 -7390,3506:239,69,-53,0,0,0.0839103 -7391,3507:130,70,-53,0,0,0.0849428 -7392,3507:131,71,-53,0,0,0.0852225 -7393,3507:132,72,-53,0,0,0.0825384 -7394,3507:134,74,-53,0,0,0.0807435 -7395,3507:235,75,-53,0,0,0.0814865 -7396,3507:236,76,-53,0,0,0.0816711 -7397,3507:237,77,-53,0,0,0.0803025 -7398,3507:238,78,-53,0,0,0.0785968 -7399,3507:239,79,-53,0,0,0.0778116 -7400,3508:130,80,-53,0,0,0.0773559 -7401,3508:131,81,-53,0,0,0.0766184 -7402,3508:132,82,-53,0,0,0.0763208 -7403,3508:133,83,-53,0,0,0.0758874 -7404,3508:134,84,-53,0,0,0.0759811 -7405,3508:235,85,-53,0,0,0.0763281 -7406,3508:236,86,-53,0,0,0.0764296 -7407,3508:237,87,-53,0,0,0.0769242 -7408,3508:238,88,-53,0,0,0.0769242 -7409,3508:239,89,-53,0,0,0.0775762 -7410,3509:130,90,-53,0,0,0.0776127 -7411,3509:131,91,-53,0,0,0.0785893 -7412,3509:132,92,-53,0,0,0.0799164 -7413,3509:133,93,-53,0,0,0.0829126 -7414,3509:134,94,-53,0,0,0.0839655 -7415,3509:235,95,-53,0,0,0.0837523 -7416,3509:236,96,-53,0,0,0.0842266 -7417,3509:237,97,-53,0,0,0.0854552 -7418,3509:238,98,-53,0,0,0.086116 -7419,3509:239,99,-53,0,0,0.0860028 -7420,3510:130,100,-53,0,0,0.0860837 -7421,3510:131,101,-53,0,0,0.0875991 -7422,3510:132,102,-53,0,0,0.0896151 -7423,3510:133,103,-53,0,0,0.0891801 -7424,3510:134,104,-53,0,0,0.0893389 -7425,3510:235,105,-53,0,0,0.0898166 -7426,3510:236,106,-53,0,0,0.0886475 -7427,3510:237,107,-53,0,0,0.0849267 -7428,3510:238,108,-53,0,0,0.0863265 -7429,3510:239,109,-53,0,0,0.0864237 -7430,3511:130,110,-53,0,0,0.0863425 -7431,3511:131,111,-53,0,0,0.0869281 -7432,3511:132,112,-53,0,0,0.0881177 -7433,3511:133,113,-53,0,0,0.0888968 -7434,3511:134,114,-53,0,0,0.0899425 -7435,3511:235,115,-53,0,0,0.0923426 -7436,3511:236,116,-53,0,0,0.0938517 -7437,3511:237,117,-53,0,0,0.0928864 -7438,3511:238,118,-53,0,0,0.0904737 -7439,3511:239,119,-53,0,0,0.0910333 -7440,3512:130,120,-53,0,0,0.0915191 -7441,3512:131,121,-53,0,0,0.0930165 -7442,3512:132,122,-53,0,0,0.0934855 -7443,3512:133,123,-53,0,0,0.0950645 -7444,3512:134,124,-53,0,0,0.097 -7445,3512:235,125,-53,0,0,0.0973786 -7446,3512:236,126,-53,0,0,0.0962021 -7447,3512:237,127,-53,0,0,0.0961751 -7448,3512:238,128,-53,0,0,0.096919 -7449,3512:239,129,-53,0,0,0.0971622 -7450,3513:130,130,-53,0,0,0.0997796 -7451,3513:131,131,-53,0,0,0.10448 -7452,3513:132,132,-53,0,0,0.103114 -7453,3513:133,133,-53,0,0,0.099909 -7454,3513:134,134,-53,0,0,0.0987234 -7455,3513:235,135,-53,0,0,0.0997703 -7456,3513:236,136,-53,0,0,0.100958 -7457,3513:237,137,-53,0,0,0.0986138 -7458,3513:238,138,-53,0,0,0.0974869 -7459,3513:239,139,-53,0,0,0.099872 -7460,3514:130,140,-53,0,0,0.0989063 -7461,3514:131,141,-53,0,0,0.0968562 -7462,3514:132,142,-53,0,0,0.0950823 -7463,3514:133,143,-53,0,0,0.0954009 -7464,3514:134,144,-53,0,0,0.0983674 -7465,3514:235,145,-53,0,0,0.0966496 -7466,3514:236,146,-53,0,0,0.0961841 -7467,3514:237,147,-53,0,0,0.0955251 -7468,3514:238,148,-53,0,0,0.0935463 -7469,3514:239,149,-53,0,0,0.0919214 -7470,3515:130,150,-53,0,0,0.0924372 -7471,3515:131,151,-53,0,0,0.0855276 -7472,3515:132,152,-53,0,0,0.0848787 -7473,3515:133,153,-53,0,0,0.0850467 -7474,3515:134,154,-53,0,0,0.0792691 -7475,3515:235,155,-53,0,0,0.0848948 -7476,3515:236,156,-53,0,0,0.0933116 -7477,3515:237,157,-53,0,0,0.0943248 -7478,3515:238,158,-53,0,0,0.0933288 -7479,3515:239,159,-53,0,0,0.0951266 -7480,3516:130,160,-53,0,0,0.0937819 -7481,3516:131,161,-53,0,0,0.0905922 -7482,3516:132,162,-53,0,0,0.104471 -7483,3516:133,163,-53,0,0,0.107262 -7484,3516:134,164,-53,0,0,0.103133 -7485,3516:235,165,-53,0,0,0.107528 -7486,3516:236,166,-53,0,0,0.103009 -7487,3516:237,167,-53,0,0,0.106184 -7488,3516:238,168,-53,0,0,0.107134 -7489,3516:239,169,-53,0,0,0.109195 -7490,3517:130,170,-53,0,0,0.11909 -7491,3517:131,171,-53,0,0,0.125847 -7492,3517:132,172,-53,0,0,0.128216 -7493,3517:133,173,-53,0,0,0.127838 -7494,3517:134,174,-53,0,0,0.125756 -7495,3517:235,175,-53,0,0,0.123347 -7496,3517:236,176,-53,0,0,0.120782 -7497,3517:237,177,-53,0,0,0.121691 -7498,3517:238,178,-53,0,0,0.123659 -7499,3517:239,179,-53,0,0,0.121033 -7500,3518:130,180,-53,0,0,0.120314 -7501,5518:120,-180,-52,0,0,0.11299 -7502,5517:229,-179,-52,0,0,0.108389 -7503,5517:228,-178,-52,0,0,0.110602 -7504,5517:227,-177,-52,0,0,0.109166 -7505,5517:226,-176,-52,0,0,0.11038 -7506,5517:225,-175,-52,0,0,0.110451 -7507,5517:124,-174,-52,0,0,0.105805 -7508,5517:123,-173,-52,0,0,0.107725 -7509,5517:122,-172,-52,0,0,0.107508 -7510,5517:121,-171,-52,0,0,0.107232 -7511,5517:120,-170,-52,0,0,0.105902 -7512,5516:229,-169,-52,0,0,0.102696 -7513,5516:228,-168,-52,0,0,0.102857 -7514,5516:227,-167,-52,0,0,0.103895 -7515,5516:226,-166,-52,0,0,0.105717 -7516,5516:225,-165,-52,0,0,0.109105 -7517,5516:124,-164,-52,0,0,0.11121 -7518,5516:123,-163,-52,0,0,0.107903 -7519,5516:122,-162,-52,0,0,0.105873 -7520,5516:121,-161,-52,0,0,0.106908 -7521,5516:120,-160,-52,0,0,0.105068 -7522,5515:229,-159,-52,0,0,0.102791 -7523,5515:228,-158,-52,0,0,0.106849 -7524,5515:227,-157,-52,0,0,0.112097 -7525,5515:226,-156,-52,0,0,0.112097 -7526,5515:225,-155,-52,0,0,0.0998813 -7527,5515:124,-154,-52,0,0,0.0886974 -7528,5515:123,-153,-52,0,0,0.0888136 -7529,5515:122,-152,-52,0,0,0.0898417 -7530,5515:121,-151,-52,0,0,0.089892 -7531,5515:120,-150,-52,0,0,0.0937209 -7532,5514:229,-149,-52,0,0,0.0949233 -7533,5514:228,-148,-52,0,0,0.0956051 -7534,5514:227,-147,-52,0,0,0.10678 -7535,5514:226,-146,-52,0,0,0.10823 -7536,5514:225,-145,-52,0,0,0.115338 -7537,5514:124,-144,-52,0,0,0.12357 -7538,5514:123,-143,-52,0,0,0.126401 -7539,5514:122,-142,-52,0,0,0.129902 -7540,5514:121,-141,-52,0,0,0.136775 -7541,5514:120,-140,-52,0,0,0.13663 -7542,5513:229,-139,-52,0,0,0.130344 -7543,5513:228,-138,-52,0,0,0.123281 -7544,5513:227,-137,-52,0,0,0.11638 -7545,5513:226,-136,-52,0,0,0.115716 -7546,5513:225,-135,-52,0,0,0.116443 -7547,5513:124,-134,-52,0,0,0.11333 -7548,5513:123,-133,-52,0,0,0.116401 -7549,5513:122,-132,-52,0,0,0.1147 -7550,5513:121,-131,-52,0,0,0.116686 -7551,5513:120,-130,-52,0,0,0.117568 -7552,5512:229,-129,-52,0,0,0.118961 -7553,5512:228,-128,-52,0,0,0.11495 -7554,5512:227,-127,-52,0,0,0.115306 -7555,5512:226,-126,-52,0,0,0.119123 -7556,5512:225,-125,-52,0,0,0.119522 -7557,5512:124,-124,-52,0,0,0.127095 -7558,5512:123,-123,-52,0,0,0.128136 -7559,5512:122,-122,-52,0,0,0.12499 -7560,5512:121,-121,-52,0,0,0.121154 -7561,5512:120,-120,-52,0,0,0.120433 -7562,5511:229,-119,-52,0,0,0.117686 -7563,5511:228,-118,-52,0,0,0.118638 -7564,5511:227,-117,-52,0,0,0.120597 -7565,5511:226,-116,-52,0,0,0.122318 -7566,5511:225,-115,-52,0,0,0.121438 -7567,5511:124,-114,-52,0,0,0.121175 -7568,5511:123,-113,-52,0,0,0.124418 -7569,5511:122,-112,-52,0,0,0.117824 -7570,5511:121,-111,-52,0,0,0.119349 -7571,5511:120,-110,-52,0,0,0.123882 -7572,5510:229,-109,-52,0,0,0.121932 -7573,5510:228,-108,-52,0,0,0.120488 -7574,5510:227,-107,-52,0,0,0.120902 -7575,5510:226,-106,-52,0,0,0.119047 -7576,5510:225,-105,-52,0,0,0.115863 -7577,5510:124,-104,-52,0,0,0.119112 -7578,5510:123,-103,-52,0,0,0.12434 -7579,5510:122,-102,-52,0,0,0.130403 -7580,5510:121,-101,-52,0,0,0.129763 -7581,5510:120,-100,-52,0,0,0.12367 -7582,5509:229,-99,-52,0,0,0.124575 -7583,5509:228,-98,-52,0,0,0.128699 -7584,5509:227,-97,-52,0,0,0.122804 -7585,5509:226,-96,-52,0,0,0.119328 -7586,5509:225,-95,-52,0,0,0.120859 -7587,5509:124,-94,-52,0,0,0.125305 -7588,5509:123,-93,-52,0,0,0.120782 -7589,5509:122,-92,-52,0,0,0.115191 -7590,5509:121,-91,-52,0,0,0.114992 -7591,5509:120,-90,-52,0,0,0.11494 -7592,5508:229,-89,-52,0,0,0.120608 -7593,5508:228,-88,-52,0,0,0.12337 -7594,5508:227,-87,-52,0,0,0.121812 -7595,5508:226,-86,-52,0,0,0.122693 -7596,5508:225,-85,-52,0,0,0.122528 -7597,5508:124,-84,-52,0,0,0.122274 -7598,5508:123,-83,-52,0,0,0.123659 -7599,5508:122,-82,-52,0,0,0.126265 -7600,5508:121,-81,-52,0,0,0.126856 -7601,5508:120,-80,-52,0,0,0.124586 -7602,5507:229,-79,-52,0,0,0.122738 -7603,5507:228,-78,-52,0,0,0.128102 -7604,5507:227,-77,-52,0,0,0.12952 -7605,5507:226,-76,-52,0,0,0.127964 -7606,5507:225,-75,-52,0,0,0.127015 -7607,5507:124,-74,-52,0,0,0.124631 -7608,5507:123,-73,-52,0,0,0.119641 -7609,5507:122,-72,-52,0,0,0.120053 -7610,5507:121,-71,-52,0,0,0.117334 -7611,5507:120,-70,-52,0,0,0.116898 -7612,5506:229,-69,-52,0,0,0.115181 -7613,5506:228,-68,-52,0,0,0.10637 -7614,5506:227,-67,-52,0,0,0.108766 -7615,5506:226,-66,-52,0,0,0.107488 -7616,5506:225,-65,-52,0,0,0.101519 -7617,5506:124,-64,-52,0,0,0.0909228 -7618,5506:123,-63,-52,0,0,0.090906 -7619,5506:122,-62,-52,0,0,0.0925925 -7620,5506:121,-61,-52,0,0,0.0946325 -7621,5506:120,-60,-52,0,0,0.0966586 -7622,5505:229,-59,-52,0,0,0.096865 -7623,5505:228,-58,-52,0,0,0.0926012 -7624,5505:227,-57,-52,0,0,0.0885644 -7625,5505:226,-56,-52,0,0,0.0821193 -7626,5505:225,-55,-52,0,0,0.0825462 -7627,5505:124,-54,-52,0,0,0.0817947 -7628,5505:123,-53,-52,0,0,0.077451 -7629,5505:122,-52,-52,0,0,0.0769315 -7630,5505:121,-51,-52,0,0,0.0763064 -7631,5505:120,-50,-52,0,0,0.0764006 -7632,5504:229,-49,-52,0,0,0.0752201 -7633,5504:228,-48,-52,0,0,0.0753703 -7634,5504:227,-47,-52,0,0,0.0751701 -7635,5504:226,-46,-52,0,0,0.0754203 -7636,5504:225,-45,-52,0,0,0.0756715 -7637,5504:124,-44,-52,0,0,0.0756715 -7638,5504:123,-43,-52,0,0,0.0787084 -7639,5504:122,-42,-52,0,0,0.0788427 -7640,5504:121,-41,-52,0,0,0.0773337 -7641,5504:120,-40,-52,0,0,0.0770922 -7642,5503:229,-39,-52,0,0,0.0776718 -7643,5503:228,-38,-52,0,0,0.084021 -7644,5503:227,-37,-52,0,0,0.0804543 -7645,5503:226,-36,-52,0,0,0.0763427 -7646,5503:225,-35,-52,0,0,0.0769973 -7647,5503:124,-34,-52,0,0,0.0775026 -7648,5503:123,-33,-52,0,0,0.0764079 -7649,5503:122,-32,-52,0,0,0.0749275 -7650,5503:121,-31,-52,0,0,0.0754993 -7651,5503:120,-30,-52,0,0,0.0749703 -7652,5502:229,-29,-52,0,0,0.0749988 -7653,5502:228,-28,-52,0,0,0.0749916 -7654,5502:227,-27,-52,0,0,0.0749775 -7655,5502:226,-26,-52,0,0,0.0750558 -7656,5502:225,-25,-52,0,0,0.0771726 -7657,5502:124,-24,-52,0,0,0.0836814 -7658,5502:123,-23,-52,0,0,0.0803405 -7659,5502:122,-22,-52,0,0,0.079532 -7660,5502:121,-21,-52,0,0,0.0767712 -7661,5502:120,-20,-52,0,0,0.0760749 -7662,5501:229,-19,-52,0,0,0.0772899 -7663,5501:228,-18,-52,0,0,0.0759811 -7664,5501:227,-17,-52,0,0,0.0755567 -7665,5501:226,-16,-52,0,0,0.0755135 -7666,5501:225,-15,-52,0,0,0.0758082 -7667,5501:124,-14,-52,0,0,0.075442 -7668,5501:123,-13,-52,0,0,0.0749775 -7669,5501:122,-12,-52,0,0,0.0749562 -7670,5501:121,-11,-52,0,0,0.0749562 -7671,5501:120,-10,-52,0,0,0.074949 -7672,5500:229,-9,-52,0,0,0.0749631 -7673,5500:228,-8,-52,0,0,0.0749703 -7674,5500:227,-7,-52,0,0,0.0749631 -7675,5500:226,-6,-52,0,0,0.074949 -7676,5500:225,-5,-52,0,0,0.0749418 -7677,5500:124,-4,-52,0,0,0.0749275 -7678,5500:123,-3,-52,0,0,0.0749133 -7679,5500:122,-2,-52,0,0,0.074899 -7680,5500:121,-1,-52,0,0,0.0749133 -7681,3500:121,0,-52,0,0,0.0749275 -7682,3500:121,1,-52,0,0,0.0749562 -7683,3500:122,2,-52,0,0,0.0753203 -7684,3500:123,3,-52,0,0,0.0755065 -7685,3500:124,4,-52,0,0,0.0756285 -7686,3500:225,5,-52,0,0,0.0757507 -7687,3500:226,6,-52,0,0,0.0757362 -7688,3500:227,7,-52,0,0,0.0756787 -7689,3500:228,8,-52,0,0,0.0754706 -7690,3500:229,9,-52,0,0,0.0751771 -7691,3501:120,10,-52,0,0,0.0750273 -7692,3501:121,11,-52,0,0,0.075006 -7693,3501:122,12,-52,0,0,0.074899 -7694,3501:123,13,-52,0,0,0.0749062 -7695,3501:124,14,-52,0,0,0.0749275 -7696,3501:225,15,-52,0,0,0.0749275 -7697,3501:226,16,-52,0,0,0.0749275 -7698,3501:227,17,-52,0,0,0.0749418 -7699,3501:228,18,-52,0,0,0.0749418 -7700,3501:229,19,-52,0,0,0.0749562 -7701,3502:120,20,-52,0,0,0.074949 -7702,3502:121,21,-52,0,0,0.0749562 -7703,3502:122,22,-52,0,0,0.0749631 -7704,3502:123,23,-52,0,0,0.0749631 -7705,3502:124,24,-52,0,0,0.0750131 -7706,3502:225,25,-52,0,0,0.0749988 -7707,3502:226,26,-52,0,0,0.0750273 -7708,3502:227,27,-52,0,0,0.0752415 -7709,3502:228,28,-52,0,0,0.0753058 -7710,3502:229,29,-52,0,0,0.0751701 -7711,3503:120,30,-52,0,0,0.0751843 -7712,3503:121,31,-52,0,0,0.0753703 -7713,3503:122,32,-52,0,0,0.0754634 -7714,3503:123,33,-52,0,0,0.0754348 -7715,3503:124,34,-52,0,0,0.075313 -7716,3503:225,35,-52,0,0,0.0754203 -7717,3503:226,36,-52,0,0,0.0755711 -7718,3503:227,37,-52,0,0,0.0757362 -7719,3503:228,38,-52,0,0,0.0759091 -7720,3503:229,39,-52,0,0,0.076046 -7721,3504:120,40,-52,0,0,0.0764513 -7722,3504:121,41,-52,0,0,0.0765384 -7723,3504:122,42,-52,0,0,0.0766839 -7724,3504:123,43,-52,0,0,0.0764442 -7725,3504:124,44,-52,0,0,0.0762775 -7726,3504:225,45,-52,0,0,0.0761907 -7727,3504:226,46,-52,0,0,0.0762848 -7728,3504:227,47,-52,0,0,0.0753847 -7729,3504:228,48,-52,0,0,0.075163 -7730,3504:229,49,-52,0,0,0.0751701 -7731,3505:120,50,-52,0,0,0.0752343 -7732,3505:121,51,-52,0,0,0.0750416 -7733,3505:122,52,-52,0,0,0.0753272 -7734,3505:123,53,-52,0,0,0.0755352 -7735,3505:124,54,-52,0,0,0.0754492 -7736,3505:225,55,-52,0,0,0.0754779 -7737,3505:226,56,-52,0,0,0.0753917 -7738,3505:227,57,-52,0,0,0.0750702 -7739,3505:228,58,-52,0,0,0.075313 -7740,3505:229,59,-52,0,0,0.0755567 -7741,3506:120,60,-52,0,0,0.0752487 -7742,3506:121,61,-52,0,0,0.075837 -7743,3506:122,62,-52,0,0,0.0763064 -7744,3506:123,63,-52,0,0,0.0771067 -7745,3506:124,64,-52,0,0,0.0848548 -7746,3506:225,65,-52,0,0,0.0809651 -7747,3506:226,66,-52,0,0,0.0812332 -7748,3506:227,67,-52,0,0,0.0824607 -7749,3506:228,68,-52,0,0,0.0854151 -7750,3506:229,69,-52,0,0,0.0870994 -7751,3507:120,70,-52,0,0,0.0886974 -7752,3507:121,71,-52,0,0,0.0876154 -7753,3507:122,72,-52,0,0,0.0828347 -7754,3507:124,74,-52,0,0,0.0820961 -7755,3507:225,75,-52,0,0,0.0800373 -7756,3507:226,76,-52,0,0,0.0791191 -7757,3507:227,77,-52,0,0,0.0784258 -7758,3507:228,78,-52,0,0,0.077657 -7759,3507:229,79,-52,0,0,0.0774732 -7760,3508:120,80,-52,0,0,0.0769973 -7761,3508:121,81,-52,0,0,0.0766328 -7762,3508:122,82,-52,0,0,0.0762702 -7763,3508:123,83,-52,0,0,0.0760822 -7764,3508:124,84,-52,0,0,0.0765313 -7765,3508:225,85,-52,0,0,0.0763571 -7766,3508:226,86,-52,0,0,0.0761834 -7767,3508:227,87,-52,0,0,0.0801962 -7768,3508:228,88,-52,0,0,0.0857367 -7769,3508:229,89,-52,0,0,0.0842346 -7770,3509:120,90,-52,0,0,0.0846955 -7771,3509:121,91,-52,0,0,0.0900689 -7772,3509:122,92,-52,0,0,0.0910673 -7773,3509:123,93,-52,0,0,0.0846078 -7774,3509:124,94,-52,0,0,0.0869686 -7775,3509:225,95,-52,0,0,0.0858575 -7776,3509:226,96,-52,0,0,0.0878787 -7777,3509:227,97,-52,0,0,0.0884155 -7778,3509:228,98,-52,0,0,0.0900689 -7779,3509:229,99,-52,0,0,0.091485 -7780,3510:120,100,-52,0,0,0.090533 -7781,3510:121,101,-52,0,0,0.0891801 -7782,3510:122,102,-52,0,0,0.0903723 -7783,3510:123,103,-52,0,0,0.0931986 -7784,3510:124,104,-52,0,0,0.0941931 -7785,3510:225,105,-52,0,0,0.0892971 -7786,3510:226,106,-52,0,0,0.0892887 -7787,3510:227,107,-52,0,0,0.0893389 -7788,3510:228,108,-52,0,0,0.0871321 -7789,3510:229,109,-52,0,0,0.0870342 -7790,3511:120,110,-52,0,0,0.0879529 -7791,3511:121,111,-52,0,0,0.0875169 -7792,3511:122,112,-52,0,0,0.0872464 -7793,3511:123,113,-52,0,0,0.0878046 -7794,3511:124,114,-52,0,0,0.0913654 -7795,3511:225,115,-52,0,0,0.093686 -7796,3511:226,116,-52,0,0,0.095703 -7797,3511:227,117,-52,0,0,0.0973606 -7798,3511:228,118,-52,0,0,0.0988423 -7799,3511:229,119,-52,0,0,0.0997151 -7800,3512:120,120,-52,0,0,0.0998258 -7801,3512:121,121,-52,0,0,0.0988239 -7802,3512:122,122,-52,0,0,0.0979763 -7803,3512:123,123,-52,0,0,0.0999829 -7804,3512:124,124,-52,0,0,0.10245 -7805,3512:225,125,-52,0,0,0.101828 -7806,3512:226,126,-52,0,0,0.103294 -7807,3512:227,127,-52,0,0,0.103828 -7808,3512:228,128,-52,0,0,0.101734 -7809,3512:229,129,-52,0,0,0.101051 -7810,3513:120,130,-52,0,0,0.10563 -7811,3513:121,131,-52,0,0,0.104384 -7812,3513:122,132,-52,0,0,0.103924 -7813,3513:123,133,-52,0,0,0.102905 -7814,3513:124,134,-52,0,0,0.101294 -7815,3513:225,135,-52,0,0,0.10066 -7816,3513:226,136,-52,0,0,0.102403 -7817,3513:227,137,-52,0,0,0.102082 -7818,3513:228,138,-52,0,0,0.100186 -7819,3513:229,139,-52,0,0,0.10136 -7820,3514:120,140,-52,0,0,0.100261 -7821,3514:121,141,-52,0,0,0.0990528 -7822,3514:122,142,-52,0,0,0.0986685 -7823,3514:123,143,-52,0,0,0.100112 -7824,3514:124,144,-52,0,0,0.101725 -7825,3514:225,145,-52,0,0,0.0995217 -7826,3514:226,146,-52,0,0,0.0990162 -7827,3514:227,147,-52,0,0,0.099909 -7828,3514:228,148,-52,0,0,0.0986227 -7829,3514:229,149,-52,0,0,0.0964792 -7830,3515:120,150,-52,0,0,0.0896486 -7831,3515:121,151,-52,0,0,0.0827566 -7832,3515:122,152,-52,0,0,0.0885397 -7833,3515:123,153,-52,0,0,0.0919813 -7834,3515:124,154,-52,0,0,0.0936424 -7835,3515:225,155,-52,0,0,0.099411 -7836,3515:226,156,-52,0,0,0.101229 -7837,3515:227,157,-52,0,0,0.0970541 -7838,3515:228,158,-52,0,0,0.0975683 -8162,3512:112,122,-51,0,0,0.10213 -7839,3515:229,159,-52,0,0,0.0980218 -7840,3516:120,160,-52,0,0,0.0988789 -7841,3516:121,161,-52,0,0,0.100567 -7842,3516:122,162,-52,0,0,0.103867 -7843,3516:123,163,-52,0,0,0.103848 -7844,3516:124,164,-52,0,0,0.10815 -7845,3516:225,165,-52,0,0,0.110159 -7846,3516:226,166,-52,0,0,0.111739 -7847,3516:227,167,-52,0,0,0.114971 -7848,3516:228,168,-52,0,0,0.119814 -7849,3516:229,169,-52,0,0,0.124608 -7850,3517:120,170,-52,0,0,0.12863 -7851,3517:121,171,-52,0,0,0.127918 -7852,3517:122,172,-52,0,0,0.126833 -7853,3517:123,173,-52,0,0,0.127529 -7854,3517:124,174,-52,0,0,0.127849 -7855,3517:225,175,-52,0,0,0.127574 -7856,3517:226,176,-52,0,0,0.126731 -7857,3517:227,177,-52,0,0,0.123403 -7858,3517:228,178,-52,0,0,0.120173 -7859,3517:229,179,-52,0,0,0.118886 -7860,3518:120,180,-52,0,0,0.11299 -7861,5518:110,-180,-51,0,0,0.120129 -7862,5517:219,-179,-51,0,0,0.119771 -7863,5517:218,-178,-51,0,0,0.119858 -7864,5517:217,-177,-51,0,0,0.118038 -7865,5517:216,-176,-51,0,0,0.115443 -7866,5517:215,-175,-51,0,0,0.115947 -7867,5517:114,-174,-51,0,0,0.115695 -7868,5517:113,-173,-51,0,0,0.116665 -7869,5517:112,-172,-51,0,0,0.115045 -7870,5517:111,-171,-51,0,0,0.113309 -7871,5517:110,-170,-51,0,0,0.115464 -7872,5516:219,-169,-51,0,0,0.114596 -7873,5516:218,-168,-51,0,0,0.112887 -7874,5516:217,-167,-51,0,0,0.113785 -7875,5516:216,-166,-51,0,0,0.114909 -7876,5516:215,-165,-51,0,0,0.115485 -7877,5516:114,-164,-51,0,0,0.115684 -7878,5516:113,-163,-51,0,0,0.114523 -7879,5516:112,-162,-51,0,0,0.114127 -7880,5516:111,-161,-51,0,0,0.11176 -7881,5516:110,-160,-51,0,0,0.108022 -7882,5515:219,-159,-51,0,0,0.107183 -7883,5515:218,-158,-51,0,0,0.110451 -7884,5515:217,-157,-51,0,0,0.115705 -7885,5515:216,-156,-51,0,0,0.11495 -7886,5515:215,-155,-51,0,0,0.111984 -7887,5515:114,-154,-51,0,0,0.108976 -7888,5515:113,-153,-51,0,0,0.091127 -7889,5515:112,-152,-51,0,0,0.0916644 -7890,5515:111,-151,-51,0,0,0.091947 -7891,5515:110,-150,-51,0,0,0.0950117 -7892,5514:219,-149,-51,0,0,0.0948263 -7893,5514:218,-148,-51,0,0,0.0967931 -7894,5514:217,-147,-51,0,0,0.107429 -7895,5514:216,-146,-51,0,0,0.111129 -7896,5514:215,-145,-51,0,0,0.120433 -7897,5514:114,-144,-51,0,0,0.125215 -7898,5514:113,-143,-51,0,0,0.119004 -7899,5514:112,-142,-51,0,0,0.122263 -7900,5514:111,-141,-51,0,0,0.13541 -7901,5514:110,-140,-51,0,0,0.132609 -7902,5513:219,-139,-51,0,0,0.12499 -7903,5513:218,-138,-51,0,0,0.121943 -7904,5513:217,-137,-51,0,0,0.121427 -7905,5513:216,-136,-51,0,0,0.124631 -7906,5513:215,-135,-51,0,0,0.129011 -7907,5513:114,-134,-51,0,0,0.129196 -7908,5513:113,-133,-51,0,0,0.124788 -7909,5513:112,-132,-51,0,0,0.121121 -7910,5513:111,-131,-51,0,0,0.120118 -7911,5513:110,-130,-51,0,0,0.138115 -7912,5512:219,-129,-51,0,0,0.13922 -7913,5512:218,-128,-51,0,0,0.140394 -7914,5512:217,-127,-51,0,0,0.138128 -7915,5512:216,-126,-51,0,0,0.13395 -7916,5512:215,-125,-51,0,0,0.124642 -7917,5512:114,-124,-51,0,0,0.123214 -7918,5512:113,-123,-51,0,0,0.127278 -7919,5512:112,-122,-51,0,0,0.124653 -7920,5512:111,-121,-51,0,0,0.121999 -7921,5512:110,-120,-51,0,0,0.120804 -7922,5511:219,-119,-51,0,0,0.124608 -7923,5511:218,-118,-51,0,0,0.13389 -7924,5511:217,-117,-51,0,0,0.137956 -7925,5511:216,-116,-51,0,0,0.138507 -7926,5511:215,-115,-51,0,0,0.136388 -7927,5511:114,-114,-51,0,0,0.128768 -7928,5511:113,-113,-51,0,0,0.126572 -7929,5511:112,-112,-51,0,0,0.124923 -7930,5511:111,-111,-51,0,0,0.122771 -7931,5511:110,-110,-51,0,0,0.12605 -7932,5510:219,-109,-51,0,0,0.124687 -7933,5510:218,-108,-51,0,0,0.123392 -7934,5510:217,-107,-51,0,0,0.12276 -7935,5510:216,-106,-51,0,0,0.121976 -7936,5510:215,-105,-51,0,0,0.126061 -7937,5510:114,-104,-51,0,0,0.131525 -7938,5510:113,-103,-51,0,0,0.13487 -7939,5510:112,-102,-51,0,0,0.133046 -7940,5510:111,-101,-51,0,0,0.131877 -7941,5510:110,-100,-51,0,0,0.131291 -7942,5509:219,-99,-51,0,0,0.129833 -7943,5509:218,-98,-51,0,0,0.130158 -7944,5509:217,-97,-51,0,0,0.125102 -7945,5509:216,-96,-51,0,0,0.120542 -7946,5509:215,-95,-51,0,0,0.12656 -8271,5513:100,-130,-50,0,0,0.13511 -7947,5509:114,-94,-51,0,0,0.130146 -7948,5509:113,-93,-51,0,0,0.128734 -7949,5509:112,-92,-51,0,0,0.128274 -7950,5509:111,-91,-51,0,0,0.12801 -7951,5509:110,-90,-51,0,0,0.126879 -7952,5508:219,-89,-51,0,0,0.126981 -7953,5508:218,-88,-51,0,0,0.126027 -7954,5508:217,-87,-51,0,0,0.125181 -7955,5508:216,-86,-51,0,0,0.126345 -7956,5508:215,-85,-51,0,0,0.128607 -7957,5508:114,-84,-51,0,0,0.131713 -7958,5508:113,-83,-51,0,0,0.129612 -7959,5508:112,-82,-51,0,0,0.128458 -7960,5508:111,-81,-51,0,0,0.127221 -7961,5508:110,-80,-51,0,0,0.126413 -7962,5507:219,-79,-51,0,0,0.129786 -7963,5507:218,-78,-51,0,0,0.131021 -7964,5507:217,-77,-51,0,0,0.131877 -7965,5507:216,-76,-51,0,0,0.131033 -7966,5507:215,-75,-51,0,0,0.128481 -7967,5507:114,-74,-51,0,0,0.125858 -7968,5507:113,-73,-51,0,0,0.123004 -7969,5507:112,-72,-51,0,0,0.123681 -7970,5507:111,-71,-51,0,0,0.122153 -7971,5507:110,-70,-51,0,0,0.119231 -7972,5506:219,-69,-51,0,0,0.111414 -7973,5506:218,-68,-51,0,0,0.105912 -7974,5506:217,-67,-51,0,0,0.104394 -7975,5506:216,-66,-51,0,0,0.101416 -7976,5506:215,-65,-51,0,0,0.100455 -7977,5506:114,-64,-51,0,0,0.0981216 -7978,5506:113,-63,-51,0,0,0.100085 -7979,5506:112,-62,-51,0,0,0.0961664 -7980,5506:111,-61,-51,0,0,0.0950912 -7981,5506:110,-60,-51,0,0,0.101163 -7982,5505:219,-59,-51,0,0,0.0985773 -7983,5505:218,-58,-51,0,0,0.0959967 -7984,5505:217,-57,-51,0,0,0.0936597 -7985,5505:216,-56,-51,0,0,0.0864886 -7986,5505:215,-55,-51,0,0,0.0884982 -7987,5505:114,-54,-51,0,0,0.0886559 -7988,5505:113,-53,-51,0,0,0.0882498 -7989,5505:112,-52,-51,0,0,0.0839735 -7990,5505:111,-51,-51,0,0,0.0790218 -7991,5505:110,-50,-51,0,0,0.0789771 -7992,5504:219,-49,-51,0,0,0.0794191 -7993,5504:218,-48,-51,0,0,0.0813636 -7994,5504:217,-47,-51,0,0,0.0882004 -7995,5504:216,-46,-51,0,0,0.0944829 -7996,5504:215,-45,-51,0,0,0.0912886 -7997,5504:114,-44,-51,0,0,0.0804239 -7998,5504:113,-43,-51,0,0,0.0840447 -7999,5504:112,-42,-51,0,0,0.0849506 -8000,5504:111,-41,-51,0,0,0.0848468 -8001,5504:110,-40,-51,0,0,0.0820805 -8002,5503:219,-39,-51,0,0,0.0832728 -8003,5503:218,-38,-51,0,0,0.0866592 -8004,5503:217,-37,-51,0,0,0.0844806 -8005,5503:216,-36,-51,0,0,0.0807284 -8006,5503:215,-35,-51,0,0,0.0843616 -8007,5503:114,-34,-51,0,0,0.0847035 -8008,5503:113,-33,-51,0,0,0.084298 -8009,5503:112,-32,-51,0,0,0.0815402 -8010,5503:111,-31,-51,0,0,0.0816018 -8011,5503:110,-30,-51,0,0,0.0802492 -8012,5502:219,-29,-51,0,0,0.0808581 -8013,5502:218,-28,-51,0,0,0.0780035 -8014,5502:217,-27,-51,0,0,0.0777601 -8015,5502:216,-26,-51,0,0,0.0778042 -8016,5502:215,-25,-51,0,0,0.0785446 -8017,5502:114,-24,-51,0,0,0.088093 -8018,5502:113,-23,-51,0,0,0.0895731 -8019,5502:112,-22,-51,0,0,0.0888219 -8020,5502:111,-21,-51,0,0,0.0857527 -8021,5502:110,-20,-51,0,0,0.0819646 -8022,5501:219,-19,-51,0,0,0.082983 -8023,5501:218,-18,-51,0,0,0.0825695 -8024,5501:217,-17,-51,0,0,0.0804315 -8025,5501:216,-16,-51,0,0,0.0786489 -8026,5501:215,-15,-51,0,0,0.0785149 -8027,5501:114,-14,-51,0,0,0.0787755 -8028,5501:113,-13,-51,0,0,0.0797653 -8029,5501:112,-12,-51,0,0,0.0804315 -8030,5501:111,-11,-51,0,0,0.080022 -8031,5501:110,-10,-51,0,0,0.0787755 -8032,5500:219,-9,-51,0,0,0.0793366 -8033,5500:218,-8,-51,0,0,0.079788 -8034,5500:217,-7,-51,0,0,0.0796447 -8035,5500:216,-6,-51,0,0,0.0776127 -8036,5500:215,-5,-51,0,0,0.0771141 -8037,5500:114,-4,-51,0,0,0.0756428 -8038,5500:113,-3,-51,0,0,0.0754993 -8039,5500:112,-2,-51,0,0,0.0754275 -8040,5500:111,-1,-51,0,0,0.0751344 -8041,3500:111,0,-51,0,0,0.074899 -8042,3500:111,1,-51,0,0,0.074828 -8043,3500:112,2,-51,0,0,0.0749205 -8044,3500:113,3,-51,0,0,0.0755567 -8045,3500:114,4,-51,0,0,0.07565 -8046,3500:215,5,-51,0,0,0.0755207 -8047,3500:216,6,-51,0,0,0.0752343 -8048,3500:217,7,-51,0,0,0.0749631 -8049,3500:218,8,-51,0,0,0.075006 -8050,3500:219,9,-51,0,0,0.0750843 -8051,3501:110,10,-51,0,0,0.0748493 -8052,3501:111,11,-51,0,0,0.0747996 -8053,3501:112,12,-51,0,0,0.0748208 -8054,3501:113,13,-51,0,0,0.0748564 -8055,3501:114,14,-51,0,0,0.074899 -8056,3501:215,15,-51,0,0,0.0748705 -8057,3501:216,16,-51,0,0,0.0748636 -8058,3501:217,17,-51,0,0,0.0748421 -8059,3501:218,18,-51,0,0,0.074828 -8060,3501:219,19,-51,0,0,0.0748208 -8061,3502:110,20,-51,0,0,0.0747924 -8062,3502:111,21,-51,0,0,0.0749846 -8063,3502:112,22,-51,0,0,0.0749275 -8064,3502:113,23,-51,0,0,0.0748421 -8065,3502:114,24,-51,0,0,0.0748564 -8066,3502:215,25,-51,0,0,0.0749703 -8067,3502:216,26,-51,0,0,0.0751059 -8068,3502:217,27,-51,0,0,0.0751344 -8069,3502:218,28,-51,0,0,0.0749346 -8070,3502:219,29,-51,0,0,0.0750201 -8071,3503:110,30,-51,0,0,0.0750345 -8072,3503:111,31,-51,0,0,0.0752343 -8073,3503:112,32,-51,0,0,0.075063 -8074,3503:113,33,-51,0,0,0.0752057 -8075,3503:114,34,-51,0,0,0.07635 -8076,3503:215,35,-51,0,0,0.07827 -8077,3503:216,36,-51,0,0,0.0774217 -8078,3503:217,37,-51,0,0,0.0757795 -8079,3503:218,38,-51,0,0,0.0777232 -8080,3503:219,39,-51,0,0,0.0767347 -8081,3504:110,40,-51,0,0,0.0772092 -8082,3504:111,41,-51,0,0,0.0778634 -8083,3504:112,42,-51,0,0,0.0780405 -8084,3504:113,43,-51,0,0,0.0780405 -8085,3504:114,44,-51,0,0,0.077635 -8086,3504:215,45,-51,0,0,0.0769681 -8087,3504:216,46,-51,0,0,0.0771799 -8088,3504:217,47,-51,0,0,0.0778116 -8089,3504:218,48,-51,0,0,0.0774878 -8090,3504:219,49,-51,0,0,0.0766184 -8091,3505:110,50,-51,0,0,0.0766184 -8092,3505:111,51,-51,0,0,0.0758515 -8093,3505:112,52,-51,0,0,0.0772092 -8094,3505:113,53,-51,0,0,0.0790145 -8095,3505:114,54,-51,0,0,0.0758225 -8096,3505:215,55,-51,0,0,0.0774952 -8097,3505:216,56,-51,0,0,0.0762485 -8098,3505:217,57,-51,0,0,0.07565 -8099,3505:218,58,-51,0,0,0.0778116 -8100,3505:219,59,-51,0,0,0.0843219 -8101,3506:110,60,-51,0,0,0.0788873 -8102,3506:111,61,-51,0,0,0.0832336 -8103,3506:112,62,-51,0,0,0.0826864 -8104,3506:113,63,-51,0,0,0.0781588 -8105,3506:114,64,-51,0,0,0.0817638 -8106,3506:215,65,-51,0,0,0.0872057 -8107,3506:216,66,-51,0,0,0.0877551 -8108,3506:217,67,-51,0,0,0.0856078 -8109,3506:218,68,-51,0,0,0.0868708 -8110,3506:219,69,-51,0,0,0.0878867 -8111,3507:110,70,-51,0,0,0.088316 -8112,3507:111,71,-51,0,0,0.0902036 -8113,3507:112,72,-51,0,0,0.08303 -8114,3507:114,74,-51,0,0,0.0800978 -8115,3507:215,75,-51,0,0,0.0794491 -8116,3507:216,76,-51,0,0,0.0790145 -8117,3507:217,77,-51,0,0,0.0793891 -8118,3507:218,78,-51,0,0,0.0792691 -8119,3507:219,79,-51,0,0,0.077532 -8120,3508:110,80,-51,0,0,0.0770996 -8121,3508:111,81,-51,0,0,0.0770849 -8122,3508:112,82,-51,0,0,0.0773044 -8123,3508:113,83,-51,0,0,0.0772459 -8124,3508:114,84,-51,0,0,0.0773924 -8125,3508:215,85,-51,0,0,0.0768806 -8126,3508:216,86,-51,0,0,0.0779149 -8127,3508:217,87,-51,0,0,0.0880351 -8128,3508:218,88,-51,0,0,0.0964704 -8129,3508:219,89,-51,0,0,0.0910673 -8130,3509:110,90,-51,0,0,0.0889718 -8131,3509:111,91,-51,0,0,0.0898333 -8132,3509:112,92,-51,0,0,0.090855 -8133,3509:113,93,-51,0,0,0.0909568 -8134,3509:114,94,-51,0,0,0.0901699 -8135,3509:215,95,-51,0,0,0.089741 -8136,3509:216,96,-51,0,0,0.0877963 -8137,3509:217,97,-51,0,0,0.0874759 -8138,3509:218,98,-51,0,0,0.0881507 -8139,3509:219,99,-51,0,0,0.0895481 -8140,3510:110,100,-51,0,0,0.0918871 -8141,3510:111,101,-51,0,0,0.0916302 -8142,3510:112,102,-51,0,0,0.0913909 -8143,3510:113,103,-51,0,0,0.0947733 -8144,3510:114,104,-51,0,0,0.0965688 -8145,3510:215,105,-51,0,0,0.0955696 -8146,3510:216,106,-51,0,0,0.0950292 -8147,3510:217,107,-51,0,0,0.0928259 -8148,3510:218,108,-51,0,0,0.0904992 -8149,3510:219,109,-51,0,0,0.09533 -8150,3511:110,110,-51,0,0,0.0971891 -8151,3511:111,111,-51,0,0,0.0970091 -8152,3511:112,112,-51,0,0,0.0944038 -8153,3511:113,113,-51,0,0,0.101285 -8154,3511:114,114,-51,0,0,0.104029 -8155,3511:215,115,-51,0,0,0.0977858 -8156,3511:216,116,-51,0,0,0.0976136 -8157,3511:217,117,-51,0,0,0.0986411 -8158,3511:218,118,-51,0,0,0.0989795 -8159,3511:219,119,-51,0,0,0.100781 -8160,3512:110,120,-51,0,0,0.100892 -8161,3512:111,121,-51,0,0,0.102252 -8163,3512:113,123,-51,0,0,0.102943 -8164,3512:114,124,-51,0,0,0.103047 -8165,3512:215,125,-51,0,0,0.102848 -8166,3512:216,126,-51,0,0,0.103114 -8167,3512:217,127,-51,0,0,0.104653 -8168,3512:218,128,-51,0,0,0.105824 -8169,3512:219,129,-51,0,0,0.106869 -8170,3513:110,130,-51,0,0,0.107873 -8171,3513:111,131,-51,0,0,0.108042 -8172,3513:112,132,-51,0,0,0.108329 -8173,3513:113,133,-51,0,0,0.108071 -8174,3513:114,134,-51,0,0,0.104827 -8175,3513:215,135,-51,0,0,0.1028 -8176,3513:216,136,-51,0,0,0.104096 -8177,3513:217,137,-51,0,0,0.103924 -8178,3513:218,138,-51,0,0,0.10319 -8179,3513:219,139,-51,0,0,0.103266 -8180,3514:110,140,-51,0,0,0.102469 -8181,3514:111,141,-51,0,0,0.102962 -8182,3514:112,142,-51,0,0,0.103943 -8183,3514:113,143,-51,0,0,0.10561 -8184,3514:114,144,-51,0,0,0.105339 -8185,3514:215,145,-51,0,0,0.104596 -8186,3514:216,146,-51,0,0,0.103838 -8187,3514:217,147,-51,0,0,0.101838 -8188,3514:218,148,-51,0,0,0.099108 -8189,3514:219,149,-51,0,0,0.0956672 -8190,3515:110,150,-51,0,0,0.0862049 -8191,3515:111,151,-51,0,0,0.0895984 -8192,3515:112,152,-51,0,0,0.0901951 -8193,3515:113,153,-51,0,0,0.0927307 -8194,3515:114,154,-51,0,0,0.0945707 -8195,3515:215,155,-51,0,0,0.0990162 -8196,3515:216,156,-51,0,0,0.100846 -8197,3515:217,157,-51,0,0,0.0997059 -8198,3515:218,158,-51,0,0,0.0996873 -8199,3515:219,159,-51,0,0,0.100753 -8200,3516:110,160,-51,0,0,0.108289 -8201,3516:111,161,-51,0,0,0.111638 -8202,3516:112,162,-51,0,0,0.12778 -8203,3516:113,163,-51,0,0,0.129937 -8204,3516:114,164,-51,0,0,0.131936 -8205,3516:215,165,-51,0,0,0.128607 -8206,3516:216,166,-51,0,0,0.120837 -8207,3516:217,167,-51,0,0,0.130706 -8208,3516:218,168,-51,0,0,0.132019 -8209,3516:219,169,-51,0,0,0.13196 -8210,3517:110,170,-51,0,0,0.130753 -8211,3517:111,171,-51,0,0,0.12762 -8212,3517:112,172,-51,0,0,0.12801 -8213,3517:113,173,-51,0,0,0.128228 -8214,3517:114,174,-51,0,0,0.127998 -8215,3517:215,175,-51,0,0,0.126526 -8216,3517:216,176,-51,0,0,0.124743 -8217,3517:217,177,-51,0,0,0.122252 -8218,3517:218,178,-51,0,0,0.123303 -8219,3517:219,179,-51,0,0,0.123037 -8220,3518:110,180,-51,0,0,0.120129 -8221,5518:100,-180,-50,0,0,0.132585 -8222,5517:209,-179,-50,0,0,0.125994 -8223,5517:208,-178,-50,0,0,0.120608 -8224,5517:207,-177,-50,0,0,0.122583 -8225,5517:206,-176,-50,0,0,0.123904 -8226,5517:205,-175,-50,0,0,0.125756 -8227,5517:104,-174,-50,0,0,0.125835 -8228,5517:103,-173,-50,0,0,0.123481 -8229,5517:102,-172,-50,0,0,0.12202 -8230,5517:101,-171,-50,0,0,0.123626 -8231,5517:100,-170,-50,0,0,0.125361 -8232,5516:209,-169,-50,0,0,0.121746 -8233,5516:208,-168,-50,0,0,0.118477 -8234,5516:207,-167,-50,0,0,0.119912 -8235,5516:206,-166,-50,0,0,0.124071 -8236,5516:205,-165,-50,0,0,0.12287 -8237,5516:104,-164,-50,0,0,0.121077 -8238,5516:103,-163,-50,0,0,0.120979 -8239,5516:102,-162,-50,0,0,0.120183 -8240,5516:101,-161,-50,0,0,0.119177 -8241,5516:100,-160,-50,0,0,0.117622 -8242,5515:209,-159,-50,0,0,0.116348 -8243,5515:208,-158,-50,0,0,0.121164 -8244,5515:207,-157,-50,0,0,0.127038 -8245,5515:206,-156,-50,0,0,0.121515 -8246,5515:205,-155,-50,0,0,0.118617 -8247,5515:104,-154,-50,0,0,0.116697 -8248,5515:103,-153,-50,0,0,0.110673 -8249,5515:102,-152,-50,0,0,0.0973155 -8250,5515:101,-151,-50,0,0,0.0973967 -8251,5515:100,-150,-50,0,0,0.101659 -8252,5514:209,-149,-50,0,0,0.10027 -8253,5514:208,-148,-50,0,0,0.0973786 -8254,5514:207,-147,-50,0,0,0.108121 -8255,5514:206,-146,-50,0,0,0.116063 -8256,5514:205,-145,-50,0,0,0.12134 -8257,5514:104,-144,-50,0,0,0.122351 -8258,5514:103,-143,-50,0,0,0.121285 -8259,5514:102,-142,-50,0,0,0.123336 -8260,5514:101,-141,-50,0,0,0.13196 -8261,5514:100,-140,-50,0,0,0.138949 -8262,5513:209,-139,-50,0,0,0.136146 -8263,5513:208,-138,-50,0,0,0.128964 -8264,5513:207,-137,-50,0,0,0.133938 -8265,5513:206,-136,-50,0,0,0.135038 -8266,5513:205,-135,-50,0,0,0.135422 -8267,5513:104,-134,-50,0,0,0.130461 -8268,5513:103,-133,-50,0,0,0.128251 -8269,5513:102,-132,-50,0,0,0.125767 -8270,5513:101,-131,-50,0,0,0.12553 -8272,5512:209,-129,-50,0,0,0.137481 -8273,5512:208,-128,-50,0,0,0.143851 -8274,5512:207,-127,-50,0,0,0.153965 -8275,5512:206,-126,-50,0,0,0.154353 -8276,5512:205,-125,-50,0,0,0.148 -8277,5512:104,-124,-50,0,0,0.135134 -8278,5512:103,-123,-50,0,0,0.128918 -8279,5512:102,-122,-50,0,0,0.123737 -8280,5512:101,-121,-50,0,0,0.127163 -8281,5512:100,-120,-50,0,0,0.129427 -8282,5511:209,-119,-50,0,0,0.132372 -8283,5511:208,-118,-50,0,0,0.135386 -8284,5511:207,-117,-50,0,0,0.13922 -8285,5511:206,-116,-50,0,0,0.138802 -8286,5511:205,-115,-50,0,0,0.13697 -8287,5511:104,-114,-50,0,0,0.129057 -8288,5511:103,-113,-50,0,0,0.128734 -8289,5511:102,-112,-50,0,0,0.129392 -8290,5511:101,-111,-50,0,0,0.131267 -8291,5511:100,-110,-50,0,0,0.13281 -8292,5510:209,-109,-50,0,0,0.134069 -8293,5510:208,-108,-50,0,0,0.133985 -8294,5510:207,-107,-50,0,0,0.131631 -8295,5510:206,-106,-50,0,0,0.129462 -8296,5510:205,-105,-50,0,0,0.13196 -8297,5510:104,-104,-50,0,0,0.137346 -8298,5510:103,-103,-50,0,0,0.137201 -8299,5510:102,-102,-50,0,0,0.132195 -8300,5510:101,-101,-50,0,0,0.134571 -8301,5510:100,-100,-50,0,0,0.132184 -8302,5509:209,-99,-50,0,0,0.130869 -8303,5509:208,-98,-50,0,0,0.129833 -8304,5509:207,-97,-50,0,0,0.126333 -8305,5509:206,-96,-50,0,0,0.126787 -8306,5509:205,-95,-50,0,0,0.130589 -8307,5509:104,-94,-50,0,0,0.13216 -8308,5509:103,-93,-50,0,0,0.130472 -8309,5509:102,-92,-50,0,0,0.130916 -8310,5509:101,-91,-50,0,0,0.133902 -8311,5509:100,-90,-50,0,0,0.132738 -8312,5508:209,-89,-50,0,0,0.130181 -8313,5508:208,-88,-50,0,0,0.128113 -8314,5508:207,-87,-50,0,0,0.129323 -8315,5508:206,-86,-50,0,0,0.130205 -8316,5508:205,-85,-50,0,0,0.132999 -8317,5508:104,-84,-50,0,0,0.134296 -8318,5508:103,-83,-50,0,0,0.130706 -8319,5508:102,-82,-50,0,0,0.13024 -8320,5508:101,-81,-50,0,0,0.132349 -8321,5508:100,-80,-50,0,0,0.131725 -8322,5507:209,-79,-50,0,0,0.129949 -8323,5507:208,-78,-50,0,0,0.130577 -8324,5507:207,-77,-50,0,0,0.133319 -8325,5507:206,-76,-50,0,0,0.134774 -8326,5507:205,-75,-50,0,0,0.133628 -8327,5507:104,-74,-50,0,0,0.13242 -8328,5507:103,-73,-50,0,0,0.134607 -8329,5507:102,-72,-50,0,0,0.13714 -8330,5507:101,-71,-50,0,0,0.136049 -8331,5507:100,-70,-50,0,0,0.132077 -8332,5506:209,-69,-50,0,0,0.126208 -8333,5506:208,-68,-50,0,0,0.114689 -8334,5506:207,-67,-50,0,0,0.108936 -8335,5506:206,-66,-50,0,0,0.109546 -8336,5506:205,-65,-50,0,0,0.110936 -8337,5506:104,-64,-50,0,0,0.114898 -8338,5506:103,-63,-50,0,0,0.121625 -8339,5506:102,-62,-50,0,0,0.121186 -8340,5506:101,-61,-50,0,0,0.115359 -8341,5506:100,-60,-50,0,0,0.101763 -8342,5505:209,-59,-50,0,0,0.100911 -8343,5505:208,-58,-50,0,0,0.0947997 -8344,5505:207,-57,-50,0,0,0.0942632 -8345,5505:206,-56,-50,0,0,0.0917757 -8346,5505:205,-55,-50,0,0,0.0913568 -8347,5505:104,-54,-50,0,0,0.0964076 -8348,5505:103,-53,-50,0,0,0.0952238 -8349,5505:102,-52,-50,0,0,0.0911951 -8350,5505:101,-51,-50,0,0,0.0883657 -8351,5505:100,-50,-50,0,0,0.0859705 -8352,5504:209,-49,-50,0,0,0.088631 -8353,5504:208,-48,-50,0,0,0.0954807 -8354,5504:207,-47,-50,0,0,0.0964346 -8355,5504:206,-46,-50,0,0,0.0926961 -8356,5504:205,-45,-50,0,0,0.0904316 -8357,5504:104,-44,-50,0,0,0.0886891 -8358,5504:103,-43,-50,0,0,0.0861644 -8359,5504:102,-42,-50,0,0,0.0917328 -8360,5504:101,-41,-50,0,0,0.0892303 -8361,5504:100,-40,-50,0,0,0.0904737 -8362,5503:209,-39,-50,0,0,0.0924285 -8363,5503:208,-38,-50,0,0,0.0875252 -8364,5503:207,-37,-50,0,0,0.0876565 -8365,5503:206,-36,-50,0,0,0.0876319 -8366,5503:205,-35,-50,0,0,0.0882582 -8367,5503:104,-34,-50,0,0,0.0855837 -8368,5503:103,-33,-50,0,0,0.0845044 -8369,5503:102,-32,-50,0,0,0.084775 -8370,5503:101,-31,-50,0,0,0.0850225 -8371,5503:100,-30,-50,0,0,0.0836658 -8372,5502:209,-29,-50,0,0,0.0838944 -8373,5502:208,-28,-50,0,0,0.0837052 -8374,5502:207,-27,-50,0,0,0.0825851 -8375,5502:206,-26,-50,0,0,0.0841712 -8376,5502:205,-25,-50,0,0,0.0847991 -8377,5502:104,-24,-50,0,0,0.0894058 -8378,5502:103,-23,-50,0,0,0.0913485 -8379,5502:102,-22,-50,0,0,0.0870503 -8380,5502:101,-21,-50,0,0,0.0863749 -8381,5502:100,-20,-50,0,0,0.0857205 -8382,5501:209,-19,-50,0,0,0.0850545 -8383,5501:208,-18,-50,0,0,0.0861725 -8384,5501:207,-17,-50,0,0,0.0853267 -8385,5501:206,-16,-50,0,0,0.0851507 -8386,5501:205,-15,-50,0,0,0.0838708 -8387,5501:104,-14,-50,0,0,0.0827956 -8388,5501:103,-13,-50,0,0,0.0830847 -8389,5501:102,-12,-50,0,0,0.0840287 -8390,5501:101,-11,-50,0,0,0.085624 -8391,5501:100,-10,-50,0,0,0.0846476 -8392,5500:209,-9,-50,0,0,0.0830142 -8393,5500:208,-8,-50,0,0,0.0839814 -8394,5500:207,-7,-50,0,0,0.0828423 -8395,5500:206,-6,-50,0,0,0.0827799 -8396,5500:205,-5,-50,0,0,0.0814787 -8397,5500:104,-4,-50,0,0,0.0821271 -8398,5500:103,-3,-50,0,0,0.0804012 -8399,5500:102,-2,-50,0,0,0.0813943 -8400,5500:101,-1,-50,0,0,0.0813174 -8401,3500:101,0,-50,0,0,0.0806066 -8402,3500:101,1,-50,0,0,0.0794792 -8403,3500:102,2,-50,0,0,0.0790218 -8404,3500:103,3,-50,0,0,0.0770775 -8405,3500:104,4,-50,0,0,0.0766184 -8406,3500:205,5,-50,0,0,0.0761689 -8407,3500:206,6,-50,0,0,0.0768003 -8408,3500:207,7,-50,0,0,0.0769315 -8409,3500:208,8,-50,0,0,0.0769389 -8410,3500:209,9,-50,0,0,0.0772092 -8411,3501:100,10,-50,0,0,0.0758803 -8412,3501:101,11,-50,0,0,0.0749846 -8413,3501:102,12,-50,0,0,0.0749703 -8414,3501:103,13,-50,0,0,0.0750702 -8415,3501:104,14,-50,0,0,0.0749916 -8416,3501:205,15,-50,0,0,0.0749133 -8417,3501:206,16,-50,0,0,0.0748777 -8418,3501:207,17,-50,0,0,0.0748421 -8419,3501:208,18,-50,0,0,0.0748208 -8420,3501:209,19,-50,0,0,0.0749062 -8421,3502:100,20,-50,0,0,0.075313 -8422,3502:101,21,-50,0,0,0.075765 -8423,3502:102,22,-50,0,0,0.0757002 -8424,3502:103,23,-50,0,0,0.0753847 -8425,3502:104,24,-50,0,0,0.0754849 -8426,3502:205,25,-50,0,0,0.07614 -8427,3502:206,26,-50,0,0,0.0765676 -8428,3502:207,27,-50,0,0,0.0763354 -8429,3502:208,28,-50,0,0,0.0754921 -8430,3502:209,29,-50,0,0,0.0762918 -8431,3503:100,30,-50,0,0,0.0773559 -8432,3503:101,31,-50,0,0,0.0766401 -8433,3503:102,32,-50,0,0,0.0765747 -8434,3503:103,33,-50,0,0,0.0759595 -8435,3503:104,34,-50,0,0,0.0772018 -8436,3503:205,35,-50,0,0,0.0805761 -8437,3503:206,36,-50,0,0,0.0787605 -8438,3503:207,37,-50,0,0,0.0793815 -8439,3503:208,38,-50,0,0,0.0794868 -8440,3503:209,39,-50,0,0,0.079254 -8441,3504:100,40,-50,0,0,0.0790218 -8442,3504:101,41,-50,0,0,0.0793064 -8443,3504:102,42,-50,0,0,0.0794792 -8444,3504:103,43,-50,0,0,0.0799768 -8445,3504:104,44,-50,0,0,0.0807435 -8446,3504:205,45,-50,0,0,0.0853509 -8447,3504:206,46,-50,0,0,0.083926 -8448,3504:207,47,-50,0,0,0.0803025 -8449,3504:208,48,-50,0,0,0.0791191 -8450,3504:209,49,-50,0,0,0.0800525 -8451,3505:100,50,-50,0,0,0.0812713 -8452,3505:101,51,-50,0,0,0.08181 -8453,3505:102,52,-50,0,0,0.0866185 -8454,3505:103,53,-50,0,0,0.0898584 -8455,3505:104,54,-50,0,0,0.0872546 -8456,3505:205,55,-50,0,0,0.0819491 -8457,3505:206,56,-50,0,0,0.0839183 -8458,3505:207,57,-50,0,0,0.084584 -8459,3505:208,58,-50,0,0,0.0852626 -8460,3505:209,59,-50,0,0,0.0876482 -8461,3506:100,60,-50,0,0,0.0880434 -8462,3506:101,61,-50,0,0,0.085648 -8463,3506:102,62,-50,0,0,0.0886723 -8464,3506:103,63,-50,0,0,0.0886723 -8465,3506:104,64,-50,0,0,0.0931292 -8466,3506:205,65,-50,0,0,0.0961394 -8467,3506:206,66,-50,0,0,0.0933288 -8468,3506:207,67,-50,0,0,0.0863344 -8469,3506:208,68,-50,0,0,0.0893639 -8470,3506:209,69,-50,0,0,0.0889469 -8471,3507:100,70,-50,0,0,0.0915277 -8472,3507:101,71,-50,0,0,0.0919986 -8473,3507:102,72,-50,0,0,0.0889634 -8474,3507:104,74,-50,0,0,0.0829205 -8475,3507:205,75,-50,0,0,0.0846955 -8476,3507:206,76,-50,0,0,0.0849267 -8477,3507:207,77,-50,0,0,0.0841159 -8478,3507:208,78,-50,0,0,0.0838313 -8479,3507:209,79,-50,0,0,0.0827644 -8480,3508:100,80,-50,0,0,0.0805531 -8481,3508:101,81,-50,0,0,0.0800828 -8482,3508:102,82,-50,0,0,0.079284 -8483,3508:103,83,-50,0,0,0.0777084 -8484,3508:104,84,-50,0,0,0.077224 -8485,3508:205,85,-50,0,0,0.0772385 -8486,3508:206,86,-50,0,0,0.0807971 -8487,3508:207,87,-50,0,0,0.0984222 -8488,3508:208,88,-50,0,0,0.099872 -8489,3508:209,89,-50,0,0,0.0976772 -8490,3509:100,90,-50,0,0,0.0961394 -8491,3509:101,91,-50,0,0,0.0968471 -8492,3509:102,92,-50,0,0,0.0948174 -8493,3509:103,93,-50,0,0,0.0928259 -8494,3509:104,94,-50,0,0,0.0932421 -8495,3509:205,95,-50,0,0,0.0911525 -8496,3509:206,96,-50,0,0,0.0893974 -8497,3509:207,97,-50,0,0,0.0909568 -8498,3509:208,98,-50,0,0,0.0908464 -8499,3509:209,99,-50,0,0,0.0888636 -8500,3510:100,100,-50,0,0,0.0915191 -8501,3510:101,101,-50,0,0,0.093103 -8502,3510:102,102,-50,0,0,0.0940268 -8503,3510:103,103,-50,0,0,0.0972433 -8504,3510:104,104,-50,0,0,0.0982307 -8505,3510:205,105,-50,0,0,0.0987965 -8506,3510:206,106,-50,0,0,0.100122 -8507,3510:207,107,-50,0,0,0.100094 -8508,3510:208,108,-50,0,0,0.10079 -8509,3510:209,109,-50,0,0,0.101341 -8510,3511:100,110,-50,0,0,0.101033 -8511,3511:101,111,-50,0,0,0.102791 -8512,3511:102,112,-50,0,0,0.10107 -8513,3511:103,113,-50,0,0,0.100818 -8514,3511:104,114,-50,0,0,0.105194 -8515,3511:205,115,-50,0,0,0.104788 -8516,3511:206,116,-50,0,0,0.108101 -8517,3511:207,117,-50,0,0,0.109917 -8518,3511:208,118,-50,0,0,0.109506 -8519,3511:209,119,-50,0,0,0.109877 -8520,3512:100,120,-50,0,0,0.106077 -8521,3512:101,121,-50,0,0,0.103399 -8522,3512:102,122,-50,0,0,0.104856 -8523,3512:103,123,-50,0,0,0.105921 -8524,3512:104,124,-50,0,0,0.103523 -8525,3512:205,125,-50,0,0,0.103475 -8526,3512:206,126,-50,0,0,0.107173 -8527,3512:207,127,-50,0,0,0.110279 -8528,3512:208,128,-50,0,0,0.109676 -8529,3512:209,129,-50,0,0,0.107715 -8530,3513:100,130,-50,0,0,0.107468 -8531,3513:101,131,-50,0,0,0.107745 -8532,3513:102,132,-50,0,0,0.108786 -8533,3513:103,133,-50,0,0,0.108776 -8534,3513:104,134,-50,0,0,0.107508 -8535,3513:205,135,-50,0,0,0.105252 -8536,3513:206,136,-50,0,0,0.105912 -8537,3513:207,137,-50,0,0,0.106526 -8538,3513:208,138,-50,0,0,0.107232 -8539,3513:209,139,-50,0,0,0.105001 -8540,3514:100,140,-50,0,0,0.104991 -8541,3514:101,141,-50,0,0,0.106448 -8542,3514:102,142,-50,0,0,0.108032 -8543,3514:103,143,-50,0,0,0.109085 -8544,3514:104,144,-50,0,0,0.109166 -8545,3514:205,145,-50,0,0,0.108836 -8546,3514:206,146,-50,0,0,0.10817 -8547,3514:207,147,-50,0,0,0.105775 -8548,3514:208,148,-50,0,0,0.104067 -8549,3514:209,149,-50,0,0,0.0988605 -8550,3515:100,150,-50,0,0,0.0882415 -8551,3515:101,151,-50,0,0,0.0948438 -8552,3515:102,152,-50,0,0,0.0945973 -8553,3515:103,153,-50,0,0,0.097795 -8554,3515:104,154,-50,0,0,0.118231 -8555,3515:205,155,-50,0,0,0.120401 -8556,3515:206,156,-50,0,0,0.101904 -8557,3515:207,157,-50,0,0,0.101107 -8558,3515:208,158,-50,0,0,0.107036 -8559,3515:209,159,-50,0,0,0.112015 -8560,3516:100,160,-50,0,0,0.111566 -8561,3516:101,161,-50,0,0,0.109947 -8562,3516:102,162,-50,0,0,0.12202 -8563,3516:103,163,-50,0,0,0.120053 -8564,3516:104,164,-50,0,0,0.134367 -8565,3516:205,165,-50,0,0,0.132656 -8566,3516:206,166,-50,0,0,0.13383 -8567,3516:207,167,-50,0,0,0.13149 -8568,3516:208,168,-50,0,0,0.131232 -8569,3516:209,169,-50,0,0,0.131033 -8570,3517:100,170,-50,0,0,0.130694 -8571,3517:101,171,-50,0,0,0.129612 -8572,3517:102,172,-50,0,0,0.13203 -8573,3517:103,173,-50,0,0,0.131244 -8574,3517:104,174,-50,0,0,0.130717 -8575,3517:205,175,-50,0,0,0.128665 -8576,3517:206,176,-50,0,0,0.127403 -8577,3517:207,177,-50,0,0,0.12499 -8578,3517:208,178,-50,0,0,0.125632 -8579,3517:209,179,-50,0,0,0.126981 -8580,3518:100,180,-50,0,0,0.132585 -8581,5418:390,-180,-49,0,0,0.137018 -8582,5417:499,-179,-49,0,0,0.134511 -8583,5417:498,-178,-49,0,0,0.126277 -8584,5417:497,-177,-49,0,0,0.126503 -8585,5417:496,-176,-49,0,0,0.136509 -8586,5417:495,-175,-49,0,0,0.135663 -8587,5417:394,-174,-49,0,0,0.134224 -8588,5417:393,-173,-49,0,0,0.13281 -8589,5417:392,-172,-49,0,0,0.132656 -8590,5417:391,-171,-49,0,0,0.135038 -8591,5417:390,-170,-49,0,0,0.133474 -8592,5416:499,-169,-49,0,0,0.126913 -8593,5416:498,-168,-49,0,0,0.122561 -8594,5416:497,-167,-49,0,0,0.125384 -8595,5416:496,-166,-49,0,0,0.131056 -8596,5416:495,-165,-49,0,0,0.130741 -8597,5416:394,-164,-49,0,0,0.127643 -8598,5416:393,-163,-49,0,0,0.124317 -8599,5416:392,-162,-49,0,0,0.123214 -8600,5416:391,-161,-49,0,0,0.124822 -8601,5416:390,-160,-49,0,0,0.128849 -8602,5415:499,-159,-49,0,0,0.130822 -8603,5415:498,-158,-49,0,0,0.13307 -8604,5415:497,-157,-49,0,0,0.136037 -8605,5415:496,-156,-49,0,0,0.131713 -8606,5415:495,-155,-49,0,0,0.125159 -8607,5415:394,-154,-49,0,0,0.118327 -8608,5415:393,-153,-49,0,0,0.113568 -8609,5415:392,-152,-49,0,0,0.110431 -8610,5415:391,-151,-49,0,0,0.10531 -8611,5415:390,-150,-49,0,0,0.103332 -8612,5414:499,-149,-49,0,0,0.106067 -8613,5414:498,-148,-49,0,0,0.100623 -8614,5414:497,-147,-49,0,0,0.102431 -8615,5414:496,-146,-49,0,0,0.104846 -8616,5414:495,-145,-49,0,0,0.11224 -8617,5414:394,-144,-49,0,0,0.120303 -8618,5414:393,-143,-49,0,0,0.1342 -8619,5414:392,-142,-49,0,0,0.144688 -8620,5414:391,-141,-49,0,0,0.150504 -8621,5414:390,-140,-49,0,0,0.136921 -8622,5413:499,-139,-49,0,0,0.139454 -8623,5413:498,-138,-49,0,0,0.142239 -8624,5413:497,-137,-49,0,0,0.142251 -8625,5413:496,-136,-49,0,0,0.140903 -8626,5413:495,-135,-49,0,0,0.140381 -8627,5413:394,-134,-49,0,0,0.150255 -8628,5413:393,-133,-49,0,0,0.153697 -8629,5413:392,-132,-49,0,0,0.142967 -8630,5413:391,-131,-49,0,0,0.131513 -8631,5413:390,-130,-49,0,0,0.134117 -8632,5412:499,-129,-49,0,0,0.14437 -8633,5412:498,-128,-49,0,0,0.141239 -8634,5412:497,-127,-49,0,0,0.151123 -8635,5412:496,-126,-49,0,0,0.164046 -8636,5412:495,-125,-49,0,0,0.161193 -8637,5412:394,-124,-49,0,0,0.155713 -8638,5412:393,-123,-49,0,0,0.139874 -8639,5412:392,-122,-49,0,0,0.126753 -8640,5412:391,-121,-49,0,0,0.126913 -8641,5412:390,-120,-49,0,0,0.133331 -8642,5411:499,-119,-49,0,0,0.137895 -8643,5411:498,-118,-49,0,0,0.135314 -8644,5411:497,-117,-49,0,0,0.136764 -8645,5411:496,-116,-49,0,0,0.140716 -8646,5411:495,-115,-49,0,0,0.136339 -8647,5411:394,-114,-49,0,0,0.134918 -8648,5411:393,-113,-49,0,0,0.137822 -8649,5411:392,-112,-49,0,0,0.142164 -8650,5411:391,-111,-49,0,0,0.143649 -8651,5411:390,-110,-49,0,0,0.14493 -8652,5410:499,-109,-49,0,0,0.147237 -8653,5410:498,-108,-49,0,0,0.148142 -8654,5410:497,-107,-49,0,0,0.146451 -8655,5410:496,-106,-49,0,0,0.143914 -8656,5410:495,-105,-49,0,0,0.142942 -8657,5410:394,-104,-49,0,0,0.142917 -8658,5410:393,-103,-49,0,0,0.139898 -8659,5410:392,-102,-49,0,0,0.133676 -8660,5410:391,-101,-49,0,0,0.134738 -8661,5410:390,-100,-49,0,0,0.134595 -8662,5409:499,-99,-49,0,0,0.135687 -8663,5409:498,-98,-49,0,0,0.137042 -8664,5409:497,-97,-49,0,0,0.135447 -8665,5409:496,-96,-49,0,0,0.132928 -8666,5409:495,-95,-49,0,0,0.133343 -8667,5409:394,-94,-49,0,0,0.136642 -8668,5409:393,-93,-49,0,0,0.136049 -8669,5409:392,-92,-49,0,0,0.133296 -8670,5409:391,-91,-49,0,0,0.134654 -8671,5409:390,-90,-49,0,0,0.133628 -8672,5408:499,-89,-49,0,0,0.13481 -8673,5408:498,-88,-49,0,0,0.136134 -8674,5408:497,-87,-49,0,0,0.136097 -8675,5408:496,-86,-49,0,0,0.135507 -8676,5408:495,-85,-49,0,0,0.13646 -8677,5408:394,-84,-49,0,0,0.136279 -8678,5408:393,-83,-49,0,0,0.134475 -8679,5408:392,-82,-49,0,0,0.135206 -8680,5408:391,-81,-49,0,0,0.136788 -8681,5408:390,-80,-49,0,0,0.135904 -8682,5407:499,-79,-49,0,0,0.134679 -8683,5407:498,-78,-49,0,0,0.135459 -8684,5407:497,-77,-49,0,0,0.137225 -8685,5407:496,-76,-49,0,0,0.13731 -8686,5407:495,-75,-49,0,0,0.137116 -8687,5407:394,-74,-49,0,0,0.139997 -8688,5407:393,-73,-49,0,0,0.142703 -8689,5407:392,-72,-49,0,0,0.140766 -8690,5407:391,-71,-49,0,0,0.141563 -8691,5407:390,-70,-49,0,0,0.144155 -8692,5406:499,-69,-49,0,0,0.135796 -8693,5406:498,-68,-49,0,0,0.130135 -8694,5406:497,-67,-49,0,0,0.119944 -8695,5406:496,-66,-49,0,0,0.114762 -8696,5406:495,-65,-49,0,0,0.120194 -8697,5406:394,-64,-49,0,0,0.124474 -8698,5406:393,-63,-49,0,0,0.123225 -8699,5406:392,-62,-49,0,0,0.122064 -8700,5406:391,-61,-49,0,0,0.119739 -8701,5406:390,-60,-49,0,0,0.111444 -8702,5405:499,-59,-49,0,0,0.100706 -8703,5405:498,-58,-49,0,0,0.100855 -8704,5405:497,-57,-49,0,0,0.101135 -8705,5405:496,-56,-49,0,0,0.0999736 -8706,5405:495,-55,-49,0,0,0.0958187 -8707,5405:394,-54,-49,0,0,0.101575 -8708,5405:393,-53,-49,0,0,0.106331 -8709,5405:392,-52,-49,0,0,0.0954277 -8710,5405:391,-51,-49,0,0,0.0954452 -8711,5405:390,-50,-49,0,0,0.0975231 -8712,5404:499,-49,-49,0,0,0.0948527 -8713,5404:498,-48,-49,0,0,0.0978038 -8714,5404:497,-47,-49,0,0,0.0975142 -8715,5404:496,-46,-49,0,0,0.0984311 -8716,5404:495,-45,-49,0,0,0.0937731 -8717,5404:394,-44,-49,0,0,0.0922307 -8718,5404:393,-43,-49,0,0,0.0914936 -8719,5404:392,-42,-49,0,0,0.096068 -8720,5404:391,-41,-49,0,0,0.0979854 -8721,5404:390,-40,-49,0,0,0.0961931 -8722,5403:499,-39,-49,0,0,0.0967394 -8723,5403:498,-38,-49,0,0,0.09359 -8724,5403:497,-37,-49,0,0,0.0895649 -8725,5403:496,-36,-49,0,0,0.08959 -8726,5403:495,-35,-49,0,0,0.0900941 -8727,5403:394,-34,-49,0,0,0.0878538 -8728,5403:393,-33,-49,0,0,0.0852467 -8729,5403:392,-32,-49,0,0,0.0858656 -8730,5403:391,-31,-49,0,0,0.0869769 -8731,5403:390,-30,-49,0,0,0.0853348 -8732,5402:499,-29,-49,0,0,0.0849347 -8733,5402:498,-28,-49,0,0,0.0848468 -8734,5402:497,-27,-49,0,0,0.0836658 -8735,5402:496,-26,-49,0,0,0.0851665 -8736,5402:495,-25,-49,0,0,0.0883079 -8737,5402:394,-24,-49,0,0,0.0882251 -8738,5402:393,-23,-49,0,0,0.0911099 -8739,5402:392,-22,-49,0,0,0.091596 -8740,5402:391,-21,-49,0,0,0.0902711 -8741,5402:390,-20,-49,0,0,0.0936945 -8742,5401:499,-19,-49,0,0,0.0915447 -8743,5401:498,-18,-49,0,0,0.0905836 -8744,5401:497,-17,-49,0,0,0.0923426 -8745,5401:496,-16,-49,0,0,0.0924285 -8746,5401:495,-15,-49,0,0,0.0891801 -8747,5401:394,-14,-49,0,0,0.0874924 -8748,5401:393,-13,-49,0,0,0.0891302 -8749,5401:392,-12,-49,0,0,0.0909825 -8750,5401:391,-11,-49,0,0,0.0909993 -8751,5401:390,-10,-49,0,0,0.0892887 -8752,5400:499,-9,-49,0,0,0.0891552 -8753,5400:498,-8,-49,0,0,0.0897326 -8754,5400:497,-7,-49,0,0,0.0884486 -8755,5400:496,-6,-49,0,0,0.0869525 -8756,5400:495,-5,-49,0,0,0.0855435 -8757,5400:394,-4,-49,0,0,0.0848548 -8758,5400:393,-3,-49,0,0,0.0846078 -8759,5400:392,-2,-49,0,0,0.0836893 -8760,5400:391,-1,-49,0,0,0.0829047 -8761,3400:391,0,-49,0,0,0.0828423 -8762,3400:391,1,-49,0,0,0.0825851 -8763,3400:392,2,-49,0,0,0.0818486 -8764,3400:393,3,-49,0,0,0.0809115 -8765,3400:394,4,-49,0,0,0.0803859 -8766,3400:495,5,-49,0,0,0.0802418 -8767,3400:496,6,-49,0,0,0.0800828 -8768,3400:497,7,-49,0,0,0.0795469 -8769,3400:498,8,-49,0,0,0.0786786 -8770,3400:499,9,-49,0,0,0.079224 -8771,3401:390,10,-49,0,0,0.0784183 -8772,3401:391,11,-49,0,0,0.078344 -8773,3401:392,12,-49,0,0,0.0784258 -8774,3401:393,13,-49,0,0,0.0784927 -8775,3401:394,14,-49,0,0,0.0783071 -8776,3401:495,15,-49,0,0,0.0777527 -8777,3401:496,16,-49,0,0,0.0779224 -8778,3401:497,17,-49,0,0,0.0762629 -8779,3401:498,18,-49,0,0,0.0759452 -8780,3401:499,19,-49,0,0,0.0758658 -8781,3402:390,20,-49,0,0,0.0760317 -8782,3402:391,21,-49,0,0,0.0762991 -8783,3402:392,22,-49,0,0,0.0763281 -8784,3402:393,23,-49,0,0,0.0760895 -8785,3402:394,24,-49,0,0,0.0760245 -8786,3402:495,25,-49,0,0,0.0770117 -8787,3402:496,26,-49,0,0,0.0776864 -8788,3402:497,27,-49,0,0,0.079007 -8789,3402:498,28,-49,0,0,0.0797277 -8790,3402:499,29,-49,0,0,0.0802039 -8791,3403:390,30,-49,0,0,0.079803 -8792,3403:391,31,-49,0,0,0.0790517 -8793,3403:392,32,-49,0,0,0.0784852 -8794,3403:393,33,-49,0,0,0.0777453 -8795,3403:394,34,-49,0,0,0.0786711 -8796,3403:495,35,-49,0,0,0.079788 -8797,3403:496,36,-49,0,0,0.0850706 -8798,3403:497,37,-49,0,0,0.0846238 -8799,3403:498,38,-49,0,0,0.0802265 -8800,3403:499,39,-49,0,0,0.0795921 -8801,3404:390,40,-49,0,0,0.0805227 -8802,3404:391,41,-49,0,0,0.0844091 -8803,3404:392,42,-49,0,0,0.0811948 -8804,3404:393,43,-49,0,0,0.0810875 -8805,3404:394,44,-49,0,0,0.0840447 -8806,3404:495,45,-49,0,0,0.0858897 -8807,3404:496,46,-49,0,0,0.0852147 -8808,3404:497,47,-49,0,0,0.0852868 -8809,3404:498,48,-49,0,0,0.0881261 -8810,3404:499,49,-49,0,0,0.0891801 -8811,3405:390,50,-49,0,0,0.0879033 -8812,3405:391,51,-49,0,0,0.0850386 -8813,3405:392,52,-49,0,0,0.0861565 -8814,3405:393,53,-49,0,0,0.0891302 -8815,3405:394,54,-49,0,0,0.0886891 -8816,3405:495,55,-49,0,0,0.0868057 -8817,3405:496,56,-49,0,0,0.0858252 -8818,3405:497,57,-49,0,0,0.0867893 -8819,3405:498,58,-49,0,0,0.08764 -8820,3405:499,59,-49,0,0,0.0872464 -8821,3406:390,60,-49,0,0,0.0887971 -8822,3406:391,61,-49,0,0,0.089951 -8823,3406:392,62,-49,0,0,0.0901614 -8824,3406:393,63,-49,0,0,0.09077 -8825,3406:394,64,-49,0,0,0.0939392 -8826,3406:495,65,-49,0,0,0.096964 -8827,3406:496,66,-49,0,0,0.0967394 -8828,3406:497,67,-49,0,0,0.0899341 -8829,3406:498,68,-49,0,0,0.0889217 -8830,3406:499,69,-49,0,0,0.0911525 -8831,3407:390,70,-49,0,0,0.0930596 -8832,3407:391,71,-49,0,0,0.0940792 -8833,3407:392,72,-49,0,0,0.0912291 -8834,3407:394,74,-49,0,0,0.0885976 -8835,3407:495,75,-49,0,0,0.0898584 -8836,3407:496,76,-49,0,0,0.0837682 -8837,3407:497,77,-49,0,0,0.0856802 -8838,3407:498,78,-49,0,0,0.084775 -8839,3407:499,79,-49,0,0,0.084092 -8840,3408:390,80,-49,0,0,0.0837762 -8841,3408:391,81,-49,0,0,0.0843139 -8842,3408:392,82,-49,0,0,0.0818178 -8843,3408:393,83,-49,0,0,0.0789771 -8844,3408:394,84,-49,0,0,0.0848948 -8845,3408:495,85,-49,0,0,0.0989706 -8846,3408:496,86,-49,0,0,0.102838 -8847,3408:497,87,-49,0,0,0.101566 -8848,3408:498,88,-49,0,0,0.1015 -8849,3408:499,89,-49,0,0,0.0994295 -8850,3409:390,90,-49,0,0,0.0966586 -8851,3409:391,91,-49,0,0,0.0950203 -8852,3409:392,92,-49,0,0,0.0934331 -8853,3409:393,93,-49,0,0,0.0918785 -8854,3409:394,94,-49,0,0,0.0904569 -8855,3409:495,95,-49,0,0,0.0906007 -8856,3409:496,96,-49,0,0,0.0926874 -8857,3409:497,97,-49,0,0,0.0968022 -8858,3409:498,98,-49,0,0,0.0980306 -8859,3409:499,99,-49,0,0,0.0948969 -8860,3410:390,100,-49,0,0,0.0956496 -8861,3410:391,101,-49,0,0,0.0978583 -8862,3410:392,102,-49,0,0,0.0937209 -8863,3410:393,103,-49,0,0,0.0956317 -8864,3410:394,104,-49,0,0,0.10066 -8865,3410:495,105,-49,0,0,0.101163 -8866,3410:496,106,-49,0,0,0.100298 -8867,3410:497,107,-49,0,0,0.100762 -8868,3410:498,108,-49,0,0,0.102158 -8869,3410:499,109,-49,0,0,0.103047 -8870,3411:390,110,-49,0,0,0.103209 -8871,3411:391,111,-49,0,0,0.10595 -8872,3411:392,112,-49,0,0,0.103943 -8873,3411:393,113,-49,0,0,0.100567 -8874,3411:394,114,-49,0,0,0.102753 -8875,3411:495,115,-49,0,0,0.1038 -8876,3411:496,116,-49,0,0,0.109355 -8877,3411:497,117,-49,0,0,0.109215 -8878,3411:498,118,-49,0,0,0.108896 -8879,3411:499,119,-49,0,0,0.108498 -8880,3412:390,120,-49,0,0,0.10679 -8881,3412:391,121,-49,0,0,0.109335 -8882,3412:392,122,-49,0,0,0.114992 -8883,3412:393,123,-49,0,0,0.117707 -8884,3412:394,124,-49,0,0,0.114846 -8885,3412:495,125,-49,0,0,0.113754 -8886,3412:496,126,-49,0,0,0.1147 -8887,3412:497,127,-49,0,0,0.115097 -8888,3412:498,128,-49,0,0,0.113816 -8889,3412:499,129,-49,0,0,0.112015 -8890,3413:390,130,-49,0,0,0.110098 -8891,3413:391,131,-49,0,0,0.110279 -8892,3413:392,132,-49,0,0,0.110754 -8893,3413:393,133,-49,0,0,0.11037 -8894,3413:394,134,-49,0,0,0.112373 -8895,3413:495,135,-49,0,0,0.111352 -8896,3413:496,136,-49,0,0,0.109215 -8897,3413:497,137,-49,0,0,0.108617 -8898,3413:498,138,-49,0,0,0.108398 -8899,3413:499,139,-49,0,0,0.10818 -8900,3414:390,140,-49,0,0,0.108647 -8901,3414:391,141,-49,0,0,0.111678 -8902,3414:392,142,-49,0,0,0.115191 -8903,3414:393,143,-49,0,0,0.114575 -8904,3414:394,144,-49,0,0,0.113072 -8905,3414:495,145,-49,0,0,0.112476 -8906,3414:496,146,-49,0,0,0.111038 -8907,3414:497,147,-49,0,0,0.108002 -8908,3414:498,148,-49,0,0,0.102999 -8909,3414:499,149,-49,0,0,0.0938344 -8910,3415:390,150,-49,0,0,0.0952416 -8911,3415:391,151,-49,0,0,0.100057 -8912,3415:392,152,-49,0,0,0.102205 -8913,3415:393,153,-49,0,0,0.121274 -8914,3415:394,154,-49,0,0,0.122561 -8915,3415:495,155,-49,0,0,0.121384 -8916,3415:496,156,-49,0,0,0.114169 -8917,3415:497,157,-49,0,0,0.102981 -8918,3415:498,158,-49,0,0,0.106019 -8919,3415:499,159,-49,0,0,0.119274 -8920,3416:390,160,-49,0,0,0.11909 -8921,3416:391,161,-49,0,0,0.114075 -8922,3416:392,162,-49,0,0,0.122318 -8923,3416:393,163,-49,0,0,0.124183 -8924,3416:394,164,-49,0,0,0.137651 -8925,3416:495,165,-49,0,0,0.136376 -8926,3416:496,166,-49,0,0,0.133355 -8927,3416:497,167,-49,0,0,0.132609 -8928,3416:498,168,-49,0,0,0.131901 -8929,3416:499,169,-49,0,0,0.133878 -8930,3417:390,170,-49,0,0,0.135519 -8931,3417:391,171,-49,0,0,0.134248 -8932,3417:392,172,-49,0,0,0.136885 -8933,3417:393,173,-49,0,0,0.144472 -8934,3417:394,174,-49,0,0,0.1459 -8935,3417:495,175,-49,0,0,0.146992 -8936,3417:496,176,-49,0,0,0.145287 -8937,3417:497,177,-49,0,0,0.133605 -8938,3417:498,178,-49,0,0,0.12639 -8939,3417:499,179,-49,0,0,0.127907 -8940,3418:390,180,-49,0,0,0.137018 -8941,5418:380,-180,-48,0,0,0.141015 -8942,5417:489,-179,-48,0,0,0.144015 -8943,5417:488,-178,-48,0,0,0.144943 -8944,5417:487,-177,-48,0,0,0.133355 -8945,5417:486,-176,-48,0,0,0.134403 -8946,5417:485,-175,-48,0,0,0.139948 -8947,5417:384,-174,-48,0,0,0.140654 -8948,5417:383,-173,-48,0,0,0.140729 -8949,5417:382,-172,-48,0,0,0.140592 -8950,5417:381,-171,-48,0,0,0.14249 -8951,5417:380,-170,-48,0,0,0.141776 -8952,5416:489,-169,-48,0,0,0.132502 -8953,5416:488,-168,-48,0,0,0.128343 -8954,5416:487,-167,-48,0,0,0.128665 -8955,5416:486,-166,-48,0,0,0.130216 -8956,5416:485,-165,-48,0,0,0.133296 -8957,5416:384,-164,-48,0,0,0.134595 -8958,5416:383,-163,-48,0,0,0.131396 -8959,5416:382,-162,-48,0,0,0.129589 -8960,5416:381,-161,-48,0,0,0.133807 -8961,5416:380,-160,-48,0,0,0.137993 -8962,5415:489,-159,-48,0,0,0.13731 -8963,5415:488,-158,-48,0,0,0.140542 -8964,5415:487,-157,-48,0,0,0.143219 -8965,5415:486,-156,-48,0,0,0.141963 -8966,5415:485,-155,-48,0,0,0.136279 -8967,5415:384,-154,-48,0,0,0.130822 -8968,5415:383,-153,-48,0,0,0.121515 -8969,5415:382,-152,-48,0,0,0.120162 -8970,5415:381,-151,-48,0,0,0.115842 -8971,5415:380,-150,-48,0,0,0.11038 -8972,5414:489,-149,-48,0,0,0.107183 -8973,5414:488,-148,-48,0,0,0.10683 -8974,5414:487,-147,-48,0,0,0.106048 -8975,5414:486,-146,-48,0,0,0.105649 -8976,5414:485,-145,-48,0,0,0.110795 -8977,5414:384,-144,-48,0,0,0.12377 -8978,5414:383,-143,-48,0,0,0.130636 -8979,5414:382,-142,-48,0,0,0.132243 -8980,5414:381,-141,-48,0,0,0.130904 -8981,5414:380,-140,-48,0,0,0.135026 -8982,5413:489,-139,-48,0,0,0.141388 -8983,5413:488,-138,-48,0,0,0.147095 -8984,5413:487,-137,-48,0,0,0.149117 -8985,5413:486,-136,-48,0,0,0.150124 -8986,5413:485,-135,-48,0,0,0.153177 -8987,5413:384,-134,-48,0,0,0.157559 -8988,5413:383,-133,-48,0,0,0.155861 -8989,5413:382,-132,-48,0,0,0.148259 -8990,5413:381,-131,-48,0,0,0.142414 -8991,5413:380,-130,-48,0,0,0.161554 -8992,5412:489,-129,-48,0,0,0.168692 -8993,5412:488,-128,-48,0,0,0.163259 -8994,5412:487,-127,-48,0,0,0.166927 -8995,5412:486,-126,-48,0,0,0.169355 -8996,5412:485,-125,-48,0,0,0.171126 -8997,5412:384,-124,-48,0,0,0.169182 -8998,5412:383,-123,-48,0,0,0.158406 -8999,5412:382,-122,-48,0,0,0.151321 -9000,5412:381,-121,-48,0,0,0.139997 -9001,5412:380,-120,-48,0,0,0.137225 -9002,5411:489,-119,-48,0,0,0.142439 -9003,5411:488,-118,-48,0,0,0.147948 -9004,5411:487,-117,-48,0,0,0.148557 -9005,5411:486,-116,-48,0,0,0.149052 -9006,5411:485,-115,-48,0,0,0.153952 -9007,5411:384,-114,-48,0,0,0.153724 -9008,5411:383,-113,-48,0,0,0.155146 -9009,5411:382,-112,-48,0,0,0.155942 -9010,5411:381,-111,-48,0,0,0.150543 -9011,5411:380,-110,-48,0,0,0.147805 -9012,5410:489,-109,-48,0,0,0.14567 -9013,5410:488,-108,-48,0,0,0.144688 -9014,5410:487,-107,-48,0,0,0.143762 -9015,5410:486,-106,-48,0,0,0.143661 -9016,5410:485,-105,-48,0,0,0.144764 -9017,5410:384,-104,-48,0,0,0.143509 -9018,5410:383,-103,-48,0,0,0.138777 -9019,5410:382,-102,-48,0,0,0.141289 -9020,5410:381,-101,-48,0,0,0.141551 -9021,5410:380,-100,-48,0,0,0.141401 -9022,5409:489,-99,-48,0,0,0.142151 -9023,5409:488,-98,-48,0,0,0.142264 -9024,5409:487,-97,-48,0,0,0.141438 -9025,5409:486,-96,-48,0,0,0.139417 -9026,5409:485,-95,-48,0,0,0.137456 -9027,5409:384,-94,-48,0,0,0.139195 -9028,5409:383,-93,-48,0,0,0.138177 -9029,5409:382,-92,-48,0,0,0.137554 -9030,5409:381,-91,-48,0,0,0.137444 -9031,5409:380,-90,-48,0,0,0.13617 -9032,5408:489,-89,-48,0,0,0.138544 -9033,5408:488,-88,-48,0,0,0.140903 -9034,5408:487,-87,-48,0,0,0.140406 -9035,5408:486,-86,-48,0,0,0.139626 -9036,5408:485,-85,-48,0,0,0.138666 -9037,5408:384,-84,-48,0,0,0.138042 -9038,5408:383,-83,-48,0,0,0.138262 -9039,5408:382,-82,-48,0,0,0.138544 -9040,5408:381,-81,-48,0,0,0.138986 -9041,5408:380,-80,-48,0,0,0.140295 -9042,5407:489,-79,-48,0,0,0.141538 -9043,5407:488,-78,-48,0,0,0.140965 -9044,5407:487,-77,-48,0,0,0.140357 -9045,5407:486,-76,-48,0,0,0.140381 -9046,5407:485,-75,-48,0,0,0.141401 -9047,5407:384,-74,-48,0,0,0.148064 -9048,5407:383,-73,-48,0,0,0.145798 -9049,5407:382,-72,-48,0,0,0.142013 -9050,5407:381,-71,-48,0,0,0.146195 -9051,5407:380,-70,-48,0,0,0.147005 -9052,5406:489,-69,-48,0,0,0.148791 -9053,5406:488,-68,-48,0,0,0.148103 -9054,5406:487,-67,-48,0,0,0.139318 -9055,5406:486,-66,-48,0,0,0.123081 -9056,5406:485,-65,-48,0,0,0.123715 -9057,5406:384,-64,-48,0,0,0.126481 -9058,5406:383,-63,-48,0,0,0.123103 -9059,5406:382,-62,-48,0,0,0.124586 -9060,5406:381,-61,-48,0,0,0.123281 -9061,5406:380,-60,-48,0,0,0.11837 -9062,5405:489,-59,-48,0,0,0.117867 -9063,5405:488,-58,-48,0,0,0.125046 -9064,5405:487,-57,-48,0,0,0.126765 -9065,5405:486,-56,-48,0,0,0.119728 -9066,5405:485,-55,-48,0,0,0.101201 -9067,5405:384,-54,-48,0,0,0.102554 -9068,5405:383,-53,-48,0,0,0.108846 -9069,5405:382,-52,-48,0,0,0.110088 -9070,5405:381,-51,-48,0,0,0.106214 -9071,5405:380,-50,-48,0,0,0.103028 -9072,5404:489,-49,-48,0,0,0.0985681 -9073,5404:488,-48,-48,0,0,0.0988515 -9074,5404:487,-47,-48,0,0,0.101669 -9075,5404:486,-46,-48,0,0,0.101885 -9076,5404:485,-45,-48,0,0,0.10359 -9077,5404:384,-44,-48,0,0,0.097036 -9078,5404:383,-43,-48,0,0,0.0981854 -9079,5404:382,-42,-48,0,0,0.0996321 -9080,5404:381,-41,-48,0,0,0.100075 -9081,5404:380,-40,-48,0,0,0.0961664 -9082,5403:489,-39,-48,0,0,0.0963628 -9083,5403:488,-38,-48,0,0,0.0931205 -9084,5403:487,-37,-48,0,0,0.0915788 -9085,5403:486,-36,-48,0,0,0.0916388 -9086,5403:485,-35,-48,0,0,0.0924975 -9087,5403:384,-34,-48,0,0,0.0918957 -9088,5403:383,-33,-48,0,0,0.0888636 -9089,5403:382,-32,-48,0,0,0.0877468 -9090,5403:381,-31,-48,0,0,0.0880434 -9091,5403:380,-30,-48,0,0,0.0859542 -9092,5402:489,-29,-48,0,0,0.085922 -9093,5402:488,-28,-48,0,0,0.0864319 -9094,5402:487,-27,-48,0,0,0.084823 -9095,5402:486,-26,-48,0,0,0.0871157 -9096,5402:485,-25,-48,0,0,0.0874759 -9097,5402:384,-24,-48,0,0,0.0924372 -9098,5402:383,-23,-48,0,0,0.0983766 -9099,5402:382,-22,-48,0,0,0.0947203 -9100,5402:381,-21,-48,0,0,0.0920243 -9101,5402:380,-20,-48,0,0,0.0933984 -9102,5401:489,-19,-48,0,0,0.0957741 -9103,5401:488,-18,-48,0,0,0.0952592 -9104,5401:487,-17,-48,0,0,0.0935812 -9105,5401:486,-16,-48,0,0,0.095623 -9106,5401:485,-15,-48,0,0,0.096345 -9107,5401:384,-14,-48,0,0,0.0944478 -9108,5401:383,-13,-48,0,0,0.0941842 -9109,5401:382,-12,-48,0,0,0.0958899 -9110,5401:381,-11,-48,0,0,0.0961394 -9111,5401:380,-10,-48,0,0,0.0925061 -9112,5400:489,-9,-48,0,0,0.0887722 -9113,5400:488,-8,-48,0,0,0.0894308 -9114,5400:487,-7,-48,0,0,0.0882829 -9115,5400:486,-6,-48,0,0,0.0874759 -9116,5400:485,-5,-48,0,0,0.0862049 -9117,5400:384,-4,-48,0,0,0.0857205 -9118,5400:383,-3,-48,0,0,0.0851106 -9119,5400:382,-2,-48,0,0,0.0844726 -9120,5400:381,-1,-48,0,0,0.0836028 -9121,3400:381,0,-48,0,0,0.0831786 -9122,3400:381,1,-48,0,0,0.0826084 -9123,3400:382,2,-48,0,0,0.0827799 -9124,3400:383,3,-48,0,0,0.0823673 -9125,3400:384,4,-48,0,0,0.0810186 -9126,3400:485,5,-48,0,0,0.0813481 -9127,3400:486,6,-48,0,0,0.080942 -9128,3400:487,7,-48,0,0,0.0822432 -9129,3400:488,8,-48,0,0,0.0823363 -9130,3400:489,9,-48,0,0,0.0820496 -9131,3401:380,10,-48,0,0,0.0813329 -9132,3401:381,11,-48,0,0,0.0800828 -9133,3401:382,12,-48,0,0,0.0798634 -9134,3401:383,13,-48,0,0,0.0800901 -9135,3401:384,14,-48,0,0,0.0796974 -9136,3401:485,15,-48,0,0,0.0791865 -9137,3401:486,16,-48,0,0,0.0790967 -9138,3401:487,17,-48,0,0,0.0786861 -9139,3401:488,18,-48,0,0,0.0785968 -9140,3401:489,19,-48,0,0,0.0785893 -9141,3402:380,20,-48,0,0,0.0784333 -9142,3402:381,21,-48,0,0,0.0777379 -9143,3402:382,22,-48,0,0,0.0781145 -9144,3402:383,23,-48,0,0,0.0770483 -9145,3402:384,24,-48,0,0,0.076524 -9146,3402:485,25,-48,0,0,0.0784405 -9147,3402:486,26,-48,0,0,0.0777453 -9148,3402:487,27,-48,0,0,0.0783812 -9149,3402:488,28,-48,0,0,0.0826241 -9150,3402:489,29,-48,0,0,0.0835476 -9151,3403:380,30,-48,0,0,0.0849825 -9152,3403:381,31,-48,0,0,0.0871483 -9153,3403:382,32,-48,0,0,0.0901108 -9154,3403:383,33,-48,0,0,0.0887803 -9155,3403:384,34,-48,0,0,0.0831238 -9156,3403:485,35,-48,0,0,0.0820418 -9157,3403:486,36,-48,0,0,0.0841792 -9158,3403:487,37,-48,0,0,0.087083 -9159,3403:488,38,-48,0,0,0.0856399 -9160,3403:489,39,-48,0,0,0.0872874 -9161,3404:380,40,-48,0,0,0.0879858 -9162,3404:381,41,-48,0,0,0.0853911 -9163,3404:382,42,-48,0,0,0.0861725 -9164,3404:383,43,-48,0,0,0.0875415 -9165,3404:384,44,-48,0,0,0.0870342 -9166,3404:485,45,-48,0,0,0.0867406 -9167,3404:486,46,-48,0,0,0.0865535 -9168,3404:487,47,-48,0,0,0.0874514 -9169,3404:488,48,-48,0,0,0.0887139 -9170,3404:489,49,-48,0,0,0.0911184 -9171,3405:380,50,-48,0,0,0.0903133 -9172,3405:381,51,-48,0,0,0.0893808 -9173,3405:382,52,-48,0,0,0.0890552 -9174,3405:383,53,-48,0,0,0.0951266 -9175,3405:384,54,-48,0,0,0.0874759 -9176,3405:485,55,-48,0,0,0.0876894 -9177,3405:486,56,-48,0,0,0.0891384 -9178,3405:487,57,-48,0,0,0.0922047 -9179,3405:488,58,-48,0,0,0.0939131 -9180,3405:489,59,-48,0,0,0.0936684 -9181,3406:380,60,-48,0,0,0.0911779 -9182,3406:381,61,-48,0,0,0.0920929 -9183,3406:382,62,-48,0,0,0.0941318 -9184,3406:383,63,-48,0,0,0.0924114 -9185,3406:384,64,-48,0,0,0.0936945 -9186,3406:485,65,-48,0,0,0.098998 -9187,3406:486,66,-48,0,0,0.0986227 -9188,3406:487,67,-48,0,0,0.0965957 -9189,3406:488,68,-48,0,0,0.0961037 -9190,3406:489,69,-48,0,0,0.0955961 -9191,3407:380,70,-48,0,0,0.0948438 -9192,3407:381,71,-48,0,0,0.094888 -9193,3407:382,72,-48,0,0,0.0951884 -9194,3407:384,74,-48,0,0,0.0931986 -9195,3407:485,75,-48,0,0,0.0932333 -9196,3407:486,76,-48,0,0,0.090533 -9197,3407:487,77,-48,0,0,0.0850786 -9198,3407:488,78,-48,0,0,0.0874759 -9199,3407:489,79,-48,0,0,0.086132 -9200,3408:380,80,-48,0,0,0.0853428 -9201,3408:381,81,-48,0,0,0.0848149 -9202,3408:382,82,-48,0,0,0.0883243 -9203,3408:383,83,-48,0,0,0.0895396 -9204,3408:384,84,-48,0,0,0.0949055 -9205,3408:485,85,-48,0,0,0.107518 -9206,3408:486,86,-48,0,0,0.107016 -9207,3408:487,87,-48,0,0,0.10821 -9208,3408:488,88,-48,0,0,0.107597 -9209,3408:489,89,-48,0,0,0.103819 -9210,3409:380,90,-48,0,0,0.101275 -9211,3409:381,91,-48,0,0,0.103924 -9212,3409:382,92,-48,0,0,0.10318 -9213,3409:383,93,-48,0,0,0.102092 -9214,3409:384,94,-48,0,0,0.0996783 -9215,3409:485,95,-48,0,0,0.0937995 -9216,3409:486,96,-48,0,0,0.0983038 -9217,3409:487,97,-48,0,0,0.105921 -9218,3409:488,98,-48,0,0,0.100976 -9219,3409:489,99,-48,0,0,0.0967394 -9220,3410:380,100,-48,0,0,0.102309 -9221,3410:381,101,-48,0,0,0.103972 -9222,3410:382,102,-48,0,0,0.0963093 -9223,3410:383,103,-48,0,0,0.0963628 -9224,3410:384,104,-48,0,0,0.0999645 -9225,3410:485,105,-48,0,0,0.09931 -9226,3410:486,106,-48,0,0,0.099872 -9227,3410:487,107,-48,0,0,0.10065 -9228,3410:488,108,-48,0,0,0.101042 -9229,3410:489,109,-48,0,0,0.102611 -9230,3411:380,110,-48,0,0,0.106194 -9231,3411:381,111,-48,0,0,0.110018 -9232,3411:382,112,-48,0,0,0.115705 -9233,3411:383,113,-48,0,0,0.115705 -9234,3411:384,114,-48,0,0,0.110098 -9235,3411:485,115,-48,0,0,0.106624 -9236,3411:486,116,-48,0,0,0.112046 -9237,3411:487,117,-48,0,0,0.110148 -9238,3411:488,118,-48,0,0,0.108408 -9239,3411:489,119,-48,0,0,0.108408 -10426,5412:249,-129,-44,0,0,0.18985 -9240,3412:380,120,-48,0,0,0.109646 -9241,3412:381,121,-48,0,0,0.110461 -9242,3412:382,122,-48,0,0,0.115317 -9243,3412:383,123,-48,0,0,0.11559 -9244,3412:384,124,-48,0,0,0.116528 -9245,3412:485,125,-48,0,0,0.114481 -9246,3412:486,126,-48,0,0,0.114387 -9247,3412:487,127,-48,0,0,0.114794 -9248,3412:488,128,-48,0,0,0.116464 -9249,3412:489,129,-48,0,0,0.115296 -9250,3413:380,130,-48,0,0,0.112599 -9251,3413:381,131,-48,0,0,0.112261 -9252,3413:382,132,-48,0,0,0.114481 -9253,3413:383,133,-48,0,0,0.116962 -9254,3413:384,134,-48,0,0,0.114898 -9255,3413:485,135,-48,0,0,0.113413 -9256,3413:486,136,-48,0,0,0.114752 -9257,3413:487,137,-48,0,0,0.112486 -9258,3413:488,138,-48,0,0,0.110552 -9259,3413:489,139,-48,0,0,0.11265 -9260,3414:380,140,-48,0,0,0.116454 -9261,3414:381,141,-48,0,0,0.117249 -9262,3414:382,142,-48,0,0,0.116021 -9263,3414:383,143,-48,0,0,0.117132 -9264,3414:384,144,-48,0,0,0.117696 -9265,3414:485,145,-48,0,0,0.117782 -9266,3414:486,146,-48,0,0,0.114575 -9267,3414:487,147,-48,0,0,0.109026 -9268,3414:488,148,-48,0,0,0.0994938 -9269,3414:489,149,-48,0,0,0.0951884 -9270,3415:380,150,-48,0,0,0.124608 -9271,3415:381,151,-48,0,0,0.128653 -9272,3415:382,152,-48,0,0,0.106702 -9273,3415:383,153,-48,0,0,0.117515 -9274,3415:384,154,-48,0,0,0.126583 -9275,3415:485,155,-48,0,0,0.134487 -9276,3415:486,156,-48,0,0,0.13364 -9277,3415:487,157,-48,0,0,0.117547 -9278,3415:488,158,-48,0,0,0.115705 -9279,3415:489,159,-48,0,0,0.121778 -9280,3416:380,160,-48,0,0,0.119155 -9281,3416:381,161,-48,0,0,0.121921 -9282,3416:382,162,-48,0,0,0.118263 -9283,3416:383,163,-48,0,0,0.135687 -9284,3416:384,164,-48,0,0,0.141202 -9285,3416:485,165,-48,0,0,0.142942 -9286,3416:486,166,-48,0,0,0.142967 -9287,3416:487,167,-48,0,0,0.139763 -9288,3416:488,168,-48,0,0,0.135603 -9289,3416:489,169,-48,0,0,0.13617 -9290,3417:380,170,-48,0,0,0.138519 -9291,3417:381,171,-48,0,0,0.140406 -9292,3417:382,172,-48,0,0,0.142741 -9293,3417:383,173,-48,0,0,0.144053 -9294,3417:384,174,-48,0,0,0.148596 -9295,3417:485,175,-48,0,0,0.151387 -9296,3417:486,176,-48,0,0,0.15339 -9297,3417:487,177,-48,0,0,0.151505 -9298,3417:488,178,-48,0,0,0.148116 -9299,3417:489,179,-48,0,0,0.140084 -9300,3418:380,180,-48,0,0,0.141015 -9301,5418:370,-180,-47,0,0,0.140753 -9302,5417:479,-179,-47,0,0,0.142678 -9303,5417:478,-178,-47,0,0,0.150465 -9304,5417:477,-177,-47,0,0,0.156959 -9305,5417:476,-176,-47,0,0,0.15597 -9306,5417:475,-175,-47,0,0,0.152485 -9307,5417:374,-174,-47,0,0,0.150137 -9308,5417:373,-173,-47,0,0,0.142101 -9309,5417:372,-172,-47,0,0,0.140878 -9310,5417:371,-171,-47,0,0,0.146992 -9311,5417:370,-170,-47,0,0,0.145057 -9312,5416:479,-169,-47,0,0,0.146927 -9313,5416:478,-168,-47,0,0,0.144574 -9314,5416:477,-167,-47,0,0,0.140766 -9315,5416:476,-166,-47,0,0,0.136836 -9316,5416:475,-165,-47,0,0,0.135098 -9317,5416:374,-164,-47,0,0,0.136122 -9318,5416:373,-163,-47,0,0,0.137749 -9319,5416:372,-162,-47,0,0,0.136146 -9320,5416:371,-161,-47,0,0,0.137773 -9321,5416:370,-160,-47,0,0,0.140605 -9322,5415:479,-159,-47,0,0,0.144802 -9323,5415:478,-158,-47,0,0,0.149548 -9324,5415:477,-157,-47,0,0,0.152313 -9325,5415:476,-156,-47,0,0,0.147857 -9326,5415:475,-155,-47,0,0,0.13836 -9327,5415:374,-154,-47,0,0,0.133486 -9328,5415:373,-153,-47,0,0,0.128976 -9329,5415:372,-152,-47,0,0,0.125824 -9330,5415:371,-151,-47,0,0,0.126163 -9331,5415:370,-150,-47,0,0,0.124866 -9332,5414:479,-149,-47,0,0,0.123603 -9333,5414:478,-148,-47,0,0,0.118692 -9334,5414:477,-147,-47,0,0,0.111414 -9335,5414:476,-146,-47,0,0,0.115045 -9336,5414:475,-145,-47,0,0,0.114221 -9337,5414:374,-144,-47,0,0,0.11517 -9338,5414:373,-143,-47,0,0,0.119803 -9339,5414:372,-142,-47,0,0,0.11881 -9340,5414:371,-141,-47,0,0,0.125282 -9341,5414:370,-140,-47,0,0,0.149365 -9342,5413:479,-139,-47,0,0,0.155483 -9343,5413:478,-138,-47,0,0,0.152459 -9344,5413:477,-137,-47,0,0,0.145402 -9345,5413:476,-136,-47,0,0,0.152977 -9346,5413:475,-135,-47,0,0,0.156335 -9347,5413:374,-134,-47,0,0,0.157982 -9348,5413:373,-133,-47,0,0,0.158502 -9349,5413:372,-132,-47,0,0,0.162979 -9350,5413:371,-131,-47,0,0,0.165858 -9351,5413:370,-130,-47,0,0,0.168289 -9352,5412:479,-129,-47,0,0,0.164682 -9353,5412:478,-128,-47,0,0,0.163441 -9354,5412:477,-127,-47,0,0,0.165787 -9355,5412:476,-126,-47,0,0,0.171973 -9356,5412:475,-125,-47,0,0,0.174622 -9357,5412:374,-124,-47,0,0,0.171053 -9358,5412:373,-123,-47,0,0,0.169558 -9359,5412:372,-122,-47,0,0,0.170137 -9360,5412:371,-121,-47,0,0,0.16803 -9361,5412:370,-120,-47,0,0,0.163427 -9362,5411:479,-119,-47,0,0,0.157941 -9363,5411:478,-118,-47,0,0,0.15438 -9364,5411:477,-117,-47,0,0,0.15624 -9365,5411:476,-116,-47,0,0,0.155429 -9366,5411:475,-115,-47,0,0,0.154756 -9367,5411:374,-114,-47,0,0,0.154595 -9368,5411:373,-113,-47,0,0,0.15477 -9369,5411:372,-112,-47,0,0,0.156932 -9370,5411:371,-111,-47,0,0,0.157586 -9371,5411:370,-110,-47,0,0,0.150438 -9372,5410:479,-109,-47,0,0,0.150793 -9373,5410:478,-108,-47,0,0,0.14809 -9374,5410:477,-107,-47,0,0,0.145338 -9375,5410:476,-106,-47,0,0,0.144586 -9376,5410:475,-105,-47,0,0,0.144472 -9377,5410:374,-104,-47,0,0,0.143409 -9378,5410:373,-103,-47,0,0,0.144409 -9379,5410:372,-102,-47,0,0,0.145184 -9380,5410:371,-101,-47,0,0,0.14599 -9381,5410:370,-100,-47,0,0,0.144294 -9382,5409:479,-99,-47,0,0,0.143118 -9383,5409:478,-98,-47,0,0,0.142678 -9384,5409:477,-97,-47,0,0,0.142026 -9385,5409:476,-96,-47,0,0,0.140084 -9386,5409:475,-95,-47,0,0,0.140171 -9387,5409:374,-94,-47,0,0,0.141813 -9388,5409:373,-93,-47,0,0,0.142603 -9389,5409:372,-92,-47,0,0,0.142314 -9390,5409:371,-91,-47,0,0,0.141189 -9391,5409:370,-90,-47,0,0,0.14165 -9392,5408:479,-89,-47,0,0,0.142766 -9393,5408:478,-88,-47,0,0,0.142854 -9394,5408:477,-87,-47,0,0,0.141801 -9395,5408:476,-86,-47,0,0,0.141114 -9396,5408:475,-85,-47,0,0,0.141102 -9397,5408:374,-84,-47,0,0,0.141164 -9398,5408:373,-83,-47,0,0,0.142741 -9399,5408:372,-82,-47,0,0,0.143712 -9400,5408:371,-81,-47,0,0,0.142026 -9401,5408:370,-80,-47,0,0,0.143522 -9402,5407:479,-79,-47,0,0,0.146079 -9403,5407:478,-78,-47,0,0,0.145555 -9404,5407:477,-77,-47,0,0,0.143762 -9405,5407:476,-76,-47,0,0,0.145108 -9406,5407:475,-75,-47,0,0,0.146529 -9407,5407:374,-74,-47,0,0,0.150333 -9408,5407:373,-73,-47,0,0,0.146966 -9409,5407:372,-72,-47,0,0,0.143762 -9410,5407:371,-71,-47,0,0,0.145044 -9411,5407:370,-70,-47,0,0,0.156959 -9412,5406:479,-69,-47,0,0,0.161359 -9413,5406:478,-68,-47,0,0,0.16186 -9414,5406:477,-67,-47,0,0,0.157941 -9415,5406:476,-66,-47,0,0,0.140704 -9416,5406:475,-65,-47,0,0,0.125982 -9417,5406:374,-64,-47,0,0,0.125666 -9418,5406:373,-63,-47,0,0,0.128895 -9419,5406:372,-62,-47,0,0,0.125395 -9420,5406:371,-61,-47,0,0,0.127586 -9421,5406:370,-60,-47,0,0,0.130986 -9422,5405:479,-59,-47,0,0,0.130612 -9423,5405:478,-58,-47,0,0,0.131103 -9424,5405:477,-57,-47,0,0,0.127529 -9425,5405:476,-56,-47,0,0,0.121099 -9426,5405:475,-55,-47,0,0,0.104856 -9427,5405:374,-54,-47,0,0,0.104981 -9428,5405:373,-53,-47,0,0,0.116888 -9429,5405:372,-52,-47,0,0,0.114919 -9430,5405:371,-51,-47,0,0,0.107518 -9431,5405:370,-50,-47,0,0,0.113072 -9432,5404:479,-49,-47,0,0,0.113113 -9433,5404:478,-48,-47,0,0,0.10741 -9434,5404:477,-47,-47,0,0,0.109085 -9435,5404:476,-46,-47,0,0,0.114044 -9436,5404:475,-45,-47,0,0,0.112425 -9437,5404:374,-44,-47,0,0,0.111811 -9438,5404:373,-43,-47,0,0,0.107232 -9439,5404:372,-42,-47,0,0,0.103523 -9440,5404:371,-41,-47,0,0,0.101033 -9441,5404:370,-40,-47,0,0,0.0961037 -9442,5403:479,-39,-47,0,0,0.0956585 -9443,5403:478,-38,-47,0,0,0.0922047 -9444,5403:477,-37,-47,0,0,0.0928777 -9445,5403:476,-36,-47,0,0,0.0946236 -9446,5403:475,-35,-47,0,0,0.0967304 -9447,5403:374,-34,-47,0,0,0.0973246 -9448,5403:373,-33,-47,0,0,0.0955341 -9449,5403:372,-32,-47,0,0,0.0917671 -9450,5403:371,-31,-47,0,0,0.0896401 -9451,5403:370,-30,-47,0,0,0.0881921 -9452,5402:479,-29,-47,0,0,0.0866349 -9453,5402:478,-28,-47,0,0,0.0870421 -9454,5402:477,-27,-47,0,0,0.0857367 -9455,5402:476,-26,-47,0,0,0.0867568 -9456,5402:475,-25,-47,0,0,0.0906177 -9457,5402:374,-24,-47,0,0,0.0915533 -9458,5402:373,-23,-47,0,0,0.09784 -9459,5402:372,-22,-47,0,0,0.0958899 -9460,5402:371,-21,-47,0,0,0.0944213 -9461,5402:370,-20,-47,0,0,0.0981308 -9462,5401:479,-19,-47,0,0,0.097958 -9463,5401:478,-18,-47,0,0,0.0963628 -9464,5401:477,-17,-47,0,0,0.0953922 -9465,5401:476,-16,-47,0,0,0.0965598 -9466,5401:475,-15,-47,0,0,0.0945267 -9467,5401:374,-14,-47,0,0,0.0975957 -9468,5401:373,-13,-47,0,0,0.0968203 -9469,5401:372,-12,-47,0,0,0.0980853 -9470,5401:371,-11,-47,0,0,0.0973155 -9471,5401:370,-10,-47,0,0,0.0975142 -9472,5400:479,-9,-47,0,0,0.0994481 -9473,5400:478,-8,-47,0,0,0.0992915 -9474,5400:477,-7,-47,0,0,0.0940968 -9475,5400:476,-6,-47,0,0,0.0899004 -9476,5400:475,-5,-47,0,0,0.0926961 -9477,5400:374,-4,-47,0,0,0.0871483 -9478,5400:373,-3,-47,0,0,0.0850706 -9479,5400:372,-2,-47,0,0,0.0846955 -9480,5400:371,-1,-47,0,0,0.0841872 -9481,3400:371,0,-47,0,0,0.0837131 -9482,3400:371,1,-47,0,0,0.0830925 -9483,3400:372,2,-47,0,0,0.0833432 -9484,3400:373,3,-47,0,0,0.0837208 -9485,3400:374,4,-47,0,0,0.0839576 -9486,3400:475,5,-47,0,0,0.0834453 -9487,3400:476,6,-47,0,0,0.0824373 -9488,3400:477,7,-47,0,0,0.0824997 -9489,3400:478,8,-47,0,0,0.0838233 -9490,3400:479,9,-47,0,0,0.0839735 -9491,3401:370,10,-47,0,0,0.0838865 -9492,3401:371,11,-47,0,0,0.0830534 -9493,3401:372,12,-47,0,0,0.0820883 -9494,3401:373,13,-47,0,0,0.0815402 -9495,3401:374,14,-47,0,0,0.0813481 -9496,3401:475,15,-47,0,0,0.0803708 -9497,3401:476,16,-47,0,0,0.0803328 -9498,3401:477,17,-47,0,0,0.0798484 -9499,3401:478,18,-47,0,0,0.0802645 -9500,3401:479,19,-47,0,0,0.0800751 -9501,3402:370,20,-47,0,0,0.0828735 -9502,3402:371,21,-47,0,0,0.0846955 -9503,3402:372,22,-47,0,0,0.0804696 -9504,3402:373,23,-47,0,0,0.0789844 -9505,3402:374,24,-47,0,0,0.0783144 -9506,3402:475,25,-47,0,0,0.0792915 -9507,3402:476,26,-47,0,0,0.0849028 -9508,3402:477,27,-47,0,0,0.0836737 -9509,3402:478,28,-47,0,0,0.0877634 -9510,3402:479,29,-47,0,0,0.0848149 -9511,3403:370,30,-47,0,0,0.0872219 -9512,3403:371,31,-47,0,0,0.0881838 -9513,3403:372,32,-47,0,0,0.0912717 -9514,3403:373,33,-47,0,0,0.0912717 -9515,3403:374,34,-47,0,0,0.0904737 -9516,3403:475,35,-47,0,0,0.0900519 -9517,3403:476,36,-47,0,0,0.0862696 -9518,3403:477,37,-47,0,0,0.091212 -9519,3403:478,38,-47,0,0,0.0901866 -9520,3403:479,39,-47,0,0,0.0912632 -9521,3404:370,40,-47,0,0,0.0938168 -9522,3404:371,41,-47,0,0,0.0902881 -9523,3404:372,42,-47,0,0,0.0918785 -9524,3404:373,43,-47,0,0,0.0910587 -9525,3404:374,44,-47,0,0,0.0913485 -9526,3404:475,45,-47,0,0,0.0927826 -9527,3404:476,46,-47,0,0,0.0896151 -9528,3404:477,47,-47,0,0,0.0881507 -9529,3404:478,48,-47,0,0,0.0906769 -9530,3404:479,49,-47,0,0,0.0913058 -9531,3405:370,50,-47,0,0,0.0906345 -9532,3405:371,51,-47,0,0,0.0897912 -9533,3405:372,52,-47,0,0,0.0900183 -9534,3405:373,53,-47,0,0,0.0945618 -9535,3405:374,54,-47,0,0,0.0967663 -9536,3405:475,55,-47,0,0,0.0914594 -9537,3405:476,56,-47,0,0,0.0893889 -9538,3405:477,57,-47,0,0,0.0963718 -9539,3405:478,58,-47,0,0,0.0941056 -9540,3405:479,59,-47,0,0,0.0939392 -9541,3406:370,60,-47,0,0,0.0948791 -9542,3406:371,61,-47,0,0,0.0966228 -9543,3406:372,62,-47,0,0,0.0989063 -9544,3406:373,63,-47,0,0,0.0958007 -9545,3406:374,64,-47,0,0,0.0970629 -9546,3406:475,65,-47,0,0,0.101734 -9547,3406:476,66,-47,0,0,0.0994848 -9548,3406:477,67,-47,0,0,0.096345 -9549,3406:478,68,-47,0,0,0.0970178 -9550,3406:479,69,-47,0,0,0.0970901 -9551,3407:370,70,-47,0,0,0.097958 -9552,3407:371,71,-47,0,0,0.0969009 -9553,3407:372,72,-47,0,0,0.0958273 -9554,3407:374,74,-47,0,0,0.0941142 -9555,3407:475,75,-47,0,0,0.0928777 -9556,3407:476,76,-47,0,0,0.0919813 -9557,3407:477,77,-47,0,0,0.086213 -9558,3407:478,78,-47,0,0,0.0856078 -9559,3407:479,79,-47,0,0,0.0877388 -9560,3408:370,80,-47,0,0,0.0882498 -9561,3408:371,81,-47,0,0,0.0952502 -9562,3408:372,82,-47,0,0,0.10136 -9563,3408:373,83,-47,0,0,0.105049 -9564,3408:374,84,-47,0,0,0.1056 -9565,3408:475,85,-47,0,0,0.106233 -9566,3408:476,86,-47,0,0,0.105834 -9567,3408:477,87,-47,0,0,0.106448 -9568,3408:478,88,-47,0,0,0.109305 -9569,3408:479,89,-47,0,0,0.10825 -9570,3409:370,90,-47,0,0,0.103275 -9571,3409:371,91,-47,0,0,0.102007 -9572,3409:372,92,-47,0,0,0.101697 -9573,3409:373,93,-47,0,0,0.101716 -9574,3409:374,94,-47,0,0,0.101491 -9575,3409:475,95,-47,0,0,0.109907 -9576,3409:476,96,-47,0,0,0.11225 -9577,3409:477,97,-47,0,0,0.110957 -9578,3409:478,98,-47,0,0,0.106067 -9579,3409:479,99,-47,0,0,0.107026 -9580,3410:370,100,-47,0,0,0.106262 -9581,3410:371,101,-47,0,0,0.102848 -9582,3410:372,102,-47,0,0,0.0954986 -9583,3410:373,103,-47,0,0,0.0957918 -9584,3410:374,104,-47,0,0,0.0975866 -9585,3410:475,105,-47,0,0,0.0970901 -9586,3410:476,106,-47,0,0,0.102111 -9587,3410:477,107,-47,0,0,0.104307 -9588,3410:478,108,-47,0,0,0.103676 -9589,3410:479,109,-47,0,0,0.104039 -9590,3411:370,110,-47,0,0,0.104115 -9591,3411:371,111,-47,0,0,0.112219 -9592,3411:372,112,-47,0,0,0.115369 -9593,3411:373,113,-47,0,0,0.123848 -9594,3411:374,114,-47,0,0,0.114585 -9595,3411:475,115,-47,0,0,0.114815 -9596,3411:476,116,-47,0,0,0.115516 -9597,3411:477,117,-47,0,0,0.111617 -9598,3411:478,118,-47,0,0,0.11121 -9599,3411:479,119,-47,0,0,0.111495 -9600,3412:370,120,-47,0,0,0.111995 -9601,3412:371,121,-47,0,0,0.110926 -9602,3412:372,122,-47,0,0,0.113598 -9603,3412:373,123,-47,0,0,0.114065 -9604,3412:374,124,-47,0,0,0.113692 -9605,3412:475,125,-47,0,0,0.117728 -9606,3412:476,126,-47,0,0,0.117654 -9607,3412:477,127,-47,0,0,0.116095 -9608,3412:478,128,-47,0,0,0.11909 -9609,3412:479,129,-47,0,0,0.123871 -9610,3413:370,130,-47,0,0,0.121757 -9611,3413:371,131,-47,0,0,0.118177 -9612,3413:372,132,-47,0,0,0.11639 -9613,3413:373,133,-47,0,0,0.117792 -9614,3413:374,134,-47,0,0,0.118552 -9615,3413:475,135,-47,0,0,0.119392 -9616,3413:476,136,-47,0,0,0.121647 -9617,3413:477,137,-47,0,0,0.118671 -9618,3413:478,138,-47,0,0,0.114585 -9619,3413:479,139,-47,0,0,0.117005 -9620,3414:370,140,-47,0,0,0.128492 -9621,3414:371,141,-47,0,0,0.133248 -9622,3414:372,142,-47,0,0,0.129531 -9623,3414:373,143,-47,0,0,0.124351 -9624,3414:374,144,-47,0,0,0.119058 -9625,3414:475,145,-47,0,0,0.117005 -9626,3414:476,146,-47,0,0,0.114335 -9627,3414:477,147,-47,0,0,0.108071 -9628,3414:478,148,-47,0,0,0.0977676 -9629,3414:479,149,-47,0,0,0.096345 -9630,3415:370,150,-47,0,0,0.12908 -9631,3415:371,151,-47,0,0,0.123871 -9632,3415:372,152,-47,0,0,0.112774 -9633,3415:373,153,-47,0,0,0.116285 -9634,3415:374,154,-47,0,0,0.126084 -9635,3415:475,155,-47,0,0,0.127517 -9636,3415:476,156,-47,0,0,0.140233 -9637,3415:477,157,-47,0,0,0.138568 -9638,3415:478,158,-47,0,0,0.140047 -9639,3415:479,159,-47,0,0,0.130659 -9640,3416:370,160,-47,0,0,0.125091 -9641,3416:371,161,-47,0,0,0.129647 -9642,3416:372,162,-47,0,0,0.135591 -9643,3416:373,163,-47,0,0,0.139973 -9644,3416:374,164,-47,0,0,0.144726 -9645,3416:475,165,-47,0,0,0.142653 -9646,3416:476,166,-47,0,0,0.147211 -9647,3416:477,167,-47,0,0,0.149052 -9648,3416:478,168,-47,0,0,0.148038 -9649,3416:479,169,-47,0,0,0.147663 -9650,3417:370,170,-47,0,0,0.145402 -9651,3417:371,171,-47,0,0,0.142553 -9652,3417:372,172,-47,0,0,0.1459 -9653,3417:373,173,-47,0,0,0.147327 -9654,3417:374,174,-47,0,0,0.151057 -9655,3417:475,175,-47,0,0,0.155821 -9656,3417:476,176,-47,0,0,0.159257 -9657,3417:477,177,-47,0,0,0.155983 -9658,3417:478,178,-47,0,0,0.147637 -9659,3417:479,179,-47,0,0,0.144028 -9660,3418:370,180,-47,0,0,0.140753 -9661,5418:360,-180,-46,0,0,0.16717 -9662,5417:469,-179,-46,0,0,0.165815 -9663,5417:468,-178,-46,0,0,0.163962 -9664,5417:467,-177,-46,0,0,0.163498 -9665,5417:466,-176,-46,0,0,0.161847 -9666,5417:465,-175,-46,0,0,0.161512 -9667,5417:364,-174,-46,0,0,0.163498 -9668,5417:363,-173,-46,0,0,0.159629 -9669,5417:362,-172,-46,0,0,0.152911 -9670,5417:361,-171,-46,0,0,0.15327 -9671,5417:360,-170,-46,0,0,0.155416 -9672,5416:469,-169,-46,0,0,0.152392 -9673,5416:468,-168,-46,0,0,0.150425 -9674,5416:467,-167,-46,0,0,0.151823 -9675,5416:466,-166,-46,0,0,0.147069 -9676,5416:465,-165,-46,0,0,0.152286 -9677,5416:364,-164,-46,0,0,0.154461 -9678,5416:363,-163,-46,0,0,0.155321 -9679,5416:362,-162,-46,0,0,0.152286 -9680,5416:361,-161,-46,0,0,0.146233 -9681,5416:360,-160,-46,0,0,0.14507 -9682,5415:469,-159,-46,0,0,0.152924 -9683,5415:468,-158,-46,0,0,0.158255 -9684,5415:467,-157,-46,0,0,0.162335 -9685,5415:466,-156,-46,0,0,0.155699 -9686,5415:465,-155,-46,0,0,0.149691 -9687,5415:364,-154,-46,0,0,0.152366 -9688,5415:363,-153,-46,0,0,0.151413 -9689,5415:362,-152,-46,0,0,0.141376 -9690,5415:361,-151,-46,0,0,0.150517 -9691,5415:360,-150,-46,0,0,0.166057 -9692,5414:469,-149,-46,0,0,0.160319 -9693,5414:468,-148,-46,0,0,0.151307 -9694,5414:467,-147,-46,0,0,0.12656 -9695,5414:466,-146,-46,0,0,0.138372 -9696,5414:465,-145,-46,0,0,0.160236 -9697,5414:364,-144,-46,0,0,0.162433 -9698,5414:363,-143,-46,0,0,0.176213 -9699,5414:362,-142,-46,0,0,0.175929 -9700,5414:361,-141,-46,0,0,0.15923 -9701,5414:360,-140,-46,0,0,0.160832 -9702,5413:469,-139,-46,0,0,0.165177 -9703,5413:468,-138,-46,0,0,0.160776 -9704,5413:467,-137,-46,0,0,0.154917 -9705,5413:466,-136,-46,0,0,0.14857 -9706,5413:465,-135,-46,0,0,0.148908 -9707,5413:364,-134,-46,0,0,0.153871 -9708,5413:363,-133,-46,0,0,0.154998 -9709,5413:362,-132,-46,0,0,0.156756 -9710,5413:361,-131,-46,0,0,0.1719 -9711,5413:360,-130,-46,0,0,0.187491 -9712,5412:469,-129,-46,0,0,0.183363 -9713,5412:468,-128,-46,0,0,0.180428 -9714,5412:467,-127,-46,0,0,0.180565 -9715,5412:466,-126,-46,0,0,0.177979 -9716,5412:465,-125,-46,0,0,0.17483 -9717,5412:364,-124,-46,0,0,0.173088 -9718,5412:363,-123,-46,0,0,0.16911 -9719,5412:362,-122,-46,0,0,0.16911 -9720,5412:361,-121,-46,0,0,0.170457 -9721,5412:360,-120,-46,0,0,0.16862 -9722,5411:469,-119,-46,0,0,0.163807 -9723,5411:468,-118,-46,0,0,0.160624 -9724,5411:467,-117,-46,0,0,0.163427 -9725,5411:466,-116,-46,0,0,0.162923 -9726,5411:465,-115,-46,0,0,0.157504 -9727,5411:364,-114,-46,0,0,0.156484 -9728,5411:363,-113,-46,0,0,0.159587 -9729,5411:362,-112,-46,0,0,0.161387 -9730,5411:361,-111,-46,0,0,0.157368 -9731,5411:360,-110,-46,0,0,0.15347 -9732,5410:469,-109,-46,0,0,0.152977 -9733,5410:468,-108,-46,0,0,0.150688 -9734,5410:467,-107,-46,0,0,0.148727 -9735,5410:466,-106,-46,0,0,0.147146 -9736,5410:465,-105,-46,0,0,0.146992 -9737,5410:364,-104,-46,0,0,0.147624 -9738,5410:363,-103,-46,0,0,0.148311 -9739,5410:362,-102,-46,0,0,0.148804 -9740,5410:361,-101,-46,0,0,0.148376 -9741,5410:360,-100,-46,0,0,0.147133 -9742,5409:469,-99,-46,0,0,0.144955 -9743,5409:468,-98,-46,0,0,0.145287 -9744,5409:467,-97,-46,0,0,0.146131 -9745,5409:466,-96,-46,0,0,0.144396 -9746,5409:465,-95,-46,0,0,0.144612 -9747,5409:364,-94,-46,0,0,0.148077 -9748,5409:363,-93,-46,0,0,0.146966 -9749,5409:362,-92,-46,0,0,0.145312 -9750,5409:361,-91,-46,0,0,0.145389 -9751,5409:360,-90,-46,0,0,0.146221 -9752,5408:469,-89,-46,0,0,0.145555 -9753,5408:468,-88,-46,0,0,0.146593 -9754,5408:467,-87,-46,0,0,0.146464 -9755,5408:466,-86,-46,0,0,0.145746 -9756,5408:465,-85,-46,0,0,0.146015 -9757,5408:364,-84,-46,0,0,0.145402 -9758,5408:363,-83,-46,0,0,0.146426 -9759,5408:362,-82,-46,0,0,0.146979 -9760,5408:361,-81,-46,0,0,0.144828 -9761,5408:360,-80,-46,0,0,0.145414 -9762,5407:469,-79,-46,0,0,0.148103 -9763,5407:468,-78,-46,0,0,0.153097 -9764,5407:467,-77,-46,0,0,0.14796 -9765,5407:466,-76,-46,0,0,0.14822 -9766,5407:465,-75,-46,0,0,0.154662 -9767,5407:364,-74,-46,0,0,0.155807 -9768,5407:363,-73,-46,0,0,0.154193 -9769,5407:362,-72,-46,0,0,0.157668 -9770,5407:361,-71,-46,0,0,0.163765 -9771,5407:360,-70,-46,0,0,0.171973 -9772,5406:468,-68,-46,0,0,0.176198 -9773,5406:467,-67,-46,0,0,0.176093 -9774,5406:466,-66,-46,0,0,0.154541 -9775,5406:465,-65,-46,0,0,0.143876 -9776,5406:364,-64,-46,0,0,0.137359 -9777,5406:363,-63,-46,0,0,0.133094 -9778,5406:362,-62,-46,0,0,0.131419 -9779,5406:361,-61,-46,0,0,0.132869 -9780,5406:360,-60,-46,0,0,0.134595 -9781,5405:469,-59,-46,0,0,0.134702 -9782,5405:468,-58,-46,0,0,0.136013 -9783,5405:467,-57,-46,0,0,0.137395 -9784,5405:466,-56,-46,0,0,0.13617 -9785,5405:465,-55,-46,0,0,0.132325 -9786,5405:364,-54,-46,0,0,0.123581 -9787,5405:363,-53,-46,0,0,0.126481 -9788,5405:362,-52,-46,0,0,0.112445 -9789,5405:361,-51,-46,0,0,0.114836 -9790,5405:360,-50,-46,0,0,0.114658 -9791,5404:469,-49,-46,0,0,0.111434 -9792,5404:468,-48,-46,0,0,0.108986 -9793,5404:467,-47,-46,0,0,0.116116 -9794,5404:466,-46,-46,0,0,0.114366 -9795,5404:465,-45,-46,0,0,0.111048 -9796,5404:364,-44,-46,0,0,0.11035 -9797,5404:363,-43,-46,0,0,0.109435 -9798,5404:362,-42,-46,0,0,0.108667 -9799,5404:361,-41,-46,0,0,0.1038 -9800,5404:360,-40,-46,0,0,0.0988789 -9801,5403:469,-39,-46,0,0,0.094694 -9802,5403:468,-38,-46,0,0,0.0965869 -9803,5403:467,-37,-46,0,0,0.102299 -9804,5403:466,-36,-46,0,0,0.103428 -9805,5403:465,-35,-46,0,0,0.102309 -9806,5403:364,-34,-46,0,0,0.100335 -9807,5403:363,-33,-46,0,0,0.0946763 -9808,5403:362,-32,-46,0,0,0.0932593 -9809,5403:361,-31,-46,0,0,0.0918614 -9810,5403:360,-30,-46,0,0,0.0907279 -9811,5402:469,-29,-46,0,0,0.088606 -9812,5402:468,-28,-46,0,0,0.0876728 -9813,5402:467,-27,-46,0,0,0.0886143 -9814,5402:466,-26,-46,0,0,0.0957117 -9815,5402:465,-25,-46,0,0,0.100344 -9816,5402:364,-24,-46,0,0,0.0997796 -9817,5402:363,-23,-46,0,0,0.0989429 -9818,5402:362,-22,-46,0,0,0.0968112 -9819,5402:361,-21,-46,0,0,0.09718 -9820,5402:360,-20,-46,0,0,0.0996597 -9821,5401:469,-19,-46,0,0,0.101612 -9822,5401:468,-18,-46,0,0,0.103161 -9823,5401:467,-17,-46,0,0,0.102819 -9824,5401:466,-16,-46,0,0,0.104586 -9825,5401:465,-15,-46,0,0,0.100827 -9826,5401:364,-14,-46,0,0,0.100827 -9827,5401:363,-13,-46,0,0,0.103209 -9828,5401:362,-12,-46,0,0,0.102441 -9829,5401:361,-11,-46,0,0,0.100446 -9830,5401:360,-10,-46,0,0,0.103905 -9831,5400:469,-9,-46,0,0,0.106487 -9832,5400:468,-8,-46,0,0,0.103104 -9833,5400:467,-7,-46,0,0,0.0957828 -9834,5400:466,-6,-46,0,0,0.0961664 -9835,5400:465,-5,-46,0,0,0.0993285 -9836,5400:364,-4,-46,0,0,0.0965062 -9837,5400:363,-3,-46,0,0,0.0940092 -9838,5400:362,-2,-46,0,0,0.0922821 -9839,5400:361,-1,-46,0,0,0.0915361 -9840,3400:361,0,-46,0,0,0.0894224 -9841,3400:361,1,-46,0,0,0.0850625 -9842,3400:362,2,-46,0,0,0.0847354 -9843,3400:363,3,-46,0,0,0.0876728 -9844,3400:364,4,-46,0,0,0.0872137 -9845,3400:465,5,-46,0,0,0.0853428 -9846,3400:466,6,-46,0,0,0.0845522 -9847,3400:467,7,-46,0,0,0.0840447 -9848,3400:468,8,-46,0,0,0.0836893 -9849,3400:469,9,-46,0,0,0.0829908 -9850,3401:360,10,-46,0,0,0.0831238 -9851,3401:361,11,-46,0,0,0.0837288 -9852,3401:362,12,-46,0,0,0.0828814 -9853,3401:363,13,-46,0,0,0.0825151 -9854,3401:364,14,-46,0,0,0.0820727 -9855,3401:465,15,-46,0,0,0.0819491 -9856,3401:466,16,-46,0,0,0.0823209 -9857,3401:467,17,-46,0,0,0.0838549 -9858,3401:468,18,-46,0,0,0.0849667 -9859,3401:469,19,-46,0,0,0.0855678 -9860,3402:360,20,-46,0,0,0.0858093 -9861,3402:361,21,-46,0,0,0.0856883 -9862,3402:362,22,-46,0,0,0.0834926 -9863,3402:363,23,-46,0,0,0.0829283 -9864,3402:364,24,-46,0,0,0.0834453 -9865,3402:465,25,-46,0,0,0.0871892 -9866,3402:466,26,-46,0,0,0.0888387 -9867,3402:467,27,-46,0,0,0.0887306 -9868,3402:468,28,-46,0,0,0.0872794 -9869,3402:469,29,-46,0,0,0.0843616 -9870,3403:360,30,-46,0,0,0.0857527 -9871,3403:361,31,-46,0,0,0.0882168 -9872,3403:362,32,-46,0,0,0.0884567 -9873,3403:363,33,-46,0,0,0.0907618 -9874,3403:364,34,-46,0,0,0.0913058 -9875,3403:465,35,-46,0,0,0.0932593 -9876,3403:466,36,-46,0,0,0.0876728 -9877,3403:467,37,-46,0,0,0.0916472 -9878,3403:468,38,-46,0,0,0.0962378 -9879,3403:469,39,-46,0,0,0.0952416 -9880,3404:360,40,-46,0,0,0.0957652 -9881,3404:361,41,-46,0,0,0.0946325 -9882,3404:362,42,-46,0,0,0.0932593 -9883,3404:363,43,-46,0,0,0.0938517 -9884,3404:364,44,-46,0,0,0.0941407 -9885,3404:465,45,-46,0,0,0.0942546 -11940,5402:103,-23,-40,0,0,0.14048 -9886,3404:466,46,-46,0,0,0.0934594 -9887,3404:467,47,-46,0,0,0.092489 -9888,3404:468,48,-46,0,0,0.0924975 -9889,3404:469,49,-46,0,0,0.0926357 -9890,3405:360,50,-46,0,0,0.0938256 -9891,3405:361,51,-46,0,0,0.0945884 -9892,3405:362,52,-46,0,0,0.0947203 -9893,3405:363,53,-46,0,0,0.0966854 -9894,3405:364,54,-46,0,0,0.099669 -9895,3405:465,55,-46,0,0,0.0957206 -9896,3405:466,56,-46,0,0,0.0959967 -9897,3405:467,57,-46,0,0,0.0987965 -9898,3405:468,58,-46,0,0,0.0982763 -9899,3405:469,59,-46,0,0,0.0951088 -9900,3406:360,60,-46,0,0,0.0953389 -9901,3406:361,61,-46,0,0,0.0961931 -9902,3406:362,62,-46,0,0,0.0970178 -9903,3406:363,63,-46,0,0,0.100697 -9904,3406:364,64,-46,0,0,0.102696 -9905,3406:465,65,-46,0,0,0.102791 -9906,3406:466,66,-46,0,0,0.101622 -9907,3406:467,67,-46,0,0,0.101697 -9908,3406:468,68,-46,0,0,0.102819 -9909,3406:469,69,-46,0,0,0.102649 -9910,3407:360,70,-46,0,0,0.101491 -9911,3407:361,71,-46,0,0,0.0997613 -9912,3407:362,72,-46,0,0,0.0990346 -9913,3407:364,74,-46,0,0,0.0988331 -9914,3407:465,75,-46,0,0,0.0979763 -9915,3407:466,76,-46,0,0,0.0978763 -9916,3407:467,77,-46,0,0,0.0971712 -9917,3407:468,78,-46,0,0,0.0940354 -9918,3407:469,79,-46,0,0,0.0864886 -9919,3408:360,80,-46,0,0,0.091425 -9920,3408:361,81,-46,0,0,0.094123 -9921,3408:362,82,-46,0,0,0.101378 -9922,3408:363,83,-46,0,0,0.0988697 -9923,3408:364,84,-46,0,0,0.0974329 -9924,3408:465,85,-46,0,0,0.111068 -9925,3408:466,86,-46,0,0,0.110138 -9926,3408:467,87,-46,0,0,0.107774 -9927,3408:468,88,-46,0,0,0.110007 -9928,3408:469,89,-46,0,0,0.111862 -9929,3409:360,90,-46,0,0,0.109275 -9930,3409:361,91,-46,0,0,0.108398 -9931,3409:362,92,-46,0,0,0.109857 -9932,3409:363,93,-46,0,0,0.115674 -9933,3409:364,94,-46,0,0,0.109375 -9934,3409:465,95,-46,0,0,0.107695 -9935,3409:466,96,-46,0,0,0.112199 -9936,3409:467,97,-46,0,0,0.111302 -9937,3409:468,98,-46,0,0,0.110038 -9938,3409:469,99,-46,0,0,0.107163 -9939,3410:360,100,-46,0,0,0.101612 -9940,3410:361,101,-46,0,0,0.101088 -9941,3410:362,102,-46,0,0,0.0992365 -9942,3410:363,103,-46,0,0,0.0978946 -9943,3410:364,104,-46,0,0,0.0960144 -9944,3410:465,105,-46,0,0,0.100474 -9945,3410:466,106,-46,0,0,0.106741 -9946,3410:467,107,-46,0,0,0.108896 -9947,3410:468,108,-46,0,0,0.106732 -9948,3410:469,109,-46,0,0,0.104962 -9949,3411:360,110,-46,0,0,0.106048 -9950,3411:361,111,-46,0,0,0.111119 -9951,3411:362,112,-46,0,0,0.111648 -9952,3411:363,113,-46,0,0,0.117068 -9953,3411:364,114,-46,0,0,0.123503 -9954,3411:465,115,-46,0,0,0.118167 -9955,3411:466,116,-46,0,0,0.116158 -9956,3411:467,117,-46,0,0,0.117377 -9957,3411:468,118,-46,0,0,0.118649 -9958,3411:469,119,-46,0,0,0.117079 -9959,3412:360,120,-46,0,0,0.119923 -9960,3412:361,121,-46,0,0,0.116941 -9961,3412:362,122,-46,0,0,0.111444 -9962,3412:363,123,-46,0,0,0.111831 -9963,3412:364,124,-46,0,0,0.117185 -9964,3412:465,125,-46,0,0,0.117963 -9965,3412:466,126,-46,0,0,0.120205 -9966,3412:467,127,-46,0,0,0.123882 -9967,3412:468,128,-46,0,0,0.127494 -9968,3412:469,129,-46,0,0,0.128113 -9969,3413:360,130,-46,0,0,0.128067 -9970,3413:361,131,-46,0,0,0.125722 -9971,3413:362,132,-46,0,0,0.120728 -9972,3413:363,133,-46,0,0,0.121746 -9973,3413:364,134,-46,0,0,0.123926 -9974,3413:465,135,-46,0,0,0.123459 -9975,3413:466,136,-46,0,0,0.122738 -9976,3413:467,137,-46,0,0,0.124597 -9977,3413:468,138,-46,0,0,0.122473 -9978,3413:469,139,-46,0,0,0.125316 -9979,3414:360,140,-46,0,0,0.136812 -9980,3414:361,141,-46,0,0,0.13523 -9981,3414:362,142,-46,0,0,0.131701 -9982,3414:363,143,-46,0,0,0.128147 -9983,3414:364,144,-46,0,0,0.118467 -9984,3414:465,145,-46,0,0,0.113661 -9985,3414:466,146,-46,0,0,0.111515 -9986,3414:467,147,-46,0,0,0.107626 -9987,3414:468,148,-46,0,0,0.118467 -9988,3414:469,149,-46,0,0,0.14977 -9989,3415:360,150,-46,0,0,0.150531 -9990,3415:361,151,-46,0,0,0.13176 -9991,3415:362,152,-46,0,0,0.136013 -9992,3415:363,153,-46,0,0,0.152339 -9993,3415:364,154,-46,0,0,0.151452 -9994,3415:465,155,-46,0,0,0.14599 -9995,3415:466,156,-46,0,0,0.154487 -9996,3415:467,157,-46,0,0,0.147379 -9997,3415:468,158,-46,0,0,0.144675 -9998,3415:469,159,-46,0,0,0.145606 -9999,3416:360,160,-46,0,0,0.126742 -10000,3416:361,161,-46,0,0,0.146015 -10001,3416:362,162,-46,0,0,0.161874 -10002,3416:363,163,-46,0,0,0.151479 -10003,3416:364,164,-46,0,0,0.142917 -10004,3416:465,165,-46,0,0,0.152379 -10005,3416:466,166,-46,0,0,0.173662 -10006,3416:467,167,-46,0,0,0.180109 -10007,3416:468,168,-46,0,0,0.179533 -10008,3416:469,169,-46,0,0,0.17443 -10009,3417:360,170,-46,0,0,0.160084 -10010,3417:361,171,-46,0,0,0.150964 -10011,3417:362,172,-46,0,0,0.146272 -10012,3417:363,173,-46,0,0,0.148233 -10013,3417:364,174,-46,0,0,0.148831 -10014,3417:465,175,-46,0,0,0.152167 -10015,3417:466,176,-46,0,0,0.158406 -10016,3417:467,177,-46,0,0,0.157777 -10017,3417:468,178,-46,0,0,0.165064 -10018,3417:469,179,-46,0,0,0.166969 -10019,3418:360,180,-46,0,0,0.16717 -10020,5418:350,-180,-45,0,0,0.166656 -10021,5417:459,-179,-45,0,0,0.168836 -10022,5417:458,-178,-45,0,0,0.172031 -10023,5417:457,-177,-45,0,0,0.174637 -10024,5417:456,-176,-45,0,0,0.175795 -10025,5417:455,-175,-45,0,0,0.172735 -10026,5417:354,-174,-45,0,0,0.169891 -10027,5417:353,-173,-45,0,0,0.163231 -10028,5417:352,-172,-45,0,0,0.155753 -10029,5417:351,-171,-45,0,0,0.155295 -10030,5417:350,-170,-45,0,0,0.159147 -10031,5416:459,-169,-45,0,0,0.160915 -10032,5416:458,-168,-45,0,0,0.162209 -10033,5416:457,-167,-45,0,0,0.154326 -10034,5416:456,-166,-45,0,0,0.156186 -10035,5416:455,-165,-45,0,0,0.157927 -10036,5416:354,-164,-45,0,0,0.158201 -10037,5416:353,-163,-45,0,0,0.16072 -10038,5416:352,-162,-45,0,0,0.166556 -10039,5416:351,-161,-45,0,0,0.162824 -10040,5416:350,-160,-45,0,0,0.15551 -10041,5415:459,-159,-45,0,0,0.158379 -10042,5415:458,-158,-45,0,0,0.161596 -10043,5415:457,-157,-45,0,0,0.165517 -10044,5415:456,-156,-45,0,0,0.165531 -10045,5415:455,-155,-45,0,0,0.166541 -10046,5415:354,-154,-45,0,0,0.160568 -10047,5415:353,-153,-45,0,0,0.154434 -10048,5415:352,-152,-45,0,0,0.155025 -10049,5415:351,-151,-45,0,0,0.160679 -10050,5415:350,-150,-45,0,0,0.174652 -10051,5414:459,-149,-45,0,0,0.173677 -10052,5414:458,-148,-45,0,0,0.168763 -10053,5414:457,-147,-45,0,0,0.170471 -10054,5414:456,-146,-45,0,0,0.184272 -10055,5414:455,-145,-45,0,0,0.184257 -10056,5414:354,-144,-45,0,0,0.186756 -10057,5414:353,-143,-45,0,0,0.185682 -10058,5414:352,-142,-45,0,0,0.187319 -10059,5414:351,-141,-45,0,0,0.157177 -10060,5414:350,-140,-45,0,0,0.175513 -10061,5413:459,-139,-45,0,0,0.172838 -10062,5413:458,-138,-45,0,0,0.16992 -10063,5413:457,-137,-45,0,0,0.16885 -10064,5413:456,-136,-45,0,0,0.165602 -10065,5413:455,-135,-45,0,0,0.161526 -10066,5413:354,-134,-45,0,0,0.158831 -10067,5413:353,-133,-45,0,0,0.159753 -10068,5413:352,-132,-45,0,0,0.172368 -10069,5413:351,-131,-45,0,0,0.193928 -10070,5413:350,-130,-45,0,0,0.187976 -10071,5412:459,-129,-45,0,0,0.18261 -10072,5412:458,-128,-45,0,0,0.182411 -10073,5412:457,-127,-45,0,0,0.17831 -10074,5412:456,-126,-45,0,0,0.177319 -10075,5412:455,-125,-45,0,0,0.176034 -10076,5412:354,-124,-45,0,0,0.17275 -10077,5412:353,-123,-45,0,0,0.168763 -10078,5412:352,-122,-45,0,0,0.169905 -10079,5412:351,-121,-45,0,0,0.167227 -10080,5412:350,-120,-45,0,0,0.165163 -10081,5411:459,-119,-45,0,0,0.164667 -10082,5411:458,-118,-45,0,0,0.165219 -10083,5411:457,-117,-45,0,0,0.166656 -10084,5411:456,-116,-45,0,0,0.165631 -10085,5411:455,-115,-45,0,0,0.164371 -10086,5411:354,-114,-45,0,0,0.164117 -10087,5411:353,-113,-45,0,0,0.163343 -10088,5411:352,-112,-45,0,0,0.160554 -10089,5411:351,-111,-45,0,0,0.157408 -10090,5411:350,-110,-45,0,0,0.157518 -10091,5410:459,-109,-45,0,0,0.156457 -10092,5410:458,-108,-45,0,0,0.154528 -10093,5410:457,-107,-45,0,0,0.153484 -10094,5410:456,-106,-45,0,0,0.153684 -10095,5410:455,-105,-45,0,0,0.155402 -10096,5410:354,-104,-45,0,0,0.154273 -10097,5410:353,-103,-45,0,0,0.152246 -10098,5410:352,-102,-45,0,0,0.152844 -10099,5410:351,-101,-45,0,0,0.150557 -10100,5410:350,-100,-45,0,0,0.152578 -10101,5409:459,-99,-45,0,0,0.154877 -10102,5409:458,-98,-45,0,0,0.151479 -10103,5409:457,-97,-45,0,0,0.149313 -10104,5409:456,-96,-45,0,0,0.149809 -10105,5409:455,-95,-45,0,0,0.150137 -10106,5409:354,-94,-45,0,0,0.151294 -10107,5409:353,-93,-45,0,0,0.14977 -10108,5409:352,-92,-45,0,0,0.149195 -10109,5409:351,-91,-45,0,0,0.150333 -10110,5409:350,-90,-45,0,0,0.150176 -10111,5408:459,-89,-45,0,0,0.150307 -10112,5408:458,-88,-45,0,0,0.151149 -10113,5408:457,-87,-45,0,0,0.151188 -10114,5408:456,-86,-45,0,0,0.152591 -10115,5408:455,-85,-45,0,0,0.151955 -10116,5408:354,-84,-45,0,0,0.150084 -10117,5408:353,-83,-45,0,0,0.15082 -10118,5408:352,-82,-45,0,0,0.149914 -10119,5408:351,-81,-45,0,0,0.149052 -10120,5408:350,-80,-45,0,0,0.150465 -10121,5407:459,-79,-45,0,0,0.151809 -10122,5407:458,-78,-45,0,0,0.158927 -10123,5407:457,-77,-45,0,0,0.155349 -10124,5407:456,-76,-45,0,0,0.154434 -10125,5407:455,-75,-45,0,0,0.158639 -10126,5407:354,-74,-45,0,0,0.164865 -10127,5407:353,-73,-45,0,0,0.173338 -10128,5407:352,-72,-45,0,0,0.181448 -10129,5406:456,-66,-45,0,0,0.184443 -10130,5406:455,-65,-45,0,0,0.160388 -10131,5406:354,-64,-45,0,0,0.153217 -10132,5406:353,-63,-45,0,0,0.152618 -10133,5406:352,-62,-45,0,0,0.15015 -10134,5406:351,-61,-45,0,0,0.147637 -10135,5406:350,-60,-45,0,0,0.149901 -10136,5405:459,-59,-45,0,0,0.154126 -10137,5405:458,-58,-45,0,0,0.154958 -10138,5405:457,-57,-45,0,0,0.154568 -10139,5405:456,-56,-45,0,0,0.149835 -10140,5405:455,-55,-45,0,0,0.142904 -10141,5405:354,-54,-45,0,0,0.136388 -10142,5405:353,-53,-45,0,0,0.134188 -10143,5405:352,-52,-45,0,0,0.133319 -10144,5405:351,-51,-45,0,0,0.127609 -10145,5405:350,-50,-45,0,0,0.122274 -10146,5404:459,-49,-45,0,0,0.118102 -10147,5404:458,-48,-45,0,0,0.120695 -10148,5404:457,-47,-45,0,0,0.116686 -10149,5404:456,-46,-45,0,0,0.114596 -10150,5404:455,-45,-45,0,0,0.113847 -10151,5404:354,-44,-45,0,0,0.113454 -10152,5404:353,-43,-45,0,0,0.110269 -10153,5404:352,-42,-45,0,0,0.108956 -10154,5404:351,-41,-45,0,0,0.108359 -10155,5404:350,-40,-45,0,0,0.107843 -10156,5403:459,-39,-45,0,0,0.112086 -10157,5403:458,-38,-45,0,0,0.106292 -10158,5403:457,-37,-45,0,0,0.110967 -10159,5403:456,-36,-45,0,0,0.107045 -10160,5403:455,-35,-45,0,0,0.100725 -10161,5403:354,-34,-45,0,0,0.0964882 -10162,5403:353,-33,-45,0,0,0.0970901 -10163,5403:352,-32,-45,0,0,0.10564 -10164,5403:351,-31,-45,0,0,0.104962 -10165,5403:350,-30,-45,0,0,0.0949939 -10166,5402:459,-29,-45,0,0,0.0927307 -10167,5402:458,-28,-45,0,0,0.0905922 -10168,5402:457,-27,-45,0,0,0.0931292 -10169,5402:456,-26,-45,0,0,0.097144 -10170,5402:455,-25,-45,0,0,0.0967304 -10171,5402:354,-24,-45,0,0,0.104557 -10172,5402:353,-23,-45,0,0,0.102905 -10173,5402:352,-22,-45,0,0,0.106253 -10174,5402:351,-21,-45,0,0,0.10814 -10175,5402:350,-20,-45,0,0,0.106507 -10176,5401:459,-19,-45,0,0,0.107498 -10177,5401:458,-18,-45,0,0,0.104519 -10178,5401:457,-17,-45,0,0,0.105581 -10179,5401:456,-16,-45,0,0,0.110855 -10180,5401:455,-15,-45,0,0,0.104451 -10181,5401:354,-14,-45,0,0,0.105853 -10182,5401:353,-13,-45,0,0,0.108607 -10183,5401:352,-12,-45,0,0,0.110946 -10184,5401:351,-11,-45,0,0,0.109496 -10185,5401:350,-10,-45,0,0,0.107065 -10186,5400:459,-9,-45,0,0,0.104885 -10187,5400:458,-8,-45,0,0,0.105155 -10188,5400:457,-7,-45,0,0,0.104029 -10189,5400:456,-6,-45,0,0,0.101088 -10190,5400:455,-5,-45,0,0,0.097081 -10191,5400:354,-4,-45,0,0,0.0954897 -10192,5400:353,-3,-45,0,0,0.0936597 -10193,5400:352,-2,-45,0,0,0.0921189 -10194,5400:351,-1,-45,0,0,0.0917757 -10195,3400:351,0,-45,0,0,0.0927048 -10196,3400:351,1,-45,0,0,0.091485 -10197,3400:352,2,-45,0,0,0.0892637 -10198,3400:353,3,-45,0,0,0.0858011 -10199,3400:354,4,-45,0,0,0.0863425 -10200,3400:455,5,-45,0,0,0.0855597 -10201,3400:456,6,-45,0,0,0.0850706 -10202,3400:457,7,-45,0,0,0.084783 -10203,3400:458,8,-45,0,0,0.0844171 -10204,3400:459,9,-45,0,0,0.0843297 -10205,3401:350,10,-45,0,0,0.0840287 -10206,3401:351,11,-45,0,0,0.0836973 -10207,3401:352,12,-45,0,0,0.0849187 -10208,3401:353,13,-45,0,0,0.085407 -10209,3401:354,14,-45,0,0,0.0853509 -10210,3401:455,15,-45,0,0,0.0857689 -10211,3401:456,16,-45,0,0,0.0859865 -10212,3401:457,17,-45,0,0,0.0856964 -10213,3401:458,18,-45,0,0,0.085431 -10214,3401:459,19,-45,0,0,0.0859705 -10215,3402:350,20,-45,0,0,0.0867893 -10216,3402:351,21,-45,0,0,0.0870177 -10217,3402:352,22,-45,0,0,0.0863101 -10218,3402:353,23,-45,0,0,0.0846 -10219,3402:354,24,-45,0,0,0.0861888 -10220,3402:455,25,-45,0,0,0.0869933 -10221,3402:456,26,-45,0,0,0.0857527 -10222,3402:457,27,-45,0,0,0.0887055 -10223,3402:458,28,-45,0,0,0.0881671 -10224,3402:459,29,-45,0,0,0.0906007 -10225,3403:350,30,-45,0,0,0.0954366 -10226,3403:351,31,-45,0,0,0.0976136 -10227,3403:352,32,-45,0,0,0.0972073 -10228,3403:353,33,-45,0,0,0.0917671 -10229,3403:354,34,-45,0,0,0.0933984 -10230,3403:455,35,-45,0,0,0.0957828 -10231,3403:456,36,-45,0,0,0.0940354 -10232,3403:457,37,-45,0,0,0.0968921 -10233,3403:458,38,-45,0,0,0.0993467 -10234,3403:459,39,-45,0,0,0.0960234 -10235,3404:350,40,-45,0,0,0.097072 -10236,3404:351,41,-45,0,0,0.0959075 -10237,3404:352,42,-45,0,0,0.0936684 -10238,3404:353,43,-45,0,0,0.0933201 -10239,3404:354,44,-45,0,0,0.094395 -10240,3404:455,45,-45,0,0,0.0942546 -10241,3404:456,46,-45,0,0,0.0945004 -10242,3404:457,47,-45,0,0,0.0952238 -10243,3404:458,48,-45,0,0,0.0961304 -10244,3404:459,49,-45,0,0,0.0960144 -10245,3405:350,50,-45,0,0,0.0967035 -10246,3405:351,51,-45,0,0,0.0975866 -10247,3405:352,52,-45,0,0,0.097 -10248,3405:353,53,-45,0,0,0.100604 -10249,3405:354,54,-45,0,0,0.102791 -10250,3405:455,55,-45,0,0,0.100409 -10251,3405:456,56,-45,0,0,0.0961217 -10252,3405:457,57,-45,0,0,0.0972612 -10253,3405:458,58,-45,0,0,0.101098 -10254,3405:459,59,-45,0,0,0.101303 -10255,3406:350,60,-45,0,0,0.100865 -10256,3406:351,61,-45,0,0,0.10039 -10257,3406:352,62,-45,0,0,0.0991813 -10258,3406:353,63,-45,0,0,0.10136 -10259,3406:354,64,-45,0,0,0.102139 -10260,3406:455,65,-45,0,0,0.103313 -10261,3406:456,66,-45,0,0,0.104952 -10262,3406:457,67,-45,0,0,0.104952 -10263,3406:458,68,-45,0,0,0.103857 -10264,3406:459,69,-45,0,0,0.103628 -10265,3407:350,70,-45,0,0,0.102394 -10266,3407:351,71,-45,0,0,0.100744 -10267,3407:352,72,-45,0,0,0.0987781 -10268,3407:354,74,-45,0,0,0.0984495 -10269,3407:455,75,-45,0,0,0.0986227 -10270,3407:456,76,-45,0,0,0.0994938 -10271,3407:457,77,-45,0,0,0.0984495 -10272,3407:458,78,-45,0,0,0.0951088 -10273,3407:459,79,-45,0,0,0.0871648 -10274,3408:350,80,-45,0,0,0.092679 -10275,3408:351,81,-45,0,0,0.097108 -10276,3408:352,82,-45,0,0,0.0975957 -10277,3408:353,83,-45,0,0,0.0971531 -10278,3408:354,84,-45,0,0,0.0964346 -10279,3408:455,85,-45,0,0,0.114055 -10280,3408:456,86,-45,0,0,0.111352 -10281,3408:457,87,-45,0,0,0.111964 -10282,3408:458,88,-45,0,0,0.113268 -10283,3408:459,89,-45,0,0,0.122274 -10284,3409:350,90,-45,0,0,0.120957 -10285,3409:351,91,-45,0,0,0.11656 -10286,3409:352,92,-45,0,0,0.115222 -10287,3409:353,93,-45,0,0,0.120075 -10288,3409:354,94,-45,0,0,0.118102 -10289,3409:455,95,-45,0,0,0.116263 -10290,3409:456,96,-45,0,0,0.11334 -10291,3409:457,97,-45,0,0,0.110835 -10292,3409:458,98,-45,0,0,0.106977 -10293,3409:459,99,-45,0,0,0.106399 -10294,3410:350,100,-45,0,0,0.102139 -10295,3410:351,101,-45,0,0,0.102668 -10296,3410:352,102,-45,0,0,0.102791 -10297,3410:353,103,-45,0,0,0.102045 -10298,3410:354,104,-45,0,0,0.0981036 -10299,3410:455,105,-45,0,0,0.103095 -10300,3410:456,106,-45,0,0,0.106379 -10301,3410:457,107,-45,0,0,0.109385 -10302,3410:458,108,-45,0,0,0.111944 -10303,3410:459,109,-45,0,0,0.109736 -10304,3411:350,110,-45,0,0,0.106732 -10305,3411:351,111,-45,0,0,0.111119 -10306,3411:352,112,-45,0,0,0.111078 -10307,3411:353,113,-45,0,0,0.112804 -10308,3411:354,114,-45,0,0,0.12396 -10309,3411:455,115,-45,0,0,0.12481 -10310,3411:456,116,-45,0,0,0.125046 -10311,3411:457,117,-45,0,0,0.130054 -10312,3411:458,118,-45,0,0,0.133331 -10313,3411:459,119,-45,0,0,0.131924 -10314,3412:350,120,-45,0,0,0.122142 -10315,3412:351,121,-45,0,0,0.121405 -10316,3412:352,122,-45,0,0,0.120488 -10317,3412:353,123,-45,0,0,0.124194 -10318,3412:354,124,-45,0,0,0.131783 -10319,3412:455,125,-45,0,0,0.119793 -10320,3412:456,126,-45,0,0,0.124575 -10321,3412:457,127,-45,0,0,0.12605 -10322,3412:458,128,-45,0,0,0.126413 -10323,3412:459,129,-45,0,0,0.129984 -10324,3413:350,130,-45,0,0,0.1301 -10325,3413:351,131,-45,0,0,0.129995 -10326,3413:352,132,-45,0,0,0.125756 -10327,3413:353,133,-45,0,0,0.126538 -10328,3413:354,134,-45,0,0,0.13262 -10329,3413:455,135,-45,0,0,0.13262 -10330,3413:456,136,-45,0,0,0.133938 -10331,3413:457,137,-45,0,0,0.134117 -10332,3413:458,138,-45,0,0,0.129508 -10333,3413:459,139,-45,0,0,0.127529 -10334,3414:350,140,-45,0,0,0.133284 -10335,3414:351,141,-45,0,0,0.136049 -10336,3414:352,142,-45,0,0,0.138704 -10337,3414:353,143,-45,0,0,0.129473 -10338,3414:354,144,-45,0,0,0.116856 -10339,3414:455,145,-45,0,0,0.117696 -10340,3414:456,146,-45,0,0,0.118552 -10341,3414:457,147,-45,0,0,0.129995 -10342,3414:458,148,-45,0,0,0.14567 -10343,3414:459,149,-45,0,0,0.168418 -10344,3415:350,150,-45,0,0,0.161054 -10345,3415:351,151,-45,0,0,0.141538 -10346,3415:352,152,-45,0,0,0.149117 -10347,3415:353,153,-45,0,0,0.156132 -10348,3415:354,154,-45,0,0,0.166271 -10349,3415:455,155,-45,0,0,0.156647 -10350,3415:456,156,-45,0,0,0.158721 -10351,3415:457,157,-45,0,0,0.148194 -10352,3415:458,158,-45,0,0,0.149052 -10353,3415:459,159,-45,0,0,0.151902 -10354,3416:350,160,-45,0,0,0.131384 -10355,3416:351,161,-45,0,0,0.137981 -10356,3416:352,162,-45,0,0,0.150386 -10357,3416:353,163,-45,0,0,0.146644 -10358,3416:354,164,-45,0,0,0.149744 -10359,3416:455,165,-45,0,0,0.172397 -10360,3416:456,166,-45,0,0,0.18517 -10361,3416:457,167,-45,0,0,0.180701 -10362,3416:458,168,-45,0,0,0.179836 -10363,3416:459,169,-45,0,0,0.180276 -10364,3417:350,170,-45,0,0,0.180382 -10365,3417:351,171,-45,0,0,0.177769 -10366,3417:352,172,-45,0,0,0.166598 -10367,3417:353,173,-45,0,0,0.156769 -10368,3417:354,174,-45,0,0,0.150137 -10369,3417:455,175,-45,0,0,0.149156 -10370,3417:456,176,-45,0,0,0.159216 -10371,3417:457,177,-45,0,0,0.157982 -10372,3417:458,178,-45,0,0,0.159243 -10373,3417:459,179,-45,0,0,0.167585 -10374,3418:350,180,-45,0,0,0.166656 -10375,5418:140,-180,-44,0,0,0.167213 -10376,5417:249,-179,-44,0,0,0.170806 -10377,5417:248,-178,-44,0,0,0.17675 -10378,5417:247,-177,-44,0,0,0.180018 -10379,5417:246,-176,-44,0,0,0.179669 -10380,5417:245,-175,-44,0,0,0.17979 -10381,5417:144,-174,-44,0,0,0.188087 -10382,5417:143,-173,-44,0,0,0.187116 -10383,5417:142,-172,-44,0,0,0.183594 -10384,5417:141,-171,-44,0,0,0.176049 -10385,5417:140,-170,-44,0,0,0.167499 -10386,5416:249,-169,-44,0,0,0.172236 -10387,5416:248,-168,-44,0,0,0.172442 -10388,5416:247,-167,-44,0,0,0.161582 -10389,5416:246,-166,-44,0,0,0.15601 -10390,5416:245,-165,-44,0,0,0.157927 -10391,5416:144,-164,-44,0,0,0.158831 -10392,5416:143,-163,-44,0,0,0.15967 -10393,5416:142,-162,-44,0,0,0.167915 -10394,5416:141,-161,-44,0,0,0.170776 -10395,5416:140,-160,-44,0,0,0.167485 -10396,5415:249,-159,-44,0,0,0.174889 -10397,5415:248,-158,-44,0,0,0.179957 -10398,5415:247,-157,-44,0,0,0.166328 -10399,5415:246,-156,-44,0,0,0.170733 -10400,5415:245,-155,-44,0,0,0.177724 -10401,5415:144,-154,-44,0,0,0.19356 -10402,5415:143,-153,-44,0,0,0.193383 -10403,5415:142,-152,-44,0,0,0.1859 -10404,5415:141,-151,-44,0,0,0.17923 -10405,5415:140,-150,-44,0,0,0.171359 -10406,5414:249,-149,-44,0,0,0.171724 -10407,5414:248,-148,-44,0,0,0.175097 -10408,5414:247,-147,-44,0,0,0.184242 -10409,5414:246,-146,-44,0,0,0.188683 -10410,5414:245,-145,-44,0,0,0.181158 -10411,5414:144,-144,-44,0,0,0.178341 -10412,5414:143,-143,-44,0,0,0.175929 -10413,5414:142,-142,-44,0,0,0.1735 -10414,5414:141,-141,-44,0,0,0.184303 -10415,5414:140,-140,-44,0,0,0.182258 -10416,5413:249,-139,-44,0,0,0.179019 -10417,5413:248,-138,-44,0,0,0.179215 -10418,5413:247,-137,-44,0,0,0.185372 -10419,5413:246,-136,-44,0,0,0.188243 -10420,5413:245,-135,-44,0,0,0.190737 -10421,5413:144,-134,-44,0,0,0.193143 -10422,5413:143,-133,-44,0,0,0.196365 -10423,5413:142,-132,-44,0,0,0.199234 -10424,5413:141,-131,-44,0,0,0.198367 -10425,5413:140,-130,-44,0,0,0.19034 -10427,5412:248,-128,-44,0,0,0.183625 -10428,5412:247,-127,-44,0,0,0.181112 -10429,5412:246,-126,-44,0,0,0.181371 -10430,5412:245,-125,-44,0,0,0.181097 -10431,5412:144,-124,-44,0,0,0.179684 -10432,5412:143,-123,-44,0,0,0.177439 -10433,5412:142,-122,-44,0,0,0.175825 -10434,5412:141,-121,-44,0,0,0.17443 -10435,5412:140,-120,-44,0,0,0.175825 -10436,5411:249,-119,-44,0,0,0.176034 -10437,5411:248,-118,-44,0,0,0.174549 -10438,5411:247,-117,-44,0,0,0.170573 -10439,5411:246,-116,-44,0,0,0.168836 -10440,5411:245,-115,-44,0,0,0.17034 -10441,5411:144,-114,-44,0,0,0.168865 -10442,5411:143,-113,-44,0,0,0.165744 -10443,5411:142,-112,-44,0,0,0.162629 -10444,5411:141,-111,-44,0,0,0.162586 -10445,5411:140,-110,-44,0,0,0.161791 -10446,5410:249,-109,-44,0,0,0.161498 -10447,5410:248,-108,-44,0,0,0.162321 -10448,5410:247,-107,-44,0,0,0.159477 -10449,5410:246,-106,-44,0,0,0.159257 -10450,5410:245,-105,-44,0,0,0.161262 -10451,5410:144,-104,-44,0,0,0.158078 -10452,5410:143,-103,-44,0,0,0.157096 -10453,5410:142,-102,-44,0,0,0.159381 -10454,5410:141,-101,-44,0,0,0.15601 -10455,5410:140,-100,-44,0,0,0.157341 -10456,5409:249,-99,-44,0,0,0.158625 -10457,5409:248,-98,-44,0,0,0.156416 -10458,5409:247,-97,-44,0,0,0.155349 -10459,5409:246,-96,-44,0,0,0.15516 -10460,5409:245,-95,-44,0,0,0.155888 -10461,5409:144,-94,-44,0,0,0.15681 -10462,5409:143,-93,-44,0,0,0.156525 -10463,5409:142,-92,-44,0,0,0.155416 -10464,5409:141,-91,-44,0,0,0.154756 -10465,5409:140,-90,-44,0,0,0.156579 -10466,5408:249,-89,-44,0,0,0.157231 -10467,5408:248,-88,-44,0,0,0.155497 -10468,5408:247,-87,-44,0,0,0.156471 -10469,5408:246,-86,-44,0,0,0.156851 -10470,5408:245,-85,-44,0,0,0.155686 -10471,5408:144,-84,-44,0,0,0.155672 -10472,5408:143,-83,-44,0,0,0.15516 -10473,5408:142,-82,-44,0,0,0.154662 -10474,5408:141,-81,-44,0,0,0.155848 -10475,5408:140,-80,-44,0,0,0.155564 -10476,5407:249,-79,-44,0,0,0.157763 -10477,5407:248,-78,-44,0,0,0.162377 -10478,5407:247,-77,-44,0,0,0.160568 -10479,5407:246,-76,-44,0,0,0.158859 -10480,5407:245,-75,-44,0,0,0.163878 -10481,5407:144,-74,-44,0,0,0.179397 -10482,5406:247,-67,-44,0,0,0.171914 -10483,5406:246,-66,-44,0,0,0.162167 -10484,5406:245,-65,-44,0,0,0.157096 -10485,5406:144,-64,-44,0,0,0.150517 -10486,5406:143,-63,-44,0,0,0.152512 -10487,5406:142,-62,-44,0,0,0.150793 -10488,5406:141,-61,-44,0,0,0.15032 -10489,5406:140,-60,-44,0,0,0.152857 -10490,5405:249,-59,-44,0,0,0.153457 -10491,5405:248,-58,-44,0,0,0.150951 -10492,5405:247,-57,-44,0,0,0.14787 -10493,5405:246,-56,-44,0,0,0.143825 -10494,5405:245,-55,-44,0,0,0.141976 -10495,5405:144,-54,-44,0,0,0.141214 -10496,5405:143,-53,-44,0,0,0.141077 -10497,5405:142,-52,-44,0,0,0.140158 -10498,5405:141,-51,-44,0,0,0.137822 -10499,5405:140,-50,-44,0,0,0.13588 -10500,5404:249,-49,-44,0,0,0.130647 -10501,5404:248,-48,-44,0,0,0.122528 -10502,5404:247,-47,-44,0,0,0.120902 -10503,5404:246,-46,-44,0,0,0.118628 -10504,5404:245,-45,-44,0,0,0.112517 -10505,5404:144,-44,-44,0,0,0.111627 -10506,5404:143,-43,-44,0,0,0.112671 -10507,5404:142,-42,-44,0,0,0.111597 -10508,5404:141,-41,-44,0,0,0.111261 -10509,5404:140,-40,-44,0,0,0.109967 -10510,5403:249,-39,-44,0,0,0.108806 -10511,5403:248,-38,-44,0,0,0.107291 -10512,5403:247,-37,-44,0,0,0.103876 -10513,5403:246,-36,-44,0,0,0.101014 -10514,5403:245,-35,-44,0,0,0.0997427 -10515,5403:144,-34,-44,0,0,0.0984495 -10516,5403:143,-33,-44,0,0,0.0959701 -10517,5403:142,-32,-44,0,0,0.101988 -10518,5403:141,-31,-44,0,0,0.111271 -10519,5403:140,-30,-44,0,0,0.112199 -10520,5402:249,-29,-44,0,0,0.111099 -10521,5402:248,-28,-44,0,0,0.108727 -10522,5402:247,-27,-44,0,0,0.104269 -10523,5402:246,-26,-44,0,0,0.101369 -10524,5402:245,-25,-44,0,0,0.105107 -10525,5402:144,-24,-44,0,0,0.111546 -10526,5402:143,-23,-44,0,0,0.106702 -10527,5402:142,-22,-44,0,0,0.105853 -10528,5402:141,-21,-44,0,0,0.110159 -10529,5402:140,-20,-44,0,0,0.112025 -10530,5401:249,-19,-44,0,0,0.108527 -10531,5401:248,-18,-44,0,0,0.106165 -10532,5401:247,-17,-44,0,0,0.112496 -10533,5401:246,-16,-44,0,0,0.111933 -10534,5401:245,-15,-44,0,0,0.107774 -10535,5401:144,-14,-44,0,0,0.110028 -10536,5401:143,-13,-44,0,0,0.113288 -10537,5401:142,-12,-44,0,0,0.113578 -10538,5401:141,-11,-44,0,0,0.108687 -10539,5401:140,-10,-44,0,0,0.104653 -10540,5400:249,-9,-44,0,0,0.104596 -10541,5400:248,-8,-44,0,0,0.104403 -10542,5400:247,-7,-44,0,0,0.102413 -10543,5400:246,-6,-44,0,0,0.0957828 -10544,5400:245,-5,-44,0,0,0.0934507 -10545,5400:144,-4,-44,0,0,0.0932421 -10546,5400:143,-3,-44,0,0,0.0927913 -10547,5400:142,-2,-44,0,0,0.0913568 -10548,5400:141,-1,-44,0,0,0.0903471 -10549,3400:141,0,-44,0,0,0.0900771 -10550,3400:141,1,-44,0,0,0.0907786 -10551,3400:142,2,-44,0,0,0.0902373 -10552,3400:143,3,-44,0,0,0.0867163 -10553,3400:144,4,-44,0,0,0.0869686 -10554,3400:245,5,-44,0,0,0.0857045 -10555,3400:246,6,-44,0,0,0.0852386 -10556,3400:247,7,-44,0,0,0.0850945 -10557,3400:248,8,-44,0,0,0.0849986 -10558,3400:249,9,-44,0,0,0.0849028 -10559,3401:140,10,-44,0,0,0.0889301 -10560,3401:141,11,-44,0,0,0.0849586 -10561,3401:142,12,-44,0,0,0.0844886 -10562,3401:143,13,-44,0,0,0.0844726 -10563,3401:144,14,-44,0,0,0.0850386 -10564,3401:245,15,-44,0,0,0.0850306 -10565,3401:246,16,-44,0,0,0.0856078 -10566,3401:247,17,-44,0,0,0.085624 -10567,3401:248,18,-44,0,0,0.0861725 -10568,3401:249,19,-44,0,0,0.0869443 -10569,3402:140,20,-44,0,0,0.0878704 -10570,3402:141,21,-44,0,0,0.0883905 -10571,3402:142,22,-44,0,0,0.0881507 -10572,3402:143,23,-44,0,0,0.0875332 -10573,3402:144,24,-44,0,0,0.0858415 -10574,3402:245,25,-44,0,0,0.0855837 -10575,3402:246,26,-44,0,0,0.0960144 -10576,3402:247,27,-44,0,0,0.101369 -10577,3402:248,28,-44,0,0,0.0995677 -10578,3402:249,29,-44,0,0,0.0906599 -10579,3403:140,30,-44,0,0,0.0975957 -10580,3403:141,31,-44,0,0,0.0964792 -10581,3403:142,32,-44,0,0,0.096327 -10582,3403:143,33,-44,0,0,0.0929039 -10583,3403:144,34,-44,0,0,0.0970091 -10584,3403:245,35,-44,0,0,0.099356 -10585,3403:246,36,-44,0,0,0.0988423 -10586,3403:247,37,-44,0,0,0.0995953 -10587,3403:248,38,-44,0,0,0.101453 -10588,3403:249,39,-44,0,0,0.101051 -10589,3404:140,40,-44,0,0,0.099062 -10590,3404:141,41,-44,0,0,0.0990528 -10591,3404:142,42,-44,0,0,0.0985405 -10592,3404:143,43,-44,0,0,0.0972973 -10593,3404:144,44,-44,0,0,0.0974508 -10594,3404:245,45,-44,0,0,0.0975866 -10595,3404:246,46,-44,0,0,0.0977134 -10596,3404:247,47,-44,0,0,0.100613 -10597,3404:248,48,-44,0,0,0.0979491 -10598,3404:249,49,-44,0,0,0.0986777 -10599,3405:140,50,-44,0,0,0.101866 -10600,3405:141,51,-44,0,0,0.0988971 -10601,3405:142,52,-44,0,0,0.0996046 -10602,3405:143,53,-44,0,0,0.10093 -10603,3405:144,54,-44,0,0,0.10359 -10604,3405:245,55,-44,0,0,0.104048 -10605,3405:246,56,-44,0,0,0.101472 -10606,3405:247,57,-44,0,0,0.0985041 -10607,3405:248,58,-44,0,0,0.101341 -10608,3405:249,59,-44,0,0,0.103914 -10609,3406:140,60,-44,0,0,0.102214 -10610,3406:141,61,-44,0,0,0.102479 -10611,3406:142,62,-44,0,0,0.101641 -10612,3406:143,63,-44,0,0,0.103351 -10613,3406:144,64,-44,0,0,0.105795 -10614,3406:245,65,-44,0,0,0.104355 -10615,3406:246,66,-44,0,0,0.104875 -10616,3406:247,67,-44,0,0,0.106301 -10617,3406:248,68,-44,0,0,0.106409 -10618,3406:249,69,-44,0,0,0.103171 -10619,3407:140,70,-44,0,0,0.102271 -10620,3407:141,71,-44,0,0,0.100279 -10621,3407:142,72,-44,0,0,0.0993192 -10622,3407:144,74,-44,0,0,0.0996229 -10623,3407:245,75,-44,0,0,0.0995124 -10624,3407:246,76,-44,0,0,0.10002 -10625,3407:247,77,-44,0,0,0.100149 -10626,3407:248,78,-44,0,0,0.0967931 -10627,3407:249,79,-44,0,0,0.0893137 -10628,3408:140,80,-44,0,0,0.0895312 -10629,3408:141,81,-44,0,0,0.0892303 -10630,3408:142,82,-44,0,0,0.0891636 -10631,3408:143,83,-44,0,0,0.10053 -10632,3408:144,84,-44,0,0,0.110542 -10633,3408:245,85,-44,0,0,0.105834 -10634,3408:246,86,-44,0,0,0.108687 -10635,3408:247,87,-44,0,0,0.116158 -10636,3408:248,88,-44,0,0,0.115474 -10637,3408:249,89,-44,0,0,0.122473 -10638,3409:140,90,-44,0,0,0.128746 -10639,3409:141,91,-44,0,0,0.121899 -10640,3409:142,92,-44,0,0,0.123414 -10641,3409:143,93,-44,0,0,0.125485 -12589,5308:486,-86,-38,0,0,0.18873 -10642,3409:144,94,-44,0,0,0.121296 -10643,3409:245,95,-44,0,0,0.115013 -10644,3409:246,96,-44,0,0,0.114783 -10645,3409:247,97,-44,0,0,0.115003 -10646,3409:248,98,-44,0,0,0.115202 -10647,3409:249,99,-44,0,0,0.116168 -10648,3410:140,100,-44,0,0,0.117472 -10649,3410:141,101,-44,0,0,0.111903 -10650,3410:142,102,-44,0,0,0.104173 -10651,3410:143,103,-44,0,0,0.103247 -10652,3410:144,104,-44,0,0,0.104663 -10653,3410:245,105,-44,0,0,0.105814 -10654,3410:246,106,-44,0,0,0.108756 -10655,3410:247,107,-44,0,0,0.115537 -10656,3410:248,108,-44,0,0,0.117408 -10657,3410:249,109,-44,0,0,0.1156 -10658,3411:140,110,-44,0,0,0.11038 -10659,3411:141,111,-44,0,0,0.11039 -10660,3411:142,112,-44,0,0,0.111729 -10661,3411:143,113,-44,0,0,0.114794 -10662,3411:144,114,-44,0,0,0.124597 -10663,3411:245,115,-44,0,0,0.131349 -10664,3411:246,116,-44,0,0,0.12832 -10665,3411:247,117,-44,0,0,0.128056 -10666,3411:248,118,-44,0,0,0.128331 -10667,3411:249,119,-44,0,0,0.138397 -10668,3412:140,120,-44,0,0,0.136025 -10669,3412:141,121,-44,0,0,0.129775 -10670,3412:142,122,-44,0,0,0.140704 -10671,3412:143,123,-44,0,0,0.139503 -10672,3412:144,124,-44,0,0,0.13364 -10673,3412:245,125,-44,0,0,0.12681 -10674,3412:246,126,-44,0,0,0.133307 -10675,3412:247,127,-44,0,0,0.141588 -10676,3412:248,128,-44,0,0,0.137055 -10677,3412:249,129,-44,0,0,0.133938 -10678,3413:140,130,-44,0,0,0.134738 -10679,3413:141,131,-44,0,0,0.133688 -10680,3413:142,132,-44,0,0,0.1332 -10681,3413:143,133,-44,0,0,0.128584 -10682,3413:144,134,-44,0,0,0.140903 -10683,3413:245,135,-44,0,0,0.146054 -10684,3413:246,136,-44,0,0,0.142678 -10685,3413:247,137,-44,0,0,0.136885 -10686,3413:248,138,-44,0,0,0.137542 -10687,3413:249,139,-44,0,0,0.138716 -10688,3414:140,140,-44,0,0,0.139553 -10689,3414:141,141,-44,0,0,0.136025 -10690,3414:142,142,-44,0,0,0.130018 -10691,3414:143,143,-44,0,0,0.122616 -10692,3414:144,144,-44,0,0,0.11656 -10693,3414:245,145,-44,0,0,0.123826 -10694,3414:246,146,-44,0,0,0.129022 -10695,3414:247,147,-44,0,0,0.135977 -10696,3414:248,148,-44,0,0,0.132656 -10697,3414:249,149,-44,0,0,0.156064 -10698,3415:140,150,-44,0,0,0.167241 -10699,3415:141,151,-44,0,0,0.157136 -10700,3415:142,152,-44,0,0,0.15351 -10701,3415:143,153,-44,0,0,0.160236 -10702,3415:144,154,-44,0,0,0.173176 -10703,3415:245,155,-44,0,0,0.17406 -10704,3415:246,156,-44,0,0,0.167958 -10705,3415:247,157,-44,0,0,0.155456 -10706,3415:248,158,-44,0,0,0.157082 -10707,3415:249,159,-44,0,0,0.157313 -10708,3416:140,160,-44,0,0,0.154005 -10709,3416:141,161,-44,0,0,0.145376 -10710,3416:142,162,-44,0,0,0.14507 -10711,3416:143,163,-44,0,0,0.150281 -10712,3416:144,164,-44,0,0,0.153992 -10713,3416:245,165,-44,0,0,0.172809 -10714,3416:246,166,-44,0,0,0.18782 -10715,3416:247,167,-44,0,0,0.182013 -10716,3416:248,168,-44,0,0,0.180063 -10717,3416:249,169,-44,0,0,0.17911 -10718,3417:140,170,-44,0,0,0.178853 -10719,3417:141,171,-44,0,0,0.179004 -10720,3417:142,172,-44,0,0,0.179821 -10721,3417:143,173,-44,0,0,0.179942 -10722,3417:144,174,-44,0,0,0.175439 -10723,3417:245,175,-44,0,0,0.160998 -10724,3417:246,176,-44,0,0,0.156566 -10725,3417:247,177,-44,0,0,0.16025 -10726,3417:248,178,-44,0,0,0.164484 -10727,3417:249,179,-44,0,0,0.163498 -10728,3418:140,180,-44,0,0,0.167213 -10729,5418:130,-180,-43,0,0,0.176825 -10730,5417:239,-179,-43,0,0,0.179503 -10731,5417:238,-178,-43,0,0,0.179942 -10732,5417:237,-177,-43,0,0,0.180732 -10733,5417:236,-176,-43,0,0,0.181463 -10734,5417:235,-175,-43,0,0,0.184149 -10735,5417:134,-174,-43,0,0,0.189345 -10736,5417:133,-173,-43,0,0,0.185822 -10737,5417:132,-172,-43,0,0,0.187225 -10738,5417:131,-171,-43,0,0,0.181448 -10739,5417:130,-170,-43,0,0,0.176302 -10740,5416:239,-169,-43,0,0,0.182748 -10741,5416:238,-168,-43,0,0,0.187647 -10742,5416:237,-167,-43,0,0,0.18562 -10743,5416:236,-166,-43,0,0,0.183779 -10744,5416:235,-165,-43,0,0,0.181768 -10745,5416:134,-164,-43,0,0,0.176825 -10746,5416:133,-163,-43,0,0,0.168519 -10747,5416:132,-162,-43,0,0,0.172193 -10748,5416:131,-161,-43,0,0,0.177619 -10749,5416:130,-160,-43,0,0,0.177514 -10750,5415:239,-159,-43,0,0,0.186491 -10751,5415:238,-158,-43,0,0,0.192104 -10752,5415:237,-157,-43,0,0,0.176227 -10753,5415:236,-156,-43,0,0,0.171812 -10754,5415:235,-155,-43,0,0,0.192615 -10755,5415:134,-154,-43,0,0,0.214606 -10756,5415:133,-153,-43,0,0,0.215213 -10757,5415:132,-152,-43,0,0,0.213569 -10758,5415:131,-151,-43,0,0,0.213689 -10759,5415:130,-150,-43,0,0,0.212965 -10760,5414:239,-149,-43,0,0,0.206612 -10761,5414:238,-148,-43,0,0,0.197096 -10762,5414:237,-147,-43,0,0,0.193239 -10763,5414:236,-146,-43,0,0,0.200105 -10764,5414:235,-145,-43,0,0,0.197633 -10765,5414:134,-144,-43,0,0,0.188526 -10766,5414:133,-143,-43,0,0,0.196219 -10767,5414:132,-142,-43,0,0,0.206781 -10768,5414:131,-141,-43,0,0,0.204147 -10769,5414:130,-140,-43,0,0,0.194363 -10770,5413:239,-139,-43,0,0,0.182442 -10771,5413:238,-138,-43,0,0,0.188904 -10772,5413:237,-137,-43,0,0,0.203514 -10773,5413:236,-136,-43,0,0,0.207185 -10774,5413:235,-135,-43,0,0,0.211882 -10775,5413:134,-134,-43,0,0,0.210854 -10776,5413:133,-133,-43,0,0,0.208183 -10777,5413:132,-132,-43,0,0,0.205956 -10778,5413:131,-131,-43,0,0,0.200714 -10779,5413:130,-130,-43,0,0,0.198433 -10780,5412:239,-129,-43,0,0,0.195394 -10781,5412:238,-128,-43,0,0,0.19212 -10782,5412:237,-127,-43,0,0,0.18746 -10783,5412:236,-126,-43,0,0,0.189219 -10784,5412:235,-125,-43,0,0,0.189629 -10785,5412:134,-124,-43,0,0,0.184381 -10786,5412:133,-123,-43,0,0,0.183009 -10787,5412:132,-122,-43,0,0,0.181188 -10788,5412:131,-121,-43,0,0,0.17837 -10789,5412:130,-120,-43,0,0,0.177694 -10790,5411:239,-119,-43,0,0,0.176855 -10791,5411:238,-118,-43,0,0,0.175008 -10792,5411:237,-117,-43,0,0,0.173161 -10793,5411:236,-116,-43,0,0,0.177484 -10794,5411:235,-115,-43,0,0,0.181387 -10795,5411:134,-114,-43,0,0,0.178898 -10796,5411:133,-113,-43,0,0,0.173662 -10797,5411:132,-112,-43,0,0,0.169298 -10798,5411:131,-111,-43,0,0,0.169688 -10799,5411:130,-110,-43,0,0,0.168231 -10800,5410:239,-109,-43,0,0,0.166784 -10801,5410:238,-108,-43,0,0,0.166827 -10802,5410:237,-107,-43,0,0,0.16478 -10803,5410:236,-106,-43,0,0,0.167213 -10804,5410:235,-105,-43,0,0,0.165617 -10805,5410:134,-104,-43,0,0,0.161484 -10806,5410:133,-103,-43,0,0,0.16347 -10807,5410:132,-102,-43,0,0,0.165191 -10808,5410:131,-101,-43,0,0,0.161833 -10809,5410:130,-100,-43,0,0,0.161874 -10810,5409:239,-99,-43,0,0,0.16354 -10811,5409:238,-98,-43,0,0,0.16274 -10812,5409:237,-97,-43,0,0,0.16097 -10813,5409:236,-96,-43,0,0,0.161429 -10814,5409:235,-95,-43,0,0,0.162642 -10815,5409:134,-94,-43,0,0,0.164724 -10816,5409:133,-93,-43,0,0,0.162279 -10817,5409:132,-92,-43,0,0,0.159326 -10818,5409:131,-91,-43,0,0,0.160624 -10819,5409:130,-90,-43,0,0,0.163259 -10820,5408:239,-89,-43,0,0,0.161456 -10821,5408:238,-88,-43,0,0,0.16072 -10822,5408:237,-87,-43,0,0,0.162125 -10823,5408:236,-86,-43,0,0,0.160929 -10824,5408:235,-85,-43,0,0,0.160652 -10825,5408:134,-84,-43,0,0,0.160887 -10826,5408:133,-83,-43,0,0,0.159905 -10827,5408:132,-82,-43,0,0,0.159161 -10828,5408:131,-81,-43,0,0,0.159119 -10829,5408:130,-80,-43,0,0,0.158968 -10830,5407:239,-79,-43,0,0,0.162223 -10831,5407:238,-78,-43,0,0,0.163203 -10832,5407:237,-77,-43,0,0,0.164413 -10833,5407:236,-76,-43,0,0,0.169413 -10834,5407:235,-75,-43,0,0,0.180808 -10835,5407:134,-74,-43,0,0,0.192663 -10836,5406:238,-68,-43,0,0,0.17807 -10837,5406:237,-67,-43,0,0,0.165517 -10838,5406:236,-66,-43,0,0,0.161026 -10839,5406:235,-65,-43,0,0,0.159988 -10840,5406:134,-64,-43,0,0,0.156987 -10841,5406:133,-63,-43,0,0,0.158461 -10842,5406:132,-62,-43,0,0,0.158872 -10843,5406:131,-61,-43,0,0,0.16122 -10844,5406:130,-60,-43,0,0,0.165531 -10845,5405:239,-59,-43,0,0,0.166912 -10846,5405:238,-58,-43,0,0,0.162629 -10847,5405:237,-57,-43,0,0,0.157982 -10848,5405:236,-56,-43,0,0,0.151968 -10849,5405:235,-55,-43,0,0,0.145389 -10850,5405:134,-54,-43,0,0,0.143914 -10851,5405:133,-53,-43,0,0,0.142892 -10852,5405:132,-52,-43,0,0,0.139861 -10853,5405:131,-51,-43,0,0,0.138998 -10854,5405:130,-50,-43,0,0,0.136788 -10855,5404:239,-49,-43,0,0,0.132668 -10856,5404:238,-48,-43,0,0,0.124407 -10857,5404:237,-47,-43,0,0,0.123949 -10858,5404:236,-46,-43,0,0,0.122031 -10859,5404:235,-45,-43,0,0,0.120717 -10860,5404:134,-44,-43,0,0,0.119999 -10861,5404:133,-43,-43,0,0,0.117313 -10862,5404:132,-42,-43,0,0,0.115453 -10863,5404:131,-41,-43,0,0,0.121669 -10864,5404:130,-40,-43,0,0,0.12063 -10865,5403:239,-39,-43,0,0,0.118241 -10866,5403:238,-38,-43,0,0,0.110653 -10867,5403:237,-37,-43,0,0,0.108756 -10868,5403:236,-36,-43,0,0,0.111271 -10869,5403:235,-35,-43,0,0,0.107646 -10870,5403:134,-34,-43,0,0,0.108647 -10871,5403:133,-33,-43,0,0,0.101341 -10872,5403:132,-32,-43,0,0,0.105814 -10873,5403:131,-31,-43,0,0,0.111719 -10874,5403:130,-30,-43,0,0,0.110714 -10875,5402:239,-29,-43,0,0,0.114617 -10876,5402:238,-28,-43,0,0,0.12088 -10877,5402:237,-27,-43,0,0,0.115947 -10878,5402:236,-26,-43,0,0,0.112332 -10879,5402:235,-25,-43,0,0,0.11471 -10880,5402:134,-24,-43,0,0,0.115632 -10881,5402:133,-23,-43,0,0,0.118983 -10882,5402:132,-22,-43,0,0,0.115233 -10883,5402:131,-21,-43,0,0,0.112005 -10884,5402:130,-20,-43,0,0,0.115737 -10885,5401:239,-19,-43,0,0,0.112558 -10886,5401:238,-18,-43,0,0,0.118392 -10887,5401:237,-17,-43,0,0,0.116983 -10888,5401:236,-16,-43,0,0,0.116686 -10889,5401:235,-15,-43,0,0,0.115958 -10890,5401:134,-14,-43,0,0,0.112076 -10891,5401:133,-13,-43,0,0,0.114148 -10892,5401:132,-12,-43,0,0,0.116814 -10893,5401:131,-11,-43,0,0,0.114731 -10894,5401:130,-10,-43,0,0,0.107685 -10895,5400:239,-9,-43,0,0,0.105902 -10896,5400:238,-8,-43,0,0,0.10473 -10897,5400:237,-7,-43,0,0,0.104548 -10898,5400:236,-6,-43,0,0,0.101247 -10899,5400:235,-5,-43,0,0,0.0943861 -10900,5400:134,-4,-43,0,0,0.0949763 -10901,5400:133,-3,-43,0,0,0.0954366 -10902,5400:132,-2,-43,0,0,0.0932159 -10903,5400:131,-1,-43,0,0,0.0907108 -10904,3400:131,0,-43,0,0,0.0905077 -10905,3400:131,1,-43,0,0,0.0904992 -10906,3400:132,2,-43,0,0,0.0898333 -10907,3400:133,3,-43,0,0,0.0882168 -10908,3400:134,4,-43,0,0,0.092179 -10909,3400:235,5,-43,0,0,0.0966764 -10910,3400:236,6,-43,0,0,0.093103 -10911,3400:237,7,-43,0,0,0.0889469 -10912,3400:238,8,-43,0,0,0.0913826 -10913,3400:239,9,-43,0,0,0.0878126 -10914,3401:130,10,-43,0,0,0.0939304 -10915,3401:131,11,-43,0,0,0.0994756 -10916,3401:132,12,-43,0,0,0.0905415 -10917,3401:133,13,-43,0,0,0.0862212 -10918,3401:134,14,-43,0,0,0.0873448 -10919,3401:235,15,-43,0,0,0.0904907 -10920,3401:236,16,-43,0,0,0.0930249 -10921,3401:237,17,-43,0,0,0.09359 -10922,3401:238,18,-43,0,0,0.0921359 -10923,3401:239,19,-43,0,0,0.0921533 -10924,3402:130,20,-43,0,0,0.0922737 -10925,3402:131,21,-43,0,0,0.0901447 -10926,3402:132,22,-43,0,0,0.0872874 -10927,3402:133,23,-43,0,0,0.0871483 -10928,3402:134,24,-43,0,0,0.0884486 -10929,3402:235,25,-43,0,0,0.088341 -10930,3402:236,26,-43,0,0,0.0923165 -10931,3402:237,27,-43,0,0,0.096336 -10932,3402:238,28,-43,0,0,0.0928085 -10933,3402:239,29,-43,0,0,0.097 -10934,3403:130,30,-43,0,0,0.100409 -10935,3403:131,31,-43,0,0,0.11029 -10936,3403:132,32,-43,0,0,0.0965869 -10937,3403:133,33,-43,0,0,0.0968471 -10938,3403:134,34,-43,0,0,0.098249 -10939,3403:235,35,-43,0,0,0.0994295 -10940,3403:236,36,-43,0,0,0.103494 -10941,3403:237,37,-43,0,0,0.105097 -10942,3403:238,38,-43,0,0,0.105863 -10943,3403:239,39,-43,0,0,0.102545 -10944,3404:130,40,-43,0,0,0.101219 -10945,3404:131,41,-43,0,0,0.10181 -10946,3404:132,42,-43,0,0,0.100131 -10947,3404:133,43,-43,0,0,0.101257 -10948,3404:134,44,-43,0,0,0.100781 -10949,3404:235,45,-43,0,0,0.100949 -10950,3404:236,46,-43,0,0,0.104144 -10951,3404:237,47,-43,0,0,0.104827 -10952,3404:238,48,-43,0,0,0.103838 -10953,3404:239,49,-43,0,0,0.107449 -10954,3405:130,50,-43,0,0,0.108816 -10955,3405:131,51,-43,0,0,0.107321 -10956,3405:132,52,-43,0,0,0.103256 -10957,3405:133,53,-43,0,0,0.108042 -10958,3405:134,54,-43,0,0,0.106869 -10959,3405:235,55,-43,0,0,0.105165 -10960,3405:236,56,-43,0,0,0.105931 -10961,3405:237,57,-43,0,0,0.106683 -10962,3405:238,58,-43,0,0,0.103389 -10963,3405:239,59,-43,0,0,0.104269 -10964,3406:130,60,-43,0,0,0.108468 -10965,3406:131,61,-43,0,0,0.109716 -10966,3406:132,62,-43,0,0,0.107666 -10967,3406:133,63,-43,0,0,0.105591 -10968,3406:134,64,-43,0,0,0.10818 -10969,3406:235,65,-43,0,0,0.107036 -10970,3406:236,66,-43,0,0,0.107134 -10971,3406:237,67,-43,0,0,0.108746 -10972,3406:238,68,-43,0,0,0.109055 -10973,3406:239,69,-43,0,0,0.109385 -10974,3407:130,70,-43,0,0,0.104471 -10975,3407:131,71,-43,0,0,0.100753 -10976,3407:132,72,-43,0,0,0.101154 -10977,3407:134,74,-43,0,0,0.102101 -10978,3407:235,75,-43,0,0,0.101547 -10979,3407:236,76,-43,0,0,0.101107 -10980,3407:237,77,-43,0,0,0.0998351 -10981,3407:238,78,-43,0,0,0.0981854 -10982,3407:239,79,-43,0,0,0.0919041 -10983,3408:130,80,-43,0,0,0.0935812 -10984,3408:131,81,-43,0,0,0.093808 -10985,3408:132,82,-43,0,0,0.0972794 -10986,3408:133,83,-43,0,0,0.10121 -10987,3408:134,84,-43,0,0,0.122153 -10988,3408:235,85,-43,0,0,0.11936 -10989,3408:236,86,-43,0,0,0.112291 -10990,3408:237,87,-43,0,0,0.113516 -10991,3408:238,88,-43,0,0,0.116877 -10992,3408:239,89,-43,0,0,0.120412 -10993,3409:130,90,-43,0,0,0.12754 -10994,3409:131,91,-43,0,0,0.13024 -10995,3409:132,92,-43,0,0,0.12923 -10996,3409:133,93,-43,0,0,0.122948 -10997,3409:134,94,-43,0,0,0.120531 -10998,3409:235,95,-43,0,0,0.116707 -10999,3409:236,96,-43,0,0,0.120924 -11000,3409:237,97,-43,0,0,0.12327 -11001,3409:238,98,-43,0,0,0.128757 -11002,3409:239,99,-43,0,0,0.126867 -11003,3410:130,100,-43,0,0,0.125035 -11004,3410:131,101,-43,0,0,0.121416 -11005,3410:132,102,-43,0,0,0.1176 -11006,3410:133,103,-43,0,0,0.112763 -11007,3410:134,104,-43,0,0,0.112753 -11008,3410:235,105,-43,0,0,0.114971 -11009,3410:236,106,-43,0,0,0.113309 -11010,3410:237,107,-43,0,0,0.120433 -11011,3410:238,108,-43,0,0,0.120575 -11012,3410:239,109,-43,0,0,0.115779 -11013,3411:130,110,-43,0,0,0.112866 -11014,3411:131,111,-43,0,0,0.115863 -11015,3411:132,112,-43,0,0,0.120162 -11016,3411:133,113,-43,0,0,0.120303 -11017,3411:134,114,-43,0,0,0.123648 -11018,3411:235,115,-43,0,0,0.140307 -11019,3411:236,116,-43,0,0,0.151017 -11020,3411:237,117,-43,0,0,0.147482 -11021,3411:238,118,-43,0,0,0.133973 -11022,3411:239,119,-43,0,0,0.137067 -11023,3412:130,120,-43,0,0,0.136218 -11024,3412:131,121,-43,0,0,0.141251 -11025,3412:132,122,-43,0,0,0.149339 -11026,3412:133,123,-43,0,0,0.150714 -11027,3412:134,124,-43,0,0,0.147624 -11028,3412:235,125,-43,0,0,0.136267 -11029,3412:236,126,-43,0,0,0.139602 -11030,3412:237,127,-43,0,0,0.145287 -11031,3412:238,128,-43,0,0,0.140816 -11032,3412:239,129,-43,0,0,0.143421 -11033,3413:130,130,-43,0,0,0.140493 -11034,3413:131,131,-43,0,0,0.13847 -11035,3413:132,132,-43,0,0,0.136982 -11036,3413:133,133,-43,0,0,0.140332 -11037,3413:134,134,-43,0,0,0.144459 -11038,3413:235,135,-43,0,0,0.155618 -11039,3413:236,136,-43,0,0,0.161373 -11040,3413:237,137,-43,0,0,0.16025 -11041,3413:238,138,-43,0,0,0.160943 -11042,3413:239,139,-43,0,0,0.160679 -11043,3414:130,140,-43,0,0,0.158845 -11044,3414:131,141,-43,0,0,0.14451 -11045,3414:132,142,-43,0,0,0.136327 -11046,3414:133,143,-43,0,0,0.144612 -11047,3414:134,144,-43,0,0,0.136569 -11048,3414:235,145,-43,0,0,0.127677 -11049,3414:236,146,-43,0,0,0.13383 -11050,3414:237,147,-43,0,0,0.136363 -11051,3414:238,148,-43,0,0,0.150754 -11052,3414:239,149,-43,0,0,0.172588 -11053,3415:130,150,-43,0,0,0.164582 -11054,3415:131,151,-43,0,0,0.171155 -11055,3415:132,152,-43,0,0,0.175706 -11056,3415:133,153,-43,0,0,0.174045 -11057,3415:134,154,-43,0,0,0.177319 -11058,3415:235,155,-43,0,0,0.174282 -11059,3415:236,156,-43,0,0,0.164597 -11060,3415:237,157,-43,0,0,0.16454 -11061,3415:238,158,-43,0,0,0.166399 -11062,3415:239,159,-43,0,0,0.168692 -11063,3416:130,160,-43,0,0,0.17443 -11064,3416:131,161,-43,0,0,0.180762 -11065,3416:132,162,-43,0,0,0.183902 -11066,3416:133,163,-43,0,0,0.179897 -11067,3416:134,164,-43,0,0,0.175766 -11068,3416:235,165,-43,0,0,0.176795 -11069,3416:236,166,-43,0,0,0.19004 -11070,3416:237,167,-43,0,0,0.184612 -11071,3416:238,168,-43,0,0,0.18186 -11072,3416:239,169,-43,0,0,0.179821 -11073,3417:130,170,-43,0,0,0.178235 -11074,3417:131,171,-43,0,0,0.176586 -11075,3417:132,172,-43,0,0,0.17678 -11076,3417:133,173,-43,0,0,0.179261 -11077,3417:134,174,-43,0,0,0.181616 -11078,3417:235,175,-43,0,0,0.171359 -11079,3417:236,176,-43,0,0,0.159422 -11080,3417:237,177,-43,0,0,0.164964 -11081,3417:238,178,-43,0,0,0.164922 -11082,3417:239,179,-43,0,0,0.167113 -11083,3418:130,180,-43,0,0,0.176825 -11084,5418:120,-180,-42,0,0,0.173352 -11085,5417:229,-179,-42,0,0,0.174031 -11086,5417:228,-178,-42,0,0,0.17587 -11087,5417:227,-177,-42,0,0,0.180503 -11088,5417:226,-176,-42,0,0,0.182028 -11089,5417:225,-175,-42,0,0,0.186569 -11090,5417:124,-174,-42,0,0,0.193014 -11091,5417:123,-173,-42,0,0,0.188102 -11092,5417:122,-172,-42,0,0,0.18534 -11093,5417:121,-171,-42,0,0,0.17917 -11094,5417:120,-170,-42,0,0,0.175959 -11095,5416:229,-169,-42,0,0,0.174934 -11096,5416:228,-168,-42,0,0,0.191945 -11097,5416:227,-167,-42,0,0,0.192439 -11098,5416:226,-166,-42,0,0,0.194266 -11099,5416:225,-165,-42,0,0,0.194669 -11100,5416:124,-164,-42,0,0,0.191022 -11101,5416:123,-163,-42,0,0,0.179548 -11102,5416:122,-162,-42,0,0,0.182319 -11103,5416:121,-161,-42,0,0,0.193993 -11104,5416:120,-160,-42,0,0,0.194491 -11105,5415:229,-159,-42,0,0,0.193511 -11106,5415:228,-158,-42,0,0,0.200253 -11107,5415:227,-157,-42,0,0,0.2082 -11108,5415:226,-156,-42,0,0,0.212346 -11109,5415:225,-155,-42,0,0,0.209916 -11110,5415:124,-154,-42,0,0,0.214087 -11111,5415:123,-153,-42,0,0,0.220746 -11112,5415:122,-152,-42,0,0,0.221738 -11113,5415:121,-151,-42,0,0,0.21909 -11114,5415:120,-150,-42,0,0,0.218212 -11115,5414:229,-149,-42,0,0,0.217302 -11116,5414:228,-148,-42,0,0,0.211214 -11117,5414:227,-147,-42,0,0,0.206107 -11118,5414:226,-146,-42,0,0,0.210598 -11119,5414:225,-145,-42,0,0,0.21381 -11120,5414:124,-144,-42,0,0,0.212827 -11121,5414:123,-143,-42,0,0,0.215369 -11122,5414:122,-142,-42,0,0,0.212638 -11123,5414:121,-141,-42,0,0,0.202019 -11124,5414:120,-140,-42,0,0,0.20187 -11125,5413:229,-139,-42,0,0,0.208777 -11126,5413:228,-138,-42,0,0,0.214381 -11127,5413:227,-137,-42,0,0,0.212054 -11128,5413:226,-136,-42,0,0,0.215091 -11129,5413:225,-135,-42,0,0,0.214415 -11130,5413:124,-134,-42,0,0,0.209337 -11131,5413:123,-133,-42,0,0,0.209082 -11132,5413:122,-132,-42,0,0,0.205318 -11133,5413:121,-131,-42,0,0,0.207506 -11134,5413:120,-130,-42,0,0,0.206377 -11135,5412:229,-129,-42,0,0,0.203164 -11136,5412:228,-128,-42,0,0,0.205519 -11137,5412:227,-127,-42,0,0,0.203681 -11138,5412:226,-126,-42,0,0,0.194894 -11139,5412:225,-125,-42,0,0,0.199349 -11140,5412:124,-124,-42,0,0,0.200714 -11141,5412:123,-123,-42,0,0,0.190578 -11142,5412:122,-122,-42,0,0,0.183763 -11143,5412:121,-121,-42,0,0,0.183056 -11144,5412:120,-120,-42,0,0,0.183594 -11145,5411:229,-119,-42,0,0,0.181738 -11146,5411:228,-118,-42,0,0,0.181478 -11147,5411:227,-117,-42,0,0,0.186351 -11148,5411:226,-116,-42,0,0,0.187053 -11149,5411:225,-115,-42,0,0,0.182396 -11150,5411:124,-114,-42,0,0,0.180306 -11151,5411:123,-113,-42,0,0,0.176601 -11152,5411:122,-112,-42,0,0,0.176362 -11153,5411:121,-111,-42,0,0,0.176183 -11154,5411:120,-110,-42,0,0,0.173367 -11155,5410:229,-109,-42,0,0,0.173942 -11156,5410:228,-108,-42,0,0,0.174075 -11157,5410:227,-107,-42,0,0,0.170922 -11158,5410:226,-106,-42,0,0,0.172354 -11159,5410:225,-105,-42,0,0,0.169862 -11160,5410:124,-104,-42,0,0,0.170079 -11161,5410:123,-103,-42,0,0,0.172383 -11162,5410:122,-102,-42,0,0,0.171608 -11163,5410:121,-101,-42,0,0,0.167958 -11164,5410:120,-100,-42,0,0,0.167714 -11165,5409:229,-99,-42,0,0,0.168677 -11166,5409:228,-98,-42,0,0,0.16803 -11167,5409:227,-97,-42,0,0,0.166071 -11168,5409:226,-96,-42,0,0,0.166998 -11169,5409:225,-95,-42,0,0,0.166285 -11170,5409:124,-94,-42,0,0,0.167915 -11171,5409:123,-93,-42,0,0,0.16803 -11172,5409:122,-92,-42,0,0,0.166684 -11173,5409:121,-91,-42,0,0,0.165276 -11174,5409:120,-90,-42,0,0,0.167456 -11175,5408:229,-89,-42,0,0,0.167084 -11176,5408:228,-88,-42,0,0,0.166584 -11177,5408:227,-87,-42,0,0,0.165673 -11178,5408:226,-86,-42,0,0,0.164696 -11179,5408:225,-85,-42,0,0,0.164625 -11180,5408:124,-84,-42,0,0,0.163709 -11181,5408:123,-83,-42,0,0,0.162908 -11182,5408:122,-82,-42,0,0,0.16267 -11183,5408:121,-81,-42,0,0,0.166399 -11184,5408:120,-80,-42,0,0,0.167385 -11185,5407:229,-79,-42,0,0,0.16423 -11186,5407:228,-78,-42,0,0,0.167843 -11187,5407:227,-77,-42,0,0,0.171316 -11188,5407:226,-76,-42,0,0,0.184087 -11189,5407:225,-75,-42,0,0,0.19554 -11190,5406:228,-68,-42,0,0,0.184953 -11191,5406:227,-67,-42,0,0,0.167528 -11192,5406:226,-66,-42,0,0,0.16361 -11193,5406:225,-65,-42,0,0,0.16361 -11194,5406:124,-64,-42,0,0,0.165347 -11195,5406:123,-63,-42,0,0,0.1661 -11196,5406:122,-62,-42,0,0,0.167786 -11197,5406:121,-61,-42,0,0,0.177679 -11198,5405:228,-58,-42,0,0,0.200417 -11199,5405:227,-57,-42,0,0,0.166798 -11200,5405:226,-56,-42,0,0,0.158653 -11201,5405:225,-55,-42,0,0,0.152964 -11202,5405:124,-54,-42,0,0,0.145631 -11203,5405:123,-53,-42,0,0,0.144434 -11204,5405:122,-52,-42,0,0,0.145849 -11205,5405:121,-51,-42,0,0,0.145926 -11206,5405:120,-50,-42,0,0,0.143144 -11207,5404:229,-49,-42,0,0,0.13426 -11208,5404:228,-48,-42,0,0,0.132644 -11209,5404:227,-47,-42,0,0,0.127289 -11210,5404:226,-46,-42,0,0,0.126696 -11211,5404:225,-45,-42,0,0,0.128699 -11212,5404:124,-44,-42,0,0,0.130077 -11213,5404:123,-43,-42,0,0,0.130612 -11214,5404:122,-42,-42,0,0,0.127152 -11215,5404:121,-41,-42,0,0,0.119533 -11216,5404:120,-40,-42,0,0,0.123303 -11217,5403:229,-39,-42,0,0,0.123181 -11218,5403:228,-38,-42,0,0,0.122716 -11219,5403:227,-37,-42,0,0,0.117058 -11220,5403:226,-36,-42,0,0,0.120859 -11221,5403:225,-35,-42,0,0,0.117824 -11222,5403:124,-34,-42,0,0,0.114648 -11223,5403:123,-33,-42,0,0,0.103905 -11224,5403:122,-32,-42,0,0,0.107824 -11225,5403:121,-31,-42,0,0,0.109066 -11226,5403:120,-30,-42,0,0,0.110179 -11227,5402:229,-29,-42,0,0,0.119317 -11228,5402:228,-28,-42,0,0,0.12588 -11229,5402:227,-27,-42,0,0,0.121361 -11230,5402:226,-26,-42,0,0,0.121844 -11231,5402:225,-25,-42,0,0,0.121449 -11232,5402:124,-24,-42,0,0,0.124161 -11233,5402:123,-23,-42,0,0,0.120891 -11234,5402:122,-22,-42,0,0,0.120979 -11235,5402:121,-21,-42,0,0,0.118649 -11236,5402:120,-20,-42,0,0,0.119392 -11237,5401:229,-19,-42,0,0,0.115905 -11238,5401:228,-18,-42,0,0,0.125655 -11239,5401:227,-17,-42,0,0,0.12974 -11240,5401:226,-16,-42,0,0,0.123358 -11241,5401:225,-15,-42,0,0,0.122682 -11242,5401:124,-14,-42,0,0,0.120782 -11243,5401:123,-13,-42,0,0,0.127769 -11244,5401:122,-12,-42,0,0,0.129798 -11245,5401:121,-11,-42,0,0,0.119934 -11246,5401:120,-10,-42,0,0,0.112835 -11247,5400:229,-9,-42,0,0,0.104653 -11248,5400:228,-8,-42,0,0,0.105097 -11249,5400:227,-7,-42,0,0,0.104355 -11250,5400:226,-6,-42,0,0,0.103819 -11251,5400:225,-5,-42,0,0,0.0984587 -11252,5400:124,-4,-42,0,0,0.0976589 -11253,5400:123,-3,-42,0,0,0.103428 -11254,5400:122,-2,-42,0,0,0.0985862 -11255,5400:121,-1,-42,0,0,0.0986227 -11256,3400:121,0,-42,0,0,0.0963628 -11257,3400:121,1,-42,0,0,0.0942546 -11258,3400:122,2,-42,0,0,0.0951352 -11259,3400:123,3,-42,0,0,0.0961304 -11260,3400:124,4,-42,0,0,0.0948616 -11261,3400:225,5,-42,0,0,0.0990713 -11262,3400:226,6,-42,0,0,0.114564 -11263,3400:227,7,-42,0,0,0.112804 -11264,3400:228,8,-42,0,0,0.108448 -11265,3400:229,9,-42,0,0,0.102205 -11266,3401:120,10,-42,0,0,0.107163 -11267,3401:121,11,-42,0,0,0.10823 -11268,3401:122,12,-42,0,0,0.106292 -11269,3401:123,13,-42,0,0,0.094747 -11270,3401:124,14,-42,0,0,0.0988881 -11271,3401:225,15,-42,0,0,0.0981399 -11272,3401:226,16,-42,0,0,0.0963898 -11273,3401:227,17,-42,0,0,0.0960144 -11274,3401:228,18,-42,0,0,0.0967753 -11275,3401:229,19,-42,0,0,0.0940442 -11276,3402:120,20,-42,0,0,0.0987781 -11277,3402:121,21,-42,0,0,0.0998444 -11278,3402:122,22,-42,0,0,0.0947117 -11279,3402:123,23,-42,0,0,0.0944478 -11280,3402:124,24,-42,0,0,0.101117 -11281,3402:225,25,-42,0,0,0.105175 -11282,3402:226,26,-42,0,0,0.104663 -11283,3402:227,27,-42,0,0,0.105834 -11284,3402:228,28,-42,0,0,0.100567 -11285,3402:229,29,-42,0,0,0.0969731 -11286,3403:120,30,-42,0,0,0.107134 -11287,3403:121,31,-42,0,0,0.118897 -11288,3403:122,32,-42,0,0,0.11302 -11289,3403:123,33,-42,0,0,0.106438 -11290,3403:124,34,-42,0,0,0.103485 -11291,3403:225,35,-42,0,0,0.102782 -11292,3403:226,36,-42,0,0,0.105475 -11293,3403:227,37,-42,0,0,0.10636 -11294,3403:228,38,-42,0,0,0.108002 -11295,3403:229,39,-42,0,0,0.103981 -11296,3404:120,40,-42,0,0,0.104615 -11297,3404:121,41,-42,0,0,0.104394 -11298,3404:122,42,-42,0,0,0.103047 -11299,3404:123,43,-42,0,0,0.105795 -11300,3404:124,44,-42,0,0,0.106644 -11301,3404:225,45,-42,0,0,0.109887 -11302,3404:226,46,-42,0,0,0.111546 -11303,3404:227,47,-42,0,0,0.109095 -11304,3404:228,48,-42,0,0,0.107468 -11305,3404:229,49,-42,0,0,0.112394 -11306,3405:120,50,-42,0,0,0.110058 -11307,3405:121,51,-42,0,0,0.110138 -11308,3405:122,52,-42,0,0,0.110491 -11309,3405:123,53,-42,0,0,0.110582 -11310,3405:124,54,-42,0,0,0.108498 -11311,3405:225,55,-42,0,0,0.106898 -11312,3405:226,56,-42,0,0,0.109526 -11313,3405:227,57,-42,0,0,0.112486 -11314,3405:228,58,-42,0,0,0.109636 -11315,3405:229,59,-42,0,0,0.107962 -11316,3406:120,60,-42,0,0,0.113712 -11317,3406:121,61,-42,0,0,0.113619 -11318,3406:122,62,-42,0,0,0.112281 -11319,3406:123,63,-42,0,0,0.111119 -11320,3406:124,64,-42,0,0,0.111862 -11321,3406:225,65,-42,0,0,0.112877 -11322,3406:226,66,-42,0,0,0.112086 -11323,3406:227,67,-42,0,0,0.111139 -11324,3406:228,68,-42,0,0,0.109335 -11325,3406:229,69,-42,0,0,0.106175 -11326,3407:120,70,-42,0,0,0.103723 -11327,3407:121,71,-42,0,0,0.102394 -11328,3407:122,72,-42,0,0,0.103446 -11329,3407:124,74,-42,0,0,0.10474 -11330,3407:225,75,-42,0,0,0.10378 -11331,3407:226,76,-42,0,0,0.101191 -11332,3407:227,77,-42,0,0,0.0959165 -11333,3407:228,78,-42,0,0,0.0929903 -11334,3407:229,79,-42,0,0,0.109385 -11335,3408:120,80,-42,0,0,0.123148 -11336,3408:121,81,-42,0,0,0.129057 -11337,3408:122,82,-42,0,0,0.122274 -11338,3408:123,83,-42,0,0,0.126879 -11339,3408:124,84,-42,0,0,0.129577 -11340,3408:225,85,-42,0,0,0.135579 -11341,3408:226,86,-42,0,0,0.129555 -11342,3408:227,87,-42,0,0,0.126367 -11343,3408:228,88,-42,0,0,0.130449 -11344,3408:229,89,-42,0,0,0.133914 -11345,3409:120,90,-42,0,0,0.143093 -11346,3409:121,91,-42,0,0,0.147572 -11347,3409:122,92,-42,0,0,0.135868 -11348,3409:123,93,-42,0,0,0.127209 -11349,3409:124,94,-42,0,0,0.123748 -11350,3409:225,95,-42,0,0,0.126084 -11351,3409:226,96,-42,0,0,0.12801 -11352,3409:227,97,-42,0,0,0.128688 -11353,3409:228,98,-42,0,0,0.132833 -11354,3409:229,99,-42,0,0,0.13122 -11355,3410:120,100,-42,0,0,0.127243 -11356,3410:121,101,-42,0,0,0.123059 -11357,3410:122,102,-42,0,0,0.122208 -11358,3410:123,103,-42,0,0,0.12276 -11359,3410:124,104,-42,0,0,0.121789 -11360,3410:225,105,-42,0,0,0.120488 -11361,3410:226,106,-42,0,0,0.117494 -11362,3410:227,107,-42,0,0,0.119231 -11363,3410:228,108,-42,0,0,0.121537 -11364,3410:229,109,-42,0,0,0.126129 -11365,3411:120,110,-42,0,0,0.12357 -11366,3411:121,111,-42,0,0,0.132408 -11367,3411:122,112,-42,0,0,0.132125 -11368,3411:123,113,-42,0,0,0.128331 -11369,3411:124,114,-42,0,0,0.134786 -11370,3411:225,115,-42,0,0,0.13863 -11371,3411:226,116,-42,0,0,0.15363 -11372,3411:227,117,-42,0,0,0.153978 -11373,3411:228,118,-42,0,0,0.144447 -11374,3411:229,119,-42,0,0,0.138372 -11375,3412:120,120,-42,0,0,0.141838 -11376,3412:121,121,-42,0,0,0.143169 -11377,3412:122,122,-42,0,0,0.145695 -11378,3412:123,123,-42,0,0,0.15032 -11379,3412:124,124,-42,0,0,0.150754 -11380,3412:225,125,-42,0,0,0.154635 -11381,3412:226,126,-42,0,0,0.15339 -11382,3412:227,127,-42,0,0,0.147818 -11383,3412:228,128,-42,0,0,0.175186 -11384,3412:229,129,-42,0,0,0.1797 -11385,3413:120,130,-42,0,0,0.178672 -11386,3413:121,131,-42,0,0,0.174711 -11387,3413:122,132,-42,0,0,0.169052 -11388,3413:123,133,-42,0,0,0.171797 -11389,3413:124,134,-42,0,0,0.175691 -11390,3413:225,135,-42,0,0,0.17529 -11391,3413:226,136,-42,0,0,0.174193 -11392,3413:227,137,-42,0,0,0.170108 -11393,3413:228,138,-42,0,0,0.161345 -11394,3413:229,139,-42,0,0,0.163695 -11395,3414:120,140,-42,0,0,0.158338 -11396,3414:121,141,-42,0,0,0.143649 -11397,3414:122,142,-42,0,0,0.143876 -11398,3414:123,143,-42,0,0,0.160388 -11399,3414:124,144,-42,0,0,0.159119 -11400,3414:225,145,-42,0,0,0.148817 -11401,3414:226,146,-42,0,0,0.137822 -11402,3414:227,147,-42,0,0,0.167399 -11403,3414:228,148,-42,0,0,0.187162 -11404,3414:229,149,-42,0,0,0.184149 -11405,3415:120,150,-42,0,0,0.165773 -11406,3415:121,151,-42,0,0,0.170457 -11407,3415:122,152,-42,0,0,0.172691 -11408,3415:123,153,-42,0,0,0.174134 -11409,3415:124,154,-42,0,0,0.182136 -11410,3415:225,155,-42,0,0,0.18258 -11411,3415:226,156,-42,0,0,0.17486 -11412,3415:227,157,-42,0,0,0.173574 -11413,3415:228,158,-42,0,0,0.182795 -11414,3415:229,159,-42,0,0,0.18401 -11415,3416:120,160,-42,0,0,0.18884 -11416,3416:121,161,-42,0,0,0.190657 -11417,3416:122,162,-42,0,0,0.191006 -11418,3416:123,163,-42,0,0,0.190325 -11419,3416:124,164,-42,0,0,0.185869 -11420,3416:225,165,-42,0,0,0.185511 -11421,3416:226,166,-42,0,0,0.192743 -11422,3416:227,167,-42,0,0,0.191754 -11423,3416:228,168,-42,0,0,0.189582 -11424,3416:229,169,-42,0,0,0.183163 -11425,3417:120,170,-42,0,0,0.17917 -11426,3417:121,171,-42,0,0,0.177574 -11427,3417:122,172,-42,0,0,0.17825 -11428,3417:123,173,-42,0,0,0.179019 -11429,3417:124,174,-42,0,0,0.180823 -11430,3417:225,175,-42,0,0,0.180018 -11431,3417:226,176,-42,0,0,0.164625 -11432,3417:227,177,-42,0,0,0.164442 -11433,3417:228,178,-42,0,0,0.167141 -11434,3417:229,179,-42,0,0,0.173441 -11435,3418:120,180,-42,0,0,0.173352 -11436,5418:110,-180,-41,0,0,0.173191 -11437,5417:219,-179,-41,0,0,0.171549 -11438,5417:218,-178,-41,0,0,0.17322 -11439,5417:217,-177,-41,0,0,0.190546 -11440,5417:216,-176,-41,0,0,0.192232 -11441,5417:215,-175,-41,0,0,0.188322 -11442,5417:114,-174,-41,0,0,0.194943 -11443,5417:113,-173,-41,0,0,0.19433 -11444,5417:112,-172,-41,0,0,0.200648 -11445,5417:111,-171,-41,0,0,0.191006 -11446,5417:110,-170,-41,0,0,0.190245 -11447,5416:219,-169,-41,0,0,0.187788 -11448,5416:218,-168,-41,0,0,0.18903 -11449,5416:217,-167,-41,0,0,0.183579 -11450,5416:216,-166,-41,0,0,0.188385 -11451,5416:215,-165,-41,0,0,0.187773 -11452,5416:114,-164,-41,0,0,0.199136 -11453,5416:113,-163,-41,0,0,0.213741 -11454,5416:112,-162,-41,0,0,0.195007 -11455,5416:111,-161,-41,0,0,0.196219 -11456,5416:110,-160,-41,0,0,0.202616 -11457,5415:219,-159,-41,0,0,0.213707 -11458,5415:218,-158,-41,0,0,0.22622 -11459,5415:217,-157,-41,0,0,0.232668 -11460,5415:216,-156,-41,0,0,0.232173 -11461,5415:215,-155,-41,0,0,0.225843 -11462,5415:114,-154,-41,0,0,0.213189 -11463,5415:113,-153,-41,0,0,0.218703 -11464,5415:112,-152,-41,0,0,0.230074 -11465,5415:111,-151,-41,0,0,0.223998 -11466,5415:110,-150,-41,0,0,0.222306 -11467,5414:219,-149,-41,0,0,0.217232 -11468,5414:218,-148,-41,0,0,0.2208 -11469,5414:217,-147,-41,0,0,0.226832 -11470,5414:216,-146,-41,0,0,0.227716 -11471,5414:215,-145,-41,0,0,0.226688 -11472,5414:114,-144,-41,0,0,0.225448 -11473,5414:113,-143,-41,0,0,0.221419 -11474,5414:112,-142,-41,0,0,0.218914 -11475,5414:111,-141,-41,0,0,0.221968 -11476,5414:110,-140,-41,0,0,0.226544 -11477,5413:219,-139,-41,0,0,0.227463 -11478,5413:218,-138,-41,0,0,0.224391 -11479,5413:217,-137,-41,0,0,0.222413 -11480,5413:216,-136,-41,0,0,0.223605 -11481,5413:215,-135,-41,0,0,0.221826 -11482,5413:114,-134,-41,0,0,0.220252 -11483,5413:113,-133,-41,0,0,0.219846 -11484,5413:112,-132,-41,0,0,0.217704 -11485,5413:111,-131,-41,0,0,0.216709 -11486,5413:110,-130,-41,0,0,0.216482 -11487,5412:219,-129,-41,0,0,0.216133 -11488,5412:218,-128,-41,0,0,0.215612 -11489,5412:217,-127,-41,0,0,0.213638 -11490,5412:216,-126,-41,0,0,0.201258 -11491,5412:215,-125,-41,0,0,0.201275 -11492,5412:114,-124,-41,0,0,0.204648 -11493,5412:113,-123,-41,0,0,0.205034 -11494,5412:112,-122,-41,0,0,0.193399 -11495,5412:111,-121,-41,0,0,0.196625 -11496,5412:110,-120,-41,0,0,0.191117 -11497,5411:219,-119,-41,0,0,0.191244 -11498,5411:218,-118,-41,0,0,0.194185 -11499,5411:217,-117,-41,0,0,0.192535 -11500,5411:216,-116,-41,0,0,0.192903 -11501,5411:215,-115,-41,0,0,0.194749 -11502,5411:114,-114,-41,0,0,0.195766 -11503,5411:113,-113,-41,0,0,0.192903 -11504,5411:112,-112,-41,0,0,0.187366 -11505,5411:111,-111,-41,0,0,0.181707 -11506,5411:110,-110,-41,0,0,0.182136 -11507,5410:219,-109,-41,0,0,0.182564 -11508,5410:218,-108,-41,0,0,0.178551 -11509,5410:217,-107,-41,0,0,0.180884 -11510,5410:216,-106,-41,0,0,0.180625 -11511,5410:215,-105,-41,0,0,0.181097 -11512,5410:114,-104,-41,0,0,0.182166 -11513,5410:113,-103,-41,0,0,0.179518 -11514,5410:112,-102,-41,0,0,0.176347 -11515,5410:111,-101,-41,0,0,0.176153 -11516,5410:110,-100,-41,0,0,0.177409 -11517,5409:219,-99,-41,0,0,0.176272 -11518,5409:218,-98,-41,0,0,0.173603 -11519,5409:217,-97,-41,0,0,0.171534 -11520,5409:216,-96,-41,0,0,0.172412 -11521,5409:215,-95,-41,0,0,0.171155 -11522,5409:114,-94,-41,0,0,0.17114 -11523,5409:113,-93,-41,0,0,0.172706 -11524,5409:112,-92,-41,0,0,0.174164 -11525,5409:111,-91,-41,0,0,0.172134 -11526,5409:110,-90,-41,0,0,0.171608 -11527,5408:219,-89,-41,0,0,0.170879 -11528,5408:218,-88,-41,0,0,0.169847 -11529,5408:217,-87,-41,0,0,0.169298 -11530,5408:216,-86,-41,0,0,0.169182 -11531,5408:215,-85,-41,0,0,0.168922 -11532,5408:114,-84,-41,0,0,0.168548 -11533,5408:113,-83,-41,0,0,0.167485 -11534,5408:112,-82,-41,0,0,0.174874 -11535,5408:111,-81,-41,0,0,0.1744 -11536,5408:110,-80,-41,0,0,0.177949 -11537,5407:219,-79,-41,0,0,0.179669 -11538,5407:218,-78,-41,0,0,0.175112 -11539,5407:217,-77,-41,0,0,0.179942 -11540,5407:216,-76,-41,0,0,0.194009 -11541,5407:215,-75,-41,0,0,0.210104 -11542,5406:219,-69,-41,0,0,0.204515 -11543,5406:218,-68,-41,0,0,0.183671 -11544,5406:217,-67,-41,0,0,0.180139 -11545,5406:216,-66,-41,0,0,0.178883 -11546,5406:215,-65,-41,0,0,0.17587 -11547,5406:114,-64,-41,0,0,0.174371 -11548,5406:113,-63,-41,0,0,0.174178 -11549,5406:112,-62,-41,0,0,0.176825 -11550,5406:111,-61,-41,0,0,0.189077 -11551,5406:110,-60,-41,0,0,0.195588 -11552,5405:219,-59,-41,0,0,0.194057 -11553,5405:218,-58,-41,0,0,0.18128 -11554,5405:217,-57,-41,0,0,0.169891 -11555,5405:216,-56,-41,0,0,0.162279 -11556,5405:215,-55,-41,0,0,0.157096 -11557,5405:114,-54,-41,0,0,0.148454 -11558,5405:113,-53,-41,0,0,0.146413 -11559,5405:112,-52,-41,0,0,0.148791 -11560,5405:111,-51,-41,0,0,0.149182 -11561,5405:110,-50,-41,0,0,0.140456 -11562,5404:219,-49,-41,0,0,0.137091 -11563,5404:218,-48,-41,0,0,0.135784 -11564,5404:217,-47,-41,0,0,0.140121 -11565,5404:216,-46,-41,0,0,0.138679 -11566,5404:215,-45,-41,0,0,0.137407 -11567,5404:114,-44,-41,0,0,0.137055 -11568,5404:113,-43,-41,0,0,0.138201 -11569,5404:112,-42,-41,0,0,0.135062 -11570,5404:111,-41,-41,0,0,0.131244 -11571,5404:110,-40,-41,0,0,0.125181 -11572,5403:219,-39,-41,0,0,0.139799 -11573,5403:218,-38,-41,0,0,0.145555 -11574,5403:217,-37,-41,0,0,0.146683 -11575,5403:216,-36,-41,0,0,0.141788 -11576,5403:215,-35,-41,0,0,0.130577 -11577,5403:114,-34,-41,0,0,0.131513 -11578,5403:113,-33,-41,0,0,0.133688 -11579,5403:112,-32,-41,0,0,0.127849 -11580,5403:111,-31,-41,0,0,0.130228 -11581,5403:110,-30,-41,0,0,0.133177 -11582,5402:219,-29,-41,0,0,0.131631 -11583,5402:218,-28,-41,0,0,0.134654 -11584,5402:217,-27,-41,0,0,0.131314 -11585,5402:216,-26,-41,0,0,0.126129 -11586,5402:215,-25,-41,0,0,0.130787 -11587,5402:114,-24,-41,0,0,0.131314 -11588,5402:113,-23,-41,0,0,0.133533 -11589,5402:112,-22,-41,0,0,0.133581 -11590,5402:111,-21,-41,0,0,0.126333 -11591,5402:110,-20,-41,0,0,0.12562 -11592,5401:219,-19,-41,0,0,0.125542 -11593,5401:218,-18,-41,0,0,0.124083 -11594,5401:217,-17,-41,0,0,0.135002 -11595,5401:216,-16,-41,0,0,0.131291 -11596,5401:215,-15,-41,0,0,0.129381 -11597,5401:114,-14,-41,0,0,0.133284 -11598,5401:113,-13,-41,0,0,0.139011 -11599,5401:112,-12,-41,0,0,0.135543 -11600,5401:111,-11,-41,0,0,0.13156 -11601,5401:110,-10,-41,0,0,0.129103 -11602,5400:219,-9,-41,0,0,0.11908 -11603,5400:218,-8,-41,0,0,0.107301 -11604,5400:217,-7,-41,0,0,0.106839 -11605,5400:216,-6,-41,0,0,0.101913 -11606,5400:215,-5,-41,0,0,0.101781 -11607,5400:114,-4,-41,0,0,0.103523 -11608,5400:113,-3,-41,0,0,0.11121 -11609,5400:112,-2,-41,0,0,0.107242 -11610,5400:111,-1,-41,0,0,0.109255 -11611,3400:111,0,-41,0,0,0.11175 -11612,3400:111,1,-41,0,0,0.102886 -11613,3400:112,2,-41,0,0,0.102715 -11614,3400:113,3,-41,0,0,0.103332 -11615,3400:114,4,-41,0,0,0.101117 -11616,3400:215,5,-41,0,0,0.107104 -11617,3400:216,6,-41,0,0,0.122329 -11618,3400:217,7,-41,0,0,0.108796 -11619,3400:218,8,-41,0,0,0.112086 -11620,3400:219,9,-41,0,0,0.115852 -11621,3401:110,10,-41,0,0,0.115464 -11622,3401:111,11,-41,0,0,0.109405 -11623,3401:112,12,-41,0,0,0.111018 -11624,3401:113,13,-41,0,0,0.108032 -11625,3401:114,14,-41,0,0,0.101631 -11626,3401:215,15,-41,0,0,0.104644 -11627,3401:216,16,-41,0,0,0.113733 -11628,3401:217,17,-41,0,0,0.113702 -11629,3401:218,18,-41,0,0,0.113992 -11630,3401:219,19,-41,0,0,0.103848 -11631,3402:110,20,-41,0,0,0.101014 -11632,3402:111,21,-41,0,0,0.104653 -11633,3402:112,22,-41,0,0,0.114658 -11634,3402:113,23,-41,0,0,0.102526 -11635,3402:114,24,-41,0,0,0.101285 -11636,3402:215,25,-41,0,0,0.106869 -11637,3402:216,26,-41,0,0,0.104211 -11638,3402:217,27,-41,0,0,0.117259 -11639,3402:218,28,-41,0,0,0.127323 -11640,3402:219,29,-41,0,0,0.110602 -11641,3403:110,30,-41,0,0,0.12088 -11642,3403:111,31,-41,0,0,0.116338 -11643,3403:112,32,-41,0,0,0.109166 -11644,3403:113,33,-41,0,0,0.10502 -11645,3403:114,34,-41,0,0,0.106301 -11646,3403:215,35,-41,0,0,0.110572 -11647,3403:216,36,-41,0,0,0.111403 -11648,3403:217,37,-41,0,0,0.107932 -11649,3403:218,38,-41,0,0,0.110865 -11650,3403:219,39,-41,0,0,0.115884 -11651,3404:110,40,-41,0,0,0.108736 -11652,3404:111,41,-41,0,0,0.108597 -11653,3404:112,42,-41,0,0,0.109887 -11654,3404:113,43,-41,0,0,0.110471 -11655,3404:114,44,-41,0,0,0.115348 -11656,3404:215,45,-41,0,0,0.117121 -11657,3404:216,46,-41,0,0,0.116274 -11658,3404:217,47,-41,0,0,0.112036 -11659,3404:218,48,-41,0,0,0.11033 -11660,3404:219,49,-41,0,0,0.114637 -11661,3405:110,50,-41,0,0,0.111801 -11662,3405:111,51,-41,0,0,0.113216 -11663,3405:112,52,-41,0,0,0.114242 -11664,3405:113,53,-41,0,0,0.114335 -11665,3405:114,54,-41,0,0,0.115516 -11666,3405:215,55,-41,0,0,0.113495 -11667,3405:216,56,-41,0,0,0.110653 -11668,3405:217,57,-41,0,0,0.114387 -11669,3405:218,58,-41,0,0,0.11224 -11670,3405:219,59,-41,0,0,0.119155 -11671,3406:110,60,-41,0,0,0.118509 -11672,3406:111,61,-41,0,0,0.117398 -11673,3406:112,62,-41,0,0,0.116909 -11674,3406:113,63,-41,0,0,0.115632 -11675,3406:114,64,-41,0,0,0.113909 -11676,3406:215,65,-41,0,0,0.11301 -11677,3406:216,66,-41,0,0,0.111719 -11678,3406:217,67,-41,0,0,0.108906 -11679,3406:218,68,-41,0,0,0.109085 -11680,3406:219,69,-41,0,0,0.109185 -11681,3407:110,70,-41,0,0,0.109095 -11682,3407:111,71,-41,0,0,0.107114 -11683,3407:112,72,-41,0,0,0.107282 -11684,3407:114,74,-41,0,0,0.107291 -11685,3407:215,75,-41,0,0,0.103123 -11686,3407:216,76,-41,0,0,0.0969009 -11687,3407:217,77,-41,0,0,0.11033 -11688,3407:218,78,-41,0,0,0.113826 -11689,3407:219,79,-41,0,0,0.11034 -11690,3408:110,80,-41,0,0,0.141851 -11691,3408:111,81,-41,0,0,0.14493 -11692,3408:112,82,-41,0,0,0.143131 -11693,3408:113,83,-41,0,0,0.138152 -11694,3408:114,84,-41,0,0,0.141976 -11695,3408:215,85,-41,0,0,0.14649 -11696,3408:216,86,-41,0,0,0.144828 -11697,3408:217,87,-41,0,0,0.141214 -11698,3408:218,88,-41,0,0,0.143409 -11699,3408:219,89,-41,0,0,0.155133 -11700,3409:110,90,-41,0,0,0.152911 -11701,3409:111,91,-41,0,0,0.161137 -11702,3409:112,92,-41,0,0,0.153444 -11703,3409:113,93,-41,0,0,0.14094 -11704,3409:114,94,-41,0,0,0.146914 -11705,3409:215,95,-41,0,0,0.151399 -11706,3409:216,96,-41,0,0,0.147779 -11707,3409:217,97,-41,0,0,0.144485 -11708,3409:218,98,-41,0,0,0.140828 -11709,3409:219,99,-41,0,0,0.138323 -11710,3410:110,100,-41,0,0,0.138789 -11711,3410:111,101,-41,0,0,0.139121 -11712,3410:112,102,-41,0,0,0.137176 -11713,3410:113,103,-41,0,0,0.129473 -11714,3410:114,104,-41,0,0,0.127918 -11715,3410:215,105,-41,0,0,0.130566 -11716,3410:216,106,-41,0,0,0.127929 -11717,3410:217,107,-41,0,0,0.123815 -11718,3410:218,108,-41,0,0,0.134415 -11719,3410:219,109,-41,0,0,0.134403 -11720,3411:110,110,-41,0,0,0.129172 -11721,3411:111,111,-41,0,0,0.129462 -11722,3411:112,112,-41,0,0,0.132952 -11723,3411:113,113,-41,0,0,0.139207 -11724,3411:114,114,-41,0,0,0.141988 -11725,3411:215,115,-41,0,0,0.147379 -11726,3411:216,116,-41,0,0,0.154206 -11727,3411:217,117,-41,0,0,0.148401 -11728,3411:218,118,-41,0,0,0.142879 -11729,3411:219,119,-41,0,0,0.143396 -11730,3412:110,120,-41,0,0,0.148376 -11731,3412:111,121,-41,0,0,0.163259 -11732,3412:112,122,-41,0,0,0.168533 -11733,3412:113,123,-41,0,0,0.166143 -11734,3412:114,124,-41,0,0,0.1579 -11735,3412:215,125,-41,0,0,0.158201 -11736,3412:216,126,-41,0,0,0.159601 -11737,3412:217,127,-41,0,0,0.170021 -11738,3412:218,128,-41,0,0,0.185062 -11739,3412:219,129,-41,0,0,0.17917 -11740,3413:110,130,-41,0,0,0.178235 -11741,3413:111,131,-41,0,0,0.177769 -11742,3413:112,132,-41,0,0,0.177019 -11743,3413:113,133,-41,0,0,0.174578 -11744,3413:114,134,-41,0,0,0.173868 -11745,3413:215,135,-41,0,0,0.171432 -11746,3413:216,136,-41,0,0,0.168289 -11747,3413:217,137,-41,0,0,0.16368 -11748,3413:218,138,-41,0,0,0.162447 -11749,3413:219,139,-41,0,0,0.171432 -11750,3414:110,140,-41,0,0,0.172002 -11751,3414:111,141,-41,0,0,0.197926 -11752,3414:112,142,-41,0,0,0.2025 -11753,3414:113,143,-41,0,0,0.200088 -11754,3414:114,144,-41,0,0,0.178657 -11755,3414:215,145,-41,0,0,0.168663 -11756,3414:216,146,-41,0,0,0.180412 -11757,3414:217,147,-41,0,0,0.192823 -11758,3414:218,148,-41,0,0,0.198481 -11759,3414:219,149,-41,0,0,0.190721 -11760,3415:110,150,-41,0,0,0.186756 -11761,3415:111,151,-41,0,0,0.17272 -11762,3415:112,152,-41,0,0,0.172823 -11763,3415:113,153,-41,0,0,0.189771 -11764,3415:114,154,-41,0,0,0.217599 -11765,3415:215,155,-41,0,0,0.217827 -11766,3415:216,156,-41,0,0,0.206208 -11767,3415:217,157,-41,0,0,0.180184 -11768,3415:218,158,-41,0,0,0.196446 -11769,3415:219,159,-41,0,0,0.204749 -11770,3416:110,160,-41,0,0,0.198907 -11771,3416:111,161,-41,0,0,0.200763 -11772,3416:112,162,-41,0,0,0.201903 -11773,3416:113,163,-41,0,0,0.191913 -11774,3416:114,164,-41,0,0,0.191388 -11775,3416:215,165,-41,0,0,0.193575 -11776,3416:216,166,-41,0,0,0.196738 -11777,3416:217,167,-41,0,0,0.194314 -11778,3416:218,168,-41,0,0,0.192583 -11779,3416:219,169,-41,0,0,0.186881 -11780,3417:110,170,-41,0,0,0.185263 -11781,3417:111,171,-41,0,0,0.182626 -11782,3417:112,172,-41,0,0,0.181524 -11783,3417:113,173,-41,0,0,0.181829 -11784,3417:114,174,-41,0,0,0.181799 -11785,3417:215,175,-41,0,0,0.182335 -11786,3417:216,176,-41,0,0,0.177109 -11787,3417:217,177,-41,0,0,0.172794 -11788,3417:218,178,-41,0,0,0.172765 -11789,3417:219,179,-41,0,0,0.173603 -11790,3418:110,180,-41,0,0,0.173191 -11791,5418:100,-180,-40,0,0,0.180336 -11792,5417:209,-179,-40,0,0,0.173706 -11793,5417:208,-178,-40,0,0,0.177379 -11794,5417:207,-177,-40,0,0,0.200533 -11795,5417:206,-176,-40,0,0,0.193752 -11796,5417:205,-175,-40,0,0,0.191467 -11797,5417:104,-174,-40,0,0,0.189518 -11798,5417:103,-173,-40,0,0,0.191801 -11799,5417:102,-172,-40,0,0,0.209984 -11800,5417:101,-171,-40,0,0,0.210206 -11801,5417:100,-170,-40,0,0,0.206596 -11802,5416:209,-169,-40,0,0,0.219002 -11803,5416:208,-168,-40,0,0,0.225466 -11804,5416:207,-167,-40,0,0,0.227048 -11805,5416:206,-166,-40,0,0,0.214883 -11806,5416:205,-165,-40,0,0,0.198498 -11807,5416:104,-164,-40,0,0,0.208675 -11808,5416:103,-163,-40,0,0,0.218984 -11809,5416:102,-162,-40,0,0,0.220764 -11810,5416:101,-161,-40,0,0,0.218826 -11811,5416:100,-160,-40,0,0,0.22133 -11812,5415:209,-159,-40,0,0,0.225968 -11813,5415:208,-158,-40,0,0,0.233826 -11814,5415:207,-157,-40,0,0,0.237844 -11815,5415:206,-156,-40,0,0,0.230875 -11816,5415:205,-155,-40,0,0,0.23042 -11817,5415:104,-154,-40,0,0,0.227355 -11818,5415:103,-153,-40,0,0,0.229873 -11819,5415:102,-152,-40,0,0,0.2346 -11820,5415:101,-151,-40,0,0,0.233771 -11821,5415:100,-150,-40,0,0,0.23632 -11822,5414:209,-149,-40,0,0,0.235431 -11823,5414:208,-148,-40,0,0,0.233035 -11824,5414:207,-147,-40,0,0,0.233587 -11825,5414:206,-146,-40,0,0,0.235931 -11826,5414:205,-145,-40,0,0,0.234213 -11827,5414:104,-144,-40,0,0,0.232797 -11828,5414:103,-143,-40,0,0,0.230912 -11829,5414:102,-142,-40,0,0,0.231022 -11830,5414:101,-141,-40,0,0,0.235505 -11831,5414:100,-140,-40,0,0,0.234286 -11832,5413:209,-139,-40,0,0,0.231551 -11833,5413:208,-138,-40,0,0,0.230912 -11834,5413:207,-137,-40,0,0,0.229601 -11835,5413:206,-136,-40,0,0,0.228132 -11836,5413:205,-135,-40,0,0,0.227662 -11837,5413:104,-134,-40,0,0,0.225861 -11838,5413:103,-133,-40,0,0,0.223498 -11839,5413:102,-132,-40,0,0,0.223498 -11840,5413:101,-131,-40,0,0,0.222217 -11841,5413:100,-130,-40,0,0,0.222057 -11842,5412:209,-129,-40,0,0,0.221968 -11843,5412:208,-128,-40,0,0,0.221383 -11844,5412:207,-127,-40,0,0,0.220499 -11845,5412:206,-126,-40,0,0,0.220658 -11846,5412:205,-125,-40,0,0,0.218405 -11847,5412:104,-124,-40,0,0,0.213931 -11848,5412:103,-123,-40,0,0,0.205436 -11849,5412:102,-122,-40,0,0,0.204766 -11850,5412:101,-121,-40,0,0,0.204398 -11851,5412:100,-120,-40,0,0,0.203364 -11852,5411:209,-119,-40,0,0,0.199169 -11853,5411:208,-118,-40,0,0,0.200846 -11854,5411:207,-117,-40,0,0,0.197796 -11855,5411:206,-116,-40,0,0,0.19858 -11856,5411:205,-115,-40,0,0,0.203031 -11857,5411:104,-114,-40,0,0,0.202799 -11858,5411:103,-113,-40,0,0,0.199284 -11859,5411:102,-112,-40,0,0,0.192599 -11860,5411:101,-111,-40,0,0,0.186055 -11861,5411:100,-110,-40,0,0,0.189487 -11862,5410:209,-109,-40,0,0,0.19034 -11863,5410:208,-108,-40,0,0,0.183948 -11864,5410:207,-107,-40,0,0,0.187272 -11865,5410:206,-106,-40,0,0,0.19034 -11866,5410:205,-105,-40,0,0,0.187131 -11867,5410:104,-104,-40,0,0,0.186866 -11868,5410:103,-103,-40,0,0,0.183271 -11869,5410:102,-102,-40,0,0,0.181723 -11870,5410:101,-101,-40,0,0,0.184319 -11871,5410:100,-100,-40,0,0,0.183733 -11872,5409:209,-99,-40,0,0,0.180412 -11873,5409:208,-98,-40,0,0,0.179669 -11874,5409:207,-97,-40,0,0,0.177529 -11875,5409:206,-96,-40,0,0,0.1769 -11876,5409:205,-95,-40,0,0,0.175498 -11877,5409:104,-94,-40,0,0,0.177934 -11878,5409:103,-93,-40,0,0,0.179049 -11879,5409:102,-92,-40,0,0,0.177364 -11880,5409:101,-91,-40,0,0,0.176795 -11881,5409:100,-90,-40,0,0,0.175989 -11882,5408:209,-89,-40,0,0,0.176123 -11883,5408:208,-88,-40,0,0,0.176108 -11884,5408:207,-87,-40,0,0,0.176975 -11885,5408:206,-86,-40,0,0,0.173441 -11886,5408:205,-85,-40,0,0,0.174578 -11887,5408:104,-84,-40,0,0,0.173323 -11888,5408:103,-83,-40,0,0,0.17446 -11889,5408:102,-82,-40,0,0,0.17911 -11890,5408:101,-81,-40,0,0,0.185604 -11891,5408:100,-80,-40,0,0,0.185511 -11892,5407:209,-79,-40,0,0,0.184937 -11893,5407:208,-78,-40,0,0,0.182641 -11894,5407:207,-77,-40,0,0,0.183102 -11895,5407:206,-76,-40,0,0,0.20197 -11896,5406:207,-67,-40,0,0,0.206074 -11897,5406:206,-66,-40,0,0,0.195621 -11898,5406:205,-65,-40,0,0,0.190087 -11899,5406:104,-64,-40,0,0,0.185465 -11900,5406:103,-63,-40,0,0,0.186912 -11901,5406:102,-62,-40,0,0,0.18671 -11902,5406:101,-61,-40,0,0,0.197861 -11903,5406:100,-60,-40,0,0,0.196203 -11904,5405:209,-59,-40,0,0,0.188526 -11905,5405:208,-58,-40,0,0,0.182197 -11906,5405:207,-57,-40,0,0,0.174386 -11907,5405:206,-56,-40,0,0,0.166755 -11908,5405:205,-55,-40,0,0,0.16072 -11909,5405:104,-54,-40,0,0,0.149822 -11910,5405:103,-53,-40,0,0,0.152512 -11911,5405:102,-52,-40,0,0,0.153364 -11912,5405:101,-51,-40,0,0,0.15749 -11913,5405:100,-50,-40,0,0,0.144332 -11914,5404:209,-49,-40,0,0,0.146696 -11915,5404:208,-48,-40,0,0,0.144421 -11916,5404:207,-47,-40,0,0,0.146195 -11917,5404:206,-46,-40,0,0,0.153791 -11918,5404:205,-45,-40,0,0,0.149299 -11919,5404:104,-44,-40,0,0,0.152127 -11920,5404:103,-43,-40,0,0,0.144802 -11921,5404:102,-42,-40,0,0,0.139134 -11922,5404:101,-41,-40,0,0,0.134559 -11923,5404:100,-40,-40,0,0,0.132609 -11924,5403:209,-39,-40,0,0,0.142439 -11925,5403:208,-38,-40,0,0,0.146323 -11926,5403:207,-37,-40,0,0,0.14658 -11927,5403:206,-36,-40,0,0,0.141064 -11928,5403:205,-35,-40,0,0,0.140146 -11929,5403:104,-34,-40,0,0,0.140295 -11930,5403:103,-33,-40,0,0,0.138152 -11931,5403:102,-32,-40,0,0,0.137712 -11932,5403:101,-31,-40,0,0,0.138655 -11933,5403:100,-30,-40,0,0,0.138348 -11934,5402:209,-29,-40,0,0,0.138458 -11935,5402:208,-28,-40,0,0,0.143952 -11936,5402:207,-27,-40,0,0,0.141763 -11937,5402:206,-26,-40,0,0,0.13588 -11938,5402:205,-25,-40,0,0,0.139097 -11939,5402:104,-24,-40,0,0,0.133486 -11941,5402:102,-22,-40,0,0,0.143712 -11942,5402:101,-21,-40,0,0,0.142289 -11943,5402:100,-20,-40,0,0,0.143333 -11944,5401:209,-19,-40,0,0,0.142577 -11945,5401:208,-18,-40,0,0,0.136788 -11946,5401:207,-17,-40,0,0,0.134846 -11947,5401:206,-16,-40,0,0,0.147766 -11948,5401:205,-15,-40,0,0,0.152671 -11949,5401:104,-14,-40,0,0,0.145414 -11950,5401:103,-13,-40,0,0,0.144041 -11951,5401:102,-12,-40,0,0,0.136654 -11952,5401:101,-11,-40,0,0,0.126152 -11953,5401:100,-10,-40,0,0,0.126708 -11954,5400:209,-9,-40,0,0,0.12223 -11955,5400:208,-8,-40,0,0,0.114481 -11956,5400:207,-7,-40,0,0,0.115768 -11957,5400:206,-6,-40,0,0,0.117643 -11958,5400:205,-5,-40,0,0,0.12287 -11959,5400:104,-4,-40,0,0,0.128907 -11960,5400:103,-3,-40,0,0,0.127494 -11961,5400:102,-2,-40,0,0,0.118606 -11962,5400:101,-1,-40,0,0,0.125847 -11963,3400:101,0,-40,0,0,0.143927 -11964,3400:101,1,-40,0,0,0.151756 -11965,3400:102,2,-40,0,0,0.144663 -11966,3400:103,3,-40,0,0,0.131877 -11967,3400:104,4,-40,0,0,0.123904 -11968,3400:205,5,-40,0,0,0.12027 -11969,3400:206,6,-40,0,0,0.125971 -11970,3400:207,7,-40,0,0,0.127186 -11971,3400:208,8,-40,0,0,0.112128 -11972,3400:209,9,-40,0,0,0.121296 -11973,3401:100,10,-40,0,0,0.122119 -11974,3401:101,11,-40,0,0,0.124519 -11975,3401:102,12,-40,0,0,0.124765 -11976,3401:103,13,-40,0,0,0.124664 -11977,3401:104,14,-40,0,0,0.119944 -11978,3401:205,15,-40,0,0,0.121801 -11979,3401:206,16,-40,0,0,0.136122 -11980,3401:207,17,-40,0,0,0.133711 -11981,3401:208,18,-40,0,0,0.117921 -11982,3401:209,19,-40,0,0,0.118413 -11983,3402:100,20,-40,0,0,0.126039 -11984,3402:101,21,-40,0,0,0.119501 -11985,3402:102,22,-40,0,0,0.123871 -11986,3402:103,23,-40,0,0,0.114961 -11987,3402:104,24,-40,0,0,0.118918 -11988,3402:205,25,-40,0,0,0.123971 -11989,3402:206,26,-40,0,0,0.120738 -11990,3402:207,27,-40,0,0,0.116475 -11991,3402:208,28,-40,0,0,0.126492 -11992,3402:209,29,-40,0,0,0.119619 -11993,3403:100,30,-40,0,0,0.11538 -11994,3403:101,31,-40,0,0,0.11744 -11995,3403:102,32,-40,0,0,0.123037 -11996,3403:103,33,-40,0,0,0.121658 -11997,3403:104,34,-40,0,0,0.114106 -11998,3403:205,35,-40,0,0,0.12111 -11999,3403:206,36,-40,0,0,0.120096 -12000,3403:207,37,-40,0,0,0.115495 -12001,3403:208,38,-40,0,0,0.110481 -12002,3403:209,39,-40,0,0,0.119544 -12003,3404:100,40,-40,0,0,0.126231 -12004,3404:101,41,-40,0,0,0.125655 -12005,3404:102,42,-40,0,0,0.122054 -12006,3404:103,43,-40,0,0,0.119641 -12007,3404:104,44,-40,0,0,0.11909 -12008,3404:205,45,-40,0,0,0.117121 -12009,3404:206,46,-40,0,0,0.114856 -12010,3404:207,47,-40,0,0,0.11334 -12011,3404:208,48,-40,0,0,0.124418 -12012,3404:209,49,-40,0,0,0.125824 -12013,3405:100,50,-40,0,0,0.118918 -12014,3405:101,51,-40,0,0,0.119274 -12015,3405:102,52,-40,0,0,0.119522 -12016,3405:103,53,-40,0,0,0.11881 -12017,3405:104,54,-40,0,0,0.11743 -12018,3405:205,55,-40,0,0,0.119684 -12019,3405:206,56,-40,0,0,0.119188 -12020,3405:207,57,-40,0,0,0.117942 -12021,3405:208,58,-40,0,0,0.11881 -12022,3405:209,59,-40,0,0,0.120053 -12023,3406:100,60,-40,0,0,0.121537 -12024,3406:101,61,-40,0,0,0.12234 -12025,3406:102,62,-40,0,0,0.119977 -12026,3406:103,63,-40,0,0,0.116179 -12027,3406:104,64,-40,0,0,0.115642 -12028,3406:205,65,-40,0,0,0.113774 -12029,3406:206,66,-40,0,0,0.112712 -12030,3406:207,67,-40,0,0,0.114606 -12031,3406:208,68,-40,0,0,0.11538 -12032,3406:209,69,-40,0,0,0.117622 -12033,3407:100,70,-40,0,0,0.115212 -12034,3407:101,71,-40,0,0,0.111485 -12035,3407:102,72,-40,0,0,0.110855 -12036,3407:104,74,-40,0,0,0.107262 -12037,3407:205,75,-40,0,0,0.11364 -12038,3407:206,76,-40,0,0,0.1301 -12039,3407:207,77,-40,0,0,0.138201 -12040,3407:208,78,-40,0,0,0.140245 -12041,3407:209,79,-40,0,0,0.133747 -12042,3408:100,80,-40,0,0,0.14567 -12043,3408:101,81,-40,0,0,0.142502 -12044,3408:102,82,-40,0,0,0.138262 -12045,3408:103,83,-40,0,0,0.155308 -12046,3408:104,84,-40,0,0,0.154407 -12047,3408:205,85,-40,0,0,0.144028 -12048,3408:206,86,-40,0,0,0.140418 -12049,3408:207,87,-40,0,0,0.141413 -12050,3408:208,88,-40,0,0,0.166656 -12051,3408:209,89,-40,0,0,0.174282 -12052,3409:100,90,-40,0,0,0.157791 -12053,3409:101,91,-40,0,0,0.159587 -12054,3409:102,92,-40,0,0,0.157395 -12055,3409:103,93,-40,0,0,0.155483 -12056,3409:104,94,-40,0,0,0.159822 -12057,3409:205,95,-40,0,0,0.159381 -12058,3409:206,96,-40,0,0,0.152871 -12059,3409:207,97,-40,0,0,0.153084 -12060,3409:208,98,-40,0,0,0.153871 -12061,3409:209,99,-40,0,0,0.151413 -12062,3410:100,100,-40,0,0,0.138949 -12063,3410:101,101,-40,0,0,0.135422 -12064,3410:102,102,-40,0,0,0.135122 -12065,3410:103,103,-40,0,0,0.136231 -12066,3410:104,104,-40,0,0,0.139725 -12067,3410:205,105,-40,0,0,0.142452 -12068,3410:206,106,-40,0,0,0.140629 -12069,3410:207,107,-40,0,0,0.132278 -12070,3410:208,108,-40,0,0,0.139097 -12071,3410:209,109,-40,0,0,0.140022 -12072,3411:100,110,-40,0,0,0.138961 -12073,3411:101,111,-40,0,0,0.142038 -12074,3411:102,112,-40,0,0,0.139787 -12075,3411:103,113,-40,0,0,0.148414 -12076,3411:104,114,-40,0,0,0.151836 -12077,3411:205,115,-40,0,0,0.152353 -12078,3411:206,116,-40,0,0,0.153551 -12079,3411:207,117,-40,0,0,0.153257 -12080,3411:208,118,-40,0,0,0.159037 -12081,3411:209,119,-40,0,0,0.161151 -12082,3412:100,120,-40,0,0,0.166584 -12083,3412:101,121,-40,0,0,0.186226 -12084,3412:102,122,-40,0,0,0.178853 -12085,3412:103,123,-40,0,0,0.175052 -12086,3412:104,124,-40,0,0,0.170864 -12087,3412:205,125,-40,0,0,0.168922 -12088,3412:206,126,-40,0,0,0.166043 -12089,3412:207,127,-40,0,0,0.184907 -12090,3412:208,128,-40,0,0,0.187397 -12091,3412:209,129,-40,0,0,0.187867 -12092,3413:100,130,-40,0,0,0.188243 -12093,3413:101,131,-40,0,0,0.19161 -12094,3413:102,132,-40,0,0,0.192599 -12095,3413:103,133,-40,0,0,0.189187 -12096,3413:104,134,-40,0,0,0.181906 -12097,3413:205,135,-40,0,0,0.188118 -12098,3413:206,136,-40,0,0,0.191181 -12099,3413:207,137,-40,0,0,0.192791 -12100,3413:208,138,-40,0,0,0.183563 -12101,3413:209,139,-40,0,0,0.170587 -12102,3414:100,140,-40,0,0,0.187491 -12103,3414:101,141,-40,0,0,0.199202 -12104,3414:102,142,-40,0,0,0.197421 -12105,3414:103,143,-40,0,0,0.186523 -12106,3414:104,144,-40,0,0,0.170907 -12107,3414:205,145,-40,0,0,0.178325 -12108,3414:206,146,-40,0,0,0.183333 -12109,3414:207,147,-40,0,0,0.198498 -12110,3414:208,148,-40,0,0,0.205067 -12111,3414:209,149,-40,0,0,0.203364 -12112,3415:100,150,-40,0,0,0.196349 -12113,3415:101,151,-40,0,0,0.191181 -12114,3415:102,152,-40,0,0,0.187084 -12115,3415:103,153,-40,0,0,0.215977 -12116,3415:104,154,-40,0,0,0.211094 -12117,3415:205,155,-40,0,0,0.207794 -12118,3415:206,156,-40,0,0,0.215838 -12119,3415:207,157,-40,0,0,0.209933 -12120,3415:208,158,-40,0,0,0.208031 -12121,3415:209,159,-40,0,0,0.205788 -12122,3416:100,160,-40,0,0,0.203314 -12123,3416:101,161,-40,0,0,0.202799 -12124,3416:102,162,-40,0,0,0.200846 -12125,3416:103,163,-40,0,0,0.200203 -12126,3416:104,164,-40,0,0,0.200598 -12127,3416:205,165,-40,0,0,0.198383 -12128,3416:206,166,-40,0,0,0.202019 -12129,3416:207,167,-40,0,0,0.195362 -12130,3416:208,168,-40,0,0,0.193624 -12131,3416:209,169,-40,0,0,0.190451 -12132,3417:100,170,-40,0,0,0.190467 -12133,3417:101,171,-40,0,0,0.189045 -12134,3417:102,172,-40,0,0,0.187569 -12135,3417:103,173,-40,0,0,0.185884 -12136,3417:104,174,-40,0,0,0.184783 -12137,3417:205,175,-40,0,0,0.184535 -12138,3417:206,176,-40,0,0,0.182396 -12139,3417:207,177,-40,0,0,0.179593 -12140,3417:208,178,-40,0,0,0.179987 -12141,3417:209,179,-40,0,0,0.180033 -12142,3418:100,180,-40,0,0,0.180336 -12143,5318:390,-180,-39,0,0,0.18531 -12144,5317:499,-179,-39,0,0,0.177694 -12145,5317:498,-178,-39,0,0,0.179336 -12146,5317:497,-177,-39,0,0,0.204515 -12147,5317:496,-176,-39,0,0,0.211934 -12148,5317:495,-175,-39,0,0,0.209711 -12149,5317:394,-174,-39,0,0,0.205301 -12150,5317:393,-173,-39,0,0,0.216186 -12151,5317:392,-172,-39,0,0,0.224856 -12152,5317:391,-171,-39,0,0,0.218072 -12153,5317:390,-170,-39,0,0,0.216952 -12154,5316:499,-169,-39,0,0,0.222644 -12155,5316:498,-168,-39,0,0,0.228222 -12156,5316:497,-167,-39,0,0,0.227138 -12157,5316:496,-166,-39,0,0,0.222608 -12158,5316:495,-165,-39,0,0,0.216848 -12159,5316:394,-164,-39,0,0,0.221614 -12160,5316:393,-163,-39,0,0,0.224087 -12161,5316:392,-162,-39,0,0,0.232999 -12162,5316:391,-161,-39,0,0,0.24431 -12163,5316:390,-160,-39,0,0,0.240367 -12164,5315:499,-159,-39,0,0,0.233238 -12165,5315:498,-158,-39,0,0,0.239113 -12166,5315:497,-157,-39,0,0,0.237881 -12167,5315:496,-156,-39,0,0,0.243155 -12168,5315:495,-155,-39,0,0,0.235154 -12169,5315:394,-154,-39,0,0,0.234194 -12170,5315:393,-153,-39,0,0,0.234858 -12171,5315:392,-152,-39,0,0,0.238515 -12172,5315:391,-151,-39,0,0,0.242833 -12173,5315:390,-150,-39,0,0,0.243401 -12174,5314:499,-149,-39,0,0,0.239973 -12175,5314:498,-148,-39,0,0,0.241269 -12176,5314:497,-147,-39,0,0,0.244728 -12177,5314:496,-146,-39,0,0,0.244291 -12178,5314:495,-145,-39,0,0,0.241871 -12179,5314:394,-144,-39,0,0,0.242192 -12180,5314:393,-143,-39,0,0,0.242381 -12181,5314:392,-142,-39,0,0,0.242267 -12182,5314:391,-141,-39,0,0,0.242211 -12183,5314:390,-140,-39,0,0,0.239356 -12184,5313:499,-139,-39,0,0,0.237788 -12185,5313:498,-138,-39,0,0,0.238049 -12186,5313:497,-137,-39,0,0,0.235801 -12187,5313:496,-136,-39,0,0,0.232797 -12188,5313:495,-135,-39,0,0,0.231551 -12189,5313:394,-134,-39,0,0,0.229111 -12190,5313:393,-133,-39,0,0,0.230565 -12191,5313:392,-132,-39,0,0,0.231643 -12192,5313:391,-131,-39,0,0,0.230383 -12193,5313:390,-130,-39,0,0,0.230347 -12194,5312:499,-129,-39,0,0,0.229892 -12195,5312:498,-128,-39,0,0,0.230165 -12196,5312:497,-127,-39,0,0,0.230274 -12197,5312:496,-126,-39,0,0,0.229328 -12198,5312:495,-125,-39,0,0,0.225933 -12199,5312:394,-124,-39,0,0,0.219952 -12200,5312:393,-123,-39,0,0,0.215369 -12201,5312:392,-122,-39,0,0,0.21556 -12202,5312:391,-121,-39,0,0,0.213327 -12203,5312:390,-120,-39,0,0,0.216047 -12204,5311:499,-119,-39,0,0,0.218668 -12205,5311:498,-118,-39,0,0,0.217145 -12206,5311:497,-117,-39,0,0,0.215264 -12207,5311:496,-116,-39,0,0,0.212569 -12208,5311:495,-115,-39,0,0,0.206141 -12209,5311:394,-114,-39,0,0,0.200105 -12210,5311:393,-113,-39,0,0,0.197438 -12211,5311:392,-112,-39,0,0,0.194717 -12212,5311:391,-111,-39,0,0,0.203481 -12213,5311:390,-110,-39,0,0,0.204917 -12214,5310:499,-109,-39,0,0,0.200549 -12215,5310:498,-108,-39,0,0,0.194717 -12216,5310:497,-107,-39,0,0,0.19356 -12217,5310:496,-106,-39,0,0,0.196073 -12218,5310:495,-105,-39,0,0,0.195863 -12219,5310:394,-104,-39,0,0,0.192935 -12220,5310:393,-103,-39,0,0,0.190562 -12221,5310:392,-102,-39,0,0,0.187178 -12222,5310:391,-101,-39,0,0,0.189282 -12223,5310:390,-100,-39,0,0,0.187992 -12224,5309:499,-99,-39,0,0,0.18435 -12225,5309:498,-98,-39,0,0,0.184134 -12226,5309:497,-97,-39,0,0,0.183102 -12227,5309:496,-96,-39,0,0,0.181753 -12228,5309:495,-95,-39,0,0,0.18261 -12229,5309:394,-94,-39,0,0,0.183163 -12230,5309:393,-93,-39,0,0,0.182994 -12231,5309:392,-92,-39,0,0,0.183225 -12232,5309:391,-91,-39,0,0,0.18435 -12233,5309:390,-90,-39,0,0,0.185511 -12234,5308:499,-89,-39,0,0,0.185635 -12235,5308:498,-88,-39,0,0,0.185698 -12236,5308:497,-87,-39,0,0,0.184644 -12237,5308:496,-86,-39,0,0,0.180291 -12238,5308:495,-85,-39,0,0,0.181554 -12239,5308:394,-84,-39,0,0,0.17973 -12240,5308:393,-83,-39,0,0,0.182994 -12241,5308:392,-82,-39,0,0,0.191674 -12242,5308:391,-81,-39,0,0,0.189424 -12243,5308:390,-80,-39,0,0,0.194894 -12244,5307:499,-79,-39,0,0,0.192631 -12245,5307:498,-78,-39,0,0,0.196025 -12246,5307:497,-77,-39,0,0,0.195184 -12247,5307:496,-76,-39,0,0,0.208539 -12248,5306:497,-67,-39,0,0,0.223998 -12249,5306:496,-66,-39,0,0,0.211026 -12250,5306:495,-65,-39,0,0,0.205268 -12251,5306:394,-64,-39,0,0,0.199284 -12252,5306:393,-63,-39,0,0,0.199202 -12253,5306:392,-62,-39,0,0,0.19953 -12254,5306:391,-61,-39,0,0,0.206899 -12255,5306:390,-60,-39,0,0,0.199169 -12256,5305:499,-59,-39,0,0,0.188134 -12257,5305:498,-58,-39,0,0,0.177694 -12258,5305:497,-57,-39,0,0,0.173 -12259,5305:496,-56,-39,0,0,0.163035 -12260,5305:495,-55,-39,0,0,0.153204 -12261,5305:394,-54,-39,0,0,0.165475 -12262,5305:393,-53,-39,0,0,0.205654 -12263,5305:392,-52,-39,0,0,0.210872 -12264,5305:391,-51,-39,0,0,0.217284 -12265,5305:390,-50,-39,0,0,0.219037 -12266,5304:499,-49,-39,0,0,0.211162 -12267,5304:498,-48,-39,0,0,0.207658 -12268,5304:497,-47,-39,0,0,0.199957 -12269,5304:496,-46,-39,0,0,0.184149 -12270,5304:495,-45,-39,0,0,0.166713 -12271,5304:394,-44,-39,0,0,0.172926 -12272,5304:393,-43,-39,0,0,0.17979 -12273,5304:392,-42,-39,0,0,0.154971 -12274,5304:391,-41,-39,0,0,0.15335 -12275,5304:390,-40,-39,0,0,0.163554 -12276,5303:499,-39,-39,0,0,0.163231 -12277,5303:498,-38,-39,0,0,0.156701 -12278,5303:497,-37,-39,0,0,0.150399 -12279,5303:496,-36,-39,0,0,0.15107 -12280,5303:495,-35,-39,0,0,0.154662 -12281,5303:394,-34,-39,0,0,0.163863 -12282,5303:393,-33,-39,0,0,0.163554 -12283,5303:392,-32,-39,0,0,0.161749 -12284,5303:391,-31,-39,0,0,0.154837 -12285,5303:390,-30,-39,0,0,0.152685 -12286,5302:499,-29,-39,0,0,0.150373 -12287,5302:498,-28,-39,0,0,0.146889 -12288,5302:497,-27,-39,0,0,0.142439 -12289,5302:496,-26,-39,0,0,0.155956 -12290,5302:495,-25,-39,0,0,0.156606 -12291,5302:394,-24,-39,0,0,0.149221 -12292,5302:393,-23,-39,0,0,0.143965 -12293,5302:392,-22,-39,0,0,0.14977 -12294,5302:391,-21,-39,0,0,0.156254 -12295,5302:390,-20,-39,0,0,0.156227 -12296,5301:499,-19,-39,0,0,0.15173 -12297,5301:498,-18,-39,0,0,0.155039 -12298,5301:497,-17,-39,0,0,0.166541 -12299,5301:496,-16,-39,0,0,0.163554 -12300,5301:495,-15,-39,0,0,0.151109 -12301,5301:394,-14,-39,0,0,0.151268 -12302,5301:393,-13,-39,0,0,0.150622 -12303,5301:392,-12,-39,0,0,0.149091 -12304,5301:391,-11,-39,0,0,0.141638 -12305,5301:390,-10,-39,0,0,0.135459 -12306,5300:499,-9,-39,0,0,0.12967 -12307,5300:498,-8,-39,0,0,0.130822 -12308,5300:497,-7,-39,0,0,0.142101 -12309,5300:496,-6,-39,0,0,0.166941 -12310,5300:495,-5,-39,0,0,0.169442 -12311,5300:394,-4,-39,0,0,0.164173 -12312,5300:393,-3,-39,0,0,0.150268 -12313,5300:392,-2,-39,0,0,0.153337 -12314,5300:391,-1,-39,0,0,0.156159 -12315,3300:391,0,-39,0,0,0.15775 -12316,3300:391,1,-39,0,0,0.150124 -12317,3300:392,2,-39,0,0,0.142791 -12318,3300:393,3,-39,0,0,0.151202 -12319,3300:394,4,-39,0,0,0.146722 -12320,3300:495,5,-39,0,0,0.13703 -12321,3300:496,6,-39,0,0,0.136509 -12322,3300:497,7,-39,0,0,0.135459 -12323,3300:498,8,-39,0,0,0.118488 -12324,3300:499,9,-39,0,0,0.116232 -12325,3301:390,10,-39,0,0,0.117889 -12326,3301:391,11,-39,0,0,0.127952 -12327,3301:392,12,-39,0,0,0.139146 -12328,3301:393,13,-39,0,0,0.134081 -12329,3301:394,14,-39,0,0,0.132313 -12330,3301:495,15,-39,0,0,0.132738 -12331,3301:496,16,-39,0,0,0.136315 -12332,3301:497,17,-39,0,0,0.130846 -12333,3301:498,18,-39,0,0,0.124239 -12334,3301:499,19,-39,0,0,0.132467 -12335,3302:390,20,-39,0,0,0.128768 -12336,3302:391,21,-39,0,0,0.124698 -12337,3302:392,22,-39,0,0,0.131936 -12338,3302:393,23,-39,0,0,0.11988 -12339,3302:394,24,-39,0,0,0.125812 -12340,3302:495,25,-39,0,0,0.126515 -12341,3302:496,26,-39,0,0,0.122528 -12342,3302:497,27,-39,0,0,0.129311 -12343,3302:498,28,-39,0,0,0.135989 -12344,3302:499,29,-39,0,0,0.137932 -12345,3303:390,30,-39,0,0,0.120379 -12346,3303:391,31,-39,0,0,0.115254 -12347,3303:392,32,-39,0,0,0.126856 -12348,3303:393,33,-39,0,0,0.128044 -12349,3303:394,34,-39,0,0,0.126515 -12350,3303:495,35,-39,0,0,0.127221 -12351,3303:496,36,-39,0,0,0.128274 -12352,3303:497,37,-39,0,0,0.131877 -12353,3303:498,38,-39,0,0,0.130228 -12354,3303:499,39,-39,0,0,0.122219 -12355,3304:390,40,-39,0,0,0.126016 -12356,3304:391,41,-39,0,0,0.13216 -12357,3304:392,42,-39,0,0,0.133581 -12358,3304:393,43,-39,0,0,0.133735 -12359,3304:394,44,-39,0,0,0.122119 -12360,3304:495,45,-39,0,0,0.123547 -12361,3304:496,46,-39,0,0,0.123882 -12362,3304:497,47,-39,0,0,0.125598 -12363,3304:498,48,-39,0,0,0.128469 -12364,3304:499,49,-39,0,0,0.127552 -12365,3305:390,50,-39,0,0,0.125609 -12366,3305:391,51,-39,0,0,0.126424 -12367,3305:392,52,-39,0,0,0.129358 -12368,3305:393,53,-39,0,0,0.13307 -12369,3305:394,54,-39,0,0,0.135977 -12370,3305:495,55,-39,0,0,0.133569 -12371,3305:496,56,-39,0,0,0.124373 -12372,3305:497,57,-39,0,0,0.123081 -12373,3305:498,58,-39,0,0,0.127792 -12374,3305:499,59,-39,0,0,0.125666 -12375,3306:390,60,-39,0,0,0.130158 -12376,3306:391,61,-39,0,0,0.127872 -12377,3306:392,62,-39,0,0,0.120281 -12378,3306:393,63,-39,0,0,0.119457 -12379,3306:394,64,-39,0,0,0.119123 -12380,3306:495,65,-39,0,0,0.118746 -12381,3306:496,66,-39,0,0,0.12681 -12382,3306:497,67,-39,0,0,0.122561 -12383,3306:498,68,-39,0,0,0.121044 -12384,3306:499,69,-39,0,0,0.124328 -12385,3307:390,70,-39,0,0,0.128182 -12386,3307:391,71,-39,0,0,0.113309 -12387,3307:392,72,-39,0,0,0.118864 -12388,3307:394,74,-39,0,0,0.121416 -12389,3307:495,75,-39,0,0,0.12168 -12390,3307:496,76,-39,0,0,0.13825 -12391,3307:497,77,-39,0,0,0.144841 -12392,3307:498,78,-39,0,0,0.147534 -12393,3307:499,79,-39,0,0,0.153657 -12394,3308:390,80,-39,0,0,0.15011 -12395,3308:391,81,-39,0,0,0.146105 -12396,3308:392,82,-39,0,0,0.148675 -12397,3308:393,83,-39,0,0,0.161721 -12398,3308:394,84,-39,0,0,0.159161 -12399,3308:495,85,-39,0,0,0.170675 -12400,3308:496,86,-39,0,0,0.177679 -12401,3308:497,87,-39,0,0,0.180519 -12402,3308:498,88,-39,0,0,0.173647 -12403,3308:499,89,-39,0,0,0.170602 -12404,3309:390,90,-39,0,0,0.176004 -12405,3309:391,91,-39,0,0,0.179442 -12406,3309:392,92,-39,0,0,0.181982 -12407,3309:393,93,-39,0,0,0.168087 -12408,3309:394,94,-39,0,0,0.161791 -12409,3309:495,95,-39,0,0,0.159946 -12410,3309:496,96,-39,0,0,0.156796 -12411,3309:497,97,-39,0,0,0.156281 -12412,3309:498,98,-39,0,0,0.155214 -12413,3309:499,99,-39,0,0,0.147715 -12414,3310:390,100,-39,0,0,0.140654 -12415,3310:391,101,-39,0,0,0.141301 -12416,3310:392,102,-39,0,0,0.143081 -12417,3310:393,103,-39,0,0,0.146169 -12418,3310:394,104,-39,0,0,0.148557 -12419,3310:495,105,-39,0,0,0.142879 -12420,3310:496,106,-39,0,0,0.139515 -12421,3310:497,107,-39,0,0,0.153952 -12422,3310:498,108,-39,0,0,0.155079 -12423,3310:499,109,-39,0,0,0.147534 -12424,3311:390,110,-39,0,0,0.147935 -12425,3311:391,111,-39,0,0,0.155402 -12426,3311:392,112,-39,0,0,0.172632 -12427,3311:393,113,-39,0,0,0.182166 -12428,3311:394,114,-39,0,0,0.184334 -12429,3311:495,115,-39,0,0,0.165404 -12430,3311:496,116,-39,0,0,0.160776 -12431,3311:497,117,-39,0,0,0.182764 -12432,3311:498,118,-39,0,0,0.188338 -12433,3311:499,119,-39,0,0,0.176586 -12434,3312:390,120,-39,0,0,0.161679 -12435,3312:391,121,-39,0,0,0.186569 -12436,3312:392,122,-39,0,0,0.184118 -12437,3312:393,123,-39,0,0,0.188416 -12438,3312:394,124,-39,0,0,0.187851 -12439,3312:495,125,-39,0,0,0.172017 -12440,3312:496,126,-39,0,0,0.179503 -12441,3312:497,127,-39,0,0,0.185698 -12442,3312:498,128,-39,0,0,0.197275 -12443,3312:499,129,-39,0,0,0.198858 -12444,3313:390,130,-39,0,0,0.189834 -12445,3313:391,131,-39,0,0,0.191754 -12446,3313:392,132,-39,0,0,0.196657 -12447,3313:393,133,-39,0,0,0.202433 -12448,3313:394,134,-39,0,0,0.19554 -12449,3313:495,135,-39,0,0,0.191833 -12450,3313:496,136,-39,0,0,0.19721 -12451,3313:497,137,-39,0,0,0.205687 -12452,3313:498,138,-39,0,0,0.206646 -12453,3313:499,139,-39,0,0,0.192967 -12454,3314:390,140,-39,0,0,0.191722 -12455,3314:391,141,-39,0,0,0.204598 -12456,3314:392,142,-39,0,0,0.202699 -12457,3314:393,143,-39,0,0,0.198759 -12458,3314:394,144,-39,0,0,0.199907 -12459,3314:495,145,-39,0,0,0.201754 -12460,3314:496,146,-39,0,0,0.204231 -12461,3314:497,147,-39,0,0,0.211522 -12462,3314:498,148,-39,0,0,0.207017 -12463,3314:499,149,-39,0,0,0.203364 -12464,3315:390,150,-39,0,0,0.199349 -12465,3315:391,151,-39,0,0,0.213103 -12466,3315:392,152,-39,0,0,0.235912 -12467,3315:393,153,-39,0,0,0.213172 -12468,3315:394,154,-39,0,0,0.213655 -12469,3315:495,155,-39,0,0,0.214727 -12470,3315:496,156,-39,0,0,0.213948 -12471,3315:497,157,-39,0,0,0.210376 -12472,3315:498,158,-39,0,0,0.207422 -12473,3315:499,159,-39,0,0,0.207084 -12474,3316:390,160,-39,0,0,0.205973 -12475,3316:391,161,-39,0,0,0.203198 -12476,3316:392,162,-39,0,0,0.209916 -12477,3316:393,163,-39,0,0,0.203847 -12478,3316:394,164,-39,0,0,0.208895 -12479,3316:495,165,-39,0,0,0.205687 -12480,3316:496,166,-39,0,0,0.203297 -12481,3316:497,167,-39,0,0,0.214762 -12482,3316:498,168,-39,0,0,0.202516 -12483,3316:499,169,-39,0,0,0.197372 -12484,3317:390,170,-39,0,0,0.193832 -12485,3317:391,171,-39,0,0,0.192631 -12486,3317:392,172,-39,0,0,0.190927 -12487,3317:393,173,-39,0,0,0.190008 -12488,3317:394,174,-39,0,0,0.189424 -12489,3317:495,175,-39,0,0,0.187616 -12490,3317:496,176,-39,0,0,0.185092 -12491,3317:497,177,-39,0,0,0.184272 -12492,3317:498,178,-39,0,0,0.190927 -12493,3317:499,179,-39,0,0,0.190609 -12494,3318:390,180,-39,0,0,0.18531 -12495,5318:380,-180,-38,0,0,0.196609 -12496,5317:489,-179,-38,0,0,0.185589 -12497,5317:488,-178,-38,0,0,0.18017 -12498,5317:487,-177,-38,0,0,0.21226 -12499,5317:486,-176,-38,0,0,0.224749 -12500,5317:485,-175,-38,0,0,0.224516 -12501,5317:384,-174,-38,0,0,0.216709 -12502,5317:383,-173,-38,0,0,0.223962 -12503,5317:382,-172,-38,0,0,0.223748 -12504,5317:381,-171,-38,0,0,0.215091 -12505,5317:380,-170,-38,0,0,0.212965 -12506,5316:489,-169,-38,0,0,0.240949 -12507,5316:488,-168,-38,0,0,0.233734 -12508,5316:487,-167,-38,0,0,0.224749 -12509,5316:486,-166,-38,0,0,0.232558 -12510,5316:485,-165,-38,0,0,0.230402 -12511,5316:384,-164,-38,0,0,0.223748 -12512,5316:383,-163,-38,0,0,0.225161 -12513,5316:382,-162,-38,0,0,0.233568 -12514,5316:381,-161,-38,0,0,0.248334 -12515,5316:380,-160,-38,0,0,0.243155 -12516,5315:489,-159,-38,0,0,0.242493 -12517,5315:488,-158,-38,0,0,0.245317 -12518,5315:487,-157,-38,0,0,0.243249 -12519,5315:486,-156,-38,0,0,0.249333 -12520,5315:485,-155,-38,0,0,0.250566 -12521,5315:384,-154,-38,0,0,0.248776 -12522,5315:383,-153,-38,0,0,0.248527 -12523,5315:382,-152,-38,0,0,0.247511 -12524,5315:381,-151,-38,0,0,0.252113 -12525,5315:380,-150,-38,0,0,0.253626 -12526,5314:489,-149,-38,0,0,0.250026 -12527,5314:488,-148,-38,0,0,0.251745 -12528,5314:487,-147,-38,0,0,0.252713 -12529,5314:486,-146,-38,0,0,0.251048 -12530,5314:485,-145,-38,0,0,0.248584 -12531,5314:384,-144,-38,0,0,0.247893 -12532,5314:383,-143,-38,0,0,0.24941 -12533,5314:382,-142,-38,0,0,0.249583 -12534,5314:381,-141,-38,0,0,0.245964 -12535,5314:380,-140,-38,0,0,0.247645 -12536,5313:489,-139,-38,0,0,0.246975 -12537,5313:488,-138,-38,0,0,0.245107 -12538,5313:487,-137,-38,0,0,0.241852 -12539,5313:486,-136,-38,0,0,0.2393 -12540,5313:485,-135,-38,0,0,0.23915 -12541,5313:384,-134,-38,0,0,0.237193 -12542,5313:383,-133,-38,0,0,0.233293 -12543,5313:382,-132,-38,0,0,0.235986 -12544,5313:381,-131,-38,0,0,0.238384 -12545,5313:380,-130,-38,0,0,0.240949 -12546,5312:489,-129,-38,0,0,0.239486 -12547,5312:488,-128,-38,0,0,0.237211 -12548,5312:487,-127,-38,0,0,0.23532 -12549,5312:486,-126,-38,0,0,0.233458 -12550,5312:485,-125,-38,0,0,0.23104 -12551,5312:384,-124,-38,0,0,0.228168 -12552,5312:383,-123,-38,0,0,0.226526 -12553,5312:382,-122,-38,0,0,0.227012 -12554,5312:381,-121,-38,0,0,0.230347 -12555,5312:380,-120,-38,0,0,0.231058 -12556,5311:489,-119,-38,0,0,0.225556 -12557,5311:488,-118,-38,0,0,0.222413 -12558,5311:487,-117,-38,0,0,0.219037 -12559,5311:486,-116,-38,0,0,0.217792 -12560,5311:485,-115,-38,0,0,0.219301 -12561,5311:384,-114,-38,0,0,0.214865 -12562,5311:383,-113,-38,0,0,0.206781 -12563,5311:382,-112,-38,0,0,0.207794 -12564,5311:381,-111,-38,0,0,0.216133 -12565,5311:380,-110,-38,0,0,0.207185 -12566,5310:489,-109,-38,0,0,0.204431 -12567,5310:488,-108,-38,0,0,0.201357 -12568,5310:487,-107,-38,0,0,0.200203 -12569,5310:486,-106,-38,0,0,0.202152 -12570,5310:485,-105,-38,0,0,0.200549 -12571,5310:384,-104,-38,0,0,0.197943 -12572,5310:383,-103,-38,0,0,0.19554 -12573,5310:382,-102,-38,0,0,0.194556 -12574,5310:381,-101,-38,0,0,0.194943 -12575,5310:380,-100,-38,0,0,0.195362 -12576,5309:489,-99,-38,0,0,0.194862 -12577,5309:488,-98,-38,0,0,0.191961 -12578,5309:487,-97,-38,0,0,0.190134 -12579,5309:486,-96,-38,0,0,0.189802 -12580,5309:485,-95,-38,0,0,0.19169 -12581,5309:384,-94,-38,0,0,0.191626 -12582,5309:383,-93,-38,0,0,0.18966 -12583,5309:382,-92,-38,0,0,0.188102 -12584,5309:381,-91,-38,0,0,0.194459 -12585,5309:380,-90,-38,0,0,0.192487 -12586,5308:489,-89,-38,0,0,0.199481 -12587,5308:488,-88,-38,0,0,0.191499 -12588,5308:487,-87,-38,0,0,0.192471 -12590,5308:485,-85,-38,0,0,0.194266 -12591,5308:384,-84,-38,0,0,0.191738 -12592,5308:383,-83,-38,0,0,0.195944 -12593,5308:382,-82,-38,0,0,0.197193 -12594,5308:381,-81,-38,0,0,0.202516 -12595,5308:380,-80,-38,0,0,0.204398 -12596,5307:489,-79,-38,0,0,0.205687 -12597,5307:488,-78,-38,0,0,0.203015 -12598,5307:487,-77,-38,0,0,0.200582 -12599,5307:486,-76,-38,0,0,0.213413 -12600,5307:485,-75,-38,0,0,0.22227 -12601,5306:485,-65,-38,0,0,0.227085 -12602,5306:384,-64,-38,0,0,0.211436 -12603,5306:383,-63,-38,0,0,0.206377 -12604,5306:382,-62,-38,0,0,0.206494 -12605,5306:381,-61,-38,0,0,0.213241 -12606,5306:380,-60,-38,0,0,0.201837 -12607,5305:489,-59,-38,0,0,0.173809 -12608,5305:488,-58,-38,0,0,0.175008 -12609,5305:487,-57,-38,0,0,0.176392 -12610,5305:486,-56,-38,0,0,0.181295 -12611,5305:485,-55,-38,0,0,0.19512 -12612,5305:384,-54,-38,0,0,0.204214 -12613,5305:383,-53,-38,0,0,0.223124 -12614,5305:382,-52,-38,0,0,0.226526 -12615,5305:381,-51,-38,0,0,0.249891 -12616,5305:380,-50,-38,0,0,0.251068 -12617,5304:489,-49,-38,0,0,0.227265 -12618,5304:488,-48,-38,0,0,0.21269 -12619,5304:487,-47,-38,0,0,0.218002 -12620,5304:486,-46,-38,0,0,0.209184 -12621,5304:485,-45,-38,0,0,0.20631 -12622,5304:384,-44,-38,0,0,0.203447 -12623,5304:383,-43,-38,0,0,0.201738 -12624,5304:382,-42,-38,0,0,0.202317 -12625,5304:381,-41,-38,0,0,0.200253 -12626,5304:380,-40,-38,0,0,0.19894 -12627,5303:489,-39,-38,0,0,0.196106 -12628,5303:488,-38,-38,0,0,0.19372 -12629,5303:487,-37,-38,0,0,0.190737 -12630,5303:486,-36,-38,0,0,0.188322 -12631,5303:485,-35,-38,0,0,0.175691 -12632,5303:384,-34,-38,0,0,0.159051 -12633,5303:383,-33,-38,0,0,0.156987 -12634,5303:382,-32,-38,0,0,0.156348 -12635,5303:381,-31,-38,0,0,0.154958 -12636,5303:380,-30,-38,0,0,0.156145 -12637,5302:489,-29,-38,0,0,0.156946 -12638,5302:488,-28,-38,0,0,0.152061 -12639,5302:487,-27,-38,0,0,0.154622 -12640,5302:486,-26,-38,0,0,0.165475 -12641,5302:485,-25,-38,0,0,0.16104 -12642,5302:384,-24,-38,0,0,0.160859 -12643,5302:383,-23,-38,0,0,0.15601 -12644,5302:382,-22,-38,0,0,0.152114 -12645,5302:381,-21,-38,0,0,0.163315 -12646,5302:380,-20,-38,0,0,0.175542 -12647,5301:489,-19,-38,0,0,0.161429 -12648,5301:488,-18,-38,0,0,0.175141 -12649,5301:487,-17,-38,0,0,0.179321 -12650,5301:486,-16,-38,0,0,0.166513 -12651,5301:485,-15,-38,0,0,0.156701 -12652,5301:384,-14,-38,0,0,0.152884 -12653,5301:383,-13,-38,0,0,0.148596 -12654,5301:382,-12,-38,0,0,0.142653 -12655,5301:381,-11,-38,0,0,0.142477 -12656,5301:380,-10,-38,0,0,0.136206 -12657,5300:489,-9,-38,0,0,0.132349 -12658,5300:488,-8,-38,0,0,0.139368 -12659,5300:487,-7,-38,0,0,0.150688 -12660,5300:486,-6,-38,0,0,0.161484 -12661,5300:485,-5,-38,0,0,0.16862 -12662,5300:384,-4,-38,0,0,0.167399 -12663,5300:383,-3,-38,0,0,0.161498 -12664,5300:382,-2,-38,0,0,0.158707 -12665,5300:381,-1,-38,0,0,0.159877 -12666,3300:381,0,-38,0,0,0.16295 -12667,3300:381,1,-38,0,0,0.168102 -12668,3300:382,2,-38,0,0,0.158105 -12669,3300:383,3,-38,0,0,0.166299 -12670,3300:384,4,-38,0,0,0.162139 -12671,3300:485,5,-38,0,0,0.148687 -12672,3300:486,6,-38,0,0,0.141513 -12673,3300:487,7,-38,0,0,0.137859 -12674,3300:488,8,-38,0,0,0.134331 -12675,3300:489,9,-38,0,0,0.12535 -12676,3301:380,10,-38,0,0,0.139072 -12677,3301:381,11,-38,0,0,0.155429 -12678,3301:382,12,-38,0,0,0.154219 -12679,3301:383,13,-38,0,0,0.147883 -12680,3301:384,14,-38,0,0,0.141538 -12681,3301:485,15,-38,0,0,0.136775 -12682,3301:486,16,-38,0,0,0.136001 -12683,3301:487,17,-38,0,0,0.133035 -12684,3301:488,18,-38,0,0,0.147172 -12685,3301:489,19,-38,0,0,0.146979 -12686,3302:380,20,-38,0,0,0.148466 -12687,3302:381,21,-38,0,0,0.151307 -12688,3302:382,22,-38,0,0,0.144853 -12689,3302:383,23,-38,0,0,0.129612 -12690,3302:384,24,-38,0,0,0.127175 -12691,3302:485,25,-38,0,0,0.141551 -12692,3302:486,26,-38,0,0,0.145184 -12693,3302:487,27,-38,0,0,0.141776 -12694,3302:488,28,-38,0,0,0.14631 -12695,3302:489,29,-38,0,0,0.141176 -12696,3303:380,30,-38,0,0,0.150137 -12697,3303:381,31,-38,0,0,0.17322 -12698,3303:382,32,-38,0,0,0.174889 -12699,3303:383,33,-38,0,0,0.171418 -12700,3303:384,34,-38,0,0,0.145299 -12701,3303:485,35,-38,0,0,0.126628 -12702,3303:486,36,-38,0,0,0.127209 -12703,3303:487,37,-38,0,0,0.131349 -12704,3303:488,38,-38,0,0,0.13541 -12705,3303:489,39,-38,0,0,0.130671 -12706,3304:380,40,-38,0,0,0.130787 -12707,3304:381,41,-38,0,0,0.132077 -12708,3304:382,42,-38,0,0,0.135386 -12709,3304:383,43,-38,0,0,0.14418 -12710,3304:384,44,-38,0,0,0.140642 -12711,3304:485,45,-38,0,0,0.136509 -12712,3304:486,46,-38,0,0,0.137871 -12713,3304:487,47,-38,0,0,0.137079 -12714,3304:488,48,-38,0,0,0.129856 -12715,3304:489,49,-38,0,0,0.128343 -12716,3305:380,50,-38,0,0,0.130566 -12717,3305:381,51,-38,0,0,0.131302 -12718,3305:382,52,-38,0,0,0.132668 -12719,3305:383,53,-38,0,0,0.136279 -12720,3305:384,54,-38,0,0,0.13703 -12721,3305:485,55,-38,0,0,0.148285 -12722,3305:486,56,-38,0,0,0.137249 -12723,3305:487,57,-38,0,0,0.135531 -12724,3305:488,58,-38,0,0,0.135615 -12725,3305:489,59,-38,0,0,0.133818 -12726,3306:380,60,-38,0,0,0.143081 -12727,3306:381,61,-38,0,0,0.140282 -12728,3306:382,62,-38,0,0,0.124721 -12729,3306:383,63,-38,0,0,0.127472 -12730,3306:384,64,-38,0,0,0.125666 -12731,3306:485,65,-38,0,0,0.125508 -12732,3306:486,66,-38,0,0,0.138103 -12733,3306:487,67,-38,0,0,0.13196 -12734,3306:488,68,-38,0,0,0.12945 -12735,3306:489,69,-38,0,0,0.128538 -12736,3307:380,70,-38,0,0,0.128826 -12737,3307:381,71,-38,0,0,0.118628 -12738,3307:382,72,-38,0,0,0.116528 -12739,3307:384,74,-38,0,0,0.137249 -12740,3307:485,75,-38,0,0,0.143358 -12741,3307:486,76,-38,0,0,0.144472 -12742,3307:487,77,-38,0,0,0.140903 -12743,3307:488,78,-38,0,0,0.140691 -12744,3307:489,79,-38,0,0,0.160859 -12745,3308:380,80,-38,0,0,0.16385 -12746,3308:381,81,-38,0,0,0.169182 -12747,3308:382,82,-38,0,0,0.166 -12748,3308:383,83,-38,0,0,0.173986 -12749,3308:384,84,-38,0,0,0.175661 -12750,3308:485,85,-38,0,0,0.173677 -12751,3308:486,86,-38,0,0,0.177334 -12752,3308:487,87,-38,0,0,0.192631 -12753,3308:488,88,-38,0,0,0.195459 -12754,3308:489,89,-38,0,0,0.195427 -12755,3309:380,90,-38,0,0,0.190419 -12756,3309:381,91,-38,0,0,0.189723 -12757,3309:382,92,-38,0,0,0.182105 -12758,3309:383,93,-38,0,0,0.16677 -12759,3309:384,94,-38,0,0,0.168836 -12760,3309:485,95,-38,0,0,0.161554 -12761,3309:486,96,-38,0,0,0.156267 -12762,3309:487,97,-38,0,0,0.15434 -12763,3309:488,98,-38,0,0,0.154394 -12764,3309:489,99,-38,0,0,0.152685 -12765,3310:380,100,-38,0,0,0.14703 -12766,3310:381,101,-38,0,0,0.153911 -12767,3310:382,102,-38,0,0,0.155214 -12768,3310:383,103,-38,0,0,0.152498 -12769,3310:384,104,-38,0,0,0.1579 -12770,3310:485,105,-38,0,0,0.160624 -12771,3310:486,106,-38,0,0,0.156796 -12772,3310:487,107,-38,0,0,0.165106 -12773,3310:488,108,-38,0,0,0.165177 -12774,3310:489,109,-38,0,0,0.15764 -12775,3311:380,110,-38,0,0,0.170559 -12776,3311:381,111,-38,0,0,0.173868 -12777,3311:382,112,-38,0,0,0.19169 -12778,3311:383,113,-38,0,0,0.200961 -12779,3311:384,114,-38,0,0,0.18632 -12780,3311:485,115,-38,0,0,0.185915 -12781,3311:486,116,-38,0,0,0.18925 -12782,3311:487,117,-38,0,0,0.193864 -12783,3311:488,118,-38,0,0,0.194153 -12784,3311:489,119,-38,0,0,0.198989 -12785,3312:380,120,-38,0,0,0.205201 -12786,3312:381,121,-38,0,0,0.197015 -12787,3312:382,122,-38,0,0,0.183918 -12788,3312:383,123,-38,0,0,0.189487 -12789,3312:384,124,-38,0,0,0.20149 -12790,3312:485,125,-38,0,0,0.19372 -12791,3312:486,126,-38,0,0,0.181036 -12792,3312:487,127,-38,0,0,0.196625 -12793,3312:488,128,-38,0,0,0.214536 -12794,3312:489,129,-38,0,0,0.213017 -12795,3313:380,130,-38,0,0,0.211231 -12796,3313:381,131,-38,0,0,0.209456 -12797,3313:382,132,-38,0,0,0.211848 -12798,3313:383,133,-38,0,0,0.211556 -12799,3313:384,134,-38,0,0,0.207811 -12800,3313:485,135,-38,0,0,0.203631 -12801,3313:486,136,-38,0,0,0.207017 -12802,3313:487,137,-38,0,0,0.213258 -12803,3313:488,138,-38,0,0,0.20932 -12804,3313:489,139,-38,0,0,0.202865 -12805,3314:380,140,-38,0,0,0.205755 -12806,3314:381,141,-38,0,0,0.215577 -12807,3314:382,142,-38,0,0,0.221543 -12808,3314:383,143,-38,0,0,0.221915 -12809,3314:384,144,-38,0,0,0.226706 -12810,3314:485,145,-38,0,0,0.230274 -12811,3314:486,146,-38,0,0,0.223124 -12812,3314:487,147,-38,0,0,0.208912 -12813,3314:488,148,-38,0,0,0.207591 -12814,3314:489,149,-38,0,0,0.204532 -12815,3315:380,150,-38,0,0,0.206107 -12816,3315:381,151,-38,0,0,0.208573 -12817,3315:382,152,-38,0,0,0.222075 -12818,3315:383,153,-38,0,0,0.225196 -12819,3315:384,154,-38,0,0,0.215681 -12820,3315:485,155,-38,0,0,0.225251 -12821,3315:486,156,-38,0,0,0.223178 -12822,3315:487,157,-38,0,0,0.217792 -12823,3315:488,158,-38,0,0,0.211934 -12824,3315:489,159,-38,0,0,0.214225 -12825,3316:380,160,-38,0,0,0.215299 -12826,3316:381,161,-38,0,0,0.220217 -12827,3316:382,162,-38,0,0,0.217652 -12828,3316:383,163,-38,0,0,0.2196 -12829,3316:384,164,-38,0,0,0.222466 -12830,3316:485,165,-38,0,0,0.221224 -12831,3316:486,166,-38,0,0,0.217792 -12832,3316:487,167,-38,0,0,0.225 -12833,3316:488,168,-38,0,0,0.220393 -12834,3316:489,169,-38,0,0,0.208624 -12835,3317:380,170,-38,0,0,0.199809 -12836,3317:381,171,-38,0,0,0.193736 -12837,3317:382,172,-38,0,0,0.191499 -12838,3317:383,173,-38,0,0,0.19126 -12839,3317:384,174,-38,0,0,0.190641 -12840,3317:485,175,-38,0,0,0.188919 -12841,3317:486,176,-38,0,0,0.188919 -12842,3317:487,177,-38,0,0,0.194765 -12843,3317:488,178,-38,0,0,0.196738 -12844,3317:489,179,-38,0,0,0.196852 -12845,3318:380,180,-38,0,0,0.196609 -12846,5318:370,-180,-37,0,0,0.190451 -12847,5317:479,-179,-37,0,0,0.19999 -12848,5317:478,-178,-37,0,0,0.217442 -12849,5317:477,-177,-37,0,0,0.22027 -12850,5317:476,-176,-37,0,0,0.225018 -12851,5317:475,-175,-37,0,0,0.22922 -12852,5317:374,-174,-37,0,0,0.236005 -12853,5317:373,-173,-37,0,0,0.22482 -12854,5317:372,-172,-37,0,0,0.227608 -12855,5317:371,-171,-37,0,0,0.240067 -12856,5317:370,-170,-37,0,0,0.258795 -12857,5316:479,-169,-37,0,0,0.256144 -12858,5316:478,-168,-37,0,0,0.254152 -12859,5316:477,-167,-37,0,0,0.248488 -12860,5316:476,-166,-37,0,0,0.248162 -12861,5316:475,-165,-37,0,0,0.248661 -12862,5316:374,-164,-37,0,0,0.248392 -12863,5316:373,-163,-37,0,0,0.242343 -12864,5316:372,-162,-37,0,0,0.242324 -12865,5316:371,-161,-37,0,0,0.252655 -12866,5316:370,-160,-37,0,0,0.251551 -12867,5315:479,-159,-37,0,0,0.2513 -12868,5315:478,-158,-37,0,0,0.252539 -12869,5315:477,-157,-37,0,0,0.257084 -12870,5315:476,-156,-37,0,0,0.256692 -12871,5315:475,-155,-37,0,0,0.257045 -12872,5315:374,-154,-37,0,0,0.257654 -12873,5315:373,-153,-37,0,0,0.256594 -12874,5315:372,-152,-37,0,0,0.257949 -12875,5315:371,-151,-37,0,0,0.261961 -12876,5315:370,-150,-37,0,0,0.258775 -12877,5314:479,-149,-37,0,0,0.259999 -12878,5314:478,-148,-37,0,0,0.26085 -12879,5314:477,-147,-37,0,0,0.259032 -12880,5314:476,-146,-37,0,0,0.255596 -12881,5314:475,-145,-37,0,0,0.252539 -12882,5314:374,-144,-37,0,0,0.256281 -12883,5314:373,-143,-37,0,0,0.259269 -12884,5314:372,-142,-37,0,0,0.255948 -12885,5314:371,-141,-37,0,0,0.253977 -12886,5314:370,-140,-37,0,0,0.259012 -12887,5313:479,-139,-37,0,0,0.255928 -12888,5313:478,-138,-37,0,0,0.25072 -12889,5313:477,-137,-37,0,0,0.249141 -12890,5313:476,-136,-37,0,0,0.249795 -12891,5313:475,-135,-37,0,0,0.248641 -12892,5313:374,-134,-37,0,0,0.24545 -12893,5313:373,-133,-37,0,0,0.243798 -12894,5313:372,-132,-37,0,0,0.245869 -12895,5313:371,-131,-37,0,0,0.246193 -12896,5313:370,-130,-37,0,0,0.244424 -12897,5312:479,-129,-37,0,0,0.247224 -12898,5312:478,-128,-37,0,0,0.248277 -12899,5312:477,-127,-37,0,0,0.246765 -12900,5312:476,-126,-37,0,0,0.246632 -12901,5312:475,-125,-37,0,0,0.24688 -12902,5312:374,-124,-37,0,0,0.246727 -12903,5312:373,-123,-37,0,0,0.25072 -12904,5312:372,-122,-37,0,0,0.244443 -12905,5312:371,-121,-37,0,0,0.243741 -12906,5312:370,-120,-37,0,0,0.23859 -12907,5311:479,-119,-37,0,0,0.240424 -12908,5311:478,-118,-37,0,0,0.233899 -12909,5311:477,-117,-37,0,0,0.235968 -12910,5311:476,-116,-37,0,0,0.234637 -12911,5311:475,-115,-37,0,0,0.227428 -12912,5311:374,-114,-37,0,0,0.222981 -12913,5311:373,-113,-37,0,0,0.219301 -12914,5311:372,-112,-37,0,0,0.22087 -12915,5311:371,-111,-37,0,0,0.225591 -12916,5311:370,-110,-37,0,0,0.21516 -12917,5310:479,-109,-37,0,0,0.2125 -12918,5310:478,-108,-37,0,0,0.212793 -12919,5310:477,-107,-37,0,0,0.212655 -12920,5310:476,-106,-37,0,0,0.210564 -12921,5310:475,-105,-37,0,0,0.208692 -12922,5310:374,-104,-37,0,0,0.210188 -12923,5310:373,-103,-37,0,0,0.204231 -12924,5310:372,-102,-37,0,0,0.205452 -12925,5310:371,-101,-37,0,0,0.205184 -12926,5310:370,-100,-37,0,0,0.207506 -12927,5309:479,-99,-37,0,0,0.205603 -12928,5309:478,-98,-37,0,0,0.204264 -12929,5309:477,-97,-37,0,0,0.199874 -12930,5309:476,-96,-37,0,0,0.201672 -12931,5309:475,-95,-37,0,0,0.20255 -12932,5309:374,-94,-37,0,0,0.20358 -12933,5309:373,-93,-37,0,0,0.199957 -12934,5309:372,-92,-37,0,0,0.199661 -12935,5309:371,-91,-37,0,0,0.200615 -12936,5309:370,-90,-37,0,0,0.202268 -12937,5308:479,-89,-37,0,0,0.202832 -12938,5308:478,-88,-37,0,0,0.203864 -12939,5308:477,-87,-37,0,0,0.199907 -12940,5308:476,-86,-37,0,0,0.203447 -12941,5308:475,-85,-37,0,0,0.198612 -12942,5308:374,-84,-37,0,0,0.200994 -12943,5308:373,-83,-37,0,0,0.204532 -12944,5308:372,-82,-37,0,0,0.20599 -12945,5308:371,-81,-37,0,0,0.204699 -12946,5308:370,-80,-37,0,0,0.209473 -12947,5307:479,-79,-37,0,0,0.21238 -12948,5307:478,-78,-37,0,0,0.211848 -12949,5307:477,-77,-37,0,0,0.207624 -12950,5307:476,-76,-37,0,0,0.218633 -12951,5307:475,-75,-37,0,0,0.217617 -12952,5306:477,-67,-37,0,0,0.252035 -12953,5306:476,-66,-37,0,0,0.24431 -12954,5306:475,-65,-37,0,0,0.234673 -12955,5306:374,-64,-37,0,0,0.231076 -12956,5306:373,-63,-37,0,0,0.225196 -12957,5306:372,-62,-37,0,0,0.225609 -12958,5306:371,-61,-37,0,0,0.222004 -12959,5306:370,-60,-37,0,0,0.208166 -12960,5305:479,-59,-37,0,0,0.178778 -12961,5305:478,-58,-37,0,0,0.193207 -12962,5305:477,-57,-37,0,0,0.22316 -12963,5305:476,-56,-37,0,0,0.222697 -12964,5305:475,-55,-37,0,0,0.222572 -12965,5305:374,-54,-37,0,0,0.237304 -12966,5305:373,-53,-37,0,0,0.238889 -12967,5305:372,-52,-37,0,0,0.243004 -12968,5305:371,-51,-37,0,0,0.270572 -12969,5305:370,-50,-37,0,0,0.269215 -12970,5304:479,-49,-37,0,0,0.237881 -12971,5304:478,-48,-37,0,0,0.222572 -12972,5304:477,-47,-37,0,0,0.222803 -12973,5304:476,-46,-37,0,0,0.220058 -12974,5304:475,-45,-37,0,0,0.219424 -12975,5304:374,-44,-37,0,0,0.21464 -12976,5304:373,-43,-37,0,0,0.203998 -12977,5304:372,-42,-37,0,0,0.2049 -12978,5304:371,-41,-37,0,0,0.202849 -12979,5304:370,-40,-37,0,0,0.198204 -12980,5303:479,-39,-37,0,0,0.199628 -12981,5303:478,-38,-37,0,0,0.201341 -12982,5303:477,-37,-37,0,0,0.19669 -12983,5303:476,-36,-37,0,0,0.192823 -12984,5303:475,-35,-37,0,0,0.184411 -12985,5303:374,-34,-37,0,0,0.168346 -12986,5303:373,-33,-37,0,0,0.168735 -12987,5303:372,-32,-37,0,0,0.169211 -12988,5303:371,-31,-37,0,0,0.165106 -12989,5303:370,-30,-37,0,0,0.166057 -12990,5302:479,-29,-37,0,0,0.177649 -12991,5302:478,-28,-37,0,0,0.173471 -12992,5302:477,-27,-37,0,0,0.165929 -12993,5302:476,-26,-37,0,0,0.179821 -12994,5302:475,-25,-37,0,0,0.167743 -12995,5302:374,-24,-37,0,0,0.185744 -12996,5302:373,-23,-37,0,0,0.177394 -12997,5302:372,-22,-37,0,0,0.189692 -12998,5302:371,-21,-37,0,0,0.209048 -12999,5302:370,-20,-37,0,0,0.201738 -13000,5301:479,-19,-37,0,0,0.16573 -13001,5301:478,-18,-37,0,0,0.184427 -13002,5301:477,-17,-37,0,0,0.173721 -13003,5301:476,-16,-37,0,0,0.159905 -13004,5301:475,-15,-37,0,0,0.166969 -13005,5301:374,-14,-37,0,0,0.153737 -13006,5301:373,-13,-37,0,0,0.146901 -13007,5301:372,-12,-37,0,0,0.150859 -13008,5301:371,-11,-37,0,0,0.15299 -13009,5301:370,-10,-37,0,0,0.160957 -13010,5300:479,-9,-37,0,0,0.153938 -13011,5300:478,-8,-37,0,0,0.158639 -13012,5300:477,-7,-37,0,0,0.163441 -13013,5300:476,-6,-37,0,0,0.184535 -13014,5300:475,-5,-37,0,0,0.180534 -13015,5300:374,-4,-37,0,0,0.177919 -13016,5300:373,-3,-37,0,0,0.189471 -13017,5300:372,-2,-37,0,0,0.197812 -13018,5300:371,-1,-37,0,0,0.196511 -13019,3300:371,0,-37,0,0,0.181143 -13020,3300:371,1,-37,0,0,0.168648 -13021,3300:372,2,-37,0,0,0.17678 -13022,3300:373,3,-37,0,0,0.174252 -13023,3300:374,4,-37,0,0,0.174622 -13889,3317:455,175,-35,0,0,0.22211 -13024,3300:475,5,-37,0,0,0.166328 -13025,3300:476,6,-37,0,0,0.161415 -13026,3300:477,7,-37,0,0,0.155537 -13027,3300:478,8,-37,0,0,0.156362 -13028,3300:479,9,-37,0,0,0.159257 -13029,3301:370,10,-37,0,0,0.16849 -13030,3301:371,11,-37,0,0,0.167213 -13031,3301:372,12,-37,0,0,0.156444 -13032,3301:373,13,-37,0,0,0.155564 -13033,3301:374,14,-37,0,0,0.162629 -13034,3301:475,15,-37,0,0,0.169023 -13035,3301:476,16,-37,0,0,0.175052 -13036,3301:477,17,-37,0,0,0.1589 -13037,3301:478,18,-37,0,0,0.146464 -13038,3301:479,19,-37,0,0,0.142703 -13039,3302:370,20,-37,0,0,0.148896 -13040,3302:371,21,-37,0,0,0.154904 -13041,3302:372,22,-37,0,0,0.159877 -13042,3302:373,23,-37,0,0,0.159849 -13043,3302:374,24,-37,0,0,0.166143 -13044,3302:475,25,-37,0,0,0.167786 -13045,3302:476,26,-37,0,0,0.165163 -13046,3302:477,27,-37,0,0,0.151558 -13047,3302:478,28,-37,0,0,0.150491 -13048,3302:479,29,-37,0,0,0.163245 -13049,3303:370,30,-37,0,0,0.17587 -13050,3303:371,31,-37,0,0,0.175646 -13051,3303:372,32,-37,0,0,0.174519 -13052,3303:373,33,-37,0,0,0.170864 -13053,3303:374,34,-37,0,0,0.166827 -13054,3303:475,35,-37,0,0,0.15956 -13055,3303:476,36,-37,0,0,0.154474 -13056,3303:477,37,-37,0,0,0.157627 -13057,3303:478,38,-37,0,0,0.156634 -13058,3303:479,39,-37,0,0,0.151241 -13059,3304:370,40,-37,0,0,0.14703 -13060,3304:371,41,-37,0,0,0.149352 -13061,3304:372,42,-37,0,0,0.161081 -13062,3304:373,43,-37,0,0,0.160832 -13063,3304:374,44,-37,0,0,0.161637 -13064,3304:475,45,-37,0,0,0.157859 -13065,3304:476,46,-37,0,0,0.154743 -13066,3304:477,47,-37,0,0,0.150478 -13067,3304:478,48,-37,0,0,0.142301 -13068,3304:479,49,-37,0,0,0.137103 -13069,3305:370,50,-37,0,0,0.137822 -13070,3305:371,51,-37,0,0,0.138789 -13071,3305:372,52,-37,0,0,0.137274 -13072,3305:373,53,-37,0,0,0.133711 -13073,3305:374,54,-37,0,0,0.142088 -13074,3305:475,55,-37,0,0,0.155456 -13075,3305:476,56,-37,0,0,0.148389 -13076,3305:477,57,-37,0,0,0.14249 -13077,3305:478,58,-37,0,0,0.143282 -13078,3305:479,59,-37,0,0,0.14977 -13079,3306:370,60,-37,0,0,0.162265 -13080,3306:371,61,-37,0,0,0.180519 -13081,3306:372,62,-37,0,0,0.146786 -13082,3306:373,63,-37,0,0,0.13426 -13083,3306:374,64,-37,0,0,0.142766 -13084,3306:475,65,-37,0,0,0.128746 -13085,3306:476,66,-37,0,0,0.140518 -13086,3306:477,67,-37,0,0,0.138838 -13087,3306:478,68,-37,0,0,0.139701 -13088,3306:479,69,-37,0,0,0.147883 -13089,3307:370,70,-37,0,0,0.14725 -13090,3307:371,71,-37,0,0,0.146208 -13091,3307:372,72,-37,0,0,0.156823 -13092,3307:374,74,-37,0,0,0.178566 -13093,3307:475,75,-37,0,0,0.18093 -13094,3307:476,76,-37,0,0,0.17584 -13095,3307:477,77,-37,0,0,0.18093 -13096,3307:478,78,-37,0,0,0.176108 -13097,3307:479,79,-37,0,0,0.178898 -13098,3308:370,80,-37,0,0,0.175706 -13099,3308:371,81,-37,0,0,0.180792 -13100,3308:372,82,-37,0,0,0.170602 -13101,3308:373,83,-37,0,0,0.201622 -13102,3308:374,84,-37,0,0,0.191642 -13103,3308:475,85,-37,0,0,0.174312 -13104,3308:476,86,-37,0,0,0.190499 -13105,3308:477,87,-37,0,0,0.199349 -13106,3308:478,88,-37,0,0,0.205352 -13107,3308:479,89,-37,0,0,0.200138 -13108,3309:370,90,-37,0,0,0.18884 -13109,3309:371,91,-37,0,0,0.186741 -13110,3309:372,92,-37,0,0,0.186866 -13111,3309:373,93,-37,0,0,0.184041 -13112,3309:374,94,-37,0,0,0.179593 -13113,3309:475,95,-37,0,0,0.16849 -13114,3309:476,96,-37,0,0,0.16354 -13115,3309:477,97,-37,0,0,0.157914 -13116,3309:478,98,-37,0,0,0.162937 -13117,3309:479,99,-37,0,0,0.170559 -13118,3310:370,100,-37,0,0,0.172354 -13119,3310:371,101,-37,0,0,0.15996 -13120,3310:372,102,-37,0,0,0.170893 -13121,3310:373,103,-37,0,0,0.166927 -13122,3310:374,104,-37,0,0,0.175676 -13123,3310:475,105,-37,0,0,0.181265 -13124,3310:476,106,-37,0,0,0.180853 -13125,3310:477,107,-37,0,0,0.190134 -13126,3310:478,108,-37,0,0,0.190467 -13127,3310:479,109,-37,0,0,0.167241 -13128,3311:370,110,-37,0,0,0.173102 -13129,3311:371,111,-37,0,0,0.20187 -13130,3311:372,112,-37,0,0,0.216047 -13131,3311:373,113,-37,0,0,0.216639 -13132,3311:374,114,-37,0,0,0.202334 -13133,3311:475,115,-37,0,0,0.189329 -13134,3311:476,116,-37,0,0,0.196771 -13135,3311:477,117,-37,0,0,0.201936 -13136,3311:478,118,-37,0,0,0.193543 -13137,3311:479,119,-37,0,0,0.192903 -13138,3312:370,120,-37,0,0,0.211471 -13139,3312:371,121,-37,0,0,0.21711 -13140,3312:372,122,-37,0,0,0.213672 -13141,3312:373,123,-37,0,0,0.213516 -13142,3312:374,124,-37,0,0,0.214156 -13143,3312:475,125,-37,0,0,0.213223 -13144,3312:476,126,-37,0,0,0.210974 -13145,3312:477,127,-37,0,0,0.215091 -13146,3312:478,128,-37,0,0,0.216604 -13147,3312:479,129,-37,0,0,0.214087 -13148,3313:370,130,-37,0,0,0.214259 -13149,3313:371,131,-37,0,0,0.21556 -13150,3313:372,132,-37,0,0,0.214311 -13151,3313:373,133,-37,0,0,0.21238 -13152,3313:374,134,-37,0,0,0.211197 -13153,3313:475,135,-37,0,0,0.212294 -13154,3313:476,136,-37,0,0,0.216988 -13155,3313:477,137,-37,0,0,0.217232 -13156,3313:478,138,-37,0,0,0.211162 -13157,3313:479,139,-37,0,0,0.210478 -13158,3314:370,140,-37,0,0,0.222306 -13159,3314:371,141,-37,0,0,0.220041 -13160,3314:372,142,-37,0,0,0.223552 -13161,3314:373,143,-37,0,0,0.226544 -13162,3314:374,144,-37,0,0,0.231734 -13163,3314:475,145,-37,0,0,0.245564 -13164,3314:476,146,-37,0,0,0.242777 -13165,3314:477,147,-37,0,0,0.219846 -13166,3314:478,148,-37,0,0,0.216621 -13167,3314:479,149,-37,0,0,0.220693 -13168,3315:370,150,-37,0,0,0.232045 -13169,3315:371,151,-37,0,0,0.235912 -13170,3315:372,152,-37,0,0,0.244177 -13171,3315:373,153,-37,0,0,0.242078 -13172,3315:374,154,-37,0,0,0.222981 -13173,3315:475,155,-37,0,0,0.229583 -13174,3315:476,156,-37,0,0,0.223195 -13175,3315:477,157,-37,0,0,0.222057 -13176,3315:478,158,-37,0,0,0.223855 -13177,3315:479,159,-37,0,0,0.229419 -13178,3316:370,160,-37,0,0,0.231022 -13179,3316:371,161,-37,0,0,0.227138 -13180,3316:372,162,-37,0,0,0.232466 -13181,3316:373,163,-37,0,0,0.230383 -13182,3316:374,164,-37,0,0,0.232705 -13183,3316:475,165,-37,0,0,0.234692 -13184,3316:476,166,-37,0,0,0.23532 -13185,3316:477,167,-37,0,0,0.234526 -13186,3316:478,168,-37,0,0,0.244594 -13187,3316:479,169,-37,0,0,0.243079 -13188,3317:370,170,-37,0,0,0.229619 -13189,3317:371,171,-37,0,0,0.201539 -13190,3317:372,172,-37,0,0,0.196885 -13191,3317:373,173,-37,0,0,0.2024 -13192,3317:374,174,-37,0,0,0.201655 -13193,3317:475,175,-37,0,0,0.200549 -13194,3317:476,176,-37,0,0,0.198351 -13195,3317:477,177,-37,0,0,0.195055 -13196,3317:478,178,-37,0,0,0.191531 -13197,3317:479,179,-37,0,0,0.189992 -13198,3318:370,180,-37,0,0,0.190451 -13199,5318:360,-180,-36,0,0,0.22027 -13200,5317:469,-179,-36,0,0,0.222039 -13201,5317:468,-178,-36,0,0,0.223748 -13202,5317:467,-177,-36,0,0,0.227428 -13203,5317:466,-176,-36,0,0,0.22631 -13204,5317:465,-175,-36,0,0,0.223516 -13205,5317:364,-174,-36,0,0,0.226778 -13206,5317:363,-173,-36,0,0,0.242852 -13207,5317:362,-172,-36,0,0,0.237044 -13208,5317:361,-171,-36,0,0,0.244367 -13209,5317:360,-170,-36,0,0,0.253996 -13210,5316:469,-169,-36,0,0,0.262896 -13211,5316:468,-168,-36,0,0,0.252617 -13212,5316:467,-167,-36,0,0,0.249064 -13213,5316:466,-166,-36,0,0,0.251087 -13214,5316:465,-165,-36,0,0,0.25283 -13215,5316:364,-164,-36,0,0,0.251977 -13216,5316:363,-163,-36,0,0,0.25283 -13217,5316:362,-162,-36,0,0,0.257673 -13218,5316:361,-161,-36,0,0,0.258421 -13219,5316:360,-160,-36,0,0,0.258953 -13220,5315:469,-159,-36,0,0,0.258973 -13221,5315:468,-158,-36,0,0,0.260256 -13222,5315:467,-157,-36,0,0,0.265092 -13223,5315:466,-156,-36,0,0,0.267682 -13224,5315:465,-155,-36,0,0,0.268407 -13225,5315:364,-154,-36,0,0,0.268791 -13226,5315:363,-153,-36,0,0,0.272258 -13227,5315:362,-152,-36,0,0,0.27342 -13228,5315:361,-151,-36,0,0,0.270025 -13229,5315:360,-150,-36,0,0,0.268367 -13230,5314:469,-149,-36,0,0,0.272401 -13231,5314:468,-148,-36,0,0,0.270633 -13232,5314:467,-147,-36,0,0,0.270531 -13233,5314:466,-146,-36,0,0,0.270207 -13234,5314:465,-145,-36,0,0,0.268529 -13235,5314:364,-144,-36,0,0,0.269964 -13236,5314:363,-143,-36,0,0,0.274462 -13237,5314:362,-142,-36,0,0,0.275036 -13238,5314:361,-141,-36,0,0,0.272523 -13239,5314:360,-140,-36,0,0,0.272075 -13240,5313:469,-139,-36,0,0,0.269195 -13241,5313:468,-138,-36,0,0,0.264312 -13242,5313:467,-137,-36,0,0,0.260514 -13243,5313:466,-136,-36,0,0,0.260415 -13244,5313:465,-135,-36,0,0,0.258579 -13245,5313:364,-134,-36,0,0,0.257399 -13246,5313:363,-133,-36,0,0,0.25996 -13247,5313:362,-132,-36,0,0,0.261902 -13248,5313:361,-131,-36,0,0,0.258775 -13249,5313:360,-130,-36,0,0,0.255557 -13250,5312:469,-129,-36,0,0,0.255674 -13251,5312:468,-128,-36,0,0,0.260039 -13252,5312:467,-127,-36,0,0,0.263633 -13253,5312:466,-126,-36,0,0,0.261167 -13254,5312:465,-125,-36,0,0,0.26083 -13255,5312:364,-124,-36,0,0,0.259762 -13256,5312:363,-123,-36,0,0,0.259288 -13257,5312:362,-122,-36,0,0,0.256281 -13258,5312:361,-121,-36,0,0,0.253782 -13259,5312:360,-120,-36,0,0,0.252345 -13260,5311:469,-119,-36,0,0,0.247186 -13261,5311:468,-118,-36,0,0,0.248085 -13262,5311:467,-117,-36,0,0,0.244689 -13263,5311:466,-116,-36,0,0,0.24507 -13264,5311:465,-115,-36,0,0,0.243969 -13265,5311:364,-114,-36,0,0,0.241947 -13266,5311:363,-113,-36,0,0,0.232595 -13267,5311:362,-112,-36,0,0,0.233992 -13268,5311:361,-111,-36,0,0,0.2393 -13269,5311:360,-110,-36,0,0,0.230402 -13270,5310:469,-109,-36,0,0,0.225896 -13271,5310:468,-108,-36,0,0,0.22275 -13272,5310:467,-107,-36,0,0,0.223605 -13273,5310:466,-106,-36,0,0,0.226166 -13274,5310:465,-105,-36,0,0,0.221189 -13275,5310:364,-104,-36,0,0,0.219266 -13276,5310:363,-103,-36,0,0,0.222341 -13277,5310:362,-102,-36,0,0,0.214346 -13278,5310:361,-101,-36,0,0,0.215595 -13279,5310:360,-100,-36,0,0,0.219142 -13280,5309:469,-99,-36,0,0,0.219935 -13281,5309:468,-98,-36,0,0,0.216604 -13282,5309:467,-97,-36,0,0,0.213051 -13283,5309:466,-96,-36,0,0,0.210838 -13284,5309:465,-95,-36,0,0,0.211762 -13285,5309:364,-94,-36,0,0,0.213292 -13286,5309:363,-93,-36,0,0,0.215768 -13287,5309:362,-92,-36,0,0,0.216883 -13288,5309:361,-91,-36,0,0,0.211334 -13289,5309:360,-90,-36,0,0,0.216429 -13290,5308:469,-89,-36,0,0,0.214744 -13291,5308:468,-88,-36,0,0,0.211676 -13292,5308:467,-87,-36,0,0,0.212483 -13293,5308:466,-86,-36,0,0,0.209507 -13294,5308:465,-85,-36,0,0,0.21697 -13295,5308:364,-84,-36,0,0,0.214779 -13296,5308:363,-83,-36,0,0,0.211556 -13297,5308:362,-82,-36,0,0,0.212071 -13298,5308:361,-81,-36,0,0,0.215664 -13299,5308:360,-80,-36,0,0,0.216029 -13300,5307:469,-79,-36,0,0,0.2208 -13301,5307:468,-78,-36,0,0,0.220905 -13302,5307:467,-77,-36,0,0,0.219494 -13303,5307:466,-76,-36,0,0,0.218879 -13304,5307:465,-75,-36,0,0,0.230475 -13305,5306:467,-67,-36,0,0,0.25681 -13306,5306:466,-66,-36,0,0,0.251107 -13307,5306:465,-65,-36,0,0,0.253141 -13308,5306:364,-64,-36,0,0,0.249891 -13309,5306:363,-63,-36,0,0,0.243912 -13310,5306:362,-62,-36,0,0,0.247664 -13311,5306:361,-61,-36,0,0,0.246574 -13312,5306:360,-60,-36,0,0,0.220058 -13313,5305:469,-59,-36,0,0,0.186788 -13314,5305:468,-58,-36,0,0,0.214225 -13315,5305:467,-57,-36,0,0,0.264872 -13316,5305:466,-56,-36,0,0,0.28056 -13317,5305:465,-55,-36,0,0,0.305211 -13318,5305:364,-54,-36,0,0,0.342157 -13319,5305:363,-53,-36,0,0,0.349454 -13320,5305:362,-52,-36,0,0,0.300547 -13321,5305:361,-51,-36,0,0,0.279172 -13322,5305:360,-50,-36,0,0,0.243647 -13323,5304:469,-49,-36,0,0,0.233789 -13324,5304:468,-48,-36,0,0,0.235468 -13325,5304:467,-47,-36,0,0,0.235672 -13326,5304:466,-46,-36,0,0,0.22951 -13327,5304:465,-45,-36,0,0,0.222306 -13328,5304:364,-44,-36,0,0,0.217844 -13329,5304:363,-43,-36,0,0,0.214173 -13330,5304:362,-42,-36,0,0,0.210376 -13331,5304:361,-41,-36,0,0,0.210872 -13332,5304:360,-40,-36,0,0,0.210427 -13333,5303:469,-39,-36,0,0,0.200961 -13334,5303:468,-38,-36,0,0,0.202135 -13335,5303:467,-37,-36,0,0,0.200879 -13336,5303:466,-36,-36,0,0,0.193303 -13337,5303:465,-35,-36,0,0,0.186538 -13338,5303:364,-34,-36,0,0,0.182166 -13339,5303:363,-33,-36,0,0,0.19023 -13340,5303:362,-32,-36,0,0,0.189534 -13341,5303:361,-31,-36,0,0,0.176079 -13342,5303:360,-30,-36,0,0,0.172809 -13343,5302:469,-29,-36,0,0,0.185853 -13344,5302:468,-28,-36,0,0,0.178325 -13345,5302:467,-27,-36,0,0,0.178717 -13346,5302:466,-26,-36,0,0,0.193463 -13347,5302:465,-25,-36,0,0,0.178853 -13348,5302:364,-24,-36,0,0,0.195976 -13349,5302:363,-23,-36,0,0,0.199251 -13350,5302:362,-22,-36,0,0,0.209694 -13351,5302:361,-21,-36,0,0,0.208912 -13352,5302:360,-20,-36,0,0,0.200154 -13353,5301:469,-19,-36,0,0,0.17816 -13354,5301:468,-18,-36,0,0,0.198122 -13355,5301:467,-17,-36,0,0,0.18364 -13356,5301:466,-16,-36,0,0,0.162811 -13357,5301:465,-15,-36,0,0,0.169139 -13358,5301:364,-14,-36,0,0,0.171534 -13359,5301:363,-13,-36,0,0,0.172061 -13360,5301:362,-12,-36,0,0,0.187694 -13361,5301:361,-11,-36,0,0,0.184566 -13362,5301:360,-10,-36,0,0,0.181707 -13363,5300:469,-9,-36,0,0,0.182136 -13364,5300:468,-8,-36,0,0,0.18985 -13365,5300:467,-7,-36,0,0,0.193383 -13366,5300:466,-6,-36,0,0,0.19034 -13367,5300:465,-5,-36,0,0,0.197275 -13368,5300:364,-4,-36,0,0,0.187835 -13369,5300:363,-3,-36,0,0,0.184891 -13370,5300:362,-2,-36,0,0,0.203497 -13371,5300:361,-1,-36,0,0,0.198236 -13372,3300:361,0,-36,0,0,0.189882 -13373,3300:361,1,-36,0,0,0.19142 -13374,3300:362,2,-36,0,0,0.187835 -13375,3300:363,3,-36,0,0,0.174963 -13376,3300:364,4,-36,0,0,0.176242 -13377,3300:465,5,-36,0,0,0.180033 -13378,3300:466,6,-36,0,0,0.173854 -13379,3300:467,7,-36,0,0,0.183194 -13380,3300:468,8,-36,0,0,0.193575 -13381,3300:469,9,-36,0,0,0.200483 -13382,3301:360,10,-36,0,0,0.19372 -13383,3301:361,11,-36,0,0,0.17005 -13384,3301:362,12,-36,0,0,0.167227 -13385,3301:363,13,-36,0,0,0.182902 -13386,3301:364,14,-36,0,0,0.184164 -13387,3301:465,15,-36,0,0,0.176138 -13388,3301:466,16,-36,0,0,0.175899 -13389,3301:467,17,-36,0,0,0.17325 -13390,3301:468,18,-36,0,0,0.157054 -13391,3301:469,19,-36,0,0,0.149809 -13392,3302:360,20,-36,0,0,0.155146 -13393,3302:361,21,-36,0,0,0.164103 -13394,3302:362,22,-36,0,0,0.163399 -13395,3302:363,23,-36,0,0,0.165617 -13396,3302:364,24,-36,0,0,0.178325 -13397,3302:465,25,-36,0,0,0.173132 -13398,3302:466,26,-36,0,0,0.180914 -13399,3302:467,27,-36,0,0,0.183363 -13400,3302:468,28,-36,0,0,0.173014 -13401,3302:469,29,-36,0,0,0.165418 -13402,3303:360,30,-36,0,0,0.190435 -13403,3303:361,31,-36,0,0,0.185589 -13404,3303:362,32,-36,0,0,0.172442 -13405,3303:363,33,-36,0,0,0.171958 -13406,3303:364,34,-36,0,0,0.171724 -13407,3303:465,35,-36,0,0,0.173559 -13408,3303:466,36,-36,0,0,0.167614 -13409,3303:467,37,-36,0,0,0.160582 -13410,3303:468,38,-36,0,0,0.160804 -13411,3303:469,39,-36,0,0,0.16354 -13412,3304:360,40,-36,0,0,0.16687 -13413,3304:361,41,-36,0,0,0.177739 -13414,3304:362,42,-36,0,0,0.169081 -13415,3304:363,43,-36,0,0,0.167413 -13416,3304:364,44,-36,0,0,0.164922 -13417,3304:465,45,-36,0,0,0.162419 -13418,3304:466,46,-36,0,0,0.158804 -13419,3304:467,47,-36,0,0,0.149299 -13420,3304:468,48,-36,0,0,0.141901 -13421,3304:469,49,-36,0,0,0.147663 -13422,3305:360,50,-36,0,0,0.141726 -13423,3305:361,51,-36,0,0,0.141276 -13424,3305:362,52,-36,0,0,0.136569 -13425,3305:363,53,-36,0,0,0.141926 -13426,3305:364,54,-36,0,0,0.148791 -13427,3305:465,55,-36,0,0,0.155416 -13428,3305:466,56,-36,0,0,0.195507 -13429,3305:467,57,-36,0,0,0.170399 -13430,3305:468,58,-36,0,0,0.163245 -13431,3305:469,59,-36,0,0,0.203797 -13432,3306:360,60,-36,0,0,0.226112 -13433,3306:361,61,-36,0,0,0.202699 -13434,3306:362,62,-36,0,0,0.207253 -13435,3306:363,63,-36,0,0,0.148609 -13436,3306:364,64,-36,0,0,0.16717 -13437,3306:465,65,-36,0,0,0.188322 -13438,3306:466,66,-36,0,0,0.146156 -13439,3306:467,67,-36,0,0,0.135278 -13440,3306:468,68,-36,0,0,0.141226 -13441,3306:469,69,-36,0,0,0.151479 -13442,3307:360,70,-36,0,0,0.162447 -13443,3307:361,71,-36,0,0,0.181601 -13444,3307:362,72,-36,0,0,0.198907 -13445,3307:364,74,-36,0,0,0.238459 -13446,3307:465,75,-36,0,0,0.238571 -13447,3307:466,76,-36,0,0,0.211008 -13448,3307:467,77,-36,0,0,0.197503 -13449,3307:468,78,-36,0,0,0.200499 -13450,3307:469,79,-36,0,0,0.196252 -13451,3308:360,80,-36,0,0,0.192583 -13452,3308:361,81,-36,0,0,0.196106 -13453,3308:362,82,-36,0,0,0.19417 -13454,3308:363,83,-36,0,0,0.205436 -13455,3308:364,84,-36,0,0,0.198792 -13456,3308:465,85,-36,0,0,0.191992 -13457,3308:466,86,-36,0,0,0.199415 -13458,3308:467,87,-36,0,0,0.211265 -13459,3308:468,88,-36,0,0,0.204749 -13460,3308:469,89,-36,0,0,0.195944 -13461,3309:360,90,-36,0,0,0.187084 -13462,3309:361,91,-36,0,0,0.184891 -13463,3309:362,92,-36,0,0,0.186632 -13464,3309:363,93,-36,0,0,0.184535 -13465,3309:364,94,-36,0,0,0.176064 -13466,3309:465,95,-36,0,0,0.171783 -13467,3309:466,96,-36,0,0,0.175453 -13468,3309:467,97,-36,0,0,0.175646 -13469,3309:468,98,-36,0,0,0.163484 -13470,3309:469,99,-36,0,0,0.176855 -13471,3310:360,100,-36,0,0,0.191133 -13472,3310:361,101,-36,0,0,0.174563 -13473,3310:362,102,-36,0,0,0.173957 -13474,3310:363,103,-36,0,0,0.184365 -13475,3310:364,104,-36,0,0,0.18096 -13476,3310:465,105,-36,0,0,0.17831 -13477,3310:466,106,-36,0,0,0.182733 -13478,3310:467,107,-36,0,0,0.221366 -13479,3310:468,108,-36,0,0,0.218387 -13480,3310:469,109,-36,0,0,0.192503 -13481,3311:360,110,-36,0,0,0.217267 -13482,3311:361,111,-36,0,0,0.217127 -13483,3311:362,112,-36,0,0,0.213793 -13484,3311:363,113,-36,0,0,0.214242 -13485,3311:364,114,-36,0,0,0.212002 -13486,3311:465,115,-36,0,0,0.208709 -13487,3311:466,116,-36,0,0,0.223337 -13488,3311:467,117,-36,0,0,0.222946 -13489,3311:468,118,-36,0,0,0.221454 -13490,3311:469,119,-36,0,0,0.217145 -13491,3312:360,120,-36,0,0,0.218019 -13492,3312:361,121,-36,0,0,0.221366 -13493,3312:362,122,-36,0,0,0.218317 -13494,3312:363,123,-36,0,0,0.21636 -13495,3312:364,124,-36,0,0,0.216883 -13496,3312:465,125,-36,0,0,0.217879 -13497,3312:466,126,-36,0,0,0.22057 -13498,3312:467,127,-36,0,0,0.222537 -13499,3312:468,128,-36,0,0,0.22373 -13500,3312:469,129,-36,0,0,0.223071 -13501,3313:360,130,-36,0,0,0.219617 -13502,3313:361,131,-36,0,0,0.219424 -13503,3313:362,132,-36,0,0,0.219213 -13504,3313:363,133,-36,0,0,0.218177 -13505,3313:364,134,-36,0,0,0.219565 -13506,3313:465,135,-36,0,0,0.222039 -13507,3313:466,136,-36,0,0,0.220517 -13508,3313:467,137,-36,0,0,0.219142 -13509,3313:468,138,-36,0,0,0.22482 -13510,3313:469,139,-36,0,0,0.231204 -13511,3314:360,140,-36,0,0,0.235006 -13512,3314:361,141,-36,0,0,0.253821 -13513,3314:362,142,-36,0,0,0.256574 -13514,3314:363,143,-36,0,0,0.240687 -13515,3314:364,144,-36,0,0,0.234582 -13516,3314:465,145,-36,0,0,0.25583 -13517,3314:466,146,-36,0,0,0.259624 -13518,3314:467,147,-36,0,0,0.260395 -13519,3314:468,148,-36,0,0,0.291978 -13520,3314:469,149,-36,0,0,0.278202 -13521,3315:360,150,-36,0,0,0.266556 -13522,3315:361,151,-36,0,0,0.258362 -13523,3315:362,152,-36,0,0,0.252093 -13524,3315:363,153,-36,0,0,0.236932 -13525,3315:364,154,-36,0,0,0.23671 -13526,3315:465,155,-36,0,0,0.238403 -13527,3315:466,156,-36,0,0,0.236765 -13528,3315:467,157,-36,0,0,0.241099 -13529,3315:468,158,-36,0,0,0.242588 -13530,3315:469,159,-36,0,0,0.241062 -13531,3316:360,160,-36,0,0,0.241758 -13532,3316:361,161,-36,0,0,0.237825 -13533,3316:362,162,-36,0,0,0.242381 -13534,3316:363,163,-36,0,0,0.246975 -13535,3316:364,164,-36,0,0,0.251242 -13536,3316:465,165,-36,0,0,0.250065 -13537,3316:466,166,-36,0,0,0.247836 -13538,3317:361,171,-36,0,0,0.248162 -13539,3317:362,172,-36,0,0,0.204917 -13540,3317:363,173,-36,0,0,0.20485 -13541,3317:364,174,-36,0,0,0.209541 -13542,3317:465,175,-36,0,0,0.212604 -13543,3317:466,176,-36,0,0,0.207067 -13544,3317:467,177,-36,0,0,0.204114 -13545,3317:468,178,-36,0,0,0.206427 -13546,3317:469,179,-36,0,0,0.21381 -13547,3318:360,180,-36,0,0,0.22027 -13548,5318:350,-180,-35,0,0,0.216412 -13549,5317:459,-179,-35,0,0,0.223766 -13550,5317:458,-178,-35,0,0,0.230056 -13551,5317:457,-177,-35,0,0,0.236042 -13552,5317:456,-176,-35,0,0,0.242418 -13553,5317:455,-175,-35,0,0,0.235246 -13554,5317:354,-174,-35,0,0,0.234858 -13555,5317:353,-173,-35,0,0,0.281016 -13556,5317:352,-172,-35,0,0,0.282972 -13557,5317:351,-171,-35,0,0,0.26867 -13558,5317:350,-170,-35,0,0,0.246861 -13559,5316:459,-169,-35,0,0,0.260692 -13560,5316:458,-168,-35,0,0,0.270126 -13561,5316:457,-167,-35,0,0,0.257713 -13562,5316:456,-166,-35,0,0,0.258343 -13563,5316:455,-165,-35,0,0,0.262398 -13564,5316:354,-164,-35,0,0,0.263633 -13565,5316:353,-163,-35,0,0,0.263234 -13566,5316:352,-162,-35,0,0,0.264512 -13567,5316:351,-161,-35,0,0,0.266455 -13568,5316:350,-160,-35,0,0,0.269094 -13569,5315:459,-159,-35,0,0,0.269276 -13570,5315:458,-158,-35,0,0,0.27116 -13571,5315:457,-157,-35,0,0,0.276657 -13572,5315:456,-156,-35,0,0,0.281577 -13573,5315:455,-155,-35,0,0,0.284621 -13574,5315:354,-154,-35,0,0,0.285836 -13575,5315:353,-153,-35,0,0,0.286781 -13576,5315:352,-152,-35,0,0,0.284496 -13577,5315:351,-151,-35,0,0,0.281286 -13578,5315:350,-150,-35,0,0,0.28412 -13579,5314:459,-149,-35,0,0,0.289584 -13580,5314:458,-148,-35,0,0,0.28933 -13581,5314:457,-147,-35,0,0,0.285459 -13582,5314:456,-146,-35,0,0,0.287728 -13583,5314:455,-145,-35,0,0,0.291215 -13584,5314:354,-144,-35,0,0,0.294406 -13585,5314:353,-143,-35,0,0,0.294555 -13586,5314:352,-142,-35,0,0,0.293808 -13587,5314:351,-141,-35,0,0,0.290642 -13588,5314:350,-140,-35,0,0,0.288507 -13589,5313:459,-139,-35,0,0,0.286823 -13590,5313:458,-138,-35,0,0,0.281245 -13591,5313:457,-137,-35,0,0,0.276267 -13592,5313:456,-136,-35,0,0,0.274688 -13593,5313:455,-135,-35,0,0,0.276637 -13594,5313:354,-134,-35,0,0,0.276739 -13595,5313:353,-133,-35,0,0,0.276739 -13596,5313:352,-132,-35,0,0,0.27524 -13597,5313:351,-131,-35,0,0,0.274462 -13598,5313:350,-130,-35,0,0,0.278367 -13599,5312:459,-129,-35,0,0,0.27847 -13600,5312:458,-128,-35,0,0,0.276616 -13601,5312:457,-127,-35,0,0,0.278057 -13602,5312:456,-126,-35,0,0,0.277357 -13603,5312:455,-125,-35,0,0,0.276677 -13604,5312:354,-124,-35,0,0,0.273849 -13605,5312:353,-123,-35,0,0,0.273012 -13606,5312:352,-122,-35,0,0,0.271384 -13607,5312:351,-121,-35,0,0,0.268488 -13608,5312:350,-120,-35,0,0,0.264432 -13609,5311:459,-119,-35,0,0,0.263733 -13610,5311:458,-118,-35,0,0,0.26212 -13611,5311:457,-117,-35,0,0,0.258263 -13612,5311:456,-116,-35,0,0,0.256732 -13613,5311:455,-115,-35,0,0,0.260474 -13614,5311:354,-114,-35,0,0,0.257261 -13615,5311:353,-113,-35,0,0,0.24709 -13616,5311:352,-112,-35,0,0,0.248124 -13617,5311:351,-111,-35,0,0,0.252345 -13618,5311:350,-110,-35,0,0,0.253568 -13619,5310:459,-109,-35,0,0,0.246784 -13620,5310:458,-108,-35,0,0,0.241495 -13621,5310:457,-107,-35,0,0,0.236672 -13622,5310:456,-106,-35,0,0,0.234932 -13623,5310:455,-105,-35,0,0,0.235801 -13624,5310:354,-104,-35,0,0,0.231149 -13625,5310:353,-103,-35,0,0,0.234342 -13626,5310:352,-102,-35,0,0,0.228712 -13627,5310:351,-101,-35,0,0,0.228259 -13628,5310:350,-100,-35,0,0,0.229038 -13629,5309:459,-99,-35,0,0,0.230292 -13630,5309:458,-98,-35,0,0,0.228277 -13631,5309:457,-97,-35,0,0,0.228585 -13632,5309:456,-96,-35,0,0,0.232595 -13633,5309:455,-95,-35,0,0,0.226778 -13634,5309:354,-94,-35,0,0,0.222217 -13635,5309:353,-93,-35,0,0,0.225035 -13636,5309:352,-92,-35,0,0,0.229419 -13637,5309:351,-91,-35,0,0,0.227698 -13638,5309:350,-90,-35,0,0,0.225071 -13639,5308:459,-89,-35,0,0,0.221224 -13640,5308:458,-88,-35,0,0,0.221012 -13641,5308:457,-87,-35,0,0,0.223801 -13642,5308:456,-86,-35,0,0,0.225107 -13643,5308:455,-85,-35,0,0,0.223284 -13644,5308:354,-84,-35,0,0,0.222555 -13645,5308:353,-83,-35,0,0,0.21858 -13646,5308:352,-82,-35,0,0,0.222128 -13647,5308:351,-81,-35,0,0,0.223498 -13648,5308:350,-80,-35,0,0,0.225018 -13649,5307:459,-79,-35,0,0,0.227626 -13650,5307:458,-78,-35,0,0,0.228639 -13651,5307:457,-77,-35,0,0,0.230201 -13652,5307:456,-76,-35,0,0,0.229383 -13653,5307:455,-75,-35,0,0,0.23988 -13654,5306:455,-65,-35,0,0,0.269883 -13655,5306:354,-64,-35,0,0,0.267199 -13656,5306:353,-63,-35,0,0,0.266576 -13657,5306:352,-62,-35,0,0,0.267259 -13658,5306:351,-61,-35,0,0,0.264932 -13659,5306:350,-60,-35,0,0,0.233605 -13660,5305:459,-59,-35,0,0,0.196544 -13661,5305:458,-58,-35,0,0,0.249853 -13662,5305:457,-57,-35,0,0,0.275425 -13663,5305:456,-56,-35,0,0,0.275691 -13664,5305:455,-55,-35,0,0,0.313353 -13665,5305:354,-54,-35,0,0,0.335413 -13666,5305:353,-53,-35,0,0,0.321478 -13667,5305:352,-52,-35,0,0,0.286886 -13668,5305:351,-51,-35,0,0,0.25353 -13669,5305:350,-50,-35,0,0,0.244784 -13670,5304:459,-49,-35,0,0,0.244879 -13671,5304:458,-48,-35,0,0,0.250219 -13672,5304:457,-47,-35,0,0,0.238757 -13673,5304:456,-46,-35,0,0,0.234286 -13674,5304:455,-45,-35,0,0,0.227319 -13675,5304:354,-44,-35,0,0,0.220587 -13676,5304:353,-43,-35,0,0,0.216778 -13677,5304:352,-42,-35,0,0,0.214623 -13678,5304:351,-41,-35,0,0,0.212449 -13679,5304:350,-40,-35,0,0,0.212724 -13680,5303:459,-39,-35,0,0,0.208284 -13681,5303:458,-38,-35,0,0,0.20495 -13682,5303:457,-37,-35,0,0,0.199563 -13683,5303:456,-36,-35,0,0,0.197959 -13684,5303:455,-35,-35,0,0,0.195588 -13685,5303:354,-34,-35,0,0,0.196836 -13686,5303:353,-33,-35,0,0,0.189676 -13687,5303:352,-32,-35,0,0,0.184969 -13688,5303:351,-31,-35,0,0,0.181265 -13689,5303:350,-30,-35,0,0,0.197438 -13690,5302:459,-29,-35,0,0,0.219653 -13691,5302:458,-28,-35,0,0,0.208369 -13692,5302:457,-27,-35,0,0,0.206949 -13693,5302:456,-26,-35,0,0,0.211111 -13694,5302:455,-25,-35,0,0,0.195281 -13695,5302:354,-24,-35,0,0,0.204231 -13696,5302:353,-23,-35,0,0,0.220393 -13697,5302:352,-22,-35,0,0,0.228187 -13698,5302:351,-21,-35,0,0,0.216099 -13699,5302:350,-20,-35,0,0,0.211848 -13700,5301:459,-19,-35,0,0,0.211882 -13701,5301:458,-18,-35,0,0,0.207743 -13702,5301:457,-17,-35,0,0,0.206679 -13703,5301:456,-16,-35,0,0,0.17816 -13704,5301:455,-15,-35,0,0,0.170631 -13705,5301:354,-14,-35,0,0,0.199365 -13706,5301:353,-13,-35,0,0,0.218072 -13707,5301:352,-12,-35,0,0,0.234102 -13708,5301:351,-11,-35,0,0,0.230056 -13709,5301:350,-10,-35,0,0,0.228349 -13710,5300:459,-9,-35,0,0,0.242343 -13711,5300:458,-8,-35,0,0,0.236246 -13712,5300:457,-7,-35,0,0,0.237025 -13713,5300:456,-6,-35,0,0,0.226418 -13714,5300:455,-5,-35,0,0,0.209031 -13715,5300:354,-4,-35,0,0,0.210155 -13716,5300:353,-3,-35,0,0,0.224838 -13717,5300:352,-2,-35,0,0,0.227283 -13718,5300:351,-1,-35,0,0,0.218072 -13719,3300:351,0,-35,0,0,0.218089 -13720,3300:351,1,-35,0,0,0.220729 -13721,3300:352,2,-35,0,0,0.219829 -13722,3300:353,3,-35,0,0,0.217512 -13723,3300:354,4,-35,0,0,0.211162 -13724,3300:455,5,-35,0,0,0.199907 -13725,3300:456,6,-35,0,0,0.188699 -13726,3300:457,7,-35,0,0,0.193672 -13727,3300:458,8,-35,0,0,0.197112 -13728,3300:459,9,-35,0,0,0.205788 -13729,3301:350,10,-35,0,0,0.197584 -13730,3301:351,11,-35,0,0,0.189093 -13731,3301:352,12,-35,0,0,0.193639 -13732,3301:353,13,-35,0,0,0.21106 -13733,3301:354,14,-35,0,0,0.195265 -13734,3301:455,15,-35,0,0,0.209116 -13735,3301:456,16,-35,0,0,0.221561 -13736,3301:457,17,-35,0,0,0.202218 -13737,3301:458,18,-35,0,0,0.200105 -13738,3301:459,19,-35,0,0,0.210547 -13739,3302:350,20,-35,0,0,0.204465 -13740,3302:351,21,-35,0,0,0.195152 -13741,3302:352,22,-35,0,0,0.217564 -13742,3302:353,23,-35,0,0,0.229655 -13743,3302:354,24,-35,0,0,0.188605 -13744,3302:455,25,-35,0,0,0.187585 -13745,3302:456,26,-35,0,0,0.195669 -13746,3302:457,27,-35,0,0,0.19708 -13747,3302:458,28,-35,0,0,0.200253 -13748,3302:459,29,-35,0,0,0.187131 -13749,3303:350,30,-35,0,0,0.202516 -13750,3303:351,31,-35,0,0,0.225879 -13751,3303:352,32,-35,0,0,0.223569 -13752,3303:353,33,-35,0,0,0.202782 -13753,3303:354,34,-35,0,0,0.189109 -13754,3303:455,35,-35,0,0,0.18604 -13755,3303:456,36,-35,0,0,0.187053 -13756,3303:457,37,-35,0,0,0.182657 -13757,3303:458,38,-35,0,0,0.1769 -13758,3303:459,39,-35,0,0,0.174297 -13759,3304:350,40,-35,0,0,0.179321 -13760,3304:351,41,-35,0,0,0.182258 -13761,3304:352,42,-35,0,0,0.172236 -13762,3304:353,43,-35,0,0,0.168735 -13763,3304:354,44,-35,0,0,0.167084 -13764,3304:455,45,-35,0,0,0.162852 -13765,3304:456,46,-35,0,0,0.155416 -13766,3304:457,47,-35,0,0,0.147495 -13767,3304:458,48,-35,0,0,0.1496 -13768,3304:459,49,-35,0,0,0.152751 -13769,3305:350,50,-35,0,0,0.145032 -13770,3305:351,51,-35,0,0,0.144142 -13771,3305:352,52,-35,0,0,0.156674 -13772,3305:353,53,-35,0,0,0.162251 -13773,3305:354,54,-35,0,0,0.17973 -13774,3305:455,55,-35,0,0,0.178747 -13775,3305:456,56,-35,0,0,0.180321 -13776,3305:457,57,-35,0,0,0.240743 -13777,3305:458,58,-35,0,0,0.253024 -13778,3305:459,59,-35,0,0,0.279938 -13779,3306:350,60,-35,0,0,0.292744 -13780,3306:351,61,-35,0,0,0.278408 -13781,3306:352,62,-35,0,0,0.227175 -13782,3306:353,63,-35,0,0,0.236598 -13783,3306:354,64,-35,0,0,0.263534 -13784,3306:455,65,-35,0,0,0.270085 -13785,3306:456,66,-35,0,0,0.204632 -13786,3306:457,67,-35,0,0,0.205318 -13787,3306:458,68,-35,0,0,0.262458 -13788,3306:459,69,-35,0,0,0.271221 -13789,3307:350,70,-35,0,0,0.269822 -13790,3307:351,71,-35,0,0,0.26087 -13791,3307:352,72,-35,0,0,0.231387 -13792,3307:354,74,-35,0,0,0.25583 -13793,3307:455,75,-35,0,0,0.255205 -13794,3307:456,76,-35,0,0,0.221047 -13795,3307:457,77,-35,0,0,0.21556 -13796,3307:458,78,-35,0,0,0.228929 -13797,3307:459,79,-35,0,0,0.240574 -13798,3308:350,80,-35,0,0,0.235376 -13799,3308:351,81,-35,0,0,0.235394 -13800,3308:352,82,-35,0,0,0.229074 -13801,3308:353,83,-35,0,0,0.214519 -13802,3308:354,84,-35,0,0,0.209048 -13803,3308:455,85,-35,0,0,0.217284 -13804,3308:456,86,-35,0,0,0.230056 -13805,3308:457,87,-35,0,0,0.213344 -13806,3308:458,88,-35,0,0,0.20557 -13807,3308:459,89,-35,0,0,0.201258 -13808,3309:350,90,-35,0,0,0.195847 -13809,3309:351,91,-35,0,0,0.19609 -13810,3309:352,92,-35,0,0,0.195184 -13811,3309:353,93,-35,0,0,0.195523 -13812,3309:354,94,-35,0,0,0.192519 -13813,3309:455,95,-35,0,0,0.187616 -13814,3309:456,96,-35,0,0,0.200335 -13815,3309:457,97,-35,0,0,0.207405 -13816,3309:458,98,-35,0,0,0.216168 -13817,3309:459,99,-35,0,0,0.238497 -13818,3310:350,100,-35,0,0,0.236932 -13819,3310:351,101,-35,0,0,0.1938 -13820,3310:352,102,-35,0,0,0.190261 -13821,3310:353,103,-35,0,0,0.229837 -13822,3310:354,104,-35,0,0,0.228187 -13823,3310:455,105,-35,0,0,0.205402 -13824,3310:456,106,-35,0,0,0.207422 -13825,3310:457,107,-35,0,0,0.229456 -13826,3310:458,108,-35,0,0,0.207709 -13827,3310:459,109,-35,0,0,0.202384 -13828,3311:350,110,-35,0,0,0.230657 -13829,3311:351,111,-35,0,0,0.220287 -13830,3311:352,112,-35,0,0,0.214311 -13831,3311:353,113,-35,0,0,0.220835 -13832,3311:354,114,-35,0,0,0.225233 -13833,3311:455,115,-35,0,0,0.227283 -13834,3311:456,116,-35,0,0,0.226634 -13835,3311:457,117,-35,0,0,0.224194 -13836,3311:458,118,-35,0,0,0.222537 -13837,3311:459,119,-35,0,0,0.222395 -13838,3312:350,120,-35,0,0,0.223534 -13839,3312:351,121,-35,0,0,0.228241 -13840,3312:352,122,-35,0,0,0.224337 -13841,3312:353,123,-35,0,0,0.22332 -13842,3312:354,124,-35,0,0,0.224856 -13843,3312:455,125,-35,0,0,0.226076 -13844,3312:456,126,-35,0,0,0.227879 -13845,3312:457,127,-35,0,0,0.228385 -13846,3312:458,128,-35,0,0,0.228802 -13847,3312:459,129,-35,0,0,0.231095 -13848,3313:350,130,-35,0,0,0.229655 -13849,3313:351,131,-35,0,0,0.228984 -13850,3313:352,132,-35,0,0,0.229456 -13851,3313:353,133,-35,0,0,0.227987 -13852,3313:354,134,-35,0,0,0.227861 -13853,3313:455,135,-35,0,0,0.227085 -13854,3313:456,136,-35,0,0,0.229437 -13855,3313:457,137,-35,0,0,0.227933 -13856,3313:458,138,-35,0,0,0.229819 -13857,3313:459,139,-35,0,0,0.238142 -13858,3314:350,140,-35,0,0,0.240762 -13859,3314:351,141,-35,0,0,0.264952 -13860,3314:352,142,-35,0,0,0.260613 -13861,3314:353,143,-35,0,0,0.254367 -13862,3314:354,144,-35,0,0,0.257673 -13863,3314:455,145,-35,0,0,0.261108 -13864,3314:456,146,-35,0,0,0.271018 -13865,3314:457,147,-35,0,0,0.290939 -13866,3314:458,148,-35,0,0,0.309146 -13867,3314:459,149,-35,0,0,0.270937 -13868,3315:350,150,-35,0,0,0.261386 -13869,3315:351,151,-35,0,0,0.258362 -13870,3315:352,152,-35,0,0,0.253646 -13871,3315:353,153,-35,0,0,0.255596 -13872,3315:354,154,-35,0,0,0.263514 -13873,3315:455,155,-35,0,0,0.263195 -13874,3315:456,156,-35,0,0,0.259367 -13875,3315:457,157,-35,0,0,0.258008 -13876,3315:458,158,-35,0,0,0.255576 -13877,3315:459,159,-35,0,0,0.255909 -13878,3316:350,160,-35,0,0,0.262955 -13879,3316:351,161,-35,0,0,0.257792 -13880,3316:352,162,-35,0,0,0.255928 -13881,3316:353,163,-35,0,0,0.263075 -13882,3316:354,164,-35,0,0,0.263234 -13883,3316:455,165,-35,0,0,0.262578 -13884,3316:456,166,-35,0,0,0.265312 -13885,3316:457,167,-35,0,0,0.266335 -13886,3317:352,172,-35,0,0,0.238608 -13887,3317:353,173,-35,0,0,0.223498 -13888,3317:354,174,-35,0,0,0.218072 -13890,3317:456,176,-35,0,0,0.221951 -13891,3317:457,177,-35,0,0,0.215508 -13892,3317:458,178,-35,0,0,0.214848 -13893,3317:459,179,-35,0,0,0.213879 -13894,3318:350,180,-35,0,0,0.216412 -13895,5318:140,-180,-34,0,0,0.260039 -13896,5317:249,-179,-34,0,0,0.252694 -13897,5317:248,-178,-34,0,0,0.262001 -13898,5317:247,-177,-34,0,0,0.263334 -13899,5317:246,-176,-34,0,0,0.259466 -13900,5317:245,-175,-34,0,0,0.250933 -13901,5317:144,-174,-34,0,0,0.27816 -13902,5317:143,-173,-34,0,0,0.296394 -13903,5317:142,-172,-34,0,0,0.28164 -13904,5317:141,-171,-34,0,0,0.280809 -13905,5317:140,-170,-34,0,0,0.274503 -13906,5316:249,-169,-34,0,0,0.274974 -13907,5316:248,-168,-34,0,0,0.271445 -13908,5316:247,-167,-34,0,0,0.267763 -13909,5316:246,-166,-34,0,0,0.275917 -13910,5316:245,-165,-34,0,0,0.273788 -13911,5316:144,-164,-34,0,0,0.275118 -13912,5316:143,-163,-34,0,0,0.273951 -13913,5316:142,-162,-34,0,0,0.27604 -13914,5316:141,-161,-34,0,0,0.278449 -13915,5316:140,-160,-34,0,0,0.280809 -13916,5315:249,-159,-34,0,0,0.283305 -13917,5315:248,-158,-34,0,0,0.285417 -13918,5315:247,-157,-34,0,0,0.292 -13919,5315:246,-156,-34,0,0,0.296266 -13920,5315:245,-155,-34,0,0,0.300806 -13921,5315:144,-154,-34,0,0,0.302646 -13922,5315:143,-153,-34,0,0,0.300201 -13923,5315:142,-152,-34,0,0,0.297081 -13924,5315:141,-151,-34,0,0,0.296866 -13925,5315:140,-150,-34,0,0,0.302624 -13926,5314:249,-149,-34,0,0,0.306497 -13927,5314:248,-148,-34,0,0,0.304448 -13928,5314:247,-147,-34,0,0,0.305232 -13929,5314:246,-146,-34,0,0,0.313552 -13930,5314:245,-145,-34,0,0,0.311499 -13931,5314:144,-144,-34,0,0,0.308883 -13932,5314:143,-143,-34,0,0,0.308905 -13933,5314:142,-142,-34,0,0,0.309497 -13934,5314:141,-141,-34,0,0,0.306192 -13935,5314:140,-140,-34,0,0,0.305865 -13936,5313:249,-139,-34,0,0,0.30484 -13937,5313:248,-138,-34,0,0,0.300589 -13938,5313:247,-137,-34,0,0,0.297424 -13939,5313:246,-136,-34,0,0,0.295666 -13940,5313:245,-135,-34,0,0,0.295559 -13941,5313:144,-134,-34,0,0,0.292339 -13942,5313:143,-133,-34,0,0,0.289521 -13943,5313:142,-132,-34,0,0,0.293297 -13944,5313:141,-131,-34,0,0,0.290113 -13945,5313:140,-130,-34,0,0,0.291639 -13946,5312:249,-129,-34,0,0,0.29096 -13947,5312:248,-128,-34,0,0,0.295175 -13948,5312:247,-127,-34,0,0,0.295859 -13949,5312:246,-126,-34,0,0,0.298735 -13950,5312:245,-125,-34,0,0,0.296266 -13951,5312:144,-124,-34,0,0,0.292319 -13952,5312:143,-123,-34,0,0,0.290769 -13953,5312:142,-122,-34,0,0,0.286949 -13954,5312:141,-121,-34,0,0,0.28366 -13955,5312:140,-120,-34,0,0,0.284224 -13956,5311:249,-119,-34,0,0,0.278945 -13957,5311:248,-118,-34,0,0,0.27878 -13958,5311:247,-117,-34,0,0,0.27238 -13959,5311:246,-116,-34,0,0,0.268266 -13960,5311:245,-115,-34,0,0,0.268973 -13961,5311:144,-114,-34,0,0,0.275261 -13962,5311:143,-113,-34,0,0,0.270754 -13963,5311:142,-112,-34,0,0,0.268206 -13964,5311:141,-111,-34,0,0,0.263953 -13965,5311:140,-110,-34,0,0,0.262518 -13966,5310:249,-109,-34,0,0,0.259821 -13967,5310:248,-108,-34,0,0,0.255596 -13968,5310:247,-107,-34,0,0,0.25159 -13969,5310:246,-106,-34,0,0,0.247626 -13970,5310:245,-105,-34,0,0,0.243666 -13971,5310:144,-104,-34,0,0,0.243685 -13972,5310:143,-103,-34,0,0,0.250354 -13973,5310:142,-102,-34,0,0,0.248565 -13974,5310:141,-101,-34,0,0,0.245393 -13975,5310:140,-100,-34,0,0,0.245754 -13976,5309:249,-99,-34,0,0,0.242777 -13977,5309:248,-98,-34,0,0,0.238571 -13978,5309:247,-97,-34,0,0,0.244158 -13979,5309:246,-96,-34,0,0,0.244557 -13980,5309:245,-95,-34,0,0,0.249064 -13981,5309:144,-94,-34,0,0,0.244367 -13982,5309:143,-93,-34,0,0,0.236858 -13983,5309:142,-92,-34,0,0,0.242381 -13984,5309:141,-91,-34,0,0,0.237974 -13985,5309:140,-90,-34,0,0,0.244405 -13986,5308:249,-89,-34,0,0,0.238739 -13987,5308:248,-88,-34,0,0,0.235986 -13988,5308:247,-87,-34,0,0,0.241608 -13989,5308:246,-86,-34,0,0,0.238384 -13990,5308:245,-85,-34,0,0,0.236877 -13991,5308:144,-84,-34,0,0,0.241721 -13992,5308:143,-83,-34,0,0,0.233605 -13993,5308:142,-82,-34,0,0,0.236209 -13994,5308:141,-81,-34,0,0,0.236784 -13995,5308:140,-80,-34,0,0,0.236839 -13996,5307:249,-79,-34,0,0,0.23645 -13997,5307:248,-78,-34,0,0,0.238926 -13998,5307:247,-77,-34,0,0,0.241175 -13999,5307:246,-76,-34,0,0,0.240123 -14000,5307:245,-75,-34,0,0,0.245259 -14001,5307:144,-74,-34,0,0,0.257693 -14002,5306:245,-65,-34,0,0,0.299489 -14003,5306:144,-64,-34,0,0,0.294876 -14004,5306:143,-63,-34,0,0,0.29007 -14005,5306:142,-62,-34,0,0,0.286949 -14006,5306:141,-61,-34,0,0,0.287622 -14007,5306:140,-60,-34,0,0,0.282471 -14008,5305:249,-59,-34,0,0,0.216726 -14009,5305:248,-58,-34,0,0,0.247033 -14010,5305:247,-57,-34,0,0,0.276698 -14011,5305:246,-56,-34,0,0,0.282972 -14012,5305:245,-55,-34,0,0,0.312668 -14013,5305:144,-54,-34,0,0,0.349688 -14014,5305:143,-53,-34,0,0,0.271343 -14015,5305:142,-52,-34,0,0,0.289077 -14016,5305:141,-51,-34,0,0,0.288929 -14017,5305:140,-50,-34,0,0,0.265833 -14018,5304:249,-49,-34,0,0,0.256065 -14019,5304:248,-48,-34,0,0,0.253977 -14020,5304:247,-47,-34,0,0,0.241175 -14021,5304:246,-46,-34,0,0,0.234913 -14022,5304:245,-45,-34,0,0,0.227626 -14023,5304:144,-44,-34,0,0,0.227572 -14024,5304:143,-43,-34,0,0,0.227337 -14025,5304:142,-42,-34,0,0,0.224445 -14026,5304:141,-41,-34,0,0,0.224463 -14027,5304:140,-40,-34,0,0,0.222341 -14028,5303:249,-39,-34,0,0,0.21445 -14029,5303:248,-38,-34,0,0,0.210104 -14030,5303:247,-37,-34,0,0,0.209507 -14031,5303:246,-36,-34,0,0,0.209065 -14032,5303:245,-35,-34,0,0,0.210155 -14033,5303:144,-34,-34,0,0,0.212002 -14034,5303:143,-33,-34,0,0,0.226292 -14035,5303:142,-32,-34,0,0,0.22259 -14036,5303:141,-31,-34,0,0,0.235098 -14037,5303:140,-30,-34,0,0,0.235968 -14038,5302:249,-29,-34,0,0,0.22622 -14039,5302:248,-28,-34,0,0,0.230128 -14040,5302:247,-27,-34,0,0,0.236746 -14041,5302:246,-26,-34,0,0,0.211214 -14042,5302:245,-25,-34,0,0,0.212535 -14043,5302:144,-24,-34,0,0,0.237118 -14044,5302:143,-23,-34,0,0,0.253413 -14045,5302:142,-22,-34,0,0,0.241627 -14046,5302:141,-21,-34,0,0,0.238552 -14047,5302:140,-20,-34,0,0,0.222004 -14048,5301:249,-19,-34,0,0,0.211848 -14049,5301:248,-18,-34,0,0,0.207726 -14050,5301:247,-17,-34,0,0,0.20144 -14051,5301:246,-16,-34,0,0,0.181662 -14052,5301:245,-15,-34,0,0,0.189361 -14053,5301:144,-14,-34,0,0,0.230256 -14054,5301:143,-13,-34,0,0,0.258677 -14055,5301:142,-12,-34,0,0,0.252752 -14056,5301:141,-11,-34,0,0,0.242607 -14057,5301:140,-10,-34,0,0,0.239318 -14058,5300:249,-9,-34,0,0,0.233826 -14059,5300:248,-8,-34,0,0,0.230147 -14060,5300:247,-7,-34,0,0,0.23915 -14061,5300:246,-6,-34,0,0,0.236691 -14062,5300:245,-5,-34,0,0,0.235062 -14063,5300:144,-4,-34,0,0,0.231844 -14064,5300:143,-3,-34,0,0,0.230056 -14065,5300:142,-2,-34,0,0,0.224659 -14066,5300:141,-1,-34,0,0,0.225 -14067,3300:141,0,-34,0,0,0.224713 -14068,3300:141,1,-34,0,0,0.225896 -14069,3300:142,2,-34,0,0,0.220976 -14070,3300:143,3,-34,0,0,0.218335 -14071,3300:144,4,-34,0,0,0.217337 -14072,3300:245,5,-34,0,0,0.21082 -14073,3300:246,6,-34,0,0,0.19778 -14074,3300:247,7,-34,0,0,0.197226 -14075,3300:248,8,-34,0,0,0.199398 -14076,3300:249,9,-34,0,0,0.199447 -14077,3301:140,10,-34,0,0,0.214242 -14078,3301:141,11,-34,0,0,0.213482 -14079,3301:142,12,-34,0,0,0.219758 -14080,3301:143,13,-34,0,0,0.222093 -14081,3301:144,14,-34,0,0,0.209558 -14082,3301:245,15,-34,0,0,0.241758 -14083,3301:246,16,-34,0,0,0.264632 -14084,3301:247,17,-34,0,0,0.218861 -14085,3301:248,18,-34,0,0,0.281806 -14086,3301:249,19,-34,0,0,0.267883 -14087,3302:140,20,-34,0,0,0.248469 -14088,3302:141,21,-34,0,0,0.271425 -14089,3302:142,22,-34,0,0,0.263055 -14090,3302:143,23,-34,0,0,0.277048 -14091,3302:144,24,-34,0,0,0.258343 -14092,3302:245,25,-34,0,0,0.230292 -14093,3302:246,26,-34,0,0,0.249429 -14094,3302:247,27,-34,0,0,0.250084 -14095,3302:248,28,-34,0,0,0.252752 -14096,3302:249,29,-34,0,0,0.236746 -14097,3303:140,30,-34,0,0,0.223106 -14098,3303:141,31,-34,0,0,0.241627 -14099,3303:142,32,-34,0,0,0.20393 -14100,3303:143,33,-34,0,0,0.199021 -14101,3303:144,34,-34,0,0,0.201291 -14102,3303:245,35,-34,0,0,0.200566 -14103,3303:246,36,-34,0,0,0.212105 -14104,3303:247,37,-34,0,0,0.189187 -14105,3303:248,38,-34,0,0,0.186148 -14106,3303:249,39,-34,0,0,0.200088 -14107,3304:140,40,-34,0,0,0.202599 -14108,3304:141,41,-34,0,0,0.194234 -14109,3304:142,42,-34,0,0,0.184891 -14110,3304:143,43,-34,0,0,0.176646 -14111,3304:144,44,-34,0,0,0.170428 -14112,3304:245,45,-34,0,0,0.163709 -14113,3304:246,46,-34,0,0,0.157395 -14114,3304:247,47,-34,0,0,0.152114 -14115,3304:248,48,-34,0,0,0.157408 -14116,3304:249,49,-34,0,0,0.160943 -14117,3305:140,50,-34,0,0,0.165389 -14118,3305:141,51,-34,0,0,0.165872 -14119,3305:142,52,-34,0,0,0.205268 -14120,3305:143,53,-34,0,0,0.251513 -14121,3305:144,54,-34,0,0,0.260811 -14122,3305:245,55,-34,0,0,0.258874 -14123,3305:246,56,-34,0,0,0.228621 -14124,3305:247,57,-34,0,0,0.235062 -14125,3305:248,58,-34,0,0,0.239543 -14126,3305:249,59,-34,0,0,0.250065 -14127,3306:140,60,-34,0,0,0.299101 -14128,3306:141,61,-34,0,0,0.286319 -14129,3306:142,62,-34,0,0,0.266475 -14130,3306:143,63,-34,0,0,0.243344 -14131,3306:144,64,-34,0,0,0.256653 -14132,3306:245,65,-34,0,0,0.267662 -14133,3306:246,66,-34,0,0,0.269438 -14134,3306:247,67,-34,0,0,0.231533 -14135,3306:248,68,-34,0,0,0.279358 -14136,3306:249,69,-34,0,0,0.265712 -14137,3307:140,70,-34,0,0,0.263633 -14138,3307:141,71,-34,0,0,0.256594 -14139,3307:142,72,-34,0,0,0.235062 -14140,3307:144,74,-34,0,0,0.249199 -14141,3307:245,75,-34,0,0,0.244139 -14142,3307:246,76,-34,0,0,0.246117 -14143,3307:247,77,-34,0,0,0.253841 -14144,3307:248,78,-34,0,0,0.258599 -14145,3307:249,79,-34,0,0,0.248392 -14146,3308:140,80,-34,0,0,0.242399 -14147,3308:141,81,-34,0,0,0.242022 -14148,3308:142,82,-34,0,0,0.247281 -14149,3308:143,83,-34,0,0,0.244841 -14150,3308:144,84,-34,0,0,0.241758 -14151,3308:245,85,-34,0,0,0.244784 -14152,3308:246,86,-34,0,0,0.242626 -14153,3308:247,87,-34,0,0,0.229601 -14154,3308:248,88,-34,0,0,0.210445 -14155,3308:249,89,-34,0,0,0.216064 -14156,3309:140,90,-34,0,0,0.222679 -14157,3309:141,91,-34,0,0,0.222999 -14158,3309:142,92,-34,0,0,0.209303 -14159,3309:143,93,-34,0,0,0.200846 -14160,3309:144,94,-34,0,0,0.200335 -14161,3309:245,95,-34,0,0,0.201672 -14162,3309:246,96,-34,0,0,0.203614 -14163,3309:247,97,-34,0,0,0.206326 -14164,3309:248,98,-34,0,0,0.206461 -14165,3309:249,99,-34,0,0,0.226148 -14166,3310:140,100,-34,0,0,0.242531 -14167,3310:141,101,-34,0,0,0.238552 -14168,3310:142,102,-34,0,0,0.237658 -14169,3310:143,103,-34,0,0,0.235764 -14170,3310:144,104,-34,0,0,0.230201 -14171,3310:245,105,-34,0,0,0.216029 -14172,3310:246,106,-34,0,0,0.228838 -14173,3310:247,107,-34,0,0,0.240874 -14174,3310:248,108,-34,0,0,0.234268 -14175,3310:249,109,-34,0,0,0.233734 -14176,3311:140,110,-34,0,0,0.23723 -14177,3311:141,111,-34,0,0,0.232485 -14178,3311:142,112,-34,0,0,0.232668 -14179,3311:143,113,-34,0,0,0.235136 -14180,3311:144,114,-34,0,0,0.232925 -14181,3311:245,115,-34,0,0,0.231478 -14182,3311:246,116,-34,0,0,0.233495 -14183,3311:247,117,-34,0,0,0.233293 -14184,3311:248,118,-34,0,0,0.23276 -14185,3311:249,119,-34,0,0,0.234305 -14186,3312:140,120,-34,0,0,0.236246 -14187,3312:141,121,-34,0,0,0.239412 -14188,3312:142,122,-34,0,0,0.237695 -14189,3312:143,123,-34,0,0,0.235746 -14190,3312:144,124,-34,0,0,0.234526 -14191,3312:245,125,-34,0,0,0.235468 -14192,3312:246,126,-34,0,0,0.23645 -14193,3312:247,127,-34,0,0,0.235764 -14194,3312:248,128,-34,0,0,0.240799 -14195,3312:249,129,-34,0,0,0.237304 -14196,3313:140,130,-34,0,0,0.238142 -14197,3313:141,131,-34,0,0,0.238776 -14198,3313:142,132,-34,0,0,0.240893 -14199,3313:143,133,-34,0,0,0.242418 -14200,3313:144,134,-34,0,0,0.240067 -14201,3313:245,135,-34,0,0,0.235746 -14202,3313:246,136,-34,0,0,0.24003 -14203,3313:247,137,-34,0,0,0.239486 -14204,3313:248,138,-34,0,0,0.242928 -14205,3313:249,139,-34,0,0,0.253626 -14206,3314:140,140,-34,0,0,0.270045 -14207,3314:141,141,-34,0,0,0.26214 -14208,3314:142,142,-34,0,0,0.272706 -14209,3314:143,143,-34,0,0,0.263295 -14210,3314:144,144,-34,0,0,0.269721 -14211,3314:245,145,-34,0,0,0.2794 -14212,3314:246,146,-34,0,0,0.306913 -14213,3314:248,148,-34,0,0,0.291024 -14214,3314:249,149,-34,0,0,0.331486 -14215,3315:140,150,-34,0,0,0.293276 -14216,3315:141,151,-34,0,0,0.291024 -14217,3315:142,152,-34,0,0,0.271343 -14218,3315:143,153,-34,0,0,0.278202 -14219,3315:144,154,-34,0,0,0.287159 -14220,3315:245,155,-34,0,0,0.284956 -14221,3315:246,156,-34,0,0,0.278945 -14222,3315:247,157,-34,0,0,0.273441 -14223,3315:248,158,-34,0,0,0.27678 -14224,3315:249,159,-34,0,0,0.275917 -14225,3316:140,160,-34,0,0,0.280933 -14226,3316:141,161,-34,0,0,0.276719 -14227,3316:142,162,-34,0,0,0.27604 -14228,3316:143,163,-34,0,0,0.277769 -14229,3316:144,164,-34,0,0,0.27783 -14230,3316:245,165,-34,0,0,0.280622 -14231,3316:246,166,-34,0,0,0.281349 -14232,3316:247,167,-34,0,0,0.278656 -14233,3316:248,168,-34,0,0,0.281785 -14234,3316:249,169,-34,0,0,0.279958 -14235,3317:144,174,-34,0,0,0.242852 -14236,3317:245,175,-34,0,0,0.269074 -14237,3317:246,176,-34,0,0,0.262279 -14238,3317:247,177,-34,0,0,0.253899 -14239,3317:248,178,-34,0,0,0.249544 -14240,3317:249,179,-34,0,0,0.247836 -14241,3318:140,180,-34,0,0,0.260039 -14242,5318:130,-180,-33,0,0,0.294961 -14243,5317:239,-179,-33,0,0,0.30665 -14244,5317:238,-178,-33,0,0,0.318638 -14245,5317:237,-177,-33,0,0,0.317079 -14246,5317:236,-176,-33,0,0,0.316434 -14247,5317:235,-175,-33,0,0,0.317412 -14248,5317:134,-174,-33,0,0,0.316123 -14249,5317:133,-173,-33,0,0,0.308532 -14250,5317:132,-172,-33,0,0,0.292106 -14251,5317:131,-171,-33,0,0,0.28697 -14252,5317:130,-170,-33,0,0,0.28933 -14253,5316:239,-169,-33,0,0,0.281826 -14254,5316:238,-168,-33,0,0,0.281826 -14255,5316:237,-167,-33,0,0,0.283368 -14256,5316:236,-166,-33,0,0,0.289352 -14257,5316:235,-165,-33,0,0,0.287412 -14258,5316:134,-164,-33,0,0,0.293958 -14259,5316:133,-163,-33,0,0,0.293404 -14260,5316:132,-162,-33,0,0,0.29079 -14261,5316:131,-161,-33,0,0,0.294 -14262,5316:130,-160,-33,0,0,0.301324 -14263,5315:239,-159,-33,0,0,0.301584 -14264,5315:238,-158,-33,0,0,0.308708 -14265,5315:237,-157,-33,0,0,0.310266 -14266,5315:236,-156,-33,0,0,0.317012 -14267,5315:235,-155,-33,0,0,0.318861 -14268,5315:134,-154,-33,0,0,0.324173 -14269,5315:133,-153,-33,0,0,0.322375 -14270,5315:132,-152,-33,0,0,0.323813 -14271,5315:131,-151,-33,0,0,0.321926 -14272,5315:130,-150,-33,0,0,0.323183 -14273,5314:239,-149,-33,0,0,0.321141 -14274,5314:238,-148,-33,0,0,0.321949 -14275,5314:237,-147,-33,0,0,0.3274 -14276,5314:236,-146,-33,0,0,0.327106 -14277,5314:235,-145,-33,0,0,0.324668 -14278,5314:134,-144,-33,0,0,0.325705 -14279,5314:133,-143,-33,0,0,0.325638 -14280,5314:132,-142,-33,0,0,0.323071 -14281,5314:131,-141,-33,0,0,0.320828 -14282,5314:130,-140,-33,0,0,0.324038 -14283,5313:239,-139,-33,0,0,0.322061 -14284,5313:238,-138,-33,0,0,0.315901 -14285,5313:237,-137,-33,0,0,0.31866 -14286,5313:236,-136,-33,0,0,0.311653 -14287,5313:235,-135,-33,0,0,0.310728 -14288,5313:134,-134,-33,0,0,0.310948 -14289,5313:133,-133,-33,0,0,0.310113 -14290,5313:132,-132,-33,0,0,0.308335 -14291,5313:131,-131,-33,0,0,0.306148 -14292,5313:130,-130,-33,0,0,0.311455 -14293,5312:239,-129,-33,0,0,0.311345 -14294,5312:238,-128,-33,0,0,0.308181 -14295,5312:237,-127,-33,0,0,0.310904 -14296,5312:236,-126,-33,0,0,0.313861 -14297,5312:235,-125,-33,0,0,0.308686 -14298,5312:134,-124,-33,0,0,0.309432 -14299,5312:133,-123,-33,0,0,0.300481 -14300,5312:132,-122,-33,0,0,0.30397 -14301,5312:131,-121,-33,0,0,0.303992 -14302,5312:130,-120,-33,0,0,0.298326 -14303,5311:239,-119,-33,0,0,0.292872 -14304,5311:238,-118,-33,0,0,0.293467 -14305,5311:237,-117,-33,0,0,0.293489 -14306,5311:236,-116,-33,0,0,0.292892 -14307,5311:235,-115,-33,0,0,0.290939 -14308,5311:134,-114,-33,0,0,0.289859 -14309,5311:133,-113,-33,0,0,0.290918 -14310,5311:132,-112,-33,0,0,0.280975 -14311,5311:131,-111,-33,0,0,0.275589 -14312,5311:130,-110,-33,0,0,0.269984 -14313,5310:239,-109,-33,0,0,0.262856 -14314,5310:238,-108,-33,0,0,0.261346 -14315,5310:237,-107,-33,0,0,0.259269 -14316,5310:236,-106,-33,0,0,0.263514 -14317,5310:235,-105,-33,0,0,0.259091 -14318,5310:134,-104,-33,0,0,0.259703 -14319,5310:133,-103,-33,0,0,0.266154 -14320,5310:132,-102,-33,0,0,0.265993 -14321,5310:131,-101,-33,0,0,0.258874 -14322,5310:130,-100,-33,0,0,0.257084 -14323,5309:239,-99,-33,0,0,0.258795 -14324,5309:238,-98,-33,0,0,0.258165 -14325,5309:237,-97,-33,0,0,0.252578 -14326,5309:236,-96,-33,0,0,0.259486 -14327,5309:235,-95,-33,0,0,0.251435 -14328,5309:134,-94,-33,0,0,0.257673 -14329,5309:133,-93,-33,0,0,0.255518 -14330,5309:132,-92,-33,0,0,0.252442 -14331,5309:131,-91,-33,0,0,0.246689 -14332,5309:130,-90,-33,0,0,0.254152 -14333,5308:239,-89,-33,0,0,0.249064 -14334,5308:238,-88,-33,0,0,0.24753 -14335,5308:237,-87,-33,0,0,0.247472 -14336,5308:236,-86,-33,0,0,0.254327 -14337,5308:235,-85,-33,0,0,0.251996 -14338,5308:134,-84,-33,0,0,0.251745 -14339,5308:133,-83,-33,0,0,0.246498 -14340,5308:132,-82,-33,0,0,0.251377 -14341,5308:131,-81,-33,0,0,0.247128 -14342,5308:130,-80,-33,0,0,0.248334 -14343,5307:239,-79,-33,0,0,0.251339 -14344,5307:238,-78,-33,0,0,0.251532 -14345,5307:237,-77,-33,0,0,0.252268 -14346,5307:236,-76,-33,0,0,0.253082 -14347,5307:235,-75,-33,0,0,0.256771 -14348,5307:133,-73,-33,0,0,0.28058 -14349,5306:133,-63,-33,0,0,0.310091 -14350,5306:132,-62,-33,0,0,0.311543 -14351,5306:131,-61,-33,0,0,0.32242 -14352,5306:130,-60,-33,0,0,0.317569 -14353,5305:239,-59,-33,0,0,0.287559 -14354,5305:238,-58,-33,0,0,0.231058 -14355,5305:237,-57,-33,0,0,0.251474 -14356,5305:236,-56,-33,0,0,0.281037 -14357,5305:235,-55,-33,0,0,0.343801 -14358,5305:134,-54,-33,0,0,0.33971 -14359,5305:133,-53,-33,0,0,0.285291 -14360,5305:132,-52,-33,0,0,0.311675 -14361,5305:131,-51,-33,0,0,0.332351 -14362,5305:130,-50,-33,0,0,0.361791 -14363,5304:239,-49,-33,0,0,0.362479 -14364,5304:238,-48,-33,0,0,0.306279 -14365,5304:237,-47,-33,0,0,0.270471 -14366,5304:236,-46,-33,0,0,0.257359 -14367,5304:235,-45,-33,0,0,0.26216 -14368,5304:134,-44,-33,0,0,0.264152 -14369,5304:133,-43,-33,0,0,0.262796 -14370,5304:132,-42,-33,0,0,0.264692 -14371,5304:131,-41,-33,0,0,0.257792 -14372,5304:130,-40,-33,0,0,0.235764 -14373,5303:239,-39,-33,0,0,0.225753 -14374,5303:238,-38,-33,0,0,0.229583 -14375,5303:237,-37,-33,0,0,0.237993 -14376,5303:236,-36,-33,0,0,0.252403 -14377,5303:235,-35,-33,0,0,0.254698 -14378,5303:134,-34,-33,0,0,0.230165 -14379,5303:133,-33,-33,0,0,0.235542 -14380,5303:132,-32,-33,0,0,0.242947 -14381,5303:131,-31,-33,0,0,0.259012 -14382,5303:130,-30,-33,0,0,0.249544 -14383,5302:239,-29,-33,0,0,0.24359 -14384,5302:238,-28,-33,0,0,0.24359 -14385,5302:237,-27,-33,0,0,0.251048 -14386,5302:236,-26,-33,0,0,0.246117 -14387,5302:235,-25,-33,0,0,0.266596 -14388,5302:134,-24,-33,0,0,0.272462 -14389,5302:133,-23,-33,0,0,0.25992 -14390,5302:132,-22,-33,0,0,0.264692 -14391,5302:131,-21,-33,0,0,0.257988 -14392,5302:130,-20,-33,0,0,0.236079 -14393,5301:239,-19,-33,0,0,0.224051 -14394,5301:238,-18,-33,0,0,0.207658 -14395,5301:237,-17,-33,0,0,0.200269 -14396,5301:236,-16,-33,0,0,0.194298 -14397,5301:235,-15,-33,0,0,0.219882 -14398,5301:134,-14,-33,0,0,0.266174 -14399,5301:133,-13,-33,0,0,0.255772 -14400,5301:132,-12,-33,0,0,0.240874 -14401,5301:131,-11,-33,0,0,0.239449 -14402,5301:130,-10,-33,0,0,0.238646 -14403,5300:239,-9,-33,0,0,0.235468 -14404,5300:238,-8,-33,0,0,0.235376 -14405,5300:237,-7,-33,0,0,0.251532 -14406,5300:236,-6,-33,0,0,0.24063 -14407,5300:235,-5,-33,0,0,0.231314 -14408,5300:134,-4,-33,0,0,0.230967 -14409,5300:133,-3,-33,0,0,0.233385 -14410,5300:132,-2,-33,0,0,0.235764 -14411,5300:131,-1,-33,0,0,0.235949 -14412,3300:131,0,-33,0,0,0.231624 -14413,3300:131,1,-33,0,0,0.230857 -14414,3300:132,2,-33,0,0,0.23146 -14415,3300:133,3,-33,0,0,0.220358 -14416,3300:134,4,-33,0,0,0.21683 -14417,3300:235,5,-33,0,0,0.221756 -14418,3300:236,6,-33,0,0,0.232228 -14419,3300:237,7,-33,0,0,0.230311 -14420,3300:238,8,-33,0,0,0.227554 -14421,3300:239,9,-33,0,0,0.21497 -14422,3301:130,10,-33,0,0,0.210257 -14423,3301:131,11,-33,0,0,0.214104 -14424,3301:132,12,-33,0,0,0.22931 -14425,3301:133,13,-33,0,0,0.235672 -14426,3301:134,14,-33,0,0,0.243136 -14427,3301:235,15,-33,0,0,0.276143 -14428,3301:236,16,-33,0,0,0.280871 -14429,3301:237,17,-33,0,0,0.305102 -14430,3301:238,18,-33,0,0,0.322981 -14431,3301:239,19,-33,0,0,0.302863 -14432,3302:130,20,-33,0,0,0.30862 -14433,3302:131,21,-33,0,0,0.312734 -14434,3302:132,22,-33,0,0,0.300352 -14435,3302:133,23,-33,0,0,0.307328 -14436,3302:134,24,-33,0,0,0.284496 -14437,3302:235,25,-33,0,0,0.248968 -14438,3302:236,26,-33,0,0,0.235117 -14439,3302:237,27,-33,0,0,0.240593 -14440,3302:238,28,-33,0,0,0.26867 -14441,3302:239,29,-33,0,0,0.249987 -14442,3303:130,30,-33,0,0,0.278738 -14443,3303:131,31,-33,0,0,0.286613 -14444,3303:132,32,-33,0,0,0.258716 -14445,3303:133,33,-33,0,0,0.24272 -14446,3303:134,34,-33,0,0,0.271607 -14447,3303:235,35,-33,0,0,0.279483 -14448,3303:236,36,-33,0,0,0.266756 -14449,3303:237,37,-33,0,0,0.250431 -14450,3303:238,38,-33,0,0,0.257733 -14451,3303:239,39,-33,0,0,0.248009 -14452,3304:130,40,-33,0,0,0.20754 -14453,3304:131,41,-33,0,0,0.207676 -14454,3304:132,42,-33,0,0,0.220128 -14455,3304:133,43,-33,0,0,0.246842 -14456,3304:134,44,-33,0,0,0.227735 -14457,3304:235,45,-33,0,0,0.206646 -14458,3304:236,46,-33,0,0,0.207337 -14459,3304:237,47,-33,0,0,0.240067 -14460,3304:238,48,-33,0,0,0.244007 -14461,3304:239,49,-33,0,0,0.233238 -14462,3305:130,50,-33,0,0,0.237397 -14463,3305:131,51,-33,0,0,0.207523 -14464,3305:132,52,-33,0,0,0.237379 -14465,3305:133,53,-33,0,0,0.255635 -14466,3305:134,54,-33,0,0,0.255928 -14467,3305:235,55,-33,0,0,0.269741 -14468,3305:236,56,-33,0,0,0.2554 -14469,3305:237,57,-33,0,0,0.241796 -14470,3305:238,58,-33,0,0,0.237806 -14471,3305:239,59,-33,0,0,0.280124 -14472,3306:130,60,-33,0,0,0.311014 -14473,3306:131,61,-33,0,0,0.309937 -14474,3306:132,62,-33,0,0,0.301584 -14475,3306:133,63,-33,0,0,0.293276 -14476,3306:134,64,-33,0,0,0.30005 -14477,3306:235,65,-33,0,0,0.291873 -14478,3306:236,66,-33,0,0,0.283493 -14479,3306:237,67,-33,0,0,0.225771 -14480,3306:238,68,-33,0,0,0.238739 -14481,3306:239,69,-33,0,0,0.282243 -14482,3307:130,70,-33,0,0,0.279607 -14483,3307:131,71,-33,0,0,0.276657 -14484,3307:132,72,-33,0,0,0.27238 -14485,3307:134,74,-33,0,0,0.254737 -14486,3307:235,75,-33,0,0,0.25846 -14487,3307:236,76,-33,0,0,0.277872 -14488,3307:237,77,-33,0,0,0.265853 -14489,3307:238,78,-33,0,0,0.244671 -14490,3307:239,79,-33,0,0,0.24845 -14491,3308:130,80,-33,0,0,0.259052 -14492,3308:131,81,-33,0,0,0.268973 -14493,3308:132,82,-33,0,0,0.263773 -14494,3308:133,83,-33,0,0,0.261069 -14495,3308:134,84,-33,0,0,0.252403 -14496,3308:235,85,-33,0,0,0.2379 -14497,3308:236,86,-33,0,0,0.230967 -14498,3308:237,87,-33,0,0,0.233366 -14499,3308:238,88,-33,0,0,0.236988 -14500,3308:239,89,-33,0,0,0.236209 -14501,3309:130,90,-33,0,0,0.233274 -14502,3309:131,91,-33,0,0,0.234711 -14503,3309:132,92,-33,0,0,0.232687 -14504,3309:133,93,-33,0,0,0.227121 -14505,3309:134,94,-33,0,0,0.231478 -14506,3309:235,95,-33,0,0,0.247128 -14507,3309:236,96,-33,0,0,0.254561 -14508,3309:237,97,-33,0,0,0.251861 -14509,3309:238,98,-33,0,0,0.244215 -14510,3309:239,99,-33,0,0,0.248258 -14511,3310:130,100,-33,0,0,0.244804 -14512,3310:131,101,-33,0,0,0.244481 -14513,3310:132,102,-33,0,0,0.240086 -14514,3310:133,103,-33,0,0,0.23658 -14515,3310:134,104,-33,0,0,0.233109 -14516,3310:235,105,-33,0,0,0.237063 -14517,3310:236,106,-33,0,0,0.248641 -14518,3310:237,107,-33,0,0,0.249141 -14519,3310:238,108,-33,0,0,0.246193 -14520,3310:239,109,-33,0,0,0.244291 -14521,3311:130,110,-33,0,0,0.24125 -14522,3311:131,111,-33,0,0,0.241476 -14523,3311:132,112,-33,0,0,0.242947 -14524,3311:133,113,-33,0,0,0.239431 -14525,3311:134,114,-33,0,0,0.241589 -14526,3311:235,115,-33,0,0,0.240855 -14527,3311:236,116,-33,0,0,0.240818 -14528,3311:237,117,-33,0,0,0.242682 -14529,3311:238,118,-33,0,0,0.245907 -14530,3311:239,119,-33,0,0,0.247186 -14531,3312:130,120,-33,0,0,0.249699 -14532,3312:131,121,-33,0,0,0.252365 -14533,3312:132,122,-33,0,0,0.251068 -14534,3312:133,123,-33,0,0,0.250546 -14535,3312:134,124,-33,0,0,0.248219 -14536,3312:235,125,-33,0,0,0.245355 -14537,3312:236,126,-33,0,0,0.245183 -14538,3312:237,127,-33,0,0,0.254776 -14539,3312:238,128,-33,0,0,0.261286 -14540,3312:239,129,-33,0,0,0.248334 -14541,3313:130,130,-33,0,0,0.253374 -14542,3313:131,131,-33,0,0,0.250624 -14543,3313:132,132,-33,0,0,0.253432 -14544,3313:133,133,-33,0,0,0.251068 -14545,3313:134,134,-33,0,0,0.25501 -14546,3313:235,135,-33,0,0,0.254561 -14547,3313:236,136,-33,0,0,0.252287 -14548,3313:237,137,-33,0,0,0.253938 -14549,3313:238,138,-33,0,0,0.258205 -14550,3313:239,139,-33,0,0,0.283848 -14551,3314:130,140,-33,0,0,0.285774 -14552,3314:131,141,-33,0,0,0.294897 -14553,3314:132,142,-33,0,0,0.287812 -14554,3314:133,143,-33,0,0,0.292254 -14555,3314:134,144,-33,0,0,0.289732 -14556,3314:235,145,-33,0,0,0.317012 -14557,3314:239,149,-33,0,0,0.336078 -14558,3315:130,150,-33,0,0,0.31904 -14559,3315:131,151,-33,0,0,0.318215 -14560,3315:132,152,-33,0,0,0.305102 -14561,3315:133,153,-33,0,0,0.301995 -14562,3315:134,154,-33,0,0,0.309014 -14563,3315:235,155,-33,0,0,0.306803 -14564,3315:236,156,-33,0,0,0.30397 -14565,3315:237,157,-33,0,0,0.296931 -14566,3315:238,158,-33,0,0,0.295816 -14567,3315:239,159,-33,0,0,0.301606 -14568,3316:130,160,-33,0,0,0.30321 -14569,3316:131,161,-33,0,0,0.294876 -14570,3316:132,162,-33,0,0,0.290007 -14571,3316:133,163,-33,0,0,0.289436 -14572,3316:134,164,-33,0,0,0.289626 -14573,3316:235,165,-33,0,0,0.29113 -14574,3316:236,166,-33,0,0,0.291321 -14575,3316:237,167,-33,0,0,0.291448 -14576,3316:238,168,-33,0,0,0.295602 -14577,3316:239,169,-33,0,0,0.300806 -14578,3317:130,170,-33,0,0,0.294918 -14579,3317:131,171,-33,0,0,0.291405 -14580,3317:134,174,-33,0,0,0.259348 -14581,3317:235,175,-33,0,0,0.281037 -14582,3317:236,176,-33,0,0,0.305276 -14583,3317:237,177,-33,0,0,0.317212 -14584,3317:238,178,-33,0,0,0.346192 -14585,3317:239,179,-33,0,0,0.32919 -14586,3318:130,180,-33,0,0,0.294961 -14587,5318:120,-180,-32,0,0,0.335047 -14588,5317:229,-179,-32,0,0,0.325209 -14589,5317:228,-178,-32,0,0,0.324826 -14590,5317:227,-177,-32,0,0,0.323858 -14591,5317:226,-176,-32,0,0,0.322689 -14592,5317:225,-175,-32,0,0,0.331805 -14593,5317:124,-174,-32,0,0,0.327739 -14594,5317:123,-173,-32,0,0,0.310376 -14595,5317:122,-172,-32,0,0,0.301844 -14596,5317:121,-171,-32,0,0,0.308291 -14597,5317:120,-170,-32,0,0,0.308576 -14598,5316:229,-169,-32,0,0,0.302646 -14599,5316:228,-168,-32,0,0,0.30617 -14600,5316:227,-167,-32,0,0,0.307766 -14601,5316:226,-166,-32,0,0,0.309124 -14602,5316:225,-165,-32,0,0,0.312734 -14603,5316:124,-164,-32,0,0,0.307503 -14604,5316:123,-163,-32,0,0,0.312271 -14605,5316:122,-162,-32,0,0,0.311918 -14606,5316:121,-161,-32,0,0,0.319307 -14607,5316:120,-160,-32,0,0,0.327377 -14608,5315:229,-159,-32,0,0,0.328464 -14609,5315:228,-158,-32,0,0,0.329145 -14610,5315:227,-157,-32,0,0,0.329553 -14611,5315:226,-156,-32,0,0,0.334498 -14612,5315:225,-155,-32,0,0,0.337386 -14613,5315:124,-154,-32,0,0,0.341163 -14614,5315:123,-153,-32,0,0,0.340794 -14615,5315:122,-152,-32,0,0,0.341417 -14616,5315:121,-151,-32,0,0,0.33941 -14617,5315:120,-150,-32,0,0,0.338811 -14618,5314:229,-149,-32,0,0,0.341047 -14619,5314:228,-148,-32,0,0,0.346843 -14620,5314:227,-147,-32,0,0,0.346238 -14621,5314:226,-146,-32,0,0,0.345866 -14622,5314:225,-145,-32,0,0,0.343291 -14623,5314:124,-144,-32,0,0,0.344542 -14624,5314:123,-143,-32,0,0,0.346843 -14625,5314:122,-142,-32,0,0,0.345843 -14626,5314:121,-141,-32,0,0,0.343893 -14627,5314:120,-140,-32,0,0,0.342341 -14628,5313:229,-139,-32,0,0,0.341347 -14629,5313:228,-138,-32,0,0,0.338443 -14630,5313:227,-137,-32,0,0,0.334887 -14631,5313:226,-136,-32,0,0,0.332465 -14632,5313:225,-135,-32,0,0,0.332465 -14633,5313:124,-134,-32,0,0,0.331896 -14634,5313:123,-133,-32,0,0,0.33242 -14635,5313:122,-132,-32,0,0,0.328601 -14636,5313:121,-131,-32,0,0,0.331212 -14637,5313:120,-130,-32,0,0,0.333675 -14638,5312:229,-129,-32,0,0,0.332488 -14639,5312:228,-128,-32,0,0,0.329372 -14640,5312:227,-127,-32,0,0,0.331691 -14641,5312:226,-126,-32,0,0,0.326812 -14642,5312:225,-125,-32,0,0,0.327785 -14643,5312:124,-124,-32,0,0,0.324466 -14644,5312:123,-123,-32,0,0,0.326022 -14645,5312:122,-122,-32,0,0,0.315435 -14646,5312:121,-121,-32,0,0,0.318594 -14647,5312:120,-120,-32,0,0,0.311411 -14648,5311:229,-119,-32,0,0,0.311411 -14649,5311:228,-118,-32,0,0,0.312933 -14650,5311:227,-117,-32,0,0,0.317836 -14651,5311:226,-116,-32,0,0,0.31837 -14652,5311:225,-115,-32,0,0,0.316367 -14653,5311:124,-114,-32,0,0,0.315945 -14654,5311:123,-113,-32,0,0,0.310025 -14655,5311:122,-112,-32,0,0,0.29663 -14656,5311:121,-111,-32,0,0,0.28293 -14657,5311:120,-110,-32,0,0,0.287327 -14658,5310:229,-109,-32,0,0,0.284182 -14659,5310:228,-108,-32,0,0,0.279876 -14660,5310:227,-107,-32,0,0,0.277893 -14661,5310:226,-106,-32,0,0,0.276719 -14662,5310:225,-105,-32,0,0,0.281141 -14663,5310:124,-104,-32,0,0,0.279669 -14664,5310:123,-103,-32,0,0,0.277521 -14665,5310:122,-102,-32,0,0,0.285375 -14666,5310:121,-101,-32,0,0,0.27911 -14667,5310:120,-100,-32,0,0,0.278759 -14668,5309:229,-99,-32,0,0,0.276616 -14669,5309:228,-98,-32,0,0,0.278387 -14670,5309:227,-97,-32,0,0,0.271506 -14671,5309:226,-96,-32,0,0,0.275036 -14672,5309:225,-95,-32,0,0,0.271933 -14673,5309:124,-94,-32,0,0,0.272564 -14674,5309:123,-93,-32,0,0,0.275138 -14675,5309:122,-92,-32,0,0,0.27116 -14676,5309:121,-91,-32,0,0,0.267803 -14677,5309:120,-90,-32,0,0,0.26962 -14678,5308:229,-89,-32,0,0,0.266817 -14679,5308:228,-88,-32,0,0,0.268165 -14680,5308:227,-87,-32,0,0,0.265192 -14681,5308:226,-86,-32,0,0,0.267823 -14682,5308:225,-85,-32,0,0,0.27438 -14683,5308:124,-84,-32,0,0,0.272095 -14684,5308:123,-83,-32,0,0,0.269276 -14685,5308:122,-82,-32,0,0,0.26214 -14686,5308:121,-81,-32,0,0,0.261842 -14687,5308:120,-80,-32,0,0,0.263195 -14688,5307:229,-79,-32,0,0,0.266034 -14689,5307:228,-78,-32,0,0,0.268065 -14690,5307:227,-77,-32,0,0,0.266495 -14691,5307:226,-76,-32,0,0,0.273032 -14692,5307:225,-75,-32,0,0,0.275097 -14693,5307:124,-74,-32,0,0,0.275897 -14694,5306:225,-65,-32,0,0,0.342851 -14695,5306:124,-64,-32,0,0,0.349805 -14696,5306:123,-63,-32,0,0,0.354752 -14697,5306:122,-62,-32,0,0,0.343917 -14698,5306:121,-61,-32,0,0,0.342481 -14699,5306:120,-60,-32,0,0,0.346634 -14700,5305:229,-59,-32,0,0,0.332967 -14701,5305:228,-58,-32,0,0,0.305821 -14702,5305:227,-57,-32,0,0,0.25351 -14703,5305:226,-56,-32,0,0,0.250894 -14704,5305:225,-55,-32,0,0,0.296952 -14705,5305:124,-54,-32,0,0,0.345076 -14706,5305:123,-53,-32,0,0,0.299015 -14707,5305:122,-52,-32,0,0,0.305102 -14708,5305:121,-51,-32,0,0,0.316456 -14709,5305:120,-50,-32,0,0,0.35353 -14710,5304:229,-49,-32,0,0,0.392772 -14711,5304:228,-48,-32,0,0,0.336284 -14712,5304:227,-47,-32,0,0,0.280435 -14713,5304:226,-46,-32,0,0,0.283472 -14714,5304:225,-45,-32,0,0,0.275097 -14715,5304:124,-44,-32,0,0,0.275179 -14716,5304:123,-43,-32,0,0,0.274872 -14717,5304:122,-42,-32,0,0,0.277068 -14718,5304:121,-41,-32,0,0,0.303948 -14719,5304:120,-40,-32,0,0,0.311455 -14720,5303:229,-39,-32,0,0,0.293681 -14721,5303:228,-38,-32,0,0,0.272686 -14722,5303:227,-37,-32,0,0,0.274094 -14723,5303:226,-36,-32,0,0,0.270187 -14724,5303:225,-35,-32,0,0,0.266817 -14725,5303:124,-34,-32,0,0,0.257026 -14726,5303:123,-33,-32,0,0,0.266234 -14727,5303:122,-32,-32,0,0,0.273053 -14728,5303:121,-31,-32,0,0,0.275691 -14729,5303:120,-30,-32,0,0,0.281037 -14730,5302:229,-29,-32,0,0,0.288001 -14731,5302:228,-28,-32,0,0,0.284412 -14732,5302:227,-27,-32,0,0,0.274115 -14733,5302:226,-26,-32,0,0,0.271302 -14734,5302:225,-25,-32,0,0,0.276924 -14735,5302:124,-24,-32,0,0,0.285145 -14736,5302:123,-23,-32,0,0,0.284308 -14737,5302:122,-22,-32,0,0,0.274954 -14738,5302:121,-21,-32,0,0,0.263813 -14739,5302:120,-20,-32,0,0,0.258244 -14740,5301:229,-19,-32,0,0,0.241947 -14741,5301:228,-18,-32,0,0,0.232577 -14742,5301:227,-17,-32,0,0,0.211899 -14743,5301:226,-16,-32,0,0,0.21082 -14744,5301:225,-15,-32,0,0,0.250026 -14745,5301:124,-14,-32,0,0,0.275445 -14746,5301:123,-13,-32,0,0,0.26746 -14747,5301:122,-12,-32,0,0,0.266556 -14748,5301:121,-11,-32,0,0,0.254912 -14749,5301:120,-10,-32,0,0,0.254191 -14750,5300:229,-9,-32,0,0,0.25316 -14751,5300:228,-8,-32,0,0,0.25501 -14752,5300:227,-7,-32,0,0,0.265632 -14753,5300:226,-6,-32,0,0,0.25791 -14754,5300:225,-5,-32,0,0,0.251319 -14755,5300:124,-4,-32,0,0,0.246326 -14756,5300:123,-3,-32,0,0,0.247702 -14757,5300:122,-2,-32,0,0,0.248987 -14758,5300:121,-1,-32,0,0,0.246117 -14759,3300:121,0,-32,0,0,0.248833 -14760,3300:121,1,-32,0,0,0.252326 -14761,3300:122,2,-32,0,0,0.251358 -14762,3300:123,3,-32,0,0,0.244652 -14763,3300:124,4,-32,0,0,0.249371 -14764,3300:225,5,-32,0,0,0.252869 -14765,3300:226,6,-32,0,0,0.248201 -14766,3300:227,7,-32,0,0,0.254152 -14767,3300:228,8,-32,0,0,0.23859 -14768,3300:229,9,-32,0,0,0.238832 -14769,3301:120,10,-32,0,0,0.24776 -14770,3301:121,11,-32,0,0,0.249795 -14771,3301:122,12,-32,0,0,0.259841 -14772,3301:123,13,-32,0,0,0.247568 -14773,3301:124,14,-32,0,0,0.273828 -14774,3301:225,15,-32,0,0,0.309081 -14775,3301:226,16,-32,0,0,0.349595 -14776,3301:227,17,-32,0,0,0.40856 -14777,3301:228,18,-32,0,0,0.4102 -14778,3301:229,19,-32,0,0,0.40106 -14779,3302:120,20,-32,0,0,0.345634 -14780,3302:121,21,-32,0,0,0.333287 -14781,3302:122,22,-32,0,0,0.365857 -14782,3302:123,23,-32,0,0,0.372341 -14783,3302:124,24,-32,0,0,0.371213 -14784,3302:225,25,-32,0,0,0.378267 -14785,3302:226,26,-32,0,0,0.369536 -14786,3302:227,27,-32,0,0,0.344079 -14787,3302:228,28,-32,0,0,0.275794 -14788,3302:229,29,-32,0,0,0.308905 -14789,3303:120,30,-32,0,0,0.336032 -14790,3303:121,31,-32,0,0,0.348101 -14791,3303:122,32,-32,0,0,0.330393 -14792,3303:123,33,-32,0,0,0.30434 -14793,3303:124,34,-32,0,0,0.318036 -14794,3303:225,35,-32,0,0,0.329122 -14795,3303:226,36,-32,0,0,0.371573 -14796,3303:227,37,-32,0,0,0.360227 -14797,3303:228,38,-32,0,0,0.323813 -14798,3303:229,39,-32,0,0,0.315279 -14799,3304:120,40,-32,0,0,0.33242 -14800,3304:121,41,-32,0,0,0.334429 -14801,3304:122,42,-32,0,0,0.286403 -14802,3304:123,43,-32,0,0,0.254191 -14803,3304:124,44,-32,0,0,0.296352 -14804,3304:225,45,-32,0,0,0.3274 -14805,3304:226,46,-32,0,0,0.343824 -14806,3304:227,47,-32,0,0,0.31053 -14807,3304:228,48,-32,0,0,0.247301 -14808,3304:229,49,-32,0,0,0.305646 -14809,3305:120,50,-32,0,0,0.34054 -14810,3305:121,51,-32,0,0,0.339663 -14811,3305:122,52,-32,0,0,0.320448 -14812,3305:123,53,-32,0,0,0.265813 -14813,3305:124,54,-32,0,0,0.260929 -14814,3305:225,55,-32,0,0,0.3253 -14815,3305:226,56,-32,0,0,0.308839 -14816,3305:227,57,-32,0,0,0.310091 -14817,3305:228,58,-32,0,0,0.310223 -14818,3305:229,59,-32,0,0,0.309541 -14819,3306:120,60,-32,0,0,0.305211 -14820,3306:121,61,-32,0,0,0.310134 -14821,3306:122,62,-32,0,0,0.308313 -14822,3306:123,63,-32,0,0,0.295431 -14823,3306:124,64,-32,0,0,0.300439 -14824,3306:225,65,-32,0,0,0.292021 -14825,3306:226,66,-32,0,0,0.295367 -14826,3306:227,67,-32,0,0,0.290981 -14827,3306:228,68,-32,0,0,0.277893 -14828,3306:229,69,-32,0,0,0.290473 -14829,3307:120,70,-32,0,0,0.286466 -14830,3307:121,71,-32,0,0,0.293808 -14831,3307:122,72,-32,0,0,0.289563 -14832,3307:124,74,-32,0,0,0.277893 -14833,3307:225,75,-32,0,0,0.286277 -14834,3307:226,76,-32,0,0,0.287728 -14835,3307:227,77,-32,0,0,0.27236 -14836,3307:228,78,-32,0,0,0.264771 -14837,3307:229,79,-32,0,0,0.279255 -14838,3308:120,80,-32,0,0,0.279876 -14839,3308:121,81,-32,0,0,0.264272 -14840,3308:122,82,-32,0,0,0.257693 -14841,3308:123,83,-32,0,0,0.264672 -14842,3308:124,84,-32,0,0,0.26734 -14843,3308:225,85,-32,0,0,0.265172 -14844,3308:226,86,-32,0,0,0.248124 -14845,3308:227,87,-32,0,0,0.253899 -14846,3308:228,88,-32,0,0,0.263673 -14847,3308:229,89,-32,0,0,0.250392 -14848,3309:120,90,-32,0,0,0.249641 -14849,3309:121,91,-32,0,0,0.265032 -14850,3309:122,92,-32,0,0,0.268126 -14851,3309:123,93,-32,0,0,0.266395 -14852,3309:124,94,-32,0,0,0.26212 -14853,3309:225,95,-32,0,0,0.25992 -14854,3309:226,96,-32,0,0,0.258027 -14855,3309:227,97,-32,0,0,0.256183 -14856,3309:228,98,-32,0,0,0.25353 -14857,3309:229,99,-32,0,0,0.251609 -14858,3310:120,100,-32,0,0,0.257182 -14859,3310:121,101,-32,0,0,0.260276 -14860,3310:122,102,-32,0,0,0.259052 -14861,3310:123,103,-32,0,0,0.258146 -14862,3310:124,104,-32,0,0,0.257104 -14863,3310:225,105,-32,0,0,0.258599 -14864,3310:226,106,-32,0,0,0.25587 -14865,3310:227,107,-32,0,0,0.254405 -14866,3310:228,108,-32,0,0,0.253024 -14867,3310:229,109,-32,0,0,0.251706 -14868,3311:120,110,-32,0,0,0.253549 -14869,3311:121,111,-32,0,0,0.252791 -14870,3311:122,112,-32,0,0,0.253685 -14871,3311:123,113,-32,0,0,0.251822 -14872,3311:124,114,-32,0,0,0.255694 -14873,3311:225,115,-32,0,0,0.259664 -14874,3311:226,116,-32,0,0,0.261246 -14875,3311:227,117,-32,0,0,0.261386 -14876,3311:228,118,-32,0,0,0.261386 -14877,3311:229,119,-32,0,0,0.263912 -14878,3312:120,120,-32,0,0,0.265492 -14879,3312:121,121,-32,0,0,0.265412 -14880,3312:122,122,-32,0,0,0.266054 -14881,3312:123,123,-32,0,0,0.269701 -14882,3312:124,124,-32,0,0,0.269458 -14883,3312:225,125,-32,0,0,0.265352 -14884,3312:226,126,-32,0,0,0.265012 -14885,3312:227,127,-32,0,0,0.271282 -14886,3312:228,128,-32,0,0,0.271668 -14887,3312:229,129,-32,0,0,0.271364 -14888,3313:120,130,-32,0,0,0.270511 -14889,3313:121,131,-32,0,0,0.272279 -14890,3313:122,132,-32,0,0,0.273338 -14891,3313:123,133,-32,0,0,0.270876 -14892,3313:124,134,-32,0,0,0.276369 -14893,3313:225,135,-32,0,0,0.283118 -14894,3313:226,136,-32,0,0,0.289183 -14895,3313:227,137,-32,0,0,0.297875 -14896,3313:228,138,-32,0,0,0.295624 -14897,3313:229,139,-32,0,0,0.31172 -14898,3314:120,140,-32,0,0,0.316501 -14899,3314:121,141,-32,0,0,0.307503 -14900,3314:122,142,-32,0,0,0.303752 -14901,3314:123,143,-32,0,0,0.314371 -14902,3314:124,144,-32,0,0,0.321164 -14903,3314:229,149,-32,0,0,0.355316 -14904,3315:120,150,-32,0,0,0.345193 -14905,3315:121,151,-32,0,0,0.357508 -14906,3315:122,152,-32,0,0,0.347262 -14907,3315:123,153,-32,0,0,0.346518 -14908,3315:124,154,-32,0,0,0.335986 -14909,3315:225,155,-32,0,0,0.327468 -14910,3315:226,156,-32,0,0,0.328328 -14911,3315:227,157,-32,0,0,0.326383 -14912,3315:228,158,-32,0,0,0.329008 -14913,3315:229,159,-32,0,0,0.331554 -14914,3316:120,160,-32,0,0,0.329689 -14915,3316:121,161,-32,0,0,0.324016 -14916,3316:122,162,-32,0,0,0.321657 -14917,3316:123,163,-32,0,0,0.317457 -14918,3316:124,164,-32,0,0,0.31183 -14919,3316:225,165,-32,0,0,0.310992 -14920,3316:226,166,-32,0,0,0.311786 -14921,3316:227,167,-32,0,0,0.315258 -14922,3316:228,168,-32,0,0,0.311984 -14923,3316:229,169,-32,0,0,0.314482 -14924,3317:120,170,-32,0,0,0.313419 -14925,3317:121,171,-32,0,0,0.306607 -14926,3317:122,172,-32,0,0,0.301238 -14927,3317:227,177,-32,0,0,0.328601 -14928,3317:228,178,-32,0,0,0.339571 -14929,3317:229,179,-32,0,0,0.32233 -14930,3318:120,180,-32,0,0,0.335047 -14931,5318:110,-180,-31,0,0,0.345727 -14932,5317:219,-179,-31,0,0,0.338903 -14933,5317:218,-178,-31,0,0,0.329962 -14934,5317:217,-177,-31,0,0,0.334956 -14935,5317:216,-176,-31,0,0,0.334475 -14936,5317:215,-175,-31,0,0,0.330144 -14937,5317:114,-174,-31,0,0,0.325345 -14938,5317:113,-173,-31,0,0,0.31837 -14939,5317:112,-172,-31,0,0,0.323926 -14940,5317:111,-171,-31,0,0,0.332374 -14941,5317:110,-170,-31,0,0,0.326428 -14942,5316:219,-169,-31,0,0,0.323116 -14943,5316:218,-168,-31,0,0,0.324556 -14944,5316:217,-167,-31,0,0,0.324443 -14945,5316:216,-166,-31,0,0,0.323678 -14946,5316:215,-165,-31,0,0,0.325435 -14947,5316:114,-164,-31,0,0,0.320716 -14948,5316:113,-163,-31,0,0,0.325886 -14949,5316:112,-162,-31,0,0,0.329349 -14950,5316:111,-161,-31,0,0,0.342874 -14951,5316:110,-160,-31,0,0,0.343986 -14952,5315:219,-159,-31,0,0,0.342203 -14953,5315:218,-158,-31,0,0,0.345611 -14954,5315:217,-157,-31,0,0,0.343963 -14955,5315:216,-156,-31,0,0,0.345425 -14956,5315:215,-155,-31,0,0,0.347845 -14957,5315:114,-154,-31,0,0,0.352333 -14958,5315:113,-153,-31,0,0,0.354893 -14959,5315:112,-152,-31,0,0,0.358713 -14960,5315:111,-151,-31,0,0,0.355834 -14961,5315:110,-150,-31,0,0,0.358453 -14962,5314:219,-149,-31,0,0,0.36044 -14963,5314:218,-148,-31,0,0,0.363786 -14964,5314:217,-147,-31,0,0,0.362052 -14965,5314:216,-146,-31,0,0,0.362265 -14966,5314:215,-145,-31,0,0,0.361648 -14967,5314:114,-144,-31,0,0,0.359967 -14968,5314:113,-143,-31,0,0,0.363168 -14969,5314:112,-142,-31,0,0,0.362218 -14970,5314:111,-141,-31,0,0,0.358052 -14971,5314:110,-140,-31,0,0,0.357956 -14972,5313:219,-139,-31,0,0,0.354117 -14973,5313:218,-138,-31,0,0,0.352756 -14974,5313:217,-137,-31,0,0,0.349852 -14975,5313:216,-136,-31,0,0,0.347123 -14976,5313:215,-135,-31,0,0,0.349782 -14977,5313:114,-134,-31,0,0,0.349151 -14978,5313:113,-133,-31,0,0,0.349688 -14979,5313:112,-132,-31,0,0,0.350039 -14980,5313:111,-131,-31,0,0,0.347985 -14981,5313:110,-130,-31,0,0,0.347542 -14982,5312:219,-129,-31,0,0,0.346611 -14983,5312:218,-128,-31,0,0,0.342411 -14984,5312:217,-127,-31,0,0,0.335162 -14985,5312:216,-126,-31,0,0,0.335436 -14986,5312:215,-125,-31,0,0,0.33649 -14987,5312:114,-124,-31,0,0,0.33842 -14988,5312:113,-123,-31,0,0,0.333675 -14989,5312:112,-122,-31,0,0,0.331941 -14990,5312:111,-121,-31,0,0,0.324984 -14991,5312:110,-120,-31,0,0,0.321545 -14992,5311:219,-119,-31,0,0,0.326315 -14993,5311:218,-118,-31,0,0,0.332488 -14994,5311:217,-117,-31,0,0,0.33594 -14995,5311:216,-116,-31,0,0,0.336995 -14996,5311:215,-115,-31,0,0,0.333104 -14997,5311:114,-114,-31,0,0,0.31962 -14998,5311:113,-113,-31,0,0,0.31508 -14999,5311:112,-112,-31,0,0,0.310486 -15000,5311:111,-111,-31,0,0,0.297037 -15001,5311:110,-110,-31,0,0,0.294257 -15002,5310:219,-109,-31,0,0,0.304993 -15003,5310:218,-108,-31,0,0,0.296995 -15004,5310:217,-107,-31,0,0,0.29183 -15005,5310:216,-106,-31,0,0,0.296887 -15006,5310:215,-105,-31,0,0,0.293446 -15007,5310:114,-104,-31,0,0,0.299899 -15008,5310:113,-103,-31,0,0,0.294683 -15009,5310:112,-102,-31,0,0,0.294384 -15010,5310:111,-101,-31,0,0,0.295945 -15011,5310:110,-100,-31,0,0,0.291341 -15012,5309:219,-99,-31,0,0,0.296116 -15013,5309:218,-98,-31,0,0,0.298348 -15014,5309:217,-97,-31,0,0,0.291002 -15015,5309:216,-96,-31,0,0,0.294107 -15016,5309:215,-95,-31,0,0,0.29268 -15017,5309:114,-94,-31,0,0,0.298649 -15018,5309:113,-93,-31,0,0,0.300762 -15019,5309:112,-92,-31,0,0,0.288971 -15020,5309:111,-91,-31,0,0,0.283806 -15021,5309:110,-90,-31,0,0,0.282825 -15022,5308:219,-89,-31,0,0,0.284287 -15023,5308:218,-88,-31,0,0,0.284663 -15024,5308:217,-87,-31,0,0,0.287265 -15025,5308:216,-86,-31,0,0,0.288845 -15026,5308:215,-85,-31,0,0,0.286844 -15027,5308:114,-84,-31,0,0,0.279483 -15028,5308:113,-83,-31,0,0,0.276267 -15029,5308:112,-82,-31,0,0,0.271648 -15030,5308:111,-81,-31,0,0,0.276965 -15031,5308:110,-80,-31,0,0,0.278863 -15032,5307:219,-79,-31,0,0,0.281099 -15033,5307:218,-78,-31,0,0,0.282763 -15034,5307:217,-77,-31,0,0,0.28817 -15035,5307:216,-76,-31,0,0,0.287433 -15036,5307:215,-75,-31,0,0,0.288233 -15037,5307:114,-74,-31,0,0,0.291045 -15038,5306:112,-62,-31,0,0,0.424414 -15039,5306:111,-61,-31,0,0,0.370662 -15040,5306:110,-60,-31,0,0,0.366072 -15041,5305:219,-59,-31,0,0,0.35567 -15042,5305:218,-58,-31,0,0,0.346797 -15043,5305:217,-57,-31,0,0,0.330553 -15044,5305:216,-56,-31,0,0,0.263175 -15045,5305:215,-55,-31,0,0,0.263713 -15046,5305:114,-54,-31,0,0,0.33711 -15047,5305:113,-53,-31,0,0,0.39358 -15048,5305:112,-52,-31,0,0,0.32397 -15049,5305:111,-51,-31,0,0,0.339295 -15050,5305:110,-50,-31,0,0,0.399383 -15051,5304:219,-49,-31,0,0,0.409553 -15052,5304:218,-48,-31,0,0,0.350179 -15053,5304:217,-47,-31,0,0,0.374288 -15054,5304:216,-46,-31,0,0,0.381849 -15055,5304:215,-45,-31,0,0,0.356847 -15056,5304:114,-44,-31,0,0,0.302104 -15057,5304:113,-43,-31,0,0,0.288381 -15058,5304:112,-42,-31,0,0,0.32103 -15059,5304:111,-41,-31,0,0,0.337432 -15060,5304:110,-40,-31,0,0,0.324016 -15061,5303:219,-39,-31,0,0,0.303709 -15062,5303:218,-38,-31,0,0,0.289648 -15063,5303:217,-37,-31,0,0,0.281681 -15064,5303:216,-36,-31,0,0,0.292042 -15065,5303:215,-35,-31,0,0,0.296159 -15066,5303:114,-34,-31,0,0,0.292042 -15067,5303:113,-33,-31,0,0,0.296266 -15068,5303:112,-32,-31,0,0,0.308203 -15069,5303:111,-31,-31,0,0,0.309695 -15070,5303:110,-30,-31,0,0,0.308401 -15071,5302:219,-29,-31,0,0,0.318348 -15072,5302:218,-28,-31,0,0,0.307284 -15073,5302:217,-27,-31,0,0,0.30593 -15074,5302:216,-26,-31,0,0,0.305777 -15075,5302:215,-25,-31,0,0,0.302797 -15076,5302:114,-24,-31,0,0,0.30033 -15077,5302:113,-23,-31,0,0,0.298413 -15078,5302:112,-22,-31,0,0,0.29166 -15079,5302:111,-21,-31,0,0,0.28527 -15080,5302:110,-20,-31,0,0,0.2621 -15081,5301:219,-19,-31,0,0,0.26087 -15082,5301:218,-18,-31,0,0,0.271546 -15083,5301:217,-17,-31,0,0,0.275405 -15084,5301:216,-16,-31,0,0,0.276389 -15085,5301:215,-15,-31,0,0,0.290769 -15086,5301:114,-14,-31,0,0,0.288739 -15087,5301:113,-13,-31,0,0,0.274851 -15088,5301:112,-12,-31,0,0,0.279607 -15089,5301:111,-11,-31,0,0,0.282721 -15090,5301:110,-10,-31,0,0,0.277851 -15091,5300:219,-9,-31,0,0,0.280373 -15092,5300:218,-8,-31,0,0,0.277439 -15093,5300:217,-7,-31,0,0,0.274565 -15094,5300:216,-6,-31,0,0,0.271851 -15095,5300:215,-5,-31,0,0,0.277233 -15096,5300:114,-4,-31,0,0,0.274954 -15097,5300:113,-3,-31,0,0,0.262081 -15098,5300:112,-2,-31,0,0,0.265973 -15099,5300:111,-1,-31,0,0,0.262219 -15100,3300:111,0,-31,0,0,0.265813 -15101,3300:111,1,-31,0,0,0.258618 -15102,3300:112,2,-31,0,0,0.258244 -15103,3300:113,3,-31,0,0,0.266596 -15104,3300:114,4,-31,0,0,0.28139 -15105,3300:215,5,-31,0,0,0.281099 -15106,3300:216,6,-31,0,0,0.288064 -15107,3300:217,7,-31,0,0,0.308839 -15108,3300:218,8,-31,0,0,0.317546 -15109,3300:219,9,-31,0,0,0.310068 -15110,3301:110,10,-31,0,0,0.307766 -15111,3301:111,11,-31,0,0,0.358926 -15112,3301:112,12,-31,0,0,0.348591 -15113,3301:113,13,-31,0,0,0.366406 -15114,3301:114,14,-31,0,0,0.371957 -15115,3301:215,15,-31,0,0,0.344148 -15116,3301:216,16,-31,0,0,0.347355 -15117,3301:217,17,-31,0,0,0.425418 -15118,3301:218,18,-31,0,0,0.422533 -15119,3301:219,19,-31,0,0,0.430398 -15120,3302:110,20,-31,0,0,0.408983 -15121,3302:111,21,-31,0,0,0.359895 -15122,3302:112,22,-31,0,0,0.379306 -15123,3302:113,23,-31,0,0,0.40784 -15124,3302:114,24,-31,0,0,0.392085 -15125,3302:215,25,-31,0,0,0.364667 -15126,3302:216,26,-31,0,0,0.359753 -15127,3302:217,27,-31,0,0,0.328918 -15128,3302:218,28,-31,0,0,0.325164 -15129,3302:219,29,-31,0,0,0.356989 -15130,3303:110,30,-31,0,0,0.411045 -15131,3303:111,31,-31,0,0,0.414706 -15132,3303:112,32,-31,0,0,0.398816 -15133,3303:113,33,-31,0,0,0.321657 -15134,3303:114,34,-31,0,0,0.322173 -15135,3303:215,35,-31,0,0,0.390128 -15136,3303:216,36,-31,0,0,0.381971 -15137,3303:217,37,-31,0,0,0.383549 -15138,3303:218,38,-31,0,0,0.335505 -15139,3303:219,39,-31,0,0,0.321366 -15140,3304:110,40,-31,0,0,0.353131 -15141,3304:111,41,-31,0,0,0.371046 -15142,3304:112,42,-31,0,0,0.368077 -15143,3304:113,43,-31,0,0,0.345564 -15144,3304:114,44,-31,0,0,0.323431 -15145,3304:215,45,-31,0,0,0.357414 -15146,3304:216,46,-31,0,0,0.352778 -15147,3304:217,47,-31,0,0,0.351607 -15148,3304:218,48,-31,0,0,0.338604 -15149,3304:219,49,-31,0,0,0.339917 -15150,3305:110,50,-31,0,0,0.345843 -15151,3305:111,51,-31,0,0,0.328283 -15152,3305:112,52,-31,0,0,0.336376 -15153,3305:113,53,-31,0,0,0.30087 -15154,3305:114,54,-31,0,0,0.301497 -15155,3305:215,55,-31,0,0,0.330258 -15156,3305:216,56,-31,0,0,0.307722 -15157,3305:217,57,-31,0,0,0.306541 -15158,3305:218,58,-31,0,0,0.302971 -15159,3305:219,59,-31,0,0,0.305254 -15160,3306:110,60,-31,0,0,0.311918 -15161,3306:111,61,-31,0,0,0.313928 -15162,3306:112,62,-31,0,0,0.309849 -15163,3306:113,63,-31,0,0,0.305341 -15164,3306:114,64,-31,0,0,0.309387 -15165,3306:215,65,-31,0,0,0.305211 -15166,3306:216,66,-31,0,0,0.306497 -15167,3306:217,67,-31,0,0,0.305777 -15168,3306:218,68,-31,0,0,0.307831 -15169,3306:219,69,-31,0,0,0.305668 -15170,3307:110,70,-31,0,0,0.294705 -15171,3307:111,71,-31,0,0,0.302342 -15172,3307:112,72,-31,0,0,0.29588 -15173,3307:114,74,-31,0,0,0.298821 -15174,3307:215,75,-31,0,0,0.300892 -15175,3307:216,76,-31,0,0,0.299425 -15176,3307:217,77,-31,0,0,0.29464 -15177,3307:218,78,-31,0,0,0.288528 -15178,3307:219,79,-31,0,0,0.29268 -15179,3308:110,80,-31,0,0,0.290261 -15180,3308:111,81,-31,0,0,0.282471 -15181,3308:112,82,-31,0,0,0.274156 -15182,3308:113,83,-31,0,0,0.28697 -15183,3308:114,84,-31,0,0,0.289204 -15184,3308:215,85,-31,0,0,0.284601 -15185,3308:216,86,-31,0,0,0.277727 -15186,3308:217,87,-31,0,0,0.281494 -15187,3308:218,88,-31,0,0,0.280104 -15188,3308:219,89,-31,0,0,0.270795 -15189,3309:110,90,-31,0,0,0.273441 -15190,3309:111,91,-31,0,0,0.271607 -15191,3309:112,92,-31,0,0,0.270471 -15192,3309:113,93,-31,0,0,0.269822 -15193,3309:114,94,-31,0,0,0.269418 -15194,3309:215,95,-31,0,0,0.268085 -15195,3309:216,96,-31,0,0,0.265172 -15196,3309:217,97,-31,0,0,0.261445 -15197,3309:218,98,-31,0,0,0.259762 -15198,3309:219,99,-31,0,0,0.262637 -15199,3310:110,100,-31,0,0,0.267219 -15200,3310:111,101,-31,0,0,0.266737 -15201,3310:112,102,-31,0,0,0.265813 -15202,3310:113,103,-31,0,0,0.265933 -15203,3310:114,104,-31,0,0,0.266737 -15204,3310:215,105,-31,0,0,0.266676 -15205,3310:216,106,-31,0,0,0.266737 -15206,3310:217,107,-31,0,0,0.265954 -15207,3310:218,108,-31,0,0,0.264252 -15208,3310:219,109,-31,0,0,0.264332 -15209,3311:110,110,-31,0,0,0.265753 -15210,3311:111,111,-31,0,0,0.270045 -15211,3311:112,112,-31,0,0,0.311257 -15212,3311:113,113,-31,0,0,0.277006 -15213,3311:114,114,-31,0,0,0.27039 -15214,3311:215,115,-31,0,0,0.277769 -15215,3311:216,116,-31,0,0,0.28412 -15216,3311:217,117,-31,0,0,0.284998 -15217,3311:218,118,-31,0,0,0.28504 -15218,3311:219,119,-31,0,0,0.285124 -15219,3312:110,120,-31,0,0,0.281785 -15220,3312:111,121,-31,0,0,0.282618 -15221,3312:112,122,-31,0,0,0.289711 -15222,3312:113,123,-31,0,0,0.289901 -15223,3312:114,124,-31,0,0,0.289352 -15224,3312:215,125,-31,0,0,0.283848 -15225,3312:216,126,-31,0,0,0.2794 -15226,3312:217,127,-31,0,0,0.288381 -15227,3312:218,128,-31,0,0,0.285312 -15228,3312:219,129,-31,0,0,0.284182 -15229,3313:110,130,-31,0,0,0.28718 -15230,3313:111,131,-31,0,0,0.290685 -15231,3313:112,132,-31,0,0,0.290303 -15232,3313:113,133,-31,0,0,0.292786 -15233,3313:114,134,-31,0,0,0.294598 -15234,3313:215,135,-31,0,0,0.300654 -15235,3313:216,136,-31,0,0,0.311102 -15236,3313:217,137,-31,0,0,0.30545 -15237,3313:218,138,-31,0,0,0.317969 -15238,3313:219,139,-31,0,0,0.329372 -15239,3314:110,140,-31,0,0,0.325007 -15240,3314:111,141,-31,0,0,0.332876 -15241,3314:112,142,-31,0,0,0.334521 -15242,3314:113,143,-31,0,0,0.335162 -15243,3314:114,144,-31,0,0,0.347635 -15244,3314:215,145,-31,0,0,0.353999 -15245,3314:216,146,-31,0,0,0.343222 -15246,3314:217,147,-31,0,0,0.343291 -15247,3314:218,148,-31,0,0,0.372437 -15248,3314:219,149,-31,0,0,0.3655 -15249,3315:110,150,-31,0,0,0.354422 -15250,3315:111,151,-31,0,0,0.360843 -15251,3315:112,152,-31,0,0,0.38134 -15252,3315:113,153,-31,0,0,0.367982 -15253,3315:114,154,-31,0,0,0.352919 -15254,3315:215,155,-31,0,0,0.352756 -15255,3315:216,156,-31,0,0,0.357862 -15256,3315:217,157,-31,0,0,0.358783 -15257,3315:218,158,-31,0,0,0.359493 -15258,3315:219,159,-31,0,0,0.364952 -15259,3316:110,160,-31,0,0,0.364286 -15260,3316:111,161,-31,0,0,0.362337 -15261,3316:112,162,-31,0,0,0.350554 -15262,3316:113,163,-31,0,0,0.34024 -15263,3316:114,164,-31,0,0,0.33331 -15264,3316:215,165,-31,0,0,0.337501 -15265,3316:216,166,-31,0,0,0.336651 -15266,3316:217,167,-31,0,0,0.330416 -15267,3316:218,168,-31,0,0,0.324173 -15268,3316:219,169,-31,0,0,0.323318 -15269,3317:110,170,-31,0,0,0.323431 -15270,3317:111,171,-31,0,0,0.322599 -15271,3317:112,172,-31,0,0,0.311235 -15272,3317:113,173,-31,0,0,0.308795 -15273,3317:114,174,-31,0,0,0.312271 -15274,3317:215,175,-31,0,0,0.332922 -15275,3317:218,178,-31,0,0,0.378556 -15276,3317:219,179,-31,0,0,0.367767 -15277,3318:110,180,-31,0,0,0.345727 -15278,5318:100,-180,-30,0,0,0.369967 -15279,5317:209,-179,-30,0,0,0.347402 -15280,5317:208,-178,-30,0,0,0.345588 -15281,5317:207,-177,-30,0,0,0.345866 -15282,5317:206,-176,-30,0,0,0.338259 -15283,5317:205,-175,-30,0,0,0.335574 -15284,5317:104,-174,-30,0,0,0.337018 -15285,5317:103,-173,-30,0,0,0.340078 -15286,5317:102,-172,-30,0,0,0.351396 -15287,5317:101,-171,-30,0,0,0.349338 -15288,5317:100,-170,-30,0,0,0.346215 -15289,5316:209,-169,-30,0,0,0.340725 -15290,5316:208,-168,-30,0,0,0.337225 -15291,5316:207,-167,-30,0,0,0.336628 -15292,5316:206,-166,-30,0,0,0.340309 -15293,5316:205,-165,-30,0,0,0.343198 -15294,5316:104,-164,-30,0,0,0.345425 -15295,5316:103,-163,-30,0,0,0.349571 -15296,5316:102,-162,-30,0,0,0.350296 -15297,5316:101,-161,-30,0,0,0.355481 -15298,5316:100,-160,-30,0,0,0.355222 -15299,5315:209,-159,-30,0,0,0.358406 -15300,5315:208,-158,-30,0,0,0.358359 -15301,5315:207,-157,-30,0,0,0.35454 -15302,5315:206,-156,-30,0,0,0.354305 -15303,5315:205,-155,-30,0,0,0.35824 -15304,5315:104,-154,-30,0,0,0.363763 -15305,5315:103,-153,-30,0,0,0.365357 -15306,5315:102,-152,-30,0,0,0.365286 -15307,5315:101,-151,-30,0,0,0.367002 -15308,5315:100,-150,-30,0,0,0.36968 -15309,5314:209,-149,-30,0,0,0.371837 -15310,5314:208,-148,-30,0,0,0.370231 -15311,5314:207,-147,-30,0,0,0.370207 -15312,5314:206,-146,-30,0,0,0.374048 -15313,5314:205,-145,-30,0,0,0.379935 -15314,5314:104,-144,-30,0,0,0.377591 -15315,5314:103,-143,-30,0,0,0.375107 -15316,5314:102,-142,-30,0,0,0.375492 -15317,5314:101,-141,-30,0,0,0.37566 -15318,5314:100,-140,-30,0,0,0.372653 -15319,5313:209,-139,-30,0,0,0.371933 -15320,5313:208,-138,-30,0,0,0.372413 -15321,5313:207,-137,-30,0,0,0.368722 -15322,5313:206,-136,-30,0,0,0.36674 -15323,5313:205,-135,-30,0,0,0.367599 -15324,5313:104,-134,-30,0,0,0.363026 -15325,5313:103,-133,-30,0,0,0.366215 -15326,5313:102,-132,-30,0,0,0.36153 -15327,5313:101,-131,-30,0,0,0.359375 -15328,5313:100,-130,-30,0,0,0.35574 -15329,5312:209,-129,-30,0,0,0.35567 -15330,5312:208,-128,-30,0,0,0.350764 -15331,5312:207,-127,-30,0,0,0.347355 -15332,5312:206,-126,-30,0,0,0.3471 -15333,5312:205,-125,-30,0,0,0.348125 -15334,5312:104,-124,-30,0,0,0.343291 -15335,5312:103,-123,-30,0,0,0.344682 -15336,5312:102,-122,-30,0,0,0.341186 -15337,5312:101,-121,-30,0,0,0.342781 -15338,5312:100,-120,-30,0,0,0.345518 -15339,5311:209,-119,-30,0,0,0.343013 -15340,5311:208,-118,-30,0,0,0.34181 -15341,5311:207,-117,-30,0,0,0.34336 -15342,5311:206,-116,-30,0,0,0.342712 -15343,5311:205,-115,-30,0,0,0.334201 -15344,5311:104,-114,-30,0,0,0.330871 -15345,5311:103,-113,-30,0,0,0.334017 -15346,5311:102,-112,-30,0,0,0.330439 -15347,5311:101,-111,-30,0,0,0.313707 -15348,5311:100,-110,-30,0,0,0.323026 -15349,5310:209,-109,-30,0,0,0.318527 -15350,5310:208,-108,-30,0,0,0.319732 -15351,5310:207,-107,-30,0,0,0.321478 -15352,5310:206,-106,-30,0,0,0.310883 -15353,5310:205,-105,-30,0,0,0.31875 -15354,5310:104,-104,-30,0,0,0.315435 -15355,5310:103,-103,-30,0,0,0.312535 -15356,5310:102,-102,-30,0,0,0.314947 -15357,5310:101,-101,-30,0,0,0.310332 -15358,5310:100,-100,-30,0,0,0.31477 -15359,5309:209,-99,-30,0,0,0.307437 -15360,5309:208,-98,-30,0,0,0.307153 -15361,5309:207,-97,-30,0,0,0.304644 -15362,5309:206,-96,-30,0,0,0.307175 -15363,5309:205,-95,-30,0,0,0.317813 -15364,5309:104,-94,-30,0,0,0.317524 -15365,5309:103,-93,-30,0,0,0.312315 -15366,5309:102,-92,-30,0,0,0.307569 -15367,5309:101,-91,-30,0,0,0.306017 -15368,5309:100,-90,-30,0,0,0.304188 -15369,5308:209,-89,-30,0,0,0.296116 -15370,5308:208,-88,-30,0,0,0.29809 -15371,5308:207,-87,-30,0,0,0.303992 -15372,5308:206,-86,-30,0,0,0.307088 -15373,5308:205,-85,-30,0,0,0.303514 -15374,5308:104,-84,-30,0,0,0.29633 -15375,5308:103,-83,-30,0,0,0.291787 -15376,5308:102,-82,-30,0,0,0.294961 -15377,5308:101,-81,-30,0,0,0.293787 -15378,5308:100,-80,-30,0,0,0.30033 -15379,5307:209,-79,-30,0,0,0.300439 -15380,5307:208,-78,-30,0,0,0.295773 -15381,5307:207,-77,-30,0,0,0.301281 -15382,5307:206,-76,-30,0,0,0.301887 -15383,5307:205,-75,-30,0,0,0.298133 -15384,5307:104,-74,-30,0,0,0.307021 -15385,5306:100,-60,-30,0,0,0.393262 -15386,5305:209,-59,-30,0,0,0.375396 -15387,5305:208,-58,-30,0,0,0.384836 -15388,5305:207,-57,-30,0,0,0.362527 -15389,5305:206,-56,-30,0,0,0.316523 -15390,5305:205,-55,-30,0,0,0.271709 -15391,5305:104,-54,-30,0,0,0.340194 -15392,5305:103,-53,-30,0,0,0.401356 -15393,5305:102,-52,-30,0,0,0.351865 -15394,5305:101,-51,-30,0,0,0.360937 -15395,5305:100,-50,-30,0,0,0.411518 -15396,5304:209,-49,-30,0,0,0.407146 -15397,5304:208,-48,-30,0,0,0.385445 -15398,5304:207,-47,-30,0,0,0.403085 -15399,5304:206,-46,-30,0,0,0.396969 -15400,5304:205,-45,-30,0,0,0.381437 -15401,5304:104,-44,-30,0,0,0.361222 -15402,5304:103,-43,-30,0,0,0.351677 -15403,5304:102,-42,-30,0,0,0.348428 -15404,5304:101,-41,-30,0,0,0.364309 -15405,5304:100,-40,-30,0,0,0.33315 -15406,5303:209,-39,-30,0,0,0.300806 -15407,5303:208,-38,-30,0,0,0.303579 -15408,5303:207,-37,-30,0,0,0.312226 -15409,5303:206,-36,-30,0,0,0.326745 -15410,5303:205,-35,-30,0,0,0.332146 -15411,5303:104,-34,-30,0,0,0.332739 -15412,5303:103,-33,-30,0,0,0.324398 -15413,5303:102,-32,-30,0,0,0.322622 -15414,5303:101,-31,-30,0,0,0.322555 -15415,5303:100,-30,-30,0,0,0.322061 -15416,5302:209,-29,-30,0,0,0.316212 -15417,5302:208,-28,-30,0,0,0.310728 -15418,5302:207,-27,-30,0,0,0.308247 -15419,5302:206,-26,-30,0,0,0.308269 -15420,5302:205,-25,-30,0,0,0.305887 -15421,5302:104,-24,-30,0,0,0.304079 -15422,5302:103,-23,-30,0,0,0.302732 -15423,5302:102,-22,-30,0,0,0.302494 -15424,5302:101,-21,-30,0,0,0.301476 -15425,5302:100,-20,-30,0,0,0.299748 -15426,5301:209,-19,-30,0,0,0.303275 -15427,5301:208,-18,-30,0,0,0.312381 -15428,5301:207,-17,-30,0,0,0.306759 -15429,5301:206,-16,-30,0,0,0.303687 -15430,5301:205,-15,-30,0,0,0.301865 -15431,5301:104,-14,-30,0,0,0.311675 -15432,5301:103,-13,-30,0,0,0.306737 -15433,5301:102,-12,-30,0,0,0.297982 -15434,5301:101,-11,-30,0,0,0.292935 -15435,5301:100,-10,-30,0,0,0.295517 -15436,5300:209,-9,-30,0,0,0.293808 -15437,5300:208,-8,-30,0,0,0.302949 -15438,5300:207,-7,-30,0,0,0.297381 -15439,5300:206,-6,-30,0,0,0.30271 -15440,5300:205,-5,-30,0,0,0.294598 -15441,5300:104,-4,-30,0,0,0.290155 -15442,5300:103,-3,-30,0,0,0.277336 -15443,5300:102,-2,-30,0,0,0.283806 -15444,5300:101,-1,-30,0,0,0.294235 -15445,3300:101,0,-30,0,0,0.295153 -15446,3300:101,1,-30,0,0,0.280477 -15447,3300:102,2,-30,0,0,0.286004 -15448,3300:103,3,-30,0,0,0.284454 -15449,3300:104,4,-30,0,0,0.289035 -15450,3300:205,5,-30,0,0,0.298413 -15451,3300:206,6,-30,0,0,0.30321 -15452,3300:207,7,-30,0,0,0.302126 -15453,3300:208,8,-30,0,0,0.321792 -15454,3300:209,9,-30,0,0,0.323139 -15455,3301:100,10,-30,0,0,0.351489 -15456,3301:101,11,-30,0,0,0.379137 -15457,3301:102,12,-30,0,0,0.38598 -15458,3301:103,13,-30,0,0,0.387589 -15459,3301:104,14,-30,0,0,0.391743 -15460,3301:205,15,-30,0,0,0.387491 -15461,3301:206,16,-30,0,0,0.405857 -15462,3301:207,17,-30,0,0,0.432767 -15463,3301:208,18,-30,0,0,0.425996 -15464,3301:209,19,-30,0,0,0.429592 -15465,3302:100,20,-30,0,0,0.421656 -15466,3302:101,21,-30,0,0,0.415978 -15467,3302:102,22,-30,0,0,0.42316 -15468,3302:103,23,-30,0,0,0.426624 -15469,3302:104,24,-30,0,0,0.389102 -15470,3302:205,25,-30,0,0,0.398964 -15471,3302:206,26,-30,0,0,0.392796 -15472,3302:207,27,-30,0,0,0.333058 -15473,3302:208,28,-30,0,0,0.35574 -15474,3302:209,29,-30,0,0,0.401356 -15475,3303:100,30,-30,0,0,0.417152 -15476,3303:101,31,-30,0,0,0.402516 -15477,3303:102,32,-30,0,0,0.414058 -15478,3303:103,33,-30,0,0,0.327129 -15479,3303:104,34,-30,0,0,0.340217 -15480,3303:205,35,-30,0,0,0.401183 -15481,3303:206,36,-30,0,0,0.378533 -15482,3303:207,37,-30,0,0,0.377059 -15483,3303:208,38,-30,0,0,0.365452 -15484,3303:209,39,-30,0,0,0.341071 -15485,3304:100,40,-30,0,0,0.375107 -15486,3304:101,41,-30,0,0,0.365977 -15487,3304:102,42,-30,0,0,0.361625 -15488,3304:103,43,-30,0,0,0.365238 -15489,3304:104,44,-30,0,0,0.36581 -15490,3304:205,45,-30,0,0,0.358996 -15491,3304:206,46,-30,0,0,0.355552 -15492,3304:207,47,-30,0,0,0.35238 -15493,3304:208,48,-30,0,0,0.356117 -15494,3304:209,49,-30,0,0,0.358335 -15495,3305:100,50,-30,0,0,0.348218 -15496,3305:101,51,-30,0,0,0.340378 -15497,3305:102,52,-30,0,0,0.337592 -15498,3305:103,53,-30,0,0,0.320359 -15499,3305:104,54,-30,0,0,0.33617 -15500,3305:205,55,-30,0,0,0.33918 -15501,3305:206,56,-30,0,0,0.318705 -15502,3305:207,57,-30,0,0,0.322083 -15503,3305:208,58,-30,0,0,0.328713 -15504,3305:209,59,-30,0,0,0.323701 -15505,3306:100,60,-30,0,0,0.320359 -15506,3306:101,61,-30,0,0,0.322914 -15507,3306:102,62,-30,0,0,0.328464 -15508,3306:103,63,-30,0,0,0.327264 -15509,3306:104,64,-30,0,0,0.321836 -15510,3306:205,65,-30,0,0,0.318616 -15511,3306:206,66,-30,0,0,0.322465 -15512,3306:207,67,-30,0,0,0.320492 -15513,3306:208,68,-30,0,0,0.313707 -15514,3306:209,69,-30,0,0,0.314548 -15515,3307:100,70,-30,0,0,0.31457 -15516,3307:101,71,-30,0,0,0.313818 -15517,3307:102,72,-30,0,0,0.311278 -15518,3307:104,74,-30,0,0,0.313773 -15519,3307:205,75,-30,0,0,0.311631 -15520,3307:206,76,-30,0,0,0.300611 -15521,3307:207,77,-30,0,0,0.295068 -15522,3307:208,78,-30,0,0,0.295367 -15523,3307:209,79,-30,0,0,0.301043 -15524,3308:100,80,-30,0,0,0.296266 -15525,3308:101,81,-30,0,0,0.294939 -15526,3308:102,82,-30,0,0,0.296394 -15527,3308:103,83,-30,0,0,0.294576 -15528,3308:104,84,-30,0,0,0.292106 -15529,3308:205,85,-30,0,0,0.291597 -15530,3308:206,86,-30,0,0,0.296501 -15531,3308:207,87,-30,0,0,0.295324 -15532,3308:208,88,-30,0,0,0.29432 -15533,3308:209,89,-30,0,0,0.291915 -15534,3309:100,90,-30,0,0,0.285354 -15535,3309:101,91,-30,0,0,0.286277 -15536,3309:102,92,-30,0,0,0.285774 -15537,3309:103,93,-30,0,0,0.284287 -15538,3309:104,94,-30,0,0,0.28293 -15539,3309:205,95,-30,0,0,0.280913 -15540,3309:206,96,-30,0,0,0.277913 -15541,3309:207,97,-30,0,0,0.276965 -15542,3309:208,98,-30,0,0,0.279772 -15543,3309:209,99,-30,0,0,0.277789 -15544,3310:100,100,-30,0,0,0.276657 -15545,3310:101,101,-30,0,0,0.279876 -15546,3310:102,102,-30,0,0,0.27713 -15547,3310:103,103,-30,0,0,0.277893 -15548,3310:104,104,-30,0,0,0.28191 -15549,3310:205,105,-30,0,0,0.279793 -15550,3310:206,106,-30,0,0,0.278614 -15551,3310:207,107,-30,0,0,0.276822 -15552,3310:208,108,-30,0,0,0.277851 -15553,3310:209,109,-30,0,0,0.280373 -15554,3311:100,110,-30,0,0,0.302754 -15555,3311:101,111,-30,0,0,0.31962 -15556,3311:102,112,-30,0,0,0.326338 -15557,3311:103,113,-30,0,0,0.319688 -15558,3311:104,114,-30,0,0,0.329235 -15559,3311:205,115,-30,0,0,0.313928 -15560,3311:206,116,-30,0,0,0.30139 -15561,3311:207,117,-30,0,0,0.309981 -15562,3311:208,118,-30,0,0,0.305515 -15563,3311:209,119,-30,0,0,0.305385 -15564,3312:100,120,-30,0,0,0.308686 -15565,3312:101,121,-30,0,0,0.317435 -15566,3312:102,122,-30,0,0,0.309695 -15567,3312:103,123,-30,0,0,0.305559 -15568,3312:104,124,-30,0,0,0.308313 -15569,3312:205,125,-30,0,0,0.311675 -15570,3312:206,126,-30,0,0,0.311081 -15571,3312:207,127,-30,0,0,0.310244 -15572,3312:208,128,-30,0,0,0.303253 -15573,3312:209,129,-30,0,0,0.298735 -15574,3313:100,130,-30,0,0,0.303796 -15575,3313:101,131,-30,0,0,0.308401 -15576,3313:102,132,-30,0,0,0.31579 -15577,3313:103,133,-30,0,0,0.311102 -15578,3313:104,134,-30,0,0,0.320761 -15579,3313:205,135,-30,0,0,0.334429 -15580,3313:206,136,-30,0,0,0.330371 -15581,3313:207,137,-30,0,0,0.326496 -15582,3313:208,138,-30,0,0,0.327333 -15583,3313:209,139,-30,0,0,0.342087 -15584,3314:100,140,-30,0,0,0.340147 -15585,3314:101,141,-30,0,0,0.35156 -15586,3314:102,142,-30,0,0,0.357248 -15587,3314:103,143,-30,0,0,0.363382 -15588,3314:104,144,-30,0,0,0.367361 -15589,3314:205,145,-30,0,0,0.363263 -15590,3314:206,146,-30,0,0,0.375396 -15591,3314:207,147,-30,0,0,0.38384 -15592,3314:208,148,-30,0,0,0.366597 -15593,3314:209,149,-30,0,0,0.389737 -15594,3315:100,150,-30,0,0,0.423686 -15595,3315:101,151,-30,0,0,0.427152 -15596,3315:102,152,-30,0,0,0.425418 -15597,3315:103,153,-30,0,0,0.387784 -15598,3315:104,154,-30,0,0,0.411742 -15599,3315:205,155,-30,0,0,0.382116 -15600,3315:206,156,-30,0,0,0.409851 -15601,3315:207,157,-30,0,0,0.386663 -15602,3315:208,158,-30,0,0,0.39211 -15603,3315:209,159,-30,0,0,0.390984 -15604,3316:100,160,-30,0,0,0.389566 -15605,3316:101,161,-30,0,0,0.383718 -15606,3316:102,162,-30,0,0,0.375685 -15607,3316:103,163,-30,0,0,0.362931 -15608,3316:104,164,-30,0,0,0.359351 -15609,3316:205,165,-30,0,0,0.356447 -15610,3316:206,166,-30,0,0,0.352122 -15611,3316:207,167,-30,0,0,0.348941 -15612,3316:208,168,-30,0,0,0.348171 -15613,3316:209,169,-30,0,0,0.340932 -15614,3317:100,170,-30,0,0,0.338328 -15615,3317:101,171,-30,0,0,0.336766 -15616,3317:102,172,-30,0,0,0.335276 -15617,3317:103,173,-30,0,0,0.332238 -15618,3317:104,174,-30,0,0,0.343592 -15619,3317:209,179,-30,0,0,0.389346 -15620,3318:100,180,-30,0,0,0.369967 -15621,5218:390,-180,-29,0,0,0.392821 -15622,5217:499,-179,-29,0,0,0.379282 -15623,5217:498,-178,-29,0,0,0.364214 -15624,5217:497,-177,-29,0,0,0.355716 -15625,5217:496,-176,-29,0,0,0.352263 -15626,5217:495,-175,-29,0,0,0.350086 -15627,5217:394,-174,-29,0,0,0.351302 -15628,5217:393,-173,-29,0,0,0.352451 -15629,5217:392,-172,-29,0,0,0.363097 -15630,5217:391,-171,-29,0,0,0.371117 -15631,5217:390,-170,-29,0,0,0.367623 -15632,5216:499,-169,-29,0,0,0.358571 -15633,5216:498,-168,-29,0,0,0.354516 -15634,5216:497,-167,-29,0,0,0.348754 -15635,5216:496,-166,-29,0,0,0.355575 -15636,5216:495,-165,-29,0,0,0.359398 -15637,5216:394,-164,-29,0,0,0.360582 -15638,5216:393,-163,-29,0,0,0.366668 -15639,5216:392,-162,-29,0,0,0.367767 -15640,5216:391,-161,-29,0,0,0.366311 -15641,5216:390,-160,-29,0,0,0.370039 -15642,5215:499,-159,-29,0,0,0.369129 -15643,5215:498,-158,-29,0,0,0.369081 -15644,5215:497,-157,-29,0,0,0.371765 -15645,5215:496,-156,-29,0,0,0.367575 -15646,5215:495,-155,-29,0,0,0.367838 -15647,5215:394,-154,-29,0,0,0.372437 -15648,5215:393,-153,-29,0,0,0.374216 -15649,5215:392,-152,-29,0,0,0.373879 -15650,5215:391,-151,-29,0,0,0.379306 -15651,5215:390,-150,-29,0,0,0.382893 -15652,5214:499,-149,-29,0,0,0.385056 -15653,5214:498,-148,-29,0,0,0.381995 -15654,5214:497,-147,-29,0,0,0.381582 -15655,5214:496,-146,-29,0,0,0.38367 -15656,5214:495,-145,-29,0,0,0.383646 -15657,5214:394,-144,-29,0,0,0.386443 -15658,5214:393,-143,-29,0,0,0.387711 -15659,5214:392,-142,-29,0,0,0.38715 -15660,5214:391,-141,-29,0,0,0.385907 -15661,5214:390,-140,-29,0,0,0.384739 -15662,5213:499,-139,-29,0,0,0.385713 -15663,5213:498,-138,-29,0,0,0.383791 -15664,5213:497,-137,-29,0,0,0.379645 -15665,5213:496,-136,-29,0,0,0.377059 -15666,5213:495,-135,-29,0,0,0.379113 -15667,5213:394,-134,-29,0,0,0.372149 -15668,5213:393,-133,-29,0,0,0.375443 -15669,5213:392,-132,-29,0,0,0.369775 -15670,5213:391,-131,-29,0,0,0.364833 -15671,5213:390,-130,-29,0,0,0.363596 -15672,5212:499,-129,-29,0,0,0.363525 -15673,5212:498,-128,-29,0,0,0.361198 -15674,5212:497,-127,-29,0,0,0.360203 -15675,5212:496,-126,-29,0,0,0.358122 -15676,5212:495,-125,-29,0,0,0.357084 -15677,5212:394,-124,-29,0,0,0.35673 -15678,5212:393,-123,-29,0,0,0.352263 -15679,5212:392,-122,-29,0,0,0.349268 -15680,5212:391,-121,-29,0,0,0.352122 -15681,5212:390,-120,-29,0,0,0.354211 -15682,5211:499,-119,-29,0,0,0.353366 -15683,5211:498,-118,-29,0,0,0.355552 -15684,5211:497,-117,-29,0,0,0.3564 -15685,5211:496,-116,-29,0,0,0.351958 -15686,5211:495,-115,-29,0,0,0.345936 -15687,5211:394,-114,-29,0,0,0.347193 -15688,5211:393,-113,-29,0,0,0.345634 -15689,5211:392,-112,-29,0,0,0.342157 -15690,5211:391,-111,-29,0,0,0.335139 -15691,5211:390,-110,-29,0,0,0.341094 -15692,5210:499,-109,-29,0,0,0.347262 -15693,5210:498,-108,-29,0,0,0.340055 -15694,5210:497,-107,-29,0,0,0.334063 -15695,5210:496,-106,-29,0,0,0.330644 -15696,5210:495,-105,-29,0,0,0.332533 -15697,5210:394,-104,-29,0,0,0.33003 -15698,5210:393,-103,-29,0,0,0.329145 -15699,5210:392,-102,-29,0,0,0.321478 -15700,5210:391,-101,-29,0,0,0.328057 -15701,5210:390,-100,-29,0,0,0.323026 -15702,5209:499,-99,-29,0,0,0.320671 -15703,5209:498,-98,-29,0,0,0.325592 -15704,5209:497,-97,-29,0,0,0.327717 -15705,5209:496,-96,-29,0,0,0.325548 -15706,5209:495,-95,-29,0,0,0.331873 -15707,5209:394,-94,-29,0,0,0.326948 -15708,5209:393,-93,-29,0,0,0.331599 -15709,5209:392,-92,-29,0,0,0.324714 -15710,5209:391,-91,-29,0,0,0.321231 -15711,5209:390,-90,-29,0,0,0.317836 -15712,5208:499,-89,-29,0,0,0.322555 -15713,5208:498,-88,-29,0,0,0.315213 -15714,5208:497,-87,-29,0,0,0.312271 -15715,5208:496,-86,-29,0,0,0.31904 -15716,5208:495,-85,-29,0,0,0.320716 -15717,5208:394,-84,-29,0,0,0.316167 -15718,5208:393,-83,-29,0,0,0.315058 -15719,5208:392,-82,-29,0,0,0.319643 -15720,5208:391,-81,-29,0,0,0.317992 -15721,5208:390,-80,-29,0,0,0.3128 -15722,5207:499,-79,-29,0,0,0.315279 -15723,5207:498,-78,-29,0,0,0.315612 -15724,5207:497,-77,-29,0,0,0.318727 -15725,5207:496,-76,-29,0,0,0.315901 -15726,5207:495,-75,-29,0,0,0.315169 -15727,5207:394,-74,-29,0,0,0.319665 -15728,5205:497,-57,-29,0,0,0.432969 -15729,5205:496,-56,-29,0,0,0.40856 -15730,5205:495,-55,-29,0,0,0.307065 -15731,5205:394,-54,-29,0,0,0.336766 -15732,5205:393,-53,-29,0,0,0.397216 -15733,5205:392,-52,-29,0,0,0.391229 -15734,5205:391,-51,-29,0,0,0.43711 -15735,5205:390,-50,-29,0,0,0.432944 -15736,5204:499,-49,-29,0,0,0.432313 -15737,5204:498,-48,-29,0,0,0.394218 -15738,5204:497,-47,-29,0,0,0.39412 -15739,5204:496,-46,-29,0,0,0.411194 -15740,5204:495,-45,-29,0,0,0.418852 -15741,5204:394,-44,-29,0,0,0.386785 -15742,5204:393,-43,-29,0,0,0.346238 -15743,5204:392,-42,-29,0,0,0.350881 -15744,5204:391,-41,-29,0,0,0.357013 -15745,5204:390,-40,-29,0,0,0.372894 -15746,5203:499,-39,-29,0,0,0.356094 -15747,5203:498,-38,-29,0,0,0.353577 -15748,5203:497,-37,-29,0,0,0.347286 -15749,5203:496,-36,-29,0,0,0.343268 -15750,5203:495,-35,-29,0,0,0.33688 -15751,5203:394,-34,-29,0,0,0.335826 -15752,5203:393,-33,-29,0,0,0.339848 -15753,5203:392,-32,-29,0,0,0.349432 -15754,5203:391,-31,-29,0,0,0.342319 -15755,5203:390,-30,-29,0,0,0.338006 -15756,5202:499,-29,-29,0,0,0.33372 -15757,5202:498,-28,-29,0,0,0.32424 -15758,5202:497,-27,-29,0,0,0.329054 -15759,5202:496,-26,-29,0,0,0.330121 -15760,5202:495,-25,-29,0,0,0.314326 -15761,5202:394,-24,-29,0,0,0.316501 -15762,5202:393,-23,-29,0,0,0.323498 -15763,5202:392,-22,-29,0,0,0.327174 -15764,5202:391,-21,-29,0,0,0.327151 -15765,5202:390,-20,-29,0,0,0.335482 -15766,5201:499,-19,-29,0,0,0.327717 -15767,5201:498,-18,-29,0,0,0.325458 -15768,5201:497,-17,-29,0,0,0.311742 -15769,5201:496,-16,-29,0,0,0.312535 -15770,5201:495,-15,-29,0,0,0.317925 -15771,5201:394,-14,-29,0,0,0.326248 -15772,5201:393,-13,-29,0,0,0.321522 -15773,5201:392,-12,-29,0,0,0.31904 -15774,5201:391,-11,-29,0,0,0.319174 -15775,5201:390,-10,-29,0,0,0.315612 -15776,5200:499,-9,-29,0,0,0.319822 -15777,5200:498,-8,-29,0,0,0.316901 -15778,5200:497,-7,-29,0,0,0.313685 -15779,5200:496,-6,-29,0,0,0.319598 -15780,5200:495,-5,-29,0,0,0.321433 -15781,5200:394,-4,-29,0,0,0.32224 -15782,5200:393,-3,-29,0,0,0.310376 -15783,5200:392,-2,-29,0,0,0.309519 -15784,5200:391,-1,-29,0,0,0.321634 -15785,3200:391,0,-29,0,0,0.316968 -15786,3200:391,1,-29,0,0,0.310509 -15787,3200:392,2,-29,0,0,0.314017 -15788,3200:393,3,-29,0,0,0.311345 -15789,3200:394,4,-29,0,0,0.303905 -15790,3200:495,5,-29,0,0,0.305014 -15791,3200:496,6,-29,0,0,0.303318 -15792,3200:497,7,-29,0,0,0.313662 -15793,3200:498,8,-29,0,0,0.331827 -15794,3200:499,9,-29,0,0,0.334132 -15795,3201:390,10,-29,0,0,0.343314 -15796,3201:391,11,-29,0,0,0.35947 -15797,3201:392,12,-29,0,0,0.367122 -15798,3201:393,13,-29,0,0,0.381801 -15799,3201:394,14,-29,0,0,0.387711 -15800,3201:495,15,-29,0,0,0.389517 -15801,3201:496,16,-29,0,0,0.391278 -15802,3201:497,17,-29,0,0,0.418477 -15803,3201:498,18,-29,0,0,0.446638 -15804,3201:499,19,-29,0,0,0.455338 -15805,3202:390,20,-29,0,0,0.442021 -15806,3202:391,21,-29,0,0,0.435064 -15807,3202:392,22,-29,0,0,0.438148 -15808,3202:393,23,-29,0,0,0.433322 -15809,3202:394,24,-29,0,0,0.420403 -15810,3202:495,25,-29,0,0,0.433297 -15811,3202:496,26,-29,0,0,0.430675 -15812,3202:497,27,-29,0,0,0.419677 -15813,3202:498,28,-29,0,0,0.370326 -15814,3202:499,29,-29,0,0,0.427956 -15815,3203:390,30,-29,0,0,0.422031 -15816,3203:391,31,-29,0,0,0.402665 -15817,3203:392,32,-29,0,0,0.404396 -15818,3203:393,33,-29,0,0,0.410871 -15819,3203:394,34,-29,0,0,0.41538 -15820,3203:495,35,-29,0,0,0.393434 -15821,3203:496,36,-29,0,0,0.383694 -15822,3203:497,37,-29,0,0,0.379766 -15823,3203:498,38,-29,0,0,0.380226 -15824,3203:499,39,-29,0,0,0.38316 -15825,3204:390,40,-29,0,0,0.381098 -15826,3204:391,41,-29,0,0,0.366382 -15827,3204:392,42,-29,0,0,0.368603 -15828,3204:393,43,-29,0,0,0.366907 -15829,3204:394,44,-29,0,0,0.365071 -15830,3204:495,45,-29,0,0,0.364309 -15831,3204:496,46,-29,0,0,0.367122 -15832,3204:497,47,-29,0,0,0.364 -15833,3204:498,48,-29,0,0,0.357296 -15834,3204:499,49,-29,0,0,0.349595 -15835,3205:390,50,-29,0,0,0.345076 -15836,3205:391,51,-29,0,0,0.344102 -15837,3205:392,52,-29,0,0,0.346308 -15838,3205:393,53,-29,0,0,0.347822 -15839,3205:394,54,-29,0,0,0.34568 -15840,3205:495,55,-29,0,0,0.342504 -15841,3205:496,56,-29,0,0,0.32885 -15842,3205:497,57,-29,0,0,0.331827 -15843,3205:498,58,-29,0,0,0.338466 -15844,3205:499,59,-29,0,0,0.334178 -15845,3206:390,60,-29,0,0,0.33119 -15846,3206:391,61,-29,0,0,0.33404 -15847,3206:392,62,-29,0,0,0.33711 -15848,3206:393,63,-29,0,0,0.335207 -15849,3206:394,64,-29,0,0,0.33888 -15850,3206:495,65,-29,0,0,0.337822 -15851,3206:496,66,-29,0,0,0.335803 -15852,3206:497,67,-29,0,0,0.333035 -15853,3206:498,68,-29,0,0,0.330598 -15854,3206:499,69,-29,0,0,0.331782 -15855,3207:390,70,-29,0,0,0.327875 -15856,3207:391,71,-29,0,0,0.327513 -15857,3207:392,72,-29,0,0,0.325841 -15858,3207:394,74,-29,0,0,0.323318 -15859,3207:495,75,-29,0,0,0.323408 -15860,3207:496,76,-29,0,0,0.322599 -15861,3207:497,77,-29,0,0,0.317969 -15862,3207:498,78,-29,0,0,0.31205 -15863,3207:499,79,-29,0,0,0.313662 -15864,3208:390,80,-29,0,0,0.308247 -15865,3208:391,81,-29,0,0,0.309036 -15866,3208:392,82,-29,0,0,0.312624 -15867,3208:393,83,-29,0,0,0.314504 -15868,3208:394,84,-29,0,0,0.315346 -15869,3208:495,85,-29,0,0,0.315302 -15870,3208:496,86,-29,0,0,0.311918 -15871,3208:497,87,-29,0,0,0.306825 -15872,3208:498,88,-29,0,0,0.303492 -15873,3208:499,89,-29,0,0,0.300935 -15874,3209:390,90,-29,0,0,0.300633 -15875,3209:391,91,-29,0,0,0.301909 -15876,3209:392,92,-29,0,0,0.301173 -15877,3209:393,93,-29,0,0,0.299145 -15878,3209:394,94,-29,0,0,0.293254 -15879,3209:495,95,-29,0,0,0.29464 -15880,3209:496,96,-29,0,0,0.295281 -15881,3209:497,97,-29,0,0,0.295303 -15882,3209:498,98,-29,0,0,0.300395 -15883,3209:499,99,-29,0,0,0.296523 -15884,3210:390,100,-29,0,0,0.296694 -15885,3210:391,101,-29,0,0,0.29285 -15886,3210:392,102,-29,0,0,0.292489 -15887,3210:393,103,-29,0,0,0.299877 -15888,3210:394,104,-29,0,0,0.299467 -15889,3210:495,105,-29,0,0,0.298326 -15890,3210:496,106,-29,0,0,0.298843 -15891,3210:497,107,-29,0,0,0.297445 -15892,3210:498,108,-29,0,0,0.301865 -15893,3210:499,109,-29,0,0,0.307175 -15894,3211:390,110,-29,0,0,0.347729 -15895,3211:391,111,-29,0,0,0.362408 -15896,3211:392,112,-29,0,0,0.352708 -15897,3211:393,113,-29,0,0,0.351466 -15898,3211:394,114,-29,0,0,0.35156 -15899,3211:495,115,-29,0,0,0.358169 -15900,3211:496,116,-29,0,0,0.340863 -15901,3211:497,117,-29,0,0,0.338282 -15902,3211:498,118,-29,0,0,0.3451 -15903,3211:499,119,-29,0,0,0.354094 -15904,3212:390,120,-29,0,0,0.340725 -15905,3212:391,121,-29,0,0,0.331258 -15906,3212:392,122,-29,0,0,0.338489 -15907,3212:393,123,-29,0,0,0.339825 -15908,3212:394,124,-29,0,0,0.340194 -15909,3212:495,125,-29,0,0,0.330644 -15910,3212:496,126,-29,0,0,0.33819 -15911,3212:497,127,-29,0,0,0.334681 -15912,3212:498,128,-29,0,0,0.331622 -15913,3212:499,129,-29,0,0,0.326451 -15914,3213:390,130,-29,0,0,0.324286 -15915,3213:391,131,-29,0,0,0.328442 -15916,3213:392,132,-29,0,0,0.336628 -15917,3213:393,133,-29,0,0,0.350179 -15918,3213:394,134,-29,0,0,0.345983 -15919,3213:495,135,-29,0,0,0.345425 -15920,3213:496,136,-29,0,0,0.345169 -15921,3213:497,137,-29,0,0,0.34343 -15922,3213:498,138,-29,0,0,0.356094 -15923,3213:499,139,-29,0,0,0.359848 -15924,3214:390,140,-29,0,0,0.380662 -15925,3215:390,150,-29,0,0,0.408138 -15926,3215:391,151,-29,0,0,0.432793 -15927,3215:392,152,-29,0,0,0.423009 -15928,3215:393,153,-29,0,0,0.425795 -15929,3215:394,154,-29,0,0,0.420729 -15930,3215:495,155,-29,0,0,0.415554 -15931,3215:496,156,-29,0,0,0.426197 -15932,3215:497,157,-29,0,0,0.425845 -15933,3215:498,158,-29,0,0,0.438426 -15934,3215:499,159,-29,0,0,0.43128 -15935,3216:390,160,-29,0,0,0.418577 -15936,3216:391,161,-29,0,0,0.412762 -15937,3216:392,162,-29,0,0,0.399038 -15938,3216:393,163,-29,0,0,0.376191 -15939,3216:394,164,-29,0,0,0.376674 -15940,3216:495,165,-29,0,0,0.370854 -15941,3216:496,166,-29,0,0,0.369201 -15942,3216:497,167,-29,0,0,0.364928 -15943,3216:498,168,-29,0,0,0.362455 -15944,3216:499,169,-29,0,0,0.36172 -15945,3217:390,170,-29,0,0,0.363311 -15946,3217:391,171,-29,0,0,0.360748 -15947,3217:392,172,-29,0,0,0.354376 -15948,3217:393,173,-29,0,0,0.349618 -15949,3217:394,174,-29,0,0,0.35032 -15950,3217:495,175,-29,0,0,0.375902 -15951,3217:497,177,-29,0,0,0.383816 -15952,3217:498,178,-29,0,0,0.386054 -15953,3217:499,179,-29,0,0,0.379452 -15954,3218:390,180,-29,0,0,0.392821 -15955,5218:380,-180,-28,0,0,0.395716 -15956,5217:489,-179,-28,0,0,0.387613 -15957,5217:488,-178,-28,0,0,0.370063 -15958,5217:487,-177,-28,0,0,0.370806 -15959,5217:486,-176,-28,0,0,0.374216 -15960,5217:485,-175,-28,0,0,0.373639 -15961,5217:384,-174,-28,0,0,0.373518 -15962,5217:383,-173,-28,0,0,0.378025 -15963,5217:382,-172,-28,0,0,0.375034 -15964,5217:381,-171,-28,0,0,0.378073 -15965,5217:380,-170,-28,0,0,0.379669 -15966,5216:489,-169,-28,0,0,0.38168 -15967,5216:488,-168,-28,0,0,0.376504 -15968,5216:487,-167,-28,0,0,0.373518 -15969,5216:486,-166,-28,0,0,0.370781 -15970,5216:485,-165,-28,0,0,0.372485 -15971,5216:384,-164,-28,0,0,0.373711 -15972,5216:383,-163,-28,0,0,0.377325 -15973,5216:382,-162,-28,0,0,0.376529 -15974,5216:381,-161,-28,0,0,0.375637 -15975,5216:380,-160,-28,0,0,0.378049 -15976,5215:489,-159,-28,0,0,0.381219 -15977,5215:488,-158,-28,0,0,0.382868 -15978,5215:487,-157,-28,0,0,0.380081 -15979,5215:486,-156,-28,0,0,0.381413 -15980,5215:485,-155,-28,0,0,0.384132 -15981,5215:384,-154,-28,0,0,0.382577 -15982,5215:383,-153,-28,0,0,0.385445 -15983,5215:382,-152,-28,0,0,0.38859 -15984,5215:381,-151,-28,0,0,0.389493 -15985,5215:380,-150,-28,0,0,0.392698 -15986,5214:489,-149,-28,0,0,0.394733 -15987,5214:488,-148,-28,0,0,0.389322 -15988,5214:487,-147,-28,0,0,0.38754 -15989,5214:486,-146,-28,0,0,0.391351 -15990,5214:485,-145,-28,0,0,0.393482 -15991,5214:384,-144,-28,0,0,0.391253 -15992,5214:383,-143,-28,0,0,0.390446 -15993,5214:382,-142,-28,0,0,0.390593 -15994,5214:381,-141,-28,0,0,0.389224 -15995,5214:380,-140,-28,0,0,0.388565 -15996,5213:489,-139,-28,0,0,0.390568 -15997,5213:488,-138,-28,0,0,0.39189 -15998,5213:487,-137,-28,0,0,0.389908 -15999,5213:486,-136,-28,0,0,0.386736 -16000,5213:485,-135,-28,0,0,0.383233 -16001,5213:384,-134,-28,0,0,0.381753 -16002,5213:383,-133,-28,0,0,0.379766 -16003,5213:382,-132,-28,0,0,0.382528 -16004,5213:381,-131,-28,0,0,0.381316 -16005,5213:380,-130,-28,0,0,0.376866 -16006,5212:489,-129,-28,0,0,0.375034 -16007,5212:488,-128,-28,0,0,0.373158 -16008,5212:487,-127,-28,0,0,0.373038 -16009,5212:486,-126,-28,0,0,0.369919 -16010,5212:485,-125,-28,0,0,0.367886 -16011,5212:384,-124,-28,0,0,0.370182 -16012,5212:383,-123,-28,0,0,0.370039 -16013,5212:382,-122,-28,0,0,0.367193 -16014,5212:381,-121,-28,0,0,0.366573 -16015,5212:380,-120,-28,0,0,0.365881 -16016,5211:489,-119,-28,0,0,0.364095 -16017,5211:488,-118,-28,0,0,0.363477 -16018,5211:487,-117,-28,0,0,0.363786 -16019,5211:486,-116,-28,0,0,0.358642 -16020,5211:485,-115,-28,0,0,0.355952 -16021,5211:384,-114,-28,0,0,0.35706 -16022,5211:383,-113,-28,0,0,0.363002 -16023,5211:382,-112,-28,0,0,0.36343 -16024,5211:381,-111,-28,0,0,0.357768 -16025,5211:380,-110,-28,0,0,0.352169 -16026,5210:489,-109,-28,0,0,0.352216 -16027,5210:488,-108,-28,0,0,0.367814 -16028,5210:487,-107,-28,0,0,0.362432 -16029,5210:486,-106,-28,0,0,0.358052 -16030,5210:485,-105,-28,0,0,0.348801 -16031,5210:384,-104,-28,0,0,0.348311 -16032,5210:383,-103,-28,0,0,0.338765 -16033,5210:382,-102,-28,0,0,0.33711 -16034,5210:381,-101,-28,0,0,0.348264 -16035,5210:380,-100,-28,0,0,0.345588 -16036,5209:489,-99,-28,0,0,0.34218 -16037,5209:488,-98,-28,0,0,0.337754 -16038,5209:487,-97,-28,0,0,0.348754 -16039,5209:486,-96,-28,0,0,0.345564 -16040,5209:485,-95,-28,0,0,0.344984 -16041,5209:384,-94,-28,0,0,0.343383 -16042,5209:383,-93,-28,0,0,0.341047 -16043,5209:382,-92,-28,0,0,0.34575 -16044,5209:381,-91,-28,0,0,0.339825 -16045,5209:380,-90,-28,0,0,0.340517 -16046,5208:489,-89,-28,0,0,0.343082 -16047,5208:488,-88,-28,0,0,0.341094 -16048,5208:487,-87,-28,0,0,0.336766 -16049,5208:486,-86,-28,0,0,0.337731 -16050,5208:485,-85,-28,0,0,0.33226 -16051,5208:384,-84,-28,0,0,0.334887 -16052,5208:383,-83,-28,0,0,0.333675 -16053,5208:382,-82,-28,0,0,0.332602 -16054,5208:381,-81,-28,0,0,0.331303 -16055,5208:380,-80,-28,0,0,0.334155 -16056,5207:489,-79,-28,0,0,0.334201 -16057,5207:488,-78,-28,0,0,0.329122 -16058,5207:487,-77,-28,0,0,0.327853 -16059,5207:486,-76,-28,0,0,0.333446 -16060,5207:485,-75,-28,0,0,0.324466 -16061,5207:384,-74,-28,0,0,0.327966 -16062,5207:383,-73,-28,0,0,0.304296 -16063,5205:486,-56,-28,0,0,0.441286 -16064,5205:485,-55,-28,0,0,0.416228 -16065,5205:384,-54,-28,0,0,0.361056 -16066,5205:383,-53,-28,0,0,0.376432 -16067,5205:382,-52,-28,0,0,0.405956 -16068,5205:381,-51,-28,0,0,0.492155 -16069,5205:380,-50,-28,0,0,0.474351 -16070,5204:489,-49,-28,0,0,0.490126 -16071,5204:488,-48,-28,0,0,0.455771 -16072,5204:487,-47,-28,0,0,0.438047 -16073,5204:486,-46,-28,0,0,0.441134 -16074,5204:485,-45,-28,0,0,0.436732 -16075,5204:384,-44,-28,0,0,0.428813 -16076,5204:383,-43,-28,0,0,0.420028 -16077,5204:382,-42,-28,0,0,0.410722 -16078,5204:381,-41,-28,0,0,0.402097 -16079,5204:380,-40,-28,0,0,0.390324 -16080,5203:489,-39,-28,0,0,0.372341 -16081,5203:488,-38,-28,0,0,0.354704 -16082,5203:487,-37,-28,0,0,0.360653 -16083,5203:486,-36,-28,0,0,0.371477 -16084,5203:485,-35,-28,0,0,0.364691 -16085,5203:384,-34,-28,0,0,0.366263 -16086,5203:383,-33,-28,0,0,0.361696 -16087,5203:382,-32,-28,0,0,0.359327 -16088,5203:381,-31,-28,0,0,0.3585 -16089,5203:380,-30,-28,0,0,0.349385 -16090,5202:489,-29,-28,0,0,0.35501 -16091,5202:488,-28,-28,0,0,0.348195 -16092,5202:487,-27,-28,0,0,0.356541 -16093,5202:486,-26,-28,0,0,0.356753 -16094,5202:485,-25,-28,0,0,0.351209 -16095,5202:384,-24,-28,0,0,0.344473 -16096,5202:383,-23,-28,0,0,0.348171 -16097,5202:382,-22,-28,0,0,0.351115 -16098,5202:381,-21,-28,0,0,0.346099 -16099,5202:380,-20,-28,0,0,0.342296 -16100,5201:489,-19,-28,0,0,0.35574 -16101,5201:488,-18,-28,0,0,0.348988 -16102,5201:487,-17,-28,0,0,0.341856 -16103,5201:486,-16,-28,0,0,0.342041 -16104,5201:485,-15,-28,0,0,0.343129 -16105,5201:384,-14,-28,0,0,0.339019 -16106,5201:383,-13,-28,0,0,0.343685 -16107,5201:382,-12,-28,0,0,0.33594 -16108,5201:381,-11,-28,0,0,0.334315 -16109,5201:380,-10,-28,0,0,0.332876 -16110,5200:489,-9,-28,0,0,0.333904 -16111,5200:488,-8,-28,0,0,0.337547 -16112,5200:487,-7,-28,0,0,0.336078 -16113,5200:486,-6,-28,0,0,0.345286 -16114,5200:485,-5,-28,0,0,0.34336 -16115,5200:384,-4,-28,0,0,0.337662 -16116,5200:383,-3,-28,0,0,0.334567 -16117,5200:382,-2,-28,0,0,0.331736 -16118,5200:381,-1,-28,0,0,0.330371 -16119,3200:381,0,-28,0,0,0.335528 -16120,3200:381,1,-28,0,0,0.33842 -16121,3200:382,2,-28,0,0,0.335505 -16122,3200:383,3,-28,0,0,0.341995 -16123,3200:384,4,-28,0,0,0.330325 -16124,3200:485,5,-28,0,0,0.326112 -16125,3200:486,6,-28,0,0,0.318906 -16126,3200:487,7,-28,0,0,0.316923 -16127,3200:488,8,-28,0,0,0.335139 -16128,3200:489,9,-28,0,0,0.342504 -16129,3201:380,10,-28,0,0,0.346308 -16130,3201:381,11,-28,0,0,0.352849 -16131,3201:382,12,-28,0,0,0.377156 -16132,3201:383,13,-28,0,0,0.395839 -16133,3201:384,14,-28,0,0,0.392894 -16134,3201:485,15,-28,0,0,0.388492 -16135,3201:486,16,-28,0,0,0.401825 -16136,3201:487,17,-28,0,0,0.397757 -16137,3201:488,18,-28,0,0,0.425619 -16138,3201:489,19,-28,0,0,0.438148 -16139,3202:380,20,-28,0,0,0.440071 -16140,3202:381,21,-28,0,0,0.459852 -16141,3202:382,22,-28,0,0,0.482067 -16142,3202:383,23,-28,0,0,0.457071 -16143,3202:384,24,-28,0,0,0.465011 -16144,3202:485,25,-28,0,0,0.472405 -16145,3202:486,26,-28,0,0,0.461128 -16146,3202:487,27,-28,0,0,0.436554 -16147,3202:488,28,-28,0,0,0.438223 -16148,3202:489,29,-28,0,0,0.446485 -16149,3203:380,30,-28,0,0,0.420078 -16150,3203:381,31,-28,0,0,0.408485 -16151,3203:382,32,-28,0,0,0.407915 -16152,3203:383,33,-28,0,0,0.408983 -16153,3203:384,34,-28,0,0,0.403579 -16154,3203:485,35,-28,0,0,0.401528 -16155,3203:486,36,-28,0,0,0.391939 -16156,3203:487,37,-28,0,0,0.388126 -16157,3203:488,38,-28,0,0,0.386857 -16158,3203:489,39,-28,0,0,0.382626 -16159,3204:380,40,-28,0,0,0.379669 -16160,3204:381,41,-28,0,0,0.377421 -16161,3204:382,42,-28,0,0,0.374914 -16162,3204:383,43,-28,0,0,0.373494 -16163,3204:384,44,-28,0,0,0.373014 -16164,3204:485,45,-28,0,0,0.372942 -16165,3204:486,46,-28,0,0,0.372005 -16166,3204:487,47,-28,0,0,0.367504 -16167,3204:488,48,-28,0,0,0.362503 -16168,3204:489,49,-28,0,0,0.359683 -16169,3205:380,50,-28,0,0,0.354587 -16170,3205:381,51,-28,0,0,0.35501 -16171,3205:382,52,-28,0,0,0.35706 -16172,3205:383,53,-28,0,0,0.357673 -16173,3205:384,54,-28,0,0,0.352075 -16174,3205:485,55,-28,0,0,0.348754 -16175,3205:486,56,-28,0,0,0.34575 -16176,3205:487,57,-28,0,0,0.345286 -16177,3205:488,58,-28,0,0,0.347169 -16178,3205:489,59,-28,0,0,0.344055 -16179,3206:380,60,-28,0,0,0.34218 -16180,3206:381,61,-28,0,0,0.344195 -16181,3206:382,62,-28,0,0,0.348125 -16182,3206:383,63,-28,0,0,0.349852 -16183,3206:384,64,-28,0,0,0.352849 -16184,3206:485,65,-28,0,0,0.351419 -16185,3206:486,66,-28,0,0,0.346006 -16186,3206:487,67,-28,0,0,0.347193 -16187,3206:488,68,-28,0,0,0.351256 -16188,3206:489,69,-28,0,0,0.346308 -16189,3207:380,70,-28,0,0,0.346029 -16190,3207:381,71,-28,0,0,0.349829 -16191,3207:382,72,-28,0,0,0.344241 -16192,3207:384,74,-28,0,0,0.340425 -16193,3207:485,75,-28,0,0,0.344775 -16194,3207:486,76,-28,0,0,0.345843 -16195,3207:487,77,-28,0,0,0.339249 -16196,3207:488,78,-28,0,0,0.335734 -16197,3207:489,79,-28,0,0,0.333949 -16198,3208:380,80,-28,0,0,0.329168 -16199,3208:381,81,-28,0,0,0.331691 -16200,3208:382,82,-28,0,0,0.337271 -16201,3208:383,83,-28,0,0,0.33578 -16202,3208:384,84,-28,0,0,0.332785 -16203,3208:485,85,-28,0,0,0.329576 -16204,3208:486,86,-28,0,0,0.327264 -16205,3208:487,87,-28,0,0,0.325097 -16206,3208:488,88,-28,0,0,0.322083 -16207,3208:489,89,-28,0,0,0.321567 -16208,3209:380,90,-28,0,0,0.321567 -16209,3209:381,91,-28,0,0,0.321321 -16210,3209:382,92,-28,0,0,0.323723 -16211,3209:383,93,-28,0,0,0.322734 -16212,3209:384,94,-28,0,0,0.320761 -16213,3209:485,95,-28,0,0,0.321052 -16214,3209:486,96,-28,0,0,0.319286 -16215,3209:487,97,-28,0,0,0.320291 -16216,3209:488,98,-28,0,0,0.321299 -16217,3209:489,99,-28,0,0,0.317791 -16218,3210:380,100,-28,0,0,0.317168 -16219,3210:381,101,-28,0,0,0.322734 -16220,3210:382,102,-28,0,0,0.317658 -16221,3210:383,103,-28,0,0,0.32697 -16222,3210:384,104,-28,0,0,0.320828 -16223,3210:485,105,-28,0,0,0.321994 -16224,3210:486,106,-28,0,0,0.32826 -16225,3210:487,107,-28,0,0,0.327943 -16226,3210:488,108,-28,0,0,0.331508 -16227,3210:489,109,-28,0,0,0.339894 -16228,3211:380,110,-28,0,0,0.358075 -16229,3211:381,111,-28,0,0,0.369177 -16230,3211:382,112,-28,0,0,0.355246 -16231,3211:383,113,-28,0,0,0.373061 -16232,3211:384,114,-28,0,0,0.381801 -16233,3211:485,115,-28,0,0,0.379403 -16234,3211:486,116,-28,0,0,0.361838 -16235,3211:487,117,-28,0,0,0.367599 -16236,3211:488,118,-28,0,0,0.382043 -16237,3211:489,119,-28,0,0,0.377445 -16238,3212:380,120,-28,0,0,0.374866 -16239,3212:381,121,-28,0,0,0.352451 -16240,3212:382,122,-28,0,0,0.362384 -16241,3212:383,123,-28,0,0,0.358902 -16242,3212:384,124,-28,0,0,0.362337 -16243,3212:485,125,-28,0,0,0.357366 -16244,3212:486,126,-28,0,0,0.360061 -16245,3212:487,127,-28,0,0,0.347379 -16246,3212:488,128,-28,0,0,0.348847 -16247,3212:489,129,-28,0,0,0.352591 -16248,3213:380,130,-28,0,0,0.367408 -16249,3213:381,131,-28,0,0,0.365476 -16250,3213:382,132,-28,0,0,0.352826 -16251,3213:383,133,-28,0,0,0.364072 -16252,3213:384,134,-28,0,0,0.357461 -16253,3213:485,135,-28,0,0,0.361151 -16254,3213:486,136,-28,0,0,0.368173 -16255,3213:487,137,-28,0,0,0.379984 -16256,3213:488,138,-28,0,0,0.38025 -16257,3213:489,139,-28,0,0,0.385177 -16258,3214:380,140,-28,0,0,0.42133 -16259,3215:381,151,-28,0,0,0.476811 -16260,3215:382,152,-28,0,0,0.480118 -16261,3215:383,153,-28,0,0,0.480605 -16262,3215:384,154,-28,0,0,0.466161 -16263,3215:485,155,-28,0,0,0.441667 -16264,3215:486,156,-28,0,0,0.444886 -16265,3215:487,157,-28,0,0,0.466391 -16266,3215:488,158,-28,0,0,0.453046 -16267,3215:489,159,-28,0,0,0.443187 -16268,3216:380,160,-28,0,0,0.450679 -16269,3216:381,161,-28,0,0,0.454013 -16270,3216:382,162,-28,0,0,0.433676 -16271,3216:383,163,-28,0,0,0.420628 -16272,3216:384,164,-28,0,0,0.413859 -16273,3216:485,165,-28,0,0,0.3926 -16274,3216:486,166,-28,0,0,0.391939 -16275,3216:487,167,-28,0,0,0.391229 -16276,3216:488,168,-28,0,0,0.390666 -16277,3216:489,169,-28,0,0,0.381607 -16278,3217:380,170,-28,0,0,0.380178 -16279,3217:381,171,-28,0,0,0.374721 -16280,3217:382,172,-28,0,0,0.37359 -16281,3217:383,173,-28,0,0,0.365333 -16282,3217:384,174,-28,0,0,0.373999 -16283,3217:486,176,-28,0,0,0.396035 -16284,3217:487,177,-28,0,0,0.40101 -16285,3217:488,178,-28,0,0,0.395962 -16286,3217:489,179,-28,0,0,0.393875 -16287,3218:380,180,-28,0,0,0.395716 -16288,5218:370,-180,-27,0,0,0.391229 -16289,5217:479,-179,-27,0,0,0.396232 -16290,5217:478,-178,-27,0,0,0.390226 -16291,5217:477,-177,-27,0,0,0.387321 -16292,5217:476,-176,-27,0,0,0.390324 -16293,5217:475,-175,-27,0,0,0.394587 -16294,5217:374,-174,-27,0,0,0.398914 -16295,5217:373,-173,-27,0,0,0.398102 -16296,5217:372,-172,-27,0,0,0.393017 -16297,5217:371,-171,-27,0,0,0.393752 -16298,5217:370,-170,-27,0,0,0.3952 -16299,5216:479,-169,-27,0,0,0.396109 -16300,5216:478,-168,-27,0,0,0.394685 -16301,5216:477,-167,-27,0,0,0.390984 -16302,5216:476,-166,-27,0,0,0.387711 -16303,5216:475,-165,-27,0,0,0.38659 -16304,5216:374,-164,-27,0,0,0.387638 -16305,5216:373,-163,-27,0,0,0.387662 -16306,5216:372,-162,-27,0,0,0.387516 -16307,5216:371,-161,-27,0,0,0.388003 -16308,5216:370,-160,-27,0,0,0.388955 -16309,5215:479,-159,-27,0,0,0.390666 -16310,5215:478,-158,-27,0,0,0.393826 -16311,5215:477,-157,-27,0,0,0.397683 -16312,5215:476,-156,-27,0,0,0.39921 -16313,5215:475,-155,-27,0,0,0.396969 -16314,5215:374,-154,-27,0,0,0.395053 -16315,5215:373,-153,-27,0,0,0.398914 -16316,5215:372,-152,-27,0,0,0.401874 -16317,5215:371,-151,-27,0,0,0.402764 -16318,5215:370,-150,-27,0,0,0.40494 -16319,5214:479,-149,-27,0,0,0.404693 -16320,5214:478,-148,-27,0,0,0.401282 -16321,5214:477,-147,-27,0,0,0.397634 -16322,5214:476,-146,-27,0,0,0.397117 -16323,5214:475,-145,-27,0,0,0.401652 -16324,5214:374,-144,-27,0,0,0.397929 -16325,5214:373,-143,-27,0,0,0.394439 -16326,5214:372,-142,-27,0,0,0.394513 -16327,5214:371,-141,-27,0,0,0.393899 -16328,5214:370,-140,-27,0,0,0.392674 -16329,5213:479,-139,-27,0,0,0.395519 -16330,5213:478,-138,-27,0,0,0.397044 -16331,5213:477,-137,-27,0,0,0.396994 -16332,5213:476,-136,-27,0,0,0.398077 -16333,5213:475,-135,-27,0,0,0.399407 -16334,5213:374,-134,-27,0,0,0.396428 -16335,5213:373,-133,-27,0,0,0.395495 -16336,5213:372,-132,-27,0,0,0.394906 -16337,5213:371,-131,-27,0,0,0.391205 -16338,5213:370,-130,-27,0,0,0.390006 -16339,5212:479,-129,-27,0,0,0.388663 -16340,5212:478,-128,-27,0,0,0.383306 -16341,5212:477,-127,-27,0,0,0.382189 -16342,5212:476,-126,-27,0,0,0.383208 -16343,5212:475,-125,-27,0,0,0.380686 -16344,5212:374,-124,-27,0,0,0.381946 -16345,5212:373,-123,-27,0,0,0.382019 -16346,5212:372,-122,-27,0,0,0.380953 -16347,5212:371,-121,-27,0,0,0.379427 -16348,5212:370,-120,-27,0,0,0.379355 -16349,5211:479,-119,-27,0,0,0.37933 -16350,5211:478,-118,-27,0,0,0.372317 -16351,5211:477,-117,-27,0,0,0.366597 -16352,5211:476,-116,-27,0,0,0.368675 -16353,5211:475,-115,-27,0,0,0.37436 -16354,5211:374,-114,-27,0,0,0.378895 -16355,5211:373,-113,-27,0,0,0.382505 -16356,5211:372,-112,-27,0,0,0.378267 -16357,5211:371,-111,-27,0,0,0.375902 -16358,5211:370,-110,-27,0,0,0.379476 -16359,5210:479,-109,-27,0,0,0.379452 -16360,5210:478,-108,-27,0,0,0.387516 -16361,5210:477,-107,-27,0,0,0.377735 -16362,5210:476,-106,-27,0,0,0.375058 -16363,5210:475,-105,-27,0,0,0.37846 -16364,5210:374,-104,-27,0,0,0.360653 -16365,5210:373,-103,-27,0,0,0.371861 -16366,5210:372,-102,-27,0,0,0.369129 -16367,5210:371,-101,-27,0,0,0.367934 -16368,5210:370,-100,-27,0,0,0.356801 -16369,5209:479,-99,-27,0,0,0.362218 -16370,5209:478,-98,-27,0,0,0.365143 -16371,5209:477,-97,-27,0,0,0.362194 -16372,5209:476,-96,-27,0,0,0.35494 -16373,5209:475,-95,-27,0,0,0.360605 -16374,5209:374,-94,-27,0,0,0.357956 -16375,5209:373,-93,-27,0,0,0.355105 -16376,5209:372,-92,-27,0,0,0.365523 -16377,5209:371,-91,-27,0,0,0.358028 -16378,5209:370,-90,-27,0,0,0.361886 -16379,5208:479,-89,-27,0,0,0.362978 -16380,5208:478,-88,-27,0,0,0.360701 -16381,5208:477,-87,-27,0,0,0.358193 -16382,5208:476,-86,-27,0,0,0.35224 -16383,5208:475,-85,-27,0,0,0.349315 -16384,5208:374,-84,-27,0,0,0.349758 -16385,5208:373,-83,-27,0,0,0.347938 -16386,5208:372,-82,-27,0,0,0.346122 -16387,5208:371,-81,-27,0,0,0.343407 -16388,5208:370,-80,-27,0,0,0.341671 -16389,5207:479,-79,-27,0,0,0.350881 -16390,5207:478,-78,-27,0,0,0.346983 -16391,5207:477,-77,-27,0,0,0.346727 -16392,5207:476,-76,-27,0,0,0.343337 -16393,5207:475,-75,-27,0,0,0.335368 -16394,5207:374,-74,-27,0,0,0.332602 -16395,5207:373,-73,-27,0,0,0.325999 -16396,5205:477,-57,-27,0,0,0.503071 -16397,5205:476,-56,-27,0,0,0.466212 -16398,5205:475,-55,-27,0,0,0.408983 -16399,5205:374,-54,-27,0,0,0.403852 -16400,5205:373,-53,-27,0,0,0.405312 -16401,5205:372,-52,-27,0,0,0.447222 -16402,5205:371,-51,-27,0,0,0.5004 -16403,5205:370,-50,-27,0,0,0.475402 -16404,5204:479,-49,-27,0,0,0.466979 -16405,5204:478,-48,-27,0,0,0.457964 -16406,5204:477,-47,-27,0,0,0.463068 -16407,5204:476,-46,-27,0,0,0.439311 -16408,5204:475,-45,-27,0,0,0.432717 -16409,5204:374,-44,-27,0,0,0.41199 -16410,5204:373,-43,-27,0,0,0.407815 -16411,5204:372,-42,-27,0,0,0.399654 -16412,5204:371,-41,-27,0,0,0.403357 -16413,5204:370,-40,-27,0,0,0.396921 -16414,5203:479,-39,-27,0,0,0.39412 -16415,5203:478,-38,-27,0,0,0.387077 -16416,5203:477,-37,-27,0,0,0.376047 -16417,5203:476,-36,-27,0,0,0.379863 -16418,5203:475,-35,-27,0,0,0.373447 -16419,5203:374,-34,-27,0,0,0.370926 -16420,5203:373,-33,-27,0,0,0.377277 -16421,5203:372,-32,-27,0,0,0.36674 -16422,5203:371,-31,-27,0,0,0.369201 -16423,5203:370,-30,-27,0,0,0.366812 -16424,5202:479,-29,-27,0,0,0.363311 -16425,5202:478,-28,-27,0,0,0.367599 -16426,5202:477,-27,-27,0,0,0.371381 -16427,5202:476,-26,-27,0,0,0.36968 -16428,5202:475,-25,-27,0,0,0.366549 -16429,5202:374,-24,-27,0,0,0.364357 -16430,5202:373,-23,-27,0,0,0.359327 -16431,5202:372,-22,-27,0,0,0.360297 -16432,5202:371,-21,-27,0,0,0.366931 -16433,5202:370,-20,-27,0,0,0.364833 -16434,5201:479,-19,-27,0,0,0.363644 -16435,5201:478,-18,-27,0,0,0.362313 -16436,5201:477,-17,-27,0,0,0.361009 -16437,5201:476,-16,-27,0,0,0.351045 -16438,5201:475,-15,-27,0,0,0.348288 -16439,5201:374,-14,-27,0,0,0.355364 -16440,5201:373,-13,-27,0,0,0.354964 -16441,5201:372,-12,-27,0,0,0.365071 -16442,5201:371,-11,-27,0,0,0.351981 -16443,5201:370,-10,-27,0,0,0.36748 -16444,5200:479,-9,-27,0,0,0.357296 -16445,5200:478,-8,-27,0,0,0.362883 -16446,5200:477,-7,-27,0,0,0.361483 -16447,5200:476,-6,-27,0,0,0.363121 -16448,5200:475,-5,-27,0,0,0.362527 -16449,5200:374,-4,-27,0,0,0.36108 -16450,5200:373,-3,-27,0,0,0.354446 -16451,5200:372,-2,-27,0,0,0.352497 -16452,5200:371,-1,-27,0,0,0.347589 -16453,3200:371,0,-27,0,0,0.352451 -16454,3200:371,1,-27,0,0,0.354822 -16455,3200:372,2,-27,0,0,0.35928 -16456,3200:373,3,-27,0,0,0.358807 -16457,3200:374,4,-27,0,0,0.354658 -16458,3200:475,5,-27,0,0,0.353859 -16459,3200:476,6,-27,0,0,0.358902 -16460,3200:477,7,-27,0,0,0.362265 -16461,3200:478,8,-27,0,0,0.37424 -16462,3200:479,9,-27,0,0,0.378847 -16463,3201:370,10,-27,0,0,0.377977 -16464,3201:371,11,-27,0,0,0.367647 -16465,3201:372,12,-27,0,0,0.39233 -16466,3201:373,13,-27,0,0,0.396724 -16467,3201:374,14,-27,0,0,0.391082 -16468,3201:475,15,-27,0,0,0.393213 -16469,3201:476,16,-27,0,0,0.400196 -16470,3201:477,17,-27,0,0,0.397216 -16471,3201:478,18,-27,0,0,0.423761 -16472,3201:479,19,-27,0,0,0.424364 -16473,3202:370,20,-27,0,0,0.41513 -16474,3202:371,21,-27,0,0,0.416378 -16475,3202:372,22,-27,0,0,0.438122 -16476,3202:373,23,-27,0,0,0.48507 -16477,3202:374,24,-27,0,0,0.492977 -16478,3202:475,25,-27,0,0,0.487842 -16479,3202:476,26,-27,0,0,0.480426 -16480,3202:477,27,-27,0,0,0.482042 -16481,3202:478,28,-27,0,0,0.488355 -16482,3202:479,29,-27,0,0,0.452536 -16483,3203:370,30,-27,0,0,0.444049 -16484,3203:371,31,-27,0,0,0.416428 -16485,3203:372,32,-27,0,0,0.413609 -16486,3203:373,33,-27,0,0,0.411941 -16487,3203:374,34,-27,0,0,0.409578 -16488,3203:475,35,-27,0,0,0.418427 -16489,3203:476,36,-27,0,0,0.408262 -16490,3203:477,37,-27,0,0,0.39958 -16491,3203:478,38,-27,0,0,0.399974 -16492,3203:479,39,-27,0,0,0.404569 -16493,3204:370,40,-27,0,0,0.394488 -16494,3204:371,41,-27,0,0,0.38776 -16495,3204:372,42,-27,0,0,0.387247 -16496,3204:373,43,-27,0,0,0.386687 -16497,3204:374,44,-27,0,0,0.386176 -16498,3204:475,45,-27,0,0,0.386882 -16499,3204:476,46,-27,0,0,0.38384 -16500,3204:477,47,-27,0,0,0.379282 -16501,3204:478,48,-27,0,0,0.377301 -16502,3204:479,49,-27,0,0,0.374649 -16503,3205:370,50,-27,0,0,0.372509 -16504,3205:371,51,-27,0,0,0.37047 -16505,3205:372,52,-27,0,0,0.373374 -16506,3205:373,53,-27,0,0,0.366549 -16507,3205:374,54,-27,0,0,0.366406 -16508,3205:475,55,-27,0,0,0.362503 -16509,3205:476,56,-27,0,0,0.36255 -16510,3205:477,57,-27,0,0,0.3621 -16511,3205:478,58,-27,0,0,0.363525 -16512,3205:479,59,-27,0,0,0.368244 -16513,3206:370,60,-27,0,0,0.367982 -16514,3206:371,61,-27,0,0,0.369488 -16515,3206:372,62,-27,0,0,0.367671 -16516,3206:373,63,-27,0,0,0.369512 -16517,3206:374,64,-27,0,0,0.369943 -16518,3206:475,65,-27,0,0,0.369488 -16519,3206:476,66,-27,0,0,0.370926 -16520,3206:477,67,-27,0,0,0.36581 -16521,3206:478,68,-27,0,0,0.369225 -16522,3206:479,69,-27,0,0,0.365523 -16523,3207:370,70,-27,0,0,0.366096 -16524,3207:371,71,-27,0,0,0.367026 -16525,3207:372,72,-27,0,0,0.364691 -16526,3207:374,74,-27,0,0,0.372437 -16527,3207:475,75,-27,0,0,0.371357 -16528,3207:476,76,-27,0,0,0.377084 -16529,3207:477,77,-27,0,0,0.364072 -16530,3207:478,78,-27,0,0,0.358571 -16531,3207:479,79,-27,0,0,0.362289 -16532,3208:370,80,-27,0,0,0.359304 -16533,3208:371,81,-27,0,0,0.358594 -16534,3208:372,82,-27,0,0,0.363263 -16535,3208:373,83,-27,0,0,0.362337 -16536,3208:374,84,-27,0,0,0.357886 -16537,3208:475,85,-27,0,0,0.354681 -16538,3208:476,86,-27,0,0,0.355882 -16539,3208:477,87,-27,0,0,0.356659 -16540,3208:478,88,-27,0,0,0.354164 -16541,3208:479,89,-27,0,0,0.348242 -16542,3209:370,90,-27,0,0,0.350179 -16543,3209:371,91,-27,0,0,0.350974 -16544,3209:372,92,-27,0,0,0.349758 -16545,3209:373,93,-27,0,0,0.349782 -16546,3209:374,94,-27,0,0,0.344473 -16547,3209:475,95,-27,0,0,0.342319 -16548,3209:476,96,-27,0,0,0.343268 -16549,3209:477,97,-27,0,0,0.344914 -16550,3209:478,98,-27,0,0,0.344032 -16551,3209:479,99,-27,0,0,0.344195 -16552,3210:370,100,-27,0,0,0.345588 -16553,3210:371,101,-27,0,0,0.346029 -16554,3210:372,102,-27,0,0,0.339686 -16555,3210:373,103,-27,0,0,0.340217 -16556,3210:374,104,-27,0,0,0.339134 -16557,3210:475,105,-27,0,0,0.347379 -16558,3210:476,106,-27,0,0,0.350437 -16559,3210:477,107,-27,0,0,0.355764 -16560,3210:478,108,-27,0,0,0.349642 -16561,3210:479,109,-27,0,0,0.361269 -16562,3211:370,110,-27,0,0,0.377132 -16563,3211:371,111,-27,0,0,0.381267 -16564,3211:372,112,-27,0,0,0.38105 -16565,3211:373,113,-27,0,0,0.399086 -16566,3211:374,114,-27,0,0,0.424841 -16567,3211:475,115,-27,0,0,0.440071 -16568,3211:476,116,-27,0,0,0.437338 -16569,3211:477,117,-27,0,0,0.438299 -16570,3211:478,118,-27,0,0,0.430852 -16571,3211:479,119,-27,0,0,0.418802 -16572,3212:370,120,-27,0,0,0.396674 -16573,3212:371,121,-27,0,0,0.372461 -16574,3212:372,122,-27,0,0,0.38316 -16575,3212:373,123,-27,0,0,0.376166 -16576,3212:374,124,-27,0,0,0.369608 -16577,3212:475,125,-27,0,0,0.370063 -16578,3212:476,126,-27,0,0,0.368507 -16579,3212:477,127,-27,0,0,0.36901 -16580,3212:478,128,-27,0,0,0.365833 -16581,3212:479,129,-27,0,0,0.36612 -16582,3213:370,130,-27,0,0,0.373182 -16583,3213:371,131,-27,0,0,0.372581 -16584,3213:372,132,-27,0,0,0.368053 -16585,3213:373,133,-27,0,0,0.385932 -16586,3213:374,134,-27,0,0,0.389517 -16587,3213:475,135,-27,0,0,0.389102 -16588,3213:476,136,-27,0,0,0.393262 -16589,3213:477,137,-27,0,0,0.421079 -16590,3213:478,138,-27,0,0,0.412364 -16591,3215:371,151,-27,0,0,0.495108 -16592,3215:372,152,-27,0,0,0.478042 -16593,3215:373,153,-27,0,0,0.485942 -16594,3215:374,154,-27,0,0,0.510596 -16595,3215:475,155,-27,0,0,0.528828 -16596,3215:476,156,-27,0,0,0.502044 -16597,3215:477,157,-27,0,0,0.50302 -16598,3215:478,158,-27,0,0,0.475171 -16599,3215:479,159,-27,0,0,0.484018 -16600,3216:370,160,-27,0,0,0.50284 -16601,3216:371,161,-27,0,0,0.504869 -16602,3216:372,162,-27,0,0,0.450959 -16603,3216:373,163,-27,0,0,0.464985 -16604,3216:374,164,-27,0,0,0.438527 -16605,3216:475,165,-27,0,0,0.412339 -16606,3216:476,166,-27,0,0,0.41341 -16607,3216:477,167,-27,0,0,0.40866 -16608,3216:478,168,-27,0,0,0.402813 -16609,3216:479,169,-27,0,0,0.397437 -16610,3217:370,170,-27,0,0,0.391278 -16611,3217:371,171,-27,0,0,0.390421 -16612,3217:372,172,-27,0,0,0.38316 -16613,3217:373,173,-27,0,0,0.382505 -16614,3217:475,175,-27,0,0,0.397511 -16615,3217:476,176,-27,0,0,0.410647 -16616,3217:477,177,-27,0,0,0.406204 -16617,3217:478,178,-27,0,0,0.401085 -16618,3217:479,179,-27,0,0,0.397265 -16619,3218:370,180,-27,0,0,0.391229 -16620,5218:360,-180,-26,0,0,0.410747 -16621,5217:469,-179,-26,0,0,0.411617 -16622,5217:468,-178,-26,0,0,0.412837 -16623,5217:467,-177,-26,0,0,0.415155 -16624,5217:466,-176,-26,0,0,0.414307 -16625,5217:465,-175,-26,0,0,0.408734 -16626,5217:364,-174,-26,0,0,0.406352 -16627,5217:363,-173,-26,0,0,0.413111 -16628,5217:362,-172,-26,0,0,0.415454 -16629,5217:361,-171,-26,0,0,0.417427 -16630,5217:360,-170,-26,0,0,0.412638 -16631,5216:469,-169,-26,0,0,0.414157 -16632,5216:468,-168,-26,0,0,0.407146 -16633,5216:467,-167,-26,0,0,0.407047 -16634,5216:466,-166,-26,0,0,0.403802 -16635,5216:465,-165,-26,0,0,0.400024 -16636,5216:364,-164,-26,0,0,0.401479 -16637,5216:363,-163,-26,0,0,0.405485 -16638,5216:362,-162,-26,0,0,0.405956 -16639,5216:361,-161,-26,0,0,0.403678 -16640,5216:360,-160,-26,0,0,0.404717 -16641,5215:469,-159,-26,0,0,0.404965 -16642,5215:468,-158,-26,0,0,0.403134 -16643,5215:467,-157,-26,0,0,0.404445 -16644,5215:466,-156,-26,0,0,0.407393 -16645,5215:465,-155,-26,0,0,0.408958 -16646,5215:364,-154,-26,0,0,0.409802 -16647,5215:363,-153,-26,0,0,0.414831 -16648,5215:362,-152,-26,0,0,0.415554 -16649,5215:361,-151,-26,0,0,0.417028 -16650,5215:360,-150,-26,0,0,0.415679 -16651,5214:469,-149,-26,0,0,0.415804 -16652,5214:468,-148,-26,0,0,0.411941 -16653,5214:467,-147,-26,0,0,0.409082 -16654,5214:466,-146,-26,0,0,0.411891 -16655,5214:465,-145,-26,0,0,0.411518 -16656,5214:364,-144,-26,0,0,0.411841 -16657,5214:363,-143,-26,0,0,0.408014 -16658,5214:362,-142,-26,0,0,0.403332 -16659,5214:361,-141,-26,0,0,0.403407 -16660,5214:360,-140,-26,0,0,0.404916 -16661,5213:469,-139,-26,0,0,0.403777 -16662,5213:468,-138,-26,0,0,0.407418 -16663,5213:467,-137,-26,0,0,0.410846 -16664,5213:466,-136,-26,0,0,0.411717 -16665,5213:465,-135,-26,0,0,0.41229 -16666,5213:364,-134,-26,0,0,0.411916 -16667,5213:363,-133,-26,0,0,0.408138 -16668,5213:362,-132,-26,0,0,0.406352 -16669,5213:361,-131,-26,0,0,0.405758 -16670,5213:360,-130,-26,0,0,0.40306 -16671,5212:469,-129,-26,0,0,0.399086 -16672,5212:468,-128,-26,0,0,0.393949 -16673,5212:467,-127,-26,0,0,0.393507 -16674,5212:466,-126,-26,0,0,0.396748 -16675,5212:465,-125,-26,0,0,0.397462 -16676,5212:364,-124,-26,0,0,0.396576 -16677,5212:363,-123,-26,0,0,0.394979 -16678,5212:362,-122,-26,0,0,0.393605 -16679,5212:361,-121,-26,0,0,0.392135 -16680,5212:360,-120,-26,0,0,0.391645 -16681,5211:469,-119,-26,0,0,0.391816 -16682,5211:468,-118,-26,0,0,0.389981 -16683,5211:467,-117,-26,0,0,0.38793 -16684,5211:466,-116,-26,0,0,0.391523 -16685,5211:465,-115,-26,0,0,0.395814 -16686,5211:364,-114,-26,0,0,0.395053 -16687,5211:363,-113,-26,0,0,0.392526 -16688,5211:362,-112,-26,0,0,0.395667 -16689,5211:361,-111,-26,0,0,0.394685 -16690,5211:360,-110,-26,0,0,0.39439 -16691,5210:469,-109,-26,0,0,0.397068 -16692,5210:468,-108,-26,0,0,0.399629 -16693,5210:467,-107,-26,0,0,0.397732 -16694,5210:466,-106,-26,0,0,0.392649 -16695,5210:465,-105,-26,0,0,0.392943 -16696,5210:364,-104,-26,0,0,0.397634 -16697,5210:363,-103,-26,0,0,0.407865 -16698,5210:362,-102,-26,0,0,0.39788 -16699,5210:361,-101,-26,0,0,0.384472 -16700,5210:360,-100,-26,0,0,0.38859 -16701,5209:469,-99,-26,0,0,0.384132 -16702,5209:468,-98,-26,0,0,0.37718 -16703,5209:467,-97,-26,0,0,0.378871 -16704,5209:466,-96,-26,0,0,0.380105 -16705,5209:465,-95,-26,0,0,0.379379 -16706,5209:364,-94,-26,0,0,0.373711 -16707,5209:363,-93,-26,0,0,0.380928 -16708,5209:362,-92,-26,0,0,0.38054 -16709,5209:361,-91,-26,0,0,0.378919 -16710,5209:360,-90,-26,0,0,0.381849 -16711,5208:469,-89,-26,0,0,0.378122 -16712,5208:468,-88,-26,0,0,0.379379 -16713,5208:467,-87,-26,0,0,0.373686 -16714,5208:466,-86,-26,0,0,0.370135 -16715,5208:465,-85,-26,0,0,0.369129 -16716,5208:364,-84,-26,0,0,0.365381 -16717,5208:363,-83,-26,0,0,0.365357 -16718,5208:362,-82,-26,0,0,0.363691 -16719,5208:361,-81,-26,0,0,0.362123 -16720,5208:360,-80,-26,0,0,0.358311 -16721,5207:469,-79,-26,0,0,0.365286 -16722,5207:468,-78,-26,0,0,0.366573 -16723,5207:467,-77,-26,0,0,0.364404 -16724,5207:466,-76,-26,0,0,0.35567 -16725,5207:465,-75,-26,0,0,0.348847 -16726,5207:364,-74,-26,0,0,0.343824 -16727,5207:363,-73,-26,0,0,0.339641 -16728,5207:362,-72,-26,0,0,0.306694 -16729,5205:363,-53,-26,0,0,0.437768 -16730,5205:362,-52,-26,0,0,0.431079 -16731,5205:361,-51,-26,0,0,0.530696 -16732,5205:360,-50,-26,0,0,0.541683 -16733,5204:469,-49,-26,0,0,0.512341 -16734,5204:468,-48,-26,0,0,0.483478 -16735,5204:467,-47,-26,0,0,0.496753 -16736,5204:466,-46,-26,0,0,0.472507 -16737,5204:465,-45,-26,0,0,0.461638 -16738,5204:364,-44,-26,0,0,0.426624 -16739,5204:363,-43,-26,0,0,0.42846 -16740,5204:362,-42,-26,0,0,0.429014 -16741,5204:361,-41,-26,0,0,0.417752 -16742,5204:360,-40,-26,0,0,0.408485 -16743,5203:469,-39,-26,0,0,0.41092 -16744,5203:468,-38,-26,0,0,0.395077 -16745,5203:467,-37,-26,0,0,0.401479 -16746,5203:466,-36,-26,0,0,0.391792 -16747,5203:465,-35,-26,0,0,0.393458 -16748,5203:364,-34,-26,0,0,0.391498 -16749,5203:363,-33,-26,0,0,0.381267 -16750,5203:362,-32,-26,0,0,0.38054 -16751,5203:361,-31,-26,0,0,0.382165 -16752,5203:360,-30,-26,0,0,0.386638 -16753,5202:469,-29,-26,0,0,0.382577 -16754,5202:468,-28,-26,0,0,0.381631 -16755,5202:467,-27,-26,0,0,0.389835 -16756,5202:466,-26,-26,0,0,0.391473 -16757,5202:465,-25,-26,0,0,0.384204 -16758,5202:364,-24,-26,0,0,0.3892 -16759,5202:363,-23,-26,0,0,0.393311 -16760,5202:362,-22,-26,0,0,0.389933 -16761,5202:361,-21,-26,0,0,0.388003 -16762,5202:360,-20,-26,0,0,0.383111 -16763,5201:469,-19,-26,0,0,0.38134 -16764,5201:468,-18,-26,0,0,0.375324 -16765,5201:467,-17,-26,0,0,0.377808 -16766,5201:466,-16,-26,0,0,0.373903 -16767,5201:465,-15,-26,0,0,0.381316 -16768,5201:364,-14,-26,0,0,0.37477 -16769,5201:363,-13,-26,0,0,0.372797 -16770,5201:362,-12,-26,0,0,0.383694 -16771,5201:361,-11,-26,0,0,0.372293 -16772,5201:360,-10,-26,0,0,0.383791 -16773,5200:469,-9,-26,0,0,0.378654 -16774,5200:468,-8,-26,0,0,0.383354 -16775,5200:467,-7,-26,0,0,0.384132 -16776,5200:466,-6,-26,0,0,0.38025 -16777,5200:465,-5,-26,0,0,0.382674 -16778,5200:364,-4,-26,0,0,0.383549 -16779,5200:363,-3,-26,0,0,0.387711 -16780,5200:362,-2,-26,0,0,0.384083 -16781,5200:361,-1,-26,0,0,0.373278 -16782,3200:361,0,-26,0,0,0.372053 -16783,3200:361,1,-26,0,0,0.37875 -16784,3200:362,2,-26,0,0,0.377905 -16785,3200:363,3,-26,0,0,0.377301 -16786,3200:364,4,-26,0,0,0.376674 -16787,3200:465,5,-26,0,0,0.377735 -16788,3200:466,6,-26,0,0,0.386029 -16789,3200:467,7,-26,0,0,0.387833 -16790,3200:468,8,-26,0,0,0.383962 -16791,3200:469,9,-26,0,0,0.38042 -16792,3201:360,10,-26,0,0,0.379137 -16793,3201:361,11,-26,0,0,0.37933 -16794,3201:362,12,-26,0,0,0.390031 -16795,3201:363,13,-26,0,0,0.402467 -16796,3201:364,14,-26,0,0,0.401356 -16797,3201:465,15,-26,0,0,0.401232 -16798,3201:466,16,-26,0,0,0.407096 -16799,3201:467,17,-26,0,0,0.41518 -16800,3201:468,18,-26,0,0,0.393213 -16801,3202:465,25,-26,0,0,0.421631 -16802,3202:466,26,-26,0,0,0.463452 -16803,3202:467,27,-26,0,0,0.520243 -16804,3202:468,28,-26,0,0,0.505896 -16805,3202:469,29,-26,0,0,0.502865 -16806,3203:360,30,-26,0,0,0.49927 -16807,3203:361,31,-26,0,0,0.451314 -16808,3203:362,32,-26,0,0,0.446232 -16809,3203:363,33,-26,0,0,0.444404 -16810,3203:364,34,-26,0,0,0.439185 -17135,3204:457,47,-25,0,0,0.42133 -16811,3203:465,35,-26,0,0,0.435746 -16812,3203:466,36,-26,0,0,0.427479 -16813,3203:467,37,-26,0,0,0.427781 -16814,3203:468,38,-26,0,0,0.427755 -16815,3203:469,39,-26,0,0,0.426373 -16816,3204:360,40,-26,0,0,0.419878 -16817,3204:361,41,-26,0,0,0.411393 -16818,3204:362,42,-26,0,0,0.407791 -16819,3204:363,43,-26,0,0,0.405634 -16820,3204:364,44,-26,0,0,0.408585 -16821,3204:465,45,-26,0,0,0.40861 -16822,3204:466,46,-26,0,0,0.401381 -16823,3204:467,47,-26,0,0,0.397019 -16824,3204:468,48,-26,0,0,0.400368 -16825,3204:469,49,-26,0,0,0.393409 -16826,3205:360,50,-26,0,0,0.393654 -16827,3205:361,51,-26,0,0,0.391473 -16828,3205:362,52,-26,0,0,0.390739 -16829,3205:363,53,-26,0,0,0.392919 -16830,3205:364,54,-26,0,0,0.390837 -16831,3205:465,55,-26,0,0,0.387686 -16832,3205:466,56,-26,0,0,0.383063 -16833,3205:467,57,-26,0,0,0.38134 -16834,3205:468,58,-26,0,0,0.382505 -16835,3205:469,59,-26,0,0,0.386395 -16836,3206:360,60,-26,0,0,0.393654 -16837,3206:361,61,-26,0,0,0.395962 -16838,3206:362,62,-26,0,0,0.394979 -16839,3206:363,63,-26,0,0,0.391498 -16840,3206:364,64,-26,0,0,0.386054 -16841,3206:465,65,-26,0,0,0.394194 -16842,3206:466,66,-26,0,0,0.391718 -16843,3206:467,67,-26,0,0,0.388053 -16844,3206:468,68,-26,0,0,0.388663 -16845,3206:469,69,-26,0,0,0.389053 -16846,3207:360,70,-26,0,0,0.386516 -16847,3207:361,71,-26,0,0,0.387589 -16848,3207:362,72,-26,0,0,0.390275 -16849,3207:364,74,-26,0,0,0.395962 -16850,3207:465,75,-26,0,0,0.401306 -16851,3207:466,76,-26,0,0,0.40442 -16852,3207:467,77,-26,0,0,0.398594 -16853,3207:468,78,-26,0,0,0.398544 -16854,3207:469,79,-26,0,0,0.396551 -16855,3208:360,80,-26,0,0,0.398027 -16856,3208:361,81,-26,0,0,0.396404 -16857,3208:362,82,-26,0,0,0.39189 -16858,3208:363,83,-26,0,0,0.387199 -16859,3208:364,84,-26,0,0,0.387077 -16860,3208:465,85,-26,0,0,0.388394 -16861,3208:466,86,-26,0,0,0.386492 -16862,3208:467,87,-26,0,0,0.387077 -16863,3208:468,88,-26,0,0,0.383403 -16864,3208:469,89,-26,0,0,0.379185 -16865,3209:360,90,-26,0,0,0.377832 -16866,3209:361,91,-26,0,0,0.376119 -16867,3209:362,92,-26,0,0,0.376022 -16868,3209:363,93,-26,0,0,0.371405 -16869,3209:364,94,-26,0,0,0.36834 -16870,3209:465,95,-26,0,0,0.371309 -16871,3209:466,96,-26,0,0,0.37424 -16872,3209:467,97,-26,0,0,0.368005 -16873,3209:468,98,-26,0,0,0.363668 -16874,3209:469,99,-26,0,0,0.365452 -16875,3210:360,100,-26,0,0,0.3621 -16876,3210:361,101,-26,0,0,0.363311 -16877,3210:362,102,-26,0,0,0.369106 -16878,3210:363,103,-26,0,0,0.366287 -16879,3210:364,104,-26,0,0,0.357248 -16880,3210:465,105,-26,0,0,0.355622 -16881,3210:466,106,-26,0,0,0.364691 -16882,3210:467,107,-26,0,0,0.373879 -16883,3210:468,108,-26,0,0,0.381122 -16884,3210:469,109,-26,0,0,0.389908 -16885,3211:360,110,-26,0,0,0.400689 -16886,3211:361,111,-26,0,0,0.407146 -16887,3211:362,112,-26,0,0,0.412663 -16888,3211:363,113,-26,0,0,0.417627 -16889,3211:364,114,-26,0,0,0.421355 -16890,3211:465,115,-26,0,0,0.449992 -16891,3212:360,120,-26,0,0,0.419527 -16892,3212:361,121,-26,0,0,0.420328 -16893,3212:362,122,-26,0,0,0.420628 -16894,3212:363,123,-26,0,0,0.415904 -16895,3212:364,124,-26,0,0,0.403258 -16896,3212:465,125,-26,0,0,0.390446 -16897,3212:466,126,-26,0,0,0.372533 -16898,3212:467,127,-26,0,0,0.37323 -16899,3212:468,128,-26,0,0,0.383888 -16900,3212:469,129,-26,0,0,0.394464 -16901,3213:360,130,-26,0,0,0.398988 -16902,3213:361,131,-26,0,0,0.398569 -16903,3213:362,132,-26,0,0,0.403283 -16904,3213:363,133,-26,0,0,0.40301 -16905,3213:364,134,-26,0,0,0.411319 -16906,3213:465,135,-26,0,0,0.422457 -16907,3213:467,137,-26,0,0,0.449255 -16908,3215:362,152,-26,0,0,0.494595 -16909,3215:363,153,-26,0,0,0.498294 -16910,3215:364,154,-26,0,0,0.5614 -16911,3215:465,155,-26,0,0,0.552883 -16912,3215:466,156,-26,0,0,0.560084 -16913,3215:467,157,-26,0,0,0.529186 -16914,3215:468,158,-26,0,0,0.5365 -16915,3215:469,159,-26,0,0,0.531617 -16916,3216:360,160,-26,0,0,0.515678 -16917,3216:361,161,-26,0,0,0.50849 -16918,3216:362,162,-26,0,0,0.483376 -16919,3216:363,163,-26,0,0,0.488688 -16920,3216:364,164,-26,0,0,0.467797 -16921,3216:465,165,-26,0,0,0.444734 -16922,3216:466,166,-26,0,0,0.448975 -16923,3216:467,167,-26,0,0,0.445648 -16924,3216:468,168,-26,0,0,0.422633 -16925,3216:469,169,-26,0,0,0.411493 -16926,3217:360,170,-26,0,0,0.405287 -16927,3217:361,171,-26,0,0,0.40353 -16928,3217:362,172,-26,0,0,0.394022 -16929,3217:363,173,-26,0,0,0.401454 -16930,3217:364,174,-26,0,0,0.434079 -16931,3217:465,175,-26,0,0,0.423938 -16932,3217:466,176,-26,0,0,0.42158 -16933,3217:467,177,-26,0,0,0.407096 -16934,3217:468,178,-26,0,0,0.419427 -16935,3217:469,179,-26,0,0,0.417527 -16936,3218:360,180,-26,0,0,0.410747 -16937,5218:350,-180,-25,0,0,0.427529 -16938,5217:459,-179,-25,0,0,0.428234 -16939,5217:458,-178,-25,0,0,0.43754 -16940,5217:457,-177,-25,0,0,0.438653 -16941,5217:456,-176,-25,0,0,0.435014 -16942,5217:455,-175,-25,0,0,0.435897 -16943,5217:354,-174,-25,0,0,0.433903 -16944,5217:353,-173,-25,0,0,0.433676 -16945,5217:352,-172,-25,0,0,0.434281 -16946,5217:351,-171,-25,0,0,0.431557 -16947,5217:350,-170,-25,0,0,0.429895 -16948,5216:459,-169,-25,0,0,0.425444 -16949,5216:458,-168,-25,0,0,0.423435 -16950,5216:457,-167,-25,0,0,0.422433 -16951,5216:456,-166,-25,0,0,0.421831 -16952,5216:455,-165,-25,0,0,0.417677 -16953,5216:354,-164,-25,0,0,0.416128 -16954,5216:353,-163,-25,0,0,0.420379 -16955,5216:352,-162,-25,0,0,0.42138 -16956,5216:351,-161,-25,0,0,0.419327 -16957,5216:350,-160,-25,0,0,0.42123 -16958,5215:459,-159,-25,0,0,0.423812 -16959,5215:458,-158,-25,0,0,0.42103 -16960,5215:457,-157,-25,0,0,0.418327 -16961,5215:456,-156,-25,0,0,0.420078 -16962,5215:455,-155,-25,0,0,0.423787 -16963,5215:354,-154,-25,0,0,0.429064 -16964,5215:353,-153,-25,0,0,0.434231 -16965,5215:352,-152,-25,0,0,0.432742 -16966,5215:351,-151,-25,0,0,0.440146 -16967,5215:350,-150,-25,0,0,0.437389 -16968,5214:459,-149,-25,0,0,0.434408 -16969,5214:458,-148,-25,0,0,0.434281 -16970,5214:457,-147,-25,0,0,0.425167 -16971,5214:456,-146,-25,0,0,0.431255 -16972,5214:455,-145,-25,0,0,0.429391 -16973,5214:354,-144,-25,0,0,0.432641 -16974,5214:353,-143,-25,0,0,0.425845 -16975,5214:352,-142,-25,0,0,0.422232 -16976,5214:351,-141,-25,0,0,0.421881 -16977,5214:350,-140,-25,0,0,0.417902 -16978,5213:459,-139,-25,0,0,0.420379 -16979,5213:458,-138,-25,0,0,0.425192 -16980,5213:457,-137,-25,0,0,0.430953 -16981,5213:456,-136,-25,0,0,0.426097 -16982,5213:455,-135,-25,0,0,0.427303 -16983,5213:354,-134,-25,0,0,0.425468 -16984,5213:353,-133,-25,0,0,0.427629 -16985,5213:352,-132,-25,0,0,0.427932 -16986,5213:351,-131,-25,0,0,0.422934 -16987,5213:350,-130,-25,0,0,0.416553 -16988,5212:459,-129,-25,0,0,0.419903 -16989,5212:458,-128,-25,0,0,0.419828 -16990,5212:457,-127,-25,0,0,0.416778 -16991,5212:456,-126,-25,0,0,0.417802 -16992,5212:455,-125,-25,0,0,0.417902 -16993,5212:354,-124,-25,0,0,0.418226 -16994,5212:353,-123,-25,0,0,0.416103 -16995,5212:352,-122,-25,0,0,0.410722 -16996,5212:351,-121,-25,0,0,0.406055 -16997,5212:350,-120,-25,0,0,0.405659 -16998,5211:459,-119,-25,0,0,0.410448 -16999,5211:458,-118,-25,0,0,0.407543 -17000,5211:457,-117,-25,0,0,0.418127 -17001,5211:456,-116,-25,0,0,0.417877 -17002,5211:455,-115,-25,0,0,0.414357 -17003,5211:354,-114,-25,0,0,0.411021 -17004,5211:353,-113,-25,0,0,0.405238 -17005,5211:352,-112,-25,0,0,0.413884 -17006,5211:351,-111,-25,0,0,0.415704 -17007,5211:350,-110,-25,0,0,0.40722 -17008,5210:459,-109,-25,0,0,0.407171 -17009,5210:458,-108,-25,0,0,0.409802 -17010,5210:457,-107,-25,0,0,0.420954 -17011,5210:456,-106,-25,0,0,0.425142 -17012,5210:455,-105,-25,0,0,0.420879 -17013,5210:354,-104,-25,0,0,0.419503 -17014,5210:353,-103,-25,0,0,0.423736 -17015,5210:352,-102,-25,0,0,0.42113 -17016,5210:351,-101,-25,0,0,0.414706 -17017,5210:350,-100,-25,0,0,0.406898 -17018,5209:459,-99,-25,0,0,0.400886 -17019,5209:458,-98,-25,0,0,0.401331 -17020,5209:457,-97,-25,0,0,0.400418 -17021,5209:456,-96,-25,0,0,0.396969 -17022,5209:455,-95,-25,0,0,0.397265 -17023,5209:354,-94,-25,0,0,0.398348 -17024,5209:353,-93,-25,0,0,0.399235 -17025,5209:352,-92,-25,0,0,0.401578 -17026,5209:351,-91,-25,0,0,0.401751 -17027,5209:350,-90,-25,0,0,0.399974 -17028,5208:459,-89,-25,0,0,0.393409 -17029,5208:458,-88,-25,0,0,0.390373 -17030,5208:457,-87,-25,0,0,0.387589 -17031,5208:456,-86,-25,0,0,0.386127 -17032,5208:455,-85,-25,0,0,0.385907 -17033,5208:354,-84,-25,0,0,0.382674 -17034,5208:353,-83,-25,0,0,0.378219 -17035,5208:352,-82,-25,0,0,0.378508 -17036,5208:351,-81,-25,0,0,0.378242 -17037,5208:350,-80,-25,0,0,0.381825 -17038,5207:459,-79,-25,0,0,0.38042 -17039,5207:458,-78,-25,0,0,0.379282 -17040,5207:457,-77,-25,0,0,0.376601 -17041,5207:456,-76,-25,0,0,0.367241 -17042,5207:455,-75,-25,0,0,0.361838 -17043,5207:354,-74,-25,0,0,0.350951 -17044,5207:353,-73,-25,0,0,0.351372 -17045,5207:352,-72,-25,0,0,0.344798 -17046,5205:352,-52,-25,0,0,0.480298 -17047,5205:351,-51,-25,0,0,0.496136 -17048,5205:350,-50,-25,0,0,0.561274 -17049,5204:459,-49,-25,0,0,0.513445 -17050,5204:458,-48,-25,0,0,0.509722 -17051,5204:457,-47,-25,0,0,0.50546 -17052,5204:456,-46,-25,0,0,0.473147 -17053,5204:455,-45,-25,0,0,0.456893 -17054,5204:354,-44,-25,0,0,0.447349 -17055,5204:353,-43,-25,0,0,0.444683 -17056,5204:352,-42,-25,0,0,0.439969 -17057,5204:351,-41,-25,0,0,0.43249 -17058,5204:350,-40,-25,0,0,0.438704 -17059,5203:459,-39,-25,0,0,0.432767 -17060,5203:458,-38,-25,0,0,0.417253 -17061,5203:457,-37,-25,0,0,0.425218 -17062,5203:456,-36,-25,0,0,0.422107 -17063,5203:455,-35,-25,0,0,0.426197 -17064,5203:354,-34,-25,0,0,0.414931 -17065,5203:353,-33,-25,0,0,0.416378 -17066,5203:352,-32,-25,0,0,0.402739 -17067,5203:351,-31,-25,0,0,0.41092 -17068,5203:350,-30,-25,0,0,0.417527 -17069,5202:459,-29,-25,0,0,0.415954 -17070,5202:458,-28,-25,0,0,0.404173 -17071,5202:457,-27,-25,0,0,0.41092 -17072,5202:456,-26,-25,0,0,0.417602 -17073,5202:455,-25,-25,0,0,0.411244 -17074,5202:354,-24,-25,0,0,0.403753 -17075,5202:353,-23,-25,0,0,0.415305 -17076,5202:352,-22,-25,0,0,0.404767 -17077,5202:351,-21,-25,0,0,0.397536 -17078,5202:350,-20,-25,0,0,0.405659 -17079,5201:459,-19,-25,0,0,0.407939 -17080,5201:458,-18,-25,0,0,0.401924 -17081,5201:457,-17,-25,0,0,0.403209 -17082,5201:456,-16,-25,0,0,0.403926 -17083,5201:455,-15,-25,0,0,0.400467 -17084,5201:354,-14,-25,0,0,0.401899 -17085,5201:353,-13,-25,0,0,0.403653 -17086,5201:352,-12,-25,0,0,0.390055 -17087,5201:351,-11,-25,0,0,0.400368 -17088,5201:350,-10,-25,0,0,0.405733 -17089,5200:459,-9,-25,0,0,0.401652 -17090,5200:458,-8,-25,0,0,0.400961 -17091,5200:457,-7,-25,0,0,0.408361 -17092,5200:456,-6,-25,0,0,0.404223 -17093,5200:455,-5,-25,0,0,0.403728 -17094,5200:354,-4,-25,0,0,0.406055 -17095,5200:353,-3,-25,0,0,0.404297 -17096,5200:352,-2,-25,0,0,0.400788 -17097,5200:351,-1,-25,0,0,0.399185 -17098,3200:351,0,-25,0,0,0.395912 -17099,3200:351,1,-25,0,0,0.393703 -17100,3200:352,2,-25,0,0,0.393728 -17101,3200:353,3,-25,0,0,0.393115 -17102,3200:354,4,-25,0,0,0.394316 -17103,3200:455,5,-25,0,0,0.392085 -17104,3200:456,6,-25,0,0,0.394856 -17105,3200:457,7,-25,0,0,0.397634 -17106,3200:458,8,-25,0,0,0.396798 -17107,3200:459,9,-25,0,0,0.400443 -17108,3201:350,10,-25,0,0,0.406824 -17109,3201:351,11,-25,0,0,0.408833 -17110,3201:352,12,-25,0,0,0.40933 -17111,3201:353,13,-25,0,0,0.412688 -17112,3201:354,14,-25,0,0,0.415679 -17113,3201:455,15,-25,0,0,0.418102 -17114,3201:456,16,-25,0,0,0.426197 -17115,3201:457,17,-25,0,0,0.419652 -17116,3202:458,28,-25,0,0,0.496778 -17117,3202:459,29,-25,0,0,0.53885 -17118,3203:350,30,-25,0,0,0.523397 -17119,3203:351,31,-25,0,0,0.518781 -17120,3203:352,32,-25,0,0,0.486584 -17121,3203:353,33,-25,0,0,0.455669 -17122,3203:354,34,-25,0,0,0.454217 -17123,3203:455,35,-25,0,0,0.445267 -17124,3203:456,36,-25,0,0,0.441235 -17125,3203:457,37,-25,0,0,0.448975 -17126,3203:458,38,-25,0,0,0.461817 -17127,3203:459,39,-25,0,0,0.476093 -17128,3204:350,40,-25,0,0,0.4774 -17129,3204:351,41,-25,0,0,0.453351 -17130,3204:352,42,-25,0,0,0.440729 -17131,3204:353,43,-25,0,0,0.430499 -17132,3204:354,44,-25,0,0,0.431936 -17133,3204:455,45,-25,0,0,0.43471 -17134,3204:456,46,-25,0,0,0.427705 -17136,3204:458,48,-25,0,0,0.421956 -17137,3204:459,49,-25,0,0,0.427227 -17138,3205:350,50,-25,0,0,0.413111 -17139,3205:351,51,-25,0,0,0.415454 -17140,3205:352,52,-25,0,0,0.412986 -17141,3205:353,53,-25,0,0,0.419677 -17142,3205:354,54,-25,0,0,0.425343 -17143,3205:455,55,-25,0,0,0.416128 -17144,3205:456,56,-25,0,0,0.410324 -17145,3205:457,57,-25,0,0,0.4101 -17146,3205:458,58,-25,0,0,0.410423 -17147,3205:459,59,-25,0,0,0.41331 -17148,3206:350,60,-25,0,0,0.416852 -17149,3206:351,61,-25,0,0,0.421405 -17150,3206:352,62,-25,0,0,0.422759 -17151,3206:353,63,-25,0,0,0.423736 -17152,3206:354,64,-25,0,0,0.419503 -17153,3206:455,65,-25,0,0,0.414557 -17154,3206:456,66,-25,0,0,0.419152 -17155,3206:457,67,-25,0,0,0.413983 -17156,3206:458,68,-25,0,0,0.410523 -17157,3206:459,69,-25,0,0,0.408958 -17158,3207:350,70,-25,0,0,0.413859 -17159,3207:351,71,-25,0,0,0.431986 -17160,3207:352,72,-25,0,0,0.428032 -17161,3207:354,74,-25,0,0,0.430071 -17162,3207:455,75,-25,0,0,0.436075 -17163,3207:456,76,-25,0,0,0.443871 -17164,3207:457,77,-25,0,0,0.429467 -17165,3207:458,78,-25,0,0,0.427202 -17166,3207:459,79,-25,0,0,0.425519 -17167,3208:350,80,-25,0,0,0.426926 -17168,3208:351,81,-25,0,0,0.426499 -17169,3208:352,82,-25,0,0,0.424213 -17170,3208:353,83,-25,0,0,0.422658 -17171,3208:354,84,-25,0,0,0.418226 -17172,3208:455,85,-25,0,0,0.411443 -17173,3208:456,86,-25,0,0,0.410473 -17174,3208:457,87,-25,0,0,0.414881 -17175,3208:458,88,-25,0,0,0.411319 -17176,3208:459,89,-25,0,0,0.407418 -17177,3209:350,90,-25,0,0,0.401627 -17178,3209:351,91,-25,0,0,0.39633 -17179,3209:352,92,-25,0,0,0.399407 -17180,3209:353,93,-25,0,0,0.394145 -17181,3209:354,94,-25,0,0,0.394414 -17182,3209:455,95,-25,0,0,0.397265 -17183,3209:456,96,-25,0,0,0.396822 -17184,3209:457,97,-25,0,0,0.3835 -17185,3209:458,98,-25,0,0,0.380105 -17186,3209:459,99,-25,0,0,0.382334 -17187,3210:350,100,-25,0,0,0.375299 -17188,3210:351,101,-25,0,0,0.378533 -17189,3210:352,102,-25,0,0,0.386395 -17190,3210:353,103,-25,0,0,0.375443 -17191,3210:354,104,-25,0,0,0.379234 -17192,3210:455,105,-25,0,0,0.379694 -17193,3210:456,106,-25,0,0,0.390691 -17194,3210:457,107,-25,0,0,0.389664 -17195,3210:458,108,-25,0,0,0.398274 -17196,3210:459,109,-25,0,0,0.393507 -17197,3211:350,110,-25,0,0,0.393924 -17198,3211:351,111,-25,0,0,0.421054 -17199,3211:352,112,-25,0,0,0.42123 -17200,3211:353,113,-25,0,0,0.43466 -17201,3211:354,114,-25,0,0,0.4598 -17202,3211:455,115,-25,0,0,0.469281 -17203,3212:456,126,-25,0,0,0.39466 -17204,3212:457,127,-25,0,0,0.391523 -17205,3212:458,128,-25,0,0,0.393213 -17206,3212:459,129,-25,0,0,0.40027 -17207,3213:350,130,-25,0,0,0.408958 -17208,3213:351,131,-25,0,0,0.411393 -17209,3213:352,132,-25,0,0,0.418402 -17210,3213:353,133,-25,0,0,0.442274 -17211,3213:354,134,-25,0,0,0.465061 -17212,3215:353,153,-25,0,0,0.546321 -17213,3215:354,154,-25,0,0,0.550469 -17214,3215:455,155,-25,0,0,0.535095 -17215,3215:456,156,-25,0,0,0.559198 -17216,3215:457,157,-25,0,0,0.530414 -17217,3215:458,158,-25,0,0,0.546754 -17218,3215:459,159,-25,0,0,0.527009 -17219,3216:350,160,-25,0,0,0.524576 -17220,3216:351,161,-25,0,0,0.515831 -17221,3216:352,162,-25,0,0,0.498602 -17222,3216:353,163,-25,0,0,0.496033 -17223,3216:354,164,-25,0,0,0.491128 -17224,3216:455,165,-25,0,0,0.492515 -17225,3216:456,166,-25,0,0,0.466545 -17226,3216:457,167,-25,0,0,0.455465 -17227,3216:458,168,-25,0,0,0.449407 -17228,3216:459,169,-25,0,0,0.43509 -17229,3217:350,170,-25,0,0,0.442451 -17230,3217:351,171,-25,0,0,0.441413 -17231,3217:352,172,-25,0,0,0.433852 -17232,3217:353,173,-25,0,0,0.433701 -17233,3217:354,174,-25,0,0,0.435544 -17234,3217:455,175,-25,0,0,0.425468 -17235,3217:456,176,-25,0,0,0.420954 -17236,3217:457,177,-25,0,0,0.426423 -17237,3217:458,178,-25,0,0,0.437667 -17238,3217:459,179,-25,0,0,0.430877 -17239,3218:350,180,-25,0,0,0.427529 -17240,5218:140,-180,-24,0,0,0.450069 -17241,5217:249,-179,-24,0,0,0.450551 -17242,5217:248,-178,-24,0,0,0.452816 -17243,5217:247,-177,-24,0,0,0.458703 -17244,5217:246,-176,-24,0,0,0.452205 -17245,5217:245,-175,-24,0,0,0.453453 -17246,5217:144,-174,-24,0,0,0.451085 -17247,5217:143,-173,-24,0,0,0.451314 -17248,5217:142,-172,-24,0,0,0.44806 -17249,5217:141,-171,-24,0,0,0.448035 -17250,5217:140,-170,-24,0,0,0.447349 -17251,5216:249,-169,-24,0,0,0.444683 -17252,5216:248,-168,-24,0,0,0.448111 -17253,5216:247,-167,-24,0,0,0.445648 -17254,5216:246,-166,-24,0,0,0.443821 -17255,5216:245,-165,-24,0,0,0.4458 -17256,5216:144,-164,-24,0,0,0.442756 -17257,5216:143,-163,-24,0,0,0.439817 -17258,5216:142,-162,-24,0,0,0.441008 -17259,5216:141,-161,-24,0,0,0.441616 -17260,5216:140,-160,-24,0,0,0.444658 -17261,5215:249,-159,-24,0,0,0.442654 -17262,5215:248,-158,-24,0,0,0.446562 -17263,5215:247,-157,-24,0,0,0.450119 -17264,5215:246,-156,-24,0,0,0.446155 -17265,5215:245,-155,-24,0,0,0.450196 -17266,5215:144,-154,-24,0,0,0.453478 -17267,5215:143,-153,-24,0,0,0.45855 -17268,5215:142,-152,-24,0,0,0.464755 -17269,5215:141,-151,-24,0,0,0.46726 -17270,5215:140,-150,-24,0,0,0.456127 -17271,5214:249,-149,-24,0,0,0.454497 -17272,5214:248,-148,-24,0,0,0.455949 -17273,5214:247,-147,-24,0,0,0.44372 -17274,5214:246,-146,-24,0,0,0.451085 -17275,5214:245,-145,-24,0,0,0.448035 -17276,5214:144,-144,-24,0,0,0.4441 -17277,5214:143,-143,-24,0,0,0.440273 -17278,5214:142,-142,-24,0,0,0.4423 -17279,5214:141,-141,-24,0,0,0.443212 -17280,5214:140,-140,-24,0,0,0.441793 -17281,5213:249,-139,-24,0,0,0.444988 -17282,5213:248,-138,-24,0,0,0.445927 -17283,5213:247,-137,-24,0,0,0.439185 -17284,5213:246,-136,-24,0,0,0.448975 -17285,5213:245,-135,-24,0,0,0.443289 -17286,5213:144,-134,-24,0,0,0.440628 -17287,5213:143,-133,-24,0,0,0.439261 -17288,5213:142,-132,-24,0,0,0.441008 -17289,5213:141,-131,-24,0,0,0.444937 -17290,5213:140,-130,-24,0,0,0.440045 -17291,5212:249,-129,-24,0,0,0.440096 -17292,5212:248,-128,-24,0,0,0.441286 -17293,5212:247,-127,-24,0,0,0.441742 -17294,5212:246,-126,-24,0,0,0.434686 -17295,5212:245,-125,-24,0,0,0.44268 -17296,5212:144,-124,-24,0,0,0.438502 -17297,5212:143,-123,-24,0,0,0.430801 -17298,5212:142,-122,-24,0,0,0.429542 -17299,5212:141,-121,-24,0,0,0.425996 -17300,5212:140,-120,-24,0,0,0.426222 -17301,5211:249,-119,-24,0,0,0.438324 -17302,5211:248,-118,-24,0,0,0.43567 -17303,5211:247,-117,-24,0,0,0.4306 -17304,5211:246,-116,-24,0,0,0.428813 -17305,5211:245,-115,-24,0,0,0.437819 -17306,5211:144,-114,-24,0,0,0.440881 -17307,5211:143,-113,-24,0,0,0.431406 -17308,5211:142,-112,-24,0,0,0.435392 -17309,5211:141,-111,-24,0,0,0.425243 -17310,5211:140,-110,-24,0,0,0.432692 -17311,5210:249,-109,-24,0,0,0.428082 -17312,5210:248,-108,-24,0,0,0.437313 -17313,5210:247,-107,-24,0,0,0.439185 -17314,5210:246,-106,-24,0,0,0.442427 -17315,5210:245,-105,-24,0,0,0.438021 -17316,5210:144,-104,-24,0,0,0.437742 -17317,5210:143,-103,-24,0,0,0.431431 -17318,5210:142,-102,-24,0,0,0.431356 -17319,5210:141,-101,-24,0,0,0.431557 -17320,5210:140,-100,-24,0,0,0.427202 -17321,5209:249,-99,-24,0,0,0.420278 -17322,5209:248,-98,-24,0,0,0.415654 -17323,5209:247,-97,-24,0,0,0.414706 -17324,5209:246,-96,-24,0,0,0.415679 -17325,5209:245,-95,-24,0,0,0.414731 -17326,5209:144,-94,-24,0,0,0.415879 -17327,5209:143,-93,-24,0,0,0.417577 -17328,5209:142,-92,-24,0,0,0.417377 -17329,5209:141,-91,-24,0,0,0.414108 -17330,5209:140,-90,-24,0,0,0.408833 -17331,5208:249,-89,-24,0,0,0.408064 -17332,5208:248,-88,-24,0,0,0.406204 -17333,5208:247,-87,-24,0,0,0.403283 -17334,5208:246,-86,-24,0,0,0.401504 -17335,5208:245,-85,-24,0,0,0.397609 -17336,5208:144,-84,-24,0,0,0.3952 -17337,5208:143,-83,-24,0,0,0.394366 -17338,5208:142,-82,-24,0,0,0.395053 -17339,5208:141,-81,-24,0,0,0.39118 -17340,5208:140,-80,-24,0,0,0.391009 -17341,5207:249,-79,-24,0,0,0.393507 -17342,5207:248,-78,-24,0,0,0.389298 -17343,5207:247,-77,-24,0,0,0.384204 -17344,5207:246,-76,-24,0,0,0.380202 -17345,5207:245,-75,-24,0,0,0.370926 -17346,5207:144,-74,-24,0,0,0.363715 -17347,5207:143,-73,-24,0,0,0.360061 -17348,5207:142,-72,-24,0,0,0.345495 -17349,5205:141,-51,-24,0,0,0.519782 -17350,5205:140,-50,-24,0,0,0.551333 -17351,5204:249,-49,-24,0,0,0.570914 -17352,5204:248,-48,-24,0,0,0.538773 -17353,5204:247,-47,-24,0,0,0.513727 -17354,5204:246,-46,-24,0,0,0.48394 -17355,5204:245,-45,-24,0,0,0.474197 -17356,5204:144,-44,-24,0,0,0.465266 -17357,5204:143,-43,-24,0,0,0.461153 -17358,5204:142,-42,-24,0,0,0.463962 -17359,5204:141,-41,-24,0,0,0.465573 -17360,5204:140,-40,-24,0,0,0.465854 -17361,5203:249,-39,-24,0,0,0.464397 -17362,5203:248,-38,-24,0,0,0.451518 -17363,5203:247,-37,-24,0,0,0.452994 -17364,5203:246,-36,-24,0,0,0.450196 -17365,5203:245,-35,-24,0,0,0.455847 -17366,5203:144,-34,-24,0,0,0.454191 -17367,5203:143,-33,-24,0,0,0.443313 -17368,5203:142,-32,-24,0,0,0.43797 -17369,5203:141,-31,-24,0,0,0.442376 -17370,5203:140,-30,-24,0,0,0.451951 -17371,5202:249,-29,-24,0,0,0.445723 -17372,5202:248,-28,-24,0,0,0.441312 -17373,5202:247,-27,-24,0,0,0.439438 -17374,5202:246,-26,-24,0,0,0.43883 -17375,5202:245,-25,-24,0,0,0.443035 -17376,5202:144,-24,-24,0,0,0.443694 -17377,5202:143,-23,-24,0,0,0.441564 -17378,5202:142,-22,-24,0,0,0.448899 -17379,5202:141,-21,-24,0,0,0.443035 -17380,5202:140,-20,-24,0,0,0.427806 -17381,5201:249,-19,-24,0,0,0.428435 -17382,5201:248,-18,-24,0,0,0.422934 -17383,5201:247,-17,-24,0,0,0.42919 -17384,5201:246,-16,-24,0,0,0.42851 -17385,5201:245,-15,-24,0,0,0.428334 -17386,5201:144,-14,-24,0,0,0.420028 -17387,5201:143,-13,-24,0,0,0.41538 -17388,5201:142,-12,-24,0,0,0.412065 -17389,5201:141,-11,-24,0,0,0.43921 -17390,5201:140,-10,-24,0,0,0.439387 -17391,5200:249,-9,-24,0,0,0.433045 -17392,5200:248,-8,-24,0,0,0.438679 -17393,5200:247,-7,-24,0,0,0.431709 -17394,5200:246,-6,-24,0,0,0.43186 -17395,5200:245,-5,-24,0,0,0.429945 -17396,5200:144,-4,-24,0,0,0.426448 -17397,5200:143,-3,-24,0,0,0.431229 -17398,5200:142,-2,-24,0,0,0.43191 -17399,5200:141,-1,-24,0,0,0.430801 -17400,3200:141,0,-24,0,0,0.42316 -17401,3200:141,1,-24,0,0,0.415604 -17402,3200:142,2,-24,0,0,0.411617 -17403,3200:143,3,-24,0,0,0.405708 -17404,3200:144,4,-24,0,0,0.405312 -17405,3200:245,5,-24,0,0,0.404965 -17406,3200:246,6,-24,0,0,0.410622 -17407,3200:247,7,-24,0,0,0.411244 -17408,3200:248,8,-24,0,0,0.40789 -17409,3200:249,9,-24,0,0,0.410797 -17410,3201:140,10,-24,0,0,0.411368 -17411,3201:141,11,-24,0,0,0.411294 -17412,3201:142,12,-24,0,0,0.417202 -17413,3201:143,13,-24,0,0,0.417952 -17414,3201:144,14,-24,0,0,0.428963 -17415,3201:245,15,-24,0,0,0.437313 -17416,3201:246,16,-24,0,0,0.439969 -17417,3201:247,17,-24,0,0,0.430877 -17418,3203:140,30,-24,0,0,0.549426 -17419,3203:141,31,-24,0,0,0.558894 -17420,3203:142,32,-24,0,0,0.536194 -17421,3203:143,33,-24,0,0,0.516217 -17422,3203:144,34,-24,0,0,0.485326 -17423,3203:245,35,-24,0,0,0.499809 -17424,3203:246,36,-24,0,0,0.512752 -17425,3203:247,37,-24,0,0,0.510133 -17426,3203:248,38,-24,0,0,0.480426 -17427,3203:249,39,-24,0,0,0.492694 -17428,3204:140,40,-24,0,0,0.495031 -17429,3204:141,41,-24,0,0,0.490794 -17430,3204:142,42,-24,0,0,0.488304 -17431,3204:143,43,-24,0,0,0.484326 -17432,3204:144,44,-24,0,0,0.480862 -17433,3204:245,45,-24,0,0,0.473583 -17434,3204:246,46,-24,0,0,0.466442 -17435,3204:247,47,-24,0,0,0.447527 -17436,3204:248,48,-24,0,0,0.453886 -17437,3204:249,49,-24,0,0,0.453987 -17438,3205:140,50,-24,0,0,0.454522 -17439,3205:141,51,-24,0,0,0.448518 -17440,3205:142,52,-24,0,0,0.449865 -17441,3205:143,53,-24,0,0,0.452562 -17442,3205:144,54,-24,0,0,0.444607 -17443,3205:245,55,-24,0,0,0.446993 -17444,3205:246,56,-24,0,0,0.437136 -17445,3205:247,57,-24,0,0,0.436554 -17446,3205:248,58,-24,0,0,0.43835 -17447,3205:249,59,-24,0,0,0.440653 -17448,3206:140,60,-24,0,0,0.446435 -17449,3206:141,61,-24,0,0,0.449204 -17450,3206:142,62,-24,0,0,0.449382 -17451,3206:143,63,-24,0,0,0.446587 -17452,3206:144,64,-24,0,0,0.446866 -17453,3206:245,65,-24,0,0,0.441033 -17454,3206:246,66,-24,0,0,0.44235 -17455,3206:247,67,-24,0,0,0.441159 -17456,3206:248,68,-24,0,0,0.439058 -17457,3206:249,69,-24,0,0,0.447171 -17458,3207:140,70,-24,0,0,0.457708 -17459,3207:141,71,-24,0,0,0.454548 -17460,3207:142,72,-24,0,0,0.465956 -17461,3207:144,74,-24,0,0,0.468003 -17462,3207:245,75,-24,0,0,0.467362 -17463,3207:246,76,-24,0,0,0.466621 -17464,3207:247,77,-24,0,0,0.457249 -17465,3207:248,78,-24,0,0,0.452867 -17466,3207:249,79,-24,0,0,0.460668 -17467,3208:140,80,-24,0,0,0.462455 -17468,3208:141,81,-24,0,0,0.461817 -17469,3208:142,82,-24,0,0,0.449127 -17470,3208:143,83,-24,0,0,0.45302 -17471,3208:144,84,-24,0,0,0.447171 -17472,3208:245,85,-24,0,0,0.43959 -17473,3208:246,86,-24,0,0,0.441844 -17474,3208:247,87,-24,0,0,0.436201 -17475,3208:248,88,-24,0,0,0.438653 -17476,3208:249,89,-24,0,0,0.429265 -17477,3209:140,90,-24,0,0,0.427001 -17478,3209:141,91,-24,0,0,0.423034 -17479,3209:142,92,-24,0,0,0.423335 -17480,3209:143,93,-24,0,0,0.419603 -17481,3209:144,94,-24,0,0,0.412713 -17482,3209:245,95,-24,0,0,0.405683 -17483,3209:246,96,-24,0,0,0.410423 -17484,3209:247,97,-24,0,0,0.400073 -17485,3209:248,98,-24,0,0,0.391718 -17486,3209:249,99,-24,0,0,0.39118 -17487,3210:140,100,-24,0,0,0.390446 -17488,3210:141,101,-24,0,0,0.390471 -17489,3210:142,102,-24,0,0,0.386833 -17490,3210:143,103,-24,0,0,0.396626 -17491,3210:144,104,-24,0,0,0.398865 -17492,3210:245,105,-24,0,0,0.388516 -17493,3210:246,106,-24,0,0,0.404965 -17494,3210:247,107,-24,0,0,0.401849 -17495,3210:248,108,-24,0,0,0.406228 -17496,3210:249,109,-24,0,0,0.411493 -17497,3211:140,110,-24,0,0,0.413833 -17498,3211:141,111,-24,0,0,0.443313 -17499,3211:142,112,-24,0,0,0.446308 -17500,3211:143,113,-24,0,0,0.454624 -17501,3211:144,114,-24,0,0,0.473019 -17502,3211:245,115,-24,0,0,0.487944 -17503,3215:144,154,-24,0,0,0.565772 -17504,3215:245,155,-24,0,0,0.545175 -17505,3215:246,156,-24,0,0,0.55273 -17506,3215:247,157,-24,0,0,0.552959 -17507,3215:248,158,-24,0,0,0.535069 -17508,3215:249,159,-24,0,0,0.529237 -17509,3216:140,160,-24,0,0,0.53131 -17510,3216:141,161,-24,0,0,0.518115 -17511,3216:142,162,-24,0,0,0.511905 -17512,3216:143,163,-24,0,0,0.50849 -17513,3216:144,164,-24,0,0,0.502814 -17514,3216:245,165,-24,0,0,0.499963 -17515,3216:246,166,-24,0,0,0.473839 -17516,3216:247,167,-24,0,0,0.466417 -17517,3216:248,168,-24,0,0,0.46312 -17518,3216:249,169,-24,0,0,0.45781 -17519,3217:140,170,-24,0,0,0.450374 -17520,3217:141,171,-24,0,0,0.447755 -17521,3217:142,172,-24,0,0,0.447628 -17522,3217:143,173,-24,0,0,0.448136 -17523,3217:144,174,-24,0,0,0.450322 -17524,3217:245,175,-24,0,0,0.442223 -17525,3217:246,176,-24,0,0,0.446968 -17526,3217:247,177,-24,0,0,0.44984 -17527,3217:248,178,-24,0,0,0.452002 -17528,3217:249,179,-24,0,0,0.455873 -17529,3218:140,180,-24,0,0,0.450069 -17530,5218:130,-180,-23,0,0,0.465547 -17531,5217:239,-179,-23,0,0,0.464857 -17532,5217:238,-178,-23,0,0,0.467286 -17533,5217:237,-177,-23,0,0,0.473839 -17534,5217:236,-176,-23,0,0,0.465803 -17535,5217:235,-175,-23,0,0,0.461511 -17536,5217:134,-174,-23,0,0,0.461383 -17537,5217:133,-173,-23,0,0,0.457504 -17538,5217:132,-172,-23,0,0,0.461281 -17539,5217:131,-171,-23,0,0,0.47243 -17540,5217:130,-170,-23,0,0,0.460234 -17541,5216:239,-169,-23,0,0,0.465726 -17542,5216:238,-168,-23,0,0,0.465752 -17543,5216:237,-167,-23,0,0,0.461613 -17544,5216:236,-166,-23,0,0,0.457606 -17545,5216:235,-165,-23,0,0,0.457683 -17546,5216:134,-164,-23,0,0,0.460617 -17547,5216:133,-163,-23,0,0,0.453198 -17548,5216:132,-162,-23,0,0,0.458601 -17549,5216:131,-161,-23,0,0,0.461025 -17550,5216:130,-160,-23,0,0,0.460745 -17551,5215:239,-159,-23,0,0,0.4657 -17552,5215:238,-158,-23,0,0,0.460489 -17553,5215:237,-157,-23,0,0,0.457249 -17554,5215:236,-156,-23,0,0,0.46335 -17555,5215:235,-155,-23,0,0,0.466084 -17556,5215:134,-154,-23,0,0,0.470791 -17557,5215:133,-153,-23,0,0,0.472866 -17558,5215:132,-152,-23,0,0,0.47535 -17559,5215:131,-151,-23,0,0,0.479811 -17560,5215:130,-150,-23,0,0,0.478733 -17561,5214:239,-149,-23,0,0,0.473659 -17562,5214:238,-148,-23,0,0,0.465369 -17563,5214:237,-147,-23,0,0,0.468284 -17564,5214:236,-146,-23,0,0,0.466595 -17565,5214:235,-145,-23,0,0,0.465778 -17566,5214:134,-144,-23,0,0,0.469973 -17567,5214:133,-143,-23,0,0,0.464116 -17568,5214:132,-142,-23,0,0,0.467107 -17569,5214:131,-141,-23,0,0,0.461536 -17570,5214:130,-140,-23,0,0,0.463707 -17571,5213:239,-139,-23,0,0,0.46657 -17572,5213:238,-138,-23,0,0,0.465956 -17573,5213:237,-137,-23,0,0,0.457556 -17574,5213:236,-136,-23,0,0,0.466903 -17575,5213:235,-135,-23,0,0,0.456382 -17576,5213:134,-134,-23,0,0,0.458907 -17577,5213:133,-133,-23,0,0,0.460106 -17578,5213:132,-132,-23,0,0,0.465522 -17579,5213:131,-131,-23,0,0,0.459877 -17580,5213:130,-130,-23,0,0,0.458703 -17581,5212:239,-129,-23,0,0,0.473454 -17582,5212:238,-128,-23,0,0,0.466979 -17583,5212:237,-127,-23,0,0,0.45493 -17584,5212:236,-126,-23,0,0,0.458652 -17585,5212:235,-125,-23,0,0,0.456 -17586,5212:134,-124,-23,0,0,0.451188 -17587,5212:133,-123,-23,0,0,0.447654 -17588,5212:132,-122,-23,0,0,0.439817 -17589,5212:131,-121,-23,0,0,0.443111 -17590,5212:130,-120,-23,0,0,0.451238 -17591,5211:239,-119,-23,0,0,0.448645 -17592,5211:238,-118,-23,0,0,0.446638 -17593,5211:237,-117,-23,0,0,0.451238 -17594,5211:236,-116,-23,0,0,0.450348 -17595,5211:235,-115,-23,0,0,0.456841 -17596,5211:134,-114,-23,0,0,0.454853 -17597,5211:133,-113,-23,0,0,0.454217 -17598,5211:132,-112,-23,0,0,0.444074 -17599,5211:131,-111,-23,0,0,0.445292 -17600,5211:130,-110,-23,0,0,0.446562 -17601,5210:239,-109,-23,0,0,0.450628 -17602,5210:238,-108,-23,0,0,0.454217 -17603,5210:237,-107,-23,0,0,0.453172 -17604,5210:236,-106,-23,0,0,0.452231 -17605,5210:235,-105,-23,0,0,0.453733 -17606,5210:134,-104,-23,0,0,0.4519 -17607,5210:133,-103,-23,0,0,0.451951 -17608,5210:132,-102,-23,0,0,0.450297 -17609,5210:131,-101,-23,0,0,0.447527 -17610,5210:130,-100,-23,0,0,0.44339 -17611,5209:239,-99,-23,0,0,0.437667 -17612,5209:238,-98,-23,0,0,0.437465 -17613,5209:237,-97,-23,0,0,0.43792 -17614,5209:236,-96,-23,0,0,0.438249 -17615,5209:235,-95,-23,0,0,0.436605 -17616,5209:134,-94,-23,0,0,0.436378 -17617,5209:133,-93,-23,0,0,0.433676 -17618,5209:132,-92,-23,0,0,0.429668 -17619,5209:131,-91,-23,0,0,0.425218 -17620,5209:130,-90,-23,0,0,0.419303 -17621,5208:239,-89,-23,0,0,0.415879 -17622,5208:238,-88,-23,0,0,0.414208 -17623,5208:237,-87,-23,0,0,0.411543 -17624,5208:236,-86,-23,0,0,0.409528 -17625,5208:235,-85,-23,0,0,0.408262 -17626,5208:134,-84,-23,0,0,0.40933 -17627,5208:133,-83,-23,0,0,0.408908 -17628,5208:132,-82,-23,0,0,0.404767 -17629,5208:131,-81,-23,0,0,0.400911 -17630,5208:130,-80,-23,0,0,0.398644 -17631,5207:239,-79,-23,0,0,0.399727 -17632,5207:238,-78,-23,0,0,0.39638 -17633,5207:237,-77,-23,0,0,0.386663 -17634,5207:236,-76,-23,0,0,0.385591 -17635,5207:235,-75,-23,0,0,0.374986 -17636,5207:134,-74,-23,0,0,0.367575 -17637,5207:133,-73,-23,0,0,0.360297 -17638,5207:132,-72,-23,0,0,0.35238 -17639,5205:130,-50,-23,0,0,0.529826 -17640,5204:239,-49,-23,0,0,0.564105 -17641,5204:238,-48,-23,0,0,0.582876 -17642,5204:237,-47,-23,0,0,0.530261 -17643,5204:236,-46,-23,0,0,0.535836 -17644,5204:235,-45,-23,0,0,0.509183 -17645,5204:134,-44,-23,0,0,0.504201 -17646,5204:133,-43,-23,0,0,0.494595 -17647,5204:132,-42,-23,0,0,0.493259 -17648,5204:131,-41,-23,0,0,0.50492 -17649,5204:130,-40,-23,0,0,0.50379 -17650,5203:239,-39,-23,0,0,0.492746 -17651,5203:238,-38,-23,0,0,0.496187 -17652,5203:237,-37,-23,0,0,0.484762 -17653,5203:236,-36,-23,0,0,0.476401 -17654,5203:235,-35,-23,0,0,0.472891 -17655,5203:134,-34,-23,0,0,0.472866 -17656,5203:133,-33,-23,0,0,0.467312 -17657,5203:132,-32,-23,0,0,0.470305 -17658,5203:131,-31,-23,0,0,0.474146 -17659,5203:130,-30,-23,0,0,0.469895 -17660,5202:239,-29,-23,0,0,0.471022 -17661,5202:238,-28,-23,0,0,0.481119 -17662,5202:237,-27,-23,0,0,0.46964 -17663,5202:236,-26,-23,0,0,0.466161 -17664,5202:235,-25,-23,0,0,0.463196 -17665,5202:134,-24,-23,0,0,0.469307 -17666,5202:133,-23,-23,0,0,0.468514 -17667,5202:132,-22,-23,0,0,0.46611 -17668,5202:131,-21,-23,0,0,0.460081 -17669,5202:130,-20,-23,0,0,0.458066 -17670,5201:239,-19,-23,0,0,0.450984 -17671,5201:238,-18,-23,0,0,0.450526 -17672,5201:237,-17,-23,0,0,0.452155 -17673,5201:236,-16,-23,0,0,0.449204 -17674,5201:235,-15,-23,0,0,0.450145 -17675,5201:134,-14,-23,0,0,0.441667 -17676,5201:133,-13,-23,0,0,0.441919 -17677,5201:132,-12,-23,0,0,0.456765 -17678,5201:131,-11,-23,0,0,0.465394 -17679,5201:130,-10,-23,0,0,0.459162 -17680,5200:239,-9,-23,0,0,0.456153 -17681,5200:238,-8,-23,0,0,0.454879 -17682,5200:237,-7,-23,0,0,0.451926 -17683,5200:236,-6,-23,0,0,0.449788 -17684,5200:235,-5,-23,0,0,0.448086 -17685,5200:134,-4,-23,0,0,0.447527 -17686,5200:133,-3,-23,0,0,0.449661 -17687,5200:132,-2,-23,0,0,0.446003 -17688,5200:131,-1,-23,0,0,0.437869 -17689,3200:131,0,-23,0,0,0.433373 -17690,3200:131,1,-23,0,0,0.429442 -17691,3200:132,2,-23,0,0,0.422232 -17692,3200:133,3,-23,0,0,0.424013 -17693,3200:134,4,-23,0,0,0.425167 -17694,3200:235,5,-23,0,0,0.419477 -17695,3200:236,6,-23,0,0,0.423837 -17696,3200:237,7,-23,0,0,0.423461 -17697,3200:238,8,-23,0,0,0.423461 -17698,3200:239,9,-23,0,0,0.426046 -17699,3201:130,10,-23,0,0,0.423109 -17700,3201:131,11,-23,0,0,0.427278 -17701,3201:132,12,-23,0,0,0.431129 -17702,3201:133,13,-23,0,0,0.427303 -17703,3201:134,14,-23,0,0,0.437566 -17704,3201:235,15,-23,0,0,0.442046 -17705,3201:236,16,-23,0,0,0.442427 -17706,3203:131,31,-23,0,0,0.567538 -17707,3203:132,32,-23,0,0,0.575313 -17708,3203:133,33,-23,0,0,0.557855 -17709,3203:134,34,-23,0,0,0.531873 -17710,3203:235,35,-23,0,0,0.531873 -17711,3203:236,36,-23,0,0,0.542728 -17712,3203:237,37,-23,0,0,0.524832 -17713,3203:238,38,-23,0,0,0.513932 -17714,3203:239,39,-23,0,0,0.522653 -17715,3204:130,40,-23,0,0,0.526293 -17716,3204:131,41,-23,0,0,0.521808 -17717,3204:132,42,-23,0,0,0.521782 -17718,3204:133,43,-23,0,0,0.514702 -17719,3204:134,44,-23,0,0,0.484736 -17720,3204:235,45,-23,0,0,0.470663 -17721,3204:236,46,-23,0,0,0.474838 -17722,3204:237,47,-23,0,0,0.491154 -17723,3204:238,48,-23,0,0,0.489408 -17724,3204:239,49,-23,0,0,0.480759 -17725,3205:130,50,-23,0,0,0.491462 -17726,3205:131,51,-23,0,0,0.478426 -17727,3205:132,52,-23,0,0,0.472968 -17728,3205:133,53,-23,0,0,0.466468 -17729,3205:134,54,-23,0,0,0.465061 -17730,3205:235,55,-23,0,0,0.467644 -17731,3205:236,56,-23,0,0,0.474479 -17732,3205:237,57,-23,0,0,0.469666 -17733,3205:238,58,-23,0,0,0.468668 -17734,3205:239,59,-23,0,0,0.472353 -17735,3206:130,60,-23,0,0,0.473608 -17736,3206:131,61,-23,0,0,0.473506 -17737,3206:132,62,-23,0,0,0.47138 -17738,3206:133,63,-23,0,0,0.47266 -17739,3206:134,64,-23,0,0,0.473634 -17740,3206:235,65,-23,0,0,0.471304 -17741,3206:236,66,-23,0,0,0.469921 -17742,3206:237,67,-23,0,0,0.473941 -17743,3206:238,68,-23,0,0,0.483582 -17744,3206:239,69,-23,0,0,0.478554 -17745,3207:130,70,-23,0,0,0.482248 -17746,3207:131,71,-23,0,0,0.48294 -17747,3207:132,72,-23,0,0,0.485429 -17748,3207:134,74,-23,0,0,0.487379 -17749,3207:235,75,-23,0,0,0.483068 -17750,3207:236,76,-23,0,0,0.486481 -17751,3207:237,77,-23,0,0,0.483299 -17752,3207:238,78,-23,0,0,0.478118 -17753,3207:239,79,-23,0,0,0.488612 -17754,3208:130,80,-23,0,0,0.485326 -17755,3208:131,81,-23,0,0,0.480914 -17756,3208:132,82,-23,0,0,0.469742 -17757,3208:133,83,-23,0,0,0.467797 -17758,3208:134,84,-23,0,0,0.465828 -17759,3208:235,85,-23,0,0,0.469563 -17760,3208:236,86,-23,0,0,0.456765 -17761,3208:237,87,-23,0,0,0.449916 -17762,3208:238,88,-23,0,0,0.449967 -17763,3208:239,89,-23,0,0,0.440754 -17764,3209:130,90,-23,0,0,0.4336 -17765,3209:131,91,-23,0,0,0.435796 -17766,3209:132,92,-23,0,0,0.434155 -17767,3209:133,93,-23,0,0,0.431179 -17768,3209:134,94,-23,0,0,0.434079 -17769,3209:235,95,-23,0,0,0.425946 -17770,3209:236,96,-23,0,0,0.420228 -17771,3209:237,97,-23,0,0,0.412389 -17772,3209:238,98,-23,0,0,0.416503 -17773,3209:239,99,-23,0,0,0.408983 -17774,3210:130,100,-23,0,0,0.420904 -17775,3210:131,101,-23,0,0,0.40727 -17776,3210:132,102,-23,0,0,0.408238 -17777,3210:133,103,-23,0,0,0.41199 -17778,3210:134,104,-23,0,0,0.427177 -17779,3210:235,105,-23,0,0,0.408361 -17780,3210:236,106,-23,0,0,0.421731 -17781,3210:237,107,-23,0,0,0.415679 -17782,3210:238,108,-23,0,0,0.420078 -17783,3210:239,109,-23,0,0,0.429265 -17784,3211:130,110,-23,0,0,0.441717 -17785,3211:131,111,-23,0,0,0.457862 -17786,3211:132,112,-23,0,0,0.45251 -17787,3211:133,113,-23,0,0,0.467184 -17788,3211:134,114,-23,0,0,0.491308 -17789,3211:235,115,-23,0,0,0.490538 -17790,3215:134,154,-23,0,0,0.576066 -17791,3215:235,155,-23,0,0,0.568874 -17792,3215:236,156,-23,0,0,0.541249 -17793,3215:237,157,-23,0,0,0.539769 -17794,3215:238,158,-23,0,0,0.534763 -17795,3215:239,159,-23,0,0,0.520295 -17796,3216:130,160,-23,0,0,0.515318 -17797,3216:131,161,-23,0,0,0.511802 -17798,3216:132,162,-23,0,0,0.51021 -17799,3216:133,163,-23,0,0,0.511468 -17800,3216:134,164,-23,0,0,0.508798 -17801,3216:235,165,-23,0,0,0.506821 -17802,3216:236,166,-23,0,0,0.493798 -17803,3216:237,167,-23,0,0,0.470945 -17804,3216:238,168,-23,0,0,0.466468 -17805,3216:239,169,-23,0,0,0.464933 -17806,3217:130,170,-23,0,0,0.462864 -17807,3217:131,171,-23,0,0,0.462481 -17808,3217:132,172,-23,0,0,0.464065 -17809,3217:133,173,-23,0,0,0.46432 -17810,3217:134,174,-23,0,0,0.466877 -17811,3217:235,175,-23,0,0,0.462736 -17812,3217:236,176,-23,0,0,0.462558 -17813,3217:237,177,-23,0,0,0.471534 -17814,3217:238,178,-23,0,0,0.470177 -17815,3217:239,179,-23,0,0,0.469666 -17816,3218:130,180,-23,0,0,0.465547 -17817,5218:120,-180,-22,0,0,0.482812 -17818,5217:229,-179,-22,0,0,0.492746 -17819,5217:228,-178,-22,0,0,0.486969 -17820,5217:227,-177,-22,0,0,0.481683 -17821,5217:226,-176,-22,0,0,0.478426 -17822,5217:225,-175,-22,0,0,0.479502 -17823,5217:124,-174,-22,0,0,0.485532 -17824,5217:123,-173,-22,0,0,0.487072 -17825,5217:122,-172,-22,0,0,0.482427 -17826,5217:121,-171,-22,0,0,0.492746 -17827,5217:120,-170,-22,0,0,0.480169 -17828,5216:229,-169,-22,0,0,0.476247 -17829,5216:228,-168,-22,0,0,0.478682 -17830,5216:227,-167,-22,0,0,0.473557 -17831,5216:226,-166,-22,0,0,0.472584 -17832,5216:225,-165,-22,0,0,0.468488 -17833,5216:124,-164,-22,0,0,0.47512 -17834,5216:123,-163,-22,0,0,0.470356 -17835,5216:122,-162,-22,0,0,0.47028 -17836,5216:121,-161,-22,0,0,0.469205 -17837,5216:120,-160,-22,0,0,0.47412 -17838,5215:229,-159,-22,0,0,0.481195 -17839,5215:228,-158,-22,0,0,0.481811 -17840,5215:227,-157,-22,0,0,0.479939 -17841,5215:226,-156,-22,0,0,0.480605 -17842,5215:225,-155,-22,0,0,0.488381 -17843,5215:124,-154,-22,0,0,0.49159 -17844,5215:123,-153,-22,0,0,0.490794 -17845,5215:122,-152,-22,0,0,0.487893 -17846,5215:121,-151,-22,0,0,0.493002 -17847,5215:120,-150,-22,0,0,0.500913 -17848,5214:229,-149,-22,0,0,0.49367 -17849,5214:228,-148,-22,0,0,0.493748 -17850,5214:227,-147,-22,0,0,0.490024 -17851,5214:226,-146,-22,0,0,0.490512 -17852,5214:225,-145,-22,0,0,0.491873 -17853,5214:124,-144,-22,0,0,0.492181 -17854,5214:123,-143,-22,0,0,0.485172 -17855,5214:122,-142,-22,0,0,0.481631 -17856,5214:121,-141,-22,0,0,0.48987 -17857,5214:120,-140,-22,0,0,0.480349 -17858,5213:229,-139,-22,0,0,0.487765 -17859,5213:228,-138,-22,0,0,0.485044 -17860,5213:227,-137,-22,0,0,0.476298 -17861,5213:226,-136,-22,0,0,0.477708 -17862,5213:225,-135,-22,0,0,0.469153 -17863,5213:124,-134,-22,0,0,0.470561 -17864,5213:123,-133,-22,0,0,0.478118 -17865,5213:122,-132,-22,0,0,0.475043 -17866,5213:121,-131,-22,0,0,0.491795 -17867,5213:120,-130,-22,0,0,0.496136 -17868,5212:229,-129,-22,0,0,0.489202 -17869,5212:228,-128,-22,0,0,0.479759 -17870,5212:227,-127,-22,0,0,0.473121 -17871,5212:226,-126,-22,0,0,0.476401 -17872,5212:225,-125,-22,0,0,0.471765 -17873,5212:124,-124,-22,0,0,0.465369 -17874,5212:123,-123,-22,0,0,0.4634 -17875,5212:122,-122,-22,0,0,0.465778 -17876,5212:121,-121,-22,0,0,0.458729 -17877,5212:120,-120,-22,0,0,0.467516 -17878,5211:229,-119,-22,0,0,0.463375 -17879,5211:228,-118,-22,0,0,0.468003 -17880,5211:227,-117,-22,0,0,0.465189 -17881,5211:226,-116,-22,0,0,0.461255 -17882,5211:225,-115,-22,0,0,0.46749 -17883,5211:124,-114,-22,0,0,0.467542 -17884,5211:123,-113,-22,0,0,0.468693 -17885,5211:122,-112,-22,0,0,0.456204 -17886,5211:121,-111,-22,0,0,0.463043 -17887,5211:120,-110,-22,0,0,0.463502 -17888,5210:229,-109,-22,0,0,0.467286 -17889,5210:228,-108,-22,0,0,0.471585 -17890,5210:227,-107,-22,0,0,0.473096 -17891,5210:226,-106,-22,0,0,0.47028 -17892,5210:225,-105,-22,0,0,0.470971 -17893,5210:124,-104,-22,0,0,0.469947 -17894,5210:123,-103,-22,0,0,0.468949 -17895,5210:122,-102,-22,0,0,0.466621 -17896,5210:121,-101,-22,0,0,0.462302 -17897,5210:120,-100,-22,0,0,0.45975 -17898,5209:229,-99,-22,0,0,0.454497 -17899,5209:228,-98,-22,0,0,0.455465 -17900,5209:227,-97,-22,0,0,0.453911 -17901,5209:226,-96,-22,0,0,0.448899 -17902,5209:225,-95,-22,0,0,0.447425 -17903,5209:124,-94,-22,0,0,0.444506 -17904,5209:123,-93,-22,0,0,0.439185 -17905,5209:122,-92,-22,0,0,0.43466 -17906,5209:121,-91,-22,0,0,0.429542 -17907,5209:120,-90,-22,0,0,0.425343 -17908,5208:229,-89,-22,0,0,0.421831 -17909,5208:228,-88,-22,0,0,0.420453 -17910,5208:227,-87,-22,0,0,0.417502 -17911,5208:226,-86,-22,0,0,0.414806 -17912,5208:225,-85,-22,0,0,0.416203 -17913,5208:124,-84,-22,0,0,0.414856 -17914,5208:123,-83,-22,0,0,0.412563 -17915,5208:122,-82,-22,0,0,0.411966 -17916,5208:121,-81,-22,0,0,0.411319 -17917,5208:120,-80,-22,0,0,0.406501 -17918,5207:229,-79,-22,0,0,0.401232 -17919,5207:228,-78,-22,0,0,0.399308 -17920,5207:227,-77,-22,0,0,0.397486 -17921,5207:226,-76,-22,0,0,0.388053 -17922,5207:225,-75,-22,0,0,0.384083 -17923,5207:124,-74,-22,0,0,0.372101 -17924,5207:123,-73,-22,0,0,0.358831 -17925,5207:122,-72,-22,0,0,0.364786 -17926,5204:229,-49,-22,0,0,0.540841 -17927,5204:228,-48,-22,0,0,0.575514 -17928,5204:227,-47,-22,0,0,0.571845 -17929,5204:226,-46,-22,0,0,0.541657 -17930,5204:225,-45,-22,0,0,0.529749 -17931,5204:124,-44,-22,0,0,0.528085 -17932,5204:123,-43,-22,0,0,0.53241 -17933,5204:122,-42,-22,0,0,0.530184 -17934,5204:121,-41,-22,0,0,0.531949 -17935,5204:120,-40,-22,0,0,0.516806 -17936,5203:229,-39,-22,0,0,0.523833 -17937,5203:228,-38,-22,0,0,0.517678 -17938,5203:227,-37,-22,0,0,0.507823 -17939,5203:226,-36,-22,0,0,0.502018 -17940,5203:225,-35,-22,0,0,0.494672 -17941,5203:124,-34,-22,0,0,0.492489 -17942,5203:123,-33,-22,0,0,0.491976 -17943,5203:122,-32,-22,0,0,0.500477 -17944,5203:121,-31,-22,0,0,0.50415 -17945,5203:120,-30,-22,0,0,0.502429 -17946,5202:229,-29,-22,0,0,0.506281 -17947,5202:228,-28,-22,0,0,0.509902 -17948,5202:227,-27,-22,0,0,0.50492 -17949,5202:226,-26,-22,0,0,0.502788 -17950,5202:225,-25,-22,0,0,0.502762 -17951,5202:124,-24,-22,0,0,0.500374 -17952,5202:123,-23,-22,0,0,0.497137 -17953,5202:122,-22,-22,0,0,0.487328 -17954,5202:121,-21,-22,0,0,0.481683 -17955,5202:120,-20,-22,0,0,0.476606 -17956,5201:229,-19,-22,0,0,0.482427 -17957,5201:228,-18,-22,0,0,0.483838 -17958,5201:227,-17,-22,0,0,0.478733 -17959,5201:226,-16,-22,0,0,0.480759 -17960,5201:225,-15,-22,0,0,0.479502 -17961,5201:124,-14,-22,0,0,0.482889 -17962,5201:123,-13,-22,0,0,0.480709 -17963,5201:122,-12,-22,0,0,0.483068 -17964,5201:121,-11,-22,0,0,0.47817 -17965,5201:120,-10,-22,0,0,0.479528 -17966,5200:229,-9,-22,0,0,0.483735 -17967,5200:228,-8,-22,0,0,0.483325 -17968,5200:227,-7,-22,0,0,0.48058 -17969,5200:226,-6,-22,0,0,0.477195 -17970,5200:225,-5,-22,0,0,0.472533 -17971,5200:124,-4,-22,0,0,0.466775 -17972,5200:123,-3,-22,0,0,0.463707 -17973,5200:122,-2,-22,0,0,0.461383 -17974,5200:121,-1,-22,0,0,0.452715 -17975,3200:121,0,-22,0,0,0.442933 -17976,3200:121,1,-22,0,0,0.440247 -17977,3200:122,2,-22,0,0,0.446029 -17978,3200:123,3,-22,0,0,0.444074 -17979,3200:124,4,-22,0,0,0.433928 -17980,3200:225,5,-22,0,0,0.437364 -17981,3200:226,6,-22,0,0,0.436125 -17982,3200:227,7,-22,0,0,0.433878 -17983,3200:228,8,-22,0,0,0.433726 -17984,3200:229,9,-22,0,0,0.431734 -17985,3201:120,10,-22,0,0,0.431633 -17986,3201:121,11,-22,0,0,0.434686 -17987,3201:122,12,-22,0,0,0.435266 -17988,3201:123,13,-22,0,0,0.437085 -17989,3201:124,14,-22,0,0,0.436908 -17990,3201:225,15,-22,0,0,0.434433 -17991,3201:226,16,-22,0,0,0.41356 -17992,3203:122,32,-22,0,0,0.572121 -17993,3203:123,33,-22,0,0,0.58395 -17994,3203:124,34,-22,0,0,0.562286 -17995,3203:225,35,-22,0,0,0.550341 -17996,3203:226,36,-22,0,0,0.559224 -17997,3203:227,37,-22,0,0,0.533766 -17998,3203:228,38,-22,0,0,0.538339 -17999,3203:229,39,-22,0,0,0.541988 -18000,3204:120,40,-22,0,0,0.539514 -18001,3204:121,41,-22,0,0,0.539386 -18002,3204:122,42,-22,0,0,0.537956 -18003,3204:123,43,-22,0,0,0.528289 -18004,3204:124,44,-22,0,0,0.532589 -18005,3204:225,45,-22,0,0,0.529749 -18006,3204:226,46,-22,0,0,0.511802 -18007,3204:227,47,-22,0,0,0.520243 -18008,3204:228,48,-22,0,0,0.522936 -18009,3204:229,49,-22,0,0,0.508772 -18010,3205:120,50,-22,0,0,0.518269 -18011,3205:121,51,-22,0,0,0.503738 -18012,3205:122,52,-22,0,0,0.507155 -18013,3205:123,53,-22,0,0,0.499346 -18014,3205:124,54,-22,0,0,0.495134 -18015,3205:225,55,-22,0,0,0.503277 -18016,3205:226,56,-22,0,0,0.505202 -18017,3205:227,57,-22,0,0,0.509851 -18018,3205:228,58,-22,0,0,0.50343 -18019,3205:229,59,-22,0,0,0.503636 -18020,3206:120,60,-22,0,0,0.499654 -18021,3206:121,61,-22,0,0,0.504175 -18022,3206:122,62,-22,0,0,0.505562 -18023,3206:123,63,-22,0,0,0.499115 -18024,3206:124,64,-22,0,0,0.508156 -18025,3206:225,65,-22,0,0,0.500425 -18026,3206:226,66,-22,0,0,0.502352 -18027,3206:227,67,-22,0,0,0.501632 -18028,3206:228,68,-22,0,0,0.50795 -18029,3206:229,69,-22,0,0,0.514933 -18030,3207:120,70,-22,0,0,0.517807 -18031,3207:121,71,-22,0,0,0.510158 -18032,3207:122,72,-22,0,0,0.504329 -18033,3207:124,74,-22,0,0,0.499988 -18034,3207:225,75,-22,0,0,0.506025 -18035,3207:226,76,-22,0,0,0.507386 -18036,3207:227,77,-22,0,0,0.506538 -18037,3207:228,78,-22,0,0,0.502506 -18038,3207:229,79,-22,0,0,0.50212 -18039,3208:120,80,-22,0,0,0.506641 -18040,3208:121,81,-22,0,0,0.494287 -18041,3208:122,82,-22,0,0,0.501915 -18042,3208:123,83,-22,0,0,0.49236 -18043,3208:124,84,-22,0,0,0.488149 -18044,3208:225,85,-22,0,0,0.478247 -18045,3208:226,86,-22,0,0,0.47512 -18046,3208:227,87,-22,0,0,0.467516 -18047,3208:228,88,-22,0,0,0.459724 -18048,3208:229,89,-22,0,0,0.459698 -18049,3209:120,90,-22,0,0,0.461459 -18050,3209:121,91,-22,0,0,0.455899 -18051,3209:122,92,-22,0,0,0.447069 -18052,3209:123,93,-22,0,0,0.446232 -18053,3209:124,94,-22,0,0,0.449814 -18054,3209:225,95,-22,0,0,0.441286 -18055,3209:226,96,-22,0,0,0.431306 -18056,3209:227,97,-22,0,0,0.441312 -18057,3209:228,98,-22,0,0,0.430373 -18058,3209:229,99,-22,0,0,0.437085 -18059,3210:120,100,-22,0,0,0.422959 -18060,3210:121,101,-22,0,0,0.418302 -18061,3210:122,102,-22,0,0,0.42924 -18062,3210:123,103,-22,0,0,0.43509 -18063,3210:124,104,-22,0,0,0.435064 -18064,3210:225,105,-22,0,0,0.428561 -18065,3210:226,106,-22,0,0,0.430071 -18066,3210:227,107,-22,0,0,0.427379 -18067,3210:228,108,-22,0,0,0.435772 -18068,3210:229,109,-22,0,0,0.444632 -18069,3211:120,110,-22,0,0,0.466468 -18070,3211:121,111,-22,0,0,0.471432 -18071,3211:122,112,-22,0,0,0.47389 -18072,3211:123,113,-22,0,0,0.494672 -18073,3211:124,114,-22,0,0,0.509466 -18074,3215:124,154,-22,0,0,0.578473 -18075,3215:225,155,-22,0,0,0.568395 -18076,3215:226,156,-22,0,0,0.552933 -18077,3215:227,157,-22,0,0,0.530005 -18078,3215:228,158,-22,0,0,0.53021 -18079,3215:229,159,-22,0,0,0.523551 -18080,3216:120,160,-22,0,0,0.517063 -18081,3216:121,161,-22,0,0,0.515447 -18082,3216:122,162,-22,0,0,0.515447 -18083,3216:123,163,-22,0,0,0.51519 -18084,3216:124,164,-22,0,0,0.513419 -18085,3216:225,165,-22,0,0,0.514497 -18086,3216:226,166,-22,0,0,0.503508 -18087,3216:227,167,-22,0,0,0.485403 -18088,3216:228,168,-22,0,0,0.477042 -18089,3216:229,169,-22,0,0,0.481811 -18090,3217:120,170,-22,0,0,0.48471 -18091,3217:121,171,-22,0,0,0.488766 -18092,3217:122,172,-22,0,0,0.490281 -18093,3217:123,173,-22,0,0,0.491154 -18094,3217:124,174,-22,0,0,0.488099 -18095,3217:225,175,-22,0,0,0.488099 -18096,3217:226,176,-22,0,0,0.488047 -18097,3217:227,177,-22,0,0,0.483992 -18098,3217:228,178,-22,0,0,0.49236 -18099,3217:229,179,-22,0,0,0.492874 -18100,3218:120,180,-22,0,0,0.482812 -18101,5218:110,-180,-21,0,0,0.495314 -18102,5217:219,-179,-21,0,0,0.497857 -18103,5217:218,-178,-21,0,0,0.495776 -18104,5217:217,-177,-21,0,0,0.497497 -18105,5217:216,-176,-21,0,0,0.500759 -18106,5217:215,-175,-21,0,0,0.503713 -18107,5217:114,-174,-21,0,0,0.490948 -18108,5217:113,-173,-21,0,0,0.49927 -18109,5217:112,-172,-21,0,0,0.495982 -18110,5217:111,-171,-21,0,0,0.494723 -18111,5217:110,-170,-21,0,0,0.495622 -18112,5216:219,-169,-21,0,0,0.487482 -18113,5216:218,-168,-21,0,0,0.500014 -18114,5216:217,-167,-21,0,0,0.495622 -18115,5216:216,-166,-21,0,0,0.485146 -18116,5216:215,-165,-21,0,0,0.487379 -18117,5216:114,-164,-21,0,0,0.482298 -18118,5216:113,-163,-21,0,0,0.481452 -18119,5216:112,-162,-21,0,0,0.487687 -18120,5216:111,-161,-21,0,0,0.490769 -18121,5216:110,-160,-21,0,0,0.492694 -18122,5215:219,-159,-21,0,0,0.502506 -18123,5215:218,-158,-21,0,0,0.494132 -18124,5215:217,-157,-21,0,0,0.500605 -18125,5215:216,-156,-21,0,0,0.499783 -18126,5215:215,-155,-21,0,0,0.500477 -18127,5215:114,-154,-21,0,0,0.508387 -18128,5215:113,-153,-21,0,0,0.512597 -18129,5215:112,-152,-21,0,0,0.514318 -18130,5215:111,-151,-21,0,0,0.515986 -18131,5215:110,-150,-21,0,0,0.513317 -18132,5214:219,-149,-21,0,0,0.513034 -18133,5214:218,-148,-21,0,0,0.520705 -18134,5214:217,-147,-21,0,0,0.515678 -18135,5214:216,-146,-21,0,0,0.512726 -18136,5214:215,-145,-21,0,0,0.508695 -18137,5214:114,-144,-21,0,0,0.515164 -18138,5214:113,-143,-21,0,0,0.506281 -18139,5214:112,-142,-21,0,0,0.509774 -18140,5214:111,-141,-21,0,0,0.505691 -18141,5214:110,-140,-21,0,0,0.503636 -18142,5213:219,-139,-21,0,0,0.500194 -18143,5213:218,-138,-21,0,0,0.500246 -18144,5213:217,-137,-21,0,0,0.496341 -18145,5213:216,-136,-21,0,0,0.496958 -18146,5213:215,-135,-21,0,0,0.498345 -18147,5213:114,-134,-21,0,0,0.503687 -18148,5213:113,-133,-21,0,0,0.506615 -18149,5213:112,-132,-21,0,0,0.503713 -18150,5213:111,-131,-21,0,0,0.495622 -18151,5213:110,-130,-21,0,0,0.511956 -18152,5212:219,-129,-21,0,0,0.496238 -18153,5212:218,-128,-21,0,0,0.506307 -18154,5212:217,-127,-21,0,0,0.495802 -18155,5212:216,-126,-21,0,0,0.49272 -18156,5212:215,-125,-21,0,0,0.488945 -18157,5212:114,-124,-21,0,0,0.481965 -18158,5212:113,-123,-21,0,0,0.477067 -18159,5212:112,-122,-21,0,0,0.480016 -18160,5212:111,-121,-21,0,0,0.475683 -18161,5212:110,-120,-21,0,0,0.482837 -18162,5211:219,-119,-21,0,0,0.478067 -18163,5211:218,-118,-21,0,0,0.481452 -18164,5211:217,-117,-21,0,0,0.479118 -18165,5211:216,-116,-21,0,0,0.48135 -18166,5211:215,-115,-21,0,0,0.484659 -18167,5211:114,-114,-21,0,0,0.487123 -18168,5211:113,-113,-21,0,0,0.48507 -18169,5211:112,-112,-21,0,0,0.479118 -18170,5211:111,-111,-21,0,0,0.482375 -18171,5211:110,-110,-21,0,0,0.482991 -18172,5210:219,-109,-21,0,0,0.48471 -18173,5210:218,-108,-21,0,0,0.485839 -18174,5210:217,-107,-21,0,0,0.489202 -18175,5210:216,-106,-21,0,0,0.485686 -18176,5210:215,-105,-21,0,0,0.485121 -18177,5210:114,-104,-21,0,0,0.486892 -18178,5210:113,-103,-21,0,0,0.484223 -18179,5210:112,-102,-21,0,0,0.479067 -18180,5210:111,-101,-21,0,0,0.475632 -18181,5210:110,-100,-21,0,0,0.474428 -18182,5209:219,-99,-21,0,0,0.472763 -18183,5209:218,-98,-21,0,0,0.471176 -18184,5209:217,-97,-21,0,0,0.465624 -18185,5209:216,-96,-21,0,0,0.458397 -18186,5209:215,-95,-21,0,0,0.455312 -18187,5209:114,-94,-21,0,0,0.451264 -18188,5209:113,-93,-21,0,0,0.446384 -18189,5209:112,-92,-21,0,0,0.440146 -18190,5209:111,-91,-21,0,0,0.434862 -18191,5209:110,-90,-21,0,0,0.429794 -18192,5208:219,-89,-21,0,0,0.426298 -18193,5208:218,-88,-21,0,0,0.424288 -18194,5208:217,-87,-21,0,0,0.422332 -18195,5208:216,-86,-21,0,0,0.420353 -18196,5208:215,-85,-21,0,0,0.418752 -18197,5208:114,-84,-21,0,0,0.419403 -18198,5208:113,-83,-21,0,0,0.419227 -18199,5208:112,-82,-21,0,0,0.418352 -18200,5208:111,-81,-21,0,0,0.415081 -18201,5208:110,-80,-21,0,0,0.40608 -18202,5207:219,-79,-21,0,0,0.406873 -18203,5207:218,-78,-21,0,0,0.404792 -18204,5207:217,-77,-21,0,0,0.399161 -18205,5207:216,-76,-21,0,0,0.394709 -18206,5207:215,-75,-21,0,0,0.384594 -18207,5207:114,-74,-21,0,0,0.377566 -18208,5207:113,-73,-21,0,0,0.367767 -18209,5207:112,-72,-21,0,0,0.382408 -18210,5207:111,-71,-21,0,0,0.346727 -18211,5204:218,-48,-21,0,0,0.580876 -18212,5204:217,-47,-21,0,0,0.594889 -18213,5204:216,-46,-21,0,0,0.566605 -18214,5204:215,-45,-21,0,0,0.564737 -18215,5204:114,-44,-21,0,0,0.558742 -18216,5204:113,-43,-21,0,0,0.561729 -18217,5204:112,-42,-21,0,0,0.551816 -18218,5204:111,-41,-21,0,0,0.547951 -18219,5204:110,-40,-21,0,0,0.549884 -18220,5203:219,-39,-21,0,0,0.548612 -18221,5203:218,-38,-21,0,0,0.543544 -18222,5203:217,-37,-21,0,0,0.543697 -18223,5203:216,-36,-21,0,0,0.535095 -18224,5203:215,-35,-21,0,0,0.522731 -18225,5203:114,-34,-21,0,0,0.526523 -18226,5203:113,-33,-21,0,0,0.532512 -18227,5203:112,-32,-21,0,0,0.53535 -18228,5203:111,-31,-21,0,0,0.530286 -18229,5203:110,-30,-21,0,0,0.532845 -18230,5202:219,-29,-21,0,0,0.533996 -18231,5202:218,-28,-21,0,0,0.531899 -18232,5202:217,-27,-21,0,0,0.532027 -18233,5202:216,-26,-21,0,0,0.53241 -18234,5202:215,-25,-21,0,0,0.527342 -18235,5202:114,-24,-21,0,0,0.521423 -18236,5202:113,-23,-21,0,0,0.514625 -18237,5202:112,-22,-21,0,0,0.508901 -18238,5202:111,-21,-21,0,0,0.504355 -18239,5202:110,-20,-21,0,0,0.502891 -18240,5201:219,-19,-21,0,0,0.506975 -18241,5201:218,-18,-21,0,0,0.511494 -18242,5201:217,-17,-21,0,0,0.510184 -18243,5201:216,-16,-21,0,0,0.515216 -18244,5201:215,-15,-21,0,0,0.513137 -18245,5201:114,-14,-21,0,0,0.514549 -18246,5201:113,-13,-21,0,0,0.511057 -18247,5201:112,-12,-21,0,0,0.506846 -18248,5201:111,-11,-21,0,0,0.508284 -18249,5201:110,-10,-21,0,0,0.508284 -18250,5200:219,-9,-21,0,0,0.50415 -18251,5200:218,-8,-21,0,0,0.500117 -18252,5200:217,-7,-21,0,0,0.496162 -18253,5200:216,-6,-21,0,0,0.492668 -18254,5200:215,-5,-21,0,0,0.489536 -18255,5200:114,-4,-21,0,0,0.486712 -18256,5200:113,-3,-21,0,0,0.482786 -18257,5200:112,-2,-21,0,0,0.47576 -18258,5200:111,-1,-21,0,0,0.471099 -18259,3200:111,0,-21,0,0,0.471559 -18260,3200:111,1,-21,0,0,0.469793 -18261,3200:112,2,-21,0,0,0.466545 -18262,3200:113,3,-21,0,0,0.456408 -18263,3200:114,4,-21,0,0,0.449687 -18264,3200:215,5,-21,0,0,0.446638 -18265,3200:216,6,-21,0,0,0.443237 -18266,3200:217,7,-21,0,0,0.440856 -18267,3200:218,8,-21,0,0,0.439894 -18268,3200:219,9,-21,0,0,0.437085 -18269,3201:110,10,-21,0,0,0.436327 -18270,3201:111,11,-21,0,0,0.43921 -18271,3201:112,12,-21,0,0,0.439463 -18272,3201:113,13,-21,0,0,0.441438 -18273,3201:114,14,-21,0,0,0.437085 -18274,3201:215,15,-21,0,0,0.39633 -18275,3203:113,33,-21,0,0,0.589132 -18276,3203:114,34,-21,0,0,0.59112 -18277,3203:215,35,-21,0,0,0.587763 -18278,3203:216,36,-21,0,0,0.556689 -18279,3203:217,37,-21,0,0,0.551994 -18280,3203:218,38,-21,0,0,0.547747 -18281,3203:219,39,-21,0,0,0.550443 -18282,3204:110,40,-21,0,0,0.553543 -18283,3204:111,41,-21,0,0,0.56365 -18284,3204:112,42,-21,0,0,0.566428 -18285,3204:113,43,-21,0,0,0.568042 -18286,3204:114,44,-21,0,0,0.568521 -18287,3204:215,45,-21,0,0,0.552705 -18288,3204:216,46,-21,0,0,0.545404 -18289,3204:217,47,-21,0,0,0.542167 -18290,3204:218,48,-21,0,0,0.544614 -18291,3204:219,49,-21,0,0,0.536014 -18292,3205:110,50,-21,0,0,0.536398 -18293,3205:111,51,-21,0,0,0.54181 -18294,3205:112,52,-21,0,0,0.531029 -18295,3205:113,53,-21,0,0,0.534277 -18296,3205:114,54,-21,0,0,0.534993 -18297,3205:215,55,-21,0,0,0.53131 -18298,3205:216,56,-21,0,0,0.527803 -18299,3205:217,57,-21,0,0,0.529211 -18300,3205:218,58,-21,0,0,0.533254 -18301,3205:219,59,-21,0,0,0.53218 -18302,3206:110,60,-21,0,0,0.524909 -18303,3206:111,61,-21,0,0,0.52496 -18304,3206:112,62,-21,0,0,0.532231 -18305,3206:113,63,-21,0,0,0.51991 -18306,3206:114,64,-21,0,0,0.527188 -18307,3206:215,65,-21,0,0,0.530466 -18308,3206:216,66,-21,0,0,0.523295 -18309,3206:217,67,-21,0,0,0.529365 -18310,3206:218,68,-21,0,0,0.533663 -18311,3206:219,69,-21,0,0,0.531847 -18312,3207:110,70,-21,0,0,0.522423 -18313,3207:111,71,-21,0,0,0.523115 -18314,3207:112,72,-21,0,0,0.5266 -18315,3207:114,74,-21,0,0,0.517473 -18316,3207:215,75,-21,0,0,0.518885 -18317,3207:216,76,-21,0,0,0.524038 -18318,3207:217,77,-21,0,0,0.522372 -18319,3207:218,78,-21,0,0,0.515216 -18320,3207:219,79,-21,0,0,0.518218 -18321,3208:110,80,-21,0,0,0.516832 -18322,3208:111,81,-21,0,0,0.508824 -18323,3208:112,82,-21,0,0,0.508952 -18649,3216:206,166,-20,0,0,0.53264 -18324,3208:113,83,-21,0,0,0.496367 -18325,3208:114,84,-21,0,0,0.50415 -18326,3208:215,85,-21,0,0,0.497985 -18327,3208:216,86,-21,0,0,0.49367 -18328,3208:217,87,-21,0,0,0.487534 -18329,3208:218,88,-21,0,0,0.481426 -18330,3208:219,89,-21,0,0,0.481016 -18331,3209:110,90,-21,0,0,0.479888 -18332,3209:111,91,-21,0,0,0.469486 -18333,3209:112,92,-21,0,0,0.463707 -18334,3209:113,93,-21,0,0,0.460515 -18335,3209:114,94,-21,0,0,0.460694 -18336,3209:215,95,-21,0,0,0.460106 -18337,3209:216,96,-21,0,0,0.453733 -18338,3209:217,97,-21,0,0,0.453962 -18339,3209:218,98,-21,0,0,0.448924 -18340,3209:219,99,-21,0,0,0.449077 -18341,3210:110,100,-21,0,0,0.464346 -18342,3210:111,101,-21,0,0,0.45437 -18343,3210:112,102,-21,0,0,0.443136 -18344,3210:113,103,-21,0,0,0.441387 -18345,3210:114,104,-21,0,0,0.444354 -18346,3210:215,105,-21,0,0,0.466595 -18347,3210:216,106,-21,0,0,0.470791 -18348,3210:217,107,-21,0,0,0.459086 -18349,3210:218,108,-21,0,0,0.472968 -18350,3210:219,109,-21,0,0,0.465675 -18351,3211:110,110,-21,0,0,0.472891 -18352,3211:111,111,-21,0,0,0.476504 -18353,3211:112,112,-21,0,0,0.519988 -18354,3211:113,113,-21,0,0,0.533254 -18355,3211:114,114,-21,0,0,0.518551 -18356,3215:114,154,-21,0,0,0.586244 -18357,3215:215,155,-21,0,0,0.563929 -18358,3215:216,156,-21,0,0,0.54232 -18359,3215:217,157,-21,0,0,0.534583 -18360,3215:218,158,-21,0,0,0.53154 -18361,3215:219,159,-21,0,0,0.527829 -18362,3216:110,160,-21,0,0,0.523935 -18363,3216:111,161,-21,0,0,0.521628 -18364,3216:112,162,-21,0,0,0.527803 -18365,3216:113,163,-21,0,0,0.527471 -18366,3216:114,164,-21,0,0,0.523269 -18367,3216:215,165,-21,0,0,0.519012 -18368,3216:216,166,-21,0,0,0.513624 -18369,3216:217,167,-21,0,0,0.508541 -18370,3216:218,168,-21,0,0,0.49891 -18371,3216:219,169,-21,0,0,0.508438 -18372,3217:110,170,-21,0,0,0.504227 -18373,3217:111,171,-21,0,0,0.500348 -18374,3217:112,172,-21,0,0,0.50397 -18375,3217:113,173,-21,0,0,0.508464 -18376,3217:114,174,-21,0,0,0.506127 -18377,3217:215,175,-21,0,0,0.503379 -18378,3217:216,176,-21,0,0,0.505126 -18379,3217:217,177,-21,0,0,0.505049 -18380,3217:218,178,-21,0,0,0.502557 -18381,3217:219,179,-21,0,0,0.496393 -18382,3218:110,180,-21,0,0,0.495314 -18383,5218:100,-180,-20,0,0,0.514805 -18384,5217:209,-179,-20,0,0,0.512213 -18385,5217:208,-178,-20,0,0,0.512213 -18386,5217:207,-177,-20,0,0,0.510184 -18387,5217:206,-176,-20,0,0,0.50397 -18388,5217:205,-175,-20,0,0,0.514625 -18389,5217:104,-174,-20,0,0,0.509388 -18390,5217:103,-173,-20,0,0,0.506846 -18391,5217:102,-172,-20,0,0,0.508593 -18392,5217:101,-171,-20,0,0,0.511596 -18393,5217:100,-170,-20,0,0,0.503611 -18394,5216:209,-169,-20,0,0,0.508028 -18395,5216:208,-168,-20,0,0,0.506512 -18396,5216:207,-167,-20,0,0,0.510005 -18397,5216:206,-166,-20,0,0,0.499012 -18398,5216:205,-165,-20,0,0,0.508515 -18399,5216:104,-164,-20,0,0,0.499988 -18400,5216:103,-163,-20,0,0,0.510878 -18401,5216:102,-162,-20,0,0,0.512213 -18402,5216:101,-161,-20,0,0,0.509363 -18403,5216:100,-160,-20,0,0,0.504715 -18404,5215:209,-159,-20,0,0,0.512726 -18405,5215:208,-158,-20,0,0,0.519731 -18406,5215:207,-157,-20,0,0,0.523115 -18407,5215:206,-156,-20,0,0,0.522448 -18408,5215:205,-155,-20,0,0,0.523448 -18409,5215:104,-154,-20,0,0,0.525908 -18410,5215:103,-153,-20,0,0,0.526548 -18411,5215:102,-152,-20,0,0,0.529544 -18412,5215:101,-151,-20,0,0,0.527803 -18413,5215:100,-150,-20,0,0,0.527957 -18414,5214:209,-149,-20,0,0,0.534558 -18415,5214:208,-148,-20,0,0,0.533203 -18416,5214:207,-147,-20,0,0,0.534149 -18417,5214:206,-146,-20,0,0,0.52852 -18418,5214:205,-145,-20,0,0,0.531847 -18419,5214:104,-144,-20,0,0,0.530414 -18420,5214:103,-143,-20,0,0,0.526241 -18421,5214:102,-142,-20,0,0,0.525882 -18422,5214:101,-141,-20,0,0,0.523397 -18423,5214:100,-140,-20,0,0,0.520628 -18424,5213:209,-139,-20,0,0,0.515062 -18425,5213:208,-138,-20,0,0,0.523628 -18426,5213:207,-137,-20,0,0,0.525652 -18427,5213:206,-136,-20,0,0,0.521398 -18428,5213:205,-135,-20,0,0,0.52209 -18429,5213:104,-134,-20,0,0,0.521962 -18430,5213:103,-133,-20,0,0,0.521936 -18431,5213:102,-132,-20,0,0,0.527086 -18432,5213:101,-131,-20,0,0,0.524064 -18433,5213:100,-130,-20,0,0,0.52232 -18434,5212:209,-129,-20,0,0,0.516601 -18435,5212:208,-128,-20,0,0,0.509106 -18436,5212:207,-127,-20,0,0,0.506435 -18437,5212:206,-126,-20,0,0,0.501427 -18438,5212:205,-125,-20,0,0,0.497985 -18439,5212:104,-124,-20,0,0,0.501787 -18440,5212:103,-123,-20,0,0,0.495648 -18441,5212:102,-122,-20,0,0,0.492849 -18442,5212:101,-121,-20,0,0,0.498088 -18443,5212:100,-120,-20,0,0,0.495031 -18444,5211:209,-119,-20,0,0,0.499526 -18445,5211:208,-118,-20,0,0,0.500811 -18446,5211:207,-117,-20,0,0,0.497754 -18447,5211:206,-116,-20,0,0,0.499809 -18448,5211:205,-115,-20,0,0,0.501453 -18449,5211:104,-114,-20,0,0,0.50397 -18450,5211:103,-113,-20,0,0,0.501863 -18451,5211:102,-112,-20,0,0,0.500888 -18452,5211:101,-111,-20,0,0,0.504971 -18453,5211:100,-110,-20,0,0,0.50492 -18454,5210:209,-109,-20,0,0,0.505614 -18455,5210:208,-108,-20,0,0,0.505614 -18456,5210:207,-107,-20,0,0,0.501581 -18457,5210:206,-106,-20,0,0,0.497574 -18458,5210:205,-105,-20,0,0,0.499937 -18459,5210:104,-104,-20,0,0,0.504201 -18460,5210:103,-103,-20,0,0,0.50266 -18461,5210:102,-102,-20,0,0,0.494621 -18462,5210:101,-101,-20,0,0,0.490126 -18463,5210:100,-100,-20,0,0,0.490717 -18464,5209:209,-99,-20,0,0,0.488406 -18465,5209:208,-98,-20,0,0,0.484428 -18466,5209:207,-97,-20,0,0,0.478144 -18467,5209:206,-96,-20,0,0,0.470151 -18468,5209:205,-95,-20,0,0,0.465803 -18469,5209:104,-94,-20,0,0,0.46174 -18470,5209:103,-93,-20,0,0,0.45358 -18471,5209:102,-92,-20,0,0,0.446181 -18472,5209:101,-91,-20,0,0,0.441691 -18473,5209:100,-90,-20,0,0,0.43711 -18474,5208:209,-89,-20,0,0,0.431784 -18475,5208:208,-88,-20,0,0,0.429039 -18476,5208:207,-87,-20,0,0,0.426172 -18477,5208:206,-86,-20,0,0,0.423209 -18478,5208:205,-85,-20,0,0,0.421605 -18479,5208:104,-84,-20,0,0,0.423837 -18480,5208:103,-83,-20,0,0,0.422683 -18481,5208:102,-82,-20,0,0,0.418152 -18482,5208:101,-81,-20,0,0,0.410772 -18483,5208:100,-80,-20,0,0,0.409131 -18484,5207:209,-79,-20,0,0,0.408014 -18485,5207:208,-78,-20,0,0,0.403802 -18486,5207:207,-77,-20,0,0,0.39385 -18487,5207:206,-76,-20,0,0,0.386687 -18488,5207:205,-75,-20,0,0,0.382941 -18489,5207:104,-74,-20,0,0,0.384691 -18490,5207:103,-73,-20,0,0,0.386054 -18491,5207:102,-72,-20,0,0,0.394808 -18492,5207:101,-71,-20,0,0,0.38299 -18493,5204:208,-48,-20,0,0,0.591046 -18494,5204:207,-47,-20,0,0,0.581576 -18495,5204:206,-46,-20,0,0,0.601015 -18496,5204:205,-45,-20,0,0,0.588858 -18497,5204:104,-44,-20,0,0,0.590996 -18498,5204:103,-43,-20,0,0,0.593948 -18499,5204:102,-42,-20,0,0,0.578272 -18500,5204:101,-41,-20,0,0,0.577144 -18501,5204:100,-40,-20,0,0,0.579074 -18502,5203:209,-39,-20,0,0,0.577395 -18503,5203:208,-38,-20,0,0,0.57594 -18504,5203:207,-37,-20,0,0,0.578222 -18505,5203:206,-36,-20,0,0,0.571845 -18506,5203:205,-35,-20,0,0,0.55859 -18507,5203:104,-34,-20,0,0,0.561856 -18508,5203:103,-33,-20,0,0,0.560894 -18509,5203:102,-32,-20,0,0,0.558818 -18510,5203:101,-31,-20,0,0,0.55466 -18511,5203:100,-30,-20,0,0,0.553848 -18512,5202:209,-29,-20,0,0,0.556943 -18513,5202:208,-28,-20,0,0,0.554812 -18514,5202:207,-27,-20,0,0,0.550672 -18515,5202:206,-26,-20,0,0,0.547543 -18516,5202:205,-25,-20,0,0,0.542855 -18517,5202:104,-24,-20,0,0,0.539998 -18518,5202:103,-23,-20,0,0,0.537164 -18519,5202:102,-22,-20,0,0,0.5365 -18520,5202:101,-21,-20,0,0,0.535452 -18521,5202:100,-20,-20,0,0,0.537062 -18522,5201:209,-19,-20,0,0,0.535555 -18523,5201:208,-18,-20,0,0,0.535069 -18524,5201:207,-17,-20,0,0,0.534685 -18525,5201:206,-16,-20,0,0,0.534021 -18526,5201:205,-15,-20,0,0,0.533126 -18527,5201:104,-14,-20,0,0,0.533331 -18528,5201:103,-13,-20,0,0,0.527982 -18529,5201:102,-12,-20,0,0,0.526958 -18530,5201:101,-11,-20,0,0,0.526933 -18531,5201:100,-10,-20,0,0,0.523781 -18532,5200:209,-9,-20,0,0,0.518756 -18533,5200:208,-8,-20,0,0,0.51478 -18534,5200:207,-7,-20,0,0,0.513445 -18535,5200:206,-6,-20,0,0,0.509928 -18536,5200:205,-5,-20,0,0,0.506461 -18537,5200:104,-4,-20,0,0,0.502634 -18538,5200:103,-3,-20,0,0,0.497728 -18539,5200:102,-2,-20,0,0,0.491821 -20488,3107:131,71,-13,0,0,0.60728 -18540,5200:101,-1,-20,0,0,0.487277 -18541,3200:101,0,-20,0,0,0.484813 -18542,3200:101,1,-20,0,0,0.481862 -18543,3200:102,2,-20,0,0,0.472507 -18544,3200:103,3,-20,0,0,0.46335 -18545,3200:104,4,-20,0,0,0.458066 -18546,3200:205,5,-20,0,0,0.453427 -18547,3200:206,6,-20,0,0,0.450374 -18548,3200:207,7,-20,0,0,0.446638 -18549,3200:208,8,-20,0,0,0.444683 -18550,3200:209,9,-20,0,0,0.444176 -18551,3201:100,10,-20,0,0,0.443289 -18552,3201:101,11,-20,0,0,0.44339 -18553,3201:102,12,-20,0,0,0.439767 -18554,3201:103,13,-20,0,0,0.435544 -18555,3201:104,14,-20,0,0,0.422332 -18556,3203:103,33,-20,0,0,0.592014 -18557,3203:104,34,-20,0,0,0.60728 -18558,3203:205,35,-20,0,0,0.610901 -18559,3203:206,36,-20,0,0,0.60652 -18560,3203:207,37,-20,0,0,0.58739 -18561,3203:208,38,-20,0,0,0.561704 -18562,3203:209,39,-20,0,0,0.568471 -18563,3204:100,40,-20,0,0,0.581651 -18564,3204:101,41,-20,0,0,0.581676 -18565,3204:102,42,-20,0,0,0.582501 -18566,3204:103,43,-20,0,0,0.59422 -18567,3204:104,44,-20,0,0,0.612146 -18568,3204:205,45,-20,0,0,0.579349 -18569,3204:206,46,-20,0,0,0.570158 -18570,3204:207,47,-20,0,0,0.567916 -18571,3204:208,48,-20,0,0,0.563828 -18572,3204:209,49,-20,0,0,0.569302 -18573,3205:100,50,-20,0,0,0.559046 -18574,3205:101,51,-20,0,0,0.558615 -18575,3205:102,52,-20,0,0,0.561755 -18576,3205:103,53,-20,0,0,0.554279 -18577,3205:104,54,-20,0,0,0.554279 -18578,3205:205,55,-20,0,0,0.557044 -18579,3205:206,56,-20,0,0,0.551104 -18580,3205:207,57,-20,0,0,0.546627 -18581,3205:208,58,-20,0,0,0.555751 -18582,3205:209,59,-20,0,0,0.558033 -18583,3206:100,60,-20,0,0,0.545022 -18584,3206:101,61,-20,0,0,0.542498 -18585,3206:102,62,-20,0,0,0.554051 -18586,3206:103,63,-20,0,0,0.553645 -18587,3206:104,64,-20,0,0,0.552527 -18588,3206:205,65,-20,0,0,0.550062 -18589,3206:206,66,-20,0,0,0.550951 -18590,3206:207,67,-20,0,0,0.547213 -18591,3206:208,68,-20,0,0,0.543799 -18592,3206:209,69,-20,0,0,0.543493 -18593,3207:100,70,-20,0,0,0.53862 -18594,3207:101,71,-20,0,0,0.533075 -18595,3207:102,72,-20,0,0,0.532027 -18596,3207:104,74,-20,0,0,0.528546 -18597,3207:205,75,-20,0,0,0.530849 -18598,3207:206,76,-20,0,0,0.525856 -18599,3207:207,77,-20,0,0,0.520141 -18600,3207:208,78,-20,0,0,0.521218 -18601,3207:209,79,-20,0,0,0.515703 -18602,3208:100,80,-20,0,0,0.513162 -18603,3208:101,81,-20,0,0,0.51365 -18604,3208:102,82,-20,0,0,0.506846 -18605,3208:103,83,-20,0,0,0.507976 -18606,3208:104,84,-20,0,0,0.509466 -18607,3208:205,85,-20,0,0,0.49629 -18608,3208:206,86,-20,0,0,0.496238 -18609,3208:207,87,-20,0,0,0.49082 -18610,3208:208,88,-20,0,0,0.48987 -18611,3208:209,89,-20,0,0,0.483376 -18612,3209:100,90,-20,0,0,0.479118 -18613,3209:101,91,-20,0,0,0.473941 -18614,3209:102,92,-20,0,0,0.476657 -18615,3209:103,93,-20,0,0,0.477657 -18616,3209:104,94,-20,0,0,0.475786 -18617,3209:205,95,-20,0,0,0.46634 -18618,3209:206,96,-20,0,0,0.467235 -18619,3209:207,97,-20,0,0,0.47594 -18620,3209:208,98,-20,0,0,0.458142 -18621,3209:209,99,-20,0,0,0.462175 -18622,3210:100,100,-20,0,0,0.481529 -18623,3210:101,101,-20,0,0,0.474838 -18624,3210:102,102,-20,0,0,0.466417 -18625,3210:103,103,-20,0,0,0.465087 -18626,3210:104,104,-20,0,0,0.480759 -18627,3210:205,105,-20,0,0,0.472814 -18628,3210:206,106,-20,0,0,0.47389 -18629,3210:207,107,-20,0,0,0.492335 -18630,3210:208,108,-20,0,0,0.488047 -18631,3210:209,109,-20,0,0,0.490563 -18632,3211:100,110,-20,0,0,0.501581 -18633,3211:101,111,-20,0,0,0.50908 -18634,3211:102,112,-20,0,0,0.531821 -18635,3211:103,113,-20,0,0,0.540382 -18636,3211:104,114,-20,0,0,0.565949 -18637,3215:104,154,-20,0,0,0.587689 -18638,3215:205,155,-20,0,0,0.568446 -18639,3215:206,156,-20,0,0,0.563575 -18640,3215:207,157,-20,0,0,0.544666 -18641,3215:208,158,-20,0,0,0.540202 -18642,3215:209,159,-20,0,0,0.538313 -18643,3216:100,160,-20,0,0,0.531847 -18644,3216:101,161,-20,0,0,0.531233 -18645,3216:102,162,-20,0,0,0.535606 -18646,3216:103,163,-20,0,0,0.529416 -18647,3216:104,164,-20,0,0,0.52765 -18648,3216:205,165,-20,0,0,0.530977 -18650,3216:207,167,-20,0,0,0.520013 -18651,3216:208,168,-20,0,0,0.514677 -18652,3216:209,169,-20,0,0,0.518654 -18653,3217:100,170,-20,0,0,0.519295 -18654,3217:101,171,-20,0,0,0.520731 -18655,3217:102,172,-20,0,0,0.513291 -18656,3217:103,173,-20,0,0,0.517551 -18657,3217:104,174,-20,0,0,0.515164 -18658,3217:205,175,-20,0,0,0.51714 -18659,3217:206,176,-20,0,0,0.513496 -18660,3217:207,177,-20,0,0,0.509876 -18661,3217:208,178,-20,0,0,0.510287 -18662,3217:209,179,-20,0,0,0.512957 -18663,3218:100,180,-20,0,0,0.514805 -18664,5118:390,-180,-19,0,0,0.526318 -18665,5117:499,-179,-19,0,0,0.530107 -18666,5117:498,-178,-19,0,0,0.535734 -18667,5117:497,-177,-19,0,0,0.529365 -18668,5117:496,-176,-19,0,0,0.530031 -18669,5117:495,-175,-19,0,0,0.525011 -18670,5117:394,-174,-19,0,0,0.524627 -18671,5117:393,-173,-19,0,0,0.527547 -18672,5117:392,-172,-19,0,0,0.529544 -18673,5117:391,-171,-19,0,0,0.517551 -18674,5117:390,-170,-19,0,0,0.523859 -18675,5116:499,-169,-19,0,0,0.525549 -18676,5116:498,-168,-19,0,0,0.526626 -18677,5116:497,-167,-19,0,0,0.523833 -18678,5116:496,-166,-19,0,0,0.518936 -18679,5116:495,-165,-19,0,0,0.533996 -18680,5116:394,-164,-19,0,0,0.527086 -18681,5116:393,-163,-19,0,0,0.518371 -18682,5116:392,-162,-19,0,0,0.529929 -18683,5116:391,-161,-19,0,0,0.527342 -18684,5116:390,-160,-19,0,0,0.53742 -18685,5115:499,-159,-19,0,0,0.5365 -18686,5115:498,-158,-19,0,0,0.532027 -18687,5115:497,-157,-19,0,0,0.53021 -18688,5115:496,-156,-19,0,0,0.540458 -18689,5115:495,-155,-19,0,0,0.539973 -18690,5115:394,-154,-19,0,0,0.542983 -18691,5115:393,-153,-19,0,0,0.543468 -18692,5115:392,-152,-19,0,0,0.53982 -18693,5115:391,-151,-19,0,0,0.551053 -18694,5115:390,-150,-19,0,0,0.547467 -18695,5114:499,-149,-19,0,0,0.546398 -18696,5114:498,-148,-19,0,0,0.546448 -18697,5114:497,-147,-19,0,0,0.548383 -18698,5114:496,-146,-19,0,0,0.551511 -18699,5114:495,-145,-19,0,0,0.546627 -18700,5114:394,-144,-19,0,0,0.545073 -18701,5114:393,-143,-19,0,0,0.541453 -18702,5114:392,-142,-19,0,0,0.540126 -18703,5114:391,-141,-19,0,0,0.541351 -18704,5114:390,-140,-19,0,0,0.54907 -18705,5113:499,-139,-19,0,0,0.545761 -18706,5113:498,-138,-19,0,0,0.545506 -18707,5113:497,-137,-19,0,0,0.549248 -18708,5113:496,-136,-19,0,0,0.545965 -18709,5113:495,-135,-19,0,0,0.552578 -18710,5113:394,-134,-19,0,0,0.543442 -18711,5113:393,-133,-19,0,0,0.552374 -18712,5113:392,-132,-19,0,0,0.534839 -18713,5113:391,-131,-19,0,0,0.544105 -18714,5113:390,-130,-19,0,0,0.539029 -18715,5112:499,-129,-19,0,0,0.533816 -18716,5112:498,-128,-19,0,0,0.531361 -18717,5112:497,-127,-19,0,0,0.52683 -18718,5112:496,-126,-19,0,0,0.524909 -18719,5112:495,-125,-19,0,0,0.523628 -18720,5112:394,-124,-19,0,0,0.516499 -18721,5112:393,-123,-19,0,0,0.51832 -18722,5112:392,-122,-19,0,0,0.520988 -18723,5112:391,-121,-19,0,0,0.520013 -18724,5112:390,-120,-19,0,0,0.517704 -18725,5111:499,-119,-19,0,0,0.518423 -18726,5111:498,-118,-19,0,0,0.516293 -18727,5111:497,-117,-19,0,0,0.514241 -18728,5111:496,-116,-19,0,0,0.519474 -18729,5111:495,-115,-19,0,0,0.521833 -18730,5111:394,-114,-19,0,0,0.523192 -18731,5111:393,-113,-19,0,0,0.521398 -18732,5111:392,-112,-19,0,0,0.522115 -18733,5111:391,-111,-19,0,0,0.521244 -18734,5111:390,-110,-19,0,0,0.517551 -18735,5110:499,-109,-19,0,0,0.518243 -18736,5110:498,-108,-19,0,0,0.51832 -18737,5110:497,-107,-19,0,0,0.513624 -18738,5110:496,-106,-19,0,0,0.512546 -18739,5110:495,-105,-19,0,0,0.517576 -18740,5110:394,-104,-19,0,0,0.514061 -18741,5110:393,-103,-19,0,0,0.510596 -18742,5110:392,-102,-19,0,0,0.510672 -18743,5110:391,-101,-19,0,0,0.507052 -18744,5110:390,-100,-19,0,0,0.503328 -18745,5109:499,-99,-19,0,0,0.498576 -18746,5109:498,-98,-19,0,0,0.489947 -18747,5109:497,-97,-19,0,0,0.483915 -18748,5109:496,-96,-19,0,0,0.475504 -18749,5109:495,-95,-19,0,0,0.467695 -18750,5109:394,-94,-19,0,0,0.46003 -18751,5109:393,-93,-19,0,0,0.453224 -18752,5109:392,-92,-19,0,0,0.446333 -18753,5109:391,-91,-19,0,0,0.441717 -18754,5109:390,-90,-19,0,0,0.438223 -18755,5108:499,-89,-19,0,0,0.435468 -18756,5108:498,-88,-19,0,0,0.431936 -18757,5108:497,-87,-19,0,0,0.429215 -18758,5108:496,-86,-19,0,0,0.424615 -18759,5108:495,-85,-19,0,0,0.423009 -18760,5108:394,-84,-19,0,0,0.422157 -18761,5108:393,-83,-19,0,0,0.418002 -18762,5108:392,-82,-19,0,0,0.413161 -18763,5108:391,-81,-19,0,0,0.412514 -18764,5108:390,-80,-19,0,0,0.409504 -18765,5107:499,-79,-19,0,0,0.406824 -18766,5107:498,-78,-19,0,0,0.400344 -18767,5107:497,-77,-19,0,0,0.394906 -18768,5107:496,-76,-19,0,0,0.394145 -18769,5107:495,-75,-19,0,0,0.39211 -18770,5107:394,-74,-19,0,0,0.391939 -18771,5107:393,-73,-19,0,0,0.398594 -18772,5107:392,-72,-19,0,0,0.407468 -18773,5107:391,-71,-19,0,0,0.394832 -18774,5104:497,-47,-19,0,0,0.577871 -18775,5104:496,-46,-19,0,0,0.554762 -18776,5104:495,-45,-19,0,0,0.604802 -18777,5104:394,-44,-19,0,0,0.611511 -18778,5104:393,-43,-19,0,0,0.608236 -18779,5104:392,-42,-19,0,0,0.600275 -18780,5104:391,-41,-19,0,0,0.603378 -18781,5104:390,-40,-19,0,0,0.6063 -18782,5103:499,-39,-19,0,0,0.602812 -18783,5103:498,-38,-19,0,0,0.599708 -18784,5103:497,-37,-19,0,0,0.598894 -18785,5103:496,-36,-19,0,0,0.596349 -18786,5103:495,-35,-19,0,0,0.588609 -18787,5103:394,-34,-19,0,0,0.583326 -18788,5103:393,-33,-19,0,0,0.582726 -18789,5103:392,-32,-19,0,0,0.58355 -18790,5103:391,-31,-19,0,0,0.581951 -18791,5103:390,-30,-19,0,0,0.58035 -18792,5102:499,-29,-19,0,0,0.574836 -18793,5102:498,-28,-19,0,0,0.568874 -18794,5102:497,-27,-19,0,0,0.565015 -18795,5102:496,-26,-19,0,0,0.563145 -18796,5102:495,-25,-19,0,0,0.560565 -18797,5102:394,-24,-19,0,0,0.561982 -18798,5102:393,-23,-19,0,0,0.557247 -18799,5102:392,-22,-19,0,0,0.55745 -18800,5102:391,-21,-19,0,0,0.555954 -18801,5102:390,-20,-19,0,0,0.552908 -18802,5101:499,-19,-19,0,0,0.552984 -18803,5101:498,-18,-19,0,0,0.552629 -18804,5101:497,-17,-19,0,0,0.549146 -18805,5101:496,-16,-19,0,0,0.551918 -18806,5101:495,-15,-19,0,0,0.551663 -18807,5101:394,-14,-19,0,0,0.550367 -18808,5101:393,-13,-19,0,0,0.549324 -18809,5101:392,-12,-19,0,0,0.545328 -18810,5101:391,-11,-19,0,0,0.541529 -18811,5101:390,-10,-19,0,0,0.54028 -18812,5100:499,-9,-19,0,0,0.539437 -18813,5100:498,-8,-19,0,0,0.537522 -18814,5100:497,-7,-19,0,0,0.532896 -18815,5100:496,-6,-19,0,0,0.524217 -18816,5100:495,-5,-19,0,0,0.517166 -18817,5100:394,-4,-19,0,0,0.513522 -18818,5100:393,-3,-19,0,0,0.508181 -18819,5100:392,-2,-19,0,0,0.503302 -18820,5100:391,-1,-19,0,0,0.494723 -18821,3100:391,0,-19,0,0,0.487662 -18822,3100:391,1,-19,0,0,0.481272 -18823,3100:392,2,-19,0,0,0.472123 -18824,3100:393,3,-19,0,0,0.46404 -18825,3100:394,4,-19,0,0,0.45855 -18826,3100:495,5,-19,0,0,0.45465 -18827,3100:496,6,-19,0,0,0.452638 -18828,3100:497,7,-19,0,0,0.452486 -18829,3100:498,8,-19,0,0,0.44801 -18830,3100:499,9,-19,0,0,0.449306 -18831,3101:390,10,-19,0,0,0.446815 -18832,3101:391,11,-19,0,0,0.450119 -18833,3101:392,12,-19,0,0,0.450374 -18834,3101:393,13,-19,0,0,0.446942 -18835,3101:394,14,-19,0,0,0.417727 -18836,3103:495,35,-19,0,0,0.606055 -18837,3103:496,36,-19,0,0,0.618274 -18838,3103:497,37,-19,0,0,0.605932 -18839,3103:498,38,-19,0,0,0.604213 -18840,3103:499,39,-19,0,0,0.594369 -18841,3104:390,40,-19,0,0,0.606079 -18842,3104:391,41,-19,0,0,0.596794 -18843,3104:392,42,-19,0,0,0.607893 -18844,3104:393,43,-19,0,0,0.639965 -18845,3104:497,47,-19,0,0,0.575036 -18846,3104:498,48,-19,0,0,0.602443 -18847,3104:499,49,-19,0,0,0.590599 -18848,3105:390,50,-19,0,0,0.58953 -18849,3105:391,51,-19,0,0,0.571593 -18850,3105:392,52,-19,0,0,0.579925 -18851,3105:393,53,-19,0,0,0.57363 -18852,3105:394,54,-19,0,0,0.564181 -18853,3105:495,55,-19,0,0,0.565015 -18854,3105:496,56,-19,0,0,0.572976 -18855,3105:497,57,-19,0,0,0.568143 -18856,3105:498,58,-19,0,0,0.569882 -18857,3105:499,59,-19,0,0,0.576492 -18858,3106:390,60,-19,0,0,0.551333 -18859,3106:391,61,-19,0,0,0.563094 -18860,3106:392,62,-19,0,0,0.566756 -18861,3106:393,63,-19,0,0,0.56312 -18862,3106:394,64,-19,0,0,0.558362 -18863,3106:495,65,-19,0,0,0.562108 -18864,3106:496,66,-19,0,0,0.552578 -18865,3106:497,67,-19,0,0,0.554102 -18866,3106:498,68,-19,0,0,0.551155 -18867,3106:499,69,-19,0,0,0.546474 -18868,3107:390,70,-19,0,0,0.53982 -18869,3107:391,71,-19,0,0,0.535964 -18870,3107:392,72,-19,0,0,0.540509 -18871,3107:394,74,-19,0,0,0.538365 -18872,3107:495,75,-19,0,0,0.530056 -18873,3107:496,76,-19,0,0,0.529135 -18874,3107:497,77,-19,0,0,0.525652 -18875,3107:498,78,-19,0,0,0.523064 -18876,3107:499,79,-19,0,0,0.516524 -18877,3108:390,80,-19,0,0,0.516011 -18878,3108:391,81,-19,0,0,0.519552 -18879,3108:392,82,-19,0,0,0.519654 -18880,3108:393,83,-19,0,0,0.512161 -18881,3108:394,84,-19,0,0,0.510929 -18882,3108:495,85,-19,0,0,0.509517 -18883,3108:496,86,-19,0,0,0.505074 -18884,3108:497,87,-19,0,0,0.502249 -18885,3108:498,88,-19,0,0,0.493388 -18886,3108:499,89,-19,0,0,0.489074 -18887,3109:390,90,-19,0,0,0.491898 -18888,3109:391,91,-19,0,0,0.48987 -18889,3109:392,92,-19,0,0,0.48602 -18890,3109:393,93,-19,0,0,0.48643 -18891,3109:394,94,-19,0,0,0.490614 -18892,3109:495,95,-19,0,0,0.480631 -18893,3109:496,96,-19,0,0,0.48058 -18894,3109:497,97,-19,0,0,0.488817 -18895,3109:498,98,-19,0,0,0.492438 -18896,3109:499,99,-19,0,0,0.490178 -18897,3110:390,100,-19,0,0,0.481606 -18898,3110:391,101,-19,0,0,0.4794 -18899,3110:392,102,-19,0,0,0.476504 -18900,3110:393,103,-19,0,0,0.493233 -18901,3110:394,104,-19,0,0,0.491719 -18902,3110:495,105,-19,0,0,0.48276 -18903,3110:496,106,-19,0,0,0.480144 -18904,3110:497,107,-19,0,0,0.498011 -18905,3110:498,108,-19,0,0,0.503302 -18906,3110:499,109,-19,0,0,0.502454 -18907,3111:390,110,-19,0,0,0.507565 -18908,3111:391,111,-19,0,0,0.534353 -18909,3111:392,112,-19,0,0,0.542218 -18910,3111:393,113,-19,0,0,0.559781 -18911,3115:393,153,-19,0,0,0.594716 -18912,3115:394,154,-19,0,0,0.595161 -18913,3115:495,155,-19,0,0,0.572273 -18914,3115:496,156,-19,0,0,0.565646 -18915,3115:497,157,-19,0,0,0.569428 -18916,3115:498,158,-19,0,0,0.566832 -18917,3115:499,159,-19,0,0,0.554762 -18918,3116:390,160,-19,0,0,0.542014 -18919,3116:391,161,-19,0,0,0.544818 -18920,3116:392,162,-19,0,0,0.544029 -18921,3116:393,163,-19,0,0,0.551409 -18922,3116:394,164,-19,0,0,0.554381 -18923,3116:495,165,-19,0,0,0.545302 -18924,3116:496,166,-19,0,0,0.535043 -18925,3116:497,167,-19,0,0,0.53627 -18926,3116:498,168,-19,0,0,0.539514 -18927,3116:499,169,-19,0,0,0.542805 -18928,3117:390,170,-19,0,0,0.533663 -18929,3117:391,171,-19,0,0,0.533918 -18930,3117:392,172,-19,0,0,0.537292 -18931,3117:393,173,-19,0,0,0.530696 -18932,3117:394,174,-19,0,0,0.524806 -18933,3117:495,175,-19,0,0,0.527266 -18934,3117:496,176,-19,0,0,0.527317 -18935,3117:497,177,-19,0,0,0.522474 -18936,3117:498,178,-19,0,0,0.52537 -18937,3117:499,179,-19,0,0,0.524627 -18938,3118:390,180,-19,0,0,0.526318 -18939,5118:380,-180,-18,0,0,0.546474 -18940,5117:489,-179,-18,0,0,0.541427 -18941,5117:488,-178,-18,0,0,0.547976 -18942,5117:487,-177,-18,0,0,0.539718 -18943,5117:486,-176,-18,0,0,0.539565 -18944,5117:485,-175,-18,0,0,0.53742 -18945,5117:384,-174,-18,0,0,0.531438 -18946,5117:383,-173,-18,0,0,0.534788 -18947,5117:382,-172,-18,0,0,0.535632 -18948,5117:381,-171,-18,0,0,0.536014 -18949,5117:380,-170,-18,0,0,0.53131 -18950,5116:489,-169,-18,0,0,0.534558 -18951,5116:488,-168,-18,0,0,0.537369 -18952,5116:487,-167,-18,0,0,0.534328 -18953,5116:486,-166,-18,0,0,0.539054 -18954,5116:485,-165,-18,0,0,0.543442 -18955,5116:384,-164,-18,0,0,0.54907 -18956,5116:383,-163,-18,0,0,0.540738 -18957,5116:382,-162,-18,0,0,0.540841 -18958,5116:381,-161,-18,0,0,0.54209 -18959,5116:380,-160,-18,0,0,0.549579 -18960,5115:489,-159,-18,0,0,0.549579 -18961,5115:488,-158,-18,0,0,0.548357 -18962,5115:487,-157,-18,0,0,0.550316 -18963,5115:486,-156,-18,0,0,0.548103 -18964,5115:485,-155,-18,0,0,0.549782 -18965,5115:384,-154,-18,0,0,0.55499 -18966,5115:383,-153,-18,0,0,0.550825 -18967,5115:382,-152,-18,0,0,0.560489 -18968,5115:381,-151,-18,0,0,0.564813 -18969,5115:380,-150,-18,0,0,0.563499 -18970,5114:489,-149,-18,0,0,0.561223 -18971,5114:488,-148,-18,0,0,0.566227 -18972,5114:487,-147,-18,0,0,0.569655 -18973,5114:486,-146,-18,0,0,0.563701 -21244,5108:103,-83,-10,0,0,0.47179 -18974,5114:485,-145,-18,0,0,0.557678 -18975,5114:384,-144,-18,0,0,0.561173 -18976,5114:383,-143,-18,0,0,0.559299 -18977,5114:382,-142,-18,0,0,0.566478 -18978,5114:381,-141,-18,0,0,0.563448 -18979,5114:380,-140,-18,0,0,0.572775 -18980,5113:489,-139,-18,0,0,0.5727 -18981,5113:488,-138,-18,0,0,0.57099 -18982,5113:487,-137,-18,0,0,0.572574 -18983,5113:486,-136,-18,0,0,0.573806 -18984,5113:485,-135,-18,0,0,0.570158 -18985,5113:384,-134,-18,0,0,0.571166 -18986,5113:383,-133,-18,0,0,0.570687 -18987,5113:382,-132,-18,0,0,0.557374 -18988,5113:381,-131,-18,0,0,0.561856 -18989,5113:380,-130,-18,0,0,0.550799 -18990,5112:489,-129,-18,0,0,0.552553 -18991,5112:488,-128,-18,0,0,0.550774 -18992,5112:487,-127,-18,0,0,0.545837 -18993,5112:486,-126,-18,0,0,0.541249 -18994,5112:485,-125,-18,0,0,0.542498 -18995,5112:384,-124,-18,0,0,0.538186 -18996,5112:383,-123,-18,0,0,0.542779 -18997,5112:382,-122,-18,0,0,0.542014 -18998,5112:381,-121,-18,0,0,0.542907 -18999,5112:380,-120,-18,0,0,0.537726 -19000,5111:489,-119,-18,0,0,0.536756 -19001,5111:488,-118,-18,0,0,0.537726 -19002,5111:487,-117,-18,0,0,0.538467 -19003,5111:486,-116,-18,0,0,0.53862 -19004,5111:485,-115,-18,0,0,0.541249 -19005,5111:384,-114,-18,0,0,0.543314 -19006,5111:383,-113,-18,0,0,0.542269 -19007,5111:382,-112,-18,0,0,0.542192 -19008,5111:381,-111,-18,0,0,0.537981 -19009,5111:380,-110,-18,0,0,0.531873 -19010,5110:489,-109,-18,0,0,0.530286 -19011,5110:488,-108,-18,0,0,0.531924 -19012,5110:487,-107,-18,0,0,0.530158 -19013,5110:486,-106,-18,0,0,0.528008 -19014,5110:485,-105,-18,0,0,0.524883 -19015,5110:384,-104,-18,0,0,0.522295 -19016,5110:383,-103,-18,0,0,0.51991 -19017,5110:382,-102,-18,0,0,0.515472 -19018,5110:381,-101,-18,0,0,0.510031 -19019,5110:380,-100,-18,0,0,0.504253 -19020,5109:489,-99,-18,0,0,0.49629 -19021,5109:488,-98,-18,0,0,0.49064 -19022,5109:487,-97,-18,0,0,0.482427 -19023,5109:486,-96,-18,0,0,0.475888 -19024,5109:485,-95,-18,0,0,0.470356 -19025,5109:384,-94,-18,0,0,0.466212 -19026,5109:383,-93,-18,0,0,0.460566 -19027,5109:382,-92,-18,0,0,0.452358 -19028,5109:381,-91,-18,0,0,0.444912 -19029,5109:380,-90,-18,0,0,0.438628 -19030,5108:489,-89,-18,0,0,0.43653 -19031,5108:488,-88,-18,0,0,0.433751 -19032,5108:487,-87,-18,0,0,0.430096 -19033,5108:486,-86,-18,0,0,0.426499 -19034,5108:485,-85,-18,0,0,0.421605 -19035,5108:384,-84,-18,0,0,0.418352 -19036,5108:383,-83,-18,0,0,0.41331 -19037,5108:382,-82,-18,0,0,0.406824 -19038,5108:381,-81,-18,0,0,0.401405 -19039,5108:380,-80,-18,0,0,0.398939 -19040,5107:489,-79,-18,0,0,0.395937 -19041,5107:488,-78,-18,0,0,0.394464 -19042,5107:487,-77,-18,0,0,0.394587 -19043,5107:486,-76,-18,0,0,0.395029 -19044,5107:485,-75,-18,0,0,0.395225 -19045,5107:384,-74,-18,0,0,0.397388 -19046,5107:383,-73,-18,0,0,0.403456 -19047,5107:382,-72,-18,0,0,0.419327 -19048,5107:381,-71,-18,0,0,0.411219 -19049,5104:384,-44,-18,0,0,0.56269 -19050,5104:383,-43,-18,0,0,0.604361 -19051,5104:382,-42,-18,0,0,0.606201 -19052,5104:381,-41,-18,0,0,0.623354 -19053,5104:380,-40,-18,0,0,0.623812 -19054,5103:489,-39,-18,0,0,0.620575 -19055,5103:488,-38,-18,0,0,0.615579 -19056,5103:487,-37,-18,0,0,0.611731 -19057,5103:486,-36,-18,0,0,0.605736 -19058,5103:485,-35,-18,0,0,0.603353 -19059,5103:384,-34,-18,0,0,0.603451 -19060,5103:383,-33,-18,0,0,0.607403 -19061,5103:382,-32,-18,0,0,0.603451 -19062,5103:381,-31,-18,0,0,0.601408 -19063,5103:380,-30,-18,0,0,0.597857 -19064,5102:489,-29,-18,0,0,0.587091 -19065,5102:488,-28,-18,0,0,0.57995 -19066,5102:487,-27,-18,0,0,0.577746 -19067,5102:486,-26,-18,0,0,0.578874 -19068,5102:485,-25,-18,0,0,0.577922 -19069,5102:384,-24,-18,0,0,0.576442 -19070,5102:383,-23,-18,0,0,0.574434 -19071,5102:382,-22,-18,0,0,0.57461 -19072,5102:381,-21,-18,0,0,0.576743 -19073,5102:380,-20,-18,0,0,0.576642 -19074,5101:489,-19,-18,0,0,0.574383 -19075,5101:488,-18,-18,0,0,0.576015 -19076,5101:487,-17,-18,0,0,0.574308 -19077,5101:486,-16,-18,0,0,0.57192 -19078,5101:485,-15,-18,0,0,0.568345 -19079,5101:384,-14,-18,0,0,0.563094 -19080,5101:383,-13,-18,0,0,0.558083 -19081,5101:382,-12,-18,0,0,0.555802 -19082,5101:381,-11,-18,0,0,0.552578 -19083,5101:380,-10,-18,0,0,0.547365 -19084,5100:489,-9,-18,0,0,0.540738 -19085,5100:488,-8,-18,0,0,0.534251 -19086,5100:487,-7,-18,0,0,0.526676 -19087,5100:486,-6,-18,0,0,0.518218 -19088,5100:485,-5,-18,0,0,0.513265 -19089,5100:384,-4,-18,0,0,0.505896 -19090,5100:383,-3,-18,0,0,0.498653 -19091,5100:382,-2,-18,0,0,0.49308 -19092,5100:381,-1,-18,0,0,0.486584 -19093,3100:381,0,-18,0,0,0.480247 -19094,3100:381,1,-18,0,0,0.474607 -19095,3100:382,2,-18,0,0,0.469973 -19096,3100:383,3,-18,0,0,0.464601 -19097,3100:384,4,-18,0,0,0.460668 -19098,3100:485,5,-18,0,0,0.460438 -19099,3100:486,6,-18,0,0,0.45804 -19100,3100:487,7,-18,0,0,0.456255 -19101,3100:488,8,-18,0,0,0.454446 -19102,3100:489,9,-18,0,0,0.455108 -19103,3101:380,10,-18,0,0,0.455949 -19104,3101:381,11,-18,0,0,0.455261 -19105,3101:382,12,-18,0,0,0.450196 -19106,3101:383,13,-18,0,0,0.443897 -19107,3101:384,14,-18,0,0,0.385566 -19108,3103:486,36,-18,0,0,0.632308 -19109,3103:487,37,-18,0,0,0.615968 -19110,3103:488,38,-18,0,0,0.613681 -19111,3103:489,39,-18,0,0,0.611438 -19112,3104:380,40,-18,0,0,0.617693 -19113,3104:381,41,-18,0,0,0.625763 -19114,3104:382,42,-18,0,0,0.648068 -19115,3104:383,43,-18,0,0,0.666784 -19116,3104:488,48,-18,0,0,0.61217 -19117,3104:489,49,-18,0,0,0.597956 -19118,3105:380,50,-18,0,0,0.598845 -19119,3105:381,51,-18,0,0,0.593526 -19120,3105:382,52,-18,0,0,0.590151 -19121,3105:383,53,-18,0,0,0.581176 -19122,3105:384,54,-18,0,0,0.576166 -19123,3105:485,55,-18,0,0,0.580376 -19124,3105:486,56,-18,0,0,0.5833 -19125,3105:487,57,-18,0,0,0.585322 -19126,3105:488,58,-18,0,0,0.585048 -19127,3105:489,59,-18,0,0,0.585097 -19128,3106:380,60,-18,0,0,0.57985 -19129,3106:381,61,-18,0,0,0.570788 -19130,3106:382,62,-18,0,0,0.569604 -19131,3106:383,63,-18,0,0,0.574509 -19132,3106:384,64,-18,0,0,0.570536 -19133,3106:485,65,-18,0,0,0.567639 -19134,3106:486,66,-18,0,0,0.561071 -19135,3106:487,67,-18,0,0,0.556588 -19136,3106:488,68,-18,0,0,0.553315 -19137,3106:489,69,-18,0,0,0.547874 -19138,3107:380,70,-18,0,0,0.549884 -19139,3107:381,71,-18,0,0,0.545684 -19140,3107:382,72,-18,0,0,0.542754 -19141,3107:384,74,-18,0,0,0.535912 -19142,3107:485,75,-18,0,0,0.533024 -19143,3107:486,76,-18,0,0,0.538211 -19144,3107:487,77,-18,0,0,0.533816 -19145,3107:488,78,-18,0,0,0.530312 -19146,3107:489,79,-18,0,0,0.530261 -19147,3108:380,80,-18,0,0,0.525882 -19148,3108:381,81,-18,0,0,0.527291 -19149,3108:382,82,-18,0,0,0.518551 -19150,3108:383,83,-18,0,0,0.523755 -19151,3108:384,84,-18,0,0,0.520833 -19152,3108:485,85,-18,0,0,0.513753 -19153,3108:486,86,-18,0,0,0.516396 -19154,3108:487,87,-18,0,0,0.509235 -19155,3108:488,88,-18,0,0,0.507745 -19156,3108:489,89,-18,0,0,0.509671 -19157,3109:380,90,-18,0,0,0.5117 -19158,3109:381,91,-18,0,0,0.506076 -19159,3109:382,92,-18,0,0,0.506051 -19160,3109:383,93,-18,0,0,0.510904 -19161,3109:384,94,-18,0,0,0.508079 -19162,3109:485,95,-18,0,0,0.501761 -19163,3109:486,96,-18,0,0,0.503251 -19164,3109:487,97,-18,0,0,0.496958 -19165,3109:488,98,-18,0,0,0.499398 -19166,3109:489,99,-18,0,0,0.491976 -19167,3110:380,100,-18,0,0,0.497677 -19168,3110:381,101,-18,0,0,0.491411 -19169,3110:382,102,-18,0,0,0.497651 -19170,3110:383,103,-18,0,0,0.507411 -19171,3110:384,104,-18,0,0,0.501478 -19172,3110:485,105,-18,0,0,0.500322 -19173,3110:486,106,-18,0,0,0.507771 -19174,3110:487,107,-18,0,0,0.517371 -19175,3110:488,108,-18,0,0,0.521577 -19176,3110:489,109,-18,0,0,0.529851 -19177,3111:380,110,-18,0,0,0.529288 -19178,3111:381,111,-18,0,0,0.532589 -19179,3111:382,112,-18,0,0,0.557956 -19180,3111:383,113,-18,0,0,0.570032 -19181,3111:384,114,-18,0,0,0.565318 -19182,3115:382,152,-18,0,0,0.591641 -19183,3115:383,153,-18,0,0,0.588734 -19184,3115:384,154,-18,0,0,0.594245 -19185,3115:485,155,-18,0,0,0.588336 -19186,3115:486,156,-18,0,0,0.568546 -19187,3115:487,157,-18,0,0,0.574509 -19188,3115:488,158,-18,0,0,0.571694 -19189,3115:489,159,-18,0,0,0.560565 -19190,3116:380,160,-18,0,0,0.558438 -19191,3116:381,161,-18,0,0,0.568848 -19192,3116:382,162,-18,0,0,0.564661 -19193,3116:383,163,-18,0,0,0.561729 -19194,3116:384,164,-18,0,0,0.566277 -19195,3116:485,165,-18,0,0,0.558007 -19196,3116:486,166,-18,0,0,0.552451 -19197,3116:487,167,-18,0,0,0.551562 -19198,3116:488,168,-18,0,0,0.54996 -19199,3116:489,169,-18,0,0,0.556918 -19200,3117:380,170,-18,0,0,0.54851 -19201,3117:381,171,-18,0,0,0.543238 -19202,3117:382,172,-18,0,0,0.543111 -19203,3117:383,173,-18,0,0,0.542907 -19204,3117:384,174,-18,0,0,0.535708 -19205,3117:485,175,-18,0,0,0.534737 -19206,3117:486,176,-18,0,0,0.543391 -19207,3117:487,177,-18,0,0,0.541988 -19208,3117:488,178,-18,0,0,0.535606 -19209,3117:489,179,-18,0,0,0.542957 -19210,3118:380,180,-18,0,0,0.546474 -19211,5118:370,-180,-17,0,0,0.544283 -19212,5117:479,-179,-17,0,0,0.546882 -19213,5117:478,-178,-17,0,0,0.54968 -19214,5117:477,-177,-17,0,0,0.546499 -19215,5117:476,-176,-17,0,0,0.548154 -19216,5117:475,-175,-17,0,0,0.542422 -19217,5117:374,-174,-17,0,0,0.541912 -19218,5117:373,-173,-17,0,0,0.542192 -19219,5117:372,-172,-17,0,0,0.553492 -19220,5117:371,-171,-17,0,0,0.545761 -19221,5117:370,-170,-17,0,0,0.55085 -19222,5116:479,-169,-17,0,0,0.560869 -19223,5116:478,-168,-17,0,0,0.552248 -19224,5116:477,-167,-17,0,0,0.555396 -19225,5116:476,-166,-17,0,0,0.546677 -19226,5116:475,-165,-17,0,0,0.551333 -19227,5116:374,-164,-17,0,0,0.55897 -19228,5116:373,-163,-17,0,0,0.554838 -19229,5116:372,-162,-17,0,0,0.556866 -19230,5116:371,-161,-17,0,0,0.554736 -19231,5116:370,-160,-17,0,0,0.559932 -19232,5115:479,-159,-17,0,0,0.560691 -19233,5115:478,-158,-17,0,0,0.564838 -19234,5115:477,-157,-17,0,0,0.564054 -19235,5115:476,-156,-17,0,0,0.566403 -19236,5115:475,-155,-17,0,0,0.561957 -19237,5115:374,-154,-17,0,0,0.569353 -19238,5115:373,-153,-17,0,0,0.574359 -19239,5115:372,-152,-17,0,0,0.579449 -19240,5115:371,-151,-17,0,0,0.588012 -19241,5115:370,-150,-17,0,0,0.58035 -19242,5114:479,-149,-17,0,0,0.587016 -19243,5114:478,-148,-17,0,0,0.585247 -19244,5114:477,-147,-17,0,0,0.58395 -19245,5114:476,-146,-17,0,0,0.584298 -19246,5114:475,-145,-17,0,0,0.58597 -19247,5114:374,-144,-17,0,0,0.58345 -19248,5114:373,-143,-17,0,0,0.585023 -19249,5114:372,-142,-17,0,0,0.585247 -19250,5114:371,-141,-17,0,0,0.587838 -19251,5114:370,-140,-17,0,0,0.59107 -19252,5113:479,-139,-17,0,0,0.589331 -19253,5113:478,-138,-17,0,0,0.588385 -19254,5113:477,-137,-17,0,0,0.590325 -19255,5113:476,-136,-17,0,0,0.591244 -19256,5113:475,-135,-17,0,0,0.589927 -19257,5113:374,-134,-17,0,0,0.587962 -19258,5113:373,-133,-17,0,0,0.583375 -19259,5113:372,-132,-17,0,0,0.579474 -19260,5113:371,-131,-17,0,0,0.575062 -19261,5113:370,-130,-17,0,0,0.575213 -19262,5112:479,-129,-17,0,0,0.573479 -19263,5112:478,-128,-17,0,0,0.570008 -19264,5112:477,-127,-17,0,0,0.564938 -19265,5112:476,-126,-17,0,0,0.564408 -19266,5112:475,-125,-17,0,0,0.561527 -19267,5112:374,-124,-17,0,0,0.560768 -19268,5112:373,-123,-17,0,0,0.559071 -19269,5112:372,-122,-17,0,0,0.559122 -19270,5112:371,-121,-17,0,0,0.55674 -19271,5112:370,-120,-17,0,0,0.55306 -19272,5111:479,-119,-17,0,0,0.555167 -19273,5111:478,-118,-17,0,0,0.558007 -19274,5111:477,-117,-17,0,0,0.559704 -19275,5111:476,-116,-17,0,0,0.562563 -19276,5111:475,-115,-17,0,0,0.566277 -19277,5111:374,-114,-17,0,0,0.5636 -19278,5111:373,-113,-17,0,0,0.557906 -19279,5111:372,-112,-17,0,0,0.556689 -19280,5111:371,-111,-17,0,0,0.553822 -19281,5111:370,-110,-17,0,0,0.549935 -19282,5110:479,-109,-17,0,0,0.548816 -19283,5110:478,-108,-17,0,0,0.545863 -19284,5110:477,-107,-17,0,0,0.543187 -19285,5110:476,-106,-17,0,0,0.539233 -19286,5110:475,-105,-17,0,0,0.531361 -19287,5110:374,-104,-17,0,0,0.523423 -19288,5110:373,-103,-17,0,0,0.515318 -19289,5110:372,-102,-17,0,0,0.508567 -19290,5110:371,-101,-17,0,0,0.503302 -19291,5110:370,-100,-17,0,0,0.498987 -19292,5109:479,-99,-17,0,0,0.495314 -19293,5109:478,-98,-17,0,0,0.489408 -19294,5109:477,-97,-17,0,0,0.483735 -19295,5109:476,-96,-17,0,0,0.477631 -19296,5109:475,-95,-17,0,0,0.468053 -19297,5109:374,-94,-17,0,0,0.458703 -19298,5109:373,-93,-17,0,0,0.453936 -19299,5109:372,-92,-17,0,0,0.449204 -19300,5109:371,-91,-17,0,0,0.441641 -19301,5109:370,-90,-17,0,0,0.437591 -19302,5108:479,-89,-17,0,0,0.435367 -19303,5108:478,-88,-17,0,0,0.429643 -19304,5108:477,-87,-17,0,0,0.424062 -19305,5108:476,-86,-17,0,0,0.421405 -19306,5108:475,-85,-17,0,0,0.417177 -19307,5108:374,-84,-17,0,0,0.412239 -19308,5108:373,-83,-17,0,0,0.407543 -19309,5108:372,-82,-17,0,0,0.404916 -19310,5108:371,-81,-17,0,0,0.404346 -19311,5108:370,-80,-17,0,0,0.404594 -19312,5107:479,-79,-17,0,0,0.401627 -19313,5107:478,-78,-17,0,0,0.396994 -19314,5107:477,-77,-17,0,0,0.395077 -19315,5107:476,-76,-17,0,0,0.395298 -19316,5107:475,-75,-17,0,0,0.399826 -19317,5107:374,-74,-17,0,0,0.406799 -19318,5107:373,-73,-17,0,0,0.424966 -19319,5107:372,-72,-17,0,0,0.438881 -19320,5107:371,-71,-17,0,0,0.447349 -19321,5104:371,-41,-17,0,0,0.622944 -19322,5104:370,-40,-17,0,0,0.628118 -19323,5103:479,-39,-17,0,0,0.628502 -19324,5103:478,-38,-17,0,0,0.623209 -19325,5103:477,-37,-17,0,0,0.619462 -19326,5103:476,-36,-17,0,0,0.617037 -19327,5103:475,-35,-17,0,0,0.617328 -19328,5103:374,-34,-17,0,0,0.617596 -19329,5103:373,-33,-17,0,0,0.618468 -19330,5103:372,-32,-17,0,0,0.619293 -19331,5103:371,-31,-17,0,0,0.617838 -19332,5103:370,-30,-17,0,0,0.614972 -19333,5102:479,-29,-17,0,0,0.604704 -19334,5102:478,-28,-17,0,0,0.588435 -19335,5102:477,-27,-17,0,0,0.582726 -19336,5102:476,-26,-17,0,0,0.584224 -19337,5102:475,-25,-17,0,0,0.586667 -19338,5102:374,-24,-17,0,0,0.586792 -19339,5102:373,-23,-17,0,0,0.586867 -19340,5102:372,-22,-17,0,0,0.587365 -19341,5102:371,-21,-17,0,0,0.585695 -19342,5102:370,-20,-17,0,0,0.58325 -19343,5101:479,-19,-17,0,0,0.581426 -19344,5101:478,-18,-17,0,0,0.580301 -19345,5101:477,-17,-17,0,0,0.578197 -19346,5101:476,-16,-17,0,0,0.573881 -19347,5101:475,-15,-17,0,0,0.568345 -19348,5101:374,-14,-17,0,0,0.563044 -19349,5101:373,-13,-17,0,0,0.556157 -19350,5101:372,-12,-17,0,0,0.550265 -19351,5101:371,-11,-17,0,0,0.543875 -19352,5101:370,-10,-17,0,0,0.535989 -19353,5100:479,-9,-17,0,0,0.52934 -19354,5100:478,-8,-17,0,0,0.524012 -19355,5100:477,-7,-17,0,0,0.515986 -19356,5100:476,-6,-17,0,0,0.508515 -19357,5100:475,-5,-17,0,0,0.50207 -19358,5100:374,-4,-17,0,0,0.497266 -19359,5100:373,-3,-17,0,0,0.492104 -19360,5100:372,-2,-17,0,0,0.483248 -19361,5100:371,-1,-17,0,0,0.478836 -19362,3100:371,0,-17,0,0,0.475376 -19363,3100:371,1,-17,0,0,0.472148 -19364,3100:372,2,-17,0,0,0.467414 -19365,3100:373,3,-17,0,0,0.46386 -19366,3100:374,4,-17,0,0,0.462736 -19367,3100:475,5,-17,0,0,0.461817 -19368,3100:476,6,-17,0,0,0.460974 -19369,3100:477,7,-17,0,0,0.458856 -19370,3100:478,8,-17,0,0,0.458881 -19371,3100:479,9,-17,0,0,0.461459 -19372,3101:370,10,-17,0,0,0.460004 -19373,3101:371,11,-17,0,0,0.455414 -19374,3101:372,12,-17,0,0,0.451162 -19375,3101:373,13,-17,0,0,0.445267 -19376,3103:476,36,-17,0,0,0.639823 -19377,3103:477,37,-17,0,0,0.623498 -19378,3103:478,38,-17,0,0,0.630299 -19379,3103:479,39,-17,0,0,0.62545 -19380,3104:370,40,-17,0,0,0.64006 -19381,3104:371,41,-17,0,0,0.656364 -19382,3104:372,42,-17,0,0,0.67362 -19383,3104:373,43,-17,0,0,0.671402 -19384,3104:478,48,-17,0,0,0.619849 -19385,3104:479,49,-17,0,0,0.609753 -19386,3105:370,50,-17,0,0,0.600966 -19387,3105:371,51,-17,0,0,0.593923 -19388,3105:372,52,-17,0,0,0.590673 -19389,3105:373,53,-17,0,0,0.593155 -19390,3105:374,54,-17,0,0,0.58953 -19391,3105:475,55,-17,0,0,0.585771 -19392,3105:476,56,-17,0,0,0.587863 -19393,3105:477,57,-17,0,0,0.598647 -19394,3105:478,58,-17,0,0,0.595582 -19395,3105:479,59,-17,0,0,0.592733 -19396,3106:370,60,-17,0,0,0.589604 -19397,3106:371,61,-17,0,0,0.584972 -19398,3106:372,62,-17,0,0,0.578197 -19399,3106:373,63,-17,0,0,0.575313 -19400,3106:374,64,-17,0,0,0.569075 -19401,3106:475,65,-17,0,0,0.567942 -19402,3106:476,66,-17,0,0,0.567185 -19403,3106:477,67,-17,0,0,0.561779 -19404,3106:478,68,-17,0,0,0.560565 -19405,3106:479,69,-17,0,0,0.556715 -19406,3107:370,70,-17,0,0,0.550698 -19407,3107:371,71,-17,0,0,0.558843 -19408,3107:372,72,-17,0,0,0.552527 -19409,3107:374,74,-17,0,0,0.549655 -19410,3107:475,75,-17,0,0,0.54767 -19411,3107:476,76,-17,0,0,0.54181 -19412,3107:477,77,-17,0,0,0.541479 -19413,3107:478,78,-17,0,0,0.536551 -19414,3107:479,79,-17,0,0,0.538467 -19415,3108:370,80,-17,0,0,0.536654 -19416,3108:371,81,-17,0,0,0.534021 -19417,3108:372,82,-17,0,0,0.526805 -19418,3108:373,83,-17,0,0,0.537343 -19419,3108:374,84,-17,0,0,0.53021 -19420,3108:475,85,-17,0,0,0.528853 -19421,3108:476,86,-17,0,0,0.531029 -19422,3108:477,87,-17,0,0,0.532845 -19423,3108:478,88,-17,0,0,0.521987 -19424,3108:479,89,-17,0,0,0.535555 -19425,3109:370,90,-17,0,0,0.538416 -19426,3109:371,91,-17,0,0,0.515113 -19427,3109:372,92,-17,0,0,0.532154 -19428,3109:373,93,-17,0,0,0.519885 -19429,3109:374,94,-17,0,0,0.5298 -19430,3109:475,95,-17,0,0,0.527291 -19431,3109:476,96,-17,0,0,0.52209 -19432,3109:477,97,-17,0,0,0.528776 -19433,3109:478,98,-17,0,0,0.527547 -19434,3109:479,99,-17,0,0,0.509054 -19435,3110:370,100,-17,0,0,0.510749 -19436,3110:371,101,-17,0,0,0.522987 -19437,3110:372,102,-17,0,0,0.528213 -19438,3110:373,103,-17,0,0,0.523961 -19439,3110:374,104,-17,0,0,0.524243 -19440,3110:475,105,-17,0,0,0.534558 -19441,3110:476,106,-17,0,0,0.53535 -19442,3110:477,107,-17,0,0,0.52893 -19443,3110:478,108,-17,0,0,0.53108 -19444,3110:479,109,-17,0,0,0.540636 -19445,3111:370,110,-17,0,0,0.548103 -19446,3111:371,111,-17,0,0,0.56183 -19447,3111:372,112,-17,0,0,0.561501 -19448,3111:373,113,-17,0,0,0.573982 -19449,3111:374,114,-17,0,0,0.581376 -19450,3115:370,150,-17,0,0,0.624968 -19451,3115:371,151,-17,0,0,0.60136 -19452,3115:372,152,-17,0,0,0.610901 -19453,3115:373,153,-17,0,0,0.601408 -19454,3115:374,154,-17,0,0,0.597585 -19455,3115:475,155,-17,0,0,0.586394 -19456,3115:476,156,-17,0,0,0.5833 -19457,3115:477,157,-17,0,0,0.57368 -19458,3115:478,158,-17,0,0,0.580951 -19459,3115:479,159,-17,0,0,0.571291 -19460,3116:370,160,-17,0,0,0.568521 -19461,3116:371,161,-17,0,0,0.580801 -19462,3116:372,162,-17,0,0,0.576642 -19463,3116:373,163,-17,0,0,0.580225 -19464,3116:374,164,-17,0,0,0.5801 -19465,3116:475,165,-17,0,0,0.572876 -19466,3116:476,166,-17,0,0,0.545226 -19467,3116:477,167,-17,0,0,0.550799 -19468,3116:478,168,-17,0,0,0.562286 -19469,3116:479,169,-17,0,0,0.565368 -19470,3117:370,170,-17,0,0,0.559628 -19471,3117:371,171,-17,0,0,0.551383 -19472,3117:372,172,-17,0,0,0.556309 -19473,3117:373,173,-17,0,0,0.552806 -19474,3117:374,174,-17,0,0,0.55024 -19475,3117:475,175,-17,0,0,0.544895 -19476,3117:476,176,-17,0,0,0.551231 -19477,3117:477,177,-17,0,0,0.543824 -19478,3117:478,178,-17,0,0,0.539616 -19479,3117:479,179,-17,0,0,0.554736 -19480,3118:370,180,-17,0,0,0.544283 -19481,5118:360,-180,-16,0,0,0.559046 -19482,5117:469,-179,-16,0,0,0.556918 -19483,5117:468,-178,-16,0,0,0.559476 -19484,5117:467,-177,-16,0,0,0.565519 -19485,5117:466,-176,-16,0,0,0.563347 -19486,5117:465,-175,-16,0,0,0.563802 -19487,5117:364,-174,-16,0,0,0.555954 -19488,5117:363,-173,-16,0,0,0.563575 -19489,5117:362,-172,-16,0,0,0.562867 -19490,5117:361,-171,-16,0,0,0.558083 -19491,5117:360,-170,-16,0,0,0.569932 -19492,5116:469,-169,-16,0,0,0.566983 -19493,5116:468,-168,-16,0,0,0.56615 -19494,5116:467,-167,-16,0,0,0.564282 -19495,5116:466,-166,-16,0,0,0.569227 -19496,5116:465,-165,-16,0,0,0.565116 -19497,5116:364,-164,-16,0,0,0.568647 -19498,5116:363,-163,-16,0,0,0.572474 -19499,5116:362,-162,-16,0,0,0.571392 -19500,5116:361,-161,-16,0,0,0.573504 -19501,5116:360,-160,-16,0,0,0.579249 -19502,5115:469,-159,-16,0,0,0.582101 -19503,5115:468,-158,-16,0,0,0.5829 -19504,5115:467,-157,-16,0,0,0.586493 -19505,5115:466,-156,-16,0,0,0.589405 -19506,5115:465,-155,-16,0,0,0.593824 -19507,5115:364,-154,-16,0,0,0.595384 -19508,5115:363,-153,-16,0,0,0.600103 -19509,5115:362,-152,-16,0,0,0.60163 -19510,5115:361,-151,-16,0,0,0.603131 -19511,5115:360,-150,-16,0,0,0.605319 -19512,5114:469,-149,-16,0,0,0.605171 -19513,5114:468,-148,-16,0,0,0.607035 -19514,5114:467,-147,-16,0,0,0.609654 -19515,5114:466,-146,-16,0,0,0.609801 -19516,5114:465,-145,-16,0,0,0.610144 -19517,5114:364,-144,-16,0,0,0.609067 -19518,5114:363,-143,-16,0,0,0.60804 -19519,5114:362,-142,-16,0,0,0.608897 -19520,5114:361,-141,-16,0,0,0.609581 -19521,5114:360,-140,-16,0,0,0.609703 -19522,5113:469,-139,-16,0,0,0.609215 -19523,5113:468,-138,-16,0,0,0.608138 -19524,5113:467,-137,-16,0,0,0.606398 -19525,5113:466,-136,-16,0,0,0.605932 -19526,5113:465,-135,-16,0,0,0.604754 -19527,5113:364,-134,-16,0,0,0.603205 -19528,5113:363,-133,-16,0,0,0.600866 -19529,5113:362,-132,-16,0,0,0.596843 -19530,5113:361,-131,-16,0,0,0.594963 -19531,5113:360,-130,-16,0,0,0.59184 -19532,5112:469,-129,-16,0,0,0.58856 -19533,5112:468,-128,-16,0,0,0.586743 -19534,5112:467,-127,-16,0,0,0.587539 -19535,5112:466,-126,-16,0,0,0.586543 -19536,5112:465,-125,-16,0,0,0.583125 -19537,5112:364,-124,-16,0,0,0.585421 -19538,5112:363,-123,-16,0,0,0.584623 -19539,5112:362,-122,-16,0,0,0.585197 -19540,5112:361,-121,-16,0,0,0.5833 -19541,5112:360,-120,-16,0,0,0.580476 -19542,5111:469,-119,-16,0,0,0.581926 -19543,5111:468,-118,-16,0,0,0.582426 -19544,5111:467,-117,-16,0,0,0.583326 -19545,5111:466,-116,-16,0,0,0.582376 -19546,5111:465,-115,-16,0,0,0.578874 -19547,5111:364,-114,-16,0,0,0.575589 -19548,5111:363,-113,-16,0,0,0.572499 -19549,5111:362,-112,-16,0,0,0.566781 -19550,5111:361,-111,-16,0,0,0.562867 -19551,5111:360,-110,-16,0,0,0.559603 -19552,5110:469,-109,-16,0,0,0.555421 -19553,5110:468,-108,-16,0,0,0.550672 -19554,5110:467,-107,-16,0,0,0.546398 -19555,5110:466,-106,-16,0,0,0.540636 -19556,5110:465,-105,-16,0,0,0.534737 -19557,5110:364,-104,-16,0,0,0.52724 -19558,5110:363,-103,-16,0,0,0.519038 -19559,5110:362,-102,-16,0,0,0.513522 -19560,5110:361,-101,-16,0,0,0.508079 -19561,5110:360,-100,-16,0,0,0.503277 -19562,5109:469,-99,-16,0,0,0.49873 -19563,5109:468,-98,-16,0,0,0.494313 -19564,5109:467,-97,-16,0,0,0.487354 -19565,5109:466,-96,-16,0,0,0.476939 -19566,5109:465,-95,-16,0,0,0.470433 -19567,5109:364,-94,-16,0,0,0.466186 -19568,5109:363,-93,-16,0,0,0.459392 -19569,5109:362,-92,-16,0,0,0.451111 -19570,5109:361,-91,-16,0,0,0.444962 -19571,5109:360,-90,-16,0,0,0.437414 -19572,5108:469,-89,-16,0,0,0.432465 -19573,5108:468,-88,-16,0,0,0.42914 -19574,5108:467,-87,-16,0,0,0.424715 -19575,5108:466,-86,-16,0,0,0.418577 -19576,5108:465,-85,-16,0,0,0.410871 -19577,5108:364,-84,-16,0,0,0.40556 -19578,5108:363,-83,-16,0,0,0.403554 -19579,5108:362,-82,-16,0,0,0.400245 -19580,5108:361,-81,-16,0,0,0.400566 -19581,5108:360,-80,-16,0,0,0.398471 -19582,5107:469,-79,-16,0,0,0.397117 -19583,5107:468,-78,-16,0,0,0.397412 -19584,5107:467,-77,-16,0,0,0.40106 -19585,5107:466,-76,-16,0,0,0.403209 -19586,5107:465,-75,-16,0,0,0.410423 -19587,5107:364,-74,-16,0,0,0.42459 -19588,5107:363,-73,-16,0,0,0.437085 -19589,5107:362,-72,-16,0,0,0.456357 -19590,5107:361,-71,-16,0,0,0.446536 -19591,5104:360,-40,-16,0,0,0.636002 -19592,5103:469,-39,-16,0,0,0.632594 -19593,5103:468,-38,-16,0,0,0.629964 -19594,5103:467,-37,-16,0,0,0.623981 -19595,5103:466,-36,-16,0,0,0.623932 -19596,5103:465,-35,-16,0,0,0.626797 -19597,5103:364,-34,-16,0,0,0.627086 -19598,5103:363,-33,-16,0,0,0.625017 -19599,5103:362,-32,-16,0,0,0.623836 -19600,5103:361,-31,-16,0,0,0.620624 -19601,5103:360,-30,-16,0,0,0.615239 -19602,5102:469,-29,-16,0,0,0.609336 -19603,5102:468,-28,-16,0,0,0.595062 -19604,5102:467,-27,-16,0,0,0.583924 -19605,5102:466,-26,-16,0,0,0.583125 -19606,5102:465,-25,-16,0,0,0.584748 -19607,5102:364,-24,-16,0,0,0.585845 -19608,5102:363,-23,-16,0,0,0.585895 -19609,5102:362,-22,-16,0,0,0.584673 -19610,5102:361,-21,-16,0,0,0.582976 -19611,5102:360,-20,-16,0,0,0.581551 -19612,5101:469,-19,-16,0,0,0.578422 -19613,5101:468,-18,-16,0,0,0.572172 -19614,5101:467,-17,-16,0,0,0.567437 -19615,5101:466,-16,-16,0,0,0.562842 -19616,5101:465,-15,-16,0,0,0.558134 -19617,5101:364,-14,-16,0,0,0.553239 -19618,5101:363,-13,-16,0,0,0.546754 -19619,5101:362,-12,-16,0,0,0.538493 -19620,5101:361,-11,-16,0,0,0.529468 -19621,5101:360,-10,-16,0,0,0.523755 -19622,5100:469,-9,-16,0,0,0.517628 -19623,5100:468,-8,-16,0,0,0.512161 -19624,5100:467,-7,-16,0,0,0.505999 -19625,5100:466,-6,-16,0,0,0.499295 -19626,5100:465,-5,-16,0,0,0.491976 -19627,5100:364,-4,-16,0,0,0.486609 -19628,5100:363,-3,-16,0,0,0.484736 -19629,5100:362,-2,-16,0,0,0.480144 -19630,5100:361,-1,-16,0,0,0.477119 -19631,3100:361,0,-16,0,0,0.475581 -19632,3100:361,1,-16,0,0,0.473557 -19633,3100:362,2,-16,0,0,0.470101 -19634,3100:363,3,-16,0,0,0.467746 -19635,3100:364,4,-16,0,0,0.466058 -19636,3100:465,5,-16,0,0,0.465369 -19637,3100:466,6,-16,0,0,0.464831 -19638,3100:467,7,-16,0,0,0.464218 -19639,3100:468,8,-16,0,0,0.464269 -19640,3100:469,9,-16,0,0,0.463732 -19641,3101:360,10,-16,0,0,0.46054 -19642,3101:361,11,-16,0,0,0.461332 -19643,3101:362,12,-16,0,0,0.453172 -19644,3101:363,13,-16,0,0,0.403505 -19645,3103:465,35,-16,0,0,0.644686 -19646,3103:466,36,-16,0,0,0.646285 -19647,3103:467,37,-16,0,0,0.644168 -19648,3103:468,38,-16,0,0,0.627086 -19649,3103:469,39,-16,0,0,0.643956 -19650,3104:360,40,-16,0,0,0.655112 -19651,3104:361,41,-16,0,0,0.66156 -19652,3104:362,42,-16,0,0,0.679152 -19653,3104:363,43,-16,0,0,0.685521 -19654,3104:469,49,-16,0,0,0.619656 -19655,3105:360,50,-16,0,0,0.608481 -19656,3105:361,51,-16,0,0,0.606839 -19657,3105:362,52,-16,0,0,0.603476 -19658,3105:363,53,-16,0,0,0.601187 -19659,3105:364,54,-16,0,0,0.603795 -19660,3105:465,55,-16,0,0,0.601729 -19661,3105:466,56,-16,0,0,0.603353 -19662,3105:467,57,-16,0,0,0.603107 -19663,3105:468,58,-16,0,0,0.599017 -19664,3105:469,59,-16,0,0,0.593923 -19665,3106:360,60,-16,0,0,0.593576 -19666,3106:361,61,-16,0,0,0.591369 -19667,3106:362,62,-16,0,0,0.582476 -19668,3106:363,63,-16,0,0,0.5835 -19669,3106:364,64,-16,0,0,0.577345 -19670,3106:465,65,-16,0,0,0.571794 -19671,3106:466,66,-16,0,0,0.575162 -19672,3106:467,67,-16,0,0,0.576116 -19673,3106:468,68,-16,0,0,0.572273 -19674,3106:469,69,-16,0,0,0.567387 -19675,3107:360,70,-16,0,0,0.568219 -19676,3107:361,71,-16,0,0,0.566227 -19677,3107:362,72,-16,0,0,0.558615 -19678,3107:364,74,-16,0,0,0.557652 -19679,3107:465,75,-16,0,0,0.555497 -19680,3107:466,76,-16,0,0,0.553162 -19681,3107:467,77,-16,0,0,0.55235 -19682,3107:468,78,-16,0,0,0.552171 -19683,3107:469,79,-16,0,0,0.54464 -19684,3108:360,80,-16,0,0,0.556411 -19685,3108:361,81,-16,0,0,0.557069 -19686,3108:362,82,-16,0,0,0.552806 -19687,3108:363,83,-16,0,0,0.53742 -19688,3108:364,84,-16,0,0,0.553975 -19689,3108:465,85,-16,0,0,0.552832 -19690,3108:466,86,-16,0,0,0.540892 -19691,3108:467,87,-16,0,0,0.550977 -19692,3108:468,88,-16,0,0,0.545532 -19693,3108:469,89,-16,0,0,0.547314 -19694,3109:360,90,-16,0,0,0.55334 -19695,3109:361,91,-16,0,0,0.542957 -19696,3109:362,92,-16,0,0,0.551257 -19697,3109:363,93,-16,0,0,0.53982 -19698,3109:364,94,-16,0,0,0.540764 -19699,3109:465,95,-16,0,0,0.540815 -19700,3109:466,96,-16,0,0,0.525856 -19701,3109:467,97,-16,0,0,0.541325 -19702,3109:468,98,-16,0,0,0.527342 -19703,3109:469,99,-16,0,0,0.523551 -19704,3110:360,100,-16,0,0,0.521654 -19705,3110:361,101,-16,0,0,0.53673 -19706,3110:362,102,-16,0,0,0.532333 -19707,3110:363,103,-16,0,0,0.543289 -19708,3110:364,104,-16,0,0,0.55118 -19709,3110:465,105,-16,0,0,0.541121 -19710,3110:466,106,-16,0,0,0.543773 -19711,3110:467,107,-16,0,0,0.545761 -19712,3110:468,108,-16,0,0,0.554406 -19713,3110:469,109,-16,0,0,0.560362 -19714,3111:360,110,-16,0,0,0.566554 -19715,3111:361,111,-16,0,0,0.572976 -19716,3111:362,112,-16,0,0,0.571266 -19717,3111:363,113,-16,0,0,0.582551 -19718,3111:364,114,-16,0,0,0.595954 -19719,3111:465,115,-16,0,0,0.603083 -19720,3111:466,116,-16,0,0,0.611657 -19721,3111:467,117,-16,0,0,0.6314 -19722,3111:468,118,-16,0,0,0.65611 -19723,3115:360,150,-16,0,0,0.60706 -19724,3115:361,151,-16,0,0,0.611853 -19725,3115:362,152,-16,0,0,0.60603 -19726,3115:363,153,-16,0,0,0.605686 -19727,3115:364,154,-16,0,0,0.588361 -19728,3115:465,155,-16,0,0,0.584349 -19729,3115:466,156,-16,0,0,0.583575 -19730,3115:467,157,-16,0,0,0.591766 -21245,5108:102,-82,-10,0,0,0.47594 -19731,3115:468,158,-16,0,0,0.591741 -19732,3115:469,159,-16,0,0,0.582126 -19733,3116:360,160,-16,0,0,0.581676 -19734,3116:361,161,-16,0,0,0.595235 -19735,3116:362,162,-16,0,0,0.592957 -19736,3116:363,163,-16,0,0,0.591194 -19737,3116:364,164,-16,0,0,0.590052 -19738,3116:465,165,-16,0,0,0.584648 -19739,3116:466,166,-16,0,0,0.577846 -19740,3116:467,167,-16,0,0,0.580401 -19741,3116:468,168,-16,0,0,0.574509 -19742,3116:469,169,-16,0,0,0.569201 -19743,3117:360,170,-16,0,0,0.565166 -19744,3117:361,171,-16,0,0,0.566251 -19745,3117:362,172,-16,0,0,0.561527 -19746,3117:363,173,-16,0,0,0.555345 -19747,3117:364,174,-16,0,0,0.56461 -19748,3117:465,175,-16,0,0,0.566428 -19749,3117:466,176,-16,0,0,0.557146 -19750,3117:467,177,-16,0,0,0.566504 -19751,3117:468,178,-16,0,0,0.564257 -19752,3117:469,179,-16,0,0,0.564054 -19753,3118:360,180,-16,0,0,0.559046 -19754,5118:350,-180,-15,0,0,0.576467 -19755,5117:459,-179,-15,0,0,0.576668 -19756,5117:458,-178,-15,0,0,0.574987 -19757,5117:457,-177,-15,0,0,0.576266 -19758,5117:456,-176,-15,0,0,0.584573 -19759,5117:455,-175,-15,0,0,0.586493 -19760,5117:354,-174,-15,0,0,0.582976 -19761,5117:353,-173,-15,0,0,0.585072 -19762,5117:352,-172,-15,0,0,0.585646 -19763,5117:351,-171,-15,0,0,0.585571 -19764,5117:350,-170,-15,0,0,0.586419 -19765,5116:459,-169,-15,0,0,0.589629 -19766,5116:458,-168,-15,0,0,0.587738 -19767,5116:457,-167,-15,0,0,0.589927 -19768,5116:456,-166,-15,0,0,0.590474 -19769,5116:455,-165,-15,0,0,0.594146 -19770,5116:354,-164,-15,0,0,0.598845 -19771,5116:353,-163,-15,0,0,0.596151 -19772,5116:352,-162,-15,0,0,0.600275 -19773,5116:351,-161,-15,0,0,0.602861 -19774,5116:350,-160,-15,0,0,0.605564 -19775,5115:459,-159,-15,0,0,0.610119 -19776,5115:458,-158,-15,0,0,0.616843 -19777,5115:457,-157,-15,0,0,0.616211 -19778,5115:456,-156,-15,0,0,0.618371 -19779,5115:455,-155,-15,0,0,0.621204 -19780,5115:354,-154,-15,0,0,0.62234 -19781,5115:353,-153,-15,0,0,0.624944 -19782,5115:352,-152,-15,0,0,0.628669 -19783,5115:351,-151,-15,0,0,0.63331 -19784,5115:350,-150,-15,0,0,0.633168 -19785,5114:459,-149,-15,0,0,0.631113 -19786,5114:458,-148,-15,0,0,0.632475 -19787,5114:457,-147,-15,0,0,0.632905 -19788,5114:456,-146,-15,0,0,0.63226 -19789,5114:455,-145,-15,0,0,0.629677 -19790,5114:354,-144,-15,0,0,0.628838 -19791,5114:353,-143,-15,0,0,0.629581 -19792,5114:352,-142,-15,0,0,0.627517 -19793,5114:351,-141,-15,0,0,0.628765 -19794,5114:350,-140,-15,0,0,0.62831 -19795,5113:459,-139,-15,0,0,0.627157 -19796,5113:458,-138,-15,0,0,0.625666 -19797,5113:457,-137,-15,0,0,0.626244 -19798,5113:456,-136,-15,0,0,0.626629 -19799,5113:455,-135,-15,0,0,0.625089 -19800,5113:354,-134,-15,0,0,0.623523 -19801,5113:353,-133,-15,0,0,0.623064 -19802,5113:352,-132,-15,0,0,0.622413 -19803,5113:351,-131,-15,0,0,0.61951 -19804,5113:350,-130,-15,0,0,0.61609 -19805,5112:459,-129,-15,0,0,0.614387 -19806,5112:458,-128,-15,0,0,0.615117 -19807,5112:457,-127,-15,0,0,0.610412 -19808,5112:456,-126,-15,0,0,0.612658 -19809,5112:455,-125,-15,0,0,0.609043 -19810,5112:354,-124,-15,0,0,0.610901 -19811,5112:353,-123,-15,0,0,0.610241 -19812,5112:352,-122,-15,0,0,0.60941 -19813,5112:351,-121,-15,0,0,0.610876 -19814,5112:350,-120,-15,0,0,0.609361 -19815,5111:459,-119,-15,0,0,0.605883 -19816,5111:458,-118,-15,0,0,0.602369 -19817,5111:457,-117,-15,0,0,0.59919 -19818,5111:456,-116,-15,0,0,0.594369 -19819,5111:455,-115,-15,0,0,0.58953 -19820,5111:354,-114,-15,0,0,0.585347 -19821,5111:353,-113,-15,0,0,0.579123 -19822,5111:352,-112,-15,0,0,0.572147 -19823,5111:351,-111,-15,0,0,0.566983 -19824,5111:350,-110,-15,0,0,0.559958 -19825,5110:459,-109,-15,0,0,0.554609 -19826,5110:458,-108,-15,0,0,0.547645 -19827,5110:457,-107,-15,0,0,0.541121 -19828,5110:456,-106,-15,0,0,0.531233 -19829,5110:455,-105,-15,0,0,0.520962 -19830,5110:354,-104,-15,0,0,0.515036 -19831,5110:353,-103,-15,0,0,0.50908 -19832,5110:352,-102,-15,0,0,0.502172 -19833,5110:351,-101,-15,0,0,0.499193 -19834,5110:350,-100,-15,0,0,0.49444 -19835,5109:459,-99,-15,0,0,0.490075 -19836,5109:458,-98,-15,0,0,0.488149 -19837,5109:457,-97,-15,0,0,0.482734 -19838,5109:456,-96,-15,0,0,0.471355 -19839,5109:455,-95,-15,0,0,0.461689 -19840,5109:354,-94,-15,0,0,0.458601 -19841,5109:353,-93,-15,0,0,0.453046 -19842,5109:352,-92,-15,0,0,0.439843 -19843,5109:351,-91,-15,0,0,0.431507 -19844,5109:350,-90,-15,0,0,0.436176 -19845,5108:459,-89,-15,0,0,0.436757 -19846,5108:458,-88,-15,0,0,0.42675 -19847,5108:457,-87,-15,0,0,0.419928 -19848,5108:456,-86,-15,0,0,0.414756 -19849,5108:455,-85,-15,0,0,0.404965 -19850,5108:354,-84,-15,0,0,0.40143 -19851,5108:353,-83,-15,0,0,0.399802 -19852,5108:352,-82,-15,0,0,0.400146 -19853,5108:351,-81,-15,0,0,0.399185 -19854,5108:350,-80,-15,0,0,0.399407 -19855,5107:459,-79,-15,0,0,0.401479 -19856,5107:458,-78,-15,0,0,0.404866 -19857,5107:457,-77,-15,0,0,0.405931 -19858,5107:456,-76,-15,0,0,0.418127 -19859,5107:455,-75,-15,0,0,0.440324 -19860,5107:354,-74,-15,0,0,0.453631 -19861,5107:353,-73,-15,0,0,0.469845 -19862,5107:352,-72,-15,0,0,0.47407 -19863,5107:351,-71,-15,0,0,0.459494 -19864,5103:459,-39,-15,0,0,0.622823 -19865,5103:458,-38,-15,0,0,0.621906 -19866,5103:457,-37,-15,0,0,0.624197 -19867,5103:456,-36,-15,0,0,0.624704 -19868,5103:455,-35,-15,0,0,0.625281 -19869,5103:354,-34,-15,0,0,0.623209 -19870,5103:353,-33,-15,0,0,0.621204 -19871,5103:352,-32,-15,0,0,0.618638 -19872,5103:351,-31,-15,0,0,0.614533 -19873,5103:350,-30,-15,0,0,0.610364 -19874,5102:459,-29,-15,0,0,0.606496 -19875,5102:458,-28,-15,0,0,0.599215 -19876,5102:457,-27,-15,0,0,0.586867 -19877,5102:456,-26,-15,0,0,0.580175 -19878,5102:455,-25,-15,0,0,0.579074 -19879,5102:354,-24,-15,0,0,0.5798 -19880,5102:353,-23,-15,0,0,0.577545 -19881,5102:352,-22,-15,0,0,0.573605 -19882,5102:351,-21,-15,0,0,0.570335 -19883,5102:350,-20,-15,0,0,0.566907 -19884,5101:459,-19,-15,0,0,0.565393 -19885,5101:458,-18,-15,0,0,0.561223 -19886,5101:457,-17,-15,0,0,0.556309 -19887,5101:456,-16,-15,0,0,0.550037 -19888,5101:455,-15,-15,0,0,0.542754 -19889,5101:354,-14,-15,0,0,0.536756 -19890,5101:353,-13,-15,0,0,0.530645 -19891,5101:352,-12,-15,0,0,0.524217 -19892,5101:351,-11,-15,0,0,0.521372 -19893,5101:350,-10,-15,0,0,0.515062 -19894,5100:459,-9,-15,0,0,0.509645 -19895,5100:458,-8,-15,0,0,0.502994 -19896,5100:457,-7,-15,0,0,0.498139 -19897,5100:456,-6,-15,0,0,0.493362 -19898,5100:455,-5,-15,0,0,0.488612 -19899,5100:354,-4,-15,0,0,0.484505 -19900,5100:353,-3,-15,0,0,0.482093 -19901,5100:352,-2,-15,0,0,0.47899 -19902,5100:351,-1,-15,0,0,0.477324 -19903,3100:351,0,-15,0,0,0.476324 -19904,3100:351,1,-15,0,0,0.473787 -19905,3100:352,2,-15,0,0,0.471815 -19906,3100:353,3,-15,0,0,0.470971 -19907,3100:354,4,-15,0,0,0.470101 -19908,3100:455,5,-15,0,0,0.468897 -19909,3100:456,6,-15,0,0,0.469512 -19910,3100:457,7,-15,0,0,0.468284 -19911,3100:458,8,-15,0,0,0.469153 -19912,3100:459,9,-15,0,0,0.474044 -19913,3101:350,10,-15,0,0,0.480093 -19914,3101:351,11,-15,0,0,0.478657 -19915,3101:352,12,-15,0,0,0.43706 -19916,3103:456,36,-15,0,0,0.659694 -19917,3103:457,37,-15,0,0,0.644098 -19918,3103:458,38,-15,0,0,0.654973 -19919,3103:459,39,-15,0,0,0.647646 -19920,3104:350,40,-15,0,0,0.659209 -19921,3104:351,41,-15,0,0,0.665688 -19922,3104:352,42,-15,0,0,0.676775 -19923,3104:353,43,-15,0,0,0.68665 -19924,3104:354,44,-15,0,0,0.698029 -19925,3104:459,49,-15,0,0,0.632571 -19926,3105:350,50,-15,0,0,0.619268 -19927,3105:351,51,-15,0,0,0.613998 -19928,3105:352,52,-15,0,0,0.613535 -19929,3105:353,53,-15,0,0,0.612341 -19930,3105:354,54,-15,0,0,0.610852 -19931,3105:455,55,-15,0,0,0.61007 -19932,3105:456,56,-15,0,0,0.609508 -19933,3105:457,57,-15,0,0,0.608309 -19934,3105:458,58,-15,0,0,0.604311 -19935,3105:459,59,-15,0,0,0.601532 -19936,3106:350,60,-15,0,0,0.597511 -19937,3106:351,61,-15,0,0,0.599659 -19938,3106:352,62,-15,0,0,0.594444 -19939,3106:353,63,-15,0,0,0.591666 -19940,3106:354,64,-15,0,0,0.589082 -19941,3106:455,65,-15,0,0,0.585745 -19942,3106:456,66,-15,0,0,0.585446 -19943,3106:457,67,-15,0,0,0.584773 -19944,3106:458,68,-15,0,0,0.582726 -19945,3106:459,69,-15,0,0,0.575589 -19946,3107:350,70,-15,0,0,0.570259 -19947,3107:351,71,-15,0,0,0.579324 -19948,3107:352,72,-15,0,0,0.580626 -19949,3107:354,74,-15,0,0,0.573831 -19950,3107:455,75,-15,0,0,0.578072 -19951,3107:456,76,-15,0,0,0.572876 -19952,3107:457,77,-15,0,0,0.576392 -19953,3107:458,78,-15,0,0,0.574735 -19954,3107:459,79,-15,0,0,0.562361 -19955,3108:350,80,-15,0,0,0.574735 -19956,3108:351,81,-15,0,0,0.564813 -19957,3108:352,82,-15,0,0,0.562968 -19958,3108:353,83,-15,0,0,0.573454 -19959,3108:354,84,-15,0,0,0.577144 -19960,3108:455,85,-15,0,0,0.570864 -19961,3108:456,86,-15,0,0,0.565039 -19962,3108:457,87,-15,0,0,0.56716 -19963,3108:458,88,-15,0,0,0.566907 -19964,3108:459,89,-15,0,0,0.570838 -19965,3109:350,90,-15,0,0,0.560667 -19966,3109:351,91,-15,0,0,0.565949 -19967,3109:352,92,-15,0,0,0.561729 -19968,3109:353,93,-15,0,0,0.574434 -19969,3109:354,94,-15,0,0,0.549629 -19970,3109:455,95,-15,0,0,0.558058 -19971,3109:456,96,-15,0,0,0.550646 -19972,3109:457,97,-15,0,0,0.559071 -19973,3109:458,98,-15,0,0,0.553949 -19974,3109:459,99,-15,0,0,0.553898 -19975,3110:350,100,-15,0,0,0.557019 -19976,3110:351,101,-15,0,0,0.542575 -19977,3110:352,102,-15,0,0,0.539412 -19978,3110:353,103,-15,0,0,0.547568 -19979,3110:354,104,-15,0,0,0.561805 -19980,3110:455,105,-15,0,0,0.570335 -19981,3110:456,106,-15,0,0,0.561704 -19982,3110:457,107,-15,0,0,0.563246 -19983,3110:458,108,-15,0,0,0.566201 -19984,3110:459,109,-15,0,0,0.572322 -19985,3111:350,110,-15,0,0,0.589878 -19986,3111:351,111,-15,0,0,0.596176 -19987,3111:352,112,-15,0,0,0.611389 -19988,3111:353,113,-15,0,0,0.614752 -19989,3111:354,114,-15,0,0,0.612268 -19990,3111:455,115,-15,0,0,0.622292 -19991,3111:456,116,-15,0,0,0.62819 -19992,3111:457,117,-15,0,0,0.637381 -19993,3111:458,118,-15,0,0,0.645933 -19994,3111:459,119,-15,0,0,0.649543 -19995,3112:350,120,-15,0,0,0.650594 -19996,3112:351,121,-15,0,0,0.653508 -19997,3114:457,147,-15,0,0,0.64032 -19998,3114:458,148,-15,0,0,0.622847 -19999,3114:459,149,-15,0,0,0.623354 -20000,3115:350,150,-15,0,0,0.618032 -20001,3115:351,151,-15,0,0,0.60264 -20002,3115:352,152,-15,0,0,0.606912 -20003,3115:353,153,-15,0,0,0.611951 -20004,3115:354,154,-15,0,0,0.608945 -20005,3115:455,155,-15,0,0,0.605073 -20006,3115:456,156,-15,0,0,0.604581 -20007,3115:457,157,-15,0,0,0.606472 -20008,3115:458,158,-15,0,0,0.602295 -20009,3115:459,159,-15,0,0,0.604262 -20010,3116:350,160,-15,0,0,0.603426 -20011,3116:351,161,-15,0,0,0.598055 -20012,3116:352,162,-15,0,0,0.601039 -20013,3116:353,163,-15,0,0,0.594518 -20014,3116:354,164,-15,0,0,0.591046 -20015,3116:455,165,-15,0,0,0.589579 -20016,3116:456,166,-15,0,0,0.589455 -20017,3116:457,167,-15,0,0,0.591219 -20018,3116:458,168,-15,0,0,0.584673 -20019,3116:459,169,-15,0,0,0.586768 -20020,3117:350,170,-15,0,0,0.584823 -20021,3117:351,171,-15,0,0,0.591666 -20022,3117:352,172,-15,0,0,0.588211 -20023,3117:353,173,-15,0,0,0.58045 -20024,3117:354,174,-15,0,0,0.582776 -20025,3117:455,175,-15,0,0,0.587291 -20026,3117:456,176,-15,0,0,0.588958 -20027,3117:457,177,-15,0,0,0.590251 -20028,3117:458,178,-15,0,0,0.585895 -20029,3117:459,179,-15,0,0,0.584149 -20030,3118:350,180,-15,0,0,0.576467 -20031,5118:140,-180,-14,0,0,0.594493 -20032,5117:249,-179,-14,0,0,0.593502 -20033,5117:248,-178,-14,0,0,0.595533 -20034,5117:247,-177,-14,0,0,0.601803 -20035,5117:246,-176,-14,0,0,0.598993 -20036,5117:245,-175,-14,0,0,0.602812 -20037,5117:144,-174,-14,0,0,0.600645 -20038,5117:143,-173,-14,0,0,0.601729 -20039,5117:142,-172,-14,0,0,0.605736 -20040,5117:141,-171,-14,0,0,0.609165 -20041,5117:140,-170,-14,0,0,0.612731 -20042,5116:249,-169,-14,0,0,0.607966 -20043,5116:248,-168,-14,0,0,0.607942 -20044,5116:247,-167,-14,0,0,0.611414 -20045,5116:246,-166,-14,0,0,0.616527 -20046,5116:245,-165,-14,0,0,0.616017 -20047,5116:144,-164,-14,0,0,0.622413 -20048,5116:143,-163,-14,0,0,0.620914 -20049,5116:142,-162,-14,0,0,0.621591 -20050,5116:141,-161,-14,0,0,0.622654 -20051,5116:140,-160,-14,0,0,0.623981 -20052,5115:249,-159,-14,0,0,0.629293 -20053,5115:248,-158,-14,0,0,0.633549 -20054,5115:247,-157,-14,0,0,0.632594 -20055,5115:246,-156,-14,0,0,0.635098 -20056,5115:245,-155,-14,0,0,0.640652 -20057,5115:144,-154,-14,0,0,0.64332 -20058,5115:143,-153,-14,0,0,0.646919 -20059,5115:142,-152,-14,0,0,0.64713 -20060,5115:141,-151,-14,0,0,0.645274 -20061,5115:140,-150,-14,0,0,0.646708 -20062,5114:249,-149,-14,0,0,0.642447 -20063,5114:248,-148,-14,0,0,0.647505 -20064,5114:247,-147,-14,0,0,0.648654 -20065,5114:246,-146,-14,0,0,0.647575 -20066,5114:245,-145,-14,0,0,0.645228 -20067,5114:144,-144,-14,0,0,0.644874 -20068,5114:143,-143,-14,0,0,0.643202 -20069,5114:142,-142,-14,0,0,0.639776 -20070,5114:141,-141,-14,0,0,0.640604 -20071,5114:140,-140,-14,0,0,0.639586 -20072,5113:249,-139,-14,0,0,0.637998 -20073,5113:248,-138,-14,0,0,0.637975 -20074,5113:247,-137,-14,0,0,0.63897 -20075,5113:246,-136,-14,0,0,0.638212 -20076,5113:245,-135,-14,0,0,0.636455 -20077,5113:144,-134,-14,0,0,0.634479 -20078,5113:143,-133,-14,0,0,0.634408 -20079,5113:142,-132,-14,0,0,0.636074 -20080,5113:141,-131,-14,0,0,0.63655 -20081,5113:140,-130,-14,0,0,0.635193 -20082,5112:249,-129,-14,0,0,0.631113 -20083,5112:248,-128,-14,0,0,0.629868 -20084,5112:247,-127,-14,0,0,0.627494 -20085,5112:246,-126,-14,0,0,0.628045 -20086,5112:245,-125,-14,0,0,0.623715 -20087,5112:144,-124,-14,0,0,0.62147 -20088,5112:143,-123,-14,0,0,0.623571 -20089,5112:142,-122,-14,0,0,0.618711 -20090,5112:141,-121,-14,0,0,0.616989 -20091,5112:140,-120,-14,0,0,0.614631 -20092,5111:249,-119,-14,0,0,0.611462 -20093,5111:248,-118,-14,0,0,0.605122 -20094,5111:247,-117,-14,0,0,0.599757 -20095,5111:246,-116,-14,0,0,0.592559 -20096,5111:245,-115,-14,0,0,0.587714 -20097,5111:144,-114,-14,0,0,0.582176 -20098,5111:143,-113,-14,0,0,0.575288 -20099,5111:142,-112,-14,0,0,0.569151 -20100,5111:141,-111,-14,0,0,0.563347 -20101,5111:140,-110,-14,0,0,0.556309 -20102,5110:249,-109,-14,0,0,0.551587 -20103,5110:248,-108,-14,0,0,0.546779 -20104,5110:247,-107,-14,0,0,0.54209 -20105,5110:246,-106,-14,0,0,0.536372 -20106,5110:245,-105,-14,0,0,0.529007 -20107,5110:144,-104,-14,0,0,0.516781 -20108,5110:143,-103,-14,0,0,0.507206 -20109,5110:142,-102,-14,0,0,0.499089 -20110,5110:141,-101,-14,0,0,0.495339 -20111,5110:140,-100,-14,0,0,0.490357 -20112,5109:249,-99,-14,0,0,0.48235 -20113,5109:248,-98,-14,0,0,0.477349 -20114,5109:247,-97,-14,0,0,0.47535 -20115,5109:246,-96,-14,0,0,0.470458 -20116,5109:245,-95,-14,0,0,0.461128 -20117,5109:144,-94,-14,0,0,0.452179 -20118,5109:143,-93,-14,0,0,0.446308 -20119,5109:142,-92,-14,0,0,0.43959 -20120,5109:141,-91,-14,0,0,0.429668 -20121,5109:140,-90,-14,0,0,0.42464 -20122,5108:249,-89,-14,0,0,0.423034 -20123,5108:248,-88,-14,0,0,0.418927 -20124,5108:247,-87,-14,0,0,0.413186 -20125,5108:246,-86,-14,0,0,0.411692 -20126,5108:245,-85,-14,0,0,0.40727 -20127,5108:144,-84,-14,0,0,0.403184 -20128,5108:143,-83,-14,0,0,0.397707 -20129,5108:142,-82,-14,0,0,0.397585 -20130,5108:141,-81,-14,0,0,0.398693 -20131,5108:140,-80,-14,0,0,0.40442 -20132,5107:249,-79,-14,0,0,0.409976 -20133,5107:248,-78,-14,0,0,0.419027 -20134,5107:247,-77,-14,0,0,0.4267 -20135,5107:246,-76,-14,0,0,0.438502 -20136,5107:245,-75,-14,0,0,0.449788 -20137,5107:144,-74,-14,0,0,0.452587 -20138,5107:143,-73,-14,0,0,0.458754 -20139,5107:142,-72,-14,0,0,0.459698 -20140,5103:249,-39,-14,0,0,0.597141 -20141,5103:248,-38,-14,0,0,0.626532 -20142,5103:247,-37,-14,0,0,0.623088 -20143,5103:246,-36,-14,0,0,0.623402 -20144,5103:245,-35,-14,0,0,0.622581 -20145,5103:144,-34,-14,0,0,0.619849 -20146,5103:143,-33,-14,0,0,0.61626 -20147,5103:142,-32,-14,0,0,0.61256 -20148,5103:141,-31,-14,0,0,0.607574 -20149,5103:140,-30,-14,0,0,0.603328 -20150,5102:249,-29,-14,0,0,0.599387 -20151,5102:248,-28,-14,0,0,0.595186 -20152,5102:247,-27,-14,0,0,0.589754 -20153,5102:246,-26,-14,0,0,0.5799 -20154,5102:245,-25,-14,0,0,0.577119 -20155,5102:144,-24,-14,0,0,0.57456 -20156,5102:143,-23,-14,0,0,0.572574 -20157,5102:142,-22,-14,0,0,0.569454 -20158,5102:141,-21,-14,0,0,0.56514 -20159,5102:140,-20,-14,0,0,0.560768 -20160,5101:249,-19,-14,0,0,0.556004 -20161,5101:248,-18,-14,0,0,0.549298 -20162,5101:247,-17,-14,0,0,0.542422 -20163,5101:246,-16,-14,0,0,0.539846 -20164,5101:245,-15,-14,0,0,0.535912 -20165,5101:144,-14,-14,0,0,0.53443 -20166,5101:143,-13,-14,0,0,0.52939 -20167,5101:142,-12,-14,0,0,0.521782 -20168,5101:141,-11,-14,0,0,0.516499 -20169,5101:140,-10,-14,0,0,0.511443 -20170,5100:249,-9,-14,0,0,0.506153 -20171,5100:248,-8,-14,0,0,0.500888 -20172,5100:247,-7,-14,0,0,0.495622 -20173,5100:246,-6,-14,0,0,0.490922 -20174,5100:245,-5,-14,0,0,0.48756 -20175,5100:144,-4,-14,0,0,0.485763 -20176,5100:143,-3,-14,0,0,0.484145 -20177,5100:142,-2,-14,0,0,0.480939 -20178,5100:141,-1,-14,0,0,0.481042 -20179,3100:141,0,-14,0,0,0.479375 -20180,3100:141,1,-14,0,0,0.477221 -20181,3100:142,2,-14,0,0,0.475324 -20182,3100:143,3,-14,0,0,0.474736 -20183,3100:144,4,-14,0,0,0.474736 -20184,3100:245,5,-14,0,0,0.475735 -20185,3100:246,6,-14,0,0,0.4743 -20186,3100:247,7,-14,0,0,0.48235 -20187,3100:248,8,-14,0,0,0.489331 -20188,3100:249,9,-14,0,0,0.507334 -20189,3101:140,10,-14,0,0,0.522859 -20190,3101:141,11,-14,0,0,0.487867 -20191,3103:248,38,-14,0,0,0.639184 -20192,3103:249,39,-14,0,0,0.669131 -20193,3104:140,40,-14,0,0,0.666967 -20194,3104:141,41,-14,0,0,0.669381 -20195,3104:142,42,-14,0,0,0.678928 -20196,3104:143,43,-14,0,0,0.689384 -20197,3105:140,50,-14,0,0,0.631806 -20198,3105:141,51,-14,0,0,0.624246 -20199,3105:142,52,-14,0,0,0.616624 -20200,3105:143,53,-14,0,0,0.613657 -20201,3105:144,54,-14,0,0,0.612268 -20202,3105:245,55,-14,0,0,0.61278 -20203,3105:246,56,-14,0,0,0.614899 -20204,3105:247,57,-14,0,0,0.617474 -20205,3105:248,58,-14,0,0,0.613754 -20206,3105:249,59,-14,0,0,0.60941 -20207,3106:140,60,-14,0,0,0.608799 -20208,3106:141,61,-14,0,0,0.606153 -20209,3106:142,62,-14,0,0,0.602812 -20210,3106:143,63,-14,0,0,0.601335 -20211,3106:144,64,-14,0,0,0.599412 -20212,3106:245,65,-14,0,0,0.596843 -20213,3106:246,66,-14,0,0,0.596572 -20214,3106:247,67,-14,0,0,0.595136 -20215,3106:248,68,-14,0,0,0.594741 -20216,3106:249,69,-14,0,0,0.59422 -20217,3107:140,70,-14,0,0,0.594716 -20218,3107:141,71,-14,0,0,0.59427 -20219,3107:142,72,-14,0,0,0.59246 -20220,3107:144,74,-14,0,0,0.588261 -20221,3107:245,75,-14,0,0,0.591815 -20222,3107:246,76,-14,0,0,0.589032 -20223,3107:247,77,-14,0,0,0.587962 -20224,3107:248,78,-14,0,0,0.585571 -20225,3107:249,79,-14,0,0,0.590846 -20226,3108:140,80,-14,0,0,0.596547 -20227,3108:141,81,-14,0,0,0.59365 -20228,3108:142,82,-14,0,0,0.589232 -20229,3108:143,83,-14,0,0,0.585596 -20230,3108:144,84,-14,0,0,0.587863 -20231,3108:245,85,-14,0,0,0.594394 -20232,3108:246,86,-14,0,0,0.596176 -20233,3108:247,87,-14,0,0,0.586219 -20234,3108:248,88,-14,0,0,0.586269 -20235,3108:249,89,-14,0,0,0.588385 -20236,3109:140,90,-14,0,0,0.578197 -20237,3109:141,91,-14,0,0,0.570738 -20238,3109:142,92,-14,0,0,0.570335 -20239,3109:143,93,-14,0,0,0.582051 -20240,3109:144,94,-14,0,0,0.569075 -20241,3109:245,95,-14,0,0,0.558236 -20242,3109:246,96,-14,0,0,0.562665 -20243,3109:247,97,-14,0,0,0.575388 -20244,3109:248,98,-14,0,0,0.568798 -20245,3109:249,99,-14,0,0,0.566806 -20246,3110:140,100,-14,0,0,0.572649 -20247,3110:141,101,-14,0,0,0.572298 -20248,3110:142,102,-14,0,0,0.566781 -20249,3110:143,103,-14,0,0,0.565318 -20250,3110:144,104,-14,0,0,0.571014 -20251,3110:245,105,-14,0,0,0.577094 -20252,3110:246,106,-14,0,0,0.584124 -20253,3110:247,107,-14,0,0,0.587141 -20254,3110:248,108,-14,0,0,0.597684 -20255,3110:249,109,-14,0,0,0.598302 -20256,3111:140,110,-14,0,0,0.610559 -20257,3111:141,111,-14,0,0,0.607697 -20258,3111:142,112,-14,0,0,0.612219 -20259,3111:143,113,-14,0,0,0.620358 -20260,3111:144,114,-14,0,0,0.623715 -20261,3111:245,115,-14,0,0,0.632809 -20262,3111:246,116,-14,0,0,0.641597 -20263,3111:247,117,-14,0,0,0.647412 -20264,3111:248,118,-14,0,0,0.651715 -20265,3111:249,119,-14,0,0,0.657614 -20266,3112:140,120,-14,0,0,0.656341 -20267,3112:141,121,-14,0,0,0.667058 -20268,3112:142,122,-14,0,0,0.670653 -20269,3114:140,140,-14,0,0,0.714355 -20270,3114:141,141,-14,0,0,0.712569 -20271,3114:247,147,-14,0,0,0.635741 -20272,3114:248,148,-14,0,0,0.629101 -20273,3114:249,149,-14,0,0,0.617887 -20274,3115:140,150,-14,0,0,0.624053 -20275,3115:141,151,-14,0,0,0.622847 -20276,3115:142,152,-14,0,0,0.624149 -20277,3115:143,153,-14,0,0,0.617256 -20278,3115:144,154,-14,0,0,0.625185 -20279,3115:245,155,-14,0,0,0.623498 -20280,3115:246,156,-14,0,0,0.616576 -20281,3115:247,157,-14,0,0,0.615117 -20282,3115:248,158,-14,0,0,0.616964 -20283,3115:249,159,-14,0,0,0.61029 -20284,3116:140,160,-14,0,0,0.613316 -20285,3116:141,161,-14,0,0,0.609874 -20286,3116:142,162,-14,0,0,0.605883 -20287,3116:143,163,-14,0,0,0.605809 -20288,3116:144,164,-14,0,0,0.606275 -20289,3116:245,165,-14,0,0,0.605613 -20290,3116:246,166,-14,0,0,0.60826 -20291,3116:247,167,-14,0,0,0.604508 -20292,3116:248,168,-14,0,0,0.599066 -20293,3116:249,169,-14,0,0,0.595582 -20294,3117:140,170,-14,0,0,0.60025 -20295,3117:141,171,-14,0,0,0.598993 -20296,3117:142,172,-14,0,0,0.601483 -20297,3117:143,173,-14,0,0,0.603033 -20298,3117:144,174,-14,0,0,0.604999 -20299,3117:245,175,-14,0,0,0.605515 -20300,3117:246,176,-14,0,0,0.607182 -20301,3117:247,177,-14,0,0,0.60985 -20302,3117:248,178,-14,0,0,0.606422 -20303,3117:249,179,-14,0,0,0.593056 -20304,3118:140,180,-14,0,0,0.594493 -20305,5118:130,-180,-13,0,0,0.611536 -20306,5117:239,-179,-13,0,0,0.614192 -20307,5117:238,-178,-13,0,0,0.614582 -20308,5117:237,-177,-13,0,0,0.615117 -20309,5117:236,-176,-13,0,0,0.614777 -20310,5117:235,-175,-13,0,0,0.616892 -20311,5117:134,-174,-13,0,0,0.622702 -20312,5117:133,-173,-13,0,0,0.62622 -20313,5117:132,-172,-13,0,0,0.626052 -20314,5117:131,-171,-13,0,0,0.627278 -20315,5117:130,-170,-13,0,0,0.630418 -20316,5116:239,-169,-13,0,0,0.631639 -20317,5116:238,-168,-13,0,0,0.6297 -20318,5116:237,-167,-13,0,0,0.630825 -20319,5116:236,-166,-13,0,0,0.635217 -20320,5116:235,-165,-13,0,0,0.635979 -20321,5116:134,-164,-13,0,0,0.639634 -20322,5116:133,-163,-13,0,0,0.639752 -20323,5116:132,-162,-13,0,0,0.641952 -20324,5116:131,-161,-13,0,0,0.646426 -20325,5116:130,-160,-13,0,0,0.647412 -20326,5115:239,-159,-13,0,0,0.646073 -20327,5115:238,-158,-13,0,0,0.648817 -20328,5115:237,-157,-13,0,0,0.646144 -20329,5115:236,-156,-13,0,0,0.646966 -20330,5115:235,-155,-13,0,0,0.652764 -20331,5115:134,-154,-13,0,0,0.653531 -20332,5115:133,-153,-13,0,0,0.655367 -20333,5115:132,-152,-13,0,0,0.655413 -20334,5115:131,-151,-13,0,0,0.65699 -20335,5115:130,-150,-13,0,0,0.65884 -20336,5114:239,-149,-13,0,0,0.659024 -20337,5114:238,-148,-13,0,0,0.656943 -20338,5114:237,-147,-13,0,0,0.653508 -20339,5114:236,-146,-13,0,0,0.65253 -20340,5114:235,-145,-13,0,0,0.651575 -20341,5114:134,-144,-13,0,0,0.650945 -20342,5114:133,-143,-13,0,0,0.649379 -20343,5114:132,-142,-13,0,0,0.647904 -20344,5114:131,-141,-13,0,0,0.650104 -20345,5114:130,-140,-13,0,0,0.649285 -20346,5113:239,-139,-13,0,0,0.647786 -20347,5113:238,-138,-13,0,0,0.647575 -20348,5113:237,-137,-13,0,0,0.647013 -20349,5113:236,-136,-13,0,0,0.644804 -20350,5113:235,-135,-13,0,0,0.643273 -20351,5113:134,-134,-13,0,0,0.644686 -20352,5113:133,-133,-13,0,0,0.643037 -20353,5113:132,-132,-13,0,0,0.642282 -20354,5113:131,-131,-13,0,0,0.641881 -20355,5113:130,-130,-13,0,0,0.639729 -20356,5112:239,-129,-13,0,0,0.637286 -20357,5112:238,-128,-13,0,0,0.635859 -20358,5112:237,-127,-13,0,0,0.634813 -20359,5112:236,-126,-13,0,0,0.6314 -20360,5112:235,-125,-13,0,0,0.627205 -20361,5112:134,-124,-13,0,0,0.622364 -20362,5112:133,-123,-13,0,0,0.624222 -20363,5112:132,-122,-13,0,0,0.623378 -20364,5112:131,-121,-13,0,0,0.616867 -20365,5112:130,-120,-13,0,0,0.610901 -20366,5111:239,-119,-13,0,0,0.60603 -20367,5111:238,-118,-13,0,0,0.599609 -20368,5111:237,-117,-13,0,0,0.595607 -20369,5111:236,-116,-13,0,0,0.589132 -20370,5111:235,-115,-13,0,0,0.586618 -20371,5111:134,-114,-13,0,0,0.582351 -20372,5111:133,-113,-13,0,0,0.573479 -20373,5111:132,-112,-13,0,0,0.565848 -20374,5111:131,-111,-13,0,0,0.561147 -20375,5111:130,-110,-13,0,0,0.557703 -20376,5110:239,-109,-13,0,0,0.547568 -20377,5110:238,-108,-13,0,0,0.540126 -20378,5110:237,-107,-13,0,0,0.53397 -20379,5110:236,-106,-13,0,0,0.526933 -20380,5110:235,-105,-13,0,0,0.524832 -20381,5110:134,-104,-13,0,0,0.519423 -20382,5110:133,-103,-13,0,0,0.51057 -20383,5110:132,-102,-13,0,0,0.500143 -20384,5110:131,-101,-13,0,0,0.495083 -20385,5110:130,-100,-13,0,0,0.488175 -20386,5109:239,-99,-13,0,0,0.48058 -20387,5109:238,-98,-13,0,0,0.475376 -20388,5109:237,-97,-13,0,0,0.470458 -20389,5109:236,-96,-13,0,0,0.464397 -20390,5109:235,-95,-13,0,0,0.458295 -20391,5109:134,-94,-13,0,0,0.451747 -20392,5109:133,-93,-13,0,0,0.446029 -20393,5109:132,-92,-13,0,0,0.442553 -20394,5109:131,-91,-13,0,0,0.439691 -20395,5109:130,-90,-13,0,0,0.435569 -20396,5108:239,-89,-13,0,0,0.430348 -20397,5108:238,-88,-13,0,0,0.423386 -20398,5108:237,-87,-13,0,0,0.413709 -20399,5108:236,-86,-13,0,0,0.405882 -20400,5108:235,-85,-13,0,0,0.40353 -20401,5108:134,-84,-13,0,0,0.402467 -20402,5108:133,-83,-13,0,0,0.40222 -20403,5108:132,-82,-13,0,0,0.402566 -20404,5108:131,-81,-13,0,0,0.41209 -20405,5108:130,-80,-13,0,0,0.418427 -20406,5107:239,-79,-13,0,0,0.421731 -20407,5107:238,-78,-13,0,0,0.426951 -20408,5107:237,-77,-13,0,0,0.436226 -20409,5107:236,-76,-13,0,0,0.44154 -20410,5107:235,-75,-13,0,0,0.440628 -20411,5103:239,-39,-13,0,0,0.588709 -20412,5103:238,-38,-13,0,0,0.623812 -20413,5103:237,-37,-13,0,0,0.626075 -20414,5103:236,-36,-13,0,0,0.623498 -20415,5103:235,-35,-13,0,0,0.621083 -20416,5103:134,-34,-13,0,0,0.617499 -20417,5103:133,-33,-13,0,0,0.613754 -20418,5103:132,-32,-13,0,0,0.609141 -20419,5103:131,-31,-13,0,0,0.603942 -20420,5103:130,-30,-13,0,0,0.599338 -20421,5102:239,-29,-13,0,0,0.595384 -20422,5102:238,-28,-13,0,0,0.589878 -20423,5102:237,-27,-13,0,0,0.5837 -20424,5102:236,-26,-13,0,0,0.576618 -20425,5102:235,-25,-13,0,0,0.574459 -20426,5102:134,-24,-13,0,0,0.571291 -20427,5102:133,-23,-13,0,0,0.567815 -20428,5102:132,-22,-13,0,0,0.564307 -20429,5102:131,-21,-13,0,0,0.559882 -20430,5102:130,-20,-13,0,0,0.555243 -20431,5101:239,-19,-13,0,0,0.551053 -20432,5101:238,-18,-13,0,0,0.546575 -20433,5101:237,-17,-13,0,0,0.542575 -20434,5101:236,-16,-13,0,0,0.539233 -20435,5101:235,-15,-13,0,0,0.534891 -20436,5101:134,-14,-13,0,0,0.527035 -20437,5101:133,-13,-13,0,0,0.522705 -20438,5101:132,-12,-13,0,0,0.520449 -20439,5101:131,-11,-13,0,0,0.516499 -20440,5101:130,-10,-13,0,0,0.511057 -20441,5100:239,-9,-13,0,0,0.504458 -20442,5100:238,-8,-13,0,0,0.499038 -20443,5100:237,-7,-13,0,0,0.495596 -20444,5100:236,-6,-13,0,0,0.493798 -20445,5100:235,-5,-13,0,0,0.490589 -20446,5100:134,-4,-13,0,0,0.487713 -20447,5100:133,-3,-13,0,0,0.48684 -20448,5100:132,-2,-13,0,0,0.485686 -20449,5100:131,-1,-13,0,0,0.484197 -20450,3100:131,0,-13,0,0,0.482145 -20451,3100:131,1,-13,0,0,0.481606 -20452,3100:132,2,-13,0,0,0.484659 -20453,3100:133,3,-13,0,0,0.484659 -20454,3100:134,4,-13,0,0,0.484607 -20455,3100:235,5,-13,0,0,0.483992 -20456,3100:236,6,-13,0,0,0.485352 -20457,3100:237,7,-13,0,0,0.487611 -20458,3100:238,8,-13,0,0,0.499372 -20459,3100:239,9,-13,0,0,0.511982 -20460,3101:130,10,-13,0,0,0.538799 -20461,3101:131,11,-13,0,0,0.5185 -20462,3104:130,40,-13,0,0,0.665322 -20463,3104:131,41,-13,0,0,0.675672 -20464,3104:132,42,-13,0,0,0.681832 -20465,3104:133,43,-13,0,0,0.686252 -20466,3104:134,44,-13,0,0,0.695924 -20467,3105:130,50,-13,0,0,0.634932 -20468,3105:131,51,-13,0,0,0.63226 -20469,3105:132,52,-13,0,0,0.626316 -20470,3105:133,53,-13,0,0,0.621132 -20471,3105:134,54,-13,0,0,0.620431 -20472,3105:235,55,-13,0,0,0.622195 -20473,3105:236,56,-13,0,0,0.622267 -20474,3105:237,57,-13,0,0,0.624487 -20475,3105:238,58,-13,0,0,0.623619 -20476,3105:239,59,-13,0,0,0.620696 -20477,3106:130,60,-13,0,0,0.617717 -20478,3106:131,61,-13,0,0,0.613925 -20479,3106:132,62,-13,0,0,0.611974 -20480,3106:133,63,-13,0,0,0.610949 -20481,3106:134,64,-13,0,0,0.610217 -20482,3106:235,65,-13,0,0,0.609826 -20483,3106:236,66,-13,0,0,0.609361 -20484,3106:237,67,-13,0,0,0.60919 -20485,3106:238,68,-13,0,0,0.608113 -20486,3106:239,69,-13,0,0,0.606716 -20487,3107:130,70,-13,0,0,0.60657 -20489,3107:132,72,-13,0,0,0.608897 -20490,3107:134,74,-13,0,0,0.615142 -20491,3107:235,75,-13,0,0,0.615531 -20492,3107:236,76,-13,0,0,0.614047 -20493,3107:237,77,-13,0,0,0.613876 -20494,3107:238,78,-13,0,0,0.614606 -20495,3107:239,79,-13,0,0,0.612731 -20496,3108:130,80,-13,0,0,0.614801 -20497,3108:131,81,-13,0,0,0.61334 -20498,3108:132,82,-13,0,0,0.610217 -20499,3108:133,83,-13,0,0,0.60522 -20500,3108:134,84,-13,0,0,0.608015 -20501,3108:235,85,-13,0,0,0.599066 -20502,3108:236,86,-13,0,0,0.599289 -20503,3108:237,87,-13,0,0,0.597832 -20504,3108:238,88,-13,0,0,0.595013 -20505,3108:239,89,-13,0,0,0.598968 -20506,3109:130,90,-13,0,0,0.593625 -20507,3109:131,91,-13,0,0,0.593378 -20508,3109:132,92,-13,0,0,0.590276 -20509,3109:133,93,-13,0,0,0.588784 -20510,3109:134,94,-13,0,0,0.578097 -20511,3109:235,95,-13,0,0,0.58315 -20512,3109:236,96,-13,0,0,0.582526 -20513,3109:237,97,-13,0,0,0.580701 -20514,3109:238,98,-13,0,0,0.584947 -20515,3109:239,99,-13,0,0,0.579149 -20516,3110:130,100,-13,0,0,0.582201 -20517,3110:131,101,-13,0,0,0.589405 -20518,3110:132,102,-13,0,0,0.591964 -20519,3110:133,103,-13,0,0,0.589803 -20520,3110:134,104,-13,0,0,0.594617 -20521,3110:235,105,-13,0,0,0.594444 -20522,3110:236,106,-13,0,0,0.592287 -20523,3110:237,107,-13,0,0,0.599437 -20524,3110:238,108,-13,0,0,0.616139 -20525,3110:239,109,-13,0,0,0.612926 -20526,3111:130,110,-13,0,0,0.617741 -20527,3111:131,111,-13,0,0,0.620019 -20528,3111:132,112,-13,0,0,0.627614 -20529,3111:133,113,-13,0,0,0.632977 -20530,3111:134,114,-13,0,0,0.642872 -20531,3111:235,115,-13,0,0,0.646191 -20532,3111:236,116,-13,0,0,0.643956 -20533,3111:237,117,-13,0,0,0.653392 -20534,3111:238,118,-13,0,0,0.663007 -20535,3111:239,119,-13,0,0,0.668153 -20536,3112:130,120,-13,0,0,0.666716 -20537,3112:131,121,-13,0,0,0.676392 -20538,3112:132,122,-13,0,0,0.678301 -20539,3112:133,123,-13,0,0,0.682167 -20540,3112:134,124,-13,0,0,0.707471 -20541,3113:238,138,-13,0,0,0.714355 -20542,3113:239,139,-13,0,0,0.712927 -20543,3114:130,140,-13,0,0,0.709339 -20544,3114:131,141,-13,0,0,0.702063 -20545,3114:236,146,-13,0,0,0.641172 -20546,3114:237,147,-13,0,0,0.635859 -20547,3114:238,148,-13,0,0,0.635074 -20548,3114:239,149,-13,0,0,0.636383 -20549,3115:130,150,-13,0,0,0.633191 -20550,3115:131,151,-13,0,0,0.631089 -20551,3115:132,152,-13,0,0,0.635955 -20552,3115:133,153,-13,0,0,0.633478 -20553,3115:134,154,-13,0,0,0.633788 -20554,3115:235,155,-13,0,0,0.631209 -20555,3115:236,156,-13,0,0,0.630395 -20556,3115:237,157,-13,0,0,0.629077 -20557,3115:238,158,-13,0,0,0.628478 -20558,3115:239,159,-13,0,0,0.622654 -20559,3116:130,160,-13,0,0,0.620334 -20560,3116:131,161,-13,0,0,0.619608 -20561,3116:132,162,-13,0,0,0.619365 -20562,3116:133,163,-13,0,0,0.618905 -20563,3116:134,164,-13,0,0,0.612341 -20564,3116:235,165,-13,0,0,0.617377 -20565,3116:236,166,-13,0,0,0.618953 -20566,3116:237,167,-13,0,0,0.612316 -20567,3116:238,168,-13,0,0,0.613876 -20568,3116:239,169,-13,0,0,0.618008 -20569,3117:130,170,-13,0,0,0.621446 -20570,3117:131,171,-13,0,0,0.621712 -20571,3117:132,172,-13,0,0,0.621906 -20572,3117:133,173,-13,0,0,0.621446 -20573,3117:134,174,-13,0,0,0.621397 -20574,3117:235,175,-13,0,0,0.621978 -20575,3117:236,176,-13,0,0,0.621808 -20576,3117:237,177,-13,0,0,0.620552 -20577,3117:238,178,-13,0,0,0.617474 -20578,3117:239,179,-13,0,0,0.615895 -20579,3118:130,180,-13,0,0,0.611536 -20580,5118:120,-180,-12,0,0,0.630227 -20581,5117:229,-179,-12,0,0,0.630371 -20582,5117:228,-178,-12,0,0,0.631973 -20583,5117:227,-177,-12,0,0,0.63505 -20584,5117:226,-176,-12,0,0,0.638093 -20585,5117:225,-175,-12,0,0,0.641597 -20586,5117:124,-174,-12,0,0,0.646261 -20587,5117:123,-173,-12,0,0,0.649122 -20588,5117:122,-172,-12,0,0,0.647412 -20589,5117:121,-171,-12,0,0,0.647599 -20590,5117:120,-170,-12,0,0,0.647669 -20591,5116:229,-169,-12,0,0,0.648771 -20592,5116:228,-168,-12,0,0,0.649589 -20593,5116:227,-167,-12,0,0,0.651248 -20594,5116:226,-166,-12,0,0,0.652624 -20595,5116:225,-165,-12,0,0,0.653043 -21246,5108:101,-81,-10,0,0,0.48117 -20596,5116:124,-164,-12,0,0,0.653834 -20597,5116:123,-163,-12,0,0,0.656943 -20598,5116:122,-162,-12,0,0,0.659901 -20599,5116:121,-161,-12,0,0,0.661214 -20600,5116:120,-160,-12,0,0,0.662571 -20601,5115:229,-159,-12,0,0,0.662663 -20602,5115:228,-158,-12,0,0,0.661882 -20603,5115:227,-157,-12,0,0,0.662456 -20604,5115:226,-156,-12,0,0,0.663489 -20605,5115:225,-155,-12,0,0,0.665047 -20606,5115:124,-154,-12,0,0,0.665161 -20607,5115:123,-153,-12,0,0,0.664177 -20608,5115:122,-152,-12,0,0,0.664314 -20609,5115:121,-151,-12,0,0,0.663718 -20610,5115:120,-150,-12,0,0,0.663191 -20611,5114:229,-149,-12,0,0,0.663282 -20612,5114:228,-148,-12,0,0,0.661789 -20613,5114:227,-147,-12,0,0,0.660178 -20614,5114:226,-146,-12,0,0,0.658308 -20615,5114:225,-145,-12,0,0,0.657013 -20616,5114:124,-144,-12,0,0,0.658285 -20617,5114:123,-143,-12,0,0,0.659324 -20618,5114:122,-142,-12,0,0,0.659532 -20619,5114:121,-141,-12,0,0,0.658447 -20620,5114:120,-140,-12,0,0,0.657684 -20621,5113:229,-139,-12,0,0,0.657453 -20622,5113:228,-138,-12,0,0,0.656272 -20623,5113:227,-137,-12,0,0,0.654392 -20624,5113:226,-136,-12,0,0,0.653438 -20625,5113:225,-135,-12,0,0,0.652414 -20626,5113:124,-134,-12,0,0,0.652368 -20627,5113:123,-133,-12,0,0,0.650314 -20628,5113:122,-132,-12,0,0,0.646708 -20629,5113:121,-131,-12,0,0,0.64471 -20630,5113:120,-130,-12,0,0,0.643131 -20631,5112:229,-129,-12,0,0,0.640959 -20632,5112:228,-128,-12,0,0,0.637975 -20633,5112:227,-127,-12,0,0,0.634979 -20634,5112:226,-126,-12,0,0,0.631519 -20635,5112:225,-125,-12,0,0,0.628694 -20636,5112:124,-124,-12,0,0,0.622847 -20637,5112:123,-123,-12,0,0,0.620019 -20638,5112:122,-122,-12,0,0,0.616624 -20639,5112:121,-121,-12,0,0,0.612146 -20640,5112:120,-120,-12,0,0,0.605196 -20641,5111:229,-119,-12,0,0,0.600719 -20642,5111:228,-118,-12,0,0,0.595434 -20643,5111:227,-117,-12,0,0,0.592485 -20644,5111:226,-116,-12,0,0,0.588385 -20645,5111:225,-115,-12,0,0,0.581776 -20646,5111:124,-114,-12,0,0,0.574283 -20647,5111:123,-113,-12,0,0,0.570889 -20648,5111:122,-112,-12,0,0,0.567412 -20649,5111:121,-111,-12,0,0,0.558311 -20650,5111:120,-110,-12,0,0,0.554102 -20651,5110:229,-109,-12,0,0,0.549274 -20652,5110:228,-108,-12,0,0,0.543799 -20653,5110:227,-107,-12,0,0,0.535325 -20654,5110:226,-106,-12,0,0,0.526241 -20655,5110:225,-105,-12,0,0,0.520449 -20656,5110:124,-104,-12,0,0,0.515857 -20657,5110:123,-103,-12,0,0,0.507591 -20658,5110:122,-102,-12,0,0,0.500656 -20659,5110:121,-101,-12,0,0,0.495776 -20660,5110:120,-100,-12,0,0,0.492592 -20661,5109:229,-99,-12,0,0,0.486353 -20662,5109:228,-98,-12,0,0,0.479016 -20663,5109:227,-97,-12,0,0,0.472379 -20664,5109:226,-96,-12,0,0,0.466084 -20665,5109:225,-95,-12,0,0,0.459392 -20666,5109:124,-94,-12,0,0,0.45493 -20667,5109:123,-93,-12,0,0,0.448721 -20668,5109:122,-92,-12,0,0,0.44344 -20669,5109:121,-91,-12,0,0,0.437085 -20670,5109:120,-90,-12,0,0,0.434079 -20671,5108:229,-89,-12,0,0,0.427328 -20672,5108:228,-88,-12,0,0,0.421956 -20673,5108:227,-87,-12,0,0,0.418477 -20674,5108:226,-86,-12,0,0,0.414557 -20675,5108:225,-85,-12,0,0,0.413261 -20676,5108:124,-84,-12,0,0,0.414482 -20677,5108:123,-83,-12,0,0,0.420403 -20678,5108:122,-82,-12,0,0,0.423736 -20679,5108:121,-81,-12,0,0,0.42997 -20680,5108:120,-80,-12,0,0,0.439615 -20681,5107:229,-79,-12,0,0,0.445039 -20682,5107:228,-78,-12,0,0,0.458014 -20683,5107:227,-77,-12,0,0,0.45073 -20684,5107:226,-76,-12,0,0,0.396158 -20685,5103:229,-39,-12,0,0,0.62205 -20686,5103:228,-38,-12,0,0,0.627806 -20687,5103:227,-37,-12,0,0,0.627541 -20688,5103:226,-36,-12,0,0,0.626532 -20689,5103:225,-35,-12,0,0,0.622895 -20690,5103:124,-34,-12,0,0,0.620043 -20691,5103:123,-33,-12,0,0,0.615847 -20692,5103:122,-32,-12,0,0,0.611511 -20693,5103:121,-31,-12,0,0,0.605809 -20694,5103:120,-30,-12,0,0,0.599091 -20695,5102:229,-29,-12,0,0,0.592758 -20696,5102:228,-28,-12,0,0,0.588261 -20697,5102:227,-27,-12,0,0,0.586743 -20698,5102:226,-26,-12,0,0,0.58025 -20699,5102:225,-25,-12,0,0,0.57584 -20700,5102:124,-24,-12,0,0,0.570838 -20701,5102:123,-23,-12,0,0,0.567563 -20702,5102:122,-22,-12,0,0,0.563499 -20703,5102:121,-21,-12,0,0,0.558995 -20704,5102:120,-20,-12,0,0,0.554888 -20705,5101:229,-19,-12,0,0,0.550341 -20706,5101:228,-18,-12,0,0,0.547441 -20707,5101:227,-17,-12,0,0,0.543263 -20708,5101:226,-16,-12,0,0,0.538007 -20709,5101:225,-15,-12,0,0,0.533766 -20710,5101:124,-14,-12,0,0,0.530286 -20711,5101:123,-13,-12,0,0,0.525729 -20712,5101:122,-12,-12,0,0,0.521295 -20713,5101:121,-11,-12,0,0,0.516448 -20714,5101:120,-10,-12,0,0,0.512058 -20715,5100:229,-9,-12,0,0,0.506872 -20716,5100:228,-8,-12,0,0,0.501324 -20717,5100:227,-7,-12,0,0,0.494647 -20718,5100:226,-6,-12,0,0,0.48969 -20719,5100:225,-5,-12,0,0,0.488945 -20720,5100:124,-4,-12,0,0,0.488869 -20721,5100:123,-3,-12,0,0,0.490486 -20722,5100:122,-2,-12,0,0,0.491976 -20723,5100:121,-1,-12,0,0,0.493619 -20724,3100:121,0,-12,0,0,0.494313 -20725,3100:121,1,-12,0,0,0.49647 -20726,3100:122,2,-12,0,0,0.493876 -20727,3100:123,3,-12,0,0,0.492104 -20728,3100:124,4,-12,0,0,0.493619 -20729,3100:225,5,-12,0,0,0.498113 -20730,3100:226,6,-12,0,0,0.504201 -20731,3100:227,7,-12,0,0,0.509619 -20732,3100:228,8,-12,0,0,0.513522 -20733,3100:229,9,-12,0,0,0.528674 -20734,3101:120,10,-12,0,0,0.557297 -20735,3101:121,11,-12,0,0,0.559249 -20736,3101:122,12,-12,0,0,0.488561 -20737,3104:121,41,-12,0,0,0.677874 -20738,3104:122,42,-12,0,0,0.684101 -20739,3104:123,43,-12,0,0,0.684701 -20740,3104:124,44,-12,0,0,0.682567 -20741,3104:225,45,-12,0,0,0.68123 -20742,3104:226,46,-12,0,0,0.683413 -20743,3104:227,47,-12,0,0,0.690922 -20744,3105:120,50,-12,0,0,0.636383 -20745,3105:121,51,-12,0,0,0.63343 -20746,3105:122,52,-12,0,0,0.633597 -20747,3105:123,53,-12,0,0,0.631639 -20748,3105:124,54,-12,0,0,0.632571 -20749,3105:225,55,-12,0,0,0.63331 -20750,3105:226,56,-12,0,0,0.633096 -20751,3105:227,57,-12,0,0,0.632547 -20752,3105:228,58,-12,0,0,0.631615 -20753,3105:229,59,-12,0,0,0.629653 -20754,3106:120,60,-12,0,0,0.624583 -20755,3106:121,61,-12,0,0,0.62333 -20756,3106:122,62,-12,0,0,0.624921 -20757,3106:123,63,-12,0,0,0.620745 -20758,3106:124,64,-12,0,0,0.620745 -20759,3106:225,65,-12,0,0,0.619777 -20760,3106:226,66,-12,0,0,0.621011 -20761,3106:227,67,-12,0,0,0.623305 -20762,3106:228,68,-12,0,0,0.623426 -20763,3106:229,69,-12,0,0,0.62147 -20764,3107:120,70,-12,0,0,0.619971 -20765,3107:121,71,-12,0,0,0.619075 -20766,3107:122,72,-12,0,0,0.618566 -20767,3107:124,74,-12,0,0,0.626845 -20768,3107:225,75,-12,0,0,0.634121 -20769,3107:226,76,-12,0,0,0.635764 -20770,3107:227,77,-12,0,0,0.63517 -20771,3107:228,78,-12,0,0,0.632451 -20772,3107:229,79,-12,0,0,0.628934 -20773,3108:120,80,-12,0,0,0.62795 -20774,3108:121,81,-12,0,0,0.625233 -20775,3108:122,82,-12,0,0,0.620914 -20776,3108:123,83,-12,0,0,0.618783 -20777,3108:124,84,-12,0,0,0.616818 -20778,3108:225,85,-12,0,0,0.613973 -20779,3108:226,86,-12,0,0,0.610852 -20780,3108:227,87,-12,0,0,0.607084 -20781,3108:228,88,-12,0,0,0.604361 -20782,3108:229,89,-12,0,0,0.604361 -20783,3109:120,90,-12,0,0,0.60468 -20784,3109:121,91,-12,0,0,0.605613 -20785,3109:122,92,-12,0,0,0.605588 -20786,3109:123,93,-12,0,0,0.604188 -20787,3109:124,94,-12,0,0,0.603156 -20788,3109:225,95,-12,0,0,0.601877 -20789,3109:226,96,-12,0,0,0.59479 -20790,3109:227,97,-12,0,0,0.592708 -20791,3109:228,98,-12,0,0,0.593006 -20792,3109:229,99,-12,0,0,0.601803 -20793,3110:120,100,-12,0,0,0.609948 -20794,3110:121,101,-12,0,0,0.617741 -20795,3110:122,102,-12,0,0,0.627374 -20796,3110:123,103,-12,0,0,0.63312 -20797,3110:124,104,-12,0,0,0.631089 -20798,3110:225,105,-12,0,0,0.619438 -20799,3110:226,106,-12,0,0,0.616211 -20800,3110:227,107,-12,0,0,0.620503 -20801,3110:228,108,-12,0,0,0.628861 -20802,3110:229,109,-12,0,0,0.637951 -20803,3111:120,110,-12,0,0,0.63788 -20804,3111:121,111,-12,0,0,0.638425 -20805,3111:122,112,-12,0,0,0.650151 -20806,3111:123,113,-12,0,0,0.662755 -20807,3111:124,114,-12,0,0,0.671651 -20808,3111:225,115,-12,0,0,0.670109 -20809,3111:226,116,-12,0,0,0.663374 -20810,3111:227,117,-12,0,0,0.665116 -20811,3111:228,118,-12,0,0,0.67113 -21247,5108:100,-80,-10,0,0,0.4843 -20812,3111:229,119,-12,0,0,0.678345 -20813,3112:120,120,-12,0,0,0.674613 -20814,3112:121,121,-12,0,0,0.677067 -20815,3112:122,122,-12,0,0,0.680561 -20816,3112:123,123,-12,0,0,0.686295 -20817,3112:124,124,-12,0,0,0.690022 -20818,3112:225,125,-12,0,0,0.702557 -20819,3112:229,129,-12,0,0,0.714355 -20820,3113:226,136,-12,0,0,0.714355 -20821,3113:227,137,-12,0,0,0.714355 -20822,3113:228,138,-12,0,0,0.702536 -20823,3113:229,139,-12,0,0,0.693876 -20824,3114:120,140,-12,0,0,0.69123 -20825,3114:121,141,-12,0,0,0.692631 -20826,3114:226,146,-12,0,0,0.639255 -20827,3114:227,147,-12,0,0,0.640013 -20828,3114:228,148,-12,0,0,0.642896 -20829,3114:229,149,-12,0,0,0.642848 -20830,3115:120,150,-12,0,0,0.645251 -20831,3115:121,151,-12,0,0,0.644639 -20832,3115:122,152,-12,0,0,0.643886 -20833,3115:123,153,-12,0,0,0.646379 -20834,3115:124,154,-12,0,0,0.647107 -20835,3115:225,155,-12,0,0,0.646073 -20836,3115:226,156,-12,0,0,0.643108 -20837,3115:227,157,-12,0,0,0.639208 -20838,3115:228,158,-12,0,0,0.635646 -20839,3115:229,159,-12,0,0,0.634384 -20840,3116:120,160,-12,0,0,0.633168 -20841,3116:121,161,-12,0,0,0.631878 -20842,3116:122,162,-12,0,0,0.631136 -20843,3116:123,163,-12,0,0,0.630945 -20844,3116:124,164,-12,0,0,0.632045 -20845,3116:225,165,-12,0,0,0.632762 -20846,3116:226,166,-12,0,0,0.631711 -20847,3116:227,167,-12,0,0,0.62333 -20848,3116:228,168,-12,0,0,0.629484 -20849,3116:229,169,-12,0,0,0.634384 -20850,3117:120,170,-12,0,0,0.636265 -20851,3117:121,171,-12,0,0,0.637309 -20852,3117:122,172,-12,0,0,0.635622 -20853,3117:123,173,-12,0,0,0.635622 -20854,3117:124,174,-12,0,0,0.63343 -20855,3117:225,175,-12,0,0,0.631782 -20856,3117:226,176,-12,0,0,0.630706 -20857,3117:227,177,-12,0,0,0.630418 -20858,3117:228,178,-12,0,0,0.631471 -20859,3117:229,179,-12,0,0,0.630802 -20860,3118:120,180,-12,0,0,0.630227 -20861,5118:110,-180,-11,0,0,0.645345 -20862,5117:219,-179,-11,0,0,0.646966 -20863,5117:218,-178,-11,0,0,0.649052 -20864,5117:217,-177,-11,0,0,0.652204 -20865,5117:216,-176,-11,0,0,0.655413 -20866,5117:215,-175,-11,0,0,0.659716 -20867,5117:114,-174,-11,0,0,0.662984 -20868,5117:113,-173,-11,0,0,0.662226 -20869,5117:112,-172,-11,0,0,0.658007 -20870,5117:111,-171,-11,0,0,0.659255 -20871,5117:110,-170,-11,0,0,0.660063 -20872,5116:219,-169,-11,0,0,0.66172 -20873,5116:218,-168,-11,0,0,0.663443 -20874,5116:217,-167,-11,0,0,0.665161 -20875,5116:216,-166,-11,0,0,0.665779 -20876,5116:215,-165,-11,0,0,0.666716 -20877,5116:114,-164,-11,0,0,0.667583 -20878,5116:113,-163,-11,0,0,0.669131 -20879,5116:112,-162,-11,0,0,0.668882 -20880,5116:111,-161,-11,0,0,0.669904 -20881,5116:110,-160,-11,0,0,0.669381 -20882,5115:219,-159,-11,0,0,0.669927 -20883,5115:218,-158,-11,0,0,0.670767 -20884,5115:217,-157,-11,0,0,0.671832 -20885,5115:216,-156,-11,0,0,0.672014 -20886,5115:215,-155,-11,0,0,0.67113 -20887,5115:114,-154,-11,0,0,0.669472 -20888,5115:113,-153,-11,0,0,0.668722 -20889,5115:112,-152,-11,0,0,0.668745 -20890,5115:111,-151,-11,0,0,0.668586 -20891,5115:110,-150,-11,0,0,0.667583 -20892,5114:219,-149,-11,0,0,0.666761 -20893,5114:218,-148,-11,0,0,0.666191 -20894,5114:217,-147,-11,0,0,0.664131 -20895,5114:216,-146,-11,0,0,0.662019 -20896,5114:215,-145,-11,0,0,0.660523 -20897,5114:114,-144,-11,0,0,0.659671 -20898,5114:113,-143,-11,0,0,0.658932 -20899,5114:112,-142,-11,0,0,0.658424 -20900,5114:111,-141,-11,0,0,0.658516 -20901,5114:110,-140,-11,0,0,0.657198 -20902,5113:219,-139,-11,0,0,0.656735 -20903,5113:218,-138,-11,0,0,0.655112 -20904,5113:217,-137,-11,0,0,0.653927 -20905,5113:216,-136,-11,0,0,0.651201 -20906,5113:215,-135,-11,0,0,0.650407 -20907,5113:114,-134,-11,0,0,0.647575 -20908,5113:113,-133,-11,0,0,0.64605 -20909,5113:112,-132,-11,0,0,0.644969 -20910,5113:111,-131,-11,0,0,0.641786 -20911,5113:110,-130,-11,0,0,0.638852 -20912,5112:219,-129,-11,0,0,0.633835 -20913,5112:218,-128,-11,0,0,0.630203 -20914,5112:217,-127,-11,0,0,0.628526 -20915,5112:216,-126,-11,0,0,0.623378 -20916,5112:215,-125,-11,0,0,0.621422 -20917,5112:114,-124,-11,0,0,0.618783 -20918,5112:113,-123,-11,0,0,0.614972 -20919,5112:112,-122,-11,0,0,0.61134 -20920,5112:111,-121,-11,0,0,0.608652 -20921,5112:110,-120,-11,0,0,0.605122 -20922,5111:219,-119,-11,0,0,0.601113 -20923,5111:218,-118,-11,0,0,0.595211 -20924,5111:217,-117,-11,0,0,0.588585 -20925,5111:216,-116,-11,0,0,0.582126 -20926,5111:215,-115,-11,0,0,0.57476 -20927,5111:114,-114,-11,0,0,0.567992 -20928,5111:113,-113,-11,0,0,0.562943 -20929,5111:112,-112,-11,0,0,0.557273 -20930,5111:111,-111,-11,0,0,0.554812 -20931,5111:110,-110,-11,0,0,0.550393 -20932,5110:219,-109,-11,0,0,0.544564 -20933,5110:218,-108,-11,0,0,0.535171 -20934,5110:217,-107,-11,0,0,0.527112 -20935,5110:216,-106,-11,0,0,0.522167 -20936,5110:215,-105,-11,0,0,0.515755 -20937,5110:114,-104,-11,0,0,0.511109 -20938,5110:113,-103,-11,0,0,0.505793 -20939,5110:112,-102,-11,0,0,0.498679 -20940,5110:111,-101,-11,0,0,0.492027 -20941,5110:110,-100,-11,0,0,0.483684 -20942,5109:219,-99,-11,0,0,0.477862 -20943,5109:218,-98,-11,0,0,0.474966 -20944,5109:217,-97,-11,0,0,0.46813 -20945,5109:216,-96,-11,0,0,0.46409 -20946,5109:215,-95,-11,0,0,0.460489 -20947,5109:114,-94,-11,0,0,0.455899 -20948,5109:113,-93,-11,0,0,0.4519 -20949,5109:112,-92,-11,0,0,0.4441 -20950,5109:111,-91,-11,0,0,0.441919 -20951,5109:110,-90,-11,0,0,0.439995 -20952,5108:219,-89,-11,0,0,0.430046 -20953,5108:218,-88,-11,0,0,0.431154 -20954,5108:217,-87,-11,0,0,0.431885 -20955,5108:216,-86,-11,0,0,0.431582 -20956,5108:215,-85,-11,0,0,0.437768 -20957,5108:114,-84,-11,0,0,0.4404 -20958,5108:113,-83,-11,0,0,0.447501 -20959,5108:112,-82,-11,0,0,0.451696 -20960,5108:111,-81,-11,0,0,0.455923 -20961,5108:110,-80,-11,0,0,0.461076 -20962,5107:219,-79,-11,0,0,0.472302 -20963,5107:218,-78,-11,0,0,0.465778 -20964,5107:217,-77,-11,0,0,0.439185 -20965,5103:219,-39,-11,0,0,0.620914 -20966,5103:218,-38,-11,0,0,0.631615 -20967,5103:217,-37,-11,0,0,0.625907 -20968,5103:216,-36,-11,0,0,0.624318 -20969,5103:215,-35,-11,0,0,0.622944 -20970,5103:114,-34,-11,0,0,0.618517 -20971,5103:113,-33,-11,0,0,0.616211 -20972,5103:112,-32,-11,0,0,0.61256 -20973,5103:111,-31,-11,0,0,0.608358 -20974,5103:110,-30,-11,0,0,0.605417 -20975,5102:219,-29,-11,0,0,0.601606 -20976,5102:218,-28,-11,0,0,0.596275 -20977,5102:217,-27,-11,0,0,0.594344 -20978,5102:216,-26,-11,0,0,0.587141 -20979,5102:215,-25,-11,0,0,0.581851 -20980,5102:114,-24,-11,0,0,0.581576 -20981,5102:113,-23,-11,0,0,0.576316 -20982,5102:112,-22,-11,0,0,0.573605 -20983,5102:111,-21,-11,0,0,0.570511 -20984,5102:110,-20,-11,0,0,0.56663 -20985,5101:219,-19,-11,0,0,0.562538 -20986,5101:218,-18,-11,0,0,0.556664 -20987,5101:217,-17,-11,0,0,0.551435 -20988,5101:216,-16,-11,0,0,0.543646 -20989,5101:215,-15,-11,0,0,0.539182 -20990,5101:114,-14,-11,0,0,0.532333 -20991,5101:113,-13,-11,0,0,0.528136 -20992,5101:112,-12,-11,0,0,0.523448 -20993,5101:111,-11,-11,0,0,0.519269 -20994,5101:110,-10,-11,0,0,0.515062 -20995,5100:219,-9,-11,0,0,0.51116 -20996,5100:218,-8,-11,0,0,0.507283 -20997,5100:217,-7,-11,0,0,0.504253 -20998,5100:216,-6,-11,0,0,0.506101 -20999,5100:215,-5,-11,0,0,0.504869 -21000,5100:114,-4,-11,0,0,0.503045 -21001,5100:113,-3,-11,0,0,0.504663 -21002,5100:112,-2,-11,0,0,0.504715 -21003,5100:111,-1,-11,0,0,0.507129 -21004,3100:111,0,-11,0,0,0.505614 -21005,3100:111,1,-11,0,0,0.504971 -21006,3100:112,2,-11,0,0,0.502249 -21007,3100:113,3,-11,0,0,0.502223 -21008,3100:114,4,-11,0,0,0.506153 -21009,3100:215,5,-11,0,0,0.512136 -21010,3100:216,6,-11,0,0,0.522372 -21011,3100:217,7,-11,0,0,0.527599 -21012,3100:218,8,-11,0,0,0.536934 -21013,3100:219,9,-11,0,0,0.55973 -21014,3101:110,10,-11,0,0,0.578072 -21015,3101:111,11,-11,0,0,0.57358 -21016,3101:112,12,-11,0,0,0.543187 -21017,3104:111,41,-11,0,0,0.673574 -21018,3104:112,42,-11,0,0,0.673371 -21019,3104:113,43,-11,0,0,0.671153 -21020,3104:114,44,-11,0,0,0.674793 -21021,3104:215,45,-11,0,0,0.67774 -21022,3104:216,46,-11,0,0,0.664062 -21023,3104:217,47,-11,0,0,0.656295 -21024,3104:218,48,-11,0,0,0.658771 -21025,3105:110,50,-11,0,0,0.63769 -21026,3105:111,51,-11,0,0,0.638473 -21027,3105:112,52,-11,0,0,0.639776 -21028,3105:113,53,-11,0,0,0.638307 -21029,3105:114,54,-11,0,0,0.641432 -21030,3105:215,55,-11,0,0,0.644545 -21031,3105:216,56,-11,0,0,0.645815 -21032,3105:217,57,-11,0,0,0.644828 -21033,3105:218,58,-11,0,0,0.642565 -21034,3105:219,59,-11,0,0,0.639918 -21035,3106:110,60,-11,0,0,0.636574 -21036,3106:111,61,-11,0,0,0.636431 -21037,3106:112,62,-11,0,0,0.632881 -21038,3106:113,63,-11,0,0,0.629772 -21039,3106:114,64,-11,0,0,0.630778 -21040,3106:215,65,-11,0,0,0.632236 -21041,3106:216,66,-11,0,0,0.635027 -21042,3106:217,67,-11,0,0,0.63833 -21043,3106:218,68,-11,0,0,0.640391 -21044,3106:219,69,-11,0,0,0.641337 -21045,3107:110,70,-11,0,0,0.640107 -21046,3107:111,71,-11,0,0,0.638069 -21047,3107:112,72,-11,0,0,0.638662 -21048,3107:114,74,-11,0,0,0.642329 -21049,3107:215,75,-11,0,0,0.643932 -21050,3107:216,76,-11,0,0,0.64431 -21051,3107:217,77,-11,0,0,0.643202 -21052,3107:218,78,-11,0,0,0.640935 -21053,3107:219,79,-11,0,0,0.637856 -21054,3108:110,80,-11,0,0,0.633406 -21055,3108:111,81,-11,0,0,0.629221 -21056,3108:112,82,-11,0,0,0.625402 -21057,3108:113,83,-11,0,0,0.621881 -21058,3108:114,84,-11,0,0,0.61842 -21059,3108:215,85,-11,0,0,0.61592 -21060,3108:216,86,-11,0,0,0.613559 -21061,3108:217,87,-11,0,0,0.612609 -21062,3108:218,88,-11,0,0,0.612341 -21063,3108:219,89,-11,0,0,0.612755 -21064,3109:110,90,-11,0,0,0.614461 -21065,3109:111,91,-11,0,0,0.617134 -21066,3109:112,92,-11,0,0,0.617547 -21067,3109:113,93,-11,0,0,0.614339 -21068,3109:114,94,-11,0,0,0.610705 -21069,3109:215,95,-11,0,0,0.60777 -21070,3109:216,96,-11,0,0,0.606594 -21071,3109:217,97,-11,0,0,0.606986 -21072,3109:218,98,-11,0,0,0.605441 -21073,3109:219,99,-11,0,0,0.608554 -21074,3110:110,100,-11,0,0,0.614728 -21075,3110:111,101,-11,0,0,0.62557 -21076,3110:112,102,-11,0,0,0.629581 -21077,3110:113,103,-11,0,0,0.633168 -21078,3110:114,104,-11,0,0,0.636526 -21079,3110:215,105,-11,0,0,0.630203 -21080,3110:216,106,-11,0,0,0.627037 -21081,3110:217,107,-11,0,0,0.637286 -21082,3110:218,108,-11,0,0,0.647482 -21083,3110:219,109,-11,0,0,0.657407 -21084,3111:110,110,-11,0,0,0.659209 -21085,3111:111,111,-11,0,0,0.663145 -21086,3111:112,112,-11,0,0,0.668062 -21087,3111:113,113,-11,0,0,0.673168 -21088,3111:114,114,-11,0,0,0.677336 -21089,3111:215,115,-11,0,0,0.678166 -21090,3111:216,116,-11,0,0,0.67792 -21091,3111:217,117,-11,0,0,0.679532 -21092,3111:218,118,-11,0,0,0.680159 -21093,3111:219,119,-11,0,0,0.680382 -21094,3112:110,120,-11,0,0,0.679644 -21095,3112:111,121,-11,0,0,0.681632 -21096,3112:112,122,-11,0,0,0.681609 -21097,3112:113,123,-11,0,0,0.683991 -21098,3112:114,124,-11,0,0,0.691054 -21099,3112:215,125,-11,0,0,0.697292 -21100,3112:216,126,-11,0,0,0.699024 -21101,3112:217,127,-11,0,0,0.698029 -21102,3112:218,128,-11,0,0,0.69924 -21103,3112:219,129,-11,0,0,0.703244 -21104,3113:110,130,-11,0,0,0.714355 -21105,3113:217,137,-11,0,0,0.70485 -21106,3113:218,138,-11,0,0,0.683835 -21107,3113:219,139,-11,0,0,0.677224 -21108,3114:110,140,-11,0,0,0.682813 -21109,3114:111,141,-11,0,0,0.68718 -21110,3114:114,144,-11,0,0,0.664108 -21111,3114:215,145,-11,0,0,0.641904 -21112,3114:216,146,-11,0,0,0.642612 -21113,3114:217,147,-11,0,0,0.643603 -21114,3114:218,148,-11,0,0,0.648607 -21115,3114:219,149,-11,0,0,0.652787 -21116,3115:110,150,-11,0,0,0.653624 -21117,3115:111,151,-11,0,0,0.656619 -21118,3115:112,152,-11,0,0,0.655321 -21119,3115:113,153,-11,0,0,0.657638 -21120,3115:114,154,-11,0,0,0.659855 -21121,3115:215,155,-11,0,0,0.660478 -21122,3115:216,156,-11,0,0,0.658308 -21123,3115:217,157,-11,0,0,0.654183 -21124,3115:218,158,-11,0,0,0.651458 -21125,3115:219,159,-11,0,0,0.649379 -21126,3116:110,160,-11,0,0,0.646872 -21127,3116:111,161,-11,0,0,0.645134 -21128,3116:112,162,-11,0,0,0.64478 -21129,3116:113,163,-11,0,0,0.644898 -21130,3116:114,164,-11,0,0,0.645698 -21131,3116:215,165,-11,0,0,0.646215 -21132,3116:216,166,-11,0,0,0.646801 -21133,3116:217,167,-11,0,0,0.646801 -21134,3116:218,168,-11,0,0,0.646426 -21135,3116:219,169,-11,0,0,0.649356 -21136,3117:110,170,-11,0,0,0.649613 -21137,3117:111,171,-11,0,0,0.648841 -21138,3117:112,172,-11,0,0,0.64856 -21139,3117:113,173,-11,0,0,0.646849 -21140,3117:114,174,-11,0,0,0.644498 -21141,3117:215,175,-11,0,0,0.643532 -21142,3117:216,176,-11,0,0,0.643084 -21143,3117:217,177,-11,0,0,0.642117 -21144,3117:218,178,-11,0,0,0.642872 -21145,3117:219,179,-11,0,0,0.643932 -21146,3118:110,180,-11,0,0,0.645345 -21147,5118:100,-180,-10,0,0,0.655437 -21148,5117:209,-179,-10,0,0,0.658146 -21149,5117:208,-178,-10,0,0,0.66103 -21150,5117:207,-177,-10,0,0,0.66365 -21151,5117:206,-176,-10,0,0,0.667241 -21152,5117:205,-175,-10,0,0,0.669768 -21153,5117:104,-174,-10,0,0,0.670495 -21154,5117:103,-173,-10,0,0,0.669541 -21155,5117:102,-172,-10,0,0,0.668358 -21156,5117:101,-171,-10,0,0,0.668312 -21157,5117:100,-170,-10,0,0,0.668768 -21158,5116:209,-169,-10,0,0,0.668608 -21159,5116:208,-168,-10,0,0,0.668631 -21160,5116:207,-167,-10,0,0,0.670223 -21161,5116:206,-166,-10,0,0,0.673168 -21162,5116:205,-165,-10,0,0,0.673665 -21163,5116:104,-164,-10,0,0,0.674455 -21164,5116:103,-163,-10,0,0,0.674906 -21165,5116:102,-162,-10,0,0,0.675424 -21166,5116:101,-161,-10,0,0,0.676324 -21167,5116:100,-160,-10,0,0,0.67468 -21168,5115:209,-159,-10,0,0,0.675131 -21169,5115:208,-158,-10,0,0,0.674883 -21170,5115:207,-157,-10,0,0,0.674771 -21171,5115:206,-156,-10,0,0,0.675154 -21172,5115:205,-155,-10,0,0,0.673371 -21173,5115:104,-154,-10,0,0,0.671221 -21174,5115:103,-153,-10,0,0,0.669836 -21175,5115:102,-152,-10,0,0,0.669131 -21176,5115:101,-151,-10,0,0,0.667902 -21177,5115:100,-150,-10,0,0,0.667446 -21178,5114:209,-149,-10,0,0,0.666579 -21179,5114:208,-148,-10,0,0,0.665139 -21180,5114:207,-147,-10,0,0,0.663099 -21181,5114:206,-146,-10,0,0,0.662226 -21182,5114:205,-145,-10,0,0,0.660869 -21183,5114:104,-144,-10,0,0,0.658978 -21184,5114:103,-143,-10,0,0,0.656712 -21185,5114:102,-142,-10,0,0,0.655669 -21186,5114:101,-141,-10,0,0,0.653881 -21187,5114:100,-140,-10,0,0,0.652461 -21188,5113:209,-139,-10,0,0,0.651762 -21189,5113:208,-138,-10,0,0,0.648817 -21190,5113:207,-137,-10,0,0,0.647646 -21191,5113:206,-136,-10,0,0,0.64478 -21192,5113:205,-135,-10,0,0,0.642471 -21193,5113:104,-134,-10,0,0,0.64103 -21194,5113:103,-133,-10,0,0,0.639586 -21195,5113:102,-132,-10,0,0,0.637167 -21196,5113:101,-131,-10,0,0,0.632833 -21197,5113:100,-130,-10,0,0,0.633024 -21198,5112:209,-129,-10,0,0,0.629892 -21199,5112:208,-128,-10,0,0,0.62545 -21200,5112:207,-127,-10,0,0,0.621736 -21201,5112:206,-126,-10,0,0,0.621688 -21202,5112:205,-125,-10,0,0,0.615336 -21203,5112:104,-124,-10,0,0,0.615433 -21204,5112:103,-123,-10,0,0,0.609874 -21205,5112:102,-122,-10,0,0,0.603476 -21206,5112:101,-121,-10,0,0,0.600226 -21207,5112:100,-120,-10,0,0,0.595508 -21208,5111:209,-119,-10,0,0,0.593427 -21209,5111:208,-118,-10,0,0,0.587639 -21210,5111:207,-117,-10,0,0,0.582626 -21211,5111:206,-116,-10,0,0,0.578046 -21212,5111:205,-115,-10,0,0,0.572222 -21213,5111:104,-114,-10,0,0,0.566731 -21214,5111:103,-113,-10,0,0,0.559502 -21215,5111:102,-112,-10,0,0,0.55466 -21216,5111:101,-111,-10,0,0,0.552374 -21217,5111:100,-110,-10,0,0,0.544029 -21218,5110:209,-109,-10,0,0,0.540126 -21219,5110:208,-108,-10,0,0,0.533996 -21220,5110:207,-107,-10,0,0,0.527624 -21221,5110:206,-106,-10,0,0,0.522679 -21222,5110:205,-105,-10,0,0,0.515524 -21223,5110:104,-104,-10,0,0,0.509132 -21224,5110:103,-103,-10,0,0,0.50474 -21225,5110:102,-102,-10,0,0,0.502378 -21226,5110:101,-101,-10,0,0,0.496932 -21227,5110:100,-100,-10,0,0,0.490922 -21228,5109:209,-99,-10,0,0,0.485994 -21229,5109:208,-98,-10,0,0,0.480811 -21230,5109:207,-97,-10,0,0,0.476964 -21231,5109:206,-96,-10,0,0,0.472686 -21232,5109:205,-95,-10,0,0,0.464985 -21233,5109:104,-94,-10,0,0,0.457658 -21234,5109:103,-93,-10,0,0,0.458397 -21235,5109:102,-92,-10,0,0,0.457862 -21236,5109:101,-91,-10,0,0,0.459647 -21237,5109:100,-90,-10,0,0,0.458448 -21238,5108:209,-89,-10,0,0,0.456179 -21239,5108:208,-88,-10,0,0,0.454497 -21240,5108:207,-87,-10,0,0,0.45804 -21241,5108:206,-86,-10,0,0,0.462098 -21242,5108:205,-85,-10,0,0,0.464474 -21243,5108:104,-84,-10,0,0,0.467133 -21248,5107:209,-79,-10,0,0,0.486635 -21249,5107:208,-78,-10,0,0,0.463426 -21250,5103:207,-37,-10,0,0,0.626629 -21251,5103:206,-36,-10,0,0,0.625402 -21252,5103:205,-35,-10,0,0,0.622774 -21253,5103:104,-34,-10,0,0,0.619898 -21254,5103:103,-33,-10,0,0,0.616357 -21255,5103:102,-32,-10,0,0,0.614412 -21256,5103:101,-31,-10,0,0,0.609067 -21257,5103:100,-30,-10,0,0,0.606912 -21258,5102:209,-29,-10,0,0,0.602541 -21259,5102:208,-28,-10,0,0,0.598598 -21260,5102:207,-27,-10,0,0,0.59427 -21261,5102:206,-26,-10,0,0,0.591046 -21262,5102:205,-25,-10,0,0,0.588634 -21263,5102:104,-24,-10,0,0,0.583175 -21264,5102:103,-23,-10,0,0,0.582526 -21265,5102:102,-22,-10,0,0,0.577821 -21266,5102:101,-21,-10,0,0,0.573303 -21267,5102:100,-20,-10,0,0,0.569051 -21268,5101:209,-19,-10,0,0,0.563019 -21269,5101:208,-18,-10,0,0,0.557095 -21270,5101:207,-17,-10,0,0,0.55268 -21271,5101:206,-16,-10,0,0,0.551892 -21272,5101:205,-15,-10,0,0,0.551078 -21273,5101:104,-14,-10,0,0,0.54209 -21274,5101:103,-13,-10,0,0,0.537701 -21275,5101:102,-12,-10,0,0,0.535095 -21276,5101:101,-11,-10,0,0,0.533177 -21277,5101:100,-10,-10,0,0,0.534685 -21278,5100:209,-9,-10,0,0,0.526881 -21279,5100:208,-8,-10,0,0,0.523807 -21280,5100:207,-7,-10,0,0,0.521884 -21281,5100:206,-6,-10,0,0,0.528008 -21282,5100:205,-5,-10,0,0,0.522141 -21283,5100:104,-4,-10,0,0,0.522961 -21284,5100:103,-3,-10,0,0,0.521269 -21285,5100:102,-2,-10,0,0,0.519141 -21286,5100:101,-1,-10,0,0,0.517884 -21287,3100:101,0,-10,0,0,0.519679 -21288,3100:101,1,-10,0,0,0.521141 -21289,3100:102,2,-10,0,0,0.519295 -21290,3100:103,3,-10,0,0,0.523602 -21291,3100:104,4,-10,0,0,0.530977 -21292,3100:205,5,-10,0,0,0.537241 -21293,3100:206,6,-10,0,0,0.544538 -21294,3100:207,7,-10,0,0,0.550722 -21295,3100:208,8,-10,0,0,0.565999 -21296,3100:209,9,-10,0,0,0.586343 -21297,3101:100,10,-10,0,0,0.597733 -21298,3101:101,11,-10,0,0,0.606668 -21299,3101:102,12,-10,0,0,0.609312 -21300,3101:103,13,-10,0,0,0.578247 -21301,3104:101,41,-10,0,0,0.66587 -21302,3104:102,42,-10,0,0,0.661583 -21303,3104:104,44,-10,0,0,0.658701 -21304,3104:205,45,-10,0,0,0.651902 -21305,3104:206,46,-10,0,0,0.647482 -21306,3104:207,47,-10,0,0,0.64565 -21307,3104:208,48,-10,0,0,0.642188 -21308,3104:209,49,-10,0,0,0.637808 -21309,3105:100,50,-10,0,0,0.639539 -21310,3105:101,51,-10,0,0,0.643202 -21311,3105:102,52,-10,0,0,0.646943 -21312,3105:103,53,-10,0,0,0.646285 -21313,3105:104,54,-10,0,0,0.648208 -21314,3105:205,55,-10,0,0,0.651435 -21315,3105:206,56,-10,0,0,0.653112 -21316,3105:207,57,-10,0,0,0.653183 -21317,3105:208,58,-10,0,0,0.651178 -21318,3105:209,59,-10,0,0,0.648467 -21319,3106:100,60,-10,0,0,0.64565 -21320,3106:101,61,-10,0,0,0.64155 -21321,3106:102,62,-10,0,0,0.638638 -21322,3106:103,63,-10,0,0,0.641361 -21323,3106:104,64,-10,0,0,0.644969 -21324,3106:205,65,-10,0,0,0.648489 -21325,3106:206,66,-10,0,0,0.650851 -21326,3106:207,67,-10,0,0,0.652158 -21327,3106:208,68,-10,0,0,0.652671 -21328,3106:209,69,-10,0,0,0.65253 -21329,3107:100,70,-10,0,0,0.652134 -21330,3107:101,71,-10,0,0,0.652088 -21331,3107:102,72,-10,0,0,0.652601 -21332,3107:104,74,-10,0,0,0.651389 -21333,3107:205,75,-10,0,0,0.649473 -21334,3107:206,76,-10,0,0,0.647529 -21335,3107:207,77,-10,0,0,0.644945 -21336,3107:208,78,-10,0,0,0.641975 -21337,3107:209,79,-10,0,0,0.638402 -21338,3108:100,80,-10,0,0,0.635313 -21339,3108:101,81,-10,0,0,0.632356 -21340,3108:102,82,-10,0,0,0.629461 -21341,3108:103,83,-10,0,0,0.626461 -21342,3108:104,84,-10,0,0,0.624004 -21343,3108:205,85,-10,0,0,0.621688 -21344,3108:206,86,-10,0,0,0.620237 -21345,3108:207,87,-10,0,0,0.619705 -21346,3108:208,88,-10,0,0,0.619195 -21347,3108:209,89,-10,0,0,0.618105 -21348,3109:100,90,-10,0,0,0.617571 -21349,3109:101,91,-10,0,0,0.618638 -21350,3109:102,92,-10,0,0,0.621978 -21351,3109:103,93,-10,0,0,0.623836 -21352,3109:104,94,-10,0,0,0.622799 -21353,3109:205,95,-10,0,0,0.620431 -21354,3109:206,96,-10,0,0,0.618493 -21355,3109:207,97,-10,0,0,0.616576 -21356,3109:208,98,-10,0,0,0.615336 -21357,3109:209,99,-10,0,0,0.616916 -21358,3110:100,100,-10,0,0,0.622895 -21359,3110:101,101,-10,0,0,0.630514 -21360,3110:102,102,-10,0,0,0.63343 -21361,3110:103,103,-10,0,0,0.63374 -21362,3110:104,104,-10,0,0,0.635764 -21363,3110:205,105,-10,0,0,0.637975 -21364,3110:206,106,-10,0,0,0.636122 -21365,3110:207,107,-10,0,0,0.636098 -21366,3110:208,108,-10,0,0,0.648911 -21367,3110:209,109,-10,0,0,0.660846 -21368,3111:100,110,-10,0,0,0.660478 -21369,3111:101,111,-10,0,0,0.664085 -21370,3111:102,112,-10,0,0,0.669245 -21371,3111:103,113,-10,0,0,0.67319 -21372,3111:104,114,-10,0,0,0.677313 -21373,3111:205,115,-10,0,0,0.680248 -21374,3111:206,116,-10,0,0,0.681632 -21375,3111:207,117,-10,0,0,0.681743 -21376,3111:208,118,-10,0,0,0.681677 -21377,3111:209,119,-10,0,0,0.681609 -21378,3112:100,120,-10,0,0,0.680382 -21379,3112:101,121,-10,0,0,0.680739 -21380,3112:102,122,-10,0,0,0.68408 -21381,3112:103,123,-10,0,0,0.685454 -21382,3112:104,124,-10,0,0,0.683435 -21383,3112:205,125,-10,0,0,0.689692 -21384,3112:206,126,-10,0,0,0.6974 -21385,3112:207,127,-10,0,0,0.699348 -21386,3112:208,128,-10,0,0,0.703051 -21387,3112:209,129,-10,0,0,0.706343 -21388,3113:100,130,-10,0,0,0.714355 -21389,3113:102,132,-10,0,0,0.714355 -21390,3113:104,134,-10,0,0,0.714355 -21391,3113:205,135,-10,0,0,0.710101 -21392,3113:206,136,-10,0,0,0.704336 -21393,3113:207,137,-10,0,0,0.698224 -21394,3113:208,138,-10,0,0,0.673349 -21395,3113:209,139,-10,0,0,0.671606 -21396,3114:100,140,-10,0,0,0.678099 -21397,3114:101,141,-10,0,0,0.683346 -21398,3114:102,142,-10,0,0,0.688437 -21399,3114:104,144,-10,0,0,0.656156 -21400,3114:205,145,-10,0,0,0.649192 -21401,3114:206,146,-10,0,0,0.651924 -21402,3114:207,147,-10,0,0,0.647459 -21403,3114:208,148,-10,0,0,0.646731 -21404,3114:209,149,-10,0,0,0.650875 -21405,3115:100,150,-10,0,0,0.654136 -21406,3115:101,151,-10,0,0,0.66326 -21407,3115:102,152,-10,0,0,0.666465 -21408,3115:103,153,-10,0,0,0.666076 -21409,3115:104,154,-10,0,0,0.664383 -21410,3115:205,155,-10,0,0,0.671402 -21411,3115:206,156,-10,0,0,0.67172 -21412,3115:207,157,-10,0,0,0.669427 -21413,3115:208,158,-10,0,0,0.66879 -21414,3115:209,159,-10,0,0,0.667332 -21415,3116:100,160,-10,0,0,0.661697 -21416,3116:101,161,-10,0,0,0.657708 -21417,3116:102,162,-10,0,0,0.658285 -21418,3116:103,163,-10,0,0,0.658863 -21419,3116:104,164,-10,0,0,0.659647 -21420,3116:205,165,-10,0,0,0.659901 -21421,3116:206,166,-10,0,0,0.659694 -21422,3116:207,167,-10,0,0,0.660339 -21423,3116:208,168,-10,0,0,0.661168 -21424,3116:209,169,-10,0,0,0.661744 -21425,3117:100,170,-10,0,0,0.661214 -21426,3117:101,171,-10,0,0,0.659971 -21427,3117:102,172,-10,0,0,0.658216 -21428,3117:103,173,-10,0,0,0.655344 -21429,3117:104,174,-10,0,0,0.653322 -21430,3117:205,175,-10,0,0,0.653508 -21431,3117:206,176,-10,0,0,0.653322 -21432,3117:207,177,-10,0,0,0.653974 -21433,3117:208,178,-10,0,0,0.653904 -21434,3117:209,179,-10,0,0,0.653881 -21435,3118:100,180,-10,0,0,0.655437 -21436,5018:390,-180,-9,0,0,0.664246 -21437,5017:499,-179,-9,0,0,0.666191 -21438,5017:498,-178,-9,0,0,0.668085 -21439,5017:497,-177,-9,0,0,0.670699 -21440,5017:496,-176,-9,0,0,0.672784 -21441,5017:495,-175,-9,0,0,0.673439 -21442,5017:394,-174,-9,0,0,0.673733 -21443,5017:393,-173,-9,0,0,0.673755 -21444,5017:392,-172,-9,0,0,0.673326 -21445,5017:391,-171,-9,0,0,0.673032 -21446,5017:390,-170,-9,0,0,0.674026 -21447,5016:499,-169,-9,0,0,0.674793 -21448,5016:498,-168,-9,0,0,0.675334 -21449,5016:497,-167,-9,0,0,0.675109 -21450,5016:496,-166,-9,0,0,0.675379 -21451,5016:495,-165,-9,0,0,0.676437 -21452,5016:394,-164,-9,0,0,0.677852 -21453,5016:393,-163,-9,0,0,0.678211 -21454,5016:392,-162,-9,0,0,0.678211 -21455,5016:391,-161,-9,0,0,0.678413 -21456,5016:390,-160,-9,0,0,0.678323 -21457,5015:499,-159,-9,0,0,0.678189 -21458,5015:498,-158,-9,0,0,0.677874 -21459,5015:497,-157,-9,0,0,0.676909 -21460,5015:496,-156,-9,0,0,0.675424 -21461,5015:495,-155,-9,0,0,0.673258 -21462,5015:394,-154,-9,0,0,0.671923 -21463,5015:393,-153,-9,0,0,0.670336 -21464,5015:392,-152,-9,0,0,0.668494 -21465,5015:391,-151,-9,0,0,0.66699 -21466,5015:390,-150,-9,0,0,0.665665 -21467,5014:499,-149,-9,0,0,0.66507 -21468,5014:498,-148,-9,0,0,0.661237 -21469,5014:497,-147,-9,0,0,0.659579 -21470,5014:496,-146,-9,0,0,0.658262 -21471,5014:495,-145,-9,0,0,0.658816 -21472,5014:394,-144,-9,0,0,0.656318 -21473,5014:393,-143,-9,0,0,0.654136 -21474,5014:392,-142,-9,0,0,0.652018 -21475,5014:391,-141,-9,0,0,0.650174 -21476,5014:390,-140,-9,0,0,0.648654 -21477,5013:499,-139,-9,0,0,0.646261 -21478,5013:498,-138,-9,0,0,0.643532 -21479,5013:497,-137,-9,0,0,0.641928 -21480,5013:496,-136,-9,0,0,0.64025 -21481,5013:495,-135,-9,0,0,0.636288 -21482,5013:394,-134,-9,0,0,0.63312 -21483,5013:393,-133,-9,0,0,0.630011 -21484,5013:392,-132,-9,0,0,0.628838 -21485,5013:391,-131,-9,0,0,0.624294 -21486,5013:390,-130,-9,0,0,0.622436 -21487,5012:499,-129,-9,0,0,0.618396 -21488,5012:498,-128,-9,0,0,0.617183 -21489,5012:497,-127,-9,0,0,0.613681 -21490,5012:496,-126,-9,0,0,0.608897 -21491,5012:495,-125,-9,0,0,0.607329 -21492,5012:394,-124,-9,0,0,0.603869 -21493,5012:393,-123,-9,0,0,0.59998 -21494,5012:392,-122,-9,0,0,0.595805 -21495,5012:391,-121,-9,0,0,0.591964 -21496,5012:390,-120,-9,0,0,0.587738 -21497,5011:499,-119,-9,0,0,0.583774 -21498,5011:498,-118,-9,0,0,0.57717 -21499,5011:497,-117,-9,0,0,0.571745 -21500,5011:496,-116,-9,0,0,0.567942 -21501,5011:495,-115,-9,0,0,0.563145 -21502,5011:394,-114,-9,0,0,0.557146 -21503,5011:393,-113,-9,0,0,0.551359 -21504,5011:392,-112,-9,0,0,0.544945 -21505,5011:391,-111,-9,0,0,0.539948 -21506,5011:390,-110,-9,0,0,0.535836 -21507,5010:499,-109,-9,0,0,0.532077 -21508,5010:498,-108,-9,0,0,0.527599 -21509,5010:497,-107,-9,0,0,0.523243 -21510,5010:496,-106,-9,0,0,0.519038 -21511,5010:495,-105,-9,0,0,0.514625 -21512,5010:394,-104,-9,0,0,0.510904 -21513,5010:393,-103,-9,0,0,0.508849 -21514,5010:392,-102,-9,0,0,0.505819 -21515,5010:391,-101,-9,0,0,0.501016 -21516,5010:390,-100,-9,0,0,0.495108 -21517,5009:499,-99,-9,0,0,0.492668 -21518,5009:498,-98,-9,0,0,0.491898 -21519,5009:497,-97,-9,0,0,0.488638 -21520,5009:496,-96,-9,0,0,0.486225 -21521,5009:495,-95,-9,0,0,0.478708 -21522,5009:394,-94,-9,0,0,0.476068 -21523,5009:393,-93,-9,0,0,0.480093 -21524,5009:392,-92,-9,0,0,0.485146 -21525,5009:391,-91,-9,0,0,0.484454 -21526,5009:390,-90,-9,0,0,0.488304 -21527,5008:499,-89,-9,0,0,0.488278 -21528,5008:498,-88,-9,0,0,0.488175 -21529,5008:497,-87,-9,0,0,0.488124 -21530,5008:496,-86,-9,0,0,0.48951 -21531,5008:495,-85,-9,0,0,0.489792 -21532,5008:394,-84,-9,0,0,0.491025 -21533,5008:393,-83,-9,0,0,0.4929 -21534,5008:392,-82,-9,0,0,0.495005 -21535,5008:391,-81,-9,0,0,0.492951 -21536,5008:390,-80,-9,0,0,0.488278 -21537,5007:499,-79,-9,0,0,0.480169 -21538,5003:496,-36,-9,0,0,0.62316 -21539,5003:495,-35,-9,0,0,0.625209 -21540,5003:394,-34,-9,0,0,0.618905 -21541,5003:393,-33,-9,0,0,0.615263 -21542,5003:392,-32,-9,0,0,0.611633 -21543,5003:391,-31,-9,0,0,0.609141 -21544,5003:390,-30,-9,0,0,0.604729 -21545,5002:499,-29,-9,0,0,0.601163 -21546,5002:498,-28,-9,0,0,0.598153 -21547,5002:497,-27,-9,0,0,0.595508 -21548,5002:496,-26,-9,0,0,0.591791 -21549,5002:495,-25,-9,0,0,0.589355 -21550,5002:394,-24,-9,0,0,0.585621 -21551,5002:393,-23,-9,0,0,0.581526 -21552,5002:392,-22,-9,0,0,0.57965 -21553,5002:391,-21,-9,0,0,0.57481 -21554,5002:390,-20,-9,0,0,0.572574 -21555,5001:499,-19,-9,0,0,0.569227 -21556,5001:498,-18,-9,0,0,0.565166 -21557,5001:497,-17,-9,0,0,0.562185 -21558,5001:496,-16,-9,0,0,0.560793 -21559,5001:495,-15,-9,0,0,0.556537 -21560,5001:394,-14,-9,0,0,0.554914 -21561,5001:393,-13,-9,0,0,0.550367 -21562,5001:392,-12,-9,0,0,0.54818 -21563,5001:391,-11,-9,0,0,0.547721 -21564,5001:390,-10,-9,0,0,0.545302 -21565,5000:499,-9,-9,0,0,0.54033 -21566,5000:498,-8,-9,0,0,0.539054 -21567,5000:497,-7,-9,0,0,0.537062 -21568,5000:496,-6,-9,0,0,0.538697 -21569,5000:495,-5,-9,0,0,0.537675 -21570,5000:394,-4,-9,0,0,0.535043 -21571,5000:393,-3,-9,0,0,0.533459 -21572,5000:392,-2,-9,0,0,0.534149 -21573,5000:391,-1,-9,0,0,0.534635 -21574,3000:391,0,-9,0,0,0.538033 -21575,3000:391,1,-9,0,0,0.541479 -21576,3000:392,2,-9,0,0,0.543263 -21577,3000:393,3,-9,0,0,0.548307 -21578,3000:394,4,-9,0,0,0.553442 -21579,3000:495,5,-9,0,0,0.559654 -21580,3000:496,6,-9,0,0,0.56963 -21581,3000:497,7,-9,0,0,0.584349 -21582,3000:498,8,-9,0,0,0.597141 -21583,3000:499,9,-9,0,0,0.607378 -21584,3001:390,10,-9,0,0,0.614363 -21585,3001:391,11,-9,0,0,0.623667 -21586,3001:392,12,-9,0,0,0.62345 -21587,3001:393,13,-9,0,0,0.589331 -21588,3004:390,40,-9,0,0,0.660039 -21589,3004:391,41,-9,0,0,0.664062 -21590,3004:392,42,-9,0,0,0.660892 -21591,3004:393,43,-9,0,0,0.658308 -21592,3004:394,44,-9,0,0,0.655622 -21593,3004:495,45,-9,0,0,0.65288 -21594,3004:496,46,-9,0,0,0.648982 -21595,3004:497,47,-9,0,0,0.64652 -21596,3004:498,48,-9,0,0,0.646167 -21597,3004:499,49,-9,0,0,0.648373 -21598,3005:390,50,-9,0,0,0.651272 -21599,3005:391,51,-9,0,0,0.654067 -21600,3005:392,52,-9,0,0,0.655762 -21601,3005:393,53,-9,0,0,0.656202 -21602,3005:394,54,-9,0,0,0.659186 -21603,3005:495,55,-9,0,0,0.661628 -21604,3005:496,56,-9,0,0,0.662249 -21605,3005:497,57,-9,0,0,0.660431 -21606,3005:498,58,-9,0,0,0.65692 -21607,3005:499,59,-9,0,0,0.652694 -21608,3006:390,60,-9,0,0,0.647951 -21609,3006:391,61,-9,0,0,0.644027 -21610,3006:392,62,-9,0,0,0.640746 -21611,3006:393,63,-9,0,0,0.647716 -21612,3006:394,64,-9,0,0,0.649473 -21613,3006:495,65,-9,0,0,0.650851 -21614,3006:496,66,-9,0,0,0.652926 -21615,3006:497,67,-9,0,0,0.651948 -21616,3006:498,68,-9,0,0,0.65295 -21617,3006:499,69,-9,0,0,0.657059 -21618,3007:390,70,-9,0,0,0.657407 -21619,3007:391,71,-9,0,0,0.659279 -21620,3007:392,72,-9,0,0,0.660777 -21621,3007:394,74,-9,0,0,0.658632 -21622,3007:495,75,-9,0,0,0.657106 -21623,3007:496,76,-9,0,0,0.65655 -21624,3007:497,77,-9,0,0,0.656272 -21625,3007:498,78,-9,0,0,0.655576 -21626,3007:499,79,-9,0,0,0.653881 -21627,3008:390,80,-9,0,0,0.650244 -21628,3008:391,81,-9,0,0,0.645768 -21629,3008:392,82,-9,0,0,0.640439 -21630,3008:393,83,-9,0,0,0.634932 -21631,3008:394,84,-9,0,0,0.632929 -21632,3008:495,85,-9,0,0,0.632809 -21633,3008:496,86,-9,0,0,0.633072 -21634,3008:497,87,-9,0,0,0.632332 -21635,3008:498,88,-9,0,0,0.630347 -21636,3008:499,89,-9,0,0,0.62747 -21637,3009:390,90,-9,0,0,0.625715 -21638,3009:391,91,-9,0,0,0.626196 -21639,3009:392,92,-9,0,0,0.628141 -21640,3009:393,93,-9,0,0,0.63006 -21641,3009:394,94,-9,0,0,0.631089 -21642,3009:495,95,-9,0,0,0.630922 -21643,3009:496,96,-9,0,0,0.630467 -21644,3009:497,97,-9,0,0,0.629269 -21645,3009:498,98,-9,0,0,0.627517 -21646,3009:499,99,-9,0,0,0.628022 -21647,3010:390,100,-9,0,0,0.630969 -21648,3010:391,101,-9,0,0,0.635408 -21649,3010:392,102,-9,0,0,0.640557 -21650,3010:393,103,-9,0,0,0.643249 -21651,3010:394,104,-9,0,0,0.643862 -21652,3010:495,105,-9,0,0,0.646355 -21653,3010:496,106,-9,0,0,0.653555 -21654,3010:497,107,-9,0,0,0.657522 -21655,3010:498,108,-9,0,0,0.660386 -21656,3010:499,109,-9,0,0,0.662249 -21657,3011:390,110,-9,0,0,0.66303 -21658,3011:391,111,-9,0,0,0.665436 -21659,3011:392,112,-9,0,0,0.667492 -21660,3011:393,113,-9,0,0,0.668859 -21661,3011:394,114,-9,0,0,0.671175 -21662,3011:495,115,-9,0,0,0.677224 -21663,3011:496,116,-9,0,0,0.677448 -21664,3011:497,117,-9,0,0,0.675244 -21665,3011:498,118,-9,0,0,0.674116 -21666,3011:499,119,-9,0,0,0.676234 -21667,3012:390,120,-9,0,0,0.677987 -21668,3012:392,122,-9,0,0,0.682256 -21669,3012:393,123,-9,0,0,0.678861 -21670,3012:495,125,-9,0,0,0.68368 -21671,3012:496,126,-9,0,0,0.684057 -21672,3012:497,127,-9,0,0,0.682746 -21673,3012:498,128,-9,0,0,0.693046 -21674,3012:499,129,-9,0,0,0.697292 -21675,3013:390,130,-9,0,0,0.695619 -21676,3013:391,131,-9,0,0,0.699175 -21677,3013:392,132,-9,0,0,0.695793 -21678,3013:393,133,-9,0,0,0.696858 -21679,3013:394,134,-9,0,0,0.691163 -21680,3013:495,135,-9,0,0,0.683991 -21681,3013:496,136,-9,0,0,0.675672 -21682,3013:497,137,-9,0,0,0.669927 -21683,3013:498,138,-9,0,0,0.671175 -21684,3013:499,139,-9,0,0,0.675649 -21685,3014:390,140,-9,0,0,0.678032 -21686,3014:391,141,-9,0,0,0.681699 -21687,3014:392,142,-9,0,0,0.684523 -21688,3014:393,143,-9,0,0,0.67637 -21689,3014:394,144,-9,0,0,0.658216 -21690,3014:495,145,-9,0,0,0.648467 -21691,3014:496,146,-9,0,0,0.651248 -21692,3014:497,147,-9,0,0,0.659971 -21693,3014:498,148,-9,0,0,0.640912 -21694,3015:391,151,-9,0,0,0.666761 -21695,3015:392,152,-9,0,0,0.675154 -21696,3015:393,153,-9,0,0,0.677605 -21697,3015:394,154,-9,0,0,0.679689 -21698,3015:495,155,-9,0,0,0.680136 -21699,3015:496,156,-9,0,0,0.680672 -21700,3015:497,157,-9,0,0,0.681319 -21701,3015:498,158,-9,0,0,0.681699 -21702,3015:499,159,-9,0,0,0.679935 -21703,3016:390,160,-9,0,0,0.677852 -21704,3016:391,161,-9,0,0,0.674252 -21705,3016:392,162,-9,0,0,0.668107 -21706,3016:393,163,-9,0,0,0.668335 -21707,3016:394,164,-9,0,0,0.668859 -21708,3016:495,165,-9,0,0,0.669859 -21709,3016:496,166,-9,0,0,0.66945 -21710,3016:497,167,-9,0,0,0.669768 -21711,3016:498,168,-9,0,0,0.670063 -21712,3016:499,169,-9,0,0,0.6697 -21713,3017:390,170,-9,0,0,0.669109 -21714,3017:391,171,-9,0,0,0.668039 -21715,3017:392,172,-9,0,0,0.666076 -21716,3017:393,173,-9,0,0,0.666488 -21717,3017:394,174,-9,0,0,0.663053 -21718,3017:495,175,-9,0,0,0.662777 -21719,3017:496,176,-9,0,0,0.662042 -21720,3017:497,177,-9,0,0,0.661859 -21721,3017:498,178,-9,0,0,0.661904 -21722,3017:499,179,-9,0,0,0.662295 -21723,3018:390,180,-9,0,0,0.664246 -21724,5018:380,-180,-8,0,0,0.673959 -21725,5017:489,-179,-8,0,0,0.675829 -21726,5017:488,-178,-8,0,0,0.676932 -21727,5017:487,-177,-8,0,0,0.677628 -21728,5017:486,-176,-8,0,0,0.676976 -21729,5017:485,-175,-8,0,0,0.676145 -21730,5017:384,-174,-8,0,0,0.676347 -21731,5017:383,-173,-8,0,0,0.676954 -21732,5017:382,-172,-8,0,0,0.676909 -21733,5017:381,-171,-8,0,0,0.677246 -21734,5017:380,-170,-8,0,0,0.677583 -21735,5016:489,-169,-8,0,0,0.676954 -21736,5016:488,-168,-8,0,0,0.676572 -21737,5016:487,-167,-8,0,0,0.677381 -21738,5016:486,-166,-8,0,0,0.677897 -21739,5016:485,-165,-8,0,0,0.67839 -21740,5016:384,-164,-8,0,0,0.678592 -21741,5016:383,-163,-8,0,0,0.677695 -21742,5016:382,-162,-8,0,0,0.676976 -21743,5016:381,-161,-8,0,0,0.676819 -21744,5016:380,-160,-8,0,0,0.677291 -21745,5015:489,-159,-8,0,0,0.676684 -21746,5015:488,-158,-8,0,0,0.675762 -21747,5015:487,-157,-8,0,0,0.673936 -21748,5015:486,-156,-8,0,0,0.672036 -21749,5015:485,-155,-8,0,0,0.669836 -21750,5015:384,-154,-8,0,0,0.668016 -21751,5015:383,-153,-8,0,0,0.667218 -21752,5015:382,-152,-8,0,0,0.665459 -21753,5015:381,-151,-8,0,0,0.662915 -21754,5015:380,-150,-8,0,0,0.66103 -21755,5014:489,-149,-8,0,0,0.659348 -21756,5014:488,-148,-8,0,0,0.656248 -21757,5014:487,-147,-8,0,0,0.653834 -21758,5014:486,-146,-8,0,0,0.652461 -21759,5014:485,-145,-8,0,0,0.651272 -21760,5014:384,-144,-8,0,0,0.649239 -21761,5014:383,-143,-8,0,0,0.646872 -21762,5014:382,-142,-8,0,0,0.645086 -21763,5014:381,-141,-8,0,0,0.642919 -21764,5014:380,-140,-8,0,0,0.640273 -21765,5013:489,-139,-8,0,0,0.637904 -21766,5013:488,-138,-8,0,0,0.635955 -21767,5013:487,-137,-8,0,0,0.633788 -21768,5013:486,-136,-8,0,0,0.630802 -21769,5013:485,-135,-8,0,0,0.627349 -21770,5013:384,-134,-8,0,0,0.624077 -21771,5013:383,-133,-8,0,0,0.621953 -21772,5013:382,-132,-8,0,0,0.619341 -21773,5013:381,-131,-8,0,0,0.616818 -21774,5013:380,-130,-8,0,0,0.614192 -21775,5012:489,-129,-8,0,0,0.61134 -21776,5012:488,-128,-8,0,0,0.60892 -21777,5012:487,-127,-8,0,0,0.606275 -21778,5012:486,-126,-8,0,0,0.603549 -21779,5012:485,-125,-8,0,0,0.60136 -21780,5012:384,-124,-8,0,0,0.599066 -21781,5012:383,-123,-8,0,0,0.59625 -21782,5012:382,-122,-8,0,0,0.593056 -21783,5012:381,-121,-8,0,0,0.589157 -21784,5012:380,-120,-8,0,0,0.584748 -21785,5011:489,-119,-8,0,0,0.580401 -21786,5011:488,-118,-8,0,0,0.576467 -21787,5011:487,-117,-8,0,0,0.573127 -21788,5011:486,-116,-8,0,0,0.569201 -21789,5011:485,-115,-8,0,0,0.563953 -21790,5011:384,-114,-8,0,0,0.558464 -21791,5011:383,-113,-8,0,0,0.553035 -21792,5011:382,-112,-8,0,0,0.549045 -21793,5011:381,-111,-8,0,0,0.54492 -21794,5011:380,-110,-8,0,0,0.538722 -21795,5010:489,-109,-8,0,0,0.533714 -21796,5010:488,-108,-8,0,0,0.530901 -21797,5010:487,-107,-8,0,0,0.529365 -21798,5010:486,-106,-8,0,0,0.52414 -21799,5010:485,-105,-8,0,0,0.520988 -21800,5010:384,-104,-8,0,0,0.52191 -21801,5010:383,-103,-8,0,0,0.520013 -21802,5010:382,-102,-8,0,0,0.515524 -21803,5010:381,-101,-8,0,0,0.512264 -21804,5010:380,-100,-8,0,0,0.507411 -21805,5009:489,-99,-8,0,0,0.509645 -21806,5009:488,-98,-8,0,0,0.5117 -21807,5009:487,-97,-8,0,0,0.514368 -21808,5009:486,-96,-8,0,0,0.514086 -21809,5009:485,-95,-8,0,0,0.509157 -21810,5009:384,-94,-8,0,0,0.506667 -21811,5009:383,-93,-8,0,0,0.509363 -21812,5009:382,-92,-8,0,0,0.513137 -21813,5009:381,-91,-8,0,0,0.513085 -21814,5009:380,-90,-8,0,0,0.512931 -21815,5008:489,-89,-8,0,0,0.514215 -21816,5008:488,-88,-8,0,0,0.511982 -21817,5008:487,-87,-8,0,0,0.509748 -21818,5008:486,-86,-8,0,0,0.50754 -21819,5008:485,-85,-8,0,0,0.503508 -21820,5008:384,-84,-8,0,0,0.504381 -21821,5008:383,-83,-8,0,0,0.504047 -21822,5008:382,-82,-8,0,0,0.497497 -21823,5008:381,-81,-8,0,0,0.49123 -21824,5008:380,-80,-8,0,0,0.479759 -21825,5007:489,-79,-8,0,0,0.455618 -21826,5003:485,-35,-8,0,0,0.62634 -21827,5003:384,-34,-8,0,0,0.619898 -21828,5003:383,-33,-8,0,0,0.61592 -21829,5003:382,-32,-8,0,0,0.612877 -21830,5003:381,-31,-8,0,0,0.609728 -21831,5003:380,-30,-8,0,0,0.605858 -21832,5002:489,-29,-8,0,0,0.602123 -21833,5002:488,-28,-8,0,0,0.598302 -21834,5002:487,-27,-8,0,0,0.594419 -21835,5002:486,-26,-8,0,0,0.591616 -21836,5002:485,-25,-8,0,0,0.588684 -21837,5002:384,-24,-8,0,0,0.586468 -21838,5002:383,-23,-8,0,0,0.584448 -21839,5002:382,-22,-8,0,0,0.581201 -21840,5002:381,-21,-8,0,0,0.578448 -21841,5002:380,-20,-8,0,0,0.57594 -21842,5001:489,-19,-8,0,0,0.574208 -21843,5001:488,-18,-8,0,0,0.57192 -21844,5001:487,-17,-8,0,0,0.569932 -21845,5001:486,-16,-8,0,0,0.567664 -21846,5001:485,-15,-8,0,0,0.563373 -21847,5001:384,-14,-8,0,0,0.562159 -21848,5001:383,-13,-8,0,0,0.561729 -21849,5001:382,-12,-8,0,0,0.560211 -21850,5001:381,-11,-8,0,0,0.559755 -21851,5001:380,-10,-8,0,0,0.557602 -21852,5000:489,-9,-8,0,0,0.552654 -21853,5000:488,-8,-8,0,0,0.549985 -21854,5000:487,-7,-8,0,0,0.549222 -21855,5000:486,-6,-8,0,0,0.549985 -21856,5000:485,-5,-8,0,0,0.55029 -21857,5000:384,-4,-8,0,0,0.548663 -21858,5000:383,-3,-8,0,0,0.550799 -21859,5000:382,-2,-8,0,0,0.550799 -21860,5000:381,-1,-8,0,0,0.553416 -21861,3000:381,0,-8,0,0,0.559654 -21862,3000:381,1,-8,0,0,0.562462 -21863,3000:382,2,-8,0,0,0.565696 -21864,3000:383,3,-8,0,0,0.571971 -21865,3000:384,4,-8,0,0,0.57737 -21866,3000:485,5,-8,0,0,0.581776 -21867,3000:486,6,-8,0,0,0.590871 -21868,3000:487,7,-8,0,0,0.601507 -21869,3000:488,8,-8,0,0,0.613437 -21870,3000:489,9,-8,0,0,0.624077 -21871,3001:380,10,-8,0,0,0.628453 -21872,3001:381,11,-8,0,0,0.628141 -21873,3001:382,12,-8,0,0,0.612268 -21874,3001:383,13,-8,0,0,0.568219 -21875,3004:380,40,-8,0,0,0.663352 -21876,3004:381,41,-8,0,0,0.665161 -21877,3004:382,42,-8,0,0,0.66683 -21878,3004:383,43,-8,0,0,0.665093 -21879,3004:384,44,-8,0,0,0.663489 -21880,3004:485,45,-8,0,0,0.661076 -21881,3004:486,46,-8,0,0,0.657314 -21882,3004:487,47,-8,0,0,0.657823 -21883,3004:488,48,-8,0,0,0.659024 -21884,3004:489,49,-8,0,0,0.661099 -21885,3005:380,50,-8,0,0,0.66218 -21886,3005:381,51,-8,0,0,0.660892 -21887,3005:382,52,-8,0,0,0.660662 -21888,3005:383,53,-8,0,0,0.660938 -21889,3005:384,54,-8,0,0,0.663902 -21890,3005:485,55,-8,0,0,0.665367 -21891,3005:486,56,-8,0,0,0.665093 -21892,3005:487,57,-8,0,0,0.663879 -21893,3005:488,58,-8,0,0,0.660823 -21894,3005:489,59,-8,0,0,0.655019 -21895,3006:380,60,-8,0,0,0.6424 -21896,3006:381,61,-8,0,0,0.651062 -21897,3006:382,62,-8,0,0,0.652158 -21898,3006:383,63,-8,0,0,0.653415 -21899,3006:384,64,-8,0,0,0.65402 -21900,3006:485,65,-8,0,0,0.656156 -21901,3006:486,66,-8,0,0,0.658608 -21902,3006:487,67,-8,0,0,0.660339 -21903,3006:488,68,-8,0,0,0.662847 -21904,3006:489,69,-8,0,0,0.66436 -21905,3007:380,70,-8,0,0,0.665047 -21906,3007:381,71,-8,0,0,0.666807 -21907,3007:382,72,-8,0,0,0.667035 -21908,3007:384,74,-8,0,0,0.665962 -21909,3007:485,75,-8,0,0,0.665688 -21910,3007:486,76,-8,0,0,0.666076 -21911,3007:487,77,-8,0,0,0.66475 -21912,3007:488,78,-8,0,0,0.663145 -21913,3007:489,79,-8,0,0,0.661996 -21914,3008:380,80,-8,0,0,0.660984 -21915,3008:381,81,-8,0,0,0.654624 -21916,3008:382,82,-8,0,0,0.649473 -21917,3008:383,83,-8,0,0,0.64372 -21918,3008:384,84,-8,0,0,0.640107 -21919,3008:485,85,-8,0,0,0.639065 -21920,3008:486,86,-8,0,0,0.639302 -21921,3008:487,87,-8,0,0,0.640628 -21922,3008:488,88,-8,0,0,0.642377 -21923,3008:489,89,-8,0,0,0.64365 -21924,3009:380,90,-8,0,0,0.64398 -21925,3009:381,91,-8,0,0,0.642565 -21926,3009:382,92,-8,0,0,0.641881 -21927,3009:383,93,-8,0,0,0.642825 -21928,3009:384,94,-8,0,0,0.642966 -21929,3009:485,95,-8,0,0,0.641881 -21930,3009:486,96,-8,0,0,0.64025 -21931,3009:487,97,-8,0,0,0.639041 -21932,3009:488,98,-8,0,0,0.637618 -21933,3009:489,99,-8,0,0,0.637642 -21934,3010:380,100,-8,0,0,0.641077 -21935,3010:381,101,-8,0,0,0.645157 -21936,3010:382,102,-8,0,0,0.647459 -21937,3010:383,103,-8,0,0,0.649122 -21938,3010:384,104,-8,0,0,0.650478 -21939,3010:485,105,-8,0,0,0.65281 -21940,3010:486,106,-8,0,0,0.65488 -21941,3010:487,107,-8,0,0,0.656712 -21942,3010:488,108,-8,0,0,0.657777 -21943,3010:489,109,-8,0,0,0.659002 -21944,3011:380,110,-8,0,0,0.659786 -21945,3011:381,111,-8,0,0,0.660915 -21946,3011:382,112,-8,0,0,0.661145 -21947,3011:383,113,-8,0,0,0.66326 -21948,3011:384,114,-8,0,0,0.666396 -21949,3011:485,115,-8,0,0,0.665619 -21950,3012:383,123,-8,0,0,0.692325 -21951,3012:384,124,-8,0,0,0.689208 -21952,3012:485,125,-8,0,0,0.683635 -21953,3012:488,128,-8,0,0,0.680181 -21954,3012:489,129,-8,0,0,0.684701 -21955,3013:380,130,-8,0,0,0.684634 -21956,3013:381,131,-8,0,0,0.686252 -21957,3013:382,132,-8,0,0,0.688173 -21958,3013:383,133,-8,0,0,0.686583 -21959,3013:384,134,-8,0,0,0.680315 -21960,3013:485,135,-8,0,0,0.670041 -21961,3013:486,136,-8,0,0,0.672648 -21962,3013:487,137,-8,0,0,0.677089 -21963,3013:488,138,-8,0,0,0.693833 -21964,3013:489,139,-8,0,0,0.693352 -21965,3014:380,140,-8,0,0,0.692106 -21966,3014:384,144,-8,0,0,0.68923 -21967,3014:485,145,-8,0,0,0.661835 -21968,3014:486,146,-8,0,0,0.67029 -21969,3014:489,149,-8,0,0,0.671742 -21970,3015:380,150,-8,0,0,0.672896 -21971,3015:381,151,-8,0,0,0.677067 -21972,3015:382,152,-8,0,0,0.679958 -21973,3015:383,153,-8,0,0,0.683235 -21974,3015:384,154,-8,0,0,0.684945 -21975,3015:485,155,-8,0,0,0.68687 -21976,3015:486,156,-8,0,0,0.685322 -21977,3015:487,157,-8,0,0,0.686362 -21978,3015:488,158,-8,0,0,0.687401 -21979,3015:489,159,-8,0,0,0.687445 -21980,3016:380,160,-8,0,0,0.681029 -21981,3016:382,162,-8,0,0,0.678794 -21982,3016:383,163,-8,0,0,0.676504 -21983,3016:384,164,-8,0,0,0.675942 -21984,3016:485,165,-8,0,0,0.674613 -21985,3016:486,166,-8,0,0,0.674184 -21986,3016:487,167,-8,0,0,0.675019 -21987,3016:488,168,-8,0,0,0.675537 -21988,3016:489,169,-8,0,0,0.674973 -21989,3017:380,170,-8,0,0,0.674771 -21990,3017:381,171,-8,0,0,0.674861 -21991,3017:382,172,-8,0,0,0.674929 -21992,3017:383,173,-8,0,0,0.675942 -21993,3017:384,174,-8,0,0,0.6738 -21994,3017:485,175,-8,0,0,0.671832 -21995,3017:486,176,-8,0,0,0.671425 -21996,3017:487,177,-8,0,0,0.67079 -21997,3017:488,178,-8,0,0,0.670744 -21998,3017:489,179,-8,0,0,0.671697 -21999,3018:380,180,-8,0,0,0.673959 -22000,5018:370,-180,-7,0,0,0.681163 -22001,5017:479,-179,-7,0,0,0.68094 -22002,5017:478,-178,-7,0,0,0.680338 -22003,5017:477,-177,-7,0,0,0.679264 -22004,5017:476,-176,-7,0,0,0.678099 -22005,5017:475,-175,-7,0,0,0.678099 -22006,5017:374,-174,-7,0,0,0.678503 -22007,5017:373,-173,-7,0,0,0.678928 -22008,5017:372,-172,-7,0,0,0.678861 -22009,5017:371,-171,-7,0,0,0.678615 -22010,5017:370,-170,-7,0,0,0.677672 -22011,5016:479,-169,-7,0,0,0.677089 -22012,5016:478,-168,-7,0,0,0.677381 -22013,5016:477,-167,-7,0,0,0.67783 -22014,5016:476,-166,-7,0,0,0.678122 -22015,5016:475,-165,-7,0,0,0.677448 -22016,5016:374,-164,-7,0,0,0.676617 -22017,5016:373,-163,-7,0,0,0.676077 -22018,5016:372,-162,-7,0,0,0.675064 -22019,5016:371,-161,-7,0,0,0.673868 -22020,5016:370,-160,-7,0,0,0.672286 -22021,5015:479,-159,-7,0,0,0.670699 -22022,5015:478,-158,-7,0,0,0.668198 -22023,5015:477,-157,-7,0,0,0.665596 -22024,5015:476,-156,-7,0,0,0.663604 -22025,5015:475,-155,-7,0,0,0.662249 -22026,5015:374,-154,-7,0,0,0.660247 -22027,5015:373,-153,-7,0,0,0.658031 -22028,5015:372,-152,-7,0,0,0.655599 -22029,5015:371,-151,-7,0,0,0.653788 -22030,5015:370,-150,-7,0,0,0.651924 -22031,5014:479,-149,-7,0,0,0.649402 -22032,5014:478,-148,-7,0,0,0.647716 -22033,5014:477,-147,-7,0,0,0.64605 -22034,5014:476,-146,-7,0,0,0.643626 -22035,5014:475,-145,-7,0,0,0.641101 -22036,5014:374,-144,-7,0,0,0.63897 -22037,5014:373,-143,-7,0,0,0.63712 -22038,5014:372,-142,-7,0,0,0.635717 -22039,5014:371,-141,-7,0,0,0.634693 -22040,5014:370,-140,-7,0,0,0.633478 -22041,5013:479,-139,-7,0,0,0.631471 -22042,5013:478,-138,-7,0,0,0.629173 -22043,5013:477,-137,-7,0,0,0.626749 -22044,5013:476,-136,-7,0,0,0.624197 -22045,5013:475,-135,-7,0,0,0.621494 -22046,5013:374,-134,-7,0,0,0.618953 -22047,5013:373,-133,-7,0,0,0.616478 -22048,5013:372,-132,-7,0,0,0.614436 -22049,5013:371,-131,-7,0,0,0.612902 -22050,5013:370,-130,-7,0,0,0.611902 -22051,5012:479,-129,-7,0,0,0.610412 -22052,5012:478,-128,-7,0,0,0.608431 -22053,5012:477,-127,-7,0,0,0.606226 -22054,5012:476,-126,-7,0,0,0.603476 -22055,5012:475,-125,-7,0,0,0.600028 -22056,5012:374,-124,-7,0,0,0.596498 -22057,5012:373,-123,-7,0,0,0.592982 -22058,5012:372,-122,-7,0,0,0.589008 -22059,5012:371,-121,-7,0,0,0.584399 -22060,5012:370,-120,-7,0,0,0.579274 -22061,5011:479,-119,-7,0,0,0.574584 -22062,5011:478,-118,-7,0,0,0.570612 -22063,5011:477,-117,-7,0,0,0.56721 -22064,5011:476,-116,-7,0,0,0.564181 -22065,5011:475,-115,-7,0,0,0.561097 -22066,5011:374,-114,-7,0,0,0.558007 -22067,5011:373,-113,-7,0,0,0.554355 -22068,5011:372,-112,-7,0,0,0.550494 -22069,5011:371,-111,-7,0,0,0.546779 -22070,5011:370,-110,-7,0,0,0.544614 -22071,5010:479,-109,-7,0,0,0.544385 -22072,5010:478,-108,-7,0,0,0.544105 -22073,5010:477,-107,-7,0,0,0.542448 -22074,5010:476,-106,-7,0,0,0.539309 -22075,5010:475,-105,-7,0,0,0.536424 -22076,5010:374,-104,-7,0,0,0.535171 -22077,5010:373,-103,-7,0,0,0.535682 -22078,5010:372,-102,-7,0,0,0.533126 -22079,5010:371,-101,-7,0,0,0.529621 -22080,5010:370,-100,-7,0,0,0.529518 -22081,5009:479,-99,-7,0,0,0.531284 -22082,5009:478,-98,-7,0,0,0.53241 -22083,5009:477,-97,-7,0,0,0.530364 -22084,5009:476,-96,-7,0,0,0.530977 -22085,5009:475,-95,-7,0,0,0.529877 -22086,5009:374,-94,-7,0,0,0.533535 -22087,5009:373,-93,-7,0,0,0.540662 -22088,5009:372,-92,-7,0,0,0.537139 -22089,5009:371,-91,-7,0,0,0.534507 -22090,5009:370,-90,-7,0,0,0.537624 -22091,5008:479,-89,-7,0,0,0.534839 -22092,5008:478,-88,-7,0,0,0.530184 -22093,5008:477,-87,-7,0,0,0.529953 -22094,5008:476,-86,-7,0,0,0.527471 -22095,5008:475,-85,-7,0,0,0.523269 -22096,5008:374,-84,-7,0,0,0.521833 -22097,5008:373,-83,-7,0,0,0.511545 -22098,5008:372,-82,-7,0,0,0.50546 -22099,5008:371,-81,-7,0,0,0.5051 -22100,5008:370,-80,-7,0,0,0.472174 -22101,5003:475,-35,-7,0,0,0.626171 -22102,5003:374,-34,-7,0,0,0.619341 -22103,5003:373,-33,-7,0,0,0.613852 -22104,5003:372,-32,-7,0,0,0.609679 -22105,5003:371,-31,-7,0,0,0.607403 -22106,5003:370,-30,-7,0,0,0.605736 -22107,5002:479,-29,-7,0,0,0.604385 -22108,5002:478,-28,-7,0,0,0.602492 -22109,5002:477,-27,-7,0,0,0.600916 -22110,5002:476,-26,-7,0,0,0.599708 -22111,5002:475,-25,-7,0,0,0.597116 -22112,5002:374,-24,-7,0,0,0.593427 -22113,5002:373,-23,-7,0,0,0.591492 -22114,5002:372,-22,-7,0,0,0.589008 -22115,5002:371,-21,-7,0,0,0.588958 -22116,5002:370,-20,-7,0,0,0.586543 -22117,5001:479,-19,-7,0,0,0.586368 -22118,5001:478,-18,-7,0,0,0.584499 -22119,5001:477,-17,-7,0,0,0.582726 -22120,5001:476,-16,-7,0,0,0.581851 -22121,5001:475,-15,-7,0,0,0.576693 -22122,5001:374,-14,-7,0,0,0.575262 -22123,5001:373,-13,-7,0,0,0.574861 -22124,5001:372,-12,-7,0,0,0.574886 -22125,5001:371,-11,-7,0,0,0.574534 -22126,5001:370,-10,-7,0,0,0.570586 -22127,5000:479,-9,-7,0,0,0.565898 -22128,5000:478,-8,-7,0,0,0.562791 -22129,5000:477,-7,-7,0,0,0.563676 -22130,5000:476,-6,-7,0,0,0.566907 -22131,5000:475,-5,-7,0,0,0.567261 -22132,5000:374,-4,-7,0,0,0.567437 -22133,5000:373,-3,-7,0,0,0.574183 -22134,5000:372,-2,-7,0,0,0.580601 -22135,5000:371,-1,-7,0,0,0.585446 -22136,3000:371,0,-7,0,0,0.590499 -22137,3000:371,1,-7,0,0,0.5937 -22138,3000:372,2,-7,0,0,0.593774 -22139,3000:373,3,-7,0,0,0.593204 -22140,3000:374,4,-7,0,0,0.597141 -22141,3000:475,5,-7,0,0,0.603648 -22142,3000:476,6,-7,0,0,0.610168 -22143,3000:477,7,-7,0,0,0.622992 -22144,3000:478,8,-7,0,0,0.632618 -22145,3000:479,9,-7,0,0,0.635384 -22146,3001:370,10,-7,0,0,0.634717 -22147,3001:371,11,-7,0,0,0.625209 -22148,3001:372,12,-7,0,0,0.617377 -22149,3004:370,40,-7,0,0,0.666693 -22150,3004:371,41,-7,0,0,0.671855 -22151,3004:372,42,-7,0,0,0.673462 -22152,3004:373,43,-7,0,0,0.673055 -22153,3004:374,44,-7,0,0,0.671946 -22154,3004:475,45,-7,0,0,0.67079 -22155,3004:476,46,-7,0,0,0.671108 -22156,3004:477,47,-7,0,0,0.670358 -22157,3004:478,48,-7,0,0,0.669564 -22158,3004:479,49,-7,0,0,0.669154 -22159,3005:370,50,-7,0,0,0.668062 -22160,3005:371,51,-7,0,0,0.666236 -22161,3005:372,52,-7,0,0,0.662479 -22162,3005:373,53,-7,0,0,0.661859 -22163,3005:374,54,-7,0,0,0.664772 -22164,3005:475,55,-7,0,0,0.666647 -22165,3005:476,56,-7,0,0,0.667423 -22166,3005:477,57,-7,0,0,0.668381 -22167,3005:478,58,-7,0,0,0.66797 -22168,3005:479,59,-7,0,0,0.665161 -22169,3006:370,60,-7,0,0,0.66218 -22170,3006:371,61,-7,0,0,0.661376 -22171,3006:372,62,-7,0,0,0.661329 -22172,3006:373,63,-7,0,0,0.66172 -22173,3006:374,64,-7,0,0,0.661882 -22174,3006:475,65,-7,0,0,0.66218 -22175,3006:476,66,-7,0,0,0.663512 -22176,3006:477,67,-7,0,0,0.664635 -22177,3006:478,68,-7,0,0,0.66491 -22178,3006:479,69,-7,0,0,0.665161 -22179,3007:370,70,-7,0,0,0.665436 -22180,3007:371,71,-7,0,0,0.662847 -22181,3007:372,72,-7,0,0,0.668062 -22182,3007:374,74,-7,0,0,0.670086 -22183,3007:475,75,-7,0,0,0.670676 -22184,3007:476,76,-7,0,0,0.669927 -22185,3007:477,77,-7,0,0,0.668312 -22186,3007:478,78,-7,0,0,0.667651 -22187,3007:479,79,-7,0,0,0.666076 -22188,3008:370,80,-7,0,0,0.661767 -22189,3008:371,81,-7,0,0,0.658493 -22190,3008:372,82,-7,0,0,0.656874 -22191,3008:373,83,-7,0,0,0.656364 -22192,3008:374,84,-7,0,0,0.655529 -22193,3008:475,85,-7,0,0,0.655205 -22194,3008:476,86,-7,0,0,0.654229 -22195,3008:477,87,-7,0,0,0.654578 -22196,3008:478,88,-7,0,0,0.655878 -22197,3008:479,89,-7,0,0,0.65692 -22198,3009:370,90,-7,0,0,0.6578 -22199,3009:371,91,-7,0,0,0.65773 -22200,3009:372,92,-7,0,0,0.657175 -22201,3009:373,93,-7,0,0,0.656364 -22202,3009:374,94,-7,0,0,0.655112 -22203,3009:475,95,-7,0,0,0.654856 -22204,3009:476,96,-7,0,0,0.653136 -22205,3009:477,97,-7,0,0,0.651808 -22206,3009:478,98,-7,0,0,0.652065 -22207,3009:479,99,-7,0,0,0.652833 -22208,3010:370,100,-7,0,0,0.653369 -22209,3010:371,101,-7,0,0,0.654601 -22210,3010:372,102,-7,0,0,0.655483 -22211,3010:373,103,-7,0,0,0.655205 -22212,3010:374,104,-7,0,0,0.658424 -22213,3010:475,105,-7,0,0,0.664864 -22214,3010:476,106,-7,0,0,0.663879 -22215,3011:475,115,-7,0,0,0.688106 -22216,3011:476,116,-7,0,0,0.690219 -22217,3011:477,117,-7,0,0,0.677672 -22218,3011:478,118,-7,0,0,0.678749 -22219,3011:479,119,-7,0,0,0.674342 -22220,3012:370,120,-7,0,0,0.678323 -22221,3012:371,121,-7,0,0,0.687136 -22222,3012:372,122,-7,0,0,0.691953 -22223,3012:373,123,-7,0,0,0.690659 -22224,3012:374,124,-7,0,0,0.691602 -22225,3012:475,125,-7,0,0,0.690527 -22226,3012:476,126,-7,0,0,0.688371 -22227,3012:477,127,-7,0,0,0.685654 -22228,3012:478,128,-7,0,0,0.682813 -22229,3012:479,129,-7,0,0,0.684324 -22230,3013:370,130,-7,0,0,0.687379 -22231,3013:371,131,-7,0,0,0.684878 -22232,3013:372,132,-7,0,0,0.683813 -22233,3013:373,133,-7,0,0,0.67998 -22234,3013:374,134,-7,0,0,0.677134 -22235,3013:475,135,-7,0,0,0.690593 -22236,3013:476,136,-7,0,0,0.677156 -22237,3013:477,137,-7,0,0,0.675334 -22238,3013:478,138,-7,0,0,0.701719 -22239,3014:478,148,-7,0,0,0.672399 -22240,3014:479,149,-7,0,0,0.675492 -22241,3015:370,150,-7,0,0,0.676707 -22242,3015:371,151,-7,0,0,0.678794 -22243,3015:372,152,-7,0,0,0.685942 -22244,3015:373,153,-7,0,0,0.689274 -22245,3015:374,154,-7,0,0,0.690768 -22246,3015:475,155,-7,0,0,0.692018 -22247,3015:476,156,-7,0,0,0.688724 -22248,3015:478,158,-7,0,0,0.687599 -22249,3015:479,159,-7,0,0,0.68718 -22250,3016:370,160,-7,0,0,0.685344 -22251,3016:371,161,-7,0,0,0.684235 -22252,3016:372,162,-7,0,0,0.684878 -22253,3016:373,163,-7,0,0,0.684124 -22254,3016:374,164,-7,0,0,0.683569 -22255,3016:475,165,-7,0,0,0.680203 -22256,3016:476,166,-7,0,0,0.677605 -22257,3016:477,167,-7,0,0,0.677897 -22258,3016:478,168,-7,0,0,0.678615 -22259,3016:479,169,-7,0,0,0.678749 -22260,3017:370,170,-7,0,0,0.67904 -22261,3017:371,171,-7,0,0,0.678906 -22262,3017:372,172,-7,0,0,0.678143 -22263,3017:373,173,-7,0,0,0.678413 -22264,3017:374,174,-7,0,0,0.678995 -22265,3017:475,175,-7,0,0,0.679085 -22266,3017:476,176,-7,0,0,0.678211 -22267,3017:477,177,-7,0,0,0.677852 -22268,3017:478,178,-7,0,0,0.678659 -22269,3017:479,179,-7,0,0,0.67989 -22270,3018:370,180,-7,0,0,0.681163 -22271,5018:360,-180,-6,0,0,0.680382 -22272,5017:469,-179,-6,0,0,0.680159 -22273,5017:468,-178,-6,0,0,0.678503 -22274,5017:467,-177,-6,0,0,0.677134 -22275,5017:466,-176,-6,0,0,0.676504 -22276,5017:465,-175,-6,0,0,0.675919 -22277,5017:364,-174,-6,0,0,0.676842 -22278,5017:363,-173,-6,0,0,0.67774 -22279,5017:362,-172,-6,0,0,0.677583 -22280,5017:361,-171,-6,0,0,0.676954 -22281,5017:360,-170,-6,0,0,0.676167 -22282,5016:469,-169,-6,0,0,0.675176 -22283,5016:468,-168,-6,0,0,0.6745 -22284,5016:467,-167,-6,0,0,0.67459 -22285,5016:466,-166,-6,0,0,0.673032 -22286,5016:465,-165,-6,0,0,0.671765 -22287,5016:364,-164,-6,0,0,0.670881 -22288,5016:363,-163,-6,0,0,0.67029 -22289,5016:362,-162,-6,0,0,0.668882 -22290,5016:361,-161,-6,0,0,0.666738 -22291,5016:360,-160,-6,0,0,0.664406 -22292,5015:469,-159,-6,0,0,0.662019 -22293,5015:468,-158,-6,0,0,0.659971 -22294,5015:467,-157,-6,0,0,0.657985 -22295,5015:466,-156,-6,0,0,0.656526 -22296,5015:465,-155,-6,0,0,0.654717 -22297,5015:364,-154,-6,0,0,0.652833 -22298,5015:363,-153,-6,0,0,0.650594 -22299,5015:362,-152,-6,0,0,0.648513 -22300,5015:361,-151,-6,0,0,0.647013 -22301,5015:360,-150,-6,0,0,0.64565 -22302,5014:469,-149,-6,0,0,0.643886 -22303,5014:468,-148,-6,0,0,0.64207 -22304,5014:467,-147,-6,0,0,0.640628 -22305,5014:466,-146,-6,0,0,0.639255 -22306,5014:465,-145,-6,0,0,0.636906 -22307,5014:364,-144,-6,0,0,0.634765 -22308,5014:363,-143,-6,0,0,0.632714 -22309,5014:362,-142,-6,0,0,0.630347 -22310,5014:361,-141,-6,0,0,0.627445 -22311,5014:360,-140,-6,0,0,0.624824 -22312,5013:469,-139,-6,0,0,0.622944 -22313,5013:468,-138,-6,0,0,0.622243 -22314,5013:467,-137,-6,0,0,0.620769 -22315,5013:466,-136,-6,0,0,0.619438 -22316,5013:465,-135,-6,0,0,0.617838 -22317,5013:364,-134,-6,0,0,0.615823 -22318,5013:363,-133,-6,0,0,0.613292 -22319,5013:362,-132,-6,0,0,0.610094 -22320,5013:361,-131,-6,0,0,0.607305 -22321,5013:360,-130,-6,0,0,0.605784 -22322,5012:469,-129,-6,0,0,0.604213 -22323,5012:468,-128,-6,0,0,0.602492 -22324,5012:467,-127,-6,0,0,0.6003 -22325,5012:466,-126,-6,0,0,0.597906 -22326,5012:465,-125,-6,0,0,0.594914 -22327,5012:364,-124,-6,0,0,0.591319 -22328,5012:363,-123,-6,0,0,0.588261 -22329,5012:362,-122,-6,0,0,0.584798 -22330,5012:361,-121,-6,0,0,0.581476 -22331,5012:360,-120,-6,0,0,0.578948 -22332,5011:469,-119,-6,0,0,0.576417 -22333,5011:468,-118,-6,0,0,0.573605 -22334,5011:467,-117,-6,0,0,0.570788 -22335,5011:466,-116,-6,0,0,0.568319 -22336,5011:465,-115,-6,0,0,0.566327 -22337,5011:364,-114,-6,0,0,0.563953 -22338,5011:363,-113,-6,0,0,0.561248 -22339,5011:362,-112,-6,0,0,0.558311 -22340,5011:361,-111,-6,0,0,0.555294 -22341,5011:360,-110,-6,0,0,0.552984 -22342,5010:469,-109,-6,0,0,0.55179 -22343,5010:468,-108,-6,0,0,0.550926 -22344,5010:467,-107,-6,0,0,0.54851 -22345,5010:466,-106,-6,0,0,0.545073 -22346,5010:465,-105,-6,0,0,0.544793 -22347,5010:364,-104,-6,0,0,0.547034 -22348,5010:363,-103,-6,0,0,0.54599 -22349,5010:362,-102,-6,0,0,0.543748 -22350,5010:361,-101,-6,0,0,0.542142 -22351,5010:360,-100,-6,0,0,0.542677 -22352,5009:469,-99,-6,0,0,0.543595 -22353,5009:468,-98,-6,0,0,0.541912 -22354,5009:467,-97,-6,0,0,0.540611 -22355,5009:466,-96,-6,0,0,0.540738 -22356,5009:465,-95,-6,0,0,0.542371 -22357,5009:364,-94,-6,0,0,0.547213 -22358,5009:363,-93,-6,0,0,0.554279 -22359,5009:362,-92,-6,0,0,0.559654 -22360,5009:361,-91,-6,0,0,0.56102 -22361,5009:360,-90,-6,0,0,0.560185 -22362,5008:469,-89,-6,0,0,0.55783 -22363,5008:468,-88,-6,0,0,0.551612 -22364,5008:467,-87,-6,0,0,0.544155 -22365,5008:466,-86,-6,0,0,0.538237 -22366,5008:465,-85,-6,0,0,0.532129 -22367,5008:364,-84,-6,0,0,0.522731 -22368,5008:363,-83,-6,0,0,0.516217 -22369,5008:362,-82,-6,0,0,0.524627 -22370,5008:361,-81,-6,0,0,0.512778 -22371,5003:465,-35,-6,0,0,0.61711 -22372,5003:364,-34,-6,0,0,0.612219 -22373,5003:363,-33,-6,0,0,0.612975 -22374,5003:362,-32,-6,0,0,0.612877 -22375,5003:361,-31,-6,0,0,0.611389 -22376,5003:360,-30,-6,0,0,0.610461 -22377,5002:469,-29,-6,0,0,0.608113 -22378,5002:468,-28,-6,0,0,0.603894 -22379,5002:467,-27,-6,0,0,0.602073 -22380,5002:466,-26,-6,0,0,0.601015 -22381,5002:465,-25,-6,0,0,0.600669 -22382,5002:364,-24,-6,0,0,0.599585 -22383,5002:363,-23,-6,0,0,0.596843 -22384,5002:362,-22,-6,0,0,0.594617 -22385,5002:361,-21,-6,0,0,0.594096 -22386,5002:360,-20,-6,0,0,0.593898 -22387,5001:469,-19,-6,0,0,0.594369 -22388,5001:468,-18,-6,0,0,0.594468 -22389,5001:467,-17,-6,0,0,0.592982 -22390,5001:466,-16,-6,0,0,0.593279 -22391,5001:465,-15,-6,0,0,0.592436 -22392,5001:364,-14,-6,0,0,0.589431 -22393,5001:363,-13,-6,0,0,0.586942 -22394,5001:362,-12,-6,0,0,0.586244 -22395,5001:361,-11,-6,0,0,0.585097 -22396,5001:360,-10,-6,0,0,0.581076 -22397,5000:469,-9,-6,0,0,0.578999 -22398,5000:468,-8,-6,0,0,0.580701 -22399,5000:467,-7,-6,0,0,0.583924 -22400,5000:466,-6,-6,0,0,0.585796 -22401,5000:465,-5,-6,0,0,0.587962 -22402,5000:364,-4,-6,0,0,0.589654 -22403,5000:363,-3,-6,0,0,0.591791 -22404,5000:362,-2,-6,0,0,0.595879 -22405,5000:361,-1,-6,0,0,0.601138 -22406,3000:361,0,-6,0,0,0.604262 -22407,3000:361,1,-6,0,0,0.605686 -22408,3000:362,2,-6,0,0,0.606888 -22409,3000:363,3,-6,0,0,0.607109 -22410,3000:364,4,-6,0,0,0.612365 -22411,3000:465,5,-6,0,0,0.619195 -22412,3000:466,6,-6,0,0,0.625113 -22413,3000:467,7,-6,0,0,0.631304 -22414,3000:468,8,-6,0,0,0.635265 -22415,3000:469,9,-6,0,0,0.632762 -22416,3001:360,10,-6,0,0,0.621712 -22417,3001:361,11,-6,0,0,0.584124 -22418,3003:469,39,-6,0,0,0.666556 -22419,3004:360,40,-6,0,0,0.669746 -22420,3004:361,41,-6,0,0,0.676414 -22421,3004:362,42,-6,0,0,0.679062 -22422,3004:363,43,-6,0,0,0.6823 -22423,3004:364,44,-6,0,0,0.683324 -22424,3004:465,45,-6,0,0,0.680762 -22425,3004:466,46,-6,0,0,0.678592 -22426,3004:467,47,-6,0,0,0.677403 -22427,3004:468,48,-6,0,0,0.675019 -22428,3004:469,49,-6,0,0,0.672557 -22429,3005:360,50,-6,0,0,0.670041 -22430,3005:361,51,-6,0,0,0.668631 -22431,3005:362,52,-6,0,0,0.662571 -22432,3005:363,53,-6,0,0,0.659232 -22433,3005:364,54,-6,0,0,0.660293 -22434,3005:465,55,-6,0,0,0.661145 -22435,3005:466,56,-6,0,0,0.662433 -22436,3005:467,57,-6,0,0,0.666511 -22437,3005:468,58,-6,0,0,0.669359 -22438,3005:469,59,-6,0,0,0.669495 -22439,3006:360,60,-6,0,0,0.668016 -22440,3006:361,61,-6,0,0,0.667058 -22441,3006:362,62,-6,0,0,0.666099 -22442,3006:363,63,-6,0,0,0.664589 -22443,3006:364,64,-6,0,0,0.66342 -22444,3006:465,65,-6,0,0,0.662364 -22445,3006:466,66,-6,0,0,0.661697 -22446,3006:467,67,-6,0,0,0.661145 -22447,3006:468,68,-6,0,0,0.65914 -22448,3006:469,69,-6,0,0,0.658978 -22449,3007:360,70,-6,0,0,0.661859 -22450,3007:361,71,-6,0,0,0.662456 -22451,3007:362,72,-6,0,0,0.663787 -22452,3007:364,74,-6,0,0,0.666008 -22453,3007:465,75,-6,0,0,0.666693 -22454,3007:466,76,-6,0,0,0.667446 -22455,3007:467,77,-6,0,0,0.667856 -22456,3007:468,78,-6,0,0,0.667674 -22457,3007:469,79,-6,0,0,0.667469 -22458,3008:360,80,-6,0,0,0.66683 -22459,3008:361,81,-6,0,0,0.666236 -22460,3008:362,82,-6,0,0,0.666511 -22461,3008:363,83,-6,0,0,0.66667 -22462,3008:364,84,-6,0,0,0.667514 -22463,3008:465,85,-6,0,0,0.668631 -22464,3008:466,86,-6,0,0,0.668153 -22465,3008:467,87,-6,0,0,0.667058 -22466,3008:468,88,-6,0,0,0.666921 -22467,3008:469,89,-6,0,0,0.666442 -22468,3009:360,90,-6,0,0,0.666031 -22469,3009:361,91,-6,0,0,0.665711 -22470,3009:362,92,-6,0,0,0.664246 -22471,3009:363,93,-6,0,0,0.663535 -22472,3009:364,94,-6,0,0,0.662318 -22473,3009:465,95,-6,0,0,0.6608 -22474,3009:466,96,-6,0,0,0.659763 -22475,3009:467,97,-6,0,0,0.659024 -22476,3009:468,98,-6,0,0,0.659186 -22477,3009:469,99,-6,0,0,0.659647 -22478,3010:360,100,-6,0,0,0.660155 -22479,3010:361,101,-6,0,0,0.660063 -22480,3010:362,102,-6,0,0,0.65944 -22481,3010:363,103,-6,0,0,0.659394 -22482,3010:364,104,-6,0,0,0.668677 -22483,3010:467,107,-6,0,0,0.677942 -22484,3010:468,108,-6,0,0,0.674703 -22485,3010:469,109,-6,0,0,0.674703 -22486,3011:360,110,-6,0,0,0.672625 -22487,3011:361,111,-6,0,0,0.673868 -22488,3011:362,112,-6,0,0,0.675829 -22489,3011:363,113,-6,0,0,0.677336 -22490,3011:364,114,-6,0,0,0.677762 -22491,3011:465,115,-6,0,0,0.679152 -22492,3011:466,116,-6,0,0,0.683257 -22493,3011:467,117,-6,0,0,0.683946 -22494,3011:468,118,-6,0,0,0.665528 -22495,3011:469,119,-6,0,0,0.67138 -22496,3012:361,121,-6,0,0,0.678838 -22497,3012:362,122,-6,0,0,0.685055 -22498,3012:364,124,-6,0,0,0.685942 -22499,3012:465,125,-6,0,0,0.681119 -22500,3012:466,126,-6,0,0,0.686915 -22501,3012:467,127,-6,0,0,0.685477 -22502,3012:468,128,-6,0,0,0.684767 -22503,3012:469,129,-6,0,0,0.685011 -22504,3013:360,130,-6,0,0,0.684812 -22505,3013:361,131,-6,0,0,0.683191 -22506,3013:362,132,-6,0,0,0.681097 -22507,3013:363,133,-6,0,0,0.682033 -22508,3013:364,134,-6,0,0,0.685631 -22509,3013:465,135,-6,0,0,0.690197 -22510,3013:466,136,-6,0,0,0.67147 -22511,3013:467,137,-6,0,0,0.678928 -22512,3013:468,138,-6,0,0,0.702321 -22513,3014:467,147,-6,0,0,0.669881 -22514,3014:468,148,-6,0,0,0.676842 -22515,3014:469,149,-6,0,0,0.679175 -22516,3015:360,150,-6,0,0,0.680762 -22517,3015:363,153,-6,0,0,0.682211 -22518,3015:364,154,-6,0,0,0.686627 -22519,3015:466,156,-6,0,0,0.680985 -22520,3015:467,157,-6,0,0,0.681342 -22521,3015:468,158,-6,0,0,0.683346 -22522,3015:469,159,-6,0,0,0.683324 -22523,3016:360,160,-6,0,0,0.681877 -22524,3016:361,161,-6,0,0,0.676775 -22525,3016:362,162,-6,0,0,0.68279 -22526,3016:363,163,-6,0,0,0.683413 -22527,3016:364,164,-6,0,0,0.682546 -22528,3016:465,165,-6,0,0,0.681409 -22529,3016:466,166,-6,0,0,0.67904 -22530,3016:467,167,-6,0,0,0.678883 -22531,3016:468,168,-6,0,0,0.679756 -22532,3016:469,169,-6,0,0,0.679958 -22533,3017:360,170,-6,0,0,0.678794 -22534,3017:361,171,-6,0,0,0.678211 -22535,3017:362,172,-6,0,0,0.678143 -22536,3017:363,173,-6,0,0,0.678368 -22537,3017:364,174,-6,0,0,0.678503 -22538,3017:465,175,-6,0,0,0.67857 -22539,3017:466,176,-6,0,0,0.678301 -22540,3017:467,177,-6,0,0,0.678861 -22541,3017:468,178,-6,0,0,0.67942 -22542,3017:469,179,-6,0,0,0.680069 -22543,3018:360,180,-6,0,0,0.680382 -22544,5018:350,-180,-5,0,0,0.680606 -22545,5017:459,-179,-5,0,0,0.679599 -22546,5017:458,-178,-5,0,0,0.678637 -22547,5017:457,-177,-5,0,0,0.678009 -22548,5017:456,-176,-5,0,0,0.67756 -22549,5017:455,-175,-5,0,0,0.676864 -22550,5017:354,-174,-5,0,0,0.677852 -22551,5017:353,-173,-5,0,0,0.676437 -22552,5017:352,-172,-5,0,0,0.674748 -22553,5017:351,-171,-5,0,0,0.673371 -22554,5017:350,-170,-5,0,0,0.672059 -22555,5016:459,-169,-5,0,0,0.671221 -22556,5016:458,-168,-5,0,0,0.670563 -22557,5016:457,-167,-5,0,0,0.6697 -22558,5016:456,-166,-5,0,0,0.668677 -22559,5016:455,-165,-5,0,0,0.66756 -22560,5016:354,-164,-5,0,0,0.666122 -22561,5016:353,-163,-5,0,0,0.664566 -22562,5016:352,-162,-5,0,0,0.662823 -22563,5016:351,-161,-5,0,0,0.660593 -22564,5016:350,-160,-5,0,0,0.658678 -22565,5015:459,-159,-5,0,0,0.657268 -22566,5015:458,-158,-5,0,0,0.655808 -22567,5015:457,-157,-5,0,0,0.653764 -22568,5015:456,-156,-5,0,0,0.651668 -22569,5015:455,-155,-5,0,0,0.650081 -22570,5015:354,-154,-5,0,0,0.647764 -22571,5015:353,-153,-5,0,0,0.645627 -22572,5015:352,-152,-5,0,0,0.643626 -22573,5015:351,-151,-5,0,0,0.642093 -22574,5015:350,-150,-5,0,0,0.640912 -22575,5014:459,-149,-5,0,0,0.640013 -22576,5014:458,-148,-5,0,0,0.639113 -22577,5014:457,-147,-5,0,0,0.637713 -22578,5014:456,-146,-5,0,0,0.635764 -22579,5014:455,-145,-5,0,0,0.633454 -22580,5014:354,-144,-5,0,0,0.631352 -22581,5014:353,-143,-5,0,0,0.629077 -22582,5014:352,-142,-5,0,0,0.626749 -22583,5014:351,-141,-5,0,0,0.62468 -22584,5014:350,-140,-5,0,0,0.622026 -22585,5013:459,-139,-5,0,0,0.620043 -22586,5013:458,-138,-5,0,0,0.617425 -22587,5013:457,-137,-5,0,0,0.614728 -22588,5013:456,-136,-5,0,0,0.611779 -22589,5013:455,-135,-5,0,0,0.609165 -22590,5013:354,-134,-5,0,0,0.606839 -22591,5013:353,-133,-5,0,0,0.604852 -22592,5013:352,-132,-5,0,0,0.603722 -22593,5013:351,-131,-5,0,0,0.602836 -22594,5013:350,-130,-5,0,0,0.600226 -22595,5012:459,-129,-5,0,0,0.598055 -22596,5012:458,-128,-5,0,0,0.595483 -22597,5012:457,-127,-5,0,0,0.593155 -22598,5012:456,-126,-5,0,0,0.590449 -22599,5012:455,-125,-5,0,0,0.588037 -22600,5012:354,-124,-5,0,0,0.585945 -22601,5012:353,-123,-5,0,0,0.583874 -22602,5012:352,-122,-5,0,0,0.581901 -22603,5012:351,-121,-5,0,0,0.58015 -22604,5012:350,-120,-5,0,0,0.578899 -22605,5011:459,-119,-5,0,0,0.57772 -22606,5011:458,-118,-5,0,0,0.576191 -22607,5011:457,-117,-5,0,0,0.573403 -22608,5011:456,-116,-5,0,0,0.570889 -22609,5011:455,-115,-5,0,0,0.568925 -22610,5011:354,-114,-5,0,0,0.566832 -22611,5011:353,-113,-5,0,0,0.564535 -22612,5011:352,-112,-5,0,0,0.561957 -22613,5011:351,-111,-5,0,0,0.559805 -22614,5011:350,-110,-5,0,0,0.55816 -22615,5010:459,-109,-5,0,0,0.557475 -22616,5010:458,-108,-5,0,0,0.556638 -22617,5010:457,-107,-5,0,0,0.556638 -22618,5010:456,-106,-5,0,0,0.557019 -22619,5010:455,-105,-5,0,0,0.556638 -22620,5010:354,-104,-5,0,0,0.557424 -22621,5010:353,-103,-5,0,0,0.55603 -22622,5010:352,-102,-5,0,0,0.554939 -22623,5010:351,-101,-5,0,0,0.553975 -22624,5010:350,-100,-5,0,0,0.552121 -22625,5009:459,-99,-5,0,0,0.550011 -22626,5009:458,-98,-5,0,0,0.550494 -22627,5009:457,-97,-5,0,0,0.553136 -22628,5009:456,-96,-5,0,0,0.55334 -22629,5009:455,-95,-5,0,0,0.553873 -22630,5009:354,-94,-5,0,0,0.555345 -22631,5009:353,-93,-5,0,0,0.557728 -22632,5009:352,-92,-5,0,0,0.560616 -22633,5009:351,-91,-5,0,0,0.563397 -22634,5009:350,-90,-5,0,0,0.566579 -22635,5008:459,-89,-5,0,0,0.564535 -22636,5008:458,-88,-5,0,0,0.558742 -22637,5008:457,-87,-5,0,0,0.553822 -22638,5008:456,-86,-5,0,0,0.548001 -22639,5008:455,-85,-5,0,0,0.542524 -22640,5008:354,-84,-5,0,0,0.538748 -22641,5008:353,-83,-5,0,0,0.536577 -22642,5008:352,-82,-5,0,0,0.541121 -22643,5008:351,-81,-5,0,0,0.528289 -22644,5003:458,-38,-5,0,0,0.622195 -22645,5003:457,-37,-5,0,0,0.615798 -22646,5003:456,-36,-5,0,0,0.616721 -22647,5003:455,-35,-5,0,0,0.617474 -22648,5003:354,-34,-5,0,0,0.616916 -22649,5003:353,-33,-5,0,0,0.616042 -22650,5003:352,-32,-5,0,0,0.615093 -22651,5003:351,-31,-5,0,0,0.613803 -22652,5003:350,-30,-5,0,0,0.612389 -22653,5002:459,-29,-5,0,0,0.611926 -22654,5002:458,-28,-5,0,0,0.611487 -22655,5002:457,-27,-5,0,0,0.610534 -22656,5002:456,-26,-5,0,0,0.608456 -22657,5002:455,-25,-5,0,0,0.606766 -22658,5002:354,-24,-5,0,0,0.60679 -22659,5002:353,-23,-5,0,0,0.607476 -22660,5002:352,-22,-5,0,0,0.606912 -22661,5002:351,-21,-5,0,0,0.605834 -22662,5002:350,-20,-5,0,0,0.604581 -22663,5001:459,-19,-5,0,0,0.603181 -22664,5001:458,-18,-5,0,0,0.602541 -22665,5001:457,-17,-5,0,0,0.603402 -22666,5001:456,-16,-5,0,0,0.605073 -22667,5001:455,-15,-5,0,0,0.605932 -22668,5001:354,-14,-5,0,0,0.606005 -22669,5001:353,-13,-5,0,0,0.606447 -22670,5001:352,-12,-5,0,0,0.606692 -22671,5001:351,-11,-5,0,0,0.60701 -22672,5001:350,-10,-5,0,0,0.608627 -22673,5000:459,-9,-5,0,0,0.610021 -22674,5000:458,-8,-5,0,0,0.610876 -22675,5000:457,-7,-5,0,0,0.611219 -22676,5000:456,-6,-5,0,0,0.612633 -22677,5000:455,-5,-5,0,0,0.61373 -22678,5000:354,-4,-5,0,0,0.614461 -22679,5000:353,-3,-5,0,0,0.615677 -22680,5000:352,-2,-5,0,0,0.617328 -22681,5000:351,-1,-5,0,0,0.617717 -22682,3000:351,0,-5,0,0,0.616649 -22683,3000:351,1,-5,0,0,0.616867 -22684,3000:352,2,-5,0,0,0.618783 -22685,3000:353,3,-5,0,0,0.622919 -22686,3000:354,4,-5,0,0,0.626604 -22687,3000:455,5,-5,0,0,0.628502 -22688,3000:456,6,-5,0,0,0.629796 -22689,3000:457,7,-5,0,0,0.630634 -22690,3000:458,8,-5,0,0,0.627445 -22691,3000:459,9,-5,0,0,0.618008 -22692,3001:350,10,-5,0,0,0.603353 -22693,3001:351,11,-5,0,0,0.596448 -22694,3004:350,40,-5,0,0,0.655645 -22695,3004:351,41,-5,0,0,0.670948 -22696,3004:352,42,-5,0,0,0.676999 -22697,3004:353,43,-5,0,0,0.676437 -22698,3004:354,44,-5,0,0,0.67045 -22699,3004:455,45,-5,0,0,0.67423 -22700,3004:456,46,-5,0,0,0.683591 -22701,3004:457,47,-5,0,0,0.684346 -22702,3004:458,48,-5,0,0,0.681944 -22703,3004:459,49,-5,0,0,0.679443 -22704,3005:350,50,-5,0,0,0.676864 -22705,3005:351,51,-5,0,0,0.6731 -22706,3005:352,52,-5,0,0,0.669268 -22707,3005:353,53,-5,0,0,0.663742 -22708,3005:354,54,-5,0,0,0.660454 -22709,3005:455,55,-5,0,0,0.659417 -22710,3005:456,56,-5,0,0,0.661697 -22711,3005:457,57,-5,0,0,0.663397 -22712,3005:458,58,-5,0,0,0.667742 -22713,3005:459,59,-5,0,0,0.668699 -22714,3006:350,60,-5,0,0,0.668426 -22715,3006:351,61,-5,0,0,0.667674 -22716,3006:352,62,-5,0,0,0.665734 -22717,3006:353,63,-5,0,0,0.66397 -22718,3006:354,64,-5,0,0,0.662962 -22719,3006:455,65,-5,0,0,0.66156 -22720,3006:456,66,-5,0,0,0.659809 -22721,3006:457,67,-5,0,0,0.657892 -22722,3006:458,68,-5,0,0,0.656666 -22723,3006:459,69,-5,0,0,0.656225 -22724,3007:350,70,-5,0,0,0.656827 -22725,3007:351,71,-5,0,0,0.658146 -22726,3007:352,72,-5,0,0,0.659716 -22727,3007:354,74,-5,0,0,0.661329 -22728,3007:455,75,-5,0,0,0.66149 -22729,3007:456,76,-5,0,0,0.662019 -22730,3007:457,77,-5,0,0,0.662571 -22731,3007:458,78,-5,0,0,0.662732 -22732,3007:459,79,-5,0,0,0.663191 -22733,3008:350,80,-5,0,0,0.664223 -22734,3008:351,81,-5,0,0,0.665665 -22735,3008:352,82,-5,0,0,0.666761 -22736,3008:353,83,-5,0,0,0.667651 -22737,3008:354,84,-5,0,0,0.669154 -22738,3008:455,85,-5,0,0,0.670586 -22739,3008:456,86,-5,0,0,0.671855 -22740,3008:457,87,-5,0,0,0.671697 -22741,3008:458,88,-5,0,0,0.670722 -22742,3008:459,89,-5,0,0,0.670155 -22743,3009:350,90,-5,0,0,0.669109 -22744,3009:351,91,-5,0,0,0.667537 -22745,3009:352,92,-5,0,0,0.66635 -22746,3009:353,93,-5,0,0,0.665299 -22747,3009:354,94,-5,0,0,0.663948 -22748,3009:455,95,-5,0,0,0.662709 -22749,3009:456,96,-5,0,0,0.661628 -22750,3009:457,97,-5,0,0,0.660892 -22751,3009:458,98,-5,0,0,0.660431 -22752,3009:459,99,-5,0,0,0.660662 -22753,3010:350,100,-5,0,0,0.661628 -22754,3010:351,101,-5,0,0,0.663191 -22755,3010:352,102,-5,0,0,0.668972 -22756,3010:457,107,-5,0,0,0.682122 -22757,3010:458,108,-5,0,0,0.680091 -22758,3010:459,109,-5,0,0,0.674274 -22759,3011:350,110,-5,0,0,0.668995 -22760,3011:351,111,-5,0,0,0.671651 -22761,3011:352,112,-5,0,0,0.675649 -22762,3011:353,113,-5,0,0,0.677538 -22763,3011:354,114,-5,0,0,0.67942 -22764,3011:456,116,-5,0,0,0.686185 -22765,3011:457,117,-5,0,0,0.686052 -22766,3011:458,118,-5,0,0,0.677942 -22767,3011:459,119,-5,0,0,0.669655 -22768,3012:351,121,-5,0,0,0.681052 -22769,3012:353,123,-5,0,0,0.682501 -22770,3012:354,124,-5,0,0,0.685145 -22771,3012:455,125,-5,0,0,0.686163 -22772,3012:456,126,-5,0,0,0.683702 -22773,3012:457,127,-5,0,0,0.676932 -22774,3012:458,128,-5,0,0,0.681677 -22775,3012:459,129,-5,0,0,0.686849 -22776,3013:350,130,-5,0,0,0.687246 -22777,3013:351,131,-5,0,0,0.681008 -22778,3013:352,132,-5,0,0,0.680427 -22779,3013:353,133,-5,0,0,0.679935 -22780,3013:354,134,-5,0,0,0.687246 -22781,3014:455,145,-5,0,0,0.659532 -22782,3014:456,146,-5,0,0,0.673122 -22783,3014:457,147,-5,0,0,0.674387 -22784,3014:458,148,-5,0,0,0.674883 -22785,3014:459,149,-5,0,0,0.674906 -22786,3015:350,150,-5,0,0,0.677178 -22787,3015:351,151,-5,0,0,0.680494 -22788,3015:352,152,-5,0,0,0.679175 -22789,3015:354,154,-5,0,0,0.677044 -22790,3015:455,155,-5,0,0,0.67637 -22791,3015:456,156,-5,0,0,0.676796 -22792,3015:457,157,-5,0,0,0.677089 -22793,3015:458,158,-5,0,0,0.678682 -22794,3015:459,159,-5,0,0,0.678547 -22795,3016:350,160,-5,0,0,0.677381 -22796,3016:351,161,-5,0,0,0.677628 -22797,3016:352,162,-5,0,0,0.67783 -22798,3016:353,163,-5,0,0,0.678682 -22799,3016:354,164,-5,0,0,0.678749 -22800,3016:455,165,-5,0,0,0.678816 -22801,3016:456,166,-5,0,0,0.677897 -22802,3016:457,167,-5,0,0,0.677538 -22803,3016:458,168,-5,0,0,0.678189 -22804,3016:459,169,-5,0,0,0.677785 -22805,3017:350,170,-5,0,0,0.676819 -22806,3017:351,171,-5,0,0,0.676324 -22807,3017:352,172,-5,0,0,0.675717 -22808,3017:353,173,-5,0,0,0.675649 -22809,3017:354,174,-5,0,0,0.676347 -22810,3017:455,175,-5,0,0,0.676932 -22811,3017:456,176,-5,0,0,0.676707 -22812,3017:457,177,-5,0,0,0.677313 -22813,3017:458,178,-5,0,0,0.67839 -22814,3017:459,179,-5,0,0,0.679622 -22815,3018:350,180,-5,0,0,0.680606 -22816,5018:140,-180,-4,0,0,0.678032 -22817,5017:249,-179,-4,0,0,0.678099 -22818,5017:248,-178,-4,0,0,0.678009 -22819,5017:247,-177,-4,0,0,0.677785 -22820,5017:246,-176,-4,0,0,0.678143 -22821,5017:245,-175,-4,0,0,0.678816 -22822,5017:144,-174,-4,0,0,0.679287 -22823,5017:143,-173,-4,0,0,0.678861 -22824,5017:142,-172,-4,0,0,0.677246 -22825,5017:141,-171,-4,0,0,0.675492 -22826,5017:140,-170,-4,0,0,0.672896 -22827,5016:249,-169,-4,0,0,0.671402 -22828,5016:248,-168,-4,0,0,0.669995 -22829,5016:247,-167,-4,0,0,0.668631 -22830,5016:246,-166,-4,0,0,0.66731 -22831,5016:245,-165,-4,0,0,0.666236 -22832,5016:144,-164,-4,0,0,0.664727 -22833,5016:143,-163,-4,0,0,0.662663 -22834,5016:142,-162,-4,0,0,0.660754 -22835,5016:141,-161,-4,0,0,0.659024 -22836,5016:140,-160,-4,0,0,0.65773 -22837,5015:249,-159,-4,0,0,0.656225 -22838,5015:248,-158,-4,0,0,0.654508 -22839,5015:247,-157,-4,0,0,0.652554 -22840,5015:246,-156,-4,0,0,0.650385 -22841,5015:245,-155,-4,0,0,0.649169 -22842,5015:144,-154,-4,0,0,0.647154 -22843,5015:143,-153,-4,0,0,0.645345 -22844,5015:142,-152,-4,0,0,0.644027 -22845,5015:141,-151,-4,0,0,0.641904 -22846,5015:140,-150,-4,0,0,0.640415 -22847,5014:249,-149,-4,0,0,0.63814 -22848,5014:248,-148,-4,0,0,0.636383 -22849,5014:247,-147,-4,0,0,0.634216 -22850,5014:246,-146,-4,0,0,0.631471 -22851,5014:245,-145,-4,0,0,0.629173 -22852,5014:144,-144,-4,0,0,0.626941 -22853,5014:143,-143,-4,0,0,0.624776 -22854,5014:142,-142,-4,0,0,0.622654 -22855,5014:141,-141,-4,0,0,0.620164 -22856,5014:140,-140,-4,0,0,0.617814 -22857,5013:249,-139,-4,0,0,0.615749 -22858,5013:248,-138,-4,0,0,0.613292 -22859,5013:247,-137,-4,0,0,0.610852 -22860,5013:246,-136,-4,0,0,0.608383 -22861,5013:245,-135,-4,0,0,0.606177 -22862,5013:144,-134,-4,0,0,0.605023 -22863,5013:143,-133,-4,0,0,0.604115 -22864,5013:142,-132,-4,0,0,0.602713 -22865,5013:141,-131,-4,0,0,0.600818 -22866,5013:140,-130,-4,0,0,0.598573 -22867,5012:249,-129,-4,0,0,0.596498 -22868,5012:248,-128,-4,0,0,0.594963 -22869,5012:247,-127,-4,0,0,0.593675 -22870,5012:246,-126,-4,0,0,0.592559 -22871,5012:245,-125,-4,0,0,0.590723 -22872,5012:144,-124,-4,0,0,0.588137 -22873,5012:143,-123,-4,0,0,0.585421 -22874,5012:142,-122,-4,0,0,0.583201 -22875,5012:141,-121,-4,0,0,0.581576 -22876,5012:140,-120,-4,0,0,0.580526 -22877,5011:249,-119,-4,0,0,0.579074 -22878,5011:248,-118,-4,0,0,0.576868 -22879,5011:247,-117,-4,0,0,0.575313 -22880,5011:246,-116,-4,0,0,0.57358 -22881,5011:245,-115,-4,0,0,0.572096 -22882,5011:144,-114,-4,0,0,0.570032 -22883,5011:143,-113,-4,0,0,0.567462 -22884,5011:142,-112,-4,0,0,0.566251 -22885,5011:141,-111,-4,0,0,0.564586 -22886,5011:140,-110,-4,0,0,0.562361 -22887,5010:249,-109,-4,0,0,0.560211 -22888,5010:248,-108,-4,0,0,0.55935 -22889,5010:247,-107,-4,0,0,0.559805 -22890,5010:246,-106,-4,0,0,0.561097 -22891,5010:245,-105,-4,0,0,0.561173 -22892,5010:144,-104,-4,0,0,0.560261 -22893,5010:143,-103,-4,0,0,0.559021 -22894,5010:142,-102,-4,0,0,0.558007 -22895,5010:141,-101,-4,0,0,0.557273 -22896,5010:140,-100,-4,0,0,0.556664 -22897,5009:249,-99,-4,0,0,0.556664 -22898,5009:248,-98,-4,0,0,0.557146 -22899,5009:247,-97,-4,0,0,0.557247 -22900,5009:246,-96,-4,0,0,0.557475 -22901,5009:245,-95,-4,0,0,0.557932 -22902,5009:144,-94,-4,0,0,0.558236 -22903,5009:143,-93,-4,0,0,0.557956 -22904,5009:142,-92,-4,0,0,0.558007 -22905,5009:141,-91,-4,0,0,0.559476 -22906,5009:140,-90,-4,0,0,0.565494 -22907,5008:249,-89,-4,0,0,0.566832 -22908,5008:248,-88,-4,0,0,0.563701 -22909,5008:247,-87,-4,0,0,0.55816 -22910,5008:246,-86,-4,0,0,0.552121 -22911,5008:245,-85,-4,0,0,0.547696 -22912,5008:144,-84,-4,0,0,0.555015 -22913,5008:143,-83,-4,0,0,0.56231 -22914,5008:142,-82,-4,0,0,0.562867 -22915,5008:141,-81,-4,0,0,0.568521 -22916,5004:143,-43,-4,0,0,0.638164 -22917,5004:142,-42,-4,0,0,0.628334 -22918,5004:141,-41,-4,0,0,0.62622 -22919,5004:140,-40,-4,0,0,0.617571 -22920,5003:249,-39,-4,0,0,0.61876 -22921,5003:248,-38,-4,0,0,0.618978 -22922,5003:247,-37,-4,0,0,0.618056 -22923,5003:246,-36,-4,0,0,0.61762 -22924,5003:245,-35,-4,0,0,0.616867 -22925,5003:144,-34,-4,0,0,0.615628 -22926,5003:143,-33,-4,0,0,0.614533 -22927,5003:142,-32,-4,0,0,0.613292 -22928,5003:141,-31,-4,0,0,0.613608 -22929,5003:140,-30,-4,0,0,0.612877 -22930,5002:249,-29,-4,0,0,0.612024 -22931,5002:248,-28,-4,0,0,0.611145 -22932,5002:247,-27,-4,0,0,0.610632 -22933,5002:246,-26,-4,0,0,0.610192 -22934,5002:245,-25,-4,0,0,0.609728 -22935,5002:144,-24,-4,0,0,0.60919 -22936,5002:143,-23,-4,0,0,0.608823 -22937,5002:142,-22,-4,0,0,0.608554 -22938,5002:141,-21,-4,0,0,0.608309 -22939,5002:140,-20,-4,0,0,0.608284 -22940,5001:249,-19,-4,0,0,0.608431 -22941,5001:248,-18,-4,0,0,0.6087 -22942,5001:247,-17,-4,0,0,0.609165 -22943,5001:246,-16,-4,0,0,0.60919 -22944,5001:245,-15,-4,0,0,0.609972 -22945,5001:144,-14,-4,0,0,0.611438 -22946,5001:143,-13,-4,0,0,0.613292 -22947,5001:142,-12,-4,0,0,0.615628 -22948,5001:141,-11,-4,0,0,0.618032 -22949,5001:140,-10,-4,0,0,0.620043 -22950,5000:249,-9,-4,0,0,0.621397 -22951,5000:248,-8,-4,0,0,0.623016 -22952,5000:247,-7,-4,0,0,0.624004 -22953,5000:246,-6,-4,0,0,0.624872 -22954,5000:245,-5,-4,0,0,0.625498 -22955,5000:144,-4,-4,0,0,0.626003 -22956,5000:143,-3,-4,0,0,0.627037 -22957,5000:142,-2,-4,0,0,0.628262 -22958,5000:141,-1,-4,0,0,0.629844 -22959,3000:141,0,-4,0,0,0.631376 -22960,3000:141,1,-4,0,0,0.631543 -22961,3000:142,2,-4,0,0,0.631136 -22962,3000:143,3,-4,0,0,0.630155 -22963,3000:144,4,-4,0,0,0.628549 -22964,3000:245,5,-4,0,0,0.626171 -22965,3000:246,6,-4,0,0,0.623088 -22966,3000:247,7,-4,0,0,0.617838 -22967,3000:248,8,-4,0,0,0.611755 -22968,3000:249,9,-4,0,0,0.597832 -22969,3004:141,41,-4,0,0,0.626773 -22970,3004:142,42,-4,0,0,0.675334 -22971,3004:143,43,-4,0,0,0.667195 -22972,3004:144,44,-4,0,0,0.654949 -22973,3004:245,45,-4,0,0,0.662777 -22974,3004:246,46,-4,0,0,0.66995 -22975,3004:247,47,-4,0,0,0.677089 -22976,3004:248,48,-4,0,0,0.680829 -22977,3004:249,49,-4,0,0,0.679085 -22978,3005:140,50,-4,0,0,0.676999 -22979,3005:141,51,-4,0,0,0.676302 -22980,3005:142,52,-4,0,0,0.674929 -22981,3005:143,53,-4,0,0,0.671516 -22982,3005:144,54,-4,0,0,0.666511 -22983,3005:245,55,-4,0,0,0.663581 -22984,3005:246,56,-4,0,0,0.661904 -22985,3005:247,57,-4,0,0,0.660362 -22986,3005:248,58,-4,0,0,0.660108 -22987,3005:249,59,-4,0,0,0.661214 -22988,3006:140,60,-4,0,0,0.662364 -22989,3006:141,61,-4,0,0,0.661996 -22990,3006:142,62,-4,0,0,0.660846 -22991,3006:143,63,-4,0,0,0.659855 -22992,3006:144,64,-4,0,0,0.659532 -22993,3006:245,65,-4,0,0,0.659994 -22994,3006:246,66,-4,0,0,0.659624 -22995,3006:247,67,-4,0,0,0.658909 -22996,3006:248,68,-4,0,0,0.65847 -22997,3006:249,69,-4,0,0,0.657985 -22998,3007:140,70,-4,0,0,0.657915 -22999,3007:141,71,-4,0,0,0.658331 -23000,3007:142,72,-4,0,0,0.659463 -23001,3007:144,74,-4,0,0,0.660339 -23002,3007:245,75,-4,0,0,0.660454 -23003,3007:246,76,-4,0,0,0.660386 -23004,3007:247,77,-4,0,0,0.660224 -23005,3007:248,78,-4,0,0,0.659486 -23006,3007:249,79,-4,0,0,0.658886 -23007,3008:140,80,-4,0,0,0.659279 -23008,3008:141,81,-4,0,0,0.659579 -23009,3008:142,82,-4,0,0,0.660408 -23010,3008:143,83,-4,0,0,0.662226 -23011,3008:144,84,-4,0,0,0.664521 -23012,3008:245,85,-4,0,0,0.666442 -23013,3008:246,86,-4,0,0,0.66813 -23014,3008:247,87,-4,0,0,0.669564 -23015,3008:248,88,-4,0,0,0.670358 -23016,3008:249,89,-4,0,0,0.670881 -23017,3009:140,90,-4,0,0,0.669427 -23018,3009:141,91,-4,0,0,0.66756 -23019,3009:142,92,-4,0,0,0.664933 -23020,3009:143,93,-4,0,0,0.663443 -23021,3009:144,94,-4,0,0,0.661882 -23022,3009:245,95,-4,0,0,0.6605 -23023,3009:246,96,-4,0,0,0.659832 -23024,3009:247,97,-4,0,0,0.660293 -23025,3009:248,98,-4,0,0,0.661329 -23026,3009:249,99,-4,0,0,0.663076 -23027,3010:140,100,-4,0,0,0.667879 -23028,3010:141,101,-4,0,0,0.669632 -23029,3010:247,107,-4,0,0,0.67432 -23030,3010:248,108,-4,0,0,0.676347 -23031,3010:249,109,-4,0,0,0.668472 -23032,3011:140,110,-4,0,0,0.676392 -23033,3011:247,117,-4,0,0,0.68603 -23034,3011:248,118,-4,0,0,0.674004 -23035,3011:249,119,-4,0,0,0.666305 -23036,3012:143,123,-4,0,0,0.686959 -23037,3012:144,124,-4,0,0,0.688746 -23038,3012:245,125,-4,0,0,0.690022 -23039,3012:246,126,-4,0,0,0.686893 -23040,3012:247,127,-4,0,0,0.666145 -23041,3012:248,128,-4,0,0,0.666579 -23042,3012:249,129,-4,0,0,0.660892 -23043,3013:140,130,-4,0,0,0.66264 -23044,3013:141,131,-4,0,0,0.66507 -23045,3013:142,132,-4,0,0,0.684812 -23046,3013:143,133,-4,0,0,0.69844 -23047,3013:245,135,-4,0,0,0.671062 -23048,3013:246,136,-4,0,0,0.678592 -23049,3014:141,141,-4,0,0,0.657128 -23050,3014:142,142,-4,0,0,0.663352 -23051,3014:143,143,-4,0,0,0.666784 -23052,3014:144,144,-4,0,0,0.66895 -23053,3014:245,145,-4,0,0,0.67113 -23054,3014:246,146,-4,0,0,0.673213 -23055,3014:247,147,-4,0,0,0.674816 -23056,3014:248,148,-4,0,0,0.674861 -23057,3014:249,149,-4,0,0,0.67628 -23058,3015:140,150,-4,0,0,0.678233 -23059,3015:141,151,-4,0,0,0.676819 -23060,3015:142,152,-4,0,0,0.676999 -23061,3015:143,153,-4,0,0,0.67646 -23062,3015:144,154,-4,0,0,0.675829 -23063,3015:245,155,-4,0,0,0.675897 -23064,3015:246,156,-4,0,0,0.676504 -23065,3015:247,157,-4,0,0,0.676909 -23066,3015:248,158,-4,0,0,0.676482 -23067,3015:249,159,-4,0,0,0.677493 -23068,3016:140,160,-4,0,0,0.677964 -23069,3016:141,161,-4,0,0,0.677583 -23070,3016:142,162,-4,0,0,0.678009 -23071,3016:143,163,-4,0,0,0.678054 -23072,3016:144,164,-4,0,0,0.678413 -23073,3016:245,165,-4,0,0,0.678211 -23074,3016:246,166,-4,0,0,0.678099 -23075,3016:247,167,-4,0,0,0.677336 -23076,3016:248,168,-4,0,0,0.676212 -23077,3016:249,169,-4,0,0,0.675739 -23078,3017:140,170,-4,0,0,0.674816 -23079,3017:141,171,-4,0,0,0.673642 -23080,3017:142,172,-4,0,0,0.67319 -23081,3017:143,173,-4,0,0,0.6731 -23082,3017:144,174,-4,0,0,0.67441 -23083,3017:245,175,-4,0,0,0.6745 -23084,3017:246,176,-4,0,0,0.674861 -23085,3017:247,177,-4,0,0,0.675379 -23086,3017:248,178,-4,0,0,0.675965 -23087,3017:249,179,-4,0,0,0.677089 -23088,3018:140,180,-4,0,0,0.678032 -23089,5018:130,-180,-3,0,0,0.677605 -23090,5017:239,-179,-3,0,0,0.67783 -23091,5017:238,-178,-3,0,0,0.677942 -23092,5017:237,-177,-3,0,0,0.677942 -23093,5017:236,-176,-3,0,0,0.677111 -23094,5017:235,-175,-3,0,0,0.676684 -23095,5017:134,-174,-3,0,0,0.6761 -23096,5017:133,-173,-3,0,0,0.674996 -23097,5017:132,-172,-3,0,0,0.673597 -23098,5017:131,-171,-3,0,0,0.67224 -23099,5017:130,-170,-3,0,0,0.670994 -23100,5016:239,-169,-3,0,0,0.670608 -23101,5016:238,-168,-3,0,0,0.668426 -23102,5016:237,-167,-3,0,0,0.665619 -23103,5016:236,-166,-3,0,0,0.66381 -23104,5016:235,-165,-3,0,0,0.662088 -23105,5016:134,-164,-3,0,0,0.660662 -23106,5016:133,-163,-3,0,0,0.658794 -23107,5016:132,-162,-3,0,0,0.65655 -23108,5016:131,-161,-3,0,0,0.655391 -23109,5016:130,-160,-3,0,0,0.654322 -23110,5015:239,-159,-3,0,0,0.652997 -23111,5015:238,-158,-3,0,0,0.651225 -23112,5015:237,-157,-3,0,0,0.649777 -23113,5015:236,-156,-3,0,0,0.648162 -23114,5015:235,-155,-3,0,0,0.648068 -23115,5015:134,-154,-3,0,0,0.64551 -23116,5015:133,-153,-3,0,0,0.643862 -23117,5015:132,-152,-3,0,0,0.642684 -23118,5015:131,-151,-3,0,0,0.640817 -23119,5015:130,-150,-3,0,0,0.637713 -23120,5014:239,-149,-3,0,0,0.634789 -23121,5014:238,-148,-3,0,0,0.632332 -23122,5014:237,-147,-3,0,0,0.6297 -23123,5014:236,-146,-3,0,0,0.628262 -23124,5014:235,-145,-3,0,0,0.627445 -23125,5014:134,-144,-3,0,0,0.62622 -23126,5014:133,-143,-3,0,0,0.623691 -23127,5014:132,-142,-3,0,0,0.620817 -23128,5014:131,-141,-3,0,0,0.618468 -23129,5014:130,-140,-3,0,0,0.616236 -23130,5013:239,-139,-3,0,0,0.614217 -23131,5013:238,-138,-3,0,0,0.612633 -23132,5013:237,-137,-3,0,0,0.611047 -23133,5013:236,-136,-3,0,0,0.608015 -23134,5013:235,-135,-3,0,0,0.605392 -23135,5013:134,-134,-3,0,0,0.603402 -23136,5013:133,-133,-3,0,0,0.601926 -23137,5013:132,-132,-3,0,0,0.600793 -23138,5013:131,-131,-3,0,0,0.59998 -23139,5013:130,-130,-3,0,0,0.598869 -23140,5012:239,-129,-3,0,0,0.598153 -23141,5012:238,-128,-3,0,0,0.597141 -23142,5012:237,-127,-3,0,0,0.595855 -23143,5012:236,-126,-3,0,0,0.593923 -23144,5012:235,-125,-3,0,0,0.591567 -23145,5012:134,-124,-3,0,0,0.589878 -23146,5012:133,-123,-3,0,0,0.588808 -23147,5012:132,-122,-3,0,0,0.58724 -23148,5012:131,-121,-3,0,0,0.585446 -23149,5012:130,-120,-3,0,0,0.583825 -23150,5011:239,-119,-3,0,0,0.582101 -23151,5011:238,-118,-3,0,0,0.580626 -23152,5011:237,-117,-3,0,0,0.578874 -23153,5011:236,-116,-3,0,0,0.575915 -23154,5011:235,-115,-3,0,0,0.573605 -23155,5011:134,-114,-3,0,0,0.571568 -23156,5011:133,-113,-3,0,0,0.570838 -23157,5011:132,-112,-3,0,0,0.570486 -23158,5011:131,-111,-3,0,0,0.569454 -23159,5011:130,-110,-3,0,0,0.568546 -23160,5010:239,-109,-3,0,0,0.567387 -23161,5010:238,-108,-3,0,0,0.566706 -23162,5010:237,-107,-3,0,0,0.565923 -23163,5010:236,-106,-3,0,0,0.565393 -23164,5010:235,-105,-3,0,0,0.56514 -23165,5010:134,-104,-3,0,0,0.565015 -23166,5010:133,-103,-3,0,0,0.564459 -23167,5010:132,-102,-3,0,0,0.563474 -23168,5010:131,-101,-3,0,0,0.562741 -23169,5010:130,-100,-3,0,0,0.561653 -23170,5009:239,-99,-3,0,0,0.56097 -23171,5009:238,-98,-3,0,0,0.560084 -23172,5009:237,-97,-3,0,0,0.559122 -23173,5009:236,-96,-3,0,0,0.559299 -23174,5009:235,-95,-3,0,0,0.559299 -23175,5009:134,-94,-3,0,0,0.558337 -23176,5009:133,-93,-3,0,0,0.555929 -23177,5009:132,-92,-3,0,0,0.551028 -23178,5009:131,-91,-3,0,0,0.567084 -23179,5009:130,-90,-3,0,0,0.565999 -23180,5008:239,-89,-3,0,0,0.571895 -23181,5008:238,-88,-3,0,0,0.57031 -23182,5008:237,-87,-3,0,0,0.56968 -23183,5008:236,-86,-3,0,0,0.56968 -23184,5008:235,-85,-3,0,0,0.571845 -23185,5008:134,-84,-3,0,0,0.57757 -23186,5008:133,-83,-3,0,0,0.581001 -23187,5008:132,-82,-3,0,0,0.580726 -23188,5008:131,-81,-3,0,0,0.584997 -23189,5004:236,-46,-3,0,0,0.638259 -23190,5004:235,-45,-3,0,0,0.628453 -23191,5004:134,-44,-3,0,0,0.622292 -23192,5004:133,-43,-3,0,0,0.623932 -23193,5004:132,-42,-3,0,0,0.62333 -23194,5004:131,-41,-3,0,0,0.622581 -23195,5004:130,-40,-3,0,0,0.62089 -23196,5003:239,-39,-3,0,0,0.620454 -23197,5003:238,-38,-3,0,0,0.620213 -23198,5003:237,-37,-3,0,0,0.619559 -23199,5003:236,-36,-3,0,0,0.61779 -23200,5003:235,-35,-3,0,0,0.616989 -23201,5003:134,-34,-3,0,0,0.615458 -23202,5003:133,-33,-3,0,0,0.613145 -23203,5003:132,-32,-3,0,0,0.611536 -23204,5003:131,-31,-3,0,0,0.609899 -23205,5003:130,-30,-3,0,0,0.608774 -23206,5002:239,-29,-3,0,0,0.608162 -23207,5002:238,-28,-3,0,0,0.606814 -23208,5002:237,-27,-3,0,0,0.605122 -23209,5002:236,-26,-3,0,0,0.60441 -23210,5002:235,-25,-3,0,0,0.603574 -23211,5002:134,-24,-3,0,0,0.602713 -23212,5002:133,-23,-3,0,0,0.601803 -23213,5002:132,-22,-3,0,0,0.601557 -23214,5002:131,-21,-3,0,0,0.60099 -23215,5002:130,-20,-3,0,0,0.600399 -23216,5001:239,-19,-3,0,0,0.601015 -23217,5001:238,-18,-3,0,0,0.602123 -23218,5001:237,-17,-3,0,0,0.603353 -23219,5001:236,-16,-3,0,0,0.60414 -23220,5001:235,-15,-3,0,0,0.605319 -23221,5001:134,-14,-3,0,0,0.607035 -23222,5001:133,-13,-3,0,0,0.608847 -23223,5001:132,-12,-3,0,0,0.611072 -23224,5001:131,-11,-3,0,0,0.61429 -23225,5001:130,-10,-3,0,0,0.616843 -23226,5000:239,-9,-3,0,0,0.618105 -23227,5000:238,-8,-3,0,0,0.618735 -23228,5000:237,-7,-3,0,0,0.62031 -23229,5000:236,-6,-3,0,0,0.622436 -23230,5000:235,-5,-3,0,0,0.625402 -23231,5000:134,-4,-3,0,0,0.627614 -23232,5000:133,-3,-3,0,0,0.629461 -23233,5000:132,-2,-3,0,0,0.631017 -23234,5000:131,-1,-3,0,0,0.632571 -23235,3000:131,0,-3,0,0,0.632881 -23236,3000:131,1,-3,0,0,0.632069 -23237,3000:132,2,-3,0,0,0.630587 -23238,3000:133,3,-3,0,0,0.628598 -23239,3000:134,4,-3,0,0,0.626436 -23240,3000:235,5,-3,0,0,0.62427 -23241,3000:236,6,-3,0,0,0.623523 -23242,3000:237,7,-3,0,0,0.6248 -23243,3000:238,8,-3,0,0,0.626532 -23244,3004:132,42,-3,0,0,0.6087 -23245,3004:133,43,-3,0,0,0.654136 -23246,3004:134,44,-3,0,0,0.645533 -23247,3004:235,45,-3,0,0,0.645039 -23248,3004:236,46,-3,0,0,0.650992 -23249,3004:237,47,-3,0,0,0.653671 -23250,3004:238,48,-3,0,0,0.649426 -23251,3004:239,49,-3,0,0,0.651762 -23252,3005:130,50,-3,0,0,0.655947 -23253,3005:131,51,-3,0,0,0.672761 -23254,3005:132,52,-3,0,0,0.6761 -23255,3005:133,53,-3,0,0,0.676886 -23256,3005:134,54,-3,0,0,0.673552 -23257,3005:235,55,-3,0,0,0.667833 -23258,3005:236,56,-3,0,0,0.664681 -23259,3005:237,57,-3,0,0,0.664062 -23260,3005:238,58,-3,0,0,0.66287 -23261,3005:239,59,-3,0,0,0.660731 -23262,3006:130,60,-3,0,0,0.659232 -23263,3006:131,61,-3,0,0,0.658655 -23264,3006:132,62,-3,0,0,0.658747 -23265,3006:133,63,-3,0,0,0.658932 -23266,3006:134,64,-3,0,0,0.658216 -23267,3006:235,65,-3,0,0,0.657938 -23268,3006:236,66,-3,0,0,0.658239 -23269,3006:237,67,-3,0,0,0.659024 -23270,3006:238,68,-3,0,0,0.660201 -23271,3006:239,69,-3,0,0,0.661237 -23272,3007:130,70,-3,0,0,0.662456 -23273,3007:131,71,-3,0,0,0.663191 -23274,3007:132,72,-3,0,0,0.663627 -23275,3007:134,74,-3,0,0,0.663993 -23276,3007:235,75,-3,0,0,0.663604 -23277,3007:236,76,-3,0,0,0.663489 -23278,3007:237,77,-3,0,0,0.663282 -23279,3007:238,78,-3,0,0,0.662249 -23280,3007:239,79,-3,0,0,0.661352 -23281,3008:130,80,-3,0,0,0.66057 -23282,3008:131,81,-3,0,0,0.660478 -23283,3008:132,82,-3,0,0,0.660777 -23284,3008:133,83,-3,0,0,0.660961 -23285,3008:134,84,-3,0,0,0.663007 -23286,3008:235,85,-3,0,0,0.665459 -23287,3008:236,86,-3,0,0,0.666716 -23288,3008:237,87,-3,0,0,0.667765 -23289,3008:238,88,-3,0,0,0.669723 -23290,3008:239,89,-3,0,0,0.670495 -23291,3009:130,90,-3,0,0,0.668381 -23292,3009:131,91,-3,0,0,0.666602 -23293,3009:132,92,-3,0,0,0.664383 -23294,3009:133,93,-3,0,0,0.662088 -23295,3009:134,94,-3,0,0,0.660938 -23296,3009:235,95,-3,0,0,0.660316 -23297,3009:236,96,-3,0,0,0.660247 -23298,3009:237,97,-3,0,0,0.661767 -23299,3009:238,98,-3,0,0,0.66342 -23300,3010:130,100,-3,0,0,0.670041 -23301,3010:235,105,-3,0,0,0.679487 -23302,3010:236,106,-3,0,0,0.673507 -23303,3010:237,107,-3,0,0,0.66057 -23304,3010:238,108,-3,0,0,0.66126 -23305,3010:239,109,-3,0,0,0.670608 -23306,3011:238,118,-3,0,0,0.657314 -23307,3011:239,119,-3,0,0,0.659002 -23308,3012:131,121,-3,0,0,0.672784 -23309,3012:134,124,-3,0,0,0.672964 -23310,3012:235,125,-3,0,0,0.680762 -23311,3012:236,126,-3,0,0,0.683724 -23312,3012:237,127,-3,0,0,0.677672 -23313,3012:238,128,-3,0,0,0.684013 -23314,3012:239,129,-3,0,0,0.669086 -23315,3013:130,130,-3,0,0,0.667833 -23316,3013:235,135,-3,0,0,0.673755 -23317,3013:236,136,-3,0,0,0.674839 -23318,3013:237,137,-3,0,0,0.668745 -23319,3013:238,138,-3,0,0,0.665161 -23320,3013:239,139,-3,0,0,0.665825 -23321,3014:130,140,-3,0,0,0.666076 -23322,3014:131,141,-3,0,0,0.667925 -23323,3014:132,142,-3,0,0,0.6697 -23324,3014:133,143,-3,0,0,0.670948 -23325,3014:134,144,-3,0,0,0.67215 -23326,3014:235,145,-3,0,0,0.674184 -23327,3014:236,146,-3,0,0,0.675762 -23328,3014:237,147,-3,0,0,0.676932 -23329,3014:238,148,-3,0,0,0.67765 -23330,3014:239,149,-3,0,0,0.678503 -23331,3015:130,150,-3,0,0,0.679241 -23332,3015:131,151,-3,0,0,0.679129 -23333,3015:132,152,-3,0,0,0.678592 -23334,3015:133,153,-3,0,0,0.678301 -23335,3015:134,154,-3,0,0,0.67792 -23336,3015:235,155,-3,0,0,0.677359 -23337,3015:236,156,-3,0,0,0.676684 -23338,3015:237,157,-3,0,0,0.676167 -23339,3015:238,158,-3,0,0,0.676662 -23340,3015:239,159,-3,0,0,0.677538 -23341,3016:130,160,-3,0,0,0.678413 -23342,3016:131,161,-3,0,0,0.678749 -23343,3016:132,162,-3,0,0,0.678771 -23344,3016:133,163,-3,0,0,0.679175 -23345,3016:134,164,-3,0,0,0.679644 -23346,3016:235,165,-3,0,0,0.67989 -23347,3016:236,166,-3,0,0,0.680025 -23348,3016:237,167,-3,0,0,0.679331 -23349,3016:238,168,-3,0,0,0.67857 -23350,3016:239,169,-3,0,0,0.678122 -23351,3017:130,170,-3,0,0,0.677762 -23352,3017:131,171,-3,0,0,0.676954 -23353,3017:132,172,-3,0,0,0.676572 -23354,3017:133,173,-3,0,0,0.676909 -23355,3017:134,174,-3,0,0,0.677089 -23356,3017:235,175,-3,0,0,0.677313 -23357,3017:236,176,-3,0,0,0.677381 -23358,3017:237,177,-3,0,0,0.67747 -23359,3017:238,178,-3,0,0,0.677336 -23360,3017:239,179,-3,0,0,0.677583 -23361,3018:130,180,-3,0,0,0.677605 -23362,5018:120,-180,-2,0,0,0.677538 -23363,5017:229,-179,-2,0,0,0.677268 -23364,5017:228,-178,-2,0,0,0.676886 -23365,5017:227,-177,-2,0,0,0.675717 -23366,5017:226,-176,-2,0,0,0.67432 -23367,5017:225,-175,-2,0,0,0.674116 -23368,5017:124,-174,-2,0,0,0.672964 -23369,5017:123,-173,-2,0,0,0.670858 -23370,5017:122,-172,-2,0,0,0.668859 -23371,5017:121,-171,-2,0,0,0.667264 -23372,5017:120,-170,-2,0,0,0.66587 -23373,5016:229,-169,-2,0,0,0.664704 -23374,5016:228,-168,-2,0,0,0.663879 -23375,5016:227,-167,-2,0,0,0.662915 -23376,5016:226,-166,-2,0,0,0.660938 -23377,5016:225,-165,-2,0,0,0.657198 -23378,5016:124,-164,-2,0,0,0.654415 -23379,5016:123,-163,-2,0,0,0.653252 -23380,5016:122,-162,-2,0,0,0.652111 -23381,5016:121,-161,-2,0,0,0.650758 -23382,5016:120,-160,-2,0,0,0.650244 -23383,5015:229,-159,-2,0,0,0.649964 -23384,5015:228,-158,-2,0,0,0.649426 -23385,5015:227,-157,-2,0,0,0.647435 -23386,5015:226,-156,-2,0,0,0.647107 -23387,5015:225,-155,-2,0,0,0.646872 -23388,5015:124,-154,-2,0,0,0.646215 -23389,5015:123,-153,-2,0,0,0.644522 -23390,5015:122,-152,-2,0,0,0.641668 -23391,5015:121,-151,-2,0,0,0.63852 -23392,5015:120,-150,-2,0,0,0.636002 -23393,5014:229,-149,-2,0,0,0.633621 -23394,5014:228,-148,-2,0,0,0.630538 -23395,5014:227,-147,-2,0,0,0.62831 -23396,5014:226,-146,-2,0,0,0.626917 -23397,5014:225,-145,-2,0,0,0.625306 -23398,5014:124,-144,-2,0,0,0.624004 -23399,5014:123,-143,-2,0,0,0.622002 -23400,5014:122,-142,-2,0,0,0.620503 -23401,5014:121,-141,-2,0,0,0.619341 -23402,5014:120,-140,-2,0,0,0.617717 -23403,5013:229,-139,-2,0,0,0.618202 -23404,5013:228,-138,-2,0,0,0.617425 -23405,5013:227,-137,-2,0,0,0.614972 -23406,5013:226,-136,-2,0,0,0.611974 -23407,5013:225,-135,-2,0,0,0.610119 -23408,5013:124,-134,-2,0,0,0.608945 -23409,5013:123,-133,-2,0,0,0.60804 -23410,5013:122,-132,-2,0,0,0.606128 -23411,5013:121,-131,-2,0,0,0.601803 -23412,5013:120,-130,-2,0,0,0.600201 -23413,5012:229,-129,-2,0,0,0.600325 -23414,5012:228,-128,-2,0,0,0.59956 -23415,5012:227,-127,-2,0,0,0.598055 -23416,5012:226,-126,-2,0,0,0.596794 -23417,5012:225,-125,-2,0,0,0.5962 -23418,5012:124,-124,-2,0,0,0.594344 -23419,5012:123,-123,-2,0,0,0.591095 -23420,5012:122,-122,-2,0,0,0.588261 -23421,5012:121,-121,-2,0,0,0.587141 -23422,5012:120,-120,-2,0,0,0.586493 -23423,5011:229,-119,-2,0,0,0.585621 -23424,5011:228,-118,-2,0,0,0.581951 -23425,5011:227,-117,-2,0,0,0.58055 -23426,5011:226,-116,-2,0,0,0.580325 -23427,5011:225,-115,-2,0,0,0.579324 -23428,5011:124,-114,-2,0,0,0.57772 -23429,5011:123,-113,-2,0,0,0.577596 -23430,5011:122,-112,-2,0,0,0.578272 -23431,5011:121,-111,-2,0,0,0.579525 -23432,5011:120,-110,-2,0,0,0.581576 -23433,5010:229,-109,-2,0,0,0.583825 -23434,5010:228,-108,-2,0,0,0.583799 -23435,5010:227,-107,-2,0,0,0.583799 -23436,5010:226,-106,-2,0,0,0.584499 -23437,5010:225,-105,-2,0,0,0.585048 -23438,5010:124,-104,-2,0,0,0.584823 -23439,5010:123,-103,-2,0,0,0.584324 -23440,5010:122,-102,-2,0,0,0.58305 -23441,5010:121,-101,-2,0,0,0.580576 -23442,5010:120,-100,-2,0,0,0.579324 -23443,5009:229,-99,-2,0,0,0.5797 -23444,5009:228,-98,-2,0,0,0.58 -23445,5009:227,-97,-2,0,0,0.581726 -23446,5009:226,-96,-2,0,0,0.580726 -23447,5009:225,-95,-2,0,0,0.582825 -23448,5009:124,-94,-2,0,0,0.578548 -23449,5009:123,-93,-2,0,0,0.570108 -23450,5009:122,-92,-2,0,0,0.560565 -23451,5009:121,-91,-2,0,0,0.585347 -23452,5009:120,-90,-2,0,0,0.589232 -23453,5008:229,-89,-2,0,0,0.591791 -23454,5008:228,-88,-2,0,0,0.595037 -23455,5008:227,-87,-2,0,0,0.597091 -23456,5008:226,-86,-2,0,0,0.597511 -23457,5008:225,-85,-2,0,0,0.596448 -23458,5008:124,-84,-2,0,0,0.596967 -23459,5008:123,-83,-2,0,0,0.598425 -23460,5008:122,-82,-2,0,0,0.598647 -23461,5008:121,-81,-2,0,0,0.603722 -23462,5005:120,-50,-2,0,0,0.639965 -23463,5004:229,-49,-2,0,0,0.638188 -23464,5004:228,-48,-2,0,0,0.635146 -23465,5004:227,-47,-2,0,0,0.623547 -23466,5004:226,-46,-2,0,0,0.622002 -23467,5004:225,-45,-2,0,0,0.624655 -23468,5004:124,-44,-2,0,0,0.624318 -23469,5004:123,-43,-2,0,0,0.624872 -23470,5004:122,-42,-2,0,0,0.626171 -23471,5004:121,-41,-2,0,0,0.627253 -23472,5004:120,-40,-2,0,0,0.626917 -23473,5003:229,-39,-2,0,0,0.625065 -23474,5003:228,-38,-2,0,0,0.621374 -23475,5003:227,-37,-2,0,0,0.618978 -23476,5003:226,-36,-2,0,0,0.617256 -23477,5003:225,-35,-2,0,0,0.61609 -23478,5003:124,-34,-2,0,0,0.614387 -23479,5003:123,-33,-2,0,0,0.613267 -23480,5003:122,-32,-2,0,0,0.613681 -23481,5003:121,-31,-2,0,0,0.613681 -23482,5003:120,-30,-2,0,0,0.610583 -23483,5002:229,-29,-2,0,0,0.607501 -23484,5002:228,-28,-2,0,0,0.607844 -23485,5002:227,-27,-2,0,0,0.606374 -23486,5002:226,-26,-2,0,0,0.606545 -23487,5002:225,-25,-2,0,0,0.605784 -23488,5002:124,-24,-2,0,0,0.603894 -23489,5002:123,-23,-2,0,0,0.604729 -23490,5002:122,-22,-2,0,0,0.607109 -23491,5002:121,-21,-2,0,0,0.609361 -23492,5002:120,-20,-2,0,0,0.61134 -23493,5001:229,-19,-2,0,0,0.613706 -23494,5001:228,-18,-2,0,0,0.615555 -23495,5001:227,-17,-2,0,0,0.617256 -23496,5001:226,-16,-2,0,0,0.618566 -23497,5001:225,-15,-2,0,0,0.620721 -23498,5001:124,-14,-2,0,0,0.623715 -23499,5001:123,-13,-2,0,0,0.626869 -23500,5001:122,-12,-2,0,0,0.62994 -23501,5001:121,-11,-2,0,0,0.632857 -23502,5001:120,-10,-2,0,0,0.635074 -23503,5000:229,-9,-2,0,0,0.63655 -23504,5000:228,-8,-2,0,0,0.637832 -23505,5000:227,-7,-2,0,0,0.638781 -23506,5000:226,-6,-2,0,0,0.639823 -23507,5000:225,-5,-2,0,0,0.640675 -23508,5000:124,-4,-2,0,0,0.641904 -23509,5000:123,-3,-2,0,0,0.642802 -23510,5000:122,-2,-2,0,0,0.64299 -23511,5000:121,-1,-2,0,0,0.643438 -23512,3000:121,0,-2,0,0,0.644239 -23513,3000:121,1,-2,0,0,0.643838 -23514,3000:122,2,-2,0,0,0.643108 -23515,3000:123,3,-2,0,0,0.642377 -23516,3000:124,4,-2,0,0,0.642377 -23517,3000:225,5,-2,0,0,0.643202 -23518,3000:226,6,-2,0,0,0.64431 -23519,3000:227,7,-2,0,0,0.646121 -23520,3000:228,8,-2,0,0,0.646684 -23521,3000:229,9,-2,0,0,0.646872 -23522,3004:124,44,-2,0,0,0.640013 -23523,3004:225,45,-2,0,0,0.628861 -23524,3004:226,46,-2,0,0,0.633215 -23525,3004:227,47,-2,0,0,0.633191 -23526,3004:228,48,-2,0,0,0.633096 -23527,3004:229,49,-2,0,0,0.641502 -23528,3005:120,50,-2,0,0,0.64863 -23529,3005:121,51,-2,0,0,0.659002 -23530,3005:122,52,-2,0,0,0.662938 -23531,3005:123,53,-2,0,0,0.662134 -23532,3005:124,54,-2,0,0,0.668472 -23533,3005:225,55,-2,0,0,0.6745 -23534,3005:226,56,-2,0,0,0.675289 -23535,3005:227,57,-2,0,0,0.670676 -23536,3005:228,58,-2,0,0,0.661583 -23537,3005:229,59,-2,0,0,0.657708 -23538,3006:120,60,-2,0,0,0.653159 -23539,3006:121,61,-2,0,0,0.650478 -23540,3006:122,62,-2,0,0,0.649449 -23541,3006:123,63,-2,0,0,0.651015 -23542,3006:124,64,-2,0,0,0.652694 -23543,3006:225,65,-2,0,0,0.654252 -23544,3006:226,66,-2,0,0,0.656016 -23545,3006:227,67,-2,0,0,0.657476 -23546,3006:228,68,-2,0,0,0.658285 -23547,3006:229,69,-2,0,0,0.658563 -23548,3007:120,70,-2,0,0,0.658909 -23549,3007:121,71,-2,0,0,0.660523 -23550,3007:122,72,-2,0,0,0.662364 -23551,3007:124,74,-2,0,0,0.662479 -23552,3007:225,75,-2,0,0,0.664841 -23553,3007:226,76,-2,0,0,0.66507 -23554,3007:227,77,-2,0,0,0.664772 -23555,3007:228,78,-2,0,0,0.664314 -23556,3007:229,79,-2,0,0,0.663833 -23557,3008:120,80,-2,0,0,0.664108 -23558,3008:121,81,-2,0,0,0.664566 -23559,3008:122,82,-2,0,0,0.664704 -23560,3008:123,83,-2,0,0,0.664544 -23561,3008:124,84,-2,0,0,0.664498 -23562,3008:225,85,-2,0,0,0.664795 -23563,3008:226,86,-2,0,0,0.66507 -23564,3008:227,87,-2,0,0,0.665962 -23565,3008:228,88,-2,0,0,0.666488 -23566,3008:229,89,-2,0,0,0.667195 -23567,3009:120,90,-2,0,0,0.668813 -23568,3009:121,91,-2,0,0,0.669313 -23569,3009:122,92,-2,0,0,0.665596 -23570,3009:123,93,-2,0,0,0.662111 -23571,3009:124,94,-2,0,0,0.659394 -23572,3009:225,95,-2,0,0,0.659163 -23573,3009:226,96,-2,0,0,0.660408 -23574,3009:227,97,-2,0,0,0.662938 -23575,3009:228,98,-2,0,0,0.66683 -23576,3009:229,99,-2,0,0,0.673032 -23577,3010:124,104,-2,0,0,0.67371 -23578,3010:225,105,-2,0,0,0.661536 -23579,3010:226,106,-2,0,0,0.652088 -23580,3010:227,107,-2,0,0,0.655831 -23581,3010:228,108,-2,0,0,0.665917 -23582,3010:229,109,-2,0,0,0.676775 -23583,3011:228,118,-2,0,0,0.647575 -23584,3011:229,119,-2,0,0,0.649683 -23585,3012:120,120,-2,0,0,0.651552 -23586,3012:225,125,-2,0,0,0.685189 -23587,3012:226,126,-2,0,0,0.676617 -23588,3012:227,127,-2,0,0,0.671175 -23589,3012:229,129,-2,0,0,0.677268 -23590,3013:120,130,-2,0,0,0.669814 -23591,3013:121,131,-2,0,0,0.674184 -23592,3013:122,132,-2,0,0,0.672648 -23593,3013:123,133,-2,0,0,0.673122 -23594,3013:124,134,-2,0,0,0.673145 -23595,3013:225,135,-2,0,0,0.671402 -23596,3013:226,136,-2,0,0,0.66854 -23597,3013:227,137,-2,0,0,0.669609 -23598,3013:228,138,-2,0,0,0.668472 -23599,3013:229,139,-2,0,0,0.667537 -23600,3014:120,140,-2,0,0,0.667856 -23601,3014:121,141,-2,0,0,0.671175 -23602,3014:122,142,-2,0,0,0.671243 -23603,3014:123,143,-2,0,0,0.671538 -23604,3014:124,144,-2,0,0,0.673213 -23605,3014:225,145,-2,0,0,0.674726 -23606,3014:226,146,-2,0,0,0.676617 -23607,3014:227,147,-2,0,0,0.678032 -23608,3014:228,148,-2,0,0,0.678032 -23609,3014:229,149,-2,0,0,0.678189 -23610,3015:120,150,-2,0,0,0.678323 -23611,3015:121,151,-2,0,0,0.678615 -23612,3015:122,152,-2,0,0,0.678457 -23613,3015:123,153,-2,0,0,0.677605 -23614,3015:124,154,-2,0,0,0.676504 -23615,3015:225,155,-2,0,0,0.676302 -23616,3015:226,156,-2,0,0,0.676775 -23617,3015:227,157,-2,0,0,0.676842 -23618,3015:228,158,-2,0,0,0.677067 -23619,3015:229,159,-2,0,0,0.677583 -23620,3016:120,160,-2,0,0,0.678122 -23621,3016:121,161,-2,0,0,0.678143 -23622,3016:122,162,-2,0,0,0.678143 -23623,3016:123,163,-2,0,0,0.678524 -23624,3016:124,164,-2,0,0,0.678928 -23625,3016:225,165,-2,0,0,0.678816 -23626,3016:226,166,-2,0,0,0.678503 -23627,3016:227,167,-2,0,0,0.678435 -23628,3016:228,168,-2,0,0,0.67857 -23629,3016:229,169,-2,0,0,0.67857 -23630,3017:120,170,-2,0,0,0.678861 -23631,3017:121,171,-2,0,0,0.678995 -23632,3017:122,172,-2,0,0,0.678906 -23633,3017:123,173,-2,0,0,0.678099 -23634,3017:124,174,-2,0,0,0.677672 -23635,3017:225,175,-2,0,0,0.677762 -23636,3017:226,176,-2,0,0,0.67774 -23637,3017:227,177,-2,0,0,0.678143 -23638,3017:228,178,-2,0,0,0.678233 -23639,3017:229,179,-2,0,0,0.67792 -23640,3018:120,180,-2,0,0,0.677538 -23641,5018:110,-180,-1,0,0,0.675672 -23642,5017:219,-179,-1,0,0,0.674636 -23643,5017:218,-178,-1,0,0,0.672625 -23644,5017:217,-177,-1,0,0,0.672602 -23645,5017:216,-176,-1,0,0,0.672286 -23646,5017:215,-175,-1,0,0,0.671788 -23647,5017:114,-174,-1,0,0,0.67079 -23648,5017:113,-173,-1,0,0,0.669313 -23649,5017:112,-172,-1,0,0,0.666465 -23650,5017:111,-171,-1,0,0,0.663948 -23651,5017:110,-170,-1,0,0,0.661974 -23652,5016:219,-169,-1,0,0,0.659809 -23653,5016:218,-168,-1,0,0,0.661306 -23654,5016:217,-167,-1,0,0,0.661468 -23655,5016:216,-166,-1,0,0,0.658262 -23656,5016:215,-165,-1,0,0,0.655205 -23657,5016:114,-164,-1,0,0,0.655065 -23658,5016:113,-163,-1,0,0,0.656016 -23659,5016:112,-162,-1,0,0,0.656457 -23660,5016:111,-161,-1,0,0,0.65481 -23661,5016:110,-160,-1,0,0,0.650945 -23662,5015:219,-159,-1,0,0,0.650571 -23663,5015:218,-158,-1,0,0,0.652997 -23664,5015:217,-157,-1,0,0,0.654601 -23665,5015:216,-156,-1,0,0,0.65481 -23666,5015:215,-155,-1,0,0,0.654787 -23667,5015:114,-154,-1,0,0,0.651482 -23668,5015:113,-153,-1,0,0,0.647575 -23669,5015:112,-152,-1,0,0,0.643626 -23670,5015:111,-151,-1,0,0,0.643344 -23671,5015:110,-150,-1,0,0,0.641739 -23672,5014:219,-149,-1,0,0,0.636669 -23673,5014:218,-148,-1,0,0,0.634169 -23674,5014:217,-147,-1,0,0,0.633597 -23675,5014:216,-146,-1,0,0,0.632547 -23676,5014:215,-145,-1,0,0,0.633931 -23677,5014:114,-144,-1,0,0,0.634526 -23678,5014:113,-143,-1,0,0,0.633478 -23679,5014:112,-142,-1,0,0,0.631041 -23680,5014:111,-141,-1,0,0,0.628981 -23681,5014:110,-140,-1,0,0,0.627182 -23682,5013:219,-139,-1,0,0,0.627782 -23683,5013:218,-138,-1,0,0,0.629101 -23684,5013:217,-137,-1,0,0,0.627686 -23685,5013:216,-136,-1,0,0,0.624968 -23686,5013:215,-135,-1,0,0,0.62106 -23687,5013:114,-134,-1,0,0,0.6206 -23688,5013:113,-133,-1,0,0,0.621156 -23689,5013:112,-132,-1,0,0,0.622799 -23690,5013:111,-131,-1,0,0,0.62333 -23691,5013:110,-130,-1,0,0,0.618663 -23692,5012:219,-129,-1,0,0,0.616065 -23693,5012:218,-128,-1,0,0,0.613608 -23694,5012:217,-127,-1,0,0,0.614655 -23695,5012:216,-126,-1,0,0,0.613535 -23696,5012:215,-125,-1,0,0,0.611047 -23697,5012:114,-124,-1,0,0,0.611779 -23698,5012:113,-123,-1,0,0,0.610168 -23699,5012:112,-122,-1,0,0,0.604065 -23700,5012:111,-121,-1,0,0,0.600028 -23701,5012:110,-120,-1,0,0,0.598326 -23702,5011:219,-119,-1,0,0,0.60232 -23703,5011:218,-118,-1,0,0,0.605637 -23704,5011:217,-117,-1,0,0,0.606374 -23705,5011:216,-116,-1,0,0,0.605515 -23706,5011:215,-115,-1,0,0,0.602935 -23707,5011:114,-114,-1,0,0,0.601581 -23708,5011:113,-113,-1,0,0,0.60232 -23709,5011:112,-112,-1,0,0,0.602689 -23710,5011:111,-111,-1,0,0,0.604901 -23711,5011:110,-110,-1,0,0,0.608015 -23712,5010:219,-109,-1,0,0,0.609483 -23713,5010:218,-108,-1,0,0,0.61051 -23714,5010:217,-107,-1,0,0,0.61134 -23715,5010:216,-106,-1,0,0,0.61156 -23716,5010:215,-105,-1,0,0,0.611633 -23717,5010:114,-104,-1,0,0,0.611438 -23718,5010:113,-103,-1,0,0,0.611316 -23719,5010:112,-102,-1,0,0,0.610949 -23720,5010:111,-101,-1,0,0,0.610681 -23721,5010:110,-100,-1,0,0,0.611877 -23722,5009:219,-99,-1,0,0,0.61334 -23723,5009:218,-98,-1,0,0,0.614022 -23724,5009:217,-97,-1,0,0,0.614972 -23725,5009:216,-96,-1,0,0,0.615677 -23726,5009:215,-95,-1,0,0,0.616017 -23727,5009:114,-94,-1,0,0,0.614169 -23728,5009:113,-93,-1,0,0,0.610779 -23729,5009:112,-92,-1,0,0,0.611974 -23730,5009:111,-91,-1,0,0,0.6139 -23731,5009:110,-90,-1,0,0,0.617159 -23732,5008:219,-89,-1,0,0,0.619293 -23733,5008:218,-88,-1,0,0,0.62014 -23734,5008:217,-87,-1,0,0,0.619075 -23735,5008:216,-86,-1,0,0,0.616236 -23736,5008:215,-85,-1,0,0,0.61312 -23737,5008:114,-84,-1,0,0,0.611096 -23738,5008:113,-83,-1,0,0,0.61051 -23739,5008:112,-82,-1,0,0,0.609263 -23740,5008:111,-81,-1,0,0,0.61073 -23741,5008:110,-80,-1,0,0,0.613852 -23742,5007:219,-79,-1,0,0,0.619946 -23743,5005:110,-50,-1,0,0,0.639232 -23744,5004:219,-49,-1,0,0,0.633621 -23745,5004:218,-48,-1,0,0,0.620865 -23746,5004:217,-47,-1,0,0,0.624246 -23747,5004:216,-46,-1,0,0,0.625907 -23748,5004:215,-45,-1,0,0,0.628909 -23749,5004:114,-44,-1,0,0,0.630587 -23750,5004:113,-43,-1,0,0,0.631424 -23751,5004:112,-42,-1,0,0,0.631902 -23752,5004:111,-41,-1,0,0,0.631017 -23753,5004:110,-40,-1,0,0,0.629581 -23754,5003:219,-39,-1,0,0,0.626893 -23755,5003:218,-38,-1,0,0,0.624125 -23756,5003:217,-37,-1,0,0,0.622171 -23757,5003:216,-36,-1,0,0,0.621397 -23758,5003:215,-35,-1,0,0,0.620986 -23759,5003:114,-34,-1,0,0,0.620865 -23760,5003:113,-33,-1,0,0,0.620842 -23761,5003:112,-32,-1,0,0,0.62118 -23762,5003:111,-31,-1,0,0,0.621374 -23763,5003:110,-30,-1,0,0,0.623836 -23764,5002:219,-29,-1,0,0,0.625378 -23765,5002:218,-28,-1,0,0,0.625546 -23766,5002:217,-27,-1,0,0,0.626171 -23767,5002:216,-26,-1,0,0,0.627421 -23768,5002:215,-25,-1,0,0,0.627374 -23769,5002:114,-24,-1,0,0,0.627974 -23770,5002:113,-23,-1,0,0,0.627902 -23771,5002:112,-22,-1,0,0,0.628382 -23772,5002:111,-21,-1,0,0,0.629772 -23773,5002:110,-20,-1,0,0,0.630299 -23774,5001:219,-19,-1,0,0,0.632427 -23775,5001:218,-18,-1,0,0,0.633955 -23776,5001:217,-17,-1,0,0,0.634741 -23777,5001:216,-16,-1,0,0,0.636431 -23778,5001:215,-15,-1,0,0,0.638662 -23779,5001:114,-14,-1,0,0,0.640817 -23780,5001:113,-13,-1,0,0,0.643509 -23781,5001:112,-12,-1,0,0,0.64652 -23782,5001:111,-11,-1,0,0,0.649473 -23783,5001:110,-10,-1,0,0,0.652228 -23784,5000:219,-9,-1,0,0,0.654438 -23785,5000:218,-8,-1,0,0,0.656016 -23786,5000:217,-7,-1,0,0,0.657314 -23787,5000:216,-6,-1,0,0,0.658355 -23788,5000:215,-5,-1,0,0,0.659324 -23789,5000:114,-4,-1,0,0,0.659647 -23790,5000:113,-3,-1,0,0,0.659301 -23791,5000:112,-2,-1,0,0,0.659002 -23792,5000:111,-1,-1,0,0,0.658239 -23793,3000:111,0,-1,0,0,0.658101 -23794,3000:111,1,-1,0,0,0.657545 -23795,3000:112,2,-1,0,0,0.658401 -23796,3000:113,3,-1,0,0,0.657915 -23797,3000:114,4,-1,0,0,0.657036 -23798,3000:215,5,-1,0,0,0.656248 -23799,3000:216,6,-1,0,0,0.65481 -23800,3000:217,7,-1,0,0,0.655854 -23801,3000:218,8,-1,0,0,0.657106 -23802,3000:219,9,-1,0,0,0.656016 -23803,3004:216,46,-1,0,0,0.615507 -23804,3004:217,47,-1,0,0,0.631232 -23805,3004:218,48,-1,0,0,0.636288 -23806,3004:219,49,-1,0,0,0.640273 -23807,3005:110,50,-1,0,0,0.64405 -23808,3005:111,51,-1,0,0,0.650151 -23809,3005:112,52,-1,0,0,0.651995 -23810,3005:113,53,-1,0,0,0.661306 -23811,3005:114,54,-1,0,0,0.663627 -23812,3005:215,55,-1,0,0,0.660016 -23813,3005:216,56,-1,0,0,0.662548 -23814,3005:217,57,-1,0,0,0.666967 -23815,3005:218,58,-1,0,0,0.659279 -23816,3005:219,59,-1,0,0,0.651482 -23817,3006:110,60,-1,0,0,0.649145 -23818,3006:111,61,-1,0,0,0.648958 -23819,3006:112,62,-1,0,0,0.645933 -23820,3006:113,63,-1,0,0,0.646473 -23821,3006:114,64,-1,0,0,0.648021 -23822,3006:215,65,-1,0,0,0.650034 -23823,3006:216,66,-1,0,0,0.653438 -23824,3006:217,67,-1,0,0,0.656526 -23825,3006:218,68,-1,0,0,0.659071 -23826,3006:219,69,-1,0,0,0.661007 -23827,3007:110,70,-1,0,0,0.66287 -23828,3007:111,71,-1,0,0,0.663397 -23829,3007:112,72,-1,0,0,0.662548 -23830,3007:114,74,-1,0,0,0.662938 -23831,3007:215,75,-1,0,0,0.66436 -23832,3007:216,76,-1,0,0,0.663948 -23833,3007:217,77,-1,0,0,0.664338 -23834,3007:218,78,-1,0,0,0.664727 -23835,3007:219,79,-1,0,0,0.663214 -23836,3008:110,80,-1,0,0,0.662685 -23837,3008:111,81,-1,0,0,0.662042 -23838,3008:112,82,-1,0,0,0.662111 -23839,3008:113,83,-1,0,0,0.663168 -23840,3008:114,84,-1,0,0,0.66397 -23841,3008:215,85,-1,0,0,0.664887 -23842,3008:216,86,-1,0,0,0.664978 -23843,3008:217,87,-1,0,0,0.664841 -23844,3008:218,88,-1,0,0,0.663993 -23845,3008:219,89,-1,0,0,0.664291 -23846,3009:110,90,-1,0,0,0.665231 -23847,3009:111,91,-1,0,0,0.665001 -23848,3009:112,92,-1,0,0,0.661996 -23849,3009:113,93,-1,0,0,0.662066 -23850,3009:114,94,-1,0,0,0.661652 -23851,3009:215,95,-1,0,0,0.662962 -23852,3009:216,96,-1,0,0,0.666259 -23853,3009:217,97,-1,0,0,0.669495 -23854,3009:218,98,-1,0,0,0.671425 -23855,3010:112,102,-1,0,0,0.673687 -23856,3010:215,105,-1,0,0,0.645792 -23857,3010:216,106,-1,0,0,0.648091 -23858,3010:217,107,-1,0,0,0.650127 -23859,3010:218,108,-1,0,0,0.656596 -23860,3010:219,109,-1,0,0,0.671765 -23861,3011:110,110,-1,0,0,0.676864 -23862,3011:111,111,-1,0,0,0.681877 -23863,3011:219,119,-1,0,0,0.654973 -23864,3012:110,120,-1,0,0,0.661284 -23865,3012:111,121,-1,0,0,0.661675 -23866,3012:112,122,-1,0,0,0.664062 -23867,3012:113,123,-1,0,0,0.666738 -23868,3012:114,124,-1,0,0,0.668358 -23869,3012:215,125,-1,0,0,0.664223 -23870,3012:216,126,-1,0,0,0.665962 -23871,3012:217,127,-1,0,0,0.66491 -23872,3012:219,129,-1,0,0,0.672444 -23873,3013:110,130,-1,0,0,0.667606 -23874,3013:111,131,-1,0,0,0.668449 -23875,3013:112,132,-1,0,0,0.667833 -23876,3013:113,133,-1,0,0,0.667925 -23877,3013:114,134,-1,0,0,0.665917 -23878,3013:215,135,-1,0,0,0.664933 -23879,3013:216,136,-1,0,0,0.66475 -23880,3013:217,137,-1,0,0,0.664955 -23881,3013:218,138,-1,0,0,0.66397 -23882,3013:219,139,-1,0,0,0.663305 -23883,3014:110,140,-1,0,0,0.663512 -23884,3014:111,141,-1,0,0,0.665779 -23885,3014:112,142,-1,0,0,0.668062 -23886,3014:113,143,-1,0,0,0.670971 -23887,3014:114,144,-1,0,0,0.673552 -23888,3014:215,145,-1,0,0,0.674523 -23889,3014:216,146,-1,0,0,0.675762 -23890,3014:217,147,-1,0,0,0.676549 -23891,3014:218,148,-1,0,0,0.677762 -23892,3014:219,149,-1,0,0,0.678794 -23893,3015:110,150,-1,0,0,0.679264 -23894,3015:111,151,-1,0,0,0.679107 -23895,3015:112,152,-1,0,0,0.678704 -23896,3015:113,153,-1,0,0,0.677336 -23897,3015:114,154,-1,0,0,0.676392 -23898,3015:215,155,-1,0,0,0.676976 -23899,3015:216,156,-1,0,0,0.677201 -23900,3015:217,157,-1,0,0,0.676775 -23901,3015:218,158,-1,0,0,0.676302 -23902,3015:219,159,-1,0,0,0.675965 -23903,3016:110,160,-1,0,0,0.675559 -23904,3016:111,161,-1,0,0,0.675222 -23905,3016:112,162,-1,0,0,0.675289 -23906,3016:113,163,-1,0,0,0.675785 -23907,3016:114,164,-1,0,0,0.67637 -23908,3016:215,165,-1,0,0,0.676729 -23909,3016:216,166,-1,0,0,0.676752 -23910,3016:217,167,-1,0,0,0.676796 -23911,3016:218,168,-1,0,0,0.677089 -23912,3016:219,169,-1,0,0,0.676055 -23913,3017:110,170,-1,0,0,0.677874 -23914,3017:111,171,-1,0,0,0.677762 -23915,3017:112,172,-1,0,0,0.677493 -23916,3017:113,173,-1,0,0,0.677942 -23917,3017:114,174,-1,0,0,0.678435 -23918,3017:215,175,-1,0,0,0.678143 -23919,3017:216,176,-1,0,0,0.676819 -23920,3017:217,177,-1,0,0,0.67637 -23921,3017:218,178,-1,0,0,0.675807 -23922,3017:219,179,-1,0,0,0.676055 -23923,3018:110,180,-1,0,0,0.675672 -23924,7018:110,-180,0,0,0,0.670018 -23925,7017:219,-179,0,0,0,0.669245 -23926,7017:218,-178,0,0,0,0.66854 -23927,7017:217,-177,0,0,0,0.668107 -23928,7017:216,-176,0,0,0,0.667902 -23929,7017:215,-175,0,0,0,0.667628 -23930,7017:114,-174,0,0,0,0.666168 -23931,7017:113,-173,0,0,0,0.665665 -23932,7017:112,-172,0,0,0,0.665207 -23933,7017:111,-171,0,0,0,0.665024 -23934,7017:110,-170,0,0,0,0.663558 -23935,7016:219,-169,0,0,0,0.66241 -23936,7016:218,-168,0,0,0,0.66397 -23937,7016:217,-167,0,0,0,0.662685 -23938,7016:216,-166,0,0,0,0.659394 -23939,7016:215,-165,0,0,0,0.656179 -23940,7016:114,-164,0,0,0,0.654276 -23941,7016:113,-163,0,0,0,0.653462 -23942,7016:112,-162,0,0,0,0.654531 -23943,7016:111,-161,0,0,0,0.65611 -23944,7016:110,-160,0,0,0,0.653229 -23945,7015:219,-159,0,0,0,0.650641 -23946,7015:218,-158,0,0,0,0.655344 -23947,7015:217,-157,0,0,0,0.654136 -23948,7015:216,-156,0,0,0,0.653183 -23949,7015:215,-155,0,0,0,0.654833 -23950,7015:114,-154,0,0,0,0.655321 -23951,7015:113,-153,0,0,0,0.652671 -23952,7015:112,-152,0,0,0,0.649052 -23953,7015:111,-151,0,0,0,0.647271 -23954,7015:110,-150,0,0,0,0.645839 -23955,7014:219,-149,0,0,0,0.645768 -23956,7014:218,-148,0,0,0,0.64398 -23957,7014:217,-147,0,0,0,0.641574 -23958,7014:216,-146,0,0,0,0.63961 -23959,7014:215,-145,0,0,0,0.638212 -23960,7014:114,-144,0,0,0,0.639349 -23961,7014:113,-143,0,0,0,0.64214 -23962,7014:112,-142,0,0,0,0.638235 -23963,7014:111,-141,0,0,0,0.632785 -23964,7014:110,-140,0,0,0,0.633811 -23965,7013:219,-139,0,0,0,0.634193 -23966,7013:218,-138,0,0,0,0.638307 -23967,7013:217,-137,0,0,0,0.639681 -23968,7013:216,-136,0,0,0,0.638638 -23969,7013:215,-135,0,0,0,0.632762 -23970,7013:114,-134,0,0,0,0.628237 -23971,7013:113,-133,0,0,0,0.630371 -23972,7013:112,-132,0,0,0,0.632977 -23973,7013:111,-131,0,0,0,0.629269 -23974,7013:110,-130,0,0,0,0.620503 -23975,7012:219,-129,0,0,0,0.630251 -23976,7012:218,-128,0,0,0,0.632833 -23977,7012:217,-127,0,0,0,0.631256 -23978,7012:216,-126,0,0,0,0.632093 -23979,7012:215,-125,0,0,0,0.625233 -23980,7012:114,-124,0,0,0,0.621808 -23981,7012:113,-123,0,0,0,0.621132 -23982,7012:112,-122,0,0,0,0.611365 -23983,7012:111,-121,0,0,0,0.611633 -23984,7012:110,-120,0,0,0,0.612682 -23985,7011:219,-119,0,0,0,0.621567 -23986,7011:218,-118,0,0,0,0.618978 -23987,7011:217,-117,0,0,0,0.618711 -23988,7011:216,-116,0,0,0,0.620213 -23989,7011:215,-115,0,0,0,0.621422 -23990,7011:114,-114,0,0,0,0.621035 -23991,7011:113,-113,0,0,0,0.619317 -23992,7011:112,-112,0,0,0,0.618008 -23993,7011:111,-111,0,0,0,0.618881 -23994,7011:110,-110,0,0,0,0.62176 -23995,7010:219,-109,0,0,0,0.621833 -23996,7010:218,-108,0,0,0,0.620914 -23997,7010:217,-107,0,0,0,0.620842 -23998,7010:216,-106,0,0,0,0.620454 -23999,7010:215,-105,0,0,0,0.619462 -24000,7010:114,-104,0,0,0,0.618832 -24001,7010:113,-103,0,0,0,0.618663 -24002,7010:112,-102,0,0,0,0.619026 -24003,7010:111,-101,0,0,0,0.620043 -24004,7010:110,-100,0,0,0,0.620865 -24005,7009:219,-99,0,0,0,0.621833 -24006,7009:218,-98,0,0,0,0.622919 -24007,7009:217,-97,0,0,0,0.624149 -24008,7009:216,-96,0,0,0,0.62545 -24009,7009:215,-95,0,0,0,0.62557 -24010,7009:114,-94,0,0,0,0.624608 -24011,7009:113,-93,0,0,0,0.623812 -24012,7009:112,-92,0,0,0,0.623691 -24013,7009:111,-91,0,0,0,0.623643 -24014,7009:110,-90,0,0,0,0.625113 -24015,7008:219,-89,0,0,0,0.626484 -24016,7008:218,-88,0,0,0,0.627637 -24017,7008:217,-87,0,0,0,0.628118 -24018,7008:216,-86,0,0,0,0.626075 -24019,7008:215,-85,0,0,0,0.623595 -24020,7008:114,-84,0,0,0,0.622919 -24021,7008:113,-83,0,0,0,0.621108 -24022,7008:112,-82,0,0,0,0.619365 -24023,7008:111,-81,0,0,0,0.618274 -24024,7008:110,-80,0,0,0,0.618735 -24025,7007:219,-79,0,0,0,0.618008 -24026,7007:218,-78,0,0,0,0.630849 -24027,7005:111,-51,0,0,0,0.637025 -24028,7005:110,-50,0,0,0,0.629413 -24029,7004:219,-49,0,0,0,0.624487 -24030,7004:218,-48,0,0,0,0.626893 -24031,7004:217,-47,0,0,0,0.631185 -24032,7004:216,-46,0,0,0,0.63486 -24033,7004:215,-45,0,0,0,0.636217 -24034,7004:114,-44,0,0,0,0.636526 -24035,7004:113,-43,0,0,0,0.636026 -24036,7004:112,-42,0,0,0,0.634121 -24037,7004:111,-41,0,0,0,0.632857 -24038,7004:110,-40,0,0,0,0.632571 -24039,7003:219,-39,0,0,0,0.632332 -24040,7003:218,-38,0,0,0,0.630849 -24041,7003:217,-37,0,0,0,0.628981 -24042,7003:216,-36,0,0,0,0.627133 -24043,7003:215,-35,0,0,0,0.626388 -24044,7003:114,-34,0,0,0,0.626436 -24045,7003:113,-33,0,0,0,0.625859 -24046,7003:112,-32,0,0,0,0.62557 -24047,7003:111,-31,0,0,0,0.625185 -24048,7003:110,-30,0,0,0,0.625017 -24049,7002:219,-29,0,0,0,0.626965 -24050,7002:218,-28,0,0,0,0.627662 -24051,7002:217,-27,0,0,0,0.628357 -24052,7002:216,-26,0,0,0,0.629149 -24053,7002:215,-25,0,0,0,0.631041 -24054,7002:114,-24,0,0,0,0.632762 -24055,7002:113,-23,0,0,0,0.634098 -24056,7002:112,-22,0,0,0,0.635337 -24057,7002:111,-21,0,0,0,0.635432 -24058,7002:110,-20,0,0,0,0.635432 -24059,7001:219,-19,0,0,0,0.637832 -24060,7001:218,-18,0,0,0,0.638876 -24061,7001:217,-17,0,0,0,0.639989 -24062,7001:216,-16,0,0,0,0.641526 -24063,7001:215,-15,0,0,0,0.642565 -24064,7001:114,-14,0,0,0,0.644074 -24065,7001:113,-13,0,0,0,0.646544 -24066,7001:112,-12,0,0,0,0.64987 -24067,7001:111,-11,0,0,0,0.652833 -24068,7001:110,-10,0,0,0,0.655483 -24069,7000:219,-9,0,0,0,0.65699 -24070,7000:218,-8,0,0,0,0.658378 -24071,7000:217,-7,0,0,0,0.659809 -24072,7000:216,-6,0,0,0,0.661536 -24073,7000:215,-5,0,0,0,0.664017 -24074,7000:114,-4,0,0,0,0.66635 -24075,7000:113,-3,0,0,0,0.667879 -24076,7000:112,-2,0,0,0,0.668972 -24077,7000:111,-1,0,0,0,0.671584 -24078,1000:111,0,0,0,0,0.672263 -24079,1000:111,1,0,0,0,0.669427 -24080,1000:112,2,0,0,0,0.669836 -24081,1000:113,3,0,0,0,0.669972 -24082,1000:114,4,0,0,0,0.671991 -24083,1000:215,5,0,0,0,0.672625 -24084,1000:216,6,0,0,0,0.666899 -24085,1000:217,7,0,0,0,0.662594 -24086,1000:218,8,0,0,0,0.660178 -24087,1000:219,9,0,0,0,0.660247 -24088,1004:217,47,0,0,0,0.633835 -24089,1004:218,48,0,0,0,0.633859 -24090,1004:219,49,0,0,0,0.63871 -24091,1005:110,50,0,0,0,0.641715 -24092,1005:111,51,0,0,0,0.646731 -24093,1005:112,52,0,0,0,0.646825 -24094,1005:113,53,0,0,0,0.647552 -24095,1005:114,54,0,0,0,0.646637 -24096,1005:215,55,0,0,0,0.650127 -24097,1005:216,56,0,0,0,0.65488 -24098,1005:217,57,0,0,0,0.659371 -24099,1005:218,58,0,0,0,0.658216 -24100,1005:219,59,0,0,0,0.654508 -24101,1006:110,60,0,0,0,0.650898 -24102,1006:111,61,0,0,0,0.651201 -24103,1006:112,62,0,0,0,0.650594 -24104,1006:113,63,0,0,0,0.647951 -24105,1006:114,64,0,0,0,0.646989 -24106,1006:215,65,0,0,0,0.652694 -24107,1006:216,66,0,0,0,0.657291 -24108,1006:217,67,0,0,0,0.659555 -24109,1006:218,68,0,0,0,0.661376 -24110,1006:219,69,0,0,0,0.664658 -24111,1007:110,70,0,0,0,0.66635 -24112,1007:111,71,0,0,0,0.666053 -24113,1007:112,72,0,0,0,0.66475 -24114,1007:114,74,0,0,0,0.663237 -24115,1007:215,75,0,0,0,0.661789 -24116,1007:216,76,0,0,0,0.660178 -24117,1007:217,77,0,0,0,0.660016 -24118,1007:218,78,0,0,0,0.659555 -24119,1007:219,79,0,0,0,0.658932 -24120,1008:110,80,0,0,0,0.658077 -24121,1008:111,81,0,0,0,0.65817 -24122,1008:112,82,0,0,0,0.659509 -24123,1008:113,83,0,0,0,0.660708 -24124,1008:114,84,0,0,0,0.662915 -24125,1008:215,85,0,0,0,0.664772 -24126,1008:216,86,0,0,0,0.66397 -24127,1008:217,87,0,0,0,0.662938 -24128,1008:218,88,0,0,0,0.662685 -24129,1008:219,89,0,0,0,0.663099 -24130,1009:110,90,0,0,0,0.663604 -24131,1009:111,91,0,0,0,0.661767 -24132,1009:112,92,0,0,0,0.662525 -24133,1009:113,93,0,0,0,0.665322 -24134,1009:114,94,0,0,0,0.666738 -24135,1009:215,95,0,0,0,0.667765 -24136,1009:216,96,0,0,0,0.669904 -24137,1009:217,97,0,0,0,0.671493 -24138,1010:110,100,0,0,0,0.673394 -24139,1010:111,101,0,0,0,0.679354 -24140,1010:114,104,0,0,0,0.640202 -24141,1010:215,105,0,0,0,0.637499 -24142,1010:216,106,0,0,0,0.639563 -24143,1010:217,107,0,0,0,0.631567 -24144,1010:218,108,0,0,0,0.644357 -24145,1010:219,109,0,0,0,0.656573 -24146,1011:110,110,0,0,0,0.664635 -24147,1011:111,111,0,0,0,0.667378 -24148,1011:112,112,0,0,0,0.670155 -24149,1011:113,113,0,0,0,0.672942 -24150,1011:218,118,0,0,0,0.66172 -24151,1011:219,119,0,0,0,0.651155 -24152,1012:110,120,0,0,0,0.658632 -24153,1012:111,121,0,0,0,0.664017 -24154,1012:112,122,0,0,0,0.665596 -24155,1012:113,123,0,0,0,0.666944 -24156,1012:114,124,0,0,0,0.667195 -24157,1012:215,125,0,0,0,0.665847 -24158,1012:216,126,0,0,0,0.66895 -24159,1012:217,127,0,0,0,0.662042 -24160,1012:218,128,0,0,0,0.664131 -24161,1012:219,129,0,0,0,0.664589 -24162,1013:110,130,0,0,0,0.665367 -24163,1013:111,131,0,0,0,0.663099 -24164,1013:112,132,0,0,0,0.658863 -24165,1013:113,133,0,0,0,0.659094 -24166,1013:114,134,0,0,0,0.661789 -24167,1013:215,135,0,0,0,0.664589 -24168,1013:216,136,0,0,0,0.667537 -24169,1013:217,137,0,0,0,0.671062 -24170,1013:218,138,0,0,0,0.669746 -24171,1013:219,139,0,0,0,0.66929 -24172,1014:110,140,0,0,0,0.669972 -24173,1014:111,141,0,0,0,0.669586 -24174,1014:112,142,0,0,0,0.669131 -24175,1014:113,143,0,0,0,0.670268 -24176,1014:114,144,0,0,0,0.672308 -24177,1014:215,145,0,0,0,0.673981 -24178,1014:216,146,0,0,0,0.674658 -24179,1014:217,147,0,0,0,0.676055 -24180,1014:218,148,0,0,0,0.678054 -24181,1014:219,149,0,0,0,0.67839 -24182,1015:110,150,0,0,0,0.678524 -24183,1015:111,151,0,0,0,0.678189 -24184,1015:112,152,0,0,0,0.677403 -24185,1015:113,153,0,0,0,0.67637 -24186,1015:114,154,0,0,0,0.675739 -24187,1015:215,155,0,0,0,0.675357 -24188,1015:216,156,0,0,0,0.675041 -24189,1015:217,157,0,0,0,0.674297 -24190,1015:218,158,0,0,0,0.673122 -24191,1015:219,159,0,0,0,0.672217 -24192,1016:110,160,0,0,0,0.671538 -24193,1016:111,161,0,0,0,0.671357 -24194,1016:112,162,0,0,0,0.671878 -24195,1016:113,163,0,0,0,0.672602 -24196,1016:114,164,0,0,0,0.67319 -24197,1016:215,165,0,0,0,0.673258 -24198,1016:216,166,0,0,0,0.672467 -24199,1016:217,167,0,0,0,0.672105 -24200,1016:218,168,0,0,0,0.672308 -24201,1016:219,169,0,0,0,0.674342 -24202,1017:110,170,0,0,0,0.675289 -24203,1017:111,171,0,0,0,0.675199 -24204,1017:112,172,0,0,0,0.675086 -24205,1017:113,173,0,0,0,0.675041 -24206,1017:114,174,0,0,0,0.675447 -24207,1017:215,175,0,0,0,0.676864 -24208,1017:216,176,0,0,0,0.675785 -24209,1017:217,177,0,0,0,0.672942 -24210,1017:218,178,0,0,0,0.67138 -24211,1017:219,179,0,0,0,0.670971 -24212,1018:110,180,0,0,0,0.670018 -24213,7018:110,-180,1,0,0,0.667172 -24214,7017:219,-179,1,0,0,0.665939 -24215,7017:218,-178,1,0,0,0.664521 -24216,7017:217,-177,1,0,0,0.663168 -24217,7017:216,-176,1,0,0,0.662387 -24218,7017:215,-175,1,0,0,0.662433 -24219,7017:114,-174,1,0,0,0.66241 -24220,7017:113,-173,1,0,0,0.662594 -24221,7017:112,-172,1,0,0,0.661007 -24222,7017:111,-171,1,0,0,0.66057 -24223,7017:110,-170,1,0,0,0.659947 -24224,7016:219,-169,1,0,0,0.660408 -24225,7016:218,-168,1,0,0,0.660293 -24226,7016:217,-167,1,0,0,0.660408 -24227,7016:216,-166,1,0,0,0.659647 -24228,7016:215,-165,1,0,0,0.659486 -24229,7016:114,-164,1,0,0,0.659024 -24230,7016:113,-163,1,0,0,0.658539 -24231,7016:112,-162,1,0,0,0.657777 -24232,7016:111,-161,1,0,0,0.656086 -24233,7016:110,-160,1,0,0,0.655042 -24234,7015:219,-159,1,0,0,0.656132 -24235,7015:218,-158,1,0,0,0.656016 -24236,7015:217,-157,1,0,0,0.655344 -24237,7015:216,-156,1,0,0,0.654787 -24238,7015:215,-155,1,0,0,0.655089 -24239,7015:114,-154,1,0,0,0.654671 -24240,7015:113,-153,1,0,0,0.654671 -24241,7015:112,-152,1,0,0,0.653462 -24242,7015:111,-151,1,0,0,0.651715 -24243,7015:110,-150,1,0,0,0.651201 -24244,7014:219,-149,1,0,0,0.651715 -24245,7014:218,-148,1,0,0,0.651015 -24246,7014:217,-147,1,0,0,0.649823 -24247,7014:216,-146,1,0,0,0.647764 -24248,7014:215,-145,1,0,0,0.646426 -24249,7014:114,-144,1,0,0,0.647834 -24250,7014:113,-143,1,0,0,0.648841 -24251,7014:112,-142,1,0,0,0.648443 -24252,7014:111,-141,1,0,0,0.646567 -24253,7014:110,-140,1,0,0,0.648021 -24254,7013:219,-139,1,0,0,0.646027 -24255,7013:218,-138,1,0,0,0.643084 -24256,7013:217,-137,1,0,0,0.641384 -24257,7013:216,-136,1,0,0,0.641763 -24258,7013:215,-135,1,0,0,0.641763 -24259,7013:114,-134,1,0,0,0.640367 -24260,7013:113,-133,1,0,0,0.637476 -24261,7013:112,-132,1,0,0,0.640084 -24262,7013:111,-131,1,0,0,0.642518 -24263,7013:110,-130,1,0,0,0.643225 -24264,7012:219,-129,1,0,0,0.640699 -24265,7012:218,-128,1,0,0,0.643485 -24266,7012:217,-127,1,0,0,0.643084 -24267,7012:216,-126,1,0,0,0.640817 -24268,7012:215,-125,1,0,0,0.636074 -24269,7012:114,-124,1,0,0,0.640652 -24270,7012:113,-123,1,0,0,0.64103 -24271,7012:112,-122,1,0,0,0.631878 -24272,7012:111,-121,1,0,0,0.628742 -24273,7012:110,-120,1,0,0,0.635883 -24274,7011:219,-119,1,0,0,0.637998 -24275,7011:218,-118,1,0,0,0.63486 -24276,7011:217,-117,1,0,0,0.634098 -24277,7011:216,-116,1,0,0,0.634312 -24278,7011:215,-115,1,0,0,0.634264 -24279,7011:114,-114,1,0,0,0.634384 -24280,7011:113,-113,1,0,0,0.63455 -24281,7011:112,-112,1,0,0,0.635098 -24282,7011:111,-111,1,0,0,0.635408 -24283,7011:110,-110,1,0,0,0.635122 -24284,7010:219,-109,1,0,0,0.634026 -24285,7010:218,-108,1,0,0,0.632785 -24286,7010:217,-107,1,0,0,0.631567 -24287,7010:216,-106,1,0,0,0.630514 -24288,7010:215,-105,1,0,0,0.629628 -24289,7010:114,-104,1,0,0,0.628694 -24290,7010:113,-103,1,0,0,0.627902 -24291,7010:112,-102,1,0,0,0.627374 -24292,7010:111,-101,1,0,0,0.627374 -24293,7010:110,-100,1,0,0,0.62747 -24294,7009:219,-99,1,0,0,0.627902 -24295,7009:218,-98,1,0,0,0.628118 -24296,7009:217,-97,1,0,0,0.628141 -24297,7009:216,-96,1,0,0,0.628357 -24298,7009:215,-95,1,0,0,0.629054 -24299,7009:114,-94,1,0,0,0.628646 -24300,7009:113,-93,1,0,0,0.628357 -24301,7009:112,-92,1,0,0,0.62771 -24302,7009:111,-91,1,0,0,0.627157 -24303,7009:110,-90,1,0,0,0.627421 -24304,7008:219,-89,1,0,0,0.628765 -24305,7008:218,-88,1,0,0,0.630802 -24306,7008:217,-87,1,0,0,0.633669 -24307,7008:216,-86,1,0,0,0.633764 -24308,7008:215,-85,1,0,0,0.636621 -24309,7008:114,-84,1,0,0,0.636336 -24310,7008:113,-83,1,0,0,0.632451 -24311,7008:112,-82,1,0,0,0.633263 -24312,7008:111,-81,1,0,0,0.633693 -24313,7008:110,-80,1,0,0,0.633239 -24314,7007:219,-79,1,0,0,0.629724 -24315,7007:218,-78,1,0,0,0.630802 -24316,7005:112,-52,1,0,0,0.619293 -24317,7005:111,-51,1,0,0,0.625956 -24318,7005:110,-50,1,0,0,0.626893 -24319,7004:219,-49,1,0,0,0.631376 -24320,7004:218,-48,1,0,0,0.630611 -24321,7004:217,-47,1,0,0,0.630443 -24322,7004:216,-46,1,0,0,0.633573 -24323,7004:215,-45,1,0,0,0.636002 -24324,7004:114,-44,1,0,0,0.635479 -24325,7004:113,-43,1,0,0,0.632571 -24326,7004:112,-42,1,0,0,0.630922 -24327,7004:111,-41,1,0,0,0.632045 -24328,7004:110,-40,1,0,0,0.632356 -24329,7003:219,-39,1,0,0,0.63269 -24330,7003:218,-38,1,0,0,0.632499 -24331,7003:217,-37,1,0,0,0.631639 -24332,7003:216,-36,1,0,0,0.63128 -24333,7003:215,-35,1,0,0,0.630347 -24334,7003:114,-34,1,0,0,0.630323 -24335,7003:113,-33,1,0,0,0.629365 -24336,7003:112,-32,1,0,0,0.628958 -24337,7003:111,-31,1,0,0,0.629221 -24338,7003:110,-30,1,0,0,0.629557 -24339,7002:219,-29,1,0,0,0.630227 -24340,7002:218,-28,1,0,0,0.630969 -24341,7002:217,-27,1,0,0,0.632212 -24342,7002:216,-26,1,0,0,0.633072 -24343,7002:215,-25,1,0,0,0.633693 -24344,7002:114,-24,1,0,0,0.634884 -24345,7002:113,-23,1,0,0,0.635907 -24346,7002:112,-22,1,0,0,0.637381 -24347,7002:111,-21,1,0,0,0.638497 -24348,7002:110,-20,1,0,0,0.64006 -24349,7001:219,-19,1,0,0,0.642164 -24350,7001:218,-18,1,0,0,0.644992 -24351,7001:217,-17,1,0,0,0.646191 -24352,7001:216,-16,1,0,0,0.647341 -24353,7001:215,-15,1,0,0,0.648091 -24354,7001:114,-14,1,0,0,0.648185 -24355,7001:113,-13,1,0,0,0.649519 -24356,7001:112,-12,1,0,0,0.650992 -24357,7001:111,-11,1,0,0,0.655019 -24358,7001:110,-10,1,0,0,0.659901 -24359,7000:216,-6,1,0,0,0.661053 -24360,7000:215,-5,1,0,0,0.663305 -24361,7000:114,-4,1,0,0,0.665619 -24362,7000:113,-3,1,0,0,0.667993 -24363,7000:111,-1,1,0,0,0.664978 -24364,1000:111,0,1,0,0,0.673733 -24365,1000:111,1,1,0,0,0.673913 -24366,1000:112,2,1,0,0,0.673236 -24367,1000:113,3,1,0,0,0.67468 -24368,1000:114,4,1,0,0,0.676234 -24369,1000:215,5,1,0,0,0.674342 -24370,1004:219,49,1,0,0,0.631567 -24371,1005:110,50,1,0,0,0.639586 -24372,1005:111,51,1,0,0,0.63987 -24373,1005:112,52,1,0,0,0.63814 -24374,1005:113,53,1,0,0,0.638994 -24375,1005:114,54,1,0,0,0.643603 -24376,1005:215,55,1,0,0,0.648537 -24377,1005:216,56,1,0,0,0.654345 -24378,1005:217,57,1,0,0,0.656248 -24379,1005:218,58,1,0,0,0.656781 -24380,1005:219,59,1,0,0,0.654415 -24381,1006:110,60,1,0,0,0.656897 -24382,1006:111,61,1,0,0,0.654787 -24383,1006:112,62,1,0,0,0.652368 -24384,1006:113,63,1,0,0,0.651924 -24385,1006:114,64,1,0,0,0.65402 -24386,1006:215,65,1,0,0,0.656318 -24387,1006:216,66,1,0,0,0.656897 -24388,1006:217,67,1,0,0,0.659209 -24389,1006:218,68,1,0,0,0.661675 -24390,1006:219,69,1,0,0,0.662318 -24391,1007:110,70,1,0,0,0.662502 -24392,1007:111,71,1,0,0,0.662617 -24393,1007:112,72,1,0,0,0.661882 -24394,1007:114,74,1,0,0,0.657198 -24395,1007:215,75,1,0,0,0.65481 -24396,1007:216,76,1,0,0,0.653578 -24397,1007:217,77,1,0,0,0.65395 -24398,1007:218,78,1,0,0,0.654369 -24399,1007:219,79,1,0,0,0.654508 -24400,1008:110,80,1,0,0,0.652414 -24401,1008:111,81,1,0,0,0.649332 -24402,1008:112,82,1,0,0,0.652181 -24403,1008:113,83,1,0,0,0.658077 -24404,1008:114,84,1,0,0,0.660386 -24405,1008:215,85,1,0,0,0.660339 -24406,1008:216,86,1,0,0,0.659301 -24407,1008:217,87,1,0,0,0.656642 -24408,1008:218,88,1,0,0,0.655669 -24409,1008:219,89,1,0,0,0.655924 -24410,1009:110,90,1,0,0,0.654764 -24411,1009:111,91,1,0,0,0.654276 -24412,1009:112,92,1,0,0,0.65611 -24413,1009:113,93,1,0,0,0.657106 -24414,1009:114,94,1,0,0,0.659024 -24415,1009:215,95,1,0,0,0.66404 -24416,1009:219,99,1,0,0,0.662571 -24417,1010:110,100,1,0,0,0.658608 -24418,1010:114,104,1,0,0,0.638093 -24419,1010:215,105,1,0,0,0.629964 -24420,1010:216,106,1,0,0,0.629005 -24421,1010:217,107,1,0,0,0.62807 -24422,1010:218,108,1,0,0,0.633835 -24423,1010:219,109,1,0,0,0.643674 -24424,1011:110,110,1,0,0,0.646473 -24425,1011:111,111,1,0,0,0.653741 -24426,1011:112,112,1,0,0,0.658493 -24427,1011:113,113,1,0,0,0.662456 -24428,1011:114,114,1,0,0,0.66683 -24429,1011:215,115,1,0,0,0.669586 -24430,1012:110,120,1,0,0,0.662594 -24431,1012:111,121,1,0,0,0.649215 -24432,1012:112,122,1,0,0,0.65409 -24433,1012:113,123,1,0,0,0.658146 -24434,1012:114,124,1,0,0,0.654833 -24435,1012:215,125,1,0,0,0.645439 -24436,1012:216,126,1,0,0,0.644592 -24437,1012:217,127,1,0,0,0.655135 -24438,1012:218,128,1,0,0,0.663374 -24439,1012:219,129,1,0,0,0.665161 -24440,1013:110,130,1,0,0,0.666282 -24441,1013:111,131,1,0,0,0.666738 -24442,1013:112,132,1,0,0,0.664612 -24443,1013:113,133,1,0,0,0.6628 -24444,1013:114,134,1,0,0,0.664544 -24445,1013:215,135,1,0,0,0.668768 -24446,1013:216,136,1,0,0,0.672308 -24447,1013:217,137,1,0,0,0.671153 -24448,1013:218,138,1,0,0,0.667606 -24449,1013:219,139,1,0,0,0.66797 -24450,1014:110,140,1,0,0,0.669086 -24451,1014:111,141,1,0,0,0.66929 -24452,1014:112,142,1,0,0,0.670018 -24453,1014:113,143,1,0,0,0.671108 -24454,1014:114,144,1,0,0,0.672399 -24455,1014:215,145,1,0,0,0.673755 -24456,1014:216,146,1,0,0,0.674161 -24457,1014:217,147,1,0,0,0.673778 -24458,1014:218,148,1,0,0,0.673484 -24459,1014:219,149,1,0,0,0.673349 -24460,1015:110,150,1,0,0,0.674026 -24461,1015:111,151,1,0,0,0.67441 -24462,1015:112,152,1,0,0,0.673529 -24463,1015:113,153,1,0,0,0.672399 -24464,1015:114,154,1,0,0,0.66995 -24465,1015:215,155,1,0,0,0.668722 -24466,1015:216,156,1,0,0,0.669313 -24467,1015:217,157,1,0,0,0.671039 -24468,1015:218,158,1,0,0,0.671493 -24469,1015:219,159,1,0,0,0.670881 -24470,1016:110,160,1,0,0,0.670132 -24471,1016:111,161,1,0,0,0.669609 -24472,1016:112,162,1,0,0,0.669518 -24473,1016:113,163,1,0,0,0.669586 -24474,1016:114,164,1,0,0,0.669268 -24475,1016:215,165,1,0,0,0.668381 -24476,1016:216,166,1,0,0,0.668586 -24477,1016:217,167,1,0,0,0.669381 -24478,1016:218,168,1,0,0,0.670336 -24479,1016:219,169,1,0,0,0.67079 -24480,1017:110,170,1,0,0,0.670086 -24481,1017:111,171,1,0,0,0.671085 -24482,1017:112,172,1,0,0,0.672806 -24483,1017:113,173,1,0,0,0.672421 -24484,1017:114,174,1,0,0,0.670858 -24485,1017:215,175,1,0,0,0.669199 -24486,1017:216,176,1,0,0,0.669836 -24487,1017:217,177,1,0,0,0.668586 -24488,1017:218,178,1,0,0,0.667742 -24489,1017:219,179,1,0,0,0.667697 -24490,1018:110,180,1,0,0,0.667172 -24491,7018:120,-180,2,0,0,0.66149 -24492,7017:229,-179,2,0,0,0.661789 -24493,7017:228,-178,2,0,0,0.660777 -24926,1006:134,64,3,0,0,0.64438 -24494,7017:227,-177,2,0,0,0.658401 -24495,7017:226,-176,2,0,0,0.655947 -24496,7017:225,-175,2,0,0,0.654601 -24497,7017:124,-174,2,0,0,0.653927 -24498,7017:123,-173,2,0,0,0.65395 -24499,7017:122,-172,2,0,0,0.654392 -24500,7017:121,-171,2,0,0,0.654345 -24501,7017:120,-170,2,0,0,0.654043 -24502,7016:229,-169,2,0,0,0.653112 -24503,7016:228,-168,2,0,0,0.652857 -24504,7016:227,-167,2,0,0,0.651738 -24505,7016:226,-166,2,0,0,0.651505 -24506,7016:225,-165,2,0,0,0.651855 -24507,7016:124,-164,2,0,0,0.652647 -24508,7016:123,-163,2,0,0,0.652904 -24509,7016:122,-162,2,0,0,0.652717 -24510,7016:121,-161,2,0,0,0.652647 -24511,7016:120,-160,2,0,0,0.65281 -24512,7015:229,-159,2,0,0,0.653415 -24513,7015:228,-158,2,0,0,0.653531 -24514,7015:227,-157,2,0,0,0.652997 -24515,7015:226,-156,2,0,0,0.652251 -24516,7015:225,-155,2,0,0,0.651762 -24517,7015:124,-154,2,0,0,0.651668 -24518,7015:123,-153,2,0,0,0.651855 -24519,7015:122,-152,2,0,0,0.652018 -24520,7015:121,-151,2,0,0,0.651855 -24521,7015:120,-150,2,0,0,0.651248 -24522,7014:229,-149,2,0,0,0.650338 -24523,7014:228,-148,2,0,0,0.649777 -24524,7014:227,-147,2,0,0,0.649613 -24525,7014:226,-146,2,0,0,0.649753 -24526,7014:225,-145,2,0,0,0.649823 -24527,7014:124,-144,2,0,0,0.649473 -24528,7014:123,-143,2,0,0,0.649028 -24529,7014:122,-142,2,0,0,0.648817 -24530,7014:121,-141,2,0,0,0.648724 -24531,7014:120,-140,2,0,0,0.648396 -24532,7013:229,-139,2,0,0,0.648208 -24533,7013:228,-138,2,0,0,0.647505 -24534,7013:227,-137,2,0,0,0.646684 -24535,7013:226,-136,2,0,0,0.646215 -24536,7013:225,-135,2,0,0,0.645627 -24537,7013:124,-134,2,0,0,0.64471 -24538,7013:123,-133,2,0,0,0.643556 -24539,7013:122,-132,2,0,0,0.643037 -24540,7013:121,-131,2,0,0,0.643485 -24541,7013:120,-130,2,0,0,0.643626 -24542,7012:229,-129,2,0,0,0.644192 -24543,7012:228,-128,2,0,0,0.644145 -24544,7012:227,-127,2,0,0,0.642377 -24545,7012:226,-126,2,0,0,0.641172 -24546,7012:225,-125,2,0,0,0.642188 -24547,7012:124,-124,2,0,0,0.642211 -24548,7012:123,-123,2,0,0,0.641101 -24549,7012:122,-122,2,0,0,0.639349 -24550,7012:121,-121,2,0,0,0.637998 -24551,7012:120,-120,2,0,0,0.638378 -24552,7011:229,-119,2,0,0,0.639563 -24553,7011:228,-118,2,0,0,0.640178 -24554,7011:227,-117,2,0,0,0.641479 -24555,7011:226,-116,2,0,0,0.641998 -24556,7011:225,-115,2,0,0,0.641408 -24557,7011:124,-114,2,0,0,0.641337 -24558,7011:123,-113,2,0,0,0.641361 -24559,7011:122,-112,2,0,0,0.64129 -24560,7011:121,-111,2,0,0,0.640439 -24561,7011:120,-110,2,0,0,0.638947 -24562,7010:229,-109,2,0,0,0.637167 -24563,7010:228,-108,2,0,0,0.635217 -24564,7010:227,-107,2,0,0,0.63312 -24565,7010:226,-106,2,0,0,0.631519 -24566,7010:225,-105,2,0,0,0.630036 -24567,7010:124,-104,2,0,0,0.629317 -24568,7010:123,-103,2,0,0,0.628718 -24569,7010:122,-102,2,0,0,0.628598 -24570,7010:121,-101,2,0,0,0.628526 -24571,7010:120,-100,2,0,0,0.629077 -24572,7009:229,-99,2,0,0,0.629604 -24573,7009:228,-98,2,0,0,0.629653 -24574,7009:227,-97,2,0,0,0.629269 -24575,7009:226,-96,2,0,0,0.628981 -24576,7009:225,-95,2,0,0,0.628838 -24577,7009:124,-94,2,0,0,0.629413 -24578,7009:123,-93,2,0,0,0.630706 -24579,7009:122,-92,2,0,0,0.631782 -24580,7009:121,-91,2,0,0,0.631902 -24581,7009:120,-90,2,0,0,0.632188 -24582,7008:229,-89,2,0,0,0.633072 -24583,7008:228,-88,2,0,0,0.634622 -24584,7008:227,-87,2,0,0,0.638615 -24585,7008:226,-86,2,0,0,0.643909 -24586,7008:225,-85,2,0,0,0.648373 -24587,7008:124,-84,2,0,0,0.651178 -24588,7008:123,-83,2,0,0,0.652414 -24589,7008:122,-82,2,0,0,0.652041 -24590,7008:121,-81,2,0,0,0.652274 -24591,7008:120,-80,2,0,0,0.649215 -24592,7007:229,-79,2,0,0,0.644969 -24593,7007:228,-78,2,0,0,0.647412 -24594,7005:227,-57,2,0,0,0.611169 -24595,7005:226,-56,2,0,0,0.600447 -24596,7005:225,-55,2,0,0,0.600596 -24597,7005:124,-54,2,0,0,0.60468 -24598,7005:123,-53,2,0,0,0.619898 -24599,7005:122,-52,2,0,0,0.626268 -24600,7005:121,-51,2,0,0,0.629365 -24601,7005:120,-50,2,0,0,0.63006 -24602,7004:229,-49,2,0,0,0.628357 -24603,7004:228,-48,2,0,0,0.627253 -24604,7004:227,-47,2,0,0,0.628045 -24605,7004:226,-46,2,0,0,0.629508 -24606,7004:225,-45,2,0,0,0.632379 -24607,7004:124,-44,2,0,0,0.632308 -24608,7004:123,-43,2,0,0,0.627037 -24609,7004:122,-42,2,0,0,0.625185 -24610,7004:121,-41,2,0,0,0.626244 -24611,7004:120,-40,2,0,0,0.628573 -24612,7003:229,-39,2,0,0,0.629557 -24613,7003:228,-38,2,0,0,0.628262 -24614,7003:227,-37,2,0,0,0.62468 -24615,7003:226,-36,2,0,0,0.624197 -24616,7003:225,-35,2,0,0,0.625474 -24617,7003:124,-34,2,0,0,0.626148 -24618,7003:123,-33,2,0,0,0.624944 -24619,7003:122,-32,2,0,0,0.624197 -24620,7003:121,-31,2,0,0,0.624149 -24621,7003:120,-30,2,0,0,0.624583 -24622,7002:229,-29,2,0,0,0.624391 -24623,7002:228,-28,2,0,0,0.625546 -24624,7002:227,-27,2,0,0,0.62843 -24625,7002:226,-26,2,0,0,0.62994 -24626,7002:225,-25,2,0,0,0.630514 -24627,7002:124,-24,2,0,0,0.631567 -24628,7002:123,-23,2,0,0,0.633621 -24629,7002:122,-22,2,0,0,0.635812 -24630,7002:121,-21,2,0,0,0.638069 -24631,7002:120,-20,2,0,0,0.640912 -24632,7001:229,-19,2,0,0,0.64478 -24633,7001:228,-18,2,0,0,0.647927 -24634,7001:227,-17,2,0,0,0.651924 -24635,7001:226,-16,2,0,0,0.655158 -24636,7001:225,-15,2,0,0,0.656132 -24637,7001:124,-14,2,0,0,0.657499 -24638,7001:123,-13,2,0,0,0.65817 -24639,7001:122,-12,2,0,0,0.657013 -24640,1004:229,49,2,0,0,0.626268 -24641,1005:120,50,2,0,0,0.631687 -24642,1005:121,51,2,0,0,0.636098 -24643,1005:122,52,2,0,0,0.640107 -24644,1005:123,53,2,0,0,0.643179 -24645,1005:124,54,2,0,0,0.64565 -24646,1005:225,55,2,0,0,0.647224 -24647,1005:226,56,2,0,0,0.649519 -24648,1005:227,57,2,0,0,0.650945 -24649,1005:228,58,2,0,0,0.653299 -24650,1005:229,59,2,0,0,0.653322 -24651,1006:120,60,2,0,0,0.655483 -24652,1006:121,61,2,0,0,0.650548 -24653,1006:122,62,2,0,0,0.645416 -24654,1006:123,63,2,0,0,0.646731 -24655,1006:124,64,2,0,0,0.649706 -24656,1006:225,65,2,0,0,0.652088 -24657,1006:226,66,2,0,0,0.654764 -24658,1006:227,67,2,0,0,0.655228 -24659,1006:228,68,2,0,0,0.655576 -24660,1006:229,69,2,0,0,0.657499 -24661,1007:120,70,2,0,0,0.659532 -24662,1007:121,71,2,0,0,0.660132 -24663,1007:122,72,2,0,0,0.659532 -24664,1007:124,74,2,0,0,0.655808 -24665,1007:225,75,2,0,0,0.648162 -24666,1007:226,76,2,0,0,0.646614 -24667,1007:227,77,2,0,0,0.645815 -24668,1007:228,78,2,0,0,0.64431 -24669,1007:229,79,2,0,0,0.642684 -24670,1008:120,80,2,0,0,0.644404 -24671,1008:123,83,2,0,0,0.642612 -24672,1008:124,84,2,0,0,0.65253 -24673,1008:225,85,2,0,0,0.652437 -24674,1008:226,86,2,0,0,0.651131 -24675,1008:227,87,2,0,0,0.650104 -24676,1008:228,88,2,0,0,0.647857 -24677,1008:229,89,2,0,0,0.645839 -24678,1009:120,90,2,0,0,0.643792 -24679,1009:121,91,2,0,0,0.645815 -24680,1009:122,92,2,0,0,0.649379 -24681,1009:123,93,2,0,0,0.651272 -24682,1009:124,94,2,0,0,0.647294 -24683,1009:225,95,2,0,0,0.6487 -24684,1009:226,96,2,0,0,0.648654 -24685,1009:227,97,2,0,0,0.648396 -24686,1009:228,98,2,0,0,0.651575 -24687,1009:229,99,2,0,0,0.650688 -24688,1010:120,100,2,0,0,0.648467 -24689,1010:122,102,2,0,0,0.634645 -24690,1010:123,103,2,0,0,0.638283 -24691,1010:124,104,2,0,0,0.625835 -24692,1010:225,105,2,0,0,0.623354 -24693,1010:226,106,2,0,0,0.619462 -24694,1010:227,107,2,0,0,0.615166 -24695,1010:228,108,2,0,0,0.616697 -24696,1010:229,109,2,0,0,0.635527 -24697,1011:120,110,2,0,0,0.642848 -24698,1011:121,111,2,0,0,0.647669 -24699,1011:122,112,2,0,0,0.649402 -24700,1011:123,113,2,0,0,0.651575 -24701,1011:124,114,2,0,0,0.653345 -24702,1011:225,115,2,0,0,0.654531 -24703,1011:226,116,2,0,0,0.656156 -24704,1011:228,118,2,0,0,0.656202 -24705,1011:229,119,2,0,0,0.652857 -24706,1012:120,120,2,0,0,0.652694 -24707,1012:121,121,2,0,0,0.646261 -24708,1012:122,122,2,0,0,0.64299 -24709,1012:123,123,2,0,0,0.642542 -24710,1012:124,124,2,0,0,0.631519 -24711,1012:226,126,2,0,0,0.648724 -24712,1012:227,127,2,0,0,0.649075 -24713,1012:228,128,2,0,0,0.660063 -24714,1012:229,129,2,0,0,0.662456 -24715,1013:120,130,2,0,0,0.662732 -24716,1013:121,131,2,0,0,0.661007 -24717,1013:122,132,2,0,0,0.66149 -24718,1013:123,133,2,0,0,0.663099 -24719,1013:124,134,2,0,0,0.664887 -24720,1013:225,135,2,0,0,0.665711 -24721,1013:226,136,2,0,0,0.666716 -24722,1013:227,137,2,0,0,0.668312 -24723,1013:228,138,2,0,0,0.667948 -24724,1013:229,139,2,0,0,0.661237 -24725,1014:120,140,2,0,0,0.660201 -24726,1014:121,141,2,0,0,0.662226 -24727,1014:122,142,2,0,0,0.663191 -24728,1014:123,143,2,0,0,0.663948 -24729,1014:124,144,2,0,0,0.664544 -24730,1014:225,145,2,0,0,0.664589 -24731,1014:226,146,2,0,0,0.665711 -24732,1014:227,147,2,0,0,0.666465 -24733,1014:228,148,2,0,0,0.666853 -24734,1014:229,149,2,0,0,0.667081 -24735,1015:120,150,2,0,0,0.668085 -24736,1015:121,151,2,0,0,0.668859 -24737,1015:122,152,2,0,0,0.667833 -24738,1015:123,153,2,0,0,0.667172 -24739,1015:124,154,2,0,0,0.66683 -24740,1015:225,155,2,0,0,0.666807 -24741,1015:226,156,2,0,0,0.667149 -24742,1015:227,157,2,0,0,0.667401 -24743,1015:228,158,2,0,0,0.667332 -24744,1015:229,159,2,0,0,0.662456 -24745,1016:120,160,2,0,0,0.665482 -24746,1016:121,161,2,0,0,0.667035 -24747,1016:122,162,2,0,0,0.666305 -24748,1016:123,163,2,0,0,0.664978 -24749,1016:124,164,2,0,0,0.66381 -24750,1016:225,165,2,0,0,0.662915 -24751,1016:226,166,2,0,0,0.662823 -24752,1016:227,167,2,0,0,0.663833 -24753,1016:228,168,2,0,0,0.664704 -24754,1016:229,169,2,0,0,0.664406 -24755,1017:120,170,2,0,0,0.662111 -24756,1017:121,171,2,0,0,0.660639 -24757,1017:122,172,2,0,0,0.662456 -24758,1017:123,173,2,0,0,0.665344 -24759,1017:124,174,2,0,0,0.669041 -24760,1017:225,175,2,0,0,0.669359 -24761,1017:226,176,2,0,0,0.667993 -24762,1017:227,177,2,0,0,0.666533 -24763,1017:228,178,2,0,0,0.66365 -24764,1017:229,179,2,0,0,0.661468 -24765,1018:120,180,2,0,0,0.66149 -24766,7018:130,-180,3,0,0,0.648841 -24767,7017:239,-179,3,0,0,0.651482 -24768,7017:238,-178,3,0,0,0.650291 -24769,7017:237,-177,3,0,0,0.648068 -24770,7017:236,-176,3,0,0,0.646872 -24771,7017:235,-175,3,0,0,0.645157 -24772,7017:134,-174,3,0,0,0.642802 -24773,7017:133,-173,3,0,0,0.642211 -24774,7017:132,-172,3,0,0,0.642495 -24775,7017:131,-171,3,0,0,0.644404 -24776,7017:130,-170,3,0,0,0.643131 -24777,7016:239,-169,3,0,0,0.641054 -24778,7016:238,-168,3,0,0,0.638022 -24779,7016:237,-167,3,0,0,0.637547 -24780,7016:236,-166,3,0,0,0.639444 -24781,7016:235,-165,3,0,0,0.640604 -24782,7016:134,-164,3,0,0,0.640935 -24783,7016:133,-163,3,0,0,0.641267 -24784,7016:132,-162,3,0,0,0.642305 -24785,7016:131,-161,3,0,0,0.641928 -24786,7016:130,-160,3,0,0,0.640297 -24787,7015:239,-159,3,0,0,0.639421 -24788,7015:238,-158,3,0,0,0.639421 -24789,7015:237,-157,3,0,0,0.639468 -24790,7015:236,-156,3,0,0,0.639373 -24791,7015:235,-155,3,0,0,0.639255 -24792,7015:134,-154,3,0,0,0.64006 -24793,7015:133,-153,3,0,0,0.640982 -24794,7015:132,-152,3,0,0,0.639752 -24795,7015:131,-151,3,0,0,0.635098 -24796,7015:130,-150,3,0,0,0.631973 -24797,7014:239,-149,3,0,0,0.633931 -24798,7014:238,-148,3,0,0,0.635027 -24799,7014:237,-147,3,0,0,0.635574 -24800,7014:236,-146,3,0,0,0.636692 -24801,7014:235,-145,3,0,0,0.636621 -24802,7014:134,-144,3,0,0,0.635027 -24803,7014:133,-143,3,0,0,0.633716 -24804,7014:132,-142,3,0,0,0.632236 -24805,7014:131,-141,3,0,0,0.631471 -24806,7014:130,-140,3,0,0,0.633859 -24807,7013:239,-139,3,0,0,0.637143 -24808,7013:238,-138,3,0,0,0.638686 -24809,7013:237,-137,3,0,0,0.638378 -24810,7013:236,-136,3,0,0,0.638188 -24811,7013:235,-135,3,0,0,0.637404 -24812,7013:134,-134,3,0,0,0.635574 -24813,7013:133,-133,3,0,0,0.633716 -24814,7013:132,-132,3,0,0,0.632785 -24815,7013:131,-131,3,0,0,0.63226 -24816,7013:130,-130,3,0,0,0.634431 -24817,7012:239,-129,3,0,0,0.636811 -24818,7012:238,-128,3,0,0,0.637618 -24819,7012:237,-127,3,0,0,0.637262 -24820,7012:236,-126,3,0,0,0.637025 -24821,7012:235,-125,3,0,0,0.638093 -24822,7012:134,-124,3,0,0,0.639349 -24823,7012:133,-123,3,0,0,0.639942 -24824,7012:132,-122,3,0,0,0.640131 -24825,7012:131,-121,3,0,0,0.639729 -24826,7012:130,-120,3,0,0,0.639847 -24827,7011:239,-119,3,0,0,0.640935 -24828,7011:238,-118,3,0,0,0.641952 -24829,7011:237,-117,3,0,0,0.64155 -24830,7011:236,-116,3,0,0,0.640391 -24831,7011:235,-115,3,0,0,0.63961 -24832,7011:134,-114,3,0,0,0.639468 -24833,7011:133,-113,3,0,0,0.639492 -24834,7011:132,-112,3,0,0,0.637975 -24835,7011:131,-111,3,0,0,0.634979 -24836,7011:130,-110,3,0,0,0.633263 -24837,7010:239,-109,3,0,0,0.631806 -24838,7010:238,-108,3,0,0,0.629533 -24839,7010:237,-107,3,0,0,0.628382 -24840,7010:236,-106,3,0,0,0.628094 -24841,7010:235,-105,3,0,0,0.628526 -24842,7010:134,-104,3,0,0,0.628118 -24843,7010:133,-103,3,0,0,0.626316 -24844,7010:132,-102,3,0,0,0.623233 -24845,7010:131,-101,3,0,0,0.617814 -24846,7010:130,-100,3,0,0,0.614485 -24847,7009:239,-99,3,0,0,0.615993 -24848,7009:238,-98,3,0,0,0.618129 -24849,7009:237,-97,3,0,0,0.619946 -24850,7009:236,-96,3,0,0,0.620865 -24851,7009:235,-95,3,0,0,0.621808 -24852,7009:134,-94,3,0,0,0.624101 -24853,7009:133,-93,3,0,0,0.627806 -24854,7009:132,-92,3,0,0,0.628141 -24855,7009:131,-91,3,0,0,0.626148 -24856,7009:130,-90,3,0,0,0.622702 -24857,7008:239,-89,3,0,0,0.628598 -24858,7008:238,-88,3,0,0,0.636383 -24859,7008:237,-87,3,0,0,0.641125 -24860,7008:236,-86,3,0,0,0.651924 -24861,7008:235,-85,3,0,0,0.658794 -24862,7008:134,-84,3,0,0,0.660708 -24863,7008:133,-83,3,0,0,0.656434 -24864,7008:130,-80,3,0,0,0.657684 -24865,7007:239,-79,3,0,0,0.65253 -24866,7005:239,-59,3,0,0,0.624559 -24867,7005:238,-58,3,0,0,0.619487 -24868,7005:237,-57,3,0,0,0.626725 -24869,7005:236,-56,3,0,0,0.627421 -24870,7005:235,-55,3,0,0,0.626989 -24871,7005:134,-54,3,0,0,0.630825 -24872,7005:133,-53,3,0,0,0.631662 -24873,7005:132,-52,3,0,0,0.63073 -24874,7005:131,-51,3,0,0,0.629628 -24875,7005:130,-50,3,0,0,0.628382 -24876,7004:239,-49,3,0,0,0.630323 -24877,7004:238,-48,3,0,0,0.628742 -24878,7004:237,-47,3,0,0,0.628382 -24879,7004:236,-46,3,0,0,0.627541 -24880,7004:235,-45,3,0,0,0.627109 -24881,7004:134,-44,3,0,0,0.626436 -24882,7004:133,-43,3,0,0,0.625931 -24883,7004:132,-42,3,0,0,0.623908 -24884,7004:131,-41,3,0,0,0.622799 -24885,7004:130,-40,3,0,0,0.623523 -24886,7003:239,-39,3,0,0,0.623787 -24887,7003:238,-38,3,0,0,0.620213 -24888,7003:237,-37,3,0,0,0.616721 -24889,7003:236,-36,3,0,0,0.617693 -24890,7003:235,-35,3,0,0,0.619293 -24891,7003:134,-34,3,0,0,0.616649 -24892,7003:133,-33,3,0,0,0.617061 -24893,7003:132,-32,3,0,0,0.617231 -24894,7003:131,-31,3,0,0,0.619244 -24895,7003:130,-30,3,0,0,0.619777 -24896,7002:239,-29,3,0,0,0.620237 -24897,7002:238,-28,3,0,0,0.62014 -24898,7002:237,-27,3,0,0,0.621518 -24899,7002:236,-26,3,0,0,0.624921 -24900,7002:235,-25,3,0,0,0.624631 -24901,7002:134,-24,3,0,0,0.625811 -24902,7002:133,-23,3,0,0,0.629677 -24903,7002:132,-22,3,0,0,0.633263 -24904,7002:131,-21,3,0,0,0.635859 -24905,7002:130,-20,3,0,0,0.639208 -24906,7001:239,-19,3,0,0,0.645063 -24907,7001:238,-18,3,0,0,0.650268 -24908,7001:237,-17,3,0,0,0.653322 -24909,7001:236,-16,3,0,0,0.657592 -24910,7001:235,-15,3,0,0,0.657175 -24911,7001:134,-14,3,0,0,0.665482 -24912,1005:130,50,3,0,0,0.623595 -24913,1005:131,51,3,0,0,0.625402 -24914,1005:132,52,3,0,0,0.623667 -24915,1005:133,53,3,0,0,0.625763 -24916,1005:134,54,3,0,0,0.634408 -24917,1005:235,55,3,0,0,0.637666 -24918,1005:236,56,3,0,0,0.633597 -24919,1005:237,57,3,0,0,0.635883 -24920,1005:238,58,3,0,0,0.643013 -24921,1005:239,59,3,0,0,0.647716 -24922,1006:130,60,3,0,0,0.648935 -24923,1006:131,61,3,0,0,0.64471 -24924,1006:132,62,3,0,0,0.642754 -24925,1006:133,63,3,0,0,0.64058 -24927,1006:235,65,3,0,0,0.647669 -24928,1006:236,66,3,0,0,0.64966 -24929,1006:237,67,3,0,0,0.650594 -24930,1006:238,68,3,0,0,0.652065 -24931,1006:239,69,3,0,0,0.65295 -24932,1007:130,70,3,0,0,0.655367 -24933,1007:131,71,3,0,0,0.657128 -24934,1007:132,72,3,0,0,0.653438 -24935,1007:134,74,3,0,0,0.647857 -24936,1007:235,75,3,0,0,0.645627 -24937,1007:236,76,3,0,0,0.645768 -24938,1007:237,77,3,0,0,0.645462 -24939,1007:239,79,3,0,0,0.648256 -24940,1008:130,80,3,0,0,0.644498 -24941,1008:132,82,3,0,0,0.627662 -24942,1008:133,83,3,0,0,0.639208 -24943,1008:134,84,3,0,0,0.644357 -24944,1008:235,85,3,0,0,0.644216 -24945,1008:236,86,3,0,0,0.643532 -24946,1008:237,87,3,0,0,0.645039 -24947,1008:238,88,3,0,0,0.645204 -24948,1008:239,89,3,0,0,0.643556 -24949,1009:130,90,3,0,0,0.64372 -24950,1009:131,91,3,0,0,0.644027 -24951,1009:132,92,3,0,0,0.646332 -24952,1009:133,93,3,0,0,0.647412 -24953,1009:134,94,3,0,0,0.645416 -24954,1009:235,95,3,0,0,0.64645 -24955,1009:236,96,3,0,0,0.646989 -24956,1009:237,97,3,0,0,0.649519 -24957,1009:238,98,3,0,0,0.650455 -24958,1010:131,101,3,0,0,0.638402 -24959,1010:132,102,3,0,0,0.638402 -24960,1010:133,103,3,0,0,0.635717 -24961,1010:134,104,3,0,0,0.628861 -24962,1010:235,105,3,0,0,0.615823 -24963,1010:236,106,3,0,0,0.612828 -24964,1010:237,107,3,0,0,0.611072 -24965,1010:238,108,3,0,0,0.610974 -24966,1010:239,109,3,0,0,0.624174 -24967,1011:130,110,3,0,0,0.637476 -24968,1011:131,111,3,0,0,0.645134 -24969,1011:132,112,3,0,0,0.64605 -24970,1011:133,113,3,0,0,0.647435 -24971,1011:134,114,3,0,0,0.648302 -24972,1011:235,115,3,0,0,0.649964 -24973,1011:236,116,3,0,0,0.652228 -24974,1011:237,117,3,0,0,0.65288 -24975,1011:238,118,3,0,0,0.653438 -24976,1011:239,119,3,0,0,0.650758 -24977,1012:130,120,3,0,0,0.647505 -24978,1012:131,121,3,0,0,0.644616 -24979,1012:132,122,3,0,0,0.646332 -24980,1012:133,123,3,0,0,0.629293 -24981,1012:237,127,3,0,0,0.647083 -24982,1012:238,128,3,0,0,0.655391 -24983,1012:239,129,3,0,0,0.658239 -24984,1013:130,130,3,0,0,0.658978 -24985,1013:131,131,3,0,0,0.658794 -24986,1013:132,132,3,0,0,0.658655 -24987,1013:133,133,3,0,0,0.658563 -24988,1013:134,134,3,0,0,0.658447 -24989,1013:235,135,3,0,0,0.659555 -24990,1013:236,136,3,0,0,0.6628 -24991,1013:237,137,3,0,0,0.663833 -24992,1013:238,138,3,0,0,0.664658 -24993,1013:239,139,3,0,0,0.659624 -24994,1014:130,140,3,0,0,0.657846 -24995,1014:131,141,3,0,0,0.658516 -24996,1014:132,142,3,0,0,0.658493 -24997,1014:133,143,3,0,0,0.658401 -24998,1014:134,144,3,0,0,0.658771 -24999,1014:235,145,3,0,0,0.658955 -25000,1014:236,146,3,0,0,0.66149 -25001,1014:237,147,3,0,0,0.663305 -25002,1014:238,148,3,0,0,0.664246 -25003,1014:239,149,3,0,0,0.663191 -25004,1015:130,150,3,0,0,0.665184 -25005,1015:131,151,3,0,0,0.665734 -25006,1015:132,152,3,0,0,0.666008 -25007,1015:133,153,3,0,0,0.666442 -25008,1015:134,154,3,0,0,0.666031 -25009,1015:235,155,3,0,0,0.664795 -25010,1015:236,156,3,0,0,0.663948 -25011,1015:237,157,3,0,0,0.662984 -25012,1015:238,158,3,0,0,0.660915 -25013,1015:239,159,3,0,0,0.661076 -25014,1016:130,160,3,0,0,0.662157 -25015,1016:131,161,3,0,0,0.661214 -25016,1016:132,162,3,0,0,0.659186 -25017,1016:133,163,3,0,0,0.657869 -25018,1016:134,164,3,0,0,0.657499 -25019,1016:235,165,3,0,0,0.657291 -25020,1016:236,166,3,0,0,0.657892 -25021,1016:237,167,3,0,0,0.65847 -25022,1016:238,168,3,0,0,0.658724 -25023,1016:239,169,3,0,0,0.651528 -25024,1017:130,170,3,0,0,0.651389 -25025,1017:131,171,3,0,0,0.655599 -25026,1017:132,172,3,0,0,0.644451 -25027,1017:133,173,3,0,0,0.647834 -25028,1017:134,174,3,0,0,0.653531 -25029,1017:235,175,3,0,0,0.657268 -25030,1017:236,176,3,0,0,0.657106 -25031,1017:237,177,3,0,0,0.652088 -25032,1017:238,178,3,0,0,0.643603 -25033,1017:239,179,3,0,0,0.644545 -25034,1018:130,180,3,0,0,0.648841 -25035,7018:140,-180,4,0,0,0.638307 -25036,7017:249,-179,4,0,0,0.637452 -25037,7017:248,-178,4,0,0,0.636835 -25038,7017:247,-177,4,0,0,0.637238 -25039,7017:246,-176,4,0,0,0.635812 -25040,7017:245,-175,4,0,0,0.634384 -25041,7017:144,-174,4,0,0,0.63436 -25042,7017:143,-173,4,0,0,0.634717 -25043,7017:142,-172,4,0,0,0.63486 -25044,7017:141,-171,4,0,0,0.63374 -25045,7017:140,-170,4,0,0,0.630682 -25046,7016:249,-169,4,0,0,0.62759 -25047,7016:248,-168,4,0,0,0.62622 -25048,7016:247,-167,4,0,0,0.626412 -25049,7016:246,-166,4,0,0,0.628166 -25050,7016:245,-165,4,0,0,0.629197 -25051,7016:144,-164,4,0,0,0.63018 -25052,7016:143,-163,4,0,0,0.629844 -25053,7016:142,-162,4,0,0,0.629269 -25054,7016:141,-161,4,0,0,0.628357 -25055,7016:140,-160,4,0,0,0.626028 -25056,7015:249,-159,4,0,0,0.624222 -25057,7015:248,-158,4,0,0,0.623643 -25058,7015:247,-157,4,0,0,0.622243 -25059,7015:246,-156,4,0,0,0.623547 -25060,7015:245,-155,4,0,0,0.626725 -25061,7015:144,-154,4,0,0,0.627349 -25062,7015:143,-153,4,0,0,0.624391 -25063,7015:142,-152,4,0,0,0.620285 -25064,7015:141,-151,4,0,0,0.61842 -25065,7015:140,-150,4,0,0,0.618832 -25066,7014:249,-149,4,0,0,0.619244 -25067,7014:248,-148,4,0,0,0.618541 -25068,7014:247,-147,4,0,0,0.61859 -25069,7014:246,-146,4,0,0,0.619462 -25070,7014:245,-145,4,0,0,0.618978 -25071,7014:144,-144,4,0,0,0.614485 -25072,7014:143,-143,4,0,0,0.607721 -25073,7014:142,-142,4,0,0,0.607451 -25074,7014:141,-141,4,0,0,0.611096 -25075,7014:140,-140,4,0,0,0.617231 -25076,7013:249,-139,4,0,0,0.620575 -25077,7013:248,-138,4,0,0,0.621978 -25078,7013:247,-137,4,0,0,0.620696 -25079,7013:246,-136,4,0,0,0.618905 -25080,7013:245,-135,4,0,0,0.618686 -25081,7013:144,-134,4,0,0,0.618735 -25082,7013:143,-133,4,0,0,0.618274 -25083,7013:142,-132,4,0,0,0.61728 -25084,7013:141,-131,4,0,0,0.619777 -25085,7013:140,-130,4,0,0,0.624174 -25086,7012:249,-129,4,0,0,0.624848 -25087,7012:248,-128,4,0,0,0.623426 -25088,7012:247,-127,4,0,0,0.622823 -25089,7012:246,-126,4,0,0,0.624463 -25090,7012:245,-125,4,0,0,0.627637 -25091,7012:144,-124,4,0,0,0.63128 -25092,7012:143,-123,4,0,0,0.633573 -25093,7012:142,-122,4,0,0,0.634431 -25094,7012:141,-121,4,0,0,0.635217 -25095,7012:140,-120,4,0,0,0.636526 -25096,7011:249,-119,4,0,0,0.637452 -25097,7011:248,-118,4,0,0,0.637096 -25098,7011:247,-117,4,0,0,0.635883 -25099,7011:246,-116,4,0,0,0.634622 -25100,7011:245,-115,4,0,0,0.633645 -25101,7011:144,-114,4,0,0,0.633239 -25102,7011:143,-113,4,0,0,0.63343 -25103,7011:142,-112,4,0,0,0.632977 -25104,7011:141,-111,4,0,0,0.631495 -25105,7011:140,-110,4,0,0,0.630849 -25106,7010:249,-109,4,0,0,0.630802 -25107,7010:248,-108,4,0,0,0.631352 -25108,7010:247,-107,4,0,0,0.634455 -25109,7010:246,-106,4,0,0,0.636906 -25110,7010:245,-105,4,0,0,0.633811 -25111,7010:144,-104,4,0,0,0.6267 -25112,7010:143,-103,4,0,0,0.622388 -25113,7010:142,-102,4,0,0,0.619656 -25114,7010:141,-101,4,0,0,0.616867 -25115,7010:140,-100,4,0,0,0.613437 -25116,7009:249,-99,4,0,0,0.613706 -25117,7009:248,-98,4,0,0,0.614996 -25118,7009:247,-97,4,0,0,0.617328 -25119,7009:246,-96,4,0,0,0.619825 -25120,7009:245,-95,4,0,0,0.622388 -25121,7009:144,-94,4,0,0,0.625209 -25122,7009:143,-93,4,0,0,0.622847 -25123,7009:142,-92,4,0,0,0.622074 -25124,7009:141,-91,4,0,0,0.618177 -25125,7009:140,-90,4,0,0,0.612731 -25126,7008:249,-89,4,0,0,0.620648 -25127,7008:248,-88,4,0,0,0.629533 -25128,7008:247,-87,4,0,0,0.638733 -25129,7008:246,-86,4,0,0,0.657453 -25130,7008:245,-85,4,0,0,0.656573 -25131,7008:142,-82,4,0,0,0.639492 -25132,7008:141,-81,4,0,0,0.635859 -25133,7008:140,-80,4,0,0,0.641172 -25134,7007:249,-79,4,0,0,0.642919 -25135,7007:248,-78,4,0,0,0.644216 -25136,7007:247,-77,4,0,0,0.653206 -25137,7007:246,-76,4,0,0,0.648326 -25138,7006:141,-61,4,0,0,0.623088 -25139,7006:140,-60,4,0,0,0.623812 -25140,7005:249,-59,4,0,0,0.627782 -25141,7005:248,-58,4,0,0,0.630634 -25142,7005:247,-57,4,0,0,0.631185 -25143,7005:246,-56,4,0,0,0.630849 -25144,7005:245,-55,4,0,0,0.631352 -25145,7005:144,-54,4,0,0,0.629533 -25146,7005:143,-53,4,0,0,0.629748 -25147,7005:142,-52,4,0,0,0.629149 -25148,7005:141,-51,4,0,0,0.630323 -25149,7005:140,-50,4,0,0,0.629964 -25150,7004:249,-49,4,0,0,0.629245 -25151,7004:248,-48,4,0,0,0.627517 -25152,7004:247,-47,4,0,0,0.626244 -25153,7004:246,-46,4,0,0,0.625113 -25154,7004:245,-45,4,0,0,0.623643 -25155,7004:144,-44,4,0,0,0.623233 -25156,7004:143,-43,4,0,0,0.623137 -25157,7004:142,-42,4,0,0,0.620769 -25158,7004:141,-41,4,0,0,0.618663 -25159,7004:140,-40,4,0,0,0.61745 -25160,7003:249,-39,4,0,0,0.61626 -25161,7003:248,-38,4,0,0,0.612902 -25162,7003:247,-37,4,0,0,0.607893 -25163,7003:246,-36,4,0,0,0.609606 -25164,7003:245,-35,4,0,0,0.608774 -25165,7003:144,-34,4,0,0,0.60657 -25166,7003:143,-33,4,0,0,0.609972 -25167,7003:142,-32,4,0,0,0.610241 -25168,7003:141,-31,4,0,0,0.610387 -25169,7003:140,-30,4,0,0,0.608652 -25170,7002:249,-29,4,0,0,0.611706 -25171,7002:248,-28,4,0,0,0.614217 -25172,7002:247,-27,4,0,0,0.61485 -25173,7002:246,-26,4,0,0,0.614947 -25174,7002:245,-25,4,0,0,0.616746 -25175,7002:144,-24,4,0,0,0.618541 -25176,7002:143,-23,4,0,0,0.622895 -25177,7002:142,-22,4,0,0,0.631304 -25178,7002:141,-21,4,0,0,0.634884 -25179,7002:140,-20,4,0,0,0.637571 -25180,7001:249,-19,4,0,0,0.64214 -25181,7001:248,-18,4,0,0,0.647083 -25182,7001:247,-17,4,0,0,0.648935 -25183,7001:246,-16,4,0,0,0.652181 -25184,7001:245,-15,4,0,0,0.655831 -25185,7001:144,-14,4,0,0,0.675199 -25186,1005:141,51,4,0,0,0.619317 -25187,1005:142,52,4,0,0,0.618177 -25188,1005:143,53,4,0,0,0.617134 -25189,1005:144,54,4,0,0,0.615726 -25190,1005:245,55,4,0,0,0.622847 -25191,1005:246,56,4,0,0,0.627829 -25192,1005:247,57,4,0,0,0.625787 -25193,1005:248,58,4,0,0,0.629581 -25194,1005:249,59,4,0,0,0.637381 -25195,1006:140,60,4,0,0,0.641337 -25196,1006:141,61,4,0,0,0.638235 -25197,1006:142,62,4,0,0,0.637238 -25198,1006:143,63,4,0,0,0.638116 -25199,1006:144,64,4,0,0,0.638805 -25200,1006:245,65,4,0,0,0.642259 -25201,1006:246,66,4,0,0,0.643179 -25202,1006:247,67,4,0,0,0.64405 -25203,1006:248,68,4,0,0,0.645933 -25204,1006:249,69,4,0,0,0.648817 -25205,1007:140,70,4,0,0,0.651411 -25206,1007:141,71,4,0,0,0.652717 -25207,1007:142,72,4,0,0,0.652461 -25208,1007:144,74,4,0,0,0.649005 -25209,1007:245,75,4,0,0,0.648091 -25210,1007:246,76,4,0,0,0.649075 -25211,1008:140,80,4,0,0,0.629581 -25212,1008:141,81,4,0,0,0.62807 -25213,1008:142,82,4,0,0,0.629101 -25214,1008:143,83,4,0,0,0.638188 -25215,1008:144,84,4,0,0,0.640415 -25216,1008:245,85,4,0,0,0.642046 -25217,1008:246,86,4,0,0,0.642636 -25218,1008:247,87,4,0,0,0.643438 -25219,1008:248,88,4,0,0,0.643344 -25220,1008:249,89,4,0,0,0.643414 -25221,1009:140,90,4,0,0,0.643768 -25222,1009:141,91,4,0,0,0.643697 -25223,1009:142,92,4,0,0,0.642802 -25224,1009:143,93,4,0,0,0.643084 -25225,1009:144,94,4,0,0,0.643461 -25226,1009:245,95,4,0,0,0.644922 -25227,1009:246,96,4,0,0,0.646191 -25228,1009:247,97,4,0,0,0.647013 -25229,1009:248,98,4,0,0,0.649473 -25230,1010:140,100,4,0,0,0.640841 -25231,1010:141,101,4,0,0,0.641597 -25232,1010:142,102,4,0,0,0.64077 -25233,1010:143,103,4,0,0,0.63852 -25234,1010:144,104,4,0,0,0.630443 -25235,1010:245,105,4,0,0,0.623643 -25236,1010:247,107,4,0,0,0.60728 -25237,1010:248,108,4,0,0,0.601458 -25238,1010:249,109,4,0,0,0.612658 -25239,1011:140,110,4,0,0,0.631089 -25240,1011:141,111,4,0,0,0.639468 -25241,1011:142,112,4,0,0,0.64077 -25242,1011:143,113,4,0,0,0.639752 -25243,1011:144,114,4,0,0,0.643532 -25244,1011:245,115,4,0,0,0.648162 -25245,1011:246,116,4,0,0,0.64863 -25246,1011:247,117,4,0,0,0.649613 -25247,1011:248,118,4,0,0,0.648091 -25248,1012:140,120,4,0,0,0.644286 -25249,1012:141,121,4,0,0,0.642424 -25250,1012:142,122,4,0,0,0.64051 -25251,1012:144,124,4,0,0,0.639089 -25252,1012:245,125,4,0,0,0.629029 -25253,1012:246,126,4,0,0,0.635979 -25254,1012:247,127,4,0,0,0.644922 -25255,1012:248,128,4,0,0,0.651131 -25256,1012:249,129,4,0,0,0.653531 -25257,1013:140,130,4,0,0,0.654299 -25258,1013:141,131,4,0,0,0.654694 -25259,1013:142,132,4,0,0,0.655019 -25260,1013:143,133,4,0,0,0.656016 -25261,1013:144,134,4,0,0,0.657962 -25262,1013:245,135,4,0,0,0.659994 -25263,1013:246,136,4,0,0,0.659786 -25264,1013:247,137,4,0,0,0.659394 -25265,1013:248,138,4,0,0,0.659786 -25266,1013:249,139,4,0,0,0.656897 -25267,1014:140,140,4,0,0,0.654856 -25268,1014:141,141,4,0,0,0.655901 -25269,1014:142,142,4,0,0,0.655437 -25270,1014:143,143,4,0,0,0.654903 -25271,1014:144,144,4,0,0,0.655808 -25272,1014:245,145,4,0,0,0.65736 -25273,1014:246,146,4,0,0,0.658978 -25274,1014:247,147,4,0,0,0.660408 -25275,1014:248,148,4,0,0,0.66103 -25276,1014:249,149,4,0,0,0.66126 -25277,1015:140,150,4,0,0,0.659947 -25278,1015:141,151,4,0,0,0.662732 -25279,1015:142,152,4,0,0,0.662892 -25280,1015:143,153,4,0,0,0.66172 -25281,1015:144,154,4,0,0,0.660132 -25282,1015:245,155,4,0,0,0.65914 -25283,1015:246,156,4,0,0,0.658077 -25284,1015:247,157,4,0,0,0.6578 -25285,1015:248,158,4,0,0,0.657407 -25286,1015:249,159,4,0,0,0.65655 -25287,1016:140,160,4,0,0,0.655413 -25288,1016:141,161,4,0,0,0.654043 -25289,1016:142,162,4,0,0,0.65281 -25290,1016:143,163,4,0,0,0.652088 -25291,1016:144,164,4,0,0,0.651855 -25292,1016:245,165,4,0,0,0.651738 -25293,1016:246,166,4,0,0,0.649426 -25294,1016:247,167,4,0,0,0.649706 -25295,1016:248,168,4,0,0,0.645698 -25296,1016:249,169,4,0,0,0.645556 -25297,1017:140,170,4,0,0,0.643603 -25298,1017:141,171,4,0,0,0.642848 -25299,1017:142,172,4,0,0,0.643202 -25300,1017:143,173,4,0,0,0.643932 -25301,1017:144,174,4,0,0,0.64431 -25302,1017:245,175,4,0,0,0.642919 -25303,1017:246,176,4,0,0,0.63871 -25304,1017:247,177,4,0,0,0.635717 -25305,1017:248,178,4,0,0,0.635812 -25306,1017:249,179,4,0,0,0.637381 -25307,1018:140,180,4,0,0,0.638307 -25308,7018:350,-180,5,0,0,0.630418 -25309,7017:459,-179,5,0,0,0.629988 -25310,7017:458,-178,5,0,0,0.628861 -25311,7017:457,-177,5,0,0,0.62819 -25312,7017:456,-176,5,0,0,0.627614 -25313,7017:455,-175,5,0,0,0.626869 -25314,7017:354,-174,5,0,0,0.626629 -25315,7017:353,-173,5,0,0,0.626461 -25316,7017:352,-172,5,0,0,0.625498 -25317,7017:351,-171,5,0,0,0.623571 -25318,7017:350,-170,5,0,0,0.622026 -25319,7016:459,-169,5,0,0,0.621204 -25320,7016:458,-168,5,0,0,0.621639 -25321,7016:457,-167,5,0,0,0.622702 -25322,7016:456,-166,5,0,0,0.622847 -25323,7016:455,-165,5,0,0,0.621881 -25324,7016:354,-164,5,0,0,0.619971 -25325,7016:353,-163,5,0,0,0.617984 -25326,7016:352,-162,5,0,0,0.616187 -25327,7016:351,-161,5,0,0,0.615677 -25328,7016:350,-160,5,0,0,0.61502 -25329,7015:459,-159,5,0,0,0.614485 -25330,7015:458,-158,5,0,0,0.61317 -25331,7015:457,-157,5,0,0,0.612389 -25332,7015:456,-156,5,0,0,0.613023 -25333,7015:455,-155,5,0,0,0.615093 -25334,7015:354,-154,5,0,0,0.615895 -25335,7015:353,-153,5,0,0,0.615579 -25336,7015:352,-152,5,0,0,0.615069 -25337,7015:351,-151,5,0,0,0.613535 -25338,7015:350,-150,5,0,0,0.611292 -25339,7014:459,-149,5,0,0,0.60892 -25340,7014:458,-148,5,0,0,0.607501 -25341,7014:457,-147,5,0,0,0.606912 -25342,7014:456,-146,5,0,0,0.60522 -25343,7014:455,-145,5,0,0,0.603525 -25344,7014:354,-144,5,0,0,0.602885 -25345,7014:353,-143,5,0,0,0.602665 -25346,7014:352,-142,5,0,0,0.603328 -25347,7014:351,-141,5,0,0,0.603942 -25348,7014:350,-140,5,0,0,0.601015 -25349,7013:459,-139,5,0,0,0.598474 -25350,7013:458,-138,5,0,0,0.598104 -25351,7013:457,-137,5,0,0,0.601384 -25352,7013:456,-136,5,0,0,0.604311 -25353,7013:455,-135,5,0,0,0.606888 -25354,7013:354,-134,5,0,0,0.60826 -25355,7013:353,-133,5,0,0,0.605367 -25356,7013:352,-132,5,0,0,0.60323 -25357,7013:351,-131,5,0,0,0.607207 -25358,7013:350,-130,5,0,0,0.611194 -25359,7012:459,-129,5,0,0,0.612706 -25360,7012:458,-128,5,0,0,0.612877 -25361,7012:457,-127,5,0,0,0.613803 -25362,7012:456,-126,5,0,0,0.617134 -25363,7012:455,-125,5,0,0,0.620865 -25364,7012:354,-124,5,0,0,0.623523 -25365,7012:353,-123,5,0,0,0.625306 -25366,7012:352,-122,5,0,0,0.626941 -25367,7012:351,-121,5,0,0,0.629005 -25368,7012:350,-120,5,0,0,0.629317 -25369,7011:459,-119,5,0,0,0.628981 -25370,7011:458,-118,5,0,0,0.628022 -25371,7011:457,-117,5,0,0,0.627302 -25372,7011:456,-116,5,0,0,0.627061 -25373,7011:455,-115,5,0,0,0.626989 -25374,7011:354,-114,5,0,0,0.628237 -25375,7011:353,-113,5,0,0,0.629149 -25376,7011:352,-112,5,0,0,0.629964 -25377,7011:351,-111,5,0,0,0.630825 -25378,7011:350,-110,5,0,0,0.631878 -25379,7010:459,-109,5,0,0,0.632379 -25380,7010:458,-108,5,0,0,0.635455 -25381,7010:457,-107,5,0,0,0.639184 -25382,7010:456,-106,5,0,0,0.642825 -25383,7010:455,-105,5,0,0,0.6424 -25384,7010:354,-104,5,0,0,0.637404 -25385,7010:353,-103,5,0,0,0.630275 -25386,7010:352,-102,5,0,0,0.626532 -25387,7010:351,-101,5,0,0,0.625859 -25388,7010:350,-100,5,0,0,0.622219 -25389,7009:459,-99,5,0,0,0.613925 -25390,7009:458,-98,5,0,0,0.612926 -25391,7009:457,-97,5,0,0,0.61711 -25392,7009:456,-96,5,0,0,0.616211 -25393,7009:455,-95,5,0,0,0.626124 -25394,7009:354,-94,5,0,0,0.628622 -25395,7009:353,-93,5,0,0,0.62759 -25396,7009:352,-92,5,0,0,0.62994 -25397,7009:351,-91,5,0,0,0.626268 -25398,7009:350,-90,5,0,0,0.626052 -25399,7008:459,-89,5,0,0,0.6267 -25400,7008:458,-88,5,0,0,0.630418 -25401,7008:457,-87,5,0,0,0.641195 -25402,7008:456,-86,5,0,0,0.645956 -25403,7008:353,-83,5,0,0,0.63517 -25404,7008:352,-82,5,0,0,0.629197 -25405,7008:351,-81,5,0,0,0.629677 -25406,7008:350,-80,5,0,0,0.62994 -25407,7007:459,-79,5,0,0,0.63455 -25408,7007:458,-78,5,0,0,0.641054 -25409,7007:457,-77,5,0,0,0.646708 -25410,7007:456,-76,5,0,0,0.64605 -25411,7007:455,-75,5,0,0,0.629005 -25412,7007:351,-71,5,0,0,0.632451 -25413,7006:458,-68,5,0,0,0.599141 -25414,7006:457,-67,5,0,0,0.607819 -25415,7006:456,-66,5,0,0,0.610925 -25416,7006:455,-65,5,0,0,0.615726 -25417,7006:354,-64,5,0,0,0.603451 -25418,7006:353,-63,5,0,0,0.602885 -25419,7006:352,-62,5,0,0,0.618566 -25420,7006:351,-61,5,0,0,0.625281 -25421,7006:350,-60,5,0,0,0.629844 -25422,7005:459,-59,5,0,0,0.631256 -25423,7005:458,-58,5,0,0,0.631065 -25424,7005:457,-57,5,0,0,0.629916 -25425,7005:456,-56,5,0,0,0.630443 -25426,7005:455,-55,5,0,0,0.63006 -25427,7005:354,-54,5,0,0,0.629988 -25428,7005:353,-53,5,0,0,0.627998 -25429,7005:352,-52,5,0,0,0.628094 -25430,7005:351,-51,5,0,0,0.62843 -25431,7005:350,-50,5,0,0,0.627061 -25432,7004:459,-49,5,0,0,0.624993 -25433,7004:458,-48,5,0,0,0.619631 -25434,7004:457,-47,5,0,0,0.616503 -25435,7004:456,-46,5,0,0,0.61502 -25436,7004:455,-45,5,0,0,0.614095 -25437,7004:354,-44,5,0,0,0.614606 -25438,7004:353,-43,5,0,0,0.613778 -25439,7004:352,-42,5,0,0,0.608897 -25440,7004:351,-41,5,0,0,0.605736 -25441,7004:350,-40,5,0,0,0.606888 -25442,7003:459,-39,5,0,0,0.606766 -25443,7003:458,-38,5,0,0,0.603402 -25444,7003:457,-37,5,0,0,0.600349 -25445,7003:456,-36,5,0,0,0.598104 -25446,7003:455,-35,5,0,0,0.597857 -25447,7003:354,-34,5,0,0,0.598104 -25448,7003:353,-33,5,0,0,0.600966 -25449,7003:352,-32,5,0,0,0.599955 -25450,7003:351,-31,5,0,0,0.597857 -25451,7003:350,-30,5,0,0,0.599066 -25452,7002:459,-29,5,0,0,0.602197 -25453,7002:458,-28,5,0,0,0.604361 -25454,7002:457,-27,5,0,0,0.605343 -25455,7002:456,-26,5,0,0,0.607329 -25456,7002:455,-25,5,0,0,0.607819 -25457,7002:354,-24,5,0,0,0.611121 -25458,7002:353,-23,5,0,0,0.617353 -25459,7002:352,-22,5,0,0,0.619293 -25460,7002:351,-21,5,0,0,0.621156 -25461,7002:350,-20,5,0,0,0.63128 -25462,7001:459,-19,5,0,0,0.631782 -25463,7001:458,-18,5,0,0,0.635503 -25464,7001:457,-17,5,0,0,0.645134 -25465,7001:456,-16,5,0,0,0.657175 -25466,1004:354,44,5,0,0,0.598104 -25467,1004:455,45,5,0,0,0.59998 -25468,1004:456,46,5,0,0,0.59719 -25469,1004:457,47,5,0,0,0.589729 -25470,1005:351,51,5,0,0,0.599757 -25471,1005:352,52,5,0,0,0.614461 -25472,1005:353,53,5,0,0,0.614071 -25473,1005:354,54,5,0,0,0.614169 -25474,1005:455,55,5,0,0,0.614387 -25475,1005:456,56,5,0,0,0.615774 -25476,1005:457,57,5,0,0,0.616455 -25477,1005:458,58,5,0,0,0.616867 -25478,1005:459,59,5,0,0,0.623981 -25479,1006:350,60,5,0,0,0.629533 -25480,1006:351,61,5,0,0,0.629988 -25481,1006:352,62,5,0,0,0.63331 -25482,1006:353,63,5,0,0,0.636574 -25483,1006:354,64,5,0,0,0.636977 -25484,1006:455,65,5,0,0,0.638852 -25485,1006:456,66,5,0,0,0.639326 -25486,1006:457,67,5,0,0,0.639776 -25487,1006:458,68,5,0,0,0.641148 -25488,1006:459,69,5,0,0,0.645204 -25489,1007:350,70,5,0,0,0.648677 -25490,1007:351,71,5,0,0,0.650804 -25491,1007:352,72,5,0,0,0.651924 -25492,1007:354,74,5,0,0,0.652321 -25493,1007:455,75,5,0,0,0.651738 -25494,1007:456,76,5,0,0,0.652158 -25495,1008:351,81,5,0,0,0.616308 -25496,1008:352,82,5,0,0,0.628694 -25497,1008:353,83,5,0,0,0.635432 -25498,1008:354,84,5,0,0,0.633883 -25499,1008:455,85,5,0,0,0.639752 -25500,1008:456,86,5,0,0,0.641952 -25501,1008:457,87,5,0,0,0.642754 -25502,1008:458,88,5,0,0,0.64372 -25503,1008:459,89,5,0,0,0.644851 -25504,1009:350,90,5,0,0,0.644639 -25505,1009:351,91,5,0,0,0.644404 -25506,1009:352,92,5,0,0,0.644568 -25507,1009:353,93,5,0,0,0.64565 -25508,1009:354,94,5,0,0,0.643697 -25509,1009:455,95,5,0,0,0.643273 -25510,1009:456,96,5,0,0,0.64398 -25511,1009:457,97,5,0,0,0.644522 -25512,1009:458,98,5,0,0,0.646121 -25513,1010:350,100,5,0,0,0.637238 -25514,1010:351,101,5,0,0,0.63788 -25515,1010:352,102,5,0,0,0.641432 -25516,1010:353,103,5,0,0,0.636502 -25517,1010:459,109,5,0,0,0.598005 -25518,1011:350,110,5,0,0,0.615531 -25519,1011:351,111,5,0,0,0.631591 -25520,1011:352,112,5,0,0,0.634979 -25521,1011:353,113,5,0,0,0.626893 -25522,1011:354,114,5,0,0,0.632666 -25523,1011:455,115,5,0,0,0.642848 -25524,1011:456,116,5,0,0,0.646309 -25525,1011:457,117,5,0,0,0.644216 -25526,1011:458,118,5,0,0,0.647786 -25527,1011:459,119,5,0,0,0.644545 -25528,1012:350,120,5,0,0,0.641243 -25529,1012:351,121,5,0,0,0.639776 -25530,1012:352,122,5,0,0,0.637333 -25531,1012:354,124,5,0,0,0.639586 -25532,1012:456,126,5,0,0,0.633287 -25533,1012:457,127,5,0,0,0.642117 -25534,1012:458,128,5,0,0,0.647036 -25535,1012:459,129,5,0,0,0.6498 -25536,1013:350,130,5,0,0,0.651762 -25537,1013:351,131,5,0,0,0.653206 -25538,1013:352,132,5,0,0,0.654113 -25539,1013:353,133,5,0,0,0.654949 -25540,1013:354,134,5,0,0,0.656526 -25541,1013:455,135,5,0,0,0.657892 -25542,1013:456,136,5,0,0,0.655158 -25543,1013:457,137,5,0,0,0.65409 -25544,1013:458,138,5,0,0,0.653462 -25545,1013:459,139,5,0,0,0.652368 -25546,1014:350,140,5,0,0,0.652274 -25547,1014:351,141,5,0,0,0.652274 -25548,1014:352,142,5,0,0,0.652111 -25549,1014:353,143,5,0,0,0.651902 -25550,1014:354,144,5,0,0,0.651878 -25551,1014:455,145,5,0,0,0.652437 -25552,1014:456,146,5,0,0,0.653438 -25553,1014:457,147,5,0,0,0.654415 -25554,1014:458,148,5,0,0,0.654996 -25555,1014:459,149,5,0,0,0.655274 -25556,1015:350,150,5,0,0,0.655669 -25557,1015:351,151,5,0,0,0.655715 -25558,1015:352,152,5,0,0,0.655182 -25559,1015:353,153,5,0,0,0.654206 -25560,1015:354,154,5,0,0,0.653508 -25561,1015:455,155,5,0,0,0.653602 -25562,1015:456,156,5,0,0,0.653648 -25563,1015:457,157,5,0,0,0.652973 -25564,1015:458,158,5,0,0,0.652321 -25565,1015:459,159,5,0,0,0.651085 -25566,1016:350,160,5,0,0,0.649028 -25567,1016:351,161,5,0,0,0.646872 -25568,1016:352,162,5,0,0,0.64372 -25569,1016:353,163,5,0,0,0.643674 -25570,1016:354,164,5,0,0,0.644333 -25571,1016:455,165,5,0,0,0.643061 -25572,1016:456,166,5,0,0,0.640297 -25573,1016:458,168,5,0,0,0.636478 -25574,1016:459,169,5,0,0,0.638212 -25575,1017:351,171,5,0,0,0.63636 -25576,1017:352,172,5,0,0,0.635883 -25577,1017:353,173,5,0,0,0.634479 -25578,1017:354,174,5,0,0,0.632929 -25579,1017:455,175,5,0,0,0.63226 -25580,1017:456,176,5,0,0,0.631997 -25581,1017:457,177,5,0,0,0.630898 -25582,1017:458,178,5,0,0,0.629892 -25583,1017:459,179,5,0,0,0.629964 -25584,1018:350,180,5,0,0,0.630418 -25585,7018:360,-180,6,0,0,0.624077 -25586,7017:469,-179,6,0,0,0.623691 -25587,7017:468,-178,6,0,0,0.623547 -25588,7017:467,-177,6,0,0,0.623787 -25589,7017:466,-176,6,0,0,0.623691 -25590,7017:465,-175,6,0,0,0.622944 -25591,7017:364,-174,6,0,0,0.62176 -25592,7017:363,-173,6,0,0,0.620575 -25593,7017:362,-172,6,0,0,0.619753 -25594,7017:361,-171,6,0,0,0.619026 -25595,7017:360,-170,6,0,0,0.617717 -25596,7016:469,-169,6,0,0,0.617305 -25597,7016:468,-168,6,0,0,0.617134 -25598,7016:467,-167,6,0,0,0.614461 -25599,7016:466,-166,6,0,0,0.611389 -25600,7016:465,-165,6,0,0,0.609826 -25601,7016:364,-164,6,0,0,0.608994 -25602,7016:363,-163,6,0,0,0.609141 -25603,7016:362,-162,6,0,0,0.608652 -25604,7016:361,-161,6,0,0,0.607746 -25605,7016:360,-160,6,0,0,0.607256 -25606,7015:469,-159,6,0,0,0.606668 -25607,7015:468,-158,6,0,0,0.605417 -25608,7015:467,-157,6,0,0,0.604238 -25609,7015:466,-156,6,0,0,0.60495 -25610,7015:465,-155,6,0,0,0.607893 -25611,7015:364,-154,6,0,0,0.61007 -25612,7015:363,-153,6,0,0,0.608481 -25613,7015:362,-152,6,0,0,0.604975 -25614,7015:361,-151,6,0,0,0.603771 -25615,7015:360,-150,6,0,0,0.605319 -25616,7014:469,-149,6,0,0,0.604778 -25617,7014:468,-148,6,0,0,0.602443 -25618,7014:467,-147,6,0,0,0.600374 -25619,7014:466,-146,6,0,0,0.599609 -25620,7014:465,-145,6,0,0,0.597362 -25621,7014:364,-144,6,0,0,0.59484 -25622,7014:363,-143,6,0,0,0.593031 -25623,7014:362,-142,6,0,0,0.593601 -25624,7014:361,-141,6,0,0,0.596225 -25625,7014:360,-140,6,0,0,0.595359 -25626,7013:469,-139,6,0,0,0.590797 -25627,7013:468,-138,6,0,0,0.587714 -25628,7013:467,-137,6,0,0,0.591616 -25629,7013:466,-136,6,0,0,0.593873 -25630,7013:465,-135,6,0,0,0.594765 -25631,7013:364,-134,6,0,0,0.596053 -25632,7013:363,-133,6,0,0,0.598499 -25633,7013:362,-132,6,0,0,0.599881 -25634,7013:361,-131,6,0,0,0.598005 -25635,7013:360,-130,6,0,0,0.597165 -25636,7012:469,-129,6,0,0,0.597956 -25637,7012:468,-128,6,0,0,0.601138 -25638,7012:467,-127,6,0,0,0.607476 -25639,7012:466,-126,6,0,0,0.613194 -25640,7012:465,-125,6,0,0,0.616065 -25641,7012:364,-124,6,0,0,0.61762 -25642,7012:363,-123,6,0,0,0.619341 -25643,7012:362,-122,6,0,0,0.620865 -25644,7012:361,-121,6,0,0,0.622219 -25645,7012:360,-120,6,0,0,0.622678 -25646,7011:469,-119,6,0,0,0.622171 -25647,7011:468,-118,6,0,0,0.621325 -25648,7011:467,-117,6,0,0,0.621446 -25649,7011:466,-116,6,0,0,0.622122 -25650,7011:465,-115,6,0,0,0.623908 -25651,7011:364,-114,6,0,0,0.626725 -25652,7011:363,-113,6,0,0,0.629461 -25653,7011:362,-112,6,0,0,0.631424 -25654,7011:361,-111,6,0,0,0.631902 -25655,7011:360,-110,6,0,0,0.632164 -25656,7010:469,-109,6,0,0,0.632905 -25657,7010:468,-108,6,0,0,0.634336 -25658,7010:467,-107,6,0,0,0.637832 -25659,7010:466,-106,6,0,0,0.641314 -25660,7010:465,-105,6,0,0,0.642259 -25661,7010:364,-104,6,0,0,0.638733 -25662,7010:363,-103,6,0,0,0.634789 -25663,7010:362,-102,6,0,0,0.634336 -25664,7010:361,-101,6,0,0,0.642447 -25665,7010:360,-100,6,0,0,0.643792 -25666,7009:469,-99,6,0,0,0.63674 -25667,7009:468,-98,6,0,0,0.642259 -25668,7009:467,-97,6,0,0,0.622871 -25669,7009:466,-96,6,0,0,0.611219 -25670,7009:465,-95,6,0,0,0.624848 -25671,7009:364,-94,6,0,0,0.642542 -25672,7009:363,-93,6,0,0,0.641125 -25673,7009:362,-92,6,0,0,0.640486 -25674,7009:361,-91,6,0,0,0.639965 -25675,7009:360,-90,6,0,0,0.649496 -25676,7008:469,-89,6,0,0,0.647412 -25677,7008:468,-88,6,0,0,0.643956 -25678,7008:363,-83,6,0,0,0.632785 -25679,7008:362,-82,6,0,0,0.635027 -25680,7008:361,-81,6,0,0,0.63424 -25681,7008:360,-80,6,0,0,0.637167 -25682,7007:469,-79,6,0,0,0.638544 -25683,7007:468,-78,6,0,0,0.637096 -25684,7007:467,-77,6,0,0,0.634789 -25685,7007:466,-76,6,0,0,0.632881 -25686,7007:465,-75,6,0,0,0.630418 -25687,7007:364,-74,6,0,0,0.626268 -25688,7007:363,-73,6,0,0,0.62557 -25689,7007:362,-72,6,0,0,0.61694 -25690,7007:361,-71,6,0,0,0.610999 -25691,7006:469,-69,6,0,0,0.624463 -25692,7006:468,-68,6,0,0,0.62545 -25693,7006:467,-67,6,0,0,0.630587 -25694,7006:466,-66,6,0,0,0.635146 -25695,7006:465,-65,6,0,0,0.634455 -25696,7006:364,-64,6,0,0,0.633048 -25697,7006:363,-63,6,0,0,0.632785 -25698,7006:362,-62,6,0,0,0.633239 -25699,7006:361,-61,6,0,0,0.633955 -25700,7006:360,-60,6,0,0,0.632045 -25701,7005:469,-59,6,0,0,0.631328 -25702,7005:468,-58,6,0,0,0.631424 -25703,7005:467,-57,6,0,0,0.628814 -25704,7005:466,-56,6,0,0,0.627662 -25705,7005:465,-55,6,0,0,0.62771 -25706,7005:364,-54,6,0,0,0.627733 -25707,7005:363,-53,6,0,0,0.627614 -25708,7005:362,-52,6,0,0,0.626268 -25709,7005:361,-51,6,0,0,0.625113 -25710,7005:360,-50,6,0,0,0.623305 -25711,7004:469,-49,6,0,0,0.62118 -25712,7004:468,-48,6,0,0,0.618153 -25713,7004:467,-47,6,0,0,0.613437 -25714,7004:466,-46,6,0,0,0.611096 -25715,7004:465,-45,6,0,0,0.609483 -25716,7004:364,-44,6,0,0,0.608823 -25717,7004:363,-43,6,0,0,0.605784 -25718,7004:362,-42,6,0,0,0.60259 -25719,7004:361,-41,6,0,0,0.600793 -25720,7004:360,-40,6,0,0,0.598721 -25721,7003:469,-39,6,0,0,0.595954 -25722,7003:468,-38,6,0,0,0.592559 -25723,7003:467,-37,6,0,0,0.590797 -25724,7003:466,-36,6,0,0,0.590673 -25725,7003:465,-35,6,0,0,0.590499 -25726,7003:364,-34,6,0,0,0.59035 -25727,7003:363,-33,6,0,0,0.589629 -25728,7003:362,-32,6,0,0,0.589455 -25729,7003:361,-31,6,0,0,0.590574 -25730,7003:360,-30,6,0,0,0.592708 -25731,7002:469,-29,6,0,0,0.594666 -25732,7002:468,-28,6,0,0,0.593848 -25733,7002:467,-27,6,0,0,0.59246 -25734,7002:466,-26,6,0,0,0.594146 -25735,7002:465,-25,6,0,0,0.596077 -25736,7002:364,-24,6,0,0,0.600177 -25737,7002:363,-23,6,0,0,0.599831 -25738,7002:362,-22,6,0,0,0.598079 -25739,7002:361,-21,6,0,0,0.59924 -25740,7002:360,-20,6,0,0,0.609533 -25741,7001:469,-19,6,0,0,0.620334 -25742,7001:468,-18,6,0,0,0.621591 -25743,7001:467,-17,6,0,0,0.627374 -25744,1004:363,43,6,0,0,0.5984 -25745,1004:465,45,6,0,0,0.595334 -25746,1004:466,46,6,0,0,0.591269 -25747,1004:467,47,6,0,0,0.587888 -25748,1004:468,48,6,0,0,0.58612 -25749,1004:469,49,6,0,0,0.584573 -25750,1005:360,50,6,0,0,0.589654 -25751,1005:361,51,6,0,0,0.606055 -25752,1005:362,52,6,0,0,0.609238 -25753,1005:363,53,6,0,0,0.605417 -25754,1005:364,54,6,0,0,0.602492 -25755,1005:465,55,6,0,0,0.601458 -25756,1005:466,56,6,0,0,0.607599 -25757,1005:467,57,6,0,0,0.609263 -25758,1005:468,58,6,0,0,0.609336 -25759,1005:469,59,6,0,0,0.613242 -25760,1006:360,60,6,0,0,0.61609 -25761,1006:361,61,6,0,0,0.619487 -25762,1006:362,62,6,0,0,0.623908 -25763,1006:363,63,6,0,0,0.626436 -25764,1006:364,64,6,0,0,0.628118 -25765,1006:465,65,6,0,0,0.632236 -25766,1006:466,66,6,0,0,0.637381 -25767,1006:467,67,6,0,0,0.640534 -25768,1006:468,68,6,0,0,0.641006 -25769,1006:469,69,6,0,0,0.642636 -25770,1007:360,70,6,0,0,0.646943 -25771,1007:361,71,6,0,0,0.649262 -25772,1007:362,72,6,0,0,0.650478 -25773,1007:364,74,6,0,0,0.654438 -25774,1007:465,75,6,0,0,0.654485 -25775,1008:361,81,6,0,0,0.617717 -25776,1008:362,82,6,0,0,0.62234 -25777,1008:363,83,6,0,0,0.632785 -25778,1008:364,84,6,0,0,0.633454 -25779,1008:465,85,6,0,0,0.635955 -25780,1008:466,86,6,0,0,0.641243 -25781,1008:467,87,6,0,0,0.642778 -25782,1008:468,88,6,0,0,0.643249 -25783,1008:469,89,6,0,0,0.642684 -25784,1009:360,90,6,0,0,0.6424 -25785,1009:361,91,6,0,0,0.641998 -25786,1009:362,92,6,0,0,0.646895 -25787,1009:364,94,6,0,0,0.643862 -25788,1009:465,95,6,0,0,0.643344 -25789,1009:466,96,6,0,0,0.640723 -25790,1009:467,97,6,0,0,0.644098 -25791,1009:468,98,6,0,0,0.643815 -25792,1010:361,101,6,0,0,0.630945 -26226,7007:486,-76,8,0,0,0.64266 -25793,1011:360,110,6,0,0,0.591194 -25794,1011:361,111,6,0,0,0.622606 -25795,1011:362,112,6,0,0,0.621083 -25796,1011:363,113,6,0,0,0.614314 -25797,1011:364,114,6,0,0,0.608162 -25798,1011:465,115,6,0,0,0.634932 -25799,1011:466,116,6,0,0,0.642447 -25800,1011:467,117,6,0,0,0.638757 -25801,1011:468,118,6,0,0,0.635646 -25802,1011:469,119,6,0,0,0.644639 -25803,1012:360,120,6,0,0,0.641668 -25804,1012:361,121,6,0,0,0.637309 -25805,1012:362,122,6,0,0,0.63331 -25806,1012:363,123,6,0,0,0.629533 -25807,1012:364,124,6,0,0,0.616673 -25808,1012:465,125,6,0,0,0.634288 -25809,1012:466,126,6,0,0,0.634717 -25810,1012:467,127,6,0,0,0.638591 -25811,1012:468,128,6,0,0,0.642188 -25812,1012:469,129,6,0,0,0.645368 -25813,1013:360,130,6,0,0,0.648115 -25814,1013:361,131,6,0,0,0.649823 -25815,1013:362,132,6,0,0,0.650385 -25816,1013:363,133,6,0,0,0.650665 -25817,1013:364,134,6,0,0,0.65001 -25818,1013:465,135,6,0,0,0.649987 -25819,1013:466,136,6,0,0,0.650594 -25820,1013:467,137,6,0,0,0.649917 -25821,1013:468,138,6,0,0,0.648771 -25822,1013:469,139,6,0,0,0.64774 -25823,1014:360,140,6,0,0,0.647786 -25824,1014:361,141,6,0,0,0.647716 -25825,1014:362,142,6,0,0,0.64788 -25826,1014:363,143,6,0,0,0.64863 -25827,1014:364,144,6,0,0,0.649309 -25828,1014:465,145,6,0,0,0.649309 -25829,1014:466,146,6,0,0,0.64994 -25830,1014:467,147,6,0,0,0.650291 -25831,1014:468,148,6,0,0,0.650314 -25832,1014:469,149,6,0,0,0.649777 -25833,1015:360,150,6,0,0,0.648982 -25834,1015:361,151,6,0,0,0.648302 -25835,1015:362,152,6,0,0,0.647623 -25836,1015:363,153,6,0,0,0.646966 -25837,1015:364,154,6,0,0,0.646684 -25838,1015:465,155,6,0,0,0.646496 -25839,1015:466,156,6,0,0,0.645862 -25840,1015:467,157,6,0,0,0.645039 -25841,1015:468,158,6,0,0,0.644451 -25842,1015:469,159,6,0,0,0.643202 -25843,1016:360,160,6,0,0,0.641243 -25844,1016:361,161,6,0,0,0.639965 -25845,1016:362,162,6,0,0,0.6389 -25846,1016:363,163,6,0,0,0.637666 -25847,1016:364,164,6,0,0,0.636241 -25848,1016:465,165,6,0,0,0.634479 -25849,1016:466,166,6,0,0,0.633549 -25850,1016:467,167,6,0,0,0.632785 -25851,1016:468,168,6,0,0,0.630658 -25852,1016:469,169,6,0,0,0.628646 -25853,1017:360,170,6,0,0,0.62795 -25854,1017:361,171,6,0,0,0.628094 -25855,1017:362,172,6,0,0,0.629101 -25856,1017:363,173,6,0,0,0.629005 -25857,1017:364,174,6,0,0,0.628622 -25858,1017:465,175,6,0,0,0.627854 -25859,1017:466,176,6,0,0,0.626941 -25860,1017:467,177,6,0,0,0.625402 -25861,1017:468,178,6,0,0,0.62504 -25862,1017:469,179,6,0,0,0.624391 -25863,1018:360,180,6,0,0,0.624077 -25864,7018:370,-180,7,0,0,0.61762 -25865,7017:479,-179,7,0,0,0.615726 -25866,7017:478,-178,7,0,0,0.614631 -25867,7017:477,-177,7,0,0,0.614582 -25868,7017:476,-176,7,0,0,0.615312 -25869,7017:475,-175,7,0,0,0.615531 -25870,7017:374,-174,7,0,0,0.613706 -25871,7017:373,-173,7,0,0,0.611145 -25872,7017:372,-172,7,0,0,0.610803 -25873,7017:371,-171,7,0,0,0.612097 -25874,7017:370,-170,7,0,0,0.612682 -25875,7016:479,-169,7,0,0,0.612389 -25876,7016:478,-168,7,0,0,0.611438 -25877,7016:477,-167,7,0,0,0.610827 -25878,7016:476,-166,7,0,0,0.609728 -25879,7016:475,-165,7,0,0,0.608284 -25880,7016:374,-164,7,0,0,0.607231 -25881,7016:373,-163,7,0,0,0.60701 -25882,7016:372,-162,7,0,0,0.60679 -25883,7016:371,-161,7,0,0,0.60576 -25884,7016:370,-160,7,0,0,0.605662 -25885,7015:479,-159,7,0,0,0.604656 -25886,7015:478,-158,7,0,0,0.602836 -25887,7015:477,-157,7,0,0,0.601015 -25888,7015:476,-156,7,0,0,0.59877 -25889,7015:475,-155,7,0,0,0.597782 -25890,7015:374,-154,7,0,0,0.59766 -25891,7015:373,-153,7,0,0,0.598647 -25892,7015:372,-152,7,0,0,0.599091 -25893,7015:371,-151,7,0,0,0.597362 -25894,7015:370,-150,7,0,0,0.598993 -25895,7014:479,-149,7,0,0,0.601606 -25896,7014:478,-148,7,0,0,0.599042 -25897,7014:477,-147,7,0,0,0.592907 -25898,7014:476,-146,7,0,0,0.595087 -25899,7014:475,-145,7,0,0,0.593353 -25900,7014:374,-144,7,0,0,0.589505 -25901,7014:373,-143,7,0,0,0.588659 -25902,7014:372,-142,7,0,0,0.589629 -25903,7014:371,-141,7,0,0,0.591989 -25904,7014:370,-140,7,0,0,0.593006 -25905,7013:479,-139,7,0,0,0.586717 -25906,7013:478,-138,7,0,0,0.581376 -25907,7013:477,-137,7,0,0,0.584474 -25908,7013:476,-136,7,0,0,0.585147 -25909,7013:475,-135,7,0,0,0.584099 -25910,7013:374,-134,7,0,0,0.583924 -25911,7013:373,-133,7,0,0,0.585147 -25912,7013:372,-132,7,0,0,0.584124 -25913,7013:371,-131,7,0,0,0.583025 -25914,7013:370,-130,7,0,0,0.585347 -25915,7012:479,-129,7,0,0,0.590176 -25916,7012:478,-128,7,0,0,0.595186 -25917,7012:477,-127,7,0,0,0.598153 -25918,7012:476,-126,7,0,0,0.601926 -25919,7012:475,-125,7,0,0,0.604729 -25920,7012:374,-124,7,0,0,0.605588 -25921,7012:373,-123,7,0,0,0.606201 -25922,7012:372,-122,7,0,0,0.606472 -25923,7012:371,-121,7,0,0,0.607256 -25924,7012:370,-120,7,0,0,0.609312 -25925,7011:479,-119,7,0,0,0.612999 -25926,7011:478,-118,7,0,0,0.614582 -25927,7011:477,-117,7,0,0,0.615798 -25928,7011:476,-116,7,0,0,0.618105 -25929,7011:475,-115,7,0,0,0.621108 -25930,7011:374,-114,7,0,0,0.62275 -25931,7011:373,-113,7,0,0,0.622919 -25932,7011:372,-112,7,0,0,0.622967 -25933,7011:371,-111,7,0,0,0.626028 -25934,7011:370,-110,7,0,0,0.632905 -25935,7010:479,-109,7,0,0,0.637618 -25936,7010:478,-108,7,0,0,0.63852 -25937,7010:477,-107,7,0,0,0.63897 -25938,7010:476,-106,7,0,0,0.642447 -25939,7010:475,-105,7,0,0,0.648841 -25940,7010:374,-104,7,0,0,0.649426 -25941,7010:373,-103,7,0,0,0.640391 -25942,7010:372,-102,7,0,0,0.630611 -25943,7010:371,-101,7,0,0,0.632642 -25944,7010:370,-100,7,0,0,0.637998 -25945,7009:479,-99,7,0,0,0.635598 -25946,7009:478,-98,7,0,0,0.643838 -25947,7009:477,-97,7,0,0,0.638497 -25948,7009:476,-96,7,0,0,0.614314 -25949,7009:475,-95,7,0,0,0.638235 -25950,7009:374,-94,7,0,0,0.64987 -25951,7009:373,-93,7,0,0,0.645886 -25952,7009:372,-92,7,0,0,0.656596 -25953,7008:373,-83,7,0,0,0.624776 -25954,7008:372,-82,7,0,0,0.633501 -25955,7008:371,-81,7,0,0,0.639847 -25956,7008:370,-80,7,0,0,0.641857 -25957,7007:479,-79,7,0,0,0.640746 -25958,7007:478,-78,7,0,0,0.638473 -25959,7007:477,-77,7,0,0,0.635527 -25960,7007:476,-76,7,0,0,0.635646 -25961,7007:475,-75,7,0,0,0.636669 -25962,7007:374,-74,7,0,0,0.637975 -25963,7007:373,-73,7,0,0,0.636431 -25964,7007:372,-72,7,0,0,0.634003 -25965,7007:371,-71,7,0,0,0.633239 -25966,7007:370,-70,7,0,0,0.631902 -25967,7006:479,-69,7,0,0,0.630275 -25968,7006:478,-68,7,0,0,0.634288 -25969,7006:477,-67,7,0,0,0.635646 -25970,7006:476,-66,7,0,0,0.638947 -25971,7006:475,-65,7,0,0,0.6389 -25972,7006:374,-64,7,0,0,0.637143 -25973,7006:373,-63,7,0,0,0.635193 -25974,7006:372,-62,7,0,0,0.634145 -25975,7006:371,-61,7,0,0,0.631687 -25976,7006:370,-60,7,0,0,0.630802 -25977,7005:479,-59,7,0,0,0.629581 -25978,7005:478,-58,7,0,0,0.626436 -25979,7005:477,-57,7,0,0,0.62468 -25980,7005:476,-56,7,0,0,0.623305 -25981,7005:475,-55,7,0,0,0.623474 -25982,7005:374,-54,7,0,0,0.623185 -25983,7005:373,-53,7,0,0,0.622509 -25984,7005:372,-52,7,0,0,0.617862 -25985,7005:371,-51,7,0,0,0.614947 -25986,7005:370,-50,7,0,0,0.613097 -25987,7004:479,-49,7,0,0,0.61156 -25988,7004:478,-48,7,0,0,0.608554 -25989,7004:477,-47,7,0,0,0.603771 -25990,7004:476,-46,7,0,0,0.601088 -25991,7004:475,-45,7,0,0,0.60099 -25992,7004:374,-44,7,0,0,0.602246 -25993,7004:373,-43,7,0,0,0.5962 -25994,7004:372,-42,7,0,0,0.596473 -25995,7004:371,-41,7,0,0,0.595285 -25996,7004:370,-40,7,0,0,0.593204 -25997,7003:479,-39,7,0,0,0.591219 -25998,7003:478,-38,7,0,0,0.589952 -25999,7003:477,-37,7,0,0,0.589207 -26000,7003:476,-36,7,0,0,0.585297 -26001,7003:475,-35,7,0,0,0.577445 -26002,7003:374,-34,7,0,0,0.575865 -26003,7003:373,-33,7,0,0,0.57589 -26004,7003:372,-32,7,0,0,0.577144 -26005,7003:371,-31,7,0,0,0.578322 -26006,7003:370,-30,7,0,0,0.580201 -26007,7002:479,-29,7,0,0,0.579349 -26008,7002:478,-28,7,0,0,0.576116 -26009,7002:477,-27,7,0,0,0.577245 -26010,7002:476,-26,7,0,0,0.582401 -26011,7002:475,-25,7,0,0,0.584448 -26012,7002:374,-24,7,0,0,0.587141 -26013,7002:373,-23,7,0,0,0.584174 -26014,7002:372,-22,7,0,0,0.584249 -26015,7002:371,-21,7,0,0,0.588634 -26016,7002:370,-20,7,0,0,0.599091 -26017,7001:479,-19,7,0,0,0.603894 -26018,7001:478,-18,7,0,0,0.605465 -26019,1004:372,42,7,0,0,0.607672 -26020,1004:479,49,7,0,0,0.598203 -26021,1005:370,50,7,0,0,0.600966 -26022,1005:371,51,7,0,0,0.604213 -26023,1005:372,52,7,0,0,0.604361 -26024,1005:373,53,7,0,0,0.603402 -26025,1005:374,54,7,0,0,0.600818 -26026,1005:475,55,7,0,0,0.599881 -26027,1005:476,56,7,0,0,0.600325 -26028,1005:477,57,7,0,0,0.601286 -26029,1005:478,58,7,0,0,0.606153 -26030,1005:479,59,7,0,0,0.604729 -26031,1006:370,60,7,0,0,0.605539 -26032,1006:371,61,7,0,0,0.60728 -26033,1006:372,62,7,0,0,0.611853 -26034,1006:373,63,7,0,0,0.617838 -26035,1006:374,64,7,0,0,0.619172 -26036,1006:475,65,7,0,0,0.624655 -26037,1006:476,66,7,0,0,0.630802 -26038,1006:477,67,7,0,0,0.63405 -26039,1006:478,68,7,0,0,0.636645 -26040,1006:479,69,7,0,0,0.640273 -26041,1007:370,70,7,0,0,0.644686 -26042,1007:371,71,7,0,0,0.64706 -26043,1007:372,72,7,0,0,0.648841 -26044,1007:374,74,7,0,0,0.653415 -26045,1008:371,81,7,0,0,0.615409 -26046,1008:372,82,7,0,0,0.622195 -26047,1008:373,83,7,0,0,0.625715 -26048,1008:374,84,7,0,0,0.629484 -26049,1008:475,85,7,0,0,0.634884 -26050,1008:476,86,7,0,0,0.63987 -26051,1008:477,87,7,0,0,0.640982 -26052,1008:478,88,7,0,0,0.641101 -26053,1008:479,89,7,0,0,0.64398 -26054,1009:370,90,7,0,0,0.645416 -26055,1009:371,91,7,0,0,0.64511 -26056,1009:372,92,7,0,0,0.648115 -26057,1009:373,93,7,0,0,0.646544 -26058,1009:374,94,7,0,0,0.638852 -26059,1009:475,95,7,0,0,0.637642 -26060,1009:476,96,7,0,0,0.638781 -26061,1009:477,97,7,0,0,0.64051 -26062,1009:478,98,7,0,0,0.647412 -26063,1011:370,110,7,0,0,0.590375 -26064,1011:371,111,7,0,0,0.596028 -26065,1011:372,112,7,0,0,0.615871 -26066,1011:373,113,7,0,0,0.609238 -26067,1011:374,114,7,0,0,0.602 -26068,1011:475,115,7,0,0,0.616964 -26069,1011:476,116,7,0,0,0.627349 -26070,1011:477,117,7,0,0,0.622799 -26071,1011:478,118,7,0,0,0.631902 -26072,1011:479,119,7,0,0,0.641337 -26073,1012:370,120,7,0,0,0.633931 -26074,1012:374,124,7,0,0,0.618614 -26075,1012:475,125,7,0,0,0.630443 -26076,1012:476,126,7,0,0,0.631926 -26077,1012:477,127,7,0,0,0.633693 -26078,1012:478,128,7,0,0,0.635955 -26079,1012:479,129,7,0,0,0.638615 -26080,1013:370,130,7,0,0,0.641479 -26081,1013:371,131,7,0,0,0.644098 -26082,1013:372,132,7,0,0,0.646167 -26083,1013:373,133,7,0,0,0.646825 -26084,1013:374,134,7,0,0,0.646003 -26085,1013:475,135,7,0,0,0.645698 -26086,1013:476,136,7,0,0,0.644874 -26087,1013:477,137,7,0,0,0.644004 -26088,1013:478,138,7,0,0,0.644098 -26089,1013:479,139,7,0,0,0.644192 -26090,1014:370,140,7,0,0,0.644474 -26091,1014:371,141,7,0,0,0.644451 -26092,1014:372,142,7,0,0,0.64438 -26093,1014:373,143,7,0,0,0.644733 -26094,1014:374,144,7,0,0,0.645134 -26095,1014:475,145,7,0,0,0.644898 -26096,1014:476,146,7,0,0,0.64518 -26097,1014:477,147,7,0,0,0.645274 -26098,1014:478,148,7,0,0,0.644851 -26099,1014:479,149,7,0,0,0.64431 -26100,1015:370,150,7,0,0,0.64398 -26101,1015:371,151,7,0,0,0.643697 -26102,1015:372,152,7,0,0,0.643179 -26103,1015:373,153,7,0,0,0.642377 -26104,1015:374,154,7,0,0,0.641408 -26105,1015:475,155,7,0,0,0.640439 -26106,1015:476,156,7,0,0,0.639421 -26107,1015:477,157,7,0,0,0.638093 -26108,1015:478,158,7,0,0,0.636811 -26109,1015:479,159,7,0,0,0.635883 -26110,1016:370,160,7,0,0,0.63486 -26111,1016:371,161,7,0,0,0.634169 -26112,1016:372,162,7,0,0,0.633573 -26113,1016:373,163,7,0,0,0.632356 -26114,1016:374,164,7,0,0,0.630491 -26115,1016:475,165,7,0,0,0.628406 -26116,1016:476,166,7,0,0,0.6267 -26117,1016:477,167,7,0,0,0.625811 -27202,7112:226,-126,12,0,0,0.46312 -26118,1016:478,168,7,0,0,0.624752 -26119,1016:479,169,7,0,0,0.623305 -26120,1017:370,170,7,0,0,0.621881 -26121,1017:371,171,7,0,0,0.620552 -26122,1017:372,172,7,0,0,0.620431 -26123,1017:373,173,7,0,0,0.620986 -26124,1017:374,174,7,0,0,0.621446 -26125,1017:475,175,7,0,0,0.621446 -26126,1017:476,176,7,0,0,0.621083 -26127,1017:477,177,7,0,0,0.620406 -26128,1017:478,178,7,0,0,0.619825 -26129,1017:479,179,7,0,0,0.619172 -26130,1018:370,180,7,0,0,0.61762 -26131,7018:380,-180,8,0,0,0.611242 -26132,7017:489,-179,8,0,0,0.609679 -26133,7017:488,-178,8,0,0,0.607158 -26134,7017:487,-177,8,0,0,0.604188 -26135,7017:486,-176,8,0,0,0.603254 -26136,7017:485,-175,8,0,0,0.603771 -26137,7017:384,-174,8,0,0,0.603894 -26138,7017:383,-173,8,0,0,0.604065 -26139,7017:382,-172,8,0,0,0.605319 -26140,7017:381,-171,8,0,0,0.606814 -26141,7017:380,-170,8,0,0,0.605441 -26142,7016:489,-169,8,0,0,0.60195 -26143,7016:488,-168,8,0,0,0.600596 -26144,7016:487,-167,8,0,0,0.602221 -26145,7016:486,-166,8,0,0,0.604778 -26146,7016:485,-165,8,0,0,0.604483 -26147,7016:384,-164,8,0,0,0.602393 -26148,7016:383,-163,8,0,0,0.598252 -26149,7016:382,-162,8,0,0,0.594468 -26150,7016:381,-161,8,0,0,0.594344 -26151,7016:380,-160,8,0,0,0.597437 -26152,7015:489,-159,8,0,0,0.597956 -26153,7015:488,-158,8,0,0,0.596324 -26154,7015:487,-157,8,0,0,0.594518 -26155,7015:486,-156,8,0,0,0.592162 -26156,7015:485,-155,8,0,0,0.590002 -26157,7015:384,-154,8,0,0,0.590871 -26158,7015:383,-153,8,0,0,0.59184 -26159,7015:382,-152,8,0,0,0.59184 -26160,7015:381,-151,8,0,0,0.589902 -26161,7015:380,-150,8,0,0,0.588609 -26162,7014:489,-149,8,0,0,0.585596 -26163,7014:488,-148,8,0,0,0.58592 -26164,7014:487,-147,8,0,0,0.588361 -26165,7014:486,-146,8,0,0,0.585472 -26166,7014:485,-145,8,0,0,0.584947 -26167,7014:384,-144,8,0,0,0.586618 -26168,7014:383,-143,8,0,0,0.586219 -26169,7014:382,-142,8,0,0,0.584249 -26170,7014:381,-141,8,0,0,0.580726 -26171,7014:380,-140,8,0,0,0.575789 -26172,7013:489,-139,8,0,0,0.572298 -26173,7013:488,-138,8,0,0,0.57456 -26174,7013:487,-137,8,0,0,0.575288 -26175,7013:486,-136,8,0,0,0.572322 -26176,7013:485,-135,8,0,0,0.569831 -26177,7013:384,-134,8,0,0,0.567588 -26178,7013:383,-133,8,0,0,0.567412 -26179,7013:382,-132,8,0,0,0.568193 -26180,7013:381,-131,8,0,0,0.569806 -26181,7013:380,-130,8,0,0,0.564964 -26182,7012:489,-129,8,0,0,0.568068 -26183,7012:488,-128,8,0,0,0.571644 -26184,7012:487,-127,8,0,0,0.57285 -26185,7012:486,-126,8,0,0,0.577119 -26186,7012:485,-125,8,0,0,0.577671 -26187,7012:384,-124,8,0,0,0.577019 -26188,7012:383,-123,8,0,0,0.576417 -26189,7012:382,-122,8,0,0,0.58 -26190,7012:381,-121,8,0,0,0.590424 -26191,7012:380,-120,8,0,0,0.60136 -26192,7011:489,-119,8,0,0,0.603426 -26193,7011:488,-118,8,0,0,0.602665 -26194,7011:487,-117,8,0,0,0.597635 -26195,7011:486,-116,8,0,0,0.602443 -26196,7011:485,-115,8,0,0,0.602172 -26197,7011:384,-114,8,0,0,0.600866 -26198,7011:383,-113,8,0,0,0.600522 -26199,7011:382,-112,8,0,0,0.608358 -26200,7011:381,-111,8,0,0,0.617911 -26201,7011:380,-110,8,0,0,0.624776 -26202,7010:489,-109,8,0,0,0.63006 -26203,7010:488,-108,8,0,0,0.63712 -26204,7010:487,-107,8,0,0,0.640534 -26205,7010:486,-106,8,0,0,0.642848 -26206,7010:485,-105,8,0,0,0.645462 -26207,7010:384,-104,8,0,0,0.659186 -26208,7010:383,-103,8,0,0,0.663305 -26209,7010:382,-102,8,0,0,0.665825 -26210,7010:381,-101,8,0,0,0.663397 -26211,7010:380,-100,8,0,0,0.661007 -26212,7009:489,-99,8,0,0,0.653904 -26213,7009:488,-98,8,0,0,0.641125 -26214,7009:487,-97,8,0,0,0.636026 -26215,7009:486,-96,8,0,0,0.634526 -26216,7009:485,-95,8,0,0,0.639373 -26217,7009:384,-94,8,0,0,0.645039 -26218,7008:384,-84,8,0,0,0.624053 -26219,7008:383,-83,8,0,0,0.618881 -26220,7008:382,-82,8,0,0,0.626484 -26221,7008:381,-81,8,0,0,0.636098 -26222,7008:380,-80,8,0,0,0.641054 -26223,7007:489,-79,8,0,0,0.64103 -26224,7007:488,-78,8,0,0,0.640178 -26225,7007:487,-77,8,0,0,0.641314 -26227,7007:485,-75,8,0,0,0.643697 -26228,7007:384,-74,8,0,0,0.642919 -26229,7007:383,-73,8,0,0,0.64006 -26230,7007:382,-72,8,0,0,0.63769 -26231,7007:381,-71,8,0,0,0.637215 -26232,7007:380,-70,8,0,0,0.637666 -26233,7006:489,-69,8,0,0,0.638164 -26234,7006:488,-68,8,0,0,0.638497 -26235,7006:487,-67,8,0,0,0.638923 -26236,7006:486,-66,8,0,0,0.637049 -26237,7006:485,-65,8,0,0,0.637499 -26238,7006:384,-64,8,0,0,0.636122 -26239,7006:383,-63,8,0,0,0.634979 -26240,7006:382,-62,8,0,0,0.631735 -26241,7006:381,-61,8,0,0,0.627566 -26242,7006:380,-60,8,0,0,0.628526 -26243,7005:489,-59,8,0,0,0.625931 -26244,7005:488,-58,8,0,0,0.623691 -26245,7005:487,-57,8,0,0,0.621277 -26246,7005:486,-56,8,0,0,0.617741 -26247,7005:485,-55,8,0,0,0.616042 -26248,7005:384,-54,8,0,0,0.615823 -26249,7005:383,-53,8,0,0,0.613389 -26250,7005:382,-52,8,0,0,0.609043 -26251,7005:381,-51,8,0,0,0.606912 -26252,7005:380,-50,8,0,0,0.604533 -26253,7004:489,-49,8,0,0,0.602049 -26254,7004:488,-48,8,0,0,0.600201 -26255,7004:487,-47,8,0,0,0.598598 -26256,7004:486,-46,8,0,0,0.596868 -26257,7004:485,-45,8,0,0,0.594864 -26258,7004:384,-44,8,0,0,0.592312 -26259,7004:383,-43,8,0,0,0.589729 -26260,7004:382,-42,8,0,0,0.588361 -26261,7004:381,-41,8,0,0,0.58572 -26262,7004:380,-40,8,0,0,0.583825 -26263,7003:489,-39,8,0,0,0.581651 -26264,7003:488,-38,8,0,0,0.578573 -26265,7003:487,-37,8,0,0,0.576567 -26266,7003:486,-36,8,0,0,0.574886 -26267,7003:485,-35,8,0,0,0.573027 -26268,7003:384,-34,8,0,0,0.572725 -26269,7003:383,-33,8,0,0,0.569504 -26270,7003:382,-32,8,0,0,0.568748 -26271,7003:381,-31,8,0,0,0.569201 -26272,7003:380,-30,8,0,0,0.570259 -26273,7002:489,-29,8,0,0,0.569201 -26274,7002:488,-28,8,0,0,0.567286 -26275,7002:487,-27,8,0,0,0.56721 -26276,7002:486,-26,8,0,0,0.567765 -26277,7002:485,-25,8,0,0,0.566882 -26278,7002:384,-24,8,0,0,0.56779 -26279,7002:383,-23,8,0,0,0.571116 -26280,7002:382,-22,8,0,0,0.568874 -26281,7002:381,-21,8,0,0,0.573177 -26282,7002:380,-20,8,0,0,0.583425 -26283,7001:489,-19,8,0,0,0.586368 -26284,7001:488,-18,8,0,0,0.585472 -26285,7001:487,-17,8,0,0,0.559983 -26286,1004:380,40,8,0,0,0.625546 -26287,1004:381,41,8,0,0,0.616989 -26288,1004:382,42,8,0,0,0.629508 -26289,1005:382,52,8,0,0,0.595409 -26290,1005:383,53,8,0,0,0.592708 -26291,1005:384,54,8,0,0,0.590574 -26292,1005:485,55,8,0,0,0.591542 -26293,1005:486,56,8,0,0,0.596671 -26294,1005:487,57,8,0,0,0.596646 -26295,1005:488,58,8,0,0,0.59422 -26296,1005:489,59,8,0,0,0.598079 -26297,1006:380,60,8,0,0,0.601778 -26298,1006:381,61,8,0,0,0.604262 -26299,1006:382,62,8,0,0,0.610852 -26300,1006:383,63,8,0,0,0.614947 -26301,1006:384,64,8,0,0,0.620552 -26302,1006:485,65,8,0,0,0.626845 -26303,1006:486,66,8,0,0,0.630443 -26304,1006:487,67,8,0,0,0.635883 -26305,1006:488,68,8,0,0,0.638662 -26306,1006:489,69,8,0,0,0.64103 -26307,1007:380,70,8,0,0,0.643485 -26308,1007:381,71,8,0,0,0.648349 -26309,1007:382,72,8,0,0,0.654392 -26310,1007:384,74,8,0,0,0.647599 -26311,1008:381,81,8,0,0,0.611706 -26312,1008:382,82,8,0,0,0.613145 -26313,1008:383,83,8,0,0,0.622436 -26314,1008:384,84,8,0,0,0.626604 -26315,1008:485,85,8,0,0,0.630945 -26316,1008:486,86,8,0,0,0.634884 -26317,1008:487,87,8,0,0,0.636621 -26318,1008:488,88,8,0,0,0.637547 -26319,1008:489,89,8,0,0,0.64058 -26320,1009:380,90,8,0,0,0.642966 -26321,1009:381,91,8,0,0,0.645839 -26322,1009:382,92,8,0,0,0.647951 -26323,1009:383,93,8,0,0,0.642046 -26324,1009:384,94,8,0,0,0.63833 -26325,1009:485,95,8,0,0,0.634431 -26326,1009:486,96,8,0,0,0.633382 -26327,1009:487,97,8,0,0,0.637357 -26328,1010:489,109,8,0,0,0.584898 -26329,1011:380,110,8,0,0,0.587141 -26330,1011:381,111,8,0,0,0.598351 -26331,1011:382,112,8,0,0,0.599856 -26332,1011:383,113,8,0,0,0.603697 -26333,1011:384,114,8,0,0,0.607697 -26334,1011:485,115,8,0,0,0.610632 -26335,1011:486,116,8,0,0,0.613535 -26336,1011:487,117,8,0,0,0.618638 -26337,1011:488,118,8,0,0,0.628286 -26338,1011:489,119,8,0,0,0.637286 -26339,1012:380,120,8,0,0,0.620842 -26340,1012:382,122,8,0,0,0.625594 -26341,1012:383,123,8,0,0,0.627614 -26342,1012:384,124,8,0,0,0.624968 -26343,1012:485,125,8,0,0,0.623643 -26344,1012:486,126,8,0,0,0.624391 -26345,1012:487,127,8,0,0,0.626436 -26346,1012:488,128,8,0,0,0.628118 -26347,1012:489,129,8,0,0,0.629796 -26348,1013:380,130,8,0,0,0.631806 -26349,1013:381,131,8,0,0,0.635788 -26350,1013:382,132,8,0,0,0.640013 -26351,1013:383,133,8,0,0,0.640367 -26352,1013:384,134,8,0,0,0.637049 -26353,1013:485,135,8,0,0,0.636669 -26354,1013:486,136,8,0,0,0.638402 -26355,1013:487,137,8,0,0,0.638876 -26356,1013:488,138,8,0,0,0.639752 -26357,1013:489,139,8,0,0,0.640391 -26358,1014:380,140,8,0,0,0.640439 -26359,1014:381,141,8,0,0,0.640415 -26360,1014:382,142,8,0,0,0.640391 -26361,1014:383,143,8,0,0,0.640699 -26362,1014:384,144,8,0,0,0.640912 -26363,1014:485,145,8,0,0,0.641148 -26364,1014:486,146,8,0,0,0.6398 -26365,1014:487,147,8,0,0,0.640604 -26366,1014:488,148,8,0,0,0.640273 -26367,1014:489,149,8,0,0,0.640462 -26368,1015:380,150,8,0,0,0.640817 -26369,1015:381,151,8,0,0,0.641006 -26370,1015:382,152,8,0,0,0.640817 -26371,1015:383,153,8,0,0,0.640202 -26372,1015:384,154,8,0,0,0.639302 -26373,1015:485,155,8,0,0,0.638164 -26374,1015:486,156,8,0,0,0.637001 -26375,1015:487,157,8,0,0,0.635955 -26376,1015:488,158,8,0,0,0.634789 -26377,1015:489,159,8,0,0,0.633549 -26378,1016:380,160,8,0,0,0.632236 -26379,1016:381,161,8,0,0,0.631017 -26380,1016:382,162,8,0,0,0.630251 -26381,1016:383,163,8,0,0,0.629964 -26382,1016:384,164,8,0,0,0.629221 -26383,1016:485,165,8,0,0,0.627733 -26384,1016:486,166,8,0,0,0.625811 -26385,1016:487,167,8,0,0,0.624077 -26386,1016:488,168,8,0,0,0.622267 -26387,1016:489,169,8,0,0,0.620164 -26388,1017:380,170,8,0,0,0.617862 -26389,1017:381,171,8,0,0,0.616381 -26390,1017:382,172,8,0,0,0.615895 -26391,1017:383,173,8,0,0,0.615774 -26392,1017:384,174,8,0,0,0.615409 -26393,1017:485,175,8,0,0,0.61429 -26394,1017:486,176,8,0,0,0.612902 -26395,1017:487,177,8,0,0,0.612146 -26396,1017:488,178,8,0,0,0.612316 -26397,1017:489,179,8,0,0,0.612389 -26398,1018:380,180,8,0,0,0.611242 -26399,7018:390,-180,9,0,0,0.606839 -26400,7017:499,-179,9,0,0,0.60777 -26401,7017:498,-178,9,0,0,0.606741 -26402,7017:497,-177,9,0,0,0.605171 -26403,7017:496,-176,9,0,0,0.604065 -26404,7017:495,-175,9,0,0,0.601606 -26405,7017:394,-174,9,0,0,0.599338 -26406,7017:393,-173,9,0,0,0.598227 -26407,7017:392,-172,9,0,0,0.599313 -26408,7017:391,-171,9,0,0,0.600916 -26409,7017:390,-170,9,0,0,0.601113 -26410,7016:499,-169,9,0,0,0.598153 -26411,7016:498,-168,9,0,0,0.595211 -26412,7016:497,-167,9,0,0,0.594419 -26413,7016:496,-166,9,0,0,0.596918 -26414,7016:495,-165,9,0,0,0.597017 -26415,7016:394,-164,9,0,0,0.595409 -26416,7016:393,-163,9,0,0,0.592436 -26417,7016:392,-162,9,0,0,0.590276 -26418,7016:391,-161,9,0,0,0.590698 -26419,7016:390,-160,9,0,0,0.588734 -26420,7015:499,-159,9,0,0,0.590624 -26421,7015:498,-158,9,0,0,0.58739 -26422,7015:497,-157,9,0,0,0.579599 -26423,7015:496,-156,9,0,0,0.5797 -26424,7015:495,-155,9,0,0,0.58572 -26425,7015:394,-154,9,0,0,0.582851 -26426,7015:393,-153,9,0,0,0.580401 -26427,7015:392,-152,9,0,0,0.580425 -26428,7015:391,-151,9,0,0,0.578623 -26429,7015:390,-150,9,0,0,0.576618 -26430,7014:499,-149,9,0,0,0.575689 -26431,7014:498,-148,9,0,0,0.577671 -26432,7014:497,-147,9,0,0,0.579399 -26433,7014:496,-146,9,0,0,0.578297 -26434,7014:495,-145,9,0,0,0.576066 -26435,7014:394,-144,9,0,0,0.576316 -26436,7014:393,-143,9,0,0,0.568521 -26437,7014:392,-142,9,0,0,0.571946 -26438,7014:391,-141,9,0,0,0.575488 -26439,7014:390,-140,9,0,0,0.566806 -26440,7013:499,-139,9,0,0,0.556892 -26441,7013:498,-138,9,0,0,0.558413 -26442,7013:497,-137,9,0,0,0.555649 -26443,7013:496,-136,9,0,0,0.550825 -26444,7013:495,-135,9,0,0,0.553263 -26445,7013:394,-134,9,0,0,0.545124 -26446,7013:393,-133,9,0,0,0.541045 -26447,7013:392,-132,9,0,0,0.54005 -26448,7013:391,-131,9,0,0,0.538773 -26449,7013:390,-130,9,0,0,0.533203 -26450,7012:499,-129,9,0,0,0.533407 -26451,7012:498,-128,9,0,0,0.54079 -26452,7012:497,-127,9,0,0,0.537726 -26453,7012:496,-126,9,0,0,0.539156 -26454,7012:495,-125,9,0,0,0.551078 -26455,7012:394,-124,9,0,0,0.546066 -26456,7012:393,-123,9,0,0,0.553543 -26457,7012:392,-122,9,0,0,0.553289 -26458,7012:391,-121,9,0,0,0.565343 -26459,7012:390,-120,9,0,0,0.571442 -26460,7011:499,-119,9,0,0,0.578097 -26461,7011:498,-118,9,0,0,0.579099 -26462,7011:497,-117,9,0,0,0.578623 -26463,7011:496,-116,9,0,0,0.581826 -26464,7011:495,-115,9,0,0,0.58005 -26465,7011:394,-114,9,0,0,0.5827 -26466,7011:393,-113,9,0,0,0.581626 -26467,7011:392,-112,9,0,0,0.584972 -26468,7011:391,-111,9,0,0,0.597536 -26469,7011:390,-110,9,0,0,0.60826 -26470,7010:499,-109,9,0,0,0.62304 -26471,7010:498,-108,9,0,0,0.63195 -26472,7010:497,-107,9,0,0,0.636265 -26473,7010:496,-106,9,0,0,0.640226 -26474,7010:495,-105,9,0,0,0.6498 -26475,7010:394,-104,9,0,0,0.655669 -26476,7010:393,-103,9,0,0,0.659232 -26477,7010:392,-102,9,0,0,0.664841 -26478,7010:391,-101,9,0,0,0.65884 -26479,7008:498,-88,9,0,0,0.637143 -26480,7008:497,-87,9,0,0,0.635003 -26481,7008:496,-86,9,0,0,0.634264 -26482,7008:495,-85,9,0,0,0.63605 -26483,7008:394,-84,9,0,0,0.634598 -26484,7008:393,-83,9,0,0,0.634408 -26485,7008:392,-82,9,0,0,0.635313 -26486,7008:391,-81,9,0,0,0.636645 -26487,7008:390,-80,9,0,0,0.640486 -26488,7007:499,-79,9,0,0,0.640391 -26489,7007:498,-78,9,0,0,0.63769 -26490,7007:497,-77,9,0,0,0.63871 -26491,7007:496,-76,9,0,0,0.641739 -26492,7007:495,-75,9,0,0,0.638544 -26493,7007:394,-74,9,0,0,0.640793 -26494,7007:393,-73,9,0,0,0.639634 -26495,7007:392,-72,9,0,0,0.638686 -26496,7007:391,-71,9,0,0,0.636574 -26497,7007:390,-70,9,0,0,0.637167 -26498,7006:499,-69,9,0,0,0.637001 -26499,7006:498,-68,9,0,0,0.636621 -26500,7006:497,-67,9,0,0,0.635098 -26501,7006:496,-66,9,0,0,0.635479 -26502,7006:495,-65,9,0,0,0.634336 -26503,7006:394,-64,9,0,0,0.633406 -26504,7006:393,-63,9,0,0,0.63006 -26505,7006:392,-62,9,0,0,0.628861 -26506,7006:391,-61,9,0,0,0.626268 -26507,7006:390,-60,9,0,0,0.625185 -26508,7005:499,-59,9,0,0,0.62333 -26509,7005:498,-58,9,0,0,0.621277 -26510,7005:497,-57,9,0,0,0.61968 -26511,7005:496,-56,9,0,0,0.617668 -26512,7005:495,-55,9,0,0,0.615433 -26513,7005:394,-54,9,0,0,0.612877 -26514,7005:393,-53,9,0,0,0.609899 -26515,7005:392,-52,9,0,0,0.607574 -26516,7005:391,-51,9,0,0,0.605662 -26517,7005:390,-50,9,0,0,0.60441 -26518,7004:499,-49,9,0,0,0.60195 -26519,7004:498,-48,9,0,0,0.599511 -26520,7004:497,-47,9,0,0,0.596003 -26521,7004:496,-46,9,0,0,0.593526 -26522,7004:495,-45,9,0,0,0.591344 -26523,7004:394,-44,9,0,0,0.588983 -26524,7004:393,-43,9,0,0,0.586593 -26525,7004:392,-42,9,0,0,0.586394 -26526,7004:391,-41,9,0,0,0.58385 -26527,7004:390,-40,9,0,0,0.578397 -26528,7003:499,-39,9,0,0,0.57732 -26529,7003:498,-38,9,0,0,0.575665 -26530,7003:497,-37,9,0,0,0.571895 -26531,7003:496,-36,9,0,0,0.571266 -26532,7003:495,-35,9,0,0,0.570385 -26533,7003:394,-34,9,0,0,0.567336 -26534,7003:393,-33,9,0,0,0.56514 -26535,7003:392,-32,9,0,0,0.563953 -26536,7003:391,-31,9,0,0,0.564434 -26537,7003:390,-30,9,0,0,0.563524 -26538,7002:499,-29,9,0,0,0.562943 -26539,7002:498,-28,9,0,0,0.561678 -26540,7002:497,-27,9,0,0,0.561603 -26541,7002:496,-26,9,0,0,0.562209 -26542,7002:495,-25,9,0,0,0.561653 -26543,7002:394,-24,9,0,0,0.560742 -26544,7002:393,-23,9,0,0,0.55816 -26545,7002:392,-22,9,0,0,0.555269 -26546,7002:391,-21,9,0,0,0.562993 -26547,7002:390,-20,9,0,0,0.567286 -26548,7001:499,-19,9,0,0,0.565822 -26549,7001:498,-18,9,0,0,0.564938 -26550,7001:497,-17,9,0,0,0.541785 -26551,1003:499,39,9,0,0,0.643838 -26552,1004:390,40,9,0,0,0.631735 -26553,1004:392,42,9,0,0,0.642305 -26554,1005:394,54,9,0,0,0.589232 -26555,1005:495,55,9,0,0,0.588236 -26556,1005:496,56,9,0,0,0.593625 -26557,1005:497,57,9,0,0,0.59184 -26558,1005:498,58,9,0,0,0.593502 -26559,1005:499,59,9,0,0,0.591666 -26560,1006:390,60,9,0,0,0.593031 -26561,1006:391,61,9,0,0,0.602763 -26562,1006:392,62,9,0,0,0.603451 -26563,1006:393,63,9,0,0,0.605417 -26564,1006:394,64,9,0,0,0.608774 -26565,1006:495,65,9,0,0,0.611267 -26566,1006:496,66,9,0,0,0.617231 -26567,1006:497,67,9,0,0,0.622871 -26568,1006:498,68,9,0,0,0.627278 -26569,1006:499,69,9,0,0,0.636169 -26570,1007:390,70,9,0,0,0.642565 -26571,1007:391,71,9,0,0,0.647435 -26572,1007:392,72,9,0,0,0.650197 -26573,1008:393,83,9,0,0,0.604188 -26574,1008:394,84,9,0,0,0.613803 -26575,1008:495,85,9,0,0,0.614314 -26576,1008:496,86,9,0,0,0.61905 -26577,1008:497,87,9,0,0,0.627421 -26578,1008:498,88,9,0,0,0.63424 -26579,1008:499,89,9,0,0,0.634622 -26580,1009:390,90,9,0,0,0.636145 -26581,1009:391,91,9,0,0,0.638473 -26582,1009:392,92,9,0,0,0.642542 -26583,1009:393,93,9,0,0,0.641195 -26584,1009:394,94,9,0,0,0.635503 -26585,1010:498,108,9,0,0,0.575288 -26586,1010:499,109,9,0,0,0.578448 -26587,1011:390,110,9,0,0,0.579149 -26588,1011:391,111,9,0,0,0.58749 -26589,1011:392,112,9,0,0,0.588883 -26590,1011:393,113,9,0,0,0.5834 -26591,1011:394,114,9,0,0,0.592782 -26592,1011:495,115,9,0,0,0.592088 -26593,1011:496,116,9,0,0,0.592609 -26594,1011:497,117,9,0,0,0.599462 -26595,1011:498,118,9,0,0,0.617935 -26596,1011:499,119,9,0,0,0.629868 -26597,1012:390,120,9,0,0,0.619002 -26598,1012:393,123,9,0,0,0.625787 -26599,1012:394,124,9,0,0,0.616284 -26600,1012:495,125,9,0,0,0.614241 -26601,1012:496,126,9,0,0,0.614022 -26602,1012:497,127,9,0,0,0.615458 -26603,1012:498,128,9,0,0,0.616381 -26604,1012:499,129,9,0,0,0.618056 -26605,1013:390,130,9,0,0,0.620817 -26606,1013:391,131,9,0,0,0.623619 -26607,1013:392,132,9,0,0,0.626797 -26608,1013:393,133,9,0,0,0.631782 -26609,1013:394,134,9,0,0,0.633382 -26610,1013:495,135,9,0,0,0.632284 -26611,1013:496,136,9,0,0,0.632308 -26612,1013:497,137,9,0,0,0.634408 -26613,1013:498,138,9,0,0,0.635217 -26614,1013:499,139,9,0,0,0.635551 -26615,1014:390,140,9,0,0,0.63517 -26616,1014:391,141,9,0,0,0.634479 -26617,1014:392,142,9,0,0,0.634503 -26618,1014:393,143,9,0,0,0.635027 -26619,1014:394,144,9,0,0,0.635479 -26620,1014:495,145,9,0,0,0.635337 -26621,1014:496,146,9,0,0,0.634288 -26622,1014:497,147,9,0,0,0.635146 -26623,1014:498,148,9,0,0,0.635384 -26624,1014:499,149,9,0,0,0.636074 -26625,1015:390,150,9,0,0,0.636502 -26626,1015:391,151,9,0,0,0.63605 -26627,1015:392,152,9,0,0,0.636336 -26628,1015:393,153,9,0,0,0.636764 -26629,1015:394,154,9,0,0,0.637595 -26630,1015:495,155,9,0,0,0.636645 -26631,1015:496,156,9,0,0,0.635432 -26632,1015:497,157,9,0,0,0.633859 -26633,1015:498,158,9,0,0,0.632714 -26634,1015:499,159,9,0,0,0.632762 -26635,1016:390,160,9,0,0,0.632117 -26636,1016:391,161,9,0,0,0.630634 -26637,1016:392,162,9,0,0,0.628526 -26638,1016:393,163,9,0,0,0.626412 -26639,1016:394,164,9,0,0,0.624993 -26640,1016:495,165,9,0,0,0.624968 -26641,1016:496,166,9,0,0,0.625233 -26642,1016:497,167,9,0,0,0.624391 -26643,1016:498,168,9,0,0,0.621953 -26644,1016:499,169,9,0,0,0.619946 -26645,1017:390,170,9,0,0,0.61762 -26646,1017:391,171,9,0,0,0.615288 -26647,1017:392,172,9,0,0,0.613973 -26648,1017:393,173,9,0,0,0.61317 -26649,1017:394,174,9,0,0,0.612658 -26650,1017:495,175,9,0,0,0.611974 -26651,1017:496,176,9,0,0,0.610779 -26652,1017:497,177,9,0,0,0.608333 -26653,1017:498,178,9,0,0,0.606594 -26654,1017:499,179,9,0,0,0.606374 -26655,1018:390,180,9,0,0,0.606839 -26656,7118:100,-180,10,0,0,0.602763 -26657,7117:209,-179,10,0,0,0.603008 -26658,7117:208,-178,10,0,0,0.601975 -26659,7117:207,-177,10,0,0,0.597956 -26660,7117:206,-176,10,0,0,0.600004 -26661,7117:205,-175,10,0,0,0.597561 -26662,7117:104,-174,10,0,0,0.596151 -26663,7117:103,-173,10,0,0,0.594419 -26664,7117:102,-172,10,0,0,0.595334 -26665,7117:101,-171,10,0,0,0.59432 -26666,7117:100,-170,10,0,0,0.59672 -26667,7116:209,-169,10,0,0,0.59761 -26668,7116:208,-168,10,0,0,0.595756 -26669,7116:207,-167,10,0,0,0.593997 -26670,7116:206,-166,10,0,0,0.591244 -26671,7116:205,-165,10,0,0,0.589057 -26672,7116:104,-164,10,0,0,0.588311 -26673,7116:103,-163,10,0,0,0.589057 -26674,7116:102,-162,10,0,0,0.588286 -26675,7116:101,-161,10,0,0,0.587689 -26676,7116:100,-160,10,0,0,0.589132 -26677,7115:209,-159,10,0,0,0.5902 -26678,7115:208,-158,10,0,0,0.590151 -26679,7115:207,-157,10,0,0,0.577445 -26680,7115:206,-156,10,0,0,0.568949 -26681,7115:205,-155,10,0,0,0.567992 -26682,7115:104,-154,10,0,0,0.570838 -26683,7115:103,-153,10,0,0,0.569176 -26684,7115:102,-152,10,0,0,0.56514 -26685,7115:101,-151,10,0,0,0.564282 -26686,7115:100,-150,10,0,0,0.560211 -26687,7114:209,-149,10,0,0,0.562741 -26688,7114:208,-148,10,0,0,0.559122 -26689,7114:207,-147,10,0,0,0.560033 -26690,7114:206,-146,10,0,0,0.560996 -26691,7114:205,-145,10,0,0,0.566176 -26692,7114:104,-144,10,0,0,0.56509 -26693,7114:103,-143,10,0,0,0.563828 -26694,7114:102,-142,10,0,0,0.549426 -26695,7114:101,-141,10,0,0,0.544666 -26696,7114:100,-140,10,0,0,0.54762 -26697,7113:209,-139,10,0,0,0.549629 -26698,7113:208,-138,10,0,0,0.539794 -26699,7113:207,-137,10,0,0,0.530491 -26700,7113:206,-136,10,0,0,0.532205 -26701,7113:205,-135,10,0,0,0.527803 -26702,7113:104,-134,10,0,0,0.526446 -26703,7113:103,-133,10,0,0,0.522602 -26704,7113:102,-132,10,0,0,0.517217 -26705,7113:101,-131,10,0,0,0.510133 -26706,7113:100,-130,10,0,0,0.509568 -26707,7112:209,-129,10,0,0,0.50926 -26708,7112:208,-128,10,0,0,0.511776 -26709,7112:207,-127,10,0,0,0.517859 -26710,7112:206,-126,10,0,0,0.520372 -26711,7112:205,-125,10,0,0,0.516165 -26712,7112:104,-124,10,0,0,0.510723 -26713,7112:103,-123,10,0,0,0.519243 -26714,7112:102,-122,10,0,0,0.53264 -26715,7112:101,-121,10,0,0,0.542601 -26716,7112:100,-120,10,0,0,0.546244 -26717,7111:209,-119,10,0,0,0.548204 -26718,7111:208,-118,10,0,0,0.542703 -26719,7111:207,-117,10,0,0,0.546117 -26720,7111:206,-116,10,0,0,0.547772 -26721,7111:205,-115,10,0,0,0.548434 -26722,7111:104,-114,10,0,0,0.557222 -26723,7111:103,-113,10,0,0,0.565267 -26724,7111:102,-112,10,0,0,0.573956 -26725,7111:101,-111,10,0,0,0.58375 -26726,7111:100,-110,10,0,0,0.596893 -26727,7110:209,-109,10,0,0,0.615944 -26728,7110:208,-108,10,0,0,0.629557 -26729,7110:207,-107,10,0,0,0.625378 -26730,7110:206,-106,10,0,0,0.622243 -26731,7110:205,-105,10,0,0,0.637428 -26732,7110:104,-104,10,0,0,0.648045 -26733,7109:104,-94,10,0,0,0.600127 -26734,7108:208,-88,10,0,0,0.611682 -26735,7108:207,-87,10,0,0,0.633931 -26736,7108:206,-86,10,0,0,0.63655 -26737,7108:205,-85,10,0,0,0.638615 -26738,7108:104,-84,10,0,0,0.639184 -26739,7108:103,-83,10,0,0,0.638235 -26740,7108:102,-82,10,0,0,0.638615 -26741,7108:101,-81,10,0,0,0.63871 -26742,7108:100,-80,10,0,0,0.638307 -26743,7107:209,-79,10,0,0,0.638781 -26744,7107:207,-77,10,0,0,0.634765 -26745,7107:206,-76,10,0,0,0.634884 -26746,7107:205,-75,10,0,0,0.638235 -26747,7107:100,-70,10,0,0,0.62831 -26748,7106:208,-68,10,0,0,0.631902 -26749,7106:205,-65,10,0,0,0.626653 -26750,7106:104,-64,10,0,0,0.626052 -26751,7106:103,-63,10,0,0,0.626461 -26752,7106:102,-62,10,0,0,0.623667 -26753,7106:101,-61,10,0,0,0.62304 -26754,7106:100,-60,10,0,0,0.62118 -26755,7105:209,-59,10,0,0,0.618493 -26756,7105:208,-58,10,0,0,0.617231 -26757,7105:207,-57,10,0,0,0.616867 -26758,7105:206,-56,10,0,0,0.616478 -26759,7105:205,-55,10,0,0,0.613023 -26760,7105:104,-54,10,0,0,0.611169 -26761,7105:103,-53,10,0,0,0.60963 -26762,7105:102,-52,10,0,0,0.607354 -26763,7105:101,-51,10,0,0,0.60468 -26764,7105:100,-50,10,0,0,0.603254 -26765,7104:209,-49,10,0,0,0.600793 -26766,7104:208,-48,10,0,0,0.597758 -26767,7104:207,-47,10,0,0,0.592584 -26768,7104:206,-46,10,0,0,0.590499 -26769,7104:205,-45,10,0,0,0.588585 -26770,7104:104,-44,10,0,0,0.586942 -26771,7104:103,-43,10,0,0,0.585745 -26772,7104:102,-42,10,0,0,0.583825 -26773,7104:101,-41,10,0,0,0.581401 -26774,7104:100,-40,10,0,0,0.578523 -26775,7103:209,-39,10,0,0,0.575388 -26776,7103:208,-38,10,0,0,0.574007 -26777,7103:207,-37,10,0,0,0.57192 -26778,7103:206,-36,10,0,0,0.568521 -26779,7103:205,-35,10,0,0,0.565797 -26780,7103:104,-34,10,0,0,0.563373 -26781,7103:103,-33,10,0,0,0.560691 -26782,7103:102,-32,10,0,0,0.558286 -26783,7103:101,-31,10,0,0,0.556207 -26784,7103:100,-30,10,0,0,0.555929 -26785,7102:209,-29,10,0,0,0.555649 -26786,7102:208,-28,10,0,0,0.553848 -26787,7102:207,-27,10,0,0,0.554051 -26788,7102:206,-26,10,0,0,0.552146 -26789,7102:205,-25,10,0,0,0.551486 -26790,7102:104,-24,10,0,0,0.549858 -26791,7102:103,-23,10,0,0,0.55024 -26792,7102:102,-22,10,0,0,0.547772 -26793,7102:101,-21,10,0,0,0.548561 -26794,7102:100,-20,10,0,0,0.542346 -26795,7101:209,-19,10,0,0,0.536858 -26796,7101:208,-18,10,0,0,0.549375 -26797,7101:207,-17,10,0,0,0.527906 -26798,1103:208,38,10,0,0,0.642542 -26799,1103:209,39,10,0,0,0.657684 -26800,1104:100,40,10,0,0,0.665047 -26801,1104:101,41,10,0,0,0.643932 -26802,1105:207,57,10,0,0,0.581401 -26803,1105:208,58,10,0,0,0.587788 -26804,1105:209,59,10,0,0,0.588236 -26805,1106:100,60,10,0,0,0.588833 -26806,1106:101,61,10,0,0,0.594988 -26807,1106:102,62,10,0,0,0.597536 -26808,1106:103,63,10,0,0,0.596473 -26809,1106:104,64,10,0,0,0.597536 -26810,1106:205,65,10,0,0,0.600621 -26811,1106:206,66,10,0,0,0.606374 -26812,1106:207,67,10,0,0,0.610827 -26813,1106:208,68,10,0,0,0.623981 -26814,1106:209,69,10,0,0,0.63424 -26815,1107:100,70,10,0,0,0.636764 -26816,1107:101,71,10,0,0,0.632977 -26817,1107:102,72,10,0,0,0.638497 -26818,1108:205,85,10,0,0,0.598968 -26819,1108:206,86,10,0,0,0.608872 -26820,1108:207,87,10,0,0,0.61728 -26821,1108:208,88,10,0,0,0.619946 -26822,1108:209,89,10,0,0,0.627133 -26823,1109:100,90,10,0,0,0.627782 -26824,1109:101,91,10,0,0,0.626244 -26825,1109:102,92,10,0,0,0.628694 -26826,1109:103,93,10,0,0,0.635479 -26827,1109:104,94,10,0,0,0.639657 -26828,1110:207,107,10,0,0,0.544029 -26829,1110:208,108,10,0,0,0.574735 -26830,1110:209,109,10,0,0,0.552374 -26831,1111:101,111,10,0,0,0.56461 -26832,1111:102,112,10,0,0,0.571417 -26833,1111:103,113,10,0,0,0.577044 -26834,1111:104,114,10,0,0,0.578548 -26835,1111:205,115,10,0,0,0.578673 -26836,1111:206,116,10,0,0,0.586942 -26837,1111:207,117,10,0,0,0.590574 -26838,1111:208,118,10,0,0,0.592535 -26839,1111:209,119,10,0,0,0.602665 -26840,1112:100,120,10,0,0,0.611047 -26841,1112:102,122,10,0,0,0.601261 -26842,1112:103,123,10,0,0,0.620285 -26843,1112:104,124,10,0,0,0.59318 -26844,1112:205,125,10,0,0,0.602025 -26845,1112:206,126,10,0,0,0.604606 -26846,1112:207,127,10,0,0,0.60296 -26847,1112:208,128,10,0,0,0.60291 -26848,1112:209,129,10,0,0,0.606766 -26849,1113:100,130,10,0,0,0.6087 -26850,1113:101,131,10,0,0,0.610754 -26851,1113:102,132,10,0,0,0.613364 -26852,1113:103,133,10,0,0,0.617959 -26853,1113:104,134,10,0,0,0.62316 -26854,1113:205,135,10,0,0,0.623112 -26855,1113:206,136,10,0,0,0.625353 -26856,1113:207,137,10,0,0,0.628045 -26857,1113:208,138,10,0,0,0.63018 -26858,1113:209,139,10,0,0,0.630491 -26859,1114:100,140,10,0,0,0.629868 -26860,1114:101,141,10,0,0,0.629628 -26861,1114:102,142,10,0,0,0.629077 -26862,1114:103,143,10,0,0,0.628694 -26863,1114:104,144,10,0,0,0.628934 -26864,1114:205,145,10,0,0,0.628694 -26865,1114:206,146,10,0,0,0.629101 -26866,1114:207,147,10,0,0,0.629101 -26867,1114:208,148,10,0,0,0.629197 -26868,1114:209,149,10,0,0,0.628958 -26869,1115:100,150,10,0,0,0.628166 -26870,1115:101,151,10,0,0,0.629844 -26871,1115:102,152,10,0,0,0.629461 -26872,1115:103,153,10,0,0,0.628958 -26873,1115:104,154,10,0,0,0.630418 -26874,1115:205,155,10,0,0,0.629125 -26875,1115:206,156,10,0,0,0.629341 -26876,1115:207,157,10,0,0,0.628669 -26877,1115:208,158,10,0,0,0.628262 -26878,1115:209,159,10,0,0,0.627421 -26879,1116:100,160,10,0,0,0.62622 -26880,1116:101,161,10,0,0,0.627278 -26881,1116:102,162,10,0,0,0.627566 -26882,1116:103,163,10,0,0,0.625811 -26883,1116:104,164,10,0,0,0.623498 -26884,1116:205,165,10,0,0,0.620939 -26885,1116:206,166,10,0,0,0.621108 -26886,1116:207,167,10,0,0,0.620454 -26887,1116:208,168,10,0,0,0.617523 -26888,1116:209,169,10,0,0,0.618686 -26889,1117:100,170,10,0,0,0.618348 -26890,1117:101,171,10,0,0,0.616892 -26891,1117:102,172,10,0,0,0.615433 -26892,1117:103,173,10,0,0,0.614996 -26893,1117:104,174,10,0,0,0.613242 -26894,1117:205,175,10,0,0,0.61134 -26895,1117:206,176,10,0,0,0.609435 -26896,1117:207,177,10,0,0,0.607844 -26897,1117:208,178,10,0,0,0.606643 -26898,1117:209,179,10,0,0,0.605613 -26899,1118:100,180,10,0,0,0.602763 -26900,7118:110,-180,11,0,0,0.594419 -26901,7117:219,-179,11,0,0,0.59625 -26902,7117:218,-178,11,0,0,0.594171 -26903,7117:217,-177,11,0,0,0.589927 -26904,7117:216,-176,11,0,0,0.590996 -26905,7117:215,-175,11,0,0,0.586019 -26906,7117:114,-174,11,0,0,0.5834 -26907,7117:113,-173,11,0,0,0.58075 -26908,7117:112,-172,11,0,0,0.577545 -26909,7117:111,-171,11,0,0,0.576166 -26910,7117:110,-170,11,0,0,0.580701 -26911,7116:219,-169,11,0,0,0.584798 -26912,7116:218,-168,11,0,0,0.584024 -26913,7116:217,-167,11,0,0,0.584748 -26914,7116:216,-166,11,0,0,0.583025 -26915,7116:215,-165,11,0,0,0.568572 -26916,7116:114,-164,11,0,0,0.565166 -26917,7116:113,-163,11,0,0,0.565898 -26918,7116:112,-162,11,0,0,0.572725 -26919,7116:111,-161,11,0,0,0.580901 -26920,7116:110,-160,11,0,0,0.581176 -26921,7115:219,-159,11,0,0,0.577796 -26922,7115:218,-158,11,0,0,0.577645 -26923,7115:217,-157,11,0,0,0.579399 -26924,7115:216,-156,11,0,0,0.565469 -26925,7115:215,-155,11,0,0,0.558742 -26926,7115:114,-154,11,0,0,0.561426 -26927,7115:113,-153,11,0,0,0.55783 -26928,7115:112,-152,11,0,0,0.549121 -26929,7115:111,-151,11,0,0,0.545251 -26930,7115:110,-150,11,0,0,0.543391 -26931,7114:219,-149,11,0,0,0.54028 -26932,7114:218,-148,11,0,0,0.5413 -26933,7114:217,-147,11,0,0,0.538416 -26934,7114:216,-146,11,0,0,0.541249 -26935,7114:215,-145,11,0,0,0.537547 -26936,7114:114,-144,11,0,0,0.534072 -26937,7114:113,-143,11,0,0,0.531566 -26938,7114:112,-142,11,0,0,0.525268 -26939,7114:111,-141,11,0,0,0.525242 -26940,7114:110,-140,11,0,0,0.522474 -26941,7113:219,-139,11,0,0,0.517242 -26942,7113:218,-138,11,0,0,0.515318 -26943,7113:217,-137,11,0,0,0.512828 -26944,7113:216,-136,11,0,0,0.515318 -26945,7113:215,-135,11,0,0,0.508567 -26946,7113:114,-134,11,0,0,0.498499 -26947,7113:113,-133,11,0,0,0.503713 -26948,7113:112,-132,11,0,0,0.496572 -26949,7113:111,-131,11,0,0,0.491333 -26950,7113:110,-130,11,0,0,0.492617 -26951,7112:219,-129,11,0,0,0.487816 -26952,7112:218,-128,11,0,0,0.482298 -26953,7112:217,-127,11,0,0,0.483582 -26954,7112:216,-126,11,0,0,0.484479 -26955,7112:215,-125,11,0,0,0.47999 -26956,7112:114,-124,11,0,0,0.481734 -26957,7112:113,-123,11,0,0,0.480836 -26958,7112:112,-122,11,0,0,0.482915 -26959,7112:111,-121,11,0,0,0.489074 -26960,7112:110,-120,11,0,0,0.501247 -26961,7111:219,-119,11,0,0,0.508798 -26962,7111:218,-118,11,0,0,0.517935 -26963,7111:217,-117,11,0,0,0.521423 -26964,7111:216,-116,11,0,0,0.516832 -26965,7111:215,-115,11,0,0,0.521833 -26966,7111:114,-114,11,0,0,0.533791 -26967,7111:113,-113,11,0,0,0.541708 -26968,7111:112,-112,11,0,0,0.550799 -26969,7111:111,-111,11,0,0,0.557019 -26970,7111:110,-110,11,0,0,0.563296 -26971,7110:219,-109,11,0,0,0.57285 -26972,7110:218,-108,11,0,0,0.596275 -26973,7110:217,-107,11,0,0,0.605932 -26974,7110:216,-106,11,0,0,0.623281 -26975,7109:216,-96,11,0,0,0.578022 -26976,7109:215,-95,11,0,0,0.578147 -26977,7109:114,-94,11,0,0,0.584349 -26978,7109:113,-93,11,0,0,0.586917 -26979,7109:112,-92,11,0,0,0.594419 -26980,7109:111,-91,11,0,0,0.588684 -26981,7108:217,-87,11,0,0,0.632762 -26982,7108:216,-86,11,0,0,0.633048 -26983,7108:215,-85,11,0,0,0.625498 -26984,7108:114,-84,11,0,0,0.620817 -26985,7108:113,-83,11,0,0,0.616284 -26986,7108:112,-82,11,0,0,0.619075 -26987,7108:111,-81,11,0,0,0.619317 -26988,7108:110,-80,11,0,0,0.624222 -26989,7107:219,-79,11,0,0,0.626052 -26990,7107:218,-78,11,0,0,0.620213 -26991,7107:114,-74,11,0,0,0.610119 -26992,7107:113,-73,11,0,0,0.621639 -26993,7107:112,-72,11,0,0,0.61808 -26994,7107:111,-71,11,0,0,0.612902 -26995,7107:110,-70,11,0,0,0.616042 -26996,7106:219,-69,11,0,0,0.619971 -26997,7106:218,-68,11,0,0,0.623595 -26998,7106:217,-67,11,0,0,0.625257 -26999,7106:216,-66,11,0,0,0.623595 -27000,7106:215,-65,11,0,0,0.623258 -27001,7106:114,-64,11,0,0,0.623764 -27002,7106:113,-63,11,0,0,0.621785 -27003,7106:112,-62,11,0,0,0.616478 -27004,7106:111,-61,11,0,0,0.61762 -27005,7106:110,-60,11,0,0,0.615385 -27006,7105:219,-59,11,0,0,0.613608 -27007,7105:218,-58,11,0,0,0.612902 -27008,7105:217,-57,11,0,0,0.610632 -27009,7105:216,-56,11,0,0,0.608407 -27010,7105:215,-55,11,0,0,0.607549 -27011,7105:114,-54,11,0,0,0.60777 -27012,7105:113,-53,11,0,0,0.60409 -27013,7105:112,-52,11,0,0,0.599856 -27014,7105:111,-51,11,0,0,0.596126 -27015,7105:110,-50,11,0,0,0.592957 -27016,7104:219,-49,11,0,0,0.590797 -27017,7104:218,-48,11,0,0,0.59184 -27018,7104:217,-47,11,0,0,0.590027 -27019,7104:216,-46,11,0,0,0.588585 -27020,7104:215,-45,11,0,0,0.584499 -27021,7104:114,-44,11,0,0,0.579975 -27022,7104:113,-43,11,0,0,0.578422 -27023,7104:112,-42,11,0,0,0.575514 -27024,7104:111,-41,11,0,0,0.576066 -27025,7104:110,-40,11,0,0,0.575012 -27026,7103:219,-39,11,0,0,0.57104 -27027,7103:218,-38,11,0,0,0.568446 -27028,7103:217,-37,11,0,0,0.568017 -27029,7103:216,-36,11,0,0,0.565595 -27030,7103:215,-35,11,0,0,0.56269 -27031,7103:114,-34,11,0,0,0.557855 -27032,7103:113,-33,11,0,0,0.554178 -27033,7103:112,-32,11,0,0,0.553162 -27034,7103:111,-31,11,0,0,0.55085 -27035,7103:110,-30,11,0,0,0.550189 -27036,7102:219,-29,11,0,0,0.546932 -27037,7102:218,-28,11,0,0,0.545506 -27038,7102:217,-27,11,0,0,0.544079 -27039,7102:216,-26,11,0,0,0.541377 -27040,7102:215,-25,11,0,0,0.537956 -27041,7102:114,-24,11,0,0,0.535784 -27042,7102:113,-23,11,0,0,0.532231 -27043,7102:112,-22,11,0,0,0.52852 -27044,7102:111,-21,11,0,0,0.522372 -27045,7102:110,-20,11,0,0,0.50754 -27046,7101:219,-19,11,0,0,0.517191 -27047,7101:218,-18,11,0,0,0.50659 -27048,7101:217,-17,11,0,0,0.49873 -27049,1103:217,37,11,0,0,0.64077 -27050,1103:218,38,11,0,0,0.650992 -27051,1103:219,39,11,0,0,0.65597 -27052,1104:110,40,11,0,0,0.650968 -27053,1105:218,58,11,0,0,0.572625 -27054,1105:219,59,11,0,0,0.572775 -27055,1106:110,60,11,0,0,0.588286 -27056,1106:111,61,11,0,0,0.587215 -27057,1106:112,62,11,0,0,0.592038 -27058,1106:113,63,11,0,0,0.589803 -27059,1106:114,64,11,0,0,0.591964 -27060,1106:215,65,11,0,0,0.587365 -27061,1106:216,66,11,0,0,0.592807 -27062,1106:217,67,11,0,0,0.599609 -27063,1106:218,68,11,0,0,0.619631 -27064,1106:219,69,11,0,0,0.619801 -27065,1107:110,70,11,0,0,0.61779 -27066,1107:111,71,11,0,0,0.625474 -27067,1107:112,72,11,0,0,0.630107 -27068,1108:217,87,11,0,0,0.597857 -27069,1108:218,88,11,0,0,0.598449 -27070,1108:219,89,11,0,0,0.611292 -27071,1109:110,90,11,0,0,0.621518 -27072,1109:111,91,11,0,0,0.631711 -27073,1109:112,92,11,0,0,0.639918 -27074,1109:113,93,11,0,0,0.633907 -27075,1110:217,107,11,0,0,0.519321 -27076,1110:218,108,11,0,0,0.535504 -27077,1110:219,109,11,0,0,0.526805 -27078,1111:110,110,11,0,0,0.501863 -27079,1111:111,111,11,0,0,0.495879 -27080,1111:112,112,11,0,0,0.55499 -27081,1111:113,113,11,0,0,0.558995 -27082,1111:114,114,11,0,0,0.571719 -27083,1111:215,115,11,0,0,0.576919 -27084,1111:216,116,11,0,0,0.584099 -27085,1111:217,117,11,0,0,0.591046 -27086,1111:218,118,11,0,0,0.594988 -27087,1111:219,119,11,0,0,0.600177 -27088,1112:110,120,11,0,0,0.604238 -27089,1112:111,121,11,0,0,0.60136 -27090,1112:112,122,11,0,0,0.58365 -27091,1112:113,123,11,0,0,0.581301 -27092,1112:114,124,11,0,0,0.579074 -27093,1112:215,125,11,0,0,0.577997 -27094,1112:216,126,11,0,0,0.576392 -27095,1112:217,127,11,0,0,0.580201 -27096,1112:218,128,11,0,0,0.584898 -27097,1112:219,129,11,0,0,0.586892 -27098,1113:110,130,11,0,0,0.588659 -27099,1113:111,131,11,0,0,0.596077 -27100,1113:112,132,11,0,0,0.597017 -27101,1113:113,133,11,0,0,0.598623 -27102,1113:114,134,11,0,0,0.597288 -27103,1113:215,135,11,0,0,0.606912 -27104,1113:216,136,11,0,0,0.607574 -27105,1113:217,137,11,0,0,0.607893 -27106,1113:218,138,11,0,0,0.616673 -27107,1113:219,139,11,0,0,0.622702 -27108,1114:110,140,11,0,0,0.621639 -27109,1114:111,141,11,0,0,0.621785 -27110,1114:112,142,11,0,0,0.621639 -27111,1114:113,143,11,0,0,0.621591 -27112,1114:114,144,11,0,0,0.625233 -27113,1114:215,145,11,0,0,0.623547 -27114,1114:216,146,11,0,0,0.621132 -27115,1114:217,147,11,0,0,0.624125 -27116,1114:218,148,11,0,0,0.624294 -27117,1114:219,149,11,0,0,0.624318 -27118,1115:110,150,11,0,0,0.624535 -27119,1115:111,151,11,0,0,0.62263 -27120,1115:112,152,11,0,0,0.622171 -27121,1115:113,153,11,0,0,0.622099 -27122,1115:114,154,11,0,0,0.622099 -27123,1115:215,155,11,0,0,0.62386 -27124,1115:216,156,11,0,0,0.623258 -27125,1115:217,157,11,0,0,0.622002 -27126,1115:218,158,11,0,0,0.620696 -27127,1115:219,159,11,0,0,0.619608 -27128,1116:110,160,11,0,0,0.618105 -27129,1116:111,161,11,0,0,0.617377 -27130,1116:112,162,11,0,0,0.618251 -27131,1116:113,163,11,0,0,0.618953 -27132,1116:114,164,11,0,0,0.617377 -27133,1116:215,165,11,0,0,0.611657 -27134,1116:216,166,11,0,0,0.611121 -27135,1116:217,167,11,0,0,0.613778 -27136,1116:218,168,11,0,0,0.613828 -27137,1116:219,169,11,0,0,0.611999 -27138,1117:110,170,11,0,0,0.610192 -27139,1117:111,171,11,0,0,0.609117 -27140,1117:112,172,11,0,0,0.6063 -27141,1117:113,173,11,0,0,0.605515 -27142,1117:114,174,11,0,0,0.602049 -27143,1117:215,175,11,0,0,0.601705 -27144,1117:216,176,11,0,0,0.600201 -27145,1117:217,177,11,0,0,0.594518 -27146,1117:218,178,11,0,0,0.597437 -27147,1117:219,179,11,0,0,0.598128 -27148,1118:110,180,11,0,0,0.594419 -27149,7118:120,-180,12,0,0,0.583225 -27150,7117:229,-179,12,0,0,0.584548 -27151,7117:228,-178,12,0,0,0.582526 -27152,7117:227,-177,12,0,0,0.579975 -27153,7117:226,-176,12,0,0,0.579023 -27154,7117:225,-175,12,0,0,0.576893 -27155,7117:124,-174,12,0,0,0.575966 -27156,7117:123,-173,12,0,0,0.573605 -27157,7117:122,-172,12,0,0,0.571014 -27158,7117:121,-171,12,0,0,0.568017 -27159,7117:120,-170,12,0,0,0.563499 -27160,7116:229,-169,12,0,0,0.561704 -27161,7116:228,-168,12,0,0,0.560641 -27162,7116:227,-167,12,0,0,0.571518 -27163,7116:226,-166,12,0,0,0.572348 -27164,7116:225,-165,12,0,0,0.559071 -27165,7116:124,-164,12,0,0,0.558843 -27166,7116:123,-163,12,0,0,0.565166 -27167,7116:122,-162,12,0,0,0.571493 -27168,7116:121,-161,12,0,0,0.569051 -27169,7116:120,-160,12,0,0,0.558514 -27170,7115:229,-159,12,0,0,0.560388 -27171,7115:227,-157,12,0,0,0.554457 -27172,7115:226,-156,12,0,0,0.554762 -27173,7115:225,-155,12,0,0,0.555853 -27174,7115:124,-154,12,0,0,0.552374 -27175,7115:123,-153,12,0,0,0.547136 -27176,7115:122,-152,12,0,0,0.54492 -27177,7115:121,-151,12,0,0,0.539335 -27178,7115:120,-150,12,0,0,0.537394 -27179,7114:229,-149,12,0,0,0.532027 -27180,7114:228,-148,12,0,0,0.526855 -27181,7114:227,-147,12,0,0,0.524627 -27182,7114:226,-146,12,0,0,0.520603 -27183,7114:225,-145,12,0,0,0.514318 -27184,7114:124,-144,12,0,0,0.513804 -27185,7114:123,-143,12,0,0,0.512084 -27186,7114:122,-142,12,0,0,0.511596 -27187,7114:121,-141,12,0,0,0.505177 -27188,7114:120,-140,12,0,0,0.504535 -27189,7113:229,-139,12,0,0,0.495571 -27190,7113:228,-138,12,0,0,0.495108 -27191,7113:227,-137,12,0,0,0.486481 -27192,7113:226,-136,12,0,0,0.49349 -27193,7113:225,-135,12,0,0,0.495879 -27194,7113:124,-134,12,0,0,0.489895 -27195,7113:123,-133,12,0,0,0.477016 -27196,7113:122,-132,12,0,0,0.471226 -27197,7113:121,-131,12,0,0,0.47453 -27198,7113:120,-130,12,0,0,0.471944 -27199,7112:229,-129,12,0,0,0.467593 -27200,7112:228,-128,12,0,0,0.46703 -27201,7112:227,-127,12,0,0,0.462302 -27203,7112:225,-125,12,0,0,0.461945 -27204,7112:124,-124,12,0,0,0.460745 -27205,7112:123,-123,12,0,0,0.459162 -27206,7112:122,-122,12,0,0,0.461587 -27207,7112:121,-121,12,0,0,0.460872 -27208,7112:120,-120,12,0,0,0.465828 -27209,7111:229,-119,12,0,0,0.4679 -27210,7111:228,-118,12,0,0,0.474812 -27211,7111:227,-117,12,0,0,0.479092 -27212,7111:226,-116,12,0,0,0.489665 -27213,7111:225,-115,12,0,0,0.501273 -27214,7111:124,-114,12,0,0,0.517397 -27215,7111:123,-113,12,0,0,0.528443 -27216,7111:122,-112,12,0,0,0.528111 -27217,7111:121,-111,12,0,0,0.520372 -27218,7111:120,-110,12,0,0,0.536781 -27219,7110:229,-109,12,0,0,0.58395 -27220,7110:228,-108,12,0,0,0.586319 -27221,7110:227,-107,12,0,0,0.608113 -27222,7110:226,-106,12,0,0,0.60799 -27223,7109:227,-97,12,0,0,0.576191 -27224,7109:226,-96,12,0,0,0.579149 -27225,7109:225,-95,12,0,0,0.582226 -27226,7109:124,-94,12,0,0,0.584898 -27227,7109:123,-93,12,0,0,0.583799 -27228,7109:122,-92,12,0,0,0.59189 -27229,7109:121,-91,12,0,0,0.585247 -27230,7109:120,-90,12,0,0,0.580376 -27231,7108:229,-89,12,0,0,0.5836 -27232,7108:226,-86,12,0,0,0.631782 -27233,7108:225,-85,12,0,0,0.613608 -27234,7108:124,-84,12,0,0,0.611145 -27235,7108:122,-82,12,0,0,0.612755 -27236,7108:121,-81,12,0,0,0.613754 -27237,7108:120,-80,12,0,0,0.615895 -27238,7107:229,-79,12,0,0,0.592733 -27239,7107:226,-76,12,0,0,0.610803 -27240,7107:225,-75,12,0,0,0.606079 -27241,7107:124,-74,12,0,0,0.612585 -27242,7107:123,-73,12,0,0,0.612975 -27243,7107:122,-72,12,0,0,0.604606 -27244,7107:121,-71,12,0,0,0.606079 -27245,7107:120,-70,12,0,0,0.612194 -27246,7106:229,-69,12,0,0,0.612682 -27247,7106:228,-68,12,0,0,0.613194 -27248,7106:227,-67,12,0,0,0.61745 -27249,7106:226,-66,12,0,0,0.618274 -27250,7106:225,-65,12,0,0,0.614582 -27251,7106:124,-64,12,0,0,0.614947 -27252,7106:123,-63,12,0,0,0.615385 -27253,7106:122,-62,12,0,0,0.613267 -27254,7106:121,-61,12,0,0,0.613097 -27255,7106:120,-60,12,0,0,0.613511 -27256,7105:229,-59,12,0,0,0.611047 -27257,7105:228,-58,12,0,0,0.607672 -27258,7105:227,-57,12,0,0,0.606962 -27259,7105:226,-56,12,0,0,0.604434 -27260,7105:225,-55,12,0,0,0.60232 -27261,7105:124,-54,12,0,0,0.600744 -27262,7105:123,-53,12,0,0,0.59882 -27263,7105:122,-52,12,0,0,0.596597 -27264,7105:121,-51,12,0,0,0.59583 -27265,7105:120,-50,12,0,0,0.593204 -27266,7104:229,-49,12,0,0,0.588012 -27267,7104:228,-48,12,0,0,0.585646 -27268,7104:227,-47,12,0,0,0.58572 -27269,7104:226,-46,12,0,0,0.583725 -27270,7104:225,-45,12,0,0,0.580125 -27271,7104:124,-44,12,0,0,0.575765 -27272,7104:123,-43,12,0,0,0.575765 -27273,7104:122,-42,12,0,0,0.572046 -27274,7104:121,-41,12,0,0,0.570461 -27275,7104:120,-40,12,0,0,0.568572 -27276,7103:229,-39,12,0,0,0.564485 -27277,7103:228,-38,12,0,0,0.563296 -27278,7103:227,-37,12,0,0,0.562209 -27279,7103:226,-36,12,0,0,0.560515 -27280,7103:225,-35,12,0,0,0.558261 -27281,7103:124,-34,12,0,0,0.558236 -27282,7103:123,-33,12,0,0,0.554482 -27283,7103:122,-32,12,0,0,0.549909 -27284,7103:121,-31,12,0,0,0.546779 -27285,7103:120,-30,12,0,0,0.543748 -27286,7102:229,-29,12,0,0,0.541708 -27287,7102:228,-28,12,0,0,0.539948 -27288,7102:227,-27,12,0,0,0.539156 -27289,7102:226,-26,12,0,0,0.536986 -27290,7102:225,-25,12,0,0,0.534456 -27291,7102:124,-24,12,0,0,0.531259 -27292,7102:123,-23,12,0,0,0.527214 -27293,7102:122,-22,12,0,0,0.522167 -27294,7102:121,-21,12,0,0,0.517551 -27295,7102:120,-20,12,0,0,0.505691 -27296,7101:229,-19,12,0,0,0.500066 -27297,7101:228,-18,12,0,0,0.487739 -27298,1103:227,37,12,0,0,0.632427 -27299,1103:228,38,12,0,0,0.647271 -27300,1106:120,60,12,0,0,0.57985 -27301,1106:121,61,12,0,0,0.58724 -27302,1106:122,62,12,0,0,0.584548 -27303,1106:123,63,12,0,0,0.586144 -27304,1106:124,64,12,0,0,0.579674 -27305,1106:225,65,12,0,0,0.58065 -27306,1106:226,66,12,0,0,0.588808 -27307,1106:227,67,12,0,0,0.603353 -27308,1106:228,68,12,0,0,0.609508 -27309,1106:229,69,12,0,0,0.61256 -27310,1107:122,72,12,0,0,0.617911 -28933,7214:104,-144,20,0,0,0.41528 -27311,1108:228,88,12,0,0,0.582651 -27312,1108:229,89,12,0,0,0.585297 -27313,1109:120,90,12,0,0,0.585771 -27314,1109:121,91,12,0,0,0.573982 -27315,1109:122,92,12,0,0,0.606324 -27316,1110:229,109,12,0,0,0.493105 -27317,1111:120,110,12,0,0,0.47699 -27318,1111:122,112,12,0,0,0.486943 -27319,1111:123,113,12,0,0,0.506924 -27320,1111:124,114,12,0,0,0.524114 -27321,1111:225,115,12,0,0,0.542626 -27322,1111:226,116,12,0,0,0.567084 -27323,1111:227,117,12,0,0,0.575062 -27324,1111:228,118,12,0,0,0.583999 -27325,1111:229,119,12,0,0,0.576417 -27326,1112:120,120,12,0,0,0.572926 -27327,1112:121,121,12,0,0,0.569655 -27328,1112:122,122,12,0,0,0.561375 -27329,1112:123,123,12,0,0,0.556638 -27330,1112:124,124,12,0,0,0.56231 -27331,1112:225,125,12,0,0,0.560135 -27332,1112:226,126,12,0,0,0.5594 -27333,1112:227,127,12,0,0,0.561755 -27334,1112:228,128,12,0,0,0.56958 -27335,1112:229,129,12,0,0,0.576442 -27336,1113:120,130,12,0,0,0.577044 -27337,1113:121,131,12,0,0,0.575639 -27338,1113:122,132,12,0,0,0.580926 -27339,1113:123,133,12,0,0,0.587291 -27340,1113:124,134,12,0,0,0.586618 -27341,1113:225,135,12,0,0,0.593353 -27342,1113:226,136,12,0,0,0.599609 -27343,1113:227,137,12,0,0,0.608799 -27344,1113:228,138,12,0,0,0.60941 -27345,1113:229,139,12,0,0,0.60657 -27346,1114:120,140,12,0,0,0.61373 -27347,1114:121,141,12,0,0,0.611633 -27348,1114:122,142,12,0,0,0.613535 -27349,1114:123,143,12,0,0,0.610827 -27350,1114:124,144,12,0,0,0.612926 -27351,1114:225,145,12,0,0,0.617134 -27352,1114:226,146,12,0,0,0.615798 -27353,1114:227,147,12,0,0,0.613973 -27354,1114:228,148,12,0,0,0.616211 -27355,1114:229,149,12,0,0,0.618032 -27356,1115:120,150,12,0,0,0.619801 -27357,1115:121,151,12,0,0,0.617596 -27358,1115:122,152,12,0,0,0.617887 -27359,1115:123,153,12,0,0,0.616139 -27360,1115:124,154,12,0,0,0.61728 -27361,1115:225,155,12,0,0,0.61626 -27362,1115:226,156,12,0,0,0.615215 -27363,1115:227,157,12,0,0,0.615482 -27364,1115:228,158,12,0,0,0.613584 -27365,1115:229,159,12,0,0,0.613998 -27366,1116:120,160,12,0,0,0.613437 -27367,1116:121,161,12,0,0,0.611219 -27368,1116:122,162,12,0,0,0.609826 -27369,1116:123,163,12,0,0,0.610437 -27370,1116:124,164,12,0,0,0.610999 -27371,1116:225,165,12,0,0,0.606496 -27372,1116:226,166,12,0,0,0.607182 -27373,1116:227,167,12,0,0,0.606472 -27374,1116:228,168,12,0,0,0.607133 -27375,1116:229,169,12,0,0,0.606447 -27376,1117:120,170,12,0,0,0.600103 -27377,1117:121,171,12,0,0,0.596126 -27378,1117:122,172,12,0,0,0.598746 -27379,1117:123,173,12,0,0,0.598968 -27380,1117:124,174,12,0,0,0.597956 -27381,1117:225,175,12,0,0,0.595087 -27382,1117:226,176,12,0,0,0.589952 -27383,1117:227,177,12,0,0,0.584573 -27384,1117:228,178,12,0,0,0.582501 -27385,1117:229,179,12,0,0,0.582876 -27386,1118:120,180,12,0,0,0.583225 -27387,7118:130,-180,13,0,0,0.576392 -27388,7117:239,-179,13,0,0,0.573052 -27389,7117:238,-178,13,0,0,0.571467 -27390,7117:237,-177,13,0,0,0.569428 -27391,7117:236,-176,13,0,0,0.568496 -27392,7117:235,-175,13,0,0,0.568521 -27393,7117:134,-174,13,0,0,0.56456 -27394,7117:133,-173,13,0,0,0.563625 -27395,7117:132,-172,13,0,0,0.561755 -27396,7117:131,-171,13,0,0,0.559805 -27397,7117:130,-170,13,0,0,0.558666 -27398,7116:239,-169,13,0,0,0.550901 -27399,7116:238,-168,13,0,0,0.552756 -27400,7116:237,-167,13,0,0,0.560009 -27401,7116:236,-166,13,0,0,0.552374 -27402,7116:235,-165,13,0,0,0.545659 -27403,7116:134,-164,13,0,0,0.544869 -27404,7116:133,-163,13,0,0,0.550672 -27405,7116:132,-162,13,0,0,0.548307 -27406,7116:131,-161,13,0,0,0.548968 -27407,7116:130,-160,13,0,0,0.548332 -27408,7115:239,-159,13,0,0,0.545022 -27409,7115:238,-158,13,0,0,0.547339 -27410,7115:237,-157,13,0,0,0.547798 -27411,7115:236,-156,13,0,0,0.54548 -27412,7115:235,-155,13,0,0,0.541912 -27413,7115:134,-154,13,0,0,0.540406 -27414,7115:133,-153,13,0,0,0.536449 -27415,7115:132,-152,13,0,0,0.532001 -27416,7115:131,-151,13,0,0,0.527342 -27417,7115:130,-150,13,0,0,0.526548 -27418,7114:239,-149,13,0,0,0.525165 -27419,7114:238,-148,13,0,0,0.521295 -27420,7114:237,-147,13,0,0,0.516165 -27421,7114:236,-146,13,0,0,0.512084 -27422,7114:235,-145,13,0,0,0.507411 -27423,7114:134,-144,13,0,0,0.502891 -27424,7114:133,-143,13,0,0,0.499809 -27425,7114:132,-142,13,0,0,0.49498 -27426,7114:131,-141,13,0,0,0.489665 -27427,7114:130,-140,13,0,0,0.491436 -27428,7113:239,-139,13,0,0,0.484428 -27429,7113:238,-138,13,0,0,0.478836 -27430,7113:237,-137,13,0,0,0.469 -27431,7113:236,-136,13,0,0,0.468181 -27432,7113:235,-135,13,0,0,0.464295 -27433,7113:134,-134,13,0,0,0.466493 -27434,7113:133,-133,13,0,0,0.456306 -27435,7113:132,-132,13,0,0,0.454955 -27436,7113:131,-131,13,0,0,0.450577 -27437,7113:130,-130,13,0,0,0.445597 -27438,7112:239,-129,13,0,0,0.450017 -27439,7112:238,-128,13,0,0,0.44801 -27440,7112:237,-127,13,0,0,0.444176 -27441,7112:236,-126,13,0,0,0.447679 -27442,7112:235,-125,13,0,0,0.448162 -27443,7112:134,-124,13,0,0,0.448568 -27444,7112:133,-123,13,0,0,0.446892 -27445,7112:132,-122,13,0,0,0.446181 -27446,7112:131,-121,13,0,0,0.443187 -27447,7112:130,-120,13,0,0,0.444709 -27448,7111:239,-119,13,0,0,0.447247 -27449,7111:238,-118,13,0,0,0.458014 -27450,7111:237,-117,13,0,0,0.457708 -27451,7111:236,-116,13,0,0,0.463656 -27452,7111:235,-115,13,0,0,0.476401 -27453,7111:134,-114,13,0,0,0.485557 -27454,7111:133,-113,13,0,0,0.489818 -27455,7111:132,-112,13,0,0,0.504253 -27456,7111:131,-111,13,0,0,0.542396 -27457,7111:130,-110,13,0,0,0.571895 -27458,7110:239,-109,13,0,0,0.568395 -27459,7110:238,-108,13,0,0,0.581226 -27460,7110:237,-107,13,0,0,0.592832 -27461,7109:237,-97,13,0,0,0.571995 -27462,7109:236,-96,13,0,0,0.573932 -27463,7109:235,-95,13,0,0,0.576191 -27464,7109:134,-94,13,0,0,0.580401 -27465,7109:133,-93,13,0,0,0.581026 -27466,7109:132,-92,13,0,0,0.580576 -27467,7109:131,-91,13,0,0,0.57955 -27468,7109:130,-90,13,0,0,0.578397 -27469,7108:239,-89,13,0,0,0.581826 -27470,7108:238,-88,13,0,0,0.593502 -27471,7108:237,-87,13,0,0,0.622967 -27472,7108:236,-86,13,0,0,0.61502 -27473,7108:235,-85,13,0,0,0.607844 -27474,7108:134,-84,13,0,0,0.607354 -27475,7107:239,-79,13,0,0,0.602467 -27476,7107:238,-78,13,0,0,0.56779 -27477,7107:237,-77,13,0,0,0.569403 -27478,7107:236,-76,13,0,0,0.586019 -27479,7107:235,-75,13,0,0,0.596843 -27480,7107:134,-74,13,0,0,0.595756 -27481,7107:133,-73,13,0,0,0.598425 -27482,7107:132,-72,13,0,0,0.600793 -27483,7107:131,-71,13,0,0,0.603304 -27484,7107:130,-70,13,0,0,0.606201 -27485,7106:239,-69,13,0,0,0.604533 -27486,7106:238,-68,13,0,0,0.600621 -27487,7106:237,-67,13,0,0,0.601852 -27488,7106:236,-66,13,0,0,0.601803 -27489,7106:235,-65,13,0,0,0.60025 -27490,7106:134,-64,13,0,0,0.601261 -27491,7106:133,-63,13,0,0,0.602049 -27492,7106:132,-62,13,0,0,0.605343 -27493,7106:131,-61,13,0,0,0.606594 -27494,7106:130,-60,13,0,0,0.603525 -27495,7105:239,-59,13,0,0,0.600768 -27496,7105:238,-58,13,0,0,0.603378 -27497,7105:237,-57,13,0,0,0.605171 -27498,7105:236,-56,13,0,0,0.603083 -27499,7105:235,-55,13,0,0,0.598277 -27500,7105:134,-54,13,0,0,0.599042 -27501,7105:133,-53,13,0,0,0.595434 -27502,7105:132,-52,13,0,0,0.591616 -27503,7105:131,-51,13,0,0,0.590549 -27504,7105:130,-50,13,0,0,0.584324 -27505,7104:239,-49,13,0,0,0.582526 -27506,7104:238,-48,13,0,0,0.581126 -27507,7104:237,-47,13,0,0,0.57717 -27508,7104:236,-46,13,0,0,0.575488 -27509,7104:235,-45,13,0,0,0.573781 -27510,7104:134,-44,13,0,0,0.572373 -27511,7104:133,-43,13,0,0,0.571116 -27512,7104:132,-42,13,0,0,0.566529 -27513,7104:131,-41,13,0,0,0.563322 -27514,7104:130,-40,13,0,0,0.561349 -27515,7103:239,-39,13,0,0,0.557932 -27516,7103:238,-38,13,0,0,0.554914 -27517,7103:237,-37,13,0,0,0.551078 -27518,7103:236,-36,13,0,0,0.549833 -27519,7103:235,-35,13,0,0,0.550519 -27520,7103:134,-34,13,0,0,0.549732 -27521,7103:133,-33,13,0,0,0.544512 -27522,7103:132,-32,13,0,0,0.539641 -27523,7103:131,-31,13,0,0,0.539514 -27524,7103:130,-30,13,0,0,0.538543 -27525,7102:239,-29,13,0,0,0.536244 -27526,7102:238,-28,13,0,0,0.534277 -27527,7102:237,-27,13,0,0,0.533894 -27528,7102:236,-26,13,0,0,0.532717 -27529,7102:235,-25,13,0,0,0.531361 -27530,7102:134,-24,13,0,0,0.528315 -27531,7102:133,-23,13,0,0,0.525754 -27532,7102:132,-22,13,0,0,0.519474 -27533,7102:131,-21,13,0,0,0.508772 -27534,7102:130,-20,13,0,0,0.505691 -27535,7101:239,-19,13,0,0,0.485198 -27536,7101:238,-18,13,0,0,0.474838 -27537,7101:237,-17,13,0,0,0.457581 -27538,1103:236,36,13,0,0,0.588311 -27539,1103:237,37,13,0,0,0.622267 -27540,1103:238,38,13,0,0,0.629197 -27541,1106:130,60,13,0,0,0.570864 -27542,1106:131,61,13,0,0,0.57965 -27543,1106:132,62,13,0,0,0.576091 -27544,1106:133,63,13,0,0,0.575363 -27545,1106:134,64,13,0,0,0.576417 -27546,1106:235,65,13,0,0,0.579074 -27547,1106:236,66,13,0,0,0.590499 -27548,1106:237,67,13,0,0,0.596498 -27549,1106:238,68,13,0,0,0.581626 -27550,1111:237,117,13,0,0,0.489434 -27551,1111:238,118,13,0,0,0.498268 -27552,1111:239,119,13,0,0,0.522115 -27553,1112:130,120,13,0,0,0.550951 -27554,1112:132,122,13,0,0,0.56226 -27555,1112:133,123,13,0,0,0.551282 -27556,1112:134,124,13,0,0,0.553898 -27557,1112:235,125,13,0,0,0.548866 -27558,1112:236,126,13,0,0,0.550646 -27559,1112:237,127,13,0,0,0.561046 -27560,1112:238,128,13,0,0,0.568169 -27561,1112:239,129,13,0,0,0.564485 -27562,1113:130,130,13,0,0,0.558615 -27563,1113:131,131,13,0,0,0.557779 -27564,1113:132,132,13,0,0,0.568798 -27565,1113:133,133,13,0,0,0.579049 -27566,1113:134,134,13,0,0,0.573253 -27567,1113:235,135,13,0,0,0.572172 -27568,1113:236,136,13,0,0,0.5837 -27569,1113:237,137,13,0,0,0.592485 -27570,1113:238,138,13,0,0,0.589082 -27571,1113:239,139,13,0,0,0.594617 -27572,1114:130,140,13,0,0,0.597066 -27573,1114:131,141,13,0,0,0.601433 -27574,1114:132,142,13,0,0,0.603648 -27575,1114:133,143,13,0,0,0.603574 -27576,1114:134,144,13,0,0,0.605171 -27577,1114:235,145,13,0,0,0.602443 -27578,1114:236,146,13,0,0,0.604065 -27579,1114:237,147,13,0,0,0.604287 -27580,1114:238,148,13,0,0,0.607329 -27581,1114:239,149,13,0,0,0.609483 -27582,1115:130,150,13,0,0,0.609043 -27583,1115:131,151,13,0,0,0.60804 -27584,1115:132,152,13,0,0,0.603624 -27585,1115:133,153,13,0,0,0.601852 -27586,1115:134,154,13,0,0,0.602984 -27587,1115:235,155,13,0,0,0.602836 -27588,1115:236,156,13,0,0,0.605269 -27589,1115:237,157,13,0,0,0.60728 -27590,1115:238,158,13,0,0,0.609556 -27591,1115:239,159,13,0,0,0.606472 -27592,1116:130,160,13,0,0,0.607697 -27593,1116:131,161,13,0,0,0.605244 -27594,1116:132,162,13,0,0,0.60657 -27595,1116:133,163,13,0,0,0.605441 -27596,1116:134,164,13,0,0,0.604631 -27597,1116:235,165,13,0,0,0.601581 -27598,1116:236,166,13,0,0,0.601286 -27599,1116:237,167,13,0,0,0.598326 -27600,1116:238,168,13,0,0,0.596745 -27601,1116:239,169,13,0,0,0.594096 -27602,1117:130,170,13,0,0,0.595929 -27603,1117:131,171,13,0,0,0.586917 -27604,1117:132,172,13,0,0,0.588236 -27605,1117:133,173,13,0,0,0.588311 -27606,1117:134,174,13,0,0,0.579123 -27607,1117:235,175,13,0,0,0.581151 -27608,1117:236,176,13,0,0,0.583025 -27609,1117:237,177,13,0,0,0.586294 -27610,1117:238,178,13,0,0,0.5835 -27611,1117:239,179,13,0,0,0.58025 -27612,1118:130,180,13,0,0,0.576392 -27613,7118:140,-180,14,0,0,0.567311 -27614,7117:249,-179,14,0,0,0.565191 -27615,7117:248,-178,14,0,0,0.549782 -27616,7117:247,-177,14,0,0,0.558995 -27617,7117:246,-176,14,0,0,0.555877 -27618,7117:245,-175,14,0,0,0.560565 -27619,7117:144,-174,14,0,0,0.548764 -27620,7117:143,-173,14,0,0,0.549732 -27621,7117:142,-172,14,0,0,0.548663 -27622,7117:141,-171,14,0,0,0.551383 -27623,7117:140,-170,14,0,0,0.546601 -27624,7116:249,-169,14,0,0,0.545277 -27625,7116:248,-168,14,0,0,0.539003 -27626,7116:247,-167,14,0,0,0.534865 -27627,7116:246,-166,14,0,0,0.536526 -27628,7116:245,-165,14,0,0,0.533663 -27629,7116:144,-164,14,0,0,0.531156 -27630,7116:143,-163,14,0,0,0.530491 -27631,7116:142,-162,14,0,0,0.532052 -27632,7116:141,-161,14,0,0,0.533075 -27633,7116:140,-160,14,0,0,0.531617 -27634,7115:249,-159,14,0,0,0.529953 -27635,7115:248,-158,14,0,0,0.530491 -27636,7115:247,-157,14,0,0,0.530491 -27637,7115:246,-156,14,0,0,0.527957 -27638,7115:245,-155,14,0,0,0.525294 -27639,7115:144,-154,14,0,0,0.523141 -27640,7115:143,-153,14,0,0,0.5225 -27641,7115:142,-152,14,0,0,0.522372 -27642,7115:141,-151,14,0,0,0.519602 -27643,7115:140,-150,14,0,0,0.517961 -27644,7114:249,-149,14,0,0,0.516755 -27645,7114:248,-148,14,0,0,0.514574 -27646,7114:247,-147,14,0,0,0.514215 -27647,7114:246,-146,14,0,0,0.509209 -27648,7114:245,-145,14,0,0,0.502044 -27649,7114:144,-144,14,0,0,0.496753 -27650,7114:143,-143,14,0,0,0.493953 -27651,7114:142,-142,14,0,0,0.48833 -27652,7114:141,-141,14,0,0,0.485916 -27653,7114:140,-140,14,0,0,0.483376 -27654,7113:249,-139,14,0,0,0.474172 -27655,7113:248,-138,14,0,0,0.466928 -27656,7113:247,-137,14,0,0,0.461919 -27657,7113:246,-136,14,0,0,0.460592 -27658,7113:245,-135,14,0,0,0.453351 -27659,7113:144,-134,14,0,0,0.449941 -27660,7113:143,-133,14,0,0,0.445546 -27661,7113:142,-132,14,0,0,0.443744 -27662,7113:141,-131,14,0,0,0.436403 -27663,7113:140,-130,14,0,0,0.434332 -27664,7112:249,-129,14,0,0,0.434358 -27665,7112:248,-128,14,0,0,0.432112 -27666,7112:247,-127,14,0,0,0.431582 -27667,7112:246,-126,14,0,0,0.43128 -27668,7112:245,-125,14,0,0,0.432566 -27669,7112:144,-124,14,0,0,0.430222 -27670,7112:143,-123,14,0,0,0.430852 -27671,7112:142,-122,14,0,0,0.428888 -27672,7112:141,-121,14,0,0,0.432339 -27673,7112:140,-120,14,0,0,0.430978 -27674,7111:249,-119,14,0,0,0.433802 -27675,7111:248,-118,14,0,0,0.435493 -27676,7111:247,-117,14,0,0,0.448975 -27677,7111:246,-116,14,0,0,0.45386 -27678,7111:245,-115,14,0,0,0.45442 -27679,7111:144,-114,14,0,0,0.467081 -27680,7111:143,-113,14,0,0,0.531924 -27681,7111:142,-112,14,0,0,0.554051 -27682,7111:140,-110,14,0,0,0.568748 -27683,7110:249,-109,14,0,0,0.571518 -27684,7110:248,-108,14,0,0,0.568899 -27685,7109:247,-97,14,0,0,0.567815 -27686,7109:246,-96,14,0,0,0.561122 -27687,7109:245,-95,14,0,0,0.562817 -27688,7109:144,-94,14,0,0,0.568546 -27689,7109:143,-93,14,0,0,0.571518 -27690,7109:142,-92,14,0,0,0.572247 -27691,7109:141,-91,14,0,0,0.569554 -27692,7109:140,-90,14,0,0,0.566251 -27693,7108:249,-89,14,0,0,0.566529 -27694,7108:248,-88,14,0,0,0.586991 -27695,7108:247,-87,14,0,0,0.626508 -27696,7108:246,-86,14,0,0,0.60603 -27697,7108:245,-85,14,0,0,0.607549 -27698,7108:144,-84,14,0,0,0.588236 -27699,7108:143,-83,14,0,0,0.568597 -27700,7108:142,-82,14,0,0,0.572499 -27701,7108:141,-81,14,0,0,0.581801 -27702,7108:140,-80,14,0,0,0.606472 -27703,7107:249,-79,14,0,0,0.544818 -27704,7107:248,-78,14,0,0,0.548714 -27705,7107:247,-77,14,0,0,0.556258 -27706,7107:246,-76,14,0,0,0.591219 -27707,7107:245,-75,14,0,0,0.592782 -27708,7107:144,-74,14,0,0,0.588037 -27709,7107:143,-73,14,0,0,0.586892 -27710,7107:142,-72,14,0,0,0.585521 -27711,7107:141,-71,14,0,0,0.589927 -27712,7107:140,-70,14,0,0,0.586743 -27713,7106:249,-69,14,0,0,0.585222 -27714,7106:248,-68,14,0,0,0.58607 -27715,7106:247,-67,14,0,0,0.586219 -27716,7106:246,-66,14,0,0,0.585446 -27717,7106:245,-65,14,0,0,0.588137 -27718,7106:144,-64,14,0,0,0.586019 -27719,7106:143,-63,14,0,0,0.586717 -27720,7106:142,-62,14,0,0,0.585322 -27721,7106:141,-61,14,0,0,0.583974 -27722,7106:140,-60,14,0,0,0.585546 -27723,7105:249,-59,14,0,0,0.588435 -27724,7105:248,-58,14,0,0,0.587913 -27725,7105:247,-57,14,0,0,0.590077 -27726,7105:246,-56,14,0,0,0.588684 -27727,7105:245,-55,14,0,0,0.591046 -27728,7105:144,-54,14,0,0,0.591815 -27729,7105:143,-53,14,0,0,0.586568 -27730,7105:142,-52,14,0,0,0.58375 -27731,7105:141,-51,14,0,0,0.579574 -27732,7105:140,-50,14,0,0,0.573605 -27733,7104:249,-49,14,0,0,0.572096 -27734,7104:248,-48,14,0,0,0.571442 -27735,7104:247,-47,14,0,0,0.570562 -27736,7104:246,-46,14,0,0,0.566832 -27737,7104:245,-45,14,0,0,0.565519 -27738,7104:144,-44,14,0,0,0.565848 -27739,7104:143,-43,14,0,0,0.562817 -27740,7104:142,-42,14,0,0,0.55745 -27741,7104:141,-41,14,0,0,0.553924 -27742,7104:140,-40,14,0,0,0.5524 -27743,7103:249,-39,14,0,0,0.549833 -27744,7103:248,-38,14,0,0,0.54385 -27745,7103:247,-37,14,0,0,0.543213 -27746,7103:246,-36,14,0,0,0.542218 -27747,7103:245,-35,14,0,0,0.541147 -27748,7103:144,-34,14,0,0,0.539514 -27749,7103:143,-33,14,0,0,0.536117 -27750,7103:142,-32,14,0,0,0.532308 -27751,7103:141,-31,14,0,0,0.528597 -27752,7103:140,-30,14,0,0,0.52806 -27753,7102:249,-29,14,0,0,0.524166 -27754,7102:248,-28,14,0,0,0.523295 -27755,7102:247,-27,14,0,0,0.524909 -27756,7102:246,-26,14,0,0,0.525934 -27757,7102:245,-25,14,0,0,0.523833 -27758,7102:144,-24,14,0,0,0.521372 -27759,7102:143,-23,14,0,0,0.521962 -27760,7102:142,-22,14,0,0,0.517909 -27761,7102:141,-21,14,0,0,0.509671 -27762,7102:140,-20,14,0,0,0.50171 -27763,7101:249,-19,14,0,0,0.495776 -27764,7101:248,-18,14,0,0,0.487431 -27765,7101:247,-17,14,0,0,0.46174 -27766,7101:246,-16,14,0,0,0.43509 -27767,1103:246,36,14,0,0,0.594121 -27768,1103:247,37,14,0,0,0.61808 -27769,1105:142,52,14,0,0,0.551409 -27770,1105:143,53,14,0,0,0.545557 -27771,1105:247,57,14,0,0,0.55712 -27772,1105:248,58,14,0,0,0.561325 -27773,1105:249,59,14,0,0,0.564863 -27774,1106:140,60,14,0,0,0.577144 -27775,1106:141,61,14,0,0,0.570209 -27776,1106:142,62,14,0,0,0.570134 -27777,1106:143,63,14,0,0,0.575012 -27778,1106:144,64,14,0,0,0.579123 -27779,1106:245,65,14,0,0,0.582601 -27780,1106:246,66,14,0,0,0.585122 -27781,1106:247,67,14,0,0,0.553924 -27782,1111:249,119,14,0,0,0.480349 -27783,1112:140,120,14,0,0,0.540432 -27784,1112:142,122,14,0,0,0.559021 -27785,1112:143,123,14,0,0,0.543595 -27786,1112:245,125,14,0,0,0.533663 -27787,1112:246,126,14,0,0,0.539641 -27788,1112:247,127,14,0,0,0.55113 -27789,1112:248,128,14,0,0,0.553569 -27790,1112:249,129,14,0,0,0.553162 -27791,1113:140,130,14,0,0,0.547161 -27792,1113:141,131,14,0,0,0.540636 -27793,1113:142,132,14,0,0,0.539973 -27794,1113:143,133,14,0,0,0.557577 -27795,1113:144,134,14,0,0,0.567033 -27796,1113:245,135,14,0,0,0.564509 -27797,1113:246,136,14,0,0,0.57182 -27798,1113:247,137,14,0,0,0.57041 -27799,1113:248,138,14,0,0,0.57041 -27800,1113:249,139,14,0,0,0.576116 -27801,1114:140,140,14,0,0,0.585147 -27802,1114:141,141,14,0,0,0.582551 -27803,1114:142,142,14,0,0,0.581601 -27804,1114:143,143,14,0,0,0.589505 -27805,1114:144,144,14,0,0,0.594096 -27806,1114:245,145,14,0,0,0.590126 -27807,1114:246,146,14,0,0,0.589828 -27808,1114:247,147,14,0,0,0.596473 -27809,1114:248,148,14,0,0,0.59998 -27810,1114:249,149,14,0,0,0.600891 -27811,1115:140,150,14,0,0,0.598128 -27812,1115:141,151,14,0,0,0.593477 -27813,1115:142,152,14,0,0,0.590325 -27814,1115:143,153,14,0,0,0.587465 -27815,1115:144,154,14,0,0,0.58953 -27816,1115:245,155,14,0,0,0.588336 -27817,1115:246,156,14,0,0,0.593477 -27818,1115:247,157,14,0,0,0.594196 -27819,1115:248,158,14,0,0,0.591517 -27820,1115:249,159,14,0,0,0.590996 -27821,1116:140,160,14,0,0,0.587714 -27822,1116:141,161,14,0,0,0.586917 -27823,1116:142,162,14,0,0,0.590624 -27824,1116:143,163,14,0,0,0.591616 -27825,1116:144,164,14,0,0,0.590126 -27826,1116:245,165,14,0,0,0.588634 -27827,1116:246,166,14,0,0,0.590424 -27828,1116:247,167,14,0,0,0.581751 -27829,1116:248,168,14,0,0,0.589306 -27830,1116:249,169,14,0,0,0.588684 -27831,1117:140,170,14,0,0,0.583201 -27832,1117:141,171,14,0,0,0.578948 -27833,1117:142,172,14,0,0,0.575966 -27834,1117:143,173,14,0,0,0.574459 -27835,1117:144,174,14,0,0,0.566529 -27836,1117:245,175,14,0,0,0.560413 -27837,1117:246,176,14,0,0,0.563828 -27838,1117:247,177,14,0,0,0.561931 -27839,1117:248,178,14,0,0,0.559071 -27840,1117:249,179,14,0,0,0.563397 -27841,1118:140,180,14,0,0,0.567311 -27842,7118:350,-180,15,0,0,0.545149 -27843,7117:459,-179,15,0,0,0.537522 -27844,7117:458,-178,15,0,0,0.535606 -27845,7117:457,-177,15,0,0,0.534174 -27846,7117:456,-176,15,0,0,0.544232 -27847,7117:455,-175,15,0,0,0.54996 -27848,7117:354,-174,15,0,0,0.533944 -27849,7117:353,-173,15,0,0,0.53742 -27850,7117:352,-172,15,0,0,0.531847 -27851,7117:351,-171,15,0,0,0.533151 -27852,7117:350,-170,15,0,0,0.521628 -27853,7116:459,-169,15,0,0,0.529161 -27854,7116:458,-168,15,0,0,0.519397 -27855,7116:457,-167,15,0,0,0.525934 -27856,7116:456,-166,15,0,0,0.522064 -27857,7116:455,-165,15,0,0,0.518089 -27858,7116:354,-164,15,0,0,0.518576 -27859,7116:353,-163,15,0,0,0.516729 -27860,7116:352,-162,15,0,0,0.513471 -27861,7116:351,-161,15,0,0,0.514625 -27862,7116:350,-160,15,0,0,0.512828 -27863,7115:459,-159,15,0,0,0.51519 -27864,7115:458,-158,15,0,0,0.517345 -27865,7115:457,-157,15,0,0,0.51578 -27866,7115:456,-156,15,0,0,0.513522 -27867,7115:455,-155,15,0,0,0.515549 -27868,7115:354,-154,15,0,0,0.513214 -27869,7115:353,-153,15,0,0,0.505562 -27870,7115:352,-152,15,0,0,0.502891 -27871,7115:351,-151,15,0,0,0.502557 -27872,7115:350,-150,15,0,0,0.501273 -27873,7114:459,-149,15,0,0,0.500528 -27874,7114:458,-148,15,0,0,0.498088 -27875,7114:457,-147,15,0,0,0.499526 -27876,7114:456,-146,15,0,0,0.49688 -27877,7114:455,-145,15,0,0,0.489742 -27878,7114:354,-144,15,0,0,0.485814 -27879,7114:353,-143,15,0,0,0.481965 -27880,7114:352,-142,15,0,0,0.475529 -27881,7114:351,-141,15,0,0,0.468975 -27882,7114:350,-140,15,0,0,0.466033 -27883,7113:459,-139,15,0,0,0.463094 -27884,7113:458,-138,15,0,0,0.459137 -27885,7113:457,-137,15,0,0,0.453172 -27886,7113:456,-136,15,0,0,0.447145 -27887,7113:455,-135,15,0,0,0.443871 -27888,7113:354,-134,15,0,0,0.440957 -27889,7113:353,-133,15,0,0,0.440298 -27890,7113:352,-132,15,0,0,0.435519 -27891,7113:351,-131,15,0,0,0.431683 -27892,7113:350,-130,15,0,0,0.426272 -27893,7112:459,-129,15,0,0,0.423461 -27894,7112:458,-128,15,0,0,0.422533 -27895,7112:457,-127,15,0,0,0.422031 -27896,7112:456,-126,15,0,0,0.426021 -27897,7112:455,-125,15,0,0,0.421079 -27898,7112:354,-124,15,0,0,0.416453 -27899,7112:353,-123,15,0,0,0.419227 -27900,7112:352,-122,15,0,0,0.418477 -27901,7112:351,-121,15,0,0,0.413859 -27902,7112:350,-120,15,0,0,0.412787 -27903,7111:459,-119,15,0,0,0.404297 -27904,7111:458,-118,15,0,0,0.405015 -27905,7111:457,-117,15,0,0,0.420929 -27906,7111:456,-116,15,0,0,0.422808 -27907,7111:455,-115,15,0,0,0.43418 -27908,7111:354,-114,15,0,0,0.476631 -27909,7111:353,-113,15,0,0,0.523474 -27910,7111:351,-111,15,0,0,0.553721 -27911,7111:350,-110,15,0,0,0.557805 -27912,7109:457,-97,15,0,0,0.533049 -27913,7109:456,-96,15,0,0,0.559907 -27914,7109:455,-95,15,0,0,0.548993 -27915,7109:354,-94,15,0,0,0.553898 -27916,7109:353,-93,15,0,0,0.560287 -27917,7109:352,-92,15,0,0,0.570662 -27918,7109:351,-91,15,0,0,0.571317 -27919,7109:350,-90,15,0,0,0.569806 -27920,7108:459,-89,15,0,0,0.561856 -27921,7108:458,-88,15,0,0,0.57955 -27922,7108:457,-87,15,0,0,0.614631 -27923,7108:456,-86,15,0,0,0.616211 -27924,7108:455,-85,15,0,0,0.604041 -27925,7108:354,-84,15,0,0,0.543059 -27926,7108:353,-83,15,0,0,0.556715 -27927,7108:352,-82,15,0,0,0.523448 -27928,7108:350,-80,15,0,0,0.580175 -27929,7107:459,-79,15,0,0,0.532103 -27930,7107:458,-78,15,0,0,0.56509 -27931,7107:457,-77,15,0,0,0.593279 -27932,7107:456,-76,15,0,0,0.586618 -27933,7107:455,-75,15,0,0,0.583625 -27934,7107:354,-74,15,0,0,0.574283 -27935,7107:353,-73,15,0,0,0.577144 -27936,7107:352,-72,15,0,0,0.572649 -27937,7107:351,-71,15,0,0,0.574936 -27938,7107:350,-70,15,0,0,0.571568 -27939,7106:459,-69,15,0,0,0.571291 -27940,7106:458,-68,15,0,0,0.57041 -27941,7106:457,-67,15,0,0,0.567387 -27942,7106:456,-66,15,0,0,0.571266 -27943,7106:455,-65,15,0,0,0.575187 -27944,7106:354,-64,15,0,0,0.573153 -27945,7106:353,-63,15,0,0,0.573203 -27946,7106:352,-62,15,0,0,0.575413 -27947,7106:351,-61,15,0,0,0.57031 -27948,7106:350,-60,15,0,0,0.565343 -27949,7105:459,-59,15,0,0,0.572197 -27950,7105:458,-58,15,0,0,0.573253 -27951,7105:457,-57,15,0,0,0.579674 -27952,7105:456,-56,15,0,0,0.582251 -27953,7105:455,-55,15,0,0,0.583874 -27954,7105:354,-54,15,0,0,0.581901 -27955,7105:353,-53,15,0,0,0.581576 -27956,7105:352,-52,15,0,0,0.574409 -27957,7105:351,-51,15,0,0,0.567462 -27958,7105:350,-50,15,0,0,0.564485 -27959,7104:459,-49,15,0,0,0.562387 -27960,7104:458,-48,15,0,0,0.559983 -27961,7104:457,-47,15,0,0,0.555802 -27962,7104:456,-46,15,0,0,0.553594 -27963,7104:455,-45,15,0,0,0.553086 -27964,7104:354,-44,15,0,0,0.551333 -27965,7104:353,-43,15,0,0,0.550011 -27966,7104:352,-42,15,0,0,0.550164 -27967,7104:351,-41,15,0,0,0.548943 -27968,7104:350,-40,15,0,0,0.544614 -27969,7103:459,-39,15,0,0,0.541096 -27970,7103:458,-38,15,0,0,0.539412 -27971,7103:457,-37,15,0,0,0.53627 -27972,7103:456,-36,15,0,0,0.535325 -27973,7103:455,-35,15,0,0,0.533918 -27974,7103:354,-34,15,0,0,0.532333 -27975,7103:353,-33,15,0,0,0.530107 -27976,7103:352,-32,15,0,0,0.527854 -27977,7103:351,-31,15,0,0,0.52414 -27978,7103:350,-30,15,0,0,0.520243 -27979,7102:459,-29,15,0,0,0.517422 -27980,7102:458,-28,15,0,0,0.514856 -27981,7102:457,-27,15,0,0,0.514985 -27982,7102:456,-26,15,0,0,0.513342 -27983,7102:455,-25,15,0,0,0.511417 -27984,7102:354,-24,15,0,0,0.510158 -27985,7102:353,-23,15,0,0,0.511391 -27986,7102:352,-22,15,0,0,0.514574 -27987,7102:351,-21,15,0,0,0.512366 -27988,7102:350,-20,15,0,0,0.509183 -27989,7101:459,-19,15,0,0,0.505383 -27990,7101:458,-18,15,0,0,0.487482 -27991,7101:457,-17,15,0,0,0.477144 -27992,7101:456,-16,15,0,0,0.467184 -27993,7101:455,-15,15,0,0,0.429014 -27994,1103:455,35,15,0,0,0.567639 -27995,1103:456,36,15,0,0,0.597313 -27996,1105:352,52,15,0,0,0.541479 -27997,1105:353,53,15,0,0,0.547721 -27998,1105:354,54,15,0,0,0.559097 -27999,1105:455,55,15,0,0,0.564156 -28000,1105:457,57,15,0,0,0.567891 -28001,1105:458,58,15,0,0,0.569655 -28002,1112:350,120,15,0,0,0.401405 -28003,1112:351,121,15,0,0,0.500888 -28004,1112:352,122,15,0,0,0.512444 -28005,1112:353,123,15,0,0,0.548892 -28006,1112:354,124,15,0,0,0.543161 -28007,1112:455,125,15,0,0,0.537522 -28008,1112:456,126,15,0,0,0.524294 -28009,1112:457,127,15,0,0,0.53512 -28010,1112:458,128,15,0,0,0.536602 -28011,1112:459,129,15,0,0,0.539769 -28012,1113:350,130,15,0,0,0.537854 -28013,1113:351,131,15,0,0,0.529237 -28014,1113:352,132,15,0,0,0.535784 -28015,1113:353,133,15,0,0,0.536142 -28016,1113:354,134,15,0,0,0.540688 -28017,1113:455,135,15,0,0,0.527521 -28018,1113:456,136,15,0,0,0.526318 -28019,1113:457,137,15,0,0,0.545633 -28020,1113:458,138,15,0,0,0.550113 -28021,1113:459,139,15,0,0,0.554102 -28022,1114:350,140,15,0,0,0.551918 -28023,1114:351,141,15,0,0,0.561375 -28024,1114:352,142,15,0,0,0.562589 -28025,1114:353,143,15,0,0,0.560996 -28026,1114:354,144,15,0,0,0.562058 -28027,1114:455,145,15,0,0,0.570486 -28028,1114:456,146,15,0,0,0.575262 -28029,1114:457,147,15,0,0,0.582726 -28030,1114:458,148,15,0,0,0.588361 -28031,1114:459,149,15,0,0,0.58734 -28032,1115:350,150,15,0,0,0.58375 -28033,1115:351,151,15,0,0,0.578197 -28034,1115:352,152,15,0,0,0.576367 -28035,1115:353,153,15,0,0,0.578823 -28036,1115:354,154,15,0,0,0.576944 -28037,1115:455,155,15,0,0,0.576693 -28038,1115:456,156,15,0,0,0.578573 -28039,1115:457,157,15,0,0,0.579525 -28040,1115:458,158,15,0,0,0.578673 -28041,1115:459,159,15,0,0,0.573982 -28042,1116:350,160,15,0,0,0.571845 -28043,1116:351,161,15,0,0,0.571568 -28044,1116:352,162,15,0,0,0.568975 -28045,1116:353,163,15,0,0,0.567538 -28046,1116:354,164,15,0,0,0.568143 -28047,1116:455,165,15,0,0,0.567689 -28048,1116:456,166,15,0,0,0.575563 -28049,1116:457,167,15,0,0,0.575714 -28050,1116:458,168,15,0,0,0.566806 -28051,1116:459,169,15,0,0,0.567992 -28052,1117:350,170,15,0,0,0.571668 -28053,1117:351,171,15,0,0,0.570964 -28054,1117:352,172,15,0,0,0.565772 -28055,1117:353,173,15,0,0,0.563195 -28056,1117:354,174,15,0,0,0.558641 -28057,1117:455,175,15,0,0,0.553035 -28058,1117:456,176,15,0,0,0.545328 -28059,1117:457,177,15,0,0,0.551739 -28060,1117:458,178,15,0,0,0.538313 -28061,1117:459,179,15,0,0,0.535938 -28062,1118:350,180,15,0,0,0.545149 -28063,7118:360,-180,16,0,0,0.52332 -28064,7117:469,-179,16,0,0,0.509953 -28065,7117:468,-178,16,0,0,0.526523 -28066,7117:467,-177,16,0,0,0.520013 -28067,7117:466,-176,16,0,0,0.515934 -28068,7117:465,-175,16,0,0,0.506153 -28069,7117:364,-174,16,0,0,0.513471 -28070,7117:363,-173,16,0,0,0.508207 -28071,7117:362,-172,16,0,0,0.512495 -28072,7117:361,-171,16,0,0,0.509722 -28073,7117:360,-170,16,0,0,0.50004 -28074,7116:469,-169,16,0,0,0.516217 -28075,7116:468,-168,16,0,0,0.491873 -28076,7116:467,-167,16,0,0,0.501247 -28077,7116:466,-166,16,0,0,0.502531 -28078,7116:465,-165,16,0,0,0.50022 -28079,7116:364,-164,16,0,0,0.500246 -28080,7116:363,-163,16,0,0,0.501838 -28081,7116:362,-162,16,0,0,0.49629 -28082,7116:361,-161,16,0,0,0.493311 -28083,7116:360,-160,16,0,0,0.497754 -28084,7115:469,-159,16,0,0,0.497292 -28085,7115:468,-158,16,0,0,0.499835 -28086,7115:467,-157,16,0,0,0.492951 -28087,7115:466,-156,16,0,0,0.491308 -28088,7115:465,-155,16,0,0,0.493748 -28089,7115:364,-154,16,0,0,0.489999 -28090,7115:363,-153,16,0,0,0.490743 -28091,7115:362,-152,16,0,0,0.489973 -28092,7115:361,-151,16,0,0,0.488945 -28093,7115:360,-150,16,0,0,0.489485 -28094,7114:469,-149,16,0,0,0.489999 -28095,7114:468,-148,16,0,0,0.490126 -28096,7114:467,-147,16,0,0,0.486686 -28097,7114:466,-146,16,0,0,0.484197 -28098,7114:465,-145,16,0,0,0.480862 -28099,7114:364,-144,16,0,0,0.476452 -28100,7114:363,-143,16,0,0,0.472174 -28101,7114:362,-142,16,0,0,0.468668 -28102,7114:361,-141,16,0,0,0.466697 -28103,7114:360,-140,16,0,0,0.462455 -28104,7113:469,-139,16,0,0,0.456127 -28105,7113:468,-138,16,0,0,0.450908 -28106,7113:467,-137,16,0,0,0.442908 -28107,7113:466,-136,16,0,0,0.439311 -28108,7113:465,-135,16,0,0,0.433726 -28109,7113:364,-134,16,0,0,0.428183 -28110,7113:363,-133,16,0,0,0.42454 -28111,7113:362,-132,16,0,0,0.421806 -28112,7113:361,-131,16,0,0,0.418152 -28113,7113:360,-130,16,0,0,0.415604 -28114,7112:469,-129,16,0,0,0.414831 -28115,7112:468,-128,16,0,0,0.415679 -28116,7112:467,-127,16,0,0,0.411244 -28117,7112:466,-126,16,0,0,0.406402 -28118,7112:465,-125,16,0,0,0.40405 -28119,7112:364,-124,16,0,0,0.397609 -28120,7112:363,-123,16,0,0,0.391645 -28121,7112:362,-122,16,0,0,0.40101 -28122,7112:361,-121,16,0,0,0.404767 -28123,7112:360,-120,16,0,0,0.407171 -28124,7111:469,-119,16,0,0,0.397068 -28125,7111:468,-118,16,0,0,0.405312 -28126,7111:467,-117,16,0,0,0.408734 -28127,7111:466,-116,16,0,0,0.432364 -28128,7111:465,-115,16,0,0,0.479349 -28129,7111:364,-114,16,0,0,0.499886 -28130,7111:361,-111,16,0,0,0.54181 -28131,7111:360,-110,16,0,0,0.540713 -28132,7109:467,-97,16,0,0,0.514446 -28133,7109:466,-96,16,0,0,0.553492 -28134,7109:465,-95,16,0,0,0.547721 -28135,7109:364,-94,16,0,0,0.549884 -28136,7109:363,-93,16,0,0,0.550722 -28137,7109:362,-92,16,0,0,0.55207 -28138,7109:361,-91,16,0,0,0.567059 -28139,7109:360,-90,16,0,0,0.564787 -28140,7108:469,-89,16,0,0,0.547441 -28141,7108:468,-88,16,0,0,0.547518 -28142,7108:467,-87,16,0,0,0.544538 -28143,7108:466,-86,16,0,0,0.556689 -28144,7108:465,-85,16,0,0,0.536807 -28145,7108:364,-84,16,0,0,0.523859 -28146,7108:363,-83,16,0,0,0.511545 -28147,7108:360,-80,16,0,0,0.574635 -28148,7107:469,-79,16,0,0,0.533331 -28149,7107:468,-78,16,0,0,0.530952 -28150,7107:467,-77,16,0,0,0.579499 -28151,7107:466,-76,16,0,0,0.550875 -28152,7107:465,-75,16,0,0,0.550494 -28153,7107:364,-74,16,0,0,0.552527 -28154,7107:363,-73,16,0,0,0.547518 -28155,7107:362,-72,16,0,0,0.546677 -28156,7107:361,-71,16,0,0,0.54907 -28157,7107:360,-70,16,0,0,0.560338 -28158,7106:469,-69,16,0,0,0.56307 -28159,7106:468,-68,16,0,0,0.558236 -28160,7106:467,-67,16,0,0,0.553239 -28161,7106:466,-66,16,0,0,0.552374 -28162,7106:465,-65,16,0,0,0.562083 -28163,7106:364,-64,16,0,0,0.559603 -28164,7106:363,-63,16,0,0,0.556461 -28165,7106:362,-62,16,0,0,0.555979 -28166,7106:361,-61,16,0,0,0.557095 -28167,7106:360,-60,16,0,0,0.55113 -28168,7105:469,-59,16,0,0,0.547645 -28169,7105:468,-58,16,0,0,0.549477 -28170,7105:467,-57,16,0,0,0.553772 -28171,7105:466,-56,16,0,0,0.558236 -28172,7105:465,-55,16,0,0,0.548078 -28173,7105:364,-54,16,0,0,0.550011 -28174,7105:363,-53,16,0,0,0.558134 -28175,7105:362,-52,16,0,0,0.558083 -28176,7105:361,-51,16,0,0,0.553315 -28177,7105:360,-50,16,0,0,0.546092 -28178,7104:469,-49,16,0,0,0.546168 -28179,7104:468,-48,16,0,0,0.545684 -28180,7104:467,-47,16,0,0,0.543238 -28181,7104:466,-46,16,0,0,0.540688 -28182,7104:465,-45,16,0,0,0.542065 -28183,7104:364,-44,16,0,0,0.544334 -28184,7104:363,-43,16,0,0,0.54232 -28185,7104:362,-42,16,0,0,0.539998 -28186,7104:361,-41,16,0,0,0.538543 -28187,7104:360,-40,16,0,0,0.535376 -28188,7103:469,-39,16,0,0,0.533305 -28189,7103:468,-38,16,0,0,0.531975 -28190,7103:467,-37,16,0,0,0.527188 -28191,7103:466,-36,16,0,0,0.528725 -28192,7103:465,-35,16,0,0,0.522961 -28193,7103:364,-34,16,0,0,0.522193 -28194,7103:363,-33,16,0,0,0.517551 -28195,7103:362,-32,16,0,0,0.510262 -28196,7103:361,-31,16,0,0,0.517987 -28197,7103:360,-30,16,0,0,0.511648 -28198,7102:469,-29,16,0,0,0.509722 -28199,7102:468,-28,16,0,0,0.507077 -28200,7102:467,-27,16,0,0,0.506461 -28201,7102:466,-26,16,0,0,0.503867 -28202,7102:465,-25,16,0,0,0.501145 -28203,7102:364,-24,16,0,0,0.498628 -28204,7102:363,-23,16,0,0,0.499809 -28205,7102:362,-22,16,0,0,0.501632 -28206,7102:361,-21,16,0,0,0.500425 -28207,7102:360,-20,16,0,0,0.498962 -28208,7101:469,-19,16,0,0,0.495391 -28209,7101:468,-18,16,0,0,0.490229 -28210,7101:467,-17,16,0,0,0.485198 -28211,7101:466,-16,16,0,0,0.470075 -28212,7101:465,-15,16,0,0,0.46363 -28213,7101:364,-14,16,0,0,0.434938 -28214,1103:364,34,16,0,0,0.562513 -28215,1103:465,35,16,0,0,0.570335 -28216,1105:360,50,16,0,0,0.524781 -28217,1105:361,51,16,0,0,0.539335 -28218,1105:362,52,16,0,0,0.55113 -28219,1105:363,53,16,0,0,0.557602 -28220,1105:466,56,16,0,0,0.551003 -28221,1112:361,121,16,0,0,0.396798 -28222,1112:362,122,16,0,0,0.488895 -28223,1112:363,123,16,0,0,0.511853 -28224,1112:364,124,16,0,0,0.524985 -28225,1112:465,125,16,0,0,0.507308 -28226,1112:466,126,16,0,0,0.53862 -28227,1112:467,127,16,0,0,0.52514 -28228,1112:468,128,16,0,0,0.527471 -28229,1112:469,129,16,0,0,0.53021 -28230,1113:360,130,16,0,0,0.535223 -28231,1113:361,131,16,0,0,0.526395 -28232,1113:362,132,16,0,0,0.516037 -28233,1113:363,133,16,0,0,0.515472 -28234,1113:364,134,16,0,0,0.504663 -28235,1113:465,135,16,0,0,0.497087 -28236,1113:466,136,16,0,0,0.498113 -28237,1113:467,137,16,0,0,0.507925 -28238,1113:468,138,16,0,0,0.51306 -28239,1113:469,139,16,0,0,0.518038 -28240,1114:360,140,16,0,0,0.516217 -28241,1114:361,141,16,0,0,0.526036 -28242,1114:362,142,16,0,0,0.535223 -28243,1114:363,143,16,0,0,0.535478 -28244,1114:364,144,16,0,0,0.550113 -28245,1114:465,145,16,0,0,0.546372 -28246,1114:466,146,16,0,0,0.554914 -28247,1114:467,147,16,0,0,0.545404 -28248,1114:468,148,16,0,0,0.542346 -28249,1114:469,149,16,0,0,0.551028 -28250,1115:360,150,16,0,0,0.556233 -28251,1115:361,151,16,0,0,0.551078 -28252,1115:362,152,16,0,0,0.550825 -28253,1115:363,153,16,0,0,0.560135 -28254,1115:364,154,16,0,0,0.554914 -28255,1115:465,155,16,0,0,0.557374 -28256,1115:466,156,16,0,0,0.56403 -28257,1115:467,157,16,0,0,0.559704 -28258,1115:468,158,16,0,0,0.560945 -28259,1115:469,159,16,0,0,0.558869 -28260,1116:360,160,16,0,0,0.556309 -28261,1116:361,161,16,0,0,0.558438 -28262,1116:362,162,16,0,0,0.557855 -28263,1116:363,163,16,0,0,0.559578 -28264,1116:364,164,16,0,0,0.556689 -28265,1116:465,165,16,0,0,0.556866 -28266,1116:466,166,16,0,0,0.554305 -28267,1116:467,167,16,0,0,0.551942 -28268,1116:468,168,16,0,0,0.54996 -28269,1116:469,169,16,0,0,0.54818 -28270,1117:360,170,16,0,0,0.545633 -28271,1117:361,171,16,0,0,0.550799 -28272,1117:362,172,16,0,0,0.549451 -28273,1117:363,173,16,0,0,0.542626 -28274,1117:364,174,16,0,0,0.535734 -28275,1117:465,175,16,0,0,0.540406 -28276,1117:466,176,16,0,0,0.542524 -28277,1117:467,177,16,0,0,0.533484 -28278,1117:468,178,16,0,0,0.517756 -28279,1117:469,179,16,0,0,0.522372 -28280,1118:360,180,16,0,0,0.52332 -28281,7118:370,-180,17,0,0,0.489022 -28282,7117:479,-179,17,0,0,0.489022 -28283,7117:478,-178,17,0,0,0.486609 -28284,7117:477,-177,17,0,0,0.484736 -28285,7117:476,-176,17,0,0,0.478862 -28286,7117:475,-175,17,0,0,0.482427 -28287,7117:374,-174,17,0,0,0.485634 -28288,7117:373,-173,17,0,0,0.479733 -28289,7117:372,-172,17,0,0,0.488561 -28290,7117:371,-171,17,0,0,0.47635 -28291,7117:370,-170,17,0,0,0.483658 -28292,7116:479,-169,17,0,0,0.477888 -28293,7116:478,-168,17,0,0,0.470869 -28294,7116:477,-167,17,0,0,0.4804 -28295,7116:476,-166,17,0,0,0.473608 -28296,7116:475,-165,17,0,0,0.482581 -28297,7116:374,-164,17,0,0,0.474018 -28298,7116:373,-163,17,0,0,0.469051 -28299,7116:372,-162,17,0,0,0.481888 -28300,7116:371,-161,17,0,0,0.468872 -28301,7116:370,-160,17,0,0,0.479426 -28302,7115:479,-159,17,0,0,0.479785 -28303,7115:478,-158,17,0,0,0.475094 -28304,7115:477,-157,17,0,0,0.475991 -28305,7115:476,-156,17,0,0,0.474197 -28306,7115:475,-155,17,0,0,0.473199 -28307,7115:374,-154,17,0,0,0.470791 -28308,7115:373,-153,17,0,0,0.473557 -28309,7115:372,-152,17,0,0,0.479913 -28310,7115:371,-151,17,0,0,0.476145 -28311,7115:370,-150,17,0,0,0.476811 -28312,7114:479,-149,17,0,0,0.476888 -28313,7114:478,-148,17,0,0,0.476606 -28314,7114:477,-147,17,0,0,0.47717 -28315,7114:476,-146,17,0,0,0.476504 -28316,7114:475,-145,17,0,0,0.473762 -28317,7114:374,-144,17,0,0,0.47243 -28318,7114:373,-143,17,0,0,0.470101 -28319,7114:372,-142,17,0,0,0.466825 -28320,7114:371,-141,17,0,0,0.460745 -28321,7114:370,-140,17,0,0,0.456586 -28322,7113:479,-139,17,0,0,0.451518 -28323,7113:478,-138,17,0,0,0.446663 -28324,7113:477,-137,17,0,0,0.442477 -28325,7113:476,-136,17,0,0,0.437288 -28326,7113:475,-135,17,0,0,0.432414 -28327,7113:374,-134,17,0,0,0.426222 -28328,7113:373,-133,17,0,0,0.418302 -28329,7113:372,-132,17,0,0,0.41229 -28330,7113:371,-131,17,0,0,0.409355 -28331,7113:370,-130,17,0,0,0.406278 -28332,7112:479,-129,17,0,0,0.401454 -28333,7112:478,-128,17,0,0,0.399703 -28334,7112:477,-127,17,0,0,0.393776 -28335,7112:476,-126,17,0,0,0.390568 -28336,7112:475,-125,17,0,0,0.39358 -28337,7112:374,-124,17,0,0,0.386492 -28338,7112:373,-123,17,0,0,0.379379 -28339,7112:372,-122,17,0,0,0.37595 -28340,7112:371,-121,17,0,0,0.374529 -28341,7112:370,-120,17,0,0,0.37636 -28342,7111:479,-119,17,0,0,0.381922 -28343,7111:478,-118,17,0,0,0.379935 -28344,7111:477,-117,17,0,0,0.384861 -28345,7111:476,-116,17,0,0,0.450908 -28346,7111:475,-115,17,0,0,0.453834 -28347,7111:372,-112,17,0,0,0.521731 -28348,7109:476,-96,17,0,0,0.463962 -28349,7109:475,-95,17,0,0,0.488252 -28350,7109:374,-94,17,0,0,0.498396 -28351,7109:373,-93,17,0,0,0.508875 -28352,7109:372,-92,17,0,0,0.51057 -28353,7109:371,-91,17,0,0,0.513624 -28354,7109:370,-90,17,0,0,0.521654 -28355,7108:479,-89,17,0,0,0.526907 -28356,7108:478,-88,17,0,0,0.525063 -28357,7108:477,-87,17,0,0,0.523397 -28358,7108:476,-86,17,0,0,0.52724 -28359,7108:475,-85,17,0,0,0.498447 -28360,7108:374,-84,17,0,0,0.479913 -28361,7108:373,-83,17,0,0,0.443593 -28362,7108:370,-80,17,0,0,0.559755 -28363,7107:479,-79,17,0,0,0.58734 -28364,7107:478,-78,17,0,0,0.577069 -28365,7107:477,-77,17,0,0,0.574861 -28366,7107:476,-76,17,0,0,0.547543 -28367,7107:475,-75,17,0,0,0.544436 -28368,7107:374,-74,17,0,0,0.543085 -28369,7107:373,-73,17,0,0,0.543697 -28370,7107:372,-72,17,0,0,0.532384 -28371,7107:371,-71,17,0,0,0.540509 -28372,7107:370,-70,17,0,0,0.539973 -28373,7106:479,-69,17,0,0,0.53512 -28374,7106:478,-68,17,0,0,0.541479 -28375,7106:477,-67,17,0,0,0.539258 -28376,7106:476,-66,17,0,0,0.532998 -28377,7106:475,-65,17,0,0,0.533279 -28378,7106:374,-64,17,0,0,0.53558 -28379,7106:373,-63,17,0,0,0.537497 -28380,7106:372,-62,17,0,0,0.540382 -28381,7106:371,-61,17,0,0,0.543672 -28382,7106:370,-60,17,0,0,0.539386 -28383,7105:479,-59,17,0,0,0.534609 -28384,7105:478,-58,17,0,0,0.526318 -28385,7105:477,-57,17,0,0,0.517037 -28386,7105:476,-56,17,0,0,0.521398 -28387,7105:475,-55,17,0,0,0.536551 -28388,7105:374,-54,17,0,0,0.533791 -28389,7105:373,-53,17,0,0,0.525754 -28390,7105:372,-52,17,0,0,0.52724 -28391,7105:371,-51,17,0,0,0.533586 -29690,1212:131,121,23,0,0,0.21556 -28392,7105:370,-50,17,0,0,0.532231 -28393,7104:479,-49,17,0,0,0.523859 -28394,7104:478,-48,17,0,0,0.518731 -28395,7104:477,-47,17,0,0,0.523012 -28396,7104:476,-46,17,0,0,0.526267 -28397,7104:475,-45,17,0,0,0.524243 -28398,7104:374,-44,17,0,0,0.526702 -28399,7104:373,-43,17,0,0,0.527932 -28400,7104:372,-42,17,0,0,0.525088 -28401,7104:371,-41,17,0,0,0.523961 -28402,7104:370,-40,17,0,0,0.517089 -28403,7103:479,-39,17,0,0,0.516139 -28404,7103:478,-38,17,0,0,0.518269 -28405,7103:477,-37,17,0,0,0.514651 -28406,7103:476,-36,17,0,0,0.506975 -28407,7103:475,-35,17,0,0,0.503585 -28408,7103:374,-34,17,0,0,0.501555 -28409,7103:373,-33,17,0,0,0.497703 -28410,7103:372,-32,17,0,0,0.494004 -28411,7103:371,-31,17,0,0,0.493414 -28412,7103:370,-30,17,0,0,0.492438 -28413,7102:479,-29,17,0,0,0.496367 -28414,7102:478,-28,17,0,0,0.494261 -28415,7102:477,-27,17,0,0,0.490743 -28416,7102:476,-26,17,0,0,0.489818 -28417,7102:475,-25,17,0,0,0.490383 -28418,7102:374,-24,17,0,0,0.486686 -28419,7102:373,-23,17,0,0,0.489767 -28420,7102:372,-22,17,0,0,0.490075 -28421,7102:371,-21,17,0,0,0.485198 -28422,7102:370,-20,17,0,0,0.486404 -28423,7101:479,-19,17,0,0,0.487148 -28424,7101:478,-18,17,0,0,0.483402 -28425,7101:476,-16,17,0,0,0.475145 -28426,7101:475,-15,17,0,0,0.470203 -28427,7101:374,-14,17,0,0,0.450959 -28428,7101:373,-13,17,0,0,0.427202 -28429,7101:372,-12,17,0,0,0.411742 -28430,1103:373,33,17,0,0,0.515755 -28431,1104:479,49,17,0,0,0.522833 -28432,1105:370,50,17,0,0,0.539616 -28433,1105:371,51,17,0,0,0.529596 -28434,1112:372,122,17,0,0,0.356164 -28435,1112:373,123,17,0,0,0.445191 -28436,1112:374,124,17,0,0,0.464346 -28437,1112:475,125,17,0,0,0.470126 -28438,1112:476,126,17,0,0,0.506949 -28439,1112:477,127,17,0,0,0.5342 -28440,1112:478,128,17,0,0,0.523833 -28441,1112:479,129,17,0,0,0.521039 -28442,1113:370,130,17,0,0,0.519808 -28443,1113:371,131,17,0,0,0.522833 -28444,1113:372,132,17,0,0,0.522038 -28445,1113:373,133,17,0,0,0.512597 -28446,1113:374,134,17,0,0,0.502403 -28447,1113:475,135,17,0,0,0.49046 -28448,1113:476,136,17,0,0,0.483787 -28449,1113:477,137,17,0,0,0.480785 -28450,1113:478,138,17,0,0,0.48548 -28451,1113:479,139,17,0,0,0.50248 -28452,1114:370,140,17,0,0,0.508952 -28453,1114:371,141,17,0,0,0.516345 -28454,1114:372,142,17,0,0,0.521398 -28455,1114:373,143,17,0,0,0.514933 -28456,1114:374,144,17,0,0,0.512854 -28457,1114:475,145,17,0,0,0.521808 -28458,1114:476,146,17,0,0,0.52414 -28459,1114:477,147,17,0,0,0.511622 -28460,1114:478,148,17,0,0,0.515986 -28461,1114:479,149,17,0,0,0.52765 -28462,1115:370,150,17,0,0,0.525523 -28463,1115:371,151,17,0,0,0.532001 -28464,1115:372,152,17,0,0,0.53351 -28465,1115:373,153,17,0,0,0.531336 -28466,1115:374,154,17,0,0,0.532154 -28467,1115:475,155,17,0,0,0.536168 -28468,1115:476,156,17,0,0,0.533638 -28469,1115:477,157,17,0,0,0.535555 -28470,1115:478,158,17,0,0,0.535862 -28471,1115:479,159,17,0,0,0.536704 -28472,1116:370,160,17,0,0,0.537829 -28473,1116:371,161,17,0,0,0.538569 -28474,1116:372,162,17,0,0,0.53982 -28475,1116:373,163,17,0,0,0.539896 -28476,1116:374,164,17,0,0,0.540738 -28477,1116:475,165,17,0,0,0.536807 -28478,1116:476,166,17,0,0,0.534046 -28479,1116:477,167,17,0,0,0.534813 -28480,1116:478,168,17,0,0,0.533459 -28481,1116:479,169,17,0,0,0.521679 -28482,1117:370,170,17,0,0,0.512597 -28483,1117:371,171,17,0,0,0.520141 -28484,1117:372,172,17,0,0,0.525114 -28485,1117:373,173,17,0,0,0.520526 -28486,1117:374,174,17,0,0,0.508824 -28487,1117:475,175,17,0,0,0.501016 -28488,1117:476,176,17,0,0,0.510596 -28489,1117:477,177,17,0,0,0.506051 -28490,1117:478,178,17,0,0,0.504535 -28491,1117:479,179,17,0,0,0.501838 -28492,1118:370,180,17,0,0,0.489022 -28493,7118:380,-180,18,0,0,0.463707 -28494,7117:489,-179,18,0,0,0.461689 -28495,7117:488,-178,18,0,0,0.456536 -28496,7117:487,-177,18,0,0,0.45702 -28497,7117:486,-176,18,0,0,0.449382 -28498,7117:485,-175,18,0,0,0.44867 -28499,7117:384,-174,18,0,0,0.452179 -28500,7117:383,-173,18,0,0,0.444404 -28501,7117:382,-172,18,0,0,0.443136 -28502,7117:381,-171,18,0,0,0.447171 -28503,7117:380,-170,18,0,0,0.448721 -28504,7116:489,-169,18,0,0,0.445952 -28505,7116:488,-168,18,0,0,0.445267 -28506,7116:487,-167,18,0,0,0.443567 -28507,7116:486,-166,18,0,0,0.440957 -28508,7116:485,-165,18,0,0,0.441084 -28509,7116:384,-164,18,0,0,0.444379 -28510,7116:383,-163,18,0,0,0.443795 -28511,7116:382,-162,18,0,0,0.448086 -28512,7116:381,-161,18,0,0,0.452358 -28513,7116:380,-160,18,0,0,0.453784 -28514,7115:489,-159,18,0,0,0.44984 -28515,7115:488,-158,18,0,0,0.44585 -28516,7115:487,-157,18,0,0,0.446841 -28517,7115:486,-156,18,0,0,0.451671 -28518,7115:485,-155,18,0,0,0.451035 -28519,7115:384,-154,18,0,0,0.452816 -28520,7115:383,-153,18,0,0,0.452562 -28521,7115:382,-152,18,0,0,0.451009 -28522,7115:381,-151,18,0,0,0.446993 -28523,7115:380,-150,18,0,0,0.452587 -28524,7114:489,-149,18,0,0,0.45952 -28525,7114:488,-148,18,0,0,0.455975 -28526,7114:487,-147,18,0,0,0.452179 -28527,7114:486,-146,18,0,0,0.456179 -28528,7114:485,-145,18,0,0,0.449407 -28529,7114:384,-144,18,0,0,0.45045 -28530,7114:383,-143,18,0,0,0.447272 -28531,7114:382,-142,18,0,0,0.445369 -28532,7114:381,-141,18,0,0,0.441008 -28533,7114:380,-140,18,0,0,0.438173 -28534,7113:489,-139,18,0,0,0.43239 -28535,7113:488,-138,18,0,0,0.428712 -28536,7113:487,-137,18,0,0,0.42665 -28537,7113:486,-136,18,0,0,0.422984 -28538,7113:485,-135,18,0,0,0.419102 -28539,7113:384,-134,18,0,0,0.412912 -28540,7113:383,-133,18,0,0,0.410896 -28541,7113:382,-132,18,0,0,0.407022 -28542,7113:381,-131,18,0,0,0.402541 -28543,7113:380,-130,18,0,0,0.398841 -28544,7112:489,-129,18,0,0,0.392772 -28545,7112:488,-128,18,0,0,0.38384 -28546,7112:487,-127,18,0,0,0.377566 -28547,7112:486,-126,18,0,0,0.377711 -28548,7112:485,-125,18,0,0,0.381219 -28549,7112:384,-124,18,0,0,0.377277 -28550,7112:383,-123,18,0,0,0.373158 -28551,7112:382,-122,18,0,0,0.372413 -28552,7112:381,-121,18,0,0,0.370901 -28553,7112:380,-120,18,0,0,0.366215 -28554,7111:489,-119,18,0,0,0.372053 -28555,7111:488,-118,18,0,0,0.367719 -28556,7111:487,-117,18,0,0,0.374866 -28557,7111:486,-116,18,0,0,0.424239 -28558,7111:383,-113,18,0,0,0.505793 -28559,7109:384,-94,18,0,0,0.382674 -28560,7109:383,-93,18,0,0,0.385299 -28561,7109:382,-92,18,0,0,0.39412 -28562,7108:489,-89,18,0,0,0.428561 -28563,7108:488,-88,18,0,0,0.486327 -28564,7108:487,-87,18,0,0,0.51021 -28565,7108:486,-86,18,0,0,0.478452 -28566,7108:485,-85,18,0,0,0.42567 -28567,7108:384,-84,18,0,0,0.429215 -28568,7108:381,-81,18,0,0,0.498859 -28569,7108:380,-80,18,0,0,0.566024 -28570,7107:489,-79,18,0,0,0.557932 -28571,7107:488,-78,18,0,0,0.550951 -28572,7107:487,-77,18,0,0,0.551383 -28573,7107:486,-76,18,0,0,0.55273 -28574,7107:485,-75,18,0,0,0.539437 -28575,7107:384,-74,18,0,0,0.52957 -28576,7107:383,-73,18,0,0,0.52875 -28577,7107:382,-72,18,0,0,0.526753 -28578,7107:381,-71,18,0,0,0.526779 -28579,7107:380,-70,18,0,0,0.526241 -28580,7106:489,-69,18,0,0,0.521757 -28581,7106:488,-68,18,0,0,0.518602 -28582,7106:487,-67,18,0,0,0.517551 -28583,7106:486,-66,18,0,0,0.523986 -28584,7106:485,-65,18,0,0,0.521731 -28585,7106:384,-64,18,0,0,0.518987 -28586,7106:383,-63,18,0,0,0.520526 -28587,7106:382,-62,18,0,0,0.517525 -28588,7106:381,-61,18,0,0,0.512957 -28589,7106:380,-60,18,0,0,0.512521 -28590,7105:489,-59,18,0,0,0.514471 -28591,7105:488,-58,18,0,0,0.507668 -28592,7105:487,-57,18,0,0,0.503302 -28593,7105:486,-56,18,0,0,0.506512 -28594,7105:485,-55,18,0,0,0.505819 -28595,7105:384,-54,18,0,0,0.500246 -28596,7105:383,-53,18,0,0,0.504227 -28597,7105:382,-52,18,0,0,0.507848 -28598,7105:381,-51,18,0,0,0.507694 -28599,7105:380,-50,18,0,0,0.505023 -28600,7104:489,-49,18,0,0,0.501915 -28601,7104:488,-48,18,0,0,0.504637 -28602,7104:487,-47,18,0,0,0.50623 -28603,7104:486,-46,18,0,0,0.505152 -28604,7104:485,-45,18,0,0,0.508978 -28605,7104:384,-44,18,0,0,0.513573 -28606,7104:383,-43,18,0,0,0.511674 -28607,7104:382,-42,18,0,0,0.507489 -31960,7313:466,-136,36,0,0,0.20022 -28608,7104:381,-41,18,0,0,0.506359 -28609,7104:380,-40,18,0,0,0.497009 -28610,7103:489,-39,18,0,0,0.502326 -28611,7103:488,-38,18,0,0,0.500297 -28612,7103:487,-37,18,0,0,0.4976 -28613,7103:486,-36,18,0,0,0.496367 -28614,7103:485,-35,18,0,0,0.490666 -28615,7103:384,-34,18,0,0,0.48679 -28616,7103:383,-33,18,0,0,0.486456 -28617,7103:382,-32,18,0,0,0.48235 -28618,7103:381,-31,18,0,0,0.480503 -28619,7103:380,-30,18,0,0,0.480836 -28620,7102:489,-29,18,0,0,0.480169 -28621,7102:488,-28,18,0,0,0.478708 -28622,7102:487,-27,18,0,0,0.480042 -28623,7102:486,-26,18,0,0,0.48117 -28624,7102:485,-25,18,0,0,0.475914 -28625,7102:384,-24,18,0,0,0.476324 -28626,7102:383,-23,18,0,0,0.478785 -28627,7102:382,-22,18,0,0,0.474479 -28628,7102:381,-21,18,0,0,0.473967 -28629,7102:380,-20,18,0,0,0.474582 -28630,7101:489,-19,18,0,0,0.471637 -28631,7101:488,-18,18,0,0,0.47266 -28632,7101:487,-17,18,0,0,0.474377 -28633,7101:486,-16,18,0,0,0.472993 -28634,7101:485,-15,18,0,0,0.46854 -28635,7101:384,-14,18,0,0,0.463707 -28636,7101:383,-13,18,0,0,0.461434 -28637,7101:382,-12,18,0,0,0.453555 -28638,7101:381,-11,18,0,0,0.444151 -28639,1104:488,48,18,0,0,0.469921 -28640,1104:489,49,18,0,0,0.510518 -28641,1105:380,50,18,0,0,0.523781 -28642,1112:383,123,18,0,0,0.340494 -28643,1112:384,124,18,0,0,0.433827 -28644,1112:485,125,18,0,0,0.423009 -28645,1112:486,126,18,0,0,0.442731 -28646,1112:487,127,18,0,0,0.496753 -28647,1112:488,128,18,0,0,0.532077 -28648,1112:489,129,18,0,0,0.52519 -28649,1113:380,130,18,0,0,0.5225 -28650,1113:381,131,18,0,0,0.525063 -28651,1113:382,132,18,0,0,0.522731 -28652,1113:383,133,18,0,0,0.502968 -28653,1113:384,134,18,0,0,0.467286 -28654,1113:485,135,18,0,0,0.490101 -28655,1113:486,136,18,0,0,0.489151 -28656,1113:487,137,18,0,0,0.464601 -28657,1113:488,138,18,0,0,0.464295 -28658,1113:489,139,18,0,0,0.480169 -28659,1114:380,140,18,0,0,0.487046 -28660,1114:381,141,18,0,0,0.505177 -28661,1114:382,142,18,0,0,0.508028 -28662,1114:383,143,18,0,0,0.499963 -28663,1114:384,144,18,0,0,0.500605 -28664,1114:485,145,18,0,0,0.501555 -28665,1114:486,146,18,0,0,0.514549 -28666,1114:487,147,18,0,0,0.50659 -28667,1114:488,148,18,0,0,0.498962 -28668,1114:489,149,18,0,0,0.498165 -28669,1115:380,150,18,0,0,0.500271 -28670,1115:381,151,18,0,0,0.503508 -28671,1115:382,152,18,0,0,0.504098 -28672,1115:383,153,18,0,0,0.508053 -28673,1115:384,154,18,0,0,0.510544 -28674,1115:485,155,18,0,0,0.505665 -28675,1115:486,156,18,0,0,0.501863 -28676,1115:487,157,18,0,0,0.502378 -28677,1115:488,158,18,0,0,0.504355 -28678,1115:489,159,18,0,0,0.502454 -28679,1116:380,160,18,0,0,0.502095 -28680,1116:381,161,18,0,0,0.502814 -28681,1116:382,162,18,0,0,0.501941 -28682,1116:383,163,18,0,0,0.500322 -28683,1116:384,164,18,0,0,0.498987 -28684,1116:485,165,18,0,0,0.505665 -28685,1116:486,166,18,0,0,0.508207 -28686,1116:487,167,18,0,0,0.504869 -28687,1116:488,168,18,0,0,0.498653 -28688,1116:489,169,18,0,0,0.489382 -28689,1117:380,170,18,0,0,0.480375 -28690,1117:381,171,18,0,0,0.480759 -28691,1117:382,172,18,0,0,0.480785 -28692,1117:383,173,18,0,0,0.481272 -28693,1117:384,174,18,0,0,0.474658 -28694,1117:485,175,18,0,0,0.471099 -28695,1117:486,176,18,0,0,0.487226 -28696,1117:487,177,18,0,0,0.479272 -28697,1117:488,178,18,0,0,0.47179 -28698,1117:489,179,18,0,0,0.465189 -28699,1118:380,180,18,0,0,0.463707 -28700,7118:390,-180,19,0,0,0.439235 -28701,7117:499,-179,19,0,0,0.42768 -28702,7117:498,-178,19,0,0,0.435847 -28703,7117:497,-177,19,0,0,0.426499 -28704,7117:496,-176,19,0,0,0.42758 -28705,7117:495,-175,19,0,0,0.420879 -28706,7117:394,-174,19,0,0,0.418577 -28707,7117:393,-173,19,0,0,0.418802 -28708,7117:392,-172,19,0,0,0.41533 -28709,7117:391,-171,19,0,0,0.418802 -28710,7117:390,-170,19,0,0,0.417277 -28711,7116:499,-169,19,0,0,0.418277 -28712,7116:498,-168,19,0,0,0.41346 -28713,7116:497,-167,19,0,0,0.414482 -28714,7116:496,-166,19,0,0,0.414382 -28715,7116:495,-165,19,0,0,0.418802 -28716,7116:394,-164,19,0,0,0.424264 -28717,7116:393,-163,19,0,0,0.415879 -28718,7116:392,-162,19,0,0,0.411742 -28719,7116:391,-161,19,0,0,0.413759 -28720,7116:390,-160,19,0,0,0.419828 -28721,7115:499,-159,19,0,0,0.425519 -28722,7115:498,-158,19,0,0,0.423862 -28723,7115:497,-157,19,0,0,0.426926 -28724,7115:496,-156,19,0,0,0.429744 -28725,7115:495,-155,19,0,0,0.42577 -28726,7115:394,-154,19,0,0,0.418777 -28727,7115:393,-153,19,0,0,0.421305 -28728,7115:392,-152,19,0,0,0.430222 -28729,7115:391,-151,19,0,0,0.43307 -28730,7115:390,-150,19,0,0,0.429895 -28731,7114:499,-149,19,0,0,0.430776 -28732,7114:498,-148,19,0,0,0.432188 -28733,7114:497,-147,19,0,0,0.434307 -28734,7114:496,-146,19,0,0,0.435695 -28735,7114:495,-145,19,0,0,0.436504 -28736,7114:394,-144,19,0,0,0.4384 -28737,7114:393,-143,19,0,0,0.437313 -28738,7114:392,-142,19,0,0,0.434837 -28739,7114:391,-141,19,0,0,0.424916 -28740,7114:390,-140,19,0,0,0.42341 -28741,7113:499,-139,19,0,0,0.424163 -28742,7113:498,-138,19,0,0,0.423862 -28743,7113:497,-137,19,0,0,0.421631 -28744,7113:496,-136,19,0,0,0.416328 -28745,7113:495,-135,19,0,0,0.407766 -28746,7113:394,-134,19,0,0,0.399457 -28747,7113:393,-133,19,0,0,0.394316 -28748,7113:392,-132,19,0,0,0.393458 -28749,7113:391,-131,19,0,0,0.391816 -28750,7113:390,-130,19,0,0,0.390691 -28751,7112:499,-129,19,0,0,0.383646 -28752,7112:498,-128,19,0,0,0.371957 -28753,7112:497,-127,19,0,0,0.369608 -28754,7112:496,-126,19,0,0,0.364809 -28755,7112:495,-125,19,0,0,0.357343 -28756,7112:394,-124,19,0,0,0.349875 -28757,7112:393,-123,19,0,0,0.345797 -28758,7112:392,-122,19,0,0,0.339249 -28759,7112:391,-121,19,0,0,0.344264 -28760,7112:390,-120,19,0,0,0.349454 -28761,7111:499,-119,19,0,0,0.350764 -28762,7111:498,-118,19,0,0,0.361933 -28763,7111:497,-117,19,0,0,0.370207 -28764,7111:394,-114,19,0,0,0.49647 -28765,7108:391,-81,19,0,0,0.455363 -28766,7108:390,-80,19,0,0,0.517756 -28767,7107:499,-79,19,0,0,0.576567 -28768,7107:498,-78,19,0,0,0.558869 -28769,7107:497,-77,19,0,0,0.549732 -28770,7107:496,-76,19,0,0,0.555599 -28771,7107:495,-75,19,0,0,0.536602 -28772,7107:394,-74,19,0,0,0.516781 -28773,7107:393,-73,19,0,0,0.510749 -28774,7107:392,-72,19,0,0,0.518269 -28775,7107:391,-71,19,0,0,0.521731 -28776,7107:390,-70,19,0,0,0.518038 -28777,7106:499,-69,19,0,0,0.512521 -28778,7106:498,-68,19,0,0,0.508644 -28779,7106:497,-67,19,0,0,0.505717 -28780,7106:496,-66,19,0,0,0.503919 -28781,7106:495,-65,19,0,0,0.504124 -28782,7106:394,-64,19,0,0,0.50546 -28783,7106:393,-63,19,0,0,0.499089 -28784,7106:392,-62,19,0,0,0.496572 -28785,7106:391,-61,19,0,0,0.498268 -28786,7106:390,-60,19,0,0,0.491821 -28787,7105:499,-59,19,0,0,0.488432 -28788,7105:498,-58,19,0,0,0.485763 -28789,7105:497,-57,19,0,0,0.486225 -28790,7105:496,-56,19,0,0,0.484788 -28791,7105:495,-55,19,0,0,0.486635 -28792,7105:394,-54,19,0,0,0.486584 -28793,7105:393,-53,19,0,0,0.482504 -28794,7105:392,-52,19,0,0,0.478118 -28795,7105:391,-51,19,0,0,0.471969 -28796,7105:390,-50,19,0,0,0.473352 -28797,7104:499,-49,19,0,0,0.475376 -28798,7104:498,-48,19,0,0,0.481426 -28799,7104:497,-47,19,0,0,0.485019 -28800,7104:496,-46,19,0,0,0.479836 -28801,7104:495,-45,19,0,0,0.476171 -28802,7104:394,-44,19,0,0,0.486147 -28803,7104:393,-43,19,0,0,0.485275 -28804,7104:392,-42,19,0,0,0.48566 -28805,7104:391,-41,19,0,0,0.48625 -28806,7104:390,-40,19,0,0,0.486378 -28807,7103:499,-39,19,0,0,0.483042 -28808,7103:498,-38,19,0,0,0.475094 -28809,7103:497,-37,19,0,0,0.475581 -28810,7103:496,-36,19,0,0,0.476631 -28811,7103:495,-35,19,0,0,0.467721 -28812,7103:394,-34,19,0,0,0.468437 -28813,7103:393,-33,19,0,0,0.468488 -28814,7103:392,-32,19,0,0,0.471559 -28815,7103:391,-31,19,0,0,0.462328 -28816,7103:390,-30,19,0,0,0.460515 -28817,7102:499,-29,19,0,0,0.468872 -28818,7102:498,-28,19,0,0,0.462992 -28819,7102:497,-27,19,0,0,0.4598 -28820,7102:496,-26,19,0,0,0.458193 -28821,7102:495,-25,19,0,0,0.462915 -28822,7102:394,-24,19,0,0,0.465266 -28823,7102:393,-23,19,0,0,0.461204 -28824,7102:392,-22,19,0,0,0.457658 -28825,7102:391,-21,19,0,0,0.458116 -28826,7102:390,-20,19,0,0,0.460413 -28827,7101:499,-19,19,0,0,0.462123 -28828,7101:498,-18,19,0,0,0.460413 -28829,7101:497,-17,19,0,0,0.458448 -28830,7101:496,-16,19,0,0,0.454344 -28831,7101:495,-15,19,0,0,0.453427 -28832,7101:394,-14,19,0,0,0.450322 -28833,7101:393,-13,19,0,0,0.450069 -28834,7101:392,-12,19,0,0,0.443086 -28835,7101:391,-11,19,0,0,0.434408 -28836,1101:498,18,19,0,0,0.443922 -28837,1101:499,19,19,0,0,0.453809 -28838,1102:499,29,19,0,0,0.42123 -28839,1112:393,123,19,0,0,0.298907 -28840,1112:394,124,19,0,0,0.414731 -28841,1112:495,125,19,0,0,0.40846 -28842,1112:496,126,19,0,0,0.410647 -28843,1112:497,127,19,0,0,0.443086 -28844,1112:498,128,19,0,0,0.50623 -28845,1112:499,129,19,0,0,0.514805 -28846,1113:390,130,19,0,0,0.500477 -28847,1113:391,131,19,0,0,0.504894 -28848,1113:392,132,19,0,0,0.5205 -28849,1113:393,133,19,0,0,0.508028 -28850,1113:394,134,19,0,0,0.46432 -28851,1113:495,135,19,0,0,0.456255 -28852,1113:496,136,19,0,0,0.469384 -28853,1113:497,137,19,0,0,0.457938 -28854,1113:498,138,19,0,0,0.457351 -28855,1113:499,139,19,0,0,0.464781 -28856,1114:390,140,19,0,0,0.479708 -28857,1114:391,141,19,0,0,0.480785 -28858,1114:392,142,19,0,0,0.480811 -28859,1114:393,143,19,0,0,0.485711 -28860,1114:394,144,19,0,0,0.495288 -28861,1114:495,145,19,0,0,0.493722 -28862,1114:496,146,19,0,0,0.491154 -28863,1114:497,147,19,0,0,0.489177 -28864,1114:498,148,19,0,0,0.489279 -28865,1114:499,149,19,0,0,0.492694 -28866,1115:390,150,19,0,0,0.49236 -28867,1115:391,151,19,0,0,0.491128 -28868,1115:392,152,19,0,0,0.491462 -28869,1115:393,153,19,0,0,0.48951 -28870,1115:394,154,19,0,0,0.484915 -28871,1115:495,155,19,0,0,0.484659 -28872,1115:496,156,19,0,0,0.486378 -28873,1115:497,157,19,0,0,0.487072 -28874,1115:498,158,19,0,0,0.483273 -28875,1115:499,159,19,0,0,0.478426 -28876,1116:390,160,19,0,0,0.473301 -28877,1116:391,161,19,0,0,0.467388 -28878,1116:392,162,19,0,0,0.470996 -28879,1116:393,163,19,0,0,0.475017 -28880,1116:394,164,19,0,0,0.474325 -28881,1116:495,165,19,0,0,0.468437 -28882,1116:496,166,19,0,0,0.46749 -28883,1116:497,167,19,0,0,0.465036 -28884,1116:498,168,19,0,0,0.460642 -28885,1116:499,169,19,0,0,0.460719 -28886,1117:390,170,19,0,0,0.453249 -28887,1117:391,171,19,0,0,0.454472 -28888,1117:392,172,19,0,0,0.456408 -28889,1117:393,173,19,0,0,0.450577 -28890,1117:394,174,19,0,0,0.449763 -28891,1117:495,175,19,0,0,0.442072 -28892,1117:496,176,19,0,0,0.44613 -28893,1117:497,177,19,0,0,0.434736 -28894,1117:498,178,19,0,0,0.439741 -28895,1117:499,179,19,0,0,0.440223 -28896,1118:390,180,19,0,0,0.439235 -28897,7218:100,-180,20,0,0,0.407369 -28898,7217:209,-179,20,0,0,0.40259 -28899,7217:208,-178,20,0,0,0.391841 -28900,7217:207,-177,20,0,0,0.394709 -28901,7217:206,-176,20,0,0,0.389493 -28902,7217:205,-175,20,0,0,0.390471 -28903,7217:104,-174,20,0,0,0.392233 -28904,7217:103,-173,20,0,0,0.395053 -28905,7217:102,-172,20,0,0,0.396208 -28906,7217:101,-171,20,0,0,0.395544 -28907,7217:100,-170,20,0,0,0.396085 -28908,7216:209,-169,20,0,0,0.389981 -28909,7216:208,-168,20,0,0,0.379621 -28910,7216:207,-167,20,0,0,0.382747 -28911,7216:206,-166,20,0,0,0.38964 -28912,7216:205,-165,20,0,0,0.393384 -28913,7216:104,-164,20,0,0,0.395912 -28914,7216:103,-163,20,0,0,0.39788 -28915,7216:102,-162,20,0,0,0.395691 -28916,7216:101,-161,20,0,0,0.374962 -28917,7216:100,-160,20,0,0,0.40027 -28918,7215:209,-159,20,0,0,0.389127 -28919,7215:208,-158,20,0,0,0.403579 -28920,7215:207,-157,20,0,0,0.406402 -28921,7215:206,-156,20,0,0,0.401356 -28922,7215:205,-155,20,0,0,0.399086 -28923,7215:104,-154,20,0,0,0.40665 -28924,7215:103,-153,20,0,0,0.400368 -28925,7215:102,-152,20,0,0,0.41107 -28926,7215:101,-151,20,0,0,0.415604 -28927,7215:100,-150,20,0,0,0.416203 -28928,7214:209,-149,20,0,0,0.417802 -28929,7214:208,-148,20,0,0,0.415854 -28930,7214:207,-147,20,0,0,0.422733 -28931,7214:206,-146,20,0,0,0.427454 -28932,7214:205,-145,20,0,0,0.422533 -28934,7214:103,-143,20,0,0,0.415429 -28935,7214:102,-142,20,0,0,0.412165 -28936,7214:101,-141,20,0,0,0.411518 -28937,7214:100,-140,20,0,0,0.408635 -28938,7213:209,-139,20,0,0,0.408709 -28939,7213:208,-138,20,0,0,0.409355 -28940,7213:207,-137,20,0,0,0.405287 -28941,7213:206,-136,20,0,0,0.401504 -28942,7213:205,-135,20,0,0,0.392453 -28943,7213:104,-134,20,0,0,0.390397 -28944,7213:103,-133,20,0,0,0.387564 -28945,7213:102,-132,20,0,0,0.384034 -28946,7213:101,-131,20,0,0,0.376794 -28947,7213:100,-130,20,0,0,0.370351 -28948,7212:209,-129,20,0,0,0.360345 -28949,7212:208,-128,20,0,0,0.3451 -28950,7212:207,-127,20,0,0,0.348008 -28951,7212:206,-126,20,0,0,0.338995 -28952,7212:205,-125,20,0,0,0.331987 -28953,7212:104,-124,20,0,0,0.334658 -28954,7212:103,-123,20,0,0,0.327831 -28955,7212:102,-122,20,0,0,0.331349 -28956,7212:101,-121,20,0,0,0.331053 -28957,7212:100,-120,20,0,0,0.339571 -28958,7211:209,-119,20,0,0,0.348591 -28959,7211:208,-118,20,0,0,0.355976 -28960,7211:207,-117,20,0,0,0.351981 -28961,7208:100,-80,20,0,0,0.440172 -28962,7207:209,-79,20,0,0,0.506821 -28963,7207:208,-78,20,0,0,0.537854 -28964,7207:207,-77,20,0,0,0.565494 -28965,7207:206,-76,20,0,0,0.565797 -28966,7207:205,-75,20,0,0,0.540764 -28967,7207:104,-74,20,0,0,0.508002 -28968,7207:103,-73,20,0,0,0.512546 -28969,7207:102,-72,20,0,0,0.5004 -28970,7207:101,-71,20,0,0,0.511314 -28971,7207:100,-70,20,0,0,0.514625 -28972,7206:209,-69,20,0,0,0.509337 -28973,7206:208,-68,20,0,0,0.505844 -28974,7206:207,-67,20,0,0,0.500811 -28975,7206:206,-66,20,0,0,0.494158 -28976,7206:205,-65,20,0,0,0.491154 -28977,7206:104,-64,20,0,0,0.487482 -28978,7206:103,-63,20,0,0,0.486481 -28979,7206:102,-62,20,0,0,0.484813 -28980,7206:101,-61,20,0,0,0.4804 -28981,7206:100,-60,20,0,0,0.47817 -28982,7205:209,-59,20,0,0,0.477119 -28983,7205:208,-58,20,0,0,0.473583 -28984,7205:207,-57,20,0,0,0.472379 -28985,7205:206,-56,20,0,0,0.472455 -28986,7205:205,-55,20,0,0,0.471099 -28987,7205:104,-54,20,0,0,0.468642 -28988,7205:103,-53,20,0,0,0.465905 -28989,7205:102,-52,20,0,0,0.463273 -28990,7205:101,-51,20,0,0,0.459545 -28991,7205:100,-50,20,0,0,0.460056 -28992,7204:209,-49,20,0,0,0.461025 -28993,7204:208,-48,20,0,0,0.463758 -28994,7204:207,-47,20,0,0,0.460642 -28995,7204:206,-46,20,0,0,0.451035 -28996,7204:205,-45,20,0,0,0.452663 -28997,7204:104,-44,20,0,0,0.45804 -28998,7204:103,-43,20,0,0,0.466391 -28999,7204:102,-42,20,0,0,0.463273 -29000,7204:101,-41,20,0,0,0.468335 -29001,7204:100,-40,20,0,0,0.472507 -29002,7203:209,-39,20,0,0,0.469486 -29003,7203:208,-38,20,0,0,0.463273 -29004,7203:207,-37,20,0,0,0.454191 -29005,7203:206,-36,20,0,0,0.450272 -29006,7203:205,-35,20,0,0,0.45493 -29007,7203:104,-34,20,0,0,0.457862 -29008,7203:103,-33,20,0,0,0.456586 -29009,7203:102,-32,20,0,0,0.451264 -29010,7203:101,-31,20,0,0,0.447755 -29011,7203:100,-30,20,0,0,0.448899 -29012,7202:209,-29,20,0,0,0.449483 -29013,7202:208,-28,20,0,0,0.454981 -29014,7202:207,-27,20,0,0,0.447755 -29015,7202:206,-26,20,0,0,0.440881 -29016,7202:205,-25,20,0,0,0.444379 -29017,7202:104,-24,20,0,0,0.452205 -29018,7202:103,-23,20,0,0,0.448238 -29019,7202:102,-22,20,0,0,0.445242 -29020,7202:101,-21,20,0,0,0.450577 -29021,7202:100,-20,20,0,0,0.451747 -29022,7201:209,-19,20,0,0,0.450882 -29023,7201:208,-18,20,0,0,0.450043 -29024,7201:207,-17,20,0,0,0.446079 -29025,7201:206,-16,20,0,0,0.442604 -29026,7201:205,-15,20,0,0,0.445952 -29027,7201:104,-14,20,0,0,0.444632 -29028,7201:103,-13,20,0,0,0.445369 -29029,7201:102,-12,20,0,0,0.440552 -29030,7201:101,-11,20,0,0,0.423235 -29031,7201:100,-10,20,0,0,0.399161 -29032,1201:206,16,20,0,0,0.427881 -29033,1201:207,17,20,0,0,0.420779 -29034,1201:208,18,20,0,0,0.428661 -29035,1201:209,19,20,0,0,0.445064 -29036,1202:104,24,20,0,0,0.445318 -29037,1202:205,25,20,0,0,0.443618 -29038,1202:206,26,20,0,0,0.439944 -29039,1202:207,27,20,0,0,0.439362 -29040,1202:208,28,20,0,0,0.439792 -29041,1202:209,29,20,0,0,0.446511 -29042,1203:100,30,20,0,0,0.457938 -29043,1203:101,31,20,0,0,0.464499 -29044,1203:102,32,20,0,0,0.466851 -29045,1203:103,33,20,0,0,0.459672 -29046,1203:104,34,20,0,0,0.476709 -29047,1212:101,121,20,0,0,0.262279 -29048,1212:102,122,20,0,0,0.246307 -29049,1212:103,123,20,0,0,0.306759 -29050,1212:104,124,20,0,0,0.348918 -29051,1212:205,125,20,0,0,0.382116 -29052,1212:206,126,20,0,0,0.433903 -29053,1212:207,127,20,0,0,0.471687 -29054,1212:208,128,20,0,0,0.493696 -29055,1212:209,129,20,0,0,0.481195 -29056,1213:100,130,20,0,0,0.47243 -29057,1213:102,132,20,0,0,0.501787 -29058,1213:103,133,20,0,0,0.5185 -29059,1213:104,134,20,0,0,0.509414 -29060,1213:205,135,20,0,0,0.476555 -29061,1213:206,136,20,0,0,0.459086 -29062,1213:207,137,20,0,0,0.458091 -29063,1213:208,138,20,0,0,0.45975 -29064,1213:209,139,20,0,0,0.462762 -29065,1214:100,140,20,0,0,0.465982 -29066,1214:101,141,20,0,0,0.469153 -29067,1214:102,142,20,0,0,0.480016 -29068,1214:103,143,20,0,0,0.487174 -29069,1214:104,144,20,0,0,0.483658 -29070,1214:205,145,20,0,0,0.482453 -29071,1214:206,146,20,0,0,0.474197 -29072,1214:207,147,20,0,0,0.46946 -29073,1214:208,148,20,0,0,0.471637 -29074,1214:209,149,20,0,0,0.474325 -29075,1215:100,150,20,0,0,0.477119 -29076,1215:101,151,20,0,0,0.482529 -29077,1215:102,152,20,0,0,0.489074 -29078,1215:103,153,20,0,0,0.484607 -29079,1215:104,154,20,0,0,0.487328 -29080,1215:205,155,20,0,0,0.484531 -29081,1215:206,156,20,0,0,0.483146 -29082,1215:207,157,20,0,0,0.48548 -29083,1215:208,158,20,0,0,0.470715 -29084,1215:209,159,20,0,0,0.46031 -29085,1216:100,160,20,0,0,0.453478 -29086,1216:101,161,20,0,0,0.451543 -29087,1216:102,162,20,0,0,0.437945 -29088,1216:103,163,20,0,0,0.443618 -29089,1216:104,164,20,0,0,0.439488 -29090,1216:205,165,20,0,0,0.437996 -29091,1216:206,166,20,0,0,0.441641 -29092,1216:207,167,20,0,0,0.43307 -29093,1216:208,168,20,0,0,0.436807 -29094,1216:209,169,20,0,0,0.432919 -29095,1217:100,170,20,0,0,0.438552 -29096,1217:101,171,20,0,0,0.433373 -29097,1217:102,172,20,0,0,0.421656 -29098,1217:103,173,20,0,0,0.419303 -29099,1217:104,174,20,0,0,0.419027 -29100,1217:205,175,20,0,0,0.421556 -29101,1217:206,176,20,0,0,0.420528 -29102,1217:207,177,20,0,0,0.417277 -29103,1217:208,178,20,0,0,0.408983 -29104,1217:209,179,20,0,0,0.410647 -29105,1218:100,180,20,0,0,0.407369 -29106,7218:110,-180,21,0,0,0.377638 -29107,7217:219,-179,21,0,0,0.380735 -29108,7217:218,-178,21,0,0,0.374168 -29109,7217:217,-177,21,0,0,0.368436 -29110,7217:216,-176,21,0,0,0.364238 -29111,7217:215,-175,21,0,0,0.365214 -29112,7217:114,-174,21,0,0,0.372173 -29113,7217:113,-173,21,0,0,0.365857 -29114,7217:112,-172,21,0,0,0.371309 -29115,7217:111,-171,21,0,0,0.380008 -29116,7217:110,-170,21,0,0,0.381292 -29117,7216:219,-169,21,0,0,0.373518 -29118,7216:218,-168,21,0,0,0.363026 -29119,7216:217,-167,21,0,0,0.36343 -29120,7216:216,-166,21,0,0,0.365405 -29121,7216:215,-165,21,0,0,0.372245 -29122,7216:114,-164,21,0,0,0.360227 -29123,7216:113,-163,21,0,0,0.364857 -29124,7216:112,-162,21,0,0,0.357131 -29125,7216:111,-161,21,0,0,0.370662 -29126,7216:110,-160,21,0,0,0.381389 -29127,7215:219,-159,21,0,0,0.383718 -29128,7215:218,-158,21,0,0,0.377373 -29129,7215:217,-157,21,0,0,0.383694 -29130,7215:216,-156,21,0,0,0.377373 -29131,7215:215,-155,21,0,0,0.388223 -29132,7215:114,-154,21,0,0,0.382019 -29133,7215:113,-153,21,0,0,0.386224 -29134,7215:112,-152,21,0,0,0.39096 -29135,7215:111,-151,21,0,0,0.395839 -29136,7215:110,-150,21,0,0,0.399407 -29137,7214:219,-149,21,0,0,0.395519 -29138,7214:218,-148,21,0,0,0.401479 -29139,7214:217,-147,21,0,0,0.400492 -29140,7214:216,-146,21,0,0,0.400245 -29141,7214:215,-145,21,0,0,0.40551 -29142,7214:114,-144,21,0,0,0.404742 -29143,7214:113,-143,21,0,0,0.402665 -29144,7214:112,-142,21,0,0,0.399851 -29145,7214:111,-141,21,0,0,0.393286 -29146,7214:110,-140,21,0,0,0.388907 -29147,7213:219,-139,21,0,0,0.394709 -29148,7213:218,-138,21,0,0,0.399259 -29149,7213:217,-137,21,0,0,0.39211 -29150,7213:216,-136,21,0,0,0.389688 -29151,7213:215,-135,21,0,0,0.382456 -29152,7213:114,-134,21,0,0,0.380444 -29153,7213:113,-133,21,0,0,0.373543 -29154,7213:112,-132,21,0,0,0.369919 -29155,7213:111,-131,21,0,0,0.367002 -29156,7213:110,-130,21,0,0,0.349128 -29157,7212:219,-129,21,0,0,0.348311 -29158,7212:218,-128,21,0,0,0.349408 -29159,7212:217,-127,21,0,0,0.335872 -29160,7212:216,-126,21,0,0,0.334406 -29161,7212:215,-125,21,0,0,0.328079 -29162,7212:114,-124,21,0,0,0.311037 -29163,7212:113,-123,21,0,0,0.310442 -29164,7212:112,-122,21,0,0,0.317123 -29165,7212:111,-121,21,0,0,0.324961 -29166,7212:110,-120,21,0,0,0.334452 -29167,7211:219,-119,21,0,0,0.342111 -29168,7211:218,-118,21,0,0,0.336422 -29169,7207:219,-79,21,0,0,0.396798 -29170,7207:218,-78,21,0,0,0.440703 -29171,7207:217,-77,21,0,0,0.487508 -29172,7207:216,-76,21,0,0,0.55537 -29173,7207:215,-75,21,0,0,0.547568 -29174,7207:114,-74,21,0,0,0.512931 -29175,7207:113,-73,21,0,0,0.507489 -29176,7207:112,-72,21,0,0,0.500117 -29177,7207:111,-71,21,0,0,0.498165 -29178,7207:110,-70,21,0,0,0.498755 -29179,7206:219,-69,21,0,0,0.502044 -29180,7206:218,-68,21,0,0,0.503816 -29181,7206:217,-67,21,0,0,0.497292 -29182,7206:216,-66,21,0,0,0.498755 -29183,7206:215,-65,21,0,0,0.498294 -29184,7206:114,-64,21,0,0,0.498345 -29185,7206:113,-63,21,0,0,0.492617 -29186,7206:112,-62,21,0,0,0.480811 -29187,7206:111,-61,21,0,0,0.476964 -29188,7206:110,-60,21,0,0,0.477093 -29189,7205:219,-59,21,0,0,0.476247 -29190,7205:218,-58,21,0,0,0.471944 -29191,7205:217,-57,21,0,0,0.468233 -29192,7205:216,-56,21,0,0,0.467286 -29193,7205:215,-55,21,0,0,0.460413 -29194,7205:114,-54,21,0,0,0.452307 -29195,7205:113,-53,21,0,0,0.449687 -29196,7205:112,-52,21,0,0,0.448975 -29197,7205:111,-51,21,0,0,0.451671 -29198,7205:110,-50,21,0,0,0.44984 -29199,7204:219,-49,21,0,0,0.452231 -29200,7204:218,-48,21,0,0,0.449255 -29201,7204:217,-47,21,0,0,0.441616 -29202,7204:216,-46,21,0,0,0.437718 -29203,7204:215,-45,21,0,0,0.443136 -29204,7204:114,-44,21,0,0,0.439817 -29205,7204:113,-43,21,0,0,0.434888 -29206,7204:112,-42,21,0,0,0.443162 -29207,7204:111,-41,21,0,0,0.447857 -29208,7204:110,-40,21,0,0,0.445699 -29209,7203:219,-39,21,0,0,0.441919 -29210,7203:218,-38,21,0,0,0.433676 -29211,7203:217,-37,21,0,0,0.439691 -29212,7203:216,-36,21,0,0,0.442832 -29213,7203:215,-35,21,0,0,0.435923 -29214,7203:114,-34,21,0,0,0.435367 -29215,7203:113,-33,21,0,0,0.418627 -29216,7203:112,-32,21,0,0,0.440122 -29217,7203:111,-31,21,0,0,0.437718 -29218,7203:110,-30,21,0,0,0.434509 -29219,7202:219,-29,21,0,0,0.434787 -29220,7202:218,-28,21,0,0,0.439488 -29221,7202:217,-27,21,0,0,0.43128 -29222,7202:216,-26,21,0,0,0.426197 -29223,7202:215,-25,21,0,0,0.423912 -29224,7202:114,-24,21,0,0,0.427428 -29225,7202:113,-23,21,0,0,0.433827 -29226,7202:112,-22,21,0,0,0.434307 -29227,7202:111,-21,21,0,0,0.445699 -29228,7202:110,-20,21,0,0,0.443364 -29229,7201:219,-19,21,0,0,0.44154 -29230,7201:218,-18,21,0,0,0.442097 -29231,7201:217,-17,21,0,0,0.440577 -29232,7201:216,-16,21,0,0,0.437439 -29233,7201:215,-15,21,0,0,0.437894 -29234,7201:114,-14,21,0,0,0.437819 -29235,7201:113,-13,21,0,0,0.436479 -29236,7201:112,-12,21,0,0,0.435822 -29237,7201:111,-11,21,0,0,0.434382 -29238,7201:110,-10,21,0,0,0.433524 -29239,7200:219,-9,21,0,0,0.41346 -29240,7200:218,-8,21,0,0,0.394341 -29241,1201:111,11,21,0,0,0.386127 -29242,1201:112,12,21,0,0,0.408684 -29243,1201:113,13,21,0,0,0.410797 -29244,1201:114,14,21,0,0,0.419152 -29245,1201:215,15,21,0,0,0.408783 -29246,1201:216,16,21,0,0,0.425368 -29247,1201:217,17,21,0,0,0.418302 -29248,1201:218,18,21,0,0,0.40353 -29249,1201:219,19,21,0,0,0.416378 -29250,1202:110,20,21,0,0,0.413435 -29251,1202:111,21,21,0,0,0.429744 -29252,1202:112,22,21,0,0,0.43128 -29253,1202:113,23,21,0,0,0.424239 -29254,1202:114,24,21,0,0,0.424715 -29255,1202:215,25,21,0,0,0.420203 -29256,1202:216,26,21,0,0,0.428988 -29257,1202:217,27,21,0,0,0.430675 -29258,1202:218,28,21,0,0,0.426121 -29259,1202:219,29,21,0,0,0.432364 -29260,1203:110,30,21,0,0,0.43254 -29261,1203:111,31,21,0,0,0.441337 -29262,1203:112,32,21,0,0,0.441995 -29263,1203:113,33,21,0,0,0.450704 -29264,1203:114,34,21,0,0,0.479708 -29265,1212:112,122,21,0,0,0.229074 -29266,1212:113,123,21,0,0,0.302754 -29267,1212:114,124,21,0,0,0.384301 -29268,1212:215,125,21,0,0,0.417327 -29269,1212:216,126,21,0,0,0.446866 -29270,1212:218,128,21,0,0,0.481042 -29271,1212:219,129,21,0,0,0.468437 -29272,1213:110,130,21,0,0,0.402912 -29273,1213:114,134,21,0,0,0.485275 -29274,1213:215,135,21,0,0,0.497446 -29275,1213:216,136,21,0,0,0.500169 -29276,1213:217,137,21,0,0,0.504175 -29277,1213:218,138,21,0,0,0.501607 -29278,1213:219,139,21,0,0,0.494929 -29279,1214:110,140,21,0,0,0.490204 -29280,1214:111,141,21,0,0,0.480631 -29281,1214:112,142,21,0,0,0.472738 -29282,1214:113,143,21,0,0,0.478887 -29283,1214:114,144,21,0,0,0.477503 -29284,1214:215,145,21,0,0,0.470049 -29285,1214:216,146,21,0,0,0.470843 -29286,1214:217,147,21,0,0,0.473532 -29287,1214:218,148,21,0,0,0.462634 -29288,1214:219,149,21,0,0,0.461306 -29289,1215:110,150,21,0,0,0.469103 -29290,1215:111,151,21,0,0,0.473096 -29291,1215:112,152,21,0,0,0.483427 -29292,1215:113,153,21,0,0,0.483915 -29293,1215:114,154,21,0,0,0.474505 -29294,1215:215,155,21,0,0,0.476555 -29295,1215:216,156,21,0,0,0.478452 -29296,1215:217,157,21,0,0,0.478528 -29297,1215:218,158,21,0,0,0.475837 -29298,1215:219,159,21,0,0,0.463043 -29299,1216:110,160,21,0,0,0.453682 -29300,1216:111,161,21,0,0,0.431658 -29301,1216:112,162,21,0,0,0.421205 -29302,1216:113,163,21,0,0,0.417227 -29303,1216:114,164,21,0,0,0.411518 -29304,1216:215,165,21,0,0,0.41025 -29305,1216:216,166,21,0,0,0.412837 -29306,1216:217,167,21,0,0,0.413435 -29307,1216:218,168,21,0,0,0.412065 -29308,1216:219,169,21,0,0,0.408238 -29309,1217:110,170,21,0,0,0.406352 -29310,1217:111,171,21,0,0,0.403407 -29311,1217:112,172,21,0,0,0.400467 -29312,1217:113,173,21,0,0,0.395397 -29313,1217:114,174,21,0,0,0.385786 -29314,1217:215,175,21,0,0,0.379717 -29315,1217:216,176,21,0,0,0.37996 -29316,1217:217,177,21,0,0,0.380129 -29317,1217:218,178,21,0,0,0.37648 -29318,1217:219,179,21,0,0,0.375516 -29319,1218:110,180,21,0,0,0.377638 -29320,7218:120,-180,22,0,0,0.357791 -29321,7217:229,-179,22,0,0,0.353765 -29322,7217:228,-178,22,0,0,0.347472 -29323,7217:227,-177,22,0,0,0.343198 -29324,7217:226,-176,22,0,0,0.340125 -29325,7217:225,-175,22,0,0,0.340078 -29326,7217:124,-174,22,0,0,0.33918 -29327,7217:123,-173,22,0,0,0.338604 -29328,7217:122,-172,22,0,0,0.340078 -29329,7217:121,-171,22,0,0,0.342712 -29330,7217:120,-170,22,0,0,0.341325 -29331,7216:229,-169,22,0,0,0.332876 -29332,7216:228,-168,22,0,0,0.333219 -29333,7216:227,-167,22,0,0,0.33578 -29334,7216:226,-166,22,0,0,0.339203 -29335,7216:225,-165,22,0,0,0.337133 -29336,7216:124,-164,22,0,0,0.337961 -29337,7216:123,-163,22,0,0,0.335505 -29338,7216:122,-162,22,0,0,0.336147 -29339,7216:121,-161,22,0,0,0.342018 -29340,7216:120,-160,22,0,0,0.351349 -29341,7215:229,-159,22,0,0,0.359848 -29342,7215:228,-158,22,0,0,0.358075 -29343,7215:227,-157,22,0,0,0.359919 -29344,7215:226,-156,22,0,0,0.35487 -29345,7215:225,-155,22,0,0,0.358548 -29346,7215:124,-154,22,0,0,0.359233 -29347,7215:123,-153,22,0,0,0.365357 -29348,7215:122,-152,22,0,0,0.368746 -29349,7215:121,-151,22,0,0,0.370207 -29350,7215:120,-150,22,0,0,0.373855 -29351,7214:229,-149,22,0,0,0.376746 -29352,7214:228,-148,22,0,0,0.377663 -29353,7214:227,-147,22,0,0,0.382165 -29354,7214:226,-146,22,0,0,0.384448 -29355,7214:225,-145,22,0,0,0.387808 -29356,7214:124,-144,22,0,0,0.381485 -29357,7214:123,-143,22,0,0,0.379161 -29358,7214:122,-142,22,0,0,0.379717 -29359,7214:121,-141,22,0,0,0.376939 -29360,7214:120,-140,22,0,0,0.379209 -29361,7213:229,-139,22,0,0,0.377132 -29362,7213:228,-138,22,0,0,0.38435 -29363,7213:227,-137,22,0,0,0.380299 -29364,7213:226,-136,22,0,0,0.379476 -29365,7213:225,-135,22,0,0,0.372869 -29366,7213:124,-134,22,0,0,0.374529 -29367,7213:123,-133,22,0,0,0.363881 -29368,7213:122,-132,22,0,0,0.358618 -29369,7213:121,-131,22,0,0,0.355999 -29370,7213:120,-130,22,0,0,0.349128 -29371,7212:229,-129,22,0,0,0.336743 -29372,7212:228,-128,22,0,0,0.328669 -29373,7212:227,-127,22,0,0,0.322509 -29374,7212:226,-126,22,0,0,0.311014 -29375,7212:225,-125,22,0,0,0.307744 -29376,7212:124,-124,22,0,0,0.301173 -29377,7212:123,-123,22,0,0,0.300957 -29378,7212:122,-122,22,0,0,0.307088 -29379,7212:121,-121,22,0,0,0.308554 -29380,7207:227,-77,22,0,0,0.391645 -29381,7207:226,-76,22,0,0,0.454064 -29382,7207:225,-75,22,0,0,0.551435 -29383,7207:124,-74,22,0,0,0.523755 -29384,7207:123,-73,22,0,0,0.504303 -29385,7207:122,-72,22,0,0,0.484864 -29386,7207:121,-71,22,0,0,0.490974 -29387,7207:120,-70,22,0,0,0.493645 -29388,7206:229,-69,22,0,0,0.499372 -29389,7206:228,-68,22,0,0,0.499526 -29390,7206:227,-67,22,0,0,0.497728 -29391,7206:226,-66,22,0,0,0.493542 -29392,7206:225,-65,22,0,0,0.484326 -29393,7206:124,-64,22,0,0,0.47817 -29394,7206:123,-63,22,0,0,0.467644 -29395,7206:122,-62,22,0,0,0.453809 -29396,7206:121,-61,22,0,0,0.462328 -29397,7206:120,-60,22,0,0,0.467388 -29398,7205:229,-59,22,0,0,0.454089 -29399,7205:228,-58,22,0,0,0.441235 -29400,7205:227,-57,22,0,0,0.448492 -29401,7205:226,-56,22,0,0,0.439792 -29402,7205:225,-55,22,0,0,0.447121 -29403,7205:124,-54,22,0,0,0.449535 -29404,7205:123,-53,22,0,0,0.440906 -29405,7205:122,-52,22,0,0,0.441413 -29406,7205:121,-51,22,0,0,0.441463 -29407,7205:120,-50,22,0,0,0.436631 -29408,7204:229,-49,22,0,0,0.436833 -29409,7204:228,-48,22,0,0,0.436403 -29410,7204:227,-47,22,0,0,0.425017 -29411,7204:226,-46,22,0,0,0.431406 -29412,7204:225,-45,22,0,0,0.432011 -29413,7204:124,-44,22,0,0,0.426398 -29414,7204:123,-43,22,0,0,0.420353 -29415,7204:122,-42,22,0,0,0.420704 -29416,7204:121,-41,22,0,0,0.425594 -29417,7204:120,-40,22,0,0,0.432163 -29418,7203:229,-39,22,0,0,0.41528 -29419,7203:228,-38,22,0,0,0.405114 -29420,7203:227,-37,22,0,0,0.415081 -29421,7203:226,-36,22,0,0,0.417377 -29422,7203:225,-35,22,0,0,0.420003 -29423,7203:124,-34,22,0,0,0.416078 -29424,7203:123,-33,22,0,0,0.408535 -29425,7203:122,-32,22,0,0,0.412239 -29426,7203:121,-31,22,0,0,0.407171 -29427,7203:120,-30,22,0,0,0.410174 -29428,7202:229,-29,22,0,0,0.415155 -29429,7202:228,-28,22,0,0,0.419352 -29430,7202:227,-27,22,0,0,0.416627 -29431,7202:226,-26,22,0,0,0.400196 -29432,7202:225,-25,22,0,0,0.413909 -29433,7202:124,-24,22,0,0,0.411319 -29434,7202:123,-23,22,0,0,0.416528 -29435,7202:122,-22,22,0,0,0.417527 -29436,7202:121,-21,22,0,0,0.423887 -29437,7202:120,-20,22,0,0,0.425117 -29438,7201:229,-19,22,0,0,0.416952 -29439,7201:228,-18,22,0,0,0.425041 -29440,7201:227,-17,22,0,0,0.427907 -29441,7201:226,-16,22,0,0,0.43191 -29442,7201:225,-15,22,0,0,0.423335 -29443,7201:124,-14,22,0,0,0.431533 -29444,7201:123,-13,22,0,0,0.428108 -29445,7201:122,-12,22,0,0,0.427956 -29446,7201:121,-11,22,0,0,0.430801 -29447,7201:120,-10,22,0,0,0.423661 -29448,7200:229,-9,22,0,0,0.418127 -29449,7200:228,-8,22,0,0,0.408485 -29450,7200:227,-7,22,0,0,0.392649 -29451,1201:121,11,22,0,0,0.371837 -29452,1201:122,12,22,0,0,0.400591 -29453,1201:123,13,22,0,0,0.402072 -29454,1201:124,14,22,0,0,0.413261 -29455,1201:225,15,22,0,0,0.399876 -29456,1201:226,16,22,0,0,0.39466 -29457,1201:227,17,22,0,0,0.391866 -29458,1201:228,18,22,0,0,0.394954 -29459,1201:229,19,22,0,0,0.399604 -29460,1202:120,20,22,0,0,0.406327 -29461,1202:121,21,22,0,0,0.414606 -29462,1202:122,22,22,0,0,0.418952 -29463,1202:123,23,22,0,0,0.416903 -29464,1202:124,24,22,0,0,0.414482 -29465,1202:225,25,22,0,0,0.413659 -29466,1202:226,26,22,0,0,0.415779 -29467,1202:227,27,22,0,0,0.416478 -29468,1202:228,28,22,0,0,0.415829 -29469,1202:229,29,22,0,0,0.420679 -29470,1203:120,30,22,0,0,0.429014 -29471,1203:121,31,22,0,0,0.431028 -29472,1203:122,32,22,0,0,0.43754 -29473,1203:123,33,22,0,0,0.442173 -29474,1203:124,34,22,0,0,0.445064 -29475,1203:225,35,22,0,0,0.486943 -29476,1212:121,121,22,0,0,0.23859 -29477,1212:122,122,22,0,0,0.282347 -29478,1212:123,123,22,0,0,0.355316 -29479,1212:124,124,22,0,0,0.389737 -29480,1212:225,125,22,0,0,0.351162 -29481,1212:226,126,22,0,0,0.30139 -29482,1212:228,128,22,0,0,0.254367 -29483,1212:229,129,22,0,0,0.328442 -29484,1213:120,130,22,0,0,0.425694 -29485,1213:121,131,22,0,0,0.444658 -29486,1213:225,135,22,0,0,0.320604 -29487,1213:227,137,22,0,0,0.358193 -29488,1213:229,139,22,0,0,0.432414 -29489,1214:120,140,22,0,0,0.442629 -29490,1214:121,141,22,0,0,0.455057 -29491,1214:122,142,22,0,0,0.473941 -29492,1214:123,143,22,0,0,0.479247 -29493,1214:124,144,22,0,0,0.472763 -29494,1214:225,145,22,0,0,0.430877 -29495,1214:226,146,22,0,0,0.417802 -29496,1214:227,147,22,0,0,0.455618 -29497,1214:228,148,22,0,0,0.479118 -29498,1214:229,149,22,0,0,0.473121 -29499,1215:120,150,22,0,0,0.478554 -29500,1215:121,151,22,0,0,0.455236 -29501,1215:122,152,22,0,0,0.476504 -29502,1215:123,153,22,0,0,0.483633 -29503,1215:124,154,22,0,0,0.47999 -29504,1215:225,155,22,0,0,0.48135 -29505,1215:226,156,22,0,0,0.466289 -29506,1215:227,157,22,0,0,0.474941 -29507,1215:228,158,22,0,0,0.448822 -29508,1215:229,159,22,0,0,0.455057 -29509,1216:120,160,22,0,0,0.445927 -29510,1216:121,161,22,0,0,0.430474 -29511,1216:122,162,22,0,0,0.414706 -29512,1216:123,163,22,0,0,0.407692 -29513,1216:124,164,22,0,0,0.404223 -29514,1216:225,165,22,0,0,0.396921 -29515,1216:226,166,22,0,0,0.389664 -29516,1216:227,167,22,0,0,0.389713 -29517,1216:228,168,22,0,0,0.390642 -29518,1216:229,169,22,0,0,0.391523 -29519,1217:120,170,22,0,0,0.389542 -29520,1217:121,171,22,0,0,0.384642 -29521,1217:122,172,22,0,0,0.379669 -29522,1217:123,173,22,0,0,0.383452 -29523,1217:124,174,22,0,0,0.374866 -29524,1217:225,175,22,0,0,0.36956 -29525,1217:226,176,22,0,0,0.368842 -29526,1217:227,177,22,0,0,0.361293 -29527,1217:228,178,22,0,0,0.357603 -29528,1217:229,179,22,0,0,0.355811 -29529,1218:120,180,22,0,0,0.357791 -29530,7218:130,-180,23,0,0,0.334429 -29531,7217:239,-179,23,0,0,0.336513 -29532,7217:238,-178,23,0,0,0.333035 -29533,7217:237,-177,23,0,0,0.325774 -29534,7217:236,-176,23,0,0,0.327106 -29535,7217:235,-175,23,0,0,0.326745 -29536,7217:134,-174,23,0,0,0.32085 -29537,7217:133,-173,23,0,0,0.319576 -29538,7217:132,-172,23,0,0,0.318215 -29539,7217:131,-171,23,0,0,0.314925 -29540,7217:130,-170,23,0,0,0.313773 -29541,7216:239,-169,23,0,0,0.313331 -29542,7216:238,-168,23,0,0,0.316501 -29543,7216:237,-167,23,0,0,0.317969 -29544,7216:236,-166,23,0,0,0.320627 -29545,7216:235,-165,23,0,0,0.321433 -29546,7216:134,-164,23,0,0,0.321164 -29547,7216:133,-163,23,0,0,0.32085 -29548,7216:132,-162,23,0,0,0.321702 -29549,7216:131,-161,23,0,0,0.330439 -29550,7216:130,-160,23,0,0,0.330644 -29551,7215:239,-159,23,0,0,0.329213 -29552,7215:238,-158,23,0,0,0.333835 -29553,7215:237,-157,23,0,0,0.336972 -29554,7215:236,-156,23,0,0,0.337432 -29555,7215:235,-155,23,0,0,0.341025 -29556,7215:134,-154,23,0,0,0.342712 -29557,7215:133,-153,23,0,0,0.349618 -29558,7215:132,-152,23,0,0,0.352685 -29559,7215:131,-151,23,0,0,0.352286 -29560,7215:130,-150,23,0,0,0.349408 -29561,7214:239,-149,23,0,0,0.36134 -29562,7214:238,-148,23,0,0,0.353553 -29563,7214:237,-147,23,0,0,0.362836 -29564,7214:236,-146,23,0,0,0.35534 -29565,7214:235,-145,23,0,0,0.358783 -29566,7214:134,-144,23,0,0,0.361412 -29567,7214:133,-143,23,0,0,0.341533 -29568,7214:132,-142,23,0,0,0.346122 -29569,7214:131,-141,23,0,0,0.364547 -29570,7214:130,-140,23,0,0,0.355999 -29571,7213:239,-139,23,0,0,0.363145 -29572,7213:238,-138,23,0,0,0.357414 -29573,7213:237,-137,23,0,0,0.350016 -29574,7213:236,-136,23,0,0,0.364476 -29575,7213:235,-135,23,0,0,0.359848 -29576,7213:134,-134,23,0,0,0.358453 -29577,7213:133,-133,23,0,0,0.345053 -29578,7213:132,-132,23,0,0,0.340817 -29579,7213:131,-131,23,0,0,0.336032 -29580,7213:130,-130,23,0,0,0.32944 -29581,7212:239,-129,23,0,0,0.318058 -29582,7212:238,-128,23,0,0,0.307043 -29583,7212:237,-127,23,0,0,0.310904 -29584,7212:236,-126,23,0,0,0.316745 -29585,7212:235,-125,23,0,0,0.310046 -29586,7212:134,-124,23,0,0,0.293766 -29587,7212:133,-123,23,0,0,0.297274 -29588,7212:132,-122,23,0,0,0.296223 -29589,7207:235,-75,23,0,0,0.472148 -29590,7207:134,-74,23,0,0,0.540432 -29591,7207:133,-73,23,0,0,0.527496 -29592,7207:132,-72,23,0,0,0.481555 -29593,7207:131,-71,23,0,0,0.485198 -29594,7207:130,-70,23,0,0,0.502506 -29595,7206:239,-69,23,0,0,0.489228 -29596,7206:238,-68,23,0,0,0.49498 -29597,7206:237,-67,23,0,0,0.490589 -29598,7206:236,-66,23,0,0,0.474505 -29599,7206:235,-65,23,0,0,0.47284 -29600,7206:134,-64,23,0,0,0.466621 -29601,7206:133,-63,23,0,0,0.460234 -29602,7206:132,-62,23,0,0,0.462251 -29603,7206:131,-61,23,0,0,0.452791 -29604,7206:130,-60,23,0,0,0.443948 -29605,7205:239,-59,23,0,0,0.441489 -29606,7205:238,-58,23,0,0,0.435241 -29607,7205:237,-57,23,0,0,0.4306 -29608,7205:236,-56,23,0,0,0.430978 -29609,7205:235,-55,23,0,0,0.433095 -29610,7205:134,-54,23,0,0,0.428309 -29611,7205:133,-53,23,0,0,0.425946 -29612,7205:132,-52,23,0,0,0.433373 -29613,7205:131,-51,23,0,0,0.434837 -29614,7205:130,-50,23,0,0,0.424062 -29615,7204:239,-49,23,0,0,0.416103 -29616,7204:238,-48,23,0,0,0.419903 -29617,7204:237,-47,23,0,0,0.414033 -29618,7204:236,-46,23,0,0,0.416203 -29619,7204:235,-45,23,0,0,0.415305 -29620,7204:134,-44,23,0,0,0.409479 -29621,7204:133,-43,23,0,0,0.404817 -29622,7204:132,-42,23,0,0,0.400961 -29623,7204:131,-41,23,0,0,0.408213 -29624,7204:130,-40,23,0,0,0.405857 -29625,7203:239,-39,23,0,0,0.393434 -29626,7203:238,-38,23,0,0,0.39238 -29627,7203:237,-37,23,0,0,0.396158 -29628,7203:236,-36,23,0,0,0.400171 -29629,7203:235,-35,23,0,0,0.386492 -29630,7203:134,-34,23,0,0,0.396232 -29631,7203:133,-33,23,0,0,0.387394 -29632,7203:132,-32,23,0,0,0.389298 -29633,7203:131,-31,23,0,0,0.387126 -29634,7203:130,-30,23,0,0,0.385177 -29635,7202:239,-29,23,0,0,0.40222 -29636,7202:238,-28,23,0,0,0.391841 -29637,7202:237,-27,23,0,0,0.38367 -29638,7202:236,-26,23,0,0,0.391425 -29639,7202:235,-25,23,0,0,0.392453 -29640,7202:134,-24,23,0,0,0.402739 -29641,7202:133,-23,23,0,0,0.399235 -29642,7202:132,-22,23,0,0,0.406625 -29643,7202:131,-21,23,0,0,0.402443 -29644,7202:130,-20,23,0,0,0.405683 -29645,7201:239,-19,23,0,0,0.411443 -29646,7201:238,-18,23,0,0,0.410896 -29647,7201:237,-17,23,0,0,0.41356 -29648,7201:236,-16,23,0,0,0.415829 -29649,7201:235,-15,23,0,0,0.415804 -29650,7201:134,-14,23,0,0,0.410647 -29651,7201:133,-13,23,0,0,0.402566 -29652,7201:132,-12,23,0,0,0.404495 -29653,7201:131,-11,23,0,0,0.409851 -29654,7201:130,-10,23,0,0,0.383111 -29655,7200:239,-9,23,0,0,0.379548 -29656,7200:238,-8,23,0,0,0.375757 -29657,7200:237,-7,23,0,0,0.379355 -29658,7200:236,-6,23,0,0,0.357202 -29659,7200:235,-5,23,0,0,0.349688 -29660,7200:134,-4,23,0,0,0.332533 -29661,7200:133,-3,23,0,0,0.344984 -29662,7200:132,-2,23,0,0,0.352263 -29663,7200:131,-1,23,0,0,0.367552 -29664,1201:131,11,23,0,0,0.395348 -29665,1201:132,12,23,0,0,0.395987 -29666,1201:133,13,23,0,0,0.386736 -29667,1201:134,14,23,0,0,0.378798 -29668,1201:235,15,23,0,0,0.392722 -29669,1201:236,16,23,0,0,0.396674 -29670,1201:237,17,23,0,0,0.396109 -29671,1201:238,18,23,0,0,0.396724 -29672,1201:239,19,23,0,0,0.402888 -29673,1202:130,20,23,0,0,0.418252 -29674,1202:131,21,23,0,0,0.418827 -29675,1202:132,22,23,0,0,0.418952 -29676,1202:133,23,23,0,0,0.414282 -29677,1202:134,24,23,0,0,0.415879 -29678,1202:235,25,23,0,0,0.418452 -29679,1202:236,26,23,0,0,0.414931 -29680,1202:237,27,23,0,0,0.425569 -29681,1202:238,28,23,0,0,0.424916 -29682,1202:239,29,23,0,0,0.42846 -29683,1203:130,30,23,0,0,0.425041 -29684,1203:131,31,23,0,0,0.436807 -29685,1203:132,32,23,0,0,0.44989 -29686,1203:133,33,23,0,0,0.45274 -29687,1203:134,34,23,0,0,0.444937 -29688,1203:235,35,23,0,0,0.482915 -29689,1212:130,120,23,0,0,0.257359 -29691,1212:132,122,23,0,0,0.274606 -29692,1212:133,123,23,0,0,0.331486 -29693,1212:134,124,23,0,0,0.367528 -29694,1212:235,125,23,0,0,0.35238 -29695,1212:236,126,23,0,0,0.304144 -29696,1213:130,130,23,0,0,0.407171 -29697,1213:131,131,23,0,0,0.412713 -29698,1213:132,132,23,0,0,0.410374 -29699,1213:133,133,23,0,0,0.437136 -29700,1213:134,134,23,0,0,0.429416 -29701,1213:235,135,23,0,0,0.423611 -29702,1213:236,136,23,0,0,0.42459 -29703,1214:132,142,23,0,0,0.421079 -29704,1214:133,143,23,0,0,0.422558 -29705,1214:134,144,23,0,0,0.430827 -29706,1214:235,145,23,0,0,0.430524 -29707,1214:236,146,23,0,0,0.425594 -29708,1214:237,147,23,0,0,0.426499 -29709,1214:238,148,23,0,0,0.443162 -29710,1214:239,149,23,0,0,0.454905 -29711,1215:130,150,23,0,0,0.453631 -29712,1215:131,151,23,0,0,0.456638 -29713,1215:132,152,23,0,0,0.461051 -29714,1215:133,153,23,0,0,0.456688 -29715,1215:134,154,23,0,0,0.45246 -29716,1215:235,155,23,0,0,0.462813 -29717,1215:236,156,23,0,0,0.467337 -29718,1215:237,157,23,0,0,0.470101 -29719,1215:238,158,23,0,0,0.437894 -29720,1215:239,159,23,0,0,0.450551 -29721,1216:130,160,23,0,0,0.401603 -29722,1216:131,161,23,0,0,0.409156 -29723,1216:132,162,23,0,0,0.4268 -29724,1216:133,163,23,0,0,0.415854 -29725,1216:134,164,23,0,0,0.400566 -29726,1216:235,165,23,0,0,0.393728 -29727,1216:236,166,23,0,0,0.377301 -29728,1216:237,167,23,0,0,0.367862 -29729,1216:238,168,23,0,0,0.357248 -29730,1216:239,169,23,0,0,0.35238 -29731,1217:130,170,23,0,0,0.353107 -29732,1217:131,171,23,0,0,0.359659 -29733,1217:132,172,23,0,0,0.357343 -29734,1217:133,173,23,0,0,0.358193 -29735,1217:134,174,23,0,0,0.3517 -29736,1217:235,175,23,0,0,0.348521 -29737,1217:236,176,23,0,0,0.351865 -29738,1217:237,177,23,0,0,0.346564 -29739,1217:238,178,23,0,0,0.343592 -29740,1217:239,179,23,0,0,0.336307 -29741,1218:130,180,23,0,0,0.334429 -29742,7218:140,-180,24,0,0,0.301779 -29743,7217:249,-179,24,0,0,0.303536 -29744,7217:248,-178,24,0,0,0.301109 -29745,7217:247,-177,24,0,0,0.293404 -29746,7217:246,-176,24,0,0,0.298391 -29747,7217:245,-175,24,0,0,0.29992 -29748,7217:144,-174,24,0,0,0.293063 -29749,7217:143,-173,24,0,0,0.295837 -29750,7217:142,-172,24,0,0,0.301216 -29751,7217:141,-171,24,0,0,0.298886 -29752,7217:140,-170,24,0,0,0.297918 -29753,7216:249,-169,24,0,0,0.296738 -29754,7216:248,-168,24,0,0,0.298972 -29755,7216:247,-167,24,0,0,0.30508 -29756,7216:246,-166,24,0,0,0.303188 -29757,7216:245,-165,24,0,0,0.303448 -29758,7216:144,-164,24,0,0,0.300719 -29759,7216:143,-163,24,0,0,0.302797 -29760,7216:142,-162,24,0,0,0.303644 -29761,7216:141,-161,24,0,0,0.311169 -29762,7216:140,-160,24,0,0,0.306257 -29763,7215:249,-159,24,0,0,0.307744 -29764,7215:248,-158,24,0,0,0.320537 -29765,7215:247,-157,24,0,0,0.31846 -29766,7215:246,-156,24,0,0,0.324016 -29767,7215:245,-155,24,0,0,0.326157 -29768,7215:144,-154,24,0,0,0.329485 -29769,7215:143,-153,24,0,0,0.325435 -29770,7215:142,-152,24,0,0,0.319531 -29771,7215:141,-151,24,0,0,0.328238 -29772,7215:140,-150,24,0,0,0.335963 -29773,7214:249,-149,24,0,0,0.333401 -29774,7214:248,-148,24,0,0,0.339156 -29775,7214:247,-147,24,0,0,0.334087 -29776,7214:246,-146,24,0,0,0.339825 -29777,7214:245,-145,24,0,0,0.334841 -29778,7214:144,-144,24,0,0,0.344914 -29779,7214:143,-143,24,0,0,0.343685 -29780,7214:142,-142,24,0,0,0.338144 -29781,7214:141,-141,24,0,0,0.34682 -29782,7214:140,-140,24,0,0,0.336399 -29783,7213:249,-139,24,0,0,0.343685 -29784,7213:248,-138,24,0,0,0.340655 -29785,7213:247,-137,24,0,0,0.345193 -29786,7213:246,-136,24,0,0,0.352075 -29787,7213:245,-135,24,0,0,0.353624 -29788,7213:144,-134,24,0,0,0.346797 -29789,7213:143,-133,24,0,0,0.34054 -29790,7213:142,-132,24,0,0,0.337065 -29791,7213:141,-131,24,0,0,0.333355 -29792,7213:140,-130,24,0,0,0.327966 -29793,7212:249,-129,24,0,0,0.314747 -29794,7212:248,-128,24,0,0,0.300287 -29795,7212:247,-127,24,0,0,0.295196 -29796,7212:246,-126,24,0,0,0.289838 -29797,7212:245,-125,24,0,0,0.293404 -29798,7212:144,-124,24,0,0,0.29096 -29799,7212:143,-123,24,0,0,0.288845 -29800,7212:142,-122,24,0,0,0.279483 -29801,7207:246,-76,24,0,0,0.318505 -29802,7207:245,-75,24,0,0,0.420628 -29803,7207:144,-74,24,0,0,0.517807 -29804,7207:143,-73,24,0,0,0.535427 -29805,7207:142,-72,24,0,0,0.517345 -29806,7207:141,-71,24,0,0,0.498859 -29807,7207:140,-70,24,0,0,0.505254 -29808,7206:249,-69,24,0,0,0.515369 -29809,7206:248,-68,24,0,0,0.500271 -29810,7206:247,-67,24,0,0,0.48117 -29811,7206:246,-66,24,0,0,0.487379 -29812,7206:245,-65,24,0,0,0.481042 -29813,7206:144,-64,24,0,0,0.470356 -29814,7206:143,-63,24,0,0,0.465778 -29815,7206:142,-62,24,0,0,0.45549 -29816,7206:141,-61,24,0,0,0.452841 -29817,7206:140,-60,24,0,0,0.446917 -29818,7205:249,-59,24,0,0,0.444455 -29819,7205:248,-58,24,0,0,0.433726 -29820,7205:247,-57,24,0,0,0.432843 -29821,7205:246,-56,24,0,0,0.427554 -29822,7205:245,-55,24,0,0,0.427353 -29823,7205:144,-54,24,0,0,0.426775 -29824,7205:143,-53,24,0,0,0.427152 -29825,7205:142,-52,24,0,0,0.416303 -29826,7205:141,-51,24,0,0,0.411891 -29827,7205:140,-50,24,0,0,0.40665 -29828,7204:249,-49,24,0,0,0.404668 -29829,7204:248,-48,24,0,0,0.400024 -29830,7204:247,-47,24,0,0,0.403901 -29831,7204:246,-46,24,0,0,0.399358 -29832,7204:245,-45,24,0,0,0.399802 -29833,7204:144,-44,24,0,0,0.3926 -29834,7204:143,-43,24,0,0,0.391914 -29835,7204:142,-42,24,0,0,0.38859 -29836,7204:141,-41,24,0,0,0.38367 -29837,7204:140,-40,24,0,0,0.388443 -29838,7203:249,-39,24,0,0,0.387881 -29839,7203:248,-38,24,0,0,0.385543 -29840,7203:247,-37,24,0,0,0.380202 -29841,7203:246,-36,24,0,0,0.376529 -29842,7203:245,-35,24,0,0,0.378436 -29843,7203:144,-34,24,0,0,0.375805 -29844,7203:143,-33,24,0,0,0.374577 -29845,7203:142,-32,24,0,0,0.370518 -29846,7203:141,-31,24,0,0,0.368101 -29847,7203:140,-30,24,0,0,0.373326 -29848,7202:249,-29,24,0,0,0.370542 -29849,7202:248,-28,24,0,0,0.370854 -29850,7202:247,-27,24,0,0,0.368818 -29851,7202:246,-26,24,0,0,0.37513 -29852,7202:245,-25,24,0,0,0.373158 -29853,7202:144,-24,24,0,0,0.378919 -29854,7202:143,-23,24,0,0,0.382674 -29855,7202:142,-22,24,0,0,0.385883 -29856,7202:141,-21,24,0,0,0.384059 -29857,7202:140,-20,24,0,0,0.388077 -29858,7201:249,-19,24,0,0,0.393409 -29859,7201:248,-18,24,0,0,0.394832 -29860,7201:247,-17,24,0,0,0.396183 -29861,7201:246,-16,24,0,0,0.395642 -29862,7201:245,-15,24,0,0,0.393066 -29863,7201:144,-14,24,0,0,0.393997 -29864,7201:143,-13,24,0,0,0.395372 -29865,7201:142,-12,24,0,0,0.385518 -29866,7201:141,-11,24,0,0,0.382965 -29867,7201:140,-10,24,0,0,0.355222 -29868,7200:142,-2,24,0,0,0.337501 -29869,7200:141,-1,24,0,0,0.34582 -29870,1200:141,0,24,0,0,0.373014 -29871,1200:141,1,24,0,0,0.364809 -29872,1200:142,2,24,0,0,0.373014 -29873,1200:143,3,24,0,0,0.376239 -29874,1200:144,4,24,0,0,0.381437 -29875,1200:245,5,24,0,0,0.38401 -29876,1200:248,8,24,0,0,0.393826 -29877,1201:140,10,24,0,0,0.389688 -29878,1201:141,11,24,0,0,0.388053 -29879,1201:142,12,24,0,0,0.37047 -29880,1201:143,13,24,0,0,0.360843 -29881,1201:144,14,24,0,0,0.358524 -29882,1201:245,15,24,0,0,0.399727 -29883,1201:246,16,24,0,0,0.396699 -29884,1201:247,17,24,0,0,0.394587 -29885,1201:248,18,24,0,0,0.401085 -29886,1201:249,19,24,0,0,0.417952 -29887,1202:140,20,24,0,0,0.420603 -29888,1202:141,21,24,0,0,0.417377 -29889,1202:143,23,24,0,0,0.404297 -29890,1202:144,24,24,0,0,0.411294 -29891,1202:245,25,24,0,0,0.418302 -29892,1202:246,26,24,0,0,0.428007 -29893,1202:247,27,24,0,0,0.437439 -29894,1202:248,28,24,0,0,0.45544 -29895,1203:141,31,24,0,0,0.470945 -29896,1203:144,34,24,0,0,0.480503 -29897,1203:245,35,24,0,0,0.48679 -29898,1212:142,122,24,0,0,0.212397 -29899,1212:143,123,24,0,0,0.23859 -29900,1212:144,124,24,0,0,0.344729 -29901,1212:245,125,24,0,0,0.352403 -29902,1212:246,126,24,0,0,0.245259 -29903,1213:140,130,24,0,0,0.396404 -29904,1213:141,131,24,0,0,0.341764 -29905,1213:142,132,24,0,0,0.389151 -29906,1213:143,133,24,0,0,0.404272 -29907,1213:144,134,24,0,0,0.404767 -29908,1213:245,135,24,0,0,0.386443 -29909,1213:246,136,24,0,0,0.400393 -29910,1213:247,137,24,0,0,0.396896 -29911,1213:248,138,24,0,0,0.401356 -29912,1214:142,142,24,0,0,0.412239 -29913,1214:143,143,24,0,0,0.429618 -29914,1214:144,144,24,0,0,0.414133 -29915,1214:245,145,24,0,0,0.408064 -29916,1214:246,146,24,0,0,0.411966 -29917,1214:247,147,24,0,0,0.433121 -29918,1214:248,148,24,0,0,0.440374 -29919,1214:249,149,24,0,0,0.436049 -29920,1215:140,150,24,0,0,0.418502 -29921,1215:141,151,24,0,0,0.416678 -29922,1215:142,152,24,0,0,0.414507 -29923,1215:143,153,24,0,0,0.41097 -29924,1215:144,154,24,0,0,0.408833 -29925,1215:245,155,24,0,0,0.401504 -29926,1215:246,156,24,0,0,0.390471 -29927,1215:247,157,24,0,0,0.396428 -29928,1215:248,158,24,0,0,0.420904 -29929,1215:249,159,24,0,0,0.412663 -29930,1216:140,160,24,0,0,0.410697 -29931,1216:141,161,24,0,0,0.386565 -29932,1216:142,162,24,0,0,0.376987 -29933,1216:143,163,24,0,0,0.37071 -29934,1216:144,164,24,0,0,0.373615 -29935,1216:245,165,24,0,0,0.373927 -29936,1216:246,166,24,0,0,0.372269 -29937,1216:247,167,24,0,0,0.361009 -29938,1216:248,168,24,0,0,0.356117 -29939,1216:249,169,24,0,0,0.349595 -29940,1217:140,170,24,0,0,0.345193 -29941,1217:141,171,24,0,0,0.340609 -29942,1217:142,172,24,0,0,0.335734 -29943,1217:143,173,24,0,0,0.328646 -29944,1217:144,174,24,0,0,0.321209 -29945,1217:245,175,24,0,0,0.321792 -29946,1217:246,176,24,0,0,0.312624 -29947,1217:247,177,24,0,0,0.310288 -29948,1217:248,178,24,0,0,0.314282 -29949,1217:249,179,24,0,0,0.309059 -29950,1218:140,180,24,0,0,0.301779 -29951,7218:350,-180,25,0,0,0.278656 -29952,7217:459,-179,25,0,0,0.278037 -29953,7217:458,-178,25,0,0,0.282409 -29954,7217:457,-177,25,0,0,0.272829 -29955,7217:456,-176,25,0,0,0.272197 -29956,7217:455,-175,25,0,0,0.275527 -29957,7217:354,-174,25,0,0,0.275835 -29958,7217:353,-173,25,0,0,0.277851 -29959,7217:352,-172,25,0,0,0.277665 -29960,7217:351,-171,25,0,0,0.276102 -29961,7217:350,-170,25,0,0,0.278759 -29962,7216:459,-169,25,0,0,0.281847 -29963,7216:458,-168,25,0,0,0.28569 -29964,7216:457,-167,25,0,0,0.292319 -29965,7216:456,-166,25,0,0,0.284099 -29966,7216:455,-165,25,0,0,0.278697 -29967,7216:354,-164,25,0,0,0.283827 -29968,7216:353,-163,25,0,0,0.28318 -29969,7216:352,-162,25,0,0,0.282471 -29970,7216:351,-161,25,0,0,0.284391 -29971,7216:350,-160,25,0,0,0.282638 -29972,7215:459,-159,25,0,0,0.285774 -29973,7215:458,-158,25,0,0,0.293084 -29974,7215:457,-157,25,0,0,0.290473 -29975,7215:456,-156,25,0,0,0.300158 -29976,7215:455,-155,25,0,0,0.301238 -29977,7215:354,-154,25,0,0,0.303383 -29978,7215:353,-153,25,0,0,0.30018 -29979,7215:352,-152,25,0,0,0.310178 -29980,7215:351,-151,25,0,0,0.309059 -29981,7215:350,-150,25,0,0,0.31539 -29982,7214:459,-149,25,0,0,0.313751 -29983,7214:458,-148,25,0,0,0.315324 -29984,7214:457,-147,25,0,0,0.317635 -29985,7214:456,-146,25,0,0,0.315258 -29986,7214:455,-145,25,0,0,0.315124 -29987,7214:354,-144,25,0,0,0.317235 -29988,7214:353,-143,25,0,0,0.319017 -29989,7214:352,-142,25,0,0,0.321926 -29990,7214:351,-141,25,0,0,0.332465 -29991,7214:350,-140,25,0,0,0.332055 -29992,7213:459,-139,25,0,0,0.315568 -29993,7213:458,-138,25,0,0,0.330484 -29994,7213:457,-137,25,0,0,0.327558 -29995,7213:456,-136,25,0,0,0.336124 -29996,7213:455,-135,25,0,0,0.341764 -29997,7213:354,-134,25,0,0,0.342527 -29998,7213:353,-133,25,0,0,0.335642 -29999,7213:352,-132,25,0,0,0.329168 -30000,7213:351,-131,25,0,0,0.322307 -30001,7213:350,-130,25,0,0,0.326044 -30002,7212:459,-129,25,0,0,0.317168 -30003,7212:458,-128,25,0,0,0.311851 -30004,7212:457,-127,25,0,0,0.299252 -30005,7212:456,-126,25,0,0,0.289648 -30006,7212:455,-125,25,0,0,0.289014 -30007,7212:354,-124,25,0,0,0.27783 -30008,7212:353,-123,25,0,0,0.265712 -30009,7207:456,-76,25,0,0,0.288128 -30010,7207:455,-75,25,0,0,0.318839 -30011,7207:354,-74,25,0,0,0.439387 -30012,7207:353,-73,25,0,0,0.491308 -30013,7207:352,-72,25,0,0,0.50397 -30014,7207:351,-71,25,0,0,0.492643 -30015,7207:350,-70,25,0,0,0.443897 -30016,7206:459,-69,25,0,0,0.438021 -30017,7206:458,-68,25,0,0,0.490563 -30018,7206:457,-67,25,0,0,0.491103 -30019,7206:456,-66,25,0,0,0.462251 -30020,7206:455,-65,25,0,0,0.468744 -30021,7206:354,-64,25,0,0,0.472635 -30022,7206:353,-63,25,0,0,0.462277 -30023,7206:352,-62,25,0,0,0.46634 -30024,7206:351,-61,25,0,0,0.453071 -30025,7206:350,-60,25,0,0,0.426825 -30026,7205:459,-59,25,0,0,0.423561 -30027,7205:458,-58,25,0,0,0.423386 -30028,7205:457,-57,25,0,0,0.418702 -30029,7205:456,-56,25,0,0,0.414905 -30030,7205:455,-55,25,0,0,0.418727 -30031,7205:354,-54,25,0,0,0.425519 -30032,7205:353,-53,25,0,0,0.425368 -30033,7205:352,-52,25,0,0,0.417077 -30034,7205:351,-51,25,0,0,0.402813 -30035,7205:350,-50,25,0,0,0.397044 -30036,7204:459,-49,25,0,0,0.391131 -30037,7204:458,-48,25,0,0,0.388565 -30038,7204:457,-47,25,0,0,0.395691 -30039,7204:456,-46,25,0,0,0.397388 -30040,7204:455,-45,25,0,0,0.399752 -30041,7204:354,-44,25,0,0,0.399407 -30042,7204:353,-43,25,0,0,0.378146 -30043,7204:352,-42,25,0,0,0.373278 -30044,7204:351,-41,25,0,0,0.373686 -30045,7204:350,-40,25,0,0,0.372701 -30046,7203:459,-39,25,0,0,0.377228 -30047,7203:458,-38,25,0,0,0.374529 -30048,7203:457,-37,25,0,0,0.368818 -30049,7203:456,-36,25,0,0,0.371381 -30050,7203:455,-35,25,0,0,0.371813 -30051,7203:354,-34,25,0,0,0.367432 -30052,7203:353,-33,25,0,0,0.360061 -30053,7203:352,-32,25,0,0,0.359044 -30054,7203:351,-31,25,0,0,0.36324 -30055,7203:350,-30,25,0,0,0.358406 -30056,7202:458,-28,25,0,0,0.356518 -30057,7202:457,-27,25,0,0,0.351279 -30058,7202:456,-26,25,0,0,0.356541 -30059,7202:455,-25,25,0,0,0.361886 -30060,7202:354,-24,25,0,0,0.365476 -30061,7202:353,-23,25,0,0,0.35876 -30062,7202:352,-22,25,0,0,0.364119 -30063,7202:351,-21,25,0,0,0.369967 -30064,7202:350,-20,25,0,0,0.374914 -30065,7201:459,-19,25,0,0,0.368914 -30066,7201:458,-18,25,0,0,0.372726 -30067,7201:457,-17,25,0,0,0.37107 -30068,7201:456,-16,25,0,0,0.372149 -30069,7201:455,-15,25,0,0,0.373639 -30070,7201:354,-14,25,0,0,0.371309 -30071,7201:353,-13,25,0,0,0.372605 -30072,7201:352,-12,25,0,0,0.381147 -30073,7201:351,-11,25,0,0,0.374817 -30074,7201:350,-10,25,0,0,0.343801 -30075,1200:351,0,25,0,0,0.366263 -30076,1200:351,1,25,0,0,0.379379 -30077,1200:352,2,25,0,0,0.381656 -30078,1200:353,3,25,0,0,0.383913 -30079,1200:354,4,25,0,0,0.384739 -30080,1200:455,5,25,0,0,0.385372 -30081,1200:456,6,25,0,0,0.381656 -30082,1200:457,7,25,0,0,0.388931 -30083,1200:458,8,25,0,0,0.377977 -30084,1200:459,9,25,0,0,0.373061 -30085,1201:350,10,25,0,0,0.368938 -30086,1201:351,11,25,0,0,0.372845 -30087,1201:352,12,25,0,0,0.373422 -30088,1201:455,15,25,0,0,0.399481 -30089,1201:456,16,25,0,0,0.396085 -30090,1201:457,17,25,0,0,0.38854 -30091,1201:458,18,25,0,0,0.393458 -30092,1201:459,19,25,0,0,0.413684 -30093,1202:350,20,25,0,0,0.423511 -30094,1202:353,23,25,0,0,0.40264 -30095,1202:354,24,25,0,0,0.399949 -30096,1202:455,25,25,0,0,0.41518 -30097,1202:456,26,25,0,0,0.433247 -30098,1212:350,120,25,0,0,0.188275 -30099,1212:352,122,25,0,0,0.209558 -30100,1212:353,123,25,0,0,0.242814 -30101,1212:354,124,25,0,0,0.306585 -30102,1212:455,125,25,0,0,0.288634 -30103,1212:456,126,25,0,0,0.193591 -30104,1213:350,130,25,0,0,0.382747 -30105,1213:351,131,25,0,0,0.32885 -30106,1213:352,132,25,0,0,0.355716 -30107,1213:353,133,25,0,0,0.328216 -30108,1213:354,134,25,0,0,0.325232 -30109,1213:455,135,25,0,0,0.343523 -30110,1213:456,136,25,0,0,0.320962 -30111,1213:457,137,25,0,0,0.362907 -30112,1213:458,138,25,0,0,0.383524 -30113,1213:459,139,25,0,0,0.384375 -30114,1214:352,142,25,0,0,0.351068 -30115,1214:353,143,25,0,0,0.418477 -30116,1214:354,144,25,0,0,0.410299 -30117,1214:455,145,25,0,0,0.404223 -30118,1214:456,146,25,0,0,0.350109 -30119,1214:457,147,25,0,0,0.358004 -30120,1214:458,148,25,0,0,0.417627 -30121,1214:459,149,25,0,0,0.420679 -30122,1215:350,150,25,0,0,0.418277 -30123,1215:351,151,25,0,0,0.412663 -30124,1215:352,152,25,0,0,0.369775 -30125,1215:353,153,25,0,0,0.353318 -30126,1215:354,154,25,0,0,0.377277 -30127,1215:455,155,25,0,0,0.384229 -30128,1215:456,156,25,0,0,0.361886 -30129,1215:457,157,25,0,0,0.358996 -30130,1215:458,158,25,0,0,0.389444 -30131,1215:459,159,25,0,0,0.406799 -30132,1216:350,160,25,0,0,0.394856 -30133,1216:351,161,25,0,0,0.376432 -30134,1216:352,162,25,0,0,0.38637 -30135,1216:353,163,25,0,0,0.363026 -30136,1216:354,164,25,0,0,0.378436 -30137,1216:455,165,25,0,0,0.352146 -30138,1216:456,166,25,0,0,0.361696 -30139,1216:457,167,25,0,0,0.352826 -30140,1216:458,168,25,0,0,0.342504 -30141,1216:459,169,25,0,0,0.345866 -30142,1217:350,170,25,0,0,0.345169 -30143,1217:351,171,25,0,0,0.338328 -30144,1217:352,172,25,0,0,0.333995 -30145,1217:353,173,25,0,0,0.323363 -30146,1217:354,174,25,0,0,0.312779 -30147,1217:455,175,25,0,0,0.305385 -30148,1217:456,176,25,0,0,0.297102 -30149,1217:457,177,25,0,0,0.292425 -30150,1217:458,178,25,0,0,0.292127 -30151,1217:459,179,25,0,0,0.290049 -30152,1218:350,180,25,0,0,0.278656 -30153,7218:360,-180,26,0,0,0.270126 -30154,7217:469,-179,26,0,0,0.260197 -30155,7217:468,-178,26,0,0,0.264572 -30156,7217:467,-177,26,0,0,0.260138 -30157,7217:466,-176,26,0,0,0.256183 -30158,7217:465,-175,26,0,0,0.252481 -30159,7217:364,-174,26,0,0,0.249487 -30160,7217:363,-173,26,0,0,0.253432 -30161,7217:362,-172,26,0,0,0.255811 -30162,7217:361,-171,26,0,0,0.251281 -30163,7217:360,-170,26,0,0,0.254113 -30164,7216:469,-169,26,0,0,0.264712 -30165,7216:468,-168,26,0,0,0.262041 -30166,7216:467,-167,26,0,0,0.256203 -30167,7216:466,-166,26,0,0,0.253938 -30168,7216:465,-165,26,0,0,0.255205 -30169,7216:364,-164,26,0,0,0.255792 -30170,7216:363,-163,26,0,0,0.264272 -30171,7216:362,-162,26,0,0,0.264552 -30172,7216:361,-161,26,0,0,0.264232 -30173,7216:360,-160,26,0,0,0.265432 -30174,7215:469,-159,26,0,0,0.266234 -30175,7215:468,-158,26,0,0,0.26738 -30176,7215:467,-157,26,0,0,0.269438 -30177,7215:466,-156,26,0,0,0.266837 -30178,7215:465,-155,26,0,0,0.272706 -30179,7215:364,-154,26,0,0,0.279565 -30180,7215:363,-153,26,0,0,0.281515 -30181,7215:362,-152,26,0,0,0.29603 -30182,7215:361,-151,26,0,0,0.289901 -30183,7215:360,-150,26,0,0,0.291511 -30184,7214:469,-149,26,0,0,0.292382 -30185,7214:468,-148,26,0,0,0.291851 -30186,7214:467,-147,26,0,0,0.289605 -30187,7214:466,-146,26,0,0,0.297467 -30188,7214:465,-145,26,0,0,0.30805 -30189,7214:364,-144,26,0,0,0.301865 -30190,7214:363,-143,26,0,0,0.300503 -30191,7214:362,-142,26,0,0,0.300136 -30192,7214:361,-141,26,0,0,0.30206 -30193,7214:360,-140,26,0,0,0.295709 -30194,7213:469,-139,26,0,0,0.305887 -30195,7213:468,-138,26,0,0,0.312668 -30196,7213:467,-137,26,0,0,0.314593 -30197,7213:466,-136,26,0,0,0.309212 -30198,7213:465,-135,26,0,0,0.317836 -30199,7213:364,-134,26,0,0,0.321321 -30200,7213:363,-133,26,0,0,0.325232 -30201,7213:362,-132,26,0,0,0.321814 -30202,7213:361,-131,26,0,0,0.313198 -30203,7213:360,-130,26,0,0,0.31353 -30204,7212:469,-129,26,0,0,0.306475 -30205,7212:468,-128,26,0,0,0.291873 -30206,7212:467,-127,26,0,0,0.287096 -30207,7212:466,-126,26,0,0,0.286067 -30208,7212:465,-125,26,0,0,0.277089 -30209,7212:364,-124,26,0,0,0.264432 -30210,7207:465,-75,26,0,0,0.259466 -30211,7207:364,-74,26,0,0,0.295239 -30212,7207:363,-73,26,0,0,0.354964 -30213,7207:362,-72,26,0,0,0.441818 -30214,7207:361,-71,26,0,0,0.431608 -30215,7207:360,-70,26,0,0,0.436934 -30216,7206:469,-69,26,0,0,0.438249 -30217,7206:468,-68,26,0,0,0.434332 -30218,7206:467,-67,26,0,0,0.486995 -30219,7206:466,-66,26,0,0,0.477964 -30220,7206:465,-65,26,0,0,0.470075 -30221,7206:364,-64,26,0,0,0.465675 -30222,7206:363,-63,26,0,0,0.418352 -30223,7206:362,-62,26,0,0,0.418452 -30224,7206:361,-61,26,0,0,0.456739 -30225,7206:360,-60,26,0,0,0.442199 -30226,7205:469,-59,26,0,0,0.435519 -30227,7205:468,-58,26,0,0,0.431835 -30228,7205:467,-57,26,0,0,0.433196 -30229,7205:466,-56,26,0,0,0.40923 -30230,7205:465,-55,26,0,0,0.416029 -30231,7205:364,-54,26,0,0,0.424966 -30232,7205:363,-53,26,0,0,0.382165 -30233,7205:362,-52,26,0,0,0.42341 -30234,7205:361,-51,26,0,0,0.403802 -30235,7205:360,-50,26,0,0,0.395593 -30236,7204:469,-49,26,0,0,0.392772 -30237,7204:468,-48,26,0,0,0.392551 -30238,7204:467,-47,26,0,0,0.388931 -30239,7204:466,-46,26,0,0,0.381656 -30240,7204:465,-45,26,0,0,0.365167 -30241,7204:364,-44,26,0,0,0.360701 -30242,7204:363,-43,26,0,0,0.376456 -30243,7204:362,-42,26,0,0,0.38859 -30244,7204:361,-41,26,0,0,0.37335 -30245,7204:360,-40,26,0,0,0.380178 -30246,7203:469,-39,26,0,0,0.377325 -30247,7203:468,-38,26,0,0,0.370302 -30248,7203:467,-37,26,0,0,0.373182 -30249,7203:466,-36,26,0,0,0.366668 -30250,7203:465,-35,26,0,0,0.360866 -30251,7203:364,-34,26,0,0,0.359185 -30252,7203:363,-33,26,0,0,0.349478 -30253,7203:362,-32,26,0,0,0.353953 -30254,7203:361,-31,26,0,0,0.354164 -30255,7203:360,-30,26,0,0,0.346797 -30256,7202:469,-29,26,0,0,0.348847 -30257,7202:468,-28,26,0,0,0.342365 -30258,7202:467,-27,26,0,0,0.340725 -30259,7202:466,-26,26,0,0,0.346843 -30260,7202:465,-25,26,0,0,0.347309 -30261,7202:364,-24,26,0,0,0.341648 -30262,7202:363,-23,26,0,0,0.348544 -30263,7202:362,-22,26,0,0,0.342226 -30264,7202:361,-21,26,0,0,0.337248 -30265,7202:360,-20,26,0,0,0.336766 -30266,7201:469,-19,26,0,0,0.346355 -30267,7201:468,-18,26,0,0,0.346401 -30268,7201:467,-17,26,0,0,0.352662 -30269,7201:466,-16,26,0,0,0.352427 -30270,7201:465,-15,26,0,0,0.347961 -30271,7201:364,-14,26,0,0,0.350647 -30272,7201:363,-13,26,0,0,0.35574 -30273,7201:362,-12,26,0,0,0.361696 -30274,7201:361,-11,26,0,0,0.353811 -30275,7201:360,-10,26,0,0,0.32548 -30276,1200:361,0,26,0,0,0.369775 -30277,1200:361,1,26,0,0,0.371141 -30278,1200:362,2,26,0,0,0.375324 -30279,1200:363,3,26,0,0,0.379887 -30280,1200:364,4,26,0,0,0.379742 -30281,1200:465,5,26,0,0,0.381073 -30282,1200:466,6,26,0,0,0.377759 -30283,1200:467,7,26,0,0,0.371549 -30284,1201:360,10,26,0,0,0.367814 -30285,1201:361,11,26,0,0,0.373278 -30286,1201:362,12,26,0,0,0.372653 -30287,1201:363,13,26,0,0,0.369799 -30288,1201:364,14,26,0,0,0.374481 -30289,1201:465,15,26,0,0,0.377952 -30290,1201:467,17,26,0,0,0.392135 -30291,1201:468,18,26,0,0,0.390348 -30292,1201:469,19,26,0,0,0.402319 -30293,1202:360,20,26,0,0,0.419327 -30294,1202:364,24,26,0,0,0.402048 -30295,1202:465,25,26,0,0,0.413161 -30296,1202:466,26,26,0,0,0.426021 -30297,1211:469,119,26,0,0,0.18548 -30298,1212:360,120,26,0,0,0.219301 -30299,1212:361,121,26,0,0,0.246727 -30300,1212:362,122,26,0,0,0.26867 -30301,1212:363,123,26,0,0,0.261406 -30302,1212:364,124,26,0,0,0.254796 -30303,1212:465,125,26,0,0,0.223873 -30304,1212:469,129,26,0,0,0.371621 -30305,1213:360,130,26,0,0,0.326676 -30306,1213:361,131,26,0,0,0.301281 -30307,1213:362,132,26,0,0,0.328102 -30308,1213:363,133,26,0,0,0.335001 -30309,1213:364,134,26,0,0,0.294427 -30310,1213:465,135,26,0,0,0.316545 -30311,1213:466,136,26,0,0,0.275487 -30312,1213:467,137,26,0,0,0.348988 -30313,1213:468,138,26,0,0,0.304035 -30314,1213:469,139,26,0,0,0.371381 -30315,1214:360,140,26,0,0,0.373038 -30316,1214:363,143,26,0,0,0.314659 -30317,1214:364,144,26,0,0,0.40856 -30318,1214:465,145,26,0,0,0.35706 -30319,1214:466,146,26,0,0,0.297467 -30320,1214:467,147,26,0,0,0.283201 -30321,1214:468,148,26,0,0,0.29251 -30322,1214:469,149,26,0,0,0.322285 -30323,1215:360,150,26,0,0,0.326022 -30324,1215:361,151,26,0,0,0.320336 -30325,1215:362,152,26,0,0,0.32168 -30326,1215:363,153,26,0,0,0.311543 -30327,1215:364,154,26,0,0,0.319464 -30328,1215:465,155,26,0,0,0.334132 -30329,1215:466,156,26,0,0,0.323004 -30330,1215:467,157,26,0,0,0.341718 -30331,1215:468,158,26,0,0,0.344334 -30332,1215:469,159,26,0,0,0.372894 -30333,1216:360,160,26,0,0,0.331805 -30334,1216:361,161,26,0,0,0.324691 -30335,1216:362,162,26,0,0,0.364833 -30336,1216:363,163,26,0,0,0.374481 -30337,1216:364,164,26,0,0,0.316567 -30338,1216:465,165,26,0,0,0.343059 -30339,1216:466,166,26,0,0,0.335047 -30340,1216:467,167,26,0,0,0.319867 -30341,1216:468,168,26,0,0,0.317101 -30342,1216:469,169,26,0,0,0.312933 -30343,1217:360,170,26,0,0,0.307306 -30344,1217:361,171,26,0,0,0.31042 -30345,1217:362,172,26,0,0,0.307678 -30346,1217:363,173,26,0,0,0.302364 -30347,1217:364,174,26,0,0,0.285815 -30348,1217:465,175,26,0,0,0.291469 -30349,1217:466,176,26,0,0,0.288613 -30350,1217:467,177,26,0,0,0.28029 -30351,1217:468,178,26,0,0,0.265572 -30352,1217:469,179,26,0,0,0.273992 -30353,1218:360,180,26,0,0,0.270126 -30354,7218:370,-180,27,0,0,0.247568 -30355,7217:479,-179,27,0,0,0.240687 -30356,7217:478,-178,27,0,0,0.240668 -30357,7217:477,-177,27,0,0,0.236172 -30358,7217:476,-176,27,0,0,0.237955 -30359,7217:475,-175,27,0,0,0.236431 -30360,7217:374,-174,27,0,0,0.235376 -30361,7217:373,-173,27,0,0,0.23146 -30362,7217:372,-172,27,0,0,0.233421 -30363,7217:371,-171,27,0,0,0.231514 -30364,7217:370,-170,27,0,0,0.233605 -30365,7216:479,-169,27,0,0,0.235505 -30366,7216:478,-168,27,0,0,0.23062 -30367,7216:477,-167,27,0,0,0.230949 -30368,7216:476,-166,27,0,0,0.236339 -30369,7216:475,-165,27,0,0,0.238814 -30370,7216:374,-164,27,0,0,0.240818 -30371,7216:373,-163,27,0,0,0.24667 -30372,7216:372,-162,27,0,0,0.24968 -30373,7216:371,-161,27,0,0,0.248334 -30374,7216:370,-160,27,0,0,0.247071 -30375,7215:479,-159,27,0,0,0.246593 -30376,7215:478,-158,27,0,0,0.249468 -30377,7215:477,-157,27,0,0,0.254249 -30378,7215:476,-156,27,0,0,0.254834 -30379,7215:475,-155,27,0,0,0.262975 -30380,7215:374,-154,27,0,0,0.264112 -30381,7215:373,-153,27,0,0,0.264252 -30382,7215:372,-152,27,0,0,0.26869 -30383,7215:371,-151,27,0,0,0.266114 -30384,7215:370,-150,27,0,0,0.269256 -30385,7214:479,-149,27,0,0,0.275384 -30386,7214:478,-148,27,0,0,0.275425 -30387,7214:477,-147,27,0,0,0.275938 -30388,7214:476,-146,27,0,0,0.284161 -30389,7214:475,-145,27,0,0,0.284182 -30390,7214:374,-144,27,0,0,0.283702 -30391,7214:373,-143,27,0,0,0.282347 -30392,7214:372,-142,27,0,0,0.282576 -30393,7214:371,-141,27,0,0,0.283827 -30394,7214:370,-140,27,0,0,0.286361 -30395,7213:479,-139,27,0,0,0.292892 -30396,7213:478,-138,27,0,0,0.297424 -30397,7213:477,-137,27,0,0,0.293893 -30398,7213:476,-136,27,0,0,0.29663 -30399,7213:475,-135,27,0,0,0.302321 -30400,7213:374,-134,27,0,0,0.305624 -30401,7213:373,-133,27,0,0,0.310266 -30402,7213:372,-132,27,0,0,0.307503 -30403,7213:371,-131,27,0,0,0.302407 -30404,7213:370,-130,27,0,0,0.293766 -30405,7212:479,-129,27,0,0,0.286718 -30406,7212:478,-128,27,0,0,0.27438 -30407,7212:477,-127,27,0,0,0.276287 -30408,7212:476,-126,27,0,0,0.280477 -30409,7212:475,-125,27,0,0,0.273624 -30410,7212:374,-124,27,0,0,0.255654 -30411,7207:373,-73,27,0,0,0.277769 -30412,7207:372,-72,27,0,0,0.325931 -30413,7207:371,-71,27,0,0,0.355764 -30414,7207:370,-70,27,0,0,0.346215 -30415,7206:479,-69,27,0,0,0.3077 -30416,7206:478,-68,27,0,0,0.404544 -30417,7206:477,-67,27,0,0,0.44481 -30418,7206:476,-66,27,0,0,0.464678 -30419,7206:475,-65,27,0,0,0.433726 -30420,7206:374,-64,27,0,0,0.375443 -30421,7206:373,-63,27,0,0,0.425996 -30422,7206:372,-62,27,0,0,0.424163 -30423,7206:371,-61,27,0,0,0.446257 -30424,7206:370,-60,27,0,0,0.447603 -30425,7205:479,-59,27,0,0,0.405733 -30426,7205:478,-58,27,0,0,0.346099 -30427,7205:477,-57,27,0,0,0.371477 -30428,7205:476,-56,27,0,0,0.423109 -30429,7205:475,-55,27,0,0,0.420428 -30430,7205:374,-54,27,0,0,0.385056 -30431,7205:373,-53,27,0,0,0.372389 -30432,7205:372,-52,27,0,0,0.399974 -30433,7205:371,-51,27,0,0,0.412912 -30434,7205:370,-50,27,0,0,0.413435 -30435,7204:479,-49,27,0,0,0.413261 -30436,7204:478,-48,27,0,0,0.408262 -30437,7204:477,-47,27,0,0,0.404965 -30438,7204:476,-46,27,0,0,0.3892 -30439,7204:475,-45,27,0,0,0.386516 -30440,7204:374,-44,27,0,0,0.355152 -30441,7204:373,-43,27,0,0,0.35156 -30442,7204:372,-42,27,0,0,0.351045 -30443,7204:371,-41,27,0,0,0.37347 -30444,7204:370,-40,27,0,0,0.36324 -30445,7203:479,-39,27,0,0,0.347146 -30446,7203:478,-38,27,0,0,0.377349 -30447,7203:477,-37,27,0,0,0.349338 -30448,7203:476,-36,27,0,0,0.349735 -30449,7203:475,-35,27,0,0,0.359138 -30450,7203:374,-34,27,0,0,0.355058 -30451,7203:373,-33,27,0,0,0.350437 -30452,7203:372,-32,27,0,0,0.341948 -30453,7203:371,-31,27,0,0,0.344984 -30454,7203:370,-30,27,0,0,0.341671 -30455,7202:479,-29,27,0,0,0.337868 -30456,7202:478,-28,27,0,0,0.331645 -30457,7202:477,-27,27,0,0,0.331053 -30458,7202:476,-26,27,0,0,0.333173 -30459,7202:475,-25,27,0,0,0.331736 -30460,7202:374,-24,27,0,0,0.327151 -30461,7202:373,-23,27,0,0,0.330189 -30462,7202:372,-22,27,0,0,0.333355 -30463,7202:371,-21,27,0,0,0.327808 -30464,7202:370,-20,27,0,0,0.325818 -30465,7201:479,-19,27,0,0,0.329984 -30466,7201:478,-18,27,0,0,0.324601 -30467,7201:477,-17,27,0,0,0.331417 -30468,7201:476,-16,27,0,0,0.333287 -30469,7201:475,-15,27,0,0,0.330985 -30470,7201:374,-14,27,0,0,0.33372 -30471,7201:373,-13,27,0,0,0.330189 -30472,7201:372,-12,27,0,0,0.340055 -30473,7201:371,-11,27,0,0,0.343476 -30474,7201:370,-10,27,0,0,0.32103 -30475,1200:371,1,27,0,0,0.360629 -30476,1200:372,2,27,0,0,0.359493 -30477,1200:373,3,27,0,0,0.364738 -30478,1200:374,4,27,0,0,0.36846 -30479,1200:475,5,27,0,0,0.367002 -30480,1200:476,6,27,0,0,0.369608 -30481,1200:477,7,27,0,0,0.362384 -30482,1201:370,10,27,0,0,0.364119 -30483,1201:371,11,27,0,0,0.364928 -30484,1201:372,12,27,0,0,0.365071 -30485,1201:373,13,27,0,0,0.367456 -30486,1201:374,14,27,0,0,0.371213 -30487,1201:475,15,27,0,0,0.374336 -30488,1201:477,17,27,0,0,0.3914 -30489,1201:478,18,27,0,0,0.389762 -30490,1201:479,19,27,0,0,0.410597 -30491,1202:373,23,27,0,0,0.396183 -30492,1202:374,24,27,0,0,0.397782 -30493,1202:475,25,27,0,0,0.423386 -30494,1212:370,120,27,0,0,0.188039 -30495,1212:371,121,27,0,0,0.203214 -30496,1212:372,122,27,0,0,0.178702 -30497,1212:374,124,27,0,0,0.190182 -30498,1212:475,125,27,0,0,0.168605 -30499,1212:479,129,27,0,0,0.319017 -30500,1213:370,130,27,0,0,0.315901 -30501,1213:371,131,27,0,0,0.291384 -30502,1213:372,132,27,0,0,0.314482 -30503,1213:373,133,27,0,0,0.307131 -30504,1213:374,134,27,0,0,0.269397 -30505,1213:475,135,27,0,0,0.285333 -30506,1213:476,136,27,0,0,0.25283 -30507,1213:477,137,27,0,0,0.295624 -30508,1213:478,138,27,0,0,0.303774 -30509,1213:479,139,27,0,0,0.304775 -30510,1214:370,140,27,0,0,0.350764 -30511,1214:373,143,27,0,0,0.29603 -30512,1214:374,144,27,0,0,0.377398 -30513,1214:475,145,27,0,0,0.338374 -30514,1214:476,146,27,0,0,0.327264 -30515,1214:477,147,27,0,0,0.353506 -30516,1214:478,148,27,0,0,0.297639 -30517,1214:479,149,27,0,0,0.311851 -30518,1215:370,150,27,0,0,0.318928 -30519,1215:371,151,27,0,0,0.307525 -30520,1215:372,152,27,0,0,0.310552 -30521,1215:373,153,27,0,0,0.314681 -30522,1215:374,154,27,0,0,0.29479 -30523,1215:475,155,27,0,0,0.284831 -30524,1215:476,156,27,0,0,0.281951 -30525,1215:477,157,27,0,0,0.280373 -30526,1215:478,158,27,0,0,0.284475 -30527,1215:479,159,27,0,0,0.276184 -30528,1216:370,160,27,0,0,0.279214 -30529,1216:371,161,27,0,0,0.275261 -30530,1216:372,162,27,0,0,0.322509 -30531,1216:373,163,27,0,0,0.286361 -30532,1216:374,164,27,0,0,0.281349 -30533,1216:475,165,27,0,0,0.301043 -30534,1216:476,166,27,0,0,0.308247 -30535,1216:477,167,27,0,0,0.283222 -30536,1216:478,168,27,0,0,0.280414 -30537,1216:479,169,27,0,0,0.256516 -30538,1217:370,170,27,0,0,0.280497 -30539,1217:371,171,27,0,0,0.28655 -30540,1217:372,172,27,0,0,0.263853 -30541,1217:373,173,27,0,0,0.261286 -30542,1217:374,174,27,0,0,0.24993 -30543,1217:475,175,27,0,0,0.241947 -30544,1217:476,176,27,0,0,0.25423 -30545,1217:477,177,27,0,0,0.264932 -30546,1217:478,178,27,0,0,0.246689 -30547,1217:479,179,27,0,0,0.251261 -30548,1218:370,180,27,0,0,0.247568 -30549,7218:380,-180,28,0,0,0.220782 -30550,7217:489,-179,28,0,0,0.218685 -30551,7217:488,-178,28,0,0,0.218703 -30552,7217:487,-177,28,0,0,0.217494 -30553,7217:486,-176,28,0,0,0.213017 -30554,7217:485,-175,28,0,0,0.2135 -30555,7217:384,-174,28,0,0,0.215699 -30556,7217:383,-173,28,0,0,0.215264 -30557,7217:382,-172,28,0,0,0.213983 -30558,7217:381,-171,28,0,0,0.215403 -30559,7217:380,-170,28,0,0,0.217967 -30560,7216:489,-169,28,0,0,0.217494 -30561,7216:488,-168,28,0,0,0.216099 -30562,7216:487,-167,28,0,0,0.216743 -30563,7216:486,-166,28,0,0,0.221525 -30564,7216:485,-165,28,0,0,0.223801 -30565,7216:384,-164,28,0,0,0.225251 -30566,7216:383,-163,28,0,0,0.223784 -30567,7216:382,-162,28,0,0,0.223587 -30568,7216:381,-161,28,0,0,0.226904 -30569,7216:380,-160,28,0,0,0.231514 -30570,7215:489,-159,28,0,0,0.237695 -30571,7215:488,-158,28,0,0,0.240274 -30572,7215:487,-157,28,0,0,0.238086 -30573,7215:486,-156,28,0,0,0.238235 -30574,7215:485,-155,28,0,0,0.242852 -30575,7215:384,-154,28,0,0,0.240105 -30576,7215:383,-153,28,0,0,0.244405 -30577,7215:382,-152,28,0,0,0.249429 -30578,7215:381,-151,28,0,0,0.249891 -30579,7215:380,-150,28,0,0,0.253063 -30580,7214:489,-149,28,0,0,0.257634 -30581,7214:488,-148,28,0,0,0.258559 -30582,7214:487,-147,28,0,0,0.258343 -30583,7214:486,-146,28,0,0,0.263912 -30584,7214:485,-145,28,0,0,0.267984 -30585,7214:384,-144,28,0,0,0.265993 -30586,7214:383,-143,28,0,0,0.2621 -30587,7214:382,-142,28,0,0,0.266094 -30588,7214:381,-141,28,0,0,0.269762 -30589,7214:380,-140,28,0,0,0.276143 -30590,7213:489,-139,28,0,0,0.281432 -30591,7213:488,-138,28,0,0,0.285438 -30592,7213:487,-137,28,0,0,0.281993 -30593,7213:486,-136,28,0,0,0.281889 -30594,7213:485,-135,28,0,0,0.284559 -30595,7213:384,-134,28,0,0,0.28798 -30596,7213:383,-133,28,0,0,0.284935 -30597,7213:382,-132,28,0,0,0.284329 -30598,7213:381,-131,28,0,0,0.284349 -30599,7213:380,-130,28,0,0,0.284266 -30600,7212:489,-129,28,0,0,0.28243 -30601,7212:488,-128,28,0,0,0.270045 -30602,7212:487,-127,28,0,0,0.268892 -30603,7212:486,-126,28,0,0,0.265392 -30604,7212:485,-125,28,0,0,0.263354 -30605,7207:380,-70,28,0,0,0.201523 -30606,7206:489,-69,28,0,0,0.233605 -30607,7206:488,-68,28,0,0,0.261802 -30608,7206:487,-67,28,0,0,0.259486 -30609,7206:486,-66,28,0,0,0.274176 -30610,7206:485,-65,28,0,0,0.334956 -30611,7206:384,-64,28,0,0,0.299187 -30612,7206:383,-63,28,0,0,0.377759 -30613,7206:382,-62,28,0,0,0.416103 -30614,7206:381,-61,28,0,0,0.423736 -30615,7206:380,-60,28,0,0,0.407543 -30616,7205:489,-59,28,0,0,0.364738 -30617,7205:488,-58,28,0,0,0.296373 -30618,7205:487,-57,28,0,0,0.307744 -30619,7205:486,-56,28,0,0,0.302863 -30620,7205:485,-55,28,0,0,0.322577 -30621,7205:384,-54,28,0,0,0.283326 -30622,7205:383,-53,28,0,0,0.2321 -30623,7205:382,-52,28,0,0,0.231168 -30624,7205:381,-51,28,0,0,0.266174 -30625,7205:380,-50,28,0,0,0.318036 -30626,7204:489,-49,28,0,0,0.349315 -30627,7204:488,-48,28,0,0,0.375998 -30628,7204:487,-47,28,0,0,0.375275 -30629,7204:486,-46,28,0,0,0.299403 -30630,7204:485,-45,28,0,0,0.264952 -30631,7204:384,-44,28,0,0,0.374577 -30632,7204:383,-43,28,0,0,0.384059 -30633,7204:382,-42,28,0,0,0.380396 -30634,7204:381,-41,28,0,0,0.331622 -30635,7204:380,-40,28,0,0,0.346332 -30636,7203:489,-39,28,0,0,0.349198 -30637,7203:488,-38,28,0,0,0.368962 -30638,7203:487,-37,28,0,0,0.360535 -30639,7203:486,-36,28,0,0,0.362883 -30640,7203:485,-35,28,0,0,0.353624 -30641,7203:384,-34,28,0,0,0.352005 -30642,7203:383,-33,28,0,0,0.340147 -30643,7203:382,-32,28,0,0,0.331167 -30644,7203:381,-31,28,0,0,0.331303 -30645,7203:380,-30,28,0,0,0.332648 -30646,7202:489,-29,28,0,0,0.332238 -30647,7202:488,-28,28,0,0,0.331873 -30648,7202:487,-27,28,0,0,0.326157 -30649,7202:486,-26,28,0,0,0.322509 -30650,7202:485,-25,28,0,0,0.322196 -30651,7202:384,-24,28,0,0,0.32047 -30652,7202:383,-23,28,0,0,0.317346 -30653,7202:382,-22,28,0,0,0.316367 -30654,7202:381,-21,28,0,0,0.310091 -30655,7202:380,-20,28,0,0,0.316278 -30656,7201:489,-19,28,0,0,0.31639 -30657,7201:488,-18,28,0,0,0.310926 -30658,7201:487,-17,28,0,0,0.305494 -30659,7201:486,-16,28,0,0,0.310773 -30660,7201:485,-15,28,0,0,0.313884 -30661,7201:384,-14,28,0,0,0.311697 -30662,7201:383,-13,28,0,0,0.312425 -30663,7201:382,-12,28,0,0,0.31539 -30664,7201:381,-11,28,0,0,0.323701 -30665,7201:380,-10,28,0,0,0.305646 -30666,1200:383,3,28,0,0,0.346541 -30667,1200:384,4,28,0,0,0.348474 -30668,1200:485,5,28,0,0,0.356258 -30669,1200:486,6,28,0,0,0.355928 -30670,1200:487,7,28,0,0,0.35999 -30671,1200:488,8,28,0,0,0.35798 -30672,1200:489,9,28,0,0,0.366836 -30673,1201:380,10,28,0,0,0.364904 -30674,1201:381,11,28,0,0,0.363477 -30675,1201:382,12,28,0,0,0.365381 -30676,1201:487,17,28,0,0,0.364333 -30677,1201:488,18,28,0,0,0.370063 -30678,1202:384,24,28,0,0,0.349805 -30679,1202:485,25,28,0,0,0.339272 -30680,1202:487,27,28,0,0,0.313286 -30681,1202:488,28,28,0,0,0.300006 -30682,1212:382,122,28,0,0,0.158296 -30683,1213:381,131,28,0,0,0.237025 -30684,1213:382,132,28,0,0,0.261544 -30685,1213:383,133,28,0,0,0.242437 -30686,1213:384,134,28,0,0,0.269033 -30687,1213:485,135,28,0,0,0.25351 -30688,1213:486,136,28,0,0,0.240743 -30689,1213:487,137,28,0,0,0.278842 -30690,1213:488,138,28,0,0,0.269377 -30691,1213:489,139,28,0,0,0.254094 -30692,1214:380,140,28,0,0,0.255186 -30693,1214:382,142,28,0,0,0.302602 -30694,1214:383,143,28,0,0,0.283263 -30695,1214:384,144,28,0,0,0.208709 -30696,1214:485,145,28,0,0,0.284308 -30697,1214:486,146,28,0,0,0.325683 -30698,1214:487,147,28,0,0,0.321388 -30699,1214:488,148,28,0,0,0.263354 -30700,1214:489,149,28,0,0,0.293169 -30701,1215:380,150,28,0,0,0.272116 -30702,1215:381,151,28,0,0,0.272666 -30703,1215:382,152,28,0,0,0.253355 -30704,1215:383,153,28,0,0,0.268065 -30705,1215:384,154,28,0,0,0.297918 -30706,1215:485,155,28,0,0,0.290092 -30707,1215:486,156,28,0,0,0.28798 -30708,1215:487,157,28,0,0,0.275609 -30709,1215:488,158,28,0,0,0.268407 -30710,1215:489,159,28,0,0,0.266234 -30711,1216:380,160,28,0,0,0.265452 -30712,1216:381,161,28,0,0,0.246212 -30713,1216:382,162,28,0,0,0.238702 -30714,1216:383,163,28,0,0,0.261029 -30715,1216:384,164,28,0,0,0.248277 -30716,1216:485,165,28,0,0,0.257772 -30717,1216:486,166,28,0,0,0.263873 -30718,1216:487,167,28,0,0,0.25252 -30719,1216:488,168,28,0,0,0.243023 -30720,1216:489,169,28,0,0,0.235394 -30721,1217:380,170,28,0,0,0.23872 -30722,1217:381,171,28,0,0,0.251068 -30723,1217:382,172,28,0,0,0.22389 -30724,1217:383,173,28,0,0,0.218598 -30725,1217:384,174,28,0,0,0.227012 -30726,1217:485,175,28,0,0,0.226004 -30727,1217:486,176,28,0,0,0.221295 -30728,1217:487,177,28,0,0,0.221366 -30729,1217:488,178,28,0,0,0.226922 -30730,1217:489,179,28,0,0,0.22667 -30731,1218:380,180,28,0,0,0.220782 -30732,7218:390,-180,29,0,0,0.209218 -30733,7217:499,-179,29,0,0,0.207777 -30734,7217:498,-178,29,0,0,0.203198 -30735,7217:497,-177,29,0,0,0.204047 -30736,7217:496,-176,29,0,0,0.204364 -30737,7217:495,-175,29,0,0,0.201771 -30738,7217:394,-174,29,0,0,0.201423 -30739,7217:393,-173,29,0,0,0.19999 -30740,7217:392,-172,29,0,0,0.19971 -30741,7217:391,-171,29,0,0,0.20197 -30742,7217:390,-170,29,0,0,0.202815 -30743,7216:499,-169,29,0,0,0.202069 -30744,7216:498,-168,29,0,0,0.203015 -30745,7216:497,-167,29,0,0,0.205369 -30746,7216:496,-166,29,0,0,0.208777 -30747,7216:495,-165,29,0,0,0.212741 -30748,7216:394,-164,29,0,0,0.211539 -30749,7216:393,-163,29,0,0,0.208183 -30750,7216:392,-162,29,0,0,0.209048 -30751,7216:391,-161,29,0,0,0.211762 -30752,7216:390,-160,29,0,0,0.217232 -30753,7215:499,-159,29,0,0,0.222839 -30754,7215:498,-158,29,0,0,0.222075 -30755,7215:497,-157,29,0,0,0.222928 -30756,7215:496,-156,29,0,0,0.225933 -30757,7215:495,-155,29,0,0,0.226778 -30758,7215:394,-154,29,0,0,0.233109 -30759,7215:393,-153,29,0,0,0.233992 -30760,7215:392,-152,29,0,0,0.232907 -30761,7215:391,-151,29,0,0,0.237732 -30762,7215:390,-150,29,0,0,0.234286 -30763,7214:499,-149,29,0,0,0.236079 -30764,7214:498,-148,29,0,0,0.243666 -30765,7214:497,-147,29,0,0,0.244765 -30766,7214:496,-146,29,0,0,0.250643 -30767,7214:495,-145,29,0,0,0.252869 -30768,7214:394,-144,29,0,0,0.253646 -30769,7214:393,-143,29,0,0,0.252209 -30770,7214:392,-142,29,0,0,0.251319 -30771,7214:391,-141,29,0,0,0.254952 -30772,7214:390,-140,29,0,0,0.256477 -30773,7213:499,-139,29,0,0,0.257929 -30774,7213:498,-138,29,0,0,0.264372 -30775,7213:497,-137,29,0,0,0.267621 -30776,7213:496,-136,29,0,0,0.269114 -30777,7213:495,-135,29,0,0,0.267481 -30778,7213:394,-134,29,0,0,0.270856 -30779,7213:393,-133,29,0,0,0.27389 -30780,7213:392,-132,29,0,0,0.272645 -30781,7213:391,-131,29,0,0,0.273502 -30782,7213:390,-130,29,0,0,0.275897 -30783,7212:499,-129,29,0,0,0.270268 -30784,7212:498,-128,29,0,0,0.256065 -30785,7212:497,-127,29,0,0,0.25846 -30786,7212:496,-126,29,0,0,0.260415 -30787,7212:495,-125,29,0,0,0.254074 -30788,7207:390,-70,29,0,0,0.216499 -30789,7206:499,-69,29,0,0,0.216482 -30790,7206:498,-68,29,0,0,0.22398 -30791,7206:497,-67,29,0,0,0.221933 -30792,7206:496,-66,29,0,0,0.233182 -30793,7206:495,-65,29,0,0,0.233973 -30794,7206:394,-64,29,0,0,0.215455 -30795,7206:393,-63,29,0,0,0.217931 -30796,7206:392,-62,29,0,0,0.234194 -30797,7206:391,-61,29,0,0,0.230201 -30798,7206:390,-60,29,0,0,0.218282 -30799,7205:499,-59,29,0,0,0.230985 -30800,7205:498,-58,29,0,0,0.273053 -30801,7205:497,-57,29,0,0,0.279028 -30802,7205:496,-56,29,0,0,0.307328 -30803,7205:495,-55,29,0,0,0.29794 -30804,7205:394,-54,29,0,0,0.204749 -30805,7205:393,-53,29,0,0,0.213206 -30806,7205:392,-52,29,0,0,0.208895 -30807,7205:391,-51,29,0,0,0.186086 -30808,7205:390,-50,29,0,0,0.151228 -30809,7204:499,-49,29,0,0,0.131819 -30810,7204:498,-48,29,0,0,0.345378 -30811,7204:497,-47,29,0,0,0.297016 -30812,7204:496,-46,29,0,0,0.301433 -30813,7204:495,-45,29,0,0,0.247549 -30814,7204:394,-44,29,0,0,0.26738 -30815,7204:393,-43,29,0,0,0.287349 -30816,7204:392,-42,29,0,0,0.294257 -30817,7204:391,-41,29,0,0,0.329735 -30818,7204:390,-40,29,0,0,0.326225 -30819,7203:499,-39,29,0,0,0.320582 -30820,7203:498,-38,29,0,0,0.317368 -30821,7203:497,-37,29,0,0,0.289479 -30822,7203:496,-36,29,0,0,0.31579 -30823,7203:495,-35,29,0,0,0.313265 -30824,7203:394,-34,29,0,0,0.336766 -30825,7203:393,-33,29,0,0,0.317034 -30826,7203:392,-32,29,0,0,0.315812 -30827,7203:391,-31,29,0,0,0.328963 -30828,7203:390,-30,29,0,0,0.331713 -30829,7202:499,-29,29,0,0,0.329735 -30830,7202:498,-28,29,0,0,0.329213 -30831,7202:497,-27,29,0,0,0.322577 -30832,7202:496,-26,29,0,0,0.32038 -30833,7202:495,-25,29,0,0,0.317168 -30834,7202:394,-24,29,0,0,0.312425 -30835,7202:393,-23,29,0,0,0.310992 -30836,7202:392,-22,29,0,0,0.304362 -30837,7202:391,-21,29,0,0,0.30665 -30838,7202:390,-20,29,0,0,0.303383 -30839,7201:499,-19,29,0,0,0.298455 -30840,7201:498,-18,29,0,0,0.300481 -30841,7201:497,-17,29,0,0,0.296416 -30842,7201:496,-16,29,0,0,0.298413 -30843,7201:495,-15,29,0,0,0.300287 -30844,7201:394,-14,29,0,0,0.304188 -30845,7201:393,-13,29,0,0,0.296909 -30846,7201:392,-12,29,0,0,0.298176 -30847,7201:391,-11,29,0,0,0.311367 -30848,7201:390,-10,29,0,0,0.293404 -30849,1200:393,3,29,0,0,0.34218 -30850,1200:394,4,29,0,0,0.336192 -30851,1200:495,5,29,0,0,0.344334 -30852,1200:496,6,29,0,0,0.348474 -30853,1200:497,7,29,0,0,0.352427 -30854,1200:498,8,29,0,0,0.355081 -30855,1200:499,9,29,0,0,0.360961 -30856,1201:390,10,29,0,0,0.360724 -30857,1201:394,14,29,0,0,0.354328 -30858,1201:495,15,29,0,0,0.360866 -30859,1201:496,16,29,0,0,0.371885 -30860,1201:497,17,29,0,0,0.374168 -30861,1201:498,18,29,0,0,0.388077 -30862,1202:498,28,29,0,0,0.281723 -30863,1202:499,29,29,0,0,0.279669 -30864,1203:390,30,29,0,0,0.2788 -30865,1203:498,38,29,0,0,0.287538 -30866,1213:391,131,29,0,0,0.195766 -30867,1213:392,132,29,0,0,0.174119 -30868,1213:393,133,29,0,0,0.181585 -30869,1213:394,134,29,0,0,0.183009 -30870,1213:495,135,29,0,0,0.189361 -30871,1213:496,136,29,0,0,0.196398 -30872,1213:497,137,29,0,0,0.192663 -30873,1213:498,138,29,0,0,0.22491 -30874,1213:499,139,29,0,0,0.237583 -30875,1214:390,140,29,0,0,0.227897 -30876,1214:495,145,29,0,0,0.152671 -30877,1214:496,146,29,0,0,0.147069 -30878,1214:497,147,29,0,0,0.198269 -30879,1214:498,148,29,0,0,0.219635 -30880,1214:499,149,29,0,0,0.292234 -30881,1215:390,150,29,0,0,0.276822 -30882,1215:391,151,29,0,0,0.269579 -30883,1215:392,152,29,0,0,0.161317 -30884,1215:393,153,29,0,0,0.179004 -30885,1215:394,154,29,0,0,0.196625 -30886,1215:495,155,29,0,0,0.203964 -30887,1215:496,156,29,0,0,0.20727 -30888,1215:497,157,29,0,0,0.202982 -30889,1215:498,158,29,0,0,0.212157 -30890,1215:499,159,29,0,0,0.237639 -30891,1216:390,160,29,0,0,0.232999 -30892,1216:391,161,29,0,0,0.226256 -30893,1216:392,162,29,0,0,0.243249 -30894,1216:393,163,29,0,0,0.217897 -30895,1216:394,164,29,0,0,0.223623 -30896,1216:495,165,29,0,0,0.228313 -30897,1216:496,166,29,0,0,0.206444 -30898,1216:497,167,29,0,0,0.201407 -30899,1216:498,168,29,0,0,0.199349 -30900,1216:499,169,29,0,0,0.208742 -30901,1217:390,170,29,0,0,0.204883 -30902,1217:391,171,29,0,0,0.224355 -30903,1217:392,172,29,0,0,0.214363 -30904,1217:393,173,29,0,0,0.204214 -30905,1217:394,174,29,0,0,0.194459 -30906,1217:495,175,29,0,0,0.204833 -30907,1217:496,176,29,0,0,0.215525 -30908,1217:497,177,29,0,0,0.207152 -30909,1217:498,178,29,0,0,0.202268 -30910,1217:499,179,29,0,0,0.205973 -30911,1218:390,180,29,0,0,0.209218 -30912,7318:100,-180,30,0,0,0.184427 -30913,7317:209,-179,30,0,0,0.185884 -30914,7317:208,-178,30,0,0,0.191244 -30915,7317:207,-177,30,0,0,0.191038 -30916,7317:206,-176,30,0,0,0.1922 -30917,7317:205,-175,30,0,0,0.192855 -30918,7317:104,-174,30,0,0,0.190974 -30919,7317:103,-173,30,0,0,0.18955 -30920,7317:102,-172,30,0,0,0.188039 -30921,7317:101,-171,30,0,0,0.187225 -30922,7317:100,-170,30,0,0,0.188668 -30923,7316:209,-169,30,0,0,0.188856 -30924,7316:208,-168,30,0,0,0.189629 -30925,7316:207,-167,30,0,0,0.189093 -30926,7316:206,-166,30,0,0,0.192455 -30927,7316:205,-165,30,0,0,0.200401 -30928,7316:104,-164,30,0,0,0.197747 -30929,7316:103,-163,30,0,0,0.195475 -30930,7316:102,-162,30,0,0,0.19669 -30931,7316:101,-161,30,0,0,0.198286 -30932,7316:100,-160,30,0,0,0.207371 -30933,7315:209,-159,30,0,0,0.209031 -30934,7315:208,-158,30,0,0,0.204281 -30935,7315:207,-157,30,0,0,0.212965 -30936,7315:206,-156,30,0,0,0.212741 -30937,7315:205,-155,30,0,0,0.214709 -30938,7315:104,-154,30,0,0,0.218265 -30939,7315:103,-153,30,0,0,0.215316 -30940,7315:102,-152,30,0,0,0.219072 -30941,7315:101,-151,30,0,0,0.218528 -30942,7315:100,-150,30,0,0,0.2211 -30943,7314:209,-149,30,0,0,0.230894 -30944,7314:208,-148,30,0,0,0.232357 -30945,7314:207,-147,30,0,0,0.23412 -30946,7314:206,-146,30,0,0,0.2379 -30947,7314:205,-145,30,0,0,0.240349 -30948,7314:104,-144,30,0,0,0.239561 -30949,7314:103,-143,30,0,0,0.238272 -30950,7314:102,-142,30,0,0,0.23872 -30951,7314:101,-141,30,0,0,0.240123 -30952,7314:100,-140,30,0,0,0.245964 -30953,7313:209,-139,30,0,0,0.247893 -30954,7313:208,-138,30,0,0,0.259367 -30955,7313:207,-137,30,0,0,0.256124 -30956,7313:206,-136,30,0,0,0.258185 -30957,7313:205,-135,30,0,0,0.25994 -30958,7313:104,-134,30,0,0,0.264692 -30959,7313:103,-133,30,0,0,0.262796 -30960,7313:102,-132,30,0,0,0.259111 -30961,7313:101,-131,30,0,0,0.259447 -30962,7313:100,-130,30,0,0,0.259604 -30963,7312:209,-129,30,0,0,0.252287 -30964,7312:208,-128,30,0,0,0.254952 -30965,7312:207,-127,30,0,0,0.257969 -30966,7312:206,-126,30,0,0,0.247415 -30967,7312:205,-125,30,0,0,0.243798 -30968,7306:209,-69,30,0,0,0.204314 -30969,7306:208,-68,30,0,0,0.202583 -30970,7306:207,-67,30,0,0,0.203514 -30971,7306:206,-66,30,0,0,0.211556 -30972,7306:104,-64,30,0,0,0.204816 -30973,7306:103,-63,30,0,0,0.196365 -30974,7306:102,-62,30,0,0,0.190848 -30975,7306:101,-61,30,0,0,0.196219 -30976,7306:100,-60,30,0,0,0.19169 -30977,7305:209,-59,30,0,0,0.181815 -30978,7305:208,-58,30,0,0,0.16274 -30979,7305:207,-57,30,0,0,0.161415 -30980,7305:206,-56,30,0,0,0.201589 -30981,7305:205,-55,30,0,0,0.18966 -30982,7305:104,-54,30,0,0,0.165049 -30983,7305:103,-53,30,0,0,0.178611 -30984,7305:102,-52,30,0,0,0.170007 -30985,7305:101,-51,30,0,0,0.159257 -30986,7305:100,-50,30,0,0,0.150583 -30987,7304:209,-49,30,0,0,0.127426 -30988,7304:208,-48,30,0,0,0.151294 -30989,7304:207,-47,30,0,0,0.324083 -30990,7304:206,-46,30,0,0,0.311037 -30991,7304:205,-45,30,0,0,0.212243 -30992,7304:104,-44,30,0,0,0.276616 -30993,7304:103,-43,30,0,0,0.271993 -30994,7304:102,-42,30,0,0,0.291448 -30995,7304:101,-41,30,0,0,0.301195 -30996,7304:100,-40,30,0,0,0.253899 -30997,7303:209,-39,30,0,0,0.275589 -30998,7303:208,-38,30,0,0,0.274933 -30999,7303:207,-37,30,0,0,0.273481 -31000,7303:206,-36,30,0,0,0.293276 -31001,7303:205,-35,30,0,0,0.330621 -31002,7303:104,-34,30,0,0,0.329303 -31003,7303:103,-33,30,0,0,0.297402 -31004,7303:102,-32,30,0,0,0.29633 -31005,7303:101,-31,30,0,0,0.310442 -31006,7303:100,-30,30,0,0,0.318839 -31007,7302:209,-29,30,0,0,0.328306 -31008,7302:208,-28,30,0,0,0.324511 -31009,7302:207,-27,30,0,0,0.312183 -31010,7302:206,-26,30,0,0,0.308181 -31011,7302:205,-25,30,0,0,0.309454 -31012,7302:104,-24,30,0,0,0.307437 -31013,7302:103,-23,30,0,0,0.303774 -31014,7302:102,-22,30,0,0,0.299381 -31015,7302:101,-21,30,0,0,0.298047 -31016,7302:100,-20,30,0,0,0.295495 -31017,7301:209,-19,30,0,0,0.292191 -31018,7301:208,-18,30,0,0,0.294534 -31019,7301:207,-17,30,0,0,0.290769 -31020,7301:206,-16,30,0,0,0.291915 -31021,7301:205,-15,30,0,0,0.290748 -31022,7301:104,-14,30,0,0,0.293382 -31023,7301:103,-13,30,0,0,0.290621 -31024,7301:102,-12,30,0,0,0.290176 -31025,7301:101,-11,30,0,0,0.287665 -31026,7301:100,-10,30,0,0,0.287622 -31027,7300:209,-9,30,0,0,0.28988 -31028,7300:208,-8,30,0,0,0.293042 -31029,7300:207,-7,30,0,0,0.294769 -31030,7300:206,-6,30,0,0,0.295923 -31031,7300:205,-5,30,0,0,0.295303 -31032,7300:104,-4,30,0,0,0.297123 -31033,7300:103,-3,30,0,0,0.298714 -31034,1300:207,7,30,0,0,0.350179 -31035,1300:208,8,30,0,0,0.349525 -31036,1300:209,9,30,0,0,0.35487 -31037,1301:103,13,30,0,0,0.319286 -31038,1301:104,14,30,0,0,0.368675 -31039,1301:205,15,30,0,0,0.374649 -31040,1301:206,16,30,0,0,0.320045 -31041,1302:207,27,30,0,0,0.281245 -31042,1302:208,28,30,0,0,0.267944 -31043,1302:209,29,30,0,0,0.26738 -31044,1303:100,30,30,0,0,0.270876 -31045,1303:101,31,30,0,0,0.273216 -31046,1303:102,32,30,0,0,0.282118 -31047,1303:103,33,30,0,0,0.285878 -31048,1303:104,34,30,0,0,0.286298 -31049,1303:205,35,30,0,0,0.284663 -31050,1303:206,36,30,0,0,0.27604 -31051,1303:207,37,30,0,0,0.261227 -31052,1303:208,38,30,0,0,0.263095 -31053,1303:209,39,30,0,0,0.275302 -31054,1304:100,40,30,0,0,0.288107 -31055,1313:206,136,30,0,0,0.168001 -31056,1313:207,137,30,0,0,0.181173 -31057,1313:208,138,30,0,0,0.219565 -31058,1313:209,139,30,0,0,0.233605 -31059,1314:100,140,30,0,0,0.203264 -31060,1314:101,141,30,0,0,0.201126 -31061,1314:102,142,30,0,0,0.199776 -31062,1314:206,146,30,0,0,0.156294 -31063,1314:207,147,30,0,0,0.147043 -31064,1314:208,148,30,0,0,0.139109 -31065,1314:209,149,30,0,0,0.142138 -31066,1315:100,150,30,0,0,0.141114 -31067,1315:101,151,30,0,0,0.137322 -31068,1315:102,152,30,0,0,0.146683 -31069,1315:103,153,30,0,0,0.152618 -31070,1315:104,154,30,0,0,0.14658 -31071,1315:205,155,30,0,0,0.150622 -31072,1315:206,156,30,0,0,0.188904 -31073,1315:207,157,30,0,0,0.188668 -31074,1315:208,158,30,0,0,0.179866 -31075,1315:209,159,30,0,0,0.175008 -31076,1316:100,160,30,0,0,0.184427 -31077,1316:101,161,30,0,0,0.23135 -31078,1316:102,162,30,0,0,0.215751 -31079,1316:103,163,30,0,0,0.208793 -31080,1316:104,164,30,0,0,0.200796 -31081,1316:205,165,30,0,0,0.196414 -31082,1316:206,166,30,0,0,0.194943 -31083,1316:207,167,30,0,0,0.186258 -31084,1316:208,168,30,0,0,0.192519 -31085,1316:209,169,30,0,0,0.189156 -31086,1317:100,170,30,0,0,0.177559 -31087,1317:101,171,30,0,0,0.18435 -31088,1317:102,172,30,0,0,0.205234 -31089,1317:103,173,30,0,0,0.196171 -31090,1317:104,174,30,0,0,0.175171 -31091,1317:205,175,30,0,0,0.183517 -31092,1317:206,176,30,0,0,0.189929 -31093,1317:207,177,30,0,0,0.19004 -31094,1317:208,178,30,0,0,0.187366 -31095,1317:209,179,30,0,0,0.188196 -31096,1318:100,180,30,0,0,0.184427 -31097,7318:110,-180,31,0,0,0.169023 -31098,7317:219,-179,31,0,0,0.17066 -31099,7317:218,-178,31,0,0,0.177244 -31100,7317:217,-177,31,0,0,0.176108 -31101,7317:216,-176,31,0,0,0.177289 -31102,7317:215,-175,31,0,0,0.182059 -31103,7317:114,-174,31,0,0,0.177529 -31104,7317:113,-173,31,0,0,0.176944 -31105,7317:112,-172,31,0,0,0.179412 -31106,7317:111,-171,31,0,0,0.177334 -31107,7317:110,-170,31,0,0,0.176795 -31108,7316:219,-169,31,0,0,0.178702 -31109,7316:218,-168,31,0,0,0.181219 -31110,7316:217,-167,31,0,0,0.182136 -31111,7316:216,-166,31,0,0,0.183271 -31112,7316:215,-165,31,0,0,0.184628 -31113,7316:114,-164,31,0,0,0.1871 -31114,7316:113,-163,31,0,0,0.188447 -31115,7316:112,-162,31,0,0,0.189471 -31116,7316:111,-161,31,0,0,0.189266 -31117,7316:110,-160,31,0,0,0.19177 -31118,7315:219,-159,31,0,0,0.191372 -31119,7315:218,-158,31,0,0,0.189597 -31120,7315:217,-157,31,0,0,0.198204 -31121,7315:216,-156,31,0,0,0.200467 -31122,7315:215,-155,31,0,0,0.195265 -31123,7315:114,-154,31,0,0,0.194943 -31124,7315:113,-153,31,0,0,0.196625 -31125,7315:112,-152,31,0,0,0.202965 -31126,7315:111,-151,31,0,0,0.209439 -31127,7315:110,-150,31,0,0,0.209184 -31128,7314:219,-149,31,0,0,0.213017 -31129,7314:218,-148,31,0,0,0.218335 -31130,7314:217,-147,31,0,0,0.221702 -31131,7314:216,-146,31,0,0,0.22275 -31132,7314:215,-145,31,0,0,0.222359 -31133,7314:114,-144,31,0,0,0.227662 -31134,7314:113,-143,31,0,0,0.226742 -31135,7314:112,-142,31,0,0,0.227103 -31136,7314:111,-141,31,0,0,0.234157 -31137,7314:110,-140,31,0,0,0.235542 -31138,7313:219,-139,31,0,0,0.233826 -31139,7313:218,-138,31,0,0,0.242267 -31140,7313:217,-137,31,0,0,0.244823 -31141,7313:216,-136,31,0,0,0.2502 -31142,7313:215,-135,31,0,0,0.250392 -31143,7313:114,-134,31,0,0,0.250778 -31144,7313:113,-133,31,0,0,0.248488 -31145,7313:112,-132,31,0,0,0.250045 -31146,7313:111,-131,31,0,0,0.251648 -31147,7313:110,-130,31,0,0,0.249103 -31148,7312:219,-129,31,0,0,0.245374 -31149,7312:218,-128,31,0,0,0.249949 -31150,7312:217,-127,31,0,0,0.249218 -31151,7312:216,-126,31,0,0,0.247262 -31152,7312:215,-125,31,0,0,0.242116 -31153,7306:216,-66,31,0,0,0.2025 -31154,7306:112,-62,31,0,0,0.173279 -31155,7306:111,-61,31,0,0,0.1719 -31156,7306:110,-60,31,0,0,0.163259 -31157,7305:219,-59,31,0,0,0.161874 -31158,7305:218,-58,31,0,0,0.152857 -31159,7305:217,-57,31,0,0,0.146529 -31160,7305:216,-56,31,0,0,0.142063 -31161,7305:215,-55,31,0,0,0.133605 -31162,7305:114,-54,31,0,0,0.144472 -31163,7305:113,-53,31,0,0,0.142741 -31164,7305:112,-52,31,0,0,0.143005 -31165,7305:111,-51,31,0,0,0.143459 -31166,7305:110,-50,31,0,0,0.135748 -31167,7304:219,-49,31,0,0,0.129149 -31168,7304:218,-48,31,0,0,0.128988 -31169,7304:217,-47,31,0,0,0.200681 -31170,7304:216,-46,31,0,0,0.2025 -31171,7304:215,-45,31,0,0,0.237974 -31172,7304:114,-44,31,0,0,0.255303 -31173,7304:113,-43,31,0,0,0.251667 -31174,7304:112,-42,31,0,0,0.251899 -31175,7304:111,-41,31,0,0,0.249391 -31176,7304:110,-40,31,0,0,0.232705 -31177,7303:219,-39,31,0,0,0.260177 -31178,7303:218,-38,31,0,0,0.274422 -31179,7303:217,-37,31,0,0,0.268549 -31180,7303:216,-36,31,0,0,0.275118 -31181,7303:215,-35,31,0,0,0.294448 -31182,7303:114,-34,31,0,0,0.306716 -31183,7303:113,-33,31,0,0,0.275897 -31184,7303:112,-32,31,0,0,0.289267 -31185,7303:111,-31,31,0,0,0.281266 -31186,7303:110,-30,31,0,0,0.291066 -31187,7302:219,-29,31,0,0,0.323611 -31188,7302:218,-28,31,0,0,0.325007 -31189,7302:217,-27,31,0,0,0.315834 -31190,7302:216,-26,31,0,0,0.315479 -31191,7302:215,-25,31,0,0,0.315945 -31192,7302:114,-24,31,0,0,0.31042 -31193,7302:113,-23,31,0,0,0.306279 -31194,7302:112,-22,31,0,0,0.299532 -31195,7302:111,-21,31,0,0,0.29736 -31196,7302:110,-20,31,0,0,0.290155 -31197,7301:219,-19,31,0,0,0.286424 -31198,7301:218,-18,31,0,0,0.284141 -31199,7301:217,-17,31,0,0,0.284768 -31200,7301:216,-16,31,0,0,0.283451 -31201,7301:215,-15,31,0,0,0.284287 -31202,7301:114,-14,31,0,0,0.285815 -31203,7301:113,-13,31,0,0,0.281411 -31204,7301:112,-12,31,0,0,0.282139 -31205,7301:111,-11,31,0,0,0.285229 -31206,7301:110,-10,31,0,0,0.282201 -31207,7300:219,-9,31,0,0,0.281806 -31208,7300:218,-8,31,0,0,0.280394 -31209,7300:217,-7,31,0,0,0.283702 -31210,7300:216,-6,31,0,0,0.28437 -31211,7300:215,-5,31,0,0,0.288212 -31212,7300:114,-4,31,0,0,0.287054 -31213,7300:113,-3,31,0,0,0.293915 -31214,7300:112,-2,31,0,0,0.27049 -31215,1301:112,12,31,0,0,0.324421 -31216,1301:113,13,31,0,0,0.348825 -31217,1301:114,14,31,0,0,0.326405 -31218,1302:218,28,31,0,0,0.27236 -31219,1302:219,29,31,0,0,0.266696 -31220,1303:110,30,31,0,0,0.270247 -31221,1303:111,31,31,0,0,0.273624 -31222,1303:112,32,31,0,0,0.275466 -31223,1303:113,33,31,0,0,0.281058 -31224,1303:114,34,31,0,0,0.277089 -31225,1303:215,35,31,0,0,0.262458 -31226,1303:216,36,31,0,0,0.258303 -31227,1303:217,37,31,0,0,0.264792 -31228,1303:218,38,31,0,0,0.267903 -31229,1303:219,39,31,0,0,0.28166 -31230,1304:110,40,31,0,0,0.291108 -31231,1313:218,138,31,0,0,0.173574 -31232,1313:219,139,31,0,0,0.185124 -31233,1314:110,140,31,0,0,0.184551 -31234,1314:111,141,31,0,0,0.181371 -31235,1314:112,142,31,0,0,0.195055 -31236,1314:114,144,31,0,0,0.126016 -31237,1314:215,145,31,0,0,0.110916 -31238,1314:216,146,31,0,0,0.136351 -31239,1314:217,147,31,0,0,0.132207 -31240,1314:218,148,31,0,0,0.1337 -31241,1314:219,149,31,0,0,0.149561 -31242,1315:110,150,31,0,0,0.141838 -31243,1315:111,151,31,0,0,0.134248 -31244,1315:112,152,31,0,0,0.135808 -31245,1315:113,153,31,0,0,0.145913 -31246,1315:114,154,31,0,0,0.151518 -31247,1315:215,155,31,0,0,0.138287 -31248,1315:216,156,31,0,0,0.138655 -31249,1315:217,157,31,0,0,0.169891 -31250,1315:218,158,31,0,0,0.150294 -31251,1315:219,159,31,0,0,0.141676 -31252,1316:110,160,31,0,0,0.14413 -31253,1316:111,161,31,0,0,0.151347 -31254,1316:112,162,31,0,0,0.220729 -31255,1316:113,163,31,0,0,0.213189 -31256,1316:114,164,31,0,0,0.178747 -31257,1316:215,165,31,0,0,0.169587 -31258,1316:216,166,31,0,0,0.183809 -31259,1316:217,167,31,0,0,0.174608 -31260,1316:218,168,31,0,0,0.165716 -31261,1316:219,169,31,0,0,0.180382 -31262,1317:110,170,31,0,0,0.169572 -31263,1317:111,171,31,0,0,0.171053 -31264,1317:112,172,31,0,0,0.177589 -31265,1317:113,173,31,0,0,0.166969 -31266,1317:114,174,31,0,0,0.166299 -31267,1317:215,175,31,0,0,0.172354 -31268,1317:216,176,31,0,0,0.173323 -31269,1317:217,177,31,0,0,0.171491 -31270,1317:218,178,31,0,0,0.169616 -31271,1317:219,179,31,0,0,0.172809 -31272,1318:110,180,31,0,0,0.169023 -31273,7318:120,-180,32,0,0,0.16079 -31274,7317:229,-179,32,0,0,0.163779 -31275,7317:228,-178,32,0,0,0.166399 -31276,7317:227,-177,32,0,0,0.160748 -31277,7317:226,-176,32,0,0,0.162685 -31278,7317:225,-175,32,0,0,0.169442 -31279,7317:124,-174,32,0,0,0.169269 -31280,7317:123,-173,32,0,0,0.169891 -31281,7317:122,-172,32,0,0,0.170108 -31282,7317:121,-171,32,0,0,0.16849 -31283,7317:120,-170,32,0,0,0.171301 -31284,7316:229,-169,32,0,0,0.170849 -31285,7316:228,-168,32,0,0,0.173191 -31286,7316:227,-167,32,0,0,0.174874 -31287,7316:226,-166,32,0,0,0.174445 -31288,7316:225,-165,32,0,0,0.175379 -31289,7316:124,-164,32,0,0,0.178235 -31290,7316:123,-163,32,0,0,0.180382 -31291,7316:122,-162,32,0,0,0.181112 -31292,7316:121,-161,32,0,0,0.181188 -31293,7316:120,-160,32,0,0,0.180747 -31294,7315:229,-159,32,0,0,0.181952 -31295,7315:228,-158,32,0,0,0.181982 -31296,7315:227,-157,32,0,0,0.182028 -31297,7315:226,-156,32,0,0,0.181967 -31298,7315:225,-155,32,0,0,0.183625 -31299,7315:124,-154,32,0,0,0.186881 -31300,7315:123,-153,32,0,0,0.189455 -31301,7315:122,-152,32,0,0,0.192967 -31302,7315:121,-151,32,0,0,0.199054 -31303,7315:120,-150,32,0,0,0.20045 -31304,7314:229,-149,32,0,0,0.202367 -31305,7314:228,-148,32,0,0,0.206494 -31306,7314:227,-147,32,0,0,0.209882 -31307,7314:226,-146,32,0,0,0.212328 -31308,7314:225,-145,32,0,0,0.209388 -31309,7314:124,-144,32,0,0,0.216151 -31310,7314:123,-143,32,0,0,0.220252 -31311,7314:122,-142,32,0,0,0.216064 -31312,7314:121,-141,32,0,0,0.226238 -31313,7314:120,-140,32,0,0,0.224141 -31314,7313:229,-139,32,0,0,0.221685 -31315,7313:228,-138,32,0,0,0.228693 -31316,7313:227,-137,32,0,0,0.229837 -31317,7313:226,-136,32,0,0,0.239992 -31318,7313:225,-135,32,0,0,0.244329 -31319,7313:124,-134,32,0,0,0.239543 -31320,7313:123,-133,32,0,0,0.240931 -31321,7313:122,-132,32,0,0,0.244975 -31322,7313:121,-131,32,0,0,0.246498 -31323,7313:120,-130,32,0,0,0.244063 -31324,7312:229,-129,32,0,0,0.240461 -31325,7312:228,-128,32,0,0,0.241194 -31326,7312:227,-127,32,0,0,0.235986 -31327,7312:226,-126,32,0,0,0.23831 -31328,7312:225,-125,32,0,0,0.23803 -31329,7306:122,-62,32,0,0,0.134152 -31330,7306:121,-61,32,0,0,0.144447 -31331,7305:229,-59,32,0,0,0.147935 -31332,7305:228,-58,32,0,0,0.142678 -31333,7305:227,-57,32,0,0,0.140617 -31334,7305:226,-56,32,0,0,0.139011 -31335,7305:225,-55,32,0,0,0.13115 -31336,7305:124,-54,32,0,0,0.125384 -31337,7305:123,-53,32,0,0,0.117515 -31338,7305:122,-52,32,0,0,0.120444 -31339,7305:121,-51,32,0,0,0.130589 -31340,7305:120,-50,32,0,0,0.124474 -31341,7304:229,-49,32,0,0,0.129161 -31342,7304:228,-48,32,0,0,0.120728 -31343,7304:227,-47,32,0,0,0.125779 -31344,7304:226,-46,32,0,0,0.165432 -31345,7304:225,-45,32,0,0,0.165475 -31346,7304:124,-44,32,0,0,0.164795 -31347,7304:123,-43,32,0,0,0.200022 -31348,7304:122,-42,32,0,0,0.243779 -31349,7304:121,-41,32,0,0,0.241551 -31350,7304:120,-40,32,0,0,0.234231 -31351,7303:229,-39,32,0,0,0.256496 -31352,7303:228,-38,32,0,0,0.277089 -31353,7303:227,-37,32,0,0,0.276164 -31354,7303:226,-36,32,0,0,0.258047 -31355,7303:225,-35,32,0,0,0.271628 -31356,7303:124,-34,32,0,0,0.256594 -31357,7303:123,-33,32,0,0,0.248354 -31358,7303:122,-32,32,0,0,0.242984 -31359,7303:121,-31,32,0,0,0.284057 -31360,7303:120,-30,32,0,0,0.288149 -31361,7302:229,-29,32,0,0,0.314747 -31362,7302:228,-28,32,0,0,0.320157 -31363,7302:227,-27,32,0,0,0.310332 -31364,7302:226,-26,32,0,0,0.296009 -31365,7302:225,-25,32,0,0,0.291172 -31366,7302:124,-24,32,0,0,0.300072 -31367,7302:123,-23,32,0,0,0.299619 -31368,7302:122,-22,32,0,0,0.300547 -31369,7302:121,-21,32,0,0,0.292872 -31370,7302:120,-20,32,0,0,0.296266 -31371,7301:229,-19,32,0,0,0.292659 -31372,7301:228,-18,32,0,0,0.280539 -31373,7301:227,-17,32,0,0,0.276637 -31374,7301:226,-16,32,0,0,0.276431 -31375,7301:225,-15,32,0,0,0.278697 -31376,7301:124,-14,32,0,0,0.279545 -31377,7301:123,-13,32,0,0,0.275323 -31378,7301:122,-12,32,0,0,0.272645 -31379,7301:121,-11,32,0,0,0.273297 -31380,7301:120,-10,32,0,0,0.271729 -31381,7300:229,-9,32,0,0,0.272686 -31382,7300:228,-8,32,0,0,0.273665 -31383,7300:227,-7,32,0,0,0.273767 -31384,7300:226,-6,32,0,0,0.279193 -31385,7300:225,-5,32,0,0,0.278367 -31386,7300:124,-4,32,0,0,0.282909 -31387,7300:123,-3,32,0,0,0.28243 -31388,7300:122,-2,32,0,0,0.236487 -31389,1301:122,12,32,0,0,0.313861 -31390,1302:228,28,32,0,0,0.279358 -31391,1302:229,29,32,0,0,0.265032 -31392,1303:120,30,32,0,0,0.265112 -31393,1303:121,31,32,0,0,0.266998 -31394,1303:122,32,32,0,0,0.265893 -31395,1303:123,33,32,0,0,0.263773 -31396,1303:124,34,32,0,0,0.257222 -31397,1303:225,35,32,0,0,0.25501 -31398,1303:226,36,32,0,0,0.263573 -31399,1303:227,37,32,0,0,0.272218 -31400,1303:228,38,32,0,0,0.280145 -31401,1303:229,39,32,0,0,0.285312 -31402,1313:229,139,32,0,0,0.153551 -31403,1314:120,140,32,0,0,0.167155 -31404,1314:121,141,32,0,0,0.173 -31405,1314:122,142,32,0,0,0.181616 -31406,1314:123,143,32,0,0,0.122054 -31407,1314:124,144,32,0,0,0.112209 -31408,1314:225,145,32,0,0,0.107439 -31409,1314:226,146,32,0,0,0.13383 -31410,1314:227,147,32,0,0,0.139343 -31411,1314:228,148,32,0,0,0.143396 -31412,1314:229,149,32,0,0,0.142389 -31413,1315:120,150,32,0,0,0.142264 -31414,1315:121,151,32,0,0,0.145798 -31415,1315:122,152,32,0,0,0.135507 -31416,1315:123,153,32,0,0,0.128699 -31417,1315:124,154,32,0,0,0.136436 -31418,1315:225,155,32,0,0,0.14535 -31419,1315:226,156,32,0,0,0.132077 -31420,1315:227,157,32,0,0,0.132597 -31421,1315:228,158,32,0,0,0.141052 -31422,1315:229,159,32,0,0,0.142427 -31423,1316:120,160,32,0,0,0.138483 -31424,1316:121,161,32,0,0,0.13517 -31425,1316:122,162,32,0,0,0.143585 -31426,1316:123,163,32,0,0,0.153377 -31427,1316:124,164,32,0,0,0.149391 -31428,1316:225,165,32,0,0,0.154971 -31429,1316:226,166,32,0,0,0.168576 -31430,1316:227,167,32,0,0,0.14743 -31431,1316:228,168,32,0,0,0.143257 -31432,1316:229,169,32,0,0,0.150807 -31433,1317:120,170,32,0,0,0.157014 -31434,1317:121,171,32,0,0,0.154998 -31435,1317:122,172,32,0,0,0.152206 -31436,1317:123,173,32,0,0,0.150636 -31437,1317:124,174,32,0,0,0.154019 -31438,1317:225,175,32,0,0,0.156132 -31439,1317:226,176,32,0,0,0.154675 -31440,1317:227,177,32,0,0,0.157231 -31441,1317:228,178,32,0,0,0.159367 -31442,1317:229,179,32,0,0,0.160707 -31443,1318:120,180,32,0,0,0.16079 -31444,7318:130,-180,33,0,0,0.151281 -31445,7317:239,-179,33,0,0,0.154072 -31446,7317:238,-178,33,0,0,0.156416 -31447,7317:237,-177,33,0,0,0.154099 -31448,7317:236,-176,33,0,0,0.153684 -31449,7317:235,-175,33,0,0,0.153177 -31450,7317:134,-174,33,0,0,0.155066 -31451,7317:133,-173,33,0,0,0.159988 -31452,7317:132,-172,33,0,0,0.161234 -31453,7317:131,-171,33,0,0,0.161262 -31454,7317:130,-170,33,0,0,0.161944 -31455,7316:239,-169,33,0,0,0.161763 -31456,7316:238,-168,33,0,0,0.164385 -31457,7316:237,-167,33,0,0,0.167456 -31458,7316:236,-166,33,0,0,0.16826 -31459,7316:235,-165,33,0,0,0.168303 -31460,7316:134,-164,33,0,0,0.16885 -31461,7316:133,-163,33,0,0,0.17209 -31462,7316:132,-162,33,0,0,0.174726 -31463,7316:131,-161,33,0,0,0.172486 -31464,7316:130,-160,33,0,0,0.171272 -31465,7315:239,-159,33,0,0,0.175468 -31466,7315:238,-158,33,0,0,0.174534 -31467,7315:237,-157,33,0,0,0.173308 -31468,7315:236,-156,33,0,0,0.178913 -31469,7315:235,-155,33,0,0,0.182304 -31470,7315:134,-154,33,0,0,0.184907 -31471,7315:133,-153,33,0,0,0.185542 -31472,7315:132,-152,33,0,0,0.188526 -31473,7315:131,-151,33,0,0,0.192104 -31474,7315:130,-150,33,0,0,0.193848 -31475,7314:239,-149,33,0,0,0.19708 -31476,7314:238,-148,33,0,0,0.198139 -31477,7314:237,-147,33,0,0,0.19953 -31478,7314:236,-146,33,0,0,0.20022 -31479,7314:235,-145,33,0,0,0.201258 -31480,7314:134,-144,33,0,0,0.205352 -31481,7314:133,-143,33,0,0,0.207371 -31482,7314:132,-142,33,0,0,0.206831 -31483,7314:131,-141,33,0,0,0.213396 -31484,7314:130,-140,33,0,0,0.215542 -31485,7313:239,-139,33,0,0,0.217477 -31486,7313:238,-138,33,0,0,0.220234 -31487,7313:237,-137,33,0,0,0.222413 -31488,7313:236,-136,33,0,0,0.229892 -31489,7313:235,-135,33,0,0,0.230328 -31490,7313:134,-134,33,0,0,0.228802 -31491,7313:133,-133,33,0,0,0.233532 -31492,7313:132,-132,33,0,0,0.237007 -31493,7313:131,-131,33,0,0,0.237806 -31494,7313:130,-130,33,0,0,0.236672 -31495,7312:239,-129,33,0,0,0.235172 -31496,7312:238,-128,33,0,0,0.229892 -31497,7312:237,-127,33,0,0,0.227879 -31498,7312:236,-126,33,0,0,0.233771 -31499,7312:235,-125,33,0,0,0.234858 -31500,7306:134,-64,33,0,0,0.136872 -31501,7306:133,-63,33,0,0,0.151228 -31502,7306:132,-62,33,0,0,0.166299 -31503,7306:131,-61,33,0,0,0.158735 -31504,7305:239,-59,33,0,0,0.137493 -31505,7305:238,-58,33,0,0,0.14022 -31506,7305:237,-57,33,0,0,0.140629 -31507,7305:236,-56,33,0,0,0.136509 -31508,7305:235,-55,33,0,0,0.137359 -31509,7305:134,-54,33,0,0,0.131232 -31510,7305:132,-52,33,0,0,0.110098 -31511,7305:131,-51,33,0,0,0.112825 -31512,7305:130,-50,33,0,0,0.115884 -31513,7304:239,-49,33,0,0,0.116994 -31514,7304:238,-48,33,0,0,0.114909 -31515,7304:237,-47,33,0,0,0.123748 -31516,7304:236,-46,33,0,0,0.140753 -31517,7304:235,-45,33,0,0,0.145977 -31518,7304:134,-44,33,0,0,0.143674 -31519,7304:133,-43,33,0,0,0.170704 -31520,7304:132,-42,33,0,0,0.19512 -31521,7304:131,-41,33,0,0,0.207202 -31522,7304:130,-40,33,0,0,0.230128 -31523,7303:239,-39,33,0,0,0.233789 -31524,7303:238,-38,33,0,0,0.208844 -31525,7303:237,-37,33,0,0,0.215994 -31526,7303:236,-36,33,0,0,0.222022 -31527,7303:235,-35,33,0,0,0.231899 -31528,7303:134,-34,33,0,0,0.235672 -31529,7303:133,-33,33,0,0,0.229782 -31530,7303:132,-32,33,0,0,0.249487 -31531,7303:131,-31,33,0,0,0.249833 -31532,7303:130,-30,33,0,0,0.262458 -31533,7302:239,-29,33,0,0,0.300287 -31534,7302:238,-28,33,0,0,0.295517 -31535,7302:237,-27,33,0,0,0.288697 -31536,7302:236,-26,33,0,0,0.28836 -31537,7302:235,-25,33,0,0,0.280062 -31538,7302:134,-24,33,0,0,0.279462 -31539,7302:133,-23,33,0,0,0.292807 -31540,7302:132,-22,33,0,0,0.294491 -31541,7302:131,-21,33,0,0,0.285249 -31542,7302:130,-20,33,0,0,0.286193 -31543,7301:239,-19,33,0,0,0.288971 -31544,7301:238,-18,33,0,0,0.274749 -31545,7301:237,-17,33,0,0,0.274033 -31546,7301:236,-16,33,0,0,0.270917 -31547,7301:235,-15,33,0,0,0.271242 -31548,7301:134,-14,33,0,0,0.269195 -31549,7301:133,-13,33,0,0,0.270065 -31550,7301:132,-12,33,0,0,0.267662 -31551,7301:131,-11,33,0,0,0.263155 -31552,7301:130,-10,33,0,0,0.265112 -31553,7300:239,-9,33,0,0,0.265452 -31554,7300:238,-8,33,0,0,0.268407 -31555,7300:237,-7,33,0,0,0.268126 -31556,7300:236,-6,33,0,0,0.267602 -31557,7300:235,-5,33,0,0,0.274196 -31558,7300:134,-4,33,0,0,0.267883 -31559,1302:239,29,33,0,0,0.27179 -31560,1303:130,30,33,0,0,0.265032 -31561,1303:131,31,33,0,0,0.268206 -31562,1303:132,32,33,0,0,0.266114 -31563,1303:133,33,33,0,0,0.265973 -31564,1303:134,34,33,0,0,0.262398 -31565,1303:235,35,33,0,0,0.259466 -31566,1303:236,36,33,0,0,0.265673 -31567,1303:237,37,33,0,0,0.273951 -31568,1303:238,38,33,0,0,0.280228 -31569,1314:130,140,33,0,0,0.144332 -31570,1314:131,141,33,0,0,0.161498 -31571,1314:132,142,33,0,0,0.16637 -31572,1314:235,145,33,0,0,0.106771 -31573,1314:236,146,33,0,0,0.118843 -31574,1314:237,147,33,0,0,0.121526 -31575,1314:238,148,33,0,0,0.126016 -31576,1314:239,149,33,0,0,0.126822 -31577,1315:130,150,33,0,0,0.126367 -31578,1315:131,151,33,0,0,0.130963 -31579,1315:132,152,33,0,0,0.130671 -31580,1315:133,153,33,0,0,0.127792 -31581,1315:134,154,33,0,0,0.126651 -31582,1315:235,155,33,0,0,0.133569 -31583,1315:236,156,33,0,0,0.130496 -31584,1315:237,157,33,0,0,0.129555 -31585,1315:238,158,33,0,0,0.129972 -31586,1315:239,159,33,0,0,0.133533 -31587,1316:130,160,33,0,0,0.133212 -31588,1316:131,161,33,0,0,0.132443 -31589,1316:132,162,33,0,0,0.13487 -31590,1316:133,163,33,0,0,0.140716 -31591,1316:134,164,33,0,0,0.140282 -31592,1316:235,165,33,0,0,0.136836 -31593,1316:236,166,33,0,0,0.1364 -31594,1316:237,167,33,0,0,0.139787 -31595,1316:238,168,33,0,0,0.142942 -31596,1316:239,169,33,0,0,0.145146 -31597,1317:130,170,33,0,0,0.145695 -31598,1317:131,171,33,0,0,0.145695 -31599,1317:132,172,33,0,0,0.145964 -31600,1317:133,173,33,0,0,0.147857 -31601,1317:134,174,33,0,0,0.148025 -31602,1317:235,175,33,0,0,0.146631 -31603,1317:236,176,33,0,0,0.149469 -31604,1317:237,177,33,0,0,0.15319 -31605,1317:238,178,33,0,0,0.151333 -31606,1317:239,179,33,0,0,0.149026 -31607,1318:130,180,33,0,0,0.151281 -31608,7318:140,-180,34,0,0,0.147056 -31609,7317:249,-179,34,0,0,0.14658 -31610,7317:248,-178,34,0,0,0.146439 -31611,7317:247,-177,34,0,0,0.146992 -31612,7317:246,-176,34,0,0,0.147663 -31613,7317:245,-175,34,0,0,0.148856 -31614,7317:144,-174,34,0,0,0.150504 -31615,7317:143,-173,34,0,0,0.151584 -31616,7317:142,-172,34,0,0,0.15177 -31617,7317:141,-171,34,0,0,0.15363 -31618,7317:140,-170,34,0,0,0.156946 -31619,7316:249,-169,34,0,0,0.157245 -31620,7316:248,-168,34,0,0,0.157627 -31621,7316:247,-167,34,0,0,0.159546 -31622,7316:246,-166,34,0,0,0.161415 -31623,7316:245,-165,34,0,0,0.162712 -31624,7316:144,-164,34,0,0,0.163062 -31625,7316:143,-163,34,0,0,0.163119 -31626,7316:142,-162,34,0,0,0.164526 -31627,7316:141,-161,34,0,0,0.162139 -31628,7316:140,-160,34,0,0,0.16529 -31629,7315:249,-159,34,0,0,0.166827 -31630,7315:248,-158,34,0,0,0.165361 -31631,7315:247,-157,34,0,0,0.167514 -31632,7315:246,-156,34,0,0,0.17066 -31633,7315:245,-155,34,0,0,0.172765 -31634,7315:144,-154,34,0,0,0.178642 -31635,7315:143,-153,34,0,0,0.17976 -31636,7315:142,-152,34,0,0,0.184411 -31637,7315:141,-151,34,0,0,0.185962 -31638,7315:140,-150,34,0,0,0.188055 -31639,7314:249,-149,34,0,0,0.190309 -31640,7314:248,-148,34,0,0,0.190515 -31641,7314:247,-147,34,0,0,0.189156 -31642,7314:246,-146,34,0,0,0.191929 -31643,7314:245,-145,34,0,0,0.197193 -31644,7314:144,-144,34,0,0,0.198171 -31645,7314:143,-143,34,0,0,0.201705 -31646,7314:142,-142,34,0,0,0.203947 -31647,7314:141,-141,34,0,0,0.207811 -31648,7314:140,-140,34,0,0,0.209797 -31649,7313:249,-139,34,0,0,0.212896 -31650,7313:248,-138,34,0,0,0.212586 -31651,7313:247,-137,34,0,0,0.21195 -31652,7313:246,-136,34,0,0,0.214918 -31653,7313:245,-135,34,0,0,0.216099 -31654,7313:144,-134,34,0,0,0.222946 -31655,7313:143,-133,34,0,0,0.226274 -31656,7313:142,-132,34,0,0,0.226328 -31657,7313:141,-131,34,0,0,0.22991 -31658,7313:140,-130,34,0,0,0.229292 -31659,7312:249,-129,34,0,0,0.232852 -31660,7312:248,-128,34,0,0,0.229782 -31661,7312:247,-127,34,0,0,0.226202 -31662,7312:246,-126,34,0,0,0.226094 -31663,7312:245,-125,34,0,0,0.222661 -31664,7306:144,-64,34,0,0,0.136388 -31665,7306:143,-63,34,0,0,0.151017 -31666,7306:142,-62,34,0,0,0.138912 -31667,7306:141,-61,34,0,0,0.138483 -31668,7306:140,-60,34,0,0,0.135615 -31669,7305:249,-59,34,0,0,0.128251 -31670,7305:142,-52,34,0,0,0.104346 -31671,7305:141,-51,34,0,0,0.110159 -31672,7305:140,-50,34,0,0,0.112486 -31673,7304:249,-49,34,0,0,0.118274 -31674,7304:248,-48,34,0,0,0.129624 -31675,7304:247,-47,34,0,0,0.133402 -31676,7304:246,-46,34,0,0,0.132798 -31677,7304:245,-45,34,0,0,0.135627 -31678,7304:144,-44,34,0,0,0.139072 -31679,7304:143,-43,34,0,0,0.163934 -31680,7304:142,-42,34,0,0,0.187898 -31681,7304:141,-41,34,0,0,0.204031 -31682,7304:140,-40,34,0,0,0.202982 -31683,7303:249,-39,34,0,0,0.214813 -31684,7303:248,-38,34,0,0,0.194733 -31685,7303:247,-37,34,0,0,0.211574 -31686,7303:246,-36,34,0,0,0.217127 -31687,7303:245,-35,34,0,0,0.21269 -31688,7303:144,-34,34,0,0,0.221313 -31689,7303:143,-33,34,0,0,0.222217 -31690,7303:142,-32,34,0,0,0.242569 -31691,7303:141,-31,34,0,0,0.251396 -31692,7303:140,-30,34,0,0,0.252908 -31693,7302:249,-29,34,0,0,0.260276 -31694,7302:248,-28,34,0,0,0.294022 -31695,7302:247,-27,34,0,0,0.28243 -31696,7302:246,-26,34,0,0,0.287749 -31697,7302:245,-25,34,0,0,0.287223 -31698,7302:144,-24,34,0,0,0.285543 -31699,7302:143,-23,34,0,0,0.277357 -31700,7302:142,-22,34,0,0,0.283953 -31701,7302:141,-21,34,0,0,0.279586 -31702,7302:140,-20,34,0,0,0.276822 -31703,7301:249,-19,34,0,0,0.265712 -31704,7301:248,-18,34,0,0,0.271587 -31705,7301:247,-17,34,0,0,0.270349 -31706,7301:246,-16,34,0,0,0.267944 -31707,7301:245,-15,34,0,0,0.269074 -31708,7301:144,-14,34,0,0,0.261762 -31709,7301:143,-13,34,0,0,0.264012 -31710,7301:142,-12,34,0,0,0.258087 -31711,7301:141,-11,34,0,0,0.258441 -31712,7301:140,-10,34,0,0,0.260276 -31713,7300:249,-9,34,0,0,0.260534 -31714,7300:248,-8,34,0,0,0.263016 -31715,7300:247,-7,34,0,0,0.264492 -31716,7300:246,-6,34,0,0,0.257281 -31717,1302:249,29,34,0,0,0.262498 -31718,1303:140,30,34,0,0,0.269964 -31719,1303:141,31,34,0,0,0.276719 -31720,1303:245,35,34,0,0,0.266716 -31721,1303:246,36,34,0,0,0.270328 -31722,1314:141,141,34,0,0,0.110825 -31723,1314:142,142,34,0,0,0.123915 -31724,1314:143,143,34,0,0,0.130216 -31725,1314:144,144,34,0,0,0.105281 -31726,1314:245,145,34,0,0,0.103733 -31727,1314:246,146,34,0,0,0.100818 -31728,1314:247,147,34,0,0,0.112138 -31729,1314:248,148,34,0,0,0.120488 -31730,1314:249,149,34,0,0,0.122439 -31731,1315:140,150,34,0,0,0.126254 -31732,1315:141,151,34,0,0,0.127369 -31733,1315:142,152,34,0,0,0.124968 -31734,1315:143,153,34,0,0,0.122384 -31735,1315:144,154,34,0,0,0.123848 -31736,1315:245,155,34,0,0,0.119825 -31737,1315:246,156,34,0,0,0.11976 -31738,1315:247,157,34,0,0,0.13115 -31739,1315:248,158,34,0,0,0.133236 -31740,1315:249,159,34,0,0,0.131572 -31741,1316:140,160,34,0,0,0.130449 -31742,1316:141,161,34,0,0,0.130939 -31743,1316:142,162,34,0,0,0.133165 -31744,1316:143,163,34,0,0,0.141052 -31745,1316:144,164,34,0,0,0.140468 -31746,1316:245,165,34,0,0,0.132857 -31747,1316:246,166,34,0,0,0.133545 -31748,1316:247,167,34,0,0,0.137724 -31749,1316:248,168,34,0,0,0.135639 -31750,1316:249,169,34,0,0,0.141326 -31751,1317:140,170,34,0,0,0.142101 -31752,1317:141,171,34,0,0,0.141676 -31753,1317:142,172,34,0,0,0.141688 -31754,1317:143,173,34,0,0,0.141401 -31755,1317:144,174,34,0,0,0.140592 -31756,1317:245,175,34,0,0,0.140629 -31757,1317:246,176,34,0,0,0.141813 -31758,1317:247,177,34,0,0,0.143144 -31759,1317:248,178,34,0,0,0.144003 -31760,1317:249,179,34,0,0,0.146323 -31761,1318:140,180,34,0,0,0.147056 -31762,7318:350,-180,35,0,0,0.143699 -31763,7317:459,-179,35,0,0,0.143977 -31764,7317:458,-178,35,0,0,0.144879 -31765,7317:457,-177,35,0,0,0.145491 -31766,7317:456,-176,35,0,0,0.146221 -31767,7317:455,-175,35,0,0,0.147637 -31768,7317:354,-174,35,0,0,0.148012 -31769,7317:353,-173,35,0,0,0.148311 -31770,7317:352,-172,35,0,0,0.148687 -31771,7317:351,-171,35,0,0,0.150176 -31772,7317:350,-170,35,0,0,0.151664 -31773,7316:459,-169,35,0,0,0.152911 -31774,7316:458,-168,35,0,0,0.151981 -31775,7316:457,-167,35,0,0,0.151928 -31776,7316:456,-166,35,0,0,0.154407 -31777,7316:455,-165,35,0,0,0.157763 -31778,7316:354,-164,35,0,0,0.157927 -31779,7316:353,-163,35,0,0,0.155039 -31780,7316:352,-162,35,0,0,0.156091 -31781,7316:351,-161,35,0,0,0.156851 -31782,7316:350,-160,35,0,0,0.15868 -31783,7315:459,-159,35,0,0,0.158433 -31784,7315:458,-158,35,0,0,0.157518 -31785,7315:457,-157,35,0,0,0.157545 -31786,7315:456,-156,35,0,0,0.159505 -31787,7315:455,-155,35,0,0,0.161068 -31788,7315:354,-154,35,0,0,0.163161 -31789,7315:353,-153,35,0,0,0.168274 -31790,7315:352,-152,35,0,0,0.173161 -31791,7315:351,-151,35,0,0,0.177484 -31792,7315:350,-150,35,0,0,0.181784 -31793,7314:459,-149,35,0,0,0.183086 -31794,7314:458,-148,35,0,0,0.18418 -31795,7314:457,-147,35,0,0,0.180975 -31796,7314:456,-146,35,0,0,0.177589 -31797,7314:455,-145,35,0,0,0.187804 -31798,7314:354,-144,35,0,0,0.18944 -31799,7314:353,-143,35,0,0,0.188856 -31800,7314:352,-142,35,0,0,0.193993 -31801,7314:351,-141,35,0,0,0.195944 -31802,7314:350,-140,35,0,0,0.199645 -31803,7313:459,-139,35,0,0,0.200615 -31804,7313:458,-138,35,0,0,0.201903 -31805,7313:457,-137,35,0,0,0.203314 -31806,7313:456,-136,35,0,0,0.206377 -31807,7313:455,-135,35,0,0,0.2107 -31808,7313:354,-134,35,0,0,0.216621 -31809,7313:353,-133,35,0,0,0.217005 -31810,7313:352,-132,35,0,0,0.220941 -31811,7313:351,-131,35,0,0,0.221419 -31812,7313:350,-130,35,0,0,0.21851 -31813,7312:459,-129,35,0,0,0.220199 -31814,7312:458,-128,35,0,0,0.221632 -31815,7312:457,-127,35,0,0,0.223231 -31816,7312:456,-126,35,0,0,0.222963 -31817,7312:455,-125,35,0,0,0.218317 -31818,7306:458,-68,35,0,0,0.12809 -31819,7306:353,-63,35,0,0,0.122915 -31820,7306:352,-62,35,0,0,0.128504 -31821,7306:351,-61,35,0,0,0.121493 -31822,7306:350,-60,35,0,0,0.120281 -31823,7305:459,-59,35,0,0,0.126265 -31824,7305:458,-58,35,0,0,0.120902 -31825,7305:352,-52,35,0,0,0.103037 -31826,7305:351,-51,35,0,0,0.118617 -31827,7305:350,-50,35,0,0,0.11988 -31828,7304:459,-49,35,0,0,0.129254 -31829,7304:458,-48,35,0,0,0.134774 -31830,7304:457,-47,35,0,0,0.150124 -31831,7304:456,-46,35,0,0,0.154675 -31832,7304:455,-45,35,0,0,0.153537 -31833,7304:354,-44,35,0,0,0.169168 -31834,7304:353,-43,35,0,0,0.18304 -31835,7304:352,-42,35,0,0,0.19134 -31836,7304:351,-41,35,0,0,0.180884 -31837,7304:350,-40,35,0,0,0.208437 -31838,7303:459,-39,35,0,0,0.186569 -31839,7303:458,-38,35,0,0,0.195459 -31840,7303:457,-37,35,0,0,0.198825 -31841,7303:456,-36,35,0,0,0.202915 -31842,7303:455,-35,35,0,0,0.212999 -31843,7303:354,-34,35,0,0,0.211831 -31844,7303:353,-33,35,0,0,0.210581 -31845,7303:352,-32,35,0,0,0.210291 -31846,7303:351,-31,35,0,0,0.25353 -31847,7303:350,-30,35,0,0,0.273277 -31848,7302:459,-29,35,0,0,0.268367 -31849,7302:458,-28,35,0,0,0.284329 -31850,7302:457,-27,35,0,0,0.281182 -31851,7302:456,-26,35,0,0,0.274053 -31852,7302:455,-25,35,0,0,0.250219 -31853,7302:354,-24,35,0,0,0.258224 -31854,7302:353,-23,35,0,0,0.278367 -31855,7302:352,-22,35,0,0,0.280601 -31856,7302:351,-21,35,0,0,0.276801 -31857,7302:350,-20,35,0,0,0.270795 -31858,7301:459,-19,35,0,0,0.263773 -31859,7301:458,-18,35,0,0,0.269013 -31860,7301:457,-17,35,0,0,0.267944 -31861,7301:456,-16,35,0,0,0.266877 -31862,7301:455,-15,35,0,0,0.265212 -31863,7301:354,-14,35,0,0,0.259407 -31864,7301:353,-13,35,0,0,0.256516 -31865,7301:352,-12,35,0,0,0.250392 -31866,7301:351,-11,35,0,0,0.25101 -31867,7301:350,-10,35,0,0,0.25072 -31868,7300:459,-9,35,0,0,0.25157 -31869,7300:458,-8,35,0,0,0.254191 -31870,7300:457,-7,35,0,0,0.254191 -31871,7300:456,-6,35,0,0,0.256771 -31872,7300:455,-5,35,0,0,0.255811 -31873,7300:354,-4,35,0,0,0.253238 -31874,7300:353,-3,35,0,0,0.213258 -31875,1303:350,30,35,0,0,0.254074 -31876,1303:351,31,35,0,0,0.2585 -31877,1303:352,32,35,0,0,0.246822 -31878,1314:352,142,35,0,0,0.0930596 -31879,1314:353,143,35,0,0,0.105562 -31880,1314:455,145,35,0,0,0.094694 -31881,1314:456,146,35,0,0,0.0931986 -31882,1314:457,147,35,0,0,0.10741 -31883,1314:458,148,35,0,0,0.11493 -31884,1314:459,149,35,0,0,0.117408 -31885,1315:350,150,35,0,0,0.116644 -31886,1315:351,151,35,0,0,0.119652 -31887,1315:352,152,35,0,0,0.119836 -31888,1315:353,153,35,0,0,0.121263 -31889,1315:354,154,35,0,0,0.123459 -31890,1315:455,155,35,0,0,0.121285 -31891,1315:456,156,35,0,0,0.119349 -31892,1315:457,157,35,0,0,0.119446 -31893,1315:458,158,35,0,0,0.12508 -31894,1315:459,159,35,0,0,0.130344 -31895,1316:350,160,35,0,0,0.129833 -31896,1316:351,161,35,0,0,0.129566 -31897,1316:352,162,35,0,0,0.130753 -31898,1316:353,163,35,0,0,0.131396 -31899,1316:354,164,35,0,0,0.131819 -31900,1316:455,165,35,0,0,0.131866 -31901,1316:456,166,35,0,0,0.132821 -31902,1316:457,167,35,0,0,0.133795 -31903,1316:458,168,35,0,0,0.137371 -31904,1316:459,169,35,0,0,0.138556 -31905,1317:350,170,35,0,0,0.138863 -31906,1317:351,171,35,0,0,0.138617 -31907,1317:352,172,35,0,0,0.138986 -31908,1317:353,173,35,0,0,0.139849 -31909,1317:354,174,35,0,0,0.139898 -31910,1317:455,175,35,0,0,0.140084 -31911,1317:456,176,35,0,0,0.140518 -31912,1317:457,177,35,0,0,0.141189 -31913,1317:458,178,35,0,0,0.142251 -31914,1317:459,179,35,0,0,0.143106 -31915,1318:350,180,35,0,0,0.143699 -31916,7318:360,-180,36,0,0,0.143813 -31917,7317:469,-179,36,0,0,0.144332 -31918,7317:468,-178,36,0,0,0.145133 -31919,7317:467,-177,36,0,0,0.145746 -31920,7317:466,-176,36,0,0,0.146105 -31921,7317:465,-175,36,0,0,0.146349 -31922,7317:364,-174,36,0,0,0.146683 -31923,7317:363,-173,36,0,0,0.147133 -31924,7317:362,-172,36,0,0,0.147456 -31925,7317:361,-171,36,0,0,0.147288 -31926,7317:360,-170,36,0,0,0.147211 -31927,7316:469,-169,36,0,0,0.148064 -31928,7316:468,-168,36,0,0,0.148661 -31929,7316:467,-167,36,0,0,0.14926 -31930,7316:466,-166,36,0,0,0.150583 -31931,7316:465,-165,36,0,0,0.152233 -31932,7316:364,-164,36,0,0,0.152472 -31933,7316:363,-163,36,0,0,0.150609 -31934,7316:362,-162,36,0,0,0.15015 -31935,7316:361,-161,36,0,0,0.150189 -31936,7316:360,-160,36,0,0,0.151518 -31937,7315:469,-159,36,0,0,0.152392 -31938,7315:468,-158,36,0,0,0.152844 -31939,7315:467,-157,36,0,0,0.153684 -31940,7315:466,-156,36,0,0,0.155011 -31941,7315:465,-155,36,0,0,0.155443 -31942,7315:364,-154,36,0,0,0.155146 -31943,7315:363,-153,36,0,0,0.156905 -31944,7315:362,-152,36,0,0,0.16025 -31945,7315:361,-151,36,0,0,0.164653 -31946,7315:360,-150,36,0,0,0.167399 -31947,7314:469,-149,36,0,0,0.16803 -31948,7314:468,-148,36,0,0,0.169674 -31949,7314:467,-147,36,0,0,0.1719 -31950,7314:466,-146,36,0,0,0.170718 -31951,7314:465,-145,36,0,0,0.17133 -31952,7314:364,-144,36,0,0,0.178355 -31953,7314:363,-143,36,0,0,0.180519 -31954,7314:362,-142,36,0,0,0.182825 -31955,7314:361,-141,36,0,0,0.184504 -31956,7314:360,-140,36,0,0,0.187413 -31957,7313:469,-139,36,0,0,0.190784 -31958,7313:468,-138,36,0,0,0.195007 -31959,7313:467,-137,36,0,0,0.197389 -31961,7313:465,-135,36,0,0,0.206966 -31962,7313:364,-134,36,0,0,0.20978 -31963,7313:363,-133,36,0,0,0.216047 -31964,7313:362,-132,36,0,0,0.219213 -31965,7313:361,-131,36,0,0,0.21497 -31966,7313:360,-130,36,0,0,0.211265 -31967,7312:469,-129,36,0,0,0.213378 -31968,7312:468,-128,36,0,0,0.213879 -31969,7312:467,-127,36,0,0,0.216796 -31970,7312:466,-126,36,0,0,0.219072 -31971,7306:466,-66,36,0,0,0.123437 -31972,7306:465,-65,36,0,0,0.122186 -31973,7306:364,-64,36,0,0,0.123648 -31974,7306:363,-63,36,0,0,0.125001 -31975,7306:361,-61,36,0,0,0.120979 -31976,7306:360,-60,36,0,0,0.11494 -31977,7305:469,-59,36,0,0,0.112948 -31978,7305:468,-58,36,0,0,0.117952 -31979,7305:467,-57,36,0,0,0.117536 -31980,7305:465,-55,36,0,0,0.100753 -31981,7305:364,-54,36,0,0,0.09533 -31982,7305:363,-53,36,0,0,0.0979943 -31983,7305:362,-52,36,0,0,0.113733 -31984,7305:361,-51,36,0,0,0.117547 -31985,7305:360,-50,36,0,0,0.121867 -31986,7304:469,-49,36,0,0,0.13101 -31987,7304:468,-48,36,0,0,0.135675 -31988,7304:467,-47,36,0,0,0.14913 -31989,7304:466,-46,36,0,0,0.162419 -31990,7304:465,-45,36,0,0,0.163709 -31991,7304:364,-44,36,0,0,0.16161 -31992,7304:363,-43,36,0,0,0.162796 -31993,7304:362,-42,36,0,0,0.177829 -31994,7304:361,-41,36,0,0,0.169992 -31995,7304:360,-40,36,0,0,0.178295 -31996,7303:469,-39,36,0,0,0.180124 -31997,7303:468,-38,36,0,0,0.180762 -31998,7303:467,-37,36,0,0,0.194491 -31999,7303:466,-36,36,0,0,0.188055 -32000,7303:465,-35,36,0,0,0.182411 -32001,7303:364,-34,36,0,0,0.180762 -32002,7303:363,-33,36,0,0,0.181707 -32003,7303:362,-32,36,0,0,0.188825 -32004,7303:361,-31,36,0,0,0.214848 -32005,7303:360,-30,36,0,0,0.264892 -32006,7302:469,-29,36,0,0,0.23146 -32007,7302:468,-28,36,0,0,0.25587 -32008,7302:467,-27,36,0,0,0.266937 -32009,7302:466,-26,36,0,0,0.252209 -32010,7302:465,-25,36,0,0,0.233329 -32011,7302:364,-24,36,0,0,0.249718 -32012,7302:363,-23,36,0,0,0.23844 -32013,7302:362,-22,36,0,0,0.237676 -32014,7302:361,-21,36,0,0,0.243439 -32015,7302:360,-20,36,0,0,0.265613 -32016,7301:469,-19,36,0,0,0.260256 -32017,7301:468,-18,36,0,0,0.260534 -32018,7301:467,-17,36,0,0,0.262219 -32019,7301:466,-16,36,0,0,0.266254 -32020,7301:465,-15,36,0,0,0.262796 -32021,7301:364,-14,36,0,0,0.257556 -32022,7301:363,-13,36,0,0,0.253977 -32023,7301:362,-12,36,0,0,0.246422 -32024,7301:361,-11,36,0,0,0.242588 -32025,7301:360,-10,36,0,0,0.243211 -32026,7300:469,-9,36,0,0,0.244747 -32027,7300:468,-8,36,0,0,0.245697 -32028,7300:467,-7,36,0,0,0.236932 -32029,7300:364,-4,36,0,0,0.241513 -32030,7300:363,-3,36,0,0,0.246613 -32031,7300:362,-2,36,0,0,0.247052 -32032,7300:361,-1,36,0,0,0.2346 -32033,1314:363,143,36,0,0,0.0866592 -32034,1314:466,146,36,0,0,0.0921963 -32035,1314:467,147,36,0,0,0.102516 -32036,1314:468,148,36,0,0,0.11038 -32037,1314:469,149,36,0,0,0.113847 -32038,1315:360,150,36,0,0,0.116707 -32039,1315:361,151,36,0,0,0.116824 -32040,1315:362,152,36,0,0,0.119188 -32041,1315:363,153,36,0,0,0.121088 -32042,1315:364,154,36,0,0,0.123447 -32043,1315:465,155,36,0,0,0.122649 -32044,1315:466,156,36,0,0,0.119966 -32045,1315:468,158,36,0,0,0.120118 -32046,1315:469,159,36,0,0,0.118434 -32047,1316:360,160,36,0,0,0.130216 -32048,1316:361,161,36,0,0,0.129103 -32049,1316:362,162,36,0,0,0.128113 -32050,1316:363,163,36,0,0,0.131185 -32051,1316:364,164,36,0,0,0.134045 -32052,1316:465,165,36,0,0,0.134033 -32053,1316:466,166,36,0,0,0.134248 -32054,1316:467,167,36,0,0,0.136436 -32055,1316:468,168,36,0,0,0.135519 -32056,1316:469,169,36,0,0,0.135399 -32057,1317:360,170,36,0,0,0.135194 -32058,1317:361,171,36,0,0,0.135675 -32059,1317:362,172,36,0,0,0.137407 -32060,1317:363,173,36,0,0,0.13874 -32061,1317:364,174,36,0,0,0.139688 -32062,1317:465,175,36,0,0,0.139985 -32063,1317:466,176,36,0,0,0.140903 -32064,1317:467,177,36,0,0,0.1417 -32065,1317:468,178,36,0,0,0.142301 -32066,1317:469,179,36,0,0,0.143068 -32067,1318:360,180,36,0,0,0.143813 -32068,7318:370,-180,37,0,0,0.138067 -32069,7317:479,-179,37,0,0,0.140567 -32070,7317:478,-178,37,0,0,0.142026 -32071,7317:477,-177,37,0,0,0.142076 -32072,7317:476,-176,37,0,0,0.142051 -32073,7317:475,-175,37,0,0,0.143459 -32074,7317:374,-174,37,0,0,0.144015 -32075,7317:373,-173,37,0,0,0.145236 -32076,7317:372,-172,37,0,0,0.145363 -32077,7317:371,-171,37,0,0,0.145414 -32078,7317:370,-170,37,0,0,0.145657 -32079,7316:479,-169,37,0,0,0.146092 -32080,7316:478,-168,37,0,0,0.146554 -32081,7316:477,-167,37,0,0,0.147159 -32082,7316:476,-166,37,0,0,0.146811 -32083,7316:475,-165,37,0,0,0.146208 -32084,7316:374,-164,37,0,0,0.146451 -32085,7316:373,-163,37,0,0,0.14725 -32086,7316:372,-162,37,0,0,0.146992 -32087,7316:371,-161,37,0,0,0.14712 -32088,7316:370,-160,37,0,0,0.147624 -32089,7315:479,-159,37,0,0,0.14712 -32090,7315:478,-158,37,0,0,0.148 -32091,7315:477,-157,37,0,0,0.14896 -32092,7315:476,-156,37,0,0,0.149404 -32093,7315:475,-155,37,0,0,0.150084 -32094,7315:374,-154,37,0,0,0.152127 -32095,7315:373,-153,37,0,0,0.154917 -32096,7315:372,-152,37,0,0,0.15764 -32097,7315:371,-151,37,0,0,0.160845 -32098,7315:370,-150,37,0,0,0.162265 -32099,7314:479,-149,37,0,0,0.163638 -32100,7314:478,-148,37,0,0,0.16512 -32101,7314:477,-147,37,0,0,0.166385 -32102,7314:476,-146,37,0,0,0.167815 -32103,7314:475,-145,37,0,0,0.169312 -32104,7314:374,-144,37,0,0,0.17101 -32105,7314:373,-143,37,0,0,0.173559 -32106,7314:372,-142,37,0,0,0.176511 -32107,7314:371,-141,37,0,0,0.179472 -32108,7314:370,-140,37,0,0,0.183995 -32109,7313:479,-139,37,0,0,0.188322 -32110,7313:478,-138,37,0,0,0.19088 -32111,7313:477,-137,37,0,0,0.1938 -32112,7313:476,-136,37,0,0,0.199365 -32113,7313:475,-135,37,0,0,0.202666 -32114,7313:374,-134,37,0,0,0.205201 -32115,7313:373,-133,37,0,0,0.210684 -32116,7313:372,-132,37,0,0,0.209813 -32117,7313:371,-131,37,0,0,0.208675 -32118,7313:370,-130,37,0,0,0.210257 -32119,7312:479,-129,37,0,0,0.209422 -32120,7312:478,-128,37,0,0,0.211762 -32121,7312:477,-127,37,0,0,0.214865 -32122,7312:476,-126,37,0,0,0.213585 -32123,7305:477,-57,37,0,0,0.099402 -32124,7305:476,-56,37,0,0,0.101791 -32125,7305:374,-54,37,0,0,0.0913568 -32126,7305:373,-53,37,0,0,0.103599 -32127,7305:372,-52,37,0,0,0.111607 -32128,7305:371,-51,37,0,0,0.114387 -32129,7305:370,-50,37,0,0,0.117121 -32130,7304:479,-49,37,0,0,0.127357 -32131,7304:478,-48,37,0,0,0.140468 -32132,7304:477,-47,37,0,0,0.152871 -32133,7304:476,-46,37,0,0,0.156308 -32134,7304:475,-45,37,0,0,0.158817 -32135,7304:374,-44,37,0,0,0.155295 -32136,7304:373,-43,37,0,0,0.150767 -32137,7304:372,-42,37,0,0,0.15434 -32138,7304:371,-41,37,0,0,0.149091 -32139,7304:370,-40,37,0,0,0.153097 -32140,7303:479,-39,37,0,0,0.154582 -32141,7303:478,-38,37,0,0,0.163119 -32142,7303:477,-37,37,0,0,0.161623 -32143,7303:476,-36,37,0,0,0.154099 -32144,7303:475,-35,37,0,0,0.152459 -32145,7303:374,-34,37,0,0,0.158269 -32146,7303:373,-33,37,0,0,0.198155 -32147,7303:372,-32,37,0,0,0.195168 -32148,7303:371,-31,37,0,0,0.230147 -32149,7303:370,-30,37,0,0,0.244291 -32150,7302:479,-29,37,0,0,0.245412 -32151,7302:478,-28,37,0,0,0.213655 -32152,7302:477,-27,37,0,0,0.219266 -32153,7302:476,-26,37,0,0,0.218002 -32154,7302:475,-25,37,0,0,0.223641 -32155,7302:374,-24,37,0,0,0.217215 -32156,7302:373,-23,37,0,0,0.22759 -32157,7302:372,-22,37,0,0,0.24868 -32158,7302:371,-21,37,0,0,0.258579 -32159,7302:370,-20,37,0,0,0.258736 -32160,7301:479,-19,37,0,0,0.259328 -32161,7301:478,-18,37,0,0,0.25589 -32162,7301:477,-17,37,0,0,0.253626 -32163,7301:476,-16,37,0,0,0.256203 -32164,7301:475,-15,37,0,0,0.241928 -32165,7301:374,-14,37,0,0,0.249583 -32166,7301:373,-13,37,0,0,0.246689 -32167,7301:372,-12,37,0,0,0.238571 -32168,7300:479,-9,37,0,0,0.235708 -32169,7300:478,-8,37,0,0,0.235912 -32170,7300:477,-7,37,0,0,0.23606 -32171,7300:476,-6,37,0,0,0.222377 -32172,7300:475,-5,37,0,0,0.205285 -32173,1300:371,0,37,0,0,0.230985 -32174,1314:373,143,37,0,0,0.0859141 -32175,1314:476,146,37,0,0,0.0933116 -32176,1314:477,147,37,0,0,0.101575 -32177,1314:478,148,37,0,0,0.108657 -32178,1314:479,149,37,0,0,0.112845 -32179,1315:370,150,37,0,0,0.118102 -32180,1315:371,151,37,0,0,0.119134 -32181,1315:372,152,37,0,0,0.119134 -32182,1315:373,153,37,0,0,0.120379 -32183,1315:374,154,37,0,0,0.120913 -32184,1315:475,155,37,0,0,0.12076 -32185,1315:476,156,37,0,0,0.121647 -32186,1315:477,157,37,0,0,0.120815 -32187,1316:370,160,37,0,0,0.117121 -32188,1316:371,161,37,0,0,0.123514 -32189,1316:372,162,37,0,0,0.126753 -32190,1316:373,163,37,0,0,0.126186 -32191,1316:374,164,37,0,0,0.131173 -32192,1316:475,165,37,0,0,0.132892 -32193,1316:476,166,37,0,0,0.133414 -32194,1316:477,167,37,0,0,0.13262 -32195,1316:478,168,37,0,0,0.13156 -32196,1316:479,169,37,0,0,0.132738 -32197,1317:370,170,37,0,0,0.1342 -32198,1317:371,171,37,0,0,0.134631 -32199,1317:372,172,37,0,0,0.134475 -32200,1317:373,173,37,0,0,0.131419 -32201,1317:374,174,37,0,0,0.131185 -32202,1317:475,175,37,0,0,0.133545 -32203,1317:476,176,37,0,0,0.136194 -32204,1317:477,177,37,0,0,0.136933 -32205,1317:478,178,37,0,0,0.136122 -32206,1317:479,179,37,0,0,0.138274 -32207,1318:370,180,37,0,0,0.138067 -32208,7318:380,-180,38,0,0,0.135808 -32209,7317:489,-179,38,0,0,0.137712 -32210,7317:488,-178,38,0,0,0.140109 -32211,7317:487,-177,38,0,0,0.140592 -32212,7317:486,-176,38,0,0,0.141239 -32213,7317:485,-175,38,0,0,0.141851 -32214,7317:384,-174,38,0,0,0.142264 -32215,7317:383,-173,38,0,0,0.14254 -32216,7317:382,-172,38,0,0,0.144955 -32217,7317:381,-171,38,0,0,0.14535 -32218,7317:380,-170,38,0,0,0.14493 -32219,7316:489,-169,38,0,0,0.14507 -32220,7316:488,-168,38,0,0,0.145223 -32221,7316:487,-167,38,0,0,0.145951 -32222,7316:486,-166,38,0,0,0.146349 -32223,7316:485,-165,38,0,0,0.145849 -32224,7316:384,-164,38,0,0,0.145299 -32225,7316:383,-163,38,0,0,0.144993 -32226,7316:382,-162,38,0,0,0.144726 -32227,7316:381,-161,38,0,0,0.144358 -32228,7316:380,-160,38,0,0,0.143927 -32229,7315:489,-159,38,0,0,0.143649 -32230,7315:488,-158,38,0,0,0.143737 -32231,7315:487,-157,38,0,0,0.144612 -32232,7315:486,-156,38,0,0,0.146131 -32233,7315:485,-155,38,0,0,0.147831 -32234,7315:384,-154,38,0,0,0.151399 -32235,7315:383,-153,38,0,0,0.152698 -32236,7315:382,-152,38,0,0,0.154582 -32237,7315:381,-151,38,0,0,0.157463 -32238,7315:380,-150,38,0,0,0.15923 -32239,7314:489,-149,38,0,0,0.160693 -32240,7314:488,-148,38,0,0,0.163638 -32241,7314:487,-147,38,0,0,0.16385 -32242,7314:486,-146,38,0,0,0.164837 -32243,7314:485,-145,38,0,0,0.165574 -32244,7314:384,-144,38,0,0,0.167413 -32245,7314:383,-143,38,0,0,0.174075 -32246,7314:382,-142,38,0,0,0.174741 -32247,7314:381,-141,38,0,0,0.178566 -32248,7314:380,-140,38,0,0,0.185263 -32249,7313:489,-139,38,0,0,0.186273 -32250,7313:488,-138,38,0,0,0.187632 -32251,7313:487,-137,38,0,0,0.192599 -32252,7313:486,-136,38,0,0,0.196009 -32253,7313:485,-135,38,0,0,0.19809 -32254,7313:384,-134,38,0,0,0.203664 -32255,7313:383,-133,38,0,0,0.20798 -32256,7313:382,-132,38,0,0,0.206393 -32257,7313:381,-131,38,0,0,0.206477 -32258,7313:380,-130,38,0,0,0.208946 -32259,7312:489,-129,38,0,0,0.209558 -32260,7312:488,-128,38,0,0,0.202052 -32261,7312:485,-125,38,0,0,0.19099 -32262,7305:384,-54,38,0,0,0.0893389 -32263,7305:383,-53,38,0,0,0.101331 -32264,7305:382,-52,38,0,0,0.111974 -32265,7305:381,-51,38,0,0,0.110511 -32266,7305:380,-50,38,0,0,0.120075 -32267,7304:489,-49,38,0,0,0.135062 -32268,7304:488,-48,38,0,0,0.148987 -32269,7304:487,-47,38,0,0,0.154608 -32270,7304:486,-46,38,0,0,0.151241 -32271,7304:485,-45,38,0,0,0.148427 -32272,7304:384,-44,38,0,0,0.145542 -32273,7304:383,-43,38,0,0,0.149417 -32274,7304:382,-42,38,0,0,0.147133 -32275,7304:381,-41,38,0,0,0.144726 -32276,7304:380,-40,38,0,0,0.148259 -32277,7303:489,-39,38,0,0,0.145542 -32278,7303:488,-38,38,0,0,0.147779 -32279,7303:487,-37,38,0,0,0.146722 -32280,7303:486,-36,38,0,0,0.157327 -32281,7303:485,-35,38,0,0,0.158351 -32282,7303:384,-34,38,0,0,0.158872 -32283,7303:383,-33,38,0,0,0.164046 -32284,7303:382,-32,38,0,0,0.190182 -32285,7303:381,-31,38,0,0,0.204799 -32286,7303:380,-30,38,0,0,0.215229 -32287,7302:489,-29,38,0,0,0.223249 -32288,7302:488,-28,38,0,0,0.216255 -32289,7302:487,-27,38,0,0,0.212312 -32290,7302:486,-26,38,0,0,0.2049 -32291,7302:485,-25,38,0,0,0.221224 -32292,7302:384,-24,38,0,0,0.211077 -32293,7302:383,-23,38,0,0,0.222572 -32294,7302:382,-22,38,0,0,0.238198 -32295,7302:381,-21,38,0,0,0.236283 -32296,7302:380,-20,38,0,0,0.232962 -32297,7301:489,-19,38,0,0,0.230165 -32298,7301:488,-18,38,0,0,0.233385 -32299,7301:487,-17,38,0,0,0.24395 -32300,7301:486,-16,38,0,0,0.25499 -32301,7301:485,-15,38,0,0,0.241269 -32302,7301:384,-14,38,0,0,0.241721 -32303,7301:383,-13,38,0,0,0.237658 -32304,7301:382,-12,38,0,0,0.236042 -32305,7301:381,-11,38,0,0,0.228603 -32306,7300:487,-7,38,0,0,0.235043 -32307,7300:486,-6,38,0,0,0.206293 -32308,1300:381,0,38,0,0,0.222341 -32309,1300:381,1,38,0,0,0.225466 -32310,1314:383,143,38,0,0,0.0804923 -32311,1314:486,146,38,0,0,0.0912546 -32312,1314:487,147,38,0,0,0.103656 -32313,1314:488,148,38,0,0,0.108071 -32314,1314:489,149,38,0,0,0.111058 -32315,1315:380,150,38,0,0,0.113702 -32316,1315:381,151,38,0,0,0.117079 -32317,1315:382,152,38,0,0,0.119793 -32318,1315:383,153,38,0,0,0.120968 -32319,1315:384,154,38,0,0,0.121746 -32320,1315:485,155,38,0,0,0.122605 -32321,1315:486,156,38,0,0,0.123614 -32322,1315:487,157,38,0,0,0.12135 -32323,1316:380,160,38,0,0,0.116782 -32324,1316:381,161,38,0,0,0.114596 -32325,1316:382,162,38,0,0,0.119511 -32326,1316:383,163,38,0,0,0.127483 -32327,1316:384,164,38,0,0,0.128228 -32328,1316:485,165,38,0,0,0.128274 -32329,1316:486,166,38,0,0,0.129242 -32330,1316:487,167,38,0,0,0.1301 -32331,1316:488,168,38,0,0,0.13108 -32332,1316:489,169,38,0,0,0.132963 -32333,1317:380,170,38,0,0,0.133284 -32334,1317:381,171,38,0,0,0.129566 -32335,1317:382,172,38,0,0,0.126685 -32336,1317:383,173,38,0,0,0.126708 -32337,1317:384,174,38,0,0,0.127221 -32338,1317:485,175,38,0,0,0.127278 -32339,1317:486,176,38,0,0,0.129011 -32340,1317:487,177,38,0,0,0.13101 -32341,1317:488,178,38,0,0,0.132928 -32342,1317:489,179,38,0,0,0.134535 -32343,1318:380,180,38,0,0,0.135808 -32344,7318:390,-180,39,0,0,0.135242 -32345,7317:499,-179,39,0,0,0.134355 -32346,7317:498,-178,39,0,0,0.13101 -32347,7317:497,-177,39,0,0,0.130787 -32348,7317:496,-176,39,0,0,0.13122 -32349,7317:495,-175,39,0,0,0.131889 -32350,7317:394,-174,39,0,0,0.133997 -32351,7317:393,-173,39,0,0,0.136861 -32352,7317:392,-172,39,0,0,0.140158 -32353,7317:391,-171,39,0,0,0.141863 -32354,7317:390,-170,39,0,0,0.14356 -32355,7316:499,-169,39,0,0,0.144739 -32356,7316:497,-167,39,0,0,0.145032 -32357,7316:496,-166,39,0,0,0.145146 -32358,7316:495,-165,39,0,0,0.145197 -32359,7316:394,-164,39,0,0,0.144981 -32360,7316:393,-163,39,0,0,0.144815 -32361,7316:392,-162,39,0,0,0.144943 -32362,7316:391,-161,39,0,0,0.145006 -32363,7316:390,-160,39,0,0,0.143421 -32364,7315:499,-159,39,0,0,0.141963 -32365,7315:498,-158,39,0,0,0.143118 -32366,7315:497,-157,39,0,0,0.145338 -32367,7315:496,-156,39,0,0,0.146439 -32368,7315:495,-155,39,0,0,0.148765 -32369,7315:394,-154,39,0,0,0.149495 -32370,7315:393,-153,39,0,0,0.15078 -32371,7315:392,-152,39,0,0,0.152286 -32372,7315:391,-151,39,0,0,0.155349 -32373,7315:390,-150,39,0,0,0.157354 -32374,7314:499,-149,39,0,0,0.15764 -32375,7314:498,-148,39,0,0,0.157831 -32376,7314:497,-147,39,0,0,0.158913 -32377,7314:496,-146,39,0,0,0.162279 -32378,7314:495,-145,39,0,0,0.164894 -32379,7314:394,-144,39,0,0,0.166784 -32380,7314:393,-143,39,0,0,0.168404 -32381,7314:392,-142,39,0,0,0.169732 -32382,7314:391,-141,39,0,0,0.17209 -32383,7314:390,-140,39,0,0,0.177289 -32384,7313:499,-139,39,0,0,0.177499 -32385,7313:498,-138,39,0,0,0.181249 -32386,7313:497,-137,39,0,0,0.183333 -32387,7313:496,-136,39,0,0,0.185154 -32388,7313:495,-135,39,0,0,0.19034 -32389,7313:394,-134,39,0,0,0.199202 -32390,7313:393,-133,39,0,0,0.199973 -32391,7313:392,-132,39,0,0,0.200598 -32392,7313:391,-131,39,0,0,0.203631 -32393,7313:390,-130,39,0,0,0.207692 -32394,7305:394,-54,39,0,0,0.0876154 -32395,7305:393,-53,39,0,0,0.100307 -32396,7305:392,-52,39,0,0,0.106428 -32397,7305:391,-51,39,0,0,0.11036 -32398,7305:390,-50,39,0,0,0.134379 -32399,7304:499,-49,39,0,0,0.141152 -32400,7304:498,-48,39,0,0,0.148038 -32401,7304:497,-47,39,0,0,0.14558 -32402,7304:496,-46,39,0,0,0.139293 -32403,7304:495,-45,39,0,0,0.142565 -32404,7304:394,-44,39,0,0,0.147133 -32405,7304:393,-43,39,0,0,0.142314 -32406,7304:392,-42,39,0,0,0.139257 -32407,7304:391,-41,39,0,0,0.139874 -32408,7304:390,-40,39,0,0,0.143018 -32409,7303:499,-39,39,0,0,0.143383 -32410,7303:498,-38,39,0,0,0.142703 -32411,7303:497,-37,39,0,0,0.15222 -32412,7303:496,-36,39,0,0,0.158201 -32413,7303:495,-35,39,0,0,0.160402 -32414,7303:394,-34,39,0,0,0.164103 -32415,7303:393,-33,39,0,0,0.166855 -32416,7303:392,-32,39,0,0,0.180033 -32417,7303:391,-31,39,0,0,0.194862 -32418,7303:390,-30,39,0,0,0.210649 -32419,7302:499,-29,39,0,0,0.20182 -32420,7302:498,-28,39,0,0,0.209014 -32421,7302:497,-27,39,0,0,0.206629 -32422,7302:496,-26,39,0,0,0.202218 -32423,7302:495,-25,39,0,0,0.20073 -32424,7302:394,-24,39,0,0,0.202931 -32425,7302:393,-23,39,0,0,0.216639 -32426,7302:392,-22,39,0,0,0.231825 -32427,7302:391,-21,39,0,0,0.246498 -32428,7302:390,-20,39,0,0,0.247702 -32429,7301:499,-19,39,0,0,0.244689 -32430,7301:498,-18,39,0,0,0.241194 -32431,7301:497,-17,39,0,0,0.243552 -32432,7301:496,-16,39,0,0,0.252947 -32433,7301:495,-15,39,0,0,0.251107 -32434,7301:394,-14,39,0,0,0.247702 -32435,7301:393,-13,39,0,0,0.242211 -32436,7301:392,-12,39,0,0,0.234065 -32437,7300:497,-7,39,0,0,0.232045 -32438,1300:391,0,39,0,0,0.211574 -32439,1300:391,1,39,0,0,0.226346 -32440,1300:392,2,39,0,0,0.214208 -32441,1314:496,146,39,0,0,0.0884236 -32442,1314:497,147,39,0,0,0.10598 -32443,1314:498,148,39,0,0,0.108627 -32444,1314:499,149,39,0,0,0.109877 -32445,1315:390,150,39,0,0,0.114982 -32446,1315:391,151,39,0,0,0.118983 -32447,1315:392,152,39,0,0,0.121077 -32448,1315:393,153,39,0,0,0.122164 -32449,1315:394,154,39,0,0,0.12245 -32450,1315:495,155,39,0,0,0.122682 -32451,1315:496,156,39,0,0,0.12367 -32452,1315:497,157,39,0,0,0.119144 -32453,1316:391,161,39,0,0,0.112097 -32454,1316:392,162,39,0,0,0.112117 -32455,1316:393,163,39,0,0,0.117313 -32456,1316:394,164,39,0,0,0.124497 -32457,1316:495,165,39,0,0,0.123425 -32458,1316:496,166,39,0,0,0.122837 -32459,1316:497,167,39,0,0,0.127872 -32460,1316:498,168,39,0,0,0.128607 -32461,1316:499,169,39,0,0,0.131021 -32462,1317:390,170,39,0,0,0.128538 -32463,1317:391,171,39,0,0,0.127975 -32464,1317:392,172,39,0,0,0.128102 -32465,1317:393,173,39,0,0,0.125994 -32466,1317:394,174,39,0,0,0.128699 -32467,1317:495,175,39,0,0,0.130274 -32468,1317:496,176,39,0,0,0.131185 -32469,1317:497,177,39,0,0,0.131443 -32470,1317:498,178,39,0,0,0.131478 -32471,1317:499,179,39,0,0,0.13481 -32472,1318:390,180,39,0,0,0.135242 -32473,7418:100,-180,40,0,0,0.13183 -32474,7417:209,-179,40,0,0,0.13216 -32475,7417:208,-178,40,0,0,0.130834 -32476,7417:207,-177,40,0,0,0.130298 -32477,7417:206,-176,40,0,0,0.130472 -32478,7417:205,-175,40,0,0,0.130904 -32479,7417:104,-174,40,0,0,0.133557 -32480,7417:103,-173,40,0,0,0.138617 -32481,7417:102,-172,40,0,0,0.138115 -32482,7417:101,-171,40,0,0,0.140158 -32483,7417:100,-170,40,0,0,0.141863 -32484,7416:209,-169,40,0,0,0.144332 -32485,7416:208,-168,40,0,0,0.145798 -32486,7416:207,-167,40,0,0,0.145236 -32487,7416:206,-166,40,0,0,0.136569 -32488,7416:205,-165,40,0,0,0.140779 -32489,7416:104,-164,40,0,0,0.138704 -32490,7416:103,-163,40,0,0,0.14694 -32491,7416:102,-162,40,0,0,0.146876 -32492,7416:101,-161,40,0,0,0.145849 -32493,7416:100,-160,40,0,0,0.14399 -32494,7415:209,-159,40,0,0,0.143055 -32495,7415:208,-158,40,0,0,0.142051 -32496,7415:207,-157,40,0,0,0.142917 -32497,7415:206,-156,40,0,0,0.143775 -32498,7415:205,-155,40,0,0,0.143825 -32499,7415:104,-154,40,0,0,0.1459 -32500,7415:103,-153,40,0,0,0.144993 -32501,7415:102,-152,40,0,0,0.145236 -32502,7415:101,-151,40,0,0,0.149888 -32503,7415:100,-150,40,0,0,0.153217 -32504,7414:209,-149,40,0,0,0.154166 -32505,7414:208,-148,40,0,0,0.153871 -32506,7414:207,-147,40,0,0,0.153591 -32507,7414:206,-146,40,0,0,0.161206 -32508,7414:205,-145,40,0,0,0.163062 -32509,7414:104,-144,40,0,0,0.163441 -32510,7414:103,-143,40,0,0,0.167356 -32511,7414:102,-142,40,0,0,0.173117 -32512,7414:101,-141,40,0,0,0.175245 -32513,7414:100,-140,40,0,0,0.177334 -32514,7413:209,-139,40,0,0,0.17801 -32515,7413:208,-138,40,0,0,0.177634 -32516,7413:207,-137,40,0,0,0.179367 -32517,7413:206,-136,40,0,0,0.182657 -32518,7413:205,-135,40,0,0,0.192168 -32519,7413:104,-134,40,0,0,0.190356 -32520,7413:103,-133,40,0,0,0.193543 -32521,7413:102,-132,40,0,0,0.197666 -32522,7413:101,-131,40,0,0,0.199382 -32523,7413:100,-130,40,0,0,0.204498 -32524,7412:209,-129,40,0,0,0.194443 -32525,7407:209,-79,40,0,0,0.0898333 -32526,7407:208,-78,40,0,0,0.089699 -32527,7405:205,-55,40,0,0,0.0845682 -32528,7405:104,-54,40,0,0,0.0862941 -32529,7405:103,-53,40,0,0,0.0922133 -32530,7405:102,-52,40,0,0,0.0977042 -32531,7405:101,-51,40,0,0,0.121537 -32532,7405:100,-50,40,0,0,0.136751 -32533,7404:209,-49,40,0,0,0.136025 -32534,7404:208,-48,40,0,0,0.135723 -32535,7404:207,-47,40,0,0,0.136691 -32536,7404:206,-46,40,0,0,0.13576 -32537,7404:205,-45,40,0,0,0.133962 -32538,7404:104,-44,40,0,0,0.135182 -32539,7404:103,-43,40,0,0,0.134798 -32540,7404:102,-42,40,0,0,0.137749 -32541,7404:101,-41,40,0,0,0.137481 -32542,7404:100,-40,40,0,0,0.138888 -32543,7403:209,-39,40,0,0,0.141338 -32544,7403:208,-38,40,0,0,0.148389 -32545,7403:207,-37,40,0,0,0.151505 -32546,7403:206,-36,40,0,0,0.153217 -32547,7403:205,-35,40,0,0,0.157408 -32548,7403:104,-34,40,0,0,0.157599 -32549,7403:103,-33,40,0,0,0.160209 -32550,7403:102,-32,40,0,0,0.173942 -32551,7403:101,-31,40,0,0,0.181692 -32552,7403:100,-30,40,0,0,0.177394 -32553,7402:209,-29,40,0,0,0.175394 -32554,7402:208,-28,40,0,0,0.181082 -32555,7402:207,-27,40,0,0,0.201622 -32556,7402:206,-26,40,0,0,0.202152 -32557,7402:205,-25,40,0,0,0.211968 -32558,7402:104,-24,40,0,0,0.214831 -32559,7402:103,-23,40,0,0,0.207946 -32560,7402:102,-22,40,0,0,0.208675 -32561,7402:101,-21,40,0,0,0.227138 -32562,7402:100,-20,40,0,0,0.243552 -32563,7401:209,-19,40,0,0,0.248661 -32564,7401:208,-18,40,0,0,0.250412 -32565,7401:207,-17,40,0,0,0.250836 -32566,7401:206,-16,40,0,0,0.251899 -32567,7401:205,-15,40,0,0,0.24776 -32568,7401:104,-14,40,0,0,0.24665 -32569,7401:103,-13,40,0,0,0.247702 -32570,7401:102,-12,40,0,0,0.24157 -32571,7401:101,-11,40,0,0,0.228821 -32572,7400:207,-7,40,0,0,0.230147 -32573,7400:206,-6,40,0,0,0.201903 -32574,7400:102,-2,40,0,0,0.20881 -32575,7400:101,-1,40,0,0,0.207861 -32576,1400:101,0,40,0,0,0.205251 -32577,1400:101,1,40,0,0,0.208048 -32578,1400:102,2,40,0,0,0.217722 -32579,1400:103,3,40,0,0,0.19953 -32580,1414:104,144,40,0,0,0.0792464 -32581,1414:205,145,40,0,0,0.0773852 -32582,1414:206,146,40,0,0,0.0884982 -32583,1414:207,147,40,0,0,0.109135 -32584,1414:208,148,40,0,0,0.111699 -32585,1414:209,149,40,0,0,0.113702 -32586,1415:100,150,40,0,0,0.116877 -32587,1415:101,151,40,0,0,0.119058 -32588,1415:102,152,40,0,0,0.119414 -32589,1415:103,153,40,0,0,0.118402 -32590,1415:104,154,40,0,0,0.118832 -32591,1415:205,155,40,0,0,0.120695 -32592,1415:206,156,40,0,0,0.121669 -32593,1415:207,157,40,0,0,0.10563 -32594,1416:104,164,40,0,0,0.111984 -32595,1416:205,165,40,0,0,0.121822 -32596,1416:206,166,40,0,0,0.122771 -32597,1416:208,168,40,0,0,0.124016 -32598,1416:209,169,40,0,0,0.127198 -32599,1417:100,170,40,0,0,0.128262 -32600,1417:101,171,40,0,0,0.12605 -32601,1417:102,172,40,0,0,0.127723 -32602,1417:103,173,40,0,0,0.127312 -32603,1417:104,174,40,0,0,0.127884 -32604,1417:205,175,40,0,0,0.127712 -32605,1417:206,176,40,0,0,0.12809 -32606,1417:207,177,40,0,0,0.128757 -32607,1417:208,178,40,0,0,0.12817 -32608,1417:209,179,40,0,0,0.127998 -32609,1418:100,180,40,0,0,0.13183 -32610,7418:110,-180,41,0,0,0.125406 -32611,7417:219,-179,41,0,0,0.126992 -32612,7417:218,-178,41,0,0,0.128354 -32613,7417:217,-177,41,0,0,0.129068 -32614,7417:216,-176,41,0,0,0.129404 -32615,7417:215,-175,41,0,0,0.129949 -32616,7417:114,-174,41,0,0,0.134439 -32617,7417:113,-173,41,0,0,0.139146 -32618,7417:112,-172,41,0,0,0.143081 -32619,7417:111,-171,41,0,0,0.144472 -32620,7417:110,-170,41,0,0,0.145236 -32621,7416:219,-169,41,0,0,0.142289 -32622,7416:218,-168,41,0,0,0.13847 -32623,7416:217,-167,41,0,0,0.144332 -32624,7416:216,-166,41,0,0,0.140965 -32625,7416:215,-165,41,0,0,0.131936 -32626,7416:113,-163,41,0,0,0.130846 -32627,7416:112,-162,41,0,0,0.1364 -32628,7416:111,-161,41,0,0,0.132573 -32629,7416:110,-160,41,0,0,0.147469 -32630,7415:219,-159,41,0,0,0.150124 -32631,7415:218,-158,41,0,0,0.146953 -32632,7415:217,-157,41,0,0,0.143598 -32633,7415:216,-156,41,0,0,0.141551 -32634,7415:215,-155,41,0,0,0.141688 -32635,7415:114,-154,41,0,0,0.142904 -32636,7415:113,-153,41,0,0,0.141963 -32637,7415:112,-152,41,0,0,0.142164 -32638,7415:111,-151,41,0,0,0.142728 -32639,7415:110,-150,41,0,0,0.145478 -32640,7414:219,-149,41,0,0,0.146863 -32641,7414:218,-148,41,0,0,0.148922 -32642,7414:217,-147,41,0,0,0.15327 -32643,7414:216,-146,41,0,0,0.155092 -32644,7414:215,-145,41,0,0,0.158365 -32645,7414:114,-144,41,0,0,0.159257 -32646,7414:113,-143,41,0,0,0.160748 -32647,7414:112,-142,41,0,0,0.170413 -32648,7414:111,-141,41,0,0,0.174637 -32649,7414:110,-140,41,0,0,0.179185 -32650,7413:219,-139,41,0,0,0.180884 -32651,7413:218,-138,41,0,0,0.182917 -32652,7413:217,-137,41,0,0,0.182856 -32653,7413:216,-136,41,0,0,0.185713 -32654,7413:215,-135,41,0,0,0.192391 -32655,7413:114,-134,41,0,0,0.194057 -32656,7413:113,-133,41,0,0,0.196868 -32657,7413:112,-132,41,0,0,0.198514 -32658,7413:111,-131,41,0,0,0.200928 -32659,7413:110,-130,41,0,0,0.199038 -32660,7408:110,-80,41,0,0,0.0875087 -32661,7407:219,-79,41,0,0,0.0877551 -32662,7407:218,-78,41,0,0,0.0903556 -32663,7405:215,-55,41,0,0,0.0824918 -32664,7405:114,-54,41,0,0,0.0900941 -32665,7405:113,-53,41,0,0,0.0920416 -32666,7405:112,-52,41,0,0,0.107498 -32667,7405:111,-51,41,0,0,0.130893 -32668,7405:110,-50,41,0,0,0.137164 -32669,7404:219,-49,41,0,0,0.136327 -32670,7404:218,-48,41,0,0,0.135543 -32671,7404:217,-47,41,0,0,0.134798 -32672,7404:216,-46,41,0,0,0.131443 -32673,7404:215,-45,41,0,0,0.131255 -32674,7404:114,-44,41,0,0,0.132845 -32675,7404:113,-43,41,0,0,0.132384 -32676,7404:112,-42,41,0,0,0.13294 -32677,7404:111,-41,41,0,0,0.134966 -32678,7404:110,-40,41,0,0,0.134081 -32679,7403:219,-39,41,0,0,0.1364 -32680,7403:218,-38,41,0,0,0.140233 -32681,7403:217,-37,41,0,0,0.143699 -32682,7403:216,-36,41,0,0,0.152313 -32683,7403:215,-35,41,0,0,0.152273 -32684,7403:114,-34,41,0,0,0.150714 -32685,7403:113,-33,41,0,0,0.150833 -32686,7403:112,-32,41,0,0,0.154743 -32687,7403:111,-31,41,0,0,0.172031 -32688,7403:110,-30,41,0,0,0.174119 -32689,7402:219,-29,41,0,0,0.172735 -32690,7402:218,-28,41,0,0,0.190245 -32691,7402:217,-27,41,0,0,0.191801 -32692,7402:216,-26,41,0,0,0.19695 -32693,7402:215,-25,41,0,0,0.215768 -32694,7402:114,-24,41,0,0,0.21923 -32695,7402:113,-23,41,0,0,0.216499 -32696,7402:112,-22,41,0,0,0.216796 -32697,7402:111,-21,41,0,0,0.243647 -32698,7402:110,-20,41,0,0,0.239543 -32699,7401:219,-19,41,0,0,0.238235 -32700,7401:218,-18,41,0,0,0.234471 -32701,7401:217,-17,41,0,0,0.231405 -32702,7401:216,-16,41,0,0,0.238963 -32703,7401:215,-15,41,0,0,0.234673 -32704,7401:114,-14,41,0,0,0.248623 -32705,7401:113,-13,41,0,0,0.247281 -32706,7401:112,-12,41,0,0,0.244139 -32707,7401:111,-11,41,0,0,0.234766 -32708,7401:110,-10,41,0,0,0.225681 -32709,7400:219,-9,41,0,0,0.220128 -32710,7400:218,-8,41,0,0,0.228024 -32711,7400:217,-7,41,0,0,0.215525 -32712,7400:113,-3,41,0,0,0.216116 -32713,7400:112,-2,41,0,0,0.217599 -32714,7400:111,-1,41,0,0,0.198433 -32715,1400:111,0,41,0,0,0.19142 -32716,1400:111,1,41,0,0,0.204198 -32717,1400:112,2,41,0,0,0.215143 -32718,1400:113,3,41,0,0,0.217809 -32719,1400:114,4,41,0,0,0.215873 -32720,1400:215,5,41,0,0,0.207354 -32721,1400:216,6,41,0,0,0.176302 -32722,1414:110,140,41,0,0,0.0791266 -32723,1414:111,141,41,0,0,0.077451 -32724,1414:112,142,41,0,0,0.0787084 -32725,1414:113,143,41,0,0,0.0829908 -32726,1414:114,144,41,0,0,0.0857045 -32727,1414:215,145,41,0,0,0.0862049 -32728,1414:216,146,41,0,0,0.0867814 -32729,1414:217,147,41,0,0,0.107794 -32730,1414:218,148,41,0,0,0.11177 -32731,1414:219,149,41,0,0,0.111709 -32732,1415:110,150,41,0,0,0.113899 -32733,1415:111,151,41,0,0,0.11264 -32734,1415:112,152,41,0,0,0.109166 -32735,1415:113,153,41,0,0,0.109526 -32736,1415:114,154,41,0,0,0.111018 -32737,1415:215,155,41,0,0,0.116338 -32738,1415:216,156,41,0,0,0.119717 -32739,1415:217,157,41,0,0,0.103628 -32740,1416:114,164,41,0,0,0.107607 -32741,1416:215,165,41,0,0,0.112445 -32742,1416:216,166,41,0,0,0.115758 -32743,1416:217,167,41,0,0,0.1176 -32744,1416:218,168,41,0,0,0.119382 -32745,1416:219,169,41,0,0,0.124206 -32746,1417:110,170,41,0,0,0.126197 -32747,1417:111,171,41,0,0,0.118509 -32748,1417:112,172,41,0,0,0.124317 -32749,1417:113,173,41,0,0,0.125666 -32750,1417:114,174,41,0,0,0.125711 -32751,1417:215,175,41,0,0,0.126469 -32752,1417:216,176,41,0,0,0.123781 -32753,1417:217,177,41,0,0,0.123392 -32754,1417:218,178,41,0,0,0.123037 -32755,1417:219,179,41,0,0,0.123004 -32756,1418:110,180,41,0,0,0.125406 -32757,7418:120,-180,42,0,0,0.126367 -32758,7417:229,-179,42,0,0,0.126039 -32759,7417:228,-178,42,0,0,0.127895 -32760,7417:227,-177,42,0,0,0.129358 -32761,7417:226,-176,42,0,0,0.130566 -32762,7417:225,-175,42,0,0,0.135026 -32763,7417:124,-174,42,0,0,0.132077 -32764,7417:123,-173,42,0,0,0.131443 -32765,7417:122,-172,42,0,0,0.13017 -32766,7417:121,-171,42,0,0,0.127004 -32767,7417:120,-170,42,0,0,0.12893 -32768,7416:229,-169,42,0,0,0.131995 -32769,7416:228,-168,42,0,0,0.136994 -32770,7416:227,-167,42,0,0,0.141501 -32771,7416:226,-166,42,0,0,0.140629 -32772,7416:225,-165,42,0,0,0.134894 -32773,7416:124,-164,42,0,0,0.124094 -32774,7416:121,-161,42,0,0,0.142691 -32775,7416:120,-160,42,0,0,0.147534 -32776,7415:229,-159,42,0,0,0.148298 -32777,7415:228,-158,42,0,0,0.151717 -32778,7415:227,-157,42,0,0,0.150084 -32779,7415:226,-156,42,0,0,0.148233 -32780,7415:225,-155,42,0,0,0.144332 -32781,7415:124,-154,42,0,0,0.142339 -32782,7415:123,-153,42,0,0,0.141002 -32783,7415:122,-152,42,0,0,0.141538 -32784,7415:121,-151,42,0,0,0.143232 -32785,7415:120,-150,42,0,0,0.148272 -32786,7414:229,-149,42,0,0,0.150649 -32787,7414:228,-148,42,0,0,0.152021 -32788,7414:227,-147,42,0,0,0.154394 -32789,7414:226,-146,42,0,0,0.155821 -32790,7414:225,-145,42,0,0,0.163624 -32791,7414:124,-144,42,0,0,0.165645 -32792,7414:123,-143,42,0,0,0.164188 -32793,7414:122,-142,42,0,0,0.163035 -32794,7414:121,-141,42,0,0,0.169847 -32795,7414:120,-140,42,0,0,0.173957 -32796,7413:229,-139,42,0,0,0.173942 -32797,7413:228,-138,42,0,0,0.182687 -32798,7413:227,-137,42,0,0,0.186133 -32799,7413:226,-136,42,0,0,0.186304 -32800,7413:225,-135,42,0,0,0.191961 -32801,7413:123,-133,42,0,0,0.186351 -32802,7413:122,-132,42,0,0,0.197601 -32803,7413:121,-131,42,0,0,0.195088 -32804,7407:229,-79,42,0,0,0.088548 -32805,7407:228,-78,42,0,0,0.0882746 -32806,7405:228,-58,42,0,0,0.0771947 -32807,7405:227,-57,42,0,0,0.0806066 -32808,7405:226,-56,42,0,0,0.0841079 -32809,7405:225,-55,42,0,0,0.0859464 -32810,7405:124,-54,42,0,0,0.122837 -32811,7405:123,-53,42,0,0,0.139343 -32812,7405:122,-52,42,0,0,0.134858 -32813,7405:121,-51,42,0,0,0.133985 -32814,7405:120,-50,42,0,0,0.130356 -32815,7404:229,-49,42,0,0,0.133962 -32816,7404:228,-48,42,0,0,0.134188 -32817,7404:227,-47,42,0,0,0.132113 -32818,7404:226,-46,42,0,0,0.13003 -32819,7404:225,-45,42,0,0,0.129531 -32820,7404:124,-44,42,0,0,0.129138 -32821,7404:123,-43,42,0,0,0.129682 -32822,7404:122,-42,42,0,0,0.131091 -32823,7404:121,-41,42,0,0,0.131419 -32824,7404:120,-40,42,0,0,0.131689 -32825,7403:229,-39,42,0,0,0.133023 -32826,7403:228,-38,42,0,0,0.138888 -32827,7403:227,-37,42,0,0,0.139923 -32828,7403:226,-36,42,0,0,0.142967 -32829,7403:225,-35,42,0,0,0.145836 -32830,7403:124,-34,42,0,0,0.151149 -32831,7403:123,-33,42,0,0,0.15343 -32832,7403:122,-32,42,0,0,0.156606 -32833,7403:121,-31,42,0,0,0.157777 -32834,7403:120,-30,42,0,0,0.161054 -32835,7402:229,-29,42,0,0,0.164837 -32836,7402:228,-28,42,0,0,0.166242 -32837,7402:227,-27,42,0,0,0.170413 -32838,7402:226,-26,42,0,0,0.174193 -32839,7402:225,-25,42,0,0,0.180109 -32840,7402:124,-24,42,0,0,0.192088 -32841,7402:123,-23,42,0,0,0.197845 -32842,7402:122,-22,42,0,0,0.220041 -32843,7402:121,-21,42,0,0,0.240386 -32844,7402:120,-20,42,0,0,0.239356 -32845,7401:229,-19,42,0,0,0.231752 -32846,7401:228,-18,42,0,0,0.233329 -32847,7401:227,-17,42,0,0,0.222644 -32848,7401:226,-16,42,0,0,0.219406 -32849,7401:225,-15,42,0,0,0.231441 -32850,7401:124,-14,42,0,0,0.236932 -32851,7401:123,-13,42,0,0,0.244386 -32852,7401:122,-12,42,0,0,0.244633 -32853,7401:121,-11,42,0,0,0.237007 -32854,7401:120,-10,42,0,0,0.229746 -32855,7400:229,-9,42,0,0,0.213034 -32856,7400:228,-8,42,0,0,0.198923 -32857,7400:225,-5,42,0,0,0.20636 -32858,7400:124,-4,42,0,0,0.212157 -32859,7400:123,-3,42,0,0,0.212775 -32860,7400:122,-2,42,0,0,0.212312 -32861,7400:121,-1,42,0,0,0.212054 -32862,1400:121,0,42,0,0,0.204498 -32863,1400:121,1,42,0,0,0.198449 -32864,1400:122,2,42,0,0,0.205402 -32865,1400:123,3,42,0,0,0.21556 -32866,1400:124,4,42,0,0,0.209609 -32867,1400:225,5,42,0,0,0.181173 -32868,1400:227,7,42,0,0,0.16147 -32869,1400:228,8,42,0,0,0.162559 -32870,1400:229,9,42,0,0,0.168692 -32871,1401:121,11,42,0,0,0.157504 -32872,1413:229,139,42,0,0,0.0779224 -32873,1414:120,140,42,0,0,0.0787755 -32874,1414:122,142,42,0,0,0.0942107 -32875,1414:123,143,42,0,0,0.0880847 -32876,1414:124,144,42,0,0,0.0833277 -32877,1414:225,145,42,0,0,0.0848548 -32878,1414:226,146,42,0,0,0.091093 -32879,1414:227,147,42,0,0,0.0992458 -32880,1414:228,148,42,0,0,0.0993652 -32881,1414:229,149,42,0,0,0.101885 -32882,1415:120,150,42,0,0,0.105455 -32883,1415:121,151,42,0,0,0.105039 -32884,1415:122,152,42,0,0,0.103628 -32885,1415:123,153,42,0,0,0.105999 -32886,1415:124,154,42,0,0,0.108498 -32887,1415:225,155,42,0,0,0.112774 -32888,1415:226,156,42,0,0,0.116856 -32889,1415:227,157,42,0,0,0.0982854 -32890,1416:225,165,42,0,0,0.111018 -32891,1416:226,166,42,0,0,0.114804 -32892,1416:227,167,42,0,0,0.119706 -32893,1416:228,168,42,0,0,0.120738 -32894,1416:229,169,42,0,0,0.124698 -32895,1417:120,170,42,0,0,0.125982 -32896,1417:121,171,42,0,0,0.119144 -32897,1417:122,172,42,0,0,0.117739 -32898,1417:123,173,42,0,0,0.120968 -32899,1417:124,174,42,0,0,0.123425 -32900,1417:225,175,42,0,0,0.123547 -32901,1417:226,176,42,0,0,0.121955 -32902,1417:227,177,42,0,0,0.121515 -32903,1417:228,178,42,0,0,0.121537 -32904,1417:229,179,42,0,0,0.123537 -32905,1418:120,180,42,0,0,0.126367 -32906,7418:130,-180,43,0,0,0.126288 -32907,7417:239,-179,43,0,0,0.125508 -32908,7417:238,-178,43,0,0,0.124161 -32909,7417:237,-177,43,0,0,0.128584 -32910,7417:236,-176,43,0,0,0.131045 -32911,7417:235,-175,43,0,0,0.129011 -32912,7417:134,-174,43,0,0,0.123893 -32913,7417:133,-173,43,0,0,0.123781 -32914,7417:132,-172,43,0,0,0.118886 -32915,7417:131,-171,43,0,0,0.117568 -32916,7417:130,-170,43,0,0,0.123114 -32917,7416:239,-169,43,0,0,0.124911 -32918,7416:238,-168,43,0,0,0.126277 -32919,7416:237,-167,43,0,0,0.125575 -32920,7416:236,-166,43,0,0,0.124631 -32921,7416:235,-165,43,0,0,0.122406 -32922,7416:134,-164,43,0,0,0.122506 -32923,7416:133,-163,43,0,0,0.123481 -32924,7416:132,-162,43,0,0,0.1104 -32925,7416:130,-160,43,0,0,0.139171 -32926,7415:239,-159,43,0,0,0.148311 -32927,7415:238,-158,43,0,0,0.146041 -32928,7415:237,-157,43,0,0,0.145504 -32929,7415:236,-156,43,0,0,0.154434 -32930,7415:235,-155,43,0,0,0.148012 -32931,7415:134,-154,43,0,0,0.143219 -32932,7415:133,-153,43,0,0,0.141763 -32933,7415:132,-152,43,0,0,0.143409 -32934,7415:131,-151,43,0,0,0.144345 -32935,7415:130,-150,43,0,0,0.149299 -32936,7414:239,-149,43,0,0,0.150032 -32937,7414:238,-148,43,0,0,0.152871 -32938,7414:237,-147,43,0,0,0.157218 -32939,7414:236,-146,43,0,0,0.160236 -32940,7414:235,-145,43,0,0,0.163441 -32941,7414:134,-144,43,0,0,0.163441 -32942,7414:133,-143,43,0,0,0.165318 -32943,7414:132,-142,43,0,0,0.166713 -32944,7414:131,-141,43,0,0,0.167356 -32945,7414:130,-140,43,0,0,0.168836 -32946,7413:239,-139,43,0,0,0.171783 -32947,7413:238,-138,43,0,0,0.177019 -32948,7413:237,-137,43,0,0,0.18026 -32949,7413:236,-136,43,0,0,0.190657 -32950,7413:133,-133,43,0,0,0.175691 -32951,7408:130,-80,43,0,0,0.0830691 -32952,7407:239,-79,43,0,0,0.0910247 -32953,7407:238,-78,43,0,0,0.088606 -32954,7405:238,-58,43,0,0,0.0789844 -32955,7405:237,-57,43,0,0,0.0836028 -32956,7405:236,-56,43,0,0,0.0907786 -32957,7405:235,-55,43,0,0,0.118767 -32958,7405:134,-54,43,0,0,0.13938 -32959,7405:133,-53,43,0,0,0.131901 -32960,7405:132,-52,43,0,0,0.129323 -32961,7405:131,-51,43,0,0,0.128412 -32962,7405:130,-50,43,0,0,0.129381 -32963,7404:239,-49,43,0,0,0.129624 -32964,7404:238,-48,43,0,0,0.129531 -32965,7404:237,-47,43,0,0,0.130077 -32966,7404:236,-46,43,0,0,0.128942 -32967,7404:235,-45,43,0,0,0.128746 -32968,7404:134,-44,43,0,0,0.128964 -32969,7404:133,-43,43,0,0,0.13024 -32970,7404:132,-42,43,0,0,0.132125 -32971,7404:131,-41,43,0,0,0.132384 -32972,7404:130,-40,43,0,0,0.129798 -32973,7403:239,-39,43,0,0,0.130822 -32974,7403:238,-38,43,0,0,0.133818 -32975,7403:237,-37,43,0,0,0.135977 -32976,7403:236,-36,43,0,0,0.136424 -32977,7403:235,-35,43,0,0,0.138924 -32978,7403:134,-34,43,0,0,0.150596 -32979,7403:133,-33,43,0,0,0.163133 -32980,7403:132,-32,43,0,0,0.179215 -32981,7403:131,-31,43,0,0,0.179004 -32982,7403:130,-30,43,0,0,0.169804 -32983,7402:239,-29,43,0,0,0.16727 -32984,7402:238,-28,43,0,0,0.16546 -32985,7402:237,-27,43,0,0,0.168116 -32986,7402:236,-26,43,0,0,0.176123 -32987,7402:235,-25,43,0,0,0.179972 -32988,7402:134,-24,43,0,0,0.185993 -32989,7402:133,-23,43,0,0,0.194282 -32990,7402:132,-22,43,0,0,0.195831 -32991,7402:131,-21,43,0,0,0.236246 -32992,7402:130,-20,43,0,0,0.234729 -32993,7401:239,-19,43,0,0,0.231698 -32994,7401:238,-18,43,0,0,0.230949 -32995,7401:237,-17,43,0,0,0.225861 -32996,7401:236,-16,43,0,0,0.216691 -32997,7401:235,-15,43,0,0,0.218335 -32998,7401:134,-14,43,0,0,0.237806 -32999,7401:133,-13,43,0,0,0.238384 -33000,7401:132,-12,43,0,0,0.239187 -33001,7401:131,-11,43,0,0,0.23135 -33002,7401:130,-10,43,0,0,0.217302 -33003,7400:239,-9,43,0,0,0.217162 -33004,7400:134,-4,43,0,0,0.211077 -33005,7400:133,-3,43,0,0,0.211008 -33006,7400:132,-2,43,0,0,0.212724 -33007,7400:131,-1,43,0,0,0.210257 -33008,1400:131,0,43,0,0,0.207624 -33009,1400:131,1,43,0,0,0.205771 -33010,1400:132,2,43,0,0,0.205251 -33011,1400:133,3,43,0,0,0.213327 -33012,1400:134,4,43,0,0,0.200598 -33013,1400:239,9,43,0,0,0.166499 -33014,1401:130,10,43,0,0,0.187397 -33015,1401:131,11,43,0,0,0.181967 -33016,1401:132,12,43,0,0,0.198416 -33017,1401:133,13,43,0,0,0.174178 -33018,1414:131,141,43,0,0,0.0888552 -33019,1414:132,142,43,0,0,0.0926444 -33020,1414:133,143,43,0,0,0.0894308 -33021,1414:134,144,43,0,0,0.084576 -33022,1414:235,145,43,0,0,0.0848468 -33023,1414:236,146,43,0,0,0.0882829 -33024,1414:237,147,43,0,0,0.0928864 -33025,1414:238,148,43,0,0,0.0954452 -33026,1414:239,149,43,0,0,0.0972973 -33027,1415:130,150,43,0,0,0.0971171 -33028,1415:131,151,43,0,0,0.098934 -33029,1415:132,152,43,0,0,0.101791 -33030,1415:133,153,43,0,0,0.104039 -33031,1415:134,154,43,0,0,0.104125 -33032,1415:235,155,43,0,0,0.105805 -33033,1415:236,156,43,0,0,0.108896 -33034,1415:237,157,43,0,0,0.107203 -33035,1415:238,158,43,0,0,0.0952857 -33036,1416:235,165,43,0,0,0.107282 -33037,1416:236,166,43,0,0,0.111058 -33038,1416:237,167,43,0,0,0.111322 -33039,1416:238,168,43,0,0,0.116549 -33040,1416:239,169,43,0,0,0.118145 -33041,1417:130,170,43,0,0,0.118188 -33042,1417:131,171,43,0,0,0.117952 -33043,1417:132,172,43,0,0,0.11989 -33044,1417:133,173,43,0,0,0.119825 -33045,1417:134,174,43,0,0,0.119977 -33046,1417:235,175,43,0,0,0.12063 -33047,1417:236,176,43,0,0,0.121822 -33048,1417:237,177,43,0,0,0.123937 -33049,1417:238,178,43,0,0,0.124945 -33050,1417:239,179,43,0,0,0.125733 -33051,1418:130,180,43,0,0,0.126288 -33052,7418:140,-180,44,0,0,0.124485 -33053,7417:249,-179,44,0,0,0.125159 -33054,7417:248,-178,44,0,0,0.123259 -33055,7417:247,-177,44,0,0,0.122142 -33056,7417:246,-176,44,0,0,0.12307 -33057,7417:245,-175,44,0,0,0.119479 -33058,7417:144,-174,44,0,0,0.118209 -33059,7417:143,-173,44,0,0,0.115663 -33060,7417:142,-172,44,0,0,0.110957 -33061,7417:141,-171,44,0,0,0.113485 -33062,7417:140,-170,44,0,0,0.113495 -33063,7416:249,-169,44,0,0,0.11224 -33064,7416:248,-168,44,0,0,0.112722 -33065,7416:247,-167,44,0,0,0.11224 -33066,7416:246,-166,44,0,0,0.112743 -33067,7416:245,-165,44,0,0,0.11822 -33068,7416:144,-164,44,0,0,0.122738 -33069,7416:143,-163,44,0,0,0.124507 -33070,7416:142,-162,44,0,0,0.120412 -33071,7416:141,-161,44,0,0,0.100418 -33072,7415:248,-158,44,0,0,0.149979 -33073,7415:246,-156,44,0,0,0.142452 -33074,7415:245,-155,44,0,0,0.153591 -33075,7415:144,-154,44,0,0,0.155187 -33076,7415:143,-153,44,0,0,0.146297 -33077,7415:142,-152,44,0,0,0.147211 -33078,7415:141,-151,44,0,0,0.148492 -33079,7415:140,-150,44,0,0,0.149039 -33080,7414:249,-149,44,0,0,0.149849 -33081,7414:248,-148,44,0,0,0.149888 -33082,7414:247,-147,44,0,0,0.151849 -33083,7414:246,-146,44,0,0,0.157422 -33084,7414:245,-145,44,0,0,0.155861 -33085,7414:144,-144,44,0,0,0.155524 -33086,7414:143,-143,44,0,0,0.158941 -33087,7414:142,-142,44,0,0,0.162559 -33088,7414:141,-141,44,0,0,0.165163 -33089,7414:140,-140,44,0,0,0.170704 -33090,7413:249,-139,44,0,0,0.175305 -33091,7413:248,-138,44,0,0,0.175037 -33092,7413:247,-137,44,0,0,0.184319 -33093,7413:246,-136,44,0,0,0.18646 -33094,7413:245,-135,44,0,0,0.178883 -33095,7413:144,-134,44,0,0,0.175334 -33096,7413:143,-133,44,0,0,0.168937 -33097,7408:140,-80,44,0,0,0.0827333 -33098,7407:249,-79,44,0,0,0.0891717 -33099,7407:248,-78,44,0,0,0.0889469 -33100,7405:249,-59,44,0,0,0.0768076 -33101,7405:248,-58,44,0,0,0.0803935 -33102,7405:247,-57,44,0,0,0.0808581 -33103,7405:246,-56,44,0,0,0.108359 -33104,7405:245,-55,44,0,0,0.140791 -33105,7405:144,-54,44,0,0,0.137724 -33106,7405:143,-53,44,0,0,0.131326 -33107,7405:142,-52,44,0,0,0.127632 -33108,7405:141,-51,44,0,0,0.126095 -33109,7405:140,-50,44,0,0,0.126583 -33110,7404:249,-49,44,0,0,0.126243 -33111,7404:248,-48,44,0,0,0.127552 -33112,7404:247,-47,44,0,0,0.129694 -33113,7404:246,-46,44,0,0,0.131948 -33114,7404:245,-45,44,0,0,0.136848 -33115,7404:144,-44,44,0,0,0.144713 -33116,7404:143,-43,44,0,0,0.149469 -33117,7404:142,-42,44,0,0,0.14756 -33118,7404:141,-41,44,0,0,0.141214 -33119,7404:140,-40,44,0,0,0.137067 -33120,7403:249,-39,44,0,0,0.133129 -33121,7403:248,-38,44,0,0,0.131783 -33122,7403:247,-37,44,0,0,0.133866 -33123,7403:246,-36,44,0,0,0.137322 -33124,7403:245,-35,44,0,0,0.140195 -33125,7403:144,-34,44,0,0,0.145619 -33126,7403:143,-33,44,0,0,0.15136 -33127,7403:142,-32,44,0,0,0.176795 -33128,7403:141,-31,44,0,0,0.185248 -33129,7403:140,-30,44,0,0,0.184149 -33130,7402:249,-29,44,0,0,0.177139 -33131,7402:248,-28,44,0,0,0.17532 -33132,7402:247,-27,44,0,0,0.169225 -33133,7402:246,-26,44,0,0,0.167858 -33134,7402:245,-25,44,0,0,0.171812 -33135,7402:144,-24,44,0,0,0.17409 -33136,7402:143,-23,44,0,0,0.182994 -33137,7402:142,-22,44,0,0,0.184736 -33138,7402:141,-21,44,0,0,0.214018 -33139,7402:140,-20,44,0,0,0.232045 -33140,7401:249,-19,44,0,0,0.233605 -33141,7401:248,-18,44,0,0,0.228349 -33142,7401:247,-17,44,0,0,0.225214 -33143,7401:246,-16,44,0,0,0.220305 -33144,7401:245,-15,44,0,0,0.225071 -33145,7401:144,-14,44,0,0,0.232577 -33146,7401:143,-13,44,0,0,0.234526 -33147,7401:142,-12,44,0,0,0.23366 -33148,7401:141,-11,44,0,0,0.230311 -33149,7401:140,-10,44,0,0,0.219512 -33150,7400:248,-8,44,0,0,0.213465 -33151,7400:246,-6,44,0,0,0.207236 -33152,7400:245,-5,44,0,0,0.21118 -33153,7400:144,-4,44,0,0,0.210206 -33154,7400:143,-3,44,0,0,0.208759 -33155,7400:142,-2,44,0,0,0.204498 -33156,7400:141,-1,44,0,0,0.204615 -33157,1400:141,0,44,0,0,0.200796 -33158,1400:141,1,44,0,0,0.201225 -33159,1400:142,2,44,0,0,0.205486 -33160,1400:143,3,44,0,0,0.205436 -33161,1400:144,4,44,0,0,0.194926 -33162,1400:247,7,44,0,0,0.165404 -33163,1400:248,8,44,0,0,0.156701 -33164,1401:141,11,44,0,0,0.193608 -33165,1401:142,12,44,0,0,0.19778 -33166,1401:143,13,44,0,0,0.188825 -33167,1401:144,14,44,0,0,0.188762 -33168,1401:245,15,44,0,0,0.194797 -33169,1414:143,143,44,0,0,0.09169 -33170,1414:144,144,44,0,0,0.0911779 -33171,1414:245,145,44,0,0,0.0860191 -33172,1414:246,146,44,0,0,0.0868873 -33173,1414:247,147,44,0,0,0.0888968 -33174,1414:248,148,44,0,0,0.0928431 -33175,1414:249,149,44,0,0,0.094158 -33176,1415:140,150,44,0,0,0.09533 -33177,1415:141,151,44,0,0,0.0960324 -33178,1415:142,152,44,0,0,0.0974147 -33179,1415:143,153,44,0,0,0.100409 -33180,1415:144,154,44,0,0,0.101051 -33181,1415:245,155,44,0,0,0.100679 -33182,1415:246,156,44,0,0,0.0989155 -33183,1415:247,157,44,0,0,0.0963718 -33184,1415:248,158,44,0,0,0.0947908 -33185,1415:249,159,44,0,0,0.0926096 -33186,1416:140,160,44,0,0,0.090516 -33187,1416:141,161,44,0,0,0.0869851 -33188,1416:245,165,44,0,0,0.0813097 -33189,1416:246,166,44,0,0,0.103742 -33190,1416:247,167,44,0,0,0.108359 -33191,1416:248,168,44,0,0,0.107646 -33192,1416:249,169,44,0,0,0.112671 -33193,1417:140,170,44,0,0,0.115055 -33194,1417:141,171,44,0,0,0.110734 -33195,1417:142,172,44,0,0,0.111505 -33196,1417:143,173,44,0,0,0.117153 -33197,1417:144,174,44,0,0,0.117068 -33198,1417:245,175,44,0,0,0.117675 -33199,1417:246,176,44,0,0,0.114211 -33200,1417:247,177,44,0,0,0.119522 -33201,1417:248,178,44,0,0,0.119782 -33202,1417:249,179,44,0,0,0.119306 -33203,1418:140,180,44,0,0,0.124485 -33204,7418:350,-180,45,0,0,0.121044 -33205,7417:459,-179,45,0,0,0.116686 -33206,7417:458,-178,45,0,0,0.114075 -33207,7417:457,-177,45,0,0,0.107262 -33208,7417:456,-176,45,0,0,0.108508 -33209,7417:455,-175,45,0,0,0.107834 -33210,7417:354,-174,45,0,0,0.106653 -33211,7417:353,-173,45,0,0,0.106253 -33212,7417:352,-172,45,0,0,0.104904 -33213,7417:351,-171,45,0,0,0.103351 -33214,7417:350,-170,45,0,0,0.101622 -33215,7416:459,-169,45,0,0,0.0975957 -33216,7416:458,-168,45,0,0,0.0962108 -33217,7416:457,-167,45,0,0,0.0945267 -33218,7416:456,-166,45,0,0,0.0960144 -33219,7416:455,-165,45,0,0,0.0877963 -33220,7416:353,-163,45,0,0,0.085407 -33221,7416:352,-162,45,0,0,0.0841316 -33222,7416:351,-161,45,0,0,0.0887887 -33223,7415:457,-157,45,0,0,0.152937 -33224,7415:455,-155,45,0,0,0.14581 -33225,7415:354,-154,45,0,0,0.155429 -33226,7415:353,-153,45,0,0,0.159684 -33227,7415:352,-152,45,0,0,0.150741 -33228,7415:351,-151,45,0,0,0.152512 -33229,7415:350,-150,45,0,0,0.151928 -33230,7414:459,-149,45,0,0,0.151466 -33231,7414:458,-148,45,0,0,0.152101 -33232,7414:457,-147,45,0,0,0.153524 -33233,7414:456,-146,45,0,0,0.153724 -33234,7414:455,-145,45,0,0,0.156389 -33235,7414:354,-144,45,0,0,0.160319 -33236,7414:353,-143,45,0,0,0.167442 -33237,7414:352,-142,45,0,0,0.167987 -33238,7414:351,-141,45,0,0,0.165815 -33239,7414:350,-140,45,0,0,0.166998 -33240,7413:459,-139,45,0,0,0.169877 -33241,7413:458,-138,45,0,0,0.174415 -33242,7413:457,-137,45,0,0,0.183133 -33243,7413:354,-134,45,0,0,0.164385 -33244,7408:350,-80,45,0,0,0.082414 -33245,7407:459,-79,45,0,0,0.0902541 -33246,7407:458,-78,45,0,0,0.0910247 -33247,7407:457,-77,45,0,0,0.0928431 -33248,7407:456,-76,45,0,0,0.0917843 -33249,7407:455,-75,45,0,0,0.0914936 -33250,7405:458,-58,45,0,0,0.0811487 -33251,7405:457,-57,45,0,0,0.0861239 -33252,7405:456,-56,45,0,0,0.138042 -33253,7405:455,-55,45,0,0,0.144104 -33254,7405:354,-54,45,0,0,0.133035 -33255,7405:353,-53,45,0,0,0.128297 -33256,7405:352,-52,45,0,0,0.124878 -33257,7405:351,-51,45,0,0,0.125598 -33258,7405:350,-50,45,0,0,0.127323 -33259,7404:459,-49,45,0,0,0.129949 -33260,7404:458,-48,45,0,0,0.13101 -33261,7404:457,-47,45,0,0,0.134631 -33262,7404:456,-46,45,0,0,0.139836 -33263,7404:455,-45,45,0,0,0.145555 -33264,7404:354,-44,45,0,0,0.161081 -33265,7404:353,-43,45,0,0,0.157927 -33266,7404:352,-42,45,0,0,0.152206 -33267,7404:351,-41,45,0,0,0.159477 -33268,7404:350,-40,45,0,0,0.156634 -33269,7403:459,-39,45,0,0,0.138458 -33270,7403:458,-38,45,0,0,0.136315 -33271,7403:457,-37,45,0,0,0.136775 -33272,7403:456,-36,45,0,0,0.13646 -33273,7403:455,-35,45,0,0,0.138348 -33274,7403:354,-34,45,0,0,0.141813 -33275,7403:353,-33,45,0,0,0.154206 -33276,7403:352,-32,45,0,0,0.164554 -33277,7403:351,-31,45,0,0,0.18096 -33278,7403:350,-30,45,0,0,0.191022 -33279,7402:459,-29,45,0,0,0.193591 -33280,7402:458,-28,45,0,0,0.183194 -33281,7402:457,-27,45,0,0,0.176332 -33282,7402:456,-26,45,0,0,0.173456 -33283,7402:455,-25,45,0,0,0.172163 -33284,7402:354,-24,45,0,0,0.169601 -33285,7402:353,-23,45,0,0,0.179654 -33286,7402:352,-22,45,0,0,0.186616 -33287,7402:351,-21,45,0,0,0.18131 -33288,7402:350,-20,45,0,0,0.192455 -33289,7401:459,-19,45,0,0,0.207658 -33290,7401:458,-18,45,0,0,0.21118 -33291,7401:457,-17,45,0,0,0.221348 -33292,7401:456,-16,45,0,0,0.227843 -33293,7401:455,-15,45,0,0,0.217634 -33294,7401:354,-14,45,0,0,0.215247 -33295,7401:353,-13,45,0,0,0.226382 -33296,7401:352,-12,45,0,0,0.229201 -33297,7401:351,-11,45,0,0,0.228911 -33298,7401:350,-10,45,0,0,0.228929 -33299,7400:459,-9,45,0,0,0.220605 -33300,7400:458,-8,45,0,0,0.21844 -33301,7400:457,-7,45,0,0,0.219459 -33302,7400:456,-6,45,0,0,0.203814 -33303,7400:455,-5,45,0,0,0.208166 -33304,7400:354,-4,45,0,0,0.203198 -33305,7400:353,-3,45,0,0,0.199891 -33306,7400:352,-2,45,0,0,0.201688 -33307,7400:351,-1,45,0,0,0.200895 -33308,1400:351,0,45,0,0,0.200945 -33309,1400:351,1,45,0,0,0.198907 -33310,1400:352,2,45,0,0,0.201936 -33311,1400:353,3,45,0,0,0.196236 -33312,1400:354,4,45,0,0,0.19228 -33313,1400:455,5,45,0,0,0.193977 -33314,1400:457,7,45,0,0,0.162894 -33315,1401:353,13,45,0,0,0.168289 -33316,1401:354,14,45,0,0,0.180139 -33317,1401:455,15,45,0,0,0.187131 -33318,1401:456,16,45,0,0,0.189298 -33319,1414:455,145,45,0,0,0.0912546 -33320,1414:456,146,45,0,0,0.0966854 -33321,1414:457,147,45,0,0,0.093103 -33322,1414:458,148,45,0,0,0.0898502 -33323,1414:459,149,45,0,0,0.0920072 -33324,1415:350,150,45,0,0,0.0960504 -33325,1415:351,151,45,0,0,0.0993285 -33326,1415:352,152,45,0,0,0.100995 -33327,1415:353,153,45,0,0,0.101126 -33328,1415:354,154,45,0,0,0.088093 -33329,1415:458,158,45,0,0,0.0804543 -33330,1415:459,159,45,0,0,0.0877797 -33331,1416:350,160,45,0,0,0.0864398 -33332,1416:351,161,45,0,0,0.086936 -33333,1416:352,162,45,0,0,0.0866999 -33334,1416:455,165,45,0,0,0.0757937 -33335,1416:456,166,45,0,0,0.0828268 -33336,1416:457,167,45,0,0,0.0983402 -33337,1416:458,168,45,0,0,0.0961484 -33338,1416:459,169,45,0,0,0.102016 -33339,1417:350,170,45,0,0,0.0999645 -33340,1417:351,171,45,0,0,0.091596 -33341,1417:352,172,45,0,0,0.104586 -33342,1417:353,173,45,0,0,0.111576 -33343,1417:354,174,45,0,0,0.11365 -33344,1417:455,175,45,0,0,0.112066 -33345,1417:456,176,45,0,0,0.112322 -33346,1417:457,177,45,0,0,0.11419 -33347,1417:458,178,45,0,0,0.116697 -33348,1417:459,179,45,0,0,0.120205 -33349,1418:350,180,45,0,0,0.121044 -33350,7418:360,-180,46,0,0,0.114804 -33351,7417:469,-179,46,0,0,0.113031 -33352,7417:468,-178,46,0,0,0.105184 -33353,7417:467,-177,46,0,0,0.0985041 -33354,7417:466,-176,46,0,0,0.0993375 -33355,7417:465,-175,46,0,0,0.0993375 -33356,7417:364,-174,46,0,0,0.100011 -33357,7417:363,-173,46,0,0,0.100103 -33358,7417:362,-172,46,0,0,0.0952327 -33359,7417:361,-171,46,0,0,0.0875743 -33360,7417:360,-170,46,0,0,0.0805455 -33361,7416:467,-167,46,0,0,0.0791865 -33362,7416:466,-166,46,0,0,0.0802342 -33363,7416:465,-165,46,0,0,0.0799994 -33364,7415:466,-156,46,0,0,0.152034 -33365,7415:465,-155,46,0,0,0.15749 -33366,7415:364,-154,46,0,0,0.158886 -33367,7415:363,-153,46,0,0,0.163709 -33368,7415:362,-152,46,0,0,0.163161 -33369,7415:361,-151,46,0,0,0.160929 -33370,7415:360,-150,46,0,0,0.159863 -33371,7414:469,-149,46,0,0,0.158666 -33372,7414:468,-148,46,0,0,0.155848 -33373,7414:467,-147,46,0,0,0.154447 -33374,7414:466,-146,46,0,0,0.153845 -33375,7414:465,-145,46,0,0,0.157777 -33376,7414:364,-144,46,0,0,0.16399 -33377,7414:363,-143,46,0,0,0.166413 -33378,7414:362,-142,46,0,0,0.170123 -33379,7414:361,-141,46,0,0,0.168822 -33380,7414:360,-140,46,0,0,0.16937 -33381,7413:469,-139,46,0,0,0.175795 -33382,7413:468,-138,46,0,0,0.173706 -33383,7413:467,-137,46,0,0,0.16803 -33384,7408:363,-83,46,0,0,0.0814865 -33385,7408:362,-82,46,0,0,0.0854712 -33386,7408:361,-81,46,0,0,0.087083 -33387,7408:360,-80,46,0,0,0.0892387 -33388,7407:469,-79,46,0,0,0.0902963 -33389,7407:468,-78,46,0,0,0.0899677 -33390,7407:467,-77,46,0,0,0.0906092 -33391,7407:465,-75,46,0,0,0.0831865 -33392,7407:364,-74,46,0,0,0.0911525 -33393,7405:469,-59,46,0,0,0.0785371 -33394,7405:468,-58,46,0,0,0.0799012 -33395,7405:467,-57,46,0,0,0.0826008 -33396,7405:466,-56,46,0,0,0.144599 -33397,7405:465,-55,46,0,0,0.142904 -33398,7405:364,-54,46,0,0,0.129914 -33399,7405:363,-53,46,0,0,0.127483 -33400,7405:362,-52,46,0,0,0.125001 -33401,7405:361,-51,46,0,0,0.126549 -33402,7405:360,-50,46,0,0,0.126333 -33403,7404:469,-49,46,0,0,0.12697 -33404,7404:468,-48,46,0,0,0.13196 -33405,7404:467,-47,46,0,0,0.145798 -33406,7404:466,-46,46,0,0,0.155173 -33407,7404:465,-45,46,0,0,0.155335 -33408,7404:364,-44,46,0,0,0.141888 -33409,7404:361,-41,46,0,0,0.13714 -33410,7404:360,-40,46,0,0,0.161373 -33411,7403:469,-39,46,0,0,0.154085 -33412,7403:468,-38,46,0,0,0.137261 -33413,7403:467,-37,46,0,0,0.134679 -33414,7403:466,-36,46,0,0,0.134666 -33415,7403:465,-35,46,0,0,0.136182 -33416,7403:364,-34,46,0,0,0.138593 -33417,7403:363,-33,46,0,0,0.145478 -33418,7403:362,-32,46,0,0,0.156471 -33419,7403:361,-31,46,0,0,0.164809 -33420,7403:360,-30,46,0,0,0.184381 -33421,7402:469,-29,46,0,0,0.197356 -33422,7402:468,-28,46,0,0,0.202931 -33423,7402:467,-27,46,0,0,0.198743 -33424,7402:466,-26,46,0,0,0.190974 -33425,7402:465,-25,46,0,0,0.191372 -33426,7402:364,-24,46,0,0,0.18531 -33427,7402:363,-23,46,0,0,0.183579 -33428,7402:362,-22,46,0,0,0.188967 -33429,7402:361,-21,46,0,0,0.200269 -33430,7402:360,-20,46,0,0,0.200318 -33431,7401:469,-19,46,0,0,0.203864 -33432,7401:468,-18,46,0,0,0.209609 -33433,7401:467,-17,46,0,0,0.207489 -33434,7401:466,-16,46,0,0,0.225986 -33435,7401:465,-15,46,0,0,0.217249 -33436,7401:364,-14,46,0,0,0.215734 -33437,7401:363,-13,46,0,0,0.214606 -33438,7401:362,-12,46,0,0,0.220499 -33439,7401:361,-11,46,0,0,0.219283 -33440,7401:360,-10,46,0,0,0.215907 -33441,7400:469,-9,46,0,0,0.216047 -33442,7400:468,-8,46,0,0,0.222039 -33443,7400:467,-7,46,0,0,0.219829 -33444,7400:466,-6,46,0,0,0.217267 -33445,7400:465,-5,46,0,0,0.207236 -33446,7400:364,-4,46,0,0,0.20149 -33447,7400:363,-3,46,0,0,0.200697 -33448,7400:362,-2,46,0,0,0.201176 -33449,7400:361,-1,46,0,0,0.19894 -33450,1400:361,0,46,0,0,0.202218 -33451,1400:361,1,46,0,0,0.201341 -33452,1400:465,5,46,0,0,0.182181 -33453,1400:466,6,46,0,0,0.179912 -33454,1401:362,12,46,0,0,0.16186 -33455,1401:363,13,46,0,0,0.171213 -33456,1401:364,14,46,0,0,0.174134 -33457,1401:465,15,46,0,0,0.179624 -33458,1401:466,16,46,0,0,0.160776 -33459,1414:467,147,46,0,0,0.0820961 -33460,1414:468,148,46,0,0,0.0829908 -33461,1415:468,158,46,0,0,0.0797805 -33462,1415:469,159,46,0,0,0.0840999 -33463,1416:360,160,46,0,0,0.0838865 -33464,1416:361,161,46,0,0,0.0805761 -33465,1416:362,162,46,0,0,0.0789023 -33466,1416:363,163,46,0,0,0.0787978 -33467,1416:364,164,46,0,0,0.0794567 -33468,1417:363,173,46,0,0,0.0928172 -33469,1417:364,174,46,0,0,0.102952 -33470,1417:465,175,46,0,0,0.105999 -33471,1417:466,176,46,0,0,0.107498 -33472,1417:467,177,46,0,0,0.11035 -33473,1417:468,178,46,0,0,0.115254 -33474,1417:469,179,46,0,0,0.113878 -33475,1418:360,180,46,0,0,0.114804 -33476,7418:370,-180,47,0,0,0.108061 -33477,7417:479,-179,47,0,0,0.106663 -33478,7417:478,-178,47,0,0,0.0988331 -33479,7417:477,-177,47,0,0,0.0942458 -33480,7417:476,-176,47,0,0,0.0913826 -33481,7417:475,-175,47,0,0,0.0901866 -33482,7417:374,-174,47,0,0,0.0901699 -33483,7417:373,-173,47,0,0,0.0889385 -33484,7417:372,-172,47,0,0,0.0863265 -33485,7417:371,-171,47,0,0,0.0802948 -33486,7417:370,-170,47,0,0,0.0788053 -33487,7416:479,-169,47,0,0,0.0789099 -33488,7416:478,-168,47,0,0,0.0790444 -33489,7415:477,-157,47,0,0,0.113609 -33490,7415:476,-156,47,0,0,0.136497 -33491,7415:374,-154,47,0,0,0.165389 -33492,7415:373,-153,47,0,0,0.164004 -33493,7415:372,-152,47,0,0,0.165801 -33494,7415:371,-151,47,0,0,0.158927 -33495,7415:370,-150,47,0,0,0.153858 -33496,7414:479,-149,47,0,0,0.152167 -33497,7414:478,-148,47,0,0,0.154233 -33498,7414:477,-147,47,0,0,0.15597 -33499,7414:476,-146,47,0,0,0.153898 -33500,7414:475,-145,47,0,0,0.153404 -33501,7414:374,-144,47,0,0,0.159877 -33502,7414:373,-143,47,0,0,0.165234 -33503,7414:372,-142,47,0,0,0.172941 -33504,7414:371,-141,47,0,0,0.174075 -33505,7414:370,-140,47,0,0,0.175439 -33506,7408:374,-84,47,0,0,0.0809726 -33507,7408:373,-83,47,0,0,0.0867324 -33508,7408:372,-82,47,0,0,0.0883905 -33509,7408:371,-81,47,0,0,0.0888136 -33510,7408:370,-80,47,0,0,0.0893639 -33511,7407:479,-79,47,0,0,0.0896906 -33512,7407:478,-78,47,0,0,0.0896655 -33513,7407:477,-77,47,0,0,0.088374 -33514,7407:476,-76,47,0,0,0.0890885 -33515,7407:475,-75,47,0,0,0.0803708 -33516,7407:374,-74,47,0,0,0.0924975 -33517,7406:374,-64,47,0,0,0.0784108 -33518,7406:373,-63,47,0,0,0.0800901 -33519,7405:479,-59,47,0,0,0.078865 -33520,7405:478,-58,47,0,0,0.0797805 -33521,7405:477,-57,47,0,0,0.0813559 -33522,7405:476,-56,47,0,0,0.14703 -33523,7405:475,-55,47,0,0,0.14558 -33524,7405:374,-54,47,0,0,0.134033 -33525,7405:373,-53,47,0,0,0.131913 -33526,7405:372,-52,47,0,0,0.129022 -33527,7405:371,-51,47,0,0,0.125372 -33528,7405:370,-50,47,0,0,0.137042 -33529,7404:479,-49,47,0,0,0.13576 -33530,7404:478,-48,47,0,0,0.149247 -33531,7404:477,-47,47,0,0,0.154622 -33532,7404:476,-46,47,0,0,0.1416 -33533,7404:374,-44,47,0,0,0.0957472 -33534,7404:370,-40,47,0,0,0.139799 -33535,7403:479,-39,47,0,0,0.16937 -33536,7403:478,-38,47,0,0,0.15831 -33537,7403:477,-37,47,0,0,0.142678 -33538,7403:476,-36,47,0,0,0.135302 -33539,7403:475,-35,47,0,0,0.135519 -33540,7403:374,-34,47,0,0,0.13714 -33541,7403:373,-33,47,0,0,0.139293 -33542,7403:372,-32,47,0,0,0.145146 -33543,7403:371,-31,47,0,0,0.152087 -33544,7403:370,-30,47,0,0,0.171622 -33545,7402:479,-29,47,0,0,0.186118 -33546,7402:478,-28,47,0,0,0.198318 -33547,7402:477,-27,47,0,0,0.204816 -33548,7402:476,-26,47,0,0,0.204799 -33549,7402:475,-25,47,0,0,0.197405 -33550,7402:374,-24,47,0,0,0.192983 -33551,7402:373,-23,47,0,0,0.191594 -33552,7402:372,-22,47,0,0,0.191308 -33553,7402:371,-21,47,0,0,0.192791 -33554,7402:370,-20,47,0,0,0.194137 -33555,7401:479,-19,47,0,0,0.197812 -33556,7401:478,-18,47,0,0,0.200022 -33557,7401:477,-17,47,0,0,0.212036 -33558,7401:476,-16,47,0,0,0.223053 -33559,7401:475,-15,47,0,0,0.22259 -33560,7401:374,-14,47,0,0,0.219441 -33561,7401:373,-13,47,0,0,0.21851 -33562,7401:372,-12,47,0,0,0.208505 -33563,7401:371,-11,47,0,0,0.213051 -33564,7401:370,-10,47,0,0,0.185869 -33565,7400:479,-9,47,0,0,0.183933 -33566,7400:478,-8,47,0,0,0.190356 -33567,7400:477,-7,47,0,0,0.21024 -33568,7400:476,-6,47,0,0,0.215247 -33569,7400:374,-4,47,0,0,0.206007 -33570,7400:373,-3,47,0,0,0.202218 -33571,7400:372,-2,47,0,0,0.201209 -33572,7400:371,-1,47,0,0,0.196463 -33573,1400:371,0,47,0,0,0.200269 -33574,1401:372,12,47,0,0,0.173957 -33575,1401:374,14,47,0,0,0.173633 -33576,1401:475,15,47,0,0,0.18157 -33577,1416:370,160,47,0,0,0.0806445 -33578,1416:371,161,47,0,0,0.0818331 -33579,1416:372,162,47,0,0,0.0793439 -33580,1416:475,165,47,0,0,0.0797954 -33581,1417:475,175,47,0,0,0.0862696 -33582,1417:476,176,47,0,0,0.102243 -33583,1417:477,177,47,0,0,0.106126 -33584,1417:478,178,47,0,0,0.105087 -33585,1417:479,179,47,0,0,0.10318 -33586,1418:370,180,47,0,0,0.108061 -33587,7418:380,-180,48,0,0,0.0986503 -33588,7417:489,-179,48,0,0,0.0966228 -33589,7417:488,-178,48,0,0,0.0926616 -33590,7417:487,-177,48,0,0,0.090821 -33591,7417:486,-176,48,0,0,0.0882251 -33592,7417:485,-175,48,0,0,0.0844726 -33593,7417:384,-174,48,0,0,0.0806066 -33594,7417:383,-173,48,0,0,0.0792316 -33595,7417:382,-172,48,0,0,0.0786041 -33596,7417:381,-171,48,0,0,0.0780405 -33597,7417:380,-170,48,0,0,0.078344 -33598,7416:489,-169,48,0,0,0.079224 -33599,7415:486,-156,48,0,0,0.109315 -33600,7415:383,-153,48,0,0,0.167256 -33601,7415:382,-152,48,0,0,0.169399 -33602,7415:381,-151,48,0,0,0.17021 -33603,7415:380,-150,48,0,0,0.166399 -33604,7414:489,-149,48,0,0,0.156715 -33605,7414:488,-148,48,0,0,0.152871 -33606,7414:487,-147,48,0,0,0.152074 -33607,7414:486,-146,48,0,0,0.153711 -33608,7414:485,-145,48,0,0,0.15745 -33609,7414:384,-144,48,0,0,0.164357 -33610,7414:383,-143,48,0,0,0.174934 -33611,7414:382,-142,48,0,0,0.175409 -33612,7414:381,-141,48,0,0,0.174963 -33613,7413:487,-137,48,0,0,0.159106 -33614,7408:485,-85,48,0,0,0.0805455 -33615,7408:384,-84,48,0,0,0.0862212 -33616,7408:383,-83,48,0,0,0.0872546 -33617,7408:382,-82,48,0,0,0.0879446 -33618,7408:381,-81,48,0,0,0.0878126 -33619,7408:380,-80,48,0,0,0.0884319 -33620,7407:489,-79,48,0,0,0.0891885 -33621,7407:488,-78,48,0,0,0.0890384 -33622,7407:487,-77,48,0,0,0.0907193 -33623,7407:486,-76,48,0,0,0.0816944 -33624,7407:485,-75,48,0,0,0.0799164 -33625,7407:384,-74,48,0,0,0.0930424 -33626,7406:485,-65,48,0,0,0.0781588 -33627,7406:384,-64,48,0,0,0.0786936 -33628,7406:383,-63,48,0,0,0.0788053 -33629,7406:382,-62,48,0,0,0.0792464 -33630,7406:380,-60,48,0,0,0.077797 -33631,7405:489,-59,48,0,0,0.0791717 -33632,7405:488,-58,48,0,0,0.079149 -33633,7405:487,-57,48,0,0,0.0942809 -33634,7405:486,-56,48,0,0,0.149561 -33635,7405:485,-55,48,0,0,0.150163 -33636,7405:384,-54,48,0,0,0.144663 -33637,7405:383,-53,48,0,0,0.134164 -33638,7405:382,-52,48,0,0,0.140233 -33639,7405:381,-51,48,0,0,0.139985 -33640,7405:380,-50,48,0,0,0.141863 -33641,7404:489,-49,48,0,0,0.148376 -33642,7404:488,-48,48,0,0,0.153764 -33643,7404:487,-47,48,0,0,0.142904 -33644,7404:380,-40,48,0,0,0.116253 -33645,7403:489,-39,48,0,0,0.148648 -33646,7403:488,-38,48,0,0,0.169847 -33647,7403:487,-37,48,0,0,0.168145 -33648,7403:486,-36,48,0,0,0.159009 -33649,7403:485,-35,48,0,0,0.144472 -33650,7403:384,-34,48,0,0,0.142791 -33651,7403:383,-33,48,0,0,0.149078 -33652,7403:382,-32,48,0,0,0.142214 -33653,7403:381,-31,48,0,0,0.144269 -33654,7403:380,-30,48,0,0,0.155187 -33655,7402:489,-29,48,0,0,0.17529 -33656,7402:488,-28,48,0,0,0.190974 -33657,7402:487,-27,48,0,0,0.199398 -33658,7402:486,-26,48,0,0,0.20557 -33659,7402:485,-25,48,0,0,0.206141 -33660,7402:384,-24,48,0,0,0.20842 -33661,7402:383,-23,48,0,0,0.208946 -33662,7402:382,-22,48,0,0,0.209507 -33663,7402:381,-21,48,0,0,0.207912 -33664,7402:380,-20,48,0,0,0.208861 -33665,7401:489,-19,48,0,0,0.205654 -33666,7401:488,-18,48,0,0,0.204515 -33667,7401:487,-17,48,0,0,0.217337 -33668,7401:486,-16,48,0,0,0.220252 -33669,7401:485,-15,48,0,0,0.216656 -33670,7401:384,-14,48,0,0,0.215108 -33671,7401:383,-13,48,0,0,0.208319 -33672,7401:382,-12,48,0,0,0.200022 -33673,7401:381,-11,48,0,0,0.18746 -33674,7401:380,-10,48,0,0,0.183563 -33675,7400:489,-9,48,0,0,0.180777 -33676,7400:488,-8,48,0,0,0.17672 -33677,7400:487,-7,48,0,0,0.19491 -33678,7400:486,-6,48,0,0,0.204983 -33679,7400:485,-5,48,0,0,0.214208 -33680,7400:384,-4,48,0,0,0.211231 -33681,7400:383,-3,48,0,0,0.206713 -33682,7400:382,-2,48,0,0,0.208369 -33683,7400:381,-1,48,0,0,0.196446 -33684,1401:382,12,48,0,0,0.165134 -33685,1401:383,13,48,0,0,0.174445 -33686,1401:384,14,48,0,0,0.176392 -33687,1401:485,15,48,0,0,0.181387 -33688,1401:486,16,48,0,0,0.152658 -33689,1401:487,17,48,0,0,0.155268 -33690,1401:488,18,48,0,0,0.170428 -33691,1416:486,166,48,0,0,0.082554 -33692,1417:489,179,48,0,0,0.0883657 -33693,1418:380,180,48,0,0,0.0986503 -33694,7418:390,-180,49,0,0,0.0920502 -33695,7417:499,-179,49,0,0,0.0918186 -33696,7417:498,-178,49,0,0,0.0899258 -33697,7417:497,-177,49,0,0,0.0869116 -33698,7417:496,-176,49,0,0,0.0847672 -33699,7417:495,-175,49,0,0,0.0810875 -33700,7417:394,-174,49,0,0,0.0785074 -33701,7417:393,-173,49,0,0,0.0762196 -33702,7417:392,-172,49,0,0,0.0764659 -33703,7417:391,-171,49,0,0,0.0768367 -33704,7417:390,-170,49,0,0,0.0777158 -33705,7416:499,-169,49,0,0,0.0787978 -33706,7415:496,-156,49,0,0,0.0896821 -33707,7415:392,-152,49,0,0,0.153724 -33708,7415:391,-151,49,0,0,0.166969 -33709,7415:390,-150,49,0,0,0.170689 -33710,7414:499,-149,49,0,0,0.170907 -33711,7414:498,-148,49,0,0,0.170937 -33712,7414:497,-147,49,0,0,0.168922 -33713,7414:496,-146,49,0,0,0.171082 -33714,7414:495,-145,49,0,0,0.173235 -33715,7414:394,-144,49,0,0,0.174845 -33716,7414:393,-143,49,0,0,0.1748 -33717,7408:496,-86,49,0,0,0.0801054 -33718,7408:495,-85,49,0,0,0.0849906 -33719,7408:394,-84,49,0,0,0.0869686 -33720,7408:393,-83,49,0,0,0.0868221 -33721,7408:392,-82,49,0,0,0.0877057 -33722,7408:391,-81,49,0,0,0.0875498 -33723,7408:390,-80,49,0,0,0.0888219 -33724,7407:499,-79,49,0,0,0.08903 -33725,7407:498,-78,49,0,0,0.0885728 -33726,7407:497,-77,49,0,0,0.0895312 -33727,7407:496,-76,49,0,0,0.0898668 -33728,7407:495,-75,49,0,0,0.0892803 -33729,7406:495,-65,49,0,0,0.0773559 -33730,7406:394,-64,49,0,0,0.0793215 -33731,7406:393,-63,49,0,0,0.0802798 -33732,7406:392,-62,49,0,0,0.081034 -33733,7406:391,-61,49,0,0,0.0811104 -33734,7406:390,-60,49,0,0,0.0799088 -33735,7405:499,-59,49,0,0,0.0794342 -33736,7405:498,-58,49,0,0,0.0808048 -33737,7405:497,-57,49,0,0,0.109515 -33738,7405:496,-56,49,0,0,0.148 -33739,7405:495,-55,49,0,0,0.150701 -33740,7405:394,-54,49,0,0,0.150242 -33741,7405:393,-53,49,0,0,0.149993 -33742,7405:392,-52,49,0,0,0.150662 -33743,7405:391,-51,49,0,0,0.150071 -33744,7405:390,-50,49,0,0,0.151294 -33745,7404:499,-49,49,0,0,0.153257 -33746,7404:498,-48,49,0,0,0.153404 -33747,7404:497,-47,49,0,0,0.142553 -33748,7403:499,-39,49,0,0,0.112599 -33749,7403:498,-38,49,0,0,0.172002 -33750,7403:497,-37,49,0,0,0.17275 -33751,7403:496,-36,49,0,0,0.173367 -33752,7403:495,-35,49,0,0,0.172823 -33753,7403:394,-34,49,0,0,0.171608 -33754,7403:393,-33,49,0,0,0.170864 -33755,7403:392,-32,49,0,0,0.159574 -33756,7403:391,-31,49,0,0,0.155308 -33757,7403:390,-30,49,0,0,0.160485 -33758,7402:499,-29,49,0,0,0.182396 -33759,7402:498,-28,49,0,0,0.190832 -33760,7402:497,-27,49,0,0,0.203531 -33761,7402:496,-26,49,0,0,0.1984 -33762,7402:495,-25,49,0,0,0.194926 -33763,7402:394,-24,49,0,0,0.194411 -33764,7402:393,-23,49,0,0,0.195895 -33765,7402:392,-22,49,0,0,0.186678 -33766,7402:390,-20,49,0,0,0.188967 -33767,7401:499,-19,49,0,0,0.199924 -33768,7401:498,-18,49,0,0,0.211419 -33769,7401:497,-17,49,0,0,0.216447 -33770,7401:496,-16,49,0,0,0.213655 -33771,7401:495,-15,49,0,0,0.172985 -33772,7401:394,-14,49,0,0,0.176302 -33773,7401:393,-13,49,0,0,0.178989 -33774,7401:392,-12,49,0,0,0.186367 -33775,7401:391,-11,49,0,0,0.187522 -33776,7401:390,-10,49,0,0,0.178265 -33777,7400:499,-9,49,0,0,0.171797 -33778,7400:498,-8,49,0,0,0.167786 -33779,7400:497,-7,49,0,0,0.174519 -33780,7400:496,-6,49,0,0,0.196446 -33781,7400:495,-5,49,0,0,0.205285 -33782,7400:394,-4,49,0,0,0.20881 -33783,7400:393,-3,49,0,0,0.203447 -33784,7400:392,-2,49,0,0,0.198874 -33785,7400:391,-1,49,0,0,0.200055 -33786,1401:392,12,49,0,0,0.131983 -33787,1401:393,13,49,0,0,0.168663 -33788,1401:394,14,49,0,0,0.179064 -33789,1401:495,15,49,0,0,0.177484 -33790,1401:497,17,49,0,0,0.147818 -33791,1401:498,18,49,0,0,0.142126 -33792,1417:498,178,49,0,0,0.0767056 -33793,1417:499,179,49,0,0,0.0812638 -33794,1418:390,180,49,0,0,0.0920502 -33795,7518:100,-180,50,0,0,0.0828971 -33796,7517:209,-179,50,0,0,0.086651 -33797,7517:208,-178,50,0,0,0.0873283 -33798,7517:207,-177,50,0,0,0.0865617 -33799,7517:206,-176,50,0,0,0.0834298 -33800,7517:205,-175,50,0,0,0.0815327 -33801,7517:104,-174,50,0,0,0.0764732 -33802,7517:103,-173,50,0,0,0.076386 -33803,7517:102,-172,50,0,0,0.0760967 -33804,7517:101,-171,50,0,0,0.0763208 -33805,7517:100,-170,50,0,0,0.0766839 -33806,7516:209,-169,50,0,0,0.07751 -33807,7516:207,-167,50,0,0,0.0798408 -33808,7515:102,-152,50,0,0,0.139293 -33809,7508:207,-87,50,0,0,0.0820883 -33810,7508:206,-86,50,0,0,0.0854151 -33811,7508:205,-85,50,0,0,0.086132 -33812,7508:104,-84,50,0,0,0.0860837 -33813,7508:103,-83,50,0,0,0.0860514 -33814,7508:102,-82,50,0,0,0.0869686 -33815,7508:101,-81,50,0,0,0.0871648 -33816,7508:100,-80,50,0,0,0.0882582 -33817,7507:209,-79,50,0,0,0.0889802 -33818,7507:208,-78,50,0,0,0.089105 -33819,7507:207,-77,50,0,0,0.0890384 -33820,7507:206,-76,50,0,0,0.0890801 -33821,7507:205,-75,50,0,0,0.0874924 -33822,7507:104,-74,50,0,0,0.0790743 -33823,7506:104,-64,50,0,0,0.0793966 -33824,7506:103,-63,50,0,0,0.0791417 -33825,7506:102,-62,50,0,0,0.0786636 -33826,7506:101,-61,50,0,0,0.0782033 -33827,7506:100,-60,50,0,0,0.0785521 -33828,7505:209,-59,50,0,0,0.0813788 -33829,7505:208,-58,50,0,0,0.102677 -33830,7505:207,-57,50,0,0,0.120531 -33831,7505:206,-56,50,0,0,0.122616 -33832,7505:205,-55,50,0,0,0.151783 -33833,7505:104,-54,50,0,0,0.152366 -33834,7505:103,-53,50,0,0,0.15173 -33835,7505:102,-52,50,0,0,0.151637 -33836,7505:101,-51,50,0,0,0.152259 -33837,7505:100,-50,50,0,0,0.15311 -33838,7504:209,-49,50,0,0,0.152937 -33839,7504:208,-48,50,0,0,0.1459 -33840,7503:208,-38,50,0,0,0.115244 -33841,7503:207,-37,50,0,0,0.138974 -33842,7503:206,-36,50,0,0,0.141451 -33843,7503:205,-35,50,0,0,0.171973 -33844,7503:104,-34,50,0,0,0.172471 -33845,7503:103,-33,50,0,0,0.179684 -33846,7503:102,-32,50,0,0,0.181601 -33847,7503:101,-31,50,0,0,0.181768 -33848,7503:100,-30,50,0,0,0.181387 -33849,7502:209,-29,50,0,0,0.187851 -33850,7502:208,-28,50,0,0,0.198155 -33851,7502:207,-27,50,0,0,0.196917 -33852,7502:206,-26,50,0,0,0.183579 -33853,7502:205,-25,50,0,0,0.185402 -33854,7502:104,-24,50,0,0,0.17443 -33855,7501:207,-17,50,0,0,0.130496 -33856,7501:206,-16,50,0,0,0.170137 -33857,7501:205,-15,50,0,0,0.176765 -33858,7501:104,-14,50,0,0,0.120249 -33859,7501:103,-13,50,0,0,0.12908 -33860,7501:102,-12,50,0,0,0.129369 -33861,7501:101,-11,50,0,0,0.130228 -33862,7501:100,-10,50,0,0,0.14926 -33863,7500:209,-9,50,0,0,0.156878 -33864,7500:208,-8,50,0,0,0.165134 -33865,7500:207,-7,50,0,0,0.185806 -33866,7500:206,-6,50,0,0,0.191372 -33867,7500:205,-5,50,0,0,0.194781 -33868,7500:104,-4,50,0,0,0.197796 -33869,7500:103,-3,50,0,0,0.200566 -33870,7500:102,-2,50,0,0,0.202749 -33871,7500:101,-1,50,0,0,0.204615 -33872,1501:102,12,50,0,0,0.16079 -33873,1501:103,13,50,0,0,0.158982 -33874,1501:104,14,50,0,0,0.166399 -33875,1501:205,15,50,0,0,0.177199 -33876,1501:206,16,50,0,0,0.160707 -33877,1517:207,177,50,0,0,0.0804466 -33878,1517:208,178,50,0,0,0.077679 -33879,1517:209,179,50,0,0,0.0778929 -33880,1518:100,180,50,0,0,0.0828971 -33881,7518:110,-180,51,0,0,0.0767785 -33882,7517:219,-179,51,0,0,0.077797 -33883,7517:218,-178,51,0,0,0.0768732 -33884,7517:215,-175,51,0,0,0.0761689 -33885,7517:114,-174,51,0,0,0.078448 -33886,7517:113,-173,51,0,0,0.0784258 -33887,7517:112,-172,51,0,0,0.0773559 -33888,7517:111,-171,51,0,0,0.0764949 -33889,7517:110,-170,51,0,0,0.0763789 -33890,7516:219,-169,51,0,0,0.0763064 -33891,7516:218,-168,51,0,0,0.0769825 -33892,7516:217,-167,51,0,0,0.0776421 -33893,7516:216,-166,51,0,0,0.0781884 -33894,7508:219,-89,51,0,0,0.0811487 -33895,7508:218,-88,51,0,0,0.0817097 -33896,7508:217,-87,51,0,0,0.0844806 -33897,7508:216,-86,51,0,0,0.0843536 -33898,7508:215,-85,51,0,0,0.0845362 -33899,7508:114,-84,51,0,0,0.0850545 -33900,7508:113,-83,51,0,0,0.0858656 -33901,7508:112,-82,51,0,0,0.0864561 -33902,7508:111,-81,51,0,0,0.0867975 -33903,7508:110,-80,51,0,0,0.0870013 -33904,7507:219,-79,51,0,0,0.0874186 -33905,7507:218,-78,51,0,0,0.0882498 -33906,7507:217,-77,51,0,0,0.0888719 -33907,7507:216,-76,51,0,0,0.0821812 -33908,7507:215,-75,51,0,0,0.0868791 -33909,7507:114,-74,51,0,0,0.0869933 -33910,7507:113,-73,51,0,0,0.0810646 -33911,7506:215,-65,51,0,0,0.079562 -33912,7506:114,-64,51,0,0,0.0782551 -33913,7506:113,-63,51,0,0,0.0781884 -33914,7506:112,-62,51,0,0,0.0781218 -33915,7506:111,-61,51,0,0,0.0783737 -33916,7506:110,-60,51,0,0,0.079149 -33917,7505:219,-59,51,0,0,0.0780701 -33918,7505:218,-58,51,0,0,0.0791717 -33919,7505:217,-57,51,0,0,0.0819182 -33920,7505:216,-56,51,0,0,0.1056 -33921,7505:215,-55,51,0,0,0.132136 -33922,7505:114,-54,51,0,0,0.15015 -33923,7505:113,-53,51,0,0,0.152206 -33924,7505:112,-52,51,0,0,0.152512 -33925,7505:111,-51,51,0,0,0.152831 -33926,7505:110,-50,51,0,0,0.152897 -33927,7504:219,-49,51,0,0,0.150071 -33928,7504:218,-48,51,0,0,0.135386 -33929,7503:217,-37,51,0,0,0.112774 -33930,7503:216,-36,51,0,0,0.160957 -33931,7503:215,-35,51,0,0,0.153671 -33932,7503:114,-34,51,0,0,0.154528 -33933,7503:113,-33,51,0,0,0.154072 -33934,7503:112,-32,51,0,0,0.178025 -33935,7503:111,-31,51,0,0,0.185635 -33936,7503:110,-30,51,0,0,0.185387 -33937,7502:219,-29,51,0,0,0.189961 -33938,7502:218,-28,51,0,0,0.194958 -33939,7502:217,-27,51,0,0,0.182411 -33940,7502:216,-26,51,0,0,0.171871 -33941,7502:215,-25,51,0,0,0.154675 -33942,7502:114,-24,51,0,0,0.126061 -33943,7501:216,-16,51,0,0,0.120129 -33944,7501:215,-15,51,0,0,0.111454 -33945,7501:114,-14,51,0,0,0.114158 -33946,7501:113,-13,51,0,0,0.120837 -33947,7501:112,-12,51,0,0,0.1249 -33948,7501:111,-11,51,0,0,0.145478 -33949,7501:110,-10,51,0,0,0.150636 -33950,7500:219,-9,51,0,0,0.157859 -33951,7500:218,-8,51,0,0,0.161804 -33952,7500:217,-7,51,0,0,0.174741 -33953,7500:216,-6,51,0,0,0.18064 -33954,7500:215,-5,51,0,0,0.181417 -33955,7500:114,-4,51,0,0,0.185496 -33956,7500:113,-3,51,0,0,0.195588 -33957,7500:112,-2,51,0,0,0.197421 -33958,7500:111,-1,51,0,0,0.20358 -33959,1500:111,0,51,0,0,0.200533 -33960,1501:110,10,51,0,0,0.149013 -33961,1501:111,11,51,0,0,0.155011 -33962,1501:112,12,51,0,0,0.157681 -33963,1501:113,13,51,0,0,0.125609 -33964,1501:114,14,51,0,0,0.12146 -33965,1501:215,15,51,0,0,0.12967 -33966,1501:216,16,51,0,0,0.147676 -33967,1501:217,17,51,0,0,0.169124 -33968,1517:219,179,51,0,0,0.0773118 -33969,1518:110,180,51,0,0,0.0767785 -33970,7517:124,-174,52,0,0,0.0766548 -33971,7517:123,-173,52,0,0,0.0776864 -33972,7517:122,-172,52,0,0,0.0775394 -33973,7517:121,-171,52,0,0,0.0762267 -33974,7508:229,-89,52,0,0,0.0813329 -33975,7508:228,-88,52,0,0,0.0831865 -33976,7508:227,-87,52,0,0,0.0833277 -33977,7508:226,-86,52,0,0,0.0832649 -33978,7508:225,-85,52,0,0,0.0844649 -33979,7508:124,-84,52,0,0,0.0852548 -33980,7508:123,-83,52,0,0,0.0854472 -33981,7508:122,-82,52,0,0,0.0863265 -33982,7508:121,-81,52,0,0,0.0860997 -33983,7508:120,-80,52,0,0,0.0857849 -33984,7507:229,-79,52,0,0,0.0861078 -33985,7507:228,-78,52,0,0,0.0850864 -33986,7507:227,-77,52,0,0,0.0863831 -33987,7507:226,-76,52,0,0,0.0855597 -33988,7507:225,-75,52,0,0,0.0841712 -33989,7507:124,-74,52,0,0,0.0877797 -33990,7507:123,-73,52,0,0,0.087181 -33991,7506:225,-65,52,0,0,0.0788203 -33992,7506:124,-64,52,0,0,0.0787605 -33993,7506:123,-63,52,0,0,0.0782551 -33994,7506:120,-60,52,0,0,0.0794792 -33995,7505:229,-59,52,0,0,0.076205 -33996,7505:228,-58,52,0,0,0.0774952 -33997,7505:227,-57,52,0,0,0.0773044 -33998,7505:226,-56,52,0,0,0.0777527 -33999,7505:225,-55,52,0,0,0.085648 -34000,7505:124,-54,52,0,0,0.123871 -34001,7505:123,-53,52,0,0,0.140418 -34002,7505:122,-52,52,0,0,0.150543 -34003,7505:121,-51,52,0,0,0.151756 -34004,7505:120,-50,52,0,0,0.151518 -34005,7504:229,-49,52,0,0,0.144764 -34006,7504:228,-48,52,0,0,0.131115 -34007,7503:124,-34,52,0,0,0.0904399 -34008,7503:123,-33,52,0,0,0.100149 -34009,7503:122,-32,52,0,0,0.104894 -34010,7503:121,-31,52,0,0,0.104904 -34011,7503:120,-30,52,0,0,0.10165 -34012,7502:229,-29,52,0,0,0.0874103 -34013,7502:228,-28,52,0,0,0.0879692 -34014,7502:227,-27,52,0,0,0.113258 -34015,7502:226,-26,52,0,0,0.168159 -34016,7502:225,-25,52,0,0,0.138777 -34017,7502:124,-24,52,0,0,0.137225 -34018,7502:123,-23,52,0,0,0.1176 -34019,7502:122,-22,52,0,0,0.123804 -34020,7501:227,-17,52,0,0,0.119566 -34021,7501:226,-16,52,0,0,0.115149 -34022,7501:225,-15,52,0,0,0.110592 -34023,7501:124,-14,52,0,0,0.116771 -34024,7501:123,-13,52,0,0,0.115569 -34025,7501:122,-12,52,0,0,0.116761 -34026,7501:121,-11,52,0,0,0.127918 -34027,7501:120,-10,52,0,0,0.155605 -34028,7500:229,-9,52,0,0,0.160693 -34029,7500:228,-8,52,0,0,0.165064 -34030,7500:227,-7,52,0,0,0.168677 -34031,7500:226,-6,52,0,0,0.173588 -34032,7500:225,-5,52,0,0,0.175052 -34033,7500:124,-4,52,0,0,0.17678 -34034,7500:123,-3,52,0,0,0.174845 -34035,7500:122,-2,52,0,0,0.17114 -34036,7500:121,-1,52,0,0,0.200829 -34037,1500:121,0,52,0,0,0.200664 -34038,1500:121,1,52,0,0,0.189818 -34039,1500:122,2,52,0,0,0.162335 -34040,1501:120,10,52,0,0,0.160374 -34041,1501:121,11,52,0,0,0.157164 -34042,1501:122,12,52,0,0,0.16043 -34043,1501:123,13,52,0,0,0.133165 -34044,1501:228,18,52,0,0,0.163329 -34045,1501:229,19,52,0,0,0.160568 -34046,1517:229,179,52,0,0,0.0769899 -34047,7517:237,-177,53,0,0,0.0773778 -34048,7517:133,-173,53,0,0,0.077063 -34049,7517:132,-172,53,0,0,0.0760967 -34050,7508:239,-89,53,0,0,0.0817561 -34051,7508:238,-88,53,0,0,0.0824762 -34052,7508:237,-87,53,0,0,0.0833432 -34053,7508:236,-86,53,0,0,0.0841159 -34054,7508:235,-85,53,0,0,0.0847354 -34055,7508:134,-84,53,0,0,0.0845682 -34056,7508:133,-83,53,0,0,0.0848709 -34057,7508:132,-82,53,0,0,0.0846476 -34058,7508:131,-81,53,0,0,0.0849109 -34059,7508:130,-80,53,0,0,0.0848867 -34060,7507:239,-79,53,0,0,0.0844966 -34061,7507:238,-78,53,0,0,0.0836499 -34062,7507:237,-77,53,0,0,0.0847113 -34063,7507:236,-76,53,0,0,0.0837918 -34064,7507:235,-75,53,0,0,0.0829987 -34065,7507:134,-74,53,0,0,0.0847431 -34066,7507:133,-73,53,0,0,0.0843854 -34067,7507:132,-72,53,0,0,0.078783 -34068,7506:236,-66,53,0,0,0.0795921 -34069,7506:235,-65,53,0,0,0.078448 -34070,7506:131,-61,53,0,0,0.0790892 -34071,7505:238,-58,53,0,0,0.0760099 -34072,7505:237,-57,53,0,0,0.0772532 -34073,7505:236,-56,53,0,0,0.0769315 -34074,7505:235,-55,53,0,0,0.0774291 -34075,7505:134,-54,53,0,0,0.0792316 -34076,7505:133,-53,53,0,0,0.0884072 -34077,7505:132,-52,53,0,0,0.144345 -34078,7505:131,-51,53,0,0,0.145682 -34079,7505:130,-50,53,0,0,0.149809 -34080,7504:239,-49,53,0,0,0.140505 -34081,7504:238,-48,53,0,0,0.117547 -34082,7503:132,-32,53,0,0,0.0810646 -34083,7503:131,-31,53,0,0,0.0831081 -34084,7503:130,-30,53,0,0,0.0910844 -34085,7502:239,-29,53,0,0,0.0846238 -34086,7502:238,-28,53,0,0,0.0813788 -34087,7502:237,-27,53,0,0,0.079577 -34088,7502:236,-26,53,0,0,0.0845602 -34089,7502:235,-25,53,0,0,0.123148 -34090,7502:134,-24,53,0,0,0.140729 -34091,7502:133,-23,53,0,0,0.14254 -34092,7502:132,-22,53,0,0,0.129138 -34093,7502:131,-21,53,0,0,0.118284 -34094,7502:130,-20,53,0,0,0.127415 -34095,7501:239,-19,53,0,0,0.122815 -34096,7501:238,-18,53,0,0,0.119188 -34097,7501:237,-17,53,0,0,0.117526 -34098,7501:236,-16,53,0,0,0.110048 -34099,7501:235,-15,53,0,0,0.105126 -34100,7501:134,-14,53,0,0,0.111373 -34101,7501:133,-13,53,0,0,0.111923 -34102,7501:132,-12,53,0,0,0.123303 -34103,7501:131,-11,53,0,0,0.129415 -34104,7501:130,-10,53,0,0,0.14649 -34105,7500:239,-9,53,0,0,0.157068 -34106,7500:238,-8,53,0,0,0.161791 -34107,7500:237,-7,53,0,0,0.164611 -34108,7500:236,-6,53,0,0,0.152977 -34109,7500:235,-5,53,0,0,0.160943 -34110,7500:134,-4,53,0,0,0.162993 -34111,7500:133,-3,53,0,0,0.1695 -34112,7500:132,-2,53,0,0,0.18093 -34113,7500:131,-1,53,0,0,0.193897 -34114,1500:131,0,53,0,0,0.193319 -34115,1500:131,1,53,0,0,0.198139 -34116,1500:132,2,53,0,0,0.195847 -34117,1501:130,10,53,0,0,0.154917 -34118,1501:131,11,53,0,0,0.158228 -34119,1501:132,12,53,0,0,0.147547 -34120,1501:239,19,53,0,0,0.13792 -34121,1502:130,20,53,0,0,0.140022 -34122,7517:248,-178,54,0,0,0.0765093 -34123,7517:247,-177,54,0,0,0.0767056 -34124,7517:246,-176,54,0,0,0.0768806 -34125,7517:245,-175,54,0,0,0.0769754 -34126,7517:144,-174,54,0,0,0.0770704 -34127,7517:143,-173,54,0,0,0.0769168 -34128,7517:142,-172,54,0,0,0.0765603 -34129,7517:141,-171,54,0,0,0.0763427 -34130,7517:140,-170,54,0,0,0.0762775 -34131,7516:249,-169,54,0,0,0.0762267 -34132,7516:248,-168,54,0,0,0.0762991 -34133,7509:141,-91,54,0,0,0.0779519 -34134,7509:140,-90,54,0,0,0.0780184 -34135,7508:249,-89,54,0,0,0.083532 -34136,7508:248,-88,54,0,0,0.0825851 -34137,7508:247,-87,54,0,0,0.0829908 -34138,7508:246,-86,54,0,0,0.0835555 -34139,7508:245,-85,54,0,0,0.0834063 -34140,7508:144,-84,54,0,0,0.0837288 -34141,7508:143,-83,54,0,0,0.0835634 -34142,7508:142,-82,54,0,0,0.0832336 -34143,7508:141,-81,54,0,0,0.0836737 -34144,7508:140,-80,54,0,0,0.0837446 -34145,7507:249,-79,54,0,0,0.0829596 -34146,7507:248,-78,54,0,0,0.0824918 -34147,7507:247,-77,54,0,0,0.0815635 -34148,7507:246,-76,54,0,0,0.0815017 -34149,7507:245,-75,54,0,0,0.0817252 -34150,7507:144,-74,54,0,0,0.0812713 -34151,7507:143,-73,54,0,0,0.082251 -34152,7507:142,-72,54,0,0,0.0830064 -34153,7506:249,-69,54,0,0,0.0794567 -34154,7506:248,-68,54,0,0,0.079871 -34155,7506:247,-67,54,0,0,0.0804012 -34156,7506:246,-66,54,0,0,0.0783886 -34157,7506:245,-65,54,0,0,0.0797427 -34158,7505:248,-58,54,0,0,0.0768149 -34159,7505:247,-57,54,0,0,0.077856 -34160,7505:246,-56,54,0,0,0.0771873 -34161,7505:245,-55,54,0,0,0.0770046 -34162,7505:144,-54,54,0,0,0.0771799 -34163,7505:143,-53,54,0,0,0.0770338 -34164,7505:142,-52,54,0,0,0.0849986 -34165,7505:141,-51,54,0,0,0.137188 -34166,7505:140,-50,54,0,0,0.147237 -34167,7504:249,-49,54,0,0,0.134284 -34168,7504:248,-48,54,0,0,0.108846 -34169,7503:141,-31,54,0,0,0.0772018 -34170,7503:140,-30,54,0,0,0.0777232 -34171,7502:249,-29,54,0,0,0.0769024 -34172,7502:248,-28,54,0,0,0.0765093 -34173,7502:247,-27,54,0,0,0.076386 -34174,7502:246,-26,54,0,0,0.0764732 -34175,7502:245,-25,54,0,0,0.076553 -34176,7502:144,-24,54,0,0,0.0817019 -34177,7502:143,-23,54,0,0,0.0877551 -34178,7502:142,-22,54,0,0,0.0965598 -34179,7502:141,-21,54,0,0,0.103028 -34180,7502:140,-20,54,0,0,0.095623 -34181,7501:249,-19,54,0,0,0.0998351 -34182,7501:248,-18,54,0,0,0.0981943 -34183,7501:247,-17,54,0,0,0.103123 -34184,7501:246,-16,54,0,0,0.1053 -34185,7501:245,-15,54,0,0,0.108597 -34186,7501:144,-14,54,0,0,0.112969 -34187,7501:143,-13,54,0,0,0.117739 -34188,7501:142,-12,54,0,0,0.123281 -34189,7501:141,-11,54,0,0,0.132066 -34190,7501:140,-10,54,0,0,0.14544 -34191,7500:249,-9,54,0,0,0.149652 -34192,7500:248,-8,54,0,0,0.148259 -34193,7500:247,-7,54,0,0,0.150504 -34194,7500:246,-6,54,0,0,0.154501 -34195,7500:245,-5,54,0,0,0.155335 -34196,7500:144,-4,54,0,0,0.166884 -34197,7500:143,-3,54,0,0,0.175825 -34198,7500:142,-2,54,0,0,0.19356 -34199,7500:141,-1,54,0,0,0.188212 -34200,1500:141,0,54,0,0,0.18685 -34201,1500:141,1,54,0,0,0.195782 -34202,1500:142,2,54,0,0,0.187647 -34203,1501:140,10,54,0,0,0.130414 -34204,1501:141,11,54,0,0,0.134069 -34205,7518:350,-180,55,0,0,0.0768732 -34206,7517:459,-179,55,0,0,0.0768149 -34207,7517:458,-178,55,0,0,0.0767858 -34208,7517:457,-177,55,0,0,0.0767274 -34209,7517:456,-176,55,0,0,0.0771799 -34210,7517:455,-175,55,0,0,0.0775465 -34211,7517:354,-174,55,0,0,0.07751 -34212,7517:353,-173,55,0,0,0.0772459 -34213,7517:352,-172,55,0,0,0.0772166 -34214,7517:351,-171,55,0,0,0.0768149 -34215,7517:350,-170,55,0,0,0.0763064 -34216,7509:351,-91,55,0,0,0.0787307 -34217,7509:350,-90,55,0,0,0.0832649 -34218,7508:459,-89,55,0,0,0.0833825 -34219,7508:458,-88,55,0,0,0.0819335 -34220,7508:457,-87,55,0,0,0.082282 -34221,7508:456,-86,55,0,0,0.0827176 -34222,7508:455,-85,55,0,0,0.0830768 -34223,7508:354,-84,55,0,0,0.0832023 -34224,7508:353,-83,55,0,0,0.0828347 -34225,7508:352,-82,55,0,0,0.0821271 -34226,7508:351,-81,55,0,0,0.0821037 -34227,7508:350,-80,55,0,0,0.0824683 -34228,7507:459,-79,55,0,0,0.0821271 -34229,7507:458,-78,55,0,0,0.08181 -34230,7507:457,-77,55,0,0,0.0808581 -34231,7507:456,-76,55,0,0,0.0805761 -34232,7507:455,-75,55,0,0,0.0807131 -34233,7507:354,-74,55,0,0,0.0808276 -34234,7507:352,-72,55,0,0,0.0813711 -34235,7507:351,-71,55,0,0,0.0810875 -34236,7507:350,-70,55,0,0,0.0789322 -34237,7506:459,-69,55,0,0,0.0794342 -34238,7506:458,-68,55,0,0,0.0787532 -34239,7506:457,-67,55,0,0,0.078085 -34240,7506:456,-66,55,0,0,0.0787755 -34241,7506:455,-65,55,0,0,0.0758946 -34242,7505:458,-58,55,0,0,0.0788128 -34243,7505:455,-55,55,0,0,0.0762558 -34244,7505:354,-54,55,0,0,0.0770922 -34245,7505:353,-53,55,0,0,0.077136 -34246,7505:352,-52,55,0,0,0.0817252 -34247,7505:351,-51,55,0,0,0.0992915 -34248,7505:350,-50,55,0,0,0.132231 -34249,7504:459,-49,55,0,0,0.132656 -34250,7504:458,-48,55,0,0,0.108986 -34251,7502:456,-26,55,0,0,0.0763064 -34252,7502:455,-25,55,0,0,0.0762918 -34253,7502:354,-24,55,0,0,0.0765384 -34254,7502:353,-23,55,0,0,0.0769899 -34255,7502:352,-22,55,0,0,0.0782476 -34256,7502:351,-21,55,0,0,0.0815557 -34257,7502:350,-20,55,0,0,0.0879775 -34258,7501:459,-19,55,0,0,0.0981036 -34259,7501:458,-18,55,0,0,0.101088 -34260,7501:457,-17,55,0,0,0.104471 -34261,7501:456,-16,55,0,0,0.107075 -34262,7501:455,-15,55,0,0,0.109696 -34263,7501:354,-14,55,0,0,0.112107 -34264,7501:353,-13,55,0,0,0.116686 -34265,7501:352,-12,55,0,0,0.122329 -34266,7501:351,-11,55,0,0,0.12945 -34267,7501:350,-10,55,0,0,0.137481 -34268,7500:459,-9,55,0,0,0.141202 -34269,7500:458,-8,55,0,0,0.143901 -34270,7500:457,-7,55,0,0,0.147508 -34271,7500:456,-6,55,0,0,0.154917 -34272,7500:455,-5,55,0,0,0.16556 -34273,7500:354,-4,55,0,0,0.170646 -34274,7500:353,-3,55,0,0,0.174489 -34275,7500:352,-2,55,0,0,0.186678 -34276,7500:351,-1,55,0,0,0.185434 -34277,1500:351,0,55,0,0,0.183579 -34278,1500:351,1,55,0,0,0.186866 -34279,1500:352,2,55,0,0,0.191499 -34280,1501:351,11,55,0,0,0.142666 -34281,1517:351,171,55,0,0,0.0805912 -34282,1518:350,180,55,0,0,0.0768732 -34283,7518:360,-180,56,0,0,0.0766839 -34284,7517:469,-179,56,0,0,0.0765893 -34285,7517:468,-178,56,0,0,0.0768003 -34286,7517:467,-177,56,0,0,0.0775026 -34287,7517:466,-176,56,0,0,0.0781588 -34288,7517:465,-175,56,0,0,0.0780701 -34289,7517:364,-174,56,0,0,0.0775613 -34290,7517:363,-173,56,0,0,0.0770996 -34291,7509:360,-90,56,0,0,0.0822899 -34292,7508:469,-89,56,0,0,0.0820805 -34293,7508:468,-88,56,0,0,0.0815635 -34294,7508:467,-87,56,0,0,0.0817483 -34295,7508:466,-86,56,0,0,0.0822899 -34296,7508:465,-85,56,0,0,0.0828423 -34297,7508:364,-84,56,0,0,0.0819335 -34298,7508:363,-83,56,0,0,0.081548 -34299,7508:362,-82,56,0,0,0.0815635 -34300,7508:361,-81,56,0,0,0.0813866 -34301,7508:360,-80,56,0,0,0.0814942 -34302,7507:469,-79,56,0,0,0.0815327 -34303,7507:468,-78,56,0,0,0.0808887 -34304,7507:467,-77,56,0,0,0.0796824 -34305,7507:466,-76,56,0,0,0.0777379 -34306,7507:465,-75,56,0,0,0.0791266 -34307,7507:364,-74,56,0,0,0.0784555 -34308,7507:363,-73,56,0,0,0.0785299 -34309,7507:362,-72,56,0,0,0.0803101 -34310,7507:361,-71,56,0,0,0.0795393 -34311,7506:468,-68,56,0,0,0.078218 -34312,7506:467,-67,56,0,0,0.0785446 -34313,7506:466,-66,56,0,0,0.0766839 -34314,7505:468,-58,56,0,0,0.0791717 -34315,7505:363,-53,56,0,0,0.0768585 -34316,7505:362,-52,56,0,0,0.0770849 -34317,7505:361,-51,56,0,0,0.0770922 -34318,7505:360,-50,56,0,0,0.0917501 -34319,7504:469,-49,56,0,0,0.129045 -34320,7504:468,-48,56,0,0,0.101979 -34321,7504:467,-47,56,0,0,0.0865292 -34322,7502:364,-24,56,0,0,0.0766621 -34323,7502:363,-23,56,0,0,0.0764659 -34324,7502:362,-22,56,0,0,0.0764659 -34325,7502:361,-21,56,0,0,0.0781071 -34326,7502:360,-20,56,0,0,0.0923854 -34327,7501:469,-19,56,0,0,0.10002 -34328,7501:468,-18,56,0,0,0.102658 -34329,7501:467,-17,56,0,0,0.102658 -34330,7501:466,-16,56,0,0,0.104375 -34331,7501:465,-15,56,0,0,0.109185 -34332,7501:364,-14,56,0,0,0.111923 -34333,7501:363,-13,56,0,0,0.117686 -34334,7501:362,-12,56,0,0,0.123971 -34335,7501:361,-11,56,0,0,0.127689 -34336,7501:360,-10,56,0,0,0.134188 -34337,7500:469,-9,56,0,0,0.138348 -34338,7500:468,-8,56,0,0,0.137761 -34339,7500:467,-7,56,0,0,0.142666 -34340,7500:466,-6,56,0,0,0.145913 -34341,7500:465,-5,56,0,0,0.154945 -34342,7500:364,-4,56,0,0,0.161637 -34343,7500:363,-3,56,0,0,0.173898 -34344,7500:362,-2,56,0,0,0.181829 -34345,7500:361,-1,56,0,0,0.187522 -34346,1500:361,0,56,0,0,0.183625 -34347,1500:361,1,56,0,0,0.18534 -34348,1500:362,2,56,0,0,0.173102 -34349,1501:360,10,56,0,0,0.130146 -34350,1501:361,11,56,0,0,0.151452 -34351,1501:362,12,56,0,0,0.131443 -34352,1516:465,165,56,0,0,0.0793064 -34353,1516:467,167,56,0,0,0.0784258 -34354,1516:468,168,56,0,0,0.0782255 -34355,1516:469,169,56,0,0,0.077937 -34356,1517:467,177,56,0,0,0.0772166 -34357,1517:468,178,56,0,0,0.0772018 -34358,1517:469,179,56,0,0,0.0769024 -34359,1518:360,180,56,0,0,0.0766839 -34360,7518:370,-180,57,0,0,0.0772311 -34361,7517:479,-179,57,0,0,0.0771433 -34362,7517:478,-178,57,0,0,0.0776275 -34363,7517:477,-177,57,0,0,0.0777821 -34364,7517:476,-176,57,0,0,0.077974 -34365,7517:475,-175,57,0,0,0.0784036 -34366,7517:374,-174,57,0,0,0.0776938 -34367,7517:373,-173,57,0,0,0.0769315 -34368,7517:372,-172,57,0,0,0.0762123 -34369,7517:371,-171,57,0,0,0.0758443 -34370,7509:370,-90,57,0,0,0.0795845 -34371,7508:479,-89,57,0,0,0.0813329 -34372,7508:478,-88,57,0,0,0.0808276 -34373,7508:477,-87,57,0,0,0.0812254 -34374,7508:476,-86,57,0,0,0.0818486 -34375,7508:475,-85,57,0,0,0.0820961 -34376,7508:374,-84,57,0,0,0.0811487 -34377,7508:373,-83,57,0,0,0.0808504 -34378,7508:372,-82,57,0,0,0.0811487 -34379,7508:371,-81,57,0,0,0.0811104 -34380,7508:370,-80,57,0,0,0.0810109 -34381,7507:479,-79,57,0,0,0.0808581 -34382,7507:478,-78,57,0,0,0.0805227 -34383,7507:477,-77,57,0,0,0.0788502 -34384,7507:374,-74,57,0,0,0.0785074 -34385,7507:373,-73,57,0,0,0.0784927 -34386,7507:372,-72,57,0,0,0.0778706 -34387,7507:371,-71,57,0,0,0.0777821 -34388,7507:370,-70,57,0,0,0.0783071 -34389,7506:479,-69,57,0,0,0.0779961 -34390,7505:478,-58,57,0,0,0.0765747 -34391,7505:374,-54,57,0,0,0.0768585 -34392,7505:373,-53,57,0,0,0.0769534 -34393,7505:372,-52,57,0,0,0.0767347 -34394,7505:371,-51,57,0,0,0.0771288 -34395,7505:370,-50,57,0,0,0.0793215 -34396,7504:479,-49,57,0,0,0.0895396 -34397,7504:478,-48,57,0,0,0.114346 -34398,7504:477,-47,57,0,0,0.11493 -34399,7504:476,-46,57,0,0,0.109345 -34400,7504:475,-45,57,0,0,0.102111 -34401,7502:475,-25,57,0,0,0.0780701 -34402,7502:373,-23,57,0,0,0.0764369 -34403,7502:372,-22,57,0,0,0.0764369 -34404,7502:371,-21,57,0,0,0.0768367 -34405,7502:370,-20,57,0,0,0.078011 -34406,7501:479,-19,57,0,0,0.0832023 -34407,7501:478,-18,57,0,0,0.0932853 -34408,7501:477,-17,57,0,0,0.103513 -34409,7501:476,-16,57,0,0,0.106126 -34410,7501:475,-15,57,0,0,0.106879 -34411,7501:374,-14,57,0,0,0.106087 -34412,7501:373,-13,57,0,0,0.111841 -34413,7501:372,-12,57,0,0,0.126719 -34414,7501:371,-11,57,0,0,0.129057 -34415,7501:370,-10,57,0,0,0.130881 -34416,7500:479,-9,57,0,0,0.134093 -34417,7500:478,-8,57,0,0,0.135748 -34418,7500:477,-7,57,0,0,0.13742 -34419,7500:476,-6,57,0,0,0.137456 -34420,7500:475,-5,57,0,0,0.137932 -34421,7500:374,-4,57,0,0,0.14356 -34422,7500:373,-3,57,0,0,0.174785 -34423,7500:372,-2,57,0,0,0.183117 -34424,7500:371,-1,57,0,0,0.184798 -34425,1500:371,0,57,0,0,0.184736 -34426,1500:371,1,57,0,0,0.184242 -34427,1500:372,2,57,0,0,0.188495 -34428,1501:370,10,57,0,0,0.110643 -34429,1501:371,11,57,0,0,0.144104 -34430,1501:372,12,57,0,0,0.12014 -34431,1516:475,165,57,0,0,0.0791717 -34432,1516:476,166,57,0,0,0.0789247 -34433,1516:477,167,57,0,0,0.0786936 -34434,1516:478,168,57,0,0,0.0784333 -34435,1516:479,169,57,0,0,0.0781663 -34436,1517:370,170,57,0,0,0.0780331 -34437,1517:371,171,57,0,0,0.077878 -34438,1517:372,172,57,0,0,0.0777012 -34439,1517:373,173,57,0,0,0.0775762 -34440,1517:374,174,57,0,0,0.077451 -34441,1517:475,175,57,0,0,0.0773559 -34442,1517:476,176,57,0,0,0.0772459 -34443,1517:477,177,57,0,0,0.0772385 -34444,1517:478,178,57,0,0,0.0767567 -34445,1517:479,179,57,0,0,0.0768076 -34446,1518:370,180,57,0,0,0.0772311 -34447,7518:380,-180,58,0,0,0.0771433 -34448,7517:489,-179,58,0,0,0.0770556 -34449,7517:488,-178,58,0,0,0.0767785 -34450,7517:487,-177,58,0,0,0.0762629 -34451,7517:486,-176,58,0,0,0.0760822 -34452,7517:485,-175,58,0,0,0.0765603 -34453,7517:384,-174,58,0,0,0.0772532 -34454,7517:383,-173,58,0,0,0.0775687 -34455,7517:382,-172,58,0,0,0.0767929 -34456,7517:381,-171,58,0,0,0.0760317 -34457,7508:489,-89,58,0,0,0.0779001 -34458,7508:488,-88,58,0,0,0.0815095 -34459,7508:487,-87,58,0,0,0.0803405 -34460,7508:486,-86,58,0,0,0.0806751 -34461,7508:485,-85,58,0,0,0.0806826 -34462,7508:384,-84,58,0,0,0.0803632 -34463,7508:383,-83,58,0,0,0.0807284 -34464,7508:382,-82,58,0,0,0.0807512 -34465,7508:381,-81,58,0,0,0.0805912 -34466,7508:380,-80,58,0,0,0.0802265 -34467,7507:489,-79,58,0,0,0.0799542 -34468,7507:488,-78,58,0,0,0.0797351 -34469,7507:487,-77,58,0,0,0.0782551 -34470,7507:486,-76,58,0,0,0.0785299 -34471,7507:485,-75,58,0,0,0.0784777 -34472,7507:384,-74,58,0,0,0.0771726 -34473,7507:381,-71,58,0,0,0.0776938 -34474,7507:380,-70,58,0,0,0.0774584 -34475,7506:489,-69,58,0,0,0.077819 -34476,7506:485,-65,58,0,0,0.0774217 -34477,7506:384,-64,58,0,0,0.0773559 -34478,7505:384,-54,58,0,0,0.0769534 -34479,7505:383,-53,58,0,0,0.0764586 -34480,7505:382,-52,58,0,0,0.0763571 -34481,7505:381,-51,58,0,0,0.0766548 -34482,7505:380,-50,58,0,0,0.07635 -34483,7504:489,-49,58,0,0,0.0785149 -34484,7504:488,-48,58,0,0,0.0882004 -34485,7504:487,-47,58,0,0,0.0892387 -34486,7504:384,-44,58,0,0,0.104769 -34487,7502:383,-23,58,0,0,0.0763427 -34488,7502:382,-22,58,0,0,0.0764223 -34489,7502:381,-21,58,0,0,0.0769973 -34490,7502:380,-20,58,0,0,0.0805761 -34491,7501:489,-19,58,0,0,0.0882415 -34492,7501:488,-18,58,0,0,0.092627 -34493,7501:487,-17,58,0,0,0.0944564 -34494,7501:486,-16,58,0,0,0.0981854 -34495,7501:485,-15,58,0,0,0.102092 -34496,7501:384,-14,58,0,0,0.10229 -34497,7501:383,-13,58,0,0,0.104634 -34498,7501:382,-12,58,0,0,0.115716 -34499,7501:381,-11,58,0,0,0.126515 -34500,7501:380,-10,58,0,0,0.133272 -34501,7500:489,-9,58,0,0,0.142527 -34502,7500:488,-8,58,0,0,0.143345 -34503,7500:487,-7,58,0,0,0.14521 -34504,7500:486,-6,58,0,0,0.140617 -34505,7500:485,-5,58,0,0,0.139134 -34506,7500:384,-4,58,0,0,0.158941 -34507,7500:383,-3,58,0,0,0.165673 -34508,7500:382,-2,58,0,0,0.168591 -34509,7500:381,-1,58,0,0,0.178295 -34510,1500:381,0,58,0,0,0.181554 -34511,1500:381,1,58,0,0,0.183995 -34512,1500:382,2,58,0,0,0.1748 -34513,1516:383,163,58,0,0,0.0797503 -34514,1516:384,164,58,0,0,0.0794643 -34515,1516:485,165,58,0,0,0.0791342 -34516,1516:486,166,58,0,0,0.0789099 -34517,1516:487,167,58,0,0,0.0786041 -34518,1516:488,168,58,0,0,0.0782329 -34519,1516:489,169,58,0,0,0.077878 -34520,1517:380,170,58,0,0,0.0776055 -34521,1517:381,171,58,0,0,0.0774732 -34522,1517:382,172,58,0,0,0.0773704 -34523,1517:383,173,58,0,0,0.0773192 -34524,1517:384,174,58,0,0,0.0772459 -34525,1517:485,175,58,0,0,0.077063 -34526,1517:486,176,58,0,0,0.0769242 -34527,1517:489,179,58,0,0,0.0764732 -34528,1518:380,180,58,0,0,0.0771433 -34529,7518:390,-180,59,0,0,0.0767858 -34530,7517:499,-179,59,0,0,0.0771947 -34531,7517:498,-178,59,0,0,0.0769315 -34532,7517:497,-177,59,0,0,0.0768294 -34533,7517:496,-176,59,0,0,0.0765747 -34534,7517:495,-175,59,0,0,0.0769754 -34535,7517:394,-174,59,0,0,0.0772899 -34536,7517:393,-173,59,0,0,0.0767347 -34537,7517:392,-172,59,0,0,0.0768514 -34538,7517:391,-171,59,0,0,0.0768367 -34539,7517:390,-170,59,0,0,0.0762267 -34540,7508:498,-88,59,0,0,0.0765022 -34541,7508:497,-87,59,0,0,0.0792764 -34542,7508:496,-86,59,0,0,0.0810875 -34543,7508:495,-85,59,0,0,0.0816173 -34544,7508:394,-84,59,0,0,0.0814865 -34545,7508:393,-83,59,0,0,0.0806293 -34546,7508:392,-82,59,0,0,0.0801962 -34547,7508:391,-81,59,0,0,0.0800901 -34548,7508:390,-80,59,0,0,0.079803 -34549,7507:499,-79,59,0,0,0.0790369 -34550,7507:498,-78,59,0,0,0.077878 -34551,7507:392,-72,59,0,0,0.0777747 -34552,7507:391,-71,59,0,0,0.076713 -34553,7507:390,-70,59,0,0,0.0768076 -34554,7506:499,-69,59,0,0,0.0767347 -34555,7506:498,-68,59,0,0,0.0767494 -34556,7506:497,-67,59,0,0,0.0770191 -34557,7506:496,-66,59,0,0,0.0770849 -34558,7506:495,-65,59,0,0,0.0771726 -34559,7506:394,-64,59,0,0,0.0775539 -34560,7506:393,-63,59,0,0,0.0779445 -34561,7505:495,-55,59,0,0,0.0773263 -34562,7505:394,-54,59,0,0,0.076742 -34563,7505:393,-53,59,0,0,0.0764369 -34564,7505:392,-52,59,0,0,0.0764732 -34565,7505:391,-51,59,0,0,0.0765166 -34566,7505:390,-50,59,0,0,0.0764442 -34567,7504:499,-49,59,0,0,0.0762267 -34568,7504:498,-48,59,0,0,0.0769168 -34569,7504:497,-47,59,0,0,0.0837052 -34570,7504:496,-46,59,0,0,0.0862212 -34571,7504:495,-45,59,0,0,0.105262 -34572,7502:394,-24,59,0,0,0.076524 -34573,7502:393,-23,59,0,0,0.076234 -34574,7502:392,-22,59,0,0,0.0762558 -34575,7502:391,-21,59,0,0,0.0766257 -34576,7502:390,-20,59,0,0,0.0784183 -34577,7501:499,-19,59,0,0,0.0851106 -34578,7501:498,-18,59,0,0,0.0899931 -34579,7501:497,-17,59,0,0,0.0918013 -34580,7501:496,-16,59,0,0,0.0928344 -34581,7501:495,-15,59,0,0,0.0940968 -34582,7501:394,-14,59,0,0,0.0967753 -34583,7501:393,-13,59,0,0,0.0981308 -34584,7501:392,-12,59,0,0,0.0988697 -34585,7501:391,-11,59,0,0,0.108796 -34586,7501:390,-10,59,0,0,0.12656 -34587,7500:499,-9,59,0,0,0.144777 -34588,7500:498,-8,59,0,0,0.150124 -34589,7500:497,-7,59,0,0,0.148038 -34590,7500:496,-6,59,0,0,0.146696 -34591,7500:495,-5,59,0,0,0.147779 -34592,7500:394,-4,59,0,0,0.156024 -34593,7500:393,-3,59,0,0,0.157995 -34594,7500:392,-2,59,0,0,0.166827 -34595,7500:391,-1,59,0,0,0.167528 -34596,1500:391,0,59,0,0,0.176049 -34597,1500:391,1,59,0,0,0.179276 -34598,1515:499,159,59,0,0,0.0809115 -34599,1516:390,160,59,0,0,0.0806217 -34600,1516:391,161,59,0,0,0.0801812 -34601,1516:392,162,59,0,0,0.079705 -34602,1516:393,163,59,0,0,0.0794567 -34603,1516:394,164,59,0,0,0.0792615 -34604,1516:495,165,59,0,0,0.0790668 -34605,1516:496,166,59,0,0,0.0788203 -34606,1516:497,167,59,0,0,0.0785074 -34607,1516:498,168,59,0,0,0.078218 -34608,1516:499,169,59,0,0,0.0779814 -34609,1517:390,170,59,0,0,0.077819 -34610,1517:391,171,59,0,0,0.0775981 -34611,1517:392,172,59,0,0,0.0772532 -34612,1517:393,173,59,0,0,0.0770922 -34613,1517:394,174,59,0,0,0.0770409 -34614,1517:495,175,59,0,0,0.0770046 -34615,1517:496,176,59,0,0,0.0769754 -34616,1517:497,177,59,0,0,0.0769168 -34617,1517:498,178,59,0,0,0.0768149 -34618,1517:499,179,59,0,0,0.0767274 -34619,1518:390,180,59,0,0,0.0767858 -34620,7618:100,-180,60,0,0,0.0771067 -34621,7617:209,-179,60,0,0,0.0769315 -34622,7617:208,-178,60,0,0,0.0769899 -34623,7617:207,-177,60,0,0,0.0770849 -34624,7617:206,-176,60,0,0,0.0768659 -34625,7617:205,-175,60,0,0,0.0768076 -34626,7617:104,-174,60,0,0,0.0770117 -34627,7617:103,-173,60,0,0,0.0765603 -34628,7617:102,-172,60,0,0,0.0764442 -34629,7617:101,-171,60,0,0,0.076582 -34630,7617:100,-170,60,0,0,0.0767638 -34631,7616:209,-169,60,0,0,0.0767347 -34632,7608:207,-87,60,0,0,0.0756572 -34633,7608:206,-86,60,0,0,0.0757937 -34634,7608:205,-85,60,0,0,0.0770338 -34635,7608:104,-84,60,0,0,0.0787009 -34636,7608:103,-83,60,0,0,0.079562 -34637,7608:102,-82,60,0,0,0.0809726 -34638,7608:101,-81,60,0,0,0.0803405 -34639,7608:100,-80,60,0,0,0.079856 -34640,7607:209,-79,60,0,0,0.0783961 -34641,7607:102,-72,60,0,0,0.0778042 -34642,7607:101,-71,60,0,0,0.0771726 -34643,7607:100,-70,60,0,0,0.0765022 -34644,7606:209,-69,60,0,0,0.0764876 -34645,7606:208,-68,60,0,0,0.0764803 -34646,7606:207,-67,60,0,0,0.0764659 -34647,7606:206,-66,60,0,0,0.0764513 -34648,7606:205,-65,60,0,0,0.0765384 -34649,7606:104,-64,60,0,0,0.0768514 -34650,7606:103,-63,60,0,0,0.0773118 -34651,7606:102,-62,60,0,0,0.077937 -34652,7606:101,-61,60,0,0,0.07827 -34653,7605:206,-56,60,0,0,0.0779519 -34654,7605:205,-55,60,0,0,0.0778485 -34655,7605:104,-54,60,0,0,0.0768806 -34656,7605:103,-53,60,0,0,0.0766328 -34657,7605:102,-52,60,0,0,0.0765166 -34658,7605:101,-51,60,0,0,0.0763716 -34659,7605:100,-50,60,0,0,0.0763643 -34660,7604:209,-49,60,0,0,0.0763354 -34661,7604:208,-48,60,0,0,0.0764296 -34662,7604:207,-47,60,0,0,0.0769097 -34663,7604:206,-46,60,0,0,0.0779889 -34664,7604:205,-45,60,0,0,0.0823441 -34665,7604:104,-44,60,0,0,0.0925493 -34666,7602:103,-23,60,0,0,0.0762918 -34667,7602:102,-22,60,0,0,0.076046 -34668,7602:101,-21,60,0,0,0.0762629 -34669,7602:100,-20,60,0,0,0.0766839 -34670,7601:209,-19,60,0,0,0.0769534 -34671,7601:208,-18,60,0,0,0.0778634 -34672,7601:207,-17,60,0,0,0.0801736 -34673,7601:206,-16,60,0,0,0.0833825 -34674,7601:205,-15,60,0,0,0.0905498 -34675,7601:104,-14,60,0,0,0.0955341 -34676,7601:103,-13,60,0,0,0.0953213 -34677,7601:102,-12,60,0,0,0.0949144 -34678,7601:101,-11,60,0,0,0.0957741 -34679,7601:100,-10,60,0,0,0.102583 -34680,7600:209,-9,60,0,0,0.126549 -34681,7600:208,-8,60,0,0,0.137761 -34682,7600:207,-7,60,0,0,0.150006 -34683,7600:206,-6,60,0,0,0.151611 -34684,7600:205,-5,60,0,0,0.151136 -34685,7600:104,-4,60,0,0,0.150215 -34686,7600:103,-3,60,0,0,0.16104 -34687,7600:102,-2,60,0,0,0.163189 -34688,7600:101,-1,60,0,0,0.163287 -34689,1600:101,0,60,0,0,0.172926 -34690,1600:101,1,60,0,0,0.17375 -34691,1600:102,2,60,0,0,0.179745 -34692,1615:209,159,60,0,0,0.0802492 -34693,1616:100,160,60,0,0,0.0799692 -34694,1616:101,161,60,0,0,0.0797277 -34695,1616:102,162,60,0,0,0.0795995 -34696,1616:103,163,60,0,0,0.0794491 -34697,1616:104,164,60,0,0,0.0792464 -34698,1616:205,165,60,0,0,0.0790145 -34699,1616:206,166,60,0,0,0.0787084 -34700,1616:207,167,60,0,0,0.078359 -34701,1616:208,168,60,0,0,0.0780405 -34702,1616:209,169,60,0,0,0.0777675 -34703,1617:100,170,60,0,0,0.077679 -34704,1617:101,171,60,0,0,0.0775907 -34705,1617:102,172,60,0,0,0.0773263 -34706,1617:103,173,60,0,0,0.0771141 -34707,1617:104,174,60,0,0,0.0769825 -34708,1617:205,175,60,0,0,0.0769973 -34709,1617:206,176,60,0,0,0.0769168 -34710,1617:207,177,60,0,0,0.0768441 -34711,1617:208,178,60,0,0,0.0767785 -34712,1617:209,179,60,0,0,0.0766912 -34713,1618:100,180,60,0,0,0.0771067 -34714,7618:110,-180,61,0,0,0.0768877 -34715,7617:219,-179,61,0,0,0.0770556 -34716,7617:218,-178,61,0,0,0.0769754 -34717,7617:217,-177,61,0,0,0.0769681 -34718,7617:216,-176,61,0,0,0.0771141 -34719,7617:215,-175,61,0,0,0.0768659 -34720,7617:114,-174,61,0,0,0.0767567 -34721,7617:113,-173,61,0,0,0.0765457 -34722,7617:112,-172,61,0,0,0.0762558 -34723,7617:111,-171,61,0,0,0.076415 -34724,7617:110,-170,61,0,0,0.0772166 -34725,7616:219,-169,61,0,0,0.0773337 -34726,7616:218,-168,61,0,0,0.0772532 -34727,7616:217,-167,61,0,0,0.0762629 -34728,7616:216,-166,61,0,0,0.0762848 -34729,7608:112,-82,61,0,0,0.0775613 -34730,7608:111,-81,61,0,0,0.0794868 -34731,7608:110,-80,61,0,0,0.0787532 -34732,7607:219,-79,61,0,0,0.0790444 -34733,7607:218,-78,61,0,0,0.0794943 -34734,7607:217,-77,61,0,0,0.0773485 -34735,7607:113,-73,61,0,0,0.0775539 -34736,7607:112,-72,61,0,0,0.0776127 -34737,7607:111,-71,61,0,0,0.0772166 -34738,7607:110,-70,61,0,0,0.0770849 -34739,7606:219,-69,61,0,0,0.0768514 -34740,7606:218,-68,61,0,0,0.0766328 -34741,7606:217,-67,61,0,0,0.0767638 -34742,7606:216,-66,61,0,0,0.0766839 -34743,7606:215,-65,61,0,0,0.0764296 -34744,7606:111,-61,61,0,0,0.0781884 -34745,7605:114,-54,61,0,0,0.0768659 -34746,7605:113,-53,61,0,0,0.0765022 -34747,7605:112,-52,61,0,0,0.0762918 -34748,7605:111,-51,61,0,0,0.0764369 -34749,7605:110,-50,61,0,0,0.0762848 -34750,7604:219,-49,61,0,0,0.0763427 -34751,7604:218,-48,61,0,0,0.0777232 -34752,7604:217,-47,61,0,0,0.0815095 -34753,7604:216,-46,61,0,0,0.0860592 -34754,7602:112,-22,61,0,0,0.0761256 -34755,7602:111,-21,61,0,0,0.0761183 -34756,7602:110,-20,61,0,0,0.0765893 -34757,7601:219,-19,61,0,0,0.077224 -34758,7601:218,-18,61,0,0,0.0792691 -34759,7601:217,-17,61,0,0,0.0844409 -34760,7601:216,-16,61,0,0,0.0899846 -34761,7601:215,-15,61,0,0,0.0925838 -34762,7601:114,-14,61,0,0,0.094237 -34763,7601:113,-13,61,0,0,0.0932593 -34764,7601:112,-12,61,0,0,0.0927394 -34765,7601:111,-11,61,0,0,0.0931811 -34766,7601:110,-10,61,0,0,0.0948438 -34767,7600:219,-9,61,0,0,0.119112 -34768,7600:218,-8,61,0,0,0.140592 -34769,7600:217,-7,61,0,0,0.139824 -34770,7600:216,-6,61,0,0,0.148908 -34771,7600:215,-5,61,0,0,0.150229 -34772,7600:114,-4,61,0,0,0.152565 -34773,7600:113,-3,61,0,0,0.156105 -34774,7600:112,-2,61,0,0,0.153898 -34775,7600:111,-1,61,0,0,0.163161 -34776,1600:111,0,61,0,0,0.175959 -34777,1600:111,1,61,0,0,0.176183 -34778,1600:112,2,61,0,0,0.17979 -34779,1600:113,3,61,0,0,0.148817 -34780,1601:219,19,61,0,0,0.0927913 -34781,1602:110,20,61,0,0,0.094237 -34782,1602:112,22,61,0,0,0.0881838 -34783,1615:110,150,61,0,0,0.0812332 -34784,1615:111,151,61,0,0,0.0811104 -34785,1615:112,152,61,0,0,0.0810415 -34786,1615:216,156,61,0,0,0.0806751 -34787,1615:217,157,61,0,0,0.0804696 -34788,1615:218,158,61,0,0,0.0801736 -34789,1615:219,159,61,0,0,0.079939 -34790,1616:110,160,61,0,0,0.0798408 -34791,1616:111,161,61,0,0,0.0797653 -34792,1616:112,162,61,0,0,0.0796222 -34793,1616:113,163,61,0,0,0.0794643 -34794,1616:114,164,61,0,0,0.0789771 -34795,1616:215,165,61,0,0,0.0785002 -34796,1616:216,166,61,0,0,0.0780184 -34797,1616:217,167,61,0,0,0.0776127 -34798,1616:218,168,61,0,0,0.0774071 -34799,1616:219,169,61,0,0,0.0772678 -34800,1617:110,170,61,0,0,0.0772018 -34801,1617:111,171,61,0,0,0.0771654 -34802,1617:112,172,61,0,0,0.0770922 -34803,1617:113,173,61,0,0,0.0769754 -34804,1617:114,174,61,0,0,0.0768659 -34805,1617:215,175,61,0,0,0.0767274 -34806,1617:216,176,61,0,0,0.0766184 -34807,1617:217,177,61,0,0,0.0764803 -34808,1617:218,178,61,0,0,0.0764079 -34809,1617:219,179,61,0,0,0.0765603 -34810,1618:110,180,61,0,0,0.0768877 -34811,7618:120,-180,62,0,0,0.0766839 -34812,7617:229,-179,62,0,0,0.0765967 -34813,7617:228,-178,62,0,0,0.076582 -34814,7617:227,-177,62,0,0,0.0769754 -34815,7617:226,-176,62,0,0,0.0771947 -34816,7617:225,-175,62,0,0,0.0770338 -34817,7617:124,-174,62,0,0,0.0773852 -34818,7617:123,-173,62,0,0,0.0774291 -34819,7617:122,-172,62,0,0,0.0770046 -34820,7617:121,-171,62,0,0,0.0768732 -34821,7617:120,-170,62,0,0,0.0770191 -34822,7616:229,-169,62,0,0,0.0771873 -34823,7616:228,-168,62,0,0,0.0769462 -34824,7616:227,-167,62,0,0,0.0770338 -34825,7616:226,-166,62,0,0,0.0772751 -34826,7616:225,-165,62,0,0,0.0769462 -34827,7616:124,-164,62,0,0,0.0767929 -34828,7616:123,-163,62,0,0,0.0768076 -34829,7616:122,-162,62,0,0,0.0769024 -34830,7616:121,-161,62,0,0,0.0769462 -34831,7616:120,-160,62,0,0,0.076742 -34832,7615:229,-159,62,0,0,0.0770191 -34833,7607:226,-76,62,0,0,0.0766475 -34834,7607:123,-73,62,0,0,0.0777084 -34835,7607:121,-71,62,0,0,0.0768221 -34836,7607:120,-70,62,0,0,0.0771433 -34837,7606:229,-69,62,0,0,0.0768441 -34838,7606:228,-68,62,0,0,0.076742 -34839,7606:227,-67,62,0,0,0.0767567 -34840,7606:226,-66,62,0,0,0.0768732 -34841,7606:225,-65,62,0,0,0.0764586 -34842,7606:124,-64,62,0,0,0.0765457 -34843,7606:122,-62,62,0,0,0.0765457 -34844,7605:124,-54,62,0,0,0.0767274 -34845,7605:123,-53,62,0,0,0.0765457 -34846,7605:122,-52,62,0,0,0.0762485 -34847,7605:121,-51,62,0,0,0.0764006 -34848,7605:120,-50,62,0,0,0.0765384 -34849,7604:229,-49,62,0,0,0.0763933 -34850,7604:228,-48,62,0,0,0.0773559 -34851,7604:227,-47,62,0,0,0.0796673 -34852,7604:226,-46,62,0,0,0.081448 -34853,7604:225,-45,62,0,0,0.0844649 -34854,7602:121,-21,62,0,0,0.076039 -34855,7602:120,-20,62,0,0,0.0762123 -34856,7601:229,-19,62,0,0,0.0773118 -34857,7601:228,-18,62,0,0,0.0811029 -34858,7601:227,-17,62,0,0,0.0848709 -34859,7601:226,-16,62,0,0,0.0862291 -34860,7601:225,-15,62,0,0,0.087173 -34861,7601:124,-14,62,0,0,0.0886723 -34862,7601:123,-13,62,0,0,0.0909143 -34863,7601:122,-12,62,0,0,0.0928777 -34864,7601:121,-11,62,0,0,0.0933288 -34865,7601:120,-10,62,0,0,0.0938432 -34866,7600:229,-9,62,0,0,0.0978763 -34867,7600:228,-8,62,0,0,0.117942 -34868,7600:227,-7,62,0,0,0.135591 -34869,7600:226,-6,62,0,0,0.140035 -34870,7600:225,-5,62,0,0,0.15327 -34871,7600:124,-4,62,0,0,0.150964 -34872,7600:123,-3,62,0,0,0.151942 -34873,7600:122,-2,62,0,0,0.159891 -34874,7600:121,-1,62,0,0,0.167313 -34875,1600:121,0,62,0,0,0.177244 -34876,1600:121,1,62,0,0,0.180412 -34877,1600:122,2,62,0,0,0.177499 -34878,1600:123,3,62,0,0,0.179503 -34879,1600:124,4,62,0,0,0.177859 -34880,1601:226,16,62,0,0,0.0957918 -34881,1601:227,17,62,0,0,0.102706 -34882,1601:228,18,62,0,0,0.0983127 -34883,1601:229,19,62,0,0,0.0982763 -34884,1602:120,20,62,0,0,0.104087 -34885,1602:121,21,62,0,0,0.10448 -34886,1614:226,146,62,0,0,0.0821581 -34887,1614:227,147,62,0,0,0.0819182 -34888,1614:229,149,62,0,0,0.0811871 -34889,1615:120,150,62,0,0,0.0805531 -34890,1615:121,151,62,0,0,0.0802492 -34891,1615:122,152,62,0,0,0.0801509 -34892,1615:123,153,62,0,0,0.0802872 -34893,1615:124,154,62,0,0,0.0807207 -34894,1615:226,156,62,0,0,0.0807056 -34895,1615:227,157,62,0,0,0.0805531 -34896,1615:228,158,62,0,0,0.0803025 -34897,1615:229,159,62,0,0,0.0800525 -34898,1616:120,160,62,0,0,0.07969 -34899,1616:121,161,62,0,0,0.0793666 -34900,1616:122,162,62,0,0,0.0792165 -34901,1616:123,163,62,0,0,0.0787009 -34902,1616:124,164,62,0,0,0.0781514 -34903,1616:225,165,62,0,0,0.0777232 -34904,1616:226,166,62,0,0,0.0774365 -34905,1616:227,167,62,0,0,0.0772166 -34906,1616:228,168,62,0,0,0.077063 -34907,1616:229,169,62,0,0,0.0769534 -34908,1617:120,170,62,0,0,0.0768732 -34909,1617:121,171,62,0,0,0.0768221 -34910,1617:122,172,62,0,0,0.0767858 -34911,1617:123,173,62,0,0,0.0767567 -34912,1617:124,174,62,0,0,0.0767203 -34913,1617:225,175,62,0,0,0.0766839 -34914,1617:226,176,62,0,0,0.0766401 -34915,1617:227,177,62,0,0,0.0765967 -34916,1617:228,178,62,0,0,0.076415 -34917,1617:229,179,62,0,0,0.0763716 -34918,1618:120,180,62,0,0,0.0766839 -34919,7618:130,-180,63,0,0,0.0764006 -34920,7617:239,-179,63,0,0,0.0763427 -34921,7617:238,-178,63,0,0,0.0765676 -34922,7617:237,-177,63,0,0,0.077224 -34923,7617:236,-176,63,0,0,0.0773924 -34924,7617:235,-175,63,0,0,0.077297 -34925,7617:134,-174,63,0,0,0.0771507 -34926,7617:133,-173,63,0,0,0.0773263 -34927,7617:132,-172,63,0,0,0.0774584 -34928,7617:131,-171,63,0,0,0.077224 -34929,7617:130,-170,63,0,0,0.0770996 -34930,7616:239,-169,63,0,0,0.0770264 -34931,7616:238,-168,63,0,0,0.0767929 -34932,7616:237,-167,63,0,0,0.0767929 -34933,7616:236,-166,63,0,0,0.0769315 -34934,7616:235,-165,63,0,0,0.077224 -34935,7616:134,-164,63,0,0,0.0771067 -34936,7616:133,-163,63,0,0,0.0772751 -34937,7616:132,-162,63,0,0,0.0773559 -34938,7616:131,-161,63,0,0,0.0773924 -34939,7616:130,-160,63,0,0,0.0773411 -34940,7615:239,-159,63,0,0,0.0773118 -34941,7615:238,-158,63,0,0,0.0773192 -34942,7615:237,-157,63,0,0,0.0773704 -34943,7615:236,-156,63,0,0,0.0773998 -34944,7615:235,-155,63,0,0,0.0775026 -34945,7615:133,-153,63,0,0,0.0783218 -34946,7607:133,-73,63,0,0,0.0780035 -34947,7606:237,-67,63,0,0,0.0767274 -34948,7606:236,-66,63,0,0,0.0768076 -34949,7606:235,-65,63,0,0,0.0763137 -34950,7606:134,-64,63,0,0,0.0763137 -34951,7606:133,-63,63,0,0,0.0767274 -34952,7606:132,-62,63,0,0,0.0762775 -34953,7606:131,-61,63,0,0,0.0771799 -34954,7605:134,-54,63,0,0,0.076713 -34955,7605:133,-53,63,0,0,0.0762413 -34956,7605:132,-52,63,0,0,0.0760606 -34957,7605:131,-51,63,0,0,0.0762267 -34958,7605:130,-50,63,0,0,0.076386 -34959,7604:239,-49,63,0,0,0.076205 -34960,7604:238,-48,63,0,0,0.0762775 -34961,7604:237,-47,63,0,0,0.0784555 -34962,7604:236,-46,63,0,0,0.0791566 -34963,7604:235,-45,63,0,0,0.0782775 -34964,7604:134,-44,63,0,0,0.0770996 -34965,7602:132,-22,63,0,0,0.0762123 -34966,7602:131,-21,63,0,0,0.0761545 -34967,7602:130,-20,63,0,0,0.0762558 -34968,7601:239,-19,63,0,0,0.0759811 -34969,7601:238,-18,63,0,0,0.0771433 -34970,7601:237,-17,63,0,0,0.0854633 -34971,7601:236,-16,63,0,0,0.093103 -34972,7601:235,-15,63,0,0,0.08764 -34973,7601:134,-14,63,0,0,0.0888884 -34974,7601:133,-13,63,0,0,0.091212 -34975,7601:132,-12,63,0,0,0.0926961 -34976,7601:131,-11,63,0,0,0.094395 -34977,7601:130,-10,63,0,0,0.0939392 -34978,7600:239,-9,63,0,0,0.0994388 -34979,7600:238,-8,63,0,0,0.124676 -34980,7600:237,-7,63,0,0,0.147301 -34981,7600:236,-6,63,0,0,0.151743 -34982,7600:235,-5,63,0,0,0.1543 -34983,7600:134,-4,63,0,0,0.163329 -34984,7600:133,-3,63,0,0,0.168246 -34985,7600:132,-2,63,0,0,0.173147 -34986,7600:131,-1,63,0,0,0.176929 -34987,1600:131,0,63,0,0,0.175127 -34988,1600:131,1,63,0,0,0.174252 -34989,1600:132,2,63,0,0,0.173102 -34990,1600:133,3,63,0,0,0.1679 -34991,1600:134,4,63,0,0,0.176257 -34992,1600:235,5,63,0,0,0.165219 -34993,1602:130,20,63,0,0,0.109456 -34994,1602:131,21,63,0,0,0.10735 -34995,1614:237,147,63,0,0,0.0827254 -34996,1614:238,148,63,0,0,0.0820496 -34997,1614:239,149,63,0,0,0.0812254 -34998,1615:130,150,63,0,0,0.0808122 -34999,1615:131,151,63,0,0,0.0803479 -35000,1615:132,152,63,0,0,0.0801204 -35001,1615:133,153,63,0,0,0.0801812 -35002,1615:134,154,63,0,0,0.0804392 -35003,1615:235,155,63,0,0,0.0803479 -35004,1615:236,156,63,0,0,0.0803935 -35005,1615:237,157,63,0,0,0.0803101 -35006,1615:238,158,63,0,0,0.0798256 -35007,1616:131,161,63,0,0,0.0787755 -35008,1616:132,162,63,0,0,0.0782255 -35009,1616:133,163,63,0,0,0.0778634 -35010,1616:134,164,63,0,0,0.0776127 -35011,1616:235,165,63,0,0,0.0773485 -35012,1616:236,166,63,0,0,0.0770996 -35013,1616:237,167,63,0,0,0.0769024 -35014,1616:238,168,63,0,0,0.0767347 -35015,1616:239,169,63,0,0,0.0765967 -35016,1617:130,170,63,0,0,0.0765457 -35017,1617:131,171,63,0,0,0.0765384 -35018,1617:132,172,63,0,0,0.0766184 -35019,1617:133,173,63,0,0,0.0766328 -35020,1617:134,174,63,0,0,0.0765967 -35021,1617:235,175,63,0,0,0.0765603 -35022,1617:236,176,63,0,0,0.0765457 -35023,1617:237,177,63,0,0,0.0765384 -35024,1617:238,178,63,0,0,0.0765384 -35025,1617:239,179,63,0,0,0.0764803 -35026,1618:130,180,63,0,0,0.0764006 -35027,7618:140,-180,64,0,0,0.0764369 -35028,7617:249,-179,64,0,0,0.0763643 -35029,7617:248,-178,64,0,0,0.076386 -35030,7617:247,-177,64,0,0,0.0767347 -35031,7617:246,-176,64,0,0,0.0765384 -35032,7617:245,-175,64,0,0,0.0767274 -35033,7617:144,-174,64,0,0,0.0771141 -35034,7617:143,-173,64,0,0,0.0772166 -35035,7617:142,-172,64,0,0,0.0769825 -35036,7617:141,-171,64,0,0,0.0767274 -35037,7617:140,-170,64,0,0,0.076582 -35038,7616:249,-169,64,0,0,0.0765967 -35039,7616:248,-168,64,0,0,0.0766401 -35040,7616:247,-167,64,0,0,0.0766621 -35041,7616:246,-166,64,0,0,0.0766765 -35042,7616:245,-165,64,0,0,0.0767347 -35043,7616:144,-164,64,0,0,0.0766765 -35044,7616:143,-163,64,0,0,0.0767494 -35045,7616:142,-162,64,0,0,0.0767858 -35046,7616:141,-161,64,0,0,0.0769315 -35047,7616:140,-160,64,0,0,0.0770409 -35048,7615:249,-159,64,0,0,0.0770191 -35049,7615:248,-158,64,0,0,0.0768514 -35050,7615:247,-157,64,0,0,0.076742 -35051,7615:246,-156,64,0,0,0.0766475 -35052,7615:245,-155,64,0,0,0.0767347 -35053,7615:144,-154,64,0,0,0.0772311 -35054,7615:143,-153,64,0,0,0.0774365 -35055,7615:142,-152,64,0,0,0.0785446 -35056,7606:247,-67,64,0,0,0.0763354 -35057,7606:246,-66,64,0,0,0.0765022 -35058,7606:245,-65,64,0,0,0.0768441 -35059,7606:144,-64,64,0,0,0.076524 -35060,7606:142,-62,64,0,0,0.0765457 -35061,7605:245,-55,64,0,0,0.0766765 -35062,7605:144,-54,64,0,0,0.0764586 -35063,7605:143,-53,64,0,0,0.0761111 -35064,7605:142,-52,64,0,0,0.0759595 -35065,7605:141,-51,64,0,0,0.07614 -35066,7605:140,-50,64,0,0,0.0763281 -35067,7604:249,-49,64,0,0,0.0761978 -35068,7604:248,-48,64,0,0,0.0760679 -35069,7604:247,-47,64,0,0,0.0766548 -35070,7604:246,-46,64,0,0,0.0767638 -35071,7604:245,-45,64,0,0,0.0774071 -35072,7604:144,-44,64,0,0,0.0777158 -35073,7602:143,-23,64,0,0,0.0766038 -35074,7602:141,-21,64,0,0,0.0762702 -35075,7602:140,-20,64,0,0,0.0760895 -35076,7601:249,-19,64,0,0,0.0759234 -35077,7601:248,-18,64,0,0,0.0760317 -35078,7601:247,-17,64,0,0,0.0765603 -35079,7601:246,-16,64,0,0,0.0865699 -35080,7601:245,-15,64,0,0,0.0984587 -35081,7601:144,-14,64,0,0,0.0918614 -35082,7601:143,-13,64,0,0,0.101772 -35083,7601:142,-12,64,0,0,0.104039 -35084,7601:141,-11,64,0,0,0.103934 -35085,7601:140,-10,64,0,0,0.101706 -35086,7600:249,-9,64,0,0,0.112548 -35087,7600:248,-8,64,0,0,0.130437 -35088,7600:247,-7,64,0,0,0.138924 -35089,7600:246,-6,64,0,0,0.147689 -35090,7600:245,-5,64,0,0,0.14712 -35091,7600:144,-4,64,0,0,0.157886 -35092,7600:143,-3,64,0,0,0.171082 -35093,7600:142,-2,64,0,0,0.160818 -35094,7600:141,-1,64,0,0,0.163301 -35095,1600:141,0,64,0,0,0.167313 -35096,1600:141,1,64,0,0,0.166755 -35097,1600:142,2,64,0,0,0.160596 -35098,1600:143,3,64,0,0,0.163273 -35099,1600:144,4,64,0,0,0.167929 -35100,1600:245,5,64,0,0,0.174134 -35101,1600:246,6,64,0,0,0.172442 -35102,1601:140,10,64,0,0,0.160915 -35103,1602:141,21,64,0,0,0.104259 -35104,1614:248,148,64,0,0,0.0816251 -35105,1614:249,149,64,0,0,0.0802721 -35106,1615:140,150,64,0,0,0.0800599 -35107,1615:141,151,64,0,0,0.0803708 -35108,1615:142,152,64,0,0,0.0799088 -35109,1615:143,153,64,0,0,0.0797277 -35110,1615:248,158,64,0,0,0.0788053 -35111,1615:249,159,64,0,0,0.0786116 -35112,1616:140,160,64,0,0,0.0785446 -35113,1616:141,161,64,0,0,0.0782922 -35114,1616:142,162,64,0,0,0.0777747 -35115,1616:143,163,64,0,0,0.0772825 -35116,1616:144,164,64,0,0,0.0770775 -35117,1616:245,165,64,0,0,0.0769168 -35118,1616:246,166,64,0,0,0.0766621 -35119,1616:247,167,64,0,0,0.076415 -35120,1616:248,168,64,0,0,0.076234 -35121,1616:249,169,64,0,0,0.0761907 -35122,1617:140,170,64,0,0,0.0762702 -35123,1617:141,171,64,0,0,0.0763208 -35124,1617:142,172,64,0,0,0.0763643 -35125,1617:143,173,64,0,0,0.076415 -35126,1617:144,174,64,0,0,0.0764442 -35127,1617:245,175,64,0,0,0.0764659 -35128,1617:246,176,64,0,0,0.0765166 -35129,1617:247,177,64,0,0,0.0765313 -35130,1617:248,178,64,0,0,0.076524 -35131,1617:249,179,64,0,0,0.0764876 -35132,1618:140,180,64,0,0,0.0764369 -35133,7618:350,-180,65,0,0,0.0763643 -35134,7617:459,-179,65,0,0,0.0763281 -35135,7617:458,-178,65,0,0,0.0762702 -35136,7617:457,-177,65,0,0,0.0762702 -35137,7617:456,-176,65,0,0,0.0762558 -35138,7617:455,-175,65,0,0,0.0765893 -35139,7617:354,-174,65,0,0,0.0768149 -35140,7617:353,-173,65,0,0,0.0767858 -35141,7617:352,-172,65,0,0,0.0766184 -35142,7617:351,-171,65,0,0,0.0764586 -35143,7617:350,-170,65,0,0,0.0765384 -35144,7616:459,-169,65,0,0,0.076713 -35145,7616:458,-168,65,0,0,0.0767494 -35146,7616:457,-167,65,0,0,0.0766184 -35147,7616:456,-166,65,0,0,0.0766548 -35148,7616:455,-165,65,0,0,0.0766912 -35149,7616:354,-164,65,0,0,0.0767494 -35150,7616:353,-163,65,0,0,0.0767638 -35151,7616:352,-162,65,0,0,0.0768003 -35152,7616:351,-161,65,0,0,0.0766983 -35153,7616:350,-160,65,0,0,0.0767494 -35154,7615:459,-159,65,0,0,0.0766983 -35155,7615:458,-158,65,0,0,0.0765166 -35156,7615:457,-157,65,0,0,0.0764006 -35157,7615:456,-156,65,0,0,0.076386 -35158,7615:455,-155,65,0,0,0.0765022 -35159,7615:354,-154,65,0,0,0.0769168 -35160,7615:353,-153,65,0,0,0.0771433 -35161,7615:352,-152,65,0,0,0.0776127 -35162,7606:354,-64,65,0,0,0.0767567 -35163,7606:351,-61,65,0,0,0.0768221 -35164,7605:456,-56,65,0,0,0.0767274 -35165,7605:455,-55,65,0,0,0.0768003 -35166,7605:354,-54,65,0,0,0.0764803 -35167,7605:353,-53,65,0,0,0.0760317 -35168,7605:352,-52,65,0,0,0.0761834 -35169,7605:351,-51,65,0,0,0.0762629 -35170,7605:350,-50,65,0,0,0.0763064 -35171,7604:459,-49,65,0,0,0.0762485 -35172,7604:458,-48,65,0,0,0.076039 -35173,7604:457,-47,65,0,0,0.0760317 -35174,7604:456,-46,65,0,0,0.0761978 -35175,7604:455,-45,65,0,0,0.0763571 -35176,7604:354,-44,65,0,0,0.0768076 -35177,7604:353,-43,65,0,0,0.0755352 -35178,7602:351,-21,65,0,0,0.076234 -35179,7602:350,-20,65,0,0,0.0760099 -35180,7601:459,-19,65,0,0,0.0759379 -35181,7601:458,-18,65,0,0,0.0759595 -35182,7601:457,-17,65,0,0,0.0760749 -35183,7601:456,-16,65,0,0,0.0771141 -35184,7601:455,-15,65,0,0,0.0997334 -35185,7601:354,-14,65,0,0,0.112219 -35186,7601:353,-13,65,0,0,0.107311 -35187,7601:352,-12,65,0,0,0.104808 -35188,7601:351,-11,65,0,0,0.10738 -35189,7601:350,-10,65,0,0,0.117632 -35190,7600:459,-9,65,0,0,0.125102 -35191,7600:458,-8,65,0,0,0.130484 -35192,7600:457,-7,65,0,0,0.138164 -35193,7600:456,-6,65,0,0,0.150557 -35194,7600:455,-5,65,0,0,0.154246 -35195,7600:354,-4,65,0,0,0.159766 -35196,7600:353,-3,65,0,0,0.158762 -35197,7600:352,-2,65,0,0,0.139985 -35198,7600:351,-1,65,0,0,0.13863 -35199,1600:351,0,65,0,0,0.131842 -35200,1600:351,1,65,0,0,0.13996 -35201,1600:352,2,65,0,0,0.151044 -35202,1600:353,3,65,0,0,0.15715 -35203,1600:354,4,65,0,0,0.153177 -35204,1600:455,5,65,0,0,0.164399 -35205,1600:456,6,65,0,0,0.16347 -35206,1600:457,7,65,0,0,0.161456 -35207,1600:458,8,65,0,0,0.161777 -35208,1600:459,9,65,0,0,0.16637 -35209,1601:350,10,65,0,0,0.162111 -35210,1601:351,11,65,0,0,0.159546 -35211,1601:352,12,65,0,0,0.156837 -35212,1601:353,13,65,0,0,0.151875 -35213,1602:350,20,65,0,0,0.104759 -35214,1602:351,21,65,0,0,0.0974781 -35215,1614:457,147,65,0,0,0.0811335 -35216,1614:458,148,65,0,0,0.079705 -35217,1614:459,149,65,0,0,0.0790967 -35218,1615:350,150,65,0,0,0.0787905 -35219,1615:351,151,65,0,0,0.079532 -35220,1615:352,152,65,0,0,0.079705 -35221,1615:353,153,65,0,0,0.0795469 -35222,1615:457,157,65,0,0,0.0783665 -35223,1615:458,158,65,0,0,0.0781737 -35224,1615:459,159,65,0,0,0.0780184 -35225,1616:350,160,65,0,0,0.0777232 -35226,1616:351,161,65,0,0,0.0774145 -35227,1616:352,162,65,0,0,0.0771067 -35228,1616:353,163,65,0,0,0.0768514 -35229,1616:354,164,65,0,0,0.0766111 -35230,1616:455,165,65,0,0,0.076386 -35231,1616:456,166,65,0,0,0.0761907 -35232,1616:457,167,65,0,0,0.0760533 -35233,1616:458,168,65,0,0,0.0760749 -35234,1616:459,169,65,0,0,0.07614 -35235,1617:350,170,65,0,0,0.0762123 -35236,1617:351,171,65,0,0,0.0762775 -35237,1617:352,172,65,0,0,0.07635 -35238,1617:353,173,65,0,0,0.0764079 -35239,1617:354,174,65,0,0,0.0764732 -35240,1617:455,175,65,0,0,0.0765022 -35241,1617:456,176,65,0,0,0.0765022 -35242,1617:457,177,65,0,0,0.0765093 -35243,1617:458,178,65,0,0,0.0764659 -35244,1617:459,179,65,0,0,0.0764296 -35245,1618:350,180,65,0,0,0.0763643 -35246,7618:360,-180,66,0,0,0.0764223 -35247,7617:469,-179,66,0,0,0.0763571 -35248,7617:468,-178,66,0,0,0.0763208 -35249,7617:467,-177,66,0,0,0.0763064 -35250,7617:466,-176,66,0,0,0.0762991 -35251,7617:465,-175,66,0,0,0.0764732 -35252,7617:364,-174,66,0,0,0.0765457 -35253,7617:363,-173,66,0,0,0.076582 -35254,7617:362,-172,66,0,0,0.0765676 -35255,7617:361,-171,66,0,0,0.0765967 -35256,7617:360,-170,66,0,0,0.0766839 -35257,7616:469,-169,66,0,0,0.0766839 -35258,7616:468,-168,66,0,0,0.0768149 -35259,7616:467,-167,66,0,0,0.0768732 -35260,7616:466,-166,66,0,0,0.0768732 -35261,7616:465,-165,66,0,0,0.0768877 -35262,7616:364,-164,66,0,0,0.0769607 -35263,7616:363,-163,66,0,0,0.0770117 -35264,7616:362,-162,66,0,0,0.0769462 -35265,7616:361,-161,66,0,0,0.0767785 -35266,7616:360,-160,66,0,0,0.0766401 -35267,7615:469,-159,66,0,0,0.076553 -35268,7615:468,-158,66,0,0,0.0764586 -35269,7615:467,-157,66,0,0,0.076386 -35270,7615:466,-156,66,0,0,0.0763427 -35271,7615:465,-155,66,0,0,0.0763427 -35272,7615:364,-154,66,0,0,0.0764223 -35273,7615:363,-153,66,0,0,0.0767274 -35274,7615:362,-152,66,0,0,0.0767858 -35275,7615:361,-151,66,0,0,0.0773044 -35276,7615:360,-150,66,0,0,0.0774145 -35277,7607:362,-72,66,0,0,0.0779814 -35278,7607:361,-71,66,0,0,0.077679 -35279,7607:360,-70,66,0,0,0.0775246 -35280,7606:364,-64,66,0,0,0.0773411 -35281,7606:363,-63,66,0,0,0.0762267 -35282,7605:465,-55,66,0,0,0.0769534 -35283,7605:364,-54,66,0,0,0.0764949 -35284,7605:363,-53,66,0,0,0.0760679 -35285,7605:362,-52,66,0,0,0.0760606 -35286,7605:361,-51,66,0,0,0.0761111 -35287,7605:360,-50,66,0,0,0.0761256 -35288,7604:469,-49,66,0,0,0.0761256 -35289,7604:468,-48,66,0,0,0.076039 -35290,7604:467,-47,66,0,0,0.0761111 -35291,7604:466,-46,66,0,0,0.0766038 -35292,7604:465,-45,66,0,0,0.0764876 -35293,7604:364,-44,66,0,0,0.0767785 -35294,7604:363,-43,66,0,0,0.0771873 -35295,7602:362,-22,66,0,0,0.0766765 -35296,7602:361,-21,66,0,0,0.0761472 -35297,7602:360,-20,66,0,0,0.0759379 -35298,7601:469,-19,66,0,0,0.0759091 -35299,7601:468,-18,66,0,0,0.0759019 -35300,7601:467,-17,66,0,0,0.0759668 -35301,7601:466,-16,66,0,0,0.0767929 -35302,7601:465,-15,66,0,0,0.086116 -35303,7601:364,-14,66,0,0,0.115937 -35304,7601:363,-13,66,0,0,0.113433 -35305,7601:362,-12,66,0,0,0.110239 -35306,7601:361,-11,66,0,0,0.116274 -35307,7601:360,-10,66,0,0,0.121154 -35308,7600:469,-9,66,0,0,0.137578 -35309,7600:468,-8,66,0,0,0.143409 -35310,7600:467,-7,66,0,0,0.145964 -35311,7600:466,-6,66,0,0,0.151809 -35312,7600:465,-5,66,0,0,0.153657 -35313,7600:364,-4,66,0,0,0.139738 -35314,7600:363,-3,66,0,0,0.131736 -35315,7600:362,-2,66,0,0,0.115139 -35316,7600:361,-1,66,0,0,0.130181 -35317,1600:361,0,66,0,0,0.132999 -35318,1600:361,1,66,0,0,0.13249 -35319,1600:362,2,66,0,0,0.138949 -35320,1600:363,3,66,0,0,0.15057 -35321,1600:364,4,66,0,0,0.150032 -35322,1600:465,5,66,0,0,0.146374 -35323,1600:466,6,66,0,0,0.152857 -35324,1600:467,7,66,0,0,0.148596 -35325,1600:468,8,66,0,0,0.156579 -35326,1600:469,9,66,0,0,0.156905 -35327,1601:360,10,66,0,0,0.146799 -35328,1601:361,11,66,0,0,0.142841 -35329,1601:362,12,66,0,0,0.141376 -35330,1601:363,13,66,0,0,0.133094 -35331,1601:364,14,66,0,0,0.133153 -35332,1601:465,15,66,0,0,0.1377 -35333,1601:466,16,66,0,0,0.138115 -35334,1601:467,17,66,0,0,0.130414 -35335,1601:468,18,66,0,0,0.118875 -35336,1601:469,19,66,0,0,0.116148 -35337,1602:360,20,66,0,0,0.101172 -35338,1602:361,21,66,0,0,0.0881591 -35339,1602:362,22,66,0,0,0.084013 -35340,1614:363,143,66,0,0,0.0793591 -35341,1614:364,144,66,0,0,0.0807131 -35342,1614:465,145,66,0,0,0.081548 -35343,1614:466,146,66,0,0,0.081034 -35344,1614:467,147,66,0,0,0.0804315 -35345,1614:468,148,66,0,0,0.0797277 -35346,1614:469,149,66,0,0,0.0791717 -35347,1615:360,150,66,0,0,0.0783144 -35348,1615:361,151,66,0,0,0.0781812 -35349,1615:362,152,66,0,0,0.0787905 -35350,1615:363,153,66,0,0,0.0794643 -35351,1615:364,154,66,0,0,0.0793139 -35352,1615:465,155,66,0,0,0.0789844 -35353,1615:466,156,66,0,0,0.0787084 -35354,1615:467,157,66,0,0,0.078218 -35355,1615:468,158,66,0,0,0.0776864 -35356,1615:469,159,66,0,0,0.077363 -35357,1616:360,160,66,0,0,0.0770849 -35358,1616:361,161,66,0,0,0.0767712 -35359,1616:362,162,66,0,0,0.0764803 -35360,1616:363,163,66,0,0,0.0762918 -35361,1616:364,164,66,0,0,0.0761834 -35362,1616:465,165,66,0,0,0.0760967 -35363,1616:466,166,66,0,0,0.076039 -35364,1616:467,167,66,0,0,0.0760895 -35365,1616:468,168,66,0,0,0.0761761 -35366,1616:469,169,66,0,0,0.0762123 -35367,1617:360,170,66,0,0,0.0762413 -35368,1617:361,171,66,0,0,0.0762991 -35369,1617:362,172,66,0,0,0.0763643 -35370,1617:363,173,66,0,0,0.0764296 -35371,1617:364,174,66,0,0,0.0764732 -35372,1617:465,175,66,0,0,0.0764513 -35373,1617:466,176,66,0,0,0.0764513 -35374,1617:467,177,66,0,0,0.0764513 -35375,1617:468,178,66,0,0,0.0764513 -35376,1617:469,179,66,0,0,0.0764659 -35377,1618:360,180,66,0,0,0.0764223 -35378,7618:370,-180,67,0,0,0.0764803 -35379,7617:479,-179,67,0,0,0.0764732 -35380,7617:478,-178,67,0,0,0.0764369 -35381,7617:477,-177,67,0,0,0.076386 -35382,7617:476,-176,67,0,0,0.0763933 -35383,7617:475,-175,67,0,0,0.0763789 -35384,7617:374,-174,67,0,0,0.0765313 -35385,7617:373,-173,67,0,0,0.0766475 -35386,7617:372,-172,67,0,0,0.0766621 -35387,7617:371,-171,67,0,0,0.0766692 -35388,7617:370,-170,67,0,0,0.0767494 -35389,7616:479,-169,67,0,0,0.0767567 -35390,7616:478,-168,67,0,0,0.0767494 -35391,7616:477,-167,67,0,0,0.0767567 -35392,7616:476,-166,67,0,0,0.0767347 -35393,7616:475,-165,67,0,0,0.076742 -35394,7616:374,-164,67,0,0,0.0768294 -35395,7616:373,-163,67,0,0,0.0769534 -35396,7616:372,-162,67,0,0,0.0770117 -35397,7616:371,-161,67,0,0,0.0769024 -35398,7616:370,-160,67,0,0,0.076713 -35399,7615:479,-159,67,0,0,0.0765603 -35400,7615:478,-158,67,0,0,0.0764586 -35401,7615:477,-157,67,0,0,0.076415 -35402,7615:476,-156,67,0,0,0.0763716 -35403,7615:475,-155,67,0,0,0.0763571 -35404,7615:374,-154,67,0,0,0.07635 -35405,7615:373,-153,67,0,0,0.0763354 -35406,7615:372,-152,67,0,0,0.076553 -35407,7615:371,-151,67,0,0,0.076553 -35408,7615:370,-150,67,0,0,0.0761472 -35409,7607:370,-70,67,0,0,0.0771873 -35410,7606:479,-69,67,0,0,0.0773118 -35411,7606:478,-68,67,0,0,0.0775539 -35412,7606:475,-65,67,0,0,0.077797 -35413,7605:475,-55,67,0,0,0.0768585 -35414,7605:374,-54,67,0,0,0.0766912 -35415,7605:373,-53,67,0,0,0.0765022 -35416,7605:372,-52,67,0,0,0.0761183 -35417,7605:371,-51,67,0,0,0.0761111 -35418,7605:370,-50,67,0,0,0.0760533 -35419,7604:479,-49,67,0,0,0.076039 -35420,7604:478,-48,67,0,0,0.0759523 -35421,7604:477,-47,67,0,0,0.0764296 -35422,7604:476,-46,67,0,0,0.0769242 -35423,7604:475,-45,67,0,0,0.0768076 -35424,7604:374,-44,67,0,0,0.0771288 -35425,7604:373,-43,67,0,0,0.0761545 -35426,7602:373,-23,67,0,0,0.0771433 -35427,7602:371,-21,67,0,0,0.0762991 -35428,7602:370,-20,67,0,0,0.0760099 -35429,7601:479,-19,67,0,0,0.0759595 -35430,7601:478,-18,67,0,0,0.075974 -35431,7601:477,-17,67,0,0,0.0759523 -35432,7601:476,-16,67,0,0,0.0771726 -35433,7601:475,-15,67,0,0,0.103228 -35434,7601:374,-14,67,0,0,0.118864 -35435,7601:373,-13,67,0,0,0.115758 -35436,7601:372,-12,67,0,0,0.128872 -35437,7601:371,-11,67,0,0,0.133771 -35438,7601:370,-10,67,0,0,0.138998 -35439,7600:479,-9,67,0,0,0.141226 -35440,7600:478,-8,67,0,0,0.145082 -35441,7600:477,-7,67,0,0,0.1459 -35442,7600:476,-6,67,0,0,0.141813 -35443,7600:475,-5,67,0,0,0.135182 -35444,7600:374,-4,67,0,0,0.12123 -35445,7600:373,-3,67,0,0,0.106467 -35446,7600:372,-2,67,0,0,0.0980218 -35447,7600:371,-1,67,0,0,0.108736 -35448,1600:371,0,67,0,0,0.127437 -35449,1600:371,1,67,0,0,0.13505 -35450,1600:372,2,67,0,0,0.137529 -35451,1600:373,3,67,0,0,0.147069 -35452,1600:374,4,67,0,0,0.147198 -35453,1600:475,5,67,0,0,0.14451 -35454,1600:476,6,67,0,0,0.135266 -35455,1600:477,7,67,0,0,0.137944 -35456,1600:478,8,67,0,0,0.142264 -35457,1600:479,9,67,0,0,0.140381 -35458,1601:370,10,67,0,0,0.135483 -35459,1601:371,11,67,0,0,0.128504 -35460,1601:372,12,67,0,0,0.126515 -35461,1601:373,13,67,0,0,0.126538 -35462,1601:374,14,67,0,0,0.126061 -35463,1601:475,15,67,0,0,0.125192 -35464,1601:476,16,67,0,0,0.13108 -35465,1601:477,17,67,0,0,0.119999 -35466,1601:478,18,67,0,0,0.103332 -35467,1601:479,19,67,0,0,0.0954098 -35468,1614:373,143,67,0,0,0.0783961 -35469,1614:374,144,67,0,0,0.0783218 -35470,1614:475,145,67,0,0,0.0786711 -35471,1614:476,146,67,0,0,0.0788203 -35472,1614:477,147,67,0,0,0.0786116 -35473,1614:478,148,67,0,0,0.0777675 -35474,1614:479,149,67,0,0,0.0782033 -35475,1615:370,150,67,0,0,0.0781367 -35476,1615:371,151,67,0,0,0.0777601 -35477,1615:372,152,67,0,0,0.0775981 -35478,1615:373,153,67,0,0,0.0775246 -35479,1615:374,154,67,0,0,0.0780552 -35480,1615:475,155,67,0,0,0.078048 -35481,1615:476,156,67,0,0,0.0775833 -35482,1615:477,157,67,0,0,0.0771067 -35483,1615:478,158,67,0,0,0.0768076 -35484,1615:479,159,67,0,0,0.0765457 -35485,1616:370,160,67,0,0,0.07635 -35486,1616:371,161,67,0,0,0.0762196 -35487,1616:372,162,67,0,0,0.0761038 -35488,1616:373,163,67,0,0,0.0760895 -35489,1616:374,164,67,0,0,0.0760822 -35490,1616:475,165,67,0,0,0.0760245 -35491,1616:476,166,67,0,0,0.0760317 -35492,1616:477,167,67,0,0,0.0761761 -35493,1616:478,168,67,0,0,0.0762413 -35494,1616:479,169,67,0,0,0.0762702 -35495,1617:370,170,67,0,0,0.0762702 -35496,1617:371,171,67,0,0,0.0763137 -35497,1617:372,172,67,0,0,0.0763789 -35498,1617:373,173,67,0,0,0.0764296 -35499,1617:374,174,67,0,0,0.0764369 -35500,1617:475,175,67,0,0,0.0764079 -35501,1617:476,176,67,0,0,0.0764006 -35502,1617:477,177,67,0,0,0.0764079 -35503,1617:478,178,67,0,0,0.0764296 -35504,1617:479,179,67,0,0,0.0764659 -35505,1618:370,180,67,0,0,0.0764803 -35506,7618:380,-180,68,0,0,0.0764803 -35507,7617:489,-179,68,0,0,0.0764949 -35508,7617:488,-178,68,0,0,0.0765022 -35509,7617:487,-177,68,0,0,0.0765022 -35510,7617:486,-176,68,0,0,0.0764732 -35511,7617:485,-175,68,0,0,0.0764876 -35512,7617:384,-174,68,0,0,0.0766111 -35513,7617:383,-173,68,0,0,0.0767274 -35514,7617:382,-172,68,0,0,0.076742 -35515,7617:381,-171,68,0,0,0.0767712 -35516,7617:380,-170,68,0,0,0.0768003 -35517,7616:489,-169,68,0,0,0.0767638 -35518,7616:488,-168,68,0,0,0.0766621 -35519,7616:487,-167,68,0,0,0.0766401 -35520,7616:486,-166,68,0,0,0.0766257 -35521,7616:485,-165,68,0,0,0.0766184 -35522,7616:384,-164,68,0,0,0.0766548 -35523,7616:383,-163,68,0,0,0.0767347 -35524,7616:382,-162,68,0,0,0.0767858 -35525,7616:381,-161,68,0,0,0.0767347 -35526,7616:380,-160,68,0,0,0.0766765 -35527,7615:489,-159,68,0,0,0.0766257 -35528,7615:488,-158,68,0,0,0.0765747 -35529,7615:487,-157,68,0,0,0.0765676 -35530,7615:486,-156,68,0,0,0.0765384 -35531,7615:485,-155,68,0,0,0.0764079 -35532,7615:384,-154,68,0,0,0.0763427 -35533,7615:383,-153,68,0,0,0.076415 -35534,7615:382,-152,68,0,0,0.0762775 -35535,7615:381,-151,68,0,0,0.07635 -35536,7615:380,-150,68,0,0,0.0759091 -35537,7614:489,-149,68,0,0,0.0755781 -35538,7606:489,-69,68,0,0,0.0771215 -35539,7606:488,-68,68,0,0,0.0772166 -35540,7606:487,-67,68,0,0,0.0774439 -35541,7606:486,-66,68,0,0,0.0775539 -35542,7605:487,-57,68,0,0,0.0769754 -35543,7605:384,-54,68,0,0,0.0765093 -35544,7605:383,-53,68,0,0,0.0764513 -35545,7605:382,-52,68,0,0,0.0760606 -35546,7605:381,-51,68,0,0,0.075974 -35547,7605:380,-50,68,0,0,0.0759379 -35548,7604:489,-49,68,0,0,0.0760679 -35549,7604:488,-48,68,0,0,0.0763137 -35550,7604:487,-47,68,0,0,0.0764442 -35551,7604:486,-46,68,0,0,0.077136 -35552,7604:485,-45,68,0,0,0.0772311 -35553,7602:382,-22,68,0,0,0.076415 -35554,7602:381,-21,68,0,0,0.0763789 -35555,7602:380,-20,68,0,0,0.0761545 -35556,7601:489,-19,68,0,0,0.0760317 -35557,7601:488,-18,68,0,0,0.0760172 -35558,7601:487,-17,68,0,0,0.0759307 -35559,7601:486,-16,68,0,0,0.0768441 -35560,7601:485,-15,68,0,0,0.0966047 -35561,7601:384,-14,68,0,0,0.125858 -35562,7601:383,-13,68,0,0,0.130881 -35563,7601:382,-12,68,0,0,0.1342 -35564,7601:381,-11,68,0,0,0.138323 -35565,7601:380,-10,68,0,0,0.137944 -35566,7600:489,-9,68,0,0,0.131349 -35567,7600:488,-8,68,0,0,0.123081 -35568,7600:485,-5,68,0,0,0.104923 -35569,7600:384,-4,68,0,0,0.117472 -35570,7600:383,-3,68,0,0,0.104808 -35571,7600:382,-2,68,0,0,0.0934331 -35572,7600:381,-1,68,0,0,0.104576 -35573,1600:381,0,68,0,0,0.121932 -35574,1600:381,1,68,0,0,0.130367 -35575,1600:382,2,68,0,0,0.136945 -35576,1600:383,3,68,0,0,0.140766 -35577,1600:384,4,68,0,0,0.135086 -35578,1600:485,5,68,0,0,0.141251 -35579,1600:486,6,68,0,0,0.132762 -35580,1600:487,7,68,0,0,0.126515 -35581,1600:488,8,68,0,0,0.125249 -35582,1600:489,9,68,0,0,0.116074 -35583,1601:380,10,68,0,0,0.109766 -35584,1601:381,11,68,0,0,0.110926 -35585,1601:382,12,68,0,0,0.117728 -35586,1601:383,13,68,0,0,0.123236 -35587,1601:384,14,68,0,0,0.120162 -35588,1601:485,15,68,0,0,0.122263 -35589,1601:486,16,68,0,0,0.123547 -35590,1601:487,17,68,0,0,0.105232 -35591,1601:488,18,68,0,0,0.0968831 -35592,1602:381,21,68,0,0,0.0781071 -35593,1602:382,22,68,0,0,0.0845602 -35594,1614:381,141,68,0,0,0.0786414 -35595,1614:382,142,68,0,0,0.0784333 -35596,1614:383,143,68,0,0,0.0781145 -35597,1614:384,144,68,0,0,0.0775833 -35598,1614:485,145,68,0,0,0.0769899 -35599,1614:486,146,68,0,0,0.0767638 -35600,1614:487,147,68,0,0,0.0767785 -35601,1614:488,148,68,0,0,0.0766983 -35602,1614:489,149,68,0,0,0.0766983 -35603,1615:380,150,68,0,0,0.0767347 -35604,1615:381,151,68,0,0,0.076713 -35605,1615:382,152,68,0,0,0.0766038 -35606,1615:383,153,68,0,0,0.076524 -35607,1615:384,154,68,0,0,0.0764803 -35608,1615:485,155,68,0,0,0.0764586 -35609,1615:486,156,68,0,0,0.0763933 -35610,1615:487,157,68,0,0,0.0763354 -35611,1615:488,158,68,0,0,0.0762702 -35612,1615:489,159,68,0,0,0.0761327 -35613,1616:380,160,68,0,0,0.0760245 -35614,1616:381,161,68,0,0,0.0759452 -35615,1616:382,162,68,0,0,0.0759307 -35616,1616:383,163,68,0,0,0.0759884 -35617,1616:384,164,68,0,0,0.0760099 -35618,1616:485,165,68,0,0,0.0759884 -35619,1616:486,166,68,0,0,0.0760172 -35620,1616:487,167,68,0,0,0.0761689 -35621,1616:488,168,68,0,0,0.0762702 -35622,1616:489,169,68,0,0,0.0762918 -35623,1617:380,170,68,0,0,0.0763064 -35624,1617:381,171,68,0,0,0.0763571 -35625,1617:382,172,68,0,0,0.0764006 -35626,1617:383,173,68,0,0,0.0764223 -35627,1617:384,174,68,0,0,0.076415 -35628,1617:485,175,68,0,0,0.0764006 -35629,1617:486,176,68,0,0,0.0764006 -35630,1617:487,177,68,0,0,0.0764006 -35631,1617:488,178,68,0,0,0.0764296 -35632,1617:489,179,68,0,0,0.0764659 -35633,1618:380,180,68,0,0,0.0764803 -35634,7618:390,-180,69,0,0,0.076524 -35635,7617:499,-179,69,0,0,0.0765313 -35636,7617:498,-178,69,0,0,0.0765313 -35637,7617:497,-177,69,0,0,0.0765603 -35638,7617:496,-176,69,0,0,0.0765893 -35639,7617:495,-175,69,0,0,0.0765603 -35640,7617:394,-174,69,0,0,0.0766257 -35641,7617:393,-173,69,0,0,0.0767494 -35642,7617:392,-172,69,0,0,0.0767638 -35643,7617:391,-171,69,0,0,0.0767347 -35644,7617:390,-170,69,0,0,0.0766839 -35645,7616:499,-169,69,0,0,0.0766257 -35646,7616:498,-168,69,0,0,0.0766038 -35647,7616:497,-167,69,0,0,0.0766328 -35648,7616:496,-166,69,0,0,0.0766257 -35649,7616:495,-165,69,0,0,0.0766184 -35650,7616:394,-164,69,0,0,0.0765893 -35651,7616:393,-163,69,0,0,0.0765457 -35652,7616:392,-162,69,0,0,0.0765166 -35653,7616:391,-161,69,0,0,0.0765457 -35654,7616:390,-160,69,0,0,0.076582 -35655,7615:499,-159,69,0,0,0.0765893 -35656,7615:498,-158,69,0,0,0.0766328 -35657,7615:497,-157,69,0,0,0.0766765 -35658,7615:496,-156,69,0,0,0.0766401 -35659,7615:495,-155,69,0,0,0.0765093 -35660,7615:394,-154,69,0,0,0.0763427 -35661,7615:393,-153,69,0,0,0.0765166 -35662,7615:392,-152,69,0,0,0.0764803 -35663,7615:391,-151,69,0,0,0.0763427 -35664,7615:390,-150,69,0,0,0.076524 -35665,7614:499,-149,69,0,0,0.0765022 -35666,7614:498,-148,69,0,0,0.0765893 -35667,7614:497,-147,69,0,0,0.0766184 -35668,7614:496,-146,69,0,0,0.0764079 -35669,7607:391,-71,69,0,0,0.0777084 -35670,7607:390,-70,69,0,0,0.0774071 -35671,7606:499,-69,69,0,0,0.0771873 -35672,7606:498,-68,69,0,0,0.0769607 -35673,7606:497,-67,69,0,0,0.0771067 -35674,7605:497,-57,69,0,0,0.0769607 -35675,7605:394,-54,69,0,0,0.0762775 -35676,7605:393,-53,69,0,0,0.0759091 -35677,7605:392,-52,69,0,0,0.0761978 -35678,7605:391,-51,69,0,0,0.0762629 -35679,7605:390,-50,69,0,0,0.0761183 -35680,7604:499,-49,69,0,0,0.076234 -35681,7604:498,-48,69,0,0,0.0763354 -35682,7604:497,-47,69,0,0,0.0766475 -35683,7602:391,-21,69,0,0,0.0763354 -35684,7602:390,-20,69,0,0,0.0761327 -35685,7601:499,-19,69,0,0,0.0760749 -35686,7601:498,-18,69,0,0,0.0760967 -35687,7601:497,-17,69,0,0,0.0759668 -35688,7601:496,-16,69,0,0,0.0777747 -35689,7601:495,-15,69,0,0,0.108647 -35690,7601:394,-14,69,0,0,0.10637 -35691,7601:393,-13,69,0,0,0.116369 -35692,7601:392,-12,69,0,0,0.123414 -35693,7601:391,-11,69,0,0,0.12863 -35694,7600:496,-6,69,0,0,0.0882168 -35695,7600:495,-5,69,0,0,0.0864561 -35696,7600:394,-4,69,0,0,0.0860432 -35697,7600:393,-3,69,0,0,0.0975774 -35698,7600:392,-2,69,0,0,0.0852147 -35699,7600:391,-1,69,0,0,0.111109 -35700,1600:391,0,69,0,0,0.120227 -35701,1600:391,1,69,0,0,0.127838 -35702,1600:392,2,69,0,0,0.134918 -35703,1600:393,3,69,0,0,0.125779 -35704,1600:394,4,69,0,0,0.117036 -35705,1600:495,5,69,0,0,0.13268 -35706,1600:496,6,69,0,0,0.127106 -35707,1600:497,7,69,0,0,0.116232 -35708,1600:498,8,69,0,0,0.118413 -35709,1600:499,9,69,0,0,0.111058 -35710,1601:390,10,69,0,0,0.105736 -35711,1601:391,11,69,0,0,0.111546 -35712,1601:392,12,69,0,0,0.117942 -35713,1601:393,13,69,0,0,0.121012 -35714,1601:394,14,69,0,0,0.112815 -35715,1601:495,15,69,0,0,0.111862 -35716,1601:496,16,69,0,0,0.115916 -35717,1601:497,17,69,0,0,0.114148 -35718,1601:498,18,69,0,0,0.105107 -35719,1601:499,19,69,0,0,0.104442 -35720,1602:390,20,69,0,0,0.0981308 -35721,1602:391,21,69,0,0,0.0957386 -35722,1614:391,141,69,0,0,0.0797503 -35723,1614:392,142,69,0,0,0.0793366 -35724,1614:393,143,69,0,0,0.0778116 -35725,1614:394,144,69,0,0,0.0769097 -35726,1614:495,145,69,0,0,0.0767567 -35727,1614:496,146,69,0,0,0.0769024 -35728,1614:497,147,69,0,0,0.0771215 -35729,1614:498,148,69,0,0,0.0772092 -35730,1614:499,149,69,0,0,0.0769973 -35731,1615:390,150,69,0,0,0.0766548 -35732,1615:391,151,69,0,0,0.0764659 -35733,1615:392,152,69,0,0,0.0765093 -35734,1615:393,153,69,0,0,0.0765384 -35735,1615:394,154,69,0,0,0.0765093 -35736,1615:495,155,69,0,0,0.0763933 -35737,1615:496,156,69,0,0,0.0761978 -35738,1615:497,157,69,0,0,0.0760895 -35739,1615:498,158,69,0,0,0.0759811 -35740,1615:499,159,69,0,0,0.0758586 -35741,1616:390,160,69,0,0,0.0758225 -35742,1616:391,161,69,0,0,0.075837 -35743,1616:392,162,69,0,0,0.0758946 -35744,1616:393,163,69,0,0,0.0759452 -35745,1616:394,164,69,0,0,0.0760029 -35746,1616:495,165,69,0,0,0.0760679 -35747,1616:496,166,69,0,0,0.0761472 -35748,1616:497,167,69,0,0,0.0762485 -35749,1616:498,168,69,0,0,0.0762702 -35750,1616:499,169,69,0,0,0.0762775 -35751,1617:390,170,69,0,0,0.0762991 -35752,1617:391,171,69,0,0,0.0763208 -35753,1617:392,172,69,0,0,0.0763643 -35754,1617:393,173,69,0,0,0.0763933 -35755,1617:394,174,69,0,0,0.076386 -35756,1617:495,175,69,0,0,0.0763933 -35757,1617:496,176,69,0,0,0.076415 -35758,1617:497,177,69,0,0,0.0764442 -35759,1617:498,178,69,0,0,0.0764949 -35760,1617:499,179,69,0,0,0.0765093 -35761,1618:390,180,69,0,0,0.076524 -35762,7718:100,-180,70,0,0,0.0765747 -35763,7717:209,-179,70,0,0,0.0765747 -35764,7717:208,-178,70,0,0,0.0765893 -35765,7717:207,-177,70,0,0,0.0766257 -35766,7717:206,-176,70,0,0,0.0766401 -35767,7717:205,-175,70,0,0,0.0766401 -35768,7717:104,-174,70,0,0,0.0766621 -35769,7717:103,-173,70,0,0,0.076713 -35770,7717:102,-172,70,0,0,0.0766839 -35771,7717:101,-171,70,0,0,0.0766475 -35772,7717:100,-170,70,0,0,0.0766328 -35773,7716:209,-169,70,0,0,0.0766111 -35774,7716:208,-168,70,0,0,0.0765747 -35775,7716:207,-167,70,0,0,0.0766038 -35776,7716:206,-166,70,0,0,0.0766401 -35777,7716:205,-165,70,0,0,0.0766184 -35778,7716:104,-164,70,0,0,0.0765967 -35779,7716:103,-163,70,0,0,0.0765166 -35780,7716:102,-162,70,0,0,0.0764876 -35781,7716:101,-161,70,0,0,0.0764949 -35782,7716:100,-160,70,0,0,0.0764803 -35783,7715:209,-159,70,0,0,0.0764732 -35784,7715:208,-158,70,0,0,0.0764876 -35785,7715:207,-157,70,0,0,0.0765457 -35786,7715:206,-156,70,0,0,0.076553 -35787,7715:205,-155,70,0,0,0.0764949 -35788,7715:104,-154,70,0,0,0.0763933 -35789,7715:103,-153,70,0,0,0.0764223 -35790,7715:102,-152,70,0,0,0.0765384 -35791,7715:101,-151,70,0,0,0.0766692 -35792,7715:100,-150,70,0,0,0.076713 -35793,7714:209,-149,70,0,0,0.0767203 -35794,7714:208,-148,70,0,0,0.0766912 -35795,7714:207,-147,70,0,0,0.0766475 -35796,7714:206,-146,70,0,0,0.0767929 -35797,7714:205,-145,70,0,0,0.0768367 -35798,7707:100,-70,70,0,0,0.0769973 -35799,7706:209,-69,70,0,0,0.0770922 -35800,7706:208,-68,70,0,0,0.0769534 -35801,7706:207,-67,70,0,0,0.0769315 -35802,7706:205,-65,70,0,0,0.0764876 -35803,7706:102,-62,70,0,0,0.0774878 -35804,7705:206,-56,70,0,0,0.0768659 -35805,7705:205,-55,70,0,0,0.0765166 -35806,7705:104,-54,70,0,0,0.07614 -35807,7705:103,-53,70,0,0,0.0760172 -35808,7705:102,-52,70,0,0,0.0759307 -35809,7705:101,-51,70,0,0,0.0759162 -35810,7705:100,-50,70,0,0,0.0760029 -35811,7704:209,-49,70,0,0,0.0760895 -35812,7704:208,-48,70,0,0,0.076046 -35813,7704:207,-47,70,0,0,0.0766475 -35814,7704:206,-46,70,0,0,0.0777527 -35815,7702:100,-20,70,0,0,0.0760749 -35816,7701:209,-19,70,0,0,0.0760822 -35817,7701:208,-18,70,0,0,0.0761472 -35818,7701:207,-17,70,0,0,0.0758443 -35819,7701:206,-16,70,0,0,0.0807435 -35820,7701:205,-15,70,0,0,0.116962 -35821,7701:104,-14,70,0,0,0.121526 -35822,7701:103,-13,70,0,0,0.1249 -35823,7701:102,-12,70,0,0,0.127895 -35824,7700:104,-4,70,0,0,0.0790967 -35825,7700:103,-3,70,0,0,0.0843219 -35826,7700:102,-2,70,0,0,0.0853509 -35827,7700:101,-1,70,0,0,0.113278 -35828,1700:101,0,70,0,0,0.12286 -35829,1700:101,1,70,0,0,0.128124 -35830,1700:102,2,70,0,0,0.131889 -35831,1700:103,3,70,0,0,0.11266 -35832,1700:104,4,70,0,0,0.105465 -35833,1700:205,5,70,0,0,0.118231 -35834,1700:206,6,70,0,0,0.105504 -35835,1700:207,7,70,0,0,0.100921 -35836,1700:208,8,70,0,0,0.0992825 -35837,1700:209,9,70,0,0,0.103408 -35838,1701:100,10,70,0,0,0.108697 -35839,1701:101,11,70,0,0,0.115548 -35840,1701:102,12,70,0,0,0.118467 -35841,1701:103,13,70,0,0,0.117568 -35842,1701:104,14,70,0,0,0.11224 -35843,1701:205,15,70,0,0,0.115045 -35844,1701:206,16,70,0,0,0.111322 -35845,1701:207,17,70,0,0,0.109937 -35846,1701:208,18,70,0,0,0.0972521 -35847,1702:101,21,70,0,0,0.0910079 -35848,1714:205,145,70,0,0,0.0770704 -35849,1714:206,146,70,0,0,0.0771654 -35850,1714:207,147,70,0,0,0.0773559 -35851,1714:208,148,70,0,0,0.0771726 -35852,1714:209,149,70,0,0,0.0766111 -35853,1715:100,150,70,0,0,0.0761689 -35854,1715:101,151,70,0,0,0.0760606 -35855,1715:102,152,70,0,0,0.0759379 -35856,1715:103,153,70,0,0,0.0759379 -35857,1715:104,154,70,0,0,0.0759379 -35858,1715:205,155,70,0,0,0.0758515 -35859,1715:206,156,70,0,0,0.0758082 -35860,1715:207,157,70,0,0,0.0758082 -35861,1715:208,158,70,0,0,0.0758298 -35862,1715:209,159,70,0,0,0.0758515 -35863,1716:100,160,70,0,0,0.0758658 -35864,1716:101,161,70,0,0,0.0759884 -35865,1716:102,162,70,0,0,0.0760317 -35866,1716:103,163,70,0,0,0.0760967 -35867,1716:104,164,70,0,0,0.076205 -35868,1716:205,165,70,0,0,0.076234 -35869,1716:206,166,70,0,0,0.0762413 -35870,1716:207,167,70,0,0,0.0762558 -35871,1716:208,168,70,0,0,0.0762558 -35872,1716:209,169,70,0,0,0.0762629 -35873,1717:100,170,70,0,0,0.0762991 -35874,1717:101,171,70,0,0,0.0763281 -35875,1717:102,172,70,0,0,0.0763643 -35876,1717:103,173,70,0,0,0.0763643 -35877,1717:104,174,70,0,0,0.0763716 -35878,1717:205,175,70,0,0,0.0763933 -35879,1717:206,176,70,0,0,0.0764223 -35880,1717:207,177,70,0,0,0.0764442 -35881,1717:208,178,70,0,0,0.0764659 -35882,1717:209,179,70,0,0,0.0765384 -35883,1718:100,180,70,0,0,0.0765747 -35884,7718:110,-180,71,0,0,0.0765893 -35885,7717:219,-179,71,0,0,0.0766111 -35886,7717:218,-178,71,0,0,0.0765967 -35887,7717:217,-177,71,0,0,0.0765967 -35888,7717:216,-176,71,0,0,0.0766401 -35889,7717:215,-175,71,0,0,0.0766548 -35890,7717:114,-174,71,0,0,0.0766621 -35891,7717:113,-173,71,0,0,0.0766257 -35892,7717:112,-172,71,0,0,0.0765747 -35893,7717:111,-171,71,0,0,0.0766038 -35894,7717:110,-170,71,0,0,0.0766912 -35895,7716:219,-169,71,0,0,0.0766839 -35896,7716:218,-168,71,0,0,0.0766111 -35897,7716:217,-167,71,0,0,0.076582 -35898,7716:216,-166,71,0,0,0.0766111 -35899,7716:215,-165,71,0,0,0.0766111 -35900,7716:114,-164,71,0,0,0.0765603 -35901,7716:113,-163,71,0,0,0.0765093 -35902,7716:112,-162,71,0,0,0.0764949 -35903,7716:111,-161,71,0,0,0.0764803 -35904,7716:110,-160,71,0,0,0.0764586 -35905,7715:219,-159,71,0,0,0.0764586 -35906,7715:218,-158,71,0,0,0.0764732 -35907,7715:217,-157,71,0,0,0.0765166 -35908,7715:216,-156,71,0,0,0.0765676 -35909,7715:215,-155,71,0,0,0.0765313 -35910,7715:114,-154,71,0,0,0.0763716 -35911,7715:113,-153,71,0,0,0.0763716 -35912,7715:112,-152,71,0,0,0.0759523 -35913,7715:111,-151,71,0,0,0.0762485 -35914,7715:110,-150,71,0,0,0.0765967 -35915,7714:219,-149,71,0,0,0.0767056 -35916,7714:218,-148,71,0,0,0.0767347 -35917,7714:217,-147,71,0,0,0.0766401 -35918,7714:216,-146,71,0,0,0.076742 -35919,7714:215,-145,71,0,0,0.0767567 -35920,7714:114,-144,71,0,0,0.0771726 -35921,7707:218,-78,71,0,0,0.0860837 -35922,7707:217,-77,71,0,0,0.0854472 -35923,7707:216,-76,71,0,0,0.0847193 -35924,7707:215,-75,71,0,0,0.0841236 -35925,7707:114,-74,71,0,0,0.083367 -35926,7707:110,-70,71,0,0,0.0770849 -35927,7706:218,-68,71,0,0,0.0769899 -35928,7706:217,-67,71,0,0,0.0768367 -35929,7706:216,-66,71,0,0,0.0768149 -35930,7706:110,-60,71,0,0,0.0769899 -35931,7705:219,-59,71,0,0,0.0769315 -35932,7705:218,-58,71,0,0,0.076895 -35933,7705:217,-57,71,0,0,0.0769754 -35934,7705:216,-56,71,0,0,0.0768294 -35935,7705:215,-55,71,0,0,0.076386 -35936,7705:112,-52,71,0,0,0.0770775 -35937,7705:111,-51,71,0,0,0.0766983 -35938,7705:110,-50,71,0,0,0.0764369 -35939,7704:219,-49,71,0,0,0.0762848 -35940,7704:218,-48,71,0,0,0.0761111 -35941,7704:217,-47,71,0,0,0.07635 -35942,7704:216,-46,71,0,0,0.077297 -35943,7704:215,-45,71,0,0,0.0771654 -35944,7702:113,-23,71,0,0,0.0764442 -35945,7702:112,-22,71,0,0,0.0763571 -35946,7702:110,-20,71,0,0,0.0761327 -35947,7701:219,-19,71,0,0,0.0761834 -35948,7701:218,-18,71,0,0,0.0759884 -35949,7701:217,-17,71,0,0,0.0762267 -35950,7701:216,-16,71,0,0,0.0789247 -35951,7701:215,-15,71,0,0,0.0824607 -35952,7701:114,-14,71,0,0,0.0817328 -35953,7701:113,-13,71,0,0,0.0874021 -35954,7701:112,-12,71,0,0,0.116686 -35955,7701:111,-11,71,0,0,0.111058 -35956,7701:110,-10,71,0,0,0.103408 -35957,7700:217,-7,71,0,0,0.0763933 -35958,7700:216,-6,71,0,0,0.0762918 -35959,7700:215,-5,71,0,0,0.0762267 -35960,7700:114,-4,71,0,0,0.0763427 -35961,7700:113,-3,71,0,0,0.076386 -35962,7700:112,-2,71,0,0,0.0810109 -35963,7700:111,-1,71,0,0,0.102073 -35964,1700:111,0,71,0,0,0.0920502 -35965,1700:111,1,71,0,0,0.100418 -35966,1700:112,2,71,0,0,0.120303 -35967,1700:113,3,71,0,0,0.114055 -35968,1700:114,4,71,0,0,0.10819 -35969,1700:215,5,71,0,0,0.100205 -35970,1700:216,6,71,0,0,0.0947292 -35971,1700:217,7,71,0,0,0.0982218 -35972,1700:218,8,71,0,0,0.098998 -35973,1700:219,9,71,0,0,0.101098 -35974,1701:110,10,71,0,0,0.102318 -35975,1701:111,11,71,0,0,0.109786 -35976,1701:112,12,71,0,0,0.11365 -35977,1701:113,13,71,0,0,0.117259 -35978,1701:114,14,71,0,0,0.102007 -35979,1701:215,15,71,0,0,0.107252 -35980,1701:216,16,71,0,0,0.110784 -35981,1701:217,17,71,0,0,0.104154 -35982,1701:218,18,71,0,0,0.0975595 -35983,1701:219,19,71,0,0,0.0907786 -35984,1702:110,20,71,0,0,0.0880518 -35985,1702:111,21,71,0,0,0.0822122 -35986,1714:216,146,71,0,0,0.0775394 -35987,1714:217,147,71,0,0,0.0772678 -35988,1714:218,148,71,0,0,0.0766401 -35989,1714:219,149,71,0,0,0.075686 -35990,1715:110,150,71,0,0,0.0759162 -35991,1715:111,151,71,0,0,0.0758803 -35992,1715:112,152,71,0,0,0.075758 -35993,1715:113,153,71,0,0,0.075765 -35994,1715:114,154,71,0,0,0.075765 -35995,1715:215,155,71,0,0,0.0757362 -35996,1715:216,156,71,0,0,0.0757362 -35997,1715:217,157,71,0,0,0.075765 -35998,1715:218,158,71,0,0,0.0758298 -35999,1715:219,159,71,0,0,0.0759452 -36000,1716:110,160,71,0,0,0.0760895 -36001,1716:111,161,71,0,0,0.076205 -36002,1716:112,162,71,0,0,0.0762413 -36003,1716:113,163,71,0,0,0.0762558 -36004,1716:114,164,71,0,0,0.0762558 -36005,1716:215,165,71,0,0,0.0762558 -36006,1716:216,166,71,0,0,0.0762558 -36007,1716:217,167,71,0,0,0.0762629 -36008,1716:218,168,71,0,0,0.0762558 -36009,1716:219,169,71,0,0,0.0762629 -36010,1717:110,170,71,0,0,0.0762848 -36011,1717:111,171,71,0,0,0.0763137 -36012,1717:112,172,71,0,0,0.0763354 -36013,1717:113,173,71,0,0,0.07635 -36014,1717:114,174,71,0,0,0.0763571 -36015,1717:215,175,71,0,0,0.0763643 -36016,1717:216,176,71,0,0,0.0763716 -36017,1717:217,177,71,0,0,0.076386 -36018,1717:218,178,71,0,0,0.0764079 -36019,1717:219,179,71,0,0,0.0765022 -36020,1718:110,180,71,0,0,0.0765893 -36021,7718:120,-180,72,0,0,0.0764876 -36022,7717:229,-179,72,0,0,0.0765676 -36023,7717:228,-178,72,0,0,0.0765747 -36024,7717:227,-177,72,0,0,0.0766111 -36025,7717:226,-176,72,0,0,0.0766184 -36026,7717:225,-175,72,0,0,0.0766184 -36027,7717:124,-174,72,0,0,0.0766328 -36028,7717:123,-173,72,0,0,0.0766328 -36029,7717:122,-172,72,0,0,0.0766257 -36030,7717:121,-171,72,0,0,0.0766475 -36031,7717:120,-170,72,0,0,0.0766401 -36032,7716:229,-169,72,0,0,0.0766475 -36033,7716:228,-168,72,0,0,0.0766692 -36034,7716:227,-167,72,0,0,0.0766111 -36035,7716:226,-166,72,0,0,0.0766038 -36036,7716:225,-165,72,0,0,0.0766038 -36037,7716:124,-164,72,0,0,0.0765384 -36038,7716:123,-163,72,0,0,0.0764876 -36039,7716:122,-162,72,0,0,0.0764659 -36040,7716:121,-161,72,0,0,0.0764442 -36041,7716:120,-160,72,0,0,0.0764442 -36042,7715:229,-159,72,0,0,0.0764803 -36043,7715:228,-158,72,0,0,0.0765893 -36044,7715:227,-157,72,0,0,0.0766692 -36045,7715:226,-156,72,0,0,0.0765747 -36046,7715:225,-155,72,0,0,0.0763789 -36047,7715:124,-154,72,0,0,0.076524 -36048,7715:123,-153,72,0,0,0.075722 -36049,7714:227,-147,72,0,0,0.0766475 -36050,7714:226,-146,72,0,0,0.0765893 -36051,7714:225,-145,72,0,0,0.0767494 -36052,7714:124,-144,72,0,0,0.0766839 -36053,7714:123,-143,72,0,0,0.0766475 -36054,7714:122,-142,72,0,0,0.0768806 -36055,7707:226,-76,72,0,0,0.0835713 -36056,7707:225,-75,72,0,0,0.0823597 -36057,7707:124,-74,72,0,0,0.0807666 -36058,7707:123,-73,72,0,0,0.080128 -36059,7707:122,-72,72,0,0,0.0792016 -36060,7706:228,-68,72,0,0,0.0770409 -36061,7706:227,-67,72,0,0,0.0769242 -36062,7706:226,-66,72,0,0,0.0768221 -36063,7706:225,-65,72,0,0,0.0767858 -36064,7706:124,-64,72,0,0,0.0767347 -36065,7705:227,-57,72,0,0,0.0769462 -36066,7705:226,-56,72,0,0,0.0765676 -36067,7705:121,-51,72,0,0,0.0769754 -36068,7704:228,-48,72,0,0,0.076386 -36069,7704:227,-47,72,0,0,0.076234 -36070,7704:226,-46,72,0,0,0.0762196 -36071,7704:225,-45,72,0,0,0.0762918 -36072,7704:123,-43,72,0,0,0.0763354 -36073,7704:122,-42,72,0,0,0.0762413 -36074,7704:121,-41,72,0,0,0.0762196 -36075,7704:120,-40,72,0,0,0.0761978 -36076,7702:123,-23,72,0,0,0.0762702 -36077,7702:122,-22,72,0,0,0.0762196 -36078,7702:121,-21,72,0,0,0.0761978 -36079,7702:120,-20,72,0,0,0.0761978 -36080,7701:229,-19,72,0,0,0.0759956 -36081,7701:228,-18,72,0,0,0.0756715 -36082,7701:227,-17,72,0,0,0.0755065 -36083,7701:226,-16,72,0,0,0.0755567 -36084,7701:225,-15,72,0,0,0.0762848 -36085,7701:124,-14,72,0,0,0.077657 -36086,7701:123,-13,72,0,0,0.0926529 -36087,7701:122,-12,72,0,0,0.109405 -36088,7701:121,-11,72,0,0,0.117568 -36089,7701:120,-10,72,0,0,0.0980126 -36090,7700:229,-9,72,0,0,0.0794567 -36091,7700:226,-6,72,0,0,0.076895 -36092,7700:225,-5,72,0,0,0.0767858 -36093,7700:124,-4,72,0,0,0.0770409 -36094,7700:123,-3,72,0,0,0.0787009 -36095,7700:122,-2,72,0,0,0.0943773 -36096,7700:121,-1,72,0,0,0.0821968 -36097,1700:121,0,72,0,0,0.084576 -36098,1700:121,1,72,0,0,0.0831081 -36099,1700:122,2,72,0,0,0.0907532 -36100,1700:123,3,72,0,0,0.111109 -36101,1700:124,4,72,0,0,0.105329 -36102,1700:225,5,72,0,0,0.105029 -36103,1700:226,6,72,0,0,0.102337 -36104,1700:227,7,72,0,0,0.100921 -36105,1700:228,8,72,0,0,0.105262 -36106,1700:229,9,72,0,0,0.105358 -36107,1701:120,10,72,0,0,0.107095 -36108,1701:121,11,72,0,0,0.108647 -36109,1701:122,12,72,0,0,0.115233 -36110,1701:123,13,72,0,0,0.113278 -36111,1701:124,14,72,0,0,0.103542 -36112,1701:225,15,72,0,0,0.103532 -36113,1701:226,16,72,0,0,0.096068 -36114,1701:227,17,72,0,0,0.0952857 -36115,1701:228,18,72,0,0,0.0962288 -36116,1701:229,19,72,0,0,0.0928518 -36117,1702:120,20,72,0,0,0.0857124 -36118,1702:121,21,72,0,0,0.0798634 -36119,1702:123,23,72,0,0,0.0823131 -36120,1714:124,144,72,0,0,0.0771067 -36121,1714:225,145,72,0,0,0.0775465 -36122,1714:226,146,72,0,0,0.0773337 -36123,1714:227,147,72,0,0,0.0769462 -36124,1714:228,148,72,0,0,0.0760967 -36125,1714:229,149,72,0,0,0.075442 -36126,1715:120,150,72,0,0,0.0756932 -36127,1715:121,151,72,0,0,0.0757722 -36128,1715:122,152,72,0,0,0.0756068 -36129,1715:123,153,72,0,0,0.0755352 -36130,1715:124,154,72,0,0,0.0756141 -36131,1715:225,155,72,0,0,0.0757002 -36132,1715:226,156,72,0,0,0.0758155 -36133,1715:227,157,72,0,0,0.0758946 -36134,1715:228,158,72,0,0,0.0759452 -36135,1715:229,159,72,0,0,0.0759668 -36136,1716:120,160,72,0,0,0.076046 -36137,1716:121,161,72,0,0,0.0761327 -36138,1716:122,162,72,0,0,0.0762123 -36139,1716:123,163,72,0,0,0.0762558 -36140,1716:124,164,72,0,0,0.0762558 -36141,1716:225,165,72,0,0,0.0762485 -36142,1716:226,166,72,0,0,0.0762413 -36143,1716:227,167,72,0,0,0.0762413 -36144,1716:228,168,72,0,0,0.0762413 -36145,1716:229,169,72,0,0,0.0762629 -36146,1717:120,170,72,0,0,0.0762848 -36147,1717:121,171,72,0,0,0.0763137 -36148,1717:122,172,72,0,0,0.0763281 -36149,1717:123,173,72,0,0,0.0763354 -36150,1717:124,174,72,0,0,0.0763427 -36151,1717:225,175,72,0,0,0.07635 -36152,1717:226,176,72,0,0,0.07635 -36153,1717:227,177,72,0,0,0.0763354 -36154,1717:228,178,72,0,0,0.07635 -36155,1717:229,179,72,0,0,0.0764006 -36156,1718:120,180,72,0,0,0.0764876 -36157,7718:130,-180,73,0,0,0.0764442 -36158,7717:239,-179,73,0,0,0.0764949 -36159,7717:238,-178,73,0,0,0.0765093 -36160,7717:237,-177,73,0,0,0.0765313 -36161,7717:236,-176,73,0,0,0.076582 -36162,7717:235,-175,73,0,0,0.0766038 -36163,7717:134,-174,73,0,0,0.0766111 -36164,7717:133,-173,73,0,0,0.0766184 -36165,7717:132,-172,73,0,0,0.0766184 -36166,7717:131,-171,73,0,0,0.0766328 -36167,7717:130,-170,73,0,0,0.0766401 -36168,7716:239,-169,73,0,0,0.0766621 -36169,7716:238,-168,73,0,0,0.0766548 -36170,7716:237,-167,73,0,0,0.0766257 -36171,7716:236,-166,73,0,0,0.0766328 -36172,7716:235,-165,73,0,0,0.0765893 -36173,7716:134,-164,73,0,0,0.0765166 -36174,7716:133,-163,73,0,0,0.0764949 -36175,7716:132,-162,73,0,0,0.0764442 -36176,7716:131,-161,73,0,0,0.076415 -36177,7716:130,-160,73,0,0,0.076415 -36178,7715:239,-159,73,0,0,0.0764803 -36179,7715:238,-158,73,0,0,0.0766328 -36180,7715:237,-157,73,0,0,0.0766621 -36181,7715:236,-156,73,0,0,0.0766111 -36182,7715:235,-155,73,0,0,0.0759595 -36183,7715:134,-154,73,0,0,0.0755854 -36184,7714:237,-147,73,0,0,0.0768659 -36185,7714:236,-146,73,0,0,0.0767347 -36186,7714:235,-145,73,0,0,0.0765603 -36187,7714:134,-144,73,0,0,0.0766983 -36188,7714:133,-143,73,0,0,0.0767712 -36189,7714:132,-142,73,0,0,0.0766765 -36190,7714:131,-141,73,0,0,0.076524 -36191,7714:130,-140,73,0,0,0.0769754 -36192,7707:133,-73,73,0,0,0.0790369 -36193,7707:132,-72,73,0,0,0.0784405 -36194,7706:236,-66,73,0,0,0.0769315 -36195,7706:235,-65,73,0,0,0.0769462 -36196,7706:134,-64,73,0,0,0.0769825 -36197,7706:133,-63,73,0,0,0.0770264 -36198,7706:132,-62,73,0,0,0.0769899 -36199,7706:131,-61,73,0,0,0.0769754 -36200,7706:130,-60,73,0,0,0.0769681 -36201,7705:239,-59,73,0,0,0.0769534 -36202,7705:238,-58,73,0,0,0.0769097 -36203,7705:237,-57,73,0,0,0.0768806 -36204,7705:133,-53,73,0,0,0.0768076 -36205,7705:132,-52,73,0,0,0.0767567 -36206,7704:134,-44,73,0,0,0.07635 -36207,7704:133,-43,73,0,0,0.0762558 -36208,7704:132,-42,73,0,0,0.0762267 -36209,7704:131,-41,73,0,0,0.0762558 -36210,7704:130,-40,73,0,0,0.076205 -36211,7703:239,-39,73,0,0,0.0762123 -36212,7703:236,-36,73,0,0,0.0762558 -36213,7703:132,-32,73,0,0,0.0763789 -36214,7703:131,-31,73,0,0,0.0763354 -36215,7702:134,-24,73,0,0,0.076234 -36216,7702:133,-23,73,0,0,0.0762123 -36217,7702:132,-22,73,0,0,0.076205 -36218,7702:131,-21,73,0,0,0.0761256 -36219,7702:130,-20,73,0,0,0.0760606 -36220,7701:239,-19,73,0,0,0.0759234 -36221,7701:238,-18,73,0,0,0.075686 -36222,7701:237,-17,73,0,0,0.0755065 -36223,7701:236,-16,73,0,0,0.0754348 -36224,7701:235,-15,73,0,0,0.0755065 -36225,7701:134,-14,73,0,0,0.0764586 -36226,7701:133,-13,73,0,0,0.0788053 -36227,7701:132,-12,73,0,0,0.0884155 -36228,7701:131,-11,73,0,0,0.113537 -36229,7701:130,-10,73,0,0,0.114752 -36230,7700:239,-9,73,0,0,0.0945181 -36231,7700:238,-8,73,0,0,0.0860351 -36232,7700:237,-7,73,0,0,0.0841159 -36233,7700:236,-6,73,0,0,0.0820805 -36234,7700:235,-5,73,0,0,0.077451 -36235,7700:134,-4,73,0,0,0.077363 -36236,7700:133,-3,73,0,0,0.0785744 -36237,7700:132,-2,73,0,0,0.0813711 -36238,7700:131,-1,73,0,0,0.079284 -36239,1700:131,0,73,0,0,0.0800449 -36240,1700:131,1,73,0,0,0.0808276 -36241,1700:132,2,73,0,0,0.0866917 -36242,1700:133,3,73,0,0,0.0925235 -36243,1700:134,4,73,0,0,0.105078 -36244,1700:235,5,73,0,0,0.104615 -36245,1700:236,6,73,0,0,0.106467 -36246,1700:237,7,73,0,0,0.109095 -36247,1700:238,8,73,0,0,0.109666 -36248,1700:239,9,73,0,0,0.107893 -36249,1701:130,10,73,0,0,0.108826 -36250,1701:131,11,73,0,0,0.109706 -36251,1701:132,12,73,0,0,0.114491 -36252,1701:133,13,73,0,0,0.108081 -36253,1701:134,14,73,0,0,0.0931552 -36254,1701:237,17,73,0,0,0.0837997 -36255,1701:238,18,73,0,0,0.0906516 -36256,1701:239,19,73,0,0,0.092463 -36257,1702:130,20,73,0,0,0.0852306 -36258,1702:131,21,73,0,0,0.077974 -36259,1702:132,22,73,0,0,0.0769534 -36260,1714:235,145,73,0,0,0.0773998 -36261,1714:236,146,73,0,0,0.0769607 -36262,1714:237,147,73,0,0,0.0757362 -36263,1714:238,148,73,0,0,0.0756645 -36264,1714:239,149,73,0,0,0.075442 -36265,1715:130,150,73,0,0,0.0755781 -36266,1715:131,151,73,0,0,0.0756285 -36267,1715:132,152,73,0,0,0.0754706 -36268,1715:133,153,73,0,0,0.075442 -36269,1715:134,154,73,0,0,0.0755207 -36270,1715:235,155,73,0,0,0.0756068 -36271,1715:236,156,73,0,0,0.075686 -36272,1715:237,157,73,0,0,0.0758155 -36273,1715:238,158,73,0,0,0.0759595 -36274,1715:239,159,73,0,0,0.0760245 -36275,1716:130,160,73,0,0,0.0760749 -36276,1716:131,161,73,0,0,0.0761183 -36277,1716:132,162,73,0,0,0.0761761 -36278,1716:133,163,73,0,0,0.0762123 -36279,1716:134,164,73,0,0,0.0761978 -36280,1716:235,165,73,0,0,0.0761907 -36281,1716:236,166,73,0,0,0.0761834 -36282,1716:237,167,73,0,0,0.0761761 -36283,1716:238,168,73,0,0,0.0761978 -36284,1716:239,169,73,0,0,0.076234 -36285,1717:130,170,73,0,0,0.0762629 -36286,1717:131,171,73,0,0,0.0762918 -36287,1717:132,172,73,0,0,0.0763064 -36288,1717:133,173,73,0,0,0.0762991 -36289,1717:134,174,73,0,0,0.0763064 -36290,1717:235,175,73,0,0,0.0763137 -36291,1717:236,176,73,0,0,0.0763281 -36292,1717:237,177,73,0,0,0.0763427 -36293,1717:238,178,73,0,0,0.0763716 -36294,1717:239,179,73,0,0,0.076415 -36295,1718:130,180,73,0,0,0.0764442 -36296,7718:140,-180,74,0,0,0.0764369 -36297,7717:249,-179,74,0,0,0.0764369 -36298,7717:248,-178,74,0,0,0.0764513 -36299,7717:247,-177,74,0,0,0.0764803 -36300,7717:246,-176,74,0,0,0.0765093 -36301,7717:245,-175,74,0,0,0.0765313 -36302,7717:144,-174,74,0,0,0.0765603 -36303,7717:143,-173,74,0,0,0.0765676 -36304,7717:142,-172,74,0,0,0.0765603 -36305,7717:141,-171,74,0,0,0.0765384 -36306,7717:140,-170,74,0,0,0.0765384 -36307,7716:249,-169,74,0,0,0.076553 -36308,7716:248,-168,74,0,0,0.0766257 -36309,7716:247,-167,74,0,0,0.0766401 -36310,7716:246,-166,74,0,0,0.0766184 -36311,7716:245,-165,74,0,0,0.0765603 -36312,7716:144,-164,74,0,0,0.0764949 -36313,7716:143,-163,74,0,0,0.0764586 -36314,7716:142,-162,74,0,0,0.0764223 -36315,7716:141,-161,74,0,0,0.0764006 -36316,7716:140,-160,74,0,0,0.0764223 -36317,7715:249,-159,74,0,0,0.0765603 -36318,7715:248,-158,74,0,0,0.0766328 -36319,7715:247,-157,74,0,0,0.0766038 -36320,7714:249,-149,74,0,0,0.076895 -36321,7714:248,-148,74,0,0,0.0771067 -36322,7714:247,-147,74,0,0,0.0769681 -36323,7714:246,-146,74,0,0,0.0769462 -36324,7714:245,-145,74,0,0,0.0766765 -36325,7714:144,-144,74,0,0,0.0768514 -36326,7714:143,-143,74,0,0,0.0769242 -36327,7714:140,-140,74,0,0,0.0767567 -36328,7713:249,-139,74,0,0,0.0773559 -36329,7713:245,-135,74,0,0,0.077937 -36330,7707:249,-79,74,0,0,0.0797126 -36331,7707:248,-78,74,0,0,0.0804088 -36332,7707:247,-77,74,0,0,0.0808887 -36333,7707:142,-72,74,0,0,0.0779814 -36334,7706:245,-65,74,0,0,0.0769242 -36335,7706:144,-64,74,0,0,0.0770046 -36336,7706:143,-63,74,0,0,0.0770849 -36337,7705:249,-59,74,0,0,0.0769168 -36338,7705:248,-58,74,0,0,0.0769024 -36339,7705:144,-54,74,0,0,0.0766401 -36340,7705:143,-53,74,0,0,0.0766475 -36341,7703:247,-37,74,0,0,0.0762918 -36342,7703:245,-35,74,0,0,0.0762629 -36343,7703:144,-34,74,0,0,0.0762196 -36344,7703:143,-33,74,0,0,0.076234 -36345,7703:142,-32,74,0,0,0.076234 -36346,7703:141,-31,74,0,0,0.0762991 -36347,7703:140,-30,74,0,0,0.0762775 -36348,7702:249,-29,74,0,0,0.0762485 -36349,7702:248,-28,74,0,0,0.0762267 -36350,7702:247,-27,74,0,0,0.0762123 -36351,7702:246,-26,74,0,0,0.076205 -36352,7702:245,-25,74,0,0,0.076205 -36353,7702:144,-24,74,0,0,0.0762267 -36354,7702:143,-23,74,0,0,0.0762196 -36355,7702:142,-22,74,0,0,0.07614 -36356,7702:141,-21,74,0,0,0.0760029 -36357,7702:140,-20,74,0,0,0.0759091 -36358,7701:249,-19,74,0,0,0.0758803 -36359,7701:248,-18,74,0,0,0.0758298 -36360,7701:247,-17,74,0,0,0.075722 -36361,7701:246,-16,74,0,0,0.0755494 -36362,7701:245,-15,74,0,0,0.0754348 -36363,7701:144,-14,74,0,0,0.075758 -36364,7701:143,-13,74,0,0,0.0764223 -36365,7701:142,-12,74,0,0,0.076895 -36366,7701:141,-11,74,0,0,0.0783737 -36367,7701:140,-10,74,0,0,0.100521 -36368,7700:249,-9,74,0,0,0.112466 -36369,7700:248,-8,74,0,0,0.102535 -36370,7700:247,-7,74,0,0,0.0816018 -36371,7700:246,-6,74,0,0,0.0773778 -36372,7700:245,-5,74,0,0,0.0771799 -36373,7700:144,-4,74,0,0,0.077451 -36374,7700:143,-3,74,0,0,0.0770996 -36375,7700:142,-2,74,0,0,0.0783737 -36376,7700:141,-1,74,0,0,0.0782551 -36377,1700:141,0,74,0,0,0.0855999 -36378,1700:141,1,74,0,0,0.0909314 -36379,1700:142,2,74,0,0,0.0974329 -36380,1700:143,3,74,0,0,0.102158 -36381,1700:144,4,74,0,0,0.103209 -36382,1700:245,5,74,0,0,0.0963898 -36383,1700:246,6,74,0,0,0.100344 -36384,1700:247,7,74,0,0,0.10596 -36385,1700:248,8,74,0,0,0.106693 -36386,1700:249,9,74,0,0,0.102668 -36387,1701:140,10,74,0,0,0.094395 -36388,1701:141,11,74,0,0,0.104384 -36389,1701:142,12,74,0,0,0.0993467 -36390,1701:143,13,74,0,0,0.0871401 -36391,1701:249,19,74,0,0,0.0835084 -36392,1702:140,20,74,0,0,0.0870177 -36393,1702:141,21,74,0,0,0.0775394 -36394,1702:142,22,74,0,0,0.076386 -36395,1702:143,23,74,0,0,0.0766475 -36396,1714:142,142,74,0,0,0.0787084 -36397,1714:143,143,74,0,0,0.0785224 -36398,1714:144,144,74,0,0,0.0781663 -36399,1714:245,145,74,0,0,0.0773411 -36400,1714:246,146,74,0,0,0.0762629 -36401,1714:247,147,74,0,0,0.0758082 -36402,1714:248,148,74,0,0,0.075765 -36403,1714:249,149,74,0,0,0.075528 -36404,1715:140,150,74,0,0,0.0753561 -36405,1715:141,151,74,0,0,0.0755424 -36406,1715:142,152,74,0,0,0.075442 -36407,1715:143,153,74,0,0,0.0754348 -36408,1715:144,154,74,0,0,0.0755494 -36409,1715:245,155,74,0,0,0.0756141 -36410,1715:246,156,74,0,0,0.0756645 -36411,1715:247,157,74,0,0,0.075765 -36412,1715:248,158,74,0,0,0.0758658 -36413,1715:249,159,74,0,0,0.0759595 -36414,1716:140,160,74,0,0,0.0760317 -36415,1716:141,161,74,0,0,0.0760822 -36416,1716:142,162,74,0,0,0.0761327 -36417,1716:143,163,74,0,0,0.0761545 -36418,1716:144,164,74,0,0,0.0761618 -36419,1716:245,165,74,0,0,0.0761545 -36420,1716:246,166,74,0,0,0.0761472 -36421,1716:247,167,74,0,0,0.0761472 -36422,1716:248,168,74,0,0,0.0761618 -36423,1716:249,169,74,0,0,0.0761978 -36424,1717:140,170,74,0,0,0.0762267 -36425,1717:141,171,74,0,0,0.0762558 -36426,1717:142,172,74,0,0,0.0762702 -36427,1717:143,173,74,0,0,0.0762702 -36428,1717:144,174,74,0,0,0.0762702 -36429,1717:245,175,74,0,0,0.0762991 -36430,1717:246,176,74,0,0,0.0763281 -36431,1717:247,177,74,0,0,0.0763354 -36432,1717:248,178,74,0,0,0.0763427 -36433,1717:249,179,74,0,0,0.0763933 -36434,1718:140,180,74,0,0,0.0764369 -36435,7718:350,-180,75,0,0,0.0763571 -36436,7717:459,-179,75,0,0,0.0763933 -36437,7717:458,-178,75,0,0,0.076386 -36438,7717:457,-177,75,0,0,0.0764223 -36439,7717:456,-176,75,0,0,0.0764513 -36440,7717:455,-175,75,0,0,0.0764659 -36441,7717:354,-174,75,0,0,0.0764803 -36442,7717:353,-173,75,0,0,0.0765022 -36443,7717:352,-172,75,0,0,0.0765022 -36444,7717:351,-171,75,0,0,0.0764876 -36445,7717:350,-170,75,0,0,0.0764803 -36446,7716:459,-169,75,0,0,0.0764803 -36447,7716:458,-168,75,0,0,0.0765603 -36448,7716:457,-167,75,0,0,0.0766111 -36449,7716:456,-166,75,0,0,0.0765747 -36450,7716:455,-165,75,0,0,0.0765093 -36451,7716:354,-164,75,0,0,0.0764442 -36452,7716:353,-163,75,0,0,0.0764079 -36453,7716:352,-162,75,0,0,0.0763789 -36454,7716:351,-161,75,0,0,0.0764659 -36455,7716:350,-160,75,0,0,0.0765676 -36456,7715:459,-159,75,0,0,0.076582 -36457,7715:458,-158,75,0,0,0.0765893 -36458,7715:457,-157,75,0,0,0.0764296 -36459,7715:456,-156,75,0,0,0.0768221 -36460,7715:350,-150,75,0,0,0.0766983 -36461,7714:459,-149,75,0,0,0.0772018 -36462,7714:456,-146,75,0,0,0.0768806 -36463,7714:353,-143,75,0,0,0.0767929 -36464,7713:459,-139,75,0,0,0.0773118 -36465,7713:458,-138,75,0,0,0.0774291 -36466,7713:457,-137,75,0,0,0.0776421 -36467,7713:456,-136,75,0,0,0.0781218 -36468,7713:455,-135,75,0,0,0.0779519 -36469,7713:354,-134,75,0,0,0.0777896 -36470,7708:350,-80,75,0,0,0.0795694 -36471,7707:459,-79,75,0,0,0.0789322 -36472,7707:458,-78,75,0,0,0.0800599 -36473,7707:457,-77,75,0,0,0.0808963 -36474,7707:455,-75,75,0,0,0.0796523 -36475,7707:354,-74,75,0,0,0.0786861 -36476,7707:353,-73,75,0,0,0.0781071 -36477,7707:352,-72,75,0,0,0.0779296 -36478,7707:351,-71,75,0,0,0.0778337 -36479,7707:350,-70,75,0,0,0.0777601 -36480,7706:459,-69,75,0,0,0.077679 -36481,7706:458,-68,75,0,0,0.0775981 -36482,7706:457,-67,75,0,0,0.0774732 -36483,7706:456,-66,75,0,0,0.0772678 -36484,7706:455,-65,75,0,0,0.0769899 -36485,7705:459,-59,75,0,0,0.0769534 -36486,7705:458,-58,75,0,0,0.0768221 -36487,7705:354,-54,75,0,0,0.0768806 -36488,7705:353,-53,75,0,0,0.0768514 -36489,7704:459,-49,75,0,0,0.0767567 -36490,7703:354,-34,75,0,0,0.0762848 -36491,7703:353,-33,75,0,0,0.0762196 -36492,7703:352,-32,75,0,0,0.076205 -36493,7703:351,-31,75,0,0,0.0761907 -36494,7703:350,-30,75,0,0,0.0761978 -36495,7702:459,-29,75,0,0,0.0761978 -36496,7702:458,-28,75,0,0,0.0761978 -36497,7702:457,-27,75,0,0,0.0761978 -36498,7702:456,-26,75,0,0,0.076205 -36499,7702:455,-25,75,0,0,0.0762267 -36500,7702:354,-24,75,0,0,0.076234 -36501,7702:353,-23,75,0,0,0.0762485 -36502,7702:352,-22,75,0,0,0.0762123 -36503,7702:351,-21,75,0,0,0.0761183 -36504,7702:350,-20,75,0,0,0.0760317 -36505,7701:459,-19,75,0,0,0.0759956 -36506,7701:458,-18,75,0,0,0.0759234 -36507,7701:457,-17,75,0,0,0.0757795 -36508,7701:456,-16,75,0,0,0.0755854 -36509,7701:455,-15,75,0,0,0.075442 -36510,7701:354,-14,75,0,0,0.0753272 -36511,7701:353,-13,75,0,0,0.0753989 -36512,7701:352,-12,75,0,0,0.0755352 -36513,7701:351,-11,75,0,0,0.0762918 -36514,7701:350,-10,75,0,0,0.078463 -36515,7700:459,-9,75,0,0,0.089741 -36516,7700:458,-8,75,0,0,0.103047 -36517,7700:457,-7,75,0,0,0.080988 -36518,7700:456,-6,75,0,0,0.0782997 -36519,7700:455,-5,75,0,0,0.0789995 -36520,7700:354,-4,75,0,0,0.0796372 -36521,7700:353,-3,75,0,0,0.0791191 -36522,7700:352,-2,75,0,0,0.0774658 -36523,7700:351,-1,75,0,0,0.0800525 -36524,1700:351,0,75,0,0,0.0819026 -36525,1700:351,1,75,0,0,0.0916472 -36526,1700:352,2,75,0,0,0.0958097 -36527,1700:353,3,75,0,0,0.0958187 -36528,1700:354,4,75,0,0,0.0948438 -36529,1700:455,5,75,0,0,0.094237 -36530,1700:456,6,75,0,0,0.0921963 -36531,1700:457,7,75,0,0,0.102914 -36532,1700:458,8,75,0,0,0.0982218 -36533,1700:459,9,75,0,0,0.0959255 -36534,1701:350,10,75,0,0,0.0977858 -36535,1701:351,11,75,0,0,0.0978038 -36536,1701:455,15,75,0,0,0.0781663 -36537,1701:456,16,75,0,0,0.0801583 -36538,1701:457,17,75,0,0,0.0808353 -36539,1701:458,18,75,0,0,0.0815327 -36540,1701:459,19,75,0,0,0.0799844 -36541,1702:350,20,75,0,0,0.0797351 -36542,1702:351,21,75,0,0,0.0797427 -36543,1702:352,22,75,0,0,0.0762196 -36544,1702:353,23,75,0,0,0.0770117 -36545,1702:354,24,75,0,0,0.0777453 -36546,1714:350,140,75,0,0,0.0783812 -36547,1714:351,141,75,0,0,0.0780701 -36548,1714:352,142,75,0,0,0.0777158 -36549,1714:353,143,75,0,0,0.076713 -36550,1714:354,144,75,0,0,0.0757075 -36551,1714:458,148,75,0,0,0.0759091 -36552,1714:459,149,75,0,0,0.0755854 -36553,1715:350,150,75,0,0,0.0753631 -36554,1715:351,151,75,0,0,0.0753703 -36555,1715:352,152,75,0,0,0.0753703 -36556,1715:353,153,75,0,0,0.0754203 -36557,1715:354,154,75,0,0,0.0755711 -36558,1715:455,155,75,0,0,0.0756715 -36559,1715:456,156,75,0,0,0.0757002 -36560,1715:457,157,75,0,0,0.075729 -36561,1715:458,158,75,0,0,0.0758225 -36562,1715:459,159,75,0,0,0.0759307 -36563,1716:350,160,75,0,0,0.0759956 -36564,1716:351,161,75,0,0,0.076046 -36565,1716:352,162,75,0,0,0.0761111 -36566,1716:353,163,75,0,0,0.0761256 -36567,1716:354,164,75,0,0,0.0761327 -36568,1716:455,165,75,0,0,0.0761327 -36569,1716:456,166,75,0,0,0.07614 -36570,1716:457,167,75,0,0,0.0761545 -36571,1716:458,168,75,0,0,0.0761618 -36572,1716:459,169,75,0,0,0.0761907 -36573,1717:350,170,75,0,0,0.0762123 -36574,1717:351,171,75,0,0,0.0762267 -36575,1717:352,172,75,0,0,0.076234 -36576,1717:353,173,75,0,0,0.076234 -36577,1717:354,174,75,0,0,0.0762413 -36578,1717:455,175,75,0,0,0.0762629 -36579,1717:456,176,75,0,0,0.0762918 -36580,1717:457,177,75,0,0,0.0763137 -36581,1717:458,178,75,0,0,0.0763208 -36582,1717:459,179,75,0,0,0.0763208 -36583,1718:350,180,75,0,0,0.0763571 -36584,7718:360,-180,76,0,0,0.0763427 -36585,7717:469,-179,76,0,0,0.0763571 -36586,7717:468,-178,76,0,0,0.0763571 -36587,7717:467,-177,76,0,0,0.0763643 -36588,7717:466,-176,76,0,0,0.0764006 -36589,7717:465,-175,76,0,0,0.0764223 -36590,7717:364,-174,76,0,0,0.0764296 -36591,7717:363,-173,76,0,0,0.0764513 -36592,7717:362,-172,76,0,0,0.0764659 -36593,7717:361,-171,76,0,0,0.0764732 -36594,7717:360,-170,76,0,0,0.0764803 -36595,7716:469,-169,76,0,0,0.0764949 -36596,7716:468,-168,76,0,0,0.0765384 -36597,7716:467,-167,76,0,0,0.0765747 -36598,7716:466,-166,76,0,0,0.076553 -36599,7716:465,-165,76,0,0,0.0764803 -36600,7716:364,-164,76,0,0,0.0764006 -36601,7716:363,-163,76,0,0,0.0763571 -36602,7716:362,-162,76,0,0,0.0764803 -36603,7716:361,-161,76,0,0,0.0766111 -36604,7715:469,-159,76,0,0,0.0766765 -36605,7715:468,-158,76,0,0,0.0765967 -36606,7715:467,-157,76,0,0,0.0766257 -36607,7715:466,-156,76,0,0,0.0767785 -36608,7715:465,-155,76,0,0,0.0768221 -36609,7715:364,-154,76,0,0,0.0764876 -36610,7714:363,-143,76,0,0,0.0767274 -36611,7713:465,-135,76,0,0,0.077856 -36612,7713:364,-134,76,0,0,0.077878 -36613,7713:363,-133,76,0,0,0.0779296 -36614,7708:361,-81,76,0,0,0.0785819 -36615,7708:360,-80,76,0,0,0.0785744 -36616,7707:469,-79,76,0,0,0.0782922 -36617,7707:468,-78,76,0,0,0.080007 -36618,7707:467,-77,76,0,0,0.080113 -36619,7707:466,-76,76,0,0,0.0790369 -36620,7707:465,-75,76,0,0,0.0792915 -36621,7707:364,-74,76,0,0,0.0783368 -36622,7707:363,-73,76,0,0,0.078048 -36623,7707:362,-72,76,0,0,0.077797 -36624,7707:361,-71,76,0,0,0.0775394 -36625,7707:360,-70,76,0,0,0.0774806 -36626,7706:469,-69,76,0,0,0.077679 -36627,7706:468,-68,76,0,0,0.0777821 -36628,7706:364,-64,76,0,0,0.0769973 -36629,7706:363,-63,76,0,0,0.0770191 -36630,7706:362,-62,76,0,0,0.0769681 -36631,7706:360,-60,76,0,0,0.0769754 -36632,7705:469,-59,76,0,0,0.0769462 -36633,7705:467,-57,76,0,0,0.0766621 -36634,7705:466,-56,76,0,0,0.0765967 -36635,7705:465,-55,76,0,0,0.0764369 -36636,7705:362,-52,76,0,0,0.0766692 -36637,7705:360,-50,76,0,0,0.0765676 -36638,7704:469,-49,76,0,0,0.0765747 -36639,7704:468,-48,76,0,0,0.0764876 -36640,7704:467,-47,76,0,0,0.076415 -36641,7704:362,-42,76,0,0,0.0767056 -36642,7703:364,-34,76,0,0,0.0761834 -36643,7703:363,-33,76,0,0,0.0761834 -36644,7703:362,-32,76,0,0,0.0761618 -36645,7703:361,-31,76,0,0,0.0761618 -36646,7703:360,-30,76,0,0,0.0761689 -36647,7702:469,-29,76,0,0,0.0761978 -36648,7702:468,-28,76,0,0,0.076234 -36649,7702:467,-27,76,0,0,0.0762702 -36650,7702:466,-26,76,0,0,0.0762702 -36651,7702:465,-25,76,0,0,0.0762775 -36652,7702:364,-24,76,0,0,0.0762918 -36653,7702:363,-23,76,0,0,0.0762991 -36654,7702:362,-22,76,0,0,0.0762775 -36655,7702:361,-21,76,0,0,0.0761761 -36656,7702:360,-20,76,0,0,0.0761111 -36657,7701:469,-19,76,0,0,0.0759595 -36658,7701:468,-18,76,0,0,0.075729 -36659,7701:467,-17,76,0,0,0.0755998 -36660,7701:466,-16,76,0,0,0.0755711 -36661,7701:465,-15,76,0,0,0.0755781 -36662,7701:364,-14,76,0,0,0.0754706 -36663,7701:363,-13,76,0,0,0.0754133 -36664,7701:362,-12,76,0,0,0.0754562 -36665,7701:361,-11,76,0,0,0.0756141 -36666,7701:360,-10,76,0,0,0.0758874 -36667,7700:469,-9,76,0,0,0.0765384 -36668,7700:468,-8,76,0,0,0.0842266 -36669,7700:467,-7,76,0,0,0.0779075 -36670,7700:466,-6,76,0,0,0.0776495 -36671,7700:465,-5,76,0,0,0.0778854 -36672,7700:364,-4,76,0,0,0.0787159 -36673,7700:363,-3,76,0,0,0.0787605 -36674,7700:362,-2,76,0,0,0.0781663 -36675,7700:361,-1,76,0,0,0.0786636 -36676,1700:361,0,76,0,0,0.0803632 -36677,1700:361,1,76,0,0,0.0877057 -36678,1700:362,2,76,0,0,0.0847193 -36679,1700:363,3,76,0,0,0.0848149 -36680,1700:364,4,76,0,0,0.0888136 -36681,1700:465,5,76,0,0,0.0904231 -36682,1700:466,6,76,0,0,0.0990346 -36683,1700:467,7,76,0,0,0.0904992 -36684,1700:468,8,76,0,0,0.0935551 -36685,1700:469,9,76,0,0,0.0970091 -36686,1701:360,10,76,0,0,0.0937995 -36687,1701:364,14,76,0,0,0.077797 -36688,1701:465,15,76,0,0,0.0778116 -36689,1701:466,16,76,0,0,0.0773411 -36690,1701:467,17,76,0,0,0.077635 -36691,1701:468,18,76,0,0,0.0780256 -36692,1701:469,19,76,0,0,0.0789545 -36693,1702:360,20,76,0,0,0.0814173 -36694,1702:361,21,76,0,0,0.0815327 -36695,1713:469,139,76,0,0,0.0784927 -36696,1714:360,140,76,0,0,0.077974 -36697,1714:361,141,76,0,0,0.0771873 -36698,1714:362,142,76,0,0,0.0761689 -36699,1714:363,143,76,0,0,0.0755567 -36700,1714:364,144,76,0,0,0.075758 -36701,1714:465,145,76,0,0,0.0754706 -36702,1714:468,148,76,0,0,0.0758225 -36703,1714:469,149,76,0,0,0.0758298 -36704,1715:360,150,76,0,0,0.0755207 -36705,1715:361,151,76,0,0,0.0753203 -36706,1715:362,152,76,0,0,0.0753272 -36707,1715:363,153,76,0,0,0.0753561 -36708,1715:364,154,76,0,0,0.0755065 -36709,1715:465,155,76,0,0,0.0756715 -36710,1715:466,156,76,0,0,0.0757507 -36711,1715:467,157,76,0,0,0.0757937 -36712,1715:468,158,76,0,0,0.0758298 -36713,1715:469,159,76,0,0,0.0758946 -36714,1716:360,160,76,0,0,0.0759379 -36715,1716:361,161,76,0,0,0.0759884 -36716,1716:362,162,76,0,0,0.0760606 -36717,1716:363,163,76,0,0,0.0761111 -36718,1716:364,164,76,0,0,0.0761256 -36719,1716:465,165,76,0,0,0.0761327 -36720,1716:466,166,76,0,0,0.0761472 -36721,1716:467,167,76,0,0,0.0761618 -36722,1716:468,168,76,0,0,0.0761761 -36723,1716:469,169,76,0,0,0.0761761 -36724,1717:360,170,76,0,0,0.0761907 -36725,1717:361,171,76,0,0,0.0761978 -36726,1717:362,172,76,0,0,0.076205 -36727,1717:363,173,76,0,0,0.0762196 -36728,1717:364,174,76,0,0,0.076234 -36729,1717:465,175,76,0,0,0.0762558 -36730,1717:466,176,76,0,0,0.0762848 -36731,1717:467,177,76,0,0,0.0763064 -36732,1717:468,178,76,0,0,0.0763208 -36733,1717:469,179,76,0,0,0.0763281 -36734,1718:360,180,76,0,0,0.0763427 -36735,7718:370,-180,77,0,0,0.0763354 -36736,7717:479,-179,77,0,0,0.07635 -36737,7717:478,-178,77,0,0,0.07635 -36738,7717:477,-177,77,0,0,0.0763643 -36739,7717:476,-176,77,0,0,0.0763789 -36740,7717:475,-175,77,0,0,0.0764006 -36741,7717:374,-174,77,0,0,0.0764079 -36742,7717:373,-173,77,0,0,0.0764079 -36743,7717:372,-172,77,0,0,0.0764079 -36744,7717:371,-171,77,0,0,0.0764369 -36745,7717:370,-170,77,0,0,0.0764803 -36746,7716:479,-169,77,0,0,0.0765166 -36747,7716:478,-168,77,0,0,0.076524 -36748,7716:477,-167,77,0,0,0.0765384 -36749,7716:476,-166,77,0,0,0.0764949 -36750,7716:475,-165,77,0,0,0.076415 -36751,7716:374,-164,77,0,0,0.0763571 -36752,7716:373,-163,77,0,0,0.0763789 -36753,7716:372,-162,77,0,0,0.0765967 -36754,7715:479,-159,77,0,0,0.0765313 -36755,7715:477,-157,77,0,0,0.0765603 -36756,7715:476,-156,77,0,0,0.0766111 -36757,7715:475,-155,77,0,0,0.0766912 -36758,7715:374,-154,77,0,0,0.0767203 -36759,7715:371,-151,77,0,0,0.0766692 -36760,7714:372,-142,77,0,0,0.0767056 -36761,7713:475,-135,77,0,0,0.077679 -36762,7713:374,-134,77,0,0,0.0777084 -36763,7713:373,-133,77,0,0,0.0778854 -36764,7708:371,-81,77,0,0,0.0781367 -36765,7708:370,-80,77,0,0,0.0780331 -36766,7707:479,-79,77,0,0,0.0780035 -36767,7707:477,-77,77,0,0,0.0786041 -36768,7707:476,-76,77,0,0,0.0782255 -36769,7707:373,-73,77,0,0,0.0778854 -36770,7707:372,-72,77,0,0,0.0776644 -36771,7707:371,-71,77,0,0,0.0773559 -36772,7707:370,-70,77,0,0,0.0772018 -36773,7706:479,-69,77,0,0,0.0776421 -36774,7706:371,-61,77,0,0,0.0766475 -36775,7706:370,-60,77,0,0,0.0767638 -36776,7705:479,-59,77,0,0,0.0768659 -36777,7705:476,-56,77,0,0,0.0765022 -36778,7705:475,-55,77,0,0,0.0764949 -36779,7705:372,-52,77,0,0,0.0764659 -36780,7705:371,-51,77,0,0,0.0764296 -36781,7705:370,-50,77,0,0,0.0764513 -36782,7704:374,-44,77,0,0,0.0765967 -36783,7704:373,-43,77,0,0,0.0766257 -36784,7703:476,-36,77,0,0,0.0763137 -36785,7703:475,-35,77,0,0,0.0761978 -36786,7703:374,-34,77,0,0,0.0761618 -36787,7703:373,-33,77,0,0,0.0761327 -36788,7703:372,-32,77,0,0,0.0761472 -36789,7703:371,-31,77,0,0,0.0761907 -36790,7703:370,-30,77,0,0,0.076234 -36791,7702:479,-29,77,0,0,0.0762629 -36792,7702:478,-28,77,0,0,0.0762629 -36793,7702:477,-27,77,0,0,0.0762702 -36794,7702:476,-26,77,0,0,0.0762848 -36795,7702:475,-25,77,0,0,0.0762848 -36796,7702:374,-24,77,0,0,0.0762848 -36797,7702:373,-23,77,0,0,0.0762702 -36798,7702:372,-22,77,0,0,0.0762267 -36799,7702:371,-21,77,0,0,0.0761907 -36800,7702:370,-20,77,0,0,0.0761472 -36801,7701:479,-19,77,0,0,0.076046 -36802,7701:478,-18,77,0,0,0.0759307 -36803,7701:477,-17,77,0,0,0.075758 -36804,7701:476,-16,77,0,0,0.0755567 -36805,7701:475,-15,77,0,0,0.0753631 -36806,7701:374,-14,77,0,0,0.0753344 -36807,7701:373,-13,77,0,0,0.0753489 -36808,7701:372,-12,77,0,0,0.0752772 -36809,7701:371,-11,77,0,0,0.0753631 -36810,7701:370,-10,77,0,0,0.0756068 -36811,7700:479,-9,77,0,0,0.0761545 -36812,7700:478,-8,77,0,0,0.0767056 -36813,7700:477,-7,77,0,0,0.0775687 -36814,7700:476,-6,77,0,0,0.078783 -36815,7700:475,-5,77,0,0,0.0788128 -36816,7700:374,-4,77,0,0,0.0778706 -36817,7700:372,-2,77,0,0,0.0795921 -36818,7700:371,-1,77,0,0,0.0792764 -36819,1700:371,0,77,0,0,0.0839498 -36820,1700:371,1,77,0,0,0.086448 -36821,1700:372,2,77,0,0,0.0850786 -36822,1700:373,3,77,0,0,0.0836422 -36823,1700:374,4,77,0,0,0.0938867 -36824,1700:475,5,77,0,0,0.096542 -36825,1700:476,6,77,0,0,0.0947997 -36826,1700:477,7,77,0,0,0.0852225 -36827,1700:478,8,77,0,0,0.0910759 -36828,1700:479,9,77,0,0,0.0895062 -36829,1701:372,12,77,0,0,0.0771799 -36830,1701:373,13,77,0,0,0.0768149 -36831,1701:374,14,77,0,0,0.0769754 -36832,1701:475,15,77,0,0,0.0769462 -36833,1701:476,16,77,0,0,0.077063 -36834,1701:477,17,77,0,0,0.0771581 -36835,1701:478,18,77,0,0,0.0773778 -36836,1701:479,19,77,0,0,0.0779591 -36837,1702:370,20,77,0,0,0.0801736 -36838,1702:371,21,77,0,0,0.0786861 -36839,1702:372,22,77,0,0,0.0764006 -36840,1713:477,137,77,0,0,0.078783 -36841,1713:478,138,77,0,0,0.0785669 -36842,1713:479,139,77,0,0,0.0779519 -36843,1714:370,140,77,0,0,0.0769681 -36844,1714:371,141,77,0,0,0.075313 -36845,1714:372,142,77,0,0,0.0752986 -36846,1714:373,143,77,0,0,0.0754779 -36847,1714:374,144,77,0,0,0.0758443 -36848,1714:475,145,77,0,0,0.0757002 -36849,1714:479,149,77,0,0,0.0756572 -36850,1715:370,150,77,0,0,0.0758155 -36851,1715:371,151,77,0,0,0.0753561 -36852,1715:372,152,77,0,0,0.0753203 -36853,1715:373,153,77,0,0,0.0753272 -36854,1715:374,154,77,0,0,0.0754921 -36855,1715:475,155,77,0,0,0.0756428 -36856,1715:476,156,77,0,0,0.0757002 -36857,1715:477,157,77,0,0,0.0757362 -36858,1715:478,158,77,0,0,0.0757937 -36859,1715:479,159,77,0,0,0.0758731 -36860,1716:370,160,77,0,0,0.0759307 -36861,1716:371,161,77,0,0,0.0759668 -36862,1716:372,162,77,0,0,0.0760245 -36863,1716:373,163,77,0,0,0.0761038 -36864,1716:374,164,77,0,0,0.07614 -36865,1716:475,165,77,0,0,0.0761472 -36866,1716:476,166,77,0,0,0.0761545 -36867,1716:477,167,77,0,0,0.0761618 -36868,1716:478,168,77,0,0,0.0761834 -36869,1716:479,169,77,0,0,0.0761907 -36870,1717:370,170,77,0,0,0.0761907 -36871,1717:371,171,77,0,0,0.0761978 -36872,1717:372,172,77,0,0,0.076205 -36873,1717:373,173,77,0,0,0.0762196 -36874,1717:374,174,77,0,0,0.0762267 -36875,1717:475,175,77,0,0,0.0762629 -36876,1717:476,176,77,0,0,0.0762918 -36877,1717:477,177,77,0,0,0.0763064 -36878,1717:478,178,77,0,0,0.0763137 -36879,1717:479,179,77,0,0,0.0763208 -36880,1718:370,180,77,0,0,0.0763354 -36881,7718:380,-180,78,0,0,0.0763064 -36882,7717:489,-179,78,0,0,0.0763137 -36883,7717:488,-178,78,0,0,0.0763281 -36884,7717:487,-177,78,0,0,0.07635 -36885,7717:486,-176,78,0,0,0.0763643 -36886,7717:485,-175,78,0,0,0.0763789 -36887,7717:384,-174,78,0,0,0.0763716 -36888,7717:383,-173,78,0,0,0.0763643 -36889,7717:382,-172,78,0,0,0.0764006 -36890,7717:381,-171,78,0,0,0.0764442 -36891,7717:380,-170,78,0,0,0.0764949 -36892,7716:489,-169,78,0,0,0.0764949 -36893,7716:488,-168,78,0,0,0.0764949 -36894,7716:487,-167,78,0,0,0.0764803 -36895,7716:486,-166,78,0,0,0.0764223 -36896,7716:485,-165,78,0,0,0.0763643 -36897,7716:384,-164,78,0,0,0.0763427 -36898,7716:383,-163,78,0,0,0.0765093 -36899,7715:489,-159,78,0,0,0.0764949 -36900,7715:488,-158,78,0,0,0.076553 -36901,7715:485,-155,78,0,0,0.0766328 -36902,7715:384,-154,78,0,0,0.0766111 -36903,7715:383,-153,78,0,0,0.0766184 -36904,7715:382,-152,78,0,0,0.0766621 -36905,7715:381,-151,78,0,0,0.0766184 -36906,7714:489,-149,78,0,0,0.0776275 -36907,7714:382,-142,78,0,0,0.0759452 -36908,7713:485,-135,78,0,0,0.0776644 -36909,7713:384,-134,78,0,0,0.077819 -36910,7713:383,-133,78,0,0,0.0778116 -36911,7708:380,-80,78,0,0,0.0779224 -36912,7707:489,-79,78,0,0,0.077974 -36913,7707:488,-78,78,0,0,0.078085 -36914,7707:485,-75,78,0,0,0.0784405 -36915,7707:382,-72,78,0,0,0.0773411 -36916,7707:381,-71,78,0,0,0.0770117 -36917,7707:380,-70,78,0,0,0.0770191 -36918,7706:489,-69,78,0,0,0.0770922 -36919,7706:488,-68,78,0,0,0.0772311 -36920,7706:487,-67,78,0,0,0.0772459 -36921,7706:382,-62,78,0,0,0.0766692 -36922,7706:381,-61,78,0,0,0.0766038 -36923,7706:380,-60,78,0,0,0.0766257 -36924,7705:489,-59,78,0,0,0.0767203 -36925,7705:488,-58,78,0,0,0.0766111 -36926,7705:487,-57,78,0,0,0.0765093 -36927,7705:486,-56,78,0,0,0.0765022 -36928,7705:485,-55,78,0,0,0.0764949 -36929,7705:384,-54,78,0,0,0.0765166 -36930,7705:382,-52,78,0,0,0.0765093 -36931,7705:380,-50,78,0,0,0.0764513 -36932,7704:489,-49,78,0,0,0.0765384 -36933,7704:383,-43,78,0,0,0.0766111 -36934,7703:488,-38,78,0,0,0.0764006 -36935,7703:487,-37,78,0,0,0.0763137 -36936,7703:486,-36,78,0,0,0.0762629 -36937,7703:485,-35,78,0,0,0.0762775 -36938,7703:384,-34,78,0,0,0.0762413 -36939,7703:383,-33,78,0,0,0.0762123 -36940,7703:382,-32,78,0,0,0.076205 -36941,7703:381,-31,78,0,0,0.0762123 -36942,7703:380,-30,78,0,0,0.0762413 -36943,7702:489,-29,78,0,0,0.0762558 -36944,7702:488,-28,78,0,0,0.0762485 -36945,7702:487,-27,78,0,0,0.0762702 -36946,7702:486,-26,78,0,0,0.0762775 -36947,7702:485,-25,78,0,0,0.0762918 -36948,7702:384,-24,78,0,0,0.0762558 -36949,7702:383,-23,78,0,0,0.0762267 -36950,7702:382,-22,78,0,0,0.0762123 -36951,7702:381,-21,78,0,0,0.0761472 -36952,7702:380,-20,78,0,0,0.0760749 -36953,7701:489,-19,78,0,0,0.0760029 -36954,7701:488,-18,78,0,0,0.0758658 -36955,7701:487,-17,78,0,0,0.0757867 -36956,7701:486,-16,78,0,0,0.07565 -36957,7701:485,-15,78,0,0,0.0754492 -36958,7701:384,-14,78,0,0,0.075313 -36959,7701:383,-13,78,0,0,0.07527 -36960,7701:382,-12,78,0,0,0.0752559 -36961,7701:381,-11,78,0,0,0.0752631 -36962,7701:380,-10,78,0,0,0.0754061 -36963,7700:489,-9,78,0,0,0.0759162 -36964,7700:488,-8,78,0,0,0.0762775 -36965,7700:487,-7,78,0,0,0.0775026 -36966,7700:486,-6,78,0,0,0.0786266 -36967,7700:485,-5,78,0,0,0.0788053 -36968,7700:384,-4,78,0,0,0.0790369 -36969,7700:383,-3,78,0,0,0.0784852 -36970,7700:381,-1,78,0,0,0.0818642 -36971,1700:381,0,78,0,0,0.0824762 -36972,1700:381,1,78,0,0,0.0787234 -36973,1700:382,2,78,0,0,0.0782551 -36974,1700:383,3,78,0,0,0.0773411 -36975,1700:384,4,78,0,0,0.0814095 -36976,1700:485,5,78,0,0,0.0871239 -36977,1700:486,6,78,0,0,0.0884567 -36978,1700:487,7,78,0,0,0.0905415 -36979,1700:488,8,78,0,0,0.0839419 -36980,1701:381,11,78,0,0,0.0786861 -36981,1701:382,12,78,0,0,0.0769754 -36982,1701:383,13,78,0,0,0.0768514 -36983,1701:384,14,78,0,0,0.0768732 -36984,1701:485,15,78,0,0,0.0766839 -36985,1701:486,16,78,0,0,0.0769973 -36986,1701:487,17,78,0,0,0.0773118 -36987,1701:488,18,78,0,0,0.0787009 -36988,1701:489,19,78,0,0,0.0803555 -36989,1702:380,20,78,0,0,0.0803405 -36990,1702:381,21,78,0,0,0.0811335 -36991,1702:382,22,78,0,0,0.0782775 -36992,1702:383,23,78,0,0,0.0762485 -36993,1713:383,133,78,0,0,0.0802265 -36994,1713:384,134,78,0,0,0.079939 -36995,1713:485,135,78,0,0,0.0794567 -36996,1713:486,136,78,0,0,0.07827 -36997,1713:487,137,78,0,0,0.0767056 -36998,1713:488,138,78,0,0,0.0764876 -36999,1713:489,139,78,0,0,0.0758298 -37000,1714:380,140,78,0,0,0.0756355 -37001,1714:381,141,78,0,0,0.0757435 -37002,1714:382,142,78,0,0,0.0759523 -37003,1714:383,143,78,0,0,0.0760679 -37004,1714:384,144,78,0,0,0.0760606 -37005,1714:485,145,78,0,0,0.076039 -37006,1714:486,146,78,0,0,0.0755135 -37007,1715:380,150,78,0,0,0.0755424 -37008,1715:381,151,78,0,0,0.0756787 -37009,1715:382,152,78,0,0,0.0753489 -37010,1715:383,153,78,0,0,0.075313 -37011,1715:384,154,78,0,0,0.0754492 -37012,1715:485,155,78,0,0,0.0755494 -37013,1715:486,156,78,0,0,0.0755926 -37014,1715:487,157,78,0,0,0.0756285 -37015,1715:488,158,78,0,0,0.0757507 -37016,1715:489,159,78,0,0,0.0758803 -37017,1716:380,160,78,0,0,0.0759019 -37018,1716:381,161,78,0,0,0.0759234 -37019,1716:382,162,78,0,0,0.075974 -37020,1716:383,163,78,0,0,0.0760749 -37021,1716:384,164,78,0,0,0.07614 -37022,1716:485,165,78,0,0,0.0761472 -37023,1716:486,166,78,0,0,0.0761689 -37024,1716:487,167,78,0,0,0.0761834 -37025,1716:488,168,78,0,0,0.0761978 -37026,1716:489,169,78,0,0,0.0761978 -37027,1717:380,170,78,0,0,0.076205 -37028,1717:381,171,78,0,0,0.0762123 -37029,1717:382,172,78,0,0,0.0762196 -37030,1717:383,173,78,0,0,0.0762123 -37031,1717:384,174,78,0,0,0.0762267 -37032,1717:485,175,78,0,0,0.0762558 -37033,1717:486,176,78,0,0,0.0762848 -37034,1717:487,177,78,0,0,0.0762918 -37035,1717:488,178,78,0,0,0.0762918 -37036,1717:489,179,78,0,0,0.0762918 -37037,1718:380,180,78,0,0,0.0763064 -37038,7718:390,-180,79,0,0,0.0762702 -37039,7717:499,-179,79,0,0,0.0762918 -37040,7717:498,-178,79,0,0,0.0763354 -37041,7717:497,-177,79,0,0,0.0763354 -37042,7717:496,-176,79,0,0,0.0763354 -37043,7717:495,-175,79,0,0,0.0763427 -37044,7717:394,-174,79,0,0,0.0763571 -37045,7717:393,-173,79,0,0,0.076386 -37046,7717:392,-172,79,0,0,0.0764442 -37047,7717:391,-171,79,0,0,0.0764803 -37048,7717:390,-170,79,0,0,0.0764659 -37049,7716:499,-169,79,0,0,0.0764442 -37050,7716:498,-168,79,0,0,0.0764223 -37051,7716:497,-167,79,0,0,0.0763933 -37052,7716:496,-166,79,0,0,0.0763643 -37053,7716:495,-165,79,0,0,0.0763354 -37054,7716:394,-164,79,0,0,0.0763933 -37055,7716:393,-163,79,0,0,0.0765457 -37056,7716:391,-161,79,0,0,0.076553 -37057,7716:390,-160,79,0,0,0.0765747 -37058,7715:495,-155,79,0,0,0.0766184 -37059,7715:393,-153,79,0,0,0.0765457 -37060,7715:392,-152,79,0,0,0.0766038 -37061,7715:391,-151,79,0,0,0.0766184 -37062,7715:390,-150,79,0,0,0.0766328 -37063,7713:495,-135,79,0,0,0.0775687 -37064,7713:394,-134,79,0,0,0.077635 -37065,7713:393,-133,79,0,0,0.0776201 -37066,7713:392,-132,79,0,0,0.0778634 -37067,7708:391,-81,79,0,0,0.0777084 -37068,7708:390,-80,79,0,0,0.0779519 -37069,7707:499,-79,79,0,0,0.077937 -37070,7707:392,-72,79,0,0,0.0772825 -37071,7707:391,-71,79,0,0,0.0770409 -37072,7707:390,-70,79,0,0,0.0769825 -37073,7706:499,-69,79,0,0,0.0769681 -37074,7706:498,-68,79,0,0,0.0769681 -37075,7706:497,-67,79,0,0,0.0769168 -37076,7706:495,-65,79,0,0,0.077063 -37077,7706:394,-64,79,0,0,0.0769973 -37078,7706:392,-62,79,0,0,0.0767494 -37079,7706:391,-61,79,0,0,0.0765313 -37080,7706:390,-60,79,0,0,0.076524 -37081,7705:499,-59,79,0,0,0.0766328 -37082,7705:394,-54,79,0,0,0.0766257 -37083,7705:393,-53,79,0,0,0.0765676 -37084,7705:392,-52,79,0,0,0.0764659 -37085,7705:391,-51,79,0,0,0.0762991 -37086,7704:498,-48,79,0,0,0.0765384 -37087,7704:392,-42,79,0,0,0.0764803 -37088,7704:390,-40,79,0,0,0.0764513 -37089,7703:499,-39,79,0,0,0.0763281 -37090,7703:498,-38,79,0,0,0.0762775 -37091,7703:497,-37,79,0,0,0.0762702 -37092,7703:496,-36,79,0,0,0.0762702 -37093,7703:495,-35,79,0,0,0.0762991 -37094,7703:394,-34,79,0,0,0.0762918 -37095,7703:393,-33,79,0,0,0.0762413 -37096,7703:392,-32,79,0,0,0.0762413 -37097,7703:391,-31,79,0,0,0.0762413 -37098,7703:390,-30,79,0,0,0.076234 -37099,7702:499,-29,79,0,0,0.076234 -37100,7702:498,-28,79,0,0,0.076234 -37101,7702:497,-27,79,0,0,0.0762702 -37102,7702:496,-26,79,0,0,0.0762848 -37103,7702:495,-25,79,0,0,0.0762918 -37104,7702:394,-24,79,0,0,0.0762702 -37105,7702:393,-23,79,0,0,0.076205 -37106,7702:392,-22,79,0,0,0.0761689 -37107,7702:391,-21,79,0,0,0.0761472 -37108,7702:390,-20,79,0,0,0.0760967 -37109,7701:499,-19,79,0,0,0.076046 -37110,7701:498,-18,79,0,0,0.0759307 -37111,7701:497,-17,79,0,0,0.0756787 -37112,7701:496,-16,79,0,0,0.0755854 -37113,7701:495,-15,79,0,0,0.0754921 -37114,7701:394,-14,79,0,0,0.0753489 -37115,7701:393,-13,79,0,0,0.0752844 -37116,7701:392,-12,79,0,0,0.0752559 -37117,7701:391,-11,79,0,0,0.0752631 -37118,7701:390,-10,79,0,0,0.0753703 -37119,7700:499,-9,79,0,0,0.0755854 -37120,7700:498,-8,79,0,0,0.0758946 -37121,7700:497,-7,79,0,0,0.0775907 -37122,7700:496,-6,79,0,0,0.0782775 -37123,7700:495,-5,79,0,0,0.0782847 -37124,7700:394,-4,79,0,0,0.0781071 -37125,7700:392,-2,79,0,0,0.0771215 -37126,1700:391,0,79,0,0,0.0780552 -37127,1700:391,1,79,0,0,0.0799466 -37128,1700:392,2,79,0,0,0.0782626 -37129,1700:393,3,79,0,0,0.0768877 -37130,1700:394,4,79,0,0,0.0767858 -37131,1700:495,5,79,0,0,0.0778116 -37132,1700:496,6,79,0,0,0.0870013 -37133,1700:497,7,79,0,0,0.089699 -37134,1701:390,10,79,0,0,0.0787605 -37135,1701:391,11,79,0,0,0.0769899 -37136,1701:392,12,79,0,0,0.0766401 -37137,1701:393,13,79,0,0,0.076553 -37138,1701:394,14,79,0,0,0.0764442 -37139,1701:495,15,79,0,0,0.0763427 -37140,1701:496,16,79,0,0,0.0769681 -37141,1701:497,17,79,0,0,0.0784927 -37142,1701:498,18,79,0,0,0.0791042 -37143,1701:499,19,79,0,0,0.0785224 -37144,1702:390,20,79,0,0,0.0757435 -37145,1702:391,21,79,0,0,0.0759956 -37146,1702:392,22,79,0,0,0.0769681 -37147,1702:393,23,79,0,0,0.0763933 -37148,1702:394,24,79,0,0,0.0765166 -37149,1712:499,129,79,0,0,0.0892469 -37150,1713:393,133,79,0,0,0.0801812 -37151,1713:394,134,79,0,0,0.0790369 -37152,1713:495,135,79,0,0,0.0775981 -37153,1713:496,136,79,0,0,0.0762267 -37154,1713:497,137,79,0,0,0.0759091 -37155,1713:498,138,79,0,0,0.0756428 -37156,1713:499,139,79,0,0,0.0755207 -37157,1714:390,140,79,0,0,0.0754849 -37158,1714:391,141,79,0,0,0.075758 -37159,1714:392,142,79,0,0,0.0757507 -37160,1714:393,143,79,0,0,0.0755926 -37161,1714:394,144,79,0,0,0.075765 -37162,1714:495,145,79,0,0,0.0756787 -37163,1714:496,146,79,0,0,0.0756355 -37164,1714:497,147,79,0,0,0.0755926 -37165,1714:498,148,79,0,0,0.0755567 -37166,1714:499,149,79,0,0,0.0755998 -37167,1715:390,150,79,0,0,0.0754562 -37168,1715:391,151,79,0,0,0.0756572 -37169,1715:392,152,79,0,0,0.0754849 -37170,1715:393,153,79,0,0,0.0755135 -37171,1715:394,154,79,0,0,0.0755494 -37172,1715:495,155,79,0,0,0.0755567 -37173,1715:496,156,79,0,0,0.0755639 -37174,1715:497,157,79,0,0,0.0755998 -37175,1715:498,158,79,0,0,0.075758 -37176,1715:499,159,79,0,0,0.0758586 -37177,1716:390,160,79,0,0,0.0758515 -37178,1716:391,161,79,0,0,0.0758586 -37179,1716:392,162,79,0,0,0.0759234 -37180,1716:393,163,79,0,0,0.0760245 -37181,1716:394,164,79,0,0,0.0761183 -37182,1716:495,165,79,0,0,0.0761545 -37183,1716:496,166,79,0,0,0.0761761 -37184,1716:497,167,79,0,0,0.0761978 -37185,1716:498,168,79,0,0,0.0762123 -37186,1716:499,169,79,0,0,0.0762196 -37187,1717:390,170,79,0,0,0.0762267 -37188,1717:391,171,79,0,0,0.0762196 -37189,1717:392,172,79,0,0,0.0762123 -37190,1717:393,173,79,0,0,0.0762123 -37191,1717:394,174,79,0,0,0.076234 -37192,1717:495,175,79,0,0,0.0762558 -37193,1717:496,176,79,0,0,0.0762775 -37194,1717:497,177,79,0,0,0.0762848 -37195,1717:498,178,79,0,0,0.0762702 -37196,1717:499,179,79,0,0,0.0762702 -37197,1718:390,180,79,0,0,0.0762702 -37198,7818:100,-180,80,0,0,0.0762629 -37199,7817:209,-179,80,0,0,0.0762629 -37200,7817:208,-178,80,0,0,0.0762702 -37201,7817:207,-177,80,0,0,0.0762848 -37202,7817:206,-176,80,0,0,0.0763137 -37203,7817:205,-175,80,0,0,0.0763643 -37204,7817:104,-174,80,0,0,0.076386 -37205,7817:103,-173,80,0,0,0.0764079 -37206,7817:102,-172,80,0,0,0.0764369 -37207,7817:101,-171,80,0,0,0.0764586 -37208,7817:100,-170,80,0,0,0.076415 -37209,7816:209,-169,80,0,0,0.076386 -37210,7816:208,-168,80,0,0,0.0763789 -37211,7816:207,-167,80,0,0,0.0763716 -37212,7816:206,-166,80,0,0,0.07635 -37213,7816:205,-165,80,0,0,0.0763571 -37214,7816:104,-164,80,0,0,0.0764586 -37215,7816:103,-163,80,0,0,0.0765747 -37216,7816:102,-162,80,0,0,0.0764513 -37217,7816:101,-161,80,0,0,0.076582 -37218,7816:100,-160,80,0,0,0.0766328 -37219,7815:209,-159,80,0,0,0.0766983 -37220,7815:103,-153,80,0,0,0.0765166 -37221,7815:102,-152,80,0,0,0.0765022 -37222,7815:101,-151,80,0,0,0.0765967 -37223,7815:100,-150,80,0,0,0.0766839 -37224,7814:209,-149,80,0,0,0.0767056 -37225,7814:208,-148,80,0,0,0.0766184 -37226,7813:205,-135,80,0,0,0.0778116 -37227,7813:104,-134,80,0,0,0.0776055 -37228,7813:103,-133,80,0,0,0.0777821 -37229,7813:102,-132,80,0,0,0.0779445 -37230,7813:101,-131,80,0,0,0.0785744 -37231,7808:100,-80,80,0,0,0.0776201 -37232,7807:209,-79,80,0,0,0.0779149 -37233,7807:101,-71,80,0,0,0.0769825 -37234,7807:100,-70,80,0,0,0.0769681 -37235,7806:209,-69,80,0,0,0.0769389 -37236,7806:208,-68,80,0,0,0.0769534 -37237,7806:207,-67,80,0,0,0.0769242 -37238,7806:206,-66,80,0,0,0.0768806 -37239,7806:205,-65,80,0,0,0.0768294 -37240,7806:104,-64,80,0,0,0.0767567 -37241,7806:103,-63,80,0,0,0.0766621 -37242,7806:102,-62,80,0,0,0.0765747 -37243,7806:101,-61,80,0,0,0.0764659 -37244,7806:100,-60,80,0,0,0.076415 -37245,7805:209,-59,80,0,0,0.0764296 -37246,7805:208,-58,80,0,0,0.0763789 -37247,7805:205,-55,80,0,0,0.0765747 -37248,7805:104,-54,80,0,0,0.076582 -37249,7805:103,-53,80,0,0,0.0765603 -37250,7805:102,-52,80,0,0,0.0764586 -37251,7804:209,-49,80,0,0,0.0764223 -37252,7804:208,-48,80,0,0,0.0764586 -37253,7804:207,-47,80,0,0,0.0765603 -37254,7804:206,-46,80,0,0,0.0765747 -37255,7804:205,-45,80,0,0,0.0765747 -37256,7804:104,-44,80,0,0,0.0765313 -37257,7804:103,-43,80,0,0,0.0764659 -37258,7804:102,-42,80,0,0,0.076386 -37259,7804:101,-41,80,0,0,0.0763064 -37260,7804:100,-40,80,0,0,0.0762918 -37261,7803:209,-39,80,0,0,0.0763064 -37262,7803:208,-38,80,0,0,0.0762991 -37263,7803:207,-37,80,0,0,0.0762991 -37264,7803:206,-36,80,0,0,0.0762991 -37265,7803:205,-35,80,0,0,0.0762918 -37266,7803:104,-34,80,0,0,0.0762775 -37267,7803:103,-33,80,0,0,0.0762775 -37268,7803:102,-32,80,0,0,0.0762991 -37269,7803:101,-31,80,0,0,0.0762991 -37270,7803:100,-30,80,0,0,0.0762848 -37271,7802:209,-29,80,0,0,0.0762775 -37272,7802:208,-28,80,0,0,0.0762775 -37273,7802:207,-27,80,0,0,0.0762918 -37274,7802:206,-26,80,0,0,0.0762918 -37275,7802:205,-25,80,0,0,0.0762918 -37276,7802:104,-24,80,0,0,0.0762775 -37277,7802:103,-23,80,0,0,0.0762267 -37278,7802:102,-22,80,0,0,0.0761761 -37279,7802:101,-21,80,0,0,0.0761256 -37280,7802:100,-20,80,0,0,0.0760533 -37281,7801:209,-19,80,0,0,0.0760317 -37282,7801:208,-18,80,0,0,0.0759307 -37283,7801:207,-17,80,0,0,0.0758443 -37284,7801:206,-16,80,0,0,0.0757435 -37285,7801:205,-15,80,0,0,0.0755854 -37286,7801:104,-14,80,0,0,0.0753775 -37287,7801:103,-13,80,0,0,0.0753058 -37288,7801:102,-12,80,0,0,0.0752631 -37289,7801:101,-11,80,0,0,0.0752631 -37290,7801:100,-10,80,0,0,0.0752916 -37291,7800:209,-9,80,0,0,0.0753989 -37292,7800:208,-8,80,0,0,0.0755711 -37293,7800:207,-7,80,0,0,0.0766038 -37294,7800:206,-6,80,0,0,0.077797 -37295,7800:205,-5,80,0,0,0.0784108 -37296,7800:104,-4,80,0,0,0.0783812 -37297,7800:103,-3,80,0,0,0.0785819 -37298,7800:101,-1,80,0,0,0.0774584 -37299,1800:101,0,80,0,0,0.0770556 -37300,1800:101,1,80,0,0,0.0771141 -37301,1800:102,2,80,0,0,0.0769754 -37302,1800:103,3,80,0,0,0.0765022 -37303,1800:104,4,80,0,0,0.077224 -37304,1800:205,5,80,0,0,0.0793366 -37305,1800:206,6,80,0,0,0.0829205 -37306,1800:207,7,80,0,0,0.0865453 -37307,1800:209,9,80,0,0,0.0787905 -37308,1801:100,10,80,0,0,0.0772018 -37309,1801:101,11,80,0,0,0.0761761 -37310,1801:102,12,80,0,0,0.0761472 -37311,1801:103,13,80,0,0,0.0762196 -37312,1801:104,14,80,0,0,0.076386 -37313,1801:205,15,80,0,0,0.0769462 -37314,1801:206,16,80,0,0,0.0773263 -37315,1801:207,17,80,0,0,0.0774439 -37316,1801:208,18,80,0,0,0.0772825 -37317,1802:205,25,80,0,0,0.0786936 -37318,1812:100,120,80,0,0,0.0895312 -37319,1812:101,121,80,0,0,0.089523 -37320,1813:100,130,80,0,0,0.085431 -37321,1813:101,131,80,0,0,0.0826707 -37322,1813:102,132,80,0,0,0.079939 -37323,1813:103,133,80,0,0,0.0801962 -37324,1813:104,134,80,0,0,0.0798332 -37325,1813:205,135,80,0,0,0.0780701 -37326,1813:206,136,80,0,0,0.0762918 -37327,1813:207,137,80,0,0,0.076039 -37328,1813:208,138,80,0,0,0.0759307 -37329,1813:209,139,80,0,0,0.0758946 -37330,1814:100,140,80,0,0,0.0757002 -37331,1814:101,141,80,0,0,0.075801 -37332,1814:102,142,80,0,0,0.0755639 -37333,1814:103,143,80,0,0,0.0752772 -37334,1814:104,144,80,0,0,0.075528 -37335,1814:205,145,80,0,0,0.0759019 -37336,1814:206,146,80,0,0,0.0760967 -37337,1814:207,147,80,0,0,0.0763789 -37338,1814:208,148,80,0,0,0.0763354 -37339,1814:209,149,80,0,0,0.0762848 -37340,1815:100,150,80,0,0,0.0760822 -37341,1815:101,151,80,0,0,0.0755135 -37342,1815:102,152,80,0,0,0.0754275 -37343,1815:103,153,80,0,0,0.0755065 -37344,1815:104,154,80,0,0,0.0755207 -37345,1815:205,155,80,0,0,0.0755065 -37346,1815:206,156,80,0,0,0.0755424 -37347,1815:207,157,80,0,0,0.0756285 -37348,1815:208,158,80,0,0,0.075722 -37349,1815:209,159,80,0,0,0.0758082 -37350,1816:100,160,80,0,0,0.0758082 -37351,1816:101,161,80,0,0,0.0758155 -37352,1816:102,162,80,0,0,0.0758658 -37353,1816:103,163,80,0,0,0.0759523 -37354,1816:104,164,80,0,0,0.0760679 -37355,1816:205,165,80,0,0,0.07614 -37356,1816:206,166,80,0,0,0.0761545 -37357,1816:207,167,80,0,0,0.0761834 -37358,1816:208,168,80,0,0,0.0762196 -37359,1816:209,169,80,0,0,0.0762267 -37360,1817:100,170,80,0,0,0.076234 -37361,1817:101,171,80,0,0,0.0762485 -37362,1817:102,172,80,0,0,0.0762485 -37363,1817:103,173,80,0,0,0.076234 -37364,1817:104,174,80,0,0,0.0762413 -37365,1817:205,175,80,0,0,0.0762558 -37366,1817:206,176,80,0,0,0.0762629 -37367,1817:207,177,80,0,0,0.0762702 -37368,1817:208,178,80,0,0,0.0762702 -37369,1817:209,179,80,0,0,0.0762702 -37370,1818:100,180,80,0,0,0.0762629 -37371,7818:110,-180,81,0,0,0.0762558 -37372,7817:219,-179,81,0,0,0.0762485 -37373,7817:218,-178,81,0,0,0.0762558 -37374,7817:217,-177,81,0,0,0.0762775 -37375,7817:216,-176,81,0,0,0.0763427 -37376,7817:215,-175,81,0,0,0.0763716 -37377,7817:114,-174,81,0,0,0.0763789 -37378,7817:113,-173,81,0,0,0.0763933 -37379,7817:112,-172,81,0,0,0.076415 -37380,7817:111,-171,81,0,0,0.076415 -37381,7817:110,-170,81,0,0,0.0763933 -37382,7816:219,-169,81,0,0,0.0763789 -37383,7816:218,-168,81,0,0,0.0763571 -37384,7816:217,-167,81,0,0,0.0763643 -37385,7816:216,-166,81,0,0,0.0763716 -37386,7816:215,-165,81,0,0,0.0764006 -37387,7816:111,-161,81,0,0,0.0766257 -37388,7816:110,-160,81,0,0,0.076713 -37389,7815:219,-159,81,0,0,0.0767785 -37390,7815:218,-158,81,0,0,0.0768149 -37391,7815:217,-157,81,0,0,0.0768294 -37392,7815:114,-154,81,0,0,0.0763716 -37393,7815:113,-153,81,0,0,0.0763789 -37394,7815:112,-152,81,0,0,0.0764659 -37395,7815:111,-151,81,0,0,0.0765893 -37396,7815:110,-150,81,0,0,0.0766765 -37397,7814:219,-149,81,0,0,0.0767056 -37398,7813:215,-135,81,0,0,0.0777453 -37399,7813:111,-131,81,0,0,0.0781514 -37400,7813:110,-130,81,0,0,0.0784036 -37401,7812:219,-129,81,0,0,0.0790294 -37402,7812:218,-128,81,0,0,0.0790743 -37403,7812:217,-127,81,0,0,0.0791417 -37404,7807:218,-78,81,0,0,0.0778706 -37405,7806:218,-68,81,0,0,0.0769607 -37406,7806:217,-67,81,0,0,0.0769899 -37407,7806:216,-66,81,0,0,0.0769168 -37408,7806:215,-65,81,0,0,0.0767929 -37409,7806:114,-64,81,0,0,0.0767203 -37410,7806:113,-63,81,0,0,0.0766475 -37411,7806:112,-62,81,0,0,0.0765457 -37412,7806:111,-61,81,0,0,0.076415 -37413,7806:110,-60,81,0,0,0.0763716 -37414,7805:219,-59,81,0,0,0.0763571 -37415,7805:218,-58,81,0,0,0.0764006 -37416,7805:217,-57,81,0,0,0.0764369 -37417,7805:215,-55,81,0,0,0.0764876 -37418,7805:114,-54,81,0,0,0.0765093 -37419,7805:113,-53,81,0,0,0.0764803 -37420,7805:112,-52,81,0,0,0.0764586 -37421,7805:111,-51,81,0,0,0.076415 -37422,7804:218,-48,81,0,0,0.0764006 -37423,7804:217,-47,81,0,0,0.0765967 -37424,7804:216,-46,81,0,0,0.0766184 -37425,7804:215,-45,81,0,0,0.0765676 -37426,7804:114,-44,81,0,0,0.0763933 -37427,7804:113,-43,81,0,0,0.0762991 -37428,7804:112,-42,81,0,0,0.0762848 -37429,7804:111,-41,81,0,0,0.0763064 -37430,7804:110,-40,81,0,0,0.0763354 -37431,7803:219,-39,81,0,0,0.0763354 -37432,7803:218,-38,81,0,0,0.0763281 -37433,7803:217,-37,81,0,0,0.0763208 -37434,7803:216,-36,81,0,0,0.0763137 -37435,7803:215,-35,81,0,0,0.0763064 -37436,7803:114,-34,81,0,0,0.0762991 -37437,7803:113,-33,81,0,0,0.0762918 -37438,7803:112,-32,81,0,0,0.0763064 -37439,7803:111,-31,81,0,0,0.0763137 -37440,7803:110,-30,81,0,0,0.0762918 -37441,7802:219,-29,81,0,0,0.0762918 -37442,7802:218,-28,81,0,0,0.0762918 -37443,7802:217,-27,81,0,0,0.0762918 -37444,7802:216,-26,81,0,0,0.0763064 -37445,7802:215,-25,81,0,0,0.0763137 -37446,7802:114,-24,81,0,0,0.0762848 -37447,7802:113,-23,81,0,0,0.076234 -37448,7802:112,-22,81,0,0,0.0761907 -37449,7802:111,-21,81,0,0,0.0761689 -37450,7802:110,-20,81,0,0,0.0761327 -37451,7801:219,-19,81,0,0,0.0760822 -37452,7801:218,-18,81,0,0,0.0759595 -37453,7801:217,-17,81,0,0,0.0758155 -37454,7801:216,-16,81,0,0,0.0757075 -37455,7801:215,-15,81,0,0,0.075528 -37456,7801:114,-14,81,0,0,0.075442 -37457,7801:113,-13,81,0,0,0.0753631 -37458,7801:112,-12,81,0,0,0.0753272 -37459,7801:111,-11,81,0,0,0.075313 -37460,7801:110,-10,81,0,0,0.0752916 -37461,7800:219,-9,81,0,0,0.0752986 -37462,7800:218,-8,81,0,0,0.0754133 -37463,7800:217,-7,81,0,0,0.0759307 -37464,7800:216,-6,81,0,0,0.0765747 -37465,7800:215,-5,81,0,0,0.077532 -37466,7800:114,-4,81,0,0,0.0781812 -37467,7800:113,-3,81,0,0,0.0784108 -37468,7800:112,-2,81,0,0,0.0787159 -37469,7800:111,-1,81,0,0,0.0784777 -37470,1800:111,0,81,0,0,0.0777307 -37471,1800:111,1,81,0,0,0.0770338 -37472,1800:112,2,81,0,0,0.0769462 -37473,1800:113,3,81,0,0,0.0763137 -37474,1800:114,4,81,0,0,0.0763208 -37475,1800:215,5,81,0,0,0.0772018 -37476,1800:216,6,81,0,0,0.0779445 -37477,1800:219,9,81,0,0,0.07888 -37478,1801:110,10,81,0,0,0.076415 -37479,1801:111,11,81,0,0,0.0771873 -37480,1801:112,12,81,0,0,0.0779591 -37481,1801:113,13,81,0,0,0.0787382 -37482,1801:114,14,81,0,0,0.079254 -37483,1801:215,15,81,0,0,0.0802039 -37484,1812:217,127,81,0,0,0.0857286 -37485,1812:219,129,81,0,0,0.085359 -37486,1813:110,130,81,0,0,0.0858415 -37487,1813:111,131,81,0,0,0.084831 -37488,1813:112,132,81,0,0,0.0800146 -37489,1813:113,133,81,0,0,0.0806751 -37490,1813:114,134,81,0,0,0.0795092 -37491,1813:215,135,81,0,0,0.0774658 -37492,1813:216,136,81,0,0,0.0768221 -37493,1813:217,137,81,0,0,0.0763064 -37494,1813:218,138,81,0,0,0.0765022 -37495,1813:219,139,81,0,0,0.0764442 -37496,1814:110,140,81,0,0,0.0763933 -37497,1814:111,141,81,0,0,0.0762775 -37498,1814:112,142,81,0,0,0.076415 -37499,1814:113,143,81,0,0,0.0761907 -37500,1814:114,144,81,0,0,0.0759379 -37501,1814:215,145,81,0,0,0.075765 -37502,1814:216,146,81,0,0,0.0760749 -37503,1814:217,147,81,0,0,0.0762196 -37504,1814:218,148,81,0,0,0.0763208 -37505,1814:219,149,81,0,0,0.0766328 -37506,1815:110,150,81,0,0,0.0764223 -37507,1815:111,151,81,0,0,0.0755065 -37508,1815:112,152,81,0,0,0.0753917 -37509,1815:113,153,81,0,0,0.0754706 -37510,1815:114,154,81,0,0,0.075442 -37511,1815:215,155,81,0,0,0.0754634 -37512,1815:216,156,81,0,0,0.0754562 -37513,1815:217,157,81,0,0,0.0755207 -37514,1815:218,158,81,0,0,0.07565 -37515,1815:219,159,81,0,0,0.075758 -37516,1816:110,160,81,0,0,0.0757722 -37517,1816:111,161,81,0,0,0.0757937 -37518,1816:112,162,81,0,0,0.0758225 -37519,1816:113,163,81,0,0,0.0758803 -37520,1816:114,164,81,0,0,0.075974 -37521,1816:215,165,81,0,0,0.0761038 -37522,1816:216,166,81,0,0,0.0761761 -37523,1816:217,167,81,0,0,0.076205 -37524,1816:218,168,81,0,0,0.0762196 -37525,1816:219,169,81,0,0,0.076234 -37526,1817:110,170,81,0,0,0.0762558 -37527,1817:111,171,81,0,0,0.0762702 -37528,1817:112,172,81,0,0,0.0762558 -37529,1817:113,173,81,0,0,0.0762485 -37530,1817:114,174,81,0,0,0.0762558 -37531,1817:215,175,81,0,0,0.0762702 -37532,1817:216,176,81,0,0,0.0762848 -37533,1817:217,177,81,0,0,0.0762848 -37534,1817:218,178,81,0,0,0.0762918 -37535,1817:219,179,81,0,0,0.0762702 -37536,1818:110,180,81,0,0,0.0762558 -37537,7818:120,-180,82,0,0,0.0762629 -37538,7817:229,-179,82,0,0,0.0762629 -37539,7817:228,-178,82,0,0,0.0762848 -37540,7817:227,-177,82,0,0,0.0763137 -37541,7817:226,-176,82,0,0,0.07635 -37542,7817:225,-175,82,0,0,0.0763643 -37543,7817:124,-174,82,0,0,0.0763789 -37544,7817:123,-173,82,0,0,0.076386 -37545,7817:122,-172,82,0,0,0.0763933 -37546,7817:121,-171,82,0,0,0.0763933 -37547,7817:120,-170,82,0,0,0.0763716 -37548,7816:229,-169,82,0,0,0.0763427 -37549,7816:228,-168,82,0,0,0.0763354 -37550,7816:227,-167,82,0,0,0.0763643 -37551,7816:226,-166,82,0,0,0.0764732 -37552,7816:225,-165,82,0,0,0.0764949 -37553,7816:124,-164,82,0,0,0.0764369 -37554,7816:123,-163,82,0,0,0.0764803 -37555,7816:122,-162,82,0,0,0.0765384 -37556,7816:121,-161,82,0,0,0.0765893 -37557,7816:120,-160,82,0,0,0.0766692 -37558,7815:124,-154,82,0,0,0.0762558 -37559,7815:123,-153,82,0,0,0.07635 -37560,7815:122,-152,82,0,0,0.0765093 -37561,7815:121,-151,82,0,0,0.0766548 -37562,7815:120,-150,82,0,0,0.0766839 -37563,7814:228,-148,82,0,0,0.0767567 -37564,7814:227,-147,82,0,0,0.0768294 -37565,7814:226,-146,82,0,0,0.0768294 -37566,7813:226,-136,82,0,0,0.0777084 -37567,7813:225,-135,82,0,0,0.0776421 -37568,7813:123,-133,82,0,0,0.0789397 -37569,7808:120,-80,82,0,0,0.0803708 -37570,7807:228,-78,82,0,0,0.0778116 -37571,7807:227,-77,82,0,0,0.0776718 -37572,7806:122,-62,82,0,0,0.0765676 -37573,7806:121,-61,82,0,0,0.0763643 -37574,7806:120,-60,82,0,0,0.0763281 -37575,7805:229,-59,82,0,0,0.0763933 -37576,7805:228,-58,82,0,0,0.076386 -37577,7805:226,-56,82,0,0,0.0765313 -37578,7805:225,-55,82,0,0,0.0764803 -37579,7805:124,-54,82,0,0,0.0765166 -37580,7805:122,-52,82,0,0,0.0764659 -37581,7805:121,-51,82,0,0,0.0764876 -37582,7804:229,-49,82,0,0,0.0765313 -37583,7804:227,-47,82,0,0,0.0766692 -37584,7804:226,-46,82,0,0,0.0766401 -37585,7804:225,-45,82,0,0,0.0764296 -37586,7804:124,-44,82,0,0,0.0763281 -37587,7804:123,-43,82,0,0,0.0763354 -37588,7804:122,-42,82,0,0,0.0763427 -37589,7804:121,-41,82,0,0,0.07635 -37590,7804:120,-40,82,0,0,0.07635 -37591,7803:229,-39,82,0,0,0.0763427 -37592,7803:228,-38,82,0,0,0.07635 -37593,7803:227,-37,82,0,0,0.0763427 -37594,7803:226,-36,82,0,0,0.0763208 -37595,7803:225,-35,82,0,0,0.0762991 -37596,7803:124,-34,82,0,0,0.0762918 -37597,7803:123,-33,82,0,0,0.0762918 -37598,7803:122,-32,82,0,0,0.0762918 -37599,7803:121,-31,82,0,0,0.0763064 -37600,7803:120,-30,82,0,0,0.0762991 -37601,7802:229,-29,82,0,0,0.0762918 -37602,7802:228,-28,82,0,0,0.0762991 -37603,7802:227,-27,82,0,0,0.0763137 -37604,7802:226,-26,82,0,0,0.0763208 -37605,7802:225,-25,82,0,0,0.0763137 -37606,7802:124,-24,82,0,0,0.0762918 -37607,7802:123,-23,82,0,0,0.0762413 -37608,7802:122,-22,82,0,0,0.0761978 -37609,7802:121,-21,82,0,0,0.0761618 -37610,7802:120,-20,82,0,0,0.0760679 -37611,7801:229,-19,82,0,0,0.0759884 -37612,7801:228,-18,82,0,0,0.0759234 -37613,7801:227,-17,82,0,0,0.0758082 -37614,7801:226,-16,82,0,0,0.0756285 -37615,7801:225,-15,82,0,0,0.0755854 -37616,7801:124,-14,82,0,0,0.0756068 -37617,7801:123,-13,82,0,0,0.0754993 -37618,7801:122,-12,82,0,0,0.0753561 -37619,7801:121,-11,82,0,0,0.0753489 -37620,7801:120,-10,82,0,0,0.0753272 -37621,7800:229,-9,82,0,0,0.0753344 -37622,7800:228,-8,82,0,0,0.0753489 -37623,7800:227,-7,82,0,0,0.0754779 -37624,7800:226,-6,82,0,0,0.07614 -37625,7800:225,-5,82,0,0,0.0769024 -37626,7800:124,-4,82,0,0,0.0766983 -37627,7800:123,-3,82,0,0,0.0765166 -37628,7800:122,-2,82,0,0,0.0766111 -37629,7800:121,-1,82,0,0,0.0768585 -37630,1800:121,0,82,0,0,0.0766475 -37631,1800:121,1,82,0,0,0.076205 -37632,1800:122,2,82,0,0,0.0762196 -37633,1800:123,3,82,0,0,0.0760749 -37634,1800:124,4,82,0,0,0.0771433 -37635,1800:225,5,82,0,0,0.080022 -37636,1800:226,6,82,0,0,0.0803859 -37637,1800:227,7,82,0,0,0.079939 -37638,1800:228,8,82,0,0,0.080614 -37639,1800:229,9,82,0,0,0.0764949 -37640,1801:120,10,82,0,0,0.0772459 -37641,1801:121,11,82,0,0,0.0781884 -37642,1801:122,12,82,0,0,0.0795545 -37643,1801:123,13,82,0,0,0.0806445 -37644,1801:124,14,82,0,0,0.081471 -37645,1803:120,30,82,0,0,0.0895312 -37646,1811:228,118,82,0,0,0.089523 -37647,1811:229,119,82,0,0,0.0895062 -37648,1812:120,120,82,0,0,0.0895062 -37649,1812:121,121,82,0,0,0.0895062 -37650,1812:229,129,82,0,0,0.0830534 -37651,1813:120,130,82,0,0,0.0824683 -37652,1813:121,131,82,0,0,0.0837446 -37653,1813:122,132,82,0,0,0.0818408 -37654,1813:123,133,82,0,0,0.0807056 -37655,1813:124,134,82,0,0,0.0800296 -37656,1813:225,135,82,0,0,0.0785968 -37657,1813:226,136,82,0,0,0.0777821 -37658,1813:227,137,82,0,0,0.0770775 -37659,1813:228,138,82,0,0,0.0764223 -37660,1813:229,139,82,0,0,0.0762702 -37661,1814:120,140,82,0,0,0.0788053 -37662,1814:121,141,82,0,0,0.0789771 -37663,1814:122,142,82,0,0,0.0783812 -37664,1814:123,143,82,0,0,0.0779961 -37665,1814:124,144,82,0,0,0.0777821 -37666,1814:225,145,82,0,0,0.0759668 -37667,1814:226,146,82,0,0,0.0765313 -37668,1814:227,147,82,0,0,0.0759668 -37669,1814:228,148,82,0,0,0.0755854 -37670,1814:229,149,82,0,0,0.0771799 -37671,1815:120,150,82,0,0,0.0768294 -37672,1815:121,151,82,0,0,0.0755494 -37673,1815:122,152,82,0,0,0.0753917 -37674,1815:123,153,82,0,0,0.0753775 -37675,1815:124,154,82,0,0,0.0753272 -37676,1815:225,155,82,0,0,0.0753561 -37677,1815:226,156,82,0,0,0.0754203 -37678,1815:227,157,82,0,0,0.0754061 -37679,1815:228,158,82,0,0,0.0754921 -37680,1815:229,159,82,0,0,0.0756355 -37681,1816:120,160,82,0,0,0.0757362 -37682,1816:121,161,82,0,0,0.075765 -37683,1816:122,162,82,0,0,0.075765 -37684,1816:123,163,82,0,0,0.0757937 -37685,1816:124,164,82,0,0,0.0758803 -37686,1816:225,165,82,0,0,0.0760533 -37687,1816:226,166,82,0,0,0.0761545 -37688,1816:227,167,82,0,0,0.076205 -37689,1816:228,168,82,0,0,0.0762196 -37690,1816:229,169,82,0,0,0.0762413 -37691,1817:120,170,82,0,0,0.0762702 -37692,1817:121,171,82,0,0,0.0762775 -37693,1817:122,172,82,0,0,0.0762629 -37694,1817:123,173,82,0,0,0.0762629 -37695,1817:124,174,82,0,0,0.0762775 -37696,1817:225,175,82,0,0,0.0762848 -37697,1817:226,176,82,0,0,0.0762848 -37698,1817:227,177,82,0,0,0.0762848 -37699,1817:228,178,82,0,0,0.0762918 -37700,1817:229,179,82,0,0,0.0762775 -37701,1818:120,180,82,0,0,0.0762629 -37702,7818:130,-180,83,0,0,0.0762775 -37703,7817:239,-179,83,0,0,0.0762848 -37704,7817:238,-178,83,0,0,0.0763137 -37705,7817:237,-177,83,0,0,0.0763354 -37706,7817:236,-176,83,0,0,0.07635 -37707,7817:235,-175,83,0,0,0.0763571 -37708,7817:134,-174,83,0,0,0.0763571 -37709,7817:133,-173,83,0,0,0.0763643 -37710,7817:132,-172,83,0,0,0.0763716 -37711,7817:131,-171,83,0,0,0.0763643 -37712,7817:130,-170,83,0,0,0.0763354 -37713,7816:239,-169,83,0,0,0.0763354 -37714,7816:238,-168,83,0,0,0.0765313 -37715,7816:237,-167,83,0,0,0.0766184 -37716,7816:236,-166,83,0,0,0.0766257 -37717,7816:235,-165,83,0,0,0.0766038 -37718,7816:134,-164,83,0,0,0.0765457 -37719,7816:133,-163,83,0,0,0.0765022 -37720,7816:132,-162,83,0,0,0.0765022 -37721,7816:131,-161,83,0,0,0.0765384 -37722,7816:130,-160,83,0,0,0.0765384 -37723,7815:239,-159,83,0,0,0.0765022 -37724,7815:238,-158,83,0,0,0.0766692 -37725,7815:134,-154,83,0,0,0.0762775 -37726,7815:133,-153,83,0,0,0.0763571 -37727,7815:132,-152,83,0,0,0.076553 -37728,7815:131,-151,83,0,0,0.0766548 -37729,7815:130,-150,83,0,0,0.0766621 -37730,7813:237,-137,83,0,0,0.0776055 -37731,7813:236,-136,83,0,0,0.0777675 -37732,7813:133,-133,83,0,0,0.0792391 -37733,7808:131,-81,83,0,0,0.0791266 -37734,7807:238,-78,83,0,0,0.0777527 -37735,7806:134,-64,83,0,0,0.0766621 -37736,7806:133,-63,83,0,0,0.0766475 -37737,7806:132,-62,83,0,0,0.0765457 -37738,7806:131,-61,83,0,0,0.0763571 -37739,7806:130,-60,83,0,0,0.0762629 -37740,7805:236,-56,83,0,0,0.0766912 -37741,7805:235,-55,83,0,0,0.0765676 -37742,7805:134,-54,83,0,0,0.076582 -37743,7805:133,-53,83,0,0,0.076553 -37744,7805:132,-52,83,0,0,0.0765022 -37745,7805:131,-51,83,0,0,0.0765093 -37746,7805:130,-50,83,0,0,0.076553 -37747,7804:239,-49,83,0,0,0.0765967 -37748,7804:238,-48,83,0,0,0.0766038 -37749,7804:237,-47,83,0,0,0.0765384 -37750,7804:236,-46,83,0,0,0.0764513 -37751,7804:235,-45,83,0,0,0.0763281 -37752,7804:134,-44,83,0,0,0.07635 -37753,7804:133,-43,83,0,0,0.0763789 -37754,7804:132,-42,83,0,0,0.076386 -37755,7804:131,-41,83,0,0,0.0763716 -37756,7804:130,-40,83,0,0,0.0763643 -37757,7803:239,-39,83,0,0,0.0763571 -37758,7803:238,-38,83,0,0,0.0763571 -37759,7803:237,-37,83,0,0,0.0763354 -37760,7803:236,-36,83,0,0,0.0763064 -37761,7803:235,-35,83,0,0,0.0762775 -37762,7803:134,-34,83,0,0,0.0762702 -37763,7803:133,-33,83,0,0,0.0762848 -37764,7803:132,-32,83,0,0,0.0762848 -37765,7803:131,-31,83,0,0,0.0762848 -37766,7803:130,-30,83,0,0,0.0762918 -37767,7802:239,-29,83,0,0,0.0762848 -37768,7802:238,-28,83,0,0,0.0762775 -37769,7802:237,-27,83,0,0,0.0762775 -37770,7802:236,-26,83,0,0,0.0762702 -37771,7802:235,-25,83,0,0,0.0762848 -37772,7802:134,-24,83,0,0,0.0762775 -37773,7802:133,-23,83,0,0,0.0762413 -37774,7802:132,-22,83,0,0,0.0762123 -37775,7802:131,-21,83,0,0,0.0761689 -37776,7802:130,-20,83,0,0,0.0760895 -37777,7801:239,-19,83,0,0,0.0760245 -37778,7801:238,-18,83,0,0,0.0758658 -37779,7801:237,-17,83,0,0,0.0757435 -37780,7801:236,-16,83,0,0,0.075686 -37781,7801:235,-15,83,0,0,0.0757075 -37782,7801:134,-14,83,0,0,0.0757147 -37783,7801:133,-13,83,0,0,0.0755998 -37784,7801:132,-12,83,0,0,0.0754133 -37785,7801:131,-11,83,0,0,0.0753847 -37786,7801:130,-10,83,0,0,0.0753917 -37787,7800:239,-9,83,0,0,0.0753703 -37788,7800:238,-8,83,0,0,0.075313 -37789,7800:237,-7,83,0,0,0.0754275 -37790,7800:236,-6,83,0,0,0.0755926 -37791,7800:235,-5,83,0,0,0.076046 -37792,7800:134,-4,83,0,0,0.0760245 -37793,7800:133,-3,83,0,0,0.077063 -37794,7800:132,-2,83,0,0,0.0774584 -37795,7800:131,-1,83,0,0,0.0775762 -37796,1800:131,0,83,0,0,0.0777084 -37797,1800:131,1,83,0,0,0.0778634 -37798,1800:132,2,83,0,0,0.0776421 -37799,1800:133,3,83,0,0,0.0779149 -37800,1800:134,4,83,0,0,0.0781292 -37801,1800:235,5,83,0,0,0.0797805 -37802,1800:236,6,83,0,0,0.0799466 -37803,1800:237,7,83,0,0,0.0786861 -37804,1800:238,8,83,0,0,0.0762196 -37805,1800:239,9,83,0,0,0.0767785 -37806,1801:130,10,83,0,0,0.0780405 -37807,1801:131,11,83,0,0,0.0794416 -37808,1801:132,12,83,0,0,0.0802948 -37809,1801:133,13,83,0,0,0.081448 -37810,1801:134,14,83,0,0,0.0822588 -37811,1801:235,15,83,0,0,0.0829675 -37812,1801:236,16,83,0,0,0.0827254 -37813,1801:237,17,83,0,0,0.0852147 -37814,1801:238,18,83,0,0,0.0885065 -37815,1802:130,20,83,0,0,0.0895146 -37816,1802:131,21,83,0,0,0.0895146 -37817,1802:132,22,83,0,0,0.089523 -37818,1802:133,23,83,0,0,0.089523 -37819,1802:134,24,83,0,0,0.0895146 -37820,1802:235,25,83,0,0,0.0895146 -37821,1802:237,27,83,0,0,0.0894895 -37822,1802:238,28,83,0,0,0.0895062 -37823,1802:239,29,83,0,0,0.0895312 -37824,1811:237,117,83,0,0,0.089523 -37825,1811:238,118,83,0,0,0.0895062 -37826,1812:131,121,83,0,0,0.089523 -37827,1812:132,122,83,0,0,0.089523 -37828,1812:133,123,83,0,0,0.089523 -37829,1812:134,124,83,0,0,0.089523 -37830,1812:236,126,83,0,0,0.0895146 -37831,1812:237,127,83,0,0,0.0894977 -37832,1812:238,128,83,0,0,0.0885232 -37833,1813:130,130,83,0,0,0.0831004 -37834,1813:131,131,83,0,0,0.08222 -37835,1813:132,132,83,0,0,0.0818873 -37836,1813:133,133,83,0,0,0.0807971 -37837,1813:134,134,83,0,0,0.0799542 -37838,1813:235,135,83,0,0,0.0793815 -37839,1813:236,136,83,0,0,0.0776055 -37840,1813:237,137,83,0,0,0.0763208 -37841,1813:238,138,83,0,0,0.0769315 -37842,1813:239,139,83,0,0,0.080128 -37843,1814:130,140,83,0,0,0.0801509 -37844,1814:131,141,83,0,0,0.0799542 -37845,1814:132,142,83,0,0,0.0773852 -37846,1814:133,143,83,0,0,0.0765457 -37847,1814:134,144,83,0,0,0.0763281 -37848,1814:235,145,83,0,0,0.0764079 -37849,1814:236,146,83,0,0,0.0765022 -37850,1814:237,147,83,0,0,0.0766038 -37851,1814:238,148,83,0,0,0.0766111 -37852,1814:239,149,83,0,0,0.0763933 -37853,1815:130,150,83,0,0,0.0762196 -37854,1815:131,151,83,0,0,0.0763933 -37855,1815:132,152,83,0,0,0.0756932 -37856,1815:133,153,83,0,0,0.075442 -37857,1815:134,154,83,0,0,0.0753203 -37858,1815:235,155,83,0,0,0.0753561 -37859,1815:236,156,83,0,0,0.0753631 -37860,1815:237,157,83,0,0,0.0753775 -37861,1815:238,158,83,0,0,0.0753847 -37862,1815:239,159,83,0,0,0.0755781 -37863,1816:130,160,83,0,0,0.0756932 -37864,1816:131,161,83,0,0,0.0756645 -37865,1816:132,162,83,0,0,0.07565 -37866,1816:133,163,83,0,0,0.0757507 -37867,1816:134,164,83,0,0,0.0758874 -37868,1816:235,165,83,0,0,0.0759956 -37869,1816:236,166,83,0,0,0.0760606 -37870,1816:237,167,83,0,0,0.0761618 -37871,1816:238,168,83,0,0,0.0762123 -37872,1816:239,169,83,0,0,0.0762413 -37873,1817:130,170,83,0,0,0.0762848 -37874,1817:131,171,83,0,0,0.0762918 -37875,1817:132,172,83,0,0,0.0762848 -37876,1817:133,173,83,0,0,0.0762848 -37877,1817:134,174,83,0,0,0.0762848 -37878,1817:235,175,83,0,0,0.0762848 -37879,1817:236,176,83,0,0,0.0762918 -37880,1817:237,177,83,0,0,0.0762918 -37881,1817:238,178,83,0,0,0.0762848 -37882,1817:239,179,83,0,0,0.0762918 -37883,1818:130,180,83,0,0,0.0762775 -37884,7918:100,-180,90,0,0,0.0749916 -37885,7917:209,-179,90,0,0,0.0750201 -37886,7917:208,-178,90,0,0,0.0750201 -37887,7917:207,-177,90,0,0,0.0750416 -37888,7917:206,-176,90,0,0,0.0750488 -37889,7917:205,-175,90,0,0,0.0750558 -37890,7917:104,-174,90,0,0,0.0750702 -37891,7917:103,-173,90,0,0,0.0750773 -37892,7917:102,-172,90,0,0,0.0750843 -37893,7917:101,-171,90,0,0,0.0750843 -37894,7917:100,-170,90,0,0,0.0750915 -37895,7916:209,-169,90,0,0,0.0750987 -37896,7916:208,-168,90,0,0,0.0751059 -37897,7916:207,-167,90,0,0,0.0751128 -37898,7916:206,-166,90,0,0,0.0751059 -37899,7916:205,-165,90,0,0,0.0751059 -37900,7916:104,-164,90,0,0,0.0751059 -37901,7916:103,-163,90,0,0,0.0751128 -37902,7916:102,-162,90,0,0,0.0751128 -37903,7916:101,-161,90,0,0,0.07512 -37904,7916:100,-160,90,0,0,0.0751344 -37905,7915:209,-159,90,0,0,0.0751416 -37906,7915:208,-158,90,0,0,0.0751558 -37907,7915:207,-157,90,0,0,0.0751486 -37908,7915:206,-156,90,0,0,0.0751558 -37909,7915:205,-155,90,0,0,0.075163 -37910,7915:104,-154,90,0,0,0.0751486 -37911,7915:103,-153,90,0,0,0.075163 -37912,7915:102,-152,90,0,0,0.0751558 -37913,7915:101,-151,90,0,0,0.0751416 -37914,7915:100,-150,90,0,0,0.0751416 -37915,7914:209,-149,90,0,0,0.0751344 -37916,7914:208,-148,90,0,0,0.0751344 -37917,7914:207,-147,90,0,0,0.0751272 -37918,7914:206,-146,90,0,0,0.07512 -37919,7914:205,-145,90,0,0,0.07512 -37920,7914:104,-144,90,0,0,0.0751128 -37921,7914:103,-143,90,0,0,0.07512 -37922,7914:102,-142,90,0,0,0.0751128 -37923,7914:101,-141,90,0,0,0.0751128 -37924,7914:100,-140,90,0,0,0.07512 -37925,7913:209,-139,90,0,0,0.07512 -37926,7913:208,-138,90,0,0,0.0751272 -37927,7913:207,-137,90,0,0,0.07527 -37928,7913:206,-136,90,0,0,0.0758155 -37929,7913:205,-135,90,0,0,0.0776421 -37930,7913:104,-134,90,0,0,0.0779001 -37931,7911:100,-110,90,0,0,0.0832649 -37932,7910:209,-109,90,0,0,0.0880188 -37933,7910:206,-106,90,0,0,0.0759162 -37934,7910:205,-105,90,0,0,0.0753775 -37935,7910:104,-104,90,0,0,0.0768514 -37936,7910:103,-103,90,0,0,0.0810109 -37937,7906:101,-61,90,0,0,0.0753489 -37938,7906:100,-60,90,0,0,0.075163 -37939,7905:209,-59,90,0,0,0.0750201 -37940,7905:208,-58,90,0,0,0.074949 -37941,7905:207,-57,90,0,0,0.0749346 -37942,7905:206,-56,90,0,0,0.0749275 -37943,7905:205,-55,90,0,0,0.0749346 -37944,7905:104,-54,90,0,0,0.0749346 -37945,7905:103,-53,90,0,0,0.0749418 -37946,7905:102,-52,90,0,0,0.0749562 -37947,7905:101,-51,90,0,0,0.0749631 -37948,7905:100,-50,90,0,0,0.0749631 -37949,7904:209,-49,90,0,0,0.0749631 -37950,7904:208,-48,90,0,0,0.074949 -37951,7904:207,-47,90,0,0,0.0749703 -37952,7904:206,-46,90,0,0,0.0749988 -37953,7904:205,-45,90,0,0,0.0750273 -37954,7904:104,-44,90,0,0,0.0750201 -37955,7904:103,-43,90,0,0,0.0750201 -37956,7904:102,-42,90,0,0,0.0750131 -37957,7904:101,-41,90,0,0,0.0750201 -37958,7904:100,-40,90,0,0,0.0750345 -37959,7903:209,-39,90,0,0,0.0750345 -37960,7903:208,-38,90,0,0,0.0750345 -37961,7903:207,-37,90,0,0,0.0750345 -37962,7903:206,-36,90,0,0,0.0750345 -37963,7903:205,-35,90,0,0,0.0750416 -37964,7903:104,-34,90,0,0,0.0750345 -37965,7903:103,-33,90,0,0,0.0750345 -37966,7903:102,-32,90,0,0,0.0750416 -37967,7903:101,-31,90,0,0,0.0750488 -37968,7903:100,-30,90,0,0,0.0750488 -37969,7902:209,-29,90,0,0,0.0750488 -37970,7902:208,-28,90,0,0,0.0750345 -37971,7902:207,-27,90,0,0,0.0750201 -37972,7902:206,-26,90,0,0,0.0761183 -37973,7902:205,-25,90,0,0,0.0756715 -37974,7902:104,-24,90,0,0,0.0789397 -37975,1916:206,166,90,0,0,0.0752487 -37976,1916:207,167,90,0,0,0.075063 -37977,1916:208,168,90,0,0,0.0749846 -37978,1916:209,169,90,0,0,0.074899 -37979,1917:100,170,90,0,0,0.074892 -37980,1917:101,171,90,0,0,0.0748777 -37981,1917:102,172,90,0,0,0.0807894 -37982,1917:103,173,90,0,0,0.0878209 -37983,1917:104,174,90,0,0,0.087558 -37984,1917:205,175,90,0,0,0.0873776 -37985,1917:206,176,90,0,0,0.0863183 -37986,1917:207,177,90,0,0,0.0752844 -37987,1917:208,178,90,0,0,0.0748849 -37988,1917:209,179,90,0,0,0.074949 -37989,1918:100,180,90,0,0,0.0749916 - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/N3hZMGdVTWZWdU51OUtmNGlWNFVMUEVwMFptYVc5MGtHbWJQNStIS0N6Yz0 - The warnings from the underlying MaxEnt model - text/csv - - - http://data-d.d4science.org/K1E3VTZxSGFNMTl1OUtmNGlWNFVMRzVvV05iRzVtNjdHbWJQNStIS0N6Yz0 - ASCII Maps of the environmental layers for checking features aligments - text/csv - - - http://data-d.d4science.org/Y0V2dzVuWkR0WkZ1OUtmNGlWNFVMQnNxOUtEM2ZXODhHbWJQNStIS0N6Yz0 - World Thumbnail - image/png - - - http://data-d.d4science.org/SnNhQnBVSWpDczV1OUtmNGlWNFVMSkhnaEZrall3TWpHbWJQNStIS0N6Yz0 - ROC Curve - image/png - - - http://data-d.d4science.org/MGs1amU2VEVmVTF1OUtmNGlWNFVMSjlTc2xqOUJCVFVHbWJQNStIS0N6Yz0 - Omission-Commission Curve - image/png - - - http://data-d.d4science.org/MGs1amU2VEVmVTF1OUtmNGlWNFVMSGlZK3c0SVVFcjJHbWJQNStIS0N6Yz0 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - text/csv - - - - - - - - diff --git a/test.log.2 b/test.log.2 deleted file mode 100644 index c394b87..0000000 --- a/test.log.2 +++ /dev/null @@ -1,231708 +0,0 @@ -2016-04-26 11:30:19 DEBUG SClient4WPS:858 - WPS SUCCESS -2016-04-26 11:30:19 DEBUG SClient4WPS:883 - ComputationStatus: ComputationStatus [percentage=100.0, status=COMPLETE, endDate=null, message=null, errResource=null] -2016-04-26 11:30:19 DEBUG Log:91 - getResourceByComputationId: ComputationId [id=50e8c29e-0f88-4433-ade0-be309b988429, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=50e8c29e-0f88-4433-ade0-be309b988429] -2016-04-26 11:30:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 11:30:19 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-04-26 11:30:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 11:30:19 DEBUG WPS2SM:314 - Conversion to SM Type->Output id:Best Threshold -2016-04-26 11:30:19 DEBUG WPS2SM:315 - Conversion to SM Type->Title:Best threshold for transforming MaxEnt values into 0/1 probability assignments -2016-04-26 11:30:19 DEBUG WPS2SM:324 - Literal Output -2016-04-26 11:30:19 DEBUG WPS2SM:93 - WPS type: -2016-04-26 11:30:19 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-04-26 11:30:19 DEBUG WPS2SM:101 - Guessed default value: -2016-04-26 11:30:19 DEBUG SClient4WPS:932 - OutputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=Best Threshold, description=Best threshold for transforming MaxEnt values into 0/1 probability assignments, typology=OBJECT] -2016-04-26 11:30:19 DEBUG WPS2SM:314 - Conversion to SM Type->Output id:Estimated Prevalence -2016-04-26 11:30:19 DEBUG WPS2SM:315 - Conversion to SM Type->Title:The a posteriori estimated prevalence of the species -2016-04-26 11:30:19 DEBUG WPS2SM:324 - Literal Output -2016-04-26 11:30:19 DEBUG WPS2SM:93 - WPS type: -2016-04-26 11:30:19 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-04-26 11:30:19 DEBUG WPS2SM:101 - Guessed default value: -2016-04-26 11:30:19 DEBUG SClient4WPS:932 - OutputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=Estimated Prevalence, description=The a posteriori estimated prevalence of the species, typology=OBJECT] -2016-04-26 11:30:19 DEBUG WPS2SM:314 - Conversion to SM Type->Output id:Variables contributions -2016-04-26 11:30:19 DEBUG WPS2SM:315 - Conversion to SM Type->Title:The contribution of each variable to the MaxEnt values estimates -2016-04-26 11:30:19 DEBUG WPS2SM:324 - Literal Output -2016-04-26 11:30:19 DEBUG WPS2SM:93 - WPS type: -2016-04-26 11:30:19 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-04-26 11:30:19 DEBUG WPS2SM:101 - Guessed default value: -2016-04-26 11:30:19 DEBUG SClient4WPS:932 - OutputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=Variables contributions, description=The contribution of each variable to the MaxEnt values estimates, typology=OBJECT] -2016-04-26 11:30:19 DEBUG WPS2SM:314 - Conversion to SM Type->Output id:Variables Permutations Importance -2016-04-26 11:30:19 DEBUG WPS2SM:315 - Conversion to SM Type->Title:The importance of the permutations of the variables during the training -2016-04-26 11:30:19 DEBUG WPS2SM:324 - Literal Output -2016-04-26 11:30:19 DEBUG WPS2SM:93 - WPS type: -2016-04-26 11:30:19 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-04-26 11:30:19 DEBUG WPS2SM:101 - Guessed default value: -2016-04-26 11:30:19 DEBUG SClient4WPS:932 - OutputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=Variables Permutations Importance, description=The importance of the permutations of the variables during the training, typology=OBJECT] -2016-04-26 11:30:19 DEBUG WPS2SM:314 - Conversion to SM Type->Output id:ASCII Maps of the environmental layers for checking features aligments -2016-04-26 11:30:19 DEBUG WPS2SM:315 - Conversion to SM Type->Title:ASCII Maps of the environmental layers for checking features aligments -2016-04-26 11:30:19 DEBUG WPS2SM:331 - Complex Output -2016-04-26 11:30:19 DEBUG WPS2SM:200 - MimeType: application/d4science -2016-04-26 11:30:19 DEBUG WPS2SM:201 - Schema: null -2016-04-26 11:30:19 DEBUG WPS2SM:202 - Encoding: null -2016-04-26 11:30:19 DEBUG SClient4WPS:932 - OutputParameter: FileParameter [mimeType=application/d4science, value=null, name=ASCII Maps of the environmental layers for checking features aligments, description=ASCII Maps of the environmental layers for checking features aligments, typology=FILE] -2016-04-26 11:30:19 DEBUG WPS2SM:314 - Conversion to SM Type->Output id:OutputTable7 -2016-04-26 11:30:19 DEBUG WPS2SM:315 - Conversion to SM Type->Title:Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-04-26 11:30:19 DEBUG WPS2SM:331 - Complex Output -2016-04-26 11:30:19 DEBUG WPS2SM:200 - MimeType: text/csv -2016-04-26 11:30:19 DEBUG WPS2SM:201 - Schema: null -2016-04-26 11:30:19 DEBUG WPS2SM:202 - Encoding: null -2016-04-26 11:30:19 DEBUG SClient4WPS:932 - OutputParameter: TabularParameter [tableName= , templates=[], name=OutputTable7, description=Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding], typology=TABULAR] -2016-04-26 11:30:19 DEBUG WPS2SM:314 - Conversion to SM Type->Output id:non_deterministic_output -2016-04-26 11:30:19 DEBUG WPS2SM:315 - Conversion to SM Type->Title:NonDeterministicOutput -2016-04-26 11:30:19 DEBUG WPS2SM:331 - Complex Output -2016-04-26 11:30:19 DEBUG WPS2SM:200 - MimeType: text/xml; subtype=gml/2.1.2 -2016-04-26 11:30:19 DEBUG WPS2SM:201 - Schema: http://schemas.opengis.net/gml/2.1.2/feature.xsd -2016-04-26 11:30:19 DEBUG WPS2SM:202 - Encoding: null -2016-04-26 11:30:19 DEBUG SClient4WPS:932 - OutputParameter: FileParameter [mimeType=text/xml; subtype=gml/2.1.2, value=null, name=non_deterministic_output, description=NonDeterministicOutput, typology=FILE] -2016-04-26 11:30:19 DEBUG SClient4WPS:419 - RetrieveProcessResult: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=50e8c29e-0f88-4433-ade0-be309b988429 -2016-04-26 11:30:19 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=50e8c29e-0f88-4433-ade0-be309b988429 -2016-04-26 11:30:19 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-04-26 11:30:19 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-04-26 11:30:19 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-04-26 11:30:20 DEBUG SClient4WPS:430 - Response: - - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - - - Process successful - - - - ASCII Maps of the environmental layers for checking features aligments - ASCII Maps of the environmental layers for checking features aligments - - _____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ - - - - - - - -_____________________________________________ ________ _ ____ __ __ ___ __________ _______________________________________________________________________________________________________________________________________________________ ____________ _______ ____ ________ _____ _____________________________________________________________________________________________________ -______________________________________________ __________ _ __ _ __ _____ _ _______ _________________________________________________________________________________________________________________________________________________ ___ _____ ____________________ _________________________________________________________________________________________________________ -_________________________________________ __________ ______ ___ ___ __ ____ _ __________ _______ ____ __ _____________________________________________________________________________________________________________________________ _ ___ ________ ________________________________________________________________________________________________________ -_______________________________ _ _______ _ __ ______________ __ __ ____ _ __ __ __ ________ ______ __ ______ _ _____________________________________________________________________________________________________________________________ _ __ _ ___ ____ _________________________________________________________________________________________________ -________________________________ _ __________ ___________ __ _ __________ ___ ___________________ ___ __________ ______________________________________________________________________________________________________________ _______________ _ _ __ ________________________________________________________________________________________________________ -________________________________ __ __________ _________ ____ _______ __ _____ __ _________________________ _________ __ _____ ___________________________________________________________________________________ ___ _________________ __________________ __ _ _____________________________________________________________________________________________________ -____________________________________________ ____________ _________ _ __ ____________________________ _ ______ ______________________________________________________________________________________________ ___________________ ____________________ __ ___ __ ___________________________________________________________________________________________________ -________________________________________ _ _ _________ _______ ______ _____________ _______________ _________ _____ _ _ _________________________________________________________________________________ __________________ _____________________ ____ _____ ____ ________ ________________________________________________________________________________________ -____________________________________ ____ __ _________ _______ ______ ___________ ___ _______ _______ ___ _ __________________________________________________________________________ _ _________________ ______________________________ __ __________________________________ _____________________________________________________________ -_____________________________________ __ ____________ _____ ______ _ ___________ __ ______ ________ ____ ___ _______________________________________________________________________________________________ ____________________________ __ ________________________________________________________________________________________________ -____________________________________ ___ __________ _ __ _____ _____ ___ ____________ _ _______________ __ _____ __ _________________________________________________________________________ ____________________ __________________________ _ ____________________________ _ _____________________________________________________________ -_____________________________________ __ __ _________ _ __ ______ ________ ____ __________ _ __ _____ ____ ___ ___ _ ___________________________________________________________________ ______________________ ______________________ ____ __________ ___________ _____________________________________________________________ -______________________________________ __ ________ _ __ _ ___ ______ _____ _ ____ ______ _ ______ _ __ _______ ____ _________________________________________________________________ _______________________ ______________________ ___________________ _______________________________________________________________ -_______________________________________ _________ _ ___ ______ _________________________ __________ ____ ____ ___ _ __ _______________________________________________________________ _________________________ ___________________ ________________ ________________________________________________________________ -________________________________________ ___________ _ __ ______ _________ _________________ _____ ___ _____ ___ _________ _ __ __________________________________________________________________________________________ _________________ _______________ _________________________________________________________________ -___________________________________________________ _ _ __ ____________ ____________________________ ____ ______ _ ____ _ ____________________________________________________________________________________________ ____________ ____ __________________________________________________________________________________ -_________________________________________________ ___ _ ___ ____________ ___ ____ _____________________ ___ ___ _ ____________________________________________________________________________________________ ___________________ _________ __________________________________________________________________ -_________________________________________________ __ ___ ___ ___ ____ _______ ______ _ ___ ____ ______________________________________________________________________________________________ ________ ___________ __________________________________________________________________ -________________________________________________ ______________ ___ ___ _______ ___ ______ ___ _____ __ _________________________________________________________________________________________________ _________ __________ ___________________________________________________________________ -__________________________________________________ _ ___________________ _ __ _ __ ___ ___________________ _____ _ _ ________ ____ _ __ ________________________________________________________________________________ __________ ___ ___________________________________________________________________ -_____________________________________________________ _________________ _ ___ ____________________ ____ ___________ _ _ _ ______________________________________________________________________________ ____________ _______________________________________________________________________ -______________________________________________________ ________________ _ __ _ _____________ ______ _____ _ __ _____________ _ _________________________________ __________________________________________________________ ________________________________________________________________________ -________________________________________________________ _____________ ____ _____ __________ ____ __ ________ ________ ______________________________ _______________________________________________________ __ __________________________________________________________________________ -_________________________________________________________ ___ ____________ ________ _______ ______ _ ___________ _ ________________________________ ________________________________________________________ _______________________________________________________________________ -_________________________________________________________________________ __________ ___ _______ ____________ _______________ ___ ______________________ __________________________________________________________ ______________________________________________________________________ -_______________________________________________________________________ _ ________ _ __ _____________________ _ ____________________ __________________________________________________ ___ _______________________________________________________________________ -________________________________________________________________________ _______ _ _ _____________________ ___________________ _ ______________________________________________ ___ _______________________________________________________________________ -_____________________________________________________________________ _ _______ _ ___________________ ________________________ __ ___________________________________________________ ________ _________________________________________________________________________ -_____________________________________________________________________ __________ _ _________________ _______________________ _ ________________________________________________________ __ _____________________________________________________________________________ -_______________________________________________________________ ___ __ ______ _ __ _________________ ___________________________ _ ________________________________________________________ ________________________________________________________________________________ -________________________________________________________________ ________ ___ _____________________ ______________________________ _________________________________________________ ____ _______________________________________________________________________________ -______________________________________________________________ __ __________ _________________________ __________________________________________________________________________________ ____ _____________________________________________________________________________ -_____________________________________________________________ _ _ _______ _ __________________________ __ ___________________________________________________________________________________ ____________________________________________________________________________ -_____________________________________________________________ __________ __ __________________________ _______________________________________________________________________________________ ___________________________________________________________________________ -_____________________________________________________________ ___ __ __ _ __________________________ __________________________________________________________________________________________ ___________________________________________________________________________ -____________________________________________________________ __ _____ _ ___________________________ ________________________________________________________________________________ _______ ____ _________________ __________________________________________________ -__________________________________________________________ _ ___ _ __ ___________________________ ______________________________________________________________________ ___ _ _______________ _______________________________________________ -__________________________________________________________ _ ______ _ ________________________ ________________________________________________________________ ___ __ __ _____________ _____________________________________________ -_________________________________________________________ _______ __ ________________________ __ _________________________________________________________ __ __ _____________ _ __ ___________________________________________ -___________________________________________________________ ___ __________ ________________________ ________________________________________________________ _ __ ______________________ _________________________________________ -____________________________________________________ ___ __ _____________ _______________________ _______________________________________________________ ___ _______________ ________ ________________________________________ -_____________________________________________ ___ ___ ______________ ______________________ __ ___________________________________________________ _________ ________________ __________________________________________________ -___________________________________________ ___ ___ ________________ _ ____________________ ____________________________________________________ ____________ ____ _____________ __________________________________________________ -____________________________________ _____ _____ __________________ ___ ___________________ _____________________________________________________ _____ ___ ________ _ ____________________________________________________ -_________________________ _ _ _ _ ____________ _________________ _ __ ___________________ ____________________________________________________ _____ __ _____ _________________________________________________ -_________________________ __________________ ________________________ ________________________ ____________________________________________________ ______ _ ________________________________________________ -________________________ __________________ ________________________ _________________________ _____________________________________________________ ____________________________________________ -______________________ _____________________ ______________________ _____________________ _ ___________________________________________________ __ _____________________________________________ -_____________________ ______________________ _ ___________________ ____________________ __ _ ____________________________________________________ ____________________________________________ -____________________ _______________________ _____ __________ _____ _________________ __ _____________________________________________________ ____________________________________ ___ -___________________ ________________________________ ______ ____ _________________ _ _________________________________________________ __ ___________________________ ___ -____________________ __________________________________ _____ ______________________ __ ____________________________________________________ _____ _________________________________ -___________________ ____________________________ _____________ _ ____________________ __ ____________________________________________________ _____ ________________________________ -________________ ____________________________ ________________ _ _ _______________ ____________________________________________________ _____ _______________ _________________ -________________ ________________________________________ _ _______ ___ ______________ ______________________________________________________ _____ __ _____ _ ________ -___________________ _____________________________________________________ ___ ______________ _________________________________________________________ ____ ___ _____ -_____________________ ____________________________________ _______________ ___ _________________ __________________________________________________________ ___ __ __ - ________________________ ___________________________________ ___ ____________ ___ __________________ ______________________________________________________________ ___ - ______________________ ___________________________________ ___ _________ ______________________ ____________________________________________________________________ ____ - _ _________ ____________________________________ ______ __ ______________________ ____________________________________________________________________ _____ - __ _____ ____________________________________ _____ _ _ ______________________ _____________________________________________________________________ ______ ____ - ____ _________________________________ ______ ___ _______________________ ___________________________ __________________________________________ _______ ____ - ________ _ ___________________________________ ______ ___________________________ _____________________ ____ ________________________________________ ________ _____ _ - ___ __________ ______ ___________________________________ _________ ___ _______________________ _________________________ __ ____________________________________ ________ ____ _ -_____ ____________________ ___________________________________ _____________________________________ _____________________________ ___________________________________ ___________ ___ ___ -________ _________________ _________________________________ ________ _________________________ ___________________________ ___________________________________ ____ ________ _____ -________________________ _ _ ____________________________ ___________________________________ ______________________________ ___________________________________ _________ _______ -____________ _ _______ __ ________ _________ __________________________ __ _________________________________ ______________________________ _____________________________________ _______ _ _____ -________________________ __ _____________________ ________________________ _____________________________________ ____________________________________ ________________________________________ ________ ___ _____ -_______________________ _ _ ________________________ ________________________ _________ ____________________________ ________________________________________________________________________________ ________ ____ ____ -_______________________ __ ___________________________ _ ________________________ ________ ____________________________ ________________________________________________________________________________ ______________ __ ___ -________________________ __ ______________________________ __ ________________________ ______ ____________________________ _________________________________________________________________________________ _________ _ __ __________ -_________________________ ___ _______________________________ _ ______________________ ____ ____________________________ _ _______________________________________________________________________ ___________ _ ___ _____ ______ __ ____________ -__________________________ _ _______________________________________ _ _ _____________________ ________________________________ _______________________________________________________________________ ___________ _ ___ ___ ____ _______ _____ ______________ -______________________ ______ _________________________________________ _____________ ____ ________________________________ _____________________________________________________________________________________ _____ _________ ____ ______________ ________________ -_______________________________ _ __ _______________________________________ ___________ _____ __________________________________ _______________________________________________________________________________________ _______ ________ __________ _ ___ ______________ ____ __________________ -________________________________ _______ ___ ______________________________________ _ ____________ ________________________________________________________________________________________________________ ________________________ ___ _________ ____________________ __________ _____ _________________________ -________________________________________ __ _________________________________________ ___ __________ _______________________________________________________________________________________________________ ______________________ _____ ____________ _____________________________________ _______________________________ -_______________________________________ ___ ________________________________________________ ______ ____________________________________________________________________________________________________ __ ______________________ ___ ___________ ______________________________________ ________________________________ -_______________________________________ ______________________________________________________ ______ ______________________________________________________________________________________________________ ___________________ __ _______ __ ______________________________________ _________________________________ -_____________________________________ __________________________________________________ ___ ______ ____________________________________________________________________________________________________ ___________________ _ _________ _____________________________________ ________________________________ -____________________________________ ___________________________________________________ ______ ______ ____________________________________________________________________________________________________ _____________________ __ ________ ________________________________________ ________________________________ -__________________________________ _ ______________________________________________________ _____ ____ _____________________________________________________________________________________________________ _____________________ _____ __ ____ _________________________________ ________________________________ -________________________________ __________________________________________________________ _______ ______ _________________________________________________________________________________________________ ____________________ _ ____________________________________ ________________________________ -_______________________________ ____________________________________________________________________ ______ __________________________________________________________________________________________________ ____________________ ___ _ _____________________________ __________________________________ -____________________________ _______________________________________________________________________ ______ ____________________________________________________________________________________________ _ _ _______________ _ _ ____ ________________________ ___________________________________ -_______________________________________________________________________________________________________ ____ __________________________________________________________________________________________ ____ ____________ ____________________________ _______ __________________________ -________________________________________________________________________________________________________ __ ______________________________________________________________________________________ ______ _________ _ ________________________ _____________ _______________________ -________________________ _____________________________________________________________________________ ______________________________________________________________________________________ ___ _ _ ______ _ ________________________ _______________________________________ -_______________________________________________________________________________________________________ _ ________________________________________________________________________________________ ___ _____ _ ________________________ ______________________________________ -_________________________________________________________________________________________________________ __ ________________________________________________________________________________________ ____ ____ __ ________________________ _________________________________________ -______________ ____________________________________________________________________________________________ __ _________________________________________________________________________________________ ____ ____ __ _________________________ _________________________________________ -_____________________________________________________________________________________________________________ _ ____ _______________________________________________________________________________________ ___________ __ ___ _________________________ __________________________________________ -_______________________________________________________________________________________________________________ _ _________ _____ ___________________________________________________________________________________________________ _____ ___ _________________________ ____________________________________________ -______________________________________________________________________________________________________________ ________ __________ __________________________________________________________________________________________________ _ _________ ___ _______________________ ______________________________________________ -_______________________________________________________________________________________________________________ ___ ____ _______ ________________________________________________________________________________________________________ ___ __ ___ _____________________________________________________________________ -_______________________________________________________________________________________________________________ __ ___________ ____________________________________________________________________________________________________ ______ ___ ________________________________________________________________________ -_______________________________________________________________________________________________________________ _____________ _________________________________________________________________________________________________ ___ ______ _____ _________________________________________________________________________ -________________________________________________________________________________________________________________ ___________ _______________________________________________________________________________________________ _______ ____ ______ _________________________________________________________________________ -________________________________________________________________________________________________________________ __________________ _________________________________________________________________________________________________ ________ ________ _______ ________________________________________________________________________ -________________________________________________________________________________________________________________ _ ______ _____________ __________________________________________________________________________________________________ ________ ___________ _______ ________________________________________________________________________ -________________________________________________________________________________________________________________ _ __ _____________ ____________________________________________________________________________________________________ _ ______________________ ________ __ _______________________________________________________________________ -________________________________________________________________________________________________________________ ____ ___________________________________________________________________________________________________________________ ___ _ _______________________ ____________________________________________________________________________________ -________________________________________________________________________________________________________________ ___ ______________________________________________________________________________________________________________________ _____ __________________________ __________ ______________ ___________________________________________________________ -________________________________________________________________________________________________________________ ___ _________________________________________________________________________________________________________________________ ______ ___________________________ ___________ _________ _______________________________________________________________ -_______________________________________________________________________________________________________________ ______ ____________________________________________________________________________________________________________________________ ____ ______ ____________________________ ____________ ________________________________________________________________________ -_______________________________________________________________________________________________________________ _________ _____________________________________________________________________________________________________________________________ _______ ________ ____________________________ _ _____________ _ ___________________________________________________________________ -_______________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________ ___________ ____ ________ _________ _________ __________ ___ _______________ _____________________________________________________________________ -________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________ ____________ ____ _________ _______ __ ____________________ _______________________________________________________________________ -________________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________ ___________ _____ _______ _ _____________________ ____ _________________________________________________________________________ -________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________ ____________________ _____ ___ ___ __ _____________________ ______________________________________________________________________________ -________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________ ______________ __________ __ ________ ____ ______________________ _____________________________________________________________________________ -_________________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________ _______________ ____________ ______ _______ _____ ___ _________________________ ____________________________________________________________________________ -_________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ _____ __________ ____________ ______ ______ _ ________ ______ _________________________ ____________________________________________________________________________ -_________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________ ______ __________ _____________ _______ ______ _______________ ________________________ ____________________________________________________________________________ -__________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________ _______________________________ _______ _ _____ ____________ _______________________ _____________________________________________________________________________ -___________________________________________________________________________________________________________________ _ ____________________________________________________________________________________________ ______________________________________ __________________________ ____________ ________ ___ __________ _____________________ ______________________________________________________________________________ -____________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________ ____________________________ _____________ _____ ___ _ _________ ___________________ ______________________________________________________________________________ -_____________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________ ________________ _ __ _ _______ ______________ ____________ ___ ___ ___________ _________________ ______________________________________________________________________________ -_____________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ ____________ __________________________________ ________________ _____________ ______________ _______________________________________________________________________________ -______________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________ ______________________________________________ ____ ______________ _____________ ______________________________________________________________________________ -_______________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________________ _______ ___________________________ ______________ _____ ______________ _______ _ _______________________________________________________________________________ -_______________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ __________________________________________________ _____________ _________ ___ __ ___________________________________________________________________________________ -________________________________________________________________________________________________________________________ ___ ______________________________________________________________________________________________________________________________________________ ___________________________________________________ __________________________ _ _______________________________________________________________________________________ -_____________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________________________ ________________________________________________ __________ ______ _ _ ___________________________________________________________________________________________ -______________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ _ _______________ ________________________ _______________ __ _ ______________________________________________________________________________________________ -_______________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________ _________ _____________________ _ __________________ _________________________________________________________________________________________________ -_______________________________________________________________________________________________________________________________ _ _______________________________________________________________________________________________________________________________________________ _________ ________ _____ __________________ _________________________________________________________________________________________________ -________________________________________________________________________________________________________________________________ ___ ______________________________________________________________________________________________________________________________________________ _____ _ ____________________________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________________ ____ ________ _______________________________________________________________________________________________________________________________________________ ___ _____________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________ ___ _______ ____________ ______________________________________________________________________________________________________________________________________________ _____ ____________________________________________________________________________________________________________________ -____________________________________________________________________________________________________________________________________ __ _________________________ _____________________________________________________________________________________________________________________________________ ______ _ _____ _____________________________________________________________________________________________________________________ -____________________________________________________________________________________________________________________________________ ___ ____________________________ _______________________________________________________________________________________________________________________________ __________ _ _ ______ _______________ _____________________________________________________________________________________________________ -___________________________________________________________________________________________________________________________________ ___ _____________________________ ______________________________________________________________________________________________________________________________________ ____ _______ _______________________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________ ____ ______________________________ _____ _______________________________________________________________________________________________________________________________ ____ _______ ___ ________________________________________________________________________________________________________________________ -________________________________________________________________________________________________________________________________________ ____ _______________________________ ___________________________________________________________________________________________________________________________________ _____ ____________ _ ________________ ________________________________________________________________________________________________________ -________________________________________________________________________________________________________________________________________ ____ ________________________________ ___________________________________________________________________________________________________________________________________ _____ _ ________ _____ _________________________________________________________________________________________________________________________ -________________________________________________________________________________________________________________________________________ _____ _______________________________________ _____________________________________________________________________________________________________________________________ ____ _______ ____________________ ____ ____________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________ ______ ____________________________________________________________________________________________________________________________________________________________________ _____ ____ _____________________ _____ ____ ________________________________________________________________________________________________________________ -____________________________________________________________________________________________________________________________________________ _____ ___________________________________________ _______________________________________________________________________________________________________________________ ______ ____________________ ______ _____________________________________________________________________________________________________________________ -____________________________________________________________________________________________________________________________________________________ ____________________________ ______________________________________________________________________________________________________________________________ ______ ___________________ ________ ______________________________________________________________________________________________________________________ -_________________________________________ ___________________________________________________________________________________________________________ ___________________________ ____ __________________________________________________________________________________________________________________________ ____ __________________ ___ ______________ ______________________________________________________________________________________________________________________ -____________________________________________ _________________________________________________________________________________________________________ _________________ _______ ________ _______________________________________________________________________________________________________________________ ____ ____________________ _ __________ ____ _________________________________________________________________________________________________________________________________________ -_______________________________________________ ______________________________________________________________________________________________________ ______________ _________________ ______________________________________________________________________________________________________________________ _____ ________________________ ____ ___________ _____ ___________________________________________________________________________________________________________________________________________ -_________________________________________________ ___________________________________________________________________________________________________ _____________ ___________________ ____________________________________________________________________________________________________________________ _______ _____________________________ _____________ _______ ___________________________________________________________________________________________________________________________________________ -_________________________________________________ ___________________________________________________________________________________________________ ___________ ______________________________ __________________________________________________________________________________________________________ _______ ______________________________ _________________ ______ ___________________________________________________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________________________________________ ___ ____________________ ______ _ __ __ ________________________________________________________________________________________________ _______ _________________________________ _____________________ ______ _____________________ _ ___________________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________ _________________________________ ______________________________________________________________________________________________________________ _______ ___________________________________ ______________________ ____________________________ ____________________________________________________________________________________________________________________ -________________________________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________ _________________ ____ __ _ ____________________________________ _ ________________________ _ ___________________________ ___________________________________________________________________________________________________________________ -____________________________________________________________________________________________________________________________________________________________________ ______________________________________________________ _________________________________________________________________________________________ ________ _________________________________________ _ _________________________ ___ _________________________ ____________________________________________________________________________________________________________________ -______________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________________ ______ __________________________________________ __ ___________________________________ _______________________ _____________________________________________________________________________________________________________________ -________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________ ______________________________________________________________________________________ _____ ______________________________________________ __ ____________________________________ ______________________ _____________________________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________ ___ ________________________________________________ ___ ____________________________________ _______________________ __________________________________________________________________________________________________________________ -______________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________ __ ______________________________________________________ ___ ____________________________________ __ ______________________ ___ __________________________________________ ______________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________ ___________________________ __________________________________________________________________________________________________________ __ _________________________________________________________ ____ _________________________ ___________ __ _______________________ _____ _______________________________________________________________________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________ _______________________ __ ___________________________________________________________________________________________________________ _______________ ____________________________________________ _____ _________________________ ___________ ______ ______________________ ______ _ _____________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________ ___________________ __ _________________________________________________________________________________________________________ _________ ____________________________________________ ______ _____________________________________ _______ ___________________________ ___ __________________________________________________________________________________ _____ ____________________ -_____________________________________________________________________________________________________________________________________________________________________________________________ _______________ _____ ___ ____________________________________________________________________________________________ _ ___________________________________________ ______ _____________________________________ __________ _______________________ ______ _ _ ____________________________________________________________________________________________________________ -_______________________________________________________________________________________________________________________________________________________________________________________________ ______________ _______________________________________________________________________________________________ ____________________________________________ _______ _ ____________________________________ ____________ ________________________ _______ _ _______________________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________ ___ _ ___ ______________________________________________________________________________________________ _____________________________________________ _______ ___ ___________________________________ __________ ________________________ ______________ _______________________________________________ ______________________________ ___ ________________________ -____________________________________________________________________________________________________________________________________________________________________________________________________ ____ ____________________________________________________________________________________________ ______________________________________________ ________ ____ __________________________________ _________________________________ ___________ ___________________________________________________________________________________________________________ -_______________________________________________________________________________________________________________________________________________________________________________________________________ ____ ____________________________________________________________________________________________ _______________________________________________ ______________ ___________________________________ ___________________________________________ ___ ____________________________________ _____________ ______ __________________________ ______________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________ ________________________________________________ ______________ ____________________________________ ______________________________ _____________ _ ___________________________________________________________________________________________________________ -______________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________ __________ ________________________________________________ _______________________________________________________ ___________________________ _____________ __ __________________________________________________________________________________________________________ -______________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________ _______ ______________ _________________________________________________ _____________________________________________ _____ ________________________ __________________________________________________________________________________________________________________________ -______________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________________________ ___________________________________________________ ______________________________________________ ____ _____________________ _________________ __________________________________________________________________________________________________________ -______________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________ _ ____________________________________________________ ________________________________________________ ____ ____________________ _____________________________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________ _____________________________________________________ _________________________________________________ ___ ________________ ____________________________________________________________________________________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________________________ _______________________________________________________ ___________________________________________________ __ ______________ ___________________ ________________________________________________________________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________ __________________________________________________________ ________________________________________________ ___ _____________ _____ ______ _____ _______________________________________________________________________________________________________ -________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________ ___________________________________________________________ ____________________________________________________ ___________ _____ ______ _______________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________ _____________________ ____________________________________________________________________________________________________________________ _____________________________________________________________ ______________________________________________________ ___________ ____________________ _____ _________________________________________________________________________________________________ -_______________________________________________________________________________________________________________________________________________________________________________________________________ _ _______________________________________________________________________________________________________________ ______________________________________________________________ ___________________________________________________ ___ ___________ _____ __ ______________ ____________________________________________________________________________________________ -_______________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________ _______________________________________________________________ ____________________________________________________ __ __ ________ ______ _____ ________ ___ ____ __ ___________________________________________________________________________________ -_______________________________________________________________________________________________________________________________________________________________________________________________________ _ __________________________________________________________________________________________________________ _________________________________________________________________ ________________________________________________________ ___ ___ _____ ______________________ ____ ___________________ ___________________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________ __________________________________________________________________ _________________________________________________________ ____________ _ _____ _ _______ __ ____ _ __________________ ________________________________________________________ -_______________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________ ___________________________________________________________________ ___________________________________________________________ _________________ _________ __ _____________________ __ ________________ ______________________________________________________ -______________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________ ____________________________________________________________________ _____________________________________________________________ ___________________________ __ ___________________________ ____________ _______________________________________________________ -_______________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________ ____________________________________________________________________ __________________________________________________________ ___ ___________________________ ____ ______________________________ _________ _____ __________________________________________________ -_______________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________ ___________________________________________________________________ _________________________________________________________________ _____________________________________________________ ________ ____ _________ _________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________ ___________________________________________________________________ __________________________________________________________________ _________________________________________________ ___________________ ______________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________ __________________________________________________________________ __________________________________________________________________________ ______________________ _______ __ _____________ ___ ______________________ _________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________________________________________________________________________ ___________________________________________________________________ _____________________________________________________________________________________ _____ ___________________________ ______ ________________________ ______________________________________ -____________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________________________________________________________________________ _____________ _____________________________________________________ ____________________________________________________________________________________________ ________ ____________________________________________ __ _________________ _ _____________________________________ -____________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________ __________________________________________________________________ ______________________________________________________________________________________________ _____ ___________________________________ ____________ ___________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ _________________________________________________________________ __________________________________________________________________________________________________________________________________________ ___________________________________________________________________________ -______________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________ _____ ___________________________________________________________ __________________________________________________________________________________________________________________ __ __________________ __________________________________ _______________________________________ -_______________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________ _________________ _______________________________________________ ____________________________________________________________________________________________________________________ _ _________ __________________________________________________________________________ -________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________ _________________ ______________________________________________ __________________________________________________________________________________________________________________ __________ _________________________________________________________________________ -_________________ ______________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________ _______________ ______________________________________________ __________________________________________________________________________________________________________________ _ _________ _________________________________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________ _____________ ______________________________________________ ________________________________________________________________________________________________________ ___ ____________ ______________________________________________________________________ -_________________________________________________________________ ________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ _____________ _____________________________________________ _______________________________________________________________________________________________________ ___________ __________________________________________ __________________________ -___________________________________________________________________________ ________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ __________ _______________________________________________ _______________________________________________________________________________________________________ _________ ___________________________________________ _________________________ -_ _______________________________________________________ ______________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ __________ ______________________________________________ ___________________________________________________________________________________________________ _ _____ _____________________________________________ ____________________ _ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________ _____________ _______________________________________________ __________________________________________________________________________________________________ ___ ________________________________________________________________ ___ -___________________________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________ ______________ _______________________________________________ __________________________________________________________________________________________________ _______________________________________________________________ ___ -____________________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________ _________________ ________________________________________________ _________________________________________________________________________________________________ _____________________________________________ _________________ ___ -____________________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________ __________________ ________________________________________________ ________________________________________________________________________________________________ _________________________________________________________________ -____________________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________ __________________ _________________________________________________ __________________________________________________________________________________________ ______________________________ _______________________________ -____________________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________ __________________ ______________ __________________________________ ______________________________________________________________________________________ ________________________________ _____________________________ -____________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________ ________________ __________________________________________________ ___________________________________________________________________________________ _________________________________ ___________________________ -____________________________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________________________________________________________________________________________ ________________ __________________________________________________ _________________________________________________________________________________ _______________________________ __________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________ ________________ ___________________________________________________ __________________________________________________________________________________ __________________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________ ________________ ___________________________________________________ _________________________________________________________________________________ _________________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________ __________________ ____________________________________________________ _________________________________________________________________________________ _______________________________________________________ -____________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________ ________________________ ______________________________________________________ __________________________________________________________________________________ _____________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________ _________________________________________________________________________________ ________________________________________________________________________________ _ ______________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________ ________________________________________________________________________________ _________________________________________________________________________________ ______________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________________________________ _________________________________________________________________________________ __________________________________________________________________________________ ______________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________________________________ _________________________________________________________________________________ __________________________________________________________________________________ _____________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________ __________________________________________________________________________________ ___________________________________________________________________________________ _____________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________ ___________________________________________________________________________________ ____________________________________________________________________________________ _____________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________ ____________________________________________________________________________________ ____________________________________________________________________________________ ______________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________________ _____________________________________________________________________________________ ____________________________________________________________________________________ ______________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________ _____________________________________________________________________________________ ______________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________ _____________________________________________________________________________________ ___________ _______________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________ _____________________________________________________________________________________ __________________ ________________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________ _____________________________________________________________________________________ ______________________ _ _________________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________________________________________________ _ _ ________________________________________________________________________________________________ ____________________________________________________________________________________ _______________________________ __ __________________________________________________________ -________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___ ___________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________ ______________________________________________________________________________________ __________________________________ ___ _ __________________________________________________________ -________________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________ _____________________________________________ ____________ -_______________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________ ____ _______________________________________________ ___________ -_______________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________ _________________________________________________ __________ -______________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________ _________________________________________________ ________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________________ ___________________________________________________ ___ ___ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________________ ______________________________________________________ ___ -______________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________________ ________________________________________________________ ____ -______________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________________________________________________________________________ ______ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________ _____________________________________________________ ______ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________________________________________________________________________________ ____ _______ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________ ___ ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________________________ _______________________________________________ _ ________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________ _ ____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________________________________________________ ______________________________________________ ____________ -____________________________________________________________________________________________________________________________________________________________________________________________________________________ __ _________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________________________________________________ ______________________________________________ _____________ -____________________________________________________________________________________________________________________________________________________________________________________________________________________ __ ___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________________________ ______________________________________________ ______________ -______________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________________________ _____________________________________________ ______________ -______________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________________________________________________________________________ _________________ -____________________________________________________________________________________________________________________________________________________________________________________________________________________ _ _____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________________________________________________________ __________________ -____________________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________________________________________________________ __________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________________________________________________________________ ___________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________________________________________________________ ____________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________________ _ ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -____________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _____ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________ _________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________ ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -______________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -______________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________ ____________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________ __________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _ _________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _ _ _ ___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ -________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________________________ ___________________________________________________________________________________________________________________________________________________________________ -________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________ ______________________________________________________________________ __________________________________________________________________________________________ -________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________ ___ __ _____________________________________________________________ __________________________________________________________________________________________ -____________________________________________________________________________________________________________________________________________________________________________________________________________________________________ __ __________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _____________________________________________ _________________ __________________________________________ __________________________________________________________________________________________ -______________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________ ___________________________ ______________ _____________ ________________________________________ _________________________________________________________________________________________ -____________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________ _________________ __ _ ____________ _______ __ _____________ _______ ____________________________________________________________________________________ -________________________________________________________________________________________________________________________________________________________________________________________________________________________________ __ _____________________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________ _________________ __ ________ ___ _______________________________________________________________________________ -_______________________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________________________________________________________________________________________ __ _______________________________ ___________________ ________________________________________________________________________ -_______________________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________ __________________ ______________________________________ ______________________________ -______________________________________________________________________________________________________________________________________________________________________________________________________________________________ _ ______________________________________________________________________________________________________________________________________________________________________________________________________________________ __ _ _________________ _________________ _____________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________________________________________________________________________________ _______ ________________ __________________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________________________________________________________________________ _______ ____________ _______________________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________________________________________________________________________________ ______ __________ _______ ____________________________________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ____________________________________________________________________________________________________________________________________________________________________________________________ ___________ ___ __________ __________________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________________________ ______ _____________________________________________________________________________________________________________________________________________________________________________________________ _________ _ __________ _________________________________________________ -________________________________________________________________________________________________________________________________________________________________________________________________________________________ ____ ______________________________________________________________________________________________________________________________________________________________________________________ _______ ________ _____________________________________________ -________________________________________________________________________________________________________________________________________________________________________________________________________________________ _ ______________________________________________________________________________________________________________________________________________________ ____________________________ _ ___ _____ __________________________________________ -_______________________________________________________________________________________________________________________________________________________________________________________________________________________ _ _____________________________________________________________________________________________________________________________________________________ _____________________ ________________________________________ -_________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________________________________ _________ __ __________ _______________________________________ -___________________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________________________ __________________________________ -____________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ _ _ _____________________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________ ______________________________________________________________________________________________________ ________________________ -_______________________________________________________________________________________________________________________________________________________________________________________________________________ ____ __________________________________________________________________________________________________ ________________________ -_____________________________________________________________________________________________________________________________________________________________________________________________________________________ _______________________________________________________________________________________________ ______________________ -__________________________________________________________________________________________________________________________________________________________________________________________________________________ ________________________________________________________________________________________________ __________________ -__________________________________________________________________________________________________________________________________________________________________ _______________________________________________ _______________________________________________________________________________________________ __________________ -____________________________________________________________________________________________________________________________________________________________ ___________________________________________ _______________________________________________________________________________________________ ____________________ -_________________________________________________________________________________________________________________________________________________________ _ _____________________________________________ ___________________________________________________________________________________________ ____________________ -__________________________________________________________________________________________________________________________________________________________ _________________________________ _________ _________________________________________________________________________________________ ___________________ -__________________________________________________________________________________________________________________________________________________________ ___________________ _______ _______________________________________________________________________________________ ____________________ -_________________________________________________________________________________________________________________________________________________________ _______________ ___ _________________________________________________________________________________ _____________________ -__________________________________________________________________________________________________________________________________________________________ __________ _________________________________________________________________________________ _____________________ -__________________________________________________________________________________________________________ _______________________________ ______________ ______ ___________________________________________________________________________________ _ ____________________ -__________________________________________________________________________________________________________ _____________________________ ___________ ____ __________________________________________________________________________________ __ _______________________ -__________________________________________________________________________________________________________ _________________ __________ ____ _________________________________________________________________________________ ____________________________ -_________________________________________________________________________________________________________ __ _ ________ ___________ __________________________________________________________________________________ ____________________________ -_________________________________________________________________________________________________ _ ____ _________ __________________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ -_____________________________________________________________________________________________ ____ ________ ____________________________________________________________________________ ______________________________ - - - - OutputTable7 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - id,csquarecode,x,y,z,time,fvalue -1,5918:100:1,-180,-90,0,0,-0.00546026 -2,5917:209:2,-179.5,-90,0,0,-0.00546392 -3,5917:209:1,-179,-90,0,0,-0.00546511 -4,5917:208:2,-178.5,-90,0,0,-0.00546392 -5,5917:208:1,-178,-90,0,0,-0.00546511 -6,5917:207:2,-177.5,-90,0,0,-0.00546633 -7,5917:207:1,-177,-90,0,0,-0.00546878 -8,5917:206:2,-176.5,-90,0,0,-0.00547 -9,5917:206:1,-176,-90,0,0,-0.00547 -10,5917:205:2,-175.5,-90,0,0,-0.00547119 -11,5917:205:1,-175,-90,0,0,-0.00547119 -12,5917:104:2,-174.5,-90,0,0,-0.00547241 -13,5917:104:1,-174,-90,0,0,-0.00547364 -14,5917:103:2,-173.5,-90,0,0,-0.00547364 -15,5917:103:1,-173,-90,0,0,-0.00547486 -16,5917:102:2,-172.5,-90,0,0,-0.00547486 -17,5917:102:1,-172,-90,0,0,-0.00547605 -18,5917:101:2,-171.5,-90,0,0,-0.00547605 -19,5917:101:1,-171,-90,0,0,-0.00547605 -20,5917:100:2,-170.5,-90,0,0,-0.00547727 -21,5917:100:1,-170,-90,0,0,-0.00547727 -22,5916:209:2,-169.5,-90,0,0,-0.0054785 -23,5916:209:1,-169,-90,0,0,-0.0054785 -24,5916:208:2,-168.5,-90,0,0,-0.0054785 -25,5916:208:1,-168,-90,0,0,-0.00547972 -26,5916:207:2,-167.5,-90,0,0,-0.00547972 -27,5916:207:1,-167,-90,0,0,-0.00548091 -28,5916:206:2,-166.5,-90,0,0,-0.00548091 -29,5916:206:1,-166,-90,0,0,-0.00547972 -30,5916:205:2,-165.5,-90,0,0,-0.00547972 -31,5916:205:1,-165,-90,0,0,-0.00547972 -32,5916:104:2,-164.5,-90,0,0,-0.00547972 -33,5916:104:1,-164,-90,0,0,-0.00547972 -34,5916:103:2,-163.5,-90,0,0,-0.00547972 -35,5916:103:1,-163,-90,0,0,-0.00548091 -36,5916:102:2,-162.5,-90,0,0,-0.00548091 -37,5916:102:1,-162,-90,0,0,-0.00548091 -38,5916:101:2,-161.5,-90,0,0,-0.00548091 -39,5916:101:1,-161,-90,0,0,-0.00548214 -40,5916:100:2,-160.5,-90,0,0,-0.00548337 -41,5916:100:1,-160,-90,0,0,-0.00548459 -42,5915:209:2,-159.5,-90,0,0,-0.00548582 -43,5915:209:1,-159,-90,0,0,-0.00548582 -44,5915:208:2,-158.5,-90,0,0,-0.00548701 -45,5915:208:1,-158,-90,0,0,-0.00548824 -46,5915:207:2,-157.5,-90,0,0,-0.00548824 -47,5915:207:1,-157,-90,0,0,-0.00548701 -48,5915:206:2,-156.5,-90,0,0,-0.00548701 -49,5915:206:1,-156,-90,0,0,-0.00548824 -50,5915:205:2,-155.5,-90,0,0,-0.00548947 -51,5915:205:1,-155,-90,0,0,-0.00548947 -52,5915:104:2,-154.5,-90,0,0,-0.00548701 -53,5915:104:1,-154,-90,0,0,-0.00548701 -54,5915:103:2,-153.5,-90,0,0,-0.00548824 -55,5915:103:1,-153,-90,0,0,-0.00548947 -56,5915:102:2,-152.5,-90,0,0,-0.00548947 -57,5915:102:1,-152,-90,0,0,-0.00548824 -58,5915:101:2,-151.5,-90,0,0,-0.00548582 -59,5915:101:1,-151,-90,0,0,-0.00548582 -60,5915:100:2,-150.5,-90,0,0,-0.00548582 -61,5915:100:1,-150,-90,0,0,-0.00548582 -62,5914:209:2,-149.5,-90,0,0,-0.00548582 -63,5914:209:1,-149,-90,0,0,-0.00548459 -64,5914:208:2,-148.5,-90,0,0,-0.00548459 -65,5914:208:1,-148,-90,0,0,-0.00548459 -66,5914:207:2,-147.5,-90,0,0,-0.00548459 -67,5914:207:1,-147,-90,0,0,-0.00548337 -68,5914:206:2,-146.5,-90,0,0,-0.00548337 -69,5914:206:1,-146,-90,0,0,-0.00548214 -70,5914:205:2,-145.5,-90,0,0,-0.00548214 -71,5914:205:1,-145,-90,0,0,-0.00548214 -72,5914:104:2,-144.5,-90,0,0,-0.00548091 -73,5914:104:1,-144,-90,0,0,-0.00548091 -74,5914:103:2,-143.5,-90,0,0,-0.00548091 -75,5914:103:1,-143,-90,0,0,-0.00548214 -76,5914:102:2,-142.5,-90,0,0,-0.00548214 -77,5914:102:1,-142,-90,0,0,-0.00548091 -78,5914:101:2,-141.5,-90,0,0,-0.00547972 -79,5914:101:1,-141,-90,0,0,-0.00548091 -80,5914:100:2,-140.5,-90,0,0,-0.00548091 -81,5914:100:1,-140,-90,0,0,-0.00548214 -82,5913:209:2,-139.5,-90,0,0,-0.00548214 -83,5913:209:1,-139,-90,0,0,-0.00548214 -84,5913:208:2,-138.5,-90,0,0,-0.00548214 -85,5913:208:1,-138,-90,0,0,-0.00548337 -86,5913:207:2,-137.5,-90,0,0,-0.00548947 -87,5913:207:1,-137,-90,0,0,-0.00550777 -88,5913:206:2,-136.5,-90,0,0,-0.005536 -89,5913:206:1,-136,-90,0,0,-0.00560158 -90,5913:205:2,-135.5,-90,0,0,-0.00584441 -91,5913:205:1,-135,-90,0,0,-0.00592286 -92,5913:104:2,-134.5,-90,0,0,-0.00591106 -93,5913:104:1,-134,-90,0,0,-0.00596912 -94,5911:100:1,-110,-90,0,0,-0.00698226 -95,5910:209:2,-109.5,-90,0,0,-0.00750095 -96,5910:209:1,-109,-90,0,0,-0.00796395 -97,5910:208:2,-108.5,-90,0,0,-0.00791092 -98,5910:206:1,-106,-90,0,0,-0.005619 -99,5910:205:2,-105.5,-90,0,0,-0.00555077 -100,5910:205:1,-105,-90,0,0,-0.00552617 -101,5910:104:2,-104.5,-90,0,0,-0.0055446 -102,5910:104:1,-104,-90,0,0,-0.00578243 -103,5910:103:2,-103.5,-90,0,0,-0.00623081 -104,5910:103:1,-103,-90,0,0,-0.0065446 -105,5910:102:2,-102.5,-90,0,0,-0.00661925 -106,5906:101:2,-61.5,-90,0,0,-0.00552861 -107,5906:101:1,-61,-90,0,0,-0.00552127 -108,5906:100:2,-60.5,-90,0,0,-0.00550288 -109,5906:100:1,-60,-90,0,0,-0.00548947 -110,5905:209:2,-59.5,-90,0,0,-0.0054785 -111,5905:209:1,-59,-90,0,0,-0.00546511 -112,5905:208:2,-58.5,-90,0,0,-0.00545541 -113,5905:208:1,-58,-90,0,0,-0.005453 -114,5905:207:2,-57.5,-90,0,0,-0.00545179 -115,5905:207:1,-57,-90,0,0,-0.00545057 -116,5905:206:2,-56.5,-90,0,0,-0.00544935 -117,5905:206:1,-56,-90,0,0,-0.00544935 -118,5905:205:2,-55.5,-90,0,0,-0.00544935 -119,5905:205:1,-55,-90,0,0,-0.00545057 -120,5905:104:2,-54.5,-90,0,0,-0.00545057 -121,5905:104:1,-54,-90,0,0,-0.00545057 -122,5905:103:2,-53.5,-90,0,0,-0.00545057 -123,5905:103:1,-53,-90,0,0,-0.00545179 -124,5905:102:2,-52.5,-90,0,0,-0.005453 -125,5905:102:1,-52,-90,0,0,-0.00545423 -126,5905:101:2,-51.5,-90,0,0,-0.00545423 -127,5905:101:1,-51,-90,0,0,-0.00545541 -128,5905:100:2,-50.5,-90,0,0,-0.00545541 -129,5905:100:1,-50,-90,0,0,-0.00545541 -130,5904:209:2,-49.5,-90,0,0,-0.00545541 -131,5904:209:1,-49,-90,0,0,-0.00545541 -132,5904:208:2,-48.5,-90,0,0,-0.00545423 -133,5904:208:1,-48,-90,0,0,-0.005453 -134,5904:207:2,-47.5,-90,0,0,-0.005453 -135,5904:207:1,-47,-90,0,0,-0.00545663 -136,5904:206:2,-46.5,-90,0,0,-0.00545907 -137,5904:206:1,-46,-90,0,0,-0.00546148 -138,5904:205:2,-45.5,-90,0,0,-0.00546392 -139,5904:205:1,-45,-90,0,0,-0.00546633 -140,5904:104:2,-44.5,-90,0,0,-0.00546511 -141,5904:104:1,-44,-90,0,0,-0.00546511 -142,5904:103:2,-43.5,-90,0,0,-0.00546511 -143,5904:103:1,-43,-90,0,0,-0.00546511 -144,5904:102:2,-42.5,-90,0,0,-0.00546392 -145,5904:102:1,-42,-90,0,0,-0.00546392 -146,5904:101:2,-41.5,-90,0,0,-0.00546511 -147,5904:101:1,-41,-90,0,0,-0.00546511 -148,5904:100:2,-40.5,-90,0,0,-0.00546633 -149,5904:100:1,-40,-90,0,0,-0.00546755 -150,5903:209:2,-39.5,-90,0,0,-0.00546755 -151,5903:209:1,-39,-90,0,0,-0.00546755 -152,5903:208:2,-38.5,-90,0,0,-0.00546755 -153,5903:208:1,-38,-90,0,0,-0.00546755 -154,5903:207:2,-37.5,-90,0,0,-0.00546878 -155,5903:207:1,-37,-90,0,0,-0.00546755 -156,5903:206:2,-36.5,-90,0,0,-0.00546755 -157,5903:206:1,-36,-90,0,0,-0.00546755 -158,5903:205:2,-35.5,-90,0,0,-0.00546755 -159,5903:205:1,-35,-90,0,0,-0.00546878 -160,5903:104:2,-34.5,-90,0,0,-0.00546878 -161,5903:104:1,-34,-90,0,0,-0.00546755 -162,5903:103:2,-33.5,-90,0,0,-0.00546755 -163,5903:103:1,-33,-90,0,0,-0.00546755 -164,5903:102:2,-32.5,-90,0,0,-0.00546878 -165,5903:102:1,-32,-90,0,0,-0.00546878 -166,5903:101:2,-31.5,-90,0,0,-0.00546878 -167,5903:101:1,-31,-90,0,0,-0.00547 -168,5903:100:2,-30.5,-90,0,0,-0.00546878 -169,5903:100:1,-30,-90,0,0,-0.00547 -170,5902:209:2,-29.5,-90,0,0,-0.00547119 -171,5902:209:1,-29,-90,0,0,-0.00547 -172,5902:208:2,-28.5,-90,0,0,-0.00546878 -173,5902:208:1,-28,-90,0,0,-0.00546755 -174,5902:207:2,-27.5,-90,0,0,-0.00546633 -175,5902:207:1,-27,-90,0,0,-0.00546511 -176,5902:206:2,-26.5,-90,0,0,-0.00553848 -177,5902:206:1,-26,-90,0,0,-0.00565409 -178,5902:205:2,-25.5,-90,0,0,-0.00561402 -179,5902:205:1,-25,-90,0,0,-0.00557672 -180,5902:104:2,-24.5,-90,0,0,-0.00581851 -181,5902:104:1,-24,-90,0,0,-0.00615781 -182,3916:205:2,165.5,-90,0,0,-0.0055225 -183,3916:206:1,166,-90,0,0,-0.00550411 -184,3916:206:2,166.5,-90,0,0,-0.00548091 -185,3916:207:1,167,-90,0,0,-0.00547241 -186,3916:207:2,167.5,-90,0,0,-0.00546633 -187,3916:208:1,168,-90,0,0,-0.00545907 -188,3916:208:2,168.5,-90,0,0,-0.00545057 -189,3916:209:1,169,-90,0,0,-0.00544451 -190,3916:209:2,169.5,-90,0,0,-0.00544211 -191,3917:100:1,170,-90,0,0,-0.00544333 -192,3917:100:2,170.5,-90,0,0,-0.00544333 -193,3917:101:1,171,-90,0,0,-0.00544089 -194,3917:101:2,171.5,-90,0,0,-0.00569445 -195,3917:102:1,172,-90,0,0,-0.00650255 -196,3917:102:2,172.5,-90,0,0,-0.00744774 -197,3917:103:1,173,-90,0,0,-0.00792146 -198,3917:103:2,173.5,-90,0,0,-0.00790914 -199,3917:104:1,174,-90,0,0,-0.00786525 -200,3917:104:2,174.5,-90,0,0,-0.00783724 -201,3917:205:1,175,-90,0,0,-0.00782681 -202,3917:205:2,175.5,-90,0,0,-0.00778162 -203,3917:206:1,176,-90,0,0,-0.00760351 -204,3917:206:2,176.5,-90,0,0,-0.00631868 -205,3917:207:1,177,-90,0,0,-0.00551024 -206,3917:207:2,177.5,-90,0,0,-0.00544089 -207,3917:208:1,178,-90,0,0,-0.00544211 -208,3917:208:2,178.5,-90,0,0,-0.00544816 -209,3917:209:1,179,-90,0,0,-0.005453 -210,3917:209:2,179.5,-90,0,0,-0.00545663 -211,3918:100:1,180,-90,0,0,-0.00546026 -212,5818:390:3,-180,-89.5,0,0,-0.00546026 -213,5817:499:4,-179.5,-89.5,0,0,-0.00546392 -214,5817:499:3,-179,-89.5,0,0,-0.00546511 -215,5817:498:4,-178.5,-89.5,0,0,-0.00546392 -216,5817:498:3,-178,-89.5,0,0,-0.00546511 -217,5817:497:4,-177.5,-89.5,0,0,-0.00546633 -218,5817:497:3,-177,-89.5,0,0,-0.00546878 -219,5817:496:4,-176.5,-89.5,0,0,-0.00547 -220,5817:496:3,-176,-89.5,0,0,-0.00547 -221,5817:495:4,-175.5,-89.5,0,0,-0.00547119 -222,5817:495:3,-175,-89.5,0,0,-0.00547119 -223,5817:394:4,-174.5,-89.5,0,0,-0.00547241 -224,5817:394:3,-174,-89.5,0,0,-0.00547364 -225,5817:393:4,-173.5,-89.5,0,0,-0.00547364 -226,5817:393:3,-173,-89.5,0,0,-0.00547486 -227,5817:392:4,-172.5,-89.5,0,0,-0.00547486 -228,5817:392:3,-172,-89.5,0,0,-0.00547605 -229,5817:391:4,-171.5,-89.5,0,0,-0.00547605 -230,5817:391:3,-171,-89.5,0,0,-0.00547605 -231,5817:390:4,-170.5,-89.5,0,0,-0.00547727 -232,5817:390:3,-170,-89.5,0,0,-0.00547727 -233,5816:499:4,-169.5,-89.5,0,0,-0.0054785 -234,5816:499:3,-169,-89.5,0,0,-0.0054785 -235,5816:498:4,-168.5,-89.5,0,0,-0.0054785 -236,5816:498:3,-168,-89.5,0,0,-0.00547972 -237,5816:497:4,-167.5,-89.5,0,0,-0.00547972 -238,5816:497:3,-167,-89.5,0,0,-0.00548091 -239,5816:496:4,-166.5,-89.5,0,0,-0.00548091 -240,5816:496:3,-166,-89.5,0,0,-0.00547972 -241,5816:495:4,-165.5,-89.5,0,0,-0.00547972 -242,5816:495:3,-165,-89.5,0,0,-0.00547972 -243,5816:394:4,-164.5,-89.5,0,0,-0.00547972 -244,5816:394:3,-164,-89.5,0,0,-0.00547972 -245,5816:393:4,-163.5,-89.5,0,0,-0.00547972 -246,5816:393:3,-163,-89.5,0,0,-0.00548091 -247,5816:392:4,-162.5,-89.5,0,0,-0.00548091 -248,5816:392:3,-162,-89.5,0,0,-0.00548091 -249,5816:391:4,-161.5,-89.5,0,0,-0.00548091 -250,5816:391:3,-161,-89.5,0,0,-0.00548214 -251,5816:390:4,-160.5,-89.5,0,0,-0.00548337 -252,5816:390:3,-160,-89.5,0,0,-0.00548459 -253,5815:499:4,-159.5,-89.5,0,0,-0.00548582 -254,5815:499:3,-159,-89.5,0,0,-0.00548582 -255,5815:498:4,-158.5,-89.5,0,0,-0.00548701 -256,5815:498:3,-158,-89.5,0,0,-0.00548824 -257,5815:497:4,-157.5,-89.5,0,0,-0.00548824 -258,5815:497:3,-157,-89.5,0,0,-0.00548701 -259,5815:496:4,-156.5,-89.5,0,0,-0.00548701 -260,5815:496:3,-156,-89.5,0,0,-0.00548824 -261,5815:495:4,-155.5,-89.5,0,0,-0.00548947 -262,5815:495:3,-155,-89.5,0,0,-0.00548947 -263,5815:394:4,-154.5,-89.5,0,0,-0.00548701 -264,5815:394:3,-154,-89.5,0,0,-0.00548701 -265,5815:393:4,-153.5,-89.5,0,0,-0.00548824 -266,5815:393:3,-153,-89.5,0,0,-0.00548947 -267,5815:392:4,-152.5,-89.5,0,0,-0.00548947 -268,5815:392:3,-152,-89.5,0,0,-0.00548824 -269,5815:391:4,-151.5,-89.5,0,0,-0.00548582 -270,5815:391:3,-151,-89.5,0,0,-0.00548582 -271,5815:390:4,-150.5,-89.5,0,0,-0.00548582 -272,5815:390:3,-150,-89.5,0,0,-0.00548582 -273,5814:499:4,-149.5,-89.5,0,0,-0.00548582 -274,5814:499:3,-149,-89.5,0,0,-0.00548459 -275,5814:498:4,-148.5,-89.5,0,0,-0.00548459 -276,5814:498:3,-148,-89.5,0,0,-0.00548459 -277,5814:497:4,-147.5,-89.5,0,0,-0.00548459 -278,5814:497:3,-147,-89.5,0,0,-0.00548337 -279,5814:496:4,-146.5,-89.5,0,0,-0.00548337 -280,5814:496:3,-146,-89.5,0,0,-0.00548214 -281,5814:495:4,-145.5,-89.5,0,0,-0.00548214 -282,5814:495:3,-145,-89.5,0,0,-0.00548214 -283,5814:394:4,-144.5,-89.5,0,0,-0.00548091 -284,5814:394:3,-144,-89.5,0,0,-0.00548091 -285,5814:393:4,-143.5,-89.5,0,0,-0.00548091 -286,5814:393:3,-143,-89.5,0,0,-0.00548214 -287,5814:392:4,-142.5,-89.5,0,0,-0.00548214 -288,5814:392:3,-142,-89.5,0,0,-0.00548091 -289,5814:391:4,-141.5,-89.5,0,0,-0.00547972 -290,5814:391:3,-141,-89.5,0,0,-0.00548091 -291,5814:390:4,-140.5,-89.5,0,0,-0.00548091 -292,5814:390:3,-140,-89.5,0,0,-0.00548214 -293,5813:499:4,-139.5,-89.5,0,0,-0.00548214 -294,5813:499:3,-139,-89.5,0,0,-0.00548214 -295,5813:498:4,-138.5,-89.5,0,0,-0.00548214 -296,5813:498:3,-138,-89.5,0,0,-0.00548337 -297,5813:497:4,-137.5,-89.5,0,0,-0.00548947 -298,5813:497:3,-137,-89.5,0,0,-0.00550777 -299,5813:496:4,-136.5,-89.5,0,0,-0.005536 -300,5813:496:3,-136,-89.5,0,0,-0.00560158 -301,5813:495:4,-135.5,-89.5,0,0,-0.00584441 -302,5813:495:3,-135,-89.5,0,0,-0.00592286 -303,5813:394:4,-134.5,-89.5,0,0,-0.00591106 -304,5813:394:3,-134,-89.5,0,0,-0.00596912 -305,5811:390:3,-110,-89.5,0,0,-0.00698226 -306,5810:499:4,-109.5,-89.5,0,0,-0.00750095 -307,5810:499:3,-109,-89.5,0,0,-0.00796395 -308,5810:498:4,-108.5,-89.5,0,0,-0.00791092 -309,5810:496:3,-106,-89.5,0,0,-0.005619 -310,5810:495:4,-105.5,-89.5,0,0,-0.00555077 -311,5810:495:3,-105,-89.5,0,0,-0.00552617 -312,5810:394:4,-104.5,-89.5,0,0,-0.0055446 -313,5810:394:3,-104,-89.5,0,0,-0.00578243 -314,5810:393:4,-103.5,-89.5,0,0,-0.00623081 -315,5810:393:3,-103,-89.5,0,0,-0.0065446 -316,5810:392:4,-102.5,-89.5,0,0,-0.00661925 -317,5806:391:4,-61.5,-89.5,0,0,-0.00552861 -318,5806:391:3,-61,-89.5,0,0,-0.00552127 -319,5806:390:4,-60.5,-89.5,0,0,-0.00550288 -320,5806:390:3,-60,-89.5,0,0,-0.00548947 -321,5805:499:4,-59.5,-89.5,0,0,-0.0054785 -322,5805:499:3,-59,-89.5,0,0,-0.00546511 -323,5805:498:4,-58.5,-89.5,0,0,-0.00545541 -324,5805:498:3,-58,-89.5,0,0,-0.005453 -325,5805:497:4,-57.5,-89.5,0,0,-0.00545179 -326,5805:497:3,-57,-89.5,0,0,-0.00545057 -327,5805:496:4,-56.5,-89.5,0,0,-0.00544935 -328,5805:496:3,-56,-89.5,0,0,-0.00544935 -329,5805:495:4,-55.5,-89.5,0,0,-0.00544935 -330,5805:495:3,-55,-89.5,0,0,-0.00545057 -331,5805:394:4,-54.5,-89.5,0,0,-0.00545057 -332,5805:394:3,-54,-89.5,0,0,-0.00545057 -333,5805:393:4,-53.5,-89.5,0,0,-0.00545057 -334,5805:393:3,-53,-89.5,0,0,-0.00545179 -335,5805:392:4,-52.5,-89.5,0,0,-0.005453 -336,5805:392:3,-52,-89.5,0,0,-0.00545423 -337,5805:391:4,-51.5,-89.5,0,0,-0.00545423 -338,5805:391:3,-51,-89.5,0,0,-0.00545541 -339,5805:390:4,-50.5,-89.5,0,0,-0.00545541 -340,5805:390:3,-50,-89.5,0,0,-0.00545541 -341,5804:499:4,-49.5,-89.5,0,0,-0.00545541 -342,5804:499:3,-49,-89.5,0,0,-0.00545541 -343,5804:498:4,-48.5,-89.5,0,0,-0.00545423 -344,5804:498:3,-48,-89.5,0,0,-0.005453 -345,5804:497:4,-47.5,-89.5,0,0,-0.005453 -346,5804:497:3,-47,-89.5,0,0,-0.00545663 -347,5804:496:4,-46.5,-89.5,0,0,-0.00545907 -348,5804:496:3,-46,-89.5,0,0,-0.00546148 -349,5804:495:4,-45.5,-89.5,0,0,-0.00546392 -350,5804:495:3,-45,-89.5,0,0,-0.00546633 -351,5804:394:4,-44.5,-89.5,0,0,-0.00546511 -352,5804:394:3,-44,-89.5,0,0,-0.00546511 -353,5804:393:4,-43.5,-89.5,0,0,-0.00546511 -354,5804:393:3,-43,-89.5,0,0,-0.00546511 -355,5804:392:4,-42.5,-89.5,0,0,-0.00546392 -356,5804:392:3,-42,-89.5,0,0,-0.00546392 -357,5804:391:4,-41.5,-89.5,0,0,-0.00546511 -358,5804:391:3,-41,-89.5,0,0,-0.00546511 -359,5804:390:4,-40.5,-89.5,0,0,-0.00546633 -360,5804:390:3,-40,-89.5,0,0,-0.00546755 -361,5803:499:4,-39.5,-89.5,0,0,-0.00546755 -362,5803:499:3,-39,-89.5,0,0,-0.00546755 -363,5803:498:4,-38.5,-89.5,0,0,-0.00546755 -364,5803:498:3,-38,-89.5,0,0,-0.00546755 -365,5803:497:4,-37.5,-89.5,0,0,-0.00546878 -366,5803:497:3,-37,-89.5,0,0,-0.00546755 -367,5803:496:4,-36.5,-89.5,0,0,-0.00546755 -368,5803:496:3,-36,-89.5,0,0,-0.00546755 -369,5803:495:4,-35.5,-89.5,0,0,-0.00546755 -370,5803:495:3,-35,-89.5,0,0,-0.00546878 -371,5803:394:4,-34.5,-89.5,0,0,-0.00546878 -372,5803:394:3,-34,-89.5,0,0,-0.00546755 -373,5803:393:4,-33.5,-89.5,0,0,-0.00546755 -374,5803:393:3,-33,-89.5,0,0,-0.00546755 -375,5803:392:4,-32.5,-89.5,0,0,-0.00546878 -376,5803:392:3,-32,-89.5,0,0,-0.00546878 -377,5803:391:4,-31.5,-89.5,0,0,-0.00546878 -378,5803:391:3,-31,-89.5,0,0,-0.00547 -379,5803:390:4,-30.5,-89.5,0,0,-0.00546878 -380,5803:390:3,-30,-89.5,0,0,-0.00547 -381,5802:499:4,-29.5,-89.5,0,0,-0.00547119 -382,5802:499:3,-29,-89.5,0,0,-0.00547 -383,5802:498:4,-28.5,-89.5,0,0,-0.00546878 -384,5802:498:3,-28,-89.5,0,0,-0.00546755 -385,5802:497:4,-27.5,-89.5,0,0,-0.00546633 -386,5802:497:3,-27,-89.5,0,0,-0.00546511 -387,5802:496:4,-26.5,-89.5,0,0,-0.00553848 -388,5802:496:3,-26,-89.5,0,0,-0.00565409 -389,5802:495:4,-25.5,-89.5,0,0,-0.00561402 -390,5802:495:3,-25,-89.5,0,0,-0.00557672 -391,5802:394:4,-24.5,-89.5,0,0,-0.00581851 -392,5802:394:3,-24,-89.5,0,0,-0.00615781 -393,3816:495:4,165.5,-89.5,0,0,-0.0055225 -394,3816:496:3,166,-89.5,0,0,-0.00550411 -395,3816:496:4,166.5,-89.5,0,0,-0.00548091 -396,3816:497:3,167,-89.5,0,0,-0.00547241 -397,3816:497:4,167.5,-89.5,0,0,-0.00546633 -398,3816:498:3,168,-89.5,0,0,-0.00545907 -399,3816:498:4,168.5,-89.5,0,0,-0.00545057 -400,3816:499:3,169,-89.5,0,0,-0.00544451 -401,3816:499:4,169.5,-89.5,0,0,-0.00544211 -402,3817:390:3,170,-89.5,0,0,-0.00544333 -403,3817:390:4,170.5,-89.5,0,0,-0.00544333 -404,3817:391:3,171,-89.5,0,0,-0.00544089 -405,3817:391:4,171.5,-89.5,0,0,-0.00569445 -406,3817:392:3,172,-89.5,0,0,-0.00650255 -407,3817:392:4,172.5,-89.5,0,0,-0.00744774 -408,3817:393:3,173,-89.5,0,0,-0.00792146 -409,3817:393:4,173.5,-89.5,0,0,-0.00790914 -410,3817:394:3,174,-89.5,0,0,-0.00786525 -411,3817:394:4,174.5,-89.5,0,0,-0.00783724 -412,3817:495:3,175,-89.5,0,0,-0.00782681 -413,3817:495:4,175.5,-89.5,0,0,-0.00778162 -414,3817:496:3,176,-89.5,0,0,-0.00760351 -415,3817:496:4,176.5,-89.5,0,0,-0.00631868 -416,3817:497:3,177,-89.5,0,0,-0.00551024 -417,3817:497:4,177.5,-89.5,0,0,-0.00544089 -418,3817:498:3,178,-89.5,0,0,-0.00544211 -419,3817:498:4,178.5,-89.5,0,0,-0.00544816 -420,3817:499:3,179,-89.5,0,0,-0.005453 -421,3817:499:4,179.5,-89.5,0,0,-0.00545663 -422,3818:390:3,180,-89.5,0,0,-0.00546026 -423,5818:390:1,-180,-89,0,0,-0.00546026 -424,5817:499:2,-179.5,-89,0,0,-0.00546392 -425,5817:499:1,-179,-89,0,0,-0.00546511 -426,5817:498:2,-178.5,-89,0,0,-0.00546392 -427,5817:498:1,-178,-89,0,0,-0.00546511 -428,5817:497:2,-177.5,-89,0,0,-0.00546633 -429,5817:497:1,-177,-89,0,0,-0.00546878 -430,5817:496:2,-176.5,-89,0,0,-0.00547 -431,5817:496:1,-176,-89,0,0,-0.00547 -432,5817:495:2,-175.5,-89,0,0,-0.00547119 -433,5817:495:1,-175,-89,0,0,-0.00547119 -434,5817:394:2,-174.5,-89,0,0,-0.00547241 -435,5817:394:1,-174,-89,0,0,-0.00547364 -436,5817:393:2,-173.5,-89,0,0,-0.00547364 -437,5817:393:1,-173,-89,0,0,-0.00547486 -438,5817:392:2,-172.5,-89,0,0,-0.00547486 -439,5817:392:1,-172,-89,0,0,-0.00547605 -440,5817:391:2,-171.5,-89,0,0,-0.00547605 -441,5817:391:1,-171,-89,0,0,-0.00547605 -442,5817:390:2,-170.5,-89,0,0,-0.00547727 -443,5817:390:1,-170,-89,0,0,-0.00547727 -444,5816:499:2,-169.5,-89,0,0,-0.0054785 -445,5816:499:1,-169,-89,0,0,-0.0054785 -446,5816:498:2,-168.5,-89,0,0,-0.0054785 -447,5816:498:1,-168,-89,0,0,-0.00547972 -448,5816:497:2,-167.5,-89,0,0,-0.00547972 -449,5816:497:1,-167,-89,0,0,-0.00548091 -450,5816:496:2,-166.5,-89,0,0,-0.00548091 -451,5816:496:1,-166,-89,0,0,-0.00547972 -452,5816:495:2,-165.5,-89,0,0,-0.00547972 -453,5816:495:1,-165,-89,0,0,-0.00547972 -454,5816:394:2,-164.5,-89,0,0,-0.00547972 -455,5816:394:1,-164,-89,0,0,-0.00547972 -456,5816:393:2,-163.5,-89,0,0,-0.00547972 -457,5816:393:1,-163,-89,0,0,-0.00548091 -458,5816:392:2,-162.5,-89,0,0,-0.00548091 -459,5816:392:1,-162,-89,0,0,-0.00548091 -460,5816:391:2,-161.5,-89,0,0,-0.00548091 -461,5816:391:1,-161,-89,0,0,-0.00548214 -462,5816:390:2,-160.5,-89,0,0,-0.00548337 -463,5816:390:1,-160,-89,0,0,-0.00548459 -464,5815:499:2,-159.5,-89,0,0,-0.00548582 -465,5815:499:1,-159,-89,0,0,-0.00548582 -466,5815:498:2,-158.5,-89,0,0,-0.00548701 -467,5815:498:1,-158,-89,0,0,-0.00548824 -468,5815:497:2,-157.5,-89,0,0,-0.00548824 -469,5815:497:1,-157,-89,0,0,-0.00548701 -470,5815:496:2,-156.5,-89,0,0,-0.00548701 -471,5815:496:1,-156,-89,0,0,-0.00548824 -472,5815:495:2,-155.5,-89,0,0,-0.00548947 -473,5815:495:1,-155,-89,0,0,-0.00548947 -474,5815:394:2,-154.5,-89,0,0,-0.00548701 -475,5815:394:1,-154,-89,0,0,-0.00548701 -476,5815:393:2,-153.5,-89,0,0,-0.00548824 -477,5815:393:1,-153,-89,0,0,-0.00548947 -478,5815:392:2,-152.5,-89,0,0,-0.00548947 -479,5815:392:1,-152,-89,0,0,-0.00548824 -480,5815:391:2,-151.5,-89,0,0,-0.00548582 -481,5815:391:1,-151,-89,0,0,-0.00548582 -482,5815:390:2,-150.5,-89,0,0,-0.00548582 -483,5815:390:1,-150,-89,0,0,-0.00548582 -484,5814:499:2,-149.5,-89,0,0,-0.00548582 -485,5814:499:1,-149,-89,0,0,-0.00548459 -486,5814:498:2,-148.5,-89,0,0,-0.00548459 -487,5814:498:1,-148,-89,0,0,-0.00548459 -488,5814:497:2,-147.5,-89,0,0,-0.00548459 -489,5814:497:1,-147,-89,0,0,-0.00548337 -490,5814:496:2,-146.5,-89,0,0,-0.00548337 -491,5814:496:1,-146,-89,0,0,-0.00548214 -492,5814:495:2,-145.5,-89,0,0,-0.00548214 -493,5814:495:1,-145,-89,0,0,-0.00548214 -494,5814:394:2,-144.5,-89,0,0,-0.00548091 -495,5814:394:1,-144,-89,0,0,-0.00548091 -496,5814:393:2,-143.5,-89,0,0,-0.00548091 -497,5814:393:1,-143,-89,0,0,-0.00548214 -498,5814:392:2,-142.5,-89,0,0,-0.00548214 -499,5814:392:1,-142,-89,0,0,-0.00548091 -500,5814:391:2,-141.5,-89,0,0,-0.00547972 -501,5814:391:1,-141,-89,0,0,-0.00548091 -502,5814:390:2,-140.5,-89,0,0,-0.00548091 -503,5814:390:1,-140,-89,0,0,-0.00548214 -504,5813:499:2,-139.5,-89,0,0,-0.00548214 -505,5813:499:1,-139,-89,0,0,-0.00548214 -506,5813:498:2,-138.5,-89,0,0,-0.00548214 -507,5813:498:1,-138,-89,0,0,-0.00548337 -508,5813:497:2,-137.5,-89,0,0,-0.00548947 -509,5813:497:1,-137,-89,0,0,-0.00550777 -510,5813:496:2,-136.5,-89,0,0,-0.005536 -511,5813:496:1,-136,-89,0,0,-0.00560158 -512,5813:495:2,-135.5,-89,0,0,-0.00584441 -513,5813:495:1,-135,-89,0,0,-0.00592286 -514,5813:394:2,-134.5,-89,0,0,-0.00591106 -515,5813:394:1,-134,-89,0,0,-0.00596912 -516,5811:390:1,-110,-89,0,0,-0.00698226 -517,5810:499:2,-109.5,-89,0,0,-0.00750095 -518,5810:499:1,-109,-89,0,0,-0.00796395 -519,5810:498:2,-108.5,-89,0,0,-0.00791092 -520,5810:496:1,-106,-89,0,0,-0.005619 -521,5810:495:2,-105.5,-89,0,0,-0.00555077 -522,5810:495:1,-105,-89,0,0,-0.00552617 -523,5810:394:2,-104.5,-89,0,0,-0.0055446 -524,5810:394:1,-104,-89,0,0,-0.00578243 -525,5810:393:2,-103.5,-89,0,0,-0.00623081 -526,5810:393:1,-103,-89,0,0,-0.0065446 -527,5810:392:2,-102.5,-89,0,0,-0.00661925 -528,5806:391:2,-61.5,-89,0,0,-0.00552861 -529,5806:391:1,-61,-89,0,0,-0.00552127 -530,5806:390:2,-60.5,-89,0,0,-0.00550288 -531,5806:390:1,-60,-89,0,0,-0.00548947 -532,5805:499:2,-59.5,-89,0,0,-0.0054785 -533,5805:499:1,-59,-89,0,0,-0.00546511 -534,5805:498:2,-58.5,-89,0,0,-0.00545541 -535,5805:498:1,-58,-89,0,0,-0.005453 -536,5805:497:2,-57.5,-89,0,0,-0.00545179 -537,5805:497:1,-57,-89,0,0,-0.00545057 -538,5805:496:2,-56.5,-89,0,0,-0.00544935 -539,5805:496:1,-56,-89,0,0,-0.00544935 -540,5805:495:2,-55.5,-89,0,0,-0.00544935 -541,5805:495:1,-55,-89,0,0,-0.00545057 -542,5805:394:2,-54.5,-89,0,0,-0.00545057 -543,5805:394:1,-54,-89,0,0,-0.00545057 -544,5805:393:2,-53.5,-89,0,0,-0.00545057 -545,5805:393:1,-53,-89,0,0,-0.00545179 -546,5805:392:2,-52.5,-89,0,0,-0.005453 -547,5805:392:1,-52,-89,0,0,-0.00545423 -548,5805:391:2,-51.5,-89,0,0,-0.00545423 -549,5805:391:1,-51,-89,0,0,-0.00545541 -550,5805:390:2,-50.5,-89,0,0,-0.00545541 -551,5805:390:1,-50,-89,0,0,-0.00545541 -552,5804:499:2,-49.5,-89,0,0,-0.00545541 -553,5804:499:1,-49,-89,0,0,-0.00545541 -554,5804:498:2,-48.5,-89,0,0,-0.00545423 -555,5804:498:1,-48,-89,0,0,-0.005453 -556,5804:497:2,-47.5,-89,0,0,-0.005453 -557,5804:497:1,-47,-89,0,0,-0.00545663 -558,5804:496:2,-46.5,-89,0,0,-0.00545907 -559,5804:496:1,-46,-89,0,0,-0.00546148 -560,5804:495:2,-45.5,-89,0,0,-0.00546392 -561,5804:495:1,-45,-89,0,0,-0.00546633 -562,5804:394:2,-44.5,-89,0,0,-0.00546511 -563,5804:394:1,-44,-89,0,0,-0.00546511 -564,5804:393:2,-43.5,-89,0,0,-0.00546511 -565,5804:393:1,-43,-89,0,0,-0.00546511 -566,5804:392:2,-42.5,-89,0,0,-0.00546392 -567,5804:392:1,-42,-89,0,0,-0.00546392 -568,5804:391:2,-41.5,-89,0,0,-0.00546511 -569,5804:391:1,-41,-89,0,0,-0.00546511 -570,5804:390:2,-40.5,-89,0,0,-0.00546633 -571,5804:390:1,-40,-89,0,0,-0.00546755 -572,5803:499:2,-39.5,-89,0,0,-0.00546755 -573,5803:499:1,-39,-89,0,0,-0.00546755 -574,5803:498:2,-38.5,-89,0,0,-0.00546755 -575,5803:498:1,-38,-89,0,0,-0.00546755 -576,5803:497:2,-37.5,-89,0,0,-0.00546878 -577,5803:497:1,-37,-89,0,0,-0.00546755 -578,5803:496:2,-36.5,-89,0,0,-0.00546755 -579,5803:496:1,-36,-89,0,0,-0.00546755 -580,5803:495:2,-35.5,-89,0,0,-0.00546755 -581,5803:495:1,-35,-89,0,0,-0.00546878 -582,5803:394:2,-34.5,-89,0,0,-0.00546878 -583,5803:394:1,-34,-89,0,0,-0.00546755 -584,5803:393:2,-33.5,-89,0,0,-0.00546755 -585,5803:393:1,-33,-89,0,0,-0.00546755 -586,5803:392:2,-32.5,-89,0,0,-0.00546878 -587,5803:392:1,-32,-89,0,0,-0.00546878 -588,5803:391:2,-31.5,-89,0,0,-0.00546878 -589,5803:391:1,-31,-89,0,0,-0.00547 -590,5803:390:2,-30.5,-89,0,0,-0.00546878 -591,5803:390:1,-30,-89,0,0,-0.00547 -592,5802:499:2,-29.5,-89,0,0,-0.00547119 -593,5802:499:1,-29,-89,0,0,-0.00547 -594,5802:498:2,-28.5,-89,0,0,-0.00546878 -595,5802:498:1,-28,-89,0,0,-0.00546755 -596,5802:497:2,-27.5,-89,0,0,-0.00546633 -597,5802:497:1,-27,-89,0,0,-0.00546511 -598,5802:496:2,-26.5,-89,0,0,-0.00553848 -599,5802:496:1,-26,-89,0,0,-0.00565409 -600,5802:495:2,-25.5,-89,0,0,-0.00561402 -601,5802:495:1,-25,-89,0,0,-0.00557672 -602,5802:394:2,-24.5,-89,0,0,-0.00581851 -603,5802:394:1,-24,-89,0,0,-0.00615781 -604,3816:495:2,165.5,-89,0,0,-0.0055225 -605,3816:496:1,166,-89,0,0,-0.00550411 -606,3816:496:2,166.5,-89,0,0,-0.00548091 -607,3816:497:1,167,-89,0,0,-0.00547241 -608,3816:497:2,167.5,-89,0,0,-0.00546633 -609,3816:498:1,168,-89,0,0,-0.00545907 -610,3816:498:2,168.5,-89,0,0,-0.00545057 -611,3816:499:1,169,-89,0,0,-0.00544451 -612,3816:499:2,169.5,-89,0,0,-0.00544211 -613,3817:390:1,170,-89,0,0,-0.00544333 -614,3817:390:2,170.5,-89,0,0,-0.00544333 -615,3817:391:1,171,-89,0,0,-0.00544089 -616,3817:391:2,171.5,-89,0,0,-0.00569445 -617,3817:392:1,172,-89,0,0,-0.00650255 -618,3817:392:2,172.5,-89,0,0,-0.00744774 -619,3817:393:1,173,-89,0,0,-0.00792146 -620,3817:393:2,173.5,-89,0,0,-0.00790914 -621,3817:394:1,174,-89,0,0,-0.00786525 -622,3817:394:2,174.5,-89,0,0,-0.00783724 -623,3817:495:1,175,-89,0,0,-0.00782681 -624,3817:495:2,175.5,-89,0,0,-0.00778162 -625,3817:496:1,176,-89,0,0,-0.00760351 -626,3817:496:2,176.5,-89,0,0,-0.00631868 -627,3817:497:1,177,-89,0,0,-0.00551024 -628,3817:497:2,177.5,-89,0,0,-0.00544089 -629,3817:498:1,178,-89,0,0,-0.00544211 -630,3817:498:2,178.5,-89,0,0,-0.00544816 -631,3817:499:1,179,-89,0,0,-0.005453 -632,3817:499:2,179.5,-89,0,0,-0.00545663 -633,3818:390:1,180,-89,0,0,-0.00546026 -634,5818:380:3,-180,-88.5,0,0,-0.00546026 -635,5817:489:4,-179.5,-88.5,0,0,-0.00546392 -636,5817:489:3,-179,-88.5,0,0,-0.00546511 -637,5817:488:4,-178.5,-88.5,0,0,-0.00546392 -638,5817:488:3,-178,-88.5,0,0,-0.00546511 -639,5817:487:4,-177.5,-88.5,0,0,-0.00546633 -640,5817:487:3,-177,-88.5,0,0,-0.00546878 -641,5817:486:4,-176.5,-88.5,0,0,-0.00547 -642,5817:486:3,-176,-88.5,0,0,-0.00547 -643,5817:485:4,-175.5,-88.5,0,0,-0.00547119 -644,5817:485:3,-175,-88.5,0,0,-0.00547119 -645,5817:384:4,-174.5,-88.5,0,0,-0.00547241 -646,5817:384:3,-174,-88.5,0,0,-0.00547364 -647,5817:383:4,-173.5,-88.5,0,0,-0.00547364 -648,5817:383:3,-173,-88.5,0,0,-0.00547486 -649,5817:382:4,-172.5,-88.5,0,0,-0.00547486 -650,5817:382:3,-172,-88.5,0,0,-0.00547605 -651,5817:381:4,-171.5,-88.5,0,0,-0.00547605 -652,5817:381:3,-171,-88.5,0,0,-0.00547605 -653,5817:380:4,-170.5,-88.5,0,0,-0.00547727 -654,5817:380:3,-170,-88.5,0,0,-0.00547727 -655,5816:489:4,-169.5,-88.5,0,0,-0.0054785 -656,5816:489:3,-169,-88.5,0,0,-0.0054785 -657,5816:488:4,-168.5,-88.5,0,0,-0.0054785 -658,5816:488:3,-168,-88.5,0,0,-0.00547972 -659,5816:487:4,-167.5,-88.5,0,0,-0.00547972 -660,5816:487:3,-167,-88.5,0,0,-0.00548091 -661,5816:486:4,-166.5,-88.5,0,0,-0.00548091 -662,5816:486:3,-166,-88.5,0,0,-0.00547972 -663,5816:485:4,-165.5,-88.5,0,0,-0.00547972 -664,5816:485:3,-165,-88.5,0,0,-0.00547972 -665,5816:384:4,-164.5,-88.5,0,0,-0.00547972 -666,5816:384:3,-164,-88.5,0,0,-0.00547972 -667,5816:383:4,-163.5,-88.5,0,0,-0.00547972 -668,5816:383:3,-163,-88.5,0,0,-0.00548091 -669,5816:382:4,-162.5,-88.5,0,0,-0.00548091 -670,5816:382:3,-162,-88.5,0,0,-0.00548091 -671,5816:381:4,-161.5,-88.5,0,0,-0.00548091 -672,5816:381:3,-161,-88.5,0,0,-0.00548214 -673,5816:380:4,-160.5,-88.5,0,0,-0.00548337 -674,5816:380:3,-160,-88.5,0,0,-0.00548459 -675,5815:489:4,-159.5,-88.5,0,0,-0.00548582 -676,5815:489:3,-159,-88.5,0,0,-0.00548582 -677,5815:488:4,-158.5,-88.5,0,0,-0.00548701 -678,5815:488:3,-158,-88.5,0,0,-0.00548824 -679,5815:487:4,-157.5,-88.5,0,0,-0.00548824 -680,5815:487:3,-157,-88.5,0,0,-0.00548701 -681,5815:486:4,-156.5,-88.5,0,0,-0.00548701 -682,5815:486:3,-156,-88.5,0,0,-0.00548824 -683,5815:485:4,-155.5,-88.5,0,0,-0.00548947 -684,5815:485:3,-155,-88.5,0,0,-0.00548947 -685,5815:384:4,-154.5,-88.5,0,0,-0.00548701 -686,5815:384:3,-154,-88.5,0,0,-0.00548701 -687,5815:383:4,-153.5,-88.5,0,0,-0.00548824 -688,5815:383:3,-153,-88.5,0,0,-0.00548947 -689,5815:382:4,-152.5,-88.5,0,0,-0.00548947 -690,5815:382:3,-152,-88.5,0,0,-0.00548824 -691,5815:381:4,-151.5,-88.5,0,0,-0.00548582 -692,5815:381:3,-151,-88.5,0,0,-0.00548582 -693,5815:380:4,-150.5,-88.5,0,0,-0.00548582 -694,5815:380:3,-150,-88.5,0,0,-0.00548582 -695,5814:489:4,-149.5,-88.5,0,0,-0.00548582 -696,5814:489:3,-149,-88.5,0,0,-0.00548459 -697,5814:488:4,-148.5,-88.5,0,0,-0.00548459 -698,5814:488:3,-148,-88.5,0,0,-0.00548459 -699,5814:487:4,-147.5,-88.5,0,0,-0.00548459 -700,5814:487:3,-147,-88.5,0,0,-0.00548337 -701,5814:486:4,-146.5,-88.5,0,0,-0.00548337 -702,5814:486:3,-146,-88.5,0,0,-0.00548214 -703,5814:485:4,-145.5,-88.5,0,0,-0.00548214 -704,5814:485:3,-145,-88.5,0,0,-0.00548214 -705,5814:384:4,-144.5,-88.5,0,0,-0.00548091 -706,5814:384:3,-144,-88.5,0,0,-0.00548091 -707,5814:383:4,-143.5,-88.5,0,0,-0.00548091 -708,5814:383:3,-143,-88.5,0,0,-0.00548214 -709,5814:382:4,-142.5,-88.5,0,0,-0.00548214 -710,5814:382:3,-142,-88.5,0,0,-0.00548091 -711,5814:381:4,-141.5,-88.5,0,0,-0.00547972 -712,5814:381:3,-141,-88.5,0,0,-0.00548091 -713,5814:380:4,-140.5,-88.5,0,0,-0.00548091 -714,5814:380:3,-140,-88.5,0,0,-0.00548214 -715,5813:489:4,-139.5,-88.5,0,0,-0.00548214 -716,5813:489:3,-139,-88.5,0,0,-0.00548214 -717,5813:488:4,-138.5,-88.5,0,0,-0.00548214 -718,5813:488:3,-138,-88.5,0,0,-0.00548337 -719,5813:487:4,-137.5,-88.5,0,0,-0.00548947 -720,5813:487:3,-137,-88.5,0,0,-0.00550777 -721,5813:486:4,-136.5,-88.5,0,0,-0.005536 -722,5813:486:3,-136,-88.5,0,0,-0.00560158 -723,5813:485:4,-135.5,-88.5,0,0,-0.00584441 -724,5813:485:3,-135,-88.5,0,0,-0.00592286 -725,5813:384:4,-134.5,-88.5,0,0,-0.00591106 -726,5813:384:3,-134,-88.5,0,0,-0.00596912 -727,5811:380:3,-110,-88.5,0,0,-0.00698226 -728,5810:489:4,-109.5,-88.5,0,0,-0.00750095 -729,5810:489:3,-109,-88.5,0,0,-0.00796395 -730,5810:488:4,-108.5,-88.5,0,0,-0.00791092 -731,5810:486:3,-106,-88.5,0,0,-0.005619 -732,5810:485:4,-105.5,-88.5,0,0,-0.00555077 -733,5810:485:3,-105,-88.5,0,0,-0.00552617 -734,5810:384:4,-104.5,-88.5,0,0,-0.0055446 -735,5810:384:3,-104,-88.5,0,0,-0.00578243 -736,5810:383:4,-103.5,-88.5,0,0,-0.00623081 -737,5810:383:3,-103,-88.5,0,0,-0.0065446 -738,5810:382:4,-102.5,-88.5,0,0,-0.00661925 -739,5806:381:4,-61.5,-88.5,0,0,-0.00552861 -740,5806:381:3,-61,-88.5,0,0,-0.00552127 -741,5806:380:4,-60.5,-88.5,0,0,-0.00550288 -742,5806:380:3,-60,-88.5,0,0,-0.00548947 -743,5805:489:4,-59.5,-88.5,0,0,-0.0054785 -744,5805:489:3,-59,-88.5,0,0,-0.00546511 -745,5805:488:4,-58.5,-88.5,0,0,-0.00545541 -746,5805:488:3,-58,-88.5,0,0,-0.005453 -747,5805:487:4,-57.5,-88.5,0,0,-0.00545179 -748,5805:487:3,-57,-88.5,0,0,-0.00545057 -749,5805:486:4,-56.5,-88.5,0,0,-0.00544935 -750,5805:486:3,-56,-88.5,0,0,-0.00544935 -751,5805:485:4,-55.5,-88.5,0,0,-0.00544935 -752,5805:485:3,-55,-88.5,0,0,-0.00545057 -753,5805:384:4,-54.5,-88.5,0,0,-0.00545057 -754,5805:384:3,-54,-88.5,0,0,-0.00545057 -755,5805:383:4,-53.5,-88.5,0,0,-0.00545057 -756,5805:383:3,-53,-88.5,0,0,-0.00545179 -757,5805:382:4,-52.5,-88.5,0,0,-0.005453 -758,5805:382:3,-52,-88.5,0,0,-0.00545423 -759,5805:381:4,-51.5,-88.5,0,0,-0.00545423 -760,5805:381:3,-51,-88.5,0,0,-0.00545541 -761,5805:380:4,-50.5,-88.5,0,0,-0.00545541 -762,5805:380:3,-50,-88.5,0,0,-0.00545541 -763,5804:489:4,-49.5,-88.5,0,0,-0.00545541 -764,5804:489:3,-49,-88.5,0,0,-0.00545541 -765,5804:488:4,-48.5,-88.5,0,0,-0.00545423 -766,5804:488:3,-48,-88.5,0,0,-0.005453 -767,5804:487:4,-47.5,-88.5,0,0,-0.005453 -768,5804:487:3,-47,-88.5,0,0,-0.00545663 -769,5804:486:4,-46.5,-88.5,0,0,-0.00545907 -770,5804:486:3,-46,-88.5,0,0,-0.00546148 -771,5804:485:4,-45.5,-88.5,0,0,-0.00546392 -772,5804:485:3,-45,-88.5,0,0,-0.00546633 -773,5804:384:4,-44.5,-88.5,0,0,-0.00546511 -774,5804:384:3,-44,-88.5,0,0,-0.00546511 -775,5804:383:4,-43.5,-88.5,0,0,-0.00546511 -776,5804:383:3,-43,-88.5,0,0,-0.00546511 -777,5804:382:4,-42.5,-88.5,0,0,-0.00546392 -778,5804:382:3,-42,-88.5,0,0,-0.00546392 -779,5804:381:4,-41.5,-88.5,0,0,-0.00546511 -780,5804:381:3,-41,-88.5,0,0,-0.00546511 -781,5804:380:4,-40.5,-88.5,0,0,-0.00546633 -782,5804:380:3,-40,-88.5,0,0,-0.00546755 -783,5803:489:4,-39.5,-88.5,0,0,-0.00546755 -784,5803:489:3,-39,-88.5,0,0,-0.00546755 -785,5803:488:4,-38.5,-88.5,0,0,-0.00546755 -786,5803:488:3,-38,-88.5,0,0,-0.00546755 -787,5803:487:4,-37.5,-88.5,0,0,-0.00546878 -788,5803:487:3,-37,-88.5,0,0,-0.00546755 -789,5803:486:4,-36.5,-88.5,0,0,-0.00546755 -790,5803:486:3,-36,-88.5,0,0,-0.00546755 -791,5803:485:4,-35.5,-88.5,0,0,-0.00546755 -792,5803:485:3,-35,-88.5,0,0,-0.00546878 -793,5803:384:4,-34.5,-88.5,0,0,-0.00546878 -794,5803:384:3,-34,-88.5,0,0,-0.00546755 -795,5803:383:4,-33.5,-88.5,0,0,-0.00546755 -796,5803:383:3,-33,-88.5,0,0,-0.00546755 -797,5803:382:4,-32.5,-88.5,0,0,-0.00546878 -798,5803:382:3,-32,-88.5,0,0,-0.00546878 -799,5803:381:4,-31.5,-88.5,0,0,-0.00546878 -800,5803:381:3,-31,-88.5,0,0,-0.00547 -801,5803:380:4,-30.5,-88.5,0,0,-0.00546878 -802,5803:380:3,-30,-88.5,0,0,-0.00547 -803,5802:489:4,-29.5,-88.5,0,0,-0.00547119 -804,5802:489:3,-29,-88.5,0,0,-0.00547 -805,5802:488:4,-28.5,-88.5,0,0,-0.00546878 -806,5802:488:3,-28,-88.5,0,0,-0.00546755 -807,5802:487:4,-27.5,-88.5,0,0,-0.00546633 -808,5802:487:3,-27,-88.5,0,0,-0.00546511 -809,5802:486:4,-26.5,-88.5,0,0,-0.00553848 -810,5802:486:3,-26,-88.5,0,0,-0.00565409 -811,5802:485:4,-25.5,-88.5,0,0,-0.00561402 -812,5802:485:3,-25,-88.5,0,0,-0.00557672 -813,5802:384:4,-24.5,-88.5,0,0,-0.00581851 -814,5802:384:3,-24,-88.5,0,0,-0.00615781 -815,3816:485:4,165.5,-88.5,0,0,-0.0055225 -816,3816:486:3,166,-88.5,0,0,-0.00550411 -817,3816:486:4,166.5,-88.5,0,0,-0.00548091 -818,3816:487:3,167,-88.5,0,0,-0.00547241 -819,3816:487:4,167.5,-88.5,0,0,-0.00546633 -820,3816:488:3,168,-88.5,0,0,-0.00545907 -821,3816:488:4,168.5,-88.5,0,0,-0.00545057 -822,3816:489:3,169,-88.5,0,0,-0.00544451 -823,3816:489:4,169.5,-88.5,0,0,-0.00544211 -824,3817:380:3,170,-88.5,0,0,-0.00544333 -825,3817:380:4,170.5,-88.5,0,0,-0.00544333 -826,3817:381:3,171,-88.5,0,0,-0.00544089 -827,3817:381:4,171.5,-88.5,0,0,-0.00569445 -828,3817:382:3,172,-88.5,0,0,-0.00650255 -829,3817:382:4,172.5,-88.5,0,0,-0.00744774 -830,3817:383:3,173,-88.5,0,0,-0.00792146 -831,3817:383:4,173.5,-88.5,0,0,-0.00790914 -832,3817:384:3,174,-88.5,0,0,-0.00786525 -833,3817:384:4,174.5,-88.5,0,0,-0.00783724 -834,3817:485:3,175,-88.5,0,0,-0.00782681 -835,3817:485:4,175.5,-88.5,0,0,-0.00778162 -836,3817:486:3,176,-88.5,0,0,-0.00760351 -837,3817:486:4,176.5,-88.5,0,0,-0.00631868 -838,3817:487:3,177,-88.5,0,0,-0.00551024 -839,3817:487:4,177.5,-88.5,0,0,-0.00544089 -840,3817:488:3,178,-88.5,0,0,-0.00544211 -841,3817:488:4,178.5,-88.5,0,0,-0.00544816 -842,3817:489:3,179,-88.5,0,0,-0.005453 -843,3817:489:4,179.5,-88.5,0,0,-0.00545663 -844,3818:380:3,180,-88.5,0,0,-0.00546026 -845,5818:380:1,-180,-88,0,0,-0.00546026 -846,5817:489:2,-179.5,-88,0,0,-0.00546392 -847,5817:489:1,-179,-88,0,0,-0.00546511 -848,5817:488:2,-178.5,-88,0,0,-0.00546392 -849,5817:488:1,-178,-88,0,0,-0.00546511 -850,5817:487:2,-177.5,-88,0,0,-0.00546633 -851,5817:487:1,-177,-88,0,0,-0.00546878 -852,5817:486:2,-176.5,-88,0,0,-0.00547 -853,5817:486:1,-176,-88,0,0,-0.00547 -854,5817:485:2,-175.5,-88,0,0,-0.00547119 -855,5817:485:1,-175,-88,0,0,-0.00547119 -856,5817:384:2,-174.5,-88,0,0,-0.00547241 -857,5817:384:1,-174,-88,0,0,-0.00547364 -858,5817:383:2,-173.5,-88,0,0,-0.00547364 -859,5817:383:1,-173,-88,0,0,-0.00547486 -860,5817:382:2,-172.5,-88,0,0,-0.00547486 -861,5817:382:1,-172,-88,0,0,-0.00547605 -862,5817:381:2,-171.5,-88,0,0,-0.00547605 -863,5817:381:1,-171,-88,0,0,-0.00547605 -864,5817:380:2,-170.5,-88,0,0,-0.00547727 -865,5817:380:1,-170,-88,0,0,-0.00547727 -866,5816:489:2,-169.5,-88,0,0,-0.0054785 -867,5816:489:1,-169,-88,0,0,-0.0054785 -868,5816:488:2,-168.5,-88,0,0,-0.0054785 -869,5816:488:1,-168,-88,0,0,-0.00547972 -870,5816:487:2,-167.5,-88,0,0,-0.00547972 -871,5816:487:1,-167,-88,0,0,-0.00548091 -872,5816:486:2,-166.5,-88,0,0,-0.00548091 -873,5816:486:1,-166,-88,0,0,-0.00547972 -874,5816:485:2,-165.5,-88,0,0,-0.00547972 -875,5816:485:1,-165,-88,0,0,-0.00547972 -876,5816:384:2,-164.5,-88,0,0,-0.00547972 -877,5816:384:1,-164,-88,0,0,-0.00547972 -878,5816:383:2,-163.5,-88,0,0,-0.00547972 -879,5816:383:1,-163,-88,0,0,-0.00548091 -880,5816:382:2,-162.5,-88,0,0,-0.00548091 -881,5816:382:1,-162,-88,0,0,-0.00548091 -882,5816:381:2,-161.5,-88,0,0,-0.00548091 -883,5816:381:1,-161,-88,0,0,-0.00548214 -884,5816:380:2,-160.5,-88,0,0,-0.00548337 -885,5816:380:1,-160,-88,0,0,-0.00548459 -886,5815:489:2,-159.5,-88,0,0,-0.00548582 -887,5815:489:1,-159,-88,0,0,-0.00548582 -888,5815:488:2,-158.5,-88,0,0,-0.00548701 -889,5815:488:1,-158,-88,0,0,-0.00548824 -890,5815:487:2,-157.5,-88,0,0,-0.00548824 -891,5815:487:1,-157,-88,0,0,-0.00548701 -892,5815:486:2,-156.5,-88,0,0,-0.00548701 -893,5815:486:1,-156,-88,0,0,-0.00548824 -894,5815:485:2,-155.5,-88,0,0,-0.00548947 -895,5815:485:1,-155,-88,0,0,-0.00548947 -896,5815:384:2,-154.5,-88,0,0,-0.00548701 -897,5815:384:1,-154,-88,0,0,-0.00548701 -898,5815:383:2,-153.5,-88,0,0,-0.00548824 -899,5815:383:1,-153,-88,0,0,-0.00548947 -900,5815:382:2,-152.5,-88,0,0,-0.00548947 -901,5815:382:1,-152,-88,0,0,-0.00548824 -902,5815:381:2,-151.5,-88,0,0,-0.00548582 -903,5815:381:1,-151,-88,0,0,-0.00548582 -904,5815:380:2,-150.5,-88,0,0,-0.00548582 -905,5815:380:1,-150,-88,0,0,-0.00548582 -906,5814:489:2,-149.5,-88,0,0,-0.00548582 -907,5814:489:1,-149,-88,0,0,-0.00548459 -908,5814:488:2,-148.5,-88,0,0,-0.00548459 -909,5814:488:1,-148,-88,0,0,-0.00548459 -910,5814:487:2,-147.5,-88,0,0,-0.00548459 -911,5814:487:1,-147,-88,0,0,-0.00548337 -912,5814:486:2,-146.5,-88,0,0,-0.00548337 -913,5814:486:1,-146,-88,0,0,-0.00548214 -914,5814:485:2,-145.5,-88,0,0,-0.00548214 -915,5814:485:1,-145,-88,0,0,-0.00548214 -916,5814:384:2,-144.5,-88,0,0,-0.00548091 -917,5814:384:1,-144,-88,0,0,-0.00548091 -918,5814:383:2,-143.5,-88,0,0,-0.00548091 -919,5814:383:1,-143,-88,0,0,-0.00548214 -920,5814:382:2,-142.5,-88,0,0,-0.00548214 -921,5814:382:1,-142,-88,0,0,-0.00548091 -922,5814:381:2,-141.5,-88,0,0,-0.00547972 -923,5814:381:1,-141,-88,0,0,-0.00548091 -924,5814:380:2,-140.5,-88,0,0,-0.00548091 -925,5814:380:1,-140,-88,0,0,-0.00548214 -926,5813:489:2,-139.5,-88,0,0,-0.00548214 -927,5813:489:1,-139,-88,0,0,-0.00548214 -928,5813:488:2,-138.5,-88,0,0,-0.00548214 -929,5813:488:1,-138,-88,0,0,-0.00548337 -930,5813:487:2,-137.5,-88,0,0,-0.00548947 -931,5813:487:1,-137,-88,0,0,-0.00550777 -932,5813:486:2,-136.5,-88,0,0,-0.005536 -933,5813:486:1,-136,-88,0,0,-0.00560158 -934,5813:485:2,-135.5,-88,0,0,-0.00584441 -935,5813:485:1,-135,-88,0,0,-0.00592286 -936,5813:384:2,-134.5,-88,0,0,-0.00591106 -937,5813:384:1,-134,-88,0,0,-0.00596912 -938,5811:380:1,-110,-88,0,0,-0.00698226 -939,5810:489:2,-109.5,-88,0,0,-0.00750095 -940,5810:489:1,-109,-88,0,0,-0.00796395 -941,5810:488:2,-108.5,-88,0,0,-0.00791092 -942,5810:486:1,-106,-88,0,0,-0.005619 -943,5810:485:2,-105.5,-88,0,0,-0.00555077 -944,5810:485:1,-105,-88,0,0,-0.00552617 -945,5810:384:2,-104.5,-88,0,0,-0.0055446 -946,5810:384:1,-104,-88,0,0,-0.00578243 -947,5810:383:2,-103.5,-88,0,0,-0.00623081 -948,5810:383:1,-103,-88,0,0,-0.0065446 -949,5810:382:2,-102.5,-88,0,0,-0.00661925 -950,5806:381:2,-61.5,-88,0,0,-0.00552861 -951,5806:381:1,-61,-88,0,0,-0.00552127 -952,5806:380:2,-60.5,-88,0,0,-0.00550288 -953,5806:380:1,-60,-88,0,0,-0.00548947 -954,5805:489:2,-59.5,-88,0,0,-0.0054785 -955,5805:489:1,-59,-88,0,0,-0.00546511 -956,5805:488:2,-58.5,-88,0,0,-0.00545541 -957,5805:488:1,-58,-88,0,0,-0.005453 -958,5805:487:2,-57.5,-88,0,0,-0.00545179 -959,5805:487:1,-57,-88,0,0,-0.00545057 -960,5805:486:2,-56.5,-88,0,0,-0.00544935 -961,5805:486:1,-56,-88,0,0,-0.00544935 -962,5805:485:2,-55.5,-88,0,0,-0.00544935 -963,5805:485:1,-55,-88,0,0,-0.00545057 -964,5805:384:2,-54.5,-88,0,0,-0.00545057 -965,5805:384:1,-54,-88,0,0,-0.00545057 -966,5805:383:2,-53.5,-88,0,0,-0.00545057 -967,5805:383:1,-53,-88,0,0,-0.00545179 -968,5805:382:2,-52.5,-88,0,0,-0.005453 -969,5805:382:1,-52,-88,0,0,-0.00545423 -970,5805:381:2,-51.5,-88,0,0,-0.00545423 -971,5805:381:1,-51,-88,0,0,-0.00545541 -972,5805:380:2,-50.5,-88,0,0,-0.00545541 -973,5805:380:1,-50,-88,0,0,-0.00545541 -974,5804:489:2,-49.5,-88,0,0,-0.00545541 -975,5804:489:1,-49,-88,0,0,-0.00545541 -976,5804:488:2,-48.5,-88,0,0,-0.00545423 -977,5804:488:1,-48,-88,0,0,-0.005453 -978,5804:487:2,-47.5,-88,0,0,-0.005453 -979,5804:487:1,-47,-88,0,0,-0.00545663 -980,5804:486:2,-46.5,-88,0,0,-0.00545907 -981,5804:486:1,-46,-88,0,0,-0.00546148 -982,5804:485:2,-45.5,-88,0,0,-0.00546392 -983,5804:485:1,-45,-88,0,0,-0.00546633 -984,5804:384:2,-44.5,-88,0,0,-0.00546511 -985,5804:384:1,-44,-88,0,0,-0.00546511 -986,5804:383:2,-43.5,-88,0,0,-0.00546511 -987,5804:383:1,-43,-88,0,0,-0.00546511 -988,5804:382:2,-42.5,-88,0,0,-0.00546392 -989,5804:382:1,-42,-88,0,0,-0.00546392 -990,5804:381:2,-41.5,-88,0,0,-0.00546511 -991,5804:381:1,-41,-88,0,0,-0.00546511 -992,5804:380:2,-40.5,-88,0,0,-0.00546633 -993,5804:380:1,-40,-88,0,0,-0.00546755 -994,5803:489:2,-39.5,-88,0,0,-0.00546755 -995,5803:489:1,-39,-88,0,0,-0.00546755 -996,5803:488:2,-38.5,-88,0,0,-0.00546755 -997,5803:488:1,-38,-88,0,0,-0.00546755 -998,5803:487:2,-37.5,-88,0,0,-0.00546878 -999,5803:487:1,-37,-88,0,0,-0.00546755 -1000,5803:486:2,-36.5,-88,0,0,-0.00546755 -1001,5803:486:1,-36,-88,0,0,-0.00546755 -1002,5803:485:2,-35.5,-88,0,0,-0.00546755 -1003,5803:485:1,-35,-88,0,0,-0.00546878 -1004,5803:384:2,-34.5,-88,0,0,-0.00546878 -1005,5803:384:1,-34,-88,0,0,-0.00546755 -1006,5803:383:2,-33.5,-88,0,0,-0.00546755 -1007,5803:383:1,-33,-88,0,0,-0.00546755 -1008,5803:382:2,-32.5,-88,0,0,-0.00546878 -1009,5803:382:1,-32,-88,0,0,-0.00546878 -1010,5803:381:2,-31.5,-88,0,0,-0.00546878 -1011,5803:381:1,-31,-88,0,0,-0.00547 -1012,5803:380:2,-30.5,-88,0,0,-0.00546878 -1013,5803:380:1,-30,-88,0,0,-0.00547 -1014,5802:489:2,-29.5,-88,0,0,-0.00547119 -1015,5802:489:1,-29,-88,0,0,-0.00547 -1016,5802:488:2,-28.5,-88,0,0,-0.00546878 -1017,5802:488:1,-28,-88,0,0,-0.00546755 -1018,5802:487:2,-27.5,-88,0,0,-0.00546633 -1019,5802:487:1,-27,-88,0,0,-0.00546511 -1020,5802:486:2,-26.5,-88,0,0,-0.00553848 -1021,5802:486:1,-26,-88,0,0,-0.00565409 -1022,5802:485:2,-25.5,-88,0,0,-0.00561402 -1023,5802:485:1,-25,-88,0,0,-0.00557672 -1024,5802:384:2,-24.5,-88,0,0,-0.00581851 -1025,5802:384:1,-24,-88,0,0,-0.00615781 -1026,3816:485:2,165.5,-88,0,0,-0.0055225 -1027,3816:486:1,166,-88,0,0,-0.00550411 -1028,3816:486:2,166.5,-88,0,0,-0.00548091 -1029,3816:487:1,167,-88,0,0,-0.00547241 -1030,3816:487:2,167.5,-88,0,0,-0.00546633 -1031,3816:488:1,168,-88,0,0,-0.00545907 -1032,3816:488:2,168.5,-88,0,0,-0.00545057 -1033,3816:489:1,169,-88,0,0,-0.00544451 -1034,3816:489:2,169.5,-88,0,0,-0.00544211 -1035,3817:380:1,170,-88,0,0,-0.00544333 -1036,3817:380:2,170.5,-88,0,0,-0.00544333 -1037,3817:381:1,171,-88,0,0,-0.00544089 -1038,3817:381:2,171.5,-88,0,0,-0.00569445 -1039,3817:382:1,172,-88,0,0,-0.00650255 -1040,3817:382:2,172.5,-88,0,0,-0.00744774 -1041,3817:383:1,173,-88,0,0,-0.00792146 -1042,3817:383:2,173.5,-88,0,0,-0.00790914 -1043,3817:384:1,174,-88,0,0,-0.00786525 -1044,3817:384:2,174.5,-88,0,0,-0.00783724 -1045,3817:485:1,175,-88,0,0,-0.00782681 -1046,3817:485:2,175.5,-88,0,0,-0.00778162 -1047,3817:486:1,176,-88,0,0,-0.00760351 -1048,3817:486:2,176.5,-88,0,0,-0.00631868 -1049,3817:487:1,177,-88,0,0,-0.00551024 -1050,3817:487:2,177.5,-88,0,0,-0.00544089 -1051,3817:488:1,178,-88,0,0,-0.00544211 -1052,3817:488:2,178.5,-88,0,0,-0.00544816 -1053,3817:489:1,179,-88,0,0,-0.005453 -1054,3817:489:2,179.5,-88,0,0,-0.00545663 -1055,3818:380:1,180,-88,0,0,-0.00546026 -1056,5818:370:3,-180,-87.5,0,0,-0.00546026 -1057,5817:479:4,-179.5,-87.5,0,0,-0.00546392 -1058,5817:479:3,-179,-87.5,0,0,-0.00546511 -1059,5817:478:4,-178.5,-87.5,0,0,-0.00546392 -1060,5817:478:3,-178,-87.5,0,0,-0.00546511 -1061,5817:477:4,-177.5,-87.5,0,0,-0.00546633 -1062,5817:477:3,-177,-87.5,0,0,-0.00546878 -1063,5817:476:4,-176.5,-87.5,0,0,-0.00547 -1064,5817:476:3,-176,-87.5,0,0,-0.00547 -1065,5817:475:4,-175.5,-87.5,0,0,-0.00547119 -1066,5817:475:3,-175,-87.5,0,0,-0.00547119 -1067,5817:374:4,-174.5,-87.5,0,0,-0.00547241 -1068,5817:374:3,-174,-87.5,0,0,-0.00547364 -1069,5817:373:4,-173.5,-87.5,0,0,-0.00547364 -1070,5817:373:3,-173,-87.5,0,0,-0.00547486 -1071,5817:372:4,-172.5,-87.5,0,0,-0.00547486 -1072,5817:372:3,-172,-87.5,0,0,-0.00547605 -1073,5817:371:4,-171.5,-87.5,0,0,-0.00547605 -1074,5817:371:3,-171,-87.5,0,0,-0.00547605 -1075,5817:370:4,-170.5,-87.5,0,0,-0.00547727 -1076,5817:370:3,-170,-87.5,0,0,-0.00547727 -1077,5816:479:4,-169.5,-87.5,0,0,-0.0054785 -1078,5816:479:3,-169,-87.5,0,0,-0.0054785 -1079,5816:478:4,-168.5,-87.5,0,0,-0.0054785 -1080,5816:478:3,-168,-87.5,0,0,-0.00547972 -1081,5816:477:4,-167.5,-87.5,0,0,-0.00547972 -1082,5816:477:3,-167,-87.5,0,0,-0.00548091 -1083,5816:476:4,-166.5,-87.5,0,0,-0.00548091 -1084,5816:476:3,-166,-87.5,0,0,-0.00547972 -1085,5816:475:4,-165.5,-87.5,0,0,-0.00547972 -1086,5816:475:3,-165,-87.5,0,0,-0.00547972 -1087,5816:374:4,-164.5,-87.5,0,0,-0.00547972 -1088,5816:374:3,-164,-87.5,0,0,-0.00547972 -1089,5816:373:4,-163.5,-87.5,0,0,-0.00547972 -1090,5816:373:3,-163,-87.5,0,0,-0.00548091 -1091,5816:372:4,-162.5,-87.5,0,0,-0.00548091 -1092,5816:372:3,-162,-87.5,0,0,-0.00548091 -1093,5816:371:4,-161.5,-87.5,0,0,-0.00548091 -1094,5816:371:3,-161,-87.5,0,0,-0.00548214 -1095,5816:370:4,-160.5,-87.5,0,0,-0.00548337 -1096,5816:370:3,-160,-87.5,0,0,-0.00548459 -1097,5815:479:4,-159.5,-87.5,0,0,-0.00548582 -1098,5815:479:3,-159,-87.5,0,0,-0.00548582 -1099,5815:478:4,-158.5,-87.5,0,0,-0.00548701 -1100,5815:478:3,-158,-87.5,0,0,-0.00548824 -1101,5815:477:4,-157.5,-87.5,0,0,-0.00548824 -1102,5815:477:3,-157,-87.5,0,0,-0.00548701 -1103,5815:476:4,-156.5,-87.5,0,0,-0.00548701 -1104,5815:476:3,-156,-87.5,0,0,-0.00548824 -1105,5815:475:4,-155.5,-87.5,0,0,-0.00548947 -1106,5815:475:3,-155,-87.5,0,0,-0.00548947 -1107,5815:374:4,-154.5,-87.5,0,0,-0.00548701 -1108,5815:374:3,-154,-87.5,0,0,-0.00548701 -1109,5815:373:4,-153.5,-87.5,0,0,-0.00548824 -1110,5815:373:3,-153,-87.5,0,0,-0.00548947 -1111,5815:372:4,-152.5,-87.5,0,0,-0.00548947 -1112,5815:372:3,-152,-87.5,0,0,-0.00548824 -1113,5815:371:4,-151.5,-87.5,0,0,-0.00548582 -1114,5815:371:3,-151,-87.5,0,0,-0.00548582 -1115,5815:370:4,-150.5,-87.5,0,0,-0.00548582 -1116,5815:370:3,-150,-87.5,0,0,-0.00548582 -1117,5814:479:4,-149.5,-87.5,0,0,-0.00548582 -1118,5814:479:3,-149,-87.5,0,0,-0.00548459 -1119,5814:478:4,-148.5,-87.5,0,0,-0.00548459 -1120,5814:478:3,-148,-87.5,0,0,-0.00548459 -1121,5814:477:4,-147.5,-87.5,0,0,-0.00548459 -1122,5814:477:3,-147,-87.5,0,0,-0.00548337 -1123,5814:476:4,-146.5,-87.5,0,0,-0.00548337 -1124,5814:476:3,-146,-87.5,0,0,-0.00548214 -1125,5814:475:4,-145.5,-87.5,0,0,-0.00548214 -1126,5814:475:3,-145,-87.5,0,0,-0.00548214 -1127,5814:374:4,-144.5,-87.5,0,0,-0.00548091 -1128,5814:374:3,-144,-87.5,0,0,-0.00548091 -1129,5814:373:4,-143.5,-87.5,0,0,-0.00548091 -1130,5814:373:3,-143,-87.5,0,0,-0.00548214 -1131,5814:372:4,-142.5,-87.5,0,0,-0.00548214 -1132,5814:372:3,-142,-87.5,0,0,-0.00548091 -1133,5814:371:4,-141.5,-87.5,0,0,-0.00547972 -1134,5814:371:3,-141,-87.5,0,0,-0.00548091 -1135,5814:370:4,-140.5,-87.5,0,0,-0.00548091 -1136,5814:370:3,-140,-87.5,0,0,-0.00548214 -1137,5813:479:4,-139.5,-87.5,0,0,-0.00548214 -1138,5813:479:3,-139,-87.5,0,0,-0.00548214 -1139,5813:478:4,-138.5,-87.5,0,0,-0.00548214 -1140,5813:478:3,-138,-87.5,0,0,-0.00548337 -1141,5813:477:4,-137.5,-87.5,0,0,-0.00548947 -1142,5813:477:3,-137,-87.5,0,0,-0.00550777 -1143,5813:476:4,-136.5,-87.5,0,0,-0.005536 -1144,5813:476:3,-136,-87.5,0,0,-0.00560158 -1145,5813:475:4,-135.5,-87.5,0,0,-0.00584441 -1146,5813:475:3,-135,-87.5,0,0,-0.00592286 -1147,5813:374:4,-134.5,-87.5,0,0,-0.00591106 -1148,5813:374:3,-134,-87.5,0,0,-0.00596912 -1149,5811:370:3,-110,-87.5,0,0,-0.00698226 -1150,5810:479:4,-109.5,-87.5,0,0,-0.00750095 -1151,5810:479:3,-109,-87.5,0,0,-0.00796395 -1152,5810:478:4,-108.5,-87.5,0,0,-0.00791092 -1153,5810:476:3,-106,-87.5,0,0,-0.005619 -1154,5810:475:4,-105.5,-87.5,0,0,-0.00555077 -1155,5810:475:3,-105,-87.5,0,0,-0.00552617 -1156,5810:374:4,-104.5,-87.5,0,0,-0.0055446 -1157,5810:374:3,-104,-87.5,0,0,-0.00578243 -1158,5810:373:4,-103.5,-87.5,0,0,-0.00623081 -1159,5810:373:3,-103,-87.5,0,0,-0.0065446 -1160,5810:372:4,-102.5,-87.5,0,0,-0.00661925 -1161,5806:371:4,-61.5,-87.5,0,0,-0.00552861 -1162,5806:371:3,-61,-87.5,0,0,-0.00552127 -1163,5806:370:4,-60.5,-87.5,0,0,-0.00550288 -1164,5806:370:3,-60,-87.5,0,0,-0.00548947 -1165,5805:479:4,-59.5,-87.5,0,0,-0.0054785 -1166,5805:479:3,-59,-87.5,0,0,-0.00546511 -1167,5805:478:4,-58.5,-87.5,0,0,-0.00545541 -1168,5805:478:3,-58,-87.5,0,0,-0.005453 -1169,5805:477:4,-57.5,-87.5,0,0,-0.00545179 -1170,5805:477:3,-57,-87.5,0,0,-0.00545057 -1171,5805:476:4,-56.5,-87.5,0,0,-0.00544935 -1172,5805:476:3,-56,-87.5,0,0,-0.00544935 -1173,5805:475:4,-55.5,-87.5,0,0,-0.00544935 -1174,5805:475:3,-55,-87.5,0,0,-0.00545057 -1175,5805:374:4,-54.5,-87.5,0,0,-0.00545057 -1176,5805:374:3,-54,-87.5,0,0,-0.00545057 -1177,5805:373:4,-53.5,-87.5,0,0,-0.00545057 -1178,5805:373:3,-53,-87.5,0,0,-0.00545179 -1179,5805:372:4,-52.5,-87.5,0,0,-0.005453 -1180,5805:372:3,-52,-87.5,0,0,-0.00545423 -1181,5805:371:4,-51.5,-87.5,0,0,-0.00545423 -1182,5805:371:3,-51,-87.5,0,0,-0.00545541 -1183,5805:370:4,-50.5,-87.5,0,0,-0.00545541 -1184,5805:370:3,-50,-87.5,0,0,-0.00545541 -1185,5804:479:4,-49.5,-87.5,0,0,-0.00545541 -1186,5804:479:3,-49,-87.5,0,0,-0.00545541 -1187,5804:478:4,-48.5,-87.5,0,0,-0.00545423 -1188,5804:478:3,-48,-87.5,0,0,-0.005453 -1189,5804:477:4,-47.5,-87.5,0,0,-0.005453 -1190,5804:477:3,-47,-87.5,0,0,-0.00545663 -1191,5804:476:4,-46.5,-87.5,0,0,-0.00545907 -1192,5804:476:3,-46,-87.5,0,0,-0.00546148 -1193,5804:475:4,-45.5,-87.5,0,0,-0.00546392 -1194,5804:475:3,-45,-87.5,0,0,-0.00546633 -1195,5804:374:4,-44.5,-87.5,0,0,-0.00546511 -1196,5804:374:3,-44,-87.5,0,0,-0.00546511 -1197,5804:373:4,-43.5,-87.5,0,0,-0.00546511 -1198,5804:373:3,-43,-87.5,0,0,-0.00546511 -1199,5804:372:4,-42.5,-87.5,0,0,-0.00546392 -1200,5804:372:3,-42,-87.5,0,0,-0.00546392 -1201,5804:371:4,-41.5,-87.5,0,0,-0.00546511 -1202,5804:371:3,-41,-87.5,0,0,-0.00546511 -1203,5804:370:4,-40.5,-87.5,0,0,-0.00546633 -1204,5804:370:3,-40,-87.5,0,0,-0.00546755 -1205,5803:479:4,-39.5,-87.5,0,0,-0.00546755 -1206,5803:479:3,-39,-87.5,0,0,-0.00546755 -1207,5803:478:4,-38.5,-87.5,0,0,-0.00546755 -1208,5803:478:3,-38,-87.5,0,0,-0.00546755 -1209,5803:477:4,-37.5,-87.5,0,0,-0.00546878 -1210,5803:477:3,-37,-87.5,0,0,-0.00546755 -1211,5803:476:4,-36.5,-87.5,0,0,-0.00546755 -1212,5803:476:3,-36,-87.5,0,0,-0.00546755 -1213,5803:475:4,-35.5,-87.5,0,0,-0.00546755 -1214,5803:475:3,-35,-87.5,0,0,-0.00546878 -1215,5803:374:4,-34.5,-87.5,0,0,-0.00546878 -1216,5803:374:3,-34,-87.5,0,0,-0.00546755 -1217,5803:373:4,-33.5,-87.5,0,0,-0.00546755 -1218,5803:373:3,-33,-87.5,0,0,-0.00546755 -1219,5803:372:4,-32.5,-87.5,0,0,-0.00546878 -1220,5803:372:3,-32,-87.5,0,0,-0.00546878 -1221,5803:371:4,-31.5,-87.5,0,0,-0.00546878 -1222,5803:371:3,-31,-87.5,0,0,-0.00547 -1223,5803:370:4,-30.5,-87.5,0,0,-0.00546878 -1224,5803:370:3,-30,-87.5,0,0,-0.00547 -1225,5802:479:4,-29.5,-87.5,0,0,-0.00547119 -1226,5802:479:3,-29,-87.5,0,0,-0.00547 -1227,5802:478:4,-28.5,-87.5,0,0,-0.00546878 -1228,5802:478:3,-28,-87.5,0,0,-0.00546755 -1229,5802:477:4,-27.5,-87.5,0,0,-0.00546633 -1230,5802:477:3,-27,-87.5,0,0,-0.00546511 -1231,5802:476:4,-26.5,-87.5,0,0,-0.00553848 -1232,5802:476:3,-26,-87.5,0,0,-0.00565409 -1233,5802:475:4,-25.5,-87.5,0,0,-0.00561402 -1234,5802:475:3,-25,-87.5,0,0,-0.00557672 -1235,5802:374:4,-24.5,-87.5,0,0,-0.00581851 -1236,5802:374:3,-24,-87.5,0,0,-0.00615781 -1237,3816:475:4,165.5,-87.5,0,0,-0.0055225 -1238,3816:476:3,166,-87.5,0,0,-0.00550411 -1239,3816:476:4,166.5,-87.5,0,0,-0.00548091 -1240,3816:477:3,167,-87.5,0,0,-0.00547241 -1241,3816:477:4,167.5,-87.5,0,0,-0.00546633 -1242,3816:478:3,168,-87.5,0,0,-0.00545907 -1243,3816:478:4,168.5,-87.5,0,0,-0.00545057 -1244,3816:479:3,169,-87.5,0,0,-0.00544451 -1245,3816:479:4,169.5,-87.5,0,0,-0.00544211 -1246,3817:370:3,170,-87.5,0,0,-0.00544333 -1247,3817:370:4,170.5,-87.5,0,0,-0.00544333 -1248,3817:371:3,171,-87.5,0,0,-0.00544089 -1249,3817:371:4,171.5,-87.5,0,0,-0.00569445 -1250,3817:372:3,172,-87.5,0,0,-0.00650255 -1251,3817:372:4,172.5,-87.5,0,0,-0.00744774 -1252,3817:373:3,173,-87.5,0,0,-0.00792146 -1253,3817:373:4,173.5,-87.5,0,0,-0.00790914 -1254,3817:374:3,174,-87.5,0,0,-0.00786525 -1255,3817:374:4,174.5,-87.5,0,0,-0.00783724 -1256,3817:475:3,175,-87.5,0,0,-0.00782681 -1257,3817:475:4,175.5,-87.5,0,0,-0.00778162 -1258,3817:476:3,176,-87.5,0,0,-0.00760351 -1259,3817:476:4,176.5,-87.5,0,0,-0.00631868 -1260,3817:477:3,177,-87.5,0,0,-0.00551024 -1261,3817:477:4,177.5,-87.5,0,0,-0.00544089 -1262,3817:478:3,178,-87.5,0,0,-0.00544211 -1263,3817:478:4,178.5,-87.5,0,0,-0.00544816 -1264,3817:479:3,179,-87.5,0,0,-0.005453 -1265,3817:479:4,179.5,-87.5,0,0,-0.00545663 -1266,3818:370:3,180,-87.5,0,0,-0.00546026 -1267,5818:370:1,-180,-87,0,0,-0.00546026 -1268,5817:479:2,-179.5,-87,0,0,-0.00546392 -1269,5817:479:1,-179,-87,0,0,-0.00546511 -1270,5817:478:2,-178.5,-87,0,0,-0.00546392 -1271,5817:478:1,-178,-87,0,0,-0.00546511 -1272,5817:477:2,-177.5,-87,0,0,-0.00546633 -1273,5817:477:1,-177,-87,0,0,-0.00546878 -1274,5817:476:2,-176.5,-87,0,0,-0.00547 -1275,5817:476:1,-176,-87,0,0,-0.00547 -1276,5817:475:2,-175.5,-87,0,0,-0.00547119 -1277,5817:475:1,-175,-87,0,0,-0.00547119 -1278,5817:374:2,-174.5,-87,0,0,-0.00547241 -1279,5817:374:1,-174,-87,0,0,-0.00547364 -1280,5817:373:2,-173.5,-87,0,0,-0.00547364 -1281,5817:373:1,-173,-87,0,0,-0.00547486 -1282,5817:372:2,-172.5,-87,0,0,-0.00547486 -1283,5817:372:1,-172,-87,0,0,-0.00547605 -1284,5817:371:2,-171.5,-87,0,0,-0.00547605 -1285,5817:371:1,-171,-87,0,0,-0.00547605 -1286,5817:370:2,-170.5,-87,0,0,-0.00547727 -1287,5817:370:1,-170,-87,0,0,-0.00547727 -1288,5816:479:2,-169.5,-87,0,0,-0.0054785 -1289,5816:479:1,-169,-87,0,0,-0.0054785 -1290,5816:478:2,-168.5,-87,0,0,-0.0054785 -1291,5816:478:1,-168,-87,0,0,-0.00547972 -1292,5816:477:2,-167.5,-87,0,0,-0.00547972 -1293,5816:477:1,-167,-87,0,0,-0.00548091 -1294,5816:476:2,-166.5,-87,0,0,-0.00548091 -1295,5816:476:1,-166,-87,0,0,-0.00547972 -1296,5816:475:2,-165.5,-87,0,0,-0.00547972 -1297,5816:475:1,-165,-87,0,0,-0.00547972 -1298,5816:374:2,-164.5,-87,0,0,-0.00547972 -1299,5816:374:1,-164,-87,0,0,-0.00547972 -1300,5816:373:2,-163.5,-87,0,0,-0.00547972 -1301,5816:373:1,-163,-87,0,0,-0.00548091 -1302,5816:372:2,-162.5,-87,0,0,-0.00548091 -1303,5816:372:1,-162,-87,0,0,-0.00548091 -1304,5816:371:2,-161.5,-87,0,0,-0.00548091 -1305,5816:371:1,-161,-87,0,0,-0.00548214 -1306,5816:370:2,-160.5,-87,0,0,-0.00548337 -1307,5816:370:1,-160,-87,0,0,-0.00548459 -1308,5815:479:2,-159.5,-87,0,0,-0.00548582 -1309,5815:479:1,-159,-87,0,0,-0.00548582 -1310,5815:478:2,-158.5,-87,0,0,-0.00548701 -1311,5815:478:1,-158,-87,0,0,-0.00548824 -1312,5815:477:2,-157.5,-87,0,0,-0.00548824 -1313,5815:477:1,-157,-87,0,0,-0.00548701 -1314,5815:476:2,-156.5,-87,0,0,-0.00548701 -1315,5815:476:1,-156,-87,0,0,-0.00548824 -1316,5815:475:2,-155.5,-87,0,0,-0.00548947 -1317,5815:475:1,-155,-87,0,0,-0.00548947 -1318,5815:374:2,-154.5,-87,0,0,-0.00548701 -1319,5815:374:1,-154,-87,0,0,-0.00548701 -1320,5815:373:2,-153.5,-87,0,0,-0.00548824 -1321,5815:373:1,-153,-87,0,0,-0.00548947 -1322,5815:372:2,-152.5,-87,0,0,-0.00548947 -1323,5815:372:1,-152,-87,0,0,-0.00548824 -1324,5815:371:2,-151.5,-87,0,0,-0.00548582 -1325,5815:371:1,-151,-87,0,0,-0.00548582 -1326,5815:370:2,-150.5,-87,0,0,-0.00548582 -1327,5815:370:1,-150,-87,0,0,-0.00548582 -1328,5814:479:2,-149.5,-87,0,0,-0.00548582 -1329,5814:479:1,-149,-87,0,0,-0.00548459 -1330,5814:478:2,-148.5,-87,0,0,-0.00548459 -1331,5814:478:1,-148,-87,0,0,-0.00548459 -1332,5814:477:2,-147.5,-87,0,0,-0.00548459 -1333,5814:477:1,-147,-87,0,0,-0.00548337 -1334,5814:476:2,-146.5,-87,0,0,-0.00548337 -1335,5814:476:1,-146,-87,0,0,-0.00548214 -1336,5814:475:2,-145.5,-87,0,0,-0.00548214 -1337,5814:475:1,-145,-87,0,0,-0.00548214 -1338,5814:374:2,-144.5,-87,0,0,-0.00548091 -1339,5814:374:1,-144,-87,0,0,-0.00548091 -1340,5814:373:2,-143.5,-87,0,0,-0.00548091 -1341,5814:373:1,-143,-87,0,0,-0.00548214 -1342,5814:372:2,-142.5,-87,0,0,-0.00548214 -1343,5814:372:1,-142,-87,0,0,-0.00548091 -1344,5814:371:2,-141.5,-87,0,0,-0.00547972 -1345,5814:371:1,-141,-87,0,0,-0.00548091 -1346,5814:370:2,-140.5,-87,0,0,-0.00548091 -1347,5814:370:1,-140,-87,0,0,-0.00548214 -1348,5813:479:2,-139.5,-87,0,0,-0.00548214 -1349,5813:479:1,-139,-87,0,0,-0.00548214 -1350,5813:478:2,-138.5,-87,0,0,-0.00548214 -1351,5813:478:1,-138,-87,0,0,-0.00548337 -1352,5813:477:2,-137.5,-87,0,0,-0.00548947 -1353,5813:477:1,-137,-87,0,0,-0.00550777 -1354,5813:476:2,-136.5,-87,0,0,-0.005536 -1355,5813:476:1,-136,-87,0,0,-0.00560158 -1356,5813:475:2,-135.5,-87,0,0,-0.00584441 -1357,5813:475:1,-135,-87,0,0,-0.00592286 -1358,5813:374:2,-134.5,-87,0,0,-0.00591106 -1359,5813:374:1,-134,-87,0,0,-0.00596912 -1360,5811:370:1,-110,-87,0,0,-0.00698226 -1361,5810:479:2,-109.5,-87,0,0,-0.00750095 -1362,5810:479:1,-109,-87,0,0,-0.00796395 -1363,5810:478:2,-108.5,-87,0,0,-0.00791092 -1364,5810:476:1,-106,-87,0,0,-0.005619 -1365,5810:475:2,-105.5,-87,0,0,-0.00555077 -1366,5810:475:1,-105,-87,0,0,-0.00552617 -1367,5810:374:2,-104.5,-87,0,0,-0.0055446 -1368,5810:374:1,-104,-87,0,0,-0.00578243 -1369,5810:373:2,-103.5,-87,0,0,-0.00623081 -1370,5810:373:1,-103,-87,0,0,-0.0065446 -1371,5810:372:2,-102.5,-87,0,0,-0.00661925 -1372,5806:371:2,-61.5,-87,0,0,-0.00552861 -1373,5806:371:1,-61,-87,0,0,-0.00552127 -1374,5806:370:2,-60.5,-87,0,0,-0.00550288 -1375,5806:370:1,-60,-87,0,0,-0.00548947 -1376,5805:479:2,-59.5,-87,0,0,-0.0054785 -1377,5805:479:1,-59,-87,0,0,-0.00546511 -1378,5805:478:2,-58.5,-87,0,0,-0.00545541 -1379,5805:478:1,-58,-87,0,0,-0.005453 -1380,5805:477:2,-57.5,-87,0,0,-0.00545179 -1381,5805:477:1,-57,-87,0,0,-0.00545057 -1382,5805:476:2,-56.5,-87,0,0,-0.00544935 -1383,5805:476:1,-56,-87,0,0,-0.00544935 -1384,5805:475:2,-55.5,-87,0,0,-0.00544935 -1385,5805:475:1,-55,-87,0,0,-0.00545057 -1386,5805:374:2,-54.5,-87,0,0,-0.00545057 -1387,5805:374:1,-54,-87,0,0,-0.00545057 -1388,5805:373:2,-53.5,-87,0,0,-0.00545057 -1389,5805:373:1,-53,-87,0,0,-0.00545179 -1390,5805:372:2,-52.5,-87,0,0,-0.005453 -1391,5805:372:1,-52,-87,0,0,-0.00545423 -1392,5805:371:2,-51.5,-87,0,0,-0.00545423 -1393,5805:371:1,-51,-87,0,0,-0.00545541 -1394,5805:370:2,-50.5,-87,0,0,-0.00545541 -1395,5805:370:1,-50,-87,0,0,-0.00545541 -1396,5804:479:2,-49.5,-87,0,0,-0.00545541 -1397,5804:479:1,-49,-87,0,0,-0.00545541 -1398,5804:478:2,-48.5,-87,0,0,-0.00545423 -1399,5804:478:1,-48,-87,0,0,-0.005453 -1400,5804:477:2,-47.5,-87,0,0,-0.005453 -1401,5804:477:1,-47,-87,0,0,-0.00545663 -1402,5804:476:2,-46.5,-87,0,0,-0.00545907 -1403,5804:476:1,-46,-87,0,0,-0.00546148 -1404,5804:475:2,-45.5,-87,0,0,-0.00546392 -1405,5804:475:1,-45,-87,0,0,-0.00546633 -1406,5804:374:2,-44.5,-87,0,0,-0.00546511 -1407,5804:374:1,-44,-87,0,0,-0.00546511 -1408,5804:373:2,-43.5,-87,0,0,-0.00546511 -1409,5804:373:1,-43,-87,0,0,-0.00546511 -1410,5804:372:2,-42.5,-87,0,0,-0.00546392 -1411,5804:372:1,-42,-87,0,0,-0.00546392 -1412,5804:371:2,-41.5,-87,0,0,-0.00546511 -1413,5804:371:1,-41,-87,0,0,-0.00546511 -1414,5804:370:2,-40.5,-87,0,0,-0.00546633 -1415,5804:370:1,-40,-87,0,0,-0.00546755 -1416,5803:479:2,-39.5,-87,0,0,-0.00546755 -1417,5803:479:1,-39,-87,0,0,-0.00546755 -1418,5803:478:2,-38.5,-87,0,0,-0.00546755 -1419,5803:478:1,-38,-87,0,0,-0.00546755 -1420,5803:477:2,-37.5,-87,0,0,-0.00546878 -1421,5803:477:1,-37,-87,0,0,-0.00546755 -1422,5803:476:2,-36.5,-87,0,0,-0.00546755 -1423,5803:476:1,-36,-87,0,0,-0.00546755 -1424,5803:475:2,-35.5,-87,0,0,-0.00546755 -1425,5803:475:1,-35,-87,0,0,-0.00546878 -1426,5803:374:2,-34.5,-87,0,0,-0.00546878 -1427,5803:374:1,-34,-87,0,0,-0.00546755 -1428,5803:373:2,-33.5,-87,0,0,-0.00546755 -1429,5803:373:1,-33,-87,0,0,-0.00546755 -1430,5803:372:2,-32.5,-87,0,0,-0.00546878 -1431,5803:372:1,-32,-87,0,0,-0.00546878 -1432,5803:371:2,-31.5,-87,0,0,-0.00546878 -1433,5803:371:1,-31,-87,0,0,-0.00547 -1434,5803:370:2,-30.5,-87,0,0,-0.00546878 -1435,5803:370:1,-30,-87,0,0,-0.00547 -1436,5802:479:2,-29.5,-87,0,0,-0.00547119 -1437,5802:479:1,-29,-87,0,0,-0.00547 -1438,5802:478:2,-28.5,-87,0,0,-0.00546878 -1439,5802:478:1,-28,-87,0,0,-0.00546755 -1440,5802:477:2,-27.5,-87,0,0,-0.00546633 -1441,5802:477:1,-27,-87,0,0,-0.00546511 -1442,5802:476:2,-26.5,-87,0,0,-0.00553848 -1443,5802:476:1,-26,-87,0,0,-0.00565409 -1444,5802:475:2,-25.5,-87,0,0,-0.00561402 -1445,5802:475:1,-25,-87,0,0,-0.00557672 -1446,5802:374:2,-24.5,-87,0,0,-0.00581851 -1447,5802:374:1,-24,-87,0,0,-0.00615781 -1448,3816:475:2,165.5,-87,0,0,-0.0055225 -1449,3816:476:1,166,-87,0,0,-0.00550411 -1450,3816:476:2,166.5,-87,0,0,-0.00548091 -1451,3816:477:1,167,-87,0,0,-0.00547241 -1452,3816:477:2,167.5,-87,0,0,-0.00546633 -1453,3816:478:1,168,-87,0,0,-0.00545907 -1454,3816:478:2,168.5,-87,0,0,-0.00545057 -1455,3816:479:1,169,-87,0,0,-0.00544451 -1456,3816:479:2,169.5,-87,0,0,-0.00544211 -1457,3817:370:1,170,-87,0,0,-0.00544333 -1458,3817:370:2,170.5,-87,0,0,-0.00544333 -1459,3817:371:1,171,-87,0,0,-0.00544089 -1460,3817:371:2,171.5,-87,0,0,-0.00569445 -1461,3817:372:1,172,-87,0,0,-0.00650255 -1462,3817:372:2,172.5,-87,0,0,-0.00744774 -1463,3817:373:1,173,-87,0,0,-0.00792146 -1464,3817:373:2,173.5,-87,0,0,-0.00790914 -1465,3817:374:1,174,-87,0,0,-0.00786525 -1466,3817:374:2,174.5,-87,0,0,-0.00783724 -1467,3817:475:1,175,-87,0,0,-0.00782681 -1468,3817:475:2,175.5,-87,0,0,-0.00778162 -1469,3817:476:1,176,-87,0,0,-0.00760351 -1470,3817:476:2,176.5,-87,0,0,-0.00631868 -1471,3817:477:1,177,-87,0,0,-0.00551024 -1472,3817:477:2,177.5,-87,0,0,-0.00544089 -1473,3817:478:1,178,-87,0,0,-0.00544211 -1474,3817:478:2,178.5,-87,0,0,-0.00544816 -1475,3817:479:1,179,-87,0,0,-0.005453 -1476,3817:479:2,179.5,-87,0,0,-0.00545663 -1477,3818:370:1,180,-87,0,0,-0.00546026 -1478,5818:360:3,-180,-86.5,0,0,-0.00546026 -1479,5817:469:4,-179.5,-86.5,0,0,-0.00546392 -1480,5817:469:3,-179,-86.5,0,0,-0.00546511 -1481,5817:468:4,-178.5,-86.5,0,0,-0.00546392 -1482,5817:468:3,-178,-86.5,0,0,-0.00546511 -1483,5817:467:4,-177.5,-86.5,0,0,-0.00546633 -1484,5817:467:3,-177,-86.5,0,0,-0.00546878 -1485,5817:466:4,-176.5,-86.5,0,0,-0.00547 -1486,5817:466:3,-176,-86.5,0,0,-0.00547 -1487,5817:465:4,-175.5,-86.5,0,0,-0.00547119 -1488,5817:465:3,-175,-86.5,0,0,-0.00547119 -1489,5817:364:4,-174.5,-86.5,0,0,-0.00547241 -1490,5817:364:3,-174,-86.5,0,0,-0.00547364 -1491,5817:363:4,-173.5,-86.5,0,0,-0.00547364 -1492,5817:363:3,-173,-86.5,0,0,-0.00547486 -1493,5817:362:4,-172.5,-86.5,0,0,-0.00547486 -1494,5817:362:3,-172,-86.5,0,0,-0.00547605 -1495,5817:361:4,-171.5,-86.5,0,0,-0.00547605 -1496,5817:361:3,-171,-86.5,0,0,-0.00547605 -1497,5817:360:4,-170.5,-86.5,0,0,-0.00547727 -1498,5817:360:3,-170,-86.5,0,0,-0.00547727 -1499,5816:469:4,-169.5,-86.5,0,0,-0.0054785 -1500,5816:469:3,-169,-86.5,0,0,-0.0054785 -1501,5816:468:4,-168.5,-86.5,0,0,-0.0054785 -1502,5816:468:3,-168,-86.5,0,0,-0.00547972 -1503,5816:467:4,-167.5,-86.5,0,0,-0.00547972 -1504,5816:467:3,-167,-86.5,0,0,-0.00548091 -1505,5816:466:4,-166.5,-86.5,0,0,-0.00548091 -1506,5816:466:3,-166,-86.5,0,0,-0.00547972 -1507,5816:465:4,-165.5,-86.5,0,0,-0.00547972 -1508,5816:465:3,-165,-86.5,0,0,-0.00547972 -1509,5816:364:4,-164.5,-86.5,0,0,-0.00547972 -1510,5816:364:3,-164,-86.5,0,0,-0.00547972 -1511,5816:363:4,-163.5,-86.5,0,0,-0.00547972 -1512,5816:363:3,-163,-86.5,0,0,-0.00548091 -1513,5816:362:4,-162.5,-86.5,0,0,-0.00548091 -1514,5816:362:3,-162,-86.5,0,0,-0.00548091 -1515,5816:361:4,-161.5,-86.5,0,0,-0.00548091 -1516,5816:361:3,-161,-86.5,0,0,-0.00548214 -1517,5816:360:4,-160.5,-86.5,0,0,-0.00548337 -1518,5816:360:3,-160,-86.5,0,0,-0.00548459 -1519,5815:469:4,-159.5,-86.5,0,0,-0.00548582 -1520,5815:469:3,-159,-86.5,0,0,-0.00548582 -1521,5815:468:4,-158.5,-86.5,0,0,-0.00548701 -1522,5815:468:3,-158,-86.5,0,0,-0.00548824 -1523,5815:467:4,-157.5,-86.5,0,0,-0.00548824 -1524,5815:467:3,-157,-86.5,0,0,-0.00548701 -1525,5815:466:4,-156.5,-86.5,0,0,-0.00548701 -1526,5815:466:3,-156,-86.5,0,0,-0.00548824 -1527,5815:465:4,-155.5,-86.5,0,0,-0.00548947 -1528,5815:465:3,-155,-86.5,0,0,-0.00548947 -1529,5815:364:4,-154.5,-86.5,0,0,-0.00548701 -1530,5815:364:3,-154,-86.5,0,0,-0.00548701 -1531,5815:363:4,-153.5,-86.5,0,0,-0.00548824 -1532,5815:363:3,-153,-86.5,0,0,-0.00548947 -1533,5815:362:4,-152.5,-86.5,0,0,-0.00548947 -1534,5815:362:3,-152,-86.5,0,0,-0.00548824 -1535,5815:361:4,-151.5,-86.5,0,0,-0.00548582 -1536,5815:361:3,-151,-86.5,0,0,-0.00548582 -1537,5815:360:4,-150.5,-86.5,0,0,-0.00548582 -1538,5815:360:3,-150,-86.5,0,0,-0.00548582 -1539,5814:469:4,-149.5,-86.5,0,0,-0.00548582 -1540,5814:469:3,-149,-86.5,0,0,-0.00548459 -1541,5814:468:4,-148.5,-86.5,0,0,-0.00548459 -1542,5814:468:3,-148,-86.5,0,0,-0.00548459 -1543,5814:467:4,-147.5,-86.5,0,0,-0.00548459 -1544,5814:467:3,-147,-86.5,0,0,-0.00548337 -1545,5814:466:4,-146.5,-86.5,0,0,-0.00548337 -1546,5814:466:3,-146,-86.5,0,0,-0.00548214 -1547,5814:465:4,-145.5,-86.5,0,0,-0.00548214 -1548,5814:465:3,-145,-86.5,0,0,-0.00548214 -1549,5814:364:4,-144.5,-86.5,0,0,-0.00548091 -1550,5814:364:3,-144,-86.5,0,0,-0.00548091 -1551,5814:363:4,-143.5,-86.5,0,0,-0.00548091 -1552,5814:363:3,-143,-86.5,0,0,-0.00548214 -1553,5814:362:4,-142.5,-86.5,0,0,-0.00548214 -1554,5814:362:3,-142,-86.5,0,0,-0.00548091 -1555,5814:361:4,-141.5,-86.5,0,0,-0.00547972 -1556,5814:361:3,-141,-86.5,0,0,-0.00548091 -1557,5814:360:4,-140.5,-86.5,0,0,-0.00548091 -1558,5814:360:3,-140,-86.5,0,0,-0.00548214 -1559,5813:469:4,-139.5,-86.5,0,0,-0.00548214 -1560,5813:469:3,-139,-86.5,0,0,-0.00548214 -1561,5813:468:4,-138.5,-86.5,0,0,-0.00548214 -1562,5813:468:3,-138,-86.5,0,0,-0.00548337 -1563,5813:467:4,-137.5,-86.5,0,0,-0.00548947 -1564,5813:467:3,-137,-86.5,0,0,-0.00550777 -1565,5813:466:4,-136.5,-86.5,0,0,-0.005536 -1566,5813:466:3,-136,-86.5,0,0,-0.00560158 -1567,5813:465:4,-135.5,-86.5,0,0,-0.00584441 -1568,5813:465:3,-135,-86.5,0,0,-0.00592286 -1569,5813:364:4,-134.5,-86.5,0,0,-0.00591106 -1570,5813:364:3,-134,-86.5,0,0,-0.00596912 -1571,5811:360:3,-110,-86.5,0,0,-0.00698226 -1572,5810:469:4,-109.5,-86.5,0,0,-0.00750095 -1573,5810:469:3,-109,-86.5,0,0,-0.00796395 -1574,5810:468:4,-108.5,-86.5,0,0,-0.00791092 -1575,5810:466:3,-106,-86.5,0,0,-0.005619 -1576,5810:465:4,-105.5,-86.5,0,0,-0.00555077 -1577,5810:465:3,-105,-86.5,0,0,-0.00552617 -1578,5810:364:4,-104.5,-86.5,0,0,-0.0055446 -1579,5810:364:3,-104,-86.5,0,0,-0.00578243 -1580,5810:363:4,-103.5,-86.5,0,0,-0.00623081 -1581,5810:363:3,-103,-86.5,0,0,-0.0065446 -1582,5810:362:4,-102.5,-86.5,0,0,-0.00661925 -1583,5806:361:4,-61.5,-86.5,0,0,-0.00552861 -1584,5806:361:3,-61,-86.5,0,0,-0.00552127 -1585,5806:360:4,-60.5,-86.5,0,0,-0.00550288 -1586,5806:360:3,-60,-86.5,0,0,-0.00548947 -1587,5805:469:4,-59.5,-86.5,0,0,-0.0054785 -1588,5805:469:3,-59,-86.5,0,0,-0.00546511 -1589,5805:468:4,-58.5,-86.5,0,0,-0.00545541 -1590,5805:468:3,-58,-86.5,0,0,-0.005453 -1591,5805:467:4,-57.5,-86.5,0,0,-0.00545179 -1592,5805:467:3,-57,-86.5,0,0,-0.00545057 -1593,5805:466:4,-56.5,-86.5,0,0,-0.00544935 -1594,5805:466:3,-56,-86.5,0,0,-0.00544935 -1595,5805:465:4,-55.5,-86.5,0,0,-0.00544935 -1596,5805:465:3,-55,-86.5,0,0,-0.00545057 -1597,5805:364:4,-54.5,-86.5,0,0,-0.00545057 -1598,5805:364:3,-54,-86.5,0,0,-0.00545057 -1599,5805:363:4,-53.5,-86.5,0,0,-0.00545057 -1600,5805:363:3,-53,-86.5,0,0,-0.00545179 -1601,5805:362:4,-52.5,-86.5,0,0,-0.005453 -1602,5805:362:3,-52,-86.5,0,0,-0.00545423 -1603,5805:361:4,-51.5,-86.5,0,0,-0.00545423 -1604,5805:361:3,-51,-86.5,0,0,-0.00545541 -1605,5805:360:4,-50.5,-86.5,0,0,-0.00545541 -1606,5805:360:3,-50,-86.5,0,0,-0.00545541 -1607,5804:469:4,-49.5,-86.5,0,0,-0.00545541 -1608,5804:469:3,-49,-86.5,0,0,-0.00545541 -1609,5804:468:4,-48.5,-86.5,0,0,-0.00545423 -1610,5804:468:3,-48,-86.5,0,0,-0.005453 -1611,5804:467:4,-47.5,-86.5,0,0,-0.005453 -1612,5804:467:3,-47,-86.5,0,0,-0.00545663 -1613,5804:466:4,-46.5,-86.5,0,0,-0.00545907 -1614,5804:466:3,-46,-86.5,0,0,-0.00546148 -1615,5804:465:4,-45.5,-86.5,0,0,-0.00546392 -1616,5804:465:3,-45,-86.5,0,0,-0.00546633 -1617,5804:364:4,-44.5,-86.5,0,0,-0.00546511 -1618,5804:364:3,-44,-86.5,0,0,-0.00546511 -1619,5804:363:4,-43.5,-86.5,0,0,-0.00546511 -1620,5804:363:3,-43,-86.5,0,0,-0.00546511 -1621,5804:362:4,-42.5,-86.5,0,0,-0.00546392 -1622,5804:362:3,-42,-86.5,0,0,-0.00546392 -1623,5804:361:4,-41.5,-86.5,0,0,-0.00546511 -1624,5804:361:3,-41,-86.5,0,0,-0.00546511 -1625,5804:360:4,-40.5,-86.5,0,0,-0.00546633 -1626,5804:360:3,-40,-86.5,0,0,-0.00546755 -1627,5803:469:4,-39.5,-86.5,0,0,-0.00546755 -1628,5803:469:3,-39,-86.5,0,0,-0.00546755 -1629,5803:468:4,-38.5,-86.5,0,0,-0.00546755 -1630,5803:468:3,-38,-86.5,0,0,-0.00546755 -1631,5803:467:4,-37.5,-86.5,0,0,-0.00546878 -1632,5803:467:3,-37,-86.5,0,0,-0.00546755 -1633,5803:466:4,-36.5,-86.5,0,0,-0.00546755 -1634,5803:466:3,-36,-86.5,0,0,-0.00546755 -1635,5803:465:4,-35.5,-86.5,0,0,-0.00546755 -1636,5803:465:3,-35,-86.5,0,0,-0.00546878 -1637,5803:364:4,-34.5,-86.5,0,0,-0.00546878 -1638,5803:364:3,-34,-86.5,0,0,-0.00546755 -1639,5803:363:4,-33.5,-86.5,0,0,-0.00546755 -1640,5803:363:3,-33,-86.5,0,0,-0.00546755 -1641,5803:362:4,-32.5,-86.5,0,0,-0.00546878 -1642,5803:362:3,-32,-86.5,0,0,-0.00546878 -1643,5803:361:4,-31.5,-86.5,0,0,-0.00546878 -1644,5803:361:3,-31,-86.5,0,0,-0.00547 -1645,5803:360:4,-30.5,-86.5,0,0,-0.00546878 -1646,5803:360:3,-30,-86.5,0,0,-0.00547 -1647,5802:469:4,-29.5,-86.5,0,0,-0.00547119 -1648,5802:469:3,-29,-86.5,0,0,-0.00547 -1649,5802:468:4,-28.5,-86.5,0,0,-0.00546878 -1650,5802:468:3,-28,-86.5,0,0,-0.00546755 -1651,5802:467:4,-27.5,-86.5,0,0,-0.00546633 -1652,5802:467:3,-27,-86.5,0,0,-0.00546511 -1653,5802:466:4,-26.5,-86.5,0,0,-0.00553848 -1654,5802:466:3,-26,-86.5,0,0,-0.00565409 -1655,5802:465:4,-25.5,-86.5,0,0,-0.00561402 -1656,5802:465:3,-25,-86.5,0,0,-0.00557672 -1657,5802:364:4,-24.5,-86.5,0,0,-0.00581851 -1658,5802:364:3,-24,-86.5,0,0,-0.00615781 -1659,3816:465:4,165.5,-86.5,0,0,-0.0055225 -1660,3816:466:3,166,-86.5,0,0,-0.00550411 -1661,3816:466:4,166.5,-86.5,0,0,-0.00548091 -1662,3816:467:3,167,-86.5,0,0,-0.00547241 -1663,3816:467:4,167.5,-86.5,0,0,-0.00546633 -1664,3816:468:3,168,-86.5,0,0,-0.00545907 -1665,3816:468:4,168.5,-86.5,0,0,-0.00545057 -1666,3816:469:3,169,-86.5,0,0,-0.00544451 -1667,3816:469:4,169.5,-86.5,0,0,-0.00544211 -1668,3817:360:3,170,-86.5,0,0,-0.00544333 -1669,3817:360:4,170.5,-86.5,0,0,-0.00544333 -1670,3817:361:3,171,-86.5,0,0,-0.00544089 -1671,3817:361:4,171.5,-86.5,0,0,-0.00569445 -1672,3817:362:3,172,-86.5,0,0,-0.00650255 -1673,3817:362:4,172.5,-86.5,0,0,-0.00744774 -1674,3817:363:3,173,-86.5,0,0,-0.00792146 -1675,3817:363:4,173.5,-86.5,0,0,-0.00790914 -1676,3817:364:3,174,-86.5,0,0,-0.00786525 -1677,3817:364:4,174.5,-86.5,0,0,-0.00783724 -1678,3817:465:3,175,-86.5,0,0,-0.00782681 -1679,3817:465:4,175.5,-86.5,0,0,-0.00778162 -1680,3817:466:3,176,-86.5,0,0,-0.00760351 -1681,3817:466:4,176.5,-86.5,0,0,-0.00631868 -1682,3817:467:3,177,-86.5,0,0,-0.00551024 -1683,3817:467:4,177.5,-86.5,0,0,-0.00544089 -1684,3817:468:3,178,-86.5,0,0,-0.00544211 -1685,3817:468:4,178.5,-86.5,0,0,-0.00544816 -1686,3817:469:3,179,-86.5,0,0,-0.005453 -1687,3817:469:4,179.5,-86.5,0,0,-0.00545663 -1688,3818:360:3,180,-86.5,0,0,-0.00546026 -1689,5818:360:1,-180,-86,0,0,-0.00546026 -1690,5817:469:2,-179.5,-86,0,0,-0.00546392 -1691,5817:469:1,-179,-86,0,0,-0.00546511 -1692,5817:468:2,-178.5,-86,0,0,-0.00546392 -1693,5817:468:1,-178,-86,0,0,-0.00546511 -1694,5817:467:2,-177.5,-86,0,0,-0.00546633 -1695,5817:467:1,-177,-86,0,0,-0.00546878 -1696,5817:466:2,-176.5,-86,0,0,-0.00547 -1697,5817:466:1,-176,-86,0,0,-0.00547 -1698,5817:465:2,-175.5,-86,0,0,-0.00547119 -1699,5817:465:1,-175,-86,0,0,-0.00547119 -1700,5817:364:2,-174.5,-86,0,0,-0.00547241 -1701,5817:364:1,-174,-86,0,0,-0.00547364 -1702,5817:363:2,-173.5,-86,0,0,-0.00547364 -1703,5817:363:1,-173,-86,0,0,-0.00547486 -1704,5817:362:2,-172.5,-86,0,0,-0.00547486 -1705,5817:362:1,-172,-86,0,0,-0.00547605 -1706,5817:361:2,-171.5,-86,0,0,-0.00547605 -1707,5817:361:1,-171,-86,0,0,-0.00547605 -1708,5817:360:2,-170.5,-86,0,0,-0.00547727 -1709,5817:360:1,-170,-86,0,0,-0.00547727 -1710,5816:469:2,-169.5,-86,0,0,-0.0054785 -1711,5816:469:1,-169,-86,0,0,-0.0054785 -1712,5816:468:2,-168.5,-86,0,0,-0.0054785 -1713,5816:468:1,-168,-86,0,0,-0.00547972 -1714,5816:467:2,-167.5,-86,0,0,-0.00547972 -1715,5816:467:1,-167,-86,0,0,-0.00548091 -1716,5816:466:2,-166.5,-86,0,0,-0.00548091 -1717,5816:466:1,-166,-86,0,0,-0.00547972 -1718,5816:465:2,-165.5,-86,0,0,-0.00547972 -1719,5816:465:1,-165,-86,0,0,-0.00547972 -1720,5816:364:2,-164.5,-86,0,0,-0.00547972 -1721,5816:364:1,-164,-86,0,0,-0.00547972 -1722,5816:363:2,-163.5,-86,0,0,-0.00547972 -1723,5816:363:1,-163,-86,0,0,-0.00548091 -1724,5816:362:2,-162.5,-86,0,0,-0.00548091 -1725,5816:362:1,-162,-86,0,0,-0.00548091 -1726,5816:361:2,-161.5,-86,0,0,-0.00548091 -1727,5816:361:1,-161,-86,0,0,-0.00548214 -1728,5816:360:2,-160.5,-86,0,0,-0.00548337 -1729,5816:360:1,-160,-86,0,0,-0.00548459 -1730,5815:469:2,-159.5,-86,0,0,-0.00548582 -1731,5815:469:1,-159,-86,0,0,-0.00548582 -1732,5815:468:2,-158.5,-86,0,0,-0.00548701 -1733,5815:468:1,-158,-86,0,0,-0.00548824 -1734,5815:467:2,-157.5,-86,0,0,-0.00548824 -1735,5815:467:1,-157,-86,0,0,-0.00548701 -1736,5815:466:2,-156.5,-86,0,0,-0.00548701 -1737,5815:466:1,-156,-86,0,0,-0.00548824 -1738,5815:465:2,-155.5,-86,0,0,-0.00548947 -1739,5815:465:1,-155,-86,0,0,-0.00548947 -1740,5815:364:2,-154.5,-86,0,0,-0.00548701 -1741,5815:364:1,-154,-86,0,0,-0.00548701 -1742,5815:363:2,-153.5,-86,0,0,-0.00548824 -1743,5815:363:1,-153,-86,0,0,-0.00548947 -1744,5815:362:2,-152.5,-86,0,0,-0.00548947 -1745,5815:362:1,-152,-86,0,0,-0.00548824 -1746,5815:361:2,-151.5,-86,0,0,-0.00548582 -1747,5815:361:1,-151,-86,0,0,-0.00548582 -1748,5815:360:2,-150.5,-86,0,0,-0.00548582 -1749,5815:360:1,-150,-86,0,0,-0.00548582 -1750,5814:469:2,-149.5,-86,0,0,-0.00548582 -1751,5814:469:1,-149,-86,0,0,-0.00548459 -1752,5814:468:2,-148.5,-86,0,0,-0.00548459 -1753,5814:468:1,-148,-86,0,0,-0.00548459 -1754,5814:467:2,-147.5,-86,0,0,-0.00548459 -1755,5814:467:1,-147,-86,0,0,-0.00548337 -1756,5814:466:2,-146.5,-86,0,0,-0.00548337 -1757,5814:466:1,-146,-86,0,0,-0.00548214 -1758,5814:465:2,-145.5,-86,0,0,-0.00548214 -1759,5814:465:1,-145,-86,0,0,-0.00548214 -1760,5814:364:2,-144.5,-86,0,0,-0.00548091 -1761,5814:364:1,-144,-86,0,0,-0.00548091 -1762,5814:363:2,-143.5,-86,0,0,-0.00548091 -1763,5814:363:1,-143,-86,0,0,-0.00548214 -1764,5814:362:2,-142.5,-86,0,0,-0.00548214 -1765,5814:362:1,-142,-86,0,0,-0.00548091 -1766,5814:361:2,-141.5,-86,0,0,-0.00547972 -1767,5814:361:1,-141,-86,0,0,-0.00548091 -1768,5814:360:2,-140.5,-86,0,0,-0.00548091 -1769,5814:360:1,-140,-86,0,0,-0.00548214 -1770,5813:469:2,-139.5,-86,0,0,-0.00548214 -1771,5813:469:1,-139,-86,0,0,-0.00548214 -1772,5813:468:2,-138.5,-86,0,0,-0.00548214 -1773,5813:468:1,-138,-86,0,0,-0.00548337 -1774,5813:467:2,-137.5,-86,0,0,-0.00548947 -1775,5813:467:1,-137,-86,0,0,-0.00550777 -1776,5813:466:2,-136.5,-86,0,0,-0.005536 -1777,5813:466:1,-136,-86,0,0,-0.00560158 -1778,5813:465:2,-135.5,-86,0,0,-0.00584441 -1779,5813:465:1,-135,-86,0,0,-0.00592286 -1780,5813:364:2,-134.5,-86,0,0,-0.00591106 -1781,5813:364:1,-134,-86,0,0,-0.00596912 -1782,5811:360:1,-110,-86,0,0,-0.00698226 -1783,5810:469:2,-109.5,-86,0,0,-0.00750095 -1784,5810:469:1,-109,-86,0,0,-0.00796395 -1785,5810:468:2,-108.5,-86,0,0,-0.00791092 -1786,5810:466:1,-106,-86,0,0,-0.005619 -1787,5810:465:2,-105.5,-86,0,0,-0.00555077 -1788,5810:465:1,-105,-86,0,0,-0.00552617 -1789,5810:364:2,-104.5,-86,0,0,-0.0055446 -1790,5810:364:1,-104,-86,0,0,-0.00578243 -1791,5810:363:2,-103.5,-86,0,0,-0.00623081 -1792,5810:363:1,-103,-86,0,0,-0.0065446 -1793,5810:362:2,-102.5,-86,0,0,-0.00661925 -1794,5806:361:2,-61.5,-86,0,0,-0.00552861 -1795,5806:361:1,-61,-86,0,0,-0.00552127 -1796,5806:360:2,-60.5,-86,0,0,-0.00550288 -1797,5806:360:1,-60,-86,0,0,-0.00548947 -1798,5805:469:2,-59.5,-86,0,0,-0.0054785 -1799,5805:469:1,-59,-86,0,0,-0.00546511 -1800,5805:468:2,-58.5,-86,0,0,-0.00545541 -1801,5805:468:1,-58,-86,0,0,-0.005453 -1802,5805:467:2,-57.5,-86,0,0,-0.00545179 -1803,5805:467:1,-57,-86,0,0,-0.00545057 -1804,5805:466:2,-56.5,-86,0,0,-0.00544935 -1805,5805:466:1,-56,-86,0,0,-0.00544935 -1806,5805:465:2,-55.5,-86,0,0,-0.00544935 -1807,5805:465:1,-55,-86,0,0,-0.00545057 -1808,5805:364:2,-54.5,-86,0,0,-0.00545057 -1809,5805:364:1,-54,-86,0,0,-0.00545057 -1810,5805:363:2,-53.5,-86,0,0,-0.00545057 -1811,5805:363:1,-53,-86,0,0,-0.00545179 -1812,5805:362:2,-52.5,-86,0,0,-0.005453 -1813,5805:362:1,-52,-86,0,0,-0.00545423 -1814,5805:361:2,-51.5,-86,0,0,-0.00545423 -1815,5805:361:1,-51,-86,0,0,-0.00545541 -1816,5805:360:2,-50.5,-86,0,0,-0.00545541 -1817,5805:360:1,-50,-86,0,0,-0.00545541 -1818,5804:469:2,-49.5,-86,0,0,-0.00545541 -1819,5804:469:1,-49,-86,0,0,-0.00545541 -1820,5804:468:2,-48.5,-86,0,0,-0.00545423 -1821,5804:468:1,-48,-86,0,0,-0.005453 -1822,5804:467:2,-47.5,-86,0,0,-0.005453 -1823,5804:467:1,-47,-86,0,0,-0.00545663 -1824,5804:466:2,-46.5,-86,0,0,-0.00545907 -1825,5804:466:1,-46,-86,0,0,-0.00546148 -1826,5804:465:2,-45.5,-86,0,0,-0.00546392 -1827,5804:465:1,-45,-86,0,0,-0.00546633 -1828,5804:364:2,-44.5,-86,0,0,-0.00546511 -1829,5804:364:1,-44,-86,0,0,-0.00546511 -1830,5804:363:2,-43.5,-86,0,0,-0.00546511 -1831,5804:363:1,-43,-86,0,0,-0.00546511 -1832,5804:362:2,-42.5,-86,0,0,-0.00546392 -1833,5804:362:1,-42,-86,0,0,-0.00546392 -1834,5804:361:2,-41.5,-86,0,0,-0.00546511 -1835,5804:361:1,-41,-86,0,0,-0.00546511 -1836,5804:360:2,-40.5,-86,0,0,-0.00546633 -1837,5804:360:1,-40,-86,0,0,-0.00546755 -1838,5803:469:2,-39.5,-86,0,0,-0.00546755 -1839,5803:469:1,-39,-86,0,0,-0.00546755 -1840,5803:468:2,-38.5,-86,0,0,-0.00546755 -1841,5803:468:1,-38,-86,0,0,-0.00546755 -1842,5803:467:2,-37.5,-86,0,0,-0.00546878 -1843,5803:467:1,-37,-86,0,0,-0.00546755 -1844,5803:466:2,-36.5,-86,0,0,-0.00546755 -1845,5803:466:1,-36,-86,0,0,-0.00546755 -1846,5803:465:2,-35.5,-86,0,0,-0.00546755 -1847,5803:465:1,-35,-86,0,0,-0.00546878 -1848,5803:364:2,-34.5,-86,0,0,-0.00546878 -1849,5803:364:1,-34,-86,0,0,-0.00546755 -1850,5803:363:2,-33.5,-86,0,0,-0.00546755 -1851,5803:363:1,-33,-86,0,0,-0.00546755 -1852,5803:362:2,-32.5,-86,0,0,-0.00546878 -1853,5803:362:1,-32,-86,0,0,-0.00546878 -1854,5803:361:2,-31.5,-86,0,0,-0.00546878 -1855,5803:361:1,-31,-86,0,0,-0.00547 -1856,5803:360:2,-30.5,-86,0,0,-0.00546878 -1857,5803:360:1,-30,-86,0,0,-0.00547 -1858,5802:469:2,-29.5,-86,0,0,-0.00547119 -1859,5802:469:1,-29,-86,0,0,-0.00547 -1860,5802:468:2,-28.5,-86,0,0,-0.00546878 -1861,5802:468:1,-28,-86,0,0,-0.00546755 -1862,5802:467:2,-27.5,-86,0,0,-0.00546633 -1863,5802:467:1,-27,-86,0,0,-0.00546511 -1864,5802:466:2,-26.5,-86,0,0,-0.00553848 -1865,5802:466:1,-26,-86,0,0,-0.00565409 -1866,5802:465:2,-25.5,-86,0,0,-0.00561402 -1867,5802:465:1,-25,-86,0,0,-0.00557672 -1868,5802:364:2,-24.5,-86,0,0,-0.00581851 -1869,5802:364:1,-24,-86,0,0,-0.00615781 -1870,3816:465:2,165.5,-86,0,0,-0.0055225 -1871,3816:466:1,166,-86,0,0,-0.00550411 -1872,3816:466:2,166.5,-86,0,0,-0.00548091 -1873,3816:467:1,167,-86,0,0,-0.00547241 -1874,3816:467:2,167.5,-86,0,0,-0.00546633 -1875,3816:468:1,168,-86,0,0,-0.00545907 -1876,3816:468:2,168.5,-86,0,0,-0.00545057 -1877,3816:469:1,169,-86,0,0,-0.00544451 -1878,3816:469:2,169.5,-86,0,0,-0.00544211 -1879,3817:360:1,170,-86,0,0,-0.00544333 -1880,3817:360:2,170.5,-86,0,0,-0.00544333 -1881,3817:361:1,171,-86,0,0,-0.00544089 -1882,3817:361:2,171.5,-86,0,0,-0.00569445 -1883,3817:362:1,172,-86,0,0,-0.00650255 -1884,3817:362:2,172.5,-86,0,0,-0.00744774 -1885,3817:363:1,173,-86,0,0,-0.00792146 -1886,3817:363:2,173.5,-86,0,0,-0.00790914 -1887,3817:364:1,174,-86,0,0,-0.00786525 -1888,3817:364:2,174.5,-86,0,0,-0.00783724 -1889,3817:465:1,175,-86,0,0,-0.00782681 -1890,3817:465:2,175.5,-86,0,0,-0.00778162 -1891,3817:466:1,176,-86,0,0,-0.00760351 -1892,3817:466:2,176.5,-86,0,0,-0.00631868 -1893,3817:467:1,177,-86,0,0,-0.00551024 -1894,3817:467:2,177.5,-86,0,0,-0.00544089 -1895,3817:468:1,178,-86,0,0,-0.00544211 -1896,3817:468:2,178.5,-86,0,0,-0.00544816 -1897,3817:469:1,179,-86,0,0,-0.005453 -1898,3817:469:2,179.5,-86,0,0,-0.00545663 -1899,3818:360:1,180,-86,0,0,-0.00546026 -1900,5818:350:3,-180,-85.5,0,0,-0.00546026 -1901,5817:459:4,-179.5,-85.5,0,0,-0.00546392 -1902,5817:459:3,-179,-85.5,0,0,-0.00546511 -1903,5817:458:4,-178.5,-85.5,0,0,-0.00546392 -1904,5817:458:3,-178,-85.5,0,0,-0.00546511 -1905,5817:457:4,-177.5,-85.5,0,0,-0.00546633 -1906,5817:457:3,-177,-85.5,0,0,-0.00546878 -1907,5817:456:4,-176.5,-85.5,0,0,-0.00547 -1908,5817:456:3,-176,-85.5,0,0,-0.00547 -1909,5817:455:4,-175.5,-85.5,0,0,-0.00547119 -1910,5817:455:3,-175,-85.5,0,0,-0.00547119 -1911,5817:354:4,-174.5,-85.5,0,0,-0.00547241 -1912,5817:354:3,-174,-85.5,0,0,-0.00547364 -1913,5817:353:4,-173.5,-85.5,0,0,-0.00547364 -1914,5817:353:3,-173,-85.5,0,0,-0.00547486 -1915,5817:352:4,-172.5,-85.5,0,0,-0.00547486 -1916,5817:352:3,-172,-85.5,0,0,-0.00547605 -1917,5817:351:4,-171.5,-85.5,0,0,-0.00547605 -1918,5817:351:3,-171,-85.5,0,0,-0.00547605 -1919,5817:350:4,-170.5,-85.5,0,0,-0.00547727 -1920,5817:350:3,-170,-85.5,0,0,-0.00547727 -1921,5816:459:4,-169.5,-85.5,0,0,-0.0054785 -1922,5816:459:3,-169,-85.5,0,0,-0.0054785 -1923,5816:458:4,-168.5,-85.5,0,0,-0.0054785 -1924,5816:458:3,-168,-85.5,0,0,-0.00547972 -1925,5816:457:4,-167.5,-85.5,0,0,-0.00547972 -1926,5816:457:3,-167,-85.5,0,0,-0.00548091 -1927,5816:456:4,-166.5,-85.5,0,0,-0.00548091 -1928,5816:456:3,-166,-85.5,0,0,-0.00547972 -1929,5816:455:4,-165.5,-85.5,0,0,-0.00547972 -1930,5816:455:3,-165,-85.5,0,0,-0.00547972 -1931,5816:354:4,-164.5,-85.5,0,0,-0.00547972 -1932,5816:354:3,-164,-85.5,0,0,-0.00547972 -1933,5816:353:4,-163.5,-85.5,0,0,-0.00547972 -1934,5816:353:3,-163,-85.5,0,0,-0.00548091 -1935,5816:352:4,-162.5,-85.5,0,0,-0.00548091 -1936,5816:352:3,-162,-85.5,0,0,-0.00548091 -1937,5816:351:4,-161.5,-85.5,0,0,-0.00548091 -1938,5816:351:3,-161,-85.5,0,0,-0.00548214 -1939,5816:350:4,-160.5,-85.5,0,0,-0.00548337 -1940,5816:350:3,-160,-85.5,0,0,-0.00548459 -1941,5815:459:4,-159.5,-85.5,0,0,-0.00548582 -1942,5815:459:3,-159,-85.5,0,0,-0.00548582 -1943,5815:458:4,-158.5,-85.5,0,0,-0.00548701 -1944,5815:458:3,-158,-85.5,0,0,-0.00548824 -1945,5815:457:4,-157.5,-85.5,0,0,-0.00548824 -1946,5815:457:3,-157,-85.5,0,0,-0.00548701 -1947,5815:456:4,-156.5,-85.5,0,0,-0.00548701 -1948,5815:456:3,-156,-85.5,0,0,-0.00548824 -1949,5815:455:4,-155.5,-85.5,0,0,-0.00548947 -1950,5815:455:3,-155,-85.5,0,0,-0.00548947 -1951,5815:354:4,-154.5,-85.5,0,0,-0.00548701 -1952,5815:354:3,-154,-85.5,0,0,-0.00548701 -1953,5815:353:4,-153.5,-85.5,0,0,-0.00548824 -1954,5815:353:3,-153,-85.5,0,0,-0.00548947 -1955,5815:352:4,-152.5,-85.5,0,0,-0.00548947 -1956,5815:352:3,-152,-85.5,0,0,-0.00548824 -1957,5815:351:4,-151.5,-85.5,0,0,-0.00548582 -1958,5815:351:3,-151,-85.5,0,0,-0.00548582 -1959,5815:350:4,-150.5,-85.5,0,0,-0.00548582 -1960,5815:350:3,-150,-85.5,0,0,-0.00548582 -1961,5814:459:4,-149.5,-85.5,0,0,-0.00548582 -1962,5814:459:3,-149,-85.5,0,0,-0.00548459 -1963,5814:458:4,-148.5,-85.5,0,0,-0.00548459 -1964,5814:458:3,-148,-85.5,0,0,-0.00548459 -1965,5814:457:4,-147.5,-85.5,0,0,-0.00548459 -1966,5814:457:3,-147,-85.5,0,0,-0.00548337 -1967,5814:456:4,-146.5,-85.5,0,0,-0.00548337 -1968,5814:456:3,-146,-85.5,0,0,-0.00548214 -1969,5814:455:4,-145.5,-85.5,0,0,-0.00548214 -1970,5814:455:3,-145,-85.5,0,0,-0.00548214 -1971,5814:354:4,-144.5,-85.5,0,0,-0.00548091 -1972,5814:354:3,-144,-85.5,0,0,-0.00548091 -1973,5814:353:4,-143.5,-85.5,0,0,-0.00548091 -1974,5814:353:3,-143,-85.5,0,0,-0.00548214 -1975,5814:352:4,-142.5,-85.5,0,0,-0.00548214 -1976,5814:352:3,-142,-85.5,0,0,-0.00548091 -1977,5814:351:4,-141.5,-85.5,0,0,-0.00547972 -1978,5814:351:3,-141,-85.5,0,0,-0.00548091 -1979,5814:350:4,-140.5,-85.5,0,0,-0.00548091 -1980,5814:350:3,-140,-85.5,0,0,-0.00548214 -1981,5813:459:4,-139.5,-85.5,0,0,-0.00548214 -1982,5813:459:3,-139,-85.5,0,0,-0.00548214 -1983,5813:458:4,-138.5,-85.5,0,0,-0.00548214 -1984,5813:458:3,-138,-85.5,0,0,-0.00548337 -1985,5813:457:4,-137.5,-85.5,0,0,-0.00548947 -1986,5813:457:3,-137,-85.5,0,0,-0.00550777 -1987,5813:456:4,-136.5,-85.5,0,0,-0.005536 -1988,5813:456:3,-136,-85.5,0,0,-0.00560158 -1989,5813:455:4,-135.5,-85.5,0,0,-0.00584441 -1990,5813:455:3,-135,-85.5,0,0,-0.00592286 -1991,5813:354:4,-134.5,-85.5,0,0,-0.00591106 -1992,5813:354:3,-134,-85.5,0,0,-0.00596912 -1993,5811:350:3,-110,-85.5,0,0,-0.00698226 -1994,5810:459:4,-109.5,-85.5,0,0,-0.00750095 -1995,5810:459:3,-109,-85.5,0,0,-0.00796395 -1996,5810:458:4,-108.5,-85.5,0,0,-0.00791092 -1997,5810:456:3,-106,-85.5,0,0,-0.005619 -1998,5810:455:4,-105.5,-85.5,0,0,-0.00555077 -1999,5810:455:3,-105,-85.5,0,0,-0.00552617 -2000,5810:354:4,-104.5,-85.5,0,0,-0.0055446 -2001,5810:354:3,-104,-85.5,0,0,-0.00578243 -2002,5810:353:4,-103.5,-85.5,0,0,-0.00623081 -2003,5810:353:3,-103,-85.5,0,0,-0.0065446 -2004,5810:352:4,-102.5,-85.5,0,0,-0.00661925 -2005,5806:351:4,-61.5,-85.5,0,0,-0.00552861 -2006,5806:351:3,-61,-85.5,0,0,-0.00552127 -2007,5806:350:4,-60.5,-85.5,0,0,-0.00550288 -2008,5806:350:3,-60,-85.5,0,0,-0.00548947 -2009,5805:459:4,-59.5,-85.5,0,0,-0.0054785 -2010,5805:459:3,-59,-85.5,0,0,-0.00546511 -2011,5805:458:4,-58.5,-85.5,0,0,-0.00545541 -2012,5805:458:3,-58,-85.5,0,0,-0.005453 -2013,5805:457:4,-57.5,-85.5,0,0,-0.00545179 -2014,5805:457:3,-57,-85.5,0,0,-0.00545057 -2015,5805:456:4,-56.5,-85.5,0,0,-0.00544935 -2016,5805:456:3,-56,-85.5,0,0,-0.00544935 -2017,5805:455:4,-55.5,-85.5,0,0,-0.00544935 -2018,5805:455:3,-55,-85.5,0,0,-0.00545057 -2019,5805:354:4,-54.5,-85.5,0,0,-0.00545057 -2020,5805:354:3,-54,-85.5,0,0,-0.00545057 -2021,5805:353:4,-53.5,-85.5,0,0,-0.00545057 -2022,5805:353:3,-53,-85.5,0,0,-0.00545179 -2023,5805:352:4,-52.5,-85.5,0,0,-0.005453 -2024,5805:352:3,-52,-85.5,0,0,-0.00545423 -2025,5805:351:4,-51.5,-85.5,0,0,-0.00545423 -2026,5805:351:3,-51,-85.5,0,0,-0.00545541 -2027,5805:350:4,-50.5,-85.5,0,0,-0.00545541 -2028,5805:350:3,-50,-85.5,0,0,-0.00545541 -2029,5804:459:4,-49.5,-85.5,0,0,-0.00545541 -2030,5804:459:3,-49,-85.5,0,0,-0.00545541 -2031,5804:458:4,-48.5,-85.5,0,0,-0.00545423 -2032,5804:458:3,-48,-85.5,0,0,-0.005453 -2033,5804:457:4,-47.5,-85.5,0,0,-0.005453 -2034,5804:457:3,-47,-85.5,0,0,-0.00545663 -2035,5804:456:4,-46.5,-85.5,0,0,-0.00545907 -2036,5804:456:3,-46,-85.5,0,0,-0.00546148 -2037,5804:455:4,-45.5,-85.5,0,0,-0.00546392 -2038,5804:455:3,-45,-85.5,0,0,-0.00546633 -2039,5804:354:4,-44.5,-85.5,0,0,-0.00546511 -2040,5804:354:3,-44,-85.5,0,0,-0.00546511 -2041,5804:353:4,-43.5,-85.5,0,0,-0.00546511 -2042,5804:353:3,-43,-85.5,0,0,-0.00546511 -2043,5804:352:4,-42.5,-85.5,0,0,-0.00546392 -2044,5804:352:3,-42,-85.5,0,0,-0.00546392 -2045,5804:351:4,-41.5,-85.5,0,0,-0.00546511 -2046,5804:351:3,-41,-85.5,0,0,-0.00546511 -2047,5804:350:4,-40.5,-85.5,0,0,-0.00546633 -2048,5804:350:3,-40,-85.5,0,0,-0.00546755 -2049,5803:459:4,-39.5,-85.5,0,0,-0.00546755 -2050,5803:459:3,-39,-85.5,0,0,-0.00546755 -2051,5803:458:4,-38.5,-85.5,0,0,-0.00546755 -2052,5803:458:3,-38,-85.5,0,0,-0.00546755 -2053,5803:457:4,-37.5,-85.5,0,0,-0.00546878 -2054,5803:457:3,-37,-85.5,0,0,-0.00546755 -2055,5803:456:4,-36.5,-85.5,0,0,-0.00546755 -2056,5803:456:3,-36,-85.5,0,0,-0.00546755 -2057,5803:455:4,-35.5,-85.5,0,0,-0.00546755 -2058,5803:455:3,-35,-85.5,0,0,-0.00546878 -2059,5803:354:4,-34.5,-85.5,0,0,-0.00546878 -2060,5803:354:3,-34,-85.5,0,0,-0.00546755 -2061,5803:353:4,-33.5,-85.5,0,0,-0.00546755 -2062,5803:353:3,-33,-85.5,0,0,-0.00546755 -2063,5803:352:4,-32.5,-85.5,0,0,-0.00546878 -2064,5803:352:3,-32,-85.5,0,0,-0.00546878 -2065,5803:351:4,-31.5,-85.5,0,0,-0.00546878 -2066,5803:351:3,-31,-85.5,0,0,-0.00547 -2067,5803:350:4,-30.5,-85.5,0,0,-0.00546878 -2068,5803:350:3,-30,-85.5,0,0,-0.00547 -2069,5802:459:4,-29.5,-85.5,0,0,-0.00547119 -2070,5802:459:3,-29,-85.5,0,0,-0.00547 -2071,5802:458:4,-28.5,-85.5,0,0,-0.00546878 -2072,5802:458:3,-28,-85.5,0,0,-0.00546755 -2073,5802:457:4,-27.5,-85.5,0,0,-0.00546633 -2074,5802:457:3,-27,-85.5,0,0,-0.00546511 -2075,5802:456:4,-26.5,-85.5,0,0,-0.00553848 -2076,5802:456:3,-26,-85.5,0,0,-0.00565409 -2077,5802:455:4,-25.5,-85.5,0,0,-0.00561402 -2078,5802:455:3,-25,-85.5,0,0,-0.00557672 -2079,5802:354:4,-24.5,-85.5,0,0,-0.00581851 -2080,5802:354:3,-24,-85.5,0,0,-0.00615781 -2081,3816:455:4,165.5,-85.5,0,0,-0.0055225 -2082,3816:456:3,166,-85.5,0,0,-0.00550411 -2083,3816:456:4,166.5,-85.5,0,0,-0.00548091 -2084,3816:457:3,167,-85.5,0,0,-0.00547241 -2085,3816:457:4,167.5,-85.5,0,0,-0.00546633 -2086,3816:458:3,168,-85.5,0,0,-0.00545907 -2087,3816:458:4,168.5,-85.5,0,0,-0.00545057 -2088,3816:459:3,169,-85.5,0,0,-0.00544451 -2089,3816:459:4,169.5,-85.5,0,0,-0.00544211 -2090,3817:350:3,170,-85.5,0,0,-0.00544333 -2091,3817:350:4,170.5,-85.5,0,0,-0.00544333 -2092,3817:351:3,171,-85.5,0,0,-0.00544089 -2093,3817:351:4,171.5,-85.5,0,0,-0.00569445 -2094,3817:352:3,172,-85.5,0,0,-0.00650255 -2095,3817:352:4,172.5,-85.5,0,0,-0.00744774 -2096,3817:353:3,173,-85.5,0,0,-0.00792146 -2097,3817:353:4,173.5,-85.5,0,0,-0.00790914 -2098,3817:354:3,174,-85.5,0,0,-0.00786525 -2099,3817:354:4,174.5,-85.5,0,0,-0.00783724 -2100,3817:455:3,175,-85.5,0,0,-0.00782681 -2101,3817:455:4,175.5,-85.5,0,0,-0.00778162 -2102,3817:456:3,176,-85.5,0,0,-0.00760351 -2103,3817:456:4,176.5,-85.5,0,0,-0.00631868 -2104,3817:457:3,177,-85.5,0,0,-0.00551024 -2105,3817:457:4,177.5,-85.5,0,0,-0.00544089 -2106,3817:458:3,178,-85.5,0,0,-0.00544211 -2107,3817:458:4,178.5,-85.5,0,0,-0.00544816 -2108,3817:459:3,179,-85.5,0,0,-0.005453 -2109,3817:459:4,179.5,-85.5,0,0,-0.00545663 -2110,3818:350:3,180,-85.5,0,0,-0.00546026 -2111,5818:350:1,-180,-85,0,0,-0.00546026 -2112,5817:459:2,-179.5,-85,0,0,-0.00546392 -2113,5817:459:1,-179,-85,0,0,-0.00546511 -2114,5817:458:2,-178.5,-85,0,0,-0.00546392 -2115,5817:458:1,-178,-85,0,0,-0.00546511 -2116,5817:457:2,-177.5,-85,0,0,-0.00546633 -2117,5817:457:1,-177,-85,0,0,-0.00546878 -2118,5817:456:2,-176.5,-85,0,0,-0.00547 -2119,5817:456:1,-176,-85,0,0,-0.00547 -2120,5817:455:2,-175.5,-85,0,0,-0.00547119 -2121,5817:455:1,-175,-85,0,0,-0.00547119 -2122,5817:354:2,-174.5,-85,0,0,-0.00547241 -2123,5817:354:1,-174,-85,0,0,-0.00547364 -2124,5817:353:2,-173.5,-85,0,0,-0.00547364 -2125,5817:353:1,-173,-85,0,0,-0.00547486 -2126,5817:352:2,-172.5,-85,0,0,-0.00547486 -2127,5817:352:1,-172,-85,0,0,-0.00547605 -2128,5817:351:2,-171.5,-85,0,0,-0.00547605 -2129,5817:351:1,-171,-85,0,0,-0.00547605 -2130,5817:350:2,-170.5,-85,0,0,-0.00547727 -2131,5817:350:1,-170,-85,0,0,-0.00547727 -2132,5816:459:2,-169.5,-85,0,0,-0.0054785 -2133,5816:459:1,-169,-85,0,0,-0.0054785 -2134,5816:458:2,-168.5,-85,0,0,-0.0054785 -2135,5816:458:1,-168,-85,0,0,-0.00547972 -2136,5816:457:2,-167.5,-85,0,0,-0.00547972 -2137,5816:457:1,-167,-85,0,0,-0.00548091 -2138,5816:456:2,-166.5,-85,0,0,-0.00548091 -2139,5816:456:1,-166,-85,0,0,-0.00547972 -2140,5816:455:2,-165.5,-85,0,0,-0.00547972 -2141,5816:455:1,-165,-85,0,0,-0.00547972 -2142,5816:354:2,-164.5,-85,0,0,-0.00547972 -2143,5816:354:1,-164,-85,0,0,-0.00547972 -2144,5816:353:2,-163.5,-85,0,0,-0.00547972 -2145,5816:353:1,-163,-85,0,0,-0.00548091 -2146,5816:352:2,-162.5,-85,0,0,-0.00548091 -2147,5816:352:1,-162,-85,0,0,-0.00548091 -2148,5816:351:2,-161.5,-85,0,0,-0.00548091 -2149,5816:351:1,-161,-85,0,0,-0.00548214 -2150,5816:350:2,-160.5,-85,0,0,-0.00548337 -2151,5816:350:1,-160,-85,0,0,-0.00548459 -2152,5815:459:2,-159.5,-85,0,0,-0.00548582 -2153,5815:459:1,-159,-85,0,0,-0.00548582 -2154,5815:458:2,-158.5,-85,0,0,-0.00548701 -2155,5815:458:1,-158,-85,0,0,-0.00548824 -2156,5815:457:2,-157.5,-85,0,0,-0.00548824 -2157,5815:457:1,-157,-85,0,0,-0.00548701 -2158,5815:456:2,-156.5,-85,0,0,-0.00548701 -2159,5815:456:1,-156,-85,0,0,-0.00548824 -2160,5815:455:2,-155.5,-85,0,0,-0.00548947 -2161,5815:455:1,-155,-85,0,0,-0.00548947 -2162,5815:354:2,-154.5,-85,0,0,-0.00548701 -2163,5815:354:1,-154,-85,0,0,-0.00548701 -2164,5815:353:2,-153.5,-85,0,0,-0.00548824 -2165,5815:353:1,-153,-85,0,0,-0.00548947 -2166,5815:352:2,-152.5,-85,0,0,-0.00548947 -2167,5815:352:1,-152,-85,0,0,-0.00548824 -2168,5815:351:2,-151.5,-85,0,0,-0.00548582 -2169,5815:351:1,-151,-85,0,0,-0.00548582 -2170,5815:350:2,-150.5,-85,0,0,-0.00548582 -2171,5815:350:1,-150,-85,0,0,-0.00548582 -2172,5814:459:2,-149.5,-85,0,0,-0.00548582 -2173,5814:459:1,-149,-85,0,0,-0.00548459 -2174,5814:458:2,-148.5,-85,0,0,-0.00548459 -2175,5814:458:1,-148,-85,0,0,-0.00548459 -2176,5814:457:2,-147.5,-85,0,0,-0.00548459 -2177,5814:457:1,-147,-85,0,0,-0.00548337 -2178,5814:456:2,-146.5,-85,0,0,-0.00548337 -2179,5814:456:1,-146,-85,0,0,-0.00548214 -2180,5814:455:2,-145.5,-85,0,0,-0.00548214 -2181,5814:455:1,-145,-85,0,0,-0.00548214 -2182,5814:354:2,-144.5,-85,0,0,-0.00548091 -2183,5814:354:1,-144,-85,0,0,-0.00548091 -2184,5814:353:2,-143.5,-85,0,0,-0.00548091 -2185,5814:353:1,-143,-85,0,0,-0.00548214 -2186,5814:352:2,-142.5,-85,0,0,-0.00548214 -2187,5814:352:1,-142,-85,0,0,-0.00548091 -2188,5814:351:2,-141.5,-85,0,0,-0.00547972 -2189,5814:351:1,-141,-85,0,0,-0.00548091 -2190,5814:350:2,-140.5,-85,0,0,-0.00548091 -2191,5814:350:1,-140,-85,0,0,-0.00548214 -2192,5813:459:2,-139.5,-85,0,0,-0.00548214 -2193,5813:459:1,-139,-85,0,0,-0.00548214 -2194,5813:458:2,-138.5,-85,0,0,-0.00548214 -2195,5813:458:1,-138,-85,0,0,-0.00548337 -2196,5813:457:2,-137.5,-85,0,0,-0.00548947 -2197,5813:457:1,-137,-85,0,0,-0.00550777 -2198,5813:456:2,-136.5,-85,0,0,-0.005536 -2199,5813:456:1,-136,-85,0,0,-0.00560158 -2200,5813:455:2,-135.5,-85,0,0,-0.00584441 -2201,5813:455:1,-135,-85,0,0,-0.00592286 -2202,5813:354:2,-134.5,-85,0,0,-0.00591106 -2203,5813:354:1,-134,-85,0,0,-0.00596912 -2204,5811:350:1,-110,-85,0,0,-0.00698226 -2205,5810:459:2,-109.5,-85,0,0,-0.00750095 -2206,5810:459:1,-109,-85,0,0,-0.00796395 -2207,5810:458:2,-108.5,-85,0,0,-0.00791092 -2208,5810:456:1,-106,-85,0,0,-0.005619 -2209,5810:455:2,-105.5,-85,0,0,-0.00555077 -2210,5810:455:1,-105,-85,0,0,-0.00552617 -2211,5810:354:2,-104.5,-85,0,0,-0.0055446 -2212,5810:354:1,-104,-85,0,0,-0.00578243 -2213,5810:353:2,-103.5,-85,0,0,-0.00623081 -2214,5810:353:1,-103,-85,0,0,-0.0065446 -2215,5810:352:2,-102.5,-85,0,0,-0.00661925 -2216,5806:351:2,-61.5,-85,0,0,-0.00552861 -2217,5806:351:1,-61,-85,0,0,-0.00552127 -2218,5806:350:2,-60.5,-85,0,0,-0.00550288 -2219,5806:350:1,-60,-85,0,0,-0.00548947 -2220,5805:459:2,-59.5,-85,0,0,-0.0054785 -2221,5805:459:1,-59,-85,0,0,-0.00546511 -2222,5805:458:2,-58.5,-85,0,0,-0.00545541 -2223,5805:458:1,-58,-85,0,0,-0.005453 -2224,5805:457:2,-57.5,-85,0,0,-0.00545179 -2225,5805:457:1,-57,-85,0,0,-0.00545057 -2226,5805:456:2,-56.5,-85,0,0,-0.00544935 -2227,5805:456:1,-56,-85,0,0,-0.00544935 -2228,5805:455:2,-55.5,-85,0,0,-0.00544935 -2229,5805:455:1,-55,-85,0,0,-0.00545057 -2230,5805:354:2,-54.5,-85,0,0,-0.00545057 -2231,5805:354:1,-54,-85,0,0,-0.00545057 -2232,5805:353:2,-53.5,-85,0,0,-0.00545057 -2233,5805:353:1,-53,-85,0,0,-0.00545179 -2234,5805:352:2,-52.5,-85,0,0,-0.005453 -2235,5805:352:1,-52,-85,0,0,-0.00545423 -2236,5805:351:2,-51.5,-85,0,0,-0.00545423 -2237,5805:351:1,-51,-85,0,0,-0.00545541 -2238,5805:350:2,-50.5,-85,0,0,-0.00545541 -2239,5805:350:1,-50,-85,0,0,-0.00545541 -2240,5804:459:2,-49.5,-85,0,0,-0.00545541 -2241,5804:459:1,-49,-85,0,0,-0.00545541 -2242,5804:458:2,-48.5,-85,0,0,-0.00545423 -2243,5804:458:1,-48,-85,0,0,-0.005453 -2244,5804:457:2,-47.5,-85,0,0,-0.005453 -2245,5804:457:1,-47,-85,0,0,-0.00545663 -2246,5804:456:2,-46.5,-85,0,0,-0.00545907 -2247,5804:456:1,-46,-85,0,0,-0.00546148 -2248,5804:455:2,-45.5,-85,0,0,-0.00546392 -2249,5804:455:1,-45,-85,0,0,-0.00546633 -2250,5804:354:2,-44.5,-85,0,0,-0.00546511 -2251,5804:354:1,-44,-85,0,0,-0.00546511 -2252,5804:353:2,-43.5,-85,0,0,-0.00546511 -2253,5804:353:1,-43,-85,0,0,-0.00546511 -2254,5804:352:2,-42.5,-85,0,0,-0.00546392 -2255,5804:352:1,-42,-85,0,0,-0.00546392 -2256,5804:351:2,-41.5,-85,0,0,-0.00546511 -2257,5804:351:1,-41,-85,0,0,-0.00546511 -2258,5804:350:2,-40.5,-85,0,0,-0.00546633 -2259,5804:350:1,-40,-85,0,0,-0.00546755 -2260,5803:459:2,-39.5,-85,0,0,-0.00546755 -2261,5803:459:1,-39,-85,0,0,-0.00546755 -2262,5803:458:2,-38.5,-85,0,0,-0.00546755 -2263,5803:458:1,-38,-85,0,0,-0.00546755 -2264,5803:457:2,-37.5,-85,0,0,-0.00546878 -2265,5803:457:1,-37,-85,0,0,-0.00546755 -2266,5803:456:2,-36.5,-85,0,0,-0.00546755 -2267,5803:456:1,-36,-85,0,0,-0.00546755 -2268,5803:455:2,-35.5,-85,0,0,-0.00546755 -2269,5803:455:1,-35,-85,0,0,-0.00546878 -2270,5803:354:2,-34.5,-85,0,0,-0.00546878 -2271,5803:354:1,-34,-85,0,0,-0.00546755 -2272,5803:353:2,-33.5,-85,0,0,-0.00546755 -2273,5803:353:1,-33,-85,0,0,-0.00546755 -2274,5803:352:2,-32.5,-85,0,0,-0.00546878 -2275,5803:352:1,-32,-85,0,0,-0.00546878 -2276,5803:351:2,-31.5,-85,0,0,-0.00546878 -2277,5803:351:1,-31,-85,0,0,-0.00547 -2278,5803:350:2,-30.5,-85,0,0,-0.00546878 -2279,5803:350:1,-30,-85,0,0,-0.00547 -2280,5802:459:2,-29.5,-85,0,0,-0.00547119 -2281,5802:459:1,-29,-85,0,0,-0.00547 -2282,5802:458:2,-28.5,-85,0,0,-0.00546878 -2283,5802:458:1,-28,-85,0,0,-0.00546755 -2284,5802:457:2,-27.5,-85,0,0,-0.00546633 -2285,5802:457:1,-27,-85,0,0,-0.00546511 -2286,5802:456:2,-26.5,-85,0,0,-0.00553848 -2287,5802:456:1,-26,-85,0,0,-0.00565409 -2288,5802:455:2,-25.5,-85,0,0,-0.00561402 -2289,5802:455:1,-25,-85,0,0,-0.00557672 -2290,5802:354:2,-24.5,-85,0,0,-0.00581851 -2291,5802:354:1,-24,-85,0,0,-0.00615781 -2292,3816:455:2,165.5,-85,0,0,-0.0055225 -2293,3816:456:1,166,-85,0,0,-0.00550411 -2294,3816:456:2,166.5,-85,0,0,-0.00548091 -2295,3816:457:1,167,-85,0,0,-0.00547241 -2296,3816:457:2,167.5,-85,0,0,-0.00546633 -2297,3816:458:1,168,-85,0,0,-0.00545907 -2298,3816:458:2,168.5,-85,0,0,-0.00545057 -2299,3816:459:1,169,-85,0,0,-0.00544451 -2300,3816:459:2,169.5,-85,0,0,-0.00544211 -2301,3817:350:1,170,-85,0,0,-0.00544333 -2302,3817:350:2,170.5,-85,0,0,-0.00544333 -2303,3817:351:1,171,-85,0,0,-0.00544089 -2304,3817:351:2,171.5,-85,0,0,-0.00569445 -2305,3817:352:1,172,-85,0,0,-0.00650255 -2306,3817:352:2,172.5,-85,0,0,-0.00744774 -2307,3817:353:1,173,-85,0,0,-0.00792146 -2308,3817:353:2,173.5,-85,0,0,-0.00790914 -2309,3817:354:1,174,-85,0,0,-0.00786525 -2310,3817:354:2,174.5,-85,0,0,-0.00783724 -2311,3817:455:1,175,-85,0,0,-0.00782681 -2312,3817:455:2,175.5,-85,0,0,-0.00778162 -2313,3817:456:1,176,-85,0,0,-0.00760351 -2314,3817:456:2,176.5,-85,0,0,-0.00631868 -2315,3817:457:1,177,-85,0,0,-0.00551024 -2316,3817:457:2,177.5,-85,0,0,-0.00544089 -2317,3817:458:1,178,-85,0,0,-0.00544211 -2318,3817:458:2,178.5,-85,0,0,-0.00544816 -2319,3817:459:1,179,-85,0,0,-0.005453 -2320,3817:459:2,179.5,-85,0,0,-0.00545663 -2321,3818:350:1,180,-85,0,0,-0.00546026 -2322,5818:140:3,-180,-84.5,0,0,-0.00546026 -2323,5817:249:4,-179.5,-84.5,0,0,-0.00546392 -2324,5817:249:3,-179,-84.5,0,0,-0.00546511 -2325,5817:248:4,-178.5,-84.5,0,0,-0.00546392 -2326,5817:248:3,-178,-84.5,0,0,-0.00546511 -2327,5817:247:4,-177.5,-84.5,0,0,-0.00546633 -2328,5817:247:3,-177,-84.5,0,0,-0.00546878 -2329,5817:246:4,-176.5,-84.5,0,0,-0.00547 -2330,5817:246:3,-176,-84.5,0,0,-0.00547 -2331,5817:245:4,-175.5,-84.5,0,0,-0.00547119 -2332,5817:245:3,-175,-84.5,0,0,-0.00547119 -2333,5817:144:4,-174.5,-84.5,0,0,-0.00547241 -2334,5817:144:3,-174,-84.5,0,0,-0.00547364 -2335,5817:143:4,-173.5,-84.5,0,0,-0.00547364 -2336,5817:143:3,-173,-84.5,0,0,-0.00547486 -2337,5817:142:4,-172.5,-84.5,0,0,-0.00547486 -2338,5817:142:3,-172,-84.5,0,0,-0.00547605 -2339,5817:141:4,-171.5,-84.5,0,0,-0.00547605 -2340,5817:141:3,-171,-84.5,0,0,-0.00547605 -2341,5817:140:4,-170.5,-84.5,0,0,-0.00547727 -2342,5817:140:3,-170,-84.5,0,0,-0.00547727 -2343,5816:249:4,-169.5,-84.5,0,0,-0.0054785 -2344,5816:249:3,-169,-84.5,0,0,-0.0054785 -2345,5816:248:4,-168.5,-84.5,0,0,-0.0054785 -2346,5816:248:3,-168,-84.5,0,0,-0.00547972 -2347,5816:247:4,-167.5,-84.5,0,0,-0.00547972 -2348,5816:247:3,-167,-84.5,0,0,-0.00548091 -2349,5816:246:4,-166.5,-84.5,0,0,-0.00548091 -2350,5816:246:3,-166,-84.5,0,0,-0.00547972 -2351,5816:245:4,-165.5,-84.5,0,0,-0.00547972 -2352,5816:245:3,-165,-84.5,0,0,-0.00547972 -2353,5816:144:4,-164.5,-84.5,0,0,-0.00547972 -2354,5816:144:3,-164,-84.5,0,0,-0.00547972 -2355,5816:143:4,-163.5,-84.5,0,0,-0.00547972 -2356,5816:143:3,-163,-84.5,0,0,-0.00548091 -2357,5816:142:4,-162.5,-84.5,0,0,-0.00548091 -2358,5816:142:3,-162,-84.5,0,0,-0.00548091 -2359,5816:141:4,-161.5,-84.5,0,0,-0.00548091 -2360,5816:141:3,-161,-84.5,0,0,-0.00548214 -2361,5816:140:4,-160.5,-84.5,0,0,-0.00548337 -2362,5816:140:3,-160,-84.5,0,0,-0.00548459 -2363,5815:249:4,-159.5,-84.5,0,0,-0.00548582 -2364,5815:249:3,-159,-84.5,0,0,-0.00548582 -2365,5815:248:4,-158.5,-84.5,0,0,-0.00548701 -2366,5815:248:3,-158,-84.5,0,0,-0.00548824 -2367,5815:247:4,-157.5,-84.5,0,0,-0.00548824 -2368,5815:247:3,-157,-84.5,0,0,-0.00548701 -2369,5815:246:4,-156.5,-84.5,0,0,-0.00548701 -2370,5815:246:3,-156,-84.5,0,0,-0.00548824 -2371,5815:245:4,-155.5,-84.5,0,0,-0.00548947 -2372,5815:245:3,-155,-84.5,0,0,-0.00548947 -2373,5815:144:4,-154.5,-84.5,0,0,-0.00548701 -2374,5815:144:3,-154,-84.5,0,0,-0.00548701 -2375,5815:143:4,-153.5,-84.5,0,0,-0.00548824 -2376,5815:143:3,-153,-84.5,0,0,-0.00548947 -2377,5815:142:4,-152.5,-84.5,0,0,-0.00548947 -2378,5815:142:3,-152,-84.5,0,0,-0.00548824 -2379,5815:141:4,-151.5,-84.5,0,0,-0.00548582 -2380,5815:141:3,-151,-84.5,0,0,-0.00548582 -2381,5815:140:4,-150.5,-84.5,0,0,-0.00548582 -2382,5815:140:3,-150,-84.5,0,0,-0.00548582 -2383,5814:249:4,-149.5,-84.5,0,0,-0.00548582 -2384,5814:249:3,-149,-84.5,0,0,-0.00548459 -2385,5814:248:4,-148.5,-84.5,0,0,-0.00548459 -2386,5814:248:3,-148,-84.5,0,0,-0.00548459 -2387,5814:247:4,-147.5,-84.5,0,0,-0.00548459 -2388,5814:247:3,-147,-84.5,0,0,-0.00548337 -2389,5814:246:4,-146.5,-84.5,0,0,-0.00548337 -2390,5814:246:3,-146,-84.5,0,0,-0.00548214 -2391,5814:245:4,-145.5,-84.5,0,0,-0.00548214 -2392,5814:245:3,-145,-84.5,0,0,-0.00548214 -2393,5814:144:4,-144.5,-84.5,0,0,-0.00548091 -2394,5814:144:3,-144,-84.5,0,0,-0.00548091 -2395,5814:143:4,-143.5,-84.5,0,0,-0.00548091 -2396,5814:143:3,-143,-84.5,0,0,-0.00548214 -2397,5814:142:4,-142.5,-84.5,0,0,-0.00548214 -2398,5814:142:3,-142,-84.5,0,0,-0.00548091 -2399,5814:141:4,-141.5,-84.5,0,0,-0.00547972 -2400,5814:141:3,-141,-84.5,0,0,-0.00548091 -2401,5814:140:4,-140.5,-84.5,0,0,-0.00548091 -2402,5814:140:3,-140,-84.5,0,0,-0.00548214 -2403,5813:249:4,-139.5,-84.5,0,0,-0.00548214 -2404,5813:249:3,-139,-84.5,0,0,-0.00548214 -2405,5813:248:4,-138.5,-84.5,0,0,-0.00548214 -2406,5813:248:3,-138,-84.5,0,0,-0.00548337 -2407,5813:247:4,-137.5,-84.5,0,0,-0.00548947 -2408,5813:247:3,-137,-84.5,0,0,-0.00550777 -2409,5813:246:4,-136.5,-84.5,0,0,-0.005536 -2410,5813:246:3,-136,-84.5,0,0,-0.00560158 -2411,5813:245:4,-135.5,-84.5,0,0,-0.00584441 -2412,5813:245:3,-135,-84.5,0,0,-0.00592286 -2413,5813:144:4,-134.5,-84.5,0,0,-0.00591106 -2414,5813:144:3,-134,-84.5,0,0,-0.00596912 -2415,5811:140:3,-110,-84.5,0,0,-0.00698226 -2416,5810:249:4,-109.5,-84.5,0,0,-0.00750095 -2417,5810:249:3,-109,-84.5,0,0,-0.00796395 -2418,5810:248:4,-108.5,-84.5,0,0,-0.00791092 -2419,5810:246:3,-106,-84.5,0,0,-0.005619 -2420,5810:245:4,-105.5,-84.5,0,0,-0.00555077 -2421,5810:245:3,-105,-84.5,0,0,-0.00552617 -2422,5810:144:4,-104.5,-84.5,0,0,-0.0055446 -2423,5810:144:3,-104,-84.5,0,0,-0.00578243 -2424,5810:143:4,-103.5,-84.5,0,0,-0.00623081 -2425,5810:143:3,-103,-84.5,0,0,-0.0065446 -2426,5810:142:4,-102.5,-84.5,0,0,-0.00661925 -2427,5806:141:4,-61.5,-84.5,0,0,-0.00552861 -2428,5806:141:3,-61,-84.5,0,0,-0.00552127 -2429,5806:140:4,-60.5,-84.5,0,0,-0.00550288 -2430,5806:140:3,-60,-84.5,0,0,-0.00548947 -2431,5805:249:4,-59.5,-84.5,0,0,-0.0054785 -2432,5805:249:3,-59,-84.5,0,0,-0.00546511 -2433,5805:248:4,-58.5,-84.5,0,0,-0.00545541 -2434,5805:248:3,-58,-84.5,0,0,-0.005453 -2435,5805:247:4,-57.5,-84.5,0,0,-0.00545179 -2436,5805:247:3,-57,-84.5,0,0,-0.00545057 -2437,5805:246:4,-56.5,-84.5,0,0,-0.00544935 -2438,5805:246:3,-56,-84.5,0,0,-0.00544935 -2439,5805:245:4,-55.5,-84.5,0,0,-0.00544935 -2440,5805:245:3,-55,-84.5,0,0,-0.00545057 -2441,5805:144:4,-54.5,-84.5,0,0,-0.00545057 -2442,5805:144:3,-54,-84.5,0,0,-0.00545057 -2443,5805:143:4,-53.5,-84.5,0,0,-0.00545057 -2444,5805:143:3,-53,-84.5,0,0,-0.00545179 -2445,5805:142:4,-52.5,-84.5,0,0,-0.005453 -2446,5805:142:3,-52,-84.5,0,0,-0.00545423 -2447,5805:141:4,-51.5,-84.5,0,0,-0.00545423 -2448,5805:141:3,-51,-84.5,0,0,-0.00545541 -2449,5805:140:4,-50.5,-84.5,0,0,-0.00545541 -2450,5805:140:3,-50,-84.5,0,0,-0.00545541 -2451,5804:249:4,-49.5,-84.5,0,0,-0.00545541 -2452,5804:249:3,-49,-84.5,0,0,-0.00545541 -2453,5804:248:4,-48.5,-84.5,0,0,-0.00545423 -2454,5804:248:3,-48,-84.5,0,0,-0.005453 -2455,5804:247:4,-47.5,-84.5,0,0,-0.005453 -2456,5804:247:3,-47,-84.5,0,0,-0.00545663 -2457,5804:246:4,-46.5,-84.5,0,0,-0.00545907 -2458,5804:246:3,-46,-84.5,0,0,-0.00546148 -2459,5804:245:4,-45.5,-84.5,0,0,-0.00546392 -2460,5804:245:3,-45,-84.5,0,0,-0.00546633 -2461,5804:144:4,-44.5,-84.5,0,0,-0.00546511 -2462,5804:144:3,-44,-84.5,0,0,-0.00546511 -2463,5804:143:4,-43.5,-84.5,0,0,-0.00546511 -2464,5804:143:3,-43,-84.5,0,0,-0.00546511 -2465,5804:142:4,-42.5,-84.5,0,0,-0.00546392 -2466,5804:142:3,-42,-84.5,0,0,-0.00546392 -2467,5804:141:4,-41.5,-84.5,0,0,-0.00546511 -2468,5804:141:3,-41,-84.5,0,0,-0.00546511 -2469,5804:140:4,-40.5,-84.5,0,0,-0.00546633 -2470,5804:140:3,-40,-84.5,0,0,-0.00546755 -2471,5803:249:4,-39.5,-84.5,0,0,-0.00546755 -2472,5803:249:3,-39,-84.5,0,0,-0.00546755 -2473,5803:248:4,-38.5,-84.5,0,0,-0.00546755 -2474,5803:248:3,-38,-84.5,0,0,-0.00546755 -2475,5803:247:4,-37.5,-84.5,0,0,-0.00546878 -2476,5803:247:3,-37,-84.5,0,0,-0.00546755 -2477,5803:246:4,-36.5,-84.5,0,0,-0.00546755 -2478,5803:246:3,-36,-84.5,0,0,-0.00546755 -2479,5803:245:4,-35.5,-84.5,0,0,-0.00546755 -2480,5803:245:3,-35,-84.5,0,0,-0.00546878 -2481,5803:144:4,-34.5,-84.5,0,0,-0.00546878 -2482,5803:144:3,-34,-84.5,0,0,-0.00546755 -2483,5803:143:4,-33.5,-84.5,0,0,-0.00546755 -2484,5803:143:3,-33,-84.5,0,0,-0.00546755 -2485,5803:142:4,-32.5,-84.5,0,0,-0.00546878 -2486,5803:142:3,-32,-84.5,0,0,-0.00546878 -2487,5803:141:4,-31.5,-84.5,0,0,-0.00546878 -2488,5803:141:3,-31,-84.5,0,0,-0.00547 -2489,5803:140:4,-30.5,-84.5,0,0,-0.00546878 -2490,5803:140:3,-30,-84.5,0,0,-0.00547 -2491,5802:249:4,-29.5,-84.5,0,0,-0.00547119 -2492,5802:249:3,-29,-84.5,0,0,-0.00547 -2493,5802:248:4,-28.5,-84.5,0,0,-0.00546878 -2494,5802:248:3,-28,-84.5,0,0,-0.00546755 -2495,5802:247:4,-27.5,-84.5,0,0,-0.00546633 -2496,5802:247:3,-27,-84.5,0,0,-0.00546511 -2497,5802:246:4,-26.5,-84.5,0,0,-0.00553848 -2498,5802:246:3,-26,-84.5,0,0,-0.00565409 -2499,5802:245:4,-25.5,-84.5,0,0,-0.00561402 -2500,5802:245:3,-25,-84.5,0,0,-0.00557672 -2501,5802:144:4,-24.5,-84.5,0,0,-0.00581851 -2502,5802:144:3,-24,-84.5,0,0,-0.00615781 -2503,3816:245:4,165.5,-84.5,0,0,-0.0055225 -2504,3816:246:3,166,-84.5,0,0,-0.00550411 -2505,3816:246:4,166.5,-84.5,0,0,-0.00548091 -2506,3816:247:3,167,-84.5,0,0,-0.00547241 -2507,3816:247:4,167.5,-84.5,0,0,-0.00546633 -2508,3816:248:3,168,-84.5,0,0,-0.00545907 -2509,3816:248:4,168.5,-84.5,0,0,-0.00545057 -2510,3816:249:3,169,-84.5,0,0,-0.00544451 -2511,3816:249:4,169.5,-84.5,0,0,-0.00544211 -2512,3817:140:3,170,-84.5,0,0,-0.00544333 -2513,3817:140:4,170.5,-84.5,0,0,-0.00544333 -2514,3817:141:3,171,-84.5,0,0,-0.00544089 -2515,3817:141:4,171.5,-84.5,0,0,-0.00569445 -2516,3817:142:3,172,-84.5,0,0,-0.00650255 -2517,3817:142:4,172.5,-84.5,0,0,-0.00744774 -2518,3817:143:3,173,-84.5,0,0,-0.00792146 -2519,3817:143:4,173.5,-84.5,0,0,-0.00790914 -2520,3817:144:3,174,-84.5,0,0,-0.00786525 -2521,3817:144:4,174.5,-84.5,0,0,-0.00783724 -2522,3817:245:3,175,-84.5,0,0,-0.00782681 -2523,3817:245:4,175.5,-84.5,0,0,-0.00778162 -2524,3817:246:3,176,-84.5,0,0,-0.00760351 -2525,3817:246:4,176.5,-84.5,0,0,-0.00631868 -2526,3817:247:3,177,-84.5,0,0,-0.00551024 -2527,3817:247:4,177.5,-84.5,0,0,-0.00544089 -2528,3817:248:3,178,-84.5,0,0,-0.00544211 -2529,3817:248:4,178.5,-84.5,0,0,-0.00544816 -2530,3817:249:3,179,-84.5,0,0,-0.005453 -2531,3817:249:4,179.5,-84.5,0,0,-0.00545663 -2532,3818:140:3,180,-84.5,0,0,-0.00546026 -2533,5818:140:1,-180,-84,0,0,-0.00546026 -2534,5817:249:2,-179.5,-84,0,0,-0.00546392 -2535,5817:249:1,-179,-84,0,0,-0.00546511 -2536,5817:248:2,-178.5,-84,0,0,-0.00546392 -2537,5817:248:1,-178,-84,0,0,-0.00546511 -2538,5817:247:2,-177.5,-84,0,0,-0.00546633 -2539,5817:247:1,-177,-84,0,0,-0.00546878 -2540,5817:246:2,-176.5,-84,0,0,-0.00547 -2541,5817:246:1,-176,-84,0,0,-0.00547 -2542,5817:245:2,-175.5,-84,0,0,-0.00547119 -2543,5817:245:1,-175,-84,0,0,-0.00547119 -2544,5817:144:2,-174.5,-84,0,0,-0.00547241 -2545,5817:144:1,-174,-84,0,0,-0.00547364 -2546,5817:143:2,-173.5,-84,0,0,-0.00547364 -2547,5817:143:1,-173,-84,0,0,-0.00547486 -2548,5817:142:2,-172.5,-84,0,0,-0.00547486 -2549,5817:142:1,-172,-84,0,0,-0.00547605 -2550,5817:141:2,-171.5,-84,0,0,-0.00547605 -2551,5817:141:1,-171,-84,0,0,-0.00547605 -2552,5817:140:2,-170.5,-84,0,0,-0.00547727 -2553,5817:140:1,-170,-84,0,0,-0.00547727 -2554,5816:249:2,-169.5,-84,0,0,-0.0054785 -2555,5816:249:1,-169,-84,0,0,-0.0054785 -2556,5816:248:2,-168.5,-84,0,0,-0.0054785 -2557,5816:248:1,-168,-84,0,0,-0.00547972 -2558,5816:247:2,-167.5,-84,0,0,-0.00547972 -2559,5816:247:1,-167,-84,0,0,-0.00548091 -2560,5816:246:2,-166.5,-84,0,0,-0.00548091 -2561,5816:246:1,-166,-84,0,0,-0.00547972 -2562,5816:245:2,-165.5,-84,0,0,-0.00547972 -2563,5816:245:1,-165,-84,0,0,-0.00547972 -2564,5816:144:2,-164.5,-84,0,0,-0.00547972 -2565,5816:144:1,-164,-84,0,0,-0.00547972 -2566,5816:143:2,-163.5,-84,0,0,-0.00547972 -2567,5816:143:1,-163,-84,0,0,-0.00548091 -2568,5816:142:2,-162.5,-84,0,0,-0.00548091 -2569,5816:142:1,-162,-84,0,0,-0.00548091 -2570,5816:141:2,-161.5,-84,0,0,-0.00548091 -2571,5816:141:1,-161,-84,0,0,-0.00548214 -2572,5816:140:2,-160.5,-84,0,0,-0.00548337 -2573,5816:140:1,-160,-84,0,0,-0.00548459 -2574,5815:249:2,-159.5,-84,0,0,-0.00548582 -2575,5815:249:1,-159,-84,0,0,-0.00548582 -2576,5815:248:2,-158.5,-84,0,0,-0.00548701 -2577,5815:248:1,-158,-84,0,0,-0.00548824 -2578,5815:247:2,-157.5,-84,0,0,-0.00548824 -2579,5815:247:1,-157,-84,0,0,-0.00548701 -2580,5815:246:2,-156.5,-84,0,0,-0.00548701 -2581,5815:246:1,-156,-84,0,0,-0.00548824 -2582,5815:245:2,-155.5,-84,0,0,-0.00548947 -2583,5815:245:1,-155,-84,0,0,-0.00548947 -2584,5815:144:2,-154.5,-84,0,0,-0.00548701 -2585,5815:144:1,-154,-84,0,0,-0.00548701 -2586,5815:143:2,-153.5,-84,0,0,-0.00548824 -2587,5815:143:1,-153,-84,0,0,-0.00548947 -2588,5815:142:2,-152.5,-84,0,0,-0.00548947 -2589,5815:142:1,-152,-84,0,0,-0.00548824 -2590,5815:141:2,-151.5,-84,0,0,-0.00548582 -2591,5815:141:1,-151,-84,0,0,-0.00548582 -2592,5815:140:2,-150.5,-84,0,0,-0.00548582 -2593,5815:140:1,-150,-84,0,0,-0.00548582 -2594,5814:249:2,-149.5,-84,0,0,-0.00548582 -2595,5814:249:1,-149,-84,0,0,-0.00548459 -2596,5814:248:2,-148.5,-84,0,0,-0.00548459 -2597,5814:248:1,-148,-84,0,0,-0.00548459 -2598,5814:247:2,-147.5,-84,0,0,-0.00548459 -2599,5814:247:1,-147,-84,0,0,-0.00548337 -2600,5814:246:2,-146.5,-84,0,0,-0.00548337 -2601,5814:246:1,-146,-84,0,0,-0.00548214 -2602,5814:245:2,-145.5,-84,0,0,-0.00548214 -2603,5814:245:1,-145,-84,0,0,-0.00548214 -2604,5814:144:2,-144.5,-84,0,0,-0.00548091 -2605,5814:144:1,-144,-84,0,0,-0.00548091 -2606,5814:143:2,-143.5,-84,0,0,-0.00548091 -2607,5814:143:1,-143,-84,0,0,-0.00548214 -2608,5814:142:2,-142.5,-84,0,0,-0.00548214 -2609,5814:142:1,-142,-84,0,0,-0.00548091 -2610,5814:141:2,-141.5,-84,0,0,-0.00547972 -2611,5814:141:1,-141,-84,0,0,-0.00548091 -2612,5814:140:2,-140.5,-84,0,0,-0.00548091 -2613,5814:140:1,-140,-84,0,0,-0.00548214 -2614,5813:249:2,-139.5,-84,0,0,-0.00548214 -2615,5813:249:1,-139,-84,0,0,-0.00548214 -2616,5813:248:2,-138.5,-84,0,0,-0.00548214 -2617,5813:248:1,-138,-84,0,0,-0.00548337 -2618,5813:247:2,-137.5,-84,0,0,-0.00548947 -2619,5813:247:1,-137,-84,0,0,-0.00550777 -2620,5813:246:2,-136.5,-84,0,0,-0.005536 -2621,5813:246:1,-136,-84,0,0,-0.00560158 -2622,5813:245:2,-135.5,-84,0,0,-0.00584441 -2623,5813:245:1,-135,-84,0,0,-0.00592286 -2624,5813:144:2,-134.5,-84,0,0,-0.00591106 -2625,5813:144:1,-134,-84,0,0,-0.00596912 -2626,5811:140:1,-110,-84,0,0,-0.00698226 -2627,5810:249:2,-109.5,-84,0,0,-0.00750095 -2628,5810:249:1,-109,-84,0,0,-0.00796395 -2629,5810:248:2,-108.5,-84,0,0,-0.00791092 -2630,5810:246:1,-106,-84,0,0,-0.005619 -2631,5810:245:2,-105.5,-84,0,0,-0.00555077 -2632,5810:245:1,-105,-84,0,0,-0.00552617 -2633,5810:144:2,-104.5,-84,0,0,-0.0055446 -2634,5810:144:1,-104,-84,0,0,-0.00578243 -2635,5810:143:2,-103.5,-84,0,0,-0.00623081 -2636,5810:143:1,-103,-84,0,0,-0.0065446 -2637,5810:142:2,-102.5,-84,0,0,-0.00661925 -2638,5806:141:2,-61.5,-84,0,0,-0.00552861 -2639,5806:141:1,-61,-84,0,0,-0.00552127 -2640,5806:140:2,-60.5,-84,0,0,-0.00550288 -2641,5806:140:1,-60,-84,0,0,-0.00548947 -2642,5805:249:2,-59.5,-84,0,0,-0.0054785 -2643,5805:249:1,-59,-84,0,0,-0.00546511 -2644,5805:248:2,-58.5,-84,0,0,-0.00545541 -2645,5805:248:1,-58,-84,0,0,-0.005453 -2646,5805:247:2,-57.5,-84,0,0,-0.00545179 -2647,5805:247:1,-57,-84,0,0,-0.00545057 -2648,5805:246:2,-56.5,-84,0,0,-0.00544935 -2649,5805:246:1,-56,-84,0,0,-0.00544935 -2650,5805:245:2,-55.5,-84,0,0,-0.00544935 -2651,5805:245:1,-55,-84,0,0,-0.00545057 -2652,5805:144:2,-54.5,-84,0,0,-0.00545057 -2653,5805:144:1,-54,-84,0,0,-0.00545057 -2654,5805:143:2,-53.5,-84,0,0,-0.00545057 -2655,5805:143:1,-53,-84,0,0,-0.00545179 -2656,5805:142:2,-52.5,-84,0,0,-0.005453 -2657,5805:142:1,-52,-84,0,0,-0.00545423 -2658,5805:141:2,-51.5,-84,0,0,-0.00545423 -2659,5805:141:1,-51,-84,0,0,-0.00545541 -2660,5805:140:2,-50.5,-84,0,0,-0.00545541 -2661,5805:140:1,-50,-84,0,0,-0.00545541 -2662,5804:249:2,-49.5,-84,0,0,-0.00545541 -2663,5804:249:1,-49,-84,0,0,-0.00545541 -2664,5804:248:2,-48.5,-84,0,0,-0.00545423 -2665,5804:248:1,-48,-84,0,0,-0.005453 -2666,5804:247:2,-47.5,-84,0,0,-0.005453 -2667,5804:247:1,-47,-84,0,0,-0.00545663 -2668,5804:246:2,-46.5,-84,0,0,-0.00545907 -2669,5804:246:1,-46,-84,0,0,-0.00546148 -2670,5804:245:2,-45.5,-84,0,0,-0.00546392 -2671,5804:245:1,-45,-84,0,0,-0.00546633 -2672,5804:144:2,-44.5,-84,0,0,-0.00546511 -2673,5804:144:1,-44,-84,0,0,-0.00546511 -2674,5804:143:2,-43.5,-84,0,0,-0.00546511 -2675,5804:143:1,-43,-84,0,0,-0.00546511 -2676,5804:142:2,-42.5,-84,0,0,-0.00546392 -2677,5804:142:1,-42,-84,0,0,-0.00546392 -2678,5804:141:2,-41.5,-84,0,0,-0.00546511 -2679,5804:141:1,-41,-84,0,0,-0.00546511 -2680,5804:140:2,-40.5,-84,0,0,-0.00546633 -2681,5804:140:1,-40,-84,0,0,-0.00546755 -2682,5803:249:2,-39.5,-84,0,0,-0.00546755 -2683,5803:249:1,-39,-84,0,0,-0.00546755 -2684,5803:248:2,-38.5,-84,0,0,-0.00546755 -2685,5803:248:1,-38,-84,0,0,-0.00546755 -2686,5803:247:2,-37.5,-84,0,0,-0.00546878 -2687,5803:247:1,-37,-84,0,0,-0.00546755 -2688,5803:246:2,-36.5,-84,0,0,-0.00546755 -2689,5803:246:1,-36,-84,0,0,-0.00546755 -2690,5803:245:2,-35.5,-84,0,0,-0.00546755 -2691,5803:245:1,-35,-84,0,0,-0.00546878 -2692,5803:144:2,-34.5,-84,0,0,-0.00546878 -2693,5803:144:1,-34,-84,0,0,-0.00546755 -2694,5803:143:2,-33.5,-84,0,0,-0.00546755 -2695,5803:143:1,-33,-84,0,0,-0.00546755 -2696,5803:142:2,-32.5,-84,0,0,-0.00546878 -2697,5803:142:1,-32,-84,0,0,-0.00546878 -2698,5803:141:2,-31.5,-84,0,0,-0.00546878 -2699,5803:141:1,-31,-84,0,0,-0.00547 -2700,5803:140:2,-30.5,-84,0,0,-0.00546878 -2701,5803:140:1,-30,-84,0,0,-0.00547 -2702,5802:249:2,-29.5,-84,0,0,-0.00547119 -2703,5802:249:1,-29,-84,0,0,-0.00547 -2704,5802:248:2,-28.5,-84,0,0,-0.00546878 -2705,5802:248:1,-28,-84,0,0,-0.00546755 -2706,5802:247:2,-27.5,-84,0,0,-0.00546633 -2707,5802:247:1,-27,-84,0,0,-0.00546511 -2708,5802:246:2,-26.5,-84,0,0,-0.00553848 -2709,5802:246:1,-26,-84,0,0,-0.00565409 -2710,5802:245:2,-25.5,-84,0,0,-0.00561402 -2711,5802:245:1,-25,-84,0,0,-0.00557672 -2712,5802:144:2,-24.5,-84,0,0,-0.00581851 -2713,5802:144:1,-24,-84,0,0,-0.00615781 -2714,3816:245:2,165.5,-84,0,0,-0.0055225 -2715,3816:246:1,166,-84,0,0,-0.00550411 -2716,3816:246:2,166.5,-84,0,0,-0.00548091 -2717,3816:247:1,167,-84,0,0,-0.00547241 -2718,3816:247:2,167.5,-84,0,0,-0.00546633 -2719,3816:248:1,168,-84,0,0,-0.00545907 -2720,3816:248:2,168.5,-84,0,0,-0.00545057 -2721,3816:249:1,169,-84,0,0,-0.00544451 -2722,3816:249:2,169.5,-84,0,0,-0.00544211 -2723,3817:140:1,170,-84,0,0,-0.00544333 -2724,3817:140:2,170.5,-84,0,0,-0.00544333 -2725,3817:141:1,171,-84,0,0,-0.00544089 -2726,3817:141:2,171.5,-84,0,0,-0.00569445 -2727,3817:142:1,172,-84,0,0,-0.00650255 -2728,3817:142:2,172.5,-84,0,0,-0.00744774 -2729,3817:143:1,173,-84,0,0,-0.00792146 -2730,3817:143:2,173.5,-84,0,0,-0.00790914 -2731,3817:144:1,174,-84,0,0,-0.00786525 -2732,3817:144:2,174.5,-84,0,0,-0.00783724 -2733,3817:245:1,175,-84,0,0,-0.00782681 -2734,3817:245:2,175.5,-84,0,0,-0.00778162 -2735,3817:246:1,176,-84,0,0,-0.00760351 -2736,3817:246:2,176.5,-84,0,0,-0.00631868 -2737,3817:247:1,177,-84,0,0,-0.00551024 -2738,3817:247:2,177.5,-84,0,0,-0.00544089 -2739,3817:248:1,178,-84,0,0,-0.00544211 -2740,3817:248:2,178.5,-84,0,0,-0.00544816 -2741,3817:249:1,179,-84,0,0,-0.005453 -2742,3817:249:2,179.5,-84,0,0,-0.00545663 -2743,3818:140:1,180,-84,0,0,-0.00546026 -2744,5818:130:3,-180,-83.5,0,0,-0.00546026 -2745,5817:239:4,-179.5,-83.5,0,0,-0.00546392 -2746,5817:239:3,-179,-83.5,0,0,-0.00546511 -2747,5817:238:4,-178.5,-83.5,0,0,-0.00546392 -2748,5817:238:3,-178,-83.5,0,0,-0.00546511 -2749,5817:237:4,-177.5,-83.5,0,0,-0.00546633 -2750,5817:237:3,-177,-83.5,0,0,-0.00546878 -2751,5817:236:4,-176.5,-83.5,0,0,-0.00547 -2752,5817:236:3,-176,-83.5,0,0,-0.00547 -2753,5817:235:4,-175.5,-83.5,0,0,-0.00547119 -2754,5817:235:3,-175,-83.5,0,0,-0.00547119 -2755,5817:134:4,-174.5,-83.5,0,0,-0.00547241 -2756,5817:134:3,-174,-83.5,0,0,-0.00547364 -2757,5817:133:4,-173.5,-83.5,0,0,-0.00547364 -2758,5817:133:3,-173,-83.5,0,0,-0.00547486 -2759,5817:132:4,-172.5,-83.5,0,0,-0.00547486 -2760,5817:132:3,-172,-83.5,0,0,-0.00547605 -2761,5817:131:4,-171.5,-83.5,0,0,-0.00547605 -2762,5817:131:3,-171,-83.5,0,0,-0.00547605 -2763,5817:130:4,-170.5,-83.5,0,0,-0.00547727 -2764,5817:130:3,-170,-83.5,0,0,-0.00547727 -2765,5816:239:4,-169.5,-83.5,0,0,-0.0054785 -2766,5816:239:3,-169,-83.5,0,0,-0.0054785 -2767,5816:238:4,-168.5,-83.5,0,0,-0.0054785 -2768,5816:238:3,-168,-83.5,0,0,-0.00547972 -2769,5816:237:4,-167.5,-83.5,0,0,-0.00547972 -2770,5816:237:3,-167,-83.5,0,0,-0.00548091 -2771,5816:236:4,-166.5,-83.5,0,0,-0.00548091 -2772,5816:236:3,-166,-83.5,0,0,-0.00547972 -2773,5816:235:4,-165.5,-83.5,0,0,-0.00547972 -2774,5816:235:3,-165,-83.5,0,0,-0.00547972 -2775,5816:134:4,-164.5,-83.5,0,0,-0.00547972 -2776,5816:134:3,-164,-83.5,0,0,-0.00547972 -2777,5816:133:4,-163.5,-83.5,0,0,-0.00547972 -2778,5816:133:3,-163,-83.5,0,0,-0.00548091 -2779,5816:132:4,-162.5,-83.5,0,0,-0.00548091 -2780,5816:132:3,-162,-83.5,0,0,-0.00548091 -2781,5816:131:4,-161.5,-83.5,0,0,-0.00548091 -2782,5816:131:3,-161,-83.5,0,0,-0.00548214 -2783,5816:130:4,-160.5,-83.5,0,0,-0.00548337 -2784,5816:130:3,-160,-83.5,0,0,-0.00548459 -2785,5815:239:4,-159.5,-83.5,0,0,-0.00548582 -2786,5815:239:3,-159,-83.5,0,0,-0.00548582 -2787,5815:238:4,-158.5,-83.5,0,0,-0.00548701 -2788,5815:238:3,-158,-83.5,0,0,-0.00548824 -2789,5815:237:4,-157.5,-83.5,0,0,-0.00548824 -2790,5815:237:3,-157,-83.5,0,0,-0.00548701 -2791,5815:236:4,-156.5,-83.5,0,0,-0.00548701 -2792,5815:236:3,-156,-83.5,0,0,-0.00548824 -2793,5815:235:4,-155.5,-83.5,0,0,-0.00548947 -2794,5815:235:3,-155,-83.5,0,0,-0.00548947 -2795,5815:134:4,-154.5,-83.5,0,0,-0.00548701 -2796,5815:134:3,-154,-83.5,0,0,-0.00548701 -2797,5815:133:4,-153.5,-83.5,0,0,-0.00548824 -2798,5815:133:3,-153,-83.5,0,0,-0.00548947 -2799,5815:132:4,-152.5,-83.5,0,0,-0.00548947 -2800,5815:132:3,-152,-83.5,0,0,-0.00548824 -2801,5815:131:4,-151.5,-83.5,0,0,-0.00548582 -2802,5815:131:3,-151,-83.5,0,0,-0.00548582 -2803,5815:130:4,-150.5,-83.5,0,0,-0.00548582 -2804,5815:130:3,-150,-83.5,0,0,-0.00548582 -2805,5814:239:4,-149.5,-83.5,0,0,-0.00548582 -2806,5814:239:3,-149,-83.5,0,0,-0.00548459 -2807,5814:238:4,-148.5,-83.5,0,0,-0.00548459 -2808,5814:238:3,-148,-83.5,0,0,-0.00548459 -2809,5814:237:4,-147.5,-83.5,0,0,-0.00548459 -2810,5814:237:3,-147,-83.5,0,0,-0.00548337 -2811,5814:236:4,-146.5,-83.5,0,0,-0.00548337 -2812,5814:236:3,-146,-83.5,0,0,-0.00548214 -2813,5814:235:4,-145.5,-83.5,0,0,-0.00548214 -2814,5814:235:3,-145,-83.5,0,0,-0.00548214 -2815,5814:134:4,-144.5,-83.5,0,0,-0.00548091 -2816,5814:134:3,-144,-83.5,0,0,-0.00548091 -2817,5814:133:4,-143.5,-83.5,0,0,-0.00548091 -2818,5814:133:3,-143,-83.5,0,0,-0.00548214 -2819,5814:132:4,-142.5,-83.5,0,0,-0.00548214 -2820,5814:132:3,-142,-83.5,0,0,-0.00548091 -2821,5814:131:4,-141.5,-83.5,0,0,-0.00547972 -2822,5814:131:3,-141,-83.5,0,0,-0.00548091 -2823,5814:130:4,-140.5,-83.5,0,0,-0.00548091 -2824,5814:130:3,-140,-83.5,0,0,-0.00548214 -2825,5813:239:4,-139.5,-83.5,0,0,-0.00548214 -2826,5813:239:3,-139,-83.5,0,0,-0.00548214 -2827,5813:238:4,-138.5,-83.5,0,0,-0.00548214 -2828,5813:238:3,-138,-83.5,0,0,-0.00548337 -2829,5813:237:4,-137.5,-83.5,0,0,-0.00548947 -2830,5813:237:3,-137,-83.5,0,0,-0.00550777 -2831,5813:236:4,-136.5,-83.5,0,0,-0.005536 -2832,5813:236:3,-136,-83.5,0,0,-0.00560158 -2833,5813:235:4,-135.5,-83.5,0,0,-0.00584441 -2834,5813:235:3,-135,-83.5,0,0,-0.00592286 -2835,5813:134:4,-134.5,-83.5,0,0,-0.00591106 -2836,5813:134:3,-134,-83.5,0,0,-0.00596912 -2837,5811:130:3,-110,-83.5,0,0,-0.00698226 -2838,5810:239:4,-109.5,-83.5,0,0,-0.00750095 -2839,5810:239:3,-109,-83.5,0,0,-0.00796395 -2840,5810:238:4,-108.5,-83.5,0,0,-0.00791092 -2841,5810:236:3,-106,-83.5,0,0,-0.005619 -2842,5810:235:4,-105.5,-83.5,0,0,-0.00555077 -2843,5810:235:3,-105,-83.5,0,0,-0.00552617 -2844,5810:134:4,-104.5,-83.5,0,0,-0.0055446 -2845,5810:134:3,-104,-83.5,0,0,-0.00578243 -2846,5810:133:4,-103.5,-83.5,0,0,-0.00623081 -2847,5810:133:3,-103,-83.5,0,0,-0.0065446 -2848,5810:132:4,-102.5,-83.5,0,0,-0.00661925 -2849,5806:131:4,-61.5,-83.5,0,0,-0.00552861 -2850,5806:131:3,-61,-83.5,0,0,-0.00552127 -2851,5806:130:4,-60.5,-83.5,0,0,-0.00550288 -2852,5806:130:3,-60,-83.5,0,0,-0.00548947 -2853,5805:239:4,-59.5,-83.5,0,0,-0.0054785 -2854,5805:239:3,-59,-83.5,0,0,-0.00546511 -2855,5805:238:4,-58.5,-83.5,0,0,-0.00545541 -2856,5805:238:3,-58,-83.5,0,0,-0.005453 -2857,5805:237:4,-57.5,-83.5,0,0,-0.00545179 -2858,5805:237:3,-57,-83.5,0,0,-0.00545057 -2859,5805:236:4,-56.5,-83.5,0,0,-0.00544935 -2860,5805:236:3,-56,-83.5,0,0,-0.00544935 -2861,5805:235:4,-55.5,-83.5,0,0,-0.00544935 -2862,5805:235:3,-55,-83.5,0,0,-0.00545057 -2863,5805:134:4,-54.5,-83.5,0,0,-0.00545057 -2864,5805:134:3,-54,-83.5,0,0,-0.00545057 -2865,5805:133:4,-53.5,-83.5,0,0,-0.00545057 -2866,5805:133:3,-53,-83.5,0,0,-0.00545179 -2867,5805:132:4,-52.5,-83.5,0,0,-0.005453 -2868,5805:132:3,-52,-83.5,0,0,-0.00545423 -2869,5805:131:4,-51.5,-83.5,0,0,-0.00545423 -2870,5805:131:3,-51,-83.5,0,0,-0.00545541 -2871,5805:130:4,-50.5,-83.5,0,0,-0.00545541 -2872,5805:130:3,-50,-83.5,0,0,-0.00545541 -2873,5804:239:4,-49.5,-83.5,0,0,-0.00545541 -2874,5804:239:3,-49,-83.5,0,0,-0.00545541 -2875,5804:238:4,-48.5,-83.5,0,0,-0.00545423 -2876,5804:238:3,-48,-83.5,0,0,-0.005453 -2877,5804:237:4,-47.5,-83.5,0,0,-0.005453 -2878,5804:237:3,-47,-83.5,0,0,-0.00545663 -2879,5804:236:4,-46.5,-83.5,0,0,-0.00545907 -2880,5804:236:3,-46,-83.5,0,0,-0.00546148 -2881,5804:235:4,-45.5,-83.5,0,0,-0.00546392 -2882,5804:235:3,-45,-83.5,0,0,-0.00546633 -2883,5804:134:4,-44.5,-83.5,0,0,-0.00546511 -2884,5804:134:3,-44,-83.5,0,0,-0.00546511 -2885,5804:133:4,-43.5,-83.5,0,0,-0.00546511 -2886,5804:133:3,-43,-83.5,0,0,-0.00546511 -2887,5804:132:4,-42.5,-83.5,0,0,-0.00546392 -2888,5804:132:3,-42,-83.5,0,0,-0.00546392 -2889,5804:131:4,-41.5,-83.5,0,0,-0.00546511 -2890,5804:131:3,-41,-83.5,0,0,-0.00546511 -2891,5804:130:4,-40.5,-83.5,0,0,-0.00546633 -2892,5804:130:3,-40,-83.5,0,0,-0.00546755 -2893,5803:239:4,-39.5,-83.5,0,0,-0.00546755 -2894,5803:239:3,-39,-83.5,0,0,-0.00546755 -2895,5803:238:4,-38.5,-83.5,0,0,-0.00546755 -2896,5803:238:3,-38,-83.5,0,0,-0.00546755 -2897,5803:237:4,-37.5,-83.5,0,0,-0.00546878 -2898,5803:237:3,-37,-83.5,0,0,-0.00546755 -2899,5803:236:4,-36.5,-83.5,0,0,-0.00546755 -2900,5803:236:3,-36,-83.5,0,0,-0.00546755 -2901,5803:235:4,-35.5,-83.5,0,0,-0.00546755 -2902,5803:235:3,-35,-83.5,0,0,-0.00546878 -2903,5803:134:4,-34.5,-83.5,0,0,-0.00546878 -2904,5803:134:3,-34,-83.5,0,0,-0.00546755 -2905,5803:133:4,-33.5,-83.5,0,0,-0.00546755 -2906,5803:133:3,-33,-83.5,0,0,-0.00546755 -2907,5803:132:4,-32.5,-83.5,0,0,-0.00546878 -2908,5803:132:3,-32,-83.5,0,0,-0.00546878 -2909,5803:131:4,-31.5,-83.5,0,0,-0.00546878 -2910,5803:131:3,-31,-83.5,0,0,-0.00547 -2911,5803:130:4,-30.5,-83.5,0,0,-0.00546878 -2912,5803:130:3,-30,-83.5,0,0,-0.00547 -2913,5802:239:4,-29.5,-83.5,0,0,-0.00547119 -2914,5802:239:3,-29,-83.5,0,0,-0.00547 -2915,5802:238:4,-28.5,-83.5,0,0,-0.00546878 -2916,5802:238:3,-28,-83.5,0,0,-0.00546755 -2917,5802:237:4,-27.5,-83.5,0,0,-0.00546633 -2918,5802:237:3,-27,-83.5,0,0,-0.00546511 -2919,5802:236:4,-26.5,-83.5,0,0,-0.00553848 -2920,5802:236:3,-26,-83.5,0,0,-0.00565409 -2921,5802:235:4,-25.5,-83.5,0,0,-0.00561402 -2922,5802:235:3,-25,-83.5,0,0,-0.00557672 -2923,5802:134:4,-24.5,-83.5,0,0,-0.00581851 -2924,5802:134:3,-24,-83.5,0,0,-0.00615781 -2925,3816:235:4,165.5,-83.5,0,0,-0.0055225 -2926,3816:236:3,166,-83.5,0,0,-0.00550411 -2927,3816:236:4,166.5,-83.5,0,0,-0.00548091 -2928,3816:237:3,167,-83.5,0,0,-0.00547241 -2929,3816:237:4,167.5,-83.5,0,0,-0.00546633 -2930,3816:238:3,168,-83.5,0,0,-0.00545907 -2931,3816:238:4,168.5,-83.5,0,0,-0.00545057 -2932,3816:239:3,169,-83.5,0,0,-0.00544451 -2933,3816:239:4,169.5,-83.5,0,0,-0.00544211 -2934,3817:130:3,170,-83.5,0,0,-0.00544333 -2935,3817:130:4,170.5,-83.5,0,0,-0.00544333 -2936,3817:131:3,171,-83.5,0,0,-0.00544089 -2937,3817:131:4,171.5,-83.5,0,0,-0.00569445 -2938,3817:132:3,172,-83.5,0,0,-0.00650255 -2939,3817:132:4,172.5,-83.5,0,0,-0.00744774 -2940,3817:133:3,173,-83.5,0,0,-0.00792146 -2941,3817:133:4,173.5,-83.5,0,0,-0.00790914 -2942,3817:134:3,174,-83.5,0,0,-0.00786525 -2943,3817:134:4,174.5,-83.5,0,0,-0.00783724 -2944,3817:235:3,175,-83.5,0,0,-0.00782681 -2945,3817:235:4,175.5,-83.5,0,0,-0.00778162 -2946,3817:236:3,176,-83.5,0,0,-0.00760351 -2947,3817:236:4,176.5,-83.5,0,0,-0.00631868 -2948,3817:237:3,177,-83.5,0,0,-0.00551024 -2949,3817:237:4,177.5,-83.5,0,0,-0.00544089 -2950,3817:238:3,178,-83.5,0,0,-0.00544211 -2951,3817:238:4,178.5,-83.5,0,0,-0.00544816 -2952,3817:239:3,179,-83.5,0,0,-0.005453 -2953,3817:239:4,179.5,-83.5,0,0,-0.00545663 -2954,3818:130:3,180,-83.5,0,0,-0.00546026 -2955,5818:130:1,-180,-83,0,0,-0.00546026 -2956,5817:239:2,-179.5,-83,0,0,-0.00546392 -2957,5817:239:1,-179,-83,0,0,-0.00546511 -2958,5817:238:2,-178.5,-83,0,0,-0.00546392 -2959,5817:238:1,-178,-83,0,0,-0.00546511 -2960,5817:237:2,-177.5,-83,0,0,-0.00546633 -2961,5817:237:1,-177,-83,0,0,-0.00546878 -2962,5817:236:2,-176.5,-83,0,0,-0.00547 -2963,5817:236:1,-176,-83,0,0,-0.00547 -2964,5817:235:2,-175.5,-83,0,0,-0.00547119 -2965,5817:235:1,-175,-83,0,0,-0.00547119 -2966,5817:134:2,-174.5,-83,0,0,-0.00547241 -2967,5817:134:1,-174,-83,0,0,-0.00547364 -2968,5817:133:2,-173.5,-83,0,0,-0.00547364 -2969,5817:133:1,-173,-83,0,0,-0.00547486 -2970,5817:132:2,-172.5,-83,0,0,-0.00547486 -2971,5817:132:1,-172,-83,0,0,-0.00547605 -2972,5817:131:2,-171.5,-83,0,0,-0.00547605 -2973,5817:131:1,-171,-83,0,0,-0.00547605 -2974,5817:130:2,-170.5,-83,0,0,-0.00547727 -2975,5817:130:1,-170,-83,0,0,-0.00547727 -2976,5816:239:2,-169.5,-83,0,0,-0.0054785 -2977,5816:239:1,-169,-83,0,0,-0.0054785 -2978,5816:238:2,-168.5,-83,0,0,-0.0054785 -2979,5816:238:1,-168,-83,0,0,-0.00547972 -2980,5816:237:2,-167.5,-83,0,0,-0.00547972 -2981,5816:237:1,-167,-83,0,0,-0.00548091 -2982,5816:236:2,-166.5,-83,0,0,-0.00548091 -2983,5816:236:1,-166,-83,0,0,-0.00547972 -2984,5816:235:2,-165.5,-83,0,0,-0.00547972 -2985,5816:235:1,-165,-83,0,0,-0.00547972 -2986,5816:134:2,-164.5,-83,0,0,-0.00547972 -2987,5816:134:1,-164,-83,0,0,-0.00547972 -2988,5816:133:2,-163.5,-83,0,0,-0.00547972 -2989,5816:133:1,-163,-83,0,0,-0.00548091 -2990,5816:132:2,-162.5,-83,0,0,-0.00548091 -2991,5816:132:1,-162,-83,0,0,-0.00548091 -2992,5816:131:2,-161.5,-83,0,0,-0.00548091 -2993,5816:131:1,-161,-83,0,0,-0.00548214 -2994,5816:130:2,-160.5,-83,0,0,-0.00548337 -2995,5816:130:1,-160,-83,0,0,-0.00548459 -2996,5815:239:2,-159.5,-83,0,0,-0.00548582 -2997,5815:239:1,-159,-83,0,0,-0.00548582 -2998,5815:238:2,-158.5,-83,0,0,-0.00548701 -2999,5815:238:1,-158,-83,0,0,-0.00548824 -3000,5815:237:2,-157.5,-83,0,0,-0.00548824 -3001,5815:237:1,-157,-83,0,0,-0.00548701 -3002,5815:236:2,-156.5,-83,0,0,-0.00548701 -3003,5815:236:1,-156,-83,0,0,-0.00548824 -3004,5815:235:2,-155.5,-83,0,0,-0.00548947 -3005,5815:235:1,-155,-83,0,0,-0.00548947 -3006,5815:134:2,-154.5,-83,0,0,-0.00548701 -3007,5815:134:1,-154,-83,0,0,-0.00548701 -3008,5815:133:2,-153.5,-83,0,0,-0.00548824 -3009,5815:133:1,-153,-83,0,0,-0.00548947 -3010,5815:132:2,-152.5,-83,0,0,-0.00548947 -3011,5815:132:1,-152,-83,0,0,-0.00548824 -3012,5815:131:2,-151.5,-83,0,0,-0.00548582 -3013,5815:131:1,-151,-83,0,0,-0.00548582 -3014,5815:130:2,-150.5,-83,0,0,-0.00548582 -3015,5815:130:1,-150,-83,0,0,-0.00548582 -3016,5814:239:2,-149.5,-83,0,0,-0.00548582 -3017,5814:239:1,-149,-83,0,0,-0.00548459 -3018,5814:238:2,-148.5,-83,0,0,-0.00548459 -3019,5814:238:1,-148,-83,0,0,-0.00548459 -3020,5814:237:2,-147.5,-83,0,0,-0.00548459 -3021,5814:237:1,-147,-83,0,0,-0.00548337 -3022,5814:236:2,-146.5,-83,0,0,-0.00548337 -3023,5814:236:1,-146,-83,0,0,-0.00548214 -3024,5814:235:2,-145.5,-83,0,0,-0.00548214 -3025,5814:235:1,-145,-83,0,0,-0.00548214 -3026,5814:134:2,-144.5,-83,0,0,-0.00548091 -3027,5814:134:1,-144,-83,0,0,-0.00548091 -3028,5814:133:2,-143.5,-83,0,0,-0.00548091 -3029,5814:133:1,-143,-83,0,0,-0.00548214 -3030,5814:132:2,-142.5,-83,0,0,-0.00548214 -3031,5814:132:1,-142,-83,0,0,-0.00548091 -3032,5814:131:2,-141.5,-83,0,0,-0.00547972 -3033,5814:131:1,-141,-83,0,0,-0.00548091 -3034,5814:130:2,-140.5,-83,0,0,-0.00548091 -3035,5814:130:1,-140,-83,0,0,-0.00548214 -3036,5813:239:2,-139.5,-83,0,0,-0.00548214 -3037,5813:239:1,-139,-83,0,0,-0.00548214 -3038,5813:238:2,-138.5,-83,0,0,-0.00548214 -3039,5813:238:1,-138,-83,0,0,-0.00548337 -3040,5813:237:2,-137.5,-83,0,0,-0.00548947 -3041,5813:237:1,-137,-83,0,0,-0.00550777 -3042,5813:236:2,-136.5,-83,0,0,-0.005536 -3043,5813:236:1,-136,-83,0,0,-0.00560158 -3044,5813:235:2,-135.5,-83,0,0,-0.00584441 -3045,5813:235:1,-135,-83,0,0,-0.00592286 -3046,5813:134:2,-134.5,-83,0,0,-0.00591106 -3047,5813:134:1,-134,-83,0,0,-0.00596912 -3048,5811:130:1,-110,-83,0,0,-0.00698226 -3049,5810:239:2,-109.5,-83,0,0,-0.00750095 -3050,5810:239:1,-109,-83,0,0,-0.00796395 -3051,5810:238:2,-108.5,-83,0,0,-0.00791092 -3052,5810:236:1,-106,-83,0,0,-0.005619 -3053,5810:235:2,-105.5,-83,0,0,-0.00555077 -3054,5810:235:1,-105,-83,0,0,-0.00552617 -3055,5810:134:2,-104.5,-83,0,0,-0.0055446 -3056,5810:134:1,-104,-83,0,0,-0.00578243 -3057,5810:133:2,-103.5,-83,0,0,-0.00623081 -3058,5810:133:1,-103,-83,0,0,-0.0065446 -3059,5810:132:2,-102.5,-83,0,0,-0.00661925 -3060,5806:131:2,-61.5,-83,0,0,-0.00552861 -3061,5806:131:1,-61,-83,0,0,-0.00552127 -3062,5806:130:2,-60.5,-83,0,0,-0.00550288 -3063,5806:130:1,-60,-83,0,0,-0.00548947 -3064,5805:239:2,-59.5,-83,0,0,-0.0054785 -3065,5805:239:1,-59,-83,0,0,-0.00546511 -3066,5805:238:2,-58.5,-83,0,0,-0.00545541 -3067,5805:238:1,-58,-83,0,0,-0.005453 -3068,5805:237:2,-57.5,-83,0,0,-0.00545179 -3069,5805:237:1,-57,-83,0,0,-0.00545057 -3070,5805:236:2,-56.5,-83,0,0,-0.00544935 -3071,5805:236:1,-56,-83,0,0,-0.00544935 -3072,5805:235:2,-55.5,-83,0,0,-0.00544935 -3073,5805:235:1,-55,-83,0,0,-0.00545057 -3074,5805:134:2,-54.5,-83,0,0,-0.00545057 -3075,5805:134:1,-54,-83,0,0,-0.00545057 -3076,5805:133:2,-53.5,-83,0,0,-0.00545057 -3077,5805:133:1,-53,-83,0,0,-0.00545179 -3078,5805:132:2,-52.5,-83,0,0,-0.005453 -3079,5805:132:1,-52,-83,0,0,-0.00545423 -3080,5805:131:2,-51.5,-83,0,0,-0.00545423 -3081,5805:131:1,-51,-83,0,0,-0.00545541 -3082,5805:130:2,-50.5,-83,0,0,-0.00545541 -3083,5805:130:1,-50,-83,0,0,-0.00545541 -3084,5804:239:2,-49.5,-83,0,0,-0.00545541 -3085,5804:239:1,-49,-83,0,0,-0.00545541 -3086,5804:238:2,-48.5,-83,0,0,-0.00545423 -3087,5804:238:1,-48,-83,0,0,-0.005453 -3088,5804:237:2,-47.5,-83,0,0,-0.005453 -3089,5804:237:1,-47,-83,0,0,-0.00545663 -3090,5804:236:2,-46.5,-83,0,0,-0.00545907 -3091,5804:236:1,-46,-83,0,0,-0.00546148 -3092,5804:235:2,-45.5,-83,0,0,-0.00546392 -3093,5804:235:1,-45,-83,0,0,-0.00546633 -3094,5804:134:2,-44.5,-83,0,0,-0.00546511 -3095,5804:134:1,-44,-83,0,0,-0.00546511 -3096,5804:133:2,-43.5,-83,0,0,-0.00546511 -3097,5804:133:1,-43,-83,0,0,-0.00546511 -3098,5804:132:2,-42.5,-83,0,0,-0.00546392 -3099,5804:132:1,-42,-83,0,0,-0.00546392 -3100,5804:131:2,-41.5,-83,0,0,-0.00546511 -3101,5804:131:1,-41,-83,0,0,-0.00546511 -3102,5804:130:2,-40.5,-83,0,0,-0.00546633 -3103,5804:130:1,-40,-83,0,0,-0.00546755 -3104,5803:239:2,-39.5,-83,0,0,-0.00546755 -3105,5803:239:1,-39,-83,0,0,-0.00546755 -3106,5803:238:2,-38.5,-83,0,0,-0.00546755 -3107,5803:238:1,-38,-83,0,0,-0.00546755 -3108,5803:237:2,-37.5,-83,0,0,-0.00546878 -3109,5803:237:1,-37,-83,0,0,-0.00546755 -3110,5803:236:2,-36.5,-83,0,0,-0.00546755 -3111,5803:236:1,-36,-83,0,0,-0.00546755 -3112,5803:235:2,-35.5,-83,0,0,-0.00546755 -3113,5803:235:1,-35,-83,0,0,-0.00546878 -3114,5803:134:2,-34.5,-83,0,0,-0.00546878 -3115,5803:134:1,-34,-83,0,0,-0.00546755 -3116,5803:133:2,-33.5,-83,0,0,-0.00546755 -3117,5803:133:1,-33,-83,0,0,-0.00546755 -3118,5803:132:2,-32.5,-83,0,0,-0.00546878 -3119,5803:132:1,-32,-83,0,0,-0.00546878 -3120,5803:131:2,-31.5,-83,0,0,-0.00546878 -3121,5803:131:1,-31,-83,0,0,-0.00547 -3122,5803:130:2,-30.5,-83,0,0,-0.00546878 -3123,5803:130:1,-30,-83,0,0,-0.00547 -3124,5802:239:2,-29.5,-83,0,0,-0.00547119 -3125,5802:239:1,-29,-83,0,0,-0.00547 -3126,5802:238:2,-28.5,-83,0,0,-0.00546878 -3127,5802:238:1,-28,-83,0,0,-0.00546755 -3128,5802:237:2,-27.5,-83,0,0,-0.00546633 -3129,5802:237:1,-27,-83,0,0,-0.00546511 -3130,5802:236:2,-26.5,-83,0,0,-0.00553848 -3131,5802:236:1,-26,-83,0,0,-0.00565409 -3132,5802:235:2,-25.5,-83,0,0,-0.00561402 -3133,5802:235:1,-25,-83,0,0,-0.00557672 -3134,5802:134:2,-24.5,-83,0,0,-0.00581851 -3135,5802:134:1,-24,-83,0,0,-0.00615781 -3136,3816:235:2,165.5,-83,0,0,-0.0055225 -3137,3816:236:1,166,-83,0,0,-0.00550411 -3138,3816:236:2,166.5,-83,0,0,-0.00548091 -3139,3816:237:1,167,-83,0,0,-0.00547241 -3140,3816:237:2,167.5,-83,0,0,-0.00546633 -3141,3816:238:1,168,-83,0,0,-0.00545907 -3142,3816:238:2,168.5,-83,0,0,-0.00545057 -3143,3816:239:1,169,-83,0,0,-0.00544451 -3144,3816:239:2,169.5,-83,0,0,-0.00544211 -3145,3817:130:1,170,-83,0,0,-0.00544333 -3146,3817:130:2,170.5,-83,0,0,-0.00544333 -3147,3817:131:1,171,-83,0,0,-0.00544089 -3148,3817:131:2,171.5,-83,0,0,-0.00569445 -3149,3817:132:1,172,-83,0,0,-0.00650255 -3150,3817:132:2,172.5,-83,0,0,-0.00744774 -3151,3817:133:1,173,-83,0,0,-0.00792146 -3152,3817:133:2,173.5,-83,0,0,-0.00790914 -3153,3817:134:1,174,-83,0,0,-0.00786525 -3154,3817:134:2,174.5,-83,0,0,-0.00783724 -3155,3817:235:1,175,-83,0,0,-0.00782681 -3156,3817:235:2,175.5,-83,0,0,-0.00778162 -3157,3817:236:1,176,-83,0,0,-0.00760351 -3158,3817:236:2,176.5,-83,0,0,-0.00631868 -3159,3817:237:1,177,-83,0,0,-0.00551024 -3160,3817:237:2,177.5,-83,0,0,-0.00544089 -3161,3817:238:1,178,-83,0,0,-0.00544211 -3162,3817:238:2,178.5,-83,0,0,-0.00544816 -3163,3817:239:1,179,-83,0,0,-0.005453 -3164,3817:239:2,179.5,-83,0,0,-0.00545663 -3165,3818:130:1,180,-83,0,0,-0.00546026 -3166,5818:120:3,-180,-82.5,0,0,-0.00546026 -3167,5817:229:4,-179.5,-82.5,0,0,-0.00546392 -3168,5817:229:3,-179,-82.5,0,0,-0.00546511 -3169,5817:228:4,-178.5,-82.5,0,0,-0.00546392 -3170,5817:228:3,-178,-82.5,0,0,-0.00546511 -3171,5817:227:4,-177.5,-82.5,0,0,-0.00546633 -3172,5817:227:3,-177,-82.5,0,0,-0.00546878 -3173,5817:226:4,-176.5,-82.5,0,0,-0.00547 -3174,5817:226:3,-176,-82.5,0,0,-0.00547 -3175,5817:225:4,-175.5,-82.5,0,0,-0.00547119 -3176,5817:225:3,-175,-82.5,0,0,-0.00547119 -3177,5817:124:4,-174.5,-82.5,0,0,-0.00547241 -3178,5817:124:3,-174,-82.5,0,0,-0.00547364 -3179,5817:123:4,-173.5,-82.5,0,0,-0.00547364 -3180,5817:123:3,-173,-82.5,0,0,-0.00547486 -3181,5817:122:4,-172.5,-82.5,0,0,-0.00547486 -3182,5817:122:3,-172,-82.5,0,0,-0.00547605 -3183,5817:121:4,-171.5,-82.5,0,0,-0.00547605 -3184,5817:121:3,-171,-82.5,0,0,-0.00547605 -3185,5817:120:4,-170.5,-82.5,0,0,-0.00547727 -3186,5817:120:3,-170,-82.5,0,0,-0.00547727 -3187,5816:229:4,-169.5,-82.5,0,0,-0.0054785 -3188,5816:229:3,-169,-82.5,0,0,-0.0054785 -3189,5816:228:4,-168.5,-82.5,0,0,-0.0054785 -3190,5816:228:3,-168,-82.5,0,0,-0.00547972 -3191,5816:227:4,-167.5,-82.5,0,0,-0.00547972 -3192,5816:227:3,-167,-82.5,0,0,-0.00548091 -3193,5816:226:4,-166.5,-82.5,0,0,-0.00548091 -3194,5816:226:3,-166,-82.5,0,0,-0.00547972 -3195,5816:225:4,-165.5,-82.5,0,0,-0.00547972 -3196,5816:225:3,-165,-82.5,0,0,-0.00547972 -3197,5816:124:4,-164.5,-82.5,0,0,-0.00547972 -3198,5816:124:3,-164,-82.5,0,0,-0.00547972 -3199,5816:123:4,-163.5,-82.5,0,0,-0.00547972 -3200,5816:123:3,-163,-82.5,0,0,-0.00548091 -3201,5816:122:4,-162.5,-82.5,0,0,-0.00548091 -3202,5816:122:3,-162,-82.5,0,0,-0.00548091 -3203,5816:121:4,-161.5,-82.5,0,0,-0.00548091 -3204,5816:121:3,-161,-82.5,0,0,-0.00548214 -3205,5816:120:4,-160.5,-82.5,0,0,-0.00548337 -3206,5816:120:3,-160,-82.5,0,0,-0.00548459 -3207,5815:229:4,-159.5,-82.5,0,0,-0.00548582 -3208,5815:229:3,-159,-82.5,0,0,-0.00548582 -3209,5815:228:4,-158.5,-82.5,0,0,-0.00548701 -3210,5815:228:3,-158,-82.5,0,0,-0.00548824 -3211,5815:227:4,-157.5,-82.5,0,0,-0.00548824 -3212,5815:227:3,-157,-82.5,0,0,-0.00548701 -3213,5815:226:4,-156.5,-82.5,0,0,-0.00548701 -3214,5815:226:3,-156,-82.5,0,0,-0.00548824 -3215,5815:225:4,-155.5,-82.5,0,0,-0.00548947 -3216,5815:225:3,-155,-82.5,0,0,-0.00548947 -3217,5815:124:4,-154.5,-82.5,0,0,-0.00548701 -3218,5815:124:3,-154,-82.5,0,0,-0.00548701 -3219,5815:123:4,-153.5,-82.5,0,0,-0.00548824 -3220,5815:123:3,-153,-82.5,0,0,-0.00548947 -3221,5815:122:4,-152.5,-82.5,0,0,-0.00548947 -3222,5815:122:3,-152,-82.5,0,0,-0.00548824 -3223,5815:121:4,-151.5,-82.5,0,0,-0.00548582 -3224,5815:121:3,-151,-82.5,0,0,-0.00548582 -3225,5815:120:4,-150.5,-82.5,0,0,-0.00548582 -3226,5815:120:3,-150,-82.5,0,0,-0.00548582 -3227,5814:229:4,-149.5,-82.5,0,0,-0.00548582 -3228,5814:229:3,-149,-82.5,0,0,-0.00548459 -3229,5814:228:4,-148.5,-82.5,0,0,-0.00548459 -3230,5814:228:3,-148,-82.5,0,0,-0.00548459 -3231,5814:227:4,-147.5,-82.5,0,0,-0.00548459 -3232,5814:227:3,-147,-82.5,0,0,-0.00548337 -3233,5814:226:4,-146.5,-82.5,0,0,-0.00548337 -3234,5814:226:3,-146,-82.5,0,0,-0.00548214 -3235,5814:225:4,-145.5,-82.5,0,0,-0.00548214 -3236,5814:225:3,-145,-82.5,0,0,-0.00548214 -3237,5814:124:4,-144.5,-82.5,0,0,-0.00548091 -3238,5814:124:3,-144,-82.5,0,0,-0.00548091 -3239,5814:123:4,-143.5,-82.5,0,0,-0.00548091 -3240,5814:123:3,-143,-82.5,0,0,-0.00548214 -3241,5814:122:4,-142.5,-82.5,0,0,-0.00548214 -3242,5814:122:3,-142,-82.5,0,0,-0.00548091 -3243,5814:121:4,-141.5,-82.5,0,0,-0.00547972 -3244,5814:121:3,-141,-82.5,0,0,-0.00548091 -3245,5814:120:4,-140.5,-82.5,0,0,-0.00548091 -3246,5814:120:3,-140,-82.5,0,0,-0.00548214 -3247,5813:229:4,-139.5,-82.5,0,0,-0.00548214 -3248,5813:229:3,-139,-82.5,0,0,-0.00548214 -3249,5813:228:4,-138.5,-82.5,0,0,-0.00548214 -3250,5813:228:3,-138,-82.5,0,0,-0.00548337 -3251,5813:227:4,-137.5,-82.5,0,0,-0.00548947 -3252,5813:227:3,-137,-82.5,0,0,-0.00550777 -3253,5813:226:4,-136.5,-82.5,0,0,-0.005536 -3254,5813:226:3,-136,-82.5,0,0,-0.00560158 -3255,5813:225:4,-135.5,-82.5,0,0,-0.00584441 -3256,5813:225:3,-135,-82.5,0,0,-0.00592286 -3257,5813:124:4,-134.5,-82.5,0,0,-0.00591106 -3258,5813:124:3,-134,-82.5,0,0,-0.00596912 -3259,5811:120:3,-110,-82.5,0,0,-0.00698226 -3260,5810:229:4,-109.5,-82.5,0,0,-0.00750095 -3261,5810:229:3,-109,-82.5,0,0,-0.00796395 -3262,5810:228:4,-108.5,-82.5,0,0,-0.00791092 -3263,5810:226:3,-106,-82.5,0,0,-0.005619 -3264,5810:225:4,-105.5,-82.5,0,0,-0.00555077 -3265,5810:225:3,-105,-82.5,0,0,-0.00552617 -3266,5810:124:4,-104.5,-82.5,0,0,-0.0055446 -3267,5810:124:3,-104,-82.5,0,0,-0.00578243 -3268,5810:123:4,-103.5,-82.5,0,0,-0.00623081 -3269,5810:123:3,-103,-82.5,0,0,-0.0065446 -3270,5810:122:4,-102.5,-82.5,0,0,-0.00661925 -3271,5806:121:4,-61.5,-82.5,0,0,-0.00552861 -3272,5806:121:3,-61,-82.5,0,0,-0.00552127 -3273,5806:120:4,-60.5,-82.5,0,0,-0.00550288 -3274,5806:120:3,-60,-82.5,0,0,-0.00548947 -3275,5805:229:4,-59.5,-82.5,0,0,-0.0054785 -3276,5805:229:3,-59,-82.5,0,0,-0.00546511 -3277,5805:228:4,-58.5,-82.5,0,0,-0.00545541 -3278,5805:228:3,-58,-82.5,0,0,-0.005453 -3279,5805:227:4,-57.5,-82.5,0,0,-0.00545179 -3280,5805:227:3,-57,-82.5,0,0,-0.00545057 -3281,5805:226:4,-56.5,-82.5,0,0,-0.00544935 -3282,5805:226:3,-56,-82.5,0,0,-0.00544935 -3283,5805:225:4,-55.5,-82.5,0,0,-0.00544935 -3284,5805:225:3,-55,-82.5,0,0,-0.00545057 -3285,5805:124:4,-54.5,-82.5,0,0,-0.00545057 -3286,5805:124:3,-54,-82.5,0,0,-0.00545057 -3287,5805:123:4,-53.5,-82.5,0,0,-0.00545057 -3288,5805:123:3,-53,-82.5,0,0,-0.00545179 -3289,5805:122:4,-52.5,-82.5,0,0,-0.005453 -3290,5805:122:3,-52,-82.5,0,0,-0.00545423 -3291,5805:121:4,-51.5,-82.5,0,0,-0.00545423 -3292,5805:121:3,-51,-82.5,0,0,-0.00545541 -3293,5805:120:4,-50.5,-82.5,0,0,-0.00545541 -3294,5805:120:3,-50,-82.5,0,0,-0.00545541 -3295,5804:229:4,-49.5,-82.5,0,0,-0.00545541 -3296,5804:229:3,-49,-82.5,0,0,-0.00545541 -3297,5804:228:4,-48.5,-82.5,0,0,-0.00545423 -3298,5804:228:3,-48,-82.5,0,0,-0.005453 -3299,5804:227:4,-47.5,-82.5,0,0,-0.005453 -3300,5804:227:3,-47,-82.5,0,0,-0.00545663 -3301,5804:226:4,-46.5,-82.5,0,0,-0.00545907 -3302,5804:226:3,-46,-82.5,0,0,-0.00546148 -3303,5804:225:4,-45.5,-82.5,0,0,-0.00546392 -3304,5804:225:3,-45,-82.5,0,0,-0.00546633 -3305,5804:124:4,-44.5,-82.5,0,0,-0.00546511 -3306,5804:124:3,-44,-82.5,0,0,-0.00546511 -3307,5804:123:4,-43.5,-82.5,0,0,-0.00546511 -3308,5804:123:3,-43,-82.5,0,0,-0.00546511 -3309,5804:122:4,-42.5,-82.5,0,0,-0.00546392 -3310,5804:122:3,-42,-82.5,0,0,-0.00546392 -3311,5804:121:4,-41.5,-82.5,0,0,-0.00546511 -3312,5804:121:3,-41,-82.5,0,0,-0.00546511 -3313,5804:120:4,-40.5,-82.5,0,0,-0.00546633 -3314,5804:120:3,-40,-82.5,0,0,-0.00546755 -3315,5803:229:4,-39.5,-82.5,0,0,-0.00546755 -3316,5803:229:3,-39,-82.5,0,0,-0.00546755 -3317,5803:228:4,-38.5,-82.5,0,0,-0.00546755 -3318,5803:228:3,-38,-82.5,0,0,-0.00546755 -3319,5803:227:4,-37.5,-82.5,0,0,-0.00546878 -3320,5803:227:3,-37,-82.5,0,0,-0.00546755 -3321,5803:226:4,-36.5,-82.5,0,0,-0.00546755 -3322,5803:226:3,-36,-82.5,0,0,-0.00546755 -3323,5803:225:4,-35.5,-82.5,0,0,-0.00546755 -3324,5803:225:3,-35,-82.5,0,0,-0.00546878 -3325,5803:124:4,-34.5,-82.5,0,0,-0.00546878 -3326,5803:124:3,-34,-82.5,0,0,-0.00546755 -3327,5803:123:4,-33.5,-82.5,0,0,-0.00546755 -3328,5803:123:3,-33,-82.5,0,0,-0.00546755 -3329,5803:122:4,-32.5,-82.5,0,0,-0.00546878 -3330,5803:122:3,-32,-82.5,0,0,-0.00546878 -3331,5803:121:4,-31.5,-82.5,0,0,-0.00546878 -3332,5803:121:3,-31,-82.5,0,0,-0.00547 -3333,5803:120:4,-30.5,-82.5,0,0,-0.00546878 -3334,5803:120:3,-30,-82.5,0,0,-0.00547 -3335,5802:229:4,-29.5,-82.5,0,0,-0.00547119 -3336,5802:229:3,-29,-82.5,0,0,-0.00547 -3337,5802:228:4,-28.5,-82.5,0,0,-0.00546878 -3338,5802:228:3,-28,-82.5,0,0,-0.00546755 -3339,5802:227:4,-27.5,-82.5,0,0,-0.00546633 -3340,5802:227:3,-27,-82.5,0,0,-0.00546511 -3341,5802:226:4,-26.5,-82.5,0,0,-0.00553848 -3342,5802:226:3,-26,-82.5,0,0,-0.00565409 -3343,5802:225:4,-25.5,-82.5,0,0,-0.00561402 -3344,5802:225:3,-25,-82.5,0,0,-0.00557672 -3345,5802:124:4,-24.5,-82.5,0,0,-0.00581851 -3346,5802:124:3,-24,-82.5,0,0,-0.00615781 -3347,3816:225:4,165.5,-82.5,0,0,-0.0055225 -3348,3816:226:3,166,-82.5,0,0,-0.00550411 -3349,3816:226:4,166.5,-82.5,0,0,-0.00548091 -3350,3816:227:3,167,-82.5,0,0,-0.00547241 -3351,3816:227:4,167.5,-82.5,0,0,-0.00546633 -3352,3816:228:3,168,-82.5,0,0,-0.00545907 -3353,3816:228:4,168.5,-82.5,0,0,-0.00545057 -3354,3816:229:3,169,-82.5,0,0,-0.00544451 -3355,3816:229:4,169.5,-82.5,0,0,-0.00544211 -3356,3817:120:3,170,-82.5,0,0,-0.00544333 -3357,3817:120:4,170.5,-82.5,0,0,-0.00544333 -3358,3817:121:3,171,-82.5,0,0,-0.00544089 -3359,3817:121:4,171.5,-82.5,0,0,-0.00569445 -3360,3817:122:3,172,-82.5,0,0,-0.00650255 -3361,3817:122:4,172.5,-82.5,0,0,-0.00744774 -3362,3817:123:3,173,-82.5,0,0,-0.00792146 -3363,3817:123:4,173.5,-82.5,0,0,-0.00790914 -3364,3817:124:3,174,-82.5,0,0,-0.00786525 -3365,3817:124:4,174.5,-82.5,0,0,-0.00783724 -3366,3817:225:3,175,-82.5,0,0,-0.00782681 -3367,3817:225:4,175.5,-82.5,0,0,-0.00778162 -3368,3817:226:3,176,-82.5,0,0,-0.00760351 -3369,3817:226:4,176.5,-82.5,0,0,-0.00631868 -3370,3817:227:3,177,-82.5,0,0,-0.00551024 -3371,3817:227:4,177.5,-82.5,0,0,-0.00544089 -3372,3817:228:3,178,-82.5,0,0,-0.00544211 -3373,3817:228:4,178.5,-82.5,0,0,-0.00544816 -3374,3817:229:3,179,-82.5,0,0,-0.005453 -3375,3817:229:4,179.5,-82.5,0,0,-0.00545663 -3376,3818:120:3,180,-82.5,0,0,-0.00546026 -3377,5818:120:1,-180,-82,0,0,-0.00546026 -3378,5817:229:2,-179.5,-82,0,0,-0.00546392 -3379,5817:229:1,-179,-82,0,0,-0.00546511 -3380,5817:228:2,-178.5,-82,0,0,-0.00546392 -3381,5817:228:1,-178,-82,0,0,-0.00546511 -3382,5817:227:2,-177.5,-82,0,0,-0.00546633 -3383,5817:227:1,-177,-82,0,0,-0.00546878 -3384,5817:226:2,-176.5,-82,0,0,-0.00547 -3385,5817:226:1,-176,-82,0,0,-0.00547 -3386,5817:225:2,-175.5,-82,0,0,-0.00547119 -3387,5817:225:1,-175,-82,0,0,-0.00547119 -3388,5817:124:2,-174.5,-82,0,0,-0.00547241 -3389,5817:124:1,-174,-82,0,0,-0.00547364 -3390,5817:123:2,-173.5,-82,0,0,-0.00547364 -3391,5817:123:1,-173,-82,0,0,-0.00547486 -3392,5817:122:2,-172.5,-82,0,0,-0.00547486 -3393,5817:122:1,-172,-82,0,0,-0.00547605 -3394,5817:121:2,-171.5,-82,0,0,-0.00547605 -3395,5817:121:1,-171,-82,0,0,-0.00547605 -3396,5817:120:2,-170.5,-82,0,0,-0.00547727 -3397,5817:120:1,-170,-82,0,0,-0.00547727 -3398,5816:229:2,-169.5,-82,0,0,-0.0054785 -3399,5816:229:1,-169,-82,0,0,-0.0054785 -3400,5816:228:2,-168.5,-82,0,0,-0.0054785 -3401,5816:228:1,-168,-82,0,0,-0.00547972 -3402,5816:227:2,-167.5,-82,0,0,-0.00547972 -3403,5816:227:1,-167,-82,0,0,-0.00548091 -3404,5816:226:2,-166.5,-82,0,0,-0.00548091 -3405,5816:226:1,-166,-82,0,0,-0.00547972 -3406,5816:225:2,-165.5,-82,0,0,-0.00547972 -3407,5816:225:1,-165,-82,0,0,-0.00547972 -3408,5816:124:2,-164.5,-82,0,0,-0.00547972 -3409,5816:124:1,-164,-82,0,0,-0.00547972 -3410,5816:123:2,-163.5,-82,0,0,-0.00547972 -3411,5816:123:1,-163,-82,0,0,-0.00548091 -3412,5816:122:2,-162.5,-82,0,0,-0.00548091 -3413,5816:122:1,-162,-82,0,0,-0.00548091 -3414,5816:121:2,-161.5,-82,0,0,-0.00548091 -3415,5816:121:1,-161,-82,0,0,-0.00548214 -3416,5816:120:2,-160.5,-82,0,0,-0.00548337 -3417,5816:120:1,-160,-82,0,0,-0.00548459 -3418,5815:229:2,-159.5,-82,0,0,-0.00548582 -3419,5815:229:1,-159,-82,0,0,-0.00548582 -3420,5815:228:2,-158.5,-82,0,0,-0.00548701 -3421,5815:228:1,-158,-82,0,0,-0.00548824 -3422,5815:227:2,-157.5,-82,0,0,-0.00548824 -3423,5815:227:1,-157,-82,0,0,-0.00548701 -3424,5815:226:2,-156.5,-82,0,0,-0.00548701 -3425,5815:226:1,-156,-82,0,0,-0.00548824 -3426,5815:225:2,-155.5,-82,0,0,-0.00548947 -3427,5815:225:1,-155,-82,0,0,-0.00548947 -3428,5815:124:2,-154.5,-82,0,0,-0.00548701 -3429,5815:124:1,-154,-82,0,0,-0.00548701 -3430,5815:123:2,-153.5,-82,0,0,-0.00548824 -3431,5815:123:1,-153,-82,0,0,-0.00548947 -3432,5815:122:2,-152.5,-82,0,0,-0.00548947 -3433,5815:122:1,-152,-82,0,0,-0.00548824 -3434,5815:121:2,-151.5,-82,0,0,-0.00548582 -3435,5815:121:1,-151,-82,0,0,-0.00548582 -3436,5815:120:2,-150.5,-82,0,0,-0.00548582 -3437,5815:120:1,-150,-82,0,0,-0.00548582 -3438,5814:229:2,-149.5,-82,0,0,-0.00548582 -3439,5814:229:1,-149,-82,0,0,-0.00548459 -3440,5814:228:2,-148.5,-82,0,0,-0.00548459 -3441,5814:228:1,-148,-82,0,0,-0.00548459 -3442,5814:227:2,-147.5,-82,0,0,-0.00548459 -3443,5814:227:1,-147,-82,0,0,-0.00548337 -3444,5814:226:2,-146.5,-82,0,0,-0.00548337 -3445,5814:226:1,-146,-82,0,0,-0.00548214 -3446,5814:225:2,-145.5,-82,0,0,-0.00548214 -3447,5814:225:1,-145,-82,0,0,-0.00548214 -3448,5814:124:2,-144.5,-82,0,0,-0.00548091 -3449,5814:124:1,-144,-82,0,0,-0.00548091 -3450,5814:123:2,-143.5,-82,0,0,-0.00548091 -3451,5814:123:1,-143,-82,0,0,-0.00548214 -3452,5814:122:2,-142.5,-82,0,0,-0.00548214 -3453,5814:122:1,-142,-82,0,0,-0.00548091 -3454,5814:121:2,-141.5,-82,0,0,-0.00547972 -3455,5814:121:1,-141,-82,0,0,-0.00548091 -3456,5814:120:2,-140.5,-82,0,0,-0.00548091 -3457,5814:120:1,-140,-82,0,0,-0.00548214 -3458,5813:229:2,-139.5,-82,0,0,-0.00548214 -3459,5813:229:1,-139,-82,0,0,-0.00548214 -3460,5813:228:2,-138.5,-82,0,0,-0.00548214 -3461,5813:228:1,-138,-82,0,0,-0.00548337 -3462,5813:227:2,-137.5,-82,0,0,-0.00548947 -3463,5813:227:1,-137,-82,0,0,-0.00550777 -3464,5813:226:2,-136.5,-82,0,0,-0.005536 -3465,5813:226:1,-136,-82,0,0,-0.00560158 -3466,5813:225:2,-135.5,-82,0,0,-0.00584441 -3467,5813:225:1,-135,-82,0,0,-0.00592286 -3468,5813:124:2,-134.5,-82,0,0,-0.00591106 -3469,5813:124:1,-134,-82,0,0,-0.00596912 -3470,5811:120:1,-110,-82,0,0,-0.00698226 -3471,5810:229:2,-109.5,-82,0,0,-0.00750095 -3472,5810:229:1,-109,-82,0,0,-0.00796395 -3473,5810:228:2,-108.5,-82,0,0,-0.00791092 -3474,5810:226:1,-106,-82,0,0,-0.005619 -3475,5810:225:2,-105.5,-82,0,0,-0.00555077 -3476,5810:225:1,-105,-82,0,0,-0.00552617 -3477,5810:124:2,-104.5,-82,0,0,-0.0055446 -3478,5810:124:1,-104,-82,0,0,-0.00578243 -3479,5810:123:2,-103.5,-82,0,0,-0.00623081 -3480,5810:123:1,-103,-82,0,0,-0.0065446 -3481,5810:122:2,-102.5,-82,0,0,-0.00661925 -3482,5806:121:2,-61.5,-82,0,0,-0.00552861 -3483,5806:121:1,-61,-82,0,0,-0.00552127 -3484,5806:120:2,-60.5,-82,0,0,-0.00550288 -3485,5806:120:1,-60,-82,0,0,-0.00548947 -3486,5805:229:2,-59.5,-82,0,0,-0.0054785 -3487,5805:229:1,-59,-82,0,0,-0.00546511 -3488,5805:228:2,-58.5,-82,0,0,-0.00545541 -3489,5805:228:1,-58,-82,0,0,-0.005453 -3490,5805:227:2,-57.5,-82,0,0,-0.00545179 -3491,5805:227:1,-57,-82,0,0,-0.00545057 -3492,5805:226:2,-56.5,-82,0,0,-0.00544935 -3493,5805:226:1,-56,-82,0,0,-0.00544935 -3494,5805:225:2,-55.5,-82,0,0,-0.00544935 -3495,5805:225:1,-55,-82,0,0,-0.00545057 -3496,5805:124:2,-54.5,-82,0,0,-0.00545057 -3497,5805:124:1,-54,-82,0,0,-0.00545057 -3498,5805:123:2,-53.5,-82,0,0,-0.00545057 -3499,5805:123:1,-53,-82,0,0,-0.00545179 -3500,5805:122:2,-52.5,-82,0,0,-0.005453 -3501,5805:122:1,-52,-82,0,0,-0.00545423 -3502,5805:121:2,-51.5,-82,0,0,-0.00545423 -3503,5805:121:1,-51,-82,0,0,-0.00545541 -3504,5805:120:2,-50.5,-82,0,0,-0.00545541 -3505,5805:120:1,-50,-82,0,0,-0.00545541 -3506,5804:229:2,-49.5,-82,0,0,-0.00545541 -3507,5804:229:1,-49,-82,0,0,-0.00545541 -3508,5804:228:2,-48.5,-82,0,0,-0.00545423 -3509,5804:228:1,-48,-82,0,0,-0.005453 -3510,5804:227:2,-47.5,-82,0,0,-0.005453 -3511,5804:227:1,-47,-82,0,0,-0.00545663 -3512,5804:226:2,-46.5,-82,0,0,-0.00545907 -3513,5804:226:1,-46,-82,0,0,-0.00546148 -3514,5804:225:2,-45.5,-82,0,0,-0.00546392 -3515,5804:225:1,-45,-82,0,0,-0.00546633 -3516,5804:124:2,-44.5,-82,0,0,-0.00546511 -3517,5804:124:1,-44,-82,0,0,-0.00546511 -3518,5804:123:2,-43.5,-82,0,0,-0.00546511 -3519,5804:123:1,-43,-82,0,0,-0.00546511 -3520,5804:122:2,-42.5,-82,0,0,-0.00546392 -3521,5804:122:1,-42,-82,0,0,-0.00546392 -3522,5804:121:2,-41.5,-82,0,0,-0.00546511 -3523,5804:121:1,-41,-82,0,0,-0.00546511 -3524,5804:120:2,-40.5,-82,0,0,-0.00546633 -3525,5804:120:1,-40,-82,0,0,-0.00546755 -3526,5803:229:2,-39.5,-82,0,0,-0.00546755 -3527,5803:229:1,-39,-82,0,0,-0.00546755 -3528,5803:228:2,-38.5,-82,0,0,-0.00546755 -3529,5803:228:1,-38,-82,0,0,-0.00546755 -3530,5803:227:2,-37.5,-82,0,0,-0.00546878 -3531,5803:227:1,-37,-82,0,0,-0.00546755 -3532,5803:226:2,-36.5,-82,0,0,-0.00546755 -3533,5803:226:1,-36,-82,0,0,-0.00546755 -3534,5803:225:2,-35.5,-82,0,0,-0.00546755 -3535,5803:225:1,-35,-82,0,0,-0.00546878 -3536,5803:124:2,-34.5,-82,0,0,-0.00546878 -3537,5803:124:1,-34,-82,0,0,-0.00546755 -3538,5803:123:2,-33.5,-82,0,0,-0.00546755 -3539,5803:123:1,-33,-82,0,0,-0.00546755 -3540,5803:122:2,-32.5,-82,0,0,-0.00546878 -3541,5803:122:1,-32,-82,0,0,-0.00546878 -3542,5803:121:2,-31.5,-82,0,0,-0.00546878 -3543,5803:121:1,-31,-82,0,0,-0.00547 -3544,5803:120:2,-30.5,-82,0,0,-0.00546878 -3545,5803:120:1,-30,-82,0,0,-0.00547 -3546,5802:229:2,-29.5,-82,0,0,-0.00547119 -3547,5802:229:1,-29,-82,0,0,-0.00547 -3548,5802:228:2,-28.5,-82,0,0,-0.00546878 -3549,5802:228:1,-28,-82,0,0,-0.00546755 -3550,5802:227:2,-27.5,-82,0,0,-0.00546633 -3551,5802:227:1,-27,-82,0,0,-0.00546511 -3552,5802:226:2,-26.5,-82,0,0,-0.00553848 -3553,5802:226:1,-26,-82,0,0,-0.00565409 -3554,5802:225:2,-25.5,-82,0,0,-0.00561402 -3555,5802:225:1,-25,-82,0,0,-0.00557672 -3556,5802:124:2,-24.5,-82,0,0,-0.00581851 -3557,5802:124:1,-24,-82,0,0,-0.00615781 -3558,3816:225:2,165.5,-82,0,0,-0.0055225 -3559,3816:226:1,166,-82,0,0,-0.00550411 -3560,3816:226:2,166.5,-82,0,0,-0.00548091 -3561,3816:227:1,167,-82,0,0,-0.00547241 -3562,3816:227:2,167.5,-82,0,0,-0.00546633 -3563,3816:228:1,168,-82,0,0,-0.00545907 -3564,3816:228:2,168.5,-82,0,0,-0.00545057 -3565,3816:229:1,169,-82,0,0,-0.00544451 -3566,3816:229:2,169.5,-82,0,0,-0.00544211 -3567,3817:120:1,170,-82,0,0,-0.00544333 -3568,3817:120:2,170.5,-82,0,0,-0.00544333 -3569,3817:121:1,171,-82,0,0,-0.00544089 -3570,3817:121:2,171.5,-82,0,0,-0.00569445 -3571,3817:122:1,172,-82,0,0,-0.00650255 -3572,3817:122:2,172.5,-82,0,0,-0.00744774 -3573,3817:123:1,173,-82,0,0,-0.00792146 -3574,3817:123:2,173.5,-82,0,0,-0.00790914 -3575,3817:124:1,174,-82,0,0,-0.00786525 -3576,3817:124:2,174.5,-82,0,0,-0.00783724 -3577,3817:225:1,175,-82,0,0,-0.00782681 -3578,3817:225:2,175.5,-82,0,0,-0.00778162 -3579,3817:226:1,176,-82,0,0,-0.00760351 -3580,3817:226:2,176.5,-82,0,0,-0.00631868 -3581,3817:227:1,177,-82,0,0,-0.00551024 -3582,3817:227:2,177.5,-82,0,0,-0.00544089 -3583,3817:228:1,178,-82,0,0,-0.00544211 -3584,3817:228:2,178.5,-82,0,0,-0.00544816 -3585,3817:229:1,179,-82,0,0,-0.005453 -3586,3817:229:2,179.5,-82,0,0,-0.00545663 -3587,3818:120:1,180,-82,0,0,-0.00546026 -3588,5818:110:3,-180,-81.5,0,0,-0.00546026 -3589,5817:219:4,-179.5,-81.5,0,0,-0.00546392 -3590,5817:219:3,-179,-81.5,0,0,-0.00546511 -3591,5817:218:4,-178.5,-81.5,0,0,-0.00546392 -3592,5817:218:3,-178,-81.5,0,0,-0.00546511 -3593,5817:217:4,-177.5,-81.5,0,0,-0.00546633 -3594,5817:217:3,-177,-81.5,0,0,-0.00546878 -3595,5817:216:4,-176.5,-81.5,0,0,-0.00547 -3596,5817:216:3,-176,-81.5,0,0,-0.00547 -3597,5817:215:4,-175.5,-81.5,0,0,-0.00547119 -3598,5817:215:3,-175,-81.5,0,0,-0.00547119 -3599,5817:114:4,-174.5,-81.5,0,0,-0.00547241 -3600,5817:114:3,-174,-81.5,0,0,-0.00547364 -3601,5817:113:4,-173.5,-81.5,0,0,-0.00547364 -3602,5817:113:3,-173,-81.5,0,0,-0.00547486 -3603,5817:112:4,-172.5,-81.5,0,0,-0.00547486 -3604,5817:112:3,-172,-81.5,0,0,-0.00547605 -3605,5817:111:4,-171.5,-81.5,0,0,-0.00547605 -3606,5817:111:3,-171,-81.5,0,0,-0.00547605 -3607,5817:110:4,-170.5,-81.5,0,0,-0.00547727 -3608,5817:110:3,-170,-81.5,0,0,-0.00547727 -3609,5816:219:4,-169.5,-81.5,0,0,-0.0054785 -3610,5816:219:3,-169,-81.5,0,0,-0.0054785 -3611,5816:218:4,-168.5,-81.5,0,0,-0.0054785 -3612,5816:218:3,-168,-81.5,0,0,-0.00547972 -3613,5816:217:4,-167.5,-81.5,0,0,-0.00547972 -3614,5816:217:3,-167,-81.5,0,0,-0.00548091 -3615,5816:216:4,-166.5,-81.5,0,0,-0.00548091 -3616,5816:216:3,-166,-81.5,0,0,-0.00547972 -3617,5816:215:4,-165.5,-81.5,0,0,-0.00547972 -3618,5816:215:3,-165,-81.5,0,0,-0.00547972 -3619,5816:114:4,-164.5,-81.5,0,0,-0.00547972 -3620,5816:114:3,-164,-81.5,0,0,-0.00547972 -3621,5816:113:4,-163.5,-81.5,0,0,-0.00547972 -3622,5816:113:3,-163,-81.5,0,0,-0.00548091 -3623,5816:112:4,-162.5,-81.5,0,0,-0.00548091 -3624,5816:112:3,-162,-81.5,0,0,-0.00548091 -3625,5816:111:4,-161.5,-81.5,0,0,-0.00548091 -3626,5816:111:3,-161,-81.5,0,0,-0.00548214 -3627,5816:110:4,-160.5,-81.5,0,0,-0.00548337 -3628,5816:110:3,-160,-81.5,0,0,-0.00548459 -3629,5815:219:4,-159.5,-81.5,0,0,-0.00548582 -3630,5815:219:3,-159,-81.5,0,0,-0.00548582 -3631,5815:218:4,-158.5,-81.5,0,0,-0.00548701 -3632,5815:218:3,-158,-81.5,0,0,-0.00548824 -3633,5815:217:4,-157.5,-81.5,0,0,-0.00548824 -3634,5815:217:3,-157,-81.5,0,0,-0.00548701 -3635,5815:216:4,-156.5,-81.5,0,0,-0.00548701 -3636,5815:216:3,-156,-81.5,0,0,-0.00548824 -3637,5815:215:4,-155.5,-81.5,0,0,-0.00548947 -3638,5815:215:3,-155,-81.5,0,0,-0.00548947 -3639,5815:114:4,-154.5,-81.5,0,0,-0.00548701 -3640,5815:114:3,-154,-81.5,0,0,-0.00548701 -3641,5815:113:4,-153.5,-81.5,0,0,-0.00548824 -3642,5815:113:3,-153,-81.5,0,0,-0.00548947 -3643,5815:112:4,-152.5,-81.5,0,0,-0.00548947 -3644,5815:112:3,-152,-81.5,0,0,-0.00548824 -3645,5815:111:4,-151.5,-81.5,0,0,-0.00548582 -3646,5815:111:3,-151,-81.5,0,0,-0.00548582 -3647,5815:110:4,-150.5,-81.5,0,0,-0.00548582 -3648,5815:110:3,-150,-81.5,0,0,-0.00548582 -3649,5814:219:4,-149.5,-81.5,0,0,-0.00548582 -3650,5814:219:3,-149,-81.5,0,0,-0.00548459 -3651,5814:218:4,-148.5,-81.5,0,0,-0.00548459 -3652,5814:218:3,-148,-81.5,0,0,-0.00548459 -3653,5814:217:4,-147.5,-81.5,0,0,-0.00548459 -3654,5814:217:3,-147,-81.5,0,0,-0.00548337 -3655,5814:216:4,-146.5,-81.5,0,0,-0.00548337 -3656,5814:216:3,-146,-81.5,0,0,-0.00548214 -3657,5814:215:4,-145.5,-81.5,0,0,-0.00548214 -3658,5814:215:3,-145,-81.5,0,0,-0.00548214 -3659,5814:114:4,-144.5,-81.5,0,0,-0.00548091 -3660,5814:114:3,-144,-81.5,0,0,-0.00548091 -3661,5814:113:4,-143.5,-81.5,0,0,-0.00548091 -3662,5814:113:3,-143,-81.5,0,0,-0.00548214 -3663,5814:112:4,-142.5,-81.5,0,0,-0.00548214 -3664,5814:112:3,-142,-81.5,0,0,-0.00548091 -3665,5814:111:4,-141.5,-81.5,0,0,-0.00547972 -3666,5814:111:3,-141,-81.5,0,0,-0.00548091 -3667,5814:110:4,-140.5,-81.5,0,0,-0.00548091 -3668,5814:110:3,-140,-81.5,0,0,-0.00548214 -3669,5813:219:4,-139.5,-81.5,0,0,-0.00548214 -3670,5813:219:3,-139,-81.5,0,0,-0.00548214 -3671,5813:218:4,-138.5,-81.5,0,0,-0.00548214 -3672,5813:218:3,-138,-81.5,0,0,-0.00548337 -3673,5813:217:4,-137.5,-81.5,0,0,-0.00548947 -3674,5813:217:3,-137,-81.5,0,0,-0.00550777 -3675,5813:216:4,-136.5,-81.5,0,0,-0.005536 -3676,5813:216:3,-136,-81.5,0,0,-0.00560158 -3677,5813:215:4,-135.5,-81.5,0,0,-0.00584441 -3678,5813:215:3,-135,-81.5,0,0,-0.00592286 -3679,5813:114:4,-134.5,-81.5,0,0,-0.00591106 -3680,5813:114:3,-134,-81.5,0,0,-0.00596912 -3681,5811:110:3,-110,-81.5,0,0,-0.00698226 -3682,5810:219:4,-109.5,-81.5,0,0,-0.00750095 -3683,5810:219:3,-109,-81.5,0,0,-0.00796395 -3684,5810:218:4,-108.5,-81.5,0,0,-0.00791092 -3685,5810:216:3,-106,-81.5,0,0,-0.005619 -3686,5810:215:4,-105.5,-81.5,0,0,-0.00555077 -3687,5810:215:3,-105,-81.5,0,0,-0.00552617 -3688,5810:114:4,-104.5,-81.5,0,0,-0.0055446 -3689,5810:114:3,-104,-81.5,0,0,-0.00578243 -3690,5810:113:4,-103.5,-81.5,0,0,-0.00623081 -3691,5810:113:3,-103,-81.5,0,0,-0.0065446 -3692,5810:112:4,-102.5,-81.5,0,0,-0.00661925 -3693,5806:111:4,-61.5,-81.5,0,0,-0.00552861 -3694,5806:111:3,-61,-81.5,0,0,-0.00552127 -3695,5806:110:4,-60.5,-81.5,0,0,-0.00550288 -3696,5806:110:3,-60,-81.5,0,0,-0.00548947 -3697,5805:219:4,-59.5,-81.5,0,0,-0.0054785 -3698,5805:219:3,-59,-81.5,0,0,-0.00546511 -3699,5805:218:4,-58.5,-81.5,0,0,-0.00545541 -3700,5805:218:3,-58,-81.5,0,0,-0.005453 -3701,5805:217:4,-57.5,-81.5,0,0,-0.00545179 -3702,5805:217:3,-57,-81.5,0,0,-0.00545057 -3703,5805:216:4,-56.5,-81.5,0,0,-0.00544935 -3704,5805:216:3,-56,-81.5,0,0,-0.00544935 -3705,5805:215:4,-55.5,-81.5,0,0,-0.00544935 -3706,5805:215:3,-55,-81.5,0,0,-0.00545057 -3707,5805:114:4,-54.5,-81.5,0,0,-0.00545057 -3708,5805:114:3,-54,-81.5,0,0,-0.00545057 -3709,5805:113:4,-53.5,-81.5,0,0,-0.00545057 -3710,5805:113:3,-53,-81.5,0,0,-0.00545179 -3711,5805:112:4,-52.5,-81.5,0,0,-0.005453 -3712,5805:112:3,-52,-81.5,0,0,-0.00545423 -3713,5805:111:4,-51.5,-81.5,0,0,-0.00545423 -3714,5805:111:3,-51,-81.5,0,0,-0.00545541 -3715,5805:110:4,-50.5,-81.5,0,0,-0.00545541 -3716,5805:110:3,-50,-81.5,0,0,-0.00545541 -3717,5804:219:4,-49.5,-81.5,0,0,-0.00545541 -3718,5804:219:3,-49,-81.5,0,0,-0.00545541 -3719,5804:218:4,-48.5,-81.5,0,0,-0.00545423 -3720,5804:218:3,-48,-81.5,0,0,-0.005453 -3721,5804:217:4,-47.5,-81.5,0,0,-0.005453 -3722,5804:217:3,-47,-81.5,0,0,-0.00545663 -3723,5804:216:4,-46.5,-81.5,0,0,-0.00545907 -3724,5804:216:3,-46,-81.5,0,0,-0.00546148 -3725,5804:215:4,-45.5,-81.5,0,0,-0.00546392 -3726,5804:215:3,-45,-81.5,0,0,-0.00546633 -3727,5804:114:4,-44.5,-81.5,0,0,-0.00546511 -3728,5804:114:3,-44,-81.5,0,0,-0.00546511 -3729,5804:113:4,-43.5,-81.5,0,0,-0.00546511 -3730,5804:113:3,-43,-81.5,0,0,-0.00546511 -3731,5804:112:4,-42.5,-81.5,0,0,-0.00546392 -3732,5804:112:3,-42,-81.5,0,0,-0.00546392 -3733,5804:111:4,-41.5,-81.5,0,0,-0.00546511 -3734,5804:111:3,-41,-81.5,0,0,-0.00546511 -3735,5804:110:4,-40.5,-81.5,0,0,-0.00546633 -3736,5804:110:3,-40,-81.5,0,0,-0.00546755 -3737,5803:219:4,-39.5,-81.5,0,0,-0.00546755 -3738,5803:219:3,-39,-81.5,0,0,-0.00546755 -3739,5803:218:4,-38.5,-81.5,0,0,-0.00546755 -3740,5803:218:3,-38,-81.5,0,0,-0.00546755 -3741,5803:217:4,-37.5,-81.5,0,0,-0.00546878 -3742,5803:217:3,-37,-81.5,0,0,-0.00546755 -3743,5803:216:4,-36.5,-81.5,0,0,-0.00546755 -3744,5803:216:3,-36,-81.5,0,0,-0.00546755 -3745,5803:215:4,-35.5,-81.5,0,0,-0.00546755 -3746,5803:215:3,-35,-81.5,0,0,-0.00546878 -3747,5803:114:4,-34.5,-81.5,0,0,-0.00546878 -3748,5803:114:3,-34,-81.5,0,0,-0.00546755 -3749,5803:113:4,-33.5,-81.5,0,0,-0.00546755 -3750,5803:113:3,-33,-81.5,0,0,-0.00546755 -3751,5803:112:4,-32.5,-81.5,0,0,-0.00546878 -3752,5803:112:3,-32,-81.5,0,0,-0.00546878 -3753,5803:111:4,-31.5,-81.5,0,0,-0.00546878 -3754,5803:111:3,-31,-81.5,0,0,-0.00547 -3755,5803:110:4,-30.5,-81.5,0,0,-0.00546878 -3756,5803:110:3,-30,-81.5,0,0,-0.00547 -3757,5802:219:4,-29.5,-81.5,0,0,-0.00547119 -3758,5802:219:3,-29,-81.5,0,0,-0.00547 -3759,5802:218:4,-28.5,-81.5,0,0,-0.00546878 -3760,5802:218:3,-28,-81.5,0,0,-0.00546755 -3761,5802:217:4,-27.5,-81.5,0,0,-0.00546633 -3762,5802:217:3,-27,-81.5,0,0,-0.00546511 -3763,5802:216:4,-26.5,-81.5,0,0,-0.00553848 -3764,5802:216:3,-26,-81.5,0,0,-0.00565409 -3765,5802:215:4,-25.5,-81.5,0,0,-0.00561402 -3766,5802:215:3,-25,-81.5,0,0,-0.00557672 -3767,5802:114:4,-24.5,-81.5,0,0,-0.00581851 -3768,5802:114:3,-24,-81.5,0,0,-0.00615781 -3769,3816:215:4,165.5,-81.5,0,0,-0.0055225 -3770,3816:216:3,166,-81.5,0,0,-0.00550411 -3771,3816:216:4,166.5,-81.5,0,0,-0.00548091 -3772,3816:217:3,167,-81.5,0,0,-0.00547241 -3773,3816:217:4,167.5,-81.5,0,0,-0.00546633 -3774,3816:218:3,168,-81.5,0,0,-0.00545907 -3775,3816:218:4,168.5,-81.5,0,0,-0.00545057 -3776,3816:219:3,169,-81.5,0,0,-0.00544451 -3777,3816:219:4,169.5,-81.5,0,0,-0.00544211 -3778,3817:110:3,170,-81.5,0,0,-0.00544333 -3779,3817:110:4,170.5,-81.5,0,0,-0.00544333 -3780,3817:111:3,171,-81.5,0,0,-0.00544089 -3781,3817:111:4,171.5,-81.5,0,0,-0.00569445 -3782,3817:112:3,172,-81.5,0,0,-0.00650255 -3783,3817:112:4,172.5,-81.5,0,0,-0.00744774 -3784,3817:113:3,173,-81.5,0,0,-0.00792146 -3785,3817:113:4,173.5,-81.5,0,0,-0.00790914 -3786,3817:114:3,174,-81.5,0,0,-0.00786525 -3787,3817:114:4,174.5,-81.5,0,0,-0.00783724 -3788,3817:215:3,175,-81.5,0,0,-0.00782681 -3789,3817:215:4,175.5,-81.5,0,0,-0.00778162 -3790,3817:216:3,176,-81.5,0,0,-0.00760351 -3791,3817:216:4,176.5,-81.5,0,0,-0.00631868 -3792,3817:217:3,177,-81.5,0,0,-0.00551024 -3793,3817:217:4,177.5,-81.5,0,0,-0.00544089 -3794,3817:218:3,178,-81.5,0,0,-0.00544211 -3795,3817:218:4,178.5,-81.5,0,0,-0.00544816 -3796,3817:219:3,179,-81.5,0,0,-0.005453 -3797,3817:219:4,179.5,-81.5,0,0,-0.00545663 -3798,3818:110:3,180,-81.5,0,0,-0.00546026 -3799,5818:110:1,-180,-81,0,0,-0.00546026 -3800,5817:219:2,-179.5,-81,0,0,-0.00546392 -3801,5817:219:1,-179,-81,0,0,-0.00546511 -3802,5817:218:2,-178.5,-81,0,0,-0.00546392 -3803,5817:218:1,-178,-81,0,0,-0.00546511 -3804,5817:217:2,-177.5,-81,0,0,-0.00546633 -3805,5817:217:1,-177,-81,0,0,-0.00546878 -3806,5817:216:2,-176.5,-81,0,0,-0.00547 -3807,5817:216:1,-176,-81,0,0,-0.00547 -3808,5817:215:2,-175.5,-81,0,0,-0.00547119 -3809,5817:215:1,-175,-81,0,0,-0.00547119 -3810,5817:114:2,-174.5,-81,0,0,-0.00547241 -3811,5817:114:1,-174,-81,0,0,-0.00547364 -3812,5817:113:2,-173.5,-81,0,0,-0.00547364 -3813,5817:113:1,-173,-81,0,0,-0.00547486 -3814,5817:112:2,-172.5,-81,0,0,-0.00547486 -3815,5817:112:1,-172,-81,0,0,-0.00547605 -3816,5817:111:2,-171.5,-81,0,0,-0.00547605 -3817,5817:111:1,-171,-81,0,0,-0.00547605 -3818,5817:110:2,-170.5,-81,0,0,-0.00547727 -3819,5817:110:1,-170,-81,0,0,-0.00547727 -3820,5816:219:2,-169.5,-81,0,0,-0.0054785 -3821,5816:219:1,-169,-81,0,0,-0.0054785 -3822,5816:218:2,-168.5,-81,0,0,-0.0054785 -3823,5816:218:1,-168,-81,0,0,-0.00547972 -3824,5816:217:2,-167.5,-81,0,0,-0.00547972 -3825,5816:217:1,-167,-81,0,0,-0.00548091 -3826,5816:216:2,-166.5,-81,0,0,-0.00548091 -3827,5816:216:1,-166,-81,0,0,-0.00547972 -3828,5816:215:2,-165.5,-81,0,0,-0.00547972 -3829,5816:215:1,-165,-81,0,0,-0.00547972 -3830,5816:114:2,-164.5,-81,0,0,-0.00547972 -3831,5816:114:1,-164,-81,0,0,-0.00547972 -3832,5816:113:2,-163.5,-81,0,0,-0.00547972 -3833,5816:113:1,-163,-81,0,0,-0.00548091 -3834,5816:112:2,-162.5,-81,0,0,-0.00548091 -3835,5816:112:1,-162,-81,0,0,-0.00548091 -3836,5816:111:2,-161.5,-81,0,0,-0.00548091 -3837,5816:111:1,-161,-81,0,0,-0.00548214 -3838,5816:110:2,-160.5,-81,0,0,-0.00548337 -3839,5816:110:1,-160,-81,0,0,-0.00548459 -3840,5815:219:2,-159.5,-81,0,0,-0.00548582 -3841,5815:219:1,-159,-81,0,0,-0.00548582 -3842,5815:218:2,-158.5,-81,0,0,-0.00548701 -3843,5815:218:1,-158,-81,0,0,-0.00548824 -3844,5815:217:2,-157.5,-81,0,0,-0.00548824 -3845,5815:217:1,-157,-81,0,0,-0.00548701 -3846,5815:216:2,-156.5,-81,0,0,-0.00548701 -3847,5815:216:1,-156,-81,0,0,-0.00548824 -3848,5815:215:2,-155.5,-81,0,0,-0.00548947 -3849,5815:215:1,-155,-81,0,0,-0.00548947 -3850,5815:114:2,-154.5,-81,0,0,-0.00548701 -3851,5815:114:1,-154,-81,0,0,-0.00548701 -3852,5815:113:2,-153.5,-81,0,0,-0.00548824 -3853,5815:113:1,-153,-81,0,0,-0.00548947 -3854,5815:112:2,-152.5,-81,0,0,-0.00548947 -3855,5815:112:1,-152,-81,0,0,-0.00548824 -3856,5815:111:2,-151.5,-81,0,0,-0.00548582 -3857,5815:111:1,-151,-81,0,0,-0.00548582 -3858,5815:110:2,-150.5,-81,0,0,-0.00548582 -3859,5815:110:1,-150,-81,0,0,-0.00548582 -3860,5814:219:2,-149.5,-81,0,0,-0.00548582 -3861,5814:219:1,-149,-81,0,0,-0.00548459 -3862,5814:218:2,-148.5,-81,0,0,-0.00548459 -3863,5814:218:1,-148,-81,0,0,-0.00548459 -3864,5814:217:2,-147.5,-81,0,0,-0.00548459 -3865,5814:217:1,-147,-81,0,0,-0.00548337 -3866,5814:216:2,-146.5,-81,0,0,-0.00548337 -3867,5814:216:1,-146,-81,0,0,-0.00548214 -3868,5814:215:2,-145.5,-81,0,0,-0.00548214 -3869,5814:215:1,-145,-81,0,0,-0.00548214 -3870,5814:114:2,-144.5,-81,0,0,-0.00548091 -3871,5814:114:1,-144,-81,0,0,-0.00548091 -3872,5814:113:2,-143.5,-81,0,0,-0.00548091 -3873,5814:113:1,-143,-81,0,0,-0.00548214 -3874,5814:112:2,-142.5,-81,0,0,-0.00548214 -3875,5814:112:1,-142,-81,0,0,-0.00548091 -3876,5814:111:2,-141.5,-81,0,0,-0.00547972 -3877,5814:111:1,-141,-81,0,0,-0.00548091 -3878,5814:110:2,-140.5,-81,0,0,-0.00548091 -3879,5814:110:1,-140,-81,0,0,-0.00548214 -3880,5813:219:2,-139.5,-81,0,0,-0.00548214 -3881,5813:219:1,-139,-81,0,0,-0.00548214 -3882,5813:218:2,-138.5,-81,0,0,-0.00548214 -3883,5813:218:1,-138,-81,0,0,-0.00548337 -3884,5813:217:2,-137.5,-81,0,0,-0.00548947 -3885,5813:217:1,-137,-81,0,0,-0.00550777 -3886,5813:216:2,-136.5,-81,0,0,-0.005536 -3887,5813:216:1,-136,-81,0,0,-0.00560158 -3888,5813:215:2,-135.5,-81,0,0,-0.00584441 -3889,5813:215:1,-135,-81,0,0,-0.00592286 -3890,5813:114:2,-134.5,-81,0,0,-0.00591106 -3891,5813:114:1,-134,-81,0,0,-0.00596912 -3892,5811:110:1,-110,-81,0,0,-0.00698226 -3893,5810:219:2,-109.5,-81,0,0,-0.00750095 -3894,5810:219:1,-109,-81,0,0,-0.00796395 -3895,5810:218:2,-108.5,-81,0,0,-0.00791092 -3896,5810:216:1,-106,-81,0,0,-0.005619 -3897,5810:215:2,-105.5,-81,0,0,-0.00555077 -3898,5810:215:1,-105,-81,0,0,-0.00552617 -3899,5810:114:2,-104.5,-81,0,0,-0.0055446 -3900,5810:114:1,-104,-81,0,0,-0.00578243 -3901,5810:113:2,-103.5,-81,0,0,-0.00623081 -3902,5810:113:1,-103,-81,0,0,-0.0065446 -3903,5810:112:2,-102.5,-81,0,0,-0.00661925 -3904,5806:111:2,-61.5,-81,0,0,-0.00552861 -3905,5806:111:1,-61,-81,0,0,-0.00552127 -3906,5806:110:2,-60.5,-81,0,0,-0.00550288 -3907,5806:110:1,-60,-81,0,0,-0.00548947 -3908,5805:219:2,-59.5,-81,0,0,-0.0054785 -3909,5805:219:1,-59,-81,0,0,-0.00546511 -3910,5805:218:2,-58.5,-81,0,0,-0.00545541 -3911,5805:218:1,-58,-81,0,0,-0.005453 -3912,5805:217:2,-57.5,-81,0,0,-0.00545179 -3913,5805:217:1,-57,-81,0,0,-0.00545057 -3914,5805:216:2,-56.5,-81,0,0,-0.00544935 -3915,5805:216:1,-56,-81,0,0,-0.00544935 -3916,5805:215:2,-55.5,-81,0,0,-0.00544935 -3917,5805:215:1,-55,-81,0,0,-0.00545057 -3918,5805:114:2,-54.5,-81,0,0,-0.00545057 -3919,5805:114:1,-54,-81,0,0,-0.00545057 -3920,5805:113:2,-53.5,-81,0,0,-0.00545057 -3921,5805:113:1,-53,-81,0,0,-0.00545179 -3922,5805:112:2,-52.5,-81,0,0,-0.005453 -3923,5805:112:1,-52,-81,0,0,-0.00545423 -3924,5805:111:2,-51.5,-81,0,0,-0.00545423 -3925,5805:111:1,-51,-81,0,0,-0.00545541 -3926,5805:110:2,-50.5,-81,0,0,-0.00545541 -3927,5805:110:1,-50,-81,0,0,-0.00545541 -3928,5804:219:2,-49.5,-81,0,0,-0.00545541 -3929,5804:219:1,-49,-81,0,0,-0.00545541 -3930,5804:218:2,-48.5,-81,0,0,-0.00545423 -3931,5804:218:1,-48,-81,0,0,-0.005453 -3932,5804:217:2,-47.5,-81,0,0,-0.005453 -3933,5804:217:1,-47,-81,0,0,-0.00545663 -3934,5804:216:2,-46.5,-81,0,0,-0.00545907 -3935,5804:216:1,-46,-81,0,0,-0.00546148 -3936,5804:215:2,-45.5,-81,0,0,-0.00546392 -3937,5804:215:1,-45,-81,0,0,-0.00546633 -3938,5804:114:2,-44.5,-81,0,0,-0.00546511 -3939,5804:114:1,-44,-81,0,0,-0.00546511 -3940,5804:113:2,-43.5,-81,0,0,-0.00546511 -3941,5804:113:1,-43,-81,0,0,-0.00546511 -3942,5804:112:2,-42.5,-81,0,0,-0.00546392 -3943,5804:112:1,-42,-81,0,0,-0.00546392 -3944,5804:111:2,-41.5,-81,0,0,-0.00546511 -3945,5804:111:1,-41,-81,0,0,-0.00546511 -3946,5804:110:2,-40.5,-81,0,0,-0.00546633 -3947,5804:110:1,-40,-81,0,0,-0.00546755 -3948,5803:219:2,-39.5,-81,0,0,-0.00546755 -3949,5803:219:1,-39,-81,0,0,-0.00546755 -3950,5803:218:2,-38.5,-81,0,0,-0.00546755 -3951,5803:218:1,-38,-81,0,0,-0.00546755 -3952,5803:217:2,-37.5,-81,0,0,-0.00546878 -3953,5803:217:1,-37,-81,0,0,-0.00546755 -3954,5803:216:2,-36.5,-81,0,0,-0.00546755 -3955,5803:216:1,-36,-81,0,0,-0.00546755 -3956,5803:215:2,-35.5,-81,0,0,-0.00546755 -3957,5803:215:1,-35,-81,0,0,-0.00546878 -3958,5803:114:2,-34.5,-81,0,0,-0.00546878 -3959,5803:114:1,-34,-81,0,0,-0.00546755 -3960,5803:113:2,-33.5,-81,0,0,-0.00546755 -3961,5803:113:1,-33,-81,0,0,-0.00546755 -3962,5803:112:2,-32.5,-81,0,0,-0.00546878 -3963,5803:112:1,-32,-81,0,0,-0.00546878 -3964,5803:111:2,-31.5,-81,0,0,-0.00546878 -3965,5803:111:1,-31,-81,0,0,-0.00547 -3966,5803:110:2,-30.5,-81,0,0,-0.00546878 -3967,5803:110:1,-30,-81,0,0,-0.00547 -3968,5802:219:2,-29.5,-81,0,0,-0.00547119 -3969,5802:219:1,-29,-81,0,0,-0.00547 -3970,5802:218:2,-28.5,-81,0,0,-0.00546878 -3971,5802:218:1,-28,-81,0,0,-0.00546755 -3972,5802:217:2,-27.5,-81,0,0,-0.00546633 -3973,5802:217:1,-27,-81,0,0,-0.00546511 -3974,5802:216:2,-26.5,-81,0,0,-0.00553848 -3975,5802:216:1,-26,-81,0,0,-0.00565409 -3976,5802:215:2,-25.5,-81,0,0,-0.00561402 -3977,5802:215:1,-25,-81,0,0,-0.00557672 -3978,5802:114:2,-24.5,-81,0,0,-0.00581851 -3979,5802:114:1,-24,-81,0,0,-0.00615781 -3980,3816:215:2,165.5,-81,0,0,-0.0055225 -3981,3816:216:1,166,-81,0,0,-0.00550411 -3982,3816:216:2,166.5,-81,0,0,-0.00548091 -3983,3816:217:1,167,-81,0,0,-0.00547241 -3984,3816:217:2,167.5,-81,0,0,-0.00546633 -3985,3816:218:1,168,-81,0,0,-0.00545907 -3986,3816:218:2,168.5,-81,0,0,-0.00545057 -3987,3816:219:1,169,-81,0,0,-0.00544451 -3988,3816:219:2,169.5,-81,0,0,-0.00544211 -3989,3817:110:1,170,-81,0,0,-0.00544333 -3990,3817:110:2,170.5,-81,0,0,-0.00544333 -3991,3817:111:1,171,-81,0,0,-0.00544089 -3992,3817:111:2,171.5,-81,0,0,-0.00569445 -3993,3817:112:1,172,-81,0,0,-0.00650255 -3994,3817:112:2,172.5,-81,0,0,-0.00744774 -3995,3817:113:1,173,-81,0,0,-0.00792146 -3996,3817:113:2,173.5,-81,0,0,-0.00790914 -3997,3817:114:1,174,-81,0,0,-0.00786525 -3998,3817:114:2,174.5,-81,0,0,-0.00783724 -3999,3817:215:1,175,-81,0,0,-0.00782681 -4000,3817:215:2,175.5,-81,0,0,-0.00778162 -4001,3817:216:1,176,-81,0,0,-0.00760351 -4002,3817:216:2,176.5,-81,0,0,-0.00631868 -4003,3817:217:1,177,-81,0,0,-0.00551024 -4004,3817:217:2,177.5,-81,0,0,-0.00544089 -4005,3817:218:1,178,-81,0,0,-0.00544211 -4006,3817:218:2,178.5,-81,0,0,-0.00544816 -4007,3817:219:1,179,-81,0,0,-0.005453 -4008,3817:219:2,179.5,-81,0,0,-0.00545663 -4009,3818:110:1,180,-81,0,0,-0.00546026 -4010,5818:100:3,-180,-80.5,0,0,-0.00546026 -4011,5817:209:4,-179.5,-80.5,0,0,-0.00546392 -4012,5817:209:3,-179,-80.5,0,0,-0.00546511 -4013,5817:208:4,-178.5,-80.5,0,0,-0.00546392 -4014,5817:208:3,-178,-80.5,0,0,-0.00546511 -4015,5817:207:4,-177.5,-80.5,0,0,-0.00546633 -4016,5817:207:3,-177,-80.5,0,0,-0.00546878 -4017,5817:206:4,-176.5,-80.5,0,0,-0.00547 -4018,5817:206:3,-176,-80.5,0,0,-0.00547 -4019,5817:205:4,-175.5,-80.5,0,0,-0.00547119 -4020,5817:205:3,-175,-80.5,0,0,-0.00547119 -4021,5817:104:4,-174.5,-80.5,0,0,-0.00547241 -4022,5817:104:3,-174,-80.5,0,0,-0.00547364 -4023,5817:103:4,-173.5,-80.5,0,0,-0.00547364 -4024,5817:103:3,-173,-80.5,0,0,-0.00547486 -4025,5817:102:4,-172.5,-80.5,0,0,-0.00547486 -4026,5817:102:3,-172,-80.5,0,0,-0.00547605 -4027,5817:101:4,-171.5,-80.5,0,0,-0.00547605 -4028,5817:101:3,-171,-80.5,0,0,-0.00547605 -4029,5817:100:4,-170.5,-80.5,0,0,-0.00547727 -4030,5817:100:3,-170,-80.5,0,0,-0.00547727 -4031,5816:209:4,-169.5,-80.5,0,0,-0.0054785 -4032,5816:209:3,-169,-80.5,0,0,-0.0054785 -4033,5816:208:4,-168.5,-80.5,0,0,-0.0054785 -4034,5816:208:3,-168,-80.5,0,0,-0.00547972 -4035,5816:207:4,-167.5,-80.5,0,0,-0.00547972 -4036,5816:207:3,-167,-80.5,0,0,-0.00548091 -4037,5816:206:4,-166.5,-80.5,0,0,-0.00548091 -4038,5816:206:3,-166,-80.5,0,0,-0.00547972 -4039,5816:205:4,-165.5,-80.5,0,0,-0.00547972 -4040,5816:205:3,-165,-80.5,0,0,-0.00547972 -4041,5816:104:4,-164.5,-80.5,0,0,-0.00547972 -4042,5816:104:3,-164,-80.5,0,0,-0.00547972 -4043,5816:103:4,-163.5,-80.5,0,0,-0.00547972 -4044,5816:103:3,-163,-80.5,0,0,-0.00548091 -4045,5816:102:4,-162.5,-80.5,0,0,-0.00548091 -4046,5816:102:3,-162,-80.5,0,0,-0.00548091 -4047,5816:101:4,-161.5,-80.5,0,0,-0.00548091 -4048,5816:101:3,-161,-80.5,0,0,-0.00548214 -4049,5816:100:4,-160.5,-80.5,0,0,-0.00548337 -4050,5816:100:3,-160,-80.5,0,0,-0.00548459 -4051,5815:209:4,-159.5,-80.5,0,0,-0.00548582 -4052,5815:209:3,-159,-80.5,0,0,-0.00548582 -4053,5815:208:4,-158.5,-80.5,0,0,-0.00548701 -4054,5815:208:3,-158,-80.5,0,0,-0.00548824 -4055,5815:207:4,-157.5,-80.5,0,0,-0.00548824 -4056,5815:207:3,-157,-80.5,0,0,-0.00548701 -4057,5815:206:4,-156.5,-80.5,0,0,-0.00548701 -4058,5815:206:3,-156,-80.5,0,0,-0.00548824 -4059,5815:205:4,-155.5,-80.5,0,0,-0.00548947 -4060,5815:205:3,-155,-80.5,0,0,-0.00548947 -4061,5815:104:4,-154.5,-80.5,0,0,-0.00548701 -4062,5815:104:3,-154,-80.5,0,0,-0.00548701 -4063,5815:103:4,-153.5,-80.5,0,0,-0.00548824 -4064,5815:103:3,-153,-80.5,0,0,-0.00548947 -4065,5815:102:4,-152.5,-80.5,0,0,-0.00548947 -4066,5815:102:3,-152,-80.5,0,0,-0.00548824 -4067,5815:101:4,-151.5,-80.5,0,0,-0.00548582 -4068,5815:101:3,-151,-80.5,0,0,-0.00548582 -4069,5815:100:4,-150.5,-80.5,0,0,-0.00548582 -4070,5815:100:3,-150,-80.5,0,0,-0.00548582 -4071,5814:209:4,-149.5,-80.5,0,0,-0.00548582 -4072,5814:209:3,-149,-80.5,0,0,-0.00548459 -4073,5814:208:4,-148.5,-80.5,0,0,-0.00548459 -4074,5814:208:3,-148,-80.5,0,0,-0.00548459 -4075,5814:207:4,-147.5,-80.5,0,0,-0.00548459 -4076,5814:207:3,-147,-80.5,0,0,-0.00548337 -4077,5814:206:4,-146.5,-80.5,0,0,-0.00548337 -4078,5814:206:3,-146,-80.5,0,0,-0.00548214 -4079,5814:205:4,-145.5,-80.5,0,0,-0.00548214 -4080,5814:205:3,-145,-80.5,0,0,-0.00548214 -4081,5814:104:4,-144.5,-80.5,0,0,-0.00548091 -4082,5814:104:3,-144,-80.5,0,0,-0.00548091 -4083,5814:103:4,-143.5,-80.5,0,0,-0.00548091 -4084,5814:103:3,-143,-80.5,0,0,-0.00548214 -4085,5814:102:4,-142.5,-80.5,0,0,-0.00548214 -4086,5814:102:3,-142,-80.5,0,0,-0.00548091 -4087,5814:101:4,-141.5,-80.5,0,0,-0.00547972 -4088,5814:101:3,-141,-80.5,0,0,-0.00548091 -4089,5814:100:4,-140.5,-80.5,0,0,-0.00548091 -4090,5814:100:3,-140,-80.5,0,0,-0.00548214 -4091,5813:209:4,-139.5,-80.5,0,0,-0.00548214 -4092,5813:209:3,-139,-80.5,0,0,-0.00548214 -4093,5813:208:4,-138.5,-80.5,0,0,-0.00548214 -4094,5813:208:3,-138,-80.5,0,0,-0.00548337 -4095,5813:207:4,-137.5,-80.5,0,0,-0.00548947 -4096,5813:207:3,-137,-80.5,0,0,-0.00550777 -4097,5813:206:4,-136.5,-80.5,0,0,-0.005536 -4098,5813:206:3,-136,-80.5,0,0,-0.00560158 -4099,5813:205:4,-135.5,-80.5,0,0,-0.00584441 -4100,5813:205:3,-135,-80.5,0,0,-0.00592286 -4101,5813:104:4,-134.5,-80.5,0,0,-0.00591106 -4102,5813:104:3,-134,-80.5,0,0,-0.00596912 -4103,5811:100:3,-110,-80.5,0,0,-0.00698226 -4104,5810:209:4,-109.5,-80.5,0,0,-0.00750095 -4105,5810:209:3,-109,-80.5,0,0,-0.00796395 -4106,5810:208:4,-108.5,-80.5,0,0,-0.00791092 -4107,5810:206:3,-106,-80.5,0,0,-0.005619 -4108,5810:205:4,-105.5,-80.5,0,0,-0.00555077 -4109,5810:205:3,-105,-80.5,0,0,-0.00552617 -4110,5810:104:4,-104.5,-80.5,0,0,-0.0055446 -4111,5810:104:3,-104,-80.5,0,0,-0.00578243 -4112,5810:103:4,-103.5,-80.5,0,0,-0.00623081 -4113,5810:103:3,-103,-80.5,0,0,-0.0065446 -4114,5810:102:4,-102.5,-80.5,0,0,-0.00661925 -4115,5806:101:4,-61.5,-80.5,0,0,-0.00552861 -4116,5806:101:3,-61,-80.5,0,0,-0.00552127 -4117,5806:100:4,-60.5,-80.5,0,0,-0.00550288 -4118,5806:100:3,-60,-80.5,0,0,-0.00548947 -4119,5805:209:4,-59.5,-80.5,0,0,-0.0054785 -4120,5805:209:3,-59,-80.5,0,0,-0.00546511 -4121,5805:208:4,-58.5,-80.5,0,0,-0.00545541 -4122,5805:208:3,-58,-80.5,0,0,-0.005453 -4123,5805:207:4,-57.5,-80.5,0,0,-0.00545179 -4124,5805:207:3,-57,-80.5,0,0,-0.00545057 -4125,5805:206:4,-56.5,-80.5,0,0,-0.00544935 -4126,5805:206:3,-56,-80.5,0,0,-0.00544935 -4127,5805:205:4,-55.5,-80.5,0,0,-0.00544935 -4128,5805:205:3,-55,-80.5,0,0,-0.00545057 -4129,5805:104:4,-54.5,-80.5,0,0,-0.00545057 -4130,5805:104:3,-54,-80.5,0,0,-0.00545057 -4131,5805:103:4,-53.5,-80.5,0,0,-0.00545057 -4132,5805:103:3,-53,-80.5,0,0,-0.00545179 -4133,5805:102:4,-52.5,-80.5,0,0,-0.005453 -4134,5805:102:3,-52,-80.5,0,0,-0.00545423 -4135,5805:101:4,-51.5,-80.5,0,0,-0.00545423 -4136,5805:101:3,-51,-80.5,0,0,-0.00545541 -4137,5805:100:4,-50.5,-80.5,0,0,-0.00545541 -4138,5805:100:3,-50,-80.5,0,0,-0.00545541 -4139,5804:209:4,-49.5,-80.5,0,0,-0.00545541 -4140,5804:209:3,-49,-80.5,0,0,-0.00545541 -4141,5804:208:4,-48.5,-80.5,0,0,-0.00545423 -4142,5804:208:3,-48,-80.5,0,0,-0.005453 -4143,5804:207:4,-47.5,-80.5,0,0,-0.005453 -4144,5804:207:3,-47,-80.5,0,0,-0.00545663 -4145,5804:206:4,-46.5,-80.5,0,0,-0.00545907 -4146,5804:206:3,-46,-80.5,0,0,-0.00546148 -4147,5804:205:4,-45.5,-80.5,0,0,-0.00546392 -4148,5804:205:3,-45,-80.5,0,0,-0.00546633 -4149,5804:104:4,-44.5,-80.5,0,0,-0.00546511 -4150,5804:104:3,-44,-80.5,0,0,-0.00546511 -4151,5804:103:4,-43.5,-80.5,0,0,-0.00546511 -4152,5804:103:3,-43,-80.5,0,0,-0.00546511 -4153,5804:102:4,-42.5,-80.5,0,0,-0.00546392 -4154,5804:102:3,-42,-80.5,0,0,-0.00546392 -4155,5804:101:4,-41.5,-80.5,0,0,-0.00546511 -4156,5804:101:3,-41,-80.5,0,0,-0.00546511 -4157,5804:100:4,-40.5,-80.5,0,0,-0.00546633 -4158,5804:100:3,-40,-80.5,0,0,-0.00546755 -4159,5803:209:4,-39.5,-80.5,0,0,-0.00546755 -4160,5803:209:3,-39,-80.5,0,0,-0.00546755 -4161,5803:208:4,-38.5,-80.5,0,0,-0.00546755 -4162,5803:208:3,-38,-80.5,0,0,-0.00546755 -4163,5803:207:4,-37.5,-80.5,0,0,-0.00546878 -4164,5803:207:3,-37,-80.5,0,0,-0.00546755 -4165,5803:206:4,-36.5,-80.5,0,0,-0.00546755 -4166,5803:206:3,-36,-80.5,0,0,-0.00546755 -4167,5803:205:4,-35.5,-80.5,0,0,-0.00546755 -4168,5803:205:3,-35,-80.5,0,0,-0.00546878 -4169,5803:104:4,-34.5,-80.5,0,0,-0.00546878 -4170,5803:104:3,-34,-80.5,0,0,-0.00546755 -4171,5803:103:4,-33.5,-80.5,0,0,-0.00546755 -4172,5803:103:3,-33,-80.5,0,0,-0.00546755 -4173,5803:102:4,-32.5,-80.5,0,0,-0.00546878 -4174,5803:102:3,-32,-80.5,0,0,-0.00546878 -4175,5803:101:4,-31.5,-80.5,0,0,-0.00546878 -4176,5803:101:3,-31,-80.5,0,0,-0.00547 -4177,5803:100:4,-30.5,-80.5,0,0,-0.00546878 -4178,5803:100:3,-30,-80.5,0,0,-0.00547 -4179,5802:209:4,-29.5,-80.5,0,0,-0.00547119 -4180,5802:209:3,-29,-80.5,0,0,-0.00547 -4181,5802:208:4,-28.5,-80.5,0,0,-0.00546878 -4182,5802:208:3,-28,-80.5,0,0,-0.00546755 -4183,5802:207:4,-27.5,-80.5,0,0,-0.00546633 -4184,5802:207:3,-27,-80.5,0,0,-0.00546511 -4185,5802:206:4,-26.5,-80.5,0,0,-0.00553848 -4186,5802:206:3,-26,-80.5,0,0,-0.00565409 -4187,5802:205:4,-25.5,-80.5,0,0,-0.00561402 -4188,5802:205:3,-25,-80.5,0,0,-0.00557672 -4189,5802:104:4,-24.5,-80.5,0,0,-0.00581851 -4190,5802:104:3,-24,-80.5,0,0,-0.00615781 -4191,3816:205:4,165.5,-80.5,0,0,-0.0055225 -4192,3816:206:3,166,-80.5,0,0,-0.00550411 -4193,3816:206:4,166.5,-80.5,0,0,-0.00548091 -4194,3816:207:3,167,-80.5,0,0,-0.00547241 -4195,3816:207:4,167.5,-80.5,0,0,-0.00546633 -4196,3816:208:3,168,-80.5,0,0,-0.00545907 -4197,3816:208:4,168.5,-80.5,0,0,-0.00545057 -4198,3816:209:3,169,-80.5,0,0,-0.00544451 -4199,3816:209:4,169.5,-80.5,0,0,-0.00544211 -4200,3817:100:3,170,-80.5,0,0,-0.00544333 -4201,3817:100:4,170.5,-80.5,0,0,-0.00544333 -4202,3817:101:3,171,-80.5,0,0,-0.00544089 -4203,3817:101:4,171.5,-80.5,0,0,-0.00569445 -4204,3817:102:3,172,-80.5,0,0,-0.00650255 -4205,3817:102:4,172.5,-80.5,0,0,-0.00744774 -4206,3817:103:3,173,-80.5,0,0,-0.00792146 -4207,3817:103:4,173.5,-80.5,0,0,-0.00790914 -4208,3817:104:3,174,-80.5,0,0,-0.00786525 -4209,3817:104:4,174.5,-80.5,0,0,-0.00783724 -4210,3817:205:3,175,-80.5,0,0,-0.00782681 -4211,3817:205:4,175.5,-80.5,0,0,-0.00778162 -4212,3817:206:3,176,-80.5,0,0,-0.00760351 -4213,3817:206:4,176.5,-80.5,0,0,-0.00631868 -4214,3817:207:3,177,-80.5,0,0,-0.00551024 -4215,3817:207:4,177.5,-80.5,0,0,-0.00544089 -4216,3817:208:3,178,-80.5,0,0,-0.00544211 -4217,3817:208:4,178.5,-80.5,0,0,-0.00544816 -4218,3817:209:3,179,-80.5,0,0,-0.005453 -4219,3817:209:4,179.5,-80.5,0,0,-0.00545663 -4220,3818:100:3,180,-80.5,0,0,-0.00546026 -4221,5818:100:1,-180,-80,0,0,-0.00546026 -4222,5817:209:2,-179.5,-80,0,0,-0.00546392 -4223,5817:209:1,-179,-80,0,0,-0.00546511 -4224,5817:208:2,-178.5,-80,0,0,-0.00546392 -4225,5817:208:1,-178,-80,0,0,-0.00546511 -4226,5817:207:2,-177.5,-80,0,0,-0.00546633 -4227,5817:207:1,-177,-80,0,0,-0.00546878 -4228,5817:206:2,-176.5,-80,0,0,-0.00547 -4229,5817:206:1,-176,-80,0,0,-0.00547 -4230,5817:205:2,-175.5,-80,0,0,-0.00547119 -4231,5817:205:1,-175,-80,0,0,-0.00547119 -4232,5817:104:2,-174.5,-80,0,0,-0.00547241 -4233,5817:104:1,-174,-80,0,0,-0.00547364 -4234,5817:103:2,-173.5,-80,0,0,-0.00547364 -4235,5817:103:1,-173,-80,0,0,-0.00547486 -4236,5817:102:2,-172.5,-80,0,0,-0.00547486 -4237,5817:102:1,-172,-80,0,0,-0.00547605 -4238,5817:101:2,-171.5,-80,0,0,-0.00547605 -4239,5817:101:1,-171,-80,0,0,-0.00547605 -4240,5817:100:2,-170.5,-80,0,0,-0.00547727 -4241,5817:100:1,-170,-80,0,0,-0.00547727 -4242,5816:209:2,-169.5,-80,0,0,-0.0054785 -4243,5816:209:1,-169,-80,0,0,-0.0054785 -4244,5816:208:2,-168.5,-80,0,0,-0.0054785 -4245,5816:208:1,-168,-80,0,0,-0.00547972 -4246,5816:207:2,-167.5,-80,0,0,-0.00547972 -4247,5816:207:1,-167,-80,0,0,-0.00548091 -4248,5816:206:2,-166.5,-80,0,0,-0.00548091 -4249,5816:206:1,-166,-80,0,0,-0.00547972 -4250,5816:205:2,-165.5,-80,0,0,-0.00547972 -4251,5816:205:1,-165,-80,0,0,-0.00547972 -4252,5816:104:2,-164.5,-80,0,0,-0.00547972 -4253,5816:104:1,-164,-80,0,0,-0.00547972 -4254,5816:103:2,-163.5,-80,0,0,-0.00547972 -4255,5816:103:1,-163,-80,0,0,-0.00548091 -4256,5816:102:2,-162.5,-80,0,0,-0.00548091 -4257,5816:102:1,-162,-80,0,0,-0.00548091 -4258,5816:101:2,-161.5,-80,0,0,-0.00548091 -4259,5816:101:1,-161,-80,0,0,-0.00548214 -4260,5816:100:2,-160.5,-80,0,0,-0.00548337 -4261,5816:100:1,-160,-80,0,0,-0.00548459 -4262,5815:209:2,-159.5,-80,0,0,-0.00548582 -4263,5815:209:1,-159,-80,0,0,-0.00548582 -4264,5815:208:2,-158.5,-80,0,0,-0.00548701 -4265,5815:208:1,-158,-80,0,0,-0.00548824 -4266,5815:207:2,-157.5,-80,0,0,-0.00548824 -4267,5815:207:1,-157,-80,0,0,-0.00548701 -4268,5815:206:2,-156.5,-80,0,0,-0.00548701 -4269,5815:206:1,-156,-80,0,0,-0.00548824 -4270,5815:205:2,-155.5,-80,0,0,-0.00548947 -4271,5815:205:1,-155,-80,0,0,-0.00548947 -4272,5815:104:2,-154.5,-80,0,0,-0.00548701 -4273,5815:104:1,-154,-80,0,0,-0.00548701 -4274,5815:103:2,-153.5,-80,0,0,-0.00548824 -4275,5815:103:1,-153,-80,0,0,-0.00548947 -4276,5815:102:2,-152.5,-80,0,0,-0.00548947 -4277,5815:102:1,-152,-80,0,0,-0.00548824 -4278,5815:101:2,-151.5,-80,0,0,-0.00548582 -4279,5815:101:1,-151,-80,0,0,-0.00548582 -4280,5815:100:2,-150.5,-80,0,0,-0.00548582 -4281,5815:100:1,-150,-80,0,0,-0.00548582 -4282,5814:209:2,-149.5,-80,0,0,-0.00548582 -4283,5814:209:1,-149,-80,0,0,-0.00548459 -4284,5814:208:2,-148.5,-80,0,0,-0.00548459 -4285,5814:208:1,-148,-80,0,0,-0.00548459 -4286,5814:207:2,-147.5,-80,0,0,-0.00548459 -4287,5814:207:1,-147,-80,0,0,-0.00548337 -4288,5814:206:2,-146.5,-80,0,0,-0.00548337 -4289,5814:206:1,-146,-80,0,0,-0.00548214 -4290,5814:205:2,-145.5,-80,0,0,-0.00548214 -4291,5814:205:1,-145,-80,0,0,-0.00548214 -4292,5814:104:2,-144.5,-80,0,0,-0.00548091 -4293,5814:104:1,-144,-80,0,0,-0.00548091 -4294,5814:103:2,-143.5,-80,0,0,-0.00548091 -4295,5814:103:1,-143,-80,0,0,-0.00548214 -4296,5814:102:2,-142.5,-80,0,0,-0.00548214 -4297,5814:102:1,-142,-80,0,0,-0.00548091 -4298,5814:101:2,-141.5,-80,0,0,-0.00547972 -4299,5814:101:1,-141,-80,0,0,-0.00548091 -4300,5814:100:2,-140.5,-80,0,0,-0.00548091 -4301,5814:100:1,-140,-80,0,0,-0.00548214 -4302,5813:209:2,-139.5,-80,0,0,-0.00548214 -4303,5813:209:1,-139,-80,0,0,-0.00548214 -4304,5813:208:2,-138.5,-80,0,0,-0.00548214 -4305,5813:208:1,-138,-80,0,0,-0.00548337 -4306,5813:207:2,-137.5,-80,0,0,-0.00548947 -4307,5813:207:1,-137,-80,0,0,-0.00550777 -4308,5813:206:2,-136.5,-80,0,0,-0.005536 -4309,5813:206:1,-136,-80,0,0,-0.00560158 -4310,5813:205:2,-135.5,-80,0,0,-0.00584441 -4311,5813:205:1,-135,-80,0,0,-0.00592286 -4312,5813:104:2,-134.5,-80,0,0,-0.00591106 -4313,5813:104:1,-134,-80,0,0,-0.00596912 -4314,5811:100:1,-110,-80,0,0,-0.00698226 -4315,5810:209:2,-109.5,-80,0,0,-0.00750095 -4316,5810:209:1,-109,-80,0,0,-0.00796395 -4317,5810:208:2,-108.5,-80,0,0,-0.00791092 -4318,5810:206:1,-106,-80,0,0,-0.005619 -4319,5810:205:2,-105.5,-80,0,0,-0.00555077 -4320,5810:205:1,-105,-80,0,0,-0.00552617 -4321,5810:104:2,-104.5,-80,0,0,-0.0055446 -4322,5810:104:1,-104,-80,0,0,-0.00578243 -4323,5810:103:2,-103.5,-80,0,0,-0.00623081 -4324,5810:103:1,-103,-80,0,0,-0.0065446 -4325,5810:102:2,-102.5,-80,0,0,-0.00661925 -4326,5806:101:2,-61.5,-80,0,0,-0.00552861 -4327,5806:101:1,-61,-80,0,0,-0.00552127 -4328,5806:100:2,-60.5,-80,0,0,-0.00550288 -4329,5806:100:1,-60,-80,0,0,-0.00548947 -4330,5805:209:2,-59.5,-80,0,0,-0.0054785 -4331,5805:209:1,-59,-80,0,0,-0.00546511 -4332,5805:208:2,-58.5,-80,0,0,-0.00545541 -4333,5805:208:1,-58,-80,0,0,-0.005453 -4334,5805:207:2,-57.5,-80,0,0,-0.00545179 -4335,5805:207:1,-57,-80,0,0,-0.00545057 -4336,5805:206:2,-56.5,-80,0,0,-0.00544935 -4337,5805:206:1,-56,-80,0,0,-0.00544935 -4338,5805:205:2,-55.5,-80,0,0,-0.00544935 -4339,5805:205:1,-55,-80,0,0,-0.00545057 -4340,5805:104:2,-54.5,-80,0,0,-0.00545057 -4341,5805:104:1,-54,-80,0,0,-0.00545057 -4342,5805:103:2,-53.5,-80,0,0,-0.00545057 -4343,5805:103:1,-53,-80,0,0,-0.00545179 -4344,5805:102:2,-52.5,-80,0,0,-0.005453 -4345,5805:102:1,-52,-80,0,0,-0.00545423 -4346,5805:101:2,-51.5,-80,0,0,-0.00545423 -4347,5805:101:1,-51,-80,0,0,-0.00545541 -4348,5805:100:2,-50.5,-80,0,0,-0.00545541 -4349,5805:100:1,-50,-80,0,0,-0.00545541 -4350,5804:209:2,-49.5,-80,0,0,-0.00545541 -4351,5804:209:1,-49,-80,0,0,-0.00545541 -4352,5804:208:2,-48.5,-80,0,0,-0.00545423 -4353,5804:208:1,-48,-80,0,0,-0.005453 -4354,5804:207:2,-47.5,-80,0,0,-0.005453 -4355,5804:207:1,-47,-80,0,0,-0.00545663 -4356,5804:206:2,-46.5,-80,0,0,-0.00545907 -4357,5804:206:1,-46,-80,0,0,-0.00546148 -4358,5804:205:2,-45.5,-80,0,0,-0.00546392 -4359,5804:205:1,-45,-80,0,0,-0.00546633 -4360,5804:104:2,-44.5,-80,0,0,-0.00546511 -4361,5804:104:1,-44,-80,0,0,-0.00546511 -4362,5804:103:2,-43.5,-80,0,0,-0.00546511 -4363,5804:103:1,-43,-80,0,0,-0.00546511 -4364,5804:102:2,-42.5,-80,0,0,-0.00546392 -4365,5804:102:1,-42,-80,0,0,-0.00546392 -4366,5804:101:2,-41.5,-80,0,0,-0.00546511 -4367,5804:101:1,-41,-80,0,0,-0.00546511 -4368,5804:100:2,-40.5,-80,0,0,-0.00546633 -4369,5804:100:1,-40,-80,0,0,-0.00546755 -4370,5803:209:2,-39.5,-80,0,0,-0.00546755 -4371,5803:209:1,-39,-80,0,0,-0.00546755 -4372,5803:208:2,-38.5,-80,0,0,-0.00546755 -4373,5803:208:1,-38,-80,0,0,-0.00546755 -4374,5803:207:2,-37.5,-80,0,0,-0.00546878 -4375,5803:207:1,-37,-80,0,0,-0.00546755 -4376,5803:206:2,-36.5,-80,0,0,-0.00546755 -4377,5803:206:1,-36,-80,0,0,-0.00546755 -4378,5803:205:2,-35.5,-80,0,0,-0.00546755 -4379,5803:205:1,-35,-80,0,0,-0.00546878 -4380,5803:104:2,-34.5,-80,0,0,-0.00546878 -4381,5803:104:1,-34,-80,0,0,-0.00546755 -4382,5803:103:2,-33.5,-80,0,0,-0.00546755 -4383,5803:103:1,-33,-80,0,0,-0.00546755 -4384,5803:102:2,-32.5,-80,0,0,-0.00546878 -4385,5803:102:1,-32,-80,0,0,-0.00546878 -4386,5803:101:2,-31.5,-80,0,0,-0.00546878 -4387,5803:101:1,-31,-80,0,0,-0.00547 -4388,5803:100:2,-30.5,-80,0,0,-0.00546878 -4389,5803:100:1,-30,-80,0,0,-0.00547 -4390,5802:209:2,-29.5,-80,0,0,-0.00547119 -4391,5802:209:1,-29,-80,0,0,-0.00547 -4392,5802:208:2,-28.5,-80,0,0,-0.00546878 -4393,5802:208:1,-28,-80,0,0,-0.00546755 -4394,5802:207:2,-27.5,-80,0,0,-0.00546633 -4395,5802:207:1,-27,-80,0,0,-0.00546511 -4396,5802:206:2,-26.5,-80,0,0,-0.00553848 -4397,5802:206:1,-26,-80,0,0,-0.00565409 -4398,5802:205:2,-25.5,-80,0,0,-0.00561402 -4399,5802:205:1,-25,-80,0,0,-0.00557672 -4400,5802:104:2,-24.5,-80,0,0,-0.00581851 -4401,5802:104:1,-24,-80,0,0,-0.00615781 -4402,3816:205:2,165.5,-80,0,0,-0.0055225 -4403,3816:206:1,166,-80,0,0,-0.00550411 -4404,3816:206:2,166.5,-80,0,0,-0.00548091 -4405,3816:207:1,167,-80,0,0,-0.00547241 -4406,3816:207:2,167.5,-80,0,0,-0.00546633 -4407,3816:208:1,168,-80,0,0,-0.00545907 -4408,3816:208:2,168.5,-80,0,0,-0.00545057 -4409,3816:209:1,169,-80,0,0,-0.00544451 -4410,3816:209:2,169.5,-80,0,0,-0.00544211 -4411,3817:100:1,170,-80,0,0,-0.00544333 -4412,3817:100:2,170.5,-80,0,0,-0.00544333 -4413,3817:101:1,171,-80,0,0,-0.00544089 -4414,3817:101:2,171.5,-80,0,0,-0.00569445 -4415,3817:102:1,172,-80,0,0,-0.00650255 -4416,3817:102:2,172.5,-80,0,0,-0.00744774 -4417,3817:103:1,173,-80,0,0,-0.00792146 -4418,3817:103:2,173.5,-80,0,0,-0.00790914 -4419,3817:104:1,174,-80,0,0,-0.00786525 -4420,3817:104:2,174.5,-80,0,0,-0.00783724 -4421,3817:205:1,175,-80,0,0,-0.00782681 -4422,3817:205:2,175.5,-80,0,0,-0.00778162 -4423,3817:206:1,176,-80,0,0,-0.00760351 -4424,3817:206:2,176.5,-80,0,0,-0.00631868 -4425,3817:207:1,177,-80,0,0,-0.00551024 -4426,3817:207:2,177.5,-80,0,0,-0.00544089 -4427,3817:208:1,178,-80,0,0,-0.00544211 -4428,3817:208:2,178.5,-80,0,0,-0.00544816 -4429,3817:209:1,179,-80,0,0,-0.005453 -4430,3817:209:2,179.5,-80,0,0,-0.00545663 -4431,3818:100:1,180,-80,0,0,-0.00546026 -4432,5718:390:3,-180,-79.5,0,0,-0.00546026 -4433,5717:499:4,-179.5,-79.5,0,0,-0.00546392 -4434,5717:499:3,-179,-79.5,0,0,-0.00546511 -4435,5717:498:4,-178.5,-79.5,0,0,-0.00546392 -4436,5717:498:3,-178,-79.5,0,0,-0.00546511 -4437,5717:497:4,-177.5,-79.5,0,0,-0.00546633 -4438,5717:497:3,-177,-79.5,0,0,-0.00546878 -4439,5717:496:4,-176.5,-79.5,0,0,-0.00547 -4440,5717:496:3,-176,-79.5,0,0,-0.00547 -4441,5717:495:4,-175.5,-79.5,0,0,-0.00547119 -4442,5717:495:3,-175,-79.5,0,0,-0.00547119 -4443,5717:394:4,-174.5,-79.5,0,0,-0.00547241 -4444,5717:394:3,-174,-79.5,0,0,-0.00547364 -4445,5717:393:4,-173.5,-79.5,0,0,-0.00547364 -4446,5717:393:3,-173,-79.5,0,0,-0.00547486 -4447,5717:392:4,-172.5,-79.5,0,0,-0.00547486 -4448,5717:392:3,-172,-79.5,0,0,-0.00547605 -4449,5717:391:4,-171.5,-79.5,0,0,-0.00547605 -4450,5717:391:3,-171,-79.5,0,0,-0.00547605 -4451,5717:390:4,-170.5,-79.5,0,0,-0.00547727 -4452,5717:390:3,-170,-79.5,0,0,-0.00547727 -4453,5716:499:4,-169.5,-79.5,0,0,-0.0054785 -4454,5716:499:3,-169,-79.5,0,0,-0.0054785 -4455,5716:498:4,-168.5,-79.5,0,0,-0.0054785 -4456,5716:498:3,-168,-79.5,0,0,-0.00547972 -4457,5716:497:4,-167.5,-79.5,0,0,-0.00547972 -4458,5716:497:3,-167,-79.5,0,0,-0.00548091 -4459,5716:496:4,-166.5,-79.5,0,0,-0.00548091 -4460,5716:496:3,-166,-79.5,0,0,-0.00547972 -4461,5716:495:4,-165.5,-79.5,0,0,-0.00547972 -4462,5716:495:3,-165,-79.5,0,0,-0.00547972 -4463,5716:394:4,-164.5,-79.5,0,0,-0.00547972 -4464,5716:394:3,-164,-79.5,0,0,-0.00547972 -4465,5716:393:4,-163.5,-79.5,0,0,-0.00547972 -4466,5716:393:3,-163,-79.5,0,0,-0.00548091 -4467,5716:392:4,-162.5,-79.5,0,0,-0.00548091 -4468,5716:392:3,-162,-79.5,0,0,-0.00548091 -4469,5716:391:4,-161.5,-79.5,0,0,-0.00548091 -4470,5716:391:3,-161,-79.5,0,0,-0.00548214 -4471,5716:390:4,-160.5,-79.5,0,0,-0.00548337 -4472,5716:390:3,-160,-79.5,0,0,-0.00548459 -4473,5715:499:4,-159.5,-79.5,0,0,-0.00548582 -4474,5715:499:3,-159,-79.5,0,0,-0.00548582 -4475,5715:498:4,-158.5,-79.5,0,0,-0.00548701 -4476,5715:498:3,-158,-79.5,0,0,-0.00548824 -4477,5715:497:4,-157.5,-79.5,0,0,-0.00548824 -4478,5715:497:3,-157,-79.5,0,0,-0.00548701 -4479,5715:496:4,-156.5,-79.5,0,0,-0.00548701 -4480,5715:496:3,-156,-79.5,0,0,-0.00548824 -4481,5715:495:4,-155.5,-79.5,0,0,-0.00548947 -4482,5715:495:3,-155,-79.5,0,0,-0.00548947 -4483,5715:394:4,-154.5,-79.5,0,0,-0.00548701 -4484,5715:394:3,-154,-79.5,0,0,-0.00548701 -4485,5715:393:4,-153.5,-79.5,0,0,-0.00548824 -4486,5715:393:3,-153,-79.5,0,0,-0.00548947 -4487,5715:392:4,-152.5,-79.5,0,0,-0.00548947 -4488,5715:392:3,-152,-79.5,0,0,-0.00548824 -4489,5715:391:4,-151.5,-79.5,0,0,-0.00548582 -4490,5715:391:3,-151,-79.5,0,0,-0.00548582 -4491,5715:390:4,-150.5,-79.5,0,0,-0.00548582 -4492,5715:390:3,-150,-79.5,0,0,-0.00548582 -4493,5714:499:4,-149.5,-79.5,0,0,-0.00548582 -4494,5714:499:3,-149,-79.5,0,0,-0.00548459 -4495,5714:498:4,-148.5,-79.5,0,0,-0.00548459 -4496,5714:498:3,-148,-79.5,0,0,-0.00548459 -4497,5714:497:4,-147.5,-79.5,0,0,-0.00548459 -4498,5714:497:3,-147,-79.5,0,0,-0.00548337 -4499,5714:496:4,-146.5,-79.5,0,0,-0.00548337 -4500,5714:496:3,-146,-79.5,0,0,-0.00548214 -4501,5714:495:4,-145.5,-79.5,0,0,-0.00548214 -4502,5714:495:3,-145,-79.5,0,0,-0.00548214 -4503,5714:394:4,-144.5,-79.5,0,0,-0.00548091 -4504,5714:394:3,-144,-79.5,0,0,-0.00548091 -4505,5714:393:4,-143.5,-79.5,0,0,-0.00548091 -4506,5714:393:3,-143,-79.5,0,0,-0.00548214 -4507,5714:392:4,-142.5,-79.5,0,0,-0.00548214 -4508,5714:392:3,-142,-79.5,0,0,-0.00548091 -4509,5714:391:4,-141.5,-79.5,0,0,-0.00547972 -4510,5714:391:3,-141,-79.5,0,0,-0.00548091 -4511,5714:390:4,-140.5,-79.5,0,0,-0.00548091 -4512,5714:390:3,-140,-79.5,0,0,-0.00548214 -4513,5713:499:4,-139.5,-79.5,0,0,-0.00548214 -4514,5713:499:3,-139,-79.5,0,0,-0.00548214 -4515,5713:498:4,-138.5,-79.5,0,0,-0.00548214 -4516,5713:498:3,-138,-79.5,0,0,-0.00548337 -4517,5713:497:4,-137.5,-79.5,0,0,-0.00548947 -4518,5713:497:3,-137,-79.5,0,0,-0.00550777 -4519,5713:496:4,-136.5,-79.5,0,0,-0.005536 -4520,5713:496:3,-136,-79.5,0,0,-0.00560158 -4521,5713:495:4,-135.5,-79.5,0,0,-0.00584441 -4522,5713:495:3,-135,-79.5,0,0,-0.00592286 -4523,5713:394:4,-134.5,-79.5,0,0,-0.00591106 -4524,5713:394:3,-134,-79.5,0,0,-0.00596912 -4525,5711:390:3,-110,-79.5,0,0,-0.00698226 -4526,5710:499:4,-109.5,-79.5,0,0,-0.00750095 -4527,5710:499:3,-109,-79.5,0,0,-0.00796395 -4528,5710:498:4,-108.5,-79.5,0,0,-0.00791092 -4529,5710:496:3,-106,-79.5,0,0,-0.005619 -4530,5710:495:4,-105.5,-79.5,0,0,-0.00555077 -4531,5710:495:3,-105,-79.5,0,0,-0.00552617 -4532,5710:394:4,-104.5,-79.5,0,0,-0.0055446 -4533,5710:394:3,-104,-79.5,0,0,-0.00578243 -4534,5710:393:4,-103.5,-79.5,0,0,-0.00623081 -4535,5710:393:3,-103,-79.5,0,0,-0.0065446 -4536,5710:392:4,-102.5,-79.5,0,0,-0.00661925 -4537,5706:391:4,-61.5,-79.5,0,0,-0.00552861 -4538,5706:391:3,-61,-79.5,0,0,-0.00552127 -4539,5706:390:4,-60.5,-79.5,0,0,-0.00550288 -4540,5706:390:3,-60,-79.5,0,0,-0.00548947 -4541,5705:499:4,-59.5,-79.5,0,0,-0.0054785 -4542,5705:499:3,-59,-79.5,0,0,-0.00546511 -4543,5705:498:4,-58.5,-79.5,0,0,-0.00545541 -4544,5705:498:3,-58,-79.5,0,0,-0.005453 -4545,5705:497:4,-57.5,-79.5,0,0,-0.00545179 -4546,5705:497:3,-57,-79.5,0,0,-0.00545057 -4547,5705:496:4,-56.5,-79.5,0,0,-0.00544935 -4548,5705:496:3,-56,-79.5,0,0,-0.00544935 -4549,5705:495:4,-55.5,-79.5,0,0,-0.00544935 -4550,5705:495:3,-55,-79.5,0,0,-0.00545057 -4551,5705:394:4,-54.5,-79.5,0,0,-0.00545057 -4552,5705:394:3,-54,-79.5,0,0,-0.00545057 -4553,5705:393:4,-53.5,-79.5,0,0,-0.00545057 -4554,5705:393:3,-53,-79.5,0,0,-0.00545179 -4555,5705:392:4,-52.5,-79.5,0,0,-0.005453 -4556,5705:392:3,-52,-79.5,0,0,-0.00545423 -4557,5705:391:4,-51.5,-79.5,0,0,-0.00545423 -4558,5705:391:3,-51,-79.5,0,0,-0.00545541 -4559,5705:390:4,-50.5,-79.5,0,0,-0.00545541 -4560,5705:390:3,-50,-79.5,0,0,-0.00545541 -4561,5704:499:4,-49.5,-79.5,0,0,-0.00545541 -4562,5704:499:3,-49,-79.5,0,0,-0.00545541 -4563,5704:498:4,-48.5,-79.5,0,0,-0.00545423 -4564,5704:498:3,-48,-79.5,0,0,-0.005453 -4565,5704:497:4,-47.5,-79.5,0,0,-0.005453 -4566,5704:497:3,-47,-79.5,0,0,-0.00545663 -4567,5704:496:4,-46.5,-79.5,0,0,-0.00545907 -4568,5704:496:3,-46,-79.5,0,0,-0.00546148 -4569,5704:495:4,-45.5,-79.5,0,0,-0.00546392 -4570,5704:495:3,-45,-79.5,0,0,-0.00546633 -4571,5704:394:4,-44.5,-79.5,0,0,-0.00546511 -4572,5704:394:3,-44,-79.5,0,0,-0.00546511 -4573,5704:393:4,-43.5,-79.5,0,0,-0.00546511 -4574,5704:393:3,-43,-79.5,0,0,-0.00546511 -4575,5704:392:4,-42.5,-79.5,0,0,-0.00546392 -4576,5704:392:3,-42,-79.5,0,0,-0.00546392 -4577,5704:391:4,-41.5,-79.5,0,0,-0.00546511 -4578,5704:391:3,-41,-79.5,0,0,-0.00546511 -4579,5704:390:4,-40.5,-79.5,0,0,-0.00546633 -4580,5704:390:3,-40,-79.5,0,0,-0.00546755 -4581,5703:499:4,-39.5,-79.5,0,0,-0.00546755 -4582,5703:499:3,-39,-79.5,0,0,-0.00546755 -4583,5703:498:4,-38.5,-79.5,0,0,-0.00546755 -4584,5703:498:3,-38,-79.5,0,0,-0.00546755 -4585,5703:497:4,-37.5,-79.5,0,0,-0.00546878 -4586,5703:497:3,-37,-79.5,0,0,-0.00546755 -4587,5703:496:4,-36.5,-79.5,0,0,-0.00546755 -4588,5703:496:3,-36,-79.5,0,0,-0.00546755 -4589,5703:495:4,-35.5,-79.5,0,0,-0.00546755 -4590,5703:495:3,-35,-79.5,0,0,-0.00546878 -4591,5703:394:4,-34.5,-79.5,0,0,-0.00546878 -4592,5703:394:3,-34,-79.5,0,0,-0.00546755 -4593,5703:393:4,-33.5,-79.5,0,0,-0.00546755 -4594,5703:393:3,-33,-79.5,0,0,-0.00546755 -4595,5703:392:4,-32.5,-79.5,0,0,-0.00546878 -4596,5703:392:3,-32,-79.5,0,0,-0.00546878 -4597,5703:391:4,-31.5,-79.5,0,0,-0.00546878 -4598,5703:391:3,-31,-79.5,0,0,-0.00547 -4599,5703:390:4,-30.5,-79.5,0,0,-0.00546878 -4600,5703:390:3,-30,-79.5,0,0,-0.00547 -4601,5702:499:4,-29.5,-79.5,0,0,-0.00547119 -4602,5702:499:3,-29,-79.5,0,0,-0.00547 -4603,5702:498:4,-28.5,-79.5,0,0,-0.00546878 -4604,5702:498:3,-28,-79.5,0,0,-0.00546755 -4605,5702:497:4,-27.5,-79.5,0,0,-0.00546633 -4606,5702:497:3,-27,-79.5,0,0,-0.00546511 -4607,5702:496:4,-26.5,-79.5,0,0,-0.00553848 -4608,5702:496:3,-26,-79.5,0,0,-0.00565409 -4609,5702:495:4,-25.5,-79.5,0,0,-0.00561402 -4610,5702:495:3,-25,-79.5,0,0,-0.00557672 -4611,5702:394:4,-24.5,-79.5,0,0,-0.00581851 -4612,5702:394:3,-24,-79.5,0,0,-0.00615781 -4613,3716:495:4,165.5,-79.5,0,0,-0.0055225 -4614,3716:496:3,166,-79.5,0,0,-0.00550411 -4615,3716:496:4,166.5,-79.5,0,0,-0.00548091 -4616,3716:497:3,167,-79.5,0,0,-0.00547241 -4617,3716:497:4,167.5,-79.5,0,0,-0.00546633 -4618,3716:498:3,168,-79.5,0,0,-0.00545907 -4619,3716:498:4,168.5,-79.5,0,0,-0.00545057 -4620,3716:499:3,169,-79.5,0,0,-0.00544451 -4621,3716:499:4,169.5,-79.5,0,0,-0.00544211 -4622,3717:390:3,170,-79.5,0,0,-0.00544333 -4623,3717:390:4,170.5,-79.5,0,0,-0.00544333 -4624,3717:391:3,171,-79.5,0,0,-0.00544089 -4625,3717:391:4,171.5,-79.5,0,0,-0.00569445 -4626,3717:392:3,172,-79.5,0,0,-0.00650255 -4627,3717:392:4,172.5,-79.5,0,0,-0.00744774 -4628,3717:393:3,173,-79.5,0,0,-0.00792146 -4629,3717:393:4,173.5,-79.5,0,0,-0.00790914 -4630,3717:394:3,174,-79.5,0,0,-0.00786525 -4631,3717:394:4,174.5,-79.5,0,0,-0.00783724 -4632,3717:495:3,175,-79.5,0,0,-0.00782681 -4633,3717:495:4,175.5,-79.5,0,0,-0.00778162 -4634,3717:496:3,176,-79.5,0,0,-0.00760351 -4635,3717:496:4,176.5,-79.5,0,0,-0.00631868 -4636,3717:497:3,177,-79.5,0,0,-0.00551024 -4637,3717:497:4,177.5,-79.5,0,0,-0.00544089 -4638,3717:498:3,178,-79.5,0,0,-0.00544211 -4639,3717:498:4,178.5,-79.5,0,0,-0.00544816 -4640,3717:499:3,179,-79.5,0,0,-0.005453 -4641,3717:499:4,179.5,-79.5,0,0,-0.00545663 -4642,3718:390:3,180,-79.5,0,0,-0.00546026 -4643,5718:390:1,-180,-79,0,0,-0.00546026 -4644,5717:499:2,-179.5,-79,0,0,-0.00546392 -4645,5717:499:1,-179,-79,0,0,-0.00546511 -4646,5717:498:2,-178.5,-79,0,0,-0.00546392 -4647,5717:498:1,-178,-79,0,0,-0.00546511 -4648,5717:497:2,-177.5,-79,0,0,-0.00546633 -4649,5717:497:1,-177,-79,0,0,-0.00546878 -4650,5717:496:2,-176.5,-79,0,0,-0.00547 -4651,5717:496:1,-176,-79,0,0,-0.00547 -4652,5717:495:2,-175.5,-79,0,0,-0.00547119 -4653,5717:495:1,-175,-79,0,0,-0.00547119 -4654,5717:394:2,-174.5,-79,0,0,-0.00547241 -4655,5717:394:1,-174,-79,0,0,-0.00547364 -4656,5717:393:2,-173.5,-79,0,0,-0.00547364 -4657,5717:393:1,-173,-79,0,0,-0.00547486 -4658,5717:392:2,-172.5,-79,0,0,-0.00547486 -4659,5717:392:1,-172,-79,0,0,-0.00547605 -4660,5717:391:2,-171.5,-79,0,0,-0.00547605 -4661,5717:391:1,-171,-79,0,0,-0.00547605 -4662,5717:390:2,-170.5,-79,0,0,-0.00547727 -4663,5717:390:1,-170,-79,0,0,-0.00547727 -4664,5716:499:2,-169.5,-79,0,0,-0.0054785 -4665,5716:499:1,-169,-79,0,0,-0.0054785 -4666,5716:498:2,-168.5,-79,0,0,-0.0054785 -4667,5716:498:1,-168,-79,0,0,-0.00547972 -4668,5716:497:2,-167.5,-79,0,0,-0.00547972 -4669,5716:497:1,-167,-79,0,0,-0.00548091 -4670,5716:496:2,-166.5,-79,0,0,-0.00548091 -4671,5716:496:1,-166,-79,0,0,-0.00547972 -4672,5716:495:2,-165.5,-79,0,0,-0.00547972 -4673,5716:495:1,-165,-79,0,0,-0.00547972 -4674,5716:394:2,-164.5,-79,0,0,-0.00547972 -4675,5716:394:1,-164,-79,0,0,-0.00547972 -4676,5716:393:2,-163.5,-79,0,0,-0.00547972 -4677,5716:393:1,-163,-79,0,0,-0.00548091 -4678,5716:392:2,-162.5,-79,0,0,-0.00548091 -4679,5716:392:1,-162,-79,0,0,-0.00548091 -4680,5716:391:2,-161.5,-79,0,0,-0.00548091 -4681,5716:391:1,-161,-79,0,0,-0.00548214 -4682,5716:390:2,-160.5,-79,0,0,-0.00548337 -4683,5716:390:1,-160,-79,0,0,-0.00548459 -4684,5715:499:2,-159.5,-79,0,0,-0.00548582 -4685,5715:499:1,-159,-79,0,0,-0.00548582 -4686,5715:498:2,-158.5,-79,0,0,-0.00548701 -4687,5715:498:1,-158,-79,0,0,-0.00548824 -4688,5715:497:2,-157.5,-79,0,0,-0.00548824 -4689,5715:497:1,-157,-79,0,0,-0.00548701 -4690,5715:496:2,-156.5,-79,0,0,-0.00548701 -4691,5715:496:1,-156,-79,0,0,-0.00548824 -4692,5715:495:2,-155.5,-79,0,0,-0.00548947 -4693,5715:495:1,-155,-79,0,0,-0.00548947 -4694,5715:394:2,-154.5,-79,0,0,-0.00548701 -4695,5715:394:1,-154,-79,0,0,-0.00548701 -4696,5715:393:2,-153.5,-79,0,0,-0.00548824 -4697,5715:393:1,-153,-79,0,0,-0.00548947 -4698,5715:392:2,-152.5,-79,0,0,-0.00548947 -4699,5715:392:1,-152,-79,0,0,-0.00548824 -4700,5715:391:2,-151.5,-79,0,0,-0.00548582 -4701,5715:391:1,-151,-79,0,0,-0.00548582 -4702,5715:390:2,-150.5,-79,0,0,-0.00548582 -4703,5715:390:1,-150,-79,0,0,-0.00548582 -4704,5714:499:2,-149.5,-79,0,0,-0.00548582 -4705,5714:499:1,-149,-79,0,0,-0.00548459 -4706,5714:498:2,-148.5,-79,0,0,-0.00548459 -4707,5714:498:1,-148,-79,0,0,-0.00548459 -4708,5714:497:2,-147.5,-79,0,0,-0.00548459 -4709,5714:497:1,-147,-79,0,0,-0.00548337 -4710,5714:496:2,-146.5,-79,0,0,-0.00548337 -4711,5714:496:1,-146,-79,0,0,-0.00548214 -4712,5714:495:2,-145.5,-79,0,0,-0.00548214 -4713,5714:495:1,-145,-79,0,0,-0.00548214 -4714,5714:394:2,-144.5,-79,0,0,-0.00548091 -4715,5714:394:1,-144,-79,0,0,-0.00548091 -4716,5714:393:2,-143.5,-79,0,0,-0.00548091 -4717,5714:393:1,-143,-79,0,0,-0.00548214 -4718,5714:392:2,-142.5,-79,0,0,-0.00548214 -4719,5714:392:1,-142,-79,0,0,-0.00548091 -4720,5714:391:2,-141.5,-79,0,0,-0.00547972 -4721,5714:391:1,-141,-79,0,0,-0.00548091 -4722,5714:390:2,-140.5,-79,0,0,-0.00548091 -4723,5714:390:1,-140,-79,0,0,-0.00548214 -4724,5713:499:2,-139.5,-79,0,0,-0.00548214 -4725,5713:499:1,-139,-79,0,0,-0.00548214 -4726,5713:498:2,-138.5,-79,0,0,-0.00548214 -4727,5713:498:1,-138,-79,0,0,-0.00548337 -4728,5713:497:2,-137.5,-79,0,0,-0.00548947 -4729,5713:497:1,-137,-79,0,0,-0.00550777 -4730,5713:496:2,-136.5,-79,0,0,-0.005536 -4731,5713:496:1,-136,-79,0,0,-0.00560158 -4732,5713:495:2,-135.5,-79,0,0,-0.00584441 -4733,5713:495:1,-135,-79,0,0,-0.00592286 -4734,5713:394:2,-134.5,-79,0,0,-0.00591106 -4735,5713:394:1,-134,-79,0,0,-0.00596912 -4736,5711:390:1,-110,-79,0,0,-0.00698226 -4737,5710:499:2,-109.5,-79,0,0,-0.00750095 -4738,5710:499:1,-109,-79,0,0,-0.00796395 -4739,5710:498:2,-108.5,-79,0,0,-0.00791092 -4740,5710:496:1,-106,-79,0,0,-0.005619 -4741,5710:495:2,-105.5,-79,0,0,-0.00555077 -4742,5710:495:1,-105,-79,0,0,-0.00552617 -4743,5710:394:2,-104.5,-79,0,0,-0.0055446 -4744,5710:394:1,-104,-79,0,0,-0.00578243 -4745,5710:393:2,-103.5,-79,0,0,-0.00623081 -4746,5710:393:1,-103,-79,0,0,-0.0065446 -4747,5710:392:2,-102.5,-79,0,0,-0.00661925 -4748,5706:391:2,-61.5,-79,0,0,-0.00552861 -4749,5706:391:1,-61,-79,0,0,-0.00552127 -4750,5706:390:2,-60.5,-79,0,0,-0.00550288 -4751,5706:390:1,-60,-79,0,0,-0.00548947 -4752,5705:499:2,-59.5,-79,0,0,-0.0054785 -4753,5705:499:1,-59,-79,0,0,-0.00546511 -4754,5705:498:2,-58.5,-79,0,0,-0.00545541 -4755,5705:498:1,-58,-79,0,0,-0.005453 -4756,5705:497:2,-57.5,-79,0,0,-0.00545179 -4757,5705:497:1,-57,-79,0,0,-0.00545057 -4758,5705:496:2,-56.5,-79,0,0,-0.00544935 -4759,5705:496:1,-56,-79,0,0,-0.00544935 -4760,5705:495:2,-55.5,-79,0,0,-0.00544935 -4761,5705:495:1,-55,-79,0,0,-0.00545057 -4762,5705:394:2,-54.5,-79,0,0,-0.00545057 -4763,5705:394:1,-54,-79,0,0,-0.00545057 -4764,5705:393:2,-53.5,-79,0,0,-0.00545057 -4765,5705:393:1,-53,-79,0,0,-0.00545179 -4766,5705:392:2,-52.5,-79,0,0,-0.005453 -4767,5705:392:1,-52,-79,0,0,-0.00545423 -4768,5705:391:2,-51.5,-79,0,0,-0.00545423 -4769,5705:391:1,-51,-79,0,0,-0.00545541 -4770,5705:390:2,-50.5,-79,0,0,-0.00545541 -4771,5705:390:1,-50,-79,0,0,-0.00545541 -4772,5704:499:2,-49.5,-79,0,0,-0.00545541 -4773,5704:499:1,-49,-79,0,0,-0.00545541 -4774,5704:498:2,-48.5,-79,0,0,-0.00545423 -4775,5704:498:1,-48,-79,0,0,-0.005453 -4776,5704:497:2,-47.5,-79,0,0,-0.005453 -4777,5704:497:1,-47,-79,0,0,-0.00545663 -4778,5704:496:2,-46.5,-79,0,0,-0.00545907 -4779,5704:496:1,-46,-79,0,0,-0.00546148 -4780,5704:495:2,-45.5,-79,0,0,-0.00546392 -4781,5704:495:1,-45,-79,0,0,-0.00546633 -4782,5704:394:2,-44.5,-79,0,0,-0.00546511 -4783,5704:394:1,-44,-79,0,0,-0.00546511 -4784,5704:393:2,-43.5,-79,0,0,-0.00546511 -4785,5704:393:1,-43,-79,0,0,-0.00546511 -4786,5704:392:2,-42.5,-79,0,0,-0.00546392 -4787,5704:392:1,-42,-79,0,0,-0.00546392 -4788,5704:391:2,-41.5,-79,0,0,-0.00546511 -4789,5704:391:1,-41,-79,0,0,-0.00546511 -4790,5704:390:2,-40.5,-79,0,0,-0.00546633 -4791,5704:390:1,-40,-79,0,0,-0.00546755 -4792,5703:499:2,-39.5,-79,0,0,-0.00546755 -4793,5703:499:1,-39,-79,0,0,-0.00546755 -4794,5703:498:2,-38.5,-79,0,0,-0.00546755 -4795,5703:498:1,-38,-79,0,0,-0.00546755 -4796,5703:497:2,-37.5,-79,0,0,-0.00546878 -4797,5703:497:1,-37,-79,0,0,-0.00546755 -4798,5703:496:2,-36.5,-79,0,0,-0.00546755 -4799,5703:496:1,-36,-79,0,0,-0.00546755 -4800,5703:495:2,-35.5,-79,0,0,-0.00546755 -4801,5703:495:1,-35,-79,0,0,-0.00546878 -4802,5703:394:2,-34.5,-79,0,0,-0.00546878 -4803,5703:394:1,-34,-79,0,0,-0.00546755 -4804,5703:393:2,-33.5,-79,0,0,-0.00546755 -4805,5703:393:1,-33,-79,0,0,-0.00546755 -4806,5703:392:2,-32.5,-79,0,0,-0.00546878 -4807,5703:392:1,-32,-79,0,0,-0.00546878 -4808,5703:391:2,-31.5,-79,0,0,-0.00546878 -4809,5703:391:1,-31,-79,0,0,-0.00547 -4810,5703:390:2,-30.5,-79,0,0,-0.00546878 -4811,5703:390:1,-30,-79,0,0,-0.00547 -4812,5702:499:2,-29.5,-79,0,0,-0.00547119 -4813,5702:499:1,-29,-79,0,0,-0.00547 -4814,5702:498:2,-28.5,-79,0,0,-0.00546878 -4815,5702:498:1,-28,-79,0,0,-0.00546755 -4816,5702:497:2,-27.5,-79,0,0,-0.00546633 -4817,5702:497:1,-27,-79,0,0,-0.00546511 -4818,5702:496:2,-26.5,-79,0,0,-0.00553848 -4819,5702:496:1,-26,-79,0,0,-0.00565409 -4820,5702:495:2,-25.5,-79,0,0,-0.00561402 -4821,5702:495:1,-25,-79,0,0,-0.00557672 -4822,5702:394:2,-24.5,-79,0,0,-0.00581851 -4823,5702:394:1,-24,-79,0,0,-0.00615781 -4824,3716:495:2,165.5,-79,0,0,-0.0055225 -4825,3716:496:1,166,-79,0,0,-0.00550411 -4826,3716:496:2,166.5,-79,0,0,-0.00548091 -4827,3716:497:1,167,-79,0,0,-0.00547241 -4828,3716:497:2,167.5,-79,0,0,-0.00546633 -4829,3716:498:1,168,-79,0,0,-0.00545907 -4830,3716:498:2,168.5,-79,0,0,-0.00545057 -4831,3716:499:1,169,-79,0,0,-0.00544451 -4832,3716:499:2,169.5,-79,0,0,-0.00544211 -4833,3717:390:1,170,-79,0,0,-0.00544333 -4834,3717:390:2,170.5,-79,0,0,-0.00544333 -4835,3717:391:1,171,-79,0,0,-0.00544089 -4836,3717:391:2,171.5,-79,0,0,-0.00569445 -4837,3717:392:1,172,-79,0,0,-0.00650255 -4838,3717:392:2,172.5,-79,0,0,-0.00744774 -4839,3717:393:1,173,-79,0,0,-0.00792146 -4840,3717:393:2,173.5,-79,0,0,-0.00790914 -4841,3717:394:1,174,-79,0,0,-0.00786525 -4842,3717:394:2,174.5,-79,0,0,-0.00783724 -4843,3717:495:1,175,-79,0,0,-0.00782681 -4844,3717:495:2,175.5,-79,0,0,-0.00778162 -4845,3717:496:1,176,-79,0,0,-0.00760351 -4846,3717:496:2,176.5,-79,0,0,-0.00631868 -4847,3717:497:1,177,-79,0,0,-0.00551024 -4848,3717:497:2,177.5,-79,0,0,-0.00544089 -4849,3717:498:1,178,-79,0,0,-0.00544211 -4850,3717:498:2,178.5,-79,0,0,-0.00544816 -4851,3717:499:1,179,-79,0,0,-0.005453 -4852,3717:499:2,179.5,-79,0,0,-0.00545663 -4853,3718:390:1,180,-79,0,0,-0.00546026 -4854,5718:380:3,-180,-78.5,0,0,-0.00546026 -4855,5717:489:4,-179.5,-78.5,0,0,-0.00546392 -4856,5717:489:3,-179,-78.5,0,0,-0.00546511 -4857,5717:488:4,-178.5,-78.5,0,0,-0.00546392 -4858,5717:488:3,-178,-78.5,0,0,-0.00546511 -4859,5717:487:4,-177.5,-78.5,0,0,-0.00546633 -4860,5717:487:3,-177,-78.5,0,0,-0.00546878 -4861,5717:486:4,-176.5,-78.5,0,0,-0.00547 -4862,5717:486:3,-176,-78.5,0,0,-0.00547 -4863,5717:485:4,-175.5,-78.5,0,0,-0.00547119 -4864,5717:485:3,-175,-78.5,0,0,-0.00547119 -4865,5717:384:4,-174.5,-78.5,0,0,-0.00547241 -4866,5717:384:3,-174,-78.5,0,0,-0.00547364 -4867,5717:383:4,-173.5,-78.5,0,0,-0.00547364 -4868,5717:383:3,-173,-78.5,0,0,-0.00547486 -4869,5717:382:4,-172.5,-78.5,0,0,-0.00547486 -4870,5717:382:3,-172,-78.5,0,0,-0.00547605 -4871,5717:381:4,-171.5,-78.5,0,0,-0.00547605 -4872,5717:381:3,-171,-78.5,0,0,-0.00547605 -4873,5717:380:4,-170.5,-78.5,0,0,-0.00547727 -4874,5717:380:3,-170,-78.5,0,0,-0.00547727 -4875,5716:489:4,-169.5,-78.5,0,0,-0.0054785 -4876,5716:489:3,-169,-78.5,0,0,-0.0054785 -4877,5716:488:4,-168.5,-78.5,0,0,-0.0054785 -4878,5716:488:3,-168,-78.5,0,0,-0.00547972 -4879,5716:487:4,-167.5,-78.5,0,0,-0.00547972 -4880,5716:487:3,-167,-78.5,0,0,-0.00548091 -4881,5716:486:4,-166.5,-78.5,0,0,-0.00548091 -4882,5716:486:3,-166,-78.5,0,0,-0.00547972 -4883,5716:485:4,-165.5,-78.5,0,0,-0.00547972 -4884,5716:485:3,-165,-78.5,0,0,-0.00547972 -4885,5716:384:4,-164.5,-78.5,0,0,-0.00547972 -4886,5716:384:3,-164,-78.5,0,0,-0.00547972 -4887,5716:383:4,-163.5,-78.5,0,0,-0.00547972 -4888,5716:383:3,-163,-78.5,0,0,-0.00548091 -4889,5716:382:4,-162.5,-78.5,0,0,-0.00548091 -4890,5716:382:3,-162,-78.5,0,0,-0.00548091 -4891,5716:381:4,-161.5,-78.5,0,0,-0.00548091 -4892,5716:381:3,-161,-78.5,0,0,-0.00548214 -4893,5716:380:4,-160.5,-78.5,0,0,-0.00548337 -4894,5716:380:3,-160,-78.5,0,0,-0.00548459 -4895,5715:489:4,-159.5,-78.5,0,0,-0.00548582 -4896,5715:489:3,-159,-78.5,0,0,-0.00548582 -4897,5715:488:4,-158.5,-78.5,0,0,-0.00548701 -4898,5715:488:3,-158,-78.5,0,0,-0.00548824 -4899,5715:487:4,-157.5,-78.5,0,0,-0.00548824 -4900,5715:487:3,-157,-78.5,0,0,-0.00548701 -4901,5715:486:4,-156.5,-78.5,0,0,-0.00548701 -4902,5715:486:3,-156,-78.5,0,0,-0.00548824 -4903,5715:485:4,-155.5,-78.5,0,0,-0.00548947 -4904,5715:485:3,-155,-78.5,0,0,-0.00548947 -4905,5715:384:4,-154.5,-78.5,0,0,-0.00548701 -4906,5715:384:3,-154,-78.5,0,0,-0.00548701 -4907,5715:383:4,-153.5,-78.5,0,0,-0.00548824 -4908,5715:383:3,-153,-78.5,0,0,-0.00548947 -4909,5715:382:4,-152.5,-78.5,0,0,-0.00548947 -4910,5715:382:3,-152,-78.5,0,0,-0.00548824 -4911,5715:381:4,-151.5,-78.5,0,0,-0.00548582 -4912,5715:381:3,-151,-78.5,0,0,-0.00548582 -4913,5715:380:4,-150.5,-78.5,0,0,-0.00548582 -4914,5715:380:3,-150,-78.5,0,0,-0.00548582 -4915,5714:489:4,-149.5,-78.5,0,0,-0.00548582 -4916,5714:489:3,-149,-78.5,0,0,-0.00548459 -4917,5714:488:4,-148.5,-78.5,0,0,-0.00548459 -4918,5714:488:3,-148,-78.5,0,0,-0.00548459 -4919,5714:487:4,-147.5,-78.5,0,0,-0.00548459 -4920,5714:487:3,-147,-78.5,0,0,-0.00548337 -4921,5714:486:4,-146.5,-78.5,0,0,-0.00548337 -4922,5714:486:3,-146,-78.5,0,0,-0.00548214 -4923,5714:485:4,-145.5,-78.5,0,0,-0.00548214 -4924,5714:485:3,-145,-78.5,0,0,-0.00548214 -4925,5714:384:4,-144.5,-78.5,0,0,-0.00548091 -4926,5714:384:3,-144,-78.5,0,0,-0.00548091 -4927,5714:383:4,-143.5,-78.5,0,0,-0.00548091 -4928,5714:383:3,-143,-78.5,0,0,-0.00548214 -4929,5714:382:4,-142.5,-78.5,0,0,-0.00548214 -4930,5714:382:3,-142,-78.5,0,0,-0.00548091 -4931,5714:381:4,-141.5,-78.5,0,0,-0.00547972 -4932,5714:381:3,-141,-78.5,0,0,-0.00548091 -4933,5714:380:4,-140.5,-78.5,0,0,-0.00548091 -4934,5714:380:3,-140,-78.5,0,0,-0.00548214 -4935,5713:489:4,-139.5,-78.5,0,0,-0.00548214 -4936,5713:489:3,-139,-78.5,0,0,-0.00548214 -4937,5713:488:4,-138.5,-78.5,0,0,-0.00548214 -4938,5713:488:3,-138,-78.5,0,0,-0.00548337 -4939,5713:487:4,-137.5,-78.5,0,0,-0.00548947 -4940,5713:487:3,-137,-78.5,0,0,-0.00550777 -4941,5713:486:4,-136.5,-78.5,0,0,-0.005536 -4942,5713:486:3,-136,-78.5,0,0,-0.00560158 -4943,5713:485:4,-135.5,-78.5,0,0,-0.00584441 -4944,5713:485:3,-135,-78.5,0,0,-0.00592286 -4945,5713:384:4,-134.5,-78.5,0,0,-0.00591106 -4946,5713:384:3,-134,-78.5,0,0,-0.00596912 -4947,5711:380:3,-110,-78.5,0,0,-0.00698226 -4948,5710:489:4,-109.5,-78.5,0,0,-0.00750095 -4949,5710:489:3,-109,-78.5,0,0,-0.00796395 -4950,5710:488:4,-108.5,-78.5,0,0,-0.00791092 -4951,5710:486:3,-106,-78.5,0,0,-0.005619 -4952,5710:485:4,-105.5,-78.5,0,0,-0.00555077 -4953,5710:485:3,-105,-78.5,0,0,-0.00552617 -4954,5710:384:4,-104.5,-78.5,0,0,-0.0055446 -4955,5710:384:3,-104,-78.5,0,0,-0.00578243 -4956,5710:383:4,-103.5,-78.5,0,0,-0.00623081 -4957,5710:383:3,-103,-78.5,0,0,-0.0065446 -4958,5710:382:4,-102.5,-78.5,0,0,-0.00661925 -4959,5706:381:4,-61.5,-78.5,0,0,-0.00552861 -4960,5706:381:3,-61,-78.5,0,0,-0.00552127 -4961,5706:380:4,-60.5,-78.5,0,0,-0.00550288 -4962,5706:380:3,-60,-78.5,0,0,-0.00548947 -4963,5705:489:4,-59.5,-78.5,0,0,-0.0054785 -4964,5705:489:3,-59,-78.5,0,0,-0.00546511 -4965,5705:488:4,-58.5,-78.5,0,0,-0.00545541 -4966,5705:488:3,-58,-78.5,0,0,-0.005453 -4967,5705:487:4,-57.5,-78.5,0,0,-0.00545179 -4968,5705:487:3,-57,-78.5,0,0,-0.00545057 -4969,5705:486:4,-56.5,-78.5,0,0,-0.00544935 -4970,5705:486:3,-56,-78.5,0,0,-0.00544935 -4971,5705:485:4,-55.5,-78.5,0,0,-0.00544935 -4972,5705:485:3,-55,-78.5,0,0,-0.00545057 -4973,5705:384:4,-54.5,-78.5,0,0,-0.00545057 -4974,5705:384:3,-54,-78.5,0,0,-0.00545057 -4975,5705:383:4,-53.5,-78.5,0,0,-0.00545057 -4976,5705:383:3,-53,-78.5,0,0,-0.00545179 -4977,5705:382:4,-52.5,-78.5,0,0,-0.005453 -4978,5705:382:3,-52,-78.5,0,0,-0.00545423 -4979,5705:381:4,-51.5,-78.5,0,0,-0.00545423 -4980,5705:381:3,-51,-78.5,0,0,-0.00545541 -4981,5705:380:4,-50.5,-78.5,0,0,-0.00545541 -4982,5705:380:3,-50,-78.5,0,0,-0.00545541 -4983,5704:489:4,-49.5,-78.5,0,0,-0.00545541 -4984,5704:489:3,-49,-78.5,0,0,-0.00545541 -4985,5704:488:4,-48.5,-78.5,0,0,-0.00545423 -4986,5704:488:3,-48,-78.5,0,0,-0.005453 -4987,5704:487:4,-47.5,-78.5,0,0,-0.005453 -4988,5704:487:3,-47,-78.5,0,0,-0.00545663 -4989,5704:486:4,-46.5,-78.5,0,0,-0.00545907 -4990,5704:486:3,-46,-78.5,0,0,-0.00546148 -4991,5704:485:4,-45.5,-78.5,0,0,-0.00546392 -4992,5704:485:3,-45,-78.5,0,0,-0.00546633 -4993,5704:384:4,-44.5,-78.5,0,0,-0.00546511 -4994,5704:384:3,-44,-78.5,0,0,-0.00546511 -4995,5704:383:4,-43.5,-78.5,0,0,-0.00546511 -4996,5704:383:3,-43,-78.5,0,0,-0.00546511 -4997,5704:382:4,-42.5,-78.5,0,0,-0.00546392 -4998,5704:382:3,-42,-78.5,0,0,-0.00546392 -4999,5704:381:4,-41.5,-78.5,0,0,-0.00546511 -5000,5704:381:3,-41,-78.5,0,0,-0.00546511 -5001,5704:380:4,-40.5,-78.5,0,0,-0.00546633 -5002,5704:380:3,-40,-78.5,0,0,-0.00546755 -5003,5703:489:4,-39.5,-78.5,0,0,-0.00546755 -5004,5703:489:3,-39,-78.5,0,0,-0.00546755 -5005,5703:488:4,-38.5,-78.5,0,0,-0.00546755 -5006,5703:488:3,-38,-78.5,0,0,-0.00546755 -5007,5703:487:4,-37.5,-78.5,0,0,-0.00546878 -5008,5703:487:3,-37,-78.5,0,0,-0.00546755 -5009,5703:486:4,-36.5,-78.5,0,0,-0.00546755 -5010,5703:486:3,-36,-78.5,0,0,-0.00546755 -5011,5703:485:4,-35.5,-78.5,0,0,-0.00546755 -5012,5703:485:3,-35,-78.5,0,0,-0.00546878 -5013,5703:384:4,-34.5,-78.5,0,0,-0.00546878 -5014,5703:384:3,-34,-78.5,0,0,-0.00546755 -5015,5703:383:4,-33.5,-78.5,0,0,-0.00546755 -5016,5703:383:3,-33,-78.5,0,0,-0.00546755 -5017,5703:382:4,-32.5,-78.5,0,0,-0.00546878 -5018,5703:382:3,-32,-78.5,0,0,-0.00546878 -5019,5703:381:4,-31.5,-78.5,0,0,-0.00546878 -5020,5703:381:3,-31,-78.5,0,0,-0.00547 -5021,5703:380:4,-30.5,-78.5,0,0,-0.00546878 -5022,5703:380:3,-30,-78.5,0,0,-0.00547 -5023,5702:489:4,-29.5,-78.5,0,0,-0.00547119 -5024,5702:489:3,-29,-78.5,0,0,-0.00547 -5025,5702:488:4,-28.5,-78.5,0,0,-0.00546878 -5026,5702:488:3,-28,-78.5,0,0,-0.00546755 -5027,5702:487:4,-27.5,-78.5,0,0,-0.00546633 -5028,5702:487:3,-27,-78.5,0,0,-0.00546511 -5029,5702:486:4,-26.5,-78.5,0,0,-0.00553848 -5030,5702:486:3,-26,-78.5,0,0,-0.00565409 -5031,5702:485:4,-25.5,-78.5,0,0,-0.00561402 -5032,5702:485:3,-25,-78.5,0,0,-0.00557672 -5033,5702:384:4,-24.5,-78.5,0,0,-0.00581851 -5034,5702:384:3,-24,-78.5,0,0,-0.00615781 -5035,3716:485:4,165.5,-78.5,0,0,-0.0055225 -5036,3716:486:3,166,-78.5,0,0,-0.00550411 -5037,3716:486:4,166.5,-78.5,0,0,-0.00548091 -5038,3716:487:3,167,-78.5,0,0,-0.00547241 -5039,3716:487:4,167.5,-78.5,0,0,-0.00546633 -5040,3716:488:3,168,-78.5,0,0,-0.00545907 -5041,3716:488:4,168.5,-78.5,0,0,-0.00545057 -5042,3716:489:3,169,-78.5,0,0,-0.00544451 -5043,3716:489:4,169.5,-78.5,0,0,-0.00544211 -5044,3717:380:3,170,-78.5,0,0,-0.00544333 -5045,3717:380:4,170.5,-78.5,0,0,-0.00544333 -5046,3717:381:3,171,-78.5,0,0,-0.00544089 -5047,3717:381:4,171.5,-78.5,0,0,-0.00569445 -5048,3717:382:3,172,-78.5,0,0,-0.00650255 -5049,3717:382:4,172.5,-78.5,0,0,-0.00744774 -5050,3717:383:3,173,-78.5,0,0,-0.00792146 -5051,3717:383:4,173.5,-78.5,0,0,-0.00790914 -5052,3717:384:3,174,-78.5,0,0,-0.00786525 -5053,3717:384:4,174.5,-78.5,0,0,-0.00783724 -5054,3717:485:3,175,-78.5,0,0,-0.00782681 -5055,3717:485:4,175.5,-78.5,0,0,-0.00778162 -5056,3717:486:3,176,-78.5,0,0,-0.00760351 -5057,3717:486:4,176.5,-78.5,0,0,-0.00631868 -5058,3717:487:3,177,-78.5,0,0,-0.00551024 -5059,3717:487:4,177.5,-78.5,0,0,-0.00544089 -5060,3717:488:3,178,-78.5,0,0,-0.00544211 -5061,3717:488:4,178.5,-78.5,0,0,-0.00544816 -5062,3717:489:3,179,-78.5,0,0,-0.005453 -5063,3717:489:4,179.5,-78.5,0,0,-0.00545663 -5064,3718:380:3,180,-78.5,0,0,-0.00546026 -5065,5718:380:1,-180,-78,0,0,-0.00546026 -5066,5717:489:2,-179.5,-78,0,0,-0.00546392 -5067,5717:489:1,-179,-78,0,0,-0.00546511 -5068,5717:488:2,-178.5,-78,0,0,-0.00546392 -5069,5717:488:1,-178,-78,0,0,-0.00546511 -5070,5717:487:2,-177.5,-78,0,0,-0.00546633 -5071,5717:487:1,-177,-78,0,0,-0.00546878 -5072,5717:486:2,-176.5,-78,0,0,-0.00547 -5073,5717:486:1,-176,-78,0,0,-0.00547 -5074,5717:485:2,-175.5,-78,0,0,-0.00547119 -5075,5717:485:1,-175,-78,0,0,-0.00547119 -5076,5717:384:2,-174.5,-78,0,0,-0.00547241 -5077,5717:384:1,-174,-78,0,0,-0.00547364 -5078,5717:383:2,-173.5,-78,0,0,-0.00547364 -5079,5717:383:1,-173,-78,0,0,-0.00547486 -5080,5717:382:2,-172.5,-78,0,0,-0.00547486 -5081,5717:382:1,-172,-78,0,0,-0.00547605 -5082,5717:381:2,-171.5,-78,0,0,-0.00547605 -5083,5717:381:1,-171,-78,0,0,-0.00547605 -5084,5717:380:2,-170.5,-78,0,0,-0.00547727 -5085,5717:380:1,-170,-78,0,0,-0.00547727 -5086,5716:489:2,-169.5,-78,0,0,-0.0054785 -5087,5716:489:1,-169,-78,0,0,-0.0054785 -5088,5716:488:2,-168.5,-78,0,0,-0.0054785 -5089,5716:488:1,-168,-78,0,0,-0.00547972 -5090,5716:487:2,-167.5,-78,0,0,-0.00547972 -5091,5716:487:1,-167,-78,0,0,-0.00548091 -5092,5716:486:2,-166.5,-78,0,0,-0.00548091 -5093,5716:486:1,-166,-78,0,0,-0.00547972 -5094,5716:485:2,-165.5,-78,0,0,-0.00547972 -5095,5716:485:1,-165,-78,0,0,-0.00547972 -5096,5716:384:2,-164.5,-78,0,0,-0.00547972 -5097,5716:384:1,-164,-78,0,0,-0.00547972 -5098,5716:383:2,-163.5,-78,0,0,-0.00547972 -5099,5716:383:1,-163,-78,0,0,-0.00548091 -5100,5716:382:2,-162.5,-78,0,0,-0.00548091 -5101,5716:382:1,-162,-78,0,0,-0.00548091 -5102,5716:381:2,-161.5,-78,0,0,-0.00548091 -5103,5716:381:1,-161,-78,0,0,-0.00548214 -5104,5716:380:2,-160.5,-78,0,0,-0.00548337 -5105,5716:380:1,-160,-78,0,0,-0.00548459 -5106,5715:489:2,-159.5,-78,0,0,-0.00548582 -5107,5715:489:1,-159,-78,0,0,-0.00548582 -5108,5715:488:2,-158.5,-78,0,0,-0.00548701 -5109,5715:488:1,-158,-78,0,0,-0.00548824 -5110,5715:487:2,-157.5,-78,0,0,-0.00548824 -5111,5715:487:1,-157,-78,0,0,-0.00548701 -5112,5715:486:2,-156.5,-78,0,0,-0.00548701 -5113,5715:486:1,-156,-78,0,0,-0.00548824 -5114,5715:485:2,-155.5,-78,0,0,-0.00548947 -5115,5715:485:1,-155,-78,0,0,-0.00548947 -5116,5715:384:2,-154.5,-78,0,0,-0.00548701 -5117,5715:384:1,-154,-78,0,0,-0.00548701 -5118,5715:383:2,-153.5,-78,0,0,-0.00548824 -5119,5715:383:1,-153,-78,0,0,-0.00548947 -5120,5715:382:2,-152.5,-78,0,0,-0.00548947 -5121,5715:382:1,-152,-78,0,0,-0.00548824 -5122,5715:381:2,-151.5,-78,0,0,-0.00548582 -5123,5715:381:1,-151,-78,0,0,-0.00548582 -5124,5715:380:2,-150.5,-78,0,0,-0.00548582 -5125,5715:380:1,-150,-78,0,0,-0.00548582 -5126,5714:489:2,-149.5,-78,0,0,-0.00548582 -5127,5714:489:1,-149,-78,0,0,-0.00548459 -5128,5714:488:2,-148.5,-78,0,0,-0.00548459 -5129,5714:488:1,-148,-78,0,0,-0.00548459 -5130,5714:487:2,-147.5,-78,0,0,-0.00548459 -5131,5714:487:1,-147,-78,0,0,-0.00548337 -5132,5714:486:2,-146.5,-78,0,0,-0.00548337 -5133,5714:486:1,-146,-78,0,0,-0.00548214 -5134,5714:485:2,-145.5,-78,0,0,-0.00548214 -5135,5714:485:1,-145,-78,0,0,-0.00548214 -5136,5714:384:2,-144.5,-78,0,0,-0.00548091 -5137,5714:384:1,-144,-78,0,0,-0.00548091 -5138,5714:383:2,-143.5,-78,0,0,-0.00548091 -5139,5714:383:1,-143,-78,0,0,-0.00548214 -5140,5714:382:2,-142.5,-78,0,0,-0.00548214 -5141,5714:382:1,-142,-78,0,0,-0.00548091 -5142,5714:381:2,-141.5,-78,0,0,-0.00547972 -5143,5714:381:1,-141,-78,0,0,-0.00548091 -5144,5714:380:2,-140.5,-78,0,0,-0.00548091 -5145,5714:380:1,-140,-78,0,0,-0.00548214 -5146,5713:489:2,-139.5,-78,0,0,-0.00548214 -5147,5713:489:1,-139,-78,0,0,-0.00548214 -5148,5713:488:2,-138.5,-78,0,0,-0.00548214 -5149,5713:488:1,-138,-78,0,0,-0.00548337 -5150,5713:487:2,-137.5,-78,0,0,-0.00548947 -5151,5713:487:1,-137,-78,0,0,-0.00550777 -5152,5713:486:2,-136.5,-78,0,0,-0.005536 -5153,5713:486:1,-136,-78,0,0,-0.00560158 -5154,5713:485:2,-135.5,-78,0,0,-0.00584441 -5155,5713:485:1,-135,-78,0,0,-0.00592286 -5156,5713:384:2,-134.5,-78,0,0,-0.00591106 -5157,5713:384:1,-134,-78,0,0,-0.00596912 -5158,5711:380:1,-110,-78,0,0,-0.00698226 -5159,5710:489:2,-109.5,-78,0,0,-0.00750095 -5160,5710:489:1,-109,-78,0,0,-0.00796395 -5161,5710:488:2,-108.5,-78,0,0,-0.00791092 -5162,5710:486:1,-106,-78,0,0,-0.005619 -5163,5710:485:2,-105.5,-78,0,0,-0.00555077 -5164,5710:485:1,-105,-78,0,0,-0.00552617 -5165,5710:384:2,-104.5,-78,0,0,-0.0055446 -5166,5710:384:1,-104,-78,0,0,-0.00578243 -5167,5710:383:2,-103.5,-78,0,0,-0.00623081 -5168,5710:383:1,-103,-78,0,0,-0.0065446 -5169,5710:382:2,-102.5,-78,0,0,-0.00661925 -5170,5706:381:2,-61.5,-78,0,0,-0.00552861 -5171,5706:381:1,-61,-78,0,0,-0.00552127 -5172,5706:380:2,-60.5,-78,0,0,-0.00550288 -5173,5706:380:1,-60,-78,0,0,-0.00548947 -5174,5705:489:2,-59.5,-78,0,0,-0.0054785 -5175,5705:489:1,-59,-78,0,0,-0.00546511 -5176,5705:488:2,-58.5,-78,0,0,-0.00545541 -5177,5705:488:1,-58,-78,0,0,-0.005453 -5178,5705:487:2,-57.5,-78,0,0,-0.00545179 -5179,5705:487:1,-57,-78,0,0,-0.00545057 -5180,5705:486:2,-56.5,-78,0,0,-0.00544935 -5181,5705:486:1,-56,-78,0,0,-0.00544935 -5182,5705:485:2,-55.5,-78,0,0,-0.00544935 -5183,5705:485:1,-55,-78,0,0,-0.00545057 -5184,5705:384:2,-54.5,-78,0,0,-0.00545057 -5185,5705:384:1,-54,-78,0,0,-0.00545057 -5186,5705:383:2,-53.5,-78,0,0,-0.00545057 -5187,5705:383:1,-53,-78,0,0,-0.00545179 -5188,5705:382:2,-52.5,-78,0,0,-0.005453 -5189,5705:382:1,-52,-78,0,0,-0.00545423 -5190,5705:381:2,-51.5,-78,0,0,-0.00545423 -5191,5705:381:1,-51,-78,0,0,-0.00545541 -5192,5705:380:2,-50.5,-78,0,0,-0.00545541 -5193,5705:380:1,-50,-78,0,0,-0.00545541 -5194,5704:489:2,-49.5,-78,0,0,-0.00545541 -5195,5704:489:1,-49,-78,0,0,-0.00545541 -5196,5704:488:2,-48.5,-78,0,0,-0.00545423 -5197,5704:488:1,-48,-78,0,0,-0.005453 -5198,5704:487:2,-47.5,-78,0,0,-0.005453 -5199,5704:487:1,-47,-78,0,0,-0.00545663 -5200,5704:486:2,-46.5,-78,0,0,-0.00545907 -5201,5704:486:1,-46,-78,0,0,-0.00546148 -5202,5704:485:2,-45.5,-78,0,0,-0.00546392 -5203,5704:485:1,-45,-78,0,0,-0.00546633 -5204,5704:384:2,-44.5,-78,0,0,-0.00546511 -5205,5704:384:1,-44,-78,0,0,-0.00546511 -5206,5704:383:2,-43.5,-78,0,0,-0.00546511 -5207,5704:383:1,-43,-78,0,0,-0.00546511 -5208,5704:382:2,-42.5,-78,0,0,-0.00546392 -5209,5704:382:1,-42,-78,0,0,-0.00546392 -5210,5704:381:2,-41.5,-78,0,0,-0.00546511 -5211,5704:381:1,-41,-78,0,0,-0.00546511 -5212,5704:380:2,-40.5,-78,0,0,-0.00546633 -5213,5704:380:1,-40,-78,0,0,-0.00546755 -5214,5703:489:2,-39.5,-78,0,0,-0.00546755 -5215,5703:489:1,-39,-78,0,0,-0.00546755 -5216,5703:488:2,-38.5,-78,0,0,-0.00546755 -5217,5703:488:1,-38,-78,0,0,-0.00546755 -5218,5703:487:2,-37.5,-78,0,0,-0.00546878 -5219,5703:487:1,-37,-78,0,0,-0.00546755 -5220,5703:486:2,-36.5,-78,0,0,-0.00546755 -5221,5703:486:1,-36,-78,0,0,-0.00546755 -5222,5703:485:2,-35.5,-78,0,0,-0.00546755 -5223,5703:485:1,-35,-78,0,0,-0.00546878 -5224,5703:384:2,-34.5,-78,0,0,-0.00546878 -5225,5703:384:1,-34,-78,0,0,-0.00546755 -5226,5703:383:2,-33.5,-78,0,0,-0.00546755 -5227,5703:383:1,-33,-78,0,0,-0.00546755 -5228,5703:382:2,-32.5,-78,0,0,-0.00546878 -5229,5703:382:1,-32,-78,0,0,-0.00546878 -5230,5703:381:2,-31.5,-78,0,0,-0.00546878 -5231,5703:381:1,-31,-78,0,0,-0.00547 -5232,5703:380:2,-30.5,-78,0,0,-0.00546878 -5233,5703:380:1,-30,-78,0,0,-0.00547 -5234,5702:489:2,-29.5,-78,0,0,-0.00547119 -5235,5702:489:1,-29,-78,0,0,-0.00547 -5236,5702:488:2,-28.5,-78,0,0,-0.00546878 -5237,5702:488:1,-28,-78,0,0,-0.00546755 -5238,5702:487:2,-27.5,-78,0,0,-0.00546633 -5239,5702:487:1,-27,-78,0,0,-0.00546511 -5240,5702:486:2,-26.5,-78,0,0,-0.00553848 -5241,5702:486:1,-26,-78,0,0,-0.00565409 -5242,5702:485:2,-25.5,-78,0,0,-0.00561402 -5243,5702:485:1,-25,-78,0,0,-0.00557672 -5244,5702:384:2,-24.5,-78,0,0,-0.00581851 -5245,5702:384:1,-24,-78,0,0,-0.00615781 -5246,3716:485:2,165.5,-78,0,0,-0.0055225 -5247,3716:486:1,166,-78,0,0,-0.00550411 -5248,3716:486:2,166.5,-78,0,0,-0.00548091 -5249,3716:487:1,167,-78,0,0,-0.00547241 -5250,3716:487:2,167.5,-78,0,0,-0.00546633 -5251,3716:488:1,168,-78,0,0,-0.00545907 -5252,3716:488:2,168.5,-78,0,0,-0.00545057 -5253,3716:489:1,169,-78,0,0,-0.00544451 -5254,3716:489:2,169.5,-78,0,0,-0.00544211 -5255,3717:380:1,170,-78,0,0,-0.00544333 -5256,3717:380:2,170.5,-78,0,0,-0.00544333 -5257,3717:381:1,171,-78,0,0,-0.00544089 -5258,3717:381:2,171.5,-78,0,0,-0.00569445 -5259,3717:382:1,172,-78,0,0,-0.00650255 -5260,3717:382:2,172.5,-78,0,0,-0.00744774 -5261,3717:383:1,173,-78,0,0,-0.00792146 -5262,3717:383:2,173.5,-78,0,0,-0.00790914 -5263,3717:384:1,174,-78,0,0,-0.00786525 -5264,3717:384:2,174.5,-78,0,0,-0.00783724 -5265,3717:485:1,175,-78,0,0,-0.00782681 -5266,3717:485:2,175.5,-78,0,0,-0.00778162 -5267,3717:486:1,176,-78,0,0,-0.00760351 -5268,3717:486:2,176.5,-78,0,0,-0.00631868 -5269,3717:487:1,177,-78,0,0,-0.00551024 -5270,3717:487:2,177.5,-78,0,0,-0.00544089 -5271,3717:488:1,178,-78,0,0,-0.00544211 -5272,3717:488:2,178.5,-78,0,0,-0.00544816 -5273,3717:489:1,179,-78,0,0,-0.005453 -5274,3717:489:2,179.5,-78,0,0,-0.00545663 -5275,3718:380:1,180,-78,0,0,-0.00546026 -5276,5718:370:3,-180,-77.5,0,0,-0.00546026 -5277,5717:479:4,-179.5,-77.5,0,0,-0.00546392 -5278,5717:479:3,-179,-77.5,0,0,-0.00546511 -5279,5717:478:4,-178.5,-77.5,0,0,-0.00546392 -5280,5717:478:3,-178,-77.5,0,0,-0.00546511 -5281,5717:477:4,-177.5,-77.5,0,0,-0.00546633 -5282,5717:477:3,-177,-77.5,0,0,-0.00546878 -5283,5717:476:4,-176.5,-77.5,0,0,-0.00547 -5284,5717:476:3,-176,-77.5,0,0,-0.00547 -5285,5717:475:4,-175.5,-77.5,0,0,-0.00547119 -5286,5717:475:3,-175,-77.5,0,0,-0.00547119 -5287,5717:374:4,-174.5,-77.5,0,0,-0.00547241 -5288,5717:374:3,-174,-77.5,0,0,-0.00547364 -5289,5717:373:4,-173.5,-77.5,0,0,-0.00547364 -5290,5717:373:3,-173,-77.5,0,0,-0.00547486 -5291,5717:372:4,-172.5,-77.5,0,0,-0.00547486 -5292,5717:372:3,-172,-77.5,0,0,-0.00547605 -5293,5717:371:4,-171.5,-77.5,0,0,-0.00547605 -5294,5717:371:3,-171,-77.5,0,0,-0.00547605 -5295,5717:370:4,-170.5,-77.5,0,0,-0.00547727 -5296,5717:370:3,-170,-77.5,0,0,-0.00547727 -5297,5716:479:4,-169.5,-77.5,0,0,-0.0054785 -5298,5716:479:3,-169,-77.5,0,0,-0.0054785 -5299,5716:478:4,-168.5,-77.5,0,0,-0.0054785 -5300,5716:478:3,-168,-77.5,0,0,-0.00547972 -5301,5716:477:4,-167.5,-77.5,0,0,-0.00547972 -5302,5716:477:3,-167,-77.5,0,0,-0.00548091 -5303,5716:476:4,-166.5,-77.5,0,0,-0.00548091 -5304,5716:476:3,-166,-77.5,0,0,-0.00547972 -5305,5716:475:4,-165.5,-77.5,0,0,-0.00547972 -5306,5716:475:3,-165,-77.5,0,0,-0.00547972 -5307,5716:374:4,-164.5,-77.5,0,0,-0.00547972 -5308,5716:374:3,-164,-77.5,0,0,-0.00547972 -5309,5716:373:4,-163.5,-77.5,0,0,-0.00547972 -5310,5716:373:3,-163,-77.5,0,0,-0.00548091 -5311,5716:372:4,-162.5,-77.5,0,0,-0.00548091 -5312,5716:372:3,-162,-77.5,0,0,-0.00548091 -5313,5716:371:4,-161.5,-77.5,0,0,-0.00548091 -5314,5716:371:3,-161,-77.5,0,0,-0.00548214 -5315,5716:370:4,-160.5,-77.5,0,0,-0.00548337 -5316,5716:370:3,-160,-77.5,0,0,-0.00548459 -5317,5715:479:4,-159.5,-77.5,0,0,-0.00548582 -5318,5715:479:3,-159,-77.5,0,0,-0.00548582 -5319,5715:478:4,-158.5,-77.5,0,0,-0.00548701 -5320,5715:478:3,-158,-77.5,0,0,-0.00548824 -5321,5715:477:4,-157.5,-77.5,0,0,-0.00548824 -5322,5715:477:3,-157,-77.5,0,0,-0.00548701 -5323,5715:476:4,-156.5,-77.5,0,0,-0.00548701 -5324,5715:476:3,-156,-77.5,0,0,-0.00548824 -5325,5715:475:4,-155.5,-77.5,0,0,-0.00548947 -5326,5715:475:3,-155,-77.5,0,0,-0.00548947 -5327,5715:374:4,-154.5,-77.5,0,0,-0.00548701 -5328,5715:374:3,-154,-77.5,0,0,-0.00548701 -5329,5715:373:4,-153.5,-77.5,0,0,-0.00548824 -5330,5715:373:3,-153,-77.5,0,0,-0.00548947 -5331,5715:372:4,-152.5,-77.5,0,0,-0.00548947 -5332,5715:372:3,-152,-77.5,0,0,-0.00548824 -5333,5715:371:4,-151.5,-77.5,0,0,-0.00548582 -5334,5715:371:3,-151,-77.5,0,0,-0.00548582 -5335,5715:370:4,-150.5,-77.5,0,0,-0.00548582 -5336,5715:370:3,-150,-77.5,0,0,-0.00548582 -5337,5714:479:4,-149.5,-77.5,0,0,-0.00548582 -5338,5714:479:3,-149,-77.5,0,0,-0.00548459 -5339,5714:478:4,-148.5,-77.5,0,0,-0.00548459 -5340,5714:478:3,-148,-77.5,0,0,-0.00548459 -5341,5714:477:4,-147.5,-77.5,0,0,-0.00548459 -5342,5714:477:3,-147,-77.5,0,0,-0.00548337 -5343,5714:476:4,-146.5,-77.5,0,0,-0.00548337 -5344,5714:476:3,-146,-77.5,0,0,-0.00548214 -5345,5714:475:4,-145.5,-77.5,0,0,-0.00548214 -5346,5714:475:3,-145,-77.5,0,0,-0.00548214 -5347,5714:374:4,-144.5,-77.5,0,0,-0.00548091 -5348,5714:374:3,-144,-77.5,0,0,-0.00548091 -5349,5714:373:4,-143.5,-77.5,0,0,-0.00548091 -5350,5714:373:3,-143,-77.5,0,0,-0.00548214 -5351,5714:372:4,-142.5,-77.5,0,0,-0.00548214 -5352,5714:372:3,-142,-77.5,0,0,-0.00548091 -5353,5714:371:4,-141.5,-77.5,0,0,-0.00547972 -5354,5714:371:3,-141,-77.5,0,0,-0.00548091 -5355,5714:370:4,-140.5,-77.5,0,0,-0.00548091 -5356,5714:370:3,-140,-77.5,0,0,-0.00548214 -5357,5713:479:4,-139.5,-77.5,0,0,-0.00548214 -5358,5713:479:3,-139,-77.5,0,0,-0.00548214 -5359,5713:478:4,-138.5,-77.5,0,0,-0.00548214 -5360,5713:478:3,-138,-77.5,0,0,-0.00548337 -5361,5713:477:4,-137.5,-77.5,0,0,-0.00548947 -5362,5713:477:3,-137,-77.5,0,0,-0.00550777 -5363,5713:476:4,-136.5,-77.5,0,0,-0.005536 -5364,5713:476:3,-136,-77.5,0,0,-0.00560158 -5365,5713:475:4,-135.5,-77.5,0,0,-0.00584441 -5366,5713:475:3,-135,-77.5,0,0,-0.00592286 -5367,5713:374:4,-134.5,-77.5,0,0,-0.00591106 -5368,5713:374:3,-134,-77.5,0,0,-0.00596912 -5369,5711:370:3,-110,-77.5,0,0,-0.00698226 -5370,5710:479:4,-109.5,-77.5,0,0,-0.00750095 -5371,5710:479:3,-109,-77.5,0,0,-0.00796395 -5372,5710:478:4,-108.5,-77.5,0,0,-0.00791092 -5373,5710:476:3,-106,-77.5,0,0,-0.005619 -5374,5710:475:4,-105.5,-77.5,0,0,-0.00555077 -5375,5710:475:3,-105,-77.5,0,0,-0.00552617 -5376,5710:374:4,-104.5,-77.5,0,0,-0.0055446 -5377,5710:374:3,-104,-77.5,0,0,-0.00578243 -5378,5710:373:4,-103.5,-77.5,0,0,-0.00623081 -5379,5710:373:3,-103,-77.5,0,0,-0.0065446 -5380,5710:372:4,-102.5,-77.5,0,0,-0.00661925 -5381,5706:371:4,-61.5,-77.5,0,0,-0.00552861 -5382,5706:371:3,-61,-77.5,0,0,-0.00552127 -5383,5706:370:4,-60.5,-77.5,0,0,-0.00550288 -5384,5706:370:3,-60,-77.5,0,0,-0.00548947 -5385,5705:479:4,-59.5,-77.5,0,0,-0.0054785 -5386,5705:479:3,-59,-77.5,0,0,-0.00546511 -5387,5705:478:4,-58.5,-77.5,0,0,-0.00545541 -5388,5705:478:3,-58,-77.5,0,0,-0.005453 -5389,5705:477:4,-57.5,-77.5,0,0,-0.00545179 -5390,5705:477:3,-57,-77.5,0,0,-0.00545057 -5391,5705:476:4,-56.5,-77.5,0,0,-0.00544935 -5392,5705:476:3,-56,-77.5,0,0,-0.00544935 -5393,5705:475:4,-55.5,-77.5,0,0,-0.00544935 -5394,5705:475:3,-55,-77.5,0,0,-0.00545057 -5395,5705:374:4,-54.5,-77.5,0,0,-0.00545057 -5396,5705:374:3,-54,-77.5,0,0,-0.00545057 -5397,5705:373:4,-53.5,-77.5,0,0,-0.00545057 -5398,5705:373:3,-53,-77.5,0,0,-0.00545179 -5399,5705:372:4,-52.5,-77.5,0,0,-0.005453 -5400,5705:372:3,-52,-77.5,0,0,-0.00545423 -5401,5705:371:4,-51.5,-77.5,0,0,-0.00545423 -5402,5705:371:3,-51,-77.5,0,0,-0.00545541 -5403,5705:370:4,-50.5,-77.5,0,0,-0.00545541 -5404,5705:370:3,-50,-77.5,0,0,-0.00545541 -5405,5704:479:4,-49.5,-77.5,0,0,-0.00545541 -5406,5704:479:3,-49,-77.5,0,0,-0.00545541 -5407,5704:478:4,-48.5,-77.5,0,0,-0.00545423 -5408,5704:478:3,-48,-77.5,0,0,-0.005453 -5409,5704:477:4,-47.5,-77.5,0,0,-0.005453 -5410,5704:477:3,-47,-77.5,0,0,-0.00545663 -5411,5704:476:4,-46.5,-77.5,0,0,-0.00545907 -5412,5704:476:3,-46,-77.5,0,0,-0.00546148 -5413,5704:475:4,-45.5,-77.5,0,0,-0.00546392 -5414,5704:475:3,-45,-77.5,0,0,-0.00546633 -5415,5704:374:4,-44.5,-77.5,0,0,-0.00546511 -5416,5704:374:3,-44,-77.5,0,0,-0.00546511 -5417,5704:373:4,-43.5,-77.5,0,0,-0.00546511 -5418,5704:373:3,-43,-77.5,0,0,-0.00546511 -5419,5704:372:4,-42.5,-77.5,0,0,-0.00546392 -5420,5704:372:3,-42,-77.5,0,0,-0.00546392 -5421,5704:371:4,-41.5,-77.5,0,0,-0.00546511 -5422,5704:371:3,-41,-77.5,0,0,-0.00546511 -5423,5704:370:4,-40.5,-77.5,0,0,-0.00546633 -5424,5704:370:3,-40,-77.5,0,0,-0.00546755 -5425,5703:479:4,-39.5,-77.5,0,0,-0.00546755 -5426,5703:479:3,-39,-77.5,0,0,-0.00546755 -5427,5703:478:4,-38.5,-77.5,0,0,-0.00546755 -5428,5703:478:3,-38,-77.5,0,0,-0.00546755 -5429,5703:477:4,-37.5,-77.5,0,0,-0.00546878 -5430,5703:477:3,-37,-77.5,0,0,-0.00546755 -5431,5703:476:4,-36.5,-77.5,0,0,-0.00546755 -5432,5703:476:3,-36,-77.5,0,0,-0.00546755 -5433,5703:475:4,-35.5,-77.5,0,0,-0.00546755 -5434,5703:475:3,-35,-77.5,0,0,-0.00546878 -5435,5703:374:4,-34.5,-77.5,0,0,-0.00546878 -5436,5703:374:3,-34,-77.5,0,0,-0.00546755 -5437,5703:373:4,-33.5,-77.5,0,0,-0.00546755 -5438,5703:373:3,-33,-77.5,0,0,-0.00546755 -5439,5703:372:4,-32.5,-77.5,0,0,-0.00546878 -5440,5703:372:3,-32,-77.5,0,0,-0.00546878 -5441,5703:371:4,-31.5,-77.5,0,0,-0.00546878 -5442,5703:371:3,-31,-77.5,0,0,-0.00547 -5443,5703:370:4,-30.5,-77.5,0,0,-0.00546878 -5444,5703:370:3,-30,-77.5,0,0,-0.00547 -5445,5702:479:4,-29.5,-77.5,0,0,-0.00547119 -5446,5702:479:3,-29,-77.5,0,0,-0.00547 -5447,5702:478:4,-28.5,-77.5,0,0,-0.00546878 -5448,5702:478:3,-28,-77.5,0,0,-0.00546755 -5449,5702:477:4,-27.5,-77.5,0,0,-0.00546633 -5450,5702:477:3,-27,-77.5,0,0,-0.00546511 -5451,5702:476:4,-26.5,-77.5,0,0,-0.00553848 -5452,5702:476:3,-26,-77.5,0,0,-0.00565409 -5453,5702:475:4,-25.5,-77.5,0,0,-0.00561402 -5454,5702:475:3,-25,-77.5,0,0,-0.00557672 -5455,5702:374:4,-24.5,-77.5,0,0,-0.00581851 -5456,5702:374:3,-24,-77.5,0,0,-0.00615781 -5457,3716:475:4,165.5,-77.5,0,0,-0.0055225 -5458,3716:476:3,166,-77.5,0,0,-0.00550411 -5459,3716:476:4,166.5,-77.5,0,0,-0.00548091 -5460,3716:477:3,167,-77.5,0,0,-0.00547241 -5461,3716:477:4,167.5,-77.5,0,0,-0.00546633 -5462,3716:478:3,168,-77.5,0,0,-0.00545907 -5463,3716:478:4,168.5,-77.5,0,0,-0.00545057 -5464,3716:479:3,169,-77.5,0,0,-0.00544451 -5465,3716:479:4,169.5,-77.5,0,0,-0.00544211 -5466,3717:370:3,170,-77.5,0,0,-0.00544333 -5467,3717:370:4,170.5,-77.5,0,0,-0.00544333 -5468,3717:371:3,171,-77.5,0,0,-0.00544089 -5469,3717:371:4,171.5,-77.5,0,0,-0.00569445 -5470,3717:372:3,172,-77.5,0,0,-0.00650255 -5471,3717:372:4,172.5,-77.5,0,0,-0.00744774 -5472,3717:373:3,173,-77.5,0,0,-0.00792146 -5473,3717:373:4,173.5,-77.5,0,0,-0.00790914 -5474,3717:374:3,174,-77.5,0,0,-0.00786525 -5475,3717:374:4,174.5,-77.5,0,0,-0.00783724 -5476,3717:475:3,175,-77.5,0,0,-0.00782681 -5477,3717:475:4,175.5,-77.5,0,0,-0.00778162 -5478,3717:476:3,176,-77.5,0,0,-0.00760351 -5479,3717:476:4,176.5,-77.5,0,0,-0.00631868 -5480,3717:477:3,177,-77.5,0,0,-0.00551024 -5481,3717:477:4,177.5,-77.5,0,0,-0.00544089 -5482,3717:478:3,178,-77.5,0,0,-0.00544211 -5483,3717:478:4,178.5,-77.5,0,0,-0.00544816 -5484,3717:479:3,179,-77.5,0,0,-0.005453 -5485,3717:479:4,179.5,-77.5,0,0,-0.00545663 -5486,3718:370:3,180,-77.5,0,0,-0.00546026 -5487,5718:370:1,-180,-77,0,0,-0.00546026 -5488,5717:479:2,-179.5,-77,0,0,-0.00546392 -5489,5717:479:1,-179,-77,0,0,-0.00546511 -5490,5717:478:2,-178.5,-77,0,0,-0.00546392 -5491,5717:478:1,-178,-77,0,0,-0.00546511 -5492,5717:477:2,-177.5,-77,0,0,-0.00546633 -5493,5717:477:1,-177,-77,0,0,-0.00546878 -5494,5717:476:2,-176.5,-77,0,0,-0.00547 -5495,5717:476:1,-176,-77,0,0,-0.00547 -5496,5717:475:2,-175.5,-77,0,0,-0.00547119 -5497,5717:475:1,-175,-77,0,0,-0.00547119 -5498,5717:374:2,-174.5,-77,0,0,-0.00547241 -5499,5717:374:1,-174,-77,0,0,-0.00547364 -5500,5717:373:2,-173.5,-77,0,0,-0.00547364 -5501,5717:373:1,-173,-77,0,0,-0.00547486 -5502,5717:372:2,-172.5,-77,0,0,-0.00547486 -5503,5717:372:1,-172,-77,0,0,-0.00547605 -5504,5717:371:2,-171.5,-77,0,0,-0.00547605 -5505,5717:371:1,-171,-77,0,0,-0.00547605 -5506,5717:370:2,-170.5,-77,0,0,-0.00547727 -5507,5717:370:1,-170,-77,0,0,-0.00547727 -5508,5716:479:2,-169.5,-77,0,0,-0.0054785 -5509,5716:479:1,-169,-77,0,0,-0.0054785 -5510,5716:478:2,-168.5,-77,0,0,-0.0054785 -5511,5716:478:1,-168,-77,0,0,-0.00547972 -5512,5716:477:2,-167.5,-77,0,0,-0.00547972 -5513,5716:477:1,-167,-77,0,0,-0.00548091 -5514,5716:476:2,-166.5,-77,0,0,-0.00548091 -5515,5716:476:1,-166,-77,0,0,-0.00547972 -5516,5716:475:2,-165.5,-77,0,0,-0.00547972 -5517,5716:475:1,-165,-77,0,0,-0.00547972 -5518,5716:374:2,-164.5,-77,0,0,-0.00547972 -5519,5716:374:1,-164,-77,0,0,-0.00547972 -5520,5716:373:2,-163.5,-77,0,0,-0.00547972 -5521,5716:373:1,-163,-77,0,0,-0.00548091 -5522,5716:372:2,-162.5,-77,0,0,-0.00548091 -5523,5716:372:1,-162,-77,0,0,-0.00548091 -5524,5716:371:2,-161.5,-77,0,0,-0.00548091 -5525,5716:371:1,-161,-77,0,0,-0.00548214 -5526,5716:370:2,-160.5,-77,0,0,-0.00548337 -5527,5716:370:1,-160,-77,0,0,-0.00548459 -5528,5715:479:2,-159.5,-77,0,0,-0.00548582 -5529,5715:479:1,-159,-77,0,0,-0.00548582 -5530,5715:478:2,-158.5,-77,0,0,-0.00548701 -5531,5715:478:1,-158,-77,0,0,-0.00548824 -5532,5715:477:2,-157.5,-77,0,0,-0.00548824 -5533,5715:477:1,-157,-77,0,0,-0.00548701 -5534,5715:476:2,-156.5,-77,0,0,-0.00548701 -5535,5715:476:1,-156,-77,0,0,-0.00548824 -5536,5715:475:2,-155.5,-77,0,0,-0.00548947 -5537,5715:475:1,-155,-77,0,0,-0.00548947 -5538,5715:374:2,-154.5,-77,0,0,-0.00548701 -5539,5715:374:1,-154,-77,0,0,-0.00548701 -5540,5715:373:2,-153.5,-77,0,0,-0.00548824 -5541,5715:373:1,-153,-77,0,0,-0.00548947 -5542,5715:372:2,-152.5,-77,0,0,-0.00548947 -5543,5715:372:1,-152,-77,0,0,-0.00548824 -5544,5715:371:2,-151.5,-77,0,0,-0.00548582 -5545,5715:371:1,-151,-77,0,0,-0.00548582 -5546,5715:370:2,-150.5,-77,0,0,-0.00548582 -5547,5715:370:1,-150,-77,0,0,-0.00548582 -5548,5714:479:2,-149.5,-77,0,0,-0.00548582 -5549,5714:479:1,-149,-77,0,0,-0.00548459 -5550,5714:478:2,-148.5,-77,0,0,-0.00548459 -5551,5714:478:1,-148,-77,0,0,-0.00548459 -5552,5714:477:2,-147.5,-77,0,0,-0.00548459 -5553,5714:477:1,-147,-77,0,0,-0.00548337 -5554,5714:476:2,-146.5,-77,0,0,-0.00548337 -5555,5714:476:1,-146,-77,0,0,-0.00548214 -5556,5714:475:2,-145.5,-77,0,0,-0.00548214 -5557,5714:475:1,-145,-77,0,0,-0.00548214 -5558,5714:374:2,-144.5,-77,0,0,-0.00548091 -5559,5714:374:1,-144,-77,0,0,-0.00548091 -5560,5714:373:2,-143.5,-77,0,0,-0.00548091 -5561,5714:373:1,-143,-77,0,0,-0.00548214 -5562,5714:372:2,-142.5,-77,0,0,-0.00548214 -5563,5714:372:1,-142,-77,0,0,-0.00548091 -5564,5714:371:2,-141.5,-77,0,0,-0.00547972 -5565,5714:371:1,-141,-77,0,0,-0.00548091 -5566,5714:370:2,-140.5,-77,0,0,-0.00548091 -5567,5714:370:1,-140,-77,0,0,-0.00548214 -5568,5713:479:2,-139.5,-77,0,0,-0.00548214 -5569,5713:479:1,-139,-77,0,0,-0.00548214 -5570,5713:478:2,-138.5,-77,0,0,-0.00548214 -5571,5713:478:1,-138,-77,0,0,-0.00548337 -5572,5713:477:2,-137.5,-77,0,0,-0.00548947 -5573,5713:477:1,-137,-77,0,0,-0.00550777 -5574,5713:476:2,-136.5,-77,0,0,-0.005536 -5575,5713:476:1,-136,-77,0,0,-0.00560158 -5576,5713:475:2,-135.5,-77,0,0,-0.00584441 -5577,5713:475:1,-135,-77,0,0,-0.00592286 -5578,5713:374:2,-134.5,-77,0,0,-0.00591106 -5579,5713:374:1,-134,-77,0,0,-0.00596912 -5580,5711:370:1,-110,-77,0,0,-0.00698226 -5581,5710:479:2,-109.5,-77,0,0,-0.00750095 -5582,5710:479:1,-109,-77,0,0,-0.00796395 -5583,5710:478:2,-108.5,-77,0,0,-0.00791092 -5584,5710:476:1,-106,-77,0,0,-0.005619 -5585,5710:475:2,-105.5,-77,0,0,-0.00555077 -5586,5710:475:1,-105,-77,0,0,-0.00552617 -5587,5710:374:2,-104.5,-77,0,0,-0.0055446 -5588,5710:374:1,-104,-77,0,0,-0.00578243 -5589,5710:373:2,-103.5,-77,0,0,-0.00623081 -5590,5710:373:1,-103,-77,0,0,-0.0065446 -5591,5710:372:2,-102.5,-77,0,0,-0.00661925 -5592,5706:371:2,-61.5,-77,0,0,-0.00552861 -5593,5706:371:1,-61,-77,0,0,-0.00552127 -5594,5706:370:2,-60.5,-77,0,0,-0.00550288 -5595,5706:370:1,-60,-77,0,0,-0.00548947 -5596,5705:479:2,-59.5,-77,0,0,-0.0054785 -5597,5705:479:1,-59,-77,0,0,-0.00546511 -5598,5705:478:2,-58.5,-77,0,0,-0.00545541 -5599,5705:478:1,-58,-77,0,0,-0.005453 -5600,5705:477:2,-57.5,-77,0,0,-0.00545179 -5601,5705:477:1,-57,-77,0,0,-0.00545057 -5602,5705:476:2,-56.5,-77,0,0,-0.00544935 -5603,5705:476:1,-56,-77,0,0,-0.00544935 -5604,5705:475:2,-55.5,-77,0,0,-0.00544935 -5605,5705:475:1,-55,-77,0,0,-0.00545057 -5606,5705:374:2,-54.5,-77,0,0,-0.00545057 -5607,5705:374:1,-54,-77,0,0,-0.00545057 -5608,5705:373:2,-53.5,-77,0,0,-0.00545057 -5609,5705:373:1,-53,-77,0,0,-0.00545179 -5610,5705:372:2,-52.5,-77,0,0,-0.005453 -5611,5705:372:1,-52,-77,0,0,-0.00545423 -5612,5705:371:2,-51.5,-77,0,0,-0.00545423 -5613,5705:371:1,-51,-77,0,0,-0.00545541 -5614,5705:370:2,-50.5,-77,0,0,-0.00545541 -5615,5705:370:1,-50,-77,0,0,-0.00545541 -5616,5704:479:2,-49.5,-77,0,0,-0.00545541 -5617,5704:479:1,-49,-77,0,0,-0.00545541 -5618,5704:478:2,-48.5,-77,0,0,-0.00545423 -5619,5704:478:1,-48,-77,0,0,-0.005453 -5620,5704:477:2,-47.5,-77,0,0,-0.005453 -5621,5704:477:1,-47,-77,0,0,-0.00545663 -5622,5704:476:2,-46.5,-77,0,0,-0.00545907 -5623,5704:476:1,-46,-77,0,0,-0.00546148 -5624,5704:475:2,-45.5,-77,0,0,-0.00546392 -5625,5704:475:1,-45,-77,0,0,-0.00546633 -5626,5704:374:2,-44.5,-77,0,0,-0.00546511 -5627,5704:374:1,-44,-77,0,0,-0.00546511 -5628,5704:373:2,-43.5,-77,0,0,-0.00546511 -5629,5704:373:1,-43,-77,0,0,-0.00546511 -5630,5704:372:2,-42.5,-77,0,0,-0.00546392 -5631,5704:372:1,-42,-77,0,0,-0.00546392 -5632,5704:371:2,-41.5,-77,0,0,-0.00546511 -5633,5704:371:1,-41,-77,0,0,-0.00546511 -5634,5704:370:2,-40.5,-77,0,0,-0.00546633 -5635,5704:370:1,-40,-77,0,0,-0.00546755 -5636,5703:479:2,-39.5,-77,0,0,-0.00546755 -5637,5703:479:1,-39,-77,0,0,-0.00546755 -5638,5703:478:2,-38.5,-77,0,0,-0.00546755 -5639,5703:478:1,-38,-77,0,0,-0.00546755 -5640,5703:477:2,-37.5,-77,0,0,-0.00546878 -5641,5703:477:1,-37,-77,0,0,-0.00546755 -5642,5703:476:2,-36.5,-77,0,0,-0.00546755 -5643,5703:476:1,-36,-77,0,0,-0.00546755 -5644,5703:475:2,-35.5,-77,0,0,-0.00546755 -5645,5703:475:1,-35,-77,0,0,-0.00546878 -5646,5703:374:2,-34.5,-77,0,0,-0.00546878 -5647,5703:374:1,-34,-77,0,0,-0.00546755 -5648,5703:373:2,-33.5,-77,0,0,-0.00546755 -5649,5703:373:1,-33,-77,0,0,-0.00546755 -5650,5703:372:2,-32.5,-77,0,0,-0.00546878 -5651,5703:372:1,-32,-77,0,0,-0.00546878 -5652,5703:371:2,-31.5,-77,0,0,-0.00546878 -5653,5703:371:1,-31,-77,0,0,-0.00547 -5654,5703:370:2,-30.5,-77,0,0,-0.00546878 -5655,5703:370:1,-30,-77,0,0,-0.00547 -5656,5702:479:2,-29.5,-77,0,0,-0.00547119 -5657,5702:479:1,-29,-77,0,0,-0.00547 -5658,5702:478:2,-28.5,-77,0,0,-0.00546878 -5659,5702:478:1,-28,-77,0,0,-0.00546755 -5660,5702:477:2,-27.5,-77,0,0,-0.00546633 -5661,5702:477:1,-27,-77,0,0,-0.00546511 -5662,5702:476:2,-26.5,-77,0,0,-0.00553848 -5663,5702:476:1,-26,-77,0,0,-0.00565409 -5664,5702:475:2,-25.5,-77,0,0,-0.00561402 -5665,5702:475:1,-25,-77,0,0,-0.00557672 -5666,5702:374:2,-24.5,-77,0,0,-0.00581851 -5667,5702:374:1,-24,-77,0,0,-0.00615781 -5668,3716:475:2,165.5,-77,0,0,-0.0055225 -5669,3716:476:1,166,-77,0,0,-0.00550411 -5670,3716:476:2,166.5,-77,0,0,-0.00548091 -5671,3716:477:1,167,-77,0,0,-0.00547241 -5672,3716:477:2,167.5,-77,0,0,-0.00546633 -5673,3716:478:1,168,-77,0,0,-0.00545907 -5674,3716:478:2,168.5,-77,0,0,-0.00545057 -5675,3716:479:1,169,-77,0,0,-0.00544451 -5676,3716:479:2,169.5,-77,0,0,-0.00544211 -5677,3717:370:1,170,-77,0,0,-0.00544333 -5678,3717:370:2,170.5,-77,0,0,-0.00544333 -5679,3717:371:1,171,-77,0,0,-0.00544089 -5680,3717:371:2,171.5,-77,0,0,-0.00569445 -5681,3717:372:1,172,-77,0,0,-0.00650255 -5682,3717:372:2,172.5,-77,0,0,-0.00744774 -5683,3717:373:1,173,-77,0,0,-0.00792146 -5684,3717:373:2,173.5,-77,0,0,-0.00790914 -5685,3717:374:1,174,-77,0,0,-0.00786525 -5686,3717:374:2,174.5,-77,0,0,-0.00783724 -5687,3717:475:1,175,-77,0,0,-0.00782681 -5688,3717:475:2,175.5,-77,0,0,-0.00778162 -5689,3717:476:1,176,-77,0,0,-0.00760351 -5690,3717:476:2,176.5,-77,0,0,-0.00631868 -5691,3717:477:1,177,-77,0,0,-0.00551024 -5692,3717:477:2,177.5,-77,0,0,-0.00544089 -5693,3717:478:1,178,-77,0,0,-0.00544211 -5694,3717:478:2,178.5,-77,0,0,-0.00544816 -5695,3717:479:1,179,-77,0,0,-0.005453 -5696,3717:479:2,179.5,-77,0,0,-0.00545663 -5697,3718:370:1,180,-77,0,0,-0.00546026 -5698,5718:360:3,-180,-76.5,0,0,-0.00545785 -5699,5717:469:4,-179.5,-76.5,0,0,-0.00546148 -5700,5717:469:3,-179,-76.5,0,0,-0.00546633 -5701,5717:468:4,-178.5,-76.5,0,0,-0.00546633 -5702,5717:468:3,-178,-76.5,0,0,-0.00546511 -5703,5717:467:4,-177.5,-76.5,0,0,-0.00546633 -5704,5717:467:3,-177,-76.5,0,0,-0.00546878 -5705,5717:466:4,-176.5,-76.5,0,0,-0.00546878 -5706,5717:466:3,-176,-76.5,0,0,-0.00547 -5707,5717:465:4,-175.5,-76.5,0,0,-0.00547 -5708,5717:465:3,-175,-76.5,0,0,-0.00547 -5709,5717:364:4,-174.5,-76.5,0,0,-0.00547119 -5710,5717:364:3,-174,-76.5,0,0,-0.00547241 -5711,5717:363:4,-173.5,-76.5,0,0,-0.00547364 -5712,5717:363:3,-173,-76.5,0,0,-0.00547364 -5713,5717:362:4,-172.5,-76.5,0,0,-0.00547486 -5714,5717:362:3,-172,-76.5,0,0,-0.00547486 -5715,5717:361:4,-171.5,-76.5,0,0,-0.00547486 -5716,5717:361:3,-171,-76.5,0,0,-0.00547605 -5717,5717:360:4,-170.5,-76.5,0,0,-0.00547605 -5718,5717:360:3,-170,-76.5,0,0,-0.00547727 -5719,5716:469:4,-169.5,-76.5,0,0,-0.00547727 -5720,5716:469:3,-169,-76.5,0,0,-0.00547727 -5721,5716:468:4,-168.5,-76.5,0,0,-0.00547727 -5722,5716:468:3,-168,-76.5,0,0,-0.00547605 -5723,5716:467:4,-167.5,-76.5,0,0,-0.00547605 -5724,5716:467:3,-167,-76.5,0,0,-0.00547727 -5725,5716:466:4,-166.5,-76.5,0,0,-0.00547727 -5726,5716:466:3,-166,-76.5,0,0,-0.00547727 -5727,5716:465:4,-165.5,-76.5,0,0,-0.0054785 -5728,5716:465:3,-165,-76.5,0,0,-0.0054785 -5729,5716:364:4,-164.5,-76.5,0,0,-0.00547727 -5730,5716:364:3,-164,-76.5,0,0,-0.00547727 -5731,5716:363:4,-163.5,-76.5,0,0,-0.0054785 -5732,5716:363:3,-163,-76.5,0,0,-0.00547972 -5733,5716:362:4,-162.5,-76.5,0,0,-0.00547972 -5734,5716:362:3,-162,-76.5,0,0,-0.00547972 -5735,5716:361:4,-161.5,-76.5,0,0,-0.00547972 -5736,5716:361:3,-161,-76.5,0,0,-0.00547972 -5737,5716:360:4,-160.5,-76.5,0,0,-0.00547972 -5738,5716:360:3,-160,-76.5,0,0,-0.00548091 -5739,5715:469:4,-159.5,-76.5,0,0,-0.00548214 -5740,5715:469:3,-159,-76.5,0,0,-0.00548214 -5741,5715:468:4,-158.5,-76.5,0,0,-0.00548337 -5742,5715:468:3,-158,-76.5,0,0,-0.00548337 -5743,5715:467:4,-157.5,-76.5,0,0,-0.00548337 -5744,5715:467:3,-157,-76.5,0,0,-0.00548459 -5745,5715:466:4,-156.5,-76.5,0,0,-0.00548582 -5746,5715:466:3,-156,-76.5,0,0,-0.00548701 -5747,5715:465:4,-155.5,-76.5,0,0,-0.00548701 -5748,5715:465:3,-155,-76.5,0,0,-0.00548701 -5749,5715:364:4,-154.5,-76.5,0,0,-0.00548824 -5750,5715:364:3,-154,-76.5,0,0,-0.00548824 -5751,5715:363:4,-153.5,-76.5,0,0,-0.00548824 -5752,5715:363:3,-153,-76.5,0,0,-0.00548947 -5753,5715:362:4,-152.5,-76.5,0,0,-0.00548947 -5754,5715:362:3,-152,-76.5,0,0,-0.00548824 -5755,5715:361:4,-151.5,-76.5,0,0,-0.00548824 -5756,5715:361:3,-151,-76.5,0,0,-0.00548701 -5757,5715:360:4,-150.5,-76.5,0,0,-0.00548701 -5758,5715:360:3,-150,-76.5,0,0,-0.00548701 -5759,5714:469:4,-149.5,-76.5,0,0,-0.00548582 -5760,5714:469:3,-149,-76.5,0,0,-0.00548582 -5761,5714:468:4,-148.5,-76.5,0,0,-0.00548582 -5762,5714:468:3,-148,-76.5,0,0,-0.00548701 -5763,5714:467:4,-147.5,-76.5,0,0,-0.00548701 -5764,5714:467:3,-147,-76.5,0,0,-0.00548701 -5765,5714:466:4,-146.5,-76.5,0,0,-0.00548582 -5766,5714:466:3,-146,-76.5,0,0,-0.00548582 -5767,5714:465:4,-145.5,-76.5,0,0,-0.00548459 -5768,5714:465:3,-145,-76.5,0,0,-0.00548459 -5769,5714:364:4,-144.5,-76.5,0,0,-0.00548459 -5770,5714:364:3,-144,-76.5,0,0,-0.00548459 -5771,5714:363:4,-143.5,-76.5,0,0,-0.00548459 -5772,5714:363:3,-143,-76.5,0,0,-0.00548459 -5773,5714:362:4,-142.5,-76.5,0,0,-0.00548459 -5774,5714:362:3,-142,-76.5,0,0,-0.00548337 -5775,5714:361:4,-141.5,-76.5,0,0,-0.00548214 -5776,5714:361:3,-141,-76.5,0,0,-0.00548214 -5777,5714:360:4,-140.5,-76.5,0,0,-0.00548214 -5778,5714:360:3,-140,-76.5,0,0,-0.00548091 -5779,5713:469:4,-139.5,-76.5,0,0,-0.00548091 -5780,5713:469:3,-139,-76.5,0,0,-0.00548091 -5781,5713:468:4,-138.5,-76.5,0,0,-0.00548214 -5782,5713:468:3,-138,-76.5,0,0,-0.00548337 -5783,5713:467:4,-137.5,-76.5,0,0,-0.00548582 -5784,5713:467:3,-137,-76.5,0,0,-0.00549923 -5785,5713:466:4,-136.5,-76.5,0,0,-0.005509 -5786,5713:466:3,-136,-76.5,0,0,-0.00552861 -5787,5713:465:4,-135.5,-76.5,0,0,-0.00564405 -5788,5713:465:3,-135,-76.5,0,0,-0.0058172 -5789,5713:364:4,-134.5,-76.5,0,0,-0.00581464 -5790,5713:364:3,-134,-76.5,0,0,-0.00562278 -5791,5713:363:4,-133.5,-76.5,0,0,-0.00549312 -5792,5713:363:3,-133,-76.5,0,0,-0.00547486 -5793,5713:362:4,-132.5,-76.5,0,0,-0.00552494 -5794,5713:362:3,-132,-76.5,0,0,-0.00573378 -5795,5713:361:3,-131,-76.5,0,0,-0.0060587 -5796,5711:360:3,-110,-76.5,0,0,-0.0071712 -5797,5710:469:4,-109.5,-76.5,0,0,-0.00800127 -5798,5710:469:3,-109,-76.5,0,0,-0.00794092 -5799,5710:468:4,-108.5,-76.5,0,0,-0.00790033 -5800,5710:467:3,-107,-76.5,0,0,-0.00565785 -5801,5710:466:4,-106.5,-76.5,0,0,-0.00560656 -5802,5710:466:3,-106,-76.5,0,0,-0.00554953 -5803,5710:465:4,-105.5,-76.5,0,0,-0.0055139 -5804,5710:465:3,-105,-76.5,0,0,-0.00550658 -5805,5710:364:4,-104.5,-76.5,0,0,-0.00551147 -5806,5710:364:3,-104,-76.5,0,0,-0.00564153 -5807,5710:363:4,-103.5,-76.5,0,0,-0.00611552 -5808,5710:363:3,-103,-76.5,0,0,-0.00640067 -5809,5706:361:4,-61.5,-76.5,0,0,-0.00552741 -5810,5706:361:3,-61,-76.5,0,0,-0.00552494 -5811,5706:360:4,-60.5,-76.5,0,0,-0.00551147 -5812,5706:360:3,-60,-76.5,0,0,-0.00549312 -5813,5705:469:4,-59.5,-76.5,0,0,-0.00548337 -5814,5705:469:3,-59,-76.5,0,0,-0.00547364 -5815,5705:468:4,-58.5,-76.5,0,0,-0.00546392 -5816,5705:468:3,-58,-76.5,0,0,-0.00545663 -5817,5705:467:4,-57.5,-76.5,0,0,-0.005453 -5818,5705:467:3,-57,-76.5,0,0,-0.00545179 -5819,5705:466:4,-56.5,-76.5,0,0,-0.00545057 -5820,5705:466:3,-56,-76.5,0,0,-0.00544935 -5821,5705:465:4,-55.5,-76.5,0,0,-0.00544935 -5822,5705:465:3,-55,-76.5,0,0,-0.00544935 -5823,5705:364:4,-54.5,-76.5,0,0,-0.00545057 -5824,5705:364:3,-54,-76.5,0,0,-0.00545057 -5825,5705:363:4,-53.5,-76.5,0,0,-0.00545179 -5826,5705:363:3,-53,-76.5,0,0,-0.005453 -5827,5705:362:4,-52.5,-76.5,0,0,-0.00545541 -5828,5705:362:3,-52,-76.5,0,0,-0.00545541 -5829,5705:361:4,-51.5,-76.5,0,0,-0.00545541 -5830,5705:361:3,-51,-76.5,0,0,-0.00545663 -5831,5705:360:4,-50.5,-76.5,0,0,-0.00545663 -5832,5705:360:3,-50,-76.5,0,0,-0.00545663 -5833,5704:469:4,-49.5,-76.5,0,0,-0.00545785 -5834,5704:469:3,-49,-76.5,0,0,-0.00545785 -5835,5704:468:4,-48.5,-76.5,0,0,-0.00545663 -5836,5704:468:3,-48,-76.5,0,0,-0.00545541 -5837,5704:467:4,-47.5,-76.5,0,0,-0.00545541 -5838,5704:467:3,-47,-76.5,0,0,-0.00545541 -5839,5704:466:4,-46.5,-76.5,0,0,-0.00545663 -5840,5704:466:3,-46,-76.5,0,0,-0.00546026 -5841,5704:465:4,-45.5,-76.5,0,0,-0.0054627 -5842,5704:465:3,-45,-76.5,0,0,-0.00546511 -5843,5704:364:4,-44.5,-76.5,0,0,-0.00546633 -5844,5704:364:3,-44,-76.5,0,0,-0.00546633 -5845,5704:363:4,-43.5,-76.5,0,0,-0.00546633 -5846,5704:363:3,-43,-76.5,0,0,-0.00546633 -5847,5704:362:4,-42.5,-76.5,0,0,-0.00546633 -5848,5704:362:3,-42,-76.5,0,0,-0.00546633 -5849,5704:361:4,-41.5,-76.5,0,0,-0.00546755 -5850,5704:361:3,-41,-76.5,0,0,-0.00546755 -5851,5704:360:4,-40.5,-76.5,0,0,-0.00546878 -5852,5704:360:3,-40,-76.5,0,0,-0.00546878 -5853,5703:469:4,-39.5,-76.5,0,0,-0.00546878 -5854,5703:469:3,-39,-76.5,0,0,-0.00546878 -5855,5703:468:4,-38.5,-76.5,0,0,-0.00546878 -5856,5703:468:3,-38,-76.5,0,0,-0.00546755 -5857,5703:467:4,-37.5,-76.5,0,0,-0.00546755 -5858,5703:467:3,-37,-76.5,0,0,-0.00546878 -5859,5703:466:4,-36.5,-76.5,0,0,-0.00546878 -5860,5703:466:3,-36,-76.5,0,0,-0.00546878 -5861,5703:465:4,-35.5,-76.5,0,0,-0.00546878 -5862,5703:465:3,-35,-76.5,0,0,-0.00546878 -5863,5703:364:4,-34.5,-76.5,0,0,-0.00546878 -5864,5703:364:3,-34,-76.5,0,0,-0.00546878 -5865,5703:363:4,-33.5,-76.5,0,0,-0.00546878 -5866,5703:363:3,-33,-76.5,0,0,-0.00547 -5867,5703:362:4,-32.5,-76.5,0,0,-0.00547 -5868,5703:362:3,-32,-76.5,0,0,-0.00547119 -5869,5703:361:4,-31.5,-76.5,0,0,-0.00547119 -5870,5703:361:3,-31,-76.5,0,0,-0.00547119 -5871,5703:360:4,-30.5,-76.5,0,0,-0.00547119 -5872,5703:360:3,-30,-76.5,0,0,-0.00547 -5873,5702:469:4,-29.5,-76.5,0,0,-0.00547 -5874,5702:469:3,-29,-76.5,0,0,-0.00546878 -5875,5702:468:4,-28.5,-76.5,0,0,-0.00546878 -5876,5702:468:3,-28,-76.5,0,0,-0.00546878 -5877,5702:467:4,-27.5,-76.5,0,0,-0.00546755 -5878,5702:467:3,-27,-76.5,0,0,-0.00546511 -5879,5702:466:4,-26.5,-76.5,0,0,-0.00546148 -5880,5702:466:3,-26,-76.5,0,0,-0.00545907 -5881,5702:465:4,-25.5,-76.5,0,0,-0.00548091 -5882,5702:465:3,-25,-76.5,0,0,-0.00551756 -5883,5702:364:4,-24.5,-76.5,0,0,-0.0056028 -5884,5702:364:3,-24,-76.5,0,0,-0.00579787 -5885,5702:363:4,-23.5,-76.5,0,0,-0.0062405 -5886,5702:363:3,-23,-76.5,0,0,-0.00685758 -5887,5702:362:4,-22.5,-76.5,0,0,-0.00721443 -5888,5702:362:3,-22,-76.5,0,0,-0.0074031 -5889,5702:361:4,-21.5,-76.5,0,0,-0.00763233 -5890,5702:361:3,-21,-76.5,0,0,-0.00751599 -5891,3716:465:4,165.5,-76.5,0,0,-0.00553476 -5892,3716:466:3,166,-76.5,0,0,-0.0055188 -5893,3716:466:4,166.5,-76.5,0,0,-0.00548701 -5894,3716:467:3,167,-76.5,0,0,-0.00546633 -5895,3716:467:4,167.5,-76.5,0,0,-0.00546026 -5896,3716:468:3,168,-76.5,0,0,-0.00545785 -5897,3716:468:4,168.5,-76.5,0,0,-0.00545663 -5898,3716:469:3,169,-76.5,0,0,-0.00545541 -5899,3716:469:4,169.5,-76.5,0,0,-0.00545179 -5900,3717:360:3,170,-76.5,0,0,-0.00544695 -5901,3717:360:4,170.5,-76.5,0,0,-0.00544573 -5902,3717:361:3,171,-76.5,0,0,-0.00546148 -5903,3717:361:4,171.5,-76.5,0,0,-0.00569569 -5904,3717:362:3,172,-76.5,0,0,-0.00675611 -5905,3717:362:4,172.5,-76.5,0,0,-0.00718558 -5906,3717:363:3,173,-76.5,0,0,-0.00767153 -5907,3717:363:4,173.5,-76.5,0,0,-0.00780068 -5908,3717:364:3,174,-76.5,0,0,-0.00785126 -5909,3717:364:4,174.5,-76.5,0,0,-0.00783378 -5910,3717:465:3,175,-76.5,0,0,-0.00780938 -5911,3717:465:4,175.5,-76.5,0,0,-0.00775049 -5912,3717:466:3,176,-76.5,0,0,-0.00755962 -5913,3717:466:4,176.5,-76.5,0,0,-0.00644067 -5914,3717:467:3,177,-76.5,0,0,-0.00551756 -5915,3717:467:4,177.5,-76.5,0,0,-0.0054385 -5916,3717:468:3,178,-76.5,0,0,-0.00544089 -5917,3717:468:4,178.5,-76.5,0,0,-0.00544573 -5918,3717:469:3,179,-76.5,0,0,-0.00545179 -5919,3717:469:4,179.5,-76.5,0,0,-0.00545541 -5920,3718:360:3,180,-76.5,0,0,-0.00545785 -5921,5718:360:1,-180,-76,0,0,-0.00545785 -5922,5717:469:2,-179.5,-76,0,0,-0.00546026 -5923,5717:469:1,-179,-76,0,0,-0.0054627 -5924,5717:468:2,-178.5,-76,0,0,-0.00546633 -5925,5717:468:1,-178,-76,0,0,-0.00546755 -5926,5717:467:2,-177.5,-76,0,0,-0.00546755 -5927,5717:467:1,-177,-76,0,0,-0.00546755 -5928,5717:466:2,-176.5,-76,0,0,-0.00546878 -5929,5717:466:1,-176,-76,0,0,-0.00546878 -5930,5717:465:2,-175.5,-76,0,0,-0.00547 -5931,5717:465:1,-175,-76,0,0,-0.00547 -5932,5717:364:2,-174.5,-76,0,0,-0.00547119 -5933,5717:364:1,-174,-76,0,0,-0.00547241 -5934,5717:363:2,-173.5,-76,0,0,-0.00547364 -5935,5717:363:1,-173,-76,0,0,-0.00547364 -5936,5717:362:2,-172.5,-76,0,0,-0.00547364 -5937,5717:362:1,-172,-76,0,0,-0.00547364 -5938,5717:361:2,-171.5,-76,0,0,-0.00547364 -5939,5717:361:1,-171,-76,0,0,-0.00547364 -5940,5717:360:2,-170.5,-76,0,0,-0.00547364 -5941,5717:360:1,-170,-76,0,0,-0.00547364 -5942,5716:469:2,-169.5,-76,0,0,-0.00547364 -5943,5716:469:1,-169,-76,0,0,-0.00547364 -5944,5716:468:2,-168.5,-76,0,0,-0.00547364 -5945,5716:468:1,-168,-76,0,0,-0.00547364 -5946,5716:467:2,-167.5,-76,0,0,-0.00547364 -5947,5716:467:1,-167,-76,0,0,-0.00547364 -5948,5716:466:2,-166.5,-76,0,0,-0.00547486 -5949,5716:466:1,-166,-76,0,0,-0.00547486 -5950,5716:465:2,-165.5,-76,0,0,-0.00547605 -5951,5716:465:1,-165,-76,0,0,-0.00547605 -5952,5716:364:2,-164.5,-76,0,0,-0.00547605 -5953,5716:364:1,-164,-76,0,0,-0.00547727 -5954,5716:363:2,-163.5,-76,0,0,-0.00547727 -5955,5716:363:1,-163,-76,0,0,-0.00547727 -5956,5716:362:2,-162.5,-76,0,0,-0.0054785 -5957,5716:362:1,-162,-76,0,0,-0.0054785 -5958,5716:361:2,-161.5,-76,0,0,-0.0054785 -5959,5716:361:1,-161,-76,0,0,-0.00547972 -5960,5716:360:2,-160.5,-76,0,0,-0.00547972 -5961,5716:360:1,-160,-76,0,0,-0.00548091 -5962,5715:469:2,-159.5,-76,0,0,-0.00548091 -5963,5715:469:1,-159,-76,0,0,-0.00548091 -5964,5715:468:2,-158.5,-76,0,0,-0.00548091 -5965,5715:468:1,-158,-76,0,0,-0.00547972 -5966,5715:467:2,-157.5,-76,0,0,-0.00547972 -5967,5715:467:1,-157,-76,0,0,-0.00548091 -5968,5715:466:2,-156.5,-76,0,0,-0.00548214 -5969,5715:466:1,-156,-76,0,0,-0.00548337 -5970,5715:465:2,-155.5,-76,0,0,-0.00548337 -5971,5715:465:1,-155,-76,0,0,-0.00548337 -5972,5715:364:2,-154.5,-76,0,0,-0.00548459 -5973,5715:364:1,-154,-76,0,0,-0.00548582 -5974,5715:363:2,-153.5,-76,0,0,-0.00548701 -5975,5715:363:1,-153,-76,0,0,-0.00548824 -5976,5715:362:2,-152.5,-76,0,0,-0.00548947 -5977,5715:362:1,-152,-76,0,0,-0.00548947 -5978,5715:361:2,-151.5,-76,0,0,-0.00548947 -5979,5715:361:1,-151,-76,0,0,-0.00548947 -5980,5715:360:2,-150.5,-76,0,0,-0.00548824 -5981,5715:360:1,-150,-76,0,0,-0.00548824 -5982,5714:469:2,-149.5,-76,0,0,-0.00548824 -5983,5714:469:1,-149,-76,0,0,-0.00548824 -5984,5714:468:2,-148.5,-76,0,0,-0.00548947 -5985,5714:468:1,-148,-76,0,0,-0.00548947 -5986,5714:467:2,-147.5,-76,0,0,-0.00548947 -5987,5714:467:1,-147,-76,0,0,-0.00549069 -5988,5714:466:2,-146.5,-76,0,0,-0.00549069 -5989,5714:466:1,-146,-76,0,0,-0.00549069 -5990,5714:465:2,-145.5,-76,0,0,-0.00548947 -5991,5714:465:1,-145,-76,0,0,-0.00548824 -5992,5714:364:2,-144.5,-76,0,0,-0.00548824 -5993,5714:364:1,-144,-76,0,0,-0.00548701 -5994,5714:363:2,-143.5,-76,0,0,-0.00548824 -5995,5714:363:1,-143,-76,0,0,-0.00548824 -5996,5714:362:2,-142.5,-76,0,0,-0.00548824 -5997,5714:362:1,-142,-76,0,0,-0.00548824 -5998,5714:361:2,-141.5,-76,0,0,-0.00548701 -5999,5714:361:1,-141,-76,0,0,-0.00548582 -6000,5714:360:2,-140.5,-76,0,0,-0.00548582 -6001,5714:360:1,-140,-76,0,0,-0.00548459 -6002,5713:469:2,-139.5,-76,0,0,-0.00548337 -6003,5713:469:1,-139,-76,0,0,-0.00548214 -6004,5713:468:2,-138.5,-76,0,0,-0.00548091 -6005,5713:468:1,-138,-76,0,0,-0.00547972 -6006,5713:467:2,-137.5,-76,0,0,-0.0054785 -6007,5713:467:1,-137,-76,0,0,-0.0054785 -6008,5713:466:2,-136.5,-76,0,0,-0.0054785 -6009,5713:466:1,-136,-76,0,0,-0.00547727 -6010,5713:465:2,-135.5,-76,0,0,-0.00547605 -6011,5713:465:1,-135,-76,0,0,-0.00547364 -6012,5713:364:2,-134.5,-76,0,0,-0.00547 -6013,5713:364:1,-134,-76,0,0,-0.00546878 -6014,5713:363:2,-133.5,-76,0,0,-0.00546755 -6015,5713:363:1,-133,-76,0,0,-0.00547 -6016,5713:362:2,-132.5,-76,0,0,-0.00547119 -6017,5713:362:1,-132,-76,0,0,-0.00551024 -6018,5713:361:2,-131.5,-76,0,0,-0.00575548 -6019,5713:361:1,-131,-76,0,0,-0.00617702 -6020,5713:360:2,-130.5,-76,0,0,-0.00651991 -6021,5713:360:1,-130,-76,0,0,-0.00651704 -6022,5712:469:2,-129.5,-76,0,0,-0.00679377 -6023,5712:469:1,-129,-76,0,0,-0.00700872 -6024,5712:468:2,-128.5,-76,0,0,-0.00692655 -6025,5712:468:1,-128,-76,0,0,-0.00676363 -6026,5711:467:2,-117.5,-76,0,0,-0.00550777 -6027,5711:467:1,-117,-76,0,0,-0.00550658 -6028,5711:465:1,-115,-76,0,0,-0.00585484 -6029,5711:363:2,-113.5,-76,0,0,-0.00689736 -6030,5711:363:1,-113,-76,0,0,-0.00710605 -6031,5711:362:2,-112.5,-76,0,0,-0.00721923 -6032,5711:362:1,-112,-76,0,0,-0.0070478 -6033,5711:361:2,-111.5,-76,0,0,-0.00714888 -6034,5711:361:1,-111,-76,0,0,-0.00747262 -6035,5711:360:2,-110.5,-76,0,0,-0.00761534 -6036,5711:360:1,-110,-76,0,0,-0.00751431 -6037,5710:467:1,-107,-76,0,0,-0.00558664 -6038,5710:466:2,-106.5,-76,0,0,-0.00555325 -6039,5710:466:1,-106,-76,0,0,-0.00551147 -6040,5710:465:2,-105.5,-76,0,0,-0.00550658 -6041,5710:465:1,-105,-76,0,0,-0.00551024 -6042,5710:364:2,-104.5,-76,0,0,-0.00552617 -6043,5710:364:1,-104,-76,0,0,-0.00571724 -6044,5710:363:2,-103.5,-76,0,0,-0.00636097 -6045,5710:363:1,-103,-76,0,0,-0.00653732 -6046,5710:362:2,-102.5,-76,0,0,-0.00667991 -6047,5710:362:1,-102,-76,0,0,-0.00676363 -6048,5706:361:1,-61,-76,0,0,-0.00553108 -6049,5706:360:2,-60.5,-76,0,0,-0.0055237 -6050,5706:360:1,-60,-76,0,0,-0.00550411 -6051,5705:469:2,-59.5,-76,0,0,-0.00547727 -6052,5705:469:1,-59,-76,0,0,-0.00547 -6053,5705:468:2,-58.5,-76,0,0,-0.00546392 -6054,5705:468:1,-58,-76,0,0,-0.00545785 -6055,5705:467:2,-57.5,-76,0,0,-0.00545423 -6056,5705:467:1,-57,-76,0,0,-0.00545179 -6057,5705:466:2,-56.5,-76,0,0,-0.00545057 -6058,5705:466:1,-56,-76,0,0,-0.00545057 -6059,5705:465:2,-55.5,-76,0,0,-0.00545057 -6060,5705:465:1,-55,-76,0,0,-0.00545057 -6061,5705:364:2,-54.5,-76,0,0,-0.00545057 -6062,5705:364:1,-54,-76,0,0,-0.00545179 -6063,5705:363:2,-53.5,-76,0,0,-0.005453 -6064,5705:363:1,-53,-76,0,0,-0.00545423 -6065,5705:362:2,-52.5,-76,0,0,-0.00545541 -6066,5705:362:1,-52,-76,0,0,-0.00545663 -6067,5705:361:2,-51.5,-76,0,0,-0.00545663 -6068,5705:361:1,-51,-76,0,0,-0.00545785 -6069,5705:360:2,-50.5,-76,0,0,-0.00545785 -6070,5705:360:1,-50,-76,0,0,-0.00545907 -6071,5704:469:2,-49.5,-76,0,0,-0.00545907 -6072,5704:469:1,-49,-76,0,0,-0.00545907 -6073,5704:468:2,-48.5,-76,0,0,-0.00545907 -6074,5704:468:1,-48,-76,0,0,-0.00545907 -6075,5704:467:2,-47.5,-76,0,0,-0.00545785 -6076,5704:467:1,-47,-76,0,0,-0.00545785 -6077,5704:466:2,-46.5,-76,0,0,-0.00545785 -6078,5704:466:1,-46,-76,0,0,-0.00546026 -6079,5704:465:2,-45.5,-76,0,0,-0.0054627 -6080,5704:465:1,-45,-76,0,0,-0.00546392 -6081,5704:364:2,-44.5,-76,0,0,-0.00546755 -6082,5704:364:1,-44,-76,0,0,-0.00546755 -6083,5704:363:2,-43.5,-76,0,0,-0.00546755 -6084,5704:363:1,-43,-76,0,0,-0.00546755 -6085,5704:362:2,-42.5,-76,0,0,-0.00546755 -6086,5704:362:1,-42,-76,0,0,-0.00546878 -6087,5704:361:2,-41.5,-76,0,0,-0.00546878 -6088,5704:361:1,-41,-76,0,0,-0.00546878 -6089,5704:360:2,-40.5,-76,0,0,-0.00546878 -6090,5704:360:1,-40,-76,0,0,-0.00547 -6091,5703:469:2,-39.5,-76,0,0,-0.00547 -6092,5703:469:1,-39,-76,0,0,-0.00547 -6093,5703:468:2,-38.5,-76,0,0,-0.00546878 -6094,5703:468:1,-38,-76,0,0,-0.00547 -6095,5703:467:2,-37.5,-76,0,0,-0.00547 -6096,5703:467:1,-37,-76,0,0,-0.00547 -6097,5703:466:2,-36.5,-76,0,0,-0.00547 -6098,5703:466:1,-36,-76,0,0,-0.00547 -6099,5703:465:2,-35.5,-76,0,0,-0.00547 -6100,5703:465:1,-35,-76,0,0,-0.00547 -6101,5703:364:2,-34.5,-76,0,0,-0.00547 -6102,5703:364:1,-34,-76,0,0,-0.00547119 -6103,5703:363:2,-33.5,-76,0,0,-0.00547119 -6104,5703:363:1,-33,-76,0,0,-0.00547119 -6105,5703:362:2,-32.5,-76,0,0,-0.00547119 -6106,5703:362:1,-32,-76,0,0,-0.00547119 -6107,5703:361:2,-31.5,-76,0,0,-0.00547119 -6108,5703:361:1,-31,-76,0,0,-0.00547 -6109,5703:360:2,-30.5,-76,0,0,-0.00547 -6110,5703:360:1,-30,-76,0,0,-0.00547 -6111,5702:469:2,-29.5,-76,0,0,-0.00547 -6112,5702:469:1,-29,-76,0,0,-0.00547 -6113,5702:468:2,-28.5,-76,0,0,-0.00546878 -6114,5702:468:1,-28,-76,0,0,-0.00546878 -6115,5702:467:2,-27.5,-76,0,0,-0.00546878 -6116,5702:467:1,-27,-76,0,0,-0.00546755 -6117,5702:466:2,-26.5,-76,0,0,-0.00546633 -6118,5702:466:1,-26,-76,0,0,-0.00546755 -6119,5702:465:2,-25.5,-76,0,0,-0.00550777 -6120,5702:465:1,-25,-76,0,0,-0.005536 -6121,5702:364:2,-24.5,-76,0,0,-0.00559039 -6122,5702:364:1,-24,-76,0,0,-0.00576959 -6123,5702:363:2,-23.5,-76,0,0,-0.00591892 -6124,5702:363:1,-23,-76,0,0,-0.0060372 -6125,5702:362:2,-22.5,-76,0,0,-0.00644784 -6126,5702:362:1,-22,-76,0,0,-0.00690654 -6127,5702:361:2,-21.5,-76,0,0,-0.00722566 -6128,5702:361:1,-21,-76,0,0,-0.00766981 -6129,5702:360:2,-20.5,-76,0,0,-0.00755459 -6130,3716:466:2,166.5,-76,0,0,-0.00552494 -6131,3716:467:1,167,-76,0,0,-0.00550046 -6132,3716:467:2,167.5,-76,0,0,-0.00547605 -6133,3716:468:1,168,-76,0,0,-0.00546878 -6134,3716:468:2,168.5,-76,0,0,-0.0054627 -6135,3716:469:1,169,-76,0,0,-0.00546026 -6136,3716:469:2,169.5,-76,0,0,-0.00546511 -6137,3717:360:1,170,-76,0,0,-0.00546148 -6138,3717:360:2,170.5,-76,0,0,-0.005453 -6139,3717:361:1,171,-76,0,0,-0.00544333 -6140,3717:361:2,171.5,-76,0,0,-0.00546148 -6141,3717:362:1,172,-76,0,0,-0.00569318 -6142,3717:362:2,172.5,-76,0,0,-0.00596119 -6143,3717:363:1,173,-76,0,0,-0.00626829 -6144,3717:363:2,173.5,-76,0,0,-0.0068241 -6145,3717:364:1,174,-76,0,0,-0.00734565 -6146,3717:364:2,174.5,-76,0,0,-0.00761027 -6147,3717:465:1,175,-76,0,0,-0.0076732 -6148,3717:465:2,175.5,-76,0,0,-0.00765446 -6149,3717:466:1,176,-76,0,0,-0.00750095 -6150,3717:466:2,176.5,-76,0,0,-0.00658551 -6151,3717:467:1,177,-76,0,0,-0.00553232 -6152,3717:467:2,177.5,-76,0,0,-0.00543485 -6153,3717:468:1,178,-76,0,0,-0.00544089 -6154,3717:468:2,178.5,-76,0,0,-0.00544573 -6155,3717:469:1,179,-76,0,0,-0.00545057 -6156,3717:469:2,179.5,-76,0,0,-0.00545541 -6157,3718:360:1,180,-76,0,0,-0.00545785 -6158,5718:350:3,-180,-75.5,0,0,-0.00545785 -6159,5717:459:4,-179.5,-75.5,0,0,-0.00546026 -6160,5717:459:3,-179,-75.5,0,0,-0.0054627 -6161,5717:458:4,-178.5,-75.5,0,0,-0.00546511 -6162,5717:458:3,-178,-75.5,0,0,-0.00546755 -6163,5717:457:4,-177.5,-75.5,0,0,-0.00546755 -6164,5717:457:3,-177,-75.5,0,0,-0.00546755 -6165,5717:456:4,-176.5,-75.5,0,0,-0.00546878 -6166,5717:456:3,-176,-75.5,0,0,-0.00546878 -6167,5717:455:4,-175.5,-75.5,0,0,-0.00547 -6168,5717:455:3,-175,-75.5,0,0,-0.00547119 -6169,5717:354:4,-174.5,-75.5,0,0,-0.00547119 -6170,5717:354:3,-174,-75.5,0,0,-0.00547241 -6171,5717:353:4,-173.5,-75.5,0,0,-0.00547241 -6172,5717:353:3,-173,-75.5,0,0,-0.00547241 -6173,5717:352:4,-172.5,-75.5,0,0,-0.00547241 -6174,5717:352:3,-172,-75.5,0,0,-0.00547241 -6175,5717:351:4,-171.5,-75.5,0,0,-0.00547241 -6176,5717:351:3,-171,-75.5,0,0,-0.00547241 -6177,5717:350:4,-170.5,-75.5,0,0,-0.00547241 -6178,5717:350:3,-170,-75.5,0,0,-0.00547241 -6179,5716:459:4,-169.5,-75.5,0,0,-0.00547364 -6180,5716:459:3,-169,-75.5,0,0,-0.00547364 -6181,5716:458:4,-168.5,-75.5,0,0,-0.00547364 -6182,5716:458:3,-168,-75.5,0,0,-0.00547364 -6183,5716:457:4,-167.5,-75.5,0,0,-0.00547364 -6184,5716:457:3,-167,-75.5,0,0,-0.00547364 -6185,5716:456:4,-166.5,-75.5,0,0,-0.00547364 -6186,5716:456:3,-166,-75.5,0,0,-0.00547486 -6187,5716:455:4,-165.5,-75.5,0,0,-0.00547486 -6188,5716:455:3,-165,-75.5,0,0,-0.00547605 -6189,5716:354:4,-164.5,-75.5,0,0,-0.00547605 -6190,5716:354:3,-164,-75.5,0,0,-0.00547727 -6191,5716:353:4,-163.5,-75.5,0,0,-0.00547727 -6192,5716:353:3,-163,-75.5,0,0,-0.00547727 -6193,5716:352:4,-162.5,-75.5,0,0,-0.0054785 -6194,5716:352:3,-162,-75.5,0,0,-0.0054785 -6195,5716:351:4,-161.5,-75.5,0,0,-0.0054785 -6196,5716:351:3,-161,-75.5,0,0,-0.0054785 -6197,5716:350:4,-160.5,-75.5,0,0,-0.00547727 -6198,5716:350:3,-160,-75.5,0,0,-0.00547727 -6199,5715:459:4,-159.5,-75.5,0,0,-0.00547727 -6200,5715:459:3,-159,-75.5,0,0,-0.00547727 -6201,5715:458:4,-158.5,-75.5,0,0,-0.00547727 -6202,5715:458:3,-158,-75.5,0,0,-0.00547727 -6203,5715:457:4,-157.5,-75.5,0,0,-0.0054785 -6204,5715:457:3,-157,-75.5,0,0,-0.00547972 -6205,5715:456:4,-156.5,-75.5,0,0,-0.00548214 -6206,5715:456:3,-156,-75.5,0,0,-0.00548214 -6207,5715:455:4,-155.5,-75.5,0,0,-0.00548337 -6208,5715:455:3,-155,-75.5,0,0,-0.00548337 -6209,5715:354:4,-154.5,-75.5,0,0,-0.00548337 -6210,5715:354:3,-154,-75.5,0,0,-0.00548459 -6211,5715:353:4,-153.5,-75.5,0,0,-0.00548459 -6212,5715:353:3,-153,-75.5,0,0,-0.00548582 -6213,5715:352:4,-152.5,-75.5,0,0,-0.00548701 -6214,5715:352:3,-152,-75.5,0,0,-0.00548824 -6215,5715:351:4,-151.5,-75.5,0,0,-0.00548947 -6216,5715:351:3,-151,-75.5,0,0,-0.00548947 -6217,5715:350:4,-150.5,-75.5,0,0,-0.00548947 -6218,5715:350:3,-150,-75.5,0,0,-0.00548824 -6219,5714:459:4,-149.5,-75.5,0,0,-0.00548824 -6220,5714:459:3,-149,-75.5,0,0,-0.00548947 -6221,5714:458:4,-148.5,-75.5,0,0,-0.00549069 -6222,5714:458:3,-148,-75.5,0,0,-0.00549069 -6223,5714:457:4,-147.5,-75.5,0,0,-0.00549189 -6224,5714:457:3,-147,-75.5,0,0,-0.00549189 -6225,5714:456:4,-146.5,-75.5,0,0,-0.00549189 -6226,5714:456:3,-146,-75.5,0,0,-0.00549312 -6227,5714:455:4,-145.5,-75.5,0,0,-0.00549312 -6228,5714:455:3,-145,-75.5,0,0,-0.00549189 -6229,5714:354:4,-144.5,-75.5,0,0,-0.00549069 -6230,5714:354:3,-144,-75.5,0,0,-0.00549069 -6231,5714:353:4,-143.5,-75.5,0,0,-0.00549069 -6232,5714:353:3,-143,-75.5,0,0,-0.00549069 -6233,5714:352:4,-142.5,-75.5,0,0,-0.00549069 -6234,5714:352:3,-142,-75.5,0,0,-0.00549069 -6235,5714:351:4,-141.5,-75.5,0,0,-0.00548947 -6236,5714:351:3,-141,-75.5,0,0,-0.00548947 -6237,5714:350:4,-140.5,-75.5,0,0,-0.00548947 -6238,5714:350:3,-140,-75.5,0,0,-0.00548824 -6239,5713:459:4,-139.5,-75.5,0,0,-0.00548701 -6240,5713:459:3,-139,-75.5,0,0,-0.00548459 -6241,5713:458:4,-138.5,-75.5,0,0,-0.00548214 -6242,5713:458:3,-138,-75.5,0,0,-0.00547972 -6243,5713:457:4,-137.5,-75.5,0,0,-0.00547727 -6244,5713:457:3,-137,-75.5,0,0,-0.00547727 -6245,5713:456:4,-136.5,-75.5,0,0,-0.0054785 -6246,5713:456:3,-136,-75.5,0,0,-0.00547727 -6247,5713:455:4,-135.5,-75.5,0,0,-0.00547364 -6248,5713:455:3,-135,-75.5,0,0,-0.00547 -6249,5713:354:4,-134.5,-75.5,0,0,-0.00546633 -6250,5713:354:3,-134,-75.5,0,0,-0.00546633 -6251,5713:353:4,-133.5,-75.5,0,0,-0.00546878 -6252,5713:353:3,-133,-75.5,0,0,-0.00547119 -6253,5713:352:4,-132.5,-75.5,0,0,-0.00547364 -6254,5713:352:3,-132,-75.5,0,0,-0.00547605 -6255,5713:351:4,-131.5,-75.5,0,0,-0.00548824 -6256,5713:351:3,-131,-75.5,0,0,-0.00554832 -6257,5713:350:4,-130.5,-75.5,0,0,-0.00552003 -6258,5713:350:3,-130,-75.5,0,0,-0.00549557 -6259,5712:459:4,-129.5,-75.5,0,0,-0.00558168 -6260,5712:459:3,-129,-75.5,0,0,-0.00611958 -6261,5712:458:4,-128.5,-75.5,0,0,-0.00650255 -6262,5712:458:3,-128,-75.5,0,0,-0.00624465 -6263,5712:457:4,-127.5,-75.5,0,0,-0.00627668 -6264,5711:458:4,-118.5,-75.5,0,0,-0.0055237 -6265,5711:458:3,-118,-75.5,0,0,-0.00552741 -6266,5711:457:4,-117.5,-75.5,0,0,-0.0055188 -6267,5711:457:3,-117,-75.5,0,0,-0.00551266 -6268,5711:456:4,-116.5,-75.5,0,0,-0.0055225 -6269,5711:456:3,-116,-75.5,0,0,-0.00555201 -6270,5711:455:4,-115.5,-75.5,0,0,-0.00570837 -6271,5711:455:3,-115,-75.5,0,0,-0.00619212 -6272,5711:354:4,-114.5,-75.5,0,0,-0.00650546 -6273,5711:354:3,-114,-75.5,0,0,-0.00671564 -6274,5711:353:4,-113.5,-75.5,0,0,-0.00686368 -6275,5711:353:3,-113,-75.5,0,0,-0.00679078 -6276,5711:352:4,-112.5,-75.5,0,0,-0.00643778 -6277,5711:352:3,-112,-75.5,0,0,-0.00590053 -6278,5711:351:4,-111.5,-75.5,0,0,-0.00583273 -6279,5711:351:3,-111,-75.5,0,0,-0.00612777 -6280,5711:350:4,-110.5,-75.5,0,0,-0.00654754 -6281,5710:457:4,-107.5,-75.5,0,0,-0.00557426 -6282,5710:457:3,-107,-75.5,0,0,-0.0055446 -6283,5710:456:4,-106.5,-75.5,0,0,-0.0055225 -6284,5710:456:3,-106,-75.5,0,0,-0.005509 -6285,5710:455:4,-105.5,-75.5,0,0,-0.00550777 -6286,5710:455:3,-105,-75.5,0,0,-0.00551637 -6287,5710:354:4,-104.5,-75.5,0,0,-0.005536 -6288,5710:354:3,-104,-75.5,0,0,-0.00568812 -6289,5710:353:4,-103.5,-75.5,0,0,-0.00617974 -6290,5710:353:3,-103,-75.5,0,0,-0.00647801 -6291,5708:353:3,-83,-75.5,0,0,-0.00872755 -6292,5708:352:4,-82.5,-75.5,0,0,-0.00874121 -6293,5708:352:3,-82,-75.5,0,0,-0.00874311 -6294,5708:351:4,-81.5,-75.5,0,0,-0.00863855 -6295,5706:350:4,-60.5,-75.5,0,0,-0.0055237 -6296,5706:350:3,-60,-75.5,0,0,-0.00550777 -6297,5705:459:4,-59.5,-75.5,0,0,-0.0054785 -6298,5705:459:3,-59,-75.5,0,0,-0.00546755 -6299,5705:458:4,-58.5,-75.5,0,0,-0.0054627 -6300,5705:458:3,-58,-75.5,0,0,-0.00545785 -6301,5705:457:4,-57.5,-75.5,0,0,-0.00545423 -6302,5705:457:3,-57,-75.5,0,0,-0.005453 -6303,5705:456:4,-56.5,-75.5,0,0,-0.00545179 -6304,5705:456:3,-56,-75.5,0,0,-0.00545179 -6305,5705:455:4,-55.5,-75.5,0,0,-0.00545057 -6306,5705:455:3,-55,-75.5,0,0,-0.00545057 -6307,5705:354:4,-54.5,-75.5,0,0,-0.00545057 -6308,5705:354:3,-54,-75.5,0,0,-0.00545179 -6309,5705:353:4,-53.5,-75.5,0,0,-0.00545423 -6310,5705:353:3,-53,-75.5,0,0,-0.00545541 -6311,5705:352:4,-52.5,-75.5,0,0,-0.00545541 -6312,5705:352:3,-52,-75.5,0,0,-0.00545663 -6313,5705:351:4,-51.5,-75.5,0,0,-0.00545785 -6314,5705:351:3,-51,-75.5,0,0,-0.00545907 -6315,5705:350:4,-50.5,-75.5,0,0,-0.00545907 -6316,5705:350:3,-50,-75.5,0,0,-0.00546026 -6317,5704:459:4,-49.5,-75.5,0,0,-0.00546026 -6318,5704:459:3,-49,-75.5,0,0,-0.00546026 -6319,5704:458:4,-48.5,-75.5,0,0,-0.00546026 -6320,5704:458:3,-48,-75.5,0,0,-0.00546026 -6321,5704:457:4,-47.5,-75.5,0,0,-0.00546026 -6322,5704:457:3,-47,-75.5,0,0,-0.00546026 -6323,5704:456:4,-46.5,-75.5,0,0,-0.00546148 -6324,5704:456:3,-46,-75.5,0,0,-0.00546392 -6325,5704:455:4,-45.5,-75.5,0,0,-0.00546392 -6326,5704:455:3,-45,-75.5,0,0,-0.00546511 -6327,5704:354:4,-44.5,-75.5,0,0,-0.00546755 -6328,5704:354:3,-44,-75.5,0,0,-0.00546878 -6329,5704:353:4,-43.5,-75.5,0,0,-0.00546878 -6330,5704:353:3,-43,-75.5,0,0,-0.00546878 -6331,5704:352:4,-42.5,-75.5,0,0,-0.00546878 -6332,5704:352:3,-42,-75.5,0,0,-0.00547 -6333,5704:351:4,-41.5,-75.5,0,0,-0.00547 -6334,5704:351:3,-41,-75.5,0,0,-0.00547 -6335,5704:350:4,-40.5,-75.5,0,0,-0.00547119 -6336,5704:350:3,-40,-75.5,0,0,-0.00547119 -6337,5703:459:4,-39.5,-75.5,0,0,-0.00547119 -6338,5703:459:3,-39,-75.5,0,0,-0.00547 -6339,5703:458:4,-38.5,-75.5,0,0,-0.00547119 -6340,5703:458:3,-38,-75.5,0,0,-0.00547119 -6341,5703:457:4,-37.5,-75.5,0,0,-0.00547 -6342,5703:457:3,-37,-75.5,0,0,-0.00547 -6343,5703:456:4,-36.5,-75.5,0,0,-0.00547 -6344,5703:456:3,-36,-75.5,0,0,-0.00547 -6345,5703:455:4,-35.5,-75.5,0,0,-0.00547 -6346,5703:455:3,-35,-75.5,0,0,-0.00547 -6347,5703:354:4,-34.5,-75.5,0,0,-0.00547 -6348,5703:354:3,-34,-75.5,0,0,-0.00547 -6349,5703:353:4,-33.5,-75.5,0,0,-0.00547 -6350,5703:353:3,-33,-75.5,0,0,-0.00547 -6351,5703:352:4,-32.5,-75.5,0,0,-0.00546878 -6352,5703:352:3,-32,-75.5,0,0,-0.00546878 -6353,5703:351:4,-31.5,-75.5,0,0,-0.00547 -6354,5703:351:3,-31,-75.5,0,0,-0.00547 -6355,5703:350:4,-30.5,-75.5,0,0,-0.00546878 -6356,5703:350:3,-30,-75.5,0,0,-0.00546878 -6357,5702:459:4,-29.5,-75.5,0,0,-0.00546878 -6358,5702:459:3,-29,-75.5,0,0,-0.00546878 -6359,5702:458:4,-28.5,-75.5,0,0,-0.00546878 -6360,5702:458:3,-28,-75.5,0,0,-0.00546755 -6361,5702:457:4,-27.5,-75.5,0,0,-0.00546755 -6362,5702:457:3,-27,-75.5,0,0,-0.00546633 -6363,5702:456:4,-26.5,-75.5,0,0,-0.00546511 -6364,5702:456:3,-26,-75.5,0,0,-0.00546511 -6365,5702:455:4,-25.5,-75.5,0,0,-0.00546511 -6366,5702:455:3,-25,-75.5,0,0,-0.00546392 -6367,5702:354:4,-24.5,-75.5,0,0,-0.00548701 -6368,5702:354:3,-24,-75.5,0,0,-0.00549923 -6369,5702:353:4,-23.5,-75.5,0,0,-0.00554953 -6370,5702:353:3,-23,-75.5,0,0,-0.00591234 -6371,5702:352:4,-22.5,-75.5,0,0,-0.00632571 -6372,5702:352:3,-22,-75.5,0,0,-0.00662518 -6373,5702:351:4,-21.5,-75.5,0,0,-0.00691424 -6374,5702:351:3,-21,-75.5,0,0,-0.0074527 -6375,5702:350:4,-20.5,-75.5,0,0,-0.00771775 -6376,3716:456:4,166.5,-75.5,0,0,-0.00553352 -6377,3716:457:3,167,-75.5,0,0,-0.00552617 -6378,3716:457:4,167.5,-75.5,0,0,-0.00552003 -6379,3716:458:3,168,-75.5,0,0,-0.00552003 -6380,3716:458:4,168.5,-75.5,0,0,-0.00551756 -6381,3716:459:3,169,-75.5,0,0,-0.005498 -6382,3716:459:4,169.5,-75.5,0,0,-0.00547241 -6383,3717:350:3,170,-75.5,0,0,-0.00546148 -6384,3717:350:4,170.5,-75.5,0,0,-0.00545663 -6385,3717:351:3,171,-75.5,0,0,-0.00545179 -6386,3717:351:4,171.5,-75.5,0,0,-0.00545179 -6387,3717:352:3,172,-75.5,0,0,-0.00546392 -6388,3717:352:4,172.5,-75.5,0,0,-0.00562903 -6389,3717:353:3,173,-75.5,0,0,-0.00593738 -6390,3717:353:4,173.5,-75.5,0,0,-0.00639785 -6391,3717:354:3,174,-75.5,0,0,-0.00675313 -6392,3717:354:4,174.5,-75.5,0,0,-0.00690809 -6393,3717:455:3,175,-75.5,0,0,-0.00711242 -6394,3717:455:4,175.5,-75.5,0,0,-0.00736858 -6395,3717:456:3,176,-75.5,0,0,-0.00729677 -6396,3717:456:4,176.5,-75.5,0,0,-0.00610872 -6397,3717:457:3,177,-75.5,0,0,-0.00546511 -6398,3717:457:4,177.5,-75.5,0,0,-0.00543728 -6399,3717:458:3,178,-75.5,0,0,-0.00544211 -6400,3717:458:4,178.5,-75.5,0,0,-0.00544695 -6401,3717:459:3,179,-75.5,0,0,-0.00545057 -6402,3717:459:4,179.5,-75.5,0,0,-0.00545541 -6403,3718:350:3,180,-75.5,0,0,-0.00545785 -6404,5718:350:1,-180,-75,0,0,-0.00545785 -6405,5717:459:2,-179.5,-75,0,0,-0.00546026 -6406,5717:459:1,-179,-75,0,0,-0.00546148 -6407,5717:458:2,-178.5,-75,0,0,-0.00546392 -6408,5717:458:1,-178,-75,0,0,-0.00546633 -6409,5717:457:2,-177.5,-75,0,0,-0.00546878 -6410,5717:457:1,-177,-75,0,0,-0.00546755 -6411,5717:456:2,-176.5,-75,0,0,-0.00546878 -6412,5717:456:1,-176,-75,0,0,-0.00547 -6413,5717:455:2,-175.5,-75,0,0,-0.00547 -6414,5717:455:1,-175,-75,0,0,-0.00547 -6415,5717:354:2,-174.5,-75,0,0,-0.00547119 -6416,5717:354:1,-174,-75,0,0,-0.00547241 -6417,5717:353:2,-173.5,-75,0,0,-0.00547241 -6418,5717:353:1,-173,-75,0,0,-0.00547241 -6419,5717:352:2,-172.5,-75,0,0,-0.00547119 -6420,5717:352:1,-172,-75,0,0,-0.00547119 -6421,5717:351:2,-171.5,-75,0,0,-0.00547119 -6422,5717:351:1,-171,-75,0,0,-0.00547119 -6423,5717:350:2,-170.5,-75,0,0,-0.00547119 -6424,5717:350:1,-170,-75,0,0,-0.00547241 -6425,5716:459:2,-169.5,-75,0,0,-0.00547241 -6426,5716:459:1,-169,-75,0,0,-0.00547241 -6427,5716:458:2,-168.5,-75,0,0,-0.00547241 -6428,5716:458:1,-168,-75,0,0,-0.00547241 -6429,5716:457:2,-167.5,-75,0,0,-0.00547241 -6430,5716:457:1,-167,-75,0,0,-0.00547364 -6431,5716:456:2,-166.5,-75,0,0,-0.00547364 -6432,5716:456:1,-166,-75,0,0,-0.00547364 -6433,5716:455:2,-165.5,-75,0,0,-0.00547486 -6434,5716:455:1,-165,-75,0,0,-0.00547486 -6435,5716:354:2,-164.5,-75,0,0,-0.00547605 -6436,5716:354:1,-164,-75,0,0,-0.00547605 -6437,5716:353:2,-163.5,-75,0,0,-0.00547605 -6438,5716:353:1,-163,-75,0,0,-0.00547605 -6439,5716:352:2,-162.5,-75,0,0,-0.00547605 -6440,5716:352:1,-162,-75,0,0,-0.00547605 -6441,5716:351:2,-161.5,-75,0,0,-0.00547486 -6442,5716:351:1,-161,-75,0,0,-0.00547605 -6443,5716:350:2,-160.5,-75,0,0,-0.00547605 -6444,5716:350:1,-160,-75,0,0,-0.00547605 -6445,5715:459:2,-159.5,-75,0,0,-0.00547605 -6446,5715:459:1,-159,-75,0,0,-0.00547605 -6447,5715:458:2,-158.5,-75,0,0,-0.00547727 -6448,5715:458:1,-158,-75,0,0,-0.00547727 -6449,5715:457:2,-157.5,-75,0,0,-0.0054785 -6450,5715:457:1,-157,-75,0,0,-0.00547972 -6451,5715:456:2,-156.5,-75,0,0,-0.00548091 -6452,5715:456:1,-156,-75,0,0,-0.00548091 -6453,5715:455:2,-155.5,-75,0,0,-0.00548214 -6454,5715:455:1,-155,-75,0,0,-0.00548337 -6455,5715:354:2,-154.5,-75,0,0,-0.00548337 -6456,5715:354:1,-154,-75,0,0,-0.00548337 -6457,5715:353:2,-153.5,-75,0,0,-0.00548337 -6458,5715:353:1,-153,-75,0,0,-0.00548337 -6459,5715:352:2,-152.5,-75,0,0,-0.00548582 -6460,5715:352:1,-152,-75,0,0,-0.00548701 -6461,5715:351:2,-151.5,-75,0,0,-0.00548824 -6462,5715:351:1,-151,-75,0,0,-0.00548824 -6463,5715:350:2,-150.5,-75,0,0,-0.00548824 -6464,5715:350:1,-150,-75,0,0,-0.00548701 -6465,5714:459:2,-149.5,-75,0,0,-0.00548824 -6466,5714:459:1,-149,-75,0,0,-0.00548824 -6467,5714:458:2,-148.5,-75,0,0,-0.00548824 -6468,5714:458:1,-148,-75,0,0,-0.00548947 -6469,5714:457:2,-147.5,-75,0,0,-0.00549069 -6470,5714:457:1,-147,-75,0,0,-0.00549069 -6471,5714:456:2,-146.5,-75,0,0,-0.00549189 -6472,5714:456:1,-146,-75,0,0,-0.00549312 -6473,5714:455:2,-145.5,-75,0,0,-0.00549312 -6474,5714:455:1,-145,-75,0,0,-0.00549312 -6475,5714:354:2,-144.5,-75,0,0,-0.00549312 -6476,5714:354:1,-144,-75,0,0,-0.00549312 -6477,5714:353:2,-143.5,-75,0,0,-0.00549312 -6478,5714:353:1,-143,-75,0,0,-0.00549312 -6479,5714:352:2,-142.5,-75,0,0,-0.00549189 -6480,5714:352:1,-142,-75,0,0,-0.00549189 -6481,5714:351:2,-141.5,-75,0,0,-0.00549189 -6482,5714:351:1,-141,-75,0,0,-0.00549189 -6483,5714:350:2,-140.5,-75,0,0,-0.00549312 -6484,5714:350:1,-140,-75,0,0,-0.00549189 -6485,5713:459:2,-139.5,-75,0,0,-0.00548947 -6486,5713:459:1,-139,-75,0,0,-0.00548824 -6487,5713:458:2,-138.5,-75,0,0,-0.00548582 -6488,5713:458:1,-138,-75,0,0,-0.00548337 -6489,5713:457:2,-137.5,-75,0,0,-0.00548091 -6490,5713:457:1,-137,-75,0,0,-0.0054785 -6491,5713:456:2,-136.5,-75,0,0,-0.0054785 -6492,5713:456:1,-136,-75,0,0,-0.00547605 -6493,5713:455:2,-135.5,-75,0,0,-0.00547119 -6494,5713:455:1,-135,-75,0,0,-0.00546755 -6495,5713:354:2,-134.5,-75,0,0,-0.00546755 -6496,5713:354:1,-134,-75,0,0,-0.00546878 -6497,5713:353:2,-133.5,-75,0,0,-0.00547119 -6498,5713:353:1,-133,-75,0,0,-0.00547241 -6499,5713:352:2,-132.5,-75,0,0,-0.00547486 -6500,5713:352:1,-132,-75,0,0,-0.00547727 -6501,5713:351:2,-131.5,-75,0,0,-0.00548214 -6502,5713:351:1,-131,-75,0,0,-0.00548947 -6503,5713:350:2,-130.5,-75,0,0,-0.00550658 -6504,5713:350:1,-130,-75,0,0,-0.0055434 -6505,5712:459:2,-129.5,-75,0,0,-0.00563277 -6506,5712:459:1,-129,-75,0,0,-0.00590709 -6507,5712:458:2,-128.5,-75,0,0,-0.00593738 -6508,5712:458:1,-128,-75,0,0,-0.00555077 -6509,5712:457:2,-127.5,-75,0,0,-0.00545663 -6510,5712:354:2,-124.5,-75,0,0,-0.00572108 -6511,5712:354:1,-124,-75,0,0,-0.00574398 -6512,5712:353:2,-123.5,-75,0,0,-0.0057236 -6513,5712:353:1,-123,-75,0,0,-0.00560781 -6514,5712:352:2,-122.5,-75,0,0,-0.00553108 -6515,5712:352:1,-122,-75,0,0,-0.00551637 -6516,5712:351:2,-121.5,-75,0,0,-0.00553352 -6517,5712:351:1,-121,-75,0,0,-0.00552985 -6518,5712:350:2,-120.5,-75,0,0,-0.00551513 -6519,5712:350:1,-120,-75,0,0,-0.00551637 -6520,5711:459:2,-119.5,-75,0,0,-0.00552003 -6521,5711:459:1,-119,-75,0,0,-0.00552494 -6522,5711:458:2,-118.5,-75,0,0,-0.00552617 -6523,5711:458:1,-118,-75,0,0,-0.00551637 -6524,5711:457:2,-117.5,-75,0,0,-0.00550411 -6525,5711:457:1,-117,-75,0,0,-0.00549557 -6526,5711:456:2,-116.5,-75,0,0,-0.00549434 -6527,5711:456:1,-116,-75,0,0,-0.00550534 -6528,5711:455:2,-115.5,-75,0,0,-0.00556313 -6529,5711:455:1,-115,-75,0,0,-0.00569696 -6530,5711:354:2,-114.5,-75,0,0,-0.00573763 -6531,5711:354:1,-114,-75,0,0,-0.00592157 -6532,5711:353:2,-113.5,-75,0,0,-0.00618113 -6533,5711:353:1,-113,-75,0,0,-0.0062711 -6534,5711:352:2,-112.5,-75,0,0,-0.0060064 -6535,5711:352:1,-112,-75,0,0,-0.00549189 -6536,5711:351:2,-111.5,-75,0,0,-0.00543606 -6537,5711:351:1,-111,-75,0,0,-0.00553108 -6538,5711:350:2,-110.5,-75,0,0,-0.00581464 -6539,5710:458:1,-108,-75,0,0,-0.00557797 -6540,5710:457:2,-107.5,-75,0,0,-0.0055446 -6541,5710:457:1,-107,-75,0,0,-0.00552127 -6542,5710:456:2,-106.5,-75,0,0,-0.00551024 -6543,5710:456:1,-106,-75,0,0,-0.00550534 -6544,5710:455:2,-105.5,-75,0,0,-0.00551024 -6545,5710:455:1,-105,-75,0,0,-0.00552494 -6546,5710:354:2,-104.5,-75,0,0,-0.00558664 -6547,5710:354:1,-104,-75,0,0,-0.00611826 -6548,5710:353:2,-103.5,-75,0,0,-0.00642207 -6549,5710:353:1,-103,-75,0,0,-0.00660162 -6550,5708:353:1,-83,-75,0,0,-0.00846324 -6551,5708:352:2,-82.5,-75,0,0,-0.00828233 -6552,5708:352:1,-82,-75,0,0,-0.00847649 -6553,5708:351:2,-81.5,-75,0,0,-0.00844444 -6554,5706:350:2,-60.5,-75,0,0,-0.00552617 -6555,5706:350:1,-60,-75,0,0,-0.00551024 -6556,5705:459:2,-59.5,-75,0,0,-0.00548214 -6557,5705:459:1,-59,-75,0,0,-0.00546392 -6558,5705:458:2,-58.5,-75,0,0,-0.00545907 -6559,5705:458:1,-58,-75,0,0,-0.00545663 -6560,5705:457:2,-57.5,-75,0,0,-0.00545423 -6561,5705:457:1,-57,-75,0,0,-0.005453 -6562,5705:456:2,-56.5,-75,0,0,-0.005453 -6563,5705:456:1,-56,-75,0,0,-0.005453 -6564,5705:455:2,-55.5,-75,0,0,-0.00545179 -6565,5705:455:1,-55,-75,0,0,-0.00545057 -6566,5705:354:2,-54.5,-75,0,0,-0.00545179 -6567,5705:354:1,-54,-75,0,0,-0.00545179 -6568,5705:353:2,-53.5,-75,0,0,-0.00545423 -6569,5705:353:1,-53,-75,0,0,-0.00545541 -6570,5705:352:2,-52.5,-75,0,0,-0.00545541 -6571,5705:352:1,-52,-75,0,0,-0.00545663 -6572,5705:351:2,-51.5,-75,0,0,-0.00545785 -6573,5705:351:1,-51,-75,0,0,-0.00546026 -6574,5705:350:2,-50.5,-75,0,0,-0.00546026 -6575,5705:350:1,-50,-75,0,0,-0.00546148 -6576,5704:459:2,-49.5,-75,0,0,-0.00546148 -6577,5704:459:1,-49,-75,0,0,-0.00546148 -6578,5704:458:2,-48.5,-75,0,0,-0.00546148 -6579,5704:458:1,-48,-75,0,0,-0.00546148 -6580,5704:457:2,-47.5,-75,0,0,-0.00546148 -6581,5704:457:1,-47,-75,0,0,-0.0054627 -6582,5704:456:2,-46.5,-75,0,0,-0.0054627 -6583,5704:456:1,-46,-75,0,0,-0.00546392 -6584,5704:455:2,-45.5,-75,0,0,-0.00546392 -6585,5704:455:1,-45,-75,0,0,-0.00546633 -6586,5704:354:2,-44.5,-75,0,0,-0.00546633 -6587,5704:354:1,-44,-75,0,0,-0.00546878 -6588,5704:353:2,-43.5,-75,0,0,-0.00546878 -6589,5704:353:1,-43,-75,0,0,-0.00547 -6590,5704:352:2,-42.5,-75,0,0,-0.00547 -6591,5704:352:1,-42,-75,0,0,-0.00547119 -6592,5704:351:2,-41.5,-75,0,0,-0.00547119 -6593,5704:351:1,-41,-75,0,0,-0.00547119 -6594,5704:350:2,-40.5,-75,0,0,-0.00547119 -6595,5704:350:1,-40,-75,0,0,-0.00547119 -6596,5703:459:2,-39.5,-75,0,0,-0.00547119 -6597,5703:459:1,-39,-75,0,0,-0.00547119 -6598,5703:458:2,-38.5,-75,0,0,-0.00547119 -6599,5703:458:1,-38,-75,0,0,-0.00547 -6600,5703:457:2,-37.5,-75,0,0,-0.00547 -6601,5703:457:1,-37,-75,0,0,-0.00546878 -6602,5703:456:2,-36.5,-75,0,0,-0.00546878 -6603,5703:456:1,-36,-75,0,0,-0.00546878 -6604,5703:455:2,-35.5,-75,0,0,-0.00546878 -6605,5703:455:1,-35,-75,0,0,-0.00546878 -6606,5703:354:2,-34.5,-75,0,0,-0.00546878 -6607,5703:354:1,-34,-75,0,0,-0.00546878 -6608,5703:353:2,-33.5,-75,0,0,-0.00546878 -6609,5703:353:1,-33,-75,0,0,-0.00546878 -6610,5703:352:2,-32.5,-75,0,0,-0.00546878 -6611,5703:352:1,-32,-75,0,0,-0.00546878 -6612,5703:351:2,-31.5,-75,0,0,-0.00546878 -6613,5703:351:1,-31,-75,0,0,-0.00546878 -6614,5703:350:2,-30.5,-75,0,0,-0.00546755 -6615,5703:350:1,-30,-75,0,0,-0.00546755 -6616,5702:459:2,-29.5,-75,0,0,-0.00546633 -6617,5702:459:1,-29,-75,0,0,-0.00546633 -6618,5702:458:2,-28.5,-75,0,0,-0.00546633 -6619,5702:458:1,-28,-75,0,0,-0.00546633 -6620,5702:457:2,-27.5,-75,0,0,-0.00546633 -6621,5702:457:1,-27,-75,0,0,-0.00546511 -6622,5702:456:2,-26.5,-75,0,0,-0.00546511 -6623,5702:456:1,-26,-75,0,0,-0.00546392 -6624,5702:455:2,-25.5,-75,0,0,-0.0054627 -6625,5702:455:1,-25,-75,0,0,-0.00546148 -6626,5702:354:2,-24.5,-75,0,0,-0.00546148 -6627,5702:354:1,-24,-75,0,0,-0.00545907 -6628,5702:353:2,-23.5,-75,0,0,-0.00546148 -6629,5702:353:1,-23,-75,0,0,-0.00554216 -6630,5702:352:2,-22.5,-75,0,0,-0.00568812 -6631,5702:352:1,-22,-75,0,0,-0.00597576 -6632,5702:351:2,-21.5,-75,0,0,-0.00658256 -6633,5702:351:1,-21,-75,0,0,-0.00726275 -6634,5702:350:2,-20.5,-75,0,0,-0.00769204 -6635,5702:350:1,-20,-75,0,0,-0.00769544 -6636,3716:457:2,167.5,-75,0,0,-0.00554092 -6637,3716:458:1,168,-75,0,0,-0.0055434 -6638,3716:459:1,169,-75,0,0,-0.00552617 -6639,3716:459:2,169.5,-75,0,0,-0.00551024 -6640,3717:350:1,170,-75,0,0,-0.00548091 -6641,3717:350:2,170.5,-75,0,0,-0.00545785 -6642,3717:351:1,171,-75,0,0,-0.005453 -6643,3717:351:2,171.5,-75,0,0,-0.005453 -6644,3717:352:1,172,-75,0,0,-0.00544695 -6645,3717:352:2,172.5,-75,0,0,-0.00545423 -6646,3717:353:1,173,-75,0,0,-0.00575294 -6647,3717:353:2,173.5,-75,0,0,-0.00609787 -6648,3717:354:1,174,-75,0,0,-0.00646361 -6649,3717:354:2,174.5,-75,0,0,-0.00653152 -6650,3717:455:1,175,-75,0,0,-0.00655625 -6651,3717:455:2,175.5,-75,0,0,-0.00667991 -6652,3717:456:1,176,-75,0,0,-0.00692349 -6653,3717:456:2,176.5,-75,0,0,-0.00658551 -6654,3717:457:1,177,-75,0,0,-0.00570709 -6655,3717:457:2,177.5,-75,0,0,-0.00546511 -6656,3717:458:1,178,-75,0,0,-0.00544333 -6657,3717:458:2,178.5,-75,0,0,-0.00544695 -6658,3717:459:1,179,-75,0,0,-0.00545057 -6659,3717:459:2,179.5,-75,0,0,-0.00545423 -6660,3718:350:1,180,-75,0,0,-0.00545785 -6661,5718:140:3,-180,-74.5,0,0,-0.00545663 -6662,5717:249:4,-179.5,-74.5,0,0,-0.00546026 -6663,5717:249:3,-179,-74.5,0,0,-0.00546148 -6664,5717:248:4,-178.5,-74.5,0,0,-0.00546392 -6665,5717:248:3,-178,-74.5,0,0,-0.00546633 -6666,5717:247:4,-177.5,-74.5,0,0,-0.00546755 -6667,5717:247:3,-177,-74.5,0,0,-0.00546878 -6668,5717:246:4,-176.5,-74.5,0,0,-0.00546878 -6669,5717:246:3,-176,-74.5,0,0,-0.00546878 -6670,5717:245:4,-175.5,-74.5,0,0,-0.00546878 -6671,5717:245:3,-175,-74.5,0,0,-0.00547 -6672,5717:144:4,-174.5,-74.5,0,0,-0.00547119 -6673,5717:144:3,-174,-74.5,0,0,-0.00547241 -6674,5717:143:4,-173.5,-74.5,0,0,-0.00547241 -6675,5717:143:3,-173,-74.5,0,0,-0.00547119 -6676,5717:142:4,-172.5,-74.5,0,0,-0.00547119 -6677,5717:142:3,-172,-74.5,0,0,-0.00547119 -6678,5717:141:4,-171.5,-74.5,0,0,-0.00547119 -6679,5717:141:3,-171,-74.5,0,0,-0.00547119 -6680,5717:140:4,-170.5,-74.5,0,0,-0.00547 -6681,5717:140:3,-170,-74.5,0,0,-0.00547119 -6682,5716:249:4,-169.5,-74.5,0,0,-0.00547119 -6683,5716:249:3,-169,-74.5,0,0,-0.00547119 -6684,5716:248:4,-168.5,-74.5,0,0,-0.00547119 -6685,5716:248:3,-168,-74.5,0,0,-0.00547241 -6686,5716:247:4,-167.5,-74.5,0,0,-0.00547241 -6687,5716:247:3,-167,-74.5,0,0,-0.00547241 -6688,5716:246:4,-166.5,-74.5,0,0,-0.00547241 -6689,5716:246:3,-166,-74.5,0,0,-0.00547364 -6690,5716:245:4,-165.5,-74.5,0,0,-0.00547364 -6691,5716:245:3,-165,-74.5,0,0,-0.00547486 -6692,5716:144:4,-164.5,-74.5,0,0,-0.00547486 -6693,5716:144:3,-164,-74.5,0,0,-0.00547605 -6694,5716:143:4,-163.5,-74.5,0,0,-0.00547486 -6695,5716:143:3,-163,-74.5,0,0,-0.00547486 -6696,5716:142:4,-162.5,-74.5,0,0,-0.00547605 -6697,5716:142:3,-162,-74.5,0,0,-0.00547605 -6698,5716:141:4,-161.5,-74.5,0,0,-0.00547727 -6699,5716:141:3,-161,-74.5,0,0,-0.00547727 -6700,5716:140:4,-160.5,-74.5,0,0,-0.0054785 -6701,5716:140:3,-160,-74.5,0,0,-0.00547972 -6702,5715:249:4,-159.5,-74.5,0,0,-0.00547972 -6703,5715:249:3,-159,-74.5,0,0,-0.00547972 -6704,5715:248:4,-158.5,-74.5,0,0,-0.00548091 -6705,5715:248:3,-158,-74.5,0,0,-0.00548091 -6706,5715:247:4,-157.5,-74.5,0,0,-0.00548091 -6707,5715:247:3,-157,-74.5,0,0,-0.00548214 -6708,5715:246:4,-156.5,-74.5,0,0,-0.00548214 -6709,5715:246:3,-156,-74.5,0,0,-0.00548214 -6710,5715:245:4,-155.5,-74.5,0,0,-0.00548214 -6711,5715:245:3,-155,-74.5,0,0,-0.00548214 -6712,5715:144:4,-154.5,-74.5,0,0,-0.00548214 -6713,5715:144:3,-154,-74.5,0,0,-0.00548214 -6714,5715:143:4,-153.5,-74.5,0,0,-0.00548214 -6715,5715:143:3,-153,-74.5,0,0,-0.00548337 -6716,5715:142:4,-152.5,-74.5,0,0,-0.00548582 -6717,5715:142:3,-152,-74.5,0,0,-0.00548701 -6718,5715:141:4,-151.5,-74.5,0,0,-0.00548701 -6719,5715:141:3,-151,-74.5,0,0,-0.00548824 -6720,5715:140:4,-150.5,-74.5,0,0,-0.00548824 -6721,5715:140:3,-150,-74.5,0,0,-0.00548824 -6722,5714:249:4,-149.5,-74.5,0,0,-0.00548824 -6723,5714:249:3,-149,-74.5,0,0,-0.00548824 -6724,5714:248:4,-148.5,-74.5,0,0,-0.00548824 -6725,5714:248:3,-148,-74.5,0,0,-0.00548824 -6726,5714:247:4,-147.5,-74.5,0,0,-0.00548824 -6727,5714:247:3,-147,-74.5,0,0,-0.00548947 -6728,5714:246:4,-146.5,-74.5,0,0,-0.00549069 -6729,5714:246:3,-146,-74.5,0,0,-0.00549189 -6730,5714:245:4,-145.5,-74.5,0,0,-0.00549312 -6731,5714:245:3,-145,-74.5,0,0,-0.00549312 -6732,5714:144:4,-144.5,-74.5,0,0,-0.00549434 -6733,5714:144:3,-144,-74.5,0,0,-0.00549434 -6734,5714:143:4,-143.5,-74.5,0,0,-0.00549434 -6735,5714:143:3,-143,-74.5,0,0,-0.00549434 -6736,5714:142:4,-142.5,-74.5,0,0,-0.00549434 -6737,5714:142:3,-142,-74.5,0,0,-0.00549434 -6738,5714:141:4,-141.5,-74.5,0,0,-0.00549312 -6739,5714:141:3,-141,-74.5,0,0,-0.00549312 -6740,5714:140:4,-140.5,-74.5,0,0,-0.00549434 -6741,5714:140:3,-140,-74.5,0,0,-0.00549434 -6742,5713:249:4,-139.5,-74.5,0,0,-0.00549434 -6743,5713:249:3,-139,-74.5,0,0,-0.00549189 -6744,5713:248:4,-138.5,-74.5,0,0,-0.00548824 -6745,5713:248:3,-138,-74.5,0,0,-0.00548582 -6746,5713:247:4,-137.5,-74.5,0,0,-0.00548337 -6747,5713:247:3,-137,-74.5,0,0,-0.00548214 -6748,5713:246:4,-136.5,-74.5,0,0,-0.00547972 -6749,5713:246:3,-136,-74.5,0,0,-0.00547727 -6750,5713:245:4,-135.5,-74.5,0,0,-0.00547486 -6751,5713:245:3,-135,-74.5,0,0,-0.00547241 -6752,5713:144:4,-134.5,-74.5,0,0,-0.00547 -6753,5713:144:3,-134,-74.5,0,0,-0.00547 -6754,5713:143:4,-133.5,-74.5,0,0,-0.00547119 -6755,5713:143:3,-133,-74.5,0,0,-0.00547364 -6756,5713:142:4,-132.5,-74.5,0,0,-0.00547486 -6757,5713:142:3,-132,-74.5,0,0,-0.00547605 -6758,5713:141:4,-131.5,-74.5,0,0,-0.00547727 -6759,5713:141:3,-131,-74.5,0,0,-0.00548091 -6760,5713:140:4,-130.5,-74.5,0,0,-0.00548091 -6761,5713:140:3,-130,-74.5,0,0,-0.00547972 -6762,5712:249:4,-129.5,-74.5,0,0,-0.00548091 -6763,5712:249:3,-129,-74.5,0,0,-0.00549677 -6764,5712:248:4,-128.5,-74.5,0,0,-0.00548947 -6765,5712:248:3,-128,-74.5,0,0,-0.00548091 -6766,5712:247:4,-127.5,-74.5,0,0,-0.00546755 -6767,5712:245:4,-125.5,-74.5,0,0,-0.00555077 -6768,5712:245:3,-125,-74.5,0,0,-0.005536 -6769,5712:144:4,-124.5,-74.5,0,0,-0.00555694 -6770,5712:144:3,-124,-74.5,0,0,-0.00554584 -6771,5712:143:4,-123.5,-74.5,0,0,-0.00553108 -6772,5712:143:3,-123,-74.5,0,0,-0.00552127 -6773,5712:142:4,-122.5,-74.5,0,0,-0.0055188 -6774,5712:142:3,-122,-74.5,0,0,-0.00551637 -6775,5712:141:4,-121.5,-74.5,0,0,-0.0055139 -6776,5712:141:3,-121,-74.5,0,0,-0.005509 -6777,5712:140:4,-120.5,-74.5,0,0,-0.00550165 -6778,5712:140:3,-120,-74.5,0,0,-0.005498 -6779,5711:249:4,-119.5,-74.5,0,0,-0.00549677 -6780,5711:249:3,-119,-74.5,0,0,-0.00550288 -6781,5711:248:4,-118.5,-74.5,0,0,-0.005509 -6782,5711:248:3,-118,-74.5,0,0,-0.00550165 -6783,5711:247:4,-117.5,-74.5,0,0,-0.00549557 -6784,5711:247:3,-117,-74.5,0,0,-0.00548947 -6785,5711:246:4,-116.5,-74.5,0,0,-0.00548701 -6786,5711:246:3,-116,-74.5,0,0,-0.00549189 -6787,5711:245:4,-115.5,-74.5,0,0,-0.00550534 -6788,5711:245:3,-115,-74.5,0,0,-0.00552003 -6789,5711:144:4,-114.5,-74.5,0,0,-0.00551147 -6790,5711:144:3,-114,-74.5,0,0,-0.00550658 -6791,5711:143:4,-113.5,-74.5,0,0,-0.00552494 -6792,5711:143:3,-113,-74.5,0,0,-0.00554216 -6793,5711:142:4,-112.5,-74.5,0,0,-0.00549312 -6794,5711:142:3,-112,-74.5,0,0,-0.0054627 -6795,5711:141:4,-111.5,-74.5,0,0,-0.00546148 -6796,5711:141:3,-111,-74.5,0,0,-0.00546392 -6797,5711:140:4,-110.5,-74.5,0,0,-0.00544695 -6798,5710:248:4,-108.5,-74.5,0,0,-0.00553724 -6799,5710:248:3,-108,-74.5,0,0,-0.00552617 -6800,5710:247:4,-107.5,-74.5,0,0,-0.00551266 -6801,5710:247:3,-107,-74.5,0,0,-0.00550534 -6802,5710:246:4,-106.5,-74.5,0,0,-0.00550165 -6803,5710:246:3,-106,-74.5,0,0,-0.00550288 -6804,5710:245:4,-105.5,-74.5,0,0,-0.00551266 -6805,5710:245:3,-105,-74.5,0,0,-0.00553108 -6806,5710:144:4,-104.5,-74.5,0,0,-0.00563277 -6807,5710:144:3,-104,-74.5,0,0,-0.00621283 -6808,5710:143:4,-103.5,-74.5,0,0,-0.00645213 -6809,5710:143:3,-103,-74.5,0,0,-0.00665764 -6810,5710:142:4,-102.5,-74.5,0,0,-0.0067291 -6811,5710:142:3,-102,-74.5,0,0,-0.00673061 -6812,5708:144:3,-84,-74.5,0,0,-0.00841813 -6813,5708:143:4,-83.5,-74.5,0,0,-0.00807108 -6814,5708:143:3,-83,-74.5,0,0,-0.00796216 -6815,5708:142:4,-82.5,-74.5,0,0,-0.00786348 -6816,5708:142:3,-82,-74.5,0,0,-0.00815961 -6817,5708:141:4,-81.5,-74.5,0,0,-0.00841252 -6818,5706:141:3,-61,-74.5,0,0,-0.00554953 -6819,5706:140:4,-60.5,-74.5,0,0,-0.00553968 -6820,5706:140:3,-60,-74.5,0,0,-0.00551756 -6821,5705:249:4,-59.5,-74.5,0,0,-0.00549069 -6822,5705:249:3,-59,-74.5,0,0,-0.00546878 -6823,5705:248:4,-58.5,-74.5,0,0,-0.00546148 -6824,5705:248:3,-58,-74.5,0,0,-0.00545785 -6825,5705:247:4,-57.5,-74.5,0,0,-0.00545541 -6826,5705:247:3,-57,-74.5,0,0,-0.00545423 -6827,5705:246:4,-56.5,-74.5,0,0,-0.00545423 -6828,5705:246:3,-56,-74.5,0,0,-0.005453 -6829,5705:245:4,-55.5,-74.5,0,0,-0.005453 -6830,5705:245:3,-55,-74.5,0,0,-0.00545179 -6831,5705:144:4,-54.5,-74.5,0,0,-0.00545179 -6832,5705:144:3,-54,-74.5,0,0,-0.005453 -6833,5705:143:4,-53.5,-74.5,0,0,-0.00545423 -6834,5705:143:3,-53,-74.5,0,0,-0.00545423 -6835,5705:142:4,-52.5,-74.5,0,0,-0.00545541 -6836,5705:142:3,-52,-74.5,0,0,-0.00545663 -6837,5705:141:4,-51.5,-74.5,0,0,-0.00545785 -6838,5705:141:3,-51,-74.5,0,0,-0.00545907 -6839,5705:140:4,-50.5,-74.5,0,0,-0.00546148 -6840,5705:140:3,-50,-74.5,0,0,-0.0054627 -6841,5704:249:4,-49.5,-74.5,0,0,-0.00546392 -6842,5704:249:3,-49,-74.5,0,0,-0.00546392 -6843,5704:248:4,-48.5,-74.5,0,0,-0.0054627 -6844,5704:248:3,-48,-74.5,0,0,-0.0054627 -6845,5704:247:4,-47.5,-74.5,0,0,-0.0054627 -6846,5704:247:3,-47,-74.5,0,0,-0.0054627 -6847,5704:246:4,-46.5,-74.5,0,0,-0.00546392 -6848,5704:246:3,-46,-74.5,0,0,-0.00546392 -6849,5704:245:4,-45.5,-74.5,0,0,-0.00546633 -6850,5704:245:3,-45,-74.5,0,0,-0.00546878 -6851,5704:144:4,-44.5,-74.5,0,0,-0.00546878 -6852,5704:144:3,-44,-74.5,0,0,-0.00547 -6853,5704:143:4,-43.5,-74.5,0,0,-0.00547 -6854,5704:143:3,-43,-74.5,0,0,-0.00547 -6855,5704:142:4,-42.5,-74.5,0,0,-0.00547119 -6856,5704:142:3,-42,-74.5,0,0,-0.00547119 -6857,5704:141:4,-41.5,-74.5,0,0,-0.00547119 -6858,5704:141:3,-41,-74.5,0,0,-0.00547119 -6859,5704:140:4,-40.5,-74.5,0,0,-0.00547119 -6860,5704:140:3,-40,-74.5,0,0,-0.00547119 -6861,5703:249:4,-39.5,-74.5,0,0,-0.00547119 -6862,5703:249:3,-39,-74.5,0,0,-0.00547119 -6863,5703:248:4,-38.5,-74.5,0,0,-0.00547 -6864,5703:248:3,-38,-74.5,0,0,-0.00546878 -6865,5703:247:4,-37.5,-74.5,0,0,-0.00546878 -6866,5703:247:3,-37,-74.5,0,0,-0.00546878 -6867,5703:246:4,-36.5,-74.5,0,0,-0.00546755 -6868,5703:246:3,-36,-74.5,0,0,-0.00546755 -6869,5703:245:4,-35.5,-74.5,0,0,-0.00546755 -6870,5703:245:3,-35,-74.5,0,0,-0.00546755 -6871,5703:144:4,-34.5,-74.5,0,0,-0.00546755 -6872,5703:144:3,-34,-74.5,0,0,-0.00546755 -6873,5703:143:4,-33.5,-74.5,0,0,-0.00546633 -6874,5703:143:3,-33,-74.5,0,0,-0.00546633 -6875,5703:142:4,-32.5,-74.5,0,0,-0.00546755 -6876,5703:142:3,-32,-74.5,0,0,-0.00546755 -6877,5703:141:4,-31.5,-74.5,0,0,-0.00546755 -6878,5703:141:3,-31,-74.5,0,0,-0.00546755 -6879,5703:140:4,-30.5,-74.5,0,0,-0.00546633 -6880,5703:140:3,-30,-74.5,0,0,-0.00546633 -6881,5702:249:4,-29.5,-74.5,0,0,-0.00546511 -6882,5702:249:3,-29,-74.5,0,0,-0.00546392 -6883,5702:248:4,-28.5,-74.5,0,0,-0.00546392 -6884,5702:248:3,-28,-74.5,0,0,-0.00546511 -6885,5702:247:4,-27.5,-74.5,0,0,-0.00546511 -6886,5702:247:3,-27,-74.5,0,0,-0.00546511 -6887,5702:246:4,-26.5,-74.5,0,0,-0.00546511 -6888,5702:246:3,-26,-74.5,0,0,-0.00546392 -6889,5702:245:4,-25.5,-74.5,0,0,-0.00546392 -6890,5702:245:3,-25,-74.5,0,0,-0.00546148 -6891,5702:144:4,-24.5,-74.5,0,0,-0.00546026 -6892,5702:144:3,-24,-74.5,0,0,-0.00545785 -6893,5702:143:4,-23.5,-74.5,0,0,-0.00545785 -6894,5702:143:3,-23,-74.5,0,0,-0.0054627 -6895,5702:142:4,-22.5,-74.5,0,0,-0.00546026 -6896,5702:142:3,-22,-74.5,0,0,-0.0054785 -6897,5702:141:4,-21.5,-74.5,0,0,-0.00566918 -6898,5702:141:3,-21,-74.5,0,0,-0.00634403 -6899,5702:140:4,-20.5,-74.5,0,0,-0.00694817 -6900,5702:140:3,-20,-74.5,0,0,-0.00624465 -6901,3716:249:4,169.5,-74.5,0,0,-0.00550534 -6902,3717:140:4,170.5,-74.5,0,0,-0.00545057 -6903,3717:141:3,171,-74.5,0,0,-0.00545179 -6904,3717:141:4,171.5,-74.5,0,0,-0.00545663 -6905,3717:142:3,172,-74.5,0,0,-0.00545057 -6906,3717:142:4,172.5,-74.5,0,0,-0.00543728 -6907,3717:143:3,173,-74.5,0,0,-0.00563151 -6908,3717:143:4,173.5,-74.5,0,0,-0.00600506 -6909,3717:144:3,174,-74.5,0,0,-0.00620865 -6910,3717:144:4,174.5,-74.5,0,0,-0.00638791 -6911,3717:245:3,175,-74.5,0,0,-0.0064021 -6912,3717:245:4,175.5,-74.5,0,0,-0.00622388 -6913,3717:246:3,176,-74.5,0,0,-0.00589529 -6914,3717:246:4,176.5,-74.5,0,0,-0.00565658 -6915,3717:247:3,177,-74.5,0,0,-0.0055557 -6916,3717:247:4,177.5,-74.5,0,0,-0.00545423 -6917,3717:248:3,178,-74.5,0,0,-0.00544211 -6918,3717:248:4,178.5,-74.5,0,0,-0.00544816 -6919,3717:249:3,179,-74.5,0,0,-0.00545057 -6920,3717:249:4,179.5,-74.5,0,0,-0.005453 -6921,3718:140:3,180,-74.5,0,0,-0.00545663 -6922,5718:140:1,-180,-74,0,0,-0.00545663 -6923,5717:249:2,-179.5,-74,0,0,-0.00546026 -6924,5717:249:1,-179,-74,0,0,-0.0054627 -6925,5717:248:2,-178.5,-74,0,0,-0.00546392 -6926,5717:248:1,-178,-74,0,0,-0.00546511 -6927,5717:247:2,-177.5,-74,0,0,-0.00546633 -6928,5717:247:1,-177,-74,0,0,-0.00546878 -6929,5717:246:2,-176.5,-74,0,0,-0.00546878 -6930,5717:246:1,-176,-74,0,0,-0.00546878 -6931,5717:245:2,-175.5,-74,0,0,-0.00546878 -6932,5717:245:1,-175,-74,0,0,-0.00546878 -6933,5717:144:2,-174.5,-74,0,0,-0.00547 -6934,5717:144:1,-174,-74,0,0,-0.00547119 -6935,5717:143:2,-173.5,-74,0,0,-0.00547119 -6936,5717:143:1,-173,-74,0,0,-0.00547119 -6937,5717:142:2,-172.5,-74,0,0,-0.00547119 -6938,5717:142:1,-172,-74,0,0,-0.00547 -6939,5717:141:2,-171.5,-74,0,0,-0.00547119 -6940,5717:141:1,-171,-74,0,0,-0.00547 -6941,5717:140:2,-170.5,-74,0,0,-0.00546878 -6942,5717:140:1,-170,-74,0,0,-0.00546878 -6943,5716:249:2,-169.5,-74,0,0,-0.00547 -6944,5716:249:1,-169,-74,0,0,-0.00547 -6945,5716:248:2,-168.5,-74,0,0,-0.00547119 -6946,5716:248:1,-168,-74,0,0,-0.00547119 -6947,5716:247:2,-167.5,-74,0,0,-0.00547119 -6948,5716:247:1,-167,-74,0,0,-0.00547119 -6949,5716:246:2,-166.5,-74,0,0,-0.00547241 -6950,5716:246:1,-166,-74,0,0,-0.00547241 -6951,5716:245:2,-165.5,-74,0,0,-0.00547364 -6952,5716:245:1,-165,-74,0,0,-0.00547364 -6953,5716:144:2,-164.5,-74,0,0,-0.00547486 -6954,5716:144:1,-164,-74,0,0,-0.00547605 -6955,5716:143:2,-163.5,-74,0,0,-0.00547605 -6956,5716:143:1,-163,-74,0,0,-0.00547605 -6957,5716:142:2,-162.5,-74,0,0,-0.00547727 -6958,5716:142:1,-162,-74,0,0,-0.0054785 -6959,5716:141:2,-161.5,-74,0,0,-0.0054785 -6960,5716:141:1,-161,-74,0,0,-0.0054785 -6961,5716:140:2,-160.5,-74,0,0,-0.00547972 -6962,5716:140:1,-160,-74,0,0,-0.00548091 -6963,5715:249:2,-159.5,-74,0,0,-0.00548091 -6964,5715:249:1,-159,-74,0,0,-0.00548214 -6965,5715:248:2,-158.5,-74,0,0,-0.00548214 -6966,5715:248:1,-158,-74,0,0,-0.00548214 -6967,5715:247:2,-157.5,-74,0,0,-0.00548337 -6968,5715:247:1,-157,-74,0,0,-0.00548337 -6969,5715:246:2,-156.5,-74,0,0,-0.00548337 -6970,5715:246:1,-156,-74,0,0,-0.00548459 -6971,5715:245:2,-155.5,-74,0,0,-0.00548337 -6972,5715:245:1,-155,-74,0,0,-0.00548337 -6973,5715:144:2,-154.5,-74,0,0,-0.00548214 -6974,5715:144:1,-154,-74,0,0,-0.00548214 -6975,5715:143:2,-153.5,-74,0,0,-0.00548214 -6976,5715:143:1,-153,-74,0,0,-0.00548214 -6977,5715:142:2,-152.5,-74,0,0,-0.00548337 -6978,5715:142:1,-152,-74,0,0,-0.00548582 -6979,5715:141:2,-151.5,-74,0,0,-0.00548701 -6980,5715:141:1,-151,-74,0,0,-0.00548701 -6981,5715:140:2,-150.5,-74,0,0,-0.00548824 -6982,5715:140:1,-150,-74,0,0,-0.00548824 -6983,5714:249:2,-149.5,-74,0,0,-0.00548824 -6984,5714:249:1,-149,-74,0,0,-0.00548824 -6985,5714:248:2,-148.5,-74,0,0,-0.00548947 -6986,5714:248:1,-148,-74,0,0,-0.00548947 -6987,5714:247:2,-147.5,-74,0,0,-0.00548947 -6988,5714:247:1,-147,-74,0,0,-0.00548947 -6989,5714:246:2,-146.5,-74,0,0,-0.00549069 -6990,5714:246:1,-146,-74,0,0,-0.00549069 -6991,5714:245:2,-145.5,-74,0,0,-0.00549069 -6992,5714:245:1,-145,-74,0,0,-0.00549069 -6993,5714:144:2,-144.5,-74,0,0,-0.00549069 -6994,5714:144:1,-144,-74,0,0,-0.00549069 -6995,5714:143:2,-143.5,-74,0,0,-0.00549189 -6996,5714:143:1,-143,-74,0,0,-0.00549312 -6997,5714:142:2,-142.5,-74,0,0,-0.00549434 -6998,5714:142:1,-142,-74,0,0,-0.00549312 -6999,5714:141:2,-141.5,-74,0,0,-0.00549312 -7000,5714:141:1,-141,-74,0,0,-0.00549189 -7001,5714:140:2,-140.5,-74,0,0,-0.00549312 -7002,5714:140:1,-140,-74,0,0,-0.00549557 -7003,5713:249:2,-139.5,-74,0,0,-0.005498 -7004,5713:249:1,-139,-74,0,0,-0.00549677 -7005,5713:248:2,-138.5,-74,0,0,-0.00549312 -7006,5713:248:1,-138,-74,0,0,-0.00549069 -7007,5713:247:2,-137.5,-74,0,0,-0.00548824 -7008,5713:247:1,-137,-74,0,0,-0.00548582 -7009,5713:246:2,-136.5,-74,0,0,-0.00548459 -7010,5713:246:1,-136,-74,0,0,-0.00548214 -7011,5713:245:2,-135.5,-74,0,0,-0.00548091 -7012,5713:245:1,-135,-74,0,0,-0.0054785 -7013,5713:144:2,-134.5,-74,0,0,-0.00547605 -7014,5713:144:1,-134,-74,0,0,-0.00547241 -7015,5713:143:2,-133.5,-74,0,0,-0.00547241 -7016,5713:143:1,-133,-74,0,0,-0.00547364 -7017,5713:142:2,-132.5,-74,0,0,-0.00547605 -7018,5713:142:1,-132,-74,0,0,-0.00547727 -7019,5713:141:2,-131.5,-74,0,0,-0.00547727 -7020,5713:141:1,-131,-74,0,0,-0.00547727 -7021,5713:140:2,-130.5,-74,0,0,-0.0054785 -7022,5713:140:1,-130,-74,0,0,-0.00548091 -7023,5712:249:2,-129.5,-74,0,0,-0.00548337 -7024,5712:249:1,-129,-74,0,0,-0.00548582 -7025,5712:248:2,-128.5,-74,0,0,-0.00548947 -7026,5712:248:1,-128,-74,0,0,-0.00549069 -7027,5712:247:2,-127.5,-74,0,0,-0.00549557 -7028,5712:247:1,-127,-74,0,0,-0.00549677 -7029,5712:246:2,-126.5,-74,0,0,-0.00550046 -7030,5712:246:1,-126,-74,0,0,-0.005509 -7031,5712:245:2,-125.5,-74,0,0,-0.00551637 -7032,5712:245:1,-125,-74,0,0,-0.0055237 -7033,5712:144:2,-124.5,-74,0,0,-0.00552861 -7034,5712:144:1,-124,-74,0,0,-0.00552003 -7035,5712:143:2,-123.5,-74,0,0,-0.00551024 -7036,5712:143:1,-123,-74,0,0,-0.005509 -7037,5712:142:2,-122.5,-74,0,0,-0.00551024 -7038,5712:142:1,-122,-74,0,0,-0.00550534 -7039,5712:141:2,-121.5,-74,0,0,-0.005498 -7040,5712:141:1,-121,-74,0,0,-0.00549557 -7041,5712:140:2,-120.5,-74,0,0,-0.00549189 -7042,5712:140:1,-120,-74,0,0,-0.00548947 -7043,5711:249:2,-119.5,-74,0,0,-0.00548947 -7044,5711:249:1,-119,-74,0,0,-0.00549189 -7045,5711:248:2,-118.5,-74,0,0,-0.00549434 -7046,5711:248:1,-118,-74,0,0,-0.00549069 -7047,5711:247:2,-117.5,-74,0,0,-0.00548701 -7048,5711:247:1,-117,-74,0,0,-0.00548337 -7049,5711:246:2,-116.5,-74,0,0,-0.00548214 -7050,5711:246:1,-116,-74,0,0,-0.00548337 -7051,5711:245:2,-115.5,-74,0,0,-0.00548582 -7052,5711:245:1,-115,-74,0,0,-0.00548337 -7053,5711:144:2,-114.5,-74,0,0,-0.00547972 -7054,5711:144:1,-114,-74,0,0,-0.00547605 -7055,5711:143:2,-113.5,-74,0,0,-0.00547364 -7056,5711:143:1,-113,-74,0,0,-0.00547 -7057,5711:142:2,-112.5,-74,0,0,-0.00546755 -7058,5711:142:1,-112,-74,0,0,-0.00546511 -7059,5711:141:2,-111.5,-74,0,0,-0.00546755 -7060,5711:141:1,-111,-74,0,0,-0.00547241 -7061,5711:140:2,-110.5,-74,0,0,-0.00547605 -7062,5711:140:1,-110,-74,0,0,-0.00547972 -7063,5710:249:2,-109.5,-74,0,0,-0.00548947 -7064,5710:249:1,-109,-74,0,0,-0.0055139 -7065,5710:248:2,-108.5,-74,0,0,-0.00550777 -7066,5710:248:1,-108,-74,0,0,-0.00550046 -7067,5710:247:2,-107.5,-74,0,0,-0.005498 -7068,5710:247:1,-107,-74,0,0,-0.005498 -7069,5710:246:2,-106.5,-74,0,0,-0.00550046 -7070,5710:246:1,-106,-74,0,0,-0.00550534 -7071,5710:245:2,-105.5,-74,0,0,-0.0055188 -7072,5710:245:1,-105,-74,0,0,-0.00558047 -7073,5710:144:2,-104.5,-74,0,0,-0.00603851 -7074,5710:144:1,-104,-74,0,0,-0.00648954 -7075,5710:143:2,-103.5,-74,0,0,-0.00669775 -7076,5708:245:2,-85.5,-74,0,0,-0.00779374 -7077,5708:245:1,-85,-74,0,0,-0.00793558 -7078,5708:144:2,-84.5,-74,0,0,-0.00765617 -7079,5708:144:1,-84,-74,0,0,-0.00753778 -7080,5708:143:2,-83.5,-74,0,0,-0.00723209 -7081,5708:143:1,-83,-74,0,0,-0.0070337 -7082,5708:142:2,-82.5,-74,0,0,-0.00712349 -7083,5708:142:1,-82,-74,0,0,-0.0073784 -7084,5708:141:2,-81.5,-74,0,0,-0.00768348 -7085,5708:141:1,-81,-74,0,0,-0.0080531 -7086,5705:249:2,-59.5,-74,0,0,-0.00550777 -7087,5705:249:1,-59,-74,0,0,-0.00549312 -7088,5705:248:2,-58.5,-74,0,0,-0.00547119 -7089,5705:248:1,-58,-74,0,0,-0.00545785 -7090,5705:247:2,-57.5,-74,0,0,-0.00545663 -7091,5705:247:1,-57,-74,0,0,-0.00545541 -7092,5705:246:2,-56.5,-74,0,0,-0.00545423 -7093,5705:246:1,-56,-74,0,0,-0.005453 -7094,5705:245:2,-55.5,-74,0,0,-0.005453 -7095,5705:245:1,-55,-74,0,0,-0.005453 -7096,5705:144:2,-54.5,-74,0,0,-0.005453 -7097,5705:144:1,-54,-74,0,0,-0.005453 -7098,5705:143:2,-53.5,-74,0,0,-0.00545423 -7099,5705:143:1,-53,-74,0,0,-0.00545541 -7100,5705:142:2,-52.5,-74,0,0,-0.00545541 -7101,5705:142:1,-52,-74,0,0,-0.00545541 -7102,5705:141:2,-51.5,-74,0,0,-0.00545663 -7103,5705:141:1,-51,-74,0,0,-0.00545785 -7104,5705:140:2,-50.5,-74,0,0,-0.00546026 -7105,5705:140:1,-50,-74,0,0,-0.0054627 -7106,5704:249:2,-49.5,-74,0,0,-0.00546511 -7107,5704:249:1,-49,-74,0,0,-0.00546511 -7108,5704:248:2,-48.5,-74,0,0,-0.00546392 -7109,5704:248:1,-48,-74,0,0,-0.00546392 -7110,5704:247:2,-47.5,-74,0,0,-0.0054627 -7111,5704:247:1,-47,-74,0,0,-0.0054627 -7112,5704:246:2,-46.5,-74,0,0,-0.00546511 -7113,5704:246:1,-46,-74,0,0,-0.00546633 -7114,5704:245:2,-45.5,-74,0,0,-0.00546878 -7115,5704:245:1,-45,-74,0,0,-0.00546878 -7116,5704:144:2,-44.5,-74,0,0,-0.00547 -7117,5704:144:1,-44,-74,0,0,-0.00547 -7118,5704:143:2,-43.5,-74,0,0,-0.00547 -7119,5704:143:1,-43,-74,0,0,-0.00547119 -7120,5704:142:2,-42.5,-74,0,0,-0.00547119 -7121,5704:142:1,-42,-74,0,0,-0.00547119 -7122,5704:141:2,-41.5,-74,0,0,-0.00547119 -7123,5704:141:1,-41,-74,0,0,-0.00547119 -7124,5704:140:2,-40.5,-74,0,0,-0.00547119 -7125,5704:140:1,-40,-74,0,0,-0.00547119 -7126,5703:249:2,-39.5,-74,0,0,-0.00547 -7127,5703:249:1,-39,-74,0,0,-0.00547 -7128,5703:248:2,-38.5,-74,0,0,-0.00547 -7129,5703:248:1,-38,-74,0,0,-0.00546878 -7130,5703:247:2,-37.5,-74,0,0,-0.00546878 -7131,5703:247:1,-37,-74,0,0,-0.00546755 -7132,5703:246:2,-36.5,-74,0,0,-0.00546755 -7133,5703:246:1,-36,-74,0,0,-0.00546633 -7134,5703:245:2,-35.5,-74,0,0,-0.00546633 -7135,5703:245:1,-35,-74,0,0,-0.00546633 -7136,5703:144:2,-34.5,-74,0,0,-0.00546633 -7137,5703:144:1,-34,-74,0,0,-0.00546511 -7138,5703:143:2,-33.5,-74,0,0,-0.00546511 -7139,5703:143:1,-33,-74,0,0,-0.00546511 -7140,5703:142:2,-32.5,-74,0,0,-0.00546511 -7141,5703:142:1,-32,-74,0,0,-0.00546633 -7142,5703:141:2,-31.5,-74,0,0,-0.00546633 -7143,5703:141:1,-31,-74,0,0,-0.00546633 -7144,5703:140:2,-30.5,-74,0,0,-0.00546511 -7145,5703:140:1,-30,-74,0,0,-0.00546511 -7146,5702:249:2,-29.5,-74,0,0,-0.00546511 -7147,5702:249:1,-29,-74,0,0,-0.00546392 -7148,5702:248:2,-28.5,-74,0,0,-0.00546392 -7149,5702:248:1,-28,-74,0,0,-0.00546392 -7150,5702:247:2,-27.5,-74,0,0,-0.00546392 -7151,5702:247:1,-27,-74,0,0,-0.00546392 -7152,5702:246:2,-26.5,-74,0,0,-0.00546392 -7153,5702:246:1,-26,-74,0,0,-0.00546392 -7154,5702:245:2,-25.5,-74,0,0,-0.00546392 -7155,5702:245:1,-25,-74,0,0,-0.00546392 -7156,5702:144:2,-24.5,-74,0,0,-0.0054627 -7157,5702:144:1,-24,-74,0,0,-0.00546148 -7158,5702:143:2,-23.5,-74,0,0,-0.00545907 -7159,5702:143:1,-23,-74,0,0,-0.00545785 -7160,5702:142:2,-22.5,-74,0,0,-0.00545785 -7161,5702:142:1,-22,-74,0,0,-0.00545907 -7162,5702:141:2,-21.5,-74,0,0,-0.005453 -7163,5702:141:1,-21,-74,0,0,-0.00545785 -7164,5702:140:2,-20.5,-74,0,0,-0.00553968 -7165,5702:140:1,-20,-74,0,0,-0.00560033 -7166,5701:249:2,-19.5,-74,0,0,-0.0055225 -7167,3717:140:1,170,-74,0,0,-0.00546148 -7168,3717:140:2,170.5,-74,0,0,-0.00545179 -7169,3717:141:1,171,-74,0,0,-0.00545423 -7170,3717:141:2,171.5,-74,0,0,-0.00545785 -7171,3717:142:1,172,-74,0,0,-0.00545423 -7172,3717:142:2,172.5,-74,0,0,-0.00546755 -7173,3717:143:1,173,-74,0,0,-0.00569824 -7174,3717:143:2,173.5,-74,0,0,-0.00596649 -7175,3717:144:1,174,-74,0,0,-0.00606948 -7176,3717:144:2,174.5,-74,0,0,-0.00623216 -7177,3717:245:1,175,-74,0,0,-0.00630185 -7178,3717:245:2,175.5,-74,0,0,-0.00615372 -7179,3717:246:1,176,-74,0,0,-0.00563652 -7180,3717:246:2,176.5,-74,0,0,-0.00543606 -7181,3717:247:1,177,-74,0,0,-0.00544089 -7182,3717:247:2,177.5,-74,0,0,-0.00543363 -7183,3717:248:1,178,-74,0,0,-0.00544211 -7184,3717:248:2,178.5,-74,0,0,-0.00544695 -7185,3717:249:1,179,-74,0,0,-0.00545057 -7186,3717:249:2,179.5,-74,0,0,-0.005453 -7187,3718:140:1,180,-74,0,0,-0.00545663 -7188,5718:130:3,-180,-73.5,0,0,-0.00545541 -7189,5717:239:4,-179.5,-73.5,0,0,-0.00545907 -7190,5717:239:3,-179,-73.5,0,0,-0.00546148 -7191,5717:238:4,-178.5,-73.5,0,0,-0.0054627 -7192,5717:238:3,-178,-73.5,0,0,-0.00546392 -7193,5717:237:4,-177.5,-73.5,0,0,-0.00546511 -7194,5717:237:3,-177,-73.5,0,0,-0.00546633 -7195,5717:236:4,-176.5,-73.5,0,0,-0.00546755 -7196,5717:236:3,-176,-73.5,0,0,-0.00546755 -7197,5717:235:4,-175.5,-73.5,0,0,-0.00546755 -7198,5717:235:3,-175,-73.5,0,0,-0.00546755 -7199,5717:134:4,-174.5,-73.5,0,0,-0.00546755 -7200,5717:134:3,-174,-73.5,0,0,-0.00546878 -7201,5717:133:4,-173.5,-73.5,0,0,-0.00547119 -7202,5717:133:3,-173,-73.5,0,0,-0.00547241 -7203,5717:132:4,-172.5,-73.5,0,0,-0.00547119 -7204,5717:132:3,-172,-73.5,0,0,-0.00547119 -7205,5717:131:4,-171.5,-73.5,0,0,-0.00547 -7206,5717:131:3,-171,-73.5,0,0,-0.00547 -7207,5717:130:4,-170.5,-73.5,0,0,-0.00546878 -7208,5717:130:3,-170,-73.5,0,0,-0.00546878 -7209,5716:239:4,-169.5,-73.5,0,0,-0.00546878 -7210,5716:239:3,-169,-73.5,0,0,-0.00547 -7211,5716:238:4,-168.5,-73.5,0,0,-0.00547 -7212,5716:238:3,-168,-73.5,0,0,-0.00547 -7213,5716:237:4,-167.5,-73.5,0,0,-0.00547 -7214,5716:237:3,-167,-73.5,0,0,-0.00547 -7215,5716:236:4,-166.5,-73.5,0,0,-0.00547119 -7216,5716:236:3,-166,-73.5,0,0,-0.00547119 -7217,5716:235:4,-165.5,-73.5,0,0,-0.00547241 -7218,5716:235:3,-165,-73.5,0,0,-0.00547364 -7219,5716:134:4,-164.5,-73.5,0,0,-0.00547364 -7220,5716:134:3,-164,-73.5,0,0,-0.00547486 -7221,5716:133:4,-163.5,-73.5,0,0,-0.00547605 -7222,5716:133:3,-163,-73.5,0,0,-0.00547727 -7223,5716:132:4,-162.5,-73.5,0,0,-0.0054785 -7224,5716:132:3,-162,-73.5,0,0,-0.0054785 -7225,5716:131:4,-161.5,-73.5,0,0,-0.00547972 -7226,5716:131:3,-161,-73.5,0,0,-0.00547972 -7227,5716:130:4,-160.5,-73.5,0,0,-0.00547972 -7228,5716:130:3,-160,-73.5,0,0,-0.00548091 -7229,5715:239:4,-159.5,-73.5,0,0,-0.00548214 -7230,5715:239:3,-159,-73.5,0,0,-0.00548214 -7231,5715:238:4,-158.5,-73.5,0,0,-0.00548214 -7232,5715:238:3,-158,-73.5,0,0,-0.00548214 -7233,5715:237:4,-157.5,-73.5,0,0,-0.00548337 -7234,5715:237:3,-157,-73.5,0,0,-0.00548337 -7235,5715:236:4,-156.5,-73.5,0,0,-0.00548459 -7236,5715:236:3,-156,-73.5,0,0,-0.00548459 -7237,5715:235:4,-155.5,-73.5,0,0,-0.00548459 -7238,5715:235:3,-155,-73.5,0,0,-0.00548337 -7239,5715:134:4,-154.5,-73.5,0,0,-0.00548214 -7240,5715:134:3,-154,-73.5,0,0,-0.00548214 -7241,5715:133:4,-153.5,-73.5,0,0,-0.00548214 -7242,5715:133:3,-153,-73.5,0,0,-0.00548214 -7243,5715:132:4,-152.5,-73.5,0,0,-0.00548214 -7244,5715:132:3,-152,-73.5,0,0,-0.00548337 -7245,5715:131:4,-151.5,-73.5,0,0,-0.00548582 -7246,5715:131:3,-151,-73.5,0,0,-0.00548582 -7247,5715:130:4,-150.5,-73.5,0,0,-0.00548701 -7248,5715:130:3,-150,-73.5,0,0,-0.00548824 -7249,5714:239:4,-149.5,-73.5,0,0,-0.00548947 -7250,5714:239:3,-149,-73.5,0,0,-0.00549069 -7251,5714:238:4,-148.5,-73.5,0,0,-0.00549189 -7252,5714:238:3,-148,-73.5,0,0,-0.00549189 -7253,5714:237:4,-147.5,-73.5,0,0,-0.00549189 -7254,5714:237:3,-147,-73.5,0,0,-0.00549189 -7255,5714:236:4,-146.5,-73.5,0,0,-0.00549312 -7256,5714:236:3,-146,-73.5,0,0,-0.00549312 -7257,5714:235:4,-145.5,-73.5,0,0,-0.00549312 -7258,5714:235:3,-145,-73.5,0,0,-0.00549312 -7259,5714:134:4,-144.5,-73.5,0,0,-0.00549312 -7260,5714:134:3,-144,-73.5,0,0,-0.00549189 -7261,5714:133:4,-143.5,-73.5,0,0,-0.00549189 -7262,5714:133:3,-143,-73.5,0,0,-0.00549312 -7263,5714:132:4,-142.5,-73.5,0,0,-0.00549312 -7264,5714:132:3,-142,-73.5,0,0,-0.00549312 -7265,5714:131:4,-141.5,-73.5,0,0,-0.00549189 -7266,5714:131:3,-141,-73.5,0,0,-0.00549069 -7267,5714:130:4,-140.5,-73.5,0,0,-0.00548947 -7268,5714:130:3,-140,-73.5,0,0,-0.00549189 -7269,5713:239:4,-139.5,-73.5,0,0,-0.00549677 -7270,5713:239:3,-139,-73.5,0,0,-0.00550288 -7271,5713:238:4,-138.5,-73.5,0,0,-0.00550288 -7272,5713:238:3,-138,-73.5,0,0,-0.00550046 -7273,5713:237:4,-137.5,-73.5,0,0,-0.00549677 -7274,5713:237:3,-137,-73.5,0,0,-0.00549434 -7275,5713:236:4,-136.5,-73.5,0,0,-0.00549189 -7276,5713:236:3,-136,-73.5,0,0,-0.00548947 -7277,5713:235:4,-135.5,-73.5,0,0,-0.00548701 -7278,5713:235:3,-135,-73.5,0,0,-0.00548337 -7279,5713:134:4,-134.5,-73.5,0,0,-0.0054785 -7280,5713:134:3,-134,-73.5,0,0,-0.00547241 -7281,5713:133:4,-133.5,-73.5,0,0,-0.00547 -7282,5713:133:3,-133,-73.5,0,0,-0.00547119 -7283,5713:132:4,-132.5,-73.5,0,0,-0.00547486 -7284,5713:132:3,-132,-73.5,0,0,-0.0054785 -7285,5713:131:4,-131.5,-73.5,0,0,-0.00547972 -7286,5713:131:3,-131,-73.5,0,0,-0.00547972 -7287,5713:130:4,-130.5,-73.5,0,0,-0.00548091 -7288,5713:130:3,-130,-73.5,0,0,-0.00548337 -7289,5712:239:4,-129.5,-73.5,0,0,-0.00548459 -7290,5712:239:3,-129,-73.5,0,0,-0.00548701 -7291,5712:238:4,-128.5,-73.5,0,0,-0.00548701 -7292,5712:238:3,-128,-73.5,0,0,-0.00548824 -7293,5712:237:4,-127.5,-73.5,0,0,-0.00548947 -7294,5712:237:3,-127,-73.5,0,0,-0.00549312 -7295,5712:236:4,-126.5,-73.5,0,0,-0.00549923 -7296,5712:236:3,-126,-73.5,0,0,-0.00550777 -7297,5712:235:4,-125.5,-73.5,0,0,-0.00551637 -7298,5712:235:3,-125,-73.5,0,0,-0.00551756 -7299,5712:134:4,-124.5,-73.5,0,0,-0.00551024 -7300,5712:134:3,-124,-73.5,0,0,-0.00550165 -7301,5712:133:4,-123.5,-73.5,0,0,-0.005498 -7302,5712:133:3,-123,-73.5,0,0,-0.005498 -7303,5712:132:4,-122.5,-73.5,0,0,-0.005498 -7304,5712:132:3,-122,-73.5,0,0,-0.00549312 -7305,5712:131:4,-121.5,-73.5,0,0,-0.00549069 -7306,5712:131:3,-121,-73.5,0,0,-0.00548947 -7307,5712:130:4,-120.5,-73.5,0,0,-0.00548947 -7308,5712:130:3,-120,-73.5,0,0,-0.00548701 -7309,5711:239:4,-119.5,-73.5,0,0,-0.00548701 -7310,5711:239:3,-119,-73.5,0,0,-0.00548701 -7311,5711:238:4,-118.5,-73.5,0,0,-0.00548582 -7312,5711:238:3,-118,-73.5,0,0,-0.00548459 -7313,5711:237:4,-117.5,-73.5,0,0,-0.00548214 -7314,5711:237:3,-117,-73.5,0,0,-0.00548091 -7315,5711:236:4,-116.5,-73.5,0,0,-0.00547972 -7316,5711:236:3,-116,-73.5,0,0,-0.0054785 -7317,5711:235:4,-115.5,-73.5,0,0,-0.00547972 -7318,5711:235:3,-115,-73.5,0,0,-0.0054785 -7319,5711:134:4,-114.5,-73.5,0,0,-0.00547727 -7320,5711:134:3,-114,-73.5,0,0,-0.00547605 -7321,5711:133:4,-113.5,-73.5,0,0,-0.00547364 -7322,5711:133:3,-113,-73.5,0,0,-0.00547 -7323,5711:132:4,-112.5,-73.5,0,0,-0.00547 -7324,5711:132:3,-112,-73.5,0,0,-0.00547 -7325,5711:131:4,-111.5,-73.5,0,0,-0.00547119 -7326,5711:131:3,-111,-73.5,0,0,-0.00547241 -7327,5711:130:4,-110.5,-73.5,0,0,-0.00547605 -7328,5711:130:3,-110,-73.5,0,0,-0.00548214 -7329,5710:239:4,-109.5,-73.5,0,0,-0.00548701 -7330,5710:239:3,-109,-73.5,0,0,-0.00548824 -7331,5710:238:4,-108.5,-73.5,0,0,-0.00548947 -7332,5710:238:3,-108,-73.5,0,0,-0.00549312 -7333,5710:237:4,-107.5,-73.5,0,0,-0.00549677 -7334,5710:237:3,-107,-73.5,0,0,-0.00549923 -7335,5710:236:4,-106.5,-73.5,0,0,-0.00550411 -7336,5710:236:3,-106,-73.5,0,0,-0.00551513 -7337,5710:235:4,-105.5,-73.5,0,0,-0.0055557 -7338,5710:235:3,-105,-73.5,0,0,-0.00588482 -7339,5710:134:4,-104.5,-73.5,0,0,-0.00633977 -7340,5710:134:3,-104,-73.5,0,0,-0.00655772 -7341,5708:236:4,-86.5,-73.5,0,0,-0.00642779 -7342,5708:236:3,-86,-73.5,0,0,-0.00697606 -7343,5708:235:4,-85.5,-73.5,0,0,-0.00698691 -7344,5708:235:3,-85,-73.5,0,0,-0.00639928 -7345,5708:134:4,-84.5,-73.5,0,0,-0.00590974 -7346,5708:134:3,-84,-73.5,0,0,-0.00598639 -7347,5708:133:4,-83.5,-73.5,0,0,-0.00624325 -7348,5708:133:3,-83,-73.5,0,0,-0.00629343 -7349,5708:132:4,-82.5,-73.5,0,0,-0.00628366 -7350,5708:132:3,-82,-73.5,0,0,-0.00638791 -7351,5708:131:4,-81.5,-73.5,0,0,-0.00670967 -7352,5708:131:3,-81,-73.5,0,0,-0.00710291 -7353,5708:130:4,-80.5,-73.5,0,0,-0.00740969 -7354,5708:130:3,-80,-73.5,0,0,-0.00777121 -7355,5707:239:4,-79.5,-73.5,0,0,-0.00763913 -7356,5707:134:3,-74,-73.5,0,0,-0.00694505 -7357,5707:133:4,-73.5,-73.5,0,0,-0.00709187 -7358,5707:133:3,-73,-73.5,0,0,-0.00710132 -7359,5705:239:4,-59.5,-73.5,0,0,-0.00550288 -7360,5705:239:3,-59,-73.5,0,0,-0.00548459 -7361,5705:238:4,-58.5,-73.5,0,0,-0.00547241 -7362,5705:238:3,-58,-73.5,0,0,-0.00546148 -7363,5705:237:4,-57.5,-73.5,0,0,-0.00545785 -7364,5705:237:3,-57,-73.5,0,0,-0.00545541 -7365,5705:236:4,-56.5,-73.5,0,0,-0.00545423 -7366,5705:236:3,-56,-73.5,0,0,-0.00545423 -7367,5705:235:4,-55.5,-73.5,0,0,-0.005453 -7368,5705:235:3,-55,-73.5,0,0,-0.005453 -7369,5705:134:4,-54.5,-73.5,0,0,-0.005453 -7370,5705:134:3,-54,-73.5,0,0,-0.005453 -7371,5705:133:4,-53.5,-73.5,0,0,-0.00545423 -7372,5705:133:3,-53,-73.5,0,0,-0.00545541 -7373,5705:132:4,-52.5,-73.5,0,0,-0.00545541 -7374,5705:132:3,-52,-73.5,0,0,-0.00545541 -7375,5705:131:4,-51.5,-73.5,0,0,-0.00545663 -7376,5705:131:3,-51,-73.5,0,0,-0.00545907 -7377,5705:130:4,-50.5,-73.5,0,0,-0.0054627 -7378,5705:130:3,-50,-73.5,0,0,-0.00546633 -7379,5704:239:4,-49.5,-73.5,0,0,-0.00546633 -7380,5704:239:3,-49,-73.5,0,0,-0.00546511 -7381,5704:238:4,-48.5,-73.5,0,0,-0.00546511 -7382,5704:238:3,-48,-73.5,0,0,-0.00546392 -7383,5704:237:4,-47.5,-73.5,0,0,-0.00546392 -7384,5704:237:3,-47,-73.5,0,0,-0.00546392 -7385,5704:236:4,-46.5,-73.5,0,0,-0.00546755 -7386,5704:236:3,-46,-73.5,0,0,-0.00546878 -7387,5704:235:4,-45.5,-73.5,0,0,-0.00547 -7388,5704:235:3,-45,-73.5,0,0,-0.00547 -7389,5704:134:4,-44.5,-73.5,0,0,-0.00547 -7390,5704:134:3,-44,-73.5,0,0,-0.00547 -7391,5704:133:4,-43.5,-73.5,0,0,-0.00547119 -7392,5704:133:3,-43,-73.5,0,0,-0.00547119 -7393,5704:132:4,-42.5,-73.5,0,0,-0.00547119 -7394,5704:132:3,-42,-73.5,0,0,-0.00547119 -7395,5704:131:4,-41.5,-73.5,0,0,-0.00547119 -7396,5704:131:3,-41,-73.5,0,0,-0.00547119 -7397,5704:130:4,-40.5,-73.5,0,0,-0.00547119 -7398,5704:130:3,-40,-73.5,0,0,-0.00547 -7399,5703:239:4,-39.5,-73.5,0,0,-0.00547 -7400,5703:239:3,-39,-73.5,0,0,-0.00546878 -7401,5703:238:4,-38.5,-73.5,0,0,-0.00546878 -7402,5703:238:3,-38,-73.5,0,0,-0.00546755 -7403,5703:237:4,-37.5,-73.5,0,0,-0.00546755 -7404,5703:237:3,-37,-73.5,0,0,-0.00546633 -7405,5703:236:4,-36.5,-73.5,0,0,-0.00546633 -7406,5703:236:3,-36,-73.5,0,0,-0.00546633 -7407,5703:235:4,-35.5,-73.5,0,0,-0.00546511 -7408,5703:235:3,-35,-73.5,0,0,-0.00546511 -7409,5703:134:4,-34.5,-73.5,0,0,-0.00546511 -7410,5703:134:3,-34,-73.5,0,0,-0.00546392 -7411,5703:133:4,-33.5,-73.5,0,0,-0.00546392 -7412,5703:133:3,-33,-73.5,0,0,-0.00546392 -7413,5703:132:4,-32.5,-73.5,0,0,-0.00546392 -7414,5703:132:3,-32,-73.5,0,0,-0.00546511 -7415,5703:131:4,-31.5,-73.5,0,0,-0.00546511 -7416,5703:131:3,-31,-73.5,0,0,-0.00546392 -7417,5703:130:4,-30.5,-73.5,0,0,-0.00546392 -7418,5703:130:3,-30,-73.5,0,0,-0.00546392 -7419,5702:239:4,-29.5,-73.5,0,0,-0.00546392 -7420,5702:239:3,-29,-73.5,0,0,-0.00546392 -7421,5702:238:4,-28.5,-73.5,0,0,-0.0054627 -7422,5702:238:3,-28,-73.5,0,0,-0.0054627 -7423,5702:237:4,-27.5,-73.5,0,0,-0.0054627 -7424,5702:237:3,-27,-73.5,0,0,-0.0054627 -7425,5702:236:4,-26.5,-73.5,0,0,-0.0054627 -7426,5702:236:3,-26,-73.5,0,0,-0.0054627 -7427,5702:235:4,-25.5,-73.5,0,0,-0.00546392 -7428,5702:235:3,-25,-73.5,0,0,-0.00546392 -7429,5702:134:4,-24.5,-73.5,0,0,-0.00546392 -7430,5702:134:3,-24,-73.5,0,0,-0.0054627 -7431,5702:133:4,-23.5,-73.5,0,0,-0.0054627 -7432,5702:133:3,-23,-73.5,0,0,-0.0054627 -7433,5702:132:4,-22.5,-73.5,0,0,-0.00546148 -7434,5702:132:3,-22,-73.5,0,0,-0.00546026 -7435,5702:131:4,-21.5,-73.5,0,0,-0.00546026 -7436,5702:131:3,-21,-73.5,0,0,-0.0054627 -7437,5702:130:4,-20.5,-73.5,0,0,-0.00546511 -7438,5702:130:3,-20,-73.5,0,0,-0.00546633 -7439,5701:239:4,-19.5,-73.5,0,0,-0.00546148 -7440,3717:130:3,170,-73.5,0,0,-0.00548091 -7441,3717:130:4,170.5,-73.5,0,0,-0.00547 -7442,3717:131:3,171,-73.5,0,0,-0.00546633 -7443,3717:131:4,171.5,-73.5,0,0,-0.00546511 -7444,3717:132:3,172,-73.5,0,0,-0.00545423 -7445,3717:132:4,172.5,-73.5,0,0,-0.005453 -7446,3717:133:3,173,-73.5,0,0,-0.00557797 -7447,3717:133:4,173.5,-73.5,0,0,-0.00574912 -7448,3717:134:3,174,-73.5,0,0,-0.00599574 -7449,3717:134:4,174.5,-73.5,0,0,-0.00607083 -7450,3717:235:3,175,-73.5,0,0,-0.00604122 -7451,3717:235:4,175.5,-73.5,0,0,-0.00553476 -7452,3717:236:3,176,-73.5,0,0,-0.00541558 -7453,3717:236:4,176.5,-73.5,0,0,-0.0054216 -7454,3717:237:3,177,-73.5,0,0,-0.0054252 -7455,3717:237:4,177.5,-73.5,0,0,-0.00543363 -7456,3717:238:3,178,-73.5,0,0,-0.00544089 -7457,3717:238:4,178.5,-73.5,0,0,-0.00544573 -7458,3717:239:3,179,-73.5,0,0,-0.00544935 -7459,3717:239:4,179.5,-73.5,0,0,-0.00545179 -7460,3718:130:3,180,-73.5,0,0,-0.00545541 -7461,5718:130:1,-180,-73,0,0,-0.00545663 -7462,5717:239:2,-179.5,-73,0,0,-0.00545907 -7463,5717:239:1,-179,-73,0,0,-0.00546148 -7464,5717:238:2,-178.5,-73,0,0,-0.0054627 -7465,5717:238:1,-178,-73,0,0,-0.00546392 -7466,5717:237:2,-177.5,-73,0,0,-0.00546511 -7467,5717:237:1,-177,-73,0,0,-0.00546511 -7468,5717:236:2,-176.5,-73,0,0,-0.00546633 -7469,5717:236:1,-176,-73,0,0,-0.00546755 -7470,5717:235:2,-175.5,-73,0,0,-0.00546755 -7471,5717:235:1,-175,-73,0,0,-0.00546755 -7472,5717:134:2,-174.5,-73,0,0,-0.00546878 -7473,5717:134:1,-174,-73,0,0,-0.00546878 -7474,5717:133:2,-173.5,-73,0,0,-0.00547119 -7475,5717:133:1,-173,-73,0,0,-0.00547241 -7476,5717:132:2,-172.5,-73,0,0,-0.00547241 -7477,5717:132:1,-172,-73,0,0,-0.00547119 -7478,5717:131:2,-171.5,-73,0,0,-0.00547 -7479,5717:131:1,-171,-73,0,0,-0.00546878 -7480,5717:130:2,-170.5,-73,0,0,-0.00546878 -7481,5717:130:1,-170,-73,0,0,-0.00546755 -7482,5716:239:2,-169.5,-73,0,0,-0.00546878 -7483,5716:239:1,-169,-73,0,0,-0.00546878 -7484,5716:238:2,-168.5,-73,0,0,-0.00546878 -7485,5716:238:1,-168,-73,0,0,-0.00546878 -7486,5716:237:2,-167.5,-73,0,0,-0.00546878 -7487,5716:237:1,-167,-73,0,0,-0.00546878 -7488,5716:236:2,-166.5,-73,0,0,-0.00547 -7489,5716:236:1,-166,-73,0,0,-0.00547 -7490,5716:235:2,-165.5,-73,0,0,-0.00547119 -7491,5716:235:1,-165,-73,0,0,-0.00547241 -7492,5716:134:2,-164.5,-73,0,0,-0.00547364 -7493,5716:134:1,-164,-73,0,0,-0.00547486 -7494,5716:133:2,-163.5,-73,0,0,-0.00547605 -7495,5716:133:1,-163,-73,0,0,-0.00547605 -7496,5716:132:2,-162.5,-73,0,0,-0.00547727 -7497,5716:132:1,-162,-73,0,0,-0.00547727 -7498,5716:131:2,-161.5,-73,0,0,-0.0054785 -7499,5716:131:1,-161,-73,0,0,-0.0054785 -7500,5716:130:2,-160.5,-73,0,0,-0.00547972 -7501,5716:130:1,-160,-73,0,0,-0.00547972 -7502,5715:239:2,-159.5,-73,0,0,-0.00548091 -7503,5715:239:1,-159,-73,0,0,-0.00548091 -7504,5715:238:2,-158.5,-73,0,0,-0.00548214 -7505,5715:238:1,-158,-73,0,0,-0.00548337 -7506,5715:237:2,-157.5,-73,0,0,-0.00548337 -7507,5715:237:1,-157,-73,0,0,-0.00548337 -7508,5715:236:2,-156.5,-73,0,0,-0.00548337 -7509,5715:236:1,-156,-73,0,0,-0.00548337 -7510,5715:235:2,-155.5,-73,0,0,-0.00548337 -7511,5715:235:1,-155,-73,0,0,-0.00548337 -7512,5715:134:2,-154.5,-73,0,0,-0.00548214 -7513,5715:134:1,-154,-73,0,0,-0.00548214 -7514,5715:133:2,-153.5,-73,0,0,-0.00548214 -7515,5715:133:1,-153,-73,0,0,-0.00548214 -7516,5715:132:2,-152.5,-73,0,0,-0.00548214 -7517,5715:132:1,-152,-73,0,0,-0.00548337 -7518,5715:131:2,-151.5,-73,0,0,-0.00548459 -7519,5715:131:1,-151,-73,0,0,-0.00548582 -7520,5715:130:2,-150.5,-73,0,0,-0.00548701 -7521,5715:130:1,-150,-73,0,0,-0.00548947 -7522,5714:239:2,-149.5,-73,0,0,-0.00549069 -7523,5714:239:1,-149,-73,0,0,-0.00549189 -7524,5714:238:2,-148.5,-73,0,0,-0.00549312 -7525,5714:238:1,-148,-73,0,0,-0.00549312 -7526,5714:237:2,-147.5,-73,0,0,-0.00549434 -7527,5714:237:1,-147,-73,0,0,-0.00549434 -7528,5714:236:2,-146.5,-73,0,0,-0.00549557 -7529,5714:236:1,-146,-73,0,0,-0.00549677 -7530,5714:235:2,-145.5,-73,0,0,-0.00549677 -7531,5714:235:1,-145,-73,0,0,-0.00549677 -7532,5714:134:2,-144.5,-73,0,0,-0.00549677 -7533,5714:134:1,-144,-73,0,0,-0.00549557 -7534,5714:133:2,-143.5,-73,0,0,-0.00549434 -7535,5714:133:1,-143,-73,0,0,-0.00549434 -7536,5714:132:2,-142.5,-73,0,0,-0.00549557 -7537,5714:132:1,-142,-73,0,0,-0.00549434 -7538,5714:131:2,-141.5,-73,0,0,-0.00549312 -7539,5714:131:1,-141,-73,0,0,-0.00549069 -7540,5714:130:2,-140.5,-73,0,0,-0.00548824 -7541,5714:130:1,-140,-73,0,0,-0.00548824 -7542,5713:239:2,-139.5,-73,0,0,-0.00548947 -7543,5713:239:1,-139,-73,0,0,-0.00549557 -7544,5713:238:2,-138.5,-73,0,0,-0.00550411 -7545,5713:238:1,-138,-73,0,0,-0.00551024 -7546,5713:237:2,-137.5,-73,0,0,-0.00551024 -7547,5713:237:1,-137,-73,0,0,-0.00550777 -7548,5713:236:2,-136.5,-73,0,0,-0.00550411 -7549,5713:236:1,-136,-73,0,0,-0.00550046 -7550,5713:235:2,-135.5,-73,0,0,-0.00549434 -7551,5713:235:1,-135,-73,0,0,-0.00548824 -7552,5713:134:2,-134.5,-73,0,0,-0.00547972 -7553,5713:134:1,-134,-73,0,0,-0.00547241 -7554,5713:133:2,-133.5,-73,0,0,-0.00546878 -7555,5713:133:1,-133,-73,0,0,-0.00546878 -7556,5713:132:2,-132.5,-73,0,0,-0.00547241 -7557,5713:132:1,-132,-73,0,0,-0.00547486 -7558,5713:131:2,-131.5,-73,0,0,-0.00547972 -7559,5713:131:1,-131,-73,0,0,-0.00548214 -7560,5713:130:2,-130.5,-73,0,0,-0.00548337 -7561,5713:130:1,-130,-73,0,0,-0.00548459 -7562,5712:239:2,-129.5,-73,0,0,-0.00548582 -7563,5712:239:1,-129,-73,0,0,-0.00548582 -7564,5712:238:2,-128.5,-73,0,0,-0.00548582 -7565,5712:238:1,-128,-73,0,0,-0.00548701 -7566,5712:237:2,-127.5,-73,0,0,-0.00548824 -7567,5712:237:1,-127,-73,0,0,-0.00549069 -7568,5712:236:2,-126.5,-73,0,0,-0.00549557 -7569,5712:236:1,-126,-73,0,0,-0.00550046 -7570,5712:235:2,-125.5,-73,0,0,-0.00550165 -7571,5712:235:1,-125,-73,0,0,-0.00550165 -7572,5712:134:2,-124.5,-73,0,0,-0.00549557 -7573,5712:134:1,-124,-73,0,0,-0.00549189 -7574,5712:133:2,-123.5,-73,0,0,-0.00549069 -7575,5712:133:1,-123,-73,0,0,-0.00549069 -7576,5712:132:2,-122.5,-73,0,0,-0.00549069 -7577,5712:132:1,-122,-73,0,0,-0.00548824 -7578,5712:131:2,-121.5,-73,0,0,-0.00548824 -7579,5712:131:1,-121,-73,0,0,-0.00548701 -7580,5712:130:2,-120.5,-73,0,0,-0.00548701 -7581,5712:130:1,-120,-73,0,0,-0.00548582 -7582,5711:239:2,-119.5,-73,0,0,-0.00548459 -7583,5711:239:1,-119,-73,0,0,-0.00548459 -7584,5711:238:2,-118.5,-73,0,0,-0.00548337 -7585,5711:238:1,-118,-73,0,0,-0.00548337 -7586,5711:237:2,-117.5,-73,0,0,-0.00548214 -7587,5711:237:1,-117,-73,0,0,-0.00548091 -7588,5711:236:2,-116.5,-73,0,0,-0.00547972 -7589,5711:236:1,-116,-73,0,0,-0.0054785 -7590,5711:235:2,-115.5,-73,0,0,-0.00547727 -7591,5711:235:1,-115,-73,0,0,-0.00547727 -7592,5711:134:2,-114.5,-73,0,0,-0.00547605 -7593,5711:134:1,-114,-73,0,0,-0.00547486 -7594,5711:133:2,-113.5,-73,0,0,-0.00547364 -7595,5711:133:1,-113,-73,0,0,-0.00547364 -7596,5711:132:2,-112.5,-73,0,0,-0.00547241 -7597,5711:132:1,-112,-73,0,0,-0.00547119 -7598,5711:131:2,-111.5,-73,0,0,-0.00547119 -7599,5711:131:1,-111,-73,0,0,-0.00547241 -7600,5711:130:2,-110.5,-73,0,0,-0.00547605 -7601,5711:130:1,-110,-73,0,0,-0.00547972 -7602,5710:239:2,-109.5,-73,0,0,-0.00548337 -7603,5710:239:1,-109,-73,0,0,-0.00548582 -7604,5710:238:2,-108.5,-73,0,0,-0.00548824 -7605,5710:238:1,-108,-73,0,0,-0.00549069 -7606,5710:237:2,-107.5,-73,0,0,-0.00549434 -7607,5710:237:1,-107,-73,0,0,-0.00549923 -7608,5710:236:2,-106.5,-73,0,0,-0.005509 -7609,5710:236:1,-106,-73,0,0,-0.00555077 -7610,5710:235:2,-105.5,-73,0,0,-0.00582885 -7611,5710:235:1,-105,-73,0,0,-0.00626553 -7612,5710:134:2,-104.5,-73,0,0,-0.006504 -7613,5710:134:1,-104,-73,0,0,-0.00651125 -7614,5710:133:2,-103.5,-73,0,0,-0.0066031 -7615,5708:238:1,-88,-73,0,0,-0.00558914 -7616,5708:237:2,-87.5,-73,0,0,-0.0055941 -7617,5708:237:1,-87,-73,0,0,-0.00566288 -7618,5708:236:2,-86.5,-73,0,0,-0.00598375 -7619,5708:236:1,-86,-73,0,0,-0.00643067 -7620,5708:235:2,-85.5,-73,0,0,-0.00619624 -7621,5708:235:1,-85,-73,0,0,-0.00583534 -7622,5708:134:2,-84.5,-73,0,0,-0.00567548 -7623,5708:134:1,-84,-73,0,0,-0.00557551 -7624,5708:133:2,-83.5,-73,0,0,-0.00554584 -7625,5708:133:1,-83,-73,0,0,-0.00548459 -7626,5708:132:2,-82.5,-73,0,0,-0.00559039 -7627,5708:132:1,-82,-73,0,0,-0.00584833 -7628,5708:131:2,-81.5,-73,0,0,-0.00595719 -7629,5708:131:1,-81,-73,0,0,-0.00593343 -7630,5708:130:2,-80.5,-73,0,0,-0.00592025 -7631,5708:130:1,-80,-73,0,0,-0.00628507 -7632,5707:239:2,-79.5,-73,0,0,-0.00629903 -7633,5707:239:1,-79,-73,0,0,-0.00678773 -7634,5707:235:2,-75.5,-73,0,0,-0.00608432 -7635,5707:235:1,-75,-73,0,0,-0.00626829 -7636,5707:134:2,-74.5,-73,0,0,-0.00660749 -7637,5707:134:1,-74,-73,0,0,-0.00692349 -7638,5707:133:2,-73.5,-73,0,0,-0.0076018 -7639,5707:133:1,-73,-73,0,0,-0.00789153 -7640,5707:132:2,-72.5,-73,0,0,-0.00768176 -7641,5706:130:1,-60,-73,0,0,-0.00551513 -7642,5705:239:2,-59.5,-73,0,0,-0.00550658 -7643,5705:239:1,-59,-73,0,0,-0.00548214 -7644,5705:238:2,-58.5,-73,0,0,-0.00546878 -7645,5705:238:1,-58,-73,0,0,-0.0054627 -7646,5705:237:2,-57.5,-73,0,0,-0.00545907 -7647,5705:237:1,-57,-73,0,0,-0.00545663 -7648,5705:236:2,-56.5,-73,0,0,-0.00545541 -7649,5705:236:1,-56,-73,0,0,-0.00545541 -7650,5705:235:2,-55.5,-73,0,0,-0.00545423 -7651,5705:235:1,-55,-73,0,0,-0.00545423 -7652,5705:134:2,-54.5,-73,0,0,-0.00545423 -7653,5705:134:1,-54,-73,0,0,-0.00545423 -7654,5705:133:2,-53.5,-73,0,0,-0.00545785 -7655,5705:133:1,-53,-73,0,0,-0.00546026 -7656,5705:132:2,-52.5,-73,0,0,-0.00546148 -7657,5705:132:1,-52,-73,0,0,-0.00546148 -7658,5705:131:2,-51.5,-73,0,0,-0.00546392 -7659,5705:131:1,-51,-73,0,0,-0.0054627 -7660,5705:130:2,-50.5,-73,0,0,-0.00546511 -7661,5705:130:1,-50,-73,0,0,-0.00546755 -7662,5704:239:2,-49.5,-73,0,0,-0.00546633 -7663,5704:239:1,-49,-73,0,0,-0.00546511 -7664,5704:238:2,-48.5,-73,0,0,-0.00546511 -7665,5704:238:1,-48,-73,0,0,-0.00546392 -7666,5704:237:2,-47.5,-73,0,0,-0.00546392 -7667,5704:237:1,-47,-73,0,0,-0.00546755 -7668,5704:236:2,-46.5,-73,0,0,-0.00547 -7669,5704:236:1,-46,-73,0,0,-0.00547 -7670,5704:235:2,-45.5,-73,0,0,-0.00547 -7671,5704:235:1,-45,-73,0,0,-0.00547 -7672,5704:134:2,-44.5,-73,0,0,-0.00547 -7673,5704:134:1,-44,-73,0,0,-0.00547119 -7674,5704:133:2,-43.5,-73,0,0,-0.00547119 -7675,5704:133:1,-43,-73,0,0,-0.00547119 -7676,5704:132:2,-42.5,-73,0,0,-0.00547119 -7677,5704:132:1,-42,-73,0,0,-0.00547119 -7678,5704:131:2,-41.5,-73,0,0,-0.00547 -7679,5704:131:1,-41,-73,0,0,-0.00547 -7680,5704:130:2,-40.5,-73,0,0,-0.00547 -7681,5704:130:1,-40,-73,0,0,-0.00546878 -7682,5703:239:2,-39.5,-73,0,0,-0.00546878 -7683,5703:239:1,-39,-73,0,0,-0.00546755 -7684,5703:238:2,-38.5,-73,0,0,-0.00546755 -7685,5703:238:1,-38,-73,0,0,-0.00546633 -7686,5703:237:2,-37.5,-73,0,0,-0.00546633 -7687,5703:237:1,-37,-73,0,0,-0.00546511 -7688,5703:236:2,-36.5,-73,0,0,-0.00546511 -7689,5703:236:1,-36,-73,0,0,-0.00546392 -7690,5703:235:2,-35.5,-73,0,0,-0.00546392 -7691,5703:235:1,-35,-73,0,0,-0.00546392 -7692,5703:134:2,-34.5,-73,0,0,-0.00546392 -7693,5703:134:1,-34,-73,0,0,-0.00546392 -7694,5703:133:2,-33.5,-73,0,0,-0.0054627 -7695,5703:133:1,-33,-73,0,0,-0.0054627 -7696,5703:132:2,-32.5,-73,0,0,-0.0054627 -7697,5703:132:1,-32,-73,0,0,-0.00546392 -7698,5703:131:2,-31.5,-73,0,0,-0.00546392 -7699,5703:131:1,-31,-73,0,0,-0.00546392 -7700,5703:130:2,-30.5,-73,0,0,-0.0054627 -7701,5703:130:1,-30,-73,0,0,-0.0054627 -7702,5702:239:2,-29.5,-73,0,0,-0.0054627 -7703,5702:239:1,-29,-73,0,0,-0.0054627 -7704,5702:238:2,-28.5,-73,0,0,-0.0054627 -7705,5702:238:1,-28,-73,0,0,-0.00546148 -7706,5702:237:2,-27.5,-73,0,0,-0.00546148 -7707,5702:237:1,-27,-73,0,0,-0.00546026 -7708,5702:236:2,-26.5,-73,0,0,-0.00546148 -7709,5702:236:1,-26,-73,0,0,-0.00546148 -7710,5702:235:2,-25.5,-73,0,0,-0.00546148 -7711,5702:235:1,-25,-73,0,0,-0.0054627 -7712,5702:134:2,-24.5,-73,0,0,-0.0054627 -7713,5702:134:1,-24,-73,0,0,-0.0054627 -7714,5702:133:2,-23.5,-73,0,0,-0.00546392 -7715,5702:133:1,-23,-73,0,0,-0.00546392 -7716,5702:132:2,-22.5,-73,0,0,-0.00546392 -7717,5702:132:1,-22,-73,0,0,-0.00546392 -7718,5702:131:2,-21.5,-73,0,0,-0.00546392 -7719,5702:131:1,-21,-73,0,0,-0.00546392 -7720,5702:130:2,-20.5,-73,0,0,-0.00546392 -7721,5702:130:1,-20,-73,0,0,-0.00546392 -7722,5701:239:2,-19.5,-73,0,0,-0.00546755 -7723,5701:239:1,-19,-73,0,0,-0.00547605 -7724,5701:238:2,-18.5,-73,0,0,-0.00547727 -7725,5701:238:1,-18,-73,0,0,-0.00548459 -7726,5701:237:2,-17.5,-73,0,0,-0.00550046 -7727,5701:237:1,-17,-73,0,0,-0.00549677 -7728,3717:130:2,170.5,-73,0,0,-0.00549434 -7729,3717:131:1,171,-73,0,0,-0.00548824 -7730,3717:131:2,171.5,-73,0,0,-0.00547727 -7731,3717:132:1,172,-73,0,0,-0.00546878 -7732,3717:132:2,172.5,-73,0,0,-0.00546148 -7733,3717:133:1,173,-73,0,0,-0.00547605 -7734,3717:133:2,173.5,-73,0,0,-0.00566668 -7735,3717:134:1,174,-73,0,0,-0.00590053 -7736,3717:134:2,174.5,-73,0,0,-0.00584053 -7737,3717:235:1,175,-73,0,0,-0.00551147 -7738,3717:235:2,175.5,-73,0,0,-0.00541558 -7739,3717:236:1,176,-73,0,0,-0.00541558 -7740,3717:236:2,176.5,-73,0,0,-0.00542399 -7741,3717:237:1,177,-73,0,0,-0.00543124 -7742,3717:237:2,177.5,-73,0,0,-0.00543728 -7743,3717:238:1,178,-73,0,0,-0.00544211 -7744,3717:238:2,178.5,-73,0,0,-0.00544695 -7745,3717:239:1,179,-73,0,0,-0.00545057 -7746,3717:239:2,179.5,-73,0,0,-0.00545423 -7747,3718:130:1,180,-73,0,0,-0.00545663 -7748,5718:120:3,-180,-72.5,0,0,-0.00545663 -7749,5717:229:4,-179.5,-72.5,0,0,-0.00545907 -7750,5717:229:3,-179,-72.5,0,0,-0.00546148 -7751,5717:228:4,-178.5,-72.5,0,0,-0.0054627 -7752,5717:228:3,-178,-72.5,0,0,-0.0054627 -7753,5717:227:4,-177.5,-72.5,0,0,-0.00546392 -7754,5717:227:3,-177,-72.5,0,0,-0.00546511 -7755,5717:226:4,-176.5,-72.5,0,0,-0.00546633 -7756,5717:226:3,-176,-72.5,0,0,-0.00546755 -7757,5717:225:4,-175.5,-72.5,0,0,-0.00546878 -7758,5717:225:3,-175,-72.5,0,0,-0.00547 -7759,5717:124:4,-174.5,-72.5,0,0,-0.00547 -7760,5717:124:3,-174,-72.5,0,0,-0.00547 -7761,5717:123:4,-173.5,-72.5,0,0,-0.00547241 -7762,5717:123:3,-173,-72.5,0,0,-0.00547364 -7763,5717:122:4,-172.5,-72.5,0,0,-0.00547241 -7764,5717:122:3,-172,-72.5,0,0,-0.00547119 -7765,5717:121:4,-171.5,-72.5,0,0,-0.00547 -7766,5717:121:3,-171,-72.5,0,0,-0.00546878 -7767,5717:120:4,-170.5,-72.5,0,0,-0.00546755 -7768,5717:120:3,-170,-72.5,0,0,-0.00546755 -7769,5716:229:4,-169.5,-72.5,0,0,-0.00546878 -7770,5716:229:3,-169,-72.5,0,0,-0.00546878 -7771,5716:228:4,-168.5,-72.5,0,0,-0.00546878 -7772,5716:228:3,-168,-72.5,0,0,-0.00546755 -7773,5716:227:4,-167.5,-72.5,0,0,-0.00546755 -7774,5716:227:3,-167,-72.5,0,0,-0.00546878 -7775,5716:226:4,-166.5,-72.5,0,0,-0.00546878 -7776,5716:226:3,-166,-72.5,0,0,-0.00547 -7777,5716:225:4,-165.5,-72.5,0,0,-0.00547 -7778,5716:225:3,-165,-72.5,0,0,-0.00547 -7779,5716:124:4,-164.5,-72.5,0,0,-0.00547119 -7780,5716:124:3,-164,-72.5,0,0,-0.00547241 -7781,5716:123:4,-163.5,-72.5,0,0,-0.00547364 -7782,5716:123:3,-163,-72.5,0,0,-0.00547486 -7783,5716:122:4,-162.5,-72.5,0,0,-0.00547605 -7784,5716:122:3,-162,-72.5,0,0,-0.00547605 -7785,5716:121:4,-161.5,-72.5,0,0,-0.00547605 -7786,5716:121:3,-161,-72.5,0,0,-0.00547727 -7787,5716:120:4,-160.5,-72.5,0,0,-0.00547727 -7788,5716:120:3,-160,-72.5,0,0,-0.0054785 -7789,5715:229:4,-159.5,-72.5,0,0,-0.0054785 -7790,5715:229:3,-159,-72.5,0,0,-0.0054785 -7791,5715:228:4,-158.5,-72.5,0,0,-0.00547972 -7792,5715:228:3,-158,-72.5,0,0,-0.00548091 -7793,5715:227:4,-157.5,-72.5,0,0,-0.00548214 -7794,5715:227:3,-157,-72.5,0,0,-0.00548091 -7795,5715:226:4,-156.5,-72.5,0,0,-0.00548337 -7796,5715:226:3,-156,-72.5,0,0,-0.00548337 -7797,5715:225:4,-155.5,-72.5,0,0,-0.00548337 -7798,5715:225:3,-155,-72.5,0,0,-0.00548214 -7799,5715:124:4,-154.5,-72.5,0,0,-0.00548214 -7800,5715:124:3,-154,-72.5,0,0,-0.00548214 -7801,5715:123:4,-153.5,-72.5,0,0,-0.00548214 -7802,5715:123:3,-153,-72.5,0,0,-0.00548214 -7803,5715:122:4,-152.5,-72.5,0,0,-0.00548214 -7804,5715:122:3,-152,-72.5,0,0,-0.00548459 -7805,5715:121:4,-151.5,-72.5,0,0,-0.00548459 -7806,5715:121:3,-151,-72.5,0,0,-0.00548582 -7807,5715:120:4,-150.5,-72.5,0,0,-0.00548701 -7808,5715:120:3,-150,-72.5,0,0,-0.00548824 -7809,5714:229:4,-149.5,-72.5,0,0,-0.00548947 -7810,5714:229:3,-149,-72.5,0,0,-0.00549189 -7811,5714:228:4,-148.5,-72.5,0,0,-0.00549189 -7812,5714:228:3,-148,-72.5,0,0,-0.00549312 -7813,5714:227:4,-147.5,-72.5,0,0,-0.00549434 -7814,5714:227:3,-147,-72.5,0,0,-0.00549557 -7815,5714:226:4,-146.5,-72.5,0,0,-0.00549557 -7816,5714:226:3,-146,-72.5,0,0,-0.00549557 -7817,5714:225:4,-145.5,-72.5,0,0,-0.00549677 -7818,5714:225:3,-145,-72.5,0,0,-0.00549677 -7819,5714:124:4,-144.5,-72.5,0,0,-0.005498 -7820,5714:124:3,-144,-72.5,0,0,-0.00549923 -7821,5714:123:4,-143.5,-72.5,0,0,-0.005498 -7822,5714:123:3,-143,-72.5,0,0,-0.005498 -7823,5714:122:4,-142.5,-72.5,0,0,-0.00549677 -7824,5714:122:3,-142,-72.5,0,0,-0.00549557 -7825,5714:121:4,-141.5,-72.5,0,0,-0.00549434 -7826,5714:121:3,-141,-72.5,0,0,-0.00549069 -7827,5714:120:4,-140.5,-72.5,0,0,-0.00548824 -7828,5714:120:3,-140,-72.5,0,0,-0.00548582 -7829,5713:229:4,-139.5,-72.5,0,0,-0.00548459 -7830,5713:229:3,-139,-72.5,0,0,-0.00548582 -7831,5713:228:4,-138.5,-72.5,0,0,-0.00548701 -7832,5713:228:3,-138,-72.5,0,0,-0.00549069 -7833,5713:227:4,-137.5,-72.5,0,0,-0.00549434 -7834,5713:227:3,-137,-72.5,0,0,-0.00549923 -7835,5713:226:4,-136.5,-72.5,0,0,-0.00550046 -7836,5713:226:3,-136,-72.5,0,0,-0.00550046 -7837,5713:225:4,-135.5,-72.5,0,0,-0.00549677 -7838,5713:225:3,-135,-72.5,0,0,-0.00548824 -7839,5713:124:4,-134.5,-72.5,0,0,-0.00548091 -7840,5713:124:3,-134,-72.5,0,0,-0.00547486 -7841,5713:123:4,-133.5,-72.5,0,0,-0.00547119 -7842,5713:123:3,-133,-72.5,0,0,-0.00547 -7843,5713:122:4,-132.5,-72.5,0,0,-0.00547241 -7844,5713:122:3,-132,-72.5,0,0,-0.00547364 -7845,5713:121:4,-131.5,-72.5,0,0,-0.00547727 -7846,5713:121:3,-131,-72.5,0,0,-0.00548091 -7847,5713:120:4,-130.5,-72.5,0,0,-0.00548337 -7848,5713:120:3,-130,-72.5,0,0,-0.00548459 -7849,5712:229:4,-129.5,-72.5,0,0,-0.00548582 -7850,5712:229:3,-129,-72.5,0,0,-0.00548701 -7851,5712:228:4,-128.5,-72.5,0,0,-0.00548701 -7852,5712:228:3,-128,-72.5,0,0,-0.00548701 -7853,5712:227:4,-127.5,-72.5,0,0,-0.00548701 -7854,5712:227:3,-127,-72.5,0,0,-0.00548824 -7855,5712:226:4,-126.5,-72.5,0,0,-0.00548947 -7856,5712:226:3,-126,-72.5,0,0,-0.00548947 -7857,5712:225:4,-125.5,-72.5,0,0,-0.00548947 -7858,5712:225:3,-125,-72.5,0,0,-0.00549069 -7859,5712:124:4,-124.5,-72.5,0,0,-0.00548947 -7860,5712:124:3,-124,-72.5,0,0,-0.00548824 -7861,5712:123:4,-123.5,-72.5,0,0,-0.00548824 -7862,5712:123:3,-123,-72.5,0,0,-0.00548824 -7863,5712:122:4,-122.5,-72.5,0,0,-0.00548824 -7864,5712:122:3,-122,-72.5,0,0,-0.00548824 -7865,5712:121:4,-121.5,-72.5,0,0,-0.00548701 -7866,5712:121:3,-121,-72.5,0,0,-0.00548701 -7867,5712:120:4,-120.5,-72.5,0,0,-0.00548582 -7868,5712:120:3,-120,-72.5,0,0,-0.00548459 -7869,5711:229:4,-119.5,-72.5,0,0,-0.00548337 -7870,5711:229:3,-119,-72.5,0,0,-0.00548214 -7871,5711:228:4,-118.5,-72.5,0,0,-0.00548214 -7872,5711:228:3,-118,-72.5,0,0,-0.00548214 -7873,5711:227:4,-117.5,-72.5,0,0,-0.00548091 -7874,5711:227:3,-117,-72.5,0,0,-0.00547972 -7875,5711:226:4,-116.5,-72.5,0,0,-0.00547972 -7876,5711:226:3,-116,-72.5,0,0,-0.0054785 -7877,5711:225:4,-115.5,-72.5,0,0,-0.0054785 -7878,5711:225:3,-115,-72.5,0,0,-0.00547727 -7879,5711:124:4,-114.5,-72.5,0,0,-0.00547605 -7880,5711:124:3,-114,-72.5,0,0,-0.00547605 -7881,5711:123:4,-113.5,-72.5,0,0,-0.00547486 -7882,5711:123:3,-113,-72.5,0,0,-0.00547364 -7883,5711:122:4,-112.5,-72.5,0,0,-0.00547241 -7884,5711:122:3,-112,-72.5,0,0,-0.00547241 -7885,5711:121:4,-111.5,-72.5,0,0,-0.00547364 -7886,5711:121:3,-111,-72.5,0,0,-0.00547486 -7887,5711:120:4,-110.5,-72.5,0,0,-0.00547605 -7888,5711:120:3,-110,-72.5,0,0,-0.0054785 -7889,5710:229:4,-109.5,-72.5,0,0,-0.00548214 -7890,5710:229:3,-109,-72.5,0,0,-0.00548337 -7891,5710:228:4,-108.5,-72.5,0,0,-0.00548459 -7892,5710:228:3,-108,-72.5,0,0,-0.00548582 -7893,5710:227:4,-107.5,-72.5,0,0,-0.00548824 -7894,5710:227:3,-107,-72.5,0,0,-0.00549312 -7895,5710:226:4,-106.5,-72.5,0,0,-0.00551637 -7896,5710:226:3,-106,-72.5,0,0,-0.00576575 -7897,5710:225:4,-105.5,-72.5,0,0,-0.00605599 -7898,5710:225:3,-105,-72.5,0,0,-0.0061949 -7899,5710:124:4,-104.5,-72.5,0,0,-0.00623635 -7900,5710:124:3,-104,-72.5,0,0,-0.00626829 -7901,5710:123:4,-103.5,-72.5,0,0,-0.00638224 -7902,5709:225:4,-95.5,-72.5,0,0,-0.00584441 -7903,5709:225:3,-95,-72.5,0,0,-0.00559908 -7904,5709:124:4,-94.5,-72.5,0,0,-0.0055225 -7905,5709:124:3,-94,-72.5,0,0,-0.00552861 -7906,5709:123:4,-93.5,-72.5,0,0,-0.00554092 -7907,5709:123:3,-93,-72.5,0,0,-0.00555325 -7908,5709:122:4,-92.5,-72.5,0,0,-0.00550534 -7909,5709:122:3,-92,-72.5,0,0,-0.00551024 -7910,5709:121:4,-91.5,-72.5,0,0,-0.00551756 -7911,5709:121:3,-91,-72.5,0,0,-0.00551024 -7912,5709:120:4,-90.5,-72.5,0,0,-0.00550534 -7913,5709:120:3,-90,-72.5,0,0,-0.00551147 -7914,5708:229:4,-89.5,-72.5,0,0,-0.00552127 -7915,5708:229:3,-89,-72.5,0,0,-0.0055225 -7916,5708:228:4,-88.5,-72.5,0,0,-0.00552494 -7917,5708:228:3,-88,-72.5,0,0,-0.00552741 -7918,5708:227:4,-87.5,-72.5,0,0,-0.00553476 -7919,5708:227:3,-87,-72.5,0,0,-0.0055545 -7920,5708:226:4,-86.5,-72.5,0,0,-0.00560903 -7921,5708:226:3,-86,-72.5,0,0,-0.00568685 -7922,5708:225:4,-85.5,-72.5,0,0,-0.00561653 -7923,5708:225:3,-85,-72.5,0,0,-0.00553476 -7924,5708:124:4,-84.5,-72.5,0,0,-0.00562526 -7925,5708:124:3,-84,-72.5,0,0,-0.00566165 -7926,5708:123:4,-83.5,-72.5,0,0,-0.00568685 -7927,5708:123:3,-83,-72.5,0,0,-0.00560405 -7928,5708:122:4,-82.5,-72.5,0,0,-0.00550777 -7929,5708:122:3,-82,-72.5,0,0,-0.00552127 -7930,5708:121:4,-81.5,-72.5,0,0,-0.00549557 -7931,5708:121:3,-81,-72.5,0,0,-0.00557052 -7932,5708:120:4,-80.5,-72.5,0,0,-0.00562152 -7933,5708:120:3,-80,-72.5,0,0,-0.0055237 -7934,5707:229:4,-79.5,-72.5,0,0,-0.00549312 -7935,5707:227:4,-77.5,-72.5,0,0,-0.00590842 -7936,5707:227:3,-77,-72.5,0,0,-0.00612232 -7937,5707:226:4,-76.5,-72.5,0,0,-0.00609518 -7938,5707:226:3,-76,-72.5,0,0,-0.00645502 -7939,5707:225:4,-75.5,-72.5,0,0,-0.0065446 -7940,5707:225:3,-75,-72.5,0,0,-0.00666655 -7941,5707:124:4,-74.5,-72.5,0,0,-0.006925 -7942,5707:124:3,-74,-72.5,0,0,-0.00729677 -7943,5707:123:4,-73.5,-72.5,0,0,-0.00787926 -7944,5706:120:3,-60,-72.5,0,0,-0.00551637 -7945,5705:229:4,-59.5,-72.5,0,0,-0.005509 -7946,5705:229:3,-59,-72.5,0,0,-0.00548459 -7947,5705:228:4,-58.5,-72.5,0,0,-0.00546878 -7948,5705:228:3,-58,-72.5,0,0,-0.00546148 -7949,5705:227:4,-57.5,-72.5,0,0,-0.00545785 -7950,5705:227:3,-57,-72.5,0,0,-0.00545663 -7951,5705:226:4,-56.5,-72.5,0,0,-0.00545663 -7952,5705:226:3,-56,-72.5,0,0,-0.00545663 -7953,5705:225:4,-55.5,-72.5,0,0,-0.00545663 -7954,5705:225:3,-55,-72.5,0,0,-0.00545663 -7955,5705:124:4,-54.5,-72.5,0,0,-0.00545663 -7956,5705:124:3,-54,-72.5,0,0,-0.00545907 -7957,5705:123:4,-53.5,-72.5,0,0,-0.00546511 -7958,5705:123:3,-53,-72.5,0,0,-0.00546633 -7959,5705:122:4,-52.5,-72.5,0,0,-0.00546511 -7960,5705:122:3,-52,-72.5,0,0,-0.00546511 -7961,5705:121:4,-51.5,-72.5,0,0,-0.00546633 -7962,5705:121:3,-51,-72.5,0,0,-0.00546755 -7963,5705:120:4,-50.5,-72.5,0,0,-0.00546755 -7964,5705:120:3,-50,-72.5,0,0,-0.00546755 -7965,5704:229:4,-49.5,-72.5,0,0,-0.00546633 -7966,5704:229:3,-49,-72.5,0,0,-0.00546633 -7967,5704:228:4,-48.5,-72.5,0,0,-0.00546633 -7968,5704:228:3,-48,-72.5,0,0,-0.00546511 -7969,5704:227:4,-47.5,-72.5,0,0,-0.00546633 -7970,5704:227:3,-47,-72.5,0,0,-0.00547 -7971,5704:226:4,-46.5,-72.5,0,0,-0.00547 -7972,5704:226:3,-46,-72.5,0,0,-0.00547 -7973,5704:225:4,-45.5,-72.5,0,0,-0.00547 -7974,5704:225:3,-45,-72.5,0,0,-0.00547 -7975,5704:124:4,-44.5,-72.5,0,0,-0.00547119 -7976,5704:124:3,-44,-72.5,0,0,-0.00547119 -7977,5704:123:4,-43.5,-72.5,0,0,-0.00547119 -7978,5704:123:3,-43,-72.5,0,0,-0.00547119 -7979,5704:122:4,-42.5,-72.5,0,0,-0.00547 -7980,5704:122:3,-42,-72.5,0,0,-0.00547 -7981,5704:121:4,-41.5,-72.5,0,0,-0.00547 -7982,5704:121:3,-41,-72.5,0,0,-0.00546878 -7983,5704:120:4,-40.5,-72.5,0,0,-0.00546878 -7984,5704:120:3,-40,-72.5,0,0,-0.00546755 -7985,5703:229:4,-39.5,-72.5,0,0,-0.00546755 -7986,5703:229:3,-39,-72.5,0,0,-0.00546633 -7987,5703:228:4,-38.5,-72.5,0,0,-0.00546511 -7988,5703:228:3,-38,-72.5,0,0,-0.00546511 -7989,5703:227:4,-37.5,-72.5,0,0,-0.00546392 -7990,5703:227:3,-37,-72.5,0,0,-0.00546392 -7991,5703:226:4,-36.5,-72.5,0,0,-0.00546392 -7992,5703:226:3,-36,-72.5,0,0,-0.00546392 -7993,5703:225:4,-35.5,-72.5,0,0,-0.00546392 -7994,5703:225:3,-35,-72.5,0,0,-0.0054627 -7995,5703:124:4,-34.5,-72.5,0,0,-0.0054627 -7996,5703:124:3,-34,-72.5,0,0,-0.0054627 -7997,5703:123:4,-33.5,-72.5,0,0,-0.0054627 -7998,5703:123:3,-33,-72.5,0,0,-0.0054627 -7999,5703:122:4,-32.5,-72.5,0,0,-0.00546148 -8000,5703:122:3,-32,-72.5,0,0,-0.00546148 -8001,5703:121:4,-31.5,-72.5,0,0,-0.00546148 -8002,5703:121:3,-31,-72.5,0,0,-0.00546148 -8003,5703:120:4,-30.5,-72.5,0,0,-0.00546148 -8004,5703:120:3,-30,-72.5,0,0,-0.0054627 -8005,5702:229:4,-29.5,-72.5,0,0,-0.0054627 -8006,5702:229:3,-29,-72.5,0,0,-0.0054627 -8007,5702:228:4,-28.5,-72.5,0,0,-0.0054627 -8008,5702:228:3,-28,-72.5,0,0,-0.0054627 -8009,5702:227:4,-27.5,-72.5,0,0,-0.00546148 -8010,5702:227:3,-27,-72.5,0,0,-0.00546148 -8011,5702:226:4,-26.5,-72.5,0,0,-0.00546026 -8012,5702:226:3,-26,-72.5,0,0,-0.00546026 -8013,5702:225:4,-25.5,-72.5,0,0,-0.00546026 -8014,5702:225:3,-25,-72.5,0,0,-0.00546026 -8015,5702:124:4,-24.5,-72.5,0,0,-0.00546148 -8016,5702:124:3,-24,-72.5,0,0,-0.00546148 -8017,5702:123:4,-23.5,-72.5,0,0,-0.0054627 -8018,5702:123:3,-23,-72.5,0,0,-0.0054627 -8019,5702:122:4,-22.5,-72.5,0,0,-0.0054627 -8020,5702:122:3,-22,-72.5,0,0,-0.00546392 -8021,5702:121:4,-21.5,-72.5,0,0,-0.00546392 -8022,5702:121:3,-21,-72.5,0,0,-0.00546392 -8023,5702:120:4,-20.5,-72.5,0,0,-0.00546392 -8024,5702:120:3,-20,-72.5,0,0,-0.00546392 -8025,5701:229:4,-19.5,-72.5,0,0,-0.00546392 -8026,5701:229:3,-19,-72.5,0,0,-0.00546511 -8027,5701:228:4,-18.5,-72.5,0,0,-0.00546511 -8028,5701:228:3,-18,-72.5,0,0,-0.00546633 -8029,5701:227:4,-17.5,-72.5,0,0,-0.00547119 -8030,5701:227:3,-17,-72.5,0,0,-0.00547364 -8031,5701:226:4,-16.5,-72.5,0,0,-0.00548091 -8032,5701:226:3,-16,-72.5,0,0,-0.00549312 -8033,3717:121:3,171,-72.5,0,0,-0.00548459 -8034,3717:121:4,171.5,-72.5,0,0,-0.00546755 -8035,3717:122:3,172,-72.5,0,0,-0.00546026 -8036,3717:122:4,172.5,-72.5,0,0,-0.00546148 -8037,3717:123:3,173,-72.5,0,0,-0.00549923 -8038,3717:123:4,173.5,-72.5,0,0,-0.00567926 -8039,3717:124:3,174,-72.5,0,0,-0.00573378 -8040,3717:124:4,174.5,-72.5,0,0,-0.00569824 -8041,3717:225:3,175,-72.5,0,0,-0.00545785 -8042,3717:225:4,175.5,-72.5,0,0,-0.0054216 -8043,3717:226:3,176,-72.5,0,0,-0.00543002 -8044,3717:226:4,176.5,-72.5,0,0,-0.00543485 -8045,3717:227:3,177,-72.5,0,0,-0.0054385 -8046,3717:227:4,177.5,-72.5,0,0,-0.00544089 -8047,3717:228:3,178,-72.5,0,0,-0.00544451 -8048,3717:228:4,178.5,-72.5,0,0,-0.00544695 -8049,3717:229:3,179,-72.5,0,0,-0.00545057 -8050,3717:229:4,179.5,-72.5,0,0,-0.00545423 -8051,3718:120:3,180,-72.5,0,0,-0.00545663 -8052,5718:120:1,-180,-72,0,0,-0.00545541 -8053,5717:229:2,-179.5,-72,0,0,-0.00545785 -8054,5717:229:1,-179,-72,0,0,-0.00546026 -8055,5717:228:2,-178.5,-72,0,0,-0.00546148 -8056,5717:228:1,-178,-72,0,0,-0.0054627 -8057,5717:227:2,-177.5,-72,0,0,-0.00546392 -8058,5717:227:1,-177,-72,0,0,-0.00546511 -8059,5717:226:2,-176.5,-72,0,0,-0.00546633 -8060,5717:226:1,-176,-72,0,0,-0.00546755 -8061,5717:225:2,-175.5,-72,0,0,-0.00547 -8062,5717:225:1,-175,-72,0,0,-0.00547241 -8063,5717:124:2,-174.5,-72,0,0,-0.00547241 -8064,5717:124:1,-174,-72,0,0,-0.00547364 -8065,5717:123:2,-173.5,-72,0,0,-0.00547486 -8066,5717:123:1,-173,-72,0,0,-0.00547486 -8067,5717:122:2,-172.5,-72,0,0,-0.00547364 -8068,5717:122:1,-172,-72,0,0,-0.00547241 -8069,5717:121:2,-171.5,-72,0,0,-0.00547 -8070,5717:121:1,-171,-72,0,0,-0.00546878 -8071,5717:120:2,-170.5,-72,0,0,-0.00546755 -8072,5717:120:1,-170,-72,0,0,-0.00546878 -8073,5716:229:2,-169.5,-72,0,0,-0.00546878 -8074,5716:229:1,-169,-72,0,0,-0.00546878 -8075,5716:228:2,-168.5,-72,0,0,-0.00546755 -8076,5716:228:1,-168,-72,0,0,-0.00546755 -8077,5716:227:2,-167.5,-72,0,0,-0.00546755 -8078,5716:227:1,-167,-72,0,0,-0.00546755 -8079,5716:226:2,-166.5,-72,0,0,-0.00546755 -8080,5716:226:1,-166,-72,0,0,-0.00546878 -8081,5716:225:2,-165.5,-72,0,0,-0.00547 -8082,5716:225:1,-165,-72,0,0,-0.00547 -8083,5716:124:2,-164.5,-72,0,0,-0.00547119 -8084,5716:124:1,-164,-72,0,0,-0.00547241 -8085,5716:123:2,-163.5,-72,0,0,-0.00547241 -8086,5716:123:1,-163,-72,0,0,-0.00547364 -8087,5716:122:2,-162.5,-72,0,0,-0.00547364 -8088,5716:122:1,-162,-72,0,0,-0.00547486 -8089,5716:121:2,-161.5,-72,0,0,-0.00547486 -8090,5716:121:1,-161,-72,0,0,-0.00547486 -8091,5716:120:2,-160.5,-72,0,0,-0.00547486 -8092,5716:120:1,-160,-72,0,0,-0.00547605 -8093,5715:229:2,-159.5,-72,0,0,-0.00547727 -8094,5715:229:1,-159,-72,0,0,-0.00547727 -8095,5715:228:2,-158.5,-72,0,0,-0.00547727 -8096,5715:228:1,-158,-72,0,0,-0.0054785 -8097,5715:227:2,-157.5,-72,0,0,-0.00547972 -8098,5715:227:1,-157,-72,0,0,-0.00548091 -8099,5715:226:2,-156.5,-72,0,0,-0.00548091 -8100,5715:226:1,-156,-72,0,0,-0.00548337 -8101,5715:225:2,-155.5,-72,0,0,-0.00548337 -8102,5715:225:1,-155,-72,0,0,-0.00548214 -8103,5715:124:2,-154.5,-72,0,0,-0.00548214 -8104,5715:124:1,-154,-72,0,0,-0.00548337 -8105,5715:123:2,-153.5,-72,0,0,-0.00548214 -8106,5715:123:1,-153,-72,0,0,-0.00548214 -8107,5715:122:2,-152.5,-72,0,0,-0.00548214 -8108,5715:122:1,-152,-72,0,0,-0.00548337 -8109,5715:121:2,-151.5,-72,0,0,-0.00548459 -8110,5715:121:1,-151,-72,0,0,-0.00548582 -8111,5715:120:2,-150.5,-72,0,0,-0.00548701 -8112,5715:120:1,-150,-72,0,0,-0.00548824 -8113,5714:229:2,-149.5,-72,0,0,-0.00548947 -8114,5714:229:1,-149,-72,0,0,-0.00549069 -8115,5714:228:2,-148.5,-72,0,0,-0.00549189 -8116,5714:228:1,-148,-72,0,0,-0.00549189 -8117,5714:227:2,-147.5,-72,0,0,-0.00549312 -8118,5714:227:1,-147,-72,0,0,-0.00549312 -8119,5714:226:2,-146.5,-72,0,0,-0.00549434 -8120,5714:226:1,-146,-72,0,0,-0.00549557 -8121,5714:225:2,-145.5,-72,0,0,-0.00549557 -8122,5714:225:1,-145,-72,0,0,-0.00549557 -8123,5714:124:2,-144.5,-72,0,0,-0.00549677 -8124,5714:124:1,-144,-72,0,0,-0.005498 -8125,5714:123:2,-143.5,-72,0,0,-0.00549923 -8126,5714:123:1,-143,-72,0,0,-0.00549923 -8127,5714:122:2,-142.5,-72,0,0,-0.00549923 -8128,5714:122:1,-142,-72,0,0,-0.00549677 -8129,5714:121:2,-141.5,-72,0,0,-0.00549557 -8130,5714:121:1,-141,-72,0,0,-0.00549189 -8131,5714:120:2,-140.5,-72,0,0,-0.00548824 -8132,5714:120:1,-140,-72,0,0,-0.00548459 -8133,5713:229:2,-139.5,-72,0,0,-0.00548337 -8134,5713:229:1,-139,-72,0,0,-0.00548214 -8135,5713:228:2,-138.5,-72,0,0,-0.00548214 -8136,5713:228:1,-138,-72,0,0,-0.00548091 -8137,5713:227:2,-137.5,-72,0,0,-0.00548091 -8138,5713:227:1,-137,-72,0,0,-0.00548459 -8139,5713:226:2,-136.5,-72,0,0,-0.00549189 -8140,5713:226:1,-136,-72,0,0,-0.005509 -8141,5713:225:2,-135.5,-72,0,0,-0.00553968 -8142,5713:225:1,-135,-72,0,0,-0.00554953 -8143,5713:124:2,-134.5,-72,0,0,-0.00553724 -8144,5713:124:1,-134,-72,0,0,-0.00548824 -8145,5713:123:2,-133.5,-72,0,0,-0.00546755 -8146,5713:123:1,-133,-72,0,0,-0.00546878 -8147,5713:122:2,-132.5,-72,0,0,-0.00547119 -8148,5713:122:1,-132,-72,0,0,-0.00547364 -8149,5713:121:2,-131.5,-72,0,0,-0.00547605 -8150,5713:121:1,-131,-72,0,0,-0.00547972 -8151,5713:120:2,-130.5,-72,0,0,-0.00548337 -8152,5713:120:1,-130,-72,0,0,-0.00548459 -8153,5712:229:2,-129.5,-72,0,0,-0.00548701 -8154,5712:229:1,-129,-72,0,0,-0.00548824 -8155,5712:228:2,-128.5,-72,0,0,-0.00548824 -8156,5712:228:1,-128,-72,0,0,-0.00548824 -8157,5712:227:2,-127.5,-72,0,0,-0.00548824 -8158,5712:227:1,-127,-72,0,0,-0.00548824 -8159,5712:226:2,-126.5,-72,0,0,-0.00548824 -8160,5712:226:1,-126,-72,0,0,-0.00548824 -8161,5712:225:2,-125.5,-72,0,0,-0.00548824 -8162,5712:225:1,-125,-72,0,0,-0.00548824 -8163,5712:124:2,-124.5,-72,0,0,-0.00548824 -8164,5712:124:1,-124,-72,0,0,-0.00548947 -8165,5712:123:2,-123.5,-72,0,0,-0.00548947 -8166,5712:123:1,-123,-72,0,0,-0.00548947 -8167,5712:122:2,-122.5,-72,0,0,-0.00548947 -8168,5712:122:1,-122,-72,0,0,-0.00548824 -8169,5712:121:2,-121.5,-72,0,0,-0.00548824 -8170,5712:121:1,-121,-72,0,0,-0.00548701 -8171,5712:120:2,-120.5,-72,0,0,-0.00548582 -8172,5712:120:1,-120,-72,0,0,-0.00548459 -8173,5711:229:2,-119.5,-72,0,0,-0.00548337 -8174,5711:229:1,-119,-72,0,0,-0.00548214 -8175,5711:228:2,-118.5,-72,0,0,-0.00548214 -8176,5711:228:1,-118,-72,0,0,-0.00548091 -8177,5711:227:2,-117.5,-72,0,0,-0.00548091 -8178,5711:227:1,-117,-72,0,0,-0.00547972 -8179,5711:226:2,-116.5,-72,0,0,-0.00547972 -8180,5711:226:1,-116,-72,0,0,-0.0054785 -8181,5711:225:2,-115.5,-72,0,0,-0.0054785 -8182,5711:225:1,-115,-72,0,0,-0.00547727 -8183,5711:124:2,-114.5,-72,0,0,-0.00547605 -8184,5711:124:1,-114,-72,0,0,-0.00547605 -8185,5711:123:2,-113.5,-72,0,0,-0.00547605 -8186,5711:123:1,-113,-72,0,0,-0.00547486 -8187,5711:122:2,-112.5,-72,0,0,-0.00547486 -8188,5711:122:1,-112,-72,0,0,-0.00547486 -8189,5711:121:2,-111.5,-72,0,0,-0.00547486 -8190,5711:121:1,-111,-72,0,0,-0.00547605 -8191,5711:120:2,-110.5,-72,0,0,-0.00547727 -8192,5711:120:1,-110,-72,0,0,-0.0054785 -8193,5710:229:2,-109.5,-72,0,0,-0.00547972 -8194,5710:229:1,-109,-72,0,0,-0.00548091 -8195,5710:228:2,-108.5,-72,0,0,-0.00548214 -8196,5710:228:1,-108,-72,0,0,-0.00548337 -8197,5710:227:2,-107.5,-72,0,0,-0.00548459 -8198,5710:227:1,-107,-72,0,0,-0.00548459 -8199,5710:226:2,-106.5,-72,0,0,-0.00548582 -8200,5710:226:1,-106,-72,0,0,-0.00550165 -8201,5710:225:2,-105.5,-72,0,0,-0.00566165 -8202,5710:225:1,-105,-72,0,0,-0.00582368 -8203,5710:124:2,-104.5,-72,0,0,-0.00596649 -8204,5710:124:1,-104,-72,0,0,-0.00604523 -8205,5710:123:1,-103,-72,0,0,-0.00611689 -8206,5709:225:2,-95.5,-72,0,0,-0.00567421 -8207,5709:225:1,-95,-72,0,0,-0.00557177 -8208,5709:124:2,-94.5,-72,0,0,-0.005509 -8209,5709:124:1,-94,-72,0,0,-0.00550411 -8210,5709:123:2,-93.5,-72,0,0,-0.00550165 -8211,5709:123:1,-93,-72,0,0,-0.00549923 -8212,5709:122:2,-92.5,-72,0,0,-0.00549923 -8213,5709:122:1,-92,-72,0,0,-0.00550165 -8214,5709:121:2,-91.5,-72,0,0,-0.00550411 -8215,5709:121:1,-91,-72,0,0,-0.00550658 -8216,5709:120:2,-90.5,-72,0,0,-0.00550534 -8217,5709:120:1,-90,-72,0,0,-0.00550777 -8218,5708:229:2,-89.5,-72,0,0,-0.00550777 -8219,5708:229:1,-89,-72,0,0,-0.00550534 -8220,5708:228:2,-88.5,-72,0,0,-0.00550534 -8221,5708:228:1,-88,-72,0,0,-0.00550534 -8222,5708:227:2,-87.5,-72,0,0,-0.00550534 -8223,5708:227:1,-87,-72,0,0,-0.00550658 -8224,5708:226:2,-86.5,-72,0,0,-0.00550165 -8225,5708:226:1,-86,-72,0,0,-0.00549189 -8226,5708:225:2,-85.5,-72,0,0,-0.00547364 -8227,5708:225:1,-85,-72,0,0,-0.00546755 -8228,5708:124:2,-84.5,-72,0,0,-0.005498 -8229,5708:124:1,-84,-72,0,0,-0.00564781 -8230,5708:123:2,-83.5,-72,0,0,-0.00572741 -8231,5708:123:1,-83,-72,0,0,-0.00580302 -8232,5708:122:2,-82.5,-72,0,0,-0.0058172 -8233,5708:122:1,-82,-72,0,0,-0.005716 -8234,5708:121:2,-81.5,-72,0,0,-0.00579142 -8235,5708:121:1,-81,-72,0,0,-0.00590842 -8236,5708:120:2,-80.5,-72,0,0,-0.00590577 -8237,5708:120:1,-80,-72,0,0,-0.00582237 -8238,5707:229:2,-79.5,-72,0,0,-0.00582498 -8239,5707:229:1,-79,-72,0,0,-0.00582237 -8240,5707:228:2,-78.5,-72,0,0,-0.00574144 -8241,5707:228:1,-78,-72,0,0,-0.00581074 -8242,5707:227:2,-77.5,-72,0,0,-0.00607623 -8243,5707:227:1,-77,-72,0,0,-0.00646506 -8244,5707:226:2,-76.5,-72,0,0,-0.00659137 -8245,5707:226:1,-76,-72,0,0,-0.00675313 -8246,5707:225:2,-75.5,-72,0,0,-0.00675611 -8247,5707:225:1,-75,-72,0,0,-0.00681803 -8248,5707:124:2,-74.5,-72,0,0,-0.00736203 -8249,5707:124:1,-74,-72,0,0,-0.00791969 -8250,5707:123:2,-73.5,-72,0,0,-0.00801907 -8251,5706:120:1,-60,-72,0,0,-0.00552127 -8252,5705:229:2,-59.5,-72,0,0,-0.005509 -8253,5705:229:1,-59,-72,0,0,-0.00547972 -8254,5705:228:2,-58.5,-72,0,0,-0.00546392 -8255,5705:228:1,-58,-72,0,0,-0.00546026 -8256,5705:227:2,-57.5,-72,0,0,-0.00545907 -8257,5705:227:1,-57,-72,0,0,-0.00545785 -8258,5705:226:2,-56.5,-72,0,0,-0.00545663 -8259,5705:226:1,-56,-72,0,0,-0.00545663 -8260,5705:225:2,-55.5,-72,0,0,-0.00545785 -8261,5705:225:1,-55,-72,0,0,-0.00545785 -8262,5705:124:2,-54.5,-72,0,0,-0.00545907 -8263,5705:124:1,-54,-72,0,0,-0.0054627 -8264,5705:123:2,-53.5,-72,0,0,-0.00546633 -8265,5705:123:1,-53,-72,0,0,-0.00546755 -8266,5705:122:2,-52.5,-72,0,0,-0.00546633 -8267,5705:122:1,-52,-72,0,0,-0.00546755 -8268,5705:121:2,-51.5,-72,0,0,-0.00546878 -8269,5705:121:1,-51,-72,0,0,-0.00546755 -8270,5705:120:2,-50.5,-72,0,0,-0.00546755 -8271,5705:120:1,-50,-72,0,0,-0.00546755 -8272,5704:229:2,-49.5,-72,0,0,-0.00546878 -8273,5704:229:1,-49,-72,0,0,-0.00546878 -8274,5704:228:2,-48.5,-72,0,0,-0.00546878 -8275,5704:228:1,-48,-72,0,0,-0.00547 -8276,5704:227:2,-47.5,-72,0,0,-0.00547 -8277,5704:227:1,-47,-72,0,0,-0.00547 -8278,5704:226:2,-46.5,-72,0,0,-0.00547 -8279,5704:226:1,-46,-72,0,0,-0.00547 -8280,5704:225:2,-45.5,-72,0,0,-0.00547119 -8281,5704:225:1,-45,-72,0,0,-0.00547119 -8282,5704:124:2,-44.5,-72,0,0,-0.00547 -8283,5704:124:1,-44,-72,0,0,-0.00547 -8284,5704:123:2,-43.5,-72,0,0,-0.00547 -8285,5704:123:1,-43,-72,0,0,-0.00547 -8286,5704:122:2,-42.5,-72,0,0,-0.00546878 -8287,5704:122:1,-42,-72,0,0,-0.00546878 -8288,5704:121:2,-41.5,-72,0,0,-0.00546878 -8289,5704:121:1,-41,-72,0,0,-0.00546755 -8290,5704:120:2,-40.5,-72,0,0,-0.00546633 -8291,5704:120:1,-40,-72,0,0,-0.00546511 -8292,5703:229:2,-39.5,-72,0,0,-0.00546511 -8293,5703:229:1,-39,-72,0,0,-0.00546392 -8294,5703:228:2,-38.5,-72,0,0,-0.00546392 -8295,5703:228:1,-38,-72,0,0,-0.00546392 -8296,5703:227:2,-37.5,-72,0,0,-0.00546392 -8297,5703:227:1,-37,-72,0,0,-0.00546392 -8298,5703:226:2,-36.5,-72,0,0,-0.00546392 -8299,5703:226:1,-36,-72,0,0,-0.00546392 -8300,5703:225:2,-35.5,-72,0,0,-0.00546392 -8301,5703:225:1,-35,-72,0,0,-0.00546392 -8302,5703:124:2,-34.5,-72,0,0,-0.00546392 -8303,5703:124:1,-34,-72,0,0,-0.00546392 -8304,5703:123:2,-33.5,-72,0,0,-0.0054627 -8305,5703:123:1,-33,-72,0,0,-0.0054627 -8306,5703:122:2,-32.5,-72,0,0,-0.0054627 -8307,5703:122:1,-32,-72,0,0,-0.0054627 -8308,5703:121:2,-31.5,-72,0,0,-0.0054627 -8309,5703:121:1,-31,-72,0,0,-0.0054627 -8310,5703:120:2,-30.5,-72,0,0,-0.0054627 -8311,5703:120:1,-30,-72,0,0,-0.00546392 -8312,5702:229:2,-29.5,-72,0,0,-0.00546392 -8313,5702:229:1,-29,-72,0,0,-0.00546392 -8314,5702:228:2,-28.5,-72,0,0,-0.0054627 -8315,5702:228:1,-28,-72,0,0,-0.0054627 -8316,5702:227:2,-27.5,-72,0,0,-0.0054627 -8317,5702:227:1,-27,-72,0,0,-0.00546148 -8318,5702:226:2,-26.5,-72,0,0,-0.00546148 -8319,5702:226:1,-26,-72,0,0,-0.00546026 -8320,5702:225:2,-25.5,-72,0,0,-0.00545907 -8321,5702:225:1,-25,-72,0,0,-0.00545907 -8322,5702:124:2,-24.5,-72,0,0,-0.00545907 -8323,5702:124:1,-24,-72,0,0,-0.00545907 -8324,5702:123:2,-23.5,-72,0,0,-0.00546026 -8325,5702:123:1,-23,-72,0,0,-0.00546026 -8326,5702:122:2,-22.5,-72,0,0,-0.00546026 -8327,5702:122:1,-22,-72,0,0,-0.00546148 -8328,5702:121:2,-21.5,-72,0,0,-0.0054627 -8329,5702:121:1,-21,-72,0,0,-0.0054627 -8330,5702:120:2,-20.5,-72,0,0,-0.0054627 -8331,5702:120:1,-20,-72,0,0,-0.0054627 -8332,5701:229:2,-19.5,-72,0,0,-0.0054627 -8333,5701:229:1,-19,-72,0,0,-0.0054627 -8334,5701:228:2,-18.5,-72,0,0,-0.0054627 -8335,5701:228:1,-18,-72,0,0,-0.0054627 -8336,5701:227:2,-17.5,-72,0,0,-0.0054627 -8337,5701:227:1,-17,-72,0,0,-0.00546392 -8338,5701:226:2,-16.5,-72,0,0,-0.00547119 -8339,5701:226:1,-16,-72,0,0,-0.0054785 -8340,5701:225:2,-15.5,-72,0,0,-0.00546392 -8341,5701:225:1,-15,-72,0,0,-0.00544695 -8342,3717:120:2,170.5,-72,0,0,-0.00551024 -8343,3717:121:1,171,-72,0,0,-0.00548947 -8344,3717:121:2,171.5,-72,0,0,-0.00546878 -8345,3717:122:1,172,-72,0,0,-0.0054627 -8346,3717:122:2,172.5,-72,0,0,-0.00546392 -8347,3717:123:1,173,-72,0,0,-0.0055188 -8348,3717:123:2,173.5,-72,0,0,-0.00560405 -8349,3717:124:1,174,-72,0,0,-0.00555694 -8350,3717:124:2,174.5,-72,0,0,-0.00548824 -8351,3717:225:1,175,-72,0,0,-0.0054385 -8352,3717:225:2,175.5,-72,0,0,-0.0054385 -8353,3717:226:1,176,-72,0,0,-0.00543968 -8354,3717:226:2,176.5,-72,0,0,-0.00544089 -8355,3717:227:1,177,-72,0,0,-0.00544211 -8356,3717:227:2,177.5,-72,0,0,-0.00544451 -8357,3717:228:1,178,-72,0,0,-0.00544573 -8358,3717:228:2,178.5,-72,0,0,-0.00544695 -8359,3717:229:1,179,-72,0,0,-0.00544935 -8360,3717:229:2,179.5,-72,0,0,-0.005453 -8361,3718:120:1,180,-72,0,0,-0.00545541 -8362,5718:110:3,-180,-71.5,0,0,-0.00545541 -8363,5717:219:4,-179.5,-71.5,0,0,-0.00545663 -8364,5717:219:3,-179,-71.5,0,0,-0.00545907 -8365,5717:218:4,-178.5,-71.5,0,0,-0.00546148 -8366,5717:218:3,-178,-71.5,0,0,-0.0054627 -8367,5717:217:4,-177.5,-71.5,0,0,-0.00546511 -8368,5717:217:3,-177,-71.5,0,0,-0.00546511 -8369,5717:216:4,-176.5,-71.5,0,0,-0.00546755 -8370,5717:216:3,-176,-71.5,0,0,-0.00546878 -8371,5717:215:4,-175.5,-71.5,0,0,-0.00547241 -8372,5717:215:3,-175,-71.5,0,0,-0.00547486 -8373,5717:114:4,-174.5,-71.5,0,0,-0.00547486 -8374,5717:114:3,-174,-71.5,0,0,-0.00547605 -8375,5717:113:4,-173.5,-71.5,0,0,-0.00547727 -8376,5717:113:3,-173,-71.5,0,0,-0.00547605 -8377,5717:112:4,-172.5,-71.5,0,0,-0.00547364 -8378,5717:112:3,-172,-71.5,0,0,-0.00547241 -8379,5717:111:4,-171.5,-71.5,0,0,-0.00547119 -8380,5717:111:3,-171,-71.5,0,0,-0.00547 -8381,5717:110:4,-170.5,-71.5,0,0,-0.00546878 -8382,5717:110:3,-170,-71.5,0,0,-0.00546878 -8383,5716:219:4,-169.5,-71.5,0,0,-0.00546755 -8384,5716:219:3,-169,-71.5,0,0,-0.00546633 -8385,5716:218:4,-168.5,-71.5,0,0,-0.00546633 -8386,5716:218:3,-168,-71.5,0,0,-0.00546633 -8387,5716:217:4,-167.5,-71.5,0,0,-0.00546633 -8388,5716:217:3,-167,-71.5,0,0,-0.00546633 -8389,5716:216:4,-166.5,-71.5,0,0,-0.00546755 -8390,5716:216:3,-166,-71.5,0,0,-0.00546755 -8391,5716:215:4,-165.5,-71.5,0,0,-0.00546878 -8392,5716:215:3,-165,-71.5,0,0,-0.00546878 -8393,5716:114:4,-164.5,-71.5,0,0,-0.00547 -8394,5716:114:3,-164,-71.5,0,0,-0.00547 -8395,5716:113:4,-163.5,-71.5,0,0,-0.00547119 -8396,5716:113:3,-163,-71.5,0,0,-0.00547119 -8397,5716:112:4,-162.5,-71.5,0,0,-0.00547241 -8398,5716:112:3,-162,-71.5,0,0,-0.00547241 -8399,5716:111:4,-161.5,-71.5,0,0,-0.00547364 -8400,5716:111:3,-161,-71.5,0,0,-0.00547241 -8401,5716:110:4,-160.5,-71.5,0,0,-0.00547241 -8402,5716:110:3,-160,-71.5,0,0,-0.00547364 -8403,5715:219:4,-159.5,-71.5,0,0,-0.00547486 -8404,5715:219:3,-159,-71.5,0,0,-0.00547605 -8405,5715:218:4,-158.5,-71.5,0,0,-0.00547727 -8406,5715:218:3,-158,-71.5,0,0,-0.00547727 -8407,5715:217:4,-157.5,-71.5,0,0,-0.0054785 -8408,5715:217:3,-157,-71.5,0,0,-0.0054785 -8409,5715:216:4,-156.5,-71.5,0,0,-0.0054785 -8410,5715:216:3,-156,-71.5,0,0,-0.00547972 -8411,5715:215:4,-155.5,-71.5,0,0,-0.00548214 -8412,5715:215:3,-155,-71.5,0,0,-0.00548337 -8413,5715:114:4,-154.5,-71.5,0,0,-0.00548337 -8414,5715:114:3,-154,-71.5,0,0,-0.00548459 -8415,5715:113:4,-153.5,-71.5,0,0,-0.00548337 -8416,5715:113:3,-153,-71.5,0,0,-0.00548337 -8417,5715:112:4,-152.5,-71.5,0,0,-0.00548337 -8418,5715:112:3,-152,-71.5,0,0,-0.00548459 -8419,5715:111:4,-151.5,-71.5,0,0,-0.00548582 -8420,5715:111:3,-151,-71.5,0,0,-0.00548701 -8421,5715:110:4,-150.5,-71.5,0,0,-0.00548701 -8422,5715:110:3,-150,-71.5,0,0,-0.00548824 -8423,5714:219:4,-149.5,-71.5,0,0,-0.00548947 -8424,5714:219:3,-149,-71.5,0,0,-0.00549069 -8425,5714:218:4,-148.5,-71.5,0,0,-0.00549189 -8426,5714:218:3,-148,-71.5,0,0,-0.00549434 -8427,5714:217:4,-147.5,-71.5,0,0,-0.00549434 -8428,5714:217:3,-147,-71.5,0,0,-0.00549434 -8429,5714:216:4,-146.5,-71.5,0,0,-0.00549312 -8430,5714:216:3,-146,-71.5,0,0,-0.00549312 -8431,5714:215:4,-145.5,-71.5,0,0,-0.00549434 -8432,5714:215:3,-145,-71.5,0,0,-0.00549434 -8433,5714:114:4,-144.5,-71.5,0,0,-0.00549557 -8434,5714:114:3,-144,-71.5,0,0,-0.00549677 -8435,5714:113:4,-143.5,-71.5,0,0,-0.005498 -8436,5714:113:3,-143,-71.5,0,0,-0.005498 -8437,5714:112:4,-142.5,-71.5,0,0,-0.005498 -8438,5714:112:3,-142,-71.5,0,0,-0.005498 -8439,5714:111:4,-141.5,-71.5,0,0,-0.00549677 -8440,5714:111:3,-141,-71.5,0,0,-0.00549312 -8441,5714:110:4,-140.5,-71.5,0,0,-0.00548824 -8442,5714:110:3,-140,-71.5,0,0,-0.00548582 -8443,5713:219:4,-139.5,-71.5,0,0,-0.00548337 -8444,5713:219:3,-139,-71.5,0,0,-0.00548337 -8445,5713:218:4,-138.5,-71.5,0,0,-0.00548337 -8446,5713:218:3,-138,-71.5,0,0,-0.00548214 -8447,5713:217:4,-137.5,-71.5,0,0,-0.00549069 -8448,5713:217:3,-137,-71.5,0,0,-0.00551513 -8449,5713:216:4,-136.5,-71.5,0,0,-0.00556188 -8450,5713:216:3,-136,-71.5,0,0,-0.00561527 -8451,5713:215:4,-135.5,-71.5,0,0,-0.00565156 -8452,5713:215:3,-135,-71.5,0,0,-0.00566541 -8453,5713:114:4,-134.5,-71.5,0,0,-0.00567548 -8454,5713:114:3,-134,-71.5,0,0,-0.00566791 -8455,5713:113:4,-133.5,-71.5,0,0,-0.00557797 -8456,5713:113:3,-133,-71.5,0,0,-0.00556188 -8457,5713:112:4,-132.5,-71.5,0,0,-0.00555819 -8458,5713:112:3,-132,-71.5,0,0,-0.00549557 -8459,5713:111:4,-131.5,-71.5,0,0,-0.00547605 -8460,5713:111:3,-131,-71.5,0,0,-0.00547727 -8461,5713:110:4,-130.5,-71.5,0,0,-0.00548091 -8462,5713:110:3,-130,-71.5,0,0,-0.00548459 -8463,5712:219:4,-129.5,-71.5,0,0,-0.00548701 -8464,5712:219:3,-129,-71.5,0,0,-0.00548824 -8465,5712:218:4,-128.5,-71.5,0,0,-0.00548947 -8466,5712:218:3,-128,-71.5,0,0,-0.00548947 -8467,5712:217:4,-127.5,-71.5,0,0,-0.00548947 -8468,5712:217:3,-127,-71.5,0,0,-0.00548947 -8469,5712:216:4,-126.5,-71.5,0,0,-0.00548947 -8470,5712:216:3,-126,-71.5,0,0,-0.00548947 -8471,5712:215:4,-125.5,-71.5,0,0,-0.00548824 -8472,5712:215:3,-125,-71.5,0,0,-0.00548824 -8473,5712:114:4,-124.5,-71.5,0,0,-0.00548947 -8474,5712:114:3,-124,-71.5,0,0,-0.00548947 -8475,5712:113:4,-123.5,-71.5,0,0,-0.00548947 -8476,5712:113:3,-123,-71.5,0,0,-0.00548947 -8477,5712:112:4,-122.5,-71.5,0,0,-0.00548947 -8478,5712:112:3,-122,-71.5,0,0,-0.00548947 -8479,5712:111:4,-121.5,-71.5,0,0,-0.00548824 -8480,5712:111:3,-121,-71.5,0,0,-0.00548824 -8481,5712:110:4,-120.5,-71.5,0,0,-0.00548701 -8482,5712:110:3,-120,-71.5,0,0,-0.00548582 -8483,5711:219:4,-119.5,-71.5,0,0,-0.00548459 -8484,5711:219:3,-119,-71.5,0,0,-0.00548337 -8485,5711:218:4,-118.5,-71.5,0,0,-0.00548214 -8486,5711:218:3,-118,-71.5,0,0,-0.00548214 -8487,5711:217:4,-117.5,-71.5,0,0,-0.00548091 -8488,5711:217:3,-117,-71.5,0,0,-0.00548091 -8489,5711:216:4,-116.5,-71.5,0,0,-0.00547972 -8490,5711:216:3,-116,-71.5,0,0,-0.0054785 -8491,5711:215:4,-115.5,-71.5,0,0,-0.0054785 -8492,5711:215:3,-115,-71.5,0,0,-0.00547727 -8493,5711:114:4,-114.5,-71.5,0,0,-0.00547727 -8494,5711:114:3,-114,-71.5,0,0,-0.00547727 -8495,5711:113:4,-113.5,-71.5,0,0,-0.00547727 -8496,5711:113:3,-113,-71.5,0,0,-0.00547727 -8497,5711:112:4,-112.5,-71.5,0,0,-0.00547727 -8498,5711:112:3,-112,-71.5,0,0,-0.00547727 -8499,5711:111:4,-111.5,-71.5,0,0,-0.00547727 -8500,5711:111:3,-111,-71.5,0,0,-0.00547727 -8501,5711:110:4,-110.5,-71.5,0,0,-0.0054785 -8502,5711:110:3,-110,-71.5,0,0,-0.0054785 -8503,5710:219:4,-109.5,-71.5,0,0,-0.00547972 -8504,5710:219:3,-109,-71.5,0,0,-0.00547972 -8505,5710:218:4,-108.5,-71.5,0,0,-0.00548091 -8506,5710:218:3,-108,-71.5,0,0,-0.00548091 -8507,5710:217:4,-107.5,-71.5,0,0,-0.00548214 -8508,5710:217:3,-107,-71.5,0,0,-0.00548337 -8509,5710:216:4,-106.5,-71.5,0,0,-0.00548459 -8510,5710:216:3,-106,-71.5,0,0,-0.00548582 -8511,5710:215:4,-105.5,-71.5,0,0,-0.00548214 -8512,5710:215:3,-105,-71.5,0,0,-0.00547605 -8513,5710:114:4,-104.5,-71.5,0,0,-0.00553232 -8514,5710:114:3,-104,-71.5,0,0,-0.00551756 -8515,5710:113:4,-103.5,-71.5,0,0,-0.00553232 -8516,5710:113:3,-103,-71.5,0,0,-0.005536 -8517,5710:112:4,-102.5,-71.5,0,0,-0.00559039 -8518,5709:216:3,-96,-71.5,0,0,-0.00555077 -8519,5709:215:4,-95.5,-71.5,0,0,-0.0055557 -8520,5709:215:3,-95,-71.5,0,0,-0.00553108 -8521,5709:114:4,-94.5,-71.5,0,0,-0.00549677 -8522,5709:114:3,-94,-71.5,0,0,-0.00549189 -8523,5709:113:4,-93.5,-71.5,0,0,-0.00549069 -8524,5709:113:3,-93,-71.5,0,0,-0.00549312 -8525,5709:112:4,-92.5,-71.5,0,0,-0.00549677 -8526,5709:112:3,-92,-71.5,0,0,-0.005498 -8527,5709:111:4,-91.5,-71.5,0,0,-0.00549677 -8528,5709:111:3,-91,-71.5,0,0,-0.00549677 -8529,5709:110:4,-90.5,-71.5,0,0,-0.00549557 -8530,5709:110:3,-90,-71.5,0,0,-0.00549434 -8531,5708:219:4,-89.5,-71.5,0,0,-0.00549069 -8532,5708:219:3,-89,-71.5,0,0,-0.00548824 -8533,5708:218:4,-88.5,-71.5,0,0,-0.00548582 -8534,5708:218:3,-88,-71.5,0,0,-0.00548459 -8535,5708:217:4,-87.5,-71.5,0,0,-0.00548337 -8536,5708:217:3,-87,-71.5,0,0,-0.00547727 -8537,5708:216:4,-86.5,-71.5,0,0,-0.00546878 -8538,5708:216:3,-86,-71.5,0,0,-0.00546148 -8539,5708:215:4,-85.5,-71.5,0,0,-0.00545541 -8540,5708:215:3,-85,-71.5,0,0,-0.00545179 -8541,5708:114:4,-84.5,-71.5,0,0,-0.00545057 -8542,5708:114:3,-84,-71.5,0,0,-0.00546511 -8543,5708:113:4,-83.5,-71.5,0,0,-0.00557922 -8544,5708:113:3,-83,-71.5,0,0,-0.00569951 -8545,5708:112:4,-82.5,-71.5,0,0,-0.00583795 -8546,5708:112:3,-82,-71.5,0,0,-0.00589661 -8547,5708:111:4,-81.5,-71.5,0,0,-0.00593871 -8548,5708:111:3,-81,-71.5,0,0,-0.00597313 -8549,5708:110:4,-80.5,-71.5,0,0,-0.00597576 -8550,5708:110:3,-80,-71.5,0,0,-0.00599704 -8551,5707:219:4,-79.5,-71.5,0,0,-0.00604523 -8552,5707:219:3,-79,-71.5,0,0,-0.00608163 -8553,5707:218:4,-78.5,-71.5,0,0,-0.00608027 -8554,5707:218:3,-78,-71.5,0,0,-0.00620731 -8555,5707:217:4,-77.5,-71.5,0,0,-0.00624189 -8556,5707:217:3,-77,-71.5,0,0,-0.00632713 -8557,5707:216:4,-76.5,-71.5,0,0,-0.00651991 -8558,5707:216:3,-76,-71.5,0,0,-0.00705724 -8559,5707:215:4,-75.5,-71.5,0,0,-0.00744273 -8560,5707:215:3,-75,-71.5,0,0,-0.00745599 -8561,5706:110:3,-60,-71.5,0,0,-0.0055237 -8562,5705:219:4,-59.5,-71.5,0,0,-0.00550046 -8563,5705:219:3,-59,-71.5,0,0,-0.00547364 -8564,5705:218:4,-58.5,-71.5,0,0,-0.0054627 -8565,5705:218:3,-58,-71.5,0,0,-0.00546148 -8566,5705:217:4,-57.5,-71.5,0,0,-0.0054627 -8567,5705:217:3,-57,-71.5,0,0,-0.0054627 -8568,5705:216:4,-56.5,-71.5,0,0,-0.00545907 -8569,5705:216:3,-56,-71.5,0,0,-0.00545785 -8570,5705:215:4,-55.5,-71.5,0,0,-0.00545907 -8571,5705:215:3,-55,-71.5,0,0,-0.00546026 -8572,5705:114:4,-54.5,-71.5,0,0,-0.0054627 -8573,5705:114:3,-54,-71.5,0,0,-0.00546511 -8574,5705:113:4,-53.5,-71.5,0,0,-0.00546755 -8575,5705:113:3,-53,-71.5,0,0,-0.00546755 -8576,5705:112:4,-52.5,-71.5,0,0,-0.00546878 -8577,5705:112:3,-52,-71.5,0,0,-0.00546878 -8578,5705:111:4,-51.5,-71.5,0,0,-0.00546878 -8579,5705:111:3,-51,-71.5,0,0,-0.00546878 -8580,5705:110:4,-50.5,-71.5,0,0,-0.00546878 -8581,5705:110:3,-50,-71.5,0,0,-0.00546878 -8582,5704:219:4,-49.5,-71.5,0,0,-0.00546878 -8583,5704:219:3,-49,-71.5,0,0,-0.00547 -8584,5704:218:4,-48.5,-71.5,0,0,-0.00547 -8585,5704:218:3,-48,-71.5,0,0,-0.00547 -8586,5704:217:4,-47.5,-71.5,0,0,-0.00547 -8587,5704:217:3,-47,-71.5,0,0,-0.00547 -8588,5704:216:4,-46.5,-71.5,0,0,-0.00547119 -8589,5704:216:3,-46,-71.5,0,0,-0.00547 -8590,5704:215:4,-45.5,-71.5,0,0,-0.00547 -8591,5704:215:3,-45,-71.5,0,0,-0.00547 -8592,5704:114:4,-44.5,-71.5,0,0,-0.00547 -8593,5704:114:3,-44,-71.5,0,0,-0.00546878 -8594,5704:113:4,-43.5,-71.5,0,0,-0.00546878 -8595,5704:113:3,-43,-71.5,0,0,-0.00546755 -8596,5704:112:4,-42.5,-71.5,0,0,-0.00546755 -8597,5704:112:3,-42,-71.5,0,0,-0.00546633 -8598,5704:111:4,-41.5,-71.5,0,0,-0.00546633 -8599,5704:111:3,-41,-71.5,0,0,-0.00546511 -8600,5704:110:4,-40.5,-71.5,0,0,-0.00546392 -8601,5704:110:3,-40,-71.5,0,0,-0.00546392 -8602,5703:219:4,-39.5,-71.5,0,0,-0.00546392 -8603,5703:219:3,-39,-71.5,0,0,-0.00546392 -8604,5703:218:4,-38.5,-71.5,0,0,-0.00546392 -8605,5703:218:3,-38,-71.5,0,0,-0.0054627 -8606,5703:217:4,-37.5,-71.5,0,0,-0.0054627 -8607,5703:217:3,-37,-71.5,0,0,-0.0054627 -8608,5703:216:4,-36.5,-71.5,0,0,-0.0054627 -8609,5703:216:3,-36,-71.5,0,0,-0.0054627 -8610,5703:215:4,-35.5,-71.5,0,0,-0.0054627 -8611,5703:215:3,-35,-71.5,0,0,-0.0054627 -8612,5703:114:4,-34.5,-71.5,0,0,-0.0054627 -8613,5703:114:3,-34,-71.5,0,0,-0.0054627 -8614,5703:113:4,-33.5,-71.5,0,0,-0.0054627 -8615,5703:113:3,-33,-71.5,0,0,-0.0054627 -8616,5703:112:4,-32.5,-71.5,0,0,-0.0054627 -8617,5703:112:3,-32,-71.5,0,0,-0.0054627 -8618,5703:111:4,-31.5,-71.5,0,0,-0.00546392 -8619,5703:111:3,-31,-71.5,0,0,-0.00546392 -8620,5703:110:4,-30.5,-71.5,0,0,-0.00546392 -8621,5703:110:3,-30,-71.5,0,0,-0.00546392 -8622,5702:219:4,-29.5,-71.5,0,0,-0.00546511 -8623,5702:219:3,-29,-71.5,0,0,-0.00546511 -8624,5702:218:4,-28.5,-71.5,0,0,-0.00546392 -8625,5702:218:3,-28,-71.5,0,0,-0.00546392 -8626,5702:217:4,-27.5,-71.5,0,0,-0.0054627 -8627,5702:217:3,-27,-71.5,0,0,-0.0054627 -8628,5702:216:4,-26.5,-71.5,0,0,-0.00546148 -8629,5702:216:3,-26,-71.5,0,0,-0.00546026 -8630,5702:215:4,-25.5,-71.5,0,0,-0.00546026 -8631,5702:215:3,-25,-71.5,0,0,-0.00545907 -8632,5702:114:4,-24.5,-71.5,0,0,-0.00545907 -8633,5702:114:3,-24,-71.5,0,0,-0.00545785 -8634,5702:113:4,-23.5,-71.5,0,0,-0.00545907 -8635,5702:113:3,-23,-71.5,0,0,-0.00545907 -8636,5702:112:4,-22.5,-71.5,0,0,-0.00545907 -8637,5702:112:3,-22,-71.5,0,0,-0.00545907 -8638,5702:111:4,-21.5,-71.5,0,0,-0.00546026 -8639,5702:111:3,-21,-71.5,0,0,-0.00546148 -8640,5702:110:4,-20.5,-71.5,0,0,-0.0054627 -8641,5702:110:3,-20,-71.5,0,0,-0.0054627 -8642,5701:219:4,-19.5,-71.5,0,0,-0.0054627 -8643,5701:219:3,-19,-71.5,0,0,-0.0054627 -8644,5701:218:4,-18.5,-71.5,0,0,-0.0054627 -8645,5701:218:3,-18,-71.5,0,0,-0.0054627 -8646,5701:217:4,-17.5,-71.5,0,0,-0.0054627 -8647,5701:217:3,-17,-71.5,0,0,-0.00546392 -8648,5701:216:4,-16.5,-71.5,0,0,-0.00546392 -8649,5701:216:3,-16,-71.5,0,0,-0.00546755 -8650,5701:215:4,-15.5,-71.5,0,0,-0.00547241 -8651,5701:215:3,-15,-71.5,0,0,-0.00548701 -8652,5701:114:4,-14.5,-71.5,0,0,-0.00552617 -8653,5701:114:3,-14,-71.5,0,0,-0.00564907 -8654,5701:113:4,-13.5,-71.5,0,0,-0.00628226 -8655,5701:113:3,-13,-71.5,0,0,-0.00714412 -8656,3717:110:4,170.5,-71.5,0,0,-0.0055237 -8657,3717:111:3,171,-71.5,0,0,-0.00550658 -8658,3717:111:4,171.5,-71.5,0,0,-0.00548091 -8659,3717:112:3,172,-71.5,0,0,-0.00546878 -8660,3717:112:4,172.5,-71.5,0,0,-0.00548947 -8661,3717:113:3,173,-71.5,0,0,-0.00553476 -8662,3717:113:4,173.5,-71.5,0,0,-0.00551266 -8663,3717:114:3,174,-71.5,0,0,-0.00547119 -8664,3717:114:4,174.5,-71.5,0,0,-0.00545057 -8665,3717:215:3,175,-71.5,0,0,-0.00545057 -8666,3717:215:4,175.5,-71.5,0,0,-0.00544935 -8667,3717:216:3,176,-71.5,0,0,-0.00544816 -8668,3717:216:4,176.5,-71.5,0,0,-0.00544695 -8669,3717:217:3,177,-71.5,0,0,-0.00544695 -8670,3717:217:4,177.5,-71.5,0,0,-0.00544816 -8671,3717:218:3,178,-71.5,0,0,-0.00544935 -8672,3717:218:4,178.5,-71.5,0,0,-0.00545057 -8673,3717:219:3,179,-71.5,0,0,-0.00545179 -8674,3717:219:4,179.5,-71.5,0,0,-0.005453 -8675,3718:110:3,180,-71.5,0,0,-0.00545541 -8676,5718:110:1,-180,-71,0,0,-0.00545663 -8677,5717:219:2,-179.5,-71,0,0,-0.00545785 -8678,5717:219:1,-179,-71,0,0,-0.00546026 -8679,5717:218:2,-178.5,-71,0,0,-0.00546148 -8680,5717:218:1,-178,-71,0,0,-0.00546392 -8681,5717:217:2,-177.5,-71,0,0,-0.00546511 -8682,5717:217:1,-177,-71,0,0,-0.00546633 -8683,5717:216:2,-176.5,-71,0,0,-0.00546878 -8684,5717:216:1,-176,-71,0,0,-0.00547119 -8685,5717:215:2,-175.5,-71,0,0,-0.00547486 -8686,5717:215:1,-175,-71,0,0,-0.00547605 -8687,5717:114:2,-174.5,-71,0,0,-0.00547727 -8688,5717:114:1,-174,-71,0,0,-0.00547727 -8689,5717:113:2,-173.5,-71,0,0,-0.00547727 -8690,5717:113:1,-173,-71,0,0,-0.00547605 -8691,5717:112:2,-172.5,-71,0,0,-0.00547364 -8692,5717:112:1,-172,-71,0,0,-0.00547241 -8693,5717:111:2,-171.5,-71,0,0,-0.00547241 -8694,5717:111:1,-171,-71,0,0,-0.00547119 -8695,5717:110:2,-170.5,-71,0,0,-0.00547 -8696,5717:110:1,-170,-71,0,0,-0.00546755 -8697,5716:219:2,-169.5,-71,0,0,-0.00546633 -8698,5716:219:1,-169,-71,0,0,-0.00546633 -8699,5716:218:2,-168.5,-71,0,0,-0.00546633 -8700,5716:218:1,-168,-71,0,0,-0.00546511 -8701,5716:217:2,-167.5,-71,0,0,-0.00546511 -8702,5716:217:1,-167,-71,0,0,-0.00546511 -8703,5716:216:2,-166.5,-71,0,0,-0.00546511 -8704,5716:216:1,-166,-71,0,0,-0.00546511 -8705,5716:215:2,-165.5,-71,0,0,-0.00546633 -8706,5716:215:1,-165,-71,0,0,-0.00546633 -8707,5716:114:2,-164.5,-71,0,0,-0.00546755 -8708,5716:114:1,-164,-71,0,0,-0.00546755 -8709,5716:113:2,-163.5,-71,0,0,-0.00546878 -8710,5716:113:1,-163,-71,0,0,-0.00546878 -8711,5716:112:2,-162.5,-71,0,0,-0.00547 -8712,5716:112:1,-162,-71,0,0,-0.00547 -8713,5716:111:2,-161.5,-71,0,0,-0.00547119 -8714,5716:111:1,-161,-71,0,0,-0.00547119 -8715,5716:110:2,-160.5,-71,0,0,-0.00547119 -8716,5716:110:1,-160,-71,0,0,-0.00547241 -8717,5715:219:2,-159.5,-71,0,0,-0.00547241 -8718,5715:219:1,-159,-71,0,0,-0.00547241 -8719,5715:218:2,-158.5,-71,0,0,-0.00547241 -8720,5715:218:1,-158,-71,0,0,-0.00547241 -8721,5715:217:2,-157.5,-71,0,0,-0.00547364 -8722,5715:217:1,-157,-71,0,0,-0.00547486 -8723,5715:216:2,-156.5,-71,0,0,-0.00547605 -8724,5715:216:1,-156,-71,0,0,-0.00547727 -8725,5715:215:2,-155.5,-71,0,0,-0.00547972 -8726,5715:215:1,-155,-71,0,0,-0.00548091 -8727,5715:114:2,-154.5,-71,0,0,-0.00548214 -8728,5715:114:1,-154,-71,0,0,-0.00548459 -8729,5715:113:2,-153.5,-71,0,0,-0.00548459 -8730,5715:113:1,-153,-71,0,0,-0.00548459 -8731,5715:112:2,-152.5,-71,0,0,-0.00548459 -8732,5715:112:1,-152,-71,0,0,-0.00548582 -8733,5715:111:2,-151.5,-71,0,0,-0.00548701 -8734,5715:111:1,-151,-71,0,0,-0.00548824 -8735,5715:110:2,-150.5,-71,0,0,-0.00548824 -8736,5715:110:1,-150,-71,0,0,-0.00548947 -8737,5714:219:2,-149.5,-71,0,0,-0.00548947 -8738,5714:219:1,-149,-71,0,0,-0.00549069 -8739,5714:218:2,-148.5,-71,0,0,-0.00549312 -8740,5714:218:1,-148,-71,0,0,-0.00549434 -8741,5714:217:2,-147.5,-71,0,0,-0.00549557 -8742,5714:217:1,-147,-71,0,0,-0.00549557 -8743,5714:216:2,-146.5,-71,0,0,-0.00549434 -8744,5714:216:1,-146,-71,0,0,-0.00549312 -8745,5714:215:2,-145.5,-71,0,0,-0.00549312 -8746,5714:215:1,-145,-71,0,0,-0.00549434 -8747,5714:114:2,-144.5,-71,0,0,-0.00549677 -8748,5714:114:1,-144,-71,0,0,-0.005498 -8749,5714:113:2,-143.5,-71,0,0,-0.005498 -8750,5714:113:1,-143,-71,0,0,-0.005498 -8751,5714:112:2,-142.5,-71,0,0,-0.005498 -8752,5714:112:1,-142,-71,0,0,-0.005498 -8753,5714:111:2,-141.5,-71,0,0,-0.005498 -8754,5714:111:1,-141,-71,0,0,-0.00549312 -8755,5714:110:2,-140.5,-71,0,0,-0.00548701 -8756,5714:110:1,-140,-71,0,0,-0.00548459 -8757,5713:219:2,-139.5,-71,0,0,-0.00548337 -8758,5713:219:1,-139,-71,0,0,-0.00548214 -8759,5713:218:2,-138.5,-71,0,0,-0.00548214 -8760,5713:218:1,-138,-71,0,0,-0.00548214 -8761,5713:217:2,-137.5,-71,0,0,-0.00548582 -8762,5713:217:1,-137,-71,0,0,-0.0055139 -8763,5713:216:2,-136.5,-71,0,0,-0.00555943 -8764,5713:216:1,-136,-71,0,0,-0.00562278 -8765,5713:215:2,-135.5,-71,0,0,-0.00566791 -8766,5713:215:1,-135,-71,0,0,-0.00567421 -8767,5713:114:2,-134.5,-71,0,0,-0.00565535 -8768,5713:114:1,-134,-71,0,0,-0.00568307 -8769,5713:113:2,-133.5,-71,0,0,-0.00567548 -8770,5713:113:1,-133,-71,0,0,-0.00563277 -8771,5713:112:2,-132.5,-71,0,0,-0.00561029 -8772,5713:112:1,-132,-71,0,0,-0.00558543 -8773,5713:111:2,-131.5,-71,0,0,-0.00554832 -8774,5713:111:1,-131,-71,0,0,-0.00552003 -8775,5713:110:2,-130.5,-71,0,0,-0.00548459 -8776,5713:110:1,-130,-71,0,0,-0.00548214 -8777,5712:219:2,-129.5,-71,0,0,-0.00548582 -8778,5712:219:1,-129,-71,0,0,-0.00548701 -8779,5712:218:2,-128.5,-71,0,0,-0.00548824 -8780,5712:218:1,-128,-71,0,0,-0.00548947 -8781,5712:217:2,-127.5,-71,0,0,-0.00549069 -8782,5712:217:1,-127,-71,0,0,-0.00549069 -8783,5712:216:2,-126.5,-71,0,0,-0.00549069 -8784,5712:216:1,-126,-71,0,0,-0.00549069 -8785,5712:215:2,-125.5,-71,0,0,-0.00549069 -8786,5712:215:1,-125,-71,0,0,-0.00549189 -8787,5712:114:2,-124.5,-71,0,0,-0.00549189 -8788,5712:114:1,-124,-71,0,0,-0.00549069 -8789,5712:113:2,-123.5,-71,0,0,-0.00549069 -8790,5712:113:1,-123,-71,0,0,-0.00549069 -8791,5712:112:2,-122.5,-71,0,0,-0.00549069 -8792,5712:112:1,-122,-71,0,0,-0.00549069 -8793,5712:111:2,-121.5,-71,0,0,-0.00549069 -8794,5712:111:1,-121,-71,0,0,-0.00548947 -8795,5712:110:2,-120.5,-71,0,0,-0.00548824 -8796,5712:110:1,-120,-71,0,0,-0.00548582 -8797,5711:219:2,-119.5,-71,0,0,-0.00548459 -8798,5711:219:1,-119,-71,0,0,-0.00548337 -8799,5711:218:2,-118.5,-71,0,0,-0.00548214 -8800,5711:218:1,-118,-71,0,0,-0.00548214 -8801,5711:217:2,-117.5,-71,0,0,-0.00548091 -8802,5711:217:1,-117,-71,0,0,-0.00547972 -8803,5711:216:2,-116.5,-71,0,0,-0.00547972 -8804,5711:216:1,-116,-71,0,0,-0.0054785 -8805,5711:215:2,-115.5,-71,0,0,-0.0054785 -8806,5711:215:1,-115,-71,0,0,-0.0054785 -8807,5711:114:2,-114.5,-71,0,0,-0.0054785 -8808,5711:114:1,-114,-71,0,0,-0.0054785 -8809,5711:113:2,-113.5,-71,0,0,-0.0054785 -8810,5711:113:1,-113,-71,0,0,-0.0054785 -8811,5711:112:2,-112.5,-71,0,0,-0.0054785 -8812,5711:112:1,-112,-71,0,0,-0.0054785 -8813,5711:111:2,-111.5,-71,0,0,-0.00547972 -8814,5711:111:1,-111,-71,0,0,-0.00547972 -8815,5711:110:2,-110.5,-71,0,0,-0.00547972 -8816,5711:110:1,-110,-71,0,0,-0.00547972 -8817,5710:219:2,-109.5,-71,0,0,-0.00548091 -8818,5710:219:1,-109,-71,0,0,-0.00548091 -8819,5710:218:2,-108.5,-71,0,0,-0.00548091 -8820,5710:218:1,-108,-71,0,0,-0.00547972 -8821,5710:217:2,-107.5,-71,0,0,-0.00548091 -8822,5710:217:1,-107,-71,0,0,-0.00548214 -8823,5710:216:2,-106.5,-71,0,0,-0.00548337 -8824,5710:216:1,-106,-71,0,0,-0.00548459 -8825,5710:215:2,-105.5,-71,0,0,-0.00548824 -8826,5710:215:1,-105,-71,0,0,-0.00549189 -8827,5710:114:2,-104.5,-71,0,0,-0.00549557 -8828,5710:114:1,-104,-71,0,0,-0.00549557 -8829,5710:113:2,-103.5,-71,0,0,-0.005498 -8830,5710:113:1,-103,-71,0,0,-0.00550658 -8831,5710:112:2,-102.5,-71,0,0,-0.00552003 -8832,5710:112:1,-102,-71,0,0,-0.0055446 -8833,5710:111:2,-101.5,-71,0,0,-0.0056403 -8834,5710:111:1,-101,-71,0,0,-0.00579916 -8835,5710:110:2,-100.5,-71,0,0,-0.00577342 -8836,5710:110:1,-100,-71,0,0,-0.00569318 -8837,5709:219:2,-99.5,-71,0,0,-0.00558543 -8838,5709:218:2,-98.5,-71,0,0,-0.00557177 -8839,5709:218:1,-98,-71,0,0,-0.00549557 -8840,5709:217:2,-97.5,-71,0,0,-0.00550411 -8841,5709:217:1,-97,-71,0,0,-0.0055139 -8842,5709:216:2,-96.5,-71,0,0,-0.00552861 -8843,5709:216:1,-96,-71,0,0,-0.00554092 -8844,5709:215:2,-95.5,-71,0,0,-0.00553232 -8845,5709:215:1,-95,-71,0,0,-0.00550534 -8846,5709:114:2,-94.5,-71,0,0,-0.00548947 -8847,5709:114:1,-94,-71,0,0,-0.00548701 -8848,5709:113:2,-93.5,-71,0,0,-0.00548582 -8849,5709:113:1,-93,-71,0,0,-0.00548701 -8850,5709:112:2,-92.5,-71,0,0,-0.00548947 -8851,5709:112:1,-92,-71,0,0,-0.00549069 -8852,5709:111:2,-91.5,-71,0,0,-0.00549069 -8853,5709:111:1,-91,-71,0,0,-0.00548824 -8854,5709:110:2,-90.5,-71,0,0,-0.00548091 -8855,5709:110:1,-90,-71,0,0,-0.00547486 -8856,5708:219:2,-89.5,-71,0,0,-0.00547 -8857,5708:219:1,-89,-71,0,0,-0.00546878 -8858,5708:218:2,-88.5,-71,0,0,-0.00546755 -8859,5708:218:1,-88,-71,0,0,-0.00546755 -8860,5708:217:2,-87.5,-71,0,0,-0.00546511 -8861,5708:217:1,-87,-71,0,0,-0.00546148 -8862,5708:216:2,-86.5,-71,0,0,-0.00545663 -8863,5708:216:1,-86,-71,0,0,-0.005453 -8864,5708:215:2,-85.5,-71,0,0,-0.00545057 -8865,5708:215:1,-85,-71,0,0,-0.00544816 -8866,5708:114:2,-84.5,-71,0,0,-0.00544816 -8867,5708:114:1,-84,-71,0,0,-0.00544935 -8868,5708:113:2,-83.5,-71,0,0,-0.00545179 -8869,5708:113:1,-83,-71,0,0,-0.00553232 -8870,5708:112:2,-82.5,-71,0,0,-0.00570581 -8871,5708:112:1,-82,-71,0,0,-0.00583016 -8872,5708:111:2,-81.5,-71,0,0,-0.00588482 -8873,5708:111:1,-81,-71,0,0,-0.00589661 -8874,5708:110:2,-80.5,-71,0,0,-0.00584183 -8875,5708:110:1,-80,-71,0,0,-0.00591499 -8876,5707:219:2,-79.5,-71,0,0,-0.0060318 -8877,5707:219:1,-79,-71,0,0,-0.00605734 -8878,5707:218:2,-78.5,-71,0,0,-0.006083 -8879,5707:218:1,-78,-71,0,0,-0.00613867 -8880,5707:217:2,-77.5,-71,0,0,-0.00620453 -8881,5707:217:1,-77,-71,0,0,-0.00626693 -8882,5707:216:2,-76.5,-71,0,0,-0.00638081 -8883,5707:216:1,-76,-71,0,0,-0.00696366 -8884,5707:215:2,-75.5,-71,0,0,-0.00767836 -8885,5706:110:1,-60,-71,0,0,-0.0055237 -8886,5705:219:2,-59.5,-71,0,0,-0.00550411 -8887,5705:219:1,-59,-71,0,0,-0.00547972 -8888,5705:218:2,-58.5,-71,0,0,-0.00546511 -8889,5705:218:1,-58,-71,0,0,-0.00546633 -8890,5705:217:2,-57.5,-71,0,0,-0.00546755 -8891,5705:217:1,-57,-71,0,0,-0.00546511 -8892,5705:216:2,-56.5,-71,0,0,-0.00546148 -8893,5705:216:1,-56,-71,0,0,-0.00546026 -8894,5705:215:2,-55.5,-71,0,0,-0.00546148 -8895,5705:215:1,-55,-71,0,0,-0.00546392 -8896,5705:114:2,-54.5,-71,0,0,-0.00546633 -8897,5705:114:1,-54,-71,0,0,-0.00546755 -8898,5705:113:2,-53.5,-71,0,0,-0.00546755 -8899,5705:113:1,-53,-71,0,0,-0.00546755 -8900,5705:112:2,-52.5,-71,0,0,-0.00546878 -8901,5705:112:1,-52,-71,0,0,-0.00546878 -8902,5705:111:2,-51.5,-71,0,0,-0.00546878 -8903,5705:111:1,-51,-71,0,0,-0.00546878 -8904,5705:110:2,-50.5,-71,0,0,-0.00547 -8905,5705:110:1,-50,-71,0,0,-0.00547 -8906,5704:219:2,-49.5,-71,0,0,-0.00547 -8907,5704:219:1,-49,-71,0,0,-0.00547 -8908,5704:218:2,-48.5,-71,0,0,-0.00547 -8909,5704:218:1,-48,-71,0,0,-0.00547 -8910,5704:217:2,-47.5,-71,0,0,-0.00547 -8911,5704:217:1,-47,-71,0,0,-0.00547119 -8912,5704:216:2,-46.5,-71,0,0,-0.00547 -8913,5704:216:1,-46,-71,0,0,-0.00547 -8914,5704:215:2,-45.5,-71,0,0,-0.00546878 -8915,5704:215:1,-45,-71,0,0,-0.00546878 -8916,5704:114:2,-44.5,-71,0,0,-0.00546755 -8917,5704:114:1,-44,-71,0,0,-0.00546755 -8918,5704:113:2,-43.5,-71,0,0,-0.00546633 -8919,5704:113:1,-43,-71,0,0,-0.00546633 -8920,5704:112:2,-42.5,-71,0,0,-0.00546511 -8921,5704:112:1,-42,-71,0,0,-0.00546511 -8922,5704:111:2,-41.5,-71,0,0,-0.00546392 -8923,5704:111:1,-41,-71,0,0,-0.00546392 -8924,5704:110:2,-40.5,-71,0,0,-0.00546392 -8925,5704:110:1,-40,-71,0,0,-0.0054627 -8926,5703:219:2,-39.5,-71,0,0,-0.0054627 -8927,5703:219:1,-39,-71,0,0,-0.00546148 -8928,5703:218:2,-38.5,-71,0,0,-0.00546148 -8929,5703:218:1,-38,-71,0,0,-0.00546026 -8930,5703:217:2,-37.5,-71,0,0,-0.00546026 -8931,5703:217:1,-37,-71,0,0,-0.00546026 -8932,5703:216:2,-36.5,-71,0,0,-0.00546026 -8933,5703:216:1,-36,-71,0,0,-0.00546026 -8934,5703:215:2,-35.5,-71,0,0,-0.00546026 -8935,5703:215:1,-35,-71,0,0,-0.00546026 -8936,5703:114:2,-34.5,-71,0,0,-0.00546026 -8937,5703:114:1,-34,-71,0,0,-0.00546026 -8938,5703:113:2,-33.5,-71,0,0,-0.00546148 -8939,5703:113:1,-33,-71,0,0,-0.00546148 -8940,5703:112:2,-32.5,-71,0,0,-0.00546148 -8941,5703:112:1,-32,-71,0,0,-0.00546148 -8942,5703:111:2,-31.5,-71,0,0,-0.00546148 -8943,5703:111:1,-31,-71,0,0,-0.00546148 -8944,5703:110:2,-30.5,-71,0,0,-0.00546148 -8945,5703:110:1,-30,-71,0,0,-0.00546148 -8946,5702:219:2,-29.5,-71,0,0,-0.0054627 -8947,5702:219:1,-29,-71,0,0,-0.00546392 -8948,5702:218:2,-28.5,-71,0,0,-0.00546511 -8949,5702:218:1,-28,-71,0,0,-0.00546511 -8950,5702:217:2,-27.5,-71,0,0,-0.00546511 -8951,5702:217:1,-27,-71,0,0,-0.00546511 -8952,5702:216:2,-26.5,-71,0,0,-0.00546392 -8953,5702:216:1,-26,-71,0,0,-0.0054627 -8954,5702:215:2,-25.5,-71,0,0,-0.00546026 -8955,5702:215:1,-25,-71,0,0,-0.00545907 -8956,5702:114:2,-24.5,-71,0,0,-0.00545785 -8957,5702:114:1,-24,-71,0,0,-0.00545785 -8958,5702:113:2,-23.5,-71,0,0,-0.00545785 -8959,5702:113:1,-23,-71,0,0,-0.00545785 -8960,5702:112:2,-22.5,-71,0,0,-0.00545907 -8961,5702:112:1,-22,-71,0,0,-0.00545907 -8962,5702:111:2,-21.5,-71,0,0,-0.00545907 -8963,5702:111:1,-21,-71,0,0,-0.00546026 -8964,5702:110:2,-20.5,-71,0,0,-0.00546148 -8965,5702:110:1,-20,-71,0,0,-0.0054627 -8966,5701:219:2,-19.5,-71,0,0,-0.0054627 -8967,5701:219:1,-19,-71,0,0,-0.0054627 -8968,5701:218:2,-18.5,-71,0,0,-0.0054627 -8969,5701:218:1,-18,-71,0,0,-0.0054627 -8970,5701:217:2,-17.5,-71,0,0,-0.0054627 -8971,5701:217:1,-17,-71,0,0,-0.00546392 -8972,5701:216:2,-16.5,-71,0,0,-0.00546392 -8973,5701:216:1,-16,-71,0,0,-0.00546392 -8974,5701:215:2,-15.5,-71,0,0,-0.00546392 -8975,5701:215:1,-15,-71,0,0,-0.00546392 -8976,5701:114:2,-14.5,-71,0,0,-0.00546392 -8977,5701:114:1,-14,-71,0,0,-0.00547119 -8978,5701:113:2,-13.5,-71,0,0,-0.0055446 -8979,5701:113:1,-13,-71,0,0,-0.0060965 -8980,3717:111:2,171.5,-71,0,0,-0.00547727 -8981,3717:112:1,172,-71,0,0,-0.00546511 -8982,3717:112:2,172.5,-71,0,0,-0.00547605 -8983,3717:113:1,173,-71,0,0,-0.00547364 -8984,3717:113:2,173.5,-71,0,0,-0.00545785 -8985,3717:114:1,174,-71,0,0,-0.00545663 -8986,3717:114:2,174.5,-71,0,0,-0.00545785 -8987,3717:215:1,175,-71,0,0,-0.00545663 -8988,3717:215:2,175.5,-71,0,0,-0.00545541 -8989,3717:216:1,176,-71,0,0,-0.00545423 -8990,3717:216:2,176.5,-71,0,0,-0.00545423 -8991,3717:217:1,177,-71,0,0,-0.005453 -8992,3717:217:2,177.5,-71,0,0,-0.005453 -8993,3717:218:1,178,-71,0,0,-0.005453 -8994,3717:218:2,178.5,-71,0,0,-0.005453 -8995,3717:219:1,179,-71,0,0,-0.00545541 -8996,3717:219:2,179.5,-71,0,0,-0.00545541 -8997,3718:110:1,180,-71,0,0,-0.00545663 -8998,5718:100:3,-180,-70.5,0,0,-0.00546026 -8999,5717:209:4,-179.5,-70.5,0,0,-0.00546148 -9000,5717:209:3,-179,-70.5,0,0,-0.00546392 -9001,5717:208:4,-178.5,-70.5,0,0,-0.0054627 -9002,5717:208:3,-178,-70.5,0,0,-0.00546511 -9003,5717:207:4,-177.5,-70.5,0,0,-0.00546755 -9004,5717:207:3,-177,-70.5,0,0,-0.00546878 -9005,5717:206:4,-176.5,-70.5,0,0,-0.00547241 -9006,5717:206:3,-176,-70.5,0,0,-0.00547486 -9007,5717:205:4,-175.5,-70.5,0,0,-0.0054785 -9008,5717:205:3,-175,-70.5,0,0,-0.00547972 -9009,5717:104:4,-174.5,-70.5,0,0,-0.00547972 -9010,5717:104:3,-174,-70.5,0,0,-0.0054785 -9011,5717:103:4,-173.5,-70.5,0,0,-0.00547727 -9012,5717:103:3,-173,-70.5,0,0,-0.00547605 -9013,5717:102:4,-172.5,-70.5,0,0,-0.00547364 -9014,5717:102:3,-172,-70.5,0,0,-0.00547241 -9015,5717:101:4,-171.5,-70.5,0,0,-0.00547241 -9016,5717:101:3,-171,-70.5,0,0,-0.00547119 -9017,5717:100:4,-170.5,-70.5,0,0,-0.00546878 -9018,5717:100:3,-170,-70.5,0,0,-0.00546755 -9019,5716:209:4,-169.5,-70.5,0,0,-0.00546633 -9020,5716:209:3,-169,-70.5,0,0,-0.00546511 -9021,5716:208:4,-168.5,-70.5,0,0,-0.00546511 -9022,5716:208:3,-168,-70.5,0,0,-0.00546392 -9023,5716:207:4,-167.5,-70.5,0,0,-0.00546392 -9024,5716:207:3,-167,-70.5,0,0,-0.00546392 -9025,5716:206:4,-166.5,-70.5,0,0,-0.00546392 -9026,5716:206:3,-166,-70.5,0,0,-0.00546392 -9027,5716:205:4,-165.5,-70.5,0,0,-0.00546392 -9028,5716:205:3,-165,-70.5,0,0,-0.00546392 -9029,5716:104:4,-164.5,-70.5,0,0,-0.00546511 -9030,5716:104:3,-164,-70.5,0,0,-0.00546633 -9031,5716:103:4,-163.5,-70.5,0,0,-0.00546633 -9032,5716:103:3,-163,-70.5,0,0,-0.00546633 -9033,5716:102:4,-162.5,-70.5,0,0,-0.00546633 -9034,5716:102:3,-162,-70.5,0,0,-0.00546755 -9035,5716:101:4,-161.5,-70.5,0,0,-0.00546755 -9036,5716:101:3,-161,-70.5,0,0,-0.00546755 -9037,5716:100:4,-160.5,-70.5,0,0,-0.00546878 -9038,5716:100:3,-160,-70.5,0,0,-0.00547 -9039,5715:209:4,-159.5,-70.5,0,0,-0.00547119 -9040,5715:209:3,-159,-70.5,0,0,-0.00547119 -9041,5715:208:4,-158.5,-70.5,0,0,-0.00547119 -9042,5715:208:3,-158,-70.5,0,0,-0.00547241 -9043,5715:207:4,-157.5,-70.5,0,0,-0.00547364 -9044,5715:207:3,-157,-70.5,0,0,-0.00547486 -9045,5715:206:4,-156.5,-70.5,0,0,-0.00547486 -9046,5715:206:3,-156,-70.5,0,0,-0.00547605 -9047,5715:205:4,-155.5,-70.5,0,0,-0.00547727 -9048,5715:205:3,-155,-70.5,0,0,-0.0054785 -9049,5715:104:4,-154.5,-70.5,0,0,-0.00548091 -9050,5715:104:3,-154,-70.5,0,0,-0.00548214 -9051,5715:103:4,-153.5,-70.5,0,0,-0.00548337 -9052,5715:103:3,-153,-70.5,0,0,-0.00548459 -9053,5715:102:4,-152.5,-70.5,0,0,-0.00548582 -9054,5715:102:3,-152,-70.5,0,0,-0.00548701 -9055,5715:101:4,-151.5,-70.5,0,0,-0.00548824 -9056,5715:101:3,-151,-70.5,0,0,-0.00548947 -9057,5715:100:4,-150.5,-70.5,0,0,-0.00548947 -9058,5715:100:3,-150,-70.5,0,0,-0.00549069 -9059,5714:209:4,-149.5,-70.5,0,0,-0.00549069 -9060,5714:209:3,-149,-70.5,0,0,-0.00549189 -9061,5714:208:4,-148.5,-70.5,0,0,-0.00549312 -9062,5714:208:3,-148,-70.5,0,0,-0.00549557 -9063,5714:207:4,-147.5,-70.5,0,0,-0.00549557 -9064,5714:207:3,-147,-70.5,0,0,-0.00549434 -9065,5714:206:4,-146.5,-70.5,0,0,-0.00549434 -9066,5714:206:3,-146,-70.5,0,0,-0.00549434 -9067,5714:205:4,-145.5,-70.5,0,0,-0.00549434 -9068,5714:205:3,-145,-70.5,0,0,-0.00549557 -9069,5714:104:4,-144.5,-70.5,0,0,-0.00549557 -9070,5714:104:3,-144,-70.5,0,0,-0.00549557 -9071,5714:103:4,-143.5,-70.5,0,0,-0.00549677 -9072,5714:103:3,-143,-70.5,0,0,-0.005498 -9073,5714:102:4,-142.5,-70.5,0,0,-0.00549923 -9074,5714:102:3,-142,-70.5,0,0,-0.00549923 -9075,5714:101:4,-141.5,-70.5,0,0,-0.00549557 -9076,5714:101:3,-141,-70.5,0,0,-0.00549069 -9077,5714:100:4,-140.5,-70.5,0,0,-0.00548459 -9078,5714:100:3,-140,-70.5,0,0,-0.00548214 -9079,5713:209:4,-139.5,-70.5,0,0,-0.00548091 -9080,5713:209:3,-139,-70.5,0,0,-0.00548091 -9081,5713:208:4,-138.5,-70.5,0,0,-0.00547972 -9082,5713:208:3,-138,-70.5,0,0,-0.00547972 -9083,5713:207:4,-137.5,-70.5,0,0,-0.00547972 -9084,5713:207:3,-137,-70.5,0,0,-0.00549923 -9085,5713:206:4,-136.5,-70.5,0,0,-0.00552617 -9086,5713:206:3,-136,-70.5,0,0,-0.00557177 -9087,5713:205:4,-135.5,-70.5,0,0,-0.00565156 -9088,5713:205:3,-135,-70.5,0,0,-0.00565785 -9089,5713:104:4,-134.5,-70.5,0,0,-0.00560903 -9090,5713:104:3,-134,-70.5,0,0,-0.0056128 -9091,5713:103:4,-133.5,-70.5,0,0,-0.00566668 -9092,5713:103:3,-133,-70.5,0,0,-0.00567294 -9093,5713:102:4,-132.5,-70.5,0,0,-0.00564532 -9094,5713:102:3,-132,-70.5,0,0,-0.00562026 -9095,5713:101:4,-131.5,-70.5,0,0,-0.00559536 -9096,5713:101:3,-131,-70.5,0,0,-0.00556188 -9097,5713:100:4,-130.5,-70.5,0,0,-0.005536 -9098,5713:100:3,-130,-70.5,0,0,-0.0055139 -9099,5712:209:4,-129.5,-70.5,0,0,-0.00548337 -9100,5712:209:3,-129,-70.5,0,0,-0.00548459 -9101,5712:208:4,-128.5,-70.5,0,0,-0.00548582 -9102,5712:208:3,-128,-70.5,0,0,-0.00548701 -9103,5712:207:4,-127.5,-70.5,0,0,-0.00548824 -9104,5712:207:3,-127,-70.5,0,0,-0.00548947 -9105,5712:206:4,-126.5,-70.5,0,0,-0.00549069 -9106,5712:206:3,-126,-70.5,0,0,-0.00549069 -9107,5712:205:4,-125.5,-70.5,0,0,-0.00549069 -9108,5712:205:3,-125,-70.5,0,0,-0.00549069 -9109,5712:104:4,-124.5,-70.5,0,0,-0.00549069 -9110,5712:104:3,-124,-70.5,0,0,-0.00549069 -9111,5712:103:4,-123.5,-70.5,0,0,-0.00549069 -9112,5712:103:3,-123,-70.5,0,0,-0.00549189 -9113,5712:102:4,-122.5,-70.5,0,0,-0.00549189 -9114,5712:102:3,-122,-70.5,0,0,-0.00549189 -9115,5712:101:4,-121.5,-70.5,0,0,-0.00549069 -9116,5712:101:3,-121,-70.5,0,0,-0.00549069 -9117,5712:100:4,-120.5,-70.5,0,0,-0.00548824 -9118,5712:100:3,-120,-70.5,0,0,-0.00548701 -9119,5711:209:4,-119.5,-70.5,0,0,-0.00548582 -9120,5711:209:3,-119,-70.5,0,0,-0.00548337 -9121,5711:208:4,-118.5,-70.5,0,0,-0.00548214 -9122,5711:208:3,-118,-70.5,0,0,-0.00548091 -9123,5711:207:4,-117.5,-70.5,0,0,-0.00548091 -9124,5711:207:3,-117,-70.5,0,0,-0.00547972 -9125,5711:206:4,-116.5,-70.5,0,0,-0.00547972 -9126,5711:206:3,-116,-70.5,0,0,-0.0054785 -9127,5711:205:4,-115.5,-70.5,0,0,-0.0054785 -9128,5711:205:3,-115,-70.5,0,0,-0.0054785 -9129,5711:104:4,-114.5,-70.5,0,0,-0.0054785 -9130,5711:104:3,-114,-70.5,0,0,-0.0054785 -9131,5711:103:4,-113.5,-70.5,0,0,-0.0054785 -9132,5711:103:3,-113,-70.5,0,0,-0.0054785 -9133,5711:102:4,-112.5,-70.5,0,0,-0.0054785 -9134,5711:102:3,-112,-70.5,0,0,-0.00547972 -9135,5711:101:4,-111.5,-70.5,0,0,-0.00547972 -9136,5711:101:3,-111,-70.5,0,0,-0.00547972 -9137,5711:100:4,-110.5,-70.5,0,0,-0.00548091 -9138,5711:100:3,-110,-70.5,0,0,-0.00548091 -9139,5710:209:4,-109.5,-70.5,0,0,-0.00548091 -9140,5710:209:3,-109,-70.5,0,0,-0.00548091 -9141,5710:208:4,-108.5,-70.5,0,0,-0.00548091 -9142,5710:208:3,-108,-70.5,0,0,-0.00547972 -9143,5710:207:4,-107.5,-70.5,0,0,-0.00547972 -9144,5710:207:3,-107,-70.5,0,0,-0.00548091 -9145,5710:206:4,-106.5,-70.5,0,0,-0.00548091 -9146,5710:206:3,-106,-70.5,0,0,-0.00548214 -9147,5710:205:4,-105.5,-70.5,0,0,-0.00548459 -9148,5710:205:3,-105,-70.5,0,0,-0.00548824 -9149,5710:104:4,-104.5,-70.5,0,0,-0.00549189 -9150,5710:104:3,-104,-70.5,0,0,-0.00549189 -9151,5710:103:4,-103.5,-70.5,0,0,-0.00549069 -9152,5710:103:3,-103,-70.5,0,0,-0.00548947 -9153,5710:102:4,-102.5,-70.5,0,0,-0.00549434 -9154,5710:102:3,-102,-70.5,0,0,-0.00550288 -9155,5710:101:4,-101.5,-70.5,0,0,-0.0055188 -9156,5710:101:3,-101,-70.5,0,0,-0.00553108 -9157,5710:100:4,-100.5,-70.5,0,0,-0.00555077 -9158,5710:100:3,-100,-70.5,0,0,-0.0055446 -9159,5709:209:4,-99.5,-70.5,0,0,-0.00550658 -9160,5709:209:3,-99,-70.5,0,0,-0.0055139 -9161,5709:208:4,-98.5,-70.5,0,0,-0.0055188 -9162,5709:208:3,-98,-70.5,0,0,-0.0055139 -9163,5709:207:4,-97.5,-70.5,0,0,-0.005509 -9164,5709:207:3,-97,-70.5,0,0,-0.00550777 -9165,5709:206:4,-96.5,-70.5,0,0,-0.00551147 -9166,5709:206:3,-96,-70.5,0,0,-0.00551147 -9167,5709:205:4,-95.5,-70.5,0,0,-0.00550046 -9168,5709:205:3,-95,-70.5,0,0,-0.00549312 -9169,5709:104:4,-94.5,-70.5,0,0,-0.00548824 -9170,5709:104:3,-94,-70.5,0,0,-0.00548582 -9171,5709:103:4,-93.5,-70.5,0,0,-0.00548459 -9172,5709:103:3,-93,-70.5,0,0,-0.00548459 -9173,5709:102:4,-92.5,-70.5,0,0,-0.00548459 -9174,5709:102:3,-92,-70.5,0,0,-0.00548459 -9175,5709:101:4,-91.5,-70.5,0,0,-0.00548337 -9176,5709:101:3,-91,-70.5,0,0,-0.00547727 -9177,5709:100:4,-90.5,-70.5,0,0,-0.00547119 -9178,5709:100:3,-90,-70.5,0,0,-0.00546755 -9179,5708:209:4,-89.5,-70.5,0,0,-0.00546148 -9180,5708:209:3,-89,-70.5,0,0,-0.00545785 -9181,5708:208:4,-88.5,-70.5,0,0,-0.00545907 -9182,5708:208:3,-88,-70.5,0,0,-0.00545907 -9183,5708:207:4,-87.5,-70.5,0,0,-0.00545907 -9184,5708:207:3,-87,-70.5,0,0,-0.00545663 -9185,5708:206:4,-86.5,-70.5,0,0,-0.005453 -9186,5708:206:3,-86,-70.5,0,0,-0.00545057 -9187,5708:205:4,-85.5,-70.5,0,0,-0.00544935 -9188,5708:205:3,-85,-70.5,0,0,-0.00544816 -9189,5708:104:4,-84.5,-70.5,0,0,-0.00544816 -9190,5708:104:3,-84,-70.5,0,0,-0.00544935 -9191,5708:103:4,-83.5,-70.5,0,0,-0.00545057 -9192,5708:103:3,-83,-70.5,0,0,-0.00545179 -9193,5708:102:4,-82.5,-70.5,0,0,-0.00547605 -9194,5708:102:3,-82,-70.5,0,0,-0.00556682 -9195,5708:101:4,-81.5,-70.5,0,0,-0.00556437 -9196,5708:101:3,-81,-70.5,0,0,-0.00548582 -9197,5708:100:4,-80.5,-70.5,0,0,-0.00549557 -9198,5708:100:3,-80,-70.5,0,0,-0.00572616 -9199,5707:209:4,-79.5,-70.5,0,0,-0.00590449 -9200,5707:209:3,-79,-70.5,0,0,-0.00602644 -9201,5707:208:4,-78.5,-70.5,0,0,-0.0061006 -9202,5707:208:3,-78,-70.5,0,0,-0.00618113 -9203,5707:207:4,-77.5,-70.5,0,0,-0.00628784 -9204,5707:207:3,-77,-70.5,0,0,-0.00638362 -9205,5707:206:4,-76.5,-70.5,0,0,-0.00650109 -9206,5707:206:3,-76,-70.5,0,0,-0.00661485 -9207,5707:205:4,-75.5,-70.5,0,0,-0.0070478 -9208,5706:100:3,-60,-70.5,0,0,-0.00552003 -9209,5705:209:4,-59.5,-70.5,0,0,-0.00551266 -9210,5705:209:3,-59,-70.5,0,0,-0.00548701 -9211,5705:208:4,-58.5,-70.5,0,0,-0.00547 -9212,5705:208:3,-58,-70.5,0,0,-0.00546755 -9213,5705:207:4,-57.5,-70.5,0,0,-0.00546755 -9214,5705:207:3,-57,-70.5,0,0,-0.00546633 -9215,5705:206:4,-56.5,-70.5,0,0,-0.00546511 -9216,5705:206:3,-56,-70.5,0,0,-0.00546392 -9217,5705:205:4,-55.5,-70.5,0,0,-0.00546392 -9218,5705:205:3,-55,-70.5,0,0,-0.00546633 -9219,5705:104:4,-54.5,-70.5,0,0,-0.00546755 -9220,5705:104:3,-54,-70.5,0,0,-0.00546878 -9221,5705:103:4,-53.5,-70.5,0,0,-0.00546878 -9222,5705:103:3,-53,-70.5,0,0,-0.00546878 -9223,5705:102:4,-52.5,-70.5,0,0,-0.00547 -9224,5705:102:3,-52,-70.5,0,0,-0.00547 -9225,5705:101:4,-51.5,-70.5,0,0,-0.00547 -9226,5705:101:3,-51,-70.5,0,0,-0.00547 -9227,5705:100:4,-50.5,-70.5,0,0,-0.00547 -9228,5705:100:3,-50,-70.5,0,0,-0.00547 -9229,5704:209:4,-49.5,-70.5,0,0,-0.00547 -9230,5704:209:3,-49,-70.5,0,0,-0.00547 -9231,5704:208:4,-48.5,-70.5,0,0,-0.00547 -9232,5704:208:3,-48,-70.5,0,0,-0.00547 -9233,5704:207:4,-47.5,-70.5,0,0,-0.00547119 -9234,5704:207:3,-47,-70.5,0,0,-0.00547 -9235,5704:206:4,-46.5,-70.5,0,0,-0.00547 -9236,5704:206:3,-46,-70.5,0,0,-0.00546878 -9237,5704:205:4,-45.5,-70.5,0,0,-0.00546878 -9238,5704:205:3,-45,-70.5,0,0,-0.00546755 -9239,5704:104:4,-44.5,-70.5,0,0,-0.00546633 -9240,5704:104:3,-44,-70.5,0,0,-0.00546511 -9241,5704:103:4,-43.5,-70.5,0,0,-0.00546511 -9242,5704:103:3,-43,-70.5,0,0,-0.00546392 -9243,5704:102:4,-42.5,-70.5,0,0,-0.00546392 -9244,5704:102:3,-42,-70.5,0,0,-0.00546392 -9245,5704:101:4,-41.5,-70.5,0,0,-0.0054627 -9246,5704:101:3,-41,-70.5,0,0,-0.00546148 -9247,5704:100:4,-40.5,-70.5,0,0,-0.00546026 -9248,5704:100:3,-40,-70.5,0,0,-0.00546026 -9249,5703:209:4,-39.5,-70.5,0,0,-0.00545907 -9250,5703:209:3,-39,-70.5,0,0,-0.00545907 -9251,5703:208:4,-38.5,-70.5,0,0,-0.00545907 -9252,5703:208:3,-38,-70.5,0,0,-0.00545907 -9253,5703:207:4,-37.5,-70.5,0,0,-0.00545785 -9254,5703:207:3,-37,-70.5,0,0,-0.00545785 -9255,5703:206:4,-36.5,-70.5,0,0,-0.00545785 -9256,5703:206:3,-36,-70.5,0,0,-0.00545907 -9257,5703:205:4,-35.5,-70.5,0,0,-0.00545907 -9258,5703:205:3,-35,-70.5,0,0,-0.00545907 -9259,5703:104:4,-34.5,-70.5,0,0,-0.00545907 -9260,5703:104:3,-34,-70.5,0,0,-0.00545907 -9261,5703:103:4,-33.5,-70.5,0,0,-0.00545907 -9262,5703:103:3,-33,-70.5,0,0,-0.00545907 -9263,5703:102:4,-32.5,-70.5,0,0,-0.00545907 -9264,5703:102:3,-32,-70.5,0,0,-0.00545907 -9265,5703:101:4,-31.5,-70.5,0,0,-0.00545907 -9266,5703:101:3,-31,-70.5,0,0,-0.00546026 -9267,5703:100:4,-30.5,-70.5,0,0,-0.00546026 -9268,5703:100:3,-30,-70.5,0,0,-0.00546026 -9269,5702:209:4,-29.5,-70.5,0,0,-0.00546148 -9270,5702:209:3,-29,-70.5,0,0,-0.0054627 -9271,5702:208:4,-28.5,-70.5,0,0,-0.0054627 -9272,5702:208:3,-28,-70.5,0,0,-0.00546392 -9273,5702:207:4,-27.5,-70.5,0,0,-0.00546511 -9274,5702:207:3,-27,-70.5,0,0,-0.00546511 -9275,5702:206:4,-26.5,-70.5,0,0,-0.00546511 -9276,5702:206:3,-26,-70.5,0,0,-0.00546392 -9277,5702:205:4,-25.5,-70.5,0,0,-0.00546148 -9278,5702:205:3,-25,-70.5,0,0,-0.00545907 -9279,5702:104:4,-24.5,-70.5,0,0,-0.00545785 -9280,5702:104:3,-24,-70.5,0,0,-0.00545785 -9281,5702:103:4,-23.5,-70.5,0,0,-0.00545785 -9282,5702:103:3,-23,-70.5,0,0,-0.00545785 -9283,5702:102:4,-22.5,-70.5,0,0,-0.00545785 -9284,5702:102:3,-22,-70.5,0,0,-0.00545907 -9285,5702:101:4,-21.5,-70.5,0,0,-0.00545907 -9286,5702:101:3,-21,-70.5,0,0,-0.00545907 -9287,5702:100:4,-20.5,-70.5,0,0,-0.00546026 -9288,5702:100:3,-20,-70.5,0,0,-0.00546148 -9289,5701:209:4,-19.5,-70.5,0,0,-0.00546148 -9290,5701:209:3,-19,-70.5,0,0,-0.00546148 -9291,5701:208:4,-18.5,-70.5,0,0,-0.00546148 -9292,5701:208:3,-18,-70.5,0,0,-0.0054627 -9293,5701:207:4,-17.5,-70.5,0,0,-0.0054627 -9294,5701:207:3,-17,-70.5,0,0,-0.0054627 -9295,5701:206:4,-16.5,-70.5,0,0,-0.0054627 -9296,5701:206:3,-16,-70.5,0,0,-0.00546392 -9297,5701:205:4,-15.5,-70.5,0,0,-0.00546511 -9298,5701:205:3,-15,-70.5,0,0,-0.00546633 -9299,5701:104:4,-14.5,-70.5,0,0,-0.00546755 -9300,5701:104:3,-14,-70.5,0,0,-0.00547119 -9301,5701:103:4,-13.5,-70.5,0,0,-0.00547972 -9302,5701:103:3,-13,-70.5,0,0,-0.0056403 -9303,5701:102:4,-12.5,-70.5,0,0,-0.00611145 -9304,3717:101:4,171.5,-70.5,0,0,-0.00547241 -9305,3717:102:3,172,-70.5,0,0,-0.00546392 -9306,3717:102:4,172.5,-70.5,0,0,-0.00546148 -9307,3717:103:3,173,-70.5,0,0,-0.0054627 -9308,3717:103:4,173.5,-70.5,0,0,-0.00546026 -9309,3717:104:3,174,-70.5,0,0,-0.00546026 -9310,3717:104:4,174.5,-70.5,0,0,-0.00546148 -9311,3717:205:3,175,-70.5,0,0,-0.00546026 -9312,3717:205:4,175.5,-70.5,0,0,-0.00545907 -9313,3717:206:3,176,-70.5,0,0,-0.00545785 -9314,3717:206:4,176.5,-70.5,0,0,-0.00545785 -9315,3717:207:3,177,-70.5,0,0,-0.00545785 -9316,3717:207:4,177.5,-70.5,0,0,-0.00545785 -9317,3717:208:3,178,-70.5,0,0,-0.00545785 -9318,3717:208:4,178.5,-70.5,0,0,-0.00545785 -9319,3717:209:3,179,-70.5,0,0,-0.00545785 -9320,3717:209:4,179.5,-70.5,0,0,-0.00545907 -9321,3718:100:3,180,-70.5,0,0,-0.00546026 -9322,5718:100:1,-180,-70,0,0,-0.0054627 -9323,5717:209:2,-179.5,-70,0,0,-0.00546392 -9324,5717:209:1,-179,-70,0,0,-0.00546633 -9325,5717:208:2,-178.5,-70,0,0,-0.00546633 -9326,5717:208:1,-178,-70,0,0,-0.00546878 -9327,5717:207:2,-177.5,-70,0,0,-0.00547 -9328,5717:207:1,-177,-70,0,0,-0.00547241 -9329,5717:206:2,-176.5,-70,0,0,-0.00547486 -9330,5717:206:1,-176,-70,0,0,-0.0054785 -9331,5717:205:2,-175.5,-70,0,0,-0.00548091 -9332,5717:205:1,-175,-70,0,0,-0.00548091 -9333,5717:104:2,-174.5,-70,0,0,-0.00547972 -9334,5717:104:1,-174,-70,0,0,-0.00547727 -9335,5717:103:2,-173.5,-70,0,0,-0.00547605 -9336,5717:103:1,-173,-70,0,0,-0.00547486 -9337,5717:102:2,-172.5,-70,0,0,-0.00547486 -9338,5717:102:1,-172,-70,0,0,-0.00547364 -9339,5717:101:2,-171.5,-70,0,0,-0.00547119 -9340,5717:101:1,-171,-70,0,0,-0.00546878 -9341,5717:100:2,-170.5,-70,0,0,-0.00546755 -9342,5717:100:1,-170,-70,0,0,-0.00546633 -9343,5716:209:2,-169.5,-70,0,0,-0.00546511 -9344,5716:209:1,-169,-70,0,0,-0.00546511 -9345,5716:208:2,-168.5,-70,0,0,-0.00546392 -9346,5716:208:1,-168,-70,0,0,-0.00546392 -9347,5716:207:2,-167.5,-70,0,0,-0.00546392 -9348,5716:207:1,-167,-70,0,0,-0.00546392 -9349,5716:206:2,-166.5,-70,0,0,-0.0054627 -9350,5716:206:1,-166,-70,0,0,-0.00546148 -9351,5716:205:2,-165.5,-70,0,0,-0.00546148 -9352,5716:205:1,-165,-70,0,0,-0.0054627 -9353,5716:104:2,-164.5,-70,0,0,-0.0054627 -9354,5716:104:1,-164,-70,0,0,-0.00546392 -9355,5716:103:2,-163.5,-70,0,0,-0.00546392 -9356,5716:103:1,-163,-70,0,0,-0.00546392 -9357,5716:102:2,-162.5,-70,0,0,-0.00546392 -9358,5716:102:1,-162,-70,0,0,-0.00546392 -9359,5716:101:2,-161.5,-70,0,0,-0.00546392 -9360,5716:101:1,-161,-70,0,0,-0.00546511 -9361,5716:100:2,-160.5,-70,0,0,-0.00546633 -9362,5716:100:1,-160,-70,0,0,-0.00546755 -9363,5715:209:2,-159.5,-70,0,0,-0.00546878 -9364,5715:209:1,-159,-70,0,0,-0.00547 -9365,5715:208:2,-158.5,-70,0,0,-0.00547 -9366,5715:208:1,-158,-70,0,0,-0.00547119 -9367,5715:207:2,-157.5,-70,0,0,-0.00547241 -9368,5715:207:1,-157,-70,0,0,-0.00547364 -9369,5715:206:2,-156.5,-70,0,0,-0.00547364 -9370,5715:206:1,-156,-70,0,0,-0.00547605 -9371,5715:205:2,-155.5,-70,0,0,-0.00547727 -9372,5715:205:1,-155,-70,0,0,-0.00547972 -9373,5715:104:2,-154.5,-70,0,0,-0.00548091 -9374,5715:104:1,-154,-70,0,0,-0.00548214 -9375,5715:103:2,-153.5,-70,0,0,-0.00548214 -9376,5715:103:1,-153,-70,0,0,-0.00548214 -9377,5715:102:2,-152.5,-70,0,0,-0.00548459 -9378,5715:102:1,-152,-70,0,0,-0.00548582 -9379,5715:101:2,-151.5,-70,0,0,-0.00548824 -9380,5715:101:1,-151,-70,0,0,-0.00548947 -9381,5715:100:2,-150.5,-70,0,0,-0.00548947 -9382,5715:100:1,-150,-70,0,0,-0.00549069 -9383,5714:209:2,-149.5,-70,0,0,-0.00549069 -9384,5714:209:1,-149,-70,0,0,-0.00549189 -9385,5714:208:2,-148.5,-70,0,0,-0.00549312 -9386,5714:208:1,-148,-70,0,0,-0.00549312 -9387,5714:207:2,-147.5,-70,0,0,-0.00549312 -9388,5714:207:1,-147,-70,0,0,-0.00549312 -9389,5714:206:2,-146.5,-70,0,0,-0.00549312 -9390,5714:206:1,-146,-70,0,0,-0.00549312 -9391,5714:205:2,-145.5,-70,0,0,-0.00549312 -9392,5714:205:1,-145,-70,0,0,-0.00549312 -9393,5714:104:2,-144.5,-70,0,0,-0.00549312 -9394,5714:104:1,-144,-70,0,0,-0.00549434 -9395,5714:103:2,-143.5,-70,0,0,-0.00549677 -9396,5714:103:1,-143,-70,0,0,-0.005498 -9397,5714:102:2,-142.5,-70,0,0,-0.00549923 -9398,5714:102:1,-142,-70,0,0,-0.00549677 -9399,5714:101:2,-141.5,-70,0,0,-0.00549434 -9400,5714:101:1,-141,-70,0,0,-0.00549069 -9401,5714:100:2,-140.5,-70,0,0,-0.00548701 -9402,5714:100:1,-140,-70,0,0,-0.00548337 -9403,5713:209:2,-139.5,-70,0,0,-0.00548214 -9404,5713:209:1,-139,-70,0,0,-0.00548091 -9405,5713:208:2,-138.5,-70,0,0,-0.00547972 -9406,5713:208:1,-138,-70,0,0,-0.00548091 -9407,5713:207:2,-137.5,-70,0,0,-0.00548091 -9408,5713:207:1,-137,-70,0,0,-0.00548947 -9409,5713:206:2,-136.5,-70,0,0,-0.00550777 -9410,5713:206:1,-136,-70,0,0,-0.00553848 -9411,5713:205:2,-135.5,-70,0,0,-0.00558789 -9412,5713:205:1,-135,-70,0,0,-0.00562026 -9413,5713:104:2,-134.5,-70,0,0,-0.00557797 -9414,5713:104:1,-134,-70,0,0,-0.0055545 -9415,5713:103:2,-133.5,-70,0,0,-0.00556313 -9416,5713:103:1,-133,-70,0,0,-0.00560656 -9417,5713:102:2,-132.5,-70,0,0,-0.00566038 -9418,5713:102:1,-132,-70,0,0,-0.00564654 -9419,5713:101:2,-131.5,-70,0,0,-0.00562026 -9420,5713:101:1,-131,-70,0,0,-0.00559536 -9421,5713:100:2,-130.5,-70,0,0,-0.00556313 -9422,5713:100:1,-130,-70,0,0,-0.00553968 -9423,5712:209:2,-129.5,-70,0,0,-0.00552494 -9424,5712:209:1,-129,-70,0,0,-0.00551147 -9425,5712:208:2,-128.5,-70,0,0,-0.00549923 -9426,5712:208:1,-128,-70,0,0,-0.00548582 -9427,5712:207:2,-127.5,-70,0,0,-0.00548701 -9428,5712:207:1,-127,-70,0,0,-0.00548824 -9429,5712:206:2,-126.5,-70,0,0,-0.00548947 -9430,5712:206:1,-126,-70,0,0,-0.00548947 -9431,5712:205:2,-125.5,-70,0,0,-0.00549069 -9432,5712:205:1,-125,-70,0,0,-0.00549069 -9433,5712:104:2,-124.5,-70,0,0,-0.00549069 -9434,5712:104:1,-124,-70,0,0,-0.00549069 -9435,5712:103:2,-123.5,-70,0,0,-0.00549069 -9436,5712:103:1,-123,-70,0,0,-0.00549069 -9437,5712:102:2,-122.5,-70,0,0,-0.00549069 -9438,5712:102:1,-122,-70,0,0,-0.00549069 -9439,5712:101:2,-121.5,-70,0,0,-0.00548947 -9440,5712:101:1,-121,-70,0,0,-0.00548947 -9441,5712:100:2,-120.5,-70,0,0,-0.00548824 -9442,5712:100:1,-120,-70,0,0,-0.00548701 -9443,5711:209:2,-119.5,-70,0,0,-0.00548582 -9444,5711:209:1,-119,-70,0,0,-0.00548459 -9445,5711:208:2,-118.5,-70,0,0,-0.00548337 -9446,5711:208:1,-118,-70,0,0,-0.00548214 -9447,5711:207:2,-117.5,-70,0,0,-0.00548091 -9448,5711:207:1,-117,-70,0,0,-0.00548091 -9449,5711:206:2,-116.5,-70,0,0,-0.00547972 -9450,5711:206:1,-116,-70,0,0,-0.00547972 -9451,5711:205:2,-115.5,-70,0,0,-0.00547972 -9452,5711:205:1,-115,-70,0,0,-0.0054785 -9453,5711:104:2,-114.5,-70,0,0,-0.0054785 -9454,5711:104:1,-114,-70,0,0,-0.0054785 -9455,5711:103:2,-113.5,-70,0,0,-0.0054785 -9456,5711:103:1,-113,-70,0,0,-0.0054785 -9457,5711:102:2,-112.5,-70,0,0,-0.0054785 -9458,5711:102:1,-112,-70,0,0,-0.0054785 -9459,5711:101:2,-111.5,-70,0,0,-0.0054785 -9460,5711:101:1,-111,-70,0,0,-0.0054785 -9461,5711:100:2,-110.5,-70,0,0,-0.0054785 -9462,5711:100:1,-110,-70,0,0,-0.0054785 -9463,5710:209:2,-109.5,-70,0,0,-0.00547972 -9464,5710:209:1,-109,-70,0,0,-0.00547972 -9465,5710:208:2,-108.5,-70,0,0,-0.00548091 -9466,5710:208:1,-108,-70,0,0,-0.00548091 -9467,5710:207:2,-107.5,-70,0,0,-0.00548091 -9468,5710:207:1,-107,-70,0,0,-0.00548091 -9469,5710:206:2,-106.5,-70,0,0,-0.00548091 -9470,5710:206:1,-106,-70,0,0,-0.00548091 -9471,5710:205:2,-105.5,-70,0,0,-0.00548091 -9472,5710:205:1,-105,-70,0,0,-0.00548214 -9473,5710:104:2,-104.5,-70,0,0,-0.00548459 -9474,5710:104:1,-104,-70,0,0,-0.00548701 -9475,5710:103:2,-103.5,-70,0,0,-0.00548701 -9476,5710:103:1,-103,-70,0,0,-0.00548459 -9477,5710:102:2,-102.5,-70,0,0,-0.00548582 -9478,5710:102:1,-102,-70,0,0,-0.00549189 -9479,5710:101:2,-101.5,-70,0,0,-0.00549923 -9480,5710:101:1,-101,-70,0,0,-0.00550288 -9481,5710:100:2,-100.5,-70,0,0,-0.00550534 -9482,5710:100:1,-100,-70,0,0,-0.00550777 -9483,5709:209:2,-99.5,-70,0,0,-0.00550411 -9484,5709:209:1,-99,-70,0,0,-0.00550165 -9485,5709:208:2,-98.5,-70,0,0,-0.00550046 -9486,5709:208:1,-98,-70,0,0,-0.005498 -9487,5709:207:2,-97.5,-70,0,0,-0.00549557 -9488,5709:207:1,-97,-70,0,0,-0.00549312 -9489,5709:206:2,-96.5,-70,0,0,-0.00549189 -9490,5709:206:1,-96,-70,0,0,-0.00549189 -9491,5709:205:2,-95.5,-70,0,0,-0.00548824 -9492,5709:205:1,-95,-70,0,0,-0.00548701 -9493,5709:104:2,-94.5,-70,0,0,-0.00548582 -9494,5709:104:1,-94,-70,0,0,-0.00548459 -9495,5709:103:2,-93.5,-70,0,0,-0.00548459 -9496,5709:103:1,-93,-70,0,0,-0.00548337 -9497,5709:102:2,-92.5,-70,0,0,-0.00548214 -9498,5709:102:1,-92,-70,0,0,-0.00548091 -9499,5709:101:2,-91.5,-70,0,0,-0.00547605 -9500,5709:101:1,-91,-70,0,0,-0.00547241 -9501,5709:100:2,-90.5,-70,0,0,-0.00546878 -9502,5709:100:1,-90,-70,0,0,-0.00546633 -9503,5708:209:2,-89.5,-70,0,0,-0.00546148 -9504,5708:209:1,-89,-70,0,0,-0.00545907 -9505,5708:208:2,-88.5,-70,0,0,-0.00545785 -9506,5708:208:1,-88,-70,0,0,-0.00545785 -9507,5708:207:2,-87.5,-70,0,0,-0.00545785 -9508,5708:207:1,-87,-70,0,0,-0.00545663 -9509,5708:206:2,-86.5,-70,0,0,-0.005453 -9510,5708:206:1,-86,-70,0,0,-0.00545179 -9511,5708:205:2,-85.5,-70,0,0,-0.00545057 -9512,5708:205:1,-85,-70,0,0,-0.00545057 -9513,5708:104:2,-84.5,-70,0,0,-0.00545057 -9514,5708:104:1,-84,-70,0,0,-0.00545057 -9515,5708:103:2,-83.5,-70,0,0,-0.00545179 -9516,5708:103:1,-83,-70,0,0,-0.00545179 -9517,5708:102:2,-82.5,-70,0,0,-0.005453 -9518,5708:102:1,-82,-70,0,0,-0.00545423 -9519,5708:101:2,-81.5,-70,0,0,-0.00545785 -9520,5708:101:1,-81,-70,0,0,-0.00546392 -9521,5708:100:2,-80.5,-70,0,0,-0.00547119 -9522,5708:100:1,-80,-70,0,0,-0.00547364 -9523,5707:209:2,-79.5,-70,0,0,-0.00548947 -9524,5707:209:1,-79,-70,0,0,-0.00566668 -9525,5707:208:2,-78.5,-70,0,0,-0.00587178 -9526,5707:208:1,-78,-70,0,0,-0.00597045 -9527,5707:207:2,-77.5,-70,0,0,-0.00608568 -9528,5707:207:1,-77,-70,0,0,-0.00629762 -9529,5707:206:2,-76.5,-70,0,0,-0.00646076 -9530,5707:206:1,-76,-70,0,0,-0.00672463 -9531,5707:205:2,-75.5,-70,0,0,-0.00698383 -9532,5707:205:1,-75,-70,0,0,-0.00700406 -9533,5707:104:2,-74.5,-70,0,0,-0.00729513 -9534,5707:104:1,-74,-70,0,0,-0.00768348 -9535,5706:100:1,-60,-70,0,0,-0.005509 -9536,5705:209:2,-59.5,-70,0,0,-0.00549312 -9537,5705:209:1,-59,-70,0,0,-0.00548337 -9538,5705:208:2,-58.5,-70,0,0,-0.00547119 -9539,5705:208:1,-58,-70,0,0,-0.00546755 -9540,5705:207:2,-57.5,-70,0,0,-0.00546878 -9541,5705:207:1,-57,-70,0,0,-0.00546878 -9542,5705:206:2,-56.5,-70,0,0,-0.00546755 -9543,5705:206:1,-56,-70,0,0,-0.00546633 -9544,5705:205:2,-55.5,-70,0,0,-0.00546633 -9545,5705:205:1,-55,-70,0,0,-0.00546878 -9546,5705:104:2,-54.5,-70,0,0,-0.00546878 -9547,5705:104:1,-54,-70,0,0,-0.00546878 -9548,5705:103:2,-53.5,-70,0,0,-0.00547 -9549,5705:103:1,-53,-70,0,0,-0.00547 -9550,5705:102:2,-52.5,-70,0,0,-0.00547 -9551,5705:102:1,-52,-70,0,0,-0.00547 -9552,5705:101:2,-51.5,-70,0,0,-0.00547 -9553,5705:101:1,-51,-70,0,0,-0.00547 -9554,5705:100:2,-50.5,-70,0,0,-0.00547 -9555,5705:100:1,-50,-70,0,0,-0.00546878 -9556,5704:209:2,-49.5,-70,0,0,-0.00547 -9557,5704:209:1,-49,-70,0,0,-0.00547 -9558,5704:208:2,-48.5,-70,0,0,-0.00547 -9559,5704:208:1,-48,-70,0,0,-0.00547 -9560,5704:207:2,-47.5,-70,0,0,-0.00547 -9561,5704:207:1,-47,-70,0,0,-0.00546878 -9562,5704:206:2,-46.5,-70,0,0,-0.00546755 -9563,5704:206:1,-46,-70,0,0,-0.00546755 -9564,5704:205:2,-45.5,-70,0,0,-0.00546633 -9565,5704:205:1,-45,-70,0,0,-0.00546633 -9566,5704:104:2,-44.5,-70,0,0,-0.00546511 -9567,5704:104:1,-44,-70,0,0,-0.00546392 -9568,5704:103:2,-43.5,-70,0,0,-0.00546392 -9569,5704:103:1,-43,-70,0,0,-0.00546392 -9570,5704:102:2,-42.5,-70,0,0,-0.0054627 -9571,5704:102:1,-42,-70,0,0,-0.00546148 -9572,5704:101:2,-41.5,-70,0,0,-0.00546026 -9573,5704:101:1,-41,-70,0,0,-0.00545907 -9574,5704:100:2,-40.5,-70,0,0,-0.00545785 -9575,5704:100:1,-40,-70,0,0,-0.00545663 -9576,5703:209:2,-39.5,-70,0,0,-0.00545663 -9577,5703:209:1,-39,-70,0,0,-0.00545663 -9578,5703:208:2,-38.5,-70,0,0,-0.00545663 -9579,5703:208:1,-38,-70,0,0,-0.00545663 -9580,5703:207:2,-37.5,-70,0,0,-0.00545663 -9581,5703:207:1,-37,-70,0,0,-0.00545663 -9582,5703:206:2,-36.5,-70,0,0,-0.00545663 -9583,5703:206:1,-36,-70,0,0,-0.00545785 -9584,5703:205:2,-35.5,-70,0,0,-0.00545785 -9585,5703:205:1,-35,-70,0,0,-0.00545785 -9586,5703:104:2,-34.5,-70,0,0,-0.00545907 -9587,5703:104:1,-34,-70,0,0,-0.00545907 -9588,5703:103:2,-33.5,-70,0,0,-0.00545907 -9589,5703:103:1,-33,-70,0,0,-0.00546026 -9590,5703:102:2,-32.5,-70,0,0,-0.00546026 -9591,5703:102:1,-32,-70,0,0,-0.00546026 -9592,5703:101:2,-31.5,-70,0,0,-0.00546148 -9593,5703:101:1,-31,-70,0,0,-0.00546148 -9594,5703:100:2,-30.5,-70,0,0,-0.0054627 -9595,5703:100:1,-30,-70,0,0,-0.00546148 -9596,5702:209:2,-29.5,-70,0,0,-0.00546148 -9597,5702:209:1,-29,-70,0,0,-0.0054627 -9598,5702:208:2,-28.5,-70,0,0,-0.0054627 -9599,5702:208:1,-28,-70,0,0,-0.0054627 -9600,5702:207:2,-27.5,-70,0,0,-0.00546392 -9601,5702:207:1,-27,-70,0,0,-0.00546392 -9602,5702:206:2,-26.5,-70,0,0,-0.00546511 -9603,5702:206:1,-26,-70,0,0,-0.00546392 -9604,5702:205:2,-25.5,-70,0,0,-0.00546026 -9605,5702:205:1,-25,-70,0,0,-0.00545785 -9606,5702:104:2,-24.5,-70,0,0,-0.00545785 -9607,5702:104:1,-24,-70,0,0,-0.00545785 -9608,5702:103:2,-23.5,-70,0,0,-0.00545785 -9609,5702:103:1,-23,-70,0,0,-0.00545785 -9610,5702:102:2,-22.5,-70,0,0,-0.00545785 -9611,5702:102:1,-22,-70,0,0,-0.00545785 -9612,5702:101:2,-21.5,-70,0,0,-0.00545785 -9613,5702:101:1,-21,-70,0,0,-0.00545785 -9614,5702:100:2,-20.5,-70,0,0,-0.00545785 -9615,5702:100:1,-20,-70,0,0,-0.00545907 -9616,5701:209:2,-19.5,-70,0,0,-0.00546026 -9617,5701:209:1,-19,-70,0,0,-0.00546026 -9618,5701:208:2,-18.5,-70,0,0,-0.00546026 -9619,5701:208:1,-18,-70,0,0,-0.00546148 -9620,5701:207:2,-17.5,-70,0,0,-0.0054627 -9621,5701:207:1,-17,-70,0,0,-0.0054627 -9622,5701:206:2,-16.5,-70,0,0,-0.0054627 -9623,5701:206:1,-16,-70,0,0,-0.0054627 -9624,5701:205:2,-15.5,-70,0,0,-0.00546392 -9625,5701:205:1,-15,-70,0,0,-0.00546633 -9626,5701:104:2,-14.5,-70,0,0,-0.00547 -9627,5701:104:1,-14,-70,0,0,-0.00547605 -9628,5701:103:2,-13.5,-70,0,0,-0.00548337 -9629,5701:103:1,-13,-70,0,0,-0.00548214 -9630,3716:209:2,169.5,-70,0,0,-0.00567045 -9631,3717:100:1,170,-70,0,0,-0.00548582 -9632,3717:100:2,170.5,-70,0,0,-0.00544695 -9633,3717:101:1,171,-70,0,0,-0.00546392 -9634,3717:101:2,171.5,-70,0,0,-0.00546148 -9635,3717:102:1,172,-70,0,0,-0.0054627 -9636,3717:102:2,172.5,-70,0,0,-0.00546392 -9637,3717:103:1,173,-70,0,0,-0.00546392 -9638,3717:103:2,173.5,-70,0,0,-0.0054627 -9639,3717:104:1,174,-70,0,0,-0.0054627 -9640,3717:104:2,174.5,-70,0,0,-0.0054627 -9641,3717:205:1,175,-70,0,0,-0.00546148 -9642,3717:205:2,175.5,-70,0,0,-0.00546026 -9643,3717:206:1,176,-70,0,0,-0.00546026 -9644,3717:206:2,176.5,-70,0,0,-0.00546026 -9645,3717:207:1,177,-70,0,0,-0.00546026 -9646,3717:207:2,177.5,-70,0,0,-0.00545907 -9647,3717:208:1,178,-70,0,0,-0.00545907 -9648,3717:208:2,178.5,-70,0,0,-0.00545907 -9649,3717:209:1,179,-70,0,0,-0.00546026 -9650,3717:209:2,179.5,-70,0,0,-0.00546148 -9651,3718:100:1,180,-70,0,0,-0.0054627 -9652,5618:390:3,-180,-69.5,0,0,-0.00546633 -9653,5617:499:4,-179.5,-69.5,0,0,-0.00546633 -9654,5617:499:3,-179,-69.5,0,0,-0.00546755 -9655,5617:498:4,-178.5,-69.5,0,0,-0.00546878 -9656,5617:498:3,-178,-69.5,0,0,-0.00547119 -9657,5617:497:4,-177.5,-69.5,0,0,-0.00547241 -9658,5617:497:3,-177,-69.5,0,0,-0.00547486 -9659,5617:496:4,-176.5,-69.5,0,0,-0.0054785 -9660,5617:496:3,-176,-69.5,0,0,-0.00548091 -9661,5617:495:4,-175.5,-69.5,0,0,-0.00548091 -9662,5617:495:3,-175,-69.5,0,0,-0.0054785 -9663,5617:394:4,-174.5,-69.5,0,0,-0.00547727 -9664,5617:394:3,-174,-69.5,0,0,-0.00547727 -9665,5617:393:4,-173.5,-69.5,0,0,-0.00547605 -9666,5617:393:3,-173,-69.5,0,0,-0.00547486 -9667,5617:392:4,-172.5,-69.5,0,0,-0.00547364 -9668,5617:392:3,-172,-69.5,0,0,-0.00547119 -9669,5617:391:4,-171.5,-69.5,0,0,-0.00547 -9670,5617:391:3,-171,-69.5,0,0,-0.00546878 -9671,5617:390:4,-170.5,-69.5,0,0,-0.00546755 -9672,5617:390:3,-170,-69.5,0,0,-0.00546633 -9673,5616:499:4,-169.5,-69.5,0,0,-0.00546511 -9674,5616:499:3,-169,-69.5,0,0,-0.00546511 -9675,5616:498:4,-168.5,-69.5,0,0,-0.00546392 -9676,5616:498:3,-168,-69.5,0,0,-0.0054627 -9677,5616:497:4,-167.5,-69.5,0,0,-0.0054627 -9678,5616:497:3,-167,-69.5,0,0,-0.0054627 -9679,5616:496:4,-166.5,-69.5,0,0,-0.00546148 -9680,5616:496:3,-166,-69.5,0,0,-0.00546026 -9681,5616:495:4,-165.5,-69.5,0,0,-0.00546026 -9682,5616:495:3,-165,-69.5,0,0,-0.00546026 -9683,5616:394:4,-164.5,-69.5,0,0,-0.00546026 -9684,5616:394:3,-164,-69.5,0,0,-0.00546148 -9685,5616:393:4,-163.5,-69.5,0,0,-0.00546148 -9686,5616:393:3,-163,-69.5,0,0,-0.00546148 -9687,5616:392:4,-162.5,-69.5,0,0,-0.00546026 -9688,5616:392:3,-162,-69.5,0,0,-0.00546026 -9689,5616:391:4,-161.5,-69.5,0,0,-0.00546148 -9690,5616:391:3,-161,-69.5,0,0,-0.0054627 -9691,5616:390:4,-160.5,-69.5,0,0,-0.00546392 -9692,5616:390:3,-160,-69.5,0,0,-0.00546511 -9693,5615:499:4,-159.5,-69.5,0,0,-0.00546633 -9694,5615:499:3,-159,-69.5,0,0,-0.00546755 -9695,5615:498:4,-158.5,-69.5,0,0,-0.00546878 -9696,5615:498:3,-158,-69.5,0,0,-0.00547 -9697,5615:497:4,-157.5,-69.5,0,0,-0.00547119 -9698,5615:497:3,-157,-69.5,0,0,-0.00547241 -9699,5615:496:4,-156.5,-69.5,0,0,-0.00547364 -9700,5615:496:3,-156,-69.5,0,0,-0.00547605 -9701,5615:495:4,-155.5,-69.5,0,0,-0.0054785 -9702,5615:495:3,-155,-69.5,0,0,-0.00547972 -9703,5615:394:4,-154.5,-69.5,0,0,-0.00548091 -9704,5615:394:3,-154,-69.5,0,0,-0.00548091 -9705,5615:393:4,-153.5,-69.5,0,0,-0.00548091 -9706,5615:393:3,-153,-69.5,0,0,-0.00547972 -9707,5615:392:4,-152.5,-69.5,0,0,-0.00548337 -9708,5615:392:3,-152,-69.5,0,0,-0.00548459 -9709,5615:391:4,-151.5,-69.5,0,0,-0.00548701 -9710,5615:391:3,-151,-69.5,0,0,-0.00548824 -9711,5615:390:4,-150.5,-69.5,0,0,-0.00548947 -9712,5615:390:3,-150,-69.5,0,0,-0.00549069 -9713,5614:499:4,-149.5,-69.5,0,0,-0.00549069 -9714,5614:499:3,-149,-69.5,0,0,-0.00549069 -9715,5614:498:4,-148.5,-69.5,0,0,-0.00549189 -9716,5614:498:3,-148,-69.5,0,0,-0.00549189 -9717,5614:497:4,-147.5,-69.5,0,0,-0.00549189 -9718,5614:497:3,-147,-69.5,0,0,-0.00549189 -9719,5614:496:4,-146.5,-69.5,0,0,-0.00549189 -9720,5614:496:3,-146,-69.5,0,0,-0.00549189 -9721,5614:495:4,-145.5,-69.5,0,0,-0.00549189 -9722,5614:495:3,-145,-69.5,0,0,-0.00549189 -9723,5614:394:4,-144.5,-69.5,0,0,-0.00549312 -9724,5614:394:3,-144,-69.5,0,0,-0.00549434 -9725,5614:393:4,-143.5,-69.5,0,0,-0.00549557 -9726,5614:393:3,-143,-69.5,0,0,-0.00549677 -9727,5614:392:4,-142.5,-69.5,0,0,-0.005498 -9728,5614:392:3,-142,-69.5,0,0,-0.00549677 -9729,5614:391:4,-141.5,-69.5,0,0,-0.00549434 -9730,5614:391:3,-141,-69.5,0,0,-0.00549189 -9731,5614:390:4,-140.5,-69.5,0,0,-0.00549069 -9732,5614:390:3,-140,-69.5,0,0,-0.00548824 -9733,5613:499:4,-139.5,-69.5,0,0,-0.00548459 -9734,5613:499:3,-139,-69.5,0,0,-0.00548214 -9735,5613:498:4,-138.5,-69.5,0,0,-0.00548091 -9736,5613:498:3,-138,-69.5,0,0,-0.00548214 -9737,5613:497:4,-137.5,-69.5,0,0,-0.00548459 -9738,5613:497:3,-137,-69.5,0,0,-0.00549069 -9739,5613:496:4,-136.5,-69.5,0,0,-0.00550411 -9740,5613:496:3,-136,-69.5,0,0,-0.00552127 -9741,5613:495:4,-135.5,-69.5,0,0,-0.00552861 -9742,5613:495:3,-135,-69.5,0,0,-0.00552861 -9743,5613:394:4,-134.5,-69.5,0,0,-0.00552003 -9744,5613:394:3,-134,-69.5,0,0,-0.00552985 -9745,5613:393:4,-133.5,-69.5,0,0,-0.00553352 -9746,5613:393:3,-133,-69.5,0,0,-0.00553352 -9747,5613:392:4,-132.5,-69.5,0,0,-0.00555819 -9748,5613:392:3,-132,-69.5,0,0,-0.00559536 -9749,5613:391:4,-131.5,-69.5,0,0,-0.00563778 -9750,5613:391:3,-131,-69.5,0,0,-0.00562026 -9751,5613:390:4,-130.5,-69.5,0,0,-0.00559908 -9752,5613:390:3,-130,-69.5,0,0,-0.00556807 -9753,5612:499:4,-129.5,-69.5,0,0,-0.0055434 -9754,5612:499:3,-129,-69.5,0,0,-0.00552861 -9755,5612:498:4,-128.5,-69.5,0,0,-0.0055225 -9756,5612:498:3,-128,-69.5,0,0,-0.00552127 -9757,5612:497:4,-127.5,-69.5,0,0,-0.00552003 -9758,5612:497:3,-127,-69.5,0,0,-0.0055139 -9759,5612:496:4,-126.5,-69.5,0,0,-0.00549434 -9760,5612:496:3,-126,-69.5,0,0,-0.00548824 -9761,5612:495:4,-125.5,-69.5,0,0,-0.00548947 -9762,5612:495:3,-125,-69.5,0,0,-0.00548947 -9763,5612:394:4,-124.5,-69.5,0,0,-0.00548947 -9764,5612:394:3,-124,-69.5,0,0,-0.00549069 -9765,5612:393:4,-123.5,-69.5,0,0,-0.00548947 -9766,5612:393:3,-123,-69.5,0,0,-0.00548947 -9767,5612:392:4,-122.5,-69.5,0,0,-0.00548947 -9768,5612:392:3,-122,-69.5,0,0,-0.00548947 -9769,5612:391:4,-121.5,-69.5,0,0,-0.00548824 -9770,5612:391:3,-121,-69.5,0,0,-0.00548824 -9771,5612:390:4,-120.5,-69.5,0,0,-0.00548701 -9772,5612:390:3,-120,-69.5,0,0,-0.00548582 -9773,5611:499:4,-119.5,-69.5,0,0,-0.00548459 -9774,5611:499:3,-119,-69.5,0,0,-0.00548459 -9775,5611:498:4,-118.5,-69.5,0,0,-0.00548337 -9776,5611:498:3,-118,-69.5,0,0,-0.00548214 -9777,5611:497:4,-117.5,-69.5,0,0,-0.00548214 -9778,5611:497:3,-117,-69.5,0,0,-0.00548091 -9779,5611:496:4,-116.5,-69.5,0,0,-0.00548091 -9780,5611:496:3,-116,-69.5,0,0,-0.00548091 -9781,5611:495:4,-115.5,-69.5,0,0,-0.00548091 -9782,5611:495:3,-115,-69.5,0,0,-0.00548091 -9783,5611:394:4,-114.5,-69.5,0,0,-0.00547972 -9784,5611:394:3,-114,-69.5,0,0,-0.00547972 -9785,5611:393:4,-113.5,-69.5,0,0,-0.0054785 -9786,5611:393:3,-113,-69.5,0,0,-0.0054785 -9787,5611:392:4,-112.5,-69.5,0,0,-0.00547972 -9788,5611:392:3,-112,-69.5,0,0,-0.00547972 -9789,5611:391:4,-111.5,-69.5,0,0,-0.00547972 -9790,5611:391:3,-111,-69.5,0,0,-0.00547972 -9791,5611:390:4,-110.5,-69.5,0,0,-0.00547972 -9792,5611:390:3,-110,-69.5,0,0,-0.00547972 -9793,5610:499:4,-109.5,-69.5,0,0,-0.00547972 -9794,5610:499:3,-109,-69.5,0,0,-0.00547972 -9795,5610:498:4,-108.5,-69.5,0,0,-0.00547972 -9796,5610:498:3,-108,-69.5,0,0,-0.00547972 -9797,5610:497:4,-107.5,-69.5,0,0,-0.00547972 -9798,5610:497:3,-107,-69.5,0,0,-0.00548091 -9799,5610:496:4,-106.5,-69.5,0,0,-0.00548091 -9800,5610:496:3,-106,-69.5,0,0,-0.00548091 -9801,5610:495:4,-105.5,-69.5,0,0,-0.00548091 -9802,5610:495:3,-105,-69.5,0,0,-0.00548091 -9803,5610:394:4,-104.5,-69.5,0,0,-0.00548091 -9804,5610:394:3,-104,-69.5,0,0,-0.00548214 -9805,5610:393:4,-103.5,-69.5,0,0,-0.00548214 -9806,5610:393:3,-103,-69.5,0,0,-0.00548214 -9807,5610:392:4,-102.5,-69.5,0,0,-0.00548214 -9808,5610:392:3,-102,-69.5,0,0,-0.00548337 -9809,5610:391:4,-101.5,-69.5,0,0,-0.00548824 -9810,5610:391:3,-101,-69.5,0,0,-0.00549189 -9811,5610:390:4,-100.5,-69.5,0,0,-0.00549312 -9812,5610:390:3,-100,-69.5,0,0,-0.00549557 -9813,5609:499:4,-99.5,-69.5,0,0,-0.005498 -9814,5609:499:3,-99,-69.5,0,0,-0.005498 -9815,5609:498:4,-98.5,-69.5,0,0,-0.005498 -9816,5609:498:3,-98,-69.5,0,0,-0.00549677 -9817,5609:497:4,-97.5,-69.5,0,0,-0.00549434 -9818,5609:497:3,-97,-69.5,0,0,-0.00549312 -9819,5609:496:4,-96.5,-69.5,0,0,-0.00549069 -9820,5609:496:3,-96,-69.5,0,0,-0.00548947 -9821,5609:495:4,-95.5,-69.5,0,0,-0.00548824 -9822,5609:495:3,-95,-69.5,0,0,-0.00548824 -9823,5609:394:4,-94.5,-69.5,0,0,-0.00548701 -9824,5609:394:3,-94,-69.5,0,0,-0.00548459 -9825,5609:393:4,-93.5,-69.5,0,0,-0.00548337 -9826,5609:393:3,-93,-69.5,0,0,-0.00548214 -9827,5609:392:4,-92.5,-69.5,0,0,-0.00547972 -9828,5609:392:3,-92,-69.5,0,0,-0.00547605 -9829,5609:391:4,-91.5,-69.5,0,0,-0.00547241 -9830,5609:391:3,-91,-69.5,0,0,-0.00547 -9831,5609:390:4,-90.5,-69.5,0,0,-0.00546755 -9832,5609:390:3,-90,-69.5,0,0,-0.00546633 -9833,5608:499:4,-89.5,-69.5,0,0,-0.00546392 -9834,5608:499:3,-89,-69.5,0,0,-0.00546148 -9835,5608:498:4,-88.5,-69.5,0,0,-0.00545907 -9836,5608:498:3,-88,-69.5,0,0,-0.00545907 -9837,5608:497:4,-87.5,-69.5,0,0,-0.00545907 -9838,5608:497:3,-87,-69.5,0,0,-0.00545663 -9839,5608:496:4,-86.5,-69.5,0,0,-0.00545541 -9840,5608:496:3,-86,-69.5,0,0,-0.00545423 -9841,5608:495:4,-85.5,-69.5,0,0,-0.005453 -9842,5608:495:3,-85,-69.5,0,0,-0.005453 -9843,5608:394:4,-84.5,-69.5,0,0,-0.005453 -9844,5608:394:3,-84,-69.5,0,0,-0.00545179 -9845,5608:393:4,-83.5,-69.5,0,0,-0.005453 -9846,5608:393:3,-83,-69.5,0,0,-0.00545423 -9847,5608:392:4,-82.5,-69.5,0,0,-0.00545541 -9848,5608:392:3,-82,-69.5,0,0,-0.00545785 -9849,5608:391:4,-81.5,-69.5,0,0,-0.00546148 -9850,5608:391:3,-81,-69.5,0,0,-0.00546755 -9851,5608:390:4,-80.5,-69.5,0,0,-0.00547364 -9852,5608:390:3,-80,-69.5,0,0,-0.00547727 -9853,5607:499:4,-79.5,-69.5,0,0,-0.00548214 -9854,5607:499:3,-79,-69.5,0,0,-0.00551637 -9855,5607:498:4,-78.5,-69.5,0,0,-0.00568307 -9856,5607:498:3,-78,-69.5,0,0,-0.00575165 -9857,5607:497:4,-77.5,-69.5,0,0,-0.00583795 -9858,5607:497:3,-77,-69.5,0,0,-0.00595456 -9859,5607:495:3,-75,-69.5,0,0,-0.00751768 -9860,5607:394:4,-74.5,-69.5,0,0,-0.00805847 -9861,5607:394:3,-74,-69.5,0,0,-0.00817238 -9862,5607:393:4,-73.5,-69.5,0,0,-0.00788628 -9863,5606:390:4,-60.5,-69.5,0,0,-0.0055188 -9864,5606:390:3,-60,-69.5,0,0,-0.00551024 -9865,5605:499:4,-59.5,-69.5,0,0,-0.00548337 -9866,5605:499:3,-59,-69.5,0,0,-0.00547241 -9867,5605:498:4,-58.5,-69.5,0,0,-0.00547 -9868,5605:498:3,-58,-69.5,0,0,-0.00546755 -9869,5605:497:4,-57.5,-69.5,0,0,-0.00546878 -9870,5605:497:3,-57,-69.5,0,0,-0.00546878 -9871,5605:496:4,-56.5,-69.5,0,0,-0.00546755 -9872,5605:496:3,-56,-69.5,0,0,-0.00546878 -9873,5605:495:4,-55.5,-69.5,0,0,-0.00546878 -9874,5605:495:3,-55,-69.5,0,0,-0.00547 -9875,5605:394:4,-54.5,-69.5,0,0,-0.00547 -9876,5605:394:3,-54,-69.5,0,0,-0.00547 -9877,5605:393:4,-53.5,-69.5,0,0,-0.00547 -9878,5605:393:3,-53,-69.5,0,0,-0.00547 -9879,5605:392:4,-52.5,-69.5,0,0,-0.00547 -9880,5605:392:3,-52,-69.5,0,0,-0.00547 -9881,5605:391:4,-51.5,-69.5,0,0,-0.00547 -9882,5605:391:3,-51,-69.5,0,0,-0.00546878 -9883,5605:390:4,-50.5,-69.5,0,0,-0.00546878 -9884,5605:390:3,-50,-69.5,0,0,-0.00546878 -9885,5604:499:4,-49.5,-69.5,0,0,-0.00546878 -9886,5604:499:3,-49,-69.5,0,0,-0.00546878 -9887,5604:498:4,-48.5,-69.5,0,0,-0.00546878 -9888,5604:498:3,-48,-69.5,0,0,-0.00546878 -9889,5604:497:4,-47.5,-69.5,0,0,-0.00546878 -9890,5604:497:3,-47,-69.5,0,0,-0.00546755 -9891,5604:496:4,-46.5,-69.5,0,0,-0.00546755 -9892,5604:496:3,-46,-69.5,0,0,-0.00546633 -9893,5604:495:4,-45.5,-69.5,0,0,-0.00546511 -9894,5604:495:3,-45,-69.5,0,0,-0.00546511 -9895,5604:394:4,-44.5,-69.5,0,0,-0.00546392 -9896,5604:394:3,-44,-69.5,0,0,-0.00546392 -9897,5604:393:4,-43.5,-69.5,0,0,-0.0054627 -9898,5604:393:3,-43,-69.5,0,0,-0.00546148 -9899,5604:392:4,-42.5,-69.5,0,0,-0.00546026 -9900,5604:392:3,-42,-69.5,0,0,-0.00545785 -9901,5604:391:4,-41.5,-69.5,0,0,-0.00545663 -9902,5604:391:3,-41,-69.5,0,0,-0.00545663 -9903,5604:390:4,-40.5,-69.5,0,0,-0.00545663 -9904,5604:390:3,-40,-69.5,0,0,-0.00545663 -9905,5603:499:4,-39.5,-69.5,0,0,-0.00545541 -9906,5603:499:3,-39,-69.5,0,0,-0.00545541 -9907,5603:498:4,-38.5,-69.5,0,0,-0.00545541 -9908,5603:498:3,-38,-69.5,0,0,-0.00545663 -9909,5603:497:4,-37.5,-69.5,0,0,-0.00545663 -9910,5603:497:3,-37,-69.5,0,0,-0.00545663 -9911,5603:496:4,-36.5,-69.5,0,0,-0.00545663 -9912,5603:496:3,-36,-69.5,0,0,-0.00545663 -9913,5603:495:4,-35.5,-69.5,0,0,-0.00545785 -9914,5603:495:3,-35,-69.5,0,0,-0.00545785 -9915,5603:394:4,-34.5,-69.5,0,0,-0.00545907 -9916,5603:394:3,-34,-69.5,0,0,-0.00545907 -9917,5603:393:4,-33.5,-69.5,0,0,-0.00546026 -9918,5603:393:3,-33,-69.5,0,0,-0.00546026 -9919,5603:392:4,-32.5,-69.5,0,0,-0.00546148 -9920,5603:392:3,-32,-69.5,0,0,-0.0054627 -9921,5603:391:4,-31.5,-69.5,0,0,-0.0054627 -9922,5603:391:3,-31,-69.5,0,0,-0.00546148 -9923,5603:390:4,-30.5,-69.5,0,0,-0.00546026 -9924,5603:390:3,-30,-69.5,0,0,-0.00546026 -9925,5602:499:4,-29.5,-69.5,0,0,-0.00546148 -9926,5602:499:3,-29,-69.5,0,0,-0.00546148 -9927,5602:498:4,-28.5,-69.5,0,0,-0.00546148 -9928,5602:498:3,-28,-69.5,0,0,-0.00546026 -9929,5602:497:4,-27.5,-69.5,0,0,-0.00546026 -9930,5602:497:3,-27,-69.5,0,0,-0.00546026 -9931,5602:496:4,-26.5,-69.5,0,0,-0.00546026 -9932,5602:496:3,-26,-69.5,0,0,-0.00545907 -9933,5602:495:4,-25.5,-69.5,0,0,-0.00545785 -9934,5602:495:3,-25,-69.5,0,0,-0.00545785 -9935,5602:394:4,-24.5,-69.5,0,0,-0.00545785 -9936,5602:394:3,-24,-69.5,0,0,-0.00545785 -9937,5602:393:4,-23.5,-69.5,0,0,-0.00545785 -9938,5602:393:3,-23,-69.5,0,0,-0.00545663 -9939,5602:392:4,-22.5,-69.5,0,0,-0.00545663 -9940,5602:392:3,-22,-69.5,0,0,-0.00545663 -9941,5602:391:4,-21.5,-69.5,0,0,-0.00545663 -9942,5602:391:3,-21,-69.5,0,0,-0.00545663 -9943,5602:390:4,-20.5,-69.5,0,0,-0.00545663 -9944,5602:390:3,-20,-69.5,0,0,-0.00545663 -9945,5601:499:4,-19.5,-69.5,0,0,-0.00545785 -9946,5601:499:3,-19,-69.5,0,0,-0.00545907 -9947,5601:498:4,-18.5,-69.5,0,0,-0.00546026 -9948,5601:498:3,-18,-69.5,0,0,-0.00546026 -9949,5601:497:4,-17.5,-69.5,0,0,-0.00546148 -9950,5601:497:3,-17,-69.5,0,0,-0.0054627 -9951,5601:496:4,-16.5,-69.5,0,0,-0.0054627 -9952,5601:496:3,-16,-69.5,0,0,-0.0054627 -9953,5601:495:4,-15.5,-69.5,0,0,-0.00546392 -9954,5601:495:3,-15,-69.5,0,0,-0.00546392 -9955,5601:394:4,-14.5,-69.5,0,0,-0.00546755 -9956,5601:394:3,-14,-69.5,0,0,-0.00547364 -9957,5601:393:4,-13.5,-69.5,0,0,-0.00547972 -9958,5601:393:3,-13,-69.5,0,0,-0.00548459 -9959,5601:392:4,-12.5,-69.5,0,0,-0.00548582 -9960,5601:392:3,-12,-69.5,0,0,-0.00548824 -9961,3616:498:4,168.5,-69.5,0,0,-0.00574016 -9962,3616:499:3,169,-69.5,0,0,-0.00558418 -9963,3616:499:4,169.5,-69.5,0,0,-0.00545785 -9964,3617:390:3,170,-69.5,0,0,-0.00545423 -9965,3617:390:4,170.5,-69.5,0,0,-0.00545907 -9966,3617:391:3,171,-69.5,0,0,-0.00545907 -9967,3617:391:4,171.5,-69.5,0,0,-0.00546148 -9968,3617:392:3,172,-69.5,0,0,-0.00546392 -9969,3617:392:4,172.5,-69.5,0,0,-0.00546511 -9970,3617:393:3,173,-69.5,0,0,-0.00546392 -9971,3617:393:4,173.5,-69.5,0,0,-0.00546392 -9972,3617:394:3,174,-69.5,0,0,-0.00546392 -9973,3617:394:4,174.5,-69.5,0,0,-0.0054627 -9974,3617:495:3,175,-69.5,0,0,-0.00546148 -9975,3617:495:4,175.5,-69.5,0,0,-0.00546026 -9976,3617:496:3,176,-69.5,0,0,-0.00545907 -9977,3617:496:4,176.5,-69.5,0,0,-0.00545907 -9978,3617:497:3,177,-69.5,0,0,-0.00546026 -9979,3617:497:4,177.5,-69.5,0,0,-0.00545907 -9980,3617:498:3,178,-69.5,0,0,-0.00545907 -9981,3617:498:4,178.5,-69.5,0,0,-0.00546026 -9982,3617:499:3,179,-69.5,0,0,-0.0054627 -9983,3617:499:4,179.5,-69.5,0,0,-0.00546511 -9984,3618:390:3,180,-69.5,0,0,-0.00546633 -9985,5618:390:1,-180,-69,0,0,-0.00546878 -9986,5617:499:2,-179.5,-69,0,0,-0.00547 -9987,5617:499:1,-179,-69,0,0,-0.00547 -9988,5617:498:2,-178.5,-69,0,0,-0.00547119 -9989,5617:498:1,-178,-69,0,0,-0.00547364 -9990,5617:497:2,-177.5,-69,0,0,-0.00547486 -9991,5617:497:1,-177,-69,0,0,-0.0054785 -9992,5617:496:2,-176.5,-69,0,0,-0.00547972 -9993,5617:496:1,-176,-69,0,0,-0.00547972 -9994,5617:495:2,-175.5,-69,0,0,-0.0054785 -9995,5617:495:1,-175,-69,0,0,-0.00547727 -9996,5617:394:2,-174.5,-69,0,0,-0.00547605 -9997,5617:394:1,-174,-69,0,0,-0.00547605 -9998,5617:393:2,-173.5,-69,0,0,-0.00547605 -9999,5617:393:1,-173,-69,0,0,-0.00547486 -10000,5617:392:2,-172.5,-69,0,0,-0.00547364 -10001,5617:392:1,-172,-69,0,0,-0.00547119 -10002,5617:391:2,-171.5,-69,0,0,-0.00547 -10003,5617:391:1,-171,-69,0,0,-0.00546878 -10004,5617:390:2,-170.5,-69,0,0,-0.00546755 -10005,5617:390:1,-170,-69,0,0,-0.00546633 -10006,5616:499:2,-169.5,-69,0,0,-0.00546511 -10007,5616:499:1,-169,-69,0,0,-0.00546392 -10008,5616:498:2,-168.5,-69,0,0,-0.0054627 -10009,5616:498:1,-168,-69,0,0,-0.0054627 -10010,5616:497:2,-167.5,-69,0,0,-0.0054627 -10011,5616:497:1,-167,-69,0,0,-0.0054627 -10012,5616:496:2,-166.5,-69,0,0,-0.00546148 -10013,5616:496:1,-166,-69,0,0,-0.00546026 -10014,5616:495:2,-165.5,-69,0,0,-0.00545907 -10015,5616:495:1,-165,-69,0,0,-0.00545785 -10016,5616:394:2,-164.5,-69,0,0,-0.00545785 -10017,5616:394:1,-164,-69,0,0,-0.00545785 -10018,5616:393:2,-163.5,-69,0,0,-0.00545907 -10019,5616:393:1,-163,-69,0,0,-0.00545785 -10020,5616:392:2,-162.5,-69,0,0,-0.00545785 -10021,5616:392:1,-162,-69,0,0,-0.00545785 -10022,5616:391:2,-161.5,-69,0,0,-0.00545907 -10023,5616:391:1,-161,-69,0,0,-0.00546026 -10024,5616:390:2,-160.5,-69,0,0,-0.00546148 -10025,5616:390:1,-160,-69,0,0,-0.00546392 -10026,5615:499:2,-159.5,-69,0,0,-0.00546633 -10027,5615:499:1,-159,-69,0,0,-0.00546755 -10028,5615:498:2,-158.5,-69,0,0,-0.00546755 -10029,5615:498:1,-158,-69,0,0,-0.00547 -10030,5615:497:2,-157.5,-69,0,0,-0.00547119 -10031,5615:497:1,-157,-69,0,0,-0.00547241 -10032,5615:496:2,-156.5,-69,0,0,-0.00547364 -10033,5615:496:1,-156,-69,0,0,-0.00547605 -10034,5615:495:2,-155.5,-69,0,0,-0.00547727 -10035,5615:495:1,-155,-69,0,0,-0.0054785 -10036,5615:394:2,-154.5,-69,0,0,-0.00547972 -10037,5615:394:1,-154,-69,0,0,-0.00548091 -10038,5615:393:2,-153.5,-69,0,0,-0.00548091 -10039,5615:393:1,-153,-69,0,0,-0.00548091 -10040,5615:392:2,-152.5,-69,0,0,-0.00548214 -10041,5615:392:1,-152,-69,0,0,-0.00548459 -10042,5615:391:2,-151.5,-69,0,0,-0.00548701 -10043,5615:391:1,-151,-69,0,0,-0.00548824 -10044,5615:390:2,-150.5,-69,0,0,-0.00548947 -10045,5615:390:1,-150,-69,0,0,-0.00549069 -10046,5614:499:2,-149.5,-69,0,0,-0.00549069 -10047,5614:499:1,-149,-69,0,0,-0.00549189 -10048,5614:498:2,-148.5,-69,0,0,-0.00549189 -10049,5614:498:1,-148,-69,0,0,-0.00549312 -10050,5614:497:2,-147.5,-69,0,0,-0.00549312 -10051,5614:497:1,-147,-69,0,0,-0.00549189 -10052,5614:496:2,-146.5,-69,0,0,-0.00549189 -10053,5614:496:1,-146,-69,0,0,-0.00549069 -10054,5614:495:2,-145.5,-69,0,0,-0.00549069 -10055,5614:495:1,-145,-69,0,0,-0.00549189 -10056,5614:394:2,-144.5,-69,0,0,-0.00549189 -10057,5614:394:1,-144,-69,0,0,-0.00549312 -10058,5614:393:2,-143.5,-69,0,0,-0.00549434 -10059,5614:393:1,-143,-69,0,0,-0.00549434 -10060,5614:392:2,-142.5,-69,0,0,-0.00549557 -10061,5614:392:1,-142,-69,0,0,-0.00549434 -10062,5614:391:2,-141.5,-69,0,0,-0.00549434 -10063,5614:391:1,-141,-69,0,0,-0.00549312 -10064,5614:390:2,-140.5,-69,0,0,-0.00549189 -10065,5614:390:1,-140,-69,0,0,-0.00549069 -10066,5613:499:2,-139.5,-69,0,0,-0.00548824 -10067,5613:499:1,-139,-69,0,0,-0.00548459 -10068,5613:498:2,-138.5,-69,0,0,-0.00548214 -10069,5613:498:1,-138,-69,0,0,-0.00548459 -10070,5613:497:2,-137.5,-69,0,0,-0.00548701 -10071,5613:497:1,-137,-69,0,0,-0.00549069 -10072,5613:496:2,-136.5,-69,0,0,-0.005498 -10073,5613:496:1,-136,-69,0,0,-0.00550411 -10074,5613:495:2,-135.5,-69,0,0,-0.005509 -10075,5613:495:1,-135,-69,0,0,-0.00551147 -10076,5613:394:2,-134.5,-69,0,0,-0.00551266 -10077,5613:394:1,-134,-69,0,0,-0.0055225 -10078,5613:393:2,-133.5,-69,0,0,-0.00554216 -10079,5613:393:1,-133,-69,0,0,-0.00553968 -10080,5613:392:2,-132.5,-69,0,0,-0.00552861 -10081,5613:392:1,-132,-69,0,0,-0.00554092 -10082,5613:391:2,-131.5,-69,0,0,-0.00555819 -10083,5613:391:1,-131,-69,0,0,-0.00562278 -10084,5613:390:2,-130.5,-69,0,0,-0.00561402 -10085,5613:390:1,-130,-69,0,0,-0.00559164 -10086,5612:499:2,-129.5,-69,0,0,-0.00556313 -10087,5612:499:1,-129,-69,0,0,-0.0055434 -10088,5612:498:2,-128.5,-69,0,0,-0.00553476 -10089,5612:498:1,-128,-69,0,0,-0.005536 -10090,5612:497:2,-127.5,-69,0,0,-0.0055446 -10091,5612:497:1,-127,-69,0,0,-0.00554584 -10092,5612:496:2,-126.5,-69,0,0,-0.005536 -10093,5612:496:1,-126,-69,0,0,-0.0055225 -10094,5612:495:2,-125.5,-69,0,0,-0.00549189 -10095,5612:495:1,-125,-69,0,0,-0.00548701 -10096,5612:394:2,-124.5,-69,0,0,-0.00548824 -10097,5612:394:1,-124,-69,0,0,-0.00548824 -10098,5612:393:2,-123.5,-69,0,0,-0.00548824 -10099,5612:393:1,-123,-69,0,0,-0.00548824 -10100,5612:392:2,-122.5,-69,0,0,-0.00548824 -10101,5612:392:1,-122,-69,0,0,-0.00548824 -10102,5612:391:2,-121.5,-69,0,0,-0.00548824 -10103,5612:391:1,-121,-69,0,0,-0.00548824 -10104,5612:390:2,-120.5,-69,0,0,-0.00548701 -10105,5612:390:1,-120,-69,0,0,-0.00548459 -10106,5611:499:2,-119.5,-69,0,0,-0.00548337 -10107,5611:499:1,-119,-69,0,0,-0.00548337 -10108,5611:498:2,-118.5,-69,0,0,-0.00548337 -10109,5611:498:1,-118,-69,0,0,-0.00548337 -10110,5611:497:2,-117.5,-69,0,0,-0.00548214 -10111,5611:497:1,-117,-69,0,0,-0.00548091 -10112,5611:496:2,-116.5,-69,0,0,-0.00547972 -10113,5611:496:1,-116,-69,0,0,-0.00547972 -10114,5611:495:2,-115.5,-69,0,0,-0.00548091 -10115,5611:495:1,-115,-69,0,0,-0.00548091 -10116,5611:394:2,-114.5,-69,0,0,-0.00547972 -10117,5611:394:1,-114,-69,0,0,-0.00547972 -10118,5611:393:2,-113.5,-69,0,0,-0.00547972 -10119,5611:393:1,-113,-69,0,0,-0.00547972 -10120,5611:392:2,-112.5,-69,0,0,-0.00547972 -10121,5611:392:1,-112,-69,0,0,-0.00547972 -10122,5611:391:2,-111.5,-69,0,0,-0.00547972 -10123,5611:391:1,-111,-69,0,0,-0.00547972 -10124,5611:390:2,-110.5,-69,0,0,-0.00547972 -10125,5611:390:1,-110,-69,0,0,-0.00547972 -10126,5610:499:2,-109.5,-69,0,0,-0.00547972 -10127,5610:499:1,-109,-69,0,0,-0.00547972 -10128,5610:498:2,-108.5,-69,0,0,-0.00547972 -10129,5610:498:1,-108,-69,0,0,-0.00547972 -10130,5610:497:2,-107.5,-69,0,0,-0.00548091 -10131,5610:497:1,-107,-69,0,0,-0.00548091 -10132,5610:496:2,-106.5,-69,0,0,-0.00548214 -10133,5610:496:1,-106,-69,0,0,-0.00548214 -10134,5610:495:2,-105.5,-69,0,0,-0.00548337 -10135,5610:495:1,-105,-69,0,0,-0.00548214 -10136,5610:394:2,-104.5,-69,0,0,-0.00548214 -10137,5610:394:1,-104,-69,0,0,-0.00548214 -10138,5610:393:2,-103.5,-69,0,0,-0.00548214 -10139,5610:393:1,-103,-69,0,0,-0.00548214 -10140,5610:392:2,-102.5,-69,0,0,-0.00548091 -10141,5610:392:1,-102,-69,0,0,-0.00548091 -10142,5610:391:2,-101.5,-69,0,0,-0.00548214 -10143,5610:391:1,-101,-69,0,0,-0.00548214 -10144,5610:390:2,-100.5,-69,0,0,-0.00548337 -10145,5610:390:1,-100,-69,0,0,-0.00548459 -10146,5609:499:2,-99.5,-69,0,0,-0.00548701 -10147,5609:499:1,-99,-69,0,0,-0.00549069 -10148,5609:498:2,-98.5,-69,0,0,-0.00549312 -10149,5609:498:1,-98,-69,0,0,-0.00549434 -10150,5609:497:2,-97.5,-69,0,0,-0.00549434 -10151,5609:497:1,-97,-69,0,0,-0.00549312 -10152,5609:496:2,-96.5,-69,0,0,-0.00549189 -10153,5609:496:1,-96,-69,0,0,-0.00549069 -10154,5609:495:2,-95.5,-69,0,0,-0.00548947 -10155,5609:495:1,-95,-69,0,0,-0.00548947 -10156,5609:394:2,-94.5,-69,0,0,-0.00548824 -10157,5609:394:1,-94,-69,0,0,-0.00548459 -10158,5609:393:2,-93.5,-69,0,0,-0.00548214 -10159,5609:393:1,-93,-69,0,0,-0.0054785 -10160,5609:392:2,-92.5,-69,0,0,-0.00547486 -10161,5609:392:1,-92,-69,0,0,-0.00547119 -10162,5609:391:2,-91.5,-69,0,0,-0.00547 -10163,5609:391:1,-91,-69,0,0,-0.00546878 -10164,5609:390:2,-90.5,-69,0,0,-0.00546755 -10165,5609:390:1,-90,-69,0,0,-0.00546633 -10166,5608:499:2,-89.5,-69,0,0,-0.00546633 -10167,5608:499:1,-89,-69,0,0,-0.00546511 -10168,5608:498:2,-88.5,-69,0,0,-0.00546392 -10169,5608:498:1,-88,-69,0,0,-0.0054627 -10170,5608:497:2,-87.5,-69,0,0,-0.00546148 -10171,5608:497:1,-87,-69,0,0,-0.00546148 -10172,5608:496:2,-86.5,-69,0,0,-0.00546026 -10173,5608:496:1,-86,-69,0,0,-0.00545785 -10174,5608:495:2,-85.5,-69,0,0,-0.00545663 -10175,5608:495:1,-85,-69,0,0,-0.00545541 -10176,5608:394:2,-84.5,-69,0,0,-0.00545541 -10177,5608:394:1,-84,-69,0,0,-0.00545423 -10178,5608:393:2,-83.5,-69,0,0,-0.00545423 -10179,5608:393:1,-83,-69,0,0,-0.00545541 -10180,5608:392:2,-82.5,-69,0,0,-0.00545785 -10181,5608:392:1,-82,-69,0,0,-0.00545907 -10182,5608:391:2,-81.5,-69,0,0,-0.0054627 -10183,5608:391:1,-81,-69,0,0,-0.00546755 -10184,5608:390:2,-80.5,-69,0,0,-0.00547364 -10185,5608:390:1,-80,-69,0,0,-0.00547605 -10186,5607:499:2,-79.5,-69,0,0,-0.00547972 -10187,5607:499:1,-79,-69,0,0,-0.00551637 -10188,5607:498:2,-78.5,-69,0,0,-0.00571472 -10189,5607:498:1,-78,-69,0,0,-0.00584441 -10190,5607:497:2,-77.5,-69,0,0,-0.00594133 -10191,5607:497:1,-77,-69,0,0,-0.00597442 -10192,5607:496:2,-76.5,-69,0,0,-0.00596252 -10193,5607:496:1,-76,-69,0,0,-0.00598907 -10194,5607:495:2,-75.5,-69,0,0,-0.00595852 -10195,5606:390:2,-60.5,-69,0,0,-0.00552617 -10196,5606:390:1,-60,-69,0,0,-0.0055188 -10197,5605:499:2,-59.5,-69,0,0,-0.00548824 -10198,5605:499:1,-59,-69,0,0,-0.00547119 -10199,5605:498:2,-58.5,-69,0,0,-0.00546755 -10200,5605:498:1,-58,-69,0,0,-0.00546755 -10201,5605:497:2,-57.5,-69,0,0,-0.00547 -10202,5605:497:1,-57,-69,0,0,-0.00547 -10203,5605:496:2,-56.5,-69,0,0,-0.00546878 -10204,5605:496:1,-56,-69,0,0,-0.00546878 -10205,5605:495:2,-55.5,-69,0,0,-0.00547 -10206,5605:495:1,-55,-69,0,0,-0.00547 -10207,5605:394:2,-54.5,-69,0,0,-0.00547 -10208,5605:394:1,-54,-69,0,0,-0.00547 -10209,5605:393:2,-53.5,-69,0,0,-0.00547 -10210,5605:393:1,-53,-69,0,0,-0.00547 -10211,5605:392:2,-52.5,-69,0,0,-0.00547 -10212,5605:392:1,-52,-69,0,0,-0.00546878 -10213,5605:391:2,-51.5,-69,0,0,-0.00546878 -10214,5605:391:1,-51,-69,0,0,-0.00546878 -10215,5605:390:2,-50.5,-69,0,0,-0.00546878 -10216,5605:390:1,-50,-69,0,0,-0.00546878 -10217,5604:499:2,-49.5,-69,0,0,-0.00546755 -10218,5604:499:1,-49,-69,0,0,-0.00546755 -10219,5604:498:2,-48.5,-69,0,0,-0.00546755 -10220,5604:498:1,-48,-69,0,0,-0.00546755 -10221,5604:497:2,-47.5,-69,0,0,-0.00546755 -10222,5604:497:1,-47,-69,0,0,-0.00546633 -10223,5604:496:2,-46.5,-69,0,0,-0.00546511 -10224,5604:496:1,-46,-69,0,0,-0.00546511 -10225,5604:495:2,-45.5,-69,0,0,-0.00546392 -10226,5604:495:1,-45,-69,0,0,-0.0054627 -10227,5604:394:2,-44.5,-69,0,0,-0.00546148 -10228,5604:394:1,-44,-69,0,0,-0.00546026 -10229,5604:393:2,-43.5,-69,0,0,-0.00545907 -10230,5604:393:1,-43,-69,0,0,-0.00545785 -10231,5604:392:2,-42.5,-69,0,0,-0.00545663 -10232,5604:392:1,-42,-69,0,0,-0.00545663 -10233,5604:391:2,-41.5,-69,0,0,-0.00545663 -10234,5604:391:1,-41,-69,0,0,-0.00545663 -10235,5604:390:2,-40.5,-69,0,0,-0.00545663 -10236,5604:390:1,-40,-69,0,0,-0.00545541 -10237,5603:499:2,-39.5,-69,0,0,-0.00545541 -10238,5603:499:1,-39,-69,0,0,-0.00545541 -10239,5603:498:2,-38.5,-69,0,0,-0.00545541 -10240,5603:498:1,-38,-69,0,0,-0.00545541 -10241,5603:497:2,-37.5,-69,0,0,-0.00545541 -10242,5603:497:1,-37,-69,0,0,-0.00545663 -10243,5603:496:2,-36.5,-69,0,0,-0.00545663 -10244,5603:496:1,-36,-69,0,0,-0.00545785 -10245,5603:495:2,-35.5,-69,0,0,-0.00545785 -10246,5603:495:1,-35,-69,0,0,-0.00545785 -10247,5603:394:2,-34.5,-69,0,0,-0.00545907 -10248,5603:394:1,-34,-69,0,0,-0.00545907 -10249,5603:393:2,-33.5,-69,0,0,-0.00545907 -10250,5603:393:1,-33,-69,0,0,-0.00545907 -10251,5603:392:2,-32.5,-69,0,0,-0.00546026 -10252,5603:392:1,-32,-69,0,0,-0.00546148 -10253,5603:391:2,-31.5,-69,0,0,-0.00546148 -10254,5603:391:1,-31,-69,0,0,-0.00545907 -10255,5603:390:2,-30.5,-69,0,0,-0.00545907 -10256,5603:390:1,-30,-69,0,0,-0.00546026 -10257,5602:499:2,-29.5,-69,0,0,-0.00546026 -10258,5602:499:1,-29,-69,0,0,-0.00545907 -10259,5602:498:2,-28.5,-69,0,0,-0.00546026 -10260,5602:498:1,-28,-69,0,0,-0.00545907 -10261,5602:497:2,-27.5,-69,0,0,-0.00545907 -10262,5602:497:1,-27,-69,0,0,-0.00545907 -10263,5602:496:2,-26.5,-69,0,0,-0.00545907 -10264,5602:496:1,-26,-69,0,0,-0.00545907 -10265,5602:495:2,-25.5,-69,0,0,-0.00545785 -10266,5602:495:1,-25,-69,0,0,-0.00545785 -10267,5602:394:2,-24.5,-69,0,0,-0.00545785 -10268,5602:394:1,-24,-69,0,0,-0.00545663 -10269,5602:393:2,-23.5,-69,0,0,-0.00545663 -10270,5602:393:1,-23,-69,0,0,-0.00545663 -10271,5602:392:2,-22.5,-69,0,0,-0.00545541 -10272,5602:392:1,-22,-69,0,0,-0.00545541 -10273,5602:391:2,-21.5,-69,0,0,-0.00545423 -10274,5602:391:1,-21,-69,0,0,-0.00545423 -10275,5602:390:2,-20.5,-69,0,0,-0.00545541 -10276,5602:390:1,-20,-69,0,0,-0.00545663 -10277,5601:499:2,-19.5,-69,0,0,-0.00545663 -10278,5601:499:1,-19,-69,0,0,-0.00545785 -10279,5601:498:2,-18.5,-69,0,0,-0.00545785 -10280,5601:498:1,-18,-69,0,0,-0.00545907 -10281,5601:497:2,-17.5,-69,0,0,-0.00545907 -10282,5601:497:1,-17,-69,0,0,-0.00546026 -10283,5601:496:2,-16.5,-69,0,0,-0.00546148 -10284,5601:496:1,-16,-69,0,0,-0.00546148 -10285,5601:495:2,-15.5,-69,0,0,-0.00546148 -10286,5601:495:1,-15,-69,0,0,-0.0054627 -10287,5601:394:2,-14.5,-69,0,0,-0.00546392 -10288,5601:394:1,-14,-69,0,0,-0.00546511 -10289,5601:393:2,-13.5,-69,0,0,-0.00546633 -10290,5601:393:1,-13,-69,0,0,-0.00546755 -10291,5601:392:2,-12.5,-69,0,0,-0.00547 -10292,5601:392:1,-12,-69,0,0,-0.00548701 -10293,5601:391:2,-11.5,-69,0,0,-0.00551024 -10294,5601:391:1,-11,-69,0,0,-0.00555201 -10295,5601:390:2,-10.5,-69,0,0,-0.0056028 -10296,5601:390:1,-10,-69,0,0,-0.00560781 -10297,3616:498:2,168.5,-69,0,0,-0.00561154 -10298,3616:499:1,169,-69,0,0,-0.00550411 -10299,3616:499:2,169.5,-69,0,0,-0.00546026 -10300,3617:390:1,170,-69,0,0,-0.0054627 -10301,3617:390:2,170.5,-69,0,0,-0.00545785 -10302,3617:391:1,171,-69,0,0,-0.0054627 -10303,3617:391:2,171.5,-69,0,0,-0.00546511 -10304,3617:392:1,172,-69,0,0,-0.00546392 -10305,3617:392:2,172.5,-69,0,0,-0.00546511 -10306,3617:393:1,173,-69,0,0,-0.00546392 -10307,3617:393:2,173.5,-69,0,0,-0.00546392 -10308,3617:394:1,174,-69,0,0,-0.0054627 -10309,3617:394:2,174.5,-69,0,0,-0.00546148 -10310,3617:495:1,175,-69,0,0,-0.00546026 -10311,3617:495:2,175.5,-69,0,0,-0.00545907 -10312,3617:496:1,176,-69,0,0,-0.00545907 -10313,3617:496:2,176.5,-69,0,0,-0.00545907 -10314,3617:497:1,177,-69,0,0,-0.00545907 -10315,3617:497:2,177.5,-69,0,0,-0.00545907 -10316,3617:498:1,178,-69,0,0,-0.00546026 -10317,3617:498:2,178.5,-69,0,0,-0.0054627 -10318,3617:499:1,179,-69,0,0,-0.00546633 -10319,3617:499:2,179.5,-69,0,0,-0.00546755 -10320,3618:390:1,180,-69,0,0,-0.00546878 -10321,5618:380:3,-180,-68.5,0,0,-0.00547241 -10322,5617:489:4,-179.5,-68.5,0,0,-0.00547364 -10323,5617:489:3,-179,-68.5,0,0,-0.00547486 -10324,5617:488:4,-178.5,-68.5,0,0,-0.00547486 -10325,5617:488:3,-178,-68.5,0,0,-0.00547605 -10326,5617:487:4,-177.5,-68.5,0,0,-0.0054785 -10327,5617:487:3,-177,-68.5,0,0,-0.00547972 -10328,5617:486:4,-176.5,-68.5,0,0,-0.00547972 -10329,5617:486:3,-176,-68.5,0,0,-0.0054785 -10330,5617:485:4,-175.5,-68.5,0,0,-0.00547727 -10331,5617:485:3,-175,-68.5,0,0,-0.00547727 -10332,5617:384:4,-174.5,-68.5,0,0,-0.00547605 -10333,5617:384:3,-174,-68.5,0,0,-0.00547486 -10334,5617:383:4,-173.5,-68.5,0,0,-0.00547364 -10335,5617:383:3,-173,-68.5,0,0,-0.00547241 -10336,5617:382:4,-172.5,-68.5,0,0,-0.00547119 -10337,5617:382:3,-172,-68.5,0,0,-0.00547 -10338,5617:381:4,-171.5,-68.5,0,0,-0.00546878 -10339,5617:381:3,-171,-68.5,0,0,-0.00546755 -10340,5617:380:4,-170.5,-68.5,0,0,-0.00546633 -10341,5617:380:3,-170,-68.5,0,0,-0.00546511 -10342,5616:489:4,-169.5,-68.5,0,0,-0.00546511 -10343,5616:489:3,-169,-68.5,0,0,-0.00546392 -10344,5616:488:4,-168.5,-68.5,0,0,-0.00546392 -10345,5616:488:3,-168,-68.5,0,0,-0.0054627 -10346,5616:487:4,-167.5,-68.5,0,0,-0.0054627 -10347,5616:487:3,-167,-68.5,0,0,-0.00546148 -10348,5616:486:4,-166.5,-68.5,0,0,-0.00546026 -10349,5616:486:3,-166,-68.5,0,0,-0.00545785 -10350,5616:485:4,-165.5,-68.5,0,0,-0.00545663 -10351,5616:485:3,-165,-68.5,0,0,-0.00545423 -10352,5616:384:4,-164.5,-68.5,0,0,-0.00545423 -10353,5616:384:3,-164,-68.5,0,0,-0.00545541 -10354,5616:383:4,-163.5,-68.5,0,0,-0.00545663 -10355,5616:383:3,-163,-68.5,0,0,-0.00545541 -10356,5616:382:4,-162.5,-68.5,0,0,-0.00545541 -10357,5616:382:3,-162,-68.5,0,0,-0.00545541 -10358,5616:381:4,-161.5,-68.5,0,0,-0.00545663 -10359,5616:381:3,-161,-68.5,0,0,-0.00545785 -10360,5616:380:4,-160.5,-68.5,0,0,-0.00546026 -10361,5616:380:3,-160,-68.5,0,0,-0.0054627 -10362,5615:489:4,-159.5,-68.5,0,0,-0.00546511 -10363,5615:489:3,-159,-68.5,0,0,-0.00546755 -10364,5615:488:4,-158.5,-68.5,0,0,-0.00546878 -10365,5615:488:3,-158,-68.5,0,0,-0.00547 -10366,5615:487:4,-157.5,-68.5,0,0,-0.00547119 -10367,5615:487:3,-157,-68.5,0,0,-0.00547241 -10368,5615:486:4,-156.5,-68.5,0,0,-0.00547486 -10369,5615:486:3,-156,-68.5,0,0,-0.00547727 -10370,5615:485:4,-155.5,-68.5,0,0,-0.00547972 -10371,5615:485:3,-155,-68.5,0,0,-0.00548091 -10372,5615:384:4,-154.5,-68.5,0,0,-0.00548091 -10373,5615:384:3,-154,-68.5,0,0,-0.00548091 -10374,5615:383:4,-153.5,-68.5,0,0,-0.00548214 -10375,5615:383:3,-153,-68.5,0,0,-0.00548214 -10376,5615:382:4,-152.5,-68.5,0,0,-0.00548337 -10377,5615:382:3,-152,-68.5,0,0,-0.00548459 -10378,5615:381:4,-151.5,-68.5,0,0,-0.00548701 -10379,5615:381:3,-151,-68.5,0,0,-0.00548701 -10380,5615:380:4,-150.5,-68.5,0,0,-0.00548824 -10381,5615:380:3,-150,-68.5,0,0,-0.00548947 -10382,5614:489:4,-149.5,-68.5,0,0,-0.00549069 -10383,5614:489:3,-149,-68.5,0,0,-0.00549189 -10384,5614:488:4,-148.5,-68.5,0,0,-0.00549312 -10385,5614:488:3,-148,-68.5,0,0,-0.00549312 -10386,5614:487:4,-147.5,-68.5,0,0,-0.00549312 -10387,5614:487:3,-147,-68.5,0,0,-0.00549434 -10388,5614:486:4,-146.5,-68.5,0,0,-0.00549434 -10389,5614:486:3,-146,-68.5,0,0,-0.00549312 -10390,5614:485:4,-145.5,-68.5,0,0,-0.00549189 -10391,5614:485:3,-145,-68.5,0,0,-0.00549189 -10392,5614:384:4,-144.5,-68.5,0,0,-0.00549312 -10393,5614:384:3,-144,-68.5,0,0,-0.00549312 -10394,5614:383:4,-143.5,-68.5,0,0,-0.00549434 -10395,5614:383:3,-143,-68.5,0,0,-0.00549434 -10396,5614:382:4,-142.5,-68.5,0,0,-0.00549434 -10397,5614:382:3,-142,-68.5,0,0,-0.00549434 -10398,5614:381:4,-141.5,-68.5,0,0,-0.00549434 -10399,5614:381:3,-141,-68.5,0,0,-0.00549312 -10400,5614:380:4,-140.5,-68.5,0,0,-0.00549312 -10401,5614:380:3,-140,-68.5,0,0,-0.00549189 -10402,5613:489:4,-139.5,-68.5,0,0,-0.00548947 -10403,5613:489:3,-139,-68.5,0,0,-0.00548824 -10404,5613:488:4,-138.5,-68.5,0,0,-0.00548582 -10405,5613:488:3,-138,-68.5,0,0,-0.00548337 -10406,5613:487:4,-137.5,-68.5,0,0,-0.00548337 -10407,5613:487:3,-137,-68.5,0,0,-0.00548214 -10408,5613:486:4,-136.5,-68.5,0,0,-0.00548214 -10409,5613:486:3,-136,-68.5,0,0,-0.00549434 -10410,5613:485:4,-135.5,-68.5,0,0,-0.00550046 -10411,5613:485:3,-135,-68.5,0,0,-0.00550288 -10412,5613:384:4,-134.5,-68.5,0,0,-0.00550411 -10413,5613:384:3,-134,-68.5,0,0,-0.00551024 -10414,5613:383:4,-133.5,-68.5,0,0,-0.00553108 -10415,5613:383:3,-133,-68.5,0,0,-0.0055446 -10416,5613:382:4,-132.5,-68.5,0,0,-0.00554708 -10417,5613:382:3,-132,-68.5,0,0,-0.00553724 -10418,5613:381:4,-131.5,-68.5,0,0,-0.00558418 -10419,5613:381:3,-131,-68.5,0,0,-0.00563277 -10420,5613:380:4,-130.5,-68.5,0,0,-0.00562404 -10421,5613:380:3,-130,-68.5,0,0,-0.0056028 -10422,5612:489:4,-129.5,-68.5,0,0,-0.00558543 -10423,5612:489:3,-129,-68.5,0,0,-0.00556932 -10424,5612:488:4,-128.5,-68.5,0,0,-0.00556064 -10425,5612:488:3,-128,-68.5,0,0,-0.00556682 -10426,5612:487:4,-127.5,-68.5,0,0,-0.00558418 -10427,5612:487:3,-127,-68.5,0,0,-0.00558914 -10428,5612:486:4,-126.5,-68.5,0,0,-0.00557551 -10429,5612:486:3,-126,-68.5,0,0,-0.00555077 -10430,5612:485:4,-125.5,-68.5,0,0,-0.00552985 -10431,5612:485:3,-125,-68.5,0,0,-0.0055139 -10432,5612:384:4,-124.5,-68.5,0,0,-0.00548824 -10433,5612:384:3,-124,-68.5,0,0,-0.00548582 -10434,5612:383:4,-123.5,-68.5,0,0,-0.00548701 -10435,5612:383:3,-123,-68.5,0,0,-0.00548701 -10436,5612:382:4,-122.5,-68.5,0,0,-0.00548701 -10437,5612:382:3,-122,-68.5,0,0,-0.00548701 -10438,5612:381:4,-121.5,-68.5,0,0,-0.00548701 -10439,5612:381:3,-121,-68.5,0,0,-0.00548701 -10440,5612:380:4,-120.5,-68.5,0,0,-0.00548582 -10441,5612:380:3,-120,-68.5,0,0,-0.00548337 -10442,5611:489:4,-119.5,-68.5,0,0,-0.00548214 -10443,5611:489:3,-119,-68.5,0,0,-0.00548337 -10444,5611:488:4,-118.5,-68.5,0,0,-0.00548337 -10445,5611:488:3,-118,-68.5,0,0,-0.00548214 -10446,5611:487:4,-117.5,-68.5,0,0,-0.00548091 -10447,5611:487:3,-117,-68.5,0,0,-0.00548091 -10448,5611:486:4,-116.5,-68.5,0,0,-0.00547972 -10449,5611:486:3,-116,-68.5,0,0,-0.00547972 -10450,5611:485:4,-115.5,-68.5,0,0,-0.00547972 -10451,5611:485:3,-115,-68.5,0,0,-0.00547972 -10452,5611:384:4,-114.5,-68.5,0,0,-0.00547972 -10453,5611:384:3,-114,-68.5,0,0,-0.0054785 -10454,5611:383:4,-113.5,-68.5,0,0,-0.00547972 -10455,5611:383:3,-113,-68.5,0,0,-0.00547972 -10456,5611:382:4,-112.5,-68.5,0,0,-0.00547972 -10457,5611:382:3,-112,-68.5,0,0,-0.00548091 -10458,5611:381:4,-111.5,-68.5,0,0,-0.00548091 -10459,5611:381:3,-111,-68.5,0,0,-0.00548091 -10460,5611:380:4,-110.5,-68.5,0,0,-0.00547972 -10461,5611:380:3,-110,-68.5,0,0,-0.00547972 -10462,5610:489:4,-109.5,-68.5,0,0,-0.00547972 -10463,5610:489:3,-109,-68.5,0,0,-0.00547972 -10464,5610:488:4,-108.5,-68.5,0,0,-0.00548091 -10465,5610:488:3,-108,-68.5,0,0,-0.00548091 -10466,5610:487:4,-107.5,-68.5,0,0,-0.00547972 -10467,5610:487:3,-107,-68.5,0,0,-0.00547972 -10468,5610:486:4,-106.5,-68.5,0,0,-0.00547972 -10469,5610:486:3,-106,-68.5,0,0,-0.00547972 -10470,5610:485:4,-105.5,-68.5,0,0,-0.00548091 -10471,5610:485:3,-105,-68.5,0,0,-0.00548214 -10472,5610:384:4,-104.5,-68.5,0,0,-0.00548337 -10473,5610:384:3,-104,-68.5,0,0,-0.00548337 -10474,5610:383:4,-103.5,-68.5,0,0,-0.00548337 -10475,5610:383:3,-103,-68.5,0,0,-0.00548214 -10476,5610:382:4,-102.5,-68.5,0,0,-0.00548091 -10477,5610:382:3,-102,-68.5,0,0,-0.00548091 -10478,5610:381:4,-101.5,-68.5,0,0,-0.00548091 -10479,5610:381:3,-101,-68.5,0,0,-0.00548091 -10480,5610:380:4,-100.5,-68.5,0,0,-0.00548091 -10481,5610:380:3,-100,-68.5,0,0,-0.00548091 -10482,5609:489:4,-99.5,-68.5,0,0,-0.00548091 -10483,5609:489:3,-99,-68.5,0,0,-0.00548214 -10484,5609:488:4,-98.5,-68.5,0,0,-0.00548337 -10485,5609:488:3,-98,-68.5,0,0,-0.00548459 -10486,5609:487:4,-97.5,-68.5,0,0,-0.00548701 -10487,5609:487:3,-97,-68.5,0,0,-0.00548824 -10488,5609:486:4,-96.5,-68.5,0,0,-0.00548824 -10489,5609:486:3,-96,-68.5,0,0,-0.00548947 -10490,5609:485:4,-95.5,-68.5,0,0,-0.00548947 -10491,5609:485:3,-95,-68.5,0,0,-0.00548824 -10492,5609:384:4,-94.5,-68.5,0,0,-0.00548582 -10493,5609:384:3,-94,-68.5,0,0,-0.00548214 -10494,5609:383:4,-93.5,-68.5,0,0,-0.00547486 -10495,5609:383:3,-93,-68.5,0,0,-0.00547 -10496,5609:382:4,-92.5,-68.5,0,0,-0.00546755 -10497,5609:382:3,-92,-68.5,0,0,-0.00546633 -10498,5609:381:4,-91.5,-68.5,0,0,-0.00546633 -10499,5609:381:3,-91,-68.5,0,0,-0.00546755 -10500,5609:380:4,-90.5,-68.5,0,0,-0.00546755 -10501,5609:380:3,-90,-68.5,0,0,-0.00546755 -10502,5608:489:4,-89.5,-68.5,0,0,-0.00546755 -10503,5608:489:3,-89,-68.5,0,0,-0.00546633 -10504,5608:488:4,-88.5,-68.5,0,0,-0.00546633 -10505,5608:488:3,-88,-68.5,0,0,-0.00546511 -10506,5608:487:4,-87.5,-68.5,0,0,-0.00546392 -10507,5608:487:3,-87,-68.5,0,0,-0.0054627 -10508,5608:486:4,-86.5,-68.5,0,0,-0.0054627 -10509,5608:486:3,-86,-68.5,0,0,-0.00546148 -10510,5608:485:4,-85.5,-68.5,0,0,-0.00546148 -10511,5608:485:3,-85,-68.5,0,0,-0.00546026 -10512,5608:384:4,-84.5,-68.5,0,0,-0.00545907 -10513,5608:384:3,-84,-68.5,0,0,-0.00545785 -10514,5608:383:4,-83.5,-68.5,0,0,-0.00545663 -10515,5608:383:3,-83,-68.5,0,0,-0.00545663 -10516,5608:382:4,-82.5,-68.5,0,0,-0.00545785 -10517,5608:382:3,-82,-68.5,0,0,-0.00545907 -10518,5608:381:4,-81.5,-68.5,0,0,-0.00546148 -10519,5608:381:3,-81,-68.5,0,0,-0.00546633 -10520,5608:380:4,-80.5,-68.5,0,0,-0.00547119 -10521,5608:380:3,-80,-68.5,0,0,-0.00547364 -10522,5607:489:4,-79.5,-68.5,0,0,-0.00549923 -10523,5607:489:3,-79,-68.5,0,0,-0.00567548 -10524,5607:488:4,-78.5,-68.5,0,0,-0.00579142 -10525,5607:488:3,-78,-68.5,0,0,-0.00595719 -10526,5607:487:4,-77.5,-68.5,0,0,-0.00613596 -10527,5607:487:3,-77,-68.5,0,0,-0.00623356 -10528,5607:486:4,-76.5,-68.5,0,0,-0.00618662 -10529,5607:486:3,-76,-68.5,0,0,-0.00620865 -10530,5607:485:4,-75.5,-68.5,0,0,-0.0062711 -10531,5607:485:3,-75,-68.5,0,0,-0.00627527 -10532,5607:384:4,-74.5,-68.5,0,0,-0.00630044 -10533,5606:380:4,-60.5,-68.5,0,0,-0.00552741 -10534,5606:380:3,-60,-68.5,0,0,-0.00551756 -10535,5605:489:4,-59.5,-68.5,0,0,-0.00548947 -10536,5605:489:3,-59,-68.5,0,0,-0.00547605 -10537,5605:488:4,-58.5,-68.5,0,0,-0.00547119 -10538,5605:488:3,-58,-68.5,0,0,-0.00546755 -10539,5605:487:4,-57.5,-68.5,0,0,-0.00546878 -10540,5605:487:3,-57,-68.5,0,0,-0.00547 -10541,5605:486:4,-56.5,-68.5,0,0,-0.00547 -10542,5605:486:3,-56,-68.5,0,0,-0.00547 -10543,5605:485:4,-55.5,-68.5,0,0,-0.00547 -10544,5605:485:3,-55,-68.5,0,0,-0.00547 -10545,5605:384:4,-54.5,-68.5,0,0,-0.00547 -10546,5605:384:3,-54,-68.5,0,0,-0.00547 -10547,5605:383:4,-53.5,-68.5,0,0,-0.00547 -10548,5605:383:3,-53,-68.5,0,0,-0.00546878 -10549,5605:382:4,-52.5,-68.5,0,0,-0.00546878 -10550,5605:382:3,-52,-68.5,0,0,-0.00546755 -10551,5605:381:4,-51.5,-68.5,0,0,-0.00546755 -10552,5605:381:3,-51,-68.5,0,0,-0.00546755 -10553,5605:380:4,-50.5,-68.5,0,0,-0.00546755 -10554,5605:380:3,-50,-68.5,0,0,-0.00546633 -10555,5604:489:4,-49.5,-68.5,0,0,-0.00546633 -10556,5604:489:3,-49,-68.5,0,0,-0.00546633 -10557,5604:488:4,-48.5,-68.5,0,0,-0.00546511 -10558,5604:488:3,-48,-68.5,0,0,-0.00546511 -10559,5604:487:4,-47.5,-68.5,0,0,-0.00546511 -10560,5604:487:3,-47,-68.5,0,0,-0.00546392 -10561,5604:486:4,-46.5,-68.5,0,0,-0.0054627 -10562,5604:486:3,-46,-68.5,0,0,-0.00546148 -10563,5604:485:4,-45.5,-68.5,0,0,-0.00546026 -10564,5604:485:3,-45,-68.5,0,0,-0.00545907 -10565,5604:384:4,-44.5,-68.5,0,0,-0.00545907 -10566,5604:384:3,-44,-68.5,0,0,-0.00545785 -10567,5604:383:4,-43.5,-68.5,0,0,-0.00545785 -10568,5604:383:3,-43,-68.5,0,0,-0.00545663 -10569,5604:382:4,-42.5,-68.5,0,0,-0.00545663 -10570,5604:382:3,-42,-68.5,0,0,-0.00545663 -10571,5604:381:4,-41.5,-68.5,0,0,-0.00545663 -10572,5604:381:3,-41,-68.5,0,0,-0.00545663 -10573,5604:380:4,-40.5,-68.5,0,0,-0.00545541 -10574,5604:380:3,-40,-68.5,0,0,-0.00545541 -10575,5603:489:4,-39.5,-68.5,0,0,-0.00545541 -10576,5603:489:3,-39,-68.5,0,0,-0.00545541 -10577,5603:488:4,-38.5,-68.5,0,0,-0.00545541 -10578,5603:488:3,-38,-68.5,0,0,-0.00545541 -10579,5603:487:4,-37.5,-68.5,0,0,-0.00545541 -10580,5603:487:3,-37,-68.5,0,0,-0.00545663 -10581,5603:486:4,-36.5,-68.5,0,0,-0.00545785 -10582,5603:486:3,-36,-68.5,0,0,-0.00545785 -10583,5603:485:4,-35.5,-68.5,0,0,-0.00545785 -10584,5603:485:3,-35,-68.5,0,0,-0.00545907 -10585,5603:384:4,-34.5,-68.5,0,0,-0.00545907 -10586,5603:384:3,-34,-68.5,0,0,-0.00545907 -10587,5603:383:4,-33.5,-68.5,0,0,-0.00545907 -10588,5603:383:3,-33,-68.5,0,0,-0.00545907 -10589,5603:382:4,-32.5,-68.5,0,0,-0.00546026 -10590,5603:382:3,-32,-68.5,0,0,-0.00546026 -10591,5603:381:4,-31.5,-68.5,0,0,-0.00546026 -10592,5603:381:3,-31,-68.5,0,0,-0.00545785 -10593,5603:380:4,-30.5,-68.5,0,0,-0.00545785 -10594,5603:380:3,-30,-68.5,0,0,-0.00545907 -10595,5602:489:4,-29.5,-68.5,0,0,-0.00545907 -10596,5602:489:3,-29,-68.5,0,0,-0.00545907 -10597,5602:488:4,-28.5,-68.5,0,0,-0.00545907 -10598,5602:488:3,-28,-68.5,0,0,-0.00545907 -10599,5602:487:4,-27.5,-68.5,0,0,-0.00545785 -10600,5602:487:3,-27,-68.5,0,0,-0.00545785 -10601,5602:486:4,-26.5,-68.5,0,0,-0.00545785 -10602,5602:486:3,-26,-68.5,0,0,-0.00545785 -10603,5602:485:4,-25.5,-68.5,0,0,-0.00545663 -10604,5602:485:3,-25,-68.5,0,0,-0.00545663 -10605,5602:384:4,-24.5,-68.5,0,0,-0.00545663 -10606,5602:384:3,-24,-68.5,0,0,-0.00545663 -10607,5602:383:4,-23.5,-68.5,0,0,-0.00545541 -10608,5602:383:3,-23,-68.5,0,0,-0.00545541 -10609,5602:382:4,-22.5,-68.5,0,0,-0.00545423 -10610,5602:382:3,-22,-68.5,0,0,-0.00545423 -10611,5602:381:4,-21.5,-68.5,0,0,-0.00545423 -10612,5602:381:3,-21,-68.5,0,0,-0.00545423 -10613,5602:380:4,-20.5,-68.5,0,0,-0.00545423 -10614,5602:380:3,-20,-68.5,0,0,-0.00545541 -10615,5601:489:4,-19.5,-68.5,0,0,-0.00545541 -10616,5601:489:3,-19,-68.5,0,0,-0.00545663 -10617,5601:488:4,-18.5,-68.5,0,0,-0.00545663 -10618,5601:488:3,-18,-68.5,0,0,-0.00545663 -10619,5601:487:4,-17.5,-68.5,0,0,-0.00545663 -10620,5601:487:3,-17,-68.5,0,0,-0.00545785 -10621,5601:486:4,-16.5,-68.5,0,0,-0.00545907 -10622,5601:486:3,-16,-68.5,0,0,-0.00546026 -10623,5601:485:4,-15.5,-68.5,0,0,-0.00546026 -10624,5601:485:3,-15,-68.5,0,0,-0.00546026 -10625,5601:384:4,-14.5,-68.5,0,0,-0.00546148 -10626,5601:384:3,-14,-68.5,0,0,-0.0054627 -10627,5601:383:4,-13.5,-68.5,0,0,-0.00546392 -10628,5601:383:3,-13,-68.5,0,0,-0.00546633 -10629,5601:382:4,-12.5,-68.5,0,0,-0.00546878 -10630,5601:382:3,-12,-68.5,0,0,-0.00547364 -10631,5601:381:4,-11.5,-68.5,0,0,-0.00549069 -10632,5601:381:3,-11,-68.5,0,0,-0.00553108 -10633,5601:380:4,-10.5,-68.5,0,0,-0.00566668 -10634,5601:380:3,-10,-68.5,0,0,-0.00582498 -10635,5600:488:3,-8,-68.5,0,0,-0.00648954 -10636,3616:383:4,163.5,-68.5,0,0,-0.00662662 -10637,3616:486:3,166,-68.5,0,0,-0.00552861 -10638,3616:486:4,166.5,-68.5,0,0,-0.00547 -10639,3616:487:3,167,-68.5,0,0,-0.00545785 -10640,3616:487:4,167.5,-68.5,0,0,-0.00547 -10641,3616:488:3,168,-68.5,0,0,-0.00547727 -10642,3616:488:4,168.5,-68.5,0,0,-0.00547605 -10643,3616:489:3,169,-68.5,0,0,-0.00546633 -10644,3616:489:4,169.5,-68.5,0,0,-0.00546148 -10645,3617:380:3,170,-68.5,0,0,-0.00546148 -10646,3617:380:4,170.5,-68.5,0,0,-0.00546392 -10647,3617:381:3,171,-68.5,0,0,-0.00546511 -10648,3617:381:4,171.5,-68.5,0,0,-0.00546511 -10649,3617:382:3,172,-68.5,0,0,-0.00546511 -10650,3617:382:4,172.5,-68.5,0,0,-0.00546392 -10651,3617:383:3,173,-68.5,0,0,-0.00546392 -10652,3617:383:4,173.5,-68.5,0,0,-0.0054627 -10653,3617:384:3,174,-68.5,0,0,-0.0054627 -10654,3617:384:4,174.5,-68.5,0,0,-0.00546148 -10655,3617:485:3,175,-68.5,0,0,-0.00545907 -10656,3617:485:4,175.5,-68.5,0,0,-0.00545785 -10657,3617:486:3,176,-68.5,0,0,-0.00545663 -10658,3617:486:4,176.5,-68.5,0,0,-0.00545663 -10659,3617:487:3,177,-68.5,0,0,-0.00545907 -10660,3617:487:4,177.5,-68.5,0,0,-0.00545907 -10661,3617:488:3,178,-68.5,0,0,-0.00546148 -10662,3617:488:4,178.5,-68.5,0,0,-0.00546633 -10663,3617:489:3,179,-68.5,0,0,-0.00547 -10664,3617:489:4,179.5,-68.5,0,0,-0.00547119 -10665,3618:380:3,180,-68.5,0,0,-0.00547241 -10666,5618:380:1,-180,-68,0,0,-0.00547727 -10667,5617:489:2,-179.5,-68,0,0,-0.0054785 -10668,5617:489:1,-179,-68,0,0,-0.00547972 -10669,5617:488:2,-178.5,-68,0,0,-0.0054785 -10670,5617:488:1,-178,-68,0,0,-0.00547972 -10671,5617:487:2,-177.5,-68,0,0,-0.00547972 -10672,5617:487:1,-177,-68,0,0,-0.00547972 -10673,5617:486:2,-176.5,-68,0,0,-0.00547972 -10674,5617:486:1,-176,-68,0,0,-0.00547972 -10675,5617:485:2,-175.5,-68,0,0,-0.0054785 -10676,5617:485:1,-175,-68,0,0,-0.00547727 -10677,5617:384:2,-174.5,-68,0,0,-0.00547605 -10678,5617:384:1,-174,-68,0,0,-0.00547486 -10679,5617:383:2,-173.5,-68,0,0,-0.00547241 -10680,5617:383:1,-173,-68,0,0,-0.00547119 -10681,5617:382:2,-172.5,-68,0,0,-0.00547 -10682,5617:382:1,-172,-68,0,0,-0.00546755 -10683,5617:381:2,-171.5,-68,0,0,-0.00546633 -10684,5617:381:1,-171,-68,0,0,-0.00546633 -10685,5617:380:2,-170.5,-68,0,0,-0.00546511 -10686,5617:380:1,-170,-68,0,0,-0.00546392 -10687,5616:489:2,-169.5,-68,0,0,-0.0054627 -10688,5616:489:1,-169,-68,0,0,-0.0054627 -10689,5616:488:2,-168.5,-68,0,0,-0.00546148 -10690,5616:488:1,-168,-68,0,0,-0.00546026 -10691,5616:487:2,-167.5,-68,0,0,-0.00546026 -10692,5616:487:1,-167,-68,0,0,-0.00546026 -10693,5616:486:2,-166.5,-68,0,0,-0.00545785 -10694,5616:486:1,-166,-68,0,0,-0.00545541 -10695,5616:485:2,-165.5,-68,0,0,-0.00545423 -10696,5616:485:1,-165,-68,0,0,-0.005453 -10697,5616:384:2,-164.5,-68,0,0,-0.005453 -10698,5616:384:1,-164,-68,0,0,-0.00545423 -10699,5616:383:2,-163.5,-68,0,0,-0.00545423 -10700,5616:383:1,-163,-68,0,0,-0.00545423 -10701,5616:382:2,-162.5,-68,0,0,-0.005453 -10702,5616:382:1,-162,-68,0,0,-0.00545423 -10703,5616:381:2,-161.5,-68,0,0,-0.00545423 -10704,5616:381:1,-161,-68,0,0,-0.00545541 -10705,5616:380:2,-160.5,-68,0,0,-0.00545785 -10706,5616:380:1,-160,-68,0,0,-0.00546026 -10707,5615:489:2,-159.5,-68,0,0,-0.00546392 -10708,5615:489:1,-159,-68,0,0,-0.00546633 -10709,5615:488:2,-158.5,-68,0,0,-0.00546878 -10710,5615:488:1,-158,-68,0,0,-0.00547 -10711,5615:487:2,-157.5,-68,0,0,-0.00547119 -10712,5615:487:1,-157,-68,0,0,-0.00547364 -10713,5615:486:2,-156.5,-68,0,0,-0.00547605 -10714,5615:486:1,-156,-68,0,0,-0.0054785 -10715,5615:485:2,-155.5,-68,0,0,-0.00547972 -10716,5615:485:1,-155,-68,0,0,-0.00548091 -10717,5615:384:2,-154.5,-68,0,0,-0.00548214 -10718,5615:384:1,-154,-68,0,0,-0.00548214 -10719,5615:383:2,-153.5,-68,0,0,-0.00548337 -10720,5615:383:1,-153,-68,0,0,-0.00548337 -10721,5615:382:2,-152.5,-68,0,0,-0.00548337 -10722,5615:382:1,-152,-68,0,0,-0.00548459 -10723,5615:381:2,-151.5,-68,0,0,-0.00548582 -10724,5615:381:1,-151,-68,0,0,-0.00548701 -10725,5615:380:2,-150.5,-68,0,0,-0.00548701 -10726,5615:380:1,-150,-68,0,0,-0.00548824 -10727,5614:489:2,-149.5,-68,0,0,-0.00548824 -10728,5614:489:1,-149,-68,0,0,-0.00548947 -10729,5614:488:2,-148.5,-68,0,0,-0.00548947 -10730,5614:488:1,-148,-68,0,0,-0.00549069 -10731,5614:487:2,-147.5,-68,0,0,-0.00549069 -10732,5614:487:1,-147,-68,0,0,-0.00549189 -10733,5614:486:2,-146.5,-68,0,0,-0.00549189 -10734,5614:486:1,-146,-68,0,0,-0.00549189 -10735,5614:485:2,-145.5,-68,0,0,-0.00549189 -10736,5614:485:1,-145,-68,0,0,-0.00549189 -10737,5614:384:2,-144.5,-68,0,0,-0.00549189 -10738,5614:384:1,-144,-68,0,0,-0.00549189 -10739,5614:383:2,-143.5,-68,0,0,-0.00549312 -10740,5614:383:1,-143,-68,0,0,-0.00549434 -10741,5614:382:2,-142.5,-68,0,0,-0.00549434 -10742,5614:382:1,-142,-68,0,0,-0.00549312 -10743,5614:381:2,-141.5,-68,0,0,-0.00549189 -10744,5614:381:1,-141,-68,0,0,-0.00549189 -10745,5614:380:2,-140.5,-68,0,0,-0.00549189 -10746,5614:380:1,-140,-68,0,0,-0.00549189 -10747,5613:489:2,-139.5,-68,0,0,-0.00549069 -10748,5613:489:1,-139,-68,0,0,-0.00548947 -10749,5613:488:2,-138.5,-68,0,0,-0.00548824 -10750,5613:488:1,-138,-68,0,0,-0.00548701 -10751,5613:487:2,-137.5,-68,0,0,-0.00548582 -10752,5613:487:1,-137,-68,0,0,-0.00548459 -10753,5613:486:2,-136.5,-68,0,0,-0.00548337 -10754,5613:486:1,-136,-68,0,0,-0.00548214 -10755,5613:485:2,-135.5,-68,0,0,-0.00548091 -10756,5613:485:1,-135,-68,0,0,-0.00548582 -10757,5613:384:2,-134.5,-68,0,0,-0.00549312 -10758,5613:384:1,-134,-68,0,0,-0.00550534 -10759,5613:383:2,-133.5,-68,0,0,-0.0055188 -10760,5613:383:1,-133,-68,0,0,-0.00552861 -10761,5613:382:2,-132.5,-68,0,0,-0.00554092 -10762,5613:382:1,-132,-68,0,0,-0.0055545 -10763,5613:381:2,-131.5,-68,0,0,-0.00559285 -10764,5613:381:1,-131,-68,0,0,-0.00566791 -10765,5613:380:2,-130.5,-68,0,0,-0.00563778 -10766,5613:380:1,-130,-68,0,0,-0.005619 -10767,5612:489:2,-129.5,-68,0,0,-0.00560405 -10768,5612:489:1,-129,-68,0,0,-0.00559782 -10769,5612:488:2,-128.5,-68,0,0,-0.00559908 -10770,5612:488:1,-128,-68,0,0,-0.00560903 -10771,5612:487:2,-127.5,-68,0,0,-0.00562026 -10772,5612:487:1,-127,-68,0,0,-0.00561778 -10773,5612:486:2,-126.5,-68,0,0,-0.00560033 -10774,5612:486:1,-126,-68,0,0,-0.00558047 -10775,5612:485:2,-125.5,-68,0,0,-0.00555325 -10776,5612:485:1,-125,-68,0,0,-0.00553968 -10777,5612:384:2,-124.5,-68,0,0,-0.00552741 -10778,5612:384:1,-124,-68,0,0,-0.00551513 -10779,5612:383:2,-123.5,-68,0,0,-0.005498 -10780,5612:383:1,-123,-68,0,0,-0.00548459 -10781,5612:382:2,-122.5,-68,0,0,-0.00548459 -10782,5612:382:1,-122,-68,0,0,-0.00548582 -10783,5612:381:2,-121.5,-68,0,0,-0.00548582 -10784,5612:381:1,-121,-68,0,0,-0.00548337 -10785,5612:380:2,-120.5,-68,0,0,-0.00548337 -10786,5612:380:1,-120,-68,0,0,-0.00548214 -10787,5611:489:2,-119.5,-68,0,0,-0.00548091 -10788,5611:489:1,-119,-68,0,0,-0.00548091 -10789,5611:488:2,-118.5,-68,0,0,-0.00548091 -10790,5611:488:1,-118,-68,0,0,-0.00547972 -10791,5611:487:2,-117.5,-68,0,0,-0.0054785 -10792,5611:487:1,-117,-68,0,0,-0.0054785 -10793,5611:486:2,-116.5,-68,0,0,-0.00547727 -10794,5611:486:1,-116,-68,0,0,-0.00548337 -10795,5611:485:2,-115.5,-68,0,0,-0.00548337 -10796,5611:485:1,-115,-68,0,0,-0.00547727 -10797,5611:384:2,-114.5,-68,0,0,-0.00547727 -10798,5611:384:1,-114,-68,0,0,-0.00547727 -10799,5611:383:2,-113.5,-68,0,0,-0.0054785 -10800,5611:383:1,-113,-68,0,0,-0.00547972 -10801,5611:382:2,-112.5,-68,0,0,-0.00547972 -10802,5611:382:1,-112,-68,0,0,-0.00547972 -10803,5611:381:2,-111.5,-68,0,0,-0.00547972 -10804,5611:381:1,-111,-68,0,0,-0.00547972 -10805,5611:380:2,-110.5,-68,0,0,-0.00547972 -10806,5611:380:1,-110,-68,0,0,-0.00547972 -10807,5610:489:2,-109.5,-68,0,0,-0.00547972 -10808,5610:489:1,-109,-68,0,0,-0.00547972 -10809,5610:488:2,-108.5,-68,0,0,-0.00547972 -10810,5610:488:1,-108,-68,0,0,-0.00547972 -10811,5610:487:2,-107.5,-68,0,0,-0.0054785 -10812,5610:487:1,-107,-68,0,0,-0.0054785 -10813,5610:486:2,-106.5,-68,0,0,-0.0054785 -10814,5610:486:1,-106,-68,0,0,-0.0054785 -10815,5610:485:2,-105.5,-68,0,0,-0.0054785 -10816,5610:485:1,-105,-68,0,0,-0.0054785 -10817,5610:384:2,-104.5,-68,0,0,-0.00547972 -10818,5610:384:1,-104,-68,0,0,-0.00548091 -10819,5610:383:2,-103.5,-68,0,0,-0.00548091 -10820,5610:383:1,-103,-68,0,0,-0.00548091 -10821,5610:382:2,-102.5,-68,0,0,-0.00548091 -10822,5610:382:1,-102,-68,0,0,-0.00548091 -10823,5610:381:2,-101.5,-68,0,0,-0.00547972 -10824,5610:381:1,-101,-68,0,0,-0.00547972 -10825,5610:380:2,-100.5,-68,0,0,-0.00547972 -10826,5610:380:1,-100,-68,0,0,-0.00547972 -10827,5609:489:2,-99.5,-68,0,0,-0.00548091 -10828,5609:489:1,-99,-68,0,0,-0.00548214 -10829,5609:488:2,-98.5,-68,0,0,-0.00548337 -10830,5609:488:1,-98,-68,0,0,-0.00548337 -10831,5609:487:2,-97.5,-68,0,0,-0.00548459 -10832,5609:487:1,-97,-68,0,0,-0.00548337 -10833,5609:486:2,-96.5,-68,0,0,-0.00548214 -10834,5609:486:1,-96,-68,0,0,-0.00548091 -10835,5609:485:2,-95.5,-68,0,0,-0.00548091 -10836,5609:485:1,-95,-68,0,0,-0.0054785 -10837,5609:384:2,-94.5,-68,0,0,-0.00547605 -10838,5609:384:1,-94,-68,0,0,-0.00547119 -10839,5609:383:2,-93.5,-68,0,0,-0.00546755 -10840,5609:383:1,-93,-68,0,0,-0.00546511 -10841,5609:382:2,-92.5,-68,0,0,-0.00546392 -10842,5609:382:1,-92,-68,0,0,-0.0054627 -10843,5609:381:2,-91.5,-68,0,0,-0.00546148 -10844,5609:381:1,-91,-68,0,0,-0.0054627 -10845,5609:380:2,-90.5,-68,0,0,-0.00546392 -10846,5609:380:1,-90,-68,0,0,-0.00546511 -10847,5608:489:2,-89.5,-68,0,0,-0.00546633 -10848,5608:489:1,-89,-68,0,0,-0.00546633 -10849,5608:488:2,-88.5,-68,0,0,-0.00546633 -10850,5608:488:1,-88,-68,0,0,-0.00546633 -10851,5608:487:2,-87.5,-68,0,0,-0.00546633 -10852,5608:487:1,-87,-68,0,0,-0.00546511 -10853,5608:486:2,-86.5,-68,0,0,-0.00546511 -10854,5608:486:1,-86,-68,0,0,-0.00546392 -10855,5608:485:2,-85.5,-68,0,0,-0.00546392 -10856,5608:485:1,-85,-68,0,0,-0.00546392 -10857,5608:384:2,-84.5,-68,0,0,-0.00546392 -10858,5608:384:1,-84,-68,0,0,-0.00546148 -10859,5608:383:2,-83.5,-68,0,0,-0.00546026 -10860,5608:383:1,-83,-68,0,0,-0.00546026 -10861,5608:382:2,-82.5,-68,0,0,-0.00546148 -10862,5608:382:1,-82,-68,0,0,-0.0054627 -10863,5608:381:2,-81.5,-68,0,0,-0.0054627 -10864,5608:381:1,-81,-68,0,0,-0.00546511 -10865,5608:380:2,-80.5,-68,0,0,-0.00547 -10866,5608:380:1,-80,-68,0,0,-0.00547364 -10867,5607:489:2,-79.5,-68,0,0,-0.00547486 -10868,5607:489:1,-79,-68,0,0,-0.00556064 -10869,5607:488:2,-78.5,-68,0,0,-0.00569318 -10870,5607:488:1,-78,-68,0,0,-0.00580302 -10871,5607:487:2,-77.5,-68,0,0,-0.00600775 -10872,5607:487:1,-77,-68,0,0,-0.00624465 -10873,5607:486:2,-76.5,-68,0,0,-0.00638081 -10874,5607:486:1,-76,-68,0,0,-0.00648092 -10875,5607:485:2,-75.5,-68,0,0,-0.00656939 -10876,5607:485:1,-75,-68,0,0,-0.00645357 -10877,5606:380:2,-60.5,-68,0,0,-0.00552127 -10878,5606:380:1,-60,-68,0,0,-0.00549923 -10879,5605:489:2,-59.5,-68,0,0,-0.00547486 -10880,5605:489:1,-59,-68,0,0,-0.00546755 -10881,5605:488:2,-58.5,-68,0,0,-0.00546755 -10882,5605:488:1,-58,-68,0,0,-0.00546755 -10883,5605:487:2,-57.5,-68,0,0,-0.00546878 -10884,5605:487:1,-57,-68,0,0,-0.00547 -10885,5605:486:2,-56.5,-68,0,0,-0.00547 -10886,5605:486:1,-56,-68,0,0,-0.00546878 -10887,5605:485:2,-55.5,-68,0,0,-0.00546878 -10888,5605:485:1,-55,-68,0,0,-0.00547 -10889,5605:384:2,-54.5,-68,0,0,-0.00547 -10890,5605:384:1,-54,-68,0,0,-0.00547 -10891,5605:383:2,-53.5,-68,0,0,-0.00546878 -10892,5605:383:1,-53,-68,0,0,-0.00546878 -10893,5605:382:2,-52.5,-68,0,0,-0.00546755 -10894,5605:382:1,-52,-68,0,0,-0.00546755 -10895,5605:381:2,-51.5,-68,0,0,-0.00546633 -10896,5605:381:1,-51,-68,0,0,-0.00546633 -10897,5605:380:2,-50.5,-68,0,0,-0.00546633 -10898,5605:380:1,-50,-68,0,0,-0.00546633 -10899,5604:489:2,-49.5,-68,0,0,-0.00546511 -10900,5604:489:1,-49,-68,0,0,-0.00546511 -10901,5604:488:2,-48.5,-68,0,0,-0.00546392 -10902,5604:488:1,-48,-68,0,0,-0.0054627 -10903,5604:487:2,-47.5,-68,0,0,-0.0054627 -10904,5604:487:1,-47,-68,0,0,-0.00546026 -10905,5604:486:2,-46.5,-68,0,0,-0.00546026 -10906,5604:486:1,-46,-68,0,0,-0.00545907 -10907,5604:485:2,-45.5,-68,0,0,-0.00545785 -10908,5604:485:1,-45,-68,0,0,-0.00545785 -10909,5604:384:2,-44.5,-68,0,0,-0.00545663 -10910,5604:384:1,-44,-68,0,0,-0.00545663 -10911,5604:383:2,-43.5,-68,0,0,-0.00545663 -10912,5604:383:1,-43,-68,0,0,-0.00545541 -10913,5604:382:2,-42.5,-68,0,0,-0.00545541 -10914,5604:382:1,-42,-68,0,0,-0.00545663 -10915,5604:381:2,-41.5,-68,0,0,-0.00545541 -10916,5604:381:1,-41,-68,0,0,-0.00545541 -10917,5604:380:2,-40.5,-68,0,0,-0.00545541 -10918,5604:380:1,-40,-68,0,0,-0.00545541 -10919,5603:489:2,-39.5,-68,0,0,-0.00545541 -10920,5603:489:1,-39,-68,0,0,-0.00545541 -10921,5603:488:2,-38.5,-68,0,0,-0.00545541 -10922,5603:488:1,-38,-68,0,0,-0.00545541 -10923,5603:487:2,-37.5,-68,0,0,-0.00545541 -10924,5603:487:1,-37,-68,0,0,-0.00545663 -10925,5603:486:2,-36.5,-68,0,0,-0.00545663 -10926,5603:486:1,-36,-68,0,0,-0.00545663 -10927,5603:485:2,-35.5,-68,0,0,-0.00545785 -10928,5603:485:1,-35,-68,0,0,-0.00545785 -10929,5603:384:2,-34.5,-68,0,0,-0.00545785 -10930,5603:384:1,-34,-68,0,0,-0.00545785 -10931,5603:383:2,-33.5,-68,0,0,-0.00545785 -10932,5603:383:1,-33,-68,0,0,-0.00545785 -10933,5603:382:2,-32.5,-68,0,0,-0.00545907 -10934,5603:382:1,-32,-68,0,0,-0.00545785 -10935,5603:381:2,-31.5,-68,0,0,-0.00545785 -10936,5603:381:1,-31,-68,0,0,-0.00545785 -10937,5603:380:2,-30.5,-68,0,0,-0.00545663 -10938,5603:380:1,-30,-68,0,0,-0.00545663 -10939,5602:489:2,-29.5,-68,0,0,-0.00545785 -10940,5602:489:1,-29,-68,0,0,-0.00545785 -10941,5602:488:2,-28.5,-68,0,0,-0.00545785 -10942,5602:488:1,-28,-68,0,0,-0.00545785 -10943,5602:487:2,-27.5,-68,0,0,-0.00545785 -10944,5602:487:1,-27,-68,0,0,-0.00545663 -10945,5602:486:2,-26.5,-68,0,0,-0.00545663 -10946,5602:486:1,-26,-68,0,0,-0.00545663 -10947,5602:485:2,-25.5,-68,0,0,-0.00545541 -10948,5602:485:1,-25,-68,0,0,-0.00545541 -10949,5602:384:2,-24.5,-68,0,0,-0.00545541 -10950,5602:384:1,-24,-68,0,0,-0.00545423 -10951,5602:383:2,-23.5,-68,0,0,-0.00545423 -10952,5602:383:1,-23,-68,0,0,-0.00545423 -10953,5602:382:2,-22.5,-68,0,0,-0.00545423 -10954,5602:382:1,-22,-68,0,0,-0.00545423 -10955,5602:381:2,-21.5,-68,0,0,-0.00545423 -10956,5602:381:1,-21,-68,0,0,-0.00545423 -10957,5602:380:2,-20.5,-68,0,0,-0.00545423 -10958,5602:380:1,-20,-68,0,0,-0.00545423 -10959,5601:489:2,-19.5,-68,0,0,-0.005453 -10960,5601:489:1,-19,-68,0,0,-0.00545423 -10961,5601:488:2,-18.5,-68,0,0,-0.00545423 -10962,5601:488:1,-18,-68,0,0,-0.00545541 -10963,5601:487:2,-17.5,-68,0,0,-0.00545423 -10964,5601:487:1,-17,-68,0,0,-0.00545541 -10965,5601:486:2,-16.5,-68,0,0,-0.00545541 -10966,5601:486:1,-16,-68,0,0,-0.00545541 -10967,5601:485:2,-15.5,-68,0,0,-0.00545663 -10968,5601:485:1,-15,-68,0,0,-0.00545907 -10969,5601:384:2,-14.5,-68,0,0,-0.00545907 -10970,5601:384:1,-14,-68,0,0,-0.00546026 -10971,5601:383:2,-13.5,-68,0,0,-0.00546026 -10972,5601:383:1,-13,-68,0,0,-0.00546148 -10973,5601:382:2,-12.5,-68,0,0,-0.0054627 -10974,5601:382:1,-12,-68,0,0,-0.00546511 -10975,5601:381:2,-11.5,-68,0,0,-0.00546755 -10976,5601:381:1,-11,-68,0,0,-0.00547364 -10977,5601:380:2,-10.5,-68,0,0,-0.00549434 -10978,5601:380:1,-10,-68,0,0,-0.00556932 -10979,5600:489:2,-9.5,-68,0,0,-0.00588223 -10980,5600:489:1,-9,-68,0,0,-0.00608568 -10981,5600:488:2,-8.5,-68,0,0,-0.00617702 -10982,5600:488:1,-8,-68,0,0,-0.0062405 -10983,5600:487:2,-7.5,-68,0,0,-0.00623081 -10984,5600:487:1,-7,-68,0,0,-0.00630463 -10985,5600:486:2,-6.5,-68,0,0,-0.00657234 -10986,5600:486:1,-6,-68,0,0,-0.00674108 -10987,5600:485:2,-5.5,-68,0,0,-0.00684079 -10988,3616:383:2,163.5,-68,0,0,-0.00615506 -10989,3616:384:1,164,-68,0,0,-0.00584703 -10990,3616:384:2,164.5,-68,0,0,-0.00574016 -10991,3616:485:1,165,-68,0,0,-0.00573378 -10992,3616:485:2,165.5,-68,0,0,-0.00550777 -10993,3616:486:1,166,-68,0,0,-0.00549189 -10994,3616:486:2,166.5,-68,0,0,-0.00547241 -10995,3616:487:1,167,-68,0,0,-0.00547 -10996,3616:487:2,167.5,-68,0,0,-0.00547605 -10997,3616:488:1,168,-68,0,0,-0.00546878 -10998,3616:488:2,168.5,-68,0,0,-0.00546511 -10999,3616:489:1,169,-68,0,0,-0.00546392 -11000,3616:489:2,169.5,-68,0,0,-0.00546511 -11001,3617:380:1,170,-68,0,0,-0.00546511 -11002,3617:380:2,170.5,-68,0,0,-0.00546511 -11003,3617:381:1,171,-68,0,0,-0.00546392 -11004,3617:381:2,171.5,-68,0,0,-0.00546392 -11005,3617:382:1,172,-68,0,0,-0.00546392 -11006,3617:382:2,172.5,-68,0,0,-0.0054627 -11007,3617:383:1,173,-68,0,0,-0.0054627 -11008,3617:383:2,173.5,-68,0,0,-0.0054627 -11009,3617:384:1,174,-68,0,0,-0.00546148 -11010,3617:384:2,174.5,-68,0,0,-0.00545907 -11011,3617:485:1,175,-68,0,0,-0.00545663 -11012,3617:485:2,175.5,-68,0,0,-0.00545423 -11013,3617:486:1,176,-68,0,0,-0.00545541 -11014,3617:486:2,176.5,-68,0,0,-0.00545785 -11015,3617:487:1,177,-68,0,0,-0.00545907 -11016,3617:487:2,177.5,-68,0,0,-0.00546026 -11017,3617:488:1,178,-68,0,0,-0.00546392 -11018,3617:488:2,178.5,-68,0,0,-0.00547 -11019,3617:489:1,179,-68,0,0,-0.00547241 -11020,3617:489:2,179.5,-68,0,0,-0.00547486 -11021,3618:380:1,180,-68,0,0,-0.00547727 -11022,5618:370:3,-180,-67.5,0,0,-0.00547605 -11023,5617:479:4,-179.5,-67.5,0,0,-0.0054785 -11024,5617:479:3,-179,-67.5,0,0,-0.00547972 -11025,5617:478:4,-178.5,-67.5,0,0,-0.00547972 -11026,5617:478:3,-178,-67.5,0,0,-0.00547972 -11027,5617:477:4,-177.5,-67.5,0,0,-0.00547972 -11028,5617:477:3,-177,-67.5,0,0,-0.00547972 -11029,5617:476:4,-176.5,-67.5,0,0,-0.00547972 -11030,5617:476:3,-176,-67.5,0,0,-0.0054785 -11031,5617:475:4,-175.5,-67.5,0,0,-0.00547727 -11032,5617:475:3,-175,-67.5,0,0,-0.00547605 -11033,5617:374:4,-174.5,-67.5,0,0,-0.00547364 -11034,5617:374:3,-174,-67.5,0,0,-0.00547241 -11035,5617:373:4,-173.5,-67.5,0,0,-0.00547119 -11036,5617:373:3,-173,-67.5,0,0,-0.00547119 -11037,5617:372:4,-172.5,-67.5,0,0,-0.00547 -11038,5617:372:3,-172,-67.5,0,0,-0.00546878 -11039,5617:371:4,-171.5,-67.5,0,0,-0.00546633 -11040,5617:371:3,-171,-67.5,0,0,-0.00546511 -11041,5617:370:4,-170.5,-67.5,0,0,-0.00546392 -11042,5617:370:3,-170,-67.5,0,0,-0.0054627 -11043,5616:479:4,-169.5,-67.5,0,0,-0.00546148 -11044,5616:479:3,-169,-67.5,0,0,-0.00546148 -11045,5616:478:4,-168.5,-67.5,0,0,-0.00546026 -11046,5616:478:3,-168,-67.5,0,0,-0.00545907 -11047,5616:477:4,-167.5,-67.5,0,0,-0.00545785 -11048,5616:477:3,-167,-67.5,0,0,-0.00545663 -11049,5616:476:4,-166.5,-67.5,0,0,-0.00545423 -11050,5616:476:3,-166,-67.5,0,0,-0.005453 -11051,5616:475:4,-165.5,-67.5,0,0,-0.00545179 -11052,5616:475:3,-165,-67.5,0,0,-0.00545057 -11053,5616:374:4,-164.5,-67.5,0,0,-0.00545057 -11054,5616:374:3,-164,-67.5,0,0,-0.00545179 -11055,5616:373:4,-163.5,-67.5,0,0,-0.005453 -11056,5616:373:3,-163,-67.5,0,0,-0.005453 -11057,5616:372:4,-162.5,-67.5,0,0,-0.00545179 -11058,5616:372:3,-162,-67.5,0,0,-0.00545179 -11059,5616:371:4,-161.5,-67.5,0,0,-0.005453 -11060,5616:371:3,-161,-67.5,0,0,-0.005453 -11061,5616:370:4,-160.5,-67.5,0,0,-0.00545541 -11062,5616:370:3,-160,-67.5,0,0,-0.00545907 -11063,5615:479:4,-159.5,-67.5,0,0,-0.00546148 -11064,5615:479:3,-159,-67.5,0,0,-0.00546511 -11065,5615:478:4,-158.5,-67.5,0,0,-0.00546755 -11066,5615:478:3,-158,-67.5,0,0,-0.00547119 -11067,5615:477:4,-157.5,-67.5,0,0,-0.00547364 -11068,5615:477:3,-157,-67.5,0,0,-0.00547486 -11069,5615:476:4,-156.5,-67.5,0,0,-0.00547727 -11070,5615:476:3,-156,-67.5,0,0,-0.00547972 -11071,5615:475:4,-155.5,-67.5,0,0,-0.00547972 -11072,5615:475:3,-155,-67.5,0,0,-0.00548091 -11073,5615:374:4,-154.5,-67.5,0,0,-0.00548091 -11074,5615:374:3,-154,-67.5,0,0,-0.00548091 -11075,5615:373:4,-153.5,-67.5,0,0,-0.00548091 -11076,5615:373:3,-153,-67.5,0,0,-0.00548214 -11077,5615:372:4,-152.5,-67.5,0,0,-0.00548337 -11078,5615:372:3,-152,-67.5,0,0,-0.00548459 -11079,5615:371:4,-151.5,-67.5,0,0,-0.00548582 -11080,5615:371:3,-151,-67.5,0,0,-0.00548701 -11081,5615:370:4,-150.5,-67.5,0,0,-0.00548824 -11082,5615:370:3,-150,-67.5,0,0,-0.00548824 -11083,5614:479:4,-149.5,-67.5,0,0,-0.00548824 -11084,5614:479:3,-149,-67.5,0,0,-0.00548824 -11085,5614:478:4,-148.5,-67.5,0,0,-0.00548824 -11086,5614:478:3,-148,-67.5,0,0,-0.00548824 -11087,5614:477:4,-147.5,-67.5,0,0,-0.00548947 -11088,5614:477:3,-147,-67.5,0,0,-0.00548947 -11089,5614:476:4,-146.5,-67.5,0,0,-0.00549189 -11090,5614:476:3,-146,-67.5,0,0,-0.00549189 -11091,5614:475:4,-145.5,-67.5,0,0,-0.00548824 -11092,5614:475:3,-145,-67.5,0,0,-0.00548824 -11093,5614:374:4,-144.5,-67.5,0,0,-0.00549069 -11094,5614:374:3,-144,-67.5,0,0,-0.00549557 -11095,5614:373:4,-143.5,-67.5,0,0,-0.00549923 -11096,5614:373:3,-143,-67.5,0,0,-0.00549923 -11097,5614:372:4,-142.5,-67.5,0,0,-0.00549677 -11098,5614:372:3,-142,-67.5,0,0,-0.00549557 -11099,5614:371:4,-141.5,-67.5,0,0,-0.00549312 -11100,5614:371:3,-141,-67.5,0,0,-0.00549069 -11101,5614:370:4,-140.5,-67.5,0,0,-0.00548947 -11102,5614:370:3,-140,-67.5,0,0,-0.00548824 -11103,5613:479:4,-139.5,-67.5,0,0,-0.00548824 -11104,5613:479:3,-139,-67.5,0,0,-0.00548824 -11105,5613:478:4,-138.5,-67.5,0,0,-0.00548824 -11106,5613:478:3,-138,-67.5,0,0,-0.00548701 -11107,5613:477:4,-137.5,-67.5,0,0,-0.00548947 -11108,5613:477:3,-137,-67.5,0,0,-0.00549189 -11109,5613:476:4,-136.5,-67.5,0,0,-0.00548701 -11110,5613:476:3,-136,-67.5,0,0,-0.00548337 -11111,5613:475:4,-135.5,-67.5,0,0,-0.00548214 -11112,5613:475:3,-135,-67.5,0,0,-0.00548337 -11113,5613:374:4,-134.5,-67.5,0,0,-0.00549434 -11114,5613:374:3,-134,-67.5,0,0,-0.00550411 -11115,5613:373:4,-133.5,-67.5,0,0,-0.00551024 -11116,5613:373:3,-133,-67.5,0,0,-0.00553108 -11117,5613:372:4,-132.5,-67.5,0,0,-0.0055237 -11118,5613:372:3,-132,-67.5,0,0,-0.00552985 -11119,5613:371:4,-131.5,-67.5,0,0,-0.00556064 -11120,5613:371:3,-131,-67.5,0,0,-0.00568685 -11121,5613:370:4,-130.5,-67.5,0,0,-0.00568558 -11122,5613:370:3,-130,-67.5,0,0,-0.00565911 -11123,5612:479:4,-129.5,-67.5,0,0,-0.00564781 -11124,5612:479:3,-129,-67.5,0,0,-0.00564654 -11125,5612:478:4,-128.5,-67.5,0,0,-0.00565785 -11126,5612:478:3,-128,-67.5,0,0,-0.00566288 -11127,5612:477:4,-127.5,-67.5,0,0,-0.00565535 -11128,5612:477:3,-127,-67.5,0,0,-0.00563652 -11129,5612:476:4,-126.5,-67.5,0,0,-0.00562026 -11130,5612:476:3,-126,-67.5,0,0,-0.00560033 -11131,5612:475:4,-125.5,-67.5,0,0,-0.00558168 -11132,5612:475:3,-125,-67.5,0,0,-0.00556313 -11133,5612:374:4,-124.5,-67.5,0,0,-0.00554832 -11134,5612:374:3,-124,-67.5,0,0,-0.00553724 -11135,5612:373:4,-123.5,-67.5,0,0,-0.0055237 -11136,5612:373:3,-123,-67.5,0,0,-0.00551513 -11137,5612:372:4,-122.5,-67.5,0,0,-0.005509 -11138,5612:372:3,-122,-67.5,0,0,-0.00550777 -11139,5612:371:4,-121.5,-67.5,0,0,-0.00550411 -11140,5612:371:3,-121,-67.5,0,0,-0.00550165 -11141,5612:370:4,-120.5,-67.5,0,0,-0.00549677 -11142,5612:370:3,-120,-67.5,0,0,-0.00548582 -11143,5611:479:4,-119.5,-67.5,0,0,-0.00547486 -11144,5611:479:3,-119,-67.5,0,0,-0.00547486 -11145,5611:478:4,-118.5,-67.5,0,0,-0.00547727 -11146,5611:478:3,-118,-67.5,0,0,-0.00548214 -11147,5611:477:4,-117.5,-67.5,0,0,-0.00548582 -11148,5611:477:3,-117,-67.5,0,0,-0.00551024 -11149,5611:476:4,-116.5,-67.5,0,0,-0.00552861 -11150,5611:476:3,-116,-67.5,0,0,-0.00553352 -11151,5611:475:4,-115.5,-67.5,0,0,-0.00552494 -11152,5611:475:3,-115,-67.5,0,0,-0.0055188 -11153,5611:374:4,-114.5,-67.5,0,0,-0.00551513 -11154,5611:374:3,-114,-67.5,0,0,-0.005509 -11155,5611:373:4,-113.5,-67.5,0,0,-0.00550534 -11156,5611:373:3,-113,-67.5,0,0,-0.00549069 -11157,5611:372:4,-112.5,-67.5,0,0,-0.0054785 -11158,5611:372:3,-112,-67.5,0,0,-0.0054785 -11159,5611:371:4,-111.5,-67.5,0,0,-0.0054785 -11160,5611:371:3,-111,-67.5,0,0,-0.0054785 -11161,5611:370:4,-110.5,-67.5,0,0,-0.0054785 -11162,5611:370:3,-110,-67.5,0,0,-0.00547972 -11163,5610:479:4,-109.5,-67.5,0,0,-0.00547972 -11164,5610:479:3,-109,-67.5,0,0,-0.00547972 -11165,5610:478:4,-108.5,-67.5,0,0,-0.00547972 -11166,5610:478:3,-108,-67.5,0,0,-0.0054785 -11167,5610:477:4,-107.5,-67.5,0,0,-0.0054785 -11168,5610:477:3,-107,-67.5,0,0,-0.0054785 -11169,5610:476:4,-106.5,-67.5,0,0,-0.0054785 -11170,5610:476:3,-106,-67.5,0,0,-0.00547727 -11171,5610:475:4,-105.5,-67.5,0,0,-0.00547727 -11172,5610:475:3,-105,-67.5,0,0,-0.0054785 -11173,5610:374:4,-104.5,-67.5,0,0,-0.0054785 -11174,5610:374:3,-104,-67.5,0,0,-0.00547972 -11175,5610:373:4,-103.5,-67.5,0,0,-0.00547972 -11176,5610:373:3,-103,-67.5,0,0,-0.00547972 -11177,5610:372:4,-102.5,-67.5,0,0,-0.00548091 -11178,5610:372:3,-102,-67.5,0,0,-0.00548214 -11179,5610:371:4,-101.5,-67.5,0,0,-0.00548214 -11180,5610:371:3,-101,-67.5,0,0,-0.00548214 -11181,5610:370:4,-100.5,-67.5,0,0,-0.00548091 -11182,5610:370:3,-100,-67.5,0,0,-0.0054785 -11183,5609:479:4,-99.5,-67.5,0,0,-0.00547727 -11184,5609:479:3,-99,-67.5,0,0,-0.00547727 -11185,5609:478:4,-98.5,-67.5,0,0,-0.00547727 -11186,5609:478:3,-98,-67.5,0,0,-0.00547727 -11187,5609:477:4,-97.5,-67.5,0,0,-0.00547486 -11188,5609:477:3,-97,-67.5,0,0,-0.00547364 -11189,5609:476:4,-96.5,-67.5,0,0,-0.00547364 -11190,5609:476:3,-96,-67.5,0,0,-0.00547119 -11191,5609:475:4,-95.5,-67.5,0,0,-0.00546633 -11192,5609:475:3,-95,-67.5,0,0,-0.00546392 -11193,5609:374:4,-94.5,-67.5,0,0,-0.0054627 -11194,5609:374:3,-94,-67.5,0,0,-0.00546392 -11195,5609:373:4,-93.5,-67.5,0,0,-0.0054627 -11196,5609:373:3,-93,-67.5,0,0,-0.00546148 -11197,5609:372:4,-92.5,-67.5,0,0,-0.00546026 -11198,5609:372:3,-92,-67.5,0,0,-0.00546026 -11199,5609:371:4,-91.5,-67.5,0,0,-0.00546026 -11200,5609:371:3,-91,-67.5,0,0,-0.00546148 -11201,5609:370:4,-90.5,-67.5,0,0,-0.0054627 -11202,5609:370:3,-90,-67.5,0,0,-0.00546148 -11203,5608:479:4,-89.5,-67.5,0,0,-0.0054627 -11204,5608:479:3,-89,-67.5,0,0,-0.00546511 -11205,5608:478:4,-88.5,-67.5,0,0,-0.00546633 -11206,5608:478:3,-88,-67.5,0,0,-0.00546633 -11207,5608:477:4,-87.5,-67.5,0,0,-0.00546633 -11208,5608:477:3,-87,-67.5,0,0,-0.00546633 -11209,5608:476:4,-86.5,-67.5,0,0,-0.00546633 -11210,5608:476:3,-86,-67.5,0,0,-0.00546511 -11211,5608:475:4,-85.5,-67.5,0,0,-0.00546511 -11212,5608:475:3,-85,-67.5,0,0,-0.00546511 -11213,5608:374:4,-84.5,-67.5,0,0,-0.00546511 -11214,5608:374:3,-84,-67.5,0,0,-0.00546633 -11215,5608:373:4,-83.5,-67.5,0,0,-0.00546633 -11216,5608:373:3,-83,-67.5,0,0,-0.00546633 -11217,5608:372:4,-82.5,-67.5,0,0,-0.00546633 -11218,5608:372:3,-82,-67.5,0,0,-0.00546755 -11219,5608:371:4,-81.5,-67.5,0,0,-0.00546755 -11220,5608:371:3,-81,-67.5,0,0,-0.00546755 -11221,5608:370:4,-80.5,-67.5,0,0,-0.00547119 -11222,5608:370:3,-80,-67.5,0,0,-0.00547364 -11223,5607:479:4,-79.5,-67.5,0,0,-0.0054785 -11224,5607:479:3,-79,-67.5,0,0,-0.00548337 -11225,5607:478:4,-78.5,-67.5,0,0,-0.00548947 -11226,5607:478:3,-78,-67.5,0,0,-0.00549434 -11227,5607:477:4,-77.5,-67.5,0,0,-0.00549923 -11228,5607:477:3,-77,-67.5,0,0,-0.00549557 -11229,5607:476:4,-76.5,-67.5,0,0,-0.00552127 -11230,5607:476:3,-76,-67.5,0,0,-0.00562651 -11231,5606:371:3,-61,-67.5,0,0,-0.00552127 -11232,5606:370:4,-60.5,-67.5,0,0,-0.00550165 -11233,5606:370:3,-60,-67.5,0,0,-0.00547241 -11234,5605:479:4,-59.5,-67.5,0,0,-0.00546633 -11235,5605:479:3,-59,-67.5,0,0,-0.00546633 -11236,5605:478:4,-58.5,-67.5,0,0,-0.00546633 -11237,5605:478:3,-58,-67.5,0,0,-0.00546755 -11238,5605:477:4,-57.5,-67.5,0,0,-0.00546755 -11239,5605:477:3,-57,-67.5,0,0,-0.00546755 -11240,5605:476:4,-56.5,-67.5,0,0,-0.00546755 -11241,5605:476:3,-56,-67.5,0,0,-0.00546878 -11242,5605:475:4,-55.5,-67.5,0,0,-0.00547 -11243,5605:475:3,-55,-67.5,0,0,-0.00547 -11244,5605:374:4,-54.5,-67.5,0,0,-0.00547 -11245,5605:374:3,-54,-67.5,0,0,-0.00546878 -11246,5605:373:4,-53.5,-67.5,0,0,-0.00546878 -11247,5605:373:3,-53,-67.5,0,0,-0.00546755 -11248,5605:372:4,-52.5,-67.5,0,0,-0.00546633 -11249,5605:372:3,-52,-67.5,0,0,-0.00546633 -11250,5605:371:4,-51.5,-67.5,0,0,-0.00546511 -11251,5605:371:3,-51,-67.5,0,0,-0.00546392 -11252,5605:370:4,-50.5,-67.5,0,0,-0.00546392 -11253,5605:370:3,-50,-67.5,0,0,-0.00546392 -11254,5604:479:4,-49.5,-67.5,0,0,-0.00546392 -11255,5604:479:3,-49,-67.5,0,0,-0.0054627 -11256,5604:478:4,-48.5,-67.5,0,0,-0.00546148 -11257,5604:478:3,-48,-67.5,0,0,-0.00546026 -11258,5604:477:4,-47.5,-67.5,0,0,-0.00545907 -11259,5604:477:3,-47,-67.5,0,0,-0.00545785 -11260,5604:476:4,-46.5,-67.5,0,0,-0.00545663 -11261,5604:476:3,-46,-67.5,0,0,-0.00545663 -11262,5604:475:4,-45.5,-67.5,0,0,-0.00545663 -11263,5604:475:3,-45,-67.5,0,0,-0.00545663 -11264,5604:374:4,-44.5,-67.5,0,0,-0.00545663 -11265,5604:374:3,-44,-67.5,0,0,-0.00545663 -11266,5604:373:4,-43.5,-67.5,0,0,-0.00545541 -11267,5604:373:3,-43,-67.5,0,0,-0.00545541 -11268,5604:372:4,-42.5,-67.5,0,0,-0.00545541 -11269,5604:372:3,-42,-67.5,0,0,-0.00545541 -11270,5604:371:4,-41.5,-67.5,0,0,-0.00545541 -11271,5604:371:3,-41,-67.5,0,0,-0.00545541 -11272,5604:370:4,-40.5,-67.5,0,0,-0.00545541 -11273,5604:370:3,-40,-67.5,0,0,-0.00545541 -11274,5603:479:4,-39.5,-67.5,0,0,-0.00545541 -11275,5603:479:3,-39,-67.5,0,0,-0.00545541 -11276,5603:478:4,-38.5,-67.5,0,0,-0.00545541 -11277,5603:478:3,-38,-67.5,0,0,-0.00545541 -11278,5603:477:4,-37.5,-67.5,0,0,-0.00545541 -11279,5603:477:3,-37,-67.5,0,0,-0.00545663 -11280,5603:476:4,-36.5,-67.5,0,0,-0.00545663 -11281,5603:476:3,-36,-67.5,0,0,-0.00545663 -11282,5603:475:4,-35.5,-67.5,0,0,-0.00545663 -11283,5603:475:3,-35,-67.5,0,0,-0.00545663 -11284,5603:374:4,-34.5,-67.5,0,0,-0.00545663 -11285,5603:374:3,-34,-67.5,0,0,-0.00545663 -11286,5603:373:4,-33.5,-67.5,0,0,-0.00545663 -11287,5603:373:3,-33,-67.5,0,0,-0.00545663 -11288,5603:372:4,-32.5,-67.5,0,0,-0.00545541 -11289,5603:372:3,-32,-67.5,0,0,-0.00545541 -11290,5603:371:4,-31.5,-67.5,0,0,-0.00545423 -11291,5603:371:3,-31,-67.5,0,0,-0.00545423 -11292,5603:370:4,-30.5,-67.5,0,0,-0.00545423 -11293,5603:370:3,-30,-67.5,0,0,-0.005453 -11294,5602:479:4,-29.5,-67.5,0,0,-0.005453 -11295,5602:479:3,-29,-67.5,0,0,-0.00545423 -11296,5602:478:4,-28.5,-67.5,0,0,-0.00545541 -11297,5602:478:3,-28,-67.5,0,0,-0.00545541 -11298,5602:477:4,-27.5,-67.5,0,0,-0.00545423 -11299,5602:477:3,-27,-67.5,0,0,-0.00545423 -11300,5602:476:4,-26.5,-67.5,0,0,-0.00545423 -11301,5602:476:3,-26,-67.5,0,0,-0.00545423 -11302,5602:475:4,-25.5,-67.5,0,0,-0.00545423 -11303,5602:475:3,-25,-67.5,0,0,-0.005453 -11304,5602:374:4,-24.5,-67.5,0,0,-0.005453 -11305,5602:374:3,-24,-67.5,0,0,-0.005453 -11306,5602:373:4,-23.5,-67.5,0,0,-0.00545179 -11307,5602:373:3,-23,-67.5,0,0,-0.00545179 -11308,5602:372:4,-22.5,-67.5,0,0,-0.00545179 -11309,5602:372:3,-22,-67.5,0,0,-0.005453 -11310,5602:371:4,-21.5,-67.5,0,0,-0.00545423 -11311,5602:371:3,-21,-67.5,0,0,-0.00545541 -11312,5602:370:4,-20.5,-67.5,0,0,-0.00545663 -11313,5602:370:3,-20,-67.5,0,0,-0.00545663 -11314,5601:479:4,-19.5,-67.5,0,0,-0.00545663 -11315,5601:479:3,-19,-67.5,0,0,-0.00545663 -11316,5601:478:4,-18.5,-67.5,0,0,-0.00545663 -11317,5601:478:3,-18,-67.5,0,0,-0.00545663 -11318,5601:477:4,-17.5,-67.5,0,0,-0.00545663 -11319,5601:477:3,-17,-67.5,0,0,-0.00545423 -11320,5601:476:4,-16.5,-67.5,0,0,-0.00545423 -11321,5601:476:3,-16,-67.5,0,0,-0.00545541 -11322,5601:475:4,-15.5,-67.5,0,0,-0.00545541 -11323,5601:475:3,-15,-67.5,0,0,-0.00545423 -11324,5601:374:4,-14.5,-67.5,0,0,-0.00545423 -11325,5601:374:3,-14,-67.5,0,0,-0.00545541 -11326,5601:373:4,-13.5,-67.5,0,0,-0.00545785 -11327,5601:373:3,-13,-67.5,0,0,-0.00545785 -11328,5601:372:4,-12.5,-67.5,0,0,-0.00545907 -11329,5601:372:3,-12,-67.5,0,0,-0.00546026 -11330,5601:371:4,-11.5,-67.5,0,0,-0.00546026 -11331,5601:371:3,-11,-67.5,0,0,-0.00546148 -11332,5601:370:4,-10.5,-67.5,0,0,-0.0054627 -11333,5601:370:3,-10,-67.5,0,0,-0.00546392 -11334,5600:479:4,-9.5,-67.5,0,0,-0.00546511 -11335,5600:479:3,-9,-67.5,0,0,-0.00546392 -11336,5600:478:4,-8.5,-67.5,0,0,-0.00547119 -11337,5600:478:3,-8,-67.5,0,0,-0.00549069 -11338,5600:477:4,-7.5,-67.5,0,0,-0.00548582 -11339,5600:477:3,-7,-67.5,0,0,-0.00546392 -11340,5600:476:4,-6.5,-67.5,0,0,-0.00548459 -11341,5600:476:3,-6,-67.5,0,0,-0.00556682 -11342,5600:475:4,-5.5,-67.5,0,0,-0.00579272 -11343,5600:475:3,-5,-67.5,0,0,-0.00589137 -11344,5600:374:4,-4.5,-67.5,0,0,-0.00590053 -11345,5600:374:3,-4,-67.5,0,0,-0.00598773 -11346,5600:373:4,-3.5,-67.5,0,0,-0.00590053 -11347,5600:373:3,-3,-67.5,0,0,-0.00588745 -11348,5600:372:4,-2.5,-67.5,0,0,-0.00598107 -11349,5600:372:3,-2,-67.5,0,0,-0.00574526 -11350,5600:371:4,-1.5,-67.5,0,0,-0.00564654 -11351,3600:372:3,2,-67.5,0,0,-0.00648668 -11352,3600:372:4,2.5,-67.5,0,0,-0.00625856 -11353,3600:373:3,3,-67.5,0,0,-0.00625856 -11354,3600:373:4,3.5,-67.5,0,0,-0.00622388 -11355,3600:374:3,4,-67.5,0,0,-0.00638081 -11356,3600:374:4,4.5,-67.5,0,0,-0.00646506 -11357,3600:475:3,5,-67.5,0,0,-0.00651845 -11358,3600:475:4,5.5,-67.5,0,0,-0.00654025 -11359,3600:476:3,6,-67.5,0,0,-0.00654025 -11360,3600:477:3,7,-67.5,0,0,-0.00698535 -11361,3600:477:4,7.5,-67.5,0,0,-0.00690195 -11362,3602:371:4,21.5,-67.5,0,0,-0.00551266 -11363,3602:372:3,22,-67.5,0,0,-0.00548824 -11364,3602:372:4,22.5,-67.5,0,0,-0.00548824 -11365,3602:373:3,23,-67.5,0,0,-0.00549189 -11366,3602:373:4,23.5,-67.5,0,0,-0.00548701 -11367,3602:374:3,24,-67.5,0,0,-0.00546633 -11368,3602:374:4,24.5,-67.5,0,0,-0.00546633 -11369,3602:475:3,25,-67.5,0,0,-0.00544573 -11370,3602:475:4,25.5,-67.5,0,0,-0.00543728 -11371,3602:476:3,26,-67.5,0,0,-0.0054252 -11372,3616:371:3,161,-67.5,0,0,-0.00622523 -11373,3616:371:4,161.5,-67.5,0,0,-0.00582628 -11374,3616:372:3,162,-67.5,0,0,-0.00565535 -11375,3616:372:4,162.5,-67.5,0,0,-0.00551756 -11376,3616:373:3,163,-67.5,0,0,-0.00557052 -11377,3616:373:4,163.5,-67.5,0,0,-0.00550658 -11378,3616:374:3,164,-67.5,0,0,-0.00546755 -11379,3616:374:4,164.5,-67.5,0,0,-0.00546392 -11380,3616:475:3,165,-67.5,0,0,-0.00546633 -11381,3616:475:4,165.5,-67.5,0,0,-0.00546755 -11382,3616:476:3,166,-67.5,0,0,-0.00546755 -11383,3616:476:4,166.5,-67.5,0,0,-0.00546633 -11384,3616:477:3,167,-67.5,0,0,-0.00546633 -11385,3616:477:4,167.5,-67.5,0,0,-0.00546511 -11386,3616:478:3,168,-67.5,0,0,-0.00546511 -11387,3616:478:4,168.5,-67.5,0,0,-0.00546633 -11388,3616:479:3,169,-67.5,0,0,-0.00546633 -11389,3616:479:4,169.5,-67.5,0,0,-0.00546511 -11390,3617:370:3,170,-67.5,0,0,-0.00546392 -11391,3617:370:4,170.5,-67.5,0,0,-0.00546511 -11392,3617:371:3,171,-67.5,0,0,-0.00546633 -11393,3617:371:4,171.5,-67.5,0,0,-0.00546511 -11394,3617:372:3,172,-67.5,0,0,-0.00546511 -11395,3617:372:4,172.5,-67.5,0,0,-0.00546392 -11396,3617:373:3,173,-67.5,0,0,-0.00546392 -11397,3617:373:4,173.5,-67.5,0,0,-0.00546392 -11398,3617:374:3,174,-67.5,0,0,-0.00546026 -11399,3617:374:4,174.5,-67.5,0,0,-0.00545785 -11400,3617:475:3,175,-67.5,0,0,-0.00545663 -11401,3617:475:4,175.5,-67.5,0,0,-0.00545541 -11402,3617:476:3,176,-67.5,0,0,-0.00545663 -11403,3617:476:4,176.5,-67.5,0,0,-0.00545785 -11404,3617:477:3,177,-67.5,0,0,-0.00546026 -11405,3617:477:4,177.5,-67.5,0,0,-0.00546392 -11406,3617:478:3,178,-67.5,0,0,-0.00546755 -11407,3617:478:4,178.5,-67.5,0,0,-0.00547 -11408,3617:479:3,179,-67.5,0,0,-0.00547119 -11409,3617:479:4,179.5,-67.5,0,0,-0.00547364 -11410,3618:370:3,180,-67.5,0,0,-0.00547605 -11411,5618:370:1,-180,-67,0,0,-0.00547486 -11412,5617:479:2,-179.5,-67,0,0,-0.00547605 -11413,5617:479:1,-179,-67,0,0,-0.00547727 -11414,5617:478:2,-178.5,-67,0,0,-0.0054785 -11415,5617:478:1,-178,-67,0,0,-0.0054785 -11416,5617:477:2,-177.5,-67,0,0,-0.0054785 -11417,5617:477:1,-177,-67,0,0,-0.0054785 -11418,5617:476:2,-176.5,-67,0,0,-0.00547727 -11419,5617:476:1,-176,-67,0,0,-0.00547605 -11420,5617:475:2,-175.5,-67,0,0,-0.00547486 -11421,5617:475:1,-175,-67,0,0,-0.00547364 -11422,5617:374:2,-174.5,-67,0,0,-0.00547241 -11423,5617:374:1,-174,-67,0,0,-0.00547241 -11424,5617:373:2,-173.5,-67,0,0,-0.00547119 -11425,5617:373:1,-173,-67,0,0,-0.00547119 -11426,5617:372:2,-172.5,-67,0,0,-0.00547 -11427,5617:372:1,-172,-67,0,0,-0.00546878 -11428,5617:371:2,-171.5,-67,0,0,-0.00546755 -11429,5617:371:1,-171,-67,0,0,-0.00546511 -11430,5617:370:2,-170.5,-67,0,0,-0.00546392 -11431,5617:370:1,-170,-67,0,0,-0.0054627 -11432,5616:479:2,-169.5,-67,0,0,-0.00546148 -11433,5616:479:1,-169,-67,0,0,-0.00546026 -11434,5616:478:2,-168.5,-67,0,0,-0.00546026 -11435,5616:478:1,-168,-67,0,0,-0.00545907 -11436,5616:477:2,-167.5,-67,0,0,-0.00545785 -11437,5616:477:1,-167,-67,0,0,-0.00545541 -11438,5616:476:2,-166.5,-67,0,0,-0.005453 -11439,5616:476:1,-166,-67,0,0,-0.005453 -11440,5616:475:2,-165.5,-67,0,0,-0.005453 -11441,5616:475:1,-165,-67,0,0,-0.00545179 -11442,5616:374:2,-164.5,-67,0,0,-0.00545057 -11443,5616:374:1,-164,-67,0,0,-0.00545057 -11444,5616:373:2,-163.5,-67,0,0,-0.00545179 -11445,5616:373:1,-163,-67,0,0,-0.005453 -11446,5616:372:2,-162.5,-67,0,0,-0.005453 -11447,5616:372:1,-162,-67,0,0,-0.005453 -11448,5616:371:2,-161.5,-67,0,0,-0.005453 -11449,5616:371:1,-161,-67,0,0,-0.00545423 -11450,5616:370:2,-160.5,-67,0,0,-0.00545663 -11451,5616:370:1,-160,-67,0,0,-0.00545907 -11452,5615:479:2,-159.5,-67,0,0,-0.00546148 -11453,5615:479:1,-159,-67,0,0,-0.00546392 -11454,5615:478:2,-158.5,-67,0,0,-0.00546755 -11455,5615:478:1,-158,-67,0,0,-0.00547119 -11456,5615:477:2,-157.5,-67,0,0,-0.00547486 -11457,5615:477:1,-157,-67,0,0,-0.00547605 -11458,5615:476:2,-156.5,-67,0,0,-0.0054785 -11459,5615:476:1,-156,-67,0,0,-0.00547972 -11460,5615:475:2,-155.5,-67,0,0,-0.00547972 -11461,5615:475:1,-155,-67,0,0,-0.00548091 -11462,5615:374:2,-154.5,-67,0,0,-0.00548091 -11463,5615:374:1,-154,-67,0,0,-0.00548214 -11464,5615:373:2,-153.5,-67,0,0,-0.00548214 -11465,5615:373:1,-153,-67,0,0,-0.00548337 -11466,5615:372:2,-152.5,-67,0,0,-0.00548459 -11467,5615:372:1,-152,-67,0,0,-0.00548582 -11468,5615:371:2,-151.5,-67,0,0,-0.00548701 -11469,5615:371:1,-151,-67,0,0,-0.00548701 -11470,5615:370:2,-150.5,-67,0,0,-0.00548701 -11471,5615:370:1,-150,-67,0,0,-0.00548701 -11472,5614:479:2,-149.5,-67,0,0,-0.00548824 -11473,5614:479:1,-149,-67,0,0,-0.00548824 -11474,5614:478:2,-148.5,-67,0,0,-0.00548947 -11475,5614:478:1,-148,-67,0,0,-0.00549069 -11476,5614:477:2,-147.5,-67,0,0,-0.00549069 -11477,5614:477:1,-147,-67,0,0,-0.00549312 -11478,5614:476:2,-146.5,-67,0,0,-0.00549189 -11479,5614:476:1,-146,-67,0,0,-0.00549069 -11480,5614:475:2,-145.5,-67,0,0,-0.00549069 -11481,5614:475:1,-145,-67,0,0,-0.00549189 -11482,5614:374:2,-144.5,-67,0,0,-0.00549312 -11483,5614:374:1,-144,-67,0,0,-0.00549434 -11484,5614:373:2,-143.5,-67,0,0,-0.00549434 -11485,5614:373:1,-143,-67,0,0,-0.00549069 -11486,5614:372:2,-142.5,-67,0,0,-0.00548824 -11487,5614:372:1,-142,-67,0,0,-0.00548701 -11488,5614:371:2,-141.5,-67,0,0,-0.00548582 -11489,5614:371:1,-141,-67,0,0,-0.00548459 -11490,5614:370:2,-140.5,-67,0,0,-0.00548459 -11491,5614:370:1,-140,-67,0,0,-0.00548459 -11492,5613:479:2,-139.5,-67,0,0,-0.00548701 -11493,5613:479:1,-139,-67,0,0,-0.00548701 -11494,5613:478:2,-138.5,-67,0,0,-0.00548582 -11495,5613:478:1,-138,-67,0,0,-0.00549557 -11496,5613:477:2,-137.5,-67,0,0,-0.00550411 -11497,5613:477:1,-137,-67,0,0,-0.00552494 -11498,5613:476:2,-136.5,-67,0,0,-0.00551756 -11499,5613:476:1,-136,-67,0,0,-0.00548947 -11500,5613:475:2,-135.5,-67,0,0,-0.00548701 -11501,5613:475:1,-135,-67,0,0,-0.00549189 -11502,5613:374:2,-134.5,-67,0,0,-0.00549557 -11503,5613:374:1,-134,-67,0,0,-0.00549677 -11504,5613:373:2,-133.5,-67,0,0,-0.00553724 -11505,5613:373:1,-133,-67,0,0,-0.0055434 -11506,5613:372:2,-132.5,-67,0,0,-0.00552617 -11507,5613:372:1,-132,-67,0,0,-0.00552127 -11508,5613:371:2,-131.5,-67,0,0,-0.00554708 -11509,5613:371:1,-131,-67,0,0,-0.00565409 -11510,5613:370:2,-130.5,-67,0,0,-0.00571724 -11511,5613:370:1,-130,-67,0,0,-0.00570581 -11512,5612:479:2,-129.5,-67,0,0,-0.00570202 -11513,5612:479:1,-129,-67,0,0,-0.00570837 -11514,5612:478:2,-128.5,-67,0,0,-0.00570837 -11515,5612:478:1,-128,-67,0,0,-0.00569445 -11516,5612:477:2,-127.5,-67,0,0,-0.00567171 -11517,5612:477:1,-127,-67,0,0,-0.00565033 -11518,5612:476:2,-126.5,-67,0,0,-0.00563277 -11519,5612:476:1,-126,-67,0,0,-0.00561778 -11520,5612:475:2,-125.5,-67,0,0,-0.0056028 -11521,5612:475:1,-125,-67,0,0,-0.00558789 -11522,5612:374:2,-124.5,-67,0,0,-0.00556932 -11523,5612:374:1,-124,-67,0,0,-0.00555077 -11524,5612:373:2,-123.5,-67,0,0,-0.00554216 -11525,5612:373:1,-123,-67,0,0,-0.00553352 -11526,5612:372:2,-122.5,-67,0,0,-0.00552617 -11527,5612:372:1,-122,-67,0,0,-0.0055225 -11528,5612:371:2,-121.5,-67,0,0,-0.0055188 -11529,5612:371:1,-121,-67,0,0,-0.00551147 -11530,5612:370:2,-120.5,-67,0,0,-0.00550534 -11531,5612:370:1,-120,-67,0,0,-0.00550046 -11532,5611:479:2,-119.5,-67,0,0,-0.00549434 -11533,5611:479:1,-119,-67,0,0,-0.00549069 -11534,5611:478:2,-118.5,-67,0,0,-0.00549677 -11535,5611:478:1,-118,-67,0,0,-0.00550046 -11536,5611:477:2,-117.5,-67,0,0,-0.00553968 -11537,5611:477:1,-117,-67,0,0,-0.00564153 -11538,5611:476:2,-116.5,-67,0,0,-0.00565282 -11539,5611:476:1,-116,-67,0,0,-0.00564654 -11540,5611:475:2,-115.5,-67,0,0,-0.00562526 -11541,5611:475:1,-115,-67,0,0,-0.00559661 -11542,5611:374:2,-114.5,-67,0,0,-0.00557797 -11543,5611:374:1,-114,-67,0,0,-0.0055557 -11544,5611:373:2,-113.5,-67,0,0,-0.00554092 -11545,5611:373:1,-113,-67,0,0,-0.00553476 -11546,5611:372:2,-112.5,-67,0,0,-0.00552494 -11547,5611:372:1,-112,-67,0,0,-0.00550777 -11548,5611:371:2,-111.5,-67,0,0,-0.00549069 -11549,5611:371:1,-111,-67,0,0,-0.00547727 -11550,5611:370:2,-110.5,-67,0,0,-0.0054785 -11551,5611:370:1,-110,-67,0,0,-0.00547972 -11552,5610:479:2,-109.5,-67,0,0,-0.00547972 -11553,5610:479:1,-109,-67,0,0,-0.00547972 -11554,5610:478:2,-108.5,-67,0,0,-0.00547972 -11555,5610:478:1,-108,-67,0,0,-0.0054785 -11556,5610:477:2,-107.5,-67,0,0,-0.0054785 -11557,5610:477:1,-107,-67,0,0,-0.00547727 -11558,5610:476:2,-106.5,-67,0,0,-0.0054785 -11559,5610:476:1,-106,-67,0,0,-0.0054785 -11560,5610:475:2,-105.5,-67,0,0,-0.00547727 -11561,5610:475:1,-105,-67,0,0,-0.00547727 -11562,5610:374:2,-104.5,-67,0,0,-0.00547727 -11563,5610:374:1,-104,-67,0,0,-0.00547727 -11564,5610:373:2,-103.5,-67,0,0,-0.0054785 -11565,5610:373:1,-103,-67,0,0,-0.00547972 -11566,5610:372:2,-102.5,-67,0,0,-0.00547972 -11567,5610:372:1,-102,-67,0,0,-0.00547972 -11568,5610:371:2,-101.5,-67,0,0,-0.00547972 -11569,5610:371:1,-101,-67,0,0,-0.0054785 -11570,5610:370:2,-100.5,-67,0,0,-0.00547727 -11571,5610:370:1,-100,-67,0,0,-0.0054785 -11572,5609:479:2,-99.5,-67,0,0,-0.00547727 -11573,5609:479:1,-99,-67,0,0,-0.00547605 -11574,5609:478:2,-98.5,-67,0,0,-0.00547364 -11575,5609:478:1,-98,-67,0,0,-0.00547 -11576,5609:477:2,-97.5,-67,0,0,-0.00546633 -11577,5609:477:1,-97,-67,0,0,-0.00546511 -11578,5609:476:2,-96.5,-67,0,0,-0.00546511 -11579,5609:476:1,-96,-67,0,0,-0.00546392 -11580,5609:475:2,-95.5,-67,0,0,-0.0054627 -11581,5609:475:1,-95,-67,0,0,-0.00546148 -11582,5609:374:2,-94.5,-67,0,0,-0.0054627 -11583,5609:374:1,-94,-67,0,0,-0.0054627 -11584,5609:373:2,-93.5,-67,0,0,-0.0054627 -11585,5609:373:1,-93,-67,0,0,-0.0054627 -11586,5609:372:2,-92.5,-67,0,0,-0.0054627 -11587,5609:372:1,-92,-67,0,0,-0.00546148 -11588,5609:371:2,-91.5,-67,0,0,-0.00546148 -11589,5609:371:1,-91,-67,0,0,-0.00546148 -11590,5609:370:2,-90.5,-67,0,0,-0.00546148 -11591,5609:370:1,-90,-67,0,0,-0.00546148 -11592,5608:479:2,-89.5,-67,0,0,-0.00546148 -11593,5608:479:1,-89,-67,0,0,-0.00546392 -11594,5608:478:2,-88.5,-67,0,0,-0.00546392 -11595,5608:478:1,-88,-67,0,0,-0.00546511 -11596,5608:477:2,-87.5,-67,0,0,-0.00546633 -11597,5608:477:1,-87,-67,0,0,-0.00546633 -11598,5608:476:2,-86.5,-67,0,0,-0.00546755 -11599,5608:476:1,-86,-67,0,0,-0.00546755 -11600,5608:475:2,-85.5,-67,0,0,-0.00546755 -11601,5608:475:1,-85,-67,0,0,-0.00546755 -11602,5608:374:2,-84.5,-67,0,0,-0.00546878 -11603,5608:374:1,-84,-67,0,0,-0.00546878 -11604,5608:373:2,-83.5,-67,0,0,-0.00547 -11605,5608:373:1,-83,-67,0,0,-0.00547 -11606,5608:372:2,-82.5,-67,0,0,-0.00547 -11607,5608:372:1,-82,-67,0,0,-0.00547 -11608,5608:371:2,-81.5,-67,0,0,-0.00547119 -11609,5608:371:1,-81,-67,0,0,-0.00547119 -11610,5608:370:2,-80.5,-67,0,0,-0.00547119 -11611,5608:370:1,-80,-67,0,0,-0.00547241 -11612,5607:479:2,-79.5,-67,0,0,-0.00547486 -11613,5607:479:1,-79,-67,0,0,-0.0054785 -11614,5607:478:2,-78.5,-67,0,0,-0.00548459 -11615,5607:478:1,-78,-67,0,0,-0.00549069 -11616,5607:477:2,-77.5,-67,0,0,-0.00549677 -11617,5607:477:1,-77,-67,0,0,-0.00550288 -11618,5607:476:2,-76.5,-67,0,0,-0.00551024 -11619,5607:476:1,-76,-67,0,0,-0.00551756 -11620,5607:475:2,-75.5,-67,0,0,-0.00552127 -11621,5607:475:1,-75,-67,0,0,-0.00552494 -11622,5607:374:2,-74.5,-67,0,0,-0.00555201 -11623,5607:374:1,-74,-67,0,0,-0.0056919 -11624,5607:373:2,-73.5,-67,0,0,-0.00575677 -11625,5607:373:1,-73,-67,0,0,-0.00577726 -11626,5606:479:1,-69,-67,0,0,-0.00566791 -11627,5606:371:1,-61,-67,0,0,-0.00552861 -11628,5606:370:2,-60.5,-67,0,0,-0.00552127 -11629,5606:370:1,-60,-67,0,0,-0.00550046 -11630,5605:479:2,-59.5,-67,0,0,-0.00547605 -11631,5605:479:1,-59,-67,0,0,-0.00546755 -11632,5605:478:2,-58.5,-67,0,0,-0.00546755 -11633,5605:478:1,-58,-67,0,0,-0.00546755 -11634,5605:477:2,-57.5,-67,0,0,-0.00546755 -11635,5605:477:1,-57,-67,0,0,-0.00546755 -11636,5605:476:2,-56.5,-67,0,0,-0.00546755 -11637,5605:476:1,-56,-67,0,0,-0.00546878 -11638,5605:475:2,-55.5,-67,0,0,-0.00547 -11639,5605:475:1,-55,-67,0,0,-0.00547 -11640,5605:374:2,-54.5,-67,0,0,-0.00547 -11641,5605:374:1,-54,-67,0,0,-0.00546878 -11642,5605:373:2,-53.5,-67,0,0,-0.00546755 -11643,5605:373:1,-53,-67,0,0,-0.00546755 -11644,5605:372:2,-52.5,-67,0,0,-0.00546633 -11645,5605:372:1,-52,-67,0,0,-0.00546511 -11646,5605:371:2,-51.5,-67,0,0,-0.0054627 -11647,5605:371:1,-51,-67,0,0,-0.00546148 -11648,5605:370:2,-50.5,-67,0,0,-0.00546148 -11649,5605:370:1,-50,-67,0,0,-0.00546148 -11650,5604:479:2,-49.5,-67,0,0,-0.00546148 -11651,5604:479:1,-49,-67,0,0,-0.00546026 -11652,5604:478:2,-48.5,-67,0,0,-0.00545907 -11653,5604:478:1,-48,-67,0,0,-0.00545785 -11654,5604:477:2,-47.5,-67,0,0,-0.00545785 -11655,5604:477:1,-47,-67,0,0,-0.00545663 -11656,5604:476:2,-46.5,-67,0,0,-0.00545663 -11657,5604:476:1,-46,-67,0,0,-0.00545663 -11658,5604:475:2,-45.5,-67,0,0,-0.00545663 -11659,5604:475:1,-45,-67,0,0,-0.00545663 -11660,5604:374:2,-44.5,-67,0,0,-0.00545663 -11661,5604:374:1,-44,-67,0,0,-0.00545663 -11662,5604:373:2,-43.5,-67,0,0,-0.00545541 -11663,5604:373:1,-43,-67,0,0,-0.00545541 -11664,5604:372:2,-42.5,-67,0,0,-0.00545541 -11665,5604:372:1,-42,-67,0,0,-0.00545541 -11666,5604:371:2,-41.5,-67,0,0,-0.00545541 -11667,5604:371:1,-41,-67,0,0,-0.00545541 -11668,5604:370:2,-40.5,-67,0,0,-0.00545541 -11669,5604:370:1,-40,-67,0,0,-0.00545541 -11670,5603:479:2,-39.5,-67,0,0,-0.00545541 -11671,5603:479:1,-39,-67,0,0,-0.00545541 -11672,5603:478:2,-38.5,-67,0,0,-0.00545541 -11673,5603:478:1,-38,-67,0,0,-0.00545541 -11674,5603:477:2,-37.5,-67,0,0,-0.00545541 -11675,5603:477:1,-37,-67,0,0,-0.00545541 -11676,5603:476:2,-36.5,-67,0,0,-0.00545541 -11677,5603:476:1,-36,-67,0,0,-0.00545541 -11678,5603:475:2,-35.5,-67,0,0,-0.00545541 -11679,5603:475:1,-35,-67,0,0,-0.00545541 -11680,5603:374:2,-34.5,-67,0,0,-0.00545541 -11681,5603:374:1,-34,-67,0,0,-0.00545541 -11682,5603:373:2,-33.5,-67,0,0,-0.00545541 -11683,5603:373:1,-33,-67,0,0,-0.00545423 -11684,5603:372:2,-32.5,-67,0,0,-0.00545423 -11685,5603:372:1,-32,-67,0,0,-0.005453 -11686,5603:371:2,-31.5,-67,0,0,-0.005453 -11687,5603:371:1,-31,-67,0,0,-0.005453 -11688,5603:370:2,-30.5,-67,0,0,-0.00545179 -11689,5603:370:1,-30,-67,0,0,-0.00545179 -11690,5602:479:2,-29.5,-67,0,0,-0.00545179 -11691,5602:479:1,-29,-67,0,0,-0.00545179 -11692,5602:478:2,-28.5,-67,0,0,-0.005453 -11693,5602:478:1,-28,-67,0,0,-0.005453 -11694,5602:477:2,-27.5,-67,0,0,-0.005453 -11695,5602:477:1,-27,-67,0,0,-0.005453 -11696,5602:476:2,-26.5,-67,0,0,-0.005453 -11697,5602:476:1,-26,-67,0,0,-0.00545179 -11698,5602:475:2,-25.5,-67,0,0,-0.00545179 -11699,5602:475:1,-25,-67,0,0,-0.00545179 -11700,5602:374:2,-24.5,-67,0,0,-0.00545057 -11701,5602:374:1,-24,-67,0,0,-0.00545057 -11702,5602:373:2,-23.5,-67,0,0,-0.00545057 -11703,5602:373:1,-23,-67,0,0,-0.00545057 -11704,5602:372:2,-22.5,-67,0,0,-0.00545179 -11705,5602:372:1,-22,-67,0,0,-0.00545179 -11706,5602:371:2,-21.5,-67,0,0,-0.005453 -11707,5602:371:1,-21,-67,0,0,-0.00545423 -11708,5602:370:2,-20.5,-67,0,0,-0.00545423 -11709,5602:370:1,-20,-67,0,0,-0.00545423 -11710,5601:479:2,-19.5,-67,0,0,-0.00545423 -11711,5601:479:1,-19,-67,0,0,-0.00545423 -11712,5601:478:2,-18.5,-67,0,0,-0.00545423 -11713,5601:478:1,-18,-67,0,0,-0.00545541 -11714,5601:477:2,-17.5,-67,0,0,-0.00545423 -11715,5601:477:1,-17,-67,0,0,-0.005453 -11716,5601:476:2,-16.5,-67,0,0,-0.00545423 -11717,5601:476:1,-16,-67,0,0,-0.00545541 -11718,5601:475:2,-15.5,-67,0,0,-0.00545541 -11719,5601:475:1,-15,-67,0,0,-0.00545541 -11720,5601:374:2,-14.5,-67,0,0,-0.00545541 -11721,5601:374:1,-14,-67,0,0,-0.00545423 -11722,5601:373:2,-13.5,-67,0,0,-0.00545423 -11723,5601:373:1,-13,-67,0,0,-0.00545541 -11724,5601:372:2,-12.5,-67,0,0,-0.00545785 -11725,5601:372:1,-12,-67,0,0,-0.00545785 -11726,5601:371:2,-11.5,-67,0,0,-0.00545785 -11727,5601:371:1,-11,-67,0,0,-0.00545663 -11728,5601:370:2,-10.5,-67,0,0,-0.00545663 -11729,5601:370:1,-10,-67,0,0,-0.00545663 -11730,5600:479:2,-9.5,-67,0,0,-0.00545663 -11731,5600:479:1,-9,-67,0,0,-0.00545541 -11732,5600:478:2,-8.5,-67,0,0,-0.00545541 -11733,5600:478:1,-8,-67,0,0,-0.00545663 -11734,5600:477:2,-7.5,-67,0,0,-0.00545663 -11735,5600:477:1,-7,-67,0,0,-0.00545785 -11736,5600:476:2,-6.5,-67,0,0,-0.00545907 -11737,5600:476:1,-6,-67,0,0,-0.00546755 -11738,5600:475:2,-5.5,-67,0,0,-0.005536 -11739,5600:475:1,-5,-67,0,0,-0.00556064 -11740,5600:374:2,-4.5,-67,0,0,-0.00551637 -11741,5600:374:1,-4,-67,0,0,-0.0055139 -11742,5600:373:2,-3.5,-67,0,0,-0.00552127 -11743,5600:373:1,-3,-67,0,0,-0.00548091 -11744,5600:372:2,-2.5,-67,0,0,-0.00548337 -11745,5600:372:1,-2,-67,0,0,-0.00553476 -11746,5600:371:2,-1.5,-67,0,0,-0.00559908 -11747,5600:371:1,-1,-67,0,0,-0.00566288 -11748,5600:370:2,-0.5,-67,0,0,-0.00572488 -11749,3600:370:2,0,-67,0,0,-0.00588614 -11750,3600:370:2,0.5,-67,0,0,-0.00566668 -11751,3600:371:1,1,-67,0,0,-0.00557052 -11752,3600:371:2,1.5,-67,0,0,-0.00557426 -11753,3600:372:1,2,-67,0,0,-0.005498 -11754,3600:372:2,2.5,-67,0,0,-0.00547972 -11755,3600:373:1,3,-67,0,0,-0.00548947 -11756,3600:373:2,3.5,-67,0,0,-0.00561402 -11757,3600:374:1,4,-67,0,0,-0.00574144 -11758,3600:374:2,4.5,-67,0,0,-0.00575165 -11759,3600:475:1,5,-67,0,0,-0.00578498 -11760,3600:475:2,5.5,-67,0,0,-0.00581204 -11761,3600:476:1,6,-67,0,0,-0.00577985 -11762,3600:476:2,6.5,-67,0,0,-0.00576446 -11763,3600:477:1,7,-67,0,0,-0.005877 -11764,3600:477:2,7.5,-67,0,0,-0.00597313 -11765,3600:478:1,8,-67,0,0,-0.00602914 -11766,3600:478:2,8.5,-67,0,0,-0.0060965 -11767,3600:479:1,9,-67,0,0,-0.00610602 -11768,3600:479:2,9.5,-67,0,0,-0.00605734 -11769,3601:370:1,10,-67,0,0,-0.00590053 -11770,3601:370:2,10.5,-67,0,0,-0.00598107 -11771,3601:371:1,11,-67,0,0,-0.00615097 -11772,3601:371:2,11.5,-67,0,0,-0.00617153 -11773,3601:372:1,12,-67,0,0,-0.00635954 -11774,3601:372:2,12.5,-67,0,0,-0.00676363 -11775,3601:373:1,13,-67,0,0,-0.00663697 -11776,3601:478:1,18,-67,0,0,-0.00562526 -11777,3601:478:2,18.5,-67,0,0,-0.00552861 -11778,3601:479:1,19,-67,0,0,-0.00547364 -11779,3601:479:2,19.5,-67,0,0,-0.00548701 -11780,3602:370:1,20,-67,0,0,-0.00548214 -11781,3602:370:2,20.5,-67,0,0,-0.0054785 -11782,3602:371:1,21,-67,0,0,-0.00548459 -11783,3602:371:2,21.5,-67,0,0,-0.00548091 -11784,3602:372:1,22,-67,0,0,-0.00547972 -11785,3602:372:2,22.5,-67,0,0,-0.00547727 -11786,3602:373:1,23,-67,0,0,-0.00547119 -11787,3602:373:2,23.5,-67,0,0,-0.00546633 -11788,3602:374:1,24,-67,0,0,-0.00545907 -11789,3602:374:2,24.5,-67,0,0,-0.00545179 -11790,3602:475:1,25,-67,0,0,-0.00544935 -11791,3602:475:2,25.5,-67,0,0,-0.00545057 -11792,3602:476:1,26,-67,0,0,-0.00546511 -11793,3602:476:2,26.5,-67,0,0,-0.00546026 -11794,3602:477:1,27,-67,0,0,-0.00545057 -11795,3602:477:2,27.5,-67,0,0,-0.00546392 -11796,3602:478:1,28,-67,0,0,-0.00566414 -11797,3616:370:2,160.5,-67,0,0,-0.00592419 -11798,3616:371:1,161,-67,0,0,-0.00557302 -11799,3616:371:2,161.5,-67,0,0,-0.00548214 -11800,3616:372:1,162,-67,0,0,-0.0054627 -11801,3616:372:2,162.5,-67,0,0,-0.00546511 -11802,3616:373:1,163,-67,0,0,-0.00546392 -11803,3616:373:2,163.5,-67,0,0,-0.00546511 -11804,3616:374:1,164,-67,0,0,-0.00546633 -11805,3616:374:2,164.5,-67,0,0,-0.00546633 -11806,3616:475:1,165,-67,0,0,-0.00546633 -11807,3616:475:2,165.5,-67,0,0,-0.00546755 -11808,3616:476:1,166,-67,0,0,-0.00546633 -11809,3616:476:2,166.5,-67,0,0,-0.00546633 -11810,3616:477:1,167,-67,0,0,-0.00546633 -11811,3616:477:2,167.5,-67,0,0,-0.00546755 -11812,3616:478:1,168,-67,0,0,-0.00546755 -11813,3616:478:2,168.5,-67,0,0,-0.00546633 -11814,3616:479:1,169,-67,0,0,-0.00546633 -11815,3616:479:2,169.5,-67,0,0,-0.00546633 -11816,3617:370:1,170,-67,0,0,-0.00546633 -11817,3617:370:2,170.5,-67,0,0,-0.00546755 -11818,3617:371:1,171,-67,0,0,-0.00546755 -11819,3617:371:2,171.5,-67,0,0,-0.00546633 -11820,3617:372:1,172,-67,0,0,-0.00546511 -11821,3617:372:2,172.5,-67,0,0,-0.00546511 -11822,3617:373:1,173,-67,0,0,-0.00546511 -11823,3617:373:2,173.5,-67,0,0,-0.00546148 -11824,3617:374:1,174,-67,0,0,-0.00546026 -11825,3617:374:2,174.5,-67,0,0,-0.00545785 -11826,3617:475:1,175,-67,0,0,-0.00545785 -11827,3617:475:2,175.5,-67,0,0,-0.00545663 -11828,3617:476:1,176,-67,0,0,-0.00545785 -11829,3617:476:2,176.5,-67,0,0,-0.00545907 -11830,3617:477:1,177,-67,0,0,-0.0054627 -11831,3617:477:2,177.5,-67,0,0,-0.00546511 -11832,3617:478:1,178,-67,0,0,-0.00546755 -11833,3617:478:2,178.5,-67,0,0,-0.00547 -11834,3617:479:1,179,-67,0,0,-0.00547119 -11835,3617:479:2,179.5,-67,0,0,-0.00547364 -11836,3618:370:1,180,-67,0,0,-0.00547486 -11837,5618:360:3,-180,-66.5,0,0,-0.00547241 -11838,5617:469:4,-179.5,-66.5,0,0,-0.00547364 -11839,5617:469:3,-179,-66.5,0,0,-0.00547605 -11840,5617:468:4,-178.5,-66.5,0,0,-0.00547727 -11841,5617:468:3,-178,-66.5,0,0,-0.00547727 -11842,5617:467:4,-177.5,-66.5,0,0,-0.0054785 -11843,5617:467:3,-177,-66.5,0,0,-0.00547727 -11844,5617:466:4,-176.5,-66.5,0,0,-0.00547605 -11845,5617:466:3,-176,-66.5,0,0,-0.00547486 -11846,5617:465:4,-175.5,-66.5,0,0,-0.00547364 -11847,5617:465:3,-175,-66.5,0,0,-0.00547241 -11848,5617:364:4,-174.5,-66.5,0,0,-0.00547119 -11849,5617:364:3,-174,-66.5,0,0,-0.00547119 -11850,5617:363:4,-173.5,-66.5,0,0,-0.00547 -11851,5617:363:3,-173,-66.5,0,0,-0.00547 -11852,5617:362:4,-172.5,-66.5,0,0,-0.00547 -11853,5617:362:3,-172,-66.5,0,0,-0.00546878 -11854,5617:361:4,-171.5,-66.5,0,0,-0.00546755 -11855,5617:361:3,-171,-66.5,0,0,-0.00546633 -11856,5617:360:4,-170.5,-66.5,0,0,-0.00546392 -11857,5617:360:3,-170,-66.5,0,0,-0.0054627 -11858,5616:469:4,-169.5,-66.5,0,0,-0.00546148 -11859,5616:469:3,-169,-66.5,0,0,-0.00546026 -11860,5616:468:4,-168.5,-66.5,0,0,-0.00545907 -11861,5616:468:3,-168,-66.5,0,0,-0.00545907 -11862,5616:467:4,-167.5,-66.5,0,0,-0.00545907 -11863,5616:467:3,-167,-66.5,0,0,-0.00545663 -11864,5616:466:4,-166.5,-66.5,0,0,-0.005453 -11865,5616:466:3,-166,-66.5,0,0,-0.005453 -11866,5616:465:4,-165.5,-66.5,0,0,-0.00545423 -11867,5616:465:3,-165,-66.5,0,0,-0.005453 -11868,5616:364:4,-164.5,-66.5,0,0,-0.00545179 -11869,5616:364:3,-164,-66.5,0,0,-0.00545179 -11870,5616:363:4,-163.5,-66.5,0,0,-0.00545179 -11871,5616:363:3,-163,-66.5,0,0,-0.005453 -11872,5616:362:4,-162.5,-66.5,0,0,-0.005453 -11873,5616:362:3,-162,-66.5,0,0,-0.00545423 -11874,5616:361:4,-161.5,-66.5,0,0,-0.00545541 -11875,5616:361:3,-161,-66.5,0,0,-0.00545663 -11876,5616:360:4,-160.5,-66.5,0,0,-0.00545785 -11877,5616:360:3,-160,-66.5,0,0,-0.00546026 -11878,5615:469:4,-159.5,-66.5,0,0,-0.0054627 -11879,5615:469:3,-159,-66.5,0,0,-0.00546511 -11880,5615:468:4,-158.5,-66.5,0,0,-0.00546755 -11881,5615:468:3,-158,-66.5,0,0,-0.00547119 -11882,5615:467:4,-157.5,-66.5,0,0,-0.00547486 -11883,5615:467:3,-157,-66.5,0,0,-0.00547727 -11884,5615:466:4,-156.5,-66.5,0,0,-0.0054785 -11885,5615:466:3,-156,-66.5,0,0,-0.0054785 -11886,5615:465:4,-155.5,-66.5,0,0,-0.0054785 -11887,5615:465:3,-155,-66.5,0,0,-0.00547972 -11888,5615:364:4,-154.5,-66.5,0,0,-0.00547972 -11889,5615:364:3,-154,-66.5,0,0,-0.00548091 -11890,5615:363:4,-153.5,-66.5,0,0,-0.00548091 -11891,5615:363:3,-153,-66.5,0,0,-0.00548214 -11892,5615:362:4,-152.5,-66.5,0,0,-0.00548459 -11893,5615:362:3,-152,-66.5,0,0,-0.00548582 -11894,5615:361:4,-151.5,-66.5,0,0,-0.00548824 -11895,5615:361:3,-151,-66.5,0,0,-0.00548824 -11896,5615:360:4,-150.5,-66.5,0,0,-0.00548824 -11897,5615:360:3,-150,-66.5,0,0,-0.00548701 -11898,5614:469:4,-149.5,-66.5,0,0,-0.00548824 -11899,5614:469:3,-149,-66.5,0,0,-0.00548824 -11900,5614:468:4,-148.5,-66.5,0,0,-0.00548824 -11901,5614:468:3,-148,-66.5,0,0,-0.00548947 -11902,5614:467:4,-147.5,-66.5,0,0,-0.00549189 -11903,5614:467:3,-147,-66.5,0,0,-0.00549312 -11904,5614:466:4,-146.5,-66.5,0,0,-0.00549434 -11905,5614:466:3,-146,-66.5,0,0,-0.00549312 -11906,5614:465:4,-145.5,-66.5,0,0,-0.00549189 -11907,5614:465:3,-145,-66.5,0,0,-0.00549069 -11908,5614:364:4,-144.5,-66.5,0,0,-0.00549189 -11909,5614:364:3,-144,-66.5,0,0,-0.00549189 -11910,5614:363:4,-143.5,-66.5,0,0,-0.00549312 -11911,5614:363:3,-143,-66.5,0,0,-0.00549312 -11912,5614:362:4,-142.5,-66.5,0,0,-0.00549069 -11913,5614:362:3,-142,-66.5,0,0,-0.00548824 -11914,5614:361:4,-141.5,-66.5,0,0,-0.00548824 -11915,5614:361:3,-141,-66.5,0,0,-0.00549434 -11916,5614:360:4,-140.5,-66.5,0,0,-0.00549677 -11917,5614:360:3,-140,-66.5,0,0,-0.00550534 -11918,5613:469:4,-139.5,-66.5,0,0,-0.005509 -11919,5613:469:3,-139,-66.5,0,0,-0.00551147 -11920,5613:468:4,-138.5,-66.5,0,0,-0.00550658 -11921,5613:468:3,-138,-66.5,0,0,-0.00551756 -11922,5613:467:4,-137.5,-66.5,0,0,-0.00553232 -11923,5613:467:3,-137,-66.5,0,0,-0.00553352 -11924,5613:466:4,-136.5,-66.5,0,0,-0.00553108 -11925,5613:466:3,-136,-66.5,0,0,-0.00551513 -11926,5613:465:4,-135.5,-66.5,0,0,-0.00548701 -11927,5613:465:3,-135,-66.5,0,0,-0.00548824 -11928,5613:364:4,-134.5,-66.5,0,0,-0.00550534 -11929,5613:364:3,-134,-66.5,0,0,-0.00554584 -11930,5613:363:4,-133.5,-66.5,0,0,-0.00557551 -11931,5613:363:3,-133,-66.5,0,0,-0.00557672 -11932,5613:362:4,-132.5,-66.5,0,0,-0.00557302 -11933,5613:362:3,-132,-66.5,0,0,-0.00557551 -11934,5613:361:4,-131.5,-66.5,0,0,-0.00558418 -11935,5613:361:3,-131,-66.5,0,0,-0.00564781 -11936,5613:360:4,-130.5,-66.5,0,0,-0.00572108 -11937,5613:360:3,-130,-66.5,0,0,-0.00571724 -11938,5612:469:4,-129.5,-66.5,0,0,-0.00571216 -11939,5612:469:3,-129,-66.5,0,0,-0.00571092 -11940,5612:468:4,-128.5,-66.5,0,0,-0.00571216 -11941,5612:468:3,-128,-66.5,0,0,-0.00570581 -11942,5612:467:4,-127.5,-66.5,0,0,-0.00568812 -11943,5612:467:3,-127,-66.5,0,0,-0.00566541 -11944,5612:466:4,-126.5,-66.5,0,0,-0.00564405 -11945,5612:466:3,-126,-66.5,0,0,-0.00562903 -11946,5612:465:4,-125.5,-66.5,0,0,-0.00561527 -11947,5612:465:3,-125,-66.5,0,0,-0.00560033 -11948,5612:364:4,-124.5,-66.5,0,0,-0.00558664 -11949,5612:364:3,-124,-66.5,0,0,-0.00557177 -11950,5612:363:4,-123.5,-66.5,0,0,-0.00555943 -11951,5612:363:3,-123,-66.5,0,0,-0.00554953 -11952,5612:362:4,-122.5,-66.5,0,0,-0.0055446 -11953,5612:362:3,-122,-66.5,0,0,-0.00553848 -11954,5612:361:4,-121.5,-66.5,0,0,-0.00552985 -11955,5612:361:3,-121,-66.5,0,0,-0.0055225 -11956,5612:360:4,-120.5,-66.5,0,0,-0.0055188 -11957,5612:360:3,-120,-66.5,0,0,-0.0055139 -11958,5611:469:4,-119.5,-66.5,0,0,-0.00550777 -11959,5611:469:3,-119,-66.5,0,0,-0.00551147 -11960,5611:468:4,-118.5,-66.5,0,0,-0.00552003 -11961,5611:468:3,-118,-66.5,0,0,-0.00552861 -11962,5611:467:4,-117.5,-66.5,0,0,-0.00557797 -11963,5611:467:3,-117,-66.5,0,0,-0.00564781 -11964,5611:466:4,-116.5,-66.5,0,0,-0.00567548 -11965,5611:466:3,-116,-66.5,0,0,-0.00570837 -11966,5611:465:4,-115.5,-66.5,0,0,-0.00576959 -11967,5611:465:3,-115,-66.5,0,0,-0.00581074 -11968,5611:364:4,-114.5,-66.5,0,0,-0.00580432 -11969,5611:364:3,-114,-66.5,0,0,-0.00574526 -11970,5611:363:4,-113.5,-66.5,0,0,-0.00569951 -11971,5611:363:3,-113,-66.5,0,0,-0.00565409 -11972,5611:362:4,-112.5,-66.5,0,0,-0.00562404 -11973,5611:362:3,-112,-66.5,0,0,-0.00557302 -11974,5611:361:4,-111.5,-66.5,0,0,-0.00552985 -11975,5611:361:3,-111,-66.5,0,0,-0.00550534 -11976,5611:360:4,-110.5,-66.5,0,0,-0.00547605 -11977,5611:360:3,-110,-66.5,0,0,-0.0054785 -11978,5610:469:4,-109.5,-66.5,0,0,-0.00547972 -11979,5610:469:3,-109,-66.5,0,0,-0.00548214 -11980,5610:468:4,-108.5,-66.5,0,0,-0.00548582 -11981,5610:468:3,-108,-66.5,0,0,-0.00548091 -11982,5610:467:4,-107.5,-66.5,0,0,-0.00547727 -11983,5610:467:3,-107,-66.5,0,0,-0.00547605 -11984,5610:466:4,-106.5,-66.5,0,0,-0.00547727 -11985,5610:466:3,-106,-66.5,0,0,-0.00547727 -11986,5610:465:4,-105.5,-66.5,0,0,-0.00547727 -11987,5610:465:3,-105,-66.5,0,0,-0.00547605 -11988,5610:364:4,-104.5,-66.5,0,0,-0.00547605 -11989,5610:364:3,-104,-66.5,0,0,-0.00547605 -11990,5610:363:4,-103.5,-66.5,0,0,-0.00547605 -11991,5610:363:3,-103,-66.5,0,0,-0.00547605 -11992,5610:362:4,-102.5,-66.5,0,0,-0.00547605 -11993,5610:362:3,-102,-66.5,0,0,-0.00547605 -11994,5610:361:4,-101.5,-66.5,0,0,-0.00547486 -11995,5610:361:3,-101,-66.5,0,0,-0.00547241 -11996,5610:360:4,-100.5,-66.5,0,0,-0.00547119 -11997,5610:360:3,-100,-66.5,0,0,-0.00547 -11998,5609:469:4,-99.5,-66.5,0,0,-0.00547 -11999,5609:469:3,-99,-66.5,0,0,-0.00546878 -12000,5609:468:4,-98.5,-66.5,0,0,-0.00546633 -12001,5609:468:3,-98,-66.5,0,0,-0.0054627 -12002,5609:467:4,-97.5,-66.5,0,0,-0.0054627 -12003,5609:467:3,-97,-66.5,0,0,-0.0054627 -12004,5609:466:4,-96.5,-66.5,0,0,-0.00546148 -12005,5609:466:3,-96,-66.5,0,0,-0.00546026 -12006,5609:465:4,-95.5,-66.5,0,0,-0.00546026 -12007,5609:465:3,-95,-66.5,0,0,-0.00545907 -12008,5609:364:4,-94.5,-66.5,0,0,-0.00546026 -12009,5609:364:3,-94,-66.5,0,0,-0.0054627 -12010,5609:363:4,-93.5,-66.5,0,0,-0.0054627 -12011,5609:363:3,-93,-66.5,0,0,-0.0054627 -12012,5609:362:4,-92.5,-66.5,0,0,-0.0054627 -12013,5609:362:3,-92,-66.5,0,0,-0.0054627 -12014,5609:361:4,-91.5,-66.5,0,0,-0.0054627 -12015,5609:361:3,-91,-66.5,0,0,-0.0054627 -12016,5609:360:4,-90.5,-66.5,0,0,-0.0054627 -12017,5609:360:3,-90,-66.5,0,0,-0.00546148 -12018,5608:469:4,-89.5,-66.5,0,0,-0.0054627 -12019,5608:469:3,-89,-66.5,0,0,-0.00546392 -12020,5608:468:4,-88.5,-66.5,0,0,-0.00546392 -12021,5608:468:3,-88,-66.5,0,0,-0.00546511 -12022,5608:467:4,-87.5,-66.5,0,0,-0.00546511 -12023,5608:467:3,-87,-66.5,0,0,-0.00546633 -12024,5608:466:4,-86.5,-66.5,0,0,-0.00546633 -12025,5608:466:3,-86,-66.5,0,0,-0.00546755 -12026,5608:465:4,-85.5,-66.5,0,0,-0.00546878 -12027,5608:465:3,-85,-66.5,0,0,-0.00547119 -12028,5608:364:4,-84.5,-66.5,0,0,-0.00547241 -12029,5608:364:3,-84,-66.5,0,0,-0.00547241 -12030,5608:363:4,-83.5,-66.5,0,0,-0.00547241 -12031,5608:363:3,-83,-66.5,0,0,-0.00547241 -12032,5608:362:4,-82.5,-66.5,0,0,-0.00547364 -12033,5608:362:3,-82,-66.5,0,0,-0.00547364 -12034,5608:361:4,-81.5,-66.5,0,0,-0.00547364 -12035,5608:361:3,-81,-66.5,0,0,-0.00547364 -12036,5608:360:4,-80.5,-66.5,0,0,-0.00547364 -12037,5608:360:3,-80,-66.5,0,0,-0.00547364 -12038,5607:469:4,-79.5,-66.5,0,0,-0.00547364 -12039,5607:469:3,-79,-66.5,0,0,-0.00547605 -12040,5607:468:4,-78.5,-66.5,0,0,-0.00547972 -12041,5607:468:3,-78,-66.5,0,0,-0.00548701 -12042,5607:467:4,-77.5,-66.5,0,0,-0.00549434 -12043,5607:467:3,-77,-66.5,0,0,-0.00550288 -12044,5607:466:4,-76.5,-66.5,0,0,-0.00551266 -12045,5607:466:3,-76,-66.5,0,0,-0.00552003 -12046,5607:465:4,-75.5,-66.5,0,0,-0.0055237 -12047,5607:465:3,-75,-66.5,0,0,-0.00552617 -12048,5607:364:4,-74.5,-66.5,0,0,-0.00561778 -12049,5607:364:3,-74,-66.5,0,0,-0.00572616 -12050,5607:363:4,-73.5,-66.5,0,0,-0.00579012 -12051,5607:363:3,-73,-66.5,0,0,-0.00583922 -12052,5607:362:4,-72.5,-66.5,0,0,-0.00583665 -12053,5606:469:3,-69,-66.5,0,0,-0.00564532 -12054,5606:361:3,-61,-66.5,0,0,-0.00553724 -12055,5606:360:4,-60.5,-66.5,0,0,-0.00551513 -12056,5606:360:3,-60,-66.5,0,0,-0.00549189 -12057,5605:469:4,-59.5,-66.5,0,0,-0.0054785 -12058,5605:469:3,-59,-66.5,0,0,-0.00547 -12059,5605:468:4,-58.5,-66.5,0,0,-0.00546755 -12060,5605:468:3,-58,-66.5,0,0,-0.00546633 -12061,5605:467:4,-57.5,-66.5,0,0,-0.00546633 -12062,5605:467:3,-57,-66.5,0,0,-0.00546633 -12063,5605:466:4,-56.5,-66.5,0,0,-0.00546633 -12064,5605:466:3,-56,-66.5,0,0,-0.00546755 -12065,5605:465:4,-55.5,-66.5,0,0,-0.00547 -12066,5605:465:3,-55,-66.5,0,0,-0.00547 -12067,5605:364:4,-54.5,-66.5,0,0,-0.00547 -12068,5605:364:3,-54,-66.5,0,0,-0.00546878 -12069,5605:363:4,-53.5,-66.5,0,0,-0.00546755 -12070,5605:363:3,-53,-66.5,0,0,-0.00546633 -12071,5605:362:4,-52.5,-66.5,0,0,-0.00546511 -12072,5605:362:3,-52,-66.5,0,0,-0.00546511 -12073,5605:361:4,-51.5,-66.5,0,0,-0.00546392 -12074,5605:361:3,-51,-66.5,0,0,-0.00546148 -12075,5605:360:4,-50.5,-66.5,0,0,-0.00546026 -12076,5605:360:3,-50,-66.5,0,0,-0.00546026 -12077,5604:469:4,-49.5,-66.5,0,0,-0.00546026 -12078,5604:469:3,-49,-66.5,0,0,-0.00545907 -12079,5604:468:4,-48.5,-66.5,0,0,-0.00545907 -12080,5604:468:3,-48,-66.5,0,0,-0.00545785 -12081,5604:467:4,-47.5,-66.5,0,0,-0.00545785 -12082,5604:467:3,-47,-66.5,0,0,-0.00545785 -12083,5604:466:4,-46.5,-66.5,0,0,-0.00545785 -12084,5604:466:3,-46,-66.5,0,0,-0.00545663 -12085,5604:465:4,-45.5,-66.5,0,0,-0.00545663 -12086,5604:465:3,-45,-66.5,0,0,-0.00545663 -12087,5604:364:4,-44.5,-66.5,0,0,-0.00545663 -12088,5604:364:3,-44,-66.5,0,0,-0.00545663 -12089,5604:363:4,-43.5,-66.5,0,0,-0.00545663 -12090,5604:363:3,-43,-66.5,0,0,-0.00545663 -12091,5604:362:4,-42.5,-66.5,0,0,-0.00545541 -12092,5604:362:3,-42,-66.5,0,0,-0.00545541 -12093,5604:361:4,-41.5,-66.5,0,0,-0.00545541 -12094,5604:361:3,-41,-66.5,0,0,-0.00545663 -12095,5604:360:4,-40.5,-66.5,0,0,-0.00545541 -12096,5604:360:3,-40,-66.5,0,0,-0.00545541 -12097,5603:469:4,-39.5,-66.5,0,0,-0.00545423 -12098,5603:469:3,-39,-66.5,0,0,-0.00545423 -12099,5603:468:4,-38.5,-66.5,0,0,-0.00545423 -12100,5603:468:3,-38,-66.5,0,0,-0.00545423 -12101,5603:467:4,-37.5,-66.5,0,0,-0.00545541 -12102,5603:467:3,-37,-66.5,0,0,-0.00545541 -12103,5603:466:4,-36.5,-66.5,0,0,-0.00545541 -12104,5603:466:3,-36,-66.5,0,0,-0.00545541 -12105,5603:465:4,-35.5,-66.5,0,0,-0.00545423 -12106,5603:465:3,-35,-66.5,0,0,-0.00545423 -12107,5603:364:4,-34.5,-66.5,0,0,-0.00545423 -12108,5603:364:3,-34,-66.5,0,0,-0.00545423 -12109,5603:363:4,-33.5,-66.5,0,0,-0.00545423 -12110,5603:363:3,-33,-66.5,0,0,-0.00545423 -12111,5603:362:4,-32.5,-66.5,0,0,-0.005453 -12112,5603:362:3,-32,-66.5,0,0,-0.005453 -12113,5603:361:4,-31.5,-66.5,0,0,-0.005453 -12114,5603:361:3,-31,-66.5,0,0,-0.00545179 -12115,5603:360:4,-30.5,-66.5,0,0,-0.00545179 -12116,5603:360:3,-30,-66.5,0,0,-0.00545057 -12117,5602:469:4,-29.5,-66.5,0,0,-0.00545057 -12118,5602:469:3,-29,-66.5,0,0,-0.00545057 -12119,5602:468:4,-28.5,-66.5,0,0,-0.00545057 -12120,5602:468:3,-28,-66.5,0,0,-0.00545179 -12121,5602:467:4,-27.5,-66.5,0,0,-0.00545179 -12122,5602:467:3,-27,-66.5,0,0,-0.00545179 -12123,5602:466:4,-26.5,-66.5,0,0,-0.00545057 -12124,5602:466:3,-26,-66.5,0,0,-0.00545057 -12125,5602:465:4,-25.5,-66.5,0,0,-0.00545057 -12126,5602:465:3,-25,-66.5,0,0,-0.00545057 -12127,5602:364:4,-24.5,-66.5,0,0,-0.00545057 -12128,5602:364:3,-24,-66.5,0,0,-0.00544935 -12129,5602:363:4,-23.5,-66.5,0,0,-0.00544935 -12130,5602:363:3,-23,-66.5,0,0,-0.00544935 -12131,5602:362:4,-22.5,-66.5,0,0,-0.00544935 -12132,5602:362:3,-22,-66.5,0,0,-0.00544935 -12133,5602:361:4,-21.5,-66.5,0,0,-0.00545057 -12134,5602:361:3,-21,-66.5,0,0,-0.00545179 -12135,5602:360:4,-20.5,-66.5,0,0,-0.00545179 -12136,5602:360:3,-20,-66.5,0,0,-0.00545179 -12137,5601:469:4,-19.5,-66.5,0,0,-0.00545179 -12138,5601:469:3,-19,-66.5,0,0,-0.00545179 -12139,5601:468:4,-18.5,-66.5,0,0,-0.005453 -12140,5601:468:3,-18,-66.5,0,0,-0.005453 -12141,5601:467:4,-17.5,-66.5,0,0,-0.005453 -12142,5601:467:3,-17,-66.5,0,0,-0.00545179 -12143,5601:466:4,-16.5,-66.5,0,0,-0.005453 -12144,5601:466:3,-16,-66.5,0,0,-0.005453 -12145,5601:465:4,-15.5,-66.5,0,0,-0.00545423 -12146,5601:465:3,-15,-66.5,0,0,-0.00545423 -12147,5601:364:4,-14.5,-66.5,0,0,-0.00545423 -12148,5601:364:3,-14,-66.5,0,0,-0.00545423 -12149,5601:363:4,-13.5,-66.5,0,0,-0.005453 -12150,5601:363:3,-13,-66.5,0,0,-0.005453 -12151,5601:362:4,-12.5,-66.5,0,0,-0.005453 -12152,5601:362:3,-12,-66.5,0,0,-0.00545423 -12153,5601:361:4,-11.5,-66.5,0,0,-0.00545541 -12154,5601:361:3,-11,-66.5,0,0,-0.00545423 -12155,5601:360:4,-10.5,-66.5,0,0,-0.00545423 -12156,5601:360:3,-10,-66.5,0,0,-0.00545423 -12157,5600:469:4,-9.5,-66.5,0,0,-0.00545179 -12158,5600:469:3,-9,-66.5,0,0,-0.00545057 -12159,5600:468:4,-8.5,-66.5,0,0,-0.00544935 -12160,5600:468:3,-8,-66.5,0,0,-0.00545057 -12161,5600:467:4,-7.5,-66.5,0,0,-0.00545057 -12162,5600:467:3,-7,-66.5,0,0,-0.00545179 -12163,5600:466:4,-6.5,-66.5,0,0,-0.005453 -12164,5600:466:3,-6,-66.5,0,0,-0.00545663 -12165,5600:465:4,-5.5,-66.5,0,0,-0.00546633 -12166,5600:465:3,-5,-66.5,0,0,-0.00547119 -12167,5600:364:4,-4.5,-66.5,0,0,-0.00544816 -12168,5600:364:3,-4,-66.5,0,0,-0.00545057 -12169,5600:363:4,-3.5,-66.5,0,0,-0.00544573 -12170,5600:363:3,-3,-66.5,0,0,-0.00544333 -12171,5600:362:4,-2.5,-66.5,0,0,-0.00544211 -12172,5600:362:3,-2,-66.5,0,0,-0.00544333 -12173,5600:361:4,-1.5,-66.5,0,0,-0.00544333 -12174,5600:361:3,-1,-66.5,0,0,-0.00544211 -12175,5600:360:4,-0.5,-66.5,0,0,-0.00544211 -12176,3600:360:4,0,-66.5,0,0,-0.00544573 -12177,3600:360:4,0.5,-66.5,0,0,-0.00544695 -12178,3600:361:3,1,-66.5,0,0,-0.00544816 -12179,3600:361:4,1.5,-66.5,0,0,-0.00544451 -12180,3600:362:3,2,-66.5,0,0,-0.00544211 -12181,3600:362:4,2.5,-66.5,0,0,-0.00544333 -12182,3600:363:3,3,-66.5,0,0,-0.00544333 -12183,3600:363:4,3.5,-66.5,0,0,-0.00544451 -12184,3600:364:3,4,-66.5,0,0,-0.00544935 -12185,3600:364:4,4.5,-66.5,0,0,-0.00544451 -12186,3600:465:3,5,-66.5,0,0,-0.00543363 -12187,3600:465:4,5.5,-66.5,0,0,-0.00543245 -12188,3600:466:3,6,-66.5,0,0,-0.00543363 -12189,3600:466:4,6.5,-66.5,0,0,-0.0054385 -12190,3600:467:3,7,-66.5,0,0,-0.00544333 -12191,3600:467:4,7.5,-66.5,0,0,-0.00544333 -12192,3600:468:3,8,-66.5,0,0,-0.00544573 -12193,3600:468:4,8.5,-66.5,0,0,-0.00544695 -12194,3600:469:3,9,-66.5,0,0,-0.00544695 -12195,3600:469:4,9.5,-66.5,0,0,-0.00545179 -12196,3601:360:3,10,-66.5,0,0,-0.00546633 -12197,3601:360:4,10.5,-66.5,0,0,-0.00549189 -12198,3601:361:3,11,-66.5,0,0,-0.00554092 -12199,3601:361:4,11.5,-66.5,0,0,-0.00560033 -12200,3601:362:3,12,-66.5,0,0,-0.00570075 -12201,3601:362:4,12.5,-66.5,0,0,-0.00584314 -12202,3601:363:3,13,-66.5,0,0,-0.00579916 -12203,3601:363:4,13.5,-66.5,0,0,-0.00547486 -12204,3601:465:4,15.5,-66.5,0,0,-0.00599041 -12205,3601:466:3,16,-66.5,0,0,-0.00579142 -12206,3601:466:4,16.5,-66.5,0,0,-0.00559039 -12207,3601:467:3,17,-66.5,0,0,-0.00567675 -12208,3601:467:4,17.5,-66.5,0,0,-0.00566791 -12209,3601:468:3,18,-66.5,0,0,-0.00551637 -12210,3601:468:4,18.5,-66.5,0,0,-0.00546511 -12211,3601:469:3,19,-66.5,0,0,-0.00546878 -12212,3601:469:4,19.5,-66.5,0,0,-0.00546878 -12213,3602:360:3,20,-66.5,0,0,-0.00547 -12214,3602:360:4,20.5,-66.5,0,0,-0.00546878 -12215,3602:361:3,21,-66.5,0,0,-0.00547 -12216,3602:361:4,21.5,-66.5,0,0,-0.00547 -12217,3602:362:3,22,-66.5,0,0,-0.00546878 -12218,3602:362:4,22.5,-66.5,0,0,-0.0054627 -12219,3602:363:3,23,-66.5,0,0,-0.00546392 -12220,3602:363:4,23.5,-66.5,0,0,-0.0054627 -12221,3602:364:3,24,-66.5,0,0,-0.00545663 -12222,3602:364:4,24.5,-66.5,0,0,-0.005453 -12223,3602:465:3,25,-66.5,0,0,-0.00545057 -12224,3602:465:4,25.5,-66.5,0,0,-0.005453 -12225,3602:466:3,26,-66.5,0,0,-0.005453 -12226,3602:466:4,26.5,-66.5,0,0,-0.005453 -12227,3602:467:3,27,-66.5,0,0,-0.005453 -12228,3602:467:4,27.5,-66.5,0,0,-0.005453 -12229,3602:468:3,28,-66.5,0,0,-0.00546148 -12230,3602:468:4,28.5,-66.5,0,0,-0.00566791 -12231,3602:469:3,29,-66.5,0,0,-0.00568936 -12232,3603:466:4,36.5,-66.5,0,0,-0.00554092 -12233,3603:468:3,38,-66.5,0,0,-0.00553476 -12234,3603:468:4,38.5,-66.5,0,0,-0.00551147 -12235,3603:469:3,39,-66.5,0,0,-0.00547605 -12236,3607:364:3,74,-66.5,0,0,-0.0088826 -12237,3607:364:4,74.5,-66.5,0,0,-0.00839749 -12238,3607:465:3,75,-66.5,0,0,-0.00842002 -12239,3607:465:4,75.5,-66.5,0,0,-0.00843503 -12240,3607:466:3,76,-66.5,0,0,-0.00830449 -12241,3615:469:4,159.5,-66.5,0,0,-0.00559908 -12242,3616:360:3,160,-66.5,0,0,-0.00555819 -12243,3616:360:4,160.5,-66.5,0,0,-0.0055139 -12244,3616:361:3,161,-66.5,0,0,-0.00547972 -12245,3616:361:4,161.5,-66.5,0,0,-0.00546755 -12246,3616:362:3,162,-66.5,0,0,-0.00546633 -12247,3616:362:4,162.5,-66.5,0,0,-0.00546633 -12248,3616:363:3,163,-66.5,0,0,-0.00546633 -12249,3616:363:4,163.5,-66.5,0,0,-0.00546755 -12250,3616:364:3,164,-66.5,0,0,-0.00546878 -12251,3616:364:4,164.5,-66.5,0,0,-0.00546878 -12252,3616:465:3,165,-66.5,0,0,-0.00546878 -12253,3616:465:4,165.5,-66.5,0,0,-0.00546878 -12254,3616:466:3,166,-66.5,0,0,-0.00546878 -12255,3616:466:4,166.5,-66.5,0,0,-0.00546878 -12256,3616:467:3,167,-66.5,0,0,-0.00546878 -12257,3616:467:4,167.5,-66.5,0,0,-0.00546878 -12258,3616:468:3,168,-66.5,0,0,-0.00546755 -12259,3616:468:4,168.5,-66.5,0,0,-0.00546755 -12260,3616:469:3,169,-66.5,0,0,-0.00546755 -12261,3616:469:4,169.5,-66.5,0,0,-0.00546755 -12262,3617:360:3,170,-66.5,0,0,-0.00546878 -12263,3617:360:4,170.5,-66.5,0,0,-0.00546878 -12264,3617:361:3,171,-66.5,0,0,-0.00546755 -12265,3617:361:4,171.5,-66.5,0,0,-0.00546511 -12266,3617:362:3,172,-66.5,0,0,-0.00546392 -12267,3617:362:4,172.5,-66.5,0,0,-0.00546511 -12268,3617:363:3,173,-66.5,0,0,-0.00546392 -12269,3617:363:4,173.5,-66.5,0,0,-0.00546148 -12270,3617:364:3,174,-66.5,0,0,-0.00546026 -12271,3617:364:4,174.5,-66.5,0,0,-0.00545785 -12272,3617:465:3,175,-66.5,0,0,-0.00545785 -12273,3617:465:4,175.5,-66.5,0,0,-0.00545907 -12274,3617:466:3,176,-66.5,0,0,-0.00546026 -12275,3617:466:4,176.5,-66.5,0,0,-0.00546148 -12276,3617:467:3,177,-66.5,0,0,-0.00546392 -12277,3617:467:4,177.5,-66.5,0,0,-0.00546633 -12278,3617:468:3,178,-66.5,0,0,-0.00546878 -12279,3617:468:4,178.5,-66.5,0,0,-0.00547 -12280,3617:469:3,179,-66.5,0,0,-0.00547119 -12281,3617:469:4,179.5,-66.5,0,0,-0.00547119 -12282,3618:360:3,180,-66.5,0,0,-0.00547241 -12283,5618:360:1,-180,-66,0,0,-0.00547119 -12284,5617:469:2,-179.5,-66,0,0,-0.00547241 -12285,5617:469:1,-179,-66,0,0,-0.00547364 -12286,5617:468:2,-178.5,-66,0,0,-0.00547605 -12287,5617:468:1,-178,-66,0,0,-0.00547727 -12288,5617:467:2,-177.5,-66,0,0,-0.00547727 -12289,5617:467:1,-177,-66,0,0,-0.00547727 -12290,5617:466:2,-176.5,-66,0,0,-0.00547605 -12291,5617:466:1,-176,-66,0,0,-0.00547486 -12292,5617:465:2,-175.5,-66,0,0,-0.00547364 -12293,5617:465:1,-175,-66,0,0,-0.00547241 -12294,5617:364:2,-174.5,-66,0,0,-0.00547119 -12295,5617:364:1,-174,-66,0,0,-0.00547119 -12296,5617:363:2,-173.5,-66,0,0,-0.00547 -12297,5617:363:1,-173,-66,0,0,-0.00547 -12298,5617:362:2,-172.5,-66,0,0,-0.00547 -12299,5617:362:1,-172,-66,0,0,-0.00546878 -12300,5617:361:2,-171.5,-66,0,0,-0.00546755 -12301,5617:361:1,-171,-66,0,0,-0.00546633 -12302,5617:360:2,-170.5,-66,0,0,-0.00546511 -12303,5617:360:1,-170,-66,0,0,-0.00546392 -12304,5616:469:2,-169.5,-66,0,0,-0.0054627 -12305,5616:469:1,-169,-66,0,0,-0.00546148 -12306,5616:468:2,-168.5,-66,0,0,-0.00546026 -12307,5616:468:1,-168,-66,0,0,-0.00546026 -12308,5616:467:2,-167.5,-66,0,0,-0.00546026 -12309,5616:467:1,-167,-66,0,0,-0.00545907 -12310,5616:466:2,-166.5,-66,0,0,-0.00545541 -12311,5616:466:1,-166,-66,0,0,-0.00545423 -12312,5616:465:2,-165.5,-66,0,0,-0.00545423 -12313,5616:465:1,-165,-66,0,0,-0.005453 -12314,5616:364:2,-164.5,-66,0,0,-0.005453 -12315,5616:364:1,-164,-66,0,0,-0.005453 -12316,5616:363:2,-163.5,-66,0,0,-0.005453 -12317,5616:363:1,-163,-66,0,0,-0.00545423 -12318,5616:362:2,-162.5,-66,0,0,-0.00545541 -12319,5616:362:1,-162,-66,0,0,-0.00545663 -12320,5616:361:2,-161.5,-66,0,0,-0.00545663 -12321,5616:361:1,-161,-66,0,0,-0.00545785 -12322,5616:360:2,-160.5,-66,0,0,-0.00546026 -12323,5616:360:1,-160,-66,0,0,-0.0054627 -12324,5615:469:2,-159.5,-66,0,0,-0.00546511 -12325,5615:469:1,-159,-66,0,0,-0.00546755 -12326,5615:468:2,-158.5,-66,0,0,-0.00546878 -12327,5615:468:1,-158,-66,0,0,-0.00547119 -12328,5615:467:2,-157.5,-66,0,0,-0.00547364 -12329,5615:467:1,-157,-66,0,0,-0.00547605 -12330,5615:466:2,-156.5,-66,0,0,-0.00547727 -12331,5615:466:1,-156,-66,0,0,-0.0054785 -12332,5615:465:2,-155.5,-66,0,0,-0.0054785 -12333,5615:465:1,-155,-66,0,0,-0.00547972 -12334,5615:364:2,-154.5,-66,0,0,-0.00548091 -12335,5615:364:1,-154,-66,0,0,-0.00548091 -12336,5615:363:2,-153.5,-66,0,0,-0.00548214 -12337,5615:363:1,-153,-66,0,0,-0.00548337 -12338,5615:362:2,-152.5,-66,0,0,-0.00548582 -12339,5615:362:1,-152,-66,0,0,-0.00548701 -12340,5615:361:2,-151.5,-66,0,0,-0.00548701 -12341,5615:361:1,-151,-66,0,0,-0.00548701 -12342,5615:360:2,-150.5,-66,0,0,-0.00548701 -12343,5615:360:1,-150,-66,0,0,-0.00548701 -12344,5614:469:2,-149.5,-66,0,0,-0.00548701 -12345,5614:469:1,-149,-66,0,0,-0.00548824 -12346,5614:468:2,-148.5,-66,0,0,-0.00548824 -12347,5614:468:1,-148,-66,0,0,-0.00548824 -12348,5614:467:2,-147.5,-66,0,0,-0.00549069 -12349,5614:467:1,-147,-66,0,0,-0.00549189 -12350,5614:466:2,-146.5,-66,0,0,-0.00549189 -12351,5614:466:1,-146,-66,0,0,-0.00549069 -12352,5614:465:2,-145.5,-66,0,0,-0.00548947 -12353,5614:465:1,-145,-66,0,0,-0.00548947 -12354,5614:364:2,-144.5,-66,0,0,-0.00549069 -12355,5614:364:1,-144,-66,0,0,-0.00549069 -12356,5614:363:2,-143.5,-66,0,0,-0.00548947 -12357,5614:363:1,-143,-66,0,0,-0.00548947 -12358,5614:362:2,-142.5,-66,0,0,-0.00549069 -12359,5614:362:1,-142,-66,0,0,-0.00549069 -12360,5614:361:2,-141.5,-66,0,0,-0.00550165 -12361,5614:361:1,-141,-66,0,0,-0.00551024 -12362,5614:360:2,-140.5,-66,0,0,-0.00550777 -12363,5614:360:1,-140,-66,0,0,-0.00551024 -12364,5613:469:2,-139.5,-66,0,0,-0.00551266 -12365,5613:469:1,-139,-66,0,0,-0.0055139 -12366,5613:468:2,-138.5,-66,0,0,-0.00551024 -12367,5613:468:1,-138,-66,0,0,-0.00549677 -12368,5613:467:2,-137.5,-66,0,0,-0.00549189 -12369,5613:467:1,-137,-66,0,0,-0.00548337 -12370,5613:466:2,-136.5,-66,0,0,-0.00548459 -12371,5613:466:1,-136,-66,0,0,-0.00549434 -12372,5613:465:2,-135.5,-66,0,0,-0.00550165 -12373,5613:465:1,-135,-66,0,0,-0.00550777 -12374,5613:364:2,-134.5,-66,0,0,-0.00555077 -12375,5613:364:1,-134,-66,0,0,-0.00557922 -12376,5613:363:2,-133.5,-66,0,0,-0.00562903 -12377,5613:363:1,-133,-66,0,0,-0.00563652 -12378,5613:362:2,-132.5,-66,0,0,-0.00562526 -12379,5613:362:1,-132,-66,0,0,-0.00561653 -12380,5613:361:2,-131.5,-66,0,0,-0.00561029 -12381,5613:361:1,-131,-66,0,0,-0.00569063 -12382,5613:360:2,-130.5,-66,0,0,-0.00571472 -12383,5613:360:1,-130,-66,0,0,-0.00570965 -12384,5612:469:2,-129.5,-66,0,0,-0.00570202 -12385,5612:469:1,-129,-66,0,0,-0.00569824 -12386,5612:468:2,-128.5,-66,0,0,-0.00569824 -12387,5612:468:1,-128,-66,0,0,-0.00570075 -12388,5612:467:2,-127.5,-66,0,0,-0.0057033 -12389,5612:467:1,-127,-66,0,0,-0.00568685 -12390,5612:466:2,-126.5,-66,0,0,-0.00565911 -12391,5612:466:1,-126,-66,0,0,-0.00563778 -12392,5612:465:2,-125.5,-66,0,0,-0.00562404 -12393,5612:465:1,-125,-66,0,0,-0.0056128 -12394,5612:364:2,-124.5,-66,0,0,-0.0056028 -12395,5612:364:1,-124,-66,0,0,-0.0055941 -12396,5612:363:2,-123.5,-66,0,0,-0.00558664 -12397,5612:363:1,-123,-66,0,0,-0.00557922 -12398,5612:362:2,-122.5,-66,0,0,-0.00556932 -12399,5612:362:1,-122,-66,0,0,-0.0055545 -12400,5612:361:2,-121.5,-66,0,0,-0.00553968 -12401,5612:361:1,-121,-66,0,0,-0.005536 -12402,5612:360:2,-120.5,-66,0,0,-0.00553352 -12403,5612:360:1,-120,-66,0,0,-0.00552985 -12404,5611:469:2,-119.5,-66,0,0,-0.00553108 -12405,5611:469:1,-119,-66,0,0,-0.00553724 -12406,5611:468:2,-118.5,-66,0,0,-0.0055446 -12407,5611:468:1,-118,-66,0,0,-0.00557052 -12408,5611:467:2,-117.5,-66,0,0,-0.00560903 -12409,5611:467:1,-117,-66,0,0,-0.00565156 -12410,5611:466:2,-116.5,-66,0,0,-0.00570581 -12411,5611:466:1,-116,-66,0,0,-0.00585484 -12412,5611:465:2,-115.5,-66,0,0,-0.00601709 -12413,5611:465:1,-115,-66,0,0,-0.00604122 -12414,5611:364:2,-114.5,-66,0,0,-0.00603986 -12415,5611:364:1,-114,-66,0,0,-0.00602513 -12416,5611:363:2,-113.5,-66,0,0,-0.00601439 -12417,5611:363:1,-113,-66,0,0,-0.0060318 -12418,5611:362:2,-112.5,-66,0,0,-0.00598639 -12419,5611:362:1,-112,-66,0,0,-0.00569569 -12420,5611:361:2,-111.5,-66,0,0,-0.00557177 -12421,5611:361:1,-111,-66,0,0,-0.00551756 -12422,5611:360:2,-110.5,-66,0,0,-0.00547972 -12423,5611:360:1,-110,-66,0,0,-0.00547727 -12424,5610:469:2,-109.5,-66,0,0,-0.00548701 -12425,5610:469:1,-109,-66,0,0,-0.005509 -12426,5610:468:2,-108.5,-66,0,0,-0.00559039 -12427,5610:468:1,-108,-66,0,0,-0.00567548 -12428,5610:467:2,-107.5,-66,0,0,-0.00553724 -12429,5610:467:1,-107,-66,0,0,-0.00547727 -12430,5610:466:2,-106.5,-66,0,0,-0.00547486 -12431,5610:466:1,-106,-66,0,0,-0.00547486 -12432,5610:465:2,-105.5,-66,0,0,-0.00547241 -12433,5610:465:1,-105,-66,0,0,-0.00547241 -12434,5610:364:2,-104.5,-66,0,0,-0.00547364 -12435,5610:364:1,-104,-66,0,0,-0.00547364 -12436,5610:363:2,-103.5,-66,0,0,-0.00547364 -12437,5610:363:1,-103,-66,0,0,-0.00547364 -12438,5610:362:2,-102.5,-66,0,0,-0.00547364 -12439,5610:362:1,-102,-66,0,0,-0.00547119 -12440,5610:361:2,-101.5,-66,0,0,-0.00546755 -12441,5610:361:1,-101,-66,0,0,-0.00546633 -12442,5610:360:2,-100.5,-66,0,0,-0.00546755 -12443,5610:360:1,-100,-66,0,0,-0.00546878 -12444,5609:469:2,-99.5,-66,0,0,-0.00546755 -12445,5609:469:1,-99,-66,0,0,-0.00546511 -12446,5609:468:2,-98.5,-66,0,0,-0.0054627 -12447,5609:468:1,-98,-66,0,0,-0.0054627 -12448,5609:467:2,-97.5,-66,0,0,-0.0054627 -12449,5609:467:1,-97,-66,0,0,-0.00546148 -12450,5609:466:2,-96.5,-66,0,0,-0.00546148 -12451,5609:466:1,-96,-66,0,0,-0.00546148 -12452,5609:465:2,-95.5,-66,0,0,-0.00546026 -12453,5609:465:1,-95,-66,0,0,-0.00545907 -12454,5609:364:2,-94.5,-66,0,0,-0.00546026 -12455,5609:364:1,-94,-66,0,0,-0.0054627 -12456,5609:363:2,-93.5,-66,0,0,-0.00546392 -12457,5609:363:1,-93,-66,0,0,-0.00546633 -12458,5609:362:2,-92.5,-66,0,0,-0.00546633 -12459,5609:362:1,-92,-66,0,0,-0.00546392 -12460,5609:361:2,-91.5,-66,0,0,-0.00546148 -12461,5609:361:1,-91,-66,0,0,-0.00546026 -12462,5609:360:2,-90.5,-66,0,0,-0.00546148 -12463,5609:360:1,-90,-66,0,0,-0.00546148 -12464,5608:469:2,-89.5,-66,0,0,-0.0054627 -12465,5608:469:1,-89,-66,0,0,-0.00546392 -12466,5608:468:2,-88.5,-66,0,0,-0.00546511 -12467,5608:468:1,-88,-66,0,0,-0.00546633 -12468,5608:467:2,-87.5,-66,0,0,-0.00546633 -12469,5608:467:1,-87,-66,0,0,-0.00546633 -12470,5608:466:2,-86.5,-66,0,0,-0.00546755 -12471,5608:466:1,-86,-66,0,0,-0.00546755 -12472,5608:465:2,-85.5,-66,0,0,-0.00547 -12473,5608:465:1,-85,-66,0,0,-0.00547241 -12474,5608:364:2,-84.5,-66,0,0,-0.00547364 -12475,5608:364:1,-84,-66,0,0,-0.00547486 -12476,5608:363:2,-83.5,-66,0,0,-0.00547486 -12477,5608:363:1,-83,-66,0,0,-0.00547486 -12478,5608:362:2,-82.5,-66,0,0,-0.00547486 -12479,5608:362:1,-82,-66,0,0,-0.00547486 -12480,5608:361:2,-81.5,-66,0,0,-0.00547605 -12481,5608:361:1,-81,-66,0,0,-0.00547605 -12482,5608:360:2,-80.5,-66,0,0,-0.00547605 -12483,5608:360:1,-80,-66,0,0,-0.00547605 -12484,5607:469:2,-79.5,-66,0,0,-0.00547486 -12485,5607:469:1,-79,-66,0,0,-0.00547486 -12486,5607:468:2,-78.5,-66,0,0,-0.00547727 -12487,5607:468:1,-78,-66,0,0,-0.00548214 -12488,5607:467:2,-77.5,-66,0,0,-0.00548947 -12489,5607:467:1,-77,-66,0,0,-0.00549923 -12490,5607:466:2,-76.5,-66,0,0,-0.005509 -12491,5607:466:1,-76,-66,0,0,-0.00551637 -12492,5607:465:2,-75.5,-66,0,0,-0.0055188 -12493,5607:465:1,-75,-66,0,0,-0.00552617 -12494,5607:364:2,-74.5,-66,0,0,-0.00562651 -12495,5607:364:1,-74,-66,0,0,-0.00567421 -12496,5607:363:2,-73.5,-66,0,0,-0.00572232 -12497,5607:363:1,-73,-66,0,0,-0.00575806 -12498,5607:362:2,-72.5,-66,0,0,-0.00576829 -12499,5607:360:1,-70,-66,0,0,-0.00559661 -12500,5606:469:2,-69.5,-66,0,0,-0.00560531 -12501,5606:469:1,-69,-66,0,0,-0.00562152 -12502,5606:468:2,-68.5,-66,0,0,-0.00562777 -12503,5606:361:1,-61,-66,0,0,-0.005536 -12504,5606:360:2,-60.5,-66,0,0,-0.00550777 -12505,5606:360:1,-60,-66,0,0,-0.00547972 -12506,5605:469:2,-59.5,-66,0,0,-0.00547 -12507,5605:469:1,-59,-66,0,0,-0.00546755 -12508,5605:468:2,-58.5,-66,0,0,-0.00546755 -12509,5605:468:1,-58,-66,0,0,-0.00546633 -12510,5605:467:2,-57.5,-66,0,0,-0.00546633 -12511,5605:467:1,-57,-66,0,0,-0.00546633 -12512,5605:466:2,-56.5,-66,0,0,-0.00546755 -12513,5605:466:1,-56,-66,0,0,-0.00546878 -12514,5605:465:2,-55.5,-66,0,0,-0.00547 -12515,5605:465:1,-55,-66,0,0,-0.00547 -12516,5605:364:2,-54.5,-66,0,0,-0.00547 -12517,5605:364:1,-54,-66,0,0,-0.00546878 -12518,5605:363:2,-53.5,-66,0,0,-0.00546755 -12519,5605:363:1,-53,-66,0,0,-0.00546633 -12520,5605:362:2,-52.5,-66,0,0,-0.00546511 -12521,5605:362:1,-52,-66,0,0,-0.00546392 -12522,5605:361:2,-51.5,-66,0,0,-0.00546392 -12523,5605:361:1,-51,-66,0,0,-0.0054627 -12524,5605:360:2,-50.5,-66,0,0,-0.00546148 -12525,5605:360:1,-50,-66,0,0,-0.00546026 -12526,5604:469:2,-49.5,-66,0,0,-0.00546026 -12527,5604:469:1,-49,-66,0,0,-0.00545907 -12528,5604:468:2,-48.5,-66,0,0,-0.00545907 -12529,5604:468:1,-48,-66,0,0,-0.00545907 -12530,5604:467:2,-47.5,-66,0,0,-0.00545907 -12531,5604:467:1,-47,-66,0,0,-0.00545785 -12532,5604:466:2,-46.5,-66,0,0,-0.00545785 -12533,5604:466:1,-46,-66,0,0,-0.00545785 -12534,5604:465:2,-45.5,-66,0,0,-0.00545785 -12535,5604:465:1,-45,-66,0,0,-0.00545785 -12536,5604:364:2,-44.5,-66,0,0,-0.00545663 -12537,5604:364:1,-44,-66,0,0,-0.00545663 -12538,5604:363:2,-43.5,-66,0,0,-0.00545663 -12539,5604:363:1,-43,-66,0,0,-0.00545663 -12540,5604:362:2,-42.5,-66,0,0,-0.00545663 -12541,5604:362:1,-42,-66,0,0,-0.00545663 -12542,5604:361:2,-41.5,-66,0,0,-0.00545663 -12543,5604:361:1,-41,-66,0,0,-0.00545541 -12544,5604:360:2,-40.5,-66,0,0,-0.00545541 -12545,5604:360:1,-40,-66,0,0,-0.00545423 -12546,5603:469:2,-39.5,-66,0,0,-0.005453 -12547,5603:469:1,-39,-66,0,0,-0.005453 -12548,5603:468:2,-38.5,-66,0,0,-0.00545423 -12549,5603:468:1,-38,-66,0,0,-0.00545423 -12550,5603:467:2,-37.5,-66,0,0,-0.00545423 -12551,5603:467:1,-37,-66,0,0,-0.00545541 -12552,5603:466:2,-36.5,-66,0,0,-0.00545541 -12553,5603:466:1,-36,-66,0,0,-0.00545423 -12554,5603:465:2,-35.5,-66,0,0,-0.00545423 -12555,5603:465:1,-35,-66,0,0,-0.00545423 -12556,5603:364:2,-34.5,-66,0,0,-0.00545423 -12557,5603:364:1,-34,-66,0,0,-0.00545423 -12558,5603:363:2,-33.5,-66,0,0,-0.00545423 -12559,5603:363:1,-33,-66,0,0,-0.00545423 -12560,5603:362:2,-32.5,-66,0,0,-0.00545423 -12561,5603:362:1,-32,-66,0,0,-0.00545423 -12562,5603:361:2,-31.5,-66,0,0,-0.00545423 -12563,5603:361:1,-31,-66,0,0,-0.005453 -12564,5603:360:2,-30.5,-66,0,0,-0.00545179 -12565,5603:360:1,-30,-66,0,0,-0.00545179 -12566,5602:469:2,-29.5,-66,0,0,-0.00545057 -12567,5602:469:1,-29,-66,0,0,-0.00545057 -12568,5602:468:2,-28.5,-66,0,0,-0.00545057 -12569,5602:468:1,-28,-66,0,0,-0.00545179 -12570,5602:467:2,-27.5,-66,0,0,-0.00545179 -12571,5602:467:1,-27,-66,0,0,-0.00545179 -12572,5602:466:2,-26.5,-66,0,0,-0.00545057 -12573,5602:466:1,-26,-66,0,0,-0.00545057 -12574,5602:465:2,-25.5,-66,0,0,-0.00545057 -12575,5602:465:1,-25,-66,0,0,-0.00545057 -12576,5602:364:2,-24.5,-66,0,0,-0.00544935 -12577,5602:364:1,-24,-66,0,0,-0.00544935 -12578,5602:363:2,-23.5,-66,0,0,-0.00544935 -12579,5602:363:1,-23,-66,0,0,-0.00544816 -12580,5602:362:2,-22.5,-66,0,0,-0.00544816 -12581,5602:362:1,-22,-66,0,0,-0.00544816 -12582,5602:361:2,-21.5,-66,0,0,-0.00544816 -12583,5602:361:1,-21,-66,0,0,-0.00544935 -12584,5602:360:2,-20.5,-66,0,0,-0.00544935 -12585,5602:360:1,-20,-66,0,0,-0.00545057 -12586,5601:469:2,-19.5,-66,0,0,-0.00545057 -12587,5601:469:1,-19,-66,0,0,-0.00545057 -12588,5601:468:2,-18.5,-66,0,0,-0.00545179 -12589,5601:468:1,-18,-66,0,0,-0.00545179 -12590,5601:467:2,-17.5,-66,0,0,-0.00545179 -12591,5601:467:1,-17,-66,0,0,-0.00545179 -12592,5601:466:2,-16.5,-66,0,0,-0.005453 -12593,5601:466:1,-16,-66,0,0,-0.005453 -12594,5601:465:2,-15.5,-66,0,0,-0.005453 -12595,5601:465:1,-15,-66,0,0,-0.005453 -12596,5601:364:2,-14.5,-66,0,0,-0.005453 -12597,5601:364:1,-14,-66,0,0,-0.005453 -12598,5601:363:2,-13.5,-66,0,0,-0.005453 -12599,5601:363:1,-13,-66,0,0,-0.00545179 -12600,5601:362:2,-12.5,-66,0,0,-0.00544935 -12601,5601:362:1,-12,-66,0,0,-0.00544935 -12602,5601:361:2,-11.5,-66,0,0,-0.00545057 -12603,5601:361:1,-11,-66,0,0,-0.00545179 -12604,5601:360:2,-10.5,-66,0,0,-0.00545179 -12605,5601:360:1,-10,-66,0,0,-0.00545179 -12606,5600:469:2,-9.5,-66,0,0,-0.00545057 -12607,5600:469:1,-9,-66,0,0,-0.00544816 -12608,5600:468:2,-8.5,-66,0,0,-0.00544695 -12609,5600:468:1,-8,-66,0,0,-0.00544695 -12610,5600:467:2,-7.5,-66,0,0,-0.00544816 -12611,5600:467:1,-7,-66,0,0,-0.00544935 -12612,5600:466:2,-6.5,-66,0,0,-0.00545057 -12613,5600:466:1,-6,-66,0,0,-0.00545423 -12614,5600:465:2,-5.5,-66,0,0,-0.00545907 -12615,5600:465:1,-5,-66,0,0,-0.00545663 -12616,5600:364:2,-4.5,-66,0,0,-0.00545179 -12617,5600:364:1,-4,-66,0,0,-0.005453 -12618,5600:363:2,-3.5,-66,0,0,-0.00544935 -12619,5600:363:1,-3,-66,0,0,-0.00544451 -12620,5600:362:2,-2.5,-66,0,0,-0.00543968 -12621,5600:362:1,-2,-66,0,0,-0.0054385 -12622,5600:361:2,-1.5,-66,0,0,-0.0054385 -12623,5600:361:1,-1,-66,0,0,-0.0054385 -12624,5600:360:2,-0.5,-66,0,0,-0.00543728 -12625,3600:360:2,0,-66,0,0,-0.0054385 -12626,3600:360:2,0.5,-66,0,0,-0.00543968 -12627,3600:361:1,1,-66,0,0,-0.00544089 -12628,3600:361:2,1.5,-66,0,0,-0.00544333 -12629,3600:362:1,2,-66,0,0,-0.00544333 -12630,3600:362:2,2.5,-66,0,0,-0.00544333 -12631,3600:363:1,3,-66,0,0,-0.00544333 -12632,3600:363:2,3.5,-66,0,0,-0.00544333 -12633,3600:364:1,4,-66,0,0,-0.00544333 -12634,3600:364:2,4.5,-66,0,0,-0.00544211 -12635,3600:465:1,5,-66,0,0,-0.00544211 -12636,3600:465:2,5.5,-66,0,0,-0.00543968 -12637,3600:466:1,6,-66,0,0,-0.0054385 -12638,3600:466:2,6.5,-66,0,0,-0.0054385 -12639,3600:467:1,7,-66,0,0,-0.00544211 -12640,3600:467:2,7.5,-66,0,0,-0.00544451 -12641,3600:468:1,8,-66,0,0,-0.00544573 -12642,3600:468:2,8.5,-66,0,0,-0.00544695 -12643,3600:469:1,9,-66,0,0,-0.00544695 -12644,3600:469:2,9.5,-66,0,0,-0.00544816 -12645,3601:360:1,10,-66,0,0,-0.00545057 -12646,3601:360:2,10.5,-66,0,0,-0.00545541 -12647,3601:361:1,11,-66,0,0,-0.00547119 -12648,3601:361:2,11.5,-66,0,0,-0.00552861 -12649,3601:362:1,12,-66,0,0,-0.0055237 -12650,3601:362:2,12.5,-66,0,0,-0.00547605 -12651,3601:363:1,13,-66,0,0,-0.00547241 -12652,3601:363:2,13.5,-66,0,0,-0.00547486 -12653,3601:364:1,14,-66,0,0,-0.00551637 -12654,3601:364:2,14.5,-66,0,0,-0.00557052 -12655,3601:465:1,15,-66,0,0,-0.00553724 -12656,3601:465:2,15.5,-66,0,0,-0.00550165 -12657,3601:466:1,16,-66,0,0,-0.00547486 -12658,3601:466:2,16.5,-66,0,0,-0.00547727 -12659,3601:467:1,17,-66,0,0,-0.00548091 -12660,3601:467:2,17.5,-66,0,0,-0.00547241 -12661,3601:468:1,18,-66,0,0,-0.0054627 -12662,3601:468:2,18.5,-66,0,0,-0.00546026 -12663,3601:469:1,19,-66,0,0,-0.00545785 -12664,3601:469:2,19.5,-66,0,0,-0.00545907 -12665,3602:360:1,20,-66,0,0,-0.00545785 -12666,3602:360:2,20.5,-66,0,0,-0.00545663 -12667,3602:361:1,21,-66,0,0,-0.00545785 -12668,3602:361:2,21.5,-66,0,0,-0.00545907 -12669,3602:362:1,22,-66,0,0,-0.00545907 -12670,3602:362:2,22.5,-66,0,0,-0.00545785 -12671,3602:363:1,23,-66,0,0,-0.00545907 -12672,3602:363:2,23.5,-66,0,0,-0.00545907 -12673,3602:364:1,24,-66,0,0,-0.00545663 -12674,3602:364:2,24.5,-66,0,0,-0.00545423 -12675,3602:465:1,25,-66,0,0,-0.005453 -12676,3602:465:2,25.5,-66,0,0,-0.00545423 -12677,3602:466:1,26,-66,0,0,-0.005453 -12678,3602:466:2,26.5,-66,0,0,-0.00544935 -12679,3602:467:1,27,-66,0,0,-0.00545179 -12680,3602:467:2,27.5,-66,0,0,-0.00545541 -12681,3602:468:1,28,-66,0,0,-0.00546148 -12682,3602:468:2,28.5,-66,0,0,-0.0054627 -12683,3602:469:1,29,-66,0,0,-0.00545907 -12684,3602:469:2,29.5,-66,0,0,-0.005453 -12685,3603:466:1,36,-66,0,0,-0.00555325 -12686,3603:466:2,36.5,-66,0,0,-0.00554584 -12687,3603:467:1,37,-66,0,0,-0.005536 -12688,3603:467:2,37.5,-66,0,0,-0.00553232 -12689,3603:468:1,38,-66,0,0,-0.0055139 -12690,3603:468:2,38.5,-66,0,0,-0.00549434 -12691,3603:469:1,39,-66,0,0,-0.00547727 -12692,3607:363:2,73.5,-66,0,0,-0.00875483 -12693,3607:364:1,74,-66,0,0,-0.00815418 -12694,3607:364:2,74.5,-66,0,0,-0.00783724 -12695,3607:465:1,75,-66,0,0,-0.00777639 -12696,3607:465:2,75.5,-66,0,0,-0.00799415 -12697,3607:466:1,76,-66,0,0,-0.00819792 -12698,3607:466:2,76.5,-66,0,0,-0.00828599 -12699,3607:467:1,77,-66,0,0,-0.0081924 -12700,3615:468:1,158,-66,0,0,-0.00553848 -12701,3615:468:2,158.5,-66,0,0,-0.00552617 -12702,3615:469:1,159,-66,0,0,-0.00549189 -12703,3615:469:2,159.5,-66,0,0,-0.00546511 -12704,3616:360:1,160,-66,0,0,-0.00547 -12705,3616:360:2,160.5,-66,0,0,-0.00546755 -12706,3616:361:1,161,-66,0,0,-0.00546878 -12707,3616:361:2,161.5,-66,0,0,-0.00546755 -12708,3616:362:1,162,-66,0,0,-0.00546755 -12709,3616:362:2,162.5,-66,0,0,-0.00546755 -12710,3616:363:1,163,-66,0,0,-0.00547 -12711,3616:363:2,163.5,-66,0,0,-0.00547119 -12712,3616:364:1,164,-66,0,0,-0.00547241 -12713,3616:364:2,164.5,-66,0,0,-0.00547241 -12714,3616:465:1,165,-66,0,0,-0.00547119 -12715,3616:465:2,165.5,-66,0,0,-0.00547119 -12716,3616:466:1,166,-66,0,0,-0.00547119 -12717,3616:466:2,166.5,-66,0,0,-0.00547 -12718,3616:467:1,167,-66,0,0,-0.00547 -12719,3616:467:2,167.5,-66,0,0,-0.00546878 -12720,3616:468:1,168,-66,0,0,-0.00546878 -12721,3616:468:2,168.5,-66,0,0,-0.00546878 -12722,3616:469:1,169,-66,0,0,-0.00547 -12723,3616:469:2,169.5,-66,0,0,-0.00547 -12724,3617:360:1,170,-66,0,0,-0.00547 -12725,3617:360:2,170.5,-66,0,0,-0.00546878 -12726,3617:361:1,171,-66,0,0,-0.00546511 -12727,3617:361:2,171.5,-66,0,0,-0.00546392 -12728,3617:362:1,172,-66,0,0,-0.00546392 -12729,3617:362:2,172.5,-66,0,0,-0.00546511 -12730,3617:363:1,173,-66,0,0,-0.0054627 -12731,3617:363:2,173.5,-66,0,0,-0.00546148 -12732,3617:364:1,174,-66,0,0,-0.00545907 -12733,3617:364:2,174.5,-66,0,0,-0.00545785 -12734,3617:465:1,175,-66,0,0,-0.00545907 -12735,3617:465:2,175.5,-66,0,0,-0.00545907 -12736,3617:466:1,176,-66,0,0,-0.00546026 -12737,3617:466:2,176.5,-66,0,0,-0.00546026 -12738,3617:467:1,177,-66,0,0,-0.0054627 -12739,3617:467:2,177.5,-66,0,0,-0.00546511 -12740,3617:468:1,178,-66,0,0,-0.00546755 -12741,3617:468:2,178.5,-66,0,0,-0.00547 -12742,3617:469:1,179,-66,0,0,-0.00547 -12743,3617:469:2,179.5,-66,0,0,-0.00547 -12744,3618:360:1,180,-66,0,0,-0.00547119 -12745,5618:350:3,-180,-65.5,0,0,-0.00547 -12746,5617:459:4,-179.5,-65.5,0,0,-0.00547119 -12747,5617:459:3,-179,-65.5,0,0,-0.00547241 -12748,5617:458:4,-178.5,-65.5,0,0,-0.00547364 -12749,5617:458:3,-178,-65.5,0,0,-0.00547486 -12750,5617:457:4,-177.5,-65.5,0,0,-0.00547605 -12751,5617:457:3,-177,-65.5,0,0,-0.00547605 -12752,5617:456:4,-176.5,-65.5,0,0,-0.00547486 -12753,5617:456:3,-176,-65.5,0,0,-0.00547364 -12754,5617:455:4,-175.5,-65.5,0,0,-0.00547364 -12755,5617:455:3,-175,-65.5,0,0,-0.00547241 -12756,5617:354:4,-174.5,-65.5,0,0,-0.00547241 -12757,5617:354:3,-174,-65.5,0,0,-0.00547119 -12758,5617:353:4,-173.5,-65.5,0,0,-0.00547119 -12759,5617:353:3,-173,-65.5,0,0,-0.00547119 -12760,5617:352:4,-172.5,-65.5,0,0,-0.00547 -12761,5617:352:3,-172,-65.5,0,0,-0.00546878 -12762,5617:351:4,-171.5,-65.5,0,0,-0.00546755 -12763,5617:351:3,-171,-65.5,0,0,-0.00546755 -12764,5617:350:4,-170.5,-65.5,0,0,-0.00546633 -12765,5617:350:3,-170,-65.5,0,0,-0.00546511 -12766,5616:459:4,-169.5,-65.5,0,0,-0.00546392 -12767,5616:459:3,-169,-65.5,0,0,-0.0054627 -12768,5616:458:4,-168.5,-65.5,0,0,-0.00546148 -12769,5616:458:3,-168,-65.5,0,0,-0.00546026 -12770,5616:457:4,-167.5,-65.5,0,0,-0.00546026 -12771,5616:457:3,-167,-65.5,0,0,-0.00546026 -12772,5616:456:4,-166.5,-65.5,0,0,-0.00545785 -12773,5616:456:3,-166,-65.5,0,0,-0.00545663 -12774,5616:455:4,-165.5,-65.5,0,0,-0.00545541 -12775,5616:455:3,-165,-65.5,0,0,-0.00545541 -12776,5616:354:4,-164.5,-65.5,0,0,-0.00545541 -12777,5616:354:3,-164,-65.5,0,0,-0.00545541 -12778,5616:353:4,-163.5,-65.5,0,0,-0.00545541 -12779,5616:353:3,-163,-65.5,0,0,-0.00545541 -12780,5616:352:4,-162.5,-65.5,0,0,-0.00545663 -12781,5616:352:3,-162,-65.5,0,0,-0.00545785 -12782,5616:351:4,-161.5,-65.5,0,0,-0.00545907 -12783,5616:351:3,-161,-65.5,0,0,-0.00545907 -12784,5616:350:4,-160.5,-65.5,0,0,-0.00546148 -12785,5616:350:3,-160,-65.5,0,0,-0.00546392 -12786,5615:459:4,-159.5,-65.5,0,0,-0.00546633 -12787,5615:459:3,-159,-65.5,0,0,-0.00546878 -12788,5615:458:4,-158.5,-65.5,0,0,-0.00547119 -12789,5615:458:3,-158,-65.5,0,0,-0.00547241 -12790,5615:457:4,-157.5,-65.5,0,0,-0.00547364 -12791,5615:457:3,-157,-65.5,0,0,-0.00547486 -12792,5615:456:4,-156.5,-65.5,0,0,-0.00547605 -12793,5615:456:3,-156,-65.5,0,0,-0.00547727 -12794,5615:455:4,-155.5,-65.5,0,0,-0.0054785 -12795,5615:455:3,-155,-65.5,0,0,-0.00547972 -12796,5615:354:4,-154.5,-65.5,0,0,-0.00548091 -12797,5615:354:3,-154,-65.5,0,0,-0.00548214 -12798,5615:353:4,-153.5,-65.5,0,0,-0.00548337 -12799,5615:353:3,-153,-65.5,0,0,-0.00548459 -12800,5615:352:4,-152.5,-65.5,0,0,-0.00548582 -12801,5615:352:3,-152,-65.5,0,0,-0.00548701 -12802,5615:351:4,-151.5,-65.5,0,0,-0.00548701 -12803,5615:351:3,-151,-65.5,0,0,-0.00548701 -12804,5615:350:4,-150.5,-65.5,0,0,-0.00548582 -12805,5615:350:3,-150,-65.5,0,0,-0.00548459 -12806,5614:459:4,-149.5,-65.5,0,0,-0.00548582 -12807,5614:459:3,-149,-65.5,0,0,-0.00548824 -12808,5614:458:4,-148.5,-65.5,0,0,-0.00548947 -12809,5614:458:3,-148,-65.5,0,0,-0.00548947 -12810,5614:457:4,-147.5,-65.5,0,0,-0.00549069 -12811,5614:457:3,-147,-65.5,0,0,-0.00549189 -12812,5614:456:4,-146.5,-65.5,0,0,-0.00549069 -12813,5614:456:3,-146,-65.5,0,0,-0.00548947 -12814,5614:455:4,-145.5,-65.5,0,0,-0.00548824 -12815,5614:455:3,-145,-65.5,0,0,-0.00548824 -12816,5614:354:4,-144.5,-65.5,0,0,-0.00548947 -12817,5614:354:3,-144,-65.5,0,0,-0.00548947 -12818,5614:353:4,-143.5,-65.5,0,0,-0.00548824 -12819,5614:353:3,-143,-65.5,0,0,-0.00548824 -12820,5614:352:4,-142.5,-65.5,0,0,-0.00548824 -12821,5614:352:3,-142,-65.5,0,0,-0.00548947 -12822,5614:351:4,-141.5,-65.5,0,0,-0.00548824 -12823,5614:351:3,-141,-65.5,0,0,-0.00550777 -12824,5614:350:4,-140.5,-65.5,0,0,-0.00549312 -12825,5614:350:3,-140,-65.5,0,0,-0.00549069 -12826,5613:459:4,-139.5,-65.5,0,0,-0.00549312 -12827,5613:459:3,-139,-65.5,0,0,-0.00549557 -12828,5613:458:4,-138.5,-65.5,0,0,-0.00549557 -12829,5613:458:3,-138,-65.5,0,0,-0.00549189 -12830,5613:457:4,-137.5,-65.5,0,0,-0.00548947 -12831,5613:457:3,-137,-65.5,0,0,-0.00548947 -12832,5613:456:4,-136.5,-65.5,0,0,-0.00548824 -12833,5613:456:3,-136,-65.5,0,0,-0.00548947 -12834,5613:455:4,-135.5,-65.5,0,0,-0.00550288 -12835,5613:455:3,-135,-65.5,0,0,-0.00551637 -12836,5613:354:4,-134.5,-65.5,0,0,-0.00552127 -12837,5613:354:3,-134,-65.5,0,0,-0.00557922 -12838,5613:353:4,-133.5,-65.5,0,0,-0.00565785 -12839,5613:353:3,-133,-65.5,0,0,-0.005619 -12840,5613:352:4,-132.5,-65.5,0,0,-0.00567045 -12841,5613:352:3,-132,-65.5,0,0,-0.00566414 -12842,5613:351:4,-131.5,-65.5,0,0,-0.00564907 -12843,5613:351:3,-131,-65.5,0,0,-0.00570075 -12844,5613:350:4,-130.5,-65.5,0,0,-0.00570965 -12845,5613:350:3,-130,-65.5,0,0,-0.00570075 -12846,5612:459:4,-129.5,-65.5,0,0,-0.00569696 -12847,5612:459:3,-129,-65.5,0,0,-0.00570581 -12848,5612:458:4,-128.5,-65.5,0,0,-0.00570837 -12849,5612:458:3,-128,-65.5,0,0,-0.00570965 -12850,5612:457:4,-127.5,-65.5,0,0,-0.00571216 -12851,5612:457:3,-127,-65.5,0,0,-0.00570458 -12852,5612:456:4,-126.5,-65.5,0,0,-0.00568307 -12853,5612:456:3,-126,-65.5,0,0,-0.00565911 -12854,5612:455:4,-125.5,-65.5,0,0,-0.00564405 -12855,5612:455:3,-125,-65.5,0,0,-0.00563778 -12856,5612:354:4,-124.5,-65.5,0,0,-0.00563404 -12857,5612:354:3,-124,-65.5,0,0,-0.00562404 -12858,5612:353:4,-123.5,-65.5,0,0,-0.0056128 -12859,5612:353:3,-123,-65.5,0,0,-0.00560781 -12860,5612:352:4,-122.5,-65.5,0,0,-0.00560405 -12861,5612:352:3,-122,-65.5,0,0,-0.00559536 -12862,5612:351:4,-121.5,-65.5,0,0,-0.00558168 -12863,5612:351:3,-121,-65.5,0,0,-0.00557177 -12864,5612:350:4,-120.5,-65.5,0,0,-0.00556558 -12865,5612:350:3,-120,-65.5,0,0,-0.00555694 -12866,5611:459:4,-119.5,-65.5,0,0,-0.00555201 -12867,5611:459:3,-119,-65.5,0,0,-0.00555201 -12868,5611:458:4,-118.5,-65.5,0,0,-0.00555077 -12869,5611:458:3,-118,-65.5,0,0,-0.00554708 -12870,5611:457:4,-117.5,-65.5,0,0,-0.00555325 -12871,5611:457:3,-117,-65.5,0,0,-0.00573378 -12872,5611:456:4,-116.5,-65.5,0,0,-0.005767 -12873,5611:456:3,-116,-65.5,0,0,-0.0058172 -12874,5611:455:4,-115.5,-65.5,0,0,-0.00594661 -12875,5611:455:3,-115,-65.5,0,0,-0.00605734 -12876,5611:354:4,-114.5,-65.5,0,0,-0.00606137 -12877,5611:354:3,-114,-65.5,0,0,-0.00606948 -12878,5611:353:4,-113.5,-65.5,0,0,-0.0060965 -12879,5611:353:3,-113,-65.5,0,0,-0.00608704 -12880,5611:352:4,-112.5,-65.5,0,0,-0.00605196 -12881,5611:352:3,-112,-65.5,0,0,-0.00582237 -12882,5611:351:4,-111.5,-65.5,0,0,-0.00560531 -12883,5611:351:3,-111,-65.5,0,0,-0.00555694 -12884,5611:350:4,-110.5,-65.5,0,0,-0.00553476 -12885,5611:350:3,-110,-65.5,0,0,-0.00552494 -12886,5610:459:4,-109.5,-65.5,0,0,-0.00552494 -12887,5610:459:3,-109,-65.5,0,0,-0.00560903 -12888,5610:458:4,-108.5,-65.5,0,0,-0.00621835 -12889,5610:458:3,-108,-65.5,0,0,-0.00615097 -12890,5610:457:4,-107.5,-65.5,0,0,-0.00586526 -12891,5610:457:3,-107,-65.5,0,0,-0.00557052 -12892,5610:456:4,-106.5,-65.5,0,0,-0.00548824 -12893,5610:456:3,-106,-65.5,0,0,-0.00547 -12894,5610:455:4,-105.5,-65.5,0,0,-0.00546633 -12895,5610:455:3,-105,-65.5,0,0,-0.00547119 -12896,5610:354:4,-104.5,-65.5,0,0,-0.00547 -12897,5610:354:3,-104,-65.5,0,0,-0.00546878 -12898,5610:353:4,-103.5,-65.5,0,0,-0.00546633 -12899,5610:353:3,-103,-65.5,0,0,-0.00546633 -12900,5610:352:4,-102.5,-65.5,0,0,-0.00546511 -12901,5610:352:3,-102,-65.5,0,0,-0.00546392 -12902,5610:351:4,-101.5,-65.5,0,0,-0.00546633 -12903,5610:351:3,-101,-65.5,0,0,-0.00546878 -12904,5610:350:4,-100.5,-65.5,0,0,-0.00547 -12905,5610:350:3,-100,-65.5,0,0,-0.00546878 -12906,5609:459:4,-99.5,-65.5,0,0,-0.00546633 -12907,5609:459:3,-99,-65.5,0,0,-0.00546511 -12908,5609:458:4,-98.5,-65.5,0,0,-0.00546511 -12909,5609:458:3,-98,-65.5,0,0,-0.00546392 -12910,5609:457:4,-97.5,-65.5,0,0,-0.0054627 -12911,5609:457:3,-97,-65.5,0,0,-0.0054627 -12912,5609:456:4,-96.5,-65.5,0,0,-0.0054627 -12913,5609:456:3,-96,-65.5,0,0,-0.00546148 -12914,5609:455:4,-95.5,-65.5,0,0,-0.00546026 -12915,5609:455:3,-95,-65.5,0,0,-0.00545785 -12916,5609:354:4,-94.5,-65.5,0,0,-0.00545907 -12917,5609:354:3,-94,-65.5,0,0,-0.00545907 -12918,5609:353:4,-93.5,-65.5,0,0,-0.00546026 -12919,5609:353:3,-93,-65.5,0,0,-0.0054627 -12920,5609:352:4,-92.5,-65.5,0,0,-0.00546511 -12921,5609:352:3,-92,-65.5,0,0,-0.00546392 -12922,5609:351:4,-91.5,-65.5,0,0,-0.00546026 -12923,5609:351:3,-91,-65.5,0,0,-0.00545907 -12924,5609:350:4,-90.5,-65.5,0,0,-0.00546026 -12925,5609:350:3,-90,-65.5,0,0,-0.00546026 -12926,5608:459:4,-89.5,-65.5,0,0,-0.00546148 -12927,5608:459:3,-89,-65.5,0,0,-0.0054627 -12928,5608:458:4,-88.5,-65.5,0,0,-0.00546392 -12929,5608:458:3,-88,-65.5,0,0,-0.00546511 -12930,5608:457:4,-87.5,-65.5,0,0,-0.00546633 -12931,5608:457:3,-87,-65.5,0,0,-0.00546633 -12932,5608:456:4,-86.5,-65.5,0,0,-0.00546633 -12933,5608:456:3,-86,-65.5,0,0,-0.00546755 -12934,5608:455:4,-85.5,-65.5,0,0,-0.00547 -12935,5608:455:3,-85,-65.5,0,0,-0.00547241 -12936,5608:354:4,-84.5,-65.5,0,0,-0.00547486 -12937,5608:354:3,-84,-65.5,0,0,-0.00547486 -12938,5608:353:4,-83.5,-65.5,0,0,-0.00547486 -12939,5608:353:3,-83,-65.5,0,0,-0.00547605 -12940,5608:352:4,-82.5,-65.5,0,0,-0.00547605 -12941,5608:352:3,-82,-65.5,0,0,-0.00547727 -12942,5608:351:4,-81.5,-65.5,0,0,-0.00547727 -12943,5608:351:3,-81,-65.5,0,0,-0.00547727 -12944,5608:350:4,-80.5,-65.5,0,0,-0.00547727 -12945,5608:350:3,-80,-65.5,0,0,-0.00547605 -12946,5607:459:4,-79.5,-65.5,0,0,-0.00547605 -12947,5607:459:3,-79,-65.5,0,0,-0.00547727 -12948,5607:458:4,-78.5,-65.5,0,0,-0.00547727 -12949,5607:458:3,-78,-65.5,0,0,-0.0054785 -12950,5607:457:4,-77.5,-65.5,0,0,-0.00548337 -12951,5607:457:3,-77,-65.5,0,0,-0.00549312 -12952,5607:456:4,-76.5,-65.5,0,0,-0.00550288 -12953,5607:456:3,-76,-65.5,0,0,-0.00550777 -12954,5607:455:4,-75.5,-65.5,0,0,-0.00551147 -12955,5607:455:3,-75,-65.5,0,0,-0.0055139 -12956,5607:354:4,-74.5,-65.5,0,0,-0.00551637 -12957,5607:354:3,-74,-65.5,0,0,-0.00554708 -12958,5607:353:4,-73.5,-65.5,0,0,-0.00563277 -12959,5607:353:3,-73,-65.5,0,0,-0.00566918 -12960,5607:352:4,-72.5,-65.5,0,0,-0.00569318 -12961,5607:352:3,-72,-65.5,0,0,-0.00570075 -12962,5607:350:3,-70,-65.5,0,0,-0.00559039 -12963,5606:459:4,-69.5,-65.5,0,0,-0.00558543 -12964,5606:459:3,-69,-65.5,0,0,-0.00559039 -12965,5606:458:4,-68.5,-65.5,0,0,-0.00560781 -12966,5606:458:3,-68,-65.5,0,0,-0.00561653 -12967,5606:457:4,-67.5,-65.5,0,0,-0.00565033 -12968,5606:351:3,-61,-65.5,0,0,-0.00553108 -12969,5606:350:4,-60.5,-65.5,0,0,-0.0055237 -12970,5606:350:3,-60,-65.5,0,0,-0.00549677 -12971,5605:459:4,-59.5,-65.5,0,0,-0.00548214 -12972,5605:459:3,-59,-65.5,0,0,-0.00547605 -12973,5605:458:4,-58.5,-65.5,0,0,-0.00547119 -12974,5605:458:3,-58,-65.5,0,0,-0.00546878 -12975,5605:457:4,-57.5,-65.5,0,0,-0.00546633 -12976,5605:457:3,-57,-65.5,0,0,-0.00546633 -12977,5605:456:4,-56.5,-65.5,0,0,-0.00546755 -12978,5605:456:3,-56,-65.5,0,0,-0.00546878 -12979,5605:455:4,-55.5,-65.5,0,0,-0.00546878 -12980,5605:455:3,-55,-65.5,0,0,-0.00546878 -12981,5605:354:4,-54.5,-65.5,0,0,-0.00546878 -12982,5605:354:3,-54,-65.5,0,0,-0.00546878 -12983,5605:353:4,-53.5,-65.5,0,0,-0.00546755 -12984,5605:353:3,-53,-65.5,0,0,-0.00546633 -12985,5605:352:4,-52.5,-65.5,0,0,-0.00546511 -12986,5605:352:3,-52,-65.5,0,0,-0.00546392 -12987,5605:351:4,-51.5,-65.5,0,0,-0.0054627 -12988,5605:351:3,-51,-65.5,0,0,-0.00546148 -12989,5605:350:4,-50.5,-65.5,0,0,-0.00546026 -12990,5605:350:3,-50,-65.5,0,0,-0.00546026 -12991,5604:459:4,-49.5,-65.5,0,0,-0.00546026 -12992,5604:459:3,-49,-65.5,0,0,-0.00546026 -12993,5604:458:4,-48.5,-65.5,0,0,-0.00546026 -12994,5604:458:3,-48,-65.5,0,0,-0.00545907 -12995,5604:457:4,-47.5,-65.5,0,0,-0.00545907 -12996,5604:457:3,-47,-65.5,0,0,-0.00545907 -12997,5604:456:4,-46.5,-65.5,0,0,-0.00545907 -12998,5604:456:3,-46,-65.5,0,0,-0.00545907 -12999,5604:455:4,-45.5,-65.5,0,0,-0.00545907 -13000,5604:455:3,-45,-65.5,0,0,-0.00545785 -13001,5604:354:4,-44.5,-65.5,0,0,-0.00545785 -13002,5604:354:3,-44,-65.5,0,0,-0.00545785 -13003,5604:353:4,-43.5,-65.5,0,0,-0.00545785 -13004,5604:353:3,-43,-65.5,0,0,-0.00545785 -13005,5604:352:4,-42.5,-65.5,0,0,-0.00545785 -13006,5604:352:3,-42,-65.5,0,0,-0.00545663 -13007,5604:351:4,-41.5,-65.5,0,0,-0.00545663 -13008,5604:351:3,-41,-65.5,0,0,-0.00545541 -13009,5604:350:4,-40.5,-65.5,0,0,-0.00545423 -13010,5604:350:3,-40,-65.5,0,0,-0.005453 -13011,5603:459:4,-39.5,-65.5,0,0,-0.00545423 -13012,5603:459:3,-39,-65.5,0,0,-0.00545423 -13013,5603:458:4,-38.5,-65.5,0,0,-0.00545423 -13014,5603:458:3,-38,-65.5,0,0,-0.00545423 -13015,5603:457:4,-37.5,-65.5,0,0,-0.00545541 -13016,5603:457:3,-37,-65.5,0,0,-0.00545541 -13017,5603:456:4,-36.5,-65.5,0,0,-0.00545423 -13018,5603:456:3,-36,-65.5,0,0,-0.00545423 -13019,5603:455:4,-35.5,-65.5,0,0,-0.00545423 -13020,5603:455:3,-35,-65.5,0,0,-0.00545541 -13021,5603:354:4,-34.5,-65.5,0,0,-0.00545541 -13022,5603:354:3,-34,-65.5,0,0,-0.00545541 -13023,5603:353:4,-33.5,-65.5,0,0,-0.00545423 -13024,5603:353:3,-33,-65.5,0,0,-0.00545423 -13025,5603:352:4,-32.5,-65.5,0,0,-0.00545541 -13026,5603:352:3,-32,-65.5,0,0,-0.00545423 -13027,5603:351:4,-31.5,-65.5,0,0,-0.00545423 -13028,5603:351:3,-31,-65.5,0,0,-0.005453 -13029,5603:350:4,-30.5,-65.5,0,0,-0.005453 -13030,5603:350:3,-30,-65.5,0,0,-0.00545179 -13031,5602:459:4,-29.5,-65.5,0,0,-0.00545179 -13032,5602:459:3,-29,-65.5,0,0,-0.00545179 -13033,5602:458:4,-28.5,-65.5,0,0,-0.00545179 -13034,5602:458:3,-28,-65.5,0,0,-0.00545179 -13035,5602:457:4,-27.5,-65.5,0,0,-0.00545179 -13036,5602:457:3,-27,-65.5,0,0,-0.00545179 -13037,5602:456:4,-26.5,-65.5,0,0,-0.00545179 -13038,5602:456:3,-26,-65.5,0,0,-0.00545179 -13039,5602:455:4,-25.5,-65.5,0,0,-0.00545179 -13040,5602:455:3,-25,-65.5,0,0,-0.00545057 -13041,5602:354:4,-24.5,-65.5,0,0,-0.00545057 -13042,5602:354:3,-24,-65.5,0,0,-0.00544935 -13043,5602:353:4,-23.5,-65.5,0,0,-0.00544935 -13044,5602:353:3,-23,-65.5,0,0,-0.00544816 -13045,5602:352:4,-22.5,-65.5,0,0,-0.00544816 -13046,5602:352:3,-22,-65.5,0,0,-0.00544816 -13047,5602:351:4,-21.5,-65.5,0,0,-0.00544816 -13048,5602:351:3,-21,-65.5,0,0,-0.00544816 -13049,5602:350:4,-20.5,-65.5,0,0,-0.00544816 -13050,5602:350:3,-20,-65.5,0,0,-0.00544935 -13051,5601:459:4,-19.5,-65.5,0,0,-0.00544935 -13052,5601:459:3,-19,-65.5,0,0,-0.00544935 -13053,5601:458:4,-18.5,-65.5,0,0,-0.00545057 -13054,5601:458:3,-18,-65.5,0,0,-0.00545057 -13055,5601:457:4,-17.5,-65.5,0,0,-0.00545057 -13056,5601:457:3,-17,-65.5,0,0,-0.00545057 -13057,5601:456:4,-16.5,-65.5,0,0,-0.00545057 -13058,5601:456:3,-16,-65.5,0,0,-0.00545179 -13059,5601:455:4,-15.5,-65.5,0,0,-0.00545057 -13060,5601:455:3,-15,-65.5,0,0,-0.00545057 -13061,5601:354:4,-14.5,-65.5,0,0,-0.00545179 -13062,5601:354:3,-14,-65.5,0,0,-0.00545179 -13063,5601:353:4,-13.5,-65.5,0,0,-0.00545179 -13064,5601:353:3,-13,-65.5,0,0,-0.00545057 -13065,5601:352:4,-12.5,-65.5,0,0,-0.00544935 -13066,5601:352:3,-12,-65.5,0,0,-0.00544816 -13067,5601:351:4,-11.5,-65.5,0,0,-0.00544816 -13068,5601:351:3,-11,-65.5,0,0,-0.00544695 -13069,5601:350:4,-10.5,-65.5,0,0,-0.00544573 -13070,5601:350:3,-10,-65.5,0,0,-0.00544573 -13071,5600:459:4,-9.5,-65.5,0,0,-0.00544451 -13072,5600:459:3,-9,-65.5,0,0,-0.00544333 -13073,5600:458:4,-8.5,-65.5,0,0,-0.00544333 -13074,5600:458:3,-8,-65.5,0,0,-0.00544451 -13075,5600:457:4,-7.5,-65.5,0,0,-0.00544573 -13076,5600:457:3,-7,-65.5,0,0,-0.00544695 -13077,5600:456:4,-6.5,-65.5,0,0,-0.00544816 -13078,5600:456:3,-6,-65.5,0,0,-0.00545057 -13079,5600:455:4,-5.5,-65.5,0,0,-0.00545423 -13080,5600:455:3,-5,-65.5,0,0,-0.005453 -13081,5600:354:4,-4.5,-65.5,0,0,-0.00545179 -13082,5600:354:3,-4,-65.5,0,0,-0.00545179 -13083,5600:353:4,-3.5,-65.5,0,0,-0.00544935 -13084,5600:353:3,-3,-65.5,0,0,-0.00544695 -13085,5600:352:4,-2.5,-65.5,0,0,-0.00544211 -13086,5600:352:3,-2,-65.5,0,0,-0.00543728 -13087,5600:351:4,-1.5,-65.5,0,0,-0.00543728 -13088,5600:351:3,-1,-65.5,0,0,-0.00543728 -13089,5600:350:4,-0.5,-65.5,0,0,-0.00543728 -13090,3600:350:4,0,-65.5,0,0,-0.00543968 -13091,3600:350:4,0.5,-65.5,0,0,-0.00544089 -13092,3600:351:3,1,-65.5,0,0,-0.00544211 -13093,3600:351:4,1.5,-65.5,0,0,-0.00544573 -13094,3600:352:3,2,-65.5,0,0,-0.00544573 -13095,3600:352:4,2.5,-65.5,0,0,-0.00544333 -13096,3600:353:3,3,-65.5,0,0,-0.00544211 -13097,3600:353:4,3.5,-65.5,0,0,-0.00544089 -13098,3600:354:3,4,-65.5,0,0,-0.00544089 -13099,3600:354:4,4.5,-65.5,0,0,-0.00543968 -13100,3600:455:3,5,-65.5,0,0,-0.00543968 -13101,3600:455:4,5.5,-65.5,0,0,-0.00544089 -13102,3600:456:3,6,-65.5,0,0,-0.00544089 -13103,3600:456:4,6.5,-65.5,0,0,-0.00544211 -13104,3600:457:3,7,-65.5,0,0,-0.00544211 -13105,3600:457:4,7.5,-65.5,0,0,-0.00544333 -13106,3600:458:3,8,-65.5,0,0,-0.00544451 -13107,3600:458:4,8.5,-65.5,0,0,-0.00544695 -13108,3600:459:3,9,-65.5,0,0,-0.00544816 -13109,3600:459:4,9.5,-65.5,0,0,-0.00544935 -13110,3601:350:3,10,-65.5,0,0,-0.00545179 -13111,3601:350:4,10.5,-65.5,0,0,-0.00545663 -13112,3601:351:3,11,-65.5,0,0,-0.00545907 -13113,3601:351:4,11.5,-65.5,0,0,-0.00546026 -13114,3601:352:3,12,-65.5,0,0,-0.00547486 -13115,3601:352:4,12.5,-65.5,0,0,-0.00547486 -13116,3601:353:3,13,-65.5,0,0,-0.00548214 -13117,3601:353:4,13.5,-65.5,0,0,-0.0054785 -13118,3601:354:3,14,-65.5,0,0,-0.00547241 -13119,3601:354:4,14.5,-65.5,0,0,-0.00546878 -13120,3601:455:3,15,-65.5,0,0,-0.00546633 -13121,3601:455:4,15.5,-65.5,0,0,-0.00546755 -13122,3601:456:3,16,-65.5,0,0,-0.00546878 -13123,3601:456:4,16.5,-65.5,0,0,-0.00546878 -13124,3601:457:3,17,-65.5,0,0,-0.00546878 -13125,3601:457:4,17.5,-65.5,0,0,-0.00546511 -13126,3601:458:3,18,-65.5,0,0,-0.00545785 -13127,3601:458:4,18.5,-65.5,0,0,-0.00545423 -13128,3601:459:3,19,-65.5,0,0,-0.00545541 -13129,3601:459:4,19.5,-65.5,0,0,-0.00545663 -13130,3602:350:3,20,-65.5,0,0,-0.00545663 -13131,3602:350:4,20.5,-65.5,0,0,-0.00545541 -13132,3602:351:3,21,-65.5,0,0,-0.00545663 -13133,3602:351:4,21.5,-65.5,0,0,-0.00545785 -13134,3602:352:3,22,-65.5,0,0,-0.00545663 -13135,3602:352:4,22.5,-65.5,0,0,-0.00545541 -13136,3602:353:3,23,-65.5,0,0,-0.00545541 -13137,3602:353:4,23.5,-65.5,0,0,-0.00545541 -13138,3602:354:3,24,-65.5,0,0,-0.00545541 -13139,3602:354:4,24.5,-65.5,0,0,-0.00545423 -13140,3602:455:3,25,-65.5,0,0,-0.00545423 -13141,3602:455:4,25.5,-65.5,0,0,-0.00545541 -13142,3602:456:3,26,-65.5,0,0,-0.00545541 -13143,3602:456:4,26.5,-65.5,0,0,-0.00545423 -13144,3602:457:3,27,-65.5,0,0,-0.005453 -13145,3602:457:4,27.5,-65.5,0,0,-0.005453 -13146,3602:458:3,28,-65.5,0,0,-0.005453 -13147,3602:458:4,28.5,-65.5,0,0,-0.00545663 -13148,3602:459:3,29,-65.5,0,0,-0.00545541 -13149,3602:459:4,29.5,-65.5,0,0,-0.00545179 -13150,3603:350:3,30,-65.5,0,0,-0.00544935 -13151,3603:350:4,30.5,-65.5,0,0,-0.00545179 -13152,3603:351:3,31,-65.5,0,0,-0.00547605 -13153,3603:351:4,31.5,-65.5,0,0,-0.00549189 -13154,3603:352:3,32,-65.5,0,0,-0.00566288 -13155,3603:352:4,32.5,-65.5,0,0,-0.00610872 -13156,3603:353:3,33,-65.5,0,0,-0.00715685 -13157,3603:455:3,35,-65.5,0,0,-0.00555077 -13158,3603:455:4,35.5,-65.5,0,0,-0.00556064 -13159,3603:456:3,36,-65.5,0,0,-0.00555943 -13160,3603:456:4,36.5,-65.5,0,0,-0.00554092 -13161,3603:457:3,37,-65.5,0,0,-0.00551024 -13162,3603:457:4,37.5,-65.5,0,0,-0.00549677 -13163,3603:458:3,38,-65.5,0,0,-0.0054785 -13164,3603:458:4,38.5,-65.5,0,0,-0.0054785 -13165,3603:459:3,39,-65.5,0,0,-0.00549069 -13166,3607:352:4,72.5,-65.5,0,0,-0.00813784 -13167,3607:353:4,73.5,-65.5,0,0,-0.00755962 -13168,3607:354:3,74,-65.5,0,0,-0.00711715 -13169,3607:354:4,74.5,-65.5,0,0,-0.00700249 -13170,3607:455:3,75,-65.5,0,0,-0.00704622 -13171,3607:455:4,75.5,-65.5,0,0,-0.00712189 -13172,3607:456:3,76,-65.5,0,0,-0.00745437 -13173,3607:456:4,76.5,-65.5,0,0,-0.00774533 -13174,3607:457:3,77,-65.5,0,0,-0.00792502 -13175,3607:457:4,77.5,-65.5,0,0,-0.00799415 -13176,3607:458:3,78,-65.5,0,0,-0.00787402 -13177,3615:456:3,156,-65.5,0,0,-0.00590053 -13178,3615:456:4,156.5,-65.5,0,0,-0.00580302 -13179,3615:457:3,157,-65.5,0,0,-0.005619 -13180,3615:457:4,157.5,-65.5,0,0,-0.00553232 -13181,3615:458:3,158,-65.5,0,0,-0.005498 -13182,3615:458:4,158.5,-65.5,0,0,-0.00548091 -13183,3615:459:3,159,-65.5,0,0,-0.00547119 -13184,3615:459:4,159.5,-65.5,0,0,-0.00547 -13185,3616:350:3,160,-65.5,0,0,-0.00546878 -13186,3616:350:4,160.5,-65.5,0,0,-0.00546878 -13187,3616:351:3,161,-65.5,0,0,-0.00546878 -13188,3616:351:4,161.5,-65.5,0,0,-0.00546878 -13189,3616:352:3,162,-65.5,0,0,-0.00546878 -13190,3616:352:4,162.5,-65.5,0,0,-0.00547119 -13191,3616:353:3,163,-65.5,0,0,-0.00547241 -13192,3616:353:4,163.5,-65.5,0,0,-0.00547364 -13193,3616:354:3,164,-65.5,0,0,-0.00547364 -13194,3616:354:4,164.5,-65.5,0,0,-0.00547364 -13195,3616:455:3,165,-65.5,0,0,-0.00547364 -13196,3616:455:4,165.5,-65.5,0,0,-0.00547241 -13197,3616:456:3,166,-65.5,0,0,-0.00547241 -13198,3616:456:4,166.5,-65.5,0,0,-0.00547241 -13199,3616:457:3,167,-65.5,0,0,-0.00547119 -13200,3616:457:4,167.5,-65.5,0,0,-0.00547119 -13201,3616:458:3,168,-65.5,0,0,-0.00547119 -13202,3616:458:4,168.5,-65.5,0,0,-0.00547119 -13203,3616:459:3,169,-65.5,0,0,-0.00547119 -13204,3616:459:4,169.5,-65.5,0,0,-0.00547119 -13205,3617:350:3,170,-65.5,0,0,-0.00547 -13206,3617:350:4,170.5,-65.5,0,0,-0.00546755 -13207,3617:351:3,171,-65.5,0,0,-0.00546511 -13208,3617:351:4,171.5,-65.5,0,0,-0.0054627 -13209,3617:352:3,172,-65.5,0,0,-0.0054627 -13210,3617:352:4,172.5,-65.5,0,0,-0.0054627 -13211,3617:353:3,173,-65.5,0,0,-0.00546148 -13212,3617:353:4,173.5,-65.5,0,0,-0.00546026 -13213,3617:354:3,174,-65.5,0,0,-0.00545907 -13214,3617:354:4,174.5,-65.5,0,0,-0.00545785 -13215,3617:455:3,175,-65.5,0,0,-0.00545785 -13216,3617:455:4,175.5,-65.5,0,0,-0.00545907 -13217,3617:456:3,176,-65.5,0,0,-0.00546026 -13218,3617:456:4,176.5,-65.5,0,0,-0.00546026 -13219,3617:457:3,177,-65.5,0,0,-0.00546148 -13220,3617:457:4,177.5,-65.5,0,0,-0.00546511 -13221,3617:458:3,178,-65.5,0,0,-0.00546755 -13222,3617:458:4,178.5,-65.5,0,0,-0.00547 -13223,3617:459:3,179,-65.5,0,0,-0.00547 -13224,3617:459:4,179.5,-65.5,0,0,-0.00547 -13225,3618:350:3,180,-65.5,0,0,-0.00547 -13226,5618:350:1,-180,-65,0,0,-0.00547 -13227,5617:459:2,-179.5,-65,0,0,-0.00547119 -13228,5617:459:1,-179,-65,0,0,-0.00547119 -13229,5617:458:2,-178.5,-65,0,0,-0.00547241 -13230,5617:458:1,-178,-65,0,0,-0.00547364 -13231,5617:457:2,-177.5,-65,0,0,-0.00547364 -13232,5617:457:1,-177,-65,0,0,-0.00547486 -13233,5617:456:2,-176.5,-65,0,0,-0.00547486 -13234,5617:456:1,-176,-65,0,0,-0.00547364 -13235,5617:455:2,-175.5,-65,0,0,-0.00547364 -13236,5617:455:1,-175,-65,0,0,-0.00547241 -13237,5617:354:2,-174.5,-65,0,0,-0.00547241 -13238,5617:354:1,-174,-65,0,0,-0.00547364 -13239,5617:353:2,-173.5,-65,0,0,-0.00547241 -13240,5617:353:1,-173,-65,0,0,-0.00547119 -13241,5617:352:2,-172.5,-65,0,0,-0.00547 -13242,5617:352:1,-172,-65,0,0,-0.00547 -13243,5617:351:2,-171.5,-65,0,0,-0.00546878 -13244,5617:351:1,-171,-65,0,0,-0.00546755 -13245,5617:350:2,-170.5,-65,0,0,-0.00546755 -13246,5617:350:1,-170,-65,0,0,-0.00546633 -13247,5616:459:2,-169.5,-65,0,0,-0.00546392 -13248,5616:459:1,-169,-65,0,0,-0.00546392 -13249,5616:458:2,-168.5,-65,0,0,-0.0054627 -13250,5616:458:1,-168,-65,0,0,-0.00546148 -13251,5616:457:2,-167.5,-65,0,0,-0.00546148 -13252,5616:457:1,-167,-65,0,0,-0.00546026 -13253,5616:456:2,-166.5,-65,0,0,-0.00545907 -13254,5616:456:1,-166,-65,0,0,-0.00545785 -13255,5616:455:2,-165.5,-65,0,0,-0.00545663 -13256,5616:455:1,-165,-65,0,0,-0.00545663 -13257,5616:354:2,-164.5,-65,0,0,-0.00545663 -13258,5616:354:1,-164,-65,0,0,-0.00545663 -13259,5616:353:2,-163.5,-65,0,0,-0.00545663 -13260,5616:353:1,-163,-65,0,0,-0.00545785 -13261,5616:352:2,-162.5,-65,0,0,-0.00545785 -13262,5616:352:1,-162,-65,0,0,-0.00545907 -13263,5616:351:2,-161.5,-65,0,0,-0.00546026 -13264,5616:351:1,-161,-65,0,0,-0.00546148 -13265,5616:350:2,-160.5,-65,0,0,-0.0054627 -13266,5616:350:1,-160,-65,0,0,-0.00546511 -13267,5615:459:2,-159.5,-65,0,0,-0.00546755 -13268,5615:459:1,-159,-65,0,0,-0.00547 -13269,5615:458:2,-158.5,-65,0,0,-0.00547241 -13270,5615:458:1,-158,-65,0,0,-0.00547364 -13271,5615:457:2,-157.5,-65,0,0,-0.00547364 -13272,5615:457:1,-157,-65,0,0,-0.00547486 -13273,5615:456:2,-156.5,-65,0,0,-0.00547605 -13274,5615:456:1,-156,-65,0,0,-0.00547727 -13275,5615:455:2,-155.5,-65,0,0,-0.0054785 -13276,5615:455:1,-155,-65,0,0,-0.0054785 -13277,5615:354:2,-154.5,-65,0,0,-0.00547972 -13278,5615:354:1,-154,-65,0,0,-0.00548091 -13279,5615:353:2,-153.5,-65,0,0,-0.00548337 -13280,5615:353:1,-153,-65,0,0,-0.00548459 -13281,5615:352:2,-152.5,-65,0,0,-0.00548582 -13282,5615:352:1,-152,-65,0,0,-0.00548701 -13283,5615:351:2,-151.5,-65,0,0,-0.00548824 -13284,5615:351:1,-151,-65,0,0,-0.00548824 -13285,5615:350:2,-150.5,-65,0,0,-0.00548701 -13286,5615:350:1,-150,-65,0,0,-0.00548459 -13287,5614:459:2,-149.5,-65,0,0,-0.00548701 -13288,5614:459:1,-149,-65,0,0,-0.00549069 -13289,5614:458:2,-148.5,-65,0,0,-0.00549069 -13290,5614:458:1,-148,-65,0,0,-0.00548947 -13291,5614:457:2,-147.5,-65,0,0,-0.00549069 -13292,5614:457:1,-147,-65,0,0,-0.00549189 -13293,5614:456:2,-146.5,-65,0,0,-0.00549069 -13294,5614:456:1,-146,-65,0,0,-0.00548824 -13295,5614:455:2,-145.5,-65,0,0,-0.00548582 -13296,5614:455:1,-145,-65,0,0,-0.00548582 -13297,5614:354:2,-144.5,-65,0,0,-0.00548824 -13298,5614:354:1,-144,-65,0,0,-0.00548947 -13299,5614:353:2,-143.5,-65,0,0,-0.00548824 -13300,5614:353:1,-143,-65,0,0,-0.00548701 -13301,5614:352:2,-142.5,-65,0,0,-0.00548701 -13302,5614:352:1,-142,-65,0,0,-0.00548824 -13303,5614:351:2,-141.5,-65,0,0,-0.00548947 -13304,5614:351:1,-141,-65,0,0,-0.00548947 -13305,5614:350:2,-140.5,-65,0,0,-0.00549069 -13306,5614:350:1,-140,-65,0,0,-0.00550658 -13307,5613:459:2,-139.5,-65,0,0,-0.00551024 -13308,5613:459:1,-139,-65,0,0,-0.00551513 -13309,5613:458:2,-138.5,-65,0,0,-0.00551266 -13310,5613:458:1,-138,-65,0,0,-0.00550165 -13311,5613:457:2,-137.5,-65,0,0,-0.00549069 -13312,5613:457:1,-137,-65,0,0,-0.00549677 -13313,5613:456:2,-136.5,-65,0,0,-0.00549189 -13314,5613:456:1,-136,-65,0,0,-0.00549069 -13315,5613:455:2,-135.5,-65,0,0,-0.00549189 -13316,5613:455:1,-135,-65,0,0,-0.00549312 -13317,5613:354:2,-134.5,-65,0,0,-0.0055188 -13318,5613:354:1,-134,-65,0,0,-0.005619 -13319,5613:353:2,-133.5,-65,0,0,-0.005767 -13320,5613:353:1,-133,-65,0,0,-0.00569951 -13321,5613:352:2,-132.5,-65,0,0,-0.00567548 -13322,5613:352:1,-132,-65,0,0,-0.00570202 -13323,5613:351:2,-131.5,-65,0,0,-0.00570202 -13324,5613:351:1,-131,-65,0,0,-0.0057033 -13325,5613:350:2,-130.5,-65,0,0,-0.00571092 -13326,5613:350:1,-130,-65,0,0,-0.00570837 -13327,5612:459:2,-129.5,-65,0,0,-0.00569824 -13328,5612:459:1,-129,-65,0,0,-0.00573763 -13329,5612:458:2,-128.5,-65,0,0,-0.00574144 -13330,5612:458:1,-128,-65,0,0,-0.00572997 -13331,5612:457:2,-127.5,-65,0,0,-0.00572232 -13332,5612:457:1,-127,-65,0,0,-0.00570965 -13333,5612:456:2,-126.5,-65,0,0,-0.00569951 -13334,5612:456:1,-126,-65,0,0,-0.00569696 -13335,5612:455:2,-125.5,-65,0,0,-0.00569824 -13336,5612:455:1,-125,-65,0,0,-0.00569951 -13337,5612:354:2,-124.5,-65,0,0,-0.00569445 -13338,5612:354:1,-124,-65,0,0,-0.0056818 -13339,5612:353:2,-123.5,-65,0,0,-0.00566918 -13340,5612:353:1,-123,-65,0,0,-0.00567548 -13341,5612:352:2,-122.5,-65,0,0,-0.00569318 -13342,5612:352:1,-122,-65,0,0,-0.00571344 -13343,5612:351:2,-121.5,-65,0,0,-0.00573506 -13344,5612:351:1,-121,-65,0,0,-0.00574016 -13345,5612:350:2,-120.5,-65,0,0,-0.00565658 -13346,5612:350:1,-120,-65,0,0,-0.00558543 -13347,5611:459:2,-119.5,-65,0,0,-0.00556932 -13348,5611:459:1,-119,-65,0,0,-0.00555943 -13349,5611:458:2,-118.5,-65,0,0,-0.00557426 -13350,5611:458:1,-118,-65,0,0,-0.00558047 -13351,5611:457:2,-117.5,-65,0,0,-0.00558418 -13352,5611:457:1,-117,-65,0,0,-0.00564405 -13353,5611:456:2,-116.5,-65,0,0,-0.00582628 -13354,5611:456:1,-116,-65,0,0,-0.00607623 -13355,5611:455:2,-115.5,-65,0,0,-0.00615097 -13356,5611:455:1,-115,-65,0,0,-0.00607759 -13357,5611:354:2,-114.5,-65,0,0,-0.00613596 -13358,5611:354:1,-114,-65,0,0,-0.00621557 -13359,5611:353:2,-113.5,-65,0,0,-0.00627387 -13360,5611:353:1,-113,-65,0,0,-0.00624325 -13361,5611:352:2,-112.5,-65,0,0,-0.00609109 -13362,5611:352:1,-112,-65,0,0,-0.00598907 -13363,5611:351:2,-111.5,-65,0,0,-0.00579787 -13364,5611:351:1,-111,-65,0,0,-0.00571852 -13365,5611:350:2,-110.5,-65,0,0,-0.00587569 -13366,5611:350:1,-110,-65,0,0,-0.00602779 -13367,5610:459:2,-109.5,-65,0,0,-0.00605599 -13368,5610:459:1,-109,-65,0,0,-0.00630887 -13369,5610:458:2,-108.5,-65,0,0,-0.00643494 -13370,5610:458:1,-108,-65,0,0,-0.00644928 -13371,5610:457:2,-107.5,-65,0,0,-0.0062197 -13372,5610:457:1,-107,-65,0,0,-0.00580042 -13373,5610:456:2,-106.5,-65,0,0,-0.00555819 -13374,5610:456:1,-106,-65,0,0,-0.00547241 -13375,5610:455:2,-105.5,-65,0,0,-0.00546392 -13376,5610:455:1,-105,-65,0,0,-0.0054627 -13377,5610:354:2,-104.5,-65,0,0,-0.0054627 -13378,5610:354:1,-104,-65,0,0,-0.00547972 -13379,5610:353:2,-103.5,-65,0,0,-0.00548091 -13380,5610:353:1,-103,-65,0,0,-0.00547 -13381,5610:352:2,-102.5,-65,0,0,-0.0054627 -13382,5610:352:1,-102,-65,0,0,-0.00546633 -13383,5610:351:2,-101.5,-65,0,0,-0.00546755 -13384,5610:351:1,-101,-65,0,0,-0.00546755 -13385,5610:350:2,-100.5,-65,0,0,-0.00547119 -13386,5610:350:1,-100,-65,0,0,-0.00547119 -13387,5609:459:2,-99.5,-65,0,0,-0.00546878 -13388,5609:459:1,-99,-65,0,0,-0.00546755 -13389,5609:458:2,-98.5,-65,0,0,-0.00546633 -13390,5609:458:1,-98,-65,0,0,-0.00546511 -13391,5609:457:2,-97.5,-65,0,0,-0.00546633 -13392,5609:457:1,-97,-65,0,0,-0.00546633 -13393,5609:456:2,-96.5,-65,0,0,-0.00546633 -13394,5609:456:1,-96,-65,0,0,-0.00546392 -13395,5609:455:2,-95.5,-65,0,0,-0.00546148 -13396,5609:455:1,-95,-65,0,0,-0.00545785 -13397,5609:354:2,-94.5,-65,0,0,-0.00545541 -13398,5609:354:1,-94,-65,0,0,-0.00545663 -13399,5609:353:2,-93.5,-65,0,0,-0.00546026 -13400,5609:353:1,-93,-65,0,0,-0.0054627 -13401,5609:352:2,-92.5,-65,0,0,-0.00546392 -13402,5609:352:1,-92,-65,0,0,-0.00546148 -13403,5609:351:2,-91.5,-65,0,0,-0.00545785 -13404,5609:351:1,-91,-65,0,0,-0.00545785 -13405,5609:350:2,-90.5,-65,0,0,-0.00545907 -13406,5609:350:1,-90,-65,0,0,-0.00546026 -13407,5608:459:2,-89.5,-65,0,0,-0.00546026 -13408,5608:459:1,-89,-65,0,0,-0.00546148 -13409,5608:458:2,-88.5,-65,0,0,-0.00546148 -13410,5608:458:1,-88,-65,0,0,-0.00546392 -13411,5608:457:2,-87.5,-65,0,0,-0.00546511 -13412,5608:457:1,-87,-65,0,0,-0.00546511 -13413,5608:456:2,-86.5,-65,0,0,-0.00546633 -13414,5608:456:1,-86,-65,0,0,-0.00546878 -13415,5608:455:2,-85.5,-65,0,0,-0.00547 -13416,5608:455:1,-85,-65,0,0,-0.00547241 -13417,5608:354:2,-84.5,-65,0,0,-0.00547364 -13418,5608:354:1,-84,-65,0,0,-0.00547486 -13419,5608:353:2,-83.5,-65,0,0,-0.00547605 -13420,5608:353:1,-83,-65,0,0,-0.00547727 -13421,5608:352:2,-82.5,-65,0,0,-0.00547727 -13422,5608:352:1,-82,-65,0,0,-0.00547727 -13423,5608:351:2,-81.5,-65,0,0,-0.0054785 -13424,5608:351:1,-81,-65,0,0,-0.0054785 -13425,5608:350:2,-80.5,-65,0,0,-0.0054785 -13426,5608:350:1,-80,-65,0,0,-0.0054785 -13427,5607:459:2,-79.5,-65,0,0,-0.0054785 -13428,5607:459:1,-79,-65,0,0,-0.0054785 -13429,5607:458:2,-78.5,-65,0,0,-0.00547727 -13430,5607:458:1,-78,-65,0,0,-0.00547727 -13431,5607:457:2,-77.5,-65,0,0,-0.0054785 -13432,5607:457:1,-77,-65,0,0,-0.00548459 -13433,5607:456:2,-76.5,-65,0,0,-0.00549189 -13434,5607:456:1,-76,-65,0,0,-0.005498 -13435,5607:455:2,-75.5,-65,0,0,-0.00550288 -13436,5607:455:1,-75,-65,0,0,-0.00550777 -13437,5607:354:2,-74.5,-65,0,0,-0.00551513 -13438,5607:354:1,-74,-65,0,0,-0.00552003 -13439,5607:353:2,-73.5,-65,0,0,-0.00552494 -13440,5607:353:1,-73,-65,0,0,-0.00553232 -13441,5607:352:2,-72.5,-65,0,0,-0.0055446 -13442,5607:352:1,-72,-65,0,0,-0.00555694 -13443,5607:351:2,-71.5,-65,0,0,-0.00556932 -13444,5607:351:1,-71,-65,0,0,-0.00559164 -13445,5607:350:2,-70.5,-65,0,0,-0.00558914 -13446,5607:350:1,-70,-65,0,0,-0.00557426 -13447,5606:459:2,-69.5,-65,0,0,-0.00557551 -13448,5606:459:1,-69,-65,0,0,-0.00557551 -13449,5606:458:2,-68.5,-65,0,0,-0.00558418 -13450,5606:458:1,-68,-65,0,0,-0.0057198 -13451,5606:457:2,-67.5,-65,0,0,-0.00572741 -13452,5606:350:2,-60.5,-65,0,0,-0.00555694 -13453,5606:350:1,-60,-65,0,0,-0.0055139 -13454,5605:459:2,-59.5,-65,0,0,-0.00551756 -13455,5605:459:1,-59,-65,0,0,-0.00549923 -13456,5605:458:2,-58.5,-65,0,0,-0.00548214 -13457,5605:458:1,-58,-65,0,0,-0.00547 -13458,5605:457:2,-57.5,-65,0,0,-0.00546633 -13459,5605:457:1,-57,-65,0,0,-0.00546633 -13460,5605:456:2,-56.5,-65,0,0,-0.00546633 -13461,5605:456:1,-56,-65,0,0,-0.00546755 -13462,5605:455:2,-55.5,-65,0,0,-0.00546878 -13463,5605:455:1,-55,-65,0,0,-0.00546878 -13464,5605:354:2,-54.5,-65,0,0,-0.00546878 -13465,5605:354:1,-54,-65,0,0,-0.00546878 -13466,5605:353:2,-53.5,-65,0,0,-0.00546755 -13467,5605:353:1,-53,-65,0,0,-0.00546633 -13468,5605:352:2,-52.5,-65,0,0,-0.00546511 -13469,5605:352:1,-52,-65,0,0,-0.0054627 -13470,5605:351:2,-51.5,-65,0,0,-0.00546148 -13471,5605:351:1,-51,-65,0,0,-0.00546026 -13472,5605:350:2,-50.5,-65,0,0,-0.00546026 -13473,5605:350:1,-50,-65,0,0,-0.00546026 -13474,5604:459:2,-49.5,-65,0,0,-0.00546026 -13475,5604:459:1,-49,-65,0,0,-0.00546026 -13476,5604:458:2,-48.5,-65,0,0,-0.00546026 -13477,5604:458:1,-48,-65,0,0,-0.00545907 -13478,5604:457:2,-47.5,-65,0,0,-0.00545907 -13479,5604:457:1,-47,-65,0,0,-0.00545907 -13480,5604:456:2,-46.5,-65,0,0,-0.00545907 -13481,5604:456:1,-46,-65,0,0,-0.00545907 -13482,5604:455:2,-45.5,-65,0,0,-0.00545907 -13483,5604:455:1,-45,-65,0,0,-0.00545785 -13484,5604:354:2,-44.5,-65,0,0,-0.00545785 -13485,5604:354:1,-44,-65,0,0,-0.00545785 -13486,5604:353:2,-43.5,-65,0,0,-0.00545785 -13487,5604:353:1,-43,-65,0,0,-0.00545785 -13488,5604:352:2,-42.5,-65,0,0,-0.00545663 -13489,5604:352:1,-42,-65,0,0,-0.00545541 -13490,5604:351:2,-41.5,-65,0,0,-0.00545541 -13491,5604:351:1,-41,-65,0,0,-0.00545423 -13492,5604:350:2,-40.5,-65,0,0,-0.00545423 -13493,5604:350:1,-40,-65,0,0,-0.00545423 -13494,5603:459:2,-39.5,-65,0,0,-0.00545423 -13495,5603:459:1,-39,-65,0,0,-0.00545423 -13496,5603:458:2,-38.5,-65,0,0,-0.00545423 -13497,5603:458:1,-38,-65,0,0,-0.00545423 -13498,5603:457:2,-37.5,-65,0,0,-0.00545423 -13499,5603:457:1,-37,-65,0,0,-0.00545423 -13500,5603:456:2,-36.5,-65,0,0,-0.00545423 -13501,5603:456:1,-36,-65,0,0,-0.00545541 -13502,5603:455:2,-35.5,-65,0,0,-0.00545541 -13503,5603:455:1,-35,-65,0,0,-0.00545541 -13504,5603:354:2,-34.5,-65,0,0,-0.00545541 -13505,5603:354:1,-34,-65,0,0,-0.00545541 -13506,5603:353:2,-33.5,-65,0,0,-0.00545541 -13507,5603:353:1,-33,-65,0,0,-0.00545541 -13508,5603:352:2,-32.5,-65,0,0,-0.00545541 -13509,5603:352:1,-32,-65,0,0,-0.00545423 -13510,5603:351:2,-31.5,-65,0,0,-0.00545423 -13511,5603:351:1,-31,-65,0,0,-0.005453 -13512,5603:350:2,-30.5,-65,0,0,-0.005453 -13513,5603:350:1,-30,-65,0,0,-0.005453 -13514,5602:459:2,-29.5,-65,0,0,-0.005453 -13515,5602:459:1,-29,-65,0,0,-0.00545179 -13516,5602:458:2,-28.5,-65,0,0,-0.00545179 -13517,5602:458:1,-28,-65,0,0,-0.00545179 -13518,5602:457:2,-27.5,-65,0,0,-0.00545179 -13519,5602:457:1,-27,-65,0,0,-0.00545179 -13520,5602:456:2,-26.5,-65,0,0,-0.00545179 -13521,5602:456:1,-26,-65,0,0,-0.00545179 -13522,5602:455:2,-25.5,-65,0,0,-0.00545179 -13523,5602:455:1,-25,-65,0,0,-0.00545179 -13524,5602:354:2,-24.5,-65,0,0,-0.00545179 -13525,5602:354:1,-24,-65,0,0,-0.00545057 -13526,5602:353:2,-23.5,-65,0,0,-0.00545057 -13527,5602:353:1,-23,-65,0,0,-0.00544935 -13528,5602:352:2,-22.5,-65,0,0,-0.00544935 -13529,5602:352:1,-22,-65,0,0,-0.00544816 -13530,5602:351:2,-21.5,-65,0,0,-0.00544816 -13531,5602:351:1,-21,-65,0,0,-0.00544816 -13532,5602:350:2,-20.5,-65,0,0,-0.00544816 -13533,5602:350:1,-20,-65,0,0,-0.00544816 -13534,5601:459:2,-19.5,-65,0,0,-0.00544816 -13535,5601:459:1,-19,-65,0,0,-0.00544816 -13536,5601:458:2,-18.5,-65,0,0,-0.00544816 -13537,5601:458:1,-18,-65,0,0,-0.00544816 -13538,5601:457:2,-17.5,-65,0,0,-0.00544935 -13539,5601:457:1,-17,-65,0,0,-0.00544935 -13540,5601:456:2,-16.5,-65,0,0,-0.00544935 -13541,5601:456:1,-16,-65,0,0,-0.00544935 -13542,5601:455:2,-15.5,-65,0,0,-0.00544935 -13543,5601:455:1,-15,-65,0,0,-0.00544935 -13544,5601:354:2,-14.5,-65,0,0,-0.00544935 -13545,5601:354:1,-14,-65,0,0,-0.00544935 -13546,5601:353:2,-13.5,-65,0,0,-0.00544935 -13547,5601:353:1,-13,-65,0,0,-0.00544935 -13548,5601:352:2,-12.5,-65,0,0,-0.00544935 -13549,5601:352:1,-12,-65,0,0,-0.00544816 -13550,5601:351:2,-11.5,-65,0,0,-0.00544695 -13551,5601:351:1,-11,-65,0,0,-0.00544451 -13552,5601:350:2,-10.5,-65,0,0,-0.00544211 -13553,5601:350:1,-10,-65,0,0,-0.00543968 -13554,5600:459:2,-9.5,-65,0,0,-0.00543968 -13555,5600:459:1,-9,-65,0,0,-0.00544089 -13556,5600:458:2,-8.5,-65,0,0,-0.00544211 -13557,5600:458:1,-8,-65,0,0,-0.00544211 -13558,5600:457:2,-7.5,-65,0,0,-0.00544211 -13559,5600:457:1,-7,-65,0,0,-0.00544451 -13560,5600:456:2,-6.5,-65,0,0,-0.00544695 -13561,5600:456:1,-6,-65,0,0,-0.00544816 -13562,5600:455:2,-5.5,-65,0,0,-0.00544935 -13563,5600:455:1,-5,-65,0,0,-0.00544935 -13564,5600:354:2,-4.5,-65,0,0,-0.00544935 -13565,5600:354:1,-4,-65,0,0,-0.00544935 -13566,5600:353:2,-3.5,-65,0,0,-0.00544816 -13567,5600:353:1,-3,-65,0,0,-0.00544573 -13568,5600:352:2,-2.5,-65,0,0,-0.00544333 -13569,5600:352:1,-2,-65,0,0,-0.00543968 -13570,5600:351:2,-1.5,-65,0,0,-0.00543968 -13571,5600:351:1,-1,-65,0,0,-0.00544089 -13572,5600:350:2,-0.5,-65,0,0,-0.00544089 -13573,3600:350:2,0,-65,0,0,-0.00544211 -13574,3600:350:2,0.5,-65,0,0,-0.00544333 -13575,3600:351:1,1,-65,0,0,-0.00544451 -13576,3600:351:2,1.5,-65,0,0,-0.00544573 -13577,3600:352:1,2,-65,0,0,-0.00544935 -13578,3600:352:2,2.5,-65,0,0,-0.00544935 -13579,3600:353:1,3,-65,0,0,-0.00544333 -13580,3600:353:2,3.5,-65,0,0,-0.00543968 -13581,3600:354:1,4,-65,0,0,-0.00543968 -13582,3600:354:2,4.5,-65,0,0,-0.00543728 -13583,3600:455:1,5,-65,0,0,-0.00543606 -13584,3600:455:2,5.5,-65,0,0,-0.00543606 -13585,3600:456:1,6,-65,0,0,-0.00543485 -13586,3600:456:2,6.5,-65,0,0,-0.00543485 -13587,3600:457:1,7,-65,0,0,-0.00543363 -13588,3600:457:2,7.5,-65,0,0,-0.00543363 -13589,3600:458:1,8,-65,0,0,-0.00543728 -13590,3600:458:2,8.5,-65,0,0,-0.00544211 -13591,3600:459:1,9,-65,0,0,-0.00544573 -13592,3600:459:2,9.5,-65,0,0,-0.00544935 -13593,3601:350:1,10,-65,0,0,-0.00545179 -13594,3601:350:2,10.5,-65,0,0,-0.00545541 -13595,3601:351:1,11,-65,0,0,-0.0054627 -13596,3601:351:2,11.5,-65,0,0,-0.0054627 -13597,3601:352:1,12,-65,0,0,-0.00545907 -13598,3601:352:2,12.5,-65,0,0,-0.0054627 -13599,3601:353:1,13,-65,0,0,-0.00546392 -13600,3601:353:2,13.5,-65,0,0,-0.00546633 -13601,3601:354:1,14,-65,0,0,-0.00546511 -13602,3601:354:2,14.5,-65,0,0,-0.00546148 -13603,3601:455:1,15,-65,0,0,-0.00545907 -13604,3601:455:2,15.5,-65,0,0,-0.00545785 -13605,3601:456:1,16,-65,0,0,-0.00545785 -13606,3601:456:2,16.5,-65,0,0,-0.00545907 -13607,3601:457:1,17,-65,0,0,-0.00545907 -13608,3601:457:2,17.5,-65,0,0,-0.00545541 -13609,3601:458:1,18,-65,0,0,-0.00545179 -13610,3601:458:2,18.5,-65,0,0,-0.00545179 -13611,3601:459:1,19,-65,0,0,-0.005453 -13612,3601:459:2,19.5,-65,0,0,-0.005453 -13613,3602:350:1,20,-65,0,0,-0.00545179 -13614,3602:350:2,20.5,-65,0,0,-0.005453 -13615,3602:351:1,21,-65,0,0,-0.005453 -13616,3602:351:2,21.5,-65,0,0,-0.005453 -13617,3602:352:1,22,-65,0,0,-0.005453 -13618,3602:352:2,22.5,-65,0,0,-0.00545179 -13619,3602:353:1,23,-65,0,0,-0.00545057 -13620,3602:353:2,23.5,-65,0,0,-0.00545057 -13621,3602:354:1,24,-65,0,0,-0.00545057 -13622,3602:354:2,24.5,-65,0,0,-0.00545057 -13623,3602:455:1,25,-65,0,0,-0.00545179 -13624,3602:455:2,25.5,-65,0,0,-0.00545423 -13625,3602:456:1,26,-65,0,0,-0.00545663 -13626,3602:456:2,26.5,-65,0,0,-0.00545663 -13627,3602:457:1,27,-65,0,0,-0.00545541 -13628,3602:457:2,27.5,-65,0,0,-0.00545423 -13629,3602:458:1,28,-65,0,0,-0.00545423 -13630,3602:458:2,28.5,-65,0,0,-0.00545541 -13631,3602:459:1,29,-65,0,0,-0.00545423 -13632,3602:459:2,29.5,-65,0,0,-0.00545423 -13633,3603:350:1,30,-65,0,0,-0.00545541 -13634,3603:350:2,30.5,-65,0,0,-0.00545541 -13635,3603:351:1,31,-65,0,0,-0.00545541 -13636,3603:351:2,31.5,-65,0,0,-0.00545907 -13637,3603:352:1,32,-65,0,0,-0.00546755 -13638,3603:352:2,32.5,-65,0,0,-0.00549069 -13639,3603:353:1,33,-65,0,0,-0.00587959 -13640,3603:455:1,35,-65,0,0,-0.00553476 -13641,3603:455:2,35.5,-65,0,0,-0.0055434 -13642,3603:456:1,36,-65,0,0,-0.00553108 -13643,3603:456:2,36.5,-65,0,0,-0.00550046 -13644,3603:457:1,37,-65,0,0,-0.00547364 -13645,3603:457:2,37.5,-65,0,0,-0.00547 -13646,3603:458:1,38,-65,0,0,-0.00547119 -13647,3603:458:2,38.5,-65,0,0,-0.0054785 -13648,3603:459:1,39,-65,0,0,-0.00549069 -13649,3603:459:2,39.5,-65,0,0,-0.00549189 -13650,3604:350:1,40,-65,0,0,-0.00548214 -13651,3607:351:2,71.5,-65,0,0,-0.00750931 -13652,3607:352:1,72,-65,0,0,-0.00741795 -13653,3607:352:2,72.5,-65,0,0,-0.00702587 -13654,3607:353:2,73.5,-65,0,0,-0.00666655 -13655,3607:354:1,74,-65,0,0,-0.00649245 -13656,3607:354:2,74.5,-65,0,0,-0.00652283 -13657,3607:455:1,75,-65,0,0,-0.00666361 -13658,3607:455:2,75.5,-65,0,0,-0.00673061 -13659,3607:456:1,76,-65,0,0,-0.00684233 -13660,3607:456:2,76.5,-65,0,0,-0.00706035 -13661,3607:457:1,77,-65,0,0,-0.00723047 -13662,3607:457:2,77.5,-65,0,0,-0.00769544 -13663,3607:458:1,78,-65,0,0,-0.00798345 -13664,3615:455:2,155.5,-65,0,0,-0.0060318 -13665,3615:456:1,156,-65,0,0,-0.00577726 -13666,3615:456:2,156.5,-65,0,0,-0.00556682 -13667,3615:457:1,157,-65,0,0,-0.00548701 -13668,3615:457:2,157.5,-65,0,0,-0.00548459 -13669,3615:458:1,158,-65,0,0,-0.00548091 -13670,3615:458:2,158.5,-65,0,0,-0.00548091 -13671,3615:459:1,159,-65,0,0,-0.00547119 -13672,3615:459:2,159.5,-65,0,0,-0.00547119 -13673,3616:350:1,160,-65,0,0,-0.00547119 -13674,3616:350:2,160.5,-65,0,0,-0.00547119 -13675,3616:351:1,161,-65,0,0,-0.00547 -13676,3616:351:2,161.5,-65,0,0,-0.00547 -13677,3616:352:1,162,-65,0,0,-0.00547241 -13678,3616:352:2,162.5,-65,0,0,-0.00547364 -13679,3616:353:1,163,-65,0,0,-0.00547364 -13680,3616:353:2,163.5,-65,0,0,-0.00547364 -13681,3616:354:1,164,-65,0,0,-0.00547364 -13682,3616:354:2,164.5,-65,0,0,-0.00547364 -13683,3616:455:1,165,-65,0,0,-0.00547241 -13684,3616:455:2,165.5,-65,0,0,-0.00547241 -13685,3616:456:1,166,-65,0,0,-0.00547241 -13686,3616:456:2,166.5,-65,0,0,-0.00547241 -13687,3616:457:1,167,-65,0,0,-0.00547241 -13688,3616:457:2,167.5,-65,0,0,-0.00547241 -13689,3616:458:1,168,-65,0,0,-0.00547119 -13690,3616:458:2,168.5,-65,0,0,-0.00547119 -13691,3616:459:1,169,-65,0,0,-0.00547119 -13692,3616:459:2,169.5,-65,0,0,-0.00547 -13693,3617:350:1,170,-65,0,0,-0.00546878 -13694,3617:350:2,170.5,-65,0,0,-0.00546755 -13695,3617:351:1,171,-65,0,0,-0.00546511 -13696,3617:351:2,171.5,-65,0,0,-0.00546392 -13697,3617:352:1,172,-65,0,0,-0.0054627 -13698,3617:352:2,172.5,-65,0,0,-0.00546148 -13699,3617:353:1,173,-65,0,0,-0.00546148 -13700,3617:353:2,173.5,-65,0,0,-0.00546026 -13701,3617:354:1,174,-65,0,0,-0.00545907 -13702,3617:354:2,174.5,-65,0,0,-0.00545907 -13703,3617:455:1,175,-65,0,0,-0.00545907 -13704,3617:455:2,175.5,-65,0,0,-0.00546026 -13705,3617:456:1,176,-65,0,0,-0.00546026 -13706,3617:456:2,176.5,-65,0,0,-0.00546026 -13707,3617:457:1,177,-65,0,0,-0.0054627 -13708,3617:457:2,177.5,-65,0,0,-0.00546511 -13709,3617:458:1,178,-65,0,0,-0.00546755 -13710,3617:458:2,178.5,-65,0,0,-0.00546878 -13711,3617:459:1,179,-65,0,0,-0.00546878 -13712,3617:459:2,179.5,-65,0,0,-0.00547 -13713,3618:350:1,180,-65,0,0,-0.00547 -13714,5618:140:3,-180,-64.5,0,0,-0.00547119 -13715,5617:249:4,-179.5,-64.5,0,0,-0.00547119 -13716,5617:249:3,-179,-64.5,0,0,-0.00547241 -13717,5617:248:4,-178.5,-64.5,0,0,-0.00547241 -13718,5617:248:3,-178,-64.5,0,0,-0.00547241 -13719,5617:247:4,-177.5,-64.5,0,0,-0.00547364 -13720,5617:247:3,-177,-64.5,0,0,-0.00547364 -13721,5617:246:4,-176.5,-64.5,0,0,-0.00547364 -13722,5617:246:3,-176,-64.5,0,0,-0.00547364 -13723,5617:245:4,-175.5,-64.5,0,0,-0.00547364 -13724,5617:245:3,-175,-64.5,0,0,-0.00547364 -13725,5617:144:4,-174.5,-64.5,0,0,-0.00547486 -13726,5617:144:3,-174,-64.5,0,0,-0.00547486 -13727,5617:143:4,-173.5,-64.5,0,0,-0.00547241 -13728,5617:143:3,-173,-64.5,0,0,-0.00547119 -13729,5617:142:4,-172.5,-64.5,0,0,-0.00547119 -13730,5617:142:3,-172,-64.5,0,0,-0.00547119 -13731,5617:141:4,-171.5,-64.5,0,0,-0.00547 -13732,5617:141:3,-171,-64.5,0,0,-0.00546878 -13733,5617:140:4,-170.5,-64.5,0,0,-0.00546878 -13734,5617:140:3,-170,-64.5,0,0,-0.00546755 -13735,5616:249:4,-169.5,-64.5,0,0,-0.00546633 -13736,5616:249:3,-169,-64.5,0,0,-0.00546511 -13737,5616:248:4,-168.5,-64.5,0,0,-0.00546392 -13738,5616:248:3,-168,-64.5,0,0,-0.0054627 -13739,5616:247:4,-167.5,-64.5,0,0,-0.0054627 -13740,5616:247:3,-167,-64.5,0,0,-0.00546148 -13741,5616:246:4,-166.5,-64.5,0,0,-0.00546026 -13742,5616:246:3,-166,-64.5,0,0,-0.00545907 -13743,5616:245:4,-165.5,-64.5,0,0,-0.00545907 -13744,5616:245:3,-165,-64.5,0,0,-0.00545785 -13745,5616:144:4,-164.5,-64.5,0,0,-0.00545785 -13746,5616:144:3,-164,-64.5,0,0,-0.00545907 -13747,5616:143:4,-163.5,-64.5,0,0,-0.00545907 -13748,5616:143:3,-163,-64.5,0,0,-0.00545907 -13749,5616:142:4,-162.5,-64.5,0,0,-0.00546026 -13750,5616:142:3,-162,-64.5,0,0,-0.00546148 -13751,5616:141:4,-161.5,-64.5,0,0,-0.0054627 -13752,5616:141:3,-161,-64.5,0,0,-0.00546511 -13753,5616:140:4,-160.5,-64.5,0,0,-0.00546633 -13754,5616:140:3,-160,-64.5,0,0,-0.00546755 -13755,5615:249:4,-159.5,-64.5,0,0,-0.00546878 -13756,5615:249:3,-159,-64.5,0,0,-0.00547119 -13757,5615:248:4,-158.5,-64.5,0,0,-0.00547241 -13758,5615:248:3,-158,-64.5,0,0,-0.00547486 -13759,5615:247:4,-157.5,-64.5,0,0,-0.00547486 -13760,5615:247:3,-157,-64.5,0,0,-0.00547605 -13761,5615:246:4,-156.5,-64.5,0,0,-0.00547605 -13762,5615:246:3,-156,-64.5,0,0,-0.00547727 -13763,5615:245:4,-155.5,-64.5,0,0,-0.0054785 -13764,5615:245:3,-155,-64.5,0,0,-0.00547972 -13765,5615:144:4,-154.5,-64.5,0,0,-0.00548091 -13766,5615:144:3,-154,-64.5,0,0,-0.00548214 -13767,5615:143:4,-153.5,-64.5,0,0,-0.00548337 -13768,5615:143:3,-153,-64.5,0,0,-0.00548459 -13769,5615:142:4,-152.5,-64.5,0,0,-0.00548459 -13770,5615:142:3,-152,-64.5,0,0,-0.00548701 -13771,5615:141:4,-151.5,-64.5,0,0,-0.00548947 -13772,5615:141:3,-151,-64.5,0,0,-0.00549069 -13773,5615:140:4,-150.5,-64.5,0,0,-0.00548947 -13774,5615:140:3,-150,-64.5,0,0,-0.00548824 -13775,5614:249:4,-149.5,-64.5,0,0,-0.00548947 -13776,5614:249:3,-149,-64.5,0,0,-0.00549069 -13777,5614:248:4,-148.5,-64.5,0,0,-0.00549069 -13778,5614:248:3,-148,-64.5,0,0,-0.00549069 -13779,5614:247:4,-147.5,-64.5,0,0,-0.00548947 -13780,5614:247:3,-147,-64.5,0,0,-0.00549189 -13781,5614:246:4,-146.5,-64.5,0,0,-0.00549189 -13782,5614:246:3,-146,-64.5,0,0,-0.00548947 -13783,5614:245:4,-145.5,-64.5,0,0,-0.00548824 -13784,5614:245:3,-145,-64.5,0,0,-0.00548459 -13785,5614:144:4,-144.5,-64.5,0,0,-0.00548701 -13786,5614:144:3,-144,-64.5,0,0,-0.00549069 -13787,5614:143:4,-143.5,-64.5,0,0,-0.00548947 -13788,5614:143:3,-143,-64.5,0,0,-0.00548824 -13789,5614:142:4,-142.5,-64.5,0,0,-0.00548824 -13790,5614:142:3,-142,-64.5,0,0,-0.00548824 -13791,5614:141:4,-141.5,-64.5,0,0,-0.00548947 -13792,5614:141:3,-141,-64.5,0,0,-0.00548947 -13793,5614:140:4,-140.5,-64.5,0,0,-0.00549069 -13794,5614:140:3,-140,-64.5,0,0,-0.00549069 -13795,5613:249:4,-139.5,-64.5,0,0,-0.00549189 -13796,5613:249:3,-139,-64.5,0,0,-0.00550046 -13797,5613:248:4,-138.5,-64.5,0,0,-0.00549557 -13798,5613:248:3,-138,-64.5,0,0,-0.00549434 -13799,5613:247:4,-137.5,-64.5,0,0,-0.00549557 -13800,5613:247:3,-137,-64.5,0,0,-0.00550165 -13801,5613:246:4,-136.5,-64.5,0,0,-0.00549923 -13802,5613:246:3,-136,-64.5,0,0,-0.00549312 -13803,5613:245:4,-135.5,-64.5,0,0,-0.00549434 -13804,5613:245:3,-135,-64.5,0,0,-0.00549677 -13805,5613:144:4,-134.5,-64.5,0,0,-0.0055139 -13806,5613:144:3,-134,-64.5,0,0,-0.00561029 -13807,5613:143:4,-133.5,-64.5,0,0,-0.00586005 -13808,5613:143:3,-133,-64.5,0,0,-0.00610735 -13809,5613:142:4,-132.5,-64.5,0,0,-0.0059771 -13810,5613:142:3,-132,-64.5,0,0,-0.00589925 -13811,5613:141:4,-131.5,-64.5,0,0,-0.00585742 -13812,5613:141:3,-131,-64.5,0,0,-0.00582498 -13813,5613:140:4,-130.5,-64.5,0,0,-0.00578114 -13814,5613:140:3,-130,-64.5,0,0,-0.00573125 -13815,5612:249:4,-129.5,-64.5,0,0,-0.00571216 -13816,5612:249:3,-129,-64.5,0,0,-0.00569824 -13817,5612:248:4,-128.5,-64.5,0,0,-0.00573254 -13818,5612:248:3,-128,-64.5,0,0,-0.00573506 -13819,5612:247:4,-127.5,-64.5,0,0,-0.00572232 -13820,5612:247:3,-127,-64.5,0,0,-0.005716 -13821,5612:246:4,-126.5,-64.5,0,0,-0.00571344 -13822,5612:246:3,-126,-64.5,0,0,-0.00573254 -13823,5612:245:4,-125.5,-64.5,0,0,-0.00577088 -13824,5612:245:3,-125,-64.5,0,0,-0.00576575 -13825,5612:144:4,-124.5,-64.5,0,0,-0.00575165 -13826,5612:144:3,-124,-64.5,0,0,-0.00576188 -13827,5612:143:4,-123.5,-64.5,0,0,-0.00577601 -13828,5612:143:3,-123,-64.5,0,0,-0.00580172 -13829,5612:142:4,-122.5,-64.5,0,0,-0.00585874 -13830,5612:142:3,-122,-64.5,0,0,-0.00591892 -13831,5612:141:4,-121.5,-64.5,0,0,-0.00593078 -13832,5612:141:3,-121,-64.5,0,0,-0.00592419 -13833,5612:140:4,-120.5,-64.5,0,0,-0.00585874 -13834,5612:140:3,-120,-64.5,0,0,-0.00563778 -13835,5611:249:4,-119.5,-64.5,0,0,-0.00558047 -13836,5611:249:3,-119,-64.5,0,0,-0.00557551 -13837,5611:248:4,-118.5,-64.5,0,0,-0.00564532 -13838,5611:248:3,-118,-64.5,0,0,-0.00572997 -13839,5611:247:4,-117.5,-64.5,0,0,-0.0060064 -13840,5611:247:3,-117,-64.5,0,0,-0.00614821 -13841,5611:246:4,-116.5,-64.5,0,0,-0.0062725 -13842,5611:246:3,-116,-64.5,0,0,-0.00636239 -13843,5611:245:4,-115.5,-64.5,0,0,-0.00637795 -13844,5611:245:3,-115,-64.5,0,0,-0.00632147 -13845,5611:144:4,-114.5,-64.5,0,0,-0.00621144 -13846,5611:144:3,-114,-64.5,0,0,-0.00617153 -13847,5611:143:4,-113.5,-64.5,0,0,-0.00621835 -13848,5611:143:3,-113,-64.5,0,0,-0.00630463 -13849,5611:142:4,-112.5,-64.5,0,0,-0.00635954 -13850,5611:142:3,-112,-64.5,0,0,-0.00622663 -13851,5611:141:4,-111.5,-64.5,0,0,-0.00602244 -13852,5611:141:3,-111,-64.5,0,0,-0.00603049 -13853,5611:140:4,-110.5,-64.5,0,0,-0.00629066 -13854,5611:140:3,-110,-64.5,0,0,-0.00642495 -13855,5610:249:4,-109.5,-64.5,0,0,-0.00642207 -13856,5610:249:3,-109,-64.5,0,0,-0.00642064 -13857,5610:248:4,-108.5,-64.5,0,0,-0.00650979 -13858,5610:248:3,-108,-64.5,0,0,-0.00650546 -13859,5610:247:4,-107.5,-64.5,0,0,-0.00639928 -13860,5610:247:3,-107,-64.5,0,0,-0.00613596 -13861,5610:246:4,-106.5,-64.5,0,0,-0.00573635 -13862,5610:246:3,-106,-64.5,0,0,-0.00555201 -13863,5610:245:4,-105.5,-64.5,0,0,-0.00549189 -13864,5610:245:3,-105,-64.5,0,0,-0.00549189 -13865,5610:144:4,-104.5,-64.5,0,0,-0.00550165 -13866,5610:144:3,-104,-64.5,0,0,-0.00550411 -13867,5610:143:4,-103.5,-64.5,0,0,-0.00548824 -13868,5610:143:3,-103,-64.5,0,0,-0.0054627 -13869,5610:142:4,-102.5,-64.5,0,0,-0.00548091 -13870,5610:142:3,-102,-64.5,0,0,-0.00546148 -13871,5610:141:4,-101.5,-64.5,0,0,-0.00546392 -13872,5610:141:3,-101,-64.5,0,0,-0.00548214 -13873,5610:140:4,-100.5,-64.5,0,0,-0.0055237 -13874,5610:140:3,-100,-64.5,0,0,-0.00555077 -13875,5609:249:4,-99.5,-64.5,0,0,-0.00553968 -13876,5609:249:3,-99,-64.5,0,0,-0.0055139 -13877,5609:248:4,-98.5,-64.5,0,0,-0.00549069 -13878,5609:248:3,-98,-64.5,0,0,-0.00547727 -13879,5609:247:4,-97.5,-64.5,0,0,-0.00547 -13880,5609:247:3,-97,-64.5,0,0,-0.00546633 -13881,5609:246:4,-96.5,-64.5,0,0,-0.00546755 -13882,5609:246:3,-96,-64.5,0,0,-0.00546878 -13883,5609:245:4,-95.5,-64.5,0,0,-0.00546392 -13884,5609:245:3,-95,-64.5,0,0,-0.00546148 -13885,5609:144:4,-94.5,-64.5,0,0,-0.00546148 -13886,5609:144:3,-94,-64.5,0,0,-0.00546511 -13887,5609:143:4,-93.5,-64.5,0,0,-0.00546755 -13888,5609:143:3,-93,-64.5,0,0,-0.00546878 -13889,5609:142:4,-92.5,-64.5,0,0,-0.00546633 -13890,5609:142:3,-92,-64.5,0,0,-0.00546148 -13891,5609:141:4,-91.5,-64.5,0,0,-0.00545663 -13892,5609:141:3,-91,-64.5,0,0,-0.00545663 -13893,5609:140:4,-90.5,-64.5,0,0,-0.00545785 -13894,5609:140:3,-90,-64.5,0,0,-0.00545907 -13895,5608:249:4,-89.5,-64.5,0,0,-0.00545907 -13896,5608:249:3,-89,-64.5,0,0,-0.00546026 -13897,5608:248:4,-88.5,-64.5,0,0,-0.00546148 -13898,5608:248:3,-88,-64.5,0,0,-0.0054627 -13899,5608:247:4,-87.5,-64.5,0,0,-0.00546511 -13900,5608:247:3,-87,-64.5,0,0,-0.00546633 -13901,5608:246:4,-86.5,-64.5,0,0,-0.00546755 -13902,5608:246:3,-86,-64.5,0,0,-0.00546878 -13903,5608:245:4,-85.5,-64.5,0,0,-0.00547119 -13904,5608:245:3,-85,-64.5,0,0,-0.00547241 -13905,5608:144:4,-84.5,-64.5,0,0,-0.00547364 -13906,5608:144:3,-84,-64.5,0,0,-0.00547486 -13907,5608:143:4,-83.5,-64.5,0,0,-0.00547605 -13908,5608:143:3,-83,-64.5,0,0,-0.00547727 -13909,5608:142:4,-82.5,-64.5,0,0,-0.00547727 -13910,5608:142:3,-82,-64.5,0,0,-0.00547727 -13911,5608:141:4,-81.5,-64.5,0,0,-0.00547727 -13912,5608:141:3,-81,-64.5,0,0,-0.00547727 -13913,5608:140:4,-80.5,-64.5,0,0,-0.00547727 -13914,5608:140:3,-80,-64.5,0,0,-0.0054785 -13915,5607:249:4,-79.5,-64.5,0,0,-0.00547972 -13916,5607:249:3,-79,-64.5,0,0,-0.00547972 -13917,5607:248:4,-78.5,-64.5,0,0,-0.00547972 -13918,5607:248:3,-78,-64.5,0,0,-0.0054785 -13919,5607:247:4,-77.5,-64.5,0,0,-0.00547727 -13920,5607:247:3,-77,-64.5,0,0,-0.0054785 -13921,5607:246:4,-76.5,-64.5,0,0,-0.00548091 -13922,5607:246:3,-76,-64.5,0,0,-0.00548582 -13923,5607:245:4,-75.5,-64.5,0,0,-0.00549312 -13924,5607:245:3,-75,-64.5,0,0,-0.00549923 -13925,5607:144:4,-74.5,-64.5,0,0,-0.00550658 -13926,5607:144:3,-74,-64.5,0,0,-0.0055139 -13927,5607:143:4,-73.5,-64.5,0,0,-0.00552127 -13928,5607:143:3,-73,-64.5,0,0,-0.00552861 -13929,5607:142:4,-72.5,-64.5,0,0,-0.00553476 -13930,5607:142:3,-72,-64.5,0,0,-0.00554092 -13931,5607:141:4,-71.5,-64.5,0,0,-0.0055446 -13932,5607:141:3,-71,-64.5,0,0,-0.00554708 -13933,5607:140:4,-70.5,-64.5,0,0,-0.0055557 -13934,5607:140:3,-70,-64.5,0,0,-0.00556313 -13935,5606:249:4,-69.5,-64.5,0,0,-0.00557672 -13936,5606:249:3,-69,-64.5,0,0,-0.00558914 -13937,5606:248:4,-68.5,-64.5,0,0,-0.00567926 -13938,5606:248:3,-68,-64.5,0,0,-0.00579916 -13939,5606:247:4,-67.5,-64.5,0,0,-0.00579527 -13940,5605:249:4,-59.5,-64.5,0,0,-0.00551637 -13941,5605:249:3,-59,-64.5,0,0,-0.00551756 -13942,5605:248:4,-58.5,-64.5,0,0,-0.00549434 -13943,5605:248:3,-58,-64.5,0,0,-0.00547605 -13944,5605:247:4,-57.5,-64.5,0,0,-0.00546755 -13945,5605:247:3,-57,-64.5,0,0,-0.00546633 -13946,5605:246:4,-56.5,-64.5,0,0,-0.00546633 -13947,5605:246:3,-56,-64.5,0,0,-0.00546755 -13948,5605:245:4,-55.5,-64.5,0,0,-0.00546878 -13949,5605:245:3,-55,-64.5,0,0,-0.00546878 -13950,5605:144:4,-54.5,-64.5,0,0,-0.00547 -13951,5605:144:3,-54,-64.5,0,0,-0.00546878 -13952,5605:143:4,-53.5,-64.5,0,0,-0.00546755 -13953,5605:143:3,-53,-64.5,0,0,-0.00546633 -13954,5605:142:4,-52.5,-64.5,0,0,-0.00546511 -13955,5605:142:3,-52,-64.5,0,0,-0.0054627 -13956,5605:141:4,-51.5,-64.5,0,0,-0.00546026 -13957,5605:141:3,-51,-64.5,0,0,-0.00546026 -13958,5605:140:4,-50.5,-64.5,0,0,-0.00546026 -13959,5605:140:3,-50,-64.5,0,0,-0.00546026 -13960,5604:249:4,-49.5,-64.5,0,0,-0.00546026 -13961,5604:249:3,-49,-64.5,0,0,-0.00546026 -13962,5604:248:4,-48.5,-64.5,0,0,-0.00546026 -13963,5604:248:3,-48,-64.5,0,0,-0.00545907 -13964,5604:247:4,-47.5,-64.5,0,0,-0.00545907 -13965,5604:247:3,-47,-64.5,0,0,-0.00545907 -13966,5604:246:4,-46.5,-64.5,0,0,-0.00545907 -13967,5604:246:3,-46,-64.5,0,0,-0.00545907 -13968,5604:245:4,-45.5,-64.5,0,0,-0.00545907 -13969,5604:245:3,-45,-64.5,0,0,-0.00545907 -13970,5604:144:4,-44.5,-64.5,0,0,-0.00545907 -13971,5604:144:3,-44,-64.5,0,0,-0.00545907 -13972,5604:143:4,-43.5,-64.5,0,0,-0.00545785 -13973,5604:143:3,-43,-64.5,0,0,-0.00545663 -13974,5604:142:4,-42.5,-64.5,0,0,-0.00545541 -13975,5604:142:3,-42,-64.5,0,0,-0.00545541 -13976,5604:141:4,-41.5,-64.5,0,0,-0.00545423 -13977,5604:141:3,-41,-64.5,0,0,-0.00545423 -13978,5604:140:4,-40.5,-64.5,0,0,-0.00545423 -13979,5604:140:3,-40,-64.5,0,0,-0.00545423 -13980,5603:249:4,-39.5,-64.5,0,0,-0.00545423 -13981,5603:249:3,-39,-64.5,0,0,-0.00545423 -13982,5603:248:4,-38.5,-64.5,0,0,-0.00545423 -13983,5603:248:3,-38,-64.5,0,0,-0.00545423 -13984,5603:247:4,-37.5,-64.5,0,0,-0.00545541 -13985,5603:247:3,-37,-64.5,0,0,-0.00545541 -13986,5603:246:4,-36.5,-64.5,0,0,-0.00545541 -13987,5603:246:3,-36,-64.5,0,0,-0.00545541 -13988,5603:245:4,-35.5,-64.5,0,0,-0.00545541 -13989,5603:245:3,-35,-64.5,0,0,-0.00545541 -13990,5603:144:4,-34.5,-64.5,0,0,-0.00545541 -13991,5603:144:3,-34,-64.5,0,0,-0.00545541 -13992,5603:143:4,-33.5,-64.5,0,0,-0.00545541 -13993,5603:143:3,-33,-64.5,0,0,-0.00545541 -13994,5603:142:4,-32.5,-64.5,0,0,-0.00545541 -13995,5603:142:3,-32,-64.5,0,0,-0.00545423 -13996,5603:141:4,-31.5,-64.5,0,0,-0.00545423 -13997,5603:141:3,-31,-64.5,0,0,-0.005453 -13998,5603:140:4,-30.5,-64.5,0,0,-0.005453 -13999,5603:140:3,-30,-64.5,0,0,-0.005453 -14000,5602:249:4,-29.5,-64.5,0,0,-0.005453 -14001,5602:249:3,-29,-64.5,0,0,-0.005453 -14002,5602:248:4,-28.5,-64.5,0,0,-0.005453 -14003,5602:248:3,-28,-64.5,0,0,-0.005453 -14004,5602:247:4,-27.5,-64.5,0,0,-0.005453 -14005,5602:247:3,-27,-64.5,0,0,-0.005453 -14006,5602:246:4,-26.5,-64.5,0,0,-0.005453 -14007,5602:246:3,-26,-64.5,0,0,-0.005453 -14008,5602:245:4,-25.5,-64.5,0,0,-0.005453 -14009,5602:245:3,-25,-64.5,0,0,-0.005453 -14010,5602:144:4,-24.5,-64.5,0,0,-0.005453 -14011,5602:144:3,-24,-64.5,0,0,-0.00545179 -14012,5602:143:4,-23.5,-64.5,0,0,-0.00545179 -14013,5602:143:3,-23,-64.5,0,0,-0.00545057 -14014,5602:142:4,-22.5,-64.5,0,0,-0.00544935 -14015,5602:142:3,-22,-64.5,0,0,-0.00544935 -14016,5602:141:4,-21.5,-64.5,0,0,-0.00544935 -14017,5602:141:3,-21,-64.5,0,0,-0.00544935 -14018,5602:140:4,-20.5,-64.5,0,0,-0.00544816 -14019,5602:140:3,-20,-64.5,0,0,-0.00544816 -14020,5601:249:4,-19.5,-64.5,0,0,-0.00544816 -14021,5601:249:3,-19,-64.5,0,0,-0.00544816 -14022,5601:248:4,-18.5,-64.5,0,0,-0.00544695 -14023,5601:248:3,-18,-64.5,0,0,-0.00544695 -14024,5601:247:4,-17.5,-64.5,0,0,-0.00544695 -14025,5601:247:3,-17,-64.5,0,0,-0.00544695 -14026,5601:246:4,-16.5,-64.5,0,0,-0.00544695 -14027,5601:246:3,-16,-64.5,0,0,-0.00544816 -14028,5601:245:4,-15.5,-64.5,0,0,-0.00544816 -14029,5601:245:3,-15,-64.5,0,0,-0.00544816 -14030,5601:144:4,-14.5,-64.5,0,0,-0.00544816 -14031,5601:144:3,-14,-64.5,0,0,-0.00544816 -14032,5601:143:4,-13.5,-64.5,0,0,-0.00544816 -14033,5601:143:3,-13,-64.5,0,0,-0.00544816 -14034,5601:142:4,-12.5,-64.5,0,0,-0.00544816 -14035,5601:142:3,-12,-64.5,0,0,-0.00544695 -14036,5601:141:4,-11.5,-64.5,0,0,-0.00544451 -14037,5601:141:3,-11,-64.5,0,0,-0.00544211 -14038,5601:140:4,-10.5,-64.5,0,0,-0.00543968 -14039,5601:140:3,-10,-64.5,0,0,-0.00543728 -14040,5600:249:4,-9.5,-64.5,0,0,-0.00543728 -14041,5600:249:3,-9,-64.5,0,0,-0.00543728 -14042,5600:248:4,-8.5,-64.5,0,0,-0.00543968 -14043,5600:248:3,-8,-64.5,0,0,-0.00544089 -14044,5600:247:4,-7.5,-64.5,0,0,-0.00544089 -14045,5600:247:3,-7,-64.5,0,0,-0.00544333 -14046,5600:246:4,-6.5,-64.5,0,0,-0.00544451 -14047,5600:246:3,-6,-64.5,0,0,-0.00544573 -14048,5600:245:4,-5.5,-64.5,0,0,-0.00544573 -14049,5600:245:3,-5,-64.5,0,0,-0.00544573 -14050,5600:144:4,-4.5,-64.5,0,0,-0.00544573 -14051,5600:144:3,-4,-64.5,0,0,-0.00544573 -14052,5600:143:4,-3.5,-64.5,0,0,-0.00544573 -14053,5600:143:3,-3,-64.5,0,0,-0.00544451 -14054,5600:142:4,-2.5,-64.5,0,0,-0.00544333 -14055,5600:142:3,-2,-64.5,0,0,-0.00544089 -14056,5600:141:4,-1.5,-64.5,0,0,-0.00543968 -14057,5600:141:3,-1,-64.5,0,0,-0.00543968 -14058,5600:140:4,-0.5,-64.5,0,0,-0.00543968 -14059,3600:140:4,0,-64.5,0,0,-0.0054385 -14060,3600:140:4,0.5,-64.5,0,0,-0.00543728 -14061,3600:141:3,1,-64.5,0,0,-0.00543606 -14062,3600:141:4,1.5,-64.5,0,0,-0.00543728 -14063,3600:142:3,2,-64.5,0,0,-0.00544089 -14064,3600:142:4,2.5,-64.5,0,0,-0.00544451 -14065,3600:143:3,3,-64.5,0,0,-0.00544573 -14066,3600:143:4,3.5,-64.5,0,0,-0.00544211 -14067,3600:144:3,4,-64.5,0,0,-0.00543968 -14068,3600:144:4,4.5,-64.5,0,0,-0.0054385 -14069,3600:245:3,5,-64.5,0,0,-0.00543728 -14070,3600:245:4,5.5,-64.5,0,0,-0.00543606 -14071,3600:246:3,6,-64.5,0,0,-0.00543485 -14072,3600:246:4,6.5,-64.5,0,0,-0.00543245 -14073,3600:247:3,7,-64.5,0,0,-0.00543124 -14074,3600:247:4,7.5,-64.5,0,0,-0.00543002 -14075,3600:248:3,8,-64.5,0,0,-0.00543245 -14076,3600:248:4,8.5,-64.5,0,0,-0.00543606 -14077,3600:249:3,9,-64.5,0,0,-0.00544089 -14078,3600:249:4,9.5,-64.5,0,0,-0.00544573 -14079,3601:140:3,10,-64.5,0,0,-0.00544935 -14080,3601:140:4,10.5,-64.5,0,0,-0.005453 -14081,3601:141:3,11,-64.5,0,0,-0.00545663 -14082,3601:141:4,11.5,-64.5,0,0,-0.00546392 -14083,3601:142:3,12,-64.5,0,0,-0.0054627 -14084,3601:142:4,12.5,-64.5,0,0,-0.00546511 -14085,3601:143:3,13,-64.5,0,0,-0.00546026 -14086,3601:143:4,13.5,-64.5,0,0,-0.00545663 -14087,3601:144:3,14,-64.5,0,0,-0.00545541 -14088,3601:144:4,14.5,-64.5,0,0,-0.00545541 -14089,3601:245:3,15,-64.5,0,0,-0.00545663 -14090,3601:245:4,15.5,-64.5,0,0,-0.00545663 -14091,3601:246:3,16,-64.5,0,0,-0.00545423 -14092,3601:246:4,16.5,-64.5,0,0,-0.005453 -14093,3601:247:3,17,-64.5,0,0,-0.005453 -14094,3601:247:4,17.5,-64.5,0,0,-0.00545423 -14095,3601:248:3,18,-64.5,0,0,-0.00545541 -14096,3601:248:4,18.5,-64.5,0,0,-0.00545423 -14097,3601:249:3,19,-64.5,0,0,-0.00545423 -14098,3601:249:4,19.5,-64.5,0,0,-0.00545423 -14099,3602:140:3,20,-64.5,0,0,-0.005453 -14100,3602:140:4,20.5,-64.5,0,0,-0.00545423 -14101,3602:141:3,21,-64.5,0,0,-0.00545423 -14102,3602:141:4,21.5,-64.5,0,0,-0.005453 -14103,3602:142:3,22,-64.5,0,0,-0.00545057 -14104,3602:142:4,22.5,-64.5,0,0,-0.00544935 -14105,3602:143:3,23,-64.5,0,0,-0.00544816 -14106,3602:143:4,23.5,-64.5,0,0,-0.00544695 -14107,3602:144:3,24,-64.5,0,0,-0.00544573 -14108,3602:144:4,24.5,-64.5,0,0,-0.00544695 -14109,3602:245:3,25,-64.5,0,0,-0.00544816 -14110,3602:245:4,25.5,-64.5,0,0,-0.00545179 -14111,3602:246:3,26,-64.5,0,0,-0.00545423 -14112,3602:246:4,26.5,-64.5,0,0,-0.00545423 -14113,3602:247:3,27,-64.5,0,0,-0.005453 -14114,3602:247:4,27.5,-64.5,0,0,-0.005453 -14115,3602:248:3,28,-64.5,0,0,-0.005453 -14116,3602:248:4,28.5,-64.5,0,0,-0.00545541 -14117,3602:249:3,29,-64.5,0,0,-0.00545663 -14118,3602:249:4,29.5,-64.5,0,0,-0.00545541 -14119,3603:140:3,30,-64.5,0,0,-0.00545423 -14120,3603:140:4,30.5,-64.5,0,0,-0.00545423 -14121,3603:141:3,31,-64.5,0,0,-0.00545541 -14122,3603:141:4,31.5,-64.5,0,0,-0.00546633 -14123,3603:142:3,32,-64.5,0,0,-0.00547972 -14124,3603:142:4,32.5,-64.5,0,0,-0.00548582 -14125,3603:143:3,33,-64.5,0,0,-0.00549434 -14126,3603:143:4,33.5,-64.5,0,0,-0.00548582 -14127,3603:144:3,34,-64.5,0,0,-0.00548824 -14128,3603:144:4,34.5,-64.5,0,0,-0.00549677 -14129,3603:245:3,35,-64.5,0,0,-0.00549557 -14130,3603:245:4,35.5,-64.5,0,0,-0.00550777 -14131,3603:246:3,36,-64.5,0,0,-0.00550165 -14132,3603:246:4,36.5,-64.5,0,0,-0.00547 -14133,3603:247:3,37,-64.5,0,0,-0.00546511 -14134,3603:247:4,37.5,-64.5,0,0,-0.00547 -14135,3603:248:3,38,-64.5,0,0,-0.00547241 -14136,3603:248:4,38.5,-64.5,0,0,-0.00547119 -14137,3603:249:3,39,-64.5,0,0,-0.00547364 -14138,3603:249:4,39.5,-64.5,0,0,-0.0054785 -14139,3604:140:3,40,-64.5,0,0,-0.00548214 -14140,3604:140:4,40.5,-64.5,0,0,-0.00548337 -14141,3604:141:3,41,-64.5,0,0,-0.00548337 -14142,3604:141:4,41.5,-64.5,0,0,-0.00547119 -14143,3607:140:3,70,-64.5,0,0,-0.00721599 -14144,3607:140:4,70.5,-64.5,0,0,-0.00697449 -14145,3607:141:3,71,-64.5,0,0,-0.00687893 -14146,3607:141:4,71.5,-64.5,0,0,-0.00673962 -14147,3607:142:3,72,-64.5,0,0,-0.00647801 -14148,3607:142:4,72.5,-64.5,0,0,-0.00641637 -14149,3607:143:4,73.5,-64.5,0,0,-0.00638081 -14150,3607:144:3,74,-64.5,0,0,-0.00634403 -14151,3607:144:4,74.5,-64.5,0,0,-0.00634261 -14152,3607:245:3,75,-64.5,0,0,-0.00637795 -14153,3607:245:4,75.5,-64.5,0,0,-0.00642495 -14154,3607:246:3,76,-64.5,0,0,-0.00653152 -14155,3607:246:4,76.5,-64.5,0,0,-0.00663108 -14156,3607:247:3,77,-64.5,0,0,-0.00684386 -14157,3607:247:4,77.5,-64.5,0,0,-0.00743778 -14158,3607:248:3,78,-64.5,0,0,-0.00815601 -14159,3615:140:4,150.5,-64.5,0,0,-0.00697757 -14160,3615:141:3,151,-64.5,0,0,-0.00683471 -14161,3615:141:4,151.5,-64.5,0,0,-0.00667991 -14162,3615:142:3,152,-64.5,0,0,-0.006504 -14163,3615:142:4,152.5,-64.5,0,0,-0.00635247 -14164,3615:143:3,153,-64.5,0,0,-0.00621283 -14165,3615:143:4,153.5,-64.5,0,0,-0.00610872 -14166,3615:144:4,154.5,-64.5,0,0,-0.00620175 -14167,3615:245:3,155,-64.5,0,0,-0.00590709 -14168,3615:245:4,155.5,-64.5,0,0,-0.00567548 -14169,3615:246:3,156,-64.5,0,0,-0.00551513 -14170,3615:246:4,156.5,-64.5,0,0,-0.00547 -14171,3615:247:3,157,-64.5,0,0,-0.00547364 -14172,3615:247:4,157.5,-64.5,0,0,-0.00547486 -14173,3615:248:3,158,-64.5,0,0,-0.00547727 -14174,3615:248:4,158.5,-64.5,0,0,-0.00547605 -14175,3615:249:3,159,-64.5,0,0,-0.00547 -14176,3615:249:4,159.5,-64.5,0,0,-0.00547119 -14177,3616:140:3,160,-64.5,0,0,-0.00547 -14178,3616:140:4,160.5,-64.5,0,0,-0.00547119 -14179,3616:141:3,161,-64.5,0,0,-0.00547119 -14180,3616:141:4,161.5,-64.5,0,0,-0.00547119 -14181,3616:142:3,162,-64.5,0,0,-0.00547119 -14182,3616:142:4,162.5,-64.5,0,0,-0.00547119 -14183,3616:143:3,163,-64.5,0,0,-0.00547119 -14184,3616:143:4,163.5,-64.5,0,0,-0.00547119 -14185,3616:144:3,164,-64.5,0,0,-0.00547119 -14186,3616:144:4,164.5,-64.5,0,0,-0.00547119 -14187,3616:245:3,165,-64.5,0,0,-0.00547241 -14188,3616:245:4,165.5,-64.5,0,0,-0.00547241 -14189,3616:246:3,166,-64.5,0,0,-0.00547241 -14190,3616:246:4,166.5,-64.5,0,0,-0.00547241 -14191,3616:247:3,167,-64.5,0,0,-0.00547241 -14192,3616:247:4,167.5,-64.5,0,0,-0.00547119 -14193,3616:248:3,168,-64.5,0,0,-0.00547119 -14194,3616:248:4,168.5,-64.5,0,0,-0.00547119 -14195,3616:249:3,169,-64.5,0,0,-0.00547 -14196,3616:249:4,169.5,-64.5,0,0,-0.00546878 -14197,3617:140:3,170,-64.5,0,0,-0.00546755 -14198,3617:140:4,170.5,-64.5,0,0,-0.00546633 -14199,3617:141:3,171,-64.5,0,0,-0.00546511 -14200,3617:141:4,171.5,-64.5,0,0,-0.00546511 -14201,3617:142:3,172,-64.5,0,0,-0.00546392 -14202,3617:142:4,172.5,-64.5,0,0,-0.0054627 -14203,3617:143:3,173,-64.5,0,0,-0.00546148 -14204,3617:143:4,173.5,-64.5,0,0,-0.00546148 -14205,3617:144:3,174,-64.5,0,0,-0.00546026 -14206,3617:144:4,174.5,-64.5,0,0,-0.00546026 -14207,3617:245:3,175,-64.5,0,0,-0.00546026 -14208,3617:245:4,175.5,-64.5,0,0,-0.00546148 -14209,3617:246:3,176,-64.5,0,0,-0.0054627 -14210,3617:246:4,176.5,-64.5,0,0,-0.00546392 -14211,3617:247:3,177,-64.5,0,0,-0.00546511 -14212,3617:247:4,177.5,-64.5,0,0,-0.00546633 -14213,3617:248:3,178,-64.5,0,0,-0.00546755 -14214,3617:248:4,178.5,-64.5,0,0,-0.00546878 -14215,3617:249:3,179,-64.5,0,0,-0.00546878 -14216,3617:249:4,179.5,-64.5,0,0,-0.00547 -14217,3618:140:3,180,-64.5,0,0,-0.00547119 -14218,5618:140:1,-180,-64,0,0,-0.00547119 -14219,5617:249:2,-179.5,-64,0,0,-0.00547241 -14220,5617:249:1,-179,-64,0,0,-0.00547241 -14221,5617:248:2,-178.5,-64,0,0,-0.00547241 -14222,5617:248:1,-178,-64,0,0,-0.00547241 -14223,5617:247:2,-177.5,-64,0,0,-0.00547241 -14224,5617:247:1,-177,-64,0,0,-0.00547364 -14225,5617:246:2,-176.5,-64,0,0,-0.00547364 -14226,5617:246:1,-176,-64,0,0,-0.00547364 -14227,5617:245:2,-175.5,-64,0,0,-0.00547486 -14228,5617:245:1,-175,-64,0,0,-0.00547605 -14229,5617:144:2,-174.5,-64,0,0,-0.00547727 -14230,5617:144:1,-174,-64,0,0,-0.00547486 -14231,5617:143:2,-173.5,-64,0,0,-0.00547364 -14232,5617:143:1,-173,-64,0,0,-0.00547241 -14233,5617:142:2,-172.5,-64,0,0,-0.00547119 -14234,5617:142:1,-172,-64,0,0,-0.00547119 -14235,5617:141:2,-171.5,-64,0,0,-0.00547 -14236,5617:141:1,-171,-64,0,0,-0.00547 -14237,5617:140:2,-170.5,-64,0,0,-0.00546878 -14238,5617:140:1,-170,-64,0,0,-0.00546878 -14239,5616:249:2,-169.5,-64,0,0,-0.00546755 -14240,5616:249:1,-169,-64,0,0,-0.00546633 -14241,5616:248:2,-168.5,-64,0,0,-0.00546633 -14242,5616:248:1,-168,-64,0,0,-0.00546511 -14243,5616:247:2,-167.5,-64,0,0,-0.00546392 -14244,5616:247:1,-167,-64,0,0,-0.00546392 -14245,5616:246:2,-166.5,-64,0,0,-0.00546148 -14246,5616:246:1,-166,-64,0,0,-0.00546026 -14247,5616:245:2,-165.5,-64,0,0,-0.00545907 -14248,5616:245:1,-165,-64,0,0,-0.00545907 -14249,5616:144:2,-164.5,-64,0,0,-0.00545907 -14250,5616:144:1,-164,-64,0,0,-0.00546026 -14251,5616:143:2,-163.5,-64,0,0,-0.00546026 -14252,5616:143:1,-163,-64,0,0,-0.00546148 -14253,5616:142:2,-162.5,-64,0,0,-0.0054627 -14254,5616:142:1,-162,-64,0,0,-0.00546392 -14255,5616:141:2,-161.5,-64,0,0,-0.00546511 -14256,5616:141:1,-161,-64,0,0,-0.00546755 -14257,5616:140:2,-160.5,-64,0,0,-0.00546878 -14258,5616:140:1,-160,-64,0,0,-0.00547 -14259,5615:249:2,-159.5,-64,0,0,-0.00547 -14260,5615:249:1,-159,-64,0,0,-0.00547119 -14261,5615:248:2,-158.5,-64,0,0,-0.00547241 -14262,5615:248:1,-158,-64,0,0,-0.00547364 -14263,5615:247:2,-157.5,-64,0,0,-0.00547486 -14264,5615:247:1,-157,-64,0,0,-0.00547605 -14265,5615:246:2,-156.5,-64,0,0,-0.00547605 -14266,5615:246:1,-156,-64,0,0,-0.00547727 -14267,5615:245:2,-155.5,-64,0,0,-0.0054785 -14268,5615:245:1,-155,-64,0,0,-0.00547972 -14269,5615:144:2,-154.5,-64,0,0,-0.00548091 -14270,5615:144:1,-154,-64,0,0,-0.00548337 -14271,5615:143:2,-153.5,-64,0,0,-0.00548459 -14272,5615:143:1,-153,-64,0,0,-0.00548582 -14273,5615:142:2,-152.5,-64,0,0,-0.00548582 -14274,5615:142:1,-152,-64,0,0,-0.00548582 -14275,5615:141:2,-151.5,-64,0,0,-0.00548824 -14276,5615:141:1,-151,-64,0,0,-0.00548947 -14277,5615:140:2,-150.5,-64,0,0,-0.00548947 -14278,5615:140:1,-150,-64,0,0,-0.00548824 -14279,5614:249:2,-149.5,-64,0,0,-0.00548824 -14280,5614:249:1,-149,-64,0,0,-0.00548947 -14281,5614:248:2,-148.5,-64,0,0,-0.00549312 -14282,5614:248:1,-148,-64,0,0,-0.00549312 -14283,5614:247:2,-147.5,-64,0,0,-0.00549069 -14284,5614:247:1,-147,-64,0,0,-0.00549189 -14285,5614:246:2,-146.5,-64,0,0,-0.00549189 -14286,5614:246:1,-146,-64,0,0,-0.00549069 -14287,5614:245:2,-145.5,-64,0,0,-0.00549069 -14288,5614:245:1,-145,-64,0,0,-0.00549069 -14289,5614:144:2,-144.5,-64,0,0,-0.00549069 -14290,5614:144:1,-144,-64,0,0,-0.00549312 -14291,5614:143:2,-143.5,-64,0,0,-0.00549312 -14292,5614:143:1,-143,-64,0,0,-0.00549312 -14293,5614:142:2,-142.5,-64,0,0,-0.00549312 -14294,5614:142:1,-142,-64,0,0,-0.00549557 -14295,5614:141:2,-141.5,-64,0,0,-0.00550165 -14296,5614:141:1,-141,-64,0,0,-0.00550288 -14297,5614:140:2,-140.5,-64,0,0,-0.00549923 -14298,5614:140:1,-140,-64,0,0,-0.00549434 -14299,5613:249:2,-139.5,-64,0,0,-0.00549189 -14300,5613:249:1,-139,-64,0,0,-0.00549069 -14301,5613:248:2,-138.5,-64,0,0,-0.00549557 -14302,5613:248:1,-138,-64,0,0,-0.0055237 -14303,5613:247:2,-137.5,-64,0,0,-0.00554216 -14304,5613:247:1,-137,-64,0,0,-0.00556313 -14305,5613:246:2,-136.5,-64,0,0,-0.00555201 -14306,5613:246:1,-136,-64,0,0,-0.005498 -14307,5613:245:2,-135.5,-64,0,0,-0.00549557 -14308,5613:245:1,-135,-64,0,0,-0.00549557 -14309,5613:144:2,-134.5,-64,0,0,-0.00549923 -14310,5613:144:1,-134,-64,0,0,-0.00554584 -14311,5613:143:2,-133.5,-64,0,0,-0.00574655 -14312,5613:143:1,-133,-64,0,0,-0.00625996 -14313,5613:142:2,-132.5,-64,0,0,-0.00639359 -14314,5613:142:1,-132,-64,0,0,-0.00641493 -14315,5613:141:2,-131.5,-64,0,0,-0.00642923 -14316,5613:141:1,-131,-64,0,0,-0.0064021 -14317,5613:140:2,-130.5,-64,0,0,-0.006253 -14318,5613:140:1,-130,-64,0,0,-0.0059771 -14319,5612:249:2,-129.5,-64,0,0,-0.00577342 -14320,5612:249:1,-129,-64,0,0,-0.00571472 -14321,5612:248:2,-128.5,-64,0,0,-0.00569569 -14322,5612:248:1,-128,-64,0,0,-0.00571852 -14323,5612:247:2,-127.5,-64,0,0,-0.00574273 -14324,5612:247:1,-127,-64,0,0,-0.00577213 -14325,5612:246:2,-126.5,-64,0,0,-0.00578628 -14326,5612:246:1,-126,-64,0,0,-0.00580432 -14327,5612:245:2,-125.5,-64,0,0,-0.00585222 -14328,5612:245:1,-125,-64,0,0,-0.00584053 -14329,5612:144:2,-124.5,-64,0,0,-0.00584833 -14330,5612:144:1,-124,-64,0,0,-0.00595719 -14331,5612:143:2,-123.5,-64,0,0,-0.00606137 -14332,5612:143:1,-123,-64,0,0,-0.00613596 -14333,5612:142:2,-122.5,-64,0,0,-0.00613867 -14334,5612:142:1,-122,-64,0,0,-0.00603315 -14335,5612:141:2,-121.5,-64,0,0,-0.00597974 -14336,5612:141:1,-121,-64,0,0,-0.0059519 -14337,5612:140:2,-120.5,-64,0,0,-0.00591367 -14338,5612:140:1,-120,-64,0,0,-0.00578114 -14339,5611:249:2,-119.5,-64,0,0,-0.00565033 -14340,5611:249:1,-119,-64,0,0,-0.0056403 -14341,5611:248:2,-118.5,-64,0,0,-0.00569824 -14342,5611:248:1,-118,-64,0,0,-0.0057033 -14343,5611:247:2,-117.5,-64,0,0,-0.00587828 -14344,5611:247:1,-117,-64,0,0,-0.00614004 -14345,5611:246:2,-116.5,-64,0,0,-0.006253 -14346,5611:246:1,-116,-64,0,0,-0.00638081 -14347,5611:245:2,-115.5,-64,0,0,-0.00645213 -14348,5611:245:1,-115,-64,0,0,-0.00650979 -14349,5611:144:2,-114.5,-64,0,0,-0.00652283 -14350,5611:144:1,-114,-64,0,0,-0.00643206 -14351,5611:143:2,-113.5,-64,0,0,-0.00633697 -14352,5611:143:1,-113,-64,0,0,-0.00627527 -14353,5611:142:2,-112.5,-64,0,0,-0.00625996 -14354,5611:142:1,-112,-64,0,0,-0.00634545 -14355,5611:141:2,-111.5,-64,0,0,-0.00635954 -14356,5611:141:1,-111,-64,0,0,-0.0063243 -14357,5611:140:2,-110.5,-64,0,0,-0.00646076 -14358,5611:140:1,-110,-64,0,0,-0.00654172 -14359,5610:249:2,-109.5,-64,0,0,-0.00652571 -14360,5610:249:1,-109,-64,0,0,-0.00646936 -14361,5610:248:2,-108.5,-64,0,0,-0.00657381 -14362,5610:248:1,-108,-64,0,0,-0.00654172 -14363,5610:247:2,-107.5,-64,0,0,-0.00645931 -14364,5610:247:1,-107,-64,0,0,-0.00629203 -14365,5610:246:2,-106.5,-64,0,0,-0.00602378 -14366,5610:246:1,-106,-64,0,0,-0.00575165 -14367,5610:245:2,-105.5,-64,0,0,-0.00563778 -14368,5610:245:1,-105,-64,0,0,-0.00560531 -14369,5610:144:2,-104.5,-64,0,0,-0.00560531 -14370,5610:144:1,-104,-64,0,0,-0.005619 -14371,5610:143:2,-103.5,-64,0,0,-0.00563778 -14372,5610:143:1,-103,-64,0,0,-0.00558047 -14373,5610:142:2,-102.5,-64,0,0,-0.00549189 -14374,5610:142:1,-102,-64,0,0,-0.00547364 -14375,5610:141:2,-101.5,-64,0,0,-0.00549312 -14376,5610:141:1,-101,-64,0,0,-0.00554708 -14377,5610:140:2,-100.5,-64,0,0,-0.00571092 -14378,5610:140:1,-100,-64,0,0,-0.00593871 -14379,5609:249:2,-99.5,-64,0,0,-0.0061264 -14380,5609:249:1,-99,-64,0,0,-0.00606676 -14381,5609:248:2,-98.5,-64,0,0,-0.00595852 -14382,5609:248:1,-98,-64,0,0,-0.00581074 -14383,5609:247:2,-97.5,-64,0,0,-0.00569696 -14384,5609:247:1,-97,-64,0,0,-0.0056028 -14385,5609:246:2,-96.5,-64,0,0,-0.00552985 -14386,5609:246:1,-96,-64,0,0,-0.00549189 -14387,5609:245:2,-95.5,-64,0,0,-0.00547119 -14388,5609:245:1,-95,-64,0,0,-0.00546633 -14389,5609:144:2,-94.5,-64,0,0,-0.00546633 -14390,5609:144:1,-94,-64,0,0,-0.00547 -14391,5609:143:2,-93.5,-64,0,0,-0.00547486 -14392,5609:143:1,-93,-64,0,0,-0.0054785 -14393,5609:142:2,-92.5,-64,0,0,-0.00547727 -14394,5609:142:1,-92,-64,0,0,-0.00546633 -14395,5609:141:2,-91.5,-64,0,0,-0.00545785 -14396,5609:141:1,-91,-64,0,0,-0.00545785 -14397,5609:140:2,-90.5,-64,0,0,-0.00545907 -14398,5609:140:1,-90,-64,0,0,-0.00546026 -14399,5608:249:2,-89.5,-64,0,0,-0.00546026 -14400,5608:249:1,-89,-64,0,0,-0.00546026 -14401,5608:248:2,-88.5,-64,0,0,-0.00546148 -14402,5608:248:1,-88,-64,0,0,-0.00546392 -14403,5608:247:2,-87.5,-64,0,0,-0.00546511 -14404,5608:247:1,-87,-64,0,0,-0.00546633 -14405,5608:246:2,-86.5,-64,0,0,-0.00546633 -14406,5608:246:1,-86,-64,0,0,-0.00546878 -14407,5608:245:2,-85.5,-64,0,0,-0.00547119 -14408,5608:245:1,-85,-64,0,0,-0.00547241 -14409,5608:144:2,-84.5,-64,0,0,-0.00547241 -14410,5608:144:1,-84,-64,0,0,-0.00547241 -14411,5608:143:2,-83.5,-64,0,0,-0.00547241 -14412,5608:143:1,-83,-64,0,0,-0.00547364 -14413,5608:142:2,-82.5,-64,0,0,-0.00547486 -14414,5608:142:1,-82,-64,0,0,-0.00547486 -14415,5608:141:2,-81.5,-64,0,0,-0.00547605 -14416,5608:141:1,-81,-64,0,0,-0.00547605 -14417,5608:140:2,-80.5,-64,0,0,-0.00547727 -14418,5608:140:1,-80,-64,0,0,-0.00547727 -14419,5607:249:2,-79.5,-64,0,0,-0.00547727 -14420,5607:249:1,-79,-64,0,0,-0.00547605 -14421,5607:248:2,-78.5,-64,0,0,-0.00547605 -14422,5607:248:1,-78,-64,0,0,-0.00547605 -14423,5607:247:2,-77.5,-64,0,0,-0.00547727 -14424,5607:247:1,-77,-64,0,0,-0.0054785 -14425,5607:246:2,-76.5,-64,0,0,-0.0054785 -14426,5607:246:1,-76,-64,0,0,-0.00547972 -14427,5607:245:2,-75.5,-64,0,0,-0.00548459 -14428,5607:245:1,-75,-64,0,0,-0.00548947 -14429,5607:144:2,-74.5,-64,0,0,-0.00549677 -14430,5607:144:1,-74,-64,0,0,-0.00550534 -14431,5607:143:2,-73.5,-64,0,0,-0.0055139 -14432,5607:143:1,-73,-64,0,0,-0.0055237 -14433,5607:142:2,-72.5,-64,0,0,-0.00553476 -14434,5607:142:1,-72,-64,0,0,-0.00554584 -14435,5607:141:2,-71.5,-64,0,0,-0.0055545 -14436,5607:141:1,-71,-64,0,0,-0.0055557 -14437,5607:140:2,-70.5,-64,0,0,-0.0055557 -14438,5607:140:1,-70,-64,0,0,-0.00557797 -14439,5606:249:2,-69.5,-64,0,0,-0.00566414 -14440,5606:249:1,-69,-64,0,0,-0.00577855 -14441,5606:248:2,-68.5,-64,0,0,-0.00587437 -14442,5606:248:1,-68,-64,0,0,-0.00592684 -14443,5606:247:2,-67.5,-64,0,0,-0.00590842 -14444,5605:249:2,-59.5,-64,0,0,-0.00551266 -14445,5605:249:1,-59,-64,0,0,-0.00552127 -14446,5605:248:2,-58.5,-64,0,0,-0.00550046 -14447,5605:248:1,-58,-64,0,0,-0.00548091 -14448,5605:247:2,-57.5,-64,0,0,-0.00547 -14449,5605:247:1,-57,-64,0,0,-0.00546755 -14450,5605:246:2,-56.5,-64,0,0,-0.00546633 -14451,5605:246:1,-56,-64,0,0,-0.00546755 -14452,5605:245:2,-55.5,-64,0,0,-0.00547 -14453,5605:245:1,-55,-64,0,0,-0.00547 -14454,5605:144:2,-54.5,-64,0,0,-0.00547 -14455,5605:144:1,-54,-64,0,0,-0.00546878 -14456,5605:143:2,-53.5,-64,0,0,-0.00546755 -14457,5605:143:1,-53,-64,0,0,-0.00546633 -14458,5605:142:2,-52.5,-64,0,0,-0.00546392 -14459,5605:142:1,-52,-64,0,0,-0.00546148 -14460,5605:141:2,-51.5,-64,0,0,-0.00546026 -14461,5605:141:1,-51,-64,0,0,-0.00546026 -14462,5605:140:2,-50.5,-64,0,0,-0.00546026 -14463,5605:140:1,-50,-64,0,0,-0.00546026 -14464,5604:249:2,-49.5,-64,0,0,-0.00546026 -14465,5604:249:1,-49,-64,0,0,-0.00546026 -14466,5604:248:2,-48.5,-64,0,0,-0.00545907 -14467,5604:248:1,-48,-64,0,0,-0.00545907 -14468,5604:247:2,-47.5,-64,0,0,-0.00545907 -14469,5604:247:1,-47,-64,0,0,-0.00545907 -14470,5604:246:2,-46.5,-64,0,0,-0.00545907 -14471,5604:246:1,-46,-64,0,0,-0.00545907 -14472,5604:245:2,-45.5,-64,0,0,-0.00545907 -14473,5604:245:1,-45,-64,0,0,-0.00545907 -14474,5604:144:2,-44.5,-64,0,0,-0.00545785 -14475,5604:144:1,-44,-64,0,0,-0.00545785 -14476,5604:143:2,-43.5,-64,0,0,-0.00545785 -14477,5604:143:1,-43,-64,0,0,-0.00545663 -14478,5604:142:2,-42.5,-64,0,0,-0.00545541 -14479,5604:142:1,-42,-64,0,0,-0.00545541 -14480,5604:141:2,-41.5,-64,0,0,-0.00545541 -14481,5604:141:1,-41,-64,0,0,-0.00545541 -14482,5604:140:2,-40.5,-64,0,0,-0.00545541 -14483,5604:140:1,-40,-64,0,0,-0.00545541 -14484,5603:249:2,-39.5,-64,0,0,-0.00545541 -14485,5603:249:1,-39,-64,0,0,-0.00545541 -14486,5603:248:2,-38.5,-64,0,0,-0.00545541 -14487,5603:248:1,-38,-64,0,0,-0.00545541 -14488,5603:247:2,-37.5,-64,0,0,-0.00545541 -14489,5603:247:1,-37,-64,0,0,-0.00545541 -14490,5603:246:2,-36.5,-64,0,0,-0.00545541 -14491,5603:246:1,-36,-64,0,0,-0.00545541 -14492,5603:245:2,-35.5,-64,0,0,-0.00545541 -14493,5603:245:1,-35,-64,0,0,-0.00545541 -14494,5603:144:2,-34.5,-64,0,0,-0.00545541 -14495,5603:144:1,-34,-64,0,0,-0.00545541 -14496,5603:143:2,-33.5,-64,0,0,-0.00545541 -14497,5603:143:1,-33,-64,0,0,-0.00545541 -14498,5603:142:2,-32.5,-64,0,0,-0.00545541 -14499,5603:142:1,-32,-64,0,0,-0.00545423 -14500,5603:141:2,-31.5,-64,0,0,-0.00545423 -14501,5603:141:1,-31,-64,0,0,-0.00545423 -14502,5603:140:2,-30.5,-64,0,0,-0.005453 -14503,5603:140:1,-30,-64,0,0,-0.005453 -14504,5602:249:2,-29.5,-64,0,0,-0.00545423 -14505,5602:249:1,-29,-64,0,0,-0.00545423 -14506,5602:248:2,-28.5,-64,0,0,-0.00545423 -14507,5602:248:1,-28,-64,0,0,-0.00545423 -14508,5602:247:2,-27.5,-64,0,0,-0.00545423 -14509,5602:247:1,-27,-64,0,0,-0.00545423 -14510,5602:246:2,-26.5,-64,0,0,-0.00545423 -14511,5602:246:1,-26,-64,0,0,-0.00545423 -14512,5602:245:2,-25.5,-64,0,0,-0.005453 -14513,5602:245:1,-25,-64,0,0,-0.005453 -14514,5602:144:2,-24.5,-64,0,0,-0.005453 -14515,5602:144:1,-24,-64,0,0,-0.005453 -14516,5602:143:2,-23.5,-64,0,0,-0.00545179 -14517,5602:143:1,-23,-64,0,0,-0.00545179 -14518,5602:142:2,-22.5,-64,0,0,-0.00545057 -14519,5602:142:1,-22,-64,0,0,-0.00544935 -14520,5602:141:2,-21.5,-64,0,0,-0.00544935 -14521,5602:141:1,-21,-64,0,0,-0.00544935 -14522,5602:140:2,-20.5,-64,0,0,-0.00544935 -14523,5602:140:1,-20,-64,0,0,-0.00544816 -14524,5601:249:2,-19.5,-64,0,0,-0.00544816 -14525,5601:249:1,-19,-64,0,0,-0.00544695 -14526,5601:248:2,-18.5,-64,0,0,-0.00544695 -14527,5601:248:1,-18,-64,0,0,-0.00544573 -14528,5601:247:2,-17.5,-64,0,0,-0.00544573 -14529,5601:247:1,-17,-64,0,0,-0.00544573 -14530,5601:246:2,-16.5,-64,0,0,-0.00544573 -14531,5601:246:1,-16,-64,0,0,-0.00544573 -14532,5601:245:2,-15.5,-64,0,0,-0.00544573 -14533,5601:245:1,-15,-64,0,0,-0.00544573 -14534,5601:144:2,-14.5,-64,0,0,-0.00544573 -14535,5601:144:1,-14,-64,0,0,-0.00544695 -14536,5601:143:2,-13.5,-64,0,0,-0.00544695 -14537,5601:143:1,-13,-64,0,0,-0.00544695 -14538,5601:142:2,-12.5,-64,0,0,-0.00544573 -14539,5601:142:1,-12,-64,0,0,-0.00544573 -14540,5601:141:2,-11.5,-64,0,0,-0.00544451 -14541,5601:141:1,-11,-64,0,0,-0.00544333 -14542,5601:140:2,-10.5,-64,0,0,-0.00544089 -14543,5601:140:1,-10,-64,0,0,-0.0054385 -14544,5600:249:2,-9.5,-64,0,0,-0.00543728 -14545,5600:249:1,-9,-64,0,0,-0.00543606 -14546,5600:248:2,-8.5,-64,0,0,-0.00543606 -14547,5600:248:1,-8,-64,0,0,-0.00543728 -14548,5600:247:2,-7.5,-64,0,0,-0.00543968 -14549,5600:247:1,-7,-64,0,0,-0.00544089 -14550,5600:246:2,-6.5,-64,0,0,-0.00544089 -14551,5600:246:1,-6,-64,0,0,-0.00543968 -14552,5600:245:2,-5.5,-64,0,0,-0.0054385 -14553,5600:245:1,-5,-64,0,0,-0.0054385 -14554,5600:144:2,-4.5,-64,0,0,-0.00544089 -14555,5600:144:1,-4,-64,0,0,-0.00544211 -14556,5600:143:2,-3.5,-64,0,0,-0.00544211 -14557,5600:143:1,-3,-64,0,0,-0.00544211 -14558,5600:142:2,-2.5,-64,0,0,-0.00544089 -14559,5600:142:1,-2,-64,0,0,-0.0054385 -14560,5600:141:2,-1.5,-64,0,0,-0.00543485 -14561,5600:141:1,-1,-64,0,0,-0.00543245 -14562,5600:140:2,-0.5,-64,0,0,-0.00543124 -14563,3600:140:2,0,-64,0,0,-0.00543002 -14564,3600:140:2,0.5,-64,0,0,-0.00543002 -14565,3600:141:1,1,-64,0,0,-0.00543002 -14566,3600:141:2,1.5,-64,0,0,-0.00543124 -14567,3600:142:1,2,-64,0,0,-0.00543363 -14568,3600:142:2,2.5,-64,0,0,-0.0054385 -14569,3600:143:1,3,-64,0,0,-0.00544089 -14570,3600:143:2,3.5,-64,0,0,-0.00544211 -14571,3600:144:1,4,-64,0,0,-0.00544211 -14572,3600:144:2,4.5,-64,0,0,-0.00543968 -14573,3600:245:1,5,-64,0,0,-0.0054385 -14574,3600:245:2,5.5,-64,0,0,-0.00543728 -14575,3600:246:1,6,-64,0,0,-0.00543606 -14576,3600:246:2,6.5,-64,0,0,-0.00543606 -14577,3600:247:1,7,-64,0,0,-0.00543363 -14578,3600:247:2,7.5,-64,0,0,-0.00543124 -14579,3600:248:1,8,-64,0,0,-0.00543124 -14580,3600:248:2,8.5,-64,0,0,-0.00543363 -14581,3600:249:1,9,-64,0,0,-0.0054385 -14582,3600:249:2,9.5,-64,0,0,-0.00544333 -14583,3601:140:1,10,-64,0,0,-0.00544573 -14584,3601:140:2,10.5,-64,0,0,-0.00544935 -14585,3601:141:1,11,-64,0,0,-0.005453 -14586,3601:141:2,11.5,-64,0,0,-0.00545785 -14587,3601:142:1,12,-64,0,0,-0.0054627 -14588,3601:142:2,12.5,-64,0,0,-0.00546392 -14589,3601:143:1,13,-64,0,0,-0.00545907 -14590,3601:143:2,13.5,-64,0,0,-0.00545785 -14591,3601:144:1,14,-64,0,0,-0.00545663 -14592,3601:144:2,14.5,-64,0,0,-0.00545423 -14593,3601:245:1,15,-64,0,0,-0.00545179 -14594,3601:245:2,15.5,-64,0,0,-0.005453 -14595,3601:246:1,16,-64,0,0,-0.00545423 -14596,3601:246:2,16.5,-64,0,0,-0.00545541 -14597,3601:247:1,17,-64,0,0,-0.00545541 -14598,3601:247:2,17.5,-64,0,0,-0.005453 -14599,3601:248:1,18,-64,0,0,-0.005453 -14600,3601:248:2,18.5,-64,0,0,-0.005453 -14601,3601:249:1,19,-64,0,0,-0.00545423 -14602,3601:249:2,19.5,-64,0,0,-0.00545423 -14603,3602:140:1,20,-64,0,0,-0.00545423 -14604,3602:140:2,20.5,-64,0,0,-0.00545423 -14605,3602:141:1,21,-64,0,0,-0.00545179 -14606,3602:141:2,21.5,-64,0,0,-0.00544935 -14607,3602:142:1,22,-64,0,0,-0.00544816 -14608,3602:142:2,22.5,-64,0,0,-0.00544573 -14609,3602:143:1,23,-64,0,0,-0.00544451 -14610,3602:143:2,23.5,-64,0,0,-0.00544451 -14611,3602:144:1,24,-64,0,0,-0.00544573 -14612,3602:144:2,24.5,-64,0,0,-0.00544695 -14613,3602:245:1,25,-64,0,0,-0.00544695 -14614,3602:245:2,25.5,-64,0,0,-0.00544935 -14615,3602:246:1,26,-64,0,0,-0.00545057 -14616,3602:246:2,26.5,-64,0,0,-0.00545179 -14617,3602:247:1,27,-64,0,0,-0.00545057 -14618,3602:247:2,27.5,-64,0,0,-0.00545179 -14619,3602:248:1,28,-64,0,0,-0.005453 -14620,3602:248:2,28.5,-64,0,0,-0.00545423 -14621,3602:249:1,29,-64,0,0,-0.00545541 -14622,3602:249:2,29.5,-64,0,0,-0.00545663 -14623,3603:140:1,30,-64,0,0,-0.00545663 -14624,3603:140:2,30.5,-64,0,0,-0.00545663 -14625,3603:141:1,31,-64,0,0,-0.00545663 -14626,3603:141:2,31.5,-64,0,0,-0.00546026 -14627,3603:142:1,32,-64,0,0,-0.00546633 -14628,3603:142:2,32.5,-64,0,0,-0.00547364 -14629,3603:143:1,33,-64,0,0,-0.00548459 -14630,3603:143:2,33.5,-64,0,0,-0.00548582 -14631,3603:144:1,34,-64,0,0,-0.00548214 -14632,3603:144:2,34.5,-64,0,0,-0.00547364 -14633,3603:245:1,35,-64,0,0,-0.00547364 -14634,3603:245:2,35.5,-64,0,0,-0.00547605 -14635,3603:246:1,36,-64,0,0,-0.00547364 -14636,3603:246:2,36.5,-64,0,0,-0.00547241 -14637,3603:247:1,37,-64,0,0,-0.00547364 -14638,3603:247:2,37.5,-64,0,0,-0.00547241 -14639,3603:248:1,38,-64,0,0,-0.00547241 -14640,3603:248:2,38.5,-64,0,0,-0.00547364 -14641,3603:249:1,39,-64,0,0,-0.00547486 -14642,3603:249:2,39.5,-64,0,0,-0.00547241 -14643,3604:140:1,40,-64,0,0,-0.00547 -14644,3604:140:2,40.5,-64,0,0,-0.00546878 -14645,3604:141:1,41,-64,0,0,-0.00547241 -14646,3604:141:2,41.5,-64,0,0,-0.00547727 -14647,3604:142:1,42,-64,0,0,-0.00547727 -14648,3606:249:2,69.5,-64,0,0,-0.00691734 -14649,3607:140:1,70,-64,0,0,-0.00685758 -14650,3607:140:2,70.5,-64,0,0,-0.00648668 -14651,3607:141:1,71,-64,0,0,-0.00629625 -14652,3607:141:2,71.5,-64,0,0,-0.00628644 -14653,3607:142:1,72,-64,0,0,-0.00623495 -14654,3607:142:2,72.5,-64,0,0,-0.00622802 -14655,3607:143:2,73.5,-64,0,0,-0.0062544 -14656,3607:144:1,74,-64,0,0,-0.00625716 -14657,3607:144:2,74.5,-64,0,0,-0.00625576 -14658,3607:245:1,75,-64,0,0,-0.00627387 -14659,3607:245:2,75.5,-64,0,0,-0.00630044 -14660,3607:246:1,76,-64,0,0,-0.00632992 -14661,3607:246:2,76.5,-64,0,0,-0.00637938 -14662,3607:247:1,77,-64,0,0,-0.00651266 -14663,3607:247:2,77.5,-64,0,0,-0.00680892 -14664,3607:248:1,78,-64,0,0,-0.00750431 -14665,3607:248:2,78.5,-64,0,0,-0.0082971 -14666,3607:249:1,79,-64,0,0,-0.00866939 -14667,3614:249:1,149,-64,0,0,-0.00699313 -14668,3614:249:2,149.5,-64,0,0,-0.00675161 -14669,3615:140:1,150,-64,0,0,-0.00670822 -14670,3615:140:2,150.5,-64,0,0,-0.00661633 -14671,3615:141:1,151,-64,0,0,-0.00664437 -14672,3615:141:2,151.5,-64,0,0,-0.00657086 -14673,3615:142:1,152,-64,0,0,-0.0063652 -14674,3615:142:2,152.5,-64,0,0,-0.00621835 -14675,3615:143:1,153,-64,0,0,-0.00589401 -14676,3615:143:2,153.5,-64,0,0,-0.00567803 -14677,3615:144:1,154,-64,0,0,-0.00561029 -14678,3615:144:2,154.5,-64,0,0,-0.00564153 -14679,3615:245:1,155,-64,0,0,-0.00554953 -14680,3615:245:2,155.5,-64,0,0,-0.00547119 -14681,3615:246:1,156,-64,0,0,-0.00547241 -14682,3615:246:2,156.5,-64,0,0,-0.00547364 -14683,3615:247:1,157,-64,0,0,-0.00547486 -14684,3615:247:2,157.5,-64,0,0,-0.00547486 -14685,3615:248:1,158,-64,0,0,-0.00547364 -14686,3615:248:2,158.5,-64,0,0,-0.00547 -14687,3615:249:1,159,-64,0,0,-0.00547 -14688,3615:249:2,159.5,-64,0,0,-0.00546755 -14689,3616:140:1,160,-64,0,0,-0.00546633 -14690,3616:140:2,160.5,-64,0,0,-0.00546755 -14691,3616:141:1,161,-64,0,0,-0.00546633 -14692,3616:141:2,161.5,-64,0,0,-0.00546511 -14693,3616:142:1,162,-64,0,0,-0.00546392 -14694,3616:142:2,162.5,-64,0,0,-0.00546511 -14695,3616:143:1,163,-64,0,0,-0.00546755 -14696,3616:143:2,163.5,-64,0,0,-0.00547 -14697,3616:144:1,164,-64,0,0,-0.00547241 -14698,3616:144:2,164.5,-64,0,0,-0.00547241 -14699,3616:245:1,165,-64,0,0,-0.00546878 -14700,3616:245:2,165.5,-64,0,0,-0.00546878 -14701,3616:246:1,166,-64,0,0,-0.00547 -14702,3616:246:2,166.5,-64,0,0,-0.00547 -14703,3616:247:1,167,-64,0,0,-0.00547 -14704,3616:247:2,167.5,-64,0,0,-0.00547 -14705,3616:248:1,168,-64,0,0,-0.00546878 -14706,3616:248:2,168.5,-64,0,0,-0.00546878 -14707,3616:249:1,169,-64,0,0,-0.00546878 -14708,3616:249:2,169.5,-64,0,0,-0.00546755 -14709,3617:140:1,170,-64,0,0,-0.00546755 -14710,3617:140:2,170.5,-64,0,0,-0.00546633 -14711,3617:141:1,171,-64,0,0,-0.00546633 -14712,3617:141:2,171.5,-64,0,0,-0.00546511 -14713,3617:142:1,172,-64,0,0,-0.00546392 -14714,3617:142:2,172.5,-64,0,0,-0.00546392 -14715,3617:143:1,173,-64,0,0,-0.0054627 -14716,3617:143:2,173.5,-64,0,0,-0.0054627 -14717,3617:144:1,174,-64,0,0,-0.00546148 -14718,3617:144:2,174.5,-64,0,0,-0.00546148 -14719,3617:245:1,175,-64,0,0,-0.00546392 -14720,3617:245:2,175.5,-64,0,0,-0.00546392 -14721,3617:246:1,176,-64,0,0,-0.00546511 -14722,3617:246:2,176.5,-64,0,0,-0.00546633 -14723,3617:247:1,177,-64,0,0,-0.00546633 -14724,3617:247:2,177.5,-64,0,0,-0.00546755 -14725,3617:248:1,178,-64,0,0,-0.00546755 -14726,3617:248:2,178.5,-64,0,0,-0.00546755 -14727,3617:249:1,179,-64,0,0,-0.00547 -14728,3617:249:2,179.5,-64,0,0,-0.00547119 -14729,3618:140:1,180,-64,0,0,-0.00547119 -14730,5618:130:3,-180,-63.5,0,0,-0.00547119 -14731,5617:239:4,-179.5,-63.5,0,0,-0.00547241 -14732,5617:239:3,-179,-63.5,0,0,-0.00547241 -14733,5617:238:4,-178.5,-63.5,0,0,-0.00547241 -14734,5617:238:3,-178,-63.5,0,0,-0.00547241 -14735,5617:237:4,-177.5,-63.5,0,0,-0.00547241 -14736,5617:237:3,-177,-63.5,0,0,-0.00547241 -14737,5617:236:4,-176.5,-63.5,0,0,-0.00547364 -14738,5617:236:3,-176,-63.5,0,0,-0.00547486 -14739,5617:235:4,-175.5,-63.5,0,0,-0.00547727 -14740,5617:235:3,-175,-63.5,0,0,-0.0054785 -14741,5617:134:4,-174.5,-63.5,0,0,-0.0054785 -14742,5617:134:3,-174,-63.5,0,0,-0.00547605 -14743,5617:133:4,-173.5,-63.5,0,0,-0.00547364 -14744,5617:133:3,-173,-63.5,0,0,-0.00547241 -14745,5617:132:4,-172.5,-63.5,0,0,-0.00547119 -14746,5617:132:3,-172,-63.5,0,0,-0.00547119 -14747,5617:131:4,-171.5,-63.5,0,0,-0.00547 -14748,5617:131:3,-171,-63.5,0,0,-0.00547 -14749,5617:130:4,-170.5,-63.5,0,0,-0.00547 -14750,5617:130:3,-170,-63.5,0,0,-0.00546878 -14751,5616:239:4,-169.5,-63.5,0,0,-0.00546878 -14752,5616:239:3,-169,-63.5,0,0,-0.00546755 -14753,5616:238:4,-168.5,-63.5,0,0,-0.00546755 -14754,5616:238:3,-168,-63.5,0,0,-0.00546633 -14755,5616:237:4,-167.5,-63.5,0,0,-0.00546511 -14756,5616:237:3,-167,-63.5,0,0,-0.00546511 -14757,5616:236:4,-166.5,-63.5,0,0,-0.0054627 -14758,5616:236:3,-166,-63.5,0,0,-0.00546148 -14759,5616:235:4,-165.5,-63.5,0,0,-0.00546026 -14760,5616:235:3,-165,-63.5,0,0,-0.00546026 -14761,5616:134:4,-164.5,-63.5,0,0,-0.00546026 -14762,5616:134:3,-164,-63.5,0,0,-0.00546148 -14763,5616:133:4,-163.5,-63.5,0,0,-0.00546148 -14764,5616:133:3,-163,-63.5,0,0,-0.0054627 -14765,5616:132:4,-162.5,-63.5,0,0,-0.00546392 -14766,5616:132:3,-162,-63.5,0,0,-0.00546511 -14767,5616:131:4,-161.5,-63.5,0,0,-0.00546755 -14768,5616:131:3,-161,-63.5,0,0,-0.00546878 -14769,5616:130:4,-160.5,-63.5,0,0,-0.00547119 -14770,5616:130:3,-160,-63.5,0,0,-0.00547119 -14771,5615:239:4,-159.5,-63.5,0,0,-0.00547241 -14772,5615:239:3,-159,-63.5,0,0,-0.00547241 -14773,5615:238:4,-158.5,-63.5,0,0,-0.00547364 -14774,5615:238:3,-158,-63.5,0,0,-0.00547364 -14775,5615:237:4,-157.5,-63.5,0,0,-0.00547486 -14776,5615:237:3,-157,-63.5,0,0,-0.00547605 -14777,5615:236:4,-156.5,-63.5,0,0,-0.00547605 -14778,5615:236:3,-156,-63.5,0,0,-0.00547727 -14779,5615:235:4,-155.5,-63.5,0,0,-0.0054785 -14780,5615:235:3,-155,-63.5,0,0,-0.00547972 -14781,5615:134:4,-154.5,-63.5,0,0,-0.00548091 -14782,5615:134:3,-154,-63.5,0,0,-0.00548214 -14783,5615:133:4,-153.5,-63.5,0,0,-0.00548459 -14784,5615:133:3,-153,-63.5,0,0,-0.00548582 -14785,5615:132:4,-152.5,-63.5,0,0,-0.00548701 -14786,5615:132:3,-152,-63.5,0,0,-0.00548824 -14787,5615:131:4,-151.5,-63.5,0,0,-0.00548824 -14788,5615:131:3,-151,-63.5,0,0,-0.00548947 -14789,5615:130:4,-150.5,-63.5,0,0,-0.00548947 -14790,5615:130:3,-150,-63.5,0,0,-0.00548947 -14791,5614:239:4,-149.5,-63.5,0,0,-0.00548824 -14792,5614:239:3,-149,-63.5,0,0,-0.00548824 -14793,5614:238:4,-148.5,-63.5,0,0,-0.00549312 -14794,5614:238:3,-148,-63.5,0,0,-0.00549312 -14795,5614:237:4,-147.5,-63.5,0,0,-0.00549189 -14796,5614:237:3,-147,-63.5,0,0,-0.00549069 -14797,5614:236:4,-146.5,-63.5,0,0,-0.00549189 -14798,5614:236:3,-146,-63.5,0,0,-0.00549312 -14799,5614:235:4,-145.5,-63.5,0,0,-0.00549434 -14800,5614:235:3,-145,-63.5,0,0,-0.00549312 -14801,5614:134:4,-144.5,-63.5,0,0,-0.00549434 -14802,5614:134:3,-144,-63.5,0,0,-0.00549557 -14803,5614:133:4,-143.5,-63.5,0,0,-0.00549557 -14804,5614:133:3,-143,-63.5,0,0,-0.005498 -14805,5614:132:4,-142.5,-63.5,0,0,-0.00550658 -14806,5614:132:3,-142,-63.5,0,0,-0.00553724 -14807,5614:131:4,-141.5,-63.5,0,0,-0.00557672 -14808,5614:131:3,-141,-63.5,0,0,-0.00562777 -14809,5614:130:4,-140.5,-63.5,0,0,-0.00561527 -14810,5614:130:3,-140,-63.5,0,0,-0.00557302 -14811,5613:239:4,-139.5,-63.5,0,0,-0.00554216 -14812,5613:239:3,-139,-63.5,0,0,-0.00551266 -14813,5613:238:4,-138.5,-63.5,0,0,-0.00551513 -14814,5613:238:3,-138,-63.5,0,0,-0.00559039 -14815,5613:237:4,-137.5,-63.5,0,0,-0.00562026 -14816,5613:237:3,-137,-63.5,0,0,-0.00561154 -14817,5613:236:4,-136.5,-63.5,0,0,-0.00558293 -14818,5613:236:3,-136,-63.5,0,0,-0.00555325 -14819,5613:235:4,-135.5,-63.5,0,0,-0.00551024 -14820,5613:235:3,-135,-63.5,0,0,-0.00551024 -14821,5613:134:4,-134.5,-63.5,0,0,-0.00549923 -14822,5613:134:3,-134,-63.5,0,0,-0.00550165 -14823,5613:133:4,-133.5,-63.5,0,0,-0.00557177 -14824,5613:133:3,-133,-63.5,0,0,-0.00583146 -14825,5613:132:4,-132.5,-63.5,0,0,-0.00647511 -14826,5613:132:3,-132,-63.5,0,0,-0.00656355 -14827,5613:131:4,-131.5,-63.5,0,0,-0.0066237 -14828,5613:131:3,-131,-63.5,0,0,-0.00670671 -14829,5613:130:4,-130.5,-63.5,0,0,-0.0067366 -14830,5613:130:3,-130,-63.5,0,0,-0.00640641 -14831,5612:239:4,-129.5,-63.5,0,0,-0.0059176 -14832,5612:239:3,-129,-63.5,0,0,-0.00575934 -14833,5612:238:4,-128.5,-63.5,0,0,-0.00573378 -14834,5612:238:3,-128,-63.5,0,0,-0.00584833 -14835,5612:237:4,-127.5,-63.5,0,0,-0.00626272 -14836,5612:237:3,-127,-63.5,0,0,-0.00637086 -14837,5612:236:4,-126.5,-63.5,0,0,-0.00628507 -14838,5612:236:3,-126,-63.5,0,0,-0.00613729 -14839,5612:235:4,-125.5,-63.5,0,0,-0.00596252 -14840,5612:235:3,-125,-63.5,0,0,-0.00592419 -14841,5612:134:4,-124.5,-63.5,0,0,-0.00593343 -14842,5612:134:3,-124,-63.5,0,0,-0.00607759 -14843,5612:133:4,-123.5,-63.5,0,0,-0.0061949 -14844,5612:133:3,-123,-63.5,0,0,-0.00624325 -14845,5612:132:4,-122.5,-63.5,0,0,-0.00618385 -14846,5612:132:3,-122,-63.5,0,0,-0.00606137 -14847,5612:131:4,-121.5,-63.5,0,0,-0.00601978 -14848,5612:131:3,-121,-63.5,0,0,-0.00600371 -14849,5612:130:4,-120.5,-63.5,0,0,-0.00594399 -14850,5612:130:3,-120,-63.5,0,0,-0.00586263 -14851,5611:239:4,-119.5,-63.5,0,0,-0.00579527 -14852,5611:239:3,-119,-63.5,0,0,-0.005767 -14853,5611:238:4,-118.5,-63.5,0,0,-0.005767 -14854,5611:238:3,-118,-63.5,0,0,-0.00574398 -14855,5611:237:4,-117.5,-63.5,0,0,-0.00577213 -14856,5611:237:3,-117,-63.5,0,0,-0.00597442 -14857,5611:236:4,-116.5,-63.5,0,0,-0.00613596 -14858,5611:236:3,-116,-63.5,0,0,-0.00620453 -14859,5611:235:4,-115.5,-63.5,0,0,-0.00630044 -14860,5611:235:3,-115,-63.5,0,0,-0.00643067 -14861,5611:134:4,-114.5,-63.5,0,0,-0.00661633 -14862,5611:134:3,-114,-63.5,0,0,-0.00667991 -14863,5611:133:4,-113.5,-63.5,0,0,-0.00661925 -14864,5611:133:3,-113,-63.5,0,0,-0.00653298 -14865,5611:132:4,-112.5,-63.5,0,0,-0.00645213 -14866,5611:132:3,-112,-63.5,0,0,-0.0064078 -14867,5611:131:4,-111.5,-63.5,0,0,-0.00642495 -14868,5611:131:3,-111,-63.5,0,0,-0.00644928 -14869,5611:130:4,-110.5,-63.5,0,0,-0.00649386 -14870,5611:130:3,-110,-63.5,0,0,-0.00655189 -14871,5610:239:4,-109.5,-63.5,0,0,-0.00656213 -14872,5610:239:3,-109,-63.5,0,0,-0.00649677 -14873,5610:238:4,-108.5,-63.5,0,0,-0.00661925 -14874,5610:238:3,-108,-63.5,0,0,-0.00664879 -14875,5610:237:4,-107.5,-63.5,0,0,-0.00666505 -14876,5610:237:3,-107,-63.5,0,0,-0.00666361 -14877,5610:236:4,-106.5,-63.5,0,0,-0.00660749 -14878,5610:236:3,-106,-63.5,0,0,-0.00637938 -14879,5610:235:4,-105.5,-63.5,0,0,-0.00601843 -14880,5610:235:3,-105,-63.5,0,0,-0.00584703 -14881,5610:134:4,-104.5,-63.5,0,0,-0.00584053 -14882,5610:134:3,-104,-63.5,0,0,-0.00607891 -14883,5610:133:4,-103.5,-63.5,0,0,-0.00662662 -14884,5610:133:3,-103,-63.5,0,0,-0.00661045 -14885,5610:132:4,-102.5,-63.5,0,0,-0.00628366 -14886,5610:132:3,-102,-63.5,0,0,-0.00594399 -14887,5610:131:4,-101.5,-63.5,0,0,-0.00588091 -14888,5610:131:3,-101,-63.5,0,0,-0.00597045 -14889,5610:130:4,-100.5,-63.5,0,0,-0.00616329 -14890,5610:130:3,-100,-63.5,0,0,-0.0061455 -14891,5609:239:4,-99.5,-63.5,0,0,-0.00611826 -14892,5609:239:3,-99,-63.5,0,0,-0.00611145 -14893,5609:238:4,-98.5,-63.5,0,0,-0.0058496 -14894,5609:238:3,-98,-63.5,0,0,-0.0057198 -14895,5609:237:4,-97.5,-63.5,0,0,-0.00564907 -14896,5609:237:3,-97,-63.5,0,0,-0.00563778 -14897,5609:236:4,-96.5,-63.5,0,0,-0.00559782 -14898,5609:236:3,-96,-63.5,0,0,-0.00553108 -14899,5609:235:4,-95.5,-63.5,0,0,-0.00548337 -14900,5609:235:3,-95,-63.5,0,0,-0.00546878 -14901,5609:134:4,-94.5,-63.5,0,0,-0.00547 -14902,5609:134:3,-94,-63.5,0,0,-0.00547486 -14903,5609:133:4,-93.5,-63.5,0,0,-0.00548337 -14904,5609:133:3,-93,-63.5,0,0,-0.00549189 -14905,5609:132:4,-92.5,-63.5,0,0,-0.00549677 -14906,5609:132:3,-92,-63.5,0,0,-0.00549312 -14907,5609:131:4,-91.5,-63.5,0,0,-0.00547364 -14908,5609:131:3,-91,-63.5,0,0,-0.00546026 -14909,5609:130:4,-90.5,-63.5,0,0,-0.00545907 -14910,5609:130:3,-90,-63.5,0,0,-0.0054627 -14911,5608:239:4,-89.5,-63.5,0,0,-0.00546511 -14912,5608:239:3,-89,-63.5,0,0,-0.00546511 -14913,5608:238:4,-88.5,-63.5,0,0,-0.00546511 -14914,5608:238:3,-88,-63.5,0,0,-0.00546392 -14915,5608:237:4,-87.5,-63.5,0,0,-0.00546392 -14916,5608:237:3,-87,-63.5,0,0,-0.00546392 -14917,5608:236:4,-86.5,-63.5,0,0,-0.00546511 -14918,5608:236:3,-86,-63.5,0,0,-0.00547 -14919,5608:235:4,-85.5,-63.5,0,0,-0.00547119 -14920,5608:235:3,-85,-63.5,0,0,-0.00547241 -14921,5608:134:4,-84.5,-63.5,0,0,-0.00547241 -14922,5608:134:3,-84,-63.5,0,0,-0.00547364 -14923,5608:133:4,-83.5,-63.5,0,0,-0.00547364 -14924,5608:133:3,-83,-63.5,0,0,-0.00547241 -14925,5608:132:4,-82.5,-63.5,0,0,-0.00547364 -14926,5608:132:3,-82,-63.5,0,0,-0.00547486 -14927,5608:131:4,-81.5,-63.5,0,0,-0.00547605 -14928,5608:131:3,-81,-63.5,0,0,-0.00547486 -14929,5608:130:4,-80.5,-63.5,0,0,-0.00547486 -14930,5608:130:3,-80,-63.5,0,0,-0.00547605 -14931,5607:239:4,-79.5,-63.5,0,0,-0.00547605 -14932,5607:239:3,-79,-63.5,0,0,-0.00547486 -14933,5607:238:4,-78.5,-63.5,0,0,-0.00547364 -14934,5607:238:3,-78,-63.5,0,0,-0.00547364 -14935,5607:237:4,-77.5,-63.5,0,0,-0.00547241 -14936,5607:237:3,-77,-63.5,0,0,-0.00547486 -14937,5607:236:4,-76.5,-63.5,0,0,-0.00547727 -14938,5607:236:3,-76,-63.5,0,0,-0.00547727 -14939,5607:235:4,-75.5,-63.5,0,0,-0.0054785 -14940,5607:235:3,-75,-63.5,0,0,-0.0054785 -14941,5607:134:4,-74.5,-63.5,0,0,-0.00548337 -14942,5607:134:3,-74,-63.5,0,0,-0.00549069 -14943,5607:133:4,-73.5,-63.5,0,0,-0.00550046 -14944,5607:133:3,-73,-63.5,0,0,-0.00551266 -14945,5607:132:4,-72.5,-63.5,0,0,-0.00552985 -14946,5607:132:3,-72,-63.5,0,0,-0.00558168 -14947,5607:131:4,-71.5,-63.5,0,0,-0.00566165 -14948,5607:131:3,-71,-63.5,0,0,-0.00566541 -14949,5607:130:4,-70.5,-63.5,0,0,-0.00566414 -14950,5607:130:3,-70,-63.5,0,0,-0.00572232 -14951,5606:239:4,-69.5,-63.5,0,0,-0.00590185 -14952,5606:239:3,-69,-63.5,0,0,-0.00613184 -14953,5606:238:4,-68.5,-63.5,0,0,-0.00635247 -14954,5606:238:3,-68,-63.5,0,0,-0.0062697 -14955,5606:237:4,-67.5,-63.5,0,0,-0.00609109 -14956,5606:130:4,-60.5,-63.5,0,0,-0.00557052 -14957,5606:130:3,-60,-63.5,0,0,-0.00553968 -14958,5605:239:4,-59.5,-63.5,0,0,-0.00552861 -14959,5605:239:3,-59,-63.5,0,0,-0.00553108 -14960,5605:238:4,-58.5,-63.5,0,0,-0.00550534 -14961,5605:238:3,-58,-63.5,0,0,-0.00548337 -14962,5605:237:4,-57.5,-63.5,0,0,-0.00547119 -14963,5605:237:3,-57,-63.5,0,0,-0.00546878 -14964,5605:236:4,-56.5,-63.5,0,0,-0.00546755 -14965,5605:236:3,-56,-63.5,0,0,-0.00546878 -14966,5605:235:4,-55.5,-63.5,0,0,-0.00546878 -14967,5605:235:3,-55,-63.5,0,0,-0.00547 -14968,5605:134:4,-54.5,-63.5,0,0,-0.00547 -14969,5605:134:3,-54,-63.5,0,0,-0.00546878 -14970,5605:133:4,-53.5,-63.5,0,0,-0.00546755 -14971,5605:133:3,-53,-63.5,0,0,-0.00546633 -14972,5605:132:4,-52.5,-63.5,0,0,-0.00546392 -14973,5605:132:3,-52,-63.5,0,0,-0.00546148 -14974,5605:131:4,-51.5,-63.5,0,0,-0.00546026 -14975,5605:131:3,-51,-63.5,0,0,-0.00546026 -14976,5605:130:4,-50.5,-63.5,0,0,-0.00546026 -14977,5605:130:3,-50,-63.5,0,0,-0.00546026 -14978,5604:239:4,-49.5,-63.5,0,0,-0.00546026 -14979,5604:239:3,-49,-63.5,0,0,-0.00546026 -14980,5604:238:4,-48.5,-63.5,0,0,-0.00545907 -14981,5604:238:3,-48,-63.5,0,0,-0.00545907 -14982,5604:237:4,-47.5,-63.5,0,0,-0.00545907 -14983,5604:237:3,-47,-63.5,0,0,-0.00545907 -14984,5604:236:4,-46.5,-63.5,0,0,-0.00545907 -14985,5604:236:3,-46,-63.5,0,0,-0.00545907 -14986,5604:235:4,-45.5,-63.5,0,0,-0.00545785 -14987,5604:235:3,-45,-63.5,0,0,-0.00545785 -14988,5604:134:4,-44.5,-63.5,0,0,-0.00545785 -14989,5604:134:3,-44,-63.5,0,0,-0.00545785 -14990,5604:133:4,-43.5,-63.5,0,0,-0.00545785 -14991,5604:133:3,-43,-63.5,0,0,-0.00545663 -14992,5604:132:4,-42.5,-63.5,0,0,-0.00545663 -14993,5604:132:3,-42,-63.5,0,0,-0.00545663 -14994,5604:131:4,-41.5,-63.5,0,0,-0.00545663 -14995,5604:131:3,-41,-63.5,0,0,-0.00545663 -14996,5604:130:4,-40.5,-63.5,0,0,-0.00545663 -14997,5604:130:3,-40,-63.5,0,0,-0.00545663 -14998,5603:239:4,-39.5,-63.5,0,0,-0.00545663 -14999,5603:239:3,-39,-63.5,0,0,-0.00545663 -15000,5603:238:4,-38.5,-63.5,0,0,-0.00545541 -15001,5603:238:3,-38,-63.5,0,0,-0.00545541 -15002,5603:237:4,-37.5,-63.5,0,0,-0.00545541 -15003,5603:237:3,-37,-63.5,0,0,-0.00545541 -15004,5603:236:4,-36.5,-63.5,0,0,-0.00545541 -15005,5603:236:3,-36,-63.5,0,0,-0.00545541 -15006,5603:235:4,-35.5,-63.5,0,0,-0.00545541 -15007,5603:235:3,-35,-63.5,0,0,-0.00545541 -15008,5603:134:4,-34.5,-63.5,0,0,-0.00545541 -15009,5603:134:3,-34,-63.5,0,0,-0.00545541 -15010,5603:133:4,-33.5,-63.5,0,0,-0.00545541 -15011,5603:133:3,-33,-63.5,0,0,-0.00545541 -15012,5603:132:4,-32.5,-63.5,0,0,-0.00545541 -15013,5603:132:3,-32,-63.5,0,0,-0.00545423 -15014,5603:131:4,-31.5,-63.5,0,0,-0.00545423 -15015,5603:131:3,-31,-63.5,0,0,-0.00545423 -15016,5603:130:4,-30.5,-63.5,0,0,-0.00545423 -15017,5603:130:3,-30,-63.5,0,0,-0.00545423 -15018,5602:239:4,-29.5,-63.5,0,0,-0.00545423 -15019,5602:239:3,-29,-63.5,0,0,-0.00545423 -15020,5602:238:4,-28.5,-63.5,0,0,-0.00545423 -15021,5602:238:3,-28,-63.5,0,0,-0.00545423 -15022,5602:237:4,-27.5,-63.5,0,0,-0.00545423 -15023,5602:237:3,-27,-63.5,0,0,-0.00545423 -15024,5602:236:4,-26.5,-63.5,0,0,-0.00545423 -15025,5602:236:3,-26,-63.5,0,0,-0.00545423 -15026,5602:235:4,-25.5,-63.5,0,0,-0.00545423 -15027,5602:235:3,-25,-63.5,0,0,-0.00545423 -15028,5602:134:4,-24.5,-63.5,0,0,-0.005453 -15029,5602:134:3,-24,-63.5,0,0,-0.005453 -15030,5602:133:4,-23.5,-63.5,0,0,-0.005453 -15031,5602:133:3,-23,-63.5,0,0,-0.00545179 -15032,5602:132:4,-22.5,-63.5,0,0,-0.00545179 -15033,5602:132:3,-22,-63.5,0,0,-0.00545057 -15034,5602:131:4,-21.5,-63.5,0,0,-0.00545057 -15035,5602:131:3,-21,-63.5,0,0,-0.00544935 -15036,5602:130:4,-20.5,-63.5,0,0,-0.00544935 -15037,5602:130:3,-20,-63.5,0,0,-0.00544816 -15038,5601:239:4,-19.5,-63.5,0,0,-0.00544816 -15039,5601:239:3,-19,-63.5,0,0,-0.00544695 -15040,5601:238:4,-18.5,-63.5,0,0,-0.00544695 -15041,5601:238:3,-18,-63.5,0,0,-0.00544573 -15042,5601:237:4,-17.5,-63.5,0,0,-0.00544573 -15043,5601:237:3,-17,-63.5,0,0,-0.00544451 -15044,5601:236:4,-16.5,-63.5,0,0,-0.00544451 -15045,5601:236:3,-16,-63.5,0,0,-0.00544451 -15046,5601:235:4,-15.5,-63.5,0,0,-0.00544451 -15047,5601:235:3,-15,-63.5,0,0,-0.00544451 -15048,5601:134:4,-14.5,-63.5,0,0,-0.00544451 -15049,5601:134:3,-14,-63.5,0,0,-0.00544451 -15050,5601:133:4,-13.5,-63.5,0,0,-0.00544451 -15051,5601:133:3,-13,-63.5,0,0,-0.00544451 -15052,5601:132:4,-12.5,-63.5,0,0,-0.00544451 -15053,5601:132:3,-12,-63.5,0,0,-0.00544451 -15054,5601:131:4,-11.5,-63.5,0,0,-0.00544333 -15055,5601:131:3,-11,-63.5,0,0,-0.00544211 -15056,5601:130:4,-10.5,-63.5,0,0,-0.00544089 -15057,5601:130:3,-10,-63.5,0,0,-0.00544089 -15058,5600:239:4,-9.5,-63.5,0,0,-0.00543968 -15059,5600:239:3,-9,-63.5,0,0,-0.0054385 -15060,5600:238:4,-8.5,-63.5,0,0,-0.00543606 -15061,5600:238:3,-8,-63.5,0,0,-0.00543485 -15062,5600:237:4,-7.5,-63.5,0,0,-0.00543485 -15063,5600:237:3,-7,-63.5,0,0,-0.00543485 -15064,5600:236:4,-6.5,-63.5,0,0,-0.00543485 -15065,5600:236:3,-6,-63.5,0,0,-0.00543363 -15066,5600:235:4,-5.5,-63.5,0,0,-0.00543245 -15067,5600:235:3,-5,-63.5,0,0,-0.00543245 -15068,5600:134:4,-4.5,-63.5,0,0,-0.00543363 -15069,5600:134:3,-4,-63.5,0,0,-0.00543363 -15070,5600:133:4,-3.5,-63.5,0,0,-0.00543363 -15071,5600:133:3,-3,-63.5,0,0,-0.00543363 -15072,5600:132:4,-2.5,-63.5,0,0,-0.00543363 -15073,5600:132:3,-2,-63.5,0,0,-0.00543245 -15074,5600:131:4,-1.5,-63.5,0,0,-0.00543124 -15075,5600:131:3,-1,-63.5,0,0,-0.00543124 -15076,5600:130:4,-0.5,-63.5,0,0,-0.00543124 -15077,3600:130:4,0,-63.5,0,0,-0.00543245 -15078,3600:130:4,0.5,-63.5,0,0,-0.00543363 -15079,3600:131:3,1,-63.5,0,0,-0.00543363 -15080,3600:131:4,1.5,-63.5,0,0,-0.00543245 -15081,3600:132:3,2,-63.5,0,0,-0.00543124 -15082,3600:132:4,2.5,-63.5,0,0,-0.00543124 -15083,3600:133:3,3,-63.5,0,0,-0.00543245 -15084,3600:133:4,3.5,-63.5,0,0,-0.00543363 -15085,3600:134:3,4,-63.5,0,0,-0.00543485 -15086,3600:134:4,4.5,-63.5,0,0,-0.00543485 -15087,3600:235:3,5,-63.5,0,0,-0.00543485 -15088,3600:235:4,5.5,-63.5,0,0,-0.00543363 -15089,3600:236:3,6,-63.5,0,0,-0.00543363 -15090,3600:236:4,6.5,-63.5,0,0,-0.00543606 -15091,3600:237:3,7,-63.5,0,0,-0.00543728 -15092,3600:237:4,7.5,-63.5,0,0,-0.00543606 -15093,3600:238:3,8,-63.5,0,0,-0.00543363 -15094,3600:238:4,8.5,-63.5,0,0,-0.00543363 -15095,3600:239:3,9,-63.5,0,0,-0.00543606 -15096,3600:239:4,9.5,-63.5,0,0,-0.00544211 -15097,3601:130:3,10,-63.5,0,0,-0.00544451 -15098,3601:130:4,10.5,-63.5,0,0,-0.00544695 -15099,3601:131:3,11,-63.5,0,0,-0.00545057 -15100,3601:131:4,11.5,-63.5,0,0,-0.00545423 -15101,3601:132:3,12,-63.5,0,0,-0.00545785 -15102,3601:132:4,12.5,-63.5,0,0,-0.00545541 -15103,3601:133:3,13,-63.5,0,0,-0.00545423 -15104,3601:133:4,13.5,-63.5,0,0,-0.00545541 -15105,3601:134:3,14,-63.5,0,0,-0.00545541 -15106,3601:134:4,14.5,-63.5,0,0,-0.00545423 -15107,3601:235:3,15,-63.5,0,0,-0.00545541 -15108,3601:235:4,15.5,-63.5,0,0,-0.00545541 -15109,3601:236:3,16,-63.5,0,0,-0.00545541 -15110,3601:236:4,16.5,-63.5,0,0,-0.00545541 -15111,3601:237:3,17,-63.5,0,0,-0.00545423 -15112,3601:237:4,17.5,-63.5,0,0,-0.00545179 -15113,3601:238:3,18,-63.5,0,0,-0.00544935 -15114,3601:238:4,18.5,-63.5,0,0,-0.00544935 -15115,3601:239:3,19,-63.5,0,0,-0.00545057 -15116,3601:239:4,19.5,-63.5,0,0,-0.00545179 -15117,3602:130:3,20,-63.5,0,0,-0.00545179 -15118,3602:130:4,20.5,-63.5,0,0,-0.00545057 -15119,3602:131:3,21,-63.5,0,0,-0.00544816 -15120,3602:131:4,21.5,-63.5,0,0,-0.00544695 -15121,3602:132:3,22,-63.5,0,0,-0.00544573 -15122,3602:132:4,22.5,-63.5,0,0,-0.00544573 -15123,3602:133:3,23,-63.5,0,0,-0.00544695 -15124,3602:133:4,23.5,-63.5,0,0,-0.00544695 -15125,3602:134:3,24,-63.5,0,0,-0.00544816 -15126,3602:134:4,24.5,-63.5,0,0,-0.00544816 -15127,3602:235:3,25,-63.5,0,0,-0.00544935 -15128,3602:235:4,25.5,-63.5,0,0,-0.00544935 -15129,3602:236:3,26,-63.5,0,0,-0.00544935 -15130,3602:236:4,26.5,-63.5,0,0,-0.00544935 -15131,3602:237:3,27,-63.5,0,0,-0.00544935 -15132,3602:237:4,27.5,-63.5,0,0,-0.00544935 -15133,3602:238:3,28,-63.5,0,0,-0.00545179 -15134,3602:238:4,28.5,-63.5,0,0,-0.00545423 -15135,3602:239:3,29,-63.5,0,0,-0.00545541 -15136,3602:239:4,29.5,-63.5,0,0,-0.00545541 -15137,3603:130:3,30,-63.5,0,0,-0.00545663 -15138,3603:130:4,30.5,-63.5,0,0,-0.00545663 -15139,3603:131:3,31,-63.5,0,0,-0.00545785 -15140,3603:131:4,31.5,-63.5,0,0,-0.00545907 -15141,3603:132:3,32,-63.5,0,0,-0.0054627 -15142,3603:132:4,32.5,-63.5,0,0,-0.00546633 -15143,3603:133:3,33,-63.5,0,0,-0.00547364 -15144,3603:133:4,33.5,-63.5,0,0,-0.00547 -15145,3603:134:3,34,-63.5,0,0,-0.00547241 -15146,3603:134:4,34.5,-63.5,0,0,-0.00547241 -15147,3603:235:3,35,-63.5,0,0,-0.00547241 -15148,3603:235:4,35.5,-63.5,0,0,-0.00547486 -15149,3603:236:3,36,-63.5,0,0,-0.00547241 -15150,3603:236:4,36.5,-63.5,0,0,-0.00547241 -15151,3603:237:3,37,-63.5,0,0,-0.00547119 -15152,3603:237:4,37.5,-63.5,0,0,-0.00547 -15153,3603:238:3,38,-63.5,0,0,-0.00547 -15154,3603:238:4,38.5,-63.5,0,0,-0.00547 -15155,3603:239:3,39,-63.5,0,0,-0.00547119 -15156,3603:239:4,39.5,-63.5,0,0,-0.00547241 -15157,3604:130:3,40,-63.5,0,0,-0.00547119 -15158,3604:130:4,40.5,-63.5,0,0,-0.00547 -15159,3604:131:3,41,-63.5,0,0,-0.00547 -15160,3604:131:4,41.5,-63.5,0,0,-0.00547241 -15161,3604:132:3,42,-63.5,0,0,-0.00547972 -15162,3604:132:4,42.5,-63.5,0,0,-0.00548459 -15163,3604:133:3,43,-63.5,0,0,-0.00548582 -15164,3604:133:4,43.5,-63.5,0,0,-0.00548582 -15165,3604:134:3,44,-63.5,0,0,-0.00547 -15166,3606:239:4,69.5,-63.5,0,0,-0.00669775 -15167,3607:130:3,70,-63.5,0,0,-0.00640641 -15168,3607:130:4,70.5,-63.5,0,0,-0.00603986 -15169,3607:131:3,71,-63.5,0,0,-0.00601978 -15170,3607:131:4,71.5,-63.5,0,0,-0.00609109 -15171,3607:132:3,72,-63.5,0,0,-0.00608704 -15172,3607:132:4,72.5,-63.5,0,0,-0.00607083 -15173,3607:133:4,73.5,-63.5,0,0,-0.00611958 -15174,3607:134:3,74,-63.5,0,0,-0.00612777 -15175,3607:134:4,74.5,-63.5,0,0,-0.0061237 -15176,3607:235:3,75,-63.5,0,0,-0.00615234 -15177,3607:235:4,75.5,-63.5,0,0,-0.00619351 -15178,3607:236:3,76,-63.5,0,0,-0.00622249 -15179,3607:236:4,76.5,-63.5,0,0,-0.00626132 -15180,3607:237:3,77,-63.5,0,0,-0.00629625 -15181,3607:237:4,77.5,-63.5,0,0,-0.00640354 -15182,3607:238:3,78,-63.5,0,0,-0.00686368 -15183,3607:238:4,78.5,-63.5,0,0,-0.00769204 -15184,3607:239:3,79,-63.5,0,0,-0.00825468 -15185,3607:239:4,79.5,-63.5,0,0,-0.00870425 -15186,3608:130:3,80,-63.5,0,0,-0.0090082 -15187,3608:130:4,80.5,-63.5,0,0,-0.00925252 -15188,3608:131:3,81,-63.5,0,0,-0.00937919 -15189,3614:237:4,147.5,-63.5,0,0,-0.00735543 -15190,3614:238:3,148,-63.5,0,0,-0.00728379 -15191,3614:238:4,148.5,-63.5,0,0,-0.00718397 -15192,3614:239:3,149,-63.5,0,0,-0.00687282 -15193,3614:239:4,149.5,-63.5,0,0,-0.0064192 -15194,3615:130:3,150,-63.5,0,0,-0.00630326 -15195,3615:130:4,150.5,-63.5,0,0,-0.00621418 -15196,3615:131:3,151,-63.5,0,0,-0.00616191 -15197,3615:131:4,151.5,-63.5,0,0,-0.00616329 -15198,3615:132:3,152,-63.5,0,0,-0.00605332 -15199,3615:132:4,152.5,-63.5,0,0,-0.00577471 -15200,3615:133:3,153,-63.5,0,0,-0.00559164 -15201,3615:133:4,153.5,-63.5,0,0,-0.00550534 -15202,3615:134:3,154,-63.5,0,0,-0.00548337 -15203,3615:134:4,154.5,-63.5,0,0,-0.00547605 -15204,3615:235:3,155,-63.5,0,0,-0.00547605 -15205,3615:235:4,155.5,-63.5,0,0,-0.0054785 -15206,3615:236:3,156,-63.5,0,0,-0.00547605 -15207,3615:236:4,156.5,-63.5,0,0,-0.00547605 -15208,3615:237:3,157,-63.5,0,0,-0.00547727 -15209,3615:237:4,157.5,-63.5,0,0,-0.00547605 -15210,3615:238:3,158,-63.5,0,0,-0.00547119 -15211,3615:238:4,158.5,-63.5,0,0,-0.00546633 -15212,3615:239:3,159,-63.5,0,0,-0.00546392 -15213,3615:239:4,159.5,-63.5,0,0,-0.00546148 -15214,3616:130:3,160,-63.5,0,0,-0.00545907 -15215,3616:130:4,160.5,-63.5,0,0,-0.00545907 -15216,3616:131:3,161,-63.5,0,0,-0.00545907 -15217,3616:131:4,161.5,-63.5,0,0,-0.0054627 -15218,3616:132:3,162,-63.5,0,0,-0.00546633 -15219,3616:132:4,162.5,-63.5,0,0,-0.00546755 -15220,3616:133:3,163,-63.5,0,0,-0.00546878 -15221,3616:133:4,163.5,-63.5,0,0,-0.00547119 -15222,3616:134:3,164,-63.5,0,0,-0.00547364 -15223,3616:134:4,164.5,-63.5,0,0,-0.00547605 -15224,3616:235:3,165,-63.5,0,0,-0.00547119 -15225,3616:235:4,165.5,-63.5,0,0,-0.00546878 -15226,3616:236:3,166,-63.5,0,0,-0.00546755 -15227,3616:236:4,166.5,-63.5,0,0,-0.00546755 -15228,3616:237:3,167,-63.5,0,0,-0.00546755 -15229,3616:237:4,167.5,-63.5,0,0,-0.00546755 -15230,3616:238:3,168,-63.5,0,0,-0.00546755 -15231,3616:238:4,168.5,-63.5,0,0,-0.00546755 -15232,3616:239:3,169,-63.5,0,0,-0.00546755 -15233,3616:239:4,169.5,-63.5,0,0,-0.00546755 -15234,3617:130:3,170,-63.5,0,0,-0.00546633 -15235,3617:130:4,170.5,-63.5,0,0,-0.00546633 -15236,3617:131:3,171,-63.5,0,0,-0.00546633 -15237,3617:131:4,171.5,-63.5,0,0,-0.00546511 -15238,3617:132:3,172,-63.5,0,0,-0.00546511 -15239,3617:132:4,172.5,-63.5,0,0,-0.00546511 -15240,3617:133:3,173,-63.5,0,0,-0.00546511 -15241,3617:133:4,173.5,-63.5,0,0,-0.00546511 -15242,3617:134:3,174,-63.5,0,0,-0.00546392 -15243,3617:134:4,174.5,-63.5,0,0,-0.00546392 -15244,3617:235:3,175,-63.5,0,0,-0.00546392 -15245,3617:235:4,175.5,-63.5,0,0,-0.00546511 -15246,3617:236:3,176,-63.5,0,0,-0.00546633 -15247,3617:236:4,176.5,-63.5,0,0,-0.00546755 -15248,3617:237:3,177,-63.5,0,0,-0.00546878 -15249,3617:237:4,177.5,-63.5,0,0,-0.00546878 -15250,3617:238:3,178,-63.5,0,0,-0.00546878 -15251,3617:238:4,178.5,-63.5,0,0,-0.00546878 -15252,3617:239:3,179,-63.5,0,0,-0.00547 -15253,3617:239:4,179.5,-63.5,0,0,-0.00547119 -15254,3618:130:3,180,-63.5,0,0,-0.00547119 -15255,5618:130:1,-180,-63,0,0,-0.00547119 -15256,5617:239:2,-179.5,-63,0,0,-0.00547119 -15257,5617:239:1,-179,-63,0,0,-0.00547241 -15258,5617:238:2,-178.5,-63,0,0,-0.00547241 -15259,5617:238:1,-178,-63,0,0,-0.00547241 -15260,5617:237:2,-177.5,-63,0,0,-0.00547241 -15261,5617:237:1,-177,-63,0,0,-0.00547241 -15262,5617:236:2,-176.5,-63,0,0,-0.00547364 -15263,5617:236:1,-176,-63,0,0,-0.00547727 -15264,5617:235:2,-175.5,-63,0,0,-0.00548091 -15265,5617:235:1,-175,-63,0,0,-0.00548091 -15266,5617:134:2,-174.5,-63,0,0,-0.00547972 -15267,5617:134:1,-174,-63,0,0,-0.00547605 -15268,5617:133:2,-173.5,-63,0,0,-0.00547364 -15269,5617:133:1,-173,-63,0,0,-0.00547241 -15270,5617:132:2,-172.5,-63,0,0,-0.00547119 -15271,5617:132:1,-172,-63,0,0,-0.00547119 -15272,5617:131:2,-171.5,-63,0,0,-0.00547 -15273,5617:131:1,-171,-63,0,0,-0.00546878 -15274,5617:130:2,-170.5,-63,0,0,-0.00546878 -15275,5617:130:1,-170,-63,0,0,-0.00546878 -15276,5616:239:2,-169.5,-63,0,0,-0.00546755 -15277,5616:239:1,-169,-63,0,0,-0.00546755 -15278,5616:238:2,-168.5,-63,0,0,-0.00546755 -15279,5616:238:1,-168,-63,0,0,-0.00546633 -15280,5616:237:2,-167.5,-63,0,0,-0.00546633 -15281,5616:237:1,-167,-63,0,0,-0.00546511 -15282,5616:236:2,-166.5,-63,0,0,-0.0054627 -15283,5616:236:1,-166,-63,0,0,-0.0054627 -15284,5616:235:2,-165.5,-63,0,0,-0.0054627 -15285,5616:235:1,-165,-63,0,0,-0.00546148 -15286,5616:134:2,-164.5,-63,0,0,-0.0054627 -15287,5616:134:1,-164,-63,0,0,-0.0054627 -15288,5616:133:2,-163.5,-63,0,0,-0.00546392 -15289,5616:133:1,-163,-63,0,0,-0.00546511 -15290,5616:132:2,-162.5,-63,0,0,-0.00546633 -15291,5616:132:1,-162,-63,0,0,-0.00546755 -15292,5616:131:2,-161.5,-63,0,0,-0.00546878 -15293,5616:131:1,-161,-63,0,0,-0.00547 -15294,5616:130:2,-160.5,-63,0,0,-0.00547119 -15295,5616:130:1,-160,-63,0,0,-0.00547241 -15296,5615:239:2,-159.5,-63,0,0,-0.00547364 -15297,5615:239:1,-159,-63,0,0,-0.00547364 -15298,5615:238:2,-158.5,-63,0,0,-0.00547364 -15299,5615:238:1,-158,-63,0,0,-0.00547486 -15300,5615:237:2,-157.5,-63,0,0,-0.00547486 -15301,5615:237:1,-157,-63,0,0,-0.00547605 -15302,5615:236:2,-156.5,-63,0,0,-0.00547727 -15303,5615:236:1,-156,-63,0,0,-0.00547727 -15304,5615:235:2,-155.5,-63,0,0,-0.0054785 -15305,5615:235:1,-155,-63,0,0,-0.00547972 -15306,5615:134:2,-154.5,-63,0,0,-0.00548091 -15307,5615:134:1,-154,-63,0,0,-0.00548214 -15308,5615:133:2,-153.5,-63,0,0,-0.00548459 -15309,5615:133:1,-153,-63,0,0,-0.00548582 -15310,5615:132:2,-152.5,-63,0,0,-0.00548701 -15311,5615:132:1,-152,-63,0,0,-0.00548824 -15312,5615:131:2,-151.5,-63,0,0,-0.00548824 -15313,5615:131:1,-151,-63,0,0,-0.00548947 -15314,5615:130:2,-150.5,-63,0,0,-0.00549069 -15315,5615:130:1,-150,-63,0,0,-0.00549069 -15316,5614:239:2,-149.5,-63,0,0,-0.00548947 -15317,5614:239:1,-149,-63,0,0,-0.00548947 -15318,5614:238:2,-148.5,-63,0,0,-0.00549189 -15319,5614:238:1,-148,-63,0,0,-0.00549189 -15320,5614:237:2,-147.5,-63,0,0,-0.00549189 -15321,5614:237:1,-147,-63,0,0,-0.00549189 -15322,5614:236:2,-146.5,-63,0,0,-0.00549434 -15323,5614:236:1,-146,-63,0,0,-0.00549677 -15324,5614:235:2,-145.5,-63,0,0,-0.00549923 -15325,5614:235:1,-145,-63,0,0,-0.00549923 -15326,5614:134:2,-144.5,-63,0,0,-0.00549312 -15327,5614:134:1,-144,-63,0,0,-0.00549434 -15328,5614:133:2,-143.5,-63,0,0,-0.00549557 -15329,5614:133:1,-143,-63,0,0,-0.00550288 -15330,5614:132:2,-142.5,-63,0,0,-0.00552003 -15331,5614:132:1,-142,-63,0,0,-0.0055434 -15332,5614:131:2,-141.5,-63,0,0,-0.00562026 -15333,5614:131:1,-141,-63,0,0,-0.00587178 -15334,5614:130:2,-140.5,-63,0,0,-0.00583016 -15335,5614:130:1,-140,-63,0,0,-0.0056843 -15336,5613:239:2,-139.5,-63,0,0,-0.00567803 -15337,5613:239:1,-139,-63,0,0,-0.00563277 -15338,5613:238:2,-138.5,-63,0,0,-0.00567675 -15339,5613:238:1,-138,-63,0,0,-0.00567421 -15340,5613:237:2,-137.5,-63,0,0,-0.00566541 -15341,5613:237:1,-137,-63,0,0,-0.0056843 -15342,5613:236:2,-136.5,-63,0,0,-0.00567171 -15343,5613:236:1,-136,-63,0,0,-0.00563778 -15344,5613:235:2,-135.5,-63,0,0,-0.00561653 -15345,5613:235:1,-135,-63,0,0,-0.00560656 -15346,5613:134:2,-134.5,-63,0,0,-0.00558418 -15347,5613:134:1,-134,-63,0,0,-0.00551024 -15348,5613:133:2,-133.5,-63,0,0,-0.00550411 -15349,5613:133:1,-133,-63,0,0,-0.00556807 -15350,5613:132:2,-132.5,-63,0,0,-0.00577726 -15351,5613:132:1,-132,-63,0,0,-0.00625716 -15352,5613:131:2,-131.5,-63,0,0,-0.00651558 -15353,5613:131:1,-131,-63,0,0,-0.00663842 -15354,5613:130:2,-130.5,-63,0,0,-0.00683926 -15355,5613:130:1,-130,-63,0,0,-0.00707292 -15356,5612:239:2,-129.5,-63,0,0,-0.0067441 -15357,5612:239:1,-129,-63,0,0,-0.00593472 -15358,5612:238:2,-128.5,-63,0,0,-0.00579787 -15359,5612:238:1,-128,-63,0,0,-0.00599704 -15360,5612:237:2,-127.5,-63,0,0,-0.006549 -15361,5612:237:1,-127,-63,0,0,-0.00656066 -15362,5612:236:2,-126.5,-63,0,0,-0.00646651 -15363,5612:236:1,-126,-63,0,0,-0.00633839 -15364,5612:235:2,-125.5,-63,0,0,-0.00621283 -15365,5612:235:1,-125,-63,0,0,-0.00616191 -15366,5612:134:2,-124.5,-63,0,0,-0.00621835 -15367,5612:134:1,-124,-63,0,0,-0.00632147 -15368,5612:133:2,-123.5,-63,0,0,-0.00635954 -15369,5612:133:1,-123,-63,0,0,-0.00629066 -15370,5612:132:2,-122.5,-63,0,0,-0.0062004 -15371,5612:132:1,-122,-63,0,0,-0.00614004 -15372,5612:131:2,-121.5,-63,0,0,-0.00614275 -15373,5612:131:1,-121,-63,0,0,-0.00615919 -15374,5612:130:2,-120.5,-63,0,0,-0.00615781 -15375,5612:130:1,-120,-63,0,0,-0.00613867 -15376,5611:239:2,-119.5,-63,0,0,-0.00613596 -15377,5611:239:1,-119,-63,0,0,-0.00618385 -15378,5611:238:2,-118.5,-63,0,0,-0.00627527 -15379,5611:238:1,-118,-63,0,0,-0.00634118 -15380,5611:237:2,-117.5,-63,0,0,-0.00635389 -15381,5611:237:1,-117,-63,0,0,-0.00633697 -15382,5611:236:2,-116.5,-63,0,0,-0.00633413 -15383,5611:236:1,-116,-63,0,0,-0.00634545 -15384,5611:235:2,-115.5,-63,0,0,-0.00638791 -15385,5611:235:1,-115,-63,0,0,-0.00649677 -15386,5611:134:2,-114.5,-63,0,0,-0.00665913 -15387,5611:134:1,-114,-63,0,0,-0.0067441 -15388,5611:133:2,-113.5,-63,0,0,-0.00671118 -15389,5611:133:1,-113,-63,0,0,-0.00666953 -15390,5611:132:2,-112.5,-63,0,0,-0.00661193 -15391,5611:132:1,-112,-63,0,0,-0.00655043 -15392,5611:131:2,-111.5,-63,0,0,-0.00650546 -15393,5611:131:1,-111,-63,0,0,-0.00650546 -15394,5611:130:2,-110.5,-63,0,0,-0.00653879 -15395,5611:130:1,-110,-63,0,0,-0.00660014 -15396,5610:239:2,-109.5,-63,0,0,-0.00662518 -15397,5610:239:1,-109,-63,0,0,-0.00656649 -15398,5610:238:2,-108.5,-63,0,0,-0.00662073 -15399,5610:238:1,-108,-63,0,0,-0.00665172 -15400,5610:237:2,-107.5,-63,0,0,-0.00673212 -15401,5610:237:1,-107,-63,0,0,-0.00684841 -15402,5610:236:2,-106.5,-63,0,0,-0.00700249 -15403,5610:236:1,-106,-63,0,0,-0.00707609 -15404,5610:235:2,-105.5,-63,0,0,-0.00701338 -15405,5610:235:1,-105,-63,0,0,-0.00683017 -15406,5610:134:2,-104.5,-63,0,0,-0.00671715 -15407,5610:134:1,-104,-63,0,0,-0.00689427 -15408,5610:133:2,-103.5,-63,0,0,-0.00678018 -15409,5610:133:1,-103,-63,0,0,-0.00667991 -15410,5610:132:2,-102.5,-63,0,0,-0.0066399 -15411,5610:132:1,-102,-63,0,0,-0.00655336 -15412,5610:131:2,-101.5,-63,0,0,-0.00642064 -15413,5610:131:1,-101,-63,0,0,-0.00623081 -15414,5610:130:2,-100.5,-63,0,0,-0.00607759 -15415,5610:130:1,-100,-63,0,0,-0.0059944 -15416,5609:239:2,-99.5,-63,0,0,-0.00597045 -15417,5609:239:1,-99,-63,0,0,-0.00590317 -15418,5609:238:2,-98.5,-63,0,0,-0.00556682 -15419,5609:238:1,-98,-63,0,0,-0.005498 -15420,5609:237:2,-97.5,-63,0,0,-0.00547486 -15421,5609:237:1,-97,-63,0,0,-0.0054785 -15422,5609:236:2,-96.5,-63,0,0,-0.00548091 -15423,5609:236:1,-96,-63,0,0,-0.0054785 -15424,5609:235:2,-95.5,-63,0,0,-0.00547364 -15425,5609:235:1,-95,-63,0,0,-0.00546878 -15426,5609:134:2,-94.5,-63,0,0,-0.00547119 -15427,5609:134:1,-94,-63,0,0,-0.00547727 -15428,5609:133:2,-93.5,-63,0,0,-0.00549069 -15429,5609:133:1,-93,-63,0,0,-0.00550658 -15430,5609:132:2,-92.5,-63,0,0,-0.00551756 -15431,5609:132:1,-92,-63,0,0,-0.00551756 -15432,5609:131:2,-91.5,-63,0,0,-0.00550777 -15433,5609:131:1,-91,-63,0,0,-0.00548337 -15434,5609:130:2,-90.5,-63,0,0,-0.00546392 -15435,5609:130:1,-90,-63,0,0,-0.0054627 -15436,5608:239:2,-89.5,-63,0,0,-0.00546633 -15437,5608:239:1,-89,-63,0,0,-0.00546755 -15438,5608:238:2,-88.5,-63,0,0,-0.00546633 -15439,5608:238:1,-88,-63,0,0,-0.00546392 -15440,5608:237:2,-87.5,-63,0,0,-0.00546392 -15441,5608:237:1,-87,-63,0,0,-0.00546392 -15442,5608:236:2,-86.5,-63,0,0,-0.00546755 -15443,5608:236:1,-86,-63,0,0,-0.00546755 -15444,5608:235:2,-85.5,-63,0,0,-0.00546755 -15445,5608:235:1,-85,-63,0,0,-0.00546755 -15446,5608:134:2,-84.5,-63,0,0,-0.00546755 -15447,5608:134:1,-84,-63,0,0,-0.00547 -15448,5608:133:2,-83.5,-63,0,0,-0.00547119 -15449,5608:133:1,-83,-63,0,0,-0.00547119 -15450,5608:132:2,-82.5,-63,0,0,-0.00547486 -15451,5608:132:1,-82,-63,0,0,-0.00547727 -15452,5608:131:2,-81.5,-63,0,0,-0.00547727 -15453,5608:131:1,-81,-63,0,0,-0.00547605 -15454,5608:130:2,-80.5,-63,0,0,-0.00547486 -15455,5608:130:1,-80,-63,0,0,-0.00547364 -15456,5607:239:2,-79.5,-63,0,0,-0.00547364 -15457,5607:239:1,-79,-63,0,0,-0.00547241 -15458,5607:238:2,-78.5,-63,0,0,-0.00547241 -15459,5607:238:1,-78,-63,0,0,-0.00547364 -15460,5607:237:2,-77.5,-63,0,0,-0.00547241 -15461,5607:237:1,-77,-63,0,0,-0.00547241 -15462,5607:236:2,-76.5,-63,0,0,-0.00547241 -15463,5607:236:1,-76,-63,0,0,-0.00547364 -15464,5607:235:2,-75.5,-63,0,0,-0.00547364 -15465,5607:235:1,-75,-63,0,0,-0.00547119 -15466,5607:134:2,-74.5,-63,0,0,-0.00547241 -15467,5607:134:1,-74,-63,0,0,-0.00551513 -15468,5607:133:2,-73.5,-63,0,0,-0.005536 -15469,5607:133:1,-73,-63,0,0,-0.00553724 -15470,5607:132:2,-72.5,-63,0,0,-0.00554092 -15471,5607:132:1,-72,-63,0,0,-0.00556682 -15472,5607:131:2,-71.5,-63,0,0,-0.00560405 -15473,5607:131:1,-71,-63,0,0,-0.00566541 -15474,5607:130:2,-70.5,-63,0,0,-0.00571472 -15475,5607:130:1,-70,-63,0,0,-0.00575806 -15476,5606:239:2,-69.5,-63,0,0,-0.00585222 -15477,5606:238:1,-68,-63,0,0,-0.00691269 -15478,5606:130:2,-60.5,-63,0,0,-0.00599838 -15479,5606:130:1,-60,-63,0,0,-0.00562526 -15480,5605:239:2,-59.5,-63,0,0,-0.00554832 -15481,5605:239:1,-59,-63,0,0,-0.00553476 -15482,5605:238:2,-58.5,-63,0,0,-0.00550777 -15483,5605:238:1,-58,-63,0,0,-0.00548459 -15484,5605:237:2,-57.5,-63,0,0,-0.00547241 -15485,5605:237:1,-57,-63,0,0,-0.00546878 -15486,5605:236:2,-56.5,-63,0,0,-0.00546755 -15487,5605:236:1,-56,-63,0,0,-0.00546755 -15488,5605:235:2,-55.5,-63,0,0,-0.00546878 -15489,5605:235:1,-55,-63,0,0,-0.00546878 -15490,5605:134:2,-54.5,-63,0,0,-0.00547 -15491,5605:134:1,-54,-63,0,0,-0.00546878 -15492,5605:133:2,-53.5,-63,0,0,-0.00546755 -15493,5605:133:1,-53,-63,0,0,-0.00546511 -15494,5605:132:2,-52.5,-63,0,0,-0.0054627 -15495,5605:132:1,-52,-63,0,0,-0.00546148 -15496,5605:131:2,-51.5,-63,0,0,-0.00546148 -15497,5605:131:1,-51,-63,0,0,-0.00546148 -15498,5605:130:2,-50.5,-63,0,0,-0.00546148 -15499,5605:130:1,-50,-63,0,0,-0.00546026 -15500,5604:239:2,-49.5,-63,0,0,-0.00546026 -15501,5604:239:1,-49,-63,0,0,-0.00546026 -15502,5604:238:2,-48.5,-63,0,0,-0.00545907 -15503,5604:238:1,-48,-63,0,0,-0.00545907 -15504,5604:237:2,-47.5,-63,0,0,-0.00545907 -15505,5604:237:1,-47,-63,0,0,-0.00545785 -15506,5604:236:2,-46.5,-63,0,0,-0.00545785 -15507,5604:236:1,-46,-63,0,0,-0.00545785 -15508,5604:235:2,-45.5,-63,0,0,-0.00545785 -15509,5604:235:1,-45,-63,0,0,-0.00545785 -15510,5604:134:2,-44.5,-63,0,0,-0.00545785 -15511,5604:134:1,-44,-63,0,0,-0.00545785 -15512,5604:133:2,-43.5,-63,0,0,-0.00545785 -15513,5604:133:1,-43,-63,0,0,-0.00545663 -15514,5604:132:2,-42.5,-63,0,0,-0.00545663 -15515,5604:132:1,-42,-63,0,0,-0.00545663 -15516,5604:131:2,-41.5,-63,0,0,-0.00545785 -15517,5604:131:1,-41,-63,0,0,-0.00545663 -15518,5604:130:2,-40.5,-63,0,0,-0.00545663 -15519,5604:130:1,-40,-63,0,0,-0.00545663 -15520,5603:239:2,-39.5,-63,0,0,-0.00545663 -15521,5603:239:1,-39,-63,0,0,-0.00545663 -15522,5603:238:2,-38.5,-63,0,0,-0.00545663 -15523,5603:238:1,-38,-63,0,0,-0.00545541 -15524,5603:237:2,-37.5,-63,0,0,-0.00545541 -15525,5603:237:1,-37,-63,0,0,-0.00545541 -15526,5603:236:2,-36.5,-63,0,0,-0.00545541 -15527,5603:236:1,-36,-63,0,0,-0.00545541 -15528,5603:235:2,-35.5,-63,0,0,-0.00545541 -15529,5603:235:1,-35,-63,0,0,-0.00545541 -15530,5603:134:2,-34.5,-63,0,0,-0.00545541 -15531,5603:134:1,-34,-63,0,0,-0.00545541 -15532,5603:133:2,-33.5,-63,0,0,-0.00545541 -15533,5603:133:1,-33,-63,0,0,-0.00545423 -15534,5603:132:2,-32.5,-63,0,0,-0.00545423 -15535,5603:132:1,-32,-63,0,0,-0.00545423 -15536,5603:131:2,-31.5,-63,0,0,-0.00545423 -15537,5603:131:1,-31,-63,0,0,-0.00545423 -15538,5603:130:2,-30.5,-63,0,0,-0.00545541 -15539,5603:130:1,-30,-63,0,0,-0.00545541 -15540,5602:239:2,-29.5,-63,0,0,-0.00545541 -15541,5602:239:1,-29,-63,0,0,-0.00545541 -15542,5602:238:2,-28.5,-63,0,0,-0.00545541 -15543,5602:238:1,-28,-63,0,0,-0.00545541 -15544,5602:237:2,-27.5,-63,0,0,-0.00545541 -15545,5602:237:1,-27,-63,0,0,-0.00545541 -15546,5602:236:2,-26.5,-63,0,0,-0.00545541 -15547,5602:236:1,-26,-63,0,0,-0.00545541 -15548,5602:235:2,-25.5,-63,0,0,-0.00545541 -15549,5602:235:1,-25,-63,0,0,-0.00545423 -15550,5602:134:2,-24.5,-63,0,0,-0.00545423 -15551,5602:134:1,-24,-63,0,0,-0.00545423 -15552,5602:133:2,-23.5,-63,0,0,-0.005453 -15553,5602:133:1,-23,-63,0,0,-0.005453 -15554,5602:132:2,-22.5,-63,0,0,-0.00545179 -15555,5602:132:1,-22,-63,0,0,-0.00545179 -15556,5602:131:2,-21.5,-63,0,0,-0.00545057 -15557,5602:131:1,-21,-63,0,0,-0.00545057 -15558,5602:130:2,-20.5,-63,0,0,-0.00544935 -15559,5602:130:1,-20,-63,0,0,-0.00544935 -15560,5601:239:2,-19.5,-63,0,0,-0.00544935 -15561,5601:239:1,-19,-63,0,0,-0.00544816 -15562,5601:238:2,-18.5,-63,0,0,-0.00544695 -15563,5601:238:1,-18,-63,0,0,-0.00544573 -15564,5601:237:2,-17.5,-63,0,0,-0.00544573 -15565,5601:237:1,-17,-63,0,0,-0.00544451 -15566,5601:236:2,-16.5,-63,0,0,-0.00544333 -15567,5601:236:1,-16,-63,0,0,-0.00544333 -15568,5601:235:2,-15.5,-63,0,0,-0.00544333 -15569,5601:235:1,-15,-63,0,0,-0.00544211 -15570,5601:134:2,-14.5,-63,0,0,-0.00544211 -15571,5601:134:1,-14,-63,0,0,-0.00544333 -15572,5601:133:2,-13.5,-63,0,0,-0.00544333 -15573,5601:133:1,-13,-63,0,0,-0.00544333 -15574,5601:132:2,-12.5,-63,0,0,-0.00544333 -15575,5601:132:1,-12,-63,0,0,-0.00544211 -15576,5601:131:2,-11.5,-63,0,0,-0.00544211 -15577,5601:131:1,-11,-63,0,0,-0.00544089 -15578,5601:130:2,-10.5,-63,0,0,-0.00543968 -15579,5601:130:1,-10,-63,0,0,-0.00543968 -15580,5600:239:2,-9.5,-63,0,0,-0.00543968 -15581,5600:239:1,-9,-63,0,0,-0.00543968 -15582,5600:238:2,-8.5,-63,0,0,-0.0054385 -15583,5600:238:1,-8,-63,0,0,-0.0054385 -15584,5600:237:2,-7.5,-63,0,0,-0.00543728 -15585,5600:237:1,-7,-63,0,0,-0.00543728 -15586,5600:236:2,-6.5,-63,0,0,-0.00543606 -15587,5600:236:1,-6,-63,0,0,-0.00543606 -15588,5600:235:2,-5.5,-63,0,0,-0.00543485 -15589,5600:235:1,-5,-63,0,0,-0.00543363 -15590,5600:134:2,-4.5,-63,0,0,-0.00543363 -15591,5600:134:1,-4,-63,0,0,-0.00543245 -15592,5600:133:2,-3.5,-63,0,0,-0.00543124 -15593,5600:133:1,-3,-63,0,0,-0.00543002 -15594,5600:132:2,-2.5,-63,0,0,-0.00543002 -15595,5600:132:1,-2,-63,0,0,-0.00543002 -15596,5600:131:2,-1.5,-63,0,0,-0.00543124 -15597,5600:131:1,-1,-63,0,0,-0.00543245 -15598,5600:130:2,-0.5,-63,0,0,-0.00543363 -15599,3600:130:2,0,-63,0,0,-0.00543363 -15600,3600:130:2,0.5,-63,0,0,-0.00543606 -15601,3600:131:1,1,-63,0,0,-0.00543968 -15602,3600:131:2,1.5,-63,0,0,-0.0054385 -15603,3600:132:1,2,-63,0,0,-0.00543363 -15604,3600:132:2,2.5,-63,0,0,-0.00543124 -15605,3600:133:1,3,-63,0,0,-0.00543124 -15606,3600:133:2,3.5,-63,0,0,-0.00543124 -15607,3600:134:1,4,-63,0,0,-0.00543124 -15608,3600:134:2,4.5,-63,0,0,-0.00543363 -15609,3600:235:1,5,-63,0,0,-0.00543245 -15610,3600:235:2,5.5,-63,0,0,-0.00543124 -15611,3600:236:1,6,-63,0,0,-0.00543245 -15612,3600:236:2,6.5,-63,0,0,-0.00543485 -15613,3600:237:1,7,-63,0,0,-0.00543728 -15614,3600:237:2,7.5,-63,0,0,-0.0054385 -15615,3600:238:1,8,-63,0,0,-0.00543606 -15616,3600:238:2,8.5,-63,0,0,-0.00543485 -15617,3600:239:1,9,-63,0,0,-0.00543728 -15618,3600:239:2,9.5,-63,0,0,-0.00544089 -15619,3601:130:1,10,-63,0,0,-0.00544451 -15620,3601:130:2,10.5,-63,0,0,-0.00544695 -15621,3601:131:1,11,-63,0,0,-0.00544935 -15622,3601:131:2,11.5,-63,0,0,-0.005453 -15623,3601:132:1,12,-63,0,0,-0.005453 -15624,3601:132:2,12.5,-63,0,0,-0.005453 -15625,3601:133:1,13,-63,0,0,-0.00545423 -15626,3601:133:2,13.5,-63,0,0,-0.00545541 -15627,3601:134:1,14,-63,0,0,-0.00545541 -15628,3601:134:2,14.5,-63,0,0,-0.005453 -15629,3601:235:1,15,-63,0,0,-0.00545179 -15630,3601:235:2,15.5,-63,0,0,-0.00545179 -15631,3601:236:1,16,-63,0,0,-0.00545179 -15632,3601:236:2,16.5,-63,0,0,-0.00545179 -15633,3601:237:1,17,-63,0,0,-0.00545057 -15634,3601:237:2,17.5,-63,0,0,-0.00544935 -15635,3601:238:1,18,-63,0,0,-0.00544695 -15636,3601:238:2,18.5,-63,0,0,-0.00544695 -15637,3601:239:1,19,-63,0,0,-0.00544935 -15638,3601:239:2,19.5,-63,0,0,-0.00545057 -15639,3602:130:1,20,-63,0,0,-0.00544816 -15640,3602:130:2,20.5,-63,0,0,-0.00544695 -15641,3602:131:1,21,-63,0,0,-0.00544695 -15642,3602:131:2,21.5,-63,0,0,-0.00544695 -15643,3602:132:1,22,-63,0,0,-0.00544695 -15644,3602:132:2,22.5,-63,0,0,-0.00544695 -15645,3602:133:1,23,-63,0,0,-0.00544816 -15646,3602:133:2,23.5,-63,0,0,-0.00544816 -15647,3602:134:1,24,-63,0,0,-0.00544816 -15648,3602:134:2,24.5,-63,0,0,-0.00544816 -15649,3602:235:1,25,-63,0,0,-0.00544816 -15650,3602:235:2,25.5,-63,0,0,-0.00544816 -15651,3602:236:1,26,-63,0,0,-0.00544935 -15652,3602:236:2,26.5,-63,0,0,-0.00544935 -15653,3602:237:1,27,-63,0,0,-0.00544935 -15654,3602:237:2,27.5,-63,0,0,-0.00544935 -15655,3602:238:1,28,-63,0,0,-0.00545057 -15656,3602:238:2,28.5,-63,0,0,-0.005453 -15657,3602:239:1,29,-63,0,0,-0.00545423 -15658,3602:239:2,29.5,-63,0,0,-0.00545423 -15659,3603:130:1,30,-63,0,0,-0.00545423 -15660,3603:130:2,30.5,-63,0,0,-0.00545663 -15661,3603:131:1,31,-63,0,0,-0.00545785 -15662,3603:131:2,31.5,-63,0,0,-0.00545907 -15663,3603:132:1,32,-63,0,0,-0.00546026 -15664,3603:132:2,32.5,-63,0,0,-0.00546392 -15665,3603:133:1,33,-63,0,0,-0.00546755 -15666,3603:133:2,33.5,-63,0,0,-0.00546633 -15667,3603:134:1,34,-63,0,0,-0.00546755 -15668,3603:134:2,34.5,-63,0,0,-0.00546633 -15669,3603:235:1,35,-63,0,0,-0.00546878 -15670,3603:235:2,35.5,-63,0,0,-0.00547 -15671,3603:236:1,36,-63,0,0,-0.00547364 -15672,3603:236:2,36.5,-63,0,0,-0.00547119 -15673,3603:237:1,37,-63,0,0,-0.00547 -15674,3603:237:2,37.5,-63,0,0,-0.00546878 -15675,3603:238:1,38,-63,0,0,-0.00546755 -15676,3603:238:2,38.5,-63,0,0,-0.00546755 -15677,3603:239:1,39,-63,0,0,-0.00546755 -15678,3603:239:2,39.5,-63,0,0,-0.00546878 -15679,3604:130:1,40,-63,0,0,-0.00546878 -15680,3604:130:2,40.5,-63,0,0,-0.00546878 -15681,3604:131:1,41,-63,0,0,-0.00547119 -15682,3604:131:2,41.5,-63,0,0,-0.00547241 -15683,3604:132:1,42,-63,0,0,-0.00547119 -15684,3604:132:2,42.5,-63,0,0,-0.00547 -15685,3604:133:1,43,-63,0,0,-0.00547 -15686,3604:133:2,43.5,-63,0,0,-0.00547 -15687,3604:134:1,44,-63,0,0,-0.00547119 -15688,3604:134:2,44.5,-63,0,0,-0.00547605 -15689,3604:235:1,45,-63,0,0,-0.00546511 -15690,3604:235:2,45.5,-63,0,0,-0.00544695 -15691,3604:236:1,46,-63,0,0,-0.00542039 -15692,3604:237:2,47.5,-63,0,0,-0.00647946 -15693,3604:238:1,48,-63,0,0,-0.00664581 -15694,3606:132:2,62.5,-63,0,0,-0.00639073 -15695,3606:134:2,64.5,-63,0,0,-0.00621418 -15696,3606:235:1,65,-63,0,0,-0.00627387 -15697,3606:235:2,65.5,-63,0,0,-0.00626413 -15698,3606:236:1,66,-63,0,0,-0.00622249 -15699,3606:236:2,66.5,-63,0,0,-0.00621005 -15700,3606:237:1,67,-63,0,0,-0.00611689 -15701,3606:237:2,67.5,-63,0,0,-0.00600107 -15702,3606:238:1,68,-63,0,0,-0.00592817 -15703,3606:238:2,68.5,-63,0,0,-0.00592025 -15704,3606:239:1,69,-63,0,0,-0.00608568 -15705,3606:239:2,69.5,-63,0,0,-0.00614413 -15706,3607:130:1,70,-63,0,0,-0.00589925 -15707,3607:130:2,70.5,-63,0,0,-0.00584703 -15708,3607:131:1,71,-63,0,0,-0.00589137 -15709,3607:131:2,71.5,-63,0,0,-0.00593078 -15710,3607:132:1,72,-63,0,0,-0.00593871 -15711,3607:132:2,72.5,-63,0,0,-0.00593738 -15712,3607:133:2,73.5,-63,0,0,-0.00590577 -15713,3607:134:1,74,-63,0,0,-0.005877 -15714,3607:134:2,74.5,-63,0,0,-0.00587306 -15715,3607:235:1,75,-63,0,0,-0.00589005 -15716,3607:235:2,75.5,-63,0,0,-0.00594133 -15717,3607:236:1,76,-63,0,0,-0.00613729 -15718,3607:236:2,76.5,-63,0,0,-0.00621283 -15719,3607:237:1,77,-63,0,0,-0.00624884 -15720,3607:237:2,77.5,-63,0,0,-0.00633839 -15721,3607:238:1,78,-63,0,0,-0.00660014 -15722,3607:238:2,78.5,-63,0,0,-0.00681197 -15723,3607:239:1,79,-63,0,0,-0.00707609 -15724,3607:239:2,79.5,-63,0,0,-0.00750931 -15725,3608:130:1,80,-63,0,0,-0.00763742 -15726,3608:130:2,80.5,-63,0,0,-0.00802447 -15727,3608:131:1,81,-63,0,0,-0.0085963 -15728,3608:131:2,81.5,-63,0,0,-0.00927314 -15729,3614:236:1,146,-63,0,0,-0.00730976 -15730,3614:236:2,146.5,-63,0,0,-0.00729191 -15731,3614:237:1,147,-63,0,0,-0.00692965 -15732,3614:237:2,147.5,-63,0,0,-0.00672764 -15733,3614:238:1,148,-63,0,0,-0.00658841 -15734,3614:238:2,148.5,-63,0,0,-0.00669925 -15735,3614:239:1,149,-63,0,0,-0.00655043 -15736,3614:239:2,149.5,-63,0,0,-0.00622249 -15737,3615:130:1,150,-63,0,0,-0.00609382 -15738,3615:130:2,150.5,-63,0,0,-0.00588614 -15739,3615:131:1,151,-63,0,0,-0.00574273 -15740,3615:131:2,151.5,-63,0,0,-0.00566918 -15741,3615:132:1,152,-63,0,0,-0.00547605 -15742,3615:132:2,152.5,-63,0,0,-0.00547605 -15743,3615:133:1,153,-63,0,0,-0.0054785 -15744,3615:133:2,153.5,-63,0,0,-0.00547727 -15745,3615:134:1,154,-63,0,0,-0.0054785 -15746,3615:134:2,154.5,-63,0,0,-0.00547727 -15747,3615:235:1,155,-63,0,0,-0.00547605 -15748,3615:235:2,155.5,-63,0,0,-0.00547727 -15749,3615:236:1,156,-63,0,0,-0.0054785 -15750,3615:236:2,156.5,-63,0,0,-0.00547972 -15751,3615:237:1,157,-63,0,0,-0.00547605 -15752,3615:237:2,157.5,-63,0,0,-0.00547119 -15753,3615:238:1,158,-63,0,0,-0.00546633 -15754,3615:238:2,158.5,-63,0,0,-0.0054627 -15755,3615:239:1,159,-63,0,0,-0.00546148 -15756,3615:239:2,159.5,-63,0,0,-0.00546026 -15757,3616:130:1,160,-63,0,0,-0.0054627 -15758,3616:130:2,160.5,-63,0,0,-0.00546392 -15759,3616:131:1,161,-63,0,0,-0.00546392 -15760,3616:131:2,161.5,-63,0,0,-0.00546511 -15761,3616:132:1,162,-63,0,0,-0.00546511 -15762,3616:132:2,162.5,-63,0,0,-0.00546511 -15763,3616:133:1,163,-63,0,0,-0.00546511 -15764,3616:133:2,163.5,-63,0,0,-0.00546026 -15765,3616:134:1,164,-63,0,0,-0.00545057 -15766,3616:134:2,164.5,-63,0,0,-0.00545785 -15767,3616:235:1,165,-63,0,0,-0.00549312 -15768,3616:235:2,165.5,-63,0,0,-0.00547119 -15769,3616:236:1,166,-63,0,0,-0.00546878 -15770,3616:236:2,166.5,-63,0,0,-0.00546878 -15771,3616:237:1,167,-63,0,0,-0.00546755 -15772,3616:237:2,167.5,-63,0,0,-0.00546755 -15773,3616:238:1,168,-63,0,0,-0.00546755 -15774,3616:238:2,168.5,-63,0,0,-0.00546755 -15775,3616:239:1,169,-63,0,0,-0.00546755 -15776,3616:239:2,169.5,-63,0,0,-0.00546755 -15777,3617:130:1,170,-63,0,0,-0.00546633 -15778,3617:130:2,170.5,-63,0,0,-0.00546633 -15779,3617:131:1,171,-63,0,0,-0.00546633 -15780,3617:131:2,171.5,-63,0,0,-0.00546633 -15781,3617:132:1,172,-63,0,0,-0.00546633 -15782,3617:132:2,172.5,-63,0,0,-0.00546633 -15783,3617:133:1,173,-63,0,0,-0.00546633 -15784,3617:133:2,173.5,-63,0,0,-0.00546633 -15785,3617:134:1,174,-63,0,0,-0.00546511 -15786,3617:134:2,174.5,-63,0,0,-0.00546392 -15787,3617:235:1,175,-63,0,0,-0.00546392 -15788,3617:235:2,175.5,-63,0,0,-0.00546633 -15789,3617:236:1,176,-63,0,0,-0.00546755 -15790,3617:236:2,176.5,-63,0,0,-0.00546878 -15791,3617:237:1,177,-63,0,0,-0.00546878 -15792,3617:237:2,177.5,-63,0,0,-0.00546878 -15793,3617:238:1,178,-63,0,0,-0.00547 -15794,3617:238:2,178.5,-63,0,0,-0.00547 -15795,3617:239:1,179,-63,0,0,-0.00547119 -15796,3617:239:2,179.5,-63,0,0,-0.00547119 -15797,3618:130:1,180,-63,0,0,-0.00547119 -15798,5618:120:3,-180,-62.5,0,0,-0.00547 -15799,5617:229:4,-179.5,-62.5,0,0,-0.00547 -15800,5617:229:3,-179,-62.5,0,0,-0.00547119 -15801,5617:228:4,-178.5,-62.5,0,0,-0.00547241 -15802,5617:228:3,-178,-62.5,0,0,-0.00547364 -15803,5617:227:4,-177.5,-62.5,0,0,-0.00547605 -15804,5617:227:3,-177,-62.5,0,0,-0.00547727 -15805,5617:226:4,-176.5,-62.5,0,0,-0.00547972 -15806,5617:226:3,-176,-62.5,0,0,-0.00548337 -15807,5617:225:4,-175.5,-62.5,0,0,-0.00548582 -15808,5617:225:3,-175,-62.5,0,0,-0.00548337 -15809,5617:124:4,-174.5,-62.5,0,0,-0.0054785 -15810,5617:124:3,-174,-62.5,0,0,-0.00547486 -15811,5617:123:4,-173.5,-62.5,0,0,-0.00547241 -15812,5617:123:3,-173,-62.5,0,0,-0.00547241 -15813,5617:122:4,-172.5,-62.5,0,0,-0.00547119 -15814,5617:122:3,-172,-62.5,0,0,-0.00547119 -15815,5617:121:4,-171.5,-62.5,0,0,-0.00547 -15816,5617:121:3,-171,-62.5,0,0,-0.00546878 -15817,5617:120:4,-170.5,-62.5,0,0,-0.00546755 -15818,5617:120:3,-170,-62.5,0,0,-0.00546755 -15819,5616:229:4,-169.5,-62.5,0,0,-0.00546633 -15820,5616:229:3,-169,-62.5,0,0,-0.00546633 -15821,5616:228:4,-168.5,-62.5,0,0,-0.00546633 -15822,5616:228:3,-168,-62.5,0,0,-0.00546511 -15823,5616:227:4,-167.5,-62.5,0,0,-0.00546511 -15824,5616:227:3,-167,-62.5,0,0,-0.00546392 -15825,5616:226:4,-166.5,-62.5,0,0,-0.0054627 -15826,5616:226:3,-166,-62.5,0,0,-0.0054627 -15827,5616:225:4,-165.5,-62.5,0,0,-0.0054627 -15828,5616:225:3,-165,-62.5,0,0,-0.00546392 -15829,5616:124:4,-164.5,-62.5,0,0,-0.00546392 -15830,5616:124:3,-164,-62.5,0,0,-0.00546511 -15831,5616:123:4,-163.5,-62.5,0,0,-0.00546511 -15832,5616:123:3,-163,-62.5,0,0,-0.00546633 -15833,5616:122:4,-162.5,-62.5,0,0,-0.00546755 -15834,5616:122:3,-162,-62.5,0,0,-0.00546878 -15835,5616:121:4,-161.5,-62.5,0,0,-0.00546878 -15836,5616:121:3,-161,-62.5,0,0,-0.00547 -15837,5616:120:4,-160.5,-62.5,0,0,-0.00547119 -15838,5616:120:3,-160,-62.5,0,0,-0.00547241 -15839,5615:229:4,-159.5,-62.5,0,0,-0.00547364 -15840,5615:229:3,-159,-62.5,0,0,-0.00547364 -15841,5615:228:4,-158.5,-62.5,0,0,-0.00547486 -15842,5615:228:3,-158,-62.5,0,0,-0.00547486 -15843,5615:227:4,-157.5,-62.5,0,0,-0.00547605 -15844,5615:227:3,-157,-62.5,0,0,-0.00547727 -15845,5615:226:4,-156.5,-62.5,0,0,-0.00547727 -15846,5615:226:3,-156,-62.5,0,0,-0.0054785 -15847,5615:225:4,-155.5,-62.5,0,0,-0.00547972 -15848,5615:225:3,-155,-62.5,0,0,-0.00548091 -15849,5615:124:4,-154.5,-62.5,0,0,-0.00548091 -15850,5615:124:3,-154,-62.5,0,0,-0.00548337 -15851,5615:123:4,-153.5,-62.5,0,0,-0.00548459 -15852,5615:123:3,-153,-62.5,0,0,-0.00548582 -15853,5615:122:4,-152.5,-62.5,0,0,-0.00548701 -15854,5615:122:3,-152,-62.5,0,0,-0.00548947 -15855,5615:121:4,-151.5,-62.5,0,0,-0.00549069 -15856,5615:121:3,-151,-62.5,0,0,-0.00549069 -15857,5615:120:4,-150.5,-62.5,0,0,-0.00549069 -15858,5615:120:3,-150,-62.5,0,0,-0.00549069 -15859,5614:229:4,-149.5,-62.5,0,0,-0.00549069 -15860,5614:229:3,-149,-62.5,0,0,-0.00549069 -15861,5614:228:4,-148.5,-62.5,0,0,-0.00549069 -15862,5614:228:3,-148,-62.5,0,0,-0.00549189 -15863,5614:227:4,-147.5,-62.5,0,0,-0.00549189 -15864,5614:227:3,-147,-62.5,0,0,-0.00549189 -15865,5614:226:4,-146.5,-62.5,0,0,-0.00549312 -15866,5614:226:3,-146,-62.5,0,0,-0.00549557 -15867,5614:225:4,-145.5,-62.5,0,0,-0.00550288 -15868,5614:225:3,-145,-62.5,0,0,-0.00551147 -15869,5614:124:4,-144.5,-62.5,0,0,-0.00549923 -15870,5614:124:3,-144,-62.5,0,0,-0.00549312 -15871,5614:123:4,-143.5,-62.5,0,0,-0.00549557 -15872,5614:123:3,-143,-62.5,0,0,-0.00549923 -15873,5614:122:4,-142.5,-62.5,0,0,-0.00550411 -15874,5614:122:3,-142,-62.5,0,0,-0.00550658 -15875,5614:121:4,-141.5,-62.5,0,0,-0.00553108 -15876,5614:121:3,-141,-62.5,0,0,-0.0058172 -15877,5614:120:4,-140.5,-62.5,0,0,-0.00617564 -15878,5614:120:3,-140,-62.5,0,0,-0.00577342 -15879,5613:229:4,-139.5,-62.5,0,0,-0.00574783 -15880,5613:229:3,-139,-62.5,0,0,-0.00575165 -15881,5613:228:4,-138.5,-62.5,0,0,-0.00573635 -15882,5613:228:3,-138,-62.5,0,0,-0.00570458 -15883,5613:227:4,-137.5,-62.5,0,0,-0.00581074 -15884,5613:227:3,-137,-62.5,0,0,-0.00597045 -15885,5613:226:4,-136.5,-62.5,0,0,-0.00589793 -15886,5613:226:3,-136,-62.5,0,0,-0.00579012 -15887,5613:225:4,-135.5,-62.5,0,0,-0.00584441 -15888,5613:225:3,-135,-62.5,0,0,-0.00611552 -15889,5613:124:4,-134.5,-62.5,0,0,-0.00634825 -15890,5613:124:3,-134,-62.5,0,0,-0.00620865 -15891,5613:123:4,-133.5,-62.5,0,0,-0.00581204 -15892,5613:123:3,-133,-62.5,0,0,-0.00563025 -15893,5613:122:4,-132.5,-62.5,0,0,-0.00568053 -15894,5613:122:3,-132,-62.5,0,0,-0.00595852 -15895,5613:121:4,-131.5,-62.5,0,0,-0.00624189 -15896,5613:121:3,-131,-62.5,0,0,-0.0065301 -15897,5613:120:4,-130.5,-62.5,0,0,-0.00678018 -15898,5613:120:3,-130,-62.5,0,0,-0.00713617 -15899,5612:229:4,-129.5,-62.5,0,0,-0.00733423 -15900,5612:229:3,-129,-62.5,0,0,-0.00699156 -15901,5612:228:4,-128.5,-62.5,0,0,-0.00618939 -15902,5612:228:3,-128,-62.5,0,0,-0.00611282 -15903,5612:227:4,-127.5,-62.5,0,0,-0.00646936 -15904,5612:227:3,-127,-62.5,0,0,-0.00659723 -15905,5612:226:4,-126.5,-62.5,0,0,-0.00664581 -15906,5612:226:3,-126,-62.5,0,0,-0.00660749 -15907,5612:225:4,-125.5,-62.5,0,0,-0.00652717 -15908,5612:225:3,-125,-62.5,0,0,-0.00650109 -15909,5612:124:4,-124.5,-62.5,0,0,-0.00653444 -15910,5612:124:3,-124,-62.5,0,0,-0.00650109 -15911,5612:123:4,-123.5,-62.5,0,0,-0.00642064 -15912,5612:123:3,-123,-62.5,0,0,-0.00634118 -15913,5612:122:4,-122.5,-62.5,0,0,-0.00631868 -15914,5612:122:3,-122,-62.5,0,0,-0.00637652 -15915,5612:121:4,-121.5,-62.5,0,0,-0.00642779 -15916,5612:121:3,-121,-62.5,0,0,-0.00645787 -15917,5612:120:4,-120.5,-62.5,0,0,-0.00647946 -15918,5612:120:3,-120,-62.5,0,0,-0.006504 -15919,5611:229:4,-119.5,-62.5,0,0,-0.0065446 -15920,5611:229:3,-119,-62.5,0,0,-0.00660458 -15921,5611:228:4,-118.5,-62.5,0,0,-0.00666804 -15922,5611:228:3,-118,-62.5,0,0,-0.0067366 -15923,5611:227:4,-117.5,-62.5,0,0,-0.0067923 -15924,5611:227:3,-117,-62.5,0,0,-0.00679682 -15925,5611:226:4,-116.5,-62.5,0,0,-0.00676662 -15926,5611:226:3,-116,-62.5,0,0,-0.00673363 -15927,5611:225:4,-115.5,-62.5,0,0,-0.00672764 -15928,5611:225:3,-115,-62.5,0,0,-0.00683017 -15929,5611:124:4,-114.5,-62.5,0,0,-0.00690964 -15930,5611:124:3,-114,-62.5,0,0,-0.00683778 -15931,5611:123:4,-113.5,-62.5,0,0,-0.00680587 -15932,5611:123:3,-113,-62.5,0,0,-0.00684841 -15933,5611:122:4,-112.5,-62.5,0,0,-0.00681197 -15934,5611:122:3,-112,-62.5,0,0,-0.00672312 -15935,5611:121:4,-111.5,-62.5,0,0,-0.00665913 -15936,5611:121:3,-111,-62.5,0,0,-0.00663842 -15937,5611:120:4,-110.5,-62.5,0,0,-0.00665913 -15938,5611:120:3,-110,-62.5,0,0,-0.0066933 -15939,5610:229:4,-109.5,-62.5,0,0,-0.00669775 -15940,5610:229:3,-109,-62.5,0,0,-0.00659871 -15941,5610:228:4,-108.5,-62.5,0,0,-0.00660014 -15942,5610:228:3,-108,-62.5,0,0,-0.00661045 -15943,5610:227:4,-107.5,-62.5,0,0,-0.00670822 -15944,5610:227:3,-107,-62.5,0,0,-0.0068866 -15945,5610:226:4,-106.5,-62.5,0,0,-0.00726596 -15946,5610:226:3,-106,-62.5,0,0,-0.00748262 -15947,5610:225:4,-105.5,-62.5,0,0,-0.00745599 -15948,5610:225:3,-105,-62.5,0,0,-0.00728864 -15949,5610:124:4,-104.5,-62.5,0,0,-0.00712663 -15950,5610:124:3,-104,-62.5,0,0,-0.00694972 -15951,5610:123:4,-103.5,-62.5,0,0,-0.00675459 -15952,5610:123:3,-103,-62.5,0,0,-0.00667692 -15953,5610:122:4,-102.5,-62.5,0,0,-0.00662222 -15954,5610:122:3,-102,-62.5,0,0,-0.00655483 -15955,5610:121:4,-101.5,-62.5,0,0,-0.00644067 -15956,5610:121:3,-101,-62.5,0,0,-0.00617702 -15957,5610:120:4,-100.5,-62.5,0,0,-0.00590449 -15958,5610:120:3,-100,-62.5,0,0,-0.00583273 -15959,5609:229:4,-99.5,-62.5,0,0,-0.00581981 -15960,5609:229:3,-99,-62.5,0,0,-0.00566414 -15961,5609:228:4,-98.5,-62.5,0,0,-0.00551024 -15962,5609:228:3,-98,-62.5,0,0,-0.0054785 -15963,5609:227:4,-97.5,-62.5,0,0,-0.00547364 -15964,5609:227:3,-97,-62.5,0,0,-0.00547119 -15965,5609:226:4,-96.5,-62.5,0,0,-0.00547364 -15966,5609:226:3,-96,-62.5,0,0,-0.00547364 -15967,5609:225:4,-95.5,-62.5,0,0,-0.00547241 -15968,5609:225:3,-95,-62.5,0,0,-0.00547241 -15969,5609:124:4,-94.5,-62.5,0,0,-0.00548214 -15970,5609:124:3,-94,-62.5,0,0,-0.00550288 -15971,5609:123:4,-93.5,-62.5,0,0,-0.00552003 -15972,5609:123:3,-93,-62.5,0,0,-0.00554092 -15973,5609:122:4,-92.5,-62.5,0,0,-0.00553968 -15974,5609:122:3,-92,-62.5,0,0,-0.00552741 -15975,5609:121:4,-91.5,-62.5,0,0,-0.0055225 -15976,5609:121:3,-91,-62.5,0,0,-0.00551637 -15977,5609:120:4,-90.5,-62.5,0,0,-0.00548701 -15978,5609:120:3,-90,-62.5,0,0,-0.00546878 -15979,5608:229:4,-89.5,-62.5,0,0,-0.00546633 -15980,5608:229:3,-89,-62.5,0,0,-0.00546633 -15981,5608:228:4,-88.5,-62.5,0,0,-0.00546633 -15982,5608:228:3,-88,-62.5,0,0,-0.00546755 -15983,5608:227:4,-87.5,-62.5,0,0,-0.00546878 -15984,5608:227:3,-87,-62.5,0,0,-0.00546755 -15985,5608:226:4,-86.5,-62.5,0,0,-0.00546511 -15986,5608:226:3,-86,-62.5,0,0,-0.00546392 -15987,5608:225:4,-85.5,-62.5,0,0,-0.00554832 -15988,5608:225:3,-85,-62.5,0,0,-0.00557177 -15989,5608:124:4,-84.5,-62.5,0,0,-0.00555943 -15990,5608:124:3,-84,-62.5,0,0,-0.00554953 -15991,5608:123:4,-83.5,-62.5,0,0,-0.00552494 -15992,5608:123:3,-83,-62.5,0,0,-0.00550288 -15993,5608:122:4,-82.5,-62.5,0,0,-0.00548824 -15994,5608:122:3,-82,-62.5,0,0,-0.00547605 -15995,5608:121:4,-81.5,-62.5,0,0,-0.00547486 -15996,5608:121:3,-81,-62.5,0,0,-0.00547364 -15997,5608:120:4,-80.5,-62.5,0,0,-0.00547364 -15998,5608:120:3,-80,-62.5,0,0,-0.00547605 -15999,5607:229:4,-79.5,-62.5,0,0,-0.00547605 -16000,5607:229:3,-79,-62.5,0,0,-0.00548091 -16001,5607:228:4,-78.5,-62.5,0,0,-0.00551266 -16002,5607:228:3,-78,-62.5,0,0,-0.00550534 -16003,5607:227:4,-77.5,-62.5,0,0,-0.00548459 -16004,5607:227:3,-77,-62.5,0,0,-0.00547727 -16005,5607:226:4,-76.5,-62.5,0,0,-0.00547364 -16006,5607:226:3,-76,-62.5,0,0,-0.00547364 -16007,5607:225:4,-75.5,-62.5,0,0,-0.00547241 -16008,5607:225:3,-75,-62.5,0,0,-0.00549557 -16009,5607:124:4,-74.5,-62.5,0,0,-0.00558418 -16010,5607:124:3,-74,-62.5,0,0,-0.00563526 -16011,5607:123:4,-73.5,-62.5,0,0,-0.00567045 -16012,5607:123:3,-73,-62.5,0,0,-0.00568307 -16013,5607:122:4,-72.5,-62.5,0,0,-0.00567421 -16014,5607:122:3,-72,-62.5,0,0,-0.00565658 -16015,5607:121:4,-71.5,-62.5,0,0,-0.00572108 -16016,5607:121:3,-71,-62.5,0,0,-0.00569569 -16017,5607:120:4,-70.5,-62.5,0,0,-0.00572741 -16018,5607:120:3,-70,-62.5,0,0,-0.00579787 -16019,5606:229:4,-69.5,-62.5,0,0,-0.00580172 -16020,5606:229:3,-69,-62.5,0,0,-0.00587047 -16021,5606:120:4,-60.5,-62.5,0,0,-0.00614821 -16022,5606:120:3,-60,-62.5,0,0,-0.00579397 -16023,5605:229:4,-59.5,-62.5,0,0,-0.00553476 -16024,5605:229:3,-59,-62.5,0,0,-0.0055225 -16025,5605:228:4,-58.5,-62.5,0,0,-0.00550411 -16026,5605:228:3,-58,-62.5,0,0,-0.00548582 -16027,5605:227:4,-57.5,-62.5,0,0,-0.00547486 -16028,5605:227:3,-57,-62.5,0,0,-0.00547 -16029,5605:226:4,-56.5,-62.5,0,0,-0.00546878 -16030,5605:226:3,-56,-62.5,0,0,-0.00546755 -16031,5605:225:4,-55.5,-62.5,0,0,-0.00546755 -16032,5605:225:3,-55,-62.5,0,0,-0.00546878 -16033,5605:124:4,-54.5,-62.5,0,0,-0.00546878 -16034,5605:124:3,-54,-62.5,0,0,-0.00546878 -16035,5605:123:4,-53.5,-62.5,0,0,-0.00546755 -16036,5605:123:3,-53,-62.5,0,0,-0.00546511 -16037,5605:122:4,-52.5,-62.5,0,0,-0.0054627 -16038,5605:122:3,-52,-62.5,0,0,-0.00546148 -16039,5605:121:4,-51.5,-62.5,0,0,-0.00546148 -16040,5605:121:3,-51,-62.5,0,0,-0.00546148 -16041,5605:120:4,-50.5,-62.5,0,0,-0.00546026 -16042,5605:120:3,-50,-62.5,0,0,-0.00546026 -16043,5604:229:4,-49.5,-62.5,0,0,-0.00546026 -16044,5604:229:3,-49,-62.5,0,0,-0.00545907 -16045,5604:228:4,-48.5,-62.5,0,0,-0.00545907 -16046,5604:228:3,-48,-62.5,0,0,-0.00545907 -16047,5604:227:4,-47.5,-62.5,0,0,-0.00545785 -16048,5604:227:3,-47,-62.5,0,0,-0.00545785 -16049,5604:226:4,-46.5,-62.5,0,0,-0.00545785 -16050,5604:226:3,-46,-62.5,0,0,-0.00545785 -16051,5604:225:4,-45.5,-62.5,0,0,-0.00545785 -16052,5604:225:3,-45,-62.5,0,0,-0.00545785 -16053,5604:124:4,-44.5,-62.5,0,0,-0.00545785 -16054,5604:124:3,-44,-62.5,0,0,-0.00545663 -16055,5604:123:4,-43.5,-62.5,0,0,-0.00545663 -16056,5604:123:3,-43,-62.5,0,0,-0.00545663 -16057,5604:122:4,-42.5,-62.5,0,0,-0.00545663 -16058,5604:122:3,-42,-62.5,0,0,-0.00545785 -16059,5604:121:4,-41.5,-62.5,0,0,-0.00545785 -16060,5604:121:3,-41,-62.5,0,0,-0.00545785 -16061,5604:120:4,-40.5,-62.5,0,0,-0.00545785 -16062,5604:120:3,-40,-62.5,0,0,-0.00545785 -16063,5603:229:4,-39.5,-62.5,0,0,-0.00545663 -16064,5603:229:3,-39,-62.5,0,0,-0.00545663 -16065,5603:228:4,-38.5,-62.5,0,0,-0.00545541 -16066,5603:228:3,-38,-62.5,0,0,-0.00545541 -16067,5603:227:4,-37.5,-62.5,0,0,-0.00545541 -16068,5603:227:3,-37,-62.5,0,0,-0.00545541 -16069,5603:226:4,-36.5,-62.5,0,0,-0.00545541 -16070,5603:226:3,-36,-62.5,0,0,-0.00545541 -16071,5603:225:4,-35.5,-62.5,0,0,-0.00545541 -16072,5603:225:3,-35,-62.5,0,0,-0.00545541 -16073,5603:124:4,-34.5,-62.5,0,0,-0.00545541 -16074,5603:124:3,-34,-62.5,0,0,-0.00545541 -16075,5603:123:4,-33.5,-62.5,0,0,-0.00545541 -16076,5603:123:3,-33,-62.5,0,0,-0.00545541 -16077,5603:122:4,-32.5,-62.5,0,0,-0.00545541 -16078,5603:122:3,-32,-62.5,0,0,-0.00545541 -16079,5603:121:4,-31.5,-62.5,0,0,-0.00545541 -16080,5603:121:3,-31,-62.5,0,0,-0.00545541 -16081,5603:120:4,-30.5,-62.5,0,0,-0.00545541 -16082,5603:120:3,-30,-62.5,0,0,-0.00545541 -16083,5602:229:4,-29.5,-62.5,0,0,-0.00545541 -16084,5602:229:3,-29,-62.5,0,0,-0.00545541 -16085,5602:228:4,-28.5,-62.5,0,0,-0.00545541 -16086,5602:228:3,-28,-62.5,0,0,-0.00545541 -16087,5602:227:4,-27.5,-62.5,0,0,-0.00545541 -16088,5602:227:3,-27,-62.5,0,0,-0.00545541 -16089,5602:226:4,-26.5,-62.5,0,0,-0.00545541 -16090,5602:226:3,-26,-62.5,0,0,-0.00545541 -16091,5602:225:4,-25.5,-62.5,0,0,-0.00545541 -16092,5602:225:3,-25,-62.5,0,0,-0.00545541 -16093,5602:124:4,-24.5,-62.5,0,0,-0.00545423 -16094,5602:124:3,-24,-62.5,0,0,-0.00545423 -16095,5602:123:4,-23.5,-62.5,0,0,-0.00545423 -16096,5602:123:3,-23,-62.5,0,0,-0.005453 -16097,5602:122:4,-22.5,-62.5,0,0,-0.005453 -16098,5602:122:3,-22,-62.5,0,0,-0.00545179 -16099,5602:121:4,-21.5,-62.5,0,0,-0.00545179 -16100,5602:121:3,-21,-62.5,0,0,-0.00545057 -16101,5602:120:4,-20.5,-62.5,0,0,-0.00545057 -16102,5602:120:3,-20,-62.5,0,0,-0.00544935 -16103,5601:229:4,-19.5,-62.5,0,0,-0.00544935 -16104,5601:229:3,-19,-62.5,0,0,-0.00544816 -16105,5601:228:4,-18.5,-62.5,0,0,-0.00544695 -16106,5601:228:3,-18,-62.5,0,0,-0.00544573 -16107,5601:227:4,-17.5,-62.5,0,0,-0.00544573 -16108,5601:227:3,-17,-62.5,0,0,-0.00544333 -16109,5601:226:4,-16.5,-62.5,0,0,-0.00544211 -16110,5601:226:3,-16,-62.5,0,0,-0.00544211 -16111,5601:225:4,-15.5,-62.5,0,0,-0.00544089 -16112,5601:225:3,-15,-62.5,0,0,-0.00544089 -16113,5601:124:4,-14.5,-62.5,0,0,-0.00544089 -16114,5601:124:3,-14,-62.5,0,0,-0.00544089 -16115,5601:123:4,-13.5,-62.5,0,0,-0.00544089 -16116,5601:123:3,-13,-62.5,0,0,-0.00544211 -16117,5601:122:4,-12.5,-62.5,0,0,-0.00544211 -16118,5601:122:3,-12,-62.5,0,0,-0.00544211 -16119,5601:121:4,-11.5,-62.5,0,0,-0.00544089 -16120,5601:121:3,-11,-62.5,0,0,-0.00544089 -16121,5601:120:4,-10.5,-62.5,0,0,-0.00543968 -16122,5601:120:3,-10,-62.5,0,0,-0.00543968 -16123,5600:229:4,-9.5,-62.5,0,0,-0.00543968 -16124,5600:229:3,-9,-62.5,0,0,-0.0054385 -16125,5600:228:4,-8.5,-62.5,0,0,-0.0054385 -16126,5600:228:3,-8,-62.5,0,0,-0.0054385 -16127,5600:227:4,-7.5,-62.5,0,0,-0.0054385 -16128,5600:227:3,-7,-62.5,0,0,-0.00543968 -16129,5600:226:4,-6.5,-62.5,0,0,-0.00543968 -16130,5600:226:3,-6,-62.5,0,0,-0.0054385 -16131,5600:225:4,-5.5,-62.5,0,0,-0.0054385 -16132,5600:225:3,-5,-62.5,0,0,-0.00543606 -16133,5600:124:4,-4.5,-62.5,0,0,-0.00543485 -16134,5600:124:3,-4,-62.5,0,0,-0.00543363 -16135,5600:123:4,-3.5,-62.5,0,0,-0.00543245 -16136,5600:123:3,-3,-62.5,0,0,-0.00543124 -16137,5600:122:4,-2.5,-62.5,0,0,-0.00543124 -16138,5600:122:3,-2,-62.5,0,0,-0.00543124 -16139,5600:121:4,-1.5,-62.5,0,0,-0.00543124 -16140,5600:121:3,-1,-62.5,0,0,-0.00543245 -16141,5600:120:4,-0.5,-62.5,0,0,-0.00543245 -16142,3600:120:4,0,-62.5,0,0,-0.00543363 -16143,3600:120:4,0.5,-62.5,0,0,-0.00543485 -16144,3600:121:3,1,-62.5,0,0,-0.00543606 -16145,3600:121:4,1.5,-62.5,0,0,-0.00543485 -16146,3600:122:3,2,-62.5,0,0,-0.00543124 -16147,3600:122:4,2.5,-62.5,0,0,-0.00543124 -16148,3600:123:3,3,-62.5,0,0,-0.00543245 -16149,3600:123:4,3.5,-62.5,0,0,-0.00543245 -16150,3600:124:3,4,-62.5,0,0,-0.00543124 -16151,3600:124:4,4.5,-62.5,0,0,-0.00543245 -16152,3600:225:3,5,-62.5,0,0,-0.00543485 -16153,3600:225:4,5.5,-62.5,0,0,-0.00543245 -16154,3600:226:3,6,-62.5,0,0,-0.00543245 -16155,3600:226:4,6.5,-62.5,0,0,-0.00543363 -16156,3600:227:3,7,-62.5,0,0,-0.00543606 -16157,3600:227:4,7.5,-62.5,0,0,-0.00543728 -16158,3600:228:3,8,-62.5,0,0,-0.0054385 -16159,3600:228:4,8.5,-62.5,0,0,-0.0054385 -16160,3600:229:3,9,-62.5,0,0,-0.0054385 -16161,3600:229:4,9.5,-62.5,0,0,-0.00543968 -16162,3601:120:3,10,-62.5,0,0,-0.00544211 -16163,3601:120:4,10.5,-62.5,0,0,-0.00544573 -16164,3601:121:3,11,-62.5,0,0,-0.00544816 -16165,3601:121:4,11.5,-62.5,0,0,-0.00544935 -16166,3601:122:3,12,-62.5,0,0,-0.00545057 -16167,3601:122:4,12.5,-62.5,0,0,-0.00545057 -16168,3601:123:3,13,-62.5,0,0,-0.00545057 -16169,3601:123:4,13.5,-62.5,0,0,-0.00545057 -16170,3601:124:3,14,-62.5,0,0,-0.00545057 -16171,3601:124:4,14.5,-62.5,0,0,-0.00544935 -16172,3601:225:3,15,-62.5,0,0,-0.00544935 -16173,3601:225:4,15.5,-62.5,0,0,-0.00544816 -16174,3601:226:3,16,-62.5,0,0,-0.00544816 -16175,3601:226:4,16.5,-62.5,0,0,-0.00544816 -16176,3601:227:3,17,-62.5,0,0,-0.00544816 -16177,3601:227:4,17.5,-62.5,0,0,-0.00544695 -16178,3601:228:3,18,-62.5,0,0,-0.00544573 -16179,3601:228:4,18.5,-62.5,0,0,-0.00544695 -16180,3601:229:3,19,-62.5,0,0,-0.00544695 -16181,3601:229:4,19.5,-62.5,0,0,-0.00544816 -16182,3602:120:3,20,-62.5,0,0,-0.00544695 -16183,3602:120:4,20.5,-62.5,0,0,-0.00544573 -16184,3602:121:3,21,-62.5,0,0,-0.00544695 -16185,3602:121:4,21.5,-62.5,0,0,-0.00544695 -16186,3602:122:3,22,-62.5,0,0,-0.00544695 -16187,3602:122:4,22.5,-62.5,0,0,-0.00544695 -16188,3602:123:3,23,-62.5,0,0,-0.00544695 -16189,3602:123:4,23.5,-62.5,0,0,-0.00544573 -16190,3602:124:3,24,-62.5,0,0,-0.00544695 -16191,3602:124:4,24.5,-62.5,0,0,-0.00544695 -16192,3602:225:3,25,-62.5,0,0,-0.00544695 -16193,3602:225:4,25.5,-62.5,0,0,-0.00544695 -16194,3602:226:3,26,-62.5,0,0,-0.00544816 -16195,3602:226:4,26.5,-62.5,0,0,-0.00544816 -16196,3602:227:3,27,-62.5,0,0,-0.00544816 -16197,3602:227:4,27.5,-62.5,0,0,-0.00544935 -16198,3602:228:3,28,-62.5,0,0,-0.00545057 -16199,3602:228:4,28.5,-62.5,0,0,-0.00545179 -16200,3602:229:3,29,-62.5,0,0,-0.005453 -16201,3602:229:4,29.5,-62.5,0,0,-0.005453 -16202,3603:120:3,30,-62.5,0,0,-0.00545541 -16203,3603:120:4,30.5,-62.5,0,0,-0.00545663 -16204,3603:121:3,31,-62.5,0,0,-0.00545785 -16205,3603:121:4,31.5,-62.5,0,0,-0.00545907 -16206,3603:122:3,32,-62.5,0,0,-0.00545907 -16207,3603:122:4,32.5,-62.5,0,0,-0.0054627 -16208,3603:123:3,33,-62.5,0,0,-0.00546755 -16209,3603:123:4,33.5,-62.5,0,0,-0.00547 -16210,3603:124:3,34,-62.5,0,0,-0.00546755 -16211,3603:124:4,34.5,-62.5,0,0,-0.00546755 -16212,3603:225:3,35,-62.5,0,0,-0.00546633 -16213,3603:225:4,35.5,-62.5,0,0,-0.00546755 -16214,3603:226:3,36,-62.5,0,0,-0.00546392 -16215,3603:226:4,36.5,-62.5,0,0,-0.00546392 -16216,3603:227:3,37,-62.5,0,0,-0.00546511 -16217,3603:227:4,37.5,-62.5,0,0,-0.00546633 -16218,3603:228:3,38,-62.5,0,0,-0.00546633 -16219,3603:228:4,38.5,-62.5,0,0,-0.00546511 -16220,3603:229:3,39,-62.5,0,0,-0.00546633 -16221,3603:229:4,39.5,-62.5,0,0,-0.00546633 -16222,3604:120:3,40,-62.5,0,0,-0.00546633 -16223,3604:120:4,40.5,-62.5,0,0,-0.00546511 -16224,3604:121:3,41,-62.5,0,0,-0.00546511 -16225,3604:121:4,41.5,-62.5,0,0,-0.00546511 -16226,3604:122:3,42,-62.5,0,0,-0.00546755 -16227,3604:122:4,42.5,-62.5,0,0,-0.00546878 -16228,3604:123:3,43,-62.5,0,0,-0.00546878 -16229,3604:123:4,43.5,-62.5,0,0,-0.00546755 -16230,3604:124:3,44,-62.5,0,0,-0.00546878 -16231,3604:124:4,44.5,-62.5,0,0,-0.00547 -16232,3604:225:3,45,-62.5,0,0,-0.00546755 -16233,3604:225:4,45.5,-62.5,0,0,-0.00547 -16234,3604:226:3,46,-62.5,0,0,-0.00551024 -16235,3604:226:4,46.5,-62.5,0,0,-0.0055434 -16236,3604:227:3,47,-62.5,0,0,-0.00558168 -16237,3604:227:4,47.5,-62.5,0,0,-0.00608027 -16238,3604:228:3,48,-62.5,0,0,-0.00639785 -16239,3605:229:3,59,-62.5,0,0,-0.00553108 -16240,3605:229:4,59.5,-62.5,0,0,-0.00556188 -16241,3606:120:3,60,-62.5,0,0,-0.00567421 -16242,3606:120:4,60.5,-62.5,0,0,-0.00610329 -16243,3606:121:3,61,-62.5,0,0,-0.00583665 -16244,3606:121:4,61.5,-62.5,0,0,-0.00567045 -16245,3606:122:3,62,-62.5,0,0,-0.00602779 -16246,3606:122:4,62.5,-62.5,0,0,-0.00594532 -16247,3606:123:3,63,-62.5,0,0,-0.00582237 -16248,3606:123:4,63.5,-62.5,0,0,-0.00591499 -16249,3606:124:3,64,-62.5,0,0,-0.0061264 -16250,3606:124:4,64.5,-62.5,0,0,-0.0062197 -16251,3606:225:3,65,-62.5,0,0,-0.00611689 -16252,3606:225:4,65.5,-62.5,0,0,-0.00588482 -16253,3606:226:3,66,-62.5,0,0,-0.00583665 -16254,3606:226:4,66.5,-62.5,0,0,-0.00586394 -16255,3606:227:3,67,-62.5,0,0,-0.00587047 -16256,3606:227:4,67.5,-62.5,0,0,-0.00566038 -16257,3606:228:3,68,-62.5,0,0,-0.00552741 -16258,3606:228:4,68.5,-62.5,0,0,-0.00552985 -16259,3606:229:3,69,-62.5,0,0,-0.00555201 -16260,3606:229:4,69.5,-62.5,0,0,-0.0055557 -16261,3607:120:3,70,-62.5,0,0,-0.00557177 -16262,3607:120:4,70.5,-62.5,0,0,-0.00559661 -16263,3607:121:3,71,-62.5,0,0,-0.00563904 -16264,3607:121:4,71.5,-62.5,0,0,-0.00566918 -16265,3607:122:3,72,-62.5,0,0,-0.00565282 -16266,3607:122:4,72.5,-62.5,0,0,-0.00566414 -16267,3607:123:4,73.5,-62.5,0,0,-0.00570075 -16268,3607:124:3,74,-62.5,0,0,-0.00585742 -16269,3607:124:4,74.5,-62.5,0,0,-0.005877 -16270,3607:225:3,75,-62.5,0,0,-0.00588873 -16271,3607:225:4,75.5,-62.5,0,0,-0.00590449 -16272,3607:226:3,76,-62.5,0,0,-0.00596649 -16273,3607:226:4,76.5,-62.5,0,0,-0.00612232 -16274,3607:227:3,77,-62.5,0,0,-0.00617564 -16275,3607:227:4,77.5,-62.5,0,0,-0.0062516 -16276,3607:228:3,78,-62.5,0,0,-0.00641781 -16277,3607:228:4,78.5,-62.5,0,0,-0.00663842 -16278,3607:229:3,79,-62.5,0,0,-0.00687893 -16279,3607:229:4,79.5,-62.5,0,0,-0.00704622 -16280,3608:120:3,80,-62.5,0,0,-0.00727732 -16281,3608:120:4,80.5,-62.5,0,0,-0.00765446 -16282,3608:121:3,81,-62.5,0,0,-0.00823814 -16283,3608:121:4,81.5,-62.5,0,0,-0.00902434 -16284,3608:122:3,82,-62.5,0,0,-0.00944639 -16285,3614:226:3,146,-62.5,0,0,-0.00679377 -16286,3614:226:4,146.5,-62.5,0,0,-0.00568558 -16287,3614:227:3,147,-62.5,0,0,-0.00586005 -16288,3614:227:4,147.5,-62.5,0,0,-0.0060372 -16289,3614:228:3,148,-62.5,0,0,-0.00611008 -16290,3614:228:4,148.5,-62.5,0,0,-0.00595456 -16291,3614:229:3,149,-62.5,0,0,-0.00590317 -16292,3614:229:4,149.5,-62.5,0,0,-0.00579272 -16293,3615:120:3,150,-62.5,0,0,-0.00560033 -16294,3615:120:4,150.5,-62.5,0,0,-0.00553352 -16295,3615:121:3,151,-62.5,0,0,-0.00546878 -16296,3615:121:4,151.5,-62.5,0,0,-0.00547605 -16297,3615:122:3,152,-62.5,0,0,-0.00547605 -16298,3615:122:4,152.5,-62.5,0,0,-0.00547727 -16299,3615:123:3,153,-62.5,0,0,-0.00547605 -16300,3615:123:4,153.5,-62.5,0,0,-0.00547605 -16301,3615:124:3,154,-62.5,0,0,-0.00547727 -16302,3615:124:4,154.5,-62.5,0,0,-0.00547727 -16303,3615:225:3,155,-62.5,0,0,-0.00547605 -16304,3615:225:4,155.5,-62.5,0,0,-0.00547605 -16305,3615:226:3,156,-62.5,0,0,-0.00547486 -16306,3615:226:4,156.5,-62.5,0,0,-0.00547364 -16307,3615:227:3,157,-62.5,0,0,-0.00547119 -16308,3615:227:4,157.5,-62.5,0,0,-0.00546633 -16309,3615:228:3,158,-62.5,0,0,-0.00546148 -16310,3615:228:4,158.5,-62.5,0,0,-0.0054627 -16311,3615:229:3,159,-62.5,0,0,-0.0054627 -16312,3615:229:4,159.5,-62.5,0,0,-0.00546392 -16313,3616:120:3,160,-62.5,0,0,-0.00546392 -16314,3616:120:4,160.5,-62.5,0,0,-0.00546511 -16315,3616:121:3,161,-62.5,0,0,-0.00546511 -16316,3616:121:4,161.5,-62.5,0,0,-0.00546511 -16317,3616:122:3,162,-62.5,0,0,-0.00546392 -16318,3616:122:4,162.5,-62.5,0,0,-0.0054627 -16319,3616:123:3,163,-62.5,0,0,-0.0054627 -16320,3616:123:4,163.5,-62.5,0,0,-0.00546148 -16321,3616:124:3,164,-62.5,0,0,-0.00546026 -16322,3616:124:4,164.5,-62.5,0,0,-0.00544816 -16323,3616:225:4,165.5,-62.5,0,0,-0.00546633 -16324,3616:226:3,166,-62.5,0,0,-0.00547 -16325,3616:226:4,166.5,-62.5,0,0,-0.00546878 -16326,3616:227:3,167,-62.5,0,0,-0.00546878 -16327,3616:227:4,167.5,-62.5,0,0,-0.00546878 -16328,3616:228:3,168,-62.5,0,0,-0.00546878 -16329,3616:228:4,168.5,-62.5,0,0,-0.00546878 -16330,3616:229:3,169,-62.5,0,0,-0.00546878 -16331,3616:229:4,169.5,-62.5,0,0,-0.00546755 -16332,3617:120:3,170,-62.5,0,0,-0.00546633 -16333,3617:120:4,170.5,-62.5,0,0,-0.00546633 -16334,3617:121:3,171,-62.5,0,0,-0.00546633 -16335,3617:121:4,171.5,-62.5,0,0,-0.00546633 -16336,3617:122:3,172,-62.5,0,0,-0.00546755 -16337,3617:122:4,172.5,-62.5,0,0,-0.00546633 -16338,3617:123:3,173,-62.5,0,0,-0.00546633 -16339,3617:123:4,173.5,-62.5,0,0,-0.00546633 -16340,3617:124:3,174,-62.5,0,0,-0.00546633 -16341,3617:124:4,174.5,-62.5,0,0,-0.00546633 -16342,3617:225:3,175,-62.5,0,0,-0.00546633 -16343,3617:225:4,175.5,-62.5,0,0,-0.00546633 -16344,3617:226:3,176,-62.5,0,0,-0.00546878 -16345,3617:226:4,176.5,-62.5,0,0,-0.00546878 -16346,3617:227:3,177,-62.5,0,0,-0.00546755 -16347,3617:227:4,177.5,-62.5,0,0,-0.00546878 -16348,3617:228:3,178,-62.5,0,0,-0.00547 -16349,3617:228:4,178.5,-62.5,0,0,-0.00547 -16350,3617:229:3,179,-62.5,0,0,-0.00547 -16351,3617:229:4,179.5,-62.5,0,0,-0.00547 -16352,3618:120:3,180,-62.5,0,0,-0.00547 -16353,5618:120:1,-180,-62,0,0,-0.00546878 -16354,5617:229:2,-179.5,-62,0,0,-0.00546878 -16355,5617:229:1,-179,-62,0,0,-0.00546878 -16356,5617:228:2,-178.5,-62,0,0,-0.00547 -16357,5617:228:1,-178,-62,0,0,-0.00547241 -16358,5617:227:2,-177.5,-62,0,0,-0.00547364 -16359,5617:227:1,-177,-62,0,0,-0.00547972 -16360,5617:226:2,-176.5,-62,0,0,-0.00549189 -16361,5617:226:1,-176,-62,0,0,-0.00549677 -16362,5617:225:2,-175.5,-62,0,0,-0.00548824 -16363,5617:225:1,-175,-62,0,0,-0.00548214 -16364,5617:124:2,-174.5,-62,0,0,-0.00547727 -16365,5617:124:1,-174,-62,0,0,-0.00547486 -16366,5617:123:2,-173.5,-62,0,0,-0.00547241 -16367,5617:123:1,-173,-62,0,0,-0.00547241 -16368,5617:122:2,-172.5,-62,0,0,-0.00547119 -16369,5617:122:1,-172,-62,0,0,-0.00547 -16370,5617:121:2,-171.5,-62,0,0,-0.00546878 -16371,5617:121:1,-171,-62,0,0,-0.00546878 -16372,5617:120:2,-170.5,-62,0,0,-0.00546755 -16373,5617:120:1,-170,-62,0,0,-0.00546633 -16374,5616:229:2,-169.5,-62,0,0,-0.00546511 -16375,5616:229:1,-169,-62,0,0,-0.00546511 -16376,5616:228:2,-168.5,-62,0,0,-0.00546511 -16377,5616:228:1,-168,-62,0,0,-0.00546392 -16378,5616:227:2,-167.5,-62,0,0,-0.00546392 -16379,5616:227:1,-167,-62,0,0,-0.00546392 -16380,5616:226:2,-166.5,-62,0,0,-0.0054627 -16381,5616:226:1,-166,-62,0,0,-0.00546392 -16382,5616:225:2,-165.5,-62,0,0,-0.00546392 -16383,5616:225:1,-165,-62,0,0,-0.00546392 -16384,5616:124:2,-164.5,-62,0,0,-0.00546511 -16385,5616:124:1,-164,-62,0,0,-0.00546511 -16386,5616:123:2,-163.5,-62,0,0,-0.00546633 -16387,5616:123:1,-163,-62,0,0,-0.00546755 -16388,5616:122:2,-162.5,-62,0,0,-0.00546878 -16389,5616:122:1,-162,-62,0,0,-0.00547 -16390,5616:121:2,-161.5,-62,0,0,-0.00547 -16391,5616:121:1,-161,-62,0,0,-0.00547 -16392,5616:120:2,-160.5,-62,0,0,-0.00547119 -16393,5616:120:1,-160,-62,0,0,-0.00547241 -16394,5615:229:2,-159.5,-62,0,0,-0.00547364 -16395,5615:229:1,-159,-62,0,0,-0.00547486 -16396,5615:228:2,-158.5,-62,0,0,-0.00547605 -16397,5615:228:1,-158,-62,0,0,-0.00547605 -16398,5615:227:2,-157.5,-62,0,0,-0.00547727 -16399,5615:227:1,-157,-62,0,0,-0.00547727 -16400,5615:226:2,-156.5,-62,0,0,-0.0054785 -16401,5615:226:1,-156,-62,0,0,-0.0054785 -16402,5615:225:2,-155.5,-62,0,0,-0.00547972 -16403,5615:225:1,-155,-62,0,0,-0.00548091 -16404,5615:124:2,-154.5,-62,0,0,-0.00548214 -16405,5615:124:1,-154,-62,0,0,-0.00548214 -16406,5615:123:2,-153.5,-62,0,0,-0.00548337 -16407,5615:123:1,-153,-62,0,0,-0.00548459 -16408,5615:122:2,-152.5,-62,0,0,-0.00548582 -16409,5615:122:1,-152,-62,0,0,-0.00548701 -16410,5615:121:2,-151.5,-62,0,0,-0.00548824 -16411,5615:121:1,-151,-62,0,0,-0.00548824 -16412,5615:120:2,-150.5,-62,0,0,-0.00548824 -16413,5615:120:1,-150,-62,0,0,-0.00548947 -16414,5614:229:2,-149.5,-62,0,0,-0.00548947 -16415,5614:229:1,-149,-62,0,0,-0.00549069 -16416,5614:228:2,-148.5,-62,0,0,-0.00549189 -16417,5614:228:1,-148,-62,0,0,-0.00549312 -16418,5614:227:2,-147.5,-62,0,0,-0.00549312 -16419,5614:227:1,-147,-62,0,0,-0.00549312 -16420,5614:226:2,-146.5,-62,0,0,-0.00549434 -16421,5614:226:1,-146,-62,0,0,-0.00549557 -16422,5614:225:2,-145.5,-62,0,0,-0.005509 -16423,5614:225:1,-145,-62,0,0,-0.00552494 -16424,5614:124:2,-144.5,-62,0,0,-0.00550288 -16425,5614:124:1,-144,-62,0,0,-0.00549557 -16426,5614:123:2,-143.5,-62,0,0,-0.00549557 -16427,5614:123:1,-143,-62,0,0,-0.00550658 -16428,5614:122:2,-142.5,-62,0,0,-0.0055225 -16429,5614:122:1,-142,-62,0,0,-0.00558914 -16430,5614:121:2,-141.5,-62,0,0,-0.00566791 -16431,5614:121:1,-141,-62,0,0,-0.00604388 -16432,5614:120:2,-140.5,-62,0,0,-0.00640641 -16433,5614:120:1,-140,-62,0,0,-0.00613459 -16434,5613:229:2,-139.5,-62,0,0,-0.00593472 -16435,5613:229:1,-139,-62,0,0,-0.00586394 -16436,5613:228:2,-138.5,-62,0,0,-0.00584053 -16437,5613:228:1,-138,-62,0,0,-0.00590577 -16438,5613:227:2,-137.5,-62,0,0,-0.00625996 -16439,5613:227:1,-137,-62,0,0,-0.00667991 -16440,5613:226:2,-136.5,-62,0,0,-0.00672162 -16441,5613:226:1,-136,-62,0,0,-0.00653879 -16442,5613:225:2,-135.5,-62,0,0,-0.00670371 -16443,5613:225:1,-135,-62,0,0,-0.00692655 -16444,5613:124:2,-134.5,-62,0,0,-0.00726112 -16445,5613:124:1,-134,-62,0,0,-0.00744607 -16446,5613:123:2,-133.5,-62,0,0,-0.00740144 -16447,5613:123:1,-133,-62,0,0,-0.0070887 -16448,5613:122:2,-132.5,-62,0,0,-0.0065301 -16449,5613:122:1,-132,-62,0,0,-0.00606812 -16450,5613:121:2,-131.5,-62,0,0,-0.0060372 -16451,5613:121:1,-131,-62,0,0,-0.00641781 -16452,5613:120:2,-130.5,-62,0,0,-0.00667547 -16453,5613:120:1,-130,-62,0,0,-0.00705249 -16454,5612:229:2,-129.5,-62,0,0,-0.00745933 -16455,5612:229:1,-129,-62,0,0,-0.00742622 -16456,5612:228:2,-128.5,-62,0,0,-0.00686517 -16457,5612:228:1,-128,-62,0,0,-0.00641493 -16458,5612:227:2,-127.5,-62,0,0,-0.00643067 -16459,5612:227:1,-127,-62,0,0,-0.00657524 -16460,5612:226:2,-126.5,-62,0,0,-0.0066933 -16461,5612:226:1,-126,-62,0,0,-0.00673363 -16462,5612:225:2,-125.5,-62,0,0,-0.0066918 -16463,5612:225:1,-125,-62,0,0,-0.00661045 -16464,5612:124:2,-124.5,-62,0,0,-0.00658698 -16465,5612:124:1,-124,-62,0,0,-0.00654754 -16466,5612:123:2,-123.5,-62,0,0,-0.00650979 -16467,5612:123:1,-123,-62,0,0,-0.00650109 -16468,5612:122:2,-122.5,-62,0,0,-0.00650833 -16469,5612:122:1,-122,-62,0,0,-0.00652717 -16470,5612:121:2,-121.5,-62,0,0,-0.00655625 -16471,5612:121:1,-121,-62,0,0,-0.00658551 -16472,5612:120:2,-120.5,-62,0,0,-0.00661781 -16473,5612:120:1,-120,-62,0,0,-0.00666655 -16474,5611:229:2,-119.5,-62,0,0,-0.00677117 -16475,5611:229:1,-119,-62,0,0,-0.00692965 -16476,5611:228:2,-118.5,-62,0,0,-0.0071045 -16477,5611:228:1,-118,-62,0,0,-0.00732606 -16478,5611:227:2,-117.5,-62,0,0,-0.00736858 -16479,5611:227:1,-117,-62,0,0,-0.00722404 -16480,5611:226:2,-116.5,-62,0,0,-0.00705877 -16481,5611:226:1,-116,-62,0,0,-0.00713457 -16482,5611:225:2,-115.5,-62,0,0,-0.00768003 -16483,5611:225:1,-115,-62,0,0,-0.00774533 -16484,5611:124:2,-114.5,-62,0,0,-0.00744273 -16485,5611:124:1,-114,-62,0,0,-0.00712189 -16486,5611:123:2,-113.5,-62,0,0,-0.00699935 -16487,5611:123:1,-113,-62,0,0,-0.00713937 -16488,5611:122:2,-112.5,-62,0,0,-0.00723209 -16489,5611:122:1,-112,-62,0,0,-0.00716321 -16490,5611:121:2,-111.5,-62,0,0,-0.00694661 -16491,5611:121:1,-111,-62,0,0,-0.00683778 -16492,5611:120:2,-110.5,-62,0,0,-0.00680134 -16493,5611:120:1,-110,-62,0,0,-0.0067953 -16494,5610:229:2,-109.5,-62,0,0,-0.00677268 -16495,5610:229:1,-109,-62,0,0,-0.00668435 -16496,5610:228:2,-108.5,-62,0,0,-0.006634 -16497,5610:228:1,-108,-62,0,0,-0.00664879 -16498,5610:227:2,-107.5,-62,0,0,-0.00675459 -16499,5610:227:1,-107,-62,0,0,-0.00695279 -16500,5610:226:2,-106.5,-62,0,0,-0.00751599 -16501,5610:226:1,-106,-62,0,0,-0.00761876 -16502,5610:225:2,-105.5,-62,0,0,-0.00743611 -16503,5610:225:1,-105,-62,0,0,-0.00726112 -16504,5610:124:2,-104.5,-62,0,0,-0.007095 -16505,5610:124:1,-104,-62,0,0,-0.00691424 -16506,5610:123:2,-103.5,-62,0,0,-0.00676965 -16507,5610:123:1,-103,-62,0,0,-0.0066948 -16508,5610:122:2,-102.5,-62,0,0,-0.00663252 -16509,5610:122:1,-102,-62,0,0,-0.00660458 -16510,5610:121:2,-101.5,-62,0,0,-0.00657818 -16511,5610:121:1,-101,-62,0,0,-0.00644495 -16512,5610:120:2,-100.5,-62,0,0,-0.00589529 -16513,5610:120:1,-100,-62,0,0,-0.00575548 -16514,5609:229:2,-99.5,-62,0,0,-0.00578243 -16515,5609:229:1,-99,-62,0,0,-0.00572869 -16516,5609:228:2,-98.5,-62,0,0,-0.00553352 -16517,5609:228:1,-98,-62,0,0,-0.00546755 -16518,5609:227:2,-97.5,-62,0,0,-0.00547241 -16519,5609:227:1,-97,-62,0,0,-0.00547364 -16520,5609:226:2,-96.5,-62,0,0,-0.00547119 -16521,5609:226:1,-96,-62,0,0,-0.00547 -16522,5609:225:2,-95.5,-62,0,0,-0.00547727 -16523,5609:225:1,-95,-62,0,0,-0.00553848 -16524,5609:124:2,-94.5,-62,0,0,-0.00557797 -16525,5609:124:1,-94,-62,0,0,-0.00556932 -16526,5609:123:2,-93.5,-62,0,0,-0.00556558 -16527,5609:123:1,-93,-62,0,0,-0.00556437 -16528,5609:122:2,-92.5,-62,0,0,-0.00553108 -16529,5609:122:1,-92,-62,0,0,-0.00551147 -16530,5609:121:2,-91.5,-62,0,0,-0.00551756 -16531,5609:121:1,-91,-62,0,0,-0.00552127 -16532,5609:120:2,-90.5,-62,0,0,-0.00551266 -16533,5609:120:1,-90,-62,0,0,-0.00549189 -16534,5608:229:2,-89.5,-62,0,0,-0.0054785 -16535,5608:229:1,-89,-62,0,0,-0.00547486 -16536,5608:228:2,-88.5,-62,0,0,-0.00547605 -16537,5608:228:1,-88,-62,0,0,-0.00548459 -16538,5608:227:2,-87.5,-62,0,0,-0.00549923 -16539,5608:227:1,-87,-62,0,0,-0.00551266 -16540,5608:226:2,-86.5,-62,0,0,-0.00549677 -16541,5608:226:1,-86,-62,0,0,-0.00547 -16542,5608:225:2,-85.5,-62,0,0,-0.00549069 -16543,5608:225:1,-85,-62,0,0,-0.00558664 -16544,5608:124:2,-84.5,-62,0,0,-0.005619 -16545,5608:124:1,-84,-62,0,0,-0.00560531 -16546,5608:123:2,-83.5,-62,0,0,-0.00561029 -16547,5608:123:1,-83,-62,0,0,-0.00560781 -16548,5608:122:2,-82.5,-62,0,0,-0.00552494 -16549,5608:122:1,-82,-62,0,0,-0.00560405 -16550,5608:121:2,-81.5,-62,0,0,-0.00566414 -16551,5608:121:1,-81,-62,0,0,-0.00569318 -16552,5608:120:2,-80.5,-62,0,0,-0.00570581 -16553,5608:120:1,-80,-62,0,0,-0.00571724 -16554,5607:229:2,-79.5,-62,0,0,-0.00572741 -16555,5607:229:1,-79,-62,0,0,-0.00575423 -16556,5607:228:2,-78.5,-62,0,0,-0.00581334 -16557,5607:228:1,-78,-62,0,0,-0.00586005 -16558,5607:227:2,-77.5,-62,0,0,-0.00571092 -16559,5607:227:1,-77,-62,0,0,-0.00557797 -16560,5607:226:2,-76.5,-62,0,0,-0.005536 -16561,5607:226:1,-76,-62,0,0,-0.00553108 -16562,5607:225:2,-75.5,-62,0,0,-0.00553232 -16563,5607:225:1,-75,-62,0,0,-0.00557797 -16564,5607:124:2,-74.5,-62,0,0,-0.00563277 -16565,5607:124:1,-74,-62,0,0,-0.0057198 -16566,5607:123:2,-73.5,-62,0,0,-0.00574526 -16567,5607:123:1,-73,-62,0,0,-0.00572869 -16568,5607:122:2,-72.5,-62,0,0,-0.00577601 -16569,5607:122:1,-72,-62,0,0,-0.00584572 -16570,5607:121:2,-71.5,-62,0,0,-0.00584183 -16571,5607:121:1,-71,-62,0,0,-0.00579916 -16572,5607:120:2,-70.5,-62,0,0,-0.00569951 -16573,5607:120:1,-70,-62,0,0,-0.00575423 -16574,5606:229:2,-69.5,-62,0,0,-0.00595589 -16575,5606:229:1,-69,-62,0,0,-0.006083 -16576,5606:120:2,-60.5,-62,0,0,-0.0062391 -16577,5606:120:1,-60,-62,0,0,-0.0058835 -16578,5605:229:2,-59.5,-62,0,0,-0.0055225 -16579,5605:229:1,-59,-62,0,0,-0.00550411 -16580,5605:228:2,-58.5,-62,0,0,-0.00549434 -16581,5605:228:1,-58,-62,0,0,-0.00548459 -16582,5605:227:2,-57.5,-62,0,0,-0.00548091 -16583,5605:227:1,-57,-62,0,0,-0.00548091 -16584,5605:226:2,-56.5,-62,0,0,-0.00547727 -16585,5605:226:1,-56,-62,0,0,-0.00547119 -16586,5605:225:2,-55.5,-62,0,0,-0.00546878 -16587,5605:225:1,-55,-62,0,0,-0.00546878 -16588,5605:124:2,-54.5,-62,0,0,-0.00547 -16589,5605:124:1,-54,-62,0,0,-0.00547 -16590,5605:123:2,-53.5,-62,0,0,-0.00546878 -16591,5605:123:1,-53,-62,0,0,-0.00546633 -16592,5605:122:2,-52.5,-62,0,0,-0.00546392 -16593,5605:122:1,-52,-62,0,0,-0.0054627 -16594,5605:121:2,-51.5,-62,0,0,-0.00546148 -16595,5605:121:1,-51,-62,0,0,-0.00546148 -16596,5605:120:2,-50.5,-62,0,0,-0.00546026 -16597,5605:120:1,-50,-62,0,0,-0.00546026 -16598,5604:229:2,-49.5,-62,0,0,-0.00546026 -16599,5604:229:1,-49,-62,0,0,-0.00545907 -16600,5604:228:2,-48.5,-62,0,0,-0.00545907 -16601,5604:228:1,-48,-62,0,0,-0.00545907 -16602,5604:227:2,-47.5,-62,0,0,-0.00545785 -16603,5604:227:1,-47,-62,0,0,-0.00545785 -16604,5604:226:2,-46.5,-62,0,0,-0.00545663 -16605,5604:226:1,-46,-62,0,0,-0.00545663 -16606,5604:225:2,-45.5,-62,0,0,-0.00545663 -16607,5604:225:1,-45,-62,0,0,-0.00545785 -16608,5604:124:2,-44.5,-62,0,0,-0.00545785 -16609,5604:124:1,-44,-62,0,0,-0.00545663 -16610,5604:123:2,-43.5,-62,0,0,-0.00545663 -16611,5604:123:1,-43,-62,0,0,-0.00545663 -16612,5604:122:2,-42.5,-62,0,0,-0.00545785 -16613,5604:122:1,-42,-62,0,0,-0.00545785 -16614,5604:121:2,-41.5,-62,0,0,-0.00545785 -16615,5604:121:1,-41,-62,0,0,-0.00545785 -16616,5604:120:2,-40.5,-62,0,0,-0.00545785 -16617,5604:120:1,-40,-62,0,0,-0.00545663 -16618,5603:229:2,-39.5,-62,0,0,-0.00545663 -16619,5603:229:1,-39,-62,0,0,-0.00545663 -16620,5603:228:2,-38.5,-62,0,0,-0.00545541 -16621,5603:228:1,-38,-62,0,0,-0.00545541 -16622,5603:227:2,-37.5,-62,0,0,-0.00545541 -16623,5603:227:1,-37,-62,0,0,-0.00545541 -16624,5603:226:2,-36.5,-62,0,0,-0.00545541 -16625,5603:226:1,-36,-62,0,0,-0.00545541 -16626,5603:225:2,-35.5,-62,0,0,-0.00545541 -16627,5603:225:1,-35,-62,0,0,-0.00545541 -16628,5603:124:2,-34.5,-62,0,0,-0.00545541 -16629,5603:124:1,-34,-62,0,0,-0.00545541 -16630,5603:123:2,-33.5,-62,0,0,-0.00545541 -16631,5603:123:1,-33,-62,0,0,-0.00545541 -16632,5603:122:2,-32.5,-62,0,0,-0.00545541 -16633,5603:122:1,-32,-62,0,0,-0.00545541 -16634,5603:121:2,-31.5,-62,0,0,-0.00545541 -16635,5603:121:1,-31,-62,0,0,-0.00545663 -16636,5603:120:2,-30.5,-62,0,0,-0.00545663 -16637,5603:120:1,-30,-62,0,0,-0.00545541 -16638,5602:229:2,-29.5,-62,0,0,-0.00545541 -16639,5602:229:1,-29,-62,0,0,-0.00545541 -16640,5602:228:2,-28.5,-62,0,0,-0.00545541 -16641,5602:228:1,-28,-62,0,0,-0.00545541 -16642,5602:227:2,-27.5,-62,0,0,-0.00545541 -16643,5602:227:1,-27,-62,0,0,-0.00545541 -16644,5602:226:2,-26.5,-62,0,0,-0.00545541 -16645,5602:226:1,-26,-62,0,0,-0.00545541 -16646,5602:225:2,-25.5,-62,0,0,-0.00545541 -16647,5602:225:1,-25,-62,0,0,-0.00545541 -16648,5602:124:2,-24.5,-62,0,0,-0.00545541 -16649,5602:124:1,-24,-62,0,0,-0.00545423 -16650,5602:123:2,-23.5,-62,0,0,-0.00545423 -16651,5602:123:1,-23,-62,0,0,-0.005453 -16652,5602:122:2,-22.5,-62,0,0,-0.005453 -16653,5602:122:1,-22,-62,0,0,-0.005453 -16654,5602:121:2,-21.5,-62,0,0,-0.00545179 -16655,5602:121:1,-21,-62,0,0,-0.00545057 -16656,5602:120:2,-20.5,-62,0,0,-0.00545057 -16657,5602:120:1,-20,-62,0,0,-0.00544935 -16658,5601:229:2,-19.5,-62,0,0,-0.00544935 -16659,5601:229:1,-19,-62,0,0,-0.00544816 -16660,5601:228:2,-18.5,-62,0,0,-0.00544695 -16661,5601:228:1,-18,-62,0,0,-0.00544573 -16662,5601:227:2,-17.5,-62,0,0,-0.00544451 -16663,5601:227:1,-17,-62,0,0,-0.00544333 -16664,5601:226:2,-16.5,-62,0,0,-0.00544089 -16665,5601:226:1,-16,-62,0,0,-0.00544089 -16666,5601:225:2,-15.5,-62,0,0,-0.00543968 -16667,5601:225:1,-15,-62,0,0,-0.00543968 -16668,5601:124:2,-14.5,-62,0,0,-0.00543968 -16669,5601:124:1,-14,-62,0,0,-0.00543968 -16670,5601:123:2,-13.5,-62,0,0,-0.00544089 -16671,5601:123:1,-13,-62,0,0,-0.00544089 -16672,5601:122:2,-12.5,-62,0,0,-0.00544089 -16673,5601:122:1,-12,-62,0,0,-0.00544089 -16674,5601:121:2,-11.5,-62,0,0,-0.00544089 -16675,5601:121:1,-11,-62,0,0,-0.00543968 -16676,5601:120:2,-10.5,-62,0,0,-0.00543968 -16677,5601:120:1,-10,-62,0,0,-0.00543968 -16678,5600:229:2,-9.5,-62,0,0,-0.0054385 -16679,5600:229:1,-9,-62,0,0,-0.0054385 -16680,5600:228:2,-8.5,-62,0,0,-0.0054385 -16681,5600:228:1,-8,-62,0,0,-0.0054385 -16682,5600:227:2,-7.5,-62,0,0,-0.0054385 -16683,5600:227:1,-7,-62,0,0,-0.0054385 -16684,5600:226:2,-6.5,-62,0,0,-0.00543968 -16685,5600:226:1,-6,-62,0,0,-0.00543968 -16686,5600:225:2,-5.5,-62,0,0,-0.00544089 -16687,5600:225:1,-5,-62,0,0,-0.00543968 -16688,5600:124:2,-4.5,-62,0,0,-0.0054385 -16689,5600:124:1,-4,-62,0,0,-0.00543728 -16690,5600:123:2,-3.5,-62,0,0,-0.00543485 -16691,5600:123:1,-3,-62,0,0,-0.00543485 -16692,5600:122:2,-2.5,-62,0,0,-0.00543363 -16693,5600:122:1,-2,-62,0,0,-0.00543363 -16694,5600:121:2,-1.5,-62,0,0,-0.00543363 -16695,5600:121:1,-1,-62,0,0,-0.00543363 -16696,5600:120:2,-0.5,-62,0,0,-0.00543485 -16697,3600:120:2,0,-62,0,0,-0.00543485 -16698,3600:120:2,0.5,-62,0,0,-0.00543606 -16699,3600:121:1,1,-62,0,0,-0.00543606 -16700,3600:121:2,1.5,-62,0,0,-0.00543363 -16701,3600:122:1,2,-62,0,0,-0.00543245 -16702,3600:122:2,2.5,-62,0,0,-0.00543245 -16703,3600:123:1,3,-62,0,0,-0.00543363 -16704,3600:123:2,3.5,-62,0,0,-0.00543363 -16705,3600:124:1,4,-62,0,0,-0.00543245 -16706,3600:124:2,4.5,-62,0,0,-0.00543363 -16707,3600:225:1,5,-62,0,0,-0.00543728 -16708,3600:225:2,5.5,-62,0,0,-0.00543485 -16709,3600:226:1,6,-62,0,0,-0.00543245 -16710,3600:226:2,6.5,-62,0,0,-0.00543363 -16711,3600:227:1,7,-62,0,0,-0.00543485 -16712,3600:227:2,7.5,-62,0,0,-0.00543606 -16713,3600:228:1,8,-62,0,0,-0.00543728 -16714,3600:228:2,8.5,-62,0,0,-0.0054385 -16715,3600:229:1,9,-62,0,0,-0.00543968 -16716,3600:229:2,9.5,-62,0,0,-0.00543968 -16717,3601:120:1,10,-62,0,0,-0.00544089 -16718,3601:120:2,10.5,-62,0,0,-0.00544451 -16719,3601:121:1,11,-62,0,0,-0.00544695 -16720,3601:121:2,11.5,-62,0,0,-0.00544816 -16721,3601:122:1,12,-62,0,0,-0.00544816 -16722,3601:122:2,12.5,-62,0,0,-0.00544816 -16723,3601:123:1,13,-62,0,0,-0.00544816 -16724,3601:123:2,13.5,-62,0,0,-0.00544816 -16725,3601:124:1,14,-62,0,0,-0.00544695 -16726,3601:124:2,14.5,-62,0,0,-0.00544695 -16727,3601:225:1,15,-62,0,0,-0.00544695 -16728,3601:225:2,15.5,-62,0,0,-0.00544695 -16729,3601:226:1,16,-62,0,0,-0.00544695 -16730,3601:226:2,16.5,-62,0,0,-0.00544695 -16731,3601:227:1,17,-62,0,0,-0.00544573 -16732,3601:227:2,17.5,-62,0,0,-0.00544573 -16733,3601:228:1,18,-62,0,0,-0.00544573 -16734,3601:228:2,18.5,-62,0,0,-0.00544573 -16735,3601:229:1,19,-62,0,0,-0.00544573 -16736,3601:229:2,19.5,-62,0,0,-0.00544451 -16737,3602:120:1,20,-62,0,0,-0.00544451 -16738,3602:120:2,20.5,-62,0,0,-0.00544451 -16739,3602:121:1,21,-62,0,0,-0.00544573 -16740,3602:121:2,21.5,-62,0,0,-0.00544573 -16741,3602:122:1,22,-62,0,0,-0.00544695 -16742,3602:122:2,22.5,-62,0,0,-0.00544695 -16743,3602:123:1,23,-62,0,0,-0.00544695 -16744,3602:123:2,23.5,-62,0,0,-0.00544573 -16745,3602:124:1,24,-62,0,0,-0.00544573 -16746,3602:124:2,24.5,-62,0,0,-0.00544695 -16747,3602:225:1,25,-62,0,0,-0.00544695 -16748,3602:225:2,25.5,-62,0,0,-0.00544695 -16749,3602:226:1,26,-62,0,0,-0.00544695 -16750,3602:226:2,26.5,-62,0,0,-0.00544816 -16751,3602:227:1,27,-62,0,0,-0.00544695 -16752,3602:227:2,27.5,-62,0,0,-0.00544816 -16753,3602:228:1,28,-62,0,0,-0.00544935 -16754,3602:228:2,28.5,-62,0,0,-0.00545057 -16755,3602:229:1,29,-62,0,0,-0.00545179 -16756,3602:229:2,29.5,-62,0,0,-0.005453 -16757,3603:120:1,30,-62,0,0,-0.00545541 -16758,3603:120:2,30.5,-62,0,0,-0.00545663 -16759,3603:121:1,31,-62,0,0,-0.00545785 -16760,3603:121:2,31.5,-62,0,0,-0.00545907 -16761,3603:122:1,32,-62,0,0,-0.00545907 -16762,3603:122:2,32.5,-62,0,0,-0.00545785 -16763,3603:123:1,33,-62,0,0,-0.00546392 -16764,3603:123:2,33.5,-62,0,0,-0.00546511 -16765,3603:124:1,34,-62,0,0,-0.00546878 -16766,3603:124:2,34.5,-62,0,0,-0.00546878 -16767,3603:225:1,35,-62,0,0,-0.00546755 -16768,3603:225:2,35.5,-62,0,0,-0.0054627 -16769,3603:226:1,36,-62,0,0,-0.00545907 -16770,3603:226:2,36.5,-62,0,0,-0.00545907 -16771,3603:227:1,37,-62,0,0,-0.00546026 -16772,3603:227:2,37.5,-62,0,0,-0.00546148 -16773,3603:228:1,38,-62,0,0,-0.00546148 -16774,3603:228:2,38.5,-62,0,0,-0.00546148 -16775,3603:229:1,39,-62,0,0,-0.0054627 -16776,3603:229:2,39.5,-62,0,0,-0.0054627 -16777,3604:120:1,40,-62,0,0,-0.00546511 -16778,3604:120:2,40.5,-62,0,0,-0.00546392 -16779,3604:121:1,41,-62,0,0,-0.00546392 -16780,3604:121:2,41.5,-62,0,0,-0.00546392 -16781,3604:122:1,42,-62,0,0,-0.00546392 -16782,3604:122:2,42.5,-62,0,0,-0.00546392 -16783,3604:123:1,43,-62,0,0,-0.00546511 -16784,3604:123:2,43.5,-62,0,0,-0.00546633 -16785,3604:124:1,44,-62,0,0,-0.00546511 -16786,3604:124:2,44.5,-62,0,0,-0.00546511 -16787,3604:225:1,45,-62,0,0,-0.0054627 -16788,3604:225:2,45.5,-62,0,0,-0.00546148 -16789,3604:226:1,46,-62,0,0,-0.00546148 -16790,3604:226:2,46.5,-62,0,0,-0.00546511 -16791,3604:227:1,47,-62,0,0,-0.00575548 -16792,3604:227:2,47.5,-62,0,0,-0.00613596 -16793,3604:228:1,48,-62,0,0,-0.00625996 -16794,3604:229:2,49.5,-62,0,0,-0.00700715 -16795,3605:120:1,50,-62,0,0,-0.00686368 -16796,3605:227:2,57.5,-62,0,0,-0.00551147 -16797,3605:228:1,58,-62,0,0,-0.00551024 -16798,3605:228:2,58.5,-62,0,0,-0.005509 -16799,3605:229:1,59,-62,0,0,-0.00549434 -16800,3605:229:2,59.5,-62,0,0,-0.0054785 -16801,3606:120:1,60,-62,0,0,-0.00548091 -16802,3606:120:2,60.5,-62,0,0,-0.00550288 -16803,3606:121:1,61,-62,0,0,-0.00550165 -16804,3606:121:2,61.5,-62,0,0,-0.00550288 -16805,3606:122:1,62,-62,0,0,-0.00556682 -16806,3606:122:2,62.5,-62,0,0,-0.0055941 -16807,3606:123:1,63,-62,0,0,-0.00563277 -16808,3606:123:2,63.5,-62,0,0,-0.00577213 -16809,3606:124:1,64,-62,0,0,-0.00581981 -16810,3606:124:2,64.5,-62,0,0,-0.00576446 -16811,3606:225:1,65,-62,0,0,-0.00576575 -16812,3606:225:2,65.5,-62,0,0,-0.00569318 -16813,3606:226:1,66,-62,0,0,-0.0056843 -16814,3606:226:2,66.5,-62,0,0,-0.00562026 -16815,3606:227:1,67,-62,0,0,-0.00550658 -16816,3606:227:2,67.5,-62,0,0,-0.00547364 -16817,3606:228:1,68,-62,0,0,-0.00544211 -16818,3606:228:2,68.5,-62,0,0,-0.00544816 -16819,3606:229:1,69,-62,0,0,-0.00545541 -16820,3606:229:2,69.5,-62,0,0,-0.00545179 -16821,3607:120:1,70,-62,0,0,-0.00545907 -16822,3607:120:2,70.5,-62,0,0,-0.00547 -16823,3607:121:1,71,-62,0,0,-0.00547972 -16824,3607:121:2,71.5,-62,0,0,-0.00548824 -16825,3607:122:1,72,-62,0,0,-0.00547119 -16826,3607:122:2,72.5,-62,0,0,-0.00545785 -16827,3607:123:2,73.5,-62,0,0,-0.00547 -16828,3607:124:1,74,-62,0,0,-0.00550288 -16829,3607:124:2,74.5,-62,0,0,-0.00567045 -16830,3607:225:1,75,-62,0,0,-0.00589005 -16831,3607:225:2,75.5,-62,0,0,-0.00588745 -16832,3607:226:1,76,-62,0,0,-0.00588745 -16833,3607:226:2,76.5,-62,0,0,-0.00592025 -16834,3607:227:1,77,-62,0,0,-0.0059506 -16835,3607:227:2,77.5,-62,0,0,-0.00609245 -16836,3607:228:1,78,-62,0,0,-0.00614142 -16837,3607:228:2,78.5,-62,0,0,-0.00612914 -16838,3607:229:1,79,-62,0,0,-0.0061949 -16839,3607:229:2,79.5,-62,0,0,-0.00631024 -16840,3608:120:1,80,-62,0,0,-0.00644784 -16841,3608:120:2,80.5,-62,0,0,-0.00660162 -16842,3608:121:1,81,-62,0,0,-0.00694355 -16843,3608:121:2,81.5,-62,0,0,-0.00766299 -16844,3608:122:1,82,-62,0,0,-0.00850293 -16845,3608:122:2,82.5,-62,0,0,-0.00899216 -16846,3614:124:2,144.5,-62,0,0,-0.00667397 -16847,3614:225:1,145,-62,0,0,-0.00613184 -16848,3614:225:2,145.5,-62,0,0,-0.00609382 -16849,3614:226:1,146,-62,0,0,-0.00621696 -16850,3614:226:2,146.5,-62,0,0,-0.00557797 -16851,3614:227:1,147,-62,0,0,-0.00548091 -16852,3614:227:2,147.5,-62,0,0,-0.00547972 -16853,3614:228:1,148,-62,0,0,-0.00548214 -16854,3614:228:2,148.5,-62,0,0,-0.00547241 -16855,3614:229:1,149,-62,0,0,-0.00547241 -16856,3614:229:2,149.5,-62,0,0,-0.00547605 -16857,3615:120:1,150,-62,0,0,-0.00547364 -16858,3615:120:2,150.5,-62,0,0,-0.00547364 -16859,3615:121:1,151,-62,0,0,-0.00547486 -16860,3615:121:2,151.5,-62,0,0,-0.0054785 -16861,3615:122:1,152,-62,0,0,-0.00547727 -16862,3615:122:2,152.5,-62,0,0,-0.00547605 -16863,3615:123:1,153,-62,0,0,-0.00547486 -16864,3615:123:2,153.5,-62,0,0,-0.00547486 -16865,3615:124:1,154,-62,0,0,-0.00547486 -16866,3615:124:2,154.5,-62,0,0,-0.00547241 -16867,3615:225:1,155,-62,0,0,-0.00547241 -16868,3615:225:2,155.5,-62,0,0,-0.00547241 -16869,3615:226:1,156,-62,0,0,-0.00547 -16870,3615:226:2,156.5,-62,0,0,-0.00546511 -16871,3615:227:1,157,-62,0,0,-0.00546511 -16872,3615:227:2,157.5,-62,0,0,-0.00546148 -16873,3615:228:1,158,-62,0,0,-0.00546148 -16874,3615:228:2,158.5,-62,0,0,-0.0054627 -16875,3615:229:1,159,-62,0,0,-0.0054627 -16876,3615:229:2,159.5,-62,0,0,-0.00546392 -16877,3616:120:1,160,-62,0,0,-0.00546511 -16878,3616:120:2,160.5,-62,0,0,-0.00546392 -16879,3616:121:1,161,-62,0,0,-0.00546392 -16880,3616:121:2,161.5,-62,0,0,-0.00546392 -16881,3616:122:1,162,-62,0,0,-0.0054627 -16882,3616:122:2,162.5,-62,0,0,-0.00546392 -16883,3616:123:1,163,-62,0,0,-0.0054627 -16884,3616:123:2,163.5,-62,0,0,-0.00546755 -16885,3616:124:1,164,-62,0,0,-0.00546755 -16886,3616:124:2,164.5,-62,0,0,-0.00546633 -16887,3616:225:1,165,-62,0,0,-0.00546878 -16888,3616:225:2,165.5,-62,0,0,-0.00547 -16889,3616:226:1,166,-62,0,0,-0.00547 -16890,3616:226:2,166.5,-62,0,0,-0.00547 -16891,3616:227:1,167,-62,0,0,-0.00547 -16892,3616:227:2,167.5,-62,0,0,-0.00546878 -16893,3616:228:1,168,-62,0,0,-0.00546878 -16894,3616:228:2,168.5,-62,0,0,-0.00546755 -16895,3616:229:1,169,-62,0,0,-0.00546755 -16896,3616:229:2,169.5,-62,0,0,-0.00546633 -16897,3617:120:1,170,-62,0,0,-0.00546633 -16898,3617:120:2,170.5,-62,0,0,-0.00546633 -16899,3617:121:1,171,-62,0,0,-0.00546755 -16900,3617:121:2,171.5,-62,0,0,-0.00546755 -16901,3617:122:1,172,-62,0,0,-0.00546878 -16902,3617:122:2,172.5,-62,0,0,-0.00546878 -16903,3617:123:1,173,-62,0,0,-0.00546878 -16904,3617:123:2,173.5,-62,0,0,-0.00546878 -16905,3617:124:1,174,-62,0,0,-0.00546878 -16906,3617:124:2,174.5,-62,0,0,-0.00546878 -16907,3617:225:1,175,-62,0,0,-0.00546755 -16908,3617:225:2,175.5,-62,0,0,-0.00546755 -16909,3617:226:1,176,-62,0,0,-0.00546633 -16910,3617:226:2,176.5,-62,0,0,-0.00546633 -16911,3617:227:1,177,-62,0,0,-0.00546633 -16912,3617:227:2,177.5,-62,0,0,-0.00546878 -16913,3617:228:1,178,-62,0,0,-0.00547 -16914,3617:228:2,178.5,-62,0,0,-0.00547 -16915,3617:229:1,179,-62,0,0,-0.00547 -16916,3617:229:2,179.5,-62,0,0,-0.00546878 -16917,3618:120:1,180,-62,0,0,-0.00546878 -16918,5618:110:3,-180,-61.5,0,0,-0.00547 -16919,5617:219:4,-179.5,-61.5,0,0,-0.00547 -16920,5617:219:3,-179,-61.5,0,0,-0.00547119 -16921,5617:218:4,-178.5,-61.5,0,0,-0.00547241 -16922,5617:218:3,-178,-61.5,0,0,-0.00547727 -16923,5617:217:4,-177.5,-61.5,0,0,-0.00549312 -16924,5617:217:3,-177,-61.5,0,0,-0.00552003 -16925,5617:216:4,-176.5,-61.5,0,0,-0.0055225 -16926,5617:216:3,-176,-61.5,0,0,-0.00550534 -16927,5617:215:4,-175.5,-61.5,0,0,-0.00548582 -16928,5617:215:3,-175,-61.5,0,0,-0.00547972 -16929,5617:114:4,-174.5,-61.5,0,0,-0.00547605 -16930,5617:114:3,-174,-61.5,0,0,-0.00547364 -16931,5617:113:4,-173.5,-61.5,0,0,-0.00547241 -16932,5617:113:3,-173,-61.5,0,0,-0.00547119 -16933,5617:112:4,-172.5,-61.5,0,0,-0.00547 -16934,5617:112:3,-172,-61.5,0,0,-0.00546878 -16935,5617:111:4,-171.5,-61.5,0,0,-0.00546755 -16936,5617:111:3,-171,-61.5,0,0,-0.00546633 -16937,5617:110:4,-170.5,-61.5,0,0,-0.00546633 -16938,5617:110:3,-170,-61.5,0,0,-0.00546511 -16939,5616:219:4,-169.5,-61.5,0,0,-0.00546392 -16940,5616:219:3,-169,-61.5,0,0,-0.00546392 -16941,5616:218:4,-168.5,-61.5,0,0,-0.00546392 -16942,5616:218:3,-168,-61.5,0,0,-0.0054627 -16943,5616:217:4,-167.5,-61.5,0,0,-0.0054627 -16944,5616:217:3,-167,-61.5,0,0,-0.0054627 -16945,5616:216:4,-166.5,-61.5,0,0,-0.0054627 -16946,5616:216:3,-166,-61.5,0,0,-0.0054627 -16947,5616:215:4,-165.5,-61.5,0,0,-0.00546392 -16948,5616:215:3,-165,-61.5,0,0,-0.00546392 -16949,5616:114:4,-164.5,-61.5,0,0,-0.00546511 -16950,5616:114:3,-164,-61.5,0,0,-0.00546511 -16951,5616:113:4,-163.5,-61.5,0,0,-0.00546633 -16952,5616:113:3,-163,-61.5,0,0,-0.00546755 -16953,5616:112:4,-162.5,-61.5,0,0,-0.00546878 -16954,5616:112:3,-162,-61.5,0,0,-0.00547 -16955,5616:111:4,-161.5,-61.5,0,0,-0.00547119 -16956,5616:111:3,-161,-61.5,0,0,-0.00547119 -16957,5616:110:4,-160.5,-61.5,0,0,-0.00547119 -16958,5616:110:3,-160,-61.5,0,0,-0.00547241 -16959,5615:219:4,-159.5,-61.5,0,0,-0.00547364 -16960,5615:219:3,-159,-61.5,0,0,-0.00547486 -16961,5615:218:4,-158.5,-61.5,0,0,-0.00547605 -16962,5615:218:3,-158,-61.5,0,0,-0.00547605 -16963,5615:217:4,-157.5,-61.5,0,0,-0.00547605 -16964,5615:217:3,-157,-61.5,0,0,-0.00547727 -16965,5615:216:4,-156.5,-61.5,0,0,-0.00547727 -16966,5615:216:3,-156,-61.5,0,0,-0.00547727 -16967,5615:215:4,-155.5,-61.5,0,0,-0.0054785 -16968,5615:215:3,-155,-61.5,0,0,-0.00547972 -16969,5615:114:4,-154.5,-61.5,0,0,-0.00548091 -16970,5615:114:3,-154,-61.5,0,0,-0.00548337 -16971,5615:113:4,-153.5,-61.5,0,0,-0.00548459 -16972,5615:113:3,-153,-61.5,0,0,-0.00548582 -16973,5615:112:4,-152.5,-61.5,0,0,-0.00548459 -16974,5615:112:3,-152,-61.5,0,0,-0.00548459 -16975,5615:111:4,-151.5,-61.5,0,0,-0.00548459 -16976,5615:111:3,-151,-61.5,0,0,-0.00548459 -16977,5615:110:4,-150.5,-61.5,0,0,-0.00548701 -16978,5615:110:3,-150,-61.5,0,0,-0.00548824 -16979,5614:219:4,-149.5,-61.5,0,0,-0.00549069 -16980,5614:219:3,-149,-61.5,0,0,-0.00549189 -16981,5614:218:4,-148.5,-61.5,0,0,-0.00549189 -16982,5614:218:3,-148,-61.5,0,0,-0.00549312 -16983,5614:217:4,-147.5,-61.5,0,0,-0.00549312 -16984,5614:217:3,-147,-61.5,0,0,-0.00549312 -16985,5614:216:4,-146.5,-61.5,0,0,-0.00549434 -16986,5614:216:3,-146,-61.5,0,0,-0.005498 -16987,5614:215:4,-145.5,-61.5,0,0,-0.00554708 -16988,5614:215:3,-145,-61.5,0,0,-0.00556682 -16989,5614:114:4,-144.5,-61.5,0,0,-0.00556188 -16990,5614:114:3,-144,-61.5,0,0,-0.00561154 -16991,5614:113:4,-143.5,-61.5,0,0,-0.00571092 -16992,5614:113:3,-143,-61.5,0,0,-0.00582237 -16993,5614:112:4,-142.5,-61.5,0,0,-0.00592684 -16994,5614:112:3,-142,-61.5,0,0,-0.00601574 -16995,5614:111:4,-141.5,-61.5,0,0,-0.00611689 -16996,5614:111:3,-141,-61.5,0,0,-0.00624605 -16997,5614:110:4,-140.5,-61.5,0,0,-0.00650255 -16998,5614:110:3,-140,-61.5,0,0,-0.00646936 -16999,5613:219:4,-139.5,-61.5,0,0,-0.00624605 -17000,5613:219:3,-139,-61.5,0,0,-0.00621835 -17001,5613:218:4,-138.5,-61.5,0,0,-0.00645642 -17002,5613:218:3,-138,-61.5,0,0,-0.00680739 -17003,5613:217:4,-137.5,-61.5,0,0,-0.00696829 -17004,5613:217:3,-137,-61.5,0,0,-0.00709818 -17005,5613:216:4,-136.5,-61.5,0,0,-0.00711875 -17006,5613:216:3,-136,-61.5,0,0,-0.00700092 -17007,5613:215:4,-135.5,-61.5,0,0,-0.00691579 -17008,5613:215:3,-135,-61.5,0,0,-0.00709973 -17009,5613:114:4,-134.5,-61.5,0,0,-0.00750594 -17010,5613:114:3,-134,-61.5,0,0,-0.00769544 -17011,5613:113:4,-133.5,-61.5,0,0,-0.00769377 -17012,5613:113:3,-133,-61.5,0,0,-0.00763742 -17013,5613:112:4,-132.5,-61.5,0,0,-0.00751431 -17014,5613:112:3,-132,-61.5,0,0,-0.00716321 -17015,5613:111:4,-131.5,-61.5,0,0,-0.00648092 -17016,5613:111:3,-131,-61.5,0,0,-0.00634118 -17017,5613:110:4,-130.5,-61.5,0,0,-0.00656939 -17018,5613:110:3,-130,-61.5,0,0,-0.00692039 -17019,5612:219:4,-129.5,-61.5,0,0,-0.00746262 -17020,5612:219:3,-129,-61.5,0,0,-0.00766809 -17021,5612:218:4,-128.5,-61.5,0,0,-0.00735873 -17022,5612:218:3,-128,-61.5,0,0,-0.00694355 -17023,5612:217:4,-127.5,-61.5,0,0,-0.00681197 -17024,5612:217:3,-127,-61.5,0,0,-0.00689736 -17025,5612:216:4,-126.5,-61.5,0,0,-0.00701805 -17026,5612:216:3,-126,-61.5,0,0,-0.00702745 -17027,5612:215:4,-125.5,-61.5,0,0,-0.00691269 -17028,5612:215:3,-125,-61.5,0,0,-0.00676515 -17029,5612:114:4,-124.5,-61.5,0,0,-0.00666505 -17030,5612:114:3,-124,-61.5,0,0,-0.00664437 -17031,5612:113:4,-123.5,-61.5,0,0,-0.00668141 -17032,5612:113:3,-123,-61.5,0,0,-0.00675161 -17033,5612:112:4,-122.5,-61.5,0,0,-0.00682104 -17034,5612:112:3,-122,-61.5,0,0,-0.00681044 -17035,5612:111:4,-121.5,-61.5,0,0,-0.0067501 -17036,5612:111:3,-121,-61.5,0,0,-0.00672016 -17037,5612:110:4,-120.5,-61.5,0,0,-0.00675459 -17038,5612:110:3,-120,-61.5,0,0,-0.00689581 -17039,5611:219:4,-119.5,-61.5,0,0,-0.00721599 -17040,5611:219:3,-119,-61.5,0,0,-0.0075529 -17041,5611:218:4,-118.5,-61.5,0,0,-0.00794799 -17042,5611:218:3,-118,-61.5,0,0,-0.00802447 -17043,5611:217:4,-117.5,-61.5,0,0,-0.00747262 -17044,5611:217:3,-117,-61.5,0,0,-0.0072935 -17045,5611:216:4,-116.5,-61.5,0,0,-0.00763576 -17046,5611:216:3,-116,-61.5,0,0,-0.00830082 -17047,5611:215:4,-115.5,-61.5,0,0,-0.00836951 -17048,5611:215:3,-115,-61.5,0,0,-0.00814875 -17049,5611:114:4,-114.5,-61.5,0,0,-0.00789856 -17050,5611:114:3,-114,-61.5,0,0,-0.00771607 -17051,5611:113:4,-113.5,-61.5,0,0,-0.00769889 -17052,5611:113:3,-113,-61.5,0,0,-0.00784598 -17053,5611:112:4,-112.5,-61.5,0,0,-0.00788976 -17054,5611:112:3,-112,-61.5,0,0,-0.00766127 -17055,5611:111:4,-111.5,-61.5,0,0,-0.0073293 -17056,5611:111:3,-111,-61.5,0,0,-0.00707922 -17057,5611:110:4,-110.5,-61.5,0,0,-0.00700249 -17058,5611:110:3,-110,-61.5,0,0,-0.00700092 -17059,5610:219:4,-109.5,-61.5,0,0,-0.00696054 -17060,5610:219:3,-109,-61.5,0,0,-0.00688505 -17061,5610:218:4,-108.5,-61.5,0,0,-0.00682711 -17062,5610:218:3,-108,-61.5,0,0,-0.00682864 -17063,5610:217:4,-107.5,-61.5,0,0,-0.00692349 -17064,5610:217:3,-107,-61.5,0,0,-0.0071712 -17065,5610:216:4,-106.5,-61.5,0,0,-0.00797456 -17066,5610:216:3,-106,-61.5,0,0,-0.00799236 -17067,5610:215:4,-105.5,-61.5,0,0,-0.0072984 -17068,5610:215:3,-105,-61.5,0,0,-0.00707768 -17069,5610:114:4,-104.5,-61.5,0,0,-0.00701181 -17070,5610:114:3,-104,-61.5,0,0,-0.00695591 -17071,5610:113:4,-103.5,-61.5,0,0,-0.0069035 -17072,5610:113:3,-103,-61.5,0,0,-0.00685451 -17073,5610:112:4,-102.5,-61.5,0,0,-0.00679682 -17074,5610:112:3,-102,-61.5,0,0,-0.00673811 -17075,5610:111:4,-101.5,-61.5,0,0,-0.00670221 -17076,5610:111:3,-101,-61.5,0,0,-0.00666361 -17077,5610:110:4,-100.5,-61.5,0,0,-0.00633276 -17078,5610:110:3,-100,-61.5,0,0,-0.00581981 -17079,5609:219:4,-99.5,-61.5,0,0,-0.00571472 -17080,5609:219:3,-99,-61.5,0,0,-0.00572997 -17081,5609:218:4,-98.5,-61.5,0,0,-0.00574273 -17082,5609:218:3,-98,-61.5,0,0,-0.00553232 -17083,5609:217:4,-97.5,-61.5,0,0,-0.00548214 -17084,5609:217:3,-97,-61.5,0,0,-0.00549312 -17085,5609:216:4,-96.5,-61.5,0,0,-0.00552494 -17086,5609:216:3,-96,-61.5,0,0,-0.0055225 -17087,5609:215:4,-95.5,-61.5,0,0,-0.00549434 -17088,5609:215:3,-95,-61.5,0,0,-0.00553724 -17089,5609:114:4,-94.5,-61.5,0,0,-0.00561778 -17090,5609:114:3,-94,-61.5,0,0,-0.00561029 -17091,5609:113:4,-93.5,-61.5,0,0,-0.00561778 -17092,5609:113:3,-93,-61.5,0,0,-0.0055941 -17093,5609:112:4,-92.5,-61.5,0,0,-0.005536 -17094,5609:112:3,-92,-61.5,0,0,-0.00551024 -17095,5609:111:4,-91.5,-61.5,0,0,-0.0055139 -17096,5609:111:3,-91,-61.5,0,0,-0.00551756 -17097,5609:110:4,-90.5,-61.5,0,0,-0.00551637 -17098,5609:110:3,-90,-61.5,0,0,-0.00551147 -17099,5608:219:4,-89.5,-61.5,0,0,-0.00550534 -17100,5608:219:3,-89,-61.5,0,0,-0.00550534 -17101,5608:218:4,-88.5,-61.5,0,0,-0.00552741 -17102,5608:218:3,-88,-61.5,0,0,-0.005619 -17103,5608:217:4,-87.5,-61.5,0,0,-0.00592817 -17104,5608:217:3,-87,-61.5,0,0,-0.00609109 -17105,5608:216:4,-86.5,-61.5,0,0,-0.00600775 -17106,5608:216:3,-86,-61.5,0,0,-0.00580302 -17107,5608:215:4,-85.5,-61.5,0,0,-0.00561778 -17108,5608:215:3,-85,-61.5,0,0,-0.00555325 -17109,5608:114:4,-84.5,-61.5,0,0,-0.00555201 -17110,5608:114:3,-84,-61.5,0,0,-0.00556064 -17111,5608:113:4,-83.5,-61.5,0,0,-0.00556188 -17112,5608:113:3,-83,-61.5,0,0,-0.00557672 -17113,5608:112:4,-82.5,-61.5,0,0,-0.00564405 -17114,5608:112:3,-82,-61.5,0,0,-0.0056919 -17115,5608:111:4,-81.5,-61.5,0,0,-0.00574912 -17116,5608:111:3,-81,-61.5,0,0,-0.00573254 -17117,5608:110:4,-80.5,-61.5,0,0,-0.00568936 -17118,5608:110:3,-80,-61.5,0,0,-0.00567926 -17119,5607:219:4,-79.5,-61.5,0,0,-0.00568936 -17120,5607:219:3,-79,-61.5,0,0,-0.0057033 -17121,5607:218:4,-78.5,-61.5,0,0,-0.00570837 -17122,5607:218:3,-78,-61.5,0,0,-0.0057236 -17123,5607:217:4,-77.5,-61.5,0,0,-0.00576317 -17124,5607:217:3,-77,-61.5,0,0,-0.00577213 -17125,5607:216:4,-76.5,-61.5,0,0,-0.00567548 -17126,5607:216:3,-76,-61.5,0,0,-0.00567421 -17127,5607:215:4,-75.5,-61.5,0,0,-0.0056919 -17128,5607:215:3,-75,-61.5,0,0,-0.00576188 -17129,5607:114:4,-74.5,-61.5,0,0,-0.00584314 -17130,5607:114:3,-74,-61.5,0,0,-0.00592945 -17131,5607:113:4,-73.5,-61.5,0,0,-0.0061264 -17132,5607:113:3,-73,-61.5,0,0,-0.00613729 -17133,5607:112:4,-72.5,-61.5,0,0,-0.00598241 -17134,5607:112:3,-72,-61.5,0,0,-0.00586394 -17135,5607:111:4,-71.5,-61.5,0,0,-0.00591106 -17136,5607:111:3,-71,-61.5,0,0,-0.00588873 -17137,5607:110:4,-70.5,-61.5,0,0,-0.0058496 -17138,5607:110:3,-70,-61.5,0,0,-0.00576446 -17139,5606:219:4,-69.5,-61.5,0,0,-0.0057236 -17140,5606:219:3,-69,-61.5,0,0,-0.00567803 -17141,5606:218:4,-68.5,-61.5,0,0,-0.00583922 -17142,5606:217:3,-67,-61.5,0,0,-0.00631448 -17143,5606:216:4,-66.5,-61.5,0,0,-0.0074444 -17144,5606:110:4,-60.5,-61.5,0,0,-0.00640497 -17145,5606:110:3,-60,-61.5,0,0,-0.00618251 -17146,5605:219:4,-59.5,-61.5,0,0,-0.00567675 -17147,5605:219:3,-59,-61.5,0,0,-0.005498 -17148,5605:218:4,-58.5,-61.5,0,0,-0.00549434 -17149,5605:218:3,-58,-61.5,0,0,-0.00549069 -17150,5605:217:4,-57.5,-61.5,0,0,-0.00549557 -17151,5605:217:3,-57,-61.5,0,0,-0.00549923 -17152,5605:216:4,-56.5,-61.5,0,0,-0.00549557 -17153,5605:216:3,-56,-61.5,0,0,-0.00548824 -17154,5605:215:4,-55.5,-61.5,0,0,-0.00547364 -17155,5605:215:3,-55,-61.5,0,0,-0.00546878 -17156,5605:114:4,-54.5,-61.5,0,0,-0.00546878 -17157,5605:114:3,-54,-61.5,0,0,-0.00547 -17158,5605:113:4,-53.5,-61.5,0,0,-0.00546878 -17159,5605:113:3,-53,-61.5,0,0,-0.00546755 -17160,5605:112:4,-52.5,-61.5,0,0,-0.00546511 -17161,5605:112:3,-52,-61.5,0,0,-0.00546392 -17162,5605:111:4,-51.5,-61.5,0,0,-0.0054627 -17163,5605:111:3,-51,-61.5,0,0,-0.00546148 -17164,5605:110:4,-50.5,-61.5,0,0,-0.00546148 -17165,5605:110:3,-50,-61.5,0,0,-0.00546026 -17166,5604:219:4,-49.5,-61.5,0,0,-0.00545907 -17167,5604:219:3,-49,-61.5,0,0,-0.00545907 -17168,5604:218:4,-48.5,-61.5,0,0,-0.00545907 -17169,5604:218:3,-48,-61.5,0,0,-0.00545785 -17170,5604:217:4,-47.5,-61.5,0,0,-0.00545785 -17171,5604:217:3,-47,-61.5,0,0,-0.00545663 -17172,5604:216:4,-46.5,-61.5,0,0,-0.00545663 -17173,5604:216:3,-46,-61.5,0,0,-0.00545663 -17174,5604:215:4,-45.5,-61.5,0,0,-0.00545663 -17175,5604:215:3,-45,-61.5,0,0,-0.00545663 -17176,5604:114:4,-44.5,-61.5,0,0,-0.00545663 -17177,5604:114:3,-44,-61.5,0,0,-0.00545785 -17178,5604:113:4,-43.5,-61.5,0,0,-0.00545785 -17179,5604:113:3,-43,-61.5,0,0,-0.00545785 -17180,5604:112:4,-42.5,-61.5,0,0,-0.00545785 -17181,5604:112:3,-42,-61.5,0,0,-0.00545785 -17182,5604:111:4,-41.5,-61.5,0,0,-0.00545663 -17183,5604:111:3,-41,-61.5,0,0,-0.00545663 -17184,5604:110:4,-40.5,-61.5,0,0,-0.00545663 -17185,5604:110:3,-40,-61.5,0,0,-0.00545663 -17186,5603:219:4,-39.5,-61.5,0,0,-0.00545663 -17187,5603:219:3,-39,-61.5,0,0,-0.00545663 -17188,5603:218:4,-38.5,-61.5,0,0,-0.00545663 -17189,5603:218:3,-38,-61.5,0,0,-0.00545663 -17190,5603:217:4,-37.5,-61.5,0,0,-0.00545541 -17191,5603:217:3,-37,-61.5,0,0,-0.00545541 -17192,5603:216:4,-36.5,-61.5,0,0,-0.00545541 -17193,5603:216:3,-36,-61.5,0,0,-0.00545541 -17194,5603:215:4,-35.5,-61.5,0,0,-0.00545541 -17195,5603:215:3,-35,-61.5,0,0,-0.00545541 -17196,5603:114:4,-34.5,-61.5,0,0,-0.00545541 -17197,5603:114:3,-34,-61.5,0,0,-0.00545541 -17198,5603:113:4,-33.5,-61.5,0,0,-0.00545541 -17199,5603:113:3,-33,-61.5,0,0,-0.00545663 -17200,5603:112:4,-32.5,-61.5,0,0,-0.00545663 -17201,5603:112:3,-32,-61.5,0,0,-0.00545663 -17202,5603:111:4,-31.5,-61.5,0,0,-0.00545663 -17203,5603:111:3,-31,-61.5,0,0,-0.00545663 -17204,5603:110:4,-30.5,-61.5,0,0,-0.00545663 -17205,5603:110:3,-30,-61.5,0,0,-0.00545663 -17206,5602:219:4,-29.5,-61.5,0,0,-0.00545663 -17207,5602:219:3,-29,-61.5,0,0,-0.00545663 -17208,5602:218:4,-28.5,-61.5,0,0,-0.00545663 -17209,5602:218:3,-28,-61.5,0,0,-0.00545663 -17210,5602:217:4,-27.5,-61.5,0,0,-0.00545663 -17211,5602:217:3,-27,-61.5,0,0,-0.00545541 -17212,5602:216:4,-26.5,-61.5,0,0,-0.00545541 -17213,5602:216:3,-26,-61.5,0,0,-0.00545541 -17214,5602:215:4,-25.5,-61.5,0,0,-0.00545541 -17215,5602:215:3,-25,-61.5,0,0,-0.00545541 -17216,5602:114:4,-24.5,-61.5,0,0,-0.00545541 -17217,5602:114:3,-24,-61.5,0,0,-0.00545541 -17218,5602:113:4,-23.5,-61.5,0,0,-0.00545423 -17219,5602:113:3,-23,-61.5,0,0,-0.00545423 -17220,5602:112:4,-22.5,-61.5,0,0,-0.005453 -17221,5602:112:3,-22,-61.5,0,0,-0.005453 -17222,5602:111:4,-21.5,-61.5,0,0,-0.00545179 -17223,5602:111:3,-21,-61.5,0,0,-0.00545057 -17224,5602:110:4,-20.5,-61.5,0,0,-0.00544935 -17225,5602:110:3,-20,-61.5,0,0,-0.00544935 -17226,5601:219:4,-19.5,-61.5,0,0,-0.00544816 -17227,5601:219:3,-19,-61.5,0,0,-0.00544816 -17228,5601:218:4,-18.5,-61.5,0,0,-0.00544695 -17229,5601:218:3,-18,-61.5,0,0,-0.00544573 -17230,5601:217:4,-17.5,-61.5,0,0,-0.00544451 -17231,5601:217:3,-17,-61.5,0,0,-0.00544211 -17232,5601:216:4,-16.5,-61.5,0,0,-0.00544089 -17233,5601:216:3,-16,-61.5,0,0,-0.00543968 -17234,5601:215:4,-15.5,-61.5,0,0,-0.0054385 -17235,5601:215:3,-15,-61.5,0,0,-0.0054385 -17236,5601:114:4,-14.5,-61.5,0,0,-0.0054385 -17237,5601:114:3,-14,-61.5,0,0,-0.00543968 -17238,5601:113:4,-13.5,-61.5,0,0,-0.00543968 -17239,5601:113:3,-13,-61.5,0,0,-0.00543968 -17240,5601:112:4,-12.5,-61.5,0,0,-0.00543968 -17241,5601:112:3,-12,-61.5,0,0,-0.00543968 -17242,5601:111:4,-11.5,-61.5,0,0,-0.00543968 -17243,5601:111:3,-11,-61.5,0,0,-0.0054385 -17244,5601:110:4,-10.5,-61.5,0,0,-0.0054385 -17245,5601:110:3,-10,-61.5,0,0,-0.0054385 -17246,5600:219:4,-9.5,-61.5,0,0,-0.0054385 -17247,5600:219:3,-9,-61.5,0,0,-0.0054385 -17248,5600:218:4,-8.5,-61.5,0,0,-0.0054385 -17249,5600:218:3,-8,-61.5,0,0,-0.0054385 -17250,5600:217:4,-7.5,-61.5,0,0,-0.0054385 -17251,5600:217:3,-7,-61.5,0,0,-0.0054385 -17252,5600:216:4,-6.5,-61.5,0,0,-0.0054385 -17253,5600:216:3,-6,-61.5,0,0,-0.00543968 -17254,5600:215:4,-5.5,-61.5,0,0,-0.00544089 -17255,5600:215:3,-5,-61.5,0,0,-0.00544089 -17256,5600:114:4,-4.5,-61.5,0,0,-0.00544089 -17257,5600:114:3,-4,-61.5,0,0,-0.00543968 -17258,5600:113:4,-3.5,-61.5,0,0,-0.0054385 -17259,5600:113:3,-3,-61.5,0,0,-0.00543728 -17260,5600:112:4,-2.5,-61.5,0,0,-0.00543728 -17261,5600:112:3,-2,-61.5,0,0,-0.00543728 -17262,5600:111:4,-1.5,-61.5,0,0,-0.00543606 -17263,5600:111:3,-1,-61.5,0,0,-0.00543728 -17264,5600:110:4,-0.5,-61.5,0,0,-0.00543728 -17265,3600:110:4,0,-61.5,0,0,-0.00543728 -17266,3600:110:4,0.5,-61.5,0,0,-0.00543728 -17267,3600:111:3,1,-61.5,0,0,-0.00543728 -17268,3600:111:4,1.5,-61.5,0,0,-0.00543485 -17269,3600:112:3,2,-61.5,0,0,-0.00543485 -17270,3600:112:4,2.5,-61.5,0,0,-0.00543485 -17271,3600:113:3,3,-61.5,0,0,-0.00543485 -17272,3600:113:4,3.5,-61.5,0,0,-0.00543485 -17273,3600:114:3,4,-61.5,0,0,-0.00543363 -17274,3600:114:4,4.5,-61.5,0,0,-0.00543728 -17275,3600:215:3,5,-61.5,0,0,-0.00543968 -17276,3600:215:4,5.5,-61.5,0,0,-0.00543606 -17277,3600:216:3,6,-61.5,0,0,-0.00543363 -17278,3600:216:4,6.5,-61.5,0,0,-0.00543485 -17279,3600:217:3,7,-61.5,0,0,-0.00543485 -17280,3600:217:4,7.5,-61.5,0,0,-0.00543485 -17281,3600:218:3,8,-61.5,0,0,-0.00543606 -17282,3600:218:4,8.5,-61.5,0,0,-0.00543728 -17283,3600:219:3,9,-61.5,0,0,-0.00543968 -17284,3600:219:4,9.5,-61.5,0,0,-0.00544089 -17285,3601:110:3,10,-61.5,0,0,-0.00544089 -17286,3601:110:4,10.5,-61.5,0,0,-0.00544211 -17287,3601:111:3,11,-61.5,0,0,-0.00544333 -17288,3601:111:4,11.5,-61.5,0,0,-0.00544451 -17289,3601:112:3,12,-61.5,0,0,-0.00544451 -17290,3601:112:4,12.5,-61.5,0,0,-0.00544451 -17291,3601:113:3,13,-61.5,0,0,-0.00544451 -17292,3601:113:4,13.5,-61.5,0,0,-0.00544451 -17293,3601:114:3,14,-61.5,0,0,-0.00544451 -17294,3601:114:4,14.5,-61.5,0,0,-0.00544451 -17295,3601:215:3,15,-61.5,0,0,-0.00544451 -17296,3601:215:4,15.5,-61.5,0,0,-0.00544573 -17297,3601:216:3,16,-61.5,0,0,-0.00544573 -17298,3601:216:4,16.5,-61.5,0,0,-0.00544573 -17299,3601:217:3,17,-61.5,0,0,-0.00544451 -17300,3601:217:4,17.5,-61.5,0,0,-0.00544333 -17301,3601:218:3,18,-61.5,0,0,-0.00544333 -17302,3601:218:4,18.5,-61.5,0,0,-0.00544333 -17303,3601:219:3,19,-61.5,0,0,-0.00544333 -17304,3601:219:4,19.5,-61.5,0,0,-0.00544089 -17305,3602:110:3,20,-61.5,0,0,-0.00544211 -17306,3602:110:4,20.5,-61.5,0,0,-0.00544333 -17307,3602:111:3,21,-61.5,0,0,-0.00544333 -17308,3602:111:4,21.5,-61.5,0,0,-0.00544451 -17309,3602:112:3,22,-61.5,0,0,-0.00544451 -17310,3602:112:4,22.5,-61.5,0,0,-0.00544451 -17311,3602:113:3,23,-61.5,0,0,-0.00544451 -17312,3602:113:4,23.5,-61.5,0,0,-0.00544573 -17313,3602:114:3,24,-61.5,0,0,-0.00544573 -17314,3602:114:4,24.5,-61.5,0,0,-0.00544695 -17315,3602:215:3,25,-61.5,0,0,-0.00544695 -17316,3602:215:4,25.5,-61.5,0,0,-0.00544573 -17317,3602:216:3,26,-61.5,0,0,-0.00544573 -17318,3602:216:4,26.5,-61.5,0,0,-0.00544451 -17319,3602:217:3,27,-61.5,0,0,-0.00544451 -17320,3602:217:4,27.5,-61.5,0,0,-0.00544695 -17321,3602:218:3,28,-61.5,0,0,-0.00544816 -17322,3602:218:4,28.5,-61.5,0,0,-0.00544816 -17323,3602:219:3,29,-61.5,0,0,-0.00544935 -17324,3602:219:4,29.5,-61.5,0,0,-0.00545179 -17325,3603:110:3,30,-61.5,0,0,-0.00545179 -17326,3603:110:4,30.5,-61.5,0,0,-0.00545541 -17327,3603:111:3,31,-61.5,0,0,-0.00545663 -17328,3603:111:4,31.5,-61.5,0,0,-0.00545663 -17329,3603:112:3,32,-61.5,0,0,-0.00545785 -17330,3603:112:4,32.5,-61.5,0,0,-0.00545785 -17331,3603:113:3,33,-61.5,0,0,-0.00545907 -17332,3603:113:4,33.5,-61.5,0,0,-0.00546148 -17333,3603:114:3,34,-61.5,0,0,-0.00546511 -17334,3603:114:4,34.5,-61.5,0,0,-0.00546511 -17335,3603:215:3,35,-61.5,0,0,-0.00546392 -17336,3603:215:4,35.5,-61.5,0,0,-0.00545785 -17337,3603:216:3,36,-61.5,0,0,-0.00545907 -17338,3603:216:4,36.5,-61.5,0,0,-0.00545785 -17339,3603:217:3,37,-61.5,0,0,-0.00546026 -17340,3603:217:4,37.5,-61.5,0,0,-0.00546026 -17341,3603:218:3,38,-61.5,0,0,-0.00545907 -17342,3603:218:4,38.5,-61.5,0,0,-0.00545907 -17343,3603:219:3,39,-61.5,0,0,-0.00545907 -17344,3603:219:4,39.5,-61.5,0,0,-0.00545907 -17345,3604:110:3,40,-61.5,0,0,-0.00546026 -17346,3604:110:4,40.5,-61.5,0,0,-0.00546148 -17347,3604:111:3,41,-61.5,0,0,-0.00546392 -17348,3604:111:4,41.5,-61.5,0,0,-0.00546148 -17349,3604:112:3,42,-61.5,0,0,-0.00546148 -17350,3604:112:4,42.5,-61.5,0,0,-0.0054627 -17351,3604:113:3,43,-61.5,0,0,-0.00546148 -17352,3604:113:4,43.5,-61.5,0,0,-0.0054627 -17353,3604:114:3,44,-61.5,0,0,-0.00546392 -17354,3604:114:4,44.5,-61.5,0,0,-0.00546392 -17355,3604:215:3,45,-61.5,0,0,-0.00546511 -17356,3604:215:4,45.5,-61.5,0,0,-0.0054627 -17357,3604:216:3,46,-61.5,0,0,-0.00546026 -17358,3604:216:4,46.5,-61.5,0,0,-0.00546148 -17359,3604:217:3,47,-61.5,0,0,-0.00547119 -17360,3604:217:4,47.5,-61.5,0,0,-0.00549557 -17361,3604:218:3,48,-61.5,0,0,-0.00546392 -17362,3604:218:4,48.5,-61.5,0,0,-0.00561778 -17363,3604:219:3,49,-61.5,0,0,-0.00625996 -17364,3604:219:4,49.5,-61.5,0,0,-0.00606137 -17365,3605:217:3,57,-61.5,0,0,-0.00552003 -17366,3605:217:4,57.5,-61.5,0,0,-0.0055237 -17367,3605:218:3,58,-61.5,0,0,-0.00552003 -17368,3605:218:4,58.5,-61.5,0,0,-0.00549923 -17369,3605:219:3,59,-61.5,0,0,-0.00547972 -17370,3605:219:4,59.5,-61.5,0,0,-0.0054785 -17371,3606:110:3,60,-61.5,0,0,-0.0054785 -17372,3606:110:4,60.5,-61.5,0,0,-0.00547241 -17373,3606:111:3,61,-61.5,0,0,-0.00546511 -17374,3606:111:4,61.5,-61.5,0,0,-0.00547 -17375,3606:112:3,62,-61.5,0,0,-0.00549434 -17376,3606:112:4,62.5,-61.5,0,0,-0.00549677 -17377,3606:113:3,63,-61.5,0,0,-0.0055139 -17378,3606:113:4,63.5,-61.5,0,0,-0.00552494 -17379,3606:114:3,64,-61.5,0,0,-0.00550046 -17380,3606:114:4,64.5,-61.5,0,0,-0.00546392 -17381,3606:215:3,65,-61.5,0,0,-0.00546148 -17382,3606:215:4,65.5,-61.5,0,0,-0.00547119 -17383,3606:216:3,66,-61.5,0,0,-0.00547605 -17384,3606:216:4,66.5,-61.5,0,0,-0.00545541 -17385,3606:217:3,67,-61.5,0,0,-0.00544695 -17386,3606:217:4,67.5,-61.5,0,0,-0.00544935 -17387,3606:218:3,68,-61.5,0,0,-0.00545057 -17388,3606:218:4,68.5,-61.5,0,0,-0.00545179 -17389,3606:219:3,69,-61.5,0,0,-0.005453 -17390,3606:219:4,69.5,-61.5,0,0,-0.005453 -17391,3607:110:3,70,-61.5,0,0,-0.005453 -17392,3607:110:4,70.5,-61.5,0,0,-0.005453 -17393,3607:111:3,71,-61.5,0,0,-0.00545423 -17394,3607:111:4,71.5,-61.5,0,0,-0.00545423 -17395,3607:112:3,72,-61.5,0,0,-0.00545179 -17396,3607:112:4,72.5,-61.5,0,0,-0.00545057 -17397,3607:113:4,73.5,-61.5,0,0,-0.00545541 -17398,3607:114:3,74,-61.5,0,0,-0.00553352 -17399,3607:114:4,74.5,-61.5,0,0,-0.00573378 -17400,3607:215:3,75,-61.5,0,0,-0.00548091 -17401,3607:215:4,75.5,-61.5,0,0,-0.00544451 -17402,3607:216:3,76,-61.5,0,0,-0.00546026 -17403,3607:216:4,76.5,-61.5,0,0,-0.00566414 -17404,3607:217:3,77,-61.5,0,0,-0.00584703 -17405,3607:217:4,77.5,-61.5,0,0,-0.00577213 -17406,3607:218:3,78,-61.5,0,0,-0.00559164 -17407,3607:218:4,78.5,-61.5,0,0,-0.00549434 -17408,3607:219:3,79,-61.5,0,0,-0.0057198 -17409,3607:219:4,79.5,-61.5,0,0,-0.00598639 -17410,3608:110:3,80,-61.5,0,0,-0.00602378 -17411,3608:110:4,80.5,-61.5,0,0,-0.00606273 -17412,3608:111:3,81,-61.5,0,0,-0.00628226 -17413,3608:111:4,81.5,-61.5,0,0,-0.00676813 -17414,3610:219:3,109,-61.5,0,0,-0.00804058 -17415,3610:219:4,109.5,-61.5,0,0,-0.00840686 -17416,3611:217:4,117.5,-61.5,0,0,-0.00555325 -17417,3611:218:3,118,-61.5,0,0,-0.0055237 -17418,3611:218:4,118.5,-61.5,0,0,-0.00551024 -17419,3611:219:3,119,-61.5,0,0,-0.00551147 -17420,3611:219:4,119.5,-61.5,0,0,-0.00550658 -17421,3612:110:3,120,-61.5,0,0,-0.005509 -17422,3612:110:4,120.5,-61.5,0,0,-0.00550777 -17423,3612:111:3,121,-61.5,0,0,-0.00550411 -17424,3612:218:4,128.5,-61.5,0,0,-0.00728216 -17425,3612:219:3,129,-61.5,0,0,-0.00719676 -17426,3612:219:4,129.5,-61.5,0,0,-0.00725141 -17427,3614:111:3,141,-61.5,0,0,-0.00867907 -17428,3614:111:4,141.5,-61.5,0,0,-0.00849917 -17429,3614:112:3,142,-61.5,0,0,-0.00824733 -17430,3614:112:4,142.5,-61.5,0,0,-0.00797456 -17431,3614:113:3,143,-61.5,0,0,-0.00782681 -17432,3614:113:4,143.5,-61.5,0,0,-0.00758998 -17433,3614:114:3,144,-61.5,0,0,-0.00730812 -17434,3614:114:4,144.5,-61.5,0,0,-0.0072595 -17435,3614:215:3,145,-61.5,0,0,-0.00671564 -17436,3614:215:4,145.5,-61.5,0,0,-0.00609923 -17437,3614:216:3,146,-61.5,0,0,-0.005619 -17438,3614:216:4,146.5,-61.5,0,0,-0.00548701 -17439,3614:217:3,147,-61.5,0,0,-0.00547972 -17440,3614:217:4,147.5,-61.5,0,0,-0.00547364 -17441,3614:218:3,148,-61.5,0,0,-0.0054785 -17442,3614:218:4,148.5,-61.5,0,0,-0.00548337 -17443,3614:219:3,149,-61.5,0,0,-0.00547727 -17444,3614:219:4,149.5,-61.5,0,0,-0.00547605 -17445,3615:110:3,150,-61.5,0,0,-0.00547605 -17446,3615:110:4,150.5,-61.5,0,0,-0.00547486 -17447,3615:111:3,151,-61.5,0,0,-0.00547241 -17448,3615:111:4,151.5,-61.5,0,0,-0.00547605 -17449,3615:112:3,152,-61.5,0,0,-0.00547605 -17450,3615:112:4,152.5,-61.5,0,0,-0.00547364 -17451,3615:113:3,153,-61.5,0,0,-0.00547119 -17452,3615:113:4,153.5,-61.5,0,0,-0.00547 -17453,3615:114:3,154,-61.5,0,0,-0.00546878 -17454,3615:114:4,154.5,-61.5,0,0,-0.00546755 -17455,3615:215:3,155,-61.5,0,0,-0.00546511 -17456,3615:215:4,155.5,-61.5,0,0,-0.0054627 -17457,3615:216:3,156,-61.5,0,0,-0.00546148 -17458,3615:216:4,156.5,-61.5,0,0,-0.00546148 -17459,3615:217:3,157,-61.5,0,0,-0.00546026 -17460,3615:217:4,157.5,-61.5,0,0,-0.00546026 -17461,3615:218:3,158,-61.5,0,0,-0.00546148 -17462,3615:218:4,158.5,-61.5,0,0,-0.0054627 -17463,3615:219:3,159,-61.5,0,0,-0.00546392 -17464,3615:219:4,159.5,-61.5,0,0,-0.00546392 -17465,3616:110:3,160,-61.5,0,0,-0.00546392 -17466,3616:110:4,160.5,-61.5,0,0,-0.0054627 -17467,3616:111:3,161,-61.5,0,0,-0.00546148 -17468,3616:111:4,161.5,-61.5,0,0,-0.00545785 -17469,3616:112:3,162,-61.5,0,0,-0.00545423 -17470,3616:112:4,162.5,-61.5,0,0,-0.00545663 -17471,3616:113:3,163,-61.5,0,0,-0.00546026 -17472,3616:113:4,163.5,-61.5,0,0,-0.00547119 -17473,3616:114:3,164,-61.5,0,0,-0.00546878 -17474,3616:114:4,164.5,-61.5,0,0,-0.00546755 -17475,3616:215:3,165,-61.5,0,0,-0.00546755 -17476,3616:215:4,165.5,-61.5,0,0,-0.00546755 -17477,3616:216:3,166,-61.5,0,0,-0.00547 -17478,3616:216:4,166.5,-61.5,0,0,-0.00547 -17479,3616:217:3,167,-61.5,0,0,-0.00547 -17480,3616:217:4,167.5,-61.5,0,0,-0.00546878 -17481,3616:218:3,168,-61.5,0,0,-0.00546755 -17482,3616:218:4,168.5,-61.5,0,0,-0.00546633 -17483,3616:219:3,169,-61.5,0,0,-0.00546633 -17484,3616:219:4,169.5,-61.5,0,0,-0.00546633 -17485,3617:110:3,170,-61.5,0,0,-0.00546633 -17486,3617:110:4,170.5,-61.5,0,0,-0.00546755 -17487,3617:111:3,171,-61.5,0,0,-0.00547 -17488,3617:111:4,171.5,-61.5,0,0,-0.00547 -17489,3617:112:3,172,-61.5,0,0,-0.00547 -17490,3617:112:4,172.5,-61.5,0,0,-0.00547 -17491,3617:113:3,173,-61.5,0,0,-0.00547 -17492,3617:113:4,173.5,-61.5,0,0,-0.00547 -17493,3617:114:3,174,-61.5,0,0,-0.00547 -17494,3617:114:4,174.5,-61.5,0,0,-0.00546878 -17495,3617:215:3,175,-61.5,0,0,-0.00546755 -17496,3617:215:4,175.5,-61.5,0,0,-0.00546511 -17497,3617:216:3,176,-61.5,0,0,-0.00546392 -17498,3617:216:4,176.5,-61.5,0,0,-0.00546392 -17499,3617:217:3,177,-61.5,0,0,-0.00546633 -17500,3617:217:4,177.5,-61.5,0,0,-0.00546878 -17501,3617:218:3,178,-61.5,0,0,-0.00547 -17502,3617:218:4,178.5,-61.5,0,0,-0.00547 -17503,3617:219:3,179,-61.5,0,0,-0.00546878 -17504,3617:219:4,179.5,-61.5,0,0,-0.00547 -17505,3618:110:3,180,-61.5,0,0,-0.00547 -17506,5618:110:1,-180,-61,0,0,-0.00547241 -17507,5617:219:2,-179.5,-61,0,0,-0.00547486 -17508,5617:219:1,-179,-61,0,0,-0.00548214 -17509,5617:218:2,-178.5,-61,0,0,-0.00549434 -17510,5617:218:1,-178,-61,0,0,-0.00551266 -17511,5617:217:2,-177.5,-61,0,0,-0.00558047 -17512,5617:217:1,-177,-61,0,0,-0.00559039 -17513,5617:216:2,-176.5,-61,0,0,-0.00557426 -17514,5617:216:1,-176,-61,0,0,-0.00556188 -17515,5617:215:2,-175.5,-61,0,0,-0.00553848 -17516,5617:215:1,-175,-61,0,0,-0.00551147 -17517,5617:114:2,-174.5,-61,0,0,-0.00548459 -17518,5617:114:1,-174,-61,0,0,-0.00547364 -17519,5617:113:2,-173.5,-61,0,0,-0.00547241 -17520,5617:113:1,-173,-61,0,0,-0.00547241 -17521,5617:112:2,-172.5,-61,0,0,-0.00547119 -17522,5617:112:1,-172,-61,0,0,-0.00546878 -17523,5617:111:2,-171.5,-61,0,0,-0.00546755 -17524,5617:111:1,-171,-61,0,0,-0.00546633 -17525,5617:110:2,-170.5,-61,0,0,-0.00546511 -17526,5617:110:1,-170,-61,0,0,-0.00546392 -17527,5616:219:2,-169.5,-61,0,0,-0.00546392 -17528,5616:219:1,-169,-61,0,0,-0.0054627 -17529,5616:218:2,-168.5,-61,0,0,-0.0054627 -17530,5616:218:1,-168,-61,0,0,-0.00546148 -17531,5616:217:2,-167.5,-61,0,0,-0.00546148 -17532,5616:217:1,-167,-61,0,0,-0.00546148 -17533,5616:216:2,-166.5,-61,0,0,-0.00546148 -17534,5616:216:1,-166,-61,0,0,-0.0054627 -17535,5616:215:2,-165.5,-61,0,0,-0.00546392 -17536,5616:215:1,-165,-61,0,0,-0.00546392 -17537,5616:114:2,-164.5,-61,0,0,-0.00546511 -17538,5616:114:1,-164,-61,0,0,-0.00546511 -17539,5616:113:2,-163.5,-61,0,0,-0.00546633 -17540,5616:113:1,-163,-61,0,0,-0.00546755 -17541,5616:112:2,-162.5,-61,0,0,-0.00546878 -17542,5616:112:1,-162,-61,0,0,-0.00547 -17543,5616:111:2,-161.5,-61,0,0,-0.00547119 -17544,5616:111:1,-161,-61,0,0,-0.00547119 -17545,5616:110:2,-160.5,-61,0,0,-0.00547241 -17546,5616:110:1,-160,-61,0,0,-0.00547364 -17547,5615:219:2,-159.5,-61,0,0,-0.00547486 -17548,5615:219:1,-159,-61,0,0,-0.00547486 -17549,5615:218:2,-158.5,-61,0,0,-0.00547605 -17550,5615:218:1,-158,-61,0,0,-0.00547605 -17551,5615:217:2,-157.5,-61,0,0,-0.00547605 -17552,5615:217:1,-157,-61,0,0,-0.00547605 -17553,5615:216:2,-156.5,-61,0,0,-0.00547605 -17554,5615:216:1,-156,-61,0,0,-0.00547727 -17555,5615:215:2,-155.5,-61,0,0,-0.00548337 -17556,5615:215:1,-155,-61,0,0,-0.00548824 -17557,5615:114:2,-154.5,-61,0,0,-0.00549923 -17558,5615:114:1,-154,-61,0,0,-0.00550658 -17559,5615:113:2,-153.5,-61,0,0,-0.00551147 -17560,5615:113:1,-153,-61,0,0,-0.00551147 -17561,5615:112:2,-152.5,-61,0,0,-0.00550411 -17562,5615:112:1,-152,-61,0,0,-0.00550046 -17563,5615:111:2,-151.5,-61,0,0,-0.00549677 -17564,5615:111:1,-151,-61,0,0,-0.00549434 -17565,5615:110:2,-150.5,-61,0,0,-0.00549434 -17566,5615:110:1,-150,-61,0,0,-0.00550411 -17567,5614:219:2,-149.5,-61,0,0,-0.00552617 -17568,5614:219:1,-149,-61,0,0,-0.0055434 -17569,5614:218:2,-148.5,-61,0,0,-0.005536 -17570,5614:218:1,-148,-61,0,0,-0.00552127 -17571,5614:217:2,-147.5,-61,0,0,-0.00553352 -17572,5614:217:1,-147,-61,0,0,-0.00554584 -17573,5614:216:2,-146.5,-61,0,0,-0.00558418 -17574,5614:216:1,-146,-61,0,0,-0.00560405 -17575,5614:215:2,-145.5,-61,0,0,-0.00562651 -17576,5614:215:1,-145,-61,0,0,-0.00572869 -17577,5614:114:2,-144.5,-61,0,0,-0.00587828 -17578,5614:114:1,-144,-61,0,0,-0.00601574 -17579,5614:113:2,-143.5,-61,0,0,-0.0061455 -17580,5614:113:1,-143,-61,0,0,-0.00628925 -17581,5614:112:2,-142.5,-61,0,0,-0.00635109 -17582,5614:112:1,-142,-61,0,0,-0.00646221 -17583,5614:111:2,-141.5,-61,0,0,-0.00658108 -17584,5614:111:1,-141,-61,0,0,-0.00653879 -17585,5614:110:2,-140.5,-61,0,0,-0.00659284 -17586,5614:110:1,-140,-61,0,0,-0.006634 -17587,5613:219:2,-139.5,-61,0,0,-0.00646936 -17588,5613:219:1,-139,-61,0,0,-0.00655483 -17589,5613:218:2,-138.5,-61,0,0,-0.00670075 -17590,5613:218:1,-138,-61,0,0,-0.00684995 -17591,5613:217:2,-137.5,-61,0,0,-0.00711242 -17592,5613:217:1,-137,-61,0,0,-0.00734889 -17593,5613:216:2,-136.5,-61,0,0,-0.00736363 -17594,5613:216:1,-136,-61,0,0,-0.00729999 -17595,5613:215:2,-135.5,-61,0,0,-0.00717597 -17596,5613:215:1,-135,-61,0,0,-0.00727242 -17597,5613:114:2,-134.5,-61,0,0,-0.00763576 -17598,5613:114:1,-134,-61,0,0,-0.00775565 -17599,5613:113:2,-133.5,-61,0,0,-0.00781809 -17600,5613:113:1,-133,-61,0,0,-0.00781288 -17601,5613:112:2,-132.5,-61,0,0,-0.00770402 -17602,5613:112:1,-132,-61,0,0,-0.00756635 -17603,5613:111:2,-131.5,-61,0,0,-0.00728701 -17604,5613:111:1,-131,-61,0,0,-0.00668585 -17605,5613:110:2,-130.5,-61,0,0,-0.00659575 -17606,5613:110:1,-130,-61,0,0,-0.00689427 -17607,5612:219:2,-129.5,-61,0,0,-0.00753107 -17608,5612:219:1,-129,-61,0,0,-0.00786872 -17609,5612:218:2,-128.5,-61,0,0,-0.00768348 -17610,5612:218:1,-128,-61,0,0,-0.00743778 -17611,5612:217:2,-127.5,-61,0,0,-0.00735054 -17612,5612:217:1,-127,-61,0,0,-0.00744935 -17613,5612:216:2,-126.5,-61,0,0,-0.00749259 -17614,5612:216:1,-126,-61,0,0,-0.00733582 -17615,5612:215:2,-125.5,-61,0,0,-0.00711242 -17616,5612:215:1,-125,-61,0,0,-0.00690809 -17617,5612:114:2,-124.5,-61,0,0,-0.00682104 -17618,5612:114:1,-124,-61,0,0,-0.00693116 -17619,5612:113:2,-123.5,-61,0,0,-0.00748425 -17620,5612:113:1,-123,-61,0,0,-0.0085638 -17621,5612:112:2,-122.5,-61,0,0,-0.00915196 -17622,5612:112:1,-122,-61,0,0,-0.00899418 -17623,5612:111:2,-121.5,-61,0,0,-0.0082971 -17624,5612:111:1,-121,-61,0,0,-0.00770229 -17625,5612:110:2,-120.5,-61,0,0,-0.00749595 -17626,5612:110:1,-120,-61,0,0,-0.00761876 -17627,5611:219:2,-119.5,-61,0,0,-0.00790033 -17628,5611:219:1,-119,-61,0,0,-0.00835086 -17629,5611:218:2,-118.5,-61,0,0,-0.00889052 -17630,5611:218:1,-118,-61,0,0,-0.00853711 -17631,5611:217:2,-117.5,-61,0,0,-0.00796037 -17632,5611:217:1,-117,-61,0,0,-0.00745102 -17633,5611:216:2,-116.5,-61,0,0,-0.00752268 -17634,5611:216:1,-116,-61,0,0,-0.00799768 -17635,5611:215:2,-115.5,-61,0,0,-0.00842941 -17636,5611:215:1,-115,-61,0,0,-0.00864819 -17637,5611:114:2,-114.5,-61,0,0,-0.00860589 -17638,5611:114:1,-114,-61,0,0,-0.00860782 -17639,5611:113:2,-113.5,-61,0,0,-0.0088569 -17640,5611:113:1,-113,-61,0,0,-0.00910922 -17641,5611:112:2,-112.5,-61,0,0,-0.00900624 -17642,5611:112:1,-112,-61,0,0,-0.00847649 -17643,5611:111:2,-111.5,-61,0,0,-0.00789679 -17644,5611:111:1,-111,-61,0,0,-0.00755793 -17645,5611:110:2,-110.5,-61,0,0,-0.00746597 -17646,5611:110:1,-110,-61,0,0,-0.00754618 -17647,5610:219:2,-109.5,-61,0,0,-0.00762554 -17648,5610:219:1,-109,-61,0,0,-0.00756466 -17649,5610:218:2,-108.5,-61,0,0,-0.00743611 -17650,5610:218:1,-108,-61,0,0,-0.00738336 -17651,5610:217:2,-107.5,-61,0,0,-0.00756466 -17652,5610:217:1,-107,-61,0,0,-0.00818511 -17653,5610:216:2,-106.5,-61,0,0,-0.00898415 -17654,5610:216:1,-106,-61,0,0,-0.00851624 -17655,5610:215:2,-105.5,-61,0,0,-0.00773155 -17656,5610:215:1,-105,-61,0,0,-0.00749259 -17657,5610:114:2,-104.5,-61,0,0,-0.00749091 -17658,5610:114:1,-104,-61,0,0,-0.00759168 -17659,5610:113:2,-103.5,-61,0,0,-0.00759674 -17660,5610:113:1,-103,-61,0,0,-0.00742949 -17661,5610:112:2,-102.5,-61,0,0,-0.00721443 -17662,5610:112:1,-102,-61,0,0,-0.00704622 -17663,5610:111:2,-101.5,-61,0,0,-0.00692039 -17664,5610:111:1,-101,-61,0,0,-0.00679982 -17665,5610:110:2,-100.5,-61,0,0,-0.00668885 -17666,5610:110:1,-100,-61,0,0,-0.00617015 -17667,5609:219:2,-99.5,-61,0,0,-0.005767 -17668,5609:219:1,-99,-61,0,0,-0.00570837 -17669,5609:218:2,-98.5,-61,0,0,-0.00578369 -17670,5609:218:1,-98,-61,0,0,-0.00586132 -17671,5609:217:2,-97.5,-61,0,0,-0.00592157 -17672,5609:217:1,-97,-61,0,0,-0.00599041 -17673,5609:216:2,-96.5,-61,0,0,-0.00601978 -17674,5609:216:1,-96,-61,0,0,-0.00593605 -17675,5609:215:2,-95.5,-61,0,0,-0.00573635 -17676,5609:215:1,-95,-61,0,0,-0.00560405 -17677,5609:114:2,-94.5,-61,0,0,-0.00575165 -17678,5609:114:1,-94,-61,0,0,-0.00579397 -17679,5609:113:2,-93.5,-61,0,0,-0.00584441 -17680,5609:113:1,-93,-61,0,0,-0.00572741 -17681,5609:112:2,-92.5,-61,0,0,-0.00559782 -17682,5609:112:1,-92,-61,0,0,-0.00553352 -17683,5609:111:2,-91.5,-61,0,0,-0.00553476 -17684,5609:111:1,-91,-61,0,0,-0.00556437 -17685,5609:110:2,-90.5,-61,0,0,-0.00558293 -17686,5609:110:1,-90,-61,0,0,-0.00562777 -17687,5608:219:2,-89.5,-61,0,0,-0.00569696 -17688,5608:219:1,-89,-61,0,0,-0.00587047 -17689,5608:218:2,-88.5,-61,0,0,-0.00658108 -17690,5608:218:1,-88,-61,0,0,-0.00741628 -17691,5608:217:2,-87.5,-61,0,0,-0.00781458 -17692,5608:217:1,-87,-61,0,0,-0.00785126 -17693,5608:216:2,-86.5,-61,0,0,-0.00718397 -17694,5608:216:1,-86,-61,0,0,-0.00650109 -17695,5608:215:2,-85.5,-61,0,0,-0.00608973 -17696,5608:215:1,-85,-61,0,0,-0.00580818 -17697,5608:114:2,-84.5,-61,0,0,-0.00566541 -17698,5608:114:1,-84,-61,0,0,-0.0056028 -17699,5608:113:2,-83.5,-61,0,0,-0.00556807 -17700,5608:113:1,-83,-61,0,0,-0.00558047 -17701,5608:112:2,-82.5,-61,0,0,-0.00560781 -17702,5608:112:1,-82,-61,0,0,-0.00567294 -17703,5608:111:2,-81.5,-61,0,0,-0.0056919 -17704,5608:111:1,-81,-61,0,0,-0.00567171 -17705,5608:110:2,-80.5,-61,0,0,-0.00563652 -17706,5608:110:1,-80,-61,0,0,-0.00561527 -17707,5607:219:2,-79.5,-61,0,0,-0.0056028 -17708,5607:219:1,-79,-61,0,0,-0.00560656 -17709,5607:218:2,-78.5,-61,0,0,-0.00561778 -17710,5607:218:1,-78,-61,0,0,-0.00563778 -17711,5607:217:2,-77.5,-61,0,0,-0.00569696 -17712,5607:217:1,-77,-61,0,0,-0.00573635 -17713,5607:216:2,-76.5,-61,0,0,-0.0058172 -17714,5607:216:1,-76,-61,0,0,-0.00581464 -17715,5607:215:2,-75.5,-61,0,0,-0.00582498 -17716,5607:215:1,-75,-61,0,0,-0.00578243 -17717,5607:114:2,-74.5,-61,0,0,-0.0058159 -17718,5607:114:1,-74,-61,0,0,-0.00615781 -17719,5607:113:2,-73.5,-61,0,0,-0.00657965 -17720,5607:113:1,-73,-61,0,0,-0.00685758 -17721,5607:112:2,-72.5,-61,0,0,-0.00684841 -17722,5607:112:1,-72,-61,0,0,-0.00628226 -17723,5607:111:2,-71.5,-61,0,0,-0.00594661 -17724,5607:111:1,-71,-61,0,0,-0.00599041 -17725,5607:110:2,-70.5,-61,0,0,-0.0060064 -17726,5607:110:1,-70,-61,0,0,-0.00590842 -17727,5606:219:2,-69.5,-61,0,0,-0.00586132 -17728,5606:219:1,-69,-61,0,0,-0.00586005 -17729,5606:218:2,-68.5,-61,0,0,-0.00582111 -17730,5606:218:1,-68,-61,0,0,-0.00583016 -17731,5606:217:2,-67.5,-61,0,0,-0.00595719 -17732,5606:217:1,-67,-61,0,0,-0.00647226 -17733,5606:216:2,-66.5,-61,0,0,-0.00796746 -17734,5606:110:2,-60.5,-61,0,0,-0.00644784 -17735,5606:110:1,-60,-61,0,0,-0.00638081 -17736,5605:219:2,-59.5,-61,0,0,-0.00610192 -17737,5605:219:1,-59,-61,0,0,-0.00589401 -17738,5605:218:2,-58.5,-61,0,0,-0.00562404 -17739,5605:218:1,-58,-61,0,0,-0.0055188 -17740,5605:217:2,-57.5,-61,0,0,-0.005509 -17741,5605:217:1,-57,-61,0,0,-0.00550658 -17742,5605:216:2,-56.5,-61,0,0,-0.00550165 -17743,5605:216:1,-56,-61,0,0,-0.00549434 -17744,5605:215:2,-55.5,-61,0,0,-0.00549069 -17745,5605:215:1,-55,-61,0,0,-0.00547727 -17746,5605:114:2,-54.5,-61,0,0,-0.00547 -17747,5605:114:1,-54,-61,0,0,-0.00546878 -17748,5605:113:2,-53.5,-61,0,0,-0.00547 -17749,5605:113:1,-53,-61,0,0,-0.00546878 -17750,5605:112:2,-52.5,-61,0,0,-0.00546755 -17751,5605:112:1,-52,-61,0,0,-0.00546511 -17752,5605:111:2,-51.5,-61,0,0,-0.00546392 -17753,5605:111:1,-51,-61,0,0,-0.00546148 -17754,5605:110:2,-50.5,-61,0,0,-0.00546148 -17755,5605:110:1,-50,-61,0,0,-0.00545907 -17756,5604:219:2,-49.5,-61,0,0,-0.00545785 -17757,5604:219:1,-49,-61,0,0,-0.00545785 -17758,5604:218:2,-48.5,-61,0,0,-0.00545785 -17759,5604:218:1,-48,-61,0,0,-0.00545785 -17760,5604:217:2,-47.5,-61,0,0,-0.00545663 -17761,5604:217:1,-47,-61,0,0,-0.00545541 -17762,5604:216:2,-46.5,-61,0,0,-0.00545663 -17763,5604:216:1,-46,-61,0,0,-0.00545663 -17764,5604:215:2,-45.5,-61,0,0,-0.00545663 -17765,5604:215:1,-45,-61,0,0,-0.00545785 -17766,5604:114:2,-44.5,-61,0,0,-0.00545785 -17767,5604:114:1,-44,-61,0,0,-0.00545785 -17768,5604:113:2,-43.5,-61,0,0,-0.00545785 -17769,5604:113:1,-43,-61,0,0,-0.00545663 -17770,5604:112:2,-42.5,-61,0,0,-0.00545663 -17771,5604:112:1,-42,-61,0,0,-0.00545663 -17772,5604:111:2,-41.5,-61,0,0,-0.00545663 -17773,5604:111:1,-41,-61,0,0,-0.00545663 -17774,5604:110:2,-40.5,-61,0,0,-0.00545663 -17775,5604:110:1,-40,-61,0,0,-0.00545663 -17776,5603:219:2,-39.5,-61,0,0,-0.00545663 -17777,5603:219:1,-39,-61,0,0,-0.00545663 -17778,5603:218:2,-38.5,-61,0,0,-0.00545663 -17779,5603:218:1,-38,-61,0,0,-0.00545663 -17780,5603:217:2,-37.5,-61,0,0,-0.00545663 -17781,5603:217:1,-37,-61,0,0,-0.00545663 -17782,5603:216:2,-36.5,-61,0,0,-0.00545663 -17783,5603:216:1,-36,-61,0,0,-0.00545663 -17784,5603:215:2,-35.5,-61,0,0,-0.00545663 -17785,5603:215:1,-35,-61,0,0,-0.00545663 -17786,5603:114:2,-34.5,-61,0,0,-0.00545663 -17787,5603:114:1,-34,-61,0,0,-0.00545663 -17788,5603:113:2,-33.5,-61,0,0,-0.00545663 -17789,5603:113:1,-33,-61,0,0,-0.00545663 -17790,5603:112:2,-32.5,-61,0,0,-0.00545663 -17791,5603:112:1,-32,-61,0,0,-0.00545663 -17792,5603:111:2,-31.5,-61,0,0,-0.00545663 -17793,5603:111:1,-31,-61,0,0,-0.00545663 -17794,5603:110:2,-30.5,-61,0,0,-0.00545663 -17795,5603:110:1,-30,-61,0,0,-0.00545663 -17796,5602:219:2,-29.5,-61,0,0,-0.00545663 -17797,5602:219:1,-29,-61,0,0,-0.00545663 -17798,5602:218:2,-28.5,-61,0,0,-0.00545663 -17799,5602:218:1,-28,-61,0,0,-0.00545663 -17800,5602:217:2,-27.5,-61,0,0,-0.00545663 -17801,5602:217:1,-27,-61,0,0,-0.00545663 -17802,5602:216:2,-26.5,-61,0,0,-0.00545541 -17803,5602:216:1,-26,-61,0,0,-0.00545541 -17804,5602:215:2,-25.5,-61,0,0,-0.00545541 -17805,5602:215:1,-25,-61,0,0,-0.00545541 -17806,5602:114:2,-24.5,-61,0,0,-0.00545541 -17807,5602:114:1,-24,-61,0,0,-0.00545423 -17808,5602:113:2,-23.5,-61,0,0,-0.00545423 -17809,5602:113:1,-23,-61,0,0,-0.00545423 -17810,5602:112:2,-22.5,-61,0,0,-0.005453 -17811,5602:112:1,-22,-61,0,0,-0.00545179 -17812,5602:111:2,-21.5,-61,0,0,-0.00545057 -17813,5602:111:1,-21,-61,0,0,-0.00545057 -17814,5602:110:2,-20.5,-61,0,0,-0.00544935 -17815,5602:110:1,-20,-61,0,0,-0.00544935 -17816,5601:219:2,-19.5,-61,0,0,-0.00544935 -17817,5601:219:1,-19,-61,0,0,-0.00544816 -17818,5601:218:2,-18.5,-61,0,0,-0.00544695 -17819,5601:218:1,-18,-61,0,0,-0.00544573 -17820,5601:217:2,-17.5,-61,0,0,-0.00544451 -17821,5601:217:1,-17,-61,0,0,-0.00544333 -17822,5601:216:2,-16.5,-61,0,0,-0.00544211 -17823,5601:216:1,-16,-61,0,0,-0.00543968 -17824,5601:215:2,-15.5,-61,0,0,-0.00543968 -17825,5601:215:1,-15,-61,0,0,-0.0054385 -17826,5601:114:2,-14.5,-61,0,0,-0.0054385 -17827,5601:114:1,-14,-61,0,0,-0.00543968 -17828,5601:113:2,-13.5,-61,0,0,-0.00543968 -17829,5601:113:1,-13,-61,0,0,-0.00543968 -17830,5601:112:2,-12.5,-61,0,0,-0.00543968 -17831,5601:112:1,-12,-61,0,0,-0.00543968 -17832,5601:111:2,-11.5,-61,0,0,-0.0054385 -17833,5601:111:1,-11,-61,0,0,-0.0054385 -17834,5601:110:2,-10.5,-61,0,0,-0.0054385 -17835,5601:110:1,-10,-61,0,0,-0.00543968 -17836,5600:219:2,-9.5,-61,0,0,-0.00543968 -17837,5600:219:1,-9,-61,0,0,-0.00543968 -17838,5600:218:2,-8.5,-61,0,0,-0.00543968 -17839,5600:218:1,-8,-61,0,0,-0.00543968 -17840,5600:217:2,-7.5,-61,0,0,-0.00543968 -17841,5600:217:1,-7,-61,0,0,-0.0054385 -17842,5600:216:2,-6.5,-61,0,0,-0.0054385 -17843,5600:216:1,-6,-61,0,0,-0.0054385 -17844,5600:215:2,-5.5,-61,0,0,-0.00543968 -17845,5600:215:1,-5,-61,0,0,-0.00544089 -17846,5600:114:2,-4.5,-61,0,0,-0.00544089 -17847,5600:114:1,-4,-61,0,0,-0.00544089 -17848,5600:113:2,-3.5,-61,0,0,-0.00544089 -17849,5600:113:1,-3,-61,0,0,-0.00543968 -17850,5600:112:2,-2.5,-61,0,0,-0.00543968 -17851,5600:112:1,-2,-61,0,0,-0.0054385 -17852,5600:111:2,-1.5,-61,0,0,-0.0054385 -17853,5600:111:1,-1,-61,0,0,-0.0054385 -17854,5600:110:2,-0.5,-61,0,0,-0.0054385 -17855,3600:110:2,0,-61,0,0,-0.0054385 -17856,3600:110:2,0.5,-61,0,0,-0.0054385 -17857,3600:111:1,1,-61,0,0,-0.00543728 -17858,3600:111:2,1.5,-61,0,0,-0.00543728 -17859,3600:112:1,2,-61,0,0,-0.00543606 -17860,3600:112:2,2.5,-61,0,0,-0.00543728 -17861,3600:113:1,3,-61,0,0,-0.00543606 -17862,3600:113:2,3.5,-61,0,0,-0.00543485 -17863,3600:114:1,4,-61,0,0,-0.00543485 -17864,3600:114:2,4.5,-61,0,0,-0.00543728 -17865,3600:215:1,5,-61,0,0,-0.00543968 -17866,3600:215:2,5.5,-61,0,0,-0.00543728 -17867,3600:216:1,6,-61,0,0,-0.00543728 -17868,3600:216:2,6.5,-61,0,0,-0.00543728 -17869,3600:217:1,7,-61,0,0,-0.00543606 -17870,3600:217:2,7.5,-61,0,0,-0.00543606 -17871,3600:218:1,8,-61,0,0,-0.00543606 -17872,3600:218:2,8.5,-61,0,0,-0.00543728 -17873,3600:219:1,9,-61,0,0,-0.0054385 -17874,3600:219:2,9.5,-61,0,0,-0.00543968 -17875,3601:110:1,10,-61,0,0,-0.00543968 -17876,3601:110:2,10.5,-61,0,0,-0.00544089 -17877,3601:111:1,11,-61,0,0,-0.00544211 -17878,3601:111:2,11.5,-61,0,0,-0.00544211 -17879,3601:112:1,12,-61,0,0,-0.00544089 -17880,3601:112:2,12.5,-61,0,0,-0.00544089 -17881,3601:113:1,13,-61,0,0,-0.00544089 -17882,3601:113:2,13.5,-61,0,0,-0.00544089 -17883,3601:114:1,14,-61,0,0,-0.00544089 -17884,3601:114:2,14.5,-61,0,0,-0.00544211 -17885,3601:215:1,15,-61,0,0,-0.00544333 -17886,3601:215:2,15.5,-61,0,0,-0.00544451 -17887,3601:216:1,16,-61,0,0,-0.00544451 -17888,3601:216:2,16.5,-61,0,0,-0.00544451 -17889,3601:217:1,17,-61,0,0,-0.00544333 -17890,3601:217:2,17.5,-61,0,0,-0.00544211 -17891,3601:218:1,18,-61,0,0,-0.00543968 -17892,3601:218:2,18.5,-61,0,0,-0.00543728 -17893,3601:219:1,19,-61,0,0,-0.00543728 -17894,3601:219:2,19.5,-61,0,0,-0.0054385 -17895,3602:110:1,20,-61,0,0,-0.0054385 -17896,3602:110:2,20.5,-61,0,0,-0.0054385 -17897,3602:111:1,21,-61,0,0,-0.00543728 -17898,3602:111:2,21.5,-61,0,0,-0.00543728 -17899,3602:112:1,22,-61,0,0,-0.0054385 -17900,3602:112:2,22.5,-61,0,0,-0.00543968 -17901,3602:113:1,23,-61,0,0,-0.00543968 -17902,3602:113:2,23.5,-61,0,0,-0.00544089 -17903,3602:114:1,24,-61,0,0,-0.00544089 -17904,3602:114:2,24.5,-61,0,0,-0.00544211 -17905,3602:215:1,25,-61,0,0,-0.00544333 -17906,3602:215:2,25.5,-61,0,0,-0.00544333 -17907,3602:216:1,26,-61,0,0,-0.00544333 -17908,3602:216:2,26.5,-61,0,0,-0.00544333 -17909,3602:217:1,27,-61,0,0,-0.00544451 -17910,3602:217:2,27.5,-61,0,0,-0.00544695 -17911,3602:218:1,28,-61,0,0,-0.00544816 -17912,3602:218:2,28.5,-61,0,0,-0.00544816 -17913,3602:219:1,29,-61,0,0,-0.00544816 -17914,3602:219:2,29.5,-61,0,0,-0.00544935 -17915,3603:110:1,30,-61,0,0,-0.00545057 -17916,3603:110:2,30.5,-61,0,0,-0.00544935 -17917,3603:111:1,31,-61,0,0,-0.005453 -17918,3603:111:2,31.5,-61,0,0,-0.005453 -17919,3603:112:1,32,-61,0,0,-0.00545423 -17920,3603:112:2,32.5,-61,0,0,-0.00545541 -17921,3603:113:1,33,-61,0,0,-0.00545663 -17922,3603:113:2,33.5,-61,0,0,-0.00546026 -17923,3603:114:1,34,-61,0,0,-0.00546633 -17924,3603:114:2,34.5,-61,0,0,-0.0054627 -17925,3603:215:1,35,-61,0,0,-0.00545785 -17926,3603:215:2,35.5,-61,0,0,-0.00545541 -17927,3603:216:1,36,-61,0,0,-0.00545785 -17928,3603:216:2,36.5,-61,0,0,-0.00545785 -17929,3603:217:1,37,-61,0,0,-0.00545663 -17930,3603:217:2,37.5,-61,0,0,-0.00545663 -17931,3603:218:1,38,-61,0,0,-0.00545785 -17932,3603:218:2,38.5,-61,0,0,-0.00545663 -17933,3603:219:1,39,-61,0,0,-0.00545663 -17934,3603:219:2,39.5,-61,0,0,-0.00545785 -17935,3604:110:1,40,-61,0,0,-0.00545785 -17936,3604:110:2,40.5,-61,0,0,-0.00545785 -17937,3604:111:1,41,-61,0,0,-0.00546026 -17938,3604:111:2,41.5,-61,0,0,-0.00546026 -17939,3604:112:1,42,-61,0,0,-0.00545907 -17940,3604:112:2,42.5,-61,0,0,-0.00545785 -17941,3604:113:1,43,-61,0,0,-0.00545907 -17942,3604:113:2,43.5,-61,0,0,-0.00546026 -17943,3604:114:1,44,-61,0,0,-0.00546026 -17944,3604:114:2,44.5,-61,0,0,-0.0054627 -17945,3604:215:1,45,-61,0,0,-0.00546392 -17946,3604:215:2,45.5,-61,0,0,-0.00546392 -17947,3604:216:1,46,-61,0,0,-0.0054627 -17948,3604:216:2,46.5,-61,0,0,-0.0054627 -17949,3604:217:1,47,-61,0,0,-0.0054627 -17950,3604:217:2,47.5,-61,0,0,-0.0054627 -17951,3604:218:1,48,-61,0,0,-0.00546511 -17952,3604:218:2,48.5,-61,0,0,-0.00546878 -17953,3604:219:1,49,-61,0,0,-0.00548091 -17954,3604:219:2,49.5,-61,0,0,-0.00546755 -17955,3605:110:1,50,-61,0,0,-0.00544935 -17956,3605:216:2,56.5,-61,0,0,-0.00549312 -17957,3605:217:1,57,-61,0,0,-0.00550165 -17958,3605:217:2,57.5,-61,0,0,-0.00549557 -17959,3605:218:1,58,-61,0,0,-0.005498 -17960,3605:218:2,58.5,-61,0,0,-0.00548459 -17961,3605:219:1,59,-61,0,0,-0.00548091 -17962,3605:219:2,59.5,-61,0,0,-0.00548214 -17963,3606:110:1,60,-61,0,0,-0.00548091 -17964,3606:110:2,60.5,-61,0,0,-0.00547605 -17965,3606:111:1,61,-61,0,0,-0.00546878 -17966,3606:111:2,61.5,-61,0,0,-0.00546392 -17967,3606:112:1,62,-61,0,0,-0.00546026 -17968,3606:112:2,62.5,-61,0,0,-0.00545907 -17969,3606:113:1,63,-61,0,0,-0.00545785 -17970,3606:113:2,63.5,-61,0,0,-0.00547727 -17971,3606:114:1,64,-61,0,0,-0.00544573 -17972,3606:114:2,64.5,-61,0,0,-0.00544695 -17973,3606:215:1,65,-61,0,0,-0.00544816 -17974,3606:215:2,65.5,-61,0,0,-0.00544816 -17975,3606:216:1,66,-61,0,0,-0.00544816 -17976,3606:216:2,66.5,-61,0,0,-0.00544935 -17977,3606:217:1,67,-61,0,0,-0.00545057 -17978,3606:217:2,67.5,-61,0,0,-0.00545057 -17979,3606:218:1,68,-61,0,0,-0.00545179 -17980,3606:218:2,68.5,-61,0,0,-0.005453 -17981,3606:219:1,69,-61,0,0,-0.005453 -17982,3606:219:2,69.5,-61,0,0,-0.005453 -17983,3607:110:1,70,-61,0,0,-0.005453 -17984,3607:110:2,70.5,-61,0,0,-0.00545179 -17985,3607:111:1,71,-61,0,0,-0.00545179 -17986,3607:111:2,71.5,-61,0,0,-0.00545179 -17987,3607:112:1,72,-61,0,0,-0.00545179 -17988,3607:112:2,72.5,-61,0,0,-0.00545541 -17989,3607:113:2,73.5,-61,0,0,-0.00556932 -17990,3607:114:1,74,-61,0,0,-0.00558543 -17991,3607:114:2,74.5,-61,0,0,-0.00544333 -17992,3607:215:1,75,-61,0,0,-0.005453 -17993,3607:215:2,75.5,-61,0,0,-0.00545057 -17994,3607:216:1,76,-61,0,0,-0.00545057 -17995,3607:216:2,76.5,-61,0,0,-0.00553108 -17996,3607:217:1,77,-61,0,0,-0.00547972 -17997,3607:217:2,77.5,-61,0,0,-0.00544935 -17998,3607:218:1,78,-61,0,0,-0.00544573 -17999,3607:218:2,78.5,-61,0,0,-0.00544695 -18000,3607:219:1,79,-61,0,0,-0.00545057 -18001,3607:219:2,79.5,-61,0,0,-0.00544089 -18002,3608:110:1,80,-61,0,0,-0.00545057 -18003,3608:110:2,80.5,-61,0,0,-0.00546755 -18004,3608:111:1,81,-61,0,0,-0.005509 -18005,3608:111:2,81.5,-61,0,0,-0.00564781 -18006,3608:113:1,83,-61,0,0,-0.00552741 -18007,3608:113:2,83.5,-61,0,0,-0.00551266 -18008,3608:215:2,85.5,-61,0,0,-0.005453 -18009,3608:219:1,89,-61,0,0,-0.0055188 -18010,3608:219:2,89.5,-61,0,0,-0.0055237 -18011,3609:110:1,90,-61,0,0,-0.00552127 -18012,3609:110:2,90.5,-61,0,0,-0.00554216 -18013,3609:111:1,91,-61,0,0,-0.00556558 -18014,3609:111:2,91.5,-61,0,0,-0.00585091 -18015,3609:112:1,92,-61,0,0,-0.00583016 -18016,3609:112:2,92.5,-61,0,0,-0.00586005 -18017,3609:113:1,93,-61,0,0,-0.00606948 -18018,3609:113:2,93.5,-61,0,0,-0.00678773 -18019,3609:114:1,94,-61,0,0,-0.00772635 -18020,3609:114:2,94.5,-61,0,0,-0.00807827 -18021,3610:217:2,107.5,-61,0,0,-0.00549189 -18022,3610:218:1,108,-61,0,0,-0.00547 -18023,3610:218:2,108.5,-61,0,0,-0.00562026 -18024,3610:219:1,109,-61,0,0,-0.00622249 -18025,3610:219:2,109.5,-61,0,0,-0.00681951 -18026,3611:110:1,110,-61,0,0,-0.00740144 -18027,3611:110:2,110.5,-61,0,0,-0.00797456 -18028,3611:215:1,115,-61,0,0,-0.00555325 -18029,3611:215:2,115.5,-61,0,0,-0.0055188 -18030,3611:217:1,117,-61,0,0,-0.00552617 -18031,3611:217:2,117.5,-61,0,0,-0.00550658 -18032,3611:218:1,118,-61,0,0,-0.00548824 -18033,3611:218:2,118.5,-61,0,0,-0.00548214 -18034,3611:219:1,119,-61,0,0,-0.00547486 -18035,3611:219:2,119.5,-61,0,0,-0.00547241 -18036,3612:110:1,120,-61,0,0,-0.00547 -18037,3612:110:2,120.5,-61,0,0,-0.00547364 -18038,3612:111:1,121,-61,0,0,-0.00548701 -18039,3612:111:2,121.5,-61,0,0,-0.00550165 -18040,3612:112:1,122,-61,0,0,-0.00550165 -18041,3612:112:2,122.5,-61,0,0,-0.00548337 -18042,3612:113:1,123,-61,0,0,-0.00546878 -18043,3612:217:1,127,-61,0,0,-0.00640923 -18044,3612:217:2,127.5,-61,0,0,-0.00649099 -18045,3612:218:1,128,-61,0,0,-0.00642635 -18046,3612:218:2,128.5,-61,0,0,-0.00600241 -18047,3612:219:1,129,-61,0,0,-0.00589137 -18048,3612:219:2,129.5,-61,0,0,-0.00650109 -18049,3613:110:1,130,-61,0,0,-0.00672614 -18050,3613:218:2,138.5,-61,0,0,-0.00778337 -18051,3613:219:1,139,-61,0,0,-0.00824369 -18052,3613:219:2,139.5,-61,0,0,-0.00808903 -18053,3614:110:1,140,-61,0,0,-0.00818511 -18054,3614:110:2,140.5,-61,0,0,-0.00788628 -18055,3614:111:1,141,-61,0,0,-0.00804593 -18056,3614:111:2,141.5,-61,0,0,-0.00811795 -18057,3614:112:1,142,-61,0,0,-0.00792679 -18058,3614:112:2,142.5,-61,0,0,-0.00767664 -18059,3614:113:1,143,-61,0,0,-0.00758828 -18060,3614:113:2,143.5,-61,0,0,-0.00768176 -18061,3614:114:1,144,-61,0,0,-0.00777988 -18062,3614:114:2,144.5,-61,0,0,-0.00763233 -18063,3614:215:1,145,-61,0,0,-0.00701181 -18064,3614:215:2,145.5,-61,0,0,-0.00617287 -18065,3614:216:1,146,-61,0,0,-0.00577471 -18066,3614:216:2,146.5,-61,0,0,-0.00562526 -18067,3614:217:1,147,-61,0,0,-0.00549923 -18068,3614:217:2,147.5,-61,0,0,-0.00547972 -18069,3614:218:1,148,-61,0,0,-0.00547364 -18070,3614:218:2,148.5,-61,0,0,-0.00547119 -18071,3614:219:1,149,-61,0,0,-0.00546878 -18072,3614:219:2,149.5,-61,0,0,-0.00546755 -18073,3615:110:1,150,-61,0,0,-0.00546878 -18074,3615:110:2,150.5,-61,0,0,-0.00547119 -18075,3615:111:1,151,-61,0,0,-0.00547 -18076,3615:111:2,151.5,-61,0,0,-0.00547119 -18077,3615:112:1,152,-61,0,0,-0.00546878 -18078,3615:112:2,152.5,-61,0,0,-0.00546511 -18079,3615:113:1,153,-61,0,0,-0.00546511 -18080,3615:113:2,153.5,-61,0,0,-0.00546392 -18081,3615:114:1,154,-61,0,0,-0.0054627 -18082,3615:114:2,154.5,-61,0,0,-0.0054627 -18083,3615:215:1,155,-61,0,0,-0.00546026 -18084,3615:215:2,155.5,-61,0,0,-0.00545907 -18085,3615:216:1,156,-61,0,0,-0.00545907 -18086,3615:216:2,156.5,-61,0,0,-0.00545907 -18087,3615:217:1,157,-61,0,0,-0.00546026 -18088,3615:217:2,157.5,-61,0,0,-0.0054627 -18089,3615:218:1,158,-61,0,0,-0.00546392 -18090,3615:218:2,158.5,-61,0,0,-0.00546633 -18091,3615:219:1,159,-61,0,0,-0.00546755 -18092,3615:219:2,159.5,-61,0,0,-0.00546633 -18093,3616:110:1,160,-61,0,0,-0.00546392 -18094,3616:110:2,160.5,-61,0,0,-0.00546026 -18095,3616:111:1,161,-61,0,0,-0.00545663 -18096,3616:111:2,161.5,-61,0,0,-0.00545423 -18097,3616:112:1,162,-61,0,0,-0.00544816 -18098,3616:112:2,162.5,-61,0,0,-0.00544816 -18099,3616:113:1,163,-61,0,0,-0.00547241 -18100,3616:113:2,163.5,-61,0,0,-0.00547 -18101,3616:114:1,164,-61,0,0,-0.00547 -18102,3616:114:2,164.5,-61,0,0,-0.00546755 -18103,3616:215:1,165,-61,0,0,-0.00546755 -18104,3616:215:2,165.5,-61,0,0,-0.00547 -18105,3616:216:1,166,-61,0,0,-0.00547119 -18106,3616:216:2,166.5,-61,0,0,-0.00547119 -18107,3616:217:1,167,-61,0,0,-0.00547 -18108,3616:217:2,167.5,-61,0,0,-0.00546878 -18109,3616:218:1,168,-61,0,0,-0.00546755 -18110,3616:218:2,168.5,-61,0,0,-0.00546633 -18111,3616:219:1,169,-61,0,0,-0.00546633 -18112,3616:219:2,169.5,-61,0,0,-0.00546633 -18113,3617:110:1,170,-61,0,0,-0.00546755 -18114,3617:110:2,170.5,-61,0,0,-0.00547 -18115,3617:111:1,171,-61,0,0,-0.00547 -18116,3617:111:2,171.5,-61,0,0,-0.00547 -18117,3617:112:1,172,-61,0,0,-0.00547 -18118,3617:112:2,172.5,-61,0,0,-0.00547 -18119,3617:113:1,173,-61,0,0,-0.00546878 -18120,3617:113:2,173.5,-61,0,0,-0.00546878 -18121,3617:114:1,174,-61,0,0,-0.00546878 -18122,3617:114:2,174.5,-61,0,0,-0.00546755 -18123,3617:215:1,175,-61,0,0,-0.00546511 -18124,3617:215:2,175.5,-61,0,0,-0.00546511 -18125,3617:216:1,176,-61,0,0,-0.00546511 -18126,3617:216:2,176.5,-61,0,0,-0.00546633 -18127,3617:217:1,177,-61,0,0,-0.00546755 -18128,3617:217:2,177.5,-61,0,0,-0.00546878 -18129,3617:218:1,178,-61,0,0,-0.00546878 -18130,3617:218:2,178.5,-61,0,0,-0.00546878 -18131,3617:219:1,179,-61,0,0,-0.00547 -18132,3617:219:2,179.5,-61,0,0,-0.00547119 -18133,3618:110:1,180,-61,0,0,-0.00547241 -18134,5618:100:3,-180,-60.5,0,0,-0.00547972 -18135,5617:209:4,-179.5,-60.5,0,0,-0.00548947 -18136,5617:209:3,-179,-60.5,0,0,-0.00550777 -18137,5617:208:4,-178.5,-60.5,0,0,-0.00552985 -18138,5617:208:3,-178,-60.5,0,0,-0.00562526 -18139,5617:207:4,-177.5,-60.5,0,0,-0.00562026 -18140,5617:207:3,-177,-60.5,0,0,-0.00557052 -18141,5617:206:4,-176.5,-60.5,0,0,-0.00557052 -18142,5617:206:3,-176,-60.5,0,0,-0.00556313 -18143,5617:205:4,-175.5,-60.5,0,0,-0.00554832 -18144,5617:205:3,-175,-60.5,0,0,-0.00553968 -18145,5617:104:4,-174.5,-60.5,0,0,-0.0055139 -18146,5617:104:3,-174,-60.5,0,0,-0.00548947 -18147,5617:103:4,-173.5,-60.5,0,0,-0.00548091 -18148,5617:103:3,-173,-60.5,0,0,-0.00547364 -18149,5617:102:4,-172.5,-60.5,0,0,-0.00547119 -18150,5617:102:3,-172,-60.5,0,0,-0.00547 -18151,5617:101:4,-171.5,-60.5,0,0,-0.00546878 -18152,5617:101:3,-171,-60.5,0,0,-0.00546755 -18153,5617:100:4,-170.5,-60.5,0,0,-0.00546511 -18154,5617:100:3,-170,-60.5,0,0,-0.00546392 -18155,5616:209:4,-169.5,-60.5,0,0,-0.00546392 -18156,5616:209:3,-169,-60.5,0,0,-0.0054627 -18157,5616:208:4,-168.5,-60.5,0,0,-0.0054627 -18158,5616:208:3,-168,-60.5,0,0,-0.00546148 -18159,5616:207:4,-167.5,-60.5,0,0,-0.00546148 -18160,5616:207:3,-167,-60.5,0,0,-0.00546148 -18161,5616:206:4,-166.5,-60.5,0,0,-0.00546148 -18162,5616:206:3,-166,-60.5,0,0,-0.00546148 -18163,5616:205:4,-165.5,-60.5,0,0,-0.0054627 -18164,5616:205:3,-165,-60.5,0,0,-0.00546392 -18165,5616:104:4,-164.5,-60.5,0,0,-0.00546511 -18166,5616:104:3,-164,-60.5,0,0,-0.00546633 -18167,5616:103:4,-163.5,-60.5,0,0,-0.00546633 -18168,5616:103:3,-163,-60.5,0,0,-0.00546755 -18169,5616:102:4,-162.5,-60.5,0,0,-0.00546878 -18170,5616:102:3,-162,-60.5,0,0,-0.00547 -18171,5616:101:4,-161.5,-60.5,0,0,-0.00547119 -18172,5616:101:3,-161,-60.5,0,0,-0.00547241 -18173,5616:100:4,-160.5,-60.5,0,0,-0.00547364 -18174,5616:100:3,-160,-60.5,0,0,-0.00547364 -18175,5615:209:4,-159.5,-60.5,0,0,-0.00547486 -18176,5615:209:3,-159,-60.5,0,0,-0.00547486 -18177,5615:208:4,-158.5,-60.5,0,0,-0.00547486 -18178,5615:208:3,-158,-60.5,0,0,-0.00547364 -18179,5615:207:4,-157.5,-60.5,0,0,-0.00547241 -18180,5615:207:3,-157,-60.5,0,0,-0.00547364 -18181,5615:206:4,-156.5,-60.5,0,0,-0.00548091 -18182,5615:206:3,-156,-60.5,0,0,-0.00551637 -18183,5615:205:4,-155.5,-60.5,0,0,-0.00559536 -18184,5615:205:3,-155,-60.5,0,0,-0.00562526 -18185,5615:104:4,-154.5,-60.5,0,0,-0.00564279 -18186,5615:104:3,-154,-60.5,0,0,-0.00564907 -18187,5615:103:4,-153.5,-60.5,0,0,-0.00564907 -18188,5615:103:3,-153,-60.5,0,0,-0.00565033 -18189,5615:102:4,-152.5,-60.5,0,0,-0.00567548 -18190,5615:102:3,-152,-60.5,0,0,-0.00570075 -18191,5615:101:4,-151.5,-60.5,0,0,-0.00567171 -18192,5615:101:3,-151,-60.5,0,0,-0.00562903 -18193,5615:100:4,-150.5,-60.5,0,0,-0.0056128 -18194,5615:100:3,-150,-60.5,0,0,-0.00568053 -18195,5614:209:4,-149.5,-60.5,0,0,-0.00581204 -18196,5614:209:3,-149,-60.5,0,0,-0.00596649 -18197,5614:208:4,-148.5,-60.5,0,0,-0.00597313 -18198,5614:208:3,-148,-60.5,0,0,-0.00587959 -18199,5614:207:4,-147.5,-60.5,0,0,-0.00579657 -18200,5614:207:3,-147,-60.5,0,0,-0.00574016 -18201,5614:206:4,-146.5,-60.5,0,0,-0.0057198 -18202,5614:206:3,-146,-60.5,0,0,-0.00574144 -18203,5614:205:4,-145.5,-60.5,0,0,-0.00578243 -18204,5614:205:3,-145,-60.5,0,0,-0.00583795 -18205,5614:104:4,-144.5,-60.5,0,0,-0.00598907 -18206,5614:104:3,-144,-60.5,0,0,-0.00616053 -18207,5614:103:4,-143.5,-60.5,0,0,-0.00648232 -18208,5614:103:3,-143,-60.5,0,0,-0.00664879 -18209,5614:102:4,-142.5,-60.5,0,0,-0.00672463 -18210,5614:102:3,-142,-60.5,0,0,-0.00674859 -18211,5614:101:4,-141.5,-60.5,0,0,-0.00675459 -18212,5614:101:3,-141,-60.5,0,0,-0.0067923 -18213,5614:100:4,-140.5,-60.5,0,0,-0.00687128 -18214,5614:100:3,-140,-60.5,0,0,-0.00679834 -18215,5613:209:4,-139.5,-60.5,0,0,-0.00663108 -18216,5613:209:3,-139,-60.5,0,0,-0.00661485 -18217,5613:208:4,-138.5,-60.5,0,0,-0.00669775 -18218,5613:208:3,-138,-60.5,0,0,-0.00683017 -18219,5613:207:4,-137.5,-60.5,0,0,-0.00705249 -18220,5613:207:3,-137,-60.5,0,0,-0.00729513 -18221,5613:206:4,-136.5,-60.5,0,0,-0.0072789 -18222,5613:206:3,-136,-60.5,0,0,-0.00725787 -18223,5613:205:4,-135.5,-60.5,0,0,-0.00716482 -18224,5613:205:3,-135,-60.5,0,0,-0.00742289 -18225,5613:104:4,-134.5,-60.5,0,0,-0.00756132 -18226,5613:104:3,-134,-60.5,0,0,-0.00775565 -18227,5613:103:4,-133.5,-60.5,0,0,-0.00801194 -18228,5613:103:3,-133,-60.5,0,0,-0.00817054 -18229,5613:102:4,-132.5,-60.5,0,0,-0.00809806 -18230,5613:102:3,-132,-60.5,0,0,-0.00772809 -18231,5613:101:4,-131.5,-60.5,0,0,-0.00749595 -18232,5613:101:3,-131,-60.5,0,0,-0.00729028 -18233,5613:100:4,-130.5,-60.5,0,0,-0.00698535 -18234,5613:100:3,-130,-60.5,0,0,-0.00704938 -18235,5612:209:4,-129.5,-60.5,0,0,-0.00760686 -18236,5612:209:3,-129,-60.5,0,0,-0.00810527 -18237,5612:208:4,-128.5,-60.5,0,0,-0.00790388 -18238,5612:208:3,-128,-60.5,0,0,-0.00774186 -18239,5612:207:4,-127.5,-60.5,0,0,-0.00780763 -18240,5612:207:3,-127,-60.5,0,0,-0.00780068 -18241,5612:206:4,-126.5,-60.5,0,0,-0.0075512 -18242,5612:206:3,-126,-60.5,0,0,-0.00728538 -18243,5612:205:4,-125.5,-60.5,0,0,-0.00708711 -18244,5612:205:3,-125,-60.5,0,0,-0.00701496 -18245,5612:104:4,-124.5,-60.5,0,0,-0.00730976 -18246,5612:104:3,-124,-60.5,0,0,-0.00806027 -18247,5612:103:4,-123.5,-60.5,0,0,-0.0095715 -18248,5612:103:3,-123,-60.5,0,0,-0.010006 -18249,5612:102:4,-122.5,-60.5,0,0,-0.0100463 -18250,5612:102:3,-122,-60.5,0,0,-0.0100486 -18251,5612:101:4,-121.5,-60.5,0,0,-0.00986196 -18252,5612:101:3,-121,-60.5,0,0,-0.00939599 -18253,5612:100:4,-120.5,-60.5,0,0,-0.00902434 -18254,5612:100:3,-120,-60.5,0,0,-0.00889252 -18255,5611:209:4,-119.5,-60.5,0,0,-0.00898617 -18256,5611:209:3,-119,-60.5,0,0,-0.00941065 -18257,5611:208:4,-118.5,-60.5,0,0,-0.00964437 -18258,5611:208:3,-118,-60.5,0,0,-0.00943374 -18259,5611:207:4,-117.5,-60.5,0,0,-0.00904647 -18260,5611:207:3,-117,-60.5,0,0,-0.00865202 -18261,5611:206:4,-116.5,-60.5,0,0,-0.00825838 -18262,5611:206:3,-116,-60.5,0,0,-0.00811795 -18263,5611:205:4,-115.5,-60.5,0,0,-0.00825468 -18264,5611:205:3,-115,-60.5,0,0,-0.00852191 -18265,5611:104:4,-114.5,-60.5,0,0,-0.00885292 -18266,5611:104:3,-114,-60.5,0,0,-0.00909497 -18267,5611:103:4,-113.5,-60.5,0,0,-0.00930424 -18268,5611:103:3,-113,-60.5,0,0,-0.00943374 -18269,5611:102:4,-112.5,-60.5,0,0,-0.00952678 -18270,5611:102:3,-112,-60.5,0,0,-0.00953742 -18271,5611:101:4,-111.5,-60.5,0,0,-0.00920311 -18272,5611:101:3,-111,-60.5,0,0,-0.00881159 -18273,5611:100:4,-110.5,-60.5,0,0,-0.00867134 -18274,5611:100:3,-110,-60.5,0,0,-0.00873533 -18275,5610:209:4,-109.5,-60.5,0,0,-0.00875287 -18276,5610:209:3,-109,-60.5,0,0,-0.00872755 -18277,5610:208:4,-108.5,-60.5,0,0,-0.00864625 -18278,5610:208:3,-108,-60.5,0,0,-0.00867134 -18279,5610:207:4,-107.5,-60.5,0,0,-0.0089962 -18280,5610:207:3,-107,-60.5,0,0,-0.00936669 -18281,5610:206:4,-106.5,-60.5,0,0,-0.00899014 -18282,5610:206:3,-106,-60.5,0,0,-0.00844818 -18283,5610:205:4,-105.5,-60.5,0,0,-0.0080531 -18284,5610:205:3,-105,-60.5,0,0,-0.00818878 -18285,5610:104:4,-104.5,-60.5,0,0,-0.00888659 -18286,5610:104:3,-104,-60.5,0,0,-0.00941693 -18287,5610:103:4,-103.5,-60.5,0,0,-0.00915402 -18288,5610:103:3,-103,-60.5,0,0,-0.00843503 -18289,5610:102:4,-102.5,-60.5,0,0,-0.00774012 -18290,5610:102:3,-102,-60.5,0,0,-0.00733259 -18291,5610:101:4,-101.5,-60.5,0,0,-0.00708398 -18292,5610:101:3,-101,-60.5,0,0,-0.00690654 -18293,5610:100:4,-100.5,-60.5,0,0,-0.0067817 -18294,5610:100:3,-100,-60.5,0,0,-0.00666804 -18295,5609:209:4,-99.5,-60.5,0,0,-0.00642923 -18296,5609:209:3,-99,-60.5,0,0,-0.00622802 -18297,5609:208:4,-98.5,-60.5,0,0,-0.00646936 -18298,5609:208:3,-98,-60.5,0,0,-0.00698691 -18299,5609:207:4,-97.5,-60.5,0,0,-0.00720958 -18300,5609:207:3,-97,-60.5,0,0,-0.00706352 -18301,5609:206:4,-96.5,-60.5,0,0,-0.00640641 -18302,5609:206:3,-96,-60.5,0,0,-0.00611415 -18303,5609:205:4,-95.5,-60.5,0,0,-0.00586263 -18304,5609:205:3,-95,-60.5,0,0,-0.00575806 -18305,5609:104:4,-94.5,-60.5,0,0,-0.00641493 -18306,5609:104:3,-94,-60.5,0,0,-0.00659871 -18307,5609:103:4,-93.5,-60.5,0,0,-0.00674561 -18308,5609:103:3,-93,-60.5,0,0,-0.00673962 -18309,5609:102:4,-92.5,-60.5,0,0,-0.00623356 -18310,5609:102:3,-92,-60.5,0,0,-0.00582755 -18311,5609:101:4,-91.5,-60.5,0,0,-0.00577342 -18312,5609:101:3,-91,-60.5,0,0,-0.00605463 -18313,5609:100:4,-90.5,-60.5,0,0,-0.00628925 -18314,5609:100:3,-90,-60.5,0,0,-0.00679682 -18315,5608:209:4,-89.5,-60.5,0,0,-0.00710605 -18316,5608:209:3,-89,-60.5,0,0,-0.00738497 -18317,5608:208:4,-88.5,-60.5,0,0,-0.00773323 -18318,5608:208:3,-88,-60.5,0,0,-0.00797456 -18319,5608:207:4,-87.5,-60.5,0,0,-0.0085638 -18320,5608:207:3,-87,-60.5,0,0,-0.00907476 -18321,5608:206:4,-86.5,-60.5,0,0,-0.00883716 -18322,5608:206:3,-86,-60.5,0,0,-0.00716798 -18323,5608:205:4,-85.5,-60.5,0,0,-0.00642779 -18324,5608:205:3,-85,-60.5,0,0,-0.00589661 -18325,5608:104:4,-84.5,-60.5,0,0,-0.00565409 -18326,5608:104:3,-84,-60.5,0,0,-0.0055545 -18327,5608:103:4,-83.5,-60.5,0,0,-0.00556188 -18328,5608:103:3,-83,-60.5,0,0,-0.00559536 -18329,5608:102:4,-82.5,-60.5,0,0,-0.00562526 -18330,5608:102:3,-82,-60.5,0,0,-0.00565282 -18331,5608:101:4,-81.5,-60.5,0,0,-0.00563904 -18332,5608:101:3,-81,-60.5,0,0,-0.00559039 -18333,5608:100:4,-80.5,-60.5,0,0,-0.00553968 -18334,5608:100:3,-80,-60.5,0,0,-0.00551266 -18335,5607:209:4,-79.5,-60.5,0,0,-0.00555201 -18336,5607:209:3,-79,-60.5,0,0,-0.00558418 -18337,5607:208:4,-78.5,-60.5,0,0,-0.00559908 -18338,5607:208:3,-78,-60.5,0,0,-0.00569063 -18339,5607:207:4,-77.5,-60.5,0,0,-0.00605196 -18340,5607:207:3,-77,-60.5,0,0,-0.00598639 -18341,5607:206:4,-76.5,-60.5,0,0,-0.00575806 -18342,5607:206:3,-76,-60.5,0,0,-0.00582237 -18343,5607:205:4,-75.5,-60.5,0,0,-0.00587047 -18344,5607:205:3,-75,-60.5,0,0,-0.0058159 -18345,5607:104:4,-74.5,-60.5,0,0,-0.00594794 -18346,5607:104:3,-74,-60.5,0,0,-0.00648377 -18347,5607:103:4,-73.5,-60.5,0,0,-0.00715364 -18348,5607:103:3,-73,-60.5,0,0,-0.00767153 -18349,5607:102:4,-72.5,-60.5,0,0,-0.0076852 -18350,5607:102:3,-72,-60.5,0,0,-0.00709818 -18351,5607:101:4,-71.5,-60.5,0,0,-0.00633977 -18352,5607:101:3,-71,-60.5,0,0,-0.00621835 -18353,5607:100:4,-70.5,-60.5,0,0,-0.00606005 -18354,5607:100:3,-70,-60.5,0,0,-0.00592945 -18355,5606:209:4,-69.5,-60.5,0,0,-0.0059176 -18356,5606:209:3,-69,-60.5,0,0,-0.00590449 -18357,5606:208:4,-68.5,-60.5,0,0,-0.00589401 -18358,5606:208:3,-68,-60.5,0,0,-0.00587959 -18359,5606:207:4,-67.5,-60.5,0,0,-0.00596912 -18360,5606:207:3,-67,-60.5,0,0,-0.00654025 -18361,5606:206:4,-66.5,-60.5,0,0,-0.00754618 -18362,5606:206:3,-66,-60.5,0,0,-0.00821616 -18363,5606:205:4,-65.5,-60.5,0,0,-0.00876067 -18364,5606:100:4,-60.5,-60.5,0,0,-0.0064192 -18365,5606:100:3,-60,-60.5,0,0,-0.00640067 -18366,5605:209:4,-59.5,-60.5,0,0,-0.00631165 -18367,5605:209:3,-59,-60.5,0,0,-0.00616877 -18368,5605:208:4,-58.5,-60.5,0,0,-0.00597576 -18369,5605:208:3,-58,-60.5,0,0,-0.00570075 -18370,5605:207:4,-57.5,-60.5,0,0,-0.00553108 -18371,5605:207:3,-57,-60.5,0,0,-0.0055139 -18372,5605:206:4,-56.5,-60.5,0,0,-0.00550777 -18373,5605:206:3,-56,-60.5,0,0,-0.00550165 -18374,5605:205:4,-55.5,-60.5,0,0,-0.00549189 -18375,5605:205:3,-55,-60.5,0,0,-0.00548582 -18376,5605:104:4,-54.5,-60.5,0,0,-0.00547605 -18377,5605:104:3,-54,-60.5,0,0,-0.00547119 -18378,5605:103:4,-53.5,-60.5,0,0,-0.00547 -18379,5605:103:3,-53,-60.5,0,0,-0.00547 -18380,5605:102:4,-52.5,-60.5,0,0,-0.00547 -18381,5605:102:3,-52,-60.5,0,0,-0.00546633 -18382,5605:101:4,-51.5,-60.5,0,0,-0.00546392 -18383,5605:101:3,-51,-60.5,0,0,-0.00546148 -18384,5605:100:4,-50.5,-60.5,0,0,-0.00546026 -18385,5605:100:3,-50,-60.5,0,0,-0.00545907 -18386,5604:209:4,-49.5,-60.5,0,0,-0.00545785 -18387,5604:209:3,-49,-60.5,0,0,-0.00545785 -18388,5604:208:4,-48.5,-60.5,0,0,-0.00545907 -18389,5604:208:3,-48,-60.5,0,0,-0.00545785 -18390,5604:207:4,-47.5,-60.5,0,0,-0.00545663 -18391,5604:207:3,-47,-60.5,0,0,-0.00545541 -18392,5604:206:4,-46.5,-60.5,0,0,-0.00545663 -18393,5604:206:3,-46,-60.5,0,0,-0.00545663 -18394,5604:205:4,-45.5,-60.5,0,0,-0.00545663 -18395,5604:205:3,-45,-60.5,0,0,-0.00545663 -18396,5604:104:4,-44.5,-60.5,0,0,-0.00545663 -18397,5604:104:3,-44,-60.5,0,0,-0.00545663 -18398,5604:103:4,-43.5,-60.5,0,0,-0.00545663 -18399,5604:103:3,-43,-60.5,0,0,-0.00545663 -18400,5604:102:4,-42.5,-60.5,0,0,-0.00545663 -18401,5604:102:3,-42,-60.5,0,0,-0.00545663 -18402,5604:101:4,-41.5,-60.5,0,0,-0.00545663 -18403,5604:101:3,-41,-60.5,0,0,-0.00545663 -18404,5604:100:4,-40.5,-60.5,0,0,-0.00545663 -18405,5604:100:3,-40,-60.5,0,0,-0.00545663 -18406,5603:209:4,-39.5,-60.5,0,0,-0.00545663 -18407,5603:209:3,-39,-60.5,0,0,-0.00545663 -18408,5603:208:4,-38.5,-60.5,0,0,-0.00545663 -18409,5603:208:3,-38,-60.5,0,0,-0.00545663 -18410,5603:207:4,-37.5,-60.5,0,0,-0.00545663 -18411,5603:207:3,-37,-60.5,0,0,-0.00545663 -18412,5603:206:4,-36.5,-60.5,0,0,-0.00545663 -18413,5603:206:3,-36,-60.5,0,0,-0.00545663 -18414,5603:205:4,-35.5,-60.5,0,0,-0.00545663 -18415,5603:205:3,-35,-60.5,0,0,-0.00545663 -18416,5603:104:4,-34.5,-60.5,0,0,-0.00545663 -18417,5603:104:3,-34,-60.5,0,0,-0.00545663 -18418,5603:103:4,-33.5,-60.5,0,0,-0.00545663 -18419,5603:103:3,-33,-60.5,0,0,-0.00545663 -18420,5603:102:4,-32.5,-60.5,0,0,-0.00545663 -18421,5603:102:3,-32,-60.5,0,0,-0.00545785 -18422,5603:101:4,-31.5,-60.5,0,0,-0.00545785 -18423,5603:101:3,-31,-60.5,0,0,-0.00545785 -18424,5603:100:4,-30.5,-60.5,0,0,-0.00545785 -18425,5603:100:3,-30,-60.5,0,0,-0.00545785 -18426,5602:209:4,-29.5,-60.5,0,0,-0.00545785 -18427,5602:209:3,-29,-60.5,0,0,-0.00545785 -18428,5602:208:4,-28.5,-60.5,0,0,-0.00545663 -18429,5602:208:3,-28,-60.5,0,0,-0.00545663 -18430,5602:207:4,-27.5,-60.5,0,0,-0.00545663 -18431,5602:207:3,-27,-60.5,0,0,-0.00545663 -18432,5602:206:4,-26.5,-60.5,0,0,-0.00545541 -18433,5602:206:3,-26,-60.5,0,0,-0.00545541 -18434,5602:205:4,-25.5,-60.5,0,0,-0.00545423 -18435,5602:205:3,-25,-60.5,0,0,-0.00545423 -18436,5602:104:4,-24.5,-60.5,0,0,-0.00545423 -18437,5602:104:3,-24,-60.5,0,0,-0.00545423 -18438,5602:103:4,-23.5,-60.5,0,0,-0.00545423 -18439,5602:103:3,-23,-60.5,0,0,-0.005453 -18440,5602:102:4,-22.5,-60.5,0,0,-0.005453 -18441,5602:102:3,-22,-60.5,0,0,-0.00545179 -18442,5602:101:4,-21.5,-60.5,0,0,-0.00545057 -18443,5602:101:3,-21,-60.5,0,0,-0.00545057 -18444,5602:100:4,-20.5,-60.5,0,0,-0.00545057 -18445,5602:100:3,-20,-60.5,0,0,-0.00545057 -18446,5601:209:4,-19.5,-60.5,0,0,-0.00544935 -18447,5601:209:3,-19,-60.5,0,0,-0.00544816 -18448,5601:208:4,-18.5,-60.5,0,0,-0.00544695 -18449,5601:208:3,-18,-60.5,0,0,-0.00544573 -18450,5601:207:4,-17.5,-60.5,0,0,-0.00544451 -18451,5601:207:3,-17,-60.5,0,0,-0.00544333 -18452,5601:206:4,-16.5,-60.5,0,0,-0.00544211 -18453,5601:206:3,-16,-60.5,0,0,-0.00544089 -18454,5601:205:4,-15.5,-60.5,0,0,-0.00543968 -18455,5601:205:3,-15,-60.5,0,0,-0.00543968 -18456,5601:104:4,-14.5,-60.5,0,0,-0.00543968 -18457,5601:104:3,-14,-60.5,0,0,-0.00543968 -18458,5601:103:4,-13.5,-60.5,0,0,-0.00543968 -18459,5601:103:3,-13,-60.5,0,0,-0.00544089 -18460,5601:102:4,-12.5,-60.5,0,0,-0.00543968 -18461,5601:102:3,-12,-60.5,0,0,-0.00543968 -18462,5601:101:4,-11.5,-60.5,0,0,-0.0054385 -18463,5601:101:3,-11,-60.5,0,0,-0.0054385 -18464,5601:100:4,-10.5,-60.5,0,0,-0.0054385 -18465,5601:100:3,-10,-60.5,0,0,-0.0054385 -18466,5600:209:4,-9.5,-60.5,0,0,-0.00543968 -18467,5600:209:3,-9,-60.5,0,0,-0.00543968 -18468,5600:208:4,-8.5,-60.5,0,0,-0.00543968 -18469,5600:208:3,-8,-60.5,0,0,-0.00543968 -18470,5600:207:4,-7.5,-60.5,0,0,-0.00543968 -18471,5600:207:3,-7,-60.5,0,0,-0.00543968 -18472,5600:206:4,-6.5,-60.5,0,0,-0.0054385 -18473,5600:206:3,-6,-60.5,0,0,-0.0054385 -18474,5600:205:4,-5.5,-60.5,0,0,-0.0054385 -18475,5600:205:3,-5,-60.5,0,0,-0.00543968 -18476,5600:104:4,-4.5,-60.5,0,0,-0.00543968 -18477,5600:104:3,-4,-60.5,0,0,-0.00543968 -18478,5600:103:4,-3.5,-60.5,0,0,-0.00543968 -18479,5600:103:3,-3,-60.5,0,0,-0.0054385 -18480,5600:102:4,-2.5,-60.5,0,0,-0.0054385 -18481,5600:102:3,-2,-60.5,0,0,-0.0054385 -18482,5600:101:4,-1.5,-60.5,0,0,-0.0054385 -18483,5600:101:3,-1,-60.5,0,0,-0.0054385 -18484,5600:100:4,-0.5,-60.5,0,0,-0.0054385 -18485,3600:100:4,0,-60.5,0,0,-0.00543968 -18486,3600:100:4,0.5,-60.5,0,0,-0.00543968 -18487,3600:101:3,1,-60.5,0,0,-0.0054385 -18488,3600:101:4,1.5,-60.5,0,0,-0.00543728 -18489,3600:102:3,2,-60.5,0,0,-0.00543728 -18490,3600:102:4,2.5,-60.5,0,0,-0.0054385 -18491,3600:103:3,3,-60.5,0,0,-0.00543728 -18492,3600:103:4,3.5,-60.5,0,0,-0.00543728 -18493,3600:104:3,4,-60.5,0,0,-0.00543606 -18494,3600:104:4,4.5,-60.5,0,0,-0.00543728 -18495,3600:205:3,5,-60.5,0,0,-0.0054385 -18496,3600:205:4,5.5,-60.5,0,0,-0.00543968 -18497,3600:206:3,6,-60.5,0,0,-0.00543968 -18498,3600:206:4,6.5,-60.5,0,0,-0.00543968 -18499,3600:207:3,7,-60.5,0,0,-0.0054385 -18500,3600:207:4,7.5,-60.5,0,0,-0.00543728 -18501,3600:208:3,8,-60.5,0,0,-0.00543728 -18502,3600:208:4,8.5,-60.5,0,0,-0.0054385 -18503,3600:209:3,9,-60.5,0,0,-0.00543728 -18504,3600:209:4,9.5,-60.5,0,0,-0.00543606 -18505,3601:100:3,10,-60.5,0,0,-0.00543728 -18506,3601:100:4,10.5,-60.5,0,0,-0.00543728 -18507,3601:101:3,11,-60.5,0,0,-0.0054385 -18508,3601:101:4,11.5,-60.5,0,0,-0.00544089 -18509,3601:102:3,12,-60.5,0,0,-0.00543968 -18510,3601:102:4,12.5,-60.5,0,0,-0.0054385 -18511,3601:103:3,13,-60.5,0,0,-0.00543968 -18512,3601:103:4,13.5,-60.5,0,0,-0.00544089 -18513,3601:104:3,14,-60.5,0,0,-0.00543968 -18514,3601:104:4,14.5,-60.5,0,0,-0.00543968 -18515,3601:205:3,15,-60.5,0,0,-0.00543968 -18516,3601:205:4,15.5,-60.5,0,0,-0.00543968 -18517,3601:206:3,16,-60.5,0,0,-0.00543968 -18518,3601:206:4,16.5,-60.5,0,0,-0.00543968 -18519,3601:207:3,17,-60.5,0,0,-0.00544211 -18520,3601:207:4,17.5,-60.5,0,0,-0.00544089 -18521,3601:208:3,18,-60.5,0,0,-0.0054385 -18522,3601:208:4,18.5,-60.5,0,0,-0.00543363 -18523,3601:209:3,19,-60.5,0,0,-0.00543363 -18524,3601:209:4,19.5,-60.5,0,0,-0.00543485 -18525,3602:100:3,20,-60.5,0,0,-0.00543485 -18526,3602:100:4,20.5,-60.5,0,0,-0.00543606 -18527,3602:101:3,21,-60.5,0,0,-0.00543606 -18528,3602:101:4,21.5,-60.5,0,0,-0.00543606 -18529,3602:102:3,22,-60.5,0,0,-0.00543606 -18530,3602:102:4,22.5,-60.5,0,0,-0.00543728 -18531,3602:103:3,23,-60.5,0,0,-0.0054385 -18532,3602:103:4,23.5,-60.5,0,0,-0.0054385 -18533,3602:104:3,24,-60.5,0,0,-0.0054385 -18534,3602:104:4,24.5,-60.5,0,0,-0.00543968 -18535,3602:205:3,25,-60.5,0,0,-0.00544089 -18536,3602:205:4,25.5,-60.5,0,0,-0.00544089 -18537,3602:206:3,26,-60.5,0,0,-0.00544211 -18538,3602:206:4,26.5,-60.5,0,0,-0.00544333 -18539,3602:207:3,27,-60.5,0,0,-0.00544451 -18540,3602:207:4,27.5,-60.5,0,0,-0.00544695 -18541,3602:208:3,28,-60.5,0,0,-0.00544816 -18542,3602:208:4,28.5,-60.5,0,0,-0.00544816 -18543,3602:209:3,29,-60.5,0,0,-0.00544816 -18544,3602:209:4,29.5,-60.5,0,0,-0.00544935 -18545,3603:100:3,30,-60.5,0,0,-0.00544695 -18546,3603:100:4,30.5,-60.5,0,0,-0.00544333 -18547,3603:101:3,31,-60.5,0,0,-0.00544573 -18548,3603:101:4,31.5,-60.5,0,0,-0.00544935 -18549,3603:102:3,32,-60.5,0,0,-0.00545179 -18550,3603:102:4,32.5,-60.5,0,0,-0.005453 -18551,3603:103:3,33,-60.5,0,0,-0.00545423 -18552,3603:103:4,33.5,-60.5,0,0,-0.00545663 -18553,3603:104:3,34,-60.5,0,0,-0.00546148 -18554,3603:104:4,34.5,-60.5,0,0,-0.00545907 -18555,3603:205:3,35,-60.5,0,0,-0.00545785 -18556,3603:205:4,35.5,-60.5,0,0,-0.00545663 -18557,3603:206:3,36,-60.5,0,0,-0.00545541 -18558,3603:206:4,36.5,-60.5,0,0,-0.00545423 -18559,3603:207:3,37,-60.5,0,0,-0.005453 -18560,3603:207:4,37.5,-60.5,0,0,-0.005453 -18561,3603:208:3,38,-60.5,0,0,-0.00545179 -18562,3603:208:4,38.5,-60.5,0,0,-0.00545057 -18563,3603:209:3,39,-60.5,0,0,-0.00545057 -18564,3603:209:4,39.5,-60.5,0,0,-0.00545057 -18565,3604:100:3,40,-60.5,0,0,-0.00544935 -18566,3604:100:4,40.5,-60.5,0,0,-0.00544935 -18567,3604:101:3,41,-60.5,0,0,-0.00545179 -18568,3604:101:4,41.5,-60.5,0,0,-0.005453 -18569,3604:102:3,42,-60.5,0,0,-0.00545423 -18570,3604:102:4,42.5,-60.5,0,0,-0.00545663 -18571,3604:103:3,43,-60.5,0,0,-0.00545907 -18572,3604:103:4,43.5,-60.5,0,0,-0.00546026 -18573,3604:104:3,44,-60.5,0,0,-0.00546026 -18574,3604:104:4,44.5,-60.5,0,0,-0.00546148 -18575,3604:205:3,45,-60.5,0,0,-0.00546392 -18576,3604:205:4,45.5,-60.5,0,0,-0.00546511 -18577,3604:206:3,46,-60.5,0,0,-0.00546511 -18578,3604:206:4,46.5,-60.5,0,0,-0.00546511 -18579,3604:207:3,47,-60.5,0,0,-0.00546633 -18580,3604:207:4,47.5,-60.5,0,0,-0.00546755 -18581,3604:208:3,48,-60.5,0,0,-0.00546878 -18582,3604:208:4,48.5,-60.5,0,0,-0.00546878 -18583,3604:209:3,49,-60.5,0,0,-0.00546755 -18584,3604:209:4,49.5,-60.5,0,0,-0.00546878 -18585,3605:100:3,50,-60.5,0,0,-0.00546633 -18586,3605:100:4,50.5,-60.5,0,0,-0.00545785 -18587,3605:101:3,51,-60.5,0,0,-0.00547605 -18588,3605:206:3,56,-60.5,0,0,-0.005498 -18589,3605:206:4,56.5,-60.5,0,0,-0.00548214 -18590,3605:207:3,57,-60.5,0,0,-0.00549189 -18591,3605:207:4,57.5,-60.5,0,0,-0.00548701 -18592,3605:208:3,58,-60.5,0,0,-0.00548459 -18593,3605:208:4,58.5,-60.5,0,0,-0.00548459 -18594,3605:209:3,59,-60.5,0,0,-0.00548337 -18595,3605:209:4,59.5,-60.5,0,0,-0.00548091 -18596,3606:100:3,60,-60.5,0,0,-0.0054785 -18597,3606:100:4,60.5,-60.5,0,0,-0.00547241 -18598,3606:101:3,61,-60.5,0,0,-0.00546878 -18599,3606:101:4,61.5,-60.5,0,0,-0.00546755 -18600,3606:102:3,62,-60.5,0,0,-0.00546511 -18601,3606:102:4,62.5,-60.5,0,0,-0.00546392 -18602,3606:103:3,63,-60.5,0,0,-0.00546148 -18603,3606:103:4,63.5,-60.5,0,0,-0.00545663 -18604,3606:104:3,64,-60.5,0,0,-0.005453 -18605,3606:104:4,64.5,-60.5,0,0,-0.00545057 -18606,3606:205:3,65,-60.5,0,0,-0.00545179 -18607,3606:205:4,65.5,-60.5,0,0,-0.005453 -18608,3606:206:3,66,-60.5,0,0,-0.005453 -18609,3606:206:4,66.5,-60.5,0,0,-0.005453 -18610,3606:207:3,67,-60.5,0,0,-0.005453 -18611,3606:207:4,67.5,-60.5,0,0,-0.005453 -18612,3606:208:3,68,-60.5,0,0,-0.005453 -18613,3606:208:4,68.5,-60.5,0,0,-0.00545423 -18614,3606:209:3,69,-60.5,0,0,-0.005453 -18615,3606:209:4,69.5,-60.5,0,0,-0.005453 -18616,3607:100:3,70,-60.5,0,0,-0.00545179 -18617,3607:100:4,70.5,-60.5,0,0,-0.00545057 -18618,3607:101:3,71,-60.5,0,0,-0.00545057 -18619,3607:101:4,71.5,-60.5,0,0,-0.00545179 -18620,3607:102:3,72,-60.5,0,0,-0.00545179 -18621,3607:102:4,72.5,-60.5,0,0,-0.00545179 -18622,3607:103:4,73.5,-60.5,0,0,-0.00548824 -18623,3607:104:3,74,-60.5,0,0,-0.00549312 -18624,3607:104:4,74.5,-60.5,0,0,-0.00545179 -18625,3607:205:3,75,-60.5,0,0,-0.00545423 -18626,3607:205:4,75.5,-60.5,0,0,-0.00545179 -18627,3607:206:3,76,-60.5,0,0,-0.00545057 -18628,3607:206:4,76.5,-60.5,0,0,-0.005453 -18629,3607:207:3,77,-60.5,0,0,-0.00545179 -18630,3607:207:4,77.5,-60.5,0,0,-0.00545057 -18631,3607:208:3,78,-60.5,0,0,-0.00544816 -18632,3607:208:4,78.5,-60.5,0,0,-0.00544935 -18633,3607:209:3,79,-60.5,0,0,-0.00545423 -18634,3607:209:4,79.5,-60.5,0,0,-0.00545541 -18635,3608:100:3,80,-60.5,0,0,-0.00545907 -18636,3608:100:4,80.5,-60.5,0,0,-0.00546633 -18637,3608:101:3,81,-60.5,0,0,-0.00548091 -18638,3608:101:4,81.5,-60.5,0,0,-0.00549434 -18639,3608:102:3,82,-60.5,0,0,-0.00549923 -18640,3608:102:4,82.5,-60.5,0,0,-0.00550288 -18641,3608:103:3,83,-60.5,0,0,-0.00551266 -18642,3608:103:4,83.5,-60.5,0,0,-0.00550288 -18643,3608:104:3,84,-60.5,0,0,-0.005498 -18644,3608:104:4,84.5,-60.5,0,0,-0.00549312 -18645,3608:205:3,85,-60.5,0,0,-0.00549189 -18646,3608:205:4,85.5,-60.5,0,0,-0.00548582 -18647,3608:206:3,86,-60.5,0,0,-0.00548091 -18648,3608:206:4,86.5,-60.5,0,0,-0.00547119 -18649,3608:209:3,89,-60.5,0,0,-0.00550777 -18650,3608:209:4,89.5,-60.5,0,0,-0.00548459 -18651,3609:100:3,90,-60.5,0,0,-0.00549557 -18652,3609:100:4,90.5,-60.5,0,0,-0.00549677 -18653,3609:101:3,91,-60.5,0,0,-0.005498 -18654,3609:101:4,91.5,-60.5,0,0,-0.00549677 -18655,3609:102:3,92,-60.5,0,0,-0.00548091 -18656,3609:102:4,92.5,-60.5,0,0,-0.00547605 -18657,3609:103:3,93,-60.5,0,0,-0.00547486 -18658,3609:103:4,93.5,-60.5,0,0,-0.00548214 -18659,3609:104:3,94,-60.5,0,0,-0.00561653 -18660,3609:104:4,94.5,-60.5,0,0,-0.00606948 -18661,3609:205:3,95,-60.5,0,0,-0.00676662 -18662,3609:205:4,95.5,-60.5,0,0,-0.00799415 -18663,3610:205:3,105,-60.5,0,0,-0.00553848 -18664,3610:205:4,105.5,-60.5,0,0,-0.00553352 -18665,3610:206:3,106,-60.5,0,0,-0.00552617 -18666,3610:206:4,106.5,-60.5,0,0,-0.0055225 -18667,3610:207:3,107,-60.5,0,0,-0.0055139 -18668,3610:207:4,107.5,-60.5,0,0,-0.0054785 -18669,3610:208:3,108,-60.5,0,0,-0.00547364 -18670,3610:208:4,108.5,-60.5,0,0,-0.00549677 -18671,3610:209:3,109,-60.5,0,0,-0.00547241 -18672,3610:209:4,109.5,-60.5,0,0,-0.00547119 -18673,3611:100:3,110,-60.5,0,0,-0.00546026 -18674,3611:100:4,110.5,-60.5,0,0,-0.00565033 -18675,3611:101:3,111,-60.5,0,0,-0.00589269 -18676,3611:205:3,115,-60.5,0,0,-0.00552494 -18677,3611:205:4,115.5,-60.5,0,0,-0.005498 -18678,3611:206:3,116,-60.5,0,0,-0.005498 -18679,3611:206:4,116.5,-60.5,0,0,-0.00550165 -18680,3611:207:3,117,-60.5,0,0,-0.00550411 -18681,3611:207:4,117.5,-60.5,0,0,-0.00549069 -18682,3611:208:3,118,-60.5,0,0,-0.00547972 -18683,3611:208:4,118.5,-60.5,0,0,-0.00547605 -18684,3611:209:3,119,-60.5,0,0,-0.00547241 -18685,3611:209:4,119.5,-60.5,0,0,-0.00546878 -18686,3612:100:3,120,-60.5,0,0,-0.00546633 -18687,3612:100:4,120.5,-60.5,0,0,-0.00546633 -18688,3612:101:3,121,-60.5,0,0,-0.00547241 -18689,3612:101:4,121.5,-60.5,0,0,-0.00548337 -18690,3612:102:3,122,-60.5,0,0,-0.00549677 -18691,3612:102:4,122.5,-60.5,0,0,-0.005498 -18692,3612:103:3,123,-60.5,0,0,-0.00548337 -18693,3612:103:4,123.5,-60.5,0,0,-0.00546755 -18694,3612:104:3,124,-60.5,0,0,-0.00547119 -18695,3612:104:4,124.5,-60.5,0,0,-0.00561154 -18696,3612:205:3,125,-60.5,0,0,-0.00554832 -18697,3612:205:4,125.5,-60.5,0,0,-0.00565033 -18698,3612:206:3,126,-60.5,0,0,-0.00564781 -18699,3612:206:4,126.5,-60.5,0,0,-0.00560033 -18700,3612:207:3,127,-60.5,0,0,-0.00575037 -18701,3612:207:4,127.5,-60.5,0,0,-0.00559285 -18702,3612:208:3,128,-60.5,0,0,-0.0056028 -18703,3612:208:4,128.5,-60.5,0,0,-0.00563151 -18704,3612:209:3,129,-60.5,0,0,-0.005716 -18705,3612:209:4,129.5,-60.5,0,0,-0.00587306 -18706,3613:100:3,130,-60.5,0,0,-0.00622802 -18707,3613:100:4,130.5,-60.5,0,0,-0.00695123 -18708,3613:101:3,131,-60.5,0,0,-0.00767153 -18709,3613:101:4,131.5,-60.5,0,0,-0.00823081 -18710,3613:102:3,132,-60.5,0,0,-0.00851624 -18711,3613:102:4,132.5,-60.5,0,0,-0.00867134 -18712,3613:103:3,133,-60.5,0,0,-0.00879985 -18713,3613:103:4,133.5,-60.5,0,0,-0.00894421 -18714,3613:104:3,134,-60.5,0,0,-0.00924013 -18715,3613:104:4,134.5,-60.5,0,0,-0.0090424 -18716,3613:206:3,136,-60.5,0,0,-0.00559039 -18717,3613:206:4,136.5,-60.5,0,0,-0.00563025 -18718,3613:207:3,137,-60.5,0,0,-0.00568558 -18719,3613:207:4,137.5,-60.5,0,0,-0.00596119 -18720,3613:208:3,138,-60.5,0,0,-0.00637938 -18721,3613:208:4,138.5,-60.5,0,0,-0.00673811 -18722,3613:209:3,139,-60.5,0,0,-0.00688968 -18723,3613:209:4,139.5,-60.5,0,0,-0.0069807 -18724,3614:100:3,140,-60.5,0,0,-0.00676515 -18725,3614:100:4,140.5,-60.5,0,0,-0.00707292 -18726,3614:101:3,141,-60.5,0,0,-0.0072789 -18727,3614:101:4,141.5,-60.5,0,0,-0.00728379 -18728,3614:102:3,142,-60.5,0,0,-0.00722889 -18729,3614:102:4,142.5,-60.5,0,0,-0.00738993 -18730,3614:103:3,143,-60.5,0,0,-0.00742783 -18731,3614:103:4,143.5,-60.5,0,0,-0.00730812 -18732,3614:104:3,144,-60.5,0,0,-0.00698383 -18733,3614:104:4,144.5,-60.5,0,0,-0.00669625 -18734,3614:205:3,145,-60.5,0,0,-0.00638081 -18735,3614:205:4,145.5,-60.5,0,0,-0.00627527 -18736,3614:206:3,146,-60.5,0,0,-0.00617425 -18737,3614:206:4,146.5,-60.5,0,0,-0.00600371 -18738,3614:207:3,147,-60.5,0,0,-0.00573378 -18739,3614:207:4,147.5,-60.5,0,0,-0.00553232 -18740,3614:208:3,148,-60.5,0,0,-0.00547119 -18741,3614:208:4,148.5,-60.5,0,0,-0.0054627 -18742,3614:209:3,149,-60.5,0,0,-0.00546511 -18743,3614:209:4,149.5,-60.5,0,0,-0.00546755 -18744,3615:100:3,150,-60.5,0,0,-0.00547 -18745,3615:100:4,150.5,-60.5,0,0,-0.00546878 -18746,3615:101:3,151,-60.5,0,0,-0.00547 -18747,3615:101:4,151.5,-60.5,0,0,-0.00546878 -18748,3615:102:3,152,-60.5,0,0,-0.00546392 -18749,3615:102:4,152.5,-60.5,0,0,-0.0054627 -18750,3615:103:3,153,-60.5,0,0,-0.00546392 -18751,3615:103:4,153.5,-60.5,0,0,-0.00546511 -18752,3615:104:3,154,-60.5,0,0,-0.00546633 -18753,3615:104:4,154.5,-60.5,0,0,-0.00546392 -18754,3615:205:3,155,-60.5,0,0,-0.00546148 -18755,3615:205:4,155.5,-60.5,0,0,-0.00546148 -18756,3615:206:3,156,-60.5,0,0,-0.00546392 -18757,3615:206:4,156.5,-60.5,0,0,-0.00546633 -18758,3615:207:3,157,-60.5,0,0,-0.00546633 -18759,3615:207:4,157.5,-60.5,0,0,-0.00546633 -18760,3615:208:3,158,-60.5,0,0,-0.00546633 -18761,3615:208:4,158.5,-60.5,0,0,-0.00546633 -18762,3615:209:3,159,-60.5,0,0,-0.00546633 -18763,3615:209:4,159.5,-60.5,0,0,-0.00546633 -18764,3616:100:3,160,-60.5,0,0,-0.00546392 -18765,3616:100:4,160.5,-60.5,0,0,-0.0054627 -18766,3616:101:3,161,-60.5,0,0,-0.00546026 -18767,3616:101:4,161.5,-60.5,0,0,-0.0054627 -18768,3616:102:3,162,-60.5,0,0,-0.00546511 -18769,3616:102:4,162.5,-60.5,0,0,-0.00545907 -18770,3616:103:3,163,-60.5,0,0,-0.00546026 -18771,3616:103:4,163.5,-60.5,0,0,-0.00546755 -18772,3616:104:3,164,-60.5,0,0,-0.00546878 -18773,3616:104:4,164.5,-60.5,0,0,-0.00546755 -18774,3616:205:3,165,-60.5,0,0,-0.00547 -18775,3616:205:4,165.5,-60.5,0,0,-0.00547241 -18776,3616:206:3,166,-60.5,0,0,-0.00547364 -18777,3616:206:4,166.5,-60.5,0,0,-0.00547364 -18778,3616:207:3,167,-60.5,0,0,-0.00547119 -18779,3616:207:4,167.5,-60.5,0,0,-0.00547 -18780,3616:208:3,168,-60.5,0,0,-0.00546878 -18781,3616:208:4,168.5,-60.5,0,0,-0.00546755 -18782,3616:209:3,169,-60.5,0,0,-0.00546878 -18783,3616:209:4,169.5,-60.5,0,0,-0.00546878 -18784,3617:100:3,170,-60.5,0,0,-0.00546878 -18785,3617:100:4,170.5,-60.5,0,0,-0.00547 -18786,3617:101:3,171,-60.5,0,0,-0.00547 -18787,3617:101:4,171.5,-60.5,0,0,-0.00547 -18788,3617:102:3,172,-60.5,0,0,-0.00547 -18789,3617:102:4,172.5,-60.5,0,0,-0.00547 -18790,3617:103:3,173,-60.5,0,0,-0.00546878 -18791,3617:103:4,173.5,-60.5,0,0,-0.00546755 -18792,3617:104:3,174,-60.5,0,0,-0.00546755 -18793,3617:104:4,174.5,-60.5,0,0,-0.00546633 -18794,3617:205:3,175,-60.5,0,0,-0.00546511 -18795,3617:205:4,175.5,-60.5,0,0,-0.00546511 -18796,3617:206:3,176,-60.5,0,0,-0.00546511 -18797,3617:206:4,176.5,-60.5,0,0,-0.00546633 -18798,3617:207:3,177,-60.5,0,0,-0.00546755 -18799,3617:207:4,177.5,-60.5,0,0,-0.00546755 -18800,3617:208:3,178,-60.5,0,0,-0.00546878 -18801,3617:208:4,178.5,-60.5,0,0,-0.00547 -18802,3617:209:3,179,-60.5,0,0,-0.00547 -18803,3617:209:4,179.5,-60.5,0,0,-0.00547364 -18804,3618:100:3,180,-60.5,0,0,-0.00547972 -18805,5618:100:1,-180,-60,0,0,-0.00549069 -18806,5617:209:2,-179.5,-60,0,0,-0.00552861 -18807,5617:209:1,-179,-60,0,0,-0.00558664 -18808,5617:208:2,-178.5,-60,0,0,-0.00562651 -18809,5617:208:1,-178,-60,0,0,-0.00569951 -18810,5617:207:2,-177.5,-60,0,0,-0.00563778 -18811,5617:207:1,-177,-60,0,0,-0.00556064 -18812,5617:206:2,-176.5,-60,0,0,-0.0055545 -18813,5617:206:1,-176,-60,0,0,-0.00556558 -18814,5617:205:2,-175.5,-60,0,0,-0.00556807 -18815,5617:205:1,-175,-60,0,0,-0.00558047 -18816,5617:104:2,-174.5,-60,0,0,-0.0055446 -18817,5617:104:1,-174,-60,0,0,-0.00552494 -18818,5617:103:2,-173.5,-60,0,0,-0.00551147 -18819,5617:103:1,-173,-60,0,0,-0.00548582 -18820,5617:102:2,-172.5,-60,0,0,-0.00547364 -18821,5617:102:1,-172,-60,0,0,-0.00547364 -18822,5617:101:2,-171.5,-60,0,0,-0.00547119 -18823,5617:101:1,-171,-60,0,0,-0.00547 -18824,5617:100:2,-170.5,-60,0,0,-0.00546755 -18825,5617:100:1,-170,-60,0,0,-0.00546633 -18826,5616:209:2,-169.5,-60,0,0,-0.00546511 -18827,5616:209:1,-169,-60,0,0,-0.00546511 -18828,5616:208:2,-168.5,-60,0,0,-0.00546392 -18829,5616:208:1,-168,-60,0,0,-0.00546392 -18830,5616:207:2,-167.5,-60,0,0,-0.00546392 -18831,5616:207:1,-167,-60,0,0,-0.00546392 -18832,5616:206:2,-166.5,-60,0,0,-0.00546392 -18833,5616:206:1,-166,-60,0,0,-0.0054627 -18834,5616:205:2,-165.5,-60,0,0,-0.00546511 -18835,5616:205:1,-165,-60,0,0,-0.00548824 -18836,5616:104:2,-164.5,-60,0,0,-0.00551756 -18837,5616:104:1,-164,-60,0,0,-0.00552127 -18838,5616:103:2,-163.5,-60,0,0,-0.00550658 -18839,5616:103:1,-163,-60,0,0,-0.00547 -18840,5616:102:2,-162.5,-60,0,0,-0.00546755 -18841,5616:102:1,-162,-60,0,0,-0.00546878 -18842,5616:101:2,-161.5,-60,0,0,-0.00547119 -18843,5616:101:1,-161,-60,0,0,-0.00547119 -18844,5616:100:2,-160.5,-60,0,0,-0.00547119 -18845,5616:100:1,-160,-60,0,0,-0.00547972 -18846,5615:209:2,-159.5,-60,0,0,-0.00550046 -18847,5615:209:1,-159,-60,0,0,-0.00552494 -18848,5615:208:2,-158.5,-60,0,0,-0.0055446 -18849,5615:208:1,-158,-60,0,0,-0.00559782 -18850,5615:207:2,-157.5,-60,0,0,-0.0056403 -18851,5615:207:1,-157,-60,0,0,-0.00574144 -18852,5615:206:2,-156.5,-60,0,0,-0.00582368 -18853,5615:206:1,-156,-60,0,0,-0.00586394 -18854,5615:205:2,-155.5,-60,0,0,-0.00587959 -18855,5615:205:1,-155,-60,0,0,-0.00589661 -18856,5615:104:2,-154.5,-60,0,0,-0.00591106 -18857,5615:104:1,-154,-60,0,0,-0.00592551 -18858,5615:103:2,-153.5,-60,0,0,-0.00596382 -18859,5615:103:1,-153,-60,0,0,-0.00612914 -18860,5615:102:2,-152.5,-60,0,0,-0.00638224 -18861,5615:102:1,-152,-60,0,0,-0.00635109 -18862,5615:101:2,-151.5,-60,0,0,-0.00602644 -18863,5615:101:1,-151,-60,0,0,-0.00588223 -18864,5615:100:2,-150.5,-60,0,0,-0.00591499 -18865,5615:100:1,-150,-60,0,0,-0.00605061 -18866,5614:209:2,-149.5,-60,0,0,-0.00645642 -18867,5614:209:1,-149,-60,0,0,-0.00667248 -18868,5614:208:2,-148.5,-60,0,0,-0.00651266 -18869,5614:208:1,-148,-60,0,0,-0.0062377 -18870,5614:207:2,-147.5,-60,0,0,-0.0061006 -18871,5614:207:1,-147,-60,0,0,-0.00608432 -18872,5614:206:2,-146.5,-60,0,0,-0.00612777 -18873,5614:206:1,-146,-60,0,0,-0.00624884 -18874,5614:205:2,-145.5,-60,0,0,-0.00629903 -18875,5614:205:1,-145,-60,0,0,-0.0064135 -18876,5614:104:2,-144.5,-60,0,0,-0.00662518 -18877,5614:104:1,-144,-60,0,0,-0.00696985 -18878,5614:103:2,-143.5,-60,0,0,-0.00715364 -18879,5614:103:1,-143,-60,0,0,-0.00717919 -18880,5614:102:2,-142.5,-60,0,0,-0.00710132 -18881,5614:102:1,-142,-60,0,0,-0.00692194 -18882,5614:101:2,-141.5,-60,0,0,-0.0068866 -18883,5614:101:1,-141,-60,0,0,-0.00697137 -18884,5614:100:2,-140.5,-60,0,0,-0.00703528 -18885,5614:100:1,-140,-60,0,0,-0.00693888 -18886,5613:209:2,-139.5,-60,0,0,-0.00677871 -18887,5613:209:1,-139,-60,0,0,-0.00670967 -18888,5613:208:2,-138.5,-60,0,0,-0.00675459 -18889,5613:208:1,-138,-60,0,0,-0.00698691 -18890,5613:207:2,-137.5,-60,0,0,-0.00732278 -18891,5613:207:1,-137,-60,0,0,-0.00752437 -18892,5613:206:2,-136.5,-60,0,0,-0.00740637 -18893,5613:206:1,-136,-60,0,0,-0.00717919 -18894,5613:205:2,-135.5,-60,0,0,-0.00723209 -18895,5613:205:1,-135,-60,0,0,-0.0073293 -18896,5613:104:2,-134.5,-60,0,0,-0.0075428 -18897,5613:104:1,-134,-60,0,0,-0.00789153 -18898,5613:103:2,-133.5,-60,0,0,-0.00819792 -18899,5613:103:1,-133,-60,0,0,-0.00848404 -18900,5613:102:2,-132.5,-60,0,0,-0.00872565 -18901,5613:102:1,-132,-60,0,0,-0.00878024 -18902,5613:101:2,-131.5,-60,0,0,-0.00842374 -18903,5613:101:1,-131,-60,0,0,-0.00779893 -18904,5613:100:2,-130.5,-60,0,0,-0.00747262 -18905,5613:100:1,-130,-60,0,0,-0.00739978 -18906,5612:209:2,-129.5,-60,0,0,-0.00776947 -18907,5612:209:1,-129,-60,0,0,-0.008218 -18908,5612:208:2,-128.5,-60,0,0,-0.00816327 -18909,5612:208:1,-128,-60,0,0,-0.00806027 -18910,5612:207:2,-127.5,-60,0,0,-0.00803877 -18911,5612:207:1,-127,-60,0,0,-0.00771261 -18912,5612:206:2,-126.5,-60,0,0,-0.00749091 -18913,5612:206:1,-126,-60,0,0,-0.00729677 -18914,5612:205:2,-125.5,-60,0,0,-0.00721923 -18915,5612:205:1,-125,-60,0,0,-0.00745933 -18916,5612:104:2,-124.5,-60,0,0,-0.00794265 -18917,5612:104:1,-124,-60,0,0,-0.00843503 -18918,5612:103:2,-123.5,-60,0,0,-0.00939599 -18919,5612:103:1,-123,-60,0,0,-0.00994592 -18920,5612:102:2,-122.5,-60,0,0,-0.0100553 -18921,5612:102:1,-122,-60,0,0,-0.010053 -18922,5612:101:2,-121.5,-60,0,0,-0.0100418 -18923,5612:101:1,-121,-60,0,0,-0.0100105 -18924,5612:100:2,-120.5,-60,0,0,-0.0099793 -18925,5612:100:1,-120,-60,0,0,-0.00995039 -18926,5611:209:2,-119.5,-60,0,0,-0.00994592 -18927,5611:209:1,-119,-60,0,0,-0.0100329 -18928,5611:208:2,-118.5,-60,0,0,-0.010175 -18929,5611:208:1,-118,-60,0,0,-0.0102846 -18930,5611:207:2,-117.5,-60,0,0,-0.0103145 -18931,5611:207:1,-117,-60,0,0,-0.0102205 -18932,5611:206:2,-116.5,-60,0,0,-0.00995263 -18933,5611:206:1,-116,-60,0,0,-0.00944215 -18934,5611:205:2,-115.5,-60,0,0,-0.00890044 -18935,5611:205:1,-115,-60,0,0,-0.00864431 -18936,5611:104:2,-114.5,-60,0,0,-0.00871201 -18937,5611:104:1,-114,-60,0,0,-0.00901427 -18938,5611:103:2,-113.5,-60,0,0,-0.00933328 -18939,5611:103:1,-113,-60,0,0,-0.00953742 -18940,5611:102:2,-112.5,-60,0,0,-0.00965731 -18941,5611:102:1,-112,-60,0,0,-0.00973951 -18942,5611:101:2,-111.5,-60,0,0,-0.00976561 -18943,5611:101:1,-111,-60,0,0,-0.00973301 -18944,5611:100:2,-110.5,-60,0,0,-0.00965731 -18945,5611:100:1,-110,-60,0,0,-0.00953314 -18946,5610:209:2,-109.5,-60,0,0,-0.00956083 -18947,5610:209:1,-109,-60,0,0,-0.0096487 -18948,5610:208:2,-108.5,-60,0,0,-0.00968536 -18949,5610:208:1,-108,-60,0,0,-0.0097417 -18950,5610:207:2,-107.5,-60,0,0,-0.00977652 -18951,5610:207:1,-107,-60,0,0,-0.0094527 -18952,5610:206:2,-106.5,-60,0,0,-0.00876461 -18953,5610:206:1,-106,-60,0,0,-0.00845007 -18954,5610:205:2,-105.5,-60,0,0,-0.00874507 -18955,5610:205:1,-105,-60,0,0,-0.00959074 -18956,5610:104:2,-104.5,-60,0,0,-0.0103559 -18957,5610:104:1,-104,-60,0,0,-0.0105496 -18958,5610:103:2,-103.5,-60,0,0,-0.00994592 -18959,5610:103:1,-103,-60,0,0,-0.00851624 -18960,5610:102:2,-102.5,-60,0,0,-0.00780243 -18961,5610:102:1,-102,-60,0,0,-0.00744935 -18962,5610:101:2,-101.5,-60,0,0,-0.00716798 -18963,5610:101:1,-101,-60,0,0,-0.0069807 -18964,5610:100:2,-100.5,-60,0,0,-0.00686671 -18965,5610:100:1,-100,-60,0,0,-0.00681498 -18966,5609:209:2,-99.5,-60,0,0,-0.00686517 -18967,5609:209:1,-99,-60,0,0,-0.0071808 -18968,5609:208:2,-98.5,-60,0,0,-0.00783202 -18969,5609:208:1,-98,-60,0,0,-0.00803517 -18970,5609:207:2,-97.5,-60,0,0,-0.00785825 -18971,5609:207:1,-97,-60,0,0,-0.00759674 -18972,5609:206:2,-96.5,-60,0,0,-0.00672463 -18973,5609:206:1,-96,-60,0,0,-0.00609109 -18974,5609:205:2,-95.5,-60,0,0,-0.00585874 -18975,5609:205:1,-95,-60,0,0,-0.00596252 -18976,5609:104:2,-94.5,-60,0,0,-0.00637795 -18977,5609:104:1,-94,-60,0,0,-0.00652717 -18978,5609:103:2,-93.5,-60,0,0,-0.00676965 -18979,5609:103:1,-93,-60,0,0,-0.00694817 -18980,5609:102:2,-92.5,-60,0,0,-0.00745766 -18981,5609:102:1,-92,-60,0,0,-0.00706505 -18982,5609:101:2,-91.5,-60,0,0,-0.00652864 -18983,5609:101:1,-91,-60,0,0,-0.00732766 -18984,5609:100:2,-90.5,-60,0,0,-0.00792502 -18985,5609:100:1,-90,-60,0,0,-0.00778855 -18986,5608:209:2,-89.5,-60,0,0,-0.00762047 -18987,5608:209:1,-89,-60,0,0,-0.00778162 -18988,5608:208:2,-88.5,-60,0,0,-0.00769377 -18989,5608:208:1,-88,-60,0,0,-0.00807108 -18990,5608:207:2,-87.5,-60,0,0,-0.00882539 -18991,5608:207:1,-87,-60,0,0,-0.00888852 -18992,5608:206:2,-86.5,-60,0,0,-0.00865202 -18993,5608:206:1,-86,-60,0,0,-0.00783378 -18994,5608:205:2,-85.5,-60,0,0,-0.0069281 -18995,5608:205:1,-85,-60,0,0,-0.00615644 -18996,5608:104:2,-84.5,-60,0,0,-0.00579142 -18997,5608:104:1,-84,-60,0,0,-0.00562777 -18998,5608:103:2,-83.5,-60,0,0,-0.0056919 -18999,5608:103:1,-83,-60,0,0,-0.0056919 -19000,5608:102:2,-82.5,-60,0,0,-0.00567421 -19001,5608:102:1,-82,-60,0,0,-0.00565282 -19002,5608:101:2,-81.5,-60,0,0,-0.00565033 -19003,5608:101:1,-81,-60,0,0,-0.00566414 -19004,5608:100:2,-80.5,-60,0,0,-0.00563277 -19005,5608:100:1,-80,-60,0,0,-0.0055446 -19006,5607:209:2,-79.5,-60,0,0,-0.00549189 -19007,5607:209:1,-79,-60,0,0,-0.00558418 -19008,5607:208:2,-78.5,-60,0,0,-0.00566414 -19009,5607:208:1,-78,-60,0,0,-0.0061006 -19010,5607:207:2,-77.5,-60,0,0,-0.00668885 -19011,5607:207:1,-77,-60,0,0,-0.00703685 -19012,5607:206:2,-76.5,-60,0,0,-0.00672312 -19013,5607:206:1,-76,-60,0,0,-0.00627808 -19014,5607:205:2,-75.5,-60,0,0,-0.00611282 -19015,5607:205:1,-75,-60,0,0,-0.00621835 -19016,5607:104:2,-74.5,-60,0,0,-0.00658989 -19017,5607:104:1,-74,-60,0,0,-0.00727242 -19018,5607:103:2,-73.5,-60,0,0,-0.00772294 -19019,5607:103:1,-73,-60,0,0,-0.00833045 -19020,5607:102:2,-72.5,-60,0,0,-0.00807108 -19021,5607:102:1,-72,-60,0,0,-0.00755459 -19022,5607:101:2,-71.5,-60,0,0,-0.00687893 -19023,5607:101:1,-71,-60,0,0,-0.00640923 -19024,5607:100:2,-70.5,-60,0,0,-0.00630044 -19025,5607:100:1,-70,-60,0,0,-0.00609518 -19026,5606:209:2,-69.5,-60,0,0,-0.0060345 -19027,5606:209:1,-69,-60,0,0,-0.00600371 -19028,5606:208:2,-68.5,-60,0,0,-0.00597576 -19029,5606:208:1,-68,-60,0,0,-0.00594399 -19030,5606:207:2,-67.5,-60,0,0,-0.00586916 -19031,5606:207:1,-67,-60,0,0,-0.00607083 -19032,5606:206:2,-66.5,-60,0,0,-0.00676662 -19033,5606:205:2,-65.5,-60,0,0,-0.00857528 -19034,5606:205:1,-65,-60,0,0,-0.00894621 -19035,5606:100:1,-60,-60,0,0,-0.00638648 -19036,5605:209:2,-59.5,-60,0,0,-0.00635531 -19037,5605:209:1,-59,-60,0,0,-0.00626413 -19038,5605:208:2,-58.5,-60,0,0,-0.00611145 -19039,5605:208:1,-58,-60,0,0,-0.00589793 -19040,5605:207:2,-57.5,-60,0,0,-0.00556064 -19041,5605:207:1,-57,-60,0,0,-0.00551513 -19042,5605:206:2,-56.5,-60,0,0,-0.00551024 -19043,5605:206:1,-56,-60,0,0,-0.00550534 -19044,5605:205:2,-55.5,-60,0,0,-0.005498 -19045,5605:205:1,-55,-60,0,0,-0.00549069 -19046,5605:104:2,-54.5,-60,0,0,-0.00548091 -19047,5605:104:1,-54,-60,0,0,-0.00547119 -19048,5605:103:2,-53.5,-60,0,0,-0.00546755 -19049,5605:103:1,-53,-60,0,0,-0.00546755 -19050,5605:102:2,-52.5,-60,0,0,-0.00546878 -19051,5605:102:1,-52,-60,0,0,-0.00546755 -19052,5605:101:2,-51.5,-60,0,0,-0.00546392 -19053,5605:101:1,-51,-60,0,0,-0.00546148 -19054,5605:100:2,-50.5,-60,0,0,-0.00546026 -19055,5605:100:1,-50,-60,0,0,-0.00545907 -19056,5604:209:2,-49.5,-60,0,0,-0.00545785 -19057,5604:209:1,-49,-60,0,0,-0.00545907 -19058,5604:208:2,-48.5,-60,0,0,-0.00545785 -19059,5604:208:1,-48,-60,0,0,-0.00545663 -19060,5604:207:2,-47.5,-60,0,0,-0.00545663 -19061,5604:207:1,-47,-60,0,0,-0.00545663 -19062,5604:206:2,-46.5,-60,0,0,-0.00545663 -19063,5604:206:1,-46,-60,0,0,-0.00545663 -19064,5604:205:2,-45.5,-60,0,0,-0.00545663 -19065,5604:205:1,-45,-60,0,0,-0.00545541 -19066,5604:104:2,-44.5,-60,0,0,-0.00545541 -19067,5604:104:1,-44,-60,0,0,-0.00545541 -19068,5604:103:2,-43.5,-60,0,0,-0.00545541 -19069,5604:103:1,-43,-60,0,0,-0.00545541 -19070,5604:102:2,-42.5,-60,0,0,-0.00545541 -19071,5604:102:1,-42,-60,0,0,-0.00545541 -19072,5604:101:2,-41.5,-60,0,0,-0.00545541 -19073,5604:101:1,-41,-60,0,0,-0.00545541 -19074,5604:100:2,-40.5,-60,0,0,-0.00545663 -19075,5604:100:1,-40,-60,0,0,-0.00545663 -19076,5603:209:2,-39.5,-60,0,0,-0.00545663 -19077,5603:209:1,-39,-60,0,0,-0.00545663 -19078,5603:208:2,-38.5,-60,0,0,-0.00545663 -19079,5603:208:1,-38,-60,0,0,-0.00545663 -19080,5603:207:2,-37.5,-60,0,0,-0.00545663 -19081,5603:207:1,-37,-60,0,0,-0.00545663 -19082,5603:206:2,-36.5,-60,0,0,-0.00545663 -19083,5603:206:1,-36,-60,0,0,-0.00545663 -19084,5603:205:2,-35.5,-60,0,0,-0.00545663 -19085,5603:205:1,-35,-60,0,0,-0.00545663 -19086,5603:104:2,-34.5,-60,0,0,-0.00545663 -19087,5603:104:1,-34,-60,0,0,-0.00545663 -19088,5603:103:2,-33.5,-60,0,0,-0.00545663 -19089,5603:103:1,-33,-60,0,0,-0.00545663 -19090,5603:102:2,-32.5,-60,0,0,-0.00545663 -19091,5603:102:1,-32,-60,0,0,-0.00545663 -19092,5603:101:2,-31.5,-60,0,0,-0.00545785 -19093,5603:101:1,-31,-60,0,0,-0.00545785 -19094,5603:100:2,-30.5,-60,0,0,-0.00545785 -19095,5603:100:1,-30,-60,0,0,-0.00545785 -19096,5602:209:2,-29.5,-60,0,0,-0.00545785 -19097,5602:209:1,-29,-60,0,0,-0.00545663 -19098,5602:208:2,-28.5,-60,0,0,-0.00545663 -19099,5602:208:1,-28,-60,0,0,-0.00545663 -19100,5602:207:2,-27.5,-60,0,0,-0.00545663 -19101,5602:207:1,-27,-60,0,0,-0.00545541 -19102,5602:206:2,-26.5,-60,0,0,-0.00545541 -19103,5602:206:1,-26,-60,0,0,-0.00545541 -19104,5602:205:2,-25.5,-60,0,0,-0.00545541 -19105,5602:205:1,-25,-60,0,0,-0.00545541 -19106,5602:104:2,-24.5,-60,0,0,-0.00545423 -19107,5602:104:1,-24,-60,0,0,-0.00545423 -19108,5602:103:2,-23.5,-60,0,0,-0.00545423 -19109,5602:103:1,-23,-60,0,0,-0.005453 -19110,5602:102:2,-22.5,-60,0,0,-0.005453 -19111,5602:102:1,-22,-60,0,0,-0.00545179 -19112,5602:101:2,-21.5,-60,0,0,-0.00545057 -19113,5602:101:1,-21,-60,0,0,-0.00545057 -19114,5602:100:2,-20.5,-60,0,0,-0.00544935 -19115,5602:100:1,-20,-60,0,0,-0.00544935 -19116,5601:209:2,-19.5,-60,0,0,-0.00544816 -19117,5601:209:1,-19,-60,0,0,-0.00544816 -19118,5601:208:2,-18.5,-60,0,0,-0.00544695 -19119,5601:208:1,-18,-60,0,0,-0.00544573 -19120,5601:207:2,-17.5,-60,0,0,-0.00544451 -19121,5601:207:1,-17,-60,0,0,-0.00544333 -19122,5601:206:2,-16.5,-60,0,0,-0.00544211 -19123,5601:206:1,-16,-60,0,0,-0.00544089 -19124,5601:205:2,-15.5,-60,0,0,-0.00543968 -19125,5601:205:1,-15,-60,0,0,-0.0054385 -19126,5601:104:2,-14.5,-60,0,0,-0.0054385 -19127,5601:104:1,-14,-60,0,0,-0.0054385 -19128,5601:103:2,-13.5,-60,0,0,-0.0054385 -19129,5601:103:1,-13,-60,0,0,-0.00543968 -19130,5601:102:2,-12.5,-60,0,0,-0.0054385 -19131,5601:102:1,-12,-60,0,0,-0.0054385 -19132,5601:101:2,-11.5,-60,0,0,-0.0054385 -19133,5601:101:1,-11,-60,0,0,-0.00543728 -19134,5601:100:2,-10.5,-60,0,0,-0.00543728 -19135,5601:100:1,-10,-60,0,0,-0.00543728 -19136,5600:209:2,-9.5,-60,0,0,-0.0054385 -19137,5600:209:1,-9,-60,0,0,-0.0054385 -19138,5600:208:2,-8.5,-60,0,0,-0.00543968 -19139,5600:208:1,-8,-60,0,0,-0.00543968 -19140,5600:207:2,-7.5,-60,0,0,-0.0054385 -19141,5600:207:1,-7,-60,0,0,-0.0054385 -19142,5600:206:2,-6.5,-60,0,0,-0.0054385 -19143,5600:206:1,-6,-60,0,0,-0.00543728 -19144,5600:205:2,-5.5,-60,0,0,-0.00543728 -19145,5600:205:1,-5,-60,0,0,-0.00543728 -19146,5600:104:2,-4.5,-60,0,0,-0.0054385 -19147,5600:104:1,-4,-60,0,0,-0.0054385 -19148,5600:103:2,-3.5,-60,0,0,-0.0054385 -19149,5600:103:1,-3,-60,0,0,-0.0054385 -19150,5600:102:2,-2.5,-60,0,0,-0.0054385 -19151,5600:102:1,-2,-60,0,0,-0.0054385 -19152,5600:101:2,-1.5,-60,0,0,-0.0054385 -19153,5600:101:1,-1,-60,0,0,-0.00543968 -19154,5600:100:2,-0.5,-60,0,0,-0.00543968 -19155,3600:100:2,0,-60,0,0,-0.00544089 -19156,3600:100:2,0.5,-60,0,0,-0.00543968 -19157,3600:101:1,1,-60,0,0,-0.0054385 -19158,3600:101:2,1.5,-60,0,0,-0.0054385 -19159,3600:102:1,2,-60,0,0,-0.0054385 -19160,3600:102:2,2.5,-60,0,0,-0.0054385 -19161,3600:103:1,3,-60,0,0,-0.0054385 -19162,3600:103:2,3.5,-60,0,0,-0.0054385 -19163,3600:104:1,4,-60,0,0,-0.00543968 -19164,3600:104:2,4.5,-60,0,0,-0.00543968 -19165,3600:205:1,5,-60,0,0,-0.00543968 -19166,3600:205:2,5.5,-60,0,0,-0.00544089 -19167,3600:206:1,6,-60,0,0,-0.00544089 -19168,3600:206:2,6.5,-60,0,0,-0.00544089 -19169,3600:207:1,7,-60,0,0,-0.00544089 -19170,3600:207:2,7.5,-60,0,0,-0.00543968 -19171,3600:208:1,8,-60,0,0,-0.00543968 -19172,3600:208:2,8.5,-60,0,0,-0.00543968 -19173,3600:209:1,9,-60,0,0,-0.0054385 -19174,3600:209:2,9.5,-60,0,0,-0.00543728 -19175,3601:100:1,10,-60,0,0,-0.00543728 -19176,3601:100:2,10.5,-60,0,0,-0.00543728 -19177,3601:101:1,11,-60,0,0,-0.0054385 -19178,3601:101:2,11.5,-60,0,0,-0.0054385 -19179,3601:102:1,12,-60,0,0,-0.00543728 -19180,3601:102:2,12.5,-60,0,0,-0.00543728 -19181,3601:103:1,13,-60,0,0,-0.00543968 -19182,3601:103:2,13.5,-60,0,0,-0.00544211 -19183,3601:104:1,14,-60,0,0,-0.00544089 -19184,3601:104:2,14.5,-60,0,0,-0.00543968 -19185,3601:205:1,15,-60,0,0,-0.0054385 -19186,3601:205:2,15.5,-60,0,0,-0.0054385 -19187,3601:206:1,16,-60,0,0,-0.0054385 -19188,3601:206:2,16.5,-60,0,0,-0.00543728 -19189,3601:207:1,17,-60,0,0,-0.0054385 -19190,3601:207:2,17.5,-60,0,0,-0.00543968 -19191,3601:208:1,18,-60,0,0,-0.00543606 -19192,3601:208:2,18.5,-60,0,0,-0.00543124 -19193,3601:209:1,19,-60,0,0,-0.00543245 -19194,3601:209:2,19.5,-60,0,0,-0.00543245 -19195,3602:100:1,20,-60,0,0,-0.00543363 -19196,3602:100:2,20.5,-60,0,0,-0.00543363 -19197,3602:101:1,21,-60,0,0,-0.00543485 -19198,3602:101:2,21.5,-60,0,0,-0.00543485 -19199,3602:102:1,22,-60,0,0,-0.00543485 -19200,3602:102:2,22.5,-60,0,0,-0.00543485 -19201,3602:103:1,23,-60,0,0,-0.00543606 -19202,3602:103:2,23.5,-60,0,0,-0.00543728 -19203,3602:104:1,24,-60,0,0,-0.00543728 -19204,3602:104:2,24.5,-60,0,0,-0.00543728 -19205,3602:205:1,25,-60,0,0,-0.0054385 -19206,3602:205:2,25.5,-60,0,0,-0.00543968 -19207,3602:206:1,26,-60,0,0,-0.00544089 -19208,3602:206:2,26.5,-60,0,0,-0.00544211 -19209,3602:207:1,27,-60,0,0,-0.00544333 -19210,3602:207:2,27.5,-60,0,0,-0.00544451 -19211,3602:208:1,28,-60,0,0,-0.00544695 -19212,3602:208:2,28.5,-60,0,0,-0.00544816 -19213,3602:209:1,29,-60,0,0,-0.00544816 -19214,3602:209:2,29.5,-60,0,0,-0.00544816 -19215,3603:100:1,30,-60,0,0,-0.00544211 -19216,3603:100:2,30.5,-60,0,0,-0.0054385 -19217,3603:101:1,31,-60,0,0,-0.0054385 -19218,3603:101:2,31.5,-60,0,0,-0.00544573 -19219,3603:102:1,32,-60,0,0,-0.00544816 -19220,3603:102:2,32.5,-60,0,0,-0.00545057 -19221,3603:103:1,33,-60,0,0,-0.00545423 -19222,3603:103:2,33.5,-60,0,0,-0.00545663 -19223,3603:104:1,34,-60,0,0,-0.00546026 -19224,3603:104:2,34.5,-60,0,0,-0.00545785 -19225,3603:205:1,35,-60,0,0,-0.00545663 -19226,3603:205:2,35.5,-60,0,0,-0.00545423 -19227,3603:206:1,36,-60,0,0,-0.00545179 -19228,3603:206:2,36.5,-60,0,0,-0.00544935 -19229,3603:207:1,37,-60,0,0,-0.00544816 -19230,3603:207:2,37.5,-60,0,0,-0.00544695 -19231,3603:208:1,38,-60,0,0,-0.00544695 -19232,3603:208:2,38.5,-60,0,0,-0.00544451 -19233,3603:209:1,39,-60,0,0,-0.00544333 -19234,3603:209:2,39.5,-60,0,0,-0.00544333 -19235,3604:100:1,40,-60,0,0,-0.00544451 -19236,3604:100:2,40.5,-60,0,0,-0.00544695 -19237,3604:101:1,41,-60,0,0,-0.00544935 -19238,3604:101:2,41.5,-60,0,0,-0.00545057 -19239,3604:102:1,42,-60,0,0,-0.00545179 -19240,3604:102:2,42.5,-60,0,0,-0.00545541 -19241,3604:103:1,43,-60,0,0,-0.00546026 -19242,3604:103:2,43.5,-60,0,0,-0.00546026 -19243,3604:104:1,44,-60,0,0,-0.00545907 -19244,3604:104:2,44.5,-60,0,0,-0.00545785 -19245,3604:205:1,45,-60,0,0,-0.00546026 -19246,3604:205:2,45.5,-60,0,0,-0.00546392 -19247,3604:206:1,46,-60,0,0,-0.00546392 -19248,3604:206:2,46.5,-60,0,0,-0.00546633 -19249,3604:207:1,47,-60,0,0,-0.00546878 -19250,3604:207:2,47.5,-60,0,0,-0.00547119 -19251,3604:208:1,48,-60,0,0,-0.00547119 -19252,3604:208:2,48.5,-60,0,0,-0.00547241 -19253,3604:209:1,49,-60,0,0,-0.00547486 -19254,3604:209:2,49.5,-60,0,0,-0.00547605 -19255,3605:100:1,50,-60,0,0,-0.00547486 -19256,3605:100:2,50.5,-60,0,0,-0.00547364 -19257,3605:101:1,51,-60,0,0,-0.00547605 -19258,3605:101:2,51.5,-60,0,0,-0.0054785 -19259,3605:102:1,52,-60,0,0,-0.00547727 -19260,3605:102:2,52.5,-60,0,0,-0.00547486 -19261,3605:103:1,53,-60,0,0,-0.00547 -19262,3605:103:2,53.5,-60,0,0,-0.00546755 -19263,3605:104:1,54,-60,0,0,-0.00546633 -19264,3605:104:2,54.5,-60,0,0,-0.00547 -19265,3605:205:1,55,-60,0,0,-0.00548091 -19266,3605:205:2,55.5,-60,0,0,-0.00548459 -19267,3605:206:1,56,-60,0,0,-0.00548824 -19268,3605:206:2,56.5,-60,0,0,-0.00548582 -19269,3605:207:1,57,-60,0,0,-0.00548459 -19270,3605:207:2,57.5,-60,0,0,-0.00548337 -19271,3605:208:1,58,-60,0,0,-0.00548091 -19272,3605:208:2,58.5,-60,0,0,-0.00547972 -19273,3605:209:1,59,-60,0,0,-0.00547605 -19274,3605:209:2,59.5,-60,0,0,-0.00547 -19275,3606:100:1,60,-60,0,0,-0.00546511 -19276,3606:100:2,60.5,-60,0,0,-0.00546148 -19277,3606:101:1,61,-60,0,0,-0.00546026 -19278,3606:101:2,61.5,-60,0,0,-0.00546148 -19279,3606:102:1,62,-60,0,0,-0.00546148 -19280,3606:102:2,62.5,-60,0,0,-0.00546148 -19281,3606:103:1,63,-60,0,0,-0.00546148 -19282,3606:103:2,63.5,-60,0,0,-0.00546026 -19283,3606:104:1,64,-60,0,0,-0.00545663 -19284,3606:104:2,64.5,-60,0,0,-0.005453 -19285,3606:205:1,65,-60,0,0,-0.005453 -19286,3606:205:2,65.5,-60,0,0,-0.00545423 -19287,3606:206:1,66,-60,0,0,-0.00545423 -19288,3606:206:2,66.5,-60,0,0,-0.00545179 -19289,3606:207:1,67,-60,0,0,-0.00545057 -19290,3606:207:2,67.5,-60,0,0,-0.00545057 -19291,3606:208:1,68,-60,0,0,-0.005453 -19292,3606:208:2,68.5,-60,0,0,-0.005453 -19293,3606:209:1,69,-60,0,0,-0.005453 -19294,3606:209:2,69.5,-60,0,0,-0.005453 -19295,3607:100:1,70,-60,0,0,-0.00545179 -19296,3607:100:2,70.5,-60,0,0,-0.00545057 -19297,3607:101:1,71,-60,0,0,-0.00545057 -19298,3607:101:2,71.5,-60,0,0,-0.00545179 -19299,3607:102:1,72,-60,0,0,-0.005453 -19300,3607:102:2,72.5,-60,0,0,-0.005453 -19301,3607:103:2,73.5,-60,0,0,-0.00545541 -19302,3607:104:1,74,-60,0,0,-0.00546392 -19303,3607:104:2,74.5,-60,0,0,-0.00545423 -19304,3607:205:1,75,-60,0,0,-0.00545541 -19305,3607:205:2,75.5,-60,0,0,-0.005453 -19306,3607:206:1,76,-60,0,0,-0.00545179 -19307,3607:206:2,76.5,-60,0,0,-0.005453 -19308,3607:207:1,77,-60,0,0,-0.005453 -19309,3607:207:2,77.5,-60,0,0,-0.00545423 -19310,3607:208:1,78,-60,0,0,-0.005453 -19311,3607:208:2,78.5,-60,0,0,-0.00545179 -19312,3607:209:1,79,-60,0,0,-0.00545541 -19313,3607:209:2,79.5,-60,0,0,-0.00545663 -19314,3608:100:1,80,-60,0,0,-0.00545907 -19315,3608:100:2,80.5,-60,0,0,-0.0054627 -19316,3608:101:1,81,-60,0,0,-0.00546755 -19317,3608:101:2,81.5,-60,0,0,-0.00547605 -19318,3608:102:1,82,-60,0,0,-0.00548214 -19319,3608:102:2,82.5,-60,0,0,-0.00548582 -19320,3608:103:1,83,-60,0,0,-0.00548582 -19321,3608:103:2,83.5,-60,0,0,-0.00548582 -19322,3608:104:1,84,-60,0,0,-0.00548091 -19323,3608:104:2,84.5,-60,0,0,-0.00548214 -19324,3608:205:1,85,-60,0,0,-0.00548337 -19325,3608:205:2,85.5,-60,0,0,-0.00548337 -19326,3608:206:1,86,-60,0,0,-0.00548337 -19327,3608:206:2,86.5,-60,0,0,-0.00548337 -19328,3608:207:1,87,-60,0,0,-0.00548214 -19329,3608:207:2,87.5,-60,0,0,-0.00548214 -19330,3608:208:1,88,-60,0,0,-0.00548214 -19331,3608:208:2,88.5,-60,0,0,-0.00547972 -19332,3608:209:1,89,-60,0,0,-0.00547605 -19333,3608:209:2,89.5,-60,0,0,-0.00547605 -19334,3609:100:1,90,-60,0,0,-0.00547486 -19335,3609:100:2,90.5,-60,0,0,-0.00547241 -19336,3609:101:1,91,-60,0,0,-0.00547119 -19337,3609:101:2,91.5,-60,0,0,-0.00547119 -19338,3609:102:1,92,-60,0,0,-0.00547119 -19339,3609:102:2,92.5,-60,0,0,-0.00547 -19340,3609:103:1,93,-60,0,0,-0.00547 -19341,3609:103:2,93.5,-60,0,0,-0.00546878 -19342,3609:104:1,94,-60,0,0,-0.00547 -19343,3609:104:2,94.5,-60,0,0,-0.00556807 -19344,3609:205:1,95,-60,0,0,-0.00582111 -19345,3609:205:2,95.5,-60,0,0,-0.00654172 -19346,3610:104:2,104.5,-60,0,0,-0.00553352 -19347,3610:205:1,105,-60,0,0,-0.00551513 -19348,3610:205:2,105.5,-60,0,0,-0.00550534 -19349,3610:206:1,106,-60,0,0,-0.00550165 -19350,3610:206:2,106.5,-60,0,0,-0.00550046 -19351,3610:207:1,107,-60,0,0,-0.00547972 -19352,3610:207:2,107.5,-60,0,0,-0.0054627 -19353,3610:208:1,108,-60,0,0,-0.00545423 -19354,3610:208:2,108.5,-60,0,0,-0.00544935 -19355,3610:209:1,109,-60,0,0,-0.00544451 -19356,3610:209:2,109.5,-60,0,0,-0.00544573 -19357,3611:100:1,110,-60,0,0,-0.00545663 -19358,3611:100:2,110.5,-60,0,0,-0.00547 -19359,3611:101:1,111,-60,0,0,-0.00547727 -19360,3611:101:2,111.5,-60,0,0,-0.00547486 -19361,3611:102:1,112,-60,0,0,-0.00547486 -19362,3611:102:2,112.5,-60,0,0,-0.00546633 -19363,3611:104:1,114,-60,0,0,-0.00552494 -19364,3611:104:2,114.5,-60,0,0,-0.00552617 -19365,3611:205:1,115,-60,0,0,-0.00550165 -19366,3611:205:2,115.5,-60,0,0,-0.00548214 -19367,3611:206:1,116,-60,0,0,-0.00547972 -19368,3611:206:2,116.5,-60,0,0,-0.0054785 -19369,3611:207:1,117,-60,0,0,-0.00547972 -19370,3611:207:2,117.5,-60,0,0,-0.00548091 -19371,3611:208:1,118,-60,0,0,-0.00547727 -19372,3611:208:2,118.5,-60,0,0,-0.00547605 -19373,3611:209:1,119,-60,0,0,-0.00547241 -19374,3611:209:2,119.5,-60,0,0,-0.00546633 -19375,3612:100:1,120,-60,0,0,-0.00546026 -19376,3612:100:2,120.5,-60,0,0,-0.00546026 -19377,3612:101:1,121,-60,0,0,-0.0054627 -19378,3612:101:2,121.5,-60,0,0,-0.00546633 -19379,3612:102:1,122,-60,0,0,-0.00547605 -19380,3612:102:2,122.5,-60,0,0,-0.00547972 -19381,3612:103:1,123,-60,0,0,-0.00547 -19382,3612:103:2,123.5,-60,0,0,-0.00546633 -19383,3612:104:1,124,-60,0,0,-0.00546148 -19384,3612:104:2,124.5,-60,0,0,-0.00546026 -19385,3612:205:1,125,-60,0,0,-0.00545907 -19386,3612:205:2,125.5,-60,0,0,-0.00545907 -19387,3612:206:1,126,-60,0,0,-0.00545785 -19388,3612:206:2,126.5,-60,0,0,-0.00545057 -19389,3612:207:1,127,-60,0,0,-0.00545663 -19390,3612:207:2,127.5,-60,0,0,-0.00546633 -19391,3612:208:1,128,-60,0,0,-0.0055237 -19392,3612:208:2,128.5,-60,0,0,-0.00551637 -19393,3612:209:1,129,-60,0,0,-0.00548582 -19394,3612:209:2,129.5,-60,0,0,-0.00546755 -19395,3613:100:1,130,-60,0,0,-0.00550288 -19396,3613:100:2,130.5,-60,0,0,-0.00548947 -19397,3613:101:1,131,-60,0,0,-0.00564532 -19398,3613:101:2,131.5,-60,0,0,-0.00569569 -19399,3613:102:1,132,-60,0,0,-0.00618385 -19400,3613:102:2,132.5,-60,0,0,-0.00678474 -19401,3613:103:1,133,-60,0,0,-0.00690195 -19402,3613:103:2,133.5,-60,0,0,-0.00700249 -19403,3613:104:1,134,-60,0,0,-0.007461 -19404,3613:104:2,134.5,-60,0,0,-0.00792146 -19405,3613:205:2,135.5,-60,0,0,-0.00554708 -19406,3613:206:1,136,-60,0,0,-0.0055434 -19407,3613:206:2,136.5,-60,0,0,-0.00551637 -19408,3613:207:1,137,-60,0,0,-0.00558543 -19409,3613:207:2,137.5,-60,0,0,-0.00582237 -19410,3613:208:1,138,-60,0,0,-0.0061237 -19411,3613:208:2,138.5,-60,0,0,-0.00645502 -19412,3613:209:1,139,-60,0,0,-0.00657671 -19413,3613:209:2,139.5,-60,0,0,-0.00660897 -19414,3614:100:1,140,-60,0,0,-0.00667841 -19415,3614:100:2,140.5,-60,0,0,-0.00683926 -19416,3614:101:1,141,-60,0,0,-0.00692194 -19417,3614:101:2,141.5,-60,0,0,-0.00688356 -19418,3614:102:1,142,-60,0,0,-0.0067441 -19419,3614:102:2,142.5,-60,0,0,-0.00661925 -19420,3614:103:1,143,-60,0,0,-0.00628644 -19421,3614:103:2,143.5,-60,0,0,-0.00611689 -19422,3614:104:1,144,-60,0,0,-0.00608163 -19423,3614:104:2,144.5,-60,0,0,-0.00590185 -19424,3614:205:1,145,-60,0,0,-0.00558418 -19425,3614:205:2,145.5,-60,0,0,-0.00548337 -19426,3614:206:1,146,-60,0,0,-0.00547727 -19427,3614:206:2,146.5,-60,0,0,-0.0054785 -19428,3614:207:1,147,-60,0,0,-0.00546755 -19429,3614:207:2,147.5,-60,0,0,-0.005453 -19430,3614:208:1,148,-60,0,0,-0.00545785 -19431,3614:208:2,148.5,-60,0,0,-0.00546026 -19432,3614:209:1,149,-60,0,0,-0.00546026 -19433,3614:209:2,149.5,-60,0,0,-0.00546148 -19434,3615:100:1,150,-60,0,0,-0.0054627 -19435,3615:100:2,150.5,-60,0,0,-0.00546392 -19436,3615:101:1,151,-60,0,0,-0.00546392 -19437,3615:101:2,151.5,-60,0,0,-0.0054627 -19438,3615:102:1,152,-60,0,0,-0.00546148 -19439,3615:102:2,152.5,-60,0,0,-0.0054627 -19440,3615:103:1,153,-60,0,0,-0.00546511 -19441,3615:103:2,153.5,-60,0,0,-0.00546755 -19442,3615:104:1,154,-60,0,0,-0.00546878 -19443,3615:104:2,154.5,-60,0,0,-0.00547 -19444,3615:205:1,155,-60,0,0,-0.00546878 -19445,3615:205:2,155.5,-60,0,0,-0.00546878 -19446,3615:206:1,156,-60,0,0,-0.00546878 -19447,3615:206:2,156.5,-60,0,0,-0.00547 -19448,3615:207:1,157,-60,0,0,-0.00546878 -19449,3615:207:2,157.5,-60,0,0,-0.00546633 -19450,3615:208:1,158,-60,0,0,-0.00546633 -19451,3615:208:2,158.5,-60,0,0,-0.00546755 -19452,3615:209:1,159,-60,0,0,-0.00546633 -19453,3615:209:2,159.5,-60,0,0,-0.00546511 -19454,3616:100:1,160,-60,0,0,-0.00546511 -19455,3616:100:2,160.5,-60,0,0,-0.00546511 -19456,3616:101:1,161,-60,0,0,-0.00546392 -19457,3616:101:2,161.5,-60,0,0,-0.00546392 -19458,3616:102:1,162,-60,0,0,-0.00546755 -19459,3616:102:2,162.5,-60,0,0,-0.00547 -19460,3616:103:1,163,-60,0,0,-0.00546878 -19461,3616:103:2,163.5,-60,0,0,-0.00547119 -19462,3616:104:1,164,-60,0,0,-0.00547119 -19463,3616:104:2,164.5,-60,0,0,-0.00547119 -19464,3616:205:1,165,-60,0,0,-0.00547119 -19465,3616:205:2,165.5,-60,0,0,-0.00547364 -19466,3616:206:1,166,-60,0,0,-0.00547364 -19467,3616:206:2,166.5,-60,0,0,-0.00547364 -19468,3616:207:1,167,-60,0,0,-0.00547364 -19469,3616:207:2,167.5,-60,0,0,-0.00547364 -19470,3616:208:1,168,-60,0,0,-0.00547119 -19471,3616:208:2,168.5,-60,0,0,-0.00547 -19472,3616:209:1,169,-60,0,0,-0.00547 -19473,3616:209:2,169.5,-60,0,0,-0.00547 -19474,3617:100:1,170,-60,0,0,-0.00547 -19475,3617:100:2,170.5,-60,0,0,-0.00547 -19476,3617:101:1,171,-60,0,0,-0.00547 -19477,3617:101:2,171.5,-60,0,0,-0.00547 -19478,3617:102:1,172,-60,0,0,-0.00546878 -19479,3617:102:2,172.5,-60,0,0,-0.00546878 -19480,3617:103:1,173,-60,0,0,-0.00546878 -19481,3617:103:2,173.5,-60,0,0,-0.00546755 -19482,3617:104:1,174,-60,0,0,-0.00546755 -19483,3617:104:2,174.5,-60,0,0,-0.00546755 -19484,3617:205:1,175,-60,0,0,-0.00546755 -19485,3617:205:2,175.5,-60,0,0,-0.00546755 -19486,3617:206:1,176,-60,0,0,-0.00546878 -19487,3617:206:2,176.5,-60,0,0,-0.00546878 -19488,3617:207:1,177,-60,0,0,-0.00546878 -19489,3617:207:2,177.5,-60,0,0,-0.00546878 -19490,3617:208:1,178,-60,0,0,-0.00547 -19491,3617:208:2,178.5,-60,0,0,-0.00547241 -19492,3617:209:1,179,-60,0,0,-0.00547486 -19493,3617:209:2,179.5,-60,0,0,-0.00548091 -19494,3618:100:1,180,-60,0,0,-0.00549069 -19495,5518:390:3,-180,-59.5,0,0,-0.00560405 -19496,5517:499:4,-179.5,-59.5,0,0,-0.00570965 -19497,5517:499:3,-179,-59.5,0,0,-0.0057198 -19498,5517:498:4,-178.5,-59.5,0,0,-0.00579916 -19499,5517:498:3,-178,-59.5,0,0,-0.00566791 -19500,5517:497:4,-177.5,-59.5,0,0,-0.00565409 -19501,5517:497:3,-177,-59.5,0,0,-0.00569063 -19502,5517:496:4,-176.5,-59.5,0,0,-0.00568558 -19503,5517:496:3,-176,-59.5,0,0,-0.00570202 -19504,5517:495:4,-175.5,-59.5,0,0,-0.00562777 -19505,5517:495:3,-175,-59.5,0,0,-0.00552617 -19506,5517:394:4,-174.5,-59.5,0,0,-0.00552861 -19507,5517:394:3,-174,-59.5,0,0,-0.0055434 -19508,5517:393:4,-173.5,-59.5,0,0,-0.00550777 -19509,5517:393:3,-173,-59.5,0,0,-0.00550534 -19510,5517:392:4,-172.5,-59.5,0,0,-0.005498 -19511,5517:392:3,-172,-59.5,0,0,-0.00548459 -19512,5517:391:4,-171.5,-59.5,0,0,-0.00547727 -19513,5517:391:3,-171,-59.5,0,0,-0.00547486 -19514,5517:390:4,-170.5,-59.5,0,0,-0.00547241 -19515,5517:390:3,-170,-59.5,0,0,-0.00547119 -19516,5516:499:4,-169.5,-59.5,0,0,-0.00547 -19517,5516:499:3,-169,-59.5,0,0,-0.00547 -19518,5516:498:4,-168.5,-59.5,0,0,-0.00547 -19519,5516:498:3,-168,-59.5,0,0,-0.00547119 -19520,5516:497:4,-167.5,-59.5,0,0,-0.00547 -19521,5516:497:3,-167,-59.5,0,0,-0.00546755 -19522,5516:496:4,-166.5,-59.5,0,0,-0.00548582 -19523,5516:496:3,-166,-59.5,0,0,-0.00552003 -19524,5516:495:4,-165.5,-59.5,0,0,-0.00553352 -19525,5516:495:3,-165,-59.5,0,0,-0.00555077 -19526,5516:394:4,-164.5,-59.5,0,0,-0.00557177 -19527,5516:394:3,-164,-59.5,0,0,-0.00556558 -19528,5516:393:4,-163.5,-59.5,0,0,-0.005536 -19529,5516:393:3,-163,-59.5,0,0,-0.00549434 -19530,5516:392:4,-162.5,-59.5,0,0,-0.00546755 -19531,5516:392:3,-162,-59.5,0,0,-0.00548582 -19532,5516:391:4,-161.5,-59.5,0,0,-0.00552861 -19533,5516:391:3,-161,-59.5,0,0,-0.00559908 -19534,5516:390:4,-160.5,-59.5,0,0,-0.00568936 -19535,5516:390:3,-160,-59.5,0,0,-0.00584703 -19536,5515:499:4,-159.5,-59.5,0,0,-0.00592419 -19537,5515:499:3,-159,-59.5,0,0,-0.00599574 -19538,5515:498:4,-158.5,-59.5,0,0,-0.006083 -19539,5515:498:3,-158,-59.5,0,0,-0.00622663 -19540,5515:497:4,-157.5,-59.5,0,0,-0.00635531 -19541,5515:497:3,-157,-59.5,0,0,-0.00648809 -19542,5515:496:4,-156.5,-59.5,0,0,-0.00658989 -19543,5515:496:3,-156,-59.5,0,0,-0.00663842 -19544,5515:495:4,-155.5,-59.5,0,0,-0.00666211 -19545,5515:495:3,-155,-59.5,0,0,-0.00665172 -19546,5515:394:4,-154.5,-59.5,0,0,-0.00662518 -19547,5515:394:3,-154,-59.5,0,0,-0.00661781 -19548,5515:393:4,-153.5,-59.5,0,0,-0.006634 -19549,5515:393:3,-153,-59.5,0,0,-0.00667397 -19550,5515:392:4,-152.5,-59.5,0,0,-0.00666361 -19551,5515:392:3,-152,-59.5,0,0,-0.00655189 -19552,5515:391:4,-151.5,-59.5,0,0,-0.00646936 -19553,5515:391:3,-151,-59.5,0,0,-0.00654754 -19554,5515:390:4,-150.5,-59.5,0,0,-0.00659284 -19555,5515:390:3,-150,-59.5,0,0,-0.0066918 -19556,5514:499:4,-149.5,-59.5,0,0,-0.00690195 -19557,5514:499:3,-149,-59.5,0,0,-0.0069004 -19558,5514:498:4,-148.5,-59.5,0,0,-0.00688505 -19559,5514:498:3,-148,-59.5,0,0,-0.00689272 -19560,5514:497:4,-147.5,-59.5,0,0,-0.00690654 -19561,5514:497:3,-147,-59.5,0,0,-0.0068866 -19562,5514:496:4,-146.5,-59.5,0,0,-0.00682558 -19563,5514:496:3,-146,-59.5,0,0,-0.00680587 -19564,5514:495:4,-145.5,-59.5,0,0,-0.00693271 -19565,5514:495:3,-145,-59.5,0,0,-0.00708081 -19566,5514:394:4,-144.5,-59.5,0,0,-0.00719837 -19567,5514:394:3,-144,-59.5,0,0,-0.00736528 -19568,5514:393:4,-143.5,-59.5,0,0,-0.00745437 -19569,5514:393:3,-143,-59.5,0,0,-0.00741956 -19570,5514:392:4,-142.5,-59.5,0,0,-0.00736038 -19571,5514:392:3,-142,-59.5,0,0,-0.00727732 -19572,5514:391:4,-141.5,-59.5,0,0,-0.00714728 -19573,5514:391:3,-141,-59.5,0,0,-0.00711396 -19574,5514:390:4,-140.5,-59.5,0,0,-0.00712189 -19575,5514:390:3,-140,-59.5,0,0,-0.00704938 -19576,5513:499:4,-139.5,-59.5,0,0,-0.00688048 -19577,5513:499:3,-139,-59.5,0,0,-0.00685148 -19578,5513:498:4,-138.5,-59.5,0,0,-0.00718236 -19579,5513:498:3,-138,-59.5,0,0,-0.00766471 -19580,5513:497:4,-137.5,-59.5,0,0,-0.00779724 -19581,5513:497:3,-137,-59.5,0,0,-0.00778681 -19582,5513:496:4,-136.5,-59.5,0,0,-0.0077747 -19583,5513:496:3,-136,-59.5,0,0,-0.00738828 -19584,5513:495:4,-135.5,-59.5,0,0,-0.00719036 -19585,5513:495:3,-135,-59.5,0,0,-0.0072984 -19586,5513:394:4,-134.5,-59.5,0,0,-0.00765102 -19587,5513:394:3,-134,-59.5,0,0,-0.0079303 -19588,5513:393:4,-133.5,-59.5,0,0,-0.00806565 -19589,5513:393:3,-133,-59.5,0,0,-0.00826203 -19590,5513:392:4,-132.5,-59.5,0,0,-0.00875096 -19591,5513:392:3,-132,-59.5,0,0,-0.00916218 -19592,5513:391:4,-131.5,-59.5,0,0,-0.00914586 -19593,5513:391:3,-131,-59.5,0,0,-0.00883127 -19594,5513:390:4,-130.5,-59.5,0,0,-0.00837138 -19595,5513:390:3,-130,-59.5,0,0,-0.0081651 -19596,5512:499:4,-129.5,-59.5,0,0,-0.00823081 -19597,5512:499:3,-129,-59.5,0,0,-0.00839002 -19598,5512:498:4,-128.5,-59.5,0,0,-0.00840126 -19599,5512:498:3,-128,-59.5,0,0,-0.00828048 -19600,5512:497:4,-127.5,-59.5,0,0,-0.0084576 -19601,5512:497:3,-127,-59.5,0,0,-0.00858479 -19602,5512:496:4,-126.5,-59.5,0,0,-0.00852191 -19603,5512:496:3,-126,-59.5,0,0,-0.00856764 -19604,5512:495:4,-125.5,-59.5,0,0,-0.00879985 -19605,5512:495:3,-125,-59.5,0,0,-0.0090424 -19606,5512:394:4,-124.5,-59.5,0,0,-0.00919697 -19607,5512:394:3,-124,-59.5,0,0,-0.00918878 -19608,5512:393:4,-123.5,-59.5,0,0,-0.00908891 -19609,5512:393:3,-123,-59.5,0,0,-0.00946751 -19610,5512:392:4,-122.5,-59.5,0,0,-0.00979617 -19611,5512:392:3,-122,-59.5,0,0,-0.00999263 -19612,5512:391:4,-121.5,-59.5,0,0,-0.010184 -19613,5512:391:3,-121,-59.5,0,0,-0.0103444 -19614,5512:390:4,-120.5,-59.5,0,0,-0.0104512 -19615,5512:390:3,-120,-59.5,0,0,-0.0104979 -19616,5511:499:4,-119.5,-59.5,0,0,-0.0105144 -19617,5511:499:3,-119,-59.5,0,0,-0.0105167 -19618,5511:498:4,-118.5,-59.5,0,0,-0.0105144 -19619,5511:498:3,-118,-59.5,0,0,-0.010512 -19620,5511:497:4,-117.5,-59.5,0,0,-0.0105261 -19621,5511:497:3,-117,-59.5,0,0,-0.010545 -19622,5511:496:4,-116.5,-59.5,0,0,-0.0105332 -19623,5511:496:3,-116,-59.5,0,0,-0.0103791 -19624,5511:495:4,-115.5,-59.5,0,0,-0.0099105 -19625,5511:495:3,-115,-59.5,0,0,-0.00933957 -19626,5511:394:4,-114.5,-59.5,0,0,-0.00906261 -19627,5511:394:3,-114,-59.5,0,0,-0.00914586 -19628,5511:393:4,-113.5,-59.5,0,0,-0.00946113 -19629,5511:393:3,-113,-59.5,0,0,-0.00979617 -19630,5511:392:4,-112.5,-59.5,0,0,-0.0100262 -19631,5511:392:3,-112,-59.5,0,0,-0.0101613 -19632,5511:391:4,-111.5,-59.5,0,0,-0.0102342 -19633,5511:391:3,-111,-59.5,0,0,-0.0101093 -19634,5511:390:4,-110.5,-59.5,0,0,-0.00991711 -19635,5511:390:3,-110,-59.5,0,0,-0.00985317 -19636,5510:499:4,-109.5,-59.5,0,0,-0.00987076 -19637,5510:499:3,-109,-59.5,0,0,-0.0099105 -19638,5510:498:4,-108.5,-59.5,0,0,-0.00996816 -19639,5510:498:3,-108,-59.5,0,0,-0.0100733 -19640,5510:497:4,-107.5,-59.5,0,0,-0.0101296 -19641,5510:497:3,-107,-59.5,0,0,-0.00995703 -19642,5510:496:4,-106.5,-59.5,0,0,-0.00931665 -19643,5510:496:3,-106,-59.5,0,0,-0.00927105 -19644,5510:495:4,-105.5,-59.5,0,0,-0.0100329 -19645,5510:495:3,-105,-59.5,0,0,-0.0105378 -19646,5510:394:4,-104.5,-59.5,0,0,-0.0106991 -19647,5510:394:3,-104,-59.5,0,0,-0.010649 -19648,5510:393:4,-103.5,-59.5,0,0,-0.0101071 -19649,5510:393:3,-103,-59.5,0,0,-0.00925045 -19650,5510:392:4,-102.5,-59.5,0,0,-0.00925454 -19651,5510:392:3,-102,-59.5,0,0,-0.0092422 -19652,5510:391:4,-101.5,-59.5,0,0,-0.00851432 -19653,5510:391:3,-101,-59.5,0,0,-0.00778506 -19654,5510:390:4,-100.5,-59.5,0,0,-0.00753609 -19655,5510:390:3,-100,-59.5,0,0,-0.00782329 -19656,5509:499:4,-99.5,-59.5,0,0,-0.00856001 -19657,5509:499:3,-99,-59.5,0,0,-0.00921131 -19658,5509:498:4,-98.5,-59.5,0,0,-0.00891632 -19659,5509:498:3,-98,-59.5,0,0,-0.0084595 -19660,5509:497:4,-97.5,-59.5,0,0,-0.00836951 -19661,5509:497:3,-97,-59.5,0,0,-0.00756466 -19662,5509:496:4,-96.5,-59.5,0,0,-0.00650109 -19663,5509:496:3,-96,-59.5,0,0,-0.00619763 -19664,5509:495:4,-95.5,-59.5,0,0,-0.00602378 -19665,5509:495:3,-95,-59.5,0,0,-0.0061455 -19666,5509:394:4,-94.5,-59.5,0,0,-0.00644784 -19667,5509:394:3,-94,-59.5,0,0,-0.00671418 -19668,5509:393:4,-93.5,-59.5,0,0,-0.00687893 -19669,5509:393:3,-93,-59.5,0,0,-0.00683624 -19670,5509:392:4,-92.5,-59.5,0,0,-0.0071045 -19671,5509:392:3,-92,-59.5,0,0,-0.00792146 -19672,5509:391:4,-91.5,-59.5,0,0,-0.00811073 -19673,5509:391:3,-91,-59.5,0,0,-0.00846704 -19674,5509:390:4,-90.5,-59.5,0,0,-0.00950767 -19675,5509:390:3,-90,-59.5,0,0,-0.00970265 -19676,5508:499:4,-89.5,-59.5,0,0,-0.00893624 -19677,5508:499:3,-89,-59.5,0,0,-0.00865202 -19678,5508:498:4,-88.5,-59.5,0,0,-0.00844255 -19679,5508:498:3,-88,-59.5,0,0,-0.00898213 -19680,5508:497:4,-87.5,-59.5,0,0,-0.00935624 -19681,5508:497:3,-87,-59.5,0,0,-0.00864431 -19682,5508:496:4,-86.5,-59.5,0,0,-0.00825468 -19683,5508:496:3,-86,-59.5,0,0,-0.00793385 -19684,5508:495:4,-85.5,-59.5,0,0,-0.00742455 -19685,5508:495:3,-85,-59.5,0,0,-0.00686214 -19686,5508:394:4,-84.5,-59.5,0,0,-0.0064135 -19687,5508:394:3,-84,-59.5,0,0,-0.00595852 -19688,5508:393:4,-83.5,-59.5,0,0,-0.00574016 -19689,5508:393:3,-83,-59.5,0,0,-0.00583922 -19690,5508:392:4,-82.5,-59.5,0,0,-0.00592419 -19691,5508:392:3,-82,-59.5,0,0,-0.0060587 -19692,5508:391:4,-81.5,-59.5,0,0,-0.00669925 -19693,5508:391:3,-81,-59.5,0,0,-0.00713457 -19694,5508:390:4,-80.5,-59.5,0,0,-0.00641637 -19695,5508:390:3,-80,-59.5,0,0,-0.00582498 -19696,5507:499:4,-79.5,-59.5,0,0,-0.00561527 -19697,5507:499:3,-79,-59.5,0,0,-0.00566791 -19698,5507:498:4,-78.5,-59.5,0,0,-0.00604794 -19699,5507:498:3,-78,-59.5,0,0,-0.00676662 -19700,5507:497:4,-77.5,-59.5,0,0,-0.00738497 -19701,5507:497:3,-77,-59.5,0,0,-0.00855809 -19702,5507:496:4,-76.5,-59.5,0,0,-0.00933125 -19703,5507:496:3,-76,-59.5,0,0,-0.0097113 -19704,5507:495:4,-75.5,-59.5,0,0,-0.0094401 -19705,5507:495:3,-75,-59.5,0,0,-0.00879985 -19706,5507:394:4,-74.5,-59.5,0,0,-0.00824548 -19707,5507:394:3,-74,-59.5,0,0,-0.00827125 -19708,5507:393:4,-73.5,-59.5,0,0,-0.00831743 -19709,5507:393:3,-73,-59.5,0,0,-0.00850865 -19710,5507:392:4,-72.5,-59.5,0,0,-0.00852383 -19711,5507:392:3,-72,-59.5,0,0,-0.00796216 -19712,5507:391:4,-71.5,-59.5,0,0,-0.00731463 -19713,5507:391:3,-71,-59.5,0,0,-0.00660749 -19714,5507:390:4,-70.5,-59.5,0,0,-0.00649245 -19715,5507:390:3,-70,-59.5,0,0,-0.00637652 -19716,5506:499:4,-69.5,-59.5,0,0,-0.00620865 -19717,5506:499:3,-69,-59.5,0,0,-0.0061006 -19718,5506:498:4,-68.5,-59.5,0,0,-0.00602644 -19719,5506:498:3,-68,-59.5,0,0,-0.0059944 -19720,5506:497:4,-67.5,-59.5,0,0,-0.00597313 -19721,5506:497:3,-67,-59.5,0,0,-0.0062725 -19722,5506:496:4,-66.5,-59.5,0,0,-0.00761705 -19723,5506:496:3,-66,-59.5,0,0,-0.00796216 -19724,5506:495:4,-65.5,-59.5,0,0,-0.00835461 -19725,5506:495:3,-65,-59.5,0,0,-0.0088569 -19726,5506:394:4,-64.5,-59.5,0,0,-0.00924837 -19727,5506:390:3,-60,-59.5,0,0,-0.00638648 -19728,5505:499:4,-59.5,-59.5,0,0,-0.00633977 -19729,5505:499:3,-59,-59.5,0,0,-0.00628507 -19730,5505:498:4,-58.5,-59.5,0,0,-0.00617425 -19731,5505:498:3,-58,-59.5,0,0,-0.00599972 -19732,5505:497:4,-57.5,-59.5,0,0,-0.00574144 -19733,5505:497:3,-57,-59.5,0,0,-0.00551756 -19734,5505:496:4,-56.5,-59.5,0,0,-0.00550534 -19735,5505:496:3,-56,-59.5,0,0,-0.00550411 -19736,5505:495:4,-55.5,-59.5,0,0,-0.00549557 -19737,5505:495:3,-55,-59.5,0,0,-0.00548582 -19738,5505:394:4,-54.5,-59.5,0,0,-0.00548091 -19739,5505:394:3,-54,-59.5,0,0,-0.00547241 -19740,5505:393:4,-53.5,-59.5,0,0,-0.00546755 -19741,5505:393:3,-53,-59.5,0,0,-0.00546755 -19742,5505:392:4,-52.5,-59.5,0,0,-0.00546755 -19743,5505:392:3,-52,-59.5,0,0,-0.00546755 -19744,5505:391:4,-51.5,-59.5,0,0,-0.00546392 -19745,5505:391:3,-51,-59.5,0,0,-0.00546148 -19746,5505:390:4,-50.5,-59.5,0,0,-0.00545907 -19747,5505:390:3,-50,-59.5,0,0,-0.00545907 -19748,5504:499:4,-49.5,-59.5,0,0,-0.00545907 -19749,5504:499:3,-49,-59.5,0,0,-0.00546026 -19750,5504:498:4,-48.5,-59.5,0,0,-0.00545785 -19751,5504:498:3,-48,-59.5,0,0,-0.00545663 -19752,5504:497:4,-47.5,-59.5,0,0,-0.00545663 -19753,5504:497:3,-47,-59.5,0,0,-0.00545541 -19754,5504:496:4,-46.5,-59.5,0,0,-0.00545541 -19755,5504:496:3,-46,-59.5,0,0,-0.00545541 -19756,5504:495:4,-45.5,-59.5,0,0,-0.00545541 -19757,5504:495:3,-45,-59.5,0,0,-0.00545541 -19758,5504:394:4,-44.5,-59.5,0,0,-0.00545541 -19759,5504:394:3,-44,-59.5,0,0,-0.00545541 -19760,5504:393:4,-43.5,-59.5,0,0,-0.00545541 -19761,5504:393:3,-43,-59.5,0,0,-0.00545541 -19762,5504:392:4,-42.5,-59.5,0,0,-0.00545541 -19763,5504:392:3,-42,-59.5,0,0,-0.00545541 -19764,5504:391:4,-41.5,-59.5,0,0,-0.00545541 -19765,5504:391:3,-41,-59.5,0,0,-0.00545663 -19766,5504:390:4,-40.5,-59.5,0,0,-0.00545663 -19767,5504:390:3,-40,-59.5,0,0,-0.00545663 -19768,5503:499:4,-39.5,-59.5,0,0,-0.00545663 -19769,5503:499:3,-39,-59.5,0,0,-0.00545663 -19770,5503:498:4,-38.5,-59.5,0,0,-0.00545663 -19771,5503:498:3,-38,-59.5,0,0,-0.00545663 -19772,5503:497:4,-37.5,-59.5,0,0,-0.00545663 -19773,5503:497:3,-37,-59.5,0,0,-0.00545785 -19774,5503:496:4,-36.5,-59.5,0,0,-0.00545785 -19775,5503:496:3,-36,-59.5,0,0,-0.00545785 -19776,5503:495:4,-35.5,-59.5,0,0,-0.00545785 -19777,5503:495:3,-35,-59.5,0,0,-0.00545663 -19778,5503:394:4,-34.5,-59.5,0,0,-0.00545785 -19779,5503:394:3,-34,-59.5,0,0,-0.00545785 -19780,5503:393:4,-33.5,-59.5,0,0,-0.00545785 -19781,5503:393:3,-33,-59.5,0,0,-0.00545785 -19782,5503:392:4,-32.5,-59.5,0,0,-0.00545785 -19783,5503:392:3,-32,-59.5,0,0,-0.00545785 -19784,5503:391:4,-31.5,-59.5,0,0,-0.00545785 -19785,5503:391:3,-31,-59.5,0,0,-0.00545785 -19786,5503:390:4,-30.5,-59.5,0,0,-0.00545785 -19787,5503:390:3,-30,-59.5,0,0,-0.00545785 -19788,5502:499:4,-29.5,-59.5,0,0,-0.00545785 -19789,5502:499:3,-29,-59.5,0,0,-0.00545663 -19790,5502:498:4,-28.5,-59.5,0,0,-0.00545663 -19791,5502:498:3,-28,-59.5,0,0,-0.00545663 -19792,5502:497:4,-27.5,-59.5,0,0,-0.00545663 -19793,5502:497:3,-27,-59.5,0,0,-0.00545541 -19794,5502:496:4,-26.5,-59.5,0,0,-0.00545541 -19795,5502:496:3,-26,-59.5,0,0,-0.00545541 -19796,5502:495:4,-25.5,-59.5,0,0,-0.00545541 -19797,5502:495:3,-25,-59.5,0,0,-0.00545541 -19798,5502:394:4,-24.5,-59.5,0,0,-0.00545541 -19799,5502:394:3,-24,-59.5,0,0,-0.00545423 -19800,5502:393:4,-23.5,-59.5,0,0,-0.00545423 -19801,5502:393:3,-23,-59.5,0,0,-0.005453 -19802,5502:392:4,-22.5,-59.5,0,0,-0.005453 -19803,5502:392:3,-22,-59.5,0,0,-0.00545179 -19804,5502:391:4,-21.5,-59.5,0,0,-0.00545057 -19805,5502:391:3,-21,-59.5,0,0,-0.00545057 -19806,5502:390:4,-20.5,-59.5,0,0,-0.00544935 -19807,5502:390:3,-20,-59.5,0,0,-0.00544816 -19808,5501:499:4,-19.5,-59.5,0,0,-0.00544816 -19809,5501:499:3,-19,-59.5,0,0,-0.00544816 -19810,5501:498:4,-18.5,-59.5,0,0,-0.00544695 -19811,5501:498:3,-18,-59.5,0,0,-0.00544695 -19812,5501:497:4,-17.5,-59.5,0,0,-0.00544451 -19813,5501:497:3,-17,-59.5,0,0,-0.00544211 -19814,5501:496:4,-16.5,-59.5,0,0,-0.00544089 -19815,5501:496:3,-16,-59.5,0,0,-0.00543968 -19816,5501:495:4,-15.5,-59.5,0,0,-0.0054385 -19817,5501:495:3,-15,-59.5,0,0,-0.0054385 -19818,5501:394:4,-14.5,-59.5,0,0,-0.0054385 -19819,5501:394:3,-14,-59.5,0,0,-0.00543728 -19820,5501:393:4,-13.5,-59.5,0,0,-0.0054385 -19821,5501:393:3,-13,-59.5,0,0,-0.00543728 -19822,5501:392:4,-12.5,-59.5,0,0,-0.00543728 -19823,5501:392:3,-12,-59.5,0,0,-0.00543728 -19824,5501:391:4,-11.5,-59.5,0,0,-0.00543728 -19825,5501:391:3,-11,-59.5,0,0,-0.00543606 -19826,5501:390:4,-10.5,-59.5,0,0,-0.00543606 -19827,5501:390:3,-10,-59.5,0,0,-0.00543728 -19828,5500:499:4,-9.5,-59.5,0,0,-0.00543728 -19829,5500:499:3,-9,-59.5,0,0,-0.0054385 -19830,5500:498:4,-8.5,-59.5,0,0,-0.00543968 -19831,5500:498:3,-8,-59.5,0,0,-0.00543968 -19832,5500:497:4,-7.5,-59.5,0,0,-0.00543968 -19833,5500:497:3,-7,-59.5,0,0,-0.0054385 -19834,5500:496:4,-6.5,-59.5,0,0,-0.0054385 -19835,5500:496:3,-6,-59.5,0,0,-0.0054385 -19836,5500:495:4,-5.5,-59.5,0,0,-0.0054385 -19837,5500:495:3,-5,-59.5,0,0,-0.0054385 -19838,5500:394:4,-4.5,-59.5,0,0,-0.0054385 -19839,5500:394:3,-4,-59.5,0,0,-0.0054385 -19840,5500:393:4,-3.5,-59.5,0,0,-0.0054385 -19841,5500:393:3,-3,-59.5,0,0,-0.0054385 -19842,5500:392:4,-2.5,-59.5,0,0,-0.0054385 -19843,5500:392:3,-2,-59.5,0,0,-0.00543968 -19844,5500:391:4,-1.5,-59.5,0,0,-0.00543968 -19845,5500:391:3,-1,-59.5,0,0,-0.00544089 -19846,5500:390:4,-0.5,-59.5,0,0,-0.00544089 -19847,3500:390:4,0,-59.5,0,0,-0.00544089 -19848,3500:390:4,0.5,-59.5,0,0,-0.00544089 -19849,3500:391:3,1,-59.5,0,0,-0.00543968 -19850,3500:391:4,1.5,-59.5,0,0,-0.0054385 -19851,3500:392:3,2,-59.5,0,0,-0.0054385 -19852,3500:392:4,2.5,-59.5,0,0,-0.0054385 -19853,3500:393:3,3,-59.5,0,0,-0.00543968 -19854,3500:393:4,3.5,-59.5,0,0,-0.00543968 -19855,3500:394:3,4,-59.5,0,0,-0.00543968 -19856,3500:394:4,4.5,-59.5,0,0,-0.00544089 -19857,3500:495:3,5,-59.5,0,0,-0.00544211 -19858,3500:495:4,5.5,-59.5,0,0,-0.00544211 -19859,3500:496:3,6,-59.5,0,0,-0.00544211 -19860,3500:496:4,6.5,-59.5,0,0,-0.00544211 -19861,3500:497:3,7,-59.5,0,0,-0.00544211 -19862,3500:497:4,7.5,-59.5,0,0,-0.00544211 -19863,3500:498:3,8,-59.5,0,0,-0.00544089 -19864,3500:498:4,8.5,-59.5,0,0,-0.00543968 -19865,3500:499:3,9,-59.5,0,0,-0.00543968 -19866,3500:499:4,9.5,-59.5,0,0,-0.00543968 -19867,3501:390:3,10,-59.5,0,0,-0.00543968 -19868,3501:390:4,10.5,-59.5,0,0,-0.0054385 -19869,3501:391:3,11,-59.5,0,0,-0.0054385 -19870,3501:391:4,11.5,-59.5,0,0,-0.0054385 -19871,3501:392:3,12,-59.5,0,0,-0.00543728 -19872,3501:392:4,12.5,-59.5,0,0,-0.00543728 -19873,3501:393:3,13,-59.5,0,0,-0.00543968 -19874,3501:393:4,13.5,-59.5,0,0,-0.00544211 -19875,3501:394:3,14,-59.5,0,0,-0.00544211 -19876,3501:394:4,14.5,-59.5,0,0,-0.00544089 -19877,3501:495:3,15,-59.5,0,0,-0.00543968 -19878,3501:495:4,15.5,-59.5,0,0,-0.00543728 -19879,3501:496:3,16,-59.5,0,0,-0.0054385 -19880,3501:496:4,16.5,-59.5,0,0,-0.00543968 -19881,3501:497:3,17,-59.5,0,0,-0.00543728 -19882,3501:497:4,17.5,-59.5,0,0,-0.00543728 -19883,3501:498:3,18,-59.5,0,0,-0.00543363 -19884,3501:498:4,18.5,-59.5,0,0,-0.00543002 -19885,3501:499:3,19,-59.5,0,0,-0.00543002 -19886,3501:499:4,19.5,-59.5,0,0,-0.00543124 -19887,3502:390:3,20,-59.5,0,0,-0.00543245 -19888,3502:390:4,20.5,-59.5,0,0,-0.00543363 -19889,3502:391:3,21,-59.5,0,0,-0.00543363 -19890,3502:391:4,21.5,-59.5,0,0,-0.00543245 -19891,3502:392:3,22,-59.5,0,0,-0.00543245 -19892,3502:392:4,22.5,-59.5,0,0,-0.00543245 -19893,3502:393:3,23,-59.5,0,0,-0.00543363 -19894,3502:393:4,23.5,-59.5,0,0,-0.00543363 -19895,3502:394:3,24,-59.5,0,0,-0.00543485 -19896,3502:394:4,24.5,-59.5,0,0,-0.00543485 -19897,3502:495:3,25,-59.5,0,0,-0.00543606 -19898,3502:495:4,25.5,-59.5,0,0,-0.00543728 -19899,3502:496:3,26,-59.5,0,0,-0.00543728 -19900,3502:496:4,26.5,-59.5,0,0,-0.0054385 -19901,3502:497:3,27,-59.5,0,0,-0.00543968 -19902,3502:497:4,27.5,-59.5,0,0,-0.00544089 -19903,3502:498:3,28,-59.5,0,0,-0.00543968 -19904,3502:498:4,28.5,-59.5,0,0,-0.00544089 -19905,3502:499:3,29,-59.5,0,0,-0.00544211 -19906,3502:499:4,29.5,-59.5,0,0,-0.00544211 -19907,3503:390:3,30,-59.5,0,0,-0.0054385 -19908,3503:390:4,30.5,-59.5,0,0,-0.00543485 -19909,3503:391:3,31,-59.5,0,0,-0.00543363 -19910,3503:391:4,31.5,-59.5,0,0,-0.00544089 -19911,3503:392:3,32,-59.5,0,0,-0.00544573 -19912,3503:392:4,32.5,-59.5,0,0,-0.00544935 -19913,3503:393:3,33,-59.5,0,0,-0.005453 -19914,3503:393:4,33.5,-59.5,0,0,-0.00545541 -19915,3503:394:3,34,-59.5,0,0,-0.00545785 -19916,3503:394:4,34.5,-59.5,0,0,-0.00545785 -19917,3503:495:3,35,-59.5,0,0,-0.00545541 -19918,3503:495:4,35.5,-59.5,0,0,-0.00545423 -19919,3503:496:3,36,-59.5,0,0,-0.00545057 -19920,3503:496:4,36.5,-59.5,0,0,-0.00544695 -19921,3503:497:3,37,-59.5,0,0,-0.00544573 -19922,3503:497:4,37.5,-59.5,0,0,-0.00544451 -19923,3503:498:3,38,-59.5,0,0,-0.00544333 -19924,3503:498:4,38.5,-59.5,0,0,-0.00544211 -19925,3503:499:3,39,-59.5,0,0,-0.00544089 -19926,3503:499:4,39.5,-59.5,0,0,-0.00544211 -19927,3504:390:3,40,-59.5,0,0,-0.00544333 -19928,3504:390:4,40.5,-59.5,0,0,-0.00544573 -19929,3504:391:3,41,-59.5,0,0,-0.00544935 -19930,3504:391:4,41.5,-59.5,0,0,-0.00544935 -19931,3504:392:3,42,-59.5,0,0,-0.00545057 -19932,3504:392:4,42.5,-59.5,0,0,-0.005453 -19933,3504:393:3,43,-59.5,0,0,-0.00545663 -19934,3504:393:4,43.5,-59.5,0,0,-0.00545541 -19935,3504:394:3,44,-59.5,0,0,-0.00545541 -19936,3504:394:4,44.5,-59.5,0,0,-0.00545663 -19937,3504:495:3,45,-59.5,0,0,-0.00545785 -19938,3504:495:4,45.5,-59.5,0,0,-0.00546026 -19939,3504:496:3,46,-59.5,0,0,-0.0054627 -19940,3504:496:4,46.5,-59.5,0,0,-0.00546392 -19941,3504:497:3,47,-59.5,0,0,-0.00546511 -19942,3504:497:4,47.5,-59.5,0,0,-0.00546755 -19943,3504:498:3,48,-59.5,0,0,-0.00547241 -19944,3504:498:4,48.5,-59.5,0,0,-0.00547241 -19945,3504:499:3,49,-59.5,0,0,-0.00547486 -19946,3504:499:4,49.5,-59.5,0,0,-0.00547605 -19947,3505:390:3,50,-59.5,0,0,-0.00547972 -19948,3505:390:4,50.5,-59.5,0,0,-0.00547972 -19949,3505:391:3,51,-59.5,0,0,-0.00547972 -19950,3505:391:4,51.5,-59.5,0,0,-0.00548091 -19951,3505:392:3,52,-59.5,0,0,-0.00548091 -19952,3505:392:4,52.5,-59.5,0,0,-0.00548091 -19953,3505:393:3,53,-59.5,0,0,-0.00548091 -19954,3505:393:4,53.5,-59.5,0,0,-0.00548214 -19955,3505:394:3,54,-59.5,0,0,-0.00548337 -19956,3505:394:4,54.5,-59.5,0,0,-0.00548459 -19957,3505:495:3,55,-59.5,0,0,-0.00548459 -19958,3505:495:4,55.5,-59.5,0,0,-0.00548337 -19959,3505:496:3,56,-59.5,0,0,-0.00548214 -19960,3505:496:4,56.5,-59.5,0,0,-0.00548091 -19961,3505:497:3,57,-59.5,0,0,-0.00547972 -19962,3505:497:4,57.5,-59.5,0,0,-0.00547972 -19963,3505:498:3,58,-59.5,0,0,-0.00547972 -19964,3505:498:4,58.5,-59.5,0,0,-0.00547241 -19965,3505:499:3,59,-59.5,0,0,-0.00546392 -19966,3505:499:4,59.5,-59.5,0,0,-0.00545785 -19967,3506:390:3,60,-59.5,0,0,-0.005453 -19968,3506:390:4,60.5,-59.5,0,0,-0.00544935 -19969,3506:391:3,61,-59.5,0,0,-0.00544816 -19970,3506:391:4,61.5,-59.5,0,0,-0.00544816 -19971,3506:392:3,62,-59.5,0,0,-0.00545179 -19972,3506:392:4,62.5,-59.5,0,0,-0.00545423 -19973,3506:393:3,63,-59.5,0,0,-0.00545663 -19974,3506:393:4,63.5,-59.5,0,0,-0.00545907 -19975,3506:394:3,64,-59.5,0,0,-0.00545907 -19976,3506:394:4,64.5,-59.5,0,0,-0.00545785 -19977,3506:495:3,65,-59.5,0,0,-0.00545423 -19978,3506:495:4,65.5,-59.5,0,0,-0.005453 -19979,3506:496:3,66,-59.5,0,0,-0.00545423 -19980,3506:496:4,66.5,-59.5,0,0,-0.00545423 -19981,3506:497:3,67,-59.5,0,0,-0.00545179 -19982,3506:497:4,67.5,-59.5,0,0,-0.00545057 -19983,3506:498:3,68,-59.5,0,0,-0.00545179 -19984,3506:498:4,68.5,-59.5,0,0,-0.00545179 -19985,3506:499:3,69,-59.5,0,0,-0.00545179 -19986,3506:499:4,69.5,-59.5,0,0,-0.00545179 -19987,3507:390:3,70,-59.5,0,0,-0.00545179 -19988,3507:390:4,70.5,-59.5,0,0,-0.00545057 -19989,3507:391:3,71,-59.5,0,0,-0.00545057 -19990,3507:391:4,71.5,-59.5,0,0,-0.00545057 -19991,3507:392:3,72,-59.5,0,0,-0.00545179 -19992,3507:392:4,72.5,-59.5,0,0,-0.005453 -19993,3507:393:4,73.5,-59.5,0,0,-0.00545423 -19994,3507:394:3,74,-59.5,0,0,-0.00545423 -19995,3507:394:4,74.5,-59.5,0,0,-0.00545423 -19996,3507:495:3,75,-59.5,0,0,-0.00545423 -19997,3507:495:4,75.5,-59.5,0,0,-0.00545423 -19998,3507:496:3,76,-59.5,0,0,-0.00545423 -19999,3507:496:4,76.5,-59.5,0,0,-0.00545423 -20000,3507:497:3,77,-59.5,0,0,-0.00545423 -20001,3507:497:4,77.5,-59.5,0,0,-0.00545423 -20002,3507:498:3,78,-59.5,0,0,-0.00545541 -20003,3507:498:4,78.5,-59.5,0,0,-0.00545423 -20004,3507:499:3,79,-59.5,0,0,-0.005453 -20005,3507:499:4,79.5,-59.5,0,0,-0.00545663 -20006,3508:390:3,80,-59.5,0,0,-0.00545785 -20007,3508:390:4,80.5,-59.5,0,0,-0.00546026 -20008,3508:391:3,81,-59.5,0,0,-0.00546511 -20009,3508:391:4,81.5,-59.5,0,0,-0.00546755 -20010,3508:392:3,82,-59.5,0,0,-0.00546878 -20011,3508:392:4,82.5,-59.5,0,0,-0.00547241 -20012,3508:393:3,83,-59.5,0,0,-0.00547486 -20013,3508:393:4,83.5,-59.5,0,0,-0.00547727 -20014,3508:394:3,84,-59.5,0,0,-0.00547605 -20015,3508:394:4,84.5,-59.5,0,0,-0.00547727 -20016,3508:495:3,85,-59.5,0,0,-0.00548091 -20017,3508:495:4,85.5,-59.5,0,0,-0.00547972 -20018,3508:496:3,86,-59.5,0,0,-0.0054785 -20019,3508:496:4,86.5,-59.5,0,0,-0.0054785 -20020,3508:497:3,87,-59.5,0,0,-0.00547972 -20021,3508:497:4,87.5,-59.5,0,0,-0.00547727 -20022,3508:498:3,88,-59.5,0,0,-0.00547605 -20023,3508:498:4,88.5,-59.5,0,0,-0.00547605 -20024,3508:499:3,89,-59.5,0,0,-0.00547727 -20025,3508:499:4,89.5,-59.5,0,0,-0.00547605 -20026,3509:390:3,90,-59.5,0,0,-0.00547241 -20027,3509:390:4,90.5,-59.5,0,0,-0.00547241 -20028,3509:391:3,91,-59.5,0,0,-0.00547241 -20029,3509:391:4,91.5,-59.5,0,0,-0.00547241 -20030,3509:392:3,92,-59.5,0,0,-0.00547241 -20031,3509:392:4,92.5,-59.5,0,0,-0.00547119 -20032,3509:393:3,93,-59.5,0,0,-0.00547119 -20033,3509:393:4,93.5,-59.5,0,0,-0.00547364 -20034,3509:394:3,94,-59.5,0,0,-0.00547605 -20035,3509:394:4,94.5,-59.5,0,0,-0.00548091 -20036,3509:495:3,95,-59.5,0,0,-0.00561778 -20037,3509:495:4,95.5,-59.5,0,0,-0.00570837 -20038,3509:499:4,99.5,-59.5,0,0,-0.00555819 -20039,3510:390:3,100,-59.5,0,0,-0.00555819 -20040,3510:390:4,100.5,-59.5,0,0,-0.00554832 -20041,3510:392:3,102,-59.5,0,0,-0.00549557 -20042,3510:392:4,102.5,-59.5,0,0,-0.00553968 -20043,3510:394:3,104,-59.5,0,0,-0.00551024 -20044,3510:394:4,104.5,-59.5,0,0,-0.00549434 -20045,3510:495:3,105,-59.5,0,0,-0.00549189 -20046,3510:495:4,105.5,-59.5,0,0,-0.00549434 -20047,3510:496:3,106,-59.5,0,0,-0.00549557 -20048,3510:496:4,106.5,-59.5,0,0,-0.00548824 -20049,3510:497:3,107,-59.5,0,0,-0.00547 -20050,3510:497:4,107.5,-59.5,0,0,-0.00546026 -20051,3510:498:3,108,-59.5,0,0,-0.00545423 -20052,3510:498:4,108.5,-59.5,0,0,-0.00544695 -20053,3510:499:3,109,-59.5,0,0,-0.00544573 -20054,3510:499:4,109.5,-59.5,0,0,-0.005453 -20055,3511:390:3,110,-59.5,0,0,-0.0054627 -20056,3511:390:4,110.5,-59.5,0,0,-0.00546878 -20057,3511:391:3,111,-59.5,0,0,-0.00547364 -20058,3511:391:4,111.5,-59.5,0,0,-0.00547486 -20059,3511:392:3,112,-59.5,0,0,-0.00548459 -20060,3511:392:4,112.5,-59.5,0,0,-0.00549677 -20061,3511:393:3,113,-59.5,0,0,-0.00550411 -20062,3511:393:4,113.5,-59.5,0,0,-0.00551024 -20063,3511:394:3,114,-59.5,0,0,-0.00550777 -20064,3511:394:4,114.5,-59.5,0,0,-0.00548701 -20065,3511:495:3,115,-59.5,0,0,-0.00548091 -20066,3511:495:4,115.5,-59.5,0,0,-0.00548091 -20067,3511:496:3,116,-59.5,0,0,-0.00547972 -20068,3511:496:4,116.5,-59.5,0,0,-0.00547727 -20069,3511:497:3,117,-59.5,0,0,-0.00547486 -20070,3511:497:4,117.5,-59.5,0,0,-0.00547119 -20071,3511:498:3,118,-59.5,0,0,-0.00547241 -20072,3511:498:4,118.5,-59.5,0,0,-0.00547241 -20073,3511:499:3,119,-59.5,0,0,-0.00546878 -20074,3511:499:4,119.5,-59.5,0,0,-0.00546026 -20075,3512:390:3,120,-59.5,0,0,-0.00545541 -20076,3512:390:4,120.5,-59.5,0,0,-0.00545663 -20077,3512:391:3,121,-59.5,0,0,-0.00546026 -20078,3512:391:4,121.5,-59.5,0,0,-0.00546148 -20079,3512:392:3,122,-59.5,0,0,-0.00546148 -20080,3512:392:4,122.5,-59.5,0,0,-0.00546148 -20081,3512:393:3,123,-59.5,0,0,-0.00546148 -20082,3512:393:4,123.5,-59.5,0,0,-0.00546026 -20083,3512:394:3,124,-59.5,0,0,-0.00547 -20084,3512:394:4,124.5,-59.5,0,0,-0.00547605 -20085,3512:495:3,125,-59.5,0,0,-0.00547727 -20086,3512:495:4,125.5,-59.5,0,0,-0.00545541 -20087,3512:496:3,126,-59.5,0,0,-0.005453 -20088,3512:496:4,126.5,-59.5,0,0,-0.00544695 -20089,3512:497:3,127,-59.5,0,0,-0.00544935 -20090,3512:497:4,127.5,-59.5,0,0,-0.00544816 -20091,3512:498:3,128,-59.5,0,0,-0.00546392 -20092,3512:498:4,128.5,-59.5,0,0,-0.0055237 -20093,3512:499:3,129,-59.5,0,0,-0.0054785 -20094,3512:499:4,129.5,-59.5,0,0,-0.00545907 -20095,3513:390:3,130,-59.5,0,0,-0.0054627 -20096,3513:390:4,130.5,-59.5,0,0,-0.00552003 -20097,3513:391:3,131,-59.5,0,0,-0.00553108 -20098,3513:391:4,131.5,-59.5,0,0,-0.00549312 -20099,3513:392:3,132,-59.5,0,0,-0.00546148 -20100,3513:392:4,132.5,-59.5,0,0,-0.00555943 -20101,3513:393:3,133,-59.5,0,0,-0.00569569 -20102,3513:393:4,133.5,-59.5,0,0,-0.00597576 -20103,3513:394:3,134,-59.5,0,0,-0.00611415 -20104,3513:495:4,135.5,-59.5,0,0,-0.00552617 -20105,3513:496:3,136,-59.5,0,0,-0.00549312 -20106,3513:496:4,136.5,-59.5,0,0,-0.005536 -20107,3513:497:3,137,-59.5,0,0,-0.00575806 -20108,3513:497:4,137.5,-59.5,0,0,-0.00591892 -20109,3513:498:3,138,-59.5,0,0,-0.00604388 -20110,3513:498:4,138.5,-59.5,0,0,-0.00614275 -20111,3513:499:3,139,-59.5,0,0,-0.00616329 -20112,3513:499:4,139.5,-59.5,0,0,-0.00619212 -20113,3514:390:3,140,-59.5,0,0,-0.00609923 -20114,3514:390:4,140.5,-59.5,0,0,-0.00604925 -20115,3514:391:3,141,-59.5,0,0,-0.00597442 -20116,3514:391:4,141.5,-59.5,0,0,-0.00577471 -20117,3514:392:3,142,-59.5,0,0,-0.00574398 -20118,3514:392:4,142.5,-59.5,0,0,-0.00569445 -20119,3514:393:3,143,-59.5,0,0,-0.00557672 -20120,3514:393:4,143.5,-59.5,0,0,-0.00548947 -20121,3514:394:3,144,-59.5,0,0,-0.00545423 -20122,3514:394:4,144.5,-59.5,0,0,-0.00544089 -20123,3514:495:3,145,-59.5,0,0,-0.00544333 -20124,3514:495:4,145.5,-59.5,0,0,-0.00544816 -20125,3514:496:3,146,-59.5,0,0,-0.00544935 -20126,3514:496:4,146.5,-59.5,0,0,-0.00545057 -20127,3514:497:3,147,-59.5,0,0,-0.005453 -20128,3514:497:4,147.5,-59.5,0,0,-0.00545541 -20129,3514:498:3,148,-59.5,0,0,-0.00545785 -20130,3514:498:4,148.5,-59.5,0,0,-0.00546026 -20131,3514:499:3,149,-59.5,0,0,-0.00546148 -20132,3514:499:4,149.5,-59.5,0,0,-0.00546148 -20133,3515:390:3,150,-59.5,0,0,-0.0054627 -20134,3515:390:4,150.5,-59.5,0,0,-0.00546511 -20135,3515:391:3,151,-59.5,0,0,-0.00546878 -20136,3515:391:4,151.5,-59.5,0,0,-0.00547119 -20137,3515:392:3,152,-59.5,0,0,-0.00547241 -20138,3515:392:4,152.5,-59.5,0,0,-0.00547119 -20139,3515:393:3,153,-59.5,0,0,-0.00547119 -20140,3515:393:4,153.5,-59.5,0,0,-0.00547119 -20141,3515:394:3,154,-59.5,0,0,-0.00547119 -20142,3515:394:4,154.5,-59.5,0,0,-0.00547364 -20143,3515:495:3,155,-59.5,0,0,-0.00547486 -20144,3515:495:4,155.5,-59.5,0,0,-0.00547241 -20145,3515:496:3,156,-59.5,0,0,-0.00547119 -20146,3515:496:4,156.5,-59.5,0,0,-0.00547 -20147,3515:497:3,157,-59.5,0,0,-0.00546755 -20148,3515:497:4,157.5,-59.5,0,0,-0.00546633 -20149,3515:498:3,158,-59.5,0,0,-0.00546633 -20150,3515:498:4,158.5,-59.5,0,0,-0.00546755 -20151,3515:499:3,159,-59.5,0,0,-0.00546511 -20152,3515:499:4,159.5,-59.5,0,0,-0.00546511 -20153,3516:390:3,160,-59.5,0,0,-0.00546633 -20154,3516:390:4,160.5,-59.5,0,0,-0.00546755 -20155,3516:391:3,161,-59.5,0,0,-0.00546755 -20156,3516:391:4,161.5,-59.5,0,0,-0.00546633 -20157,3516:392:3,162,-59.5,0,0,-0.00546878 -20158,3516:392:4,162.5,-59.5,0,0,-0.00547119 -20159,3516:393:3,163,-59.5,0,0,-0.00547241 -20160,3516:393:4,163.5,-59.5,0,0,-0.00547364 -20161,3516:394:3,164,-59.5,0,0,-0.00547364 -20162,3516:394:4,164.5,-59.5,0,0,-0.00547364 -20163,3516:495:3,165,-59.5,0,0,-0.00547364 -20164,3516:495:4,165.5,-59.5,0,0,-0.00547364 -20165,3516:496:3,166,-59.5,0,0,-0.00547486 -20166,3516:496:4,166.5,-59.5,0,0,-0.00547486 -20167,3516:497:3,167,-59.5,0,0,-0.00547486 -20168,3516:497:4,167.5,-59.5,0,0,-0.00547486 -20169,3516:498:3,168,-59.5,0,0,-0.00547364 -20170,3516:498:4,168.5,-59.5,0,0,-0.00547241 -20171,3516:499:3,169,-59.5,0,0,-0.00547119 -20172,3516:499:4,169.5,-59.5,0,0,-0.00547 -20173,3517:390:3,170,-59.5,0,0,-0.00546878 -20174,3517:390:4,170.5,-59.5,0,0,-0.00546878 -20175,3517:391:3,171,-59.5,0,0,-0.00547 -20176,3517:391:4,171.5,-59.5,0,0,-0.00547119 -20177,3517:392:3,172,-59.5,0,0,-0.00547119 -20178,3517:392:4,172.5,-59.5,0,0,-0.00547 -20179,3517:393:3,173,-59.5,0,0,-0.00546755 -20180,3517:393:4,173.5,-59.5,0,0,-0.00546755 -20181,3517:394:3,174,-59.5,0,0,-0.00546878 -20182,3517:394:4,174.5,-59.5,0,0,-0.00547 -20183,3517:495:3,175,-59.5,0,0,-0.00547119 -20184,3517:495:4,175.5,-59.5,0,0,-0.00547119 -20185,3517:496:3,176,-59.5,0,0,-0.00547 -20186,3517:496:4,176.5,-59.5,0,0,-0.00547 -20187,3517:497:3,177,-59.5,0,0,-0.00547 -20188,3517:497:4,177.5,-59.5,0,0,-0.00547119 -20189,3517:498:3,178,-59.5,0,0,-0.00547605 -20190,3517:498:4,178.5,-59.5,0,0,-0.00548214 -20191,3517:499:3,179,-59.5,0,0,-0.00548947 -20192,3517:499:4,179.5,-59.5,0,0,-0.00550288 -20193,3518:390:3,180,-59.5,0,0,-0.00560405 -20194,5518:390:1,-180,-59,0,0,-0.00593078 -20195,5517:499:2,-179.5,-59,0,0,-0.00615919 -20196,5517:499:1,-179,-59,0,0,-0.00608163 -20197,5517:498:2,-178.5,-59,0,0,-0.00581981 -20198,5517:498:1,-178,-59,0,0,-0.00560656 -20199,5517:497:2,-177.5,-59,0,0,-0.00570075 -20200,5517:497:1,-177,-59,0,0,-0.00589401 -20201,5517:496:2,-176.5,-59,0,0,-0.00637514 -20202,5517:496:1,-176,-59,0,0,-0.00671564 -20203,5517:495:2,-175.5,-59,0,0,-0.00650687 -20204,5517:495:1,-175,-59,0,0,-0.00574144 -20205,5517:394:2,-174.5,-59,0,0,-0.00557426 -20206,5517:394:1,-174,-59,0,0,-0.0055225 -20207,5517:393:2,-173.5,-59,0,0,-0.00557797 -20208,5517:393:1,-173,-59,0,0,-0.00582755 -20209,5517:392:2,-172.5,-59,0,0,-0.00590709 -20210,5517:392:1,-172,-59,0,0,-0.005716 -20211,5517:391:2,-171.5,-59,0,0,-0.00555943 -20212,5517:391:1,-171,-59,0,0,-0.00548459 -20213,5517:390:2,-170.5,-59,0,0,-0.00547972 -20214,5517:390:1,-170,-59,0,0,-0.0054785 -20215,5516:499:2,-169.5,-59,0,0,-0.00548337 -20216,5516:499:1,-169,-59,0,0,-0.00549557 -20217,5516:498:2,-168.5,-59,0,0,-0.00550288 -20218,5516:498:1,-168,-59,0,0,-0.00551513 -20219,5516:497:2,-167.5,-59,0,0,-0.00550046 -20220,5516:497:1,-167,-59,0,0,-0.00549189 -20221,5516:496:2,-166.5,-59,0,0,-0.00554092 -20222,5516:496:1,-166,-59,0,0,-0.00558418 -20223,5516:495:2,-165.5,-59,0,0,-0.00559536 -20224,5516:495:1,-165,-59,0,0,-0.00559661 -20225,5516:394:2,-164.5,-59,0,0,-0.00559908 -20226,5516:394:1,-164,-59,0,0,-0.00560656 -20227,5516:393:2,-163.5,-59,0,0,-0.00564153 -20228,5516:393:1,-163,-59,0,0,-0.00580818 -20229,5516:392:2,-162.5,-59,0,0,-0.00596912 -20230,5516:392:1,-162,-59,0,0,-0.00616053 -20231,5516:391:2,-161.5,-59,0,0,-0.00638648 -20232,5516:391:1,-161,-59,0,0,-0.00645931 -20233,5516:390:2,-160.5,-59,0,0,-0.00645357 -20234,5516:390:1,-160,-59,0,0,-0.00647656 -20235,5515:499:2,-159.5,-59,0,0,-0.00660897 -20236,5515:499:1,-159,-59,0,0,-0.00678474 -20237,5515:498:2,-158.5,-59,0,0,-0.0069004 -20238,5515:498:1,-158,-59,0,0,-0.00694661 -20239,5515:497:2,-157.5,-59,0,0,-0.00695742 -20240,5515:497:1,-157,-59,0,0,-0.00693737 -20241,5515:496:2,-156.5,-59,0,0,-0.00690964 -20242,5515:496:1,-156,-59,0,0,-0.00688356 -20243,5515:495:2,-155.5,-59,0,0,-0.00684841 -20244,5515:495:1,-155,-59,0,0,-0.00680587 -20245,5515:394:2,-154.5,-59,0,0,-0.00677268 -20246,5515:394:1,-154,-59,0,0,-0.00675459 -20247,5515:393:2,-153.5,-59,0,0,-0.00676212 -20248,5515:393:1,-153,-59,0,0,-0.00678018 -20249,5515:392:2,-152.5,-59,0,0,-0.00680286 -20250,5515:392:1,-152,-59,0,0,-0.00684079 -20251,5515:391:2,-151.5,-59,0,0,-0.00694043 -20252,5515:391:1,-151,-59,0,0,-0.00706035 -20253,5515:390:2,-150.5,-59,0,0,-0.00712349 -20254,5515:390:1,-150,-59,0,0,-0.00711715 -20255,5514:499:2,-149.5,-59,0,0,-0.00705408 -20256,5514:499:1,-149,-59,0,0,-0.00698535 -20257,5514:498:2,-148.5,-59,0,0,-0.00697449 -20258,5514:498:1,-148,-59,0,0,-0.00698226 -20259,5514:497:2,-147.5,-59,0,0,-0.00699935 -20260,5514:497:1,-147,-59,0,0,-0.00701496 -20261,5514:496:2,-146.5,-59,0,0,-0.00698848 -20262,5514:496:1,-146,-59,0,0,-0.00708239 -20263,5514:495:2,-145.5,-59,0,0,-0.00715208 -20264,5514:495:1,-145,-59,0,0,-0.00722727 -20265,5514:394:2,-144.5,-59,0,0,-0.00732278 -20266,5514:394:1,-144,-59,0,0,-0.00733094 -20267,5514:393:2,-143.5,-59,0,0,-0.00743944 -20268,5514:393:1,-143,-59,0,0,-0.00755459 -20269,5514:392:2,-142.5,-59,0,0,-0.00745599 -20270,5514:392:1,-142,-59,0,0,-0.00736038 -20271,5514:391:2,-141.5,-59,0,0,-0.0073293 -20272,5514:391:1,-141,-59,0,0,-0.00730812 -20273,5514:390:2,-140.5,-59,0,0,-0.00722085 -20274,5514:390:1,-140,-59,0,0,-0.00714252 -20275,5513:499:2,-139.5,-59,0,0,-0.0070212 -20276,5513:499:1,-139,-59,0,0,-0.00708239 -20277,5513:498:2,-138.5,-59,0,0,-0.00756466 -20278,5513:498:1,-138,-59,0,0,-0.00784949 -20279,5513:497:2,-137.5,-59,0,0,-0.00783378 -20280,5513:497:1,-137,-59,0,0,-0.00772635 -20281,5513:496:2,-136.5,-59,0,0,-0.0077747 -20282,5513:496:1,-136,-59,0,0,-0.00767836 -20283,5513:495:2,-135.5,-59,0,0,-0.00733911 -20284,5513:495:1,-135,-59,0,0,-0.00731955 -20285,5513:394:2,-134.5,-59,0,0,-0.00752268 -20286,5513:394:1,-134,-59,0,0,-0.00778162 -20287,5513:393:2,-133.5,-59,0,0,-0.00775223 -20288,5513:393:1,-133,-59,0,0,-0.00779724 -20289,5513:392:2,-132.5,-59,0,0,-0.00828971 -20290,5513:392:1,-132,-59,0,0,-0.00897816 -20291,5513:391:2,-131.5,-59,0,0,-0.00912547 -20292,5513:391:1,-131,-59,0,0,-0.00914586 -20293,5513:390:2,-130.5,-59,0,0,-0.00896815 -20294,5513:390:1,-130,-59,0,0,-0.00875877 -20295,5512:499:2,-129.5,-59,0,0,-0.0087004 -20296,5512:499:1,-129,-59,0,0,-0.0087295 -20297,5512:498:2,-128.5,-59,0,0,-0.00874704 -20298,5512:498:1,-128,-59,0,0,-0.0086559 -20299,5512:497:2,-127.5,-59,0,0,-0.00858292 -20300,5512:497:1,-127,-59,0,0,-0.00862892 -20301,5512:496:2,-126.5,-59,0,0,-0.00879985 -20302,5512:496:1,-126,-59,0,0,-0.00920517 -20303,5512:495:2,-125.5,-59,0,0,-0.00972215 -20304,5512:495:1,-125,-59,0,0,-0.0101886 -20305,5512:394:2,-124.5,-59,0,0,-0.0104372 -20306,5512:394:1,-124,-59,0,0,-0.0103652 -20307,5512:393:2,-123.5,-59,0,0,-0.0100262 -20308,5512:393:1,-123,-59,0,0,-0.00965948 -20309,5512:392:2,-122.5,-59,0,0,-0.00963793 -20310,5512:392:1,-122,-59,0,0,-0.00986417 -20311,5512:391:2,-121.5,-59,0,0,-0.0102342 -20312,5512:391:1,-121,-59,0,0,-0.0105284 -20313,5512:390:2,-120.5,-59,0,0,-0.0106538 -20314,5512:390:1,-120,-59,0,0,-0.0107374 -20315,5511:499:2,-119.5,-59,0,0,-0.0108168 -20316,5511:499:1,-119,-59,0,0,-0.0108313 -20317,5511:498:2,-118.5,-59,0,0,-0.0107951 -20318,5511:498:1,-118,-59,0,0,-0.010747 -20319,5511:497:2,-117.5,-59,0,0,-0.010711 -20320,5511:497:1,-117,-59,0,0,-0.0106919 -20321,5511:496:2,-116.5,-59,0,0,-0.0106872 -20322,5511:496:1,-116,-59,0,0,-0.0106657 -20323,5511:495:2,-115.5,-59,0,0,-0.0105378 -20324,5511:495:1,-115,-59,0,0,-0.0102456 -20325,5511:394:2,-114.5,-59,0,0,-0.00998372 -20326,5511:394:1,-114,-59,0,0,-0.00996151 -20327,5511:393:2,-113.5,-59,0,0,-0.0102205 -20328,5511:393:1,-113,-59,0,0,-0.010512 -20329,5511:392:2,-112.5,-59,0,0,-0.010771 -20330,5511:392:1,-112,-59,0,0,-0.0108968 -20331,5511:391:2,-111.5,-59,0,0,-0.0108725 -20332,5511:391:1,-111,-59,0,0,-0.010711 -20333,5511:390:2,-110.5,-59,0,0,-0.0104348 -20334,5511:390:1,-110,-59,0,0,-0.0101908 -20335,5510:499:2,-109.5,-59,0,0,-0.0101296 -20336,5510:499:1,-109,-59,0,0,-0.0101455 -20337,5510:498:2,-108.5,-59,0,0,-0.0101908 -20338,5510:498:1,-108,-59,0,0,-0.0102937 -20339,5510:497:2,-107.5,-59,0,0,-0.0103976 -20340,5510:497:1,-107,-59,0,0,-0.0103098 -20341,5510:496:2,-106.5,-59,0,0,-0.00993489 -20342,5510:496:1,-106,-59,0,0,-0.00993489 -20343,5510:495:2,-105.5,-59,0,0,-0.0104325 -20344,5510:495:1,-105,-59,0,0,-0.0106824 -20345,5510:394:2,-104.5,-59,0,0,-0.0108265 -20346,5510:394:1,-104,-59,0,0,-0.0108992 -20347,5510:393:2,-103.5,-59,0,0,-0.0106348 -20348,5510:393:1,-103,-59,0,0,-0.0100755 -20349,5510:392:2,-102.5,-59,0,0,-0.0101568 -20350,5510:392:1,-102,-59,0,0,-0.0104046 -20351,5510:391:2,-101.5,-59,0,0,-0.0101976 -20352,5510:391:1,-101,-59,0,0,-0.0100195 -20353,5510:390:2,-100.5,-59,0,0,-0.0101954 -20354,5510:390:1,-100,-59,0,0,-0.0103976 -20355,5509:499:2,-99.5,-59,0,0,-0.0104956 -20356,5509:499:1,-99,-59,0,0,-0.0104722 -20357,5509:498:2,-98.5,-59,0,0,-0.0101319 -20358,5509:498:1,-98,-59,0,0,-0.00989943 -20359,5509:497:2,-97.5,-59,0,0,-0.00981807 -20360,5509:497:1,-97,-59,0,0,-0.00877439 -20361,5509:496:2,-96.5,-59,0,0,-0.00734565 -20362,5509:496:1,-96,-59,0,0,-0.00652137 -20363,5509:495:2,-95.5,-59,0,0,-0.00631165 -20364,5509:495:1,-95,-59,0,0,-0.0064078 -20365,5509:394:2,-94.5,-59,0,0,-0.00686061 -20366,5509:394:1,-94,-59,0,0,-0.00694199 -20367,5509:393:2,-93.5,-59,0,0,-0.00689736 -20368,5509:393:1,-93,-59,0,0,-0.00691114 -20369,5509:392:2,-92.5,-59,0,0,-0.00732766 -20370,5509:392:1,-92,-59,0,0,-0.00810351 -20371,5509:391:2,-91.5,-59,0,0,-0.00854094 -20372,5509:391:1,-91,-59,0,0,-0.00923598 -20373,5509:390:2,-90.5,-59,0,0,-0.0101976 -20374,5509:390:1,-90,-59,0,0,-0.0104629 -20375,5508:499:2,-89.5,-59,0,0,-0.0105332 -20376,5508:499:1,-89,-59,0,0,-0.0104675 -20377,5508:498:2,-88.5,-59,0,0,-0.00985538 -20378,5508:498:1,-88,-59,0,0,-0.0106372 -20379,5508:497:2,-87.5,-59,0,0,-0.0111829 -20380,5508:497:1,-87,-59,0,0,-0.0112757 -20381,5508:496:2,-86.5,-59,0,0,-0.0113515 -20382,5508:496:1,-86,-59,0,0,-0.0114407 -20383,5508:495:2,-85.5,-59,0,0,-0.0114586 -20384,5508:495:1,-85,-59,0,0,-0.0115022 -20385,5508:394:2,-84.5,-59,0,0,-0.0116809 -20386,5508:394:1,-84,-59,0,0,-0.0115356 -20387,5508:393:2,-83.5,-59,0,0,-0.00976348 -20388,5508:393:1,-83,-59,0,0,-0.00826759 -20389,5508:392:2,-82.5,-59,0,0,-0.00721761 -20390,5508:392:1,-82,-59,0,0,-0.00684079 -20391,5508:391:2,-81.5,-59,0,0,-0.00732278 -20392,5508:391:1,-81,-59,0,0,-0.00748425 -20393,5508:390:2,-80.5,-59,0,0,-0.00633555 -20394,5508:390:1,-80,-59,0,0,-0.00575294 -20395,5507:499:2,-79.5,-59,0,0,-0.00568053 -20396,5507:499:1,-79,-59,0,0,-0.00595852 -20397,5507:498:2,-78.5,-59,0,0,-0.00700249 -20398,5507:498:1,-78,-59,0,0,-0.00794621 -20399,5507:497:2,-77.5,-59,0,0,-0.00888659 -20400,5507:497:1,-77,-59,0,0,-0.0100105 -20401,5507:496:2,-76.5,-59,0,0,-0.0102456 -20402,5507:496:1,-76,-59,0,0,-0.00997481 -20403,5507:495:2,-75.5,-59,0,0,-0.00979184 -20404,5507:495:1,-75,-59,0,0,-0.00915807 -20405,5507:394:2,-74.5,-59,0,0,-0.00891038 -20406,5507:394:1,-74,-59,0,0,-0.00923805 -20407,5507:393:2,-73.5,-59,0,0,-0.00952043 -20408,5507:393:1,-73,-59,0,0,-0.00950981 -20409,5507:392:2,-72.5,-59,0,0,-0.00916424 -20410,5507:392:1,-72,-59,0,0,-0.00871201 -20411,5507:391:2,-71.5,-59,0,0,-0.00797283 -20412,5507:391:1,-71,-59,0,0,-0.00739812 -20413,5507:390:2,-70.5,-59,0,0,-0.007095 -20414,5507:390:1,-70,-59,0,0,-0.00671118 -20415,5506:499:2,-69.5,-59,0,0,-0.00641637 -20416,5506:499:1,-69,-59,0,0,-0.00619074 -20417,5506:498:2,-68.5,-59,0,0,-0.00607215 -20418,5506:498:1,-68,-59,0,0,-0.00605734 -20419,5506:497:2,-67.5,-59,0,0,-0.00609518 -20420,5506:497:1,-67,-59,0,0,-0.00626829 -20421,5506:496:2,-66.5,-59,0,0,-0.00671268 -20422,5506:496:1,-66,-59,0,0,-0.00688505 -20423,5506:495:2,-65.5,-59,0,0,-0.00755459 -20424,5506:495:1,-65,-59,0,0,-0.00828419 -20425,5506:394:2,-64.5,-59,0,0,-0.00852383 -20426,5505:499:1,-59,-59,0,0,-0.00638362 -20427,5505:498:2,-58.5,-59,0,0,-0.00629066 -20428,5505:498:1,-58,-59,0,0,-0.0061264 -20429,5505:497:2,-57.5,-59,0,0,-0.00595719 -20430,5505:497:1,-57,-59,0,0,-0.00574655 -20431,5505:496:2,-56.5,-59,0,0,-0.00551266 -20432,5505:496:1,-56,-59,0,0,-0.00549923 -20433,5505:495:2,-55.5,-59,0,0,-0.00549677 -20434,5505:495:1,-55,-59,0,0,-0.00548701 -20435,5505:394:2,-54.5,-59,0,0,-0.00547727 -20436,5505:394:1,-54,-59,0,0,-0.00547119 -20437,5505:393:2,-53.5,-59,0,0,-0.00546878 -20438,5505:393:1,-53,-59,0,0,-0.00546878 -20439,5505:392:2,-52.5,-59,0,0,-0.00546878 -20440,5505:392:1,-52,-59,0,0,-0.00546633 -20441,5505:391:2,-51.5,-59,0,0,-0.0054627 -20442,5505:391:1,-51,-59,0,0,-0.00546026 -20443,5505:390:2,-50.5,-59,0,0,-0.00545907 -20444,5505:390:1,-50,-59,0,0,-0.00546026 -20445,5504:499:2,-49.5,-59,0,0,-0.00546026 -20446,5504:499:1,-49,-59,0,0,-0.00546148 -20447,5504:498:2,-48.5,-59,0,0,-0.00545907 -20448,5504:498:1,-48,-59,0,0,-0.00545663 -20449,5504:497:2,-47.5,-59,0,0,-0.00545541 -20450,5504:497:1,-47,-59,0,0,-0.00545541 -20451,5504:496:2,-46.5,-59,0,0,-0.00545541 -20452,5504:496:1,-46,-59,0,0,-0.00545541 -20453,5504:495:2,-45.5,-59,0,0,-0.00545423 -20454,5504:495:1,-45,-59,0,0,-0.00545423 -20455,5504:394:2,-44.5,-59,0,0,-0.00545541 -20456,5504:394:1,-44,-59,0,0,-0.00545541 -20457,5504:393:2,-43.5,-59,0,0,-0.00545541 -20458,5504:393:1,-43,-59,0,0,-0.00545541 -20459,5504:392:2,-42.5,-59,0,0,-0.00545541 -20460,5504:392:1,-42,-59,0,0,-0.00545541 -20461,5504:391:2,-41.5,-59,0,0,-0.00545541 -20462,5504:391:1,-41,-59,0,0,-0.00545663 -20463,5504:390:2,-40.5,-59,0,0,-0.00545663 -20464,5504:390:1,-40,-59,0,0,-0.00545663 -20465,5503:499:2,-39.5,-59,0,0,-0.00545663 -20466,5503:499:1,-39,-59,0,0,-0.00545785 -20467,5503:498:2,-38.5,-59,0,0,-0.00545785 -20468,5503:498:1,-38,-59,0,0,-0.00545785 -20469,5503:497:2,-37.5,-59,0,0,-0.00545785 -20470,5503:497:1,-37,-59,0,0,-0.00545785 -20471,5503:496:2,-36.5,-59,0,0,-0.00545785 -20472,5503:496:1,-36,-59,0,0,-0.00545785 -20473,5503:495:2,-35.5,-59,0,0,-0.00545785 -20474,5503:495:1,-35,-59,0,0,-0.00545785 -20475,5503:394:2,-34.5,-59,0,0,-0.00545785 -20476,5503:394:1,-34,-59,0,0,-0.00545785 -20477,5503:393:2,-33.5,-59,0,0,-0.00545785 -20478,5503:393:1,-33,-59,0,0,-0.00545785 -20479,5503:392:2,-32.5,-59,0,0,-0.00545785 -20480,5503:392:1,-32,-59,0,0,-0.00545785 -20481,5503:391:2,-31.5,-59,0,0,-0.00545785 -20482,5503:391:1,-31,-59,0,0,-0.00545907 -20483,5503:390:2,-30.5,-59,0,0,-0.00545907 -20484,5503:390:1,-30,-59,0,0,-0.00545785 -20485,5502:499:2,-29.5,-59,0,0,-0.00545785 -20486,5502:499:1,-29,-59,0,0,-0.00545785 -20487,5502:498:2,-28.5,-59,0,0,-0.00545663 -20488,5502:498:1,-28,-59,0,0,-0.00545663 -20489,5502:497:2,-27.5,-59,0,0,-0.00545663 -20490,5502:497:1,-27,-59,0,0,-0.00545663 -20491,5502:496:2,-26.5,-59,0,0,-0.00545663 -20492,5502:496:1,-26,-59,0,0,-0.00545541 -20493,5502:495:2,-25.5,-59,0,0,-0.00545541 -20494,5502:495:1,-25,-59,0,0,-0.00545541 -20495,5502:394:2,-24.5,-59,0,0,-0.00545541 -20496,5502:394:1,-24,-59,0,0,-0.00545541 -20497,5502:393:2,-23.5,-59,0,0,-0.00545423 -20498,5502:393:1,-23,-59,0,0,-0.00545423 -20499,5502:392:2,-22.5,-59,0,0,-0.005453 -20500,5502:392:1,-22,-59,0,0,-0.005453 -20501,5502:391:2,-21.5,-59,0,0,-0.00545179 -20502,5502:391:1,-21,-59,0,0,-0.00545057 -20503,5502:390:2,-20.5,-59,0,0,-0.00544935 -20504,5502:390:1,-20,-59,0,0,-0.00544816 -20505,5501:499:2,-19.5,-59,0,0,-0.00544695 -20506,5501:499:1,-19,-59,0,0,-0.00544695 -20507,5501:498:2,-18.5,-59,0,0,-0.00544573 -20508,5501:498:1,-18,-59,0,0,-0.00544573 -20509,5501:497:2,-17.5,-59,0,0,-0.00544451 -20510,5501:497:1,-17,-59,0,0,-0.00544211 -20511,5501:496:2,-16.5,-59,0,0,-0.00544089 -20512,5501:496:1,-16,-59,0,0,-0.00543968 -20513,5501:495:2,-15.5,-59,0,0,-0.0054385 -20514,5501:495:1,-15,-59,0,0,-0.00543728 -20515,5501:394:2,-14.5,-59,0,0,-0.00543728 -20516,5501:394:1,-14,-59,0,0,-0.00543728 -20517,5501:393:2,-13.5,-59,0,0,-0.00543728 -20518,5501:393:1,-13,-59,0,0,-0.00543728 -20519,5501:392:2,-12.5,-59,0,0,-0.00543728 -20520,5501:392:1,-12,-59,0,0,-0.00543728 -20521,5501:391:2,-11.5,-59,0,0,-0.00543606 -20522,5501:391:1,-11,-59,0,0,-0.00543606 -20523,5501:390:2,-10.5,-59,0,0,-0.00543606 -20524,5501:390:1,-10,-59,0,0,-0.00543728 -20525,5500:499:2,-9.5,-59,0,0,-0.0054385 -20526,5500:499:1,-9,-59,0,0,-0.00543968 -20527,5500:498:2,-8.5,-59,0,0,-0.00543968 -20528,5500:498:1,-8,-59,0,0,-0.00543968 -20529,5500:497:2,-7.5,-59,0,0,-0.00543968 -20530,5500:497:1,-7,-59,0,0,-0.00543968 -20531,5500:496:2,-6.5,-59,0,0,-0.0054385 -20532,5500:496:1,-6,-59,0,0,-0.0054385 -20533,5500:495:2,-5.5,-59,0,0,-0.00543728 -20534,5500:495:1,-5,-59,0,0,-0.00543728 -20535,5500:394:2,-4.5,-59,0,0,-0.0054385 -20536,5500:394:1,-4,-59,0,0,-0.0054385 -20537,5500:393:2,-3.5,-59,0,0,-0.0054385 -20538,5500:393:1,-3,-59,0,0,-0.0054385 -20539,5500:392:2,-2.5,-59,0,0,-0.0054385 -20540,5500:392:1,-2,-59,0,0,-0.00543968 -20541,5500:391:2,-1.5,-59,0,0,-0.00544089 -20542,5500:391:1,-1,-59,0,0,-0.00544211 -20543,5500:390:2,-0.5,-59,0,0,-0.00544333 -20544,3500:390:2,0,-59,0,0,-0.00544333 -20545,3500:390:2,0.5,-59,0,0,-0.00544211 -20546,3500:391:1,1,-59,0,0,-0.00543968 -20547,3500:391:2,1.5,-59,0,0,-0.0054385 -20548,3500:392:1,2,-59,0,0,-0.0054385 -20549,3500:392:2,2.5,-59,0,0,-0.0054385 -20550,3500:393:1,3,-59,0,0,-0.0054385 -20551,3500:393:2,3.5,-59,0,0,-0.00543968 -20552,3500:394:1,4,-59,0,0,-0.00543968 -20553,3500:394:2,4.5,-59,0,0,-0.00544211 -20554,3500:495:1,5,-59,0,0,-0.00544211 -20555,3500:495:2,5.5,-59,0,0,-0.00544333 -20556,3500:496:1,6,-59,0,0,-0.00544333 -20557,3500:496:2,6.5,-59,0,0,-0.00544333 -20558,3500:497:1,7,-59,0,0,-0.00544333 -20559,3500:497:2,7.5,-59,0,0,-0.00544333 -20560,3500:498:1,8,-59,0,0,-0.00544211 -20561,3500:498:2,8.5,-59,0,0,-0.00544333 -20562,3500:499:1,9,-59,0,0,-0.00544333 -20563,3500:499:2,9.5,-59,0,0,-0.00544211 -20564,3501:390:1,10,-59,0,0,-0.00544089 -20565,3501:390:2,10.5,-59,0,0,-0.00544089 -20566,3501:391:1,11,-59,0,0,-0.00544089 -20567,3501:391:2,11.5,-59,0,0,-0.00543968 -20568,3501:392:1,12,-59,0,0,-0.0054385 -20569,3501:392:2,12.5,-59,0,0,-0.00543728 -20570,3501:393:1,13,-59,0,0,-0.00543728 -20571,3501:393:2,13.5,-59,0,0,-0.00543728 -20572,3501:394:1,14,-59,0,0,-0.0054385 -20573,3501:394:2,14.5,-59,0,0,-0.0054385 -20574,3501:495:1,15,-59,0,0,-0.00543728 -20575,3501:495:2,15.5,-59,0,0,-0.00543728 -20576,3501:496:1,16,-59,0,0,-0.00543728 -20577,3501:496:2,16.5,-59,0,0,-0.00543728 -20578,3501:497:1,17,-59,0,0,-0.00543485 -20579,3501:497:2,17.5,-59,0,0,-0.00543363 -20580,3501:498:1,18,-59,0,0,-0.00542881 -20581,3501:498:2,18.5,-59,0,0,-0.00542763 -20582,3501:499:1,19,-59,0,0,-0.00542763 -20583,3501:499:2,19.5,-59,0,0,-0.00543002 -20584,3502:390:1,20,-59,0,0,-0.00543124 -20585,3502:390:2,20.5,-59,0,0,-0.00543245 -20586,3502:391:1,21,-59,0,0,-0.00543245 -20587,3502:391:2,21.5,-59,0,0,-0.00543124 -20588,3502:392:1,22,-59,0,0,-0.00543002 -20589,3502:392:2,22.5,-59,0,0,-0.00543002 -20590,3502:393:1,23,-59,0,0,-0.00543002 -20591,3502:393:2,23.5,-59,0,0,-0.00543124 -20592,3502:394:1,24,-59,0,0,-0.00543124 -20593,3502:394:2,24.5,-59,0,0,-0.00543245 -20594,3502:495:1,25,-59,0,0,-0.00543245 -20595,3502:495:2,25.5,-59,0,0,-0.00543245 -20596,3502:496:1,26,-59,0,0,-0.00543245 -20597,3502:496:2,26.5,-59,0,0,-0.00543245 -20598,3502:497:1,27,-59,0,0,-0.00543245 -20599,3502:497:2,27.5,-59,0,0,-0.00543363 -20600,3502:498:1,28,-59,0,0,-0.00543245 -20601,3502:498:2,28.5,-59,0,0,-0.00543245 -20602,3502:499:1,29,-59,0,0,-0.00543245 -20603,3502:499:2,29.5,-59,0,0,-0.00543245 -20604,3503:390:1,30,-59,0,0,-0.00543245 -20605,3503:390:2,30.5,-59,0,0,-0.00543002 -20606,3503:391:1,31,-59,0,0,-0.00543002 -20607,3503:391:2,31.5,-59,0,0,-0.00543606 -20608,3503:392:1,32,-59,0,0,-0.00544451 -20609,3503:392:2,32.5,-59,0,0,-0.00544695 -20610,3503:393:1,33,-59,0,0,-0.00545057 -20611,3503:393:2,33.5,-59,0,0,-0.005453 -20612,3503:394:1,34,-59,0,0,-0.00545423 -20613,3503:394:2,34.5,-59,0,0,-0.00545663 -20614,3503:495:1,35,-59,0,0,-0.00545423 -20615,3503:495:2,35.5,-59,0,0,-0.005453 -20616,3503:496:1,36,-59,0,0,-0.00544935 -20617,3503:496:2,36.5,-59,0,0,-0.00544573 -20618,3503:497:1,37,-59,0,0,-0.00544333 -20619,3503:497:2,37.5,-59,0,0,-0.00544211 -20620,3503:498:1,38,-59,0,0,-0.00544089 -20621,3503:498:2,38.5,-59,0,0,-0.00543968 -20622,3503:499:1,39,-59,0,0,-0.0054385 -20623,3503:499:2,39.5,-59,0,0,-0.00543968 -20624,3504:390:1,40,-59,0,0,-0.00544089 -20625,3504:390:2,40.5,-59,0,0,-0.00544211 -20626,3504:391:1,41,-59,0,0,-0.00544451 -20627,3504:391:2,41.5,-59,0,0,-0.00544573 -20628,3504:392:1,42,-59,0,0,-0.00544935 -20629,3504:392:2,42.5,-59,0,0,-0.00545057 -20630,3504:393:1,43,-59,0,0,-0.00545179 -20631,3504:393:2,43.5,-59,0,0,-0.00545179 -20632,3504:394:1,44,-59,0,0,-0.005453 -20633,3504:394:2,44.5,-59,0,0,-0.00545423 -20634,3504:495:1,45,-59,0,0,-0.00545423 -20635,3504:495:2,45.5,-59,0,0,-0.00545663 -20636,3504:496:1,46,-59,0,0,-0.00545907 -20637,3504:496:2,46.5,-59,0,0,-0.00545907 -20638,3504:497:1,47,-59,0,0,-0.00546148 -20639,3504:497:2,47.5,-59,0,0,-0.0054627 -20640,3504:498:1,48,-59,0,0,-0.00546633 -20641,3504:498:2,48.5,-59,0,0,-0.00547119 -20642,3504:499:1,49,-59,0,0,-0.00547119 -20643,3504:499:2,49.5,-59,0,0,-0.00547241 -20644,3505:390:1,50,-59,0,0,-0.00547241 -20645,3505:390:2,50.5,-59,0,0,-0.00547605 -20646,3505:391:1,51,-59,0,0,-0.00547972 -20647,3505:391:2,51.5,-59,0,0,-0.00547972 -20648,3505:392:1,52,-59,0,0,-0.00548091 -20649,3505:392:2,52.5,-59,0,0,-0.00548214 -20650,3505:393:1,53,-59,0,0,-0.00548214 -20651,3505:393:2,53.5,-59,0,0,-0.00548214 -20652,3505:394:1,54,-59,0,0,-0.00548337 -20653,3505:394:2,54.5,-59,0,0,-0.00548214 -20654,3505:495:1,55,-59,0,0,-0.00547972 -20655,3505:495:2,55.5,-59,0,0,-0.0054785 -20656,3505:496:1,56,-59,0,0,-0.00547605 -20657,3505:496:2,56.5,-59,0,0,-0.00547364 -20658,3505:497:1,57,-59,0,0,-0.00547119 -20659,3505:497:2,57.5,-59,0,0,-0.00546633 -20660,3505:498:1,58,-59,0,0,-0.00545785 -20661,3505:498:2,58.5,-59,0,0,-0.00545541 -20662,3505:499:1,59,-59,0,0,-0.005453 -20663,3505:499:2,59.5,-59,0,0,-0.00545179 -20664,3506:390:1,60,-59,0,0,-0.00545057 -20665,3506:390:2,60.5,-59,0,0,-0.00544816 -20666,3506:391:1,61,-59,0,0,-0.00544695 -20667,3506:391:2,61.5,-59,0,0,-0.00545057 -20668,3506:392:1,62,-59,0,0,-0.005453 -20669,3506:392:2,62.5,-59,0,0,-0.00545179 -20670,3506:393:1,63,-59,0,0,-0.00545179 -20671,3506:393:2,63.5,-59,0,0,-0.00545541 -20672,3506:394:1,64,-59,0,0,-0.00545663 -20673,3506:394:2,64.5,-59,0,0,-0.00545663 -20674,3506:495:1,65,-59,0,0,-0.00545663 -20675,3506:495:2,65.5,-59,0,0,-0.00545663 -20676,3506:496:1,66,-59,0,0,-0.00545663 -20677,3506:496:2,66.5,-59,0,0,-0.00545541 -20678,3506:497:1,67,-59,0,0,-0.00545423 -20679,3506:497:2,67.5,-59,0,0,-0.005453 -20680,3506:498:1,68,-59,0,0,-0.005453 -20681,3506:498:2,68.5,-59,0,0,-0.00545179 -20682,3506:499:1,69,-59,0,0,-0.00545179 -20683,3506:499:2,69.5,-59,0,0,-0.00545179 -20684,3507:390:1,70,-59,0,0,-0.00545057 -20685,3507:390:2,70.5,-59,0,0,-0.00545057 -20686,3507:391:1,71,-59,0,0,-0.00545057 -20687,3507:391:2,71.5,-59,0,0,-0.00545179 -20688,3507:392:1,72,-59,0,0,-0.00545179 -20689,3507:392:2,72.5,-59,0,0,-0.00545179 -20690,3507:393:2,73.5,-59,0,0,-0.00545179 -20691,3507:394:1,74,-59,0,0,-0.005453 -20692,3507:394:2,74.5,-59,0,0,-0.005453 -20693,3507:495:1,75,-59,0,0,-0.00545423 -20694,3507:495:2,75.5,-59,0,0,-0.00545423 -20695,3507:496:1,76,-59,0,0,-0.005453 -20696,3507:496:2,76.5,-59,0,0,-0.005453 -20697,3507:497:1,77,-59,0,0,-0.00545423 -20698,3507:497:2,77.5,-59,0,0,-0.00545423 -20699,3507:498:1,78,-59,0,0,-0.00545423 -20700,3507:498:2,78.5,-59,0,0,-0.00545423 -20701,3507:499:1,79,-59,0,0,-0.005453 -20702,3507:499:2,79.5,-59,0,0,-0.005453 -20703,3508:390:1,80,-59,0,0,-0.00545541 -20704,3508:390:2,80.5,-59,0,0,-0.00545785 -20705,3508:391:1,81,-59,0,0,-0.00546026 -20706,3508:391:2,81.5,-59,0,0,-0.00546392 -20707,3508:392:1,82,-59,0,0,-0.00546633 -20708,3508:392:2,82.5,-59,0,0,-0.00546755 -20709,3508:393:1,83,-59,0,0,-0.00547119 -20710,3508:393:2,83.5,-59,0,0,-0.00547486 -20711,3508:394:1,84,-59,0,0,-0.00547486 -20712,3508:394:2,84.5,-59,0,0,-0.00547241 -20713,3508:495:1,85,-59,0,0,-0.00547364 -20714,3508:495:2,85.5,-59,0,0,-0.00547364 -20715,3508:496:1,86,-59,0,0,-0.00547364 -20716,3508:496:2,86.5,-59,0,0,-0.00547486 -20717,3508:497:1,87,-59,0,0,-0.00547605 -20718,3508:497:2,87.5,-59,0,0,-0.00547486 -20719,3508:498:1,88,-59,0,0,-0.00547241 -20720,3508:498:2,88.5,-59,0,0,-0.00547119 -20721,3508:499:1,89,-59,0,0,-0.00547 -20722,3508:499:2,89.5,-59,0,0,-0.00546755 -20723,3509:390:1,90,-59,0,0,-0.00546755 -20724,3509:390:2,90.5,-59,0,0,-0.00546878 -20725,3509:391:1,91,-59,0,0,-0.00547119 -20726,3509:391:2,91.5,-59,0,0,-0.00547241 -20727,3509:392:1,92,-59,0,0,-0.00547364 -20728,3509:392:2,92.5,-59,0,0,-0.00547364 -20729,3509:393:1,93,-59,0,0,-0.00547605 -20730,3509:393:2,93.5,-59,0,0,-0.00547972 -20731,3509:394:1,94,-59,0,0,-0.00548337 -20732,3509:394:2,94.5,-59,0,0,-0.00548459 -20733,3509:495:1,95,-59,0,0,-0.00548459 -20734,3509:495:2,95.5,-59,0,0,-0.00547972 -20735,3509:499:2,99.5,-59,0,0,-0.0055446 -20736,3510:390:1,100,-59,0,0,-0.00553848 -20737,3510:390:2,100.5,-59,0,0,-0.00553352 -20738,3510:391:1,101,-59,0,0,-0.00551513 -20739,3510:391:2,101.5,-59,0,0,-0.00550165 -20740,3510:392:1,102,-59,0,0,-0.00550411 -20741,3510:392:2,102.5,-59,0,0,-0.00550288 -20742,3510:393:1,103,-59,0,0,-0.00548582 -20743,3510:393:2,103.5,-59,0,0,-0.00549069 -20744,3510:394:1,104,-59,0,0,-0.00548582 -20745,3510:394:2,104.5,-59,0,0,-0.00548582 -20746,3510:495:1,105,-59,0,0,-0.00548582 -20747,3510:495:2,105.5,-59,0,0,-0.00549434 -20748,3510:496:1,106,-59,0,0,-0.00549434 -20749,3510:496:2,106.5,-59,0,0,-0.00546878 -20750,3510:497:1,107,-59,0,0,-0.00546026 -20751,3510:497:2,107.5,-59,0,0,-0.00545663 -20752,3510:498:1,108,-59,0,0,-0.00545179 -20753,3510:498:2,108.5,-59,0,0,-0.00545057 -20754,3510:499:1,109,-59,0,0,-0.00545423 -20755,3510:499:2,109.5,-59,0,0,-0.00545785 -20756,3511:390:1,110,-59,0,0,-0.00545907 -20757,3511:390:2,110.5,-59,0,0,-0.00545907 -20758,3511:391:1,111,-59,0,0,-0.00546026 -20759,3511:391:2,111.5,-59,0,0,-0.0054627 -20760,3511:392:1,112,-59,0,0,-0.00546511 -20761,3511:392:2,112.5,-59,0,0,-0.00546755 -20762,3511:393:1,113,-59,0,0,-0.00547241 -20763,3511:393:2,113.5,-59,0,0,-0.00547605 -20764,3511:394:1,114,-59,0,0,-0.00547727 -20765,3511:394:2,114.5,-59,0,0,-0.00547727 -20766,3511:495:1,115,-59,0,0,-0.00547727 -20767,3511:495:2,115.5,-59,0,0,-0.0054785 -20768,3511:496:1,116,-59,0,0,-0.00547727 -20769,3511:496:2,116.5,-59,0,0,-0.00547486 -20770,3511:497:1,117,-59,0,0,-0.00547364 -20771,3511:497:2,117.5,-59,0,0,-0.00547119 -20772,3511:498:1,118,-59,0,0,-0.00546878 -20773,3511:498:2,118.5,-59,0,0,-0.00546511 -20774,3511:499:1,119,-59,0,0,-0.0054627 -20775,3511:499:2,119.5,-59,0,0,-0.00546148 -20776,3512:390:1,120,-59,0,0,-0.0054627 -20777,3512:390:2,120.5,-59,0,0,-0.0054627 -20778,3512:391:1,121,-59,0,0,-0.00547119 -20779,3512:391:2,121.5,-59,0,0,-0.005498 -20780,3512:392:1,122,-59,0,0,-0.00550777 -20781,3512:392:2,122.5,-59,0,0,-0.00548091 -20782,3512:393:1,123,-59,0,0,-0.00545907 -20783,3512:393:2,123.5,-59,0,0,-0.00545663 -20784,3512:394:1,124,-59,0,0,-0.00546511 -20785,3512:394:2,124.5,-59,0,0,-0.0055237 -20786,3512:495:1,125,-59,0,0,-0.00556188 -20787,3512:495:2,125.5,-59,0,0,-0.00558168 -20788,3512:496:1,126,-59,0,0,-0.00557797 -20789,3512:496:2,126.5,-59,0,0,-0.00559536 -20790,3512:497:1,127,-59,0,0,-0.0055941 -20791,3512:497:2,127.5,-59,0,0,-0.00560033 -20792,3512:498:1,128,-59,0,0,-0.00560903 -20793,3512:498:2,128.5,-59,0,0,-0.00560033 -20794,3512:499:1,129,-59,0,0,-0.00560405 -20795,3512:499:2,129.5,-59,0,0,-0.00561154 -20796,3513:390:1,130,-59,0,0,-0.00560781 -20797,3513:390:2,130.5,-59,0,0,-0.0056128 -20798,3513:391:1,131,-59,0,0,-0.00563025 -20799,3513:391:2,131.5,-59,0,0,-0.00554708 -20800,3513:392:1,132,-59,0,0,-0.00544816 -20801,3513:392:2,132.5,-59,0,0,-0.00544573 -20802,3513:393:1,133,-59,0,0,-0.00544935 -20803,3513:393:2,133.5,-59,0,0,-0.00545663 -20804,3513:394:1,134,-59,0,0,-0.00545663 -20805,3513:495:2,135.5,-59,0,0,-0.0055139 -20806,3513:496:1,136,-59,0,0,-0.005498 -20807,3513:496:2,136.5,-59,0,0,-0.00562278 -20808,3513:497:1,137,-59,0,0,-0.00570837 -20809,3513:497:2,137.5,-59,0,0,-0.00566918 -20810,3513:498:1,138,-59,0,0,-0.00563904 -20811,3513:498:2,138.5,-59,0,0,-0.00562026 -20812,3513:499:1,139,-59,0,0,-0.00559536 -20813,3513:499:2,139.5,-59,0,0,-0.00556188 -20814,3514:390:1,140,-59,0,0,-0.00552494 -20815,3514:390:2,140.5,-59,0,0,-0.00550658 -20816,3514:391:1,141,-59,0,0,-0.00548947 -20817,3514:391:2,141.5,-59,0,0,-0.00547119 -20818,3514:392:1,142,-59,0,0,-0.00545785 -20819,3514:392:2,142.5,-59,0,0,-0.00544333 -20820,3514:393:1,143,-59,0,0,-0.00544089 -20821,3514:393:2,143.5,-59,0,0,-0.00544333 -20822,3514:394:1,144,-59,0,0,-0.00544573 -20823,3514:394:2,144.5,-59,0,0,-0.00544695 -20824,3514:495:1,145,-59,0,0,-0.00544935 -20825,3514:495:2,145.5,-59,0,0,-0.00545179 -20826,3514:496:1,146,-59,0,0,-0.00545423 -20827,3514:496:2,146.5,-59,0,0,-0.00545663 -20828,3514:497:1,147,-59,0,0,-0.00546026 -20829,3514:497:2,147.5,-59,0,0,-0.0054627 -20830,3514:498:1,148,-59,0,0,-0.00546148 -20831,3514:498:2,148.5,-59,0,0,-0.0054627 -20832,3514:499:1,149,-59,0,0,-0.00546511 -20833,3514:499:2,149.5,-59,0,0,-0.00546511 -20834,3515:390:1,150,-59,0,0,-0.00546148 -20835,3515:390:2,150.5,-59,0,0,-0.00546148 -20836,3515:391:1,151,-59,0,0,-0.00546511 -20837,3515:391:2,151.5,-59,0,0,-0.00546878 -20838,3515:392:1,152,-59,0,0,-0.00547119 -20839,3515:392:2,152.5,-59,0,0,-0.00547364 -20840,3515:393:1,153,-59,0,0,-0.00547605 -20841,3515:393:2,153.5,-59,0,0,-0.00547241 -20842,3515:394:1,154,-59,0,0,-0.00547486 -20843,3515:394:2,154.5,-59,0,0,-0.00547727 -20844,3515:495:1,155,-59,0,0,-0.00547605 -20845,3515:495:2,155.5,-59,0,0,-0.00547605 -20846,3515:496:1,156,-59,0,0,-0.00547241 -20847,3515:496:2,156.5,-59,0,0,-0.00547 -20848,3515:497:1,157,-59,0,0,-0.00546878 -20849,3515:497:2,157.5,-59,0,0,-0.00546755 -20850,3515:498:1,158,-59,0,0,-0.00546755 -20851,3515:498:2,158.5,-59,0,0,-0.00546755 -20852,3515:499:1,159,-59,0,0,-0.00546511 -20853,3515:499:2,159.5,-59,0,0,-0.00546633 -20854,3516:390:1,160,-59,0,0,-0.00546755 -20855,3516:390:2,160.5,-59,0,0,-0.00546511 -20856,3516:391:1,161,-59,0,0,-0.00546511 -20857,3516:391:2,161.5,-59,0,0,-0.00546755 -20858,3516:392:1,162,-59,0,0,-0.00547119 -20859,3516:392:2,162.5,-59,0,0,-0.00547241 -20860,3516:393:1,163,-59,0,0,-0.00547486 -20861,3516:393:2,163.5,-59,0,0,-0.00547486 -20862,3516:394:1,164,-59,0,0,-0.00547605 -20863,3516:394:2,164.5,-59,0,0,-0.00547727 -20864,3516:495:1,165,-59,0,0,-0.00547727 -20865,3516:495:2,165.5,-59,0,0,-0.00547605 -20866,3516:496:1,166,-59,0,0,-0.00547486 -20867,3516:496:2,166.5,-59,0,0,-0.00547486 -20868,3516:497:1,167,-59,0,0,-0.00547486 -20869,3516:497:2,167.5,-59,0,0,-0.00547486 -20870,3516:498:1,168,-59,0,0,-0.00547486 -20871,3516:498:2,168.5,-59,0,0,-0.00547364 -20872,3516:499:1,169,-59,0,0,-0.00547241 -20873,3516:499:2,169.5,-59,0,0,-0.00547119 -20874,3517:390:1,170,-59,0,0,-0.00547 -20875,3517:390:2,170.5,-59,0,0,-0.00547119 -20876,3517:391:1,171,-59,0,0,-0.00547972 -20877,3517:391:2,171.5,-59,0,0,-0.00548701 -20878,3517:392:1,172,-59,0,0,-0.00548582 -20879,3517:392:2,172.5,-59,0,0,-0.00547972 -20880,3517:393:1,173,-59,0,0,-0.00547364 -20881,3517:393:2,173.5,-59,0,0,-0.00547241 -20882,3517:394:1,174,-59,0,0,-0.00547364 -20883,3517:394:2,174.5,-59,0,0,-0.00547486 -20884,3517:495:1,175,-59,0,0,-0.00547486 -20885,3517:495:2,175.5,-59,0,0,-0.00547241 -20886,3517:496:1,176,-59,0,0,-0.00547119 -20887,3517:496:2,176.5,-59,0,0,-0.00547241 -20888,3517:497:1,177,-59,0,0,-0.00547605 -20889,3517:497:2,177.5,-59,0,0,-0.00548337 -20890,3517:498:1,178,-59,0,0,-0.005498 -20891,3517:498:2,178.5,-59,0,0,-0.00551266 -20892,3517:499:1,179,-59,0,0,-0.0055188 -20893,3517:499:2,179.5,-59,0,0,-0.00564279 -20894,3518:390:1,180,-59,0,0,-0.00593078 -20895,5518:380:3,-180,-58.5,0,0,-0.00676662 -20896,5517:489:4,-179.5,-58.5,0,0,-0.00691734 -20897,5517:489:3,-179,-58.5,0,0,-0.00687893 -20898,5517:488:4,-178.5,-58.5,0,0,-0.00657965 -20899,5517:488:3,-178,-58.5,0,0,-0.00597844 -20900,5517:487:4,-177.5,-58.5,0,0,-0.00584703 -20901,5517:487:3,-177,-58.5,0,0,-0.00603851 -20902,5517:486:4,-176.5,-58.5,0,0,-0.00613322 -20903,5517:486:3,-176,-58.5,0,0,-0.00665913 -20904,5517:485:4,-175.5,-58.5,0,0,-0.00726759 -20905,5517:485:3,-175,-58.5,0,0,-0.00597179 -20906,5517:384:4,-174.5,-58.5,0,0,-0.00600905 -20907,5517:384:3,-174,-58.5,0,0,-0.00635109 -20908,5517:383:4,-173.5,-58.5,0,0,-0.00663842 -20909,5517:383:3,-173,-58.5,0,0,-0.00665764 -20910,5517:382:4,-172.5,-58.5,0,0,-0.00631585 -20911,5517:382:3,-172,-58.5,0,0,-0.00611145 -20912,5517:381:4,-171.5,-58.5,0,0,-0.00604388 -20913,5517:381:3,-171,-58.5,0,0,-0.00574144 -20914,5517:380:4,-170.5,-58.5,0,0,-0.00558418 -20915,5517:380:3,-170,-58.5,0,0,-0.00558047 -20916,5516:489:4,-169.5,-58.5,0,0,-0.00564654 -20917,5516:489:3,-169,-58.5,0,0,-0.00575806 -20918,5516:488:4,-168.5,-58.5,0,0,-0.00589925 -20919,5516:488:3,-168,-58.5,0,0,-0.00588223 -20920,5516:487:4,-167.5,-58.5,0,0,-0.00570709 -20921,5516:487:3,-167,-58.5,0,0,-0.00560405 -20922,5516:486:4,-166.5,-58.5,0,0,-0.00562903 -20923,5516:486:3,-166,-58.5,0,0,-0.00571092 -20924,5516:485:4,-165.5,-58.5,0,0,-0.00577342 -20925,5516:485:3,-165,-58.5,0,0,-0.00583146 -20926,5516:384:4,-164.5,-58.5,0,0,-0.00593078 -20927,5516:384:3,-164,-58.5,0,0,-0.00603315 -20928,5516:383:4,-163.5,-58.5,0,0,-0.00626132 -20929,5516:383:3,-163,-58.5,0,0,-0.00667397 -20930,5516:382:4,-162.5,-58.5,0,0,-0.00689886 -20931,5516:382:3,-162,-58.5,0,0,-0.00692349 -20932,5516:381:4,-161.5,-58.5,0,0,-0.00698848 -20933,5516:381:3,-161,-58.5,0,0,-0.0070698 -20934,5516:380:4,-160.5,-58.5,0,0,-0.00710764 -20935,5516:380:3,-160,-58.5,0,0,-0.00711875 -20936,5515:489:4,-159.5,-58.5,0,0,-0.00712983 -20937,5515:489:3,-159,-58.5,0,0,-0.00715048 -20938,5515:488:4,-158.5,-58.5,0,0,-0.00716161 -20939,5515:488:3,-158,-58.5,0,0,-0.00715048 -20940,5515:487:4,-157.5,-58.5,0,0,-0.00712189 -20941,5515:487:3,-157,-58.5,0,0,-0.00706664 -20942,5515:486:4,-156.5,-58.5,0,0,-0.00699313 -20943,5515:486:3,-156,-58.5,0,0,-0.00693888 -20944,5515:485:4,-155.5,-58.5,0,0,-0.00689886 -20945,5515:485:3,-155,-58.5,0,0,-0.00687128 -20946,5515:384:4,-154.5,-58.5,0,0,-0.00686517 -20947,5515:384:3,-154,-58.5,0,0,-0.00687744 -20948,5515:383:4,-153.5,-58.5,0,0,-0.00689272 -20949,5515:383:3,-153,-58.5,0,0,-0.00693582 -20950,5515:382:4,-152.5,-58.5,0,0,-0.00709341 -20951,5515:382:3,-152,-58.5,0,0,-0.00730812 -20952,5515:381:4,-151.5,-58.5,0,0,-0.0073784 -20953,5515:381:3,-151,-58.5,0,0,-0.00734235 -20954,5515:380:4,-150.5,-58.5,0,0,-0.00722247 -20955,5515:380:3,-150,-58.5,0,0,-0.00717436 -20956,5514:489:4,-149.5,-58.5,0,0,-0.00720478 -20957,5514:489:3,-149,-58.5,0,0,-0.00720958 -20958,5514:488:4,-148.5,-58.5,0,0,-0.00712029 -20959,5514:488:3,-148,-58.5,0,0,-0.00708081 -20960,5514:487:4,-147.5,-58.5,0,0,-0.00721761 -20961,5514:487:3,-147,-58.5,0,0,-0.00727732 -20962,5514:486:4,-146.5,-58.5,0,0,-0.00729028 -20963,5514:486:3,-146,-58.5,0,0,-0.00735054 -20964,5514:485:4,-145.5,-58.5,0,0,-0.00735708 -20965,5514:485:3,-145,-58.5,0,0,-0.00726112 -20966,5514:384:4,-144.5,-58.5,0,0,-0.00723047 -20967,5514:384:3,-144,-58.5,0,0,-0.00721761 -20968,5514:383:4,-143.5,-58.5,0,0,-0.00726921 -20969,5514:383:3,-143,-58.5,0,0,-0.00737184 -20970,5514:382:4,-142.5,-58.5,0,0,-0.00742455 -20971,5514:382:3,-142,-58.5,0,0,-0.00749926 -20972,5514:381:4,-141.5,-58.5,0,0,-0.00765955 -20973,5514:381:3,-141,-58.5,0,0,-0.00797456 -20974,5514:380:4,-140.5,-58.5,0,0,-0.00797456 -20975,5514:380:3,-140,-58.5,0,0,-0.00752606 -20976,5513:489:4,-139.5,-58.5,0,0,-0.00721599 -20977,5513:489:3,-139,-58.5,0,0,-0.00724659 -20978,5513:488:4,-138.5,-58.5,0,0,-0.00744273 -20979,5513:488:3,-138,-58.5,0,0,-0.00765446 -20980,5513:487:4,-137.5,-58.5,0,0,-0.00801019 -20981,5513:487:3,-137,-58.5,0,0,-0.00775049 -20982,5513:486:4,-136.5,-58.5,0,0,-0.00764422 -20983,5513:486:3,-136,-58.5,0,0,-0.00765617 -20984,5513:485:4,-135.5,-58.5,0,0,-0.0075512 -20985,5513:485:3,-135,-58.5,0,0,-0.0074643 -20986,5513:384:4,-134.5,-58.5,0,0,-0.00747597 -20987,5513:384:3,-134,-58.5,0,0,-0.00759844 -20988,5513:383:4,-133.5,-58.5,0,0,-0.00788103 -20989,5513:383:3,-133,-58.5,0,0,-0.00844065 -20990,5513:382:4,-132.5,-58.5,0,0,-0.00907069 -20991,5513:382:3,-132,-58.5,0,0,-0.00949073 -20992,5513:381:4,-131.5,-58.5,0,0,-0.00943586 -20993,5513:381:3,-131,-58.5,0,0,-0.00909299 -20994,5513:380:4,-130.5,-58.5,0,0,-0.00914586 -20995,5513:380:3,-130,-58.5,0,0,-0.00936038 -20996,5512:489:4,-129.5,-58.5,0,0,-0.00953742 -20997,5512:489:3,-129,-58.5,0,0,-0.00970265 -20998,5512:488:4,-128.5,-58.5,0,0,-0.00989505 -20999,5512:488:3,-128,-58.5,0,0,-0.0100127 -21000,5512:487:4,-127.5,-58.5,0,0,-0.0102387 -21001,5512:487:3,-127,-58.5,0,0,-0.0108822 -21002,5512:486:4,-126.5,-58.5,0,0,-0.0112304 -21003,5512:486:3,-126,-58.5,0,0,-0.0112984 -21004,5512:485:4,-125.5,-58.5,0,0,-0.0112255 -21005,5512:485:3,-125,-58.5,0,0,-0.0111057 -21006,5512:384:4,-124.5,-58.5,0,0,-0.0110266 -21007,5512:384:3,-124,-58.5,0,0,-0.0110241 -21008,5512:383:4,-123.5,-58.5,0,0,-0.0110143 -21009,5512:383:3,-123,-58.5,0,0,-0.0108434 -21010,5512:382:4,-122.5,-58.5,0,0,-0.010611 -21011,5512:382:3,-122,-58.5,0,0,-0.0105874 -21012,5512:381:4,-121.5,-58.5,0,0,-0.0106967 -21013,5512:381:3,-121,-58.5,0,0,-0.0107542 -21014,5512:380:4,-120.5,-58.5,0,0,-0.0108555 -21015,5512:380:3,-120,-58.5,0,0,-0.0109358 -21016,5511:489:4,-119.5,-58.5,0,0,-0.0109163 -21017,5511:489:3,-119,-58.5,0,0,-0.0108871 -21018,5511:488:4,-118.5,-58.5,0,0,-0.0108604 -21019,5511:488:3,-118,-58.5,0,0,-0.0108338 -21020,5511:487:4,-117.5,-58.5,0,0,-0.0107975 -21021,5511:487:3,-117,-58.5,0,0,-0.0107734 -21022,5511:486:4,-116.5,-58.5,0,0,-0.0108024 -21023,5511:486:3,-116,-58.5,0,0,-0.0108555 -21024,5511:485:4,-115.5,-58.5,0,0,-0.0109946 -21025,5511:485:3,-115,-58.5,0,0,-0.0112079 -21026,5511:384:4,-114.5,-58.5,0,0,-0.0114355 -21027,5511:384:3,-114,-58.5,0,0,-0.0116653 -21028,5511:383:4,-113.5,-58.5,0,0,-0.0118652 -21029,5511:383:3,-113,-58.5,0,0,-0.0120281 -21030,5511:382:4,-112.5,-58.5,0,0,-0.012101 -21031,5511:382:3,-112,-58.5,0,0,-0.0120847 -21032,5511:381:4,-111.5,-58.5,0,0,-0.0119316 -21033,5511:381:3,-111,-58.5,0,0,-0.0117675 -21034,5511:380:4,-110.5,-58.5,0,0,-0.0116262 -21035,5511:380:3,-110,-58.5,0,0,-0.0115048 -21036,5510:489:4,-109.5,-58.5,0,0,-0.0114228 -21037,5510:489:3,-109,-58.5,0,0,-0.0113439 -21038,5510:488:4,-108.5,-58.5,0,0,-0.0112656 -21039,5510:488:3,-108,-58.5,0,0,-0.0111604 -21040,5510:487:4,-107.5,-58.5,0,0,-0.0109971 -21041,5510:487:3,-107,-58.5,0,0,-0.010812 -21042,5510:486:4,-106.5,-58.5,0,0,-0.0106134 -21043,5510:486:3,-106,-58.5,0,0,-0.0104232 -21044,5510:485:4,-105.5,-58.5,0,0,-0.0103559 -21045,5510:485:3,-105,-58.5,0,0,-0.0104558 -21046,5510:384:4,-104.5,-58.5,0,0,-0.0106372 -21047,5510:384:3,-104,-58.5,0,0,-0.0108579 -21048,5510:383:4,-103.5,-58.5,0,0,-0.011071 -21049,5510:383:3,-103,-58.5,0,0,-0.0111281 -21050,5510:382:4,-102.5,-58.5,0,0,-0.0107662 -21051,5510:382:3,-102,-58.5,0,0,-0.0104605 -21052,5510:381:4,-101.5,-58.5,0,0,-0.0103329 -21053,5510:381:3,-101,-58.5,0,0,-0.0102319 -21054,5510:380:4,-100.5,-58.5,0,0,-0.0102342 -21055,5510:380:3,-100,-58.5,0,0,-0.0103606 -21056,5509:489:4,-99.5,-58.5,0,0,-0.0104722 -21057,5509:489:3,-99,-58.5,0,0,-0.0104862 -21058,5509:488:4,-98.5,-58.5,0,0,-0.0104886 -21059,5509:488:3,-98,-58.5,0,0,-0.010585 -21060,5509:487:4,-97.5,-58.5,0,0,-0.0106633 -21061,5509:487:3,-97,-58.5,0,0,-0.0106609 -21062,5509:486:4,-96.5,-58.5,0,0,-0.0103652 -21063,5509:486:3,-96,-58.5,0,0,-0.00953742 -21064,5509:485:4,-95.5,-58.5,0,0,-0.00861549 -21065,5509:485:3,-95,-58.5,0,0,-0.00807464 -21066,5509:384:4,-94.5,-58.5,0,0,-0.00777813 -21067,5509:384:3,-94,-58.5,0,0,-0.00794265 -21068,5509:383:4,-93.5,-58.5,0,0,-0.00875096 -21069,5509:383:3,-93,-58.5,0,0,-0.00914991 -21070,5509:382:4,-92.5,-58.5,0,0,-0.00898415 -21071,5509:382:3,-92,-58.5,0,0,-0.00866556 -21072,5509:381:4,-91.5,-58.5,0,0,-0.00897413 -21073,5509:381:3,-91,-58.5,0,0,-0.00961002 -21074,5509:380:4,-90.5,-58.5,0,0,-0.0100284 -21075,5509:380:3,-90,-58.5,0,0,-0.0102273 -21076,5508:489:4,-89.5,-58.5,0,0,-0.0103976 -21077,5508:489:3,-89,-58.5,0,0,-0.0105003 -21078,5508:488:4,-88.5,-58.5,0,0,-0.0105097 -21079,5508:488:3,-88,-58.5,0,0,-0.0104909 -21080,5508:487:4,-87.5,-58.5,0,0,-0.010649 -21081,5508:487:3,-87,-58.5,0,0,-0.0107734 -21082,5508:486:4,-86.5,-58.5,0,0,-0.0109114 -21083,5508:486:3,-86,-58.5,0,0,-0.0112255 -21084,5508:485:4,-85.5,-58.5,0,0,-0.0116315 -21085,5508:485:3,-85,-58.5,0,0,-0.011479 -21086,5508:384:4,-84.5,-58.5,0,0,-0.0117202 -21087,5508:384:3,-84,-58.5,0,0,-0.011929 -21088,5508:383:4,-83.5,-58.5,0,0,-0.0121416 -21089,5508:383:3,-83,-58.5,0,0,-0.0122342 -21090,5508:382:4,-82.5,-58.5,0,0,-0.0111779 -21091,5508:382:3,-82,-58.5,0,0,-0.00876264 -21092,5508:381:4,-81.5,-58.5,0,0,-0.0079303 -21093,5508:381:3,-81,-58.5,0,0,-0.00666361 -21094,5508:380:4,-80.5,-58.5,0,0,-0.00598241 -21095,5508:380:3,-80,-58.5,0,0,-0.00609923 -21096,5507:489:4,-79.5,-58.5,0,0,-0.007344 -21097,5507:489:3,-79,-58.5,0,0,-0.00871782 -21098,5507:488:4,-78.5,-58.5,0,0,-0.00991272 -21099,5507:488:3,-78,-58.5,0,0,-0.0104582 -21100,5507:487:4,-77.5,-58.5,0,0,-0.0106443 -21101,5507:487:3,-77,-58.5,0,0,-0.0108482 -21102,5507:486:4,-76.5,-58.5,0,0,-0.0108604 -21103,5507:486:3,-76,-58.5,0,0,-0.0102022 -21104,5507:485:4,-75.5,-58.5,0,0,-0.00969618 -21105,5507:485:3,-75,-58.5,0,0,-0.0095929 -21106,5507:384:4,-74.5,-58.5,0,0,-0.00968318 -21107,5507:384:3,-74,-58.5,0,0,-0.0099238 -21108,5507:383:4,-73.5,-58.5,0,0,-0.0101727 -21109,5507:383:3,-73,-58.5,0,0,-0.010159 -21110,5507:382:4,-72.5,-58.5,0,0,-0.00983339 -21111,5507:382:3,-72,-58.5,0,0,-0.00922982 -21112,5507:381:4,-71.5,-58.5,0,0,-0.00846894 -21113,5507:381:3,-71,-58.5,0,0,-0.00792679 -21114,5507:380:4,-70.5,-58.5,0,0,-0.00761705 -21115,5507:380:3,-70,-58.5,0,0,-0.007095 -21116,5506:489:4,-69.5,-58.5,0,0,-0.00672162 -21117,5506:489:3,-69,-58.5,0,0,-0.00643778 -21118,5506:488:4,-68.5,-58.5,0,0,-0.00629343 -21119,5506:488:3,-68,-58.5,0,0,-0.00616739 -21120,5506:487:4,-67.5,-58.5,0,0,-0.00608704 -21121,5506:487:3,-67,-58.5,0,0,-0.00605332 -21122,5506:486:4,-66.5,-58.5,0,0,-0.00604794 -21123,5506:486:3,-66,-58.5,0,0,-0.00604925 -21124,5506:485:4,-65.5,-58.5,0,0,-0.0062544 -21125,5506:485:3,-65,-58.5,0,0,-0.00699469 -21126,5506:384:4,-64.5,-58.5,0,0,-0.00780593 -21127,5505:489:3,-59,-58.5,0,0,-0.00637652 -21128,5505:488:4,-58.5,-58.5,0,0,-0.00642779 -21129,5505:488:3,-58,-58.5,0,0,-0.00635954 -21130,5505:487:4,-57.5,-58.5,0,0,-0.00622941 -21131,5505:487:3,-57,-58.5,0,0,-0.00611958 -21132,5505:486:4,-56.5,-58.5,0,0,-0.00596119 -21133,5505:486:3,-56,-58.5,0,0,-0.00574016 -21134,5505:485:4,-55.5,-58.5,0,0,-0.00557177 -21135,5505:485:3,-55,-58.5,0,0,-0.00548214 -21136,5505:384:4,-54.5,-58.5,0,0,-0.0054785 -21137,5505:384:3,-54,-58.5,0,0,-0.00547119 -21138,5505:383:4,-53.5,-58.5,0,0,-0.00546878 -21139,5505:383:3,-53,-58.5,0,0,-0.00547 -21140,5505:382:4,-52.5,-58.5,0,0,-0.00547 -21141,5505:382:3,-52,-58.5,0,0,-0.00546755 -21142,5505:381:4,-51.5,-58.5,0,0,-0.00546511 -21143,5505:381:3,-51,-58.5,0,0,-0.00546392 -21144,5505:380:4,-50.5,-58.5,0,0,-0.00546148 -21145,5505:380:3,-50,-58.5,0,0,-0.00546148 -21146,5504:489:4,-49.5,-58.5,0,0,-0.0054627 -21147,5504:489:3,-49,-58.5,0,0,-0.00546511 -21148,5504:488:4,-48.5,-58.5,0,0,-0.0054627 -21149,5504:488:3,-48,-58.5,0,0,-0.00545785 -21150,5504:487:4,-47.5,-58.5,0,0,-0.00545541 -21151,5504:487:3,-47,-58.5,0,0,-0.00545541 -21152,5504:486:4,-46.5,-58.5,0,0,-0.00545423 -21153,5504:486:3,-46,-58.5,0,0,-0.00545423 -21154,5504:485:4,-45.5,-58.5,0,0,-0.00545423 -21155,5504:485:3,-45,-58.5,0,0,-0.00545423 -21156,5504:384:4,-44.5,-58.5,0,0,-0.00545423 -21157,5504:384:3,-44,-58.5,0,0,-0.00545423 -21158,5504:383:4,-43.5,-58.5,0,0,-0.00545423 -21159,5504:383:3,-43,-58.5,0,0,-0.00545541 -21160,5504:382:4,-42.5,-58.5,0,0,-0.00545541 -21161,5504:382:3,-42,-58.5,0,0,-0.00545541 -21162,5504:381:4,-41.5,-58.5,0,0,-0.00545541 -21163,5504:381:3,-41,-58.5,0,0,-0.00545541 -21164,5504:380:4,-40.5,-58.5,0,0,-0.00545663 -21165,5504:380:3,-40,-58.5,0,0,-0.00545663 -21166,5503:489:4,-39.5,-58.5,0,0,-0.00545785 -21167,5503:489:3,-39,-58.5,0,0,-0.00545785 -21168,5503:488:4,-38.5,-58.5,0,0,-0.00545907 -21169,5503:488:3,-38,-58.5,0,0,-0.00545907 -21170,5503:487:4,-37.5,-58.5,0,0,-0.00545907 -21171,5503:487:3,-37,-58.5,0,0,-0.00545907 -21172,5503:486:4,-36.5,-58.5,0,0,-0.00545907 -21173,5503:486:3,-36,-58.5,0,0,-0.00545907 -21174,5503:485:4,-35.5,-58.5,0,0,-0.00545907 -21175,5503:485:3,-35,-58.5,0,0,-0.00545907 -21176,5503:384:4,-34.5,-58.5,0,0,-0.00545907 -21177,5503:384:3,-34,-58.5,0,0,-0.00545907 -21178,5503:383:4,-33.5,-58.5,0,0,-0.00545907 -21179,5503:383:3,-33,-58.5,0,0,-0.00545907 -21180,5503:382:4,-32.5,-58.5,0,0,-0.00545907 -21181,5503:382:3,-32,-58.5,0,0,-0.00545907 -21182,5503:381:4,-31.5,-58.5,0,0,-0.00545907 -21183,5503:381:3,-31,-58.5,0,0,-0.00546026 -21184,5503:380:4,-30.5,-58.5,0,0,-0.00545907 -21185,5503:380:3,-30,-58.5,0,0,-0.00545907 -21186,5502:489:4,-29.5,-58.5,0,0,-0.00545785 -21187,5502:489:3,-29,-58.5,0,0,-0.00545785 -21188,5502:488:4,-28.5,-58.5,0,0,-0.00545785 -21189,5502:488:3,-28,-58.5,0,0,-0.00545785 -21190,5502:487:4,-27.5,-58.5,0,0,-0.00545785 -21191,5502:487:3,-27,-58.5,0,0,-0.00545663 -21192,5502:486:4,-26.5,-58.5,0,0,-0.00545663 -21193,5502:486:3,-26,-58.5,0,0,-0.00545663 -21194,5502:485:4,-25.5,-58.5,0,0,-0.00545663 -21195,5502:485:3,-25,-58.5,0,0,-0.00545663 -21196,5502:384:4,-24.5,-58.5,0,0,-0.00545541 -21197,5502:384:3,-24,-58.5,0,0,-0.00545541 -21198,5502:383:4,-23.5,-58.5,0,0,-0.00545423 -21199,5502:383:3,-23,-58.5,0,0,-0.00545423 -21200,5502:382:4,-22.5,-58.5,0,0,-0.005453 -21201,5502:382:3,-22,-58.5,0,0,-0.005453 -21202,5502:381:4,-21.5,-58.5,0,0,-0.00545179 -21203,5502:381:3,-21,-58.5,0,0,-0.00545057 -21204,5502:380:4,-20.5,-58.5,0,0,-0.00544935 -21205,5502:380:3,-20,-58.5,0,0,-0.00544935 -21206,5501:489:4,-19.5,-58.5,0,0,-0.00544816 -21207,5501:489:3,-19,-58.5,0,0,-0.00544695 -21208,5501:488:4,-18.5,-58.5,0,0,-0.00544573 -21209,5501:488:3,-18,-58.5,0,0,-0.00544451 -21210,5501:487:4,-17.5,-58.5,0,0,-0.00544333 -21211,5501:487:3,-17,-58.5,0,0,-0.00544211 -21212,5501:486:4,-16.5,-58.5,0,0,-0.00543968 -21213,5501:486:3,-16,-58.5,0,0,-0.0054385 -21214,5501:485:4,-15.5,-58.5,0,0,-0.00543728 -21215,5501:485:3,-15,-58.5,0,0,-0.00543606 -21216,5501:384:4,-14.5,-58.5,0,0,-0.00543606 -21217,5501:384:3,-14,-58.5,0,0,-0.00543606 -21218,5501:383:4,-13.5,-58.5,0,0,-0.00543606 -21219,5501:383:3,-13,-58.5,0,0,-0.00543606 -21220,5501:382:4,-12.5,-58.5,0,0,-0.00543728 -21221,5501:382:3,-12,-58.5,0,0,-0.00543728 -21222,5501:381:4,-11.5,-58.5,0,0,-0.00543728 -21223,5501:381:3,-11,-58.5,0,0,-0.00543728 -21224,5501:380:4,-10.5,-58.5,0,0,-0.00543728 -21225,5501:380:3,-10,-58.5,0,0,-0.0054385 -21226,5500:489:4,-9.5,-58.5,0,0,-0.0054385 -21227,5500:489:3,-9,-58.5,0,0,-0.00543968 -21228,5500:488:4,-8.5,-58.5,0,0,-0.00544089 -21229,5500:488:3,-8,-58.5,0,0,-0.00544211 -21230,5500:487:4,-7.5,-58.5,0,0,-0.00544211 -21231,5500:487:3,-7,-58.5,0,0,-0.00544089 -21232,5500:486:4,-6.5,-58.5,0,0,-0.00543968 -21233,5500:486:3,-6,-58.5,0,0,-0.0054385 -21234,5500:485:4,-5.5,-58.5,0,0,-0.00543728 -21235,5500:485:3,-5,-58.5,0,0,-0.00543728 -21236,5500:384:4,-4.5,-58.5,0,0,-0.00543728 -21237,5500:384:3,-4,-58.5,0,0,-0.00543606 -21238,5500:383:4,-3.5,-58.5,0,0,-0.00543606 -21239,5500:383:3,-3,-58.5,0,0,-0.00543606 -21240,5500:382:4,-2.5,-58.5,0,0,-0.00543606 -21241,5500:382:3,-2,-58.5,0,0,-0.00543728 -21242,5500:381:4,-1.5,-58.5,0,0,-0.00543968 -21243,5500:381:3,-1,-58.5,0,0,-0.00544211 -21244,5500:380:4,-0.5,-58.5,0,0,-0.00544451 -21245,3500:380:4,0,-58.5,0,0,-0.00544573 -21246,3500:380:4,0.5,-58.5,0,0,-0.00544451 -21247,3500:381:3,1,-58.5,0,0,-0.00544211 -21248,3500:381:4,1.5,-58.5,0,0,-0.00543968 -21249,3500:382:3,2,-58.5,0,0,-0.0054385 -21250,3500:382:4,2.5,-58.5,0,0,-0.00543728 -21251,3500:383:3,3,-58.5,0,0,-0.00543728 -21252,3500:383:4,3.5,-58.5,0,0,-0.0054385 -21253,3500:384:3,4,-58.5,0,0,-0.00543968 -21254,3500:384:4,4.5,-58.5,0,0,-0.00544211 -21255,3500:485:3,5,-58.5,0,0,-0.00544333 -21256,3500:485:4,5.5,-58.5,0,0,-0.00544333 -21257,3500:486:3,6,-58.5,0,0,-0.00544451 -21258,3500:486:4,6.5,-58.5,0,0,-0.00544573 -21259,3500:487:3,7,-58.5,0,0,-0.00544451 -21260,3500:487:4,7.5,-58.5,0,0,-0.00544573 -21261,3500:488:3,8,-58.5,0,0,-0.00544816 -21262,3500:488:4,8.5,-58.5,0,0,-0.00544935 -21263,3500:489:3,9,-58.5,0,0,-0.00545179 -21264,3500:489:4,9.5,-58.5,0,0,-0.00545179 -21265,3501:380:3,10,-58.5,0,0,-0.00545179 -21266,3501:380:4,10.5,-58.5,0,0,-0.00545057 -21267,3501:381:3,11,-58.5,0,0,-0.00544935 -21268,3501:381:4,11.5,-58.5,0,0,-0.00544935 -21269,3501:382:3,12,-58.5,0,0,-0.00544816 -21270,3501:382:4,12.5,-58.5,0,0,-0.00544573 -21271,3501:383:3,13,-58.5,0,0,-0.00544211 -21272,3501:383:4,13.5,-58.5,0,0,-0.00544089 -21273,3501:384:3,14,-58.5,0,0,-0.0054385 -21274,3501:384:4,14.5,-58.5,0,0,-0.00543728 -21275,3501:485:3,15,-58.5,0,0,-0.00543606 -21276,3501:485:4,15.5,-58.5,0,0,-0.00543485 -21277,3501:486:3,16,-58.5,0,0,-0.00543363 -21278,3501:486:4,16.5,-58.5,0,0,-0.00543363 -21279,3501:487:3,17,-58.5,0,0,-0.00543002 -21280,3501:487:4,17.5,-58.5,0,0,-0.00542642 -21281,3501:488:3,18,-58.5,0,0,-0.0054252 -21282,3501:488:4,18.5,-58.5,0,0,-0.0054252 -21283,3501:489:3,19,-58.5,0,0,-0.0054252 -21284,3501:489:4,19.5,-58.5,0,0,-0.00542763 -21285,3502:380:3,20,-58.5,0,0,-0.00542881 -21286,3502:380:4,20.5,-58.5,0,0,-0.00542881 -21287,3502:381:3,21,-58.5,0,0,-0.00542881 -21288,3502:381:4,21.5,-58.5,0,0,-0.00542763 -21289,3502:382:3,22,-58.5,0,0,-0.00542642 -21290,3502:382:4,22.5,-58.5,0,0,-0.0054252 -21291,3502:383:3,23,-58.5,0,0,-0.00542642 -21292,3502:383:4,23.5,-58.5,0,0,-0.00542763 -21293,3502:384:3,24,-58.5,0,0,-0.00542763 -21294,3502:384:4,24.5,-58.5,0,0,-0.00542642 -21295,3502:485:3,25,-58.5,0,0,-0.00542642 -21296,3502:485:4,25.5,-58.5,0,0,-0.0054252 -21297,3502:486:3,26,-58.5,0,0,-0.00542399 -21298,3502:486:4,26.5,-58.5,0,0,-0.00542281 -21299,3502:487:3,27,-58.5,0,0,-0.00542281 -21300,3502:487:4,27.5,-58.5,0,0,-0.00542281 -21301,3502:488:3,28,-58.5,0,0,-0.00542763 -21302,3502:488:4,28.5,-58.5,0,0,-0.00543363 -21303,3502:489:3,29,-58.5,0,0,-0.0054385 -21304,3502:489:4,29.5,-58.5,0,0,-0.00544089 -21305,3503:380:3,30,-58.5,0,0,-0.00544333 -21306,3503:380:4,30.5,-58.5,0,0,-0.00544573 -21307,3503:381:3,31,-58.5,0,0,-0.00543002 -21308,3503:381:4,31.5,-58.5,0,0,-0.00543245 -21309,3503:382:3,32,-58.5,0,0,-0.00544333 -21310,3503:382:4,32.5,-58.5,0,0,-0.00544451 -21311,3503:383:3,33,-58.5,0,0,-0.00544695 -21312,3503:383:4,33.5,-58.5,0,0,-0.00544935 -21313,3503:384:3,34,-58.5,0,0,-0.00544935 -21314,3503:384:4,34.5,-58.5,0,0,-0.00545057 -21315,3503:485:3,35,-58.5,0,0,-0.00544935 -21316,3503:485:4,35.5,-58.5,0,0,-0.00544816 -21317,3503:486:3,36,-58.5,0,0,-0.00544695 -21318,3503:486:4,36.5,-58.5,0,0,-0.00544333 -21319,3503:487:3,37,-58.5,0,0,-0.00544089 -21320,3503:487:4,37.5,-58.5,0,0,-0.0054385 -21321,3503:488:3,38,-58.5,0,0,-0.00543606 -21322,3503:488:4,38.5,-58.5,0,0,-0.00543485 -21323,3503:489:3,39,-58.5,0,0,-0.00543485 -21324,3503:489:4,39.5,-58.5,0,0,-0.00543606 -21325,3504:380:3,40,-58.5,0,0,-0.00543728 -21326,3504:380:4,40.5,-58.5,0,0,-0.0054385 -21327,3504:381:3,41,-58.5,0,0,-0.0054385 -21328,3504:381:4,41.5,-58.5,0,0,-0.0054385 -21329,3504:382:3,42,-58.5,0,0,-0.00544089 -21330,3504:382:4,42.5,-58.5,0,0,-0.00544451 -21331,3504:383:3,43,-58.5,0,0,-0.00544816 -21332,3504:383:4,43.5,-58.5,0,0,-0.00544935 -21333,3504:384:3,44,-58.5,0,0,-0.00545057 -21334,3504:384:4,44.5,-58.5,0,0,-0.00545057 -21335,3504:485:3,45,-58.5,0,0,-0.00545057 -21336,3504:485:4,45.5,-58.5,0,0,-0.005453 -21337,3504:486:3,46,-58.5,0,0,-0.00545423 -21338,3504:486:4,46.5,-58.5,0,0,-0.00545541 -21339,3504:487:3,47,-58.5,0,0,-0.00545541 -21340,3504:487:4,47.5,-58.5,0,0,-0.00545663 -21341,3504:488:3,48,-58.5,0,0,-0.00545907 -21342,3504:488:4,48.5,-58.5,0,0,-0.00546026 -21343,3504:489:3,49,-58.5,0,0,-0.00546511 -21344,3504:489:4,49.5,-58.5,0,0,-0.00546878 -21345,3505:380:3,50,-58.5,0,0,-0.00546755 -21346,3505:380:4,50.5,-58.5,0,0,-0.00546511 -21347,3505:381:3,51,-58.5,0,0,-0.00546511 -21348,3505:381:4,51.5,-58.5,0,0,-0.00547 -21349,3505:382:3,52,-58.5,0,0,-0.00547 -21350,3505:382:4,52.5,-58.5,0,0,-0.00546878 -21351,3505:383:3,53,-58.5,0,0,-0.00546878 -21352,3505:383:4,53.5,-58.5,0,0,-0.00547 -21353,3505:384:3,54,-58.5,0,0,-0.00547 -21354,3505:384:4,54.5,-58.5,0,0,-0.00547119 -21355,3505:485:3,55,-58.5,0,0,-0.00547119 -21356,3505:485:4,55.5,-58.5,0,0,-0.00547 -21357,3505:486:3,56,-58.5,0,0,-0.00546511 -21358,3505:486:4,56.5,-58.5,0,0,-0.00546148 -21359,3505:487:3,57,-58.5,0,0,-0.00545663 -21360,3505:487:4,57.5,-58.5,0,0,-0.00545423 -21361,3505:488:3,58,-58.5,0,0,-0.005453 -21362,3505:488:4,58.5,-58.5,0,0,-0.005453 -21363,3505:489:3,59,-58.5,0,0,-0.00545057 -21364,3505:489:4,59.5,-58.5,0,0,-0.00544935 -21365,3506:380:3,60,-58.5,0,0,-0.00544816 -21366,3506:380:4,60.5,-58.5,0,0,-0.00544816 -21367,3506:381:3,61,-58.5,0,0,-0.00545057 -21368,3506:381:4,61.5,-58.5,0,0,-0.005453 -21369,3506:382:3,62,-58.5,0,0,-0.00546392 -21370,3506:382:4,62.5,-58.5,0,0,-0.00546026 -21371,3506:383:3,63,-58.5,0,0,-0.00544935 -21372,3506:383:4,63.5,-58.5,0,0,-0.00544695 -21373,3506:384:3,64,-58.5,0,0,-0.00544935 -21374,3506:384:4,64.5,-58.5,0,0,-0.00545179 -21375,3506:485:3,65,-58.5,0,0,-0.00545541 -21376,3506:485:4,65.5,-58.5,0,0,-0.00545785 -21377,3506:486:3,66,-58.5,0,0,-0.00545785 -21378,3506:486:4,66.5,-58.5,0,0,-0.00545663 -21379,3506:487:3,67,-58.5,0,0,-0.00545541 -21380,3506:487:4,67.5,-58.5,0,0,-0.00545663 -21381,3506:488:3,68,-58.5,0,0,-0.00545423 -21382,3506:488:4,68.5,-58.5,0,0,-0.005453 -21383,3506:489:3,69,-58.5,0,0,-0.00545057 -21384,3506:489:4,69.5,-58.5,0,0,-0.00544935 -21385,3507:380:3,70,-58.5,0,0,-0.00544816 -21386,3507:380:4,70.5,-58.5,0,0,-0.00544695 -21387,3507:381:3,71,-58.5,0,0,-0.00544695 -21388,3507:381:4,71.5,-58.5,0,0,-0.00544816 -21389,3507:382:3,72,-58.5,0,0,-0.00544935 -21390,3507:382:4,72.5,-58.5,0,0,-0.00545057 -21391,3507:383:4,73.5,-58.5,0,0,-0.00545179 -21392,3507:384:3,74,-58.5,0,0,-0.00545179 -21393,3507:384:4,74.5,-58.5,0,0,-0.00545179 -21394,3507:485:3,75,-58.5,0,0,-0.00545179 -21395,3507:485:4,75.5,-58.5,0,0,-0.00545179 -21396,3507:486:3,76,-58.5,0,0,-0.00545179 -21397,3507:486:4,76.5,-58.5,0,0,-0.005453 -21398,3507:487:3,77,-58.5,0,0,-0.005453 -21399,3507:487:4,77.5,-58.5,0,0,-0.005453 -21400,3507:488:3,78,-58.5,0,0,-0.005453 -21401,3507:488:4,78.5,-58.5,0,0,-0.005453 -21402,3507:489:3,79,-58.5,0,0,-0.005453 -21403,3507:489:4,79.5,-58.5,0,0,-0.005453 -21404,3508:380:3,80,-58.5,0,0,-0.005453 -21405,3508:380:4,80.5,-58.5,0,0,-0.005453 -21406,3508:381:3,81,-58.5,0,0,-0.00545423 -21407,3508:381:4,81.5,-58.5,0,0,-0.00545663 -21408,3508:382:3,82,-58.5,0,0,-0.00546026 -21409,3508:382:4,82.5,-58.5,0,0,-0.0054627 -21410,3508:383:3,83,-58.5,0,0,-0.0054627 -21411,3508:383:4,83.5,-58.5,0,0,-0.00546392 -21412,3508:384:3,84,-58.5,0,0,-0.00546392 -21413,3508:384:4,84.5,-58.5,0,0,-0.00546511 -21414,3508:485:3,85,-58.5,0,0,-0.00546633 -21415,3508:485:4,85.5,-58.5,0,0,-0.00546633 -21416,3508:486:3,86,-58.5,0,0,-0.00546633 -21417,3508:486:4,86.5,-58.5,0,0,-0.00546755 -21418,3508:487:3,87,-58.5,0,0,-0.00546878 -21419,3508:487:4,87.5,-58.5,0,0,-0.00546755 -21420,3508:488:3,88,-58.5,0,0,-0.00546633 -21421,3508:488:4,88.5,-58.5,0,0,-0.0054627 -21422,3508:489:3,89,-58.5,0,0,-0.00548459 -21423,3508:489:4,89.5,-58.5,0,0,-0.00550288 -21424,3509:380:3,90,-58.5,0,0,-0.00545541 -21425,3509:380:4,90.5,-58.5,0,0,-0.00545785 -21426,3509:381:3,91,-58.5,0,0,-0.00546148 -21427,3509:381:4,91.5,-58.5,0,0,-0.00546511 -21428,3509:382:3,92,-58.5,0,0,-0.00546755 -21429,3509:382:4,92.5,-58.5,0,0,-0.00546878 -21430,3509:383:3,93,-58.5,0,0,-0.00547 -21431,3509:383:4,93.5,-58.5,0,0,-0.00547119 -21432,3509:384:3,94,-58.5,0,0,-0.00547241 -21433,3509:384:4,94.5,-58.5,0,0,-0.00547364 -21434,3509:485:3,95,-58.5,0,0,-0.00547486 -21435,3509:485:4,95.5,-58.5,0,0,-0.00547727 -21436,3509:486:3,96,-58.5,0,0,-0.00548214 -21437,3509:486:4,96.5,-58.5,0,0,-0.00549557 -21438,3509:487:3,97,-58.5,0,0,-0.00549312 -21439,3509:487:4,97.5,-58.5,0,0,-0.00547727 -21440,3509:489:3,99,-58.5,0,0,-0.005509 -21441,3509:489:4,99.5,-58.5,0,0,-0.00551266 -21442,3510:380:3,100,-58.5,0,0,-0.00548947 -21443,3510:380:4,100.5,-58.5,0,0,-0.00547972 -21444,3510:381:3,101,-58.5,0,0,-0.0054785 -21445,3510:381:4,101.5,-58.5,0,0,-0.00547727 -21446,3510:382:3,102,-58.5,0,0,-0.00548091 -21447,3510:382:4,102.5,-58.5,0,0,-0.00548337 -21448,3510:383:3,103,-58.5,0,0,-0.00548214 -21449,3510:383:4,103.5,-58.5,0,0,-0.00547727 -21450,3510:384:3,104,-58.5,0,0,-0.0054785 -21451,3510:384:4,104.5,-58.5,0,0,-0.00547727 -21452,3510:485:3,105,-58.5,0,0,-0.00547605 -21453,3510:485:4,105.5,-58.5,0,0,-0.00547241 -21454,3510:486:3,106,-58.5,0,0,-0.00546755 -21455,3510:486:4,106.5,-58.5,0,0,-0.0054627 -21456,3510:487:3,107,-58.5,0,0,-0.00545907 -21457,3510:487:4,107.5,-58.5,0,0,-0.00545785 -21458,3510:488:3,108,-58.5,0,0,-0.00545785 -21459,3510:488:4,108.5,-58.5,0,0,-0.00545663 -21460,3510:489:3,109,-58.5,0,0,-0.00545541 -21461,3510:489:4,109.5,-58.5,0,0,-0.00545663 -21462,3511:380:3,110,-58.5,0,0,-0.00545663 -21463,3511:380:4,110.5,-58.5,0,0,-0.00545663 -21464,3511:381:3,111,-58.5,0,0,-0.00545663 -21465,3511:381:4,111.5,-58.5,0,0,-0.00545785 -21466,3511:382:3,112,-58.5,0,0,-0.00545907 -21467,3511:382:4,112.5,-58.5,0,0,-0.00546148 -21468,3511:383:3,113,-58.5,0,0,-0.00546392 -21469,3511:383:4,113.5,-58.5,0,0,-0.00546633 -21470,3511:384:3,114,-58.5,0,0,-0.00546878 -21471,3511:384:4,114.5,-58.5,0,0,-0.00547 -21472,3511:485:3,115,-58.5,0,0,-0.00547241 -21473,3511:485:4,115.5,-58.5,0,0,-0.00547241 -21474,3511:486:3,116,-58.5,0,0,-0.00547486 -21475,3511:486:4,116.5,-58.5,0,0,-0.00547727 -21476,3511:487:3,117,-58.5,0,0,-0.00548947 -21477,3511:487:4,117.5,-58.5,0,0,-0.00559285 -21478,3511:488:3,118,-58.5,0,0,-0.00584703 -21479,3511:488:4,118.5,-58.5,0,0,-0.0060965 -21480,3511:489:3,119,-58.5,0,0,-0.00621557 -21481,3511:489:4,119.5,-58.5,0,0,-0.00586784 -21482,3512:380:3,120,-58.5,0,0,-0.00558293 -21483,3512:380:4,120.5,-58.5,0,0,-0.00549189 -21484,3512:381:3,121,-58.5,0,0,-0.00557922 -21485,3512:381:4,121.5,-58.5,0,0,-0.00587569 -21486,3512:382:3,122,-58.5,0,0,-0.00613729 -21487,3512:382:4,122.5,-58.5,0,0,-0.0064135 -21488,3512:383:3,123,-58.5,0,0,-0.00575934 -21489,3512:383:4,123.5,-58.5,0,0,-0.00551637 -21490,3512:384:3,124,-58.5,0,0,-0.00549312 -21491,3512:384:4,124.5,-58.5,0,0,-0.00546755 -21492,3512:485:3,125,-58.5,0,0,-0.00554584 -21493,3512:485:4,125.5,-58.5,0,0,-0.00563404 -21494,3512:486:3,126,-58.5,0,0,-0.00569063 -21495,3512:486:4,126.5,-58.5,0,0,-0.00558293 -21496,3512:487:3,127,-58.5,0,0,-0.00560781 -21497,3512:487:4,127.5,-58.5,0,0,-0.0056843 -21498,3512:488:3,128,-58.5,0,0,-0.00575677 -21499,3512:488:4,128.5,-58.5,0,0,-0.00577985 -21500,3512:489:3,129,-58.5,0,0,-0.00576575 -21501,3512:489:4,129.5,-58.5,0,0,-0.0057236 -21502,3513:380:3,130,-58.5,0,0,-0.0056818 -21503,3513:380:4,130.5,-58.5,0,0,-0.00564532 -21504,3513:381:3,131,-58.5,0,0,-0.00552741 -21505,3513:381:4,131.5,-58.5,0,0,-0.00546026 -21506,3513:382:3,132,-58.5,0,0,-0.00546878 -21507,3513:382:4,132.5,-58.5,0,0,-0.00548091 -21508,3513:383:3,133,-58.5,0,0,-0.00547 -21509,3513:383:4,133.5,-58.5,0,0,-0.00548337 -21510,3513:384:3,134,-58.5,0,0,-0.00550165 -21511,3513:384:4,134.5,-58.5,0,0,-0.00550288 -21512,3513:485:3,135,-58.5,0,0,-0.00555325 -21513,3513:485:4,135.5,-58.5,0,0,-0.00563526 -21514,3513:486:3,136,-58.5,0,0,-0.00570458 -21515,3513:486:4,136.5,-58.5,0,0,-0.00568307 -21516,3513:487:3,137,-58.5,0,0,-0.00565658 -21517,3513:487:4,137.5,-58.5,0,0,-0.00563904 -21518,3513:488:3,138,-58.5,0,0,-0.00561653 -21519,3513:488:4,138.5,-58.5,0,0,-0.00559661 -21520,3513:489:3,139,-58.5,0,0,-0.00558418 -21521,3513:489:4,139.5,-58.5,0,0,-0.00558168 -21522,3514:380:3,140,-58.5,0,0,-0.00557922 -21523,3514:380:4,140.5,-58.5,0,0,-0.00557672 -21524,3514:381:3,141,-58.5,0,0,-0.00556682 -21525,3514:381:4,141.5,-58.5,0,0,-0.00557177 -21526,3514:382:3,142,-58.5,0,0,-0.00562152 -21527,3514:382:4,142.5,-58.5,0,0,-0.00568936 -21528,3514:383:3,143,-58.5,0,0,-0.00573125 -21529,3514:383:4,143.5,-58.5,0,0,-0.00574273 -21530,3514:384:3,144,-58.5,0,0,-0.00574783 -21531,3514:384:4,144.5,-58.5,0,0,-0.005716 -21532,3514:485:3,145,-58.5,0,0,-0.00564405 -21533,3514:485:4,145.5,-58.5,0,0,-0.00558047 -21534,3514:486:3,146,-58.5,0,0,-0.00555201 -21535,3514:486:4,146.5,-58.5,0,0,-0.00559164 -21536,3514:487:3,147,-58.5,0,0,-0.00555325 -21537,3514:487:4,147.5,-58.5,0,0,-0.00550288 -21538,3514:488:3,148,-58.5,0,0,-0.00548701 -21539,3514:488:4,148.5,-58.5,0,0,-0.00548214 -21540,3514:489:3,149,-58.5,0,0,-0.00548701 -21541,3514:489:4,149.5,-58.5,0,0,-0.0054627 -21542,3515:380:3,150,-58.5,0,0,-0.00546633 -21543,3515:380:4,150.5,-58.5,0,0,-0.00546511 -21544,3515:381:3,151,-58.5,0,0,-0.00546392 -21545,3515:381:4,151.5,-58.5,0,0,-0.00546633 -21546,3515:382:3,152,-58.5,0,0,-0.00546755 -21547,3515:382:4,152.5,-58.5,0,0,-0.00546633 -21548,3515:383:3,153,-58.5,0,0,-0.00547119 -21549,3515:383:4,153.5,-58.5,0,0,-0.00547241 -21550,3515:384:3,154,-58.5,0,0,-0.00547486 -21551,3515:384:4,154.5,-58.5,0,0,-0.00547727 -21552,3515:485:3,155,-58.5,0,0,-0.00547605 -21553,3515:485:4,155.5,-58.5,0,0,-0.00547486 -21554,3515:486:3,156,-58.5,0,0,-0.00547364 -21555,3515:486:4,156.5,-58.5,0,0,-0.00547119 -21556,3515:487:3,157,-58.5,0,0,-0.00546878 -21557,3515:487:4,157.5,-58.5,0,0,-0.00546755 -21558,3515:488:3,158,-58.5,0,0,-0.00546633 -21559,3515:488:4,158.5,-58.5,0,0,-0.00546755 -21560,3515:489:3,159,-58.5,0,0,-0.00546755 -21561,3515:489:4,159.5,-58.5,0,0,-0.00546878 -21562,3516:380:3,160,-58.5,0,0,-0.00546755 -21563,3516:380:4,160.5,-58.5,0,0,-0.00546755 -21564,3516:381:3,161,-58.5,0,0,-0.00546755 -21565,3516:381:4,161.5,-58.5,0,0,-0.00547 -21566,3516:382:3,162,-58.5,0,0,-0.00547119 -21567,3516:382:4,162.5,-58.5,0,0,-0.00547364 -21568,3516:383:3,163,-58.5,0,0,-0.00547486 -21569,3516:383:4,163.5,-58.5,0,0,-0.00547605 -21570,3516:384:3,164,-58.5,0,0,-0.00547605 -21571,3516:384:4,164.5,-58.5,0,0,-0.00547486 -21572,3516:485:3,165,-58.5,0,0,-0.00547364 -21573,3516:485:4,165.5,-58.5,0,0,-0.00547241 -21574,3516:486:3,166,-58.5,0,0,-0.00547241 -21575,3516:486:4,166.5,-58.5,0,0,-0.00547241 -21576,3516:487:3,167,-58.5,0,0,-0.00547486 -21577,3516:487:4,167.5,-58.5,0,0,-0.00547486 -21578,3516:488:3,168,-58.5,0,0,-0.00547486 -21579,3516:488:4,168.5,-58.5,0,0,-0.00547241 -21580,3516:489:3,169,-58.5,0,0,-0.00547 -21581,3516:489:4,169.5,-58.5,0,0,-0.00546878 -21582,3517:380:3,170,-58.5,0,0,-0.00547119 -21583,3517:380:4,170.5,-58.5,0,0,-0.00548091 -21584,3517:381:3,171,-58.5,0,0,-0.00549434 -21585,3517:381:4,171.5,-58.5,0,0,-0.00550777 -21586,3517:382:3,172,-58.5,0,0,-0.00551513 -21587,3517:382:4,172.5,-58.5,0,0,-0.0055188 -21588,3517:383:3,173,-58.5,0,0,-0.00551266 -21589,3517:383:4,173.5,-58.5,0,0,-0.00549923 -21590,3517:384:3,174,-58.5,0,0,-0.00548824 -21591,3517:384:4,174.5,-58.5,0,0,-0.00548091 -21592,3517:485:3,175,-58.5,0,0,-0.00547605 -21593,3517:485:4,175.5,-58.5,0,0,-0.00547486 -21594,3517:486:3,176,-58.5,0,0,-0.00548947 -21595,3517:486:4,176.5,-58.5,0,0,-0.00554216 -21596,3517:487:3,177,-58.5,0,0,-0.0056028 -21597,3517:487:4,177.5,-58.5,0,0,-0.00564532 -21598,3517:488:3,178,-58.5,0,0,-0.00566038 -21599,3517:488:4,178.5,-58.5,0,0,-0.00560158 -21600,3517:489:3,179,-58.5,0,0,-0.00579012 -21601,3517:489:4,179.5,-58.5,0,0,-0.00618251 -21602,3518:380:3,180,-58.5,0,0,-0.00676662 -21603,5518:380:1,-180,-58,0,0,-0.00670371 -21604,5517:489:2,-179.5,-58,0,0,-0.00698691 -21605,5517:489:1,-179,-58,0,0,-0.00724659 -21606,5517:488:2,-178.5,-58,0,0,-0.00788805 -21607,5517:488:1,-178,-58,0,0,-0.00835648 -21608,5517:487:2,-177.5,-58,0,0,-0.00844065 -21609,5517:487:1,-177,-58,0,0,-0.00832116 -21610,5517:486:2,-176.5,-58,0,0,-0.00790914 -21611,5517:486:1,-176,-58,0,0,-0.00718719 -21612,5517:485:2,-175.5,-58,0,0,-0.00744774 -21613,5517:485:1,-175,-58,0,0,-0.00706664 -21614,5517:384:2,-174.5,-58,0,0,-0.00678773 -21615,5517:384:1,-174,-58,0,0,-0.00714888 -21616,5517:383:2,-173.5,-58,0,0,-0.00728701 -21617,5517:383:1,-173,-58,0,0,-0.00714092 -21618,5517:382:2,-172.5,-58,0,0,-0.00647801 -21619,5517:382:1,-172,-58,0,0,-0.00636662 -21620,5517:381:2,-171.5,-58,0,0,-0.00629484 -21621,5517:381:1,-171,-58,0,0,-0.00592419 -21622,5517:380:2,-170.5,-58,0,0,-0.00584183 -21623,5517:380:1,-170,-58,0,0,-0.00608704 -21624,5516:489:2,-169.5,-58,0,0,-0.0063652 -21625,5516:489:1,-169,-58,0,0,-0.00634682 -21626,5516:488:2,-168.5,-58,0,0,-0.00624884 -21627,5516:488:1,-168,-58,0,0,-0.00607487 -21628,5516:487:2,-167.5,-58,0,0,-0.00594794 -21629,5516:487:1,-167,-58,0,0,-0.00574144 -21630,5516:486:2,-166.5,-58,0,0,-0.00578498 -21631,5516:486:1,-166,-58,0,0,-0.00589793 -21632,5516:485:2,-165.5,-58,0,0,-0.00597844 -21633,5516:485:1,-165,-58,0,0,-0.00617702 -21634,5516:384:2,-164.5,-58,0,0,-0.00637652 -21635,5516:384:1,-164,-58,0,0,-0.00672463 -21636,5516:383:2,-163.5,-58,0,0,-0.00693888 -21637,5516:383:1,-163,-58,0,0,-0.00701805 -21638,5516:382:2,-162.5,-58,0,0,-0.00704154 -21639,5516:382:1,-162,-58,0,0,-0.0070478 -21640,5516:381:2,-161.5,-58,0,0,-0.00710764 -21641,5516:381:1,-161,-58,0,0,-0.00718558 -21642,5516:380:2,-160.5,-58,0,0,-0.00722727 -21643,5516:380:1,-160,-58,0,0,-0.00724015 -21644,5515:489:2,-159.5,-58,0,0,-0.00724984 -21645,5515:489:1,-159,-58,0,0,-0.00726596 -21646,5515:488:2,-158.5,-58,0,0,-0.00728379 -21647,5515:488:1,-158,-58,0,0,-0.00728538 -21648,5515:487:2,-157.5,-58,0,0,-0.00726112 -21649,5515:487:1,-157,-58,0,0,-0.00719837 -21650,5515:486:2,-156.5,-58,0,0,-0.00708081 -21651,5515:486:1,-156,-58,0,0,-0.00699004 -21652,5515:485:2,-155.5,-58,0,0,-0.00694972 -21653,5515:485:1,-155,-58,0,0,-0.00692965 -21654,5515:384:2,-154.5,-58,0,0,-0.00693271 -21655,5515:384:1,-154,-58,0,0,-0.0069621 -21656,5515:383:2,-153.5,-58,0,0,-0.00700872 -21657,5515:383:1,-153,-58,0,0,-0.00710923 -21658,5515:382:2,-152.5,-58,0,0,-0.00726112 -21659,5515:382:1,-152,-58,0,0,-0.0073932 -21660,5515:381:2,-151.5,-58,0,0,-0.00741628 -21661,5515:381:1,-151,-58,0,0,-0.00739812 -21662,5515:380:2,-150.5,-58,0,0,-0.0072369 -21663,5515:380:1,-150,-58,0,0,-0.00719036 -21664,5514:489:2,-149.5,-58,0,0,-0.00721761 -21665,5514:489:1,-149,-58,0,0,-0.00721443 -21666,5514:488:2,-148.5,-58,0,0,-0.00711556 -21667,5514:488:1,-148,-58,0,0,-0.00722085 -21668,5514:487:2,-147.5,-58,0,0,-0.00733094 -21669,5514:487:1,-147,-58,0,0,-0.00732766 -21670,5514:486:2,-146.5,-58,0,0,-0.00729513 -21671,5514:486:1,-146,-58,0,0,-0.00756296 -21672,5514:485:2,-145.5,-58,0,0,-0.00776087 -21673,5514:485:1,-145,-58,0,0,-0.00774533 -21674,5514:384:2,-144.5,-58,0,0,-0.00758998 -21675,5514:384:1,-144,-58,0,0,-0.00748262 -21676,5514:383:2,-143.5,-58,0,0,-0.00749595 -21677,5514:383:1,-143,-58,0,0,-0.00754951 -21678,5514:382:2,-142.5,-58,0,0,-0.00758153 -21679,5514:382:1,-142,-58,0,0,-0.00760351 -21680,5514:381:2,-141.5,-58,0,0,-0.00777121 -21681,5514:381:1,-141,-58,0,0,-0.00819056 -21682,5514:380:2,-140.5,-58,0,0,-0.00821253 -21683,5514:380:1,-140,-58,0,0,-0.00778506 -21684,5513:489:2,-139.5,-58,0,0,-0.00733911 -21685,5513:489:1,-139,-58,0,0,-0.00730812 -21686,5513:488:2,-138.5,-58,0,0,-0.00757309 -21687,5513:488:1,-138,-58,0,0,-0.00793736 -21688,5513:487:2,-137.5,-58,0,0,-0.00815784 -21689,5513:487:1,-137,-58,0,0,-0.00818327 -21690,5513:486:2,-136.5,-58,0,0,-0.00789679 -21691,5513:486:1,-136,-58,0,0,-0.00766299 -21692,5513:485:2,-135.5,-58,0,0,-0.00759334 -21693,5513:485:1,-135,-58,0,0,-0.00764936 -21694,5513:384:2,-134.5,-58,0,0,-0.00804593 -21695,5513:384:1,-134,-58,0,0,-0.00882731 -21696,5513:383:2,-133.5,-58,0,0,-0.0093479 -21697,5513:383:1,-133,-58,0,0,-0.00971349 -21698,5513:382:2,-132.5,-58,0,0,-0.0100172 -21699,5513:382:1,-132,-58,0,0,-0.0101386 -21700,5513:381:2,-131.5,-58,0,0,-0.0100486 -21701,5513:381:1,-131,-58,0,0,-0.0095715 -21702,5513:380:2,-130.5,-58,0,0,-0.00923397 -21703,5513:380:1,-130,-58,0,0,-0.00935 -21704,5512:489:2,-129.5,-58,0,0,-0.00937715 -21705,5512:489:1,-129,-58,0,0,-0.00962502 -21706,5512:488:2,-128.5,-58,0,0,-0.0101681 -21707,5512:488:1,-128,-58,0,0,-0.01063 -21708,5512:487:2,-127.5,-58,0,0,-0.0109995 -21709,5512:487:1,-127,-58,0,0,-0.0112556 -21710,5512:486:2,-126.5,-58,0,0,-0.01141 -21711,5512:486:1,-126,-58,0,0,-0.0113439 -21712,5512:485:2,-125.5,-58,0,0,-0.0110982 -21713,5512:485:1,-125,-58,0,0,-0.0108652 -21714,5512:384:2,-124.5,-58,0,0,-0.010783 -21715,5512:384:1,-124,-58,0,0,-0.010824 -21716,5512:383:2,-123.5,-58,0,0,-0.0108822 -21717,5512:383:1,-123,-58,0,0,-0.0108847 -21718,5512:382:2,-122.5,-58,0,0,-0.0108313 -21719,5512:382:1,-122,-58,0,0,-0.0107903 -21720,5512:381:2,-121.5,-58,0,0,-0.010812 -21721,5512:381:1,-121,-58,0,0,-0.0109066 -21722,5512:380:2,-120.5,-58,0,0,-0.010975 -21723,5512:380:1,-120,-58,0,0,-0.0109505 -21724,5511:489:2,-119.5,-58,0,0,-0.0109163 -21725,5511:489:1,-119,-58,0,0,-0.010892 -21726,5511:488:2,-118.5,-58,0,0,-0.0109456 -21727,5511:488:1,-118,-58,0,0,-0.0112304 -21728,5511:487:2,-117.5,-58,0,0,-0.0115899 -21729,5511:487:1,-117,-58,0,0,-0.0115124 -21730,5511:486:2,-116.5,-58,0,0,-0.0114279 -21731,5511:486:1,-116,-58,0,0,-0.0115795 -21732,5511:485:2,-115.5,-58,0,0,-0.0118413 -21733,5511:485:1,-115,-58,0,0,-0.0121063 -21734,5511:384:2,-114.5,-58,0,0,-0.0123552 -21735,5511:384:1,-114,-58,0,0,-0.0125446 -21736,5511:383:2,-113.5,-58,0,0,-0.0126404 -21737,5511:383:1,-113,-58,0,0,-0.012737 -21738,5511:382:2,-112.5,-58,0,0,-0.0127312 -21739,5511:382:1,-112,-58,0,0,-0.0125615 -21740,5511:381:2,-111.5,-58,0,0,-0.0123442 -21741,5511:381:1,-111,-58,0,0,-0.0121797 -21742,5511:380:2,-110.5,-58,0,0,-0.0120658 -21743,5511:380:1,-110,-58,0,0,-0.0120201 -21744,5510:489:2,-109.5,-58,0,0,-0.0120254 -21745,5510:489:1,-109,-58,0,0,-0.0122206 -21746,5510:488:2,-108.5,-58,0,0,-0.0125054 -21747,5510:488:1,-108,-58,0,0,-0.0126404 -21748,5510:487:2,-107.5,-58,0,0,-0.0125334 -21749,5510:487:1,-107,-58,0,0,-0.0121797 -21750,5510:486:2,-106.5,-58,0,0,-0.0117097 -21751,5510:486:1,-106,-58,0,0,-0.0113009 -21752,5510:485:2,-105.5,-58,0,0,-0.0110143 -21753,5510:485:1,-105,-58,0,0,-0.0109139 -21754,5510:384:2,-104.5,-58,0,0,-0.0110735 -21755,5510:384:1,-104,-58,0,0,-0.0113846 -21756,5510:383:2,-103.5,-58,0,0,-0.0116366 -21757,5510:383:1,-103,-58,0,0,-0.0117149 -21758,5510:382:2,-102.5,-58,0,0,-0.0114714 -21759,5510:382:1,-102,-58,0,0,-0.0109163 -21760,5510:381:2,-101.5,-58,0,0,-0.0104651 -21761,5510:381:1,-101,-58,0,0,-0.0102616 -21762,5510:380:2,-100.5,-58,0,0,-0.0102983 -21763,5510:380:1,-100,-58,0,0,-0.010545 -21764,5509:489:2,-99.5,-58,0,0,-0.010747 -21765,5509:489:1,-99,-58,0,0,-0.0107686 -21766,5509:488:2,-98.5,-58,0,0,-0.0106087 -21767,5509:488:1,-98,-58,0,0,-0.0104956 -21768,5509:487:2,-97.5,-58,0,0,-0.0106181 -21769,5509:487:1,-97,-58,0,0,-0.0107662 -21770,5509:486:2,-96.5,-58,0,0,-0.0107951 -21771,5509:486:1,-96,-58,0,0,-0.0107015 -21772,5509:485:2,-95.5,-58,0,0,-0.0104746 -21773,5509:485:1,-95,-58,0,0,-0.0100845 -21774,5509:384:2,-94.5,-58,0,0,-0.00976561 -21775,5509:384:1,-94,-58,0,0,-0.00995927 -21776,5509:383:2,-93.5,-58,0,0,-0.0105756 -21777,5509:383:1,-93,-58,0,0,-0.0104209 -21778,5509:382:2,-92.5,-58,0,0,-0.00953742 -21779,5509:382:1,-92,-58,0,0,-0.00900422 -21780,5509:381:2,-91.5,-58,0,0,-0.00932084 -21781,5509:381:1,-91,-58,0,0,-0.00986196 -21782,5509:380:2,-90.5,-58,0,0,-0.0102593 -21783,5509:380:1,-90,-58,0,0,-0.0109995 -21784,5508:489:2,-89.5,-58,0,0,-0.0114714 -21785,5508:489:1,-89,-58,0,0,-0.0117045 -21786,5508:488:2,-88.5,-58,0,0,-0.0117464 -21787,5508:488:1,-88,-58,0,0,-0.011799 -21788,5508:487:2,-87.5,-58,0,0,-0.0118255 -21789,5508:487:1,-87,-58,0,0,-0.0118202 -21790,5508:486:2,-86.5,-58,0,0,-0.0116731 -21791,5508:486:1,-86,-58,0,0,-0.0114714 -21792,5508:485:2,-85.5,-58,0,0,-0.01177 -21793,5508:485:1,-85,-58,0,0,-0.0117124 -21794,5508:384:2,-84.5,-58,0,0,-0.0116211 -21795,5508:384:1,-84,-58,0,0,-0.011433 -21796,5508:383:2,-83.5,-58,0,0,-0.0112355 -21797,5508:383:1,-83,-58,0,0,-0.0111429 -21798,5508:382:2,-82.5,-58,0,0,-0.0103976 -21799,5508:382:1,-82,-58,0,0,-0.00863086 -21800,5508:381:2,-81.5,-58,0,0,-0.00766299 -21801,5508:381:1,-81,-58,0,0,-0.00654607 -21802,5508:380:2,-80.5,-58,0,0,-0.00640067 -21803,5508:380:1,-80,-58,0,0,-0.00738993 -21804,5507:489:2,-79.5,-58,0,0,-0.00820154 -21805,5507:489:1,-79,-58,0,0,-0.00830263 -21806,5507:488:2,-78.5,-58,0,0,-0.00900018 -21807,5507:488:1,-78,-58,0,0,-0.0102342 -21808,5507:487:2,-77.5,-58,0,0,-0.0105261 -21809,5507:487:1,-77,-58,0,0,-0.0108265 -21810,5507:486:2,-76.5,-58,0,0,-0.010892 -21811,5507:486:1,-76,-58,0,0,-0.0108313 -21812,5507:485:2,-75.5,-58,0,0,-0.0107614 -21813,5507:485:1,-75,-58,0,0,-0.0106633 -21814,5507:384:2,-74.5,-58,0,0,-0.010559 -21815,5507:384:1,-74,-58,0,0,-0.0105332 -21816,5507:383:2,-73.5,-58,0,0,-0.0105426 -21817,5507:383:1,-73,-58,0,0,-0.0104279 -21818,5507:382:2,-72.5,-58,0,0,-0.0100262 -21819,5507:382:1,-72,-58,0,0,-0.0094527 -21820,5507:381:2,-71.5,-58,0,0,-0.00877439 -21821,5507:381:1,-71,-58,0,0,-0.00802982 -21822,5507:380:2,-70.5,-58,0,0,-0.00755962 -21823,5507:380:1,-70,-58,0,0,-0.00733423 -21824,5506:489:2,-69.5,-58,0,0,-0.00707292 -21825,5506:489:1,-69,-58,0,0,-0.00677871 -21826,5506:488:2,-68.5,-58,0,0,-0.00649099 -21827,5506:488:1,-68,-58,0,0,-0.00633697 -21828,5506:487:2,-67.5,-58,0,0,-0.00622109 -21829,5506:487:1,-67,-58,0,0,-0.0061455 -21830,5506:486:2,-66.5,-58,0,0,-0.00611826 -21831,5506:486:1,-66,-58,0,0,-0.00611415 -21832,5506:485:2,-65.5,-58,0,0,-0.00620592 -21833,5506:485:1,-65,-58,0,0,-0.00700249 -21834,5506:384:2,-64.5,-58,0,0,-0.00814149 -21835,5506:384:1,-64,-58,0,0,-0.00842185 -21836,5506:383:1,-63,-58,0,0,-0.00870816 -21837,5506:382:1,-62,-58,0,0,-0.00917647 -21838,5505:488:1,-58,-58,0,0,-0.00625856 -21839,5505:486:2,-56.5,-58,0,0,-0.00617836 -21840,5505:486:1,-56,-58,0,0,-0.00595589 -21841,5505:485:2,-55.5,-58,0,0,-0.00580818 -21842,5505:485:1,-55,-58,0,0,-0.00575677 -21843,5505:384:2,-54.5,-58,0,0,-0.005536 -21844,5505:384:1,-54,-58,0,0,-0.00546878 -21845,5505:383:2,-53.5,-58,0,0,-0.00547 -21846,5505:383:1,-53,-58,0,0,-0.00547 -21847,5505:382:2,-52.5,-58,0,0,-0.00547 -21848,5505:382:1,-52,-58,0,0,-0.00546878 -21849,5505:381:2,-51.5,-58,0,0,-0.00546633 -21850,5505:381:1,-51,-58,0,0,-0.00546511 -21851,5505:380:2,-50.5,-58,0,0,-0.0054627 -21852,5505:380:1,-50,-58,0,0,-0.00546148 -21853,5504:489:2,-49.5,-58,0,0,-0.00546148 -21854,5504:489:1,-49,-58,0,0,-0.00546392 -21855,5504:488:2,-48.5,-58,0,0,-0.0054627 -21856,5504:488:1,-48,-58,0,0,-0.00545785 -21857,5504:487:2,-47.5,-58,0,0,-0.00545541 -21858,5504:487:1,-47,-58,0,0,-0.00545541 -21859,5504:486:2,-46.5,-58,0,0,-0.00545423 -21860,5504:486:1,-46,-58,0,0,-0.00545423 -21861,5504:485:2,-45.5,-58,0,0,-0.00545423 -21862,5504:485:1,-45,-58,0,0,-0.00545423 -21863,5504:384:2,-44.5,-58,0,0,-0.00545541 -21864,5504:384:1,-44,-58,0,0,-0.00545541 -21865,5504:383:2,-43.5,-58,0,0,-0.00545541 -21866,5504:383:1,-43,-58,0,0,-0.00545541 -21867,5504:382:2,-42.5,-58,0,0,-0.00545541 -21868,5504:382:1,-42,-58,0,0,-0.00545541 -21869,5504:381:2,-41.5,-58,0,0,-0.00545541 -21870,5504:381:1,-41,-58,0,0,-0.00545541 -21871,5504:380:2,-40.5,-58,0,0,-0.00545663 -21872,5504:380:1,-40,-58,0,0,-0.00545663 -21873,5503:489:2,-39.5,-58,0,0,-0.00545663 -21874,5503:489:1,-39,-58,0,0,-0.00545785 -21875,5503:488:2,-38.5,-58,0,0,-0.00545785 -21876,5503:488:1,-38,-58,0,0,-0.00545907 -21877,5503:487:2,-37.5,-58,0,0,-0.00545907 -21878,5503:487:1,-37,-58,0,0,-0.00546026 -21879,5503:486:2,-36.5,-58,0,0,-0.00546026 -21880,5503:486:1,-36,-58,0,0,-0.00546026 -21881,5503:485:2,-35.5,-58,0,0,-0.00546026 -21882,5503:485:1,-35,-58,0,0,-0.00546026 -21883,5503:384:2,-34.5,-58,0,0,-0.00546026 -21884,5503:384:1,-34,-58,0,0,-0.00546026 -21885,5503:383:2,-33.5,-58,0,0,-0.00546026 -21886,5503:383:1,-33,-58,0,0,-0.00546026 -21887,5503:382:2,-32.5,-58,0,0,-0.00545907 -21888,5503:382:1,-32,-58,0,0,-0.00546026 -21889,5503:381:2,-31.5,-58,0,0,-0.00546026 -21890,5503:381:1,-31,-58,0,0,-0.00546026 -21891,5503:380:2,-30.5,-58,0,0,-0.00546026 -21892,5503:380:1,-30,-58,0,0,-0.00545907 -21893,5502:489:2,-29.5,-58,0,0,-0.00545907 -21894,5502:489:1,-29,-58,0,0,-0.00545907 -21895,5502:488:2,-28.5,-58,0,0,-0.00545907 -21896,5502:488:1,-28,-58,0,0,-0.00545907 -21897,5502:487:2,-27.5,-58,0,0,-0.00545785 -21898,5502:487:1,-27,-58,0,0,-0.00545785 -21899,5502:486:2,-26.5,-58,0,0,-0.00545785 -21900,5502:486:1,-26,-58,0,0,-0.00545785 -21901,5502:485:2,-25.5,-58,0,0,-0.00545663 -21902,5502:485:1,-25,-58,0,0,-0.00545663 -21903,5502:384:2,-24.5,-58,0,0,-0.00545541 -21904,5502:384:1,-24,-58,0,0,-0.00545541 -21905,5502:383:2,-23.5,-58,0,0,-0.00545423 -21906,5502:383:1,-23,-58,0,0,-0.00545423 -21907,5502:382:2,-22.5,-58,0,0,-0.005453 -21908,5502:382:1,-22,-58,0,0,-0.005453 -21909,5502:381:2,-21.5,-58,0,0,-0.00545179 -21910,5502:381:1,-21,-58,0,0,-0.00545179 -21911,5502:380:2,-20.5,-58,0,0,-0.00545057 -21912,5502:380:1,-20,-58,0,0,-0.00544935 -21913,5501:489:2,-19.5,-58,0,0,-0.00544695 -21914,5501:489:1,-19,-58,0,0,-0.00544573 -21915,5501:488:2,-18.5,-58,0,0,-0.00544451 -21916,5501:488:1,-18,-58,0,0,-0.00544333 -21917,5501:487:2,-17.5,-58,0,0,-0.00544211 -21918,5501:487:1,-17,-58,0,0,-0.00544089 -21919,5501:486:2,-16.5,-58,0,0,-0.0054385 -21920,5501:486:1,-16,-58,0,0,-0.00543728 -21921,5501:485:2,-15.5,-58,0,0,-0.00543606 -21922,5501:485:1,-15,-58,0,0,-0.00543606 -21923,5501:384:2,-14.5,-58,0,0,-0.00543606 -21924,5501:384:1,-14,-58,0,0,-0.00543606 -21925,5501:383:2,-13.5,-58,0,0,-0.00543606 -21926,5501:383:1,-13,-58,0,0,-0.00543606 -21927,5501:382:2,-12.5,-58,0,0,-0.00543728 -21928,5501:382:1,-12,-58,0,0,-0.00543728 -21929,5501:381:2,-11.5,-58,0,0,-0.0054385 -21930,5501:381:1,-11,-58,0,0,-0.0054385 -21931,5501:380:2,-10.5,-58,0,0,-0.0054385 -21932,5501:380:1,-10,-58,0,0,-0.0054385 -21933,5500:489:2,-9.5,-58,0,0,-0.00543968 -21934,5500:489:1,-9,-58,0,0,-0.00544089 -21935,5500:488:2,-8.5,-58,0,0,-0.00544211 -21936,5500:488:1,-8,-58,0,0,-0.00544211 -21937,5500:487:2,-7.5,-58,0,0,-0.00544211 -21938,5500:487:1,-7,-58,0,0,-0.00544211 -21939,5500:486:2,-6.5,-58,0,0,-0.00543968 -21940,5500:486:1,-6,-58,0,0,-0.0054385 -21941,5500:485:2,-5.5,-58,0,0,-0.0054385 -21942,5500:485:1,-5,-58,0,0,-0.00543728 -21943,5500:384:2,-4.5,-58,0,0,-0.00543728 -21944,5500:384:1,-4,-58,0,0,-0.00543606 -21945,5500:383:2,-3.5,-58,0,0,-0.00543606 -21946,5500:383:1,-3,-58,0,0,-0.00543485 -21947,5500:382:2,-2.5,-58,0,0,-0.00543606 -21948,5500:382:1,-2,-58,0,0,-0.00543728 -21949,5500:381:2,-1.5,-58,0,0,-0.0054385 -21950,5500:381:1,-1,-58,0,0,-0.00544089 -21951,5500:380:2,-0.5,-58,0,0,-0.00544333 -21952,3500:380:2,0,-58,0,0,-0.00544333 -21953,3500:380:2,0.5,-58,0,0,-0.00544451 -21954,3500:381:1,1,-58,0,0,-0.00544573 -21955,3500:381:2,1.5,-58,0,0,-0.00544333 -21956,3500:382:1,2,-58,0,0,-0.00544089 -21957,3500:382:2,2.5,-58,0,0,-0.0054385 -21958,3500:383:1,3,-58,0,0,-0.0054385 -21959,3500:383:2,3.5,-58,0,0,-0.00543968 -21960,3500:384:1,4,-58,0,0,-0.00543968 -21961,3500:384:2,4.5,-58,0,0,-0.00544089 -21962,3500:485:1,5,-58,0,0,-0.00544211 -21963,3500:485:2,5.5,-58,0,0,-0.00544333 -21964,3500:486:1,6,-58,0,0,-0.00544451 -21965,3500:486:2,6.5,-58,0,0,-0.00544573 -21966,3500:487:1,7,-58,0,0,-0.00544573 -21967,3500:487:2,7.5,-58,0,0,-0.00544695 -21968,3500:488:1,8,-58,0,0,-0.00544935 -21969,3500:488:2,8.5,-58,0,0,-0.00545057 -21970,3500:489:1,9,-58,0,0,-0.00545179 -21971,3500:489:2,9.5,-58,0,0,-0.005453 -21972,3501:380:1,10,-58,0,0,-0.00545423 -21973,3501:380:2,10.5,-58,0,0,-0.00545541 -21974,3501:381:1,11,-58,0,0,-0.00545541 -21975,3501:381:2,11.5,-58,0,0,-0.00545541 -21976,3501:382:1,12,-58,0,0,-0.00545423 -21977,3501:382:2,12.5,-58,0,0,-0.00545423 -21978,3501:383:1,13,-58,0,0,-0.005453 -21979,3501:383:2,13.5,-58,0,0,-0.00544573 -21980,3501:384:1,14,-58,0,0,-0.00544089 -21981,3501:384:2,14.5,-58,0,0,-0.0054385 -21982,3501:485:1,15,-58,0,0,-0.00543606 -21983,3501:485:2,15.5,-58,0,0,-0.00543363 -21984,3501:486:1,16,-58,0,0,-0.00543002 -21985,3501:486:2,16.5,-58,0,0,-0.00542763 -21986,3501:487:1,17,-58,0,0,-0.0054252 -21987,3501:487:2,17.5,-58,0,0,-0.00542399 -21988,3501:488:1,18,-58,0,0,-0.00542281 -21989,3501:488:2,18.5,-58,0,0,-0.00542281 -21990,3501:489:1,19,-58,0,0,-0.00542281 -21991,3501:489:2,19.5,-58,0,0,-0.00542399 -21992,3502:380:1,20,-58,0,0,-0.00542399 -21993,3502:380:2,20.5,-58,0,0,-0.0054252 -21994,3502:381:1,21,-58,0,0,-0.00542399 -21995,3502:381:2,21.5,-58,0,0,-0.00542399 -21996,3502:382:1,22,-58,0,0,-0.00542399 -21997,3502:382:2,22.5,-58,0,0,-0.00542281 -21998,3502:383:1,23,-58,0,0,-0.00542281 -21999,3502:383:2,23.5,-58,0,0,-0.00542399 -22000,3502:384:1,24,-58,0,0,-0.00542399 -22001,3502:384:2,24.5,-58,0,0,-0.00542399 -22002,3502:485:1,25,-58,0,0,-0.0054216 -22003,3502:485:2,25.5,-58,0,0,-0.00542039 -22004,3502:486:1,26,-58,0,0,-0.00543124 -22005,3502:486:2,26.5,-58,0,0,-0.00543485 -22006,3502:487:1,27,-58,0,0,-0.00543606 -22007,3502:487:2,27.5,-58,0,0,-0.00543728 -22008,3502:488:1,28,-58,0,0,-0.00544211 -22009,3502:488:2,28.5,-58,0,0,-0.00544695 -22010,3502:489:1,29,-58,0,0,-0.00544935 -22011,3502:489:2,29.5,-58,0,0,-0.00545179 -22012,3503:380:1,30,-58,0,0,-0.00545785 -22013,3503:380:2,30.5,-58,0,0,-0.0054627 -22014,3503:381:1,31,-58,0,0,-0.00545663 -22015,3503:381:2,31.5,-58,0,0,-0.00542881 -22016,3503:382:1,32,-58,0,0,-0.00543968 -22017,3503:382:2,32.5,-58,0,0,-0.00544451 -22018,3503:383:1,33,-58,0,0,-0.00544573 -22019,3503:383:2,33.5,-58,0,0,-0.00544573 -22020,3503:384:1,34,-58,0,0,-0.00544695 -22021,3503:384:2,34.5,-58,0,0,-0.00544695 -22022,3503:485:1,35,-58,0,0,-0.00544573 -22023,3503:485:2,35.5,-58,0,0,-0.00544573 -22024,3503:486:1,36,-58,0,0,-0.00544573 -22025,3503:486:2,36.5,-58,0,0,-0.00544333 -22026,3503:487:1,37,-58,0,0,-0.00543968 -22027,3503:487:2,37.5,-58,0,0,-0.00543728 -22028,3503:488:1,38,-58,0,0,-0.00543485 -22029,3503:488:2,38.5,-58,0,0,-0.00543363 -22030,3503:489:1,39,-58,0,0,-0.00543363 -22031,3503:489:2,39.5,-58,0,0,-0.00543245 -22032,3504:380:1,40,-58,0,0,-0.00543363 -22033,3504:380:2,40.5,-58,0,0,-0.00543363 -22034,3504:381:1,41,-58,0,0,-0.00543245 -22035,3504:381:2,41.5,-58,0,0,-0.00543363 -22036,3504:382:1,42,-58,0,0,-0.00543606 -22037,3504:382:2,42.5,-58,0,0,-0.00543968 -22038,3504:383:1,43,-58,0,0,-0.00544211 -22039,3504:383:2,43.5,-58,0,0,-0.00544451 -22040,3504:384:1,44,-58,0,0,-0.00544695 -22041,3504:384:2,44.5,-58,0,0,-0.00544816 -22042,3504:485:1,45,-58,0,0,-0.00544935 -22043,3504:485:2,45.5,-58,0,0,-0.00545057 -22044,3504:486:1,46,-58,0,0,-0.00545057 -22045,3504:486:2,46.5,-58,0,0,-0.00545057 -22046,3504:487:1,47,-58,0,0,-0.00545179 -22047,3504:487:2,47.5,-58,0,0,-0.005453 -22048,3504:488:1,48,-58,0,0,-0.00545541 -22049,3504:488:2,48.5,-58,0,0,-0.00545541 -22050,3504:489:1,49,-58,0,0,-0.00545423 -22051,3504:489:2,49.5,-58,0,0,-0.00545541 -22052,3505:380:1,50,-58,0,0,-0.00545785 -22053,3505:380:2,50.5,-58,0,0,-0.00545907 -22054,3505:381:1,51,-58,0,0,-0.00545785 -22055,3505:381:2,51.5,-58,0,0,-0.00546026 -22056,3505:382:1,52,-58,0,0,-0.00546511 -22057,3505:382:2,52.5,-58,0,0,-0.00546633 -22058,3505:383:1,53,-58,0,0,-0.00546511 -22059,3505:383:2,53.5,-58,0,0,-0.00546633 -22060,3505:384:1,54,-58,0,0,-0.00546633 -22061,3505:384:2,54.5,-58,0,0,-0.00546511 -22062,3505:485:1,55,-58,0,0,-0.00546392 -22063,3505:485:2,55.5,-58,0,0,-0.00546148 -22064,3505:486:1,56,-58,0,0,-0.00545785 -22065,3505:486:2,56.5,-58,0,0,-0.00545541 -22066,3505:487:1,57,-58,0,0,-0.00545423 -22067,3505:487:2,57.5,-58,0,0,-0.005453 -22068,3505:488:1,58,-58,0,0,-0.00545179 -22069,3505:488:2,58.5,-58,0,0,-0.00545179 -22070,3505:489:1,59,-58,0,0,-0.00545057 -22071,3505:489:2,59.5,-58,0,0,-0.00545057 -22072,3506:380:1,60,-58,0,0,-0.00544935 -22073,3506:380:2,60.5,-58,0,0,-0.00544816 -22074,3506:381:1,61,-58,0,0,-0.00544695 -22075,3506:381:2,61.5,-58,0,0,-0.00545785 -22076,3506:382:1,62,-58,0,0,-0.00546633 -22077,3506:382:2,62.5,-58,0,0,-0.00545907 -22078,3506:383:1,63,-58,0,0,-0.00544695 -22079,3506:383:2,63.5,-58,0,0,-0.00544816 -22080,3506:384:1,64,-58,0,0,-0.00544935 -22081,3506:384:2,64.5,-58,0,0,-0.00545179 -22082,3506:485:1,65,-58,0,0,-0.00545179 -22083,3506:485:2,65.5,-58,0,0,-0.005453 -22084,3506:486:1,66,-58,0,0,-0.00545423 -22085,3506:486:2,66.5,-58,0,0,-0.00545663 -22086,3506:487:1,67,-58,0,0,-0.00545663 -22087,3506:487:2,67.5,-58,0,0,-0.00545663 -22088,3506:488:1,68,-58,0,0,-0.00545663 -22089,3506:488:2,68.5,-58,0,0,-0.00545423 -22090,3506:489:1,69,-58,0,0,-0.005453 -22091,3506:489:2,69.5,-58,0,0,-0.00545057 -22092,3507:380:1,70,-58,0,0,-0.00544816 -22093,3507:380:2,70.5,-58,0,0,-0.00544573 -22094,3507:381:1,71,-58,0,0,-0.00544333 -22095,3507:381:2,71.5,-58,0,0,-0.00544333 -22096,3507:382:1,72,-58,0,0,-0.00544451 -22097,3507:382:2,72.5,-58,0,0,-0.00544935 -22098,3507:383:2,73.5,-58,0,0,-0.00545179 -22099,3507:384:1,74,-58,0,0,-0.00545423 -22100,3507:384:2,74.5,-58,0,0,-0.00545179 -22101,3507:485:1,75,-58,0,0,-0.00544935 -22102,3507:485:2,75.5,-58,0,0,-0.00544695 -22103,3507:486:1,76,-58,0,0,-0.00544451 -22104,3507:486:2,76.5,-58,0,0,-0.00544573 -22105,3507:487:1,77,-58,0,0,-0.00544695 -22106,3507:487:2,77.5,-58,0,0,-0.00544816 -22107,3507:488:1,78,-58,0,0,-0.00544816 -22108,3507:488:2,78.5,-58,0,0,-0.00545057 -22109,3507:489:1,79,-58,0,0,-0.00545179 -22110,3507:489:2,79.5,-58,0,0,-0.005453 -22111,3508:380:1,80,-58,0,0,-0.005453 -22112,3508:380:2,80.5,-58,0,0,-0.005453 -22113,3508:381:1,81,-58,0,0,-0.00545057 -22114,3508:381:2,81.5,-58,0,0,-0.00544695 -22115,3508:382:1,82,-58,0,0,-0.00545057 -22116,3508:382:2,82.5,-58,0,0,-0.00545663 -22117,3508:383:1,83,-58,0,0,-0.00545907 -22118,3508:383:2,83.5,-58,0,0,-0.00545907 -22119,3508:384:1,84,-58,0,0,-0.00546026 -22120,3508:384:2,84.5,-58,0,0,-0.00546026 -22121,3508:485:1,85,-58,0,0,-0.00545907 -22122,3508:485:2,85.5,-58,0,0,-0.00545907 -22123,3508:486:1,86,-58,0,0,-0.00545907 -22124,3508:486:2,86.5,-58,0,0,-0.00545907 -22125,3508:487:1,87,-58,0,0,-0.00545907 -22126,3508:487:2,87.5,-58,0,0,-0.00545785 -22127,3508:488:1,88,-58,0,0,-0.00545541 -22128,3508:488:2,88.5,-58,0,0,-0.00545057 -22129,3508:489:1,89,-58,0,0,-0.00549189 -22130,3508:489:2,89.5,-58,0,0,-0.00556932 -22131,3509:380:1,90,-58,0,0,-0.0056128 -22132,3509:380:2,90.5,-58,0,0,-0.00564907 -22133,3509:381:1,91,-58,0,0,-0.00546026 -22134,3509:381:2,91.5,-58,0,0,-0.00545663 -22135,3509:382:1,92,-58,0,0,-0.0054627 -22136,3509:382:2,92.5,-58,0,0,-0.00546511 -22137,3509:383:1,93,-58,0,0,-0.00546633 -22138,3509:383:2,93.5,-58,0,0,-0.00546878 -22139,3509:384:1,94,-58,0,0,-0.00547 -22140,3509:384:2,94.5,-58,0,0,-0.00547241 -22141,3509:485:1,95,-58,0,0,-0.00547364 -22142,3509:485:2,95.5,-58,0,0,-0.00547605 -22143,3509:486:1,96,-58,0,0,-0.00548091 -22144,3509:486:2,96.5,-58,0,0,-0.00548701 -22145,3509:487:1,97,-58,0,0,-0.00549069 -22146,3509:487:2,97.5,-58,0,0,-0.00549189 -22147,3509:488:1,98,-58,0,0,-0.005498 -22148,3509:488:2,98.5,-58,0,0,-0.00550411 -22149,3509:489:1,99,-58,0,0,-0.00550411 -22150,3509:489:2,99.5,-58,0,0,-0.00548701 -22151,3510:380:1,100,-58,0,0,-0.00548091 -22152,3510:380:2,100.5,-58,0,0,-0.00548091 -22153,3510:381:1,101,-58,0,0,-0.00547605 -22154,3510:381:2,101.5,-58,0,0,-0.00547364 -22155,3510:382:1,102,-58,0,0,-0.00547605 -22156,3510:382:2,102.5,-58,0,0,-0.00547364 -22157,3510:383:1,103,-58,0,0,-0.00547241 -22158,3510:383:2,103.5,-58,0,0,-0.00547241 -22159,3510:384:1,104,-58,0,0,-0.00547119 -22160,3510:384:2,104.5,-58,0,0,-0.00546878 -22161,3510:485:1,105,-58,0,0,-0.00546633 -22162,3510:485:2,105.5,-58,0,0,-0.00546392 -22163,3510:486:1,106,-58,0,0,-0.0054627 -22164,3510:486:2,106.5,-58,0,0,-0.00546148 -22165,3510:487:1,107,-58,0,0,-0.00545907 -22166,3510:487:2,107.5,-58,0,0,-0.00545785 -22167,3510:488:1,108,-58,0,0,-0.00545785 -22168,3510:488:2,108.5,-58,0,0,-0.00545785 -22169,3510:489:1,109,-58,0,0,-0.00545785 -22170,3510:489:2,109.5,-58,0,0,-0.00545907 -22171,3511:380:1,110,-58,0,0,-0.00545907 -22172,3511:380:2,110.5,-58,0,0,-0.00545907 -22173,3511:381:1,111,-58,0,0,-0.00545785 -22174,3511:381:2,111.5,-58,0,0,-0.00545663 -22175,3511:382:1,112,-58,0,0,-0.00545423 -22176,3511:382:2,112.5,-58,0,0,-0.00545663 -22177,3511:383:1,113,-58,0,0,-0.00545907 -22178,3511:383:2,113.5,-58,0,0,-0.0054627 -22179,3511:384:1,114,-58,0,0,-0.00546392 -22180,3511:384:2,114.5,-58,0,0,-0.00546392 -22181,3511:485:1,115,-58,0,0,-0.0054627 -22182,3511:485:2,115.5,-58,0,0,-0.00546148 -22183,3511:486:1,116,-58,0,0,-0.00546148 -22184,3511:486:2,116.5,-58,0,0,-0.00546392 -22185,3511:487:1,117,-58,0,0,-0.00547364 -22186,3511:487:2,117.5,-58,0,0,-0.005536 -22187,3511:488:1,118,-58,0,0,-0.00552127 -22188,3511:488:2,118.5,-58,0,0,-0.00555201 -22189,3511:489:1,119,-58,0,0,-0.00586526 -22190,3511:489:2,119.5,-58,0,0,-0.00641637 -22191,3512:380:1,120,-58,0,0,-0.00671865 -22192,3512:380:2,120.5,-58,0,0,-0.00703996 -22193,3512:381:1,121,-58,0,0,-0.00716643 -22194,3512:381:2,121.5,-58,0,0,-0.0072064 -22195,3512:382:1,122,-58,0,0,-0.00721443 -22196,3512:382:2,122.5,-58,0,0,-0.00722404 -22197,3512:383:1,123,-58,0,0,-0.00728538 -22198,3512:383:2,123.5,-58,0,0,-0.00733423 -22199,3512:384:1,124,-58,0,0,-0.00706505 -22200,3512:384:2,124.5,-58,0,0,-0.00607215 -22201,3512:485:1,125,-58,0,0,-0.00584572 -22202,3512:485:2,125.5,-58,0,0,-0.00590974 -22203,3512:486:1,126,-58,0,0,-0.0062516 -22204,3512:486:2,126.5,-58,0,0,-0.00607083 -22205,3512:487:1,127,-58,0,0,-0.00567421 -22206,3512:487:2,127.5,-58,0,0,-0.00563151 -22207,3512:488:1,128,-58,0,0,-0.00572741 -22208,3512:488:2,128.5,-58,0,0,-0.00582368 -22209,3512:489:1,129,-58,0,0,-0.00589005 -22210,3512:489:2,129.5,-58,0,0,-0.00596382 -22211,3513:380:1,130,-58,0,0,-0.00597442 -22212,3513:380:2,130.5,-58,0,0,-0.00590974 -22213,3513:381:1,131,-58,0,0,-0.00577471 -22214,3513:381:2,131.5,-58,0,0,-0.00562651 -22215,3513:382:1,132,-58,0,0,-0.00551147 -22216,3513:382:2,132.5,-58,0,0,-0.00549923 -22217,3513:383:1,133,-58,0,0,-0.00551637 -22218,3513:383:2,133.5,-58,0,0,-0.00553232 -22219,3513:384:1,134,-58,0,0,-0.00555077 -22220,3513:384:2,134.5,-58,0,0,-0.00556437 -22221,3513:485:1,135,-58,0,0,-0.00557052 -22222,3513:485:2,135.5,-58,0,0,-0.00558047 -22223,3513:486:1,136,-58,0,0,-0.00558047 -22224,3513:486:2,136.5,-58,0,0,-0.00558168 -22225,3513:487:1,137,-58,0,0,-0.00557302 -22226,3513:487:2,137.5,-58,0,0,-0.00556558 -22227,3513:488:1,138,-58,0,0,-0.00556313 -22228,3513:488:2,138.5,-58,0,0,-0.00556313 -22229,3513:489:1,139,-58,0,0,-0.00555819 -22230,3513:489:2,139.5,-58,0,0,-0.00557302 -22231,3514:380:1,140,-58,0,0,-0.00560656 -22232,3514:380:2,140.5,-58,0,0,-0.00563652 -22233,3514:381:1,141,-58,0,0,-0.00565658 -22234,3514:381:2,141.5,-58,0,0,-0.00566414 -22235,3514:382:1,142,-58,0,0,-0.00567548 -22236,3514:382:2,142.5,-58,0,0,-0.00569063 -22237,3514:383:1,143,-58,0,0,-0.00568812 -22238,3514:383:2,143.5,-58,0,0,-0.005716 -22239,3514:384:1,144,-58,0,0,-0.00579916 -22240,3514:384:2,144.5,-58,0,0,-0.00582111 -22241,3514:485:1,145,-58,0,0,-0.00574655 -22242,3514:485:2,145.5,-58,0,0,-0.00564405 -22243,3514:486:1,146,-58,0,0,-0.00580948 -22244,3514:486:2,146.5,-58,0,0,-0.0057236 -22245,3514:487:1,147,-58,0,0,-0.00559285 -22246,3514:487:2,147.5,-58,0,0,-0.00553724 -22247,3514:488:1,148,-58,0,0,-0.00552127 -22248,3514:488:2,148.5,-58,0,0,-0.00553352 -22249,3514:489:1,149,-58,0,0,-0.00556437 -22250,3514:489:2,149.5,-58,0,0,-0.0055434 -22251,3515:380:1,150,-58,0,0,-0.00551147 -22252,3515:380:2,150.5,-58,0,0,-0.00548701 -22253,3515:381:1,151,-58,0,0,-0.00547119 -22254,3515:381:2,151.5,-58,0,0,-0.00546633 -22255,3515:382:1,152,-58,0,0,-0.00546511 -22256,3515:382:2,152.5,-58,0,0,-0.00547972 -22257,3515:383:1,153,-58,0,0,-0.00548701 -22258,3515:383:2,153.5,-58,0,0,-0.00547119 -22259,3515:384:1,154,-58,0,0,-0.00547364 -22260,3515:384:2,154.5,-58,0,0,-0.00547727 -22261,3515:485:1,155,-58,0,0,-0.0054785 -22262,3515:485:2,155.5,-58,0,0,-0.00547727 -22263,3515:486:1,156,-58,0,0,-0.00547364 -22264,3515:486:2,156.5,-58,0,0,-0.00547119 -22265,3515:487:1,157,-58,0,0,-0.00547 -22266,3515:487:2,157.5,-58,0,0,-0.00546878 -22267,3515:488:1,158,-58,0,0,-0.00546878 -22268,3515:488:2,158.5,-58,0,0,-0.00546755 -22269,3515:489:1,159,-58,0,0,-0.00546755 -22270,3515:489:2,159.5,-58,0,0,-0.00547 -22271,3516:380:1,160,-58,0,0,-0.00547119 -22272,3516:380:2,160.5,-58,0,0,-0.00547 -22273,3516:381:1,161,-58,0,0,-0.00547 -22274,3516:381:2,161.5,-58,0,0,-0.00547119 -22275,3516:382:1,162,-58,0,0,-0.00547241 -22276,3516:382:2,162.5,-58,0,0,-0.00547486 -22277,3516:383:1,163,-58,0,0,-0.00547605 -22278,3516:383:2,163.5,-58,0,0,-0.00547605 -22279,3516:384:1,164,-58,0,0,-0.00547605 -22280,3516:384:2,164.5,-58,0,0,-0.00547486 -22281,3516:485:1,165,-58,0,0,-0.00547364 -22282,3516:485:2,165.5,-58,0,0,-0.00547486 -22283,3516:486:1,166,-58,0,0,-0.0054785 -22284,3516:486:2,166.5,-58,0,0,-0.00548091 -22285,3516:487:1,167,-58,0,0,-0.00547972 -22286,3516:487:2,167.5,-58,0,0,-0.0054785 -22287,3516:488:1,168,-58,0,0,-0.0054785 -22288,3516:488:2,168.5,-58,0,0,-0.0054785 -22289,3516:489:1,169,-58,0,0,-0.00547727 -22290,3516:489:2,169.5,-58,0,0,-0.00547605 -22291,3517:380:1,170,-58,0,0,-0.00547364 -22292,3517:380:2,170.5,-58,0,0,-0.00548214 -22293,3517:381:1,171,-58,0,0,-0.00550534 -22294,3517:381:2,171.5,-58,0,0,-0.00553724 -22295,3517:382:1,172,-58,0,0,-0.00556188 -22296,3517:382:2,172.5,-58,0,0,-0.00555943 -22297,3517:383:1,173,-58,0,0,-0.00555201 -22298,3517:383:2,173.5,-58,0,0,-0.005509 -22299,3517:384:1,174,-58,0,0,-0.00549069 -22300,3517:384:2,174.5,-58,0,0,-0.0054785 -22301,3517:485:1,175,-58,0,0,-0.00547972 -22302,3517:485:2,175.5,-58,0,0,-0.00550534 -22303,3517:486:1,176,-58,0,0,-0.00588482 -22304,3517:486:2,176.5,-58,0,0,-0.00629203 -22305,3517:487:1,177,-58,0,0,-0.0064192 -22306,3517:487:2,177.5,-58,0,0,-0.00636097 -22307,3517:488:1,178,-58,0,0,-0.00607351 -22308,3517:488:2,178.5,-58,0,0,-0.00569569 -22309,3517:489:1,179,-58,0,0,-0.00571472 -22310,3517:489:2,179.5,-58,0,0,-0.00605332 -22311,3518:380:1,180,-58,0,0,-0.00670371 -22312,5518:370:3,-180,-57.5,0,0,-0.00760686 -22313,5517:479:4,-179.5,-57.5,0,0,-0.00776778 -22314,5517:479:3,-179,-57.5,0,0,-0.00821432 -22315,5517:478:4,-178.5,-57.5,0,0,-0.00890438 -22316,5517:478:3,-178,-57.5,0,0,-0.00896413 -22317,5517:477:4,-177.5,-57.5,0,0,-0.00900422 -22318,5517:477:3,-177,-57.5,0,0,-0.00895614 -22319,5517:476:4,-176.5,-57.5,0,0,-0.00872755 -22320,5517:476:3,-176,-57.5,0,0,-0.00807645 -22321,5517:475:4,-175.5,-57.5,0,0,-0.00783378 -22322,5517:475:3,-175,-57.5,0,0,-0.00786348 -22323,5517:374:4,-174.5,-57.5,0,0,-0.00780763 -22324,5517:374:3,-174,-57.5,0,0,-0.00781984 -22325,5517:373:4,-173.5,-57.5,0,0,-0.00758828 -22326,5517:373:3,-173,-57.5,0,0,-0.00740144 -22327,5517:372:4,-172.5,-57.5,0,0,-0.00700249 -22328,5517:372:3,-172,-57.5,0,0,-0.00661781 -22329,5517:371:4,-171.5,-57.5,0,0,-0.00657086 -22330,5517:371:3,-171,-57.5,0,0,-0.00655336 -22331,5517:370:4,-170.5,-57.5,0,0,-0.00662073 -22332,5517:370:3,-170,-57.5,0,0,-0.00691269 -22333,5516:479:4,-169.5,-57.5,0,0,-0.00683926 -22334,5516:479:3,-169,-57.5,0,0,-0.00666361 -22335,5516:478:4,-168.5,-57.5,0,0,-0.00644211 -22336,5516:478:3,-168,-57.5,0,0,-0.0062197 -22337,5516:477:4,-167.5,-57.5,0,0,-0.00610872 -22338,5516:477:3,-167,-57.5,0,0,-0.00605599 -22339,5516:476:4,-166.5,-57.5,0,0,-0.00590185 -22340,5516:476:3,-166,-57.5,0,0,-0.00595456 -22341,5516:475:4,-165.5,-57.5,0,0,-0.00602378 -22342,5516:475:3,-165,-57.5,0,0,-0.00633977 -22343,5516:374:4,-164.5,-57.5,0,0,-0.00664879 -22344,5516:374:3,-164,-57.5,0,0,-0.00697757 -22345,5516:373:4,-163.5,-57.5,0,0,-0.00702435 -22346,5516:373:3,-163,-57.5,0,0,-0.00705877 -22347,5516:372:4,-162.5,-57.5,0,0,-0.00709659 -22348,5516:372:3,-162,-57.5,0,0,-0.00712823 -22349,5516:371:4,-161.5,-57.5,0,0,-0.00716321 -22350,5516:371:3,-161,-57.5,0,0,-0.0072064 -22351,5516:370:4,-160.5,-57.5,0,0,-0.00724984 -22352,5516:370:3,-160,-57.5,0,0,-0.0072789 -22353,5515:479:4,-159.5,-57.5,0,0,-0.00730649 -22354,5515:479:3,-159,-57.5,0,0,-0.00734076 -22355,5515:478:4,-158.5,-57.5,0,0,-0.00738005 -22356,5515:478:3,-158,-57.5,0,0,-0.00738828 -22357,5515:477:4,-157.5,-57.5,0,0,-0.00734729 -22358,5515:477:3,-157,-57.5,0,0,-0.0072789 -22359,5515:476:4,-156.5,-57.5,0,0,-0.00718875 -22360,5515:476:3,-156,-57.5,0,0,-0.00711082 -22361,5515:475:4,-155.5,-57.5,0,0,-0.0070887 -22362,5515:475:3,-155,-57.5,0,0,-0.00706505 -22363,5515:374:4,-154.5,-57.5,0,0,-0.00705724 -22364,5515:374:3,-154,-57.5,0,0,-0.00707451 -22365,5515:373:4,-153.5,-57.5,0,0,-0.0071045 -22366,5515:373:3,-153,-57.5,0,0,-0.0071808 -22367,5515:372:4,-152.5,-57.5,0,0,-0.00730162 -22368,5515:372:3,-152,-57.5,0,0,-0.00740144 -22369,5515:371:4,-151.5,-57.5,0,0,-0.00739651 -22370,5515:371:3,-151,-57.5,0,0,-0.00744774 -22371,5515:370:4,-150.5,-57.5,0,0,-0.00760521 -22372,5515:370:3,-150,-57.5,0,0,-0.00723852 -22373,5514:479:4,-149.5,-57.5,0,0,-0.00723371 -22374,5514:479:3,-149,-57.5,0,0,-0.00717597 -22375,5514:478:4,-148.5,-57.5,0,0,-0.00713142 -22376,5514:478:3,-148,-57.5,0,0,-0.00712663 -22377,5514:477:4,-147.5,-57.5,0,0,-0.00714888 -22378,5514:477:3,-147,-57.5,0,0,-0.00711875 -22379,5514:476:4,-146.5,-57.5,0,0,-0.00777813 -22380,5514:476:3,-146,-57.5,0,0,-0.00813602 -22381,5514:475:4,-145.5,-57.5,0,0,-0.00809266 -22382,5514:475:3,-145,-57.5,0,0,-0.00806565 -22383,5514:374:4,-144.5,-57.5,0,0,-0.00799057 -22384,5514:374:3,-144,-57.5,0,0,-0.00796746 -22385,5514:373:4,-143.5,-57.5,0,0,-0.00799589 -22386,5514:373:3,-143,-57.5,0,0,-0.00798524 -22387,5514:372:4,-142.5,-57.5,0,0,-0.00791264 -22388,5514:372:3,-142,-57.5,0,0,-0.00779893 -22389,5514:371:4,-141.5,-57.5,0,0,-0.00819056 -22390,5514:371:3,-141,-57.5,0,0,-0.00846514 -22391,5514:370:4,-140.5,-57.5,0,0,-0.00823635 -22392,5514:370:3,-140,-57.5,0,0,-0.00787402 -22393,5513:479:4,-139.5,-57.5,0,0,-0.00761369 -22394,5513:479:3,-139,-57.5,0,0,-0.00814875 -22395,5513:478:4,-138.5,-57.5,0,0,-0.00884113 -22396,5513:478:3,-138,-57.5,0,0,-0.0091949 -22397,5513:477:4,-137.5,-57.5,0,0,-0.00918671 -22398,5513:477:3,-137,-57.5,0,0,-0.00881752 -22399,5513:476:4,-136.5,-57.5,0,0,-0.00841064 -22400,5513:476:3,-136,-57.5,0,0,-0.00823081 -22401,5513:475:4,-135.5,-57.5,0,0,-0.00833232 -22402,5513:475:3,-135,-57.5,0,0,-0.00873533 -22403,5513:374:4,-134.5,-57.5,0,0,-0.00926487 -22404,5513:374:3,-134,-57.5,0,0,-0.00962934 -22405,5513:373:4,-133.5,-57.5,0,0,-0.00988838 -22406,5513:373:3,-133,-57.5,0,0,-0.0101568 -22407,5513:372:4,-132.5,-57.5,0,0,-0.0104605 -22408,5513:372:3,-132,-57.5,0,0,-0.01063 -22409,5513:371:4,-131.5,-57.5,0,0,-0.0106158 -22410,5513:371:3,-131,-57.5,0,0,-0.0104232 -22411,5513:370:4,-130.5,-57.5,0,0,-0.0100688 -22412,5513:370:3,-130,-57.5,0,0,-0.00982684 -22413,5512:479:4,-129.5,-57.5,0,0,-0.00986854 -22414,5512:479:3,-129,-57.5,0,0,-0.0101613 -22415,5512:478:4,-128.5,-57.5,0,0,-0.0106016 -22416,5512:478:3,-128,-57.5,0,0,-0.0109261 -22417,5512:477:4,-127.5,-57.5,0,0,-0.0111231 -22418,5512:477:3,-127,-57.5,0,0,-0.011306 -22419,5512:476:4,-126.5,-57.5,0,0,-0.0114945 -22420,5512:476:3,-126,-57.5,0,0,-0.0114765 -22421,5512:475:4,-125.5,-57.5,0,0,-0.0112556 -22422,5512:475:3,-125,-57.5,0,0,-0.011002 -22423,5512:374:4,-124.5,-57.5,0,0,-0.0108096 -22424,5512:374:3,-124,-57.5,0,0,-0.0107662 -22425,5512:373:4,-123.5,-57.5,0,0,-0.0107975 -22426,5512:373:3,-123,-57.5,0,0,-0.0108144 -22427,5512:372:4,-122.5,-57.5,0,0,-0.0108361 -22428,5512:372:3,-122,-57.5,0,0,-0.0109187 -22429,5512:371:4,-121.5,-57.5,0,0,-0.0110069 -22430,5512:371:3,-121,-57.5,0,0,-0.0110414 -22431,5512:370:4,-120.5,-57.5,0,0,-0.011066 -22432,5512:370:3,-120,-57.5,0,0,-0.0111156 -22433,5511:479:4,-119.5,-57.5,0,0,-0.0110982 -22434,5511:479:3,-119,-57.5,0,0,-0.0109921 -22435,5511:478:4,-118.5,-57.5,0,0,-0.0110735 -22436,5511:478:3,-118,-57.5,0,0,-0.0118334 -22437,5511:477:4,-117.5,-57.5,0,0,-0.0122946 -22438,5511:477:3,-117,-57.5,0,0,-0.0120146 -22439,5511:476:4,-116.5,-57.5,0,0,-0.0117912 -22440,5511:476:3,-116,-57.5,0,0,-0.0121199 -22441,5511:475:4,-115.5,-57.5,0,0,-0.0126009 -22442,5511:475:3,-115,-57.5,0,0,-0.0125362 -22443,5511:374:4,-114.5,-57.5,0,0,-0.0129207 -22444,5511:374:3,-114,-57.5,0,0,-0.0133649 -22445,5511:373:4,-113.5,-57.5,0,0,-0.0136155 -22446,5511:373:3,-113,-57.5,0,0,-0.0137535 -22447,5511:372:4,-112.5,-57.5,0,0,-0.0138028 -22448,5511:372:3,-112,-57.5,0,0,-0.013643 -22449,5511:371:4,-111.5,-57.5,0,0,-0.0131571 -22450,5511:371:3,-111,-57.5,0,0,-0.012615 -22451,5511:370:4,-110.5,-57.5,0,0,-0.012347 -22452,5511:370:3,-110,-57.5,0,0,-0.0123525 -22453,5510:479:4,-109.5,-57.5,0,0,-0.0128055 -22454,5510:479:3,-109,-57.5,0,0,-0.0130485 -22455,5510:478:4,-108.5,-57.5,0,0,-0.013329 -22456,5510:478:3,-108,-57.5,0,0,-0.0134821 -22457,5510:477:4,-107.5,-57.5,0,0,-0.0134942 -22458,5510:477:3,-107,-57.5,0,0,-0.0134068 -22459,5510:476:4,-106.5,-57.5,0,0,-0.0131423 -22460,5510:476:3,-106,-57.5,0,0,-0.0127655 -22461,5510:475:4,-105.5,-57.5,0,0,-0.0124775 -22462,5510:475:3,-105,-57.5,0,0,-0.0124412 -22463,5510:374:4,-104.5,-57.5,0,0,-0.0126376 -22464,5510:374:3,-104,-57.5,0,0,-0.0128314 -22465,5510:373:4,-103.5,-57.5,0,0,-0.0128687 -22466,5510:373:3,-103,-57.5,0,0,-0.0127199 -22467,5510:372:4,-102.5,-57.5,0,0,-0.0123221 -22468,5510:372:3,-102,-57.5,0,0,-0.0116132 -22469,5510:371:4,-101.5,-57.5,0,0,-0.0109627 -22470,5510:371:3,-101,-57.5,0,0,-0.0106585 -22471,5510:370:4,-100.5,-57.5,0,0,-0.0107758 -22472,5510:370:3,-100,-57.5,0,0,-0.0111629 -22473,5509:479:4,-99.5,-57.5,0,0,-0.0113009 -22474,5509:479:3,-99,-57.5,0,0,-0.0112279 -22475,5509:478:4,-98.5,-57.5,0,0,-0.0109799 -22476,5509:478:3,-98,-57.5,0,0,-0.0106253 -22477,5509:477:4,-97.5,-57.5,0,0,-0.0105567 -22478,5509:477:3,-97,-57.5,0,0,-0.0107494 -22479,5509:476:4,-96.5,-57.5,0,0,-0.0108895 -22480,5509:476:3,-96,-57.5,0,0,-0.0108144 -22481,5509:475:4,-95.5,-57.5,0,0,-0.0106372 -22482,5509:475:3,-95,-57.5,0,0,-0.010512 -22483,5509:374:4,-94.5,-57.5,0,0,-0.0104465 -22484,5509:374:3,-94,-57.5,0,0,-0.010611 -22485,5509:373:4,-93.5,-57.5,0,0,-0.0108482 -22486,5509:373:3,-93,-57.5,0,0,-0.0107039 -22487,5509:372:4,-92.5,-57.5,0,0,-0.010184 -22488,5509:372:3,-92,-57.5,0,0,-0.00976129 -22489,5509:371:4,-91.5,-57.5,0,0,-0.00977219 -22490,5509:371:3,-91,-57.5,0,0,-0.00998372 -22491,5509:370:4,-90.5,-57.5,0,0,-0.0109823 -22492,5509:370:3,-90,-57.5,0,0,-0.0115744 -22493,5508:479:4,-89.5,-57.5,0,0,-0.0116496 -22494,5508:479:3,-89,-57.5,0,0,-0.0117622 -22495,5508:478:4,-88.5,-57.5,0,0,-0.0121172 -22496,5508:478:3,-88,-57.5,0,0,-0.0127598 -22497,5508:477:4,-87.5,-57.5,0,0,-0.0132131 -22498,5508:477:3,-87,-57.5,0,0,-0.0133529 -22499,5508:476:4,-86.5,-57.5,0,0,-0.0130514 -22500,5508:476:3,-86,-57.5,0,0,-0.0125756 -22501,5508:475:4,-85.5,-57.5,0,0,-0.0120361 -22502,5508:475:3,-85,-57.5,0,0,-0.0118546 -22503,5508:374:4,-84.5,-57.5,0,0,-0.0118944 -22504,5508:374:3,-84,-57.5,0,0,-0.0119878 -22505,5508:373:4,-83.5,-57.5,0,0,-0.012101 -22506,5508:373:3,-83,-57.5,0,0,-0.0118466 -22507,5508:372:4,-82.5,-57.5,0,0,-0.010519 -22508,5508:372:3,-82,-57.5,0,0,-0.00916012 -22509,5508:371:4,-81.5,-57.5,0,0,-0.00802802 -22510,5508:371:3,-81,-57.5,0,0,-0.00712508 -22511,5508:370:4,-80.5,-57.5,0,0,-0.00676363 -22512,5508:370:3,-80,-57.5,0,0,-0.00701338 -22513,5507:479:4,-79.5,-57.5,0,0,-0.0079303 -22514,5507:479:3,-79,-57.5,0,0,-0.00801907 -22515,5507:478:4,-78.5,-57.5,0,0,-0.00796037 -22516,5507:478:3,-78,-57.5,0,0,-0.0090022 -22517,5507:477:4,-77.5,-57.5,0,0,-0.00993705 -22518,5507:477:3,-77,-57.5,0,0,-0.0104862 -22519,5507:476:4,-76.5,-57.5,0,0,-0.0109285 -22520,5507:476:3,-76,-57.5,0,0,-0.010783 -22521,5507:475:4,-75.5,-57.5,0,0,-0.0106443 -22522,5507:475:3,-75,-57.5,0,0,-0.0105709 -22523,5507:374:4,-74.5,-57.5,0,0,-0.010559 -22524,5507:374:3,-74,-57.5,0,0,-0.0105874 -22525,5507:373:4,-73.5,-57.5,0,0,-0.0106562 -22526,5507:373:3,-73,-57.5,0,0,-0.0105496 -22527,5507:372:4,-72.5,-57.5,0,0,-0.010611 -22528,5507:372:3,-72,-57.5,0,0,-0.0102708 -22529,5507:371:4,-71.5,-57.5,0,0,-0.00968101 -22530,5507:371:3,-71,-57.5,0,0,-0.00890244 -22531,5507:370:4,-70.5,-57.5,0,0,-0.0081651 -22532,5507:370:3,-70,-57.5,0,0,-0.00769204 -22533,5506:479:4,-69.5,-57.5,0,0,-0.00755793 -22534,5506:479:3,-69,-57.5,0,0,-0.00758658 -22535,5506:478:4,-68.5,-57.5,0,0,-0.00690654 -22536,5506:478:3,-68,-57.5,0,0,-0.00651845 -22537,5506:477:4,-67.5,-57.5,0,0,-0.00654025 -22538,5506:477:3,-67,-57.5,0,0,-0.0066547 -22539,5506:476:4,-66.5,-57.5,0,0,-0.00634403 -22540,5506:476:3,-66,-57.5,0,0,-0.00638505 -22541,5506:475:4,-65.5,-57.5,0,0,-0.00660749 -22542,5506:475:3,-65,-57.5,0,0,-0.00711242 -22543,5506:374:4,-64.5,-57.5,0,0,-0.00739154 -22544,5506:374:3,-64,-57.5,0,0,-0.00751431 -22545,5506:373:4,-63.5,-57.5,0,0,-0.00756635 -22546,5506:373:3,-63,-57.5,0,0,-0.0073932 -22547,5506:372:4,-62.5,-57.5,0,0,-0.00766981 -22548,5506:372:3,-62,-57.5,0,0,-0.00848594 -22549,5506:371:4,-61.5,-57.5,0,0,-0.00873533 -22550,5506:371:3,-61,-57.5,0,0,-0.00802087 -22551,5505:477:3,-57,-57.5,0,0,-0.00635247 -22552,5505:476:4,-56.5,-57.5,0,0,-0.00628507 -22553,5505:476:3,-56,-57.5,0,0,-0.00615234 -22554,5505:475:4,-55.5,-57.5,0,0,-0.00606273 -22555,5505:475:3,-55,-57.5,0,0,-0.00595589 -22556,5505:374:4,-54.5,-57.5,0,0,-0.00578883 -22557,5505:374:3,-54,-57.5,0,0,-0.00560158 -22558,5505:373:4,-53.5,-57.5,0,0,-0.00549069 -22559,5505:373:3,-53,-57.5,0,0,-0.00547486 -22560,5505:372:4,-52.5,-57.5,0,0,-0.00547119 -22561,5505:372:3,-52,-57.5,0,0,-0.00547 -22562,5505:371:4,-51.5,-57.5,0,0,-0.00546878 -22563,5505:371:3,-51,-57.5,0,0,-0.00546755 -22564,5505:370:4,-50.5,-57.5,0,0,-0.00546511 -22565,5505:370:3,-50,-57.5,0,0,-0.0054627 -22566,5504:479:4,-49.5,-57.5,0,0,-0.00546026 -22567,5504:479:3,-49,-57.5,0,0,-0.00546026 -22568,5504:478:4,-48.5,-57.5,0,0,-0.00546026 -22569,5504:478:3,-48,-57.5,0,0,-0.00545785 -22570,5504:477:4,-47.5,-57.5,0,0,-0.00545541 -22571,5504:477:3,-47,-57.5,0,0,-0.005453 -22572,5504:476:4,-46.5,-57.5,0,0,-0.005453 -22573,5504:476:3,-46,-57.5,0,0,-0.00545423 -22574,5504:475:4,-45.5,-57.5,0,0,-0.00545423 -22575,5504:475:3,-45,-57.5,0,0,-0.00545423 -22576,5504:374:4,-44.5,-57.5,0,0,-0.00545423 -22577,5504:374:3,-44,-57.5,0,0,-0.00545423 -22578,5504:373:4,-43.5,-57.5,0,0,-0.00545423 -22579,5504:373:3,-43,-57.5,0,0,-0.00545423 -22580,5504:372:4,-42.5,-57.5,0,0,-0.00545423 -22581,5504:372:3,-42,-57.5,0,0,-0.00545423 -22582,5504:371:4,-41.5,-57.5,0,0,-0.00545541 -22583,5504:371:3,-41,-57.5,0,0,-0.00545541 -22584,5504:370:4,-40.5,-57.5,0,0,-0.00545541 -22585,5504:370:3,-40,-57.5,0,0,-0.00545663 -22586,5503:479:4,-39.5,-57.5,0,0,-0.00545663 -22587,5503:479:3,-39,-57.5,0,0,-0.00545663 -22588,5503:478:4,-38.5,-57.5,0,0,-0.00545785 -22589,5503:478:3,-38,-57.5,0,0,-0.00545785 -22590,5503:477:4,-37.5,-57.5,0,0,-0.00545907 -22591,5503:477:3,-37,-57.5,0,0,-0.00545907 -22592,5503:476:4,-36.5,-57.5,0,0,-0.00546026 -22593,5503:476:3,-36,-57.5,0,0,-0.00546026 -22594,5503:475:4,-35.5,-57.5,0,0,-0.00546148 -22595,5503:475:3,-35,-57.5,0,0,-0.00546148 -22596,5503:374:4,-34.5,-57.5,0,0,-0.00546148 -22597,5503:374:3,-34,-57.5,0,0,-0.00546148 -22598,5503:373:4,-33.5,-57.5,0,0,-0.00546026 -22599,5503:373:3,-33,-57.5,0,0,-0.00546026 -22600,5503:372:4,-32.5,-57.5,0,0,-0.00546026 -22601,5503:372:3,-32,-57.5,0,0,-0.00546026 -22602,5503:371:4,-31.5,-57.5,0,0,-0.00546026 -22603,5503:371:3,-31,-57.5,0,0,-0.00546026 -22604,5503:370:4,-30.5,-57.5,0,0,-0.00546026 -22605,5503:370:3,-30,-57.5,0,0,-0.00546026 -22606,5502:479:4,-29.5,-57.5,0,0,-0.00546026 -22607,5502:479:3,-29,-57.5,0,0,-0.00546026 -22608,5502:478:4,-28.5,-57.5,0,0,-0.00545907 -22609,5502:478:3,-28,-57.5,0,0,-0.00545907 -22610,5502:477:4,-27.5,-57.5,0,0,-0.00545907 -22611,5502:477:3,-27,-57.5,0,0,-0.00545907 -22612,5502:476:4,-26.5,-57.5,0,0,-0.00545907 -22613,5502:476:3,-26,-57.5,0,0,-0.00545785 -22614,5502:475:4,-25.5,-57.5,0,0,-0.00545785 -22615,5502:475:3,-25,-57.5,0,0,-0.00545663 -22616,5502:374:4,-24.5,-57.5,0,0,-0.00545663 -22617,5502:374:3,-24,-57.5,0,0,-0.00545541 -22618,5502:373:4,-23.5,-57.5,0,0,-0.00545541 -22619,5502:373:3,-23,-57.5,0,0,-0.00545423 -22620,5502:372:4,-22.5,-57.5,0,0,-0.005453 -22621,5502:372:3,-22,-57.5,0,0,-0.005453 -22622,5502:371:4,-21.5,-57.5,0,0,-0.00545179 -22623,5502:371:3,-21,-57.5,0,0,-0.00545179 -22624,5502:370:4,-20.5,-57.5,0,0,-0.00545057 -22625,5502:370:3,-20,-57.5,0,0,-0.00544935 -22626,5501:479:4,-19.5,-57.5,0,0,-0.00544695 -22627,5501:479:3,-19,-57.5,0,0,-0.00544573 -22628,5501:478:4,-18.5,-57.5,0,0,-0.00544451 -22629,5501:478:3,-18,-57.5,0,0,-0.00544211 -22630,5501:477:4,-17.5,-57.5,0,0,-0.00544089 -22631,5501:477:3,-17,-57.5,0,0,-0.00543968 -22632,5501:476:4,-16.5,-57.5,0,0,-0.0054385 -22633,5501:476:3,-16,-57.5,0,0,-0.00543728 -22634,5501:475:4,-15.5,-57.5,0,0,-0.00543606 -22635,5501:475:3,-15,-57.5,0,0,-0.00543606 -22636,5501:374:4,-14.5,-57.5,0,0,-0.00543606 -22637,5501:374:3,-14,-57.5,0,0,-0.00543606 -22638,5501:373:4,-13.5,-57.5,0,0,-0.00543606 -22639,5501:373:3,-13,-57.5,0,0,-0.00543606 -22640,5501:372:4,-12.5,-57.5,0,0,-0.00543728 -22641,5501:372:3,-12,-57.5,0,0,-0.00543728 -22642,5501:371:4,-11.5,-57.5,0,0,-0.0054385 -22643,5501:371:3,-11,-57.5,0,0,-0.00543968 -22644,5501:370:4,-10.5,-57.5,0,0,-0.00544089 -22645,5501:370:3,-10,-57.5,0,0,-0.00544089 -22646,5500:479:4,-9.5,-57.5,0,0,-0.00543968 -22647,5500:479:3,-9,-57.5,0,0,-0.00543968 -22648,5500:478:4,-8.5,-57.5,0,0,-0.00544089 -22649,5500:478:3,-8,-57.5,0,0,-0.00544089 -22650,5500:477:4,-7.5,-57.5,0,0,-0.00544089 -22651,5500:477:3,-7,-57.5,0,0,-0.00544089 -22652,5500:476:4,-6.5,-57.5,0,0,-0.00543968 -22653,5500:476:3,-6,-57.5,0,0,-0.00543968 -22654,5500:475:4,-5.5,-57.5,0,0,-0.0054385 -22655,5500:475:3,-5,-57.5,0,0,-0.0054385 -22656,5500:374:4,-4.5,-57.5,0,0,-0.00543728 -22657,5500:374:3,-4,-57.5,0,0,-0.00543728 -22658,5500:373:4,-3.5,-57.5,0,0,-0.00543606 -22659,5500:373:3,-3,-57.5,0,0,-0.00543606 -22660,5500:372:4,-2.5,-57.5,0,0,-0.00543728 -22661,5500:372:3,-2,-57.5,0,0,-0.00543728 -22662,5500:371:4,-1.5,-57.5,0,0,-0.0054385 -22663,5500:371:3,-1,-57.5,0,0,-0.00543968 -22664,5500:370:4,-0.5,-57.5,0,0,-0.00543968 -22665,3500:370:4,0,-57.5,0,0,-0.00544089 -22666,3500:370:4,0.5,-57.5,0,0,-0.00544211 -22667,3500:371:3,1,-57.5,0,0,-0.00544333 -22668,3500:371:4,1.5,-57.5,0,0,-0.00544573 -22669,3500:372:3,2,-57.5,0,0,-0.00544451 -22670,3500:372:4,2.5,-57.5,0,0,-0.00544333 -22671,3500:373:3,3,-57.5,0,0,-0.00544211 -22672,3500:373:4,3.5,-57.5,0,0,-0.00544089 -22673,3500:374:3,4,-57.5,0,0,-0.00544089 -22674,3500:374:4,4.5,-57.5,0,0,-0.00544089 -22675,3500:475:3,5,-57.5,0,0,-0.00544211 -22676,3500:475:4,5.5,-57.5,0,0,-0.00544333 -22677,3500:476:3,6,-57.5,0,0,-0.00544333 -22678,3500:476:4,6.5,-57.5,0,0,-0.00544451 -22679,3500:477:3,7,-57.5,0,0,-0.00544573 -22680,3500:477:4,7.5,-57.5,0,0,-0.00544695 -22681,3500:478:3,8,-57.5,0,0,-0.00544695 -22682,3500:478:4,8.5,-57.5,0,0,-0.00544695 -22683,3500:479:3,9,-57.5,0,0,-0.00544935 -22684,3500:479:4,9.5,-57.5,0,0,-0.00545057 -22685,3501:370:3,10,-57.5,0,0,-0.005453 -22686,3501:370:4,10.5,-57.5,0,0,-0.00545423 -22687,3501:371:3,11,-57.5,0,0,-0.00545663 -22688,3501:371:4,11.5,-57.5,0,0,-0.00545541 -22689,3501:372:3,12,-57.5,0,0,-0.00545423 -22690,3501:372:4,12.5,-57.5,0,0,-0.005453 -22691,3501:373:3,13,-57.5,0,0,-0.00545179 -22692,3501:373:4,13.5,-57.5,0,0,-0.00545423 -22693,3501:374:3,14,-57.5,0,0,-0.00545423 -22694,3501:374:4,14.5,-57.5,0,0,-0.00544816 -22695,3501:475:3,15,-57.5,0,0,-0.00544089 -22696,3501:475:4,15.5,-57.5,0,0,-0.00543728 -22697,3501:476:3,16,-57.5,0,0,-0.00543485 -22698,3501:476:4,16.5,-57.5,0,0,-0.00543002 -22699,3501:477:3,17,-57.5,0,0,-0.00542642 -22700,3501:477:4,17.5,-57.5,0,0,-0.0054216 -22701,3501:478:3,18,-57.5,0,0,-0.00541917 -22702,3501:478:4,18.5,-57.5,0,0,-0.00541796 -22703,3501:479:3,19,-57.5,0,0,-0.00542039 -22704,3501:479:4,19.5,-57.5,0,0,-0.0054216 -22705,3502:370:3,20,-57.5,0,0,-0.00542039 -22706,3502:370:4,20.5,-57.5,0,0,-0.00541917 -22707,3502:371:3,21,-57.5,0,0,-0.00541917 -22708,3502:371:4,21.5,-57.5,0,0,-0.00542039 -22709,3502:372:3,22,-57.5,0,0,-0.0054216 -22710,3502:372:4,22.5,-57.5,0,0,-0.0054216 -22711,3502:373:3,23,-57.5,0,0,-0.0054216 -22712,3502:373:4,23.5,-57.5,0,0,-0.0054216 -22713,3502:374:3,24,-57.5,0,0,-0.0054216 -22714,3502:374:4,24.5,-57.5,0,0,-0.0054216 -22715,3502:475:3,25,-57.5,0,0,-0.00542039 -22716,3502:475:4,25.5,-57.5,0,0,-0.00542763 -22717,3502:476:3,26,-57.5,0,0,-0.00544089 -22718,3502:476:4,26.5,-57.5,0,0,-0.00545179 -22719,3502:477:3,27,-57.5,0,0,-0.0054627 -22720,3502:477:4,27.5,-57.5,0,0,-0.00547119 -22721,3502:478:3,28,-57.5,0,0,-0.00548091 -22722,3502:478:4,28.5,-57.5,0,0,-0.00548824 -22723,3502:479:3,29,-57.5,0,0,-0.00548947 -22724,3502:479:4,29.5,-57.5,0,0,-0.00548459 -22725,3503:370:3,30,-57.5,0,0,-0.00548091 -22726,3503:370:4,30.5,-57.5,0,0,-0.00548091 -22727,3503:371:3,31,-57.5,0,0,-0.0054785 -22728,3503:371:4,31.5,-57.5,0,0,-0.00544935 -22729,3503:372:3,32,-57.5,0,0,-0.00543002 -22730,3503:372:4,32.5,-57.5,0,0,-0.0054385 -22731,3503:373:3,33,-57.5,0,0,-0.00544333 -22732,3503:373:4,33.5,-57.5,0,0,-0.00544573 -22733,3503:374:3,34,-57.5,0,0,-0.00544573 -22734,3503:374:4,34.5,-57.5,0,0,-0.00544573 -22735,3503:475:3,35,-57.5,0,0,-0.00544451 -22736,3503:475:4,35.5,-57.5,0,0,-0.00544451 -22737,3503:476:3,36,-57.5,0,0,-0.00544451 -22738,3503:476:4,36.5,-57.5,0,0,-0.00544211 -22739,3503:477:3,37,-57.5,0,0,-0.00543968 -22740,3503:477:4,37.5,-57.5,0,0,-0.0054385 -22741,3503:478:3,38,-57.5,0,0,-0.00543606 -22742,3503:478:4,38.5,-57.5,0,0,-0.00543485 -22743,3503:479:3,39,-57.5,0,0,-0.00543485 -22744,3503:479:4,39.5,-57.5,0,0,-0.00543245 -22745,3504:370:3,40,-57.5,0,0,-0.00543124 -22746,3504:370:4,40.5,-57.5,0,0,-0.00543124 -22747,3504:371:3,41,-57.5,0,0,-0.00543002 -22748,3504:371:4,41.5,-57.5,0,0,-0.00543002 -22749,3504:372:3,42,-57.5,0,0,-0.00542881 -22750,3504:372:4,42.5,-57.5,0,0,-0.00543002 -22751,3504:373:3,43,-57.5,0,0,-0.00543124 -22752,3504:373:4,43.5,-57.5,0,0,-0.00543606 -22753,3504:374:3,44,-57.5,0,0,-0.00543968 -22754,3504:374:4,44.5,-57.5,0,0,-0.00544333 -22755,3504:475:3,45,-57.5,0,0,-0.00544573 -22756,3504:475:4,45.5,-57.5,0,0,-0.00544695 -22757,3504:476:3,46,-57.5,0,0,-0.00544573 -22758,3504:476:4,46.5,-57.5,0,0,-0.00544573 -22759,3504:477:3,47,-57.5,0,0,-0.00544695 -22760,3504:477:4,47.5,-57.5,0,0,-0.00544816 -22761,3504:478:3,48,-57.5,0,0,-0.00544816 -22762,3504:478:4,48.5,-57.5,0,0,-0.00544816 -22763,3504:479:3,49,-57.5,0,0,-0.00544935 -22764,3504:479:4,49.5,-57.5,0,0,-0.00544816 -22765,3505:370:3,50,-57.5,0,0,-0.00545057 -22766,3505:370:4,50.5,-57.5,0,0,-0.00545179 -22767,3505:371:3,51,-57.5,0,0,-0.00545057 -22768,3505:371:4,51.5,-57.5,0,0,-0.00545057 -22769,3505:372:3,52,-57.5,0,0,-0.005453 -22770,3505:372:4,52.5,-57.5,0,0,-0.00545541 -22771,3505:373:3,53,-57.5,0,0,-0.00545663 -22772,3505:373:4,53.5,-57.5,0,0,-0.00545663 -22773,3505:374:3,54,-57.5,0,0,-0.00545663 -22774,3505:374:4,54.5,-57.5,0,0,-0.00545541 -22775,3505:475:3,55,-57.5,0,0,-0.00545541 -22776,3505:475:4,55.5,-57.5,0,0,-0.00545663 -22777,3505:476:3,56,-57.5,0,0,-0.00545663 -22778,3505:476:4,56.5,-57.5,0,0,-0.00545541 -22779,3505:477:3,57,-57.5,0,0,-0.00545423 -22780,3505:477:4,57.5,-57.5,0,0,-0.005453 -22781,3505:478:3,58,-57.5,0,0,-0.005453 -22782,3505:478:4,58.5,-57.5,0,0,-0.00545179 -22783,3505:479:3,59,-57.5,0,0,-0.00545179 -22784,3505:479:4,59.5,-57.5,0,0,-0.00545179 -22785,3506:370:3,60,-57.5,0,0,-0.005453 -22786,3506:370:4,60.5,-57.5,0,0,-0.005453 -22787,3506:371:3,61,-57.5,0,0,-0.00545179 -22788,3506:371:4,61.5,-57.5,0,0,-0.00545057 -22789,3506:372:3,62,-57.5,0,0,-0.00544935 -22790,3506:372:4,62.5,-57.5,0,0,-0.00544935 -22791,3506:373:3,63,-57.5,0,0,-0.00545057 -22792,3506:373:4,63.5,-57.5,0,0,-0.00545179 -22793,3506:374:3,64,-57.5,0,0,-0.005453 -22794,3506:374:4,64.5,-57.5,0,0,-0.00545541 -22795,3506:475:3,65,-57.5,0,0,-0.00545785 -22796,3506:475:4,65.5,-57.5,0,0,-0.00545907 -22797,3506:476:3,66,-57.5,0,0,-0.00545907 -22798,3506:476:4,66.5,-57.5,0,0,-0.00545907 -22799,3506:477:3,67,-57.5,0,0,-0.00545907 -22800,3506:477:4,67.5,-57.5,0,0,-0.00545785 -22801,3506:478:3,68,-57.5,0,0,-0.00545663 -22802,3506:478:4,68.5,-57.5,0,0,-0.00545663 -22803,3506:479:3,69,-57.5,0,0,-0.00545541 -22804,3506:479:4,69.5,-57.5,0,0,-0.005453 -22805,3507:370:3,70,-57.5,0,0,-0.00545179 -22806,3507:370:4,70.5,-57.5,0,0,-0.00544935 -22807,3507:371:3,71,-57.5,0,0,-0.00544573 -22808,3507:371:4,71.5,-57.5,0,0,-0.00544333 -22809,3507:372:3,72,-57.5,0,0,-0.00551513 -22810,3507:372:4,72.5,-57.5,0,0,-0.00550534 -22811,3507:373:4,73.5,-57.5,0,0,-0.0055237 -22812,3507:374:3,74,-57.5,0,0,-0.00554584 -22813,3507:374:4,74.5,-57.5,0,0,-0.00555943 -22814,3507:475:3,75,-57.5,0,0,-0.00547364 -22815,3507:475:4,75.5,-57.5,0,0,-0.00544816 -22816,3507:476:3,76,-57.5,0,0,-0.00544451 -22817,3507:476:4,76.5,-57.5,0,0,-0.00545907 -22818,3507:477:3,77,-57.5,0,0,-0.00548947 -22819,3507:477:4,77.5,-57.5,0,0,-0.00551147 -22820,3507:478:3,78,-57.5,0,0,-0.00550046 -22821,3507:478:4,78.5,-57.5,0,0,-0.00547241 -22822,3507:479:3,79,-57.5,0,0,-0.00544935 -22823,3507:479:4,79.5,-57.5,0,0,-0.00544935 -22824,3508:370:3,80,-57.5,0,0,-0.00544935 -22825,3508:370:4,80.5,-57.5,0,0,-0.00544816 -22826,3508:371:3,81,-57.5,0,0,-0.00544695 -22827,3508:371:4,81.5,-57.5,0,0,-0.00544333 -22828,3508:372:3,82,-57.5,0,0,-0.00544211 -22829,3508:372:4,82.5,-57.5,0,0,-0.00544451 -22830,3508:373:3,83,-57.5,0,0,-0.00545057 -22831,3508:373:4,83.5,-57.5,0,0,-0.00545423 -22832,3508:374:3,84,-57.5,0,0,-0.00545541 -22833,3508:374:4,84.5,-57.5,0,0,-0.00545663 -22834,3508:475:3,85,-57.5,0,0,-0.00545663 -22835,3508:475:4,85.5,-57.5,0,0,-0.00545663 -22836,3508:476:3,86,-57.5,0,0,-0.00545663 -22837,3508:476:4,86.5,-57.5,0,0,-0.00545423 -22838,3508:477:3,87,-57.5,0,0,-0.005453 -22839,3508:477:4,87.5,-57.5,0,0,-0.00545179 -22840,3508:478:3,88,-57.5,0,0,-0.00544816 -22841,3508:478:4,88.5,-57.5,0,0,-0.00544089 -22842,3508:479:3,89,-57.5,0,0,-0.00550777 -22843,3508:479:4,89.5,-57.5,0,0,-0.00558789 -22844,3509:370:3,90,-57.5,0,0,-0.00563652 -22845,3509:370:4,90.5,-57.5,0,0,-0.00574398 -22846,3509:371:3,91,-57.5,0,0,-0.00572108 -22847,3509:371:4,91.5,-57.5,0,0,-0.00562526 -22848,3509:372:3,92,-57.5,0,0,-0.00546511 -22849,3509:372:4,92.5,-57.5,0,0,-0.005453 -22850,3509:373:3,93,-57.5,0,0,-0.00546148 -22851,3509:373:4,93.5,-57.5,0,0,-0.00546511 -22852,3509:374:3,94,-57.5,0,0,-0.00546633 -22853,3509:374:4,94.5,-57.5,0,0,-0.00546755 -22854,3509:475:3,95,-57.5,0,0,-0.00547 -22855,3509:475:4,95.5,-57.5,0,0,-0.00547241 -22856,3509:476:3,96,-57.5,0,0,-0.00547364 -22857,3509:476:4,96.5,-57.5,0,0,-0.00547486 -22858,3509:477:3,97,-57.5,0,0,-0.00547605 -22859,3509:477:4,97.5,-57.5,0,0,-0.00547727 -22860,3509:478:3,98,-57.5,0,0,-0.00547727 -22861,3509:478:4,98.5,-57.5,0,0,-0.0054785 -22862,3509:479:3,99,-57.5,0,0,-0.0054785 -22863,3509:479:4,99.5,-57.5,0,0,-0.0054785 -22864,3510:370:3,100,-57.5,0,0,-0.0054785 -22865,3510:370:4,100.5,-57.5,0,0,-0.00547727 -22866,3510:371:3,101,-57.5,0,0,-0.00547605 -22867,3510:371:4,101.5,-57.5,0,0,-0.00547486 -22868,3510:372:3,102,-57.5,0,0,-0.00547241 -22869,3510:372:4,102.5,-57.5,0,0,-0.00547 -22870,3510:373:3,103,-57.5,0,0,-0.00546633 -22871,3510:373:4,103.5,-57.5,0,0,-0.00546392 -22872,3510:374:3,104,-57.5,0,0,-0.00546392 -22873,3510:374:4,104.5,-57.5,0,0,-0.0054627 -22874,3510:475:3,105,-57.5,0,0,-0.00546148 -22875,3510:475:4,105.5,-57.5,0,0,-0.00546026 -22876,3510:476:3,106,-57.5,0,0,-0.00545785 -22877,3510:476:4,106.5,-57.5,0,0,-0.00545663 -22878,3510:477:3,107,-57.5,0,0,-0.00545785 -22879,3510:477:4,107.5,-57.5,0,0,-0.00545907 -22880,3510:478:3,108,-57.5,0,0,-0.00546026 -22881,3510:478:4,108.5,-57.5,0,0,-0.00546026 -22882,3510:479:3,109,-57.5,0,0,-0.00545907 -22883,3510:479:4,109.5,-57.5,0,0,-0.00545785 -22884,3511:370:3,110,-57.5,0,0,-0.00545663 -22885,3511:370:4,110.5,-57.5,0,0,-0.00545663 -22886,3511:371:3,111,-57.5,0,0,-0.00545785 -22887,3511:371:4,111.5,-57.5,0,0,-0.00545663 -22888,3511:372:3,112,-57.5,0,0,-0.00545423 -22889,3511:372:4,112.5,-57.5,0,0,-0.00545423 -22890,3511:373:3,113,-57.5,0,0,-0.00545541 -22891,3511:373:4,113.5,-57.5,0,0,-0.00545423 -22892,3511:374:3,114,-57.5,0,0,-0.00545541 -22893,3511:374:4,114.5,-57.5,0,0,-0.00546026 -22894,3511:475:3,115,-57.5,0,0,-0.00545785 -22895,3511:475:4,115.5,-57.5,0,0,-0.00545057 -22896,3511:476:3,116,-57.5,0,0,-0.00544935 -22897,3511:476:4,116.5,-57.5,0,0,-0.00544935 -22898,3511:477:3,117,-57.5,0,0,-0.00544695 -22899,3511:477:4,117.5,-57.5,0,0,-0.00544573 -22900,3511:478:3,118,-57.5,0,0,-0.0055188 -22901,3511:478:4,118.5,-57.5,0,0,-0.00580558 -22902,3511:479:3,119,-57.5,0,0,-0.00620175 -22903,3511:479:4,119.5,-57.5,0,0,-0.00634682 -22904,3512:370:3,120,-57.5,0,0,-0.00643638 -22905,3512:370:4,120.5,-57.5,0,0,-0.00666655 -22906,3512:371:3,121,-57.5,0,0,-0.00722566 -22907,3512:371:4,121.5,-57.5,0,0,-0.00758998 -22908,3512:372:3,122,-57.5,0,0,-0.00770748 -22909,3512:372:4,122.5,-57.5,0,0,-0.00774012 -22910,3512:373:3,123,-57.5,0,0,-0.00776778 -22911,3512:373:4,123.5,-57.5,0,0,-0.00777988 -22912,3512:374:3,124,-57.5,0,0,-0.00775565 -22913,3512:374:4,124.5,-57.5,0,0,-0.00770921 -22914,3512:475:3,125,-57.5,0,0,-0.00762212 -22915,3512:475:4,125.5,-57.5,0,0,-0.00746927 -22916,3512:476:3,126,-57.5,0,0,-0.00738336 -22917,3512:476:4,126.5,-57.5,0,0,-0.00736203 -22918,3512:477:3,127,-57.5,0,0,-0.00725304 -22919,3512:477:4,127.5,-57.5,0,0,-0.00688356 -22920,3512:478:3,128,-57.5,0,0,-0.0064021 -22921,3512:478:4,128.5,-57.5,0,0,-0.00614004 -22922,3512:479:3,129,-57.5,0,0,-0.00609923 -22923,3512:479:4,129.5,-57.5,0,0,-0.0062725 -22924,3513:370:3,130,-57.5,0,0,-0.00648809 -22925,3513:370:4,130.5,-57.5,0,0,-0.00672162 -22926,3513:371:3,131,-57.5,0,0,-0.00697913 -22927,3513:371:4,131.5,-57.5,0,0,-0.00725304 -22928,3513:372:3,132,-57.5,0,0,-0.00745437 -22929,3513:372:4,132.5,-57.5,0,0,-0.00665172 -22930,3513:373:3,133,-57.5,0,0,-0.0055237 -22931,3513:373:4,133.5,-57.5,0,0,-0.00547 -22932,3513:374:3,134,-57.5,0,0,-0.00548947 -22933,3513:374:4,134.5,-57.5,0,0,-0.0055139 -22934,3513:475:3,135,-57.5,0,0,-0.00551266 -22935,3513:475:4,135.5,-57.5,0,0,-0.00550288 -22936,3513:476:3,136,-57.5,0,0,-0.00550534 -22937,3513:476:4,136.5,-57.5,0,0,-0.0055188 -22938,3513:477:3,137,-57.5,0,0,-0.00553848 -22939,3513:477:4,137.5,-57.5,0,0,-0.00553232 -22940,3513:478:3,138,-57.5,0,0,-0.0055188 -22941,3513:478:4,138.5,-57.5,0,0,-0.005536 -22942,3513:479:3,139,-57.5,0,0,-0.00556682 -22943,3513:479:4,139.5,-57.5,0,0,-0.00556932 -22944,3514:370:3,140,-57.5,0,0,-0.00559536 -22945,3514:370:4,140.5,-57.5,0,0,-0.00566668 -22946,3514:371:3,141,-57.5,0,0,-0.00575677 -22947,3514:371:4,141.5,-57.5,0,0,-0.00586784 -22948,3514:372:3,142,-57.5,0,0,-0.00598241 -22949,3514:372:4,142.5,-57.5,0,0,-0.0060104 -22950,3514:373:3,143,-57.5,0,0,-0.00590317 -22951,3514:373:4,143.5,-57.5,0,0,-0.00585484 -22952,3514:374:3,144,-57.5,0,0,-0.00593343 -22953,3514:374:4,144.5,-57.5,0,0,-0.00611145 -22954,3514:475:3,145,-57.5,0,0,-0.00621696 -22955,3514:475:4,145.5,-57.5,0,0,-0.00622802 -22956,3514:476:3,146,-57.5,0,0,-0.0062004 -22957,3514:476:4,146.5,-57.5,0,0,-0.00580172 -22958,3514:477:3,147,-57.5,0,0,-0.00559039 -22959,3514:477:4,147.5,-57.5,0,0,-0.00555694 -22960,3514:478:3,148,-57.5,0,0,-0.00555694 -22961,3514:478:4,148.5,-57.5,0,0,-0.00556807 -22962,3514:479:3,149,-57.5,0,0,-0.00555325 -22963,3514:479:4,149.5,-57.5,0,0,-0.00553848 -22964,3515:370:3,150,-57.5,0,0,-0.00553724 -22965,3515:370:4,150.5,-57.5,0,0,-0.00554953 -22966,3515:371:3,151,-57.5,0,0,-0.00556064 -22967,3515:371:4,151.5,-57.5,0,0,-0.00556064 -22968,3515:372:3,152,-57.5,0,0,-0.0055446 -22969,3515:372:4,152.5,-57.5,0,0,-0.00552741 -22970,3515:373:3,153,-57.5,0,0,-0.00551513 -22971,3515:373:4,153.5,-57.5,0,0,-0.00550411 -22972,3515:374:3,154,-57.5,0,0,-0.00549069 -22973,3515:374:4,154.5,-57.5,0,0,-0.00547972 -22974,3515:475:3,155,-57.5,0,0,-0.00547486 -22975,3515:475:4,155.5,-57.5,0,0,-0.00547605 -22976,3515:476:3,156,-57.5,0,0,-0.00547605 -22977,3515:476:4,156.5,-57.5,0,0,-0.00547364 -22978,3515:477:3,157,-57.5,0,0,-0.00547364 -22979,3515:477:4,157.5,-57.5,0,0,-0.00547119 -22980,3515:478:3,158,-57.5,0,0,-0.00546878 -22981,3515:478:4,158.5,-57.5,0,0,-0.00546878 -22982,3515:479:3,159,-57.5,0,0,-0.00546878 -22983,3515:479:4,159.5,-57.5,0,0,-0.00547119 -22984,3516:370:3,160,-57.5,0,0,-0.00547241 -22985,3516:370:4,160.5,-57.5,0,0,-0.00547241 -22986,3516:371:3,161,-57.5,0,0,-0.00547241 -22987,3516:371:4,161.5,-57.5,0,0,-0.00547241 -22988,3516:372:3,162,-57.5,0,0,-0.00547364 -22989,3516:372:4,162.5,-57.5,0,0,-0.00547605 -22990,3516:373:3,163,-57.5,0,0,-0.00547727 -22991,3516:373:4,163.5,-57.5,0,0,-0.00547727 -22992,3516:374:3,164,-57.5,0,0,-0.00547605 -22993,3516:374:4,164.5,-57.5,0,0,-0.00547605 -22994,3516:475:3,165,-57.5,0,0,-0.00547727 -22995,3516:475:4,165.5,-57.5,0,0,-0.00548214 -22996,3516:476:3,166,-57.5,0,0,-0.00549677 -22997,3516:476:4,166.5,-57.5,0,0,-0.00550534 -22998,3516:477:3,167,-57.5,0,0,-0.00549677 -22999,3516:477:4,167.5,-57.5,0,0,-0.00548701 -23000,3516:478:3,168,-57.5,0,0,-0.00548824 -23001,3516:478:4,168.5,-57.5,0,0,-0.005498 -23002,3516:479:3,169,-57.5,0,0,-0.00551756 -23003,3516:479:4,169.5,-57.5,0,0,-0.00554216 -23004,3517:370:3,170,-57.5,0,0,-0.00557672 -23005,3517:370:4,170.5,-57.5,0,0,-0.00567045 -23006,3517:371:3,171,-57.5,0,0,-0.00577726 -23007,3517:371:4,171.5,-57.5,0,0,-0.00583146 -23008,3517:372:3,172,-57.5,0,0,-0.00585091 -23009,3517:372:4,172.5,-57.5,0,0,-0.00581464 -23010,3517:373:3,173,-57.5,0,0,-0.00572869 -23011,3517:373:4,173.5,-57.5,0,0,-0.00563025 -23012,3517:374:3,174,-57.5,0,0,-0.00553848 -23013,3517:374:4,174.5,-57.5,0,0,-0.00548947 -23014,3517:475:3,175,-57.5,0,0,-0.00549923 -23015,3517:475:4,175.5,-57.5,0,0,-0.00597442 -23016,3517:476:3,176,-57.5,0,0,-0.00678621 -23017,3517:476:4,176.5,-57.5,0,0,-0.00736528 -23018,3517:477:3,177,-57.5,0,0,-0.00725467 -23019,3517:477:4,177.5,-57.5,0,0,-0.0069004 -23020,3517:478:3,178,-57.5,0,0,-0.00662811 -23021,3517:478:4,178.5,-57.5,0,0,-0.00650833 -23022,3517:479:3,179,-57.5,0,0,-0.00698535 -23023,3517:479:4,179.5,-57.5,0,0,-0.00744607 -23024,3518:370:3,180,-57.5,0,0,-0.00760686 -23025,5518:370:1,-180,-57,0,0,-0.00875096 -23026,5517:479:2,-179.5,-57,0,0,-0.00837696 -23027,5517:479:1,-179,-57,0,0,-0.00868101 -23028,5517:478:2,-178.5,-57,0,0,-0.00883914 -23029,5517:478:1,-178,-57,0,0,-0.00884901 -23030,5517:477:2,-177.5,-57,0,0,-0.00883127 -23031,5517:477:1,-177,-57,0,0,-0.00871005 -23032,5517:476:2,-176.5,-57,0,0,-0.00857714 -23033,5517:476:1,-176,-57,0,0,-0.0083919 -23034,5517:475:2,-175.5,-57,0,0,-0.00839567 -23035,5517:475:1,-175,-57,0,0,-0.00829524 -23036,5517:374:2,-174.5,-57,0,0,-0.00806746 -23037,5517:374:1,-174,-57,0,0,-0.00787573 -23038,5517:373:2,-173.5,-57,0,0,-0.00769377 -23039,5517:373:1,-173,-57,0,0,-0.00756975 -23040,5517:372:2,-172.5,-57,0,0,-0.00740476 -23041,5517:372:1,-172,-57,0,0,-0.00731627 -23042,5517:371:2,-171.5,-57,0,0,-0.00727084 -23043,5517:371:1,-171,-57,0,0,-0.00726759 -23044,5517:370:2,-170.5,-57,0,0,-0.00753276 -23045,5517:370:1,-170,-57,0,0,-0.00777121 -23046,5516:479:2,-169.5,-57,0,0,-0.00748262 -23047,5516:479:1,-169,-57,0,0,-0.00690809 -23048,5516:478:2,-168.5,-57,0,0,-0.00668286 -23049,5516:478:1,-168,-57,0,0,-0.00670075 -23050,5516:477:2,-167.5,-57,0,0,-0.00666361 -23051,5516:477:1,-167,-57,0,0,-0.00637938 -23052,5516:476:2,-166.5,-57,0,0,-0.00621144 -23053,5516:476:1,-166,-57,0,0,-0.00614142 -23054,5516:475:2,-165.5,-57,0,0,-0.00613051 -23055,5516:475:1,-165,-57,0,0,-0.00623081 -23056,5516:374:2,-164.5,-57,0,0,-0.00639498 -23057,5516:374:1,-164,-57,0,0,-0.00651412 -23058,5516:373:2,-163.5,-57,0,0,-0.006634 -23059,5516:373:1,-163,-57,0,0,-0.00676662 -23060,5516:372:2,-162.5,-57,0,0,-0.00694972 -23061,5516:372:1,-162,-57,0,0,-0.00712349 -23062,5516:371:2,-161.5,-57,0,0,-0.00720317 -23063,5516:371:1,-161,-57,0,0,-0.00724497 -23064,5516:370:2,-160.5,-57,0,0,-0.0072789 -23065,5516:370:1,-160,-57,0,0,-0.00731791 -23066,5515:479:2,-159.5,-57,0,0,-0.00736528 -23067,5515:479:1,-159,-57,0,0,-0.0074643 -23068,5515:478:2,-158.5,-57,0,0,-0.00754116 -23069,5515:478:1,-158,-57,0,0,-0.00753947 -23070,5515:477:2,-157.5,-57,0,0,-0.00750263 -23071,5515:477:1,-157,-57,0,0,-0.00744273 -23072,5515:476:2,-156.5,-57,0,0,-0.00736038 -23073,5515:476:1,-156,-57,0,0,-0.00730162 -23074,5515:475:2,-155.5,-57,0,0,-0.0072984 -23075,5515:475:1,-155,-57,0,0,-0.0072984 -23076,5515:374:2,-154.5,-57,0,0,-0.00726433 -23077,5515:374:1,-154,-57,0,0,-0.00724177 -23078,5515:373:2,-153.5,-57,0,0,-0.00721443 -23079,5515:373:1,-153,-57,0,0,-0.00722566 -23080,5515:372:2,-152.5,-57,0,0,-0.00728864 -23081,5515:372:1,-152,-57,0,0,-0.00734729 -23082,5515:371:2,-151.5,-57,0,0,-0.00737184 -23083,5515:371:1,-151,-57,0,0,-0.00738497 -23084,5515:370:2,-150.5,-57,0,0,-0.00766127 -23085,5515:370:1,-150,-57,0,0,-0.0080066 -23086,5514:479:2,-149.5,-57,0,0,-0.00792502 -23087,5514:479:1,-149,-57,0,0,-0.00755459 -23088,5514:478:2,-148.5,-57,0,0,-0.00735873 -23089,5514:478:1,-148,-57,0,0,-0.00726596 -23090,5514:477:2,-147.5,-57,0,0,-0.00720958 -23091,5514:477:1,-147,-57,0,0,-0.00753778 -23092,5514:476:2,-146.5,-57,0,0,-0.00813602 -23093,5514:476:1,-146,-57,0,0,-0.00821432 -23094,5514:475:2,-145.5,-57,0,0,-0.00820338 -23095,5514:475:1,-145,-57,0,0,-0.00825653 -23096,5514:374:2,-144.5,-57,0,0,-0.00831562 -23097,5514:374:1,-144,-57,0,0,-0.00827682 -23098,5514:373:2,-143.5,-57,0,0,-0.00809806 -23099,5514:373:1,-143,-57,0,0,-0.00805847 -23100,5514:372:2,-142.5,-57,0,0,-0.00796216 -23101,5514:372:1,-142,-57,0,0,-0.00835461 -23102,5514:371:2,-141.5,-57,0,0,-0.00881944 -23103,5514:371:1,-141,-57,0,0,-0.00878418 -23104,5514:370:2,-140.5,-57,0,0,-0.00841064 -23105,5514:370:1,-140,-57,0,0,-0.00819792 -23106,5513:479:2,-139.5,-57,0,0,-0.00866556 -23107,5513:479:1,-139,-57,0,0,-0.00909906 -23108,5513:478:2,-138.5,-57,0,0,-0.00922367 -23109,5513:478:1,-138,-57,0,0,-0.00977432 -23110,5513:477:2,-137.5,-57,0,0,-0.00994592 -23111,5513:477:1,-137,-57,0,0,-0.00957796 -23112,5513:476:2,-136.5,-57,0,0,-0.00889845 -23113,5513:476:1,-136,-57,0,0,-0.00860396 -23114,5513:475:2,-135.5,-57,0,0,-0.00879393 -23115,5513:475:1,-135,-57,0,0,-0.00896217 -23116,5513:374:2,-134.5,-57,0,0,-0.00941481 -23117,5513:374:1,-134,-57,0,0,-0.00995263 -23118,5513:373:2,-133.5,-57,0,0,-0.0101251 -23119,5513:373:1,-133,-57,0,0,-0.0102914 -23120,5513:372:2,-132.5,-57,0,0,-0.010585 -23121,5513:372:1,-132,-57,0,0,-0.0107326 -23122,5513:371:2,-131.5,-57,0,0,-0.0107517 -23123,5513:371:1,-131,-57,0,0,-0.0107039 -23124,5513:370:2,-130.5,-57,0,0,-0.0106205 -23125,5513:370:1,-130,-57,0,0,-0.0106158 -23126,5512:479:2,-129.5,-57,0,0,-0.0107398 -23127,5512:479:1,-129,-57,0,0,-0.0109017 -23128,5512:478:2,-128.5,-57,0,0,-0.0110562 -23129,5512:478:1,-128,-57,0,0,-0.0111704 -23130,5512:477:2,-127.5,-57,0,0,-0.0112682 -23131,5512:477:1,-127,-57,0,0,-0.0113642 -23132,5512:476:2,-126.5,-57,0,0,-0.0115408 -23133,5512:476:1,-126,-57,0,0,-0.0116809 -23134,5512:475:2,-125.5,-57,0,0,-0.0116029 -23135,5512:475:1,-125,-57,0,0,-0.0114177 -23136,5512:374:2,-124.5,-57,0,0,-0.0112405 -23137,5512:374:1,-124,-57,0,0,-0.0110513 -23138,5512:373:2,-123.5,-57,0,0,-0.0108507 -23139,5512:373:1,-123,-57,0,0,-0.0108047 -23140,5512:372:2,-122.5,-57,0,0,-0.0108676 -23141,5512:372:1,-122,-57,0,0,-0.0109358 -23142,5512:371:2,-121.5,-57,0,0,-0.0110586 -23143,5512:371:1,-121,-57,0,0,-0.0111231 -23144,5512:370:2,-120.5,-57,0,0,-0.0113414 -23145,5512:370:1,-120,-57,0,0,-0.0116653 -23146,5511:479:2,-119.5,-57,0,0,-0.0117859 -23147,5511:479:1,-119,-57,0,0,-0.0116211 -23148,5511:478:2,-118.5,-57,0,0,-0.0114611 -23149,5511:478:1,-118,-57,0,0,-0.0119798 -23150,5511:477:2,-117.5,-57,0,0,-0.0125924 -23151,5511:477:1,-117,-57,0,0,-0.0125981 -23152,5511:476:2,-116.5,-57,0,0,-0.012912 -23153,5511:476:1,-116,-57,0,0,-0.0132309 -23154,5511:475:2,-115.5,-57,0,0,-0.0133022 -23155,5511:475:1,-115,-57,0,0,-0.012912 -23156,5511:374:2,-114.5,-57,0,0,-0.0133978 -23157,5511:374:1,-114,-57,0,0,-0.0138493 -23158,5511:373:2,-113.5,-57,0,0,-0.0139115 -23159,5511:373:1,-113,-57,0,0,-0.0139896 -23160,5511:372:2,-112.5,-57,0,0,-0.014198 -23161,5511:372:1,-112,-57,0,0,-0.0143484 -23162,5511:371:2,-111.5,-57,0,0,-0.014214 -23163,5511:371:1,-111,-57,0,0,-0.0135578 -23164,5511:370:2,-110.5,-57,0,0,-0.0127798 -23165,5511:370:1,-110,-57,0,0,-0.0125474 -23166,5510:479:2,-109.5,-57,0,0,-0.012837 -23167,5510:479:1,-109,-57,0,0,-0.0130544 -23168,5510:478:2,-108.5,-57,0,0,-0.0135578 -23169,5510:478:1,-108,-57,0,0,-0.0137443 -23170,5510:477:2,-107.5,-57,0,0,-0.0137289 -23171,5510:477:1,-107,-57,0,0,-0.0138028 -23172,5510:476:2,-106.5,-57,0,0,-0.0138246 -23173,5510:476:1,-106,-57,0,0,-0.0137073 -23174,5510:475:2,-105.5,-57,0,0,-0.0135578 -23175,5510:475:1,-105,-57,0,0,-0.0135002 -23176,5510:374:2,-104.5,-57,0,0,-0.0134489 -23177,5510:374:1,-104,-57,0,0,-0.0132368 -23178,5510:373:2,-103.5,-57,0,0,-0.0130368 -23179,5510:373:1,-103,-57,0,0,-0.0128658 -23180,5510:372:2,-102.5,-57,0,0,-0.0125138 -23181,5510:372:1,-102,-57,0,0,-0.0119103 -23182,5510:371:2,-101.5,-57,0,0,-0.0113744 -23183,5510:371:1,-101,-57,0,0,-0.0112229 -23184,5510:370:2,-100.5,-57,0,0,-0.011577 -23185,5510:370:1,-100,-57,0,0,-0.0117018 -23186,5509:479:2,-99.5,-57,0,0,-0.0116288 -23187,5509:479:1,-99,-57,0,0,-0.0115176 -23188,5509:478:2,-98.5,-57,0,0,-0.0112606 -23189,5509:478:1,-98,-57,0,0,-0.010841 -23190,5509:477:2,-97.5,-57,0,0,-0.010604 -23191,5509:477:1,-97,-57,0,0,-0.0107039 -23192,5509:476:2,-96.5,-57,0,0,-0.0109212 -23193,5509:476:1,-96,-57,0,0,-0.0110266 -23194,5509:475:2,-95.5,-57,0,0,-0.0108725 -23195,5509:475:1,-95,-57,0,0,-0.010711 -23196,5509:374:2,-94.5,-57,0,0,-0.0106943 -23197,5509:374:1,-94,-57,0,0,-0.0107422 -23198,5509:373:2,-93.5,-57,0,0,-0.0108458 -23199,5509:373:1,-93,-57,0,0,-0.0109309 -23200,5509:372:2,-92.5,-57,0,0,-0.0110192 -23201,5509:372:1,-92,-57,0,0,-0.0110636 -23202,5509:371:2,-91.5,-57,0,0,-0.0108701 -23203,5509:371:1,-91,-57,0,0,-0.0104722 -23204,5509:370:2,-90.5,-57,0,0,-0.0110069 -23205,5509:370:1,-90,-57,0,0,-0.011382 -23206,5508:479:2,-89.5,-57,0,0,-0.0112204 -23207,5508:479:1,-89,-57,0,0,-0.0112782 -23208,5508:478:2,-88.5,-57,0,0,-0.0113999 -23209,5508:478:1,-88,-57,0,0,-0.0127455 -23210,5508:477:2,-87.5,-57,0,0,-0.0136767 -23211,5508:477:1,-87,-57,0,0,-0.0138679 -23212,5508:476:2,-86.5,-57,0,0,-0.0136522 -23213,5508:476:1,-86,-57,0,0,-0.0131718 -23214,5508:475:2,-85.5,-57,0,0,-0.0124245 -23215,5508:475:1,-85,-57,0,0,-0.0118864 -23216,5508:374:2,-84.5,-57,0,0,-0.0118466 -23217,5508:374:1,-84,-57,0,0,-0.0117806 -23218,5508:373:2,-83.5,-57,0,0,-0.0119745 -23219,5508:373:1,-83,-57,0,0,-0.0122644 -23220,5508:372:2,-82.5,-57,0,0,-0.0126037 -23221,5508:372:1,-82,-57,0,0,-0.0125811 -23222,5508:371:2,-81.5,-57,0,0,-0.0121253 -23223,5508:371:1,-81,-57,0,0,-0.0110414 -23224,5508:370:2,-80.5,-57,0,0,-0.0093813 -23225,5508:370:1,-80,-57,0,0,-0.00769204 -23226,5507:479:2,-79.5,-57,0,0,-0.00700558 -23227,5507:479:1,-79,-57,0,0,-0.00760521 -23228,5507:478:2,-78.5,-57,0,0,-0.00778162 -23229,5507:478:1,-78,-57,0,0,-0.00802802 -23230,5507:477:2,-77.5,-57,0,0,-0.00878609 -23231,5507:477:1,-77,-57,0,0,-0.00929797 -23232,5507:476:2,-76.5,-57,0,0,-0.0103282 -23233,5507:476:1,-76,-57,0,0,-0.0108144 -23234,5507:475:2,-75.5,-57,0,0,-0.0106752 -23235,5507:475:1,-75,-57,0,0,-0.0105426 -23236,5507:374:2,-74.5,-57,0,0,-0.01068 -23237,5507:374:1,-74,-57,0,0,-0.0109187 -23238,5507:373:2,-73.5,-57,0,0,-0.0113947 -23239,5507:373:1,-73,-57,0,0,-0.0113313 -23240,5507:372:2,-72.5,-57,0,0,-0.0107734 -23241,5507:372:1,-72,-57,0,0,-0.0108895 -23242,5507:371:2,-71.5,-57,0,0,-0.0106776 -23243,5507:371:1,-71,-57,0,0,-0.010241 -23244,5507:370:2,-70.5,-57,0,0,-0.00963793 -23245,5507:370:1,-70,-57,0,0,-0.00897816 -23246,5506:479:2,-69.5,-57,0,0,-0.00851056 -23247,5506:479:1,-69,-57,0,0,-0.00817238 -23248,5506:478:2,-68.5,-57,0,0,-0.00748095 -23249,5506:478:1,-68,-57,0,0,-0.00672162 -23250,5506:477:2,-67.5,-57,0,0,-0.00696985 -23251,5506:477:1,-67,-57,0,0,-0.00736038 -23252,5506:476:2,-66.5,-57,0,0,-0.00735054 -23253,5506:476:1,-66,-57,0,0,-0.00674712 -23254,5506:475:2,-65.5,-57,0,0,-0.00659284 -23255,5506:475:1,-65,-57,0,0,-0.00668286 -23256,5506:374:2,-64.5,-57,0,0,-0.00652283 -23257,5506:374:1,-64,-57,0,0,-0.00665619 -23258,5506:373:2,-63.5,-57,0,0,-0.0067817 -23259,5506:373:1,-63,-57,0,0,-0.0066473 -23260,5506:372:2,-62.5,-57,0,0,-0.00724659 -23261,5506:372:1,-62,-57,0,0,-0.00789507 -23262,5506:371:2,-61.5,-57,0,0,-0.00736038 -23263,5506:371:1,-61,-57,0,0,-0.00674561 -23264,5506:370:2,-60.5,-57,0,0,-0.00793385 -23265,5506:370:1,-60,-57,0,0,-0.00777813 -23266,5505:479:2,-59.5,-57,0,0,-0.00765617 -23267,5505:477:2,-57.5,-57,0,0,-0.00642207 -23268,5505:477:1,-57,-57,0,0,-0.00623635 -23269,5505:476:2,-56.5,-57,0,0,-0.00589925 -23270,5505:476:1,-56,-57,0,0,-0.00582885 -23271,5505:475:2,-55.5,-57,0,0,-0.00578243 -23272,5505:475:1,-55,-57,0,0,-0.00574016 -23273,5505:374:2,-54.5,-57,0,0,-0.00566288 -23274,5505:374:1,-54,-57,0,0,-0.00562278 -23275,5505:373:2,-53.5,-57,0,0,-0.005619 -23276,5505:373:1,-53,-57,0,0,-0.00557302 -23277,5505:372:2,-52.5,-57,0,0,-0.00550411 -23278,5505:372:1,-52,-57,0,0,-0.00545785 -23279,5505:371:2,-51.5,-57,0,0,-0.00546633 -23280,5505:371:1,-51,-57,0,0,-0.00546633 -23281,5505:370:2,-50.5,-57,0,0,-0.00546511 -23282,5505:370:1,-50,-57,0,0,-0.00546392 -23283,5504:479:2,-49.5,-57,0,0,-0.0054627 -23284,5504:479:1,-49,-57,0,0,-0.00546148 -23285,5504:478:2,-48.5,-57,0,0,-0.00546026 -23286,5504:478:1,-48,-57,0,0,-0.00545907 -23287,5504:477:2,-47.5,-57,0,0,-0.00545785 -23288,5504:477:1,-47,-57,0,0,-0.00545663 -23289,5504:476:2,-46.5,-57,0,0,-0.00545663 -23290,5504:476:1,-46,-57,0,0,-0.00545663 -23291,5504:475:2,-45.5,-57,0,0,-0.00545785 -23292,5504:475:1,-45,-57,0,0,-0.00545785 -23293,5504:374:2,-44.5,-57,0,0,-0.00545663 -23294,5504:374:1,-44,-57,0,0,-0.00545663 -23295,5504:373:2,-43.5,-57,0,0,-0.00545423 -23296,5504:373:1,-43,-57,0,0,-0.005453 -23297,5504:372:2,-42.5,-57,0,0,-0.00545179 -23298,5504:372:1,-42,-57,0,0,-0.00545179 -23299,5504:371:2,-41.5,-57,0,0,-0.005453 -23300,5504:371:1,-41,-57,0,0,-0.005453 -23301,5504:370:2,-40.5,-57,0,0,-0.00545423 -23302,5504:370:1,-40,-57,0,0,-0.00545423 -23303,5503:479:2,-39.5,-57,0,0,-0.00545541 -23304,5503:479:1,-39,-57,0,0,-0.00545541 -23305,5503:478:2,-38.5,-57,0,0,-0.00545541 -23306,5503:478:1,-38,-57,0,0,-0.00545541 -23307,5503:477:2,-37.5,-57,0,0,-0.00545541 -23308,5503:477:1,-37,-57,0,0,-0.00545663 -23309,5503:476:2,-36.5,-57,0,0,-0.00545785 -23310,5503:476:1,-36,-57,0,0,-0.00545785 -23311,5503:475:2,-35.5,-57,0,0,-0.00545907 -23312,5503:475:1,-35,-57,0,0,-0.00546026 -23313,5503:374:2,-34.5,-57,0,0,-0.00546026 -23314,5503:374:1,-34,-57,0,0,-0.00546148 -23315,5503:373:2,-33.5,-57,0,0,-0.00546148 -23316,5503:373:1,-33,-57,0,0,-0.00546148 -23317,5503:372:2,-32.5,-57,0,0,-0.00546148 -23318,5503:372:1,-32,-57,0,0,-0.00546148 -23319,5503:371:2,-31.5,-57,0,0,-0.00546026 -23320,5503:371:1,-31,-57,0,0,-0.00546026 -23321,5503:370:2,-30.5,-57,0,0,-0.00546026 -23322,5503:370:1,-30,-57,0,0,-0.00546026 -23323,5502:479:2,-29.5,-57,0,0,-0.00546026 -23324,5502:479:1,-29,-57,0,0,-0.00546026 -23325,5502:478:2,-28.5,-57,0,0,-0.00546026 -23326,5502:478:1,-28,-57,0,0,-0.00546026 -23327,5502:477:2,-27.5,-57,0,0,-0.00545907 -23328,5502:477:1,-27,-57,0,0,-0.00545907 -23329,5502:476:2,-26.5,-57,0,0,-0.00545907 -23330,5502:476:1,-26,-57,0,0,-0.00545907 -23331,5502:475:2,-25.5,-57,0,0,-0.00545785 -23332,5502:475:1,-25,-57,0,0,-0.00545785 -23333,5502:374:2,-24.5,-57,0,0,-0.00545663 -23334,5502:374:1,-24,-57,0,0,-0.00545663 -23335,5502:373:2,-23.5,-57,0,0,-0.00545541 -23336,5502:373:1,-23,-57,0,0,-0.00545541 -23337,5502:372:2,-22.5,-57,0,0,-0.00545423 -23338,5502:372:1,-22,-57,0,0,-0.005453 -23339,5502:371:2,-21.5,-57,0,0,-0.00545179 -23340,5502:371:1,-21,-57,0,0,-0.00545057 -23341,5502:370:2,-20.5,-57,0,0,-0.00544935 -23342,5502:370:1,-20,-57,0,0,-0.00544816 -23343,5501:479:2,-19.5,-57,0,0,-0.00544573 -23344,5501:479:1,-19,-57,0,0,-0.00544451 -23345,5501:478:2,-18.5,-57,0,0,-0.00544211 -23346,5501:478:1,-18,-57,0,0,-0.00544089 -23347,5501:477:2,-17.5,-57,0,0,-0.00543968 -23348,5501:477:1,-17,-57,0,0,-0.0054385 -23349,5501:476:2,-16.5,-57,0,0,-0.00543728 -23350,5501:476:1,-16,-57,0,0,-0.00543728 -23351,5501:475:2,-15.5,-57,0,0,-0.00543606 -23352,5501:475:1,-15,-57,0,0,-0.00543606 -23353,5501:374:2,-14.5,-57,0,0,-0.00543606 -23354,5501:374:1,-14,-57,0,0,-0.00543606 -23355,5501:373:2,-13.5,-57,0,0,-0.00543728 -23356,5501:373:1,-13,-57,0,0,-0.00543728 -23357,5501:372:2,-12.5,-57,0,0,-0.00543728 -23358,5501:372:1,-12,-57,0,0,-0.00543728 -23359,5501:371:2,-11.5,-57,0,0,-0.0054385 -23360,5501:371:1,-11,-57,0,0,-0.00543968 -23361,5501:370:2,-10.5,-57,0,0,-0.00544089 -23362,5501:370:1,-10,-57,0,0,-0.00544089 -23363,5500:479:2,-9.5,-57,0,0,-0.00544089 -23364,5500:479:1,-9,-57,0,0,-0.00543968 -23365,5500:478:2,-8.5,-57,0,0,-0.00543968 -23366,5500:478:1,-8,-57,0,0,-0.00543968 -23367,5500:477:2,-7.5,-57,0,0,-0.00543968 -23368,5500:477:1,-7,-57,0,0,-0.00543968 -23369,5500:476:2,-6.5,-57,0,0,-0.00543968 -23370,5500:476:1,-6,-57,0,0,-0.00543968 -23371,5500:475:2,-5.5,-57,0,0,-0.00543968 -23372,5500:475:1,-5,-57,0,0,-0.0054385 -23373,5500:374:2,-4.5,-57,0,0,-0.00543728 -23374,5500:374:1,-4,-57,0,0,-0.00543728 -23375,5500:373:2,-3.5,-57,0,0,-0.00543728 -23376,5500:373:1,-3,-57,0,0,-0.00543606 -23377,5500:372:2,-2.5,-57,0,0,-0.00543728 -23378,5500:372:1,-2,-57,0,0,-0.00543728 -23379,5500:371:2,-1.5,-57,0,0,-0.00543728 -23380,5500:371:1,-1,-57,0,0,-0.00543728 -23381,5500:370:2,-0.5,-57,0,0,-0.00543728 -23382,3500:370:2,0,-57,0,0,-0.0054385 -23383,3500:370:2,0.5,-57,0,0,-0.0054385 -23384,3500:371:1,1,-57,0,0,-0.00543968 -23385,3500:371:2,1.5,-57,0,0,-0.00544089 -23386,3500:372:1,2,-57,0,0,-0.00544333 -23387,3500:372:2,2.5,-57,0,0,-0.00544333 -23388,3500:373:1,3,-57,0,0,-0.00544211 -23389,3500:373:2,3.5,-57,0,0,-0.00544211 -23390,3500:374:1,4,-57,0,0,-0.00544089 -23391,3500:374:2,4.5,-57,0,0,-0.00544089 -23392,3500:475:1,5,-57,0,0,-0.00544089 -23393,3500:475:2,5.5,-57,0,0,-0.00544211 -23394,3500:476:1,6,-57,0,0,-0.00544333 -23395,3500:476:2,6.5,-57,0,0,-0.00544573 -23396,3500:477:1,7,-57,0,0,-0.00544573 -23397,3500:477:2,7.5,-57,0,0,-0.00544695 -23398,3500:478:1,8,-57,0,0,-0.00544695 -23399,3500:478:2,8.5,-57,0,0,-0.00544816 -23400,3500:479:1,9,-57,0,0,-0.00544935 -23401,3500:479:2,9.5,-57,0,0,-0.00545057 -23402,3501:370:1,10,-57,0,0,-0.005453 -23403,3501:370:2,10.5,-57,0,0,-0.00545541 -23404,3501:371:1,11,-57,0,0,-0.00545663 -23405,3501:371:2,11.5,-57,0,0,-0.00545541 -23406,3501:372:1,12,-57,0,0,-0.00545423 -23407,3501:372:2,12.5,-57,0,0,-0.00545423 -23408,3501:373:1,13,-57,0,0,-0.00545423 -23409,3501:373:2,13.5,-57,0,0,-0.005453 -23410,3501:374:1,14,-57,0,0,-0.00545423 -23411,3501:374:2,14.5,-57,0,0,-0.005453 -23412,3501:475:1,15,-57,0,0,-0.00544695 -23413,3501:475:2,15.5,-57,0,0,-0.00544211 -23414,3501:476:1,16,-57,0,0,-0.0054385 -23415,3501:476:2,16.5,-57,0,0,-0.00543606 -23416,3501:477:1,17,-57,0,0,-0.00543363 -23417,3501:477:2,17.5,-57,0,0,-0.00542881 -23418,3501:478:1,18,-57,0,0,-0.00542281 -23419,3501:478:2,18.5,-57,0,0,-0.00541679 -23420,3501:479:1,19,-57,0,0,-0.00541796 -23421,3501:479:2,19.5,-57,0,0,-0.00542763 -23422,3502:370:1,20,-57,0,0,-0.00543002 -23423,3502:370:2,20.5,-57,0,0,-0.00543002 -23424,3502:371:1,21,-57,0,0,-0.00542881 -23425,3502:371:2,21.5,-57,0,0,-0.0054252 -23426,3502:372:1,22,-57,0,0,-0.0054216 -23427,3502:372:2,22.5,-57,0,0,-0.00542039 -23428,3502:373:1,23,-57,0,0,-0.0054216 -23429,3502:373:2,23.5,-57,0,0,-0.0054216 -23430,3502:374:1,24,-57,0,0,-0.0054216 -23431,3502:374:2,24.5,-57,0,0,-0.00542039 -23432,3502:475:1,25,-57,0,0,-0.00541917 -23433,3502:475:2,25.5,-57,0,0,-0.00542281 -23434,3502:476:1,26,-57,0,0,-0.00544333 -23435,3502:476:2,26.5,-57,0,0,-0.00545423 -23436,3502:477:1,27,-57,0,0,-0.00547119 -23437,3502:477:2,27.5,-57,0,0,-0.00549557 -23438,3502:478:1,28,-57,0,0,-0.00551756 -23439,3502:478:2,28.5,-57,0,0,-0.00552617 -23440,3502:479:1,29,-57,0,0,-0.0055188 -23441,3502:479:2,29.5,-57,0,0,-0.00550658 -23442,3503:370:1,30,-57,0,0,-0.00550046 -23443,3503:370:2,30.5,-57,0,0,-0.00549923 -23444,3503:371:1,31,-57,0,0,-0.00549557 -23445,3503:371:2,31.5,-57,0,0,-0.00548701 -23446,3503:372:1,32,-57,0,0,-0.00547605 -23447,3503:372:2,32.5,-57,0,0,-0.00544333 -23448,3503:373:1,33,-57,0,0,-0.00543002 -23449,3503:373:2,33.5,-57,0,0,-0.00543363 -23450,3503:374:1,34,-57,0,0,-0.00543606 -23451,3503:374:2,34.5,-57,0,0,-0.00543728 -23452,3503:475:1,35,-57,0,0,-0.0054385 -23453,3503:475:2,35.5,-57,0,0,-0.00543968 -23454,3503:476:1,36,-57,0,0,-0.00543968 -23455,3503:476:2,36.5,-57,0,0,-0.00544089 -23456,3503:477:1,37,-57,0,0,-0.00543968 -23457,3503:477:2,37.5,-57,0,0,-0.00543968 -23458,3503:478:1,38,-57,0,0,-0.0054385 -23459,3503:478:2,38.5,-57,0,0,-0.00543728 -23460,3503:479:1,39,-57,0,0,-0.00543728 -23461,3503:479:2,39.5,-57,0,0,-0.00543485 -23462,3504:370:1,40,-57,0,0,-0.00543245 -23463,3504:370:2,40.5,-57,0,0,-0.00543363 -23464,3504:371:1,41,-57,0,0,-0.00543606 -23465,3504:371:2,41.5,-57,0,0,-0.00544089 -23466,3504:372:1,42,-57,0,0,-0.00544573 -23467,3504:372:2,42.5,-57,0,0,-0.00544935 -23468,3504:373:1,43,-57,0,0,-0.00545541 -23469,3504:373:2,43.5,-57,0,0,-0.00544089 -23470,3504:374:1,44,-57,0,0,-0.00543363 -23471,3504:374:2,44.5,-57,0,0,-0.00543363 -23472,3504:475:1,45,-57,0,0,-0.00543606 -23473,3504:475:2,45.5,-57,0,0,-0.00543968 -23474,3504:476:1,46,-57,0,0,-0.00543968 -23475,3504:476:2,46.5,-57,0,0,-0.00543968 -23476,3504:477:1,47,-57,0,0,-0.00544089 -23477,3504:477:2,47.5,-57,0,0,-0.00544089 -23478,3504:478:1,48,-57,0,0,-0.00543968 -23479,3504:478:2,48.5,-57,0,0,-0.00543968 -23480,3504:479:1,49,-57,0,0,-0.00543968 -23481,3504:479:2,49.5,-57,0,0,-0.00544089 -23482,3505:370:1,50,-57,0,0,-0.00544211 -23483,3505:370:2,50.5,-57,0,0,-0.00544451 -23484,3505:371:1,51,-57,0,0,-0.00544573 -23485,3505:371:2,51.5,-57,0,0,-0.00544695 -23486,3505:372:1,52,-57,0,0,-0.00544695 -23487,3505:372:2,52.5,-57,0,0,-0.00544816 -23488,3505:373:1,53,-57,0,0,-0.00544935 -23489,3505:373:2,53.5,-57,0,0,-0.00545057 -23490,3505:374:1,54,-57,0,0,-0.00545057 -23491,3505:374:2,54.5,-57,0,0,-0.00544935 -23492,3505:475:1,55,-57,0,0,-0.00544935 -23493,3505:475:2,55.5,-57,0,0,-0.00545179 -23494,3505:476:1,56,-57,0,0,-0.00545785 -23495,3505:476:2,56.5,-57,0,0,-0.005453 -23496,3505:477:1,57,-57,0,0,-0.00545057 -23497,3505:477:2,57.5,-57,0,0,-0.00545057 -23498,3505:478:1,58,-57,0,0,-0.00545179 -23499,3505:478:2,58.5,-57,0,0,-0.005453 -23500,3505:479:1,59,-57,0,0,-0.00545179 -23501,3505:479:2,59.5,-57,0,0,-0.00545179 -23502,3506:370:1,60,-57,0,0,-0.00545179 -23503,3506:370:2,60.5,-57,0,0,-0.00545423 -23504,3506:371:1,61,-57,0,0,-0.00545541 -23505,3506:371:2,61.5,-57,0,0,-0.00545663 -23506,3506:372:1,62,-57,0,0,-0.00545423 -23507,3506:372:2,62.5,-57,0,0,-0.00545423 -23508,3506:373:1,63,-57,0,0,-0.00545423 -23509,3506:373:2,63.5,-57,0,0,-0.00545541 -23510,3506:374:1,64,-57,0,0,-0.00545541 -23511,3506:374:2,64.5,-57,0,0,-0.00545663 -23512,3506:475:1,65,-57,0,0,-0.00545663 -23513,3506:475:2,65.5,-57,0,0,-0.00545785 -23514,3506:476:1,66,-57,0,0,-0.00545907 -23515,3506:476:2,66.5,-57,0,0,-0.00546026 -23516,3506:477:1,67,-57,0,0,-0.00546026 -23517,3506:477:2,67.5,-57,0,0,-0.00546026 -23518,3506:478:1,68,-57,0,0,-0.00545785 -23519,3506:478:2,68.5,-57,0,0,-0.00545907 -23520,3506:479:1,69,-57,0,0,-0.00546392 -23521,3506:479:2,69.5,-57,0,0,-0.00546148 -23522,3507:370:1,70,-57,0,0,-0.00545423 -23523,3507:370:2,70.5,-57,0,0,-0.00545907 -23524,3507:371:1,71,-57,0,0,-0.00547972 -23525,3507:371:2,71.5,-57,0,0,-0.00546148 -23526,3507:372:1,72,-57,0,0,-0.00544935 -23527,3507:372:2,72.5,-57,0,0,-0.00545423 -23528,3507:373:2,73.5,-57,0,0,-0.00546511 -23529,3507:374:1,74,-57,0,0,-0.00550534 -23530,3507:374:2,74.5,-57,0,0,-0.00553108 -23531,3507:475:1,75,-57,0,0,-0.00559782 -23532,3507:475:2,75.5,-57,0,0,-0.00553352 -23533,3507:476:1,76,-57,0,0,-0.00545907 -23534,3507:476:2,76.5,-57,0,0,-0.00544573 -23535,3507:477:1,77,-57,0,0,-0.00544451 -23536,3507:477:2,77.5,-57,0,0,-0.00546511 -23537,3507:478:1,78,-57,0,0,-0.00552003 -23538,3507:478:2,78.5,-57,0,0,-0.00548701 -23539,3507:479:1,79,-57,0,0,-0.00546026 -23540,3507:479:2,79.5,-57,0,0,-0.00544573 -23541,3508:370:1,80,-57,0,0,-0.00545541 -23542,3508:370:2,80.5,-57,0,0,-0.00547486 -23543,3508:371:1,81,-57,0,0,-0.00546633 -23544,3508:371:2,81.5,-57,0,0,-0.00545179 -23545,3508:372:1,82,-57,0,0,-0.00547241 -23546,3508:372:2,82.5,-57,0,0,-0.00554832 -23547,3508:373:1,83,-57,0,0,-0.00553968 -23548,3508:373:2,83.5,-57,0,0,-0.00549434 -23549,3508:374:1,84,-57,0,0,-0.00543968 -23550,3508:374:2,84.5,-57,0,0,-0.00544573 -23551,3508:475:1,85,-57,0,0,-0.00545057 -23552,3508:475:2,85.5,-57,0,0,-0.00545179 -23553,3508:476:1,86,-57,0,0,-0.00545179 -23554,3508:476:2,86.5,-57,0,0,-0.00545179 -23555,3508:477:1,87,-57,0,0,-0.00545057 -23556,3508:477:2,87.5,-57,0,0,-0.00544816 -23557,3508:478:1,88,-57,0,0,-0.00544333 -23558,3508:478:2,88.5,-57,0,0,-0.00544333 -23559,3508:479:1,89,-57,0,0,-0.0055545 -23560,3508:479:2,89.5,-57,0,0,-0.00558914 -23561,3509:370:1,90,-57,0,0,-0.00560158 -23562,3509:370:2,90.5,-57,0,0,-0.00570837 -23563,3509:371:1,91,-57,0,0,-0.00580948 -23564,3509:371:2,91.5,-57,0,0,-0.00575677 -23565,3509:372:1,92,-57,0,0,-0.00570837 -23566,3509:372:2,92.5,-57,0,0,-0.00566165 -23567,3509:373:1,93,-57,0,0,-0.0055434 -23568,3509:373:2,93.5,-57,0,0,-0.00545423 -23569,3509:374:1,94,-57,0,0,-0.00546026 -23570,3509:374:2,94.5,-57,0,0,-0.0054627 -23571,3509:475:1,95,-57,0,0,-0.00546511 -23572,3509:475:2,95.5,-57,0,0,-0.00546755 -23573,3509:476:1,96,-57,0,0,-0.00546878 -23574,3509:476:2,96.5,-57,0,0,-0.00547119 -23575,3509:477:1,97,-57,0,0,-0.00547241 -23576,3509:477:2,97.5,-57,0,0,-0.00547241 -23577,3509:478:1,98,-57,0,0,-0.00547364 -23578,3509:478:2,98.5,-57,0,0,-0.00547486 -23579,3509:479:1,99,-57,0,0,-0.00547486 -23580,3509:479:2,99.5,-57,0,0,-0.00547486 -23581,3510:370:1,100,-57,0,0,-0.00547486 -23582,3510:370:2,100.5,-57,0,0,-0.00547364 -23583,3510:371:1,101,-57,0,0,-0.00547241 -23584,3510:371:2,101.5,-57,0,0,-0.00547119 -23585,3510:372:1,102,-57,0,0,-0.00547 -23586,3510:372:2,102.5,-57,0,0,-0.00546633 -23587,3510:373:1,103,-57,0,0,-0.0054627 -23588,3510:373:2,103.5,-57,0,0,-0.00546392 -23589,3510:374:1,104,-57,0,0,-0.0054627 -23590,3510:374:2,104.5,-57,0,0,-0.00546392 -23591,3510:475:1,105,-57,0,0,-0.00546392 -23592,3510:475:2,105.5,-57,0,0,-0.00546148 -23593,3510:476:1,106,-57,0,0,-0.00546026 -23594,3510:476:2,106.5,-57,0,0,-0.00546026 -23595,3510:477:1,107,-57,0,0,-0.00546026 -23596,3510:477:2,107.5,-57,0,0,-0.00546148 -23597,3510:478:1,108,-57,0,0,-0.00546026 -23598,3510:478:2,108.5,-57,0,0,-0.00545907 -23599,3510:479:1,109,-57,0,0,-0.00545907 -23600,3510:479:2,109.5,-57,0,0,-0.00545785 -23601,3511:370:1,110,-57,0,0,-0.00545541 -23602,3511:370:2,110.5,-57,0,0,-0.00545423 -23603,3511:371:1,111,-57,0,0,-0.00545423 -23604,3511:371:2,111.5,-57,0,0,-0.00545541 -23605,3511:372:1,112,-57,0,0,-0.00545541 -23606,3511:372:2,112.5,-57,0,0,-0.00545423 -23607,3511:373:1,113,-57,0,0,-0.00545057 -23608,3511:373:2,113.5,-57,0,0,-0.00545423 -23609,3511:374:1,114,-57,0,0,-0.0055941 -23610,3511:374:2,114.5,-57,0,0,-0.00575165 -23611,3511:475:1,115,-57,0,0,-0.00597045 -23612,3511:475:2,115.5,-57,0,0,-0.00584833 -23613,3511:476:1,116,-57,0,0,-0.00550288 -23614,3511:476:2,116.5,-57,0,0,-0.00543363 -23615,3511:477:1,117,-57,0,0,-0.00548824 -23616,3511:477:2,117.5,-57,0,0,-0.00571092 -23617,3511:478:1,118,-57,0,0,-0.00606948 -23618,3511:478:2,118.5,-57,0,0,-0.00621696 -23619,3511:479:1,119,-57,0,0,-0.00627808 -23620,3511:479:2,119.5,-57,0,0,-0.00634118 -23621,3512:370:1,120,-57,0,0,-0.00644067 -23622,3512:370:2,120.5,-57,0,0,-0.00669925 -23623,3512:371:1,121,-57,0,0,-0.00727242 -23624,3512:371:2,121.5,-57,0,0,-0.00785649 -23625,3512:372:1,122,-57,0,0,-0.00790737 -23626,3512:372:2,122.5,-57,0,0,-0.00794799 -23627,3512:373:1,123,-57,0,0,-0.00802627 -23628,3512:373:2,123.5,-57,0,0,-0.00811972 -23629,3512:374:1,124,-57,0,0,-0.00817238 -23630,3512:374:2,124.5,-57,0,0,-0.00820154 -23631,3512:475:1,125,-57,0,0,-0.00821432 -23632,3512:475:2,125.5,-57,0,0,-0.00820522 -23633,3512:476:1,126,-57,0,0,-0.0081651 -23634,3512:476:2,126.5,-57,0,0,-0.00808008 -23635,3512:477:1,127,-57,0,0,-0.00793208 -23636,3512:477:2,127.5,-57,0,0,-0.00783899 -23637,3512:478:1,128,-57,0,0,-0.00784598 -23638,3512:478:2,128.5,-57,0,0,-0.00769377 -23639,3512:479:1,129,-57,0,0,-0.00741135 -23640,3512:479:2,129.5,-57,0,0,-0.00741956 -23641,3513:370:1,130,-57,0,0,-0.00763576 -23642,3513:370:2,130.5,-57,0,0,-0.00770062 -23643,3513:371:1,131,-57,0,0,-0.00770062 -23644,3513:371:2,131.5,-57,0,0,-0.00810351 -23645,3513:372:1,132,-57,0,0,-0.00854286 -23646,3513:372:2,132.5,-57,0,0,-0.00858479 -23647,3513:373:1,133,-57,0,0,-0.00830636 -23648,3513:373:2,133.5,-57,0,0,-0.00678926 -23649,3513:374:1,134,-57,0,0,-0.00601709 -23650,3513:374:2,134.5,-57,0,0,-0.00679078 -23651,3513:475:1,135,-57,0,0,-0.00688968 -23652,3513:475:2,135.5,-57,0,0,-0.00651558 -23653,3513:476:1,136,-57,0,0,-0.00626413 -23654,3513:476:2,136.5,-57,0,0,-0.00630746 -23655,3513:477:1,137,-57,0,0,-0.0063652 -23656,3513:477:2,137.5,-57,0,0,-0.00582885 -23657,3513:478:1,138,-57,0,0,-0.00553968 -23658,3513:478:2,138.5,-57,0,0,-0.00554216 -23659,3513:479:1,139,-57,0,0,-0.00552494 -23660,3513:479:2,139.5,-57,0,0,-0.00557672 -23661,3514:370:1,140,-57,0,0,-0.0057236 -23662,3514:370:2,140.5,-57,0,0,-0.0058835 -23663,3514:371:1,141,-57,0,0,-0.00600107 -23664,3514:371:2,141.5,-57,0,0,-0.00611958 -23665,3514:372:1,142,-57,0,0,-0.00627527 -23666,3514:372:2,142.5,-57,0,0,-0.00643494 -23667,3514:373:1,143,-57,0,0,-0.0063285 -23668,3514:373:2,143.5,-57,0,0,-0.00602779 -23669,3514:374:1,144,-57,0,0,-0.00628226 -23670,3514:374:2,144.5,-57,0,0,-0.00670671 -23671,3514:475:1,145,-57,0,0,-0.00679078 -23672,3514:475:2,145.5,-57,0,0,-0.00669775 -23673,3514:476:1,146,-57,0,0,-0.00642495 -23674,3514:476:2,146.5,-57,0,0,-0.00595719 -23675,3514:477:1,147,-57,0,0,-0.00564405 -23676,3514:477:2,147.5,-57,0,0,-0.00562777 -23677,3514:478:1,148,-57,0,0,-0.00561653 -23678,3514:478:2,148.5,-57,0,0,-0.00558914 -23679,3514:479:1,149,-57,0,0,-0.00556682 -23680,3514:479:2,149.5,-57,0,0,-0.00557797 -23681,3515:370:1,150,-57,0,0,-0.00557797 -23682,3515:370:2,150.5,-57,0,0,-0.00557672 -23683,3515:371:1,151,-57,0,0,-0.00557922 -23684,3515:371:2,151.5,-57,0,0,-0.00556188 -23685,3515:372:1,152,-57,0,0,-0.00553476 -23686,3515:372:2,152.5,-57,0,0,-0.0055225 -23687,3515:373:1,153,-57,0,0,-0.00551637 -23688,3515:373:2,153.5,-57,0,0,-0.00552494 -23689,3515:374:1,154,-57,0,0,-0.00552127 -23690,3515:374:2,154.5,-57,0,0,-0.00550534 -23691,3515:475:1,155,-57,0,0,-0.00550165 -23692,3515:475:2,155.5,-57,0,0,-0.00550046 -23693,3515:476:1,156,-57,0,0,-0.00548824 -23694,3515:476:2,156.5,-57,0,0,-0.00547486 -23695,3515:477:1,157,-57,0,0,-0.00547486 -23696,3515:477:2,157.5,-57,0,0,-0.00547605 -23697,3515:478:1,158,-57,0,0,-0.00547486 -23698,3515:478:2,158.5,-57,0,0,-0.00547241 -23699,3515:479:1,159,-57,0,0,-0.00547241 -23700,3515:479:2,159.5,-57,0,0,-0.00547364 -23701,3516:370:1,160,-57,0,0,-0.00547364 -23702,3516:370:2,160.5,-57,0,0,-0.00547486 -23703,3516:371:1,161,-57,0,0,-0.00547486 -23704,3516:371:2,161.5,-57,0,0,-0.00547364 -23705,3516:372:1,162,-57,0,0,-0.00547364 -23706,3516:372:2,162.5,-57,0,0,-0.00547486 -23707,3516:373:1,163,-57,0,0,-0.00547605 -23708,3516:373:2,163.5,-57,0,0,-0.00547605 -23709,3516:374:1,164,-57,0,0,-0.00547727 -23710,3516:374:2,164.5,-57,0,0,-0.00547972 -23711,3516:475:1,165,-57,0,0,-0.00548701 -23712,3516:475:2,165.5,-57,0,0,-0.00549557 -23713,3516:476:1,166,-57,0,0,-0.005498 -23714,3516:476:2,166.5,-57,0,0,-0.00550288 -23715,3516:477:1,167,-57,0,0,-0.00550534 -23716,3516:477:2,167.5,-57,0,0,-0.00551147 -23717,3516:478:1,168,-57,0,0,-0.0056028 -23718,3516:478:2,168.5,-57,0,0,-0.00576059 -23719,3516:479:1,169,-57,0,0,-0.0060372 -23720,3516:479:2,169.5,-57,0,0,-0.00620314 -23721,3517:370:1,170,-57,0,0,-0.00628226 -23722,3517:370:2,170.5,-57,0,0,-0.00628085 -23723,3517:371:1,171,-57,0,0,-0.00629625 -23724,3517:371:2,171.5,-57,0,0,-0.00658989 -23725,3517:372:1,172,-57,0,0,-0.00676363 -23726,3517:372:2,172.5,-57,0,0,-0.00642351 -23727,3517:373:1,173,-57,0,0,-0.00602513 -23728,3517:373:2,173.5,-57,0,0,-0.00574526 -23729,3517:374:1,174,-57,0,0,-0.00556932 -23730,3517:374:2,174.5,-57,0,0,-0.0055434 -23731,3517:475:1,175,-57,0,0,-0.00579916 -23732,3517:475:2,175.5,-57,0,0,-0.00693582 -23733,3517:476:1,176,-57,0,0,-0.00851624 -23734,3517:476:2,176.5,-57,0,0,-0.00895419 -23735,3517:477:1,177,-57,0,0,-0.00802802 -23736,3517:477:2,177.5,-57,0,0,-0.00699778 -23737,3517:478:1,178,-57,0,0,-0.00683318 -23738,3517:478:2,178.5,-57,0,0,-0.00753947 -23739,3517:479:1,179,-57,0,0,-0.00912342 -23740,3517:479:2,179.5,-57,0,0,-0.00972434 -23741,3518:370:1,180,-57,0,0,-0.00875096 -23742,5518:360:3,-180,-56.5,0,0,-0.011515 -23743,5517:469:4,-179.5,-56.5,0,0,-0.00954593 -23744,5517:469:3,-179,-56.5,0,0,-0.0088727 -23745,5517:468:4,-178.5,-56.5,0,0,-0.00895218 -23746,5517:468:3,-178,-56.5,0,0,-0.00903841 -23747,5517:467:4,-177.5,-56.5,0,0,-0.00890838 -23748,5517:467:3,-177,-56.5,0,0,-0.00879201 -23749,5517:466:4,-176.5,-56.5,0,0,-0.00880183 -23750,5517:466:3,-176,-56.5,0,0,-0.00887469 -23751,5517:465:4,-175.5,-56.5,0,0,-0.00883325 -23752,5517:465:3,-175,-56.5,0,0,-0.0086193 -23753,5517:364:4,-174.5,-56.5,0,0,-0.00844444 -23754,5517:364:3,-174,-56.5,0,0,-0.00832671 -23755,5517:363:4,-173.5,-56.5,0,0,-0.00827496 -23756,5517:363:3,-173,-56.5,0,0,-0.00826759 -23757,5517:362:4,-172.5,-56.5,0,0,-0.0084897 -23758,5517:362:3,-172,-56.5,0,0,-0.00872755 -23759,5517:361:4,-171.5,-56.5,0,0,-0.00871005 -23760,5517:361:3,-171,-56.5,0,0,-0.00841624 -23761,5517:360:4,-170.5,-56.5,0,0,-0.00825288 -23762,5517:360:3,-170,-56.5,0,0,-0.00818878 -23763,5516:469:4,-169.5,-56.5,0,0,-0.00794799 -23764,5516:469:3,-169,-56.5,0,0,-0.00746262 -23765,5516:468:4,-168.5,-56.5,0,0,-0.00729513 -23766,5516:468:3,-168,-56.5,0,0,-0.00729191 -23767,5516:467:4,-167.5,-56.5,0,0,-0.00728538 -23768,5516:467:3,-167,-56.5,0,0,-0.00726112 -23769,5516:466:4,-166.5,-56.5,0,0,-0.00696829 -23770,5516:466:3,-166,-56.5,0,0,-0.00683624 -23771,5516:465:4,-165.5,-56.5,0,0,-0.00673061 -23772,5516:465:3,-165,-56.5,0,0,-0.00667692 -23773,5516:364:4,-164.5,-56.5,0,0,-0.00669925 -23774,5516:364:3,-164,-56.5,0,0,-0.00676515 -23775,5516:363:4,-163.5,-56.5,0,0,-0.00679682 -23776,5516:363:3,-163,-56.5,0,0,-0.00680892 -23777,5516:362:4,-162.5,-56.5,0,0,-0.00688814 -23778,5516:362:3,-162,-56.5,0,0,-0.00703838 -23779,5516:361:4,-161.5,-56.5,0,0,-0.00717919 -23780,5516:361:3,-161,-56.5,0,0,-0.00725141 -23781,5516:360:4,-160.5,-56.5,0,0,-0.00730162 -23782,5516:360:3,-160,-56.5,0,0,-0.00734729 -23783,5515:469:4,-159.5,-56.5,0,0,-0.00738828 -23784,5515:469:3,-159,-56.5,0,0,-0.00742783 -23785,5515:468:4,-158.5,-56.5,0,0,-0.00745599 -23786,5515:468:3,-158,-56.5,0,0,-0.00748095 -23787,5515:467:4,-157.5,-56.5,0,0,-0.00752268 -23788,5515:467:3,-157,-56.5,0,0,-0.00756635 -23789,5515:466:4,-156.5,-56.5,0,0,-0.00761369 -23790,5515:466:3,-156,-56.5,0,0,-0.00759334 -23791,5515:465:4,-155.5,-56.5,0,0,-0.00759334 -23792,5515:465:3,-155,-56.5,0,0,-0.00759504 -23793,5515:364:4,-154.5,-56.5,0,0,-0.00756132 -23794,5515:364:3,-154,-56.5,0,0,-0.00743944 -23795,5515:363:4,-153.5,-56.5,0,0,-0.00735543 -23796,5515:363:3,-153,-56.5,0,0,-0.00730649 -23797,5515:362:4,-152.5,-56.5,0,0,-0.00735708 -23798,5515:362:3,-152,-56.5,0,0,-0.00742622 -23799,5515:361:4,-151.5,-56.5,0,0,-0.00746927 -23800,5515:361:3,-151,-56.5,0,0,-0.0075512 -23801,5515:360:4,-150.5,-56.5,0,0,-0.00796216 -23802,5515:360:3,-150,-56.5,0,0,-0.00831562 -23803,5514:469:4,-149.5,-56.5,0,0,-0.00850865 -23804,5514:469:3,-149,-56.5,0,0,-0.00843125 -23805,5514:468:4,-148.5,-56.5,0,0,-0.008218 -23806,5514:468:3,-148,-56.5,0,0,-0.00792852 -23807,5514:467:4,-147.5,-56.5,0,0,-0.00756466 -23808,5514:467:3,-147,-56.5,0,0,-0.00757309 -23809,5514:466:4,-146.5,-56.5,0,0,-0.00797456 -23810,5514:466:3,-146,-56.5,0,0,-0.00802267 -23811,5514:465:4,-145.5,-56.5,0,0,-0.00794799 -23812,5514:465:3,-145,-56.5,0,0,-0.00789507 -23813,5514:364:4,-144.5,-56.5,0,0,-0.00804593 -23814,5514:364:3,-144,-56.5,0,0,-0.00852191 -23815,5514:363:4,-143.5,-56.5,0,0,-0.0086559 -23816,5514:363:3,-143,-56.5,0,0,-0.00810169 -23817,5514:362:4,-142.5,-56.5,0,0,-0.00815057 -23818,5514:362:3,-142,-56.5,0,0,-0.00852574 -23819,5514:361:4,-141.5,-56.5,0,0,-0.00867134 -23820,5514:361:3,-141,-56.5,0,0,-0.00865202 -23821,5514:360:4,-140.5,-56.5,0,0,-0.00866556 -23822,5514:360:3,-140,-56.5,0,0,-0.00877439 -23823,5513:469:4,-139.5,-56.5,0,0,-0.008851 -23824,5513:469:3,-139,-56.5,0,0,-0.00880183 -23825,5513:468:4,-138.5,-56.5,0,0,-0.00898415 -23826,5513:468:3,-138,-56.5,0,0,-0.00975039 -23827,5513:467:4,-137.5,-56.5,0,0,-0.00993928 -23828,5513:467:3,-137,-56.5,0,0,-0.00984438 -23829,5513:466:4,-136.5,-56.5,0,0,-0.00929595 -23830,5513:466:3,-136,-56.5,0,0,-0.00885491 -23831,5513:465:4,-135.5,-56.5,0,0,-0.00881555 -23832,5513:465:3,-135,-56.5,0,0,-0.00903036 -23833,5513:364:4,-134.5,-56.5,0,0,-0.00983781 -23834,5513:364:3,-134,-56.5,0,0,-0.0103398 -23835,5513:363:4,-133.5,-56.5,0,0,-0.0104069 -23836,5513:363:3,-133,-56.5,0,0,-0.0103006 -23837,5513:362:4,-132.5,-56.5,0,0,-0.0104862 -23838,5513:362:3,-132,-56.5,0,0,-0.0106348 -23839,5513:361:4,-131.5,-56.5,0,0,-0.0106633 -23840,5513:361:3,-131,-56.5,0,0,-0.0106585 -23841,5513:360:4,-130.5,-56.5,0,0,-0.0106609 -23842,5513:360:3,-130,-56.5,0,0,-0.0107398 -23843,5512:469:4,-129.5,-56.5,0,0,-0.0109383 -23844,5512:469:3,-129,-56.5,0,0,-0.0113186 -23845,5512:468:4,-128.5,-56.5,0,0,-0.0115099 -23846,5512:468:3,-128,-56.5,0,0,-0.011515 -23847,5512:467:4,-127.5,-56.5,0,0,-0.011479 -23848,5512:467:3,-127,-56.5,0,0,-0.0114893 -23849,5512:466:4,-126.5,-56.5,0,0,-0.0116574 -23850,5512:466:3,-126,-56.5,0,0,-0.0118519 -23851,5512:465:4,-125.5,-56.5,0,0,-0.011913 -23852,5512:465:3,-125,-56.5,0,0,-0.0117832 -23853,5512:364:4,-124.5,-56.5,0,0,-0.0115459 -23854,5512:364:3,-124,-56.5,0,0,-0.0113744 -23855,5512:363:4,-123.5,-56.5,0,0,-0.011243 -23856,5512:363:3,-123,-56.5,0,0,-0.0110143 -23857,5512:362:4,-122.5,-56.5,0,0,-0.0108871 -23858,5512:362:3,-122,-56.5,0,0,-0.0109163 -23859,5512:361:4,-121.5,-56.5,0,0,-0.011076 -23860,5512:361:3,-121,-56.5,0,0,-0.0111853 -23861,5512:360:4,-120.5,-56.5,0,0,-0.0114355 -23862,5512:360:3,-120,-56.5,0,0,-0.0119316 -23863,5511:469:4,-119.5,-56.5,0,0,-0.0121851 -23864,5511:469:3,-119,-56.5,0,0,-0.0121226 -23865,5511:468:4,-118.5,-56.5,0,0,-0.0119905 -23866,5511:468:3,-118,-56.5,0,0,-0.0122316 -23867,5511:467:4,-117.5,-56.5,0,0,-0.0126319 -23868,5511:467:3,-117,-56.5,0,0,-0.0128803 -23869,5511:466:4,-116.5,-56.5,0,0,-0.0130514 -23870,5511:466:3,-116,-56.5,0,0,-0.0132606 -23871,5511:465:4,-115.5,-56.5,0,0,-0.0134911 -23872,5511:465:3,-115,-56.5,0,0,-0.0132962 -23873,5511:364:4,-114.5,-56.5,0,0,-0.0133708 -23874,5511:364:3,-114,-56.5,0,0,-0.0136921 -23875,5511:363:4,-113.5,-56.5,0,0,-0.0137689 -23876,5511:363:3,-113,-56.5,0,0,-0.0139178 -23877,5511:362:4,-112.5,-56.5,0,0,-0.0143066 -23878,5511:362:3,-112,-56.5,0,0,-0.0146178 -23879,5511:361:4,-111.5,-56.5,0,0,-0.0147033 -23880,5511:361:3,-111,-56.5,0,0,-0.0145199 -23881,5511:360:4,-110.5,-56.5,0,0,-0.0136828 -23882,5511:360:3,-110,-56.5,0,0,-0.0127941 -23883,5510:469:4,-109.5,-56.5,0,0,-0.0127941 -23884,5510:469:3,-109,-56.5,0,0,-0.0130573 -23885,5510:468:4,-108.5,-56.5,0,0,-0.0136645 -23886,5510:468:3,-108,-56.5,0,0,-0.0139489 -23887,5510:467:4,-107.5,-56.5,0,0,-0.0140273 -23888,5510:467:3,-107,-56.5,0,0,-0.0143066 -23889,5510:466:4,-106.5,-56.5,0,0,-0.0144646 -23890,5510:466:3,-106,-56.5,0,0,-0.0143484 -23891,5510:465:4,-105.5,-56.5,0,0,-0.0140367 -23892,5510:465:3,-105,-56.5,0,0,-0.0136186 -23893,5510:364:4,-104.5,-56.5,0,0,-0.0130514 -23894,5510:364:3,-104,-56.5,0,0,-0.012754 -23895,5510:363:4,-103.5,-56.5,0,0,-0.0126829 -23896,5510:363:3,-103,-56.5,0,0,-0.012483 -23897,5510:362:4,-102.5,-56.5,0,0,-0.0121633 -23898,5510:362:3,-102,-56.5,0,0,-0.0118255 -23899,5510:361:4,-101.5,-56.5,0,0,-0.011694 -23900,5510:361:3,-101,-56.5,0,0,-0.0118413 -23901,5510:360:4,-100.5,-56.5,0,0,-0.0118891 -23902,5510:360:3,-100,-56.5,0,0,-0.0117359 -23903,5509:469:4,-99.5,-56.5,0,0,-0.0116366 -23904,5509:469:3,-99,-56.5,0,0,-0.0115227 -23905,5509:468:4,-98.5,-56.5,0,0,-0.0112808 -23906,5509:468:3,-98,-56.5,0,0,-0.0109212 -23907,5509:467:4,-97.5,-56.5,0,0,-0.0107566 -23908,5509:467:3,-97,-56.5,0,0,-0.0109309 -23909,5509:466:4,-96.5,-56.5,0,0,-0.0112732 -23910,5509:466:3,-96,-56.5,0,0,-0.0114407 -23911,5509:465:4,-95.5,-56.5,0,0,-0.0113693 -23912,5509:465:3,-95,-56.5,0,0,-0.0111554 -23913,5509:364:4,-94.5,-56.5,0,0,-0.0110094 -23914,5509:364:3,-94,-56.5,0,0,-0.0110217 -23915,5509:363:4,-93.5,-56.5,0,0,-0.011002 -23916,5509:363:3,-93,-56.5,0,0,-0.0109432 -23917,5509:362:4,-92.5,-56.5,0,0,-0.0109921 -23918,5509:362:3,-92,-56.5,0,0,-0.0111604 -23919,5509:361:4,-91.5,-56.5,0,0,-0.0113414 -23920,5509:361:3,-91,-56.5,0,0,-0.0112782 -23921,5509:360:4,-90.5,-56.5,0,0,-0.0108773 -23922,5509:360:3,-90,-56.5,0,0,-0.0112004 -23923,5508:469:4,-89.5,-56.5,0,0,-0.011138 -23924,5508:469:3,-89,-56.5,0,0,-0.0111979 -23925,5508:468:4,-88.5,-56.5,0,0,-0.011382 -23926,5508:468:3,-88,-56.5,0,0,-0.0135244 -23927,5508:467:4,-87.5,-56.5,0,0,-0.0142746 -23928,5508:467:3,-87,-56.5,0,0,-0.0143162 -23929,5508:466:4,-86.5,-56.5,0,0,-0.0140021 -23930,5508:466:3,-86,-56.5,0,0,-0.0135093 -23931,5508:465:4,-85.5,-56.5,0,0,-0.0128889 -23932,5508:465:3,-85,-56.5,0,0,-0.0121226 -23933,5508:364:4,-84.5,-56.5,0,0,-0.0119316 -23934,5508:364:3,-84,-56.5,0,0,-0.0118175 -23935,5508:363:4,-83.5,-56.5,0,0,-0.0120281 -23936,5508:363:3,-83,-56.5,0,0,-0.0123995 -23937,5508:362:4,-82.5,-56.5,0,0,-0.012886 -23938,5508:362:3,-82,-56.5,0,0,-0.0130427 -23939,5508:361:4,-81.5,-56.5,0,0,-0.0134459 -23940,5508:361:3,-81,-56.5,0,0,-0.0135032 -23941,5508:360:4,-80.5,-56.5,0,0,-0.013069 -23942,5508:360:3,-80,-56.5,0,0,-0.0119183 -23943,5507:469:4,-79.5,-56.5,0,0,-0.00947382 -23944,5507:469:3,-79,-56.5,0,0,-0.00775913 -23945,5507:468:4,-78.5,-56.5,0,0,-0.00739651 -23946,5507:468:3,-78,-56.5,0,0,-0.00754951 -23947,5507:467:4,-77.5,-56.5,0,0,-0.00798877 -23948,5507:467:3,-77,-56.5,0,0,-0.00839378 -23949,5507:466:4,-76.5,-56.5,0,0,-0.00882539 -23950,5507:466:3,-76,-56.5,0,0,-0.00981153 -23951,5507:465:4,-75.5,-56.5,0,0,-0.0104651 -23952,5507:465:3,-75,-56.5,0,0,-0.0105968 -23953,5507:364:4,-74.5,-56.5,0,0,-0.0105732 -23954,5507:364:3,-74,-56.5,0,0,-0.0106681 -23955,5507:363:4,-73.5,-56.5,0,0,-0.0119077 -23956,5507:363:3,-73,-56.5,0,0,-0.0121443 -23957,5507:362:4,-72.5,-56.5,0,0,-0.0114509 -23958,5507:362:3,-72,-56.5,0,0,-0.0110735 -23959,5507:361:4,-71.5,-56.5,0,0,-0.0115305 -23960,5507:361:3,-71,-56.5,0,0,-0.0117806 -23961,5507:360:4,-70.5,-56.5,0,0,-0.0117333 -23962,5507:360:3,-70,-56.5,0,0,-0.0112379 -23963,5506:469:4,-69.5,-56.5,0,0,-0.0105803 -23964,5506:469:3,-69,-56.5,0,0,-0.00970912 -23965,5506:468:4,-68.5,-56.5,0,0,-0.00851432 -23966,5506:468:3,-68,-56.5,0,0,-0.00754618 -23967,5506:467:4,-67.5,-56.5,0,0,-0.00752606 -23968,5506:467:3,-67,-56.5,0,0,-0.00814149 -23969,5506:466:4,-66.5,-56.5,0,0,-0.00835086 -23970,5506:466:3,-66,-56.5,0,0,-0.00782154 -23971,5506:465:4,-65.5,-56.5,0,0,-0.0069035 -23972,5506:465:3,-65,-56.5,0,0,-0.00652717 -23973,5506:364:4,-64.5,-56.5,0,0,-0.00630463 -23974,5506:364:3,-64,-56.5,0,0,-0.0062516 -23975,5506:363:4,-63.5,-56.5,0,0,-0.0062516 -23976,5506:363:3,-63,-56.5,0,0,-0.00620592 -23977,5506:362:4,-62.5,-56.5,0,0,-0.00615372 -23978,5506:362:3,-62,-56.5,0,0,-0.00636662 -23979,5506:361:4,-61.5,-56.5,0,0,-0.00649963 -23980,5506:361:3,-61,-56.5,0,0,-0.00654172 -23981,5506:360:4,-60.5,-56.5,0,0,-0.00709659 -23982,5506:360:3,-60,-56.5,0,0,-0.00736528 -23983,5505:469:4,-59.5,-56.5,0,0,-0.00710291 -23984,5505:469:3,-59,-56.5,0,0,-0.00687282 -23985,5505:468:4,-58.5,-56.5,0,0,-0.00644784 -23986,5505:466:4,-56.5,-56.5,0,0,-0.00573254 -23987,5505:465:4,-55.5,-56.5,0,0,-0.00611415 -23988,5505:465:3,-55,-56.5,0,0,-0.00599305 -23989,5505:364:4,-54.5,-56.5,0,0,-0.00582755 -23990,5505:364:3,-54,-56.5,0,0,-0.00567803 -23991,5505:363:4,-53.5,-56.5,0,0,-0.00562026 -23992,5505:363:3,-53,-56.5,0,0,-0.00561154 -23993,5505:362:4,-52.5,-56.5,0,0,-0.0055545 -23994,5505:362:3,-52,-56.5,0,0,-0.00555201 -23995,5505:361:4,-51.5,-56.5,0,0,-0.00552494 -23996,5505:361:3,-51,-56.5,0,0,-0.00546511 -23997,5505:360:4,-50.5,-56.5,0,0,-0.00546392 -23998,5505:360:3,-50,-56.5,0,0,-0.00546392 -23999,5504:469:4,-49.5,-56.5,0,0,-0.0054627 -24000,5504:469:3,-49,-56.5,0,0,-0.00546026 -24001,5504:468:4,-48.5,-56.5,0,0,-0.00545907 -24002,5504:468:3,-48,-56.5,0,0,-0.00545907 -24003,5504:467:4,-47.5,-56.5,0,0,-0.00546026 -24004,5504:467:3,-47,-56.5,0,0,-0.00546026 -24005,5504:466:4,-46.5,-56.5,0,0,-0.00546026 -24006,5504:466:3,-46,-56.5,0,0,-0.00545907 -24007,5504:465:4,-45.5,-56.5,0,0,-0.00545907 -24008,5504:465:3,-45,-56.5,0,0,-0.00545907 -24009,5504:364:4,-44.5,-56.5,0,0,-0.00545785 -24010,5504:364:3,-44,-56.5,0,0,-0.00545785 -24011,5504:363:4,-43.5,-56.5,0,0,-0.00545663 -24012,5504:363:3,-43,-56.5,0,0,-0.00545541 -24013,5504:362:4,-42.5,-56.5,0,0,-0.005453 -24014,5504:362:3,-42,-56.5,0,0,-0.00545179 -24015,5504:361:4,-41.5,-56.5,0,0,-0.00544935 -24016,5504:361:3,-41,-56.5,0,0,-0.00544816 -24017,5504:360:4,-40.5,-56.5,0,0,-0.00544816 -24018,5504:360:3,-40,-56.5,0,0,-0.00544935 -24019,5503:469:4,-39.5,-56.5,0,0,-0.00545057 -24020,5503:469:3,-39,-56.5,0,0,-0.00545179 -24021,5503:468:4,-38.5,-56.5,0,0,-0.00545179 -24022,5503:468:3,-38,-56.5,0,0,-0.00545179 -24023,5503:467:4,-37.5,-56.5,0,0,-0.005453 -24024,5503:467:3,-37,-56.5,0,0,-0.005453 -24025,5503:466:4,-36.5,-56.5,0,0,-0.00545423 -24026,5503:466:3,-36,-56.5,0,0,-0.00545541 -24027,5503:465:4,-35.5,-56.5,0,0,-0.00545663 -24028,5503:465:3,-35,-56.5,0,0,-0.00545907 -24029,5503:364:4,-34.5,-56.5,0,0,-0.00545907 -24030,5503:364:3,-34,-56.5,0,0,-0.00546026 -24031,5503:363:4,-33.5,-56.5,0,0,-0.00546026 -24032,5503:363:3,-33,-56.5,0,0,-0.00546026 -24033,5503:362:4,-32.5,-56.5,0,0,-0.00546026 -24034,5503:362:3,-32,-56.5,0,0,-0.00546026 -24035,5503:361:4,-31.5,-56.5,0,0,-0.00546148 -24036,5503:361:3,-31,-56.5,0,0,-0.00546148 -24037,5503:360:4,-30.5,-56.5,0,0,-0.00546026 -24038,5503:360:3,-30,-56.5,0,0,-0.00546026 -24039,5502:469:4,-29.5,-56.5,0,0,-0.00546026 -24040,5502:469:3,-29,-56.5,0,0,-0.00546026 -24041,5502:468:4,-28.5,-56.5,0,0,-0.00546026 -24042,5502:468:3,-28,-56.5,0,0,-0.00545907 -24043,5502:467:4,-27.5,-56.5,0,0,-0.00545907 -24044,5502:467:3,-27,-56.5,0,0,-0.00545907 -24045,5502:466:4,-26.5,-56.5,0,0,-0.00545907 -24046,5502:466:3,-26,-56.5,0,0,-0.00545907 -24047,5502:465:4,-25.5,-56.5,0,0,-0.00545907 -24048,5502:465:3,-25,-56.5,0,0,-0.00545785 -24049,5502:364:4,-24.5,-56.5,0,0,-0.00545785 -24050,5502:364:3,-24,-56.5,0,0,-0.00545663 -24051,5502:363:4,-23.5,-56.5,0,0,-0.00545663 -24052,5502:363:3,-23,-56.5,0,0,-0.00545541 -24053,5502:362:4,-22.5,-56.5,0,0,-0.00545423 -24054,5502:362:3,-22,-56.5,0,0,-0.005453 -24055,5502:361:4,-21.5,-56.5,0,0,-0.00545057 -24056,5502:361:3,-21,-56.5,0,0,-0.00544935 -24057,5502:360:4,-20.5,-56.5,0,0,-0.00544816 -24058,5502:360:3,-20,-56.5,0,0,-0.00544695 -24059,5501:469:4,-19.5,-56.5,0,0,-0.00544573 -24060,5501:469:3,-19,-56.5,0,0,-0.00544333 -24061,5501:468:4,-18.5,-56.5,0,0,-0.00544211 -24062,5501:468:3,-18,-56.5,0,0,-0.00544089 -24063,5501:467:4,-17.5,-56.5,0,0,-0.0054385 -24064,5501:467:3,-17,-56.5,0,0,-0.00543728 -24065,5501:466:4,-16.5,-56.5,0,0,-0.00543728 -24066,5501:466:3,-16,-56.5,0,0,-0.00543728 -24067,5501:465:4,-15.5,-56.5,0,0,-0.00543968 -24068,5501:465:3,-15,-56.5,0,0,-0.00543968 -24069,5501:364:4,-14.5,-56.5,0,0,-0.00543968 -24070,5501:364:3,-14,-56.5,0,0,-0.0054385 -24071,5501:363:4,-13.5,-56.5,0,0,-0.00543728 -24072,5501:363:3,-13,-56.5,0,0,-0.00543728 -24073,5501:362:4,-12.5,-56.5,0,0,-0.00543728 -24074,5501:362:3,-12,-56.5,0,0,-0.00543728 -24075,5501:361:4,-11.5,-56.5,0,0,-0.00543728 -24076,5501:361:3,-11,-56.5,0,0,-0.0054385 -24077,5501:360:4,-10.5,-56.5,0,0,-0.00543968 -24078,5501:360:3,-10,-56.5,0,0,-0.00543968 -24079,5500:469:4,-9.5,-56.5,0,0,-0.00543968 -24080,5500:469:3,-9,-56.5,0,0,-0.00543968 -24081,5500:468:4,-8.5,-56.5,0,0,-0.00543968 -24082,5500:468:3,-8,-56.5,0,0,-0.0054385 -24083,5500:467:4,-7.5,-56.5,0,0,-0.0054385 -24084,5500:467:3,-7,-56.5,0,0,-0.0054385 -24085,5500:466:4,-6.5,-56.5,0,0,-0.00543968 -24086,5500:466:3,-6,-56.5,0,0,-0.00543968 -24087,5500:465:4,-5.5,-56.5,0,0,-0.0054385 -24088,5500:465:3,-5,-56.5,0,0,-0.0054385 -24089,5500:364:4,-4.5,-56.5,0,0,-0.00543728 -24090,5500:364:3,-4,-56.5,0,0,-0.0054385 -24091,5500:363:4,-3.5,-56.5,0,0,-0.00543728 -24092,5500:363:3,-3,-56.5,0,0,-0.00543728 -24093,5500:362:4,-2.5,-56.5,0,0,-0.0054385 -24094,5500:362:3,-2,-56.5,0,0,-0.0054385 -24095,5500:361:4,-1.5,-56.5,0,0,-0.00543728 -24096,5500:361:3,-1,-56.5,0,0,-0.00543728 -24097,5500:360:4,-0.5,-56.5,0,0,-0.0054385 -24098,3500:360:4,0,-56.5,0,0,-0.00543968 -24099,3500:360:4,0.5,-56.5,0,0,-0.00544089 -24100,3500:361:3,1,-56.5,0,0,-0.00543968 -24101,3500:361:4,1.5,-56.5,0,0,-0.0054385 -24102,3500:362:3,2,-56.5,0,0,-0.0054385 -24103,3500:362:4,2.5,-56.5,0,0,-0.0054385 -24104,3500:363:3,3,-56.5,0,0,-0.00543968 -24105,3500:363:4,3.5,-56.5,0,0,-0.00543968 -24106,3500:364:3,4,-56.5,0,0,-0.00543968 -24107,3500:364:4,4.5,-56.5,0,0,-0.00543968 -24108,3500:465:3,5,-56.5,0,0,-0.00544089 -24109,3500:465:4,5.5,-56.5,0,0,-0.00544333 -24110,3500:466:3,6,-56.5,0,0,-0.00544573 -24111,3500:466:4,6.5,-56.5,0,0,-0.00544695 -24112,3500:467:3,7,-56.5,0,0,-0.00544816 -24113,3500:467:4,7.5,-56.5,0,0,-0.00544935 -24114,3500:468:3,8,-56.5,0,0,-0.00545057 -24115,3500:468:4,8.5,-56.5,0,0,-0.00545057 -24116,3500:469:3,9,-56.5,0,0,-0.00545057 -24117,3500:469:4,9.5,-56.5,0,0,-0.00545179 -24118,3501:360:3,10,-56.5,0,0,-0.005453 -24119,3501:360:4,10.5,-56.5,0,0,-0.00545179 -24120,3501:361:3,11,-56.5,0,0,-0.00545179 -24121,3501:361:4,11.5,-56.5,0,0,-0.005453 -24122,3501:362:3,12,-56.5,0,0,-0.00545423 -24123,3501:362:4,12.5,-56.5,0,0,-0.00545423 -24124,3501:363:3,13,-56.5,0,0,-0.00545541 -24125,3501:363:4,13.5,-56.5,0,0,-0.00545423 -24126,3501:364:3,14,-56.5,0,0,-0.005453 -24127,3501:364:4,14.5,-56.5,0,0,-0.00545179 -24128,3501:465:3,15,-56.5,0,0,-0.00544695 -24129,3501:465:4,15.5,-56.5,0,0,-0.00544451 -24130,3501:466:3,16,-56.5,0,0,-0.00544211 -24131,3501:466:4,16.5,-56.5,0,0,-0.00544089 -24132,3501:467:3,17,-56.5,0,0,-0.0054385 -24133,3501:467:4,17.5,-56.5,0,0,-0.00543485 -24134,3501:468:3,18,-56.5,0,0,-0.00543124 -24135,3501:468:4,18.5,-56.5,0,0,-0.0054252 -24136,3501:469:3,19,-56.5,0,0,-0.00541917 -24137,3501:469:4,19.5,-56.5,0,0,-0.00541679 -24138,3502:360:3,20,-56.5,0,0,-0.00543245 -24139,3502:360:4,20.5,-56.5,0,0,-0.00543606 -24140,3502:361:3,21,-56.5,0,0,-0.00543606 -24141,3502:361:4,21.5,-56.5,0,0,-0.00543485 -24142,3502:362:3,22,-56.5,0,0,-0.00543363 -24143,3502:362:4,22.5,-56.5,0,0,-0.00543124 -24144,3502:363:3,23,-56.5,0,0,-0.00542763 -24145,3502:363:4,23.5,-56.5,0,0,-0.00542399 -24146,3502:364:3,24,-56.5,0,0,-0.0054216 -24147,3502:364:4,24.5,-56.5,0,0,-0.00542039 -24148,3502:465:3,25,-56.5,0,0,-0.0054216 -24149,3502:465:4,25.5,-56.5,0,0,-0.00542399 -24150,3502:466:3,26,-56.5,0,0,-0.00542763 -24151,3502:466:4,26.5,-56.5,0,0,-0.00543968 -24152,3502:467:3,27,-56.5,0,0,-0.005453 -24153,3502:467:4,27.5,-56.5,0,0,-0.00546392 -24154,3502:468:3,28,-56.5,0,0,-0.00549312 -24155,3502:468:4,28.5,-56.5,0,0,-0.00552985 -24156,3502:469:3,29,-56.5,0,0,-0.00553476 -24157,3502:469:4,29.5,-56.5,0,0,-0.00552127 -24158,3503:360:3,30,-56.5,0,0,-0.00550411 -24159,3503:360:4,30.5,-56.5,0,0,-0.00549312 -24160,3503:361:3,31,-56.5,0,0,-0.00548824 -24161,3503:361:4,31.5,-56.5,0,0,-0.00548459 -24162,3503:362:3,32,-56.5,0,0,-0.00548582 -24163,3503:362:4,32.5,-56.5,0,0,-0.00548701 -24164,3503:363:3,33,-56.5,0,0,-0.00548214 -24165,3503:363:4,33.5,-56.5,0,0,-0.00546148 -24166,3503:364:3,34,-56.5,0,0,-0.00543968 -24167,3503:364:4,34.5,-56.5,0,0,-0.00543485 -24168,3503:465:3,35,-56.5,0,0,-0.00543606 -24169,3503:465:4,35.5,-56.5,0,0,-0.00543728 -24170,3503:466:3,36,-56.5,0,0,-0.0054385 -24171,3503:466:4,36.5,-56.5,0,0,-0.00543968 -24172,3503:467:3,37,-56.5,0,0,-0.0054385 -24173,3503:467:4,37.5,-56.5,0,0,-0.00543968 -24174,3503:468:3,38,-56.5,0,0,-0.00543968 -24175,3503:468:4,38.5,-56.5,0,0,-0.00543968 -24176,3503:469:3,39,-56.5,0,0,-0.00543968 -24177,3503:469:4,39.5,-56.5,0,0,-0.0054385 -24178,3504:360:3,40,-56.5,0,0,-0.00543606 -24179,3504:360:4,40.5,-56.5,0,0,-0.00543363 -24180,3504:361:3,41,-56.5,0,0,-0.0054385 -24181,3504:361:4,41.5,-56.5,0,0,-0.00544211 -24182,3504:362:3,42,-56.5,0,0,-0.00544695 -24183,3504:362:4,42.5,-56.5,0,0,-0.00544935 -24184,3504:363:3,43,-56.5,0,0,-0.00545179 -24185,3504:363:4,43.5,-56.5,0,0,-0.00546511 -24186,3504:364:3,44,-56.5,0,0,-0.00548582 -24187,3504:364:4,44.5,-56.5,0,0,-0.00549677 -24188,3504:465:3,45,-56.5,0,0,-0.00549189 -24189,3504:465:4,45.5,-56.5,0,0,-0.00547 -24190,3504:466:3,46,-56.5,0,0,-0.00543245 -24191,3504:466:4,46.5,-56.5,0,0,-0.00543245 -24192,3504:467:3,47,-56.5,0,0,-0.00543485 -24193,3504:467:4,47.5,-56.5,0,0,-0.00543485 -24194,3504:468:3,48,-56.5,0,0,-0.00543363 -24195,3504:468:4,48.5,-56.5,0,0,-0.00543363 -24196,3504:469:3,49,-56.5,0,0,-0.00543363 -24197,3504:469:4,49.5,-56.5,0,0,-0.00543485 -24198,3505:360:3,50,-56.5,0,0,-0.00543606 -24199,3505:360:4,50.5,-56.5,0,0,-0.00543728 -24200,3505:361:3,51,-56.5,0,0,-0.00543968 -24201,3505:361:4,51.5,-56.5,0,0,-0.00544089 -24202,3505:362:3,52,-56.5,0,0,-0.00544211 -24203,3505:362:4,52.5,-56.5,0,0,-0.00544211 -24204,3505:363:3,53,-56.5,0,0,-0.00544333 -24205,3505:363:4,53.5,-56.5,0,0,-0.00544333 -24206,3505:364:3,54,-56.5,0,0,-0.00544333 -24207,3505:364:4,54.5,-56.5,0,0,-0.00544333 -24208,3505:465:3,55,-56.5,0,0,-0.00544816 -24209,3505:465:4,55.5,-56.5,0,0,-0.00547727 -24210,3505:466:3,56,-56.5,0,0,-0.00547119 -24211,3505:466:4,56.5,-56.5,0,0,-0.00546026 -24212,3505:467:3,57,-56.5,0,0,-0.00544935 -24213,3505:467:4,57.5,-56.5,0,0,-0.00544816 -24214,3505:468:3,58,-56.5,0,0,-0.00544935 -24215,3505:468:4,58.5,-56.5,0,0,-0.00545179 -24216,3505:469:3,59,-56.5,0,0,-0.00545179 -24217,3505:469:4,59.5,-56.5,0,0,-0.00545179 -24218,3506:360:3,60,-56.5,0,0,-0.00545179 -24219,3506:360:4,60.5,-56.5,0,0,-0.005453 -24220,3506:361:3,61,-56.5,0,0,-0.00545423 -24221,3506:361:4,61.5,-56.5,0,0,-0.00545785 -24222,3506:362:3,62,-56.5,0,0,-0.00546755 -24223,3506:362:4,62.5,-56.5,0,0,-0.00546148 -24224,3506:363:3,63,-56.5,0,0,-0.00545663 -24225,3506:363:4,63.5,-56.5,0,0,-0.00545785 -24226,3506:364:3,64,-56.5,0,0,-0.00545907 -24227,3506:364:4,64.5,-56.5,0,0,-0.00545907 -24228,3506:465:3,65,-56.5,0,0,-0.00545907 -24229,3506:465:4,65.5,-56.5,0,0,-0.00545785 -24230,3506:466:3,66,-56.5,0,0,-0.00546026 -24231,3506:466:4,66.5,-56.5,0,0,-0.00546026 -24232,3506:467:3,67,-56.5,0,0,-0.00546026 -24233,3506:467:4,67.5,-56.5,0,0,-0.00545907 -24234,3506:468:3,68,-56.5,0,0,-0.00546633 -24235,3506:468:4,68.5,-56.5,0,0,-0.00558789 -24236,3506:469:3,69,-56.5,0,0,-0.00576188 -24237,3506:469:4,69.5,-56.5,0,0,-0.00566918 -24238,3507:360:3,70,-56.5,0,0,-0.00549069 -24239,3507:360:4,70.5,-56.5,0,0,-0.00555325 -24240,3507:361:3,71,-56.5,0,0,-0.00558664 -24241,3507:361:4,71.5,-56.5,0,0,-0.00561653 -24242,3507:362:3,72,-56.5,0,0,-0.00558914 -24243,3507:362:4,72.5,-56.5,0,0,-0.00553968 -24244,3507:363:4,73.5,-56.5,0,0,-0.00555943 -24245,3507:364:3,74,-56.5,0,0,-0.00557177 -24246,3507:364:4,74.5,-56.5,0,0,-0.00563404 -24247,3507:465:3,75,-56.5,0,0,-0.00570965 -24248,3507:465:4,75.5,-56.5,0,0,-0.00568812 -24249,3507:466:3,76,-56.5,0,0,-0.00554584 -24250,3507:466:4,76.5,-56.5,0,0,-0.00547727 -24251,3507:467:3,77,-56.5,0,0,-0.00545785 -24252,3507:467:4,77.5,-56.5,0,0,-0.00549312 -24253,3507:468:3,78,-56.5,0,0,-0.00553232 -24254,3507:468:4,78.5,-56.5,0,0,-0.00556064 -24255,3507:469:3,79,-56.5,0,0,-0.00558293 -24256,3507:469:4,79.5,-56.5,0,0,-0.00560531 -24257,3508:360:3,80,-56.5,0,0,-0.00562903 -24258,3508:360:4,80.5,-56.5,0,0,-0.00559536 -24259,3508:361:3,81,-56.5,0,0,-0.00552127 -24260,3508:361:4,81.5,-56.5,0,0,-0.00553848 -24261,3508:362:3,82,-56.5,0,0,-0.00557302 -24262,3508:362:4,82.5,-56.5,0,0,-0.00556932 -24263,3508:363:3,83,-56.5,0,0,-0.00559285 -24264,3508:363:4,83.5,-56.5,0,0,-0.00561029 -24265,3508:364:3,84,-56.5,0,0,-0.00560781 -24266,3508:364:4,84.5,-56.5,0,0,-0.0055557 -24267,3508:465:3,85,-56.5,0,0,-0.00543002 -24268,3508:465:4,85.5,-56.5,0,0,-0.00544211 -24269,3508:466:3,86,-56.5,0,0,-0.00544573 -24270,3508:466:4,86.5,-56.5,0,0,-0.00544695 -24271,3508:467:3,87,-56.5,0,0,-0.00544695 -24272,3508:467:4,87.5,-56.5,0,0,-0.00544695 -24273,3508:468:3,88,-56.5,0,0,-0.00544333 -24274,3508:468:4,88.5,-56.5,0,0,-0.00543968 -24275,3508:469:3,89,-56.5,0,0,-0.00547241 -24276,3508:469:4,89.5,-56.5,0,0,-0.00549923 -24277,3509:360:3,90,-56.5,0,0,-0.00550777 -24278,3509:360:4,90.5,-56.5,0,0,-0.00556932 -24279,3509:361:3,91,-56.5,0,0,-0.00581334 -24280,3509:361:4,91.5,-56.5,0,0,-0.00585742 -24281,3509:362:3,92,-56.5,0,0,-0.00582368 -24282,3509:362:4,92.5,-56.5,0,0,-0.00578498 -24283,3509:363:3,93,-56.5,0,0,-0.00574912 -24284,3509:363:4,93.5,-56.5,0,0,-0.00567803 -24285,3509:364:3,94,-56.5,0,0,-0.00546878 -24286,3509:364:4,94.5,-56.5,0,0,-0.00545423 -24287,3509:465:3,95,-56.5,0,0,-0.00545907 -24288,3509:465:4,95.5,-56.5,0,0,-0.0054627 -24289,3509:466:3,96,-56.5,0,0,-0.00546511 -24290,3509:466:4,96.5,-56.5,0,0,-0.00546633 -24291,3509:467:3,97,-56.5,0,0,-0.00546878 -24292,3509:467:4,97.5,-56.5,0,0,-0.00547 -24293,3509:468:3,98,-56.5,0,0,-0.00547 -24294,3509:468:4,98.5,-56.5,0,0,-0.00547 -24295,3509:469:3,99,-56.5,0,0,-0.00547 -24296,3509:469:4,99.5,-56.5,0,0,-0.00546878 -24297,3510:360:3,100,-56.5,0,0,-0.00546878 -24298,3510:360:4,100.5,-56.5,0,0,-0.00546878 -24299,3510:361:3,101,-56.5,0,0,-0.00546878 -24300,3510:361:4,101.5,-56.5,0,0,-0.00546755 -24301,3510:362:3,102,-56.5,0,0,-0.00546633 -24302,3510:362:4,102.5,-56.5,0,0,-0.00546392 -24303,3510:363:3,103,-56.5,0,0,-0.0054627 -24304,3510:363:4,103.5,-56.5,0,0,-0.00546148 -24305,3510:364:3,104,-56.5,0,0,-0.0054627 -24306,3510:364:4,104.5,-56.5,0,0,-0.00546026 -24307,3510:465:3,105,-56.5,0,0,-0.00546026 -24308,3510:465:4,105.5,-56.5,0,0,-0.0054627 -24309,3510:466:3,106,-56.5,0,0,-0.0054627 -24310,3510:466:4,106.5,-56.5,0,0,-0.00546026 -24311,3510:467:3,107,-56.5,0,0,-0.00545907 -24312,3510:467:4,107.5,-56.5,0,0,-0.00545907 -24313,3510:468:3,108,-56.5,0,0,-0.00545785 -24314,3510:468:4,108.5,-56.5,0,0,-0.00545663 -24315,3510:469:3,109,-56.5,0,0,-0.00545663 -24316,3510:469:4,109.5,-56.5,0,0,-0.00545907 -24317,3511:360:3,110,-56.5,0,0,-0.00545785 -24318,3511:360:4,110.5,-56.5,0,0,-0.00545423 -24319,3511:361:3,111,-56.5,0,0,-0.00544935 -24320,3511:361:4,111.5,-56.5,0,0,-0.00544333 -24321,3511:362:3,112,-56.5,0,0,-0.00544816 -24322,3511:362:4,112.5,-56.5,0,0,-0.00545907 -24323,3511:363:3,113,-56.5,0,0,-0.00545541 -24324,3511:363:4,113.5,-56.5,0,0,-0.00544816 -24325,3511:364:3,114,-56.5,0,0,-0.00549189 -24326,3511:364:4,114.5,-56.5,0,0,-0.00556682 -24327,3511:465:3,115,-56.5,0,0,-0.00573635 -24328,3511:465:4,115.5,-56.5,0,0,-0.0062725 -24329,3511:466:3,116,-56.5,0,0,-0.00600905 -24330,3511:466:4,116.5,-56.5,0,0,-0.00575423 -24331,3511:467:3,117,-56.5,0,0,-0.00573378 -24332,3511:467:4,117.5,-56.5,0,0,-0.0059771 -24333,3511:468:3,118,-56.5,0,0,-0.00620731 -24334,3511:468:4,118.5,-56.5,0,0,-0.0064021 -24335,3511:469:3,119,-56.5,0,0,-0.00652571 -24336,3511:469:4,119.5,-56.5,0,0,-0.00660897 -24337,3512:360:3,120,-56.5,0,0,-0.00664581 -24338,3512:360:4,120.5,-56.5,0,0,-0.00663252 -24339,3512:361:3,121,-56.5,0,0,-0.00689736 -24340,3512:361:4,121.5,-56.5,0,0,-0.00736203 -24341,3512:362:3,122,-56.5,0,0,-0.00744935 -24342,3512:362:4,122.5,-56.5,0,0,-0.00763062 -24343,3512:363:3,123,-56.5,0,0,-0.00784075 -24344,3512:363:4,123.5,-56.5,0,0,-0.00797456 -24345,3512:364:3,124,-56.5,0,0,-0.00802982 -24346,3512:364:4,124.5,-56.5,0,0,-0.00811073 -24347,3512:465:3,125,-56.5,0,0,-0.0081924 -24348,3512:465:4,125.5,-56.5,0,0,-0.00823081 -24349,3512:466:3,126,-56.5,0,0,-0.00825838 -24350,3512:466:4,126.5,-56.5,0,0,-0.00827496 -24351,3512:467:3,127,-56.5,0,0,-0.00827311 -24352,3512:467:4,127.5,-56.5,0,0,-0.00830636 -24353,3512:468:3,128,-56.5,0,0,-0.008336 -24354,3512:468:4,128.5,-56.5,0,0,-0.0083453 -24355,3512:469:3,129,-56.5,0,0,-0.00834156 -24356,3512:469:4,129.5,-56.5,0,0,-0.00829896 -24357,3513:360:3,130,-56.5,0,0,-0.00840315 -24358,3513:360:4,130.5,-56.5,0,0,-0.00851056 -24359,3513:361:3,131,-56.5,0,0,-0.00840686 -24360,3513:361:4,131.5,-56.5,0,0,-0.00841624 -24361,3513:362:3,132,-56.5,0,0,-0.0086328 -24362,3513:362:4,132.5,-56.5,0,0,-0.00890638 -24363,3513:363:3,133,-56.5,0,0,-0.00917853 -24364,3513:363:4,133.5,-56.5,0,0,-0.00913361 -24365,3513:364:3,134,-56.5,0,0,-0.00851432 -24366,3513:364:4,134.5,-56.5,0,0,-0.00774359 -24367,3513:465:3,135,-56.5,0,0,-0.00754449 -24368,3513:465:4,135.5,-56.5,0,0,-0.00733259 -24369,3513:466:3,136,-56.5,0,0,-0.00676662 -24370,3513:466:4,136.5,-56.5,0,0,-0.00724659 -24371,3513:467:3,137,-56.5,0,0,-0.00734565 -24372,3513:467:4,137.5,-56.5,0,0,-0.00721761 -24373,3513:468:3,138,-56.5,0,0,-0.00631868 -24374,3513:468:4,138.5,-56.5,0,0,-0.0055446 -24375,3513:469:3,139,-56.5,0,0,-0.005498 -24376,3513:469:4,139.5,-56.5,0,0,-0.00552985 -24377,3514:360:3,140,-56.5,0,0,-0.00576188 -24378,3514:360:4,140.5,-56.5,0,0,-0.00606948 -24379,3514:361:3,141,-56.5,0,0,-0.00629343 -24380,3514:361:4,141.5,-56.5,0,0,-0.006504 -24381,3514:362:3,142,-56.5,0,0,-0.0066031 -24382,3514:362:4,142.5,-56.5,0,0,-0.00672162 -24383,3514:363:3,143,-56.5,0,0,-0.00693116 -24384,3514:363:4,143.5,-56.5,0,0,-0.00665028 -24385,3514:364:3,144,-56.5,0,0,-0.00648377 -24386,3514:364:4,144.5,-56.5,0,0,-0.00681803 -24387,3514:465:3,145,-56.5,0,0,-0.00738171 -24388,3514:465:4,145.5,-56.5,0,0,-0.00731955 -24389,3514:466:3,146,-56.5,0,0,-0.00666062 -24390,3514:466:4,146.5,-56.5,0,0,-0.0060345 -24391,3514:467:3,147,-56.5,0,0,-0.00572869 -24392,3514:467:4,147.5,-56.5,0,0,-0.00587569 -24393,3514:468:3,148,-56.5,0,0,-0.00587828 -24394,3514:468:4,148.5,-56.5,0,0,-0.00568053 -24395,3514:469:3,149,-56.5,0,0,-0.00559285 -24396,3514:469:4,149.5,-56.5,0,0,-0.00557426 -24397,3515:360:3,150,-56.5,0,0,-0.00556807 -24398,3515:360:4,150.5,-56.5,0,0,-0.00557426 -24399,3515:361:3,151,-56.5,0,0,-0.00557177 -24400,3515:361:4,151.5,-56.5,0,0,-0.00555943 -24401,3515:362:3,152,-56.5,0,0,-0.00555943 -24402,3515:362:4,152.5,-56.5,0,0,-0.00557797 -24403,3515:363:3,153,-56.5,0,0,-0.00559285 -24404,3515:363:4,153.5,-56.5,0,0,-0.00555694 -24405,3515:364:3,154,-56.5,0,0,-0.00552003 -24406,3515:364:4,154.5,-56.5,0,0,-0.00550046 -24407,3515:465:3,155,-56.5,0,0,-0.00548947 -24408,3515:465:4,155.5,-56.5,0,0,-0.00548824 -24409,3515:466:3,156,-56.5,0,0,-0.00548701 -24410,3515:466:4,156.5,-56.5,0,0,-0.00547605 -24411,3515:467:3,157,-56.5,0,0,-0.00547727 -24412,3515:467:4,157.5,-56.5,0,0,-0.00547972 -24413,3515:468:3,158,-56.5,0,0,-0.00547972 -24414,3515:468:4,158.5,-56.5,0,0,-0.00547727 -24415,3515:469:3,159,-56.5,0,0,-0.00547605 -24416,3515:469:4,159.5,-56.5,0,0,-0.00547486 -24417,3516:360:3,160,-56.5,0,0,-0.00547486 -24418,3516:360:4,160.5,-56.5,0,0,-0.00547486 -24419,3516:361:3,161,-56.5,0,0,-0.00547486 -24420,3516:361:4,161.5,-56.5,0,0,-0.00547364 -24421,3516:362:3,162,-56.5,0,0,-0.00547241 -24422,3516:362:4,162.5,-56.5,0,0,-0.00547364 -24423,3516:363:3,163,-56.5,0,0,-0.00547486 -24424,3516:363:4,163.5,-56.5,0,0,-0.00547605 -24425,3516:364:3,164,-56.5,0,0,-0.00547605 -24426,3516:364:4,164.5,-56.5,0,0,-0.0054785 -24427,3516:465:3,165,-56.5,0,0,-0.00548337 -24428,3516:465:4,165.5,-56.5,0,0,-0.00548824 -24429,3516:466:3,166,-56.5,0,0,-0.00548582 -24430,3516:466:4,166.5,-56.5,0,0,-0.00550046 -24431,3516:467:3,167,-56.5,0,0,-0.00558789 -24432,3516:467:4,167.5,-56.5,0,0,-0.00579397 -24433,3516:468:3,168,-56.5,0,0,-0.00619351 -24434,3516:468:4,168.5,-56.5,0,0,-0.00650833 -24435,3516:469:3,169,-56.5,0,0,-0.00665321 -24436,3516:469:4,169.5,-56.5,0,0,-0.00681044 -24437,3517:360:3,170,-56.5,0,0,-0.00673811 -24438,3517:360:4,170.5,-56.5,0,0,-0.00688814 -24439,3517:361:3,171,-56.5,0,0,-0.00689118 -24440,3517:361:4,171.5,-56.5,0,0,-0.00708239 -24441,3517:362:3,172,-56.5,0,0,-0.00705249 -24442,3517:362:4,172.5,-56.5,0,0,-0.00684841 -24443,3517:363:3,173,-56.5,0,0,-0.00609382 -24444,3517:363:4,173.5,-56.5,0,0,-0.00573888 -24445,3517:364:3,174,-56.5,0,0,-0.00562404 -24446,3517:364:4,174.5,-56.5,0,0,-0.00584833 -24447,3517:465:3,175,-56.5,0,0,-0.00711556 -24448,3517:465:4,175.5,-56.5,0,0,-0.00959074 -24449,3517:466:3,176,-56.5,0,0,-0.0113363 -24450,3517:466:4,176.5,-56.5,0,0,-0.0114663 -24451,3517:467:3,177,-56.5,0,0,-0.0106419 -24452,3517:467:4,177.5,-56.5,0,0,-0.00899418 -24453,3517:468:3,178,-56.5,0,0,-0.00859823 -24454,3517:468:4,178.5,-56.5,0,0,-0.0101818 -24455,3517:469:3,179,-56.5,0,0,-0.0121063 -24456,3517:469:4,179.5,-56.5,0,0,-0.012539 -24457,3518:360:3,180,-56.5,0,0,-0.011515 -24458,5518:360:1,-180,-56,0,0,-0.0136736 -24459,5517:469:2,-179.5,-56,0,0,-0.0122782 -24460,5517:469:1,-179,-56,0,0,-0.0103722 -24461,5517:468:2,-178.5,-56,0,0,-0.0100127 -24462,5517:468:1,-178,-56,0,0,-0.0101727 -24463,5517:467:2,-177.5,-56,0,0,-0.0102639 -24464,5517:467:1,-177,-56,0,0,-0.0100105 -24465,5517:466:2,-176.5,-56,0,0,-0.00975039 -24466,5517:466:1,-176,-56,0,0,-0.00950133 -24467,5517:465:2,-175.5,-56,0,0,-0.00939804 -24468,5517:465:1,-175,-56,0,0,-0.00946325 -24469,5517:364:2,-174.5,-56,0,0,-0.00959074 -24470,5517:364:1,-174,-56,0,0,-0.0096186 -24471,5517:363:2,-173.5,-56,0,0,-0.0092587 -24472,5517:363:1,-173,-56,0,0,-0.00878221 -24473,5517:362:2,-172.5,-56,0,0,-0.00894421 -24474,5517:362:1,-172,-56,0,0,-0.00916829 -24475,5517:361:2,-171.5,-56,0,0,-0.00904647 -24476,5517:361:1,-171,-56,0,0,-0.00884901 -24477,5517:360:2,-170.5,-56,0,0,-0.00865202 -24478,5517:360:1,-170,-56,0,0,-0.0084897 -24479,5516:469:2,-169.5,-56,0,0,-0.00822717 -24480,5516:469:1,-169,-56,0,0,-0.00782329 -24481,5516:468:2,-168.5,-56,0,0,-0.00756466 -24482,5516:468:1,-168,-56,0,0,-0.00753107 -24483,5516:467:2,-167.5,-56,0,0,-0.00756132 -24484,5516:467:1,-167,-56,0,0,-0.00758998 -24485,5516:466:2,-166.5,-56,0,0,-0.0076001 -24486,5516:466:1,-166,-56,0,0,-0.00758323 -24487,5516:465:2,-165.5,-56,0,0,-0.0075344 -24488,5516:465:1,-165,-56,0,0,-0.00746262 -24489,5516:364:2,-164.5,-56,0,0,-0.0074527 -24490,5516:364:1,-164,-56,0,0,-0.00743444 -24491,5516:363:2,-163.5,-56,0,0,-0.00732606 -24492,5516:363:1,-163,-56,0,0,-0.0071712 -24493,5516:362:2,-162.5,-56,0,0,-0.00709818 -24494,5516:362:1,-162,-56,0,0,-0.00711396 -24495,5516:361:2,-161.5,-56,0,0,-0.0071712 -24496,5516:361:1,-161,-56,0,0,-0.00723209 -24497,5516:360:2,-160.5,-56,0,0,-0.00727569 -24498,5516:360:1,-160,-56,0,0,-0.00731463 -24499,5515:469:2,-159.5,-56,0,0,-0.00735873 -24500,5515:469:1,-159,-56,0,0,-0.00739154 -24501,5515:468:2,-158.5,-56,0,0,-0.00742455 -24502,5515:468:1,-158,-56,0,0,-0.00747094 -24503,5515:467:2,-157.5,-56,0,0,-0.00752769 -24504,5515:467:1,-157,-56,0,0,-0.00756635 -24505,5515:466:2,-156.5,-56,0,0,-0.00757309 -24506,5515:466:1,-156,-56,0,0,-0.00758998 -24507,5515:465:2,-155.5,-56,0,0,-0.00762725 -24508,5515:465:1,-155,-56,0,0,-0.00766299 -24509,5515:364:2,-154.5,-56,0,0,-0.00767153 -24510,5515:364:1,-154,-56,0,0,-0.00759674 -24511,5515:363:2,-153.5,-56,0,0,-0.00747927 -24512,5515:363:1,-153,-56,0,0,-0.00743283 -24513,5515:362:2,-152.5,-56,0,0,-0.00748761 -24514,5515:362:1,-152,-56,0,0,-0.00754787 -24515,5515:361:2,-151.5,-56,0,0,-0.00762891 -24516,5515:361:1,-151,-56,0,0,-0.00778162 -24517,5515:360:2,-150.5,-56,0,0,-0.00810169 -24518,5515:360:1,-150,-56,0,0,-0.0086907 -24519,5514:469:2,-149.5,-56,0,0,-0.00898617 -24520,5514:469:1,-149,-56,0,0,-0.00907272 -24521,5514:468:2,-148.5,-56,0,0,-0.00909906 -24522,5514:468:1,-148,-56,0,0,-0.00890044 -24523,5514:467:2,-147.5,-56,0,0,-0.00834717 -24524,5514:467:1,-147,-56,0,0,-0.00772121 -24525,5514:466:2,-146.5,-56,0,0,-0.00775049 -24526,5514:466:1,-146,-56,0,0,-0.00789856 -24527,5514:465:2,-145.5,-56,0,0,-0.00788451 -24528,5514:465:1,-145,-56,0,0,-0.00787225 -24529,5514:364:2,-144.5,-56,0,0,-0.00814326 -24530,5514:364:1,-144,-56,0,0,-0.00888659 -24531,5514:363:2,-143.5,-56,0,0,-0.00915807 -24532,5514:363:1,-143,-56,0,0,-0.00878807 -24533,5514:362:2,-142.5,-56,0,0,-0.00832303 -24534,5514:362:1,-142,-56,0,0,-0.00836951 -24535,5514:361:2,-141.5,-56,0,0,-0.00858671 -24536,5514:361:1,-141,-56,0,0,-0.00858864 -24537,5514:360:2,-140.5,-56,0,0,-0.00858671 -24538,5514:360:1,-140,-56,0,0,-0.00872565 -24539,5513:469:2,-139.5,-56,0,0,-0.00905657 -24540,5513:469:1,-139,-56,0,0,-0.00934167 -24541,5513:468:2,-138.5,-56,0,0,-0.00928141 -24542,5513:468:1,-138,-56,0,0,-0.00977219 -24543,5513:467:2,-137.5,-56,0,0,-0.0098752 -24544,5513:467:1,-137,-56,0,0,-0.0097352 -24545,5513:466:2,-136.5,-56,0,0,-0.00948014 -24546,5513:466:1,-136,-56,0,0,-0.00954808 -24547,5513:465:2,-135.5,-56,0,0,-0.00982028 -24548,5513:465:1,-135,-56,0,0,-0.0101296 -24549,5513:364:2,-134.5,-56,0,0,-0.0105308 -24550,5513:364:1,-134,-56,0,0,-0.0105332 -24551,5513:363:2,-133.5,-56,0,0,-0.0105992 -24552,5513:363:1,-133,-56,0,0,-0.0105638 -24553,5513:362:2,-132.5,-56,0,0,-0.0105638 -24554,5513:362:1,-132,-56,0,0,-0.0105992 -24555,5513:361:2,-131.5,-56,0,0,-0.0106633 -24556,5513:361:1,-131,-56,0,0,-0.010747 -24557,5513:360:2,-130.5,-56,0,0,-0.0108217 -24558,5513:360:1,-130,-56,0,0,-0.0109432 -24559,5512:469:2,-129.5,-56,0,0,-0.011233 -24560,5512:469:1,-129,-56,0,0,-0.0116315 -24561,5512:468:2,-128.5,-56,0,0,-0.0115977 -24562,5512:468:1,-128,-56,0,0,-0.0115589 -24563,5512:467:2,-127.5,-56,0,0,-0.0115874 -24564,5512:467:1,-127,-56,0,0,-0.011728 -24565,5512:466:2,-126.5,-56,0,0,-0.0119237 -24566,5512:466:1,-126,-56,0,0,-0.0120469 -24567,5512:465:2,-125.5,-56,0,0,-0.0120469 -24568,5512:465:1,-125,-56,0,0,-0.0119051 -24569,5512:364:2,-124.5,-56,0,0,-0.0116262 -24570,5512:364:1,-124,-56,0,0,-0.0113871 -24571,5512:363:2,-123.5,-56,0,0,-0.0113085 -24572,5512:363:1,-123,-56,0,0,-0.0112179 -24573,5512:362:2,-122.5,-56,0,0,-0.0110537 -24574,5512:362:1,-122,-56,0,0,-0.0110315 -24575,5512:361:2,-121.5,-56,0,0,-0.0111904 -24576,5512:361:1,-121,-56,0,0,-0.0113161 -24577,5512:360:2,-120.5,-56,0,0,-0.0116132 -24578,5512:360:1,-120,-56,0,0,-0.0121769 -24579,5511:469:2,-119.5,-56,0,0,-0.012511 -24580,5511:469:1,-119,-56,0,0,-0.0126432 -24581,5511:468:2,-118.5,-56,0,0,-0.0127312 -24582,5511:468:1,-118,-56,0,0,-0.0128285 -24583,5511:467:2,-117.5,-56,0,0,-0.0129409 -24584,5511:467:1,-117,-56,0,0,-0.0130837 -24585,5511:466:2,-116.5,-56,0,0,-0.0132487 -24586,5511:466:1,-116,-56,0,0,-0.0134008 -24587,5511:465:2,-115.5,-56,0,0,-0.0135699 -24588,5511:465:1,-115,-56,0,0,-0.0135881 -24589,5511:364:2,-114.5,-56,0,0,-0.0135942 -24590,5511:364:1,-114,-56,0,0,-0.0136645 -24591,5511:363:2,-113.5,-56,0,0,-0.013775 -24592,5511:363:1,-113,-56,0,0,-0.0141441 -24593,5511:362:2,-112.5,-56,0,0,-0.0146243 -24594,5511:362:1,-112,-56,0,0,-0.0148158 -24595,5511:361:2,-111.5,-56,0,0,-0.0148257 -24596,5511:361:1,-111,-56,0,0,-0.0148091 -24597,5511:360:2,-110.5,-56,0,0,-0.0146047 -24598,5511:360:1,-110,-56,0,0,-0.0137012 -24599,5510:469:2,-109.5,-56,0,0,-0.0131748 -24600,5510:469:1,-109,-56,0,0,-0.0132902 -24601,5510:468:2,-108.5,-56,0,0,-0.0138246 -24602,5510:468:1,-108,-56,0,0,-0.0141188 -24603,5510:467:2,-107.5,-56,0,0,-0.014371 -24604,5510:467:1,-107,-56,0,0,-0.0147198 -24605,5510:466:2,-106.5,-56,0,0,-0.0147793 -24606,5510:466:1,-106,-56,0,0,-0.0143967 -24607,5510:465:2,-105.5,-56,0,0,-0.0137566 -24608,5510:465:1,-105,-56,0,0,-0.0131688 -24609,5510:364:2,-104.5,-56,0,0,-0.0127113 -24610,5510:364:1,-104,-56,0,0,-0.0125278 -24611,5510:363:2,-103.5,-56,0,0,-0.0123414 -24612,5510:363:1,-103,-56,0,0,-0.0122398 -24613,5510:362:2,-102.5,-56,0,0,-0.0121742 -24614,5510:362:1,-102,-56,0,0,-0.0121199 -24615,5510:361:2,-101.5,-56,0,0,-0.0120955 -24616,5510:361:1,-101,-56,0,0,-0.0120496 -24617,5510:360:2,-100.5,-56,0,0,-0.011913 -24618,5510:360:1,-100,-56,0,0,-0.0116966 -24619,5509:469:2,-99.5,-56,0,0,-0.0115202 -24620,5509:469:1,-99,-56,0,0,-0.0113744 -24621,5509:468:2,-98.5,-56,0,0,-0.0111779 -24622,5509:468:1,-98,-56,0,0,-0.0110315 -24623,5509:467:2,-97.5,-56,0,0,-0.0111455 -24624,5509:467:1,-97,-56,0,0,-0.0115744 -24625,5509:466:2,-96.5,-56,0,0,-0.0120443 -24626,5509:466:1,-96,-56,0,0,-0.0122398 -24627,5509:465:2,-95.5,-56,0,0,-0.0121226 -24628,5509:465:1,-95,-56,0,0,-0.0118572 -24629,5509:364:2,-94.5,-56,0,0,-0.0115899 -24630,5509:364:1,-94,-56,0,0,-0.0114151 -24631,5509:363:2,-93.5,-56,0,0,-0.0113237 -24632,5509:363:1,-93,-56,0,0,-0.0112204 -24633,5509:362:2,-92.5,-56,0,0,-0.0112154 -24634,5509:362:1,-92,-56,0,0,-0.0113973 -24635,5509:361:2,-91.5,-56,0,0,-0.0116653 -24636,5509:361:1,-91,-56,0,0,-0.0118758 -24637,5509:360:2,-90.5,-56,0,0,-0.0118386 -24638,5509:360:1,-90,-56,0,0,-0.0113388 -24639,5508:469:2,-89.5,-56,0,0,-0.0111979 -24640,5508:469:1,-89,-56,0,0,-0.0112481 -24641,5508:468:2,-88.5,-56,0,0,-0.0125054 -24642,5508:468:1,-88,-56,0,0,-0.0140871 -24643,5508:467:2,-87.5,-56,0,0,-0.0145133 -24644,5508:467:1,-87,-56,0,0,-0.0145263 -24645,5508:466:2,-86.5,-56,0,0,-0.0141726 -24646,5508:466:1,-86,-56,0,0,-0.0137289 -24647,5508:465:2,-85.5,-56,0,0,-0.0134008 -24648,5508:465:1,-85,-56,0,0,-0.0128285 -24649,5508:364:2,-84.5,-56,0,0,-0.0124803 -24650,5508:364:1,-84,-56,0,0,-0.0124273 -24651,5508:363:2,-83.5,-56,0,0,-0.0127312 -24652,5508:363:1,-83,-56,0,0,-0.0130748 -24653,5508:362:2,-82.5,-56,0,0,-0.0132843 -24654,5508:362:1,-82,-56,0,0,-0.0135123 -24655,5508:361:2,-81.5,-56,0,0,-0.0141346 -24656,5508:361:1,-81,-56,0,0,-0.014214 -24657,5508:360:2,-80.5,-56,0,0,-0.0140998 -24658,5508:360:1,-80,-56,0,0,-0.0137227 -24659,5507:469:2,-79.5,-56,0,0,-0.0127398 -24660,5507:469:1,-79,-56,0,0,-0.0108822 -24661,5507:468:2,-78.5,-56,0,0,-0.0095566 -24662,5507:468:1,-78,-56,0,0,-0.00885292 -24663,5507:467:2,-77.5,-56,0,0,-0.00850865 -24664,5507:467:1,-77,-56,0,0,-0.00837508 -24665,5507:466:2,-76.5,-56,0,0,-0.00842002 -24666,5507:466:1,-76,-56,0,0,-0.00889845 -24667,5507:465:2,-75.5,-56,0,0,-0.00953106 -24668,5507:465:1,-75,-56,0,0,-0.00978091 -24669,5507:364:2,-74.5,-56,0,0,-0.0101545 -24670,5507:364:1,-74,-56,0,0,-0.0104839 -24671,5507:363:2,-73.5,-56,0,0,-0.0124914 -24672,5507:363:1,-73,-56,0,0,-0.0133051 -24673,5507:362:2,-72.5,-56,0,0,-0.0128803 -24674,5507:362:1,-72,-56,0,0,-0.0119183 -24675,5507:361:2,-71.5,-56,0,0,-0.0118837 -24676,5507:361:1,-71,-56,0,0,-0.0122124 -24677,5507:360:2,-70.5,-56,0,0,-0.012358 -24678,5507:360:1,-70,-56,0,0,-0.0122561 -24679,5506:469:2,-69.5,-56,0,0,-0.0121036 -24680,5506:469:1,-69,-56,0,0,-0.01177 -24681,5506:468:2,-68.5,-56,0,0,-0.0110834 -24682,5506:468:1,-68,-56,0,0,-0.0102593 -24683,5506:467:2,-67.5,-56,0,0,-0.0100038 -24684,5506:467:1,-67,-56,0,0,-0.0099704 -24685,5506:466:2,-66.5,-56,0,0,-0.00929797 -24686,5506:466:1,-66,-56,0,0,-0.00810891 -24687,5506:465:2,-65.5,-56,0,0,-0.00703685 -24688,5506:465:1,-65,-56,0,0,-0.00651845 -24689,5506:364:2,-64.5,-56,0,0,-0.00642495 -24690,5506:364:1,-64,-56,0,0,-0.00628226 -24691,5506:363:2,-63.5,-56,0,0,-0.0062516 -24692,5506:363:1,-63,-56,0,0,-0.00623495 -24693,5506:362:2,-62.5,-56,0,0,-0.0062197 -24694,5506:362:1,-62,-56,0,0,-0.00628085 -24695,5506:361:2,-61.5,-56,0,0,-0.00639073 -24696,5506:361:1,-61,-56,0,0,-0.00628784 -24697,5506:360:2,-60.5,-56,0,0,-0.00623216 -24698,5506:360:1,-60,-56,0,0,-0.00631024 -24699,5505:469:2,-59.5,-56,0,0,-0.00632713 -24700,5505:469:1,-59,-56,0,0,-0.00633839 -24701,5505:468:2,-58.5,-56,0,0,-0.00661925 -24702,5505:468:1,-58,-56,0,0,-0.00635531 -24703,5505:467:2,-57.5,-56,0,0,-0.00610466 -24704,5505:467:1,-57,-56,0,0,-0.00600506 -24705,5505:466:2,-56.5,-56,0,0,-0.00584314 -24706,5505:466:1,-56,-56,0,0,-0.00606544 -24707,5505:465:2,-55.5,-56,0,0,-0.00599305 -24708,5505:465:1,-55,-56,0,0,-0.00591499 -24709,5505:364:2,-54.5,-56,0,0,-0.00579012 -24710,5505:364:1,-54,-56,0,0,-0.00569063 -24711,5505:363:2,-53.5,-56,0,0,-0.00549434 -24712,5505:363:1,-53,-56,0,0,-0.00547972 -24713,5505:362:2,-52.5,-56,0,0,-0.00547241 -24714,5505:362:1,-52,-56,0,0,-0.00547972 -24715,5505:361:2,-51.5,-56,0,0,-0.00546511 -24716,5505:361:1,-51,-56,0,0,-0.00546148 -24717,5505:360:2,-50.5,-56,0,0,-0.00546026 -24718,5505:360:1,-50,-56,0,0,-0.00545907 -24719,5504:469:2,-49.5,-56,0,0,-0.00545785 -24720,5504:469:1,-49,-56,0,0,-0.00545785 -24721,5504:468:2,-48.5,-56,0,0,-0.00545907 -24722,5504:468:1,-48,-56,0,0,-0.00545907 -24723,5504:467:2,-47.5,-56,0,0,-0.00546026 -24724,5504:467:1,-47,-56,0,0,-0.00546026 -24725,5504:466:2,-46.5,-56,0,0,-0.00546148 -24726,5504:466:1,-46,-56,0,0,-0.0054627 -24727,5504:465:2,-45.5,-56,0,0,-0.00546392 -24728,5504:465:1,-45,-56,0,0,-0.00546148 -24729,5504:364:2,-44.5,-56,0,0,-0.00546026 -24730,5504:364:1,-44,-56,0,0,-0.00545785 -24731,5504:363:2,-43.5,-56,0,0,-0.00545663 -24732,5504:363:1,-43,-56,0,0,-0.00545541 -24733,5504:362:2,-42.5,-56,0,0,-0.00545423 -24734,5504:362:1,-42,-56,0,0,-0.005453 -24735,5504:361:2,-41.5,-56,0,0,-0.00545057 -24736,5504:361:1,-41,-56,0,0,-0.00544935 -24737,5504:360:2,-40.5,-56,0,0,-0.00544816 -24738,5504:360:1,-40,-56,0,0,-0.00544695 -24739,5503:469:2,-39.5,-56,0,0,-0.00544573 -24740,5503:469:1,-39,-56,0,0,-0.00544573 -24741,5503:468:2,-38.5,-56,0,0,-0.00544695 -24742,5503:468:1,-38,-56,0,0,-0.00544816 -24743,5503:467:2,-37.5,-56,0,0,-0.00544935 -24744,5503:467:1,-37,-56,0,0,-0.00545057 -24745,5503:466:2,-36.5,-56,0,0,-0.00545057 -24746,5503:466:1,-36,-56,0,0,-0.00545179 -24747,5503:465:2,-35.5,-56,0,0,-0.00545423 -24748,5503:465:1,-35,-56,0,0,-0.00545663 -24749,5503:364:2,-34.5,-56,0,0,-0.00545785 -24750,5503:364:1,-34,-56,0,0,-0.00545907 -24751,5503:363:2,-33.5,-56,0,0,-0.00545907 -24752,5503:363:1,-33,-56,0,0,-0.00545907 -24753,5503:362:2,-32.5,-56,0,0,-0.00546026 -24754,5503:362:1,-32,-56,0,0,-0.00546026 -24755,5503:361:2,-31.5,-56,0,0,-0.00546026 -24756,5503:361:1,-31,-56,0,0,-0.00546148 -24757,5503:360:2,-30.5,-56,0,0,-0.00546148 -24758,5503:360:1,-30,-56,0,0,-0.00546026 -24759,5502:469:2,-29.5,-56,0,0,-0.00546026 -24760,5502:469:1,-29,-56,0,0,-0.00546026 -24761,5502:468:2,-28.5,-56,0,0,-0.00546026 -24762,5502:468:1,-28,-56,0,0,-0.00545907 -24763,5502:467:2,-27.5,-56,0,0,-0.00545907 -24764,5502:467:1,-27,-56,0,0,-0.00545907 -24765,5502:466:2,-26.5,-56,0,0,-0.00545907 -24766,5502:466:1,-26,-56,0,0,-0.00545907 -24767,5502:465:2,-25.5,-56,0,0,-0.00545907 -24768,5502:465:1,-25,-56,0,0,-0.00545907 -24769,5502:364:2,-24.5,-56,0,0,-0.00545785 -24770,5502:364:1,-24,-56,0,0,-0.00545663 -24771,5502:363:2,-23.5,-56,0,0,-0.00545541 -24772,5502:363:1,-23,-56,0,0,-0.00545541 -24773,5502:362:2,-22.5,-56,0,0,-0.005453 -24774,5502:362:1,-22,-56,0,0,-0.00545179 -24775,5502:361:2,-21.5,-56,0,0,-0.00545057 -24776,5502:361:1,-21,-56,0,0,-0.00544935 -24777,5502:360:2,-20.5,-56,0,0,-0.00544816 -24778,5502:360:1,-20,-56,0,0,-0.00544695 -24779,5501:469:2,-19.5,-56,0,0,-0.00544573 -24780,5501:469:1,-19,-56,0,0,-0.00544451 -24781,5501:468:2,-18.5,-56,0,0,-0.00544211 -24782,5501:468:1,-18,-56,0,0,-0.00544089 -24783,5501:467:2,-17.5,-56,0,0,-0.00543968 -24784,5501:467:1,-17,-56,0,0,-0.0054385 -24785,5501:466:2,-16.5,-56,0,0,-0.00544211 -24786,5501:466:1,-16,-56,0,0,-0.00544333 -24787,5501:465:2,-15.5,-56,0,0,-0.00544695 -24788,5501:465:1,-15,-56,0,0,-0.00544935 -24789,5501:364:2,-14.5,-56,0,0,-0.00544695 -24790,5501:364:1,-14,-56,0,0,-0.00544695 -24791,5501:363:2,-13.5,-56,0,0,-0.00544451 -24792,5501:363:1,-13,-56,0,0,-0.00544211 -24793,5501:362:2,-12.5,-56,0,0,-0.00544089 -24794,5501:362:1,-12,-56,0,0,-0.00544089 -24795,5501:361:2,-11.5,-56,0,0,-0.00543968 -24796,5501:361:1,-11,-56,0,0,-0.00543968 -24797,5501:360:2,-10.5,-56,0,0,-0.0054385 -24798,5501:360:1,-10,-56,0,0,-0.0054385 -24799,5500:469:2,-9.5,-56,0,0,-0.00543968 -24800,5500:469:1,-9,-56,0,0,-0.00543968 -24801,5500:468:2,-8.5,-56,0,0,-0.00543968 -24802,5500:468:1,-8,-56,0,0,-0.0054385 -24803,5500:467:2,-7.5,-56,0,0,-0.0054385 -24804,5500:467:1,-7,-56,0,0,-0.00543728 -24805,5500:466:2,-6.5,-56,0,0,-0.0054385 -24806,5500:466:1,-6,-56,0,0,-0.0054385 -24807,5500:465:2,-5.5,-56,0,0,-0.0054385 -24808,5500:465:1,-5,-56,0,0,-0.0054385 -24809,5500:364:2,-4.5,-56,0,0,-0.0054385 -24810,5500:364:1,-4,-56,0,0,-0.00543968 -24811,5500:363:2,-3.5,-56,0,0,-0.00543968 -24812,5500:363:1,-3,-56,0,0,-0.00543968 -24813,5500:362:2,-2.5,-56,0,0,-0.00543968 -24814,5500:362:1,-2,-56,0,0,-0.00543968 -24815,5500:361:2,-1.5,-56,0,0,-0.0054385 -24816,5500:361:1,-1,-56,0,0,-0.0054385 -24817,5500:360:2,-0.5,-56,0,0,-0.00543968 -24818,3500:360:2,0,-56,0,0,-0.00544089 -24819,3500:360:2,0.5,-56,0,0,-0.00544089 -24820,3500:361:1,1,-56,0,0,-0.00544211 -24821,3500:361:2,1.5,-56,0,0,-0.00544211 -24822,3500:362:1,2,-56,0,0,-0.00544211 -24823,3500:362:2,2.5,-56,0,0,-0.00544089 -24824,3500:363:1,3,-56,0,0,-0.00544089 -24825,3500:363:2,3.5,-56,0,0,-0.00543968 -24826,3500:364:1,4,-56,0,0,-0.00543968 -24827,3500:364:2,4.5,-56,0,0,-0.00543968 -24828,3500:465:1,5,-56,0,0,-0.00544211 -24829,3500:465:2,5.5,-56,0,0,-0.00544333 -24830,3500:466:1,6,-56,0,0,-0.00544451 -24831,3500:466:2,6.5,-56,0,0,-0.00544695 -24832,3500:467:1,7,-56,0,0,-0.00544816 -24833,3500:467:2,7.5,-56,0,0,-0.00544816 -24834,3500:468:1,8,-56,0,0,-0.00544935 -24835,3500:468:2,8.5,-56,0,0,-0.00544935 -24836,3500:469:1,9,-56,0,0,-0.00545057 -24837,3500:469:2,9.5,-56,0,0,-0.00545179 -24838,3501:360:1,10,-56,0,0,-0.005453 -24839,3501:360:2,10.5,-56,0,0,-0.00545179 -24840,3501:361:1,11,-56,0,0,-0.00545179 -24841,3501:361:2,11.5,-56,0,0,-0.005453 -24842,3501:362:1,12,-56,0,0,-0.005453 -24843,3501:362:2,12.5,-56,0,0,-0.00545423 -24844,3501:363:1,13,-56,0,0,-0.00545541 -24845,3501:363:2,13.5,-56,0,0,-0.00545541 -24846,3501:364:1,14,-56,0,0,-0.005453 -24847,3501:364:2,14.5,-56,0,0,-0.00545057 -24848,3501:465:1,15,-56,0,0,-0.00544816 -24849,3501:465:2,15.5,-56,0,0,-0.00544695 -24850,3501:466:1,16,-56,0,0,-0.00544573 -24851,3501:466:2,16.5,-56,0,0,-0.00544333 -24852,3501:467:1,17,-56,0,0,-0.00544211 -24853,3501:467:2,17.5,-56,0,0,-0.00544211 -24854,3501:468:1,18,-56,0,0,-0.0054385 -24855,3501:468:2,18.5,-56,0,0,-0.00543245 -24856,3501:469:1,19,-56,0,0,-0.00542763 -24857,3501:469:2,19.5,-56,0,0,-0.00542281 -24858,3502:360:1,20,-56,0,0,-0.00541796 -24859,3502:360:2,20.5,-56,0,0,-0.00541679 -24860,3502:361:1,21,-56,0,0,-0.00543124 -24861,3502:361:2,21.5,-56,0,0,-0.0054385 -24862,3502:362:1,22,-56,0,0,-0.00544089 -24863,3502:362:2,22.5,-56,0,0,-0.00544211 -24864,3502:363:1,23,-56,0,0,-0.00544089 -24865,3502:363:2,23.5,-56,0,0,-0.0054385 -24866,3502:364:1,24,-56,0,0,-0.00543728 -24867,3502:364:2,24.5,-56,0,0,-0.00543728 -24868,3502:465:1,25,-56,0,0,-0.00543728 -24869,3502:465:2,25.5,-56,0,0,-0.00543728 -24870,3502:466:1,26,-56,0,0,-0.00543728 -24871,3502:466:2,26.5,-56,0,0,-0.00543968 -24872,3502:467:1,27,-56,0,0,-0.00544211 -24873,3502:467:2,27.5,-56,0,0,-0.005453 -24874,3502:468:1,28,-56,0,0,-0.0054627 -24875,3502:468:2,28.5,-56,0,0,-0.00548582 -24876,3502:469:1,29,-56,0,0,-0.00552003 -24877,3502:469:2,29.5,-56,0,0,-0.00553352 -24878,3503:360:1,30,-56,0,0,-0.0055237 -24879,3503:360:2,30.5,-56,0,0,-0.00550411 -24880,3503:361:1,31,-56,0,0,-0.00548701 -24881,3503:361:2,31.5,-56,0,0,-0.00548337 -24882,3503:362:1,32,-56,0,0,-0.00549189 -24883,3503:362:2,32.5,-56,0,0,-0.00549434 -24884,3503:363:1,33,-56,0,0,-0.00549312 -24885,3503:363:2,33.5,-56,0,0,-0.00549189 -24886,3503:364:1,34,-56,0,0,-0.00548459 -24887,3503:364:2,34.5,-56,0,0,-0.00547241 -24888,3503:465:1,35,-56,0,0,-0.00544573 -24889,3503:465:2,35.5,-56,0,0,-0.00544089 -24890,3503:466:1,36,-56,0,0,-0.00544211 -24891,3503:466:2,36.5,-56,0,0,-0.0054385 -24892,3503:467:1,37,-56,0,0,-0.0054385 -24893,3503:467:2,37.5,-56,0,0,-0.0054385 -24894,3503:468:1,38,-56,0,0,-0.00543968 -24895,3503:468:2,38.5,-56,0,0,-0.00544089 -24896,3503:469:1,39,-56,0,0,-0.00544089 -24897,3503:469:2,39.5,-56,0,0,-0.00544089 -24898,3504:360:1,40,-56,0,0,-0.00543968 -24899,3504:360:2,40.5,-56,0,0,-0.00543728 -24900,3504:361:1,41,-56,0,0,-0.00543606 -24901,3504:361:2,41.5,-56,0,0,-0.00543485 -24902,3504:362:1,42,-56,0,0,-0.00543968 -24903,3504:362:2,42.5,-56,0,0,-0.00544695 -24904,3504:363:1,43,-56,0,0,-0.00545057 -24905,3504:363:2,43.5,-56,0,0,-0.005453 -24906,3504:364:1,44,-56,0,0,-0.00546511 -24907,3504:364:2,44.5,-56,0,0,-0.00551147 -24908,3504:465:1,45,-56,0,0,-0.00553108 -24909,3504:465:2,45.5,-56,0,0,-0.0055237 -24910,3504:466:1,46,-56,0,0,-0.00549557 -24911,3504:466:2,46.5,-56,0,0,-0.00544211 -24912,3504:467:1,47,-56,0,0,-0.00543002 -24913,3504:467:2,47.5,-56,0,0,-0.00543124 -24914,3504:468:1,48,-56,0,0,-0.00543245 -24915,3504:468:2,48.5,-56,0,0,-0.00543245 -24916,3504:469:1,49,-56,0,0,-0.00543363 -24917,3504:469:2,49.5,-56,0,0,-0.00543363 -24918,3505:360:1,50,-56,0,0,-0.00543485 -24919,3505:360:2,50.5,-56,0,0,-0.00543606 -24920,3505:361:1,51,-56,0,0,-0.00543728 -24921,3505:361:2,51.5,-56,0,0,-0.0054385 -24922,3505:362:1,52,-56,0,0,-0.0054385 -24923,3505:362:2,52.5,-56,0,0,-0.0054385 -24924,3505:363:1,53,-56,0,0,-0.0054385 -24925,3505:363:2,53.5,-56,0,0,-0.0054385 -24926,3505:364:1,54,-56,0,0,-0.00543728 -24927,3505:364:2,54.5,-56,0,0,-0.00545785 -24928,3505:465:1,55,-56,0,0,-0.00551024 -24929,3505:465:2,55.5,-56,0,0,-0.00549069 -24930,3505:466:1,56,-56,0,0,-0.00547486 -24931,3505:466:2,56.5,-56,0,0,-0.00545423 -24932,3505:467:1,57,-56,0,0,-0.005453 -24933,3505:467:2,57.5,-56,0,0,-0.00544816 -24934,3505:468:1,58,-56,0,0,-0.00544935 -24935,3505:468:2,58.5,-56,0,0,-0.00545057 -24936,3505:469:1,59,-56,0,0,-0.00545179 -24937,3505:469:2,59.5,-56,0,0,-0.005453 -24938,3506:360:1,60,-56,0,0,-0.00545423 -24939,3506:360:2,60.5,-56,0,0,-0.00545423 -24940,3506:361:1,61,-56,0,0,-0.00545423 -24941,3506:361:2,61.5,-56,0,0,-0.00545663 -24942,3506:362:1,62,-56,0,0,-0.00547605 -24943,3506:362:2,62.5,-56,0,0,-0.00547119 -24944,3506:363:1,63,-56,0,0,-0.00545907 -24945,3506:363:2,63.5,-56,0,0,-0.00545785 -24946,3506:364:1,64,-56,0,0,-0.00546392 -24947,3506:364:2,64.5,-56,0,0,-0.00549312 -24948,3506:465:1,65,-56,0,0,-0.00548459 -24949,3506:465:2,65.5,-56,0,0,-0.00547364 -24950,3506:466:1,66,-56,0,0,-0.00546633 -24951,3506:466:2,66.5,-56,0,0,-0.00546148 -24952,3506:467:1,67,-56,0,0,-0.00547119 -24953,3506:467:2,67.5,-56,0,0,-0.00550534 -24954,3506:468:1,68,-56,0,0,-0.00560903 -24955,3506:468:2,68.5,-56,0,0,-0.00571472 -24956,3506:469:1,69,-56,0,0,-0.00597974 -24957,3506:469:2,69.5,-56,0,0,-0.00599574 -24958,3507:360:1,70,-56,0,0,-0.00573763 -24959,3507:360:2,70.5,-56,0,0,-0.00565156 -24960,3507:361:1,71,-56,0,0,-0.00562903 -24961,3507:361:2,71.5,-56,0,0,-0.00572741 -24962,3507:362:1,72,-56,0,0,-0.00570837 -24963,3507:362:2,72.5,-56,0,0,-0.00567803 -24964,3507:363:2,73.5,-56,0,0,-0.00562404 -24965,3507:364:1,74,-56,0,0,-0.00556932 -24966,3507:364:2,74.5,-56,0,0,-0.00559039 -24967,3507:465:1,75,-56,0,0,-0.00562404 -24968,3507:465:2,75.5,-56,0,0,-0.0056818 -24969,3507:466:1,76,-56,0,0,-0.00565535 -24970,3507:466:2,76.5,-56,0,0,-0.0055434 -24971,3507:467:1,77,-56,0,0,-0.00556313 -24972,3507:467:2,77.5,-56,0,0,-0.0055557 -24973,3507:468:1,78,-56,0,0,-0.00554584 -24974,3507:468:2,78.5,-56,0,0,-0.00553476 -24975,3507:469:1,79,-56,0,0,-0.00555077 -24976,3507:469:2,79.5,-56,0,0,-0.00556682 -24977,3508:360:1,80,-56,0,0,-0.00557302 -24978,3508:360:2,80.5,-56,0,0,-0.00555694 -24979,3508:361:1,81,-56,0,0,-0.0055446 -24980,3508:361:2,81.5,-56,0,0,-0.00558168 -24981,3508:362:1,82,-56,0,0,-0.00559536 -24982,3508:362:2,82.5,-56,0,0,-0.00567675 -24983,3508:363:1,83,-56,0,0,-0.00575294 -24984,3508:363:2,83.5,-56,0,0,-0.00572869 -24985,3508:364:1,84,-56,0,0,-0.0057236 -24986,3508:364:2,84.5,-56,0,0,-0.00571724 -24987,3508:465:1,85,-56,0,0,-0.0056403 -24988,3508:465:2,85.5,-56,0,0,-0.00550165 -24989,3508:466:1,86,-56,0,0,-0.0054252 -24990,3508:466:2,86.5,-56,0,0,-0.00543728 -24991,3508:467:1,87,-56,0,0,-0.00544333 -24992,3508:467:2,87.5,-56,0,0,-0.00544573 -24993,3508:468:1,88,-56,0,0,-0.00544573 -24994,3508:468:2,88.5,-56,0,0,-0.00544451 -24995,3508:469:1,89,-56,0,0,-0.00544451 -24996,3508:469:2,89.5,-56,0,0,-0.00545179 -24997,3509:360:1,90,-56,0,0,-0.00545541 -24998,3509:360:2,90.5,-56,0,0,-0.00550534 -24999,3509:361:1,91,-56,0,0,-0.00562404 -25000,3509:361:2,91.5,-56,0,0,-0.005877 -25001,3509:362:1,92,-56,0,0,-0.00588614 -25002,3509:362:2,92.5,-56,0,0,-0.00588614 -25003,3509:363:1,93,-56,0,0,-0.00589137 -25004,3509:363:2,93.5,-56,0,0,-0.00586526 -25005,3509:364:1,94,-56,0,0,-0.00578883 -25006,3509:364:2,94.5,-56,0,0,-0.00566668 -25007,3509:465:1,95,-56,0,0,-0.00547972 -25008,3509:465:2,95.5,-56,0,0,-0.00545541 -25009,3509:466:1,96,-56,0,0,-0.00545907 -25010,3509:466:2,96.5,-56,0,0,-0.0054627 -25011,3509:467:1,97,-56,0,0,-0.00546511 -25012,3509:467:2,97.5,-56,0,0,-0.00546755 -25013,3509:468:1,98,-56,0,0,-0.00546755 -25014,3509:468:2,98.5,-56,0,0,-0.00546755 -25015,3509:469:1,99,-56,0,0,-0.00546633 -25016,3509:469:2,99.5,-56,0,0,-0.00546511 -25017,3510:360:1,100,-56,0,0,-0.00546392 -25018,3510:360:2,100.5,-56,0,0,-0.0054627 -25019,3510:361:1,101,-56,0,0,-0.0054627 -25020,3510:361:2,101.5,-56,0,0,-0.0054627 -25021,3510:362:1,102,-56,0,0,-0.0054627 -25022,3510:362:2,102.5,-56,0,0,-0.0054627 -25023,3510:363:1,103,-56,0,0,-0.00546148 -25024,3510:363:2,103.5,-56,0,0,-0.0054627 -25025,3510:364:1,104,-56,0,0,-0.00546026 -25026,3510:364:2,104.5,-56,0,0,-0.00546026 -25027,3510:465:1,105,-56,0,0,-0.00546148 -25028,3510:465:2,105.5,-56,0,0,-0.00546148 -25029,3510:466:1,106,-56,0,0,-0.00546148 -25030,3510:466:2,106.5,-56,0,0,-0.00546148 -25031,3510:467:1,107,-56,0,0,-0.00545907 -25032,3510:467:2,107.5,-56,0,0,-0.00545541 -25033,3510:468:1,108,-56,0,0,-0.005453 -25034,3510:468:2,108.5,-56,0,0,-0.00545057 -25035,3510:469:1,109,-56,0,0,-0.00547119 -25036,3510:469:2,109.5,-56,0,0,-0.00549434 -25037,3511:360:1,110,-56,0,0,-0.00551756 -25038,3511:360:2,110.5,-56,0,0,-0.00556932 -25039,3511:361:1,111,-56,0,0,-0.00571472 -25040,3511:361:2,111.5,-56,0,0,-0.00594266 -25041,3511:362:1,112,-56,0,0,-0.00609787 -25042,3511:362:2,112.5,-56,0,0,-0.00624465 -25043,3511:363:1,113,-56,0,0,-0.00613459 -25044,3511:363:2,113.5,-56,0,0,-0.00553352 -25045,3511:364:1,114,-56,0,0,-0.00548337 -25046,3511:364:2,114.5,-56,0,0,-0.00568307 -25047,3511:465:1,115,-56,0,0,-0.00604257 -25048,3511:465:2,115.5,-56,0,0,-0.00603585 -25049,3511:466:1,116,-56,0,0,-0.00632009 -25050,3511:466:2,116.5,-56,0,0,-0.00629903 -25051,3511:467:1,117,-56,0,0,-0.00670967 -25052,3511:467:2,117.5,-56,0,0,-0.00697137 -25053,3511:468:1,118,-56,0,0,-0.00702587 -25054,3511:468:2,118.5,-56,0,0,-0.00702745 -25055,3511:469:1,119,-56,0,0,-0.00703528 -25056,3511:469:2,119.5,-56,0,0,-0.00705566 -25057,3512:360:1,120,-56,0,0,-0.00728216 -25058,3512:360:2,120.5,-56,0,0,-0.007344 -25059,3512:361:1,121,-56,0,0,-0.00726275 -25060,3512:361:2,121.5,-56,0,0,-0.00726275 -25061,3512:362:1,122,-56,0,0,-0.00741628 -25062,3512:362:2,122.5,-56,0,0,-0.00775565 -25063,3512:363:1,123,-56,0,0,-0.00799768 -25064,3512:363:2,123.5,-56,0,0,-0.00804233 -25065,3512:364:1,124,-56,0,0,-0.00813425 -25066,3512:364:2,124.5,-56,0,0,-0.00828419 -25067,3512:465:1,125,-56,0,0,-0.00832671 -25068,3512:465:2,125.5,-56,0,0,-0.0083193 -25069,3512:466:1,126,-56,0,0,-0.00830263 -25070,3512:466:2,126.5,-56,0,0,-0.00829896 -25071,3512:467:1,127,-56,0,0,-0.00842374 -25072,3512:467:2,127.5,-56,0,0,-0.00847078 -25073,3512:468:1,128,-56,0,0,-0.00849351 -25074,3512:468:2,128.5,-56,0,0,-0.0085638 -25075,3512:469:1,129,-56,0,0,-0.00868296 -25076,3512:469:2,129.5,-56,0,0,-0.00890244 -25077,3513:360:1,130,-56,0,0,-0.00911939 -25078,3513:360:2,130.5,-56,0,0,-0.00920517 -25079,3513:361:1,131,-56,0,0,-0.00909906 -25080,3513:361:2,131.5,-56,0,0,-0.00882539 -25081,3513:362:1,132,-56,0,0,-0.0086868 -25082,3513:362:2,132.5,-56,0,0,-0.0087959 -25083,3513:363:1,133,-56,0,0,-0.00919078 -25084,3513:363:2,133.5,-56,0,0,-0.0095822 -25085,3513:364:1,134,-56,0,0,-0.00962718 -25086,3513:364:2,134.5,-56,0,0,-0.00951408 -25087,3513:465:1,135,-56,0,0,-0.00931875 -25088,3513:465:2,135.5,-56,0,0,-0.00890244 -25089,3513:466:1,136,-56,0,0,-0.00825838 -25090,3513:466:2,136.5,-56,0,0,-0.00775396 -25091,3513:467:1,137,-56,0,0,-0.00776256 -25092,3513:467:2,137.5,-56,0,0,-0.00796037 -25093,3513:468:1,138,-56,0,0,-0.00800127 -25094,3513:468:2,138.5,-56,0,0,-0.00757479 -25095,3513:469:1,139,-56,0,0,-0.00700406 -25096,3513:469:2,139.5,-56,0,0,-0.00660162 -25097,3514:360:1,140,-56,0,0,-0.00656797 -25098,3514:360:2,140.5,-56,0,0,-0.00680134 -25099,3514:361:1,141,-56,0,0,-0.00710764 -25100,3514:361:2,141.5,-56,0,0,-0.00716005 -25101,3514:362:1,142,-56,0,0,-0.00716161 -25102,3514:362:2,142.5,-56,0,0,-0.00733423 -25103,3514:363:1,143,-56,0,0,-0.00772121 -25104,3514:363:2,143.5,-56,0,0,-0.00773844 -25105,3514:364:1,144,-56,0,0,-0.00745437 -25106,3514:364:2,144.5,-56,0,0,-0.00777639 -25107,3514:465:1,145,-56,0,0,-0.00809987 -25108,3514:465:2,145.5,-56,0,0,-0.00783202 -25109,3514:466:1,146,-56,0,0,-0.00713302 -25110,3514:466:2,146.5,-56,0,0,-0.00641637 -25111,3514:467:1,147,-56,0,0,-0.00631024 -25112,3514:467:2,147.5,-56,0,0,-0.00659723 -25113,3514:468:1,148,-56,0,0,-0.00647081 -25114,3514:468:2,148.5,-56,0,0,-0.00606676 -25115,3514:469:1,149,-56,0,0,-0.005767 -25116,3514:469:2,149.5,-56,0,0,-0.00565156 -25117,3515:360:1,150,-56,0,0,-0.0056028 -25118,3515:360:2,150.5,-56,0,0,-0.00557797 -25119,3515:361:1,151,-56,0,0,-0.00558047 -25120,3515:361:2,151.5,-56,0,0,-0.00563652 -25121,3515:362:1,152,-56,0,0,-0.00576446 -25122,3515:362:2,152.5,-56,0,0,-0.00576446 -25123,3515:363:1,153,-56,0,0,-0.00565785 -25124,3515:363:2,153.5,-56,0,0,-0.005536 -25125,3515:364:1,154,-56,0,0,-0.00551147 -25126,3515:364:2,154.5,-56,0,0,-0.00549557 -25127,3515:465:1,155,-56,0,0,-0.00548337 -25128,3515:465:2,155.5,-56,0,0,-0.00548091 -25129,3515:466:1,156,-56,0,0,-0.00548091 -25130,3515:466:2,156.5,-56,0,0,-0.0054785 -25131,3515:467:1,157,-56,0,0,-0.0054785 -25132,3515:467:2,157.5,-56,0,0,-0.0054785 -25133,3515:468:1,158,-56,0,0,-0.00547727 -25134,3515:468:2,158.5,-56,0,0,-0.00547486 -25135,3515:469:1,159,-56,0,0,-0.00547364 -25136,3515:469:2,159.5,-56,0,0,-0.00547364 -25137,3516:360:1,160,-56,0,0,-0.00547364 -25138,3516:360:2,160.5,-56,0,0,-0.00547364 -25139,3516:361:1,161,-56,0,0,-0.00547364 -25140,3516:361:2,161.5,-56,0,0,-0.00547241 -25141,3516:362:1,162,-56,0,0,-0.00547119 -25142,3516:362:2,162.5,-56,0,0,-0.00547119 -25143,3516:363:1,163,-56,0,0,-0.00547241 -25144,3516:363:2,163.5,-56,0,0,-0.00547364 -25145,3516:364:1,164,-56,0,0,-0.00547486 -25146,3516:364:2,164.5,-56,0,0,-0.0054785 -25147,3516:465:1,165,-56,0,0,-0.00548337 -25148,3516:465:2,165.5,-56,0,0,-0.00548824 -25149,3516:466:1,166,-56,0,0,-0.00555819 -25150,3516:466:2,166.5,-56,0,0,-0.00605061 -25151,3516:467:1,167,-56,0,0,-0.00661193 -25152,3516:467:2,167.5,-56,0,0,-0.00733747 -25153,3516:468:1,168,-56,0,0,-0.00763062 -25154,3516:468:2,168.5,-56,0,0,-0.00729191 -25155,3516:469:1,169,-56,0,0,-0.00737018 -25156,3516:469:2,169.5,-56,0,0,-0.00771775 -25157,3517:360:1,170,-56,0,0,-0.00756635 -25158,3517:360:2,170.5,-56,0,0,-0.0073784 -25159,3517:361:1,171,-56,0,0,-0.00724015 -25160,3517:361:2,171.5,-56,0,0,-0.00717919 -25161,3517:362:1,172,-56,0,0,-0.00705408 -25162,3517:362:2,172.5,-56,0,0,-0.00686368 -25163,3517:363:1,173,-56,0,0,-0.00633555 -25164,3517:363:2,173.5,-56,0,0,-0.00610466 -25165,3517:364:1,174,-56,0,0,-0.00666361 -25166,3517:364:2,174.5,-56,0,0,-0.00847833 -25167,3517:465:1,175,-56,0,0,-0.0114075 -25168,3517:465:2,175.5,-56,0,0,-0.0135184 -25169,3517:466:1,176,-56,0,0,-0.0139959 -25170,3517:466:2,176.5,-56,0,0,-0.0139521 -25171,3517:467:1,177,-56,0,0,-0.013335 -25172,3517:467:2,177.5,-56,0,0,-0.0127569 -25173,3517:468:1,178,-56,0,0,-0.0127598 -25174,3517:468:2,178.5,-56,0,0,-0.0132873 -25175,3517:469:1,179,-56,0,0,-0.0138742 -25176,3517:469:2,179.5,-56,0,0,-0.0140619 -25177,3518:360:1,180,-56,0,0,-0.0136736 -25178,5518:350:3,-180,-55.5,0,0,-0.0139022 -25179,5517:459:4,-179.5,-55.5,0,0,-0.0134098 -25180,5517:459:3,-179,-55.5,0,0,-0.0112556 -25181,5517:458:4,-178.5,-55.5,0,0,-0.0104746 -25182,5517:458:3,-178,-55.5,0,0,-0.0110586 -25183,5517:457:4,-177.5,-55.5,0,0,-0.0113794 -25184,5517:457:3,-177,-55.5,0,0,-0.0115382 -25185,5517:456:4,-176.5,-55.5,0,0,-0.0114997 -25186,5517:456:3,-176,-55.5,0,0,-0.0113313 -25187,5517:455:4,-175.5,-55.5,0,0,-0.0110315 -25188,5517:455:3,-175,-55.5,0,0,-0.0107063 -25189,5517:354:4,-174.5,-55.5,0,0,-0.0105544 -25190,5517:354:3,-174,-55.5,0,0,-0.0104792 -25191,5517:353:4,-173.5,-55.5,0,0,-0.0101206 -25192,5517:353:3,-173,-55.5,0,0,-0.00930215 -25193,5517:352:4,-172.5,-55.5,0,0,-0.00911734 -25194,5517:352:3,-172,-55.5,0,0,-0.00929595 -25195,5517:351:4,-171.5,-55.5,0,0,-0.00911325 -25196,5517:351:3,-171,-55.5,0,0,-0.00883524 -25197,5517:350:4,-170.5,-55.5,0,0,-0.00870425 -25198,5517:350:3,-170,-55.5,0,0,-0.00853142 -25199,5516:459:4,-169.5,-55.5,0,0,-0.00830449 -25200,5516:459:3,-169,-55.5,0,0,-0.00799057 -25201,5516:458:4,-168.5,-55.5,0,0,-0.00775049 -25202,5516:458:3,-168,-55.5,0,0,-0.00770921 -25203,5516:457:4,-167.5,-55.5,0,0,-0.00766981 -25204,5516:457:3,-167,-55.5,0,0,-0.00768692 -25205,5516:456:4,-166.5,-55.5,0,0,-0.00774701 -25206,5516:456:3,-166,-55.5,0,0,-0.0076886 -25207,5516:455:4,-165.5,-55.5,0,0,-0.00765102 -25208,5516:455:3,-165,-55.5,0,0,-0.00764593 -25209,5516:354:4,-164.5,-55.5,0,0,-0.00762383 -25210,5516:354:3,-164,-55.5,0,0,-0.00759334 -25211,5516:353:4,-163.5,-55.5,0,0,-0.00758153 -25212,5516:353:3,-163,-55.5,0,0,-0.00755459 -25213,5516:352:4,-162.5,-55.5,0,0,-0.00748761 -25214,5516:352:3,-162,-55.5,0,0,-0.00741956 -25215,5516:351:4,-161.5,-55.5,0,0,-0.00742783 -25216,5516:351:3,-161,-55.5,0,0,-0.00749259 -25217,5516:350:4,-160.5,-55.5,0,0,-0.00751599 -25218,5516:350:3,-160,-55.5,0,0,-0.00750431 -25219,5515:459:4,-159.5,-55.5,0,0,-0.00748761 -25220,5515:459:3,-159,-55.5,0,0,-0.00748593 -25221,5515:458:4,-158.5,-55.5,0,0,-0.00750594 -25222,5515:458:3,-158,-55.5,0,0,-0.00756805 -25223,5515:457:4,-157.5,-55.5,0,0,-0.0076852 -25224,5515:457:3,-157,-55.5,0,0,-0.00778162 -25225,5515:456:4,-156.5,-55.5,0,0,-0.00775913 -25226,5515:456:3,-156,-55.5,0,0,-0.00767664 -25227,5515:455:4,-155.5,-55.5,0,0,-0.00764256 -25228,5515:455:3,-155,-55.5,0,0,-0.00767153 -25229,5515:354:4,-154.5,-55.5,0,0,-0.0076732 -25230,5515:354:3,-154,-55.5,0,0,-0.00766471 -25231,5515:353:4,-153.5,-55.5,0,0,-0.00758488 -25232,5515:353:3,-153,-55.5,0,0,-0.00749091 -25233,5515:352:4,-152.5,-55.5,0,0,-0.00747262 -25234,5515:352:3,-152,-55.5,0,0,-0.00753609 -25235,5515:351:4,-151.5,-55.5,0,0,-0.00761876 -25236,5515:351:3,-151,-55.5,0,0,-0.00809629 -25237,5515:350:4,-150.5,-55.5,0,0,-0.00872173 -25238,5515:350:3,-150,-55.5,0,0,-0.00895017 -25239,5514:459:4,-149.5,-55.5,0,0,-0.00901826 -25240,5514:459:3,-149,-55.5,0,0,-0.00945907 -25241,5514:458:4,-148.5,-55.5,0,0,-0.00971997 -25242,5514:458:3,-148,-55.5,0,0,-0.0097113 -25243,5514:457:4,-147.5,-55.5,0,0,-0.00955022 -25244,5514:457:3,-147,-55.5,0,0,-0.0089422 -25245,5514:456:4,-146.5,-55.5,0,0,-0.00815057 -25246,5514:456:3,-146,-55.5,0,0,-0.00788976 -25247,5514:455:4,-145.5,-55.5,0,0,-0.00792146 -25248,5514:455:3,-145,-55.5,0,0,-0.00822532 -25249,5514:354:4,-144.5,-55.5,0,0,-0.00889451 -25250,5514:354:3,-144,-55.5,0,0,-0.00956297 -25251,5514:353:4,-143.5,-55.5,0,0,-0.0098356 -25252,5514:353:3,-143,-55.5,0,0,-0.0095929 -25253,5514:352:4,-142.5,-55.5,0,0,-0.00912951 -25254,5514:352:3,-142,-55.5,0,0,-0.00871396 -25255,5514:351:4,-141.5,-55.5,0,0,-0.00863467 -25256,5514:351:3,-141,-55.5,0,0,-0.00881555 -25257,5514:350:4,-140.5,-55.5,0,0,-0.00933957 -25258,5514:350:3,-140,-55.5,0,0,-0.0101795 -25259,5513:459:4,-139.5,-55.5,0,0,-0.0106919 -25260,5513:459:3,-139,-55.5,0,0,-0.0106562 -25261,5513:458:4,-138.5,-55.5,0,0,-0.0101613 -25262,5513:458:3,-138,-55.5,0,0,-0.00990388 -25263,5513:457:4,-137.5,-55.5,0,0,-0.0099548 -25264,5513:457:3,-137,-55.5,0,0,-0.0101093 -25265,5513:456:4,-136.5,-55.5,0,0,-0.0102685 -25266,5513:456:3,-136,-55.5,0,0,-0.0106514 -25267,5513:455:4,-135.5,-55.5,0,0,-0.0112129 -25268,5513:455:3,-135,-55.5,0,0,-0.0113897 -25269,5513:354:4,-134.5,-55.5,0,0,-0.0113287 -25270,5513:354:3,-134,-55.5,0,0,-0.0111106 -25271,5513:353:4,-133.5,-55.5,0,0,-0.0109432 -25272,5513:353:3,-133,-55.5,0,0,-0.0111554 -25273,5513:352:4,-132.5,-55.5,0,0,-0.0112909 -25274,5513:352:3,-132,-55.5,0,0,-0.0113464 -25275,5513:351:4,-131.5,-55.5,0,0,-0.0115692 -25276,5513:351:3,-131,-55.5,0,0,-0.0117859 -25277,5513:350:4,-130.5,-55.5,0,0,-0.0116784 -25278,5513:350:3,-130,-55.5,0,0,-0.0114842 -25279,5512:459:4,-129.5,-55.5,0,0,-0.0114945 -25280,5512:459:3,-129,-55.5,0,0,-0.0117517 -25281,5512:458:4,-128.5,-55.5,0,0,-0.011749 -25282,5512:458:3,-128,-55.5,0,0,-0.0118731 -25283,5512:457:4,-127.5,-55.5,0,0,-0.0120093 -25284,5512:457:3,-127,-55.5,0,0,-0.012128 -25285,5512:456:4,-126.5,-55.5,0,0,-0.0122206 -25286,5512:456:3,-126,-55.5,0,0,-0.012237 -25287,5512:455:4,-125.5,-55.5,0,0,-0.0121172 -25288,5512:455:3,-125,-55.5,0,0,-0.0119024 -25289,5512:354:4,-124.5,-55.5,0,0,-0.0116496 -25290,5512:354:3,-124,-55.5,0,0,-0.0114279 -25291,5512:353:4,-123.5,-55.5,0,0,-0.0112808 -25292,5512:353:3,-123,-55.5,0,0,-0.0112079 -25293,5512:352:4,-122.5,-55.5,0,0,-0.011148 -25294,5512:352:3,-122,-55.5,0,0,-0.0112229 -25295,5512:351:4,-121.5,-55.5,0,0,-0.0114561 -25296,5512:351:3,-121,-55.5,0,0,-0.0116757 -25297,5512:350:4,-120.5,-55.5,0,0,-0.0120658 -25298,5512:350:3,-120,-55.5,0,0,-0.0124803 -25299,5511:459:4,-119.5,-55.5,0,0,-0.0126093 -25300,5511:459:3,-119,-55.5,0,0,-0.0126518 -25301,5511:458:4,-118.5,-55.5,0,0,-0.0127855 -25302,5511:458:3,-118,-55.5,0,0,-0.0130077 -25303,5511:457:4,-117.5,-55.5,0,0,-0.0132724 -25304,5511:457:3,-117,-55.5,0,0,-0.0135214 -25305,5511:456:4,-116.5,-55.5,0,0,-0.0136645 -25306,5511:456:3,-116,-55.5,0,0,-0.013732 -25307,5511:455:4,-115.5,-55.5,0,0,-0.0137905 -25308,5511:455:3,-115,-55.5,0,0,-0.0137874 -25309,5511:354:4,-114.5,-55.5,0,0,-0.0137936 -25310,5511:354:3,-114,-55.5,0,0,-0.013871 -25311,5511:353:4,-113.5,-55.5,0,0,-0.0140493 -25312,5511:353:3,-113,-55.5,0,0,-0.0144906 -25313,5511:352:4,-112.5,-55.5,0,0,-0.0149325 -25314,5511:352:3,-112,-55.5,0,0,-0.0148424 -25315,5511:351:4,-111.5,-55.5,0,0,-0.0146901 -25316,5511:351:3,-111,-55.5,0,0,-0.014723 -25317,5511:350:4,-110.5,-55.5,0,0,-0.0147628 -25318,5511:350:3,-110,-55.5,0,0,-0.0143806 -25319,5510:459:4,-109.5,-55.5,0,0,-0.0138152 -25320,5510:459:3,-109,-55.5,0,0,-0.0137381 -25321,5510:458:4,-108.5,-55.5,0,0,-0.0140619 -25322,5510:458:3,-108,-55.5,0,0,-0.0143388 -25323,5510:457:4,-107.5,-55.5,0,0,-0.0148291 -25324,5510:457:3,-107,-55.5,0,0,-0.0149526 -25325,5510:456:4,-106.5,-55.5,0,0,-0.0146934 -25326,5510:456:3,-106,-55.5,0,0,-0.0141029 -25327,5510:455:4,-105.5,-55.5,0,0,-0.0135002 -25328,5510:455:3,-105,-55.5,0,0,-0.0130895 -25329,5510:354:4,-104.5,-55.5,0,0,-0.0127712 -25330,5510:354:3,-104,-55.5,0,0,-0.012584 -25331,5510:353:4,-103.5,-55.5,0,0,-0.0124858 -25332,5510:353:3,-103,-55.5,0,0,-0.0124273 -25333,5510:352:4,-102.5,-55.5,0,0,-0.0123221 -25334,5510:352:3,-102,-55.5,0,0,-0.0122672 -25335,5510:351:4,-101.5,-55.5,0,0,-0.0123221 -25336,5510:351:3,-101,-55.5,0,0,-0.0124301 -25337,5510:350:4,-100.5,-55.5,0,0,-0.0124468 -25338,5510:350:3,-100,-55.5,0,0,-0.0122672 -25339,5509:459:4,-99.5,-55.5,0,0,-0.0118255 -25340,5509:459:3,-99,-55.5,0,0,-0.0114228 -25341,5509:458:4,-98.5,-55.5,0,0,-0.011306 -25342,5509:458:3,-98,-55.5,0,0,-0.0114075 -25343,5509:457:4,-97.5,-55.5,0,0,-0.0118625 -25344,5509:457:3,-97,-55.5,0,0,-0.0127312 -25345,5509:456:4,-96.5,-55.5,0,0,-0.0133111 -25346,5509:456:3,-96,-55.5,0,0,-0.0132873 -25347,5509:455:4,-95.5,-55.5,0,0,-0.0129149 -25348,5509:455:3,-95,-55.5,0,0,-0.0125362 -25349,5509:354:4,-94.5,-55.5,0,0,-0.0122672 -25350,5509:354:3,-94,-55.5,0,0,-0.0120281 -25351,5509:353:4,-93.5,-55.5,0,0,-0.0117675 -25352,5509:353:3,-93,-55.5,0,0,-0.0116029 -25353,5509:352:4,-92.5,-55.5,0,0,-0.0116029 -25354,5509:352:3,-92,-55.5,0,0,-0.0117912 -25355,5509:351:4,-91.5,-55.5,0,0,-0.0121524 -25356,5509:351:3,-91,-55.5,0,0,-0.0126037 -25357,5509:350:4,-90.5,-55.5,0,0,-0.0126971 -25358,5509:350:3,-90,-55.5,0,0,-0.0124607 -25359,5508:459:4,-89.5,-55.5,0,0,-0.0121145 -25360,5508:459:3,-89,-55.5,0,0,-0.0124412 -25361,5508:458:4,-88.5,-55.5,0,0,-0.0132427 -25362,5508:458:3,-88,-55.5,0,0,-0.0142459 -25363,5508:457:4,-87.5,-55.5,0,0,-0.0143323 -25364,5508:457:3,-87,-55.5,0,0,-0.0143227 -25365,5508:456:4,-86.5,-55.5,0,0,-0.0142618 -25366,5508:456:3,-86,-55.5,0,0,-0.0142299 -25367,5508:455:4,-85.5,-55.5,0,0,-0.0141346 -25368,5508:455:3,-85,-55.5,0,0,-0.0141377 -25369,5508:354:4,-84.5,-55.5,0,0,-0.0140399 -25370,5508:354:3,-84,-55.5,0,0,-0.0138897 -25371,5508:353:4,-83.5,-55.5,0,0,-0.0137627 -25372,5508:353:3,-83,-55.5,0,0,-0.0137535 -25373,5508:352:4,-82.5,-55.5,0,0,-0.0135912 -25374,5508:352:3,-82,-55.5,0,0,-0.0137135 -25375,5508:351:4,-81.5,-55.5,0,0,-0.0141599 -25376,5508:351:3,-81,-55.5,0,0,-0.014198 -25377,5508:350:4,-80.5,-55.5,0,0,-0.0141156 -25378,5508:350:3,-80,-55.5,0,0,-0.0139614 -25379,5507:459:4,-79.5,-55.5,0,0,-0.0138803 -25380,5507:459:3,-79,-55.5,0,0,-0.0135487 -25381,5507:458:4,-78.5,-55.5,0,0,-0.013072 -25382,5507:458:3,-78,-55.5,0,0,-0.0124942 -25383,5507:457:4,-77.5,-55.5,0,0,-0.0116784 -25384,5507:457:3,-77,-55.5,0,0,-0.0106134 -25385,5507:456:4,-76.5,-55.5,0,0,-0.00953528 -25386,5507:456:3,-76,-55.5,0,0,-0.00883716 -25387,5507:455:4,-75.5,-55.5,0,0,-0.00858479 -25388,5507:455:3,-75,-55.5,0,0,-0.00885889 -25389,5507:354:4,-74.5,-55.5,0,0,-0.00942328 -25390,5507:354:3,-74,-55.5,0,0,-0.0105097 -25391,5507:353:4,-73.5,-55.5,0,0,-0.0128976 -25392,5507:353:3,-73,-55.5,0,0,-0.0148324 -25393,5507:352:4,-72.5,-55.5,0,0,-0.0137813 -25394,5507:352:3,-72,-55.5,0,0,-0.0122918 -25395,5507:351:4,-71.5,-55.5,0,0,-0.0120712 -25396,5507:351:3,-71,-55.5,0,0,-0.0122864 -25397,5507:350:4,-70.5,-55.5,0,0,-0.0123663 -25398,5507:350:3,-70,-55.5,0,0,-0.0124162 -25399,5506:459:4,-69.5,-55.5,0,0,-0.012511 -25400,5506:459:3,-69,-55.5,0,0,-0.0125952 -25401,5506:458:4,-68.5,-55.5,0,0,-0.0125727 -25402,5506:458:3,-68,-55.5,0,0,-0.0122261 -25403,5506:457:4,-67.5,-55.5,0,0,-0.0114457 -25404,5506:457:3,-67,-55.5,0,0,-0.0102823 -25405,5506:456:4,-66.5,-55.5,0,0,-0.00867523 -25406,5506:456:3,-66,-55.5,0,0,-0.00749427 -25407,5506:455:4,-65.5,-55.5,0,0,-0.00683017 -25408,5506:455:3,-65,-55.5,0,0,-0.00676662 -25409,5506:354:4,-64.5,-55.5,0,0,-0.00671564 -25410,5506:354:3,-64,-55.5,0,0,-0.00657086 -25411,5506:353:4,-63.5,-55.5,0,0,-0.00634261 -25412,5506:353:3,-63,-55.5,0,0,-0.00638505 -25413,5506:352:4,-62.5,-55.5,0,0,-0.00627808 -25414,5506:352:3,-62,-55.5,0,0,-0.0062697 -25415,5506:351:4,-61.5,-55.5,0,0,-0.00620592 -25416,5506:351:3,-61,-55.5,0,0,-0.00620314 -25417,5506:350:4,-60.5,-55.5,0,0,-0.00639641 -25418,5506:350:3,-60,-55.5,0,0,-0.0064121 -25419,5505:459:4,-59.5,-55.5,0,0,-0.00636097 -25420,5505:459:3,-59,-55.5,0,0,-0.00627944 -25421,5505:458:4,-58.5,-55.5,0,0,-0.00626132 -25422,5505:458:3,-58,-55.5,0,0,-0.00622523 -25423,5505:457:4,-57.5,-55.5,0,0,-0.00612914 -25424,5505:457:3,-57,-55.5,0,0,-0.00605463 -25425,5505:456:4,-56.5,-55.5,0,0,-0.0060372 -25426,5505:456:3,-56,-55.5,0,0,-0.00596382 -25427,5505:455:4,-55.5,-55.5,0,0,-0.00592286 -25428,5505:455:3,-55,-55.5,0,0,-0.00586132 -25429,5505:354:4,-54.5,-55.5,0,0,-0.00578243 -25430,5505:354:3,-54,-55.5,0,0,-0.00558789 -25431,5505:353:4,-53.5,-55.5,0,0,-0.00547241 -25432,5505:353:3,-53,-55.5,0,0,-0.00547 -25433,5505:352:4,-52.5,-55.5,0,0,-0.00546633 -25434,5505:352:3,-52,-55.5,0,0,-0.00546148 -25435,5505:351:4,-51.5,-55.5,0,0,-0.00545907 -25436,5505:351:3,-51,-55.5,0,0,-0.00545785 -25437,5505:350:4,-50.5,-55.5,0,0,-0.00545785 -25438,5505:350:3,-50,-55.5,0,0,-0.00545785 -25439,5504:459:4,-49.5,-55.5,0,0,-0.00545907 -25440,5504:459:3,-49,-55.5,0,0,-0.00546026 -25441,5504:458:4,-48.5,-55.5,0,0,-0.00546026 -25442,5504:458:3,-48,-55.5,0,0,-0.00546026 -25443,5504:457:4,-47.5,-55.5,0,0,-0.00546026 -25444,5504:457:3,-47,-55.5,0,0,-0.0054627 -25445,5504:456:4,-46.5,-55.5,0,0,-0.00546511 -25446,5504:456:3,-46,-55.5,0,0,-0.00546633 -25447,5504:455:4,-45.5,-55.5,0,0,-0.00546392 -25448,5504:455:3,-45,-55.5,0,0,-0.0054627 -25449,5504:354:4,-44.5,-55.5,0,0,-0.00546026 -25450,5504:354:3,-44,-55.5,0,0,-0.00545907 -25451,5504:353:4,-43.5,-55.5,0,0,-0.00545785 -25452,5504:353:3,-43,-55.5,0,0,-0.00545663 -25453,5504:352:4,-42.5,-55.5,0,0,-0.00545541 -25454,5504:352:3,-42,-55.5,0,0,-0.005453 -25455,5504:351:4,-41.5,-55.5,0,0,-0.00545179 -25456,5504:351:3,-41,-55.5,0,0,-0.00545057 -25457,5504:350:4,-40.5,-55.5,0,0,-0.00545057 -25458,5504:350:3,-40,-55.5,0,0,-0.00544935 -25459,5503:459:4,-39.5,-55.5,0,0,-0.00544816 -25460,5503:459:3,-39,-55.5,0,0,-0.00544695 -25461,5503:458:4,-38.5,-55.5,0,0,-0.00544451 -25462,5503:458:3,-38,-55.5,0,0,-0.00544451 -25463,5503:457:4,-37.5,-55.5,0,0,-0.00544695 -25464,5503:457:3,-37,-55.5,0,0,-0.00544816 -25465,5503:456:4,-36.5,-55.5,0,0,-0.00544816 -25466,5503:456:3,-36,-55.5,0,0,-0.00544935 -25467,5503:455:4,-35.5,-55.5,0,0,-0.00545179 -25468,5503:455:3,-35,-55.5,0,0,-0.005453 -25469,5503:354:4,-34.5,-55.5,0,0,-0.00545423 -25470,5503:354:3,-34,-55.5,0,0,-0.00545663 -25471,5503:353:4,-33.5,-55.5,0,0,-0.00545785 -25472,5503:353:3,-33,-55.5,0,0,-0.00545907 -25473,5503:352:4,-32.5,-55.5,0,0,-0.00546026 -25474,5503:352:3,-32,-55.5,0,0,-0.00546026 -25475,5503:351:4,-31.5,-55.5,0,0,-0.00546026 -25476,5503:351:3,-31,-55.5,0,0,-0.00546026 -25477,5503:350:4,-30.5,-55.5,0,0,-0.00546148 -25478,5503:350:3,-30,-55.5,0,0,-0.00546148 -25479,5502:459:4,-29.5,-55.5,0,0,-0.00546148 -25480,5502:459:3,-29,-55.5,0,0,-0.00546148 -25481,5502:458:4,-28.5,-55.5,0,0,-0.00546148 -25482,5502:458:3,-28,-55.5,0,0,-0.00546148 -25483,5502:457:4,-27.5,-55.5,0,0,-0.00546148 -25484,5502:457:3,-27,-55.5,0,0,-0.00546026 -25485,5502:456:4,-26.5,-55.5,0,0,-0.00546026 -25486,5502:456:3,-26,-55.5,0,0,-0.00546026 -25487,5502:455:4,-25.5,-55.5,0,0,-0.00545907 -25488,5502:455:3,-25,-55.5,0,0,-0.00545907 -25489,5502:354:4,-24.5,-55.5,0,0,-0.00545785 -25490,5502:354:3,-24,-55.5,0,0,-0.00545663 -25491,5502:353:4,-23.5,-55.5,0,0,-0.00545541 -25492,5502:353:3,-23,-55.5,0,0,-0.00545423 -25493,5502:352:4,-22.5,-55.5,0,0,-0.005453 -25494,5502:352:3,-22,-55.5,0,0,-0.00545179 -25495,5502:351:4,-21.5,-55.5,0,0,-0.00545057 -25496,5502:351:3,-21,-55.5,0,0,-0.00544935 -25497,5502:350:4,-20.5,-55.5,0,0,-0.00544816 -25498,5502:350:3,-20,-55.5,0,0,-0.00544695 -25499,5501:459:4,-19.5,-55.5,0,0,-0.00544573 -25500,5501:459:3,-19,-55.5,0,0,-0.00544451 -25501,5501:458:4,-18.5,-55.5,0,0,-0.00544333 -25502,5501:458:3,-18,-55.5,0,0,-0.00544211 -25503,5501:457:4,-17.5,-55.5,0,0,-0.00544089 -25504,5501:457:3,-17,-55.5,0,0,-0.00544211 -25505,5501:456:4,-16.5,-55.5,0,0,-0.00544935 -25506,5501:456:3,-16,-55.5,0,0,-0.005453 -25507,5501:455:4,-15.5,-55.5,0,0,-0.00546026 -25508,5501:455:3,-15,-55.5,0,0,-0.00546511 -25509,5501:354:4,-14.5,-55.5,0,0,-0.00546148 -25510,5501:354:3,-14,-55.5,0,0,-0.00545663 -25511,5501:353:4,-13.5,-55.5,0,0,-0.00545179 -25512,5501:353:3,-13,-55.5,0,0,-0.00544816 -25513,5501:352:4,-12.5,-55.5,0,0,-0.00544573 -25514,5501:352:3,-12,-55.5,0,0,-0.00544451 -25515,5501:351:4,-11.5,-55.5,0,0,-0.00544333 -25516,5501:351:3,-11,-55.5,0,0,-0.00544333 -25517,5501:350:4,-10.5,-55.5,0,0,-0.00544211 -25518,5501:350:3,-10,-55.5,0,0,-0.00544211 -25519,5500:459:4,-9.5,-55.5,0,0,-0.00544089 -25520,5500:459:3,-9,-55.5,0,0,-0.00543968 -25521,5500:458:4,-8.5,-55.5,0,0,-0.00543968 -25522,5500:458:3,-8,-55.5,0,0,-0.0054385 -25523,5500:457:4,-7.5,-55.5,0,0,-0.00543728 -25524,5500:457:3,-7,-55.5,0,0,-0.00543728 -25525,5500:456:4,-6.5,-55.5,0,0,-0.00543728 -25526,5500:456:3,-6,-55.5,0,0,-0.00543728 -25527,5500:455:4,-5.5,-55.5,0,0,-0.0054385 -25528,5500:455:3,-5,-55.5,0,0,-0.00543968 -25529,5500:354:4,-4.5,-55.5,0,0,-0.00543968 -25530,5500:354:3,-4,-55.5,0,0,-0.00544089 -25531,5500:353:4,-3.5,-55.5,0,0,-0.00544211 -25532,5500:353:3,-3,-55.5,0,0,-0.00544211 -25533,5500:352:4,-2.5,-55.5,0,0,-0.00544211 -25534,5500:352:3,-2,-55.5,0,0,-0.00544089 -25535,5500:351:4,-1.5,-55.5,0,0,-0.00543968 -25536,5500:351:3,-1,-55.5,0,0,-0.00543968 -25537,5500:350:4,-0.5,-55.5,0,0,-0.00544089 -25538,3500:350:4,0,-55.5,0,0,-0.00544089 -25539,3500:350:4,0.5,-55.5,0,0,-0.00544211 -25540,3500:351:3,1,-55.5,0,0,-0.00544211 -25541,3500:351:4,1.5,-55.5,0,0,-0.00544211 -25542,3500:352:3,2,-55.5,0,0,-0.00544089 -25543,3500:352:4,2.5,-55.5,0,0,-0.00544089 -25544,3500:353:3,3,-55.5,0,0,-0.00544089 -25545,3500:353:4,3.5,-55.5,0,0,-0.00543968 -25546,3500:354:3,4,-55.5,0,0,-0.0054385 -25547,3500:354:4,4.5,-55.5,0,0,-0.0054385 -25548,3500:455:3,5,-55.5,0,0,-0.0054385 -25549,3500:455:4,5.5,-55.5,0,0,-0.00543968 -25550,3500:456:3,6,-55.5,0,0,-0.00544211 -25551,3500:456:4,6.5,-55.5,0,0,-0.00544333 -25552,3500:457:3,7,-55.5,0,0,-0.00544573 -25553,3500:457:4,7.5,-55.5,0,0,-0.00544695 -25554,3500:458:3,8,-55.5,0,0,-0.00544695 -25555,3500:458:4,8.5,-55.5,0,0,-0.00544695 -25556,3500:459:3,9,-55.5,0,0,-0.00544816 -25557,3500:459:4,9.5,-55.5,0,0,-0.00545057 -25558,3501:350:3,10,-55.5,0,0,-0.005453 -25559,3501:350:4,10.5,-55.5,0,0,-0.005453 -25560,3501:351:3,11,-55.5,0,0,-0.00545179 -25561,3501:351:4,11.5,-55.5,0,0,-0.00545057 -25562,3501:352:3,12,-55.5,0,0,-0.00545057 -25563,3501:352:4,12.5,-55.5,0,0,-0.00545057 -25564,3501:353:3,13,-55.5,0,0,-0.00545179 -25565,3501:353:4,13.5,-55.5,0,0,-0.005453 -25566,3501:354:3,14,-55.5,0,0,-0.00545541 -25567,3501:354:4,14.5,-55.5,0,0,-0.00545541 -25568,3501:455:3,15,-55.5,0,0,-0.005453 -25569,3501:455:4,15.5,-55.5,0,0,-0.00545057 -25570,3501:456:3,16,-55.5,0,0,-0.00544816 -25571,3501:456:4,16.5,-55.5,0,0,-0.00544573 -25572,3501:457:3,17,-55.5,0,0,-0.00544451 -25573,3501:457:4,17.5,-55.5,0,0,-0.00544573 -25574,3501:458:3,18,-55.5,0,0,-0.00544573 -25575,3501:458:4,18.5,-55.5,0,0,-0.00543968 -25576,3501:459:3,19,-55.5,0,0,-0.00543363 -25577,3501:459:4,19.5,-55.5,0,0,-0.00543002 -25578,3502:350:3,20,-55.5,0,0,-0.00542642 -25579,3502:350:4,20.5,-55.5,0,0,-0.00542399 -25580,3502:351:3,21,-55.5,0,0,-0.0054216 -25581,3502:351:4,21.5,-55.5,0,0,-0.00541796 -25582,3502:352:3,22,-55.5,0,0,-0.00542399 -25583,3502:352:4,22.5,-55.5,0,0,-0.00544333 -25584,3502:353:3,23,-55.5,0,0,-0.00544695 -25585,3502:353:4,23.5,-55.5,0,0,-0.00544816 -25586,3502:354:3,24,-55.5,0,0,-0.00544816 -25587,3502:354:4,24.5,-55.5,0,0,-0.00544935 -25588,3502:455:3,25,-55.5,0,0,-0.00544935 -25589,3502:455:4,25.5,-55.5,0,0,-0.00544935 -25590,3502:456:3,26,-55.5,0,0,-0.00545057 -25591,3502:456:4,26.5,-55.5,0,0,-0.00545541 -25592,3502:457:3,27,-55.5,0,0,-0.00545907 -25593,3502:457:4,27.5,-55.5,0,0,-0.0054627 -25594,3502:458:3,28,-55.5,0,0,-0.00547241 -25595,3502:458:4,28.5,-55.5,0,0,-0.00549312 -25596,3502:459:3,29,-55.5,0,0,-0.0055188 -25597,3502:459:4,29.5,-55.5,0,0,-0.00553848 -25598,3503:350:3,30,-55.5,0,0,-0.0055434 -25599,3503:350:4,30.5,-55.5,0,0,-0.00552741 -25600,3503:351:3,31,-55.5,0,0,-0.00550777 -25601,3503:351:4,31.5,-55.5,0,0,-0.00549677 -25602,3503:352:3,32,-55.5,0,0,-0.00550534 -25603,3503:352:4,32.5,-55.5,0,0,-0.0055139 -25604,3503:353:3,33,-55.5,0,0,-0.00552127 -25605,3503:353:4,33.5,-55.5,0,0,-0.00553232 -25606,3503:354:3,34,-55.5,0,0,-0.005536 -25607,3503:354:4,34.5,-55.5,0,0,-0.00551513 -25608,3503:455:3,35,-55.5,0,0,-0.00549434 -25609,3503:455:4,35.5,-55.5,0,0,-0.00545541 -25610,3503:456:3,36,-55.5,0,0,-0.00545663 -25611,3503:456:4,36.5,-55.5,0,0,-0.00545785 -25612,3503:457:3,37,-55.5,0,0,-0.00544089 -25613,3503:457:4,37.5,-55.5,0,0,-0.00543728 -25614,3503:458:3,38,-55.5,0,0,-0.0054385 -25615,3503:458:4,38.5,-55.5,0,0,-0.00543968 -25616,3503:459:3,39,-55.5,0,0,-0.00543968 -25617,3503:459:4,39.5,-55.5,0,0,-0.00543968 -25618,3504:350:3,40,-55.5,0,0,-0.00543968 -25619,3504:350:4,40.5,-55.5,0,0,-0.0054385 -25620,3504:351:3,41,-55.5,0,0,-0.00543728 -25621,3504:351:4,41.5,-55.5,0,0,-0.00543606 -25622,3504:352:3,42,-55.5,0,0,-0.00543485 -25623,3504:352:4,42.5,-55.5,0,0,-0.00543728 -25624,3504:353:3,43,-55.5,0,0,-0.00544333 -25625,3504:353:4,43.5,-55.5,0,0,-0.00545057 -25626,3504:354:3,44,-55.5,0,0,-0.005453 -25627,3504:354:4,44.5,-55.5,0,0,-0.00546392 -25628,3504:455:3,45,-55.5,0,0,-0.00550165 -25629,3504:455:4,45.5,-55.5,0,0,-0.00552861 -25630,3504:456:3,46,-55.5,0,0,-0.00553848 -25631,3504:456:4,46.5,-55.5,0,0,-0.0055188 -25632,3504:457:3,47,-55.5,0,0,-0.00549312 -25633,3504:457:4,47.5,-55.5,0,0,-0.00547364 -25634,3504:458:3,48,-55.5,0,0,-0.00546878 -25635,3504:458:4,48.5,-55.5,0,0,-0.00547241 -25636,3504:459:3,49,-55.5,0,0,-0.00547364 -25637,3504:459:4,49.5,-55.5,0,0,-0.00546755 -25638,3505:350:3,50,-55.5,0,0,-0.00545785 -25639,3505:350:4,50.5,-55.5,0,0,-0.005453 -25640,3505:351:3,51,-55.5,0,0,-0.00544816 -25641,3505:351:4,51.5,-55.5,0,0,-0.00544451 -25642,3505:352:3,52,-55.5,0,0,-0.00544695 -25643,3505:352:4,52.5,-55.5,0,0,-0.00544816 -25644,3505:353:3,53,-55.5,0,0,-0.00544451 -25645,3505:353:4,53.5,-55.5,0,0,-0.00544089 -25646,3505:354:3,54,-55.5,0,0,-0.00543968 -25647,3505:354:4,54.5,-55.5,0,0,-0.0054385 -25648,3505:455:3,55,-55.5,0,0,-0.00549069 -25649,3505:455:4,55.5,-55.5,0,0,-0.00548091 -25650,3505:456:3,56,-55.5,0,0,-0.00544451 -25651,3505:456:4,56.5,-55.5,0,0,-0.00544333 -25652,3505:457:3,57,-55.5,0,0,-0.00544573 -25653,3505:457:4,57.5,-55.5,0,0,-0.00544816 -25654,3505:458:3,58,-55.5,0,0,-0.00545057 -25655,3505:458:4,58.5,-55.5,0,0,-0.00545179 -25656,3505:459:3,59,-55.5,0,0,-0.00545179 -25657,3505:459:4,59.5,-55.5,0,0,-0.00545179 -25658,3506:350:3,60,-55.5,0,0,-0.005453 -25659,3506:350:4,60.5,-55.5,0,0,-0.00545663 -25660,3506:351:3,61,-55.5,0,0,-0.00545663 -25661,3506:351:4,61.5,-55.5,0,0,-0.00546511 -25662,3506:352:3,62,-55.5,0,0,-0.00549434 -25663,3506:352:4,62.5,-55.5,0,0,-0.00547486 -25664,3506:353:3,63,-55.5,0,0,-0.00546148 -25665,3506:353:4,63.5,-55.5,0,0,-0.0054785 -25666,3506:354:3,64,-55.5,0,0,-0.00558418 -25667,3506:354:4,64.5,-55.5,0,0,-0.00561778 -25668,3506:455:3,65,-55.5,0,0,-0.0055941 -25669,3506:455:4,65.5,-55.5,0,0,-0.00558047 -25670,3506:456:3,66,-55.5,0,0,-0.00559908 -25671,3506:456:4,66.5,-55.5,0,0,-0.00557797 -25672,3506:457:3,67,-55.5,0,0,-0.00551513 -25673,3506:457:4,67.5,-55.5,0,0,-0.00547364 -25674,3506:458:3,68,-55.5,0,0,-0.00551024 -25675,3506:458:4,68.5,-55.5,0,0,-0.00573763 -25676,3506:459:3,69,-55.5,0,0,-0.00595589 -25677,3506:459:4,69.5,-55.5,0,0,-0.00598773 -25678,3507:350:3,70,-55.5,0,0,-0.00587306 -25679,3507:350:4,70.5,-55.5,0,0,-0.00572488 -25680,3507:351:3,71,-55.5,0,0,-0.00563652 -25681,3507:351:4,71.5,-55.5,0,0,-0.00566288 -25682,3507:352:3,72,-55.5,0,0,-0.00567171 -25683,3507:352:4,72.5,-55.5,0,0,-0.00566414 -25684,3507:353:4,73.5,-55.5,0,0,-0.00562651 -25685,3507:354:3,74,-55.5,0,0,-0.00558168 -25686,3507:354:4,74.5,-55.5,0,0,-0.00556313 -25687,3507:455:3,75,-55.5,0,0,-0.00558789 -25688,3507:455:4,75.5,-55.5,0,0,-0.00560405 -25689,3507:456:3,76,-55.5,0,0,-0.00558418 -25690,3507:456:4,76.5,-55.5,0,0,-0.00555694 -25691,3507:457:3,77,-55.5,0,0,-0.00556188 -25692,3507:457:4,77.5,-55.5,0,0,-0.00556437 -25693,3507:458:3,78,-55.5,0,0,-0.00556188 -25694,3507:458:4,78.5,-55.5,0,0,-0.00556682 -25695,3507:459:3,79,-55.5,0,0,-0.00558543 -25696,3507:459:4,79.5,-55.5,0,0,-0.00560903 -25697,3508:350:3,80,-55.5,0,0,-0.00560781 -25698,3508:350:4,80.5,-55.5,0,0,-0.0056403 -25699,3508:351:3,81,-55.5,0,0,-0.00569318 -25700,3508:351:4,81.5,-55.5,0,0,-0.00568812 -25701,3508:352:3,82,-55.5,0,0,-0.00572741 -25702,3508:352:4,82.5,-55.5,0,0,-0.00574144 -25703,3508:353:3,83,-55.5,0,0,-0.00571724 -25704,3508:353:4,83.5,-55.5,0,0,-0.00574273 -25705,3508:354:3,84,-55.5,0,0,-0.00575548 -25706,3508:354:4,84.5,-55.5,0,0,-0.00573888 -25707,3508:455:3,85,-55.5,0,0,-0.00570837 -25708,3508:455:4,85.5,-55.5,0,0,-0.00566288 -25709,3508:456:3,86,-55.5,0,0,-0.00562651 -25710,3508:456:4,86.5,-55.5,0,0,-0.00551147 -25711,3508:457:3,87,-55.5,0,0,-0.00544816 -25712,3508:457:4,87.5,-55.5,0,0,-0.00544333 -25713,3508:458:3,88,-55.5,0,0,-0.00544573 -25714,3508:458:4,88.5,-55.5,0,0,-0.00544816 -25715,3508:459:3,89,-55.5,0,0,-0.00545179 -25716,3508:459:4,89.5,-55.5,0,0,-0.00545541 -25717,3509:350:3,90,-55.5,0,0,-0.00545423 -25718,3509:350:4,90.5,-55.5,0,0,-0.00545785 -25719,3509:351:3,91,-55.5,0,0,-0.00554092 -25720,3509:351:4,91.5,-55.5,0,0,-0.00565409 -25721,3509:352:3,92,-55.5,0,0,-0.00588223 -25722,3509:352:4,92.5,-55.5,0,0,-0.00593472 -25723,3509:353:3,93,-55.5,0,0,-0.00595852 -25724,3509:353:4,93.5,-55.5,0,0,-0.00595323 -25725,3509:354:3,94,-55.5,0,0,-0.00592419 -25726,3509:354:4,94.5,-55.5,0,0,-0.00588745 -25727,3509:455:3,95,-55.5,0,0,-0.00582628 -25728,3509:455:4,95.5,-55.5,0,0,-0.00570837 -25729,3509:456:3,96,-55.5,0,0,-0.00565409 -25730,3509:456:4,96.5,-55.5,0,0,-0.00562526 -25731,3509:457:3,97,-55.5,0,0,-0.00548582 -25732,3509:457:4,97.5,-55.5,0,0,-0.00546878 -25733,3509:458:3,98,-55.5,0,0,-0.00546633 -25734,3509:458:4,98.5,-55.5,0,0,-0.00546633 -25735,3509:459:3,99,-55.5,0,0,-0.00546755 -25736,3509:459:4,99.5,-55.5,0,0,-0.00547119 -25737,3510:350:3,100,-55.5,0,0,-0.00547 -25738,3510:350:4,100.5,-55.5,0,0,-0.00547241 -25739,3510:351:3,101,-55.5,0,0,-0.00547241 -25740,3510:351:4,101.5,-55.5,0,0,-0.00546878 -25741,3510:352:3,102,-55.5,0,0,-0.00547 -25742,3510:352:4,102.5,-55.5,0,0,-0.00547486 -25743,3510:353:3,103,-55.5,0,0,-0.00548459 -25744,3510:353:4,103.5,-55.5,0,0,-0.00548947 -25745,3510:354:3,104,-55.5,0,0,-0.00547972 -25746,3510:354:4,104.5,-55.5,0,0,-0.00547486 -25747,3510:455:3,105,-55.5,0,0,-0.00547364 -25748,3510:455:4,105.5,-55.5,0,0,-0.00547119 -25749,3510:456:3,106,-55.5,0,0,-0.00546633 -25750,3510:456:4,106.5,-55.5,0,0,-0.0054627 -25751,3510:457:3,107,-55.5,0,0,-0.00546026 -25752,3510:457:4,107.5,-55.5,0,0,-0.00545785 -25753,3510:458:3,108,-55.5,0,0,-0.00545423 -25754,3510:458:4,108.5,-55.5,0,0,-0.00545057 -25755,3510:459:3,109,-55.5,0,0,-0.00544935 -25756,3510:459:4,109.5,-55.5,0,0,-0.00546878 -25757,3511:350:3,110,-55.5,0,0,-0.0054785 -25758,3511:350:4,110.5,-55.5,0,0,-0.00554584 -25759,3511:351:3,111,-55.5,0,0,-0.00576829 -25760,3511:351:4,111.5,-55.5,0,0,-0.00598773 -25761,3511:352:3,112,-55.5,0,0,-0.00642495 -25762,3511:352:4,112.5,-55.5,0,0,-0.00672312 -25763,3511:353:3,113,-55.5,0,0,-0.00646936 -25764,3511:353:4,113.5,-55.5,0,0,-0.00611282 -25765,3511:354:3,114,-55.5,0,0,-0.00608027 -25766,3511:354:4,114.5,-55.5,0,0,-0.00653879 -25767,3511:455:3,115,-55.5,0,0,-0.00690195 -25768,3511:455:4,115.5,-55.5,0,0,-0.00682257 -25769,3511:456:3,116,-55.5,0,0,-0.00661045 -25770,3511:456:4,116.5,-55.5,0,0,-0.00650833 -25771,3511:457:3,117,-55.5,0,0,-0.00691884 -25772,3511:457:4,117.5,-55.5,0,0,-0.00710291 -25773,3511:458:3,118,-55.5,0,0,-0.00723047 -25774,3511:458:4,118.5,-55.5,0,0,-0.00724497 -25775,3511:459:3,119,-55.5,0,0,-0.0072369 -25776,3511:459:4,119.5,-55.5,0,0,-0.00741956 -25777,3512:350:3,120,-55.5,0,0,-0.00774533 -25778,3512:350:4,120.5,-55.5,0,0,-0.00782681 -25779,3512:351:3,121,-55.5,0,0,-0.00780763 -25780,3512:351:4,121.5,-55.5,0,0,-0.00790033 -25781,3512:352:3,122,-55.5,0,0,-0.00831003 -25782,3512:352:4,122.5,-55.5,0,0,-0.00849536 -25783,3512:353:3,123,-55.5,0,0,-0.00849726 -25784,3512:353:4,123.5,-55.5,0,0,-0.00846324 -25785,3512:354:3,124,-55.5,0,0,-0.00847649 -25786,3512:354:4,124.5,-55.5,0,0,-0.00851624 -25787,3512:455:3,125,-55.5,0,0,-0.00854664 -25788,3512:455:4,125.5,-55.5,0,0,-0.00854855 -25789,3512:456:3,126,-55.5,0,0,-0.00847268 -25790,3512:456:4,126.5,-55.5,0,0,-0.00833232 -25791,3512:457:3,127,-55.5,0,0,-0.00829157 -25792,3512:457:4,127.5,-55.5,0,0,-0.00835648 -25793,3512:458:3,128,-55.5,0,0,-0.00839938 -25794,3512:458:4,128.5,-55.5,0,0,-0.00850293 -25795,3512:459:3,129,-55.5,0,0,-0.00885292 -25796,3512:459:4,129.5,-55.5,0,0,-0.00940854 -25797,3513:350:3,130,-55.5,0,0,-0.00986854 -25798,3513:350:4,130.5,-55.5,0,0,-0.0100441 -25799,3513:351:3,131,-55.5,0,0,-0.00995927 -25800,3513:351:4,131.5,-55.5,0,0,-0.00968971 -25801,3513:352:3,132,-55.5,0,0,-0.00935 -25802,3513:352:4,132.5,-55.5,0,0,-0.00915807 -25803,3513:353:3,133,-55.5,0,0,-0.00932084 -25804,3513:353:4,133.5,-55.5,0,0,-0.00970265 -25805,3513:354:3,134,-55.5,0,0,-0.00959506 -25806,3513:354:4,134.5,-55.5,0,0,-0.0094886 -25807,3513:455:3,135,-55.5,0,0,-0.00948654 -25808,3513:455:4,135.5,-55.5,0,0,-0.00946538 -25809,3513:456:3,136,-55.5,0,0,-0.00939599 -25810,3513:456:4,136.5,-55.5,0,0,-0.00923397 -25811,3513:457:3,137,-55.5,0,0,-0.00905453 -25812,3513:457:4,137.5,-55.5,0,0,-0.00895017 -25813,3513:458:3,138,-55.5,0,0,-0.00867712 -25814,3513:458:4,138.5,-55.5,0,0,-0.00828971 -25815,3513:459:3,139,-55.5,0,0,-0.00797993 -25816,3513:459:4,139.5,-55.5,0,0,-0.00788274 -25817,3514:350:3,140,-55.5,0,0,-0.00805847 -25818,3514:350:4,140.5,-55.5,0,0,-0.00811431 -25819,3514:351:3,141,-55.5,0,0,-0.008218 -25820,3514:351:4,141.5,-55.5,0,0,-0.00836575 -25821,3514:352:3,142,-55.5,0,0,-0.00852574 -25822,3514:352:4,142.5,-55.5,0,0,-0.00872755 -25823,3514:353:3,143,-55.5,0,0,-0.00872755 -25824,3514:353:4,143.5,-55.5,0,0,-0.00878807 -25825,3514:354:3,144,-55.5,0,0,-0.00876657 -25826,3514:354:4,144.5,-55.5,0,0,-0.00865973 -25827,3514:455:3,145,-55.5,0,0,-0.00854094 -25828,3514:455:4,145.5,-55.5,0,0,-0.00808546 -25829,3514:456:3,146,-55.5,0,0,-0.00766637 -25830,3514:456:4,146.5,-55.5,0,0,-0.00742622 -25831,3514:457:3,147,-55.5,0,0,-0.0073784 -25832,3514:457:4,147.5,-55.5,0,0,-0.00739812 -25833,3514:458:3,148,-55.5,0,0,-0.00698691 -25834,3514:458:4,148.5,-55.5,0,0,-0.00626413 -25835,3514:459:3,149,-55.5,0,0,-0.00598375 -25836,3514:459:4,149.5,-55.5,0,0,-0.00587828 -25837,3515:350:3,150,-55.5,0,0,-0.00578114 -25838,3515:350:4,150.5,-55.5,0,0,-0.00566414 -25839,3515:351:3,151,-55.5,0,0,-0.005619 -25840,3515:351:4,151.5,-55.5,0,0,-0.00580302 -25841,3515:352:3,152,-55.5,0,0,-0.00600371 -25842,3515:352:4,152.5,-55.5,0,0,-0.00578114 -25843,3515:353:3,153,-55.5,0,0,-0.00560531 -25844,3515:353:4,153.5,-55.5,0,0,-0.00552127 -25845,3515:354:3,154,-55.5,0,0,-0.00550288 -25846,3515:354:4,154.5,-55.5,0,0,-0.00548947 -25847,3515:455:3,155,-55.5,0,0,-0.00547972 -25848,3515:455:4,155.5,-55.5,0,0,-0.00547486 -25849,3515:456:3,156,-55.5,0,0,-0.00547727 -25850,3515:456:4,156.5,-55.5,0,0,-0.0054785 -25851,3515:457:3,157,-55.5,0,0,-0.0054785 -25852,3515:457:4,157.5,-55.5,0,0,-0.00547727 -25853,3515:458:3,158,-55.5,0,0,-0.00547486 -25854,3515:458:4,158.5,-55.5,0,0,-0.00547119 -25855,3515:459:3,159,-55.5,0,0,-0.00546878 -25856,3515:459:4,159.5,-55.5,0,0,-0.00546878 -25857,3516:350:3,160,-55.5,0,0,-0.00546878 -25858,3516:350:4,160.5,-55.5,0,0,-0.00546878 -25859,3516:351:3,161,-55.5,0,0,-0.00547 -25860,3516:351:4,161.5,-55.5,0,0,-0.00546878 -25861,3516:352:3,162,-55.5,0,0,-0.00547 -25862,3516:352:4,162.5,-55.5,0,0,-0.00547 -25863,3516:353:3,163,-55.5,0,0,-0.00547 -25864,3516:353:4,163.5,-55.5,0,0,-0.00547241 -25865,3516:354:3,164,-55.5,0,0,-0.00548214 -25866,3516:354:4,164.5,-55.5,0,0,-0.00551266 -25867,3516:455:3,165,-55.5,0,0,-0.00560033 -25868,3516:455:4,165.5,-55.5,0,0,-0.00575165 -25869,3516:456:3,166,-55.5,0,0,-0.00661045 -25870,3516:456:4,166.5,-55.5,0,0,-0.00791441 -25871,3516:457:3,167,-55.5,0,0,-0.00929386 -25872,3516:457:4,167.5,-55.5,0,0,-0.00955874 -25873,3516:458:3,168,-55.5,0,0,-0.00865013 -25874,3516:458:4,168.5,-55.5,0,0,-0.00882341 -25875,3516:459:3,169,-55.5,0,0,-0.00802627 -25876,3516:459:4,169.5,-55.5,0,0,-0.00756296 -25877,3517:350:3,170,-55.5,0,0,-0.00766299 -25878,3517:350:4,170.5,-55.5,0,0,-0.00839749 -25879,3517:351:3,171,-55.5,0,0,-0.00837321 -25880,3517:351:4,171.5,-55.5,0,0,-0.00802447 -25881,3517:352:3,172,-55.5,0,0,-0.00847649 -25882,3517:352:4,172.5,-55.5,0,0,-0.00935204 -25883,3517:353:3,173,-55.5,0,0,-0.0102937 -25884,3517:353:4,173.5,-55.5,0,0,-0.0119691 -25885,3517:354:3,174,-55.5,0,0,-0.0139646 -25886,3517:354:4,174.5,-55.5,0,0,-0.0155164 -25887,3517:455:3,175,-55.5,0,0,-0.0156142 -25888,3517:455:4,175.5,-55.5,0,0,-0.0153158 -25889,3517:456:3,176,-55.5,0,0,-0.0147363 -25890,3517:456:4,176.5,-55.5,0,0,-0.0138338 -25891,3517:457:3,177,-55.5,0,0,-0.0137227 -25892,3517:457:4,177.5,-55.5,0,0,-0.0137874 -25893,3517:458:3,178,-55.5,0,0,-0.0140304 -25894,3517:458:4,178.5,-55.5,0,0,-0.0142013 -25895,3517:459:3,179,-55.5,0,0,-0.0141282 -25896,3517:459:4,179.5,-55.5,0,0,-0.0138183 -25897,3518:350:3,180,-55.5,0,0,-0.0139022 -25898,5518:350:1,-180,-55,0,0,-0.0135517 -25899,5517:459:2,-179.5,-55,0,0,-0.0136798 -25900,5517:459:1,-179,-55,0,0,-0.0121524 -25901,5517:458:2,-178.5,-55,0,0,-0.0110241 -25902,5517:458:1,-178,-55,0,0,-0.0113668 -25903,5517:457:2,-177.5,-55,0,0,-0.0118997 -25904,5517:457:1,-177,-55,0,0,-0.0122644 -25905,5517:456:2,-176.5,-55,0,0,-0.0124803 -25906,5517:456:1,-176,-55,0,0,-0.0124942 -25907,5517:455:2,-175.5,-55,0,0,-0.0121688 -25908,5517:455:1,-175,-55,0,0,-0.0117359 -25909,5517:354:2,-174.5,-55,0,0,-0.0113287 -25910,5517:354:1,-174,-55,0,0,-0.011066 -25911,5517:353:2,-173.5,-55,0,0,-0.0109358 -25912,5517:353:1,-173,-55,0,0,-0.0102616 -25913,5517:352:2,-172.5,-55,0,0,-0.00971779 -25914,5517:352:1,-172,-55,0,0,-0.00963151 -25915,5517:351:2,-171.5,-55,0,0,-0.00934167 -25916,5517:351:1,-171,-55,0,0,-0.00892828 -25917,5517:350:2,-170.5,-55,0,0,-0.00886479 -25918,5517:350:1,-170,-55,0,0,-0.00867134 -25919,5516:459:2,-169.5,-55,0,0,-0.008336 -25920,5516:459:1,-169,-55,0,0,-0.00807464 -25921,5516:458:2,-168.5,-55,0,0,-0.00790737 -25922,5516:458:1,-168,-55,0,0,-0.00783899 -25923,5516:457:2,-167.5,-55,0,0,-0.00780418 -25924,5516:457:1,-167,-55,0,0,-0.00784773 -25925,5516:456:2,-166.5,-55,0,0,-0.00790388 -25926,5516:456:1,-166,-55,0,0,-0.0078775 -25927,5516:455:2,-165.5,-55,0,0,-0.00784773 -25928,5516:455:1,-165,-55,0,0,-0.00782505 -25929,5516:354:2,-164.5,-55,0,0,-0.00781288 -25930,5516:354:1,-164,-55,0,0,-0.00780243 -25931,5516:353:2,-163.5,-55,0,0,-0.00780938 -25932,5516:353:1,-163,-55,0,0,-0.00780938 -25933,5516:352:2,-162.5,-55,0,0,-0.00775223 -25934,5516:352:1,-162,-55,0,0,-0.00765955 -25935,5516:351:2,-161.5,-55,0,0,-0.00765955 -25936,5516:351:1,-161,-55,0,0,-0.0077747 -25937,5516:350:2,-160.5,-55,0,0,-0.00790211 -25938,5516:350:1,-160,-55,0,0,-0.00790033 -25939,5515:459:2,-159.5,-55,0,0,-0.00781288 -25940,5515:459:1,-159,-55,0,0,-0.00778506 -25941,5515:458:2,-158.5,-55,0,0,-0.00785649 -25942,5515:458:1,-158,-55,0,0,-0.00797814 -25943,5515:457:2,-157.5,-55,0,0,-0.00813242 -25944,5515:457:1,-157,-55,0,0,-0.00807645 -25945,5515:456:2,-156.5,-55,0,0,-0.00802802 -25946,5515:456:1,-156,-55,0,0,-0.00790737 -25947,5515:455:2,-155.5,-55,0,0,-0.00779549 -25948,5515:455:1,-155,-55,0,0,-0.00775049 -25949,5515:354:2,-154.5,-55,0,0,-0.00774012 -25950,5515:354:1,-154,-55,0,0,-0.00774359 -25951,5515:353:2,-153.5,-55,0,0,-0.00774359 -25952,5515:353:1,-153,-55,0,0,-0.00771607 -25953,5515:352:2,-152.5,-55,0,0,-0.00765617 -25954,5515:352:1,-152,-55,0,0,-0.00763404 -25955,5515:351:2,-151.5,-55,0,0,-0.00782329 -25956,5515:351:1,-151,-55,0,0,-0.00842002 -25957,5515:350:2,-150.5,-55,0,0,-0.00861356 -25958,5515:350:1,-150,-55,0,0,-0.00853711 -25959,5514:459:2,-149.5,-55,0,0,-0.00890438 -25960,5514:459:1,-149,-55,0,0,-0.00992157 -25961,5514:458:2,-148.5,-55,0,0,-0.00969835 -25962,5514:458:1,-148,-55,0,0,-0.0095865 -25963,5514:457:2,-147.5,-55,0,0,-0.00969835 -25964,5514:457:1,-147,-55,0,0,-0.00970047 -25965,5514:456:2,-146.5,-55,0,0,-0.00933125 -25966,5514:456:1,-146,-55,0,0,-0.00886479 -25967,5514:455:2,-145.5,-55,0,0,-0.00879393 -25968,5514:455:1,-145,-55,0,0,-0.00930215 -25969,5514:354:2,-144.5,-55,0,0,-0.00966593 -25970,5514:354:1,-144,-55,0,0,-0.0100127 -25971,5514:353:2,-143.5,-55,0,0,-0.0102616 -25972,5514:353:1,-143,-55,0,0,-0.0102708 -25973,5514:352:2,-142.5,-55,0,0,-0.0103791 -25974,5514:352:1,-142,-55,0,0,-0.010257 -25975,5514:351:2,-141.5,-55,0,0,-0.010098 -25976,5514:351:1,-141,-55,0,0,-0.0103029 -25977,5514:350:2,-140.5,-55,0,0,-0.0107158 -25978,5514:350:1,-140,-55,0,0,-0.0111106 -25979,5513:459:2,-139.5,-55,0,0,-0.011647 -25980,5513:459:1,-139,-55,0,0,-0.0117412 -25981,5513:458:2,-138.5,-55,0,0,-0.011474 -25982,5513:458:1,-138,-55,0,0,-0.0104116 -25983,5513:457:2,-137.5,-55,0,0,-0.00990827 -25984,5513:457:1,-137,-55,0,0,-0.00962292 -25985,5513:456:2,-136.5,-55,0,0,-0.00962718 -25986,5513:456:1,-136,-55,0,0,-0.00996816 -25987,5513:455:2,-135.5,-55,0,0,-0.0110611 -25988,5513:455:1,-135,-55,0,0,-0.0117885 -25989,5513:354:2,-134.5,-55,0,0,-0.0119103 -25990,5513:354:1,-134,-55,0,0,-0.0112481 -25991,5513:353:2,-133.5,-55,0,0,-0.0109066 -25992,5513:353:1,-133,-55,0,0,-0.0108507 -25993,5513:352:2,-132.5,-55,0,0,-0.0112129 -25994,5513:352:1,-132,-55,0,0,-0.0116392 -25995,5513:351:2,-131.5,-55,0,0,-0.0119343 -25996,5513:351:1,-131,-55,0,0,-0.0121878 -25997,5513:350:2,-130.5,-55,0,0,-0.012082 -25998,5513:350:1,-130,-55,0,0,-0.0117071 -25999,5512:459:2,-129.5,-55,0,0,-0.0115795 -26000,5512:459:1,-129,-55,0,0,-0.011799 -26001,5512:458:2,-128.5,-55,0,0,-0.0119638 -26002,5512:458:1,-128,-55,0,0,-0.0120793 -26003,5512:457:2,-127.5,-55,0,0,-0.0121933 -26004,5512:457:1,-127,-55,0,0,-0.0123139 -26005,5512:456:2,-126.5,-55,0,0,-0.0123746 -26006,5512:456:1,-126,-55,0,0,-0.0123525 -26007,5512:455:2,-125.5,-55,0,0,-0.0122015 -26008,5512:455:1,-125,-55,0,0,-0.0120254 -26009,5512:354:2,-124.5,-55,0,0,-0.0119103 -26010,5512:354:1,-124,-55,0,0,-0.0118519 -26011,5512:353:2,-123.5,-55,0,0,-0.0117202 -26012,5512:353:1,-123,-55,0,0,-0.0115279 -26013,5512:352:2,-122.5,-55,0,0,-0.0114125 -26014,5512:352:1,-122,-55,0,0,-0.0114971 -26015,5512:351:2,-121.5,-55,0,0,-0.0117885 -26016,5512:351:1,-121,-55,0,0,-0.0120712 -26017,5512:350:2,-120.5,-55,0,0,-0.0122891 -26018,5512:350:1,-120,-55,0,0,-0.0124051 -26019,5511:459:2,-119.5,-55,0,0,-0.012483 -26020,5511:459:1,-119,-55,0,0,-0.0126404 -26021,5511:458:2,-118.5,-55,0,0,-0.0128918 -26022,5511:458:1,-118,-55,0,0,-0.013222 -26023,5511:457:2,-117.5,-55,0,0,-0.0136217 -26024,5511:457:1,-117,-55,0,0,-0.0141505 -26025,5511:456:2,-116.5,-55,0,0,-0.0144322 -26026,5511:456:1,-116,-55,0,0,-0.014484 -26027,5511:455:2,-115.5,-55,0,0,-0.014416 -26028,5511:455:1,-115,-55,0,0,-0.0143131 -26029,5511:354:2,-114.5,-55,0,0,-0.014249 -26030,5511:354:1,-114,-55,0,0,-0.0143066 -26031,5511:353:2,-113.5,-55,0,0,-0.0146112 -26032,5511:353:1,-113,-55,0,0,-0.0151247 -26033,5511:352:2,-112.5,-55,0,0,-0.015162 -26034,5511:352:1,-112,-55,0,0,-0.0145851 -26035,5511:351:2,-111.5,-55,0,0,-0.0144679 -26036,5511:351:1,-111,-55,0,0,-0.0146178 -26037,5511:350:2,-110.5,-55,0,0,-0.0146934 -26038,5511:350:1,-110,-55,0,0,-0.0145393 -26039,5510:459:2,-109.5,-55,0,0,-0.014198 -26040,5510:459:1,-109,-55,0,0,-0.014125 -26041,5510:458:2,-108.5,-55,0,0,-0.0142842 -26042,5510:458:1,-108,-55,0,0,-0.0149627 -26043,5510:457:2,-107.5,-55,0,0,-0.0152233 -26044,5510:457:1,-107,-55,0,0,-0.0147727 -26045,5510:456:2,-106.5,-55,0,0,-0.0141314 -26046,5510:456:1,-106,-55,0,0,-0.013576 -26047,5510:455:2,-105.5,-55,0,0,-0.0132279 -26048,5510:455:1,-105,-55,0,0,-0.013034 -26049,5510:354:2,-104.5,-55,0,0,-0.0128716 -26050,5510:354:1,-104,-55,0,0,-0.0127199 -26051,5510:353:2,-103.5,-55,0,0,-0.0126065 -26052,5510:353:1,-103,-55,0,0,-0.0125026 -26053,5510:352:2,-102.5,-55,0,0,-0.0125166 -26054,5510:352:1,-102,-55,0,0,-0.012886 -26055,5510:351:2,-101.5,-55,0,0,-0.0134038 -26056,5510:351:1,-101,-55,0,0,-0.0137073 -26057,5510:350:2,-100.5,-55,0,0,-0.0136798 -26058,5510:350:1,-100,-55,0,0,-0.0134038 -26059,5509:459:2,-99.5,-55,0,0,-0.0129845 -26060,5509:459:1,-99,-55,0,0,-0.0124245 -26061,5509:458:2,-98.5,-55,0,0,-0.0121388 -26062,5509:458:1,-98,-55,0,0,-0.0124552 -26063,5509:457:2,-97.5,-55,0,0,-0.0135153 -26064,5509:457:1,-97,-55,0,0,-0.0145069 -26065,5509:456:2,-96.5,-55,0,0,-0.0146572 -26066,5509:456:1,-96,-55,0,0,-0.0141219 -26067,5509:455:2,-95.5,-55,0,0,-0.0134579 -26068,5509:455:1,-95,-55,0,0,-0.0130573 -26069,5509:354:2,-94.5,-55,0,0,-0.0128658 -26070,5509:354:1,-94,-55,0,0,-0.0126659 -26071,5509:353:2,-93.5,-55,0,0,-0.0123635 -26072,5509:353:1,-93,-55,0,0,-0.0121335 -26073,5509:352:2,-92.5,-55,0,0,-0.0121091 -26074,5509:352:1,-92,-55,0,0,-0.0123386 -26075,5509:351:2,-91.5,-55,0,0,-0.0133708 -26076,5509:351:1,-91,-55,0,0,-0.0139614 -26077,5509:350:2,-90.5,-55,0,0,-0.0139084 -26078,5509:350:1,-90,-55,0,0,-0.0134309 -26079,5508:459:2,-89.5,-55,0,0,-0.0127113 -26080,5508:459:1,-89,-55,0,0,-0.0129352 -26081,5508:458:2,-88.5,-55,0,0,-0.0135244 -26082,5508:458:1,-88,-55,0,0,-0.0142076 -26083,5508:457:2,-87.5,-55,0,0,-0.0142427 -26084,5508:457:1,-87,-55,0,0,-0.014358 -26085,5508:456:2,-86.5,-55,0,0,-0.0144679 -26086,5508:456:1,-86,-55,0,0,-0.0145525 -26087,5508:455:2,-85.5,-55,0,0,-0.0146374 -26088,5508:455:1,-85,-55,0,0,-0.0146868 -26089,5508:354:2,-84.5,-55,0,0,-0.0146736 -26090,5508:354:1,-84,-55,0,0,-0.0145003 -26091,5508:353:2,-83.5,-55,0,0,-0.0143099 -26092,5508:353:1,-83,-55,0,0,-0.0141567 -26093,5508:352:2,-82.5,-55,0,0,-0.0138431 -26094,5508:352:1,-82,-55,0,0,-0.0136859 -26095,5508:351:2,-81.5,-55,0,0,-0.0138618 -26096,5508:351:1,-81,-55,0,0,-0.0138803 -26097,5508:350:2,-80.5,-55,0,0,-0.0140556 -26098,5508:350:1,-80,-55,0,0,-0.0143355 -26099,5507:459:2,-79.5,-55,0,0,-0.0146572 -26100,5507:459:1,-79,-55,0,0,-0.0149425 -26101,5507:458:2,-78.5,-55,0,0,-0.0151484 -26102,5507:458:1,-78,-55,0,0,-0.0152131 -26103,5507:457:2,-77.5,-55,0,0,-0.0152199 -26104,5507:457:1,-77,-55,0,0,-0.0149559 -26105,5507:456:2,-76.5,-55,0,0,-0.0143967 -26106,5507:456:1,-76,-55,0,0,-0.0133439 -26107,5507:455:2,-75.5,-55,0,0,-0.0119343 -26108,5507:455:1,-75,-55,0,0,-0.010875 -26109,5507:354:2,-74.5,-55,0,0,-0.0106633 -26110,5507:354:1,-74,-55,0,0,-0.011253 -26111,5507:353:2,-73.5,-55,0,0,-0.0126914 -26112,5507:353:1,-73,-55,0,0,-0.0140935 -26113,5507:352:2,-72.5,-55,0,0,-0.0148491 -26114,5507:352:1,-72,-55,0,0,-0.0132873 -26115,5507:351:2,-71.5,-55,0,0,-0.0124468 -26116,5507:351:1,-71,-55,0,0,-0.0124023 -26117,5507:350:2,-70.5,-55,0,0,-0.0123498 -26118,5507:350:1,-70,-55,0,0,-0.0123194 -26119,5506:459:2,-69.5,-55,0,0,-0.0124914 -26120,5506:459:1,-69,-55,0,0,-0.0127113 -26121,5506:458:2,-68.5,-55,0,0,-0.0128314 -26122,5506:458:1,-68,-55,0,0,-0.0122782 -26123,5506:457:2,-67.5,-55,0,0,-0.0107807 -26124,5506:457:1,-67,-55,0,0,-0.00925045 -26125,5506:456:2,-66.5,-55,0,0,-0.00768692 -26126,5506:456:1,-66,-55,0,0,-0.00725467 -26127,5506:455:2,-65.5,-55,0,0,-0.00733747 -26128,5506:455:1,-65,-55,0,0,-0.00739651 -26129,5506:354:2,-64.5,-55,0,0,-0.00741296 -26130,5506:354:1,-64,-55,0,0,-0.00730162 -26131,5506:353:2,-63.5,-55,0,0,-0.00673509 -26132,5506:353:1,-63,-55,0,0,-0.00649963 -26133,5506:352:2,-62.5,-55,0,0,-0.00666361 -26134,5506:352:1,-62,-55,0,0,-0.0068866 -26135,5506:351:2,-61.5,-55,0,0,-0.00701181 -26136,5506:351:1,-61,-55,0,0,-0.00698848 -26137,5506:350:2,-60.5,-55,0,0,-0.00724339 -26138,5506:350:1,-60,-55,0,0,-0.00721119 -26139,5505:459:1,-59,-55,0,0,-0.00645931 -26140,5505:458:2,-58.5,-55,0,0,-0.00640923 -26141,5505:458:1,-58,-55,0,0,-0.00631307 -26142,5505:457:2,-57.5,-55,0,0,-0.00616329 -26143,5505:457:1,-57,-55,0,0,-0.006083 -26144,5505:456:2,-56.5,-55,0,0,-0.0060318 -26145,5505:456:1,-56,-55,0,0,-0.00597974 -26146,5505:455:2,-55.5,-55,0,0,-0.00592157 -26147,5505:455:1,-55,-55,0,0,-0.00586263 -26148,5505:354:2,-54.5,-55,0,0,-0.00579272 -26149,5505:354:1,-54,-55,0,0,-0.00562651 -26150,5505:353:2,-53.5,-55,0,0,-0.00546755 -26151,5505:353:1,-53,-55,0,0,-0.00546511 -26152,5505:352:2,-52.5,-55,0,0,-0.00546511 -26153,5505:352:1,-52,-55,0,0,-0.00546148 -26154,5505:351:2,-51.5,-55,0,0,-0.00546026 -26155,5505:351:1,-51,-55,0,0,-0.00546026 -26156,5505:350:2,-50.5,-55,0,0,-0.00546148 -26157,5505:350:1,-50,-55,0,0,-0.00546392 -26158,5504:459:2,-49.5,-55,0,0,-0.00546511 -26159,5504:459:1,-49,-55,0,0,-0.00546511 -26160,5504:458:2,-48.5,-55,0,0,-0.00546511 -26161,5504:458:1,-48,-55,0,0,-0.00546511 -26162,5504:457:2,-47.5,-55,0,0,-0.00546392 -26163,5504:457:1,-47,-55,0,0,-0.00546511 -26164,5504:456:2,-46.5,-55,0,0,-0.00546392 -26165,5504:456:1,-46,-55,0,0,-0.0054627 -26166,5504:455:2,-45.5,-55,0,0,-0.00546026 -26167,5504:455:1,-45,-55,0,0,-0.00545907 -26168,5504:354:2,-44.5,-55,0,0,-0.00545907 -26169,5504:354:1,-44,-55,0,0,-0.00545907 -26170,5504:353:2,-43.5,-55,0,0,-0.00545785 -26171,5504:353:1,-43,-55,0,0,-0.00545663 -26172,5504:352:2,-42.5,-55,0,0,-0.00545541 -26173,5504:352:1,-42,-55,0,0,-0.00545423 -26174,5504:351:2,-41.5,-55,0,0,-0.005453 -26175,5504:351:1,-41,-55,0,0,-0.00545179 -26176,5504:350:2,-40.5,-55,0,0,-0.00545179 -26177,5504:350:1,-40,-55,0,0,-0.00544935 -26178,5503:459:2,-39.5,-55,0,0,-0.00544816 -26179,5503:459:1,-39,-55,0,0,-0.00544816 -26180,5503:458:2,-38.5,-55,0,0,-0.00544816 -26181,5503:458:1,-38,-55,0,0,-0.00544816 -26182,5503:457:2,-37.5,-55,0,0,-0.00544816 -26183,5503:457:1,-37,-55,0,0,-0.00544695 -26184,5503:456:2,-36.5,-55,0,0,-0.00544695 -26185,5503:456:1,-36,-55,0,0,-0.00545057 -26186,5503:455:2,-35.5,-55,0,0,-0.00545179 -26187,5503:455:1,-35,-55,0,0,-0.005453 -26188,5503:354:2,-34.5,-55,0,0,-0.00545423 -26189,5503:354:1,-34,-55,0,0,-0.00545541 -26190,5503:353:2,-33.5,-55,0,0,-0.00545785 -26191,5503:353:1,-33,-55,0,0,-0.00545907 -26192,5503:352:2,-32.5,-55,0,0,-0.00546026 -26193,5503:352:1,-32,-55,0,0,-0.00546026 -26194,5503:351:2,-31.5,-55,0,0,-0.00546026 -26195,5503:351:1,-31,-55,0,0,-0.00546026 -26196,5503:350:2,-30.5,-55,0,0,-0.00546026 -26197,5503:350:1,-30,-55,0,0,-0.00546026 -26198,5502:459:2,-29.5,-55,0,0,-0.00546026 -26199,5502:459:1,-29,-55,0,0,-0.00546026 -26200,5502:458:2,-28.5,-55,0,0,-0.00545907 -26201,5502:458:1,-28,-55,0,0,-0.00546026 -26202,5502:457:2,-27.5,-55,0,0,-0.00546026 -26203,5502:457:1,-27,-55,0,0,-0.00546026 -26204,5502:456:2,-26.5,-55,0,0,-0.00546026 -26205,5502:456:1,-26,-55,0,0,-0.00546026 -26206,5502:455:2,-25.5,-55,0,0,-0.00546026 -26207,5502:455:1,-25,-55,0,0,-0.00545907 -26208,5502:354:2,-24.5,-55,0,0,-0.00545907 -26209,5502:354:1,-24,-55,0,0,-0.00545785 -26210,5502:353:2,-23.5,-55,0,0,-0.00545541 -26211,5502:353:1,-23,-55,0,0,-0.00545423 -26212,5502:352:2,-22.5,-55,0,0,-0.005453 -26213,5502:352:1,-22,-55,0,0,-0.00545179 -26214,5502:351:2,-21.5,-55,0,0,-0.00545057 -26215,5502:351:1,-21,-55,0,0,-0.00544935 -26216,5502:350:2,-20.5,-55,0,0,-0.00544816 -26217,5502:350:1,-20,-55,0,0,-0.00544695 -26218,5501:459:2,-19.5,-55,0,0,-0.00544573 -26219,5501:459:1,-19,-55,0,0,-0.00544573 -26220,5501:458:2,-18.5,-55,0,0,-0.00544451 -26221,5501:458:1,-18,-55,0,0,-0.00544333 -26222,5501:457:2,-17.5,-55,0,0,-0.00544333 -26223,5501:457:1,-17,-55,0,0,-0.00544451 -26224,5501:456:2,-16.5,-55,0,0,-0.00544695 -26225,5501:456:1,-16,-55,0,0,-0.00544935 -26226,5501:455:2,-15.5,-55,0,0,-0.00545663 -26227,5501:455:1,-15,-55,0,0,-0.00546148 -26228,5501:354:2,-14.5,-55,0,0,-0.00546392 -26229,5501:354:1,-14,-55,0,0,-0.0054627 -26230,5501:353:2,-13.5,-55,0,0,-0.00545785 -26231,5501:353:1,-13,-55,0,0,-0.005453 -26232,5501:352:2,-12.5,-55,0,0,-0.00545057 -26233,5501:352:1,-12,-55,0,0,-0.00544935 -26234,5501:351:2,-11.5,-55,0,0,-0.00544816 -26235,5501:351:1,-11,-55,0,0,-0.00544573 -26236,5501:350:2,-10.5,-55,0,0,-0.00544451 -26237,5501:350:1,-10,-55,0,0,-0.00544333 -26238,5500:459:2,-9.5,-55,0,0,-0.00544451 -26239,5500:459:1,-9,-55,0,0,-0.00544573 -26240,5500:458:2,-8.5,-55,0,0,-0.00544333 -26241,5500:458:1,-8,-55,0,0,-0.00544333 -26242,5500:457:2,-7.5,-55,0,0,-0.00544211 -26243,5500:457:1,-7,-55,0,0,-0.00544089 -26244,5500:456:2,-6.5,-55,0,0,-0.0054385 -26245,5500:456:1,-6,-55,0,0,-0.00543968 -26246,5500:455:2,-5.5,-55,0,0,-0.00544089 -26247,5500:455:1,-5,-55,0,0,-0.00544211 -26248,5500:354:2,-4.5,-55,0,0,-0.00544211 -26249,5500:354:1,-4,-55,0,0,-0.00544333 -26250,5500:353:2,-3.5,-55,0,0,-0.00544333 -26251,5500:353:1,-3,-55,0,0,-0.00544451 -26252,5500:352:2,-2.5,-55,0,0,-0.00544451 -26253,5500:352:1,-2,-55,0,0,-0.00544333 -26254,5500:351:2,-1.5,-55,0,0,-0.00544211 -26255,5500:351:1,-1,-55,0,0,-0.0054385 -26256,5500:350:2,-0.5,-55,0,0,-0.0054385 -26257,3500:350:2,0,-55,0,0,-0.00544089 -26258,3500:350:2,0.5,-55,0,0,-0.00544089 -26259,3500:351:1,1,-55,0,0,-0.00543968 -26260,3500:351:2,1.5,-55,0,0,-0.0054385 -26261,3500:352:1,2,-55,0,0,-0.00543728 -26262,3500:352:2,2.5,-55,0,0,-0.00543728 -26263,3500:353:1,3,-55,0,0,-0.00543606 -26264,3500:353:2,3.5,-55,0,0,-0.00543363 -26265,3500:354:1,4,-55,0,0,-0.00543363 -26266,3500:354:2,4.5,-55,0,0,-0.00543363 -26267,3500:455:1,5,-55,0,0,-0.00543485 -26268,3500:455:2,5.5,-55,0,0,-0.00543606 -26269,3500:456:1,6,-55,0,0,-0.00543728 -26270,3500:456:2,6.5,-55,0,0,-0.0054385 -26271,3500:457:1,7,-55,0,0,-0.00544089 -26272,3500:457:2,7.5,-55,0,0,-0.00544333 -26273,3500:458:1,8,-55,0,0,-0.00544451 -26274,3500:458:2,8.5,-55,0,0,-0.00544573 -26275,3500:459:1,9,-55,0,0,-0.00544695 -26276,3500:459:2,9.5,-55,0,0,-0.00544935 -26277,3501:350:1,10,-55,0,0,-0.00545057 -26278,3501:350:2,10.5,-55,0,0,-0.005453 -26279,3501:351:1,11,-55,0,0,-0.005453 -26280,3501:351:2,11.5,-55,0,0,-0.00545057 -26281,3501:352:1,12,-55,0,0,-0.00544935 -26282,3501:352:2,12.5,-55,0,0,-0.00545057 -26283,3501:353:1,13,-55,0,0,-0.00545057 -26284,3501:353:2,13.5,-55,0,0,-0.00545179 -26285,3501:354:1,14,-55,0,0,-0.00545179 -26286,3501:354:2,14.5,-55,0,0,-0.00545179 -26287,3501:455:1,15,-55,0,0,-0.005453 -26288,3501:455:2,15.5,-55,0,0,-0.005453 -26289,3501:456:1,16,-55,0,0,-0.00545057 -26290,3501:456:2,16.5,-55,0,0,-0.00544816 -26291,3501:457:1,17,-55,0,0,-0.00544816 -26292,3501:457:2,17.5,-55,0,0,-0.00544935 -26293,3501:458:1,18,-55,0,0,-0.00544695 -26294,3501:458:2,18.5,-55,0,0,-0.00544211 -26295,3501:459:1,19,-55,0,0,-0.0054385 -26296,3501:459:2,19.5,-55,0,0,-0.00543728 -26297,3502:350:1,20,-55,0,0,-0.00543606 -26298,3502:350:2,20.5,-55,0,0,-0.00543363 -26299,3502:351:1,21,-55,0,0,-0.00543002 -26300,3502:351:2,21.5,-55,0,0,-0.00542763 -26301,3502:352:1,22,-55,0,0,-0.0054252 -26302,3502:352:2,22.5,-55,0,0,-0.0054216 -26303,3502:353:1,23,-55,0,0,-0.00543728 -26304,3502:353:2,23.5,-55,0,0,-0.00544935 -26305,3502:354:1,24,-55,0,0,-0.005453 -26306,3502:354:2,24.5,-55,0,0,-0.00545423 -26307,3502:455:1,25,-55,0,0,-0.00545541 -26308,3502:455:2,25.5,-55,0,0,-0.00545785 -26309,3502:456:1,26,-55,0,0,-0.00546148 -26310,3502:456:2,26.5,-55,0,0,-0.00546026 -26311,3502:457:1,27,-55,0,0,-0.00546511 -26312,3502:457:2,27.5,-55,0,0,-0.00547364 -26313,3502:458:1,28,-55,0,0,-0.00548701 -26314,3502:458:2,28.5,-55,0,0,-0.00550658 -26315,3502:459:1,29,-55,0,0,-0.00551513 -26316,3502:459:2,29.5,-55,0,0,-0.00552003 -26317,3503:350:1,30,-55,0,0,-0.00552741 -26318,3503:350:2,30.5,-55,0,0,-0.005536 -26319,3503:351:1,31,-55,0,0,-0.00554092 -26320,3503:351:2,31.5,-55,0,0,-0.005536 -26321,3503:352:1,32,-55,0,0,-0.00552741 -26322,3503:352:2,32.5,-55,0,0,-0.00552617 -26323,3503:353:1,33,-55,0,0,-0.0055446 -26324,3503:353:2,33.5,-55,0,0,-0.00558543 -26325,3503:354:1,34,-55,0,0,-0.00561653 -26326,3503:354:2,34.5,-55,0,0,-0.00557426 -26327,3503:455:1,35,-55,0,0,-0.00552617 -26328,3503:455:2,35.5,-55,0,0,-0.00550288 -26329,3503:456:1,36,-55,0,0,-0.00548701 -26330,3503:456:2,36.5,-55,0,0,-0.00548459 -26331,3503:457:1,37,-55,0,0,-0.00548337 -26332,3503:457:2,37.5,-55,0,0,-0.00547364 -26333,3503:458:1,38,-55,0,0,-0.00545663 -26334,3503:458:2,38.5,-55,0,0,-0.00543968 -26335,3503:459:1,39,-55,0,0,-0.0054385 -26336,3503:459:2,39.5,-55,0,0,-0.00543728 -26337,3504:350:1,40,-55,0,0,-0.00543728 -26338,3504:350:2,40.5,-55,0,0,-0.00543728 -26339,3504:351:1,41,-55,0,0,-0.00543728 -26340,3504:351:2,41.5,-55,0,0,-0.00543728 -26341,3504:352:1,42,-55,0,0,-0.00543728 -26342,3504:352:2,42.5,-55,0,0,-0.0054385 -26343,3504:353:1,43,-55,0,0,-0.00544089 -26344,3504:353:2,43.5,-55,0,0,-0.00544573 -26345,3504:354:1,44,-55,0,0,-0.00545179 -26346,3504:354:2,44.5,-55,0,0,-0.00545423 -26347,3504:455:1,45,-55,0,0,-0.00545785 -26348,3504:455:2,45.5,-55,0,0,-0.0054627 -26349,3504:456:1,46,-55,0,0,-0.00547605 -26350,3504:456:2,46.5,-55,0,0,-0.00551637 -26351,3504:457:1,47,-55,0,0,-0.00554584 -26352,3504:457:2,47.5,-55,0,0,-0.00555201 -26353,3504:458:1,48,-55,0,0,-0.00555943 -26354,3504:458:2,48.5,-55,0,0,-0.00556313 -26355,3504:459:1,49,-55,0,0,-0.00555819 -26356,3504:459:2,49.5,-55,0,0,-0.00554584 -26357,3505:350:1,50,-55,0,0,-0.00553108 -26358,3505:350:2,50.5,-55,0,0,-0.00551024 -26359,3505:351:1,51,-55,0,0,-0.00549312 -26360,3505:351:2,51.5,-55,0,0,-0.00548091 -26361,3505:352:1,52,-55,0,0,-0.00548091 -26362,3505:352:2,52.5,-55,0,0,-0.00548582 -26363,3505:353:1,53,-55,0,0,-0.00547364 -26364,3505:353:2,53.5,-55,0,0,-0.005453 -26365,3505:354:1,54,-55,0,0,-0.00544573 -26366,3505:354:2,54.5,-55,0,0,-0.00544451 -26367,3505:455:1,55,-55,0,0,-0.00544451 -26368,3505:455:2,55.5,-55,0,0,-0.00544695 -26369,3505:456:1,56,-55,0,0,-0.00544816 -26370,3505:456:2,56.5,-55,0,0,-0.00544816 -26371,3505:457:1,57,-55,0,0,-0.00544816 -26372,3505:457:2,57.5,-55,0,0,-0.00544935 -26373,3505:458:1,58,-55,0,0,-0.00545057 -26374,3505:458:2,58.5,-55,0,0,-0.00545179 -26375,3505:459:1,59,-55,0,0,-0.00545179 -26376,3505:459:2,59.5,-55,0,0,-0.00545179 -26377,3506:350:1,60,-55,0,0,-0.00545541 -26378,3506:350:2,60.5,-55,0,0,-0.00546148 -26379,3506:351:1,61,-55,0,0,-0.00546392 -26380,3506:351:2,61.5,-55,0,0,-0.00550534 -26381,3506:352:1,62,-55,0,0,-0.00552003 -26382,3506:352:2,62.5,-55,0,0,-0.00548824 -26383,3506:353:1,63,-55,0,0,-0.00547119 -26384,3506:353:2,63.5,-55,0,0,-0.00550658 -26385,3506:354:1,64,-55,0,0,-0.00560531 -26386,3506:354:2,64.5,-55,0,0,-0.00565282 -26387,3506:455:1,65,-55,0,0,-0.00578757 -26388,3506:455:2,65.5,-55,0,0,-0.00588482 -26389,3506:456:1,66,-55,0,0,-0.00586394 -26390,3506:456:2,66.5,-55,0,0,-0.00574912 -26391,3506:457:1,67,-55,0,0,-0.00560405 -26392,3506:457:2,67.5,-55,0,0,-0.00553724 -26393,3506:458:1,68,-55,0,0,-0.00553352 -26394,3506:458:2,68.5,-55,0,0,-0.00572869 -26395,3506:459:1,69,-55,0,0,-0.00592684 -26396,3506:459:2,69.5,-55,0,0,-0.00597844 -26397,3507:350:1,70,-55,0,0,-0.00590709 -26398,3507:350:2,70.5,-55,0,0,-0.00577342 -26399,3507:351:1,71,-55,0,0,-0.00572616 -26400,3507:351:2,71.5,-55,0,0,-0.00567548 -26401,3507:352:1,72,-55,0,0,-0.00563904 -26402,3507:352:2,72.5,-55,0,0,-0.00568812 -26403,3507:353:2,73.5,-55,0,0,-0.00570965 -26404,3507:354:1,74,-55,0,0,-0.00567294 -26405,3507:354:2,74.5,-55,0,0,-0.00557551 -26406,3507:455:1,75,-55,0,0,-0.00555325 -26407,3507:455:2,75.5,-55,0,0,-0.00555694 -26408,3507:456:1,76,-55,0,0,-0.00555325 -26409,3507:456:2,76.5,-55,0,0,-0.00555325 -26410,3507:457:1,77,-55,0,0,-0.00555201 -26411,3507:457:2,77.5,-55,0,0,-0.00557302 -26412,3507:458:1,78,-55,0,0,-0.00561402 -26413,3507:458:2,78.5,-55,0,0,-0.00563404 -26414,3507:459:1,79,-55,0,0,-0.00566165 -26415,3507:459:2,79.5,-55,0,0,-0.00566541 -26416,3508:350:1,80,-55,0,0,-0.0057033 -26417,3508:350:2,80.5,-55,0,0,-0.00576317 -26418,3508:351:1,81,-55,0,0,-0.00574398 -26419,3508:351:2,81.5,-55,0,0,-0.00572616 -26420,3508:352:1,82,-55,0,0,-0.00571216 -26421,3508:352:2,82.5,-55,0,0,-0.00569569 -26422,3508:353:1,83,-55,0,0,-0.00569318 -26423,3508:353:2,83.5,-55,0,0,-0.00572869 -26424,3508:354:1,84,-55,0,0,-0.00576317 -26425,3508:354:2,84.5,-55,0,0,-0.00574398 -26426,3508:455:1,85,-55,0,0,-0.0057198 -26427,3508:455:2,85.5,-55,0,0,-0.00570202 -26428,3508:456:1,86,-55,0,0,-0.00558293 -26429,3508:456:2,86.5,-55,0,0,-0.00549189 -26430,3508:457:1,87,-55,0,0,-0.00545423 -26431,3508:457:2,87.5,-55,0,0,-0.00544089 -26432,3508:458:1,88,-55,0,0,-0.00544573 -26433,3508:458:2,88.5,-55,0,0,-0.00544816 -26434,3508:459:1,89,-55,0,0,-0.005453 -26435,3508:459:2,89.5,-55,0,0,-0.00546148 -26436,3509:350:1,90,-55,0,0,-0.0054627 -26437,3509:350:2,90.5,-55,0,0,-0.0054627 -26438,3509:351:1,91,-55,0,0,-0.00548337 -26439,3509:351:2,91.5,-55,0,0,-0.00557177 -26440,3509:352:1,92,-55,0,0,-0.00571092 -26441,3509:352:2,92.5,-55,0,0,-0.00599704 -26442,3509:353:1,93,-55,0,0,-0.00605599 -26443,3509:353:2,93.5,-55,0,0,-0.00606676 -26444,3509:354:1,94,-55,0,0,-0.00603585 -26445,3509:354:2,94.5,-55,0,0,-0.0059771 -26446,3509:455:1,95,-55,0,0,-0.0059176 -26447,3509:455:2,95.5,-55,0,0,-0.00590185 -26448,3509:456:1,96,-55,0,0,-0.00594927 -26449,3509:456:2,96.5,-55,0,0,-0.0060318 -26450,3509:457:1,97,-55,0,0,-0.00596912 -26451,3509:457:2,97.5,-55,0,0,-0.00582237 -26452,3509:458:1,98,-55,0,0,-0.00553352 -26453,3509:458:2,98.5,-55,0,0,-0.00546511 -26454,3509:459:1,99,-55,0,0,-0.00553352 -26455,3509:459:2,99.5,-55,0,0,-0.00570965 -26456,3510:350:1,100,-55,0,0,-0.00576317 -26457,3510:350:2,100.5,-55,0,0,-0.00584833 -26458,3510:351:1,101,-55,0,0,-0.00602914 -26459,3510:351:2,101.5,-55,0,0,-0.0059519 -26460,3510:352:1,102,-55,0,0,-0.00567803 -26461,3510:352:2,102.5,-55,0,0,-0.00560158 -26462,3510:353:1,103,-55,0,0,-0.00568936 -26463,3510:353:2,103.5,-55,0,0,-0.00566668 -26464,3510:354:1,104,-55,0,0,-0.00548459 -26465,3510:354:2,104.5,-55,0,0,-0.00547119 -26466,3510:455:1,105,-55,0,0,-0.00546755 -26467,3510:455:2,105.5,-55,0,0,-0.00546755 -26468,3510:456:1,106,-55,0,0,-0.00546878 -26469,3510:456:2,106.5,-55,0,0,-0.00547241 -26470,3510:457:1,107,-55,0,0,-0.00546755 -26471,3510:457:2,107.5,-55,0,0,-0.00545907 -26472,3510:458:1,108,-55,0,0,-0.005453 -26473,3510:458:2,108.5,-55,0,0,-0.00544935 -26474,3510:459:1,109,-55,0,0,-0.00544816 -26475,3510:459:2,109.5,-55,0,0,-0.00544935 -26476,3511:350:1,110,-55,0,0,-0.00549557 -26477,3511:350:2,110.5,-55,0,0,-0.00566165 -26478,3511:351:1,111,-55,0,0,-0.00594399 -26479,3511:351:2,111.5,-55,0,0,-0.00609518 -26480,3511:352:1,112,-55,0,0,-0.00638362 -26481,3511:352:2,112.5,-55,0,0,-0.00689427 -26482,3511:353:1,113,-55,0,0,-0.00695279 -26483,3511:353:2,113.5,-55,0,0,-0.00697757 -26484,3511:354:1,114,-55,0,0,-0.00716161 -26485,3511:354:2,114.5,-55,0,0,-0.00741956 -26486,3511:455:1,115,-55,0,0,-0.00741296 -26487,3511:455:2,115.5,-55,0,0,-0.00715524 -26488,3511:456:1,116,-55,0,0,-0.00696517 -26489,3511:456:2,116.5,-55,0,0,-0.00685604 -26490,3511:457:1,117,-55,0,0,-0.00714572 -26491,3511:457:2,117.5,-55,0,0,-0.00739812 -26492,3511:458:1,118,-55,0,0,-0.00747597 -26493,3511:458:2,118.5,-55,0,0,-0.00745102 -26494,3511:459:1,119,-55,0,0,-0.00742455 -26495,3511:459:2,119.5,-55,0,0,-0.00763062 -26496,3512:350:1,120,-55,0,0,-0.00789153 -26497,3512:350:2,120.5,-55,0,0,-0.00810169 -26498,3512:351:1,121,-55,0,0,-0.00814509 -26499,3512:351:2,121.5,-55,0,0,-0.00842752 -26500,3512:352:1,122,-55,0,0,-0.00855047 -26501,3512:352:2,122.5,-55,0,0,-0.00853902 -26502,3512:353:1,123,-55,0,0,-0.00854855 -26503,3512:353:2,123.5,-55,0,0,-0.00862511 -26504,3512:354:1,124,-55,0,0,-0.00873729 -26505,3512:354:2,124.5,-55,0,0,-0.00889451 -26506,3512:455:1,125,-55,0,0,-0.00910308 -26507,3512:455:2,125.5,-55,0,0,-0.0091949 -26508,3512:456:1,126,-55,0,0,-0.00912951 -26509,3512:456:2,126.5,-55,0,0,-0.0089962 -26510,3512:457:1,127,-55,0,0,-0.00887668 -26511,3512:457:2,127.5,-55,0,0,-0.00885491 -26512,3512:458:1,128,-55,0,0,-0.00896614 -26513,3512:458:2,128.5,-55,0,0,-0.00925045 -26514,3512:459:1,129,-55,0,0,-0.00970701 -26515,3512:459:2,129.5,-55,0,0,-0.0101409 -26516,3513:350:1,130,-55,0,0,-0.0104093 -26517,3513:350:2,130.5,-55,0,0,-0.0105332 -26518,3513:351:1,131,-55,0,0,-0.0104933 -26519,3513:351:2,131.5,-55,0,0,-0.0103306 -26520,3513:352:1,132,-55,0,0,-0.00997481 -26521,3513:352:2,132.5,-55,0,0,-0.0095566 -26522,3513:353:1,133,-55,0,0,-0.00966375 -26523,3513:353:2,133.5,-55,0,0,-0.00986854 -26524,3513:354:1,134,-55,0,0,-0.00961434 -26525,3513:354:2,134.5,-55,0,0,-0.00931044 -26526,3513:455:1,135,-55,0,0,-0.00929595 -26527,3513:455:2,135.5,-55,0,0,-0.00926903 -26528,3513:456:1,136,-55,0,0,-0.00925662 -26529,3513:456:2,136.5,-55,0,0,-0.0092319 -26530,3513:457:1,137,-55,0,0,-0.00915807 -26531,3513:457:2,137.5,-55,0,0,-0.00906057 -26532,3513:458:1,138,-55,0,0,-0.00894019 -26533,3513:458:2,138.5,-55,0,0,-0.00870229 -26534,3513:459:1,139,-55,0,0,-0.00853525 -26535,3513:459:2,139.5,-55,0,0,-0.00848404 -26536,3514:350:1,140,-55,0,0,-0.00854855 -26537,3514:350:2,140.5,-55,0,0,-0.00879201 -26538,3514:351:1,141,-55,0,0,-0.00885491 -26539,3514:351:2,141.5,-55,0,0,-0.00889052 -26540,3514:352:1,142,-55,0,0,-0.008851 -26541,3514:352:2,142.5,-55,0,0,-0.00884504 -26542,3514:353:1,143,-55,0,0,-0.00898213 -26543,3514:353:2,143.5,-55,0,0,-0.00911325 -26544,3514:354:1,144,-55,0,0,-0.00904044 -26545,3514:354:2,144.5,-55,0,0,-0.00884901 -26546,3514:455:1,145,-55,0,0,-0.00861163 -26547,3514:455:2,145.5,-55,0,0,-0.00831562 -26548,3514:456:1,146,-55,0,0,-0.00808727 -26549,3514:456:2,146.5,-55,0,0,-0.00821069 -26550,3514:457:1,147,-55,0,0,-0.008336 -26551,3514:457:2,147.5,-55,0,0,-0.00797456 -26552,3514:458:1,148,-55,0,0,-0.00736363 -26553,3514:458:2,148.5,-55,0,0,-0.00677117 -26554,3514:459:1,149,-55,0,0,-0.00633276 -26555,3514:459:2,149.5,-55,0,0,-0.00592684 -26556,3515:350:1,150,-55,0,0,-0.00580558 -26557,3515:350:2,150.5,-55,0,0,-0.00572997 -26558,3515:351:1,151,-55,0,0,-0.00577342 -26559,3515:351:2,151.5,-55,0,0,-0.00609518 -26560,3515:352:1,152,-55,0,0,-0.00629903 -26561,3515:352:2,152.5,-55,0,0,-0.00592157 -26562,3515:353:1,153,-55,0,0,-0.00561653 -26563,3515:353:2,153.5,-55,0,0,-0.0055188 -26564,3515:354:1,154,-55,0,0,-0.00550534 -26565,3515:354:2,154.5,-55,0,0,-0.00552985 -26566,3515:455:1,155,-55,0,0,-0.00552127 -26567,3515:455:2,155.5,-55,0,0,-0.00550165 -26568,3515:456:1,156,-55,0,0,-0.00549069 -26569,3515:456:2,156.5,-55,0,0,-0.00549923 -26570,3515:457:1,157,-55,0,0,-0.005498 -26571,3515:457:2,157.5,-55,0,0,-0.00551147 -26572,3515:458:1,158,-55,0,0,-0.00554832 -26573,3515:458:2,158.5,-55,0,0,-0.00555077 -26574,3515:459:1,159,-55,0,0,-0.00553724 -26575,3515:459:2,159.5,-55,0,0,-0.0055225 -26576,3516:350:1,160,-55,0,0,-0.00550777 -26577,3516:350:2,160.5,-55,0,0,-0.00550534 -26578,3516:351:1,161,-55,0,0,-0.00550165 -26579,3516:351:2,161.5,-55,0,0,-0.00551024 -26580,3516:352:1,162,-55,0,0,-0.0055446 -26581,3516:352:2,162.5,-55,0,0,-0.00553108 -26582,3516:353:1,163,-55,0,0,-0.0055446 -26583,3516:353:2,163.5,-55,0,0,-0.00567675 -26584,3516:354:1,164,-55,0,0,-0.00591106 -26585,3516:354:2,164.5,-55,0,0,-0.00595719 -26586,3516:455:1,165,-55,0,0,-0.00591234 -26587,3516:455:2,165.5,-55,0,0,-0.00646936 -26588,3516:456:1,166,-55,0,0,-0.00744607 -26589,3516:456:2,166.5,-55,0,0,-0.00862511 -26590,3516:457:1,167,-55,0,0,-0.00960577 -26591,3516:457:2,167.5,-55,0,0,-0.00975258 -26592,3516:458:1,168,-55,0,0,-0.009694 -26593,3516:458:2,168.5,-55,0,0,-0.00980271 -26594,3516:459:1,169,-55,0,0,-0.0090586 -26595,3516:459:2,169.5,-55,0,0,-0.00842002 -26596,3517:350:1,170,-55,0,0,-0.00895419 -26597,3517:350:2,170.5,-55,0,0,-0.00952678 -26598,3517:351:1,171,-55,0,0,-0.0106848 -26599,3517:351:2,171.5,-55,0,0,-0.0121878 -26600,3517:352:1,172,-55,0,0,-0.0133678 -26601,3517:352:2,172.5,-55,0,0,-0.0143484 -26602,3517:353:1,173,-55,0,0,-0.0155442 -26603,3517:353:2,173.5,-55,0,0,-0.0166384 -26604,3517:354:1,174,-55,0,0,-0.0170012 -26605,3517:354:2,174.5,-55,0,0,-0.0167585 -26606,3517:455:1,175,-55,0,0,-0.016258 -26607,3517:455:2,175.5,-55,0,0,-0.0154816 -26608,3517:456:1,176,-55,0,0,-0.0141885 -26609,3517:456:2,176.5,-55,0,0,-0.0137627 -26610,3517:457:1,177,-55,0,0,-0.013735 -26611,3517:457:2,177.5,-55,0,0,-0.0137905 -26612,3517:458:1,178,-55,0,0,-0.0141409 -26613,3517:458:2,178.5,-55,0,0,-0.0147033 -26614,3517:459:1,179,-55,0,0,-0.0148491 -26615,3517:459:2,179.5,-55,0,0,-0.0140179 -26616,3518:350:1,180,-55,0,0,-0.0135517 -26617,5518:140:3,-180,-54.5,0,0,-0.0135608 -26618,5517:249:4,-179.5,-54.5,0,0,-0.0135305 -26619,5517:249:3,-179,-54.5,0,0,-0.0131895 -26620,5517:248:4,-178.5,-54.5,0,0,-0.0123608 -26621,5517:248:3,-178,-54.5,0,0,-0.012458 -26622,5517:247:4,-177.5,-54.5,0,0,-0.0127598 -26623,5517:247:3,-177,-54.5,0,0,-0.0129641 -26624,5517:246:4,-176.5,-54.5,0,0,-0.0130514 -26625,5517:246:3,-176,-54.5,0,0,-0.012817 -26626,5517:245:4,-175.5,-54.5,0,0,-0.0122233 -26627,5517:245:3,-175,-54.5,0,0,-0.0115408 -26628,5517:144:4,-174.5,-54.5,0,0,-0.010975 -26629,5517:144:3,-174,-54.5,0,0,-0.0106681 -26630,5517:143:4,-173.5,-54.5,0,0,-0.0106919 -26631,5517:143:3,-173,-54.5,0,0,-0.0106704 -26632,5517:142:4,-172.5,-54.5,0,0,-0.0103513 -26633,5517:142:3,-172,-54.5,0,0,-0.0100083 -26634,5517:141:4,-171.5,-54.5,0,0,-0.00957366 -26635,5517:141:3,-171,-54.5,0,0,-0.00920724 -26636,5517:140:4,-170.5,-54.5,0,0,-0.00912342 -26637,5517:140:3,-170,-54.5,0,0,-0.00895815 -26638,5516:249:4,-169.5,-54.5,0,0,-0.00854664 -26639,5516:249:3,-169,-54.5,0,0,-0.00823081 -26640,5516:248:4,-168.5,-54.5,0,0,-0.00807645 -26641,5516:248:3,-168,-54.5,0,0,-0.00801553 -26642,5516:247:4,-167.5,-54.5,0,0,-0.00802267 -26643,5516:247:3,-167,-54.5,0,0,-0.00809448 -26644,5516:246:4,-166.5,-54.5,0,0,-0.00817782 -26645,5516:246:3,-166,-54.5,0,0,-0.00814875 -26646,5516:245:4,-165.5,-54.5,0,0,-0.00808365 -26647,5516:245:3,-165,-54.5,0,0,-0.00804058 -26648,5516:144:4,-164.5,-54.5,0,0,-0.0080531 -26649,5516:144:3,-164,-54.5,0,0,-0.00810351 -26650,5516:143:4,-163.5,-54.5,0,0,-0.00817966 -26651,5516:143:3,-163,-54.5,0,0,-0.00823635 -26652,5516:142:4,-162.5,-54.5,0,0,-0.00826759 -26653,5516:142:3,-162,-54.5,0,0,-0.00833413 -26654,5516:141:4,-161.5,-54.5,0,0,-0.0085963 -26655,5516:141:3,-161,-54.5,0,0,-0.00911126 -26656,5516:140:4,-160.5,-54.5,0,0,-0.00933538 -26657,5516:140:3,-160,-54.5,0,0,-0.00909702 -26658,5515:249:4,-159.5,-54.5,0,0,-0.00883524 -26659,5515:249:3,-159,-54.5,0,0,-0.00857335 -26660,5515:248:4,-158.5,-54.5,0,0,-0.00809448 -26661,5515:248:3,-158,-54.5,0,0,-0.00803342 -26662,5515:247:4,-157.5,-54.5,0,0,-0.00797993 -26663,5515:247:3,-157,-54.5,0,0,-0.00794621 -26664,5515:246:4,-156.5,-54.5,0,0,-0.00799415 -26665,5515:246:3,-156,-54.5,0,0,-0.00794621 -26666,5515:245:4,-155.5,-54.5,0,0,-0.0079056 -26667,5515:245:3,-155,-54.5,0,0,-0.00790388 -26668,5515:144:4,-154.5,-54.5,0,0,-0.0078933 -26669,5515:144:3,-154,-54.5,0,0,-0.00785825 -26670,5515:143:4,-153.5,-54.5,0,0,-0.00781809 -26671,5515:143:3,-153,-54.5,0,0,-0.00778681 -26672,5515:142:4,-152.5,-54.5,0,0,-0.00774186 -26673,5515:142:3,-152,-54.5,0,0,-0.00771434 -26674,5515:141:4,-151.5,-54.5,0,0,-0.00775913 -26675,5515:141:3,-151,-54.5,0,0,-0.00785996 -26676,5515:140:4,-150.5,-54.5,0,0,-0.00815784 -26677,5515:140:3,-150,-54.5,0,0,-0.00888852 -26678,5514:249:4,-149.5,-54.5,0,0,-0.00968318 -26679,5514:249:3,-149,-54.5,0,0,-0.010098 -26680,5514:248:4,-148.5,-54.5,0,0,-0.00959074 -26681,5514:248:3,-148,-54.5,0,0,-0.0095865 -26682,5514:247:4,-147.5,-54.5,0,0,-0.00960146 -26683,5514:247:3,-147,-54.5,0,0,-0.00965731 -26684,5514:246:4,-146.5,-54.5,0,0,-0.00986854 -26685,5514:246:3,-146,-54.5,0,0,-0.0101184 -26686,5514:245:4,-145.5,-54.5,0,0,-0.0108338 -26687,5514:245:3,-145,-54.5,0,0,-0.011066 -26688,5514:144:4,-144.5,-54.5,0,0,-0.0106158 -26689,5514:144:3,-144,-54.5,0,0,-0.0103467 -26690,5514:143:4,-143.5,-54.5,0,0,-0.0102731 -26691,5514:143:3,-143,-54.5,0,0,-0.0106872 -26692,5514:142:4,-142.5,-54.5,0,0,-0.0115951 -26693,5514:142:3,-142,-54.5,0,0,-0.0124858 -26694,5514:141:4,-141.5,-54.5,0,0,-0.0127141 -26695,5514:141:3,-141,-54.5,0,0,-0.0121961 -26696,5514:140:4,-140.5,-54.5,0,0,-0.0114893 -26697,5514:140:3,-140,-54.5,0,0,-0.011306 -26698,5513:249:4,-139.5,-54.5,0,0,-0.0114535 -26699,5513:249:3,-139,-54.5,0,0,-0.0118148 -26700,5513:248:4,-138.5,-54.5,0,0,-0.0115744 -26701,5513:248:3,-138,-54.5,0,0,-0.0113338 -26702,5513:247:4,-137.5,-54.5,0,0,-0.0103098 -26703,5513:247:3,-137,-54.5,0,0,-0.00982028 -26704,5513:246:4,-136.5,-54.5,0,0,-0.00977871 -26705,5513:246:3,-136,-54.5,0,0,-0.0104488 -26706,5513:245:4,-135.5,-54.5,0,0,-0.0116366 -26707,5513:245:3,-135,-54.5,0,0,-0.0124718 -26708,5513:144:4,-134.5,-54.5,0,0,-0.0128774 -26709,5513:144:3,-134,-54.5,0,0,-0.0120955 -26710,5513:143:4,-133.5,-54.5,0,0,-0.0108992 -26711,5513:143:3,-133,-54.5,0,0,-0.0104395 -26712,5513:142:4,-132.5,-54.5,0,0,-0.0107063 -26713,5513:142:3,-132,-54.5,0,0,-0.0114279 -26714,5513:141:4,-131.5,-54.5,0,0,-0.011921 -26715,5513:141:3,-131,-54.5,0,0,-0.0122398 -26716,5513:140:4,-130.5,-54.5,0,0,-0.0125138 -26717,5513:140:3,-130,-54.5,0,0,-0.0124914 -26718,5512:249:4,-129.5,-54.5,0,0,-0.0120012 -26719,5512:249:3,-129,-54.5,0,0,-0.0117097 -26720,5512:248:4,-128.5,-54.5,0,0,-0.0117964 -26721,5512:248:3,-128,-54.5,0,0,-0.0119051 -26722,5512:247:4,-127.5,-54.5,0,0,-0.0119691 -26723,5512:247:3,-127,-54.5,0,0,-0.0121878 -26724,5512:246:4,-126.5,-54.5,0,0,-0.0123498 -26725,5512:246:3,-126,-54.5,0,0,-0.0124301 -26726,5512:245:4,-125.5,-54.5,0,0,-0.0124747 -26727,5512:245:3,-125,-54.5,0,0,-0.012458 -26728,5512:144:4,-124.5,-54.5,0,0,-0.0124356 -26729,5512:144:3,-124,-54.5,0,0,-0.0124079 -26730,5512:143:4,-123.5,-54.5,0,0,-0.0124106 -26731,5512:143:3,-123,-54.5,0,0,-0.0124384 -26732,5512:142:4,-122.5,-54.5,0,0,-0.0124301 -26733,5512:142:3,-122,-54.5,0,0,-0.0123884 -26734,5512:141:4,-121.5,-54.5,0,0,-0.0123884 -26735,5512:141:3,-121,-54.5,0,0,-0.0124886 -26736,5512:140:4,-120.5,-54.5,0,0,-0.0126489 -26737,5512:140:3,-120,-54.5,0,0,-0.012837 -26738,5511:249:4,-119.5,-54.5,0,0,-0.0130164 -26739,5511:249:3,-119,-54.5,0,0,-0.0131453 -26740,5511:248:4,-118.5,-54.5,0,0,-0.0133439 -26741,5511:248:3,-118,-54.5,0,0,-0.0137412 -26742,5511:247:4,-117.5,-54.5,0,0,-0.0147263 -26743,5511:247:3,-117,-54.5,0,0,-0.0153743 -26744,5511:246:4,-116.5,-54.5,0,0,-0.0154573 -26745,5511:246:3,-116,-54.5,0,0,-0.0154123 -26746,5511:245:4,-115.5,-54.5,0,0,-0.0153296 -26747,5511:245:3,-115,-54.5,0,0,-0.0152746 -26748,5511:144:4,-114.5,-54.5,0,0,-0.0153226 -26749,5511:144:3,-114,-54.5,0,0,-0.0155025 -26750,5511:143:4,-113.5,-54.5,0,0,-0.0156458 -26751,5511:143:3,-113,-54.5,0,0,-0.0155967 -26752,5511:142:4,-112.5,-54.5,0,0,-0.0150131 -26753,5511:142:3,-112,-54.5,0,0,-0.014387 -26754,5511:141:4,-111.5,-54.5,0,0,-0.0144581 -26755,5511:141:3,-111,-54.5,0,0,-0.0145786 -26756,5511:140:4,-110.5,-54.5,0,0,-0.0146145 -26757,5511:140:3,-110,-54.5,0,0,-0.014484 -26758,5510:249:4,-109.5,-54.5,0,0,-0.0143034 -26759,5510:249:3,-109,-54.5,0,0,-0.0143259 -26760,5510:248:4,-108.5,-54.5,0,0,-0.0150637 -26761,5510:248:3,-108,-54.5,0,0,-0.0155199 -26762,5510:247:4,-107.5,-54.5,0,0,-0.0151892 -26763,5510:247:3,-107,-54.5,0,0,-0.0142938 -26764,5510:246:4,-106.5,-54.5,0,0,-0.0135973 -26765,5510:246:3,-106,-54.5,0,0,-0.0132516 -26766,5510:245:4,-105.5,-54.5,0,0,-0.013034 -26767,5510:245:3,-105,-54.5,0,0,-0.0129352 -26768,5510:144:4,-104.5,-54.5,0,0,-0.0128543 -26769,5510:144:3,-104,-54.5,0,0,-0.0127826 -26770,5510:143:4,-103.5,-54.5,0,0,-0.0127712 -26771,5510:143:3,-103,-54.5,0,0,-0.0129207 -26772,5510:142:4,-102.5,-54.5,0,0,-0.0138276 -26773,5510:142:3,-102,-54.5,0,0,-0.0145622 -26774,5510:141:4,-101.5,-54.5,0,0,-0.0146572 -26775,5510:141:3,-101,-54.5,0,0,-0.0145362 -26776,5510:140:4,-100.5,-54.5,0,0,-0.014342 -26777,5510:140:3,-100,-54.5,0,0,-0.0140525 -26778,5509:249:4,-99.5,-54.5,0,0,-0.0137258 -26779,5509:249:3,-99,-54.5,0,0,-0.0134128 -26780,5509:248:4,-98.5,-54.5,0,0,-0.013341 -26781,5509:248:3,-98,-54.5,0,0,-0.0138929 -26782,5509:247:4,-97.5,-54.5,0,0,-0.0150198 -26783,5509:247:3,-97,-54.5,0,0,-0.0155792 -26784,5509:246:4,-96.5,-54.5,0,0,-0.0156633 -26785,5509:246:3,-96,-54.5,0,0,-0.0152712 -26786,5509:245:4,-95.5,-54.5,0,0,-0.0144322 -26787,5509:245:3,-95,-54.5,0,0,-0.0137874 -26788,5509:144:4,-94.5,-54.5,0,0,-0.0134791 -26789,5509:144:3,-94,-54.5,0,0,-0.0132665 -26790,5509:143:4,-93.5,-54.5,0,0,-0.0129583 -26791,5509:143:3,-93,-54.5,0,0,-0.0126716 -26792,5509:142:4,-92.5,-54.5,0,0,-0.0125981 -26793,5509:142:3,-92,-54.5,0,0,-0.0136186 -26794,5509:141:4,-91.5,-54.5,0,0,-0.0146901 -26795,5509:141:3,-91,-54.5,0,0,-0.0146178 -26796,5509:140:4,-90.5,-54.5,0,0,-0.0144873 -26797,5509:140:3,-90,-54.5,0,0,-0.0142363 -26798,5508:249:4,-89.5,-54.5,0,0,-0.0132813 -26799,5508:249:3,-89,-54.5,0,0,-0.0130631 -26800,5508:248:4,-88.5,-54.5,0,0,-0.0132516 -26801,5508:248:3,-88,-54.5,0,0,-0.0138959 -26802,5508:247:4,-87.5,-54.5,0,0,-0.0139084 -26803,5508:247:3,-87,-54.5,0,0,-0.0136461 -26804,5508:246:4,-86.5,-54.5,0,0,-0.0136798 -26805,5508:246:3,-86,-54.5,0,0,-0.0141188 -26806,5508:245:4,-85.5,-54.5,0,0,-0.014484 -26807,5508:245:3,-85,-54.5,0,0,-0.0147131 -26808,5508:144:4,-84.5,-54.5,0,0,-0.0148124 -26809,5508:144:3,-84,-54.5,0,0,-0.0146868 -26810,5508:143:4,-83.5,-54.5,0,0,-0.0144322 -26811,5508:143:3,-83,-54.5,0,0,-0.0142267 -26812,5508:142:4,-82.5,-54.5,0,0,-0.0140493 -26813,5508:142:3,-82,-54.5,0,0,-0.013735 -26814,5508:141:4,-81.5,-54.5,0,0,-0.0137073 -26815,5508:141:3,-81,-54.5,0,0,-0.0137597 -26816,5508:140:4,-80.5,-54.5,0,0,-0.0141885 -26817,5508:140:3,-80,-54.5,0,0,-0.014869 -26818,5507:249:4,-79.5,-54.5,0,0,-0.0157056 -26819,5507:249:3,-79,-54.5,0,0,-0.0162762 -26820,5507:248:4,-78.5,-54.5,0,0,-0.0163311 -26821,5507:248:3,-78,-54.5,0,0,-0.0161997 -26822,5507:247:4,-77.5,-54.5,0,0,-0.0161054 -26823,5507:247:3,-77,-54.5,0,0,-0.0160008 -26824,5507:246:4,-76.5,-54.5,0,0,-0.0158294 -26825,5507:246:3,-76,-54.5,0,0,-0.015499 -26826,5507:245:4,-75.5,-54.5,0,0,-0.0149225 -26827,5507:245:3,-75,-54.5,0,0,-0.0144031 -26828,5507:144:4,-74.5,-54.5,0,0,-0.0139208 -26829,5507:144:3,-74,-54.5,0,0,-0.0137473 -26830,5507:143:4,-73.5,-54.5,0,0,-0.0141188 -26831,5507:143:3,-73,-54.5,0,0,-0.0146769 -26832,5507:142:4,-72.5,-54.5,0,0,-0.0151654 -26833,5507:142:3,-72,-54.5,0,0,-0.0145362 -26834,5507:141:4,-71.5,-54.5,0,0,-0.0135638 -26835,5507:141:3,-71,-54.5,0,0,-0.0131688 -26836,5507:140:4,-70.5,-54.5,0,0,-0.0129496 -26837,5507:140:3,-70,-54.5,0,0,-0.0128199 -26838,5506:249:4,-69.5,-54.5,0,0,-0.0127398 -26839,5506:249:3,-69,-54.5,0,0,-0.0128744 -26840,5506:248:4,-68.5,-54.5,0,0,-0.0131423 -26841,5506:248:3,-68,-54.5,0,0,-0.0122233 -26842,5506:247:4,-67.5,-54.5,0,0,-0.00989283 -26843,5506:247:3,-67,-54.5,0,0,-0.00818511 -26844,5506:246:4,-66.5,-54.5,0,0,-0.00802627 -26845,5506:246:3,-66,-54.5,0,0,-0.00935 -26846,5506:245:4,-65.5,-54.5,0,0,-0.00994152 -26847,5506:245:3,-65,-54.5,0,0,-0.00997706 -26848,5506:144:4,-64.5,-54.5,0,0,-0.00963367 -26849,5506:144:3,-64,-54.5,0,0,-0.00876067 -26850,5506:143:4,-63.5,-54.5,0,0,-0.00696517 -26851,5506:143:3,-63,-54.5,0,0,-0.0066948 -26852,5506:142:4,-62.5,-54.5,0,0,-0.00682864 -26853,5506:142:3,-62,-54.5,0,0,-0.00705566 -26854,5506:141:4,-61.5,-54.5,0,0,-0.0071045 -26855,5506:141:3,-61,-54.5,0,0,-0.00716643 -26856,5506:140:4,-60.5,-54.5,0,0,-0.00715524 -26857,5506:140:3,-60,-54.5,0,0,-0.00717436 -26858,5505:249:4,-59.5,-54.5,0,0,-0.00720317 -26859,5505:249:3,-59,-54.5,0,0,-0.00721599 -26860,5505:247:4,-57.5,-54.5,0,0,-0.00627944 -26861,5505:247:3,-57,-54.5,0,0,-0.00621005 -26862,5505:246:4,-56.5,-54.5,0,0,-0.00610602 -26863,5505:246:3,-56,-54.5,0,0,-0.00601174 -26864,5505:245:4,-55.5,-54.5,0,0,-0.00591106 -26865,5505:245:3,-55,-54.5,0,0,-0.00582237 -26866,5505:144:4,-54.5,-54.5,0,0,-0.00580432 -26867,5505:144:3,-54,-54.5,0,0,-0.00575294 -26868,5505:143:4,-53.5,-54.5,0,0,-0.00558914 -26869,5505:143:3,-53,-54.5,0,0,-0.00547486 -26870,5505:142:4,-52.5,-54.5,0,0,-0.00544695 -26871,5505:142:3,-52,-54.5,0,0,-0.00546148 -26872,5505:141:4,-51.5,-54.5,0,0,-0.00546633 -26873,5505:141:3,-51,-54.5,0,0,-0.00546392 -26874,5505:140:4,-50.5,-54.5,0,0,-0.00546026 -26875,5505:140:3,-50,-54.5,0,0,-0.00546026 -26876,5504:249:4,-49.5,-54.5,0,0,-0.0054627 -26877,5504:249:3,-49,-54.5,0,0,-0.00546392 -26878,5504:248:4,-48.5,-54.5,0,0,-0.00546511 -26879,5504:248:3,-48,-54.5,0,0,-0.0054627 -26880,5504:247:4,-47.5,-54.5,0,0,-0.00546148 -26881,5504:247:3,-47,-54.5,0,0,-0.0054627 -26882,5504:246:4,-46.5,-54.5,0,0,-0.00546392 -26883,5504:246:3,-46,-54.5,0,0,-0.0054627 -26884,5504:245:4,-45.5,-54.5,0,0,-0.0054627 -26885,5504:245:3,-45,-54.5,0,0,-0.00546148 -26886,5504:144:4,-44.5,-54.5,0,0,-0.00545907 -26887,5504:144:3,-44,-54.5,0,0,-0.00545785 -26888,5504:143:4,-43.5,-54.5,0,0,-0.00545785 -26889,5504:143:3,-43,-54.5,0,0,-0.00545907 -26890,5504:142:4,-42.5,-54.5,0,0,-0.00545907 -26891,5504:142:3,-42,-54.5,0,0,-0.00545541 -26892,5504:141:4,-41.5,-54.5,0,0,-0.00545423 -26893,5504:141:3,-41,-54.5,0,0,-0.00545541 -26894,5504:140:4,-40.5,-54.5,0,0,-0.00545541 -26895,5504:140:3,-40,-54.5,0,0,-0.00545423 -26896,5503:249:4,-39.5,-54.5,0,0,-0.005453 -26897,5503:249:3,-39,-54.5,0,0,-0.005453 -26898,5503:248:4,-38.5,-54.5,0,0,-0.00545179 -26899,5503:248:3,-38,-54.5,0,0,-0.00545179 -26900,5503:247:4,-37.5,-54.5,0,0,-0.00545179 -26901,5503:247:3,-37,-54.5,0,0,-0.00545057 -26902,5503:246:4,-36.5,-54.5,0,0,-0.00545057 -26903,5503:246:3,-36,-54.5,0,0,-0.00545179 -26904,5503:245:4,-35.5,-54.5,0,0,-0.005453 -26905,5503:245:3,-35,-54.5,0,0,-0.005453 -26906,5503:144:4,-34.5,-54.5,0,0,-0.005453 -26907,5503:144:3,-34,-54.5,0,0,-0.00545423 -26908,5503:143:4,-33.5,-54.5,0,0,-0.00545663 -26909,5503:143:3,-33,-54.5,0,0,-0.00545785 -26910,5503:142:4,-32.5,-54.5,0,0,-0.00545907 -26911,5503:142:3,-32,-54.5,0,0,-0.00546026 -26912,5503:141:4,-31.5,-54.5,0,0,-0.00546026 -26913,5503:141:3,-31,-54.5,0,0,-0.00546026 -26914,5503:140:4,-30.5,-54.5,0,0,-0.00546026 -26915,5503:140:3,-30,-54.5,0,0,-0.00546026 -26916,5502:249:4,-29.5,-54.5,0,0,-0.00545907 -26917,5502:249:3,-29,-54.5,0,0,-0.00545907 -26918,5502:248:4,-28.5,-54.5,0,0,-0.00545785 -26919,5502:248:3,-28,-54.5,0,0,-0.00545785 -26920,5502:247:4,-27.5,-54.5,0,0,-0.00545785 -26921,5502:247:3,-27,-54.5,0,0,-0.00545785 -26922,5502:246:4,-26.5,-54.5,0,0,-0.00545907 -26923,5502:246:3,-26,-54.5,0,0,-0.00545907 -26924,5502:245:4,-25.5,-54.5,0,0,-0.00546026 -26925,5502:245:3,-25,-54.5,0,0,-0.00546026 -26926,5502:144:4,-24.5,-54.5,0,0,-0.00545907 -26927,5502:144:3,-24,-54.5,0,0,-0.00545785 -26928,5502:143:4,-23.5,-54.5,0,0,-0.00545663 -26929,5502:143:3,-23,-54.5,0,0,-0.00545541 -26930,5502:142:4,-22.5,-54.5,0,0,-0.00545423 -26931,5502:142:3,-22,-54.5,0,0,-0.00545179 -26932,5502:141:4,-21.5,-54.5,0,0,-0.00545179 -26933,5502:141:3,-21,-54.5,0,0,-0.00545057 -26934,5502:140:4,-20.5,-54.5,0,0,-0.00544935 -26935,5502:140:3,-20,-54.5,0,0,-0.00544935 -26936,5501:249:4,-19.5,-54.5,0,0,-0.00545057 -26937,5501:249:3,-19,-54.5,0,0,-0.00545423 -26938,5501:248:4,-18.5,-54.5,0,0,-0.00545179 -26939,5501:248:3,-18,-54.5,0,0,-0.00544935 -26940,5501:247:4,-17.5,-54.5,0,0,-0.00544816 -26941,5501:247:3,-17,-54.5,0,0,-0.00544573 -26942,5501:246:4,-16.5,-54.5,0,0,-0.00544573 -26943,5501:246:3,-16,-54.5,0,0,-0.00544695 -26944,5501:245:4,-15.5,-54.5,0,0,-0.00544816 -26945,5501:245:3,-15,-54.5,0,0,-0.005453 -26946,5501:144:4,-14.5,-54.5,0,0,-0.00545663 -26947,5501:144:3,-14,-54.5,0,0,-0.00545785 -26948,5501:143:4,-13.5,-54.5,0,0,-0.00545663 -26949,5501:143:3,-13,-54.5,0,0,-0.00545423 -26950,5501:142:4,-12.5,-54.5,0,0,-0.005453 -26951,5501:142:3,-12,-54.5,0,0,-0.00545179 -26952,5501:141:4,-11.5,-54.5,0,0,-0.00545057 -26953,5501:141:3,-11,-54.5,0,0,-0.00544816 -26954,5501:140:4,-10.5,-54.5,0,0,-0.00544695 -26955,5501:140:3,-10,-54.5,0,0,-0.00544451 -26956,5500:249:4,-9.5,-54.5,0,0,-0.00544451 -26957,5500:249:3,-9,-54.5,0,0,-0.00544816 -26958,5500:248:4,-8.5,-54.5,0,0,-0.00544816 -26959,5500:248:3,-8,-54.5,0,0,-0.00544935 -26960,5500:247:4,-7.5,-54.5,0,0,-0.00544816 -26961,5500:247:3,-7,-54.5,0,0,-0.00544451 -26962,5500:246:4,-6.5,-54.5,0,0,-0.00544333 -26963,5500:246:3,-6,-54.5,0,0,-0.00544211 -26964,5500:245:4,-5.5,-54.5,0,0,-0.00544211 -26965,5500:245:3,-5,-54.5,0,0,-0.00544333 -26966,5500:144:4,-4.5,-54.5,0,0,-0.00544333 -26967,5500:144:3,-4,-54.5,0,0,-0.00544451 -26968,5500:143:4,-3.5,-54.5,0,0,-0.00544451 -26969,5500:143:3,-3,-54.5,0,0,-0.00544333 -26970,5500:142:4,-2.5,-54.5,0,0,-0.00544333 -26971,5500:142:3,-2,-54.5,0,0,-0.00544333 -26972,5500:141:4,-1.5,-54.5,0,0,-0.00544089 -26973,5500:141:3,-1,-54.5,0,0,-0.0054385 -26974,5500:140:4,-0.5,-54.5,0,0,-0.0054385 -26975,3500:140:4,0,-54.5,0,0,-0.00543968 -26976,3500:140:4,0.5,-54.5,0,0,-0.0054385 -26977,3500:141:3,1,-54.5,0,0,-0.00543968 -26978,3500:141:4,1.5,-54.5,0,0,-0.00543728 -26979,3500:142:3,2,-54.5,0,0,-0.0054385 -26980,3500:142:4,2.5,-54.5,0,0,-0.00544211 -26981,3500:143:3,3,-54.5,0,0,-0.00544695 -26982,3500:143:4,3.5,-54.5,0,0,-0.00544573 -26983,3500:144:3,4,-54.5,0,0,-0.00544816 -26984,3500:144:4,4.5,-54.5,0,0,-0.00545179 -26985,3500:245:3,5,-54.5,0,0,-0.005453 -26986,3500:245:4,5.5,-54.5,0,0,-0.00545179 -26987,3500:246:3,6,-54.5,0,0,-0.00545179 -26988,3500:246:4,6.5,-54.5,0,0,-0.00544573 -26989,3500:247:3,7,-54.5,0,0,-0.00543968 -26990,3500:247:4,7.5,-54.5,0,0,-0.00543968 -26991,3500:248:3,8,-54.5,0,0,-0.00544211 -26992,3500:248:4,8.5,-54.5,0,0,-0.00544333 -26993,3500:249:3,9,-54.5,0,0,-0.00544573 -26994,3500:249:4,9.5,-54.5,0,0,-0.00544695 -26995,3501:140:3,10,-54.5,0,0,-0.00544816 -26996,3501:140:4,10.5,-54.5,0,0,-0.00544935 -26997,3501:141:3,11,-54.5,0,0,-0.00544935 -26998,3501:141:4,11.5,-54.5,0,0,-0.00544935 -26999,3501:142:3,12,-54.5,0,0,-0.00544935 -27000,3501:142:4,12.5,-54.5,0,0,-0.00544935 -27001,3501:143:3,13,-54.5,0,0,-0.00545057 -27002,3501:143:4,13.5,-54.5,0,0,-0.00545057 -27003,3501:144:3,14,-54.5,0,0,-0.00545057 -27004,3501:144:4,14.5,-54.5,0,0,-0.00545057 -27005,3501:245:3,15,-54.5,0,0,-0.00545057 -27006,3501:245:4,15.5,-54.5,0,0,-0.00544935 -27007,3501:246:3,16,-54.5,0,0,-0.00545179 -27008,3501:246:4,16.5,-54.5,0,0,-0.00545179 -27009,3501:247:3,17,-54.5,0,0,-0.00545057 -27010,3501:247:4,17.5,-54.5,0,0,-0.00545057 -27011,3501:248:3,18,-54.5,0,0,-0.00545057 -27012,3501:248:4,18.5,-54.5,0,0,-0.00544935 -27013,3501:249:3,19,-54.5,0,0,-0.00544935 -27014,3501:249:4,19.5,-54.5,0,0,-0.005453 -27015,3502:140:3,20,-54.5,0,0,-0.00545541 -27016,3502:140:4,20.5,-54.5,0,0,-0.005453 -27017,3502:141:3,21,-54.5,0,0,-0.00544451 -27018,3502:141:4,21.5,-54.5,0,0,-0.0054385 -27019,3502:142:3,22,-54.5,0,0,-0.0054385 -27020,3502:142:4,22.5,-54.5,0,0,-0.00543728 -27021,3502:143:3,23,-54.5,0,0,-0.00542881 -27022,3502:143:4,23.5,-54.5,0,0,-0.00545179 -27023,3502:144:3,24,-54.5,0,0,-0.00546878 -27024,3502:144:4,24.5,-54.5,0,0,-0.00547119 -27025,3502:245:3,25,-54.5,0,0,-0.00547 -27026,3502:245:4,25.5,-54.5,0,0,-0.00547241 -27027,3502:246:3,26,-54.5,0,0,-0.00546755 -27028,3502:246:4,26.5,-54.5,0,0,-0.00545907 -27029,3502:247:3,27,-54.5,0,0,-0.00545663 -27030,3502:247:4,27.5,-54.5,0,0,-0.00545541 -27031,3502:248:3,28,-54.5,0,0,-0.00545785 -27032,3502:248:4,28.5,-54.5,0,0,-0.00546878 -27033,3502:249:3,29,-54.5,0,0,-0.00547364 -27034,3502:249:4,29.5,-54.5,0,0,-0.00548337 -27035,3503:140:3,30,-54.5,0,0,-0.005509 -27036,3503:140:4,30.5,-54.5,0,0,-0.00554953 -27037,3503:141:3,31,-54.5,0,0,-0.00558168 -27038,3503:141:4,31.5,-54.5,0,0,-0.00558914 -27039,3503:142:3,32,-54.5,0,0,-0.00558418 -27040,3503:142:4,32.5,-54.5,0,0,-0.00557672 -27041,3503:143:3,33,-54.5,0,0,-0.00559536 -27042,3503:143:4,33.5,-54.5,0,0,-0.00562152 -27043,3503:144:3,34,-54.5,0,0,-0.00565535 -27044,3503:144:4,34.5,-54.5,0,0,-0.00563526 -27045,3503:245:3,35,-54.5,0,0,-0.00556558 -27046,3503:245:4,35.5,-54.5,0,0,-0.00553108 -27047,3503:246:3,36,-54.5,0,0,-0.00552127 -27048,3503:246:4,36.5,-54.5,0,0,-0.0055225 -27049,3503:247:3,37,-54.5,0,0,-0.00551513 -27050,3503:247:4,37.5,-54.5,0,0,-0.00551266 -27051,3503:248:3,38,-54.5,0,0,-0.00551147 -27052,3503:248:4,38.5,-54.5,0,0,-0.00550777 -27053,3503:249:3,39,-54.5,0,0,-0.00550534 -27054,3503:249:4,39.5,-54.5,0,0,-0.00549434 -27055,3504:140:3,40,-54.5,0,0,-0.00548701 -27056,3504:140:4,40.5,-54.5,0,0,-0.00547972 -27057,3504:141:3,41,-54.5,0,0,-0.00546511 -27058,3504:141:4,41.5,-54.5,0,0,-0.00544695 -27059,3504:142:3,42,-54.5,0,0,-0.00544695 -27060,3504:142:4,42.5,-54.5,0,0,-0.00545057 -27061,3504:143:3,43,-54.5,0,0,-0.005453 -27062,3504:143:4,43.5,-54.5,0,0,-0.00545423 -27063,3504:144:3,44,-54.5,0,0,-0.00545541 -27064,3504:144:4,44.5,-54.5,0,0,-0.00545785 -27065,3504:245:3,45,-54.5,0,0,-0.00545785 -27066,3504:245:4,45.5,-54.5,0,0,-0.00546148 -27067,3504:246:3,46,-54.5,0,0,-0.00547605 -27068,3504:246:4,46.5,-54.5,0,0,-0.00550411 -27069,3504:247:3,47,-54.5,0,0,-0.00554584 -27070,3504:247:4,47.5,-54.5,0,0,-0.00557052 -27071,3504:248:3,48,-54.5,0,0,-0.00558418 -27072,3504:248:4,48.5,-54.5,0,0,-0.00558914 -27073,3504:249:3,49,-54.5,0,0,-0.00558418 -27074,3504:249:4,49.5,-54.5,0,0,-0.00557672 -27075,3505:140:3,50,-54.5,0,0,-0.00556682 -27076,3505:140:4,50.5,-54.5,0,0,-0.00555325 -27077,3505:141:3,51,-54.5,0,0,-0.00553724 -27078,3505:141:4,51.5,-54.5,0,0,-0.0055188 -27079,3505:142:3,52,-54.5,0,0,-0.00552741 -27080,3505:142:4,52.5,-54.5,0,0,-0.00552494 -27081,3505:143:3,53,-54.5,0,0,-0.00550165 -27082,3505:143:4,53.5,-54.5,0,0,-0.00547605 -27083,3505:144:3,54,-54.5,0,0,-0.00546148 -27084,3505:144:4,54.5,-54.5,0,0,-0.00545541 -27085,3505:245:3,55,-54.5,0,0,-0.00545179 -27086,3505:245:4,55.5,-54.5,0,0,-0.00545179 -27087,3505:246:3,56,-54.5,0,0,-0.00545423 -27088,3505:246:4,56.5,-54.5,0,0,-0.005453 -27089,3505:247:3,57,-54.5,0,0,-0.00545179 -27090,3505:247:4,57.5,-54.5,0,0,-0.00545179 -27091,3505:248:3,58,-54.5,0,0,-0.00545541 -27092,3505:248:4,58.5,-54.5,0,0,-0.00545541 -27093,3505:249:3,59,-54.5,0,0,-0.00545541 -27094,3505:249:4,59.5,-54.5,0,0,-0.00545663 -27095,3506:140:3,60,-54.5,0,0,-0.00546392 -27096,3506:140:4,60.5,-54.5,0,0,-0.00547486 -27097,3506:141:3,61,-54.5,0,0,-0.00548947 -27098,3506:141:4,61.5,-54.5,0,0,-0.00557426 -27099,3506:142:3,62,-54.5,0,0,-0.00562404 -27100,3506:142:4,62.5,-54.5,0,0,-0.00555943 -27101,3506:143:3,63,-54.5,0,0,-0.00550165 -27102,3506:143:4,63.5,-54.5,0,0,-0.00548091 -27103,3506:144:3,64,-54.5,0,0,-0.00555694 -27104,3506:144:4,64.5,-54.5,0,0,-0.00560033 -27105,3506:245:3,65,-54.5,0,0,-0.00563404 -27106,3506:245:4,65.5,-54.5,0,0,-0.00578114 -27107,3506:246:3,66,-54.5,0,0,-0.00589925 -27108,3506:246:4,66.5,-54.5,0,0,-0.00600775 -27109,3506:247:3,67,-54.5,0,0,-0.00582111 -27110,3506:247:4,67.5,-54.5,0,0,-0.00562903 -27111,3506:248:3,68,-54.5,0,0,-0.00557672 -27112,3506:248:4,68.5,-54.5,0,0,-0.0056128 -27113,3506:249:3,69,-54.5,0,0,-0.0056403 -27114,3506:249:4,69.5,-54.5,0,0,-0.0059506 -27115,3507:140:3,70,-54.5,0,0,-0.00600107 -27116,3507:140:4,70.5,-54.5,0,0,-0.00596515 -27117,3507:141:3,71,-54.5,0,0,-0.00595985 -27118,3507:141:4,71.5,-54.5,0,0,-0.00590053 -27119,3507:142:3,72,-54.5,0,0,-0.00576575 -27120,3507:142:4,72.5,-54.5,0,0,-0.00564405 -27121,3507:143:4,73.5,-54.5,0,0,-0.00569445 -27122,3507:144:3,74,-54.5,0,0,-0.00572108 -27123,3507:144:4,74.5,-54.5,0,0,-0.0056843 -27124,3507:245:3,75,-54.5,0,0,-0.00562526 -27125,3507:245:4,75.5,-54.5,0,0,-0.00557302 -27126,3507:246:3,76,-54.5,0,0,-0.00557052 -27127,3507:246:4,76.5,-54.5,0,0,-0.00559536 -27128,3507:247:3,77,-54.5,0,0,-0.00563151 -27129,3507:247:4,77.5,-54.5,0,0,-0.00567171 -27130,3507:248:3,78,-54.5,0,0,-0.00570458 -27131,3507:248:4,78.5,-54.5,0,0,-0.00570581 -27132,3507:249:3,79,-54.5,0,0,-0.00576059 -27133,3507:249:4,79.5,-54.5,0,0,-0.00574398 -27134,3508:140:3,80,-54.5,0,0,-0.00576317 -27135,3508:140:4,80.5,-54.5,0,0,-0.00574526 -27136,3508:141:3,81,-54.5,0,0,-0.00571344 -27137,3508:141:4,81.5,-54.5,0,0,-0.00570075 -27138,3508:142:3,82,-54.5,0,0,-0.00567675 -27139,3508:142:4,82.5,-54.5,0,0,-0.00563526 -27140,3508:143:3,83,-54.5,0,0,-0.00564907 -27141,3508:143:4,83.5,-54.5,0,0,-0.0056919 -27142,3508:144:3,84,-54.5,0,0,-0.00574783 -27143,3508:144:4,84.5,-54.5,0,0,-0.00575165 -27144,3508:245:3,85,-54.5,0,0,-0.00571724 -27145,3508:245:4,85.5,-54.5,0,0,-0.00562651 -27146,3508:246:3,86,-54.5,0,0,-0.00550411 -27147,3508:246:4,86.5,-54.5,0,0,-0.00547972 -27148,3508:247:3,87,-54.5,0,0,-0.00546026 -27149,3508:247:4,87.5,-54.5,0,0,-0.00545907 -27150,3508:248:3,88,-54.5,0,0,-0.0054627 -27151,3508:248:4,88.5,-54.5,0,0,-0.00545057 -27152,3508:249:3,89,-54.5,0,0,-0.00545423 -27153,3508:249:4,89.5,-54.5,0,0,-0.00546511 -27154,3509:140:3,90,-54.5,0,0,-0.00548459 -27155,3509:140:4,90.5,-54.5,0,0,-0.00561029 -27156,3509:141:3,91,-54.5,0,0,-0.00563277 -27157,3509:141:4,91.5,-54.5,0,0,-0.00564405 -27158,3509:142:3,92,-54.5,0,0,-0.0057198 -27159,3509:142:4,92.5,-54.5,0,0,-0.00602644 -27160,3509:143:3,93,-54.5,0,0,-0.00615506 -27161,3509:143:4,93.5,-54.5,0,0,-0.00620865 -27162,3509:144:3,94,-54.5,0,0,-0.00624189 -27163,3509:144:4,94.5,-54.5,0,0,-0.00628644 -27164,3509:245:3,95,-54.5,0,0,-0.00623216 -27165,3509:245:4,95.5,-54.5,0,0,-0.00615919 -27166,3509:246:3,96,-54.5,0,0,-0.00621696 -27167,3509:246:4,96.5,-54.5,0,0,-0.0062544 -27168,3509:247:3,97,-54.5,0,0,-0.00606408 -27169,3509:247:4,97.5,-54.5,0,0,-0.00594399 -27170,3509:248:3,98,-54.5,0,0,-0.00594 -27171,3509:248:4,98.5,-54.5,0,0,-0.00592419 -27172,3509:249:3,99,-54.5,0,0,-0.00604659 -27173,3509:249:4,99.5,-54.5,0,0,-0.00633555 -27174,3510:140:3,100,-54.5,0,0,-0.00670371 -27175,3510:140:4,100.5,-54.5,0,0,-0.00701963 -27176,3510:141:3,101,-54.5,0,0,-0.00737514 -27177,3510:141:4,101.5,-54.5,0,0,-0.00752606 -27178,3510:142:3,102,-54.5,0,0,-0.0074643 -27179,3510:142:4,102.5,-54.5,0,0,-0.00728216 -27180,3510:143:3,103,-54.5,0,0,-0.00700715 -27181,3510:143:4,103.5,-54.5,0,0,-0.006253 -27182,3510:144:3,104,-54.5,0,0,-0.00552985 -27183,3510:144:4,104.5,-54.5,0,0,-0.00565156 -27184,3510:245:3,105,-54.5,0,0,-0.00577088 -27185,3510:245:4,105.5,-54.5,0,0,-0.00597045 -27186,3510:246:3,106,-54.5,0,0,-0.00623495 -27187,3510:246:4,106.5,-54.5,0,0,-0.00610192 -27188,3510:247:3,107,-54.5,0,0,-0.00572869 -27189,3510:247:4,107.5,-54.5,0,0,-0.00566165 -27190,3510:248:3,108,-54.5,0,0,-0.0056128 -27191,3510:248:4,108.5,-54.5,0,0,-0.00548091 -27192,3510:249:3,109,-54.5,0,0,-0.00546026 -27193,3510:249:4,109.5,-54.5,0,0,-0.00561154 -27194,3511:140:3,110,-54.5,0,0,-0.00589401 -27195,3511:140:4,110.5,-54.5,0,0,-0.00645931 -27196,3511:141:3,111,-54.5,0,0,-0.0069004 -27197,3511:141:4,111.5,-54.5,0,0,-0.00717919 -27198,3511:142:3,112,-54.5,0,0,-0.00726112 -27199,3511:142:4,112.5,-54.5,0,0,-0.00724177 -27200,3511:143:3,113,-54.5,0,0,-0.0072595 -27201,3511:143:4,113.5,-54.5,0,0,-0.00746597 -27202,3511:144:3,114,-54.5,0,0,-0.00780418 -27203,3511:144:4,114.5,-54.5,0,0,-0.00775223 -27204,3511:245:3,115,-54.5,0,0,-0.00758658 -27205,3511:245:4,115.5,-54.5,0,0,-0.00747429 -27206,3511:246:3,116,-54.5,0,0,-0.00738993 -27207,3511:246:4,116.5,-54.5,0,0,-0.00751431 -27208,3511:247:3,117,-54.5,0,0,-0.00793914 -27209,3511:247:4,117.5,-54.5,0,0,-0.00824918 -27210,3511:248:3,118,-54.5,0,0,-0.00819424 -27211,3511:248:4,118.5,-54.5,0,0,-0.00793914 -27212,3511:249:3,119,-54.5,0,0,-0.00765102 -27213,3511:249:4,119.5,-54.5,0,0,-0.00757983 -27214,3512:140:3,120,-54.5,0,0,-0.00774359 -27215,3512:140:4,120.5,-54.5,0,0,-0.00814509 -27216,3512:141:3,121,-54.5,0,0,-0.00836951 -27217,3512:141:4,121.5,-54.5,0,0,-0.00846514 -27218,3512:142:3,122,-54.5,0,0,-0.00851624 -27219,3512:142:4,122.5,-54.5,0,0,-0.00858099 -27220,3512:143:3,123,-54.5,0,0,-0.00865013 -27221,3512:143:4,123.5,-54.5,0,0,-0.0087295 -27222,3512:144:3,124,-54.5,0,0,-0.00880572 -27223,3512:144:4,124.5,-54.5,0,0,-0.00900422 -27224,3512:245:3,125,-54.5,0,0,-0.00938967 -27225,3512:245:4,125.5,-54.5,0,0,-0.00965731 -27226,3512:246:3,126,-54.5,0,0,-0.00973301 -27227,3512:246:4,126.5,-54.5,0,0,-0.0097569 -27228,3512:247:3,127,-54.5,0,0,-0.00978744 -27229,3512:247:4,127.5,-54.5,0,0,-0.00980712 -27230,3512:248:3,128,-54.5,0,0,-0.00981587 -27231,3512:248:4,128.5,-54.5,0,0,-0.0099105 -27232,3512:249:3,129,-54.5,0,0,-0.010159 -27233,3512:249:4,129.5,-54.5,0,0,-0.0104488 -27234,3513:140:3,130,-54.5,0,0,-0.010723 -27235,3513:140:4,130.5,-54.5,0,0,-0.0109139 -27236,3513:141:3,131,-54.5,0,0,-0.0109017 -27237,3513:141:4,131.5,-54.5,0,0,-0.0106848 -27238,3513:142:3,132,-54.5,0,0,-0.0102708 -27239,3513:142:4,132.5,-54.5,0,0,-0.00976129 -27240,3513:143:3,133,-54.5,0,0,-0.00982242 -27241,3513:143:4,133.5,-54.5,0,0,-0.0100016 -27242,3513:144:3,134,-54.5,0,0,-0.00992157 -27243,3513:144:4,134.5,-54.5,0,0,-0.00962076 -27244,3513:245:3,135,-54.5,0,0,-0.00935624 -27245,3513:245:4,135.5,-54.5,0,0,-0.00923805 -27246,3513:246:3,136,-54.5,0,0,-0.00919904 -27247,3513:246:4,136.5,-54.5,0,0,-0.00915807 -27248,3513:247:3,137,-54.5,0,0,-0.00911734 -27249,3513:247:4,137.5,-54.5,0,0,-0.00909299 -27250,3513:248:3,138,-54.5,0,0,-0.00909497 -27251,3513:248:4,138.5,-54.5,0,0,-0.00912547 -27252,3513:249:3,139,-54.5,0,0,-0.00911529 -27253,3513:249:4,139.5,-54.5,0,0,-0.00902434 -27254,3514:140:3,140,-54.5,0,0,-0.00896016 -27255,3514:140:4,140.5,-54.5,0,0,-0.0090424 -27256,3514:141:3,141,-54.5,0,0,-0.00918671 -27257,3514:141:4,141.5,-54.5,0,0,-0.0092319 -27258,3514:142:3,142,-54.5,0,0,-0.00912137 -27259,3514:142:4,142.5,-54.5,0,0,-0.00905453 -27260,3514:143:3,143,-54.5,0,0,-0.00914991 -27261,3514:143:4,143.5,-54.5,0,0,-0.00926903 -27262,3514:144:3,144,-54.5,0,0,-0.00901023 -27263,3514:144:4,144.5,-54.5,0,0,-0.00879985 -27264,3514:245:3,145,-54.5,0,0,-0.00860016 -27265,3514:245:4,145.5,-54.5,0,0,-0.00847268 -27266,3514:246:3,146,-54.5,0,0,-0.00848214 -27267,3514:246:4,146.5,-54.5,0,0,-0.00866362 -27268,3514:247:3,147,-54.5,0,0,-0.0087568 -27269,3514:247:4,147.5,-54.5,0,0,-0.00845381 -27270,3514:248:3,148,-54.5,0,0,-0.00749259 -27271,3514:248:4,148.5,-54.5,0,0,-0.00697913 -27272,3514:249:3,149,-54.5,0,0,-0.00650979 -27273,3514:249:4,149.5,-54.5,0,0,-0.00588873 -27274,3515:140:3,150,-54.5,0,0,-0.00583922 -27275,3515:140:4,150.5,-54.5,0,0,-0.00594399 -27276,3515:141:3,151,-54.5,0,0,-0.0063243 -27277,3515:141:4,151.5,-54.5,0,0,-0.00680286 -27278,3515:142:3,152,-54.5,0,0,-0.0067291 -27279,3515:142:4,152.5,-54.5,0,0,-0.0061237 -27280,3515:143:3,153,-54.5,0,0,-0.00567171 -27281,3515:143:4,153.5,-54.5,0,0,-0.00552861 -27282,3515:144:3,154,-54.5,0,0,-0.00556437 -27283,3515:144:4,154.5,-54.5,0,0,-0.00569445 -27284,3515:245:3,155,-54.5,0,0,-0.00586005 -27285,3515:245:4,155.5,-54.5,0,0,-0.0062197 -27286,3515:246:3,156,-54.5,0,0,-0.00681803 -27287,3515:246:4,156.5,-54.5,0,0,-0.00687744 -27288,3515:247:3,157,-54.5,0,0,-0.00642207 -27289,3515:247:4,157.5,-54.5,0,0,-0.00591499 -27290,3515:248:3,158,-54.5,0,0,-0.00573506 -27291,3515:248:4,158.5,-54.5,0,0,-0.00573125 -27292,3515:249:3,159,-54.5,0,0,-0.00570581 -27293,3515:249:4,159.5,-54.5,0,0,-0.00564654 -27294,3516:140:3,160,-54.5,0,0,-0.00564781 -27295,3516:140:4,160.5,-54.5,0,0,-0.00569063 -27296,3516:141:3,161,-54.5,0,0,-0.00573635 -27297,3516:141:4,161.5,-54.5,0,0,-0.00591367 -27298,3516:142:3,162,-54.5,0,0,-0.00651991 -27299,3516:142:4,162.5,-54.5,0,0,-0.00684386 -27300,3516:143:3,163,-54.5,0,0,-0.00694199 -27301,3516:143:4,163.5,-54.5,0,0,-0.0068866 -27302,3516:144:3,164,-54.5,0,0,-0.00680739 -27303,3516:144:4,164.5,-54.5,0,0,-0.00653732 -27304,3516:245:3,165,-54.5,0,0,-0.00617564 -27305,3516:245:4,165.5,-54.5,0,0,-0.00649386 -27306,3516:246:3,166,-54.5,0,0,-0.00697757 -27307,3516:246:4,166.5,-54.5,0,0,-0.00752606 -27308,3516:247:3,167,-54.5,0,0,-0.00897816 -27309,3516:247:4,167.5,-54.5,0,0,-0.0100958 -27310,3516:248:3,168,-54.5,0,0,-0.00990827 -27311,3516:248:4,168.5,-54.5,0,0,-0.0101025 -27312,3516:249:3,169,-54.5,0,0,-0.0104816 -27313,3516:249:4,169.5,-54.5,0,0,-0.0106872 -27314,3517:140:3,170,-54.5,0,0,-0.0106419 -27315,3517:140:4,170.5,-54.5,0,0,-0.0108289 -27316,3517:141:3,171,-54.5,0,0,-0.0115718 -27317,3517:141:4,171.5,-54.5,0,0,-0.0125474 -27318,3517:142:3,172,-54.5,0,0,-0.0133111 -27319,3517:142:4,172.5,-54.5,0,0,-0.0147098 -27320,3517:143:3,173,-54.5,0,0,-0.0163863 -27321,3517:143:4,173.5,-54.5,0,0,-0.0173212 -27322,3517:144:3,174,-54.5,0,0,-0.0171431 -27323,3517:144:4,174.5,-54.5,0,0,-0.0166946 -27324,3517:245:3,175,-54.5,0,0,-0.0162872 -27325,3517:245:4,175.5,-54.5,0,0,-0.0155687 -27326,3517:246:3,176,-54.5,0,0,-0.0141346 -27327,3517:246:4,176.5,-54.5,0,0,-0.0135821 -27328,3517:247:3,177,-54.5,0,0,-0.0133948 -27329,3517:247:4,177.5,-54.5,0,0,-0.0136675 -27330,3517:248:3,178,-54.5,0,0,-0.0146309 -27331,3517:248:4,178.5,-54.5,0,0,-0.0157231 -27332,3517:249:3,179,-54.5,0,0,-0.01608 -27333,3517:249:4,179.5,-54.5,0,0,-0.0152746 -27334,3518:140:3,180,-54.5,0,0,-0.0135608 -27335,5518:140:1,-180,-54,0,0,-0.0159507 -27336,5517:249:2,-179.5,-54,0,0,-0.0147495 -27337,5517:249:1,-179,-54,0,0,-0.0146211 -27338,5517:248:2,-178.5,-54,0,0,-0.0143967 -27339,5517:248:1,-178,-54,0,0,-0.0140336 -27340,5517:247:2,-177.5,-54,0,0,-0.0136339 -27341,5517:247:1,-177,-54,0,0,-0.0134038 -27342,5517:246:2,-176.5,-54,0,0,-0.0130485 -27343,5517:246:1,-176,-54,0,0,-0.0122179 -27344,5517:245:2,-175.5,-54,0,0,-0.0113566 -27345,5517:245:1,-175,-54,0,0,-0.0108944 -27346,5517:144:2,-174.5,-54,0,0,-0.010585 -27347,5517:144:1,-174,-54,0,0,-0.0104116 -27348,5517:143:2,-173.5,-54,0,0,-0.0103745 -27349,5517:143:1,-173,-54,0,0,-0.0103282 -27350,5517:142:2,-172.5,-54,0,0,-0.0101795 -27351,5517:142:1,-172,-54,0,0,-0.0100127 -27352,5517:141:2,-171.5,-54,0,0,-0.00982684 -27353,5517:141:1,-171,-54,0,0,-0.00966593 -27354,5517:140:2,-170.5,-54,0,0,-0.00950981 -27355,5517:140:1,-170,-54,0,0,-0.00923397 -27356,5516:249:2,-169.5,-54,0,0,-0.008851 -27357,5516:249:1,-169,-54,0,0,-0.00854472 -27358,5516:248:2,-168.5,-54,0,0,-0.00840315 -27359,5516:248:1,-168,-54,0,0,-0.00837138 -27360,5516:247:2,-167.5,-54,0,0,-0.00838255 -27361,5516:247:1,-167,-54,0,0,-0.0083919 -27362,5516:246:2,-166.5,-54,0,0,-0.00841435 -27363,5516:246:1,-166,-54,0,0,-0.00840315 -27364,5516:245:2,-165.5,-54,0,0,-0.00837321 -27365,5516:245:1,-165,-54,0,0,-0.00841624 -27366,5516:144:2,-164.5,-54,0,0,-0.00851624 -27367,5516:144:1,-164,-54,0,0,-0.00860782 -27368,5516:143:2,-163.5,-54,0,0,-0.00872173 -27369,5516:143:1,-163,-54,0,0,-0.00881159 -27370,5516:142:2,-162.5,-54,0,0,-0.00892227 -27371,5516:142:1,-162,-54,0,0,-0.00942533 -27372,5516:141:2,-161.5,-54,0,0,-0.0100351 -27373,5516:141:1,-161,-54,0,0,-0.0103121 -27374,5516:140:2,-160.5,-54,0,0,-0.00996375 -27375,5516:140:1,-160,-54,0,0,-0.00886678 -27376,5515:249:2,-159.5,-54,0,0,-0.00845197 -27377,5515:249:1,-159,-54,0,0,-0.00839567 -27378,5515:248:2,-158.5,-54,0,0,-0.00852759 -27379,5515:248:1,-158,-54,0,0,-0.00849726 -27380,5515:247:2,-157.5,-54,0,0,-0.0087295 -27381,5515:247:1,-157,-54,0,0,-0.00872173 -27382,5515:246:2,-156.5,-54,0,0,-0.00836018 -27383,5515:246:1,-156,-54,0,0,-0.00813602 -27384,5515:245:2,-155.5,-54,0,0,-0.00818878 -27385,5515:245:1,-155,-54,0,0,-0.00829524 -27386,5515:144:2,-154.5,-54,0,0,-0.00819056 -27387,5515:144:1,-154,-54,0,0,-0.00806389 -27388,5515:143:2,-153.5,-54,0,0,-0.00793736 -27389,5515:143:1,-153,-54,0,0,-0.00786872 -27390,5515:142:2,-152.5,-54,0,0,-0.00781809 -27391,5515:142:1,-152,-54,0,0,-0.00779374 -27392,5515:141:2,-151.5,-54,0,0,-0.00790388 -27393,5515:141:1,-151,-54,0,0,-0.00931044 -27394,5515:140:2,-150.5,-54,0,0,-0.0101931 -27395,5515:140:1,-150,-54,0,0,-0.0101863 -27396,5514:249:2,-149.5,-54,0,0,-0.0102182 -27397,5514:249:1,-149,-54,0,0,-0.0101523 -27398,5514:248:2,-148.5,-54,0,0,-0.0101727 -27399,5514:248:1,-148,-54,0,0,-0.0103282 -27400,5514:247:2,-147.5,-54,0,0,-0.0103953 -27401,5514:247:1,-147,-54,0,0,-0.0104442 -27402,5514:246:2,-146.5,-54,0,0,-0.0108847 -27403,5514:246:1,-146,-54,0,0,-0.0119477 -27404,5514:245:2,-145.5,-54,0,0,-0.0125334 -27405,5514:245:1,-145,-54,0,0,-0.0125054 -27406,5514:144:2,-144.5,-54,0,0,-0.0119985 -27407,5514:144:1,-144,-54,0,0,-0.0115537 -27408,5514:143:2,-143.5,-54,0,0,-0.0113414 -27409,5514:143:1,-143,-54,0,0,-0.0123746 -27410,5514:142:2,-142.5,-54,0,0,-0.0152268 -27411,5514:142:1,-142,-54,0,0,-0.017735 -27412,5514:141:2,-141.5,-54,0,0,-0.0191407 -27413,5514:141:1,-141,-54,0,0,-0.0183353 -27414,5514:140:2,-140.5,-54,0,0,-0.0154504 -27415,5514:140:1,-140,-54,0,0,-0.0130398 -27416,5513:249:2,-139.5,-54,0,0,-0.0115795 -27417,5513:249:1,-139,-54,0,0,-0.0112004 -27418,5513:248:2,-138.5,-54,0,0,-0.0113287 -27419,5513:248:1,-138,-54,0,0,-0.0112029 -27420,5513:247:2,-137.5,-54,0,0,-0.0110636 -27421,5513:247:1,-137,-54,0,0,-0.0120146 -27422,5513:246:2,-136.5,-54,0,0,-0.0126263 -27423,5513:246:1,-136,-54,0,0,-0.013069 -27424,5513:245:2,-135.5,-54,0,0,-0.0134188 -27425,5513:245:1,-135,-54,0,0,-0.0134248 -27426,5513:144:2,-134.5,-54,0,0,-0.0134038 -27427,5513:144:1,-134,-54,0,0,-0.0133678 -27428,5513:143:2,-133.5,-54,0,0,-0.0124218 -27429,5513:143:1,-133,-54,0,0,-0.0114816 -27430,5513:142:2,-132.5,-54,0,0,-0.0113388 -27431,5513:142:1,-132,-54,0,0,-0.0116366 -27432,5513:141:2,-131.5,-54,0,0,-0.0121797 -27433,5513:141:1,-131,-54,0,0,-0.0127883 -27434,5513:140:2,-130.5,-54,0,0,-0.0131866 -27435,5513:140:1,-130,-54,0,0,-0.0132102 -27436,5512:249:2,-129.5,-54,0,0,-0.0128716 -27437,5512:249:1,-129,-54,0,0,-0.0123221 -27438,5512:248:2,-128.5,-54,0,0,-0.0119798 -27439,5512:248:1,-128,-54,0,0,-0.0118731 -27440,5512:247:2,-127.5,-54,0,0,-0.0118413 -27441,5512:247:1,-127,-54,0,0,-0.0118466 -27442,5512:246:2,-126.5,-54,0,0,-0.0120012 -27443,5512:246:1,-126,-54,0,0,-0.0120739 -27444,5512:245:2,-125.5,-54,0,0,-0.0121362 -27445,5512:245:1,-125,-54,0,0,-0.0122918 -27446,5512:144:2,-124.5,-54,0,0,-0.0124998 -27447,5512:144:1,-124,-54,0,0,-0.0126885 -27448,5512:143:2,-123.5,-54,0,0,-0.0128141 -27449,5512:143:1,-123,-54,0,0,-0.0129149 -27450,5512:142:2,-122.5,-54,0,0,-0.0130485 -27451,5512:142:1,-122,-54,0,0,-0.0132665 -27452,5512:141:2,-121.5,-54,0,0,-0.0135699 -27453,5512:141:1,-121,-54,0,0,-0.0138897 -27454,5512:140:2,-120.5,-54,0,0,-0.0142459 -27455,5512:140:1,-120,-54,0,0,-0.0146309 -27456,5511:249:2,-119.5,-54,0,0,-0.0146441 -27457,5511:249:1,-119,-54,0,0,-0.0144064 -27458,5511:248:2,-118.5,-54,0,0,-0.0143194 -27459,5511:248:1,-118,-54,0,0,-0.0147992 -27460,5511:247:2,-117.5,-54,0,0,-0.016091 -27461,5511:247:1,-117,-54,0,0,-0.0164083 -27462,5511:246:2,-116.5,-54,0,0,-0.0164859 -27463,5511:246:1,-116,-54,0,0,-0.0164896 -27464,5511:245:2,-115.5,-54,0,0,-0.016412 -27465,5511:245:1,-115,-54,0,0,-0.0163055 -27466,5511:144:2,-114.5,-54,0,0,-0.0160729 -27467,5511:144:1,-114,-54,0,0,-0.0157443 -27468,5511:143:2,-113.5,-54,0,0,-0.0154226 -27469,5511:143:1,-113,-54,0,0,-0.0152883 -27470,5511:142:2,-112.5,-54,0,0,-0.014733 -27471,5511:142:1,-112,-54,0,0,-0.0143838 -27472,5511:141:2,-111.5,-54,0,0,-0.0144939 -27473,5511:141:1,-111,-54,0,0,-0.0145622 -27474,5511:140:2,-110.5,-54,0,0,-0.0145296 -27475,5511:140:1,-110,-54,0,0,-0.0144322 -27476,5510:249:2,-109.5,-54,0,0,-0.014371 -27477,5510:249:1,-109,-54,0,0,-0.0147429 -27478,5510:248:2,-108.5,-54,0,0,-0.0153847 -27479,5510:248:1,-108,-54,0,0,-0.0156773 -27480,5510:247:2,-107.5,-54,0,0,-0.0151212 -27481,5510:247:1,-107,-54,0,0,-0.0142459 -27482,5510:246:2,-106.5,-54,0,0,-0.0136645 -27483,5510:246:1,-106,-54,0,0,-0.0135305 -27484,5510:245:2,-105.5,-54,0,0,-0.0135335 -27485,5510:245:1,-105,-54,0,0,-0.0134248 -27486,5510:144:2,-104.5,-54,0,0,-0.013335 -27487,5510:144:1,-104,-54,0,0,-0.013326 -27488,5510:143:2,-103.5,-54,0,0,-0.0134008 -27489,5510:143:1,-103,-54,0,0,-0.0140336 -27490,5510:142:2,-102.5,-54,0,0,-0.0147594 -27491,5510:142:1,-102,-54,0,0,-0.014723 -27492,5510:141:2,-101.5,-54,0,0,-0.0146638 -27493,5510:141:1,-101,-54,0,0,-0.0146407 -27494,5510:140:2,-100.5,-54,0,0,-0.0146769 -27495,5510:140:1,-100,-54,0,0,-0.0148058 -27496,5509:249:2,-99.5,-54,0,0,-0.0149795 -27497,5509:249:1,-99,-54,0,0,-0.0150569 -27498,5509:248:2,-98.5,-54,0,0,-0.0150097 -27499,5509:248:1,-98,-54,0,0,-0.0150637 -27500,5509:247:2,-97.5,-54,0,0,-0.0153399 -27501,5509:247:1,-97,-54,0,0,-0.0156633 -27502,5509:246:2,-96.5,-54,0,0,-0.0158792 -27503,5509:246:1,-96,-54,0,0,-0.015897 -27504,5509:245:2,-95.5,-54,0,0,-0.0156668 -27505,5509:245:1,-95,-54,0,0,-0.0151654 -27506,5509:144:2,-94.5,-54,0,0,-0.0145818 -27507,5509:144:1,-94,-54,0,0,-0.0140336 -27508,5509:143:2,-93.5,-54,0,0,-0.0135821 -27509,5509:143:1,-93,-54,0,0,-0.0132754 -27510,5509:142:2,-92.5,-54,0,0,-0.0134218 -27511,5509:142:1,-92,-54,0,0,-0.0146211 -27512,5509:141:2,-91.5,-54,0,0,-0.0151552 -27513,5509:141:1,-91,-54,0,0,-0.0148924 -27514,5509:140:2,-90.5,-54,0,0,-0.0144031 -27515,5509:140:1,-90,-54,0,0,-0.0142203 -27516,5508:249:2,-89.5,-54,0,0,-0.0137874 -27517,5508:249:1,-89,-54,0,0,-0.0133708 -27518,5508:248:2,-88.5,-54,0,0,-0.0130837 -27519,5508:248:1,-88,-54,0,0,-0.0131129 -27520,5508:247:2,-87.5,-54,0,0,-0.0133678 -27521,5508:247:1,-87,-54,0,0,-0.013735 -27522,5508:246:2,-86.5,-54,0,0,-0.0143227 -27523,5508:246:1,-86,-54,0,0,-0.0148557 -27524,5508:245:2,-85.5,-54,0,0,-0.0150975 -27525,5508:245:1,-85,-54,0,0,-0.0151926 -27526,5508:144:2,-84.5,-54,0,0,-0.0151585 -27527,5508:144:1,-84,-54,0,0,-0.0149593 -27528,5508:143:2,-83.5,-54,0,0,-0.0145525 -27529,5508:143:1,-83,-54,0,0,-0.0144646 -27530,5508:142:2,-82.5,-54,0,0,-0.0144226 -27531,5508:142:1,-82,-54,0,0,-0.0145003 -27532,5508:141:2,-81.5,-54,0,0,-0.0148025 -27533,5508:141:1,-81,-54,0,0,-0.0154782 -27534,5508:140:2,-80.5,-54,0,0,-0.0163641 -27535,5508:140:1,-80,-54,0,0,-0.0167848 -27536,5507:249:2,-79.5,-54,0,0,-0.0167021 -27537,5507:249:1,-79,-54,0,0,-0.0163495 -27538,5507:248:2,-78.5,-54,0,0,-0.0160117 -27539,5507:248:1,-78,-54,0,0,-0.0159042 -27540,5507:247:2,-77.5,-54,0,0,-0.0160188 -27541,5507:247:1,-77,-54,0,0,-0.015965 -27542,5507:246:2,-76.5,-54,0,0,-0.0158934 -27543,5507:246:1,-76,-54,0,0,-0.0157267 -27544,5507:245:2,-75.5,-54,0,0,-0.0155303 -27545,5507:245:1,-75,-54,0,0,-0.0154365 -27546,5507:144:2,-74.5,-54,0,0,-0.0153433 -27547,5507:144:1,-74,-54,0,0,-0.0153743 -27548,5507:143:2,-73.5,-54,0,0,-0.0154747 -27549,5507:143:1,-73,-54,0,0,-0.0155513 -27550,5507:142:2,-72.5,-54,0,0,-0.0157408 -27551,5507:142:1,-72,-54,0,0,-0.016127 -27552,5507:141:2,-71.5,-54,0,0,-0.0155025 -27553,5507:141:1,-71,-54,0,0,-0.0145687 -27554,5507:140:2,-70.5,-54,0,0,-0.0140147 -27555,5507:140:1,-70,-54,0,0,-0.0137813 -27556,5506:249:2,-69.5,-54,0,0,-0.0137135 -27557,5506:249:1,-69,-54,0,0,-0.0135032 -27558,5506:248:2,-68.5,-54,0,0,-0.0133111 -27559,5506:248:1,-68,-54,0,0,-0.0123139 -27560,5506:247:2,-67.5,-54,0,0,-0.00973301 -27561,5506:247:1,-67,-54,0,0,-0.00851815 -27562,5506:246:2,-66.5,-54,0,0,-0.00868296 -27563,5506:246:1,-66,-54,0,0,-0.00918259 -27564,5506:245:2,-65.5,-54,0,0,-0.00979184 -27565,5506:245:1,-65,-54,0,0,-0.0100688 -27566,5506:144:2,-64.5,-54,0,0,-0.0100239 -27567,5506:144:1,-64,-54,0,0,-0.00903435 -27568,5506:143:2,-63.5,-54,0,0,-0.00703528 -27569,5506:143:1,-63,-54,0,0,-0.00676965 -27570,5506:142:2,-62.5,-54,0,0,-0.00671715 -27571,5506:142:1,-62,-54,0,0,-0.00671418 -27572,5506:141:2,-61.5,-54,0,0,-0.00705877 -27573,5506:141:1,-61,-54,0,0,-0.00701653 -27574,5506:140:2,-60.5,-54,0,0,-0.00697137 -27575,5506:140:1,-60,-54,0,0,-0.00688505 -27576,5505:249:2,-59.5,-54,0,0,-0.00678474 -27577,5505:249:1,-59,-54,0,0,-0.00670822 -27578,5505:248:2,-58.5,-54,0,0,-0.0066547 -27579,5505:248:1,-58,-54,0,0,-0.00651845 -27580,5505:247:2,-57.5,-54,0,0,-0.00629484 -27581,5505:247:1,-57,-54,0,0,-0.00620865 -27582,5505:246:2,-56.5,-54,0,0,-0.0061455 -27583,5505:246:1,-56,-54,0,0,-0.00607487 -27584,5505:245:2,-55.5,-54,0,0,-0.00601843 -27585,5505:245:1,-55,-54,0,0,-0.0059519 -27586,5505:144:2,-54.5,-54,0,0,-0.00592025 -27587,5505:144:1,-54,-54,0,0,-0.00588745 -27588,5505:143:2,-53.5,-54,0,0,-0.00585484 -27589,5505:143:1,-53,-54,0,0,-0.00579012 -27590,5505:142:2,-52.5,-54,0,0,-0.0056843 -27591,5505:142:1,-52,-54,0,0,-0.00558418 -27592,5505:141:2,-51.5,-54,0,0,-0.00553352 -27593,5505:141:1,-51,-54,0,0,-0.00550411 -27594,5505:140:2,-50.5,-54,0,0,-0.00553968 -27595,5505:140:1,-50,-54,0,0,-0.0055941 -27596,5504:249:2,-49.5,-54,0,0,-0.00554584 -27597,5504:249:1,-49,-54,0,0,-0.00548582 -27598,5504:248:2,-48.5,-54,0,0,-0.0054785 -27599,5504:248:1,-48,-54,0,0,-0.00546511 -27600,5504:247:2,-47.5,-54,0,0,-0.00545907 -27601,5504:247:1,-47,-54,0,0,-0.00546148 -27602,5504:246:2,-46.5,-54,0,0,-0.0054627 -27603,5504:246:1,-46,-54,0,0,-0.00546392 -27604,5504:245:2,-45.5,-54,0,0,-0.0054627 -27605,5504:245:1,-45,-54,0,0,-0.00546148 -27606,5504:144:2,-44.5,-54,0,0,-0.00546026 -27607,5504:144:1,-44,-54,0,0,-0.00545785 -27608,5504:143:2,-43.5,-54,0,0,-0.00545785 -27609,5504:143:1,-43,-54,0,0,-0.00545907 -27610,5504:142:2,-42.5,-54,0,0,-0.0054627 -27611,5504:142:1,-42,-54,0,0,-0.00546148 -27612,5504:141:2,-41.5,-54,0,0,-0.00545907 -27613,5504:141:1,-41,-54,0,0,-0.00545785 -27614,5504:140:2,-40.5,-54,0,0,-0.00545785 -27615,5504:140:1,-40,-54,0,0,-0.00545663 -27616,5503:249:2,-39.5,-54,0,0,-0.00545663 -27617,5503:249:1,-39,-54,0,0,-0.00545541 -27618,5503:248:2,-38.5,-54,0,0,-0.00545423 -27619,5503:248:1,-38,-54,0,0,-0.00545423 -27620,5503:247:2,-37.5,-54,0,0,-0.00545423 -27621,5503:247:1,-37,-54,0,0,-0.00545423 -27622,5503:246:2,-36.5,-54,0,0,-0.00545423 -27623,5503:246:1,-36,-54,0,0,-0.00545541 -27624,5503:245:2,-35.5,-54,0,0,-0.00545541 -27625,5503:245:1,-35,-54,0,0,-0.00545541 -27626,5503:144:2,-34.5,-54,0,0,-0.00545541 -27627,5503:144:1,-34,-54,0,0,-0.00545541 -27628,5503:143:2,-33.5,-54,0,0,-0.00545541 -27629,5503:143:1,-33,-54,0,0,-0.00545785 -27630,5503:142:2,-32.5,-54,0,0,-0.00546026 -27631,5503:142:1,-32,-54,0,0,-0.00546148 -27632,5503:141:2,-31.5,-54,0,0,-0.00546148 -27633,5503:141:1,-31,-54,0,0,-0.00546026 -27634,5503:140:2,-30.5,-54,0,0,-0.00545907 -27635,5503:140:1,-30,-54,0,0,-0.00545907 -27636,5502:249:2,-29.5,-54,0,0,-0.00545907 -27637,5502:249:1,-29,-54,0,0,-0.00545907 -27638,5502:248:2,-28.5,-54,0,0,-0.00545907 -27639,5502:248:1,-28,-54,0,0,-0.00545907 -27640,5502:247:2,-27.5,-54,0,0,-0.00545785 -27641,5502:247:1,-27,-54,0,0,-0.00545785 -27642,5502:246:2,-26.5,-54,0,0,-0.00545785 -27643,5502:246:1,-26,-54,0,0,-0.00545785 -27644,5502:245:2,-25.5,-54,0,0,-0.00545907 -27645,5502:245:1,-25,-54,0,0,-0.00545907 -27646,5502:144:2,-24.5,-54,0,0,-0.00545907 -27647,5502:144:1,-24,-54,0,0,-0.00545907 -27648,5502:143:2,-23.5,-54,0,0,-0.00545785 -27649,5502:143:1,-23,-54,0,0,-0.00545663 -27650,5502:142:2,-22.5,-54,0,0,-0.00545541 -27651,5502:142:1,-22,-54,0,0,-0.00545423 -27652,5502:141:2,-21.5,-54,0,0,-0.005453 -27653,5502:141:1,-21,-54,0,0,-0.00545057 -27654,5502:140:2,-20.5,-54,0,0,-0.00545541 -27655,5502:140:1,-20,-54,0,0,-0.00546148 -27656,5501:249:2,-19.5,-54,0,0,-0.00548091 -27657,5501:249:1,-19,-54,0,0,-0.00548459 -27658,5501:248:2,-18.5,-54,0,0,-0.00547486 -27659,5501:248:1,-18,-54,0,0,-0.00546633 -27660,5501:247:2,-17.5,-54,0,0,-0.00545907 -27661,5501:247:1,-17,-54,0,0,-0.00545057 -27662,5501:246:2,-16.5,-54,0,0,-0.00544816 -27663,5501:246:1,-16,-54,0,0,-0.00544816 -27664,5501:245:2,-15.5,-54,0,0,-0.00544816 -27665,5501:245:1,-15,-54,0,0,-0.00544816 -27666,5501:144:2,-14.5,-54,0,0,-0.00544935 -27667,5501:144:1,-14,-54,0,0,-0.00545057 -27668,5501:143:2,-13.5,-54,0,0,-0.00545423 -27669,5501:143:1,-13,-54,0,0,-0.005453 -27670,5501:142:2,-12.5,-54,0,0,-0.005453 -27671,5501:142:1,-12,-54,0,0,-0.00545179 -27672,5501:141:2,-11.5,-54,0,0,-0.00545057 -27673,5501:141:1,-11,-54,0,0,-0.00544935 -27674,5501:140:2,-10.5,-54,0,0,-0.00544935 -27675,5501:140:1,-10,-54,0,0,-0.00544695 -27676,5500:249:2,-9.5,-54,0,0,-0.00544451 -27677,5500:249:1,-9,-54,0,0,-0.00544695 -27678,5500:248:2,-8.5,-54,0,0,-0.00544695 -27679,5500:248:1,-8,-54,0,0,-0.00544935 -27680,5500:247:2,-7.5,-54,0,0,-0.00545057 -27681,5500:247:1,-7,-54,0,0,-0.00544935 -27682,5500:246:2,-6.5,-54,0,0,-0.00544935 -27683,5500:246:1,-6,-54,0,0,-0.00544695 -27684,5500:245:2,-5.5,-54,0,0,-0.00544451 -27685,5500:245:1,-5,-54,0,0,-0.00544451 -27686,5500:144:2,-4.5,-54,0,0,-0.00544573 -27687,5500:144:1,-4,-54,0,0,-0.00544451 -27688,5500:143:2,-3.5,-54,0,0,-0.00544451 -27689,5500:143:1,-3,-54,0,0,-0.00544211 -27690,5500:142:2,-2.5,-54,0,0,-0.00544211 -27691,5500:142:1,-2,-54,0,0,-0.00544089 -27692,5500:141:2,-1.5,-54,0,0,-0.00543968 -27693,5500:141:1,-1,-54,0,0,-0.0054385 -27694,5500:140:2,-0.5,-54,0,0,-0.0054385 -27695,3500:140:2,0,-54,0,0,-0.0054385 -27696,3500:140:2,0.5,-54,0,0,-0.00544089 -27697,3500:141:1,1,-54,0,0,-0.00544816 -27698,3500:141:2,1.5,-54,0,0,-0.00545663 -27699,3500:142:1,2,-54,0,0,-0.00545663 -27700,3500:142:2,2.5,-54,0,0,-0.00545907 -27701,3500:143:1,3,-54,0,0,-0.0054627 -27702,3500:143:2,3.5,-54,0,0,-0.00546392 -27703,3500:144:1,4,-54,0,0,-0.00546878 -27704,3500:144:2,4.5,-54,0,0,-0.00547727 -27705,3500:245:1,5,-54,0,0,-0.00547605 -27706,3500:245:2,5.5,-54,0,0,-0.00547241 -27707,3500:246:1,6,-54,0,0,-0.00546392 -27708,3500:246:2,6.5,-54,0,0,-0.00545663 -27709,3500:247:1,7,-54,0,0,-0.005453 -27710,3500:247:2,7.5,-54,0,0,-0.00544451 -27711,3500:248:1,8,-54,0,0,-0.00543728 -27712,3500:248:2,8.5,-54,0,0,-0.00543968 -27713,3500:249:1,9,-54,0,0,-0.00544089 -27714,3500:249:2,9.5,-54,0,0,-0.00544211 -27715,3501:140:1,10,-54,0,0,-0.00544333 -27716,3501:140:2,10.5,-54,0,0,-0.00544451 -27717,3501:141:1,11,-54,0,0,-0.00544573 -27718,3501:141:2,11.5,-54,0,0,-0.00544816 -27719,3501:142:1,12,-54,0,0,-0.00544816 -27720,3501:142:2,12.5,-54,0,0,-0.00544935 -27721,3501:143:1,13,-54,0,0,-0.00544935 -27722,3501:143:2,13.5,-54,0,0,-0.00544935 -27723,3501:144:1,14,-54,0,0,-0.00544935 -27724,3501:144:2,14.5,-54,0,0,-0.00544935 -27725,3501:245:1,15,-54,0,0,-0.00545057 -27726,3501:245:2,15.5,-54,0,0,-0.00544935 -27727,3501:246:1,16,-54,0,0,-0.00544816 -27728,3501:246:2,16.5,-54,0,0,-0.00544816 -27729,3501:247:1,17,-54,0,0,-0.00544816 -27730,3501:247:2,17.5,-54,0,0,-0.00544816 -27731,3501:248:1,18,-54,0,0,-0.005453 -27732,3501:248:2,18.5,-54,0,0,-0.00545785 -27733,3501:249:1,19,-54,0,0,-0.00546148 -27734,3501:249:2,19.5,-54,0,0,-0.00546392 -27735,3502:140:1,20,-54,0,0,-0.0054627 -27736,3502:140:2,20.5,-54,0,0,-0.00546148 -27737,3502:141:1,21,-54,0,0,-0.00546026 -27738,3502:141:2,21.5,-54,0,0,-0.00546026 -27739,3502:142:1,22,-54,0,0,-0.00545785 -27740,3502:142:2,22.5,-54,0,0,-0.00545541 -27741,3502:143:1,23,-54,0,0,-0.00544573 -27742,3502:143:2,23.5,-54,0,0,-0.00543485 -27743,3502:144:1,24,-54,0,0,-0.00545663 -27744,3502:144:2,24.5,-54,0,0,-0.00547486 -27745,3502:245:1,25,-54,0,0,-0.00548337 -27746,3502:245:2,25.5,-54,0,0,-0.00548824 -27747,3502:246:1,26,-54,0,0,-0.00548459 -27748,3502:246:2,26.5,-54,0,0,-0.00546026 -27749,3502:247:1,27,-54,0,0,-0.00545663 -27750,3502:247:2,27.5,-54,0,0,-0.00545907 -27751,3502:248:1,28,-54,0,0,-0.0054627 -27752,3502:248:2,28.5,-54,0,0,-0.00546755 -27753,3502:249:1,29,-54,0,0,-0.00547119 -27754,3502:249:2,29.5,-54,0,0,-0.00547241 -27755,3503:140:1,30,-54,0,0,-0.0054785 -27756,3503:140:2,30.5,-54,0,0,-0.0055139 -27757,3503:141:1,31,-54,0,0,-0.00556558 -27758,3503:141:2,31.5,-54,0,0,-0.00559908 -27759,3503:142:1,32,-54,0,0,-0.00561527 -27760,3503:142:2,32.5,-54,0,0,-0.00562278 -27761,3503:143:1,33,-54,0,0,-0.00561653 -27762,3503:143:2,33.5,-54,0,0,-0.00561653 -27763,3503:144:1,34,-54,0,0,-0.00566791 -27764,3503:144:2,34.5,-54,0,0,-0.00566288 -27765,3503:245:1,35,-54,0,0,-0.00562404 -27766,3503:245:2,35.5,-54,0,0,-0.00559164 -27767,3503:246:1,36,-54,0,0,-0.00557922 -27768,3503:246:2,36.5,-54,0,0,-0.00556313 -27769,3503:247:1,37,-54,0,0,-0.00556313 -27770,3503:247:2,37.5,-54,0,0,-0.00557426 -27771,3503:248:1,38,-54,0,0,-0.00558664 -27772,3503:248:2,38.5,-54,0,0,-0.00560405 -27773,3503:249:1,39,-54,0,0,-0.00560158 -27774,3503:249:2,39.5,-54,0,0,-0.00559661 -27775,3504:140:1,40,-54,0,0,-0.00559285 -27776,3504:140:2,40.5,-54,0,0,-0.00557922 -27777,3504:141:1,41,-54,0,0,-0.00554832 -27778,3504:141:2,41.5,-54,0,0,-0.00551637 -27779,3504:142:1,42,-54,0,0,-0.00550046 -27780,3504:142:2,42.5,-54,0,0,-0.00548824 -27781,3504:143:1,43,-54,0,0,-0.00548337 -27782,3504:143:2,43.5,-54,0,0,-0.0054785 -27783,3504:144:1,44,-54,0,0,-0.00546148 -27784,3504:144:2,44.5,-54,0,0,-0.00545663 -27785,3504:245:1,45,-54,0,0,-0.00545663 -27786,3504:245:2,45.5,-54,0,0,-0.00545785 -27787,3504:246:1,46,-54,0,0,-0.00545541 -27788,3504:246:2,46.5,-54,0,0,-0.00549312 -27789,3504:247:1,47,-54,0,0,-0.00557672 -27790,3504:247:2,47.5,-54,0,0,-0.00561029 -27791,3504:248:1,48,-54,0,0,-0.00561778 -27792,3504:248:2,48.5,-54,0,0,-0.00560903 -27793,3504:249:1,49,-54,0,0,-0.00559661 -27794,3504:249:2,49.5,-54,0,0,-0.00558418 -27795,3505:140:1,50,-54,0,0,-0.00557551 -27796,3505:140:2,50.5,-54,0,0,-0.00557052 -27797,3505:141:1,51,-54,0,0,-0.00556558 -27798,3505:141:2,51.5,-54,0,0,-0.00554832 -27799,3505:142:1,52,-54,0,0,-0.00554216 -27800,3505:142:2,52.5,-54,0,0,-0.0055434 -27801,3505:143:1,53,-54,0,0,-0.00552741 -27802,3505:143:2,53.5,-54,0,0,-0.00550658 -27803,3505:144:1,54,-54,0,0,-0.00548947 -27804,3505:144:2,54.5,-54,0,0,-0.00547486 -27805,3505:245:1,55,-54,0,0,-0.00546511 -27806,3505:245:2,55.5,-54,0,0,-0.00546148 -27807,3505:246:1,56,-54,0,0,-0.00545785 -27808,3505:246:2,56.5,-54,0,0,-0.00545785 -27809,3505:247:1,57,-54,0,0,-0.00545663 -27810,3505:247:2,57.5,-54,0,0,-0.00545541 -27811,3505:248:1,58,-54,0,0,-0.00545541 -27812,3505:248:2,58.5,-54,0,0,-0.00546148 -27813,3505:249:1,59,-54,0,0,-0.00546392 -27814,3505:249:2,59.5,-54,0,0,-0.00547 -27815,3506:140:1,60,-54,0,0,-0.00551147 -27816,3506:140:2,60.5,-54,0,0,-0.00553724 -27817,3506:141:1,61,-54,0,0,-0.00559536 -27818,3506:141:2,61.5,-54,0,0,-0.00565282 -27819,3506:142:1,62,-54,0,0,-0.0057236 -27820,3506:142:2,62.5,-54,0,0,-0.00574655 -27821,3506:143:1,63,-54,0,0,-0.00567926 -27822,3506:143:2,63.5,-54,0,0,-0.00552494 -27823,3506:144:1,64,-54,0,0,-0.005509 -27824,3506:144:2,64.5,-54,0,0,-0.00558789 -27825,3506:245:1,65,-54,0,0,-0.00563404 -27826,3506:245:2,65.5,-54,0,0,-0.00564532 -27827,3506:246:1,66,-54,0,0,-0.00577985 -27828,3506:246:2,66.5,-54,0,0,-0.00592157 -27829,3506:247:1,67,-54,0,0,-0.00635674 -27830,3506:247:2,67.5,-54,0,0,-0.0063285 -27831,3506:248:1,68,-54,0,0,-0.00620731 -27832,3506:248:2,68.5,-54,0,0,-0.00605332 -27833,3506:249:1,69,-54,0,0,-0.00586005 -27834,3506:249:2,69.5,-54,0,0,-0.00586132 -27835,3507:140:1,70,-54,0,0,-0.00645068 -27836,3507:140:2,70.5,-54,0,0,-0.0069035 -27837,3507:141:1,71,-54,0,0,-0.00675313 -27838,3507:141:2,71.5,-54,0,0,-0.00646506 -27839,3507:142:1,72,-54,0,0,-0.00605061 -27840,3507:142:2,72.5,-54,0,0,-0.00570075 -27841,3507:143:2,73.5,-54,0,0,-0.00567294 -27842,3507:144:1,74,-54,0,0,-0.00576446 -27843,3507:144:2,74.5,-54,0,0,-0.00575165 -27844,3507:245:1,75,-54,0,0,-0.00575806 -27845,3507:245:2,75.5,-54,0,0,-0.00577601 -27846,3507:246:1,76,-54,0,0,-0.00580172 -27847,3507:246:2,76.5,-54,0,0,-0.00582111 -27848,3507:247:1,77,-54,0,0,-0.00584314 -27849,3507:247:2,77.5,-54,0,0,-0.00589269 -27850,3507:248:1,78,-54,0,0,-0.00592551 -27851,3507:248:2,78.5,-54,0,0,-0.0058172 -27852,3507:249:1,79,-54,0,0,-0.00577213 -27853,3507:249:2,79.5,-54,0,0,-0.005767 -27854,3508:140:1,80,-54,0,0,-0.00576059 -27855,3508:140:2,80.5,-54,0,0,-0.00573888 -27856,3508:141:1,81,-54,0,0,-0.00571724 -27857,3508:141:2,81.5,-54,0,0,-0.00569696 -27858,3508:142:1,82,-54,0,0,-0.00562651 -27859,3508:142:2,82.5,-54,0,0,-0.00559164 -27860,3508:143:1,83,-54,0,0,-0.00560033 -27861,3508:143:2,83.5,-54,0,0,-0.00562526 -27862,3508:144:1,84,-54,0,0,-0.00567294 -27863,3508:144:2,84.5,-54,0,0,-0.00574144 -27864,3508:245:1,85,-54,0,0,-0.00574655 -27865,3508:245:2,85.5,-54,0,0,-0.00569696 -27866,3508:246:1,86,-54,0,0,-0.005619 -27867,3508:246:2,86.5,-54,0,0,-0.00551637 -27868,3508:247:1,87,-54,0,0,-0.00556188 -27869,3508:247:2,87.5,-54,0,0,-0.0056919 -27870,3508:248:1,88,-54,0,0,-0.0057236 -27871,3508:248:2,88.5,-54,0,0,-0.00567294 -27872,3508:249:1,89,-54,0,0,-0.00558789 -27873,3508:249:2,89.5,-54,0,0,-0.00559908 -27874,3509:140:1,90,-54,0,0,-0.00561402 -27875,3509:140:2,90.5,-54,0,0,-0.00569569 -27876,3509:141:1,91,-54,0,0,-0.00582885 -27877,3509:141:2,91.5,-54,0,0,-0.00605061 -27878,3509:142:1,92,-54,0,0,-0.00616739 -27879,3509:142:2,92.5,-54,0,0,-0.00629625 -27880,3509:143:1,93,-54,0,0,-0.00633276 -27881,3509:143:2,93.5,-54,0,0,-0.00631868 -27882,3509:144:1,94,-54,0,0,-0.00637371 -27883,3509:144:2,94.5,-54,0,0,-0.00653732 -27884,3509:245:1,95,-54,0,0,-0.00658989 -27885,3509:245:2,95.5,-54,0,0,-0.00656213 -27886,3509:246:1,96,-54,0,0,-0.00651266 -27887,3509:246:2,96.5,-54,0,0,-0.00645787 -27888,3509:247:1,97,-54,0,0,-0.00634403 -27889,3509:247:2,97.5,-54,0,0,-0.00622249 -27890,3509:248:1,98,-54,0,0,-0.00624189 -27891,3509:248:2,98.5,-54,0,0,-0.0062197 -27892,3509:249:1,99,-54,0,0,-0.00627668 -27893,3509:249:2,99.5,-54,0,0,-0.00639498 -27894,3510:140:1,100,-54,0,0,-0.00661485 -27895,3510:140:2,100.5,-54,0,0,-0.00699004 -27896,3510:141:1,101,-54,0,0,-0.00737514 -27897,3510:141:2,101.5,-54,0,0,-0.00772121 -27898,3510:142:1,102,-54,0,0,-0.00768348 -27899,3510:142:2,102.5,-54,0,0,-0.00741795 -27900,3510:143:1,103,-54,0,0,-0.00731791 -27901,3510:143:2,103.5,-54,0,0,-0.00713457 -27902,3510:144:1,104,-54,0,0,-0.00611145 -27903,3510:144:2,104.5,-54,0,0,-0.00597179 -27904,3510:245:1,105,-54,0,0,-0.0060372 -27905,3510:245:2,105.5,-54,0,0,-0.00660605 -27906,3510:246:1,106,-54,0,0,-0.00696829 -27907,3510:246:2,106.5,-54,0,0,-0.00716959 -27908,3510:247:1,107,-54,0,0,-0.00721923 -27909,3510:247:2,107.5,-54,0,0,-0.00721761 -27910,3510:248:1,108,-54,0,0,-0.00731304 -27911,3510:248:2,108.5,-54,0,0,-0.00731304 -27912,3510:249:1,109,-54,0,0,-0.00672614 -27913,3510:249:2,109.5,-54,0,0,-0.00638505 -27914,3511:140:1,110,-54,0,0,-0.00662518 -27915,3511:140:2,110.5,-54,0,0,-0.00713617 -27916,3511:141:1,111,-54,0,0,-0.00741956 -27917,3511:141:2,111.5,-54,0,0,-0.00736693 -27918,3511:142:1,112,-54,0,0,-0.0074444 -27919,3511:142:2,112.5,-54,0,0,-0.00757139 -27920,3511:143:1,113,-54,0,0,-0.00761027 -27921,3511:143:2,113.5,-54,0,0,-0.00774359 -27922,3511:144:1,114,-54,0,0,-0.0080066 -27923,3511:144:2,114.5,-54,0,0,-0.00803517 -27924,3511:245:1,115,-54,0,0,-0.00803877 -27925,3511:245:2,115.5,-54,0,0,-0.00803517 -27926,3511:246:1,116,-54,0,0,-0.00806027 -27927,3511:246:2,116.5,-54,0,0,-0.00814875 -27928,3511:247:1,117,-54,0,0,-0.00826939 -27929,3511:247:2,117.5,-54,0,0,-0.00844065 -27930,3511:248:1,118,-54,0,0,-0.00857907 -27931,3511:248:2,118.5,-54,0,0,-0.0086675 -27932,3511:249:1,119,-54,0,0,-0.00862699 -27933,3511:249:2,119.5,-54,0,0,-0.00830636 -27934,3512:140:1,120,-54,0,0,-0.00808183 -27935,3512:140:2,120.5,-54,0,0,-0.00820885 -27936,3512:141:1,121,-54,0,0,-0.00863086 -27937,3512:141:2,121.5,-54,0,0,-0.00878221 -27938,3512:142:1,122,-54,0,0,-0.00871201 -27939,3512:142:2,122.5,-54,0,0,-0.00869845 -27940,3512:143:1,123,-54,0,0,-0.00879985 -27941,3512:143:2,123.5,-54,0,0,-0.00892627 -27942,3512:144:1,124,-54,0,0,-0.00901427 -27943,3512:144:2,124.5,-54,0,0,-0.0090424 -27944,3512:245:1,125,-54,0,0,-0.00913771 -27945,3512:245:2,125.5,-54,0,0,-0.00933328 -27946,3512:246:1,126,-54,0,0,-0.00956297 -27947,3512:246:2,126.5,-54,0,0,-0.00969618 -27948,3512:247:1,127,-54,0,0,-0.00985974 -27949,3512:247:2,127.5,-54,0,0,-0.0100083 -27950,3512:248:1,128,-54,0,0,-0.0100329 -27951,3512:248:2,128.5,-54,0,0,-0.0100778 -27952,3512:249:1,129,-54,0,0,-0.0102502 -27953,3512:249:2,129.5,-54,0,0,-0.0103444 -27954,3513:140:1,130,-54,0,0,-0.0104746 -27955,3513:140:2,130.5,-54,0,0,-0.0108217 -27956,3513:141:1,131,-54,0,0,-0.0111082 -27957,3513:141:2,131.5,-54,0,0,-0.0110094 -27958,3513:142:1,132,-54,0,0,-0.010604 -27959,3513:142:2,132.5,-54,0,0,-0.010015 -27960,3513:143:1,133,-54,0,0,-0.00986639 -27961,3513:143:2,133.5,-54,0,0,-0.0100845 -27962,3513:144:1,134,-54,0,0,-0.0101681 -27963,3513:144:2,134.5,-54,0,0,-0.0101115 -27964,3513:245:1,135,-54,0,0,-0.010089 -27965,3513:245:2,135.5,-54,0,0,-0.0100463 -27966,3513:246:1,136,-54,0,0,-0.00988179 -27967,3513:246:2,136.5,-54,0,0,-0.00962934 -27968,3513:247:1,137,-54,0,0,-0.00944215 -27969,3513:247:2,137.5,-54,0,0,-0.0093479 -27970,3513:248:1,138,-54,0,0,-0.00937715 -27971,3513:248:2,138.5,-54,0,0,-0.00955445 -27972,3513:249:1,139,-54,0,0,-0.00970701 -27973,3513:249:2,139.5,-54,0,0,-0.00973083 -27974,3514:140:1,140,-54,0,0,-0.00968971 -27975,3514:140:2,140.5,-54,0,0,-0.00967672 -27976,3514:141:1,141,-54,0,0,-0.00967672 -27977,3514:141:2,141.5,-54,0,0,-0.00955874 -27978,3514:142:1,142,-54,0,0,-0.00931463 -27979,3514:142:2,142.5,-54,0,0,-0.00916623 -27980,3514:143:1,143,-54,0,0,-0.00931253 -27981,3514:143:2,143.5,-54,0,0,-0.00950767 -27982,3514:144:1,144,-54,0,0,-0.00923805 -27983,3514:144:2,144.5,-54,0,0,-0.0088846 -27984,3514:245:1,145,-54,0,0,-0.0086965 -27985,3514:245:2,145.5,-54,0,0,-0.00869845 -27986,3514:246:1,146,-54,0,0,-0.00897016 -27987,3514:246:2,146.5,-54,0,0,-0.00926487 -27988,3514:247:1,147,-54,0,0,-0.00907069 -27989,3514:247:2,147.5,-54,0,0,-0.00844818 -27990,3514:248:1,148,-54,0,0,-0.00757309 -27991,3514:248:2,148.5,-54,0,0,-0.00732442 -27992,3514:249:1,149,-54,0,0,-0.00722727 -27993,3514:249:2,149.5,-54,0,0,-0.00724177 -27994,3515:140:1,150,-54,0,0,-0.00732114 -27995,3515:140:2,150.5,-54,0,0,-0.0073932 -27996,3515:141:1,151,-54,0,0,-0.00737184 -27997,3515:141:2,151.5,-54,0,0,-0.00699156 -27998,3515:142:1,152,-54,0,0,-0.0063893 -27999,3515:142:2,152.5,-54,0,0,-0.00608027 -28000,3515:143:1,153,-54,0,0,-0.00575677 -28001,3515:143:2,153.5,-54,0,0,-0.00562152 -28002,3515:144:1,154,-54,0,0,-0.00565156 -28003,3515:144:2,154.5,-54,0,0,-0.00596252 -28004,3515:245:1,155,-54,0,0,-0.00669775 -28005,3515:245:2,155.5,-54,0,0,-0.00752606 -28006,3515:246:1,156,-54,0,0,-0.00826939 -28007,3515:246:2,156.5,-54,0,0,-0.00842185 -28008,3515:247:1,157,-54,0,0,-0.00771261 -28009,3515:247:2,157.5,-54,0,0,-0.00708239 -28010,3515:248:1,158,-54,0,0,-0.00631585 -28011,3515:248:2,158.5,-54,0,0,-0.00628507 -28012,3515:249:1,159,-54,0,0,-0.00665172 -28013,3515:249:2,159.5,-54,0,0,-0.00654607 -28014,3516:140:1,160,-54,0,0,-0.00623081 -28015,3516:140:2,160.5,-54,0,0,-0.00627668 -28016,3516:141:1,161,-54,0,0,-0.00622388 -28017,3516:141:2,161.5,-54,0,0,-0.00710132 -28018,3516:142:1,162,-54,0,0,-0.00744106 -28019,3516:142:2,162.5,-54,0,0,-0.00786696 -28020,3516:143:1,163,-54,0,0,-0.00782505 -28021,3516:143:2,163.5,-54,0,0,-0.00775049 -28022,3516:144:1,164,-54,0,0,-0.00737675 -28023,3516:144:2,164.5,-54,0,0,-0.0068759 -28024,3516:245:1,165,-54,0,0,-0.00683471 -28025,3516:245:2,165.5,-54,0,0,-0.00683624 -28026,3516:246:1,166,-54,0,0,-0.00727569 -28027,3516:246:2,166.5,-54,0,0,-0.00807827 -28028,3516:247:1,167,-54,0,0,-0.0111429 -28029,3516:247:2,167.5,-54,0,0,-0.0119959 -28030,3516:248:1,168,-54,0,0,-0.0115951 -28031,3516:248:2,168.5,-54,0,0,-0.0111904 -28032,3516:249:1,169,-54,0,0,-0.011929 -28033,3516:249:2,169.5,-54,0,0,-0.0135456 -28034,3517:140:1,170,-54,0,0,-0.013974 -28035,3517:140:2,170.5,-54,0,0,-0.0136675 -28036,3517:141:1,171,-54,0,0,-0.0133799 -28037,3517:141:2,171.5,-54,0,0,-0.0136859 -28038,3517:142:1,172,-54,0,0,-0.014839 -28039,3517:142:2,172.5,-54,0,0,-0.016497 -28040,3517:143:1,173,-54,0,0,-0.0176474 -28041,3517:143:2,173.5,-54,0,0,-0.0179193 -28042,3517:144:1,174,-54,0,0,-0.0174071 -28043,3517:144:2,174.5,-54,0,0,-0.0168301 -28044,3517:245:1,175,-54,0,0,-0.0165378 -28045,3517:245:2,175.5,-54,0,0,-0.0159937 -28046,3517:246:1,176,-54,0,0,-0.0146507 -28047,3517:246:2,176.5,-54,0,0,-0.0137443 -28048,3517:247:1,177,-54,0,0,-0.0135305 -28049,3517:247:2,177.5,-54,0,0,-0.0140304 -28050,3517:248:1,178,-54,0,0,-0.0157656 -28051,3517:248:2,178.5,-54,0,0,-0.0172396 -28052,3517:249:1,179,-54,0,0,-0.0175525 -28053,3517:249:2,179.5,-54,0,0,-0.0170931 -28054,3518:140:1,180,-54,0,0,-0.0159507 -28055,5518:130:3,-180,-53.5,0,0,-0.0174973 -28056,5517:239:4,-179.5,-53.5,0,0,-0.0169401 -28057,5517:239:3,-179,-53.5,0,0,-0.0165675 -28058,5517:238:4,-178.5,-53.5,0,0,-0.0161633 -28059,5517:238:3,-178,-53.5,0,0,-0.0152883 -28060,5517:237:4,-177.5,-53.5,0,0,-0.0142363 -28061,5517:237:3,-177,-53.5,0,0,-0.0134459 -28062,5517:236:4,-176.5,-53.5,0,0,-0.0125811 -28063,5517:236:3,-176,-53.5,0,0,-0.0116549 -28064,5517:235:4,-175.5,-53.5,0,0,-0.0112204 -28065,5517:235:3,-175,-53.5,0,0,-0.0110118 -28066,5517:134:4,-174.5,-53.5,0,0,-0.0107999 -28067,5517:134:3,-174,-53.5,0,0,-0.0105968 -28068,5517:133:4,-173.5,-53.5,0,0,-0.0104232 -28069,5517:133:3,-173,-53.5,0,0,-0.0102479 -28070,5517:132:4,-172.5,-53.5,0,0,-0.0100935 -28071,5517:132:3,-172,-53.5,0,0,-0.010006 -28072,5517:131:4,-171.5,-53.5,0,0,-0.00995263 -28073,5517:131:3,-171,-53.5,0,0,-0.00984659 -28074,5517:130:4,-170.5,-53.5,0,0,-0.00966593 -28075,5517:130:3,-170,-53.5,0,0,-0.00940642 -28076,5516:239:4,-169.5,-53.5,0,0,-0.00912752 -28077,5516:239:3,-169,-53.5,0,0,-0.00890244 -28078,5516:238:4,-168.5,-53.5,0,0,-0.0087959 -28079,5516:238:3,-168,-53.5,0,0,-0.00876264 -28080,5516:237:4,-167.5,-53.5,0,0,-0.00872173 -28081,5516:237:3,-167,-53.5,0,0,-0.00867523 -28082,5516:236:4,-166.5,-53.5,0,0,-0.00871005 -28083,5516:236:3,-166,-53.5,0,0,-0.00879201 -28084,5516:235:4,-165.5,-53.5,0,0,-0.00890044 -28085,5516:235:3,-165,-53.5,0,0,-0.00905453 -28086,5516:134:4,-164.5,-53.5,0,0,-0.00920311 -28087,5516:134:3,-164,-53.5,0,0,-0.0092773 -28088,5516:133:4,-163.5,-53.5,0,0,-0.00931463 -28089,5516:133:3,-163,-53.5,0,0,-0.00932293 -28090,5516:132:4,-162.5,-53.5,0,0,-0.00936879 -28091,5516:132:3,-162,-53.5,0,0,-0.00965514 -28092,5516:131:4,-161.5,-53.5,0,0,-0.0101681 -28093,5516:131:3,-161,-53.5,0,0,-0.0100688 -28094,5516:130:4,-160.5,-53.5,0,0,-0.00944215 -28095,5516:130:3,-160,-53.5,0,0,-0.00862699 -28096,5515:239:4,-159.5,-53.5,0,0,-0.00854094 -28097,5515:239:3,-159,-53.5,0,0,-0.00871592 -28098,5515:238:4,-158.5,-53.5,0,0,-0.00879004 -28099,5515:238:3,-158,-53.5,0,0,-0.00879393 -28100,5515:237:4,-157.5,-53.5,0,0,-0.00883127 -28101,5515:237:3,-157,-53.5,0,0,-0.00915601 -28102,5515:236:4,-156.5,-53.5,0,0,-0.00940438 -28103,5515:236:3,-156,-53.5,0,0,-0.00908489 -28104,5515:235:4,-155.5,-53.5,0,0,-0.00871396 -28105,5515:235:3,-155,-53.5,0,0,-0.0086193 -28106,5515:134:4,-154.5,-53.5,0,0,-0.00838072 -28107,5515:134:3,-154,-53.5,0,0,-0.00818878 -28108,5515:133:4,-153.5,-53.5,0,0,-0.00806926 -28109,5515:133:3,-153,-53.5,0,0,-0.00797283 -28110,5515:132:4,-152.5,-53.5,0,0,-0.0078933 -28111,5515:132:3,-152,-53.5,0,0,-0.00788976 -28112,5515:131:4,-151.5,-53.5,0,0,-0.00921746 -28113,5515:131:3,-151,-53.5,0,0,-0.0100105 -28114,5515:130:4,-150.5,-53.5,0,0,-0.0100958 -28115,5515:130:3,-150,-53.5,0,0,-0.0102776 -28116,5514:239:4,-149.5,-53.5,0,0,-0.0102113 -28117,5514:239:3,-149,-53.5,0,0,-0.0101523 -28118,5514:238:4,-148.5,-53.5,0,0,-0.0101818 -28119,5514:238:3,-148,-53.5,0,0,-0.0103421 -28120,5514:237:4,-147.5,-53.5,0,0,-0.0100083 -28121,5514:237:3,-147,-53.5,0,0,-0.0105003 -28122,5514:236:4,-146.5,-53.5,0,0,-0.0112782 -28123,5514:236:3,-146,-53.5,0,0,-0.0129902 -28124,5514:235:4,-145.5,-53.5,0,0,-0.0141188 -28125,5514:235:3,-145,-53.5,0,0,-0.0142906 -28126,5514:134:4,-144.5,-53.5,0,0,-0.0140935 -28127,5514:134:3,-144,-53.5,0,0,-0.0143323 -28128,5514:133:4,-143.5,-53.5,0,0,-0.0150704 -28129,5514:133:3,-143,-53.5,0,0,-0.0174895 -28130,5514:132:4,-142.5,-53.5,0,0,-0.0205116 -28131,5514:132:3,-142,-53.5,0,0,-0.0223835 -28132,5514:131:4,-141.5,-53.5,0,0,-0.0212942 -28133,5514:131:3,-141,-53.5,0,0,-0.0207301 -28134,5514:130:4,-140.5,-53.5,0,0,-0.0193575 -28135,5514:130:3,-140,-53.5,0,0,-0.017827 -28136,5513:239:4,-139.5,-53.5,0,0,-0.0163751 -28137,5513:239:3,-139,-53.5,0,0,-0.0150738 -28138,5513:238:4,-138.5,-53.5,0,0,-0.0138276 -28139,5513:238:3,-138,-53.5,0,0,-0.0124079 -28140,5513:237:4,-137.5,-53.5,0,0,-0.0132516 -28141,5513:237:3,-137,-53.5,0,0,-0.0142938 -28142,5513:236:4,-136.5,-53.5,0,0,-0.013732 -28143,5513:236:3,-136,-53.5,0,0,-0.01347 -28144,5513:235:4,-135.5,-53.5,0,0,-0.0132102 -28145,5513:235:3,-135,-53.5,0,0,-0.0125981 -28146,5513:134:4,-134.5,-53.5,0,0,-0.0128918 -28147,5513:134:3,-134,-53.5,0,0,-0.0130223 -28148,5513:133:4,-133.5,-53.5,0,0,-0.0126461 -28149,5513:133:3,-133,-53.5,0,0,-0.0122535 -28150,5513:132:4,-132.5,-53.5,0,0,-0.0121307 -28151,5513:132:3,-132,-53.5,0,0,-0.012444 -28152,5513:131:4,-131.5,-53.5,0,0,-0.0131541 -28153,5513:131:3,-131,-53.5,0,0,-0.0135973 -28154,5513:130:4,-130.5,-53.5,0,0,-0.0137258 -28155,5513:130:3,-130,-53.5,0,0,-0.013637 -28156,5512:239:4,-129.5,-53.5,0,0,-0.0132131 -28157,5512:239:3,-129,-53.5,0,0,-0.0126659 -28158,5512:238:4,-128.5,-53.5,0,0,-0.012483 -28159,5512:238:3,-128,-53.5,0,0,-0.0125699 -28160,5512:237:4,-127.5,-53.5,0,0,-0.012717 -28161,5512:237:3,-127,-53.5,0,0,-0.0127227 -28162,5512:236:4,-126.5,-53.5,0,0,-0.0126943 -28163,5512:236:3,-126,-53.5,0,0,-0.012754 -28164,5512:235:4,-125.5,-53.5,0,0,-0.0129062 -28165,5512:235:3,-125,-53.5,0,0,-0.0131806 -28166,5512:134:4,-124.5,-53.5,0,0,-0.0135244 -28167,5512:134:3,-124,-53.5,0,0,-0.0137781 -28168,5512:133:4,-123.5,-53.5,0,0,-0.0138835 -28169,5512:133:3,-123,-53.5,0,0,-0.0139178 -28170,5512:132:4,-122.5,-53.5,0,0,-0.0139364 -28171,5512:132:3,-122,-53.5,0,0,-0.013974 -28172,5512:131:4,-121.5,-53.5,0,0,-0.0141441 -28173,5512:131:3,-121,-53.5,0,0,-0.0148257 -28174,5512:130:4,-120.5,-53.5,0,0,-0.01608 -28175,5512:130:3,-120,-53.5,0,0,-0.0166384 -28176,5511:239:4,-119.5,-53.5,0,0,-0.0161852 -28177,5511:239:3,-119,-53.5,0,0,-0.0154054 -28178,5511:238:4,-118.5,-53.5,0,0,-0.0149996 -28179,5511:238:3,-118,-53.5,0,0,-0.0160152 -28180,5511:237:4,-117.5,-53.5,0,0,-0.0168831 -28181,5511:237:3,-117,-53.5,0,0,-0.0168831 -28182,5511:236:4,-116.5,-53.5,0,0,-0.0168567 -28183,5511:236:3,-116,-53.5,0,0,-0.0168642 -28184,5511:235:4,-115.5,-53.5,0,0,-0.0168112 -28185,5511:235:3,-115,-53.5,0,0,-0.0167321 -28186,5511:134:4,-114.5,-53.5,0,0,-0.0167321 -28187,5511:134:3,-114,-53.5,0,0,-0.016781 -28188,5511:133:4,-113.5,-53.5,0,0,-0.0156915 -28189,5511:133:3,-113,-53.5,0,0,-0.0149795 -28190,5511:132:4,-112.5,-53.5,0,0,-0.0146342 -28191,5511:132:3,-112,-53.5,0,0,-0.0145492 -28192,5511:131:4,-111.5,-53.5,0,0,-0.0151756 -28193,5511:131:3,-111,-53.5,0,0,-0.0156387 -28194,5511:130:4,-110.5,-53.5,0,0,-0.015709 -28195,5511:130:3,-110,-53.5,0,0,-0.0154019 -28196,5510:239:4,-109.5,-53.5,0,0,-0.0149359 -28197,5510:239:3,-109,-53.5,0,0,-0.0148291 -28198,5510:238:4,-108.5,-53.5,0,0,-0.0151518 -28199,5510:238:3,-108,-53.5,0,0,-0.0156844 -28200,5510:237:4,-107.5,-53.5,0,0,-0.0156773 -28201,5510:237:3,-107,-53.5,0,0,-0.0149058 -28202,5510:236:4,-106.5,-53.5,0,0,-0.0140273 -28203,5510:236:3,-106,-53.5,0,0,-0.0139146 -28204,5510:235:4,-105.5,-53.5,0,0,-0.0141377 -28205,5510:235:3,-105,-53.5,0,0,-0.0141188 -28206,5510:134:4,-104.5,-53.5,0,0,-0.0141219 -28207,5510:134:3,-104,-53.5,0,0,-0.0141662 -28208,5510:133:4,-103.5,-53.5,0,0,-0.0141789 -28209,5510:133:3,-103,-53.5,0,0,-0.0144484 -28210,5510:132:4,-102.5,-53.5,0,0,-0.0147926 -28211,5510:132:3,-102,-53.5,0,0,-0.0148358 -28212,5510:131:4,-101.5,-53.5,0,0,-0.0148324 -28213,5510:131:3,-101,-53.5,0,0,-0.0149058 -28214,5510:130:4,-100.5,-53.5,0,0,-0.01504 -28215,5510:130:3,-100,-53.5,0,0,-0.0156107 -28216,5509:239:4,-99.5,-53.5,0,0,-0.0164859 -28217,5509:239:3,-99,-53.5,0,0,-0.0171392 -28218,5509:238:4,-98.5,-53.5,0,0,-0.0173446 -28219,5509:238:3,-98,-53.5,0,0,-0.0169821 -28220,5509:237:4,-97.5,-53.5,0,0,-0.0163311 -28221,5509:237:3,-97,-53.5,0,0,-0.0161162 -28222,5509:236:4,-96.5,-53.5,0,0,-0.0161234 -28223,5509:236:3,-96,-53.5,0,0,-0.0162069 -28224,5509:235:4,-95.5,-53.5,0,0,-0.0162069 -28225,5509:235:3,-95,-53.5,0,0,-0.0161126 -28226,5509:134:4,-94.5,-53.5,0,0,-0.0158792 -28227,5509:134:3,-94,-53.5,0,0,-0.0154851 -28228,5509:133:4,-93.5,-53.5,0,0,-0.0148523 -28229,5509:133:3,-93,-53.5,0,0,-0.0141916 -28230,5509:132:4,-92.5,-53.5,0,0,-0.0140966 -28231,5509:132:3,-92,-53.5,0,0,-0.0150097 -28232,5509:131:4,-91.5,-53.5,0,0,-0.0156492 -28233,5509:131:3,-91,-53.5,0,0,-0.0158934 -28234,5509:130:4,-90.5,-53.5,0,0,-0.0161415 -28235,5509:130:3,-90,-53.5,0,0,-0.0163936 -28236,5508:239:4,-89.5,-53.5,0,0,-0.0165787 -28237,5508:239:3,-89,-53.5,0,0,-0.0166346 -28238,5508:238:4,-88.5,-53.5,0,0,-0.0163532 -28239,5508:238:3,-88,-53.5,0,0,-0.0158401 -28240,5508:237:4,-87.5,-53.5,0,0,-0.0157338 -28241,5508:237:3,-87,-53.5,0,0,-0.0158329 -28242,5508:236:4,-86.5,-53.5,0,0,-0.0159399 -28243,5508:236:3,-86,-53.5,0,0,-0.0162616 -28244,5508:235:4,-85.5,-53.5,0,0,-0.0164822 -28245,5508:235:3,-85,-53.5,0,0,-0.0164194 -28246,5508:134:4,-84.5,-53.5,0,0,-0.015983 -28247,5508:134:3,-84,-53.5,0,0,-0.015499 -28248,5508:133:4,-83.5,-53.5,0,0,-0.0153916 -28249,5508:133:3,-83,-53.5,0,0,-0.0160693 -28250,5508:132:4,-82.5,-53.5,0,0,-0.0162945 -28251,5508:132:3,-82,-53.5,0,0,-0.0164896 -28252,5508:131:4,-81.5,-53.5,0,0,-0.0167396 -28253,5508:131:3,-81,-53.5,0,0,-0.0169859 -28254,5508:130:4,-80.5,-53.5,0,0,-0.0171469 -28255,5508:130:3,-80,-53.5,0,0,-0.0170279 -28256,5507:239:4,-79.5,-53.5,0,0,-0.0166571 -28257,5507:239:3,-79,-53.5,0,0,-0.0166571 -28258,5507:238:4,-78.5,-53.5,0,0,-0.016167 -28259,5507:238:3,-78,-53.5,0,0,-0.0158649 -28260,5507:237:4,-77.5,-53.5,0,0,-0.0158329 -28261,5507:237:3,-77,-53.5,0,0,-0.0157267 -28262,5507:236:4,-76.5,-53.5,0,0,-0.0156773 -28263,5507:236:3,-76,-53.5,0,0,-0.015762 -28264,5507:235:4,-75.5,-53.5,0,0,-0.0159399 -28265,5507:235:3,-75,-53.5,0,0,-0.0162762 -28266,5507:134:4,-74.5,-53.5,0,0,-0.0166983 -28267,5507:134:3,-74,-53.5,0,0,-0.0168907 -28268,5507:133:4,-73.5,-53.5,0,0,-0.0168983 -28269,5507:133:3,-73,-53.5,0,0,-0.0166123 -28270,5507:132:4,-72.5,-53.5,0,0,-0.0163348 -28271,5507:132:3,-72,-53.5,0,0,-0.0160188 -28272,5507:131:4,-71.5,-53.5,0,0,-0.0157338 -28273,5507:131:3,-71,-53.5,0,0,-0.01544 -28274,5507:130:4,-70.5,-53.5,0,0,-0.0151178 -28275,5507:130:3,-70,-53.5,0,0,-0.0152301 -28276,5506:239:4,-69.5,-53.5,0,0,-0.0152335 -28277,5506:239:3,-69,-53.5,0,0,-0.0148025 -28278,5506:238:4,-68.5,-53.5,0,0,-0.0141409 -28279,5506:238:3,-68,-53.5,0,0,-0.0131335 -28280,5506:237:4,-67.5,-53.5,0,0,-0.0112959 -28281,5506:237:3,-67,-53.5,0,0,-0.00994152 -28282,5506:236:4,-66.5,-53.5,0,0,-0.00965731 -28283,5506:236:3,-66,-53.5,0,0,-0.0101161 -28284,5506:235:4,-65.5,-53.5,0,0,-0.0106872 -28285,5506:235:3,-65,-53.5,0,0,-0.0108676 -28286,5506:134:4,-64.5,-53.5,0,0,-0.0100083 -28287,5506:134:3,-64,-53.5,0,0,-0.00913771 -28288,5506:133:4,-63.5,-53.5,0,0,-0.00725787 -28289,5506:133:3,-63,-53.5,0,0,-0.00701653 -28290,5506:132:4,-62.5,-53.5,0,0,-0.00705096 -28291,5506:132:3,-62,-53.5,0,0,-0.00672162 -28292,5506:131:4,-61.5,-53.5,0,0,-0.00670967 -28293,5506:131:3,-61,-53.5,0,0,-0.00706194 -28294,5506:130:4,-60.5,-53.5,0,0,-0.00712508 -28295,5506:130:3,-60,-53.5,0,0,-0.00712508 -28296,5505:239:4,-59.5,-53.5,0,0,-0.00709973 -28297,5505:239:3,-59,-53.5,0,0,-0.00690964 -28298,5505:238:4,-58.5,-53.5,0,0,-0.00668885 -28299,5505:238:3,-58,-53.5,0,0,-0.00651991 -28300,5505:237:4,-57.5,-53.5,0,0,-0.00645068 -28301,5505:237:3,-57,-53.5,0,0,-0.00641067 -28302,5505:236:4,-56.5,-53.5,0,0,-0.00635389 -28303,5505:236:3,-56,-53.5,0,0,-0.00625716 -28304,5505:235:4,-55.5,-53.5,0,0,-0.00615644 -28305,5505:235:3,-55,-53.5,0,0,-0.00609245 -28306,5505:134:4,-54.5,-53.5,0,0,-0.00603851 -28307,5505:134:3,-54,-53.5,0,0,-0.00597179 -28308,5505:133:4,-53.5,-53.5,0,0,-0.00585611 -28309,5505:133:3,-53,-53.5,0,0,-0.00577471 -28310,5505:132:4,-52.5,-53.5,0,0,-0.00580172 -28311,5505:132:3,-52,-53.5,0,0,-0.00578243 -28312,5505:131:4,-51.5,-53.5,0,0,-0.00571852 -28313,5505:131:3,-51,-53.5,0,0,-0.00565785 -28314,5505:130:4,-50.5,-53.5,0,0,-0.00562651 -28315,5505:130:3,-50,-53.5,0,0,-0.00563778 -28316,5504:239:4,-49.5,-53.5,0,0,-0.00563778 -28317,5504:239:3,-49,-53.5,0,0,-0.00563151 -28318,5504:238:4,-48.5,-53.5,0,0,-0.00559039 -28319,5504:238:3,-48,-53.5,0,0,-0.00550658 -28320,5504:237:4,-47.5,-53.5,0,0,-0.00545663 -28321,5504:237:3,-47,-53.5,0,0,-0.00546148 -28322,5504:236:4,-46.5,-53.5,0,0,-0.00546392 -28323,5504:236:3,-46,-53.5,0,0,-0.00546392 -28324,5504:235:4,-45.5,-53.5,0,0,-0.00546392 -28325,5504:235:3,-45,-53.5,0,0,-0.0054627 -28326,5504:134:4,-44.5,-53.5,0,0,-0.0054627 -28327,5504:134:3,-44,-53.5,0,0,-0.0054627 -28328,5504:133:4,-43.5,-53.5,0,0,-0.00546148 -28329,5504:133:3,-43,-53.5,0,0,-0.0054627 -28330,5504:132:4,-42.5,-53.5,0,0,-0.00546511 -28331,5504:132:3,-42,-53.5,0,0,-0.00546633 -28332,5504:131:4,-41.5,-53.5,0,0,-0.00546392 -28333,5504:131:3,-41,-53.5,0,0,-0.00546148 -28334,5504:130:4,-40.5,-53.5,0,0,-0.00546026 -28335,5504:130:3,-40,-53.5,0,0,-0.00545907 -28336,5503:239:4,-39.5,-53.5,0,0,-0.00545907 -28337,5503:239:3,-39,-53.5,0,0,-0.00546026 -28338,5503:238:4,-38.5,-53.5,0,0,-0.00546511 -28339,5503:238:3,-38,-53.5,0,0,-0.00546392 -28340,5503:237:4,-37.5,-53.5,0,0,-0.00545907 -28341,5503:237:3,-37,-53.5,0,0,-0.00545541 -28342,5503:236:4,-36.5,-53.5,0,0,-0.00545541 -28343,5503:236:3,-36,-53.5,0,0,-0.00545663 -28344,5503:235:4,-35.5,-53.5,0,0,-0.00545663 -28345,5503:235:3,-35,-53.5,0,0,-0.00545663 -28346,5503:134:4,-34.5,-53.5,0,0,-0.00545785 -28347,5503:134:3,-34,-53.5,0,0,-0.00545785 -28348,5503:133:4,-33.5,-53.5,0,0,-0.00545663 -28349,5503:133:3,-33,-53.5,0,0,-0.00545663 -28350,5503:132:4,-32.5,-53.5,0,0,-0.00545785 -28351,5503:132:3,-32,-53.5,0,0,-0.00546026 -28352,5503:131:4,-31.5,-53.5,0,0,-0.00546026 -28353,5503:131:3,-31,-53.5,0,0,-0.00546026 -28354,5503:130:4,-30.5,-53.5,0,0,-0.00545907 -28355,5503:130:3,-30,-53.5,0,0,-0.00545907 -28356,5502:239:4,-29.5,-53.5,0,0,-0.00545785 -28357,5502:239:3,-29,-53.5,0,0,-0.00545785 -28358,5502:238:4,-28.5,-53.5,0,0,-0.00545907 -28359,5502:238:3,-28,-53.5,0,0,-0.00545907 -28360,5502:237:4,-27.5,-53.5,0,0,-0.00545907 -28361,5502:237:3,-27,-53.5,0,0,-0.00545785 -28362,5502:236:4,-26.5,-53.5,0,0,-0.00545785 -28363,5502:236:3,-26,-53.5,0,0,-0.00545785 -28364,5502:235:4,-25.5,-53.5,0,0,-0.00545907 -28365,5502:235:3,-25,-53.5,0,0,-0.00545907 -28366,5502:134:4,-24.5,-53.5,0,0,-0.00545907 -28367,5502:134:3,-24,-53.5,0,0,-0.00545907 -28368,5502:133:4,-23.5,-53.5,0,0,-0.00546026 -28369,5502:133:3,-23,-53.5,0,0,-0.00546148 -28370,5502:132:4,-22.5,-53.5,0,0,-0.00546026 -28371,5502:132:3,-22,-53.5,0,0,-0.00545785 -28372,5502:131:4,-21.5,-53.5,0,0,-0.00545541 -28373,5502:131:3,-21,-53.5,0,0,-0.005453 -28374,5502:130:4,-20.5,-53.5,0,0,-0.00547486 -28375,5502:130:3,-20,-53.5,0,0,-0.00548824 -28376,5501:239:4,-19.5,-53.5,0,0,-0.00549557 -28377,5501:239:3,-19,-53.5,0,0,-0.00551266 -28378,5501:238:4,-18.5,-53.5,0,0,-0.00549677 -28379,5501:238:3,-18,-53.5,0,0,-0.00547727 -28380,5501:237:4,-17.5,-53.5,0,0,-0.0054627 -28381,5501:237:3,-17,-53.5,0,0,-0.00545541 -28382,5501:236:4,-16.5,-53.5,0,0,-0.00545057 -28383,5501:236:3,-16,-53.5,0,0,-0.00545057 -28384,5501:235:4,-15.5,-53.5,0,0,-0.00545057 -28385,5501:235:3,-15,-53.5,0,0,-0.00545057 -28386,5501:134:4,-14.5,-53.5,0,0,-0.00544935 -28387,5501:134:3,-14,-53.5,0,0,-0.00544816 -28388,5501:133:4,-13.5,-53.5,0,0,-0.00544695 -28389,5501:133:3,-13,-53.5,0,0,-0.00545057 -28390,5501:132:4,-12.5,-53.5,0,0,-0.00545179 -28391,5501:132:3,-12,-53.5,0,0,-0.005453 -28392,5501:131:4,-11.5,-53.5,0,0,-0.00545423 -28393,5501:131:3,-11,-53.5,0,0,-0.005453 -28394,5501:130:4,-10.5,-53.5,0,0,-0.00545057 -28395,5501:130:3,-10,-53.5,0,0,-0.00544816 -28396,5500:239:4,-9.5,-53.5,0,0,-0.00544695 -28397,5500:239:3,-9,-53.5,0,0,-0.00544695 -28398,5500:238:4,-8.5,-53.5,0,0,-0.00544816 -28399,5500:238:3,-8,-53.5,0,0,-0.00545057 -28400,5500:237:4,-7.5,-53.5,0,0,-0.00545541 -28401,5500:237:3,-7,-53.5,0,0,-0.00545541 -28402,5500:236:4,-6.5,-53.5,0,0,-0.00545541 -28403,5500:236:3,-6,-53.5,0,0,-0.00545179 -28404,5500:235:4,-5.5,-53.5,0,0,-0.00544695 -28405,5500:235:3,-5,-53.5,0,0,-0.00544695 -28406,5500:134:4,-4.5,-53.5,0,0,-0.00544695 -28407,5500:134:3,-4,-53.5,0,0,-0.00544573 -28408,5500:133:4,-3.5,-53.5,0,0,-0.00544573 -28409,5500:133:3,-3,-53.5,0,0,-0.00544333 -28410,5500:132:4,-2.5,-53.5,0,0,-0.00544211 -28411,5500:132:3,-2,-53.5,0,0,-0.00544089 -28412,5500:131:4,-1.5,-53.5,0,0,-0.00543968 -28413,5500:131:3,-1,-53.5,0,0,-0.0054385 -28414,5500:130:4,-0.5,-53.5,0,0,-0.00544089 -28415,3500:130:4,0,-53.5,0,0,-0.00544451 -28416,3500:130:4,0.5,-53.5,0,0,-0.00545179 -28417,3500:131:3,1,-53.5,0,0,-0.00546392 -28418,3500:131:4,1.5,-53.5,0,0,-0.00547241 -28419,3500:132:3,2,-53.5,0,0,-0.00547727 -28420,3500:132:4,2.5,-53.5,0,0,-0.0054785 -28421,3500:133:3,3,-53.5,0,0,-0.00548701 -28422,3500:133:4,3.5,-53.5,0,0,-0.00549189 -28423,3500:134:3,4,-53.5,0,0,-0.00549677 -28424,3500:134:4,4.5,-53.5,0,0,-0.00550658 -28425,3500:235:3,5,-53.5,0,0,-0.00550534 -28426,3500:235:4,5.5,-53.5,0,0,-0.00549923 -28427,3500:236:3,6,-53.5,0,0,-0.00548701 -28428,3500:236:4,6.5,-53.5,0,0,-0.00547486 -28429,3500:237:3,7,-53.5,0,0,-0.00546755 -28430,3500:237:4,7.5,-53.5,0,0,-0.00545785 -28431,3500:238:3,8,-53.5,0,0,-0.00545541 -28432,3500:238:4,8.5,-53.5,0,0,-0.00544935 -28433,3500:239:3,9,-53.5,0,0,-0.00544089 -28434,3500:239:4,9.5,-53.5,0,0,-0.00543968 -28435,3501:130:3,10,-53.5,0,0,-0.00544089 -28436,3501:130:4,10.5,-53.5,0,0,-0.00544211 -28437,3501:131:3,11,-53.5,0,0,-0.00544333 -28438,3501:131:4,11.5,-53.5,0,0,-0.00544573 -28439,3501:132:3,12,-53.5,0,0,-0.00544695 -28440,3501:132:4,12.5,-53.5,0,0,-0.00544695 -28441,3501:133:3,13,-53.5,0,0,-0.00544816 -28442,3501:133:4,13.5,-53.5,0,0,-0.00544816 -28443,3501:134:3,14,-53.5,0,0,-0.00544695 -28444,3501:134:4,14.5,-53.5,0,0,-0.00544816 -28445,3501:235:3,15,-53.5,0,0,-0.00544935 -28446,3501:235:4,15.5,-53.5,0,0,-0.00544935 -28447,3501:236:3,16,-53.5,0,0,-0.00544816 -28448,3501:236:4,16.5,-53.5,0,0,-0.00544695 -28449,3501:237:3,17,-53.5,0,0,-0.00544695 -28450,3501:237:4,17.5,-53.5,0,0,-0.00544816 -28451,3501:238:3,18,-53.5,0,0,-0.00545423 -28452,3501:238:4,18.5,-53.5,0,0,-0.00546148 -28453,3501:239:3,19,-53.5,0,0,-0.00546148 -28454,3501:239:4,19.5,-53.5,0,0,-0.00545907 -28455,3502:130:3,20,-53.5,0,0,-0.00545785 -28456,3502:130:4,20.5,-53.5,0,0,-0.00545907 -28457,3502:131:3,21,-53.5,0,0,-0.00545907 -28458,3502:131:4,21.5,-53.5,0,0,-0.00545785 -28459,3502:132:3,22,-53.5,0,0,-0.00545541 -28460,3502:132:4,22.5,-53.5,0,0,-0.00545423 -28461,3502:133:3,23,-53.5,0,0,-0.00545179 -28462,3502:133:4,23.5,-53.5,0,0,-0.00544695 -28463,3502:134:3,24,-53.5,0,0,-0.00544089 -28464,3502:134:4,24.5,-53.5,0,0,-0.00543968 -28465,3502:235:3,25,-53.5,0,0,-0.00544451 -28466,3502:235:4,25.5,-53.5,0,0,-0.00544816 -28467,3502:236:3,26,-53.5,0,0,-0.00544816 -28468,3502:236:4,26.5,-53.5,0,0,-0.00546633 -28469,3502:237:3,27,-53.5,0,0,-0.00546511 -28470,3502:237:4,27.5,-53.5,0,0,-0.00546633 -28471,3502:238:3,28,-53.5,0,0,-0.00547 -28472,3502:238:4,28.5,-53.5,0,0,-0.00546755 -28473,3502:239:3,29,-53.5,0,0,-0.00546392 -28474,3502:239:4,29.5,-53.5,0,0,-0.0054627 -28475,3503:130:3,30,-53.5,0,0,-0.00547 -28476,3503:130:4,30.5,-53.5,0,0,-0.00547486 -28477,3503:131:3,31,-53.5,0,0,-0.00548337 -28478,3503:131:4,31.5,-53.5,0,0,-0.00551266 -28479,3503:132:3,32,-53.5,0,0,-0.00553724 -28480,3503:132:4,32.5,-53.5,0,0,-0.00555943 -28481,3503:133:3,33,-53.5,0,0,-0.00557672 -28482,3503:133:4,33.5,-53.5,0,0,-0.0056128 -28483,3503:134:3,34,-53.5,0,0,-0.00564405 -28484,3503:134:4,34.5,-53.5,0,0,-0.00566918 -28485,3503:235:3,35,-53.5,0,0,-0.00567171 -28486,3503:235:4,35.5,-53.5,0,0,-0.00565535 -28487,3503:236:3,36,-53.5,0,0,-0.0056403 -28488,3503:236:4,36.5,-53.5,0,0,-0.00561653 -28489,3503:237:3,37,-53.5,0,0,-0.00558914 -28490,3503:237:4,37.5,-53.5,0,0,-0.00559536 -28491,3503:238:3,38,-53.5,0,0,-0.00561029 -28492,3503:238:4,38.5,-53.5,0,0,-0.00563404 -28493,3503:239:3,39,-53.5,0,0,-0.00566288 -28494,3503:239:4,39.5,-53.5,0,0,-0.00568307 -28495,3504:130:3,40,-53.5,0,0,-0.00567926 -28496,3504:130:4,40.5,-53.5,0,0,-0.00566288 -28497,3504:131:3,41,-53.5,0,0,-0.00564153 -28498,3504:131:4,41.5,-53.5,0,0,-0.00561402 -28499,3504:132:3,42,-53.5,0,0,-0.00558168 -28500,3504:132:4,42.5,-53.5,0,0,-0.00555077 -28501,3504:133:3,43,-53.5,0,0,-0.00552861 -28502,3504:133:4,43.5,-53.5,0,0,-0.00551513 -28503,3504:134:3,44,-53.5,0,0,-0.00549677 -28504,3504:134:4,44.5,-53.5,0,0,-0.00548091 -28505,3504:235:3,45,-53.5,0,0,-0.00547727 -28506,3504:235:4,45.5,-53.5,0,0,-0.00547972 -28507,3504:236:3,46,-53.5,0,0,-0.00547972 -28508,3504:236:4,46.5,-53.5,0,0,-0.00547486 -28509,3504:237:3,47,-53.5,0,0,-0.00547241 -28510,3504:237:4,47.5,-53.5,0,0,-0.00556682 -28511,3504:238:3,48,-53.5,0,0,-0.0055941 -28512,3504:238:4,48.5,-53.5,0,0,-0.00556313 -28513,3504:239:3,49,-53.5,0,0,-0.00552494 -28514,3504:239:4,49.5,-53.5,0,0,-0.00550411 -28515,3505:130:3,50,-53.5,0,0,-0.00552617 -28516,3505:130:4,50.5,-53.5,0,0,-0.00556188 -28517,3505:131:3,51,-53.5,0,0,-0.00556313 -28518,3505:131:4,51.5,-53.5,0,0,-0.00556188 -28519,3505:132:3,52,-53.5,0,0,-0.00554832 -28520,3505:132:4,52.5,-53.5,0,0,-0.00553476 -28521,3505:133:3,53,-53.5,0,0,-0.00553108 -28522,3505:133:4,53.5,-53.5,0,0,-0.0055225 -28523,3505:134:3,54,-53.5,0,0,-0.005509 -28524,3505:134:4,54.5,-53.5,0,0,-0.00549677 -28525,3505:235:3,55,-53.5,0,0,-0.00548337 -28526,3505:235:4,55.5,-53.5,0,0,-0.00547486 -28527,3505:236:3,56,-53.5,0,0,-0.00547 -28528,3505:236:4,56.5,-53.5,0,0,-0.00546392 -28529,3505:237:3,57,-53.5,0,0,-0.00546148 -28530,3505:237:4,57.5,-53.5,0,0,-0.00546148 -28531,3505:238:3,58,-53.5,0,0,-0.00545907 -28532,3505:238:4,58.5,-53.5,0,0,-0.00545785 -28533,3505:239:3,59,-53.5,0,0,-0.00547727 -28534,3505:239:4,59.5,-53.5,0,0,-0.00554092 -28535,3506:130:3,60,-53.5,0,0,-0.00558789 -28536,3506:130:4,60.5,-53.5,0,0,-0.005619 -28537,3506:131:3,61,-53.5,0,0,-0.00564654 -28538,3506:131:4,61.5,-53.5,0,0,-0.00568558 -28539,3506:132:3,62,-53.5,0,0,-0.00578243 -28540,3506:132:4,62.5,-53.5,0,0,-0.00578369 -28541,3506:133:3,63,-53.5,0,0,-0.00573506 -28542,3506:133:4,63.5,-53.5,0,0,-0.00571472 -28543,3506:134:3,64,-53.5,0,0,-0.00574398 -28544,3506:134:4,64.5,-53.5,0,0,-0.00582111 -28545,3506:235:3,65,-53.5,0,0,-0.0058172 -28546,3506:235:4,65.5,-53.5,0,0,-0.00575548 -28547,3506:236:3,66,-53.5,0,0,-0.00576188 -28548,3506:236:4,66.5,-53.5,0,0,-0.00587437 -28549,3506:237:3,67,-53.5,0,0,-0.00646506 -28550,3506:237:4,67.5,-53.5,0,0,-0.00687744 -28551,3506:238:3,68,-53.5,0,0,-0.00695279 -28552,3506:238:4,68.5,-53.5,0,0,-0.00672614 -28553,3506:239:3,69,-53.5,0,0,-0.00637514 -28554,3506:239:4,69.5,-53.5,0,0,-0.00668735 -28555,3507:130:3,70,-53.5,0,0,-0.00722085 -28556,3507:130:4,70.5,-53.5,0,0,-0.00728701 -28557,3507:131:3,71,-53.5,0,0,-0.00711715 -28558,3507:131:4,71.5,-53.5,0,0,-0.00682558 -28559,3507:132:3,72,-53.5,0,0,-0.00618801 -28560,3507:132:4,72.5,-53.5,0,0,-0.00580818 -28561,3507:133:4,73.5,-53.5,0,0,-0.00576188 -28562,3507:134:3,74,-53.5,0,0,-0.00583665 -28563,3507:134:4,74.5,-53.5,0,0,-0.00591367 -28564,3507:235:3,75,-53.5,0,0,-0.00596912 -28565,3507:235:4,75.5,-53.5,0,0,-0.00607083 -28566,3507:236:3,76,-53.5,0,0,-0.00619624 -28567,3507:236:4,76.5,-53.5,0,0,-0.00618251 -28568,3507:237:3,77,-53.5,0,0,-0.00611958 -28569,3507:237:4,77.5,-53.5,0,0,-0.00607215 -28570,3507:238:3,78,-53.5,0,0,-0.00602244 -28571,3507:238:4,78.5,-53.5,0,0,-0.00588091 -28572,3507:239:3,79,-53.5,0,0,-0.00578883 -28573,3507:239:4,79.5,-53.5,0,0,-0.00577601 -28574,3508:130:3,80,-53.5,0,0,-0.00577471 -28575,3508:130:4,80.5,-53.5,0,0,-0.00576188 -28576,3508:131:3,81,-53.5,0,0,-0.00573763 -28577,3508:131:4,81.5,-53.5,0,0,-0.00570837 -28578,3508:132:3,82,-53.5,0,0,-0.00567421 -28579,3508:132:4,82.5,-53.5,0,0,-0.00563151 -28580,3508:133:3,83,-53.5,0,0,-0.00560405 -28581,3508:133:4,83.5,-53.5,0,0,-0.00560903 -28582,3508:134:3,84,-53.5,0,0,-0.00562404 -28583,3508:134:4,84.5,-53.5,0,0,-0.00563904 -28584,3508:235:3,85,-53.5,0,0,-0.00568558 -28585,3508:235:4,85.5,-53.5,0,0,-0.00574144 -28586,3508:236:3,86,-53.5,0,0,-0.00572616 -28587,3508:236:4,86.5,-53.5,0,0,-0.00564781 -28588,3508:237:3,87,-53.5,0,0,-0.00567548 -28589,3508:237:4,87.5,-53.5,0,0,-0.00578628 -28590,3508:238:3,88,-53.5,0,0,-0.00572108 -28591,3508:238:4,88.5,-53.5,0,0,-0.00567926 -28592,3508:239:3,89,-53.5,0,0,-0.00572616 -28593,3508:239:4,89.5,-53.5,0,0,-0.00572869 -28594,3509:130:3,90,-53.5,0,0,-0.00579787 -28595,3509:130:4,90.5,-53.5,0,0,-0.00602779 -28596,3509:131:3,91,-53.5,0,0,-0.0062502 -28597,3509:131:4,91.5,-53.5,0,0,-0.0064121 -28598,3509:132:3,92,-53.5,0,0,-0.0066237 -28599,3509:132:4,92.5,-53.5,0,0,-0.00688814 -28600,3509:133:3,93,-53.5,0,0,-0.00698848 -28601,3509:133:4,93.5,-53.5,0,0,-0.00686825 -28602,3509:134:3,94,-53.5,0,0,-0.00652429 -28603,3509:134:4,94.5,-53.5,0,0,-0.00652429 -28604,3509:235:3,95,-53.5,0,0,-0.00661045 -28605,3509:235:4,95.5,-53.5,0,0,-0.00681044 -28606,3509:236:3,96,-53.5,0,0,-0.00699313 -28607,3509:236:4,96.5,-53.5,0,0,-0.00696985 -28608,3509:237:3,97,-53.5,0,0,-0.00693271 -28609,3509:237:4,97.5,-53.5,0,0,-0.00685148 -28610,3509:238:3,98,-53.5,0,0,-0.0066547 -28611,3509:238:4,98.5,-53.5,0,0,-0.00652137 -28612,3509:239:3,99,-53.5,0,0,-0.00655043 -28613,3509:239:4,99.5,-53.5,0,0,-0.00665321 -28614,3510:130:3,100,-53.5,0,0,-0.00680739 -28615,3510:130:4,100.5,-53.5,0,0,-0.00713457 -28616,3510:131:3,101,-53.5,0,0,-0.007521 -28617,3510:131:4,101.5,-53.5,0,0,-0.00787049 -28618,3510:132:3,102,-53.5,0,0,-0.00793736 -28619,3510:132:4,102.5,-53.5,0,0,-0.00761198 -28620,3510:133:3,103,-53.5,0,0,-0.007344 -28621,3510:133:4,103.5,-53.5,0,0,-0.00731955 -28622,3510:134:3,104,-53.5,0,0,-0.00689736 -28623,3510:134:4,104.5,-53.5,0,0,-0.00657234 -28624,3510:235:3,105,-53.5,0,0,-0.00655336 -28625,3510:235:4,105.5,-53.5,0,0,-0.00666655 -28626,3510:236:3,106,-53.5,0,0,-0.00677719 -28627,3510:236:4,106.5,-53.5,0,0,-0.00690654 -28628,3510:237:3,107,-53.5,0,0,-0.00721599 -28629,3510:237:4,107.5,-53.5,0,0,-0.00750931 -28630,3510:238:3,108,-53.5,0,0,-0.00764422 -28631,3510:238:4,108.5,-53.5,0,0,-0.00765617 -28632,3510:239:3,109,-53.5,0,0,-0.00764084 -28633,3510:239:4,109.5,-53.5,0,0,-0.00742289 -28634,3511:130:3,110,-53.5,0,0,-0.00731304 -28635,3511:130:4,110.5,-53.5,0,0,-0.00743944 -28636,3511:131:3,111,-53.5,0,0,-0.00748425 -28637,3511:131:4,111.5,-53.5,0,0,-0.00748095 -28638,3511:132:3,112,-53.5,0,0,-0.00755793 -28639,3511:132:4,112.5,-53.5,0,0,-0.00770748 -28640,3511:133:3,113,-53.5,0,0,-0.00781809 -28641,3511:133:4,113.5,-53.5,0,0,-0.00785996 -28642,3511:134:3,114,-53.5,0,0,-0.00789856 -28643,3511:134:4,114.5,-53.5,0,0,-0.00798524 -28644,3511:235:3,115,-53.5,0,0,-0.00808546 -28645,3511:235:4,115.5,-53.5,0,0,-0.00817782 -28646,3511:236:3,116,-53.5,0,0,-0.00823265 -28647,3511:236:4,116.5,-53.5,0,0,-0.00826574 -28648,3511:237:3,117,-53.5,0,0,-0.00827125 -28649,3511:237:4,117.5,-53.5,0,0,-0.00825468 -28650,3511:238:3,118,-53.5,0,0,-0.00842185 -28651,3511:238:4,118.5,-53.5,0,0,-0.00861549 -28652,3511:239:3,119,-53.5,0,0,-0.00862317 -28653,3511:239:4,119.5,-53.5,0,0,-0.00848594 -28654,3512:130:3,120,-53.5,0,0,-0.00836205 -28655,3512:130:4,120.5,-53.5,0,0,-0.00854472 -28656,3512:131:3,121,-53.5,0,0,-0.00906865 -28657,3512:131:4,121.5,-53.5,0,0,-0.00923598 -28658,3512:132:3,122,-53.5,0,0,-0.00922574 -28659,3512:132:4,122.5,-53.5,0,0,-0.00926078 -28660,3512:133:3,123,-53.5,0,0,-0.00932496 -28661,3512:133:4,123.5,-53.5,0,0,-0.00941065 -28662,3512:134:3,124,-53.5,0,0,-0.00952892 -28663,3512:134:4,124.5,-53.5,0,0,-0.00953106 -28664,3512:235:3,125,-53.5,0,0,-0.00941276 -28665,3512:235:4,125.5,-53.5,0,0,-0.00931875 -28666,3512:236:3,126,-53.5,0,0,-0.00930633 -28667,3512:236:4,126.5,-53.5,0,0,-0.00938341 -28668,3512:237:3,127,-53.5,0,0,-0.00952678 -28669,3512:237:4,127.5,-53.5,0,0,-0.0097569 -28670,3512:238:3,128,-53.5,0,0,-0.0100038 -28671,3512:238:4,128.5,-53.5,0,0,-0.0101568 -28672,3512:239:3,129,-53.5,0,0,-0.0102387 -28673,3512:239:4,129.5,-53.5,0,0,-0.0101545 -28674,3513:130:3,130,-53.5,0,0,-0.0103282 -28675,3513:130:4,130.5,-53.5,0,0,-0.0108628 -28676,3513:131:3,131,-53.5,0,0,-0.0113439 -28677,3513:131:4,131.5,-53.5,0,0,-0.0114151 -28678,3513:132:3,132,-53.5,0,0,-0.0111405 -28679,3513:132:4,132.5,-53.5,0,0,-0.010585 -28680,3513:133:3,133,-53.5,0,0,-0.0102182 -28681,3513:133:4,133.5,-53.5,0,0,-0.0102548 -28682,3513:134:3,134,-53.5,0,0,-0.0103145 -28683,3513:134:4,134.5,-53.5,0,0,-0.0103145 -28684,3513:235:3,135,-53.5,0,0,-0.0105827 -28685,3513:235:4,135.5,-53.5,0,0,-0.0107734 -28686,3513:236:3,136,-53.5,0,0,-0.0106848 -28687,3513:236:4,136.5,-53.5,0,0,-0.0103675 -28688,3513:237:3,137,-53.5,0,0,-0.0100284 -28689,3513:237:4,137.5,-53.5,0,0,-0.00980271 -28690,3513:238:3,138,-53.5,0,0,-0.00981807 -28691,3513:238:4,138.5,-53.5,0,0,-0.0101342 -28692,3513:239:3,139,-53.5,0,0,-0.0104348 -28693,3513:239:4,139.5,-53.5,0,0,-0.0104979 -28694,3514:130:3,140,-53.5,0,0,-0.0103629 -28695,3514:130:4,140.5,-53.5,0,0,-0.0101568 -28696,3514:131:3,141,-53.5,0,0,-0.00993042 -28697,3514:131:4,141.5,-53.5,0,0,-0.0096487 -28698,3514:132:3,142,-53.5,0,0,-0.00936879 -28699,3514:132:4,142.5,-53.5,0,0,-0.00926903 -28700,3514:133:3,143,-53.5,0,0,-0.00943586 -28701,3514:133:4,143.5,-53.5,0,0,-0.0097417 -28702,3514:134:3,144,-53.5,0,0,-0.00989721 -28703,3514:134:4,144.5,-53.5,0,0,-0.0096401 -28704,3514:235:3,145,-53.5,0,0,-0.00930633 -28705,3514:235:4,145.5,-53.5,0,0,-0.00932496 -28706,3514:236:3,146,-53.5,0,0,-0.00960787 -28707,3514:236:4,146.5,-53.5,0,0,-0.00968101 -28708,3514:237:3,147,-53.5,0,0,-0.00939177 -28709,3514:237:4,147.5,-53.5,0,0,-0.00878807 -28710,3514:238:3,148,-53.5,0,0,-0.00812336 -28711,3514:238:4,148.5,-53.5,0,0,-0.00786696 -28712,3514:239:3,149,-53.5,0,0,-0.00794092 -28713,3514:239:4,149.5,-53.5,0,0,-0.00811431 -28714,3515:130:3,150,-53.5,0,0,-0.00825468 -28715,3515:130:4,150.5,-53.5,0,0,-0.0082345 -28716,3515:131:3,151,-53.5,0,0,-0.00756635 -28717,3515:131:4,151.5,-53.5,0,0,-0.00625576 -28718,3515:132:3,152,-53.5,0,0,-0.00599305 -28719,3515:132:4,152.5,-53.5,0,0,-0.00582368 -28720,3515:133:3,153,-53.5,0,0,-0.00575677 -28721,3515:133:4,153.5,-53.5,0,0,-0.00572741 -28722,3515:134:3,154,-53.5,0,0,-0.00569569 -28723,3515:134:4,154.5,-53.5,0,0,-0.00589925 -28724,3515:235:3,155,-53.5,0,0,-0.00713937 -28725,3515:235:4,155.5,-53.5,0,0,-0.00805129 -28726,3515:236:3,156,-53.5,0,0,-0.00863086 -28727,3515:236:4,156.5,-53.5,0,0,-0.00897016 -28728,3515:237:3,157,-53.5,0,0,-0.0081651 -28729,3515:237:4,157.5,-53.5,0,0,-0.00763062 -28730,3515:238:3,158,-53.5,0,0,-0.00750762 -28731,3515:238:4,158.5,-53.5,0,0,-0.00774012 -28732,3515:239:3,159,-53.5,0,0,-0.00804233 -28733,3515:239:4,159.5,-53.5,0,0,-0.00811613 -28734,3516:130:3,160,-53.5,0,0,-0.00786525 -28735,3516:130:4,160.5,-53.5,0,0,-0.00742122 -28736,3516:131:3,161,-53.5,0,0,-0.00701963 -28737,3516:131:4,161.5,-53.5,0,0,-0.00722404 -28738,3516:132:3,162,-53.5,0,0,-0.00796037 -28739,3516:132:4,162.5,-53.5,0,0,-0.00923397 -28740,3516:133:3,163,-53.5,0,0,-0.00947802 -28741,3516:133:4,163.5,-53.5,0,0,-0.00873146 -28742,3516:134:3,164,-53.5,0,0,-0.00846324 -28743,3516:134:4,164.5,-53.5,0,0,-0.00896016 -28744,3516:235:3,165,-53.5,0,0,-0.00970483 -28745,3516:235:4,165.5,-53.5,0,0,-0.0100553 -28746,3516:236:3,166,-53.5,0,0,-0.00950554 -28747,3516:236:4,166.5,-53.5,0,0,-0.0102937 -28748,3516:237:3,167,-53.5,0,0,-0.0118811 -28749,3516:237:4,167.5,-53.5,0,0,-0.0121769 -28750,3516:238:3,168,-53.5,0,0,-0.0117176 -28751,3516:238:4,168.5,-53.5,0,0,-0.0124384 -28752,3516:239:3,169,-53.5,0,0,-0.0139302 -28753,3516:239:4,169.5,-53.5,0,0,-0.0145589 -28754,3517:130:3,170,-53.5,0,0,-0.0151995 -28755,3517:130:4,170.5,-53.5,0,0,-0.0157373 -28756,3517:131:3,171,-53.5,0,0,-0.016138 -28757,3517:131:4,171.5,-53.5,0,0,-0.0170432 -28758,3517:132:3,172,-53.5,0,0,-0.0181588 -28759,3517:132:4,172.5,-53.5,0,0,-0.0188415 -28760,3517:133:3,173,-53.5,0,0,-0.0189776 -28761,3517:133:4,173.5,-53.5,0,0,-0.0186978 -28762,3517:134:3,174,-53.5,0,0,-0.0181547 -28763,3517:134:4,174.5,-53.5,0,0,-0.0173525 -28764,3517:235:3,175,-53.5,0,0,-0.0167735 -28765,3517:235:4,175.5,-53.5,0,0,-0.0163788 -28766,3517:236:3,176,-53.5,0,0,-0.0155303 -28767,3517:236:4,176.5,-53.5,0,0,-0.0148025 -28768,3517:237:3,177,-53.5,0,0,-0.0148291 -28769,3517:237:4,177.5,-53.5,0,0,-0.0160512 -28770,3517:238:3,178,-53.5,0,0,-0.017827 -28771,3517:238:4,178.5,-53.5,0,0,-0.0181956 -28772,3517:239:3,179,-53.5,0,0,-0.0179476 -28773,3517:239:4,179.5,-53.5,0,0,-0.0179032 -28774,3518:130:3,180,-53.5,0,0,-0.0174973 -28775,5518:130:1,-180,-53,0,0,-0.017005 -28776,5517:239:2,-179.5,-53,0,0,-0.0157975 -28777,5517:239:1,-179,-53,0,0,-0.0154158 -28778,5517:238:2,-178.5,-53,0,0,-0.014859 -28779,5517:238:1,-178,-53,0,0,-0.0140777 -28780,5517:237:2,-177.5,-53,0,0,-0.013323 -28781,5517:237:1,-177,-53,0,0,-0.0126009 -28782,5517:236:2,-176.5,-53,0,0,-0.011937 -28783,5517:236:1,-176,-53,0,0,-0.011577 -28784,5517:235:2,-175.5,-53,0,0,-0.0113338 -28785,5517:235:1,-175,-53,0,0,-0.0110537 -28786,5517:134:2,-174.5,-53,0,0,-0.0108895 -28787,5517:134:1,-174,-53,0,0,-0.010812 -28788,5517:133:2,-173.5,-53,0,0,-0.0107278 -28789,5517:133:1,-173,-53,0,0,-0.010585 -28790,5517:132:2,-172.5,-53,0,0,-0.0104582 -28791,5517:132:1,-172,-53,0,0,-0.010393 -28792,5517:131:2,-171.5,-53,0,0,-0.0103306 -28793,5517:131:1,-171,-53,0,0,-0.010175 -28794,5517:130:2,-170.5,-53,0,0,-0.0099238 -28795,5517:130:1,-170,-53,0,0,-0.00963793 -28796,5516:239:2,-169.5,-53,0,0,-0.00941693 -28797,5516:239:1,-169,-53,0,0,-0.0093458 -28798,5516:238:2,-168.5,-53,0,0,-0.00940438 -28799,5516:238:1,-168,-53,0,0,-0.00945057 -28800,5516:237:2,-167.5,-53,0,0,-0.00938341 -28801,5516:237:1,-167,-53,0,0,-0.00931253 -28802,5516:236:2,-166.5,-53,0,0,-0.00940642 -28803,5516:236:1,-166,-53,0,0,-0.00954808 -28804,5516:235:2,-165.5,-53,0,0,-0.00971997 -28805,5516:235:1,-165,-53,0,0,-0.00993489 -28806,5516:134:2,-164.5,-53,0,0,-0.0101886 -28807,5516:134:1,-164,-53,0,0,-0.0103675 -28808,5516:133:2,-163.5,-53,0,0,-0.0103652 -28809,5516:133:1,-163,-53,0,0,-0.0102113 -28810,5516:132:2,-162.5,-53,0,0,-0.0100508 -28811,5516:132:1,-162,-53,0,0,-0.0101138 -28812,5516:131:2,-161.5,-53,0,0,-0.0103675 -28813,5516:131:1,-161,-53,0,0,-0.0105144 -28814,5516:130:2,-160.5,-53,0,0,-0.0101636 -28815,5516:130:1,-160,-53,0,0,-0.00955874 -28816,5515:239:2,-159.5,-53,0,0,-0.00908285 -28817,5515:239:1,-159,-53,0,0,-0.00885491 -28818,5515:238:2,-158.5,-53,0,0,-0.00890638 -28819,5515:238:1,-158,-53,0,0,-0.00914175 -28820,5515:237:2,-157.5,-53,0,0,-0.00976129 -28821,5515:237:1,-157,-53,0,0,-0.0106467 -28822,5515:236:2,-156.5,-53,0,0,-0.0112004 -28823,5515:236:1,-156,-53,0,0,-0.0108047 -28824,5515:235:2,-155.5,-53,0,0,-0.00974389 -28825,5515:235:1,-155,-53,0,0,-0.00896614 -28826,5515:134:2,-154.5,-53,0,0,-0.00836205 -28827,5515:134:1,-154,-53,0,0,-0.00815784 -28828,5515:133:2,-153.5,-53,0,0,-0.00807645 -28829,5515:133:1,-153,-53,0,0,-0.00799768 -28830,5515:132:2,-152.5,-53,0,0,-0.00794092 -28831,5515:132:1,-152,-53,0,0,-0.00841435 -28832,5515:131:2,-151.5,-53,0,0,-0.00944639 -28833,5515:131:1,-151,-53,0,0,-0.00987957 -28834,5515:130:2,-150.5,-53,0,0,-0.00986854 -28835,5515:130:1,-150,-53,0,0,-0.010071 -28836,5514:239:2,-149.5,-53,0,0,-0.0101251 -28837,5514:239:1,-149,-53,0,0,-0.00987298 -28838,5514:238:2,-148.5,-53,0,0,-0.0101319 -28839,5514:238:1,-148,-53,0,0,-0.0107662 -28840,5514:237:2,-147.5,-53,0,0,-0.0121335 -28841,5514:237:1,-147,-53,0,0,-0.0127655 -28842,5514:236:2,-146.5,-53,0,0,-0.0129091 -28843,5514:236:1,-146,-53,0,0,-0.0141124 -28844,5514:235:2,-145.5,-53,0,0,-0.0149727 -28845,5514:235:1,-145,-53,0,0,-0.0159973 -28846,5514:134:2,-144.5,-53,0,0,-0.017228 -28847,5514:134:1,-144,-53,0,0,-0.0186138 -28848,5514:133:2,-143.5,-53,0,0,-0.0195635 -28849,5514:133:1,-143,-53,0,0,-0.0209228 -28850,5514:132:2,-142.5,-53,0,0,-0.0231763 -28851,5514:132:1,-142,-53,0,0,-0.0229832 -28852,5514:131:2,-141.5,-53,0,0,-0.0216284 -28853,5514:131:1,-141,-53,0,0,-0.0224493 -28854,5514:130:2,-140.5,-53,0,0,-0.023445 -28855,5514:130:1,-140,-53,0,0,-0.0233816 -28856,5513:239:2,-139.5,-53,0,0,-0.0220823 -28857,5513:239:1,-139,-53,0,0,-0.0198745 -28858,5513:238:2,-138.5,-53,0,0,-0.0184553 -28859,5513:238:1,-138,-53,0,0,-0.0170012 -28860,5513:237:2,-137.5,-53,0,0,-0.0153399 -28861,5513:237:1,-137,-53,0,0,-0.0144679 -28862,5513:236:2,-136.5,-53,0,0,-0.0142427 -28863,5513:236:1,-136,-53,0,0,-0.0138246 -28864,5513:235:2,-135.5,-53,0,0,-0.0136951 -28865,5513:235:1,-135,-53,0,0,-0.0129207 -28866,5513:134:2,-134.5,-53,0,0,-0.0124747 -28867,5513:134:1,-134,-53,0,0,-0.0123802 -28868,5513:133:2,-133.5,-53,0,0,-0.0124023 -28869,5513:133:1,-133,-53,0,0,-0.0125362 -28870,5513:132:2,-132.5,-53,0,0,-0.0127712 -28871,5513:132:1,-132,-53,0,0,-0.013225 -28872,5513:131:2,-131.5,-53,0,0,-0.0137936 -28873,5513:131:1,-131,-53,0,0,-0.0139771 -28874,5513:130:2,-130.5,-53,0,0,-0.0139614 -28875,5513:130:1,-130,-53,0,0,-0.0136248 -28876,5512:239:2,-129.5,-53,0,0,-0.01311 -28877,5512:239:1,-129,-53,0,0,-0.0126801 -28878,5512:238:2,-128.5,-53,0,0,-0.0125306 -28879,5512:238:1,-128,-53,0,0,-0.0127056 -28880,5512:237:2,-127.5,-53,0,0,-0.0131453 -28881,5512:237:1,-127,-53,0,0,-0.0136126 -28882,5512:236:2,-126.5,-53,0,0,-0.0140619 -28883,5512:236:1,-126,-53,0,0,-0.0145003 -28884,5512:235:2,-125.5,-53,0,0,-0.0149727 -28885,5512:235:1,-125,-53,0,0,-0.0152199 -28886,5512:134:2,-124.5,-53,0,0,-0.0153812 -28887,5512:134:1,-124,-53,0,0,-0.0159292 -28888,5512:133:2,-123.5,-53,0,0,-0.0164489 -28889,5512:133:1,-123,-53,0,0,-0.0165639 -28890,5512:132:2,-122.5,-53,0,0,-0.0161633 -28891,5512:132:1,-122,-53,0,0,-0.0154608 -28892,5512:131:2,-121.5,-53,0,0,-0.0151178 -28893,5512:131:1,-121,-53,0,0,-0.0158649 -28894,5512:130:2,-120.5,-53,0,0,-0.0171008 -28895,5512:130:1,-120,-53,0,0,-0.0170509 -28896,5511:239:2,-119.5,-53,0,0,-0.0162069 -28897,5511:239:1,-119,-53,0,0,-0.0153812 -28898,5511:238:2,-118.5,-53,0,0,-0.0153881 -28899,5511:238:1,-118,-53,0,0,-0.016549 -28900,5511:237:2,-117.5,-53,0,0,-0.0169668 -28901,5511:237:1,-117,-53,0,0,-0.0169401 -28902,5511:236:2,-116.5,-53,0,0,-0.0169668 -28903,5511:236:1,-116,-53,0,0,-0.0170816 -28904,5511:235:2,-115.5,-53,0,0,-0.0171431 -28905,5511:235:1,-115,-53,0,0,-0.017411 -28906,5511:134:2,-114.5,-53,0,0,-0.0175485 -28907,5511:134:1,-114,-53,0,0,-0.0173525 -28908,5511:133:2,-113.5,-53,0,0,-0.0166759 -28909,5511:133:1,-113,-53,0,0,-0.0151518 -28910,5511:132:2,-112.5,-53,0,0,-0.0153021 -28911,5511:132:1,-112,-53,0,0,-0.0164379 -28912,5511:131:2,-111.5,-53,0,0,-0.0169668 -28913,5511:131:1,-111,-53,0,0,-0.0174973 -28914,5511:130:2,-110.5,-53,0,0,-0.017719 -28915,5511:130:1,-110,-53,0,0,-0.0174934 -28916,5510:239:2,-109.5,-53,0,0,-0.0169973 -28917,5510:239:1,-109,-53,0,0,-0.016258 -28918,5510:238:2,-108.5,-53,0,0,-0.0157161 -28919,5510:238:1,-108,-53,0,0,-0.0157762 -28920,5510:237:2,-107.5,-53,0,0,-0.016138 -28921,5510:237:1,-107,-53,0,0,-0.0154816 -28922,5510:236:2,-106.5,-53,0,0,-0.0145786 -28923,5510:236:1,-106,-53,0,0,-0.0141694 -28924,5510:235:2,-105.5,-53,0,0,-0.0143516 -28925,5510:235:1,-105,-53,0,0,-0.0145199 -28926,5510:134:2,-104.5,-53,0,0,-0.0147495 -28927,5510:134:1,-104,-53,0,0,-0.0149661 -28928,5510:133:2,-103.5,-53,0,0,-0.0151552 -28929,5510:133:1,-103,-53,0,0,-0.0152849 -28930,5510:132:2,-102.5,-53,0,0,-0.0153329 -28931,5510:132:1,-102,-53,0,0,-0.0152506 -28932,5510:131:2,-101.5,-53,0,0,-0.0150873 -28933,5510:131:1,-101,-53,0,0,-0.0149929 -28934,5510:130:2,-100.5,-53,0,0,-0.0149425 -28935,5510:130:1,-100,-53,0,0,-0.0157443 -28936,5509:239:2,-99.5,-53,0,0,-0.0167697 -28937,5509:239:1,-99,-53,0,0,-0.0179718 -28938,5509:238:2,-98.5,-53,0,0,-0.0188415 -28939,5509:238:1,-98,-53,0,0,-0.0188033 -28940,5509:237:2,-97.5,-53,0,0,-0.0179556 -28941,5509:237:1,-97,-53,0,0,-0.0169287 -28942,5509:236:2,-96.5,-53,0,0,-0.0164452 -28943,5509:236:1,-96,-53,0,0,-0.0168414 -28944,5509:235:2,-95.5,-53,0,0,-0.0170701 -28945,5509:235:1,-95,-53,0,0,-0.0171469 -28946,5509:134:2,-94.5,-53,0,0,-0.0168604 -28947,5509:134:1,-94,-53,0,0,-0.0163348 -28948,5509:133:2,-93.5,-53,0,0,-0.0158329 -28949,5509:133:1,-93,-53,0,0,-0.0152301 -28950,5509:132:2,-92.5,-53,0,0,-0.0145851 -28951,5509:132:1,-92,-53,0,0,-0.0149627 -28952,5509:131:2,-91.5,-53,0,0,-0.0153055 -28953,5509:131:1,-91,-53,0,0,-0.014909 -28954,5509:130:2,-90.5,-53,0,0,-0.0150333 -28955,5509:130:1,-90,-53,0,0,-0.0155932 -28956,5508:239:2,-89.5,-53,0,0,-0.0165675 -28957,5508:239:1,-89,-53,0,0,-0.0174542 -28958,5508:238:2,-88.5,-53,0,0,-0.017839 -28959,5508:238:1,-88,-53,0,0,-0.017723 -28960,5508:237:2,-87.5,-53,0,0,-0.0174777 -28961,5508:237:1,-87,-53,0,0,-0.017329 -28962,5508:236:2,-86.5,-53,0,0,-0.0172435 -28963,5508:236:1,-86,-53,0,0,-0.0171817 -28964,5508:235:2,-85.5,-53,0,0,-0.0171045 -28965,5508:235:1,-85,-53,0,0,-0.0170585 -28966,5508:134:2,-84.5,-53,0,0,-0.0167021 -28967,5508:134:1,-84,-53,0,0,-0.015922 -28968,5508:133:2,-83.5,-53,0,0,-0.0157231 -28969,5508:133:1,-83,-53,0,0,-0.0162106 -28970,5508:132:2,-82.5,-53,0,0,-0.016423 -28971,5508:132:1,-82,-53,0,0,-0.0167471 -28972,5508:131:2,-81.5,-53,0,0,-0.0172319 -28973,5508:131:1,-81,-53,0,0,-0.0176118 -28974,5508:130:2,-80.5,-53,0,0,-0.0176554 -28975,5508:130:1,-80,-53,0,0,-0.017329 -28976,5507:239:2,-79.5,-53,0,0,-0.0168226 -28977,5507:239:1,-79,-53,0,0,-0.01712 -28978,5507:238:2,-78.5,-53,0,0,-0.0174071 -28979,5507:238:1,-78,-53,0,0,-0.0173135 -28980,5507:237:2,-77.5,-53,0,0,-0.0168642 -28981,5507:237:1,-77,-53,0,0,-0.0162325 -28982,5507:236:2,-76.5,-53,0,0,-0.0159757 -28983,5507:236:1,-76,-53,0,0,-0.016236 -28984,5507:235:2,-75.5,-53,0,0,-0.0167396 -28985,5507:235:1,-75,-53,0,0,-0.0173485 -28986,5507:134:2,-74.5,-53,0,0,-0.0178029 -28987,5507:134:1,-74,-53,0,0,-0.0177469 -28988,5507:133:2,-73.5,-53,0,0,-0.0173993 -28989,5507:133:1,-73,-53,0,0,-0.0168452 -28990,5507:132:2,-72.5,-53,0,0,-0.0159113 -28991,5507:132:1,-72,-53,0,0,-0.0155967 -28992,5507:131:2,-71.5,-53,0,0,-0.0154573 -28993,5507:131:1,-71,-53,0,0,-0.0157373 -28994,5507:130:2,-70.5,-53,0,0,-0.0159113 -28995,5507:130:1,-70,-53,0,0,-0.0164304 -28996,5506:239:2,-69.5,-53,0,0,-0.0162726 -28997,5506:239:1,-69,-53,0,0,-0.015897 -28998,5506:238:2,-68.5,-53,0,0,-0.0152506 -28999,5506:238:1,-68,-53,0,0,-0.0140242 -29000,5506:237:2,-67.5,-53,0,0,-0.0125643 -29001,5506:237:1,-67,-53,0,0,-0.0118731 -29002,5506:236:2,-66.5,-53,0,0,-0.0115202 -29003,5506:236:1,-66,-53,0,0,-0.0116705 -29004,5506:235:2,-65.5,-53,0,0,-0.0117648 -29005,5506:235:1,-65,-53,0,0,-0.0116081 -29006,5506:134:2,-64.5,-53,0,0,-0.0101115 -29007,5506:134:1,-64,-53,0,0,-0.00898018 -29008,5506:133:2,-63.5,-53,0,0,-0.00758658 -29009,5506:133:1,-63,-53,0,0,-0.00755459 -29010,5506:132:2,-62.5,-53,0,0,-0.00752437 -29011,5506:132:1,-62,-53,0,0,-0.0074643 -29012,5506:131:2,-61.5,-53,0,0,-0.00713302 -29013,5506:131:1,-61,-53,0,0,-0.00672016 -29014,5506:130:2,-60.5,-53,0,0,-0.00691424 -29015,5506:130:1,-60,-53,0,0,-0.00726596 -29016,5505:239:2,-59.5,-53,0,0,-0.00745766 -29017,5505:239:1,-59,-53,0,0,-0.00753609 -29018,5505:238:2,-58.5,-53,0,0,-0.00754951 -29019,5505:238:1,-58,-53,0,0,-0.00757813 -29020,5505:237:2,-57.5,-53,0,0,-0.00742455 -29021,5505:237:1,-57,-53,0,0,-0.00667098 -29022,5505:236:2,-56.5,-53,0,0,-0.00628644 -29023,5505:236:1,-56,-53,0,0,-0.00614413 -29024,5505:235:2,-55.5,-53,0,0,-0.00609109 -29025,5505:235:1,-55,-53,0,0,-0.00598509 -29026,5505:134:2,-54.5,-53,0,0,-0.00594661 -29027,5505:134:1,-54,-53,0,0,-0.00581981 -29028,5505:133:2,-53.5,-53,0,0,-0.00581074 -29029,5505:133:1,-53,-53,0,0,-0.00587828 -29030,5505:132:2,-52.5,-53,0,0,-0.005716 -29031,5505:132:1,-52,-53,0,0,-0.00557302 -29032,5505:131:2,-51.5,-53,0,0,-0.00553232 -29033,5505:131:1,-51,-53,0,0,-0.00550411 -29034,5505:130:2,-50.5,-53,0,0,-0.00553476 -29035,5505:130:1,-50,-53,0,0,-0.00556807 -29036,5504:239:2,-49.5,-53,0,0,-0.00554953 -29037,5504:239:1,-49,-53,0,0,-0.00549923 -29038,5504:238:2,-48.5,-53,0,0,-0.00548091 -29039,5504:238:1,-48,-53,0,0,-0.00545423 -29040,5504:237:2,-47.5,-53,0,0,-0.00545541 -29041,5504:237:1,-47,-53,0,0,-0.0054627 -29042,5504:236:2,-46.5,-53,0,0,-0.00546392 -29043,5504:236:1,-46,-53,0,0,-0.00546633 -29044,5504:235:2,-45.5,-53,0,0,-0.00546878 -29045,5504:235:1,-45,-53,0,0,-0.00546878 -29046,5504:134:2,-44.5,-53,0,0,-0.00546392 -29047,5504:134:1,-44,-53,0,0,-0.00545663 -29048,5504:133:2,-43.5,-53,0,0,-0.00545663 -29049,5504:133:1,-43,-53,0,0,-0.00545785 -29050,5504:132:2,-42.5,-53,0,0,-0.00546511 -29051,5504:132:1,-42,-53,0,0,-0.00546633 -29052,5504:131:2,-41.5,-53,0,0,-0.00546511 -29053,5504:131:1,-41,-53,0,0,-0.00546511 -29054,5504:130:2,-40.5,-53,0,0,-0.00546392 -29055,5504:130:1,-40,-53,0,0,-0.00546148 -29056,5503:239:2,-39.5,-53,0,0,-0.00546148 -29057,5503:239:1,-39,-53,0,0,-0.00547119 -29058,5503:238:2,-38.5,-53,0,0,-0.00551147 -29059,5503:238:1,-38,-53,0,0,-0.00548824 -29060,5503:237:2,-37.5,-53,0,0,-0.00546755 -29061,5503:237:1,-37,-53,0,0,-0.00546026 -29062,5503:236:2,-36.5,-53,0,0,-0.00545663 -29063,5503:236:1,-36,-53,0,0,-0.00545663 -29064,5503:235:2,-35.5,-53,0,0,-0.00545663 -29065,5503:235:1,-35,-53,0,0,-0.00545785 -29066,5503:134:2,-34.5,-53,0,0,-0.00545907 -29067,5503:134:1,-34,-53,0,0,-0.00545907 -29068,5503:133:2,-33.5,-53,0,0,-0.00545907 -29069,5503:133:1,-33,-53,0,0,-0.00545907 -29070,5503:132:2,-32.5,-53,0,0,-0.00545907 -29071,5503:132:1,-32,-53,0,0,-0.00545907 -29072,5503:131:2,-31.5,-53,0,0,-0.00545907 -29073,5503:131:1,-31,-53,0,0,-0.00545907 -29074,5503:130:2,-30.5,-53,0,0,-0.00546026 -29075,5503:130:1,-30,-53,0,0,-0.00546026 -29076,5502:239:2,-29.5,-53,0,0,-0.00545907 -29077,5502:239:1,-29,-53,0,0,-0.00545907 -29078,5502:238:2,-28.5,-53,0,0,-0.00545785 -29079,5502:238:1,-28,-53,0,0,-0.00545785 -29080,5502:237:2,-27.5,-53,0,0,-0.00545785 -29081,5502:237:1,-27,-53,0,0,-0.00545785 -29082,5502:236:2,-26.5,-53,0,0,-0.00545907 -29083,5502:236:1,-26,-53,0,0,-0.00546148 -29084,5502:235:2,-25.5,-53,0,0,-0.00547 -29085,5502:235:1,-25,-53,0,0,-0.00547486 -29086,5502:134:2,-24.5,-53,0,0,-0.00546392 -29087,5502:134:1,-24,-53,0,0,-0.00546148 -29088,5502:133:2,-23.5,-53,0,0,-0.0054627 -29089,5502:133:1,-23,-53,0,0,-0.00546511 -29090,5502:132:2,-22.5,-53,0,0,-0.00546511 -29091,5502:132:1,-22,-53,0,0,-0.00547119 -29092,5502:131:2,-21.5,-53,0,0,-0.00547486 -29093,5502:131:1,-21,-53,0,0,-0.00547 -29094,5502:130:2,-20.5,-53,0,0,-0.00547119 -29095,5502:130:1,-20,-53,0,0,-0.00548214 -29096,5501:239:2,-19.5,-53,0,0,-0.00548947 -29097,5501:239:1,-19,-53,0,0,-0.00549069 -29098,5501:238:2,-18.5,-53,0,0,-0.00549923 -29099,5501:238:1,-18,-53,0,0,-0.00549677 -29100,5501:237:2,-17.5,-53,0,0,-0.00547605 -29101,5501:237:1,-17,-53,0,0,-0.00546148 -29102,5501:236:2,-16.5,-53,0,0,-0.00545423 -29103,5501:236:1,-16,-53,0,0,-0.00545423 -29104,5501:235:2,-15.5,-53,0,0,-0.00545541 -29105,5501:235:1,-15,-53,0,0,-0.00545423 -29106,5501:134:2,-14.5,-53,0,0,-0.005453 -29107,5501:134:1,-14,-53,0,0,-0.00545179 -29108,5501:133:2,-13.5,-53,0,0,-0.00545057 -29109,5501:133:1,-13,-53,0,0,-0.00544935 -29110,5501:132:2,-12.5,-53,0,0,-0.00544935 -29111,5501:132:1,-12,-53,0,0,-0.00545423 -29112,5501:131:2,-11.5,-53,0,0,-0.00545907 -29113,5501:131:1,-11,-53,0,0,-0.00545907 -29114,5501:130:2,-10.5,-53,0,0,-0.00545541 -29115,5501:130:1,-10,-53,0,0,-0.00545179 -29116,5500:239:2,-9.5,-53,0,0,-0.00544935 -29117,5500:239:1,-9,-53,0,0,-0.00544816 -29118,5500:238:2,-8.5,-53,0,0,-0.00545057 -29119,5500:238:1,-8,-53,0,0,-0.005453 -29120,5500:237:2,-7.5,-53,0,0,-0.00545423 -29121,5500:237:1,-7,-53,0,0,-0.00545785 -29122,5500:236:2,-6.5,-53,0,0,-0.00545541 -29123,5500:236:1,-6,-53,0,0,-0.00545179 -29124,5500:235:2,-5.5,-53,0,0,-0.00544935 -29125,5500:235:1,-5,-53,0,0,-0.00544816 -29126,5500:134:2,-4.5,-53,0,0,-0.00544816 -29127,5500:134:1,-4,-53,0,0,-0.00544695 -29128,5500:133:2,-3.5,-53,0,0,-0.00544695 -29129,5500:133:1,-3,-53,0,0,-0.00544451 -29130,5500:132:2,-2.5,-53,0,0,-0.00544211 -29131,5500:132:1,-2,-53,0,0,-0.00544089 -29132,5500:131:2,-1.5,-53,0,0,-0.00543968 -29133,5500:131:1,-1,-53,0,0,-0.00543968 -29134,5500:130:2,-0.5,-53,0,0,-0.00544451 -29135,3500:130:2,0,-53,0,0,-0.00545179 -29136,3500:130:2,0.5,-53,0,0,-0.00545663 -29137,3500:131:1,1,-53,0,0,-0.00546878 -29138,3500:131:2,1.5,-53,0,0,-0.00548459 -29139,3500:132:1,2,-53,0,0,-0.005498 -29140,3500:132:2,2.5,-53,0,0,-0.00549923 -29141,3500:133:1,3,-53,0,0,-0.00550534 -29142,3500:133:2,3.5,-53,0,0,-0.0055188 -29143,3500:134:1,4,-53,0,0,-0.00553232 -29144,3500:134:2,4.5,-53,0,0,-0.00554216 -29145,3500:235:1,5,-53,0,0,-0.0055434 -29146,3500:235:2,5.5,-53,0,0,-0.00553848 -29147,3500:236:1,6,-53,0,0,-0.00552861 -29148,3500:236:2,6.5,-53,0,0,-0.00551637 -29149,3500:237:1,7,-53,0,0,-0.00550165 -29150,3500:237:2,7.5,-53,0,0,-0.00548459 -29151,3500:238:1,8,-53,0,0,-0.00547364 -29152,3500:238:2,8.5,-53,0,0,-0.00546511 -29153,3500:239:1,9,-53,0,0,-0.00545785 -29154,3500:239:2,9.5,-53,0,0,-0.00545423 -29155,3501:130:1,10,-53,0,0,-0.00544573 -29156,3501:130:2,10.5,-53,0,0,-0.00544089 -29157,3501:131:1,11,-53,0,0,-0.00544211 -29158,3501:131:2,11.5,-53,0,0,-0.00544451 -29159,3501:132:1,12,-53,0,0,-0.00544573 -29160,3501:132:2,12.5,-53,0,0,-0.00544573 -29161,3501:133:1,13,-53,0,0,-0.00544573 -29162,3501:133:2,13.5,-53,0,0,-0.00544573 -29163,3501:134:1,14,-53,0,0,-0.00544573 -29164,3501:134:2,14.5,-53,0,0,-0.00544695 -29165,3501:235:1,15,-53,0,0,-0.00544816 -29166,3501:235:2,15.5,-53,0,0,-0.00544935 -29167,3501:236:1,16,-53,0,0,-0.00544816 -29168,3501:236:2,16.5,-53,0,0,-0.00544816 -29169,3501:237:1,17,-53,0,0,-0.00544935 -29170,3501:237:2,17.5,-53,0,0,-0.00545057 -29171,3501:238:1,18,-53,0,0,-0.005453 -29172,3501:238:2,18.5,-53,0,0,-0.00545785 -29173,3501:239:1,19,-53,0,0,-0.00545663 -29174,3501:239:2,19.5,-53,0,0,-0.00545541 -29175,3502:130:1,20,-53,0,0,-0.00545541 -29176,3502:130:2,20.5,-53,0,0,-0.00545541 -29177,3502:131:1,21,-53,0,0,-0.00545541 -29178,3502:131:2,21.5,-53,0,0,-0.00545541 -29179,3502:132:1,22,-53,0,0,-0.00545541 -29180,3502:132:2,22.5,-53,0,0,-0.00545541 -29181,3502:133:1,23,-53,0,0,-0.00545423 -29182,3502:133:2,23.5,-53,0,0,-0.00545423 -29183,3502:134:1,24,-53,0,0,-0.005453 -29184,3502:134:2,24.5,-53,0,0,-0.00545423 -29185,3502:235:1,25,-53,0,0,-0.00546026 -29186,3502:235:2,25.5,-53,0,0,-0.00545907 -29187,3502:236:1,26,-53,0,0,-0.00545423 -29188,3502:236:2,26.5,-53,0,0,-0.00545057 -29189,3502:237:1,27,-53,0,0,-0.00547119 -29190,3502:237:2,27.5,-53,0,0,-0.00547605 -29191,3502:238:1,28,-53,0,0,-0.00547605 -29192,3502:238:2,28.5,-53,0,0,-0.00547364 -29193,3502:239:1,29,-53,0,0,-0.00546878 -29194,3502:239:2,29.5,-53,0,0,-0.00546755 -29195,3503:130:1,30,-53,0,0,-0.00546633 -29196,3503:130:2,30.5,-53,0,0,-0.00546755 -29197,3503:131:1,31,-53,0,0,-0.00547119 -29198,3503:131:2,31.5,-53,0,0,-0.00547364 -29199,3503:132:1,32,-53,0,0,-0.00547605 -29200,3503:132:2,32.5,-53,0,0,-0.00548701 -29201,3503:133:1,33,-53,0,0,-0.005536 -29202,3503:133:2,33.5,-53,0,0,-0.00554953 -29203,3503:134:1,34,-53,0,0,-0.00553108 -29204,3503:134:2,34.5,-53,0,0,-0.0055237 -29205,3503:235:1,35,-53,0,0,-0.00557797 -29206,3503:235:2,35.5,-53,0,0,-0.00564405 -29207,3503:236:1,36,-53,0,0,-0.00565658 -29208,3503:236:2,36.5,-53,0,0,-0.00565282 -29209,3503:237:1,37,-53,0,0,-0.00563652 -29210,3503:237:2,37.5,-53,0,0,-0.00561154 -29211,3503:238:1,38,-53,0,0,-0.00561527 -29212,3503:238:2,38.5,-53,0,0,-0.00563652 -29213,3503:239:1,39,-53,0,0,-0.00565911 -29214,3503:239:2,39.5,-53,0,0,-0.00568307 -29215,3504:130:1,40,-53,0,0,-0.00569951 -29216,3504:130:2,40.5,-53,0,0,-0.00570075 -29217,3504:131:1,41,-53,0,0,-0.00568685 -29218,3504:131:2,41.5,-53,0,0,-0.0056843 -29219,3504:132:1,42,-53,0,0,-0.00568307 -29220,3504:132:2,42.5,-53,0,0,-0.00565911 -29221,3504:133:1,43,-53,0,0,-0.0056128 -29222,3504:133:2,43.5,-53,0,0,-0.00557302 -29223,3504:134:1,44,-53,0,0,-0.0055446 -29224,3504:134:2,44.5,-53,0,0,-0.00552617 -29225,3504:235:1,45,-53,0,0,-0.00551756 -29226,3504:235:2,45.5,-53,0,0,-0.00552003 -29227,3504:236:1,46,-53,0,0,-0.0055237 -29228,3504:236:2,46.5,-53,0,0,-0.00551147 -29229,3504:237:1,47,-53,0,0,-0.00548091 -29230,3504:237:2,47.5,-53,0,0,-0.00549189 -29231,3504:238:1,48,-53,0,0,-0.00553476 -29232,3504:238:2,48.5,-53,0,0,-0.00551266 -29233,3504:239:1,49,-53,0,0,-0.00546026 -29234,3504:239:2,49.5,-53,0,0,-0.00546026 -29235,3505:130:1,50,-53,0,0,-0.00546026 -29236,3505:130:2,50.5,-53,0,0,-0.00547727 -29237,3505:131:1,51,-53,0,0,-0.00554216 -29238,3505:131:2,51.5,-53,0,0,-0.00555694 -29239,3505:132:1,52,-53,0,0,-0.00555077 -29240,3505:132:2,52.5,-53,0,0,-0.00553968 -29241,3505:133:1,53,-53,0,0,-0.00553352 -29242,3505:133:2,53.5,-53,0,0,-0.00552494 -29243,3505:134:1,54,-53,0,0,-0.00551513 -29244,3505:134:2,54.5,-53,0,0,-0.00550411 -29245,3505:235:1,55,-53,0,0,-0.00549189 -29246,3505:235:2,55.5,-53,0,0,-0.00548337 -29247,3505:236:1,56,-53,0,0,-0.00548091 -29248,3505:236:2,56.5,-53,0,0,-0.00547486 -29249,3505:237:1,57,-53,0,0,-0.00547119 -29250,3505:237:2,57.5,-53,0,0,-0.00547241 -29251,3505:238:1,58,-53,0,0,-0.00547364 -29252,3505:238:2,58.5,-53,0,0,-0.00547 -29253,3505:239:1,59,-53,0,0,-0.00546755 -29254,3505:239:2,59.5,-53,0,0,-0.00553352 -29255,3506:130:1,60,-53,0,0,-0.00559661 -29256,3506:130:2,60.5,-53,0,0,-0.00563025 -29257,3506:131:1,61,-53,0,0,-0.00565033 -29258,3506:131:2,61.5,-53,0,0,-0.00567421 -29259,3506:132:1,62,-53,0,0,-0.00578883 -29260,3506:132:2,62.5,-53,0,0,-0.00590974 -29261,3506:133:1,63,-53,0,0,-0.00596119 -29262,3506:133:2,63.5,-53,0,0,-0.00602244 -29263,3506:134:1,64,-53,0,0,-0.00602914 -29264,3506:134:2,64.5,-53,0,0,-0.00599305 -29265,3506:235:1,65,-53,0,0,-0.0059771 -29266,3506:235:2,65.5,-53,0,0,-0.00591892 -29267,3506:236:1,66,-53,0,0,-0.00606408 -29268,3506:236:2,66.5,-53,0,0,-0.00633697 -29269,3506:237:1,67,-53,0,0,-0.00677416 -29270,3506:237:2,67.5,-53,0,0,-0.00713777 -29271,3506:238:1,68,-53,0,0,-0.0072369 -29272,3506:238:2,68.5,-53,0,0,-0.00726596 -29273,3506:239:1,69,-53,0,0,-0.00711082 -29274,3506:239:2,69.5,-53,0,0,-0.00715524 -29275,3507:130:1,70,-53,0,0,-0.00731955 -29276,3507:130:2,70.5,-53,0,0,-0.00745102 -29277,3507:131:1,71,-53,0,0,-0.00737675 -29278,3507:131:2,71.5,-53,0,0,-0.00711556 -29279,3507:132:1,72,-53,0,0,-0.00683926 -29280,3507:132:2,72.5,-53,0,0,-0.00650833 -29281,3507:133:2,73.5,-53,0,0,-0.00643922 -29282,3507:134:1,74,-53,0,0,-0.00649386 -29283,3507:134:2,74.5,-53,0,0,-0.00653591 -29284,3507:235:1,75,-53,0,0,-0.00663549 -29285,3507:235:2,75.5,-53,0,0,-0.00670521 -29286,3507:236:1,76,-53,0,0,-0.00667098 -29287,3507:236:2,76.5,-53,0,0,-0.00655772 -29288,3507:237:1,77,-53,0,0,-0.00641067 -29289,3507:237:2,77.5,-53,0,0,-0.00626413 -29290,3507:238:1,78,-53,0,0,-0.00609518 -29291,3507:238:2,78.5,-53,0,0,-0.00600775 -29292,3507:239:1,79,-53,0,0,-0.00595323 -29293,3507:239:2,79.5,-53,0,0,-0.00590974 -29294,3508:130:1,80,-53,0,0,-0.00587178 -29295,3508:130:2,80.5,-53,0,0,-0.00577855 -29296,3508:131:1,81,-53,0,0,-0.00574144 -29297,3508:131:2,81.5,-53,0,0,-0.00571344 -29298,3508:132:1,82,-53,0,0,-0.00568936 -29299,3508:132:2,82.5,-53,0,0,-0.00566918 -29300,3508:133:1,83,-53,0,0,-0.00561402 -29301,3508:133:2,83.5,-53,0,0,-0.00561029 -29302,3508:134:1,84,-53,0,0,-0.00563025 -29303,3508:134:2,84.5,-53,0,0,-0.00562903 -29304,3508:235:1,85,-53,0,0,-0.00569063 -29305,3508:235:2,85.5,-53,0,0,-0.00572616 -29306,3508:236:1,86,-53,0,0,-0.00570837 -29307,3508:236:2,86.5,-53,0,0,-0.00573378 -29308,3508:237:1,87,-53,0,0,-0.00579527 -29309,3508:237:2,87.5,-53,0,0,-0.00582368 -29310,3508:238:1,88,-53,0,0,-0.00579527 -29311,3508:238:2,88.5,-53,0,0,-0.00577985 -29312,3508:239:1,89,-53,0,0,-0.00591106 -29313,3508:239:2,89.5,-53,0,0,-0.00594927 -29314,3509:130:1,90,-53,0,0,-0.0059176 -29315,3509:130:2,90.5,-53,0,0,-0.00600241 -29316,3509:131:1,91,-53,0,0,-0.00609382 -29317,3509:131:2,91.5,-53,0,0,-0.00624189 -29318,3509:132:1,92,-53,0,0,-0.00633839 -29319,3509:132:2,92.5,-53,0,0,-0.00645357 -29320,3509:133:1,93,-53,0,0,-0.00691269 -29321,3509:133:2,93.5,-53,0,0,-0.00716643 -29322,3509:134:1,94,-53,0,0,-0.00712189 -29323,3509:134:2,94.5,-53,0,0,-0.00695742 -29324,3509:235:1,95,-53,0,0,-0.00707922 -29325,3509:235:2,95.5,-53,0,0,-0.00715845 -29326,3509:236:1,96,-53,0,0,-0.00717436 -29327,3509:236:2,96.5,-53,0,0,-0.00728053 -29328,3509:237:1,97,-53,0,0,-0.00742455 -29329,3509:237:2,97.5,-53,0,0,-0.00754116 -29330,3509:238:1,98,-53,0,0,-0.00756132 -29331,3509:238:2,98.5,-53,0,0,-0.00754618 -29332,3509:239:1,99,-53,0,0,-0.00753778 -29333,3509:239:2,99.5,-53,0,0,-0.00752938 -29334,3510:130:1,100,-53,0,0,-0.00755459 -29335,3510:130:2,100.5,-53,0,0,-0.00765102 -29336,3510:131:1,101,-53,0,0,-0.00787402 -29337,3510:131:2,101.5,-53,0,0,-0.00821069 -29338,3510:132:1,102,-53,0,0,-0.00831189 -29339,3510:132:2,102.5,-53,0,0,-0.00823265 -29340,3510:133:1,103,-53,0,0,-0.00821616 -29341,3510:133:2,103.5,-53,0,0,-0.00822902 -29342,3510:134:1,104,-53,0,0,-0.00825103 -29343,3510:134:2,104.5,-53,0,0,-0.00831189 -29344,3510:235:1,105,-53,0,0,-0.00835648 -29345,3510:235:2,105.5,-53,0,0,-0.00828785 -29346,3510:236:1,106,-53,0,0,-0.00809987 -29347,3510:236:2,106.5,-53,0,0,-0.00774359 -29348,3510:237:1,107,-53,0,0,-0.00731627 -29349,3510:237:2,107.5,-53,0,0,-0.00746597 -29350,3510:238:1,108,-53,0,0,-0.00760521 -29351,3510:238:2,108.5,-53,0,0,-0.00758998 -29352,3510:239:1,109,-53,0,0,-0.00762554 -29353,3510:239:2,109.5,-53,0,0,-0.00766299 -29354,3511:130:1,110,-53,0,0,-0.00760857 -29355,3511:130:2,110.5,-53,0,0,-0.0076018 -29356,3511:131:1,111,-53,0,0,-0.00773155 -29357,3511:131:2,111.5,-53,0,0,-0.00789507 -29358,3511:132:1,112,-53,0,0,-0.00798524 -29359,3511:132:2,112.5,-53,0,0,-0.00806565 -29360,3511:133:1,113,-53,0,0,-0.00815418 -29361,3511:133:2,113.5,-53,0,0,-0.00825838 -29362,3511:134:1,114,-53,0,0,-0.00838443 -29363,3511:134:2,114.5,-53,0,0,-0.00856001 -29364,3511:235:1,115,-53,0,0,-0.00892828 -29365,3511:235:2,115.5,-53,0,0,-0.00921545 -29366,3511:236:1,116,-53,0,0,-0.00928141 -29367,3511:236:2,116.5,-53,0,0,-0.00922574 -29368,3511:237:1,117,-53,0,0,-0.00905453 -29369,3511:237:2,117.5,-53,0,0,-0.00875483 -29370,3511:238:1,118,-53,0,0,-0.00850293 -29371,3511:238:2,118.5,-53,0,0,-0.00853902 -29372,3511:239:1,119,-53,0,0,-0.00862892 -29373,3511:239:2,119.5,-53,0,0,-0.0086907 -29374,3512:130:1,120,-53,0,0,-0.00873925 -29375,3512:130:2,120.5,-53,0,0,-0.00889451 -29376,3512:131:1,121,-53,0,0,-0.00908489 -29377,3512:131:2,121.5,-53,0,0,-0.00914785 -29378,3512:132:1,122,-53,0,0,-0.0091949 -29379,3512:132:2,122.5,-53,0,0,-0.00935 -29380,3512:133:1,123,-53,0,0,-0.0095715 -29381,3512:133:2,123.5,-53,0,0,-0.00974389 -29382,3512:134:1,124,-53,0,0,-0.0100463 -29383,3512:134:2,124.5,-53,0,0,-0.010209 -29384,3512:235:1,125,-53,0,0,-0.0101409 -29385,3512:235:2,125.5,-53,0,0,-0.00998821 -29386,3512:236:1,126,-53,0,0,-0.00984881 -29387,3512:236:2,126.5,-53,0,0,-0.00979617 -29388,3512:237:1,127,-53,0,0,-0.00984217 -29389,3512:237:2,127.5,-53,0,0,-0.00997264 -29390,3512:238:1,128,-53,0,0,-0.0100262 -29391,3512:238:2,128.5,-53,0,0,-0.0100374 -29392,3512:239:1,129,-53,0,0,-0.0100868 -29393,3512:239:2,129.5,-53,0,0,-0.0101931 -29394,3513:130:1,130,-53,0,0,-0.0107542 -29395,3513:130:2,130.5,-53,0,0,-0.0116236 -29396,3513:131:1,131,-53,0,0,-0.0120227 -29397,3513:131:2,131.5,-53,0,0,-0.0119985 -29398,3513:132:1,132,-53,0,0,-0.0116445 -29399,3513:132:2,132.5,-53,0,0,-0.0112204 -29400,3513:133:1,133,-53,0,0,-0.0107879 -29401,3513:133:2,133.5,-53,0,0,-0.0105945 -29402,3513:134:1,134,-53,0,0,-0.0104816 -29403,3513:134:2,134.5,-53,0,0,-0.0104582 -29404,3513:235:1,135,-53,0,0,-0.0107517 -29405,3513:235:2,135.5,-53,0,0,-0.0110118 -29406,3513:236:1,136,-53,0,0,-0.0110636 -29407,3513:236:2,136.5,-53,0,0,-0.0108192 -29408,3513:237:1,137,-53,0,0,-0.0104535 -29409,3513:237:2,137.5,-53,0,0,-0.010175 -29410,3513:238:1,138,-53,0,0,-0.0101681 -29411,3513:238:2,138.5,-53,0,0,-0.0104512 -29412,3513:239:1,139,-53,0,0,-0.0107782 -29413,3513:239:2,139.5,-53,0,0,-0.0107854 -29414,3514:130:1,140,-53,0,0,-0.0105284 -29415,3514:130:2,140.5,-53,0,0,-0.0102479 -29416,3514:131:1,141,-53,0,0,-0.0100105 -29417,3514:131:2,141.5,-53,0,0,-0.00978524 -29418,3514:132:1,142,-53,0,0,-0.00957581 -29419,3514:132:2,142.5,-53,0,0,-0.00948654 -29420,3514:133:1,143,-53,0,0,-0.00965297 -29421,3514:133:2,143.5,-53,0,0,-0.0100553 -29422,3514:134:1,144,-53,0,0,-0.0103907 -29423,3514:134:2,144.5,-53,0,0,-0.0103351 -29424,3514:235:1,145,-53,0,0,-0.00995927 -29425,3514:235:2,145.5,-53,0,0,-0.00981153 -29426,3514:236:1,146,-53,0,0,-0.00984438 -29427,3514:236:2,146.5,-53,0,0,-0.00979837 -29428,3514:237:1,147,-53,0,0,-0.00968318 -29429,3514:237:2,147.5,-53,0,0,-0.00948014 -29430,3514:238:1,148,-53,0,0,-0.00920924 -29431,3514:238:2,148.5,-53,0,0,-0.00893223 -29432,3514:239:1,149,-53,0,0,-0.00883127 -29433,3514:239:2,149.5,-53,0,0,-0.00891432 -29434,3515:130:1,150,-53,0,0,-0.00895017 -29435,3515:130:2,150.5,-53,0,0,-0.00862511 -29436,3515:131:1,151,-53,0,0,-0.00743944 -29437,3515:131:2,151.5,-53,0,0,-0.00627808 -29438,3515:132:1,152,-53,0,0,-0.00730649 -29439,3515:132:2,152.5,-53,0,0,-0.00760686 -29440,3515:133:1,153,-53,0,0,-0.00734076 -29441,3515:133:2,153.5,-53,0,0,-0.00683471 -29442,3515:134:1,154,-53,0,0,-0.00621835 -29443,3515:134:2,154.5,-53,0,0,-0.00643778 -29444,3515:235:1,155,-53,0,0,-0.00730976 -29445,3515:235:2,155.5,-53,0,0,-0.00838072 -29446,3515:236:1,156,-53,0,0,-0.00915402 -29447,3515:236:2,156.5,-53,0,0,-0.00932293 -29448,3515:237:1,157,-53,0,0,-0.00939388 -29449,3515:237:2,157.5,-53,0,0,-0.00910922 -29450,3515:238:1,158,-53,0,0,-0.00915807 -29451,3515:238:2,158.5,-53,0,0,-0.0094844 -29452,3515:239:1,159,-53,0,0,-0.0095865 -29453,3515:239:2,159.5,-53,0,0,-0.00946751 -29454,3516:130:1,160,-53,0,0,-0.00926487 -29455,3516:130:2,160.5,-53,0,0,-0.00864243 -29456,3516:131:1,161,-53,0,0,-0.00852951 -29457,3516:131:2,161.5,-53,0,0,-0.00967238 -29458,3516:132:1,162,-53,0,0,-0.0120201 -29459,3516:132:2,162.5,-53,0,0,-0.013031 -29460,3516:133:1,163,-53,0,0,-0.012817 -29461,3516:133:2,163.5,-53,0,0,-0.011844 -29462,3516:134:1,164,-53,0,0,-0.0116496 -29463,3516:134:2,164.5,-53,0,0,-0.012347 -29464,3516:235:1,165,-53,0,0,-0.0128947 -29465,3516:235:2,165.5,-53,0,0,-0.012525 -29466,3516:236:1,166,-53,0,0,-0.0116158 -29467,3516:236:2,166.5,-53,0,0,-0.0117517 -29468,3516:237:1,167,-53,0,0,-0.0125054 -29469,3516:237:2,167.5,-53,0,0,-0.0128572 -29470,3516:238:1,168,-53,0,0,-0.0127798 -29471,3516:238:2,168.5,-53,0,0,-0.0129033 -29472,3516:239:1,169,-53,0,0,-0.0133888 -29473,3516:239:2,169.5,-53,0,0,-0.0145687 -29474,3517:130:1,170,-53,0,0,-0.0165787 -29475,3517:130:2,170.5,-53,0,0,-0.0180285 -29476,3517:131:1,171,-53,0,0,-0.0190247 -29477,3517:131:2,171.5,-53,0,0,-0.0197539 -29478,3517:132:1,172,-53,0,0,-0.0199372 -29479,3517:132:2,172.5,-53,0,0,-0.0198969 -29480,3517:133:1,173,-53,0,0,-0.0197895 -29481,3517:133:2,173.5,-53,0,0,-0.0194536 -29482,3517:134:1,174,-53,0,0,-0.0189905 -29483,3517:134:2,174.5,-53,0,0,-0.0185136 -29484,3517:235:1,175,-53,0,0,-0.0180935 -29485,3517:235:2,175.5,-53,0,0,-0.0175801 -29486,3517:236:1,176,-53,0,0,-0.0171701 -29487,3517:236:2,176.5,-53,0,0,-0.0170547 -29488,3517:237:1,177,-53,0,0,-0.0174934 -29489,3517:237:2,177.5,-53,0,0,-0.0183477 -29490,3517:238:1,178,-53,0,0,-0.0182079 -29491,3517:238:2,178.5,-53,0,0,-0.0169821 -29492,3517:239:1,179,-53,0,0,-0.017259 -29493,3517:239:2,179.5,-53,0,0,-0.0176792 -29494,3518:130:1,180,-53,0,0,-0.017005 -29495,5518:120:3,-180,-52.5,0,0,-0.0151824 -29496,5517:229:4,-179.5,-52.5,0,0,-0.0136705 -29497,5517:229:3,-179,-52.5,0,0,-0.0132576 -29498,5517:228:4,-178.5,-52.5,0,0,-0.0130924 -29499,5517:228:3,-178,-52.5,0,0,-0.0129468 -29500,5517:227:4,-177.5,-52.5,0,0,-0.012797 -29501,5517:227:3,-177,-52.5,0,0,-0.0127341 -29502,5517:226:4,-176.5,-52.5,0,0,-0.0129207 -29503,5517:226:3,-176,-52.5,0,0,-0.0131541 -29504,5517:225:4,-175.5,-52.5,0,0,-0.0127741 -29505,5517:225:3,-175,-52.5,0,0,-0.0118599 -29506,5517:124:4,-174.5,-52.5,0,0,-0.0113439 -29507,5517:124:3,-174,-52.5,0,0,-0.01141 -29508,5517:123:4,-173.5,-52.5,0,0,-0.0115821 -29509,5517:123:3,-173,-52.5,0,0,-0.0116236 -29510,5517:122:4,-172.5,-52.5,0,0,-0.0115821 -29511,5517:122:3,-172,-52.5,0,0,-0.0115718 -29512,5517:121:4,-171.5,-52.5,0,0,-0.0116132 -29513,5517:121:3,-171,-52.5,0,0,-0.0116107 -29514,5517:120:4,-170.5,-52.5,0,0,-0.0114202 -29515,5517:120:3,-170,-52.5,0,0,-0.0109725 -29516,5516:229:4,-169.5,-52.5,0,0,-0.0105214 -29517,5516:229:3,-169,-52.5,0,0,-0.0103606 -29518,5516:228:4,-168.5,-52.5,0,0,-0.0104116 -29519,5516:228:3,-168,-52.5,0,0,-0.0104862 -29520,5516:227:4,-167.5,-52.5,0,0,-0.0104582 -29521,5516:227:3,-167,-52.5,0,0,-0.0104046 -29522,5516:226:4,-166.5,-52.5,0,0,-0.010545 -29523,5516:226:3,-166,-52.5,0,0,-0.0107542 -29524,5516:225:4,-165.5,-52.5,0,0,-0.011066 -29525,5516:225:3,-165,-52.5,0,0,-0.0115382 -29526,5516:124:4,-164.5,-52.5,0,0,-0.0120847 -29527,5516:124:3,-164,-52.5,0,0,-0.0123829 -29528,5516:123:4,-163.5,-52.5,0,0,-0.0122042 -29529,5516:123:3,-163,-52.5,0,0,-0.0116679 -29530,5516:122:4,-162.5,-52.5,0,0,-0.0111829 -29531,5516:122:3,-162,-52.5,0,0,-0.0111032 -29532,5516:121:4,-161.5,-52.5,0,0,-0.0112757 -29533,5516:121:3,-161,-52.5,0,0,-0.0114432 -29534,5516:120:4,-160.5,-52.5,0,0,-0.0114945 -29535,5516:120:3,-160,-52.5,0,0,-0.0113718 -29536,5515:229:4,-159.5,-52.5,0,0,-0.0110266 -29537,5515:229:3,-159,-52.5,0,0,-0.0105779 -29538,5515:228:4,-158.5,-52.5,0,0,-0.0104325 -29539,5515:228:3,-158,-52.5,0,0,-0.0107374 -29540,5515:227:4,-157.5,-52.5,0,0,-0.0116132 -29541,5515:227:3,-157,-52.5,0,0,-0.0126744 -29542,5515:226:4,-156.5,-52.5,0,0,-0.0131394 -29543,5515:226:3,-156,-52.5,0,0,-0.0125558 -29544,5515:225:4,-155.5,-52.5,0,0,-0.010559 -29545,5515:225:3,-155,-52.5,0,0,-0.00906668 -29546,5515:124:4,-154.5,-52.5,0,0,-0.00817421 -29547,5515:124:3,-154,-52.5,0,0,-0.0080531 -29548,5515:123:4,-153.5,-52.5,0,0,-0.00804058 -29549,5515:123:3,-153,-52.5,0,0,-0.00799948 -29550,5515:122:4,-152.5,-52.5,0,0,-0.0080066 -29551,5515:122:3,-152,-52.5,0,0,-0.00816688 -29552,5515:121:4,-151.5,-52.5,0,0,-0.00856001 -29553,5515:121:3,-151,-52.5,0,0,-0.00950347 -29554,5515:120:4,-150.5,-52.5,0,0,-0.00982684 -29555,5515:120:3,-150,-52.5,0,0,-0.00988623 -29556,5514:229:4,-149.5,-52.5,0,0,-0.00993042 -29557,5514:229:3,-149,-52.5,0,0,-0.00967672 -29558,5514:228:4,-148.5,-52.5,0,0,-0.00939177 -29559,5514:228:3,-148,-52.5,0,0,-0.0106824 -29560,5514:227:4,-147.5,-52.5,0,0,-0.0131129 -29561,5514:227:3,-147,-52.5,0,0,-0.013464 -29562,5514:226:4,-146.5,-52.5,0,0,-0.0132576 -29563,5514:226:3,-146,-52.5,0,0,-0.0132279 -29564,5514:225:4,-145.5,-52.5,0,0,-0.0143838 -29565,5514:225:3,-145,-52.5,0,0,-0.015762 -29566,5514:124:4,-144.5,-52.5,0,0,-0.0178109 -29567,5514:124:3,-144,-52.5,0,0,-0.0185761 -29568,5514:123:4,-143.5,-52.5,0,0,-0.0205579 -29569,5514:123:3,-143,-52.5,0,0,-0.021565 -29570,5514:122:4,-142.5,-52.5,0,0,-0.0219928 -29571,5514:122:3,-142,-52.5,0,0,-0.0232286 -29572,5514:121:4,-141.5,-52.5,0,0,-0.0229729 -29573,5514:121:3,-141,-52.5,0,0,-0.0234875 -29574,5514:120:4,-140.5,-52.5,0,0,-0.0244748 -29575,5514:120:3,-140,-52.5,0,0,-0.0239705 -29576,5513:229:4,-139.5,-52.5,0,0,-0.0232549 -29577,5513:229:3,-139,-52.5,0,0,-0.0212558 -29578,5513:228:4,-138.5,-52.5,0,0,-0.0197051 -29579,5513:228:3,-138,-52.5,0,0,-0.0182284 -29580,5513:227:4,-137.5,-52.5,0,0,-0.0166533 -29581,5513:227:3,-137,-52.5,0,0,-0.0154504 -29582,5513:226:4,-136.5,-52.5,0,0,-0.0152609 -29583,5513:226:3,-136,-52.5,0,0,-0.0153433 -29584,5513:225:4,-135.5,-52.5,0,0,-0.0154054 -29585,5513:225:3,-135,-52.5,0,0,-0.0150704 -29586,5513:124:4,-134.5,-52.5,0,0,-0.0135973 -29587,5513:124:3,-134,-52.5,0,0,-0.0128687 -29588,5513:123:4,-133.5,-52.5,0,0,-0.0130048 -29589,5513:123:3,-133,-52.5,0,0,-0.0137443 -29590,5513:122:4,-132.5,-52.5,0,0,-0.0144452 -29591,5513:122:3,-132,-52.5,0,0,-0.014358 -29592,5513:121:4,-131.5,-52.5,0,0,-0.014265 -29593,5513:121:3,-131,-52.5,0,0,-0.0149962 -29594,5513:120:4,-130.5,-52.5,0,0,-0.0149862 -29595,5513:120:3,-130,-52.5,0,0,-0.0143999 -29596,5512:229:4,-129.5,-52.5,0,0,-0.0137227 -29597,5512:229:3,-129,-52.5,0,0,-0.0130573 -29598,5512:228:4,-128.5,-52.5,0,0,-0.0126348 -29599,5512:228:3,-128,-52.5,0,0,-0.0127598 -29600,5512:227:4,-127.5,-52.5,0,0,-0.01311 -29601,5512:227:3,-127,-52.5,0,0,-0.0136614 -29602,5512:226:4,-126.5,-52.5,0,0,-0.0145263 -29603,5512:226:3,-126,-52.5,0,0,-0.0154296 -29604,5512:225:4,-125.5,-52.5,0,0,-0.0159471 -29605,5512:225:3,-125,-52.5,0,0,-0.0159185 -29606,5512:124:4,-124.5,-52.5,0,0,-0.0174149 -29607,5512:124:3,-124,-52.5,0,0,-0.0189264 -29608,5512:123:4,-123.5,-52.5,0,0,-0.0196164 -29609,5512:123:3,-123,-52.5,0,0,-0.0196917 -29610,5512:122:4,-122.5,-52.5,0,0,-0.0192401 -29611,5512:122:3,-122,-52.5,0,0,-0.0178912 -29612,5512:121:4,-121.5,-52.5,0,0,-0.0166272 -29613,5512:121:3,-121,-52.5,0,0,-0.0166946 -29614,5512:120:4,-120.5,-52.5,0,0,-0.017329 -29615,5512:120:3,-120,-52.5,0,0,-0.0168983 -29616,5511:229:4,-119.5,-52.5,0,0,-0.0160044 -29617,5511:229:3,-119,-52.5,0,0,-0.0157231 -29618,5511:228:4,-118.5,-52.5,0,0,-0.0157515 -29619,5511:228:3,-118,-52.5,0,0,-0.016127 -29620,5511:227:4,-117.5,-52.5,0,0,-0.0165192 -29621,5511:227:3,-117,-52.5,0,0,-0.0166085 -29622,5511:226:4,-116.5,-52.5,0,0,-0.0166235 -29623,5511:226:3,-116,-52.5,0,0,-0.016849 -29624,5511:225:4,-115.5,-52.5,0,0,-0.0173174 -29625,5511:225:3,-115,-52.5,0,0,-0.017462 -29626,5511:124:4,-114.5,-52.5,0,0,-0.0173563 -29627,5511:124:3,-114,-52.5,0,0,-0.0174423 -29628,5511:123:4,-113.5,-52.5,0,0,-0.0177629 -29629,5511:123:3,-113,-52.5,0,0,-0.0171238 -29630,5511:122:4,-112.5,-52.5,0,0,-0.0160404 -29631,5511:122:3,-112,-52.5,0,0,-0.0165378 -29632,5511:121:4,-111.5,-52.5,0,0,-0.0168263 -29633,5511:121:3,-111,-52.5,0,0,-0.0175446 -29634,5511:120:4,-110.5,-52.5,0,0,-0.0180813 -29635,5511:120:3,-110,-52.5,0,0,-0.017859 -29636,5510:229:4,-109.5,-52.5,0,0,-0.0176396 -29637,5510:229:3,-109,-52.5,0,0,-0.0172668 -29638,5510:228:4,-108.5,-52.5,0,0,-0.0167246 -29639,5510:228:3,-108,-52.5,0,0,-0.0163936 -29640,5510:227:4,-107.5,-52.5,0,0,-0.0164859 -29641,5510:227:3,-107,-52.5,0,0,-0.0165936 -29642,5510:226:4,-106.5,-52.5,0,0,-0.0158117 -29643,5510:226:3,-106,-52.5,0,0,-0.0148257 -29644,5510:225:4,-105.5,-52.5,0,0,-0.014484 -29645,5510:225:3,-105,-52.5,0,0,-0.0145329 -29646,5510:124:4,-104.5,-52.5,0,0,-0.014859 -29647,5510:124:3,-104,-52.5,0,0,-0.0154608 -29648,5510:123:4,-103.5,-52.5,0,0,-0.0167058 -29649,5510:123:3,-103,-52.5,0,0,-0.0177749 -29650,5510:122:4,-102.5,-52.5,0,0,-0.0183518 -29651,5510:122:3,-102,-52.5,0,0,-0.0184511 -29652,5510:121:4,-101.5,-52.5,0,0,-0.0181262 -29653,5510:121:3,-101,-52.5,0,0,-0.0172165 -29654,5510:120:4,-100.5,-52.5,0,0,-0.0160765 -29655,5510:120:3,-100,-52.5,0,0,-0.0156142 -29656,5509:229:4,-99.5,-52.5,0,0,-0.0165118 -29657,5509:229:3,-99,-52.5,0,0,-0.0180082 -29658,5509:228:4,-98.5,-52.5,0,0,-0.0193968 -29659,5509:228:3,-98,-52.5,0,0,-0.0197094 -29660,5509:227:4,-97.5,-52.5,0,0,-0.018999 -29661,5509:227:3,-97,-52.5,0,0,-0.0174895 -29662,5509:226:4,-96.5,-52.5,0,0,-0.0166908 -29663,5509:226:3,-96,-52.5,0,0,-0.0168831 -29664,5509:225:4,-95.5,-52.5,0,0,-0.0170126 -29665,5509:225:3,-95,-52.5,0,0,-0.0174071 -29666,5509:124:4,-94.5,-52.5,0,0,-0.0179032 -29667,5509:124:3,-94,-52.5,0,0,-0.0178189 -29668,5509:123:4,-93.5,-52.5,0,0,-0.0169021 -29669,5509:123:3,-93,-52.5,0,0,-0.0160117 -29670,5509:122:4,-92.5,-52.5,0,0,-0.0152028 -29671,5509:122:3,-92,-52.5,0,0,-0.0148557 -29672,5509:121:4,-91.5,-52.5,0,0,-0.0152062 -29673,5509:121:3,-91,-52.5,0,0,-0.014909 -29674,5509:120:4,-90.5,-52.5,0,0,-0.0148091 -29675,5509:120:3,-90,-52.5,0,0,-0.0150502 -29676,5508:229:4,-89.5,-52.5,0,0,-0.0159542 -29677,5508:229:3,-89,-52.5,0,0,-0.0172745 -29678,5508:228:4,-88.5,-52.5,0,0,-0.0179759 -29679,5508:228:3,-88,-52.5,0,0,-0.0177509 -29680,5508:227:4,-87.5,-52.5,0,0,-0.0173446 -29681,5508:227:3,-87,-52.5,0,0,-0.0172745 -29682,5508:226:4,-86.5,-52.5,0,0,-0.017259 -29683,5508:226:3,-86,-52.5,0,0,-0.0172319 -29684,5508:225:4,-85.5,-52.5,0,0,-0.0171662 -29685,5508:225:3,-85,-52.5,0,0,-0.0170165 -29686,5508:124:4,-84.5,-52.5,0,0,-0.0168301 -29687,5508:124:3,-84,-52.5,0,0,-0.0163788 -29688,5508:123:4,-83.5,-52.5,0,0,-0.016138 -29689,5508:123:3,-83,-52.5,0,0,-0.0164452 -29690,5508:122:4,-82.5,-52.5,0,0,-0.0168567 -29691,5508:122:3,-82,-52.5,0,0,-0.0174934 -29692,5508:121:4,-81.5,-52.5,0,0,-0.0182693 -29693,5508:121:3,-81,-52.5,0,0,-0.0185761 -29694,5508:120:4,-80.5,-52.5,0,0,-0.0184014 -29695,5508:120:3,-80,-52.5,0,0,-0.0179517 -29696,5507:229:4,-79.5,-52.5,0,0,-0.0173174 -29697,5507:229:3,-79,-52.5,0,0,-0.0171008 -29698,5507:228:4,-78.5,-52.5,0,0,-0.0173914 -29699,5507:228:3,-78,-52.5,0,0,-0.0179679 -29700,5507:227:4,-77.5,-52.5,0,0,-0.0185552 -29701,5507:227:3,-77,-52.5,0,0,-0.0186726 -29702,5507:226:4,-76.5,-52.5,0,0,-0.0184138 -29703,5507:226:3,-76,-52.5,0,0,-0.0182242 -29704,5507:225:4,-75.5,-52.5,0,0,-0.0184138 -29705,5507:225:3,-75,-52.5,0,0,-0.0186683 -29706,5507:124:4,-74.5,-52.5,0,0,-0.0186894 -29707,5507:124:3,-74,-52.5,0,0,-0.0183807 -29708,5507:123:4,-73.5,-52.5,0,0,-0.0176474 -29709,5507:123:3,-73,-52.5,0,0,-0.0167585 -29710,5507:122:4,-72.5,-52.5,0,0,-0.0163128 -29711,5507:122:3,-72,-52.5,0,0,-0.0157408 -29712,5507:121:4,-71.5,-52.5,0,0,-0.0156949 -29713,5507:121:3,-71,-52.5,0,0,-0.0156142 -29714,5507:120:4,-70.5,-52.5,0,0,-0.0158081 -29715,5507:120:3,-70,-52.5,0,0,-0.0164674 -29716,5506:229:4,-69.5,-52.5,0,0,-0.0163604 -29717,5506:229:3,-69,-52.5,0,0,-0.0162106 -29718,5506:228:4,-68.5,-52.5,0,0,-0.0156527 -29719,5506:228:3,-68,-52.5,0,0,-0.0143645 -29720,5506:227:4,-67.5,-52.5,0,0,-0.0129004 -29721,5506:227:3,-67,-52.5,0,0,-0.0122836 -29722,5506:226:4,-66.5,-52.5,0,0,-0.0123304 -29723,5506:226:3,-66,-52.5,0,0,-0.0120577 -29724,5506:225:4,-65.5,-52.5,0,0,-0.0120227 -29725,5506:225:3,-65,-52.5,0,0,-0.0115305 -29726,5506:124:4,-64.5,-52.5,0,0,-0.0099105 -29727,5506:124:3,-64,-52.5,0,0,-0.00879004 -29728,5506:123:4,-63.5,-52.5,0,0,-0.00796395 -29729,5506:123:3,-63,-52.5,0,0,-0.00801907 -29730,5506:122:4,-62.5,-52.5,0,0,-0.00824548 -29731,5506:122:3,-62,-52.5,0,0,-0.00842563 -29732,5506:121:4,-61.5,-52.5,0,0,-0.00836951 -29733,5506:121:3,-61,-52.5,0,0,-0.00797635 -29734,5506:120:4,-60.5,-52.5,0,0,-0.00744106 -29735,5506:120:3,-60,-52.5,0,0,-0.00729028 -29736,5505:229:4,-59.5,-52.5,0,0,-0.00724177 -29737,5505:229:3,-59,-52.5,0,0,-0.00721923 -29738,5505:228:4,-58.5,-52.5,0,0,-0.00726433 -29739,5505:228:3,-58,-52.5,0,0,-0.00736038 -29740,5505:227:4,-57.5,-52.5,0,0,-0.00741628 -29741,5505:227:3,-57,-52.5,0,0,-0.00748095 -29742,5505:226:4,-56.5,-52.5,0,0,-0.00668286 -29743,5505:226:3,-56,-52.5,0,0,-0.0062711 -29744,5505:225:4,-55.5,-52.5,0,0,-0.00610735 -29745,5505:225:3,-55,-52.5,0,0,-0.00611282 -29746,5505:124:4,-54.5,-52.5,0,0,-0.00612502 -29747,5505:124:3,-54,-52.5,0,0,-0.00609518 -29748,5505:123:4,-53.5,-52.5,0,0,-0.00603315 -29749,5505:123:3,-53,-52.5,0,0,-0.00594927 -29750,5505:122:4,-52.5,-52.5,0,0,-0.00589137 -29751,5505:122:3,-52,-52.5,0,0,-0.00572232 -29752,5505:121:4,-51.5,-52.5,0,0,-0.00563151 -29753,5505:121:3,-51,-52.5,0,0,-0.00558047 -29754,5505:120:4,-50.5,-52.5,0,0,-0.00552617 -29755,5505:120:3,-50,-52.5,0,0,-0.00551266 -29756,5504:229:4,-49.5,-52.5,0,0,-0.00544333 -29757,5504:229:3,-49,-52.5,0,0,-0.00545057 -29758,5504:228:4,-48.5,-52.5,0,0,-0.00544816 -29759,5504:228:3,-48,-52.5,0,0,-0.00545179 -29760,5504:227:4,-47.5,-52.5,0,0,-0.00545907 -29761,5504:227:3,-47,-52.5,0,0,-0.00546511 -29762,5504:226:4,-46.5,-52.5,0,0,-0.00547486 -29763,5504:226:3,-46,-52.5,0,0,-0.00547364 -29764,5504:225:3,-45,-52.5,0,0,-0.00551024 -29765,5504:124:4,-44.5,-52.5,0,0,-0.00554953 -29766,5504:124:3,-44,-52.5,0,0,-0.00556064 -29767,5504:123:4,-43.5,-52.5,0,0,-0.00559164 -29768,5504:123:3,-43,-52.5,0,0,-0.00552617 -29769,5504:122:4,-42.5,-52.5,0,0,-0.005453 -29770,5504:122:3,-42,-52.5,0,0,-0.00546511 -29771,5504:121:4,-41.5,-52.5,0,0,-0.00548337 -29772,5504:121:3,-41,-52.5,0,0,-0.00551266 -29773,5504:120:4,-40.5,-52.5,0,0,-0.00547486 -29774,5504:120:3,-40,-52.5,0,0,-0.00545785 -29775,5503:229:4,-39.5,-52.5,0,0,-0.00545785 -29776,5503:229:3,-39,-52.5,0,0,-0.0055557 -29777,5503:228:4,-38.5,-52.5,0,0,-0.00587306 -29778,5503:228:3,-38,-52.5,0,0,-0.00570202 -29779,5503:227:4,-37.5,-52.5,0,0,-0.00546755 -29780,5503:227:3,-37,-52.5,0,0,-0.00546878 -29781,5503:226:4,-36.5,-52.5,0,0,-0.00547 -29782,5503:226:3,-36,-52.5,0,0,-0.00546633 -29783,5503:225:4,-35.5,-52.5,0,0,-0.00548824 -29784,5503:225:3,-35,-52.5,0,0,-0.00553232 -29785,5503:124:4,-34.5,-52.5,0,0,-0.00554953 -29786,5503:124:3,-34,-52.5,0,0,-0.00549434 -29787,5503:123:4,-33.5,-52.5,0,0,-0.00546392 -29788,5503:123:3,-33,-52.5,0,0,-0.00546511 -29789,5503:122:4,-32.5,-52.5,0,0,-0.0054627 -29790,5503:122:3,-32,-52.5,0,0,-0.00546026 -29791,5503:121:4,-31.5,-52.5,0,0,-0.00545907 -29792,5503:121:3,-31,-52.5,0,0,-0.00545907 -29793,5503:120:4,-30.5,-52.5,0,0,-0.00545907 -29794,5503:120:3,-30,-52.5,0,0,-0.00545907 -29795,5502:229:4,-29.5,-52.5,0,0,-0.00546026 -29796,5502:229:3,-29,-52.5,0,0,-0.00546026 -29797,5502:228:4,-28.5,-52.5,0,0,-0.00546026 -29798,5502:228:3,-28,-52.5,0,0,-0.00546026 -29799,5502:227:4,-27.5,-52.5,0,0,-0.00545907 -29800,5502:227:3,-27,-52.5,0,0,-0.00545785 -29801,5502:226:4,-26.5,-52.5,0,0,-0.00547 -29802,5502:226:3,-26,-52.5,0,0,-0.00550658 -29803,5502:225:4,-25.5,-52.5,0,0,-0.00557551 -29804,5502:225:3,-25,-52.5,0,0,-0.00557922 -29805,5502:124:4,-24.5,-52.5,0,0,-0.00556064 -29806,5502:124:3,-24,-52.5,0,0,-0.00554092 -29807,5502:123:4,-23.5,-52.5,0,0,-0.00551024 -29808,5502:123:3,-23,-52.5,0,0,-0.00548214 -29809,5502:122:4,-22.5,-52.5,0,0,-0.00547972 -29810,5502:122:3,-22,-52.5,0,0,-0.00572741 -29811,5502:121:4,-21.5,-52.5,0,0,-0.00582498 -29812,5502:121:3,-21,-52.5,0,0,-0.00568307 -29813,5502:120:4,-20.5,-52.5,0,0,-0.00558418 -29814,5502:120:3,-20,-52.5,0,0,-0.00555325 -29815,5501:229:4,-19.5,-52.5,0,0,-0.005536 -29816,5501:229:3,-19,-52.5,0,0,-0.00552741 -29817,5501:228:4,-18.5,-52.5,0,0,-0.00552617 -29818,5501:228:3,-18,-52.5,0,0,-0.005509 -29819,5501:227:4,-17.5,-52.5,0,0,-0.00549434 -29820,5501:227:3,-17,-52.5,0,0,-0.00548947 -29821,5501:226:4,-16.5,-52.5,0,0,-0.00548582 -29822,5501:226:3,-16,-52.5,0,0,-0.00549069 -29823,5501:225:4,-15.5,-52.5,0,0,-0.00549677 -29824,5501:225:3,-15,-52.5,0,0,-0.00548582 -29825,5501:124:4,-14.5,-52.5,0,0,-0.00546633 -29826,5501:124:3,-14,-52.5,0,0,-0.00545423 -29827,5501:123:4,-13.5,-52.5,0,0,-0.005453 -29828,5501:123:3,-13,-52.5,0,0,-0.005453 -29829,5501:122:4,-12.5,-52.5,0,0,-0.00545179 -29830,5501:122:3,-12,-52.5,0,0,-0.00545179 -29831,5501:121:4,-11.5,-52.5,0,0,-0.00545423 -29832,5501:121:3,-11,-52.5,0,0,-0.00545541 -29833,5501:120:4,-10.5,-52.5,0,0,-0.00545663 -29834,5501:120:3,-10,-52.5,0,0,-0.00545663 -29835,5500:229:4,-9.5,-52.5,0,0,-0.00545423 -29836,5500:229:3,-9,-52.5,0,0,-0.00545179 -29837,5500:228:4,-8.5,-52.5,0,0,-0.00545057 -29838,5500:228:3,-8,-52.5,0,0,-0.00545057 -29839,5500:227:4,-7.5,-52.5,0,0,-0.00544935 -29840,5500:227:3,-7,-52.5,0,0,-0.00545179 -29841,5500:226:4,-6.5,-52.5,0,0,-0.005453 -29842,5500:226:3,-6,-52.5,0,0,-0.00545057 -29843,5500:225:4,-5.5,-52.5,0,0,-0.00544935 -29844,5500:225:3,-5,-52.5,0,0,-0.00544935 -29845,5500:124:4,-4.5,-52.5,0,0,-0.00544816 -29846,5500:124:3,-4,-52.5,0,0,-0.00544695 -29847,5500:123:4,-3.5,-52.5,0,0,-0.00544695 -29848,5500:123:3,-3,-52.5,0,0,-0.00544573 -29849,5500:122:4,-2.5,-52.5,0,0,-0.00544333 -29850,5500:122:3,-2,-52.5,0,0,-0.00544211 -29851,5500:121:4,-1.5,-52.5,0,0,-0.00544089 -29852,5500:121:3,-1,-52.5,0,0,-0.00544333 -29853,5500:120:4,-0.5,-52.5,0,0,-0.00544695 -29854,3500:120:4,0,-52.5,0,0,-0.005453 -29855,3500:120:4,0.5,-52.5,0,0,-0.00545785 -29856,3500:121:3,1,-52.5,0,0,-0.00545785 -29857,3500:121:4,1.5,-52.5,0,0,-0.00548091 -29858,3500:122:3,2,-52.5,0,0,-0.0055139 -29859,3500:122:4,2.5,-52.5,0,0,-0.00552127 -29860,3500:123:3,3,-52.5,0,0,-0.00552741 -29861,3500:123:4,3.5,-52.5,0,0,-0.00553968 -29862,3500:124:3,4,-52.5,0,0,-0.0055545 -29863,3500:124:4,4.5,-52.5,0,0,-0.00556682 -29864,3500:225:3,5,-52.5,0,0,-0.00557426 -29865,3500:225:4,5.5,-52.5,0,0,-0.00557551 -29866,3500:226:3,6,-52.5,0,0,-0.00556807 -29867,3500:226:4,6.5,-52.5,0,0,-0.0055545 -29868,3500:227:3,7,-52.5,0,0,-0.00554092 -29869,3500:227:4,7.5,-52.5,0,0,-0.00552741 -29870,3500:228:3,8,-52.5,0,0,-0.0055188 -29871,3500:228:4,8.5,-52.5,0,0,-0.00550411 -29872,3500:229:3,9,-52.5,0,0,-0.00547727 -29873,3500:229:4,9.5,-52.5,0,0,-0.00545785 -29874,3501:120:3,10,-52.5,0,0,-0.00545179 -29875,3501:120:4,10.5,-52.5,0,0,-0.00544573 -29876,3501:121:3,11,-52.5,0,0,-0.00544333 -29877,3501:121:4,11.5,-52.5,0,0,-0.00544333 -29878,3501:122:3,12,-52.5,0,0,-0.00544451 -29879,3501:122:4,12.5,-52.5,0,0,-0.00544451 -29880,3501:123:3,13,-52.5,0,0,-0.00544451 -29881,3501:123:4,13.5,-52.5,0,0,-0.00544573 -29882,3501:124:3,14,-52.5,0,0,-0.00544695 -29883,3501:124:4,14.5,-52.5,0,0,-0.00544816 -29884,3501:225:3,15,-52.5,0,0,-0.00544816 -29885,3501:225:4,15.5,-52.5,0,0,-0.00544935 -29886,3501:226:3,16,-52.5,0,0,-0.00544935 -29887,3501:226:4,16.5,-52.5,0,0,-0.00544935 -29888,3501:227:3,17,-52.5,0,0,-0.00545057 -29889,3501:227:4,17.5,-52.5,0,0,-0.00545179 -29890,3501:228:3,18,-52.5,0,0,-0.00545179 -29891,3501:228:4,18.5,-52.5,0,0,-0.00545541 -29892,3501:229:3,19,-52.5,0,0,-0.00545541 -29893,3501:229:4,19.5,-52.5,0,0,-0.00545423 -29894,3502:120:3,20,-52.5,0,0,-0.00545423 -29895,3502:120:4,20.5,-52.5,0,0,-0.00545423 -29896,3502:121:3,21,-52.5,0,0,-0.00545541 -29897,3502:121:4,21.5,-52.5,0,0,-0.00545423 -29898,3502:122:3,22,-52.5,0,0,-0.00545423 -29899,3502:122:4,22.5,-52.5,0,0,-0.00545423 -29900,3502:123:3,23,-52.5,0,0,-0.00545423 -29901,3502:123:4,23.5,-52.5,0,0,-0.00545663 -29902,3502:124:3,24,-52.5,0,0,-0.00546026 -29903,3502:124:4,24.5,-52.5,0,0,-0.0054627 -29904,3502:225:3,25,-52.5,0,0,-0.00546026 -29905,3502:225:4,25.5,-52.5,0,0,-0.00547119 -29906,3502:226:3,26,-52.5,0,0,-0.00548091 -29907,3502:226:4,26.5,-52.5,0,0,-0.00547972 -29908,3502:227:3,27,-52.5,0,0,-0.00548459 -29909,3502:227:4,27.5,-52.5,0,0,-0.00548459 -29910,3502:228:3,28,-52.5,0,0,-0.00548824 -29911,3502:228:4,28.5,-52.5,0,0,-0.00549677 -29912,3502:229:3,29,-52.5,0,0,-0.00548947 -29913,3502:229:4,29.5,-52.5,0,0,-0.00548214 -29914,3503:120:3,30,-52.5,0,0,-0.00548091 -29915,3503:120:4,30.5,-52.5,0,0,-0.00548091 -29916,3503:121:3,31,-52.5,0,0,-0.00548701 -29917,3503:121:4,31.5,-52.5,0,0,-0.00549557 -29918,3503:122:3,32,-52.5,0,0,-0.00549557 -29919,3503:122:4,32.5,-52.5,0,0,-0.00548582 -29920,3503:123:3,33,-52.5,0,0,-0.0054785 -29921,3503:123:4,33.5,-52.5,0,0,-0.00547972 -29922,3503:124:3,34,-52.5,0,0,-0.00548214 -29923,3503:124:4,34.5,-52.5,0,0,-0.00548459 -29924,3503:225:3,35,-52.5,0,0,-0.005498 -29925,3503:225:4,35.5,-52.5,0,0,-0.0055557 -29926,3503:226:3,36,-52.5,0,0,-0.00559164 -29927,3503:226:4,36.5,-52.5,0,0,-0.00560405 -29928,3503:227:3,37,-52.5,0,0,-0.00562152 -29929,3503:227:4,37.5,-52.5,0,0,-0.00563526 -29930,3503:228:3,38,-52.5,0,0,-0.00563025 -29931,3503:228:4,38.5,-52.5,0,0,-0.00562651 -29932,3503:229:3,39,-52.5,0,0,-0.00563526 -29933,3503:229:4,39.5,-52.5,0,0,-0.00566414 -29934,3504:120:3,40,-52.5,0,0,-0.00568307 -29935,3504:120:4,40.5,-52.5,0,0,-0.00569951 -29936,3504:121:3,41,-52.5,0,0,-0.00572108 -29937,3504:121:4,41.5,-52.5,0,0,-0.00572997 -29938,3504:122:3,42,-52.5,0,0,-0.00572741 -29939,3504:122:4,42.5,-52.5,0,0,-0.00571724 -29940,3504:123:3,43,-52.5,0,0,-0.00569951 -29941,3504:123:4,43.5,-52.5,0,0,-0.00566038 -29942,3504:124:3,44,-52.5,0,0,-0.00562651 -29943,3504:124:4,44.5,-52.5,0,0,-0.00561402 -29944,3504:225:3,45,-52.5,0,0,-0.00561029 -29945,3504:225:4,45.5,-52.5,0,0,-0.0056128 -29946,3504:226:3,46,-52.5,0,0,-0.00560781 -29947,3504:226:4,46.5,-52.5,0,0,-0.00556437 -29948,3504:227:3,47,-52.5,0,0,-0.00550046 -29949,3504:227:4,47.5,-52.5,0,0,-0.00548947 -29950,3504:228:3,48,-52.5,0,0,-0.00550165 -29951,3504:228:4,48.5,-52.5,0,0,-0.00548337 -29952,3504:229:3,49,-52.5,0,0,-0.00546633 -29953,3504:229:4,49.5,-52.5,0,0,-0.00546755 -29954,3505:120:3,50,-52.5,0,0,-0.00547119 -29955,3505:120:4,50.5,-52.5,0,0,-0.00546633 -29956,3505:121:3,51,-52.5,0,0,-0.00551637 -29957,3505:121:4,51.5,-52.5,0,0,-0.0055446 -29958,3505:122:3,52,-52.5,0,0,-0.00553352 -29959,3505:122:4,52.5,-52.5,0,0,-0.00553352 -29960,3505:123:3,53,-52.5,0,0,-0.00553232 -29961,3505:123:4,53.5,-52.5,0,0,-0.00553724 -29962,3505:124:3,54,-52.5,0,0,-0.00552617 -29963,3505:124:4,54.5,-52.5,0,0,-0.00551266 -29964,3505:225:3,55,-52.5,0,0,-0.00550777 -29965,3505:225:4,55.5,-52.5,0,0,-0.00550046 -29966,3505:226:3,56,-52.5,0,0,-0.00548824 -29967,3505:226:4,56.5,-52.5,0,0,-0.00548337 -29968,3505:227:3,57,-52.5,0,0,-0.00548337 -29969,3505:227:4,57.5,-52.5,0,0,-0.00548701 -29970,3505:228:3,58,-52.5,0,0,-0.00549189 -29971,3505:228:4,58.5,-52.5,0,0,-0.00549312 -29972,3505:229:3,59,-52.5,0,0,-0.00548582 -29973,3505:229:4,59.5,-52.5,0,0,-0.00548337 -29974,3506:120:3,60,-52.5,0,0,-0.00555201 -29975,3506:120:4,60.5,-52.5,0,0,-0.00558789 -29976,3506:121:3,61,-52.5,0,0,-0.00560903 -29977,3506:121:4,61.5,-52.5,0,0,-0.00564654 -29978,3506:122:3,62,-52.5,0,0,-0.00567421 -29979,3506:122:4,62.5,-52.5,0,0,-0.00593078 -29980,3506:123:3,63,-52.5,0,0,-0.0059519 -29981,3506:123:4,63.5,-52.5,0,0,-0.00612232 -29982,3506:124:3,64,-52.5,0,0,-0.00637938 -29983,3506:124:4,64.5,-52.5,0,0,-0.00626829 -29984,3506:225:3,65,-52.5,0,0,-0.00620175 -29985,3506:225:4,65.5,-52.5,0,0,-0.00681498 -29986,3506:226:3,66,-52.5,0,0,-0.00689427 -29987,3506:226:4,66.5,-52.5,0,0,-0.00687128 -29988,3506:227:3,67,-52.5,0,0,-0.00696054 -29989,3506:227:4,67.5,-52.5,0,0,-0.00721119 -29990,3506:228:3,68,-52.5,0,0,-0.00733582 -29991,3506:228:4,68.5,-52.5,0,0,-0.00734235 -29992,3506:229:3,69,-52.5,0,0,-0.00729191 -29993,3506:229:4,69.5,-52.5,0,0,-0.00748262 -29994,3507:120:3,70,-52.5,0,0,-0.00772809 -29995,3507:120:4,70.5,-52.5,0,0,-0.00776256 -29996,3507:121:3,71,-52.5,0,0,-0.00773155 -29997,3507:121:4,71.5,-52.5,0,0,-0.00746927 -29998,3507:122:3,72,-52.5,0,0,-0.00709973 -29999,3507:122:4,72.5,-52.5,0,0,-0.00706352 -30000,3507:123:4,73.5,-52.5,0,0,-0.00706035 -30001,3507:124:3,74,-52.5,0,0,-0.00704312 -30002,3507:124:4,74.5,-52.5,0,0,-0.00696673 -30003,3507:225:3,75,-52.5,0,0,-0.00682864 -30004,3507:225:4,75.5,-52.5,0,0,-0.00662811 -30005,3507:226:3,76,-52.5,0,0,-0.0065301 -30006,3507:226:4,76.5,-52.5,0,0,-0.00645068 -30007,3507:227:3,77,-52.5,0,0,-0.00634403 -30008,3507:227:4,77.5,-52.5,0,0,-0.00621557 -30009,3507:228:3,78,-52.5,0,0,-0.00607891 -30010,3507:228:4,78.5,-52.5,0,0,-0.00600107 -30011,3507:229:3,79,-52.5,0,0,-0.00595719 -30012,3507:229:4,79.5,-52.5,0,0,-0.00592419 -30013,3508:120:3,80,-52.5,0,0,-0.00585353 -30014,3508:120:4,80.5,-52.5,0,0,-0.00577855 -30015,3508:121:3,81,-52.5,0,0,-0.00574526 -30016,3508:121:4,81.5,-52.5,0,0,-0.00571724 -30017,3508:122:3,82,-52.5,0,0,-0.00568685 -30018,3508:122:4,82.5,-52.5,0,0,-0.00562777 -30019,3508:123:3,83,-52.5,0,0,-0.00561402 -30020,3508:123:4,83.5,-52.5,0,0,-0.00562777 -30021,3508:124:3,84,-52.5,0,0,-0.00564279 -30022,3508:124:4,84.5,-52.5,0,0,-0.00565282 -30023,3508:225:3,85,-52.5,0,0,-0.00566288 -30024,3508:225:4,85.5,-52.5,0,0,-0.00566918 -30025,3508:226:3,86,-52.5,0,0,-0.00567294 -30026,3508:226:4,86.5,-52.5,0,0,-0.00573888 -30027,3508:227:3,87,-52.5,0,0,-0.00591367 -30028,3508:227:4,87.5,-52.5,0,0,-0.00610192 -30029,3508:228:3,88,-52.5,0,0,-0.00616739 -30030,3508:228:4,88.5,-52.5,0,0,-0.00618385 -30031,3508:229:3,89,-52.5,0,0,-0.00638505 -30032,3508:229:4,89.5,-52.5,0,0,-0.00667098 -30033,3509:120:3,90,-52.5,0,0,-0.00670221 -30034,3509:120:4,90.5,-52.5,0,0,-0.00652429 -30035,3509:121:3,91,-52.5,0,0,-0.00664288 -30036,3509:121:4,91.5,-52.5,0,0,-0.00697913 -30037,3509:122:3,92,-52.5,0,0,-0.00699935 -30038,3509:122:4,92.5,-52.5,0,0,-0.00673363 -30039,3509:123:3,93,-52.5,0,0,-0.00705249 -30040,3509:123:4,93.5,-52.5,0,0,-0.00750931 -30041,3509:124:3,94,-52.5,0,0,-0.00743116 -30042,3509:124:4,94.5,-52.5,0,0,-0.00728379 -30043,3509:225:3,95,-52.5,0,0,-0.00735054 -30044,3509:225:4,95.5,-52.5,0,0,-0.00741462 -30045,3509:226:3,96,-52.5,0,0,-0.00779199 -30046,3509:226:4,96.5,-52.5,0,0,-0.00810351 -30047,3509:227:3,97,-52.5,0,0,-0.0082971 -30048,3509:227:4,97.5,-52.5,0,0,-0.00839749 -30049,3509:228:3,98,-52.5,0,0,-0.00850483 -30050,3509:228:4,98.5,-52.5,0,0,-0.0085963 -30051,3509:229:3,99,-52.5,0,0,-0.00861743 -30052,3509:229:4,99.5,-52.5,0,0,-0.00850674 -30053,3510:120:3,100,-52.5,0,0,-0.00834156 -30054,3510:120:4,100.5,-52.5,0,0,-0.00814149 -30055,3510:121:3,101,-52.5,0,0,-0.00825653 -30056,3510:121:4,101.5,-52.5,0,0,-0.00855425 -30057,3510:122:3,102,-52.5,0,0,-0.00872755 -30058,3510:122:4,102.5,-52.5,0,0,-0.00883127 -30059,3510:123:3,103,-52.5,0,0,-0.00906865 -30060,3510:123:4,103.5,-52.5,0,0,-0.00923805 -30061,3510:124:3,104,-52.5,0,0,-0.00907878 -30062,3510:124:4,104.5,-52.5,0,0,-0.00865973 -30063,3510:225:3,105,-52.5,0,0,-0.00832671 -30064,3510:225:4,105.5,-52.5,0,0,-0.00822717 -30065,3510:226:3,106,-52.5,0,0,-0.00826203 -30066,3510:226:4,106.5,-52.5,0,0,-0.00829157 -30067,3510:227:3,107,-52.5,0,0,-0.00794092 -30068,3510:227:4,107.5,-52.5,0,0,-0.00751431 -30069,3510:228:3,108,-52.5,0,0,-0.00753609 -30070,3510:228:4,108.5,-52.5,0,0,-0.0075428 -30071,3510:229:3,109,-52.5,0,0,-0.00757649 -30072,3510:229:4,109.5,-52.5,0,0,-0.00762725 -30073,3511:120:3,110,-52.5,0,0,-0.0076886 -30074,3511:120:4,110.5,-52.5,0,0,-0.00771261 -30075,3511:121:3,111,-52.5,0,0,-0.00774533 -30076,3511:121:4,111.5,-52.5,0,0,-0.00787573 -30077,3511:122:3,112,-52.5,0,0,-0.00789507 -30078,3511:122:4,112.5,-52.5,0,0,-0.0079056 -30079,3511:123:3,113,-52.5,0,0,-0.00793914 -30080,3511:123:4,113.5,-52.5,0,0,-0.00807827 -30081,3511:124:3,114,-52.5,0,0,-0.00835086 -30082,3511:124:4,114.5,-52.5,0,0,-0.0086868 -30083,3511:225:3,115,-52.5,0,0,-0.00931253 -30084,3511:225:4,115.5,-52.5,0,0,-0.00967238 -30085,3511:226:3,116,-52.5,0,0,-0.00965087 -30086,3511:226:4,116.5,-52.5,0,0,-0.00959715 -30087,3511:227:3,117,-52.5,0,0,-0.00951408 -30088,3511:227:4,117.5,-52.5,0,0,-0.00935204 -30089,3511:228:3,118,-52.5,0,0,-0.00911939 -30090,3511:228:4,118.5,-52.5,0,0,-0.0090082 -30091,3511:229:3,119,-52.5,0,0,-0.00900422 -30092,3511:229:4,119.5,-52.5,0,0,-0.00900624 -30093,3512:120:3,120,-52.5,0,0,-0.00896016 -30094,3512:120:4,120.5,-52.5,0,0,-0.00892627 -30095,3512:121:3,121,-52.5,0,0,-0.00899216 -30096,3512:121:4,121.5,-52.5,0,0,-0.00902833 -30097,3512:122:3,122,-52.5,0,0,-0.00907674 -30098,3512:122:4,122.5,-52.5,0,0,-0.00941276 -30099,3512:123:3,123,-52.5,0,0,-0.00980932 -30100,3512:123:4,123.5,-52.5,0,0,-0.0102937 -30101,3512:124:3,124,-52.5,0,0,-0.0106562 -30102,3512:124:4,124.5,-52.5,0,0,-0.0105614 -30103,3512:225:3,125,-52.5,0,0,-0.0104162 -30104,3512:225:4,125.5,-52.5,0,0,-0.0104093 -30105,3512:226:3,126,-52.5,0,0,-0.0104651 -30106,3512:226:4,126.5,-52.5,0,0,-0.0105661 -30107,3512:227:3,127,-52.5,0,0,-0.0107158 -30108,3512:227:4,127.5,-52.5,0,0,-0.0107807 -30109,3512:228:3,128,-52.5,0,0,-0.0107063 -30110,3512:228:4,128.5,-52.5,0,0,-0.0104862 -30111,3512:229:3,129,-52.5,0,0,-0.0104069 -30112,3512:229:4,129.5,-52.5,0,0,-0.0107542 -30113,3513:120:3,130,-52.5,0,0,-0.0117412 -30114,3513:120:4,130.5,-52.5,0,0,-0.0121824 -30115,3513:121:3,131,-52.5,0,0,-0.012166 -30116,3513:121:4,131.5,-52.5,0,0,-0.0121416 -30117,3513:122:3,132,-52.5,0,0,-0.011921 -30118,3513:122:4,132.5,-52.5,0,0,-0.0115899 -30119,3513:123:3,133,-52.5,0,0,-0.0112682 -30120,3513:123:4,133.5,-52.5,0,0,-0.0109995 -30121,3513:124:3,134,-52.5,0,0,-0.0107566 -30122,3513:124:4,134.5,-52.5,0,0,-0.0106348 -30123,3513:225:3,135,-52.5,0,0,-0.0108192 -30124,3513:225:4,135.5,-52.5,0,0,-0.0110809 -30125,3513:226:3,136,-52.5,0,0,-0.0112782 -30126,3513:226:4,136.5,-52.5,0,0,-0.0111704 -30127,3513:227:3,137,-52.5,0,0,-0.010747 -30128,3513:227:4,137.5,-52.5,0,0,-0.0104512 -30129,3513:228:3,138,-52.5,0,0,-0.0104093 -30130,3513:228:4,138.5,-52.5,0,0,-0.0106633 -30131,3513:229:3,139,-52.5,0,0,-0.0109676 -30132,3513:229:4,139.5,-52.5,0,0,-0.0109554 -30133,3514:120:3,140,-52.5,0,0,-0.0106419 -30134,3514:120:4,140.5,-52.5,0,0,-0.010386 -30135,3514:121:3,141,-52.5,0,0,-0.0102136 -30136,3514:121:4,141.5,-52.5,0,0,-0.0100463 -30137,3514:122:3,142,-52.5,0,0,-0.00987298 -30138,3514:122:4,142.5,-52.5,0,0,-0.0098356 -30139,3514:123:3,143,-52.5,0,0,-0.0101025 -30140,3514:123:4,143.5,-52.5,0,0,-0.0105709 -30141,3514:124:3,144,-52.5,0,0,-0.0108652 -30142,3514:124:4,144.5,-52.5,0,0,-0.0107374 -30143,3514:225:3,145,-52.5,0,0,-0.0103398 -30144,3514:225:4,145.5,-52.5,0,0,-0.0101093 -30145,3514:226:3,146,-52.5,0,0,-0.0100665 -30146,3514:226:4,146.5,-52.5,0,0,-0.0101274 -30147,3514:227:3,147,-52.5,0,0,-0.010241 -30148,3514:227:4,147.5,-52.5,0,0,-0.0102983 -30149,3514:228:3,148,-52.5,0,0,-0.010159 -30150,3514:228:4,148.5,-52.5,0,0,-0.00986417 -30151,3514:229:3,149,-52.5,0,0,-0.00965731 -30152,3514:229:4,149.5,-52.5,0,0,-0.00950981 -30153,3515:120:3,150,-52.5,0,0,-0.00912342 -30154,3515:120:4,150.5,-52.5,0,0,-0.00855047 -30155,3515:121:3,151,-52.5,0,0,-0.00726921 -30156,3515:121:4,151.5,-52.5,0,0,-0.00668286 -30157,3515:122:3,152,-52.5,0,0,-0.00784422 -30158,3515:122:4,152.5,-52.5,0,0,-0.00829157 -30159,3515:123:3,153,-52.5,0,0,-0.00770921 -30160,3515:123:4,153.5,-52.5,0,0,-0.00673811 -30161,3515:124:3,154,-52.5,0,0,-0.00642495 -30162,3515:124:4,154.5,-52.5,0,0,-0.00704154 -30163,3515:225:3,155,-52.5,0,0,-0.00905053 -30164,3515:225:4,155.5,-52.5,0,0,-0.0105473 -30165,3515:226:3,156,-52.5,0,0,-0.0106776 -30166,3515:226:4,156.5,-52.5,0,0,-0.00989283 -30167,3515:227:3,157,-52.5,0,0,-0.00981587 -30168,3515:227:4,157.5,-52.5,0,0,-0.00995039 -30169,3515:228:3,158,-52.5,0,0,-0.0100486 -30170,3515:228:4,158.5,-52.5,0,0,-0.0100755 -30171,3515:229:3,159,-52.5,0,0,-0.010098 -30172,3515:229:4,159.5,-52.5,0,0,-0.0101772 -30173,3516:120:3,160,-52.5,0,0,-0.0103675 -30174,3516:120:4,160.5,-52.5,0,0,-0.010649 -30175,3516:121:3,161,-52.5,0,0,-0.0114714 -30176,3516:121:4,161.5,-52.5,0,0,-0.0125558 -30177,3516:122:3,162,-52.5,0,0,-0.0129496 -30178,3516:122:4,162.5,-52.5,0,0,-0.0130048 -30179,3516:123:3,163,-52.5,0,0,-0.0129062 -30180,3516:123:4,163.5,-52.5,0,0,-0.0129293 -30181,3516:124:3,164,-52.5,0,0,-0.01316 -30182,3516:124:4,164.5,-52.5,0,0,-0.0135547 -30183,3516:225:3,165,-52.5,0,0,-0.0140493 -30184,3516:225:4,165.5,-52.5,0,0,-0.0140242 -30185,3516:226:3,166,-52.5,0,0,-0.0135578 -30186,3516:226:4,166.5,-52.5,0,0,-0.013326 -30187,3516:227:3,167,-52.5,0,0,-0.0139459 -30188,3516:227:4,167.5,-52.5,0,0,-0.0147892 -30189,3516:228:3,168,-52.5,0,0,-0.0153916 -30190,3516:228:4,168.5,-52.5,0,0,-0.015922 -30191,3516:229:3,169,-52.5,0,0,-0.0164267 -30192,3516:229:4,169.5,-52.5,0,0,-0.0173135 -30193,3517:120:3,170,-52.5,0,0,-0.0184304 -30194,3517:120:4,170.5,-52.5,0,0,-0.0194142 -30195,3517:121:3,171,-52.5,0,0,-0.0199822 -30196,3517:121:4,171.5,-52.5,0,0,-0.0198297 -30197,3517:122:3,172,-52.5,0,0,-0.0195724 -30198,3517:122:4,172.5,-52.5,0,0,-0.0195767 -30199,3517:123:3,173,-52.5,0,0,-0.0197228 -30200,3517:123:4,173.5,-52.5,0,0,-0.0197228 -30201,3517:124:3,174,-52.5,0,0,-0.0195855 -30202,3517:124:4,174.5,-52.5,0,0,-0.0194623 -30203,3517:225:3,175,-52.5,0,0,-0.0193575 -30204,3517:225:4,175.5,-52.5,0,0,-0.0192574 -30205,3517:226:3,176,-52.5,0,0,-0.0191365 -30206,3517:226:4,176.5,-52.5,0,0,-0.0190076 -30207,3517:227:3,177,-52.5,0,0,-0.0188967 -30208,3517:227:4,177.5,-52.5,0,0,-0.0181629 -30209,3517:228:3,178,-52.5,0,0,-0.0167133 -30210,3517:228:4,178.5,-52.5,0,0,-0.0163164 -30211,3517:229:3,179,-52.5,0,0,-0.016766 -30212,3517:229:4,179.5,-52.5,0,0,-0.0170356 -30213,3518:120:3,180,-52.5,0,0,-0.0151824 -30214,5518:120:1,-180,-52,0,0,-0.0145589 -30215,5517:229:2,-179.5,-52,0,0,-0.0131659 -30216,5517:229:1,-179,-52,0,0,-0.0131483 -30217,5517:228:2,-178.5,-52,0,0,-0.0135335 -30218,5517:228:1,-178,-52,0,0,-0.0138152 -30219,5517:227:2,-177.5,-52,0,0,-0.0137104 -30220,5517:227:1,-177,-52,0,0,-0.0133799 -30221,5517:226:2,-176.5,-52,0,0,-0.013341 -30222,5517:226:1,-176,-52,0,0,-0.0137473 -30223,5517:225:2,-175.5,-52,0,0,-0.0140085 -30224,5517:225:1,-175,-52,0,0,-0.0137689 -30225,5517:124:2,-174.5,-52,0,0,-0.0128947 -30226,5517:124:1,-174,-52,0,0,-0.0123968 -30227,5517:123:2,-173.5,-52,0,0,-0.0126235 -30228,5517:123:1,-173,-52,0,0,-0.0129525 -30229,5517:122:2,-172.5,-52,0,0,-0.0130135 -30230,5517:122:1,-172,-52,0,0,-0.0128889 -30231,5517:121:2,-171.5,-52,0,0,-0.0128055 -30232,5517:121:1,-171,-52,0,0,-0.0128084 -30233,5517:120:2,-170.5,-52,0,0,-0.0127455 -30234,5517:120:1,-170,-52,0,0,-0.0124245 -30235,5516:229:2,-169.5,-52,0,0,-0.011921 -30236,5516:229:1,-169,-52,0,0,-0.0115305 -30237,5516:228:2,-168.5,-52,0,0,-0.0114305 -30238,5516:228:1,-168,-52,0,0,-0.0115744 -30239,5516:227:2,-167.5,-52,0,0,-0.0117464 -30240,5516:227:1,-167,-52,0,0,-0.0118599 -30241,5516:226:2,-166.5,-52,0,0,-0.0120928 -30242,5516:226:1,-166,-52,0,0,-0.0123719 -30243,5516:225:2,-165.5,-52,0,0,-0.0127998 -30244,5516:225:1,-165,-52,0,0,-0.0133619 -30245,5516:124:2,-164.5,-52,0,0,-0.0138586 -30246,5516:124:1,-164,-52,0,0,-0.0140021 -30247,5516:123:2,-163.5,-52,0,0,-0.0136552 -30248,5516:123:1,-163,-52,0,0,-0.0130048 -30249,5516:122:2,-162.5,-52,0,0,-0.0124691 -30250,5516:122:1,-162,-52,0,0,-0.0124162 -30251,5516:121:2,-161.5,-52,0,0,-0.0126461 -30252,5516:121:1,-161,-52,0,0,-0.0127141 -30253,5516:120:2,-160.5,-52,0,0,-0.0125166 -30254,5516:120:1,-160,-52,0,0,-0.0121878 -30255,5515:229:2,-159.5,-52,0,0,-0.0118307 -30256,5515:229:1,-159,-52,0,0,-0.0115563 -30257,5515:228:2,-158.5,-52,0,0,-0.0117385 -30258,5515:228:1,-158,-52,0,0,-0.0126971 -30259,5515:227:2,-157.5,-52,0,0,-0.0136004 -30260,5515:227:1,-157,-52,0,0,-0.0142778 -30261,5515:226:2,-156.5,-52,0,0,-0.0145426 -30262,5515:226:1,-156,-52,0,0,-0.0142778 -30263,5515:225:2,-155.5,-52,0,0,-0.0132754 -30264,5515:225:1,-155,-52,0,0,-0.0107807 -30265,5515:124:2,-154.5,-52,0,0,-0.00910513 -30266,5515:124:1,-154,-52,0,0,-0.00811073 -30267,5515:123:2,-153.5,-52,0,0,-0.00810527 -30268,5515:123:1,-153,-52,0,0,-0.00813602 -30269,5515:122:2,-152.5,-52,0,0,-0.00837696 -30270,5515:122:1,-152,-52,0,0,-0.00836205 -30271,5515:121:2,-151.5,-52,0,0,-0.00830082 -30272,5515:121:1,-151,-52,0,0,-0.00837321 -30273,5515:120:2,-150.5,-52,0,0,-0.00863467 -30274,5515:120:1,-150,-52,0,0,-0.00925045 -30275,5514:229:2,-149.5,-52,0,0,-0.00947382 -30276,5514:229:1,-149,-52,0,0,-0.00953742 -30277,5514:228:2,-148.5,-52,0,0,-0.00917035 -30278,5514:228:1,-148,-52,0,0,-0.00970265 -30279,5514:227:2,-147.5,-52,0,0,-0.0122206 -30280,5514:227:1,-147,-52,0,0,-0.0126772 -30281,5514:226:2,-146.5,-52,0,0,-0.0127941 -30282,5514:226:1,-146,-52,0,0,-0.0131012 -30283,5514:225:2,-145.5,-52,0,0,-0.0142013 -30284,5514:225:1,-145,-52,0,0,-0.0153158 -30285,5514:124:2,-144.5,-52,0,0,-0.0173993 -30286,5514:124:1,-144,-52,0,0,-0.0181751 -30287,5514:123:2,-143.5,-52,0,0,-0.0196209 -30288,5514:123:1,-143,-52,0,0,-0.0192357 -30289,5514:122:2,-142.5,-52,0,0,-0.0191062 -30290,5514:122:1,-142,-52,0,0,-0.0206044 -30291,5514:121:2,-141.5,-52,0,0,-0.0239001 -30292,5514:121:1,-141,-52,0,0,-0.0234821 -30293,5514:120:2,-140.5,-52,0,0,-0.023297 -30294,5514:120:1,-140,-52,0,0,-0.0234185 -30295,5513:229:2,-139.5,-52,0,0,-0.0223482 -30296,5513:229:1,-139,-52,0,0,-0.0207817 -30297,5513:228:2,-138.5,-52,0,0,-0.0194142 -30298,5513:228:1,-138,-52,0,0,-0.0180691 -30299,5513:227:2,-137.5,-52,0,0,-0.0165639 -30300,5513:227:1,-137,-52,0,0,-0.0156598 -30301,5513:226:2,-136.5,-52,0,0,-0.0152097 -30302,5513:226:1,-136,-52,0,0,-0.01544 -30303,5513:225:2,-135.5,-52,0,0,-0.0158792 -30304,5513:225:1,-135,-52,0,0,-0.0156809 -30305,5513:124:2,-134.5,-52,0,0,-0.0151484 -30306,5513:124:1,-134,-52,0,0,-0.014667 -30307,5513:123:2,-133.5,-52,0,0,-0.0149425 -30308,5513:123:1,-133,-52,0,0,-0.0156668 -30309,5513:122:2,-132.5,-52,0,0,-0.0159006 -30310,5513:122:1,-132,-52,0,0,-0.0151077 -30311,5513:121:2,-131.5,-52,0,0,-0.014839 -30312,5513:121:1,-131,-52,0,0,-0.015762 -30313,5513:120:2,-130.5,-52,0,0,-0.0157904 -30314,5513:120:1,-130,-52,0,0,-0.0160585 -30315,5512:229:2,-129.5,-52,0,0,-0.0165824 -30316,5512:229:1,-129,-52,0,0,-0.0165341 -30317,5512:228:2,-128.5,-52,0,0,-0.0159364 -30318,5512:228:1,-128,-52,0,0,-0.0151892 -30319,5512:227:2,-127.5,-52,0,0,-0.0148656 -30320,5512:227:1,-127,-52,0,0,-0.0153055 -30321,5512:226:2,-126.5,-52,0,0,-0.0160441 -30322,5512:226:1,-126,-52,0,0,-0.0165899 -30323,5512:225:2,-125.5,-52,0,0,-0.0165974 -30324,5512:225:1,-125,-52,0,0,-0.0167283 -30325,5512:124:2,-124.5,-52,0,0,-0.0183147 -30326,5512:124:1,-124,-52,0,0,-0.0195018 -30327,5512:123:2,-123.5,-52,0,0,-0.0196784 -30328,5512:123:1,-123,-52,0,0,-0.0199058 -30329,5512:122:2,-122.5,-52,0,0,-0.0197361 -30330,5512:122:1,-122,-52,0,0,-0.018702 -30331,5512:121:2,-121.5,-52,0,0,-0.0175446 -30332,5512:121:1,-121,-52,0,0,-0.0173018 -30333,5512:120:2,-120.5,-52,0,0,-0.0174502 -30334,5512:120:1,-120,-52,0,0,-0.0170471 -30335,5511:229:2,-119.5,-52,0,0,-0.0163201 -30336,5511:229:1,-119,-52,0,0,-0.0160981 -30337,5511:228:2,-118.5,-52,0,0,-0.016167 -30338,5511:228:1,-118,-52,0,0,-0.016423 -30339,5511:227:2,-117.5,-52,0,0,-0.0167735 -30340,5511:227:1,-117,-52,0,0,-0.0171045 -30341,5511:226:2,-116.5,-52,0,0,-0.0174699 -30342,5511:226:1,-116,-52,0,0,-0.017719 -30343,5511:225:2,-115.5,-52,0,0,-0.0175999 -30344,5511:225:1,-115,-52,0,0,-0.0174032 -30345,5511:124:2,-114.5,-52,0,0,-0.0173174 -30346,5511:124:1,-114,-52,0,0,-0.0173095 -30347,5511:123:2,-113.5,-52,0,0,-0.0177669 -30348,5511:123:1,-113,-52,0,0,-0.0184886 -30349,5511:122:2,-112.5,-52,0,0,-0.0174973 -30350,5511:122:1,-112,-52,0,0,-0.0161452 -30351,5511:121:2,-111.5,-52,0,0,-0.0161199 -30352,5511:121:1,-111,-52,0,0,-0.0166683 -30353,5511:120:2,-110.5,-52,0,0,-0.017827 -30354,5511:120:1,-110,-52,0,0,-0.0182899 -30355,5510:229:2,-109.5,-52,0,0,-0.0179556 -30356,5510:229:1,-109,-52,0,0,-0.0175801 -30357,5510:228:2,-108.5,-52,0,0,-0.0172668 -30358,5510:228:1,-108,-52,0,0,-0.0170662 -30359,5510:227:2,-107.5,-52,0,0,-0.0170931 -30360,5510:227:1,-107,-52,0,0,-0.0172126 -30361,5510:226:2,-106.5,-52,0,0,-0.0171045 -30362,5510:226:1,-106,-52,0,0,-0.0165639 -30363,5510:225:2,-105.5,-52,0,0,-0.0158437 -30364,5510:225:1,-105,-52,0,0,-0.0154886 -30365,5510:124:2,-104.5,-52,0,0,-0.0156949 -30366,5510:124:1,-104,-52,0,0,-0.0165861 -30367,5510:123:2,-103.5,-52,0,0,-0.0176276 -30368,5510:123:1,-103,-52,0,0,-0.0184595 -30369,5510:122:2,-102.5,-52,0,0,-0.019785 -30370,5510:122:1,-102,-52,0,0,-0.0208052 -30371,5510:121:2,-101.5,-52,0,0,-0.0209605 -30372,5510:121:1,-101,-52,0,0,-0.0205486 -30373,5510:120:2,-100.5,-52,0,0,-0.0192965 -30374,5510:120:1,-100,-52,0,0,-0.018212 -30375,5509:229:2,-99.5,-52,0,0,-0.0179517 -30376,5509:229:1,-99,-52,0,0,-0.0185469 -30377,5509:228:2,-98.5,-52,0,0,-0.0196385 -30378,5509:228:1,-98,-52,0,0,-0.0201269 -30379,5509:227:2,-97.5,-52,0,0,-0.0195811 -30380,5509:227:1,-97,-52,0,0,-0.0178952 -30381,5509:226:2,-96.5,-52,0,0,-0.016781 -30382,5509:226:1,-96,-52,0,0,-0.0166609 -30383,5509:225:2,-95.5,-52,0,0,-0.0166085 -30384,5509:225:1,-95,-52,0,0,-0.0171971 -30385,5509:124:2,-94.5,-52,0,0,-0.0182612 -30386,5509:124:1,-94,-52,0,0,-0.0188203 -30387,5509:123:2,-93.5,-52,0,0,-0.0185928 -30388,5509:123:1,-93,-52,0,0,-0.0171701 -30389,5509:122:2,-92.5,-52,0,0,-0.0158792 -30390,5509:122:1,-92,-52,0,0,-0.0152678 -30391,5509:121:2,-91.5,-52,0,0,-0.0151484 -30392,5509:121:1,-91,-52,0,0,-0.0152028 -30393,5509:120:2,-90.5,-52,0,0,-0.0151721 -30394,5509:120:1,-90,-52,0,0,-0.0151858 -30395,5508:229:2,-89.5,-52,0,0,-0.015709 -30396,5508:229:1,-89,-52,0,0,-0.0171084 -30397,5508:228:2,-88.5,-52,0,0,-0.0180813 -30398,5508:228:1,-88,-52,0,0,-0.0181017 -30399,5508:227:2,-87.5,-52,0,0,-0.0176276 -30400,5508:227:1,-87,-52,0,0,-0.0175368 -30401,5508:226:2,-86.5,-52,0,0,-0.0176872 -30402,5508:226:1,-86,-52,0,0,-0.017855 -30403,5508:225:2,-85.5,-52,0,0,-0.0179234 -30404,5508:225:1,-85,-52,0,0,-0.0177949 -30405,5508:124:2,-84.5,-52,0,0,-0.0176514 -30406,5508:124:1,-84,-52,0,0,-0.0177031 -30407,5508:123:2,-83.5,-52,0,0,-0.0178871 -30408,5508:123:1,-83,-52,0,0,-0.0182079 -30409,5508:122:2,-82.5,-52,0,0,-0.0186013 -30410,5508:122:1,-82,-52,0,0,-0.0191838 -30411,5508:121:2,-81.5,-52,0,0,-0.0194186 -30412,5508:121:1,-81,-52,0,0,-0.0194098 -30413,5508:120:2,-80.5,-52,0,0,-0.019102 -30414,5508:120:1,-80,-52,0,0,-0.0185511 -30415,5507:229:2,-79.5,-52,0,0,-0.0179638 -30416,5507:229:1,-79,-52,0,0,-0.0178711 -30417,5507:228:2,-78.5,-52,0,0,-0.0187188 -30418,5507:228:1,-78,-52,0,0,-0.0198924 -30419,5507:227:2,-77.5,-52,0,0,-0.0204424 -30420,5507:227:1,-77,-52,0,0,-0.0204515 -30421,5507:226:2,-76.5,-52,0,0,-0.0202087 -30422,5507:226:1,-76,-52,0,0,-0.0198387 -30423,5507:225:2,-75.5,-52,0,0,-0.0195987 -30424,5507:225:1,-75,-52,0,0,-0.0194712 -30425,5507:124:2,-74.5,-52,0,0,-0.0191493 -30426,5507:124:1,-74,-52,0,0,-0.0185678 -30427,5507:123:2,-73.5,-52,0,0,-0.0176633 -30428,5507:123:1,-73,-52,0,0,-0.0167697 -30429,5507:122:2,-72.5,-52,0,0,-0.0168945 -30430,5507:122:1,-72,-52,0,0,-0.0169135 -30431,5507:121:2,-71.5,-52,0,0,-0.0163532 -30432,5507:121:1,-71,-52,0,0,-0.0159793 -30433,5507:120:2,-70.5,-52,0,0,-0.0158792 -30434,5507:120:1,-70,-52,0,0,-0.0158329 -30435,5506:229:2,-69.5,-52,0,0,-0.0159507 -30436,5506:229:1,-69,-52,0,0,-0.0152643 -30437,5506:228:2,-68.5,-52,0,0,-0.0139991 -30438,5506:228:1,-68,-52,0,0,-0.0125587 -30439,5506:227:2,-67.5,-52,0,0,-0.0123691 -30440,5506:227:1,-67,-52,0,0,-0.0132606 -30441,5506:226:2,-66.5,-52,0,0,-0.0131511 -30442,5506:226:1,-66,-52,0,0,-0.0128832 -30443,5506:225:2,-65.5,-52,0,0,-0.0123304 -30444,5506:225:1,-65,-52,0,0,-0.0112129 -30445,5506:124:2,-64.5,-52,0,0,-0.0096487 -30446,5506:124:1,-64,-52,0,0,-0.00860396 -30447,5506:123:2,-63.5,-52,0,0,-0.00817782 -30448,5506:123:1,-63,-52,0,0,-0.00860016 -30449,5506:122:2,-62.5,-52,0,0,-0.00892828 -30450,5506:122:1,-62,-52,0,0,-0.00898617 -30451,5506:121:2,-61.5,-52,0,0,-0.00914175 -30452,5506:121:1,-61,-52,0,0,-0.00946751 -30453,5506:120:2,-60.5,-52,0,0,-0.00980932 -30454,5506:120:1,-60,-52,0,0,-0.00996151 -30455,5505:229:2,-59.5,-52,0,0,-0.0101659 -30456,5505:229:1,-59,-52,0,0,-0.0100127 -30457,5505:228:2,-58.5,-52,0,0,-0.00949707 -30458,5505:228:1,-58,-52,0,0,-0.00898818 -30459,5505:227:2,-57.5,-52,0,0,-0.00854094 -30460,5505:227:1,-57,-52,0,0,-0.00808183 -30461,5505:226:2,-56.5,-52,0,0,-0.00750594 -30462,5505:226:1,-56,-52,0,0,-0.00675762 -30463,5505:225:2,-55.5,-52,0,0,-0.0068759 -30464,5505:225:1,-55,-52,0,0,-0.00684079 -30465,5505:124:2,-54.5,-52,0,0,-0.00666062 -30466,5505:124:1,-54,-52,0,0,-0.0066948 -30467,5505:123:2,-53.5,-52,0,0,-0.00606137 -30468,5505:123:1,-53,-52,0,0,-0.00588873 -30469,5505:122:2,-52.5,-52,0,0,-0.00583665 -30470,5505:122:1,-52,-52,0,0,-0.00579657 -30471,5505:121:2,-51.5,-52,0,0,-0.00573378 -30472,5505:121:1,-51,-52,0,0,-0.00568685 -30473,5505:120:2,-50.5,-52,0,0,-0.00571092 -30474,5505:120:1,-50,-52,0,0,-0.0057033 -30475,5504:229:2,-49.5,-52,0,0,-0.00563151 -30476,5504:229:1,-49,-52,0,0,-0.00549923 -30477,5504:228:2,-48.5,-52,0,0,-0.00544816 -30478,5504:228:1,-48,-52,0,0,-0.00552494 -30479,5504:227:2,-47.5,-52,0,0,-0.00551024 -30480,5504:227:1,-47,-52,0,0,-0.00549069 -30481,5504:226:2,-46.5,-52,0,0,-0.00549069 -30482,5504:226:1,-46,-52,0,0,-0.00553352 -30483,5504:225:2,-45.5,-52,0,0,-0.00560531 -30484,5504:225:1,-45,-52,0,0,-0.00557672 -30485,5504:124:2,-44.5,-52,0,0,-0.00552494 -30486,5504:124:1,-44,-52,0,0,-0.00557672 -30487,5504:123:2,-43.5,-52,0,0,-0.00588091 -30488,5504:123:1,-43,-52,0,0,-0.00611552 -30489,5504:122:2,-42.5,-52,0,0,-0.0061237 -30490,5504:122:1,-42,-52,0,0,-0.00614004 -30491,5504:121:2,-41.5,-52,0,0,-0.00592817 -30492,5504:121:1,-41,-52,0,0,-0.00586784 -30493,5504:120:2,-40.5,-52,0,0,-0.00582498 -30494,5504:120:1,-40,-52,0,0,-0.00582498 -30495,5503:229:2,-39.5,-52,0,0,-0.00578757 -30496,5503:229:1,-39,-52,0,0,-0.00592817 -30497,5503:228:2,-38.5,-52,0,0,-0.00671564 -30498,5503:228:1,-38,-52,0,0,-0.00713302 -30499,5503:227:2,-37.5,-52,0,0,-0.00694972 -30500,5503:227:1,-37,-52,0,0,-0.00643922 -30501,5503:226:2,-36.5,-52,0,0,-0.00596382 -30502,5503:226:1,-36,-52,0,0,-0.00569318 -30503,5503:225:2,-35.5,-52,0,0,-0.00565658 -30504,5503:225:1,-35,-52,0,0,-0.00580818 -30505,5503:124:2,-34.5,-52,0,0,-0.00590449 -30506,5503:124:1,-34,-52,0,0,-0.00589793 -30507,5503:123:2,-33.5,-52,0,0,-0.00596912 -30508,5503:123:1,-33,-52,0,0,-0.00570458 -30509,5503:122:2,-32.5,-52,0,0,-0.00548091 -30510,5503:122:1,-32,-52,0,0,-0.00544935 -30511,5503:121:2,-31.5,-52,0,0,-0.00552861 -30512,5503:121:1,-31,-52,0,0,-0.00554708 -30513,5503:120:2,-30.5,-52,0,0,-0.00546392 -30514,5503:120:1,-30,-52,0,0,-0.00545663 -30515,5502:229:2,-29.5,-52,0,0,-0.00546026 -30516,5502:229:1,-29,-52,0,0,-0.00546148 -30517,5502:228:2,-28.5,-52,0,0,-0.00546026 -30518,5502:228:1,-28,-52,0,0,-0.00546026 -30519,5502:227:2,-27.5,-52,0,0,-0.00545907 -30520,5502:227:1,-27,-52,0,0,-0.00545785 -30521,5502:226:2,-26.5,-52,0,0,-0.00545907 -30522,5502:226:1,-26,-52,0,0,-0.00547119 -30523,5502:225:2,-25.5,-52,0,0,-0.00557302 -30524,5502:225:1,-25,-52,0,0,-0.00583922 -30525,5502:124:2,-24.5,-52,0,0,-0.00664581 -30526,5502:124:1,-24,-52,0,0,-0.00706505 -30527,5502:123:2,-23.5,-52,0,0,-0.00727405 -30528,5502:123:1,-23,-52,0,0,-0.00641781 -30529,5502:122:2,-22.5,-52,0,0,-0.00584053 -30530,5502:122:1,-22,-52,0,0,-0.00626693 -30531,5502:121:2,-21.5,-52,0,0,-0.00617153 -30532,5502:121:1,-21,-52,0,0,-0.00576829 -30533,5502:120:2,-20.5,-52,0,0,-0.00562278 -30534,5502:120:1,-20,-52,0,0,-0.00564654 -30535,5501:229:2,-19.5,-52,0,0,-0.00576059 -30536,5501:229:1,-19,-52,0,0,-0.00586005 -30537,5501:228:2,-18.5,-52,0,0,-0.00582368 -30538,5501:228:1,-18,-52,0,0,-0.00563025 -30539,5501:227:2,-17.5,-52,0,0,-0.00556807 -30540,5501:227:1,-17,-52,0,0,-0.00555694 -30541,5501:226:2,-16.5,-52,0,0,-0.00554708 -30542,5501:226:1,-16,-52,0,0,-0.00554953 -30543,5501:225:2,-15.5,-52,0,0,-0.00562026 -30544,5501:225:1,-15,-52,0,0,-0.00560033 -30545,5501:124:2,-14.5,-52,0,0,-0.00557177 -30546,5501:124:1,-14,-52,0,0,-0.00553724 -30547,5501:123:2,-13.5,-52,0,0,-0.00550777 -30548,5501:123:1,-13,-52,0,0,-0.00545785 -30549,5501:122:2,-12.5,-52,0,0,-0.00545179 -30550,5501:122:1,-12,-52,0,0,-0.00545423 -30551,5501:121:2,-11.5,-52,0,0,-0.00545541 -30552,5501:121:1,-11,-52,0,0,-0.00545423 -30553,5501:120:2,-10.5,-52,0,0,-0.005453 -30554,5501:120:1,-10,-52,0,0,-0.005453 -30555,5500:229:2,-9.5,-52,0,0,-0.00545423 -30556,5500:229:1,-9,-52,0,0,-0.00545541 -30557,5500:228:2,-8.5,-52,0,0,-0.00545663 -30558,5500:228:1,-8,-52,0,0,-0.00545663 -30559,5500:227:2,-7.5,-52,0,0,-0.00545663 -30560,5500:227:1,-7,-52,0,0,-0.00545541 -30561,5500:226:2,-6.5,-52,0,0,-0.00545423 -30562,5500:226:1,-6,-52,0,0,-0.005453 -30563,5500:225:2,-5.5,-52,0,0,-0.005453 -30564,5500:225:1,-5,-52,0,0,-0.00545179 -30565,5500:124:2,-4.5,-52,0,0,-0.00545057 -30566,5500:124:1,-4,-52,0,0,-0.00544935 -30567,5500:123:2,-3.5,-52,0,0,-0.00544816 -30568,5500:123:1,-3,-52,0,0,-0.00544695 -30569,5500:122:2,-2.5,-52,0,0,-0.00544573 -30570,5500:122:1,-2,-52,0,0,-0.00544451 -30571,5500:121:2,-1.5,-52,0,0,-0.00544333 -30572,5500:121:1,-1,-52,0,0,-0.00544695 -30573,5500:120:2,-0.5,-52,0,0,-0.00544935 -30574,3500:120:2,0,-52,0,0,-0.00544935 -30575,3500:120:2,0.5,-52,0,0,-0.005453 -30576,3500:121:1,1,-52,0,0,-0.00545423 -30577,3500:121:2,1.5,-52,0,0,-0.00547 -30578,3500:122:1,2,-52,0,0,-0.00551637 -30579,3500:122:2,2.5,-52,0,0,-0.00553848 -30580,3500:123:1,3,-52,0,0,-0.00554832 -30581,3500:123:2,3.5,-52,0,0,-0.00556064 -30582,3500:124:1,4,-52,0,0,-0.00556932 -30583,3500:124:2,4.5,-52,0,0,-0.00557797 -30584,3500:225:1,5,-52,0,0,-0.00559039 -30585,3500:225:2,5.5,-52,0,0,-0.00559536 -30586,3500:226:1,6,-52,0,0,-0.00558789 -30587,3500:226:2,6.5,-52,0,0,-0.00558418 -30588,3500:227:1,7,-52,0,0,-0.00557797 -30589,3500:227:2,7.5,-52,0,0,-0.00556188 -30590,3500:228:1,8,-52,0,0,-0.00554216 -30591,3500:228:2,8.5,-52,0,0,-0.0055225 -30592,3500:229:1,9,-52,0,0,-0.00549189 -30593,3500:229:2,9.5,-52,0,0,-0.00547119 -30594,3501:120:1,10,-52,0,0,-0.00546633 -30595,3501:120:2,10.5,-52,0,0,-0.00546511 -30596,3501:121:1,11,-52,0,0,-0.0054627 -30597,3501:121:2,11.5,-52,0,0,-0.00545541 -30598,3501:122:1,12,-52,0,0,-0.00544451 -30599,3501:122:2,12.5,-52,0,0,-0.00544451 -30600,3501:123:1,13,-52,0,0,-0.00544573 -30601,3501:123:2,13.5,-52,0,0,-0.00544816 -30602,3501:124:1,14,-52,0,0,-0.00544935 -30603,3501:124:2,14.5,-52,0,0,-0.00545057 -30604,3501:225:1,15,-52,0,0,-0.00544935 -30605,3501:225:2,15.5,-52,0,0,-0.00544935 -30606,3501:226:1,16,-52,0,0,-0.00544935 -30607,3501:226:2,16.5,-52,0,0,-0.00545057 -30608,3501:227:1,17,-52,0,0,-0.00545179 -30609,3501:227:2,17.5,-52,0,0,-0.00545179 -30610,3501:228:1,18,-52,0,0,-0.00545179 -30611,3501:228:2,18.5,-52,0,0,-0.00545423 -30612,3501:229:1,19,-52,0,0,-0.00545423 -30613,3501:229:2,19.5,-52,0,0,-0.00545423 -30614,3502:120:1,20,-52,0,0,-0.005453 -30615,3502:120:2,20.5,-52,0,0,-0.00545785 -30616,3502:121:1,21,-52,0,0,-0.00545423 -30617,3502:121:2,21.5,-52,0,0,-0.00545541 -30618,3502:122:1,22,-52,0,0,-0.00545541 -30619,3502:122:2,22.5,-52,0,0,-0.00545423 -30620,3502:123:1,23,-52,0,0,-0.00545541 -30621,3502:123:2,23.5,-52,0,0,-0.00545907 -30622,3502:124:1,24,-52,0,0,-0.00546392 -30623,3502:124:2,24.5,-52,0,0,-0.00546633 -30624,3502:225:1,25,-52,0,0,-0.00546148 -30625,3502:225:2,25.5,-52,0,0,-0.00546148 -30626,3502:226:1,26,-52,0,0,-0.00546633 -30627,3502:226:2,26.5,-52,0,0,-0.00549557 -30628,3502:227:1,27,-52,0,0,-0.00550288 -30629,3502:227:2,27.5,-52,0,0,-0.00551147 -30630,3502:228:1,28,-52,0,0,-0.0055139 -30631,3502:228:2,28.5,-52,0,0,-0.00551024 -30632,3502:229:1,29,-52,0,0,-0.00549069 -30633,3502:229:2,29.5,-52,0,0,-0.00549069 -30634,3503:120:1,30,-52,0,0,-0.00549312 -30635,3503:120:2,30.5,-52,0,0,-0.00550288 -30636,3503:121:1,31,-52,0,0,-0.00552494 -30637,3503:121:2,31.5,-52,0,0,-0.0055237 -30638,3503:122:1,32,-52,0,0,-0.00554092 -30639,3503:122:2,32.5,-52,0,0,-0.00555325 -30640,3503:123:1,33,-52,0,0,-0.005536 -30641,3503:123:2,33.5,-52,0,0,-0.00551756 -30642,3503:124:1,34,-52,0,0,-0.00551513 -30643,3503:124:2,34.5,-52,0,0,-0.00552003 -30644,3503:225:1,35,-52,0,0,-0.00553352 -30645,3503:225:2,35.5,-52,0,0,-0.00554584 -30646,3503:226:1,36,-52,0,0,-0.00555943 -30647,3503:226:2,36.5,-52,0,0,-0.00556932 -30648,3503:227:1,37,-52,0,0,-0.00558789 -30649,3503:227:2,37.5,-52,0,0,-0.00560656 -30650,3503:228:1,38,-52,0,0,-0.00561778 -30651,3503:228:2,38.5,-52,0,0,-0.00562777 -30652,3503:229:1,39,-52,0,0,-0.00564153 -30653,3503:229:2,39.5,-52,0,0,-0.00567171 -30654,3504:120:1,40,-52,0,0,-0.00571216 -30655,3504:120:2,40.5,-52,0,0,-0.0057236 -30656,3504:121:1,41,-52,0,0,-0.00572741 -30657,3504:121:2,41.5,-52,0,0,-0.00573763 -30658,3504:122:1,42,-52,0,0,-0.00575294 -30659,3504:122:2,42.5,-52,0,0,-0.00574912 -30660,3504:123:1,43,-52,0,0,-0.00571092 -30661,3504:123:2,43.5,-52,0,0,-0.00569445 -30662,3504:124:1,44,-52,0,0,-0.0056818 -30663,3504:124:2,44.5,-52,0,0,-0.00566038 -30664,3504:225:1,45,-52,0,0,-0.00566668 -30665,3504:225:2,45.5,-52,0,0,-0.00567803 -30666,3504:226:1,46,-52,0,0,-0.00568307 -30667,3504:226:2,46.5,-52,0,0,-0.00558543 -30668,3504:227:1,47,-52,0,0,-0.00552741 -30669,3504:227:2,47.5,-52,0,0,-0.00548582 -30670,3504:228:1,48,-52,0,0,-0.00548947 -30671,3504:228:2,48.5,-52,0,0,-0.00549677 -30672,3504:229:1,49,-52,0,0,-0.00549069 -30673,3504:229:2,49.5,-52,0,0,-0.00549069 -30674,3505:120:1,50,-52,0,0,-0.00550165 -30675,3505:120:2,50.5,-52,0,0,-0.00547972 -30676,3505:121:1,51,-52,0,0,-0.00546878 -30677,3505:121:2,51.5,-52,0,0,-0.00547727 -30678,3505:122:1,52,-52,0,0,-0.00551756 -30679,3505:122:2,52.5,-52,0,0,-0.00556064 -30680,3505:123:1,53,-52,0,0,-0.00555325 -30681,3505:123:2,53.5,-52,0,0,-0.00553848 -30682,3505:124:1,54,-52,0,0,-0.00553848 -30683,3505:124:2,54.5,-52,0,0,-0.00552861 -30684,3505:225:1,55,-52,0,0,-0.0055434 -30685,3505:225:2,55.5,-52,0,0,-0.0055545 -30686,3505:226:1,56,-52,0,0,-0.00552861 -30687,3505:226:2,56.5,-52,0,0,-0.00549677 -30688,3505:227:1,57,-52,0,0,-0.00547364 -30689,3505:227:2,57.5,-52,0,0,-0.00549677 -30690,3505:228:1,58,-52,0,0,-0.00551513 -30691,3505:228:2,58.5,-52,0,0,-0.00555077 -30692,3505:229:1,59,-52,0,0,-0.00555694 -30693,3505:229:2,59.5,-52,0,0,-0.00552617 -30694,3506:120:1,60,-52,0,0,-0.00550411 -30695,3506:120:2,60.5,-52,0,0,-0.00554092 -30696,3506:121:1,61,-52,0,0,-0.00560531 -30697,3506:121:2,61.5,-52,0,0,-0.00574912 -30698,3506:122:1,62,-52,0,0,-0.00568685 -30699,3506:122:2,62.5,-52,0,0,-0.00572108 -30700,3506:123:1,63,-52,0,0,-0.00582755 -30701,3506:123:2,63.5,-52,0,0,-0.00664581 -30702,3506:124:1,64,-52,0,0,-0.00730162 -30703,3506:124:2,64.5,-52,0,0,-0.00701963 -30704,3506:225:1,65,-52,0,0,-0.00653591 -30705,3506:225:2,65.5,-52,0,0,-0.00644495 -30706,3506:226:1,66,-52,0,0,-0.00658698 -30707,3506:226:2,66.5,-52,0,0,-0.00668286 -30708,3506:227:1,67,-52,0,0,-0.0068241 -30709,3506:227:2,67.5,-52,0,0,-0.00709341 -30710,3506:228:1,68,-52,0,0,-0.00741628 -30711,3506:228:2,68.5,-52,0,0,-0.00742455 -30712,3506:229:1,69,-52,0,0,-0.00776778 -30713,3506:229:2,69.5,-52,0,0,-0.00798166 -30714,3507:120:1,70,-52,0,0,-0.00811073 -30715,3507:120:2,70.5,-52,0,0,-0.00808727 -30716,3507:121:1,71,-52,0,0,-0.0078775 -30717,3507:121:2,71.5,-52,0,0,-0.00710764 -30718,3507:122:1,72,-52,0,0,-0.00689736 -30719,3507:122:2,72.5,-52,0,0,-0.00690654 -30720,3507:123:2,73.5,-52,0,0,-0.00684841 -30721,3507:124:1,74,-52,0,0,-0.00675313 -30722,3507:124:2,74.5,-52,0,0,-0.00658108 -30723,3507:225:1,75,-52,0,0,-0.00636097 -30724,3507:225:2,75.5,-52,0,0,-0.0062391 -30725,3507:226:1,76,-52,0,0,-0.00619074 -30726,3507:226:2,76.5,-52,0,0,-0.00613051 -30727,3507:227:1,77,-52,0,0,-0.00606408 -30728,3507:227:2,77.5,-52,0,0,-0.00598639 -30729,3507:228:1,78,-52,0,0,-0.00592551 -30730,3507:228:2,78.5,-52,0,0,-0.00590053 -30731,3507:229:1,79,-52,0,0,-0.00589269 -30732,3507:229:2,79.5,-52,0,0,-0.00585742 -30733,3508:120:1,80,-52,0,0,-0.00580818 -30734,3508:120:2,80.5,-52,0,0,-0.00577342 -30735,3508:121:1,81,-52,0,0,-0.00574398 -30736,3508:121:2,81.5,-52,0,0,-0.00571092 -30737,3508:122:1,82,-52,0,0,-0.00568053 -30738,3508:122:2,82.5,-52,0,0,-0.00565911 -30739,3508:123:1,83,-52,0,0,-0.00564781 -30740,3508:123:2,83.5,-52,0,0,-0.00565535 -30741,3508:124:1,84,-52,0,0,-0.00572616 -30742,3508:124:2,84.5,-52,0,0,-0.00575548 -30743,3508:225:1,85,-52,0,0,-0.00569569 -30744,3508:225:2,85.5,-52,0,0,-0.00567421 -30745,3508:226:1,86,-52,0,0,-0.00566541 -30746,3508:226:2,86.5,-52,0,0,-0.00586005 -30747,3508:227:1,87,-52,0,0,-0.00639073 -30748,3508:227:2,87.5,-52,0,0,-0.00722889 -30749,3508:228:1,88,-52,0,0,-0.00748262 -30750,3508:228:2,88.5,-52,0,0,-0.00713457 -30751,3508:229:1,89,-52,0,0,-0.00717597 -30752,3508:229:2,89.5,-52,0,0,-0.00720801 -30753,3509:120:1,90,-52,0,0,-0.00726921 -30754,3509:120:2,90.5,-52,0,0,-0.00756132 -30755,3509:121:1,91,-52,0,0,-0.00841252 -30756,3509:121:2,91.5,-52,0,0,-0.00867712 -30757,3509:122:1,92,-52,0,0,-0.00863661 -30758,3509:122:2,92.5,-52,0,0,-0.00785296 -30759,3509:123:1,93,-52,0,0,-0.00725141 -30760,3509:123:2,93.5,-52,0,0,-0.00766127 -30761,3509:124:1,94,-52,0,0,-0.00774012 -30762,3509:124:2,94.5,-52,0,0,-0.00754116 -30763,3509:225:1,95,-52,0,0,-0.00750762 -30764,3509:225:2,95.5,-52,0,0,-0.00773323 -30765,3509:226:1,96,-52,0,0,-0.00793385 -30766,3509:226:2,96.5,-52,0,0,-0.00801373 -30767,3509:227:1,97,-52,0,0,-0.00804954 -30768,3509:227:2,97.5,-52,0,0,-0.00820522 -30769,3509:228:1,98,-52,0,0,-0.00841252 -30770,3509:228:2,98.5,-52,0,0,-0.00862124 -30771,3509:229:1,99,-52,0,0,-0.00873146 -30772,3509:229:2,99.5,-52,0,0,-0.0087062 -30773,3510:120:1,100,-52,0,0,-0.00851624 -30774,3510:120:2,100.5,-52,0,0,-0.00830263 -30775,3510:121:1,101,-52,0,0,-0.00821616 -30776,3510:121:2,101.5,-52,0,0,-0.00826574 -30777,3510:122:1,102,-52,0,0,-0.00848023 -30778,3510:122:2,102.5,-52,0,0,-0.00863086 -30779,3510:123:1,103,-52,0,0,-0.00912752 -30780,3510:123:2,103.5,-52,0,0,-0.00954593 -30781,3510:124:1,104,-52,0,0,-0.00936248 -30782,3510:124:2,104.5,-52,0,0,-0.00869845 -30783,3510:225:1,105,-52,0,0,-0.00824184 -30784,3510:225:2,105.5,-52,0,0,-0.0081924 -30785,3510:226:1,106,-52,0,0,-0.00823999 -30786,3510:226:2,106.5,-52,0,0,-0.00824548 -30787,3510:227:1,107,-52,0,0,-0.00825103 -30788,3510:227:2,107.5,-52,0,0,-0.00802982 -30789,3510:228:1,108,-52,0,0,-0.0077747 -30790,3510:228:2,108.5,-52,0,0,-0.00771948 -30791,3510:229:1,109,-52,0,0,-0.00775396 -30792,3510:229:2,109.5,-52,0,0,-0.00783899 -30793,3511:120:1,110,-52,0,0,-0.00794978 -30794,3511:120:2,110.5,-52,0,0,-0.00797104 -30795,3511:121:1,111,-52,0,0,-0.00785649 -30796,3511:121:2,111.5,-52,0,0,-0.00777121 -30797,3511:122:1,112,-52,0,0,-0.00779893 -30798,3511:122:2,112.5,-52,0,0,-0.00782329 -30799,3511:123:1,113,-52,0,0,-0.00791796 -30800,3511:123:2,113.5,-52,0,0,-0.00827682 -30801,3511:124:1,114,-52,0,0,-0.00870425 -30802,3511:124:2,114.5,-52,0,0,-0.0088846 -30803,3511:225:1,115,-52,0,0,-0.0092422 -30804,3511:225:2,115.5,-52,0,0,-0.0096681 -30805,3511:226:1,116,-52,0,0,-0.00972652 -30806,3511:226:2,116.5,-52,0,0,-0.00987957 -30807,3511:227:1,117,-52,0,0,-0.0101364 -30808,3511:227:2,117.5,-52,0,0,-0.0103559 -30809,3511:228:1,118,-52,0,0,-0.010512 -30810,3511:228:2,118.5,-52,0,0,-0.0106419 -30811,3511:229:1,119,-52,0,0,-0.0107374 -30812,3511:229:2,119.5,-52,0,0,-0.0107879 -30813,3512:120:1,120,-52,0,0,-0.0107662 -30814,3512:120:2,120.5,-52,0,0,-0.0106562 -30815,3512:121:1,121,-52,0,0,-0.0105073 -30816,3512:121:2,121.5,-52,0,0,-0.0103513 -30817,3512:122:1,122,-52,0,0,-0.0102914 -30818,3512:122:2,122.5,-52,0,0,-0.0104488 -30819,3512:123:1,123,-52,0,0,-0.0108071 -30820,3512:123:2,123.5,-52,0,0,-0.0114663 -30821,3512:124:1,124,-52,0,0,-0.0114637 -30822,3512:124:2,124.5,-52,0,0,-0.0111231 -30823,3512:225:1,125,-52,0,0,-0.0112959 -30824,3512:225:2,125.5,-52,0,0,-0.0115589 -30825,3512:226:1,126,-52,0,0,-0.011694 -30826,3512:226:2,126.5,-52,0,0,-0.0118175 -30827,3512:227:1,127,-52,0,0,-0.0118413 -30828,3512:227:2,127.5,-52,0,0,-0.0116315 -30829,3512:228:1,128,-52,0,0,-0.0112706 -30830,3512:228:2,128.5,-52,0,0,-0.0110364 -30831,3512:229:1,129,-52,0,0,-0.0110883 -30832,3512:229:2,129.5,-52,0,0,-0.0118731 -30833,3513:120:1,130,-52,0,0,-0.012347 -30834,3513:120:2,130.5,-52,0,0,-0.0121906 -30835,3513:121:1,131,-52,0,0,-0.0119959 -30836,3513:121:2,131.5,-52,0,0,-0.011929 -30837,3513:122:1,132,-52,0,0,-0.0118678 -30838,3513:122:2,132.5,-52,0,0,-0.0117412 -30839,3513:123:1,133,-52,0,0,-0.0115874 -30840,3513:123:2,133.5,-52,0,0,-0.0113871 -30841,3513:124:1,134,-52,0,0,-0.0111529 -30842,3513:124:2,134.5,-52,0,0,-0.0109725 -30843,3513:225:1,135,-52,0,0,-0.0109848 -30844,3513:225:2,135.5,-52,0,0,-0.0111505 -30845,3513:226:1,136,-52,0,0,-0.0114509 -30846,3513:226:2,136.5,-52,0,0,-0.0115874 -30847,3513:227:1,137,-52,0,0,-0.0113642 -30848,3513:227:2,137.5,-52,0,0,-0.0109848 -30849,3513:228:1,138,-52,0,0,-0.0108604 -30850,3513:228:2,138.5,-52,0,0,-0.0109946 -30851,3513:229:1,139,-52,0,0,-0.0111704 -30852,3513:229:2,139.5,-52,0,0,-0.0111554 -30853,3514:120:1,140,-52,0,0,-0.0108798 -30854,3514:120:2,140.5,-52,0,0,-0.0106538 -30855,3514:121:1,141,-52,0,0,-0.0105661 -30856,3514:121:2,141.5,-52,0,0,-0.0105097 -30857,3514:122:1,142,-52,0,0,-0.0104675 -30858,3514:122:2,142.5,-52,0,0,-0.0105544 -30859,3514:123:1,143,-52,0,0,-0.010841 -30860,3514:123:2,143.5,-52,0,0,-0.0111704 -30861,3514:124:1,144,-52,0,0,-0.0112682 -30862,3514:124:2,144.5,-52,0,0,-0.0110439 -30863,3514:225:1,145,-52,0,0,-0.0106872 -30864,3514:225:2,145.5,-52,0,0,-0.0105214 -30865,3514:226:1,146,-52,0,0,-0.0105567 -30866,3514:226:2,146.5,-52,0,0,-0.0106848 -30867,3514:227:1,147,-52,0,0,-0.0107879 -30868,3514:227:2,147.5,-52,0,0,-0.01068 -30869,3514:228:1,148,-52,0,0,-0.0104558 -30870,3514:228:2,148.5,-52,0,0,-0.0102205 -30871,3514:229:1,149,-52,0,0,-0.00991711 -30872,3514:229:2,149.5,-52,0,0,-0.00911126 -30873,3515:120:1,150,-52,0,0,-0.0083193 -30874,3515:120:2,150.5,-52,0,0,-0.00763233 -30875,3515:121:1,151,-52,0,0,-0.00688202 -30876,3515:121:2,151.5,-52,0,0,-0.00715685 -30877,3515:122:1,152,-52,0,0,-0.00807645 -30878,3515:122:2,152.5,-52,0,0,-0.00865202 -30879,3515:123:1,153,-52,0,0,-0.00884504 -30880,3515:123:2,153.5,-52,0,0,-0.00906668 -30881,3515:124:1,154,-52,0,0,-0.0092319 -30882,3515:124:2,154.5,-52,0,0,-0.0101772 -30883,3515:225:1,155,-52,0,0,-0.0106585 -30884,3515:225:2,155.5,-52,0,0,-0.0112455 -30885,3515:226:1,156,-52,0,0,-0.0111355 -30886,3515:226:2,156.5,-52,0,0,-0.0104488 -30887,3515:227:1,157,-52,0,0,-0.0100598 -30888,3515:227:2,157.5,-52,0,0,-0.0101071 -30889,3515:228:1,158,-52,0,0,-0.0101886 -30890,3515:228:2,158.5,-52,0,0,-0.0102502 -30891,3515:229:1,159,-52,0,0,-0.0103029 -30892,3515:229:2,159.5,-52,0,0,-0.0103814 -30893,3516:120:1,160,-52,0,0,-0.0105214 -30894,3516:120:2,160.5,-52,0,0,-0.0106681 -30895,3516:121:1,161,-52,0,0,-0.0109603 -30896,3516:121:2,161.5,-52,0,0,-0.0115667 -30897,3516:122:1,162,-52,0,0,-0.0118519 -30898,3516:122:2,162.5,-52,0,0,-0.01177 -30899,3516:123:1,163,-52,0,0,-0.0118466 -30900,3516:123:2,163.5,-52,0,0,-0.0124162 -30901,3516:124:1,164,-52,0,0,-0.0130778 -30902,3516:124:2,164.5,-52,0,0,-0.0133738 -30903,3516:225:1,165,-52,0,0,-0.0136798 -30904,3516:225:2,165.5,-52,0,0,-0.0140147 -30905,3516:226:1,166,-52,0,0,-0.0141662 -30906,3516:226:2,166.5,-52,0,0,-0.0148058 -30907,3516:227:1,167,-52,0,0,-0.015196 -30908,3516:227:2,167.5,-52,0,0,-0.0158259 -30909,3516:228:1,168,-52,0,0,-0.0168301 -30910,3516:228:2,168.5,-52,0,0,-0.0177949 -30911,3516:229:1,169,-52,0,0,-0.0185594 -30912,3516:229:2,169.5,-52,0,0,-0.0192965 -30913,3517:120:1,170,-52,0,0,-0.0200996 -30914,3517:120:2,170.5,-52,0,0,-0.0202634 -30915,3517:121:1,171,-52,0,0,-0.0198208 -30916,3517:121:2,171.5,-52,0,0,-0.0193924 -30917,3517:122:1,172,-52,0,0,-0.0194012 -30918,3517:122:2,172.5,-52,0,0,-0.0195283 -30919,3517:123:1,173,-52,0,0,-0.0196695 -30920,3517:123:2,173.5,-52,0,0,-0.0197672 -30921,3517:124:1,174,-52,0,0,-0.019794 -30922,3517:124:2,174.5,-52,0,0,-0.0197672 -30923,3517:225:1,175,-52,0,0,-0.0196872 -30924,3517:225:2,175.5,-52,0,0,-0.0195503 -30925,3517:226:1,176,-52,0,0,-0.0193619 -30926,3517:226:2,176.5,-52,0,0,-0.0190419 -30927,3517:227:1,177,-52,0,0,-0.0181139 -30928,3517:227:2,177.5,-52,0,0,-0.016868 -30929,3517:228:1,178,-52,0,0,-0.0169554 -30930,3517:228:2,178.5,-52,0,0,-0.0167848 -30931,3517:229:1,179,-52,0,0,-0.0165081 -30932,3517:229:2,179.5,-52,0,0,-0.0167133 -30933,3518:120:1,180,-52,0,0,-0.0145589 -30934,5518:110:3,-180,-51.5,0,0,-0.01646 -30935,5517:219:4,-179.5,-51.5,0,0,-0.0153226 -30936,5517:219:3,-179,-51.5,0,0,-0.0153055 -30937,5517:218:4,-178.5,-51.5,0,0,-0.0157904 -30938,5517:218:3,-178,-51.5,0,0,-0.0159937 -30939,5517:217:4,-177.5,-51.5,0,0,-0.0157408 -30940,5517:217:3,-177,-51.5,0,0,-0.0150265 -30941,5517:216:4,-176.5,-51.5,0,0,-0.014281 -30942,5517:216:3,-176,-51.5,0,0,-0.0142013 -30943,5517:215:4,-175.5,-51.5,0,0,-0.0145393 -30944,5517:215:3,-175,-51.5,0,0,-0.0146145 -30945,5517:114:4,-174.5,-51.5,0,0,-0.0142778 -30946,5517:114:3,-174,-51.5,0,0,-0.0139022 -30947,5517:113:4,-173.5,-51.5,0,0,-0.0141346 -30948,5517:113:3,-173,-51.5,0,0,-0.0145393 -30949,5517:112:4,-172.5,-51.5,0,0,-0.0145459 -30950,5517:112:3,-172,-51.5,0,0,-0.0141377 -30951,5517:111:4,-171.5,-51.5,0,0,-0.0137473 -30952,5517:111:3,-171,-51.5,0,0,-0.0137412 -30953,5517:110:4,-170.5,-51.5,0,0,-0.0139646 -30954,5517:110:3,-170,-51.5,0,0,-0.0139991 -30955,5516:219:4,-169.5,-51.5,0,0,-0.0136859 -30956,5516:219:3,-169,-51.5,0,0,-0.013219 -30957,5516:218:4,-168.5,-51.5,0,0,-0.012967 -30958,5516:218:3,-168,-51.5,0,0,-0.013069 -30959,5516:217:4,-167.5,-51.5,0,0,-0.013329 -30960,5516:217:3,-167,-51.5,0,0,-0.0135699 -30961,5516:216:4,-166.5,-51.5,0,0,-0.01384 -30962,5516:216:3,-166,-51.5,0,0,-0.0139802 -30963,5516:215:4,-165.5,-51.5,0,0,-0.0142203 -30964,5516:215:3,-165,-51.5,0,0,-0.0145687 -30965,5516:114:4,-164.5,-51.5,0,0,-0.0148624 -30966,5516:114:3,-164,-51.5,0,0,-0.0148424 -30967,5516:113:4,-163.5,-51.5,0,0,-0.0145003 -30968,5516:113:3,-163,-51.5,0,0,-0.0140619 -30969,5516:112:4,-162.5,-51.5,0,0,-0.0137597 -30970,5516:112:3,-162,-51.5,0,0,-0.0137412 -30971,5516:111:4,-161.5,-51.5,0,0,-0.0137967 -30972,5516:111:3,-161,-51.5,0,0,-0.0135547 -30973,5516:110:4,-160.5,-51.5,0,0,-0.0130573 -30974,5516:110:3,-160,-51.5,0,0,-0.0125419 -30975,5515:219:4,-159.5,-51.5,0,0,-0.0121933 -30976,5515:219:3,-159,-51.5,0,0,-0.0122535 -30977,5515:218:4,-158.5,-51.5,0,0,-0.0127826 -30978,5515:218:3,-158,-51.5,0,0,-0.0134309 -30979,5515:217:4,-157.5,-51.5,0,0,-0.0141662 -30980,5515:217:3,-157,-51.5,0,0,-0.0148124 -30981,5515:216:4,-156.5,-51.5,0,0,-0.0149559 -30982,5515:216:3,-156,-51.5,0,0,-0.0148091 -30983,5515:215:4,-155.5,-51.5,0,0,-0.0146047 -30984,5515:215:3,-155,-51.5,0,0,-0.0143099 -30985,5515:114:4,-154.5,-51.5,0,0,-0.013335 -30986,5515:114:3,-154,-51.5,0,0,-0.0113186 -30987,5515:113:4,-153.5,-51.5,0,0,-0.00899418 -30988,5515:113:3,-153,-51.5,0,0,-0.00813425 -30989,5515:112:4,-152.5,-51.5,0,0,-0.00871977 -30990,5515:112:3,-152,-51.5,0,0,-0.0087959 -30991,5515:111:4,-151.5,-51.5,0,0,-0.00883127 -30992,5515:111:3,-151,-51.5,0,0,-0.00889252 -30993,5515:110:4,-150.5,-51.5,0,0,-0.00896614 -30994,5515:110:3,-150,-51.5,0,0,-0.00904443 -30995,5514:219:4,-149.5,-51.5,0,0,-0.00906668 -30996,5514:219:3,-149,-51.5,0,0,-0.00907069 -30997,5514:218:4,-148.5,-51.5,0,0,-0.00907674 -30998,5514:218:3,-148,-51.5,0,0,-0.00990611 -30999,5514:217:4,-147.5,-51.5,0,0,-0.0124886 -31000,5514:217:3,-147,-51.5,0,0,-0.0125446 -31001,5514:216:4,-146.5,-51.5,0,0,-0.0129641 -31002,5514:216:3,-146,-51.5,0,0,-0.0133738 -31003,5514:215:4,-145.5,-51.5,0,0,-0.0150671 -31004,5514:215:3,-145,-51.5,0,0,-0.0163055 -31005,5514:114:4,-144.5,-51.5,0,0,-0.0177549 -31006,5514:114:3,-144,-51.5,0,0,-0.0185469 -31007,5514:113:4,-143.5,-51.5,0,0,-0.0186264 -31008,5514:113:3,-143,-51.5,0,0,-0.016815 -31009,5514:112:4,-142.5,-51.5,0,0,-0.0172396 -31010,5514:112:3,-142,-51.5,0,0,-0.0187822 -31011,5514:111:4,-141.5,-51.5,0,0,-0.0211315 -31012,5514:111:3,-141,-51.5,0,0,-0.0245357 -31013,5514:110:4,-140.5,-51.5,0,0,-0.0224342 -31014,5514:110:3,-140,-51.5,0,0,-0.0211888 -31015,5513:219:4,-139.5,-51.5,0,0,-0.0201132 -31016,5513:219:3,-139,-51.5,0,0,-0.0197006 -31017,5513:218:4,-138.5,-51.5,0,0,-0.0191968 -31018,5513:218:3,-138,-51.5,0,0,-0.017329 -31019,5513:217:4,-137.5,-51.5,0,0,-0.0158579 -31020,5513:217:3,-137,-51.5,0,0,-0.0151178 -31021,5513:216:4,-136.5,-51.5,0,0,-0.0147992 -31022,5513:216:3,-136,-51.5,0,0,-0.0157726 -31023,5513:215:4,-135.5,-51.5,0,0,-0.0164304 -31024,5513:215:3,-135,-51.5,0,0,-0.0166422 -31025,5513:114:4,-134.5,-51.5,0,0,-0.0170701 -31026,5513:114:3,-134,-51.5,0,0,-0.0171662 -31027,5513:113:4,-133.5,-51.5,0,0,-0.0169439 -31028,5513:113:3,-133,-51.5,0,0,-0.0169477 -31029,5513:112:4,-132.5,-51.5,0,0,-0.0170126 -31030,5513:112:3,-132,-51.5,0,0,-0.0163274 -31031,5513:111:4,-131.5,-51.5,0,0,-0.0162325 -31032,5513:111:3,-131,-51.5,0,0,-0.0164083 -31033,5513:110:4,-130.5,-51.5,0,0,-0.0167697 -31034,5513:110:3,-130,-51.5,0,0,-0.0203963 -31035,5512:219:4,-129.5,-51.5,0,0,-0.0222928 -31036,5512:219:3,-129,-51.5,0,0,-0.0223079 -31037,5512:218:4,-128.5,-51.5,0,0,-0.0217704 -31038,5512:218:3,-128,-51.5,0,0,-0.0210506 -31039,5512:217:4,-127.5,-51.5,0,0,-0.0204562 -31040,5512:217:3,-127,-51.5,0,0,-0.0202406 -31041,5512:216:4,-126.5,-51.5,0,0,-0.0200499 -31042,5512:216:3,-126,-51.5,0,0,-0.0193444 -31043,5512:215:4,-125.5,-51.5,0,0,-0.0183064 -31044,5512:215:3,-125,-51.5,0,0,-0.0170969 -31045,5512:114:4,-124.5,-51.5,0,0,-0.0177988 -31046,5512:114:3,-124,-51.5,0,0,-0.0191106 -31047,5512:113:4,-123.5,-51.5,0,0,-0.0195107 -31048,5512:113:3,-123,-51.5,0,0,-0.0191926 -31049,5512:112:4,-122.5,-51.5,0,0,-0.0188711 -31050,5512:112:3,-122,-51.5,0,0,-0.0183683 -31051,5512:111:4,-121.5,-51.5,0,0,-0.0180043 -31052,5512:111:3,-121,-51.5,0,0,-0.0177469 -31053,5512:110:4,-120.5,-51.5,0,0,-0.0175485 -31054,5512:110:3,-120,-51.5,0,0,-0.0171277 -31055,5511:219:4,-119.5,-51.5,0,0,-0.0166946 -31056,5511:219:3,-119,-51.5,0,0,-0.0166533 -31057,5511:218:4,-118.5,-51.5,0,0,-0.0173407 -31058,5511:218:3,-118,-51.5,0,0,-0.0187273 -31059,5511:217:4,-117.5,-51.5,0,0,-0.0200182 -31060,5511:217:3,-117,-51.5,0,0,-0.0209464 -31061,5511:216:4,-116.5,-51.5,0,0,-0.0214872 -31062,5511:216:3,-116,-51.5,0,0,-0.0215942 -31063,5511:215:4,-115.5,-51.5,0,0,-0.0212462 -31064,5511:215:3,-115,-51.5,0,0,-0.0204285 -31065,5511:114:4,-114.5,-51.5,0,0,-0.0193095 -31066,5511:114:3,-114,-51.5,0,0,-0.0184429 -31067,5511:113:4,-113.5,-51.5,0,0,-0.0186013 -31068,5511:113:3,-113,-51.5,0,0,-0.0190762 -31069,5511:112:4,-112.5,-51.5,0,0,-0.0193487 -31070,5511:112:3,-112,-51.5,0,0,-0.0178631 -31071,5511:111:4,-111.5,-51.5,0,0,-0.0168831 -31072,5511:111:3,-111,-51.5,0,0,-0.0170432 -31073,5511:110:4,-110.5,-51.5,0,0,-0.0179395 -31074,5511:110:3,-110,-51.5,0,0,-0.0186473 -31075,5510:219:4,-109.5,-51.5,0,0,-0.0185052 -31076,5510:219:3,-109,-51.5,0,0,-0.0181915 -31077,5510:218:4,-108.5,-51.5,0,0,-0.0179799 -31078,5510:218:3,-108,-51.5,0,0,-0.017867 -31079,5510:217:4,-107.5,-51.5,0,0,-0.017839 -31080,5510:217:3,-107,-51.5,0,0,-0.017843 -31081,5510:216:4,-106.5,-51.5,0,0,-0.0176554 -31082,5510:216:3,-106,-51.5,0,0,-0.0172668 -31083,5510:215:4,-105.5,-51.5,0,0,-0.0167772 -31084,5510:215:3,-105,-51.5,0,0,-0.0165936 -31085,5510:114:4,-104.5,-51.5,0,0,-0.0170777 -31086,5510:114:3,-104,-51.5,0,0,-0.0182735 -31087,5510:113:4,-103.5,-51.5,0,0,-0.0193575 -31088,5510:113:3,-103,-51.5,0,0,-0.0220724 -31089,5510:112:4,-102.5,-51.5,0,0,-0.022323 -31090,5510:112:3,-102,-51.5,0,0,-0.0217851 -31091,5510:111:4,-101.5,-51.5,0,0,-0.021692 -31092,5510:111:3,-101,-51.5,0,0,-0.0215115 -31093,5510:110:4,-100.5,-51.5,0,0,-0.0211267 -31094,5510:110:3,-100,-51.5,0,0,-0.0204978 -31095,5509:219:4,-99.5,-51.5,0,0,-0.0198476 -31096,5509:219:3,-99,-51.5,0,0,-0.0196296 -31097,5509:218:4,-98.5,-51.5,0,0,-0.0200002 -31098,5509:218:3,-98,-51.5,0,0,-0.0204056 -31099,5509:217:4,-97.5,-51.5,0,0,-0.0198924 -31100,5509:217:3,-97,-51.5,0,0,-0.0182693 -31101,5509:216:4,-96.5,-51.5,0,0,-0.0170777 -31102,5509:216:3,-96,-51.5,0,0,-0.0167509 -31103,5509:215:4,-95.5,-51.5,0,0,-0.016781 -31104,5509:215:3,-95,-51.5,0,0,-0.0179638 -31105,5509:114:4,-94.5,-51.5,0,0,-0.0192705 -31106,5509:114:3,-94,-51.5,0,0,-0.0199553 -31107,5509:113:4,-93.5,-51.5,0,0,-0.0199058 -31108,5509:113:3,-93,-51.5,0,0,-0.0194012 -31109,5509:112:4,-92.5,-51.5,0,0,-0.0183312 -31110,5509:112:3,-92,-51.5,0,0,-0.0172048 -31111,5509:111:4,-91.5,-51.5,0,0,-0.0166309 -31112,5509:111:3,-91,-51.5,0,0,-0.0165008 -31113,5509:110:4,-90.5,-51.5,0,0,-0.0164452 -31114,5509:110:3,-90,-51.5,0,0,-0.0166983 -31115,5508:219:4,-89.5,-51.5,0,0,-0.0173876 -31116,5508:219:3,-89,-51.5,0,0,-0.0183188 -31117,5508:218:4,-88.5,-51.5,0,0,-0.0187779 -31118,5508:218:3,-88,-51.5,0,0,-0.0187188 -31119,5508:217:4,-87.5,-51.5,0,0,-0.0181874 -31120,5508:217:3,-87,-51.5,0,0,-0.0179193 -31121,5508:216:4,-86.5,-51.5,0,0,-0.0181506 -31122,5508:216:3,-86,-51.5,0,0,-0.0185178 -31123,5508:215:4,-85.5,-51.5,0,0,-0.018918 -31124,5508:215:3,-85,-51.5,0,0,-0.0193183 -31125,5508:114:4,-84.5,-51.5,0,0,-0.0197184 -31126,5508:114:3,-84,-51.5,0,0,-0.0201132 -31127,5508:113:4,-83.5,-51.5,0,0,-0.0203183 -31128,5508:113:3,-83,-51.5,0,0,-0.020195 -31129,5508:112:4,-82.5,-51.5,0,0,-0.0199642 -31130,5508:112:3,-82,-51.5,0,0,-0.0199013 -31131,5508:111:4,-81.5,-51.5,0,0,-0.0198789 -31132,5508:111:3,-81,-51.5,0,0,-0.0196917 -31133,5508:110:4,-80.5,-51.5,0,0,-0.0192835 -31134,5508:110:3,-80,-51.5,0,0,-0.0188117 -31135,5507:219:4,-79.5,-51.5,0,0,-0.0188797 -31136,5507:219:3,-79,-51.5,0,0,-0.0200048 -31137,5507:218:4,-78.5,-51.5,0,0,-0.0208332 -31138,5507:218:3,-78,-51.5,0,0,-0.0210221 -31139,5507:217:4,-77.5,-51.5,0,0,-0.0210981 -31140,5507:217:3,-77,-51.5,0,0,-0.0210696 -31141,5507:216:4,-76.5,-51.5,0,0,-0.0207957 -31142,5507:216:3,-76,-51.5,0,0,-0.0204193 -31143,5507:215:4,-75.5,-51.5,0,0,-0.0200726 -31144,5507:215:3,-75,-51.5,0,0,-0.0197717 -31145,5507:114:4,-74.5,-51.5,0,0,-0.0193226 -31146,5507:114:3,-74,-51.5,0,0,-0.0185344 -31147,5507:113:4,-73.5,-51.5,0,0,-0.0176792 -31148,5507:113:3,-73,-51.5,0,0,-0.0170356 -31149,5507:112:4,-72.5,-51.5,0,0,-0.0169591 -31150,5507:112:3,-72,-51.5,0,0,-0.0169896 -31151,5507:111:4,-71.5,-51.5,0,0,-0.0168263 -31152,5507:111:3,-71,-51.5,0,0,-0.0165712 -31153,5507:110:4,-70.5,-51.5,0,0,-0.0163495 -31154,5507:110:3,-70,-51.5,0,0,-0.016127 -31155,5506:219:4,-69.5,-51.5,0,0,-0.0152609 -31156,5506:219:3,-69,-51.5,0,0,-0.0139959 -31157,5506:218:4,-68.5,-51.5,0,0,-0.0130398 -31158,5506:218:3,-68,-51.5,0,0,-0.0126093 -31159,5506:217:4,-67.5,-51.5,0,0,-0.0127855 -31160,5506:217:3,-67,-51.5,0,0,-0.012797 -31161,5506:216:4,-66.5,-51.5,0,0,-0.0128774 -31162,5506:216:3,-66,-51.5,0,0,-0.0125868 -31163,5506:215:4,-65.5,-51.5,0,0,-0.0118255 -31164,5506:215:3,-65,-51.5,0,0,-0.0106016 -31165,5506:114:4,-64.5,-51.5,0,0,-0.00938551 -31166,5506:114:3,-64,-51.5,0,0,-0.00860016 -31167,5506:113:4,-63.5,-51.5,0,0,-0.00876657 -31168,5506:113:3,-63,-51.5,0,0,-0.00907476 -31169,5506:112:4,-62.5,-51.5,0,0,-0.00929177 -31170,5506:112:3,-62,-51.5,0,0,-0.00942533 -31171,5506:111:4,-61.5,-51.5,0,0,-0.00952257 -31172,5506:111:3,-61,-51.5,0,0,-0.00960146 -31173,5506:110:4,-60.5,-51.5,0,0,-0.00977432 -31174,5506:110:3,-60,-51.5,0,0,-0.0102914 -31175,5505:219:4,-59.5,-51.5,0,0,-0.0108507 -31176,5505:219:3,-59,-51.5,0,0,-0.0106681 -31177,5505:218:4,-58.5,-51.5,0,0,-0.0100396 -31178,5505:218:3,-58,-51.5,0,0,-0.00975258 -31179,5505:217:4,-57.5,-51.5,0,0,-0.00949287 -31180,5505:217:3,-57,-51.5,0,0,-0.00904647 -31181,5505:216:4,-56.5,-51.5,0,0,-0.00817966 -31182,5505:216:3,-56,-51.5,0,0,-0.00728379 -31183,5505:215:4,-55.5,-51.5,0,0,-0.0073293 -31184,5505:215:3,-55,-51.5,0,0,-0.00762891 -31185,5505:114:4,-54.5,-51.5,0,0,-0.0072789 -31186,5505:114:3,-54,-51.5,0,0,-0.00741296 -31187,5505:113:4,-53.5,-51.5,0,0,-0.00735218 -31188,5505:113:3,-53,-51.5,0,0,-0.00662518 -31189,5505:112:4,-52.5,-51.5,0,0,-0.00628366 -31190,5505:112:3,-52,-51.5,0,0,-0.00609787 -31191,5505:111:4,-51.5,-51.5,0,0,-0.00589925 -31192,5505:111:3,-51,-51.5,0,0,-0.00585091 -31193,5505:110:4,-50.5,-51.5,0,0,-0.00589005 -31194,5505:110:3,-50,-51.5,0,0,-0.00588091 -31195,5504:219:4,-49.5,-51.5,0,0,-0.00585874 -31196,5504:219:3,-49,-51.5,0,0,-0.00583016 -31197,5504:218:4,-48.5,-51.5,0,0,-0.0058496 -31198,5504:218:3,-48,-51.5,0,0,-0.00587437 -31199,5504:217:4,-47.5,-51.5,0,0,-0.0058835 -31200,5504:217:3,-47,-51.5,0,0,-0.00662222 -31201,5504:216:4,-46.5,-51.5,0,0,-0.00722247 -31202,5504:216:3,-46,-51.5,0,0,-0.00742949 -31203,5504:215:4,-45.5,-51.5,0,0,-0.00648809 -31204,5504:215:3,-45,-51.5,0,0,-0.00566038 -31205,5504:114:4,-44.5,-51.5,0,0,-0.00570458 -31206,5504:114:3,-44,-51.5,0,0,-0.00628085 -31207,5504:113:4,-43.5,-51.5,0,0,-0.00661485 -31208,5504:113:3,-43,-51.5,0,0,-0.00691269 -31209,5504:112:4,-42.5,-51.5,0,0,-0.00677268 -31210,5504:112:3,-42,-51.5,0,0,-0.00655772 -31211,5504:111:4,-41.5,-51.5,0,0,-0.00633134 -31212,5504:111:3,-41,-51.5,0,0,-0.00623081 -31213,5504:110:4,-40.5,-51.5,0,0,-0.00636382 -31214,5504:110:3,-40,-51.5,0,0,-0.00632147 -31215,5503:219:4,-39.5,-51.5,0,0,-0.0062004 -31216,5503:219:3,-39,-51.5,0,0,-0.00643638 -31217,5503:218:4,-38.5,-51.5,0,0,-0.00698383 -31218,5503:218:3,-38,-51.5,0,0,-0.00749427 -31219,5503:217:4,-37.5,-51.5,0,0,-0.007461 -31220,5503:217:3,-37,-51.5,0,0,-0.00725141 -31221,5503:216:4,-36.5,-51.5,0,0,-0.00686214 -31222,5503:216:3,-36,-51.5,0,0,-0.00614821 -31223,5503:215:4,-35.5,-51.5,0,0,-0.00603585 -31224,5503:215:3,-35,-51.5,0,0,-0.00629484 -31225,5503:114:4,-34.5,-51.5,0,0,-0.00648377 -31226,5503:114:3,-34,-51.5,0,0,-0.00652283 -31227,5503:113:4,-33.5,-51.5,0,0,-0.00682558 -31228,5503:113:3,-33,-51.5,0,0,-0.00659284 -31229,5503:112:4,-32.5,-51.5,0,0,-0.00617702 -31230,5503:112:3,-32,-51.5,0,0,-0.00610192 -31231,5503:111:4,-31.5,-51.5,0,0,-0.00622109 -31232,5503:111:3,-31,-51.5,0,0,-0.00632713 -31233,5503:110:4,-30.5,-51.5,0,0,-0.00608163 -31234,5503:110:3,-30,-51.5,0,0,-0.00575423 -31235,5502:219:4,-29.5,-51.5,0,0,-0.00571216 -31236,5502:219:3,-29,-51.5,0,0,-0.00561154 -31237,5502:218:4,-28.5,-51.5,0,0,-0.00556313 -31238,5502:218:3,-28,-51.5,0,0,-0.00557302 -31239,5502:217:4,-27.5,-51.5,0,0,-0.00546392 -31240,5502:217:3,-27,-51.5,0,0,-0.00545663 -31241,5502:216:4,-26.5,-51.5,0,0,-0.00545907 -31242,5502:216:3,-26,-51.5,0,0,-0.00545541 -31243,5502:215:4,-25.5,-51.5,0,0,-0.00547 -31244,5502:215:3,-25,-51.5,0,0,-0.00563277 -31245,5502:114:4,-24.5,-51.5,0,0,-0.00655772 -31246,5502:114:3,-24,-51.5,0,0,-0.00773844 -31247,5502:113:4,-23.5,-51.5,0,0,-0.00835461 -31248,5502:113:3,-23,-51.5,0,0,-0.00831376 -31249,5502:112:4,-22.5,-51.5,0,0,-0.00770921 -31250,5502:112:3,-22,-51.5,0,0,-0.00716643 -31251,5502:111:4,-21.5,-51.5,0,0,-0.00685907 -31252,5502:111:3,-21,-51.5,0,0,-0.00612502 -31253,5502:110:4,-20.5,-51.5,0,0,-0.00606408 -31254,5502:110:3,-20,-51.5,0,0,-0.00632992 -31255,5501:219:4,-19.5,-51.5,0,0,-0.00662811 -31256,5501:219:3,-19,-51.5,0,0,-0.00661337 -31257,5501:218:4,-18.5,-51.5,0,0,-0.00643206 -31258,5501:218:3,-18,-51.5,0,0,-0.00617287 -31259,5501:217:4,-17.5,-51.5,0,0,-0.00592157 -31260,5501:217:3,-17,-51.5,0,0,-0.00576575 -31261,5501:216:4,-16.5,-51.5,0,0,-0.00574655 -31262,5501:216:3,-16,-51.5,0,0,-0.00575423 -31263,5501:215:4,-15.5,-51.5,0,0,-0.00573378 -31264,5501:215:3,-15,-51.5,0,0,-0.005716 -31265,5501:114:4,-14.5,-51.5,0,0,-0.00572741 -31266,5501:114:3,-14,-51.5,0,0,-0.00572108 -31267,5501:113:4,-13.5,-51.5,0,0,-0.00576575 -31268,5501:113:3,-13,-51.5,0,0,-0.00576317 -31269,5501:112:4,-12.5,-51.5,0,0,-0.00571216 -31270,5501:112:3,-12,-51.5,0,0,-0.00569569 -31271,5501:111:4,-11.5,-51.5,0,0,-0.00566791 -31272,5501:111:3,-11,-51.5,0,0,-0.00562526 -31273,5501:110:4,-10.5,-51.5,0,0,-0.0055941 -31274,5501:110:3,-10,-51.5,0,0,-0.00559536 -31275,5500:219:4,-9.5,-51.5,0,0,-0.00561154 -31276,5500:219:3,-9,-51.5,0,0,-0.00561029 -31277,5500:218:4,-8.5,-51.5,0,0,-0.00561029 -31278,5500:218:3,-8,-51.5,0,0,-0.00560531 -31279,5500:217:4,-7.5,-51.5,0,0,-0.00558293 -31280,5500:217:3,-7,-51.5,0,0,-0.00553848 -31281,5500:216:4,-6.5,-51.5,0,0,-0.00551024 -31282,5500:216:3,-6,-51.5,0,0,-0.00548824 -31283,5500:215:4,-5.5,-51.5,0,0,-0.00549069 -31284,5500:215:3,-5,-51.5,0,0,-0.00546755 -31285,5500:114:4,-4.5,-51.5,0,0,-0.00545179 -31286,5500:114:3,-4,-51.5,0,0,-0.00544935 -31287,5500:113:4,-3.5,-51.5,0,0,-0.00544816 -31288,5500:113:3,-3,-51.5,0,0,-0.00544695 -31289,5500:112:4,-2.5,-51.5,0,0,-0.00544695 -31290,5500:112:3,-2,-51.5,0,0,-0.00544573 -31291,5500:111:4,-1.5,-51.5,0,0,-0.00544089 -31292,5500:111:3,-1,-51.5,0,0,-0.00543728 -31293,5500:110:4,-0.5,-51.5,0,0,-0.00543485 -31294,3500:110:4,0,-51.5,0,0,-0.00543002 -31295,3500:110:4,0.5,-51.5,0,0,-0.00543363 -31296,3500:111:3,1,-51.5,0,0,-0.00544333 -31297,3500:111:4,1.5,-51.5,0,0,-0.00546026 -31298,3500:112:3,2,-51.5,0,0,-0.00549923 -31299,3500:112:4,2.5,-51.5,0,0,-0.00554584 -31300,3500:113:3,3,-51.5,0,0,-0.00557177 -31301,3500:113:4,3.5,-51.5,0,0,-0.00558664 -31302,3500:114:3,4,-51.5,0,0,-0.0055941 -31303,3500:114:4,4.5,-51.5,0,0,-0.0055941 -31304,3500:215:3,5,-51.5,0,0,-0.00560158 -31305,3500:215:4,5.5,-51.5,0,0,-0.00559782 -31306,3500:216:3,6,-51.5,0,0,-0.00556558 -31307,3500:216:4,6.5,-51.5,0,0,-0.00554832 -31308,3500:217:3,7,-51.5,0,0,-0.00555077 -31309,3500:217:4,7.5,-51.5,0,0,-0.00555201 -31310,3500:218:3,8,-51.5,0,0,-0.00554832 -31311,3500:218:4,8.5,-51.5,0,0,-0.00553108 -31312,3500:219:3,9,-51.5,0,0,-0.00552127 -31313,3500:219:4,9.5,-51.5,0,0,-0.00550288 -31314,3501:110:3,10,-51.5,0,0,-0.00546878 -31315,3501:110:4,10.5,-51.5,0,0,-0.00544451 -31316,3501:111:3,11,-51.5,0,0,-0.00543363 -31317,3501:111:4,11.5,-51.5,0,0,-0.00543363 -31318,3501:112:3,12,-51.5,0,0,-0.00543002 -31319,3501:112:4,12.5,-51.5,0,0,-0.00542399 -31320,3501:113:3,13,-51.5,0,0,-0.00542399 -31321,3501:113:4,13.5,-51.5,0,0,-0.00542642 -31322,3501:114:3,14,-51.5,0,0,-0.00543363 -31323,3501:114:4,14.5,-51.5,0,0,-0.00543363 -31324,3501:215:3,15,-51.5,0,0,-0.00543002 -31325,3501:215:4,15.5,-51.5,0,0,-0.00542881 -31326,3501:216:3,16,-51.5,0,0,-0.00542881 -31327,3501:216:4,16.5,-51.5,0,0,-0.00542763 -31328,3501:217:3,17,-51.5,0,0,-0.00542763 -31329,3501:217:4,17.5,-51.5,0,0,-0.00543002 -31330,3501:218:3,18,-51.5,0,0,-0.00543124 -31331,3501:218:4,18.5,-51.5,0,0,-0.00543124 -31332,3501:219:3,19,-51.5,0,0,-0.00543124 -31333,3501:219:4,19.5,-51.5,0,0,-0.00542763 -31334,3502:110:3,20,-51.5,0,0,-0.00542281 -31335,3502:110:4,20.5,-51.5,0,0,-0.00541796 -31336,3502:111:3,21,-51.5,0,0,-0.005453 -31337,3502:111:4,21.5,-51.5,0,0,-0.00544695 -31338,3502:112:3,22,-51.5,0,0,-0.00544816 -31339,3502:112:4,22.5,-51.5,0,0,-0.00542399 -31340,3502:113:3,23,-51.5,0,0,-0.00542763 -31341,3502:113:4,23.5,-51.5,0,0,-0.00543245 -31342,3502:114:3,24,-51.5,0,0,-0.00543363 -31343,3502:114:4,24.5,-51.5,0,0,-0.00543606 -31344,3502:215:3,25,-51.5,0,0,-0.00544333 -31345,3502:215:4,25.5,-51.5,0,0,-0.00543728 -31346,3502:216:3,26,-51.5,0,0,-0.00546392 -31347,3502:216:4,26.5,-51.5,0,0,-0.00546148 -31348,3502:217:3,27,-51.5,0,0,-0.00543485 -31349,3502:217:4,27.5,-51.5,0,0,-0.00547972 -31350,3502:218:3,28,-51.5,0,0,-0.00548091 -31351,3502:218:4,28.5,-51.5,0,0,-0.00548091 -31352,3502:219:3,29,-51.5,0,0,-0.00547727 -31353,3502:219:4,29.5,-51.5,0,0,-0.00547605 -31354,3503:110:3,30,-51.5,0,0,-0.00547241 -31355,3503:110:4,30.5,-51.5,0,0,-0.00548459 -31356,3503:111:3,31,-51.5,0,0,-0.00553968 -31357,3503:111:4,31.5,-51.5,0,0,-0.00553848 -31358,3503:112:3,32,-51.5,0,0,-0.00552494 -31359,3503:112:4,32.5,-51.5,0,0,-0.0055225 -31360,3503:113:3,33,-51.5,0,0,-0.00557302 -31361,3503:113:4,33.5,-51.5,0,0,-0.00563778 -31362,3503:114:3,34,-51.5,0,0,-0.00566791 -31363,3503:114:4,34.5,-51.5,0,0,-0.00571472 -31364,3503:215:3,35,-51.5,0,0,-0.00577088 -31365,3503:215:4,35.5,-51.5,0,0,-0.00575548 -31366,3503:216:3,36,-51.5,0,0,-0.00565535 -31367,3503:216:4,36.5,-51.5,0,0,-0.00555201 -31368,3503:217:3,37,-51.5,0,0,-0.00555325 -31369,3503:217:4,37.5,-51.5,0,0,-0.00556313 -31370,3503:218:3,38,-51.5,0,0,-0.00560781 -31371,3503:218:4,38.5,-51.5,0,0,-0.00564532 -31372,3503:219:3,39,-51.5,0,0,-0.00566414 -31373,3503:219:4,39.5,-51.5,0,0,-0.00571344 -31374,3504:110:3,40,-51.5,0,0,-0.005767 -31375,3504:110:4,40.5,-51.5,0,0,-0.00580172 -31376,3504:111:3,41,-51.5,0,0,-0.00582111 -31377,3504:111:4,41.5,-51.5,0,0,-0.00584314 -31378,3504:112:3,42,-51.5,0,0,-0.00585222 -31379,3504:112:4,42.5,-51.5,0,0,-0.00582885 -31380,3504:113:3,43,-51.5,0,0,-0.00582237 -31381,3504:113:4,43.5,-51.5,0,0,-0.00582111 -31382,3504:114:3,44,-51.5,0,0,-0.00579272 -31383,3504:114:4,44.5,-51.5,0,0,-0.00578883 -31384,3504:215:3,45,-51.5,0,0,-0.00576446 -31385,3504:215:4,45.5,-51.5,0,0,-0.00578243 -31386,3504:216:3,46,-51.5,0,0,-0.00577471 -31387,3504:216:4,46.5,-51.5,0,0,-0.00575548 -31388,3504:217:3,47,-51.5,0,0,-0.00571724 -31389,3504:217:4,47.5,-51.5,0,0,-0.00560405 -31390,3504:218:3,48,-51.5,0,0,-0.00558168 -31391,3504:218:4,48.5,-51.5,0,0,-0.00559039 -31392,3504:219:3,49,-51.5,0,0,-0.00553476 -31393,3504:219:4,49.5,-51.5,0,0,-0.00552861 -31394,3505:110:3,50,-51.5,0,0,-0.0055557 -31395,3505:110:4,50.5,-51.5,0,0,-0.00550165 -31396,3505:111:3,51,-51.5,0,0,-0.00547 -31397,3505:111:4,51.5,-51.5,0,0,-0.00549312 -31398,3505:112:3,52,-51.5,0,0,-0.00555943 -31399,3505:112:4,52.5,-51.5,0,0,-0.00564405 -31400,3505:113:3,53,-51.5,0,0,-0.00564781 -31401,3505:113:4,53.5,-51.5,0,0,-0.00557551 -31402,3505:114:3,54,-51.5,0,0,-0.00554953 -31403,3505:114:4,54.5,-51.5,0,0,-0.0055446 -31404,3505:215:3,55,-51.5,0,0,-0.00560033 -31405,3505:215:4,55.5,-51.5,0,0,-0.00558293 -31406,3505:216:3,56,-51.5,0,0,-0.00552741 -31407,3505:216:4,56.5,-51.5,0,0,-0.00548824 -31408,3505:217:3,57,-51.5,0,0,-0.00548091 -31409,3505:217:4,57.5,-51.5,0,0,-0.00548337 -31410,3505:218:3,58,-51.5,0,0,-0.00553968 -31411,3505:218:4,58.5,-51.5,0,0,-0.00575548 -31412,3505:219:3,59,-51.5,0,0,-0.00588873 -31413,3505:219:4,59.5,-51.5,0,0,-0.00573763 -31414,3506:110:3,60,-51.5,0,0,-0.00560405 -31415,3506:110:4,60.5,-51.5,0,0,-0.00564532 -31416,3506:111:3,61,-51.5,0,0,-0.00590974 -31417,3506:111:4,61.5,-51.5,0,0,-0.00610872 -31418,3506:112:3,62,-51.5,0,0,-0.00593472 -31419,3506:112:4,62.5,-51.5,0,0,-0.00579657 -31420,3506:113:3,63,-51.5,0,0,-0.00586005 -31421,3506:113:4,63.5,-51.5,0,0,-0.00646651 -31422,3506:114:3,64,-51.5,0,0,-0.00762212 -31423,3506:114:4,64.5,-51.5,0,0,-0.00750931 -31424,3506:215:3,65,-51.5,0,0,-0.00722085 -31425,3506:215:4,65.5,-51.5,0,0,-0.00689272 -31426,3506:216:3,66,-51.5,0,0,-0.00691884 -31427,3506:216:4,66.5,-51.5,0,0,-0.0070478 -31428,3506:217:3,67,-51.5,0,0,-0.00705408 -31429,3506:217:4,67.5,-51.5,0,0,-0.00712823 -31430,3506:218:3,68,-51.5,0,0,-0.00749763 -31431,3506:218:4,68.5,-51.5,0,0,-0.00754787 -31432,3506:219:3,69,-51.5,0,0,-0.00770748 -31433,3506:219:4,69.5,-51.5,0,0,-0.00781458 -31434,3507:110:3,70,-51.5,0,0,-0.00797814 -31435,3507:110:4,70.5,-51.5,0,0,-0.00825103 -31436,3507:111:3,71,-51.5,0,0,-0.00783724 -31437,3507:111:4,71.5,-51.5,0,0,-0.00701029 -31438,3507:112:3,72,-51.5,0,0,-0.00673811 -31439,3507:112:4,72.5,-51.5,0,0,-0.00658841 -31440,3507:113:4,73.5,-51.5,0,0,-0.00651412 -31441,3507:114:3,74,-51.5,0,0,-0.00638648 -31442,3507:114:4,74.5,-51.5,0,0,-0.00618113 -31443,3507:215:3,75,-51.5,0,0,-0.00614004 -31444,3507:215:4,75.5,-51.5,0,0,-0.00611552 -31445,3507:216:3,76,-51.5,0,0,-0.00608973 -31446,3507:216:4,76.5,-51.5,0,0,-0.00608704 -31447,3507:217:3,77,-51.5,0,0,-0.00608027 -31448,3507:217:4,77.5,-51.5,0,0,-0.00604388 -31449,3507:218:3,78,-51.5,0,0,-0.00595589 -31450,3507:218:4,78.5,-51.5,0,0,-0.00587828 -31451,3507:219:3,79,-51.5,0,0,-0.00585222 -31452,3507:219:4,79.5,-51.5,0,0,-0.00583665 -31453,3508:110:3,80,-51.5,0,0,-0.00581074 -31454,3508:110:4,80.5,-51.5,0,0,-0.00577855 -31455,3508:111:3,81,-51.5,0,0,-0.00575037 -31456,3508:111:4,81.5,-51.5,0,0,-0.00572997 -31457,3508:112:3,82,-51.5,0,0,-0.00571852 -31458,3508:112:4,82.5,-51.5,0,0,-0.00574144 -31459,3508:113:3,83,-51.5,0,0,-0.00574016 -31460,3508:113:4,83.5,-51.5,0,0,-0.00573888 -31461,3508:114:3,84,-51.5,0,0,-0.00583403 -31462,3508:114:4,84.5,-51.5,0,0,-0.00585484 -31463,3508:215:3,85,-51.5,0,0,-0.00579657 -31464,3508:215:4,85.5,-51.5,0,0,-0.00573254 -31465,3508:216:3,86,-51.5,0,0,-0.00578883 -31466,3508:216:4,86.5,-51.5,0,0,-0.00618801 -31467,3508:217:3,87,-51.5,0,0,-0.00697293 -31468,3508:217:4,87.5,-51.5,0,0,-0.00888852 -31469,3508:218:3,88,-51.5,0,0,-0.0095566 -31470,3508:218:4,88.5,-51.5,0,0,-0.00813242 -31471,3508:219:3,89,-51.5,0,0,-0.00817782 -31472,3508:219:4,89.5,-51.5,0,0,-0.00794265 -31473,3509:110:3,90,-51.5,0,0,-0.00825653 -31474,3509:110:4,90.5,-51.5,0,0,-0.0083453 -31475,3509:111:3,91,-51.5,0,0,-0.0084595 -31476,3509:111:4,91.5,-51.5,0,0,-0.00861356 -31477,3509:112:3,92,-51.5,0,0,-0.0086965 -31478,3509:112:4,92.5,-51.5,0,0,-0.00852951 -31479,3509:113:3,93,-51.5,0,0,-0.0077643 -31480,3509:113:4,93.5,-51.5,0,0,-0.00772982 -31481,3509:114:3,94,-51.5,0,0,-0.00775739 -31482,3509:114:4,94.5,-51.5,0,0,-0.00780763 -31483,3509:215:3,95,-51.5,0,0,-0.00778855 -31484,3509:215:4,95.5,-51.5,0,0,-0.00772121 -31485,3509:216:3,96,-51.5,0,0,-0.00796925 -31486,3509:216:4,96.5,-51.5,0,0,-0.00809448 -31487,3509:217:3,97,-51.5,0,0,-0.00801733 -31488,3509:217:4,97.5,-51.5,0,0,-0.00795329 -31489,3509:218:3,98,-51.5,0,0,-0.00810709 -31490,3509:218:4,98.5,-51.5,0,0,-0.00831743 -31491,3509:219:3,99,-51.5,0,0,-0.00866167 -31492,3509:219:4,99.5,-51.5,0,0,-0.00881357 -31493,3510:110:3,100,-51.5,0,0,-0.00875096 -31494,3510:110:4,100.5,-51.5,0,0,-0.00874507 -31495,3510:111:3,101,-51.5,0,0,-0.00879201 -31496,3510:111:4,101.5,-51.5,0,0,-0.00876657 -31497,3510:112:3,102,-51.5,0,0,-0.00862511 -31498,3510:112:4,102.5,-51.5,0,0,-0.0085638 -31499,3510:113:3,103,-51.5,0,0,-0.00933957 -31500,3510:113:4,103.5,-51.5,0,0,-0.00983119 -31501,3510:114:3,104,-51.5,0,0,-0.00961434 -31502,3510:114:4,104.5,-51.5,0,0,-0.00924629 -31503,3510:215:3,105,-51.5,0,0,-0.00884901 -31504,3510:215:4,105.5,-51.5,0,0,-0.00864431 -31505,3510:216:3,106,-51.5,0,0,-0.00864625 -31506,3510:216:4,106.5,-51.5,0,0,-0.00867328 -31507,3510:217:3,107,-51.5,0,0,-0.00853142 -31508,3510:217:4,107.5,-51.5,0,0,-0.00831376 -31509,3510:218:3,108,-51.5,0,0,-0.00817421 -31510,3510:218:4,108.5,-51.5,0,0,-0.00814149 -31511,3510:219:3,109,-51.5,0,0,-0.00849726 -31512,3510:219:4,109.5,-51.5,0,0,-0.00901826 -31513,3511:110:3,110,-51.5,0,0,-0.00944215 -31514,3511:110:4,110.5,-51.5,0,0,-0.00966593 -31515,3511:111:3,111,-51.5,0,0,-0.00935834 -31516,3511:111:4,111.5,-51.5,0,0,-0.00873925 -31517,3511:112:3,112,-51.5,0,0,-0.00839002 -31518,3511:112:4,112.5,-51.5,0,0,-0.0085638 -31519,3511:113:3,113,-51.5,0,0,-0.0092587 -31520,3511:113:4,113.5,-51.5,0,0,-0.0104069 -31521,3511:114:3,114,-51.5,0,0,-0.0108096 -31522,3511:114:4,114.5,-51.5,0,0,-0.0103167 -31523,3511:215:3,115,-51.5,0,0,-0.00960361 -31524,3511:215:4,115.5,-51.5,0,0,-0.00980491 -31525,3511:216:3,116,-51.5,0,0,-0.0101613 -31526,3511:216:4,116.5,-51.5,0,0,-0.0105144 -31527,3511:217:3,117,-51.5,0,0,-0.0105073 -31528,3511:217:4,117.5,-51.5,0,0,-0.0104605 -31529,3511:218:3,118,-51.5,0,0,-0.0105261 -31530,3511:218:4,118.5,-51.5,0,0,-0.0106776 -31531,3511:219:3,119,-51.5,0,0,-0.0108313 -31532,3511:219:4,119.5,-51.5,0,0,-0.0109358 -31533,3512:110:3,120,-51.5,0,0,-0.0111156 -31534,3512:110:4,120.5,-51.5,0,0,-0.0113237 -31535,3512:111:3,121,-51.5,0,0,-0.0112505 -31536,3512:111:4,121.5,-51.5,0,0,-0.0110586 -31537,3512:112:3,122,-51.5,0,0,-0.0108895 -31538,3512:112:4,122.5,-51.5,0,0,-0.0112405 -31539,3512:113:3,123,-51.5,0,0,-0.0117254 -31540,3512:113:4,123.5,-51.5,0,0,-0.0118175 -31541,3512:114:3,124,-51.5,0,0,-0.0115977 -31542,3512:114:4,124.5,-51.5,0,0,-0.0116158 -31543,3512:215:3,125,-51.5,0,0,-0.0116236 -31544,3512:215:4,125.5,-51.5,0,0,-0.0116496 -31545,3512:216:3,126,-51.5,0,0,-0.0117569 -31546,3512:216:4,126.5,-51.5,0,0,-0.0119718 -31547,3512:217:3,127,-51.5,0,0,-0.0121878 -31548,3512:217:4,127.5,-51.5,0,0,-0.0121769 -31549,3512:218:3,128,-51.5,0,0,-0.0119157 -31550,3512:218:4,128.5,-51.5,0,0,-0.0118413 -31551,3512:219:3,129,-51.5,0,0,-0.0122288 -31552,3512:219:4,129.5,-51.5,0,0,-0.0126432 -31553,3513:110:3,130,-51.5,0,0,-0.0127341 -31554,3513:110:4,130.5,-51.5,0,0,-0.0127426 -31555,3513:111:3,131,-51.5,0,0,-0.0126687 -31556,3513:111:4,131.5,-51.5,0,0,-0.0125531 -31557,3513:112:3,132,-51.5,0,0,-0.0124356 -31558,3513:112:4,132.5,-51.5,0,0,-0.0122891 -31559,3513:113:3,133,-51.5,0,0,-0.0120469 -31560,3513:113:4,133.5,-51.5,0,0,-0.0117595 -31561,3513:114:3,134,-51.5,0,0,-0.0115434 -31562,3513:114:4,134.5,-51.5,0,0,-0.0113693 -31563,3513:215:3,135,-51.5,0,0,-0.0112782 -31564,3513:215:4,135.5,-51.5,0,0,-0.0113744 -31565,3513:216:3,136,-51.5,0,0,-0.0117202 -31566,3513:216:4,136.5,-51.5,0,0,-0.0119477 -31567,3513:217:3,137,-51.5,0,0,-0.0119103 -31568,3513:217:4,137.5,-51.5,0,0,-0.0117045 -31569,3513:218:3,138,-51.5,0,0,-0.0115099 -31570,3513:218:4,138.5,-51.5,0,0,-0.0114457 -31571,3513:219:3,139,-51.5,0,0,-0.0114842 -31572,3513:219:4,139.5,-51.5,0,0,-0.0114202 -31573,3514:110:3,140,-51.5,0,0,-0.0112129 -31574,3514:110:4,140.5,-51.5,0,0,-0.0110883 -31575,3514:111:3,141,-51.5,0,0,-0.0111355 -31576,3514:111:4,141.5,-51.5,0,0,-0.0112379 -31577,3514:112:3,142,-51.5,0,0,-0.0113212 -31578,3514:112:4,142.5,-51.5,0,0,-0.0114586 -31579,3514:113:3,143,-51.5,0,0,-0.0116679 -31580,3514:113:4,143.5,-51.5,0,0,-0.0117806 -31581,3514:114:3,144,-51.5,0,0,-0.0117071 -31582,3514:114:4,144.5,-51.5,0,0,-0.0115124 -31583,3514:215:3,145,-51.5,0,0,-0.0113136 -31584,3514:215:4,145.5,-51.5,0,0,-0.0112455 -31585,3514:216:3,146,-51.5,0,0,-0.0112706 -31586,3514:216:4,146.5,-51.5,0,0,-0.0112581 -31587,3514:217:3,147,-51.5,0,0,-0.0110809 -31588,3514:217:4,147.5,-51.5,0,0,-0.010771 -31589,3514:218:3,148,-51.5,0,0,-0.0105284 -31590,3514:218:4,148.5,-51.5,0,0,-0.010319 -31591,3514:219:3,149,-51.5,0,0,-0.00981587 -31592,3514:219:4,149.5,-51.5,0,0,-0.00852574 -31593,3515:110:3,150,-51.5,0,0,-0.00738171 -31594,3515:110:4,150.5,-51.5,0,0,-0.00744774 -31595,3515:111:3,151,-51.5,0,0,-0.00787225 -31596,3515:111:4,151.5,-51.5,0,0,-0.00814149 -31597,3515:112:3,152,-51.5,0,0,-0.00844255 -31598,3515:112:4,152.5,-51.5,0,0,-0.00868485 -31599,3515:113:3,153,-51.5,0,0,-0.0090263 -31600,3515:113:4,153.5,-51.5,0,0,-0.00928766 -31601,3515:114:3,154,-51.5,0,0,-0.00961002 -31602,3515:114:4,154.5,-51.5,0,0,-0.0103167 -31603,3515:215:3,155,-51.5,0,0,-0.0109529 -31604,3515:215:4,155.5,-51.5,0,0,-0.0113287 -31605,3515:216:3,156,-51.5,0,0,-0.011243 -31606,3515:216:4,156.5,-51.5,0,0,-0.0106824 -31607,3515:217:3,157,-51.5,0,0,-0.0104185 -31608,3515:217:4,157.5,-51.5,0,0,-0.0104093 -31609,3515:218:3,158,-51.5,0,0,-0.0103652 -31610,3515:218:4,158.5,-51.5,0,0,-0.0102799 -31611,3515:219:3,159,-51.5,0,0,-0.0102685 -31612,3515:219:4,159.5,-51.5,0,0,-0.0105426 -31613,3516:110:3,160,-51.5,0,0,-0.0110513 -31614,3516:110:4,160.5,-51.5,0,0,-0.0113237 -31615,3516:111:3,161,-51.5,0,0,-0.0113034 -31616,3516:111:4,161.5,-51.5,0,0,-0.0113668 -31617,3516:112:3,162,-51.5,0,0,-0.0117727 -31618,3516:112:4,162.5,-51.5,0,0,-0.0128947 -31619,3516:113:3,163,-51.5,0,0,-0.0154956 -31620,3516:113:4,163.5,-51.5,0,0,-0.0179193 -31621,3516:114:3,164,-51.5,0,0,-0.0183312 -31622,3516:114:4,164.5,-51.5,0,0,-0.0169668 -31623,3516:215:3,165,-51.5,0,0,-0.0147992 -31624,3516:215:4,165.5,-51.5,0,0,-0.0137936 -31625,3516:216:3,166,-51.5,0,0,-0.0142076 -31626,3516:216:4,166.5,-51.5,0,0,-0.0145231 -31627,3516:217:3,167,-51.5,0,0,-0.0162652 -31628,3516:217:4,167.5,-51.5,0,0,-0.0183435 -31629,3516:218:3,168,-51.5,0,0,-0.0198924 -31630,3516:218:4,168.5,-51.5,0,0,-0.020777 -31631,3516:219:3,169,-51.5,0,0,-0.0211697 -31632,3516:219:4,169.5,-51.5,0,0,-0.0212558 -31633,3517:110:3,170,-51.5,0,0,-0.0211171 -31634,3517:110:4,170.5,-51.5,0,0,-0.0203 -31635,3517:111:3,171,-51.5,0,0,-0.0196209 -31636,3517:111:4,171.5,-51.5,0,0,-0.019559 -31637,3517:112:3,172,-51.5,0,0,-0.0195767 -31638,3517:112:4,172.5,-51.5,0,0,-0.0196651 -31639,3517:113:3,173,-51.5,0,0,-0.0197762 -31640,3517:113:4,173.5,-51.5,0,0,-0.0198789 -31641,3517:114:3,174,-51.5,0,0,-0.0199372 -31642,3517:114:4,174.5,-51.5,0,0,-0.0198745 -31643,3517:215:3,175,-51.5,0,0,-0.0196341 -31644,3517:215:4,175.5,-51.5,0,0,-0.0193139 -31645,3517:216:3,176,-51.5,0,0,-0.0189435 -31646,3517:216:4,176.5,-51.5,0,0,-0.0181751 -31647,3517:217:3,177,-51.5,0,0,-0.0171932 -31648,3517:217:4,177.5,-51.5,0,0,-0.0172863 -31649,3517:218:3,178,-51.5,0,0,-0.0175761 -31650,3517:218:4,178.5,-51.5,0,0,-0.0176594 -31651,3517:219:3,179,-51.5,0,0,-0.0170701 -31652,3517:219:4,179.5,-51.5,0,0,-0.0168452 -31653,3518:110:3,180,-51.5,0,0,-0.01646 -31654,5518:110:1,-180,-51,0,0,-0.0169401 -31655,5517:219:2,-179.5,-51,0,0,-0.0168188 -31656,5517:219:1,-179,-51,0,0,-0.016815 -31657,5517:218:2,-178.5,-51,0,0,-0.0168718 -31658,5517:218:1,-178,-51,0,0,-0.0168452 -31659,5517:217:2,-177.5,-51,0,0,-0.0166496 -31660,5517:217:1,-177,-51,0,0,-0.0162178 -31661,5517:216:2,-176.5,-51,0,0,-0.0156247 -31662,5517:216:1,-176,-51,0,0,-0.0153502 -31663,5517:215:2,-175.5,-51,0,0,-0.0154365 -31664,5517:215:1,-175,-51,0,0,-0.0155164 -31665,5517:114:2,-174.5,-51,0,0,-0.0154434 -31666,5517:114:1,-174,-51,0,0,-0.0154331 -31667,5517:113:2,-173.5,-51,0,0,-0.0155862 -31668,5517:113:1,-173,-51,0,0,-0.0157549 -31669,5517:112:2,-172.5,-51,0,0,-0.0156668 -31670,5517:112:1,-172,-51,0,0,-0.0152199 -31671,5517:111:2,-171.5,-51,0,0,-0.0146966 -31672,5517:111:1,-171,-51,0,0,-0.0146605 -31673,5517:110:2,-170.5,-51,0,0,-0.0150367 -31674,5517:110:1,-170,-51,0,0,-0.0153571 -31675,5516:219:2,-169.5,-51,0,0,-0.0153639 -31676,5516:219:1,-169,-51,0,0,-0.0150738 -31677,5516:218:2,-168.5,-51,0,0,-0.0147131 -31678,5516:218:1,-168,-51,0,0,-0.0145263 -31679,5516:217:2,-167.5,-51,0,0,-0.0145981 -31680,5516:217:1,-167,-51,0,0,-0.0148124 -31681,5516:216:2,-166.5,-51,0,0,-0.0151043 -31682,5516:216:1,-166,-51,0,0,-0.0151756 -31683,5516:215:2,-165.5,-51,0,0,-0.0152335 -31684,5516:215:1,-165,-51,0,0,-0.0153639 -31685,5516:114:2,-164.5,-51,0,0,-0.0154921 -31686,5516:114:1,-164,-51,0,0,-0.0154296 -31687,5516:113:2,-163.5,-51,0,0,-0.0152131 -31688,5516:113:1,-163,-51,0,0,-0.0150502 -31689,5516:112:2,-162.5,-51,0,0,-0.0149896 -31690,5516:112:1,-162,-51,0,0,-0.0149225 -31691,5516:111:2,-161.5,-51,0,0,-0.0146835 -31692,5516:111:1,-161,-51,0,0,-0.0141726 -31693,5516:110:2,-160.5,-51,0,0,-0.0135578 -31694,5516:110:1,-160,-51,0,0,-0.0130398 -31695,5515:219:2,-159.5,-51,0,0,-0.0127398 -31696,5515:219:1,-159,-51,0,0,-0.0127941 -31697,5515:218:2,-158.5,-51,0,0,-0.0131571 -31698,5515:218:1,-158,-51,0,0,-0.0137689 -31699,5515:217:2,-157.5,-51,0,0,-0.0146441 -31700,5515:217:1,-157,-51,0,0,-0.0154365 -31701,5515:216:2,-156.5,-51,0,0,-0.0156527 -31702,5515:216:1,-156,-51,0,0,-0.0151892 -31703,5515:215:2,-155.5,-51,0,0,-0.0145525 -31704,5515:215:1,-155,-51,0,0,-0.0142427 -31705,5515:114:2,-154.5,-51,0,0,-0.0140839 -31706,5515:114:1,-154,-51,0,0,-0.013323 -31707,5515:113:2,-153.5,-51,0,0,-0.010735 -31708,5515:113:1,-153,-51,0,0,-0.00865013 -31709,5515:112:2,-152.5,-51,0,0,-0.00874311 -31710,5515:112:1,-152,-51,0,0,-0.00877242 -31711,5515:111:2,-151.5,-51,0,0,-0.00875877 -31712,5515:111:1,-151,-51,0,0,-0.00883716 -31713,5515:110:2,-150.5,-51,0,0,-0.00918059 -31714,5515:110:1,-150,-51,0,0,-0.00955874 -31715,5514:219:2,-149.5,-51,0,0,-0.00962076 -31716,5514:219:1,-149,-51,0,0,-0.00951408 -31717,5514:218:2,-148.5,-51,0,0,-0.0094527 -31718,5514:218:1,-148,-51,0,0,-0.00999487 -31719,5514:217:2,-147.5,-51,0,0,-0.0125194 -31720,5514:217:1,-147,-51,0,0,-0.0128658 -31721,5514:216:2,-146.5,-51,0,0,-0.0134519 -31722,5514:216:1,-146,-51,0,0,-0.0139771 -31723,5514:215:2,-145.5,-51,0,0,-0.0162945 -31724,5514:215:1,-145,-51,0,0,-0.0170471 -31725,5514:114:2,-144.5,-51,0,0,-0.017743 -31726,5514:114:1,-144,-51,0,0,-0.0187864 -31727,5514:113:2,-143.5,-51,0,0,-0.017723 -31728,5514:113:1,-143,-51,0,0,-0.016549 -31729,5514:112:2,-142.5,-51,0,0,-0.0167096 -31730,5514:112:1,-142,-51,0,0,-0.0176991 -31731,5514:111:2,-141.5,-51,0,0,-0.0193749 -31732,5514:111:1,-141,-51,0,0,-0.0228898 -31733,5514:110:2,-140.5,-51,0,0,-0.0240574 -31734,5514:110:1,-140,-51,0,0,-0.0217066 -31735,5513:219:2,-139.5,-51,0,0,-0.0200002 -31736,5513:219:1,-139,-51,0,0,-0.018702 -31737,5513:218:2,-138.5,-51,0,0,-0.018327 -31738,5513:218:1,-138,-51,0,0,-0.0175841 -31739,5513:217:2,-137.5,-51,0,0,-0.0170203 -31740,5513:217:1,-137,-51,0,0,-0.0173993 -31741,5513:216:2,-136.5,-51,0,0,-0.0180244 -31742,5513:216:1,-136,-51,0,0,-0.0185678 -31743,5513:215:2,-135.5,-51,0,0,-0.0193749 -31744,5513:215:1,-135,-51,0,0,-0.0202497 -31745,5513:114:2,-134.5,-51,0,0,-0.0205997 -31746,5513:114:1,-134,-51,0,0,-0.0203229 -31747,5513:113:2,-133.5,-51,0,0,-0.019559 -31748,5513:113:1,-133,-51,0,0,-0.0186264 -31749,5513:112:2,-132.5,-51,0,0,-0.0178832 -31750,5513:112:1,-132,-51,0,0,-0.0172901 -31751,5513:111:2,-131.5,-51,0,0,-0.0167923 -31752,5513:111:1,-131,-51,0,0,-0.0169364 -31753,5513:110:2,-130.5,-51,0,0,-0.02116 -31754,5513:110:1,-130,-51,0,0,-0.0240738 -31755,5512:219:2,-129.5,-51,0,0,-0.0242872 -31756,5512:219:1,-129,-51,0,0,-0.0245692 -31757,5512:218:2,-128.5,-51,0,0,-0.0250296 -31758,5512:218:1,-128,-51,0,0,-0.0251034 -31759,5512:217:2,-127.5,-51,0,0,-0.0247029 -31760,5512:217:1,-127,-51,0,0,-0.0240793 -31761,5512:216:2,-126.5,-51,0,0,-0.0233393 -31762,5512:216:1,-126,-51,0,0,-0.0222676 -31763,5512:215:2,-125.5,-51,0,0,-0.020763 -31764,5512:215:1,-125,-51,0,0,-0.018572 -31765,5512:114:2,-124.5,-51,0,0,-0.0177469 -31766,5512:114:1,-124,-51,0,0,-0.0180447 -31767,5512:113:2,-123.5,-51,0,0,-0.0192835 -31768,5512:113:1,-123,-51,0,0,-0.0195724 -31769,5512:112:2,-122.5,-51,0,0,-0.0191062 -31770,5512:112:1,-122,-51,0,0,-0.0185761 -31771,5512:111:2,-121.5,-51,0,0,-0.0179679 -31772,5512:111:1,-121,-51,0,0,-0.0176039 -31773,5512:110:2,-120.5,-51,0,0,-0.0173993 -31774,5512:110:1,-120,-51,0,0,-0.0171778 -31775,5511:219:2,-119.5,-51,0,0,-0.0172165 -31776,5511:219:1,-119,-51,0,0,-0.0185594 -31777,5511:218:2,-118.5,-51,0,0,-0.0208004 -31778,5511:218:1,-118,-51,0,0,-0.0222425 -31779,5511:217:2,-117.5,-51,0,0,-0.0233181 -31780,5511:217:1,-117,-51,0,0,-0.0240031 -31781,5511:216:2,-116.5,-51,0,0,-0.0242487 -31782,5511:216:1,-116,-51,0,0,-0.0242487 -31783,5511:215:2,-115.5,-51,0,0,-0.023965 -31784,5511:215:1,-115,-51,0,0,-0.0233129 -31785,5511:114:2,-114.5,-51,0,0,-0.0220225 -31786,5511:114:1,-114,-51,0,0,-0.020154 -31787,5511:113:2,-113.5,-51,0,0,-0.0195546 -31788,5511:113:1,-113,-51,0,0,-0.0193009 -31789,5511:112:2,-112.5,-51,0,0,-0.0191365 -31790,5511:112:1,-112,-51,0,0,-0.0186768 -31791,5511:111:2,-111.5,-51,0,0,-0.0179597 -31792,5511:111:1,-111,-51,0,0,-0.0178832 -31793,5511:110:2,-110.5,-51,0,0,-0.0187695 -31794,5511:110:1,-110,-51,0,0,-0.019102 -31795,5510:219:2,-109.5,-51,0,0,-0.0189691 -31796,5510:219:1,-109,-51,0,0,-0.0185887 -31797,5510:218:2,-108.5,-51,0,0,-0.0182776 -31798,5510:218:1,-108,-51,0,0,-0.0181099 -31799,5510:217:2,-107.5,-51,0,0,-0.017984 -31800,5510:217:1,-107,-51,0,0,-0.0178792 -31801,5510:216:2,-106.5,-51,0,0,-0.017723 -31802,5510:216:1,-106,-51,0,0,-0.0175959 -31803,5510:215:2,-105.5,-51,0,0,-0.0179234 -31804,5510:215:1,-105,-51,0,0,-0.0191062 -31805,5510:114:2,-104.5,-51,0,0,-0.0204931 -31806,5510:114:1,-104,-51,0,0,-0.0212605 -31807,5510:113:2,-103.5,-51,0,0,-0.0224951 -31808,5510:113:1,-103,-51,0,0,-0.0226583 -31809,5510:112:2,-102.5,-51,0,0,-0.0218492 -31810,5510:112:1,-102,-51,0,0,-0.0218886 -31811,5510:111:2,-101.5,-51,0,0,-0.0217116 -31812,5510:111:1,-101,-51,0,0,-0.0214049 -31813,5510:110:2,-100.5,-51,0,0,-0.0212031 -31814,5510:110:1,-100,-51,0,0,-0.0211649 -31815,5509:219:2,-99.5,-51,0,0,-0.0209039 -31816,5509:219:1,-99,-51,0,0,-0.0205765 -31817,5509:218:2,-98.5,-51,0,0,-0.0205858 -31818,5509:218:1,-98,-51,0,0,-0.0207069 -31819,5509:217:2,-97.5,-51,0,0,-0.020154 -31820,5509:217:1,-97,-51,0,0,-0.0187441 -31821,5509:216:2,-96.5,-51,0,0,-0.0174345 -31822,5509:216:1,-96,-51,0,0,-0.0170854 -31823,5509:215:2,-95.5,-51,0,0,-0.017743 -31824,5509:215:1,-95,-51,0,0,-0.0192965 -31825,5509:114:2,-94.5,-51,0,0,-0.0203046 -31826,5509:114:1,-94,-51,0,0,-0.0207022 -31827,5509:113:2,-93.5,-51,0,0,-0.0204331 -31828,5509:113:1,-93,-51,0,0,-0.0201405 -31829,5509:112:2,-92.5,-51,0,0,-0.0199508 -31830,5509:112:1,-92,-51,0,0,-0.0199597 -31831,5509:111:2,-91.5,-51,0,0,-0.0200589 -31832,5509:111:1,-91,-51,0,0,-0.0198566 -31833,5509:110:2,-90.5,-51,0,0,-0.0194799 -31834,5509:110:1,-90,-51,0,0,-0.0194186 -31835,5508:219:2,-89.5,-51,0,0,-0.0194229 -31836,5508:219:1,-89,-51,0,0,-0.0194581 -31837,5508:218:2,-88.5,-51,0,0,-0.0193444 -31838,5508:218:1,-88,-51,0,0,-0.0190934 -31839,5508:217:2,-87.5,-51,0,0,-0.0187358 -31840,5508:217:1,-87,-51,0,0,-0.0187736 -31841,5508:216:2,-86.5,-51,0,0,-0.0189862 -31842,5508:216:1,-86,-51,0,0,-0.0192142 -31843,5508:215:2,-85.5,-51,0,0,-0.0195459 -31844,5508:215:1,-85,-51,0,0,-0.0200907 -31845,5508:114:2,-84.5,-51,0,0,-0.0208145 -31846,5508:114:1,-84,-51,0,0,-0.0213375 -31847,5508:113:2,-83.5,-51,0,0,-0.0211983 -31848,5508:113:1,-83,-51,0,0,-0.0204884 -31849,5508:112:2,-82.5,-51,0,0,-0.0200002 -31850,5508:112:1,-82,-51,0,0,-0.0200319 -31851,5508:111:2,-81.5,-51,0,0,-0.0198252 -31852,5508:111:1,-81,-51,0,0,-0.0195503 -31853,5508:110:2,-80.5,-51,0,0,-0.0192921 -31854,5508:110:1,-80,-51,0,0,-0.0192401 -31855,5507:219:2,-79.5,-51,0,0,-0.0197672 -31856,5507:219:1,-79,-51,0,0,-0.0205579 -31857,5507:218:2,-78.5,-51,0,0,-0.0209653 -31858,5507:218:1,-78,-51,0,0,-0.0210553 -31859,5507:217:2,-77.5,-51,0,0,-0.0211983 -31860,5507:217:1,-77,-51,0,0,-0.0214049 -31861,5507:216:2,-76.5,-51,0,0,-0.0214002 -31862,5507:216:1,-76,-51,0,0,-0.02106 -31863,5507:215:2,-75.5,-51,0,0,-0.0205811 -31864,5507:215:1,-75,-51,0,0,-0.0200408 -31865,5507:114:2,-74.5,-51,0,0,-0.0195063 -31866,5507:114:1,-74,-51,0,0,-0.0190291 -31867,5507:113:2,-73.5,-51,0,0,-0.0184097 -31868,5507:113:1,-73,-51,0,0,-0.0179679 -31869,5507:112:2,-72.5,-51,0,0,-0.0181139 -31870,5507:112:1,-72,-51,0,0,-0.0182161 -31871,5507:111:2,-71.5,-51,0,0,-0.0176912 -31872,5507:111:1,-71,-51,0,0,-0.0176594 -31873,5507:110:2,-70.5,-51,0,0,-0.0173212 -31874,5507:110:1,-70,-51,0,0,-0.0166272 -31875,5506:219:2,-69.5,-51,0,0,-0.0155548 -31876,5506:219:1,-69,-51,0,0,-0.0140651 -31877,5506:218:2,-68.5,-51,0,0,-0.0131365 -31878,5506:218:1,-68,-51,0,0,-0.0124273 -31879,5506:217:2,-67.5,-51,0,0,-0.0121497 -31880,5506:217:1,-67,-51,0,0,-0.0119985 -31881,5506:216:2,-66.5,-51,0,0,-0.0114023 -31882,5506:216:1,-66,-51,0,0,-0.0111853 -31883,5506:215:2,-65.5,-51,0,0,-0.0110809 -31884,5506:215:1,-65,-51,0,0,-0.0109309 -31885,5506:114:2,-64.5,-51,0,0,-0.0106087 -31886,5506:114:1,-64,-51,0,0,-0.0103282 -31887,5506:113:2,-63.5,-51,0,0,-0.0104023 -31888,5506:113:1,-63,-51,0,0,-0.0108338 -31889,5506:112:2,-62.5,-51,0,0,-0.0103629 -31890,5506:112:1,-62,-51,0,0,-0.00984002 -31891,5506:111:2,-61.5,-51,0,0,-0.00956727 -31892,5506:111:1,-61,-51,0,0,-0.00957796 -31893,5506:110:2,-60.5,-51,0,0,-0.0102593 -31894,5506:110:1,-60,-51,0,0,-0.0111181 -31895,5505:219:2,-59.5,-51,0,0,-0.0110685 -31896,5505:219:1,-59,-51,0,0,-0.0104442 -31897,5505:218:2,-58.5,-51,0,0,-0.0101727 -31898,5505:218:1,-58,-51,0,0,-0.00979837 -31899,5505:217:2,-57.5,-51,0,0,-0.00954593 -31900,5505:217:1,-57,-51,0,0,-0.00923598 -31901,5505:216:2,-56.5,-51,0,0,-0.0083193 -31902,5505:216:1,-56,-51,0,0,-0.00763913 -31903,5505:215:2,-55.5,-51,0,0,-0.0079056 -31904,5505:215:1,-55,-51,0,0,-0.00806746 -31905,5505:114:2,-54.5,-51,0,0,-0.00802267 -31906,5505:114:1,-54,-51,0,0,-0.00810169 -31907,5505:113:2,-53.5,-51,0,0,-0.00804058 -31908,5505:113:1,-53,-51,0,0,-0.00801373 -31909,5505:112:2,-52.5,-51,0,0,-0.00761369 -31910,5505:112:1,-52,-51,0,0,-0.00712349 -31911,5505:111:2,-51.5,-51,0,0,-0.00639928 -31912,5505:111:1,-51,-51,0,0,-0.00617287 -31913,5505:110:2,-50.5,-51,0,0,-0.00628085 -31914,5505:110:1,-50,-51,0,0,-0.00616467 -31915,5504:219:2,-49.5,-51,0,0,-0.00603851 -31916,5504:219:1,-49,-51,0,0,-0.00624605 -31917,5504:218:2,-48.5,-51,0,0,-0.00647081 -31918,5504:218:1,-48,-51,0,0,-0.00661193 -31919,5504:217:2,-47.5,-51,0,0,-0.0063893 -31920,5504:217:1,-47,-51,0,0,-0.00800307 -31921,5504:216:2,-46.5,-51,0,0,-0.00917241 -31922,5504:216:1,-46,-51,0,0,-0.00943168 -31923,5504:215:2,-45.5,-51,0,0,-0.00928558 -31924,5504:215:1,-45,-51,0,0,-0.0086868 -31925,5504:114:2,-44.5,-51,0,0,-0.00759168 -31926,5504:114:1,-44,-51,0,0,-0.0064335 -31927,5504:113:2,-43.5,-51,0,0,-0.00646795 -31928,5504:113:1,-43,-51,0,0,-0.00713777 -31929,5504:112:2,-42.5,-51,0,0,-0.00726759 -31930,5504:112:1,-42,-51,0,0,-0.00732114 -31931,5504:111:2,-41.5,-51,0,0,-0.00742622 -31932,5504:111:1,-41,-51,0,0,-0.00729999 -31933,5504:110:2,-40.5,-51,0,0,-0.00698535 -31934,5504:110:1,-40,-51,0,0,-0.0067501 -31935,5503:219:2,-39.5,-51,0,0,-0.00668885 -31936,5503:219:1,-39,-51,0,0,-0.00698383 -31937,5503:218:2,-38.5,-51,0,0,-0.0076001 -31938,5503:218:1,-38,-51,0,0,-0.00767492 -31939,5503:217:2,-37.5,-51,0,0,-0.0076018 -31940,5503:217:1,-37,-51,0,0,-0.00722566 -31941,5503:216:2,-36.5,-51,0,0,-0.0069035 -31942,5503:216:1,-36,-51,0,0,-0.00649099 -31943,5503:215:2,-35.5,-51,0,0,-0.00670075 -31944,5503:215:1,-35,-51,0,0,-0.0072016 -31945,5503:114:2,-34.5,-51,0,0,-0.00736693 -31946,5503:114:1,-34,-51,0,0,-0.00727084 -31947,5503:113:2,-33.5,-51,0,0,-0.00725304 -31948,5503:113:1,-33,-51,0,0,-0.00718875 -31949,5503:112:2,-32.5,-51,0,0,-0.00689272 -31950,5503:112:1,-32,-51,0,0,-0.00664581 -31951,5503:111:2,-31.5,-51,0,0,-0.00667547 -31952,5503:111:1,-31,-51,0,0,-0.00665764 -31953,5503:110:2,-30.5,-51,0,0,-0.00646221 -31954,5503:110:1,-30,-51,0,0,-0.00640067 -31955,5502:219:2,-29.5,-51,0,0,-0.00651558 -31956,5502:219:1,-29,-51,0,0,-0.00651558 -31957,5502:218:2,-28.5,-51,0,0,-0.00622663 -31958,5502:218:1,-28,-51,0,0,-0.00598773 -31959,5502:217:2,-27.5,-51,0,0,-0.00598509 -31960,5502:217:1,-27,-51,0,0,-0.00594399 -31961,5502:216:2,-26.5,-51,0,0,-0.00599041 -31962,5502:216:1,-26,-51,0,0,-0.0059519 -31963,5502:215:2,-25.5,-51,0,0,-0.00591106 -31964,5502:215:1,-25,-51,0,0,-0.00608568 -31965,5502:114:2,-24.5,-51,0,0,-0.00696517 -31966,5502:114:1,-24,-51,0,0,-0.00797993 -31967,5502:113:2,-23.5,-51,0,0,-0.00840686 -31968,5502:113:1,-23,-51,0,0,-0.00830263 -31969,5502:112:2,-22.5,-51,0,0,-0.00820154 -31970,5502:112:1,-22,-51,0,0,-0.00813784 -31971,5502:111:2,-21.5,-51,0,0,-0.00797993 -31972,5502:111:1,-21,-51,0,0,-0.00748593 -31973,5502:110:2,-20.5,-51,0,0,-0.00675914 -31974,5502:110:1,-20,-51,0,0,-0.00672764 -31975,5501:219:2,-19.5,-51,0,0,-0.00689581 -31976,5501:219:1,-19,-51,0,0,-0.00692655 -31977,5501:218:2,-18.5,-51,0,0,-0.00689581 -31978,5501:218:1,-18,-51,0,0,-0.00684535 -31979,5501:217:2,-17.5,-51,0,0,-0.0066933 -31980,5501:217:1,-17,-51,0,0,-0.00643494 -31981,5501:216:2,-16.5,-51,0,0,-0.00623635 -31982,5501:216:1,-16,-51,0,0,-0.00610466 -31983,5501:215:2,-15.5,-51,0,0,-0.00605734 -31984,5501:215:1,-15,-51,0,0,-0.00608027 -31985,5501:114:2,-14.5,-51,0,0,-0.00610192 -31986,5501:114:1,-14,-51,0,0,-0.00612777 -31987,5501:113:2,-13.5,-51,0,0,-0.0062405 -31988,5501:113:1,-13,-51,0,0,-0.00631024 -31989,5501:112:2,-12.5,-51,0,0,-0.00639073 -31990,5501:112:1,-12,-51,0,0,-0.00643494 -31991,5501:111:2,-11.5,-51,0,0,-0.00642923 -31992,5501:111:1,-11,-51,0,0,-0.00635812 -31993,5501:110:2,-10.5,-51,0,0,-0.0062377 -31994,5501:110:1,-10,-51,0,0,-0.00612777 -31995,5500:219:2,-9.5,-51,0,0,-0.00615919 -31996,5500:219:1,-9,-51,0,0,-0.00623081 -31997,5500:218:2,-8.5,-51,0,0,-0.00628085 -31998,5500:218:1,-8,-51,0,0,-0.00631448 -31999,5500:217:2,-7.5,-51,0,0,-0.00626413 -32000,5500:217:1,-7,-51,0,0,-0.00628784 -32001,5500:216:2,-6.5,-51,0,0,-0.00632992 -32002,5500:216:1,-6,-51,0,0,-0.0059176 -32003,5500:215:2,-5.5,-51,0,0,-0.0058159 -32004,5500:215:1,-5,-51,0,0,-0.00582885 -32005,5500:114:2,-4.5,-51,0,0,-0.00566288 -32006,5500:114:1,-4,-51,0,0,-0.00557177 -32007,5500:113:2,-3.5,-51,0,0,-0.00555201 -32008,5500:113:1,-3,-51,0,0,-0.00554708 -32009,5500:112:2,-2.5,-51,0,0,-0.00553968 -32010,5500:112:1,-2,-51,0,0,-0.00553476 -32011,5500:111:2,-1.5,-51,0,0,-0.00550165 -32012,5500:111:1,-1,-51,0,0,-0.00548459 -32013,5500:110:2,-0.5,-51,0,0,-0.00546148 -32014,3500:110:2,0,-51,0,0,-0.00544451 -32015,3500:110:2,0.5,-51,0,0,-0.0054385 -32016,3500:111:1,1,-51,0,0,-0.00543245 -32017,3500:111:2,1.5,-51,0,0,-0.00543606 -32018,3500:112:1,2,-51,0,0,-0.00544816 -32019,3500:112:2,2.5,-51,0,0,-0.0055139 -32020,3500:113:1,3,-51,0,0,-0.00555694 -32021,3500:113:2,3.5,-51,0,0,-0.00557426 -32022,3500:114:1,4,-51,0,0,-0.00557302 -32023,3500:114:2,4.5,-51,0,0,-0.00556558 -32024,3500:215:1,5,-51,0,0,-0.00555077 -32025,3500:215:2,5.5,-51,0,0,-0.00553108 -32026,3500:216:1,6,-51,0,0,-0.00550165 -32027,3500:216:2,6.5,-51,0,0,-0.00547241 -32028,3500:217:1,7,-51,0,0,-0.00545541 -32029,3500:217:2,7.5,-51,0,0,-0.00545423 -32030,3500:218:1,8,-51,0,0,-0.0054627 -32031,3500:218:2,8.5,-51,0,0,-0.00547605 -32032,3500:219:1,9,-51,0,0,-0.00547605 -32033,3500:219:2,9.5,-51,0,0,-0.00545057 -32034,3501:110:1,10,-51,0,0,-0.00543606 -32035,3501:110:2,10.5,-51,0,0,-0.00543002 -32036,3501:111:1,11,-51,0,0,-0.00542763 -32037,3501:111:2,11.5,-51,0,0,-0.00543002 -32038,3501:112:1,12,-51,0,0,-0.00543124 -32039,3501:112:2,12.5,-51,0,0,-0.00543485 -32040,3501:113:1,13,-51,0,0,-0.00543728 -32041,3501:113:2,13.5,-51,0,0,-0.00544089 -32042,3501:114:1,14,-51,0,0,-0.00544451 -32043,3501:114:2,14.5,-51,0,0,-0.00544333 -32044,3501:215:1,15,-51,0,0,-0.00543968 -32045,3501:215:2,15.5,-51,0,0,-0.0054385 -32046,3501:216:1,16,-51,0,0,-0.0054385 -32047,3501:216:2,16.5,-51,0,0,-0.0054385 -32048,3501:217:1,17,-51,0,0,-0.00543485 -32049,3501:217:2,17.5,-51,0,0,-0.00543363 -32050,3501:218:1,18,-51,0,0,-0.00543245 -32051,3501:218:2,18.5,-51,0,0,-0.00543245 -32052,3501:219:1,19,-51,0,0,-0.00543124 -32053,3501:219:2,19.5,-51,0,0,-0.00543002 -32054,3502:110:1,20,-51,0,0,-0.00542642 -32055,3502:110:2,20.5,-51,0,0,-0.00544816 -32056,3502:111:1,21,-51,0,0,-0.00545907 -32057,3502:111:2,21.5,-51,0,0,-0.00545663 -32058,3502:112:1,22,-51,0,0,-0.00544935 -32059,3502:112:2,22.5,-51,0,0,-0.00544816 -32060,3502:113:1,23,-51,0,0,-0.00543485 -32061,3502:113:2,23.5,-51,0,0,-0.00543363 -32062,3502:114:1,24,-51,0,0,-0.00543728 -32063,3502:114:2,24.5,-51,0,0,-0.00545423 -32064,3502:215:1,25,-51,0,0,-0.00545663 -32065,3502:215:2,25.5,-51,0,0,-0.00547486 -32066,3502:216:1,26,-51,0,0,-0.00547972 -32067,3502:216:2,26.5,-51,0,0,-0.00549923 -32068,3502:217:1,27,-51,0,0,-0.00548459 -32069,3502:217:2,27.5,-51,0,0,-0.00547119 -32070,3502:218:1,28,-51,0,0,-0.00545057 -32071,3502:218:2,28.5,-51,0,0,-0.00547486 -32072,3502:219:1,29,-51,0,0,-0.00546511 -32073,3502:219:2,29.5,-51,0,0,-0.00546392 -32074,3503:110:1,30,-51,0,0,-0.00546755 -32075,3503:110:2,30.5,-51,0,0,-0.00548824 -32076,3503:111:1,31,-51,0,0,-0.00550165 -32077,3503:111:2,31.5,-51,0,0,-0.00549434 -32078,3503:112:1,32,-51,0,0,-0.00547241 -32079,3503:112:2,32.5,-51,0,0,-0.00547486 -32080,3503:113:1,33,-51,0,0,-0.00549677 -32081,3503:113:2,33.5,-51,0,0,-0.00557672 -32082,3503:114:1,34,-51,0,0,-0.00569445 -32083,3503:114:2,34.5,-51,0,0,-0.00583665 -32084,3503:215:1,35,-51,0,0,-0.00603585 -32085,3503:215:2,35.5,-51,0,0,-0.00607083 -32086,3503:216:1,36,-51,0,0,-0.0058835 -32087,3503:216:2,36.5,-51,0,0,-0.00577985 -32088,3503:217:1,37,-51,0,0,-0.00559536 -32089,3503:217:2,37.5,-51,0,0,-0.00569318 -32090,3503:218:1,38,-51,0,0,-0.00593738 -32091,3503:218:2,38.5,-51,0,0,-0.00589793 -32092,3503:219:1,39,-51,0,0,-0.00576188 -32093,3503:219:2,39.5,-51,0,0,-0.00575294 -32094,3504:110:1,40,-51,0,0,-0.00584572 -32095,3504:110:2,40.5,-51,0,0,-0.00592419 -32096,3504:111:1,41,-51,0,0,-0.00596252 -32097,3504:111:2,41.5,-51,0,0,-0.00597844 -32098,3504:112:1,42,-51,0,0,-0.0059944 -32099,3504:112:2,42.5,-51,0,0,-0.00599838 -32100,3504:113:1,43,-51,0,0,-0.0059944 -32101,3504:113:2,43.5,-51,0,0,-0.00597442 -32102,3504:114:1,44,-51,0,0,-0.00592157 -32103,3504:114:2,44.5,-51,0,0,-0.00585222 -32104,3504:215:1,45,-51,0,0,-0.00580302 -32105,3504:215:2,45.5,-51,0,0,-0.00580948 -32106,3504:216:1,46,-51,0,0,-0.00584053 -32107,3504:216:2,46.5,-51,0,0,-0.00587306 -32108,3504:217:1,47,-51,0,0,-0.00595323 -32109,3504:217:2,47.5,-51,0,0,-0.00595589 -32110,3504:218:1,48,-51,0,0,-0.00589529 -32111,3504:218:2,48.5,-51,0,0,-0.00583403 -32112,3504:219:1,49,-51,0,0,-0.00574144 -32113,3504:219:2,49.5,-51,0,0,-0.00569824 -32114,3505:110:1,50,-51,0,0,-0.00574144 -32115,3505:110:2,50.5,-51,0,0,-0.00561029 -32116,3505:111:1,51,-51,0,0,-0.00560781 -32117,3505:111:2,51.5,-51,0,0,-0.00572232 -32118,3505:112:1,52,-51,0,0,-0.00584572 -32119,3505:112:2,52.5,-51,0,0,-0.00600107 -32120,3505:113:1,53,-51,0,0,-0.00617153 -32121,3505:113:2,53.5,-51,0,0,-0.00577855 -32122,3505:114:1,54,-51,0,0,-0.0056028 -32123,3505:114:2,54.5,-51,0,0,-0.00567803 -32124,3505:215:1,55,-51,0,0,-0.00589661 -32125,3505:215:2,55.5,-51,0,0,-0.00586005 -32126,3505:216:1,56,-51,0,0,-0.00567675 -32127,3505:216:2,56.5,-51,0,0,-0.0056128 -32128,3505:217:1,57,-51,0,0,-0.00557302 -32129,3505:217:2,57.5,-51,0,0,-0.00565409 -32130,3505:218:1,58,-51,0,0,-0.00595323 -32131,3505:218:2,58.5,-51,0,0,-0.00634682 -32132,3505:219:1,59,-51,0,0,-0.00719358 -32133,3505:219:2,59.5,-51,0,0,-0.0066903 -32134,3506:110:1,60,-51,0,0,-0.00614821 -32135,3506:110:2,60.5,-51,0,0,-0.00620865 -32136,3506:111:1,61,-51,0,0,-0.00697606 -32137,3506:111:2,61.5,-51,0,0,-0.0071808 -32138,3506:112:1,62,-51,0,0,-0.00686825 -32139,3506:112:2,62.5,-51,0,0,-0.00630463 -32140,3506:113:1,63,-51,0,0,-0.00601574 -32141,3506:113:2,63.5,-51,0,0,-0.00610329 -32142,3506:114:1,64,-51,0,0,-0.00668885 -32143,3506:114:2,64.5,-51,0,0,-0.00754116 -32144,3506:215:1,65,-51,0,0,-0.0077903 -32145,3506:215:2,65.5,-51,0,0,-0.00790914 -32146,3506:216:1,66,-51,0,0,-0.00790737 -32147,3506:216:2,66.5,-51,0,0,-0.00772809 -32148,3506:217:1,67,-51,0,0,-0.00745599 -32149,3506:217:2,67.5,-51,0,0,-0.00738497 -32150,3506:218:1,68,-51,0,0,-0.00771948 -32151,3506:218:2,68.5,-51,0,0,-0.00793914 -32152,3506:219:1,69,-51,0,0,-0.00793558 -32153,3506:219:2,69.5,-51,0,0,-0.00791092 -32154,3507:110:1,70,-51,0,0,-0.00802802 -32155,3507:110:2,70.5,-51,0,0,-0.00826024 -32156,3507:111:1,71,-51,0,0,-0.00844255 -32157,3507:111:2,71.5,-51,0,0,-0.00764084 -32158,3507:112:1,72,-51,0,0,-0.00693582 -32159,3507:112:2,72.5,-51,0,0,-0.00672463 -32160,3507:113:2,73.5,-51,0,0,-0.00649963 -32161,3507:114:1,74,-51,0,0,-0.00637228 -32162,3507:114:2,74.5,-51,0,0,-0.00630185 -32163,3507:215:1,75,-51,0,0,-0.0062516 -32164,3507:215:2,75.5,-51,0,0,-0.0062197 -32165,3507:216:1,76,-51,0,0,-0.00617153 -32166,3507:216:2,76.5,-51,0,0,-0.00617836 -32167,3507:217:1,77,-51,0,0,-0.0062405 -32168,3507:217:2,77.5,-51,0,0,-0.00624745 -32169,3507:218:1,78,-51,0,0,-0.00621835 -32170,3507:218:2,78.5,-51,0,0,-0.00608432 -32171,3507:219:1,79,-51,0,0,-0.00590317 -32172,3507:219:2,79.5,-51,0,0,-0.00585353 -32173,3508:110:1,80,-51,0,0,-0.00582628 -32174,3508:110:2,80.5,-51,0,0,-0.00581981 -32175,3508:111:1,81,-51,0,0,-0.00582368 -32176,3508:111:2,81.5,-51,0,0,-0.0058496 -32177,3508:112:1,82,-51,0,0,-0.00586263 -32178,3508:112:2,82.5,-51,0,0,-0.00585611 -32179,3508:113:1,83,-51,0,0,-0.00585222 -32180,3508:113:2,83.5,-51,0,0,-0.00586526 -32181,3508:114:1,84,-51,0,0,-0.00587828 -32182,3508:114:2,84.5,-51,0,0,-0.00584572 -32183,3508:215:1,85,-51,0,0,-0.00578757 -32184,3508:215:2,85.5,-51,0,0,-0.00577726 -32185,3508:216:1,86,-51,0,0,-0.00597179 -32186,3508:216:2,86.5,-51,0,0,-0.00663697 -32187,3508:217:1,87,-51,0,0,-0.00796746 -32188,3508:217:2,87.5,-51,0,0,-0.00931463 -32189,3508:218:1,88,-51,0,0,-0.00991495 -32190,3508:218:2,88.5,-51,0,0,-0.00878221 -32191,3508:219:1,89,-51,0,0,-0.00863661 -32192,3508:219:2,89.5,-51,0,0,-0.00830822 -32193,3509:110:1,90,-51,0,0,-0.00817054 -32194,3509:110:2,90.5,-51,0,0,-0.00828419 -32195,3509:111:1,91,-51,0,0,-0.00836018 -32196,3509:111:2,91.5,-51,0,0,-0.00847649 -32197,3509:112:1,92,-51,0,0,-0.00858864 -32198,3509:112:2,92.5,-51,0,0,-0.00872173 -32199,3509:113:1,93,-51,0,0,-0.00861163 -32200,3509:113:2,93.5,-51,0,0,-0.00841064 -32201,3509:114:1,94,-51,0,0,-0.00843503 -32202,3509:114:2,94.5,-51,0,0,-0.00848404 -32203,3509:215:1,95,-51,0,0,-0.00833974 -32204,3509:215:2,95.5,-51,0,0,-0.00808365 -32205,3509:216:1,96,-51,0,0,-0.00791619 -32206,3509:216:2,96.5,-51,0,0,-0.00784949 -32207,3509:217:1,97,-51,0,0,-0.00784773 -32208,3509:217:2,97.5,-51,0,0,-0.00791264 -32209,3509:218:1,98,-51,0,0,-0.00799236 -32210,3509:218:2,98.5,-51,0,0,-0.00810709 -32211,3509:219:1,99,-51,0,0,-0.0082971 -32212,3509:219:2,99.5,-51,0,0,-0.00862511 -32213,3510:110:1,100,-51,0,0,-0.00882341 -32214,3510:110:2,100.5,-51,0,0,-0.00878609 -32215,3510:111:1,101,-51,0,0,-0.00876461 -32216,3510:111:2,101.5,-51,0,0,-0.00876461 -32217,3510:112:1,102,-51,0,0,-0.00871005 -32218,3510:112:2,102.5,-51,0,0,-0.00876657 -32219,3510:113:1,103,-51,0,0,-0.00950133 -32220,3510:113:2,103.5,-51,0,0,-0.00996151 -32221,3510:114:1,104,-51,0,0,-0.00993928 -32222,3510:114:2,104.5,-51,0,0,-0.0097678 -32223,3510:215:1,105,-51,0,0,-0.009694 -32224,3510:215:2,105.5,-51,0,0,-0.00966165 -32225,3510:216:1,106,-51,0,0,-0.00956297 -32226,3510:216:2,106.5,-51,0,0,-0.00935834 -32227,3510:217:1,107,-51,0,0,-0.00904044 -32228,3510:217:2,107.5,-51,0,0,-0.00865013 -32229,3510:218:1,108,-51,0,0,-0.00850865 -32230,3510:218:2,108.5,-51,0,0,-0.00898818 -32231,3510:219:1,109,-51,0,0,-0.00963577 -32232,3510:219:2,109.5,-51,0,0,-0.00996151 -32233,3511:110:1,110,-51,0,0,-0.0100935 -32234,3511:110:2,110.5,-51,0,0,-0.0101704 -32235,3511:111:1,111,-51,0,0,-0.0100486 -32236,3511:111:2,111.5,-51,0,0,-0.00972652 -32237,3511:112:1,112,-51,0,0,-0.00941276 -32238,3511:112:2,112.5,-51,0,0,-0.00965514 -32239,3511:113:1,113,-51,0,0,-0.0111505 -32240,3511:113:2,113.5,-51,0,0,-0.011929 -32241,3511:114:1,114,-51,0,0,-0.011897 -32242,3511:114:2,114.5,-51,0,0,-0.0115821 -32243,3511:215:1,115,-51,0,0,-0.0102433 -32244,3511:215:2,115.5,-51,0,0,-0.00992596 -32245,3511:216:1,116,-51,0,0,-0.0101999 -32246,3511:216:2,116.5,-51,0,0,-0.0105355 -32247,3511:217:1,117,-51,0,0,-0.0104605 -32248,3511:217:2,117.5,-51,0,0,-0.0103953 -32249,3511:218:1,118,-51,0,0,-0.0105473 -32250,3511:218:2,118.5,-51,0,0,-0.010812 -32251,3511:219:1,119,-51,0,0,-0.0110167 -32252,3511:219:2,119.5,-51,0,0,-0.0110389 -32253,3512:110:1,120,-51,0,0,-0.0110463 -32254,3512:110:2,120.5,-51,0,0,-0.0114355 -32255,3512:111:1,121,-51,0,0,-0.01141 -32256,3512:111:2,121.5,-51,0,0,-0.0113186 -32257,3512:112:1,122,-51,0,0,-0.011377 -32258,3512:112:2,122.5,-51,0,0,-0.0115022 -32259,3512:113:1,123,-51,0,0,-0.0115977 -32260,3512:113:2,123.5,-51,0,0,-0.0116731 -32261,3512:114:1,124,-51,0,0,-0.0116262 -32262,3512:114:2,124.5,-51,0,0,-0.0115951 -32263,3512:215:1,125,-51,0,0,-0.0115718 -32264,3512:215:2,125.5,-51,0,0,-0.0115641 -32265,3512:216:1,126,-51,0,0,-0.0116445 -32266,3512:216:2,126.5,-51,0,0,-0.0118123 -32267,3512:217:1,127,-51,0,0,-0.0120712 -32268,3512:217:2,127.5,-51,0,0,-0.0123111 -32269,3512:218:1,128,-51,0,0,-0.0124023 -32270,3512:218:2,128.5,-51,0,0,-0.0123719 -32271,3512:219:1,129,-51,0,0,-0.0127028 -32272,3512:219:2,129.5,-51,0,0,-0.0128976 -32273,3513:110:1,130,-51,0,0,-0.0129961 -32274,3513:110:2,130.5,-51,0,0,-0.0130252 -32275,3513:111:1,131,-51,0,0,-0.0130456 -32276,3513:111:2,131.5,-51,0,0,-0.0130837 -32277,3513:112:1,132,-51,0,0,-0.0131306 -32278,3513:112:2,132.5,-51,0,0,-0.0131541 -32279,3513:113:1,133,-51,0,0,-0.0130544 -32280,3513:113:2,133.5,-51,0,0,-0.0126744 -32281,3513:114:1,134,-51,0,0,-0.0121199 -32282,3513:114:2,134.5,-51,0,0,-0.0117228 -32283,3513:215:1,135,-51,0,0,-0.0115589 -32284,3513:215:2,135.5,-51,0,0,-0.0116574 -32285,3513:216:1,136,-51,0,0,-0.0119157 -32286,3513:216:2,136.5,-51,0,0,-0.0119557 -32287,3513:217:1,137,-51,0,0,-0.0118678 -32288,3513:217:2,137.5,-51,0,0,-0.0117727 -32289,3513:218:1,138,-51,0,0,-0.0116653 -32290,3513:218:2,138.5,-51,0,0,-0.0116549 -32291,3513:219:1,139,-51,0,0,-0.0116862 -32292,3513:219:2,139.5,-51,0,0,-0.0116081 -32293,3514:110:1,140,-51,0,0,-0.0114688 -32294,3514:110:2,140.5,-51,0,0,-0.0114816 -32295,3514:111:1,141,-51,0,0,-0.0116029 -32296,3514:111:2,141.5,-51,0,0,-0.0117018 -32297,3514:112:1,142,-51,0,0,-0.0118731 -32298,3514:112:2,142.5,-51,0,0,-0.0121443 -32299,3514:113:1,143,-51,0,0,-0.0123414 -32300,3514:113:2,143.5,-51,0,0,-0.0123746 -32301,3514:114:1,144,-51,0,0,-0.0122644 -32302,3514:114:2,144.5,-51,0,0,-0.0121307 -32303,3514:215:1,145,-51,0,0,-0.0120551 -32304,3514:215:2,145.5,-51,0,0,-0.0120012 -32305,3514:216:1,146,-51,0,0,-0.011844 -32306,3514:216:2,146.5,-51,0,0,-0.0116055 -32307,3514:217:1,147,-51,0,0,-0.0112984 -32308,3514:217:2,147.5,-51,0,0,-0.0108871 -32309,3514:218:1,148,-51,0,0,-0.0105803 -32310,3514:218:2,148.5,-51,0,0,-0.0102502 -32311,3514:219:1,149,-51,0,0,-0.00971779 -32312,3514:219:2,149.5,-51,0,0,-0.00852383 -32313,3515:110:1,150,-51,0,0,-0.00757983 -32314,3515:110:2,150.5,-51,0,0,-0.00842185 -32315,3515:111:1,151,-51,0,0,-0.00830822 -32316,3515:111:2,151.5,-51,0,0,-0.00825103 -32317,3515:112:1,152,-51,0,0,-0.00844065 -32318,3515:112:2,152.5,-51,0,0,-0.00865202 -32319,3515:113:1,153,-51,0,0,-0.00901826 -32320,3515:113:2,153.5,-51,0,0,-0.00926487 -32321,3515:114:1,154,-51,0,0,-0.0094527 -32322,3515:114:2,154.5,-51,0,0,-0.0100374 -32323,3515:215:1,155,-51,0,0,-0.0105567 -32324,3515:215:2,155.5,-51,0,0,-0.0110611 -32325,3515:216:1,156,-51,0,0,-0.0110339 -32326,3515:216:2,156.5,-51,0,0,-0.0107542 -32327,3515:217:1,157,-51,0,0,-0.010735 -32328,3515:217:2,157.5,-51,0,0,-0.010841 -32329,3515:218:1,158,-51,0,0,-0.0107302 -32330,3515:218:2,158.5,-51,0,0,-0.0105756 -32331,3515:219:1,159,-51,0,0,-0.0110094 -32332,3515:219:2,159.5,-51,0,0,-0.0120928 -32333,3516:110:1,160,-51,0,0,-0.0131188 -32334,3516:110:2,160.5,-51,0,0,-0.0135517 -32335,3516:111:1,161,-51,0,0,-0.0141346 -32336,3516:111:2,161.5,-51,0,0,-0.0166871 -32337,3516:112:1,162,-51,0,0,-0.0197672 -32338,3516:112:2,162.5,-51,0,0,-0.0213375 -32339,3516:113:1,163,-51,0,0,-0.0206183 -32340,3516:113:2,163.5,-51,0,0,-0.0211745 -32341,3516:114:1,164,-51,0,0,-0.0214291 -32342,3516:114:2,164.5,-51,0,0,-0.0211506 -32343,3516:215:1,165,-51,0,0,-0.0200907 -32344,3516:215:2,165.5,-51,0,0,-0.018057 -32345,3516:216:1,166,-51,0,0,-0.0171893 -32346,3516:216:2,166.5,-51,0,0,-0.0186222 -32347,3516:217:1,167,-51,0,0,-0.0209275 -32348,3516:217:2,167.5,-51,0,0,-0.0216235 -32349,3516:218:1,168,-51,0,0,-0.0214631 -32350,3516:218:2,168.5,-51,0,0,-0.0213519 -32351,3516:219:1,169,-51,0,0,-0.0214389 -32352,3516:219:2,169.5,-51,0,0,-0.0214825 -32353,3517:110:1,170,-51,0,0,-0.0209464 -32354,3517:110:2,170.5,-51,0,0,-0.0198521 -32355,3517:111:1,171,-51,0,0,-0.0197051 -32356,3517:111:2,171.5,-51,0,0,-0.0198074 -32357,3517:112:1,172,-51,0,0,-0.0198566 -32358,3517:112:2,172.5,-51,0,0,-0.0198924 -32359,3517:113:1,173,-51,0,0,-0.0199417 -32360,3517:113:2,173.5,-51,0,0,-0.0199372 -32361,3517:114:1,174,-51,0,0,-0.0198521 -32362,3517:114:2,174.5,-51,0,0,-0.0196385 -32363,3517:215:1,175,-51,0,0,-0.0192835 -32364,3517:215:2,175.5,-51,0,0,-0.0189562 -32365,3517:216:1,176,-51,0,0,-0.0186096 -32366,3517:216:2,176.5,-51,0,0,-0.0180406 -32367,3517:217:1,177,-51,0,0,-0.0176951 -32368,3517:217:2,177.5,-51,0,0,-0.017855 -32369,3517:218:1,178,-51,0,0,-0.0180772 -32370,3517:218:2,178.5,-51,0,0,-0.0181588 -32371,3517:219:1,179,-51,0,0,-0.0179799 -32372,3517:219:2,179.5,-51,0,0,-0.0172396 -32373,3518:110:1,180,-51,0,0,-0.0169401 -32374,5518:100:3,-180,-50.5,0,0,-0.0176237 -32375,5517:209:4,-179.5,-50.5,0,0,-0.0174071 -32376,5517:209:3,-179,-50.5,0,0,-0.0172901 -32377,5517:208:4,-178.5,-50.5,0,0,-0.0170854 -32378,5517:208:3,-178,-50.5,0,0,-0.0169707 -32379,5517:207:4,-177.5,-50.5,0,0,-0.0168528 -32380,5517:207:3,-177,-50.5,0,0,-0.0166346 -32381,5517:206:4,-176.5,-50.5,0,0,-0.0164342 -32382,5517:206:3,-176,-50.5,0,0,-0.0163678 -32383,5517:205:4,-175.5,-50.5,0,0,-0.0164083 -32384,5517:205:3,-175,-50.5,0,0,-0.0164526 -32385,5517:104:4,-174.5,-50.5,0,0,-0.0165044 -32386,5517:104:3,-174,-50.5,0,0,-0.0165899 -32387,5517:103:4,-173.5,-50.5,0,0,-0.0166721 -32388,5517:103:3,-173,-50.5,0,0,-0.0166721 -32389,5517:102:4,-172.5,-50.5,0,0,-0.0165044 -32390,5517:102:3,-172,-50.5,0,0,-0.0162069 -32391,5517:101:4,-171.5,-50.5,0,0,-0.0159865 -32392,5517:101:3,-171,-50.5,0,0,-0.0160548 -32393,5517:100:4,-170.5,-50.5,0,0,-0.0163678 -32394,5517:100:3,-170,-50.5,0,0,-0.0166533 -32395,5516:209:4,-169.5,-50.5,0,0,-0.0166609 -32396,5516:209:3,-169,-50.5,0,0,-0.0163532 -32397,5516:208:4,-168.5,-50.5,0,0,-0.0158792 -32398,5516:208:3,-168,-50.5,0,0,-0.0155095 -32399,5516:207:4,-167.5,-50.5,0,0,-0.0154434 -32400,5516:207:3,-167,-50.5,0,0,-0.0156458 -32401,5516:206:4,-166.5,-50.5,0,0,-0.0160945 -32402,5516:206:3,-166,-50.5,0,0,-0.0162288 -32403,5516:205:4,-165.5,-50.5,0,0,-0.0161924 -32404,5516:205:3,-165,-50.5,0,0,-0.0161162 -32405,5516:104:4,-164.5,-50.5,0,0,-0.0161054 -32406,5516:104:3,-164,-50.5,0,0,-0.0161234 -32407,5516:103:4,-163.5,-50.5,0,0,-0.0161452 -32408,5516:103:3,-163,-50.5,0,0,-0.016196 -32409,5516:102:4,-162.5,-50.5,0,0,-0.0161778 -32410,5516:102:3,-162,-50.5,0,0,-0.0159865 -32411,5516:101:4,-161.5,-50.5,0,0,-0.0156352 -32412,5516:101:3,-161,-50.5,0,0,-0.0151892 -32413,5516:100:4,-160.5,-50.5,0,0,-0.0147363 -32414,5516:100:3,-160,-50.5,0,0,-0.0142906 -32415,5515:209:4,-159.5,-50.5,0,0,-0.0138803 -32416,5515:209:3,-159,-50.5,0,0,-0.0137012 -32417,5515:208:4,-158.5,-50.5,0,0,-0.0139459 -32418,5515:208:3,-158,-50.5,0,0,-0.0147594 -32419,5515:207:4,-157.5,-50.5,0,0,-0.0159578 -32420,5515:207:3,-157,-50.5,0,0,-0.0167509 -32421,5515:206:4,-156.5,-50.5,0,0,-0.0165787 -32422,5515:206:3,-156,-50.5,0,0,-0.0157161 -32423,5515:205:4,-155.5,-50.5,0,0,-0.0152541 -32424,5515:205:3,-155,-50.5,0,0,-0.0146605 -32425,5515:104:4,-154.5,-50.5,0,0,-0.0141156 -32426,5515:104:3,-154,-50.5,0,0,-0.0138835 -32427,5515:103:4,-153.5,-50.5,0,0,-0.0124914 -32428,5515:103:3,-153,-50.5,0,0,-0.009694 -32429,5515:102:4,-152.5,-50.5,0,0,-0.00875287 -32430,5515:102:3,-152,-50.5,0,0,-0.00868485 -32431,5515:101:4,-151.5,-50.5,0,0,-0.00865973 -32432,5515:101:3,-151,-50.5,0,0,-0.00903036 -32433,5515:100:4,-150.5,-50.5,0,0,-0.00987742 -32434,5515:100:3,-150,-50.5,0,0,-0.010604 -32435,5514:209:4,-149.5,-50.5,0,0,-0.01063 -32436,5514:209:3,-149,-50.5,0,0,-0.0102914 -32437,5514:208:4,-148.5,-50.5,0,0,-0.0099105 -32438,5514:208:3,-148,-50.5,0,0,-0.00977432 -32439,5514:207:4,-147.5,-50.5,0,0,-0.0117359 -32440,5514:207:3,-147,-50.5,0,0,-0.0131777 -32441,5514:206:4,-146.5,-50.5,0,0,-0.0137936 -32442,5514:206:3,-146,-50.5,0,0,-0.0156844 -32443,5514:205:4,-145.5,-50.5,0,0,-0.0173056 -32444,5514:205:3,-145,-50.5,0,0,-0.0176039 -32445,5514:104:4,-144.5,-50.5,0,0,-0.0178832 -32446,5514:104:3,-144,-50.5,0,0,-0.0184097 -32447,5514:103:4,-143.5,-50.5,0,0,-0.0172863 -32448,5514:103:3,-143,-50.5,0,0,-0.0166272 -32449,5514:102:4,-142.5,-50.5,0,0,-0.0164083 -32450,5514:102:3,-142,-50.5,0,0,-0.0171238 -32451,5514:101:4,-141.5,-50.5,0,0,-0.0181425 -32452,5514:101:3,-141,-50.5,0,0,-0.0208192 -32453,5514:100:4,-140.5,-50.5,0,0,-0.0250807 -32454,5514:100:3,-140,-50.5,0,0,-0.0263986 -32455,5513:209:4,-139.5,-50.5,0,0,-0.0236688 -32456,5513:209:3,-139,-50.5,0,0,-0.0206928 -32457,5513:208:4,-138.5,-50.5,0,0,-0.0200319 -32458,5513:208:3,-138,-50.5,0,0,-0.01959 -32459,5513:207:4,-137.5,-50.5,0,0,-0.0192705 -32460,5513:207:3,-137,-50.5,0,0,-0.0206649 -32461,5513:206:4,-136.5,-50.5,0,0,-0.0210031 -32462,5513:206:3,-136,-50.5,0,0,-0.0222524 -32463,5513:205:4,-135.5,-50.5,0,0,-0.0220077 -32464,5513:205:3,-135,-50.5,0,0,-0.0213519 -32465,5513:104:4,-134.5,-50.5,0,0,-0.0207722 -32466,5513:104:3,-134,-50.5,0,0,-0.0205024 -32467,5513:103:4,-133.5,-50.5,0,0,-0.0201042 -32468,5513:103:3,-133,-50.5,0,0,-0.0192791 -32469,5513:102:4,-132.5,-50.5,0,0,-0.018418 -32470,5513:102:3,-132,-50.5,0,0,-0.0176396 -32471,5513:101:4,-131.5,-50.5,0,0,-0.0170969 -32472,5513:101:3,-131,-50.5,0,0,-0.0180691 -32473,5513:100:4,-130.5,-50.5,0,0,-0.0232025 -32474,5513:100:3,-130,-50.5,0,0,-0.0242817 -32475,5512:209:4,-129.5,-50.5,0,0,-0.024558 -32476,5512:209:3,-129,-50.5,0,0,-0.0258127 -32477,5512:208:4,-128.5,-50.5,0,0,-0.0271888 -32478,5512:208:3,-128,-50.5,0,0,-0.0281883 -32479,5512:207:4,-127.5,-50.5,0,0,-0.0278637 -32480,5512:207:3,-127,-50.5,0,0,-0.0260892 -32481,5512:206:4,-126.5,-50.5,0,0,-0.0240793 -32482,5512:206:3,-126,-50.5,0,0,-0.0230666 -32483,5512:205:4,-125.5,-50.5,0,0,-0.0221373 -32484,5512:205:3,-125,-50.5,0,0,-0.0211649 -32485,5512:104:4,-124.5,-50.5,0,0,-0.0194361 -32486,5512:104:3,-124,-50.5,0,0,-0.0186641 -32487,5512:103:4,-123.5,-50.5,0,0,-0.0190977 -32488,5512:103:3,-123,-50.5,0,0,-0.0197139 -32489,5512:102:4,-122.5,-50.5,0,0,-0.0187905 -32490,5512:102:3,-122,-50.5,0,0,-0.0179113 -32491,5512:101:4,-121.5,-50.5,0,0,-0.0176753 -32492,5512:101:3,-121,-50.5,0,0,-0.0179032 -32493,5512:100:4,-120.5,-50.5,0,0,-0.0182325 -32494,5512:100:3,-120,-50.5,0,0,-0.0188117 -32495,5511:209:4,-119.5,-50.5,0,0,-0.0199913 -32496,5511:209:3,-119,-50.5,0,0,-0.0214631 -32497,5511:208:4,-118.5,-50.5,0,0,-0.0224039 -32498,5511:208:3,-118,-50.5,0,0,-0.0234875 -32499,5511:207:4,-117.5,-50.5,0,0,-0.0245357 -32500,5511:207:3,-117,-50.5,0,0,-0.0246416 -32501,5511:206:4,-116.5,-50.5,0,0,-0.0243201 -32502,5511:206:3,-116,-50.5,0,0,-0.0243477 -32503,5511:205:4,-115.5,-50.5,0,0,-0.0243477 -32504,5511:205:3,-115,-50.5,0,0,-0.0240683 -32505,5511:104:4,-114.5,-50.5,0,0,-0.0228279 -32506,5511:104:3,-114,-50.5,0,0,-0.0206322 -32507,5511:103:4,-113.5,-50.5,0,0,-0.0199328 -32508,5511:103:3,-113,-50.5,0,0,-0.0193836 -32509,5511:102:4,-112.5,-50.5,0,0,-0.0188669 -32510,5511:102:3,-112,-50.5,0,0,-0.0185552 -32511,5511:101:4,-111.5,-50.5,0,0,-0.0186768 -32512,5511:101:3,-111,-50.5,0,0,-0.0194012 -32513,5511:100:4,-110.5,-50.5,0,0,-0.0197094 -32514,5511:100:3,-110,-50.5,0,0,-0.0197717 -32515,5510:209:4,-109.5,-50.5,0,0,-0.0197006 -32516,5510:209:3,-109,-50.5,0,0,-0.0194799 -32517,5510:208:4,-108.5,-50.5,0,0,-0.0191278 -32518,5510:208:3,-108,-50.5,0,0,-0.0187273 -32519,5510:207:4,-107.5,-50.5,0,0,-0.0184429 -32520,5510:207:3,-107,-50.5,0,0,-0.018356 -32521,5510:206:4,-106.5,-50.5,0,0,-0.0185552 -32522,5510:206:3,-106,-50.5,0,0,-0.0195987 -32523,5510:205:4,-105.5,-50.5,0,0,-0.0210981 -32524,5510:205:3,-105,-50.5,0,0,-0.0216235 -32525,5510:104:4,-104.5,-50.5,0,0,-0.0223079 -32526,5510:104:3,-104,-50.5,0,0,-0.0231083 -32527,5510:103:4,-103.5,-50.5,0,0,-0.0234875 -32528,5510:103:3,-103,-50.5,0,0,-0.0224747 -32529,5510:102:4,-102.5,-50.5,0,0,-0.0217116 -32530,5510:102:3,-102,-50.5,0,0,-0.0218 -32531,5510:101:4,-101.5,-50.5,0,0,-0.0217901 -32532,5510:101:3,-101,-50.5,0,0,-0.0218838 -32533,5510:100:4,-100.5,-50.5,0,0,-0.0219728 -32534,5510:100:3,-100,-50.5,0,0,-0.0216137 -32535,5509:209:4,-99.5,-50.5,0,0,-0.02116 -32536,5509:209:3,-99,-50.5,0,0,-0.0210173 -32537,5509:208:4,-98.5,-50.5,0,0,-0.0209936 -32538,5509:208:3,-98,-50.5,0,0,-0.020852 -32539,5509:207:4,-97.5,-50.5,0,0,-0.0201359 -32540,5509:207:3,-97,-50.5,0,0,-0.0189137 -32541,5509:206:4,-96.5,-50.5,0,0,-0.0179234 -32542,5509:206:3,-96,-50.5,0,0,-0.0179113 -32543,5509:205:4,-95.5,-50.5,0,0,-0.0191622 -32544,5509:205:3,-95,-50.5,0,0,-0.0202406 -32545,5509:104:4,-94.5,-50.5,0,0,-0.0210221 -32546,5509:104:3,-94,-50.5,0,0,-0.0208992 -32547,5509:103:4,-93.5,-50.5,0,0,-0.0206835 -32548,5509:103:3,-93,-50.5,0,0,-0.0211506 -32549,5509:102:4,-92.5,-50.5,0,0,-0.021434 -32550,5509:102:3,-92,-50.5,0,0,-0.0217361 -32551,5509:101:4,-91.5,-50.5,0,0,-0.0221373 -32552,5509:101:3,-91,-50.5,0,0,-0.0221672 -32553,5509:100:4,-90.5,-50.5,0,0,-0.0218986 -32554,5509:100:3,-90,-50.5,0,0,-0.0214098 -32555,5508:209:4,-89.5,-50.5,0,0,-0.0207957 -32556,5508:209:3,-89,-50.5,0,0,-0.0201586 -32557,5508:208:4,-88.5,-50.5,0,0,-0.0195855 -32558,5508:208:3,-88,-50.5,0,0,-0.0191407 -32559,5508:207:4,-87.5,-50.5,0,0,-0.0190934 -32560,5508:207:3,-87,-50.5,0,0,-0.0193705 -32561,5508:206:4,-86.5,-50.5,0,0,-0.0196341 -32562,5508:206:3,-86,-50.5,0,0,-0.0198566 -32563,5508:205:4,-85.5,-50.5,0,0,-0.0201178 -32564,5508:205:3,-85,-50.5,0,0,-0.0207864 -32565,5508:104:4,-84.5,-50.5,0,0,-0.0217262 -32566,5508:104:3,-84,-50.5,0,0,-0.0220027 -32567,5508:103:4,-83.5,-50.5,0,0,-0.0214485 -32568,5508:103:3,-83,-50.5,0,0,-0.0204469 -32569,5508:102:4,-82.5,-50.5,0,0,-0.0200726 -32570,5508:102:3,-82,-50.5,0,0,-0.0202588 -32571,5508:101:4,-81.5,-50.5,0,0,-0.0204193 -32572,5508:101:3,-81,-50.5,0,0,-0.0204378 -32573,5508:100:4,-80.5,-50.5,0,0,-0.0202725 -32574,5508:100:3,-80,-50.5,0,0,-0.0199867 -32575,5507:209:4,-79.5,-50.5,0,0,-0.0198655 -32576,5507:209:3,-79,-50.5,0,0,-0.0202178 -32577,5507:208:4,-78.5,-50.5,0,0,-0.0206788 -32578,5507:208:3,-78,-50.5,0,0,-0.020852 -32579,5507:207:4,-77.5,-50.5,0,0,-0.0210553 -32580,5507:207:3,-77,-50.5,0,0,-0.0214389 -32581,5507:206:4,-76.5,-50.5,0,0,-0.0217704 -32582,5507:206:3,-76,-50.5,0,0,-0.0218245 -32583,5507:205:4,-75.5,-50.5,0,0,-0.0215067 -32584,5507:205:3,-75,-50.5,0,0,-0.0208803 -32585,5507:104:4,-74.5,-50.5,0,0,-0.0202863 -32586,5507:104:3,-74,-50.5,0,0,-0.0200273 -32587,5507:103:4,-73.5,-50.5,0,0,-0.020077 -32588,5507:103:3,-73,-50.5,0,0,-0.0201722 -32589,5507:102:4,-72.5,-50.5,0,0,-0.020355 -32590,5507:102:3,-72,-50.5,0,0,-0.0205024 -32591,5507:101:4,-71.5,-50.5,0,0,-0.0204056 -32592,5507:101:3,-71,-50.5,0,0,-0.0198969 -32593,5507:100:4,-70.5,-50.5,0,0,-0.0184553 -32594,5507:100:3,-70,-50.5,0,0,-0.0183229 -32595,5506:209:4,-69.5,-50.5,0,0,-0.0172204 -32596,5506:209:3,-69,-50.5,0,0,-0.0152062 -32597,5506:208:4,-68.5,-50.5,0,0,-0.0138649 -32598,5506:208:3,-68,-50.5,0,0,-0.0128832 -32599,5506:207:4,-67.5,-50.5,0,0,-0.0123884 -32600,5506:207:3,-67,-50.5,0,0,-0.0132813 -32601,5506:206:4,-66.5,-50.5,0,0,-0.0141662 -32602,5506:206:3,-66,-50.5,0,0,-0.0141188 -32603,5506:205:4,-65.5,-50.5,0,0,-0.0136217 -32604,5506:205:3,-65,-50.5,0,0,-0.0133619 -32605,5506:104:4,-64.5,-50.5,0,0,-0.013317 -32606,5506:104:3,-64,-50.5,0,0,-0.0135547 -32607,5506:103:4,-63.5,-50.5,0,0,-0.0144776 -32608,5506:103:3,-63,-50.5,0,0,-0.0149024 -32609,5506:102:4,-62.5,-50.5,0,0,-0.0151756 -32610,5506:102:3,-62,-50.5,0,0,-0.0144031 -32611,5506:101:4,-61.5,-50.5,0,0,-0.0136339 -32612,5506:101:3,-61,-50.5,0,0,-0.0132606 -32613,5506:100:4,-60.5,-50.5,0,0,-0.0130456 -32614,5506:100:3,-60,-50.5,0,0,-0.0119264 -32615,5505:209:4,-59.5,-50.5,0,0,-0.0105426 -32616,5505:209:3,-59,-50.5,0,0,-0.0101954 -32617,5505:208:4,-58.5,-50.5,0,0,-0.0099105 -32618,5505:208:3,-58,-50.5,0,0,-0.0097569 -32619,5505:207:4,-57.5,-50.5,0,0,-0.00932293 -32620,5505:207:3,-57,-50.5,0,0,-0.00879201 -32621,5505:206:4,-56.5,-50.5,0,0,-0.00818694 -32622,5505:206:3,-56,-50.5,0,0,-0.00801907 -32623,5505:205:4,-55.5,-50.5,0,0,-0.00834343 -32624,5505:205:3,-55,-50.5,0,0,-0.00857528 -32625,5505:104:4,-54.5,-50.5,0,0,-0.00890244 -32626,5505:104:3,-54,-50.5,0,0,-0.0093437 -32627,5505:103:4,-53.5,-50.5,0,0,-0.00899014 -32628,5505:103:3,-53,-50.5,0,0,-0.00848779 -32629,5505:102:4,-52.5,-50.5,0,0,-0.00814149 -32630,5505:102:3,-52,-50.5,0,0,-0.00797635 -32631,5505:101:4,-51.5,-50.5,0,0,-0.00750762 -32632,5505:101:3,-51,-50.5,0,0,-0.00667841 -32633,5505:100:4,-50.5,-50.5,0,0,-0.00661781 -32634,5505:100:3,-50,-50.5,0,0,-0.00668435 -32635,5504:209:4,-49.5,-50.5,0,0,-0.00662811 -32636,5504:209:3,-49,-50.5,0,0,-0.00730326 -32637,5504:208:4,-48.5,-50.5,0,0,-0.00786172 -32638,5504:208:3,-48,-50.5,0,0,-0.00765102 -32639,5504:207:4,-47.5,-50.5,0,0,-0.0092216 -32640,5504:207:3,-47,-50.5,0,0,-0.0102914 -32641,5504:206:4,-46.5,-50.5,0,0,-0.0101681 -32642,5504:206:3,-46,-50.5,0,0,-0.00893818 -32643,5504:205:4,-45.5,-50.5,0,0,-0.0086097 -32644,5504:205:3,-45,-50.5,0,0,-0.00857335 -32645,5504:104:4,-44.5,-50.5,0,0,-0.00872755 -32646,5504:104:3,-44,-50.5,0,0,-0.00768692 -32647,5504:103:4,-43.5,-50.5,0,0,-0.00688048 -32648,5504:103:3,-43,-50.5,0,0,-0.00694505 -32649,5504:102:4,-42.5,-50.5,0,0,-0.00727405 -32650,5504:102:3,-42,-50.5,0,0,-0.00738171 -32651,5504:101:4,-41.5,-50.5,0,0,-0.0075428 -32652,5504:101:3,-41,-50.5,0,0,-0.00782329 -32653,5504:100:4,-40.5,-50.5,0,0,-0.00787402 -32654,5504:100:3,-40,-50.5,0,0,-0.00759674 -32655,5503:209:4,-39.5,-50.5,0,0,-0.00749091 -32656,5503:209:3,-39,-50.5,0,0,-0.00708239 -32657,5503:208:4,-38.5,-50.5,0,0,-0.00740969 -32658,5503:208:3,-38,-50.5,0,0,-0.00775223 -32659,5503:207:4,-37.5,-50.5,0,0,-0.00774701 -32660,5503:207:3,-37,-50.5,0,0,-0.00774359 -32661,5503:206:4,-36.5,-50.5,0,0,-0.00730976 -32662,5503:206:3,-36,-50.5,0,0,-0.00689886 -32663,5503:205:4,-35.5,-50.5,0,0,-0.0071712 -32664,5503:205:3,-35,-50.5,0,0,-0.00763404 -32665,5503:104:4,-34.5,-50.5,0,0,-0.00767153 -32666,5503:104:3,-34,-50.5,0,0,-0.0075428 -32667,5503:103:4,-33.5,-50.5,0,0,-0.0074444 -32668,5503:103:3,-33,-50.5,0,0,-0.0073293 -32669,5503:102:4,-32.5,-50.5,0,0,-0.00713142 -32670,5503:102:3,-32,-50.5,0,0,-0.0069621 -32671,5503:101:4,-31.5,-50.5,0,0,-0.00698535 -32672,5503:101:3,-31,-50.5,0,0,-0.00693737 -32673,5503:100:4,-30.5,-50.5,0,0,-0.00677268 -32674,5503:100:3,-30,-50.5,0,0,-0.00673363 -32675,5502:209:4,-29.5,-50.5,0,0,-0.00681498 -32676,5502:209:3,-29,-50.5,0,0,-0.00684841 -32677,5502:208:4,-28.5,-50.5,0,0,-0.00680134 -32678,5502:208:3,-28,-50.5,0,0,-0.00659427 -32679,5502:207:4,-27.5,-50.5,0,0,-0.00654025 -32680,5502:207:3,-27,-50.5,0,0,-0.00667692 -32681,5502:206:4,-26.5,-50.5,0,0,-0.00681197 -32682,5502:206:3,-26,-50.5,0,0,-0.00691884 -32683,5502:205:4,-25.5,-50.5,0,0,-0.00687744 -32684,5502:205:3,-25,-50.5,0,0,-0.00687744 -32685,5502:104:4,-24.5,-50.5,0,0,-0.00765446 -32686,5502:104:3,-24,-50.5,0,0,-0.00825838 -32687,5502:103:4,-23.5,-50.5,0,0,-0.00856001 -32688,5502:103:3,-23,-50.5,0,0,-0.00864049 -32689,5502:102:4,-22.5,-50.5,0,0,-0.00800481 -32690,5502:102:3,-22,-50.5,0,0,-0.00788274 -32691,5502:101:4,-21.5,-50.5,0,0,-0.00796395 -32692,5502:101:3,-21,-50.5,0,0,-0.00798704 -32693,5502:100:4,-20.5,-50.5,0,0,-0.00771948 -32694,5502:100:3,-20,-50.5,0,0,-0.00733259 -32695,5501:209:4,-19.5,-50.5,0,0,-0.00713617 -32696,5501:209:3,-19,-50.5,0,0,-0.00703838 -32697,5501:208:4,-18.5,-50.5,0,0,-0.0070478 -32698,5501:208:3,-18,-50.5,0,0,-0.00709028 -32699,5501:207:4,-17.5,-50.5,0,0,-0.00709028 -32700,5501:207:3,-17,-50.5,0,0,-0.0069807 -32701,5501:206:4,-16.5,-50.5,0,0,-0.00677416 -32702,5501:206:3,-16,-50.5,0,0,-0.00665028 -32703,5501:205:4,-15.5,-50.5,0,0,-0.00655919 -32704,5501:205:3,-15,-50.5,0,0,-0.00658989 -32705,5501:104:4,-14.5,-50.5,0,0,-0.00665172 -32706,5501:104:3,-14,-50.5,0,0,-0.00664437 -32707,5501:103:4,-13.5,-50.5,0,0,-0.00664437 -32708,5501:103:3,-13,-50.5,0,0,-0.00670967 -32709,5501:102:4,-12.5,-50.5,0,0,-0.00679377 -32710,5501:102:3,-12,-50.5,0,0,-0.00685297 -32711,5501:101:4,-11.5,-50.5,0,0,-0.00689886 -32712,5501:101:3,-11,-50.5,0,0,-0.00693426 -32713,5501:100:4,-10.5,-50.5,0,0,-0.00693426 -32714,5501:100:3,-10,-50.5,0,0,-0.00685297 -32715,5500:209:4,-9.5,-50.5,0,0,-0.0066031 -32716,5500:209:3,-9,-50.5,0,0,-0.00648523 -32717,5500:208:4,-8.5,-50.5,0,0,-0.00656066 -32718,5500:208:3,-8,-50.5,0,0,-0.00670967 -32719,5500:207:4,-7.5,-50.5,0,0,-0.00670521 -32720,5500:207:3,-7,-50.5,0,0,-0.00681345 -32721,5500:206:4,-6.5,-50.5,0,0,-0.00687282 -32722,5500:206:3,-6,-50.5,0,0,-0.00672463 -32723,5500:205:4,-5.5,-50.5,0,0,-0.00633977 -32724,5500:205:3,-5,-50.5,0,0,-0.00639073 -32725,5500:104:4,-4.5,-50.5,0,0,-0.00647511 -32726,5500:104:3,-4,-50.5,0,0,-0.00613596 -32727,5500:103:4,-3.5,-50.5,0,0,-0.00572869 -32728,5500:103:3,-3,-50.5,0,0,-0.00566918 -32729,5500:102:4,-2.5,-50.5,0,0,-0.00564781 -32730,5500:102:3,-2,-50.5,0,0,-0.00564405 -32731,5500:101:4,-1.5,-50.5,0,0,-0.00565282 -32732,5500:101:3,-1,-50.5,0,0,-0.00567171 -32733,5500:100:4,-0.5,-50.5,0,0,-0.00568812 -32734,3500:100:4,0,-50.5,0,0,-0.00562404 -32735,3500:100:4,0.5,-50.5,0,0,-0.00560033 -32736,3500:101:3,1,-50.5,0,0,-0.00557797 -32737,3500:101:4,1.5,-50.5,0,0,-0.00554953 -32738,3500:102:3,2,-50.5,0,0,-0.00549677 -32739,3500:102:4,2.5,-50.5,0,0,-0.00546878 -32740,3500:103:3,3,-50.5,0,0,-0.005509 -32741,3500:103:4,3.5,-50.5,0,0,-0.0055557 -32742,3500:104:3,4,-50.5,0,0,-0.0055557 -32743,3500:104:4,4.5,-50.5,0,0,-0.0055446 -32744,3500:205:3,5,-50.5,0,0,-0.00552741 -32745,3500:205:4,5.5,-50.5,0,0,-0.005498 -32746,3500:206:3,6,-50.5,0,0,-0.00547972 -32747,3500:206:4,6.5,-50.5,0,0,-0.00546392 -32748,3500:207:3,7,-50.5,0,0,-0.00545423 -32749,3500:207:4,7.5,-50.5,0,0,-0.00544333 -32750,3500:208:3,8,-50.5,0,0,-0.00543363 -32751,3500:208:4,8.5,-50.5,0,0,-0.00542763 -32752,3500:209:3,9,-50.5,0,0,-0.00542642 -32753,3500:209:4,9.5,-50.5,0,0,-0.00542763 -32754,3501:100:3,10,-50.5,0,0,-0.00542881 -32755,3501:100:4,10.5,-50.5,0,0,-0.00543245 -32756,3501:101:3,11,-50.5,0,0,-0.00543485 -32757,3501:101:4,11.5,-50.5,0,0,-0.00543728 -32758,3501:102:3,12,-50.5,0,0,-0.00543968 -32759,3501:102:4,12.5,-50.5,0,0,-0.00544089 -32760,3501:103:3,13,-50.5,0,0,-0.00544333 -32761,3501:103:4,13.5,-50.5,0,0,-0.00544816 -32762,3501:104:3,14,-50.5,0,0,-0.00544935 -32763,3501:104:4,14.5,-50.5,0,0,-0.00544695 -32764,3501:205:3,15,-50.5,0,0,-0.00544451 -32765,3501:205:4,15.5,-50.5,0,0,-0.00544333 -32766,3501:206:3,16,-50.5,0,0,-0.00544333 -32767,3501:206:4,16.5,-50.5,0,0,-0.00544211 -32768,3501:207:3,17,-50.5,0,0,-0.0054385 -32769,3501:207:4,17.5,-50.5,0,0,-0.00543728 -32770,3501:208:3,18,-50.5,0,0,-0.00543606 -32771,3501:208:4,18.5,-50.5,0,0,-0.00543485 -32772,3501:209:3,19,-50.5,0,0,-0.00543002 -32773,3501:209:4,19.5,-50.5,0,0,-0.0054252 -32774,3502:100:3,20,-50.5,0,0,-0.00545541 -32775,3502:100:4,20.5,-50.5,0,0,-0.00547241 -32776,3502:101:3,21,-50.5,0,0,-0.00548947 -32777,3502:101:4,21.5,-50.5,0,0,-0.00548582 -32778,3502:102:3,22,-50.5,0,0,-0.00546511 -32779,3502:102:4,22.5,-50.5,0,0,-0.00546148 -32780,3502:103:3,23,-50.5,0,0,-0.00546633 -32781,3502:103:4,23.5,-50.5,0,0,-0.00547727 -32782,3502:104:3,24,-50.5,0,0,-0.00548582 -32783,3502:104:4,24.5,-50.5,0,0,-0.00548947 -32784,3502:205:3,25,-50.5,0,0,-0.00546878 -32785,3502:205:4,25.5,-50.5,0,0,-0.00547727 -32786,3502:206:3,26,-50.5,0,0,-0.00550165 -32787,3502:206:4,26.5,-50.5,0,0,-0.0055557 -32788,3502:207:3,27,-50.5,0,0,-0.00557922 -32789,3502:207:4,27.5,-50.5,0,0,-0.00552127 -32790,3502:208:3,28,-50.5,0,0,-0.00551513 -32791,3502:208:4,28.5,-50.5,0,0,-0.00547119 -32792,3502:209:3,29,-50.5,0,0,-0.00548337 -32793,3502:209:4,29.5,-50.5,0,0,-0.00550777 -32794,3503:100:3,30,-50.5,0,0,-0.00550534 -32795,3503:100:4,30.5,-50.5,0,0,-0.00549189 -32796,3503:101:3,31,-50.5,0,0,-0.00549434 -32797,3503:101:4,31.5,-50.5,0,0,-0.005509 -32798,3503:102:3,32,-50.5,0,0,-0.00553724 -32799,3503:102:4,32.5,-50.5,0,0,-0.00554092 -32800,3503:103:3,33,-50.5,0,0,-0.005498 -32801,3503:103:4,33.5,-50.5,0,0,-0.00549312 -32802,3503:104:3,34,-50.5,0,0,-0.00556064 -32803,3503:104:4,34.5,-50.5,0,0,-0.00585611 -32804,3503:205:3,35,-50.5,0,0,-0.00630185 -32805,3503:205:4,35.5,-50.5,0,0,-0.0062544 -32806,3503:206:3,36,-50.5,0,0,-0.00598107 -32807,3503:206:4,36.5,-50.5,0,0,-0.00596782 -32808,3503:207:3,37,-50.5,0,0,-0.00595456 -32809,3503:207:4,37.5,-50.5,0,0,-0.00596252 -32810,3503:208:3,38,-50.5,0,0,-0.00610329 -32811,3503:208:4,38.5,-50.5,0,0,-0.00613184 -32812,3503:209:3,39,-50.5,0,0,-0.00606544 -32813,3503:209:4,39.5,-50.5,0,0,-0.00599041 -32814,3504:100:3,40,-50.5,0,0,-0.00585611 -32815,3504:100:4,40.5,-50.5,0,0,-0.0058496 -32816,3504:101:3,41,-50.5,0,0,-0.0060884 -32817,3504:101:4,41.5,-50.5,0,0,-0.00616329 -32818,3504:102:3,42,-50.5,0,0,-0.00616601 -32819,3504:102:4,42.5,-50.5,0,0,-0.00615644 -32820,3504:103:3,43,-50.5,0,0,-0.00615781 -32821,3504:103:4,43.5,-50.5,0,0,-0.00613051 -32822,3504:104:3,44,-50.5,0,0,-0.00607623 -32823,3504:104:4,44.5,-50.5,0,0,-0.00600371 -32824,3504:205:3,45,-50.5,0,0,-0.00595719 -32825,3504:205:4,45.5,-50.5,0,0,-0.00592419 -32826,3504:206:3,46,-50.5,0,0,-0.00591234 -32827,3504:206:4,46.5,-50.5,0,0,-0.00591234 -32828,3504:207:3,47,-50.5,0,0,-0.0059519 -32829,3504:207:4,47.5,-50.5,0,0,-0.00589005 -32830,3504:208:3,48,-50.5,0,0,-0.00593343 -32831,3504:208:4,48.5,-50.5,0,0,-0.00599041 -32832,3504:209:3,49,-50.5,0,0,-0.00586005 -32833,3504:209:4,49.5,-50.5,0,0,-0.00584053 -32834,3505:100:3,50,-50.5,0,0,-0.00611552 -32835,3505:100:4,50.5,-50.5,0,0,-0.00664437 -32836,3505:101:3,51,-50.5,0,0,-0.00649822 -32837,3505:101:4,51.5,-50.5,0,0,-0.00645502 -32838,3505:102:3,52,-50.5,0,0,-0.00667547 -32839,3505:102:4,52.5,-50.5,0,0,-0.00694972 -32840,3505:103:3,53,-50.5,0,0,-0.00705096 -32841,3505:103:4,53.5,-50.5,0,0,-0.00701029 -32842,3505:104:3,54,-50.5,0,0,-0.00614275 -32843,3505:104:4,54.5,-50.5,0,0,-0.00631448 -32844,3505:205:3,55,-50.5,0,0,-0.00670822 -32845,3505:205:4,55.5,-50.5,0,0,-0.00686368 -32846,3505:206:3,56,-50.5,0,0,-0.00683624 -32847,3505:206:4,56.5,-50.5,0,0,-0.00663252 -32848,3505:207:3,57,-50.5,0,0,-0.00644211 -32849,3505:207:4,57.5,-50.5,0,0,-0.00643922 -32850,3505:208:3,58,-50.5,0,0,-0.00702277 -32851,3505:208:4,58.5,-50.5,0,0,-0.00751768 -32852,3505:209:3,59,-50.5,0,0,-0.0077747 -32853,3505:209:4,59.5,-50.5,0,0,-0.00782329 -32854,3506:100:3,60,-50.5,0,0,-0.00720478 -32855,3506:100:4,60.5,-50.5,0,0,-0.00686979 -32856,3506:101:3,61,-50.5,0,0,-0.0071712 -32857,3506:101:4,61.5,-50.5,0,0,-0.00756132 -32858,3506:102:3,62,-50.5,0,0,-0.00788274 -32859,3506:102:4,62.5,-50.5,0,0,-0.00794443 -32860,3506:103:3,63,-50.5,0,0,-0.00780243 -32861,3506:103:4,63.5,-50.5,0,0,-0.00737675 -32862,3506:104:3,64,-50.5,0,0,-0.00726921 -32863,3506:104:4,64.5,-50.5,0,0,-0.00767664 -32864,3506:205:3,65,-50.5,0,0,-0.00811073 -32865,3506:205:4,65.5,-50.5,0,0,-0.00828233 -32866,3506:206:3,66,-50.5,0,0,-0.00808365 -32867,3506:206:4,66.5,-50.5,0,0,-0.00764256 -32868,3506:207:3,67,-50.5,0,0,-0.00753276 -32869,3506:207:4,67.5,-50.5,0,0,-0.00769544 -32870,3506:208:3,68,-50.5,0,0,-0.00807464 -32871,3506:208:4,68.5,-50.5,0,0,-0.00841813 -32872,3506:209:3,69,-50.5,0,0,-0.00854286 -32873,3506:209:4,69.5,-50.5,0,0,-0.00867523 -32874,3507:100:3,70,-50.5,0,0,-0.00880572 -32875,3507:100:4,70.5,-50.5,0,0,-0.00880572 -32876,3507:101:3,71,-50.5,0,0,-0.00872755 -32877,3507:101:4,71.5,-50.5,0,0,-0.00860016 -32878,3507:102:3,72,-50.5,0,0,-0.00801373 -32879,3507:102:4,72.5,-50.5,0,0,-0.00742289 -32880,3507:103:4,73.5,-50.5,0,0,-0.00676662 -32881,3507:104:3,74,-50.5,0,0,-0.00656502 -32882,3507:104:4,74.5,-50.5,0,0,-0.00659137 -32883,3507:205:3,75,-50.5,0,0,-0.00662073 -32884,3507:205:4,75.5,-50.5,0,0,-0.00669925 -32885,3507:206:3,76,-50.5,0,0,-0.00666655 -32886,3507:206:4,76.5,-50.5,0,0,-0.00656797 -32887,3507:207:3,77,-50.5,0,0,-0.00655336 -32888,3507:207:4,77.5,-50.5,0,0,-0.00655483 -32889,3507:208:3,78,-50.5,0,0,-0.00656213 -32890,3507:208:4,78.5,-50.5,0,0,-0.00648668 -32891,3507:209:3,79,-50.5,0,0,-0.00634967 -32892,3507:209:4,79.5,-50.5,0,0,-0.00620731 -32893,3508:100:3,80,-50.5,0,0,-0.00598639 -32894,3508:100:4,80.5,-50.5,0,0,-0.00589529 -32895,3508:101:3,81,-50.5,0,0,-0.00590185 -32896,3508:101:4,81.5,-50.5,0,0,-0.00594532 -32897,3508:102:3,82,-50.5,0,0,-0.00594266 -32898,3508:102:4,82.5,-50.5,0,0,-0.00590577 -32899,3508:103:3,83,-50.5,0,0,-0.00590577 -32900,3508:103:4,83.5,-50.5,0,0,-0.00590185 -32901,3508:104:3,84,-50.5,0,0,-0.00587306 -32902,3508:104:4,84.5,-50.5,0,0,-0.00583665 -32903,3508:205:3,85,-50.5,0,0,-0.00581851 -32904,3508:205:4,85.5,-50.5,0,0,-0.00590577 -32905,3508:206:3,86,-50.5,0,0,-0.00633276 -32906,3508:206:4,86.5,-50.5,0,0,-0.00765955 -32907,3508:207:3,87,-50.5,0,0,-0.00914991 -32908,3508:207:4,87.5,-50.5,0,0,-0.0100733 -32909,3508:208:3,88,-50.5,0,0,-0.0106134 -32910,3508:208:4,88.5,-50.5,0,0,-0.0102868 -32911,3508:209:3,89,-50.5,0,0,-0.00928766 -32912,3508:209:4,89.5,-50.5,0,0,-0.00884504 -32913,3509:100:3,90,-50.5,0,0,-0.00860203 -32914,3509:100:4,90.5,-50.5,0,0,-0.00844065 -32915,3509:101:3,91,-50.5,0,0,-0.0084916 -32916,3509:101:4,91.5,-50.5,0,0,-0.0086193 -32917,3509:102:3,92,-50.5,0,0,-0.00871782 -32918,3509:102:4,92.5,-50.5,0,0,-0.00873533 -32919,3509:103:3,93,-50.5,0,0,-0.00876657 -32920,3509:103:4,93.5,-50.5,0,0,-0.00885889 -32921,3509:104:3,94,-50.5,0,0,-0.00892828 -32922,3509:104:4,94.5,-50.5,0,0,-0.00898213 -32923,3509:205:3,95,-50.5,0,0,-0.00871201 -32924,3509:205:4,95.5,-50.5,0,0,-0.00845197 -32925,3509:206:3,96,-50.5,0,0,-0.00832116 -32926,3509:206:4,96.5,-50.5,0,0,-0.00825468 -32927,3509:207:3,97,-50.5,0,0,-0.0081924 -32928,3509:207:4,97.5,-50.5,0,0,-0.00807645 -32929,3509:208:3,98,-50.5,0,0,-0.00798877 -32930,3509:208:4,98.5,-50.5,0,0,-0.00803517 -32931,3509:209:3,99,-50.5,0,0,-0.008218 -32932,3509:209:4,99.5,-50.5,0,0,-0.00841624 -32933,3510:100:3,100,-50.5,0,0,-0.00884113 -32934,3510:100:4,100.5,-50.5,0,0,-0.00897218 -32935,3510:101:3,101,-50.5,0,0,-0.00882539 -32936,3510:101:4,101.5,-50.5,0,0,-0.00877045 -32937,3510:102:3,102,-50.5,0,0,-0.00881159 -32938,3510:102:4,102.5,-50.5,0,0,-0.00902231 -32939,3510:103:3,103,-50.5,0,0,-0.00944427 -32940,3510:103:4,103.5,-50.5,0,0,-0.0100733 -32941,3510:104:3,104,-50.5,0,0,-0.0101477 -32942,3510:104:4,104.5,-50.5,0,0,-0.0101477 -32943,3510:205:3,105,-50.5,0,0,-0.0102479 -32944,3510:205:4,105.5,-50.5,0,0,-0.0103351 -32945,3510:206:3,106,-50.5,0,0,-0.0101274 -32946,3510:206:4,106.5,-50.5,0,0,-0.00955874 -32947,3510:207:3,107,-50.5,0,0,-0.00918671 -32948,3510:207:4,107.5,-50.5,0,0,-0.00914381 -32949,3510:208:3,108,-50.5,0,0,-0.00980932 -32950,3510:208:4,108.5,-50.5,0,0,-0.0106205 -32951,3510:209:3,109,-50.5,0,0,-0.0107446 -32952,3510:209:4,109.5,-50.5,0,0,-0.0105238 -32953,3511:100:3,110,-50.5,0,0,-0.0103444 -32954,3511:100:4,110.5,-50.5,0,0,-0.0104886 -32955,3511:101:3,111,-50.5,0,0,-0.0105097 -32956,3511:101:4,111.5,-50.5,0,0,-0.0100868 -32957,3511:102:3,112,-50.5,0,0,-0.00968753 -32958,3511:102:4,112.5,-50.5,0,0,-0.00994816 -32959,3511:103:3,113,-50.5,0,0,-0.011479 -32960,3511:103:4,113.5,-50.5,0,0,-0.0121253 -32961,3511:104:3,114,-50.5,0,0,-0.0120093 -32962,3511:104:4,114.5,-50.5,0,0,-0.0116809 -32963,3511:205:3,115,-50.5,0,0,-0.0107182 -32964,3511:205:4,115.5,-50.5,0,0,-0.010098 -32965,3511:206:3,116,-50.5,0,0,-0.0100935 -32966,3511:206:4,116.5,-50.5,0,0,-0.0102502 -32967,3511:207:3,117,-50.5,0,0,-0.0105756 -32968,3511:207:4,117.5,-50.5,0,0,-0.0111032 -32969,3511:208:3,118,-50.5,0,0,-0.0116419 -32970,3511:208:4,118.5,-50.5,0,0,-0.0120334 -32971,3511:209:3,119,-50.5,0,0,-0.0121497 -32972,3511:209:4,119.5,-50.5,0,0,-0.0117675 -32973,3512:100:3,120,-50.5,0,0,-0.0112682 -32974,3512:100:4,120.5,-50.5,0,0,-0.011377 -32975,3512:101:3,121,-50.5,0,0,-0.0114997 -32976,3512:101:4,121.5,-50.5,0,0,-0.0117359 -32977,3512:102:3,122,-50.5,0,0,-0.0119051 -32978,3512:102:4,122.5,-50.5,0,0,-0.0116993 -32979,3512:103:3,123,-50.5,0,0,-0.0113591 -32980,3512:103:4,123.5,-50.5,0,0,-0.0113617 -32981,3512:104:3,124,-50.5,0,0,-0.0113693 -32982,3512:104:4,124.5,-50.5,0,0,-0.0113212 -32983,3512:205:3,125,-50.5,0,0,-0.0112255 -32984,3512:205:4,125.5,-50.5,0,0,-0.0112556 -32985,3512:206:3,126,-50.5,0,0,-0.0114945 -32986,3512:206:4,126.5,-50.5,0,0,-0.0118864 -32987,3512:207:3,127,-50.5,0,0,-0.0122479 -32988,3512:207:4,127.5,-50.5,0,0,-0.0125054 -32989,3512:208:3,128,-50.5,0,0,-0.0126801 -32990,3512:208:4,128.5,-50.5,0,0,-0.0126291 -32991,3512:209:3,129,-50.5,0,0,-0.0127712 -32992,3512:209:4,129.5,-50.5,0,0,-0.0129496 -32993,3513:100:3,130,-50.5,0,0,-0.0129786 -32994,3513:100:4,130.5,-50.5,0,0,-0.0129496 -32995,3513:101:3,131,-50.5,0,0,-0.0129525 -32996,3513:101:4,131.5,-50.5,0,0,-0.0130135 -32997,3513:102:3,132,-50.5,0,0,-0.0130954 -32998,3513:102:4,132.5,-50.5,0,0,-0.0131188 -32999,3513:103:3,133,-50.5,0,0,-0.0132042 -33000,3513:103:4,133.5,-50.5,0,0,-0.0131541 -33001,3513:104:3,134,-50.5,0,0,-0.0126971 -33002,3513:104:4,134.5,-50.5,0,0,-0.0122452 -33003,3513:205:3,135,-50.5,0,0,-0.0120281 -33004,3513:205:4,135.5,-50.5,0,0,-0.0119985 -33005,3513:206:3,136,-50.5,0,0,-0.012101 -33006,3513:206:4,136.5,-50.5,0,0,-0.0122726 -33007,3513:207:3,137,-50.5,0,0,-0.012347 -33008,3513:207:4,137.5,-50.5,0,0,-0.0122726 -33009,3513:208:3,138,-50.5,0,0,-0.0121199 -33010,3513:208:4,138.5,-50.5,0,0,-0.0119878 -33011,3513:209:3,139,-50.5,0,0,-0.0118758 -33012,3513:209:4,139.5,-50.5,0,0,-0.0117569 -33013,3514:100:3,140,-50.5,0,0,-0.0117228 -33014,3514:100:4,140.5,-50.5,0,0,-0.0118175 -33015,3514:101:3,141,-50.5,0,0,-0.0119157 -33016,3514:101:4,141.5,-50.5,0,0,-0.0120361 -33017,3514:102:3,142,-50.5,0,0,-0.0122561 -33018,3514:102:4,142.5,-50.5,0,0,-0.0125194 -33019,3514:103:3,143,-50.5,0,0,-0.0127398 -33020,3514:103:4,143.5,-50.5,0,0,-0.0128572 -33021,3514:104:3,144,-50.5,0,0,-0.0128514 -33022,3514:104:4,144.5,-50.5,0,0,-0.0127798 -33023,3514:205:3,145,-50.5,0,0,-0.0127056 -33024,3514:205:4,145.5,-50.5,0,0,-0.0125924 -33025,3514:206:3,146,-50.5,0,0,-0.0123691 -33026,3514:206:4,146.5,-50.5,0,0,-0.012082 -33027,3514:207:3,147,-50.5,0,0,-0.0117885 -33028,3514:207:4,147.5,-50.5,0,0,-0.0113744 -33029,3514:208:3,148,-50.5,0,0,-0.0110266 -33030,3514:208:4,148.5,-50.5,0,0,-0.0106824 -33031,3514:209:3,149,-50.5,0,0,-0.00991934 -33032,3514:209:4,149.5,-50.5,0,0,-0.00870816 -33033,3515:100:3,150,-50.5,0,0,-0.00783378 -33034,3515:100:4,150.5,-50.5,0,0,-0.00814875 -33035,3515:101:3,151,-50.5,0,0,-0.008336 -33036,3515:101:4,151.5,-50.5,0,0,-0.00843693 -33037,3515:102:3,152,-50.5,0,0,-0.00854472 -33038,3515:102:4,152.5,-50.5,0,0,-0.00866939 -33039,3515:103:3,153,-50.5,0,0,-0.00917647 -33040,3515:103:4,153.5,-50.5,0,0,-0.00939804 -33041,3515:104:3,154,-50.5,0,0,-0.0097678 -33042,3515:104:4,154.5,-50.5,0,0,-0.0103976 -33043,3515:205:3,155,-50.5,0,0,-0.0109701 -33044,3515:205:4,155.5,-50.5,0,0,-0.0109971 -33045,3515:206:3,156,-50.5,0,0,-0.0109505 -33046,3515:206:4,156.5,-50.5,0,0,-0.0107854 -33047,3515:207:3,157,-50.5,0,0,-0.0110562 -33048,3515:207:4,157.5,-50.5,0,0,-0.0117648 -33049,3515:208:3,158,-50.5,0,0,-0.0121388 -33050,3515:208:4,158.5,-50.5,0,0,-0.0124301 -33051,3515:209:3,159,-50.5,0,0,-0.0128141 -33052,3515:209:4,159.5,-50.5,0,0,-0.0131984 -33053,3516:100:3,160,-50.5,0,0,-0.0139928 -33054,3516:100:4,160.5,-50.5,0,0,-0.0146243 -33055,3516:101:3,161,-50.5,0,0,-0.0161452 -33056,3516:101:4,161.5,-50.5,0,0,-0.0191838 -33057,3516:102:3,162,-50.5,0,0,-0.0193705 -33058,3516:102:4,162.5,-50.5,0,0,-0.0190934 -33059,3516:103:3,163,-50.5,0,0,-0.0195414 -33060,3516:103:4,163.5,-50.5,0,0,-0.0209416 -33061,3516:104:3,164,-50.5,0,0,-0.021687 -33062,3516:104:4,164.5,-50.5,0,0,-0.0212605 -33063,3516:205:3,165,-50.5,0,0,-0.02106 -33064,3516:205:4,165.5,-50.5,0,0,-0.0210125 -33065,3516:206:3,166,-50.5,0,0,-0.0210506 -33066,3516:206:4,166.5,-50.5,0,0,-0.0217508 -33067,3516:207:3,167,-50.5,0,0,-0.0214002 -33068,3516:207:4,167.5,-50.5,0,0,-0.02116 -33069,3516:208:3,168,-50.5,0,0,-0.0211458 -33070,3516:208:4,168.5,-50.5,0,0,-0.0212797 -33071,3516:209:3,169,-50.5,0,0,-0.0214291 -33072,3516:209:4,169.5,-50.5,0,0,-0.0210363 -33073,3517:100:3,170,-50.5,0,0,-0.0202132 -33074,3517:100:4,170.5,-50.5,0,0,-0.0197006 -33075,3517:101:3,171,-50.5,0,0,-0.0197539 -33076,3517:101:4,171.5,-50.5,0,0,-0.0199777 -33077,3517:102:3,172,-50.5,0,0,-0.0203733 -33078,3517:102:4,172.5,-50.5,0,0,-0.0204285 -33079,3517:103:3,173,-50.5,0,0,-0.0200907 -33080,3517:103:4,173.5,-50.5,0,0,-0.0199733 -33081,3517:104:3,174,-50.5,0,0,-0.0199192 -33082,3517:104:4,174.5,-50.5,0,0,-0.019794 -33083,3517:205:3,175,-50.5,0,0,-0.0195635 -33084,3517:205:4,175.5,-50.5,0,0,-0.0192401 -33085,3517:206:3,176,-50.5,0,0,-0.0189137 -33086,3517:206:4,176.5,-50.5,0,0,-0.0186013 -33087,3517:207:3,177,-50.5,0,0,-0.0183849 -33088,3517:207:4,177.5,-50.5,0,0,-0.0183353 -33089,3517:208:3,178,-50.5,0,0,-0.0185594 -33090,3517:208:4,178.5,-50.5,0,0,-0.0184387 -33091,3517:209:3,179,-50.5,0,0,-0.0182489 -33092,3517:209:4,179.5,-50.5,0,0,-0.0179679 -33093,3518:100:3,180,-50.5,0,0,-0.0176237 -33094,5518:100:1,-180,-50,0,0,-0.0216968 -33095,5517:209:2,-179.5,-50,0,0,-0.0211267 -33096,5517:209:1,-179,-50,0,0,-0.0190805 -33097,5517:208:2,-178.5,-50,0,0,-0.017259 -33098,5517:208:1,-178,-50,0,0,-0.0171084 -33099,5517:207:2,-177.5,-50,0,0,-0.0174737 -33100,5517:207:1,-177,-50,0,0,-0.0178149 -33101,5517:206:2,-176.5,-50,0,0,-0.0180043 -33102,5517:206:1,-176,-50,0,0,-0.0182982 -33103,5517:205:2,-175.5,-50,0,0,-0.0186978 -33104,5517:205:1,-175,-50,0,0,-0.0189905 -33105,5517:104:2,-174.5,-50,0,0,-0.0191234 -33106,5517:104:1,-174,-50,0,0,-0.0190204 -33107,5517:103:2,-173.5,-50,0,0,-0.0186055 -33108,5517:103:1,-173,-50,0,0,-0.0181425 -33109,5517:102:2,-172.5,-50,0,0,-0.0177869 -33110,5517:102:1,-172,-50,0,0,-0.0176118 -33111,5517:101:2,-171.5,-50,0,0,-0.0177309 -33112,5517:101:1,-171,-50,0,0,-0.0181956 -33113,5517:100:2,-170.5,-50,0,0,-0.0187315 -33114,5517:100:1,-170,-50,0,0,-0.0188415 -33115,5516:209:2,-169.5,-50,0,0,-0.0183188 -33116,5516:209:1,-169,-50,0,0,-0.0175131 -33117,5516:208:2,-168.5,-50,0,0,-0.0167772 -33118,5516:208:1,-168,-50,0,0,-0.0163678 -33119,5516:207:2,-167.5,-50,0,0,-0.0164157 -33120,5516:207:1,-167,-50,0,0,-0.0168642 -33121,5516:206:2,-166.5,-50,0,0,-0.0179073 -33122,5516:206:1,-166,-50,0,0,-0.01836 -33123,5516:205:2,-165.5,-50,0,0,-0.0183188 -33124,5516:205:1,-165,-50,0,0,-0.0179193 -33125,5516:104:2,-164.5,-50,0,0,-0.0175053 -33126,5516:104:1,-164,-50,0,0,-0.0172745 -33127,5516:103:2,-163.5,-50,0,0,-0.0172241 -33128,5516:103:1,-163,-50,0,0,-0.0172396 -33129,5516:102:2,-162.5,-50,0,0,-0.0171546 -33130,5516:102:1,-162,-50,0,0,-0.0169591 -33131,5516:101:2,-161.5,-50,0,0,-0.0167697 -33132,5516:101:1,-161,-50,0,0,-0.0166085 -33133,5516:100:2,-160.5,-50,0,0,-0.0163973 -33134,5516:100:1,-160,-50,0,0,-0.0160765 -33135,5515:209:2,-159.5,-50,0,0,-0.0157267 -33136,5515:209:1,-159,-50,0,0,-0.0156492 -33137,5515:208:2,-158.5,-50,0,0,-0.0161488 -33138,5515:208:1,-158,-50,0,0,-0.0173056 -33139,5515:207:2,-157.5,-50,0,0,-0.018681 -33140,5515:207:1,-157,-50,0,0,-0.0194799 -33141,5515:206:2,-156.5,-50,0,0,-0.0190762 -33142,5515:206:1,-156,-50,0,0,-0.0174306 -33143,5515:205:2,-155.5,-50,0,0,-0.0162251 -33144,5515:205:1,-155,-50,0,0,-0.0164157 -33145,5515:104:2,-154.5,-50,0,0,-0.0161597 -33146,5515:104:1,-154,-50,0,0,-0.0157656 -33147,5515:103:2,-153.5,-50,0,0,-0.0149425 -33148,5515:103:1,-153,-50,0,0,-0.0138369 -33149,5515:102:2,-152.5,-50,0,0,-0.0116445 -33150,5515:102:1,-152,-50,0,0,-0.0101251 -33151,5515:101:2,-151.5,-50,0,0,-0.0095929 -33152,5515:101:1,-151,-50,0,0,-0.0101455 -33153,5515:100:2,-150.5,-50,0,0,-0.0105874 -33154,5515:100:1,-150,-50,0,0,-0.0112505 -33155,5514:209:2,-149.5,-50,0,0,-0.0111829 -33156,5514:209:1,-149,-50,0,0,-0.0108822 -33157,5514:208:2,-148.5,-50,0,0,-0.0104558 -33158,5514:208:1,-148,-50,0,0,-0.0101409 -33159,5514:207:2,-147.5,-50,0,0,-0.0119638 -33160,5514:207:1,-147,-50,0,0,-0.013069 -33161,5514:206:2,-146.5,-50,0,0,-0.0134791 -33162,5514:206:1,-146,-50,0,0,-0.0155548 -33163,5514:205:2,-145.5,-50,0,0,-0.0174227 -33164,5514:205:1,-145,-50,0,0,-0.0173681 -33165,5514:104:2,-144.5,-50,0,0,-0.0172824 -33166,5514:104:1,-144,-50,0,0,-0.0177309 -33167,5514:103:2,-143.5,-50,0,0,-0.0177271 -33168,5514:103:1,-143,-50,0,0,-0.0173485 -33169,5514:102:2,-142.5,-50,0,0,-0.0174737 -33170,5514:102:1,-142,-50,0,0,-0.0180895 -33171,5514:101:2,-141.5,-50,0,0,-0.0194361 -33172,5514:101:1,-141,-50,0,0,-0.0214389 -33173,5514:100:2,-140.5,-50,0,0,-0.0250919 -33174,5514:100:1,-140,-50,0,0,-0.0244471 -33175,5513:209:2,-139.5,-50,0,0,-0.0239055 -33176,5513:209:1,-139,-50,0,0,-0.0232077 -33177,5513:208:2,-138.5,-50,0,0,-0.0213422 -33178,5513:208:1,-138,-50,0,0,-0.0202314 -33179,5513:207:2,-137.5,-50,0,0,-0.0199822 -33180,5513:207:1,-137,-50,0,0,-0.0222626 -33181,5513:206:2,-136.5,-50,0,0,-0.0234132 -33182,5513:206:1,-136,-50,0,0,-0.0227302 -33183,5513:205:2,-135.5,-50,0,0,-0.0228331 -33184,5513:205:1,-135,-50,0,0,-0.022895 -33185,5513:104:2,-134.5,-50,0,0,-0.0216626 -33186,5513:104:1,-134,-50,0,0,-0.0208285 -33187,5513:103:2,-133.5,-50,0,0,-0.0205209 -33188,5513:103:1,-133,-50,0,0,-0.0199508 -33189,5513:102:2,-132.5,-50,0,0,-0.0194229 -33190,5513:102:1,-132,-50,0,0,-0.0189947 -33191,5513:101:2,-131.5,-50,0,0,-0.018639 -33192,5513:101:1,-131,-50,0,0,-0.0189051 -33193,5513:100:2,-130.5,-50,0,0,-0.0214098 -33194,5513:100:1,-130,-50,0,0,-0.0227609 -33195,5512:209:2,-129.5,-50,0,0,-0.0228435 -33196,5512:209:1,-129,-50,0,0,-0.0237923 -33197,5512:208:2,-128.5,-50,0,0,-0.0249164 -33198,5512:208:1,-128,-50,0,0,-0.026724 -33199,5512:207:2,-127.5,-50,0,0,-0.0296878 -33200,5512:207:1,-127,-50,0,0,-0.0318888 -33201,5512:206:2,-126.5,-50,0,0,-0.0322837 -33202,5512:206:1,-126,-50,0,0,-0.0321003 -33203,5512:205:2,-125.5,-50,0,0,-0.0311063 -33204,5512:205:1,-125,-50,0,0,-0.0287643 -33205,5512:104:2,-124.5,-50,0,0,-0.0256611 -33206,5512:104:1,-124,-50,0,0,-0.0227713 -33207,5512:103:2,-123.5,-50,0,0,-0.0210506 -33208,5512:103:1,-123,-50,0,0,-0.0202132 -33209,5512:102:2,-122.5,-50,0,0,-0.0189521 -33210,5512:102:1,-122,-50,0,0,-0.0182365 -33211,5512:101:2,-121.5,-50,0,0,-0.0190633 -33212,5512:101:1,-121,-50,0,0,-0.0195283 -33213,5512:100:2,-120.5,-50,0,0,-0.0199687 -33214,5512:100:1,-120,-50,0,0,-0.0204147 -33215,5511:209:2,-119.5,-50,0,0,-0.0207722 -33216,5511:209:1,-119,-50,0,0,-0.0216089 -33217,5511:208:2,-118.5,-50,0,0,-0.0222524 -33218,5511:208:1,-118,-50,0,0,-0.0228796 -33219,5511:207:2,-117.5,-50,0,0,-0.0241721 -33220,5511:207:1,-117,-50,0,0,-0.0245692 -33221,5511:206:2,-116.5,-50,0,0,-0.0242761 -33222,5511:206:1,-116,-50,0,0,-0.0243808 -33223,5511:205:2,-115.5,-50,0,0,-0.0242926 -33224,5511:205:1,-115,-50,0,0,-0.0235674 -33225,5511:104:2,-114.5,-50,0,0,-0.0216137 -33226,5511:104:1,-114,-50,0,0,-0.020268 -33227,5511:103:2,-113.5,-50,0,0,-0.0202817 -33228,5511:103:1,-113,-50,0,0,-0.0201405 -33229,5511:102:2,-112.5,-50,0,0,-0.020186 -33230,5511:102:1,-112,-50,0,0,-0.0204009 -33231,5511:101:2,-111.5,-50,0,0,-0.0207535 -33232,5511:101:1,-111,-50,0,0,-0.0211552 -33233,5511:100:2,-110.5,-50,0,0,-0.0215019 -33234,5511:100:1,-110,-50,0,0,-0.0217901 -33235,5510:209:2,-109.5,-50,0,0,-0.0220823 -33236,5510:209:1,-109,-50,0,0,-0.0223179 -33237,5510:208:2,-108.5,-50,0,0,-0.0224088 -33238,5510:208:1,-108,-50,0,0,-0.0222827 -33239,5510:207:2,-107.5,-50,0,0,-0.0219134 -33240,5510:207:1,-107,-50,0,0,-0.0213038 -33241,5510:206:2,-106.5,-50,0,0,-0.020595 -33242,5510:206:1,-106,-50,0,0,-0.0204285 -33243,5510:205:2,-105.5,-50,0,0,-0.0208803 -33244,5510:205:1,-105,-50,0,0,-0.0214389 -33245,5510:104:2,-104.5,-50,0,0,-0.0225562 -33246,5510:104:1,-104,-50,0,0,-0.023733 -33247,5510:103:2,-103.5,-50,0,0,-0.0241993 -33248,5510:103:1,-103,-50,0,0,-0.0236688 -33249,5510:102:2,-102.5,-50,0,0,-0.0219134 -33250,5510:102:1,-102,-50,0,0,-0.0215358 -33251,5510:101:2,-101.5,-50,0,0,-0.0223482 -33252,5510:101:1,-101,-50,0,0,-0.0225308 -33253,5510:100:2,-100.5,-50,0,0,-0.0221672 -33254,5510:100:1,-100,-50,0,0,-0.0215309 -33255,5509:209:2,-99.5,-50,0,0,-0.0209842 -33256,5509:209:1,-99,-50,0,0,-0.0209936 -33257,5509:208:2,-98.5,-50,0,0,-0.0209039 -33258,5509:208:1,-98,-50,0,0,-0.0205765 -33259,5509:207:2,-97.5,-50,0,0,-0.0199777 -33260,5509:207:1,-97,-50,0,0,-0.0192098 -33261,5509:206:2,-96.5,-50,0,0,-0.0189392 -33262,5509:206:1,-96,-50,0,0,-0.0193836 -33263,5509:205:2,-95.5,-50,0,0,-0.0200996 -33264,5509:205:1,-95,-50,0,0,-0.0208803 -33265,5509:104:2,-94.5,-50,0,0,-0.0214678 -33266,5509:104:1,-94,-50,0,0,-0.0215213 -33267,5509:103:2,-93.5,-50,0,0,-0.0209228 -33268,5509:103:1,-93,-50,0,0,-0.0208332 -33269,5509:102:2,-92.5,-50,0,0,-0.0206928 -33270,5509:102:1,-92,-50,0,0,-0.0210125 -33271,5509:101:2,-91.5,-50,0,0,-0.0218295 -33272,5509:101:1,-91,-50,0,0,-0.0222475 -33273,5509:100:2,-90.5,-50,0,0,-0.0221722 -33274,5509:100:1,-90,-50,0,0,-0.0217605 -33275,5508:209:2,-89.5,-50,0,0,-0.0212031 -33276,5508:209:1,-89,-50,0,0,-0.0207161 -33277,5508:208:2,-88.5,-50,0,0,-0.0201996 -33278,5508:208:1,-88,-50,0,0,-0.0198969 -33279,5508:207:2,-87.5,-50,0,0,-0.0200273 -33280,5508:207:1,-87,-50,0,0,-0.0203733 -33281,5508:206:2,-86.5,-50,0,0,-0.0206508 -33282,5508:206:1,-86,-50,0,0,-0.0207255 -33283,5508:205:2,-85.5,-50,0,0,-0.020918 -33284,5508:205:1,-85,-50,0,0,-0.0218689 -33285,5508:104:2,-84.5,-50,0,0,-0.0225816 -33286,5508:104:1,-84,-50,0,0,-0.0224139 -33287,5508:103:2,-83.5,-50,0,0,-0.0217605 -33288,5508:103:1,-83,-50,0,0,-0.0209275 -33289,5508:102:2,-82.5,-50,0,0,-0.0205394 -33290,5508:102:1,-82,-50,0,0,-0.0207395 -33291,5508:101:2,-81.5,-50,0,0,-0.0212414 -33292,5508:101:1,-81,-50,0,0,-0.0215991 -33293,5508:100:2,-80.5,-50,0,0,-0.0215894 -33294,5508:100:1,-80,-50,0,0,-0.0213422 -33295,5507:209:2,-79.5,-50,0,0,-0.0209605 -33296,5507:209:1,-79,-50,0,0,-0.020623 -33297,5507:208:2,-78.5,-50,0,0,-0.0205811 -33298,5507:208:1,-78,-50,0,0,-0.0208756 -33299,5507:207:2,-77.5,-50,0,0,-0.0213856 -33300,5507:207:1,-77,-50,0,0,-0.0220027 -33301,5507:206:2,-76.5,-50,0,0,-0.0224799 -33302,5507:206:1,-76,-50,0,0,-0.0226174 -33303,5507:205:2,-75.5,-50,0,0,-0.0224596 -33304,5507:205:1,-75,-50,0,0,-0.0221322 -33305,5507:104:2,-74.5,-50,0,0,-0.0217409 -33306,5507:104:1,-74,-50,0,0,-0.0216284 -33307,5507:103:2,-73.5,-50,0,0,-0.0219382 -33308,5507:103:1,-73,-50,0,0,-0.022546 -33309,5507:102:2,-72.5,-50,0,0,-0.0231867 -33310,5507:102:1,-72,-50,0,0,-0.023642 -33311,5507:101:2,-71.5,-50,0,0,-0.0233551 -33312,5507:101:1,-71,-50,0,0,-0.0231657 -33313,5507:100:2,-70.5,-50,0,0,-0.0224747 -33314,5507:100:1,-70,-50,0,0,-0.0214872 -33315,5506:209:2,-69.5,-50,0,0,-0.020077 -33316,5506:209:1,-69,-50,0,0,-0.0191622 -33317,5506:208:2,-68.5,-50,0,0,-0.0167999 -33318,5506:208:1,-68,-50,0,0,-0.0151043 -33319,5506:207:2,-67.5,-50,0,0,-0.0134489 -33320,5506:207:1,-67,-50,0,0,-0.0133111 -33321,5506:206:2,-66.5,-50,0,0,-0.0132397 -33322,5506:206:1,-66,-50,0,0,-0.0134942 -33323,5506:205:2,-65.5,-50,0,0,-0.0136705 -33324,5506:205:1,-65,-50,0,0,-0.0139178 -33325,5506:104:2,-64.5,-50,0,0,-0.0141916 -33326,5506:104:1,-64,-50,0,0,-0.0151721 -33327,5506:103:2,-63.5,-50,0,0,-0.0164785 -33328,5506:103:1,-63,-50,0,0,-0.0174699 -33329,5506:102:2,-62.5,-50,0,0,-0.0176197 -33330,5506:102:1,-62,-50,0,0,-0.0173135 -33331,5506:101:2,-61.5,-50,0,0,-0.0165974 -33332,5506:101:1,-61,-50,0,0,-0.0153226 -33333,5506:100:2,-60.5,-50,0,0,-0.0137627 -33334,5506:100:1,-60,-50,0,0,-0.0112782 -33335,5505:209:2,-59.5,-50,0,0,-0.0104093 -33336,5505:209:1,-59,-50,0,0,-0.0110513 -33337,5505:208:2,-58.5,-50,0,0,-0.0107087 -33338,5505:208:1,-58,-50,0,0,-0.00950767 -33339,5505:207:2,-57.5,-50,0,0,-0.00903638 -33340,5505:207:1,-57,-50,0,0,-0.00937919 -33341,5505:206:2,-56.5,-50,0,0,-0.00989505 -33342,5505:206:1,-56,-50,0,0,-0.00879787 -33343,5505:205:2,-55.5,-50,0,0,-0.00858671 -33344,5505:205:1,-55,-50,0,0,-0.00870229 -33345,5505:104:2,-54.5,-50,0,0,-0.00896815 -33346,5505:104:1,-54,-50,0,0,-0.00989943 -33347,5505:103:2,-53.5,-50,0,0,-0.0102983 -33348,5505:103:1,-53,-50,0,0,-0.00961002 -33349,5505:102:2,-52.5,-50,0,0,-0.00915601 -33350,5505:102:1,-52,-50,0,0,-0.00866556 -33351,5505:101:2,-51.5,-50,0,0,-0.00852191 -33352,5505:101:1,-51,-50,0,0,-0.00803877 -33353,5505:100:2,-50.5,-50,0,0,-0.00723371 -33354,5505:100:1,-50,-50,0,0,-0.00753107 -33355,5504:209:2,-49.5,-50,0,0,-0.00811795 -33356,5504:209:1,-49,-50,0,0,-0.00809629 -33357,5504:208:2,-48.5,-50,0,0,-0.00798166 -33358,5504:208:1,-48,-50,0,0,-0.00967238 -33359,5504:207:2,-47.5,-50,0,0,-0.0103145 -33360,5504:207:1,-47,-50,0,0,-0.00990611 -33361,5504:206:2,-46.5,-50,0,0,-0.00906668 -33362,5504:206:1,-46,-50,0,0,-0.00901023 -33363,5504:205:2,-45.5,-50,0,0,-0.00907674 -33364,5504:205:1,-45,-50,0,0,-0.00849351 -33365,5504:104:2,-44.5,-50,0,0,-0.00843314 -33366,5504:104:1,-44,-50,0,0,-0.00810891 -33367,5504:103:2,-43.5,-50,0,0,-0.00768176 -33368,5504:103:1,-43,-50,0,0,-0.00757139 -33369,5504:102:2,-42.5,-50,0,0,-0.00803517 -33370,5504:102:1,-42,-50,0,0,-0.00878807 -33371,5504:101:2,-41.5,-50,0,0,-0.00872369 -33372,5504:101:1,-41,-50,0,0,-0.00822717 -33373,5504:100:2,-40.5,-50,0,0,-0.00844628 -33374,5504:100:1,-40,-50,0,0,-0.00850293 -33375,5503:209:2,-39.5,-50,0,0,-0.00877827 -33376,5503:209:1,-39,-50,0,0,-0.00894816 -33377,5503:208:2,-38.5,-50,0,0,-0.00770062 -33378,5503:208:1,-38,-50,0,0,-0.00785825 -33379,5503:207:2,-37.5,-50,0,0,-0.00788274 -33380,5503:207:1,-37,-50,0,0,-0.00788628 -33381,5503:206:2,-36.5,-50,0,0,-0.00795329 -33382,5503:206:1,-36,-50,0,0,-0.00788103 -33383,5503:205:2,-35.5,-50,0,0,-0.00793914 -33384,5503:205:1,-35,-50,0,0,-0.00801553 -33385,5503:104:2,-34.5,-50,0,0,-0.00784598 -33386,5503:104:1,-34,-50,0,0,-0.00745102 -33387,5503:103:2,-33.5,-50,0,0,-0.0072984 -33388,5503:103:1,-33,-50,0,0,-0.00723047 -33389,5503:102:2,-32.5,-50,0,0,-0.00721443 -33390,5503:102:1,-32,-50,0,0,-0.00728538 -33391,5503:101:2,-31.5,-50,0,0,-0.00733911 -33392,5503:101:1,-31,-50,0,0,-0.00733582 -33393,5503:100:2,-30.5,-50,0,0,-0.00722247 -33394,5503:100:1,-30,-50,0,0,-0.00706194 -33395,5502:209:2,-29.5,-50,0,0,-0.00704469 -33396,5502:209:1,-29,-50,0,0,-0.00710764 -33397,5502:208:2,-28.5,-50,0,0,-0.00714252 -33398,5502:208:1,-28,-50,0,0,-0.0070698 -33399,5502:207:2,-27.5,-50,0,0,-0.00683624 -33400,5502:207:1,-27,-50,0,0,-0.00684841 -33401,5502:206:2,-26.5,-50,0,0,-0.00705249 -33402,5502:206:1,-26,-50,0,0,-0.00716321 -33403,5502:205:2,-25.5,-50,0,0,-0.0071712 -33404,5502:205:1,-25,-50,0,0,-0.00729028 -33405,5502:104:2,-24.5,-50,0,0,-0.00777639 -33406,5502:104:1,-24,-50,0,0,-0.00826574 -33407,5502:103:2,-23.5,-50,0,0,-0.0084614 -33408,5502:103:1,-23,-50,0,0,-0.0087004 -33409,5502:102:2,-22.5,-50,0,0,-0.00844255 -33410,5502:102:1,-22,-50,0,0,-0.00775739 -33411,5502:101:2,-21.5,-50,0,0,-0.00766471 -33412,5502:101:1,-21,-50,0,0,-0.00761534 -33413,5502:100:2,-20.5,-50,0,0,-0.00755459 -33414,5502:100:1,-20,-50,0,0,-0.00747927 -33415,5501:209:2,-19.5,-50,0,0,-0.00738828 -33416,5501:209:1,-19,-50,0,0,-0.00734235 -33417,5501:208:2,-18.5,-50,0,0,-0.0074444 -33418,5501:208:1,-18,-50,0,0,-0.00757309 -33419,5501:207:2,-17.5,-50,0,0,-0.00749259 -33420,5501:207:1,-17,-50,0,0,-0.00739812 -33421,5501:206:2,-16.5,-50,0,0,-0.0073784 -33422,5501:206:1,-16,-50,0,0,-0.00736203 -33423,5501:205:2,-15.5,-50,0,0,-0.00725787 -33424,5501:205:1,-15,-50,0,0,-0.00710291 -33425,5501:104:2,-14.5,-50,0,0,-0.00695591 -33426,5501:104:1,-14,-50,0,0,-0.00688968 -33427,5501:103:2,-13.5,-50,0,0,-0.00689427 -33428,5501:103:1,-13,-50,0,0,-0.00694661 -33429,5501:102:2,-12.5,-50,0,0,-0.00701963 -33430,5501:102:1,-12,-50,0,0,-0.00713457 -33431,5501:101:2,-11.5,-50,0,0,-0.00733423 -33432,5501:101:1,-11,-50,0,0,-0.00745933 -33433,5501:100:2,-10.5,-50,0,0,-0.00741628 -33434,5501:100:1,-10,-50,0,0,-0.0072595 -33435,5500:209:2,-9.5,-50,0,0,-0.00706352 -33436,5500:209:1,-9,-50,0,0,-0.00693271 -33437,5500:208:2,-8.5,-50,0,0,-0.0070212 -33438,5500:208:1,-8,-50,0,0,-0.00712508 -33439,5500:207:2,-7.5,-50,0,0,-0.00695435 -33440,5500:207:1,-7,-50,0,0,-0.00689886 -33441,5500:206:2,-6.5,-50,0,0,-0.00693426 -33442,5500:206:1,-6,-50,0,0,-0.0068866 -33443,5500:205:2,-5.5,-50,0,0,-0.0066903 -33444,5500:205:1,-5,-50,0,0,-0.006634 -33445,5500:104:2,-4.5,-50,0,0,-0.00672312 -33446,5500:104:1,-4,-50,0,0,-0.00675914 -33447,5500:103:2,-3.5,-50,0,0,-0.00656066 -33448,5500:103:1,-3,-50,0,0,-0.00642923 -33449,5500:102:2,-2.5,-50,0,0,-0.00649531 -33450,5500:102:1,-2,-50,0,0,-0.00661781 -33451,5500:101:2,-1.5,-50,0,0,-0.00665619 -33452,5500:101:1,-1,-50,0,0,-0.0066031 -33453,5500:100:2,-0.5,-50,0,0,-0.00650833 -33454,3500:100:2,0,-50,0,0,-0.00646795 -33455,3500:100:2,0.5,-50,0,0,-0.0063652 -33456,3500:101:1,1,-50,0,0,-0.00625716 -33457,3500:101:2,1.5,-50,0,0,-0.00624745 -33458,3500:102:1,2,-50,0,0,-0.00617287 -33459,3500:102:2,2.5,-50,0,0,-0.00595456 -33460,3500:103:1,3,-50,0,0,-0.00582237 -33461,3500:103:2,3.5,-50,0,0,-0.00577855 -33462,3500:104:1,4,-50,0,0,-0.00574144 -33463,3500:104:2,4.5,-50,0,0,-0.00571852 -33464,3500:205:1,5,-50,0,0,-0.00566288 -33465,3500:205:2,5.5,-50,0,0,-0.00566918 -33466,3500:206:1,6,-50,0,0,-0.00577342 -33467,3500:206:2,6.5,-50,0,0,-0.00580558 -33468,3500:207:1,7,-50,0,0,-0.00579657 -33469,3500:207:2,7.5,-50,0,0,-0.00583534 -33470,3500:208:1,8,-50,0,0,-0.00579787 -33471,3500:208:2,8.5,-50,0,0,-0.00583534 -33472,3500:209:1,9,-50,0,0,-0.00584572 -33473,3500:209:2,9.5,-50,0,0,-0.00573378 -33474,3501:100:1,10,-50,0,0,-0.0056128 -33475,3501:100:2,10.5,-50,0,0,-0.00549557 -33476,3501:101:1,11,-50,0,0,-0.00545907 -33477,3501:101:2,11.5,-50,0,0,-0.00545057 -33478,3501:102:1,12,-50,0,0,-0.00545663 -33479,3501:102:2,12.5,-50,0,0,-0.00545423 -33480,3501:103:1,13,-50,0,0,-0.00547364 -33481,3501:103:2,13.5,-50,0,0,-0.00545663 -33482,3501:104:1,14,-50,0,0,-0.00546026 -33483,3501:104:2,14.5,-50,0,0,-0.005453 -33484,3501:205:1,15,-50,0,0,-0.00544695 -33485,3501:205:2,15.5,-50,0,0,-0.00544451 -33486,3501:206:1,16,-50,0,0,-0.00544089 -33487,3501:206:2,16.5,-50,0,0,-0.0054385 -33488,3501:207:1,17,-50,0,0,-0.00543485 -33489,3501:207:2,17.5,-50,0,0,-0.00543245 -33490,3501:208:1,18,-50,0,0,-0.00543124 -33491,3501:208:2,18.5,-50,0,0,-0.00542763 -33492,3501:209:1,19,-50,0,0,-0.00544573 -33493,3501:209:2,19.5,-50,0,0,-0.0054785 -33494,3502:100:1,20,-50,0,0,-0.00551513 -33495,3502:100:2,20.5,-50,0,0,-0.00555694 -33496,3502:101:1,21,-50,0,0,-0.00559285 -33497,3502:101:2,21.5,-50,0,0,-0.00562152 -33498,3502:102:1,22,-50,0,0,-0.00558168 -33499,3502:102:2,22.5,-50,0,0,-0.00552985 -33500,3502:103:1,23,-50,0,0,-0.00552741 -33501,3502:103:2,23.5,-50,0,0,-0.00553848 -33502,3502:104:1,24,-50,0,0,-0.0055446 -33503,3502:104:2,24.5,-50,0,0,-0.00556558 -33504,3502:205:1,25,-50,0,0,-0.00565785 -33505,3502:205:2,25.5,-50,0,0,-0.00572869 -33506,3502:206:1,26,-50,0,0,-0.00573254 -33507,3502:206:2,26.5,-50,0,0,-0.00571344 -33508,3502:207:1,27,-50,0,0,-0.0056919 -33509,3502:207:2,27.5,-50,0,0,-0.00568307 -33510,3502:208:1,28,-50,0,0,-0.00554584 -33511,3502:208:2,28.5,-50,0,0,-0.005536 -33512,3502:209:1,29,-50,0,0,-0.0056843 -33513,3502:209:2,29.5,-50,0,0,-0.00581981 -33514,3503:100:1,30,-50,0,0,-0.00587178 -33515,3503:100:2,30.5,-50,0,0,-0.00578243 -33516,3503:101:1,31,-50,0,0,-0.00574526 -33517,3503:101:2,31.5,-50,0,0,-0.00575423 -33518,3503:102:1,32,-50,0,0,-0.00573378 -33519,3503:102:2,32.5,-50,0,0,-0.00569951 -33520,3503:103:1,33,-50,0,0,-0.00562651 -33521,3503:103:2,33.5,-50,0,0,-0.0055139 -33522,3503:104:1,34,-50,0,0,-0.00584441 -33523,3503:104:2,34.5,-50,0,0,-0.00616191 -33524,3503:205:1,35,-50,0,0,-0.00646221 -33525,3503:205:2,35.5,-50,0,0,-0.00632288 -33526,3503:206:1,36,-50,0,0,-0.00612502 -33527,3503:206:2,36.5,-50,0,0,-0.00620865 -33528,3503:207:1,37,-50,0,0,-0.0062391 -33529,3503:207:2,37.5,-50,0,0,-0.00625996 -33530,3503:208:1,38,-50,0,0,-0.00625856 -33531,3503:208:2,38.5,-50,0,0,-0.00622663 -33532,3503:209:1,39,-50,0,0,-0.00621557 -33533,3503:209:2,39.5,-50,0,0,-0.00624189 -33534,3504:100:1,40,-50,0,0,-0.00617287 -33535,3504:100:2,40.5,-50,0,0,-0.00620453 -33536,3504:101:1,41,-50,0,0,-0.00622523 -33537,3504:101:2,41.5,-50,0,0,-0.00619351 -33538,3504:102:1,42,-50,0,0,-0.00625716 -33539,3504:102:2,42.5,-50,0,0,-0.00630326 -33540,3504:103:1,43,-50,0,0,-0.00634967 -33541,3504:103:2,43.5,-50,0,0,-0.00639216 -33542,3504:104:1,44,-50,0,0,-0.00649386 -33543,3504:104:2,44.5,-50,0,0,-0.00683017 -33544,3504:205:1,45,-50,0,0,-0.0074031 -33545,3504:205:2,45.5,-50,0,0,-0.00745599 -33546,3504:206:1,46,-50,0,0,-0.00711396 -33547,3504:206:2,46.5,-50,0,0,-0.00654318 -33548,3504:207:1,47,-50,0,0,-0.00641067 -33549,3504:207:2,47.5,-50,0,0,-0.00644639 -33550,3504:208:1,48,-50,0,0,-0.00619074 -33551,3504:208:2,48.5,-50,0,0,-0.00635389 -33552,3504:209:1,49,-50,0,0,-0.00636382 -33553,3504:209:2,49.5,-50,0,0,-0.00643067 -33554,3505:100:1,50,-50,0,0,-0.00659427 -33555,3505:100:2,50.5,-50,0,0,-0.00654172 -33556,3505:101:1,51,-50,0,0,-0.00669775 -33557,3505:101:2,51.5,-50,0,0,-0.00726921 -33558,3505:102:1,52,-50,0,0,-0.00766637 -33559,3505:102:2,52.5,-50,0,0,-0.00830263 -33560,3505:103:1,53,-50,0,0,-0.00836575 -33561,3505:103:2,53.5,-50,0,0,-0.00821253 -33562,3505:104:1,54,-50,0,0,-0.00780068 -33563,3505:104:2,54.5,-50,0,0,-0.0068317 -33564,3505:205:1,55,-50,0,0,-0.00672463 -33565,3505:205:2,55.5,-50,0,0,-0.00689581 -33566,3505:206:1,56,-50,0,0,-0.00711242 -33567,3505:206:2,56.5,-50,0,0,-0.00720478 -33568,3505:207:1,57,-50,0,0,-0.00724659 -33569,3505:207:2,57.5,-50,0,0,-0.00728701 -33570,3505:208:1,58,-50,0,0,-0.00738497 -33571,3505:208:2,58.5,-50,0,0,-0.00763062 -33572,3505:209:1,59,-50,0,0,-0.00788451 -33573,3505:209:2,59.5,-50,0,0,-0.00805491 -33574,3506:100:1,60,-50,0,0,-0.00796925 -33575,3506:100:2,60.5,-50,0,0,-0.00754116 -33576,3506:101:1,61,-50,0,0,-0.0074643 -33577,3506:101:2,61.5,-50,0,0,-0.00790388 -33578,3506:102:1,62,-50,0,0,-0.00810527 -33579,3506:102:2,62.5,-50,0,0,-0.00803162 -33580,3506:103:1,63,-50,0,0,-0.00810527 -33581,3506:103:2,63.5,-50,0,0,-0.00852383 -33582,3506:104:1,64,-50,0,0,-0.00911126 -33583,3506:104:2,64.5,-50,0,0,-0.00956083 -33584,3506:205:1,65,-50,0,0,-0.00983339 -33585,3506:205:2,65.5,-50,0,0,-0.00978744 -33586,3506:206:1,66,-50,0,0,-0.00915807 -33587,3506:206:2,66.5,-50,0,0,-0.00785996 -33588,3506:207:1,67,-50,0,0,-0.00760686 -33589,3506:207:2,67.5,-50,0,0,-0.00792852 -33590,3506:208:1,68,-50,0,0,-0.00825653 -33591,3506:208:2,68.5,-50,0,0,-0.00819608 -33592,3506:209:1,69,-50,0,0,-0.0081651 -33593,3506:209:2,69.5,-50,0,0,-0.00833787 -33594,3507:100:1,70,-50,0,0,-0.00874121 -33595,3507:100:2,70.5,-50,0,0,-0.00903036 -33596,3507:101:1,71,-50,0,0,-0.00884901 -33597,3507:101:2,71.5,-50,0,0,-0.00848404 -33598,3507:102:1,72,-50,0,0,-0.00816871 -33599,3507:102:2,72.5,-50,0,0,-0.00764256 -33600,3507:103:2,73.5,-50,0,0,-0.00725304 -33601,3507:104:1,74,-50,0,0,-0.00691424 -33602,3507:104:2,74.5,-50,0,0,-0.00676212 -33603,3507:205:1,75,-50,0,0,-0.00726921 -33604,3507:205:2,75.5,-50,0,0,-0.00735873 -33605,3507:206:1,76,-50,0,0,-0.00731627 -33606,3507:206:2,76.5,-50,0,0,-0.00727084 -33607,3507:207:1,77,-50,0,0,-0.00715208 -33608,3507:207:2,77.5,-50,0,0,-0.00709028 -33609,3507:208:1,78,-50,0,0,-0.007095 -33610,3507:208:2,78.5,-50,0,0,-0.00701963 -33611,3507:209:1,79,-50,0,0,-0.00688356 -33612,3507:209:2,79.5,-50,0,0,-0.00670671 -33613,3508:100:1,80,-50,0,0,-0.00645787 -33614,3508:100:2,80.5,-50,0,0,-0.00635531 -33615,3508:101:1,81,-50,0,0,-0.00636947 -33616,3508:101:2,81.5,-50,0,0,-0.00636239 -33617,3508:102:1,82,-50,0,0,-0.00622109 -33618,3508:102:2,82.5,-50,0,0,-0.00607891 -33619,3508:103:1,83,-50,0,0,-0.00593472 -33620,3508:103:2,83.5,-50,0,0,-0.00585874 -33621,3508:104:1,84,-50,0,0,-0.00584833 -33622,3508:104:2,84.5,-50,0,0,-0.00584314 -33623,3508:205:1,85,-50,0,0,-0.00585091 -33624,3508:205:2,85.5,-50,0,0,-0.00596649 -33625,3508:206:1,86,-50,0,0,-0.006504 -33626,3508:206:2,86.5,-50,0,0,-0.00873342 -33627,3508:207:1,87,-50,0,0,-0.0104046 -33628,3508:207:2,87.5,-50,0,0,-0.0107566 -33629,3508:208:1,88,-50,0,0,-0.0107782 -33630,3508:208:2,88.5,-50,0,0,-0.0101795 -33631,3508:209:1,89,-50,0,0,-0.0102159 -33632,3508:209:2,89.5,-50,0,0,-0.0099238 -33633,3509:100:1,90,-50,0,0,-0.00983339 -33634,3509:100:2,90.5,-50,0,0,-0.0099704 -33635,3509:101:1,91,-50,0,0,-0.0100083 -33636,3509:101:2,91.5,-50,0,0,-0.00989505 -33637,3509:102:1,92,-50,0,0,-0.00951195 -33638,3509:102:2,92.5,-50,0,0,-0.00917035 -33639,3509:103:1,93,-50,0,0,-0.00904044 -33640,3509:103:2,93.5,-50,0,0,-0.00901624 -33641,3509:104:1,94,-50,0,0,-0.00913771 -33642,3509:104:2,94.5,-50,0,0,-0.00907476 -33643,3509:205:1,95,-50,0,0,-0.0086559 -33644,3509:205:2,95.5,-50,0,0,-0.00832858 -33645,3509:206:1,96,-50,0,0,-0.00826389 -33646,3509:206:2,96.5,-50,0,0,-0.00833232 -33647,3509:207:1,97,-50,0,0,-0.00861163 -33648,3509:207:2,97.5,-50,0,0,-0.00871396 -33649,3509:208:1,98,-50,0,0,-0.00858671 -33650,3509:208:2,98.5,-50,0,0,-0.00833787 -33651,3509:209:1,99,-50,0,0,-0.00814692 -33652,3509:209:2,99.5,-50,0,0,-0.00820885 -33653,3510:100:1,100,-50,0,0,-0.00873925 -33654,3510:100:2,100.5,-50,0,0,-0.00944215 -33655,3510:101:1,101,-50,0,0,-0.00910513 -33656,3510:101:2,101.5,-50,0,0,-0.00901427 -33657,3510:102:1,102,-50,0,0,-0.00932293 -33658,3510:102:2,102.5,-50,0,0,-0.00972652 -33659,3510:103:1,103,-50,0,0,-0.0101071 -33660,3510:103:2,103.5,-50,0,0,-0.010319 -33661,3510:104:1,104,-50,0,0,-0.0103559 -33662,3510:104:2,104.5,-50,0,0,-0.0104139 -33663,3510:205:1,105,-50,0,0,-0.0105003 -33664,3510:205:2,105.5,-50,0,0,-0.0106872 -33665,3510:206:1,106,-50,0,0,-0.0108434 -33666,3510:206:2,106.5,-50,0,0,-0.0108725 -33667,3510:207:1,107,-50,0,0,-0.0108361 -33668,3510:207:2,107.5,-50,0,0,-0.0109139 -33669,3510:208:1,108,-50,0,0,-0.0110192 -33670,3510:208:2,108.5,-50,0,0,-0.0111106 -33671,3510:209:1,109,-50,0,0,-0.0111654 -33672,3510:209:2,109.5,-50,0,0,-0.0111455 -33673,3511:100:1,110,-50,0,0,-0.0110834 -33674,3511:100:2,110.5,-50,0,0,-0.0112154 -33675,3511:101:1,111,-50,0,0,-0.0115563 -33676,3511:101:2,111.5,-50,0,0,-0.0115382 -33677,3511:102:1,112,-50,0,0,-0.0110933 -33678,3511:102:2,112.5,-50,0,0,-0.0103814 -33679,3511:103:1,113,-50,0,0,-0.0110266 -33680,3511:103:2,113.5,-50,0,0,-0.0122206 -33681,3511:104:1,114,-50,0,0,-0.0122233 -33682,3511:104:2,114.5,-50,0,0,-0.0121579 -33683,3511:205:1,115,-50,0,0,-0.0121091 -33684,3511:205:2,115.5,-50,0,0,-0.0123774 -33685,3511:206:1,116,-50,0,0,-0.0130631 -33686,3511:206:2,116.5,-50,0,0,-0.0136522 -33687,3511:207:1,117,-50,0,0,-0.0136064 -33688,3511:207:2,117.5,-50,0,0,-0.0135002 -33689,3511:208:1,118,-50,0,0,-0.0134821 -33690,3511:208:2,118.5,-50,0,0,-0.0134942 -33691,3511:209:1,119,-50,0,0,-0.0135942 -33692,3511:209:2,119.5,-50,0,0,-0.0133828 -33693,3512:100:1,120,-50,0,0,-0.0124747 -33694,3512:100:2,120.5,-50,0,0,-0.0118546 -33695,3512:101:1,121,-50,0,0,-0.0117228 -33696,3512:101:2,121.5,-50,0,0,-0.0117753 -33697,3512:102:1,122,-50,0,0,-0.012128 -33698,3512:102:2,122.5,-50,0,0,-0.0124301 -33699,3512:103:1,123,-50,0,0,-0.0124301 -33700,3512:103:2,123.5,-50,0,0,-0.0121036 -33701,3512:104:1,124,-50,0,0,-0.0117569 -33702,3512:104:2,124.5,-50,0,0,-0.0116236 -33703,3512:205:1,125,-50,0,0,-0.0117438 -33704,3512:205:2,125.5,-50,0,0,-0.0121335 -33705,3512:206:1,126,-50,0,0,-0.0127912 -33706,3512:206:2,126.5,-50,0,0,-0.0134579 -33707,3512:207:1,127,-50,0,0,-0.0137166 -33708,3512:207:2,127.5,-50,0,0,-0.0137073 -33709,3512:208:1,128,-50,0,0,-0.0135335 -33710,3512:208:2,128.5,-50,0,0,-0.013317 -33711,3512:209:1,129,-50,0,0,-0.0129496 -33712,3512:209:2,129.5,-50,0,0,-0.0127626 -33713,3513:100:1,130,-50,0,0,-0.0128774 -33714,3513:100:2,130.5,-50,0,0,-0.0129004 -33715,3513:101:1,131,-50,0,0,-0.0129583 -33716,3513:101:2,131.5,-50,0,0,-0.0131541 -33717,3513:102:1,132,-50,0,0,-0.0132665 -33718,3513:102:2,132.5,-50,0,0,-0.0132665 -33719,3513:103:1,133,-50,0,0,-0.0132636 -33720,3513:103:2,133.5,-50,0,0,-0.013341 -33721,3513:104:1,134,-50,0,0,-0.0128889 -33722,3513:104:2,134.5,-50,0,0,-0.0124552 -33723,3513:205:1,135,-50,0,0,-0.0122398 -33724,3513:205:2,135.5,-50,0,0,-0.0122452 -33725,3513:206:1,136,-50,0,0,-0.0124273 -33726,3513:206:2,136.5,-50,0,0,-0.0125278 -33727,3513:207:1,137,-50,0,0,-0.0126037 -33728,3513:207:2,137.5,-50,0,0,-0.0127883 -33729,3513:208:1,138,-50,0,0,-0.0128084 -33730,3513:208:2,138.5,-50,0,0,-0.0124747 -33731,3513:209:1,139,-50,0,0,-0.0121688 -33732,3513:209:2,139.5,-50,0,0,-0.0120658 -33733,3514:100:1,140,-50,0,0,-0.012166 -33734,3514:100:2,140.5,-50,0,0,-0.0123552 -33735,3514:101:1,141,-50,0,0,-0.0125811 -33736,3514:101:2,141.5,-50,0,0,-0.0128228 -33737,3514:102:1,142,-50,0,0,-0.0130427 -33738,3514:102:2,142.5,-50,0,0,-0.013219 -33739,3514:103:1,143,-50,0,0,-0.0133559 -33740,3514:103:2,143.5,-50,0,0,-0.0134128 -33741,3514:104:1,144,-50,0,0,-0.0133799 -33742,3514:104:2,144.5,-50,0,0,-0.013326 -33743,3514:205:1,145,-50,0,0,-0.0132813 -33744,3514:205:2,145.5,-50,0,0,-0.013222 -33745,3514:206:1,146,-50,0,0,-0.0130837 -33746,3514:206:2,146.5,-50,0,0,-0.0127769 -33747,3514:207:1,147,-50,0,0,-0.0123884 -33748,3514:207:2,147.5,-50,0,0,-0.0120739 -33749,3514:208:1,148,-50,0,0,-0.0119077 -33750,3514:208:2,148.5,-50,0,0,-0.0116523 -33751,3514:209:1,149,-50,0,0,-0.0105167 -33752,3514:209:2,149.5,-50,0,0,-0.00890638 -33753,3515:100:1,150,-50,0,0,-0.00801194 -33754,3515:100:2,150.5,-50,0,0,-0.00836018 -33755,3515:101:1,151,-50,0,0,-0.00951829 -33756,3515:101:2,151.5,-50,0,0,-0.00984217 -33757,3515:102:1,152,-50,0,0,-0.00945907 -33758,3515:102:2,152.5,-50,0,0,-0.00911126 -33759,3515:103:1,153,-50,0,0,-0.0102456 -33760,3515:103:2,153.5,-50,0,0,-0.013329 -33761,3515:104:1,154,-50,0,0,-0.0162835 -33762,3515:104:2,154.5,-50,0,0,-0.0174032 -33763,3515:205:1,155,-50,0,0,-0.0170356 -33764,3515:205:2,155.5,-50,0,0,-0.0143516 -33765,3515:206:1,156,-50,0,0,-0.0113161 -33766,3515:206:2,156.5,-50,0,0,-0.0107446 -33767,3515:207:1,157,-50,0,0,-0.0111032 -33768,3515:207:2,157.5,-50,0,0,-0.0123001 -33769,3515:208:1,158,-50,0,0,-0.0127512 -33770,3515:208:2,158.5,-50,0,0,-0.01347 -33771,3515:209:1,159,-50,0,0,-0.0142522 -33772,3515:209:2,159.5,-50,0,0,-0.0144484 -33773,3516:100:1,160,-50,0,0,-0.0141124 -33774,3516:100:2,160.5,-50,0,0,-0.0136583 -33775,3516:101:1,161,-50,0,0,-0.0136155 -33776,3516:101:2,161.5,-50,0,0,-0.0161852 -33777,3516:102:1,162,-50,0,0,-0.0176118 -33778,3516:102:2,162.5,-50,0,0,-0.0170509 -33779,3516:103:1,163,-50,0,0,-0.0169135 -33780,3516:103:2,163.5,-50,0,0,-0.0198655 -33781,3516:104:1,164,-50,0,0,-0.0224444 -33782,3516:104:2,164.5,-50,0,0,-0.022546 -33783,3516:205:1,165,-50,0,0,-0.0217262 -33784,3516:205:2,165.5,-50,0,0,-0.0220175 -33785,3516:206:1,166,-50,0,0,-0.0222174 -33786,3516:206:2,166.5,-50,0,0,-0.0215991 -33787,3516:207:1,167,-50,0,0,-0.0212462 -33788,3516:207:2,167.5,-50,0,0,-0.0212222 -33789,3516:208:1,168,-50,0,0,-0.021141 -33790,3516:208:2,168.5,-50,0,0,-0.0210458 -33791,3516:209:1,169,-50,0,0,-0.02106 -33792,3516:209:2,169.5,-50,0,0,-0.0210886 -33793,3517:100:1,170,-50,0,0,-0.0209228 -33794,3517:100:2,170.5,-50,0,0,-0.0206462 -33795,3517:101:1,171,-50,0,0,-0.0204884 -33796,3517:101:2,171.5,-50,0,0,-0.0207582 -33797,3517:102:1,172,-50,0,0,-0.0214678 -33798,3517:102:2,172.5,-50,0,0,-0.0216186 -33799,3517:103:1,173,-50,0,0,-0.0211458 -33800,3517:103:2,173.5,-50,0,0,-0.0209369 -33801,3517:104:1,174,-50,0,0,-0.0209321 -33802,3517:104:2,174.5,-50,0,0,-0.0206694 -33803,3517:205:1,175,-50,0,0,-0.0201132 -33804,3517:205:2,175.5,-50,0,0,-0.0198297 -33805,3517:206:1,176,-50,0,0,-0.0196209 -33806,3517:206:2,176.5,-50,0,0,-0.0192662 -33807,3517:207:1,177,-50,0,0,-0.018702 -33808,3517:207:2,177.5,-50,0,0,-0.0187991 -33809,3517:208:1,178,-50,0,0,-0.0189435 -33810,3517:208:2,178.5,-50,0,0,-0.0189691 -33811,3517:209:1,179,-50,0,0,-0.0194581 -33812,3517:209:2,179.5,-50,0,0,-0.0210791 -33813,3518:100:1,180,-50,0,0,-0.0216968 -33814,5418:390:3,-180,-49.5,0,0,-0.0228331 -33815,5417:499:4,-179.5,-49.5,0,0,-0.0225104 -33816,5417:499:3,-179,-49.5,0,0,-0.0219184 -33817,5417:498:4,-178.5,-49.5,0,0,-0.0189862 -33818,5417:498:3,-178,-49.5,0,0,-0.0176514 -33819,5417:497:4,-177.5,-49.5,0,0,-0.0181588 -33820,5417:497:3,-177,-49.5,0,0,-0.0188967 -33821,5417:496:4,-176.5,-49.5,0,0,-0.0197807 -33822,5417:496:3,-176,-49.5,0,0,-0.0212414 -33823,5417:495:4,-175.5,-49.5,0,0,-0.0220275 -33824,5417:495:3,-175,-49.5,0,0,-0.0220774 -33825,5417:394:4,-174.5,-49.5,0,0,-0.021795 -33826,5417:394:3,-174,-49.5,0,0,-0.0213375 -33827,5417:393:4,-173.5,-49.5,0,0,-0.0206928 -33828,5417:393:3,-173,-49.5,0,0,-0.0199867 -33829,5417:392:4,-172.5,-49.5,0,0,-0.0195327 -33830,5417:392:3,-172,-49.5,0,0,-0.01959 -33831,5417:391:4,-171.5,-49.5,0,0,-0.0201178 -33832,5417:391:3,-171,-49.5,0,0,-0.0207864 -33833,5417:390:4,-170.5,-49.5,0,0,-0.0211171 -33834,5417:390:3,-170,-49.5,0,0,-0.0207442 -33835,5416:499:4,-169.5,-49.5,0,0,-0.0196341 -33836,5416:499:3,-169,-49.5,0,0,-0.0183435 -33837,5416:498:4,-168.5,-49.5,0,0,-0.017411 -33838,5416:498:3,-168,-49.5,0,0,-0.017024 -33839,5416:497:4,-167.5,-49.5,0,0,-0.0172204 -33840,5416:497:3,-167,-49.5,0,0,-0.0180164 -33841,5416:496:4,-166.5,-49.5,0,0,-0.0195987 -33842,5416:496:3,-166,-49.5,0,0,-0.0203 -33843,5416:495:4,-165.5,-49.5,0,0,-0.0203412 -33844,5416:495:3,-165,-49.5,0,0,-0.0198789 -33845,5416:394:4,-164.5,-49.5,0,0,-0.0192401 -33846,5416:394:3,-164,-49.5,0,0,-0.0186558 -33847,5416:393:4,-163.5,-49.5,0,0,-0.0182161 -33848,5416:393:3,-163,-49.5,0,0,-0.0178993 -33849,5416:392:4,-162.5,-49.5,0,0,-0.0176474 -33850,5416:392:3,-162,-49.5,0,0,-0.0174934 -33851,5416:391:4,-161.5,-49.5,0,0,-0.0175406 -33852,5416:391:3,-161,-49.5,0,0,-0.0176594 -33853,5416:390:4,-160.5,-49.5,0,0,-0.0176872 -33854,5416:390:3,-160,-49.5,0,0,-0.0176594 -33855,5415:499:4,-159.5,-49.5,0,0,-0.0176991 -33856,5415:499:3,-159,-49.5,0,0,-0.0179799 -33857,5415:498:4,-158.5,-49.5,0,0,-0.018618 -33858,5415:498:3,-158,-49.5,0,0,-0.0196385 -33859,5415:497:4,-157.5,-49.5,0,0,-0.0207817 -33860,5415:497:3,-157,-49.5,0,0,-0.0214872 -33861,5415:496:4,-156.5,-49.5,0,0,-0.0211077 -33862,5415:496:3,-156,-49.5,0,0,-0.0196872 -33863,5415:495:4,-155.5,-49.5,0,0,-0.0176912 -33864,5415:495:3,-155,-49.5,0,0,-0.0170509 -33865,5415:394:4,-154.5,-49.5,0,0,-0.0161778 -33866,5415:394:3,-154,-49.5,0,0,-0.01544 -33867,5415:393:4,-153.5,-49.5,0,0,-0.0155199 -33868,5415:393:3,-153,-49.5,0,0,-0.015145 -33869,5415:392:4,-152.5,-49.5,0,0,-0.0140399 -33870,5415:392:3,-152,-49.5,0,0,-0.0123084 -33871,5415:391:4,-151.5,-49.5,0,0,-0.0112933 -33872,5415:391:3,-151,-49.5,0,0,-0.0111604 -33873,5415:390:4,-150.5,-49.5,0,0,-0.0108604 -33874,5415:390:3,-150,-49.5,0,0,-0.0114765 -33875,5414:499:4,-149.5,-49.5,0,0,-0.0116366 -33876,5414:499:3,-149,-49.5,0,0,-0.011133 -33877,5414:498:4,-148.5,-49.5,0,0,-0.0107782 -33878,5414:498:3,-148,-49.5,0,0,-0.0104535 -33879,5414:497:4,-147.5,-49.5,0,0,-0.0113161 -33880,5414:497:3,-147,-49.5,0,0,-0.0123968 -33881,5414:496:4,-146.5,-49.5,0,0,-0.0122316 -33882,5414:496:3,-146,-49.5,0,0,-0.0123166 -33883,5414:495:4,-145.5,-49.5,0,0,-0.0139271 -33884,5414:495:3,-145,-49.5,0,0,-0.0171971 -33885,5414:394:4,-144.5,-49.5,0,0,-0.0177749 -33886,5414:394:3,-144,-49.5,0,0,-0.017719 -33887,5414:393:4,-143.5,-49.5,0,0,-0.0174423 -33888,5414:393:3,-143,-49.5,0,0,-0.017739 -33889,5414:392:4,-142.5,-49.5,0,0,-0.0196829 -33890,5414:392:3,-142,-49.5,0,0,-0.0220724 -33891,5414:391:4,-141.5,-49.5,0,0,-0.0242487 -33892,5414:391:3,-141,-49.5,0,0,-0.0263091 -33893,5414:390:4,-140.5,-49.5,0,0,-0.0284715 -33894,5414:390:3,-140,-49.5,0,0,-0.0244139 -33895,5413:499:4,-139.5,-49.5,0,0,-0.0227198 -33896,5413:499:3,-139,-49.5,0,0,-0.02303 -33897,5413:498:4,-138.5,-49.5,0,0,-0.0228796 -33898,5413:498:3,-138,-49.5,0,0,-0.0216089 -33899,5413:497:4,-137.5,-49.5,0,0,-0.0215456 -33900,5413:497:3,-137,-49.5,0,0,-0.0220175 -33901,5413:496:4,-136.5,-49.5,0,0,-0.0237708 -33902,5413:496:3,-136,-49.5,0,0,-0.0238623 -33903,5413:495:4,-135.5,-49.5,0,0,-0.0239922 -33904,5413:495:3,-135,-49.5,0,0,-0.0247142 -33905,5413:394:4,-134.5,-49.5,0,0,-0.0259831 -33906,5413:394:3,-134,-49.5,0,0,-0.0278258 -33907,5413:393:4,-133.5,-49.5,0,0,-0.0282911 -33908,5413:393:3,-133,-49.5,0,0,-0.0270043 -33909,5413:392:4,-132.5,-49.5,0,0,-0.0249729 -33910,5413:392:3,-132,-49.5,0,0,-0.0227507 -33911,5413:391:4,-131.5,-49.5,0,0,-0.0205671 -33912,5413:391:3,-131,-49.5,0,0,-0.0199148 -33913,5413:390:4,-130.5,-49.5,0,0,-0.0208004 -33914,5413:390:3,-130,-49.5,0,0,-0.0221272 -33915,5412:499:4,-129.5,-49.5,0,0,-0.0225562 -33916,5412:499:3,-129,-49.5,0,0,-0.0230613 -33917,5412:498:4,-128.5,-49.5,0,0,-0.023701 -33918,5412:498:3,-128,-49.5,0,0,-0.0242323 -33919,5412:497:4,-127.5,-49.5,0,0,-0.0272754 -33920,5412:497:3,-127,-49.5,0,0,-0.0318378 -33921,5412:496:4,-126.5,-49.5,0,0,-0.0361663 -33922,5412:496:3,-126,-49.5,0,0,-0.0368856 -33923,5412:495:4,-125.5,-49.5,0,0,-0.036566 -33924,5412:495:3,-125,-49.5,0,0,-0.0357793 -33925,5412:394:4,-124.5,-49.5,0,0,-0.0340706 -33926,5412:394:3,-124,-49.5,0,0,-0.030503 -33927,5412:393:4,-123.5,-49.5,0,0,-0.0257544 -33928,5412:393:3,-123,-49.5,0,0,-0.0218788 -33929,5412:392:4,-122.5,-49.5,0,0,-0.0196209 -33930,5412:392:3,-122,-49.5,0,0,-0.0185845 -33931,5412:391:4,-121.5,-49.5,0,0,-0.0190504 -33932,5412:391:3,-121,-49.5,0,0,-0.0197228 -33933,5412:390:4,-120.5,-49.5,0,0,-0.0203779 -33934,5412:390:3,-120,-49.5,0,0,-0.0215019 -33935,5411:499:4,-119.5,-49.5,0,0,-0.0220027 -33936,5411:499:3,-119,-49.5,0,0,-0.0215942 -33937,5411:498:4,-118.5,-49.5,0,0,-0.0219778 -33938,5411:498:3,-118,-49.5,0,0,-0.0219036 -33939,5411:497:4,-117.5,-49.5,0,0,-0.0226532 -33940,5411:497:3,-117,-49.5,0,0,-0.0250465 -33941,5411:496:4,-116.5,-49.5,0,0,-0.0240303 -33942,5411:496:3,-116,-49.5,0,0,-0.0240683 -33943,5411:495:4,-115.5,-49.5,0,0,-0.0236206 -33944,5411:495:3,-115,-49.5,0,0,-0.0223584 -33945,5411:394:4,-114.5,-49.5,0,0,-0.0208145 -33946,5411:394:3,-114,-49.5,0,0,-0.0205858 -33947,5411:393:4,-113.5,-49.5,0,0,-0.0208192 -33948,5411:393:3,-113,-49.5,0,0,-0.0209464 -33949,5411:392:4,-112.5,-49.5,0,0,-0.02106 -33950,5411:392:3,-112,-49.5,0,0,-0.0212031 -33951,5411:391:4,-111.5,-49.5,0,0,-0.0213278 -33952,5411:391:3,-111,-49.5,0,0,-0.0217508 -33953,5411:390:4,-110.5,-49.5,0,0,-0.022323 -33954,5411:390:3,-110,-49.5,0,0,-0.0228848 -33955,5410:499:4,-109.5,-49.5,0,0,-0.0236152 -33956,5410:499:3,-109,-49.5,0,0,-0.0241447 -33957,5410:498:4,-108.5,-49.5,0,0,-0.0245413 -33958,5410:498:3,-108,-49.5,0,0,-0.0246918 -33959,5410:497:4,-107.5,-49.5,0,0,-0.0246081 -33960,5410:497:3,-107,-49.5,0,0,-0.0243037 -33961,5410:496:4,-106.5,-49.5,0,0,-0.0238192 -33962,5410:496:3,-106,-49.5,0,0,-0.023276 -33963,5410:495:4,-105.5,-49.5,0,0,-0.0229884 -33964,5410:495:3,-105,-49.5,0,0,-0.0233445 -33965,5410:394:4,-104.5,-49.5,0,0,-0.0241392 -33966,5410:394:3,-104,-49.5,0,0,-0.0247982 -33967,5410:393:4,-103.5,-49.5,0,0,-0.0248938 -33968,5410:393:3,-103,-49.5,0,0,-0.0244139 -33969,5410:392:4,-102.5,-49.5,0,0,-0.0227867 -33970,5410:392:3,-102,-49.5,0,0,-0.0217803 -33971,5410:391:4,-101.5,-49.5,0,0,-0.0224039 -33972,5410:391:3,-101,-49.5,0,0,-0.0226941 -33973,5410:390:4,-100.5,-49.5,0,0,-0.0226532 -33974,5410:390:3,-100,-49.5,0,0,-0.022648 -33975,5409:499:4,-99.5,-49.5,0,0,-0.0224596 -33976,5409:499:3,-99,-49.5,0,0,-0.0220325 -33977,5409:498:4,-98.5,-49.5,0,0,-0.0215213 -33978,5409:498:3,-98,-49.5,0,0,-0.0210031 -33979,5409:497:4,-97.5,-49.5,0,0,-0.0206136 -33980,5409:497:3,-97,-49.5,0,0,-0.0203366 -33981,5409:496:4,-96.5,-49.5,0,0,-0.0201768 -33982,5409:496:3,-96,-49.5,0,0,-0.0203826 -33983,5409:495:4,-95.5,-49.5,0,0,-0.0206928 -33984,5409:495:3,-95,-49.5,0,0,-0.0212462 -33985,5409:394:4,-94.5,-49.5,0,0,-0.0217754 -33986,5409:394:3,-94,-49.5,0,0,-0.0222524 -33987,5409:393:4,-93.5,-49.5,0,0,-0.0219728 -33988,5409:393:3,-93,-49.5,0,0,-0.0213134 -33989,5409:392:4,-92.5,-49.5,0,0,-0.020852 -33990,5409:392:3,-92,-49.5,0,0,-0.020918 -33991,5409:391:4,-91.5,-49.5,0,0,-0.0216186 -33992,5409:391:3,-91,-49.5,0,0,-0.0222123 -33993,5409:390:4,-90.5,-49.5,0,0,-0.0222275 -33994,5409:390:3,-90,-49.5,0,0,-0.0220027 -33995,5408:499:4,-89.5,-49.5,0,0,-0.021565 -33996,5408:499:3,-89,-49.5,0,0,-0.0212222 -33997,5408:498:4,-88.5,-49.5,0,0,-0.0210458 -33998,5408:498:3,-88,-49.5,0,0,-0.0210838 -33999,5408:497:4,-87.5,-49.5,0,0,-0.0212797 -34000,5408:497:3,-87,-49.5,0,0,-0.0214727 -34001,5408:496:4,-86.5,-49.5,0,0,-0.0215456 -34002,5408:496:3,-86,-49.5,0,0,-0.0215115 -34003,5408:495:4,-85.5,-49.5,0,0,-0.0218 -34004,5408:495:3,-85,-49.5,0,0,-0.0225562 -34005,5408:394:4,-84.5,-49.5,0,0,-0.0230247 -34006,5408:394:3,-84,-49.5,0,0,-0.0227352 -34007,5408:393:4,-83.5,-49.5,0,0,-0.0221322 -34008,5408:393:3,-83,-49.5,0,0,-0.0216137 -34009,5408:392:4,-82.5,-49.5,0,0,-0.0214825 -34010,5408:392:3,-82,-49.5,0,0,-0.0218394 -34011,5408:391:4,-81.5,-49.5,0,0,-0.0223735 -34012,5408:391:3,-81,-49.5,0,0,-0.0227147 -34013,5408:390:4,-80.5,-49.5,0,0,-0.0226072 -34014,5408:390:3,-80,-49.5,0,0,-0.0222123 -34015,5407:499:4,-79.5,-49.5,0,0,-0.0218 -34016,5407:499:3,-79,-49.5,0,0,-0.0214825 -34017,5407:498:4,-78.5,-49.5,0,0,-0.0214389 -34018,5407:498:3,-78,-49.5,0,0,-0.0217851 -34019,5407:497:4,-77.5,-49.5,0,0,-0.022323 -34020,5407:497:3,-77,-49.5,0,0,-0.0229003 -34021,5407:496:4,-76.5,-49.5,0,0,-0.0232182 -34022,5407:496:3,-76,-49.5,0,0,-0.0232235 -34023,5407:495:4,-75.5,-49.5,0,0,-0.0230666 -34024,5407:495:3,-75,-49.5,0,0,-0.0228744 -34025,5407:394:4,-74.5,-49.5,0,0,-0.022725 -34026,5407:394:3,-74,-49.5,0,0,-0.0228279 -34027,5407:393:4,-73.5,-49.5,0,0,-0.023562 -34028,5407:393:3,-73,-49.5,0,0,-0.0248826 -34029,5407:392:4,-72.5,-49.5,0,0,-0.0253549 -34030,5407:392:3,-72,-49.5,0,0,-0.0252917 -34031,5407:391:4,-71.5,-49.5,0,0,-0.0249334 -34032,5407:391:3,-71,-49.5,0,0,-0.0243257 -34033,5407:390:4,-70.5,-49.5,0,0,-0.0240356 -34034,5407:390:3,-70,-49.5,0,0,-0.0237116 -34035,5406:499:4,-69.5,-49.5,0,0,-0.0229417 -34036,5406:499:3,-69,-49.5,0,0,-0.0215407 -34037,5406:498:4,-68.5,-49.5,0,0,-0.020332 -34038,5406:498:3,-68,-49.5,0,0,-0.0177509 -34039,5406:497:4,-67.5,-49.5,0,0,-0.0163164 -34040,5406:497:3,-67,-49.5,0,0,-0.014484 -34041,5406:496:4,-66.5,-49.5,0,0,-0.0141282 -34042,5406:496:3,-66,-49.5,0,0,-0.0144419 -34043,5406:495:4,-65.5,-49.5,0,0,-0.0146374 -34044,5406:495:3,-65,-49.5,0,0,-0.0155234 -34045,5406:394:4,-64.5,-49.5,0,0,-0.0168945 -34046,5406:394:3,-64,-49.5,0,0,-0.0181139 -34047,5406:393:4,-63.5,-49.5,0,0,-0.0183972 -34048,5406:393:3,-63,-49.5,0,0,-0.0182201 -34049,5406:392:4,-62.5,-49.5,0,0,-0.0182242 -34050,5406:392:3,-62,-49.5,0,0,-0.017739 -34051,5406:391:4,-61.5,-49.5,0,0,-0.0169097 -34052,5406:391:3,-61,-49.5,0,0,-0.0158259 -34053,5406:390:4,-60.5,-49.5,0,0,-0.014249 -34054,5406:390:3,-60,-49.5,0,0,-0.011913 -34055,5405:499:4,-59.5,-49.5,0,0,-0.0108144 -34056,5405:499:3,-59,-49.5,0,0,-0.0113338 -34057,5405:498:4,-58.5,-49.5,0,0,-0.0112405 -34058,5405:498:3,-58,-49.5,0,0,-0.0106657 -34059,5405:497:4,-57.5,-49.5,0,0,-0.00998154 -34060,5405:497:3,-57,-49.5,0,0,-0.0108847 -34061,5405:496:4,-56.5,-49.5,0,0,-0.0110241 -34062,5405:496:3,-56,-49.5,0,0,-0.00954808 -34063,5405:495:4,-55.5,-49.5,0,0,-0.00898818 -34064,5405:495:3,-55,-49.5,0,0,-0.00919697 -34065,5405:394:4,-54.5,-49.5,0,0,-0.00982463 -34066,5405:394:3,-54,-49.5,0,0,-0.010892 -34067,5405:393:4,-53.5,-49.5,0,0,-0.0115718 -34068,5405:393:3,-53,-49.5,0,0,-0.0115899 -34069,5405:392:4,-52.5,-49.5,0,0,-0.0102685 -34070,5405:392:3,-52,-49.5,0,0,-0.00899216 -34071,5405:391:4,-51.5,-49.5,0,0,-0.00879787 -34072,5405:391:3,-51,-49.5,0,0,-0.00914381 -34073,5405:390:4,-50.5,-49.5,0,0,-0.00893423 -34074,5405:390:3,-50,-49.5,0,0,-0.00939177 -34075,5404:499:4,-49.5,-49.5,0,0,-0.00974601 -34076,5404:499:3,-49,-49.5,0,0,-0.0094844 -34077,5404:498:4,-48.5,-49.5,0,0,-0.00855047 -34078,5404:498:3,-48,-49.5,0,0,-0.0102022 -34079,5404:497:4,-47.5,-49.5,0,0,-0.0103351 -34080,5404:497:3,-47,-49.5,0,0,-0.00999712 -34081,5404:496:4,-46.5,-49.5,0,0,-0.00981807 -34082,5404:496:3,-46,-49.5,0,0,-0.0099238 -34083,5404:495:4,-45.5,-49.5,0,0,-0.00979184 -34084,5404:495:3,-45,-49.5,0,0,-0.00907476 -34085,5404:394:4,-44.5,-49.5,0,0,-0.00844255 -34086,5404:394:3,-44,-49.5,0,0,-0.00854094 -34087,5404:393:4,-43.5,-49.5,0,0,-0.00865973 -34088,5404:393:3,-43,-49.5,0,0,-0.00883914 -34089,5404:392:4,-42.5,-49.5,0,0,-0.00909906 -34090,5404:392:3,-42,-49.5,0,0,-0.00936669 -34091,5404:391:4,-41.5,-49.5,0,0,-0.00916424 -34092,5404:391:3,-41,-49.5,0,0,-0.00867712 -34093,5404:390:4,-40.5,-49.5,0,0,-0.00843503 -34094,5404:390:3,-40,-49.5,0,0,-0.00858479 -34095,5403:499:4,-39.5,-49.5,0,0,-0.0088826 -34096,5403:499:3,-39,-49.5,0,0,-0.00909702 -34097,5403:498:4,-38.5,-49.5,0,0,-0.0090586 -34098,5403:498:3,-38,-49.5,0,0,-0.0086193 -34099,5403:497:4,-37.5,-49.5,0,0,-0.00829896 -34100,5403:497:3,-37,-49.5,0,0,-0.00802267 -34101,5403:496:4,-36.5,-49.5,0,0,-0.00806926 -34102,5403:496:3,-36,-49.5,0,0,-0.00815418 -34103,5403:495:4,-35.5,-49.5,0,0,-0.00822902 -34104,5403:495:3,-35,-49.5,0,0,-0.00822348 -34105,5403:394:4,-34.5,-49.5,0,0,-0.00808008 -34106,5403:394:3,-34,-49.5,0,0,-0.00761534 -34107,5403:393:4,-33.5,-49.5,0,0,-0.00733582 -34108,5403:393:3,-33,-49.5,0,0,-0.00729028 -34109,5403:392:4,-32.5,-49.5,0,0,-0.00733423 -34110,5403:392:3,-32,-49.5,0,0,-0.00742289 -34111,5403:391:4,-31.5,-49.5,0,0,-0.00752268 -34112,5403:391:3,-31,-49.5,0,0,-0.00759168 -34113,5403:390:4,-30.5,-49.5,0,0,-0.0075344 -34114,5403:390:3,-30,-49.5,0,0,-0.00731304 -34115,5402:499:4,-29.5,-49.5,0,0,-0.00719515 -34116,5402:499:3,-29,-49.5,0,0,-0.00722247 -34117,5402:498:4,-28.5,-49.5,0,0,-0.00728701 -34118,5402:498:3,-28,-49.5,0,0,-0.00725629 -34119,5402:497:4,-27.5,-49.5,0,0,-0.00705096 -34120,5402:497:3,-27,-49.5,0,0,-0.00694043 -34121,5402:496:4,-26.5,-49.5,0,0,-0.00719197 -34122,5402:496:3,-26,-49.5,0,0,-0.00742622 -34123,5402:495:4,-25.5,-49.5,0,0,-0.00749259 -34124,5402:495:3,-25,-49.5,0,0,-0.0076018 -34125,5402:394:4,-24.5,-49.5,0,0,-0.00783202 -34126,5402:394:3,-24,-49.5,0,0,-0.00809987 -34127,5402:393:4,-23.5,-49.5,0,0,-0.00807108 -34128,5402:393:3,-23,-49.5,0,0,-0.0083453 -34129,5402:392:4,-22.5,-49.5,0,0,-0.00871005 -34130,5402:392:3,-22,-49.5,0,0,-0.00855617 -34131,5402:391:4,-21.5,-49.5,0,0,-0.00804413 -34132,5402:391:3,-21,-49.5,0,0,-0.00789153 -34133,5402:390:4,-20.5,-49.5,0,0,-0.00811795 -34134,5402:390:3,-20,-49.5,0,0,-0.00830082 -34135,5401:499:4,-19.5,-49.5,0,0,-0.00814692 -34136,5401:499:3,-19,-49.5,0,0,-0.00786696 -34137,5401:498:4,-18.5,-49.5,0,0,-0.00798877 -34138,5401:498:3,-18,-49.5,0,0,-0.00816327 -34139,5401:497:4,-17.5,-49.5,0,0,-0.00792679 -34140,5401:497:3,-17,-49.5,0,0,-0.00775565 -34141,5401:496:4,-16.5,-49.5,0,0,-0.00774701 -34142,5401:496:3,-16,-49.5,0,0,-0.00770229 -34143,5401:495:4,-15.5,-49.5,0,0,-0.00741795 -34144,5401:495:3,-15,-49.5,0,0,-0.00723047 -34145,5401:394:4,-14.5,-49.5,0,0,-0.00710764 -34146,5401:394:3,-14,-49.5,0,0,-0.00705724 -34147,5401:393:4,-13.5,-49.5,0,0,-0.00710132 -34148,5401:393:3,-13,-49.5,0,0,-0.00724015 -34149,5401:392:4,-12.5,-49.5,0,0,-0.00743444 -34150,5401:392:3,-12,-49.5,0,0,-0.00768176 -34151,5401:391:4,-11.5,-49.5,0,0,-0.00795859 -34152,5401:391:3,-11,-49.5,0,0,-0.00789507 -34153,5401:390:4,-10.5,-49.5,0,0,-0.00755459 -34154,5401:390:3,-10,-49.5,0,0,-0.00737184 -34155,5400:499:4,-9.5,-49.5,0,0,-0.00725787 -34156,5400:499:3,-9,-49.5,0,0,-0.00722566 -34157,5400:498:4,-8.5,-49.5,0,0,-0.00725629 -34158,5400:498:3,-8,-49.5,0,0,-0.00728701 -34159,5400:497:4,-7.5,-49.5,0,0,-0.00728538 -34160,5400:497:3,-7,-49.5,0,0,-0.00727242 -34161,5400:496:4,-6.5,-49.5,0,0,-0.00726921 -34162,5400:496:3,-6,-49.5,0,0,-0.00722085 -34163,5400:495:4,-5.5,-49.5,0,0,-0.00711242 -34164,5400:495:3,-5,-49.5,0,0,-0.00695898 -34165,5400:394:4,-4.5,-49.5,0,0,-0.00688202 -34166,5400:394:3,-4,-49.5,0,0,-0.00692039 -34167,5400:393:4,-3.5,-49.5,0,0,-0.00693116 -34168,5400:393:3,-3,-49.5,0,0,-0.00691884 -34169,5400:392:4,-2.5,-49.5,0,0,-0.00686671 -34170,5400:392:3,-2,-49.5,0,0,-0.00679377 -34171,5400:391:4,-1.5,-49.5,0,0,-0.00679078 -34172,5400:391:3,-1,-49.5,0,0,-0.00680439 -34173,5400:390:4,-0.5,-49.5,0,0,-0.00681197 -34174,3400:390:4,0,-49.5,0,0,-0.00681044 -34175,3400:390:4,0.5,-49.5,0,0,-0.00678926 -34176,3400:391:3,1,-49.5,0,0,-0.0067366 -34177,3400:391:4,1.5,-49.5,0,0,-0.00663252 -34178,3400:392:3,2,-49.5,0,0,-0.00651704 -34179,3400:392:4,2.5,-49.5,0,0,-0.0064021 -34180,3400:393:3,3,-49.5,0,0,-0.0063285 -34181,3400:393:4,3.5,-49.5,0,0,-0.00632713 -34182,3400:394:3,4,-49.5,0,0,-0.00637371 -34183,3400:394:4,4.5,-49.5,0,0,-0.00637938 -34184,3400:495:3,5,-49.5,0,0,-0.00633977 -34185,3400:495:4,5.5,-49.5,0,0,-0.00630746 -34186,3400:496:3,6,-49.5,0,0,-0.00625996 -34187,3400:496:4,6.5,-49.5,0,0,-0.00618251 -34188,3400:497:3,7,-49.5,0,0,-0.00608163 -34189,3400:497:4,7.5,-49.5,0,0,-0.0060372 -34190,3400:498:3,8,-49.5,0,0,-0.00603986 -34191,3400:498:4,8.5,-49.5,0,0,-0.00604388 -34192,3400:499:3,9,-49.5,0,0,-0.00605196 -34193,3400:499:4,9.5,-49.5,0,0,-0.00604388 -34194,3401:390:3,10,-49.5,0,0,-0.00605463 -34195,3401:390:4,10.5,-49.5,0,0,-0.00606137 -34196,3401:391:3,11,-49.5,0,0,-0.00591367 -34197,3401:391:4,11.5,-49.5,0,0,-0.00577601 -34198,3401:392:3,12,-49.5,0,0,-0.00579657 -34199,3401:392:4,12.5,-49.5,0,0,-0.00579527 -34200,3401:393:3,13,-49.5,0,0,-0.00568307 -34201,3401:393:4,13.5,-49.5,0,0,-0.00558789 -34202,3401:394:3,14,-49.5,0,0,-0.00550777 -34203,3401:394:4,14.5,-49.5,0,0,-0.00547727 -34204,3401:495:3,15,-49.5,0,0,-0.00547119 -34205,3401:495:4,15.5,-49.5,0,0,-0.00549312 -34206,3401:496:3,16,-49.5,0,0,-0.00550288 -34207,3401:496:4,16.5,-49.5,0,0,-0.00548824 -34208,3401:497:3,17,-49.5,0,0,-0.00546878 -34209,3401:497:4,17.5,-49.5,0,0,-0.00546878 -34210,3401:498:3,18,-49.5,0,0,-0.00547 -34211,3401:498:4,18.5,-49.5,0,0,-0.00547241 -34212,3401:499:3,19,-49.5,0,0,-0.005498 -34213,3401:499:4,19.5,-49.5,0,0,-0.00556313 -34214,3402:390:3,20,-49.5,0,0,-0.00562278 -34215,3402:390:4,20.5,-49.5,0,0,-0.00564654 -34216,3402:391:3,21,-49.5,0,0,-0.00565785 -34217,3402:391:4,21.5,-49.5,0,0,-0.00566038 -34218,3402:392:3,22,-49.5,0,0,-0.00566038 -34219,3402:392:4,22.5,-49.5,0,0,-0.00564907 -34220,3402:393:3,23,-49.5,0,0,-0.00562526 -34221,3402:393:4,23.5,-49.5,0,0,-0.00560158 -34222,3402:394:3,24,-49.5,0,0,-0.00561653 -34223,3402:394:4,24.5,-49.5,0,0,-0.00570965 -34224,3402:495:3,25,-49.5,0,0,-0.00578114 -34225,3402:495:4,25.5,-49.5,0,0,-0.00578628 -34226,3402:496:3,26,-49.5,0,0,-0.00580688 -34227,3402:496:4,26.5,-49.5,0,0,-0.00588482 -34228,3402:497:3,27,-49.5,0,0,-0.00595852 -34229,3402:497:4,27.5,-49.5,0,0,-0.00585611 -34230,3402:498:3,28,-49.5,0,0,-0.00572997 -34231,3402:498:4,28.5,-49.5,0,0,-0.00573378 -34232,3402:499:3,29,-49.5,0,0,-0.00595719 -34233,3402:499:4,29.5,-49.5,0,0,-0.00630326 -34234,3403:390:3,30,-49.5,0,0,-0.00635954 -34235,3403:390:4,30.5,-49.5,0,0,-0.00625856 -34236,3403:391:3,31,-49.5,0,0,-0.00606273 -34237,3403:391:4,31.5,-49.5,0,0,-0.00596119 -34238,3403:392:3,32,-49.5,0,0,-0.00594399 -34239,3403:392:4,32.5,-49.5,0,0,-0.00585222 -34240,3403:393:3,33,-49.5,0,0,-0.00578628 -34241,3403:393:4,33.5,-49.5,0,0,-0.00583795 -34242,3403:394:3,34,-49.5,0,0,-0.00599041 -34243,3403:394:4,34.5,-49.5,0,0,-0.0063243 -34244,3403:495:3,35,-49.5,0,0,-0.00663697 -34245,3403:495:4,35.5,-49.5,0,0,-0.0069035 -34246,3403:496:3,36,-49.5,0,0,-0.00695742 -34247,3403:496:4,36.5,-49.5,0,0,-0.00650687 -34248,3403:497:3,37,-49.5,0,0,-0.00634545 -34249,3403:497:4,37.5,-49.5,0,0,-0.00628366 -34250,3403:498:3,38,-49.5,0,0,-0.00624465 -34251,3403:498:4,38.5,-49.5,0,0,-0.00622941 -34252,3403:499:3,39,-49.5,0,0,-0.00624465 -34253,3403:499:4,39.5,-49.5,0,0,-0.00639216 -34254,3404:390:3,40,-49.5,0,0,-0.00640354 -34255,3404:390:4,40.5,-49.5,0,0,-0.00649822 -34256,3404:391:3,41,-49.5,0,0,-0.00664581 -34257,3404:391:4,41.5,-49.5,0,0,-0.00644784 -34258,3404:392:3,42,-49.5,0,0,-0.00624884 -34259,3404:392:4,42.5,-49.5,0,0,-0.0062405 -34260,3404:393:3,43,-49.5,0,0,-0.0062391 -34261,3404:393:4,43.5,-49.5,0,0,-0.00631448 -34262,3404:394:3,44,-49.5,0,0,-0.00651845 -34263,3404:394:4,44.5,-49.5,0,0,-0.00729999 -34264,3404:495:3,45,-49.5,0,0,-0.007521 -34265,3404:495:4,45.5,-49.5,0,0,-0.00750931 -34266,3404:496:3,46,-49.5,0,0,-0.00747759 -34267,3404:496:4,46.5,-49.5,0,0,-0.00716005 -34268,3404:497:3,47,-49.5,0,0,-0.00695898 -34269,3404:497:4,47.5,-49.5,0,0,-0.00712823 -34270,3404:498:3,48,-49.5,0,0,-0.00765446 -34271,3404:498:4,48.5,-49.5,0,0,-0.00790211 -34272,3404:499:3,49,-49.5,0,0,-0.00772121 -34273,3404:499:4,49.5,-49.5,0,0,-0.00778506 -34274,3405:390:3,50,-49.5,0,0,-0.00777296 -34275,3405:390:4,50.5,-49.5,0,0,-0.0070337 -34276,3405:391:3,51,-49.5,0,0,-0.00721761 -34277,3405:391:4,51.5,-49.5,0,0,-0.00749259 -34278,3405:392:3,52,-49.5,0,0,-0.00775223 -34279,3405:392:4,52.5,-49.5,0,0,-0.00854664 -34280,3405:393:3,53,-49.5,0,0,-0.00828048 -34281,3405:393:4,53.5,-49.5,0,0,-0.00820154 -34282,3405:394:3,54,-49.5,0,0,-0.008218 -34283,3405:394:4,54.5,-49.5,0,0,-0.00783202 -34284,3405:495:3,55,-49.5,0,0,-0.00736363 -34285,3405:495:4,55.5,-49.5,0,0,-0.00728053 -34286,3405:496:3,56,-49.5,0,0,-0.00731463 -34287,3405:496:4,56.5,-49.5,0,0,-0.00730812 -34288,3405:497:3,57,-49.5,0,0,-0.00729191 -34289,3405:497:4,57.5,-49.5,0,0,-0.00732278 -34290,3405:498:3,58,-49.5,0,0,-0.00740144 -34291,3405:498:4,58.5,-49.5,0,0,-0.00751431 -34292,3405:499:3,59,-49.5,0,0,-0.00771607 -34293,3405:499:4,59.5,-49.5,0,0,-0.00803517 -34294,3406:390:3,60,-49.5,0,0,-0.00811249 -34295,3406:390:4,60.5,-49.5,0,0,-0.00800481 -34296,3406:391:3,61,-49.5,0,0,-0.00802447 -34297,3406:391:4,61.5,-49.5,0,0,-0.00823635 -34298,3406:392:3,62,-49.5,0,0,-0.0081997 -34299,3406:392:4,62.5,-49.5,0,0,-0.00815961 -34300,3406:393:3,63,-49.5,0,0,-0.00842374 -34301,3406:393:4,63.5,-49.5,0,0,-0.00883914 -34302,3406:394:3,64,-49.5,0,0,-0.00928141 -34303,3406:394:4,64.5,-49.5,0,0,-0.0097482 -34304,3406:495:3,65,-49.5,0,0,-0.0100195 -34305,3406:495:4,65.5,-49.5,0,0,-0.0100038 -34306,3406:496:3,66,-49.5,0,0,-0.00973083 -34307,3406:496:4,66.5,-49.5,0,0,-0.00832116 -34308,3406:497:3,67,-49.5,0,0,-0.00771607 -34309,3406:497:4,67.5,-49.5,0,0,-0.00779199 -34310,3406:498:3,68,-49.5,0,0,-0.00806565 -34311,3406:498:4,68.5,-49.5,0,0,-0.00807827 -34312,3406:499:3,69,-49.5,0,0,-0.00806926 -34313,3406:499:4,69.5,-49.5,0,0,-0.00817599 -34314,3407:390:3,70,-49.5,0,0,-0.00849726 -34315,3407:390:4,70.5,-49.5,0,0,-0.00886678 -34316,3407:391:3,71,-49.5,0,0,-0.00906261 -34317,3407:391:4,71.5,-49.5,0,0,-0.00842185 -34318,3407:392:3,72,-49.5,0,0,-0.00798704 -34319,3407:392:4,72.5,-49.5,0,0,-0.0077643 -34320,3407:393:4,73.5,-49.5,0,0,-0.00790737 -34321,3407:394:3,74,-49.5,0,0,-0.00788451 -34322,3407:394:4,74.5,-49.5,0,0,-0.00767492 -34323,3407:495:3,75,-49.5,0,0,-0.00717597 -34324,3407:495:4,75.5,-49.5,0,0,-0.00692194 -34325,3407:496:3,76,-49.5,0,0,-0.00714728 -34326,3407:496:4,76.5,-49.5,0,0,-0.0072935 -34327,3407:497:3,77,-49.5,0,0,-0.00736363 -34328,3407:497:4,77.5,-49.5,0,0,-0.00728379 -34329,3407:498:3,78,-49.5,0,0,-0.00720478 -34330,3407:498:4,78.5,-49.5,0,0,-0.00710923 -34331,3407:499:3,79,-49.5,0,0,-0.00702587 -34332,3407:499:4,79.5,-49.5,0,0,-0.00695279 -34333,3408:390:3,80,-49.5,0,0,-0.0068759 -34334,3408:390:4,80.5,-49.5,0,0,-0.00685451 -34335,3408:391:3,81,-49.5,0,0,-0.00691424 -34336,3408:391:4,81.5,-49.5,0,0,-0.00684995 -34337,3408:392:3,82,-49.5,0,0,-0.00653732 -34338,3408:392:4,82.5,-49.5,0,0,-0.00622941 -34339,3408:393:3,83,-49.5,0,0,-0.00605332 -34340,3408:393:4,83.5,-49.5,0,0,-0.00592025 -34341,3408:394:3,84,-49.5,0,0,-0.00592551 -34342,3408:394:4,84.5,-49.5,0,0,-0.00630185 -34343,3408:495:3,85,-49.5,0,0,-0.00682257 -34344,3408:495:4,85.5,-49.5,0,0,-0.00738497 -34345,3408:496:3,86,-49.5,0,0,-0.00861549 -34346,3408:496:4,86.5,-49.5,0,0,-0.0105661 -34347,3408:497:3,87,-49.5,0,0,-0.0110167 -34348,3408:497:4,87.5,-49.5,0,0,-0.0107782 -34349,3408:498:3,88,-49.5,0,0,-0.0112959 -34350,3408:498:4,88.5,-49.5,0,0,-0.0106919 -34351,3408:499:3,89,-49.5,0,0,-0.00999937 -34352,3408:499:4,89.5,-49.5,0,0,-0.00997706 -34353,3409:390:3,90,-49.5,0,0,-0.00988401 -34354,3409:390:4,90.5,-49.5,0,0,-0.00989505 -34355,3409:391:3,91,-49.5,0,0,-0.00994152 -34356,3409:391:4,91.5,-49.5,0,0,-0.00982904 -34357,3409:392:3,92,-49.5,0,0,-0.00931665 -34358,3409:392:4,92.5,-49.5,0,0,-0.00883127 -34359,3409:393:3,93,-49.5,0,0,-0.00881555 -34360,3409:393:4,93.5,-49.5,0,0,-0.00872755 -34361,3409:394:3,94,-49.5,0,0,-0.00858864 -34362,3409:394:4,94.5,-49.5,0,0,-0.0082971 -34363,3409:495:3,95,-49.5,0,0,-0.00806208 -34364,3409:495:4,95.5,-49.5,0,0,-0.00826024 -34365,3409:496:3,96,-49.5,0,0,-0.00908891 -34366,3409:496:4,96.5,-49.5,0,0,-0.00928349 -34367,3409:497:3,97,-49.5,0,0,-0.00953106 -34368,3409:497:4,97.5,-49.5,0,0,-0.00985759 -34369,3409:498:3,98,-49.5,0,0,-0.00981587 -34370,3409:498:4,98.5,-49.5,0,0,-0.00942745 -34371,3409:499:3,99,-49.5,0,0,-0.00903238 -34372,3409:499:4,99.5,-49.5,0,0,-0.00893022 -34373,3410:390:3,100,-49.5,0,0,-0.00946325 -34374,3410:390:4,100.5,-49.5,0,0,-0.0102639 -34375,3410:391:3,101,-49.5,0,0,-0.00976999 -34376,3410:391:4,101.5,-49.5,0,0,-0.00908285 -34377,3410:392:3,102,-49.5,0,0,-0.00927314 -34378,3410:392:4,102.5,-49.5,0,0,-0.00973732 -34379,3410:393:3,103,-49.5,0,0,-0.00989505 -34380,3410:393:4,103.5,-49.5,0,0,-0.0100598 -34381,3410:394:3,104,-49.5,0,0,-0.0104768 -34382,3410:394:4,104.5,-49.5,0,0,-0.0107158 -34383,3410:495:3,105,-49.5,0,0,-0.0107182 -34384,3410:495:4,105.5,-49.5,0,0,-0.0106229 -34385,3410:496:3,106,-49.5,0,0,-0.0105992 -34386,3410:496:4,106.5,-49.5,0,0,-0.0106824 -34387,3410:497:3,107,-49.5,0,0,-0.0108555 -34388,3410:497:4,107.5,-49.5,0,0,-0.0111604 -34389,3410:498:3,108,-49.5,0,0,-0.0112909 -34390,3410:498:4,108.5,-49.5,0,0,-0.0114253 -34391,3410:499:3,109,-49.5,0,0,-0.0114151 -34392,3410:499:4,109.5,-49.5,0,0,-0.0113642 -34393,3411:390:3,110,-49.5,0,0,-0.0114023 -34394,3411:390:4,110.5,-49.5,0,0,-0.0118096 -34395,3411:391:3,111,-49.5,0,0,-0.0119878 -34396,3411:391:4,111.5,-49.5,0,0,-0.0117018 -34397,3411:392:3,112,-49.5,0,0,-0.0114177 -34398,3411:392:4,112.5,-49.5,0,0,-0.0108217 -34399,3411:393:3,113,-49.5,0,0,-0.0109505 -34400,3411:393:4,113.5,-49.5,0,0,-0.0116888 -34401,3411:394:3,114,-49.5,0,0,-0.0120146 -34402,3411:394:4,114.5,-49.5,0,0,-0.0119985 -34403,3411:495:3,115,-49.5,0,0,-0.0121036 -34404,3411:495:4,115.5,-49.5,0,0,-0.0124803 -34405,3411:496:3,116,-49.5,0,0,-0.0134881 -34406,3411:496:4,116.5,-49.5,0,0,-0.0135608 -34407,3411:497:3,117,-49.5,0,0,-0.0134609 -34408,3411:497:4,117.5,-49.5,0,0,-0.0135093 -34409,3411:498:3,118,-49.5,0,0,-0.0134942 -34410,3411:498:4,118.5,-49.5,0,0,-0.0134942 -34411,3411:499:3,119,-49.5,0,0,-0.013467 -34412,3411:499:4,119.5,-49.5,0,0,-0.013317 -34413,3412:390:3,120,-49.5,0,0,-0.0129149 -34414,3412:390:4,120.5,-49.5,0,0,-0.0123056 -34415,3412:391:3,121,-49.5,0,0,-0.0122316 -34416,3412:391:4,121.5,-49.5,0,0,-0.0128399 -34417,3412:392:3,122,-49.5,0,0,-0.0137381 -34418,3412:392:4,122.5,-49.5,0,0,-0.014387 -34419,3412:393:3,123,-49.5,0,0,-0.0145263 -34420,3412:393:4,123.5,-49.5,0,0,-0.0141314 -34421,3412:394:3,124,-49.5,0,0,-0.0135973 -34422,3412:394:4,124.5,-49.5,0,0,-0.0133678 -34423,3412:495:3,125,-49.5,0,0,-0.0135547 -34424,3412:495:4,125.5,-49.5,0,0,-0.014281 -34425,3412:496:3,126,-49.5,0,0,-0.014723 -34426,3412:496:4,126.5,-49.5,0,0,-0.0145459 -34427,3412:497:3,127,-49.5,0,0,-0.0144711 -34428,3412:497:4,127.5,-49.5,0,0,-0.0144128 -34429,3412:498:3,128,-49.5,0,0,-0.0142395 -34430,3412:498:4,128.5,-49.5,0,0,-0.0139614 -34431,3412:499:3,129,-49.5,0,0,-0.0136614 -34432,3412:499:4,129.5,-49.5,0,0,-0.0132754 -34433,3413:390:3,130,-49.5,0,0,-0.0130368 -34434,3413:390:4,130.5,-49.5,0,0,-0.0130398 -34435,3413:391:3,131,-49.5,0,0,-0.0132576 -34436,3413:391:4,131.5,-49.5,0,0,-0.0135274 -34437,3413:392:3,132,-49.5,0,0,-0.0135851 -34438,3413:392:4,132.5,-49.5,0,0,-0.0134369 -34439,3413:393:3,133,-49.5,0,0,-0.0133769 -34440,3413:393:4,133.5,-49.5,0,0,-0.0136034 -34441,3413:394:3,134,-49.5,0,0,-0.0137443 -34442,3413:394:4,134.5,-49.5,0,0,-0.0134429 -34443,3413:495:3,135,-49.5,0,0,-0.0128976 -34444,3413:495:4,135.5,-49.5,0,0,-0.012539 -34445,3413:496:3,136,-49.5,0,0,-0.0124942 -34446,3413:496:4,136.5,-49.5,0,0,-0.0125868 -34447,3413:497:3,137,-49.5,0,0,-0.0127028 -34448,3413:497:4,137.5,-49.5,0,0,-0.0128228 -34449,3413:498:3,138,-49.5,0,0,-0.0129845 -34450,3413:498:4,138.5,-49.5,0,0,-0.012837 -34451,3413:499:3,139,-49.5,0,0,-0.0125419 -34452,3413:499:4,139.5,-49.5,0,0,-0.0124496 -34453,3414:390:3,140,-49.5,0,0,-0.0126009 -34454,3414:390:4,140.5,-49.5,0,0,-0.0129091 -34455,3414:391:3,141,-49.5,0,0,-0.0133828 -34456,3414:391:4,141.5,-49.5,0,0,-0.0140242 -34457,3414:392:3,142,-49.5,0,0,-0.0144258 -34458,3414:392:4,142.5,-49.5,0,0,-0.014484 -34459,3414:393:3,143,-49.5,0,0,-0.0143484 -34460,3414:393:4,143.5,-49.5,0,0,-0.0141505 -34461,3414:394:3,144,-49.5,0,0,-0.0139614 -34462,3414:394:4,144.5,-49.5,0,0,-0.0138246 -34463,3414:495:3,145,-49.5,0,0,-0.0137504 -34464,3414:495:4,145.5,-49.5,0,0,-0.0136859 -34465,3414:496:3,146,-49.5,0,0,-0.0135517 -34466,3414:496:4,146.5,-49.5,0,0,-0.0132131 -34467,3414:497:3,147,-49.5,0,0,-0.012754 -34468,3414:497:4,147.5,-49.5,0,0,-0.012419 -34469,3414:498:3,148,-49.5,0,0,-0.0120416 -34470,3414:498:4,148.5,-49.5,0,0,-0.011243 -34471,3414:499:3,149,-49.5,0,0,-0.0100822 -34472,3414:499:4,149.5,-49.5,0,0,-0.00889645 -34473,3415:390:3,150,-49.5,0,0,-0.00907272 -34474,3415:390:4,150.5,-49.5,0,0,-0.0095715 -34475,3415:391:3,151,-49.5,0,0,-0.0107134 -34476,3415:391:4,151.5,-49.5,0,0,-0.0106158 -34477,3415:392:3,152,-49.5,0,0,-0.0108871 -34478,3415:392:4,152.5,-49.5,0,0,-0.0139146 -34479,3415:393:3,153,-49.5,0,0,-0.0166645 -34480,3415:393:4,153.5,-49.5,0,0,-0.0177829 -34481,3415:394:3,154,-49.5,0,0,-0.0179881 -34482,3415:394:4,154.5,-49.5,0,0,-0.017723 -34483,3415:495:3,155,-49.5,0,0,-0.0171893 -34484,3415:495:4,155.5,-49.5,0,0,-0.0161705 -34485,3415:496:3,156,-49.5,0,0,-0.0127626 -34486,3415:496:4,156.5,-49.5,0,0,-0.0110266 -34487,3415:497:3,157,-49.5,0,0,-0.0113439 -34488,3415:497:4,157.5,-49.5,0,0,-0.0124942 -34489,3415:498:3,158,-49.5,0,0,-0.0128687 -34490,3415:498:4,158.5,-49.5,0,0,-0.0146407 -34491,3415:499:3,159,-49.5,0,0,-0.0162288 -34492,3415:499:4,159.5,-49.5,0,0,-0.0165341 -34493,3416:390:3,160,-49.5,0,0,-0.0159721 -34494,3416:390:4,160.5,-49.5,0,0,-0.0152541 -34495,3416:391:3,161,-49.5,0,0,-0.0145459 -34496,3416:391:4,161.5,-49.5,0,0,-0.0155164 -34497,3416:392:3,162,-49.5,0,0,-0.017847 -34498,3416:392:4,162.5,-49.5,0,0,-0.017294 -34499,3416:393:3,163,-49.5,0,0,-0.0168718 -34500,3416:393:4,163.5,-49.5,0,0,-0.0209605 -34501,3416:394:3,164,-49.5,0,0,-0.0233129 -34502,3416:394:4,164.5,-49.5,0,0,-0.0232602 -34503,3416:495:3,165,-49.5,0,0,-0.0229262 -34504,3416:495:4,165.5,-49.5,0,0,-0.0226685 -34505,3416:496:3,166,-49.5,0,0,-0.0226072 -34506,3416:496:4,166.5,-49.5,0,0,-0.0220923 -34507,3416:497:3,167,-49.5,0,0,-0.0213761 -34508,3416:497:4,167.5,-49.5,0,0,-0.0211888 -34509,3416:498:3,168,-49.5,0,0,-0.0211745 -34510,3416:498:4,168.5,-49.5,0,0,-0.0212079 -34511,3416:499:3,169,-49.5,0,0,-0.0215019 -34512,3416:499:4,169.5,-49.5,0,0,-0.0219382 -34513,3417:390:3,170,-49.5,0,0,-0.0222123 -34514,3417:390:4,170.5,-49.5,0,0,-0.0222727 -34515,3417:391:3,171,-49.5,0,0,-0.0221272 -34516,3417:391:4,171.5,-49.5,0,0,-0.0220027 -34517,3417:392:3,172,-49.5,0,0,-0.0218492 -34518,3417:392:4,172.5,-49.5,0,0,-0.0222324 -34519,3417:393:3,173,-49.5,0,0,-0.0240738 -34520,3417:393:4,173.5,-49.5,0,0,-0.0259595 -34521,3417:394:3,174,-49.5,0,0,-0.0271457 -34522,3417:394:4,174.5,-49.5,0,0,-0.0274866 -34523,3417:495:3,175,-49.5,0,0,-0.0267846 -34524,3417:495:4,175.5,-49.5,0,0,-0.0245247 -34525,3417:496:3,176,-49.5,0,0,-0.0208192 -34526,3417:496:4,176.5,-49.5,0,0,-0.0194317 -34527,3417:497:3,177,-49.5,0,0,-0.0190076 -34528,3417:497:4,177.5,-49.5,0,0,-0.0187736 -34529,3417:498:3,178,-49.5,0,0,-0.0186936 -34530,3417:498:4,178.5,-49.5,0,0,-0.01866 -34531,3417:499:3,179,-49.5,0,0,-0.0192748 -34532,3417:499:4,179.5,-49.5,0,0,-0.021963 -34533,3418:390:3,180,-49.5,0,0,-0.0228331 -34534,5418:390:1,-180,-49,0,0,-0.0235887 -34535,5417:499:2,-179.5,-49,0,0,-0.023297 -34536,5417:499:1,-179,-49,0,0,-0.0225053 -34537,5417:498:2,-178.5,-49,0,0,-0.0212174 -34538,5417:498:1,-178,-49,0,0,-0.0191882 -34539,5417:497:2,-177.5,-49,0,0,-0.0187188 -34540,5417:497:1,-177,-49,0,0,-0.0192748 -34541,5417:496:2,-176.5,-49,0,0,-0.0211029 -34542,5417:496:1,-176,-49,0,0,-0.0233656 -34543,5417:495:2,-175.5,-49,0,0,-0.0233867 -34544,5417:495:1,-175,-49,0,0,-0.0229989 -34545,5417:394:2,-174.5,-49,0,0,-0.022684 -34546,5417:394:1,-174,-49,0,0,-0.0223835 -34547,5417:393:2,-173.5,-49,0,0,-0.0220774 -34548,5417:393:1,-173,-49,0,0,-0.0217901 -34549,5417:392:2,-172.5,-49,0,0,-0.0216186 -34550,5417:392:1,-172,-49,0,0,-0.0217262 -34551,5417:391:2,-171.5,-49,0,0,-0.022313 -34552,5417:391:1,-171,-49,0,0,-0.0227302 -34553,5417:390:2,-170.5,-49,0,0,-0.0226174 -34554,5417:390:1,-170,-49,0,0,-0.0220673 -34555,5416:499:2,-169.5,-49,0,0,-0.0209087 -34556,5416:499:1,-169,-49,0,0,-0.0194317 -34557,5416:498:2,-168.5,-49,0,0,-0.0183024 -34558,5416:498:1,-168,-49,0,0,-0.0178069 -34559,5416:497:2,-167.5,-49,0,0,-0.0180205 -34560,5416:497:1,-167,-49,0,0,-0.0188499 -34561,5416:496:2,-166.5,-49,0,0,-0.020268 -34562,5416:496:1,-166,-49,0,0,-0.0210696 -34563,5416:495:2,-165.5,-49,0,0,-0.0212702 -34564,5416:495:1,-165,-49,0,0,-0.0209416 -34565,5416:394:2,-164.5,-49,0,0,-0.0203642 -34566,5416:394:1,-164,-49,0,0,-0.0197139 -34567,5416:393:2,-163.5,-49,0,0,-0.0190462 -34568,5416:393:1,-163,-49,0,0,-0.0184511 -34569,5416:392:2,-162.5,-49,0,0,-0.0180772 -34570,5416:392:1,-162,-49,0,0,-0.0180447 -34571,5416:391:2,-161.5,-49,0,0,-0.0182693 -34572,5416:391:1,-161,-49,0,0,-0.018639 -34573,5416:390:2,-160.5,-49,0,0,-0.0192228 -34574,5416:390:1,-160,-49,0,0,-0.020186 -34575,5415:499:2,-159.5,-49,0,0,-0.0207675 -34576,5415:499:1,-159,-49,0,0,-0.0209747 -34577,5415:498:2,-158.5,-49,0,0,-0.0212702 -34578,5415:498:1,-158,-49,0,0,-0.0218986 -34579,5415:497:2,-157.5,-49,0,0,-0.0229262 -34580,5415:497:1,-157,-49,0,0,-0.0231605 -34581,5415:496:2,-156.5,-49,0,0,-0.0223179 -34582,5415:496:1,-156,-49,0,0,-0.0213375 -34583,5415:495:2,-155.5,-49,0,0,-0.0200273 -34584,5415:495:1,-155,-49,0,0,-0.0187653 -34585,5415:394:2,-154.5,-49,0,0,-0.0181343 -34586,5415:394:1,-154,-49,0,0,-0.0163164 -34587,5415:393:2,-153.5,-49,0,0,-0.014839 -34588,5415:393:1,-153,-49,0,0,-0.0147429 -34589,5415:392:2,-152.5,-49,0,0,-0.0144128 -34590,5415:392:1,-152,-49,0,0,-0.0137627 -34591,5415:391:2,-151.5,-49,0,0,-0.0131718 -34592,5415:391:1,-151,-49,0,0,-0.0122561 -34593,5415:390:2,-150.5,-49,0,0,-0.0111604 -34594,5415:390:1,-150,-49,0,0,-0.0117045 -34595,5414:499:2,-149.5,-49,0,0,-0.0124886 -34596,5414:499:1,-149,-49,0,0,-0.0124718 -34597,5414:498:2,-148.5,-49,0,0,-0.0116836 -34598,5414:498:1,-148,-49,0,0,-0.010975 -34599,5414:497:2,-147.5,-49,0,0,-0.0110809 -34600,5414:497:1,-147,-49,0,0,-0.0114586 -34601,5414:496:2,-146.5,-49,0,0,-0.0118361 -34602,5414:496:1,-146,-49,0,0,-0.0121253 -34603,5414:495:2,-145.5,-49,0,0,-0.0123968 -34604,5414:495:1,-145,-49,0,0,-0.0143227 -34605,5414:394:2,-144.5,-49,0,0,-0.0159149 -34606,5414:394:1,-144,-49,0,0,-0.0170012 -34607,5414:393:2,-143.5,-49,0,0,-0.0184387 -34608,5414:393:1,-143,-49,0,0,-0.0223735 -34609,5414:392:2,-142.5,-49,0,0,-0.0254527 -34610,5414:392:1,-142,-49,0,0,-0.0271271 -34611,5414:391:2,-141.5,-49,0,0,-0.0280796 -34612,5414:391:1,-141,-49,0,0,-0.0300481 -34613,5414:390:2,-140.5,-49,0,0,-0.030007 -34614,5414:390:1,-140,-49,0,0,-0.0235459 -34615,5413:499:2,-139.5,-49,0,0,-0.0242433 -34616,5413:499:1,-139,-49,0,0,-0.024675 -34617,5413:498:2,-138.5,-49,0,0,-0.0257719 -34618,5413:498:1,-138,-49,0,0,-0.0259595 -34619,5413:497:2,-137.5,-49,0,0,-0.0262019 -34620,5413:497:1,-137,-49,0,0,-0.0259653 -34621,5413:496:2,-136.5,-49,0,0,-0.0245303 -34622,5413:496:1,-136,-49,0,0,-0.0253375 -34623,5413:495:2,-135.5,-49,0,0,-0.0256495 -34624,5413:495:1,-135,-49,0,0,-0.0250977 -34625,5413:394:2,-134.5,-49,0,0,-0.0255334 -34626,5413:394:1,-134,-49,0,0,-0.0299186 -34627,5413:393:2,-133.5,-49,0,0,-0.0321808 -34628,5413:393:1,-133,-49,0,0,-0.0317436 -34629,5413:392:2,-132.5,-49,0,0,-0.0287381 -34630,5413:392:1,-132,-49,0,0,-0.0263031 -34631,5413:391:2,-131.5,-49,0,0,-0.0233393 -34632,5413:391:1,-131,-49,0,0,-0.0212558 -34633,5413:390:2,-130.5,-49,0,0,-0.0212991 -34634,5413:390:1,-130,-49,0,0,-0.0223382 -34635,5412:499:2,-129.5,-49,0,0,-0.0242653 -34636,5412:499:1,-129,-49,0,0,-0.0269737 -34637,5412:498:2,-128.5,-49,0,0,-0.0274866 -34638,5412:498:1,-128,-49,0,0,-0.025493 -34639,5412:497:2,-127.5,-49,0,0,-0.0272012 -34640,5412:497:1,-127,-49,0,0,-0.0303712 -34641,5412:496:2,-126.5,-49,0,0,-0.0356892 -34642,5412:496:1,-126,-49,0,0,-0.0377147 -34643,5412:495:2,-125.5,-49,0,0,-0.0370889 -34644,5412:495:1,-125,-49,0,0,-0.0359929 -34645,5412:394:2,-124.5,-49,0,0,-0.0342031 -34646,5412:394:1,-124,-49,0,0,-0.0328483 -34647,5412:393:2,-123.5,-49,0,0,-0.0299458 -34648,5412:393:1,-123,-49,0,0,-0.0248658 -34649,5412:392:2,-122.5,-49,0,0,-0.0212414 -34650,5412:392:1,-122,-49,0,0,-0.0193705 -34651,5412:391:2,-121.5,-49,0,0,-0.0190376 -34652,5412:391:1,-121,-49,0,0,-0.0194317 -34653,5412:390:2,-120.5,-49,0,0,-0.0200002 -34654,5412:390:1,-120,-49,0,0,-0.0220077 -34655,5411:499:2,-119.5,-49,0,0,-0.0240303 -34656,5411:499:1,-119,-49,0,0,-0.0239759 -34657,5411:498:2,-118.5,-49,0,0,-0.0231657 -34658,5411:498:1,-118,-49,0,0,-0.0228485 -34659,5411:497:2,-117.5,-49,0,0,-0.0225715 -34660,5411:497:1,-117,-49,0,0,-0.0234769 -34661,5411:496:2,-116.5,-49,0,0,-0.0267907 -34662,5411:496:1,-116,-49,0,0,-0.0252517 -34663,5411:495:2,-115.5,-49,0,0,-0.023911 -34664,5411:495:1,-115,-49,0,0,-0.0232919 -34665,5411:394:2,-114.5,-49,0,0,-0.0228331 -34666,5411:394:1,-114,-49,0,0,-0.0226788 -34667,5411:393:2,-113.5,-49,0,0,-0.0230508 -34668,5411:393:1,-113,-49,0,0,-0.0239434 -34669,5411:392:2,-112.5,-49,0,0,-0.0250523 -34670,5411:392:1,-112,-49,0,0,-0.0259242 -34671,5411:391:2,-111.5,-49,0,0,-0.0265307 -34672,5411:391:1,-111,-49,0,0,-0.0266273 -34673,5411:390:2,-110.5,-49,0,0,-0.0269127 -34674,5411:390:1,-110,-49,0,0,-0.0272444 -34675,5410:499:2,-109.5,-49,0,0,-0.0278826 -34676,5410:499:1,-109,-49,0,0,-0.028381 -34677,5410:498:2,-108.5,-49,0,0,-0.0287968 -34678,5410:498:1,-108,-49,0,0,-0.0288362 -34679,5410:497:2,-107.5,-49,0,0,-0.0285168 -34680,5410:497:1,-107,-49,0,0,-0.0279904 -34681,5410:496:2,-106.5,-49,0,0,-0.027356 -34682,5410:496:1,-106,-49,0,0,-0.0267544 -34683,5410:495:2,-105.5,-49,0,0,-0.0263747 -34684,5410:495:1,-105,-49,0,0,-0.0262912 -34685,5410:394:2,-104.5,-49,0,0,-0.0263389 -34686,5410:394:1,-104,-49,0,0,-0.0262792 -34687,5410:393:2,-103.5,-49,0,0,-0.0257601 -34688,5410:393:1,-103,-49,0,0,-0.024877 -34689,5410:392:2,-102.5,-49,0,0,-0.0234185 -34690,5410:392:1,-102,-49,0,0,-0.0221522 -34691,5410:391:2,-101.5,-49,0,0,-0.0222878 -34692,5410:391:1,-101,-49,0,0,-0.022602 -34693,5410:390:2,-100.5,-49,0,0,-0.0224951 -34694,5410:390:1,-100,-49,0,0,-0.0225409 -34695,5409:499:2,-99.5,-49,0,0,-0.022725 -34696,5409:499:1,-99,-49,0,0,-0.0230092 -34697,5409:498:2,-98.5,-49,0,0,-0.0233498 -34698,5409:498:1,-98,-49,0,0,-0.0235993 -34699,5409:497:2,-97.5,-49,0,0,-0.0234504 -34700,5409:497:1,-97,-49,0,0,-0.0229055 -34701,5409:496:2,-96.5,-49,0,0,-0.022313 -34702,5409:496:1,-96,-49,0,0,-0.0218394 -34703,5409:495:2,-95.5,-49,0,0,-0.0216821 -34704,5409:495:1,-95,-49,0,0,-0.0220127 -34705,5409:394:2,-94.5,-49,0,0,-0.022648 -34706,5409:394:1,-94,-49,0,0,-0.0234239 -34707,5409:393:2,-93.5,-49,0,0,-0.0236795 -34708,5409:393:1,-93,-49,0,0,-0.0231657 -34709,5409:392:2,-92.5,-49,0,0,-0.0223988 -34710,5409:392:1,-92,-49,0,0,-0.0219928 -34711,5409:391:2,-91.5,-49,0,0,-0.0222123 -34712,5409:391:1,-91,-49,0,0,-0.0225664 -34713,5409:390:2,-90.5,-49,0,0,-0.0222928 -34714,5409:390:1,-90,-49,0,0,-0.0221322 -34715,5408:499:2,-89.5,-49,0,0,-0.0222878 -34716,5408:499:1,-89,-49,0,0,-0.0226327 -34717,5408:498:2,-88.5,-49,0,0,-0.0229832 -34718,5408:498:1,-88,-49,0,0,-0.0232025 -34719,5408:497:2,-87.5,-49,0,0,-0.0232602 -34720,5408:497:1,-87,-49,0,0,-0.0231867 -34721,5408:496:2,-86.5,-49,0,0,-0.02303 -34722,5408:496:1,-86,-49,0,0,-0.0229314 -34723,5408:495:2,-85.5,-49,0,0,-0.0230405 -34724,5408:495:1,-85,-49,0,0,-0.0233445 -34725,5408:394:2,-84.5,-49,0,0,-0.0234769 -34726,5408:394:1,-84,-49,0,0,-0.0232655 -34727,5408:393:2,-83.5,-49,0,0,-0.0228176 -34728,5408:393:1,-83,-49,0,0,-0.0224901 -34729,5408:392:2,-82.5,-49,0,0,-0.022485 -34730,5408:392:1,-82,-49,0,0,-0.0228021 -34731,5408:391:2,-81.5,-49,0,0,-0.0232392 -34732,5408:391:1,-81,-49,0,0,-0.0234875 -34733,5408:390:2,-80.5,-49,0,0,-0.0234185 -34734,5408:390:1,-80,-49,0,0,-0.023103 -34735,5407:499:2,-79.5,-49,0,0,-0.0227609 -34736,5407:499:1,-79,-49,0,0,-0.0225766 -34737,5407:498:2,-78.5,-49,0,0,-0.022643 -34738,5407:498:1,-78,-49,0,0,-0.0229107 -34739,5407:497:2,-77.5,-49,0,0,-0.023297 -34740,5407:497:1,-77,-49,0,0,-0.0236795 -34741,5407:496:2,-76.5,-49,0,0,-0.0238084 -34742,5407:496:1,-76,-49,0,0,-0.023717 -34743,5407:495:2,-75.5,-49,0,0,-0.023626 -34744,5407:495:1,-75,-49,0,0,-0.0236314 -34745,5407:394:2,-74.5,-49,0,0,-0.0237224 -34746,5407:394:1,-74,-49,0,0,-0.0249221 -34747,5407:393:2,-73.5,-49,0,0,-0.0262196 -34748,5407:393:1,-73,-49,0,0,-0.0261781 -34749,5407:392:2,-72.5,-49,0,0,-0.0258361 -34750,5407:392:1,-72,-49,0,0,-0.0252746 -34751,5407:391:2,-71.5,-49,0,0,-0.0248995 -34752,5407:391:1,-71,-49,0,0,-0.0256437 -34753,5407:390:2,-70.5,-49,0,0,-0.0267483 -34754,5407:390:1,-70,-49,0,0,-0.0268698 -34755,5406:499:2,-69.5,-49,0,0,-0.0255799 -34756,5406:499:1,-69,-49,0,0,-0.0230561 -34757,5406:498:2,-68.5,-49,0,0,-0.0223786 -34758,5406:498:1,-68,-49,0,0,-0.0206975 -34759,5406:497:2,-67.5,-49,0,0,-0.0188711 -34760,5406:497:1,-67,-49,0,0,-0.0168755 -34761,5406:496:2,-66.5,-49,0,0,-0.016138 -34762,5406:496:1,-66,-49,0,0,-0.015128 -34763,5406:495:2,-65.5,-49,0,0,-0.0157231 -34764,5406:495:1,-65,-49,0,0,-0.016963 -34765,5406:394:2,-64.5,-49,0,0,-0.0182325 -34766,5406:394:1,-64,-49,0,0,-0.0185094 -34767,5406:393:2,-63.5,-49,0,0,-0.0182653 -34768,5406:393:1,-63,-49,0,0,-0.0180488 -34769,5406:392:2,-62.5,-49,0,0,-0.0179356 -34770,5406:392:1,-62,-49,0,0,-0.0176276 -34771,5406:391:2,-61.5,-49,0,0,-0.0172165 -34772,5406:391:1,-61,-49,0,0,-0.0168037 -34773,5406:390:2,-60.5,-49,0,0,-0.0161234 -34774,5406:390:1,-60,-49,0,0,-0.0140745 -34775,5405:499:2,-59.5,-49,0,0,-0.011913 -34776,5405:499:1,-59,-49,0,0,-0.0109971 -34777,5405:498:2,-58.5,-49,0,0,-0.0111579 -34778,5405:498:1,-58,-49,0,0,-0.0110364 -34779,5405:497:2,-57.5,-49,0,0,-0.0109823 -34780,5405:497:1,-57,-49,0,0,-0.0111106 -34781,5405:496:2,-56.5,-49,0,0,-0.0112379 -34782,5405:496:1,-56,-49,0,0,-0.0108047 -34783,5405:495:2,-55.5,-49,0,0,-0.00963577 -34784,5405:495:1,-55,-49,0,0,-0.00975477 -34785,5405:394:2,-54.5,-49,0,0,-0.0103444 -34786,5405:394:1,-54,-49,0,0,-0.0112279 -34787,5405:393:2,-53.5,-49,0,0,-0.0121933 -34788,5405:393:1,-53,-49,0,0,-0.0125474 -34789,5405:392:2,-52.5,-49,0,0,-0.0115279 -34790,5405:392:1,-52,-49,0,0,-0.00965948 -34791,5405:391:2,-51.5,-49,0,0,-0.00936459 -34792,5405:391:1,-51,-49,0,0,-0.00966375 -34793,5405:390:2,-50.5,-49,0,0,-0.01015 -34794,5405:390:1,-50,-49,0,0,-0.0101772 -34795,5404:499:2,-49.5,-49,0,0,-0.0101908 -34796,5404:499:1,-49,-49,0,0,-0.00952043 -34797,5404:498:2,-48.5,-49,0,0,-0.0095715 -34798,5404:498:1,-48,-49,0,0,-0.0102479 -34799,5404:497:2,-47.5,-49,0,0,-0.0103791 -34800,5404:497:1,-47,-49,0,0,-0.010175 -34801,5404:496:2,-46.5,-49,0,0,-0.0102868 -34802,5404:496:1,-46,-49,0,0,-0.0104069 -34803,5404:495:2,-45.5,-49,0,0,-0.0100755 -34804,5404:495:1,-45,-49,0,0,-0.00926279 -34805,5404:394:2,-44.5,-49,0,0,-0.00868101 -34806,5404:394:1,-44,-49,0,0,-0.00890244 -34807,5404:393:2,-43.5,-49,0,0,-0.00908891 -34808,5404:393:1,-43,-49,0,0,-0.00873342 -34809,5404:392:2,-42.5,-49,0,0,-0.00889052 -34810,5404:392:1,-42,-49,0,0,-0.00981587 -34811,5404:391:2,-41.5,-49,0,0,-0.0104839 -34812,5404:391:1,-41,-49,0,0,-0.0102937 -34813,5404:390:2,-40.5,-49,0,0,-0.00982684 -34814,5404:390:1,-40,-49,0,0,-0.00984659 -34815,5403:499:2,-39.5,-49,0,0,-0.010015 -34816,5403:499:1,-39,-49,0,0,-0.00998154 -34817,5403:498:2,-38.5,-49,0,0,-0.00987298 -34818,5403:498:1,-38,-49,0,0,-0.00921953 -34819,5403:497:2,-37.5,-49,0,0,-0.00853525 -34820,5403:497:1,-37,-49,0,0,-0.00830082 -34821,5403:496:2,-36.5,-49,0,0,-0.0081924 -34822,5403:496:1,-36,-49,0,0,-0.00830636 -34823,5403:495:2,-35.5,-49,0,0,-0.00843876 -34824,5403:495:1,-35,-49,0,0,-0.00841813 -34825,5403:394:2,-34.5,-49,0,0,-0.00825468 -34826,5403:394:1,-34,-49,0,0,-0.00792852 -34827,5403:393:2,-33.5,-49,0,0,-0.0075428 -34828,5403:393:1,-33,-49,0,0,-0.00738171 -34829,5403:392:2,-32.5,-49,0,0,-0.00739154 -34830,5403:392:1,-32,-49,0,0,-0.00750931 -34831,5403:391:2,-31.5,-49,0,0,-0.00767492 -34832,5403:391:1,-31,-49,0,0,-0.00774186 -34833,5403:390:2,-30.5,-49,0,0,-0.00763913 -34834,5403:390:1,-30,-49,0,0,-0.00739978 -34835,5402:499:2,-29.5,-49,0,0,-0.00727242 -34836,5402:499:1,-29,-49,0,0,-0.00731791 -34837,5402:498:2,-28.5,-49,0,0,-0.00736363 -34838,5402:498:1,-28,-49,0,0,-0.00729999 -34839,5402:497:2,-27.5,-49,0,0,-0.00714572 -34840,5402:497:1,-27,-49,0,0,-0.00706194 -34841,5402:496:2,-26.5,-49,0,0,-0.00712983 -34842,5402:496:1,-26,-49,0,0,-0.00736528 -34843,5402:495:2,-25.5,-49,0,0,-0.00794621 -34844,5402:495:1,-25,-49,0,0,-0.00802627 -34845,5402:394:2,-24.5,-49,0,0,-0.00801373 -34846,5402:394:1,-24,-49,0,0,-0.0080084 -34847,5402:393:2,-23.5,-49,0,0,-0.00816871 -34848,5402:393:1,-23,-49,0,0,-0.00864625 -34849,5402:392:2,-22.5,-49,0,0,-0.00878418 -34850,5402:392:1,-22,-49,0,0,-0.0087568 -34851,5402:391:2,-21.5,-49,0,0,-0.00824369 -34852,5402:391:1,-21,-49,0,0,-0.0084576 -34853,5402:390:2,-20.5,-49,0,0,-0.00903638 -34854,5402:390:1,-20,-49,0,0,-0.00924422 -34855,5401:499:2,-19.5,-49,0,0,-0.00919904 -34856,5401:499:1,-19,-49,0,0,-0.00874507 -34857,5401:498:2,-18.5,-49,0,0,-0.00840126 -34858,5401:498:1,-18,-49,0,0,-0.00852759 -34859,5401:497:2,-17.5,-49,0,0,-0.00873925 -34860,5401:497:1,-17,-49,0,0,-0.00892828 -34861,5401:496:2,-16.5,-49,0,0,-0.00901023 -34862,5401:496:1,-16,-49,0,0,-0.00894816 -34863,5401:495:2,-15.5,-49,0,0,-0.0086907 -34864,5401:495:1,-15,-49,0,0,-0.00821616 -34865,5401:394:2,-14.5,-49,0,0,-0.00787402 -34866,5401:394:1,-14,-49,0,0,-0.00785126 -34867,5401:393:2,-13.5,-49,0,0,-0.00800481 -34868,5401:393:1,-13,-49,0,0,-0.00820522 -34869,5401:392:2,-12.5,-49,0,0,-0.00842374 -34870,5401:392:1,-12,-49,0,0,-0.00861743 -34871,5401:391:2,-11.5,-49,0,0,-0.00868296 -34872,5401:391:1,-11,-49,0,0,-0.00862124 -34873,5401:390:2,-10.5,-49,0,0,-0.00844628 -34874,5401:390:1,-10,-49,0,0,-0.00823999 -34875,5400:499:2,-9.5,-49,0,0,-0.00814149 -34876,5400:499:1,-9,-49,0,0,-0.00821069 -34877,5400:498:2,-8.5,-49,0,0,-0.00832858 -34878,5400:498:1,-8,-49,0,0,-0.00833787 -34879,5400:497:2,-7.5,-49,0,0,-0.008207 -34880,5400:497:1,-7,-49,0,0,-0.00805672 -34881,5400:496:2,-6.5,-49,0,0,-0.00786525 -34882,5400:496:1,-6,-49,0,0,-0.0077367 -34883,5400:495:2,-5.5,-49,0,0,-0.00759168 -34884,5400:495:1,-5,-49,0,0,-0.00744273 -34885,5400:394:2,-4.5,-49,0,0,-0.00733582 -34886,5400:394:1,-4,-49,0,0,-0.00730162 -34887,5400:393:2,-3.5,-49,0,0,-0.00729028 -34888,5400:393:1,-3,-49,0,0,-0.00725141 -34889,5400:392:2,-2.5,-49,0,0,-0.00717597 -34890,5400:392:1,-2,-49,0,0,-0.00706664 -34891,5400:391:2,-1.5,-49,0,0,-0.00697449 -34892,5400:391:1,-1,-49,0,0,-0.00691114 -34893,5400:390:2,-0.5,-49,0,0,-0.00688968 -34894,3400:390:2,0,-49,0,0,-0.00689886 -34895,3400:390:2,0.5,-49,0,0,-0.00689736 -34896,3400:391:1,1,-49,0,0,-0.00684841 -34897,3400:391:2,1.5,-49,0,0,-0.00677416 -34898,3400:392:1,2,-49,0,0,-0.00670521 -34899,3400:392:2,2.5,-49,0,0,-0.00662073 -34900,3400:393:1,3,-49,0,0,-0.00652571 -34901,3400:393:2,3.5,-49,0,0,-0.00643922 -34902,3400:394:1,4,-49,0,0,-0.00642635 -34903,3400:394:2,4.5,-49,0,0,-0.00643638 -34904,3400:495:1,5,-49,0,0,-0.00639928 -34905,3400:495:2,5.5,-49,0,0,-0.00636947 -34906,3400:496:1,6,-49,0,0,-0.00636947 -34907,3400:496:2,6.5,-49,0,0,-0.00637938 -34908,3400:497:1,7,-49,0,0,-0.0062697 -34909,3400:497:2,7.5,-49,0,0,-0.00612095 -34910,3400:498:1,8,-49,0,0,-0.00611008 -34911,3400:498:2,8.5,-49,0,0,-0.00617974 -34912,3400:499:1,9,-49,0,0,-0.00621005 -34913,3400:499:2,9.5,-49,0,0,-0.00613051 -34914,3401:390:1,10,-49,0,0,-0.00606273 -34915,3401:390:2,10.5,-49,0,0,-0.00604794 -34916,3401:391:1,11,-49,0,0,-0.00604925 -34917,3401:391:2,11.5,-49,0,0,-0.00605599 -34918,3401:392:1,12,-49,0,0,-0.00606408 -34919,3401:392:2,12.5,-49,0,0,-0.00607215 -34920,3401:393:1,13,-49,0,0,-0.00607623 -34921,3401:393:2,13.5,-49,0,0,-0.00607215 -34922,3401:394:1,14,-49,0,0,-0.00604257 -34923,3401:394:2,14.5,-49,0,0,-0.00598639 -34924,3401:495:1,15,-49,0,0,-0.00594266 -34925,3401:495:2,15.5,-49,0,0,-0.00595985 -34926,3401:496:1,16,-49,0,0,-0.00597313 -34927,3401:496:2,16.5,-49,0,0,-0.00592025 -34928,3401:497:1,17,-49,0,0,-0.00567926 -34929,3401:497:2,17.5,-49,0,0,-0.00562526 -34930,3401:498:1,18,-49,0,0,-0.00562404 -34931,3401:498:2,18.5,-49,0,0,-0.00562026 -34932,3401:499:1,19,-49,0,0,-0.00561029 -34933,3401:499:2,19.5,-49,0,0,-0.00562026 -34934,3402:390:1,20,-49,0,0,-0.00563904 -34935,3402:390:2,20.5,-49,0,0,-0.00565785 -34936,3402:391:1,21,-49,0,0,-0.00568558 -34937,3402:391:2,21.5,-49,0,0,-0.00572232 -34938,3402:392:1,22,-49,0,0,-0.00569063 -34939,3402:392:2,22.5,-49,0,0,-0.00566414 -34940,3402:393:1,23,-49,0,0,-0.00564907 -34941,3402:393:2,23.5,-49,0,0,-0.00563904 -34942,3402:394:1,24,-49,0,0,-0.00563778 -34943,3402:394:2,24.5,-49,0,0,-0.00570458 -34944,3402:495:1,25,-49,0,0,-0.00581074 -34945,3402:495:2,25.5,-49,0,0,-0.00586394 -34946,3402:496:1,26,-49,0,0,-0.00593078 -34947,3402:496:2,26.5,-49,0,0,-0.00610192 -34948,3402:497:1,27,-49,0,0,-0.00617015 -34949,3402:497:2,27.5,-49,0,0,-0.00631448 -34950,3402:498:1,28,-49,0,0,-0.00630326 -34951,3402:498:2,28.5,-49,0,0,-0.00622802 -34952,3402:499:1,29,-49,0,0,-0.00639216 -34953,3402:499:2,29.5,-49,0,0,-0.00642635 -34954,3403:390:1,30,-49,0,0,-0.00631726 -34955,3403:390:2,30.5,-49,0,0,-0.00624189 -34956,3403:391:1,31,-49,0,0,-0.00617836 -34957,3403:391:2,31.5,-49,0,0,-0.00613322 -34958,3403:392:1,32,-49,0,0,-0.00607487 -34959,3403:392:2,32.5,-49,0,0,-0.00597313 -34960,3403:393:1,33,-49,0,0,-0.00594133 -34961,3403:393:2,33.5,-49,0,0,-0.00596782 -34962,3403:394:1,34,-49,0,0,-0.00610872 -34963,3403:394:2,34.5,-49,0,0,-0.00615781 -34964,3403:495:1,35,-49,0,0,-0.00631448 -34965,3403:495:2,35.5,-49,0,0,-0.00705566 -34966,3403:496:1,36,-49,0,0,-0.00734565 -34967,3403:496:2,36.5,-49,0,0,-0.00742122 -34968,3403:497:1,37,-49,0,0,-0.00725467 -34969,3403:497:2,37.5,-49,0,0,-0.00666062 -34970,3403:498:1,38,-49,0,0,-0.00639641 -34971,3403:498:2,38.5,-49,0,0,-0.00635531 -34972,3403:499:1,39,-49,0,0,-0.00627808 -34973,3403:499:2,39.5,-49,0,0,-0.00627387 -34974,3404:390:1,40,-49,0,0,-0.00645213 -34975,3404:390:2,40.5,-49,0,0,-0.0071808 -34976,3404:391:1,41,-49,0,0,-0.00721119 -34977,3404:391:2,41.5,-49,0,0,-0.00689886 -34978,3404:392:1,42,-49,0,0,-0.00657965 -34979,3404:392:2,42.5,-49,0,0,-0.00646936 -34980,3404:393:1,43,-49,0,0,-0.00655919 -34981,3404:393:2,43.5,-49,0,0,-0.00675313 -34982,3404:394:1,44,-49,0,0,-0.00713777 -34983,3404:394:2,44.5,-49,0,0,-0.00755962 -34984,3404:495:1,45,-49,0,0,-0.00751431 -34985,3404:495:2,45.5,-49,0,0,-0.00741956 -34986,3404:496:1,46,-49,0,0,-0.00737514 -34987,3404:496:2,46.5,-49,0,0,-0.00721281 -34988,3404:497:1,47,-49,0,0,-0.00738993 -34989,3404:497:2,47.5,-49,0,0,-0.00795859 -34990,3404:498:1,48,-49,0,0,-0.00798704 -34991,3404:498:2,48.5,-49,0,0,-0.0081997 -34992,3404:499:1,49,-49,0,0,-0.00821616 -34993,3404:499:2,49.5,-49,0,0,-0.00802802 -34994,3405:390:1,50,-49,0,0,-0.00793914 -34995,3405:390:2,50.5,-49,0,0,-0.00732114 -34996,3405:391:1,51,-49,0,0,-0.00733911 -34997,3405:391:2,51.5,-49,0,0,-0.00738336 -34998,3405:392:1,52,-49,0,0,-0.00756975 -34999,3405:392:2,52.5,-49,0,0,-0.00867328 -35000,3405:393:1,53,-49,0,0,-0.00820522 -35001,3405:393:2,53.5,-49,0,0,-0.00808008 -35002,3405:394:1,54,-49,0,0,-0.00810891 -35003,3405:394:2,54.5,-49,0,0,-0.00800127 -35004,3405:495:1,55,-49,0,0,-0.00770575 -35005,3405:495:2,55.5,-49,0,0,-0.007521 -35006,3405:496:1,56,-49,0,0,-0.00750095 -35007,3405:496:2,56.5,-49,0,0,-0.00757983 -35008,3405:497:1,57,-49,0,0,-0.00770229 -35009,3405:497:2,57.5,-49,0,0,-0.00780243 -35010,3405:498:1,58,-49,0,0,-0.00788274 -35011,3405:498:2,58.5,-49,0,0,-0.00789856 -35012,3405:499:1,59,-49,0,0,-0.00779893 -35013,3405:499:2,59.5,-49,0,0,-0.00784773 -35014,3406:390:1,60,-49,0,0,-0.00813242 -35015,3406:390:2,60.5,-49,0,0,-0.00828971 -35016,3406:391:1,61,-49,0,0,-0.00838631 -35017,3406:391:2,61.5,-49,0,0,-0.0084614 -35018,3406:392:1,62,-49,0,0,-0.00843314 -35019,3406:392:2,62.5,-49,0,0,-0.00839749 -35020,3406:393:1,63,-49,0,0,-0.00856951 -35021,3406:393:2,63.5,-49,0,0,-0.00891038 -35022,3406:394:1,64,-49,0,0,-0.00930215 -35023,3406:394:2,64.5,-49,0,0,-0.0097113 -35024,3406:495:1,65,-49,0,0,-0.0100374 -35025,3406:495:2,65.5,-49,0,0,-0.0100868 -35026,3406:496:1,66,-49,0,0,-0.00998154 -35027,3406:496:2,66.5,-49,0,0,-0.00935 -35028,3406:497:1,67,-49,0,0,-0.00838255 -35029,3406:497:2,67.5,-49,0,0,-0.00809448 -35030,3406:498:1,68,-49,0,0,-0.00815961 -35031,3406:498:2,68.5,-49,0,0,-0.0083919 -35032,3406:499:1,69,-49,0,0,-0.0086559 -35033,3406:499:2,69.5,-49,0,0,-0.00887469 -35034,3407:390:1,70,-49,0,0,-0.00909497 -35035,3407:390:2,70.5,-49,0,0,-0.00927314 -35036,3407:391:1,71,-49,0,0,-0.00933538 -35037,3407:391:2,71.5,-49,0,0,-0.0092773 -35038,3407:392:1,72,-49,0,0,-0.00867328 -35039,3407:392:2,72.5,-49,0,0,-0.00803517 -35040,3407:393:2,73.5,-49,0,0,-0.00790033 -35041,3407:394:1,74,-49,0,0,-0.00808903 -35042,3407:394:2,74.5,-49,0,0,-0.00839938 -35043,3407:495:1,75,-49,0,0,-0.00836575 -35044,3407:495:2,75.5,-49,0,0,-0.0077747 -35045,3407:496:1,76,-49,0,0,-0.00708239 -35046,3407:496:2,76.5,-49,0,0,-0.00717597 -35047,3407:497:1,77,-49,0,0,-0.00747094 -35048,3407:497:2,77.5,-49,0,0,-0.00741628 -35049,3407:498:1,78,-49,0,0,-0.00728538 -35050,3407:498:2,78.5,-49,0,0,-0.00718397 -35051,3407:499:1,79,-49,0,0,-0.00714728 -35052,3407:499:2,79.5,-49,0,0,-0.00712029 -35053,3408:390:1,80,-49,0,0,-0.00708398 -35054,3408:390:2,80.5,-49,0,0,-0.00710605 -35055,3408:391:1,81,-49,0,0,-0.00719197 -35056,3408:391:2,81.5,-49,0,0,-0.00701805 -35057,3408:392:1,82,-49,0,0,-0.00669925 -35058,3408:392:2,82.5,-49,0,0,-0.00642207 -35059,3408:393:1,83,-49,0,0,-0.00616467 -35060,3408:393:2,83.5,-49,0,0,-0.00644067 -35061,3408:394:1,84,-49,0,0,-0.00730976 -35062,3408:394:2,84.5,-49,0,0,-0.00881357 -35063,3408:495:1,85,-49,0,0,-0.010545 -35064,3408:495:2,85.5,-49,0,0,-0.0114202 -35065,3408:496:1,86,-49,0,0,-0.0115692 -35066,3408:496:2,86.5,-49,0,0,-0.0115925 -35067,3408:497:1,87,-49,0,0,-0.0112255 -35068,3408:497:2,87.5,-49,0,0,-0.0105167 -35069,3408:498:1,88,-49,0,0,-0.0112079 -35070,3408:498:2,88.5,-49,0,0,-0.0116158 -35071,3408:499:1,89,-49,0,0,-0.0106633 -35072,3408:499:2,89.5,-49,0,0,-0.0101138 -35073,3409:390:1,90,-49,0,0,-0.00996151 -35074,3409:390:2,90.5,-49,0,0,-0.00968318 -35075,3409:391:1,91,-49,0,0,-0.00956083 -35076,3409:391:2,91.5,-49,0,0,-0.00941065 -35077,3409:392:1,92,-49,0,0,-0.00918259 -35078,3409:392:2,92.5,-49,0,0,-0.00893818 -35079,3409:393:1,93,-49,0,0,-0.00882142 -35080,3409:393:2,93.5,-49,0,0,-0.00876264 -35081,3409:394:1,94,-49,0,0,-0.00849917 -35082,3409:394:2,94.5,-49,0,0,-0.00831003 -35083,3409:495:1,95,-49,0,0,-0.00853142 -35084,3409:495:2,95.5,-49,0,0,-0.00908687 -35085,3409:496:1,96,-49,0,0,-0.0090082 -35086,3409:496:2,96.5,-49,0,0,-0.00918671 -35087,3409:497:1,97,-49,0,0,-0.00999712 -35088,3409:497:2,97.5,-49,0,0,-0.0105332 -35089,3409:498:1,98,-49,0,0,-0.0103052 -35090,3409:498:2,98.5,-49,0,0,-0.0098356 -35091,3409:499:1,99,-49,0,0,-0.00953106 -35092,3409:499:2,99.5,-49,0,0,-0.00936459 -35093,3410:390:1,100,-49,0,0,-0.00971349 -35094,3410:390:2,100.5,-49,0,0,-0.0103075 -35095,3410:391:1,101,-49,0,0,-0.0102616 -35096,3410:391:2,101.5,-49,0,0,-0.00980271 -35097,3410:392:1,102,-49,0,0,-0.00925045 -35098,3410:392:2,102.5,-49,0,0,-0.00937919 -35099,3410:393:1,103,-49,0,0,-0.00970912 -35100,3410:393:2,103.5,-49,0,0,-0.010559 -35101,3410:394:1,104,-49,0,0,-0.0109848 -35102,3410:394:2,104.5,-49,0,0,-0.0110834 -35103,3410:495:1,105,-49,0,0,-0.0111181 -35104,3410:495:2,105.5,-49,0,0,-0.011066 -35105,3410:496:1,106,-49,0,0,-0.0108895 -35106,3410:496:2,106.5,-49,0,0,-0.0107926 -35107,3410:497:1,107,-49,0,0,-0.0110118 -35108,3410:497:2,107.5,-49,0,0,-0.011243 -35109,3410:498:1,108,-49,0,0,-0.0113846 -35110,3410:498:2,108.5,-49,0,0,-0.0116081 -35111,3410:499:1,109,-49,0,0,-0.0116262 -35112,3410:499:2,109.5,-49,0,0,-0.011515 -35113,3411:390:1,110,-49,0,0,-0.0116705 -35114,3411:390:2,110.5,-49,0,0,-0.0122507 -35115,3411:391:1,111,-49,0,0,-0.0124384 -35116,3411:391:2,111.5,-49,0,0,-0.012237 -35117,3411:392:1,112,-49,0,0,-0.0118731 -35118,3411:392:2,112.5,-49,0,0,-0.0113338 -35119,3411:393:1,113,-49,0,0,-0.0109603 -35120,3411:393:2,113.5,-49,0,0,-0.0112079 -35121,3411:394:1,114,-49,0,0,-0.0115459 -35122,3411:394:2,114.5,-49,0,0,-0.0117333 -35123,3411:495:1,115,-49,0,0,-0.0118334 -35124,3411:495:2,115.5,-49,0,0,-0.0121443 -35125,3411:496:1,116,-49,0,0,-0.0134369 -35126,3411:496:2,116.5,-49,0,0,-0.0135912 -35127,3411:497:1,117,-49,0,0,-0.0133948 -35128,3411:497:2,117.5,-49,0,0,-0.0133439 -35129,3411:498:1,118,-49,0,0,-0.0132992 -35130,3411:498:2,118.5,-49,0,0,-0.0132694 -35131,3411:499:1,119,-49,0,0,-0.0131806 -35132,3411:499:2,119.5,-49,0,0,-0.0130164 -35133,3412:390:1,120,-49,0,0,-0.0126801 -35134,3412:390:2,120.5,-49,0,0,-0.0126206 -35135,3412:391:1,121,-49,0,0,-0.0134309 -35136,3412:391:2,121.5,-49,0,0,-0.0143355 -35137,3412:392:1,122,-49,0,0,-0.0152028 -35138,3412:392:2,122.5,-49,0,0,-0.0158756 -35139,3412:393:1,123,-49,0,0,-0.0161054 -35140,3412:393:2,123.5,-49,0,0,-0.0158294 -35141,3412:394:1,124,-49,0,0,-0.0151552 -35142,3412:394:2,124.5,-49,0,0,-0.0147395 -35143,3412:495:1,125,-49,0,0,-0.0148025 -35144,3412:495:2,125.5,-49,0,0,-0.0148891 -35145,3412:496:1,126,-49,0,0,-0.0151077 -35146,3412:496:2,126.5,-49,0,0,-0.0152438 -35147,3412:497:1,127,-49,0,0,-0.015237 -35148,3412:497:2,127.5,-49,0,0,-0.0150535 -35149,3412:498:1,128,-49,0,0,-0.0148224 -35150,3412:498:2,128.5,-49,0,0,-0.0145393 -35151,3412:499:1,129,-49,0,0,-0.0142522 -35152,3412:499:2,129.5,-49,0,0,-0.0139459 -35153,3413:390:1,130,-49,0,0,-0.0136614 -35154,3413:390:2,130.5,-49,0,0,-0.013579 -35155,3413:391:1,131,-49,0,0,-0.0137166 -35156,3413:391:2,131.5,-49,0,0,-0.0139115 -35157,3413:392:1,132,-49,0,0,-0.0138618 -35158,3413:392:2,132.5,-49,0,0,-0.0137043 -35159,3413:393:1,133,-49,0,0,-0.0137443 -35160,3413:393:2,133.5,-49,0,0,-0.0140871 -35161,3413:394:1,134,-49,0,0,-0.0143645 -35162,3413:394:2,134.5,-49,0,0,-0.0143355 -35163,3413:495:1,135,-49,0,0,-0.0140462 -35164,3413:495:2,135.5,-49,0,0,-0.0136705 -35165,3413:496:1,136,-49,0,0,-0.0133948 -35166,3413:496:2,136.5,-49,0,0,-0.0132813 -35167,3413:497:1,137,-49,0,0,-0.0132161 -35168,3413:497:2,137.5,-49,0,0,-0.0131247 -35169,3413:498:1,138,-49,0,0,-0.0131511 -35170,3413:498:2,138.5,-49,0,0,-0.0131748 -35171,3413:499:1,139,-49,0,0,-0.0130865 -35172,3413:499:2,139.5,-49,0,0,-0.0130924 -35173,3414:390:1,140,-49,0,0,-0.013225 -35174,3414:390:2,140.5,-49,0,0,-0.0135032 -35175,3414:391:1,141,-49,0,0,-0.0141473 -35176,3414:391:2,141.5,-49,0,0,-0.0149124 -35177,3414:392:1,142,-49,0,0,-0.0152678 -35178,3414:392:2,142.5,-49,0,0,-0.0152815 -35179,3414:393:1,143,-49,0,0,-0.0150671 -35180,3414:393:2,143.5,-49,0,0,-0.0147992 -35181,3414:394:1,144,-49,0,0,-0.0145851 -35182,3414:394:2,144.5,-49,0,0,-0.0144581 -35183,3414:495:1,145,-49,0,0,-0.0143967 -35184,3414:495:2,145.5,-49,0,0,-0.0142363 -35185,3414:496:1,146,-49,0,0,-0.0139489 -35186,3414:496:2,146.5,-49,0,0,-0.0135365 -35187,3414:497:1,147,-49,0,0,-0.013034 -35188,3414:497:2,147.5,-49,0,0,-0.0125643 -35189,3414:498:1,148,-49,0,0,-0.0116132 -35190,3414:498:2,148.5,-49,0,0,-0.0101228 -35191,3414:499:1,149,-49,0,0,-0.0092773 -35192,3414:499:2,149.5,-49,0,0,-0.0097113 -35193,3415:390:1,150,-49,0,0,-0.00961434 -35194,3415:390:2,150.5,-49,0,0,-0.00989061 -35195,3415:391:1,151,-49,0,0,-0.0108265 -35196,3415:391:2,151.5,-49,0,0,-0.0107614 -35197,3415:392:1,152,-49,0,0,-0.0113973 -35198,3415:392:2,152.5,-49,0,0,-0.014909 -35199,3415:393:1,153,-49,0,0,-0.0173446 -35200,3415:393:2,153.5,-49,0,0,-0.0184097 -35201,3415:394:1,154,-49,0,0,-0.0178069 -35202,3415:394:2,154.5,-49,0,0,-0.0174659 -35203,3415:495:1,155,-49,0,0,-0.0173837 -35204,3415:495:2,155.5,-49,0,0,-0.0168226 -35205,3415:496:1,156,-49,0,0,-0.0149359 -35206,3415:496:2,156.5,-49,0,0,-0.0121688 -35207,3415:497:1,157,-49,0,0,-0.0116081 -35208,3415:497:2,157.5,-49,0,0,-0.0121172 -35209,3415:498:1,158,-49,0,0,-0.012458 -35210,3415:498:2,158.5,-49,0,0,-0.0150671 -35211,3415:499:1,159,-49,0,0,-0.0166422 -35212,3415:499:2,159.5,-49,0,0,-0.0169591 -35213,3416:390:1,160,-49,0,0,-0.0165787 -35214,3416:390:2,160.5,-49,0,0,-0.0157585 -35215,3416:391:1,161,-49,0,0,-0.0149058 -35216,3416:391:2,161.5,-49,0,0,-0.0163311 -35217,3416:392:1,162,-49,0,0,-0.017719 -35218,3416:392:2,162.5,-49,0,0,-0.0166721 -35219,3416:393:1,163,-49,0,0,-0.0184014 -35220,3416:393:2,163.5,-49,0,0,-0.0226993 -35221,3416:394:1,164,-49,0,0,-0.0238678 -35222,3416:394:2,164.5,-49,0,0,-0.0237116 -35223,3416:495:1,165,-49,0,0,-0.0233076 -35224,3416:495:2,165.5,-49,0,0,-0.0226941 -35225,3416:496:1,166,-49,0,0,-0.0220175 -35226,3416:496:2,166.5,-49,0,0,-0.0219481 -35227,3416:497:1,167,-49,0,0,-0.0217066 -35228,3416:497:2,167.5,-49,0,0,-0.021497 -35229,3416:498:1,168,-49,0,0,-0.0214147 -35230,3416:498:2,168.5,-49,0,0,-0.0215164 -35231,3416:499:1,169,-49,0,0,-0.0222374 -35232,3416:499:2,169.5,-49,0,0,-0.0229003 -35233,3417:390:1,170,-49,0,0,-0.0229365 -35234,3417:390:2,170.5,-49,0,0,-0.022648 -35235,3417:391:1,171,-49,0,0,-0.0223937 -35236,3417:391:2,171.5,-49,0,0,-0.0224799 -35237,3417:392:1,172,-49,0,0,-0.02353 -35238,3417:392:2,172.5,-49,0,0,-0.0257019 -35239,3417:393:1,173,-49,0,0,-0.0270226 -35240,3417:393:2,173.5,-49,0,0,-0.0274243 -35241,3417:394:1,174,-49,0,0,-0.0277184 -35242,3417:394:2,174.5,-49,0,0,-0.0280096 -35243,3417:495:1,175,-49,0,0,-0.0282589 -35244,3417:495:2,175.5,-49,0,0,-0.0282654 -35245,3417:496:1,176,-49,0,0,-0.0274182 -35246,3417:496:2,176.5,-49,0,0,-0.0250296 -35247,3417:497:1,177,-49,0,0,-0.0221223 -35248,3417:497:2,177.5,-49,0,0,-0.0201996 -35249,3417:498:1,178,-49,0,0,-0.0192315 -35250,3417:498:2,178.5,-49,0,0,-0.0189307 -35251,3417:499:1,179,-49,0,0,-0.0198164 -35252,3417:499:2,179.5,-49,0,0,-0.0220823 -35253,3418:390:1,180,-49,0,0,-0.0235887 -35254,5418:380:3,-180,-48.5,0,0,-0.0252231 -35255,5417:489:4,-179.5,-48.5,0,0,-0.0254758 -35256,5417:489:3,-179,-48.5,0,0,-0.0244471 -35257,5417:488:4,-178.5,-48.5,0,0,-0.0226788 -35258,5417:488:3,-178,-48.5,0,0,-0.0213038 -35259,5417:487:4,-177.5,-48.5,0,0,-0.0203642 -35260,5417:487:3,-177,-48.5,0,0,-0.0198387 -35261,5417:486:4,-176.5,-48.5,0,0,-0.0215456 -35262,5417:486:3,-176,-48.5,0,0,-0.0241282 -35263,5417:485:4,-175.5,-48.5,0,0,-0.0241556 -35264,5417:485:3,-175,-48.5,0,0,-0.0240846 -35265,5417:384:4,-174.5,-48.5,0,0,-0.0241229 -35266,5417:384:3,-174,-48.5,0,0,-0.0241119 -35267,5417:383:4,-173.5,-48.5,0,0,-0.0240086 -35268,5417:383:3,-173,-48.5,0,0,-0.0236206 -35269,5417:382:4,-172.5,-48.5,0,0,-0.0230508 -35270,5417:382:3,-172,-48.5,0,0,-0.0234027 -35271,5417:381:4,-171.5,-48.5,0,0,-0.0241011 -35272,5417:381:3,-171,-48.5,0,0,-0.0242159 -35273,5417:380:4,-170.5,-48.5,0,0,-0.0237224 -35274,5417:380:3,-170,-48.5,0,0,-0.0227096 -35275,5416:489:4,-169.5,-48.5,0,0,-0.0218 -35276,5416:489:3,-169,-48.5,0,0,-0.0204884 -35277,5416:488:4,-168.5,-48.5,0,0,-0.0193575 -35278,5416:488:3,-168,-48.5,0,0,-0.0187399 -35279,5416:487:4,-167.5,-48.5,0,0,-0.0187905 -35280,5416:487:3,-167,-48.5,0,0,-0.0193531 -35281,5416:486:4,-166.5,-48.5,0,0,-0.0201996 -35282,5416:486:3,-166,-48.5,0,0,-0.0209321 -35283,5416:485:4,-165.5,-48.5,0,0,-0.0216284 -35284,5416:485:3,-165,-48.5,0,0,-0.0218689 -35285,5416:384:4,-164.5,-48.5,0,0,-0.0214485 -35286,5416:384:3,-164,-48.5,0,0,-0.0206462 -35287,5416:383:4,-163.5,-48.5,0,0,-0.0198342 -35288,5416:383:3,-163,-48.5,0,0,-0.0191882 -35289,5416:382:4,-162.5,-48.5,0,0,-0.0187991 -35290,5416:382:3,-162,-48.5,0,0,-0.018761 -35291,5416:381:4,-161.5,-48.5,0,0,-0.0190719 -35292,5416:381:3,-161,-48.5,0,0,-0.0197895 -35293,5416:380:4,-160.5,-48.5,0,0,-0.0221322 -35294,5416:380:3,-160,-48.5,0,0,-0.023334 -35295,5415:489:4,-159.5,-48.5,0,0,-0.023192 -35296,5415:489:3,-159,-48.5,0,0,-0.0228796 -35297,5415:488:4,-158.5,-48.5,0,0,-0.0229003 -35298,5415:488:3,-158,-48.5,0,0,-0.0240411 -35299,5415:487:4,-157.5,-48.5,0,0,-0.0249109 -35300,5415:487:3,-157,-48.5,0,0,-0.0248713 -35301,5415:486:4,-156.5,-48.5,0,0,-0.0239001 -35302,5415:486:3,-156,-48.5,0,0,-0.0225816 -35303,5415:485:4,-155.5,-48.5,0,0,-0.0216089 -35304,5415:485:3,-155,-48.5,0,0,-0.0209228 -35305,5415:384:4,-154.5,-48.5,0,0,-0.0203183 -35306,5415:384:3,-154,-48.5,0,0,-0.0197006 -35307,5415:383:4,-153.5,-48.5,0,0,-0.0180123 -35308,5415:383:3,-153,-48.5,0,0,-0.0156739 -35309,5415:382:4,-152.5,-48.5,0,0,-0.0150603 -35310,5415:382:3,-152,-48.5,0,0,-0.0149828 -35311,5415:381:4,-151.5,-48.5,0,0,-0.0141505 -35312,5415:381:3,-151,-48.5,0,0,-0.0133858 -35313,5415:380:4,-150.5,-48.5,0,0,-0.0122124 -35314,5415:380:3,-150,-48.5,0,0,-0.0117018 -35315,5414:489:4,-149.5,-48.5,0,0,-0.0115977 -35316,5414:489:3,-149,-48.5,0,0,-0.0124301 -35317,5414:488:4,-148.5,-48.5,0,0,-0.012817 -35318,5414:488:3,-148,-48.5,0,0,-0.0123001 -35319,5414:487:4,-147.5,-48.5,0,0,-0.0119343 -35320,5414:487:3,-147,-48.5,0,0,-0.0121797 -35321,5414:486:4,-146.5,-48.5,0,0,-0.0118917 -35322,5414:486:3,-146,-48.5,0,0,-0.0119584 -35323,5414:485:4,-145.5,-48.5,0,0,-0.0134821 -35324,5414:485:3,-145,-48.5,0,0,-0.0150299 -35325,5414:384:4,-144.5,-48.5,0,0,-0.0166123 -35326,5414:384:3,-144,-48.5,0,0,-0.0190719 -35327,5414:383:4,-143.5,-48.5,0,0,-0.0220873 -35328,5414:383:3,-143,-48.5,0,0,-0.0250523 -35329,5414:382:4,-142.5,-48.5,0,0,-0.0273497 -35330,5414:382:3,-142,-48.5,0,0,-0.0284845 -35331,5414:381:4,-141.5,-48.5,0,0,-0.0291725 -35332,5414:381:3,-141,-48.5,0,0,-0.0284845 -35333,5414:380:4,-140.5,-48.5,0,0,-0.0252974 -35334,5414:380:3,-140,-48.5,0,0,-0.0230144 -35335,5413:489:4,-139.5,-48.5,0,0,-0.0217409 -35336,5413:489:3,-139,-48.5,0,0,-0.0219086 -35337,5413:488:4,-138.5,-48.5,0,0,-0.0228589 -35338,5413:488:3,-138,-48.5,0,0,-0.0243918 -35339,5413:487:4,-137.5,-48.5,0,0,-0.0263448 -35340,5413:487:3,-137,-48.5,0,0,-0.0275116 -35341,5413:486:4,-136.5,-48.5,0,0,-0.0282716 -35342,5413:486:3,-136,-48.5,0,0,-0.0277438 -35343,5413:485:4,-135.5,-48.5,0,0,-0.0257485 -35344,5413:485:3,-135,-48.5,0,0,-0.0258832 -35345,5413:384:4,-134.5,-48.5,0,0,-0.0301989 -35346,5413:384:3,-134,-48.5,0,0,-0.0336682 -35347,5413:383:4,-133.5,-48.5,0,0,-0.0336837 -35348,5413:383:3,-133,-48.5,0,0,-0.0333393 -35349,5413:382:4,-132.5,-48.5,0,0,-0.0317581 -35350,5413:382:3,-132,-48.5,0,0,-0.0277123 -35351,5413:381:4,-131.5,-48.5,0,0,-0.0258773 -35352,5413:381:3,-131,-48.5,0,0,-0.0231292 -35353,5413:380:4,-130.5,-48.5,0,0,-0.0230405 -35354,5413:380:3,-130,-48.5,0,0,-0.0284974 -35355,5412:489:4,-129.5,-48.5,0,0,-0.0343442 -35356,5412:489:3,-129,-48.5,0,0,-0.0373106 -35357,5412:488:4,-128.5,-48.5,0,0,-0.037379 -35358,5412:488:3,-128,-48.5,0,0,-0.033653 -35359,5412:487:4,-127.5,-48.5,0,0,-0.0330892 -35360,5412:487:3,-127,-48.5,0,0,-0.0352027 -35361,5412:486:4,-126.5,-48.5,0,0,-0.0378882 -35362,5412:486:3,-126,-48.5,0,0,-0.0400522 -35363,5412:485:4,-125.5,-48.5,0,0,-0.0396313 -35364,5412:485:3,-125,-48.5,0,0,-0.0381498 -35365,5412:384:4,-124.5,-48.5,0,0,-0.0368942 -35366,5412:384:3,-124,-48.5,0,0,-0.0334766 -35367,5412:383:4,-123.5,-48.5,0,0,-0.0318015 -35368,5412:383:3,-123,-48.5,0,0,-0.0307191 -35369,5412:382:4,-122.5,-48.5,0,0,-0.0270288 -35370,5412:382:3,-122,-48.5,0,0,-0.0218788 -35371,5412:381:4,-121.5,-48.5,0,0,-0.0195283 -35372,5412:381:3,-121,-48.5,0,0,-0.0191493 -35373,5412:380:4,-120.5,-48.5,0,0,-0.0194581 -35374,5412:380:3,-120,-48.5,0,0,-0.020852 -35375,5411:489:4,-119.5,-48.5,0,0,-0.0238408 -35376,5411:489:3,-119,-48.5,0,0,-0.0259301 -35377,5411:488:4,-118.5,-48.5,0,0,-0.0269677 -35378,5411:488:3,-118,-48.5,0,0,-0.0269371 -35379,5411:487:4,-117.5,-48.5,0,0,-0.0259007 -35380,5411:487:3,-117,-48.5,0,0,-0.0248713 -35381,5411:486:4,-116.5,-48.5,0,0,-0.026986 -35382,5411:486:3,-116,-48.5,0,0,-0.0284587 -35383,5411:485:4,-115.5,-48.5,0,0,-0.0289019 -35384,5411:485:3,-115,-48.5,0,0,-0.0296676 -35385,5411:384:4,-114.5,-48.5,0,0,-0.0300754 -35386,5411:384:3,-114,-48.5,0,0,-0.0301235 -35387,5411:383:4,-113.5,-48.5,0,0,-0.0303023 -35388,5411:383:3,-113,-48.5,0,0,-0.0312198 -35389,5411:382:4,-112.5,-48.5,0,0,-0.0324017 -35390,5411:382:3,-112,-48.5,0,0,-0.0324536 -35391,5411:381:4,-111.5,-48.5,0,0,-0.0317798 -35392,5411:381:3,-111,-48.5,0,0,-0.0310354 -35393,5411:380:4,-110.5,-48.5,0,0,-0.0306841 -35394,5411:380:3,-110,-48.5,0,0,-0.0304543 -35395,5410:489:4,-109.5,-48.5,0,0,-0.0301784 -35396,5410:489:3,-109,-48.5,0,0,-0.02958 -35397,5410:488:4,-108.5,-48.5,0,0,-0.0287904 -35398,5410:488:3,-108,-48.5,0,0,-0.028182 -35399,5410:487:4,-107.5,-48.5,0,0,-0.0278637 -35400,5410:487:3,-107,-48.5,0,0,-0.0276933 -35401,5410:486:4,-106.5,-48.5,0,0,-0.0276872 -35402,5410:486:3,-106,-48.5,0,0,-0.0276933 -35403,5410:485:4,-105.5,-48.5,0,0,-0.0276055 -35404,5410:485:3,-105,-48.5,0,0,-0.0274617 -35405,5410:384:4,-104.5,-48.5,0,0,-0.0273001 -35406,5410:384:3,-104,-48.5,0,0,-0.0269186 -35407,5410:383:4,-103.5,-48.5,0,0,-0.0259712 -35408,5410:383:3,-103,-48.5,0,0,-0.0247309 -35409,5410:382:4,-102.5,-48.5,0,0,-0.0235993 -35410,5410:382:3,-102,-48.5,0,0,-0.0229417 -35411,5410:381:4,-101.5,-48.5,0,0,-0.022602 -35412,5410:381:3,-101,-48.5,0,0,-0.0225002 -35413,5410:380:4,-100.5,-48.5,0,0,-0.0225409 -35414,5410:380:3,-100,-48.5,0,0,-0.0226891 -35415,5409:489:4,-99.5,-48.5,0,0,-0.0229884 -35416,5409:489:3,-99,-48.5,0,0,-0.0234292 -35417,5409:488:4,-98.5,-48.5,0,0,-0.023911 -35418,5409:488:3,-98,-48.5,0,0,-0.0243367 -35419,5409:487:4,-97.5,-48.5,0,0,-0.0245525 -35420,5409:487:3,-97,-48.5,0,0,-0.0244471 -35421,5409:486:4,-96.5,-48.5,0,0,-0.0240248 -35422,5409:486:3,-96,-48.5,0,0,-0.0233709 -35423,5409:485:4,-95.5,-48.5,0,0,-0.0228848 -35424,5409:485:3,-95,-48.5,0,0,-0.0229884 -35425,5409:384:4,-94.5,-48.5,0,0,-0.0237708 -35426,5409:384:3,-94,-48.5,0,0,-0.0242433 -35427,5409:383:4,-93.5,-48.5,0,0,-0.0241666 -35428,5409:383:3,-93,-48.5,0,0,-0.0239434 -35429,5409:382:4,-92.5,-48.5,0,0,-0.0234875 -35430,5409:382:3,-92,-48.5,0,0,-0.0230925 -35431,5409:381:4,-91.5,-48.5,0,0,-0.0230874 -35432,5409:381:3,-91,-48.5,0,0,-0.023171 -35433,5409:380:4,-90.5,-48.5,0,0,-0.0228383 -35434,5409:380:3,-90,-48.5,0,0,-0.0228331 -35435,5408:489:4,-89.5,-48.5,0,0,-0.0232077 -35436,5408:489:3,-89,-48.5,0,0,-0.0236046 -35437,5408:488:4,-88.5,-48.5,0,0,-0.0241502 -35438,5408:488:3,-88,-48.5,0,0,-0.0244804 -35439,5408:487:4,-87.5,-48.5,0,0,-0.0245303 -35440,5408:487:3,-87,-48.5,0,0,-0.0244471 -35441,5408:486:4,-86.5,-48.5,0,0,-0.0243092 -35442,5408:486:3,-86,-48.5,0,0,-0.0241774 -35443,5408:485:4,-85.5,-48.5,0,0,-0.0240846 -35444,5408:485:3,-85,-48.5,0,0,-0.0240086 -35445,5408:384:4,-84.5,-48.5,0,0,-0.0238515 -35446,5408:384:3,-84,-48.5,0,0,-0.0236314 -35447,5408:383:4,-83.5,-48.5,0,0,-0.0233974 -35448,5408:383:3,-83,-48.5,0,0,-0.0232445 -35449,5408:382:4,-82.5,-48.5,0,0,-0.0232602 -35450,5408:382:3,-82,-48.5,0,0,-0.0234609 -35451,5408:381:4,-81.5,-48.5,0,0,-0.0237493 -35452,5408:381:3,-81,-48.5,0,0,-0.0239814 -35453,5408:380:4,-80.5,-48.5,0,0,-0.0241119 -35454,5408:380:3,-80,-48.5,0,0,-0.0241337 -35455,5407:489:4,-79.5,-48.5,0,0,-0.0241064 -35456,5407:489:3,-79,-48.5,0,0,-0.0240846 -35457,5407:488:4,-78.5,-48.5,0,0,-0.0240846 -35458,5407:488:3,-78,-48.5,0,0,-0.0241174 -35459,5407:487:4,-77.5,-48.5,0,0,-0.0242267 -35460,5407:487:3,-77,-48.5,0,0,-0.0243697 -35461,5407:486:4,-76.5,-48.5,0,0,-0.0243864 -35462,5407:486:3,-76,-48.5,0,0,-0.0242761 -35463,5407:485:4,-75.5,-48.5,0,0,-0.0242817 -35464,5407:485:3,-75,-48.5,0,0,-0.0244582 -35465,5407:384:4,-74.5,-48.5,0,0,-0.0248883 -35466,5407:384:3,-74,-48.5,0,0,-0.0256554 -35467,5407:383:4,-73.5,-48.5,0,0,-0.0269127 -35468,5407:383:3,-73,-48.5,0,0,-0.0265428 -35469,5407:382:4,-72.5,-48.5,0,0,-0.0257193 -35470,5407:382:3,-72,-48.5,0,0,-0.0254989 -35471,5407:381:4,-71.5,-48.5,0,0,-0.0270841 -35472,5407:381:3,-71,-48.5,0,0,-0.0280477 -35473,5407:380:4,-70.5,-48.5,0,0,-0.0281436 -35474,5407:380:3,-70,-48.5,0,0,-0.0284263 -35475,5406:489:4,-69.5,-48.5,0,0,-0.0274554 -35476,5406:489:3,-69,-48.5,0,0,-0.0260243 -35477,5406:488:4,-68.5,-48.5,0,0,-0.0246639 -35478,5406:488:3,-68,-48.5,0,0,-0.0234239 -35479,5406:487:4,-67.5,-48.5,0,0,-0.0223533 -35480,5406:487:3,-67,-48.5,0,0,-0.0198834 -35481,5406:486:4,-66.5,-48.5,0,0,-0.0176079 -35482,5406:486:3,-66,-48.5,0,0,-0.0165861 -35483,5406:485:4,-65.5,-48.5,0,0,-0.0170088 -35484,5406:485:3,-65,-48.5,0,0,-0.0176713 -35485,5406:384:4,-64.5,-48.5,0,0,-0.0176673 -35486,5406:384:3,-64,-48.5,0,0,-0.0175841 -35487,5406:383:4,-63.5,-48.5,0,0,-0.0172745 -35488,5406:383:3,-63,-48.5,0,0,-0.0171778 -35489,5406:382:4,-62.5,-48.5,0,0,-0.0171431 -35490,5406:382:3,-62,-48.5,0,0,-0.0172396 -35491,5406:381:4,-61.5,-48.5,0,0,-0.0173329 -35492,5406:381:3,-61,-48.5,0,0,-0.0171315 -35493,5406:380:4,-60.5,-48.5,0,0,-0.0171315 -35494,5406:380:3,-60,-48.5,0,0,-0.0167171 -35495,5405:489:4,-59.5,-48.5,0,0,-0.0152609 -35496,5405:489:3,-59,-48.5,0,0,-0.0135365 -35497,5405:488:4,-58.5,-48.5,0,0,-0.0127683 -35498,5405:488:3,-58,-48.5,0,0,-0.0139146 -35499,5405:487:4,-57.5,-48.5,0,0,-0.014776 -35500,5405:487:3,-57,-48.5,0,0,-0.0150097 -35501,5405:486:4,-56.5,-48.5,0,0,-0.0146802 -35502,5405:486:3,-56,-48.5,0,0,-0.012837 -35503,5405:485:4,-55.5,-48.5,0,0,-0.0108338 -35504,5405:485:3,-55,-48.5,0,0,-0.0102364 -35505,5405:384:4,-54.5,-48.5,0,0,-0.0103537 -35506,5405:384:3,-54,-48.5,0,0,-0.0112757 -35507,5405:383:4,-53.5,-48.5,0,0,-0.0119584 -35508,5405:383:3,-53,-48.5,0,0,-0.0123552 -35509,5405:382:4,-52.5,-48.5,0,0,-0.0127284 -35510,5405:382:3,-52,-48.5,0,0,-0.0118864 -35511,5405:381:4,-51.5,-48.5,0,0,-0.0115176 -35512,5405:381:3,-51,-48.5,0,0,-0.0118255 -35513,5405:380:4,-50.5,-48.5,0,0,-0.0119477 -35514,5405:380:3,-50,-48.5,0,0,-0.0117018 -35515,5404:489:4,-49.5,-48.5,0,0,-0.0110044 -35516,5404:489:3,-49,-48.5,0,0,-0.0099548 -35517,5404:488:4,-48.5,-48.5,0,0,-0.00946325 -35518,5404:488:3,-48,-48.5,0,0,-0.0101886 -35519,5404:487:4,-47.5,-48.5,0,0,-0.0109799 -35520,5404:487:3,-47,-48.5,0,0,-0.010241 -35521,5404:486:4,-46.5,-48.5,0,0,-0.01015 -35522,5404:486:3,-46,-48.5,0,0,-0.0105567 -35523,5404:485:4,-45.5,-48.5,0,0,-0.0105661 -35524,5404:485:3,-45,-48.5,0,0,-0.00962292 -35525,5404:384:4,-44.5,-48.5,0,0,-0.00878609 -35526,5404:384:3,-44,-48.5,0,0,-0.00876657 -35527,5404:383:4,-43.5,-48.5,0,0,-0.00971779 -35528,5404:383:3,-43,-48.5,0,0,-0.0100665 -35529,5404:382:4,-42.5,-48.5,0,0,-0.00964437 -35530,5404:382:3,-42,-48.5,0,0,-0.0104629 -35531,5404:381:4,-41.5,-48.5,0,0,-0.0108217 -35532,5404:381:3,-41,-48.5,0,0,-0.010909 -35533,5404:380:4,-40.5,-48.5,0,0,-0.010875 -35534,5404:380:3,-40,-48.5,0,0,-0.0106872 -35535,5403:489:4,-39.5,-48.5,0,0,-0.010175 -35536,5403:489:3,-39,-48.5,0,0,-0.0100508 -35537,5403:488:4,-38.5,-48.5,0,0,-0.0100688 -35538,5403:488:3,-38,-48.5,0,0,-0.00942533 -35539,5403:487:4,-37.5,-48.5,0,0,-0.00873925 -35540,5403:487:3,-37,-48.5,0,0,-0.0086193 -35541,5403:486:4,-36.5,-48.5,0,0,-0.00864431 -35542,5403:486:3,-36,-48.5,0,0,-0.00878609 -35543,5403:485:4,-35.5,-48.5,0,0,-0.00882341 -35544,5403:485:3,-35,-48.5,0,0,-0.00875287 -35545,5403:384:4,-34.5,-48.5,0,0,-0.00861163 -35546,5403:384:3,-34,-48.5,0,0,-0.00839749 -35547,5403:383:4,-33.5,-48.5,0,0,-0.00803162 -35548,5403:383:3,-33,-48.5,0,0,-0.00767664 -35549,5403:382:4,-32.5,-48.5,0,0,-0.00763062 -35550,5403:382:3,-32,-48.5,0,0,-0.00780068 -35551,5403:381:4,-31.5,-48.5,0,0,-0.00791796 -35552,5403:381:3,-31,-48.5,0,0,-0.00787402 -35553,5403:380:4,-30.5,-48.5,0,0,-0.00769377 -35554,5403:380:3,-30,-48.5,0,0,-0.00744273 -35555,5402:489:4,-29.5,-48.5,0,0,-0.00734889 -35556,5402:489:3,-29,-48.5,0,0,-0.00748929 -35557,5402:488:4,-28.5,-48.5,0,0,-0.00752769 -35558,5402:488:3,-28,-48.5,0,0,-0.00742949 -35559,5402:487:4,-27.5,-48.5,0,0,-0.00725141 -35560,5402:487:3,-27,-48.5,0,0,-0.00720958 -35561,5402:486:4,-26.5,-48.5,0,0,-0.00737349 -35562,5402:486:3,-26,-48.5,0,0,-0.00783724 -35563,5402:485:4,-25.5,-48.5,0,0,-0.00792146 -35564,5402:485:3,-25,-48.5,0,0,-0.00778162 -35565,5402:384:4,-24.5,-48.5,0,0,-0.00812877 -35566,5402:384:3,-24,-48.5,0,0,-0.00853142 -35567,5402:383:4,-23.5,-48.5,0,0,-0.00969618 -35568,5402:383:3,-23,-48.5,0,0,-0.0101319 -35569,5402:382:4,-22.5,-48.5,0,0,-0.00989943 -35570,5402:382:3,-22,-48.5,0,0,-0.00920311 -35571,5402:381:4,-21.5,-48.5,0,0,-0.00858292 -35572,5402:381:3,-21,-48.5,0,0,-0.00888852 -35573,5402:380:4,-20.5,-48.5,0,0,-0.00909497 -35574,5402:380:3,-20,-48.5,0,0,-0.00932915 -35575,5401:489:4,-19.5,-48.5,0,0,-0.00958004 -35576,5401:489:3,-19,-48.5,0,0,-0.00961644 -35577,5401:488:4,-18.5,-48.5,0,0,-0.0094401 -35578,5401:488:3,-18,-48.5,0,0,-0.00919078 -35579,5401:487:4,-17.5,-48.5,0,0,-0.00912137 -35580,5401:487:3,-17,-48.5,0,0,-0.00916424 -35581,5401:486:4,-16.5,-48.5,0,0,-0.00917853 -35582,5401:486:3,-16,-48.5,0,0,-0.00931044 -35583,5401:485:4,-15.5,-48.5,0,0,-0.00930835 -35584,5401:485:3,-15,-48.5,0,0,-0.00906464 -35585,5401:384:4,-14.5,-48.5,0,0,-0.00882142 -35586,5401:384:3,-14,-48.5,0,0,-0.0086675 -35587,5401:383:4,-13.5,-48.5,0,0,-0.00860396 -35588,5401:383:3,-13,-48.5,0,0,-0.00878807 -35589,5401:382:4,-12.5,-48.5,0,0,-0.00907272 -35590,5401:382:3,-12,-48.5,0,0,-0.00919078 -35591,5401:381:4,-11.5,-48.5,0,0,-0.00920104 -35592,5401:381:3,-11,-48.5,0,0,-0.00935834 -35593,5401:380:4,-10.5,-48.5,0,0,-0.0094992 -35594,5401:380:3,-10,-48.5,0,0,-0.00941276 -35595,5400:489:4,-9.5,-48.5,0,0,-0.00911325 -35596,5400:489:3,-9,-48.5,0,0,-0.00854664 -35597,5400:488:4,-8.5,-48.5,0,0,-0.00818327 -35598,5400:488:3,-8,-48.5,0,0,-0.00801907 -35599,5400:487:4,-7.5,-48.5,0,0,-0.00793736 -35600,5400:487:3,-7,-48.5,0,0,-0.0078933 -35601,5400:486:4,-6.5,-48.5,0,0,-0.00783553 -35602,5400:486:3,-6,-48.5,0,0,-0.00774701 -35603,5400:485:4,-5.5,-48.5,0,0,-0.00768176 -35604,5400:485:3,-5,-48.5,0,0,-0.00762725 -35605,5400:384:4,-4.5,-48.5,0,0,-0.00757983 -35606,5400:384:3,-4,-48.5,0,0,-0.007521 -35607,5400:383:4,-3.5,-48.5,0,0,-0.00742622 -35608,5400:383:3,-3,-48.5,0,0,-0.00731955 -35609,5400:382:4,-2.5,-48.5,0,0,-0.0072369 -35610,5400:382:3,-2,-48.5,0,0,-0.00716798 -35611,5400:381:4,-1.5,-48.5,0,0,-0.00709187 -35612,5400:381:3,-1,-48.5,0,0,-0.00700406 -35613,5400:380:4,-0.5,-48.5,0,0,-0.00694199 -35614,3400:380:4,0,-48.5,0,0,-0.00693426 -35615,3400:380:4,0.5,-48.5,0,0,-0.00687893 -35616,3400:381:3,1,-48.5,0,0,-0.00681345 -35617,3400:381:4,1.5,-48.5,0,0,-0.00682104 -35618,3400:382:3,2,-48.5,0,0,-0.00678322 -35619,3400:382:4,2.5,-48.5,0,0,-0.00672312 -35620,3400:383:3,3,-48.5,0,0,-0.00666062 -35621,3400:383:4,3.5,-48.5,0,0,-0.00656797 -35622,3400:384:3,4,-48.5,0,0,-0.00651558 -35623,3400:384:4,4.5,-48.5,0,0,-0.00648809 -35624,3400:485:3,5,-48.5,0,0,-0.00645213 -35625,3400:485:4,5.5,-48.5,0,0,-0.00643638 -35626,3400:486:3,6,-48.5,0,0,-0.00647511 -35627,3400:486:4,6.5,-48.5,0,0,-0.00657671 -35628,3400:487:3,7,-48.5,0,0,-0.00664139 -35629,3400:487:4,7.5,-48.5,0,0,-0.00654025 -35630,3400:488:3,8,-48.5,0,0,-0.00648377 -35631,3400:488:4,8.5,-48.5,0,0,-0.006549 -35632,3400:489:3,9,-48.5,0,0,-0.00650687 -35633,3400:489:4,9.5,-48.5,0,0,-0.00637086 -35634,3401:380:3,10,-48.5,0,0,-0.00629203 -35635,3401:380:4,10.5,-48.5,0,0,-0.00621418 -35636,3401:381:3,11,-48.5,0,0,-0.00611826 -35637,3401:381:4,11.5,-48.5,0,0,-0.00606676 -35638,3401:382:3,12,-48.5,0,0,-0.00609382 -35639,3401:382:4,12.5,-48.5,0,0,-0.00613867 -35640,3401:383:3,13,-48.5,0,0,-0.00616467 -35641,3401:383:4,13.5,-48.5,0,0,-0.00615506 -35642,3401:384:3,14,-48.5,0,0,-0.00613867 -35643,3401:384:4,14.5,-48.5,0,0,-0.00613322 -35644,3401:485:3,15,-48.5,0,0,-0.00613051 -35645,3401:485:4,15.5,-48.5,0,0,-0.00611415 -35646,3401:486:3,16,-48.5,0,0,-0.00609787 -35647,3401:486:4,16.5,-48.5,0,0,-0.00608704 -35648,3401:487:3,17,-48.5,0,0,-0.0060587 -35649,3401:487:4,17.5,-48.5,0,0,-0.00604794 -35650,3401:488:3,18,-48.5,0,0,-0.0060318 -35651,3401:488:4,18.5,-48.5,0,0,-0.00601174 -35652,3401:489:3,19,-48.5,0,0,-0.00600506 -35653,3401:489:4,19.5,-48.5,0,0,-0.0059944 -35654,3402:380:3,20,-48.5,0,0,-0.00596382 -35655,3402:380:4,20.5,-48.5,0,0,-0.00586005 -35656,3402:381:3,21,-48.5,0,0,-0.00581851 -35657,3402:381:4,21.5,-48.5,0,0,-0.00585222 -35658,3402:382:3,22,-48.5,0,0,-0.00585353 -35659,3402:382:4,22.5,-48.5,0,0,-0.00573506 -35660,3402:383:3,23,-48.5,0,0,-0.00569318 -35661,3402:383:4,23.5,-48.5,0,0,-0.00568558 -35662,3402:384:3,24,-48.5,0,0,-0.00568307 -35663,3402:384:4,24.5,-48.5,0,0,-0.00569951 -35664,3402:485:3,25,-48.5,0,0,-0.00576829 -35665,3402:485:4,25.5,-48.5,0,0,-0.00584572 -35666,3402:486:3,26,-48.5,0,0,-0.00591367 -35667,3402:486:4,26.5,-48.5,0,0,-0.00590974 -35668,3402:487:3,27,-48.5,0,0,-0.0060587 -35669,3402:487:4,27.5,-48.5,0,0,-0.00642495 -35670,3402:488:3,28,-48.5,0,0,-0.00674561 -35671,3402:488:4,28.5,-48.5,0,0,-0.00688968 -35672,3402:489:3,29,-48.5,0,0,-0.00659284 -35673,3402:489:4,29.5,-48.5,0,0,-0.00681345 -35674,3403:380:3,30,-48.5,0,0,-0.00689272 -35675,3403:380:4,30.5,-48.5,0,0,-0.00707451 -35676,3403:381:3,31,-48.5,0,0,-0.00765102 -35677,3403:381:4,31.5,-48.5,0,0,-0.00774186 -35678,3403:382:3,32,-48.5,0,0,-0.00742289 -35679,3403:382:4,32.5,-48.5,0,0,-0.00667397 -35680,3403:383:3,33,-48.5,0,0,-0.0061264 -35681,3403:383:4,33.5,-48.5,0,0,-0.0060884 -35682,3403:384:3,34,-48.5,0,0,-0.00611008 -35683,3403:384:4,34.5,-48.5,0,0,-0.00616329 -35684,3403:485:3,35,-48.5,0,0,-0.00624745 -35685,3403:485:4,35.5,-48.5,0,0,-0.00684386 -35686,3403:486:3,36,-48.5,0,0,-0.00727242 -35687,3403:486:4,36.5,-48.5,0,0,-0.00739486 -35688,3403:487:3,37,-48.5,0,0,-0.00793385 -35689,3403:487:4,37.5,-48.5,0,0,-0.00750431 -35690,3403:488:3,38,-48.5,0,0,-0.0070212 -35691,3403:488:4,38.5,-48.5,0,0,-0.00683624 -35692,3403:489:3,39,-48.5,0,0,-0.00678926 -35693,3403:489:4,39.5,-48.5,0,0,-0.00752437 -35694,3404:380:3,40,-48.5,0,0,-0.00791796 -35695,3404:380:4,40.5,-48.5,0,0,-0.00762891 -35696,3404:381:3,41,-48.5,0,0,-0.00714092 -35697,3404:381:4,41.5,-48.5,0,0,-0.0068866 -35698,3404:382:3,42,-48.5,0,0,-0.00676212 -35699,3404:382:4,42.5,-48.5,0,0,-0.00681197 -35700,3404:383:3,43,-48.5,0,0,-0.00699626 -35701,3404:383:4,43.5,-48.5,0,0,-0.00732606 -35702,3404:384:3,44,-48.5,0,0,-0.00753107 -35703,3404:384:4,44.5,-48.5,0,0,-0.00756635 -35704,3404:485:3,45,-48.5,0,0,-0.00761534 -35705,3404:485:4,45.5,-48.5,0,0,-0.00747094 -35706,3404:486:3,46,-48.5,0,0,-0.00740637 -35707,3404:486:4,46.5,-48.5,0,0,-0.00752769 -35708,3404:487:3,47,-48.5,0,0,-0.00789507 -35709,3404:487:4,47.5,-48.5,0,0,-0.00789507 -35710,3404:488:3,48,-48.5,0,0,-0.00794978 -35711,3404:488:4,48.5,-48.5,0,0,-0.00823999 -35712,3404:489:3,49,-48.5,0,0,-0.00844628 -35713,3404:489:4,49.5,-48.5,0,0,-0.00830822 -35714,3405:380:3,50,-48.5,0,0,-0.00817054 -35715,3405:380:4,50.5,-48.5,0,0,-0.00804954 -35716,3405:381:3,51,-48.5,0,0,-0.00774875 -35717,3405:381:4,51.5,-48.5,0,0,-0.00760521 -35718,3405:382:3,52,-48.5,0,0,-0.00775913 -35719,3405:382:4,52.5,-48.5,0,0,-0.00894019 -35720,3405:383:3,53,-48.5,0,0,-0.00844818 -35721,3405:383:4,53.5,-48.5,0,0,-0.00791796 -35722,3405:384:3,54,-48.5,0,0,-0.00784949 -35723,3405:384:4,54.5,-48.5,0,0,-0.00774701 -35724,3405:485:3,55,-48.5,0,0,-0.00767153 -35725,3405:485:4,55.5,-48.5,0,0,-0.00768692 -35726,3405:486:3,56,-48.5,0,0,-0.00781984 -35727,3405:486:4,56.5,-48.5,0,0,-0.00821985 -35728,3405:487:3,57,-48.5,0,0,-0.00860782 -35729,3405:487:4,57.5,-48.5,0,0,-0.00892227 -35730,3405:488:3,58,-48.5,0,0,-0.0091011 -35731,3405:488:4,58.5,-48.5,0,0,-0.00910922 -35732,3405:489:3,59,-48.5,0,0,-0.00887071 -35733,3405:489:4,59.5,-48.5,0,0,-0.00831743 -35734,3406:380:3,60,-48.5,0,0,-0.00807827 -35735,3406:380:4,60.5,-48.5,0,0,-0.0082345 -35736,3406:381:3,61,-48.5,0,0,-0.00843503 -35737,3406:381:4,61.5,-48.5,0,0,-0.00859823 -35738,3406:382:3,62,-48.5,0,0,-0.00868296 -35739,3406:382:4,62.5,-48.5,0,0,-0.00864049 -35740,3406:383:3,63,-48.5,0,0,-0.00893022 -35741,3406:383:4,63.5,-48.5,0,0,-0.00926078 -35742,3406:384:3,64,-48.5,0,0,-0.00944427 -35743,3406:384:4,64.5,-48.5,0,0,-0.00984659 -35744,3406:485:3,65,-48.5,0,0,-0.0101908 -35745,3406:485:4,65.5,-48.5,0,0,-0.0102914 -35746,3406:486:3,66,-48.5,0,0,-0.0102639 -35747,3406:486:4,66.5,-48.5,0,0,-0.0101342 -35748,3406:487:3,67,-48.5,0,0,-0.00989943 -35749,3406:487:4,67.5,-48.5,0,0,-0.00970265 -35750,3406:488:3,68,-48.5,0,0,-0.00969618 -35751,3406:488:4,68.5,-48.5,0,0,-0.00978524 -35752,3406:489:3,69,-48.5,0,0,-0.00979837 -35753,3406:489:4,69.5,-48.5,0,0,-0.00974389 -35754,3407:380:3,70,-48.5,0,0,-0.00967672 -35755,3407:380:4,70.5,-48.5,0,0,-0.00958435 -35756,3407:381:3,71,-48.5,0,0,-0.00954379 -35757,3407:381:4,71.5,-48.5,0,0,-0.00955445 -35758,3407:382:3,72,-48.5,0,0,-0.00954593 -35759,3407:382:4,72.5,-48.5,0,0,-0.0092216 -35760,3407:383:4,73.5,-48.5,0,0,-0.00877045 -35761,3407:384:3,74,-48.5,0,0,-0.0086328 -35762,3407:384:4,74.5,-48.5,0,0,-0.00879201 -35763,3407:485:3,75,-48.5,0,0,-0.00891632 -35764,3407:485:4,75.5,-48.5,0,0,-0.00886088 -35765,3407:486:3,76,-48.5,0,0,-0.00763913 -35766,3407:486:4,76.5,-48.5,0,0,-0.00716959 -35767,3407:487:3,77,-48.5,0,0,-0.00739812 -35768,3407:487:4,77.5,-48.5,0,0,-0.00763576 -35769,3407:488:3,78,-48.5,0,0,-0.00745766 -35770,3407:488:4,78.5,-48.5,0,0,-0.00733911 -35771,3407:489:3,79,-48.5,0,0,-0.00730162 -35772,3407:489:4,79.5,-48.5,0,0,-0.00728538 -35773,3408:380:3,80,-48.5,0,0,-0.00726112 -35774,3408:380:4,80.5,-48.5,0,0,-0.00730812 -35775,3408:381:3,81,-48.5,0,0,-0.00715364 -35776,3408:381:4,81.5,-48.5,0,0,-0.00683778 -35777,3408:382:3,82,-48.5,0,0,-0.00661633 -35778,3408:382:4,82.5,-48.5,0,0,-0.00657965 -35779,3408:383:3,83,-48.5,0,0,-0.00693582 -35780,3408:383:4,83.5,-48.5,0,0,-0.0075512 -35781,3408:384:3,84,-48.5,0,0,-0.0089962 -35782,3408:384:4,84.5,-48.5,0,0,-0.0112004 -35783,3408:485:3,85,-48.5,0,0,-0.0124914 -35784,3408:485:4,85.5,-48.5,0,0,-0.0128774 -35785,3408:486:3,86,-48.5,0,0,-0.0127598 -35786,3408:486:4,86.5,-48.5,0,0,-0.012584 -35787,3408:487:3,87,-48.5,0,0,-0.0123166 -35788,3408:487:4,87.5,-48.5,0,0,-0.0117622 -35789,3408:488:3,88,-48.5,0,0,-0.0117359 -35790,3408:488:4,88.5,-48.5,0,0,-0.0118386 -35791,3408:489:3,89,-48.5,0,0,-0.0117228 -35792,3408:489:4,89.5,-48.5,0,0,-0.0106063 -35793,3409:380:3,90,-48.5,0,0,-0.0105003 -35794,3409:380:4,90.5,-48.5,0,0,-0.0106943 -35795,3409:381:3,91,-48.5,0,0,-0.0109676 -35796,3409:381:4,91.5,-48.5,0,0,-0.0111804 -35797,3409:382:3,92,-48.5,0,0,-0.0112682 -35798,3409:382:4,92.5,-48.5,0,0,-0.0111853 -35799,3409:383:3,93,-48.5,0,0,-0.0108725 -35800,3409:383:4,93.5,-48.5,0,0,-0.0102914 -35801,3409:384:3,94,-48.5,0,0,-0.0094401 -35802,3409:384:4,94.5,-48.5,0,0,-0.00877439 -35803,3409:485:3,95,-48.5,0,0,-0.0086675 -35804,3409:485:4,95.5,-48.5,0,0,-0.00887861 -35805,3409:486:3,96,-48.5,0,0,-0.00896815 -35806,3409:486:4,96.5,-48.5,0,0,-0.0103329 -35807,3409:487:3,97,-48.5,0,0,-0.0116029 -35808,3409:487:4,97.5,-48.5,0,0,-0.0115925 -35809,3409:488:3,98,-48.5,0,0,-0.0107566 -35810,3409:488:4,98.5,-48.5,0,0,-0.00990827 -35811,3409:489:3,99,-48.5,0,0,-0.00956942 -35812,3409:489:4,99.5,-48.5,0,0,-0.00964437 -35813,3410:380:3,100,-48.5,0,0,-0.0100396 -35814,3410:380:4,100.5,-48.5,0,0,-0.0105214 -35815,3410:381:3,101,-48.5,0,0,-0.01063 -35816,3410:381:4,101.5,-48.5,0,0,-0.0100284 -35817,3410:382:3,102,-48.5,0,0,-0.00971779 -35818,3410:382:4,102.5,-48.5,0,0,-0.0094717 -35819,3410:383:3,103,-48.5,0,0,-0.00982028 -35820,3410:383:4,103.5,-48.5,0,0,-0.0106348 -35821,3410:384:3,104,-48.5,0,0,-0.0109676 -35822,3410:384:4,104.5,-48.5,0,0,-0.0109921 -35823,3410:485:3,105,-48.5,0,0,-0.0109848 -35824,3410:485:4,105.5,-48.5,0,0,-0.0109579 -35825,3410:486:3,106,-48.5,0,0,-0.0109114 -35826,3410:486:4,106.5,-48.5,0,0,-0.0109139 -35827,3410:487:3,107,-48.5,0,0,-0.0110685 -35828,3410:487:4,107.5,-48.5,0,0,-0.0110069 -35829,3410:488:3,108,-48.5,0,0,-0.0110908 -35830,3410:488:4,108.5,-48.5,0,0,-0.0113237 -35831,3410:489:3,109,-48.5,0,0,-0.0115821 -35832,3410:489:4,109.5,-48.5,0,0,-0.0117675 -35833,3411:380:3,110,-48.5,0,0,-0.0123304 -35834,3411:380:4,110.5,-48.5,0,0,-0.0127398 -35835,3411:381:3,111,-48.5,0,0,-0.0128055 -35836,3411:381:4,111.5,-48.5,0,0,-0.0134218 -35837,3411:382:3,112,-48.5,0,0,-0.0139115 -35838,3411:382:4,112.5,-48.5,0,0,-0.0139896 -35839,3411:383:3,113,-48.5,0,0,-0.0135881 -35840,3411:383:4,113.5,-48.5,0,0,-0.0125811 -35841,3411:384:3,114,-48.5,0,0,-0.0117912 -35842,3411:384:4,114.5,-48.5,0,0,-0.0116862 -35843,3411:485:3,115,-48.5,0,0,-0.011844 -35844,3411:485:4,115.5,-48.5,0,0,-0.0121961 -35845,3411:486:3,116,-48.5,0,0,-0.0133948 -35846,3411:486:4,116.5,-48.5,0,0,-0.0140462 -35847,3411:487:3,117,-48.5,0,0,-0.013222 -35848,3411:487:4,117.5,-48.5,0,0,-0.0131012 -35849,3411:488:3,118,-48.5,0,0,-0.0130048 -35850,3411:488:4,118.5,-48.5,0,0,-0.0129264 -35851,3411:489:3,119,-48.5,0,0,-0.0129641 -35852,3411:489:4,119.5,-48.5,0,0,-0.0130778 -35853,3412:380:3,120,-48.5,0,0,-0.0130164 -35854,3412:380:4,120.5,-48.5,0,0,-0.0132397 -35855,3412:381:3,121,-48.5,0,0,-0.0138555 -35856,3412:381:4,121.5,-48.5,0,0,-0.0148324 -35857,3412:382:3,122,-48.5,0,0,-0.0154331 -35858,3412:382:4,122.5,-48.5,0,0,-0.0155862 -35859,3412:383:3,123,-48.5,0,0,-0.0155827 -35860,3412:383:4,123.5,-48.5,0,0,-0.0153124 -35861,3412:384:3,124,-48.5,0,0,-0.0149526 -35862,3412:384:4,124.5,-48.5,0,0,-0.014869 -35863,3412:485:3,125,-48.5,0,0,-0.0149627 -35864,3412:485:4,125.5,-48.5,0,0,-0.0150367 -35865,3412:486:3,126,-48.5,0,0,-0.0151077 -35866,3412:486:4,126.5,-48.5,0,0,-0.0152301 -35867,3412:487:3,127,-48.5,0,0,-0.015395 -35868,3412:487:4,127.5,-48.5,0,0,-0.0154816 -35869,3412:488:3,128,-48.5,0,0,-0.0153329 -35870,3412:488:4,128.5,-48.5,0,0,-0.0150367 -35871,3412:489:3,129,-48.5,0,0,-0.014733 -35872,3412:489:4,129.5,-48.5,0,0,-0.014387 -35873,3413:380:3,130,-48.5,0,0,-0.0141093 -35874,3413:380:4,130.5,-48.5,0,0,-0.0139896 -35875,3413:381:3,131,-48.5,0,0,-0.0140556 -35876,3413:381:4,131.5,-48.5,0,0,-0.0143484 -35877,3413:382:3,132,-48.5,0,0,-0.014733 -35878,3413:382:4,132.5,-48.5,0,0,-0.0150265 -35879,3413:383:3,133,-48.5,0,0,-0.0153055 -35880,3413:383:4,133.5,-48.5,0,0,-0.0154054 -35881,3413:384:3,134,-48.5,0,0,-0.0151756 -35882,3413:384:4,134.5,-48.5,0,0,-0.0147363 -35883,3413:485:3,135,-48.5,0,0,-0.0143516 -35884,3413:485:4,135.5,-48.5,0,0,-0.0141567 -35885,3413:486:3,136,-48.5,0,0,-0.0141029 -35886,3413:486:4,136.5,-48.5,0,0,-0.0139959 -35887,3413:487:3,137,-48.5,0,0,-0.013775 -35888,3413:487:4,137.5,-48.5,0,0,-0.0135184 -35889,3413:488:3,138,-48.5,0,0,-0.0134248 -35890,3413:488:4,138.5,-48.5,0,0,-0.0135305 -35891,3413:489:3,139,-48.5,0,0,-0.0137166 -35892,3413:489:4,139.5,-48.5,0,0,-0.0139521 -35893,3414:380:3,140,-48.5,0,0,-0.0141219 -35894,3414:380:4,140.5,-48.5,0,0,-0.0142045 -35895,3414:381:3,141,-48.5,0,0,-0.0143484 -35896,3414:381:4,141.5,-48.5,0,0,-0.0146868 -35897,3414:382:3,142,-48.5,0,0,-0.015145 -35898,3414:382:4,142.5,-48.5,0,0,-0.0155268 -35899,3414:383:3,143,-48.5,0,0,-0.0156844 -35900,3414:383:4,143.5,-48.5,0,0,-0.0155967 -35901,3414:384:3,144,-48.5,0,0,-0.0153881 -35902,3414:384:4,144.5,-48.5,0,0,-0.0153055 -35903,3414:485:3,145,-48.5,0,0,-0.0153124 -35904,3414:485:4,145.5,-48.5,0,0,-0.0151043 -35905,3414:486:3,146,-48.5,0,0,-0.0144484 -35906,3414:486:4,146.5,-48.5,0,0,-0.0138122 -35907,3414:487:3,147,-48.5,0,0,-0.0132516 -35908,3414:487:4,147.5,-48.5,0,0,-0.0125896 -35909,3414:488:3,148,-48.5,0,0,-0.0110414 -35910,3414:488:4,148.5,-48.5,0,0,-0.00943168 -35911,3414:489:3,149,-48.5,0,0,-0.00955874 -35912,3414:489:4,149.5,-48.5,0,0,-0.00992819 -35913,3415:380:3,150,-48.5,0,0,-0.0122342 -35914,3415:380:4,150.5,-48.5,0,0,-0.0139709 -35915,3415:381:3,151,-48.5,0,0,-0.0134309 -35916,3415:381:4,151.5,-48.5,0,0,-0.0116523 -35917,3415:382:3,152,-48.5,0,0,-0.0108579 -35918,3415:382:4,152.5,-48.5,0,0,-0.0146605 -35919,3415:383:3,153,-48.5,0,0,-0.0165378 -35920,3415:383:4,153.5,-48.5,0,0,-0.0189819 -35921,3415:384:3,154,-48.5,0,0,-0.0187948 -35922,3415:384:4,154.5,-48.5,0,0,-0.0178189 -35923,3415:485:3,155,-48.5,0,0,-0.0176951 -35924,3415:485:4,155.5,-48.5,0,0,-0.0177071 -35925,3415:486:3,156,-48.5,0,0,-0.0162835 -35926,3415:486:4,156.5,-48.5,0,0,-0.0134881 -35927,3415:487:3,157,-48.5,0,0,-0.0120469 -35928,3415:487:4,157.5,-48.5,0,0,-0.0116993 -35929,3415:488:3,158,-48.5,0,0,-0.0126065 -35930,3415:488:4,158.5,-48.5,0,0,-0.0153399 -35931,3415:489:3,159,-48.5,0,0,-0.0160008 -35932,3415:489:4,159.5,-48.5,0,0,-0.0156739 -35933,3416:380:3,160,-48.5,0,0,-0.0156142 -35934,3416:380:4,160.5,-48.5,0,0,-0.0155721 -35935,3416:381:3,161,-48.5,0,0,-0.0151688 -35936,3416:381:4,161.5,-48.5,0,0,-0.0160693 -35937,3416:382:3,162,-48.5,0,0,-0.0166871 -35938,3416:382:4,162.5,-48.5,0,0,-0.0159542 -35939,3416:383:3,163,-48.5,0,0,-0.0199058 -35940,3416:383:4,163.5,-48.5,0,0,-0.0236474 -35941,3416:384:3,164,-48.5,0,0,-0.0244804 -35942,3416:384:4,164.5,-48.5,0,0,-0.024425 -35943,3416:485:3,165,-48.5,0,0,-0.0247871 -35944,3416:485:4,165.5,-48.5,0,0,-0.0243753 -35945,3416:486:3,166,-48.5,0,0,-0.0231239 -35946,3416:486:4,166.5,-48.5,0,0,-0.0220923 -35947,3416:487:3,167,-48.5,0,0,-0.0217213 -35948,3416:487:4,167.5,-48.5,0,0,-0.0215845 -35949,3416:488:3,168,-48.5,0,0,-0.0216529 -35950,3416:488:4,168.5,-48.5,0,0,-0.0221123 -35951,3416:489:3,169,-48.5,0,0,-0.0228848 -35952,3416:489:4,169.5,-48.5,0,0,-0.0234344 -35953,3417:380:3,170,-48.5,0,0,-0.0236474 -35954,3417:380:4,170.5,-48.5,0,0,-0.0241229 -35955,3417:381:3,171,-48.5,0,0,-0.0247309 -35956,3417:381:4,171.5,-48.5,0,0,-0.0252974 -35957,3417:382:3,172,-48.5,0,0,-0.0260243 -35958,3417:382:4,172.5,-48.5,0,0,-0.026591 -35959,3417:383:3,173,-48.5,0,0,-0.0270779 -35960,3417:383:4,173.5,-48.5,0,0,-0.0274866 -35961,3417:384:3,174,-48.5,0,0,-0.0279842 -35962,3417:384:4,174.5,-48.5,0,0,-0.0285363 -35963,3417:485:3,175,-48.5,0,0,-0.0288624 -35964,3417:485:4,175.5,-48.5,0,0,-0.029219 -35965,3417:486:3,176,-48.5,0,0,-0.0295868 -35966,3417:486:4,176.5,-48.5,0,0,-0.0293923 -35967,3417:487:3,177,-48.5,0,0,-0.0288428 -35968,3417:487:4,177.5,-48.5,0,0,-0.0280096 -35969,3417:488:3,178,-48.5,0,0,-0.026736 -35970,3417:488:4,178.5,-48.5,0,0,-0.0246975 -35971,3417:489:3,179,-48.5,0,0,-0.0230925 -35972,3417:489:4,179.5,-48.5,0,0,-0.0233551 -35973,3418:380:3,180,-48.5,0,0,-0.0252231 -35974,5418:380:1,-180,-48,0,0,-0.0253893 -35975,5417:489:2,-179.5,-48,0,0,-0.0258361 -35976,5417:489:1,-179,-48,0,0,-0.0268029 -35977,5417:488:2,-178.5,-48,0,0,-0.0276745 -35978,5417:488:1,-178,-48,0,0,-0.0272506 -35979,5417:487:2,-177.5,-48,0,0,-0.024956 -35980,5417:487:1,-177,-48,0,0,-0.0220175 -35981,5417:486:2,-176.5,-48,0,0,-0.0204839 -35982,5417:486:1,-176,-48,0,0,-0.0224596 -35983,5417:485:2,-175.5,-48,0,0,-0.0240303 -35984,5417:485:1,-175,-48,0,0,-0.0248995 -35985,5417:384:2,-174.5,-48,0,0,-0.0250977 -35986,5417:384:1,-174,-48,0,0,-0.0252231 -35987,5417:383:2,-173.5,-48,0,0,-0.025263 -35988,5417:383:1,-173,-48,0,0,-0.0252574 -35989,5417:382:2,-172.5,-48,0,0,-0.0252173 -35990,5417:382:1,-172,-48,0,0,-0.0251945 -35991,5417:381:2,-171.5,-48,0,0,-0.0255393 -35992,5417:381:1,-171,-48,0,0,-0.0260774 -35993,5417:380:2,-170.5,-48,0,0,-0.0262912 -35994,5417:380:1,-170,-48,0,0,-0.0257427 -35995,5416:489:2,-169.5,-48,0,0,-0.0235993 -35996,5416:489:1,-169,-48,0,0,-0.0216626 -35997,5416:488:2,-168.5,-48,0,0,-0.0206975 -35998,5416:488:1,-168,-48,0,0,-0.0199867 -35999,5416:487:2,-167.5,-48,0,0,-0.0198119 -36000,5416:487:1,-167,-48,0,0,-0.0201132 -36001,5416:486:2,-166.5,-48,0,0,-0.0206322 -36002,5416:486:1,-166,-48,0,0,-0.0207301 -36003,5416:485:2,-165.5,-48,0,0,-0.0211458 -36004,5416:485:1,-165,-48,0,0,-0.0219928 -36005,5416:384:2,-164.5,-48,0,0,-0.0225715 -36006,5416:384:1,-164,-48,0,0,-0.0225409 -36007,5416:383:2,-163.5,-48,0,0,-0.0219481 -36008,5416:383:1,-163,-48,0,0,-0.0212079 -36009,5416:382:2,-162.5,-48,0,0,-0.0206694 -36010,5416:382:1,-162,-48,0,0,-0.0204793 -36011,5416:381:2,-161.5,-48,0,0,-0.0206835 -36012,5416:381:1,-161,-48,0,0,-0.0222074 -36013,5416:380:2,-160.5,-48,0,0,-0.0240628 -36014,5416:380:1,-160,-48,0,0,-0.0240194 -36015,5415:489:2,-159.5,-48,0,0,-0.023642 -36016,5415:489:1,-159,-48,0,0,-0.023717 -36017,5415:488:2,-158.5,-48,0,0,-0.0243753 -36018,5415:488:1,-158,-48,0,0,-0.0251717 -36019,5415:487:2,-157.5,-48,0,0,-0.0259242 -36020,5415:487:1,-157,-48,0,0,-0.0264226 -36021,5415:486:2,-156.5,-48,0,0,-0.0264465 -36022,5415:486:1,-156,-48,0,0,-0.0258304 -36023,5415:485:2,-155.5,-48,0,0,-0.0246695 -36024,5415:485:1,-155,-48,0,0,-0.0232655 -36025,5415:384:2,-154.5,-48,0,0,-0.021958 -36026,5415:384:1,-154,-48,0,0,-0.0209747 -36027,5415:383:2,-153.5,-48,0,0,-0.019643 -36028,5415:383:1,-153,-48,0,0,-0.0174306 -36029,5415:382:2,-152.5,-48,0,0,-0.0165564 -36030,5415:382:1,-152,-48,0,0,-0.0169516 -36031,5415:381:2,-151.5,-48,0,0,-0.016471 -36032,5415:381:1,-151,-48,0,0,-0.0154816 -36033,5415:380:2,-150.5,-48,0,0,-0.0145069 -36034,5415:380:1,-150,-48,0,0,-0.0137473 -36035,5414:489:2,-149.5,-48,0,0,-0.0131218 -36036,5414:489:1,-149,-48,0,0,-0.0127941 -36037,5414:488:2,-148.5,-48,0,0,-0.012717 -36038,5414:488:1,-148,-48,0,0,-0.0126914 -36039,5414:487:2,-147.5,-48,0,0,-0.0127512 -36040,5414:487:1,-147,-48,0,0,-0.0124663 -36041,5414:486:2,-146.5,-48,0,0,-0.0121688 -36042,5414:486:1,-146,-48,0,0,-0.0123525 -36043,5414:485:2,-145.5,-48,0,0,-0.0135244 -36044,5414:485:1,-145,-48,0,0,-0.0138742 -36045,5414:384:2,-144.5,-48,0,0,-0.0150367 -36046,5414:384:1,-144,-48,0,0,-0.0182489 -36047,5414:383:2,-143.5,-48,0,0,-0.0199192 -36048,5414:383:1,-143,-48,0,0,-0.0208992 -36049,5414:382:2,-142.5,-48,0,0,-0.0215845 -36050,5414:382:1,-142,-48,0,0,-0.0215552 -36051,5414:381:2,-141.5,-48,0,0,-0.0210125 -36052,5414:381:1,-141,-48,0,0,-0.0210079 -36053,5414:380:2,-140.5,-48,0,0,-0.022313 -36054,5414:380:1,-140,-48,0,0,-0.022725 -36055,5413:489:2,-139.5,-48,0,0,-0.0239922 -36056,5413:489:1,-139,-48,0,0,-0.0255624 -36057,5413:488:2,-138.5,-48,0,0,-0.0271333 -36058,5413:488:1,-138,-48,0,0,-0.0283103 -36059,5413:487:2,-137.5,-48,0,0,-0.0295396 -36060,5413:487:1,-137,-48,0,0,-0.0293322 -36061,5413:486:2,-136.5,-48,0,0,-0.0292124 -36062,5413:486:1,-136,-48,0,0,-0.0298505 -36063,5413:485:2,-135.5,-48,0,0,-0.0297826 -36064,5413:485:1,-135,-48,0,0,-0.0314626 -36065,5413:384:2,-134.5,-48,0,0,-0.0335684 -36066,5413:384:1,-134,-48,0,0,-0.0338844 -36067,5413:383:2,-133.5,-48,0,0,-0.0333928 -36068,5413:383:1,-133,-48,0,0,-0.032931 -36069,5413:382:2,-132.5,-48,0,0,-0.0327585 -36070,5413:382:1,-132,-48,0,0,-0.0288953 -36071,5413:381:2,-131.5,-48,0,0,-0.0270965 -36072,5413:381:1,-131,-48,0,0,-0.0260419 -36073,5413:380:2,-130.5,-48,0,0,-0.0300892 -36074,5413:380:1,-130,-48,0,0,-0.0362078 -36075,5412:489:2,-129.5,-48,0,0,-0.0399053 -36076,5412:489:1,-129,-48,0,0,-0.040646 -36077,5412:488:2,-128.5,-48,0,0,-0.0400155 -36078,5412:488:1,-128,-48,0,0,-0.0372337 -36079,5412:487:2,-127.5,-48,0,0,-0.0399053 -36080,5412:487:1,-127,-48,0,0,-0.0395131 -36081,5412:486:2,-126.5,-48,0,0,-0.0401169 -36082,5412:486:1,-126,-48,0,0,-0.0410782 -36083,5412:485:2,-125.5,-48,0,0,-0.0425801 -36084,5412:485:1,-125,-48,0,0,-0.042248 -36085,5412:384:2,-124.5,-48,0,0,-0.0415248 -36086,5412:384:1,-124,-48,0,0,-0.040965 -36087,5412:383:2,-123.5,-48,0,0,-0.0376285 -36088,5412:383:1,-123,-48,0,0,-0.0343676 -36089,5412:382:2,-122.5,-48,0,0,-0.0328634 -36090,5412:382:1,-122,-48,0,0,-0.0304752 -36091,5412:381:2,-121.5,-48,0,0,-0.0274243 -36092,5412:381:1,-121,-48,0,0,-0.0249221 -36093,5412:380:2,-120.5,-48,0,0,-0.0237545 -36094,5412:380:1,-120,-48,0,0,-0.0236795 -36095,5411:489:2,-119.5,-48,0,0,-0.0245469 -36096,5411:489:1,-119,-48,0,0,-0.0260538 -36097,5411:488:2,-118.5,-48,0,0,-0.0271333 -36098,5411:488:1,-118,-48,0,0,-0.0287381 -36099,5411:487:2,-117.5,-48,0,0,-0.0295127 -36100,5411:487:1,-117,-48,0,0,-0.0290468 -36101,5411:486:2,-116.5,-48,0,0,-0.0289611 -36102,5411:486:1,-116,-48,0,0,-0.0292989 -36103,5411:485:2,-115.5,-48,0,0,-0.0302334 -36104,5411:485:1,-115,-48,0,0,-0.0318814 -36105,5411:384:2,-114.5,-48,0,0,-0.0319323 -36106,5411:384:1,-114,-48,0,0,-0.0317581 -36107,5411:383:2,-113.5,-48,0,0,-0.0323945 -36108,5411:383:1,-113,-48,0,0,-0.0325351 -36109,5411:382:2,-112.5,-48,0,0,-0.0327959 -36110,5411:382:1,-112,-48,0,0,-0.032976 -36111,5411:381:2,-111.5,-48,0,0,-0.0317581 -36112,5411:381:1,-111,-48,0,0,-0.0300685 -36113,5411:380:2,-110.5,-48,0,0,-0.0292989 -36114,5411:380:1,-110,-48,0,0,-0.0286663 -36115,5410:489:2,-109.5,-48,0,0,-0.0280796 -36116,5410:489:1,-109,-48,0,0,-0.0276055 -36117,5410:488:2,-108.5,-48,0,0,-0.0272939 -36118,5410:488:1,-108,-48,0,0,-0.0271271 -36119,5410:487:2,-107.5,-48,0,0,-0.0269798 -36120,5410:487:1,-107,-48,0,0,-0.0266815 -36121,5410:486:2,-106.5,-48,0,0,-0.0264766 -36122,5410:486:1,-106,-48,0,0,-0.0266332 -36123,5410:485:2,-105.5,-48,0,0,-0.0269248 -36124,5410:485:1,-105,-48,0,0,-0.0271641 -36125,5410:384:2,-104.5,-48,0,0,-0.027195 -36126,5410:384:1,-104,-48,0,0,-0.0265608 -36127,5410:383:2,-103.5,-48,0,0,-0.0251489 -36128,5410:383:1,-103,-48,0,0,-0.0243697 -36129,5410:382:2,-102.5,-48,0,0,-0.0249334 -36130,5410:382:1,-102,-48,0,0,-0.0255161 -36131,5410:381:2,-101.5,-48,0,0,-0.0257252 -36132,5410:381:1,-101,-48,0,0,-0.0256378 -36133,5410:380:2,-100.5,-48,0,0,-0.0255393 -36134,5410:380:1,-100,-48,0,0,-0.0255682 -36135,5409:489:2,-99.5,-48,0,0,-0.0257311 -36136,5409:489:1,-99,-48,0,0,-0.0259183 -36137,5409:488:2,-98.5,-48,0,0,-0.0260066 -36138,5409:488:1,-98,-48,0,0,-0.0259712 -36139,5409:487:2,-97.5,-48,0,0,-0.0258304 -36140,5409:487:1,-97,-48,0,0,-0.0255856 -36141,5409:486:2,-96.5,-48,0,0,-0.0252746 -36142,5409:486:1,-96,-48,0,0,-0.0246583 -36143,5409:485:2,-95.5,-48,0,0,-0.0238623 -36144,5409:485:1,-95,-48,0,0,-0.0237814 -36145,5409:384:2,-94.5,-48,0,0,-0.0244637 -36146,5409:384:1,-94,-48,0,0,-0.024558 -36147,5409:383:2,-93.5,-48,0,0,-0.0243201 -36148,5409:383:1,-93,-48,0,0,-0.0241011 -36149,5409:382:2,-92.5,-48,0,0,-0.0239163 -36150,5409:382:1,-92,-48,0,0,-0.0238245 -36151,5409:381:2,-91.5,-48,0,0,-0.0238138 -36152,5409:381:1,-91,-48,0,0,-0.0237762 -36153,5409:380:2,-90.5,-48,0,0,-0.0234504 -36154,5409:380:1,-90,-48,0,0,-0.0232182 -36155,5408:489:2,-89.5,-48,0,0,-0.0234556 -36156,5408:489:1,-89,-48,0,0,-0.0242653 -36157,5408:488:2,-88.5,-48,0,0,-0.0250523 -36158,5408:488:1,-88,-48,0,0,-0.0253375 -36159,5408:487:2,-87.5,-48,0,0,-0.025263 -36160,5408:487:1,-87,-48,0,0,-0.0251091 -36161,5408:486:2,-86.5,-48,0,0,-0.0249446 -36162,5408:486:1,-86,-48,0,0,-0.0247533 -36163,5408:485:2,-85.5,-48,0,0,-0.0245303 -36164,5408:485:1,-85,-48,0,0,-0.0243201 -36165,5408:384:2,-84.5,-48,0,0,-0.0241337 -36166,5408:384:1,-84,-48,0,0,-0.0240411 -36167,5408:383:2,-83.5,-48,0,0,-0.0240628 -36168,5408:383:1,-83,-48,0,0,-0.0241392 -36169,5408:382:2,-82.5,-48,0,0,-0.0242103 -36170,5408:382:1,-82,-48,0,0,-0.0242653 -36171,5408:381:2,-81.5,-48,0,0,-0.0243312 -36172,5408:381:1,-81,-48,0,0,-0.0244637 -36173,5408:380:2,-80.5,-48,0,0,-0.0247086 -36174,5408:380:1,-80,-48,0,0,-0.025058 -36175,5407:489:2,-79.5,-48,0,0,-0.0254181 -36176,5407:489:1,-79,-48,0,0,-0.025632 -36177,5407:488:2,-78.5,-48,0,0,-0.0255973 -36178,5407:488:1,-78,-48,0,0,-0.0253663 -36179,5407:487:2,-77.5,-48,0,0,-0.0251546 -36180,5407:487:1,-77,-48,0,0,-0.0250864 -36181,5407:486:2,-76.5,-48,0,0,-0.0250807 -36182,5407:486:1,-76,-48,0,0,-0.0250977 -36183,5407:485:2,-75.5,-48,0,0,-0.0250977 -36184,5407:485:1,-75,-48,0,0,-0.0255682 -36185,5407:384:2,-74.5,-48,0,0,-0.0265187 -36186,5407:384:1,-74,-48,0,0,-0.0287968 -36187,5407:383:2,-73.5,-48,0,0,-0.0289545 -36188,5407:383:1,-73,-48,0,0,-0.0276682 -36189,5407:382:2,-72.5,-48,0,0,-0.0260066 -36190,5407:382:1,-72,-48,0,0,-0.0258538 -36191,5407:381:2,-71.5,-48,0,0,-0.027468 -36192,5407:381:1,-71,-48,0,0,-0.0278637 -36193,5407:380:2,-70.5,-48,0,0,-0.027769 -36194,5407:380:1,-70,-48,0,0,-0.0282654 -36195,5406:489:2,-69.5,-48,0,0,-0.0290468 -36196,5406:489:1,-69,-48,0,0,-0.0291658 -36197,5406:488:2,-68.5,-48,0,0,-0.0289675 -36198,5406:488:1,-68,-48,0,0,-0.0288166 -36199,5406:487:2,-67.5,-48,0,0,-0.0275053 -36200,5406:487:1,-67,-48,0,0,-0.0246137 -36201,5406:486:2,-66.5,-48,0,0,-0.021251 -36202,5406:486:1,-66,-48,0,0,-0.0179961 -36203,5406:485:2,-65.5,-48,0,0,-0.0175368 -36204,5406:485:1,-65,-48,0,0,-0.0182284 -36205,5406:384:2,-64.5,-48,0,0,-0.0190332 -36206,5406:384:1,-64,-48,0,0,-0.0192662 -36207,5406:383:2,-63.5,-48,0,0,-0.0185052 -36208,5406:383:1,-63,-48,0,0,-0.0180043 -36209,5406:382:2,-62.5,-48,0,0,-0.0185511 -36210,5406:382:1,-62,-48,0,0,-0.0185511 -36211,5406:381:2,-61.5,-48,0,0,-0.0181384 -36212,5406:381:1,-61,-48,0,0,-0.0180691 -36213,5406:380:2,-60.5,-48,0,0,-0.0172863 -36214,5406:380:1,-60,-48,0,0,-0.0163311 -36215,5405:489:2,-59.5,-48,0,0,-0.0155408 -36216,5405:489:1,-59,-48,0,0,-0.0161597 -36217,5405:488:2,-58.5,-48,0,0,-0.0178912 -36218,5405:488:1,-58,-48,0,0,-0.018723 -36219,5405:487:2,-57.5,-48,0,0,-0.0192488 -36220,5405:487:1,-57,-48,0,0,-0.0193749 -36221,5405:486:2,-56.5,-48,0,0,-0.019158 -36222,5405:486:1,-56,-48,0,0,-0.0167999 -36223,5405:485:2,-55.5,-48,0,0,-0.0128744 -36224,5405:485:1,-55,-48,0,0,-0.0111281 -36225,5405:384:2,-54.5,-48,0,0,-0.0107039 -36226,5405:384:1,-54,-48,0,0,-0.0114919 -36227,5405:383:2,-53.5,-48,0,0,-0.0123552 -36228,5405:383:1,-53,-48,0,0,-0.0132843 -36229,5405:382:2,-52.5,-48,0,0,-0.0139991 -36230,5405:382:1,-52,-48,0,0,-0.0136583 -36231,5405:381:2,-51.5,-48,0,0,-0.0128256 -36232,5405:381:1,-51,-48,0,0,-0.0125138 -36233,5405:380:2,-50.5,-48,0,0,-0.0118599 -36234,5405:380:1,-50,-48,0,0,-0.0116211 -36235,5404:489:2,-49.5,-48,0,0,-0.0113617 -36236,5404:489:1,-49,-48,0,0,-0.0104419 -36237,5404:488:2,-48.5,-48,0,0,-0.00997706 -36238,5404:488:1,-48,-48,0,0,-0.0105144 -36239,5404:487:2,-47.5,-48,0,0,-0.0110908 -36240,5404:487:1,-47,-48,0,0,-0.011253 -36241,5404:486:2,-46.5,-48,0,0,-0.0111529 -36242,5404:486:1,-46,-48,0,0,-0.011311 -36243,5404:485:2,-45.5,-48,0,0,-0.0115874 -36244,5404:485:1,-45,-48,0,0,-0.0117753 -36245,5404:384:2,-44.5,-48,0,0,-0.0114919 -36246,5404:384:1,-44,-48,0,0,-0.0100553 -36247,5404:383:2,-43.5,-48,0,0,-0.0100441 -36248,5404:383:1,-43,-48,0,0,-0.0103444 -36249,5404:382:2,-42.5,-48,0,0,-0.0102868 -36250,5404:382:1,-42,-48,0,0,-0.0107158 -36251,5404:381:2,-41.5,-48,0,0,-0.0109407 -36252,5404:381:1,-41,-48,0,0,-0.0108313 -36253,5404:380:2,-40.5,-48,0,0,-0.0104185 -36254,5404:380:1,-40,-48,0,0,-0.00984002 -36255,5403:489:2,-39.5,-48,0,0,-0.00968971 -36256,5403:489:1,-39,-48,0,0,-0.00988838 -36257,5403:488:2,-38.5,-48,0,0,-0.00981153 -36258,5403:488:1,-38,-48,0,0,-0.00910922 -36259,5403:487:2,-37.5,-48,0,0,-0.00876848 -36260,5403:487:1,-37,-48,0,0,-0.00875287 -36261,5403:486:2,-36.5,-48,0,0,-0.00877242 -36262,5403:486:1,-36,-48,0,0,-0.00876657 -36263,5403:485:2,-35.5,-48,0,0,-0.00888061 -36264,5403:485:1,-35,-48,0,0,-0.00896413 -36265,5403:384:2,-34.5,-48,0,0,-0.00895218 -36266,5403:384:1,-34,-48,0,0,-0.00882539 -36267,5403:383:2,-33.5,-48,0,0,-0.00854664 -36268,5403:383:1,-33,-48,0,0,-0.00814692 -36269,5403:382:2,-32.5,-48,0,0,-0.00786872 -36270,5403:382:1,-32,-48,0,0,-0.0079056 -36271,5403:381:2,-31.5,-48,0,0,-0.00801194 -36272,5403:381:1,-31,-48,0,0,-0.00796925 -36273,5403:380:2,-30.5,-48,0,0,-0.00778855 -36274,5403:380:1,-30,-48,0,0,-0.00752769 -36275,5402:489:2,-29.5,-48,0,0,-0.00743611 -36276,5402:489:1,-29,-48,0,0,-0.007521 -36277,5402:488:2,-28.5,-48,0,0,-0.00761198 -36278,5402:488:1,-28,-48,0,0,-0.00762725 -36279,5402:487:2,-27.5,-48,0,0,-0.00746927 -36280,5402:487:1,-27,-48,0,0,-0.00729513 -36281,5402:486:2,-26.5,-48,0,0,-0.00741462 -36282,5402:486:1,-26,-48,0,0,-0.00777121 -36283,5402:485:2,-25.5,-48,0,0,-0.00772462 -36284,5402:485:1,-25,-48,0,0,-0.00784773 -36285,5402:384:2,-24.5,-48,0,0,-0.00840875 -36286,5402:384:1,-24,-48,0,0,-0.00895017 -36287,5402:383:2,-23.5,-48,0,0,-0.0101681 -36288,5402:383:1,-23,-48,0,0,-0.010393 -36289,5402:382:2,-22.5,-48,0,0,-0.0101206 -36290,5402:382:1,-22,-48,0,0,-0.0094886 -36291,5402:381:2,-21.5,-48,0,0,-0.00876848 -36292,5402:381:1,-21,-48,0,0,-0.00885491 -36293,5402:380:2,-20.5,-48,0,0,-0.0088846 -36294,5402:380:1,-20,-48,0,0,-0.00917441 -36295,5401:489:2,-19.5,-48,0,0,-0.00958004 -36296,5401:489:1,-19,-48,0,0,-0.00974389 -36297,5401:488:2,-18.5,-48,0,0,-0.00972215 -36298,5401:488:1,-18,-48,0,0,-0.0096186 -36299,5401:487:2,-17.5,-48,0,0,-0.00940438 -36300,5401:487:1,-17,-48,0,0,-0.00921746 -36301,5401:486:2,-16.5,-48,0,0,-0.00922775 -36302,5401:486:1,-16,-48,0,0,-0.00970701 -36303,5401:485:2,-15.5,-48,0,0,-0.00990388 -36304,5401:485:1,-15,-48,0,0,-0.00988401 -36305,5401:384:2,-14.5,-48,0,0,-0.00971997 -36306,5401:384:1,-14,-48,0,0,-0.00942328 -36307,5401:383:2,-13.5,-48,0,0,-0.00920311 -36308,5401:383:1,-13,-48,0,0,-0.00936038 -36309,5401:382:2,-12.5,-48,0,0,-0.00972864 -36310,5401:382:1,-12,-48,0,0,-0.00977219 -36311,5401:381:2,-11.5,-48,0,0,-0.00963367 -36312,5401:381:1,-11,-48,0,0,-0.00983339 -36313,5401:380:2,-10.5,-48,0,0,-0.00972652 -36314,5401:380:1,-10,-48,0,0,-0.00896614 -36315,5400:489:2,-9.5,-48,0,0,-0.00817782 -36316,5400:489:1,-9,-48,0,0,-0.00812701 -36317,5400:488:2,-8.5,-48,0,0,-0.00826203 -36318,5400:488:1,-8,-48,0,0,-0.00827125 -36319,5400:487:2,-7.5,-48,0,0,-0.00816327 -36320,5400:487:1,-7,-48,0,0,-0.00802087 -36321,5400:486:2,-6.5,-48,0,0,-0.00802982 -36322,5400:486:1,-6,-48,0,0,-0.00784773 -36323,5400:485:2,-5.5,-48,0,0,-0.0076732 -36324,5400:485:1,-5,-48,0,0,-0.00757983 -36325,5400:384:2,-4.5,-48,0,0,-0.00752606 -36326,5400:384:1,-4,-48,0,0,-0.00747927 -36327,5400:383:2,-3.5,-48,0,0,-0.00741628 -36328,5400:383:1,-3,-48,0,0,-0.00735383 -36329,5400:382:2,-2.5,-48,0,0,-0.00729999 -36330,5400:382:1,-2,-48,0,0,-0.00722404 -36331,5400:381:2,-1.5,-48,0,0,-0.00713142 -36332,5400:381:1,-1,-48,0,0,-0.00704938 -36333,5400:380:2,-0.5,-48,0,0,-0.00699156 -36334,3400:380:2,0,-48,0,0,-0.00696517 -36335,3400:380:2,0.5,-48,0,0,-0.00689272 -36336,3400:381:1,1,-48,0,0,-0.00685297 -36337,3400:381:2,1.5,-48,0,0,-0.0069004 -36338,3400:382:1,2,-48,0,0,-0.0068866 -36339,3400:382:2,2.5,-48,0,0,-0.00685604 -36340,3400:383:1,3,-48,0,0,-0.00680587 -36341,3400:383:2,3.5,-48,0,0,-0.00667991 -36342,3400:384:1,4,-48,0,0,-0.00654607 -36343,3400:384:2,4.5,-48,0,0,-0.00658403 -36344,3400:485:1,5,-48,0,0,-0.00660897 -36345,3400:485:2,5.5,-48,0,0,-0.00656649 -36346,3400:486:1,6,-48,0,0,-0.00653152 -36347,3400:486:2,6.5,-48,0,0,-0.00662959 -36348,3400:487:1,7,-48,0,0,-0.0067817 -36349,3400:487:2,7.5,-48,0,0,-0.0067953 -36350,3400:488:1,8,-48,0,0,-0.00679982 -36351,3400:488:2,8.5,-48,0,0,-0.00681951 -36352,3400:489:1,9,-48,0,0,-0.0067441 -36353,3400:489:2,9.5,-48,0,0,-0.00665321 -36354,3401:380:1,10,-48,0,0,-0.00660605 -36355,3401:380:2,10.5,-48,0,0,-0.00651412 -36356,3401:381:1,11,-48,0,0,-0.00636947 -36357,3401:381:2,11.5,-48,0,0,-0.00630887 -36358,3401:382:1,12,-48,0,0,-0.0063285 -36359,3401:382:2,12.5,-48,0,0,-0.00635954 -36360,3401:383:1,13,-48,0,0,-0.00637086 -36361,3401:383:2,13.5,-48,0,0,-0.00634682 -36362,3401:384:1,14,-48,0,0,-0.00629762 -36363,3401:384:2,14.5,-48,0,0,-0.0062405 -36364,3401:485:1,15,-48,0,0,-0.00620314 -36365,3401:485:2,15.5,-48,0,0,-0.00618801 -36366,3401:486:1,16,-48,0,0,-0.00618662 -36367,3401:486:2,16.5,-48,0,0,-0.00615781 -36368,3401:487:1,17,-48,0,0,-0.00611145 -36369,3401:487:2,17.5,-48,0,0,-0.00609518 -36370,3401:488:1,18,-48,0,0,-0.00609518 -36371,3401:488:2,18.5,-48,0,0,-0.00610329 -36372,3401:489:1,19,-48,0,0,-0.00609382 -36373,3401:489:2,19.5,-48,0,0,-0.00607351 -36374,3402:380:1,20,-48,0,0,-0.00606544 -36375,3402:380:2,20.5,-48,0,0,-0.00599574 -36376,3402:381:1,21,-48,0,0,-0.00594 -36377,3402:381:2,21.5,-48,0,0,-0.00599171 -36378,3402:382:1,22,-48,0,0,-0.00600775 -36379,3402:382:2,22.5,-48,0,0,-0.00590709 -36380,3402:383:1,23,-48,0,0,-0.0058172 -36381,3402:383:2,23.5,-48,0,0,-0.00575677 -36382,3402:384:1,24,-48,0,0,-0.00572488 -36383,3402:384:2,24.5,-48,0,0,-0.00584441 -36384,3402:485:1,25,-48,0,0,-0.00606676 -36385,3402:485:2,25.5,-48,0,0,-0.00606676 -36386,3402:486:1,26,-48,0,0,-0.00594133 -36387,3402:486:2,26.5,-48,0,0,-0.00591892 -36388,3402:487:1,27,-48,0,0,-0.00605599 -36389,3402:487:2,27.5,-48,0,0,-0.00629203 -36390,3402:488:1,28,-48,0,0,-0.00685604 -36391,3402:488:2,28.5,-48,0,0,-0.00733423 -36392,3402:489:1,29,-48,0,0,-0.00703838 -36393,3402:489:2,29.5,-48,0,0,-0.00706352 -36394,3403:380:1,30,-48,0,0,-0.00732766 -36395,3403:380:2,30.5,-48,0,0,-0.00762383 -36396,3403:381:1,31,-48,0,0,-0.00777813 -36397,3403:381:2,31.5,-48,0,0,-0.00810709 -36398,3403:382:1,32,-48,0,0,-0.00842185 -36399,3403:382:2,32.5,-48,0,0,-0.00847268 -36400,3403:383:1,33,-48,0,0,-0.00812877 -36401,3403:383:2,33.5,-48,0,0,-0.00739651 -36402,3403:384:1,34,-48,0,0,-0.00695435 -36403,3403:384:2,34.5,-48,0,0,-0.00676965 -36404,3403:485:1,35,-48,0,0,-0.00674259 -36405,3403:485:2,35.5,-48,0,0,-0.0069004 -36406,3403:486:1,36,-48,0,0,-0.00716482 -36407,3403:486:2,36.5,-48,0,0,-0.00716482 -36408,3403:487:1,37,-48,0,0,-0.0077643 -36409,3403:487:2,37.5,-48,0,0,-0.0078775 -36410,3403:488:1,38,-48,0,0,-0.00746262 -36411,3403:488:2,38.5,-48,0,0,-0.0075428 -36412,3403:489:1,39,-48,0,0,-0.00780763 -36413,3403:489:2,39.5,-48,0,0,-0.00796395 -36414,3404:380:1,40,-48,0,0,-0.00795686 -36415,3404:380:2,40.5,-48,0,0,-0.00770748 -36416,3404:381:1,41,-48,0,0,-0.00741135 -36417,3404:381:2,41.5,-48,0,0,-0.00735708 -36418,3404:382:1,42,-48,0,0,-0.00757309 -36419,3404:382:2,42.5,-48,0,0,-0.00788805 -36420,3404:383:1,43,-48,0,0,-0.00786172 -36421,3404:383:2,43.5,-48,0,0,-0.00768348 -36422,3404:384:1,44,-48,0,0,-0.00775396 -36423,3404:384:2,44.5,-48,0,0,-0.00778681 -36424,3404:485:1,45,-48,0,0,-0.00769204 -36425,3404:485:2,45.5,-48,0,0,-0.00768692 -36426,3404:486:1,46,-48,0,0,-0.00765274 -36427,3404:486:2,46.5,-48,0,0,-0.00773155 -36428,3404:487:1,47,-48,0,0,-0.00784251 -36429,3404:487:2,47.5,-48,0,0,-0.00788451 -36430,3404:488:1,48,-48,0,0,-0.00811431 -36431,3404:488:2,48.5,-48,0,0,-0.00849536 -36432,3404:489:1,49,-48,0,0,-0.00864819 -36433,3404:489:2,49.5,-48,0,0,-0.00862892 -36434,3405:380:1,50,-48,0,0,-0.00846704 -36435,3405:380:2,50.5,-48,0,0,-0.00833232 -36436,3405:381:1,51,-48,0,0,-0.00826024 -36437,3405:381:2,51.5,-48,0,0,-0.00805129 -36438,3405:382:1,52,-48,0,0,-0.00818878 -36439,3405:382:2,52.5,-48,0,0,-0.00925662 -36440,3405:383:1,53,-48,0,0,-0.0095865 -36441,3405:383:2,53.5,-48,0,0,-0.00842752 -36442,3405:384:1,54,-48,0,0,-0.00784773 -36443,3405:384:2,54.5,-48,0,0,-0.00782856 -36444,3405:485:1,55,-48,0,0,-0.0078933 -36445,3405:485:2,55.5,-48,0,0,-0.00795329 -36446,3405:486:1,56,-48,0,0,-0.008207 -36447,3405:486:2,56.5,-48,0,0,-0.00844818 -36448,3405:487:1,57,-48,0,0,-0.00889645 -36449,3405:487:2,57.5,-48,0,0,-0.00927314 -36450,3405:488:1,58,-48,0,0,-0.00929595 -36451,3405:488:2,58.5,-48,0,0,-0.00926279 -36452,3405:489:1,59,-48,0,0,-0.00923805 -36453,3405:489:2,59.5,-48,0,0,-0.00902833 -36454,3406:380:1,60,-48,0,0,-0.00866167 -36455,3406:380:2,60.5,-48,0,0,-0.00868101 -36456,3406:381:1,61,-48,0,0,-0.00887071 -36457,3406:381:2,61.5,-48,0,0,-0.00920924 -36458,3406:382:1,62,-48,0,0,-0.0093479 -36459,3406:382:2,62.5,-48,0,0,-0.00896217 -36460,3406:383:1,63,-48,0,0,-0.00894421 -36461,3406:383:2,63.5,-48,0,0,-0.00910922 -36462,3406:384:1,64,-48,0,0,-0.00924422 -36463,3406:384:2,64.5,-48,0,0,-0.0099793 -36464,3406:485:1,65,-48,0,0,-0.010552 -36465,3406:485:2,65.5,-48,0,0,-0.0106063 -36466,3406:486:1,66,-48,0,0,-0.0104558 -36467,3406:486:2,66.5,-48,0,0,-0.0101319 -36468,3406:487:1,67,-48,0,0,-0.00994592 -36469,3406:487:2,67.5,-48,0,0,-0.00987957 -36470,3406:488:1,68,-48,0,0,-0.00982463 -36471,3406:488:2,68.5,-48,0,0,-0.00976999 -36472,3406:489:1,69,-48,0,0,-0.00970047 -36473,3406:489:2,69.5,-48,0,0,-0.0095865 -36474,3407:380:1,70,-48,0,0,-0.00951829 -36475,3407:380:2,70.5,-48,0,0,-0.00951616 -36476,3407:381:1,71,-48,0,0,-0.00952892 -36477,3407:381:2,71.5,-48,0,0,-0.00959506 -36478,3407:382:1,72,-48,0,0,-0.00960146 -36479,3407:382:2,72.5,-48,0,0,-0.00954379 -36480,3407:383:2,73.5,-48,0,0,-0.00932293 -36481,3407:384:1,74,-48,0,0,-0.00912752 -36482,3407:384:2,74.5,-48,0,0,-0.00911325 -36483,3407:485:1,75,-48,0,0,-0.00913566 -36484,3407:485:2,75.5,-48,0,0,-0.00904647 -36485,3407:486:1,76,-48,0,0,-0.00851624 -36486,3407:486:2,76.5,-48,0,0,-0.00740969 -36487,3407:487:1,77,-48,0,0,-0.00734729 -36488,3407:487:2,77.5,-48,0,0,-0.00774875 -36489,3407:488:1,78,-48,0,0,-0.00784773 -36490,3407:488:2,78.5,-48,0,0,-0.00771948 -36491,3407:489:1,79,-48,0,0,-0.00756466 -36492,3407:489:2,79.5,-48,0,0,-0.00742455 -36493,3408:380:1,80,-48,0,0,-0.00740144 -36494,3408:380:2,80.5,-48,0,0,-0.00732442 -36495,3408:381:1,81,-48,0,0,-0.0072935 -36496,3408:381:2,81.5,-48,0,0,-0.00764593 -36497,3408:382:1,82,-48,0,0,-0.00802982 -36498,3408:382:2,82.5,-48,0,0,-0.00816144 -36499,3408:383:1,83,-48,0,0,-0.00829524 -36500,3408:383:2,83.5,-48,0,0,-0.00880769 -36501,3408:384:1,84,-48,0,0,-0.00953314 -36502,3408:384:2,84.5,-48,0,0,-0.0117359 -36503,3408:485:1,85,-48,0,0,-0.0128918 -36504,3408:485:2,85.5,-48,0,0,-0.0129641 -36505,3408:486:1,86,-48,0,0,-0.0127455 -36506,3408:486:2,86.5,-48,0,0,-0.0128199 -36507,3408:487:1,87,-48,0,0,-0.0130954 -36508,3408:487:2,87.5,-48,0,0,-0.0131866 -36509,3408:488:1,88,-48,0,0,-0.0129149 -36510,3408:488:2,88.5,-48,0,0,-0.0124412 -36511,3408:489:1,89,-48,0,0,-0.0118386 -36512,3408:489:2,89.5,-48,0,0,-0.0108604 -36513,3409:380:1,90,-48,0,0,-0.011148 -36514,3409:380:2,90.5,-48,0,0,-0.0116809 -36515,3409:381:1,91,-48,0,0,-0.0118678 -36516,3409:381:2,91.5,-48,0,0,-0.0118043 -36517,3409:382:1,92,-48,0,0,-0.0116627 -36518,3409:382:2,92.5,-48,0,0,-0.0114971 -36519,3409:383:1,93,-48,0,0,-0.0113668 -36520,3409:383:2,93.5,-48,0,0,-0.0112481 -36521,3409:384:1,94,-48,0,0,-0.0107278 -36522,3409:384:2,94.5,-48,0,0,-0.009694 -36523,3409:485:1,95,-48,0,0,-0.00926903 -36524,3409:485:2,95.5,-48,0,0,-0.00936248 -36525,3409:486:1,96,-48,0,0,-0.0103745 -36526,3409:486:2,96.5,-48,0,0,-0.0118599 -36527,3409:487:1,97,-48,0,0,-0.0124301 -36528,3409:487:2,97.5,-48,0,0,-0.0123995 -36529,3409:488:1,98,-48,0,0,-0.0110685 -36530,3409:488:2,98.5,-48,0,0,-0.0100845 -36531,3409:489:1,99,-48,0,0,-0.00998154 -36532,3409:489:2,99.5,-48,0,0,-0.0105827 -36533,3410:380:1,100,-48,0,0,-0.0114253 -36534,3410:380:2,100.5,-48,0,0,-0.0119745 -36535,3410:381:1,101,-48,0,0,-0.0118811 -36536,3410:381:2,101.5,-48,0,0,-0.0106324 -36537,3410:382:1,102,-48,0,0,-0.0098752 -36538,3410:382:2,102.5,-48,0,0,-0.00968971 -36539,3410:383:1,103,-48,0,0,-0.00988838 -36540,3410:383:2,103.5,-48,0,0,-0.0104046 -36541,3410:384:1,104,-48,0,0,-0.0108024 -36542,3410:384:2,104.5,-48,0,0,-0.0107854 -36543,3410:485:1,105,-48,0,0,-0.0106324 -36544,3410:485:2,105.5,-48,0,0,-0.0105992 -36545,3410:486:1,106,-48,0,0,-0.0107782 -36546,3410:486:2,106.5,-48,0,0,-0.0109309 -36547,3410:487:1,107,-48,0,0,-0.0109823 -36548,3410:487:2,107.5,-48,0,0,-0.0109848 -36549,3410:488:1,108,-48,0,0,-0.0110859 -36550,3410:488:2,108.5,-48,0,0,-0.011311 -36551,3410:489:1,109,-48,0,0,-0.0115073 -36552,3410:489:2,109.5,-48,0,0,-0.011778 -36553,3411:380:1,110,-48,0,0,-0.0125082 -36554,3411:380:2,110.5,-48,0,0,-0.0125446 -36555,3411:381:1,111,-48,0,0,-0.013637 -36556,3411:381:2,111.5,-48,0,0,-0.014839 -36557,3411:382:1,112,-48,0,0,-0.0154365 -36558,3411:382:2,112.5,-48,0,0,-0.015762 -36559,3411:383:1,113,-48,0,0,-0.0154365 -36560,3411:383:2,113.5,-48,0,0,-0.0147263 -36561,3411:384:1,114,-48,0,0,-0.0136614 -36562,3411:384:2,114.5,-48,0,0,-0.0128428 -36563,3411:485:1,115,-48,0,0,-0.0126319 -36564,3411:485:2,115.5,-48,0,0,-0.0133111 -36565,3411:486:1,116,-48,0,0,-0.0142618 -36566,3411:486:2,116.5,-48,0,0,-0.0145884 -36567,3411:487:1,117,-48,0,0,-0.0136767 -36568,3411:487:2,117.5,-48,0,0,-0.0132487 -36569,3411:488:1,118,-48,0,0,-0.0131541 -36570,3411:488:2,118.5,-48,0,0,-0.0130164 -36571,3411:489:1,119,-48,0,0,-0.0131541 -36572,3411:489:2,119.5,-48,0,0,-0.0135093 -36573,3412:380:1,120,-48,0,0,-0.0135244 -36574,3412:380:2,120.5,-48,0,0,-0.0134459 -36575,3412:381:1,121,-48,0,0,-0.013772 -36576,3412:381:2,121.5,-48,0,0,-0.0149292 -36577,3412:382:1,122,-48,0,0,-0.0153089 -36578,3412:382:2,122.5,-48,0,0,-0.0152952 -36579,3412:383:1,123,-48,0,0,-0.0153985 -36580,3412:383:2,123.5,-48,0,0,-0.0156247 -36581,3412:384:1,124,-48,0,0,-0.015709 -36582,3412:384:2,124.5,-48,0,0,-0.0155095 -36583,3412:485:1,125,-48,0,0,-0.0150367 -36584,3412:485:2,125.5,-48,0,0,-0.0150671 -36585,3412:486:1,126,-48,0,0,-0.0150064 -36586,3412:486:2,126.5,-48,0,0,-0.0150502 -36587,3412:487:1,127,-48,0,0,-0.0151382 -36588,3412:487:2,127.5,-48,0,0,-0.0153606 -36589,3412:488:1,128,-48,0,0,-0.0156879 -36590,3412:488:2,128.5,-48,0,0,-0.0157726 -36591,3412:489:1,129,-48,0,0,-0.0153021 -36592,3412:489:2,129.5,-48,0,0,-0.0147495 -36593,3413:380:1,130,-48,0,0,-0.0144355 -36594,3413:380:2,130.5,-48,0,0,-0.014249 -36595,3413:381:1,131,-48,0,0,-0.0143291 -36596,3413:381:2,131.5,-48,0,0,-0.0147594 -36597,3413:382:1,132,-48,0,0,-0.0150367 -36598,3413:382:2,132.5,-48,0,0,-0.0154469 -36599,3413:383:1,133,-48,0,0,-0.0158543 -36600,3413:383:2,133.5,-48,0,0,-0.0156949 -36601,3413:384:1,134,-48,0,0,-0.0151721 -36602,3413:384:2,134.5,-48,0,0,-0.0147395 -36603,3413:485:1,135,-48,0,0,-0.0146934 -36604,3413:485:2,135.5,-48,0,0,-0.0149359 -36605,3413:486:1,136,-48,0,0,-0.0151247 -36606,3413:486:2,136.5,-48,0,0,-0.0149459 -36607,3413:487:1,137,-48,0,0,-0.0143999 -36608,3413:487:2,137.5,-48,0,0,-0.0139427 -36609,3413:488:1,138,-48,0,0,-0.0137997 -36610,3413:488:2,138.5,-48,0,0,-0.0139771 -36611,3413:489:1,139,-48,0,0,-0.0144517 -36612,3413:489:2,139.5,-48,0,0,-0.0151892 -36613,3414:380:1,140,-48,0,0,-0.0156844 -36614,3414:380:2,140.5,-48,0,0,-0.0159328 -36615,3414:381:1,141,-48,0,0,-0.0159507 -36616,3414:381:2,141.5,-48,0,0,-0.0157515 -36617,3414:382:1,142,-48,0,0,-0.0155408 -36618,3414:382:2,142.5,-48,0,0,-0.0155652 -36619,3414:383:1,143,-48,0,0,-0.0159113 -36620,3414:383:2,143.5,-48,0,0,-0.0162251 -36621,3414:384:1,144,-48,0,0,-0.0161018 -36622,3414:384:2,144.5,-48,0,0,-0.0160224 -36623,3414:485:1,145,-48,0,0,-0.0161307 -36624,3414:485:2,145.5,-48,0,0,-0.0159399 -36625,3414:486:1,146,-48,0,0,-0.0150671 -36626,3414:486:2,146.5,-48,0,0,-0.0140777 -36627,3414:487:1,147,-48,0,0,-0.013338 -36628,3414:487:2,147.5,-48,0,0,-0.012497 -36629,3414:488:1,148,-48,0,0,-0.01068 -36630,3414:488:2,148.5,-48,0,0,-0.0093479 -36631,3414:489:1,149,-48,0,0,-0.00960146 -36632,3414:489:2,149.5,-48,0,0,-0.0126093 -36633,3415:380:1,150,-48,0,0,-0.0185594 -36634,3415:380:2,150.5,-48,0,0,-0.0204655 -36635,3415:381:1,151,-48,0,0,-0.0201088 -36636,3415:381:2,151.5,-48,0,0,-0.0161887 -36637,3415:382:1,152,-48,0,0,-0.0126545 -36638,3415:382:2,152.5,-48,0,0,-0.0152849 -36639,3415:383:1,153,-48,0,0,-0.0160404 -36640,3415:383:2,153.5,-48,0,0,-0.0170662 -36641,3415:384:1,154,-48,0,0,-0.0193053 -36642,3415:384:2,154.5,-48,0,0,-0.0206044 -36643,3415:485:1,155,-48,0,0,-0.0224951 -36644,3415:485:2,155.5,-48,0,0,-0.0228485 -36645,3415:486:1,156,-48,0,0,-0.0221373 -36646,3415:486:2,156.5,-48,0,0,-0.0193924 -36647,3415:487:1,157,-48,0,0,-0.0160512 -36648,3415:487:2,157.5,-48,0,0,-0.0141916 -36649,3415:488:1,158,-48,0,0,-0.0154365 -36650,3415:488:2,158.5,-48,0,0,-0.0184803 -36651,3415:489:1,159,-48,0,0,-0.0175248 -36652,3415:489:2,159.5,-48,0,0,-0.0157515 -36653,3416:380:1,160,-48,0,0,-0.016601 -36654,3416:380:2,160.5,-48,0,0,-0.0180285 -36655,3416:381:1,161,-48,0,0,-0.0175761 -36656,3416:381:2,161.5,-48,0,0,-0.0163825 -36657,3416:382:1,162,-48,0,0,-0.0162945 -36658,3416:382:2,162.5,-48,0,0,-0.0174659 -36659,3416:383:1,163,-48,0,0,-0.0230092 -36660,3416:383:2,163.5,-48,0,0,-0.0246303 -36661,3416:384:1,164,-48,0,0,-0.0254758 -36662,3416:384:2,164.5,-48,0,0,-0.0259477 -36663,3416:485:1,165,-48,0,0,-0.0262912 -36664,3416:485:2,165.5,-48,0,0,-0.0264167 -36665,3416:486:1,166,-48,0,0,-0.0263031 -36666,3416:486:2,166.5,-48,0,0,-0.0256088 -36667,3416:487:1,167,-48,0,0,-0.0248152 -36668,3416:487:2,167.5,-48,0,0,-0.0238462 -36669,3416:488:1,168,-48,0,0,-0.0229729 -36670,3416:488:2,168.5,-48,0,0,-0.0227661 -36671,3416:489:1,169,-48,0,0,-0.0232182 -36672,3416:489:2,169.5,-48,0,0,-0.0238353 -36673,3417:380:1,170,-48,0,0,-0.0242542 -36674,3417:380:2,170.5,-48,0,0,-0.0247086 -36675,3417:381:1,171,-48,0,0,-0.0251091 -36676,3417:381:2,171.5,-48,0,0,-0.0258127 -36677,3417:382:1,172,-48,0,0,-0.0261959 -36678,3417:382:2,172.5,-48,0,0,-0.0264226 -36679,3417:383:1,173,-48,0,0,-0.0268211 -36680,3417:383:2,173.5,-48,0,0,-0.0275553 -36681,3417:384:1,174,-48,0,0,-0.0290666 -36682,3417:384:2,174.5,-48,0,0,-0.0299935 -36683,3417:485:1,175,-48,0,0,-0.03051 -36684,3417:485:2,175.5,-48,0,0,-0.0309861 -36685,3417:486:1,176,-48,0,0,-0.0315777 -36686,3417:486:2,176.5,-48,0,0,-0.0314985 -36687,3417:487:1,177,-48,0,0,-0.0305724 -36688,3417:487:2,177.5,-48,0,0,-0.0296137 -36689,3417:488:1,178,-48,0,0,-0.0288232 -36690,3417:488:2,178.5,-48,0,0,-0.0274305 -36691,3417:489:1,179,-48,0,0,-0.0249617 -36692,3417:489:2,179.5,-48,0,0,-0.024436 -36693,3418:380:1,180,-48,0,0,-0.0253893 -36694,5418:370:3,-180,-47.5,0,0,-0.0246081 -36695,5417:479:4,-179.5,-47.5,0,0,-0.0245692 -36696,5417:479:3,-179,-47.5,0,0,-0.0250296 -36697,5417:478:4,-178.5,-47.5,0,0,-0.0263628 -36698,5417:478:3,-178,-47.5,0,0,-0.0283553 -36699,5417:477:4,-177.5,-47.5,0,0,-0.0299593 -36700,5417:477:3,-177,-47.5,0,0,-0.0299662 -36701,5417:476:4,-176.5,-47.5,0,0,-0.0278637 -36702,5417:476:3,-176,-47.5,0,0,-0.0251034 -36703,5417:475:4,-175.5,-47.5,0,0,-0.0232182 -36704,5417:475:3,-175,-47.5,0,0,-0.0228744 -36705,5417:374:4,-174.5,-47.5,0,0,-0.0227302 -36706,5417:374:3,-174,-47.5,0,0,-0.0229365 -36707,5417:373:4,-173.5,-47.5,0,0,-0.0242872 -36708,5417:373:3,-173,-47.5,0,0,-0.0248995 -36709,5417:372:4,-172.5,-47.5,0,0,-0.0247422 -36710,5417:372:3,-172,-47.5,0,0,-0.0252517 -36711,5417:371:4,-171.5,-47.5,0,0,-0.0257019 -36712,5417:371:3,-171,-47.5,0,0,-0.0265489 -36713,5417:370:4,-170.5,-47.5,0,0,-0.0268455 -36714,5417:370:3,-170,-47.5,0,0,-0.0266937 -36715,5416:479:4,-169.5,-47.5,0,0,-0.0267907 -36716,5416:479:3,-169,-47.5,0,0,-0.0261188 -36717,5416:478:4,-168.5,-47.5,0,0,-0.0241011 -36718,5416:478:3,-168,-47.5,0,0,-0.0222878 -36719,5416:477:4,-167.5,-47.5,0,0,-0.0215845 -36720,5416:477:3,-167,-47.5,0,0,-0.0215991 -36721,5416:476:4,-166.5,-47.5,0,0,-0.0218098 -36722,5416:476:3,-166,-47.5,0,0,-0.021687 -36723,5416:475:4,-165.5,-47.5,0,0,-0.0214049 -36724,5416:475:3,-165,-47.5,0,0,-0.0215601 -36725,5416:374:4,-164.5,-47.5,0,0,-0.0221123 -36726,5416:374:3,-164,-47.5,0,0,-0.0228021 -36727,5416:373:4,-163.5,-47.5,0,0,-0.0233234 -36728,5416:373:3,-163,-47.5,0,0,-0.0232655 -36729,5416:372:4,-162.5,-47.5,0,0,-0.0227404 -36730,5416:372:3,-162,-47.5,0,0,-0.0221522 -36731,5416:371:4,-161.5,-47.5,0,0,-0.0222374 -36732,5416:371:3,-161,-47.5,0,0,-0.0237116 -36733,5416:370:4,-160.5,-47.5,0,0,-0.0245026 -36734,5416:370:3,-160,-47.5,0,0,-0.0247814 -36735,5415:479:4,-159.5,-47.5,0,0,-0.0248545 -36736,5415:479:3,-159,-47.5,0,0,-0.0250239 -36737,5415:478:4,-158.5,-47.5,0,0,-0.0255856 -36738,5415:478:3,-158,-47.5,0,0,-0.0265127 -36739,5415:477:4,-157.5,-47.5,0,0,-0.0274929 -36740,5415:477:3,-157,-47.5,0,0,-0.0280989 -36741,5415:476:4,-156.5,-47.5,0,0,-0.0280415 -36742,5415:476:3,-156,-47.5,0,0,-0.0272876 -36743,5415:475:4,-155.5,-47.5,0,0,-0.0256088 -36744,5415:475:3,-155,-47.5,0,0,-0.0235087 -36745,5415:374:4,-154.5,-47.5,0,0,-0.0217361 -36746,5415:374:3,-154,-47.5,0,0,-0.0206881 -36747,5415:373:4,-153.5,-47.5,0,0,-0.0195546 -36748,5415:373:3,-153,-47.5,0,0,-0.0181833 -36749,5415:372:4,-152.5,-47.5,0,0,-0.017855 -36750,5415:372:3,-152,-47.5,0,0,-0.0180895 -36751,5415:371:4,-151.5,-47.5,0,0,-0.0176991 -36752,5415:371:3,-151,-47.5,0,0,-0.0174934 -36753,5415:370:4,-150.5,-47.5,0,0,-0.0169477 -36754,5415:370:3,-150,-47.5,0,0,-0.0163311 -36755,5414:479:4,-149.5,-47.5,0,0,-0.0157939 -36756,5414:479:3,-149,-47.5,0,0,-0.0153639 -36757,5414:478:4,-148.5,-47.5,0,0,-0.0152609 -36758,5414:478:3,-148,-47.5,0,0,-0.0147892 -36759,5414:477:4,-147.5,-47.5,0,0,-0.0140839 -36760,5414:477:3,-147,-47.5,0,0,-0.0135002 -36761,5414:476:4,-146.5,-47.5,0,0,-0.0131306 -36762,5414:476:3,-146,-47.5,0,0,-0.0128918 -36763,5414:475:4,-145.5,-47.5,0,0,-0.0128947 -36764,5414:475:3,-145,-47.5,0,0,-0.0130748 -36765,5414:374:4,-144.5,-47.5,0,0,-0.0131453 -36766,5414:374:3,-144,-47.5,0,0,-0.0165044 -36767,5414:373:4,-143.5,-47.5,0,0,-0.0177111 -36768,5414:373:3,-143,-47.5,0,0,-0.0179638 -36769,5414:372:4,-142.5,-47.5,0,0,-0.017715 -36770,5414:372:3,-142,-47.5,0,0,-0.0172474 -36771,5414:371:4,-141.5,-47.5,0,0,-0.0170393 -36772,5414:371:3,-141,-47.5,0,0,-0.0182693 -36773,5414:370:4,-140.5,-47.5,0,0,-0.0214921 -36774,5414:370:3,-140,-47.5,0,0,-0.026876 -36775,5413:479:4,-139.5,-47.5,0,0,-0.030482 -36776,5413:479:3,-139,-47.5,0,0,-0.0310214 -36777,5413:478:4,-138.5,-47.5,0,0,-0.030768 -36778,5413:478:3,-138,-47.5,0,0,-0.0296812 -36779,5413:477:4,-137.5,-47.5,0,0,-0.0295195 -36780,5413:477:3,-137,-47.5,0,0,-0.0295464 -36781,5413:476:4,-136.5,-47.5,0,0,-0.0302954 -36782,5413:476:3,-136,-47.5,0,0,-0.0304405 -36783,5413:475:4,-135.5,-47.5,0,0,-0.0311559 -36784,5413:475:3,-135,-47.5,0,0,-0.032841 -36785,5413:374:4,-134.5,-47.5,0,0,-0.0338688 -36786,5413:374:3,-134,-47.5,0,0,-0.0334002 -36787,5413:373:4,-133.5,-47.5,0,0,-0.032976 -36788,5413:373:3,-133,-47.5,0,0,-0.0328783 -36789,5413:372:4,-132.5,-47.5,0,0,-0.0313767 -36790,5413:372:3,-132,-47.5,0,0,-0.0288296 -36791,5413:371:4,-131.5,-47.5,0,0,-0.0298302 -36792,5413:371:3,-131,-47.5,0,0,-0.0340706 -36793,5413:370:4,-130.5,-47.5,0,0,-0.0370125 -36794,5413:370:3,-130,-47.5,0,0,-0.040562 -36795,5412:479:4,-129.5,-47.5,0,0,-0.0405247 -36796,5412:479:3,-129,-47.5,0,0,-0.0391968 -36797,5412:478:4,-128.5,-47.5,0,0,-0.038714 -36798,5412:478:3,-128,-47.5,0,0,-0.0360918 -36799,5412:477:4,-127.5,-47.5,0,0,-0.0375336 -36800,5412:477:3,-127,-47.5,0,0,-0.0388387 -36801,5412:476:4,-126.5,-47.5,0,0,-0.0400155 -36802,5412:476:3,-126,-47.5,0,0,-0.0412583 -36803,5412:475:4,-125.5,-47.5,0,0,-0.0435827 -36804,5412:475:3,-125,-47.5,0,0,-0.0438753 -36805,5412:374:4,-124.5,-47.5,0,0,-0.0428854 -36806,5412:374:3,-124,-47.5,0,0,-0.0422673 -36807,5412:373:4,-123.5,-47.5,0,0,-0.0421605 -36808,5412:373:3,-123,-47.5,0,0,-0.041774 -36809,5412:372:4,-122.5,-47.5,0,0,-0.040506 -36810,5412:372:3,-122,-47.5,0,0,-0.0390531 -36811,5412:371:4,-121.5,-47.5,0,0,-0.0370125 -36812,5412:371:3,-121,-47.5,0,0,-0.0346993 -36813,5412:370:4,-120.5,-47.5,0,0,-0.0327884 -36814,5412:370:3,-120,-47.5,0,0,-0.0315272 -36815,5411:479:4,-119.5,-47.5,0,0,-0.0306911 -36816,5411:479:3,-119,-47.5,0,0,-0.0295732 -36817,5411:478:4,-118.5,-47.5,0,0,-0.0288624 -36818,5411:478:3,-118,-47.5,0,0,-0.0289808 -36819,5411:477:4,-117.5,-47.5,0,0,-0.0299049 -36820,5411:477:3,-117,-47.5,0,0,-0.0309508 -36821,5411:476:4,-116.5,-47.5,0,0,-0.0307539 -36822,5411:476:3,-116,-47.5,0,0,-0.0301989 -36823,5411:475:4,-115.5,-47.5,0,0,-0.0308383 -36824,5411:475:3,-115,-47.5,0,0,-0.0321588 -36825,5411:374:4,-114.5,-47.5,0,0,-0.032071 -36826,5411:374:3,-114,-47.5,0,0,-0.0321808 -36827,5411:373:4,-113.5,-47.5,0,0,-0.0321076 -36828,5411:373:3,-113,-47.5,0,0,-0.0321588 -36829,5411:372:4,-112.5,-47.5,0,0,-0.0323796 -36830,5411:372:3,-112,-47.5,0,0,-0.0329835 -36831,5411:371:4,-111.5,-47.5,0,0,-0.0334461 -36832,5411:371:3,-111,-47.5,0,0,-0.0321441 -36833,5411:370:4,-110.5,-47.5,0,0,-0.0299252 -36834,5411:370:3,-110,-47.5,0,0,-0.0291459 -36835,5410:479:4,-109.5,-47.5,0,0,-0.0290005 -36836,5410:479:3,-109,-47.5,0,0,-0.0285363 -36837,5410:478:4,-108.5,-47.5,0,0,-0.0281307 -36838,5410:478:3,-108,-47.5,0,0,-0.0279714 -36839,5410:477:4,-107.5,-47.5,0,0,-0.0276808 -36840,5410:477:3,-107,-47.5,0,0,-0.0270105 -36841,5410:476:4,-106.5,-47.5,0,0,-0.0266756 -36842,5410:476:3,-106,-47.5,0,0,-0.0267544 -36843,5410:475:4,-105.5,-47.5,0,0,-0.0269677 -36844,5410:475:3,-105,-47.5,0,0,-0.0271211 -36845,5410:374:4,-104.5,-47.5,0,0,-0.0268455 -36846,5410:374:3,-104,-47.5,0,0,-0.0259831 -36847,5410:373:4,-103.5,-47.5,0,0,-0.0252002 -36848,5410:373:3,-103,-47.5,0,0,-0.0255624 -36849,5410:372:4,-102.5,-47.5,0,0,-0.0264707 -36850,5410:372:3,-102,-47.5,0,0,-0.0269798 -36851,5410:371:4,-101.5,-47.5,0,0,-0.0268637 -36852,5410:371:3,-101,-47.5,0,0,-0.0269554 -36853,5410:370:4,-100.5,-47.5,0,0,-0.0270657 -36854,5410:370:3,-100,-47.5,0,0,-0.0269248 -36855,5409:479:4,-99.5,-47.5,0,0,-0.0266756 -36856,5409:479:3,-99,-47.5,0,0,-0.0264286 -36857,5409:478:4,-98.5,-47.5,0,0,-0.0262434 -36858,5409:478:3,-98,-47.5,0,0,-0.0261128 -36859,5409:477:4,-97.5,-47.5,0,0,-0.0259831 -36860,5409:477:3,-97,-47.5,0,0,-0.0258127 -36861,5409:476:4,-96.5,-47.5,0,0,-0.0255334 -36862,5409:476:3,-96,-47.5,0,0,-0.0249334 -36863,5409:475:4,-95.5,-47.5,0,0,-0.0241119 -36864,5409:475:3,-95,-47.5,0,0,-0.0244306 -36865,5409:374:4,-94.5,-47.5,0,0,-0.0249052 -36866,5409:374:3,-94,-47.5,0,0,-0.0250465 -36867,5409:373:4,-93.5,-47.5,0,0,-0.0250977 -36868,5409:373:3,-93,-47.5,0,0,-0.0250919 -36869,5409:372:4,-92.5,-47.5,0,0,-0.0249617 -36870,5409:372:3,-92,-47.5,0,0,-0.0247366 -36871,5409:371:4,-91.5,-47.5,0,0,-0.0244804 -36872,5409:371:3,-91,-47.5,0,0,-0.0242706 -36873,5409:370:4,-90.5,-47.5,0,0,-0.0240956 -36874,5409:370:3,-90,-47.5,0,0,-0.0241337 -36875,5408:479:4,-89.5,-47.5,0,0,-0.0246526 -36876,5408:479:3,-89,-47.5,0,0,-0.0253491 -36877,5408:478:4,-88.5,-47.5,0,0,-0.025766 -36878,5408:478:3,-88,-47.5,0,0,-0.0257893 -36879,5408:477:4,-87.5,-47.5,0,0,-0.0255856 -36880,5408:477:3,-87,-47.5,0,0,-0.0253663 -36881,5408:476:4,-86.5,-47.5,0,0,-0.0251546 -36882,5408:476:3,-86,-47.5,0,0,-0.0249503 -36883,5408:475:4,-85.5,-47.5,0,0,-0.0247871 -36884,5408:475:3,-85,-47.5,0,0,-0.024675 -36885,5408:374:4,-84.5,-47.5,0,0,-0.0246193 -36886,5408:374:3,-84,-47.5,0,0,-0.0246583 -36887,5408:373:4,-83.5,-47.5,0,0,-0.0248488 -36888,5408:373:3,-83,-47.5,0,0,-0.0251432 -36889,5408:372:4,-82.5,-47.5,0,0,-0.0253893 -36890,5408:372:3,-82,-47.5,0,0,-0.0254123 -36891,5408:371:4,-81.5,-47.5,0,0,-0.0252402 -36892,5408:371:3,-81,-47.5,0,0,-0.0251147 -36893,5408:370:4,-80.5,-47.5,0,0,-0.0253088 -36894,5408:370:3,-80,-47.5,0,0,-0.0259712 -36895,5407:479:4,-79.5,-47.5,0,0,-0.0267603 -36896,5407:479:3,-79,-47.5,0,0,-0.0271641 -36897,5407:478:4,-78.5,-47.5,0,0,-0.0270105 -36898,5407:478:3,-78,-47.5,0,0,-0.0264947 -36899,5407:477:4,-77.5,-47.5,0,0,-0.0260538 -36900,5407:477:3,-77,-47.5,0,0,-0.0258713 -36901,5407:476:4,-76.5,-47.5,0,0,-0.0258889 -36902,5407:476:3,-76,-47.5,0,0,-0.0260066 -36903,5407:475:4,-75.5,-47.5,0,0,-0.0264465 -36904,5407:475:3,-75,-47.5,0,0,-0.0270657 -36905,5407:374:4,-74.5,-47.5,0,0,-0.0289478 -36906,5407:374:3,-74,-47.5,0,0,-0.0293522 -36907,5407:373:4,-73.5,-47.5,0,0,-0.0287055 -36908,5407:373:3,-73,-47.5,0,0,-0.0279079 -36909,5407:372:4,-72.5,-47.5,0,0,-0.0263807 -36910,5407:372:3,-72,-47.5,0,0,-0.0259712 -36911,5407:371:4,-71.5,-47.5,0,0,-0.0270965 -36912,5407:371:3,-71,-47.5,0,0,-0.0274929 -36913,5407:370:4,-70.5,-47.5,0,0,-0.0273933 -36914,5407:370:3,-70,-47.5,0,0,-0.0288756 -36915,5406:479:4,-69.5,-47.5,0,0,-0.0309648 -36916,5406:479:3,-69,-47.5,0,0,-0.0326467 -36917,5406:478:4,-68.5,-47.5,0,0,-0.033074 -36918,5406:478:3,-68,-47.5,0,0,-0.0326094 -36919,5406:477:4,-67.5,-47.5,0,0,-0.0325276 -36920,5406:477:3,-67,-47.5,0,0,-0.0306072 -36921,5406:476:4,-66.5,-47.5,0,0,-0.0256146 -36922,5406:476:3,-66,-47.5,0,0,-0.0213954 -36923,5406:475:4,-65.5,-47.5,0,0,-0.0184221 -36924,5406:475:3,-65,-47.5,0,0,-0.0181221 -36925,5406:374:4,-64.5,-47.5,0,0,-0.0185761 -36926,5406:374:3,-64,-47.5,0,0,-0.0195943 -36927,5406:373:4,-63.5,-47.5,0,0,-0.0201359 -36928,5406:373:3,-63,-47.5,0,0,-0.0195503 -36929,5406:372:4,-62.5,-47.5,0,0,-0.0190547 -36930,5406:372:3,-62,-47.5,0,0,-0.0185928 -36931,5406:371:4,-61.5,-47.5,0,0,-0.0188245 -36932,5406:371:3,-61,-47.5,0,0,-0.019559 -36933,5406:370:4,-60.5,-47.5,0,0,-0.0202771 -36934,5406:370:3,-60,-47.5,0,0,-0.0207022 -36935,5405:479:4,-59.5,-47.5,0,0,-0.0208332 -36936,5405:479:3,-59,-47.5,0,0,-0.0208708 -36937,5405:478:4,-58.5,-47.5,0,0,-0.0208052 -36938,5405:478:3,-58,-47.5,0,0,-0.0207395 -36939,5405:477:4,-57.5,-47.5,0,0,-0.0199328 -36940,5405:477:3,-57,-47.5,0,0,-0.0195018 -36941,5405:476:4,-56.5,-47.5,0,0,-0.0195679 -36942,5405:476:3,-56,-47.5,0,0,-0.0177271 -36943,5405:475:4,-55.5,-47.5,0,0,-0.0143194 -36944,5405:475:3,-55,-47.5,0,0,-0.0120254 -36945,5405:374:4,-54.5,-47.5,0,0,-0.0113973 -36946,5405:374:3,-54,-47.5,0,0,-0.0121063 -36947,5405:373:4,-53.5,-47.5,0,0,-0.0128658 -36948,5405:373:3,-53,-47.5,0,0,-0.0152028 -36949,5405:372:4,-52.5,-47.5,0,0,-0.0163788 -36950,5405:372:3,-52,-47.5,0,0,-0.015983 -36951,5405:371:4,-51.5,-47.5,0,0,-0.0141314 -36952,5405:371:3,-51,-47.5,0,0,-0.0128026 -36953,5405:370:4,-50.5,-47.5,0,0,-0.0116029 -36954,5405:370:3,-50,-47.5,0,0,-0.0115977 -36955,5404:479:4,-49.5,-47.5,0,0,-0.0118519 -36956,5404:479:3,-49,-47.5,0,0,-0.0114561 -36957,5404:478:4,-48.5,-47.5,0,0,-0.011071 -36958,5404:478:3,-48,-47.5,0,0,-0.0111032 -36959,5404:477:4,-47.5,-47.5,0,0,-0.0114663 -36960,5404:477:3,-47,-47.5,0,0,-0.0120174 -36961,5404:476:4,-46.5,-47.5,0,0,-0.0126801 -36962,5404:476:3,-46,-47.5,0,0,-0.0129091 -36963,5404:475:4,-45.5,-47.5,0,0,-0.0130456 -36964,5404:475:3,-45,-47.5,0,0,-0.0134609 -36965,5404:374:4,-44.5,-47.5,0,0,-0.0135851 -36966,5404:374:3,-44,-47.5,0,0,-0.0126772 -36967,5404:373:4,-43.5,-47.5,0,0,-0.0108386 -36968,5404:373:3,-43,-47.5,0,0,-0.0104675 -36969,5404:372:4,-42.5,-47.5,0,0,-0.0106419 -36970,5404:372:3,-42,-47.5,0,0,-0.0106991 -36971,5404:371:4,-41.5,-47.5,0,0,-0.0110611 -36972,5404:371:3,-41,-47.5,0,0,-0.0111281 -36973,5404:370:4,-40.5,-47.5,0,0,-0.0104675 -36974,5404:370:3,-40,-47.5,0,0,-0.00984438 -36975,5403:479:4,-39.5,-47.5,0,0,-0.00972434 -36976,5403:479:3,-39,-47.5,0,0,-0.00974601 -36977,5403:478:4,-38.5,-47.5,0,0,-0.00951408 -36978,5403:478:3,-38,-47.5,0,0,-0.00890838 -36979,5403:477:4,-37.5,-47.5,0,0,-0.00877827 -36980,5403:477:3,-37,-47.5,0,0,-0.00880967 -36981,5403:476:4,-36.5,-47.5,0,0,-0.00878418 -36982,5403:476:3,-36,-47.5,0,0,-0.00886479 -36983,5403:475:4,-35.5,-47.5,0,0,-0.00905453 -36984,5403:475:3,-35,-47.5,0,0,-0.00925454 -36985,5403:374:4,-34.5,-47.5,0,0,-0.00936038 -36986,5403:374:3,-34,-47.5,0,0,-0.00930835 -36987,5403:373:4,-33.5,-47.5,0,0,-0.00916623 -36988,5403:373:3,-33,-47.5,0,0,-0.00889052 -36989,5403:372:4,-32.5,-47.5,0,0,-0.00849351 -36990,5403:372:3,-32,-47.5,0,0,-0.00815961 -36991,5403:371:4,-31.5,-47.5,0,0,-0.00809085 -36992,5403:371:3,-31,-47.5,0,0,-0.00813602 -36993,5403:370:4,-30.5,-47.5,0,0,-0.00799589 -36994,5403:370:3,-30,-47.5,0,0,-0.00771775 -36995,5402:479:4,-29.5,-47.5,0,0,-0.00758153 -36996,5402:479:3,-29,-47.5,0,0,-0.00755962 -36997,5402:478:4,-28.5,-47.5,0,0,-0.00762891 -36998,5402:478:3,-28,-47.5,0,0,-0.00772121 -36999,5402:477:4,-27.5,-47.5,0,0,-0.00756805 -37000,5402:477:3,-27,-47.5,0,0,-0.0073932 -37001,5402:476:4,-26.5,-47.5,0,0,-0.00751099 -37002,5402:476:3,-26,-47.5,0,0,-0.00776604 -37003,5402:475:4,-25.5,-47.5,0,0,-0.00793736 -37004,5402:475:3,-25,-47.5,0,0,-0.00802802 -37005,5402:374:4,-24.5,-47.5,0,0,-0.00819056 -37006,5402:374:3,-24,-47.5,0,0,-0.0086193 -37007,5402:373:4,-23.5,-47.5,0,0,-0.00987298 -37008,5402:373:3,-23,-47.5,0,0,-0.0102662 -37009,5402:372:4,-22.5,-47.5,0,0,-0.0101704 -37010,5402:372:3,-22,-47.5,0,0,-0.00968753 -37011,5402:371:4,-21.5,-47.5,0,0,-0.00901624 -37012,5402:371:3,-21,-47.5,0,0,-0.00882539 -37013,5402:370:4,-20.5,-47.5,0,0,-0.00895614 -37014,5402:370:3,-20,-47.5,0,0,-0.0096681 -37015,5401:479:4,-19.5,-47.5,0,0,-0.00989943 -37016,5401:479:3,-19,-47.5,0,0,-0.00983119 -37017,5401:478:4,-18.5,-47.5,0,0,-0.00961002 -37018,5401:478:3,-18,-47.5,0,0,-0.00949073 -37019,5401:477:4,-17.5,-47.5,0,0,-0.00932496 -37020,5401:477:3,-17,-47.5,0,0,-0.00937919 -37021,5401:476:4,-16.5,-47.5,0,0,-0.00952257 -37022,5401:476:3,-16,-47.5,0,0,-0.00958859 -37023,5401:475:4,-15.5,-47.5,0,0,-0.00977871 -37024,5401:475:3,-15,-47.5,0,0,-0.00991495 -37025,5401:374:4,-14.5,-47.5,0,0,-0.0100778 -37026,5401:374:3,-14,-47.5,0,0,-0.0100239 -37027,5401:373:4,-13.5,-47.5,0,0,-0.00973301 -37028,5401:373:3,-13,-47.5,0,0,-0.00965948 -37029,5401:372:4,-12.5,-47.5,0,0,-0.0100441 -37030,5401:372:3,-12,-47.5,0,0,-0.0101999 -37031,5401:371:4,-11.5,-47.5,0,0,-0.0100195 -37032,5401:371:3,-11,-47.5,0,0,-0.0100307 -37033,5401:370:4,-10.5,-47.5,0,0,-0.0099238 -37034,5401:370:3,-10,-47.5,0,0,-0.00926487 -37035,5400:479:4,-9.5,-47.5,0,0,-0.00868485 -37036,5400:479:3,-9,-47.5,0,0,-0.00880967 -37037,5400:478:4,-8.5,-47.5,0,0,-0.00923397 -37038,5400:478:3,-8,-47.5,0,0,-0.00918059 -37039,5400:477:4,-7.5,-47.5,0,0,-0.00892427 -37040,5400:477:3,-7,-47.5,0,0,-0.00851432 -37041,5400:476:4,-6.5,-47.5,0,0,-0.00819424 -37042,5400:476:3,-6,-47.5,0,0,-0.00830822 -37043,5400:475:4,-5.5,-47.5,0,0,-0.00839567 -37044,5400:475:3,-5,-47.5,0,0,-0.00786172 -37045,5400:374:4,-4.5,-47.5,0,0,-0.00750594 -37046,5400:374:3,-4,-47.5,0,0,-0.00746262 -37047,5400:373:4,-3.5,-47.5,0,0,-0.00742122 -37048,5400:373:3,-3,-47.5,0,0,-0.00737349 -37049,5400:372:4,-2.5,-47.5,0,0,-0.00731791 -37050,5400:372:3,-2,-47.5,0,0,-0.00725141 -37051,5400:371:4,-1.5,-47.5,0,0,-0.0071728 -37052,5400:371:3,-1,-47.5,0,0,-0.00709341 -37053,5400:370:4,-0.5,-47.5,0,0,-0.0070337 -37054,3400:370:4,0,-47.5,0,0,-0.00699313 -37055,3400:370:4,0.5,-47.5,0,0,-0.006925 -37056,3400:371:3,1,-47.5,0,0,-0.00689736 -37057,3400:371:4,1.5,-47.5,0,0,-0.00695435 -37058,3400:372:3,2,-47.5,0,0,-0.00698691 -37059,3400:372:4,2.5,-47.5,0,0,-0.00701338 -37060,3400:373:3,3,-47.5,0,0,-0.00703212 -37061,3400:373:4,3.5,-47.5,0,0,-0.00697449 -37062,3400:374:3,4,-47.5,0,0,-0.0068165 -37063,3400:374:4,4.5,-47.5,0,0,-0.0066933 -37064,3400:475:3,5,-47.5,0,0,-0.00667991 -37065,3400:475:4,5.5,-47.5,0,0,-0.00667098 -37066,3400:476:3,6,-47.5,0,0,-0.00663549 -37067,3400:476:4,6.5,-47.5,0,0,-0.00664437 -37068,3400:477:3,7,-47.5,0,0,-0.00684386 -37069,3400:477:4,7.5,-47.5,0,0,-0.00699469 -37070,3400:478:3,8,-47.5,0,0,-0.00705566 -37071,3400:478:4,8.5,-47.5,0,0,-0.00703838 -37072,3400:479:3,9,-47.5,0,0,-0.00692194 -37073,3400:479:4,9.5,-47.5,0,0,-0.0068241 -37074,3401:370:3,10,-47.5,0,0,-0.00682257 -37075,3401:370:4,10.5,-47.5,0,0,-0.00672614 -37076,3401:371:3,11,-47.5,0,0,-0.00661633 -37077,3401:371:4,11.5,-47.5,0,0,-0.00657381 -37078,3401:372:3,12,-47.5,0,0,-0.00652571 -37079,3401:372:4,12.5,-47.5,0,0,-0.00647801 -37080,3401:373:3,13,-47.5,0,0,-0.00647511 -37081,3401:373:4,13.5,-47.5,0,0,-0.00649677 -37082,3401:374:3,14,-47.5,0,0,-0.00646361 -37083,3401:374:4,14.5,-47.5,0,0,-0.00640067 -37084,3401:475:3,15,-47.5,0,0,-0.00630746 -37085,3401:475:4,15.5,-47.5,0,0,-0.006253 -37086,3401:476:3,16,-47.5,0,0,-0.00627944 -37087,3401:476:4,16.5,-47.5,0,0,-0.00628644 -37088,3401:477:3,17,-47.5,0,0,-0.00620314 -37089,3401:477:4,17.5,-47.5,0,0,-0.00614821 -37090,3401:478:3,18,-47.5,0,0,-0.00614959 -37091,3401:478:4,18.5,-47.5,0,0,-0.00621005 -37092,3401:479:3,19,-47.5,0,0,-0.00617425 -37093,3401:479:4,19.5,-47.5,0,0,-0.00623216 -37094,3402:370:3,20,-47.5,0,0,-0.00620731 -37095,3402:370:4,20.5,-47.5,0,0,-0.0060884 -37096,3402:371:3,21,-47.5,0,0,-0.00607487 -37097,3402:371:4,21.5,-47.5,0,0,-0.00632571 -37098,3402:372:3,22,-47.5,0,0,-0.00616601 -37099,3402:372:4,22.5,-47.5,0,0,-0.00602244 -37100,3402:373:3,23,-47.5,0,0,-0.00596912 -37101,3402:373:4,23.5,-47.5,0,0,-0.00593343 -37102,3402:374:3,24,-47.5,0,0,-0.00591367 -37103,3402:374:4,24.5,-47.5,0,0,-0.00601174 -37104,3402:475:3,25,-47.5,0,0,-0.00626829 -37105,3402:475:4,25.5,-47.5,0,0,-0.00635109 -37106,3402:476:3,26,-47.5,0,0,-0.00650546 -37107,3402:476:4,26.5,-47.5,0,0,-0.00656066 -37108,3402:477:3,27,-47.5,0,0,-0.00672463 -37109,3402:477:4,27.5,-47.5,0,0,-0.00716482 -37110,3402:478:3,28,-47.5,0,0,-0.00794443 -37111,3402:478:4,28.5,-47.5,0,0,-0.00807289 -37112,3402:479:3,29,-47.5,0,0,-0.00743778 -37113,3402:479:4,29.5,-47.5,0,0,-0.00726433 -37114,3403:370:3,30,-47.5,0,0,-0.00752769 -37115,3403:370:4,30.5,-47.5,0,0,-0.00775223 -37116,3403:371:3,31,-47.5,0,0,-0.00813602 -37117,3403:371:4,31.5,-47.5,0,0,-0.00849726 -37118,3403:372:3,32,-47.5,0,0,-0.00856572 -37119,3403:372:4,32.5,-47.5,0,0,-0.00866362 -37120,3403:373:3,33,-47.5,0,0,-0.00871201 -37121,3403:373:4,33.5,-47.5,0,0,-0.00846324 -37122,3403:374:3,34,-47.5,0,0,-0.00831743 -37123,3403:374:4,34.5,-47.5,0,0,-0.00833413 -37124,3403:475:3,35,-47.5,0,0,-0.00831003 -37125,3403:475:4,35.5,-47.5,0,0,-0.00798877 -37126,3403:476:3,36,-47.5,0,0,-0.00752606 -37127,3403:476:4,36.5,-47.5,0,0,-0.00745437 -37128,3403:477:3,37,-47.5,0,0,-0.00829524 -37129,3403:477:4,37.5,-47.5,0,0,-0.00836205 -37130,3403:478:3,38,-47.5,0,0,-0.00792502 -37131,3403:478:4,38.5,-47.5,0,0,-0.00791264 -37132,3403:479:3,39,-47.5,0,0,-0.00801373 -37133,3403:479:4,39.5,-47.5,0,0,-0.00807827 -37134,3404:370:3,40,-47.5,0,0,-0.00813967 -37135,3404:370:4,40.5,-47.5,0,0,-0.00811073 -37136,3404:371:3,41,-47.5,0,0,-0.00801373 -37137,3404:371:4,41.5,-47.5,0,0,-0.00815784 -37138,3404:372:3,42,-47.5,0,0,-0.00857714 -37139,3404:372:4,42.5,-47.5,0,0,-0.0087295 -37140,3404:373:3,43,-47.5,0,0,-0.0085963 -37141,3404:373:4,43.5,-47.5,0,0,-0.00822532 -37142,3404:374:3,44,-47.5,0,0,-0.00809448 -37143,3404:374:4,44.5,-47.5,0,0,-0.00817421 -37144,3404:475:3,45,-47.5,0,0,-0.00815418 -37145,3404:475:4,45.5,-47.5,0,0,-0.00791264 -37146,3404:476:3,46,-47.5,0,0,-0.00778162 -37147,3404:476:4,46.5,-47.5,0,0,-0.00779893 -37148,3404:477:3,47,-47.5,0,0,-0.00784075 -37149,3404:477:4,47.5,-47.5,0,0,-0.00803342 -37150,3404:478:3,48,-47.5,0,0,-0.00846324 -37151,3404:478:4,48.5,-47.5,0,0,-0.00871201 -37152,3404:479:3,49,-47.5,0,0,-0.00868101 -37153,3404:479:4,49.5,-47.5,0,0,-0.00865784 -37154,3405:370:3,50,-47.5,0,0,-0.00858292 -37155,3405:370:4,50.5,-47.5,0,0,-0.00849726 -37156,3405:371:3,51,-47.5,0,0,-0.00839938 -37157,3405:371:4,51.5,-47.5,0,0,-0.00816327 -37158,3405:372:3,52,-47.5,0,0,-0.00844628 -37159,3405:372:4,52.5,-47.5,0,0,-0.00909497 -37160,3405:373:3,53,-47.5,0,0,-0.0096186 -37161,3405:373:4,53.5,-47.5,0,0,-0.00979397 -37162,3405:374:3,54,-47.5,0,0,-0.0092319 -37163,3405:374:4,54.5,-47.5,0,0,-0.00860203 -37164,3405:475:3,55,-47.5,0,0,-0.00823814 -37165,3405:475:4,55.5,-47.5,0,0,-0.00813967 -37166,3405:476:3,56,-47.5,0,0,-0.00823081 -37167,3405:476:4,56.5,-47.5,0,0,-0.00860203 -37168,3405:477:3,57,-47.5,0,0,-0.00931253 -37169,3405:477:4,57.5,-47.5,0,0,-0.00953742 -37170,3405:478:3,58,-47.5,0,0,-0.00926695 -37171,3405:478:4,58.5,-47.5,0,0,-0.00926487 -37172,3405:479:3,59,-47.5,0,0,-0.0092587 -37173,3405:479:4,59.5,-47.5,0,0,-0.00916218 -37174,3406:370:3,60,-47.5,0,0,-0.00900422 -37175,3406:370:4,60.5,-47.5,0,0,-0.00930633 -37176,3406:371:3,61,-47.5,0,0,-0.00996151 -37177,3406:371:4,61.5,-47.5,0,0,-0.0102251 -37178,3406:372:3,62,-47.5,0,0,-0.0102823 -37179,3406:372:4,62.5,-47.5,0,0,-0.00991711 -37180,3406:373:3,63,-47.5,0,0,-0.00910717 -37181,3406:373:4,63.5,-47.5,0,0,-0.00899014 -37182,3406:374:3,64,-47.5,0,0,-0.00925045 -37183,3406:374:4,64.5,-47.5,0,0,-0.0103282 -37184,3406:475:3,65,-47.5,0,0,-0.0109383 -37185,3406:475:4,65.5,-47.5,0,0,-0.0108604 -37186,3406:476:3,66,-47.5,0,0,-0.0104956 -37187,3406:476:4,66.5,-47.5,0,0,-0.00991495 -37188,3406:477:3,67,-47.5,0,0,-0.00973083 -37189,3406:477:4,67.5,-47.5,0,0,-0.00970483 -37190,3406:478:3,68,-47.5,0,0,-0.00966375 -37191,3406:478:4,68.5,-47.5,0,0,-0.0096186 -37192,3406:479:3,69,-47.5,0,0,-0.00957581 -37193,3406:479:4,69.5,-47.5,0,0,-0.00958435 -37194,3407:370:3,70,-47.5,0,0,-0.0096681 -37195,3407:370:4,70.5,-47.5,0,0,-0.00969618 -37196,3407:371:3,71,-47.5,0,0,-0.0095929 -37197,3407:371:4,71.5,-47.5,0,0,-0.00951408 -37198,3407:372:3,72,-47.5,0,0,-0.00950767 -37199,3407:372:4,72.5,-47.5,0,0,-0.00945694 -37200,3407:373:4,73.5,-47.5,0,0,-0.00937294 -37201,3407:374:3,74,-47.5,0,0,-0.00929177 -37202,3407:374:4,74.5,-47.5,0,0,-0.00924629 -37203,3407:475:3,75,-47.5,0,0,-0.00910513 -37204,3407:475:4,75.5,-47.5,0,0,-0.0088569 -37205,3407:476:3,76,-47.5,0,0,-0.00836393 -37206,3407:476:4,76.5,-47.5,0,0,-0.00753609 -37207,3407:477:3,77,-47.5,0,0,-0.0072935 -37208,3407:477:4,77.5,-47.5,0,0,-0.00762725 -37209,3407:478:3,78,-47.5,0,0,-0.00787573 -37210,3407:478:4,78.5,-47.5,0,0,-0.00790033 -37211,3407:479:3,79,-47.5,0,0,-0.00764256 -37212,3407:479:4,79.5,-47.5,0,0,-0.00761705 -37213,3408:370:3,80,-47.5,0,0,-0.00774012 -37214,3408:370:4,80.5,-47.5,0,0,-0.00796037 -37215,3408:371:3,81,-47.5,0,0,-0.00890244 -37216,3408:371:4,81.5,-47.5,0,0,-0.0101976 -37217,3408:372:3,82,-47.5,0,0,-0.010875 -37218,3408:372:4,82.5,-47.5,0,0,-0.0113212 -37219,3408:373:3,83,-47.5,0,0,-0.0114407 -37220,3408:373:4,83.5,-47.5,0,0,-0.0115279 -37221,3408:374:3,84,-47.5,0,0,-0.0123249 -37222,3408:374:4,84.5,-47.5,0,0,-0.0128744 -37223,3408:475:3,85,-47.5,0,0,-0.0129525 -37224,3408:475:4,85.5,-47.5,0,0,-0.0129091 -37225,3408:476:3,86,-47.5,0,0,-0.0127626 -37226,3408:476:4,86.5,-47.5,0,0,-0.0127484 -37227,3408:477:3,87,-47.5,0,0,-0.0128572 -37228,3408:477:4,87.5,-47.5,0,0,-0.0132102 -37229,3408:478:3,88,-47.5,0,0,-0.0133022 -37230,3408:478:4,88.5,-47.5,0,0,-0.0129091 -37231,3408:479:3,89,-47.5,0,0,-0.0124218 -37232,3408:479:4,89.5,-47.5,0,0,-0.0123194 -37233,3409:370:3,90,-47.5,0,0,-0.0125138 -37234,3409:370:4,90.5,-47.5,0,0,-0.011945 -37235,3409:371:3,91,-47.5,0,0,-0.0115744 -37236,3409:371:4,91.5,-47.5,0,0,-0.0114202 -37237,3409:372:3,92,-47.5,0,0,-0.0113034 -37238,3409:372:4,92.5,-47.5,0,0,-0.0112481 -37239,3409:373:3,93,-47.5,0,0,-0.011243 -37240,3409:373:4,93.5,-47.5,0,0,-0.0112355 -37241,3409:374:3,94,-47.5,0,0,-0.011071 -37242,3409:374:4,94.5,-47.5,0,0,-0.0104488 -37243,3409:475:3,95,-47.5,0,0,-0.0102479 -37244,3409:475:4,95.5,-47.5,0,0,-0.0111953 -37245,3409:476:3,96,-47.5,0,0,-0.0129525 -37246,3409:476:4,96.5,-47.5,0,0,-0.0136675 -37247,3409:477:3,97,-47.5,0,0,-0.0133141 -37248,3409:477:4,97.5,-47.5,0,0,-0.0125868 -37249,3409:478:3,98,-47.5,0,0,-0.0117753 -37250,3409:478:4,98.5,-47.5,0,0,-0.0112355 -37251,3409:479:3,99,-47.5,0,0,-0.0115048 -37252,3409:479:4,99.5,-47.5,0,0,-0.0123276 -37253,3410:370:3,100,-47.5,0,0,-0.0126461 -37254,3410:370:4,100.5,-47.5,0,0,-0.0126037 -37255,3410:371:3,101,-47.5,0,0,-0.0120847 -37256,3410:371:4,101.5,-47.5,0,0,-0.0105709 -37257,3410:372:3,102,-47.5,0,0,-0.00980932 -37258,3410:372:4,102.5,-47.5,0,0,-0.00970265 -37259,3410:373:3,103,-47.5,0,0,-0.00986854 -37260,3410:373:4,103.5,-47.5,0,0,-0.0102228 -37261,3410:374:3,104,-47.5,0,0,-0.0105709 -37262,3410:374:4,104.5,-47.5,0,0,-0.0105308 -37263,3410:475:3,105,-47.5,0,0,-0.0104442 -37264,3410:475:4,105.5,-47.5,0,0,-0.0103145 -37265,3410:476:3,106,-47.5,0,0,-0.0105874 -37266,3410:476:4,106.5,-47.5,0,0,-0.0109946 -37267,3410:477:3,107,-47.5,0,0,-0.0111554 -37268,3410:477:4,107.5,-47.5,0,0,-0.0113313 -37269,3410:478:3,108,-47.5,0,0,-0.0116315 -37270,3410:478:4,108.5,-47.5,0,0,-0.0117595 -37271,3410:479:3,109,-47.5,0,0,-0.0117385 -37272,3410:479:4,109.5,-47.5,0,0,-0.0117359 -37273,3411:370:3,110,-47.5,0,0,-0.0120093 -37274,3411:370:4,110.5,-47.5,0,0,-0.0124691 -37275,3411:371:3,111,-47.5,0,0,-0.0142299 -37276,3411:371:4,111.5,-47.5,0,0,-0.015237 -37277,3411:372:3,112,-47.5,0,0,-0.0160224 -37278,3411:372:4,112.5,-47.5,0,0,-0.0169249 -37279,3411:373:3,113,-47.5,0,0,-0.0165675 -37280,3411:373:4,113.5,-47.5,0,0,-0.0153639 -37281,3411:374:3,114,-47.5,0,0,-0.0145655 -37282,3411:374:4,114.5,-47.5,0,0,-0.0139364 -37283,3411:475:3,115,-47.5,0,0,-0.0143451 -37284,3411:475:4,115.5,-47.5,0,0,-0.0148058 -37285,3411:476:3,116,-47.5,0,0,-0.0150839 -37286,3411:476:4,116.5,-47.5,0,0,-0.0147131 -37287,3411:477:3,117,-47.5,0,0,-0.0138866 -37288,3411:477:4,117.5,-47.5,0,0,-0.0136004 -37289,3411:478:3,118,-47.5,0,0,-0.0135093 -37290,3411:478:4,118.5,-47.5,0,0,-0.0133708 -37291,3411:479:3,119,-47.5,0,0,-0.0132606 -37292,3411:479:4,119.5,-47.5,0,0,-0.0131984 -37293,3412:370:3,120,-47.5,0,0,-0.0135305 -37294,3412:370:4,120.5,-47.5,0,0,-0.0137627 -37295,3412:371:3,121,-47.5,0,0,-0.0141409 -37296,3412:371:4,121.5,-47.5,0,0,-0.014776 -37297,3412:372:3,122,-47.5,0,0,-0.0150468 -37298,3412:372:4,122.5,-47.5,0,0,-0.0151484 -37299,3412:373:3,123,-47.5,0,0,-0.0150603 -37300,3412:373:4,123.5,-47.5,0,0,-0.0149459 -37301,3412:374:3,124,-47.5,0,0,-0.0152268 -37302,3412:374:4,124.5,-47.5,0,0,-0.0156598 -37303,3412:475:3,125,-47.5,0,0,-0.0160656 -37304,3412:475:4,125.5,-47.5,0,0,-0.0156633 -37305,3412:476:3,126,-47.5,0,0,-0.0152712 -37306,3412:476:4,126.5,-47.5,0,0,-0.0150772 -37307,3412:477:3,127,-47.5,0,0,-0.0150975 -37308,3412:477:4,127.5,-47.5,0,0,-0.0153468 -37309,3412:478:3,128,-47.5,0,0,-0.0157585 -37310,3412:478:4,128.5,-47.5,0,0,-0.016423 -37311,3412:479:3,129,-47.5,0,0,-0.016575 -37312,3412:479:4,129.5,-47.5,0,0,-0.0160837 -37313,3413:370:3,130,-47.5,0,0,-0.0153502 -37314,3413:370:4,130.5,-47.5,0,0,-0.014733 -37315,3413:371:3,131,-47.5,0,0,-0.0144419 -37316,3413:371:4,131.5,-47.5,0,0,-0.0145492 -37317,3413:372:3,132,-47.5,0,0,-0.0147859 -37318,3413:372:4,132.5,-47.5,0,0,-0.0152609 -37319,3413:373:3,133,-47.5,0,0,-0.01589 -37320,3413:373:4,133.5,-47.5,0,0,-0.0160512 -37321,3413:374:3,134,-47.5,0,0,-0.0155652 -37322,3413:374:4,134.5,-47.5,0,0,-0.0152678 -37323,3413:475:3,135,-47.5,0,0,-0.0154054 -37324,3413:475:4,135.5,-47.5,0,0,-0.0158721 -37325,3413:476:3,136,-47.5,0,0,-0.0161199 -37326,3413:476:4,136.5,-47.5,0,0,-0.015922 -37327,3413:477:3,137,-47.5,0,0,-0.0152883 -37328,3413:477:4,137.5,-47.5,0,0,-0.0145525 -37329,3413:478:3,138,-47.5,0,0,-0.0143355 -37330,3413:478:4,138.5,-47.5,0,0,-0.0147098 -37331,3413:479:3,139,-47.5,0,0,-0.0158471 -37332,3413:479:4,139.5,-47.5,0,0,-0.0164194 -37333,3414:370:3,140,-47.5,0,0,-0.017005 -37334,3414:370:4,140.5,-47.5,0,0,-0.017851 -37335,3414:371:3,141,-47.5,0,0,-0.0183725 -37336,3414:371:4,141.5,-47.5,0,0,-0.018356 -37337,3414:372:3,142,-47.5,0,0,-0.0179638 -37338,3414:372:4,142.5,-47.5,0,0,-0.0174659 -37339,3414:373:3,143,-47.5,0,0,-0.0171508 -37340,3414:373:4,143.5,-47.5,0,0,-0.0170088 -37341,3414:374:3,144,-47.5,0,0,-0.0165118 -37342,3414:374:4,144.5,-47.5,0,0,-0.0163678 -37343,3414:475:3,145,-47.5,0,0,-0.0163604 -37344,3414:475:4,145.5,-47.5,0,0,-0.0161307 -37345,3414:476:3,146,-47.5,0,0,-0.0152335 -37346,3414:476:4,146.5,-47.5,0,0,-0.0141473 -37347,3414:477:3,147,-47.5,0,0,-0.0131453 -37348,3414:477:4,147.5,-47.5,0,0,-0.0119237 -37349,3414:478:3,148,-47.5,0,0,-0.0101319 -37350,3414:478:4,148.5,-47.5,0,0,-0.00946538 -37351,3414:479:3,149,-47.5,0,0,-0.00942116 -37352,3414:479:4,149.5,-47.5,0,0,-0.0136828 -37353,3415:370:3,150,-47.5,0,0,-0.0198119 -37354,3415:370:4,150.5,-47.5,0,0,-0.0206788 -37355,3415:371:3,151,-47.5,0,0,-0.0206881 -37356,3415:371:4,151.5,-47.5,0,0,-0.0172706 -37357,3415:372:3,152,-47.5,0,0,-0.0139396 -37358,3415:372:4,152.5,-47.5,0,0,-0.0153329 -37359,3415:373:3,153,-47.5,0,0,-0.015801 -37360,3415:373:4,153.5,-47.5,0,0,-0.0164896 -37361,3415:374:3,154,-47.5,0,0,-0.0170892 -37362,3415:374:4,154.5,-47.5,0,0,-0.0178993 -37363,3415:475:3,155,-47.5,0,0,-0.0217754 -37364,3415:475:4,155.5,-47.5,0,0,-0.024194 -37365,3415:476:3,156,-47.5,0,0,-0.024956 -37366,3415:476:4,156.5,-47.5,0,0,-0.0234185 -37367,3415:477:3,157,-47.5,0,0,-0.0207488 -37368,3415:477:4,157.5,-47.5,0,0,-0.0181996 -37369,3415:478:3,158,-47.5,0,0,-0.0222174 -37370,3415:478:4,158.5,-47.5,0,0,-0.0246918 -37371,3415:479:3,159,-47.5,0,0,-0.0201405 -37372,3415:479:4,159.5,-47.5,0,0,-0.0162981 -37373,3416:370:3,160,-47.5,0,0,-0.017867 -37374,3416:370:4,160.5,-47.5,0,0,-0.0186558 -37375,3416:371:3,161,-47.5,0,0,-0.0177111 -37376,3416:371:4,161.5,-47.5,0,0,-0.0173797 -37377,3416:372:3,162,-47.5,0,0,-0.017839 -37378,3416:372:4,162.5,-47.5,0,0,-0.0233551 -37379,3416:373:3,163,-47.5,0,0,-0.0243642 -37380,3416:373:4,163.5,-47.5,0,0,-0.0248095 -37381,3416:374:3,164,-47.5,0,0,-0.0259242 -37382,3416:374:4,164.5,-47.5,0,0,-0.0262614 -37383,3416:475:3,165,-47.5,0,0,-0.0263329 -37384,3416:475:4,165.5,-47.5,0,0,-0.0264826 -37385,3416:476:3,166,-47.5,0,0,-0.0266876 -37386,3416:476:4,166.5,-47.5,0,0,-0.0268698 -37387,3416:477:3,167,-47.5,0,0,-0.0268273 -37388,3416:477:4,167.5,-47.5,0,0,-0.0270043 -37389,3416:478:3,168,-47.5,0,0,-0.0269922 -37390,3416:478:4,168.5,-47.5,0,0,-0.0266273 -37391,3416:479:3,169,-47.5,0,0,-0.0259301 -37392,3416:479:4,169.5,-47.5,0,0,-0.0246472 -37393,3417:370:3,170,-47.5,0,0,-0.0247142 -37394,3417:370:4,170.5,-47.5,0,0,-0.0249391 -37395,3417:371:3,171,-47.5,0,0,-0.0256728 -37396,3417:371:4,171.5,-47.5,0,0,-0.0273311 -37397,3417:372:3,172,-47.5,0,0,-0.0274305 -37398,3417:372:4,172.5,-47.5,0,0,-0.0273435 -37399,3417:373:3,173,-47.5,0,0,-0.0278511 -37400,3417:373:4,173.5,-47.5,0,0,-0.0290997 -37401,3417:374:3,174,-47.5,0,0,-0.0302334 -37402,3417:374:4,174.5,-47.5,0,0,-0.0309579 -37403,3417:475:3,175,-47.5,0,0,-0.0318741 -37404,3417:475:4,175.5,-47.5,0,0,-0.0328783 -37405,3417:476:3,176,-47.5,0,0,-0.0338148 -37406,3417:476:4,176.5,-47.5,0,0,-0.032766 -37407,3417:477:3,177,-47.5,0,0,-0.0308663 -37408,3417:477:4,177.5,-47.5,0,0,-0.0292389 -37409,3417:478:3,178,-47.5,0,0,-0.028465 -37410,3417:478:4,178.5,-47.5,0,0,-0.0275992 -37411,3417:479:3,179,-47.5,0,0,-0.0254989 -37412,3417:479:4,179.5,-47.5,0,0,-0.0244748 -37413,3418:370:3,180,-47.5,0,0,-0.0246081 -37414,5418:370:1,-180,-47,0,0,-0.0252688 -37415,5417:479:2,-179.5,-47,0,0,-0.02547 -37416,5417:479:1,-179,-47,0,0,-0.0261662 -37417,5417:478:2,-178.5,-47,0,0,-0.0276494 -37418,5417:478:1,-178,-47,0,0,-0.0300276 -37419,5417:477:2,-177.5,-47,0,0,-0.0324092 -37420,5417:477:1,-177,-47,0,0,-0.0335455 -37421,5417:476:2,-176.5,-47,0,0,-0.033561 -37422,5417:476:1,-176,-47,0,0,-0.0329911 -37423,5417:475:2,-175.5,-47,0,0,-0.0320784 -37424,5417:475:1,-175,-47,0,0,-0.031092 -37425,5417:374:2,-174.5,-47,0,0,-0.0305864 -37426,5417:374:1,-174,-47,0,0,-0.0298573 -37427,5417:373:2,-173.5,-47,0,0,-0.0281756 -37428,5417:373:1,-173,-47,0,0,-0.0258948 -37429,5417:372:2,-172.5,-47,0,0,-0.0248095 -37430,5417:372:1,-172,-47,0,0,-0.0253261 -37431,5417:371:2,-171.5,-47,0,0,-0.0267787 -37432,5417:371:1,-171,-47,0,0,-0.0282589 -37433,5417:370:2,-170.5,-47,0,0,-0.0279079 -37434,5417:370:1,-170,-47,0,0,-0.0273064 -37435,5416:479:2,-169.5,-47,0,0,-0.0275429 -37436,5416:479:1,-169,-47,0,0,-0.0282268 -37437,5416:478:2,-168.5,-47,0,0,-0.02815 -37438,5416:478:1,-168,-47,0,0,-0.0270719 -37439,5416:477:2,-167.5,-47,0,0,-0.0260183 -37440,5416:477:1,-167,-47,0,0,-0.0252746 -37441,5416:476:2,-166.5,-47,0,0,-0.0241064 -37442,5416:476:1,-166,-47,0,0,-0.0235087 -37443,5416:475:2,-165.5,-47,0,0,-0.0230197 -37444,5416:475:1,-165,-47,0,0,-0.0227559 -37445,5416:374:2,-164.5,-47,0,0,-0.0228537 -37446,5416:374:1,-164,-47,0,0,-0.0231972 -37447,5416:373:2,-163.5,-47,0,0,-0.0235993 -37448,5416:373:1,-163,-47,0,0,-0.023911 -37449,5416:372:2,-162.5,-47,0,0,-0.0238569 -37450,5416:372:1,-162,-47,0,0,-0.0232077 -37451,5416:371:2,-161.5,-47,0,0,-0.0231605 -37452,5416:371:1,-161,-47,0,0,-0.0239217 -37453,5416:370:2,-160.5,-47,0,0,-0.0245247 -37454,5416:370:1,-160,-47,0,0,-0.0252002 -37455,5415:479:2,-159.5,-47,0,0,-0.0260479 -37456,5415:479:1,-159,-47,0,0,-0.0271826 -37457,5415:478:2,-158.5,-47,0,0,-0.0284522 -37458,5415:478:1,-158,-47,0,0,-0.0295531 -37459,5415:477:2,-157.5,-47,0,0,-0.030482 -37460,5415:477:1,-157,-47,0,0,-0.0310001 -37461,5415:476:2,-156.5,-47,0,0,-0.030247 -37462,5415:476:1,-156,-47,0,0,-0.0286923 -37463,5415:475:2,-155.5,-47,0,0,-0.0263209 -37464,5415:475:1,-155,-47,0,0,-0.0241829 -37465,5415:374:2,-154.5,-47,0,0,-0.0228021 -37466,5415:374:1,-154,-47,0,0,-0.0220724 -37467,5415:373:2,-153.5,-47,0,0,-0.021323 -37468,5415:373:1,-153,-47,0,0,-0.020236 -37469,5415:372:2,-152.5,-47,0,0,-0.0192705 -37470,5415:372:1,-152,-47,0,0,-0.0190161 -37471,5415:371:2,-151.5,-47,0,0,-0.0190719 -37472,5415:371:1,-151,-47,0,0,-0.019145 -37473,5415:370:2,-150.5,-47,0,0,-0.0190547 -37474,5415:370:1,-150,-47,0,0,-0.0186558 -37475,5414:479:2,-149.5,-47,0,0,-0.0181874 -37476,5414:479:1,-149,-47,0,0,-0.0181874 -37477,5414:478:2,-148.5,-47,0,0,-0.0182982 -37478,5414:478:1,-148,-47,0,0,-0.0164415 -37479,5414:477:2,-147.5,-47,0,0,-0.014776 -37480,5414:477:1,-147,-47,0,0,-0.0140651 -37481,5414:476:2,-146.5,-47,0,0,-0.0143645 -37482,5414:476:1,-146,-47,0,0,-0.0152199 -37483,5414:475:2,-145.5,-47,0,0,-0.0156318 -37484,5414:475:1,-145,-47,0,0,-0.0149526 -37485,5414:374:2,-144.5,-47,0,0,-0.0137844 -37486,5414:374:1,-144,-47,0,0,-0.0152609 -37487,5414:373:2,-143.5,-47,0,0,-0.0167999 -37488,5414:373:1,-143,-47,0,0,-0.0168263 -37489,5414:372:2,-142.5,-47,0,0,-0.0167359 -37490,5414:372:1,-142,-47,0,0,-0.0164822 -37491,5414:371:2,-141.5,-47,0,0,-0.0169935 -37492,5414:371:1,-141,-47,0,0,-0.0188117 -37493,5414:370:2,-140.5,-47,0,0,-0.0224951 -37494,5414:370:1,-140,-47,0,0,-0.0294591 -37495,5413:479:2,-139.5,-47,0,0,-0.0319834 -37496,5413:479:1,-139,-47,0,0,-0.0327211 -37497,5413:478:2,-138.5,-47,0,0,-0.0326392 -37498,5413:478:1,-138,-47,0,0,-0.031078 -37499,5413:477:2,-137.5,-47,0,0,-0.0291459 -37500,5413:477:1,-137,-47,0,0,-0.0274743 -37501,5413:476:2,-136.5,-47,0,0,-0.0304266 -37502,5413:476:1,-136,-47,0,0,-0.0313554 -37503,5413:475:2,-135.5,-47,0,0,-0.0325129 -37504,5413:475:1,-135,-47,0,0,-0.0331951 -37505,5413:374:2,-134.5,-47,0,0,-0.0341407 -37506,5413:374:1,-134,-47,0,0,-0.0341252 -37507,5413:373:2,-133.5,-47,0,0,-0.0340006 -37508,5413:373:1,-133,-47,0,0,-0.0344228 -37509,5413:372:2,-132.5,-47,0,0,-0.0352994 -37510,5413:372:1,-132,-47,0,0,-0.0370635 -37511,5413:371:2,-131.5,-47,0,0,-0.0375336 -37512,5413:371:1,-131,-47,0,0,-0.0388387 -37513,5413:370:2,-130.5,-47,0,0,-0.0376714 -37514,5413:370:1,-130,-47,0,0,-0.0403851 -37515,5412:479:2,-129.5,-47,0,0,-0.0403573 -37516,5412:479:1,-129,-47,0,0,-0.038106 -37517,5412:478:2,-128.5,-47,0,0,-0.0368686 -37518,5412:478:1,-128,-47,0,0,-0.0373448 -37519,5412:477:2,-127.5,-47,0,0,-0.0370804 -37520,5412:477:1,-127,-47,0,0,-0.0387941 -37521,5412:476:2,-126.5,-47,0,0,-0.0411443 -37522,5412:476:1,-126,-47,0,0,-0.0428161 -37523,5412:475:2,-125.5,-47,0,0,-0.0453578 -37524,5412:475:1,-125,-47,0,0,-0.0446306 -37525,5412:374:2,-124.5,-47,0,0,-0.0430337 -37526,5412:374:1,-124,-47,0,0,-0.0421994 -37527,5412:373:2,-123.5,-47,0,0,-0.0415823 -37528,5412:373:1,-123,-47,0,0,-0.0412108 -37529,5412:372:2,-122.5,-47,0,0,-0.0412675 -37530,5412:372:1,-122,-47,0,0,-0.0415916 -37531,5412:371:2,-121.5,-47,0,0,-0.0412867 -37532,5412:371:1,-121,-47,0,0,-0.0402183 -37533,5412:370:2,-120.5,-47,0,0,-0.0389815 -37534,5412:370:1,-120,-47,0,0,-0.0373361 -37535,5411:479:2,-119.5,-47,0,0,-0.0355182 -37536,5411:479:1,-119,-47,0,0,-0.0341017 -37537,5411:478:2,-118.5,-47,0,0,-0.0328858 -37538,5411:478:1,-118,-47,0,0,-0.0321148 -37539,5411:477:2,-117.5,-47,0,0,-0.0321295 -37540,5411:477:1,-117,-47,0,0,-0.033142 -37541,5411:476:2,-116.5,-47,0,0,-0.0335762 -37542,5411:476:1,-116,-47,0,0,-0.0326913 -37543,5411:475:2,-115.5,-47,0,0,-0.0318451 -37544,5411:475:1,-115,-47,0,0,-0.0323206 -37545,5411:374:2,-114.5,-47,0,0,-0.0322689 -37546,5411:374:1,-114,-47,0,0,-0.0322323 -37547,5411:373:2,-113.5,-47,0,0,-0.0322175 -37548,5411:373:1,-113,-47,0,0,-0.032328 -37549,5411:372:2,-112.5,-47,0,0,-0.0326467 -37550,5411:372:1,-112,-47,0,0,-0.0335303 -37551,5411:371:2,-111.5,-47,0,0,-0.0343442 -37552,5411:371:1,-111,-47,0,0,-0.0338997 -37553,5411:370:2,-110.5,-47,0,0,-0.0314843 -37554,5411:370:1,-110,-47,0,0,-0.0300139 -37555,5410:479:2,-109.5,-47,0,0,-0.0302815 -37556,5410:479:1,-109,-47,0,0,-0.0301989 -37557,5410:478:2,-108.5,-47,0,0,-0.0293721 -37558,5410:478:1,-108,-47,0,0,-0.02881 -37559,5410:477:2,-107.5,-47,0,0,-0.0282846 -37560,5410:477:1,-107,-47,0,0,-0.0274431 -37561,5410:476:2,-106.5,-47,0,0,-0.027035 -37562,5410:476:1,-106,-47,0,0,-0.0270779 -37563,5410:475:2,-105.5,-47,0,0,-0.0270965 -37564,5410:475:1,-105,-47,0,0,-0.0270226 -37565,5410:374:2,-104.5,-47,0,0,-0.0267787 -37566,5410:374:1,-104,-47,0,0,-0.0265127 -37567,5410:373:2,-103.5,-47,0,0,-0.0265547 -37568,5410:373:1,-103,-47,0,0,-0.0269922 -37569,5410:372:2,-102.5,-47,0,0,-0.0273745 -37570,5410:372:1,-102,-47,0,0,-0.0273683 -37571,5410:371:2,-101.5,-47,0,0,-0.027468 -37572,5410:371:1,-101,-47,0,0,-0.0277627 -37573,5410:370:2,-100.5,-47,0,0,-0.0275242 -37574,5410:370:1,-100,-47,0,0,-0.0269371 -37575,5409:479:2,-99.5,-47,0,0,-0.0265367 -37576,5409:479:1,-99,-47,0,0,-0.0263747 -37577,5409:478:2,-98.5,-47,0,0,-0.0262912 -37578,5409:478:1,-98,-47,0,0,-0.0261662 -37579,5409:477:2,-97.5,-47,0,0,-0.0260302 -37580,5409:477:1,-97,-47,0,0,-0.0258595 -37581,5409:476:2,-96.5,-47,0,0,-0.0255568 -37582,5409:476:1,-96,-47,0,0,-0.0249617 -37583,5409:475:2,-95.5,-47,0,0,-0.0245357 -37584,5409:475:1,-95,-47,0,0,-0.0250012 -37585,5409:374:2,-94.5,-47,0,0,-0.0254816 -37586,5409:374:1,-94,-47,0,0,-0.0257601 -37587,5409:373:2,-93.5,-47,0,0,-0.0260066 -37588,5409:373:1,-93,-47,0,0,-0.0261307 -37589,5409:372:2,-92.5,-47,0,0,-0.0261071 -37590,5409:372:1,-92,-47,0,0,-0.0259948 -37591,5409:371:2,-91.5,-47,0,0,-0.0257368 -37592,5409:371:1,-91,-47,0,0,-0.02547 -37593,5409:370:2,-90.5,-47,0,0,-0.0254527 -37594,5409:370:1,-90,-47,0,0,-0.0256843 -37595,5408:479:2,-89.5,-47,0,0,-0.0260183 -37596,5408:479:1,-89,-47,0,0,-0.0262079 -37597,5408:478:2,-88.5,-47,0,0,-0.0263091 -37598,5408:478:1,-88,-47,0,0,-0.0262494 -37599,5408:477:2,-87.5,-47,0,0,-0.0260183 -37600,5408:477:1,-87,-47,0,0,-0.0257544 -37601,5408:476:2,-86.5,-47,0,0,-0.0255509 -37602,5408:476:1,-86,-47,0,0,-0.0254353 -37603,5408:475:2,-85.5,-47,0,0,-0.0254123 -37604,5408:475:1,-85,-47,0,0,-0.0254297 -37605,5408:374:2,-84.5,-47,0,0,-0.0254297 -37606,5408:374:1,-84,-47,0,0,-0.0254583 -37607,5408:373:2,-83.5,-47,0,0,-0.0256961 -37608,5408:373:1,-83,-47,0,0,-0.0261959 -37609,5408:372:2,-82.5,-47,0,0,-0.0266332 -37610,5408:372:1,-82,-47,0,0,-0.0266573 -37611,5408:371:2,-81.5,-47,0,0,-0.0262614 -37612,5408:371:1,-81,-47,0,0,-0.0258595 -37613,5408:370:2,-80.5,-47,0,0,-0.0259183 -37614,5408:370:1,-80,-47,0,0,-0.0265669 -37615,5407:479:2,-79.5,-47,0,0,-0.0272939 -37616,5407:479:1,-79,-47,0,0,-0.0278067 -37617,5407:478:2,-78.5,-47,0,0,-0.0279778 -37618,5407:478:1,-78,-47,0,0,-0.0275492 -37619,5407:477:2,-77.5,-47,0,0,-0.0269554 -37620,5407:477:1,-77,-47,0,0,-0.0266815 -37621,5407:476:2,-76.5,-47,0,0,-0.0268393 -37622,5407:476:1,-76,-47,0,0,-0.0273311 -37623,5407:475:2,-75.5,-47,0,0,-0.0278258 -37624,5407:475:1,-75,-47,0,0,-0.0280287 -37625,5407:374:2,-74.5,-47,0,0,-0.0291725 -37626,5407:374:1,-74,-47,0,0,-0.0299593 -37627,5407:373:2,-73.5,-47,0,0,-0.0291925 -37628,5407:373:1,-73,-47,0,0,-0.028246 -37629,5407:372:2,-72.5,-47,0,0,-0.0273064 -37630,5407:372:1,-72,-47,0,0,-0.0266815 -37631,5407:371:2,-71.5,-47,0,0,-0.0267846 -37632,5407:371:1,-71,-47,0,0,-0.0273001 -37633,5407:370:2,-70.5,-47,0,0,-0.0311275 -37634,5407:370:1,-70,-47,0,0,-0.0335455 -37635,5406:479:2,-69.5,-47,0,0,-0.0351544 -37636,5406:479:1,-69,-47,0,0,-0.0360918 -37637,5406:478:2,-68.5,-47,0,0,-0.0360258 -37638,5406:478:1,-68,-47,0,0,-0.0363904 -37639,5406:477:2,-67.5,-47,0,0,-0.0362409 -37640,5406:477:1,-67,-47,0,0,-0.0341017 -37641,5406:476:2,-66.5,-47,0,0,-0.0309297 -37642,5406:476:1,-66,-47,0,0,-0.0252459 -37643,5406:475:2,-65.5,-47,0,0,-0.0215503 -37644,5406:475:1,-65,-47,0,0,-0.0190762 -37645,5406:374:2,-64.5,-47,0,0,-0.0183849 -37646,5406:374:1,-64,-47,0,0,-0.0189562 -37647,5406:373:2,-63.5,-47,0,0,-0.0200182 -37648,5406:373:1,-63,-47,0,0,-0.0202042 -37649,5406:372:2,-62.5,-47,0,0,-0.0194536 -37650,5406:372:1,-62,-47,0,0,-0.0188542 -37651,5406:371:2,-61.5,-47,0,0,-0.0186515 -37652,5406:371:1,-61,-47,0,0,-0.0196917 -37653,5406:370:2,-60.5,-47,0,0,-0.020777 -37654,5406:370:1,-60,-47,0,0,-0.0210411 -37655,5405:479:2,-59.5,-47,0,0,-0.0210933 -37656,5405:479:1,-59,-47,0,0,-0.0208897 -37657,5405:478:2,-58.5,-47,0,0,-0.0208662 -37658,5405:478:1,-58,-47,0,0,-0.0210886 -37659,5405:477:2,-57.5,-47,0,0,-0.0206928 -37660,5405:477:1,-57,-47,0,0,-0.0196695 -37661,5405:476:2,-56.5,-47,0,0,-0.0193487 -37662,5405:476:1,-56,-47,0,0,-0.0172824 -37663,5405:475:2,-55.5,-47,0,0,-0.0144452 -37664,5405:475:1,-55,-47,0,0,-0.012128 -37665,5405:374:2,-54.5,-47,0,0,-0.011577 -37666,5405:374:1,-54,-47,0,0,-0.0121633 -37667,5405:373:2,-53.5,-47,0,0,-0.0129583 -37668,5405:373:1,-53,-47,0,0,-0.0158294 -37669,5405:372:2,-52.5,-47,0,0,-0.0159042 -37670,5405:372:1,-52,-47,0,0,-0.015179 -37671,5405:371:2,-51.5,-47,0,0,-0.0136004 -37672,5405:371:1,-51,-47,0,0,-0.0128918 -37673,5405:370:2,-50.5,-47,0,0,-0.0135093 -37674,5405:370:1,-50,-47,0,0,-0.0145851 -37675,5404:479:2,-49.5,-47,0,0,-0.0147594 -37676,5404:479:1,-49,-47,0,0,-0.0145981 -37677,5404:478:2,-48.5,-47,0,0,-0.0138959 -37678,5404:478:1,-48,-47,0,0,-0.0128601 -37679,5404:477:2,-47.5,-47,0,0,-0.0125082 -37680,5404:477:1,-47,-47,0,0,-0.0133559 -37681,5404:476:2,-46.5,-47,0,0,-0.0144548 -37682,5404:476:1,-46,-47,0,0,-0.0148957 -37683,5404:475:2,-45.5,-47,0,0,-0.014839 -37684,5404:475:1,-45,-47,0,0,-0.0143806 -37685,5404:374:2,-44.5,-47,0,0,-0.0141821 -37686,5404:374:1,-44,-47,0,0,-0.0141885 -37687,5404:373:2,-43.5,-47,0,0,-0.013871 -37688,5404:373:1,-43,-47,0,0,-0.0128084 -37689,5404:372:2,-42.5,-47,0,0,-0.0119343 -37690,5404:372:1,-42,-47,0,0,-0.0117569 -37691,5404:371:2,-41.5,-47,0,0,-0.0118281 -37692,5404:371:1,-41,-47,0,0,-0.0110834 -37693,5404:370:2,-40.5,-47,0,0,-0.0101115 -37694,5404:370:1,-40,-47,0,0,-0.00982463 -37695,5403:479:2,-39.5,-47,0,0,-0.009694 -37696,5403:479:1,-39,-47,0,0,-0.00971567 -37697,5403:478:2,-38.5,-47,0,0,-0.00950347 -37698,5403:478:1,-38,-47,0,0,-0.00889645 -37699,5403:477:2,-37.5,-47,0,0,-0.00884504 -37700,5403:477:1,-37,-47,0,0,-0.0090525 -37701,5403:476:2,-36.5,-47,0,0,-0.0092216 -37702,5403:476:1,-36,-47,0,0,-0.00946538 -37703,5403:475:2,-35.5,-47,0,0,-0.00975039 -37704,5403:475:1,-35,-47,0,0,-0.0099793 -37705,5403:374:2,-34.5,-47,0,0,-0.0101342 -37706,5403:374:1,-34,-47,0,0,-0.0101274 -37707,5403:373:2,-33.5,-47,0,0,-0.00994375 -37708,5403:373:1,-33,-47,0,0,-0.00968536 -37709,5403:372:2,-32.5,-47,0,0,-0.00931875 -37710,5403:372:1,-32,-47,0,0,-0.0087959 -37711,5403:371:2,-31.5,-47,0,0,-0.00844444 -37712,5403:371:1,-31,-47,0,0,-0.00831743 -37713,5403:370:2,-30.5,-47,0,0,-0.0081997 -37714,5403:370:1,-30,-47,0,0,-0.00800127 -37715,5402:479:2,-29.5,-47,0,0,-0.00780763 -37716,5402:479:1,-29,-47,0,0,-0.00766981 -37717,5402:478:2,-28.5,-47,0,0,-0.00774875 -37718,5402:478:1,-28,-47,0,0,-0.00775565 -37719,5402:477:2,-27.5,-47,0,0,-0.00758323 -37720,5402:477:1,-27,-47,0,0,-0.00748262 -37721,5402:476:2,-26.5,-47,0,0,-0.00770402 -37722,5402:476:1,-26,-47,0,0,-0.00769544 -37723,5402:475:2,-25.5,-47,0,0,-0.00812154 -37724,5402:475:1,-25,-47,0,0,-0.00853525 -37725,5402:374:2,-24.5,-47,0,0,-0.00839938 -37726,5402:374:1,-24,-47,0,0,-0.00874704 -37727,5402:373:2,-23.5,-47,0,0,-0.00986196 -37728,5402:373:1,-23,-47,0,0,-0.010257 -37729,5402:372:2,-22.5,-47,0,0,-0.0101025 -37730,5402:372:1,-22,-47,0,0,-0.00977219 -37731,5402:371:2,-21.5,-47,0,0,-0.00942533 -37732,5402:371:1,-21,-47,0,0,-0.00941693 -37733,5402:370:2,-20.5,-47,0,0,-0.00995263 -37734,5402:370:1,-20,-47,0,0,-0.0103306 -37735,5401:479:2,-19.5,-47,0,0,-0.0103791 -37736,5401:479:1,-19,-47,0,0,-0.0102868 -37737,5401:478:2,-18.5,-47,0,0,-0.0101931 -37738,5401:478:1,-18,-47,0,0,-0.00988838 -37739,5401:477:2,-17.5,-47,0,0,-0.00963577 -37740,5401:477:1,-17,-47,0,0,-0.00965087 -37741,5401:476:2,-16.5,-47,0,0,-0.00988838 -37742,5401:476:1,-16,-47,0,0,-0.00993705 -37743,5401:475:2,-15.5,-47,0,0,-0.00960787 -37744,5401:475:1,-15,-47,0,0,-0.00944215 -37745,5401:374:2,-14.5,-47,0,0,-0.00956727 -37746,5401:374:1,-14,-47,0,0,-0.0101954 -37747,5401:373:2,-13.5,-47,0,0,-0.0104651 -37748,5401:373:1,-13,-47,0,0,-0.0100016 -37749,5401:372:2,-12.5,-47,0,0,-0.0100688 -37750,5401:372:1,-12,-47,0,0,-0.010319 -37751,5401:371:2,-11.5,-47,0,0,-0.0101386 -37752,5401:371:1,-11,-47,0,0,-0.0101251 -37753,5401:370:2,-10.5,-47,0,0,-0.01015 -37754,5401:370:1,-10,-47,0,0,-0.010175 -37755,5400:479:2,-9.5,-47,0,0,-0.0103329 -37756,5400:479:1,-9,-47,0,0,-0.0106681 -37757,5400:478:2,-8.5,-47,0,0,-0.0108579 -37758,5400:478:1,-8,-47,0,0,-0.0106276 -37759,5400:477:2,-7.5,-47,0,0,-0.00989505 -37760,5400:477:1,-7,-47,0,0,-0.00933957 -37761,5400:476:2,-6.5,-47,0,0,-0.00846704 -37762,5400:476:1,-6,-47,0,0,-0.00837508 -37763,5400:475:2,-5.5,-47,0,0,-0.00874311 -37764,5400:475:1,-5,-47,0,0,-0.00901023 -37765,5400:374:2,-4.5,-47,0,0,-0.00860589 -37766,5400:374:1,-4,-47,0,0,-0.00777813 -37767,5400:373:2,-3.5,-47,0,0,-0.00743444 -37768,5400:373:1,-3,-47,0,0,-0.00734565 -37769,5400:372:2,-2.5,-47,0,0,-0.00730649 -37770,5400:372:1,-2,-47,0,0,-0.00726921 -37771,5400:371:2,-1.5,-47,0,0,-0.00721761 -37772,5400:371:1,-1,-47,0,0,-0.00716643 -37773,5400:370:2,-0.5,-47,0,0,-0.00712983 -37774,3400:370:2,0,-47,0,0,-0.00707139 -37775,3400:370:2,0.5,-47,0,0,-0.00700249 -37776,3400:371:1,1,-47,0,0,-0.00694817 -37777,3400:371:2,1.5,-47,0,0,-0.00695435 -37778,3400:372:1,2,-47,0,0,-0.00699778 -37779,3400:372:2,2.5,-47,0,0,-0.00704312 -37780,3400:373:1,3,-47,0,0,-0.00707292 -37781,3400:373:2,3.5,-47,0,0,-0.00710923 -37782,3400:374:1,4,-47,0,0,-0.00712029 -37783,3400:374:2,4.5,-47,0,0,-0.00707609 -37784,3400:475:1,5,-47,0,0,-0.00701805 -37785,3400:475:2,5.5,-47,0,0,-0.00693271 -37786,3400:476:1,6,-47,0,0,-0.00681951 -37787,3400:476:2,6.5,-47,0,0,-0.00668435 -37788,3400:477:1,7,-47,0,0,-0.0068317 -37789,3400:477:2,7.5,-47,0,0,-0.00706664 -37790,3400:478:1,8,-47,0,0,-0.00709341 -37791,3400:478:2,8.5,-47,0,0,-0.00710291 -37792,3400:479:1,9,-47,0,0,-0.00712349 -37793,3400:479:2,9.5,-47,0,0,-0.00712029 -37794,3401:370:1,10,-47,0,0,-0.00710605 -37795,3401:370:2,10.5,-47,0,0,-0.00703528 -37796,3401:371:1,11,-47,0,0,-0.00694043 -37797,3401:371:2,11.5,-47,0,0,-0.00685907 -37798,3401:372:1,12,-47,0,0,-0.00675161 -37799,3401:372:2,12.5,-47,0,0,-0.0066473 -37800,3401:373:1,13,-47,0,0,-0.00664581 -37801,3401:373:2,13.5,-47,0,0,-0.00666655 -37802,3401:374:1,14,-47,0,0,-0.00660897 -37803,3401:374:2,14.5,-47,0,0,-0.00650546 -37804,3401:475:1,15,-47,0,0,-0.00642351 -37805,3401:475:2,15.5,-47,0,0,-0.00639498 -37806,3401:476:1,16,-47,0,0,-0.00641637 -37807,3401:476:2,16.5,-47,0,0,-0.00641637 -37808,3401:477:1,17,-47,0,0,-0.00632571 -37809,3401:477:2,17.5,-47,0,0,-0.00627527 -37810,3401:478:1,18,-47,0,0,-0.00640354 -37811,3401:478:2,18.5,-47,0,0,-0.00648092 -37812,3401:479:1,19,-47,0,0,-0.00636805 -37813,3401:479:2,19.5,-47,0,0,-0.00659427 -37814,3402:370:1,20,-47,0,0,-0.006905 -37815,3402:370:2,20.5,-47,0,0,-0.00711082 -37816,3402:371:1,21,-47,0,0,-0.00726921 -37817,3402:371:2,21.5,-47,0,0,-0.00716643 -37818,3402:372:1,22,-47,0,0,-0.00644211 -37819,3402:372:2,22.5,-47,0,0,-0.00620175 -37820,3402:373:1,23,-47,0,0,-0.00616601 -37821,3402:373:2,23.5,-47,0,0,-0.0060884 -37822,3402:374:1,24,-47,0,0,-0.00604388 -37823,3402:374:2,24.5,-47,0,0,-0.00606812 -37824,3402:475:1,25,-47,0,0,-0.00622249 -37825,3402:475:2,25.5,-47,0,0,-0.00687436 -37826,3402:476:1,26,-47,0,0,-0.0073114 -37827,3402:476:2,26.5,-47,0,0,-0.00724177 -37828,3402:477:1,27,-47,0,0,-0.00706352 -37829,3402:477:2,27.5,-47,0,0,-0.00730649 -37830,3402:478:1,28,-47,0,0,-0.00790914 -37831,3402:478:2,28.5,-47,0,0,-0.00796037 -37832,3402:479:1,29,-47,0,0,-0.0072935 -37833,3402:479:2,29.5,-47,0,0,-0.00743611 -37834,3403:370:1,30,-47,0,0,-0.00779374 -37835,3403:370:2,30.5,-47,0,0,-0.00794621 -37836,3403:371:1,31,-47,0,0,-0.00799948 -37837,3403:371:2,31.5,-47,0,0,-0.00835086 -37838,3403:372:1,32,-47,0,0,-0.00868296 -37839,3403:372:2,32.5,-47,0,0,-0.0086965 -37840,3403:373:1,33,-47,0,0,-0.00868296 -37841,3403:373:2,33.5,-47,0,0,-0.00857528 -37842,3403:374:1,34,-47,0,0,-0.00850293 -37843,3403:374:2,34.5,-47,0,0,-0.00847458 -37844,3403:475:1,35,-47,0,0,-0.00840875 -37845,3403:475:2,35.5,-47,0,0,-0.00798877 -37846,3403:476:1,36,-47,0,0,-0.00759334 -37847,3403:476:2,36.5,-47,0,0,-0.00824369 -37848,3403:477:1,37,-47,0,0,-0.00866939 -37849,3403:477:2,37.5,-47,0,0,-0.0087568 -37850,3403:478:1,38,-47,0,0,-0.00843876 -37851,3403:478:2,38.5,-47,0,0,-0.0083583 -37852,3403:479:1,39,-47,0,0,-0.00868101 -37853,3403:479:2,39.5,-47,0,0,-0.00907674 -37854,3404:370:1,40,-47,0,0,-0.00927314 -37855,3404:370:2,40.5,-47,0,0,-0.00906668 -37856,3404:371:1,41,-47,0,0,-0.0084614 -37857,3404:371:2,41.5,-47,0,0,-0.00850865 -37858,3404:372:1,42,-47,0,0,-0.00882142 -37859,3404:372:2,42.5,-47,0,0,-0.00875287 -37860,3404:373:1,43,-47,0,0,-0.00863467 -37861,3404:373:2,43.5,-47,0,0,-0.00852383 -37862,3404:374:1,44,-47,0,0,-0.0087004 -37863,3404:374:2,44.5,-47,0,0,-0.00897615 -37864,3404:475:1,45,-47,0,0,-0.00903036 -37865,3404:475:2,45.5,-47,0,0,-0.00876067 -37866,3404:476:1,46,-47,0,0,-0.00831189 -37867,3404:476:2,46.5,-47,0,0,-0.00803342 -37868,3404:477:1,47,-47,0,0,-0.00799236 -37869,3404:477:2,47.5,-47,0,0,-0.00824369 -37870,3404:478:1,48,-47,0,0,-0.00854855 -37871,3404:478:2,48.5,-47,0,0,-0.00875877 -37872,3404:479:1,49,-47,0,0,-0.0086907 -37873,3404:479:2,49.5,-47,0,0,-0.00860396 -37874,3405:370:1,50,-47,0,0,-0.00853902 -37875,3405:370:2,50.5,-47,0,0,-0.00846704 -37876,3405:371:1,51,-47,0,0,-0.00835086 -37877,3405:371:2,51.5,-47,0,0,-0.00823265 -37878,3405:372:1,52,-47,0,0,-0.00840126 -37879,3405:372:2,52.5,-47,0,0,-0.00885491 -37880,3405:373:1,53,-47,0,0,-0.00945057 -37881,3405:373:2,53.5,-47,0,0,-0.00990166 -37882,3405:374:1,54,-47,0,0,-0.00998821 -37883,3405:374:2,54.5,-47,0,0,-0.0094717 -37884,3405:475:1,55,-47,0,0,-0.00872565 -37885,3405:475:2,55.5,-47,0,0,-0.00828419 -37886,3405:476:1,56,-47,0,0,-0.00826203 -37887,3405:476:2,56.5,-47,0,0,-0.00910513 -37888,3405:477:1,57,-47,0,0,-0.00989061 -37889,3405:477:2,57.5,-47,0,0,-0.00989943 -37890,3405:478:1,58,-47,0,0,-0.00934167 -37891,3405:478:2,58.5,-47,0,0,-0.00926487 -37892,3405:479:1,59,-47,0,0,-0.00930215 -37893,3405:479:2,59.5,-47,0,0,-0.00930424 -37894,3406:370:1,60,-47,0,0,-0.00952678 -37895,3406:370:2,60.5,-47,0,0,-0.00987957 -37896,3406:371:1,61,-47,0,0,-0.00995263 -37897,3406:371:2,61.5,-47,0,0,-0.0102502 -37898,3406:372:1,62,-47,0,0,-0.0105284 -37899,3406:372:2,62.5,-47,0,0,-0.0103121 -37900,3406:373:1,63,-47,0,0,-0.00975039 -37901,3406:373:2,63.5,-47,0,0,-0.00946538 -37902,3406:374:1,64,-47,0,0,-0.010062 -37903,3406:374:2,64.5,-47,0,0,-0.0111057 -37904,3406:475:1,65,-47,0,0,-0.0112706 -37905,3406:475:2,65.5,-47,0,0,-0.011076 -37906,3406:476:1,66,-47,0,0,-0.0106776 -37907,3406:476:2,66.5,-47,0,0,-0.0100912 -37908,3406:477:1,67,-47,0,0,-0.00988401 -37909,3406:477:2,67.5,-47,0,0,-0.00996816 -37910,3406:478:1,68,-47,0,0,-0.0100508 -37911,3406:478:2,68.5,-47,0,0,-0.0100553 -37912,3406:479:1,69,-47,0,0,-0.0100688 -37913,3406:479:2,69.5,-47,0,0,-0.0101931 -37914,3407:370:1,70,-47,0,0,-0.0102868 -37915,3407:370:2,70.5,-47,0,0,-0.010184 -37916,3407:371:1,71,-47,0,0,-0.0100217 -37917,3407:371:2,71.5,-47,0,0,-0.00989943 -37918,3407:372:1,72,-47,0,0,-0.0097569 -37919,3407:372:2,72.5,-47,0,0,-0.00965514 -37920,3407:373:2,73.5,-47,0,0,-0.00961644 -37921,3407:374:1,74,-47,0,0,-0.0093437 -37922,3407:374:2,74.5,-47,0,0,-0.00923805 -37923,3407:475:1,75,-47,0,0,-0.0090525 -37924,3407:475:2,75.5,-47,0,0,-0.00887861 -37925,3407:476:1,76,-47,0,0,-0.00884504 -37926,3407:476:2,76.5,-47,0,0,-0.00848214 -37927,3407:477:1,77,-47,0,0,-0.00758153 -37928,3407:477:2,77.5,-47,0,0,-0.00732606 -37929,3407:478:1,78,-47,0,0,-0.00745599 -37930,3407:478:2,78.5,-47,0,0,-0.00795859 -37931,3407:479:1,79,-47,0,0,-0.00790388 -37932,3407:479:2,79.5,-47,0,0,-0.00791969 -37933,3408:370:1,80,-47,0,0,-0.00801373 -37934,3408:370:2,80.5,-47,0,0,-0.00839002 -37935,3408:371:1,81,-47,0,0,-0.00961644 -37936,3408:371:2,81.5,-47,0,0,-0.0104488 -37937,3408:372:1,82,-47,0,0,-0.0111704 -37938,3408:372:2,82.5,-47,0,0,-0.0116862 -37939,3408:373:1,83,-47,0,0,-0.0121824 -37940,3408:373:2,83.5,-47,0,0,-0.0125531 -37941,3408:374:1,84,-47,0,0,-0.0123386 -37942,3408:374:2,84.5,-47,0,0,-0.0121824 -37943,3408:475:1,85,-47,0,0,-0.0125194 -37944,3408:475:2,85.5,-47,0,0,-0.0127056 -37945,3408:476:1,86,-47,0,0,-0.0124051 -37946,3408:476:2,86.5,-47,0,0,-0.0122507 -37947,3408:477:1,87,-47,0,0,-0.0125811 -37948,3408:477:2,87.5,-47,0,0,-0.0129468 -37949,3408:478:1,88,-47,0,0,-0.0134218 -37950,3408:478:2,88.5,-47,0,0,-0.0131836 -37951,3408:479:1,89,-47,0,0,-0.0131071 -37952,3408:479:2,89.5,-47,0,0,-0.0128228 -37953,3409:370:1,90,-47,0,0,-0.0116888 -37954,3409:370:2,90.5,-47,0,0,-0.0116211 -37955,3409:371:1,91,-47,0,0,-0.0113439 -37956,3409:371:2,91.5,-47,0,0,-0.0113871 -37957,3409:372:1,92,-47,0,0,-0.0112606 -37958,3409:372:2,92.5,-47,0,0,-0.0112004 -37959,3409:373:1,93,-47,0,0,-0.0112656 -37960,3409:373:2,93.5,-47,0,0,-0.0111829 -37961,3409:374:1,94,-47,0,0,-0.0112053 -37962,3409:374:2,94.5,-47,0,0,-0.011474 -37963,3409:475:1,95,-47,0,0,-0.0136034 -37964,3409:475:2,95.5,-47,0,0,-0.014371 -37965,3409:476:1,96,-47,0,0,-0.0143259 -37966,3409:476:2,96.5,-47,0,0,-0.0141853 -37967,3409:477:1,97,-47,0,0,-0.013924 -37968,3409:477:2,97.5,-47,0,0,-0.0130194 -37969,3409:478:1,98,-47,0,0,-0.0124718 -37970,3409:478:2,98.5,-47,0,0,-0.0123498 -37971,3409:479:1,99,-47,0,0,-0.0127484 -37972,3409:479:2,99.5,-47,0,0,-0.0127227 -37973,3410:370:1,100,-47,0,0,-0.0125278 -37974,3410:370:2,100.5,-47,0,0,-0.0124079 -37975,3410:371:1,101,-47,0,0,-0.0115718 -37976,3410:371:2,101.5,-47,0,0,-0.0101296 -37977,3410:372:1,102,-47,0,0,-0.00967672 -37978,3410:372:2,102.5,-47,0,0,-0.0095715 -37979,3410:373:1,103,-47,0,0,-0.0097482 -37980,3410:373:2,103.5,-47,0,0,-0.00996151 -37981,3410:374:1,104,-47,0,0,-0.0101931 -37982,3410:374:2,104.5,-47,0,0,-0.0102159 -37983,3410:475:1,105,-47,0,0,-0.0100688 -37984,3410:475:2,105.5,-47,0,0,-0.0103606 -37985,3410:476:1,106,-47,0,0,-0.0113718 -37986,3410:476:2,106.5,-47,0,0,-0.0118758 -37987,3410:477:1,107,-47,0,0,-0.0119745 -37988,3410:477:2,107.5,-47,0,0,-0.0119051 -37989,3410:478:1,108,-47,0,0,-0.011799 -37990,3410:478:2,108.5,-47,0,0,-0.0118307 -37991,3410:479:1,109,-47,0,0,-0.0118997 -37992,3410:479:2,109.5,-47,0,0,-0.0119077 -37993,3411:370:1,110,-47,0,0,-0.011921 -37994,3411:370:2,110.5,-47,0,0,-0.0126943 -37995,3411:371:1,111,-47,0,0,-0.0143162 -37996,3411:371:2,111.5,-47,0,0,-0.0148791 -37997,3411:372:1,112,-47,0,0,-0.0153261 -37998,3411:372:2,112.5,-47,0,0,-0.0168037 -37999,3411:373:1,113,-47,0,0,-0.0182776 -38000,3411:373:2,113.5,-47,0,0,-0.0170393 -38001,3411:374:1,114,-47,0,0,-0.0150704 -38002,3411:374:2,114.5,-47,0,0,-0.0146374 -38003,3411:475:1,115,-47,0,0,-0.015145 -38004,3411:475:2,115.5,-47,0,0,-0.0154226 -38005,3411:476:1,116,-47,0,0,-0.0153743 -38006,3411:476:2,116.5,-47,0,0,-0.0146112 -38007,3411:477:1,117,-47,0,0,-0.0141282 -38008,3411:477:2,117.5,-47,0,0,-0.0140839 -38009,3411:478:1,118,-47,0,0,-0.0140021 -38010,3411:478:2,118.5,-47,0,0,-0.0139302 -38011,3411:479:1,119,-47,0,0,-0.0140903 -38012,3411:479:2,119.5,-47,0,0,-0.0143259 -38013,3412:370:1,120,-47,0,0,-0.0142459 -38014,3412:370:2,120.5,-47,0,0,-0.0136492 -38015,3412:371:1,121,-47,0,0,-0.0139146 -38016,3412:371:2,121.5,-47,0,0,-0.0145003 -38017,3412:372:1,122,-47,0,0,-0.0147528 -38018,3412:372:2,122.5,-47,0,0,-0.0150232 -38019,3412:373:1,123,-47,0,0,-0.0149024 -38020,3412:373:2,123.5,-47,0,0,-0.0147263 -38021,3412:374:1,124,-47,0,0,-0.0147826 -38022,3412:374:2,124.5,-47,0,0,-0.0153364 -38023,3412:475:1,125,-47,0,0,-0.0161126 -38024,3412:475:2,125.5,-47,0,0,-0.0164157 -38025,3412:476:1,126,-47,0,0,-0.0160873 -38026,3412:476:2,126.5,-47,0,0,-0.0156809 -38027,3412:477:1,127,-47,0,0,-0.0155652 -38028,3412:477:2,127.5,-47,0,0,-0.0157726 -38029,3412:478:1,128,-47,0,0,-0.0165787 -38030,3412:478:2,128.5,-47,0,0,-0.0177949 -38031,3412:479:1,129,-47,0,0,-0.0182859 -38032,3412:479:2,129.5,-47,0,0,-0.0180488 -38033,3413:370:1,130,-47,0,0,-0.017517 -38034,3413:370:2,130.5,-47,0,0,-0.0168831 -38035,3413:371:1,131,-47,0,0,-0.0162652 -38036,3413:371:2,131.5,-47,0,0,-0.0158437 -38037,3413:372:1,132,-47,0,0,-0.0156633 -38038,3413:372:2,132.5,-47,0,0,-0.0157549 -38039,3413:373:1,133,-47,0,0,-0.0161343 -38040,3413:373:2,133.5,-47,0,0,-0.0164674 -38041,3413:374:1,134,-47,0,0,-0.0163936 -38042,3413:374:2,134.5,-47,0,0,-0.0162251 -38043,3413:475:1,135,-47,0,0,-0.0166833 -38044,3413:475:2,135.5,-47,0,0,-0.0174777 -38045,3413:476:1,136,-47,0,0,-0.0174777 -38046,3413:476:2,136.5,-47,0,0,-0.0170777 -38047,3413:477:1,137,-47,0,0,-0.0164342 -38048,3413:477:2,137.5,-47,0,0,-0.0156142 -38049,3413:478:1,138,-47,0,0,-0.0150704 -38050,3413:478:2,138.5,-47,0,0,-0.0152883 -38051,3413:479:1,139,-47,0,0,-0.0158685 -38052,3413:479:2,139.5,-47,0,0,-0.0173525 -38053,3414:370:1,140,-47,0,0,-0.0200454 -38054,3414:370:2,140.5,-47,0,0,-0.0216235 -38055,3414:371:1,141,-47,0,0,-0.0219728 -38056,3414:371:2,141.5,-47,0,0,-0.0214776 -38057,3414:372:1,142,-47,0,0,-0.0204562 -38058,3414:372:2,142.5,-47,0,0,-0.0193269 -38059,3414:373:1,143,-47,0,0,-0.0184637 -38060,3414:373:2,143.5,-47,0,0,-0.0176832 -38061,3414:374:1,144,-47,0,0,-0.0165675 -38062,3414:374:2,144.5,-47,0,0,-0.0158721 -38063,3414:475:1,145,-47,0,0,-0.0158685 -38064,3414:475:2,145.5,-47,0,0,-0.0156915 -38065,3414:476:1,146,-47,0,0,-0.0149896 -38066,3414:476:2,146.5,-47,0,0,-0.0140935 -38067,3414:477:1,147,-47,0,0,-0.0130544 -38068,3414:477:2,147.5,-47,0,0,-0.0117412 -38069,3414:478:1,148,-47,0,0,-0.0102387 -38070,3414:478:2,148.5,-47,0,0,-0.00965948 -38071,3414:479:1,149,-47,0,0,-0.00988401 -38072,3414:479:2,149.5,-47,0,0,-0.0150772 -38073,3415:370:1,150,-47,0,0,-0.0202771 -38074,3415:370:2,150.5,-47,0,0,-0.0189648 -38075,3415:371:1,151,-47,0,0,-0.0182859 -38076,3415:371:2,151.5,-47,0,0,-0.0156773 -38077,3415:372:1,152,-47,0,0,-0.0144906 -38078,3415:372:2,152.5,-47,0,0,-0.0138152 -38079,3415:373:1,153,-47,0,0,-0.0156282 -38080,3415:373:2,153.5,-47,0,0,-0.017723 -38081,3415:374:1,154,-47,0,0,-0.0191149 -38082,3415:374:2,154.5,-47,0,0,-0.0200815 -38083,3415:475:1,155,-47,0,0,-0.0196651 -38084,3415:475:2,155.5,-47,0,0,-0.0223431 -38085,3415:476:1,156,-47,0,0,-0.0250296 -38086,3415:476:2,156.5,-47,0,0,-0.0249503 -38087,3415:477:1,157,-47,0,0,-0.0242761 -38088,3415:477:2,157.5,-47,0,0,-0.0238245 -38089,3415:478:1,158,-47,0,0,-0.0249446 -38090,3415:478:2,158.5,-47,0,0,-0.0277752 -38091,3415:479:1,159,-47,0,0,-0.0209087 -38092,3415:479:2,159.5,-47,0,0,-0.0165601 -38093,3416:370:1,160,-47,0,0,-0.0187399 -38094,3416:370:2,160.5,-47,0,0,-0.0200951 -38095,3416:371:1,161,-47,0,0,-0.0205024 -38096,3416:371:2,161.5,-47,0,0,-0.0215407 -38097,3416:372:1,162,-47,0,0,-0.0229676 -38098,3416:372:2,162.5,-47,0,0,-0.024052 -38099,3416:373:1,163,-47,0,0,-0.0249109 -38100,3416:373:2,163.5,-47,0,0,-0.0264707 -38101,3416:374:1,164,-47,0,0,-0.0271457 -38102,3416:374:2,164.5,-47,0,0,-0.0256088 -38103,3416:475:1,165,-47,0,0,-0.0261544 -38104,3416:475:2,165.5,-47,0,0,-0.027356 -38105,3416:476:1,166,-47,0,0,-0.0283682 -38106,3416:476:2,166.5,-47,0,0,-0.0290666 -38107,3416:477:1,167,-47,0,0,-0.0292989 -38108,3416:477:2,167.5,-47,0,0,-0.0291261 -38109,3416:478:1,168,-47,0,0,-0.0287838 -38110,3416:478:2,168.5,-47,0,0,-0.0285298 -38111,3416:479:1,169,-47,0,0,-0.0285948 -38112,3416:479:2,169.5,-47,0,0,-0.0291526 -38113,3417:370:1,170,-47,0,0,-0.0274743 -38114,3417:370:2,170.5,-47,0,0,-0.0254872 -38115,3417:371:1,171,-47,0,0,-0.0261071 -38116,3417:371:2,171.5,-47,0,0,-0.0276745 -38117,3417:372:1,172,-47,0,0,-0.0277184 -38118,3417:372:2,172.5,-47,0,0,-0.0278764 -38119,3417:373:1,173,-47,0,0,-0.0284263 -38120,3417:373:2,173.5,-47,0,0,-0.0295127 -38121,3417:374:1,174,-47,0,0,-0.0303367 -38122,3417:374:2,174.5,-47,0,0,-0.0316065 -38123,3417:475:1,175,-47,0,0,-0.0329085 -38124,3417:475:2,175.5,-47,0,0,-0.0339695 -38125,3417:476:1,176,-47,0,0,-0.0348583 -38126,3417:476:2,176.5,-47,0,0,-0.0346913 -38127,3417:477:1,177,-47,0,0,-0.0329987 -38128,3417:477:2,177.5,-47,0,0,-0.0305378 -38129,3417:478:1,178,-47,0,0,-0.0285817 -38130,3417:478:2,178.5,-47,0,0,-0.027706 -38131,3417:479:1,179,-47,0,0,-0.0268091 -38132,3417:479:2,179.5,-47,0,0,-0.0254872 -38133,3418:370:1,180,-47,0,0,-0.0252688 -38134,5418:360:3,-180,-46.5,0,0,-0.0333242 -38135,5417:469:4,-179.5,-46.5,0,0,-0.0340316 -38136,5417:469:3,-179,-46.5,0,0,-0.0349462 -38137,5417:468:4,-178.5,-46.5,0,0,-0.0356322 -38138,5417:468:3,-178,-46.5,0,0,-0.0363238 -38139,5417:467:4,-177.5,-46.5,0,0,-0.0366162 -38140,5417:467:3,-177,-46.5,0,0,-0.0361663 -38141,5417:466:4,-176.5,-46.5,0,0,-0.03596 -38142,5417:466:3,-176,-46.5,0,0,-0.0357873 -38143,5417:465:4,-175.5,-46.5,0,0,-0.0355914 -38144,5417:465:3,-175,-46.5,0,0,-0.035575 -38145,5417:364:4,-174.5,-46.5,0,0,-0.0357546 -38146,5417:364:3,-174,-46.5,0,0,-0.0356484 -38147,5417:363:4,-173.5,-46.5,0,0,-0.034636 -38148,5417:363:3,-173,-46.5,0,0,-0.0326913 -38149,5417:362:4,-172.5,-46.5,0,0,-0.0304752 -38150,5417:362:3,-172,-46.5,0,0,-0.0293789 -38151,5417:361:4,-171.5,-46.5,0,0,-0.0297487 -38152,5417:361:3,-171,-46.5,0,0,-0.0293522 -38153,5417:360:4,-170.5,-46.5,0,0,-0.0287445 -38154,5417:360:3,-170,-46.5,0,0,-0.0284587 -38155,5416:469:4,-169.5,-46.5,0,0,-0.0282781 -38156,5416:469:3,-169,-46.5,0,0,-0.0286534 -38157,5416:468:4,-168.5,-46.5,0,0,-0.0292854 -38158,5416:468:3,-168,-46.5,0,0,-0.0293387 -38159,5416:467:4,-167.5,-46.5,0,0,-0.0294391 -38160,5416:467:3,-167,-46.5,0,0,-0.0288034 -38161,5416:466:4,-166.5,-46.5,0,0,-0.0261662 -38162,5416:466:3,-166,-46.5,0,0,-0.0256669 -38163,5416:465:4,-165.5,-46.5,0,0,-0.0260243 -38164,5416:465:3,-165,-46.5,0,0,-0.0266392 -38165,5416:364:4,-164.5,-46.5,0,0,-0.0270965 -38166,5416:364:3,-164,-46.5,0,0,-0.0273374 -38167,5416:363:4,-163.5,-46.5,0,0,-0.0273001 -38168,5416:363:3,-163,-46.5,0,0,-0.0269004 -38169,5416:362:4,-162.5,-46.5,0,0,-0.0262138 -38170,5416:362:3,-162,-46.5,0,0,-0.0254066 -38171,5416:361:4,-161.5,-46.5,0,0,-0.0246583 -38172,5416:361:3,-161,-46.5,0,0,-0.0244471 -38173,5416:360:4,-160.5,-46.5,0,0,-0.0249221 -38174,5416:360:3,-160,-46.5,0,0,-0.0258832 -38175,5415:469:4,-159.5,-46.5,0,0,-0.0274617 -38176,5415:469:3,-159,-46.5,0,0,-0.0297758 -38177,5415:468:4,-158.5,-46.5,0,0,-0.0314268 -38178,5415:468:3,-158,-46.5,0,0,-0.0324683 -38179,5415:467:4,-157.5,-46.5,0,0,-0.0338148 -38180,5415:467:3,-157,-46.5,0,0,-0.03436 -38181,5415:466:4,-156.5,-46.5,0,0,-0.0329686 -38182,5415:466:3,-156,-46.5,0,0,-0.0306421 -38183,5415:465:4,-155.5,-46.5,0,0,-0.0281116 -38184,5415:465:3,-155,-46.5,0,0,-0.0262554 -38185,5415:364:4,-154.5,-46.5,0,0,-0.0257368 -38186,5415:364:3,-154,-46.5,0,0,-0.0260419 -38187,5415:363:4,-153.5,-46.5,0,0,-0.0261484 -38188,5415:363:3,-153,-46.5,0,0,-0.0252859 -38189,5415:362:4,-152.5,-46.5,0,0,-0.0236152 -38190,5415:362:3,-152,-46.5,0,0,-0.0222275 -38191,5415:361:4,-151.5,-46.5,0,0,-0.0215991 -38192,5415:361:3,-151,-46.5,0,0,-0.0217458 -38193,5415:360:4,-150.5,-46.5,0,0,-0.0228073 -38194,5415:360:3,-150,-46.5,0,0,-0.0247422 -38195,5414:469:4,-149.5,-46.5,0,0,-0.0254008 -38196,5414:469:3,-149,-46.5,0,0,-0.0246303 -38197,5414:468:4,-148.5,-46.5,0,0,-0.0231344 -38198,5414:468:3,-148,-46.5,0,0,-0.0208944 -38199,5414:467:4,-147.5,-46.5,0,0,-0.0174856 -38200,5414:467:3,-147,-46.5,0,0,-0.0154158 -38201,5414:466:4,-146.5,-46.5,0,0,-0.0155721 -38202,5414:466:3,-146,-46.5,0,0,-0.0178832 -38203,5414:465:4,-145.5,-46.5,0,0,-0.0186055 -38204,5414:465:3,-145,-46.5,0,0,-0.0167772 -38205,5414:364:4,-144.5,-46.5,0,0,-0.0160044 -38206,5414:364:3,-144,-46.5,0,0,-0.0161705 -38207,5414:363:4,-143.5,-46.5,0,0,-0.0162835 -38208,5414:363:3,-143,-46.5,0,0,-0.0169859 -38209,5414:362:4,-142.5,-46.5,0,0,-0.0179154 -38210,5414:362:3,-142,-46.5,0,0,-0.0188627 -38211,5414:361:4,-141.5,-46.5,0,0,-0.0200273 -38212,5414:361:3,-141,-46.5,0,0,-0.0217312 -38213,5414:360:4,-140.5,-46.5,0,0,-0.0243147 -38214,5414:360:3,-140,-46.5,0,0,-0.031163 -38215,5413:469:4,-139.5,-46.5,0,0,-0.0339541 -38216,5413:469:3,-139,-46.5,0,0,-0.0341798 -38217,5413:468:4,-138.5,-46.5,0,0,-0.0326988 -38218,5413:468:3,-138,-46.5,0,0,-0.0318959 -38219,5413:467:4,-137.5,-46.5,0,0,-0.029973 -38220,5413:467:3,-137,-46.5,0,0,-0.0288558 -38221,5413:466:4,-136.5,-46.5,0,0,-0.0286923 -38222,5413:466:3,-136,-46.5,0,0,-0.0296608 -38223,5413:465:4,-135.5,-46.5,0,0,-0.0309297 -38224,5413:465:3,-135,-46.5,0,0,-0.032751 -38225,5413:364:4,-134.5,-46.5,0,0,-0.032931 -38226,5413:364:3,-134,-46.5,0,0,-0.033074 -38227,5413:363:4,-133.5,-46.5,0,0,-0.0328183 -38228,5413:363:3,-133,-46.5,0,0,-0.0324683 -38229,5413:362:4,-132.5,-46.5,0,0,-0.0324832 -38230,5413:362:3,-132,-46.5,0,0,-0.0330364 -38231,5413:361:4,-131.5,-46.5,0,0,-0.0347708 -38232,5413:361:3,-131,-46.5,0,0,-0.0384837 -38233,5413:360:4,-130.5,-46.5,0,0,-0.0427177 -38234,5413:360:3,-130,-46.5,0,0,-0.0457897 -38235,5412:469:4,-129.5,-46.5,0,0,-0.0451906 -38236,5412:469:3,-129,-46.5,0,0,-0.0421312 -38237,5412:468:4,-128.5,-46.5,0,0,-0.0404038 -38238,5412:468:3,-128,-46.5,0,0,-0.0402093 -38239,5412:467:4,-127.5,-46.5,0,0,-0.0410782 -38240,5412:467:3,-127,-46.5,0,0,-0.0430237 -38241,5412:466:4,-126.5,-46.5,0,0,-0.0444149 -38242,5412:466:3,-126,-46.5,0,0,-0.0460867 -38243,5412:465:4,-125.5,-46.5,0,0,-0.0463966 -38244,5412:465:3,-125,-46.5,0,0,-0.0448787 -38245,5412:364:4,-124.5,-46.5,0,0,-0.0439158 -38246,5412:364:3,-124,-46.5,0,0,-0.0435526 -38247,5412:363:4,-123.5,-46.5,0,0,-0.0422771 -38248,5412:363:3,-123,-46.5,0,0,-0.0417069 -38249,5412:362:4,-122.5,-46.5,0,0,-0.0416779 -38250,5412:362:3,-122,-46.5,0,0,-0.0419572 -38251,5412:361:4,-121.5,-46.5,0,0,-0.0422771 -38252,5412:361:3,-121,-46.5,0,0,-0.0422575 -38253,5412:360:4,-120.5,-46.5,0,0,-0.0415248 -38254,5412:360:3,-120,-46.5,0,0,-0.0405338 -38255,5411:469:4,-119.5,-46.5,0,0,-0.0389188 -38256,5411:469:3,-119,-46.5,0,0,-0.0367253 -38257,5411:468:4,-118.5,-46.5,0,0,-0.0354939 -38258,5411:468:3,-118,-46.5,0,0,-0.0344464 -38259,5411:467:4,-117.5,-46.5,0,0,-0.0336146 -38260,5411:467:3,-117,-46.5,0,0,-0.0342189 -38261,5411:466:4,-116.5,-46.5,0,0,-0.0349221 -38262,5411:466:3,-116,-46.5,0,0,-0.0340162 -38263,5411:465:4,-115.5,-46.5,0,0,-0.0325648 -38264,5411:465:3,-115,-46.5,0,0,-0.0320929 -38265,5411:364:4,-114.5,-46.5,0,0,-0.0325276 -38266,5411:364:3,-114,-46.5,0,0,-0.0325872 -38267,5411:363:4,-113.5,-46.5,0,0,-0.0326392 -38268,5411:363:3,-113,-46.5,0,0,-0.0329085 -38269,5411:362:4,-112.5,-46.5,0,0,-0.0337761 -38270,5411:362:3,-112,-46.5,0,0,-0.034954 -38271,5411:361:4,-111.5,-46.5,0,0,-0.0351625 -38272,5411:361:3,-111,-46.5,0,0,-0.0342815 -38273,5411:360:4,-110.5,-46.5,0,0,-0.032071 -38274,5411:360:3,-110,-46.5,0,0,-0.0306421 -38275,5410:469:4,-109.5,-46.5,0,0,-0.030761 -38276,5410:469:3,-109,-46.5,0,0,-0.0309437 -38277,5410:468:4,-108.5,-46.5,0,0,-0.0302678 -38278,5410:468:3,-108,-46.5,0,0,-0.0295195 -38279,5410:467:4,-107.5,-46.5,0,0,-0.0289611 -38280,5410:467:3,-107,-46.5,0,0,-0.0281307 -38281,5410:466:4,-106.5,-46.5,0,0,-0.0275366 -38282,5410:466:3,-106,-46.5,0,0,-0.0274056 -38283,5410:465:4,-105.5,-46.5,0,0,-0.0273871 -38284,5410:465:3,-105,-46.5,0,0,-0.0273994 -38285,5410:364:4,-104.5,-46.5,0,0,-0.0274617 -38286,5410:364:3,-104,-46.5,0,0,-0.0276557 -38287,5410:363:4,-103.5,-46.5,0,0,-0.0279079 -38288,5410:363:3,-103,-46.5,0,0,-0.0280606 -38289,5410:362:4,-102.5,-46.5,0,0,-0.0281371 -38290,5410:362:3,-102,-46.5,0,0,-0.028246 -38291,5410:361:4,-101.5,-46.5,0,0,-0.0284198 -38292,5410:361:3,-101,-46.5,0,0,-0.0284326 -38293,5410:360:4,-100.5,-46.5,0,0,-0.0280989 -38294,5410:360:3,-100,-46.5,0,0,-0.0274056 -38295,5409:469:4,-99.5,-46.5,0,0,-0.0268273 -38296,5409:469:3,-99,-46.5,0,0,-0.0267483 -38297,5409:468:4,-98.5,-46.5,0,0,-0.0268883 -38298,5409:468:3,-98,-46.5,0,0,-0.0269186 -38299,5409:467:4,-97.5,-46.5,0,0,-0.0267664 -38300,5409:467:3,-97,-46.5,0,0,-0.0264346 -38301,5409:466:4,-96.5,-46.5,0,0,-0.0259653 -38302,5409:466:3,-96,-46.5,0,0,-0.0255103 -38303,5409:465:4,-95.5,-46.5,0,0,-0.0253204 -38304,5409:465:3,-95,-46.5,0,0,-0.0257719 -38305,5409:364:4,-94.5,-46.5,0,0,-0.0264346 -38306,5409:364:3,-94,-46.5,0,0,-0.0272629 -38307,5409:363:4,-93.5,-46.5,0,0,-0.0278131 -38308,5409:363:3,-93,-46.5,0,0,-0.0277942 -38309,5409:362:4,-92.5,-46.5,0,0,-0.027468 -38310,5409:362:3,-92,-46.5,0,0,-0.0270595 -38311,5409:361:4,-91.5,-46.5,0,0,-0.0267179 -38312,5409:361:3,-91,-46.5,0,0,-0.0264947 -38313,5409:360:4,-90.5,-46.5,0,0,-0.0265608 -38314,5409:360:3,-90,-46.5,0,0,-0.0267968 -38315,5408:469:4,-89.5,-46.5,0,0,-0.0268516 -38316,5408:469:3,-89,-46.5,0,0,-0.0268211 -38317,5408:468:4,-88.5,-46.5,0,0,-0.0269371 -38318,5408:468:3,-88,-46.5,0,0,-0.0270779 -38319,5408:467:4,-87.5,-46.5,0,0,-0.0270167 -38320,5408:467:3,-87,-46.5,0,0,-0.0267422 -38321,5408:466:4,-86.5,-46.5,0,0,-0.0264707 -38322,5408:466:3,-86,-46.5,0,0,-0.0263568 -38323,5408:465:4,-85.5,-46.5,0,0,-0.0263867 -38324,5408:465:3,-85,-46.5,0,0,-0.0264586 -38325,5408:364:4,-84.5,-46.5,0,0,-0.0264526 -38326,5408:364:3,-84,-46.5,0,0,-0.0263687 -38327,5408:363:4,-83.5,-46.5,0,0,-0.0265489 -38328,5408:363:3,-83,-46.5,0,0,-0.0270534 -38329,5408:362:4,-82.5,-46.5,0,0,-0.0275366 -38330,5408:362:3,-82,-46.5,0,0,-0.0275303 -38331,5408:361:4,-81.5,-46.5,0,0,-0.0270288 -38332,5408:361:3,-81,-46.5,0,0,-0.0265246 -38333,5408:360:4,-80.5,-46.5,0,0,-0.0265127 -38334,5408:360:3,-80,-46.5,0,0,-0.0269492 -38335,5407:469:4,-79.5,-46.5,0,0,-0.0275179 -38336,5407:469:3,-79,-46.5,0,0,-0.028182 -38337,5407:468:4,-78.5,-46.5,0,0,-0.0286468 -38338,5407:468:3,-78,-46.5,0,0,-0.0287707 -38339,5407:467:4,-77.5,-46.5,0,0,-0.0279904 -38340,5407:467:3,-77,-46.5,0,0,-0.0274992 -38341,5407:466:4,-76.5,-46.5,0,0,-0.0277563 -38342,5407:466:3,-76,-46.5,0,0,-0.0284715 -38343,5407:465:4,-75.5,-46.5,0,0,-0.0290732 -38344,5407:465:3,-75,-46.5,0,0,-0.0298912 -38345,5407:364:4,-74.5,-46.5,0,0,-0.030663 -38346,5407:364:3,-74,-46.5,0,0,-0.0306142 -38347,5407:363:4,-73.5,-46.5,0,0,-0.0307751 -38348,5407:363:3,-73,-46.5,0,0,-0.0303299 -38349,5407:362:4,-72.5,-46.5,0,0,-0.030482 -38350,5407:362:3,-72,-46.5,0,0,-0.0307539 -38351,5407:361:4,-71.5,-46.5,0,0,-0.0306004 -38352,5407:361:3,-71,-46.5,0,0,-0.0331649 -38353,5407:360:4,-70.5,-46.5,0,0,-0.0341719 -38354,5407:360:3,-70,-46.5,0,0,-0.0383251 -38355,5406:469:4,-69.5,-46.5,0,0,-0.039686 -38356,5406:469:3,-69,-46.5,0,0,-0.040674 -38357,5406:468:4,-68.5,-46.5,0,0,-0.0420443 -38358,5406:468:3,-68,-46.5,0,0,-0.0425801 -38359,5406:467:4,-67.5,-46.5,0,0,-0.0401631 -38360,5406:467:3,-67,-46.5,0,0,-0.0397682 -38361,5406:466:4,-66.5,-46.5,0,0,-0.0345332 -38362,5406:466:3,-66,-46.5,0,0,-0.0275429 -38363,5406:465:4,-65.5,-46.5,0,0,-0.0242267 -38364,5406:465:3,-65,-46.5,0,0,-0.0218986 -38365,5406:364:4,-64.5,-46.5,0,0,-0.0199058 -38366,5406:364:3,-64,-46.5,0,0,-0.0190462 -38367,5406:363:4,-63.5,-46.5,0,0,-0.0194581 -38368,5406:363:3,-63,-46.5,0,0,-0.0201586 -38369,5406:362:4,-62.5,-46.5,0,0,-0.0203826 -38370,5406:362:3,-62,-46.5,0,0,-0.0205441 -38371,5406:361:4,-61.5,-46.5,0,0,-0.0206881 -38372,5406:361:3,-61,-46.5,0,0,-0.0208568 -38373,5406:360:4,-60.5,-46.5,0,0,-0.0210079 -38374,5406:360:3,-60,-46.5,0,0,-0.0210648 -38375,5405:469:4,-59.5,-46.5,0,0,-0.0210743 -38376,5405:469:3,-59,-46.5,0,0,-0.020989 -38377,5405:468:4,-58.5,-46.5,0,0,-0.0209464 -38378,5405:468:3,-58,-46.5,0,0,-0.0210838 -38379,5405:467:4,-57.5,-46.5,0,0,-0.0214049 -38380,5405:467:3,-57,-46.5,0,0,-0.0218641 -38381,5405:466:4,-56.5,-46.5,0,0,-0.0211745 -38382,5405:466:3,-56,-46.5,0,0,-0.0200363 -38383,5405:465:4,-55.5,-46.5,0,0,-0.0184677 -38384,5405:465:3,-55,-46.5,0,0,-0.0159865 -38385,5405:364:4,-54.5,-46.5,0,0,-0.0145166 -38386,5405:364:3,-54,-46.5,0,0,-0.0145557 -38387,5405:363:4,-53.5,-46.5,0,0,-0.0159865 -38388,5405:363:3,-53,-46.5,0,0,-0.0175525 -38389,5405:362:4,-52.5,-46.5,0,0,-0.0155721 -38390,5405:362:3,-52,-46.5,0,0,-0.0136828 -38391,5405:361:4,-51.5,-46.5,0,0,-0.014497 -38392,5405:361:3,-51,-46.5,0,0,-0.01504 -38393,5405:360:4,-50.5,-46.5,0,0,-0.0149459 -38394,5405:360:3,-50,-46.5,0,0,-0.0146243 -38395,5404:469:4,-49.5,-46.5,0,0,-0.0145687 -38396,5404:469:3,-49,-46.5,0,0,-0.0147165 -38397,5404:468:4,-48.5,-46.5,0,0,-0.0143806 -38398,5404:468:3,-48,-46.5,0,0,-0.0133828 -38399,5404:467:4,-47.5,-46.5,0,0,-0.0126885 -38400,5404:467:3,-47,-46.5,0,0,-0.0150165 -38401,5404:466:4,-46.5,-46.5,0,0,-0.0152815 -38402,5404:466:3,-46,-46.5,0,0,-0.014909 -38403,5404:465:4,-45.5,-46.5,0,0,-0.0140839 -38404,5404:465:3,-45,-46.5,0,0,-0.0134851 -38405,5404:364:4,-44.5,-46.5,0,0,-0.0133022 -38406,5404:364:3,-44,-46.5,0,0,-0.0134188 -38407,5404:363:4,-43.5,-46.5,0,0,-0.0135244 -38408,5404:363:3,-43,-46.5,0,0,-0.0136186 -38409,5404:362:4,-42.5,-46.5,0,0,-0.013467 -38410,5404:362:3,-42,-46.5,0,0,-0.0130077 -38411,5404:361:4,-41.5,-46.5,0,0,-0.0123304 -38412,5404:361:3,-41,-46.5,0,0,-0.0107662 -38413,5404:360:4,-40.5,-46.5,0,0,-0.0101184 -38414,5404:360:3,-40,-46.5,0,0,-0.00982904 -38415,5403:469:4,-39.5,-46.5,0,0,-0.00970265 -38416,5403:469:3,-39,-46.5,0,0,-0.00958859 -38417,5403:468:4,-38.5,-46.5,0,0,-0.00928558 -38418,5403:468:3,-38,-46.5,0,0,-0.00921338 -38419,5403:467:4,-37.5,-46.5,0,0,-0.00948654 -38420,5403:467:3,-37,-46.5,0,0,-0.00982463 -38421,5403:466:4,-36.5,-46.5,0,0,-0.0103444 -38422,5403:466:3,-36,-46.5,0,0,-0.0108628 -38423,5403:465:4,-35.5,-46.5,0,0,-0.0110291 -38424,5403:465:3,-35,-46.5,0,0,-0.0109823 -38425,5403:364:4,-34.5,-46.5,0,0,-0.0109017 -38426,5403:364:3,-34,-46.5,0,0,-0.0108386 -38427,5403:363:4,-33.5,-46.5,0,0,-0.0105567 -38428,5403:363:3,-33,-46.5,0,0,-0.0101228 -38429,5403:362:4,-32.5,-46.5,0,0,-0.00973301 -38430,5403:362:3,-32,-46.5,0,0,-0.00932293 -38431,5403:361:4,-31.5,-46.5,0,0,-0.00886878 -38432,5403:361:3,-31,-46.5,0,0,-0.00853142 -38433,5403:360:4,-30.5,-46.5,0,0,-0.00836205 -38434,5403:360:3,-30,-46.5,0,0,-0.00823999 -38435,5402:469:4,-29.5,-46.5,0,0,-0.0079056 -38436,5402:469:3,-29,-46.5,0,0,-0.00776778 -38437,5402:468:4,-28.5,-46.5,0,0,-0.00784075 -38438,5402:468:3,-28,-46.5,0,0,-0.00779724 -38439,5402:467:4,-27.5,-46.5,0,0,-0.00778337 -38440,5402:467:3,-27,-46.5,0,0,-0.00781633 -38441,5402:466:4,-26.5,-46.5,0,0,-0.00800481 -38442,5402:466:3,-26,-46.5,0,0,-0.00854472 -38443,5402:465:4,-25.5,-46.5,0,0,-0.00946957 -38444,5402:465:3,-25,-46.5,0,0,-0.00997264 -38445,5402:364:4,-24.5,-46.5,0,0,-0.00988623 -38446,5402:364:3,-24,-46.5,0,0,-0.00980491 -38447,5402:363:4,-23.5,-46.5,0,0,-0.0100912 -38448,5402:363:3,-23,-46.5,0,0,-0.0102731 -38449,5402:362:4,-22.5,-46.5,0,0,-0.0100217 -38450,5402:362:3,-22,-46.5,0,0,-0.00975039 -38451,5402:361:4,-21.5,-46.5,0,0,-0.0097569 -38452,5402:361:3,-21,-46.5,0,0,-0.0099793 -38453,5402:360:4,-20.5,-46.5,0,0,-0.0101161 -38454,5402:360:3,-20,-46.5,0,0,-0.0102914 -38455,5401:469:4,-19.5,-46.5,0,0,-0.0105026 -38456,5401:469:3,-19,-46.5,0,0,-0.010735 -38457,5401:468:4,-18.5,-46.5,0,0,-0.0109505 -38458,5401:468:3,-18,-46.5,0,0,-0.0110463 -38459,5401:467:4,-17.5,-46.5,0,0,-0.0109873 -38460,5401:467:3,-17,-46.5,0,0,-0.0108458 -38461,5401:466:4,-16.5,-46.5,0,0,-0.0107494 -38462,5401:466:3,-16,-46.5,0,0,-0.0107926 -38463,5401:465:4,-15.5,-46.5,0,0,-0.0107015 -38464,5401:465:3,-15,-46.5,0,0,-0.0102342 -38465,5401:364:4,-14.5,-46.5,0,0,-0.0100665 -38466,5401:364:3,-14,-46.5,0,0,-0.0106633 -38467,5401:363:4,-13.5,-46.5,0,0,-0.0111156 -38468,5401:363:3,-13,-46.5,0,0,-0.0108652 -38469,5401:362:4,-12.5,-46.5,0,0,-0.0106134 -38470,5401:362:3,-12,-46.5,0,0,-0.010649 -38471,5401:361:4,-11.5,-46.5,0,0,-0.0104629 -38472,5401:361:3,-11,-46.5,0,0,-0.0102616 -38473,5401:360:4,-10.5,-46.5,0,0,-0.0102548 -38474,5401:360:3,-10,-46.5,0,0,-0.0107015 -38475,5400:469:4,-9.5,-46.5,0,0,-0.0115874 -38476,5400:469:3,-9,-46.5,0,0,-0.0121362 -38477,5400:468:4,-8.5,-46.5,0,0,-0.0121524 -38478,5400:468:3,-8,-46.5,0,0,-0.0116731 -38479,5400:467:4,-7.5,-46.5,0,0,-0.0109139 -38480,5400:467:3,-7,-46.5,0,0,-0.0101251 -38481,5400:466:4,-6.5,-46.5,0,0,-0.0090525 -38482,5400:466:3,-6,-46.5,0,0,-0.00903238 -38483,5400:465:4,-5.5,-46.5,0,0,-0.00977652 -38484,5400:465:3,-5,-46.5,0,0,-0.0100418 -38485,5400:364:4,-4.5,-46.5,0,0,-0.00977219 -38486,5400:364:3,-4,-46.5,0,0,-0.00887071 -38487,5400:363:4,-3.5,-46.5,0,0,-0.00770748 -38488,5400:363:3,-3,-46.5,0,0,-0.00736858 -38489,5400:362:4,-2.5,-46.5,0,0,-0.00738828 -38490,5400:362:3,-2,-46.5,0,0,-0.00741296 -38491,5400:361:4,-1.5,-46.5,0,0,-0.0074444 -38492,5400:361:3,-1,-46.5,0,0,-0.00744774 -38493,5400:360:4,-0.5,-46.5,0,0,-0.00733423 -38494,3400:360:4,0,-46.5,0,0,-0.00718397 -38495,3400:360:4,0.5,-46.5,0,0,-0.00713777 -38496,3400:361:3,1,-46.5,0,0,-0.00709028 -38497,3400:361:4,1.5,-46.5,0,0,-0.0070887 -38498,3400:362:3,2,-46.5,0,0,-0.00711242 -38499,3400:362:4,2.5,-46.5,0,0,-0.00715845 -38500,3400:363:3,3,-46.5,0,0,-0.00731463 -38501,3400:363:4,3.5,-46.5,0,0,-0.00750431 -38502,3400:364:3,4,-46.5,0,0,-0.00753107 -38503,3400:364:4,4.5,-46.5,0,0,-0.00740803 -38504,3400:465:3,5,-46.5,0,0,-0.00727405 -38505,3400:465:4,5.5,-46.5,0,0,-0.0071728 -38506,3400:466:3,6,-46.5,0,0,-0.00707768 -38507,3400:466:4,6.5,-46.5,0,0,-0.00696985 -38508,3400:467:3,7,-46.5,0,0,-0.0068317 -38509,3400:467:4,7.5,-46.5,0,0,-0.00679982 -38510,3400:468:3,8,-46.5,0,0,-0.00680134 -38511,3400:468:4,8.5,-46.5,0,0,-0.00683471 -38512,3400:469:3,9,-46.5,0,0,-0.00690195 -38513,3400:469:4,9.5,-46.5,0,0,-0.00709818 -38514,3401:360:3,10,-46.5,0,0,-0.00708398 -38515,3401:360:4,10.5,-46.5,0,0,-0.00703996 -38516,3401:361:3,11,-46.5,0,0,-0.00703528 -38517,3401:361:4,11.5,-46.5,0,0,-0.00694043 -38518,3401:362:3,12,-46.5,0,0,-0.00689886 -38519,3401:362:4,12.5,-46.5,0,0,-0.00684535 -38520,3401:363:3,13,-46.5,0,0,-0.00680286 -38521,3401:363:4,13.5,-46.5,0,0,-0.00675313 -38522,3401:364:3,14,-46.5,0,0,-0.00668286 -38523,3401:364:4,14.5,-46.5,0,0,-0.00662222 -38524,3401:465:3,15,-46.5,0,0,-0.00657818 -38525,3401:465:4,15.5,-46.5,0,0,-0.00654318 -38526,3401:466:3,16,-46.5,0,0,-0.00650979 -38527,3401:466:4,16.5,-46.5,0,0,-0.00656355 -38528,3401:467:3,17,-46.5,0,0,-0.0067291 -38529,3401:467:4,17.5,-46.5,0,0,-0.00692194 -38530,3401:468:3,18,-46.5,0,0,-0.00711875 -38531,3401:468:4,18.5,-46.5,0,0,-0.00724339 -38532,3401:469:3,19,-46.5,0,0,-0.00705566 -38533,3401:469:4,19.5,-46.5,0,0,-0.00711242 -38534,3402:360:3,20,-46.5,0,0,-0.00733094 -38535,3402:360:4,20.5,-46.5,0,0,-0.00739978 -38536,3402:361:3,21,-46.5,0,0,-0.00741296 -38537,3402:361:4,21.5,-46.5,0,0,-0.00730326 -38538,3402:362:3,22,-46.5,0,0,-0.00686671 -38539,3402:362:4,22.5,-46.5,0,0,-0.00658108 -38540,3402:363:3,23,-46.5,0,0,-0.00662518 -38541,3402:363:4,23.5,-46.5,0,0,-0.00639928 -38542,3402:364:3,24,-46.5,0,0,-0.00633697 -38543,3402:364:4,24.5,-46.5,0,0,-0.00677871 -38544,3402:465:3,25,-46.5,0,0,-0.00774533 -38545,3402:465:4,25.5,-46.5,0,0,-0.00793208 -38546,3402:466:3,26,-46.5,0,0,-0.00814875 -38547,3402:466:4,26.5,-46.5,0,0,-0.00818878 -38548,3402:467:3,27,-46.5,0,0,-0.00804593 -38549,3402:467:4,27.5,-46.5,0,0,-0.00785825 -38550,3402:468:3,28,-46.5,0,0,-0.00786348 -38551,3402:468:4,28.5,-46.5,0,0,-0.00767492 -38552,3402:469:3,29,-46.5,0,0,-0.00719676 -38553,3402:469:4,29.5,-46.5,0,0,-0.00743444 -38554,3403:360:3,30,-46.5,0,0,-0.00769032 -38555,3403:360:4,30.5,-46.5,0,0,-0.00770229 -38556,3403:361:3,31,-46.5,0,0,-0.00772809 -38557,3403:361:4,31.5,-46.5,0,0,-0.00789679 -38558,3403:362:3,32,-46.5,0,0,-0.00855617 -38559,3403:362:4,32.5,-46.5,0,0,-0.00864431 -38560,3403:363:3,33,-46.5,0,0,-0.00858292 -38561,3403:363:4,33.5,-46.5,0,0,-0.00854286 -38562,3403:364:3,34,-46.5,0,0,-0.00859823 -38563,3403:364:4,34.5,-46.5,0,0,-0.00865973 -38564,3403:465:3,35,-46.5,0,0,-0.00824548 -38565,3403:465:4,35.5,-46.5,0,0,-0.00787402 -38566,3403:466:3,36,-46.5,0,0,-0.00784949 -38567,3403:466:4,36.5,-46.5,0,0,-0.00810891 -38568,3403:467:3,37,-46.5,0,0,-0.00869455 -38569,3403:467:4,37.5,-46.5,0,0,-0.0091011 -38570,3403:468:3,38,-46.5,0,0,-0.00911529 -38571,3403:468:4,38.5,-46.5,0,0,-0.00908081 -38572,3403:469:3,39,-46.5,0,0,-0.00919904 -38573,3403:469:4,39.5,-46.5,0,0,-0.00933125 -38574,3404:360:3,40,-46.5,0,0,-0.0094844 -38575,3404:360:4,40.5,-46.5,0,0,-0.00961644 -38576,3404:361:3,41,-46.5,0,0,-0.00931253 -38577,3404:361:4,41.5,-46.5,0,0,-0.00888852 -38578,3404:362:3,42,-46.5,0,0,-0.00892227 -38579,3404:362:4,42.5,-46.5,0,0,-0.00888061 -38580,3404:363:3,43,-46.5,0,0,-0.0088628 -38581,3404:363:4,43.5,-46.5,0,0,-0.00900624 -38582,3404:364:3,44,-46.5,0,0,-0.00923397 -38583,3404:364:4,44.5,-46.5,0,0,-0.00933747 -38584,3404:465:3,45,-46.5,0,0,-0.00935624 -38585,3404:465:4,45.5,-46.5,0,0,-0.00931665 -38586,3404:466:3,46,-46.5,0,0,-0.00895218 -38587,3404:466:4,46.5,-46.5,0,0,-0.00858671 -38588,3404:467:3,47,-46.5,0,0,-0.0084576 -38589,3404:467:4,47.5,-46.5,0,0,-0.0085638 -38590,3404:468:3,48,-46.5,0,0,-0.00851624 -38591,3404:468:4,48.5,-46.5,0,0,-0.00854472 -38592,3404:469:3,49,-46.5,0,0,-0.00869845 -38593,3404:469:4,49.5,-46.5,0,0,-0.00885889 -38594,3405:360:3,50,-46.5,0,0,-0.00895218 -38595,3405:360:4,50.5,-46.5,0,0,-0.00900422 -38596,3405:361:3,51,-46.5,0,0,-0.00896413 -38597,3405:361:4,51.5,-46.5,0,0,-0.0088628 -38598,3405:362:3,52,-46.5,0,0,-0.00884901 -38599,3405:362:4,52.5,-46.5,0,0,-0.00901427 -38600,3405:363:3,53,-46.5,0,0,-0.00936879 -38601,3405:363:4,53.5,-46.5,0,0,-0.00985759 -38602,3405:364:3,54,-46.5,0,0,-0.0101568 -38603,3405:364:4,54.5,-46.5,0,0,-0.00999045 -38604,3405:465:3,55,-46.5,0,0,-0.0093437 -38605,3405:465:4,55.5,-46.5,0,0,-0.00876264 -38606,3405:466:3,56,-46.5,0,0,-0.00883716 -38607,3405:466:4,56.5,-46.5,0,0,-0.00994375 -38608,3405:467:3,57,-46.5,0,0,-0.0103306 -38609,3405:467:4,57.5,-46.5,0,0,-0.0102548 -38610,3405:468:3,58,-46.5,0,0,-0.00971997 -38611,3405:468:4,58.5,-46.5,0,0,-0.00938967 -38612,3405:469:3,59,-46.5,0,0,-0.00955022 -38613,3405:469:4,59.5,-46.5,0,0,-0.00969182 -38614,3406:360:3,60,-46.5,0,0,-0.00978091 -38615,3406:360:4,60.5,-46.5,0,0,-0.00983339 -38616,3406:361:3,61,-46.5,0,0,-0.00982028 -38617,3406:361:4,61.5,-46.5,0,0,-0.00991711 -38618,3406:362:3,62,-46.5,0,0,-0.0103375 -38619,3406:362:4,62.5,-46.5,0,0,-0.0107182 -38620,3406:363:3,63,-46.5,0,0,-0.010611 -38621,3406:363:4,63.5,-46.5,0,0,-0.0107374 -38622,3406:364:3,64,-46.5,0,0,-0.011377 -38623,3406:364:4,64.5,-46.5,0,0,-0.0115099 -38624,3406:465:3,65,-46.5,0,0,-0.0113161 -38625,3406:465:4,65.5,-46.5,0,0,-0.0111505 -38626,3406:466:3,66,-46.5,0,0,-0.0109432 -38627,3406:466:4,66.5,-46.5,0,0,-0.0105968 -38628,3406:467:3,67,-46.5,0,0,-0.0104116 -38629,3406:467:4,67.5,-46.5,0,0,-0.0105144 -38630,3406:468:3,68,-46.5,0,0,-0.0107278 -38631,3406:468:4,68.5,-46.5,0,0,-0.0108822 -38632,3406:469:3,69,-46.5,0,0,-0.0109725 -38633,3406:469:4,69.5,-46.5,0,0,-0.0110439 -38634,3407:360:3,70,-46.5,0,0,-0.0109873 -38635,3407:360:4,70.5,-46.5,0,0,-0.0107614 -38636,3407:361:3,71,-46.5,0,0,-0.0105874 -38637,3407:361:4,71.5,-46.5,0,0,-0.010519 -38638,3407:362:3,72,-46.5,0,0,-0.0104582 -38639,3407:362:4,72.5,-46.5,0,0,-0.0103907 -38640,3407:363:4,73.5,-46.5,0,0,-0.0102456 -38641,3407:364:3,74,-46.5,0,0,-0.00996816 -38642,3407:364:4,74.5,-46.5,0,0,-0.00947595 -38643,3407:465:3,75,-46.5,0,0,-0.00935204 -38644,3407:465:4,75.5,-46.5,0,0,-0.0094717 -38645,3407:466:3,76,-46.5,0,0,-0.00968318 -38646,3407:466:4,76.5,-46.5,0,0,-0.0097417 -38647,3407:467:3,77,-46.5,0,0,-0.00950554 -38648,3407:467:4,77.5,-46.5,0,0,-0.00883914 -38649,3407:468:3,78,-46.5,0,0,-0.00802627 -38650,3407:468:4,78.5,-46.5,0,0,-0.00748425 -38651,3407:469:3,79,-46.5,0,0,-0.00772809 -38652,3407:469:4,79.5,-46.5,0,0,-0.00838255 -38653,3408:360:3,80,-46.5,0,0,-0.00842563 -38654,3408:360:4,80.5,-46.5,0,0,-0.00882929 -38655,3408:361:3,81,-46.5,0,0,-0.00962292 -38656,3408:361:4,81.5,-46.5,0,0,-0.0103537 -38657,3408:362:3,82,-46.5,0,0,-0.0110685 -38658,3408:362:4,82.5,-46.5,0,0,-0.0112179 -38659,3408:363:3,83,-46.5,0,0,-0.010875 -38660,3408:363:4,83.5,-46.5,0,0,-0.0106158 -38661,3408:364:3,84,-46.5,0,0,-0.0105992 -38662,3408:364:4,84.5,-46.5,0,0,-0.0109799 -38663,3408:465:3,85,-46.5,0,0,-0.0125615 -38664,3408:465:4,85.5,-46.5,0,0,-0.0134008 -38665,3408:466:3,86,-46.5,0,0,-0.0133678 -38666,3408:466:4,86.5,-46.5,0,0,-0.0127255 -38667,3408:467:3,87,-46.5,0,0,-0.0127141 -38668,3408:467:4,87.5,-46.5,0,0,-0.0131954 -38669,3408:468:3,88,-46.5,0,0,-0.0133589 -38670,3408:468:4,88.5,-46.5,0,0,-0.0134459 -38671,3408:469:3,89,-46.5,0,0,-0.0131276 -38672,3408:469:4,89.5,-46.5,0,0,-0.0126037 -38673,3409:360:3,90,-46.5,0,0,-0.0124747 -38674,3409:360:4,90.5,-46.5,0,0,-0.0125278 -38675,3409:361:3,91,-46.5,0,0,-0.0129757 -38676,3409:361:4,91.5,-46.5,0,0,-0.013329 -38677,3409:362:3,92,-46.5,0,0,-0.0133111 -38678,3409:362:4,92.5,-46.5,0,0,-0.0126829 -38679,3409:363:3,93,-46.5,0,0,-0.0112304 -38680,3409:363:4,93.5,-46.5,0,0,-0.0119771 -38681,3409:364:3,94,-46.5,0,0,-0.0125474 -38682,3409:364:4,94.5,-46.5,0,0,-0.0133858 -38683,3409:465:3,95,-46.5,0,0,-0.013806 -38684,3409:465:4,95.5,-46.5,0,0,-0.0141662 -38685,3409:466:3,96,-46.5,0,0,-0.0144387 -38686,3409:466:4,96.5,-46.5,0,0,-0.0145003 -38687,3409:467:3,97,-46.5,0,0,-0.0145557 -38688,3409:467:4,97.5,-46.5,0,0,-0.0141536 -38689,3409:468:3,98,-46.5,0,0,-0.0133738 -38690,3409:468:4,98.5,-46.5,0,0,-0.0129989 -38691,3409:469:3,99,-46.5,0,0,-0.012938 -38692,3409:469:4,99.5,-46.5,0,0,-0.0123635 -38693,3410:360:3,100,-46.5,0,0,-0.0120631 -38694,3410:360:4,100.5,-46.5,0,0,-0.0115615 -38695,3410:361:3,101,-46.5,0,0,-0.0109212 -38696,3410:361:4,101.5,-46.5,0,0,-0.0102685 -38697,3410:362:3,102,-46.5,0,0,-0.0100958 -38698,3410:362:4,102.5,-46.5,0,0,-0.0100845 -38699,3410:363:3,103,-46.5,0,0,-0.00976348 -38700,3410:363:4,103.5,-46.5,0,0,-0.00968753 -38701,3410:364:3,104,-46.5,0,0,-0.00974389 -38702,3410:364:4,104.5,-46.5,0,0,-0.0098356 -38703,3410:465:3,105,-46.5,0,0,-0.0102251 -38704,3410:465:4,105.5,-46.5,0,0,-0.0116836 -38705,3410:466:3,106,-46.5,0,0,-0.0123884 -38706,3410:466:4,106.5,-46.5,0,0,-0.012717 -38707,3410:467:3,107,-46.5,0,0,-0.0126489 -38708,3410:467:4,107.5,-46.5,0,0,-0.0122782 -38709,3410:468:3,108,-46.5,0,0,-0.0120066 -38710,3410:468:4,108.5,-46.5,0,0,-0.0120066 -38711,3410:469:3,109,-46.5,0,0,-0.0119985 -38712,3410:469:4,109.5,-46.5,0,0,-0.0120334 -38713,3411:360:3,110,-46.5,0,0,-0.0123995 -38714,3411:360:4,110.5,-46.5,0,0,-0.013225 -38715,3411:361:3,111,-46.5,0,0,-0.0142427 -38716,3411:361:4,111.5,-46.5,0,0,-0.0145296 -38717,3411:362:3,112,-46.5,0,0,-0.0143806 -38718,3411:362:4,112.5,-46.5,0,0,-0.0151654 -38719,3411:363:3,113,-46.5,0,0,-0.0177031 -38720,3411:363:4,113.5,-46.5,0,0,-0.0184138 -38721,3411:364:3,114,-46.5,0,0,-0.0167697 -38722,3411:364:4,114.5,-46.5,0,0,-0.0156879 -38723,3411:465:3,115,-46.5,0,0,-0.0158187 -38724,3411:465:4,115.5,-46.5,0,0,-0.0156633 -38725,3411:466:3,116,-46.5,0,0,-0.0154261 -38726,3411:466:4,116.5,-46.5,0,0,-0.015003 -38727,3411:467:3,117,-46.5,0,0,-0.0149962 -38728,3411:467:4,117.5,-46.5,0,0,-0.0152609 -38729,3411:468:3,118,-46.5,0,0,-0.0152746 -38730,3411:468:4,118.5,-46.5,0,0,-0.0150434 -38731,3411:469:3,119,-46.5,0,0,-0.0149158 -38732,3411:469:4,119.5,-46.5,0,0,-0.0153399 -38733,3412:360:3,120,-46.5,0,0,-0.0159399 -38734,3412:360:4,120.5,-46.5,0,0,-0.0155548 -38735,3412:361:3,121,-46.5,0,0,-0.0141631 -38736,3412:361:4,121.5,-46.5,0,0,-0.0139614 -38737,3412:362:3,122,-46.5,0,0,-0.0142235 -38738,3412:362:4,122.5,-46.5,0,0,-0.0145525 -38739,3412:363:3,123,-46.5,0,0,-0.0146539 -38740,3412:363:4,123.5,-46.5,0,0,-0.0144387 -38741,3412:364:3,124,-46.5,0,0,-0.0144322 -38742,3412:364:4,124.5,-46.5,0,0,-0.0152335 -38743,3412:465:3,125,-46.5,0,0,-0.0162032 -38744,3412:465:4,125.5,-46.5,0,0,-0.0163716 -38745,3412:466:3,126,-46.5,0,0,-0.0162506 -38746,3412:466:4,126.5,-46.5,0,0,-0.0161199 -38747,3412:467:3,127,-46.5,0,0,-0.0162726 -38748,3412:467:4,127.5,-46.5,0,0,-0.0170701 -38749,3412:468:3,128,-46.5,0,0,-0.0181874 -38750,3412:468:4,128.5,-46.5,0,0,-0.0188669 -38751,3412:469:3,129,-46.5,0,0,-0.0191149 -38752,3412:469:4,129.5,-46.5,0,0,-0.0192228 -38753,3413:360:3,130,-46.5,0,0,-0.0192315 -38754,3413:360:4,130.5,-46.5,0,0,-0.0189905 -38755,3413:361:3,131,-46.5,0,0,-0.018389 -38756,3413:361:4,131.5,-46.5,0,0,-0.017521 -38757,3413:362:3,132,-46.5,0,0,-0.0167396 -38758,3413:362:4,132.5,-46.5,0,0,-0.0164415 -38759,3413:363:3,133,-46.5,0,0,-0.0166871 -38760,3413:363:4,133.5,-46.5,0,0,-0.0169516 -38761,3413:364:3,134,-46.5,0,0,-0.0170816 -38762,3413:364:4,134.5,-46.5,0,0,-0.0169973 -38763,3413:465:3,135,-46.5,0,0,-0.0173525 -38764,3413:465:4,135.5,-46.5,0,0,-0.0180895 -38765,3413:466:3,136,-46.5,0,0,-0.0181425 -38766,3413:466:4,136.5,-46.5,0,0,-0.0181139 -38767,3413:467:3,137,-46.5,0,0,-0.0180082 -38768,3413:467:4,137.5,-46.5,0,0,-0.01712 -38769,3413:468:3,138,-46.5,0,0,-0.0161234 -38770,3413:468:4,138.5,-46.5,0,0,-0.0158543 -38771,3413:469:3,139,-46.5,0,0,-0.0167585 -38772,3413:469:4,139.5,-46.5,0,0,-0.0208897 -38773,3414:360:3,140,-46.5,0,0,-0.0228848 -38774,3414:360:4,140.5,-46.5,0,0,-0.0232496 -38775,3414:361:3,141,-46.5,0,0,-0.0228641 -38776,3414:361:4,141.5,-46.5,0,0,-0.0223382 -38777,3414:362:3,142,-46.5,0,0,-0.0213663 -38778,3414:362:4,142.5,-46.5,0,0,-0.0201678 -38779,3414:363:3,143,-46.5,0,0,-0.0191968 -38780,3414:363:4,143.5,-46.5,0,0,-0.0180002 -38781,3414:364:3,144,-46.5,0,0,-0.0163569 -38782,3414:364:4,144.5,-46.5,0,0,-0.0153606 -38783,3414:465:3,145,-46.5,0,0,-0.0153606 -38784,3414:465:4,145.5,-46.5,0,0,-0.0152506 -38785,3414:466:3,146,-46.5,0,0,-0.0147395 -38786,3414:466:4,146.5,-46.5,0,0,-0.0139302 -38787,3414:467:3,147,-46.5,0,0,-0.0128947 -38788,3414:467:4,147.5,-46.5,0,0,-0.0119397 -38789,3414:468:3,148,-46.5,0,0,-0.0112505 -38790,3414:468:4,148.5,-46.5,0,0,-0.0135638 -38791,3414:469:3,149,-46.5,0,0,-0.0192271 -38792,3414:469:4,149.5,-46.5,0,0,-0.0223886 -38793,3415:360:3,150,-46.5,0,0,-0.0241229 -38794,3415:360:4,150.5,-46.5,0,0,-0.0198969 -38795,3415:361:3,151,-46.5,0,0,-0.0177988 -38796,3415:361:4,151.5,-46.5,0,0,-0.0170816 -38797,3415:362:3,152,-46.5,0,0,-0.017458 -38798,3415:362:4,152.5,-46.5,0,0,-0.0186936 -38799,3415:363:3,153,-46.5,0,0,-0.0201904 -38800,3415:363:4,153.5,-46.5,0,0,-0.0216332 -38801,3415:364:3,154,-46.5,0,0,-0.022648 -38802,3415:364:4,154.5,-46.5,0,0,-0.023171 -38803,3415:465:3,155,-46.5,0,0,-0.0236314 -38804,3415:465:4,155.5,-46.5,0,0,-0.0248207 -38805,3415:466:3,156,-46.5,0,0,-0.0262614 -38806,3415:466:4,156.5,-46.5,0,0,-0.025632 -38807,3415:467:3,157,-46.5,0,0,-0.0246639 -38808,3415:467:4,157.5,-46.5,0,0,-0.0238839 -38809,3415:468:3,158,-46.5,0,0,-0.0245525 -38810,3415:468:4,158.5,-46.5,0,0,-0.0260302 -38811,3415:469:3,159,-46.5,0,0,-0.0223028 -38812,3415:469:4,159.5,-46.5,0,0,-0.0173876 -38813,3416:360:3,160,-46.5,0,0,-0.0190504 -38814,3416:360:4,160.5,-46.5,0,0,-0.0208568 -38815,3416:361:3,161,-46.5,0,0,-0.0220673 -38816,3416:361:4,161.5,-46.5,0,0,-0.0244306 -38817,3416:362:3,162,-46.5,0,0,-0.0265307 -38818,3416:362:4,162.5,-46.5,0,0,-0.0265367 -38819,3416:363:3,163,-46.5,0,0,-0.0248488 -38820,3416:363:4,163.5,-46.5,0,0,-0.0249052 -38821,3416:364:3,164,-46.5,0,0,-0.0245525 -38822,3416:364:4,164.5,-46.5,0,0,-0.0253835 -38823,3416:465:3,165,-46.5,0,0,-0.0278826 -38824,3416:465:4,165.5,-46.5,0,0,-0.030247 -38825,3416:466:3,166,-46.5,0,0,-0.0337839 -38826,3416:466:4,166.5,-46.5,0,0,-0.0367087 -38827,3416:467:3,167,-46.5,0,0,-0.0379402 -38828,3416:467:4,167.5,-46.5,0,0,-0.0376801 -38829,3416:468:3,168,-46.5,0,0,-0.0363655 -38830,3416:468:4,168.5,-46.5,0,0,-0.0343835 -38831,3416:469:3,169,-46.5,0,0,-0.0320636 -38832,3416:469:4,169.5,-46.5,0,0,-0.0301028 -38833,3417:360:3,170,-46.5,0,0,-0.030007 -38834,3417:360:4,170.5,-46.5,0,0,-0.0292255 -38835,3417:361:3,171,-46.5,0,0,-0.0266392 -38836,3417:361:4,171.5,-46.5,0,0,-0.0272568 -38837,3417:362:3,172,-46.5,0,0,-0.0279904 -38838,3417:362:4,172.5,-46.5,0,0,-0.028336 -38839,3417:363:3,173,-46.5,0,0,-0.0284587 -38840,3417:363:4,173.5,-46.5,0,0,-0.028882 -38841,3417:364:3,174,-46.5,0,0,-0.0293056 -38842,3417:364:4,174.5,-46.5,0,0,-0.0301784 -38843,3417:465:3,175,-46.5,0,0,-0.0325129 -38844,3417:465:4,175.5,-46.5,0,0,-0.034024 -38845,3417:466:3,176,-46.5,0,0,-0.0345489 -38846,3417:466:4,176.5,-46.5,0,0,-0.0350823 -38847,3417:467:3,177,-46.5,0,0,-0.0361744 -38848,3417:467:4,177.5,-46.5,0,0,-0.0368012 -38849,3417:468:3,178,-46.5,0,0,-0.0363738 -38850,3417:468:4,178.5,-46.5,0,0,-0.035026 -38851,3417:469:3,179,-46.5,0,0,-0.0337761 -38852,3417:469:4,179.5,-46.5,0,0,-0.0331799 -38853,3418:360:3,180,-46.5,0,0,-0.0333242 -38854,5418:360:1,-180,-46,0,0,-0.0396677 -38855,5417:469:2,-179.5,-46,0,0,-0.039224 -38856,5417:469:1,-179,-46,0,0,-0.0388118 -38857,5417:468:2,-178.5,-46,0,0,-0.0382549 -38858,5417:468:1,-178,-46,0,0,-0.037663 -38859,5417:467:2,-177.5,-46,0,0,-0.0375593 -38860,5417:467:1,-177,-46,0,0,-0.037379 -38861,5417:466:2,-176.5,-46,0,0,-0.0366917 -38862,5417:466:1,-176,-46,0,0,-0.0363822 -38863,5417:465:2,-175.5,-46,0,0,-0.0361827 -38864,5417:465:1,-175,-46,0,0,-0.0361827 -38865,5417:364:2,-174.5,-46,0,0,-0.0367087 -38866,5417:364:1,-174,-46,0,0,-0.037379 -38867,5417:363:2,-173.5,-46,0,0,-0.0366077 -38868,5417:363:1,-173,-46,0,0,-0.0350742 -38869,5417:362:2,-172.5,-46,0,0,-0.032976 -38870,5417:362:1,-172,-46,0,0,-0.0313196 -38871,5417:361:2,-171.5,-46,0,0,-0.030705 -38872,5417:361:1,-171,-46,0,0,-0.031513 -38873,5417:360:2,-170.5,-46,0,0,-0.0323796 -38874,5417:360:1,-170,-46,0,0,-0.0326838 -38875,5416:469:2,-169.5,-46,0,0,-0.0321003 -38876,5416:469:1,-169,-46,0,0,-0.0310426 -38877,5416:468:2,-168.5,-46,0,0,-0.0301989 -38878,5416:468:1,-168,-46,0,0,-0.030007 -38879,5416:467:2,-167.5,-46,0,0,-0.0302403 -38880,5416:467:1,-167,-46,0,0,-0.03074 -38881,5416:466:2,-166.5,-46,0,0,-0.0281244 -38882,5416:466:1,-166,-46,0,0,-0.0282973 -38883,5416:465:2,-165.5,-46,0,0,-0.0299458 -38884,5416:465:1,-165,-46,0,0,-0.0309861 -38885,5416:364:2,-164.5,-46,0,0,-0.0315992 -38886,5416:364:1,-164,-46,0,0,-0.0321588 -38887,5416:363:2,-163.5,-46,0,0,-0.0325648 -38888,5416:363:1,-163,-46,0,0,-0.0326317 -38889,5416:362:2,-162.5,-46,0,0,-0.0321882 -38890,5416:362:1,-162,-46,0,0,-0.0309861 -38891,5416:361:2,-161.5,-46,0,0,-0.0293056 -38892,5416:361:1,-161,-46,0,0,-0.0278826 -38893,5416:360:2,-160.5,-46,0,0,-0.0271703 -38894,5416:360:1,-160,-46,0,0,-0.0273126 -38895,5415:469:2,-159.5,-46,0,0,-0.0287577 -38896,5415:469:1,-159,-46,0,0,-0.0313268 -38897,5415:468:2,-158.5,-46,0,0,-0.0330364 -38898,5415:468:1,-158,-46,0,0,-0.0342815 -38899,5415:467:2,-157.5,-46,0,0,-0.0361166 -38900,5415:467:1,-157,-46,0,0,-0.0366751 -38901,5415:466:2,-156.5,-46,0,0,-0.035259 -38902,5415:466:1,-156,-46,0,0,-0.032841 -38903,5415:465:2,-155.5,-46,0,0,-0.030761 -38904,5415:465:1,-155,-46,0,0,-0.0296271 -38905,5415:364:2,-154.5,-46,0,0,-0.0300003 -38906,5415:364:1,-154,-46,0,0,-0.0310283 -38907,5415:363:2,-153.5,-46,0,0,-0.0315058 -38908,5415:363:1,-153,-46,0,0,-0.0305238 -38909,5415:362:2,-152.5,-46,0,0,-0.0279968 -38910,5415:362:1,-152,-46,0,0,-0.0255568 -38911,5415:361:2,-151.5,-46,0,0,-0.024832 -38912,5415:361:1,-151,-46,0,0,-0.030055 -38913,5415:360:2,-150.5,-46,0,0,-0.0387406 -38914,5415:360:1,-150,-46,0,0,-0.0389635 -38915,5414:469:2,-149.5,-46,0,0,-0.0368686 -38916,5414:469:1,-149,-46,0,0,-0.0354776 -38917,5414:468:2,-148.5,-46,0,0,-0.0339541 -38918,5414:468:1,-148,-46,0,0,-0.0304682 -38919,5414:467:2,-147.5,-46,0,0,-0.0243532 -38920,5414:467:1,-147,-46,0,0,-0.0192965 -38921,5414:466:2,-146.5,-46,0,0,-0.0195063 -38922,5414:466:1,-146,-46,0,0,-0.0241885 -38923,5414:465:2,-145.5,-46,0,0,-0.0314698 -38924,5414:465:1,-145,-46,0,0,-0.035429 -38925,5414:364:2,-144.5,-46,0,0,-0.0353804 -38926,5414:364:1,-144,-46,0,0,-0.0367338 -38927,5414:363:2,-143.5,-46,0,0,-0.040899 -38928,5414:363:1,-143,-46,0,0,-0.0457474 -38929,5414:362:2,-142.5,-46,0,0,-0.0475485 -38930,5414:362:1,-142,-46,0,0,-0.0455469 -38931,5414:361:2,-141.5,-46,0,0,-0.0408144 -38932,5414:361:1,-141,-46,0,0,-0.0348425 -38933,5414:360:2,-140.5,-46,0,0,-0.0322249 -38934,5414:360:1,-140,-46,0,0,-0.0357793 -38935,5413:469:2,-139.5,-46,0,0,-0.0374905 -38936,5413:469:1,-139,-46,0,0,-0.0384132 -38937,5413:468:2,-138.5,-46,0,0,-0.0370975 -38938,5413:468:1,-138,-46,0,0,-0.0357466 -38939,5413:467:2,-137.5,-46,0,0,-0.0345568 -38940,5413:467:1,-137,-46,0,0,-0.0324092 -38941,5413:466:2,-136.5,-46,0,0,-0.030489 -38942,5413:466:1,-136,-46,0,0,-0.0290533 -38943,5413:465:2,-135.5,-46,0,0,-0.0282781 -38944,5413:465:1,-135,-46,0,0,-0.0292255 -38945,5413:364:2,-134.5,-46,0,0,-0.0310497 -38946,5413:364:1,-134,-46,0,0,-0.0318378 -38947,5413:363:2,-133.5,-46,0,0,-0.0319396 -38948,5413:363:1,-133,-46,0,0,-0.0324536 -38949,5413:362:2,-132.5,-46,0,0,-0.032328 -38950,5413:362:1,-132,-46,0,0,-0.0334309 -38951,5413:361:2,-131.5,-46,0,0,-0.0370975 -38952,5413:361:1,-131,-46,0,0,-0.0427667 -38953,5413:360:2,-130.5,-46,0,0,-0.0499656 -38954,5413:360:1,-130,-46,0,0,-0.0542888 -38955,5412:469:2,-129.5,-46,0,0,-0.0536857 -38956,5412:469:1,-129,-46,0,0,-0.0510322 -38957,5412:468:2,-128.5,-46,0,0,-0.0495731 -38958,5412:468:1,-128,-46,0,0,-0.0488093 -38959,5412:467:2,-127.5,-46,0,0,-0.049161 -38960,5412:467:1,-127,-46,0,0,-0.0489113 -38961,5412:466:2,-126.5,-46,0,0,-0.047991 -38962,5412:466:1,-126,-46,0,0,-0.0470123 -38963,5412:465:2,-125.5,-46,0,0,-0.0455996 -38964,5412:465:1,-125,-46,0,0,-0.0447751 -38965,5412:364:2,-124.5,-46,0,0,-0.0443433 -38966,5412:364:1,-124,-46,0,0,-0.0435729 -38967,5412:363:2,-123.5,-46,0,0,-0.0418125 -38968,5412:363:1,-123,-46,0,0,-0.0409179 -38969,5412:362:2,-122.5,-46,0,0,-0.0408333 -38970,5412:362:1,-122,-46,0,0,-0.0409179 -38971,5412:361:2,-121.5,-46,0,0,-0.0411065 -38972,5412:361:1,-121,-46,0,0,-0.0418028 -38973,5412:360:2,-120.5,-46,0,0,-0.0417837 -38974,5412:360:1,-120,-46,0,0,-0.0405993 -38975,5411:469:2,-119.5,-46,0,0,-0.0395403 -38976,5411:469:1,-119,-46,0,0,-0.037568 -38977,5411:468:2,-118.5,-46,0,0,-0.0361663 -38978,5411:468:1,-118,-46,0,0,-0.0356566 -38979,5411:467:2,-117.5,-46,0,0,-0.0360009 -38980,5411:467:1,-117,-46,0,0,-0.0373361 -38981,5411:466:2,-116.5,-46,0,0,-0.038106 -38982,5411:466:1,-116,-46,0,0,-0.0370296 -38983,5411:465:2,-115.5,-46,0,0,-0.0351787 -38984,5411:465:1,-115,-46,0,0,-0.0338534 -38985,5411:364:2,-114.5,-46,0,0,-0.0332405 -38986,5411:364:1,-114,-46,0,0,-0.0332785 -38987,5411:363:2,-113.5,-46,0,0,-0.0338688 -38988,5411:363:1,-113,-46,0,0,-0.03505 -38989,5411:362:2,-112.5,-46,0,0,-0.0360422 -38990,5411:362:1,-112,-46,0,0,-0.0361082 -38991,5411:361:2,-111.5,-46,0,0,-0.0352349 -38992,5411:361:1,-111,-46,0,0,-0.0337761 -38993,5411:360:2,-110.5,-46,0,0,-0.032071 -38994,5411:360:1,-110,-46,0,0,-0.0316208 -38995,5410:469:2,-109.5,-46,0,0,-0.0317003 -38996,5410:469:1,-109,-46,0,0,-0.0313554 -38997,5410:468:2,-108.5,-46,0,0,-0.0306492 -38998,5410:468:1,-108,-46,0,0,-0.030144 -38999,5410:467:2,-107.5,-46,0,0,-0.0297623 -39000,5410:467:1,-107,-46,0,0,-0.0291328 -39001,5410:466:2,-106.5,-46,0,0,-0.0285623 -39002,5410:466:1,-106,-46,0,0,-0.028336 -39003,5410:465:2,-105.5,-46,0,0,-0.0282846 -39004,5410:465:1,-105,-46,0,0,-0.0282589 -39005,5410:364:2,-104.5,-46,0,0,-0.028336 -39006,5410:364:1,-104,-46,0,0,-0.0285752 -39007,5410:363:2,-103.5,-46,0,0,-0.0288232 -39008,5410:363:1,-103,-46,0,0,-0.0289215 -39009,5410:362:2,-102.5,-46,0,0,-0.0290138 -39010,5410:362:1,-102,-46,0,0,-0.0291725 -39011,5410:361:2,-101.5,-46,0,0,-0.0292057 -39012,5410:361:1,-101,-46,0,0,-0.0289545 -39013,5410:360:2,-100.5,-46,0,0,-0.0286208 -39014,5410:360:1,-100,-46,0,0,-0.0283295 -39015,5409:469:2,-99.5,-46,0,0,-0.0278004 -39016,5409:469:1,-99,-46,0,0,-0.0272568 -39017,5409:468:2,-98.5,-46,0,0,-0.0271765 -39018,5409:468:1,-98,-46,0,0,-0.0274182 -39019,5409:467:2,-97.5,-46,0,0,-0.0276872 -39020,5409:467:1,-97,-46,0,0,-0.027832 -39021,5409:466:2,-96.5,-46,0,0,-0.0275742 -39022,5409:466:1,-96,-46,0,0,-0.026986 -39023,5409:465:2,-95.5,-46,0,0,-0.026724 -39024,5409:465:1,-95,-46,0,0,-0.0270903 -39025,5409:364:2,-94.5,-46,0,0,-0.0279207 -39026,5409:364:1,-94,-46,0,0,-0.0288034 -39027,5409:363:2,-93.5,-46,0,0,-0.0287184 -39028,5409:363:1,-93,-46,0,0,-0.028246 -39029,5409:362:2,-92.5,-46,0,0,-0.0278195 -39030,5409:362:1,-92,-46,0,0,-0.0274305 -39031,5409:361:2,-91.5,-46,0,0,-0.0272754 -39032,5409:361:1,-91,-46,0,0,-0.027468 -39033,5409:360:2,-90.5,-46,0,0,-0.0277942 -39034,5409:360:1,-90,-46,0,0,-0.0278764 -39035,5408:469:2,-89.5,-46,0,0,-0.0276682 -39036,5408:469:1,-89,-46,0,0,-0.0275492 -39037,5408:468:2,-88.5,-46,0,0,-0.0277627 -39038,5408:468:1,-88,-46,0,0,-0.0280606 -39039,5408:467:2,-87.5,-46,0,0,-0.0281562 -39040,5408:467:1,-87,-46,0,0,-0.0279968 -39041,5408:466:2,-86.5,-46,0,0,-0.02775 -39042,5408:466:1,-86,-46,0,0,-0.0276431 -39043,5408:465:2,-85.5,-46,0,0,-0.027706 -39044,5408:465:1,-85,-46,0,0,-0.0277752 -39045,5408:364:2,-84.5,-46,0,0,-0.0276872 -39046,5408:364:1,-84,-46,0,0,-0.0274743 -39047,5408:363:2,-83.5,-46,0,0,-0.0275242 -39048,5408:363:1,-83,-46,0,0,-0.0279778 -39049,5408:362:2,-82.5,-46,0,0,-0.028394 -39050,5408:362:1,-82,-46,0,0,-0.0282524 -39051,5408:361:2,-81.5,-46,0,0,-0.0276808 -39052,5408:361:1,-81,-46,0,0,-0.027195 -39053,5408:360:2,-80.5,-46,0,0,-0.0271641 -39054,5408:360:1,-80,-46,0,0,-0.0274804 -39055,5407:469:2,-79.5,-46,0,0,-0.0280606 -39056,5407:469:1,-79,-46,0,0,-0.0288166 -39057,5407:468:2,-78.5,-46,0,0,-0.0296608 -39058,5407:468:1,-78,-46,0,0,-0.0314198 -39059,5407:467:2,-77.5,-46,0,0,-0.0303367 -39060,5407:467:1,-77,-46,0,0,-0.0287445 -39061,5407:466:2,-76.5,-46,0,0,-0.0283875 -39062,5407:466:1,-76,-46,0,0,-0.0288756 -39063,5407:465:2,-75.5,-46,0,0,-0.0303643 -39064,5407:465:1,-75,-46,0,0,-0.0322689 -39065,5407:364:2,-74.5,-46,0,0,-0.0324536 -39066,5407:364:1,-74,-46,0,0,-0.0329009 -39067,5407:363:2,-73.5,-46,0,0,-0.0322689 -39068,5407:363:1,-73,-46,0,0,-0.0320126 -39069,5407:362:2,-72.5,-46,0,0,-0.0333928 -39070,5407:362:1,-72,-46,0,0,-0.0339463 -39071,5407:361:2,-71.5,-46,0,0,-0.036158 -39072,5407:361:1,-71,-46,0,0,-0.0375422 -39073,5407:360:2,-70.5,-46,0,0,-0.0388474 -39074,5407:360:1,-70,-46,0,0,-0.0428161 -39075,5406:468:1,-68,-46,0,0,-0.0457367 -39076,5406:467:2,-67.5,-46,0,0,-0.0462147 -39077,5406:467:1,-67,-46,0,0,-0.0456626 -39078,5406:466:2,-66.5,-46,0,0,-0.0394769 -39079,5406:466:1,-66,-46,0,0,-0.032203 -39080,5406:465:2,-65.5,-46,0,0,-0.0285948 -39081,5406:465:1,-65,-46,0,0,-0.026736 -39082,5406:364:2,-64.5,-46,0,0,-0.024759 -39083,5406:364:1,-64,-46,0,0,-0.0237385 -39084,5406:363:2,-63.5,-46,0,0,-0.0228073 -39085,5406:363:1,-63,-46,0,0,-0.0219086 -39086,5406:362:2,-62.5,-46,0,0,-0.0213183 -39087,5406:362:1,-62,-46,0,0,-0.0212174 -39088,5406:361:2,-61.5,-46,0,0,-0.0214582 -39089,5406:361:1,-61,-46,0,0,-0.0218147 -39090,5406:360:2,-60.5,-46,0,0,-0.0222275 -39091,5406:360:1,-60,-46,0,0,-0.0225409 -39092,5405:469:2,-59.5,-46,0,0,-0.0226072 -39093,5405:469:1,-59,-46,0,0,-0.0225867 -39094,5405:468:2,-58.5,-46,0,0,-0.0228073 -39095,5405:468:1,-58,-46,0,0,-0.0231501 -39096,5405:467:2,-57.5,-46,0,0,-0.02353 -39097,5405:467:1,-57,-46,0,0,-0.0237545 -39098,5405:466:2,-56.5,-46,0,0,-0.0236206 -39099,5405:466:1,-56,-46,0,0,-0.0232182 -39100,5405:465:2,-55.5,-46,0,0,-0.0225562 -39101,5405:465:1,-55,-46,0,0,-0.0215894 -39102,5405:364:2,-54.5,-46,0,0,-0.0198521 -39103,5405:364:1,-54,-46,0,0,-0.0181793 -39104,5405:363:2,-53.5,-46,0,0,-0.0190204 -39105,5405:363:1,-53,-46,0,0,-0.0192662 -39106,5405:362:2,-52.5,-46,0,0,-0.0166833 -39107,5405:362:1,-52,-46,0,0,-0.014387 -39108,5405:361:2,-51.5,-46,0,0,-0.0151518 -39109,5405:361:1,-51,-46,0,0,-0.0151518 -39110,5405:360:2,-50.5,-46,0,0,-0.0150232 -39111,5405:360:1,-50,-46,0,0,-0.0150941 -39112,5404:469:2,-49.5,-46,0,0,-0.0147892 -39113,5404:469:1,-49,-46,0,0,-0.0140713 -39114,5404:468:2,-48.5,-46,0,0,-0.0137936 -39115,5404:468:1,-48,-46,0,0,-0.013326 -39116,5404:467:2,-47.5,-46,0,0,-0.013637 -39117,5404:467:1,-47,-46,0,0,-0.0155721 -39118,5404:466:2,-46.5,-46,0,0,-0.0153296 -39119,5404:466:1,-46,-46,0,0,-0.0149996 -39120,5404:465:2,-45.5,-46,0,0,-0.0145166 -39121,5404:465:1,-45,-46,0,0,-0.0139521 -39122,5404:364:2,-44.5,-46,0,0,-0.0137412 -39123,5404:364:1,-44,-46,0,0,-0.0137381 -39124,5404:363:2,-43.5,-46,0,0,-0.0134911 -39125,5404:363:1,-43,-46,0,0,-0.0134609 -39126,5404:362:2,-42.5,-46,0,0,-0.0134821 -39127,5404:362:1,-42,-46,0,0,-0.0132309 -39128,5404:361:2,-41.5,-46,0,0,-0.0125138 -39129,5404:361:1,-41,-46,0,0,-0.0118334 -39130,5404:360:2,-40.5,-46,0,0,-0.0113161 -39131,5404:360:1,-40,-46,0,0,-0.0105214 -39132,5403:469:2,-39.5,-46,0,0,-0.00962076 -39133,5403:469:1,-39,-46,0,0,-0.00948227 -39134,5403:468:2,-38.5,-46,0,0,-0.0094992 -39135,5403:468:1,-38,-46,0,0,-0.00994375 -39136,5403:467:2,-37.5,-46,0,0,-0.0106538 -39137,5403:467:1,-37,-46,0,0,-0.0114228 -39138,5403:466:2,-36.5,-46,0,0,-0.0120066 -39139,5403:466:1,-36,-46,0,0,-0.0117307 -39140,5403:465:2,-35.5,-46,0,0,-0.0114971 -39141,5403:465:1,-35,-46,0,0,-0.0114253 -39142,5403:364:2,-34.5,-46,0,0,-0.0113009 -39143,5403:364:1,-34,-46,0,0,-0.0108992 -39144,5403:363:2,-33.5,-46,0,0,-0.0101477 -39145,5403:363:1,-33,-46,0,0,-0.00947802 -39146,5403:362:2,-32.5,-46,0,0,-0.00926279 -39147,5403:362:1,-32,-46,0,0,-0.00914175 -39148,5403:361:2,-31.5,-46,0,0,-0.00899418 -39149,5403:361:1,-31,-46,0,0,-0.00881752 -39150,5403:360:2,-30.5,-46,0,0,-0.00866362 -39151,5403:360:1,-30,-46,0,0,-0.00856001 -39152,5402:469:2,-29.5,-46,0,0,-0.00843693 -39153,5402:469:1,-29,-46,0,0,-0.00809085 -39154,5402:468:2,-28.5,-46,0,0,-0.0079056 -39155,5402:468:1,-28,-46,0,0,-0.00788976 -39156,5402:467:2,-27.5,-46,0,0,-0.00792502 -39157,5402:467:1,-27,-46,0,0,-0.00809266 -39158,5402:466:2,-26.5,-46,0,0,-0.00841624 -39159,5402:466:1,-26,-46,0,0,-0.00972864 -39160,5402:465:2,-25.5,-46,0,0,-0.0106872 -39161,5402:465:1,-25,-46,0,0,-0.0109017 -39162,5402:364:2,-24.5,-46,0,0,-0.0109995 -39163,5402:364:1,-24,-46,0,0,-0.0107542 -39164,5402:363:2,-23.5,-46,0,0,-0.010559 -39165,5402:363:1,-23,-46,0,0,-0.0105378 -39166,5402:362:2,-22.5,-46,0,0,-0.010349 -39167,5402:362:1,-22,-46,0,0,-0.00999937 -39168,5402:361:2,-21.5,-46,0,0,-0.00992819 -39169,5402:361:1,-21,-46,0,0,-0.0100912 -39170,5402:360:2,-20.5,-46,0,0,-0.010386 -39171,5402:360:1,-20,-46,0,0,-0.010723 -39172,5401:469:2,-19.5,-46,0,0,-0.0109921 -39173,5401:469:1,-19,-46,0,0,-0.0112379 -39174,5401:468:2,-18.5,-46,0,0,-0.0115176 -39175,5401:468:1,-18,-46,0,0,-0.0116574 -39176,5401:467:2,-17.5,-46,0,0,-0.0115485 -39177,5401:467:1,-17,-46,0,0,-0.0115641 -39178,5401:466:2,-16.5,-46,0,0,-0.0118784 -39179,5401:466:1,-16,-46,0,0,-0.0120523 -39180,5401:465:2,-15.5,-46,0,0,-0.0117569 -39181,5401:465:1,-15,-46,0,0,-0.0110291 -39182,5401:364:2,-14.5,-46,0,0,-0.0106324 -39183,5401:364:1,-14,-46,0,0,-0.0110291 -39184,5401:363:2,-13.5,-46,0,0,-0.0114432 -39185,5401:363:1,-13,-46,0,0,-0.0116705 -39186,5401:362:2,-12.5,-46,0,0,-0.0116211 -39187,5401:362:1,-12,-46,0,0,-0.0114611 -39188,5401:361:2,-11.5,-46,0,0,-0.0112004 -39189,5401:361:1,-11,-46,0,0,-0.0109285 -39190,5401:360:2,-10.5,-46,0,0,-0.0110611 -39191,5401:360:1,-10,-46,0,0,-0.0118625 -39192,5400:469:2,-9.5,-46,0,0,-0.0125166 -39193,5400:469:1,-9,-46,0,0,-0.0125924 -39194,5400:468:2,-8.5,-46,0,0,-0.0124524 -39195,5400:468:1,-8,-46,0,0,-0.0116419 -39196,5400:467:2,-7.5,-46,0,0,-0.010723 -39197,5400:467:1,-7,-46,0,0,-0.00974601 -39198,5400:466:2,-6.5,-46,0,0,-0.00933125 -39199,5400:466:1,-6,-46,0,0,-0.00984002 -39200,5400:465:2,-5.5,-46,0,0,-0.0104792 -39201,5400:465:1,-5,-46,0,0,-0.0106372 -39202,5400:364:2,-4.5,-46,0,0,-0.0102937 -39203,5400:364:1,-4,-46,0,0,-0.0099238 -39204,5400:363:2,-3.5,-46,0,0,-0.0095865 -39205,5400:363:1,-3,-46,0,0,-0.00931875 -39206,5400:362:2,-2.5,-46,0,0,-0.00914785 -39207,5400:362:1,-2,-46,0,0,-0.00891432 -39208,5400:361:2,-1.5,-46,0,0,-0.00879004 -39209,5400:361:1,-1,-46,0,0,-0.00874311 -39210,5400:360:2,-0.5,-46,0,0,-0.00860396 -39211,3400:360:2,0,-46,0,0,-0.00826939 -39212,3400:360:2,0.5,-46,0,0,-0.00773323 -39213,3400:361:1,1,-46,0,0,-0.007344 -39214,3400:361:2,1.5,-46,0,0,-0.00723047 -39215,3400:362:1,2,-46,0,0,-0.00727732 -39216,3400:362:2,2.5,-46,0,0,-0.007521 -39217,3400:363:1,3,-46,0,0,-0.00788976 -39218,3400:363:2,3.5,-46,0,0,-0.00795329 -39219,3400:364:1,4,-46,0,0,-0.00779199 -39220,3400:364:2,4.5,-46,0,0,-0.00756975 -39221,3400:465:1,5,-46,0,0,-0.00740144 -39222,3400:465:2,5.5,-46,0,0,-0.00731304 -39223,3400:466:1,6,-46,0,0,-0.00724015 -39224,3400:466:2,6.5,-46,0,0,-0.0071712 -39225,3400:467:1,7,-46,0,0,-0.00713777 -39226,3400:467:2,7.5,-46,0,0,-0.00711875 -39227,3400:468:1,8,-46,0,0,-0.00706664 -39228,3400:468:2,8.5,-46,0,0,-0.00697913 -39229,3400:469:1,9,-46,0,0,-0.0069281 -39230,3400:469:2,9.5,-46,0,0,-0.00692039 -39231,3401:360:1,10,-46,0,0,-0.00695435 -39232,3401:360:2,10.5,-46,0,0,-0.00697757 -39233,3401:361:1,11,-46,0,0,-0.00707451 -39234,3401:361:2,11.5,-46,0,0,-0.00697757 -39235,3401:362:1,12,-46,0,0,-0.00690654 -39236,3401:362:2,12.5,-46,0,0,-0.00686671 -39237,3401:363:1,13,-46,0,0,-0.00683471 -39238,3401:363:2,13.5,-46,0,0,-0.00678926 -39239,3401:364:1,14,-46,0,0,-0.00674859 -39240,3401:364:2,14.5,-46,0,0,-0.00672312 -39241,3401:465:1,15,-46,0,0,-0.00672463 -39242,3401:465:2,15.5,-46,0,0,-0.00674108 -39243,3401:466:1,16,-46,0,0,-0.00679682 -39244,3401:466:2,16.5,-46,0,0,-0.00693116 -39245,3401:467:1,17,-46,0,0,-0.00709973 -39246,3401:467:2,17.5,-46,0,0,-0.0072016 -39247,3401:468:1,18,-46,0,0,-0.00732442 -39248,3401:468:2,18.5,-46,0,0,-0.00742289 -39249,3401:469:1,19,-46,0,0,-0.00744774 -39250,3401:469:2,19.5,-46,0,0,-0.00748593 -39251,3402:360:1,20,-46,0,0,-0.00749763 -39252,3402:360:2,20.5,-46,0,0,-0.00750762 -39253,3402:361:1,21,-46,0,0,-0.00747262 -39254,3402:361:2,21.5,-46,0,0,-0.00735218 -39255,3402:362:1,22,-46,0,0,-0.00702745 -39256,3402:362:2,22.5,-46,0,0,-0.00682257 -39257,3402:363:1,23,-46,0,0,-0.00691579 -39258,3402:363:2,23.5,-46,0,0,-0.006905 -39259,3402:364:1,24,-46,0,0,-0.00701805 -39260,3402:364:2,24.5,-46,0,0,-0.00765955 -39261,3402:465:1,25,-46,0,0,-0.00778681 -39262,3402:465:2,25.5,-46,0,0,-0.00786348 -39263,3402:466:1,26,-46,0,0,-0.00814149 -39264,3402:466:2,26.5,-46,0,0,-0.00822717 -39265,3402:467:1,27,-46,0,0,-0.00811795 -39266,3402:467:2,27.5,-46,0,0,-0.00791619 -39267,3402:468:1,28,-46,0,0,-0.00780593 -39268,3402:468:2,28.5,-46,0,0,-0.00755793 -39269,3402:469:1,29,-46,0,0,-0.0072016 -39270,3402:469:2,29.5,-46,0,0,-0.00721119 -39271,3403:360:1,30,-46,0,0,-0.00748593 -39272,3403:360:2,30.5,-46,0,0,-0.00780938 -39273,3403:361:1,31,-46,0,0,-0.0080066 -39274,3403:361:2,31.5,-46,0,0,-0.0080084 -39275,3403:362:1,32,-46,0,0,-0.00805847 -39276,3403:362:2,32.5,-46,0,0,-0.00860016 -39277,3403:363:1,33,-46,0,0,-0.00856764 -39278,3403:363:2,33.5,-46,0,0,-0.00850108 -39279,3403:364:1,34,-46,0,0,-0.0086907 -39280,3403:364:2,34.5,-46,0,0,-0.00908081 -39281,3403:465:1,35,-46,0,0,-0.00914175 -39282,3403:465:2,35.5,-46,0,0,-0.00821253 -39283,3403:466:1,36,-46,0,0,-0.00788976 -39284,3403:466:2,36.5,-46,0,0,-0.00812154 -39285,3403:467:1,37,-46,0,0,-0.00876848 -39286,3403:467:2,37.5,-46,0,0,-0.00953106 -39287,3403:468:1,38,-46,0,0,-0.00985759 -39288,3403:468:2,38.5,-46,0,0,-0.00970701 -39289,3403:469:1,39,-46,0,0,-0.00961434 -39290,3403:469:2,39.5,-46,0,0,-0.00961644 -39291,3404:360:1,40,-46,0,0,-0.0097417 -39292,3404:360:2,40.5,-46,0,0,-0.0097482 -39293,3404:361:1,41,-46,0,0,-0.00946751 -39294,3404:361:2,41.5,-46,0,0,-0.00918259 -39295,3404:362:1,42,-46,0,0,-0.00914175 -39296,3404:362:2,42.5,-46,0,0,-0.00922367 -39297,3404:363:1,43,-46,0,0,-0.00928141 -39298,3404:363:2,43.5,-46,0,0,-0.00935624 -39299,3404:364:1,44,-46,0,0,-0.00935 -39300,3404:364:2,44.5,-46,0,0,-0.00935204 -39301,3404:465:1,45,-46,0,0,-0.00937715 -39302,3404:465:2,45.5,-46,0,0,-0.00936669 -39303,3404:466:1,46,-46,0,0,-0.00918878 -39304,3404:466:2,46.5,-46,0,0,-0.00894019 -39305,3404:467:1,47,-46,0,0,-0.00896217 -39306,3404:467:2,47.5,-46,0,0,-0.00906668 -39307,3404:468:1,48,-46,0,0,-0.00896413 -39308,3404:468:2,48.5,-46,0,0,-0.00886878 -39309,3404:469:1,49,-46,0,0,-0.0089962 -39310,3404:469:2,49.5,-46,0,0,-0.00917241 -39311,3405:360:1,50,-46,0,0,-0.00927522 -39312,3405:360:2,50.5,-46,0,0,-0.00935834 -39313,3405:361:1,51,-46,0,0,-0.00945694 -39314,3405:361:2,51.5,-46,0,0,-0.00950767 -39315,3405:362:1,52,-46,0,0,-0.0094886 -39316,3405:362:2,52.5,-46,0,0,-0.00952043 -39317,3405:363:1,53,-46,0,0,-0.00996816 -39318,3405:363:2,53.5,-46,0,0,-0.0105732 -39319,3405:364:1,54,-46,0,0,-0.0107254 -39320,3405:364:2,54.5,-46,0,0,-0.0104162 -39321,3405:465:1,55,-46,0,0,-0.00973083 -39322,3405:465:2,55.5,-46,0,0,-0.00913771 -39323,3405:466:1,56,-46,0,0,-0.00979837 -39324,3405:466:2,56.5,-46,0,0,-0.0102983 -39325,3405:467:1,57,-46,0,0,-0.0105003 -39326,3405:467:2,57.5,-46,0,0,-0.0105945 -39327,3405:468:1,58,-46,0,0,-0.0103675 -39328,3405:468:2,58.5,-46,0,0,-0.00986639 -39329,3405:469:1,59,-46,0,0,-0.0095822 -39330,3405:469:2,59.5,-46,0,0,-0.00956297 -39331,3406:360:1,60,-46,0,0,-0.00963793 -39332,3406:360:2,60.5,-46,0,0,-0.00973951 -39333,3406:361:1,61,-46,0,0,-0.00984659 -39334,3406:361:2,61.5,-46,0,0,-0.00993489 -39335,3406:362:1,62,-46,0,0,-0.0100508 -39336,3406:362:2,62.5,-46,0,0,-0.0104746 -39337,3406:363:1,63,-46,0,0,-0.0109946 -39338,3406:363:2,63.5,-46,0,0,-0.0112832 -39339,3406:364:1,64,-46,0,0,-0.0115305 -39340,3406:364:2,64.5,-46,0,0,-0.0116914 -39341,3406:465:1,65,-46,0,0,-0.0115563 -39342,3406:465:2,65.5,-46,0,0,-0.011349 -39343,3406:466:1,66,-46,0,0,-0.0112405 -39344,3406:466:2,66.5,-46,0,0,-0.0112029 -39345,3406:467:1,67,-46,0,0,-0.0112606 -39346,3406:467:2,67.5,-46,0,0,-0.0114253 -39347,3406:468:1,68,-46,0,0,-0.0115641 -39348,3406:468:2,68.5,-46,0,0,-0.0115848 -39349,3406:469:1,69,-46,0,0,-0.0115176 -39350,3406:469:2,69.5,-46,0,0,-0.0113947 -39351,3407:360:1,70,-46,0,0,-0.0112053 -39352,3407:360:2,70.5,-46,0,0,-0.0109603 -39353,3407:361:1,71,-46,0,0,-0.0107494 -39354,3407:361:2,71.5,-46,0,0,-0.0106063 -39355,3407:362:1,72,-46,0,0,-0.0105614 -39356,3407:362:2,72.5,-46,0,0,-0.0105827 -39357,3407:363:2,73.5,-46,0,0,-0.0105945 -39358,3407:364:1,74,-46,0,0,-0.0105097 -39359,3407:364:2,74.5,-46,0,0,-0.0103606 -39360,3407:465:1,75,-46,0,0,-0.0102914 -39361,3407:465:2,75.5,-46,0,0,-0.0103029 -39362,3407:466:1,76,-46,0,0,-0.0102662 -39363,3407:466:2,76.5,-46,0,0,-0.0101908 -39364,3407:467:1,77,-46,0,0,-0.010089 -39365,3407:467:2,77.5,-46,0,0,-0.00980712 -39366,3407:468:1,78,-46,0,0,-0.00932496 -39367,3407:468:2,78.5,-46,0,0,-0.00823081 -39368,3407:469:1,79,-46,0,0,-0.00763913 -39369,3407:469:2,79.5,-46,0,0,-0.00775396 -39370,3408:360:1,80,-46,0,0,-0.00871782 -39371,3408:360:2,80.5,-46,0,0,-0.00907878 -39372,3408:361:1,81,-46,0,0,-0.0093458 -39373,3408:361:2,81.5,-46,0,0,-0.0104325 -39374,3408:362:1,82,-46,0,0,-0.0111754 -39375,3408:362:2,82.5,-46,0,0,-0.0111779 -39376,3408:363:1,83,-46,0,0,-0.010519 -39377,3408:363:2,83.5,-46,0,0,-0.0101093 -39378,3408:364:1,84,-46,0,0,-0.0101545 -39379,3408:364:2,84.5,-46,0,0,-0.0119477 -39380,3408:465:1,85,-46,0,0,-0.0139584 -39381,3408:465:2,85.5,-46,0,0,-0.0140998 -39382,3408:466:1,86,-46,0,0,-0.0136736 -39383,3408:466:2,86.5,-46,0,0,-0.0132962 -39384,3408:467:1,87,-46,0,0,-0.012967 -39385,3408:467:2,87.5,-46,0,0,-0.0131954 -39386,3408:468:1,88,-46,0,0,-0.0136339 -39387,3408:468:2,88.5,-46,0,0,-0.0141694 -39388,3408:469:1,89,-46,0,0,-0.0142045 -39389,3408:469:2,89.5,-46,0,0,-0.0138369 -39390,3409:360:1,90,-46,0,0,-0.0134128 -39391,3409:360:2,90.5,-46,0,0,-0.0128601 -39392,3409:361:1,91,-46,0,0,-0.0131511 -39393,3409:361:2,91.5,-46,0,0,-0.0131129 -39394,3409:362:1,92,-46,0,0,-0.0135881 -39395,3409:362:2,92.5,-46,0,0,-0.0147395 -39396,3409:363:1,93,-46,0,0,-0.0154261 -39397,3409:363:2,93.5,-46,0,0,-0.0147793 -39398,3409:364:1,94,-46,0,0,-0.0134429 -39399,3409:364:2,94.5,-46,0,0,-0.0126574 -39400,3409:465:1,95,-46,0,0,-0.0129438 -39401,3409:465:2,95.5,-46,0,0,-0.0137597 -39402,3409:466:1,96,-46,0,0,-0.0143099 -39403,3409:466:2,96.5,-46,0,0,-0.0143003 -39404,3409:467:1,97,-46,0,0,-0.0140304 -39405,3409:467:2,97.5,-46,0,0,-0.0141156 -39406,3409:468:1,98,-46,0,0,-0.013643 -39407,3409:468:2,98.5,-46,0,0,-0.0130164 -39408,3409:469:1,99,-46,0,0,-0.0127883 -39409,3409:469:2,99.5,-46,0,0,-0.0118705 -39410,3410:360:1,100,-46,0,0,-0.0112379 -39411,3410:360:2,100.5,-46,0,0,-0.0112556 -39412,3410:361:1,101,-46,0,0,-0.0110982 -39413,3410:361:2,101.5,-46,0,0,-0.010735 -39414,3410:362:1,102,-46,0,0,-0.0106134 -39415,3410:362:2,102.5,-46,0,0,-0.0104792 -39416,3410:363:1,103,-46,0,0,-0.0102708 -39417,3410:363:2,103.5,-46,0,0,-0.00993928 -39418,3410:364:1,104,-46,0,0,-0.00980271 -39419,3410:364:2,104.5,-46,0,0,-0.00982684 -39420,3410:465:1,105,-46,0,0,-0.0109358 -39421,3410:465:2,105.5,-46,0,0,-0.0121961 -39422,3410:466:1,106,-46,0,0,-0.0126659 -39423,3410:466:2,106.5,-46,0,0,-0.0131365 -39424,3410:467:1,107,-46,0,0,-0.0132992 -39425,3410:467:2,107.5,-46,0,0,-0.0130048 -39426,3410:468:1,108,-46,0,0,-0.0126631 -39427,3410:468:2,108.5,-46,0,0,-0.0124635 -39428,3410:469:1,109,-46,0,0,-0.0121579 -39429,3410:469:2,109.5,-46,0,0,-0.0121769 -39430,3411:360:1,110,-46,0,0,-0.0124663 -39431,3411:360:2,110.5,-46,0,0,-0.0129989 -39432,3411:361:1,111,-46,0,0,-0.013974 -39433,3411:361:2,111.5,-46,0,0,-0.0143999 -39434,3411:362:1,112,-46,0,0,-0.0141377 -39435,3411:362:2,112.5,-46,0,0,-0.0142076 -39436,3411:363:1,113,-46,0,0,-0.01589 -39437,3411:363:2,113.5,-46,0,0,-0.0185761 -39438,3411:364:1,114,-46,0,0,-0.0181506 -39439,3411:364:2,114.5,-46,0,0,-0.0167246 -39440,3411:465:1,115,-46,0,0,-0.0162616 -39441,3411:465:2,115.5,-46,0,0,-0.015762 -39442,3411:466:1,116,-46,0,0,-0.0155862 -39443,3411:466:2,116.5,-46,0,0,-0.0156352 -39444,3411:467:1,117,-46,0,0,-0.0159937 -39445,3411:467:2,117.5,-46,0,0,-0.0163311 -39446,3411:468:1,118,-46,0,0,-0.0164267 -39447,3411:468:2,118.5,-46,0,0,-0.0162178 -39448,3411:469:1,119,-46,0,0,-0.0158934 -39449,3411:469:2,119.5,-46,0,0,-0.0161852 -39450,3412:360:1,120,-46,0,0,-0.016868 -39451,3412:360:2,120.5,-46,0,0,-0.0169973 -39452,3412:361:1,121,-46,0,0,-0.0158471 -39453,3412:361:2,121.5,-46,0,0,-0.0143838 -39454,3412:362:1,122,-46,0,0,-0.0140745 -39455,3412:362:2,122.5,-46,0,0,-0.0140745 -39456,3412:363:1,123,-46,0,0,-0.0141948 -39457,3412:363:2,123.5,-46,0,0,-0.0146901 -39458,3412:364:1,124,-46,0,0,-0.0159292 -39459,3412:364:2,124.5,-46,0,0,-0.0165453 -39460,3412:465:1,125,-46,0,0,-0.0161924 -39461,3412:465:2,125.5,-46,0,0,-0.0166459 -39462,3412:466:1,126,-46,0,0,-0.0169668 -39463,3412:466:2,126.5,-46,0,0,-0.0173407 -39464,3412:467:1,127,-46,0,0,-0.0182899 -39465,3412:467:2,127.5,-46,0,0,-0.0191795 -39466,3412:468:1,128,-46,0,0,-0.0196562 -39467,3412:468:2,128.5,-46,0,0,-0.0199328 -39468,3412:469:1,129,-46,0,0,-0.0198969 -39469,3412:469:2,129.5,-46,0,0,-0.0196917 -39470,3413:360:1,130,-46,0,0,-0.0198789 -39471,3413:360:2,130.5,-46,0,0,-0.0196961 -39472,3413:361:1,131,-46,0,0,-0.0189776 -39473,3413:361:2,131.5,-46,0,0,-0.0179275 -39474,3413:362:1,132,-46,0,0,-0.0171508 -39475,3413:362:2,132.5,-46,0,0,-0.0171701 -39476,3413:363:1,133,-46,0,0,-0.0175131 -39477,3413:363:2,133.5,-46,0,0,-0.0179275 -39478,3413:364:1,134,-46,0,0,-0.0183064 -39479,3413:364:2,134.5,-46,0,0,-0.018389 -39480,3413:465:1,135,-46,0,0,-0.0181343 -39481,3413:465:2,135.5,-46,0,0,-0.0178069 -39482,3413:466:1,136,-46,0,0,-0.0178711 -39483,3413:466:2,136.5,-46,0,0,-0.0181465 -39484,3413:467:1,137,-46,0,0,-0.0185552 -39485,3413:467:2,137.5,-46,0,0,-0.0186515 -39486,3413:468:1,138,-46,0,0,-0.0177749 -39487,3413:468:2,138.5,-46,0,0,-0.0168414 -39488,3413:469:1,139,-46,0,0,-0.0188245 -39489,3413:469:2,139.5,-46,0,0,-0.0224342 -39490,3414:360:1,140,-46,0,0,-0.0234982 -39491,3414:360:2,140.5,-46,0,0,-0.0236581 -39492,3414:361:1,141,-46,0,0,-0.0228125 -39493,3414:361:2,141.5,-46,0,0,-0.0219977 -39494,3414:362:1,142,-46,0,0,-0.0213327 -39495,3414:362:2,142.5,-46,0,0,-0.0206136 -39496,3414:363:1,143,-46,0,0,-0.0199103 -39497,3414:363:2,143.5,-46,0,0,-0.0183807 -39498,3414:364:1,144,-46,0,0,-0.0163641 -39499,3414:364:2,144.5,-46,0,0,-0.0150704 -39500,3414:465:1,145,-46,0,0,-0.0147727 -39501,3414:465:2,145.5,-46,0,0,-0.0145818 -39502,3414:466:1,146,-46,0,0,-0.0140966 -39503,3414:466:2,146.5,-46,0,0,-0.0134851 -39504,3414:467:1,147,-46,0,0,-0.0129235 -39505,3414:467:2,147.5,-46,0,0,-0.0128084 -39506,3414:468:1,148,-46,0,0,-0.0163641 -39507,3414:468:2,148.5,-46,0,0,-0.0241337 -39508,3414:469:1,149,-46,0,0,-0.0296676 -39509,3414:469:2,149.5,-46,0,0,-0.0316424 -39510,3415:360:1,150,-46,0,0,-0.0300619 -39511,3415:360:2,150.5,-46,0,0,-0.0268942 -39512,3415:361:1,151,-46,0,0,-0.0213568 -39513,3415:361:2,151.5,-46,0,0,-0.0194799 -39514,3415:362:1,152,-46,0,0,-0.0231501 -39515,3415:362:2,152.5,-46,0,0,-0.0294526 -39516,3415:363:1,153,-46,0,0,-0.0310143 -39517,3415:363:2,153.5,-46,0,0,-0.0306213 -39518,3415:364:1,154,-46,0,0,-0.0305446 -39519,3415:364:2,154.5,-46,0,0,-0.0288428 -39520,3415:465:1,155,-46,0,0,-0.0277627 -39521,3415:465:2,155.5,-46,0,0,-0.0295263 -39522,3415:466:1,156,-46,0,0,-0.0321734 -39523,3415:466:2,156.5,-46,0,0,-0.0315487 -39524,3415:467:1,157,-46,0,0,-0.0284522 -39525,3415:467:2,157.5,-46,0,0,-0.0270534 -39526,3415:468:1,158,-46,0,0,-0.0271211 -39527,3415:468:2,158.5,-46,0,0,-0.0274866 -39528,3415:469:1,159,-46,0,0,-0.0275742 -39529,3415:469:2,159.5,-46,0,0,-0.0189008 -39530,3416:360:1,160,-46,0,0,-0.0193661 -39531,3416:360:2,160.5,-46,0,0,-0.0268637 -39532,3416:361:1,161,-46,0,0,-0.0277752 -39533,3416:361:2,161.5,-46,0,0,-0.0295062 -39534,3416:362:1,162,-46,0,0,-0.0363988 -39535,3416:362:2,162.5,-46,0,0,-0.0364489 -39536,3416:363:1,163,-46,0,0,-0.0305586 -39537,3416:363:2,163.5,-46,0,0,-0.0269431 -39538,3416:364:1,164,-46,0,0,-0.0262792 -39539,3416:364:2,164.5,-46,0,0,-0.0282524 -39540,3416:465:1,165,-46,0,0,-0.0310354 -39541,3416:465:2,165.5,-46,0,0,-0.0381848 -39542,3416:466:1,166,-46,0,0,-0.0439665 -39543,3416:466:2,166.5,-46,0,0,-0.0472743 -39544,3416:467:1,167,-46,0,0,-0.0485725 -39545,3416:467:2,167.5,-46,0,0,-0.0486962 -39546,3416:468:1,168,-46,0,0,-0.0481465 -39547,3416:468:2,168.5,-46,0,0,-0.0468821 -39548,3416:469:1,169,-46,0,0,-0.0444969 -39549,3416:469:2,169.5,-46,0,0,-0.0404966 -39550,3417:360:1,170,-46,0,0,-0.0353399 -39551,3417:360:2,170.5,-46,0,0,-0.0314412 -39552,3417:361:1,171,-46,0,0,-0.0302884 -39553,3417:361:2,171.5,-46,0,0,-0.0286858 -39554,3417:362:1,172,-46,0,0,-0.0279017 -39555,3417:362:2,172.5,-46,0,0,-0.028246 -39556,3417:363:1,173,-46,0,0,-0.028882 -39557,3417:363:2,173.5,-46,0,0,-0.0293455 -39558,3417:364:1,174,-46,0,0,-0.0291858 -39559,3417:364:2,174.5,-46,0,0,-0.0296946 -39560,3417:465:1,175,-46,0,0,-0.0309226 -39561,3417:465:2,175.5,-46,0,0,-0.0331799 -39562,3417:466:1,176,-46,0,0,-0.0343676 -39563,3417:466:2,176.5,-46,0,0,-0.0335762 -39564,3417:467:1,177,-46,0,0,-0.0340084 -39565,3417:467:2,177.5,-46,0,0,-0.0361413 -39566,3417:468:1,178,-46,0,0,-0.0383428 -39567,3417:468:2,178.5,-46,0,0,-0.0389548 -39568,3417:469:1,179,-46,0,0,-0.0395403 -39569,3417:469:2,179.5,-46,0,0,-0.0397682 -39570,3418:360:1,180,-46,0,0,-0.0396677 -39571,5418:350:3,-180,-45.5,0,0,-0.0390622 -39572,5417:459:4,-179.5,-45.5,0,0,-0.0380098 -39573,5417:459:3,-179,-45.5,0,0,-0.0376198 -39574,5417:458:4,-178.5,-45.5,0,0,-0.0386785 -39575,5417:458:3,-178,-45.5,0,0,-0.0404688 -39576,5417:457:4,-177.5,-45.5,0,0,-0.042355 -39577,5417:457:3,-177,-45.5,0,0,-0.0436029 -39578,5417:456:4,-176.5,-45.5,0,0,-0.0438247 -39579,5417:456:3,-176,-45.5,0,0,-0.0427078 -39580,5417:455:4,-175.5,-45.5,0,0,-0.0413055 -39581,5417:455:3,-175,-45.5,0,0,-0.0396132 -39582,5417:354:4,-174.5,-45.5,0,0,-0.0379838 -39583,5417:354:3,-174,-45.5,0,0,-0.03829 -39584,5417:353:4,-173.5,-45.5,0,0,-0.0371143 -39585,5417:353:3,-173,-45.5,0,0,-0.0350901 -39586,5417:352:4,-172.5,-45.5,0,0,-0.0330212 -39587,5417:352:3,-172,-45.5,0,0,-0.0312911 -39588,5417:351:4,-171.5,-45.5,0,0,-0.0309226 -39589,5417:351:3,-171,-45.5,0,0,-0.0314198 -39590,5417:350:4,-170.5,-45.5,0,0,-0.0325945 -39591,5417:350:3,-170,-45.5,0,0,-0.0335072 -39592,5416:459:4,-169.5,-45.5,0,0,-0.0341095 -39593,5416:459:3,-169,-45.5,0,0,-0.03462 -39594,5416:458:4,-168.5,-45.5,0,0,-0.03462 -39595,5416:458:3,-168,-45.5,0,0,-0.0338301 -39596,5416:457:4,-167.5,-45.5,0,0,-0.0322323 -39597,5416:457:3,-167,-45.5,0,0,-0.031078 -39598,5416:456:4,-166.5,-45.5,0,0,-0.0296946 -39599,5416:456:3,-166,-45.5,0,0,-0.0313624 -39600,5416:455:4,-165.5,-45.5,0,0,-0.0326838 -39601,5416:455:3,-165,-45.5,0,0,-0.0335532 -39602,5416:354:4,-164.5,-45.5,0,0,-0.0340784 -39603,5416:354:3,-164,-45.5,0,0,-0.0343442 -39604,5416:353:4,-163.5,-45.5,0,0,-0.0346597 -39605,5416:353:3,-163,-45.5,0,0,-0.0353804 -39606,5416:352:4,-162.5,-45.5,0,0,-0.0362822 -39607,5416:352:3,-162,-45.5,0,0,-0.0364405 -39608,5416:351:4,-161.5,-45.5,0,0,-0.0355425 -39609,5416:351:3,-161,-45.5,0,0,-0.0337608 -39610,5416:350:4,-160.5,-45.5,0,0,-0.031513 -39611,5416:350:3,-160,-45.5,0,0,-0.0300276 -39612,5415:459:4,-159.5,-45.5,0,0,-0.0306771 -39613,5415:459:3,-159,-45.5,0,0,-0.0325797 -39614,5415:458:4,-158.5,-45.5,0,0,-0.0340395 -39615,5415:458:3,-158,-45.5,0,0,-0.03505 -39616,5415:457:4,-157.5,-45.5,0,0,-0.0370804 -39617,5415:457:3,-157,-45.5,0,0,-0.0376801 -39618,5415:456:4,-156.5,-45.5,0,0,-0.0363904 -39619,5415:456:3,-156,-45.5,0,0,-0.0347628 -39620,5415:455:4,-155.5,-45.5,0,0,-0.0337145 -39621,5415:455:3,-155,-45.5,0,0,-0.0332634 -39622,5415:354:4,-154.5,-45.5,0,0,-0.0333242 -39623,5415:354:3,-154,-45.5,0,0,-0.0337992 -39624,5415:353:4,-153.5,-45.5,0,0,-0.0339541 -39625,5415:353:3,-153,-45.5,0,0,-0.0321662 -39626,5415:352:4,-152.5,-45.5,0,0,-0.0289215 -39627,5415:352:3,-152,-45.5,0,0,-0.0289149 -39628,5415:351:4,-151.5,-45.5,0,0,-0.0341719 -39629,5415:351:3,-151,-45.5,0,0,-0.0381498 -39630,5415:350:4,-150.5,-45.5,0,0,-0.0417069 -39631,5415:350:3,-150,-45.5,0,0,-0.0387406 -39632,5414:459:4,-149.5,-45.5,0,0,-0.0356076 -39633,5414:459:3,-149,-45.5,0,0,-0.034986 -39634,5414:458:4,-148.5,-45.5,0,0,-0.0347866 -39635,5414:458:3,-148,-45.5,0,0,-0.0333393 -39636,5414:457:4,-147.5,-45.5,0,0,-0.0286402 -39637,5414:457:3,-147,-45.5,0,0,-0.0247758 -39638,5414:456:4,-146.5,-45.5,0,0,-0.0272939 -39639,5414:456:3,-146,-45.5,0,0,-0.0396952 -39640,5414:455:4,-145.5,-45.5,0,0,-0.0485498 -39641,5414:455:3,-145,-45.5,0,0,-0.050584 -39642,5414:354:4,-144.5,-45.5,0,0,-0.0536354 -39643,5414:354:3,-144,-45.5,0,0,-0.0547972 -39644,5414:353:4,-143.5,-45.5,0,0,-0.054226 -39645,5414:353:3,-143,-45.5,0,0,-0.0537857 -39646,5414:352:4,-142.5,-45.5,0,0,-0.054823 -39647,5414:352:3,-142,-45.5,0,0,-0.0549893 -39648,5414:351:4,-141.5,-45.5,0,0,-0.0502797 -39649,5414:351:3,-141,-45.5,0,0,-0.0396585 -39650,5414:350:4,-140.5,-45.5,0,0,-0.0337145 -39651,5414:350:3,-140,-45.5,0,0,-0.0403016 -39652,5413:459:4,-139.5,-45.5,0,0,-0.0429249 -39653,5413:459:3,-139,-45.5,0,0,-0.0413055 -39654,5413:458:4,-138.5,-45.5,0,0,-0.0413723 -39655,5413:458:3,-138,-45.5,0,0,-0.0394224 -39656,5413:457:4,-137.5,-45.5,0,0,-0.0380013 -39657,5413:457:3,-137,-45.5,0,0,-0.0370721 -39658,5413:456:4,-136.5,-45.5,0,0,-0.0358531 -39659,5413:456:3,-136,-45.5,0,0,-0.0339773 -39660,5413:455:4,-135.5,-45.5,0,0,-0.0324017 -39661,5413:455:3,-135,-45.5,0,0,-0.0313981 -39662,5413:354:4,-134.5,-45.5,0,0,-0.03051 -39663,5413:354:3,-134,-45.5,0,0,-0.0305864 -39664,5413:353:4,-133.5,-45.5,0,0,-0.031078 -39665,5413:353:3,-133,-45.5,0,0,-0.0316496 -39666,5413:352:4,-132.5,-45.5,0,0,-0.0329987 -39667,5413:352:3,-132,-45.5,0,0,-0.0363822 -39668,5413:351:4,-131.5,-45.5,0,0,-0.0424919 -39669,5413:351:3,-131,-45.5,0,0,-0.0512696 -39670,5413:350:4,-130.5,-45.5,0,0,-0.0568415 -39671,5413:350:3,-130,-45.5,0,0,-0.0562866 -39672,5412:459:4,-129.5,-45.5,0,0,-0.0528182 -39673,5412:459:3,-129,-45.5,0,0,-0.0505135 -39674,5412:458:4,-128.5,-45.5,0,0,-0.0488656 -39675,5412:458:3,-128,-45.5,0,0,-0.0499426 -39676,5412:457:4,-127.5,-45.5,0,0,-0.0498501 -39677,5412:457:3,-127,-45.5,0,0,-0.0484486 -39678,5412:456:4,-126.5,-45.5,0,0,-0.0470887 -39679,5412:456:3,-126,-45.5,0,0,-0.0462254 -39680,5412:455:4,-125.5,-45.5,0,0,-0.0454734 -39681,5412:455:3,-125,-45.5,0,0,-0.0450241 -39682,5412:354:4,-124.5,-45.5,0,0,-0.0443024 -39683,5412:354:3,-124,-45.5,0,0,-0.0432726 -39684,5412:353:4,-123.5,-45.5,0,0,-0.0413723 -39685,5412:353:3,-123,-45.5,0,0,-0.0401814 -39686,5412:352:4,-122.5,-45.5,0,0,-0.0403758 -39687,5412:352:3,-122,-45.5,0,0,-0.0408144 -39688,5412:351:4,-121.5,-45.5,0,0,-0.039988 -39689,5412:351:3,-121,-45.5,0,0,-0.0404038 -39690,5412:350:4,-120.5,-45.5,0,0,-0.0401445 -39691,5412:350:3,-120,-45.5,0,0,-0.0395403 -39692,5411:459:4,-119.5,-45.5,0,0,-0.0385455 -39693,5411:459:3,-119,-45.5,0,0,-0.0372251 -39694,5411:458:4,-118.5,-45.5,0,0,-0.0365157 -39695,5411:458:3,-118,-45.5,0,0,-0.0363571 -39696,5411:457:4,-117.5,-45.5,0,0,-0.0369533 -39697,5411:457:3,-117,-45.5,0,0,-0.0385013 -39698,5411:456:4,-116.5,-45.5,0,0,-0.0391608 -39699,5411:456:3,-116,-45.5,0,0,-0.0388564 -39700,5411:455:4,-115.5,-45.5,0,0,-0.0383866 -39701,5411:455:3,-115,-45.5,0,0,-0.0375336 -39702,5411:354:4,-114.5,-45.5,0,0,-0.036759 -39703,5411:354:3,-114,-45.5,0,0,-0.0365073 -39704,5411:353:4,-113.5,-45.5,0,0,-0.0367169 -39705,5411:353:3,-113,-45.5,0,0,-0.0369618 -39706,5411:352:4,-112.5,-45.5,0,0,-0.036759 -39707,5411:352:3,-112,-45.5,0,0,-0.0360092 -39708,5411:351:4,-111.5,-45.5,0,0,-0.0347231 -39709,5411:351:3,-111,-45.5,0,0,-0.0333697 -39710,5411:350:4,-110.5,-45.5,0,0,-0.0326317 -39711,5411:350:3,-110,-45.5,0,0,-0.032669 -39712,5410:459:4,-109.5,-45.5,0,0,-0.0324758 -39713,5410:459:3,-109,-45.5,0,0,-0.0319614 -39714,5410:458:4,-108.5,-45.5,0,0,-0.0313767 -39715,5410:458:3,-108,-45.5,0,0,-0.0310001 -39716,5410:457:4,-107.5,-45.5,0,0,-0.030761 -39717,5410:457:3,-107,-45.5,0,0,-0.0303436 -39718,5410:456:4,-106.5,-45.5,0,0,-0.0300208 -39719,5410:456:3,-106,-45.5,0,0,-0.0301166 -39720,5410:455:4,-105.5,-45.5,0,0,-0.0304543 -39721,5410:455:3,-105,-45.5,0,0,-0.0306213 -39722,5410:354:4,-104.5,-45.5,0,0,-0.030496 -39723,5410:354:3,-104,-45.5,0,0,-0.0302403 -39724,5410:353:4,-103.5,-45.5,0,0,-0.0300208 -39725,5410:353:3,-103,-45.5,0,0,-0.0299389 -39726,5410:352:4,-102.5,-45.5,0,0,-0.0299935 -39727,5410:352:3,-102,-45.5,0,0,-0.0300412 -39728,5410:351:4,-101.5,-45.5,0,0,-0.0297623 -39729,5410:351:3,-101,-45.5,0,0,-0.0293789 -39730,5410:350:4,-100.5,-45.5,0,0,-0.0294123 -39731,5410:350:3,-100,-45.5,0,0,-0.0298165 -39732,5409:459:4,-99.5,-45.5,0,0,-0.0299458 -39733,5409:459:3,-99,-45.5,0,0,-0.0293522 -39734,5409:458:4,-98.5,-45.5,0,0,-0.0283747 -39735,5409:458:3,-98,-45.5,0,0,-0.0278195 -39736,5409:457:4,-97.5,-45.5,0,0,-0.0278004 -39737,5409:457:3,-97,-45.5,0,0,-0.0280541 -39738,5409:456:4,-96.5,-45.5,0,0,-0.028381 -39739,5409:456:3,-96,-45.5,0,0,-0.0285623 -39740,5409:455:4,-95.5,-45.5,0,0,-0.0285168 -39741,5409:455:3,-95,-45.5,0,0,-0.0286858 -39742,5409:354:4,-94.5,-45.5,0,0,-0.0292255 -39743,5409:354:3,-94,-45.5,0,0,-0.0296878 -39744,5409:353:4,-93.5,-45.5,0,0,-0.0292057 -39745,5409:353:3,-93,-45.5,0,0,-0.0284392 -39746,5409:352:4,-92.5,-45.5,0,0,-0.0281051 -39747,5409:352:3,-92,-45.5,0,0,-0.0280796 -39748,5409:351:4,-91.5,-45.5,0,0,-0.0283618 -39749,5409:351:3,-91,-45.5,0,0,-0.0287577 -39750,5409:350:4,-90.5,-45.5,0,0,-0.0290071 -39751,5409:350:3,-90,-45.5,0,0,-0.0289215 -39752,5408:459:4,-89.5,-45.5,0,0,-0.0286534 -39753,5408:459:3,-89,-45.5,0,0,-0.0286011 -39754,5408:458:4,-88.5,-45.5,0,0,-0.0288886 -39755,5408:458:3,-88,-45.5,0,0,-0.0291791 -39756,5408:457:4,-87.5,-45.5,0,0,-0.0292588 -39757,5408:457:3,-87,-45.5,0,0,-0.0291526 -39758,5408:456:4,-86.5,-45.5,0,0,-0.0290666 -39759,5408:456:3,-86,-45.5,0,0,-0.0291925 -39760,5408:455:4,-85.5,-45.5,0,0,-0.0294056 -39761,5408:455:3,-85,-45.5,0,0,-0.0294323 -39762,5408:354:4,-84.5,-45.5,0,0,-0.0291725 -39763,5408:354:3,-84,-45.5,0,0,-0.0287707 -39764,5408:353:4,-83.5,-45.5,0,0,-0.0286597 -39765,5408:353:3,-83,-45.5,0,0,-0.0290799 -39766,5408:352:4,-82.5,-45.5,0,0,-0.0293121 -39767,5408:352:3,-82,-45.5,0,0,-0.0289742 -39768,5408:351:4,-81.5,-45.5,0,0,-0.0284392 -39769,5408:351:3,-81,-45.5,0,0,-0.0280796 -39770,5408:350:4,-80.5,-45.5,0,0,-0.0280989 -39771,5408:350:3,-80,-45.5,0,0,-0.0284326 -39772,5407:459:4,-79.5,-45.5,0,0,-0.0290468 -39773,5407:459:3,-79,-45.5,0,0,-0.0296271 -39774,5407:458:4,-78.5,-45.5,0,0,-0.0304059 -39775,5407:458:3,-78,-45.5,0,0,-0.0321441 -39776,5407:457:4,-77.5,-45.5,0,0,-0.032654 -39777,5407:457:3,-77,-45.5,0,0,-0.0310283 -39778,5407:456:4,-76.5,-45.5,0,0,-0.0298097 -39779,5407:456:3,-76,-45.5,0,0,-0.030055 -39780,5407:455:4,-75.5,-45.5,0,0,-0.0337298 -39781,5407:455:3,-75,-45.5,0,0,-0.0335455 -39782,5407:354:4,-74.5,-45.5,0,0,-0.0342894 -39783,5407:354:3,-74,-45.5,0,0,-0.0344149 -39784,5407:353:4,-73.5,-45.5,0,0,-0.0344149 -39785,5407:353:3,-73,-45.5,0,0,-0.0375079 -39786,5407:352:4,-72.5,-45.5,0,0,-0.0386696 -39787,5407:352:3,-72,-45.5,0,0,-0.0395131 -39788,5407:351:4,-71.5,-45.5,0,0,-0.0428061 -39789,5407:351:3,-71,-45.5,0,0,-0.0456839 -39790,5406:455:4,-65.5,-45.5,0,0,-0.0356404 -39791,5406:455:3,-65,-45.5,0,0,-0.0361911 -39792,5406:354:4,-64.5,-45.5,0,0,-0.0342815 -39793,5406:354:3,-64,-45.5,0,0,-0.0329835 -39794,5406:353:4,-63.5,-45.5,0,0,-0.0313268 -39795,5406:353:3,-63,-45.5,0,0,-0.0292389 -39796,5406:352:4,-62.5,-45.5,0,0,-0.0276557 -39797,5406:352:3,-62,-45.5,0,0,-0.0269798 -39798,5406:351:4,-61.5,-45.5,0,0,-0.0273126 -39799,5406:351:3,-61,-45.5,0,0,-0.027889 -39800,5406:350:4,-60.5,-45.5,0,0,-0.0285623 -39801,5406:350:3,-60,-45.5,0,0,-0.0288296 -39802,5405:459:4,-59.5,-45.5,0,0,-0.0285948 -39803,5405:459:3,-59,-45.5,0,0,-0.0282716 -39804,5405:458:4,-58.5,-45.5,0,0,-0.0284522 -39805,5405:458:3,-58,-45.5,0,0,-0.0291393 -39806,5405:457:4,-57.5,-45.5,0,0,-0.0295127 -39807,5405:457:3,-57,-45.5,0,0,-0.0294123 -39808,5405:456:4,-56.5,-45.5,0,0,-0.0287707 -39809,5405:456:3,-56,-45.5,0,0,-0.0276431 -39810,5405:455:4,-55.5,-45.5,0,0,-0.0259183 -39811,5405:455:3,-55,-45.5,0,0,-0.0238084 -39812,5405:354:4,-54.5,-45.5,0,0,-0.0225256 -39813,5405:354:3,-54,-45.5,0,0,-0.0206602 -39814,5405:353:4,-53.5,-45.5,0,0,-0.0202406 -39815,5405:353:3,-53,-45.5,0,0,-0.020236 -39816,5405:352:4,-52.5,-45.5,0,0,-0.0196209 -39817,5405:352:3,-52,-45.5,0,0,-0.016026 -39818,5405:351:4,-51.5,-45.5,0,0,-0.0147363 -39819,5405:351:3,-51,-45.5,0,0,-0.0148924 -39820,5405:350:4,-50.5,-45.5,0,0,-0.0149795 -39821,5405:350:3,-50,-45.5,0,0,-0.0151043 -39822,5404:459:4,-49.5,-45.5,0,0,-0.015179 -39823,5404:459:3,-49,-45.5,0,0,-0.0154573 -39824,5404:458:4,-48.5,-45.5,0,0,-0.0149996 -39825,5404:458:3,-48,-45.5,0,0,-0.0152952 -39826,5404:457:4,-47.5,-45.5,0,0,-0.0161742 -39827,5404:457:3,-47,-45.5,0,0,-0.0155338 -39828,5404:456:4,-46.5,-45.5,0,0,-0.015145 -39829,5404:456:3,-46,-45.5,0,0,-0.0149661 -39830,5404:455:4,-45.5,-45.5,0,0,-0.0148523 -39831,5404:455:3,-45,-45.5,0,0,-0.0147098 -39832,5404:354:4,-44.5,-45.5,0,0,-0.0144096 -39833,5404:354:3,-44,-45.5,0,0,-0.0140587 -39834,5404:353:4,-43.5,-45.5,0,0,-0.0135973 -39835,5404:353:3,-43,-45.5,0,0,-0.0135184 -39836,5404:352:4,-42.5,-45.5,0,0,-0.0134489 -39837,5404:352:3,-42,-45.5,0,0,-0.0133081 -39838,5404:351:4,-41.5,-45.5,0,0,-0.0130368 -39839,5404:351:3,-41,-45.5,0,0,-0.0129409 -39840,5404:350:4,-40.5,-45.5,0,0,-0.0128947 -39841,5404:350:3,-40,-45.5,0,0,-0.0125952 -39842,5403:459:4,-39.5,-45.5,0,0,-0.0122699 -39843,5403:459:3,-39,-45.5,0,0,-0.0121579 -39844,5403:458:4,-38.5,-45.5,0,0,-0.0121824 -39845,5403:458:3,-38,-45.5,0,0,-0.0123194 -39846,5403:457:4,-37.5,-45.5,0,0,-0.012237 -39847,5403:457:3,-37,-45.5,0,0,-0.0121091 -39848,5403:456:4,-36.5,-45.5,0,0,-0.0121878 -39849,5403:456:3,-36,-45.5,0,0,-0.0118652 -39850,5403:455:4,-35.5,-45.5,0,0,-0.0113541 -39851,5403:455:3,-35,-45.5,0,0,-0.0110883 -39852,5403:354:4,-34.5,-45.5,0,0,-0.0111505 -39853,5403:354:3,-34,-45.5,0,0,-0.0105709 -39854,5403:353:4,-33.5,-45.5,0,0,-0.00956083 -39855,5403:353:3,-33,-45.5,0,0,-0.00949073 -39856,5403:352:4,-32.5,-45.5,0,0,-0.00975477 -39857,5403:352:3,-32,-45.5,0,0,-0.0100396 -39858,5403:351:4,-31.5,-45.5,0,0,-0.0101863 -39859,5403:351:3,-31,-45.5,0,0,-0.00988623 -39860,5403:350:4,-30.5,-45.5,0,0,-0.00919078 -39861,5403:350:3,-30,-45.5,0,0,-0.00880183 -39862,5402:459:4,-29.5,-45.5,0,0,-0.00873729 -39863,5402:459:3,-29,-45.5,0,0,-0.00863661 -39864,5402:458:4,-28.5,-45.5,0,0,-0.0084557 -39865,5402:458:3,-28,-45.5,0,0,-0.00829896 -39866,5402:457:4,-27.5,-45.5,0,0,-0.00827682 -39867,5402:457:3,-27,-45.5,0,0,-0.00862511 -39868,5402:456:4,-26.5,-45.5,0,0,-0.00976129 -39869,5402:456:3,-26,-45.5,0,0,-0.010909 -39870,5402:455:4,-25.5,-45.5,0,0,-0.0111853 -39871,5402:455:3,-25,-45.5,0,0,-0.0111131 -39872,5402:354:4,-24.5,-45.5,0,0,-0.0114253 -39873,5402:354:3,-24,-45.5,0,0,-0.0115382 -39874,5402:353:4,-23.5,-45.5,0,0,-0.0112104 -39875,5402:353:3,-23,-45.5,0,0,-0.0111032 -39876,5402:352:4,-22.5,-45.5,0,0,-0.0111455 -39877,5402:352:3,-22,-45.5,0,0,-0.0111929 -39878,5402:351:4,-21.5,-45.5,0,0,-0.011253 -39879,5402:351:3,-21,-45.5,0,0,-0.0113846 -39880,5402:350:4,-20.5,-45.5,0,0,-0.0115459 -39881,5402:350:3,-20,-45.5,0,0,-0.0116993 -39882,5401:459:4,-19.5,-45.5,0,0,-0.0118837 -39883,5401:459:3,-19,-45.5,0,0,-0.0121742 -39884,5401:458:4,-18.5,-45.5,0,0,-0.0122672 -39885,5401:458:3,-18,-45.5,0,0,-0.0119825 -39886,5401:457:4,-17.5,-45.5,0,0,-0.0119798 -39887,5401:457:3,-17,-45.5,0,0,-0.0121797 -39888,5401:456:4,-16.5,-45.5,0,0,-0.0125981 -39889,5401:456:3,-16,-45.5,0,0,-0.0128803 -39890,5401:455:4,-15.5,-45.5,0,0,-0.0125222 -39891,5401:455:3,-15,-45.5,0,0,-0.0114407 -39892,5401:354:4,-14.5,-45.5,0,0,-0.010909 -39893,5401:354:3,-14,-45.5,0,0,-0.0112481 -39894,5401:353:4,-13.5,-45.5,0,0,-0.0118837 -39895,5401:353:3,-13,-45.5,0,0,-0.0122452 -39896,5401:352:4,-12.5,-45.5,0,0,-0.0124384 -39897,5401:352:3,-12,-45.5,0,0,-0.012525 -39898,5401:351:4,-11.5,-45.5,0,0,-0.0124106 -39899,5401:351:3,-11,-45.5,0,0,-0.0121961 -39900,5401:350:4,-10.5,-45.5,0,0,-0.0122726 -39901,5401:350:3,-10,-45.5,0,0,-0.0127741 -39902,5400:459:4,-9.5,-45.5,0,0,-0.0126801 -39903,5400:459:3,-9,-45.5,0,0,-0.0123304 -39904,5400:458:4,-8.5,-45.5,0,0,-0.012347 -39905,5400:458:3,-8,-45.5,0,0,-0.0121715 -39906,5400:457:4,-7.5,-45.5,0,0,-0.0113313 -39907,5400:457:3,-7,-45.5,0,0,-0.0108289 -39908,5400:456:4,-6.5,-45.5,0,0,-0.010909 -39909,5400:456:3,-6,-45.5,0,0,-0.0112079 -39910,5400:455:4,-5.5,-45.5,0,0,-0.011243 -39911,5400:455:3,-5,-45.5,0,0,-0.0109505 -39912,5400:354:4,-4.5,-45.5,0,0,-0.0105945 -39913,5400:354:3,-4,-45.5,0,0,-0.0102799 -39914,5400:353:4,-3.5,-45.5,0,0,-0.0099238 -39915,5400:353:3,-3,-45.5,0,0,-0.00962292 -39916,5400:352:4,-2.5,-45.5,0,0,-0.00961218 -39917,5400:352:3,-2,-45.5,0,0,-0.0095715 -39918,5400:351:4,-1.5,-45.5,0,0,-0.00944639 -39919,5400:351:3,-1,-45.5,0,0,-0.00926695 -39920,5400:350:4,-0.5,-45.5,0,0,-0.00913566 -39921,3400:350:4,0,-45.5,0,0,-0.00914175 -39922,3400:350:4,0.5,-45.5,0,0,-0.00894421 -39923,3400:351:3,1,-45.5,0,0,-0.00841435 -39924,3400:351:4,1.5,-45.5,0,0,-0.00804413 -39925,3400:352:3,2,-45.5,0,0,-0.00794265 -39926,3400:352:4,2.5,-45.5,0,0,-0.00803877 -39927,3400:353:3,3,-45.5,0,0,-0.00791092 -39928,3400:353:4,3.5,-45.5,0,0,-0.00782856 -39929,3400:354:3,4,-45.5,0,0,-0.0076852 -39930,3400:354:4,4.5,-45.5,0,0,-0.00752938 -39931,3400:455:3,5,-45.5,0,0,-0.00738993 -39932,3400:455:4,5.5,-45.5,0,0,-0.00734729 -39933,3400:456:3,6,-45.5,0,0,-0.00730976 -39934,3400:456:4,6.5,-45.5,0,0,-0.00725629 -39935,3400:457:3,7,-45.5,0,0,-0.00723533 -39936,3400:457:4,7.5,-45.5,0,0,-0.00723047 -39937,3400:458:3,8,-45.5,0,0,-0.0072016 -39938,3400:458:4,8.5,-45.5,0,0,-0.00714412 -39939,3400:459:3,9,-45.5,0,0,-0.00709341 -39940,3400:459:4,9.5,-45.5,0,0,-0.00705566 -39941,3401:350:3,10,-45.5,0,0,-0.00703212 -39942,3401:350:4,10.5,-45.5,0,0,-0.00699778 -39943,3401:351:3,11,-45.5,0,0,-0.00714888 -39944,3401:351:4,11.5,-45.5,0,0,-0.00723047 -39945,3401:352:3,12,-45.5,0,0,-0.00718558 -39946,3401:352:4,12.5,-45.5,0,0,-0.00715208 -39947,3401:353:3,13,-45.5,0,0,-0.00710291 -39948,3401:353:4,13.5,-45.5,0,0,-0.00700715 -39949,3401:354:3,14,-45.5,0,0,-0.00695898 -39950,3401:354:4,14.5,-45.5,0,0,-0.00699626 -39951,3401:455:3,15,-45.5,0,0,-0.00707768 -39952,3401:455:4,15.5,-45.5,0,0,-0.00715048 -39953,3401:456:3,16,-45.5,0,0,-0.00726112 -39954,3401:456:4,16.5,-45.5,0,0,-0.007344 -39955,3401:457:3,17,-45.5,0,0,-0.00735543 -39956,3401:457:4,17.5,-45.5,0,0,-0.00739812 -39957,3401:458:3,18,-45.5,0,0,-0.00744106 -39958,3401:458:4,18.5,-45.5,0,0,-0.00743944 -39959,3401:459:3,19,-45.5,0,0,-0.00746927 -39960,3401:459:4,19.5,-45.5,0,0,-0.00753609 -39961,3402:350:3,20,-45.5,0,0,-0.00761534 -39962,3402:350:4,20.5,-45.5,0,0,-0.00763404 -39963,3402:351:3,21,-45.5,0,0,-0.00759504 -39964,3402:351:4,21.5,-45.5,0,0,-0.00752938 -39965,3402:352:3,22,-45.5,0,0,-0.00726596 -39966,3402:352:4,22.5,-45.5,0,0,-0.0070212 -39967,3402:353:3,23,-45.5,0,0,-0.00714728 -39968,3402:353:4,23.5,-45.5,0,0,-0.00738005 -39969,3402:354:3,24,-45.5,0,0,-0.00758323 -39970,3402:354:4,24.5,-45.5,0,0,-0.00775913 -39971,3402:455:3,25,-45.5,0,0,-0.00771434 -39972,3402:455:4,25.5,-45.5,0,0,-0.0076001 -39973,3402:456:3,26,-45.5,0,0,-0.00761198 -39974,3402:456:4,26.5,-45.5,0,0,-0.00789679 -39975,3402:457:3,27,-45.5,0,0,-0.00795686 -39976,3402:457:4,27.5,-45.5,0,0,-0.00790914 -39977,3402:458:3,28,-45.5,0,0,-0.00788103 -39978,3402:458:4,28.5,-45.5,0,0,-0.00784949 -39979,3402:459:3,29,-45.5,0,0,-0.00780938 -39980,3402:459:4,29.5,-45.5,0,0,-0.00799768 -39981,3403:350:3,30,-45.5,0,0,-0.00855617 -39982,3403:350:4,30.5,-45.5,0,0,-0.00895815 -39983,3403:351:3,31,-45.5,0,0,-0.00927105 -39984,3403:351:4,31.5,-45.5,0,0,-0.00926078 -39985,3403:352:3,32,-45.5,0,0,-0.00866167 -39986,3403:352:4,32.5,-45.5,0,0,-0.00833232 -39987,3403:353:3,33,-45.5,0,0,-0.0085925 -39988,3403:353:4,33.5,-45.5,0,0,-0.00872755 -39989,3403:354:3,34,-45.5,0,0,-0.00919284 -39990,3403:354:4,34.5,-45.5,0,0,-0.00954171 -39991,3403:455:3,35,-45.5,0,0,-0.00958859 -39992,3403:455:4,35.5,-45.5,0,0,-0.00932915 -39993,3403:456:3,36,-45.5,0,0,-0.00883127 -39994,3403:456:4,36.5,-45.5,0,0,-0.00872173 -39995,3403:457:3,37,-45.5,0,0,-0.00920104 -39996,3403:457:4,37.5,-45.5,0,0,-0.0100912 -39997,3403:458:3,38,-45.5,0,0,-0.0103421 -39998,3403:458:4,38.5,-45.5,0,0,-0.00979837 -39999,3403:459:3,39,-45.5,0,0,-0.00951195 -40000,3403:459:4,39.5,-45.5,0,0,-0.00966593 -40001,3404:350:3,40,-45.5,0,0,-0.00964653 -40002,3404:350:4,40.5,-45.5,0,0,-0.00950133 -40003,3404:351:3,41,-45.5,0,0,-0.0093813 -40004,3404:351:4,41.5,-45.5,0,0,-0.00917853 -40005,3404:352:3,42,-45.5,0,0,-0.00906668 -40006,3404:352:4,42.5,-45.5,0,0,-0.00910922 -40007,3404:353:3,43,-45.5,0,0,-0.00922367 -40008,3404:353:4,43.5,-45.5,0,0,-0.00935204 -40009,3404:354:3,44,-45.5,0,0,-0.00933538 -40010,3404:354:4,44.5,-45.5,0,0,-0.00928766 -40011,3404:455:3,45,-45.5,0,0,-0.00929177 -40012,3404:455:4,45.5,-45.5,0,0,-0.00927105 -40013,3404:456:3,46,-45.5,0,0,-0.00916829 -40014,3404:456:4,46.5,-45.5,0,0,-0.00924422 -40015,3404:457:3,47,-45.5,0,0,-0.009495 -40016,3404:457:4,47.5,-45.5,0,0,-0.00956727 -40017,3404:458:3,48,-45.5,0,0,-0.00953957 -40018,3404:458:4,48.5,-45.5,0,0,-0.00955022 -40019,3404:459:3,49,-45.5,0,0,-0.00967672 -40020,3404:459:4,49.5,-45.5,0,0,-0.00974601 -40021,3405:350:3,50,-45.5,0,0,-0.00977432 -40022,3405:350:4,50.5,-45.5,0,0,-0.00979184 -40023,3405:351:3,51,-45.5,0,0,-0.00983339 -40024,3405:351:4,51.5,-45.5,0,0,-0.00985317 -40025,3405:352:3,52,-45.5,0,0,-0.00983781 -40026,3405:352:4,52.5,-45.5,0,0,-0.0100733 -40027,3405:353:3,53,-45.5,0,0,-0.0109456 -40028,3405:353:4,53.5,-45.5,0,0,-0.0112732 -40029,3405:354:3,54,-45.5,0,0,-0.0113846 -40030,3405:354:4,54.5,-45.5,0,0,-0.0110339 -40031,3405:455:3,55,-45.5,0,0,-0.0100463 -40032,3405:455:4,55.5,-45.5,0,0,-0.00940015 -40033,3405:456:3,56,-45.5,0,0,-0.0100374 -40034,3405:456:4,56.5,-45.5,0,0,-0.0101976 -40035,3405:457:3,57,-45.5,0,0,-0.0104093 -40036,3405:457:4,57.5,-45.5,0,0,-0.0107782 -40037,3405:458:3,58,-45.5,0,0,-0.0109236 -40038,3405:458:4,58.5,-45.5,0,0,-0.010747 -40039,3405:459:3,59,-45.5,0,0,-0.0104792 -40040,3405:459:4,59.5,-45.5,0,0,-0.0103467 -40041,3406:350:3,60,-45.5,0,0,-0.0103652 -40042,3406:350:4,60.5,-45.5,0,0,-0.0104651 -40043,3406:351:3,61,-45.5,0,0,-0.0105308 -40044,3406:351:4,61.5,-45.5,0,0,-0.0104605 -40045,3406:352:3,62,-45.5,0,0,-0.0103282 -40046,3406:352:4,62.5,-45.5,0,0,-0.0105097 -40047,3406:353:3,63,-45.5,0,0,-0.010875 -40048,3406:353:4,63.5,-45.5,0,0,-0.0111181 -40049,3406:354:3,64,-45.5,0,0,-0.0113566 -40050,3406:354:4,64.5,-45.5,0,0,-0.011728 -40051,3406:455:3,65,-45.5,0,0,-0.0119397 -40052,3406:455:4,65.5,-45.5,0,0,-0.0120039 -40053,3406:456:3,66,-45.5,0,0,-0.0120254 -40054,3406:456:4,66.5,-45.5,0,0,-0.0120119 -40055,3406:457:3,67,-45.5,0,0,-0.0119691 -40056,3406:457:4,67.5,-45.5,0,0,-0.0119157 -40057,3406:458:3,68,-45.5,0,0,-0.0118678 -40058,3406:458:4,68.5,-45.5,0,0,-0.0118069 -40059,3406:459:3,69,-45.5,0,0,-0.011694 -40060,3406:459:4,69.5,-45.5,0,0,-0.0115073 -40061,3407:350:3,70,-45.5,0,0,-0.011311 -40062,3407:350:4,70.5,-45.5,0,0,-0.0111281 -40063,3407:351:3,71,-45.5,0,0,-0.0109041 -40064,3407:351:4,71.5,-45.5,0,0,-0.0106776 -40065,3407:352:3,72,-45.5,0,0,-0.0105567 -40066,3407:352:4,72.5,-45.5,0,0,-0.0106205 -40067,3407:353:4,73.5,-45.5,0,0,-0.0106372 -40068,3407:354:3,74,-45.5,0,0,-0.010585 -40069,3407:354:4,74.5,-45.5,0,0,-0.0104512 -40070,3407:455:3,75,-45.5,0,0,-0.0103259 -40071,3407:455:4,75.5,-45.5,0,0,-0.0102868 -40072,3407:456:3,76,-45.5,0,0,-0.0102823 -40073,3407:456:4,76.5,-45.5,0,0,-0.0101931 -40074,3407:457:3,77,-45.5,0,0,-0.0100508 -40075,3407:457:4,77.5,-45.5,0,0,-0.00991934 -40076,3407:458:3,78,-45.5,0,0,-0.00965731 -40077,3407:458:4,78.5,-45.5,0,0,-0.00859823 -40078,3407:459:3,79,-45.5,0,0,-0.00774533 -40079,3407:459:4,79.5,-45.5,0,0,-0.00808183 -40080,3408:350:3,80,-45.5,0,0,-0.00902028 -40081,3408:350:4,80.5,-45.5,0,0,-0.00909299 -40082,3408:351:3,81,-45.5,0,0,-0.00972215 -40083,3408:351:4,81.5,-45.5,0,0,-0.0105073 -40084,3408:352:3,82,-45.5,0,0,-0.010649 -40085,3408:352:4,82.5,-45.5,0,0,-0.010393 -40086,3408:353:3,83,-45.5,0,0,-0.0102342 -40087,3408:353:4,83.5,-45.5,0,0,-0.0100463 -40088,3408:354:3,84,-45.5,0,0,-0.0102456 -40089,3408:354:4,84.5,-45.5,0,0,-0.0129932 -40090,3408:455:3,85,-45.5,0,0,-0.0145296 -40091,3408:455:4,85.5,-45.5,0,0,-0.0142714 -40092,3408:456:3,86,-45.5,0,0,-0.0135244 -40093,3408:456:4,86.5,-45.5,0,0,-0.0130135 -40094,3408:457:3,87,-45.5,0,0,-0.0135153 -40095,3408:457:4,87.5,-45.5,0,0,-0.0144258 -40096,3408:458:3,88,-45.5,0,0,-0.015128 -40097,3408:458:4,88.5,-45.5,0,0,-0.015702 -40098,3408:459:3,89,-45.5,0,0,-0.0157302 -40099,3408:459:4,89.5,-45.5,0,0,-0.0162726 -40100,3409:350:3,90,-45.5,0,0,-0.0161924 -40101,3409:350:4,90.5,-45.5,0,0,-0.0148424 -40102,3409:351:3,91,-45.5,0,0,-0.0137844 -40103,3409:351:4,91.5,-45.5,0,0,-0.0134128 -40104,3409:352:3,92,-45.5,0,0,-0.0136064 -40105,3409:352:4,92.5,-45.5,0,0,-0.0148191 -40106,3409:353:3,93,-45.5,0,0,-0.0160117 -40107,3409:353:4,93.5,-45.5,0,0,-0.0164785 -40108,3409:354:3,94,-45.5,0,0,-0.016401 -40109,3409:354:4,94.5,-45.5,0,0,-0.0157975 -40110,3409:455:3,95,-45.5,0,0,-0.0153777 -40111,3409:455:4,95.5,-45.5,0,0,-0.0152917 -40112,3409:456:3,96,-45.5,0,0,-0.0149325 -40113,3409:456:4,96.5,-45.5,0,0,-0.0145362 -40114,3409:457:3,97,-45.5,0,0,-0.0137381 -40115,3409:457:4,97.5,-45.5,0,0,-0.0128572 -40116,3409:458:3,98,-45.5,0,0,-0.012584 -40117,3409:458:4,98.5,-45.5,0,0,-0.0126687 -40118,3409:459:3,99,-45.5,0,0,-0.0125924 -40119,3409:459:4,99.5,-45.5,0,0,-0.0116496 -40120,3410:350:3,100,-45.5,0,0,-0.0111679 -40121,3410:350:4,100.5,-45.5,0,0,-0.0116055 -40122,3410:351:3,101,-45.5,0,0,-0.0115925 -40123,3410:351:4,101.5,-45.5,0,0,-0.0116029 -40124,3410:352:3,102,-45.5,0,0,-0.0115899 -40125,3410:352:4,102.5,-45.5,0,0,-0.0111929 -40126,3410:353:3,103,-45.5,0,0,-0.0105284 -40127,3410:353:4,103.5,-45.5,0,0,-0.0102067 -40128,3410:354:3,104,-45.5,0,0,-0.0100553 -40129,3410:354:4,104.5,-45.5,0,0,-0.0101727 -40130,3410:455:3,105,-45.5,0,0,-0.0117071 -40131,3410:455:4,105.5,-45.5,0,0,-0.0120955 -40132,3410:456:3,106,-45.5,0,0,-0.0124552 -40133,3410:456:4,106.5,-45.5,0,0,-0.0129033 -40134,3410:457:3,107,-45.5,0,0,-0.0132487 -40135,3410:457:4,107.5,-45.5,0,0,-0.0134459 -40136,3410:458:3,108,-45.5,0,0,-0.0134851 -40137,3410:458:4,108.5,-45.5,0,0,-0.0132843 -40138,3410:459:3,109,-45.5,0,0,-0.0126376 -40139,3410:459:4,109.5,-45.5,0,0,-0.0122808 -40140,3411:350:3,110,-45.5,0,0,-0.0125811 -40141,3411:350:4,110.5,-45.5,0,0,-0.0131659 -40142,3411:351:3,111,-45.5,0,0,-0.0134218 -40143,3411:351:4,111.5,-45.5,0,0,-0.0140777 -40144,3411:352:3,112,-45.5,0,0,-0.0141948 -40145,3411:352:4,112.5,-45.5,0,0,-0.014125 -40146,3411:353:3,113,-45.5,0,0,-0.0151178 -40147,3411:353:4,113.5,-45.5,0,0,-0.0182242 -40148,3411:354:3,114,-45.5,0,0,-0.0185052 -40149,3411:354:4,114.5,-45.5,0,0,-0.0179638 -40150,3411:455:3,115,-45.5,0,0,-0.0172435 -40151,3411:455:4,115.5,-45.5,0,0,-0.0169021 -40152,3411:456:3,116,-45.5,0,0,-0.0168831 -40153,3411:456:4,116.5,-45.5,0,0,-0.0171123 -40154,3411:457:3,117,-45.5,0,0,-0.017458 -40155,3411:457:4,117.5,-45.5,0,0,-0.0178189 -40156,3411:458:3,118,-45.5,0,0,-0.0180043 -40157,3411:458:4,118.5,-45.5,0,0,-0.0177749 -40158,3411:459:3,119,-45.5,0,0,-0.0172474 -40159,3411:459:4,119.5,-45.5,0,0,-0.0168301 -40160,3412:350:3,120,-45.5,0,0,-0.0169782 -40161,3412:350:4,120.5,-45.5,0,0,-0.0171662 -40162,3412:351:3,121,-45.5,0,0,-0.0165824 -40163,3412:351:4,121.5,-45.5,0,0,-0.0154747 -40164,3412:352:3,122,-45.5,0,0,-0.0149325 -40165,3412:352:4,122.5,-45.5,0,0,-0.0150165 -40166,3412:353:3,123,-45.5,0,0,-0.0157373 -40167,3412:353:4,123.5,-45.5,0,0,-0.0177869 -40168,3412:354:3,124,-45.5,0,0,-0.0197184 -40169,3412:354:4,124.5,-45.5,0,0,-0.0183765 -40170,3412:455:3,125,-45.5,0,0,-0.0165712 -40171,3412:455:4,125.5,-45.5,0,0,-0.0169859 -40172,3412:456:3,126,-45.5,0,0,-0.0178229 -40173,3412:456:4,126.5,-45.5,0,0,-0.0186768 -40174,3412:457:3,127,-45.5,0,0,-0.0193313 -40175,3412:457:4,127.5,-45.5,0,0,-0.0194799 -40176,3412:458:3,128,-45.5,0,0,-0.0196562 -40177,3412:458:4,128.5,-45.5,0,0,-0.0201678 -40178,3412:459:3,129,-45.5,0,0,-0.0207957 -40179,3412:459:4,129.5,-45.5,0,0,-0.0203779 -40180,3413:350:3,130,-45.5,0,0,-0.0202178 -40181,3413:350:4,130.5,-45.5,0,0,-0.0202178 -40182,3413:351:3,131,-45.5,0,0,-0.0194712 -40183,3413:351:4,131.5,-45.5,0,0,-0.0185803 -40184,3413:352:3,132,-45.5,0,0,-0.0180285 -40185,3413:352:4,132.5,-45.5,0,0,-0.0180043 -40186,3413:353:3,133,-45.5,0,0,-0.0185136 -40187,3413:353:4,133.5,-45.5,0,0,-0.0197584 -40188,3413:354:3,134,-45.5,0,0,-0.0209747 -40189,3413:354:4,134.5,-45.5,0,0,-0.0215845 -40190,3413:455:3,135,-45.5,0,0,-0.0217116 -40191,3413:455:4,135.5,-45.5,0,0,-0.021687 -40192,3413:456:3,136,-45.5,0,0,-0.0216724 -40193,3413:456:4,136.5,-45.5,0,0,-0.0216772 -40194,3413:457:3,137,-45.5,0,0,-0.0214389 -40195,3413:457:4,137.5,-45.5,0,0,-0.0206928 -40196,3413:458:3,138,-45.5,0,0,-0.0192879 -40197,3413:458:4,138.5,-45.5,0,0,-0.0180285 -40198,3413:459:3,139,-45.5,0,0,-0.01959 -40199,3413:459:4,139.5,-45.5,0,0,-0.0222224 -40200,3414:350:3,140,-45.5,0,0,-0.0229936 -40201,3414:350:4,140.5,-45.5,0,0,-0.023911 -40202,3414:351:3,141,-45.5,0,0,-0.023873 -40203,3414:351:4,141.5,-45.5,0,0,-0.0235246 -40204,3414:352:3,142,-45.5,0,0,-0.0227661 -40205,3414:352:4,142.5,-45.5,0,0,-0.020951 -40206,3414:353:3,143,-45.5,0,0,-0.0202954 -40207,3414:353:4,143.5,-45.5,0,0,-0.0188372 -40208,3414:354:3,144,-45.5,0,0,-0.0164194 -40209,3414:354:4,144.5,-45.5,0,0,-0.0145231 -40210,3414:455:3,145,-45.5,0,0,-0.0146374 -40211,3414:455:4,145.5,-45.5,0,0,-0.014733 -40212,3414:456:3,146,-45.5,0,0,-0.01544 -40213,3414:456:4,146.5,-45.5,0,0,-0.0169401 -40214,3414:457:3,147,-45.5,0,0,-0.0189392 -40215,3414:457:4,147.5,-45.5,0,0,-0.0224951 -40216,3414:458:3,148,-45.5,0,0,-0.0258773 -40217,3414:458:4,148.5,-45.5,0,0,-0.0308522 -40218,3414:459:3,149,-45.5,0,0,-0.0376111 -40219,3414:459:4,149.5,-45.5,0,0,-0.0390351 -40220,3415:350:3,150,-45.5,0,0,-0.0344307 -40221,3415:350:4,150.5,-45.5,0,0,-0.027889 -40222,3415:351:3,151,-45.5,0,0,-0.0249729 -40223,3415:351:4,151.5,-45.5,0,0,-0.0263209 -40224,3415:352:3,152,-45.5,0,0,-0.0294526 -40225,3415:352:4,152.5,-45.5,0,0,-0.0314771 -40226,3415:353:3,153,-45.5,0,0,-0.0327362 -40227,3415:353:4,153.5,-45.5,0,0,-0.0348821 -40228,3415:354:3,154,-45.5,0,0,-0.0352512 -40229,3415:354:4,154.5,-45.5,0,0,-0.030979 -40230,3415:455:3,155,-45.5,0,0,-0.0287445 -40231,3415:455:4,155.5,-45.5,0,0,-0.0311275 -40232,3415:456:3,156,-45.5,0,0,-0.0335991 -40233,3415:456:4,156.5,-45.5,0,0,-0.0328634 -40234,3415:457:3,157,-45.5,0,0,-0.0301302 -40235,3415:457:4,157.5,-45.5,0,0,-0.0287118 -40236,3415:458:3,158,-45.5,0,0,-0.0293522 -40237,3415:458:4,158.5,-45.5,0,0,-0.0306771 -40238,3415:459:3,159,-45.5,0,0,-0.0306004 -40239,3415:459:4,159.5,-45.5,0,0,-0.022643 -40240,3416:350:3,160,-45.5,0,0,-0.0199957 -40241,3416:350:4,160.5,-45.5,0,0,-0.0265489 -40242,3416:351:3,161,-45.5,0,0,-0.0279207 -40243,3416:351:4,161.5,-45.5,0,0,-0.03051 -40244,3416:352:3,162,-45.5,0,0,-0.0332481 -40245,3416:352:4,162.5,-45.5,0,0,-0.0325797 -40246,3416:353:3,163,-45.5,0,0,-0.0286534 -40247,3416:353:4,163.5,-45.5,0,0,-0.027662 -40248,3416:354:3,164,-45.5,0,0,-0.0283553 -40249,3416:354:4,164.5,-45.5,0,0,-0.0321148 -40250,3416:455:3,165,-45.5,0,0,-0.0380186 -40251,3416:455:4,165.5,-45.5,0,0,-0.0447134 -40252,3416:456:3,166,-45.5,0,0,-0.0502096 -40253,3416:456:4,166.5,-45.5,0,0,-0.0513056 -40254,3416:457:3,167,-45.5,0,0,-0.0503028 -40255,3416:457:4,167.5,-45.5,0,0,-0.0496307 -40256,3416:458:3,168,-45.5,0,0,-0.0493439 -40257,3416:458:4,168.5,-45.5,0,0,-0.0492525 -40258,3416:459:3,169,-45.5,0,0,-0.0490589 -40259,3416:459:4,169.5,-45.5,0,0,-0.0483703 -40260,3417:350:3,170,-45.5,0,0,-0.046515 -40261,3417:350:4,170.5,-45.5,0,0,-0.0427273 -40262,3417:351:3,171,-45.5,0,0,-0.0373192 -40263,3417:351:4,171.5,-45.5,0,0,-0.0330968 -40264,3417:352:3,172,-45.5,0,0,-0.0310497 -40265,3417:352:4,172.5,-45.5,0,0,-0.0294323 -40266,3417:353:3,173,-45.5,0,0,-0.0283747 -40267,3417:353:4,173.5,-45.5,0,0,-0.028882 -40268,3417:354:3,174,-45.5,0,0,-0.0294191 -40269,3417:354:4,174.5,-45.5,0,0,-0.0294994 -40270,3417:455:3,175,-45.5,0,0,-0.0302539 -40271,3417:455:4,175.5,-45.5,0,0,-0.03255 -40272,3417:456:3,176,-45.5,0,0,-0.0346913 -40273,3417:456:4,176.5,-45.5,0,0,-0.0338148 -40274,3417:457:3,177,-45.5,0,0,-0.0334766 -40275,3417:457:4,177.5,-45.5,0,0,-0.0342657 -40276,3417:458:3,178,-45.5,0,0,-0.0364489 -40277,3417:458:4,178.5,-45.5,0,0,-0.0392149 -40278,3417:459:3,179,-45.5,0,0,-0.0394677 -40279,3417:459:4,179.5,-45.5,0,0,-0.0394224 -40280,3418:350:3,180,-45.5,0,0,-0.0390622 -40281,5418:350:1,-180,-45,0,0,-0.0393412 -40282,5417:459:2,-179.5,-45,0,0,-0.0393412 -40283,5417:459:1,-179,-45,0,0,-0.0407394 -40284,5417:458:2,-178.5,-45,0,0,-0.042141 -40285,5417:458:1,-178,-45,0,0,-0.0428555 -40286,5417:457:2,-177.5,-45,0,0,-0.0436029 -40287,5417:457:1,-177,-45,0,0,-0.044641 -40288,5417:456:2,-176.5,-45,0,0,-0.0453371 -40289,5417:456:1,-176,-45,0,0,-0.0454523 -40290,5417:455:2,-175.5,-45,0,0,-0.0445279 -40291,5417:455:1,-175,-45,0,0,-0.0433323 -40292,5417:354:2,-174.5,-45,0,0,-0.0423941 -40293,5417:354:1,-174,-45,0,0,-0.0414292 -40294,5417:353:2,-173.5,-45,0,0,-0.039759 -40295,5417:353:1,-173,-45,0,0,-0.0372167 -40296,5417:352:2,-172.5,-45,0,0,-0.034628 -40297,5417:352:1,-172,-45,0,0,-0.0328709 -40298,5417:351:2,-171.5,-45,0,0,-0.0319687 -40299,5417:351:1,-171,-45,0,0,-0.0326169 -40300,5417:350:2,-170.5,-45,0,0,-0.0340473 -40301,5417:350:1,-170,-45,0,0,-0.0347946 -40302,5416:459:2,-169.5,-45,0,0,-0.034994 -40303,5416:459:1,-169,-45,0,0,-0.0358283 -40304,5416:458:2,-168.5,-45,0,0,-0.0367338 -40305,5416:458:1,-168,-45,0,0,-0.0365995 -40306,5416:457:2,-167.5,-45,0,0,-0.0346517 -40307,5416:457:1,-167,-45,0,0,-0.0320855 -40308,5416:456:2,-166.5,-45,0,0,-0.0312198 -40309,5416:456:1,-166,-45,0,0,-0.0331118 -40310,5416:455:2,-165.5,-45,0,0,-0.0337298 -40311,5416:455:1,-165,-45,0,0,-0.0340941 -40312,5416:354:2,-164.5,-45,0,0,-0.0342344 -40313,5416:354:1,-164,-45,0,0,-0.0342502 -40314,5416:353:2,-163.5,-45,0,0,-0.0344778 -40315,5416:353:1,-163,-45,0,0,-0.0357137 -40316,5416:352:2,-162.5,-45,0,0,-0.0378535 -40317,5416:352:1,-162,-45,0,0,-0.0392779 -40318,5416:351:2,-161.5,-45,0,0,-0.0387051 -40319,5416:351:1,-161,-45,0,0,-0.0369701 -40320,5416:350:2,-160.5,-45,0,0,-0.0345725 -40321,5416:350:1,-160,-45,0,0,-0.0327362 -40322,5415:459:2,-159.5,-45,0,0,-0.0328634 -40323,5415:459:1,-159,-45,0,0,-0.0343521 -40324,5415:458:2,-158.5,-45,0,0,-0.0358201 -40325,5415:458:1,-158,-45,0,0,-0.0362326 -40326,5415:457:2,-157.5,-45,0,0,-0.0369618 -40327,5415:457:1,-157,-45,0,0,-0.0386252 -40328,5415:456:2,-156.5,-45,0,0,-0.0380623 -40329,5415:456:1,-156,-45,0,0,-0.0386341 -40330,5415:455:2,-155.5,-45,0,0,-0.0391789 -40331,5415:455:1,-155,-45,0,0,-0.0392688 -40332,5415:354:2,-154.5,-45,0,0,-0.038211 -40333,5415:354:1,-154,-45,0,0,-0.035624 -40334,5415:353:2,-153.5,-45,0,0,-0.0348743 -40335,5415:353:1,-153,-45,0,0,-0.0321441 -40336,5415:352:2,-152.5,-45,0,0,-0.0301166 -40337,5415:352:1,-152,-45,0,0,-0.0324683 -40338,5415:351:2,-151.5,-45,0,0,-0.0338922 -40339,5415:351:1,-151,-45,0,0,-0.0356892 -40340,5415:350:2,-150.5,-45,0,0,-0.0414866 -40341,5415:350:1,-150,-45,0,0,-0.0446513 -40342,5414:459:2,-149.5,-45,0,0,-0.0439461 -40343,5414:459:1,-149,-45,0,0,-0.0439764 -40344,5414:458:2,-148.5,-45,0,0,-0.0431031 -40345,5414:458:1,-148,-45,0,0,-0.0406926 -40346,5414:457:2,-147.5,-45,0,0,-0.0391789 -40347,5414:457:1,-147,-45,0,0,-0.0418125 -40348,5414:456:2,-146.5,-45,0,0,-0.0497345 -40349,5414:456:1,-146,-45,0,0,-0.0517363 -40350,5414:455:2,-145.5,-45,0,0,-0.0501048 -40351,5414:455:1,-145,-45,0,0,-0.0517245 -40352,5414:354:2,-144.5,-45,0,0,-0.0550919 -40353,5414:354:1,-144,-45,0,0,-0.0536979 -40354,5414:353:2,-143.5,-45,0,0,-0.0529289 -40355,5414:353:1,-143,-45,0,0,-0.0528426 -40356,5414:352:2,-142.5,-45,0,0,-0.0539737 -40357,5414:352:1,-142,-45,0,0,-0.0541501 -40358,5414:351:2,-141.5,-45,0,0,-0.0432924 -40359,5414:351:1,-141,-45,0,0,-0.0336682 -40360,5414:350:2,-140.5,-45,0,0,-0.0410592 -40361,5414:350:1,-140,-45,0,0,-0.0452534 -40362,5413:459:2,-139.5,-45,0,0,-0.0444765 -40363,5413:459:1,-139,-45,0,0,-0.0434024 -40364,5413:458:2,-138.5,-45,0,0,-0.0420635 -40365,5413:458:1,-138,-45,0,0,-0.0414484 -40366,5413:457:2,-137.5,-45,0,0,-0.0411634 -40367,5413:457:1,-137,-45,0,0,-0.0407488 -40368,5413:456:2,-136.5,-45,0,0,-0.039988 -40369,5413:456:1,-136,-45,0,0,-0.0386785 -40370,5413:455:2,-135.5,-45,0,0,-0.0371229 -40371,5413:455:1,-135,-45,0,0,-0.0361911 -40372,5413:354:2,-134.5,-45,0,0,-0.035348 -40373,5413:354:1,-134,-45,0,0,-0.0346121 -40374,5413:353:2,-133.5,-45,0,0,-0.0345173 -40375,5413:353:1,-133,-45,0,0,-0.0351465 -40376,5413:352:2,-132.5,-45,0,0,-0.0369786 -40377,5413:352:1,-132,-45,0,0,-0.0430834 -40378,5413:351:2,-131.5,-45,0,0,-0.0528182 -40379,5413:351:1,-131,-45,0,0,-0.0596879 -40380,5413:350:2,-130.5,-45,0,0,-0.0578868 -40381,5413:350:1,-130,-45,0,0,-0.0546824 -40382,5412:459:2,-129.5,-45,0,0,-0.0497228 -40383,5412:459:1,-129,-45,0,0,-0.0504548 -40384,5412:458:2,-128.5,-45,0,0,-0.0516044 -40385,5412:458:1,-128,-45,0,0,-0.0503028 -40386,5412:457:2,-127.5,-45,0,0,-0.048169 -40387,5412:457:1,-127,-45,0,0,-0.0472523 -40388,5412:456:2,-126.5,-45,0,0,-0.0468064 -40389,5412:456:1,-126,-45,0,0,-0.0465363 -40390,5412:455:2,-125.5,-45,0,0,-0.0461827 -40391,5412:455:1,-125,-45,0,0,-0.0456205 -40392,5412:354:2,-124.5,-45,0,0,-0.0444355 -40393,5412:354:1,-124,-45,0,0,-0.0433423 -40394,5412:353:2,-123.5,-45,0,0,-0.0417452 -40395,5412:353:1,-123,-45,0,0,-0.0406926 -40396,5412:352:2,-122.5,-45,0,0,-0.0407488 -40397,5412:352:1,-122,-45,0,0,-0.0414388 -40398,5412:351:2,-121.5,-45,0,0,-0.0409179 -40399,5412:351:1,-121,-45,0,0,-0.0397041 -40400,5412:350:2,-120.5,-45,0,0,-0.03891 -40401,5412:350:1,-120,-45,0,0,-0.0384043 -40402,5411:459:2,-119.5,-45,0,0,-0.0381671 -40403,5411:459:1,-119,-45,0,0,-0.0380972 -40404,5411:458:2,-118.5,-45,0,0,-0.0382021 -40405,5411:458:1,-118,-45,0,0,-0.0384396 -40406,5411:457:2,-117.5,-45,0,0,-0.0388387 -40407,5411:457:1,-117,-45,0,0,-0.0393412 -40408,5411:456:2,-116.5,-45,0,0,-0.0392961 -40409,5411:456:1,-116,-45,0,0,-0.0386962 -40410,5411:455:2,-115.5,-45,0,0,-0.0382637 -40411,5411:455:1,-115,-45,0,0,-0.0379142 -40412,5411:354:2,-114.5,-45,0,0,-0.0377147 -40413,5411:354:1,-114,-45,0,0,-0.037758 -40414,5411:353:2,-113.5,-45,0,0,-0.0378185 -40415,5411:353:1,-113,-45,0,0,-0.037285 -40416,5411:352:2,-112.5,-45,0,0,-0.0364823 -40417,5411:352:1,-112,-45,0,0,-0.0356158 -40418,5411:351:2,-111.5,-45,0,0,-0.0345884 -40419,5411:351:1,-111,-45,0,0,-0.0337992 -40420,5411:350:2,-110.5,-45,0,0,-0.0336607 -40421,5411:350:1,-110,-45,0,0,-0.0338612 -40422,5410:459:2,-109.5,-45,0,0,-0.0337608 -40423,5410:459:1,-109,-45,0,0,-0.0332634 -40424,5410:458:2,-108.5,-45,0,0,-0.0326615 -40425,5410:458:1,-108,-45,0,0,-0.0321956 -40426,5410:457:2,-107.5,-45,0,0,-0.0319105 -40427,5410:457:1,-107,-45,0,0,-0.0316281 -40428,5410:456:2,-106.5,-45,0,0,-0.0314626 -40429,5410:456:1,-106,-45,0,0,-0.0317363 -40430,5410:455:2,-105.5,-45,0,0,-0.0322395 -40431,5410:455:1,-105,-45,0,0,-0.0326765 -40432,5410:354:2,-104.5,-45,0,0,-0.0327063 -40433,5410:354:1,-104,-45,0,0,-0.0320563 -40434,5410:353:2,-103.5,-45,0,0,-0.0312839 -40435,5410:353:1,-103,-45,0,0,-0.0309648 -40436,5410:352:2,-102.5,-45,0,0,-0.0311559 -40437,5410:352:1,-102,-45,0,0,-0.0312839 -40438,5410:351:2,-101.5,-45,0,0,-0.030705 -40439,5410:351:1,-101,-45,0,0,-0.0300754 -40440,5410:350:2,-100.5,-45,0,0,-0.0303091 -40441,5410:350:1,-100,-45,0,0,-0.0311418 -40442,5409:459:2,-99.5,-45,0,0,-0.0320784 -40443,5409:459:1,-99,-45,0,0,-0.0323871 -40444,5409:458:2,-98.5,-45,0,0,-0.0317146 -40445,5409:458:1,-98,-45,0,0,-0.0305586 -40446,5409:457:2,-97.5,-45,0,0,-0.0297082 -40447,5409:457:1,-97,-45,0,0,-0.0294323 -40448,5409:456:2,-96.5,-45,0,0,-0.0295464 -40449,5409:456:1,-96,-45,0,0,-0.0296878 -40450,5409:455:2,-95.5,-45,0,0,-0.0297285 -40451,5409:455:1,-95,-45,0,0,-0.0298573 -40452,5409:354:2,-94.5,-45,0,0,-0.030192 -40453,5409:354:1,-94,-45,0,0,-0.0304613 -40454,5409:353:2,-93.5,-45,0,0,-0.0302815 -40455,5409:353:1,-93,-45,0,0,-0.0296676 -40456,5409:352:2,-92.5,-45,0,0,-0.0293188 -40457,5409:352:1,-92,-45,0,0,-0.0293721 -40458,5409:351:2,-91.5,-45,0,0,-0.0296878 -40459,5409:351:1,-91,-45,0,0,-0.0299593 -40460,5409:350:2,-90.5,-45,0,0,-0.0300139 -40461,5409:350:1,-90,-45,0,0,-0.0298777 -40462,5408:459:2,-89.5,-45,0,0,-0.0297758 -40463,5408:459:1,-89,-45,0,0,-0.0299458 -40464,5408:458:2,-88.5,-45,0,0,-0.030247 -40465,5408:458:1,-88,-45,0,0,-0.0303852 -40466,5408:457:2,-87.5,-45,0,0,-0.0303989 -40467,5408:457:1,-87,-45,0,0,-0.0304059 -40468,5408:456:2,-86.5,-45,0,0,-0.03074 -40469,5408:456:1,-86,-45,0,0,-0.0311487 -40470,5408:455:2,-85.5,-45,0,0,-0.0311418 -40471,5408:455:1,-85,-45,0,0,-0.0308102 -40472,5408:354:2,-84.5,-45,0,0,-0.0303091 -40473,5408:354:1,-84,-45,0,0,-0.0298302 -40474,5408:353:2,-83.5,-45,0,0,-0.0298097 -40475,5408:353:1,-83,-45,0,0,-0.0302128 -40476,5408:352:2,-82.5,-45,0,0,-0.0301784 -40477,5408:352:1,-82,-45,0,0,-0.0297421 -40478,5408:351:2,-81.5,-45,0,0,-0.0293789 -40479,5408:351:1,-81,-45,0,0,-0.0292989 -40480,5408:350:2,-80.5,-45,0,0,-0.0295667 -40481,5408:350:1,-80,-45,0,0,-0.0300276 -40482,5407:459:2,-79.5,-45,0,0,-0.0304128 -40483,5407:459:1,-79,-45,0,0,-0.030733 -40484,5407:458:2,-78.5,-45,0,0,-0.0331496 -40485,5407:458:1,-78,-45,0,0,-0.0346676 -40486,5407:457:2,-77.5,-45,0,0,-0.0341798 -40487,5407:457:1,-77,-45,0,0,-0.0326467 -40488,5407:456:2,-76.5,-45,0,0,-0.0312911 -40489,5407:456:1,-76,-45,0,0,-0.0321441 -40490,5407:455:2,-75.5,-45,0,0,-0.0337223 -40491,5407:455:1,-75,-45,0,0,-0.0345017 -40492,5407:354:2,-74.5,-45,0,0,-0.0358777 -40493,5407:354:1,-74,-45,0,0,-0.0382198 -40494,5407:353:2,-73.5,-45,0,0,-0.040034 -40495,5407:353:1,-73,-45,0,0,-0.043744 -40496,5407:352:2,-72.5,-45,0,0,-0.0463109 -40497,5407:352:1,-72,-45,0,0,-0.0495731 -40498,5406:456:1,-66,-45,0,0,-0.0518689 -40499,5406:455:2,-65.5,-45,0,0,-0.0396313 -40500,5406:455:1,-65,-45,0,0,-0.0355182 -40501,5406:354:2,-64.5,-45,0,0,-0.0323427 -40502,5406:354:1,-64,-45,0,0,-0.0314843 -40503,5406:353:2,-63.5,-45,0,0,-0.0310851 -40504,5406:353:1,-63,-45,0,0,-0.031163 -40505,5406:352:2,-62.5,-45,0,0,-0.03067 -40506,5406:352:1,-62,-45,0,0,-0.029864 -40507,5406:351:2,-61.5,-45,0,0,-0.0286273 -40508,5406:351:1,-61,-45,0,0,-0.0285817 -40509,5406:350:2,-60.5,-45,0,0,-0.0289808 -40510,5406:350:1,-60,-45,0,0,-0.0297353 -40511,5405:459:2,-59.5,-45,0,0,-0.030192 -40512,5405:459:1,-59,-45,0,0,-0.0319761 -40513,5405:458:2,-58.5,-45,0,0,-0.0308732 -40514,5405:458:1,-58,-45,0,0,-0.0324313 -40515,5405:457:2,-57.5,-45,0,0,-0.0322101 -40516,5405:457:1,-57,-45,0,0,-0.0322175 -40517,5405:456:2,-56.5,-45,0,0,-0.0308945 -40518,5405:456:1,-56,-45,0,0,-0.0297014 -40519,5405:455:2,-55.5,-45,0,0,-0.0281883 -40520,5405:455:1,-55,-45,0,0,-0.0262732 -40521,5405:354:2,-54.5,-45,0,0,-0.0242872 -40522,5405:354:1,-54,-45,0,0,-0.0233129 -40523,5405:353:2,-53.5,-45,0,0,-0.022546 -40524,5405:353:1,-53,-45,0,0,-0.0223684 -40525,5405:352:2,-52.5,-45,0,0,-0.0222776 -40526,5405:352:1,-52,-45,0,0,-0.0220027 -40527,5405:351:2,-51.5,-45,0,0,-0.0209321 -40528,5405:351:1,-51,-45,0,0,-0.0197006 -40529,5405:350:2,-50.5,-45,0,0,-0.0187188 -40530,5405:350:1,-50,-45,0,0,-0.0177031 -40531,5404:459:2,-49.5,-45,0,0,-0.0166272 -40532,5404:459:1,-49,-45,0,0,-0.0162397 -40533,5404:458:2,-48.5,-45,0,0,-0.0159542 -40534,5404:458:1,-48,-45,0,0,-0.0171392 -40535,5404:457:2,-47.5,-45,0,0,-0.0173641 -40536,5404:457:1,-47,-45,0,0,-0.015762 -40537,5404:456:2,-46.5,-45,0,0,-0.0152268 -40538,5404:456:1,-46,-45,0,0,-0.0150738 -40539,5404:455:2,-45.5,-45,0,0,-0.0148158 -40540,5404:455:1,-45,-45,0,0,-0.0148324 -40541,5404:354:2,-44.5,-45,0,0,-0.0149425 -40542,5404:354:1,-44,-45,0,0,-0.0147066 -40543,5404:353:2,-43.5,-45,0,0,-0.0141758 -40544,5404:353:1,-43,-45,0,0,-0.0137135 -40545,5404:352:2,-42.5,-45,0,0,-0.013473 -40546,5404:352:1,-42,-45,0,0,-0.013317 -40547,5404:351:2,-41.5,-45,0,0,-0.0131954 -40548,5404:351:1,-41,-45,0,0,-0.0131394 -40549,5404:350:2,-40.5,-45,0,0,-0.0129902 -40550,5404:350:1,-40,-45,0,0,-0.0129873 -40551,5403:459:2,-39.5,-45,0,0,-0.0133529 -40552,5403:459:1,-39,-45,0,0,-0.0142746 -40553,5403:458:2,-38.5,-45,0,0,-0.0129062 -40554,5403:458:1,-38,-45,0,0,-0.0125362 -40555,5403:457:2,-37.5,-45,0,0,-0.0125671 -40556,5403:457:1,-37,-45,0,0,-0.0139271 -40557,5403:456:1,-36,-45,0,0,-0.012754 -40558,5403:455:2,-35.5,-45,0,0,-0.0113388 -40559,5403:455:1,-35,-45,0,0,-0.011002 -40560,5403:354:2,-34.5,-45,0,0,-0.0107254 -40561,5403:354:1,-34,-45,0,0,-0.00991934 -40562,5403:353:2,-33.5,-45,0,0,-0.00952892 -40563,5403:353:1,-33,-45,0,0,-0.0100688 -40564,5403:352:2,-32.5,-45,0,0,-0.0112104 -40565,5403:352:1,-32,-45,0,0,-0.0123498 -40566,5403:351:2,-31.5,-45,0,0,-0.0127284 -40567,5403:351:1,-31,-45,0,0,-0.0121579 -40568,5403:350:2,-30.5,-45,0,0,-0.0108458 -40569,5403:350:1,-30,-45,0,0,-0.00955445 -40570,5402:459:2,-29.5,-45,0,0,-0.00920924 -40571,5402:459:1,-29,-45,0,0,-0.00901826 -40572,5402:458:2,-28.5,-45,0,0,-0.0086559 -40573,5402:458:1,-28,-45,0,0,-0.00852951 -40574,5402:457:2,-27.5,-45,0,0,-0.00875877 -40575,5402:457:1,-27,-45,0,0,-0.00911126 -40576,5402:456:2,-26.5,-45,0,0,-0.00940854 -40577,5402:456:1,-26,-45,0,0,-0.0100822 -40578,5402:455:2,-25.5,-45,0,0,-0.0103675 -40579,5402:455:1,-25,-45,0,0,-0.0099793 -40580,5402:354:2,-24.5,-45,0,0,-0.0108798 -40581,5402:354:1,-24,-45,0,0,-0.0120443 -40582,5402:353:2,-23.5,-45,0,0,-0.0121524 -40583,5402:353:1,-23,-45,0,0,-0.0115874 -40584,5402:352:2,-22.5,-45,0,0,-0.0117648 -40585,5402:352:1,-22,-45,0,0,-0.012525 -40586,5402:351:2,-21.5,-45,0,0,-0.0130048 -40587,5402:351:1,-21,-45,0,0,-0.0130748 -40588,5402:350:2,-20.5,-45,0,0,-0.0128485 -40589,5402:350:1,-20,-45,0,0,-0.0125981 -40590,5401:459:2,-19.5,-45,0,0,-0.012717 -40591,5401:459:1,-19,-45,0,0,-0.012886 -40592,5401:458:2,-18.5,-45,0,0,-0.012615 -40593,5401:458:1,-18,-45,0,0,-0.0120334 -40594,5401:457:2,-17.5,-45,0,0,-0.0120039 -40595,5401:457:1,-17,-45,0,0,-0.0123332 -40596,5401:456:2,-16.5,-45,0,0,-0.0135851 -40597,5401:456:1,-16,-45,0,0,-0.0138929 -40598,5401:455:2,-15.5,-45,0,0,-0.0131866 -40599,5401:455:1,-15,-45,0,0,-0.0120146 -40600,5401:354:2,-14.5,-45,0,0,-0.0115511 -40601,5401:354:1,-14,-45,0,0,-0.0124106 -40602,5401:353:2,-13.5,-45,0,0,-0.012938 -40603,5401:353:1,-13,-45,0,0,-0.0132131 -40604,5401:352:2,-12.5,-45,0,0,-0.0136248 -40605,5401:352:1,-12,-45,0,0,-0.0139208 -40606,5401:351:2,-11.5,-45,0,0,-0.0138091 -40607,5401:351:1,-11,-45,0,0,-0.0134791 -40608,5401:350:2,-10.5,-45,0,0,-0.013225 -40609,5401:350:1,-10,-45,0,0,-0.0127598 -40610,5400:459:2,-9.5,-45,0,0,-0.0121579 -40611,5400:459:1,-9,-45,0,0,-0.0121362 -40612,5400:458:2,-8.5,-45,0,0,-0.0121226 -40613,5400:458:1,-8,-45,0,0,-0.0122124 -40614,5400:457:2,-7.5,-45,0,0,-0.0121199 -40615,5400:457:1,-7,-45,0,0,-0.011897 -40616,5400:456:2,-6.5,-45,0,0,-0.0116679 -40617,5400:456:1,-6,-45,0,0,-0.0110982 -40618,5400:455:2,-5.5,-45,0,0,-0.0102846 -40619,5400:455:1,-5,-45,0,0,-0.0100665 -40620,5400:354:2,-4.5,-45,0,0,-0.00995703 -40621,5400:354:1,-4,-45,0,0,-0.00967455 -40622,5400:353:2,-3.5,-45,0,0,-0.00935204 -40623,5400:353:1,-3,-45,0,0,-0.00923598 -40624,5400:352:2,-2.5,-45,0,0,-0.00907476 -40625,5400:352:1,-2,-45,0,0,-0.00887668 -40626,5400:351:2,-1.5,-45,0,0,-0.00877636 -40627,5400:351:1,-1,-45,0,0,-0.00879787 -40628,5400:350:2,-0.5,-45,0,0,-0.00888061 -40629,3400:350:2,0,-45,0,0,-0.00901225 -40630,3400:350:2,0.5,-45,0,0,-0.00901023 -40631,3400:351:1,1,-45,0,0,-0.00873146 -40632,3400:351:2,1.5,-45,0,0,-0.00845197 -40633,3400:352:1,2,-45,0,0,-0.0082345 -40634,3400:352:2,2.5,-45,0,0,-0.00776604 -40635,3400:353:1,3,-45,0,0,-0.00749595 -40636,3400:353:2,3.5,-45,0,0,-0.00759504 -40637,3400:354:1,4,-45,0,0,-0.00760857 -40638,3400:354:2,4.5,-45,0,0,-0.00753107 -40639,3400:455:1,5,-45,0,0,-0.00744607 -40640,3400:455:2,5.5,-45,0,0,-0.00737675 -40641,3400:456:1,6,-45,0,0,-0.00734565 -40642,3400:456:2,6.5,-45,0,0,-0.00731955 -40643,3400:457:1,7,-45,0,0,-0.00728701 -40644,3400:457:2,7.5,-45,0,0,-0.0072369 -40645,3400:458:1,8,-45,0,0,-0.00721281 -40646,3400:458:2,8.5,-45,0,0,-0.00720801 -40647,3400:459:1,9,-45,0,0,-0.00719515 -40648,3400:459:2,9.5,-45,0,0,-0.0071712 -40649,3401:350:1,10,-45,0,0,-0.00713457 -40650,3401:350:2,10.5,-45,0,0,-0.0071045 -40651,3401:351:1,11,-45,0,0,-0.00706822 -40652,3401:351:2,11.5,-45,0,0,-0.00713302 -40653,3401:352:1,12,-45,0,0,-0.00731463 -40654,3401:352:2,12.5,-45,0,0,-0.00741296 -40655,3401:353:1,13,-45,0,0,-0.00741462 -40656,3401:353:2,13.5,-45,0,0,-0.00738497 -40657,3401:354:1,14,-45,0,0,-0.0074031 -40658,3401:354:2,14.5,-45,0,0,-0.00745599 -40659,3401:455:1,15,-45,0,0,-0.00748929 -40660,3401:455:2,15.5,-45,0,0,-0.00750931 -40661,3401:456:1,16,-45,0,0,-0.0075344 -40662,3401:456:2,16.5,-45,0,0,-0.00752268 -40663,3401:457:1,17,-45,0,0,-0.00747429 -40664,3401:457:2,17.5,-45,0,0,-0.00743611 -40665,3401:458:1,18,-45,0,0,-0.00741956 -40666,3401:458:2,18.5,-45,0,0,-0.00745766 -40667,3401:459:1,19,-45,0,0,-0.00753107 -40668,3401:459:2,19.5,-45,0,0,-0.00761705 -40669,3402:350:1,20,-45,0,0,-0.00770229 -40670,3402:350:2,20.5,-45,0,0,-0.00775565 -40671,3402:351:1,21,-45,0,0,-0.00775049 -40672,3402:351:2,21.5,-45,0,0,-0.00770229 -40673,3402:352:1,22,-45,0,0,-0.0076018 -40674,3402:352:2,22.5,-45,0,0,-0.00732278 -40675,3402:353:1,23,-45,0,0,-0.00724984 -40676,3402:353:2,23.5,-45,0,0,-0.0074031 -40677,3402:354:1,24,-45,0,0,-0.00757649 -40678,3402:354:2,24.5,-45,0,0,-0.00770575 -40679,3402:455:1,25,-45,0,0,-0.00774533 -40680,3402:455:2,25.5,-45,0,0,-0.00774186 -40681,3402:456:1,26,-45,0,0,-0.00748593 -40682,3402:456:2,26.5,-45,0,0,-0.00777813 -40683,3402:457:1,27,-45,0,0,-0.00811249 -40684,3402:457:2,27.5,-45,0,0,-0.00810891 -40685,3402:458:1,28,-45,0,0,-0.00799589 -40686,3402:458:2,28.5,-45,0,0,-0.00844065 -40687,3402:459:1,29,-45,0,0,-0.00853142 -40688,3402:459:2,29.5,-45,0,0,-0.00900018 -40689,3403:350:1,30,-45,0,0,-0.00966165 -40690,3403:350:2,30.5,-45,0,0,-0.0100665 -40691,3403:351:1,31,-45,0,0,-0.0101999 -40692,3403:351:2,31.5,-45,0,0,-0.0101976 -40693,3403:352:1,32,-45,0,0,-0.010098 -40694,3403:352:2,32.5,-45,0,0,-0.00917035 -40695,3403:353:1,33,-45,0,0,-0.0087959 -40696,3403:353:2,33.5,-45,0,0,-0.00883914 -40697,3403:354:1,34,-45,0,0,-0.00917441 -40698,3403:354:2,34.5,-45,0,0,-0.00963367 -40699,3403:455:1,35,-45,0,0,-0.00974601 -40700,3403:455:2,35.5,-45,0,0,-0.00958859 -40701,3403:456:1,36,-45,0,0,-0.00932496 -40702,3403:456:2,36.5,-45,0,0,-0.0093479 -40703,3403:457:1,37,-45,0,0,-0.0100195 -40704,3403:457:2,37.5,-45,0,0,-0.0105308 -40705,3403:458:1,38,-45,0,0,-0.0106419 -40706,3403:458:2,38.5,-45,0,0,-0.0102846 -40707,3403:459:1,39,-45,0,0,-0.00980491 -40708,3403:459:2,39.5,-45,0,0,-0.00977652 -40709,3404:350:1,40,-45,0,0,-0.0100643 -40710,3404:350:2,40.5,-45,0,0,-0.01015 -40711,3404:351:1,41,-45,0,0,-0.00977652 -40712,3404:351:2,41.5,-45,0,0,-0.00937715 -40713,3404:352:1,42,-45,0,0,-0.00923805 -40714,3404:352:2,42.5,-45,0,0,-0.00914991 -40715,3404:353:1,43,-45,0,0,-0.00915601 -40716,3404:353:2,43.5,-45,0,0,-0.00928141 -40717,3404:354:1,44,-45,0,0,-0.00941065 -40718,3404:354:2,44.5,-45,0,0,-0.00940642 -40719,3404:455:1,45,-45,0,0,-0.00937715 -40720,3404:455:2,45.5,-45,0,0,-0.00938341 -40721,3404:456:1,46,-45,0,0,-0.00943586 -40722,3404:456:2,46.5,-45,0,0,-0.00952892 -40723,3404:457:1,47,-45,0,0,-0.00961002 -40724,3404:457:2,47.5,-45,0,0,-0.00975258 -40725,3404:458:1,48,-45,0,0,-0.00983119 -40726,3404:458:2,48.5,-45,0,0,-0.00980712 -40727,3404:459:1,49,-45,0,0,-0.00980271 -40728,3404:459:2,49.5,-45,0,0,-0.00986639 -40729,3405:350:1,50,-45,0,0,-0.00997264 -40730,3405:350:2,50.5,-45,0,0,-0.0101228 -40731,3405:351:1,51,-45,0,0,-0.0101931 -40732,3405:351:2,51.5,-45,0,0,-0.0101251 -40733,3405:352:1,52,-45,0,0,-0.0100463 -40734,3405:352:2,52.5,-45,0,0,-0.0106134 -40735,3405:353:1,53,-45,0,0,-0.0109701 -40736,3405:353:2,53.5,-45,0,0,-0.0111679 -40737,3405:354:1,54,-45,0,0,-0.0115563 -40738,3405:354:2,54.5,-45,0,0,-0.0115589 -40739,3405:455:1,55,-45,0,0,-0.0109187 -40740,3405:455:2,55.5,-45,0,0,-0.00978091 -40741,3405:456:1,56,-45,0,0,-0.00982904 -40742,3405:456:2,56.5,-45,0,0,-0.0100172 -40743,3405:457:1,57,-45,0,0,-0.0101115 -40744,3405:457:2,57.5,-45,0,0,-0.010585 -40745,3405:458:1,58,-45,0,0,-0.0111007 -40746,3405:458:2,58.5,-45,0,0,-0.0112732 -40747,3405:459:1,59,-45,0,0,-0.0111554 -40748,3405:459:2,59.5,-45,0,0,-0.0110611 -40749,3406:350:1,60,-45,0,0,-0.0110389 -40750,3406:350:2,60.5,-45,0,0,-0.0110315 -40751,3406:351:1,61,-45,0,0,-0.0109139 -40752,3406:351:2,61.5,-45,0,0,-0.0106991 -40753,3406:352:1,62,-45,0,0,-0.0105992 -40754,3406:352:2,62.5,-45,0,0,-0.0108847 -40755,3406:353:1,63,-45,0,0,-0.0111704 -40756,3406:353:2,63.5,-45,0,0,-0.0113034 -40757,3406:354:1,64,-45,0,0,-0.0113794 -40758,3406:354:2,64.5,-45,0,0,-0.0114688 -40759,3406:455:1,65,-45,0,0,-0.0116993 -40760,3406:455:2,65.5,-45,0,0,-0.0119611 -40761,3406:456:1,66,-45,0,0,-0.0121552 -40762,3406:456:2,66.5,-45,0,0,-0.0122261 -40763,3406:457:1,67,-45,0,0,-0.0121552 -40764,3406:457:2,67.5,-45,0,0,-0.0119878 -40765,3406:458:1,68,-45,0,0,-0.0118492 -40766,3406:458:2,68.5,-45,0,0,-0.0118043 -40767,3406:459:1,69,-45,0,0,-0.0117859 -40768,3406:459:2,69.5,-45,0,0,-0.0116601 -40769,3407:350:1,70,-45,0,0,-0.0114483 -40770,3407:350:2,70.5,-45,0,0,-0.011243 -40771,3407:351:1,71,-45,0,0,-0.0110069 -40772,3407:351:2,71.5,-45,0,0,-0.0106919 -40773,3407:352:1,72,-45,0,0,-0.0104956 -40774,3407:352:2,72.5,-45,0,0,-0.0104886 -40775,3407:353:2,73.5,-45,0,0,-0.0104746 -40776,3407:354:1,74,-45,0,0,-0.0104116 -40777,3407:354:2,74.5,-45,0,0,-0.0103884 -40778,3407:455:1,75,-45,0,0,-0.0104558 -40779,3407:455:2,75.5,-45,0,0,-0.0105803 -40780,3407:456:1,76,-45,0,0,-0.01068 -40781,3407:456:2,76.5,-45,0,0,-0.0106514 -40782,3407:457:1,77,-45,0,0,-0.0104116 -40783,3407:457:2,77.5,-45,0,0,-0.0100105 -40784,3407:458:1,78,-45,0,0,-0.0095822 -40785,3407:458:2,78.5,-45,0,0,-0.00856572 -40786,3407:459:1,79,-45,0,0,-0.00778162 -40787,3407:459:2,79.5,-45,0,0,-0.00857143 -40788,3408:350:1,80,-45,0,0,-0.00900624 -40789,3408:350:2,80.5,-45,0,0,-0.00926487 -40790,3408:351:1,81,-45,0,0,-0.0100733 -40791,3408:351:2,81.5,-45,0,0,-0.0101931 -40792,3408:352:1,82,-45,0,0,-0.0101954 -40793,3408:352:2,82.5,-45,0,0,-0.0100127 -40794,3408:353:1,83,-45,0,0,-0.0100845 -40795,3408:353:2,83.5,-45,0,0,-0.0102067 -40796,3408:354:1,84,-45,0,0,-0.00990611 -40797,3408:354:2,84.5,-45,0,0,-0.0120227 -40798,3408:455:1,85,-45,0,0,-0.014899 -40799,3408:455:2,85.5,-45,0,0,-0.0146736 -40800,3408:456:1,86,-45,0,0,-0.0140462 -40801,3408:456:2,86.5,-45,0,0,-0.0141758 -40802,3408:457:1,87,-45,0,0,-0.0142363 -40803,3408:457:2,87.5,-45,0,0,-0.0141853 -40804,3408:458:1,88,-45,0,0,-0.0146474 -40805,3408:458:2,88.5,-45,0,0,-0.0161705 -40806,3408:459:1,89,-45,0,0,-0.0177031 -40807,3408:459:2,89.5,-45,0,0,-0.0175603 -40808,3409:350:1,90,-45,0,0,-0.0172319 -40809,3409:350:2,90.5,-45,0,0,-0.016781 -40810,3409:351:1,91,-45,0,0,-0.0157197 -40811,3409:351:2,91.5,-45,0,0,-0.0149862 -40812,3409:352:1,92,-45,0,0,-0.015278 -40813,3409:352:2,92.5,-45,0,0,-0.0162215 -40814,3409:353:1,93,-45,0,0,-0.0169212 -40815,3409:353:2,93.5,-45,0,0,-0.0166571 -40816,3409:354:1,94,-45,0,0,-0.0162397 -40817,3409:354:2,94.5,-45,0,0,-0.0157904 -40818,3409:455:1,95,-45,0,0,-0.0156212 -40819,3409:455:2,95.5,-45,0,0,-0.0152643 -40820,3409:456:1,96,-45,0,0,-0.0146703 -40821,3409:456:2,96.5,-45,0,0,-0.0143999 -40822,3409:457:1,97,-45,0,0,-0.0138866 -40823,3409:457:2,97.5,-45,0,0,-0.0130456 -40824,3409:458:1,98,-45,0,0,-0.0127341 -40825,3409:458:2,98.5,-45,0,0,-0.0126744 -40826,3409:459:1,99,-45,0,0,-0.0125671 -40827,3409:459:2,99.5,-45,0,0,-0.011937 -40828,3410:350:1,100,-45,0,0,-0.0113794 -40829,3410:350:2,100.5,-45,0,0,-0.0113922 -40830,3410:351:1,101,-45,0,0,-0.0115227 -40831,3410:351:2,101.5,-45,0,0,-0.0114509 -40832,3410:352:1,102,-45,0,0,-0.0115563 -40833,3410:352:2,102.5,-45,0,0,-0.0117622 -40834,3410:353:1,103,-45,0,0,-0.0113541 -40835,3410:353:2,103.5,-45,0,0,-0.0106158 -40836,3410:354:1,104,-45,0,0,-0.0103237 -40837,3410:354:2,104.5,-45,0,0,-0.010759 -40838,3410:455:1,105,-45,0,0,-0.0116392 -40839,3410:455:2,105.5,-45,0,0,-0.0120874 -40840,3410:456:1,106,-45,0,0,-0.0125615 -40841,3410:456:2,106.5,-45,0,0,-0.0130019 -40842,3410:457:1,107,-45,0,0,-0.0134459 -40843,3410:457:2,107.5,-45,0,0,-0.0140179 -40844,3410:458:1,108,-45,0,0,-0.0142299 -40845,3410:458:2,108.5,-45,0,0,-0.0141821 -40846,3410:459:1,109,-45,0,0,-0.0135517 -40847,3410:459:2,109.5,-45,0,0,-0.0126432 -40848,3411:350:1,110,-45,0,0,-0.0126631 -40849,3411:350:2,110.5,-45,0,0,-0.0134791 -40850,3411:351:1,111,-45,0,0,-0.013974 -40851,3411:351:2,111.5,-45,0,0,-0.0138679 -40852,3411:352:1,112,-45,0,0,-0.0139614 -40853,3411:352:2,112.5,-45,0,0,-0.0140713 -40854,3411:353:1,113,-45,0,0,-0.0145003 -40855,3411:353:2,113.5,-45,0,0,-0.0167246 -40856,3411:354:1,114,-45,0,0,-0.0183188 -40857,3411:354:2,114.5,-45,0,0,-0.0186851 -40858,3411:455:1,115,-45,0,0,-0.0186348 -40859,3411:455:2,115.5,-45,0,0,-0.0185427 -40860,3411:456:1,116,-45,0,0,-0.018723 -40861,3411:456:2,116.5,-45,0,0,-0.0195018 -40862,3411:457:1,117,-45,0,0,-0.0206649 -40863,3411:457:2,117.5,-45,0,0,-0.021497 -40864,3411:458:1,118,-45,0,0,-0.0220077 -40865,3411:458:2,118.5,-45,0,0,-0.0221223 -40866,3411:459:1,119,-45,0,0,-0.0214243 -40867,3411:459:2,119.5,-45,0,0,-0.0196651 -40868,3412:350:1,120,-45,0,0,-0.0176554 -40869,3412:350:2,120.5,-45,0,0,-0.0173446 -40870,3412:351:1,121,-45,0,0,-0.0173914 -40871,3412:351:2,121.5,-45,0,0,-0.0170931 -40872,3412:352:1,122,-45,0,0,-0.0170662 -40873,3412:352:2,122.5,-45,0,0,-0.0174306 -40874,3412:353:1,123,-45,0,0,-0.0184056 -40875,3412:353:2,123.5,-45,0,0,-0.0210363 -40876,3412:354:1,124,-45,0,0,-0.0213663 -40877,3412:354:2,124.5,-45,0,0,-0.0184595 -40878,3412:455:1,125,-45,0,0,-0.0168226 -40879,3412:455:2,125.5,-45,0,0,-0.0176554 -40880,3412:456:1,126,-45,0,0,-0.0185469 -40881,3412:456:2,126.5,-45,0,0,-0.018999 -40882,3412:457:1,127,-45,0,0,-0.019102 -40883,3412:457:2,127.5,-45,0,0,-0.0191234 -40884,3412:458:1,128,-45,0,0,-0.0192401 -40885,3412:458:2,128.5,-45,0,0,-0.0196076 -40886,3412:459:1,129,-45,0,0,-0.0206369 -40887,3412:459:2,129.5,-45,0,0,-0.0212414 -40888,3413:350:1,130,-45,0,0,-0.0206835 -40889,3413:350:2,130.5,-45,0,0,-0.0207208 -40890,3413:351:1,131,-45,0,0,-0.0206416 -40891,3413:351:2,131.5,-45,0,0,-0.01987 -40892,3413:352:1,132,-45,0,0,-0.0189905 -40893,3413:352:2,132.5,-45,0,0,-0.0186013 -40894,3413:353:1,133,-45,0,0,-0.0192879 -40895,3413:353:2,133.5,-45,0,0,-0.0209369 -40896,3413:354:1,134,-45,0,0,-0.0217116 -40897,3413:354:2,134.5,-45,0,0,-0.0216479 -40898,3413:455:1,135,-45,0,0,-0.0217116 -40899,3413:455:2,135.5,-45,0,0,-0.0219283 -40900,3413:456:1,136,-45,0,0,-0.0222626 -40901,3413:456:2,136.5,-45,0,0,-0.0224698 -40902,3413:457:1,137,-45,0,0,-0.0223382 -40903,3413:457:2,137.5,-45,0,0,-0.0216626 -40904,3413:458:1,138,-45,0,0,-0.0204469 -40905,3413:458:2,138.5,-45,0,0,-0.0192315 -40906,3413:459:1,139,-45,0,0,-0.0196695 -40907,3413:459:2,139.5,-45,0,0,-0.0215309 -40908,3414:350:1,140,-45,0,0,-0.0219878 -40909,3414:350:2,140.5,-45,0,0,-0.0231083 -40910,3414:351:1,141,-45,0,0,-0.0231657 -40911,3414:351:2,141.5,-45,0,0,-0.0236314 -40912,3414:352:1,142,-45,0,0,-0.0243367 -40913,3414:352:2,142.5,-45,0,0,-0.022328 -40914,3414:353:1,143,-45,0,0,-0.0204331 -40915,3414:353:2,143.5,-45,0,0,-0.0186432 -40916,3414:354:1,144,-45,0,0,-0.0158187 -40917,3414:354:2,144.5,-45,0,0,-0.0156212 -40918,3414:455:1,145,-45,0,0,-0.0161018 -40919,3414:455:2,145.5,-45,0,0,-0.0163641 -40920,3414:456:1,146,-45,0,0,-0.0163936 -40921,3414:456:2,146.5,-45,0,0,-0.0164194 -40922,3414:457:1,147,-45,0,0,-0.0206416 -40923,3414:457:2,147.5,-45,0,0,-0.0246806 -40924,3414:458:1,148,-45,0,0,-0.0276055 -40925,3414:458:2,148.5,-45,0,0,-0.0331799 -40926,3414:459:1,149,-45,0,0,-0.0404688 -40927,3414:459:2,149.5,-45,0,0,-0.040348 -40928,3415:350:1,150,-45,0,0,-0.0359105 -40929,3415:350:2,150.5,-45,0,0,-0.0286208 -40930,3415:351:1,151,-45,0,0,-0.025632 -40931,3415:351:2,151.5,-45,0,0,-0.0274617 -40932,3415:352:1,152,-45,0,0,-0.0293322 -40933,3415:352:2,152.5,-45,0,0,-0.0301715 -40934,3415:353:1,153,-45,0,0,-0.0330816 -40935,3415:353:2,153.5,-45,0,0,-0.0369362 -40936,3415:354:1,154,-45,0,0,-0.039098 -40937,3415:354:2,154.5,-45,0,0,-0.0368264 -40938,3415:455:1,155,-45,0,0,-0.0333697 -40939,3415:455:2,155.5,-45,0,0,-0.0328634 -40940,3415:456:1,156,-45,0,0,-0.0345489 -40941,3415:456:2,156.5,-45,0,0,-0.0329835 -40942,3415:457:1,157,-45,0,0,-0.0288624 -40943,3415:457:2,157.5,-45,0,0,-0.028381 -40944,3415:458:1,158,-45,0,0,-0.0292989 -40945,3415:458:2,158.5,-45,0,0,-0.0306142 -40946,3415:459:1,159,-45,0,0,-0.0307821 -40947,3415:459:2,159.5,-45,0,0,-0.027832 -40948,3416:350:1,160,-45,0,0,-0.0212031 -40949,3416:350:2,160.5,-45,0,0,-0.0209275 -40950,3416:351:1,161,-45,0,0,-0.0240139 -40951,3416:351:2,161.5,-45,0,0,-0.0284522 -40952,3416:352:1,162,-45,0,0,-0.0299866 -40953,3416:352:2,162.5,-45,0,0,-0.0286534 -40954,3416:353:1,163,-45,0,0,-0.0280861 -40955,3416:353:2,163.5,-45,0,0,-0.0285882 -40956,3416:354:1,164,-45,0,0,-0.0296542 -40957,3416:354:2,164.5,-45,0,0,-0.0357873 -40958,3416:455:1,165,-45,0,0,-0.0431031 -40959,3416:455:2,165.5,-45,0,0,-0.0499889 -40960,3416:456:1,166,-45,0,0,-0.0524387 -40961,3416:456:2,166.5,-45,0,0,-0.0508783 -40962,3416:457:1,167,-45,0,0,-0.0490131 -40963,3416:457:2,167.5,-45,0,0,-0.0484713 -40964,3416:458:1,168,-45,0,0,-0.0483703 -40965,3416:458:2,168.5,-45,0,0,-0.0484822 -40966,3416:459:1,169,-45,0,0,-0.0486962 -40967,3416:459:2,169.5,-45,0,0,-0.0487979 -40968,3417:350:1,170,-45,0,0,-0.0487752 -40969,3417:350:2,170.5,-45,0,0,-0.048359 -40970,3417:351:1,171,-45,0,0,-0.0468603 -40971,3417:351:2,171.5,-45,0,0,-0.0435226 -40972,3417:352:1,172,-45,0,0,-0.0393049 -40973,3417:352:2,172.5,-45,0,0,-0.0357873 -40974,3417:353:1,173,-45,0,0,-0.0334384 -40975,3417:353:2,173.5,-45,0,0,-0.0315487 -40976,3417:354:1,174,-45,0,0,-0.0298573 -40977,3417:354:2,174.5,-45,0,0,-0.0291725 -40978,3417:455:1,175,-45,0,0,-0.0293522 -40979,3417:455:2,175.5,-45,0,0,-0.0319396 -40980,3417:456:1,176,-45,0,0,-0.0348344 -40981,3417:456:2,176.5,-45,0,0,-0.0344858 -40982,3417:457:1,177,-45,0,0,-0.0341252 -40983,3417:457:2,177.5,-45,0,0,-0.0342423 -40984,3417:458:1,178,-45,0,0,-0.0348503 -40985,3417:458:2,178.5,-45,0,0,-0.0368771 -40986,3417:459:1,179,-45,0,0,-0.0399328 -40987,3417:459:2,179.5,-45,0,0,-0.0400247 -40988,3418:350:1,180,-45,0,0,-0.0393412 -40989,5418:140:3,-180,-44.5,0,0,-0.0404409 -40990,5417:249:4,-179.5,-44.5,0,0,-0.0408898 -40991,5417:249:3,-179,-44.5,0,0,-0.0417452 -40992,5417:248:4,-178.5,-44.5,0,0,-0.0423747 -40993,5417:248:3,-178,-44.5,0,0,-0.0430934 -40994,5417:247:4,-177.5,-44.5,0,0,-0.0449825 -40995,5417:247:3,-177,-44.5,0,0,-0.0467737 -40996,5417:246:4,-176.5,-44.5,0,0,-0.0475045 -40997,5417:246:3,-176,-44.5,0,0,-0.0473618 -40998,5417:245:4,-175.5,-44.5,0,0,-0.0465688 -40999,5417:245:3,-175,-44.5,0,0,-0.0455469 -41000,5417:144:4,-174.5,-44.5,0,0,-0.0462147 -41001,5417:144:3,-174,-44.5,0,0,-0.0477579 -41002,5417:143:4,-173.5,-44.5,0,0,-0.0478025 -41003,5417:143:3,-173,-44.5,0,0,-0.0458 -41004,5417:142:4,-172.5,-44.5,0,0,-0.0423649 -41005,5417:142:3,-172,-44.5,0,0,-0.0393049 -41006,5417:141:4,-171.5,-44.5,0,0,-0.0376456 -41007,5417:141:3,-171,-44.5,0,0,-0.037106 -41008,5417:140:4,-170.5,-44.5,0,0,-0.0370635 -41009,5417:140:3,-170,-44.5,0,0,-0.0369447 -41010,5416:249:4,-169.5,-44.5,0,0,-0.0367844 -41011,5416:249:3,-169,-44.5,0,0,-0.0380362 -41012,5416:248:4,-168.5,-44.5,0,0,-0.0388297 -41013,5416:248:3,-168,-44.5,0,0,-0.0382198 -41014,5416:247:4,-167.5,-44.5,0,0,-0.0362822 -41015,5416:247:3,-167,-44.5,0,0,-0.0331875 -41016,5416:246:4,-166.5,-44.5,0,0,-0.0320344 -41017,5416:246:3,-166,-44.5,0,0,-0.0335991 -41018,5416:245:4,-165.5,-44.5,0,0,-0.0337375 -41019,5416:245:3,-165,-44.5,0,0,-0.0336915 -41020,5416:144:4,-164.5,-44.5,0,0,-0.0338148 -41021,5416:144:3,-164,-44.5,0,0,-0.0339307 -41022,5416:143:4,-163.5,-44.5,0,0,-0.0341719 -41023,5416:143:3,-163,-44.5,0,0,-0.0351144 -41024,5416:142:4,-162.5,-44.5,0,0,-0.0372764 -41025,5416:142:3,-162,-44.5,0,0,-0.0398321 -41026,5416:141:4,-161.5,-44.5,0,0,-0.0405805 -41027,5416:141:3,-161,-44.5,0,0,-0.0390531 -41028,5416:140:4,-160.5,-44.5,0,0,-0.0373278 -41029,5416:140:3,-160,-44.5,0,0,-0.0361911 -41030,5415:249:4,-159.5,-44.5,0,0,-0.0364573 -41031,5415:249:3,-159,-44.5,0,0,-0.0381671 -41032,5415:248:4,-158.5,-44.5,0,0,-0.0402739 -41033,5415:248:3,-158,-44.5,0,0,-0.0403573 -41034,5415:247:4,-157.5,-44.5,0,0,-0.0380362 -41035,5415:247:3,-157,-44.5,0,0,-0.0389458 -41036,5415:246:4,-156.5,-44.5,0,0,-0.0411821 -41037,5415:246:3,-156,-44.5,0,0,-0.041928 -41038,5415:245:4,-155.5,-44.5,0,0,-0.0426586 -41039,5415:245:3,-155,-44.5,0,0,-0.0448993 -41040,5415:144:4,-154.5,-44.5,0,0,-0.0469145 -41041,5415:144:3,-154,-44.5,0,0,-0.0467737 -41042,5415:143:4,-153.5,-44.5,0,0,-0.0438349 -41043,5415:143:3,-153,-44.5,0,0,-0.03891 -41044,5415:142:4,-152.5,-44.5,0,0,-0.0348663 -41045,5415:142:3,-152,-44.5,0,0,-0.0330666 -41046,5415:141:4,-151.5,-44.5,0,0,-0.0330892 -41047,5415:141:3,-151,-44.5,0,0,-0.0339385 -41048,5415:140:4,-150.5,-44.5,0,0,-0.0359188 -41049,5415:140:3,-150,-44.5,0,0,-0.0412391 -41050,5414:249:4,-149.5,-44.5,0,0,-0.0454209 -41051,5414:249:3,-149,-44.5,0,0,-0.0470123 -41052,5414:248:4,-148.5,-44.5,0,0,-0.0478575 -41053,5414:248:3,-148,-44.5,0,0,-0.0489905 -41054,5414:247:4,-147.5,-44.5,0,0,-0.0507602 -41055,5414:247:3,-147,-44.5,0,0,-0.0537231 -41056,5414:246:4,-146.5,-44.5,0,0,-0.055634 -41057,5414:246:3,-146,-44.5,0,0,-0.0549123 -41058,5414:245:4,-145.5,-44.5,0,0,-0.0486061 -41059,5414:245:3,-145,-44.5,0,0,-0.0460335 -41060,5414:144:4,-144.5,-44.5,0,0,-0.0487979 -41061,5414:144:3,-144,-44.5,0,0,-0.052451 -41062,5414:143:4,-143.5,-44.5,0,0,-0.0539361 -41063,5414:143:3,-143,-44.5,0,0,-0.052524 -41064,5414:142:4,-142.5,-44.5,0,0,-0.0470123 -41065,5414:142:3,-142,-44.5,0,0,-0.0388474 -41066,5414:141:4,-141.5,-44.5,0,0,-0.0356076 -41067,5414:141:3,-141,-44.5,0,0,-0.0395223 -41068,5414:140:4,-140.5,-44.5,0,0,-0.0440679 -41069,5414:140:3,-140,-44.5,0,0,-0.0470994 -41070,5413:249:4,-139.5,-44.5,0,0,-0.0457367 -41071,5413:249:3,-139,-44.5,0,0,-0.0464182 -41072,5413:248:4,-138.5,-44.5,0,0,-0.0470342 -41073,5413:248:3,-138,-44.5,0,0,-0.0463433 -41074,5413:247:4,-137.5,-44.5,0,0,-0.0442105 -41075,5413:247:3,-137,-44.5,0,0,-0.0418798 -41076,5413:246:4,-136.5,-44.5,0,0,-0.0406087 -41077,5413:246:3,-136,-44.5,0,0,-0.0400983 -41078,5413:245:4,-135.5,-44.5,0,0,-0.0399605 -41079,5413:245:3,-135,-44.5,0,0,-0.0400708 -41080,5413:144:4,-134.5,-44.5,0,0,-0.0403109 -41081,5413:144:3,-134,-44.5,0,0,-0.040348 -41082,5413:143:4,-133.5,-44.5,0,0,-0.0409461 -41083,5413:143:3,-133,-44.5,0,0,-0.0429841 -41084,5413:142:4,-132.5,-44.5,0,0,-0.0479242 -41085,5413:142:3,-132,-44.5,0,0,-0.0567885 -41086,5413:141:4,-131.5,-44.5,0,0,-0.0630548 -41087,5413:141:3,-131,-44.5,0,0,-0.0615774 -41088,5413:140:4,-130.5,-44.5,0,0,-0.0569875 -41089,5413:140:3,-130,-44.5,0,0,-0.0543143 -41090,5412:249:4,-129.5,-44.5,0,0,-0.051127 -41091,5412:249:3,-129,-44.5,0,0,-0.0533243 -41092,5412:248:4,-128.5,-44.5,0,0,-0.0532747 -41093,5412:248:3,-128,-44.5,0,0,-0.0500817 -41094,5412:247:4,-127.5,-44.5,0,0,-0.0481911 -41095,5412:247:3,-127,-44.5,0,0,-0.0480242 -41096,5412:246:4,-126.5,-44.5,0,0,-0.0478025 -41097,5412:246:3,-126,-44.5,0,0,-0.0477029 -41098,5412:245:4,-125.5,-44.5,0,0,-0.0475925 -41099,5412:245:3,-125,-44.5,0,0,-0.0472743 -41100,5412:144:4,-124.5,-44.5,0,0,-0.0462682 -41101,5412:144:3,-124,-44.5,0,0,-0.0450031 -41102,5412:143:4,-123.5,-44.5,0,0,-0.0437843 -41103,5412:143:3,-123,-44.5,0,0,-0.0430437 -41104,5412:142:4,-122.5,-44.5,0,0,-0.043004 -41105,5412:142:3,-122,-44.5,0,0,-0.0432726 -41106,5412:141:4,-121.5,-44.5,0,0,-0.0429249 -41107,5412:141:3,-121,-44.5,0,0,-0.0416492 -41108,5412:140:4,-120.5,-44.5,0,0,-0.0413627 -41109,5412:140:3,-120,-44.5,0,0,-0.0417069 -41110,5411:249:4,-119.5,-44.5,0,0,-0.0422964 -41111,5411:249:3,-119,-44.5,0,0,-0.0427571 -41112,5411:248:4,-118.5,-44.5,0,0,-0.0429644 -41113,5411:248:3,-118,-44.5,0,0,-0.0428655 -41114,5411:247:4,-117.5,-44.5,0,0,-0.0423259 -41115,5411:247:3,-117,-44.5,0,0,-0.0412391 -41116,5411:246:4,-116.5,-44.5,0,0,-0.0400801 -41117,5411:246:3,-116,-44.5,0,0,-0.0396769 -41118,5411:245:4,-115.5,-44.5,0,0,-0.0394135 -41119,5411:245:3,-115,-44.5,0,0,-0.0390351 -41120,5411:144:4,-114.5,-44.5,0,0,-0.0387941 -41121,5411:144:3,-114,-44.5,0,0,-0.0390351 -41122,5411:143:4,-113.5,-44.5,0,0,-0.0383428 -41123,5411:143:3,-113,-44.5,0,0,-0.0372423 -41124,5411:142:4,-112.5,-44.5,0,0,-0.0364823 -41125,5411:142:3,-112,-44.5,0,0,-0.0357546 -41126,5411:141:4,-111.5,-44.5,0,0,-0.0351465 -41127,5411:141:3,-111,-44.5,0,0,-0.0348344 -41128,5411:140:4,-110.5,-44.5,0,0,-0.0348503 -41129,5411:140:3,-110,-44.5,0,0,-0.0349621 -41130,5410:249:4,-109.5,-44.5,0,0,-0.03505 -41131,5410:249:3,-109,-44.5,0,0,-0.03505 -41132,5410:248:4,-108.5,-44.5,0,0,-0.0348743 -41133,5410:248:3,-108,-44.5,0,0,-0.0344384 -41134,5410:247:4,-107.5,-44.5,0,0,-0.0337608 -41135,5410:247:3,-107,-44.5,0,0,-0.0331346 -41136,5410:246:4,-106.5,-44.5,0,0,-0.0328183 -41137,5410:246:3,-106,-44.5,0,0,-0.032976 -41138,5410:245:4,-105.5,-44.5,0,0,-0.0335072 -41139,5410:245:3,-105,-44.5,0,0,-0.0340316 -41140,5410:144:4,-104.5,-44.5,0,0,-0.034164 -41141,5410:144:3,-104,-44.5,0,0,-0.0333774 -41142,5410:143:4,-103.5,-44.5,0,0,-0.0323132 -41143,5410:143:3,-103,-44.5,0,0,-0.0321076 -41144,5410:142:4,-102.5,-44.5,0,0,-0.0327437 -41145,5410:142:3,-102,-44.5,0,0,-0.0331496 -41146,5410:141:4,-101.5,-44.5,0,0,-0.0324907 -41147,5410:141:3,-101,-44.5,0,0,-0.0313624 -41148,5410:140:4,-100.5,-44.5,0,0,-0.0311063 -41149,5410:140:3,-100,-44.5,0,0,-0.0319834 -41150,5409:249:4,-99.5,-44.5,0,0,-0.0335378 -41151,5409:249:3,-99,-44.5,0,0,-0.0339231 -41152,5409:248:4,-98.5,-44.5,0,0,-0.0334309 -41153,5409:248:3,-98,-44.5,0,0,-0.0327138 -41154,5409:247:4,-97.5,-44.5,0,0,-0.0320126 -41155,5409:247:3,-97,-44.5,0,0,-0.031556 -41156,5409:246:4,-96.5,-44.5,0,0,-0.0313624 -41157,5409:246:3,-96,-44.5,0,0,-0.0312198 -41158,5409:245:4,-95.5,-44.5,0,0,-0.0310709 -41159,5409:245:3,-95,-44.5,0,0,-0.0311204 -41160,5409:144:4,-94.5,-44.5,0,0,-0.031341 -41161,5409:144:3,-94,-44.5,0,0,-0.0314985 -41162,5409:143:4,-93.5,-44.5,0,0,-0.0315345 -41163,5409:143:3,-93,-44.5,0,0,-0.0314268 -41164,5409:142:4,-92.5,-44.5,0,0,-0.031384 -41165,5409:142:3,-92,-44.5,0,0,-0.0314126 -41166,5409:141:4,-91.5,-44.5,0,0,-0.0313053 -41167,5409:141:3,-91,-44.5,0,0,-0.0311559 -41168,5409:140:4,-90.5,-44.5,0,0,-0.0310851 -41169,5409:140:3,-90,-44.5,0,0,-0.031163 -41170,5408:249:4,-89.5,-44.5,0,0,-0.031434 -41171,5408:249:3,-89,-44.5,0,0,-0.0317581 -41172,5408:248:4,-88.5,-44.5,0,0,-0.0317292 -41173,5408:248:3,-88,-44.5,0,0,-0.0315417 -41174,5408:247:4,-87.5,-44.5,0,0,-0.0315272 -41175,5408:247:3,-87,-44.5,0,0,-0.0318668 -41176,5408:246:4,-86.5,-44.5,0,0,-0.0325129 -41177,5408:246:3,-86,-44.5,0,0,-0.0324907 -41178,5408:245:4,-85.5,-44.5,0,0,-0.0320197 -41179,5408:245:3,-85,-44.5,0,0,-0.0315705 -41180,5408:144:4,-84.5,-44.5,0,0,-0.0312198 -41181,5408:144:3,-84,-44.5,0,0,-0.030979 -41182,5408:143:4,-83.5,-44.5,0,0,-0.0310354 -41183,5408:143:3,-83,-44.5,0,0,-0.0312768 -41184,5408:142:4,-82.5,-44.5,0,0,-0.0311914 -41185,5408:142:3,-82,-44.5,0,0,-0.0308874 -41186,5408:141:4,-81.5,-44.5,0,0,-0.0308241 -41187,5408:141:3,-81,-44.5,0,0,-0.0312198 -41188,5408:140:4,-80.5,-44.5,0,0,-0.0316714 -41189,5408:140:3,-80,-44.5,0,0,-0.0317292 -41190,5407:249:4,-79.5,-44.5,0,0,-0.031513 -41191,5407:249:3,-79,-44.5,0,0,-0.0323427 -41192,5407:248:4,-78.5,-44.5,0,0,-0.0338225 -41193,5407:248:3,-78,-44.5,0,0,-0.0354776 -41194,5407:247:4,-77.5,-44.5,0,0,-0.0350823 -41195,5407:247:3,-77,-44.5,0,0,-0.032602 -41196,5407:246:4,-76.5,-44.5,0,0,-0.0332938 -41197,5407:246:3,-76,-44.5,0,0,-0.034024 -41198,5407:245:4,-75.5,-44.5,0,0,-0.0354451 -41199,5407:245:3,-75,-44.5,0,0,-0.0369533 -41200,5407:144:4,-74.5,-44.5,0,0,-0.040506 -41201,5407:144:3,-74,-44.5,0,0,-0.0411821 -41202,5407:143:4,-73.5,-44.5,0,0,-0.0473618 -41203,5406:247:3,-67,-44.5,0,0,-0.0577783 -41204,5406:246:4,-66.5,-44.5,0,0,-0.0435425 -41205,5406:246:3,-66,-44.5,0,0,-0.0383162 -41206,5406:245:4,-65.5,-44.5,0,0,-0.03436 -41207,5406:245:3,-65,-44.5,0,0,-0.0331496 -41208,5406:144:4,-64.5,-44.5,0,0,-0.0319105 -41209,5406:144:3,-64,-44.5,0,0,-0.0299662 -41210,5406:143:4,-63.5,-44.5,0,0,-0.0305516 -41211,5406:143:3,-63,-44.5,0,0,-0.030323 -41212,5406:142:4,-62.5,-44.5,0,0,-0.0299458 -41213,5406:142:3,-62,-44.5,0,0,-0.0298368 -41214,5406:141:4,-61.5,-44.5,0,0,-0.029093 -41215,5406:141:3,-61,-44.5,0,0,-0.0275679 -41216,5406:140:4,-60.5,-44.5,0,0,-0.0289611 -41217,5406:140:3,-60,-44.5,0,0,-0.0303575 -41218,5405:249:4,-59.5,-44.5,0,0,-0.031163 -41219,5405:249:3,-59,-44.5,0,0,-0.0323058 -41220,5405:248:4,-58.5,-44.5,0,0,-0.0315847 -41221,5405:248:3,-58,-44.5,0,0,-0.0315847 -41222,5405:247:4,-57.5,-44.5,0,0,-0.030733 -41223,5405:247:3,-57,-44.5,0,0,-0.0297758 -41224,5405:246:4,-56.5,-44.5,0,0,-0.0289941 -41225,5405:246:3,-56,-44.5,0,0,-0.0281947 -41226,5405:245:4,-55.5,-44.5,0,0,-0.027195 -41227,5405:245:3,-55,-44.5,0,0,-0.0259066 -41228,5405:144:4,-54.5,-44.5,0,0,-0.0248152 -41229,5405:144:3,-54,-44.5,0,0,-0.0243477 -41230,5405:143:4,-53.5,-44.5,0,0,-0.0240793 -41231,5405:143:3,-53,-44.5,0,0,-0.0241337 -41232,5405:142:4,-52.5,-44.5,0,0,-0.0243973 -41233,5405:142:3,-52,-44.5,0,0,-0.0240086 -41234,5405:141:4,-51.5,-44.5,0,0,-0.0234239 -41235,5405:141:3,-51,-44.5,0,0,-0.0228383 -41236,5405:140:4,-50.5,-44.5,0,0,-0.0221623 -41237,5405:140:3,-50,-44.5,0,0,-0.0213134 -41238,5404:249:4,-49.5,-44.5,0,0,-0.0202954 -41239,5404:249:3,-49,-44.5,0,0,-0.0182529 -41240,5404:248:4,-48.5,-44.5,0,0,-0.016887 -41241,5404:248:3,-48,-44.5,0,0,-0.017201 -41242,5404:247:4,-47.5,-44.5,0,0,-0.0174385 -41243,5404:247:3,-47,-44.5,0,0,-0.0174463 -41244,5404:246:4,-46.5,-44.5,0,0,-0.0166833 -41245,5404:246:3,-46,-44.5,0,0,-0.0160224 -41246,5404:245:4,-45.5,-44.5,0,0,-0.0151348 -41247,5404:245:3,-45,-44.5,0,0,-0.014608 -41248,5404:144:4,-44.5,-44.5,0,0,-0.0144809 -41249,5404:144:3,-44,-44.5,0,0,-0.0142522 -41250,5404:143:4,-43.5,-44.5,0,0,-0.0137689 -41251,5404:143:3,-43,-44.5,0,0,-0.0134942 -41252,5404:142:4,-42.5,-44.5,0,0,-0.0134159 -41253,5404:142:3,-42,-44.5,0,0,-0.0133978 -41254,5404:141:4,-41.5,-44.5,0,0,-0.0133738 -41255,5404:141:3,-41,-44.5,0,0,-0.0133439 -41256,5404:140:4,-40.5,-44.5,0,0,-0.0135123 -41257,5404:140:3,-40,-44.5,0,0,-0.0135517 -41258,5403:249:4,-39.5,-44.5,0,0,-0.0136248 -41259,5403:249:3,-39,-44.5,0,0,-0.0141505 -41260,5403:248:4,-38.5,-44.5,0,0,-0.0133529 -41261,5403:248:3,-38,-44.5,0,0,-0.0154712 -41262,5403:247:3,-37,-44.5,0,0,-0.0124384 -41263,5403:246:4,-36.5,-44.5,0,0,-0.0120604 -41264,5403:246:3,-36,-44.5,0,0,-0.011913 -41265,5403:245:4,-35.5,-44.5,0,0,-0.0111979 -41266,5403:245:3,-35,-44.5,0,0,-0.0108652 -41267,5403:144:4,-34.5,-44.5,0,0,-0.010585 -41268,5403:144:3,-34,-44.5,0,0,-0.0100845 -41269,5403:143:4,-33.5,-44.5,0,0,-0.00963151 -41270,5403:143:3,-33,-44.5,0,0,-0.00980712 -41271,5403:142:4,-32.5,-44.5,0,0,-0.0109285 -41272,5403:142:3,-32,-44.5,0,0,-0.0122672 -41273,5403:141:4,-31.5,-44.5,0,0,-0.0132072 -41274,5403:141:3,-31,-44.5,0,0,-0.0139489 -41275,5403:140:4,-30.5,-44.5,0,0,-0.0137504 -41276,5403:140:3,-30,-44.5,0,0,-0.0129699 -41277,5402:249:4,-29.5,-44.5,0,0,-0.0121633 -41278,5402:249:3,-29,-44.5,0,0,-0.0114842 -41279,5402:248:4,-28.5,-44.5,0,0,-0.0106943 -41280,5402:248:3,-28,-44.5,0,0,-0.00982904 -41281,5402:247:4,-27.5,-44.5,0,0,-0.00931875 -41282,5402:247:3,-27,-44.5,0,0,-0.00927105 -41283,5402:246:4,-26.5,-44.5,0,0,-0.00948654 -41284,5402:246:3,-26,-44.5,0,0,-0.00966375 -41285,5402:245:4,-25.5,-44.5,0,0,-0.00982463 -41286,5402:245:3,-25,-44.5,0,0,-0.0102502 -41287,5402:144:4,-24.5,-44.5,0,0,-0.0122042 -41288,5402:144:3,-24,-44.5,0,0,-0.0133919 -41289,5402:143:4,-23.5,-44.5,0,0,-0.0130398 -41290,5402:143:3,-23,-44.5,0,0,-0.0120334 -41291,5402:142:4,-22.5,-44.5,0,0,-0.0120847 -41292,5402:142:3,-22,-44.5,0,0,-0.0125503 -41293,5402:141:4,-21.5,-44.5,0,0,-0.013341 -41294,5402:141:3,-21,-44.5,0,0,-0.0136522 -41295,5402:140:4,-20.5,-44.5,0,0,-0.0132902 -41296,5402:140:3,-20,-44.5,0,0,-0.0129323 -41297,5401:249:4,-19.5,-44.5,0,0,-0.0129989 -41298,5401:249:3,-19,-44.5,0,0,-0.0129409 -41299,5401:248:4,-18.5,-44.5,0,0,-0.0125699 -41300,5401:248:3,-18,-44.5,0,0,-0.0121145 -41301,5401:247:4,-17.5,-44.5,0,0,-0.0122589 -41302,5401:247:3,-17,-44.5,0,0,-0.0135517 -41303,5401:246:4,-16.5,-44.5,0,0,-0.0145622 -41304,5401:246:3,-16,-44.5,0,0,-0.0144711 -41305,5401:245:4,-15.5,-44.5,0,0,-0.0134068 -41306,5401:245:3,-15,-44.5,0,0,-0.0122042 -41307,5401:144:4,-14.5,-44.5,0,0,-0.0128485 -41308,5401:144:3,-14,-44.5,0,0,-0.0132962 -41309,5401:143:4,-13.5,-44.5,0,0,-0.0138897 -41310,5401:143:3,-13,-44.5,0,0,-0.0141726 -41311,5401:142:4,-12.5,-44.5,0,0,-0.0143066 -41312,5401:142:3,-12,-44.5,0,0,-0.0142045 -41313,5401:141:4,-11.5,-44.5,0,0,-0.0138929 -41314,5401:141:3,-11,-44.5,0,0,-0.0136552 -41315,5401:140:4,-10.5,-44.5,0,0,-0.0129207 -41316,5401:140:3,-10,-44.5,0,0,-0.0120658 -41317,5400:249:4,-9.5,-44.5,0,0,-0.0121824 -41318,5400:249:3,-9,-44.5,0,0,-0.0121987 -41319,5400:248:4,-8.5,-44.5,0,0,-0.0121633 -41320,5400:248:3,-8,-44.5,0,0,-0.0120847 -41321,5400:247:4,-7.5,-44.5,0,0,-0.0118705 -41322,5400:247:3,-7,-44.5,0,0,-0.011433 -41323,5400:246:4,-6.5,-44.5,0,0,-0.0106348 -41324,5400:246:3,-6,-44.5,0,0,-0.00968318 -41325,5400:245:4,-5.5,-44.5,0,0,-0.00929177 -41326,5400:245:3,-5,-44.5,0,0,-0.00919697 -41327,5400:144:4,-4.5,-44.5,0,0,-0.00918059 -41328,5400:144:3,-4,-44.5,0,0,-0.00917035 -41329,5400:143:4,-3.5,-44.5,0,0,-0.00916218 -41330,5400:143:3,-3,-44.5,0,0,-0.00914175 -41331,5400:142:4,-2.5,-44.5,0,0,-0.00898818 -41332,5400:142:3,-2,-44.5,0,0,-0.00878221 -41333,5400:141:4,-1.5,-44.5,0,0,-0.00876264 -41334,5400:141:3,-1,-44.5,0,0,-0.00875287 -41335,5400:140:4,-0.5,-44.5,0,0,-0.00878221 -41336,3400:140:4,0,-44.5,0,0,-0.0088628 -41337,3400:140:4,0.5,-44.5,0,0,-0.00886678 -41338,3400:141:3,1,-44.5,0,0,-0.00877636 -41339,3400:141:4,1.5,-44.5,0,0,-0.00863855 -41340,3400:142:3,2,-44.5,0,0,-0.00833232 -41341,3400:142:4,2.5,-44.5,0,0,-0.00770921 -41342,3400:143:3,3,-44.5,0,0,-0.00752769 -41343,3400:143:4,3.5,-44.5,0,0,-0.00748262 -41344,3400:144:3,4,-44.5,0,0,-0.00748095 -41345,3400:144:4,4.5,-44.5,0,0,-0.00745599 -41346,3400:245:3,5,-44.5,0,0,-0.0074031 -41347,3400:245:4,5.5,-44.5,0,0,-0.00737184 -41348,3400:246:3,6,-44.5,0,0,-0.00735218 -41349,3400:246:4,6.5,-44.5,0,0,-0.00734235 -41350,3400:247:3,7,-44.5,0,0,-0.00732606 -41351,3400:247:4,7.5,-44.5,0,0,-0.00729028 -41352,3400:248:3,8,-44.5,0,0,-0.00722566 -41353,3400:248:4,8.5,-44.5,0,0,-0.0072064 -41354,3400:249:3,9,-44.5,0,0,-0.00719837 -41355,3400:249:4,9.5,-44.5,0,0,-0.00722889 -41356,3401:140:3,10,-44.5,0,0,-0.00727242 -41357,3401:140:4,10.5,-44.5,0,0,-0.00722566 -41358,3401:141:3,11,-44.5,0,0,-0.00718875 -41359,3401:141:4,11.5,-44.5,0,0,-0.00716321 -41360,3401:142:3,12,-44.5,0,0,-0.00715685 -41361,3401:142:4,12.5,-44.5,0,0,-0.00722404 -41362,3401:143:3,13,-44.5,0,0,-0.0073114 -41363,3401:143:4,13.5,-44.5,0,0,-0.00740637 -41364,3401:144:3,14,-44.5,0,0,-0.00750095 -41365,3401:144:4,14.5,-44.5,0,0,-0.00755962 -41366,3401:245:3,15,-44.5,0,0,-0.00754787 -41367,3401:245:4,15.5,-44.5,0,0,-0.00754787 -41368,3401:246:3,16,-44.5,0,0,-0.00752268 -41369,3401:246:4,16.5,-44.5,0,0,-0.00752938 -41370,3401:247:3,17,-44.5,0,0,-0.00754787 -41371,3401:247:4,17.5,-44.5,0,0,-0.00757139 -41372,3401:248:3,18,-44.5,0,0,-0.00758658 -41373,3401:248:4,18.5,-44.5,0,0,-0.0076001 -41374,3401:249:3,19,-44.5,0,0,-0.00763062 -41375,3401:249:4,19.5,-44.5,0,0,-0.00768003 -41376,3402:140:3,20,-44.5,0,0,-0.00775396 -41377,3402:140:4,20.5,-44.5,0,0,-0.00784949 -41378,3402:141:3,21,-44.5,0,0,-0.0078933 -41379,3402:141:4,21.5,-44.5,0,0,-0.00792146 -41380,3402:142:3,22,-44.5,0,0,-0.00790033 -41381,3402:142:4,22.5,-44.5,0,0,-0.00778681 -41382,3402:143:3,23,-44.5,0,0,-0.00760521 -41383,3402:143:4,23.5,-44.5,0,0,-0.00744106 -41384,3402:144:3,24,-44.5,0,0,-0.00739978 -41385,3402:144:4,24.5,-44.5,0,0,-0.00744106 -41386,3402:245:3,25,-44.5,0,0,-0.00748761 -41387,3402:245:4,25.5,-44.5,0,0,-0.00724497 -41388,3402:246:3,26,-44.5,0,0,-0.00830822 -41389,3402:246:4,26.5,-44.5,0,0,-0.00965731 -41390,3402:247:3,27,-44.5,0,0,-0.0102502 -41391,3402:247:4,27.5,-44.5,0,0,-0.010089 -41392,3402:248:3,28,-44.5,0,0,-0.00914785 -41393,3402:248:4,28.5,-44.5,0,0,-0.00825653 -41394,3402:249:3,29,-44.5,0,0,-0.00806565 -41395,3402:249:4,29.5,-44.5,0,0,-0.00896413 -41396,3403:140:3,30,-44.5,0,0,-0.00956083 -41397,3403:140:4,30.5,-44.5,0,0,-0.0100688 -41398,3403:141:3,31,-44.5,0,0,-0.0102136 -41399,3403:141:4,31.5,-44.5,0,0,-0.0104162 -41400,3403:142:3,32,-44.5,0,0,-0.0102685 -41401,3403:142:4,32.5,-44.5,0,0,-0.00958435 -41402,3403:143:3,33,-44.5,0,0,-0.00901826 -41403,3403:143:4,33.5,-44.5,0,0,-0.00890638 -41404,3403:144:3,34,-44.5,0,0,-0.00930835 -41405,3403:144:4,34.5,-44.5,0,0,-0.00991934 -41406,3403:245:3,35,-44.5,0,0,-0.0101071 -41407,3403:245:4,35.5,-44.5,0,0,-0.00993489 -41408,3403:246:3,36,-44.5,0,0,-0.00973951 -41409,3403:246:4,36.5,-44.5,0,0,-0.00996375 -41410,3403:247:3,37,-44.5,0,0,-0.0104302 -41411,3403:247:4,37.5,-44.5,0,0,-0.010723 -41412,3403:248:3,38,-44.5,0,0,-0.0108265 -41413,3403:248:4,38.5,-44.5,0,0,-0.010875 -41414,3403:249:3,39,-44.5,0,0,-0.0105685 -41415,3403:249:4,39.5,-44.5,0,0,-0.0104699 -41416,3404:140:3,40,-44.5,0,0,-0.010611 -41417,3404:140:4,40.5,-44.5,0,0,-0.0105803 -41418,3404:141:3,41,-44.5,0,0,-0.0105638 -41419,3404:141:4,41.5,-44.5,0,0,-0.0104372 -41420,3404:142:3,42,-44.5,0,0,-0.0102296 -41421,3404:142:4,42.5,-44.5,0,0,-0.00998596 -41422,3404:143:3,43,-44.5,0,0,-0.00970701 -41423,3404:143:4,43.5,-44.5,0,0,-0.00952678 -41424,3404:144:3,44,-44.5,0,0,-0.00951829 -41425,3404:144:4,44.5,-44.5,0,0,-0.0095993 -41426,3404:245:3,45,-44.5,0,0,-0.00965297 -41427,3404:245:4,45.5,-44.5,0,0,-0.00965731 -41428,3404:246:3,46,-44.5,0,0,-0.0096789 -41429,3404:246:4,46.5,-44.5,0,0,-0.00977652 -41430,3404:247:3,47,-44.5,0,0,-0.0100396 -41431,3404:247:4,47.5,-44.5,0,0,-0.0103237 -41432,3404:248:3,48,-44.5,0,0,-0.0102548 -41433,3404:248:4,48.5,-44.5,0,0,-0.0100418 -41434,3404:249:3,49,-44.5,0,0,-0.00996375 -41435,3404:249:4,49.5,-44.5,0,0,-0.0102045 -41436,3405:140:3,50,-44.5,0,0,-0.0103559 -41437,3405:140:4,50.5,-44.5,0,0,-0.0103351 -41438,3405:141:3,51,-44.5,0,0,-0.0103121 -41439,3405:141:4,51.5,-44.5,0,0,-0.0102731 -41440,3405:142:3,52,-44.5,0,0,-0.0104395 -41441,3405:142:4,52.5,-44.5,0,0,-0.0107422 -41442,3405:143:3,53,-44.5,0,0,-0.0108168 -41443,3405:143:4,53.5,-44.5,0,0,-0.010909 -41444,3405:144:3,54,-44.5,0,0,-0.0111853 -41445,3405:144:4,54.5,-44.5,0,0,-0.0116236 -41446,3405:245:3,55,-44.5,0,0,-0.0117176 -41447,3405:245:4,55.5,-44.5,0,0,-0.0110809 -41448,3405:246:3,56,-44.5,0,0,-0.0102067 -41449,3405:246:4,56.5,-44.5,0,0,-0.0099548 -41450,3405:247:3,57,-44.5,0,0,-0.0100105 -41451,3405:247:4,57.5,-44.5,0,0,-0.0104651 -41452,3405:248:3,58,-44.5,0,0,-0.011071 -41453,3405:248:4,58.5,-44.5,0,0,-0.0115718 -41454,3405:249:3,59,-44.5,0,0,-0.0114714 -41455,3405:249:4,59.5,-44.5,0,0,-0.0112154 -41456,3406:140:3,60,-44.5,0,0,-0.0111131 -41457,3406:140:4,60.5,-44.5,0,0,-0.0110488 -41458,3406:141:3,61,-44.5,0,0,-0.0109285 -41459,3406:141:4,61.5,-44.5,0,0,-0.0108386 -41460,3406:142:3,62,-44.5,0,0,-0.0109603 -41461,3406:142:4,62.5,-44.5,0,0,-0.0113034 -41462,3406:143:3,63,-44.5,0,0,-0.0116784 -41463,3406:143:4,63.5,-44.5,0,0,-0.0119423 -41464,3406:144:3,64,-44.5,0,0,-0.0120308 -41465,3406:144:4,64.5,-44.5,0,0,-0.0119051 -41466,3406:245:3,65,-44.5,0,0,-0.0117333 -41467,3406:245:4,65.5,-44.5,0,0,-0.0118017 -41468,3406:246:3,66,-44.5,0,0,-0.0120577 -41469,3406:246:4,66.5,-44.5,0,0,-0.0122699 -41470,3406:247:3,67,-44.5,0,0,-0.0123995 -41471,3406:247:4,67.5,-44.5,0,0,-0.0123608 -41472,3406:248:3,68,-44.5,0,0,-0.0120281 -41473,3406:248:4,68.5,-44.5,0,0,-0.0117569 -41474,3406:249:3,69,-44.5,0,0,-0.0117071 -41475,3406:249:4,69.5,-44.5,0,0,-0.0116993 -41476,3407:140:3,70,-44.5,0,0,-0.0115176 -41477,3407:140:4,70.5,-44.5,0,0,-0.0112279 -41478,3407:141:3,71,-44.5,0,0,-0.0109334 -41479,3407:141:4,71.5,-44.5,0,0,-0.0106419 -41480,3407:142:3,72,-44.5,0,0,-0.0105402 -41481,3407:142:4,72.5,-44.5,0,0,-0.0105496 -41482,3407:143:4,73.5,-44.5,0,0,-0.010512 -41483,3407:144:3,74,-44.5,0,0,-0.0104816 -41484,3407:144:4,74.5,-44.5,0,0,-0.0104886 -41485,3407:245:3,75,-44.5,0,0,-0.0105378 -41486,3407:245:4,75.5,-44.5,0,0,-0.0106467 -41487,3407:246:3,76,-44.5,0,0,-0.0107903 -41488,3407:246:4,76.5,-44.5,0,0,-0.0108265 -41489,3407:247:3,77,-44.5,0,0,-0.0106229 -41490,3407:247:4,77.5,-44.5,0,0,-0.0102273 -41491,3407:248:3,78,-44.5,0,0,-0.00980712 -41492,3407:248:4,78.5,-44.5,0,0,-0.00916623 -41493,3407:249:3,79,-44.5,0,0,-0.00805491 -41494,3407:249:4,79.5,-44.5,0,0,-0.00816871 -41495,3408:140:3,80,-44.5,0,0,-0.00910308 -41496,3408:140:4,80.5,-44.5,0,0,-0.00937715 -41497,3408:141:3,81,-44.5,0,0,-0.00933328 -41498,3408:141:4,81.5,-44.5,0,0,-0.0090082 -41499,3408:142:3,82,-44.5,0,0,-0.00875287 -41500,3408:142:4,82.5,-44.5,0,0,-0.0085963 -41501,3408:143:3,83,-44.5,0,0,-0.00893022 -41502,3408:143:4,83.5,-44.5,0,0,-0.00931875 -41503,3408:144:3,84,-44.5,0,0,-0.0094717 -41504,3408:144:4,84.5,-44.5,0,0,-0.01015 -41505,3408:245:3,85,-44.5,0,0,-0.0118652 -41506,3408:245:4,85.5,-44.5,0,0,-0.0148457 -41507,3408:246:3,86,-44.5,0,0,-0.0151484 -41508,3408:246:4,86.5,-44.5,0,0,-0.0153364 -41509,3408:247:3,87,-44.5,0,0,-0.0147429 -41510,3408:247:4,87.5,-44.5,0,0,-0.0136552 -41511,3408:248:3,88,-44.5,0,0,-0.014233 -41512,3408:248:4,88.5,-44.5,0,0,-0.0163311 -41513,3408:249:3,89,-44.5,0,0,-0.0180772 -41514,3408:249:4,89.5,-44.5,0,0,-0.0188542 -41515,3409:140:3,90,-44.5,0,0,-0.0176157 -41516,3409:140:4,90.5,-44.5,0,0,-0.0166384 -41517,3409:141:3,91,-44.5,0,0,-0.0161742 -41518,3409:141:4,91.5,-44.5,0,0,-0.0159578 -41519,3409:142:3,92,-44.5,0,0,-0.0167471 -41520,3409:142:4,92.5,-44.5,0,0,-0.0179476 -41521,3409:143:3,93,-44.5,0,0,-0.0184927 -41522,3409:143:4,93.5,-44.5,0,0,-0.0180976 -41523,3409:144:3,94,-44.5,0,0,-0.0164637 -41524,3409:144:4,94.5,-44.5,0,0,-0.0156739 -41525,3409:245:3,95,-44.5,0,0,-0.0153639 -41526,3409:245:4,95.5,-44.5,0,0,-0.0147992 -41527,3409:246:3,96,-44.5,0,0,-0.0146276 -41528,3409:246:4,96.5,-44.5,0,0,-0.0143612 -41529,3409:247:3,97,-44.5,0,0,-0.0140871 -41530,3409:247:4,97.5,-44.5,0,0,-0.013732 -41531,3409:248:3,98,-44.5,0,0,-0.0135153 -41532,3409:248:4,98.5,-44.5,0,0,-0.0136645 -41533,3409:249:3,99,-44.5,0,0,-0.0142363 -41534,3409:249:4,99.5,-44.5,0,0,-0.0146539 -41535,3410:140:3,100,-44.5,0,0,-0.0143291 -41536,3410:140:4,100.5,-44.5,0,0,-0.0133499 -41537,3410:141:3,101,-44.5,0,0,-0.012128 -41538,3410:141:4,101.5,-44.5,0,0,-0.0116003 -41539,3410:142:3,102,-44.5,0,0,-0.0116341 -41540,3410:142:4,102.5,-44.5,0,0,-0.0118228 -41541,3410:143:3,103,-44.5,0,0,-0.0114483 -41542,3410:143:4,103.5,-44.5,0,0,-0.0109799 -41543,3410:144:3,104,-44.5,0,0,-0.0109114 -41544,3410:144:4,104.5,-44.5,0,0,-0.011311 -41545,3410:245:3,105,-44.5,0,0,-0.0121172 -41546,3410:245:4,105.5,-44.5,0,0,-0.012511 -41547,3410:246:3,106,-44.5,0,0,-0.0129902 -41548,3410:246:4,106.5,-44.5,0,0,-0.013467 -41549,3410:247:3,107,-44.5,0,0,-0.014297 -41550,3410:247:4,107.5,-44.5,0,0,-0.0151654 -41551,3410:248:3,108,-44.5,0,0,-0.0153571 -41552,3410:248:4,108.5,-44.5,0,0,-0.0149795 -41553,3410:249:3,109,-44.5,0,0,-0.0147165 -41554,3410:249:4,109.5,-44.5,0,0,-0.0138091 -41555,3411:140:3,110,-44.5,0,0,-0.0130048 -41556,3411:140:4,110.5,-44.5,0,0,-0.01316 -41557,3411:141:3,111,-44.5,0,0,-0.0138803 -41558,3411:141:4,111.5,-44.5,0,0,-0.0144484 -41559,3411:142:3,112,-44.5,0,0,-0.0143612 -41560,3411:142:4,112.5,-44.5,0,0,-0.0142778 -41561,3411:143:3,113,-44.5,0,0,-0.0144646 -41562,3411:143:4,113.5,-44.5,0,0,-0.0148791 -41563,3411:144:3,114,-44.5,0,0,-0.0157267 -41564,3411:144:4,114.5,-44.5,0,0,-0.0173174 -41565,3411:245:3,115,-44.5,0,0,-0.0185385 -41566,3411:245:4,115.5,-44.5,0,0,-0.0192011 -41567,3411:246:3,116,-44.5,0,0,-0.0197895 -41568,3411:246:4,116.5,-44.5,0,0,-0.020236 -41569,3411:247:3,117,-44.5,0,0,-0.0207208 -41570,3411:247:4,117.5,-44.5,0,0,-0.0210553 -41571,3411:248:3,118,-44.5,0,0,-0.0217605 -41572,3411:248:4,118.5,-44.5,0,0,-0.023171 -41573,3411:249:3,119,-44.5,0,0,-0.0239272 -41574,3411:249:4,119.5,-44.5,0,0,-0.0233867 -41575,3412:140:3,120,-44.5,0,0,-0.0215115 -41576,3412:140:4,120.5,-44.5,0,0,-0.0189691 -41577,3412:141:3,121,-44.5,0,0,-0.0180935 -41578,3412:141:4,121.5,-44.5,0,0,-0.0183188 -41579,3412:142:3,122,-44.5,0,0,-0.0189051 -41580,3412:142:4,122.5,-44.5,0,0,-0.0192618 -41581,3412:143:3,123,-44.5,0,0,-0.0193487 -41582,3412:143:4,123.5,-44.5,0,0,-0.0212894 -41583,3412:144:3,124,-44.5,0,0,-0.0214049 -41584,3412:144:4,124.5,-44.5,0,0,-0.0180447 -41585,3412:245:3,125,-44.5,0,0,-0.0184677 -41586,3412:245:4,125.5,-44.5,0,0,-0.0200002 -41587,3412:246:3,126,-44.5,0,0,-0.0210506 -41588,3412:246:4,126.5,-44.5,0,0,-0.0221472 -41589,3412:247:3,127,-44.5,0,0,-0.0224747 -41590,3412:247:4,127.5,-44.5,0,0,-0.0219728 -41591,3412:248:3,128,-44.5,0,0,-0.0211125 -41592,3412:248:4,128.5,-44.5,0,0,-0.0206183 -41593,3412:249:3,129,-44.5,0,0,-0.0213086 -41594,3412:249:4,129.5,-44.5,0,0,-0.0223886 -41595,3413:140:3,130,-44.5,0,0,-0.021643 -41596,3413:140:4,130.5,-44.5,0,0,-0.0209275 -41597,3413:141:3,131,-44.5,0,0,-0.0210791 -41598,3413:141:4,131.5,-44.5,0,0,-0.0213278 -41599,3413:142:3,132,-44.5,0,0,-0.0208474 -41600,3413:142:4,132.5,-44.5,0,0,-0.0193269 -41601,3413:143:3,133,-44.5,0,0,-0.0193793 -41602,3413:143:4,133.5,-44.5,0,0,-0.0199328 -41603,3413:144:3,134,-44.5,0,0,-0.0210269 -41604,3413:144:4,134.5,-44.5,0,0,-0.0219234 -41605,3413:245:3,135,-44.5,0,0,-0.0225816 -41606,3413:245:4,135.5,-44.5,0,0,-0.0226635 -41607,3413:246:3,136,-44.5,0,0,-0.0219977 -41608,3413:246:4,136.5,-44.5,0,0,-0.0218344 -41609,3413:247:3,137,-44.5,0,0,-0.0214921 -41610,3413:247:4,137.5,-44.5,0,0,-0.021227 -41611,3413:248:3,138,-44.5,0,0,-0.0209275 -41612,3413:248:4,138.5,-44.5,0,0,-0.0204793 -41613,3413:249:3,139,-44.5,0,0,-0.020186 -41614,3413:249:4,139.5,-44.5,0,0,-0.0206555 -41615,3414:140:3,140,-44.5,0,0,-0.0210696 -41616,3414:140:4,140.5,-44.5,0,0,-0.0220325 -41617,3414:141:3,141,-44.5,0,0,-0.0225154 -41618,3414:141:4,141.5,-44.5,0,0,-0.0220923 -41619,3414:142:3,142,-44.5,0,0,-0.0221423 -41620,3414:142:4,142.5,-44.5,0,0,-0.0208662 -41621,3414:143:3,143,-44.5,0,0,-0.0195327 -41622,3414:143:4,143.5,-44.5,0,0,-0.0170547 -41623,3414:144:3,144,-44.5,0,0,-0.0152404 -41624,3414:144:4,144.5,-44.5,0,0,-0.01608 -41625,3414:245:3,145,-44.5,0,0,-0.0177629 -41626,3414:245:4,145.5,-44.5,0,0,-0.0193749 -41627,3414:246:3,146,-44.5,0,0,-0.0185887 -41628,3414:246:4,146.5,-44.5,0,0,-0.0174816 -41629,3414:247:3,147,-44.5,0,0,-0.0226532 -41630,3414:247:4,147.5,-44.5,0,0,-0.0234556 -41631,3414:248:3,148,-44.5,0,0,-0.0237762 -41632,3414:248:4,148.5,-44.5,0,0,-0.0298437 -41633,3414:249:3,149,-44.5,0,0,-0.0407863 -41634,3414:249:4,149.5,-44.5,0,0,-0.0395403 -41635,3415:140:3,150,-44.5,0,0,-0.035968 -41636,3415:140:4,150.5,-44.5,0,0,-0.0317508 -41637,3415:141:3,151,-44.5,0,0,-0.0281371 -41638,3415:141:4,151.5,-44.5,0,0,-0.0269309 -41639,3415:142:3,152,-44.5,0,0,-0.0261781 -41640,3415:142:4,152.5,-44.5,0,0,-0.0278384 -41641,3415:143:3,153,-44.5,0,0,-0.0314843 -41642,3415:143:4,153.5,-44.5,0,0,-0.0376369 -41643,3415:144:3,154,-44.5,0,0,-0.0393321 -41644,3415:144:4,154.5,-44.5,0,0,-0.0417356 -41645,3415:245:3,155,-44.5,0,0,-0.0396404 -41646,3415:245:4,155.5,-44.5,0,0,-0.0387672 -41647,3415:246:3,156,-44.5,0,0,-0.0357384 -41648,3415:246:4,156.5,-44.5,0,0,-0.0338534 -41649,3415:247:3,157,-44.5,0,0,-0.0312483 -41650,3415:247:4,157.5,-44.5,0,0,-0.0295667 -41651,3415:248:3,158,-44.5,0,0,-0.0309579 -41652,3415:248:4,158.5,-44.5,0,0,-0.0326838 -41653,3415:249:3,159,-44.5,0,0,-0.0322763 -41654,3415:249:4,159.5,-44.5,0,0,-0.0320855 -41655,3416:140:3,160,-44.5,0,0,-0.0258889 -41656,3416:140:4,160.5,-44.5,0,0,-0.0226788 -41657,3416:141:3,161,-44.5,0,0,-0.0225664 -41658,3416:141:4,161.5,-44.5,0,0,-0.0234609 -41659,3416:142:3,162,-44.5,0,0,-0.0272259 -41660,3416:142:4,162.5,-44.5,0,0,-0.0271579 -41661,3416:143:3,163,-44.5,0,0,-0.0285688 -41662,3416:143:4,163.5,-44.5,0,0,-0.0291526 -41663,3416:144:3,164,-44.5,0,0,-0.0304475 -41664,3416:144:4,164.5,-44.5,0,0,-0.0366917 -41665,3416:245:3,165,-44.5,0,0,-0.0437942 -41666,3416:245:4,165.5,-44.5,0,0,-0.0512104 -41667,3416:246:3,166,-44.5,0,0,-0.0533989 -41668,3416:246:4,166.5,-44.5,0,0,-0.0511745 -41669,3416:247:3,167,-44.5,0,0,-0.0495616 -41670,3416:247:4,167.5,-44.5,0,0,-0.0490814 -41671,3416:248:3,168,-44.5,0,0,-0.0487414 -41672,3416:248:4,168.5,-44.5,0,0,-0.0485611 -41673,3416:249:3,169,-44.5,0,0,-0.0484486 -41674,3416:249:4,169.5,-44.5,0,0,-0.0483812 -41675,3417:140:3,170,-44.5,0,0,-0.0482917 -41676,3417:140:4,170.5,-44.5,0,0,-0.0483142 -41677,3417:141:3,171,-44.5,0,0,-0.0486285 -41678,3417:141:4,171.5,-44.5,0,0,-0.0485271 -41679,3417:142:3,172,-44.5,0,0,-0.0476366 -41680,3417:142:4,172.5,-44.5,0,0,-0.0458954 -41681,3417:143:3,173,-44.5,0,0,-0.0433622 -41682,3417:143:4,173.5,-44.5,0,0,-0.0404688 -41683,3417:144:3,174,-44.5,0,0,-0.0372423 -41684,3417:144:4,174.5,-44.5,0,0,-0.0339231 -41685,3417:245:3,175,-44.5,0,0,-0.0310283 -41686,3417:245:4,175.5,-44.5,0,0,-0.0313695 -41687,3417:246:3,176,-44.5,0,0,-0.0335303 -41688,3417:246:4,176.5,-44.5,0,0,-0.0351465 -41689,3417:247:3,177,-44.5,0,0,-0.035018 -41690,3417:247:4,177.5,-44.5,0,0,-0.03551 -41691,3417:248:3,178,-44.5,0,0,-0.0361827 -41692,3417:248:4,178.5,-44.5,0,0,-0.0363822 -41693,3417:249:3,179,-44.5,0,0,-0.0376024 -41694,3417:249:4,179.5,-44.5,0,0,-0.0398779 -41695,3418:140:3,180,-44.5,0,0,-0.0404409 -41696,5418:140:1,-180,-44,0,0,-0.0396952 -41697,5417:249:2,-179.5,-44,0,0,-0.040899 -41698,5417:249:1,-179,-44,0,0,-0.0420345 -41699,5417:248:2,-178.5,-44,0,0,-0.0437942 -41700,5417:248:1,-178,-44,0,0,-0.0461293 -41701,5417:247:2,-177.5,-44,0,0,-0.0479798 -41702,5417:247:1,-177,-44,0,0,-0.0485049 -41703,5417:246:2,-176.5,-44,0,0,-0.0486285 -41704,5417:246:1,-176,-44,0,0,-0.048247 -41705,5417:245:2,-175.5,-44,0,0,-0.0472743 -41706,5417:245:1,-175,-44,0,0,-0.0483364 -41707,5417:144:2,-174.5,-44,0,0,-0.0523654 -41708,5417:144:1,-174,-44,0,0,-0.0547719 -41709,5417:143:2,-173.5,-44,0,0,-0.0546187 -41710,5417:143:1,-173,-44,0,0,-0.0539864 -41711,5417:142:2,-172.5,-44,0,0,-0.0530644 -41712,5417:142:1,-172,-44,0,0,-0.0512104 -41713,5417:141:2,-171.5,-44,0,0,-0.0486175 -41714,5417:141:1,-171,-44,0,0,-0.0456311 -41715,5417:140:2,-170.5,-44,0,0,-0.0423941 -41716,5417:140:1,-170,-44,0,0,-0.0398779 -41717,5416:249:2,-169.5,-44,0,0,-0.0396585 -41718,5416:249:1,-169,-44,0,0,-0.0429941 -41719,5416:248:2,-168.5,-44,0,0,-0.0445483 -41720,5416:248:1,-168,-44,0,0,-0.0431331 -41721,5416:247:2,-167.5,-44,0,0,-0.0397317 -41722,5416:247:1,-167,-44,0,0,-0.0362242 -41723,5416:246:2,-166.5,-44,0,0,-0.0328709 -41724,5416:246:1,-166,-44,0,0,-0.0330136 -41725,5416:245:2,-165.5,-44,0,0,-0.0334615 -41726,5416:245:1,-165,-44,0,0,-0.0340941 -41727,5416:144:2,-164.5,-44,0,0,-0.0345884 -41728,5416:144:1,-164,-44,0,0,-0.0346121 -41729,5416:143:2,-163.5,-44,0,0,-0.0345568 -41730,5416:143:1,-163,-44,0,0,-0.0350982 -41731,5416:142:2,-162.5,-44,0,0,-0.0369109 -41732,5416:142:1,-162,-44,0,0,-0.0401445 -41733,5416:141:2,-161.5,-44,0,0,-0.0421994 -41734,5416:141:1,-161,-44,0,0,-0.042015 -41735,5416:140:2,-160.5,-44,0,0,-0.0407303 -41736,5416:140:1,-160,-44,0,0,-0.0398687 -41737,5415:249:2,-159.5,-44,0,0,-0.0410214 -41738,5415:249:1,-159,-44,0,0,-0.0448165 -41739,5415:248:2,-158.5,-44,0,0,-0.0480799 -41740,5415:248:1,-158,-44,0,0,-0.04846 -41741,5415:247:2,-157.5,-44,0,0,-0.0444252 -41742,5415:247:1,-157,-44,0,0,-0.0391339 -41743,5415:246:2,-156.5,-44,0,0,-0.0409366 -41744,5415:246:1,-156,-44,0,0,-0.0419861 -41745,5415:245:2,-155.5,-44,0,0,-0.042355 -41746,5415:245:1,-155,-44,0,0,-0.0468279 -41747,5415:144:2,-154.5,-44,0,0,-0.0536354 -41748,5415:144:1,-154,-44,0,0,-0.0593677 -41749,5415:143:2,-153.5,-44,0,0,-0.0610457 -41750,5415:143:1,-153,-44,0,0,-0.0592148 -41751,5415:142:2,-152.5,-44,0,0,-0.0560379 -41752,5415:142:1,-152,-44,0,0,-0.053015 -41753,5415:141:2,-151.5,-44,0,0,-0.0504316 -41754,5415:141:1,-151,-44,0,0,-0.0479242 -41755,5415:140:2,-150.5,-44,0,0,-0.045316 -41756,5415:140:1,-150,-44,0,0,-0.0424039 -41757,5414:249:2,-149.5,-44,0,0,-0.0415058 -41758,5414:249:1,-149,-44,0,0,-0.0426487 -41759,5414:248:2,-148.5,-44,0,0,-0.0438651 -41760,5414:248:1,-148,-44,0,0,-0.0449616 -41761,5414:247:2,-147.5,-44,0,0,-0.0472523 -41762,5414:247:1,-147,-44,0,0,-0.0517124 -41763,5414:246:2,-146.5,-44,0,0,-0.0552332 -41764,5414:246:1,-146,-44,0,0,-0.0552592 -41765,5414:245:2,-145.5,-44,0,0,-0.0531387 -41766,5414:245:1,-145,-44,0,0,-0.0493554 -41767,5414:144:2,-144.5,-44,0,0,-0.048247 -41768,5414:144:1,-144,-44,0,0,-0.0472743 -41769,5414:143:2,-143.5,-44,0,0,-0.046709 -41770,5414:143:1,-143,-44,0,0,-0.0455469 -41771,5414:142:2,-142.5,-44,0,0,-0.04419 -41772,5414:142:1,-142,-44,0,0,-0.043855 -41773,5414:141:2,-141.5,-44,0,0,-0.0466441 -41774,5414:141:1,-141,-44,0,0,-0.0517605 -41775,5414:140:2,-140.5,-44,0,0,-0.0547844 -41776,5414:140:1,-140,-44,0,0,-0.0501865 -41777,5413:249:2,-139.5,-44,0,0,-0.0479798 -41778,5413:249:1,-139,-44,0,0,-0.047769 -41779,5413:248:2,-138.5,-44,0,0,-0.0470668 -41780,5413:248:1,-138,-44,0,0,-0.047913 -41781,5413:247:2,-137.5,-44,0,0,-0.0501282 -41782,5413:247:1,-137,-44,0,0,-0.0525975 -41783,5413:246:2,-136.5,-44,0,0,-0.0542005 -41784,5413:246:1,-136,-44,0,0,-0.0548995 -41785,5413:245:2,-135.5,-44,0,0,-0.0556859 -41786,5413:245:1,-135,-44,0,0,-0.0569611 -41787,5413:144:2,-134.5,-44,0,0,-0.0581305 -41788,5413:144:1,-134,-44,0,0,-0.0590076 -41789,5413:143:2,-133.5,-44,0,0,-0.060165 -41790,5413:143:1,-133,-44,0,0,-0.0618381 -41791,5413:142:2,-132.5,-44,0,0,-0.063845 -41792,5413:142:1,-132,-44,0,0,-0.064448 -41793,5413:141:2,-131.5,-44,0,0,-0.0655956 -41794,5413:141:1,-131,-44,0,0,-0.0636503 -41795,5413:140:2,-130.5,-44,0,0,-0.0591594 -41796,5413:140:1,-130,-44,0,0,-0.0566293 -41797,5412:249:2,-129.5,-44,0,0,-0.055803 -41798,5412:249:1,-129,-44,0,0,-0.0562213 -41799,5412:248:2,-128.5,-44,0,0,-0.0550406 -41800,5412:248:1,-128,-44,0,0,-0.051234 -41801,5412:247:2,-127.5,-44,0,0,-0.0493781 -41802,5412:247:1,-127,-44,0,0,-0.0493209 -41803,5412:246:2,-126.5,-44,0,0,-0.0494582 -41804,5412:246:1,-126,-44,0,0,-0.0495156 -41805,5412:245:2,-125.5,-44,0,0,-0.0494355 -41806,5412:245:1,-125,-44,0,0,-0.0493094 -41807,5412:144:2,-124.5,-44,0,0,-0.0489677 -41808,5412:144:1,-124,-44,0,0,-0.0482583 -41809,5412:143:2,-123.5,-44,0,0,-0.0473836 -41810,5412:143:1,-123,-44,0,0,-0.0466227 -41811,5412:142:2,-122.5,-44,0,0,-0.0460656 -41812,5412:142:1,-122,-44,0,0,-0.0454734 -41813,5412:141:2,-121.5,-44,0,0,-0.0448165 -41814,5412:141:1,-121,-44,0,0,-0.0444969 -41815,5412:140:2,-120.5,-44,0,0,-0.0448993 -41816,5412:140:1,-120,-44,0,0,-0.0454734 -41817,5411:249:2,-119.5,-44,0,0,-0.0456732 -41818,5411:249:1,-119,-44,0,0,-0.0456205 -41819,5411:248:2,-118.5,-44,0,0,-0.0453054 -41820,5411:248:1,-118,-44,0,0,-0.0445794 -41821,5411:247:2,-117.5,-44,0,0,-0.0433323 -41822,5411:247:1,-117,-44,0,0,-0.0418798 -41823,5411:246:2,-116.5,-44,0,0,-0.0409837 -41824,5411:246:1,-116,-44,0,0,-0.0407394 -41825,5411:245:2,-115.5,-44,0,0,-0.0411821 -41826,5411:245:1,-115,-44,0,0,-0.0417259 -41827,5411:144:2,-114.5,-44,0,0,-0.0413246 -41828,5411:144:1,-114,-44,0,0,-0.0407583 -41829,5411:143:2,-113.5,-44,0,0,-0.0404409 -41830,5411:143:1,-113,-44,0,0,-0.0387672 -41831,5411:142:2,-112.5,-44,0,0,-0.0374476 -41832,5411:142:1,-112,-44,0,0,-0.0368519 -41833,5411:141:2,-111.5,-44,0,0,-0.0367169 -41834,5411:141:1,-111,-44,0,0,-0.0368264 -41835,5411:140:2,-110.5,-44,0,0,-0.0367675 -41836,5411:140:1,-110,-44,0,0,-0.036349 -41837,5410:249:2,-109.5,-44,0,0,-0.0360339 -41838,5410:249:1,-109,-44,0,0,-0.0361744 -41839,5410:248:2,-108.5,-44,0,0,-0.0365157 -41840,5410:248:1,-108,-44,0,0,-0.0366666 -41841,5410:247:2,-107.5,-44,0,0,-0.0360092 -41842,5410:247:1,-107,-44,0,0,-0.034986 -41843,5410:246:2,-106.5,-44,0,0,-0.0344778 -41844,5410:246:1,-106,-44,0,0,-0.0348583 -41845,5410:245:2,-105.5,-44,0,0,-0.0357546 -41846,5410:245:1,-105,-44,0,0,-0.0360339 -41847,5410:144:2,-104.5,-44,0,0,-0.0354209 -41848,5410:144:1,-104,-44,0,0,-0.0341798 -41849,5410:143:2,-103.5,-44,0,0,-0.0332558 -41850,5410:143:1,-103,-44,0,0,-0.0336223 -41851,5410:142:2,-102.5,-44,0,0,-0.0345252 -41852,5410:142:1,-102,-44,0,0,-0.0349301 -41853,5410:141:2,-101.5,-44,0,0,-0.0342189 -41854,5410:141:1,-101,-44,0,0,-0.0330136 -41855,5410:140:2,-100.5,-44,0,0,-0.0325425 -41856,5410:140:1,-100,-44,0,0,-0.0337608 -41857,5409:249:2,-99.5,-44,0,0,-0.0349621 -41858,5409:249:1,-99,-44,0,0,-0.0344937 -41859,5409:248:2,-98.5,-44,0,0,-0.0337531 -41860,5409:248:1,-98,-44,0,0,-0.0332405 -41861,5409:247:2,-97.5,-44,0,0,-0.0328634 -41862,5409:247:1,-97,-44,0,0,-0.0326467 -41863,5409:246:2,-96.5,-44,0,0,-0.03255 -41864,5409:246:1,-96,-44,0,0,-0.0325425 -41865,5409:245:2,-95.5,-44,0,0,-0.0326615 -41866,5409:245:1,-95,-44,0,0,-0.0329459 -41867,5409:144:2,-94.5,-44,0,0,-0.0332708 -41868,5409:144:1,-94,-44,0,0,-0.0334615 -41869,5409:143:2,-93.5,-44,0,0,-0.0334766 -41870,5409:143:1,-93,-44,0,0,-0.0333012 -41871,5409:142:2,-92.5,-44,0,0,-0.0331041 -41872,5409:142:1,-92,-44,0,0,-0.0326838 -41873,5409:141:2,-91.5,-44,0,0,-0.0323058 -41874,5409:141:1,-91,-44,0,0,-0.0323206 -41875,5409:140:2,-90.5,-44,0,0,-0.032751 -41876,5409:140:1,-90,-44,0,0,-0.0333319 -41877,5408:249:2,-89.5,-44,0,0,-0.0337608 -41878,5408:249:1,-89,-44,0,0,-0.033699 -41879,5408:248:2,-88.5,-44,0,0,-0.033142 -41880,5408:248:1,-88,-44,0,0,-0.0327286 -41881,5408:247:2,-87.5,-44,0,0,-0.0327362 -41882,5408:247:1,-87,-44,0,0,-0.0332708 -41883,5408:246:2,-86.5,-44,0,0,-0.033807 -41884,5408:246:1,-86,-44,0,0,-0.0334843 -41885,5408:245:2,-85.5,-44,0,0,-0.032961 -41886,5408:245:1,-85,-44,0,0,-0.0328334 -41887,5408:144:2,-84.5,-44,0,0,-0.0329085 -41888,5408:144:1,-84,-44,0,0,-0.0328259 -41889,5408:143:2,-83.5,-44,0,0,-0.032602 -41890,5408:143:1,-83,-44,0,0,-0.0325425 -41891,5408:142:2,-82.5,-44,0,0,-0.0324683 -41892,5408:142:1,-82,-44,0,0,-0.0322689 -41893,5408:141:2,-81.5,-44,0,0,-0.0323575 -41894,5408:141:1,-81,-44,0,0,-0.0329234 -41895,5408:140:2,-80.5,-44,0,0,-0.0330892 -41896,5408:140:1,-80,-44,0,0,-0.032766 -41897,5407:249:2,-79.5,-44,0,0,-0.0325425 -41898,5407:249:1,-79,-44,0,0,-0.0340006 -41899,5407:248:2,-78.5,-44,0,0,-0.035968 -41900,5407:248:1,-78,-44,0,0,-0.0367002 -41901,5407:247:2,-77.5,-44,0,0,-0.0365326 -41902,5407:247:1,-77,-44,0,0,-0.035624 -41903,5407:246:2,-76.5,-44,0,0,-0.0345648 -41904,5407:246:1,-76,-44,0,0,-0.034628 -41905,5407:245:2,-75.5,-44,0,0,-0.0372594 -41906,5407:245:1,-75,-44,0,0,-0.0376111 -41907,5407:144:2,-74.5,-44,0,0,-0.042141 -41908,5407:144:1,-74,-44,0,0,-0.0480463 -41909,5406:247:2,-67.5,-44,0,0,-0.047285 -41910,5406:247:1,-67,-44,0,0,-0.0427766 -41911,5406:246:2,-66.5,-44,0,0,-0.0396496 -41912,5406:246:1,-66,-44,0,0,-0.0365742 -41913,5406:245:2,-65.5,-44,0,0,-0.0350341 -41914,5406:245:1,-65,-44,0,0,-0.0336223 -41915,5406:144:2,-64.5,-44,0,0,-0.0309648 -41916,5406:144:1,-64,-44,0,0,-0.030055 -41917,5406:143:2,-63.5,-44,0,0,-0.0309297 -41918,5406:143:1,-63,-44,0,0,-0.0311063 -41919,5406:142:2,-62.5,-44,0,0,-0.031384 -41920,5406:142:1,-62,-44,0,0,-0.0301989 -41921,5406:141:2,-61.5,-44,0,0,-0.0298573 -41922,5406:141:1,-61,-44,0,0,-0.0299524 -41923,5406:140:2,-60.5,-44,0,0,-0.0305864 -41924,5406:140:1,-60,-44,0,0,-0.0312911 -41925,5405:249:2,-59.5,-44,0,0,-0.0316714 -41926,5405:249:1,-59,-44,0,0,-0.0316135 -41927,5405:248:2,-58.5,-44,0,0,-0.0309861 -41928,5405:248:1,-58,-44,0,0,-0.0302815 -41929,5405:247:2,-57.5,-44,0,0,-0.0294659 -41930,5405:247:1,-57,-44,0,0,-0.0286989 -41931,5405:246:2,-56.5,-44,0,0,-0.0278195 -41932,5405:246:1,-56,-44,0,0,-0.0267118 -41933,5405:245:2,-55.5,-44,0,0,-0.0258948 -41934,5405:245:1,-55,-44,0,0,-0.0258361 -41935,5405:144:2,-54.5,-44,0,0,-0.0256961 -41936,5405:144:1,-54,-44,0,0,-0.0254816 -41937,5405:143:2,-53.5,-44,0,0,-0.0254353 -41938,5405:143:1,-53,-44,0,0,-0.0254181 -41939,5405:142:2,-52.5,-44,0,0,-0.0253319 -41940,5405:142:1,-52,-44,0,0,-0.0249955 -41941,5405:141:2,-51.5,-44,0,0,-0.0244748 -41942,5405:141:1,-51,-44,0,0,-0.0239434 -41943,5405:140:2,-50.5,-44,0,0,-0.0234609 -41944,5405:140:1,-50,-44,0,0,-0.0230925 -41945,5404:249:2,-49.5,-44,0,0,-0.0222827 -41946,5404:249:1,-49,-44,0,0,-0.0209039 -41947,5404:248:2,-48.5,-44,0,0,-0.0186515 -41948,5404:248:1,-48,-44,0,0,-0.0177949 -41949,5404:247:2,-47.5,-44,0,0,-0.0173758 -41950,5404:247:1,-47,-44,0,0,-0.0172126 -41951,5404:246:2,-46.5,-44,0,0,-0.0170126 -41952,5404:246:1,-46,-44,0,0,-0.0164194 -41953,5404:245:2,-45.5,-44,0,0,-0.015179 -41954,5404:245:1,-45,-44,0,0,-0.0144096 -41955,5404:144:2,-44.5,-44,0,0,-0.0142045 -41956,5404:144:1,-44,-44,0,0,-0.0141314 -41957,5404:143:2,-43.5,-44,0,0,-0.014198 -41958,5404:143:1,-43,-44,0,0,-0.0144581 -41959,5404:142:2,-42.5,-44,0,0,-0.0144484 -41960,5404:142:1,-42,-44,0,0,-0.0141219 -41961,5404:141:2,-41.5,-44,0,0,-0.0139677 -41962,5404:141:1,-41,-44,0,0,-0.0140179 -41963,5404:140:2,-40.5,-44,0,0,-0.0140839 -41964,5404:140:1,-40,-44,0,0,-0.0136217 -41965,5403:249:2,-39.5,-44,0,0,-0.0132309 -41966,5403:249:1,-39,-44,0,0,-0.0132724 -41967,5403:248:2,-38.5,-44,0,0,-0.0129323 -41968,5403:248:1,-38,-44,0,0,-0.0128256 -41969,5403:247:2,-37.5,-44,0,0,-0.0122042 -41970,5403:247:1,-37,-44,0,0,-0.0118546 -41971,5403:246:2,-36.5,-44,0,0,-0.0113846 -41972,5403:246:1,-36,-44,0,0,-0.0110784 -41973,5403:245:2,-35.5,-44,0,0,-0.0108579 -41974,5403:245:1,-35,-44,0,0,-0.0107446 -41975,5403:144:2,-34.5,-44,0,0,-0.010759 -41976,5403:144:1,-34,-44,0,0,-0.0104116 -41977,5403:143:2,-33.5,-44,0,0,-0.00995263 -41978,5403:143:1,-33,-44,0,0,-0.00979184 -41979,5403:142:2,-32.5,-44,0,0,-0.010071 -41980,5403:142:1,-32,-44,0,0,-0.0113388 -41981,5403:141:2,-31.5,-44,0,0,-0.0127484 -41982,5403:141:1,-31,-44,0,0,-0.014021 -41983,5403:140:2,-30.5,-44,0,0,-0.0144679 -41984,5403:140:1,-30,-44,0,0,-0.0143099 -41985,5402:249:2,-29.5,-44,0,0,-0.0141124 -41986,5402:249:1,-29,-44,0,0,-0.0139677 -41987,5402:248:2,-28.5,-44,0,0,-0.0137473 -41988,5402:248:1,-28,-44,0,0,-0.0132487 -41989,5402:247:2,-27.5,-44,0,0,-0.0125896 -41990,5402:247:1,-27,-44,0,0,-0.0119638 -41991,5402:246:2,-26.5,-44,0,0,-0.0114688 -41992,5402:246:1,-26,-44,0,0,-0.0111728 -41993,5402:245:2,-25.5,-44,0,0,-0.0111953 -41994,5402:245:1,-25,-44,0,0,-0.0121987 -41995,5402:144:2,-24.5,-44,0,0,-0.0139084 -41996,5402:144:1,-24,-44,0,0,-0.0141061 -41997,5402:143:2,-23.5,-44,0,0,-0.013464 -41998,5402:143:1,-23,-44,0,0,-0.0126545 -41999,5402:142:2,-22.5,-44,0,0,-0.0122864 -42000,5402:142:1,-22,-44,0,0,-0.0124106 -42001,5402:141:2,-21.5,-44,0,0,-0.0128976 -42002,5402:141:1,-21,-44,0,0,-0.0136798 -42003,5402:140:2,-20.5,-44,0,0,-0.0142682 -42004,5402:140:1,-20,-44,0,0,-0.0142554 -42005,5401:249:2,-19.5,-44,0,0,-0.0137844 -42006,5401:249:1,-19,-44,0,0,-0.0131895 -42007,5401:248:2,-18.5,-44,0,0,-0.0126744 -42008,5401:248:1,-18,-44,0,0,-0.0124998 -42009,5401:247:2,-17.5,-44,0,0,-0.0132962 -42010,5401:247:1,-17,-44,0,0,-0.0144031 -42011,5401:246:2,-16.5,-44,0,0,-0.0146901 -42012,5401:246:1,-16,-44,0,0,-0.0142267 -42013,5401:245:2,-15.5,-44,0,0,-0.0132636 -42014,5401:245:1,-15,-44,0,0,-0.012967 -42015,5401:144:2,-14.5,-44,0,0,-0.0132932 -42016,5401:144:1,-14,-44,0,0,-0.01364 -42017,5401:143:2,-13.5,-44,0,0,-0.0143388 -42018,5401:143:1,-13,-44,0,0,-0.0146539 -42019,5401:142:2,-12.5,-44,0,0,-0.0147859 -42020,5401:142:1,-12,-44,0,0,-0.0147462 -42021,5401:141:2,-11.5,-44,0,0,-0.0136675 -42022,5401:141:1,-11,-44,0,0,-0.0132368 -42023,5401:140:2,-10.5,-44,0,0,-0.0120928 -42024,5401:140:1,-10,-44,0,0,-0.0120712 -42025,5400:249:2,-9.5,-44,0,0,-0.0120658 -42026,5400:249:1,-9,-44,0,0,-0.0120551 -42027,5400:248:2,-8.5,-44,0,0,-0.0120443 -42028,5400:248:1,-8,-44,0,0,-0.0120012 -42029,5400:247:2,-7.5,-44,0,0,-0.011844 -42030,5400:247:1,-7,-44,0,0,-0.0114535 -42031,5400:246:2,-6.5,-44,0,0,-0.0106205 -42032,5400:246:1,-6,-44,0,0,-0.00974601 -42033,5400:245:2,-5.5,-44,0,0,-0.00935834 -42034,5400:245:1,-5,-44,0,0,-0.00918671 -42035,5400:144:2,-4.5,-44,0,0,-0.00918671 -42036,5400:144:1,-4,-44,0,0,-0.00913771 -42037,5400:143:2,-3.5,-44,0,0,-0.00908285 -42038,5400:143:1,-3,-44,0,0,-0.00903238 -42039,5400:142:2,-2.5,-44,0,0,-0.00887071 -42040,5400:142:1,-2,-44,0,0,-0.00870229 -42041,5400:141:2,-1.5,-44,0,0,-0.00862511 -42042,5400:141:1,-1,-44,0,0,-0.00847458 -42043,5400:140:2,-0.5,-44,0,0,-0.00838072 -42044,3400:140:2,0,-44,0,0,-0.00841435 -42045,3400:140:2,0.5,-44,0,0,-0.00848779 -42046,3400:141:1,1,-44,0,0,-0.00857143 -42047,3400:141:2,1.5,-44,0,0,-0.00865202 -42048,3400:142:1,2,-44,0,0,-0.00845007 -42049,3400:142:2,2.5,-44,0,0,-0.00786348 -42050,3400:143:1,3,-44,0,0,-0.00768692 -42051,3400:143:2,3.5,-44,0,0,-0.00777988 -42052,3400:144:1,4,-44,0,0,-0.00774012 -42053,3400:144:2,4.5,-44,0,0,-0.00754618 -42054,3400:245:1,5,-44,0,0,-0.00747597 -42055,3400:245:2,5.5,-44,0,0,-0.00750594 -42056,3400:246:1,6,-44,0,0,-0.00738005 -42057,3400:246:2,6.5,-44,0,0,-0.00736528 -42058,3400:247:1,7,-44,0,0,-0.00735054 -42059,3400:247:2,7.5,-44,0,0,-0.00733911 -42060,3400:248:1,8,-44,0,0,-0.00733094 -42061,3400:248:2,8.5,-44,0,0,-0.00726112 -42062,3400:249:1,9,-44,0,0,-0.0073114 -42063,3400:249:2,9.5,-44,0,0,-0.00792502 -42064,3401:140:1,10,-44,0,0,-0.00816144 -42065,3401:140:2,10.5,-44,0,0,-0.00771088 -42066,3401:141:1,11,-44,0,0,-0.00732278 -42067,3401:141:2,11.5,-44,0,0,-0.00727405 -42068,3401:142:1,12,-44,0,0,-0.00722727 -42069,3401:142:2,12.5,-44,0,0,-0.0072016 -42070,3401:143:1,13,-44,0,0,-0.00722404 -42071,3401:143:2,13.5,-44,0,0,-0.0072595 -42072,3401:144:1,14,-44,0,0,-0.00733911 -42073,3401:144:2,14.5,-44,0,0,-0.00734889 -42074,3401:245:1,15,-44,0,0,-0.00733747 -42075,3401:245:2,15.5,-44,0,0,-0.00742289 -42076,3401:246:1,16,-44,0,0,-0.00745599 -42077,3401:246:2,16.5,-44,0,0,-0.00744607 -42078,3401:247:1,17,-44,0,0,-0.00745933 -42079,3401:247:2,17.5,-44,0,0,-0.00750095 -42080,3401:248:1,18,-44,0,0,-0.00757309 -42081,3401:248:2,18.5,-44,0,0,-0.00765274 -42082,3401:249:1,19,-44,0,0,-0.00773497 -42083,3401:249:2,19.5,-44,0,0,-0.00781984 -42084,3402:140:1,20,-44,0,0,-0.00793208 -42085,3402:140:2,20.5,-44,0,0,-0.0080066 -42086,3402:141:1,21,-44,0,0,-0.00804413 -42087,3402:141:2,21.5,-44,0,0,-0.00809266 -42088,3402:142:1,22,-44,0,0,-0.00799236 -42089,3402:142:2,22.5,-44,0,0,-0.00795507 -42090,3402:143:1,23,-44,0,0,-0.00785996 -42091,3402:143:2,23.5,-44,0,0,-0.00766981 -42092,3402:144:1,24,-44,0,0,-0.00750431 -42093,3402:144:2,24.5,-44,0,0,-0.0074444 -42094,3402:245:1,25,-44,0,0,-0.00745102 -42095,3402:245:2,25.5,-44,0,0,-0.00795859 -42096,3402:246:1,26,-44,0,0,-0.00980271 -42097,3402:246:2,26.5,-44,0,0,-0.0107398 -42098,3402:247:1,27,-44,0,0,-0.0111728 -42099,3402:247:2,27.5,-44,0,0,-0.0111728 -42100,3402:248:1,28,-44,0,0,-0.0106991 -42101,3402:248:2,28.5,-44,0,0,-0.00923598 -42102,3402:249:1,29,-44,0,0,-0.00854472 -42103,3402:249:2,29.5,-44,0,0,-0.00931875 -42104,3403:140:1,30,-44,0,0,-0.0101954 -42105,3403:140:2,30.5,-44,0,0,-0.0103237 -42106,3403:141:1,31,-44,0,0,-0.00991711 -42107,3403:141:2,31.5,-44,0,0,-0.0101545 -42108,3403:142:1,32,-44,0,0,-0.00987957 -42109,3403:142:2,32.5,-44,0,0,-0.00930006 -42110,3403:143:1,33,-44,0,0,-0.0090586 -42111,3403:143:2,33.5,-44,0,0,-0.00943374 -42112,3403:144:1,34,-44,0,0,-0.0100486 -42113,3403:144:2,34.5,-44,0,0,-0.0104605 -42114,3403:245:1,35,-44,0,0,-0.0106443 -42115,3403:245:2,35.5,-44,0,0,-0.0107278 -42116,3403:246:1,36,-44,0,0,-0.010512 -42117,3403:246:2,36.5,-44,0,0,-0.0104139 -42118,3403:247:1,37,-44,0,0,-0.0107063 -42119,3403:247:2,37.5,-44,0,0,-0.0109873 -42120,3403:248:1,38,-44,0,0,-0.0111953 -42121,3403:248:2,38.5,-44,0,0,-0.0111853 -42122,3403:249:1,39,-44,0,0,-0.0110883 -42123,3403:249:2,39.5,-44,0,0,-0.0108507 -42124,3404:140:1,40,-44,0,0,-0.0105685 -42125,3404:140:2,40.5,-44,0,0,-0.010552 -42126,3404:141:1,41,-44,0,0,-0.0105661 -42127,3404:141:2,41.5,-44,0,0,-0.0105308 -42128,3404:142:1,42,-44,0,0,-0.0104348 -42129,3404:142:2,42.5,-44,0,0,-0.0102868 -42130,3404:143:1,43,-44,0,0,-0.0101206 -42131,3404:143:2,43.5,-44,0,0,-0.0100598 -42132,3404:144:1,44,-44,0,0,-0.010159 -42133,3404:144:2,44.5,-44,0,0,-0.0101999 -42134,3404:245:1,45,-44,0,0,-0.0101931 -42135,3404:245:2,45.5,-44,0,0,-0.0101636 -42136,3404:246:1,46,-44,0,0,-0.0102251 -42137,3404:246:2,46.5,-44,0,0,-0.0105921 -42138,3404:247:1,47,-44,0,0,-0.0109725 -42139,3404:247:2,47.5,-44,0,0,-0.010735 -42140,3404:248:1,48,-44,0,0,-0.0102846 -42141,3404:248:2,48.5,-44,0,0,-0.0101568 -42142,3404:249:1,49,-44,0,0,-0.0104699 -42143,3404:249:2,49.5,-44,0,0,-0.0110217 -42144,3405:140:1,50,-44,0,0,-0.011306 -42145,3405:140:2,50.5,-44,0,0,-0.0109505 -42146,3405:141:1,51,-44,0,0,-0.0105261 -42147,3405:141:2,51.5,-44,0,0,-0.0105709 -42148,3405:142:1,52,-44,0,0,-0.0107087 -42149,3405:142:2,52.5,-44,0,0,-0.0107494 -42150,3405:143:1,53,-44,0,0,-0.0110562 -42151,3405:143:2,53.5,-44,0,0,-0.0116262 -42152,3405:144:1,54,-44,0,0,-0.0117753 -42153,3405:144:2,54.5,-44,0,0,-0.0117124 -42154,3405:245:1,55,-44,0,0,-0.0119024 -42155,3405:245:2,55.5,-44,0,0,-0.0117595 -42156,3405:246:1,56,-44,0,0,-0.0112004 -42157,3405:246:2,56.5,-44,0,0,-0.0106181 -42158,3405:247:1,57,-44,0,0,-0.0104255 -42159,3405:247:2,57.5,-44,0,0,-0.010735 -42160,3405:248:1,58,-44,0,0,-0.0111654 -42161,3405:248:2,58.5,-44,0,0,-0.0117964 -42162,3405:249:1,59,-44,0,0,-0.0118652 -42163,3405:249:2,59.5,-44,0,0,-0.0115951 -42164,3406:140:1,60,-44,0,0,-0.0113999 -42165,3406:140:2,60.5,-44,0,0,-0.0114075 -42166,3406:141:1,61,-44,0,0,-0.0114714 -42167,3406:141:2,61.5,-44,0,0,-0.0113999 -42168,3406:142:1,62,-44,0,0,-0.0112455 -42169,3406:142:2,62.5,-44,0,0,-0.0113313 -42170,3406:143:1,63,-44,0,0,-0.0117097 -42171,3406:143:2,63.5,-44,0,0,-0.012147 -42172,3406:144:1,64,-44,0,0,-0.012394 -42173,3406:144:2,64.5,-44,0,0,-0.0122589 -42174,3406:245:1,65,-44,0,0,-0.0119878 -42175,3406:245:2,65.5,-44,0,0,-0.0119183 -42176,3406:246:1,66,-44,0,0,-0.0121335 -42177,3406:246:2,66.5,-44,0,0,-0.012394 -42178,3406:247:1,67,-44,0,0,-0.012539 -42179,3406:247:2,67.5,-44,0,0,-0.0126206 -42180,3406:248:1,68,-44,0,0,-0.0125699 -42181,3406:248:2,68.5,-44,0,0,-0.0121091 -42182,3406:249:1,69,-44,0,0,-0.0116601 -42183,3406:249:2,69.5,-44,0,0,-0.0115408 -42184,3407:140:1,70,-44,0,0,-0.0114151 -42185,3407:140:2,70.5,-44,0,0,-0.011148 -42186,3407:141:1,71,-44,0,0,-0.0108847 -42187,3407:141:2,71.5,-44,0,0,-0.0106895 -42188,3407:142:1,72,-44,0,0,-0.0106348 -42189,3407:142:2,72.5,-44,0,0,-0.0106609 -42190,3407:143:2,73.5,-44,0,0,-0.0107015 -42191,3407:144:1,74,-44,0,0,-0.0107134 -42192,3407:144:2,74.5,-44,0,0,-0.01068 -42193,3407:245:1,75,-44,0,0,-0.0106848 -42194,3407:245:2,75.5,-44,0,0,-0.0107182 -42195,3407:246:1,76,-44,0,0,-0.0108168 -42196,3407:246:2,76.5,-44,0,0,-0.0109407 -42197,3407:247:1,77,-44,0,0,-0.0108507 -42198,3407:247:2,77.5,-44,0,0,-0.0104582 -42199,3407:248:1,78,-44,0,0,-0.00999487 -42200,3407:248:2,78.5,-44,0,0,-0.00943168 -42201,3407:249:1,79,-44,0,0,-0.00824548 -42202,3407:249:2,79.5,-44,0,0,-0.00807827 -42203,3408:140:1,80,-44,0,0,-0.00829338 -42204,3408:140:2,80.5,-44,0,0,-0.00825288 -42205,3408:141:1,81,-44,0,0,-0.00822717 -42206,3408:141:2,81.5,-44,0,0,-0.00824369 -42207,3408:142:1,82,-44,0,0,-0.00821253 -42208,3408:142:2,82.5,-44,0,0,-0.00922367 -42209,3408:143:1,83,-44,0,0,-0.0109505 -42210,3408:143:2,83.5,-44,0,0,-0.0124914 -42211,3408:144:1,84,-44,0,0,-0.0137967 -42212,3408:144:2,84.5,-44,0,0,-0.0137473 -42213,3408:245:1,85,-44,0,0,-0.0124051 -42214,3408:245:2,85.5,-44,0,0,-0.0125699 -42215,3408:246:1,86,-44,0,0,-0.0132368 -42216,3408:246:2,86.5,-44,0,0,-0.0150941 -42217,3408:247:1,87,-44,0,0,-0.0155862 -42218,3408:247:2,87.5,-44,0,0,-0.0147165 -42219,3408:248:1,88,-44,0,0,-0.0153606 -42220,3408:248:2,88.5,-44,0,0,-0.0176753 -42221,3408:249:1,89,-44,0,0,-0.0177749 -42222,3408:249:2,89.5,-44,0,0,-0.0185344 -42223,3409:140:1,90,-44,0,0,-0.020145 -42224,3409:140:2,90.5,-44,0,0,-0.020154 -42225,3409:141:1,91,-44,0,0,-0.0175683 -42226,3409:141:2,91.5,-44,0,0,-0.0169021 -42227,3409:142:1,92,-44,0,0,-0.018118 -42228,3409:142:2,92.5,-44,0,0,-0.0189605 -42229,3409:143:1,93,-44,0,0,-0.0188881 -42230,3409:143:2,93.5,-44,0,0,-0.0186432 -42231,3409:144:1,94,-44,0,0,-0.0173525 -42232,3409:144:2,94.5,-44,0,0,-0.0161089 -42233,3409:245:1,95,-44,0,0,-0.0152097 -42234,3409:245:2,95.5,-44,0,0,-0.014859 -42235,3409:246:1,96,-44,0,0,-0.0151348 -42236,3409:246:2,96.5,-44,0,0,-0.0152438 -42237,3409:247:1,97,-44,0,0,-0.0152062 -42238,3409:247:2,97.5,-44,0,0,-0.0152506 -42239,3409:248:1,98,-44,0,0,-0.0152712 -42240,3409:248:2,98.5,-44,0,0,-0.0151995 -42241,3409:249:1,99,-44,0,0,-0.0155896 -42242,3409:249:2,99.5,-44,0,0,-0.0160368 -42243,3410:140:1,100,-44,0,0,-0.016026 -42244,3410:140:2,100.5,-44,0,0,-0.0155477 -42245,3410:141:1,101,-44,0,0,-0.0142172 -42246,3410:141:2,101.5,-44,0,0,-0.0126744 -42247,3410:142:1,102,-44,0,0,-0.011937 -42248,3410:142:2,102.5,-44,0,0,-0.0116914 -42249,3410:143:1,103,-44,0,0,-0.0116809 -42250,3410:143:2,103.5,-44,0,0,-0.0120201 -42251,3410:144:1,104,-44,0,0,-0.0120739 -42252,3410:144:2,104.5,-44,0,0,-0.0121961 -42253,3410:245:1,105,-44,0,0,-0.0123995 -42254,3410:245:2,105.5,-44,0,0,-0.0127141 -42255,3410:246:1,106,-44,0,0,-0.0132576 -42256,3410:246:2,106.5,-44,0,0,-0.0140525 -42257,3410:247:1,107,-44,0,0,-0.0153812 -42258,3410:247:2,107.5,-44,0,0,-0.0161488 -42259,3410:248:1,108,-44,0,0,-0.0160044 -42260,3410:248:2,108.5,-44,0,0,-0.0156247 -42261,3410:249:1,109,-44,0,0,-0.0154019 -42262,3410:249:2,109.5,-44,0,0,-0.0147628 -42263,3411:140:1,110,-44,0,0,-0.0137473 -42264,3411:140:2,110.5,-44,0,0,-0.0132843 -42265,3411:141:1,111,-44,0,0,-0.0137504 -42266,3411:141:2,111.5,-44,0,0,-0.013871 -42267,3411:142:1,112,-44,0,0,-0.0141631 -42268,3411:142:2,112.5,-44,0,0,-0.0147033 -42269,3411:143:1,113,-44,0,0,-0.0151382 -42270,3411:143:2,113.5,-44,0,0,-0.0155408 -42271,3411:144:1,114,-44,0,0,-0.0185552 -42272,3411:144:2,114.5,-44,0,0,-0.0201269 -42273,3411:245:1,115,-44,0,0,-0.0211888 -42274,3411:245:2,115.5,-44,0,0,-0.0209416 -42275,3411:246:1,116,-44,0,0,-0.0199777 -42276,3411:246:2,116.5,-44,0,0,-0.0193226 -42277,3411:247:1,117,-44,0,0,-0.0198745 -42278,3411:247:2,117.5,-44,0,0,-0.0195327 -42279,3411:248:1,118,-44,0,0,-0.0199822 -42280,3411:248:2,118.5,-44,0,0,-0.0222727 -42281,3411:249:1,119,-44,0,0,-0.0241993 -42282,3411:249:2,119.5,-44,0,0,-0.0241447 -42283,3412:140:1,120,-44,0,0,-0.0231554 -42284,3412:140:2,120.5,-44,0,0,-0.0214147 -42285,3412:141:1,121,-44,0,0,-0.0205533 -42286,3412:141:2,121.5,-44,0,0,-0.0218739 -42287,3412:142:1,122,-44,0,0,-0.0252459 -42288,3412:142:2,122.5,-44,0,0,-0.0261781 -42289,3412:143:1,123,-44,0,0,-0.0246975 -42290,3412:143:2,123.5,-44,0,0,-0.0215991 -42291,3412:144:1,124,-44,0,0,-0.0221373 -42292,3412:144:2,124.5,-44,0,0,-0.0188711 -42293,3412:245:1,125,-44,0,0,-0.0193924 -42294,3412:245:2,125.5,-44,0,0,-0.0202314 -42295,3412:246:1,126,-44,0,0,-0.0219977 -42296,3412:246:2,126.5,-44,0,0,-0.0245247 -42297,3412:247:1,127,-44,0,0,-0.0256554 -42298,3412:247:2,127.5,-44,0,0,-0.0251319 -42299,3412:248:1,128,-44,0,0,-0.0236046 -42300,3412:248:2,128.5,-44,0,0,-0.0221123 -42301,3412:249:1,129,-44,0,0,-0.0222626 -42302,3412:249:2,129.5,-44,0,0,-0.0231657 -42303,3413:140:1,130,-44,0,0,-0.022602 -42304,3413:140:2,130.5,-44,0,0,-0.0218245 -42305,3413:141:1,131,-44,0,0,-0.0221573 -42306,3413:141:2,131.5,-44,0,0,-0.0224596 -42307,3413:142:1,132,-44,0,0,-0.021953 -42308,3413:142:2,132.5,-44,0,0,-0.0205626 -42309,3413:143:1,133,-44,0,0,-0.0200815 -42310,3413:143:2,133.5,-44,0,0,-0.0223633 -42311,3413:144:1,134,-44,0,0,-0.0253375 -42312,3413:144:2,134.5,-44,0,0,-0.0267483 -42313,3413:245:1,135,-44,0,0,-0.0277942 -42314,3413:245:2,135.5,-44,0,0,-0.0275992 -42315,3413:246:1,136,-44,0,0,-0.0261662 -42316,3413:246:2,136.5,-44,0,0,-0.0244415 -42317,3413:247:1,137,-44,0,0,-0.02353 -42318,3413:247:2,137.5,-44,0,0,-0.0234185 -42319,3413:248:1,138,-44,0,0,-0.0238192 -42320,3413:248:2,138.5,-44,0,0,-0.0241885 -42321,3413:249:1,139,-44,0,0,-0.0243421 -42322,3413:249:2,139.5,-44,0,0,-0.0244748 -42323,3414:140:1,140,-44,0,0,-0.0247198 -42324,3414:140:2,140.5,-44,0,0,-0.0242981 -42325,3414:141:1,141,-44,0,0,-0.0231554 -42326,3414:141:2,141.5,-44,0,0,-0.0214147 -42327,3414:142:1,142,-44,0,0,-0.0206508 -42328,3414:142:2,142.5,-44,0,0,-0.0195459 -42329,3414:143:1,143,-44,0,0,-0.017827 -42330,3414:143:2,143.5,-44,0,0,-0.0158721 -42331,3414:144:1,144,-44,0,0,-0.0157197 -42332,3414:144:2,144.5,-44,0,0,-0.0162872 -42333,3414:245:1,145,-44,0,0,-0.0182693 -42334,3414:245:2,145.5,-44,0,0,-0.0207161 -42335,3414:246:1,146,-44,0,0,-0.0202543 -42336,3414:246:2,146.5,-44,0,0,-0.0187147 -42337,3414:247:1,147,-44,0,0,-0.0231344 -42338,3414:247:2,147.5,-44,0,0,-0.0205579 -42339,3414:248:1,148,-44,0,0,-0.0217262 -42340,3414:248:2,148.5,-44,0,0,-0.0264226 -42341,3414:249:1,149,-44,0,0,-0.0330438 -42342,3414:249:2,149.5,-44,0,0,-0.039143 -42343,3415:140:1,150,-44,0,0,-0.0397133 -42344,3415:140:2,150.5,-44,0,0,-0.0363322 -42345,3415:141:1,151,-44,0,0,-0.0336453 -42346,3415:141:2,151.5,-44,0,0,-0.0343049 -42347,3415:142:1,152,-44,0,0,-0.0316424 -42348,3415:142:2,152.5,-44,0,0,-0.0311487 -42349,3415:143:1,153,-44,0,0,-0.035429 -42350,3415:143:2,153.5,-44,0,0,-0.0419186 -42351,3415:144:1,154,-44,0,0,-0.043633 -42352,3415:144:2,154.5,-44,0,0,-0.0449407 -42353,3415:245:1,155,-44,0,0,-0.044241 -42354,3415:245:2,155.5,-44,0,0,-0.042688 -42355,3415:246:1,156,-44,0,0,-0.0401721 -42356,3415:246:2,156.5,-44,0,0,-0.0355425 -42357,3415:247:1,157,-44,0,0,-0.0327063 -42358,3415:247:2,157.5,-44,0,0,-0.0317292 -42359,3415:248:1,158,-44,0,0,-0.0336146 -42360,3415:248:2,158.5,-44,0,0,-0.0348743 -42361,3415:249:1,159,-44,0,0,-0.0337453 -42362,3415:249:2,159.5,-44,0,0,-0.0331496 -42363,3416:140:1,160,-44,0,0,-0.0319105 -42364,3416:140:2,160.5,-44,0,0,-0.0292921 -42365,3416:141:1,161,-44,0,0,-0.0274617 -42366,3416:141:2,161.5,-44,0,0,-0.0270043 -42367,3416:142:1,162,-44,0,0,-0.0273126 -42368,3416:142:2,162.5,-44,0,0,-0.0290269 -42369,3416:143:1,163,-44,0,0,-0.0299321 -42370,3416:143:2,163.5,-44,0,0,-0.0300823 -42371,3416:144:1,164,-44,0,0,-0.0319032 -42372,3416:144:2,164.5,-44,0,0,-0.0374392 -42373,3416:245:1,165,-44,0,0,-0.0433823 -42374,3416:245:2,165.5,-44,0,0,-0.0513413 -42375,3416:246:1,166,-44,0,0,-0.0545554 -42376,3416:246:2,166.5,-44,0,0,-0.0521955 -42377,3416:247:1,167,-44,0,0,-0.0500006 -42378,3416:247:2,167.5,-44,0,0,-0.0492181 -42379,3416:248:1,168,-44,0,0,-0.0485385 -42380,3416:248:2,168.5,-44,0,0,-0.0481356 -42381,3416:249:1,169,-44,0,0,-0.0478356 -42382,3416:249:2,169.5,-44,0,0,-0.0476696 -42383,3417:140:1,170,-44,0,0,-0.0476477 -42384,3417:140:2,170.5,-44,0,0,-0.0475704 -42385,3417:141:1,171,-44,0,0,-0.0477579 -42386,3417:141:2,171.5,-44,0,0,-0.0483364 -42387,3417:142:1,172,-44,0,0,-0.048359 -42388,3417:142:2,172.5,-44,0,0,-0.0485725 -42389,3417:143:1,173,-44,0,0,-0.0484486 -42390,3417:143:2,173.5,-44,0,0,-0.0473729 -42391,3417:144:1,174,-44,0,0,-0.0452011 -42392,3417:144:2,174.5,-44,0,0,-0.041477 -42393,3417:245:1,175,-44,0,0,-0.0358777 -42394,3417:245:2,175.5,-44,0,0,-0.0329911 -42395,3417:246:1,176,-44,0,0,-0.0333242 -42396,3417:246:2,176.5,-44,0,0,-0.0346676 -42397,3417:247:1,177,-44,0,0,-0.035437 -42398,3417:247:2,177.5,-44,0,0,-0.0372081 -42399,3417:248:1,178,-44,0,0,-0.0379838 -42400,3417:248:2,178.5,-44,0,0,-0.0376024 -42401,3417:249:1,179,-44,0,0,-0.037379 -42402,3417:249:2,179.5,-44,0,0,-0.0383162 -42403,3418:140:1,180,-44,0,0,-0.0396952 -42404,5418:130:3,-180,-43.5,0,0,-0.0400065 -42405,5417:239:4,-179.5,-43.5,0,0,-0.0430734 -42406,5417:239:3,-179,-43.5,0,0,-0.0461616 -42407,5417:238:4,-178.5,-43.5,0,0,-0.0480018 -42408,5417:238:3,-178,-43.5,0,0,-0.0486735 -42409,5417:237:4,-177.5,-43.5,0,0,-0.0485385 -42410,5417:237:3,-177,-43.5,0,0,-0.0485385 -42411,5417:236:4,-176.5,-43.5,0,0,-0.0486061 -42412,5417:236:3,-176,-43.5,0,0,-0.0488998 -42413,5417:235:4,-175.5,-43.5,0,0,-0.0493781 -42414,5417:235:3,-175,-43.5,0,0,-0.051905 -42415,5417:134:4,-174.5,-43.5,0,0,-0.0554009 -42416,5417:134:3,-174,-43.5,0,0,-0.0547719 -42417,5417:133:4,-173.5,-43.5,0,0,-0.0533739 -42418,5417:133:3,-173,-43.5,0,0,-0.0529658 -42419,5417:132:4,-172.5,-43.5,0,0,-0.0537731 -42420,5417:132:3,-172,-43.5,0,0,-0.0538358 -42421,5417:131:4,-171.5,-43.5,0,0,-0.0528182 -42422,5417:131:3,-171,-43.5,0,0,-0.050408 -42423,5417:130:4,-170.5,-43.5,0,0,-0.0459806 -42424,5417:130:3,-170,-43.5,0,0,-0.0415151 -42425,5416:239:4,-169.5,-43.5,0,0,-0.0472306 -42426,5416:239:3,-169,-43.5,0,0,-0.0525851 -42427,5416:238:4,-168.5,-43.5,0,0,-0.0550019 -42428,5416:238:3,-168,-43.5,0,0,-0.0541374 -42429,5416:237:4,-167.5,-43.5,0,0,-0.0510322 -42430,5416:237:3,-167,-43.5,0,0,-0.0461827 -42431,5416:236:4,-166.5,-43.5,0,0,-0.0414674 -42432,5416:236:3,-166,-43.5,0,0,-0.0413911 -42433,5416:235:4,-165.5,-43.5,0,0,-0.0426979 -42434,5416:235:3,-165,-43.5,0,0,-0.0436029 -42435,5416:134:4,-164.5,-43.5,0,0,-0.0428456 -42436,5416:134:3,-164,-43.5,0,0,-0.0407114 -42437,5416:133:4,-163.5,-43.5,0,0,-0.038334 -42438,5416:133:3,-163,-43.5,0,0,-0.0371741 -42439,5416:132:4,-162.5,-43.5,0,0,-0.038141 -42440,5416:132:3,-162,-43.5,0,0,-0.0413055 -42441,5416:131:4,-161.5,-43.5,0,0,-0.043855 -42442,5416:131:3,-161,-43.5,0,0,-0.0442818 -42443,5416:130:4,-160.5,-43.5,0,0,-0.0434223 -42444,5416:130:3,-160,-43.5,0,0,-0.0433222 -42445,5415:239:4,-159.5,-43.5,0,0,-0.0453371 -42446,5415:239:3,-159,-43.5,0,0,-0.0494124 -42447,5415:238:4,-158.5,-43.5,0,0,-0.0562866 -42448,5415:238:3,-158,-43.5,0,0,-0.0568545 -42449,5415:237:4,-157.5,-43.5,0,0,-0.0508549 -42450,5415:237:3,-157,-43.5,0,0,-0.0420924 -42451,5415:236:4,-156.5,-43.5,0,0,-0.0404781 -42452,5415:236:3,-156,-43.5,0,0,-0.0415916 -42453,5415:235:4,-155.5,-43.5,0,0,-0.042688 -42454,5415:235:3,-155,-43.5,0,0,-0.0508783 -42455,5415:134:4,-154.5,-43.5,0,0,-0.0639803 -42456,5415:134:3,-154,-43.5,0,0,-0.0750602 -42457,5415:133:4,-153.5,-43.5,0,0,-0.0781573 -42458,5415:133:3,-153,-43.5,0,0,-0.0782693 -42459,5415:132:4,-152.5,-43.5,0,0,-0.0773611 -42460,5415:132:3,-152,-43.5,0,0,-0.0758128 -42461,5415:131:4,-151.5,-43.5,0,0,-0.0738407 -42462,5415:131:3,-151,-43.5,0,0,-0.0715661 -42463,5415:130:4,-150.5,-43.5,0,0,-0.0686656 -42464,5415:130:3,-150,-43.5,0,0,-0.0644785 -42465,5414:239:4,-149.5,-43.5,0,0,-0.0586221 -42466,5414:239:3,-149,-43.5,0,0,-0.0522559 -42467,5414:238:4,-148.5,-43.5,0,0,-0.0475156 -42468,5414:238:3,-148,-43.5,0,0,-0.0454942 -42469,5414:237:4,-147.5,-43.5,0,0,-0.0469579 -42470,5414:237:3,-147,-43.5,0,0,-0.0510202 -42471,5414:236:4,-146.5,-43.5,0,0,-0.0562606 -42472,5414:236:3,-146,-43.5,0,0,-0.0594789 -42473,5414:235:4,-145.5,-43.5,0,0,-0.0587734 -42474,5414:235:3,-145,-43.5,0,0,-0.0561557 -42475,5414:134:4,-144.5,-43.5,0,0,-0.0529906 -42476,5414:134:3,-144,-43.5,0,0,-0.0517484 -42477,5414:133:4,-143.5,-43.5,0,0,-0.0529658 -42478,5414:133:3,-143,-43.5,0,0,-0.0552077 -42479,5414:132:4,-142.5,-43.5,0,0,-0.058022 -42480,5414:132:3,-142,-43.5,0,0,-0.0607316 -42481,5414:131:4,-141.5,-43.5,0,0,-0.0624947 -42482,5414:131:3,-141,-43.5,0,0,-0.062671 -42483,5414:130:4,-140.5,-43.5,0,0,-0.0618381 -42484,5414:130:3,-140,-43.5,0,0,-0.0549123 -42485,5413:239:4,-139.5,-43.5,0,0,-0.0479798 -42486,5413:239:3,-139,-43.5,0,0,-0.0473291 -42487,5413:238:4,-138.5,-43.5,0,0,-0.0470123 -42488,5413:238:3,-138,-43.5,0,0,-0.0484373 -42489,5413:237:4,-137.5,-43.5,0,0,-0.0518329 -42490,5413:237:3,-137,-43.5,0,0,-0.0566293 -42491,5413:236:4,-136.5,-43.5,0,0,-0.0614621 -42492,5413:236:3,-136,-43.5,0,0,-0.0652877 -42493,5413:235:4,-135.5,-43.5,0,0,-0.0676364 -42494,5413:235:3,-135,-43.5,0,0,-0.0690886 -42495,5413:134:4,-134.5,-43.5,0,0,-0.0700256 -42496,5413:134:3,-134,-43.5,0,0,-0.0702574 -42497,5413:133:4,-133.5,-43.5,0,0,-0.069695 -42498,5413:133:3,-133,-43.5,0,0,-0.0688931 -42499,5413:132:4,-132.5,-43.5,0,0,-0.0685361 -42500,5413:132:3,-132,-43.5,0,0,-0.0692356 -42501,5413:131:4,-131.5,-43.5,0,0,-0.0697609 -42502,5413:131:3,-131,-43.5,0,0,-0.0674133 -42503,5413:130:4,-130.5,-43.5,0,0,-0.0627298 -42504,5413:130:3,-130,-43.5,0,0,-0.061275 -42505,5412:239:4,-129.5,-43.5,0,0,-0.0611891 -42506,5412:239:3,-129,-43.5,0,0,-0.0594233 -42507,5412:238:4,-128.5,-43.5,0,0,-0.0581849 -42508,5412:238:3,-128,-43.5,0,0,-0.0541751 -42509,5412:237:4,-127.5,-43.5,0,0,-0.0514845 -42510,5412:237:3,-127,-43.5,0,0,-0.0517484 -42511,5412:236:4,-126.5,-43.5,0,0,-0.0521589 -42512,5412:236:3,-126,-43.5,0,0,-0.0529289 -42513,5412:235:4,-125.5,-43.5,0,0,-0.0527444 -42514,5412:235:3,-125,-43.5,0,0,-0.0512816 -42515,5412:134:4,-124.5,-43.5,0,0,-0.0508665 -42516,5412:134:3,-124,-43.5,0,0,-0.0506428 -42517,5412:133:4,-123.5,-43.5,0,0,-0.0501982 -42518,5412:133:3,-123,-43.5,0,0,-0.0494355 -42519,5412:132:4,-122.5,-43.5,0,0,-0.0484373 -42520,5412:132:3,-122,-43.5,0,0,-0.0474713 -42521,5412:131:4,-121.5,-43.5,0,0,-0.0471539 -42522,5412:131:3,-121,-43.5,0,0,-0.0471104 -42523,5412:130:4,-120.5,-43.5,0,0,-0.0466227 -42524,5412:130:3,-120,-43.5,0,0,-0.0460016 -42525,5411:239:4,-119.5,-43.5,0,0,-0.0458426 -42526,5411:239:3,-119,-43.5,0,0,-0.0457051 -42527,5411:238:4,-118.5,-43.5,0,0,-0.045316 -42528,5411:238:3,-118,-43.5,0,0,-0.0443945 -42529,5411:237:4,-117.5,-43.5,0,0,-0.0430734 -42530,5411:237:3,-117,-43.5,0,0,-0.0423357 -42531,5411:236:4,-116.5,-43.5,0,0,-0.0419667 -42532,5411:236:3,-116,-43.5,0,0,-0.0420053 -42533,5411:235:4,-115.5,-43.5,0,0,-0.0433125 -42534,5411:235:3,-115,-43.5,0,0,-0.0449097 -42535,5411:134:4,-114.5,-43.5,0,0,-0.0454314 -42536,5411:134:3,-114,-43.5,0,0,-0.0446822 -42537,5411:133:4,-113.5,-43.5,0,0,-0.0433222 -42538,5411:133:3,-113,-43.5,0,0,-0.0419959 -42539,5411:132:4,-112.5,-43.5,0,0,-0.0400708 -42540,5411:132:3,-112,-43.5,0,0,-0.0388921 -42541,5411:131:4,-111.5,-43.5,0,0,-0.0386517 -42542,5411:131:3,-111,-43.5,0,0,-0.0389548 -42543,5411:130:4,-110.5,-43.5,0,0,-0.0390712 -42544,5411:130:3,-110,-43.5,0,0,-0.0385455 -42545,5410:239:4,-109.5,-43.5,0,0,-0.0377926 -42546,5410:239:3,-109,-43.5,0,0,-0.0374905 -42547,5410:238:4,-108.5,-43.5,0,0,-0.0376111 -42548,5410:238:3,-108,-43.5,0,0,-0.037862 -42549,5410:237:4,-107.5,-43.5,0,0,-0.0375422 -42550,5410:237:3,-107,-43.5,0,0,-0.0365826 -42551,5410:236:4,-106.5,-43.5,0,0,-0.0363738 -42552,5410:236:3,-106,-43.5,0,0,-0.0375422 -42553,5410:235:4,-105.5,-43.5,0,0,-0.0384132 -42554,5410:235:3,-105,-43.5,0,0,-0.0378185 -42555,5410:134:4,-104.5,-43.5,0,0,-0.0363655 -42556,5410:134:3,-104,-43.5,0,0,-0.0349462 -42557,5410:133:4,-103.5,-43.5,0,0,-0.0346121 -42558,5410:133:3,-103,-43.5,0,0,-0.0353967 -42559,5410:132:4,-102.5,-43.5,0,0,-0.0362409 -42560,5410:132:3,-102,-43.5,0,0,-0.0365576 -42561,5410:131:4,-101.5,-43.5,0,0,-0.0358611 -42562,5410:131:3,-101,-43.5,0,0,-0.03462 -42563,5410:130:4,-100.5,-43.5,0,0,-0.0341955 -42564,5410:130:3,-100,-43.5,0,0,-0.0353317 -42565,5409:239:4,-99.5,-43.5,0,0,-0.0360752 -42566,5409:239:3,-99,-43.5,0,0,-0.035681 -42567,5409:238:4,-98.5,-43.5,0,0,-0.0350823 -42568,5409:238:3,-98,-43.5,0,0,-0.0345964 -42569,5409:237:4,-97.5,-43.5,0,0,-0.0342502 -42570,5409:237:3,-97,-43.5,0,0,-0.0340627 -42571,5409:236:4,-96.5,-43.5,0,0,-0.0340862 -42572,5409:236:3,-96,-43.5,0,0,-0.0343756 -42573,5409:235:4,-95.5,-43.5,0,0,-0.0348026 -42574,5409:235:3,-95,-43.5,0,0,-0.0352027 -42575,5409:134:4,-94.5,-43.5,0,0,-0.035624 -42576,5409:134:3,-94,-43.5,0,0,-0.0360339 -42577,5409:133:4,-93.5,-43.5,0,0,-0.0360092 -42578,5409:133:3,-93,-43.5,0,0,-0.0353157 -42579,5409:132:4,-92.5,-43.5,0,0,-0.0343756 -42580,5409:132:3,-92,-43.5,0,0,-0.0336146 -42581,5409:131:4,-91.5,-43.5,0,0,-0.0334233 -42582,5409:131:3,-91,-43.5,0,0,-0.033993 -42583,5409:130:4,-90.5,-43.5,0,0,-0.0348425 -42584,5409:130:3,-90,-43.5,0,0,-0.0355832 -42585,5408:239:4,-89.5,-43.5,0,0,-0.0355264 -42586,5408:239:3,-89,-43.5,0,0,-0.034954 -42587,5408:238:4,-88.5,-43.5,0,0,-0.0343521 -42588,5408:238:3,-88,-43.5,0,0,-0.0340784 -42589,5408:237:4,-87.5,-43.5,0,0,-0.0341876 -42590,5408:237:3,-87,-43.5,0,0,-0.0348026 -42591,5408:236:4,-86.5,-43.5,0,0,-0.0350661 -42592,5408:236:3,-86,-43.5,0,0,-0.034628 -42593,5408:235:4,-85.5,-43.5,0,0,-0.034211 -42594,5408:235:3,-85,-43.5,0,0,-0.0342972 -42595,5408:134:4,-84.5,-43.5,0,0,-0.0345648 -42596,5408:134:3,-84,-43.5,0,0,-0.0345648 -42597,5408:133:4,-83.5,-43.5,0,0,-0.0342736 -42598,5408:133:3,-83,-43.5,0,0,-0.0340551 -42599,5408:132:4,-82.5,-43.5,0,0,-0.0338688 -42600,5408:132:3,-82,-43.5,0,0,-0.0336146 -42601,5408:131:4,-81.5,-43.5,0,0,-0.0337761 -42602,5408:131:3,-81,-43.5,0,0,-0.0340162 -42603,5408:130:4,-80.5,-43.5,0,0,-0.0338997 -42604,5408:130:3,-80,-43.5,0,0,-0.0336068 -42605,5407:239:4,-79.5,-43.5,0,0,-0.0334156 -42606,5407:239:3,-79,-43.5,0,0,-0.0342268 -42607,5407:238:4,-78.5,-43.5,0,0,-0.0360258 -42608,5407:238:3,-78,-43.5,0,0,-0.0372081 -42609,5407:237:4,-77.5,-43.5,0,0,-0.0368012 -42610,5407:237:3,-77,-43.5,0,0,-0.0360009 -42611,5407:236:4,-76.5,-43.5,0,0,-0.0355589 -42612,5407:236:3,-76,-43.5,0,0,-0.0380711 -42613,5407:235:4,-75.5,-43.5,0,0,-0.0377754 -42614,5407:235:3,-75,-43.5,0,0,-0.0413531 -42615,5407:134:4,-74.5,-43.5,0,0,-0.0476588 -42616,5407:134:3,-74,-43.5,0,0,-0.0499773 -42617,5407:133:4,-73.5,-43.5,0,0,-0.0607603 -42618,5406:238:3,-68,-43.5,0,0,-0.0507369 -42619,5406:237:4,-67.5,-43.5,0,0,-0.0436229 -42620,5406:237:3,-67,-43.5,0,0,-0.0398505 -42621,5406:236:4,-66.5,-43.5,0,0,-0.0376198 -42622,5406:236:3,-66,-43.5,0,0,-0.035968 -42623,5406:235:4,-65.5,-43.5,0,0,-0.0352512 -42624,5406:235:3,-65,-43.5,0,0,-0.033993 -42625,5406:134:4,-64.5,-43.5,0,0,-0.0314843 -42626,5406:134:3,-64,-43.5,0,0,-0.0300959 -42627,5406:133:4,-63.5,-43.5,0,0,-0.0314843 -42628,5406:133:3,-63,-43.5,0,0,-0.0322837 -42629,5406:132:4,-62.5,-43.5,0,0,-0.0325054 -42630,5406:132:3,-62,-43.5,0,0,-0.0322249 -42631,5406:131:4,-61.5,-43.5,0,0,-0.0318888 -42632,5406:131:3,-61,-43.5,0,0,-0.0319761 -42633,5406:130:4,-60.5,-43.5,0,0,-0.0325203 -42634,5406:130:3,-60,-43.5,0,0,-0.0337298 -42635,5405:239:4,-59.5,-43.5,0,0,-0.0346121 -42636,5405:239:3,-59,-43.5,0,0,-0.0348663 -42637,5405:238:4,-58.5,-43.5,0,0,-0.0343756 -42638,5405:238:3,-58,-43.5,0,0,-0.0336068 -42639,5405:237:4,-57.5,-43.5,0,0,-0.0321514 -42640,5405:237:3,-57,-43.5,0,0,-0.030489 -42641,5405:236:4,-56.5,-43.5,0,0,-0.0296339 -42642,5405:236:3,-56,-43.5,0,0,-0.028182 -42643,5405:235:4,-55.5,-43.5,0,0,-0.0267301 -42644,5405:235:3,-55,-43.5,0,0,-0.0264465 -42645,5405:134:4,-54.5,-43.5,0,0,-0.0263687 -42646,5405:134:3,-54,-43.5,0,0,-0.0261781 -42647,5405:133:4,-53.5,-43.5,0,0,-0.0255624 -42648,5405:133:3,-53,-43.5,0,0,-0.0251659 -42649,5405:132:4,-52.5,-43.5,0,0,-0.0250126 -42650,5405:132:3,-52,-43.5,0,0,-0.0247927 -42651,5405:131:4,-51.5,-43.5,0,0,-0.0245413 -42652,5405:131:3,-51,-43.5,0,0,-0.0242926 -42653,5405:130:4,-50.5,-43.5,0,0,-0.0240086 -42654,5405:130:3,-50,-43.5,0,0,-0.0235726 -42655,5404:239:4,-49.5,-43.5,0,0,-0.0227713 -42656,5404:239:3,-49,-43.5,0,0,-0.0219086 -42657,5404:238:4,-48.5,-43.5,0,0,-0.0198745 -42658,5404:238:3,-48,-43.5,0,0,-0.0187358 -42659,5404:237:4,-47.5,-43.5,0,0,-0.0177949 -42660,5404:237:3,-47,-43.5,0,0,-0.0170892 -42661,5404:236:4,-46.5,-43.5,0,0,-0.0162652 -42662,5404:236:3,-46,-43.5,0,0,-0.0155164 -42663,5404:235:4,-45.5,-43.5,0,0,-0.0148491 -42664,5404:235:3,-45,-43.5,0,0,-0.014776 -42665,5404:134:4,-44.5,-43.5,0,0,-0.0149459 -42666,5404:134:3,-44,-43.5,0,0,-0.0150367 -42667,5404:133:4,-43.5,-43.5,0,0,-0.0150535 -42668,5404:133:3,-43,-43.5,0,0,-0.0152164 -42669,5404:132:4,-42.5,-43.5,0,0,-0.0151995 -42670,5404:132:3,-42,-43.5,0,0,-0.0148924 -42671,5404:131:4,-41.5,-43.5,0,0,-0.0150367 -42672,5404:131:3,-41,-43.5,0,0,-0.0154816 -42673,5404:130:4,-40.5,-43.5,0,0,-0.0155548 -42674,5404:130:3,-40,-43.5,0,0,-0.0151382 -42675,5403:239:4,-39.5,-43.5,0,0,-0.0142778 -42676,5403:239:3,-39,-43.5,0,0,-0.0133589 -42677,5403:238:4,-38.5,-43.5,0,0,-0.0127912 -42678,5403:238:3,-38,-43.5,0,0,-0.0123029 -42679,5403:237:4,-37.5,-43.5,0,0,-0.0118625 -42680,5403:237:3,-37,-43.5,0,0,-0.0114611 -42681,5403:236:4,-36.5,-43.5,0,0,-0.0113009 -42682,5403:236:3,-36,-43.5,0,0,-0.0112379 -42683,5403:235:4,-35.5,-43.5,0,0,-0.0112129 -42684,5403:235:3,-35,-43.5,0,0,-0.01141 -42685,5403:134:4,-34.5,-43.5,0,0,-0.012101 -42686,5403:134:3,-34,-43.5,0,0,-0.0122699 -42687,5403:133:4,-33.5,-43.5,0,0,-0.0112104 -42688,5403:133:3,-33,-43.5,0,0,-0.0103075 -42689,5403:132:4,-32.5,-43.5,0,0,-0.010184 -42690,5403:132:3,-32,-43.5,0,0,-0.0109823 -42691,5403:131:4,-31.5,-43.5,0,0,-0.0131071 -42692,5403:131:3,-31,-43.5,0,0,-0.0142267 -42693,5403:130:4,-30.5,-43.5,0,0,-0.0145916 -42694,5403:130:3,-30,-43.5,0,0,-0.0145329 -42695,5402:239:4,-29.5,-43.5,0,0,-0.0148224 -42696,5402:239:3,-29,-43.5,0,0,-0.0156247 -42697,5402:238:4,-28.5,-43.5,0,0,-0.0166309 -42698,5402:238:3,-28,-43.5,0,0,-0.0165229 -42699,5402:237:4,-27.5,-43.5,0,0,-0.0157975 -42700,5402:237:3,-27,-43.5,0,0,-0.014909 -42701,5402:236:4,-26.5,-43.5,0,0,-0.0138091 -42702,5402:236:3,-26,-43.5,0,0,-0.0129583 -42703,5402:235:4,-25.5,-43.5,0,0,-0.0129932 -42704,5402:235:3,-25,-43.5,0,0,-0.0141124 -42705,5402:134:4,-24.5,-43.5,0,0,-0.0149627 -42706,5402:134:3,-24,-43.5,0,0,-0.0145133 -42707,5402:133:4,-23.5,-43.5,0,0,-0.0146243 -42708,5402:133:3,-23,-43.5,0,0,-0.0152131 -42709,5402:132:4,-22.5,-43.5,0,0,-0.0150637 -42710,5402:132:3,-22,-43.5,0,0,-0.0142459 -42711,5402:131:4,-21.5,-43.5,0,0,-0.0136095 -42712,5402:131:3,-21,-43.5,0,0,-0.01384 -42713,5402:130:4,-20.5,-43.5,0,0,-0.0147429 -42714,5402:130:3,-20,-43.5,0,0,-0.0151382 -42715,5401:239:4,-19.5,-43.5,0,0,-0.0149158 -42716,5401:239:3,-19,-43.5,0,0,-0.0140935 -42717,5401:238:4,-18.5,-43.5,0,0,-0.0132813 -42718,5401:238:3,-18,-43.5,0,0,-0.0141314 -42719,5401:237:4,-17.5,-43.5,0,0,-0.0159471 -42720,5401:237:3,-17,-43.5,0,0,-0.0157798 -42721,5401:236:4,-16.5,-43.5,0,0,-0.0148656 -42722,5401:236:3,-16,-43.5,0,0,-0.0141821 -42723,5401:235:4,-15.5,-43.5,0,0,-0.0136921 -42724,5401:235:3,-15,-43.5,0,0,-0.0135487 -42725,5401:134:4,-14.5,-43.5,0,0,-0.0136034 -42726,5401:134:3,-14,-43.5,0,0,-0.0137504 -42727,5401:133:4,-13.5,-43.5,0,0,-0.0146441 -42728,5401:133:3,-13,-43.5,0,0,-0.0159901 -42729,5401:132:4,-12.5,-43.5,0,0,-0.0160476 -42730,5401:132:3,-12,-43.5,0,0,-0.0155025 -42731,5401:131:4,-11.5,-43.5,0,0,-0.0145753 -42732,5401:131:3,-11,-43.5,0,0,-0.0134008 -42733,5401:130:4,-10.5,-43.5,0,0,-0.0124162 -42734,5401:130:3,-10,-43.5,0,0,-0.0121199 -42735,5400:239:4,-9.5,-43.5,0,0,-0.0121961 -42736,5400:239:3,-9,-43.5,0,0,-0.0123084 -42737,5400:238:4,-8.5,-43.5,0,0,-0.0122808 -42738,5400:238:3,-8,-43.5,0,0,-0.0121851 -42739,5400:237:4,-7.5,-43.5,0,0,-0.0120443 -42740,5400:237:3,-7,-43.5,0,0,-0.0117569 -42741,5400:236:4,-6.5,-43.5,0,0,-0.011133 -42742,5400:236:3,-6,-43.5,0,0,-0.0103098 -42743,5400:235:4,-5.5,-43.5,0,0,-0.00977219 -42744,5400:235:3,-5,-43.5,0,0,-0.00929386 -42745,5400:134:4,-4.5,-43.5,0,0,-0.00924013 -42746,5400:134:3,-4,-43.5,0,0,-0.00926695 -42747,5400:133:4,-3.5,-43.5,0,0,-0.00924837 -42748,5400:133:3,-3,-43.5,0,0,-0.00914175 -42749,5400:132:4,-2.5,-43.5,0,0,-0.00896815 -42750,5400:132:3,-2,-43.5,0,0,-0.00876461 -42751,5400:131:4,-1.5,-43.5,0,0,-0.00861549 -42752,5400:131:3,-1,-43.5,0,0,-0.00849726 -42753,5400:130:4,-0.5,-43.5,0,0,-0.00838443 -42754,3400:130:4,0,-43.5,0,0,-0.00830822 -42755,3400:130:4,0.5,-43.5,0,0,-0.00829338 -42756,3400:131:3,1,-43.5,0,0,-0.00835086 -42757,3400:131:4,1.5,-43.5,0,0,-0.00850293 -42758,3400:132:3,2,-43.5,0,0,-0.00849536 -42759,3400:132:4,2.5,-43.5,0,0,-0.00804774 -42760,3400:133:3,3,-43.5,0,0,-0.00779549 -42761,3400:133:4,3.5,-43.5,0,0,-0.00787225 -42762,3400:134:3,4,-43.5,0,0,-0.00807108 -42763,3400:134:4,4.5,-43.5,0,0,-0.00830822 -42764,3400:235:3,5,-43.5,0,0,-0.00813425 -42765,3400:235:4,5.5,-43.5,0,0,-0.00802982 -42766,3400:236:3,6,-43.5,0,0,-0.00792502 -42767,3400:236:4,6.5,-43.5,0,0,-0.00770062 -42768,3400:237:3,7,-43.5,0,0,-0.00754116 -42769,3400:237:4,7.5,-43.5,0,0,-0.00770748 -42770,3400:238:3,8,-43.5,0,0,-0.00760351 -42771,3400:238:4,8.5,-43.5,0,0,-0.00730326 -42772,3400:239:3,9,-43.5,0,0,-0.00747927 -42773,3400:239:4,9.5,-43.5,0,0,-0.00803877 -42774,3401:130:3,10,-43.5,0,0,-0.0082971 -42775,3401:130:4,10.5,-43.5,0,0,-0.0084897 -42776,3401:131:3,11,-43.5,0,0,-0.00843125 -42777,3401:131:4,11.5,-43.5,0,0,-0.00798877 -42778,3401:132:3,12,-43.5,0,0,-0.00767153 -42779,3401:132:4,12.5,-43.5,0,0,-0.00743778 -42780,3401:133:3,13,-43.5,0,0,-0.00730162 -42781,3401:133:4,13.5,-43.5,0,0,-0.00727732 -42782,3401:134:3,14,-43.5,0,0,-0.00728538 -42783,3401:134:4,14.5,-43.5,0,0,-0.00729999 -42784,3401:235:3,15,-43.5,0,0,-0.00738828 -42785,3401:235:4,15.5,-43.5,0,0,-0.00748425 -42786,3401:236:3,16,-43.5,0,0,-0.00760686 -42787,3401:236:4,16.5,-43.5,0,0,-0.00779893 -42788,3401:237:3,17,-43.5,0,0,-0.00792852 -42789,3401:237:4,17.5,-43.5,0,0,-0.00804058 -42790,3401:238:3,18,-43.5,0,0,-0.00817966 -42791,3401:238:4,18.5,-43.5,0,0,-0.00825653 -42792,3401:239:3,19,-43.5,0,0,-0.00828785 -42793,3401:239:4,19.5,-43.5,0,0,-0.00837321 -42794,3402:130:3,20,-43.5,0,0,-0.00848214 -42795,3402:130:4,20.5,-43.5,0,0,-0.00841435 -42796,3402:131:3,21,-43.5,0,0,-0.00826203 -42797,3402:131:4,21.5,-43.5,0,0,-0.00814875 -42798,3402:132:3,22,-43.5,0,0,-0.00788805 -42799,3402:132:4,22.5,-43.5,0,0,-0.00782154 -42800,3402:133:3,23,-43.5,0,0,-0.00777988 -42801,3402:133:4,23.5,-43.5,0,0,-0.00770921 -42802,3402:134:3,24,-43.5,0,0,-0.00763062 -42803,3402:134:4,24.5,-43.5,0,0,-0.00756635 -42804,3402:235:3,25,-43.5,0,0,-0.00752437 -42805,3402:235:4,25.5,-43.5,0,0,-0.00827496 -42806,3402:236:3,26,-43.5,0,0,-0.00971349 -42807,3402:236:4,26.5,-43.5,0,0,-0.0104395 -42808,3402:237:3,27,-43.5,0,0,-0.0110217 -42809,3402:237:4,27.5,-43.5,0,0,-0.0110784 -42810,3402:238:3,28,-43.5,0,0,-0.0105026 -42811,3402:238:4,28.5,-43.5,0,0,-0.00896815 -42812,3402:239:3,29,-43.5,0,0,-0.00942533 -42813,3402:239:4,29.5,-43.5,0,0,-0.0101908 -42814,3403:130:3,30,-43.5,0,0,-0.010735 -42815,3403:130:4,30.5,-43.5,0,0,-0.011233 -42816,3403:131:3,31,-43.5,0,0,-0.0100396 -42817,3403:131:4,31.5,-43.5,0,0,-0.00985974 -42818,3403:132:3,32,-43.5,0,0,-0.00960577 -42819,3403:132:4,32.5,-43.5,0,0,-0.00952043 -42820,3403:133:3,33,-43.5,0,0,-0.0101908 -42821,3403:133:4,33.5,-43.5,0,0,-0.0104093 -42822,3403:134:3,34,-43.5,0,0,-0.0104605 -42823,3403:134:4,34.5,-43.5,0,0,-0.0106063 -42824,3403:235:3,35,-43.5,0,0,-0.0109799 -42825,3403:235:4,35.5,-43.5,0,0,-0.0116966 -42826,3403:236:3,36,-43.5,0,0,-0.0117124 -42827,3403:236:4,36.5,-43.5,0,0,-0.0114816 -42828,3403:237:3,37,-43.5,0,0,-0.0113363 -42829,3403:237:4,37.5,-43.5,0,0,-0.0115848 -42830,3403:238:3,38,-43.5,0,0,-0.0118148 -42831,3403:238:4,38.5,-43.5,0,0,-0.011479 -42832,3403:239:3,39,-43.5,0,0,-0.011138 -42833,3403:239:4,39.5,-43.5,0,0,-0.0108361 -42834,3404:130:3,40,-43.5,0,0,-0.0106681 -42835,3404:130:4,40.5,-43.5,0,0,-0.0107566 -42836,3404:131:3,41,-43.5,0,0,-0.0106181 -42837,3404:131:4,41.5,-43.5,0,0,-0.0104816 -42838,3404:132:3,42,-43.5,0,0,-0.0105378 -42839,3404:132:4,42.5,-43.5,0,0,-0.0106752 -42840,3404:133:3,43,-43.5,0,0,-0.0107807 -42841,3404:133:4,43.5,-43.5,0,0,-0.0108555 -42842,3404:134:3,44,-43.5,0,0,-0.0108096 -42843,3404:134:4,44.5,-43.5,0,0,-0.0106514 -42844,3404:235:3,45,-43.5,0,0,-0.0105378 -42845,3404:235:4,45.5,-43.5,0,0,-0.0107734 -42846,3404:236:3,46,-43.5,0,0,-0.0114637 -42847,3404:236:4,46.5,-43.5,0,0,-0.0117595 -42848,3404:237:3,47,-43.5,0,0,-0.0116836 -42849,3404:237:4,47.5,-43.5,0,0,-0.0112782 -42850,3404:238:3,48,-43.5,0,0,-0.0106895 -42851,3404:238:4,48.5,-43.5,0,0,-0.0107063 -42852,3404:239:3,49,-43.5,0,0,-0.0114971 -42853,3404:239:4,49.5,-43.5,0,0,-0.0123111 -42854,3405:130:3,50,-43.5,0,0,-0.0126093 -42855,3405:130:4,50.5,-43.5,0,0,-0.012419 -42856,3405:131:3,51,-43.5,0,0,-0.0116262 -42857,3405:131:4,51.5,-43.5,0,0,-0.0109212 -42858,3405:132:3,52,-43.5,0,0,-0.0107302 -42859,3405:132:4,52.5,-43.5,0,0,-0.0110118 -42860,3405:133:3,53,-43.5,0,0,-0.0120577 -42861,3405:133:4,53.5,-43.5,0,0,-0.0127998 -42862,3405:134:3,54,-43.5,0,0,-0.012584 -42863,3405:134:4,54.5,-43.5,0,0,-0.0119985 -42864,3405:235:3,55,-43.5,0,0,-0.0121307 -42865,3405:235:4,55.5,-43.5,0,0,-0.0118864 -42866,3405:236:3,56,-43.5,0,0,-0.0115331 -42867,3405:236:4,56.5,-43.5,0,0,-0.0112631 -42868,3405:237:3,57,-43.5,0,0,-0.0112004 -42869,3405:237:4,57.5,-43.5,0,0,-0.0113237 -42870,3405:238:3,58,-43.5,0,0,-0.0113922 -42871,3405:238:4,58.5,-43.5,0,0,-0.0118043 -42872,3405:239:3,59,-43.5,0,0,-0.0120658 -42873,3405:239:4,59.5,-43.5,0,0,-0.0122261 -42874,3406:130:3,60,-43.5,0,0,-0.0122891 -42875,3406:130:4,60.5,-43.5,0,0,-0.0123774 -42876,3406:131:3,61,-43.5,0,0,-0.0125054 -42877,3406:131:4,61.5,-43.5,0,0,-0.0124718 -42878,3406:132:3,62,-43.5,0,0,-0.0120658 -42879,3406:132:4,62.5,-43.5,0,0,-0.0116549 -42880,3406:133:3,63,-43.5,0,0,-0.0117622 -42881,3406:133:4,63.5,-43.5,0,0,-0.0122754 -42882,3406:134:3,64,-43.5,0,0,-0.0126404 -42883,3406:134:4,64.5,-43.5,0,0,-0.0125446 -42884,3406:235:3,65,-43.5,0,0,-0.0122479 -42885,3406:235:4,65.5,-43.5,0,0,-0.0121253 -42886,3406:236:3,66,-43.5,0,0,-0.0122974 -42887,3406:236:4,66.5,-43.5,0,0,-0.0126037 -42888,3406:237:3,67,-43.5,0,0,-0.0128113 -42889,3406:237:4,67.5,-43.5,0,0,-0.0128601 -42890,3406:238:3,68,-43.5,0,0,-0.0129178 -42891,3406:238:4,68.5,-43.5,0,0,-0.0129816 -42892,3406:239:3,69,-43.5,0,0,-0.0125531 -42893,3406:239:4,69.5,-43.5,0,0,-0.0115899 -42894,3407:130:3,70,-43.5,0,0,-0.0112204 -42895,3407:130:4,70.5,-43.5,0,0,-0.0110167 -42896,3407:131:3,71,-43.5,0,0,-0.0108676 -42897,3407:131:4,71.5,-43.5,0,0,-0.0107926 -42898,3407:132:3,72,-43.5,0,0,-0.0108168 -42899,3407:132:4,72.5,-43.5,0,0,-0.0108676 -42900,3407:133:4,73.5,-43.5,0,0,-0.0107254 -42901,3407:134:3,74,-43.5,0,0,-0.0107879 -42902,3407:134:4,74.5,-43.5,0,0,-0.0109383 -42903,3407:235:3,75,-43.5,0,0,-0.0109334 -42904,3407:235:4,75.5,-43.5,0,0,-0.0108822 -42905,3407:236:3,76,-43.5,0,0,-0.0109066 -42906,3407:236:4,76.5,-43.5,0,0,-0.0110364 -42907,3407:237:3,77,-43.5,0,0,-0.0109139 -42908,3407:237:4,77.5,-43.5,0,0,-0.0107087 -42909,3407:238:3,78,-43.5,0,0,-0.0102846 -42910,3407:238:4,78.5,-43.5,0,0,-0.00971349 -42911,3407:239:3,79,-43.5,0,0,-0.00884113 -42912,3407:239:4,79.5,-43.5,0,0,-0.00826759 -42913,3408:130:3,80,-43.5,0,0,-0.00821616 -42914,3408:130:4,80.5,-43.5,0,0,-0.00826574 -42915,3408:131:3,81,-43.5,0,0,-0.00818327 -42916,3408:131:4,81.5,-43.5,0,0,-0.00833045 -42917,3408:132:3,82,-43.5,0,0,-0.0112909 -42918,3408:132:4,82.5,-43.5,0,0,-0.0109334 -42919,3408:133:3,83,-43.5,0,0,-0.0117753 -42920,3408:133:4,83.5,-43.5,0,0,-0.014733 -42921,3408:134:3,84,-43.5,0,0,-0.0165601 -42922,3408:134:4,84.5,-43.5,0,0,-0.0172745 -42923,3408:235:3,85,-43.5,0,0,-0.0157373 -42924,3408:235:4,85.5,-43.5,0,0,-0.013222 -42925,3408:236:3,86,-43.5,0,0,-0.013225 -42926,3408:236:4,86.5,-43.5,0,0,-0.0148291 -42927,3408:237:3,87,-43.5,0,0,-0.0157833 -42928,3408:237:4,87.5,-43.5,0,0,-0.016127 -42929,3408:238:3,88,-43.5,0,0,-0.0174423 -42930,3408:238:4,88.5,-43.5,0,0,-0.0174737 -42931,3408:239:3,89,-43.5,0,0,-0.0169821 -42932,3408:239:4,89.5,-43.5,0,0,-0.0176673 -42933,3409:130:3,90,-43.5,0,0,-0.0196076 -42934,3409:130:4,90.5,-43.5,0,0,-0.0215699 -42935,3409:131:3,91,-43.5,0,0,-0.0201996 -42936,3409:131:4,91.5,-43.5,0,0,-0.0188076 -42937,3409:132:3,92,-43.5,0,0,-0.0191106 -42938,3409:132:4,92.5,-43.5,0,0,-0.0189051 -42939,3409:133:3,93,-43.5,0,0,-0.0182037 -42940,3409:133:4,93.5,-43.5,0,0,-0.0184553 -42941,3409:134:3,94,-43.5,0,0,-0.0174934 -42942,3409:134:4,94.5,-43.5,0,0,-0.0157373 -42943,3409:235:3,95,-43.5,0,0,-0.0148857 -42944,3409:235:4,95.5,-43.5,0,0,-0.0153674 -42945,3409:236:3,96,-43.5,0,0,-0.0161778 -42946,3409:236:4,96.5,-43.5,0,0,-0.0162652 -42947,3409:237:3,97,-43.5,0,0,-0.0161415 -42948,3409:237:4,97.5,-43.5,0,0,-0.0161234 -42949,3409:238:3,98,-43.5,0,0,-0.0161778 -42950,3409:238:4,98.5,-43.5,0,0,-0.0161343 -42951,3409:239:3,99,-43.5,0,0,-0.0160188 -42952,3409:239:4,99.5,-43.5,0,0,-0.016138 -42953,3410:130:3,100,-43.5,0,0,-0.0166609 -42954,3410:130:4,100.5,-43.5,0,0,-0.0167321 -42955,3410:131:3,101,-43.5,0,0,-0.0159399 -42956,3410:131:4,101.5,-43.5,0,0,-0.014249 -42957,3410:132:3,102,-43.5,0,0,-0.0127598 -42958,3410:132:4,102.5,-43.5,0,0,-0.0120174 -42959,3410:133:3,103,-43.5,0,0,-0.0117937 -42960,3410:133:4,103.5,-43.5,0,0,-0.0119157 -42961,3410:134:3,104,-43.5,0,0,-0.0120361 -42962,3410:134:4,104.5,-43.5,0,0,-0.0123194 -42963,3410:235:3,105,-43.5,0,0,-0.0127626 -42964,3410:235:4,105.5,-43.5,0,0,-0.0131984 -42965,3410:236:3,106,-43.5,0,0,-0.0136828 -42966,3410:236:4,106.5,-43.5,0,0,-0.0145786 -42967,3410:237:3,107,-43.5,0,0,-0.0165081 -42968,3410:237:4,107.5,-43.5,0,0,-0.0163936 -42969,3410:238:3,108,-43.5,0,0,-0.0156387 -42970,3410:238:4,108.5,-43.5,0,0,-0.0152849 -42971,3410:239:3,109,-43.5,0,0,-0.0153847 -42972,3410:239:4,109.5,-43.5,0,0,-0.0148523 -42973,3411:130:3,110,-43.5,0,0,-0.0139208 -42974,3411:130:4,110.5,-43.5,0,0,-0.0134911 -42975,3411:131:3,111,-43.5,0,0,-0.0139396 -42976,3411:131:4,111.5,-43.5,0,0,-0.014371 -42977,3411:132:3,112,-43.5,0,0,-0.0148857 -42978,3411:132:4,112.5,-43.5,0,0,-0.0157975 -42979,3411:133:3,113,-43.5,0,0,-0.0159399 -42980,3411:133:4,113.5,-43.5,0,0,-0.0178349 -42981,3411:134:3,114,-43.5,0,0,-0.0185385 -42982,3411:134:4,114.5,-43.5,0,0,-0.0204147 -42983,3411:235:3,115,-43.5,0,0,-0.0232235 -42984,3411:235:4,115.5,-43.5,0,0,-0.0246472 -42985,3411:236:3,116,-43.5,0,0,-0.0251261 -42986,3411:236:4,116.5,-43.5,0,0,-0.0239976 -42987,3411:237:3,117,-43.5,0,0,-0.0214195 -42988,3411:237:4,117.5,-43.5,0,0,-0.0196209 -42989,3411:238:3,118,-43.5,0,0,-0.0192879 -42990,3411:238:4,118.5,-43.5,0,0,-0.0208004 -42991,3411:239:3,119,-43.5,0,0,-0.0241611 -42992,3411:239:4,119.5,-43.5,0,0,-0.0238894 -42993,3412:130:3,120,-43.5,0,0,-0.0233709 -42994,3412:130:4,120.5,-43.5,0,0,-0.0221272 -42995,3412:131:3,121,-43.5,0,0,-0.0248883 -42996,3412:131:4,121.5,-43.5,0,0,-0.0282139 -42997,3412:132:3,122,-43.5,0,0,-0.0292921 -42998,3412:132:4,122.5,-43.5,0,0,-0.0296205 -42999,3412:133:3,123,-43.5,0,0,-0.0294323 -43000,3412:133:4,123.5,-43.5,0,0,-0.0284068 -43001,3412:134:3,124,-43.5,0,0,-0.0248601 -43002,3412:134:4,124.5,-43.5,0,0,-0.0209653 -43003,3412:235:3,125,-43.5,0,0,-0.0190076 -43004,3412:235:4,125.5,-43.5,0,0,-0.0197361 -43005,3412:236:3,126,-43.5,0,0,-0.0221272 -43006,3412:236:4,126.5,-43.5,0,0,-0.0253375 -43007,3412:237:3,127,-43.5,0,0,-0.026876 -43008,3412:237:4,127.5,-43.5,0,0,-0.0261367 -43009,3412:238:3,128,-43.5,0,0,-0.0242378 -43010,3412:238:4,128.5,-43.5,0,0,-0.0227765 -43011,3412:239:3,129,-43.5,0,0,-0.023103 -43012,3412:239:4,129.5,-43.5,0,0,-0.0235726 -43013,3413:130:3,130,-43.5,0,0,-0.0230822 -43014,3413:130:4,130.5,-43.5,0,0,-0.02353 -43015,3413:131:3,131,-43.5,0,0,-0.0238353 -43016,3413:131:4,131.5,-43.5,0,0,-0.0237762 -43017,3413:132:3,132,-43.5,0,0,-0.0227713 -43018,3413:132:4,132.5,-43.5,0,0,-0.0216576 -43019,3413:133:3,133,-43.5,0,0,-0.0237545 -43020,3413:133:4,133.5,-43.5,0,0,-0.026609 -43021,3413:134:3,134,-43.5,0,0,-0.0271457 -43022,3413:134:4,134.5,-43.5,0,0,-0.0277879 -43023,3413:235:3,135,-43.5,0,0,-0.0287118 -43024,3413:235:4,135.5,-43.5,0,0,-0.0295531 -43025,3413:236:3,136,-43.5,0,0,-0.0299797 -43026,3413:236:4,136.5,-43.5,0,0,-0.030007 -43027,3413:237:3,137,-43.5,0,0,-0.0299935 -43028,3413:237:4,137.5,-43.5,0,0,-0.0303919 -43029,3413:238:3,138,-43.5,0,0,-0.0310497 -43030,3413:238:4,138.5,-43.5,0,0,-0.0316208 -43031,3413:239:3,139,-43.5,0,0,-0.0320197 -43032,3413:239:4,139.5,-43.5,0,0,-0.0323945 -43033,3414:130:3,140,-43.5,0,0,-0.0323352 -43034,3414:130:4,140.5,-43.5,0,0,-0.0305168 -43035,3414:131:3,141,-43.5,0,0,-0.0258713 -43036,3414:131:4,141.5,-43.5,0,0,-0.021795 -43037,3414:132:3,142,-43.5,0,0,-0.0204978 -43038,3414:132:4,142.5,-43.5,0,0,-0.0204515 -43039,3414:133:3,143,-43.5,0,0,-0.0198924 -43040,3414:133:4,143.5,-43.5,0,0,-0.0183147 -43041,3414:134:3,144,-43.5,0,0,-0.0166871 -43042,3414:134:4,144.5,-43.5,0,0,-0.0165118 -43043,3414:235:3,145,-43.5,0,0,-0.0179881 -43044,3414:235:4,145.5,-43.5,0,0,-0.0207722 -43045,3414:236:3,146,-43.5,0,0,-0.0208052 -43046,3414:236:4,146.5,-43.5,0,0,-0.0205903 -43047,3414:237:3,147,-43.5,0,0,-0.0221272 -43048,3414:237:4,147.5,-43.5,0,0,-0.0219036 -43049,3414:238:3,148,-43.5,0,0,-0.0244194 -43050,3414:238:4,148.5,-43.5,0,0,-0.0296946 -43051,3414:239:3,149,-43.5,0,0,-0.0356892 -43052,3414:239:4,149.5,-43.5,0,0,-0.0382198 -43053,3415:130:3,150,-43.5,0,0,-0.0383514 -43054,3415:130:4,150.5,-43.5,0,0,-0.0384837 -43055,3415:131:3,151,-43.5,0,0,-0.0395857 -43056,3415:131:4,151.5,-43.5,0,0,-0.0395403 -43057,3415:132:3,152,-43.5,0,0,-0.0396313 -43058,3415:132:4,152.5,-43.5,0,0,-0.0410309 -43059,3415:133:3,153,-43.5,0,0,-0.0422091 -43060,3415:133:4,153.5,-43.5,0,0,-0.0435425 -43061,3415:134:3,154,-43.5,0,0,-0.0452534 -43062,3415:134:4,154.5,-43.5,0,0,-0.0435024 -43063,3415:235:3,155,-43.5,0,0,-0.0432525 -43064,3415:235:4,155.5,-43.5,0,0,-0.0441085 -43065,3415:236:3,156,-43.5,0,0,-0.0416395 -43066,3415:236:4,156.5,-43.5,0,0,-0.0371486 -43067,3415:237:3,157,-43.5,0,0,-0.0333697 -43068,3415:237:4,157.5,-43.5,0,0,-0.0345332 -43069,3415:238:3,158,-43.5,0,0,-0.0354615 -43070,3415:238:4,158.5,-43.5,0,0,-0.037663 -43071,3415:239:3,159,-43.5,0,0,-0.0382286 -43072,3415:239:4,159.5,-43.5,0,0,-0.0378185 -43073,3416:130:3,160,-43.5,0,0,-0.0378273 -43074,3416:130:4,160.5,-43.5,0,0,-0.0376024 -43075,3416:131:3,161,-43.5,0,0,-0.0371655 -43076,3416:131:4,161.5,-43.5,0,0,-0.0370804 -43077,3416:132:3,162,-43.5,0,0,-0.036759 -43078,3416:132:4,162.5,-43.5,0,0,-0.0353885 -43079,3416:133:3,163,-43.5,0,0,-0.0339385 -43080,3416:133:4,163.5,-43.5,0,0,-0.0340551 -43081,3416:134:3,164,-43.5,0,0,-0.0368264 -43082,3416:134:4,164.5,-43.5,0,0,-0.0407677 -43083,3416:235:3,165,-43.5,0,0,-0.0442513 -43084,3416:235:4,165.5,-43.5,0,0,-0.0523049 -43085,3416:236:3,166,-43.5,0,0,-0.0554656 -43086,3416:236:4,166.5,-43.5,0,0,-0.0536605 -43087,3416:237:3,167,-43.5,0,0,-0.0503028 -43088,3416:237:4,167.5,-43.5,0,0,-0.0492867 -43089,3416:238:3,168,-43.5,0,0,-0.0488093 -43090,3416:238:4,168.5,-43.5,0,0,-0.0483812 -43091,3416:239:3,169,-43.5,0,0,-0.0478575 -43092,3416:239:4,169.5,-43.5,0,0,-0.0475045 -43093,3417:130:3,170,-43.5,0,0,-0.0471869 -43094,3417:130:4,170.5,-43.5,0,0,-0.0468821 -43095,3417:131:3,171,-43.5,0,0,-0.0465688 -43096,3417:131:4,171.5,-43.5,0,0,-0.0462042 -43097,3417:132:3,172,-43.5,0,0,-0.0462362 -43098,3417:132:4,172.5,-43.5,0,0,-0.0468497 -43099,3417:133:3,173,-43.5,0,0,-0.0484713 -43100,3417:133:4,173.5,-43.5,0,0,-0.0493324 -43101,3417:134:3,174,-43.5,0,0,-0.0483703 -43102,3417:134:4,174.5,-43.5,0,0,-0.0452429 -43103,3417:235:3,175,-43.5,0,0,-0.0401721 -43104,3417:235:4,175.5,-43.5,0,0,-0.0353317 -43105,3417:236:3,176,-43.5,0,0,-0.0337917 -43106,3417:236:4,176.5,-43.5,0,0,-0.0350742 -43107,3417:237:3,177,-43.5,0,0,-0.0373876 -43108,3417:237:4,177.5,-43.5,0,0,-0.0389188 -43109,3417:238:3,178,-43.5,0,0,-0.0388564 -43110,3417:238:4,178.5,-43.5,0,0,-0.0381759 -43111,3417:239:3,179,-43.5,0,0,-0.0376975 -43112,3417:239:4,179.5,-43.5,0,0,-0.0383074 -43113,3418:130:3,180,-43.5,0,0,-0.0400065 -43114,5418:130:1,-180,-43,0,0,-0.0461827 -43115,5417:239:2,-179.5,-43,0,0,-0.0476588 -43116,5417:239:1,-179,-43,0,0,-0.0481244 -43117,5417:238:2,-178.5,-43,0,0,-0.0484373 -43118,5417:238:1,-178,-43,0,0,-0.0484486 -43119,5417:237:2,-177.5,-43,0,0,-0.0484822 -43120,5417:237:1,-177,-43,0,0,-0.049036 -43121,5417:236:2,-176.5,-43,0,0,-0.0500934 -43122,5417:236:1,-176,-43,0,0,-0.0495847 -43123,5417:235:2,-175.5,-43,0,0,-0.050502 -43124,5417:235:1,-175,-43,0,0,-0.0516402 -43125,5417:134:2,-174.5,-43,0,0,-0.055764 -43126,5417:134:1,-174,-43,0,0,-0.055803 -43127,5417:133:2,-173.5,-43,0,0,-0.0535855 -43128,5417:133:1,-173,-43,0,0,-0.0529533 -43129,5417:132:2,-172.5,-43,0,0,-0.0541628 -43130,5417:132:1,-172,-43,0,0,-0.0540743 -43131,5417:131:2,-171.5,-43,0,0,-0.0523777 -43132,5417:131:1,-171,-43,0,0,-0.0495731 -43133,5417:130:2,-170.5,-43,0,0,-0.0443024 -43134,5417:130:1,-170,-43,0,0,-0.0458106 -43135,5416:239:2,-169.5,-43,0,0,-0.0480687 -43136,5416:239:1,-169,-43,0,0,-0.0505603 -43137,5416:238:2,-168.5,-43,0,0,-0.0560902 -43138,5416:238:1,-168,-43,0,0,-0.0544156 -43139,5416:237:2,-167.5,-43,0,0,-0.0530399 -43140,5416:237:1,-167,-43,0,0,-0.0527934 -43141,5416:236:2,-166.5,-43,0,0,-0.0517363 -43142,5416:236:1,-166,-43,0,0,-0.0513533 -43143,5416:235:2,-165.5,-43,0,0,-0.0507602 -43144,5416:235:1,-165,-43,0,0,-0.0498151 -43145,5416:134:2,-164.5,-43,0,0,-0.0484373 -43146,5416:134:1,-164,-43,0,0,-0.0461827 -43147,5416:133:2,-163.5,-43,0,0,-0.0430337 -43148,5416:133:1,-163,-43,0,0,-0.0405338 -43149,5416:132:2,-162.5,-43,0,0,-0.0405805 -43150,5416:132:1,-162,-43,0,0,-0.0429644 -43151,5416:131:2,-161.5,-43,0,0,-0.0456945 -43152,5416:131:1,-161,-43,0,0,-0.0467522 -43153,5416:130:2,-160.5,-43,0,0,-0.0464612 -43154,5416:130:1,-160,-43,0,0,-0.0466764 -43155,5415:239:2,-159.5,-43,0,0,-0.0488432 -43156,5415:239:1,-159,-43,0,0,-0.0534859 -43157,5415:238:2,-158.5,-43,0,0,-0.0589524 -43158,5415:238:1,-158,-43,0,0,-0.0581173 -43159,5415:237:2,-157.5,-43,0,0,-0.0536731 -43160,5415:237:1,-157,-43,0,0,-0.0457577 -43161,5415:236:2,-156.5,-43,0,0,-0.0420248 -43162,5415:236:1,-156,-43,0,0,-0.0427078 -43163,5415:235:2,-155.5,-43,0,0,-0.0475814 -43164,5415:235:1,-155,-43,0,0,-0.0585535 -43165,5415:134:2,-154.5,-43,0,0,-0.0727454 -43166,5415:134:1,-154,-43,0,0,-0.0799861 -43167,5415:133:2,-153.5,-43,0,0,-0.0805221 -43168,5415:133:1,-153,-43,0,0,-0.0806571 -43169,5415:132:2,-152.5,-43,0,0,-0.0800239 -43170,5415:132:1,-152,-43,0,0,-0.0788497 -43171,5415:131:2,-151.5,-43,0,0,-0.0784744 -43172,5415:131:1,-151,-43,0,0,-0.0789812 -43173,5415:130:2,-150.5,-43,0,0,-0.0792644 -43174,5415:130:1,-150,-43,0,0,-0.0781948 -43175,5414:239:2,-149.5,-43,0,0,-0.0755609 -43176,5414:239:1,-149,-43,0,0,-0.0715661 -43177,5414:238:2,-148.5,-43,0,0,-0.066891 -43178,5414:238:1,-148,-43,0,0,-0.0624947 -43179,5414:237:2,-147.5,-43,0,0,-0.0594649 -43180,5414:237:1,-147,-43,0,0,-0.0590902 -43181,5414:236:2,-146.5,-43,0,0,-0.0616352 -43182,5414:236:1,-146,-43,0,0,-0.0652568 -43183,5414:235:2,-145.5,-43,0,0,-0.0666705 -43184,5414:235:1,-145,-43,0,0,-0.0629807 -43185,5414:134:2,-144.5,-43,0,0,-0.0576437 -43186,5414:134:1,-144,-43,0,0,-0.0551303 -43187,5414:133:2,-143.5,-43,0,0,-0.0565764 -43188,5414:133:1,-143,-43,0,0,-0.0617076 -43189,5414:132:2,-142.5,-43,0,0,-0.0677163 -43190,5414:132:1,-142,-43,0,0,-0.0717359 -43191,5414:131:2,-141.5,-43,0,0,-0.0720763 -43192,5414:131:1,-141,-43,0,0,-0.0691209 -43193,5414:130:2,-140.5,-43,0,0,-0.0656418 -43194,5414:130:1,-140,-43,0,0,-0.0600666 -43195,5413:239:2,-139.5,-43,0,0,-0.0521348 -43196,5413:239:1,-139,-43,0,0,-0.0503263 -43197,5413:238:2,-138.5,-43,0,0,-0.0515323 -43198,5413:238:1,-138,-43,0,0,-0.0554399 -43199,5413:237:2,-137.5,-43,0,0,-0.0626413 -43200,5413:237:1,-137,-43,0,0,-0.0685035 -43201,5413:236:2,-136.5,-43,0,0,-0.0708082 -43202,5413:236:1,-136,-43,0,0,-0.0721446 -43203,5413:235:2,-135.5,-43,0,0,-0.074669 -43204,5413:235:1,-135,-43,0,0,-0.0770303 -43205,5413:134:2,-134.5,-43,0,0,-0.0771036 -43206,5413:134:1,-134,-43,0,0,-0.0759389 -43207,5413:133:2,-133.5,-43,0,0,-0.0744917 -43208,5413:133:1,-133,-43,0,0,-0.0731608 -43209,5413:132:2,-132.5,-43,0,0,-0.0725216 -43210,5413:132:1,-132,-43,0,0,-0.0709085 -43211,5413:131:2,-131.5,-43,0,0,-0.0692681 -43212,5413:131:1,-131,-43,0,0,-0.0658275 -43213,5413:130:2,-130.5,-43,0,0,-0.0634561 -43214,5413:130:1,-130,-43,0,0,-0.0637101 -43215,5412:239:2,-129.5,-43,0,0,-0.0627447 -43216,5412:239:1,-129,-43,0,0,-0.0609741 -43217,5412:238:2,-128.5,-43,0,0,-0.0602778 -43218,5412:238:1,-128,-43,0,0,-0.0581305 -43219,5412:237:2,-127.5,-43,0,0,-0.054251 -43220,5412:237:1,-127,-43,0,0,-0.0542637 -43221,5412:236:2,-126.5,-43,0,0,-0.0548101 -43222,5412:236:1,-126,-43,0,0,-0.055699 -43223,5412:235:2,-125.5,-43,0,0,-0.0570676 -43224,5412:235:1,-125,-43,0,0,-0.0560379 -43225,5412:134:2,-124.5,-43,0,0,-0.0531511 -43226,5412:134:1,-124,-43,0,0,-0.0518207 -43227,5412:133:2,-123.5,-43,0,0,-0.0512104 -43228,5412:133:1,-123,-43,0,0,-0.0507602 -43229,5412:132:2,-122.5,-43,0,0,-0.0501517 -43230,5412:132:1,-122,-43,0,0,-0.0493781 -43231,5412:131:2,-121.5,-43,0,0,-0.048359 -43232,5412:131:1,-121,-43,0,0,-0.047296 -43233,5412:130:2,-120.5,-43,0,0,-0.0469473 -43234,5412:130:1,-120,-43,0,0,-0.0468064 -43235,5411:239:2,-119.5,-43,0,0,-0.0465258 -43236,5411:239:1,-119,-43,0,0,-0.0462042 -43237,5411:238:2,-118.5,-43,0,0,-0.0457683 -43238,5411:238:1,-118,-43,0,0,-0.0448993 -43239,5411:237:2,-117.5,-43,0,0,-0.0438651 -43240,5411:237:1,-117,-43,0,0,-0.0436229 -43241,5411:236:2,-116.5,-43,0,0,-0.0438954 -43242,5411:236:1,-116,-43,0,0,-0.046655 -43243,5411:235:2,-115.5,-43,0,0,-0.0489791 -43244,5411:235:1,-115,-43,0,0,-0.0495272 -43245,5411:134:2,-114.5,-43,0,0,-0.0490589 -43246,5411:134:1,-114,-43,0,0,-0.0476807 -43247,5411:133:2,-113.5,-43,0,0,-0.0455681 -43248,5411:133:1,-113,-43,0,0,-0.0439665 -43249,5411:132:2,-112.5,-43,0,0,-0.0420635 -43250,5411:132:1,-112,-43,0,0,-0.0410404 -43251,5411:131:2,-111.5,-43,0,0,-0.0410592 -43252,5411:131:1,-111,-43,0,0,-0.0412962 -43253,5411:130:2,-110.5,-43,0,0,-0.0410122 -43254,5411:130:1,-110,-43,0,0,-0.040348 -43255,5410:239:2,-109.5,-43,0,0,-0.0397317 -43256,5410:239:1,-109,-43,0,0,-0.0394224 -43257,5410:238:2,-108.5,-43,0,0,-0.0393774 -43258,5410:238:1,-108,-43,0,0,-0.0394498 -43259,5410:237:2,-107.5,-43,0,0,-0.0390263 -43260,5410:237:1,-107,-43,0,0,-0.0381671 -43261,5410:236:2,-106.5,-43,0,0,-0.0382811 -43262,5410:236:1,-106,-43,0,0,-0.0396952 -43263,5410:235:2,-105.5,-43,0,0,-0.039942 -43264,5410:235:1,-105,-43,0,0,-0.0386875 -43265,5410:134:2,-104.5,-43,0,0,-0.0371229 -43266,5410:134:1,-104,-43,0,0,-0.0361663 -43267,5410:133:2,-103.5,-43,0,0,-0.0363988 -43268,5410:133:1,-103,-43,0,0,-0.037362 -43269,5410:132:2,-102.5,-43,0,0,-0.0382198 -43270,5410:132:1,-102,-43,0,0,-0.0384218 -43271,5410:131:2,-101.5,-43,0,0,-0.0376975 -43272,5410:131:1,-101,-43,0,0,-0.0363738 -43273,5410:130:2,-100.5,-43,0,0,-0.0357711 -43274,5410:130:1,-100,-43,0,0,-0.0363988 -43275,5409:239:2,-99.5,-43,0,0,-0.0371143 -43276,5409:239:1,-99,-43,0,0,-0.0374049 -43277,5409:238:2,-98.5,-43,0,0,-0.0373876 -43278,5409:238:1,-98,-43,0,0,-0.0369194 -43279,5409:237:2,-97.5,-43,0,0,-0.0362657 -43280,5409:237:1,-97,-43,0,0,-0.0358611 -43281,5409:236:2,-96.5,-43,0,0,-0.0358283 -43282,5409:236:1,-96,-43,0,0,-0.0361332 -43283,5409:235:2,-95.5,-43,0,0,-0.0364573 -43284,5409:235:1,-95,-43,0,0,-0.0368601 -43285,5409:134:2,-94.5,-43,0,0,-0.0375767 -43286,5409:134:1,-94,-43,0,0,-0.0381321 -43287,5409:133:2,-93.5,-43,0,0,-0.0377234 -43288,5409:133:1,-93,-43,0,0,-0.0366412 -43289,5409:132:2,-92.5,-43,0,0,-0.0355507 -43290,5409:132:1,-92,-43,0,0,-0.0348982 -43291,5409:131:2,-91.5,-43,0,0,-0.034986 -43292,5409:131:1,-91,-43,0,0,-0.0356566 -43293,5409:130:2,-90.5,-43,0,0,-0.0365995 -43294,5409:130:1,-90,-43,0,0,-0.0372337 -43295,5408:239:2,-89.5,-43,0,0,-0.0368434 -43296,5408:239:1,-89,-43,0,0,-0.0361496 -43297,5408:238:2,-88.5,-43,0,0,-0.0357384 -43298,5408:238:1,-88,-43,0,0,-0.0357137 -43299,5408:237:2,-87.5,-43,0,0,-0.0361166 -43300,5408:237:1,-87,-43,0,0,-0.0365492 -43301,5408:236:2,-86.5,-43,0,0,-0.0363073 -43302,5408:236:1,-86,-43,0,0,-0.0358366 -43303,5408:235:2,-85.5,-43,0,0,-0.035624 -43304,5408:235:1,-85,-43,0,0,-0.0356731 -43305,5408:134:2,-84.5,-43,0,0,-0.0358531 -43306,5408:134:1,-84,-43,0,0,-0.0358121 -43307,5408:133:2,-83.5,-43,0,0,-0.0355425 -43308,5408:133:1,-83,-43,0,0,-0.0352349 -43309,5408:132:2,-82.5,-43,0,0,-0.0349221 -43310,5408:132:1,-82,-43,0,0,-0.0348026 -43311,5408:131:2,-81.5,-43,0,0,-0.0348583 -43312,5408:131:1,-81,-43,0,0,-0.0347786 -43313,5408:130:2,-80.5,-43,0,0,-0.0345804 -43314,5408:130:1,-80,-43,0,0,-0.0346913 -43315,5407:239:2,-79.5,-43,0,0,-0.0357384 -43316,5407:239:1,-79,-43,0,0,-0.0366077 -43317,5407:238:2,-78.5,-43,0,0,-0.0370042 -43318,5407:238:1,-78,-43,0,0,-0.0371996 -43319,5407:237:2,-77.5,-43,0,0,-0.0376801 -43320,5407:237:1,-77,-43,0,0,-0.0379402 -43321,5407:236:2,-76.5,-43,0,0,-0.038714 -43322,5407:236:1,-76,-43,0,0,-0.041116 -43323,5407:235:2,-75.5,-43,0,0,-0.0453578 -43324,5407:235:1,-75,-43,0,0,-0.0490929 -43325,5407:134:2,-74.5,-43,0,0,-0.0551818 -43326,5407:134:1,-74,-43,0,0,-0.0585949 -43327,5406:238:2,-68.5,-43,0,0,-0.0623481 -43328,5406:238:1,-68,-43,0,0,-0.0470778 -43329,5406:237:2,-67.5,-43,0,0,-0.0421994 -43330,5406:237:1,-67,-43,0,0,-0.0386252 -43331,5406:236:2,-66.5,-43,0,0,-0.0366581 -43332,5406:236:1,-66,-43,0,0,-0.035894 -43333,5406:235:2,-65.5,-43,0,0,-0.0358777 -43334,5406:235:1,-65,-43,0,0,-0.0352834 -43335,5406:134:2,-64.5,-43,0,0,-0.0344699 -43336,5406:134:1,-64,-43,0,0,-0.033561 -43337,5406:133:2,-63.5,-43,0,0,-0.0338457 -43338,5406:133:1,-63,-43,0,0,-0.0343993 -43339,5406:132:2,-62.5,-43,0,0,-0.0346437 -43340,5406:132:1,-62,-43,0,0,-0.034636 -43341,5406:131:2,-61.5,-43,0,0,-0.0352916 -43342,5406:131:1,-61,-43,0,0,-0.0360092 -43343,5406:130:2,-60.5,-43,0,0,-0.0371655 -43344,5406:130:1,-60,-43,0,0,-0.0386341 -43345,5405:239:2,-59.5,-43,0,0,-0.04045 -43346,5405:239:1,-59,-43,0,0,-0.039504 -43347,5405:238:2,-58.5,-43,0,0,-0.0377408 -43348,5405:238:1,-58,-43,0,0,-0.0368519 -43349,5405:237:2,-57.5,-43,0,0,-0.0359434 -43350,5405:237:1,-57,-43,0,0,-0.0341252 -43351,5405:236:2,-56.5,-43,0,0,-0.0320929 -43352,5405:236:1,-56,-43,0,0,-0.030817 -43353,5405:235:2,-55.5,-43,0,0,-0.0293255 -43354,5405:235:1,-55,-43,0,0,-0.027468 -43355,5405:134:2,-54.5,-43,0,0,-0.0266998 -43356,5405:134:1,-54,-43,0,0,-0.0267544 -43357,5405:133:2,-53.5,-43,0,0,-0.0268091 -43358,5405:133:1,-53,-43,0,0,-0.0262672 -43359,5405:132:2,-52.5,-43,0,0,-0.0253951 -43360,5405:132:1,-52,-43,0,0,-0.0248601 -43361,5405:131:2,-51.5,-43,0,0,-0.024675 -43362,5405:131:1,-51,-43,0,0,-0.0244692 -43363,5405:130:2,-50.5,-43,0,0,-0.0240574 -43364,5405:130:1,-50,-43,0,0,-0.0234875 -43365,5404:239:2,-49.5,-43,0,0,-0.0229469 -43366,5404:239:1,-49,-43,0,0,-0.0217312 -43367,5404:238:2,-48.5,-43,0,0,-0.0198164 -43368,5404:238:1,-48,-43,0,0,-0.0184844 -43369,5404:237:2,-47.5,-43,0,0,-0.0179476 -43370,5404:237:1,-47,-43,0,0,-0.0183147 -43371,5404:236:2,-46.5,-43,0,0,-0.0180529 -43372,5404:236:1,-46,-43,0,0,-0.0176157 -43373,5404:235:2,-45.5,-43,0,0,-0.0172358 -43374,5404:235:1,-45,-43,0,0,-0.0171469 -43375,5404:134:2,-44.5,-43,0,0,-0.01712 -43376,5404:134:1,-44,-43,0,0,-0.0168945 -43377,5404:133:2,-43.5,-43,0,0,-0.0164859 -43378,5404:133:1,-43,-43,0,0,-0.0159721 -43379,5404:132:2,-42.5,-43,0,0,-0.0155967 -43380,5404:132:1,-42,-43,0,0,-0.0153536 -43381,5404:131:2,-41.5,-43,0,0,-0.0161452 -43382,5404:131:1,-41,-43,0,0,-0.0174856 -43383,5404:130:2,-40.5,-43,0,0,-0.0175723 -43384,5404:130:1,-40,-43,0,0,-0.0171162 -43385,5403:239:2,-39.5,-43,0,0,-0.0167321 -43386,5403:239:1,-39,-43,0,0,-0.0162872 -43387,5403:238:2,-38.5,-43,0,0,-0.0153364 -43388,5403:238:1,-38,-43,0,0,-0.0138307 -43389,5403:237:2,-37.5,-43,0,0,-0.0132694 -43390,5403:237:1,-37,-43,0,0,-0.0132576 -43391,5403:236:2,-36.5,-43,0,0,-0.0137597 -43392,5403:236:1,-36,-43,0,0,-0.014021 -43393,5403:235:2,-35.5,-43,0,0,-0.0135002 -43394,5403:235:1,-35,-43,0,0,-0.0129293 -43395,5403:134:2,-34.5,-43,0,0,-0.013341 -43396,5403:134:1,-34,-43,0,0,-0.013225 -43397,5403:133:2,-33.5,-43,0,0,-0.0121824 -43398,5403:133:1,-33,-43,0,0,-0.0111654 -43399,5403:132:2,-32.5,-43,0,0,-0.0106872 -43400,5403:132:1,-32,-43,0,0,-0.0123995 -43401,5403:131:2,-31.5,-43,0,0,-0.0139521 -43402,5403:131:1,-31,-43,0,0,-0.0141599 -43403,5403:130:2,-30.5,-43,0,0,-0.0140525 -43404,5403:130:1,-30,-43,0,0,-0.0138493 -43405,5402:239:2,-29.5,-43,0,0,-0.0140242 -43406,5402:239:1,-29,-43,0,0,-0.0150806 -43407,5402:238:2,-28.5,-43,0,0,-0.0171893 -43408,5402:238:1,-28,-43,0,0,-0.0172048 -43409,5402:237:2,-27.5,-43,0,0,-0.0161415 -43410,5402:237:1,-27,-43,0,0,-0.0155164 -43411,5402:236:2,-26.5,-43,0,0,-0.0149493 -43412,5402:236:1,-26,-43,0,0,-0.0143516 -43413,5402:235:2,-25.5,-43,0,0,-0.0142045 -43414,5402:235:1,-25,-43,0,0,-0.0151111 -43415,5402:134:2,-24.5,-43,0,0,-0.0157762 -43416,5402:134:1,-24,-43,0,0,-0.0154123 -43417,5402:133:2,-23.5,-43,0,0,-0.016062 -43418,5402:133:1,-23,-43,0,0,-0.0165415 -43419,5402:132:2,-22.5,-43,0,0,-0.0164415 -43420,5402:132:1,-22,-43,0,0,-0.0152815 -43421,5402:131:2,-21.5,-43,0,0,-0.0140871 -43422,5402:131:1,-21,-43,0,0,-0.014249 -43423,5402:130:2,-20.5,-43,0,0,-0.0153021 -43424,5402:130:1,-20,-43,0,0,-0.0154469 -43425,5401:239:2,-19.5,-43,0,0,-0.015145 -43426,5401:239:1,-19,-43,0,0,-0.0144226 -43427,5401:238:2,-18.5,-43,0,0,-0.0145199 -43428,5401:238:1,-18,-43,0,0,-0.0163385 -43429,5401:237:2,-17.5,-43,0,0,-0.0169401 -43430,5401:237:1,-17,-43,0,0,-0.0158614 -43431,5401:236:2,-16.5,-43,0,0,-0.0150367 -43432,5401:236:1,-16,-43,0,0,-0.015762 -43433,5401:235:2,-15.5,-43,0,0,-0.0160404 -43434,5401:235:1,-15,-43,0,0,-0.0155199 -43435,5401:134:2,-14.5,-43,0,0,-0.0147561 -43436,5401:134:1,-14,-43,0,0,-0.0142714 -43437,5401:133:2,-13.5,-43,0,0,-0.0143034 -43438,5401:133:1,-13,-43,0,0,-0.0149292 -43439,5401:132:2,-12.5,-43,0,0,-0.015237 -43440,5401:132:1,-12,-43,0,0,-0.0158045 -43441,5401:131:2,-11.5,-43,0,0,-0.0158721 -43442,5401:131:1,-11,-43,0,0,-0.0151178 -43443,5401:130:2,-10.5,-43,0,0,-0.0135608 -43444,5401:130:1,-10,-43,0,0,-0.0129409 -43445,5400:239:2,-9.5,-43,0,0,-0.012754 -43446,5400:239:1,-9,-43,0,0,-0.0124245 -43447,5400:238:2,-8.5,-43,0,0,-0.0120793 -43448,5400:238:1,-8,-43,0,0,-0.0120928 -43449,5400:237:2,-7.5,-43,0,0,-0.0121145 -43450,5400:237:1,-7,-43,0,0,-0.0120416 -43451,5400:236:2,-6.5,-43,0,0,-0.0117464 -43452,5400:236:1,-6,-43,0,0,-0.0111405 -43453,5400:235:2,-5.5,-43,0,0,-0.0102708 -43454,5400:235:1,-5,-43,0,0,-0.00940854 -43455,5400:134:2,-4.5,-43,0,0,-0.00944215 -43456,5400:134:1,-4,-43,0,0,-0.00955022 -43457,5400:133:2,-3.5,-43,0,0,-0.00960146 -43458,5400:133:1,-3,-43,0,0,-0.00966165 -43459,5400:132:2,-2.5,-43,0,0,-0.00955022 -43460,5400:132:1,-2,-43,0,0,-0.00913156 -43461,5400:131:2,-1.5,-43,0,0,-0.0087568 -43462,5400:131:1,-1,-43,0,0,-0.00855617 -43463,5400:130:2,-0.5,-43,0,0,-0.00847268 -43464,3400:130:2,0,-43,0,0,-0.00851056 -43465,3400:130:2,0.5,-43,0,0,-0.00853142 -43466,3400:131:1,1,-43,0,0,-0.00850865 -43467,3400:131:2,1.5,-43,0,0,-0.0084614 -43468,3400:132:1,2,-43,0,0,-0.00836018 -43469,3400:132:2,2.5,-43,0,0,-0.00806746 -43470,3400:133:1,3,-43,0,0,-0.0080066 -43471,3400:133:2,3.5,-43,0,0,-0.00856572 -43472,3400:134:1,4,-43,0,0,-0.00889052 -43473,3400:134:2,4.5,-43,0,0,-0.00980932 -43474,3400:235:1,5,-43,0,0,-0.00996592 -43475,3400:235:2,5.5,-43,0,0,-0.00952257 -43476,3400:236:1,6,-43,0,0,-0.00910513 -43477,3400:236:2,6.5,-43,0,0,-0.00860589 -43478,3400:237:1,7,-43,0,0,-0.0081651 -43479,3400:237:2,7.5,-43,0,0,-0.00844444 -43480,3400:238:1,8,-43,0,0,-0.00870816 -43481,3400:238:2,8.5,-43,0,0,-0.00823635 -43482,3400:239:1,9,-43,0,0,-0.00791969 -43483,3400:239:2,9.5,-43,0,0,-0.00823999 -43484,3401:130:1,10,-43,0,0,-0.00930006 -43485,3401:130:2,10.5,-43,0,0,-0.010545 -43486,3401:131:1,11,-43,0,0,-0.0106752 -43487,3401:131:2,11.5,-43,0,0,-0.0095929 -43488,3401:132:1,12,-43,0,0,-0.00851815 -43489,3401:132:2,12.5,-43,0,0,-0.00783899 -43490,3401:133:1,13,-43,0,0,-0.00758323 -43491,3401:133:2,13.5,-43,0,0,-0.00757813 -43492,3401:134:1,14,-43,0,0,-0.00781984 -43493,3401:134:2,14.5,-43,0,0,-0.00813967 -43494,3401:235:1,15,-43,0,0,-0.00850674 -43495,3401:235:2,15.5,-43,0,0,-0.00880769 -43496,3401:236:1,16,-43,0,0,-0.00908687 -43497,3401:236:2,16.5,-43,0,0,-0.00929177 -43498,3401:237:1,17,-43,0,0,-0.00921953 -43499,3401:237:2,17.5,-43,0,0,-0.00904044 -43500,3401:238:1,18,-43,0,0,-0.00888061 -43501,3401:238:2,18.5,-43,0,0,-0.00878024 -43502,3401:239:1,19,-43,0,0,-0.0088846 -43503,3401:239:2,19.5,-43,0,0,-0.0090082 -43504,3402:130:1,20,-43,0,0,-0.00891238 -43505,3402:130:2,20.5,-43,0,0,-0.00867523 -43506,3402:131:1,21,-43,0,0,-0.00842941 -43507,3402:131:2,21.5,-43,0,0,-0.00809266 -43508,3402:132:1,22,-43,0,0,-0.00780763 -43509,3402:132:2,22.5,-43,0,0,-0.00776087 -43510,3402:133:1,23,-43,0,0,-0.00777813 -43511,3402:133:2,23.5,-43,0,0,-0.00796568 -43512,3402:134:1,24,-43,0,0,-0.00805672 -43513,3402:134:2,24.5,-43,0,0,-0.00802087 -43514,3402:235:1,25,-43,0,0,-0.00803342 -43515,3402:235:2,25.5,-43,0,0,-0.00831376 -43516,3402:236:1,26,-43,0,0,-0.00892227 -43517,3402:236:2,26.5,-43,0,0,-0.00985538 -43518,3402:237:1,27,-43,0,0,-0.00988179 -43519,3402:237:2,27.5,-43,0,0,-0.00967672 -43520,3402:238:1,28,-43,0,0,-0.00903638 -43521,3402:238:2,28.5,-43,0,0,-0.00919904 -43522,3402:239:1,29,-43,0,0,-0.0100463 -43523,3402:239:2,29.5,-43,0,0,-0.0102364 -43524,3403:130:1,30,-43,0,0,-0.0109187 -43525,3403:130:2,30.5,-43,0,0,-0.0127769 -43526,3403:131:1,31,-43,0,0,-0.0137197 -43527,3403:131:2,31.5,-43,0,0,-0.0114945 -43528,3403:132:1,32,-43,0,0,-0.00994375 -43529,3403:132:2,32.5,-43,0,0,-0.00991272 -43530,3403:133:1,33,-43,0,0,-0.0100083 -43531,3403:133:2,33.5,-43,0,0,-0.0104722 -43532,3403:134:1,34,-43,0,0,-0.0103606 -43533,3403:134:2,34.5,-43,0,0,-0.0104046 -43534,3403:235:1,35,-43,0,0,-0.0106633 -43535,3403:235:2,35.5,-43,0,0,-0.0118386 -43536,3403:236:1,36,-43,0,0,-0.011749 -43537,3403:236:2,36.5,-43,0,0,-0.0115356 -43538,3403:237:1,37,-43,0,0,-0.0121961 -43539,3403:237:2,37.5,-43,0,0,-0.0123884 -43540,3403:238:1,38,-43,0,0,-0.0124134 -43541,3403:238:2,38.5,-43,0,0,-0.0123386 -43542,3403:239:1,39,-43,0,0,-0.0114893 -43543,3403:239:2,39.5,-43,0,0,-0.0110859 -43544,3404:130:1,40,-43,0,0,-0.011133 -43545,3404:130:2,40.5,-43,0,0,-0.0112832 -43546,3404:131:1,41,-43,0,0,-0.0112909 -43547,3404:131:2,41.5,-43,0,0,-0.0110636 -43548,3404:132:1,42,-43,0,0,-0.0108458 -43549,3404:132:2,42.5,-43,0,0,-0.0109309 -43550,3404:133:1,43,-43,0,0,-0.0111429 -43551,3404:133:2,43.5,-43,0,0,-0.0111529 -43552,3404:134:1,44,-43,0,0,-0.0110167 -43553,3404:134:2,44.5,-43,0,0,-0.0108773 -43554,3404:235:1,45,-43,0,0,-0.0110611 -43555,3404:235:2,45.5,-43,0,0,-0.0114586 -43556,3404:236:1,46,-43,0,0,-0.011929 -43557,3404:236:2,46.5,-43,0,0,-0.0122261 -43558,3404:237:1,47,-43,0,0,-0.0121199 -43559,3404:237:2,47.5,-43,0,0,-0.011897 -43560,3404:238:1,48,-43,0,0,-0.011844 -43561,3404:238:2,48.5,-43,0,0,-0.0123084 -43562,3404:239:1,49,-43,0,0,-0.0128716 -43563,3404:239:2,49.5,-43,0,0,-0.0131335 -43564,3405:130:1,50,-43,0,0,-0.0132754 -43565,3405:130:2,50.5,-43,0,0,-0.0132042 -43566,3405:131:1,51,-43,0,0,-0.0128342 -43567,3405:131:2,51.5,-43,0,0,-0.0121388 -43568,3405:132:1,52,-43,0,0,-0.0116836 -43569,3405:132:2,52.5,-43,0,0,-0.0121878 -43570,3405:133:1,53,-43,0,0,-0.0130456 -43571,3405:133:2,53.5,-43,0,0,-0.0132397 -43572,3405:134:1,54,-43,0,0,-0.0127028 -43573,3405:134:2,54.5,-43,0,0,-0.0120739 -43574,3405:235:1,55,-43,0,0,-0.0122151 -43575,3405:235:2,55.5,-43,0,0,-0.0124051 -43576,3405:236:1,56,-43,0,0,-0.0124329 -43577,3405:236:2,56.5,-43,0,0,-0.0125727 -43578,3405:237:1,57,-43,0,0,-0.0126489 -43579,3405:237:2,57.5,-43,0,0,-0.0123166 -43580,3405:238:1,58,-43,0,0,-0.0117202 -43581,3405:238:2,58.5,-43,0,0,-0.0116809 -43582,3405:239:1,59,-43,0,0,-0.0119638 -43583,3405:239:2,59.5,-43,0,0,-0.0125166 -43584,3406:130:1,60,-43,0,0,-0.0131718 -43585,3406:130:2,60.5,-43,0,0,-0.0135214 -43586,3406:131:1,61,-43,0,0,-0.0135456 -43587,3406:131:2,61.5,-43,0,0,-0.013341 -43588,3406:132:1,62,-43,0,0,-0.0129352 -43589,3406:132:2,62.5,-43,0,0,-0.0124162 -43590,3406:133:1,63,-43,0,0,-0.012336 -43591,3406:133:2,63.5,-43,0,0,-0.012754 -43592,3406:134:1,64,-43,0,0,-0.0130865 -43593,3406:134:2,64.5,-43,0,0,-0.0130194 -43594,3406:235:1,65,-43,0,0,-0.0127512 -43595,3406:235:2,65.5,-43,0,0,-0.0126263 -43596,3406:236:1,66,-43,0,0,-0.0127798 -43597,3406:236:2,66.5,-43,0,0,-0.0130573 -43598,3406:237:1,67,-43,0,0,-0.0132546 -43599,3406:237:2,67.5,-43,0,0,-0.013323 -43600,3406:238:1,68,-43,0,0,-0.0133469 -43601,3406:238:2,68.5,-43,0,0,-0.0134068 -43602,3406:239:1,69,-43,0,0,-0.0134459 -43603,3406:239:2,69.5,-43,0,0,-0.0130661 -43604,3407:130:1,70,-43,0,0,-0.0120201 -43605,3407:130:2,70.5,-43,0,0,-0.0113034 -43606,3407:131:1,71,-43,0,0,-0.0110094 -43607,3407:131:2,71.5,-43,0,0,-0.0110094 -43608,3407:132:1,72,-43,0,0,-0.0111156 -43609,3407:132:2,72.5,-43,0,0,-0.011233 -43610,3407:133:2,73.5,-43,0,0,-0.0112757 -43611,3407:134:1,74,-43,0,0,-0.0113693 -43612,3407:134:2,74.5,-43,0,0,-0.0113136 -43613,3407:235:1,75,-43,0,0,-0.0112204 -43614,3407:235:2,75.5,-43,0,0,-0.0111156 -43615,3407:236:1,76,-43,0,0,-0.0111032 -43616,3407:236:2,76.5,-43,0,0,-0.0111679 -43617,3407:237:1,77,-43,0,0,-0.0107686 -43618,3407:237:2,77.5,-43,0,0,-0.0105238 -43619,3407:238:1,78,-43,0,0,-0.0103444 -43620,3407:238:2,78.5,-43,0,0,-0.00977871 -43621,3407:239:1,79,-43,0,0,-0.00882731 -43622,3407:239:2,79.5,-43,0,0,-0.00854286 -43623,3408:130:1,80,-43,0,0,-0.00921746 -43624,3408:130:2,80.5,-43,0,0,-0.00952678 -43625,3408:131:1,81,-43,0,0,-0.00927105 -43626,3408:131:2,81.5,-43,0,0,-0.00986417 -43627,3408:132:1,82,-43,0,0,-0.0101161 -43628,3408:132:2,82.5,-43,0,0,-0.00994592 -43629,3408:133:1,83,-43,0,0,-0.0111305 -43630,3408:133:2,83.5,-43,0,0,-0.015179 -43631,3408:134:1,84,-43,0,0,-0.0176594 -43632,3408:134:2,84.5,-43,0,0,-0.0176356 -43633,3408:235:1,85,-43,0,0,-0.0166721 -43634,3408:235:2,85.5,-43,0,0,-0.0145753 -43635,3408:236:1,86,-43,0,0,-0.0143388 -43636,3408:236:2,86.5,-43,0,0,-0.0146342 -43637,3408:237:1,87,-43,0,0,-0.0147263 -43638,3408:237:2,87.5,-43,0,0,-0.0148424 -43639,3408:238:1,88,-43,0,0,-0.0158259 -43640,3408:238:2,88.5,-43,0,0,-0.0165936 -43641,3408:239:1,89,-43,0,0,-0.0170393 -43642,3408:239:2,89.5,-43,0,0,-0.0179436 -43643,3409:130:1,90,-43,0,0,-0.0196739 -43644,3409:130:2,90.5,-43,0,0,-0.0212894 -43645,3409:131:1,91,-43,0,0,-0.0207395 -43646,3409:131:2,91.5,-43,0,0,-0.0205486 -43647,3409:132:1,92,-43,0,0,-0.0203366 -43648,3409:132:2,92.5,-43,0,0,-0.0194756 -43649,3409:133:1,93,-43,0,0,-0.0179476 -43650,3409:133:2,93.5,-43,0,0,-0.0180895 -43651,3409:134:1,94,-43,0,0,-0.0170816 -43652,3409:134:2,94.5,-43,0,0,-0.0156703 -43653,3409:235:1,95,-43,0,0,-0.0157691 -43654,3409:235:2,95.5,-43,0,0,-0.0169973 -43655,3409:236:1,96,-43,0,0,-0.0172204 -43656,3409:236:2,96.5,-43,0,0,-0.0171585 -43657,3409:237:1,97,-43,0,0,-0.0180651 -43658,3409:237:2,97.5,-43,0,0,-0.0194492 -43659,3409:238:1,98,-43,0,0,-0.0201496 -43660,3409:238:2,98.5,-43,0,0,-0.0199687 -43661,3409:239:1,99,-43,0,0,-0.0194142 -43662,3409:239:2,99.5,-43,0,0,-0.018935 -43663,3410:130:1,100,-43,0,0,-0.0187188 -43664,3410:130:2,100.5,-43,0,0,-0.0182201 -43665,3410:131:1,101,-43,0,0,-0.0173954 -43666,3410:131:2,101.5,-43,0,0,-0.0167923 -43667,3410:132:1,102,-43,0,0,-0.0160693 -43668,3410:132:2,102.5,-43,0,0,-0.0151111 -43669,3410:133:1,103,-43,0,0,-0.0144873 -43670,3410:133:2,103.5,-43,0,0,-0.0143131 -43671,3410:134:1,104,-43,0,0,-0.014484 -43672,3410:134:2,104.5,-43,0,0,-0.0149828 -43673,3410:235:1,105,-43,0,0,-0.015196 -43674,3410:235:2,105.5,-43,0,0,-0.0149191 -43675,3410:236:1,106,-43,0,0,-0.0146605 -43676,3410:236:2,106.5,-43,0,0,-0.0154608 -43677,3410:237:1,107,-43,0,0,-0.0170471 -43678,3410:237:2,107.5,-43,0,0,-0.0171277 -43679,3410:238:1,108,-43,0,0,-0.0170969 -43680,3410:238:2,108.5,-43,0,0,-0.016575 -43681,3410:239:1,109,-43,0,0,-0.0154608 -43682,3410:239:2,109.5,-43,0,0,-0.0147528 -43683,3411:130:1,110,-43,0,0,-0.0145199 -43684,3411:130:2,110.5,-43,0,0,-0.014776 -43685,3411:131:1,111,-43,0,0,-0.0154886 -43686,3411:131:2,111.5,-43,0,0,-0.0162288 -43687,3411:132:1,112,-43,0,0,-0.0169516 -43688,3411:132:2,112.5,-43,0,0,-0.0170088 -43689,3411:133:1,113,-43,0,0,-0.0170012 -43690,3411:133:2,113.5,-43,0,0,-0.0174699 -43691,3411:134:1,114,-43,0,0,-0.0182037 -43692,3411:134:2,114.5,-43,0,0,-0.0215552 -43693,3411:235:1,115,-43,0,0,-0.0250635 -43694,3411:235:2,115.5,-43,0,0,-0.027889 -43695,3411:236:1,116,-43,0,0,-0.030316 -43696,3411:236:2,116.5,-43,0,0,-0.0303299 -43697,3411:237:1,117,-43,0,0,-0.0285039 -43698,3411:237:2,117.5,-43,0,0,-0.0250069 -43699,3411:238:1,118,-43,0,0,-0.0222776 -43700,3411:238:2,118.5,-43,0,0,-0.0215164 -43701,3411:239:1,119,-43,0,0,-0.02361 -43702,3411:239:2,119.5,-43,0,0,-0.0240683 -43703,3412:130:1,120,-43,0,0,-0.0232392 -43704,3412:130:2,120.5,-43,0,0,-0.0228435 -43705,3412:131:1,121,-43,0,0,-0.0254989 -43706,3412:131:2,121.5,-43,0,0,-0.0280541 -43707,3412:132:1,122,-43,0,0,-0.0294458 -43708,3412:132:2,122.5,-43,0,0,-0.0299662 -43709,3412:133:1,123,-43,0,0,-0.0301576 -43710,3412:133:2,123.5,-43,0,0,-0.0302264 -43711,3412:134:1,124,-43,0,0,-0.0285752 -43712,3412:134:2,124.5,-43,0,0,-0.0257835 -43713,3412:235:1,125,-43,0,0,-0.0232602 -43714,3412:235:2,125.5,-43,0,0,-0.023192 -43715,3412:236:1,126,-43,0,0,-0.0247422 -43716,3412:236:2,126.5,-43,0,0,-0.0267422 -43717,3412:237:1,127,-43,0,0,-0.0274182 -43718,3412:237:2,127.5,-43,0,0,-0.0266029 -43719,3412:238:1,128,-43,0,0,-0.0252974 -43720,3412:238:2,128.5,-43,0,0,-0.0252116 -43721,3412:239:1,129,-43,0,0,-0.0265187 -43722,3412:239:2,129.5,-43,0,0,-0.0269065 -43723,3413:130:1,130,-43,0,0,-0.0251489 -43724,3413:130:2,130.5,-43,0,0,-0.0239597 -43725,3413:131:1,131,-43,0,0,-0.0242323 -43726,3413:131:2,131.5,-43,0,0,-0.0238678 -43727,3413:132:1,132,-43,0,0,-0.0235726 -43728,3413:132:2,132.5,-43,0,0,-0.0242159 -43729,3413:133:1,133,-43,0,0,-0.025075 -43730,3413:133:2,133.5,-43,0,0,-0.0255799 -43731,3413:134:1,134,-43,0,0,-0.0270167 -43732,3413:134:2,134.5,-43,0,0,-0.0296205 -43733,3413:235:1,135,-43,0,0,-0.0327959 -43734,3413:235:2,135.5,-43,0,0,-0.0352108 -43735,3413:236:1,136,-43,0,0,-0.0361002 -43736,3413:236:2,136.5,-43,0,0,-0.0358201 -43737,3413:237:1,137,-43,0,0,-0.035437 -43738,3413:237:2,137.5,-43,0,0,-0.0355182 -43739,3413:238:1,138,-43,0,0,-0.0358449 -43740,3413:238:2,138.5,-43,0,0,-0.0360258 -43741,3413:239:1,139,-43,0,0,-0.0356892 -43742,3413:239:2,139.5,-43,0,0,-0.0351384 -43743,3414:130:1,140,-43,0,0,-0.03462 -43744,3414:130:2,140.5,-43,0,0,-0.032602 -43745,3414:131:1,141,-43,0,0,-0.0270412 -43746,3414:131:2,141.5,-43,0,0,-0.021963 -43747,3414:132:1,142,-43,0,0,-0.0232866 -43748,3414:132:2,142.5,-43,0,0,-0.0262912 -43749,3414:133:1,143,-43,0,0,-0.0270903 -43750,3414:133:2,143.5,-43,0,0,-0.0266029 -43751,3414:134:1,144,-43,0,0,-0.023392 -43752,3414:134:2,144.5,-43,0,0,-0.01987 -43753,3414:235:1,145,-43,0,0,-0.0197272 -43754,3414:235:2,145.5,-43,0,0,-0.0220374 -43755,3414:236:1,146,-43,0,0,-0.0222174 -43756,3414:236:2,146.5,-43,0,0,-0.021968 -43757,3414:237:1,147,-43,0,0,-0.0233023 -43758,3414:237:2,147.5,-43,0,0,-0.0253319 -43759,3414:238:1,148,-43,0,0,-0.0301784 -43760,3414:238:2,148.5,-43,0,0,-0.0373876 -43761,3414:239:1,149,-43,0,0,-0.0432324 -43762,3414:239:2,149.5,-43,0,0,-0.041477 -43763,3415:130:1,150,-43,0,0,-0.0380447 -43764,3415:130:2,150.5,-43,0,0,-0.0389635 -43765,3415:131:1,151,-43,0,0,-0.0422673 -43766,3415:131:2,151.5,-43,0,0,-0.0444458 -43767,3415:132:1,152,-43,0,0,-0.0453895 -43768,3415:132:2,152.5,-43,0,0,-0.0453895 -43769,3415:133:1,153,-43,0,0,-0.0442307 -43770,3415:133:2,153.5,-43,0,0,-0.0427177 -43771,3415:134:1,154,-43,0,0,-0.0465363 -43772,3415:134:2,154.5,-43,0,0,-0.0437843 -43773,3415:235:1,155,-43,0,0,-0.0443945 -43774,3415:235:2,155.5,-43,0,0,-0.0427078 -43775,3415:236:1,156,-43,0,0,-0.0380535 -43776,3415:236:2,156.5,-43,0,0,-0.0372081 -43777,3415:237:1,157,-43,0,0,-0.0380186 -43778,3415:237:2,157.5,-43,0,0,-0.0387672 -43779,3415:238:1,158,-43,0,0,-0.0391789 -43780,3415:238:2,158.5,-43,0,0,-0.039686 -43781,3415:239:1,159,-43,0,0,-0.040646 -43782,3415:239:2,159.5,-43,0,0,-0.0420345 -43783,3416:130:1,160,-43,0,0,-0.0444969 -43784,3416:130:2,160.5,-43,0,0,-0.047318 -43785,3416:131:1,161,-43,0,0,-0.0490589 -43786,3416:131:2,161.5,-43,0,0,-0.0505489 -43787,3416:132:1,162,-43,0,0,-0.0514487 -43788,3416:132:2,162.5,-43,0,0,-0.0509613 -43789,3416:133:1,163,-43,0,0,-0.0484151 -43790,3416:133:2,163.5,-43,0,0,-0.046172 -43791,3416:134:1,164,-43,0,0,-0.0454314 -43792,3416:134:2,164.5,-43,0,0,-0.0445894 -43793,3416:235:1,165,-43,0,0,-0.0461616 -43794,3416:235:2,165.5,-43,0,0,-0.0537731 -43795,3416:236:1,166,-43,0,0,-0.0563789 -43796,3416:236:2,166.5,-43,0,0,-0.0549252 -43797,3416:237:1,167,-43,0,0,-0.0520015 -43798,3416:237:2,167.5,-43,0,0,-0.0506428 -43799,3416:238:1,168,-43,0,0,-0.0498846 -43800,3416:238:2,168.5,-43,0,0,-0.0492069 -43801,3416:239:1,169,-43,0,0,-0.048359 -43802,3416:239:2,169.5,-43,0,0,-0.0476696 -43803,3417:130:1,170,-43,0,0,-0.0471976 -43804,3417:130:2,170.5,-43,0,0,-0.046558 -43805,3417:131:1,171,-43,0,0,-0.0460124 -43806,3417:131:2,171.5,-43,0,0,-0.045853 -43807,3417:132:1,172,-43,0,0,-0.0461508 -43808,3417:132:2,172.5,-43,0,0,-0.0470014 -43809,3417:133:1,173,-43,0,0,-0.0479465 -43810,3417:133:2,173.5,-43,0,0,-0.0485948 -43811,3417:134:1,174,-43,0,0,-0.0497 -43812,3417:134:2,174.5,-43,0,0,-0.046893 -43813,3417:235:1,175,-43,0,0,-0.0424039 -43814,3417:235:2,175.5,-43,0,0,-0.0374133 -43815,3417:236:1,176,-43,0,0,-0.034954 -43816,3417:236:2,176.5,-43,0,0,-0.0363822 -43817,3417:237:1,177,-43,0,0,-0.0382811 -43818,3417:237:2,177.5,-43,0,0,-0.0387051 -43819,3417:238:1,178,-43,0,0,-0.0382549 -43820,3417:238:2,178.5,-43,0,0,-0.0384132 -43821,3417:239:1,179,-43,0,0,-0.0396313 -43822,3417:239:2,179.5,-43,0,0,-0.042688 -43823,3418:130:1,180,-43,0,0,-0.0461827 -43824,5418:120:3,-180,-42.5,0,0,-0.046429 -43825,5417:229:4,-179.5,-42.5,0,0,-0.0470558 -43826,5417:229:3,-179,-42.5,0,0,-0.0476807 -43827,5417:228:4,-178.5,-42.5,0,0,-0.0481802 -43828,5417:228:3,-178,-42.5,0,0,-0.0486398 -43829,5417:227:4,-177.5,-42.5,0,0,-0.0491269 -43830,5417:227:3,-177,-42.5,0,0,-0.049161 -43831,5417:226:4,-176.5,-42.5,0,0,-0.04846 -43832,5417:226:3,-176,-42.5,0,0,-0.0486735 -43833,5417:225:4,-175.5,-42.5,0,0,-0.0509256 -43834,5417:225:3,-175,-42.5,0,0,-0.0524875 -43835,5417:124:4,-174.5,-42.5,0,0,-0.0548741 -43836,5417:124:3,-174,-42.5,0,0,-0.0579409 -43837,5417:123:4,-173.5,-42.5,0,0,-0.0546315 -43838,5417:123:3,-173,-42.5,0,0,-0.0533118 -43839,5417:122:4,-172.5,-42.5,0,0,-0.0528426 -43840,5417:122:3,-172,-42.5,0,0,-0.0524875 -43841,5417:121:4,-171.5,-42.5,0,0,-0.050843 -43842,5417:121:3,-171,-42.5,0,0,-0.0468064 -43843,5417:120:4,-170.5,-42.5,0,0,-0.0436229 -43844,5417:120:3,-170,-42.5,0,0,-0.046558 -43845,5416:229:4,-169.5,-42.5,0,0,-0.0451801 -43846,5416:229:3,-169,-42.5,0,0,-0.0466873 -43847,5416:228:4,-168.5,-42.5,0,0,-0.0541374 -43848,5416:228:3,-168,-42.5,0,0,-0.055803 -43849,5416:227:4,-167.5,-42.5,0,0,-0.0535855 -43850,5416:227:3,-167,-42.5,0,0,-0.0532997 -43851,5416:226:4,-166.5,-42.5,0,0,-0.0533368 -43852,5416:226:3,-166,-42.5,0,0,-0.0531013 -43853,5416:225:4,-165.5,-42.5,0,0,-0.0525609 -43854,5416:225:3,-165,-42.5,0,0,-0.0514247 -43855,5416:124:4,-164.5,-42.5,0,0,-0.0496191 -43856,5416:124:3,-164,-42.5,0,0,-0.0480018 -43857,5416:123:4,-163.5,-42.5,0,0,-0.0459274 -43858,5416:123:3,-163,-42.5,0,0,-0.0438651 -43859,5416:122:4,-162.5,-42.5,0,0,-0.0439158 -43860,5416:122:3,-162,-42.5,0,0,-0.0459909 -43861,5416:121:4,-161.5,-42.5,0,0,-0.0492525 -43862,5416:121:3,-161,-42.5,0,0,-0.0514247 -43863,5416:120:4,-160.5,-42.5,0,0,-0.052062 -43864,5416:120:3,-160,-42.5,0,0,-0.0527567 -43865,5415:229:4,-159.5,-42.5,0,0,-0.0541247 -43866,5415:229:3,-159,-42.5,0,0,-0.0554916 -43867,5415:228:4,-158.5,-42.5,0,0,-0.0582942 -43868,5415:228:3,-158,-42.5,0,0,-0.0600524 -43869,5415:227:4,-157.5,-42.5,0,0,-0.0596738 -43870,5415:227:3,-157,-42.5,0,0,-0.0576573 -43871,5415:226:4,-156.5,-42.5,0,0,-0.0566559 -43872,5415:226:3,-156,-42.5,0,0,-0.0585949 -43873,5415:225:4,-155.5,-42.5,0,0,-0.0630842 -43874,5415:225:3,-155,-42.5,0,0,-0.0677802 -43875,5415:124:4,-154.5,-42.5,0,0,-0.0766103 -43876,5415:124:3,-154,-42.5,0,0,-0.0813343 -43877,5415:123:4,-153.5,-42.5,0,0,-0.082984 -43878,5415:123:3,-153,-42.5,0,0,-0.0843663 -43879,5415:122:4,-152.5,-42.5,0,0,-0.0849545 -43880,5415:122:3,-152,-42.5,0,0,-0.0841642 -43881,5415:121:4,-151.5,-42.5,0,0,-0.083662 -43882,5415:121:3,-151,-42.5,0,0,-0.0839431 -43883,5415:120:4,-150.5,-42.5,0,0,-0.0837825 -43884,5415:120:3,-150,-42.5,0,0,-0.0836223 -43885,5414:229:4,-149.5,-42.5,0,0,-0.083024 -43886,5414:229:3,-149,-42.5,0,0,-0.0812951 -43887,5414:228:4,-148.5,-42.5,0,0,-0.0778601 -43888,5414:228:3,-148,-42.5,0,0,-0.0732302 -43889,5414:227:4,-147.5,-42.5,0,0,-0.0685035 -43890,5414:227:3,-147,-42.5,0,0,-0.066045 -43891,5414:226:4,-146.5,-42.5,0,0,-0.0672543 -43892,5414:226:3,-146,-42.5,0,0,-0.0701581 -43893,5414:225:4,-145.5,-42.5,0,0,-0.0721446 -43894,5414:225:3,-145,-42.5,0,0,-0.0714813 -43895,5414:124:4,-144.5,-42.5,0,0,-0.0679399 -43896,5414:124:3,-144,-42.5,0,0,-0.0658275 -43897,5414:123:4,-143.5,-42.5,0,0,-0.0680687 -43898,5414:123:3,-143,-42.5,0,0,-0.07297 -43899,5414:122:4,-142.5,-42.5,0,0,-0.077306 -43900,5414:122:3,-142,-42.5,0,0,-0.0778601 -43901,5414:121:4,-141.5,-42.5,0,0,-0.0749351 -43902,5414:121:3,-141,-42.5,0,0,-0.0699922 -43903,5414:120:4,-140.5,-42.5,0,0,-0.0658587 -43904,5414:120:3,-140,-42.5,0,0,-0.063114 -43905,5413:229:4,-139.5,-42.5,0,0,-0.0608173 -43906,5413:229:3,-139,-42.5,0,0,-0.0615197 -43907,5413:228:4,-138.5,-42.5,0,0,-0.0659672 -43908,5413:228:3,-138,-42.5,0,0,-0.0715154 -43909,5413:227:4,-137.5,-42.5,0,0,-0.0739108 -43910,5413:227:3,-137,-42.5,0,0,-0.0738231 -43911,5413:226:4,-136.5,-42.5,0,0,-0.0737531 -43912,5413:226:3,-136,-42.5,0,0,-0.0765192 -43913,5413:225:4,-135.5,-42.5,0,0,-0.0800053 -43914,5413:225:3,-135,-42.5,0,0,-0.0793585 -43915,5413:124:4,-134.5,-42.5,0,0,-0.076866 -43916,5413:124:3,-134,-42.5,0,0,-0.0757408 -43917,5413:123:4,-133.5,-42.5,0,0,-0.0750602 -43918,5413:123:3,-133,-42.5,0,0,-0.0742977 -43919,5413:122:4,-132.5,-42.5,0,0,-0.0724189 -43920,5413:122:3,-132,-42.5,0,0,-0.068682 -43921,5413:121:4,-131.5,-42.5,0,0,-0.0679399 -43922,5413:121:3,-131,-42.5,0,0,-0.0691867 -43923,5413:120:4,-130.5,-42.5,0,0,-0.0686493 -43924,5413:120:3,-130,-42.5,0,0,-0.0659051 -43925,5412:229:4,-129.5,-42.5,0,0,-0.0656886 -43926,5412:229:3,-129,-42.5,0,0,-0.0659364 -43927,5412:228:4,-128.5,-42.5,0,0,-0.066279 -43928,5412:228:3,-128,-42.5,0,0,-0.0650117 -43929,5412:227:4,-127.5,-42.5,0,0,-0.0607316 -43930,5412:227:3,-127,-42.5,0,0,-0.0567221 -43931,5412:226:4,-126.5,-42.5,0,0,-0.0562738 -43932,5412:226:3,-126,-42.5,0,0,-0.0597998 -43933,5412:225:4,-125.5,-42.5,0,0,-0.0614911 -43934,5412:225:3,-125,-42.5,0,0,-0.0599684 -43935,5412:124:4,-124.5,-42.5,0,0,-0.058417 -43936,5412:124:3,-124,-42.5,0,0,-0.0565897 -43937,5412:123:4,-123.5,-42.5,0,0,-0.0529289 -43938,5412:123:3,-123,-42.5,0,0,-0.0511035 -43939,5412:122:4,-122.5,-42.5,0,0,-0.0502562 -43940,5412:122:3,-122,-42.5,0,0,-0.049241 -43941,5412:121:4,-121.5,-42.5,0,0,-0.0484373 -43942,5412:121:3,-121,-42.5,0,0,-0.0483812 -43943,5412:120:4,-120.5,-42.5,0,0,-0.0488093 -43944,5412:120:3,-120,-42.5,0,0,-0.0486175 -43945,5411:229:4,-119.5,-42.5,0,0,-0.0476696 -43946,5411:229:3,-119,-42.5,0,0,-0.0466873 -43947,5411:228:4,-118.5,-42.5,0,0,-0.0460442 -43948,5411:228:3,-118,-42.5,0,0,-0.0455257 -43949,5411:227:4,-117.5,-42.5,0,0,-0.0453684 -43950,5411:227:3,-117,-42.5,0,0,-0.0463538 -43951,5411:226:4,-116.5,-42.5,0,0,-0.0497345 -43952,5411:226:3,-116,-42.5,0,0,-0.0520982 -43953,5411:225:4,-115.5,-42.5,0,0,-0.0515444 -43954,5411:225:3,-115,-42.5,0,0,-0.0501048 -43955,5411:124:4,-114.5,-42.5,0,0,-0.0494124 -43956,5411:124:3,-114,-42.5,0,0,-0.0482808 -43957,5411:123:4,-113.5,-42.5,0,0,-0.046429 -43958,5411:123:3,-113,-42.5,0,0,-0.044703 -43959,5411:122:4,-112.5,-42.5,0,0,-0.0435627 -43960,5411:122:3,-112,-42.5,0,0,-0.0439158 -43961,5411:121:4,-111.5,-42.5,0,0,-0.0442818 -43962,5411:121:3,-111,-42.5,0,0,-0.0437843 -43963,5411:120:4,-110.5,-42.5,0,0,-0.0426685 -43964,5411:120:3,-110,-42.5,0,0,-0.0418895 -43965,5410:229:4,-109.5,-42.5,0,0,-0.0416972 -43966,5410:229:3,-109,-42.5,0,0,-0.0418028 -43967,5410:228:4,-108.5,-42.5,0,0,-0.0418412 -43968,5410:228:3,-108,-42.5,0,0,-0.0417643 -43969,5410:227:4,-107.5,-42.5,0,0,-0.0410877 -43970,5410:227:3,-107,-42.5,0,0,-0.0400708 -43971,5410:226:4,-106.5,-42.5,0,0,-0.0401538 -43972,5410:226:3,-106,-42.5,0,0,-0.0413911 -43973,5410:225:4,-105.5,-42.5,0,0,-0.0410592 -43974,5410:225:3,-105,-42.5,0,0,-0.0396496 -43975,5410:124:4,-104.5,-42.5,0,0,-0.0385191 -43976,5410:124:3,-104,-42.5,0,0,-0.0381848 -43977,5410:123:4,-103.5,-42.5,0,0,-0.0387496 -43978,5410:123:3,-103,-42.5,0,0,-0.0398047 -43979,5410:122:4,-102.5,-42.5,0,0,-0.040562 -43980,5410:122:3,-102,-42.5,0,0,-0.0405153 -43981,5410:121:4,-101.5,-42.5,0,0,-0.0396221 -43982,5410:121:3,-101,-42.5,0,0,-0.0382988 -43983,5410:120:4,-100.5,-42.5,0,0,-0.037594 -43984,5410:120:3,-100,-42.5,0,0,-0.0377926 -43985,5409:229:4,-99.5,-42.5,0,0,-0.0382723 -43986,5409:229:3,-99,-42.5,0,0,-0.0385987 -43987,5409:228:4,-98.5,-42.5,0,0,-0.0387851 -43988,5409:228:3,-98,-42.5,0,0,-0.0386962 -43989,5409:227:4,-97.5,-42.5,0,0,-0.0379838 -43990,5409:227:3,-97,-42.5,0,0,-0.0375509 -43991,5409:226:4,-96.5,-42.5,0,0,-0.0376111 -43992,5409:226:3,-96,-42.5,0,0,-0.0378273 -43993,5409:225:4,-95.5,-42.5,0,0,-0.037862 -43994,5409:225:3,-95,-42.5,0,0,-0.0379577 -43995,5409:124:4,-94.5,-42.5,0,0,-0.038723 -43996,5409:124:3,-94,-42.5,0,0,-0.0394135 -43997,5409:123:4,-93.5,-42.5,0,0,-0.0390351 -43998,5409:123:3,-93,-42.5,0,0,-0.0382021 -43999,5409:122:4,-92.5,-42.5,0,0,-0.0374305 -44000,5409:122:3,-92,-42.5,0,0,-0.0368856 -44001,5409:121:4,-91.5,-42.5,0,0,-0.0367675 -44002,5409:121:3,-91,-42.5,0,0,-0.0370975 -44003,5409:120:4,-90.5,-42.5,0,0,-0.0379402 -44004,5409:120:3,-90,-42.5,0,0,-0.0386341 -44005,5408:229:4,-89.5,-42.5,0,0,-0.0385455 -44006,5408:229:3,-89,-42.5,0,0,-0.0379838 -44007,5408:228:4,-88.5,-42.5,0,0,-0.037663 -44008,5408:228:3,-88,-42.5,0,0,-0.0377147 -44009,5408:227:4,-87.5,-42.5,0,0,-0.0379402 -44010,5408:227:3,-87,-42.5,0,0,-0.0378447 -44011,5408:226:4,-86.5,-42.5,0,0,-0.0374219 -44012,5408:226:3,-86,-42.5,0,0,-0.0371143 -44013,5408:225:4,-85.5,-42.5,0,0,-0.0369194 -44014,5408:225:3,-85,-42.5,0,0,-0.0368942 -44015,5408:124:4,-84.5,-42.5,0,0,-0.0368686 -44016,5408:124:3,-84,-42.5,0,0,-0.036633 -44017,5408:123:4,-83.5,-42.5,0,0,-0.0362822 -44018,5408:123:3,-83,-42.5,0,0,-0.0359846 -44019,5408:122:4,-82.5,-42.5,0,0,-0.0357793 -44020,5408:122:3,-82,-42.5,0,0,-0.0357057 -44021,5408:121:4,-81.5,-42.5,0,0,-0.0356975 -44022,5408:121:3,-81,-42.5,0,0,-0.0360009 -44023,5408:120:4,-80.5,-42.5,0,0,-0.0362409 -44024,5408:120:3,-80,-42.5,0,0,-0.0358201 -44025,5407:229:4,-79.5,-42.5,0,0,-0.0358283 -44026,5407:229:3,-79,-42.5,0,0,-0.0365407 -44027,5407:228:4,-78.5,-42.5,0,0,-0.0371569 -44028,5407:228:3,-78,-42.5,0,0,-0.0383691 -44029,5407:227:4,-77.5,-42.5,0,0,-0.0383514 -44030,5407:227:3,-77,-42.5,0,0,-0.0403851 -44031,5407:226:4,-76.5,-42.5,0,0,-0.0422673 -44032,5407:226:3,-76,-42.5,0,0,-0.0447134 -44033,5407:225:4,-75.5,-42.5,0,0,-0.0498501 -44034,5407:225:3,-75,-42.5,0,0,-0.0555434 -44035,5406:229:3,-69,-42.5,0,0,-0.0675245 -44036,5406:228:4,-68.5,-42.5,0,0,-0.0634111 -44037,5406:228:3,-68,-42.5,0,0,-0.0543143 -44038,5406:227:4,-67.5,-42.5,0,0,-0.0432924 -44039,5406:227:3,-67,-42.5,0,0,-0.038466 -44040,5406:226:4,-66.5,-42.5,0,0,-0.0365241 -44041,5406:226:3,-66,-42.5,0,0,-0.0362078 -44042,5406:225:4,-65.5,-42.5,0,0,-0.0365157 -44043,5406:225:3,-65,-42.5,0,0,-0.0366666 -44044,5406:124:4,-64.5,-42.5,0,0,-0.0365576 -44045,5406:124:3,-64,-42.5,0,0,-0.036759 -44046,5406:123:4,-63.5,-42.5,0,0,-0.0374992 -44047,5406:123:3,-63,-42.5,0,0,-0.037362 -44048,5406:122:4,-62.5,-42.5,0,0,-0.0369701 -44049,5406:122:3,-62,-42.5,0,0,-0.0376111 -44050,5406:121:4,-61.5,-42.5,0,0,-0.0385633 -44051,5406:121:3,-61,-42.5,0,0,-0.0405526 -44052,5406:120:4,-60.5,-42.5,0,0,-0.0418895 -44053,5406:120:3,-60,-42.5,0,0,-0.0405432 -44054,5405:229:3,-59,-42.5,0,0,-0.0564577 -44055,5405:228:4,-58.5,-42.5,0,0,-0.0471213 -44056,5405:228:3,-58,-42.5,0,0,-0.0405711 -44057,5405:227:4,-57.5,-42.5,0,0,-0.0389188 -44058,5405:227:3,-57,-42.5,0,0,-0.0365911 -44059,5405:226:4,-56.5,-42.5,0,0,-0.0343049 -44060,5405:226:3,-56,-42.5,0,0,-0.0327884 -44061,5405:225:4,-55.5,-42.5,0,0,-0.0313053 -44062,5405:225:3,-55,-42.5,0,0,-0.0295464 -44063,5405:124:4,-54.5,-42.5,0,0,-0.0277879 -44064,5405:124:3,-54,-42.5,0,0,-0.0268821 -44065,5405:123:4,-53.5,-42.5,0,0,-0.0268334 -44066,5405:123:3,-53,-42.5,0,0,-0.0270903 -44067,5405:122:4,-52.5,-42.5,0,0,-0.0273497 -44068,5405:122:3,-52,-42.5,0,0,-0.0273374 -44069,5405:121:4,-51.5,-42.5,0,0,-0.0271025 -44070,5405:121:3,-51,-42.5,0,0,-0.0267664 -44071,5405:120:4,-50.5,-42.5,0,0,-0.0257368 -44072,5405:120:3,-50,-42.5,0,0,-0.0240683 -44073,5404:229:4,-49.5,-42.5,0,0,-0.0236152 -44074,5404:229:3,-49,-42.5,0,0,-0.0231135 -44075,5404:228:4,-48.5,-42.5,0,0,-0.0216529 -44076,5404:228:3,-48,-42.5,0,0,-0.020077 -44077,5404:227:4,-47.5,-42.5,0,0,-0.0189605 -44078,5404:227:3,-47,-42.5,0,0,-0.0184263 -44079,5404:226:4,-46.5,-42.5,0,0,-0.0185511 -44080,5404:226:3,-46,-42.5,0,0,-0.0187188 -44081,5404:225:4,-45.5,-42.5,0,0,-0.0188456 -44082,5404:225:3,-45,-42.5,0,0,-0.0189562 -44083,5404:124:4,-44.5,-42.5,0,0,-0.019059 -44084,5404:124:3,-44,-42.5,0,0,-0.0191493 -44085,5404:123:4,-43.5,-42.5,0,0,-0.0192228 -44086,5404:123:3,-43,-42.5,0,0,-0.019059 -44087,5404:122:4,-42.5,-42.5,0,0,-0.0183765 -44088,5404:122:3,-42,-42.5,0,0,-0.0171431 -44089,5404:121:4,-41.5,-42.5,0,0,-0.0158614 -44090,5404:121:3,-41,-42.5,0,0,-0.0171162 -44091,5404:120:4,-40.5,-42.5,0,0,-0.0182201 -44092,5404:120:3,-40,-42.5,0,0,-0.0181302 -44093,5403:229:4,-39.5,-42.5,0,0,-0.017992 -44094,5403:229:3,-39,-42.5,0,0,-0.017831 -44095,5403:228:4,-38.5,-42.5,0,0,-0.0173485 -44096,5403:228:3,-38,-42.5,0,0,-0.0158187 -44097,5403:227:4,-37.5,-42.5,0,0,-0.014387 -44098,5403:227:3,-37,-42.5,0,0,-0.0143227 -44099,5403:226:4,-36.5,-42.5,0,0,-0.014766 -44100,5403:226:3,-36,-42.5,0,0,-0.0153881 -44101,5403:225:4,-35.5,-42.5,0,0,-0.0154054 -44102,5403:225:3,-35,-42.5,0,0,-0.0149292 -44103,5403:124:4,-34.5,-42.5,0,0,-0.0144096 -44104,5403:124:3,-34,-42.5,0,0,-0.0142395 -44105,5403:123:4,-33.5,-42.5,0,0,-0.0126801 -44106,5403:123:3,-33,-42.5,0,0,-0.0114971 -44107,5403:122:4,-32.5,-42.5,0,0,-0.0113897 -44108,5403:122:3,-32,-42.5,0,0,-0.0137844 -44109,5403:121:4,-31.5,-42.5,0,0,-0.0142267 -44110,5403:121:3,-31,-42.5,0,0,-0.0142045 -44111,5403:120:4,-30.5,-42.5,0,0,-0.0140304 -44112,5403:120:3,-30,-42.5,0,0,-0.0139802 -44113,5402:229:4,-29.5,-42.5,0,0,-0.013924 -44114,5402:229:3,-29,-42.5,0,0,-0.0148025 -44115,5402:228:4,-28.5,-42.5,0,0,-0.0170738 -44116,5402:228:3,-28,-42.5,0,0,-0.0175603 -44117,5402:227:4,-27.5,-42.5,0,0,-0.0155338 -44118,5402:227:3,-27,-42.5,0,0,-0.0155757 -44119,5402:226:4,-26.5,-42.5,0,0,-0.0160765 -44120,5402:226:3,-26,-42.5,0,0,-0.0159185 -44121,5402:225:4,-25.5,-42.5,0,0,-0.0152883 -44122,5402:225:3,-25,-42.5,0,0,-0.0158329 -44123,5402:124:4,-24.5,-42.5,0,0,-0.0165378 -44124,5402:124:3,-24,-42.5,0,0,-0.01639 -44125,5402:123:4,-23.5,-42.5,0,0,-0.0161742 -44126,5402:123:3,-23,-42.5,0,0,-0.0163018 -44127,5402:122:4,-22.5,-42.5,0,0,-0.0168414 -44128,5402:122:3,-22,-42.5,0,0,-0.0162981 -44129,5402:121:4,-21.5,-42.5,0,0,-0.0149258 -44130,5402:121:3,-21,-42.5,0,0,-0.0147992 -44131,5402:120:4,-20.5,-42.5,0,0,-0.0158864 -44132,5402:120:3,-20,-42.5,0,0,-0.0156949 -44133,5401:229:4,-19.5,-42.5,0,0,-0.0150367 -44134,5401:229:3,-19,-42.5,0,0,-0.0147066 -44135,5401:228:4,-18.5,-42.5,0,0,-0.0152746 -44136,5401:228:3,-18,-42.5,0,0,-0.016887 -44137,5401:227:4,-17.5,-42.5,0,0,-0.018171 -44138,5401:227:3,-17,-42.5,0,0,-0.0164859 -44139,5401:226:4,-16.5,-42.5,0,0,-0.0155896 -44140,5401:226:3,-16,-42.5,0,0,-0.0163311 -44141,5401:225:4,-15.5,-42.5,0,0,-0.0166759 -44142,5401:225:3,-15,-42.5,0,0,-0.0166871 -44143,5401:124:4,-14.5,-42.5,0,0,-0.0161018 -44144,5401:124:3,-14,-42.5,0,0,-0.0154538 -44145,5401:123:4,-13.5,-42.5,0,0,-0.015237 -44146,5401:123:3,-13,-42.5,0,0,-0.015922 -44147,5401:122:4,-12.5,-42.5,0,0,-0.0176316 -44148,5401:122:3,-12,-42.5,0,0,-0.0186473 -44149,5401:121:4,-11.5,-42.5,0,0,-0.0176633 -44150,5401:121:3,-11,-42.5,0,0,-0.01608 -44151,5401:120:4,-10.5,-42.5,0,0,-0.0146014 -44152,5401:120:3,-10,-42.5,0,0,-0.0135669 -44153,5400:229:4,-9.5,-42.5,0,0,-0.0126574 -44154,5400:229:3,-9,-42.5,0,0,-0.0119959 -44155,5400:228:4,-8.5,-42.5,0,0,-0.0119798 -44156,5400:228:3,-8,-42.5,0,0,-0.0119825 -44157,5400:227:4,-7.5,-42.5,0,0,-0.0120093 -44158,5400:227:3,-7,-42.5,0,0,-0.0119932 -44159,5400:226:4,-6.5,-42.5,0,0,-0.0118997 -44160,5400:226:3,-6,-42.5,0,0,-0.0116081 -44161,5400:225:4,-5.5,-42.5,0,0,-0.0107758 -44162,5400:225:3,-5,-42.5,0,0,-0.00976129 -44163,5400:124:4,-4.5,-42.5,0,0,-0.00970912 -44164,5400:124:3,-4,-42.5,0,0,-0.00995927 -44165,5400:123:4,-3.5,-42.5,0,0,-0.010393 -44166,5400:123:3,-3,-42.5,0,0,-0.0107254 -44167,5400:122:4,-2.5,-42.5,0,0,-0.0102228 -44168,5400:122:3,-2,-42.5,0,0,-0.00965514 -44169,5400:121:4,-1.5,-42.5,0,0,-0.00906865 -44170,5400:121:3,-1,-42.5,0,0,-0.00860782 -44171,5400:120:4,-0.5,-42.5,0,0,-0.00884113 -44172,3400:120:4,0,-42.5,0,0,-0.00907878 -44173,3400:120:4,0.5,-42.5,0,0,-0.00909299 -44174,3400:121:3,1,-42.5,0,0,-0.0090485 -44175,3400:121:4,1.5,-42.5,0,0,-0.00891238 -44176,3400:122:3,2,-42.5,0,0,-0.00866939 -44177,3400:122:4,2.5,-42.5,0,0,-0.00823265 -44178,3400:123:3,3,-42.5,0,0,-0.00814509 -44179,3400:123:4,3.5,-42.5,0,0,-0.00832116 -44180,3400:124:3,4,-42.5,0,0,-0.00955022 -44181,3400:124:4,4.5,-42.5,0,0,-0.0111654 -44182,3400:225:3,5,-42.5,0,0,-0.0112706 -44183,3400:225:4,5.5,-42.5,0,0,-0.0115744 -44184,3400:226:3,6,-42.5,0,0,-0.0119664 -44185,3400:226:4,6.5,-42.5,0,0,-0.0114177 -44186,3400:227:3,7,-42.5,0,0,-0.0105544 -44187,3400:227:4,7.5,-42.5,0,0,-0.0104279 -44188,3400:228:3,8,-42.5,0,0,-0.0108482 -44189,3400:228:4,8.5,-42.5,0,0,-0.0104933 -44190,3400:229:3,9,-42.5,0,0,-0.00956727 -44191,3400:229:4,9.5,-42.5,0,0,-0.0097113 -44192,3401:120:3,10,-42.5,0,0,-0.0123774 -44193,3401:120:4,10.5,-42.5,0,0,-0.0133678 -44194,3401:121:3,11,-42.5,0,0,-0.0133708 -44195,3401:121:4,11.5,-42.5,0,0,-0.0126065 -44196,3401:122:3,12,-42.5,0,0,-0.010611 -44197,3401:122:4,12.5,-42.5,0,0,-0.00879985 -44198,3401:123:3,13,-42.5,0,0,-0.00798166 -44199,3401:123:4,13.5,-42.5,0,0,-0.00810709 -44200,3401:124:3,14,-42.5,0,0,-0.00915601 -44201,3401:124:4,14.5,-42.5,0,0,-0.0100868 -44202,3401:225:3,15,-42.5,0,0,-0.0103306 -44203,3401:225:4,15.5,-42.5,0,0,-0.0101342 -44204,3401:226:3,16,-42.5,0,0,-0.00988838 -44205,3401:226:4,16.5,-42.5,0,0,-0.00965087 -44206,3401:227:3,17,-42.5,0,0,-0.00950554 -44207,3401:227:4,17.5,-42.5,0,0,-0.00929177 -44208,3401:228:3,18,-42.5,0,0,-0.0089422 -44209,3401:228:4,18.5,-42.5,0,0,-0.00896016 -44210,3401:229:3,19,-42.5,0,0,-0.0091397 -44211,3401:229:4,19.5,-42.5,0,0,-0.00914991 -44212,3402:120:3,20,-42.5,0,0,-0.00905657 -44213,3402:120:4,20.5,-42.5,0,0,-0.00882539 -44214,3402:121:3,21,-42.5,0,0,-0.00865973 -44215,3402:121:4,21.5,-42.5,0,0,-0.00836575 -44216,3402:122:3,22,-42.5,0,0,-0.00818327 -44217,3402:122:4,22.5,-42.5,0,0,-0.00840503 -44218,3402:123:3,23,-42.5,0,0,-0.00846324 -44219,3402:123:4,23.5,-42.5,0,0,-0.00841064 -44220,3402:124:3,24,-42.5,0,0,-0.00857143 -44221,3402:124:4,24.5,-42.5,0,0,-0.00886479 -44222,3402:225:3,25,-42.5,0,0,-0.0091011 -44223,3402:225:4,25.5,-42.5,0,0,-0.00936459 -44224,3402:226:3,26,-42.5,0,0,-0.00985538 -44225,3402:226:4,26.5,-42.5,0,0,-0.0104629 -44226,3402:227:3,27,-42.5,0,0,-0.0105378 -44227,3402:227:4,27.5,-42.5,0,0,-0.00986639 -44228,3402:228:3,28,-42.5,0,0,-0.00931463 -44229,3402:228:4,28.5,-42.5,0,0,-0.00947595 -44230,3402:229:3,29,-42.5,0,0,-0.0100016 -44231,3402:229:4,29.5,-42.5,0,0,-0.00984881 -44232,3403:120:3,30,-42.5,0,0,-0.0110809 -44233,3403:120:4,30.5,-42.5,0,0,-0.0136461 -44234,3403:121:3,31,-42.5,0,0,-0.0146309 -44235,3403:121:4,31.5,-42.5,0,0,-0.0143548 -44236,3403:122:3,32,-42.5,0,0,-0.0133769 -44237,3403:122:4,32.5,-42.5,0,0,-0.0118731 -44238,3403:123:3,33,-42.5,0,0,-0.0107999 -44239,3403:123:4,33.5,-42.5,0,0,-0.0106205 -44240,3403:124:3,34,-42.5,0,0,-0.0107039 -44241,3403:124:4,34.5,-42.5,0,0,-0.0105945 -44242,3403:225:3,35,-42.5,0,0,-0.0107063 -44243,3403:225:4,35.5,-42.5,0,0,-0.0116158 -44244,3403:226:3,36,-42.5,0,0,-0.0121851 -44245,3403:226:4,36.5,-42.5,0,0,-0.0119825 -44246,3403:227:3,37,-42.5,0,0,-0.0124552 -44247,3403:227:4,37.5,-42.5,0,0,-0.0125306 -44248,3403:228:3,38,-42.5,0,0,-0.0123525 -44249,3403:228:4,38.5,-42.5,0,0,-0.0123498 -44250,3403:229:3,39,-42.5,0,0,-0.0118546 -44251,3403:229:4,39.5,-42.5,0,0,-0.0114432 -44252,3404:120:3,40,-42.5,0,0,-0.0114816 -44253,3404:120:4,40.5,-42.5,0,0,-0.0116211 -44254,3404:121:3,41,-42.5,0,0,-0.011433 -44255,3404:121:4,41.5,-42.5,0,0,-0.0112909 -44256,3404:122:3,42,-42.5,0,0,-0.0111156 -44257,3404:122:4,42.5,-42.5,0,0,-0.0112631 -44258,3404:123:3,43,-42.5,0,0,-0.0115977 -44259,3404:123:4,43.5,-42.5,0,0,-0.0118017 -44260,3404:124:3,44,-42.5,0,0,-0.0119183 -44261,3404:124:4,44.5,-42.5,0,0,-0.0120039 -44262,3404:225:3,45,-42.5,0,0,-0.0121769 -44263,3404:225:4,45.5,-42.5,0,0,-0.012511 -44264,3404:226:3,46,-42.5,0,0,-0.0128428 -44265,3404:226:4,46.5,-42.5,0,0,-0.0129873 -44266,3404:227:3,47,-42.5,0,0,-0.0127512 -44267,3404:227:4,47.5,-42.5,0,0,-0.0123608 -44268,3404:228:3,48,-42.5,0,0,-0.012444 -44269,3404:228:4,48.5,-42.5,0,0,-0.0130837 -44270,3404:229:3,49,-42.5,0,0,-0.0136614 -44271,3404:229:4,49.5,-42.5,0,0,-0.0135608 -44272,3405:120:3,50,-42.5,0,0,-0.01347 -44273,3405:120:4,50.5,-42.5,0,0,-0.0132932 -44274,3405:121:3,51,-42.5,0,0,-0.0130544 -44275,3405:121:4,51.5,-42.5,0,0,-0.0127455 -44276,3405:122:3,52,-42.5,0,0,-0.0127512 -44277,3405:122:4,52.5,-42.5,0,0,-0.0132487 -44278,3405:123:3,53,-42.5,0,0,-0.0134338 -44279,3405:123:4,53.5,-42.5,0,0,-0.0132072 -44280,3405:124:3,54,-42.5,0,0,-0.0126687 -44281,3405:124:4,54.5,-42.5,0,0,-0.0122398 -44282,3405:225:3,55,-42.5,0,0,-0.0122864 -44283,3405:225:4,55.5,-42.5,0,0,-0.0124329 -44284,3405:226:3,56,-42.5,0,0,-0.0127141 -44285,3405:226:4,56.5,-42.5,0,0,-0.0132902 -44286,3405:227:3,57,-42.5,0,0,-0.0135912 -44287,3405:227:4,57.5,-42.5,0,0,-0.0134369 -44288,3405:228:3,58,-42.5,0,0,-0.012797 -44289,3405:228:4,58.5,-42.5,0,0,-0.0122617 -44290,3405:229:3,59,-42.5,0,0,-0.0123498 -44291,3405:229:4,59.5,-42.5,0,0,-0.0130954 -44292,3406:120:3,60,-42.5,0,0,-0.0140619 -44293,3406:120:4,60.5,-42.5,0,0,-0.014429 -44294,3406:121:3,61,-42.5,0,0,-0.0142778 -44295,3406:121:4,61.5,-42.5,0,0,-0.0139646 -44296,3406:122:3,62,-42.5,0,0,-0.0136217 -44297,3406:122:4,62.5,-42.5,0,0,-0.0132843 -44298,3406:123:3,63,-42.5,0,0,-0.0131365 -44299,3406:123:4,63.5,-42.5,0,0,-0.013317 -44300,3406:124:3,64,-42.5,0,0,-0.0136095 -44301,3406:124:4,64.5,-42.5,0,0,-0.0137535 -44302,3406:225:3,65,-42.5,0,0,-0.0137073 -44303,3406:225:4,65.5,-42.5,0,0,-0.0136277 -44304,3406:226:3,66,-42.5,0,0,-0.0136308 -44305,3406:226:4,66.5,-42.5,0,0,-0.0136828 -44306,3406:227:3,67,-42.5,0,0,-0.0137504 -44307,3406:227:4,67.5,-42.5,0,0,-0.0137627 -44308,3406:228:3,68,-42.5,0,0,-0.0137135 -44309,3406:228:4,68.5,-42.5,0,0,-0.0136552 -44310,3406:229:3,69,-42.5,0,0,-0.013579 -44311,3406:229:4,69.5,-42.5,0,0,-0.0133799 -44312,3407:120:3,70,-42.5,0,0,-0.0124998 -44313,3407:120:4,70.5,-42.5,0,0,-0.0115589 -44314,3407:121:3,71,-42.5,0,0,-0.0111853 -44315,3407:121:4,71.5,-42.5,0,0,-0.0112355 -44316,3407:122:3,72,-42.5,0,0,-0.0114075 -44317,3407:122:4,72.5,-42.5,0,0,-0.0115615 -44318,3407:123:4,73.5,-42.5,0,0,-0.0117412 -44319,3407:124:3,74,-42.5,0,0,-0.0118123 -44320,3407:124:4,74.5,-42.5,0,0,-0.0117018 -44321,3407:225:3,75,-42.5,0,0,-0.0115073 -44322,3407:225:4,75.5,-42.5,0,0,-0.0113515 -44323,3407:226:3,76,-42.5,0,0,-0.0113871 -44324,3407:226:4,76.5,-42.5,0,0,-0.0112154 -44325,3407:227:3,77,-42.5,0,0,-0.0102937 -44326,3407:227:4,77.5,-42.5,0,0,-0.00976999 -44327,3407:228:3,78,-42.5,0,0,-0.00924837 -44328,3407:228:4,78.5,-42.5,0,0,-0.00902434 -44329,3407:229:3,79,-42.5,0,0,-0.00962718 -44330,3407:229:4,79.5,-42.5,0,0,-0.0122124 -44331,3408:120:3,80,-42.5,0,0,-0.0142235 -44332,3408:120:4,80.5,-42.5,0,0,-0.014909 -44333,3408:121:3,81,-42.5,0,0,-0.0138214 -44334,3408:121:4,81.5,-42.5,0,0,-0.0112909 -44335,3408:122:3,82,-42.5,0,0,-0.0102891 -44336,3408:122:4,82.5,-42.5,0,0,-0.0119959 -44337,3408:123:3,83,-42.5,0,0,-0.0157515 -44338,3408:123:4,83.5,-42.5,0,0,-0.0189008 -44339,3408:124:3,84,-42.5,0,0,-0.0180205 -44340,3408:124:4,84.5,-42.5,0,0,-0.0195724 -44341,3408:225:3,85,-42.5,0,0,-0.0177988 -44342,3408:225:4,85.5,-42.5,0,0,-0.0170777 -44343,3408:226:3,86,-42.5,0,0,-0.0156598 -44344,3408:226:4,86.5,-42.5,0,0,-0.0151009 -44345,3408:227:3,87,-42.5,0,0,-0.0148358 -44346,3408:227:4,87.5,-42.5,0,0,-0.015499 -44347,3408:228:3,88,-42.5,0,0,-0.0176832 -44348,3408:228:4,88.5,-42.5,0,0,-0.0185845 -44349,3408:229:3,89,-42.5,0,0,-0.0192228 -44350,3408:229:4,89.5,-42.5,0,0,-0.0201814 -44351,3409:120:3,90,-42.5,0,0,-0.0217605 -44352,3409:120:4,90.5,-42.5,0,0,-0.0229003 -44353,3409:121:3,91,-42.5,0,0,-0.0231135 -44354,3409:121:4,91.5,-42.5,0,0,-0.0214631 -44355,3409:122:3,92,-42.5,0,0,-0.0210031 -44356,3409:122:4,92.5,-42.5,0,0,-0.0206835 -44357,3409:123:3,93,-42.5,0,0,-0.0186473 -44358,3409:123:4,93.5,-42.5,0,0,-0.017827 -44359,3409:124:3,94,-42.5,0,0,-0.0170203 -44360,3409:124:4,94.5,-42.5,0,0,-0.0164452 -44361,3409:225:3,95,-42.5,0,0,-0.0168528 -44362,3409:225:4,95.5,-42.5,0,0,-0.017411 -44363,3409:226:3,96,-42.5,0,0,-0.0177749 -44364,3409:226:4,96.5,-42.5,0,0,-0.0190161 -44365,3409:227:3,97,-42.5,0,0,-0.0205301 -44366,3409:227:4,97.5,-42.5,0,0,-0.0216772 -44367,3409:228:3,98,-42.5,0,0,-0.0218492 -44368,3409:228:4,98.5,-42.5,0,0,-0.0216137 -44369,3409:229:3,99,-42.5,0,0,-0.0212942 -44370,3409:229:4,99.5,-42.5,0,0,-0.0208568 -44371,3410:120:3,100,-42.5,0,0,-0.0198969 -44372,3410:120:4,100.5,-42.5,0,0,-0.0185511 -44373,3410:121:3,101,-42.5,0,0,-0.0179193 -44374,3410:121:4,101.5,-42.5,0,0,-0.0175248 -44375,3410:122:3,102,-42.5,0,0,-0.0173095 -44376,3410:122:4,102.5,-42.5,0,0,-0.0170279 -44377,3410:123:3,103,-42.5,0,0,-0.0167772 -44378,3410:123:4,103.5,-42.5,0,0,-0.0166683 -44379,3410:124:3,104,-42.5,0,0,-0.0165601 -44380,3410:124:4,104.5,-42.5,0,0,-0.0163055 -44381,3410:225:3,105,-42.5,0,0,-0.0160693 -44382,3410:225:4,105.5,-42.5,0,0,-0.0156212 -44383,3410:226:3,106,-42.5,0,0,-0.0153192 -44384,3410:226:4,106.5,-42.5,0,0,-0.0159149 -44385,3410:227:3,107,-42.5,0,0,-0.0170012 -44386,3410:227:4,107.5,-42.5,0,0,-0.0169896 -44387,3410:228:3,108,-42.5,0,0,-0.0173369 -44388,3410:228:4,108.5,-42.5,0,0,-0.0179597 -44389,3410:229:3,109,-42.5,0,0,-0.0181343 -44390,3410:229:4,109.5,-42.5,0,0,-0.017329 -44391,3411:120:3,110,-42.5,0,0,-0.0166384 -44392,3411:120:4,110.5,-42.5,0,0,-0.0167359 -44393,3411:121:3,111,-42.5,0,0,-0.0175053 -44394,3411:121:4,111.5,-42.5,0,0,-0.0181017 -44395,3411:122:3,112,-42.5,0,0,-0.017759 -44396,3411:122:4,112.5,-42.5,0,0,-0.0174267 -44397,3411:123:3,113,-42.5,0,0,-0.0173914 -44398,3411:123:4,113.5,-42.5,0,0,-0.0181221 -44399,3411:124:3,114,-42.5,0,0,-0.0210363 -44400,3411:124:4,114.5,-42.5,0,0,-0.0244637 -44401,3411:225:3,115,-42.5,0,0,-0.0262019 -44402,3411:225:4,115.5,-42.5,0,0,-0.0312696 -44403,3411:226:3,116,-42.5,0,0,-0.0317725 -44404,3411:226:4,116.5,-42.5,0,0,-0.0318524 -44405,3411:227:3,117,-42.5,0,0,-0.0318814 -44406,3411:227:4,117.5,-42.5,0,0,-0.0298029 -44407,3411:228:3,118,-42.5,0,0,-0.0260774 -44408,3411:228:4,118.5,-42.5,0,0,-0.0235674 -44409,3411:229:3,119,-42.5,0,0,-0.0240086 -44410,3411:229:4,119.5,-42.5,0,0,-0.0252574 -44411,3412:120:3,120,-42.5,0,0,-0.0243312 -44412,3412:120:4,120.5,-42.5,0,0,-0.0233076 -44413,3412:121:3,121,-42.5,0,0,-0.0242542 -44414,3412:121:4,121.5,-42.5,0,0,-0.0266937 -44415,3412:122:3,122,-42.5,0,0,-0.0288232 -44416,3412:122:4,122.5,-42.5,0,0,-0.0297148 -44417,3412:123:3,123,-42.5,0,0,-0.0298437 -44418,3412:123:4,123.5,-42.5,0,0,-0.0300139 -44419,3412:124:3,124,-42.5,0,0,-0.0295868 -44420,3412:124:4,124.5,-42.5,0,0,-0.0284263 -44421,3412:225:3,125,-42.5,0,0,-0.0276808 -44422,3412:225:4,125.5,-42.5,0,0,-0.0280477 -44423,3412:226:3,126,-42.5,0,0,-0.0288166 -44424,3412:226:4,126.5,-42.5,0,0,-0.0290732 -44425,3412:227:3,127,-42.5,0,0,-0.0280032 -44426,3412:227:4,127.5,-42.5,0,0,-0.0270595 -44427,3412:228:3,128,-42.5,0,0,-0.0295127 -44428,3412:228:4,128.5,-42.5,0,0,-0.0350581 -44429,3412:229:3,129,-42.5,0,0,-0.0390531 -44430,3412:229:4,129.5,-42.5,0,0,-0.0399053 -44431,3413:120:3,130,-42.5,0,0,-0.0380013 -44432,3413:120:4,130.5,-42.5,0,0,-0.0338301 -44433,3413:121:3,131,-42.5,0,0,-0.0285363 -44434,3413:121:4,131.5,-42.5,0,0,-0.0252917 -44435,3413:122:3,132,-42.5,0,0,-0.0245136 -44436,3413:122:4,132.5,-42.5,0,0,-0.0251319 -44437,3413:123:3,133,-42.5,0,0,-0.0270965 -44438,3413:123:4,133.5,-42.5,0,0,-0.0308383 -44439,3413:124:3,134,-42.5,0,0,-0.0362657 -44440,3413:124:4,134.5,-42.5,0,0,-0.0414007 -44441,3413:225:3,135,-42.5,0,0,-0.0435627 -44442,3413:225:4,135.5,-42.5,0,0,-0.0436732 -44443,3413:226:3,136,-42.5,0,0,-0.0431926 -44444,3413:226:4,136.5,-42.5,0,0,-0.0421994 -44445,3413:227:3,137,-42.5,0,0,-0.0408052 -44446,3413:227:4,137.5,-42.5,0,0,-0.0391608 -44447,3413:228:3,138,-42.5,0,0,-0.0368686 -44448,3413:228:4,138.5,-42.5,0,0,-0.0356404 -44449,3413:229:3,139,-42.5,0,0,-0.035624 -44450,3413:229:4,139.5,-42.5,0,0,-0.0348104 -44451,3414:120:3,140,-42.5,0,0,-0.0341329 -44452,3414:120:4,140.5,-42.5,0,0,-0.0317363 -44453,3414:121:3,141,-42.5,0,0,-0.0256728 -44454,3414:121:4,141.5,-42.5,0,0,-0.0227198 -44455,3414:122:3,142,-42.5,0,0,-0.0240031 -44456,3414:122:4,142.5,-42.5,0,0,-0.0253088 -44457,3414:123:3,143,-42.5,0,0,-0.0276367 -44458,3414:123:4,143.5,-42.5,0,0,-0.0292389 -44459,3414:124:3,144,-42.5,0,0,-0.0293322 -44460,3414:124:4,144.5,-42.5,0,0,-0.0264887 -44461,3414:225:3,145,-42.5,0,0,-0.0220774 -44462,3414:225:4,145.5,-42.5,0,0,-0.0210981 -44463,3414:226:3,146,-42.5,0,0,-0.020595 -44464,3414:226:4,146.5,-42.5,0,0,-0.0218641 -44465,3414:227:3,147,-42.5,0,0,-0.0253951 -44466,3414:227:4,147.5,-42.5,0,0,-0.0334002 -44467,3414:228:3,148,-42.5,0,0,-0.0435125 -44468,3414:228:4,148.5,-42.5,0,0,-0.0487979 -44469,3414:229:3,149,-42.5,0,0,-0.0496768 -44470,3414:229:4,149.5,-42.5,0,0,-0.0434223 -44471,3415:120:3,150,-42.5,0,0,-0.037362 -44472,3415:120:4,150.5,-42.5,0,0,-0.0400065 -44473,3415:121:3,151,-42.5,0,0,-0.0407488 -44474,3415:121:4,151.5,-42.5,0,0,-0.041477 -44475,3415:122:3,152,-42.5,0,0,-0.0421508 -44476,3415:122:4,152.5,-42.5,0,0,-0.0421508 -44477,3415:123:3,153,-42.5,0,0,-0.0419378 -44478,3415:123:4,153.5,-42.5,0,0,-0.0431431 -44479,3415:124:3,154,-42.5,0,0,-0.0464074 -44480,3415:124:4,154.5,-42.5,0,0,-0.0440679 -44481,3415:225:3,155,-42.5,0,0,-0.0415058 -44482,3415:225:4,155.5,-42.5,0,0,-0.0387496 -44483,3415:226:3,156,-42.5,0,0,-0.0397406 -44484,3415:226:4,156.5,-42.5,0,0,-0.0411255 -44485,3415:227:3,157,-42.5,0,0,-0.041563 -44486,3415:227:4,157.5,-42.5,0,0,-0.0415058 -44487,3415:228:3,158,-42.5,0,0,-0.0407677 -44488,3415:228:4,158.5,-42.5,0,0,-0.0403203 -44489,3415:229:3,159,-42.5,0,0,-0.0402832 -44490,3415:229:4,159.5,-42.5,0,0,-0.0419378 -44491,3416:120:3,160,-42.5,0,0,-0.0472196 -44492,3416:120:4,160.5,-42.5,0,0,-0.0509967 -44493,3416:121:3,161,-42.5,0,0,-0.0532251 -44494,3416:121:4,161.5,-42.5,0,0,-0.0554139 -44495,3416:122:3,162,-42.5,0,0,-0.0568014 -44496,3416:122:4,162.5,-42.5,0,0,-0.0567088 -44497,3416:123:3,163,-42.5,0,0,-0.0554656 -44498,3416:123:4,163.5,-42.5,0,0,-0.0535235 -44499,3416:124:3,164,-42.5,0,0,-0.0505253 -44500,3416:124:4,164.5,-42.5,0,0,-0.0472086 -44501,3416:225:3,165,-42.5,0,0,-0.0488204 -44502,3416:225:4,165.5,-42.5,0,0,-0.0551947 -44503,3416:226:3,166,-42.5,0,0,-0.0573481 -44504,3416:226:4,166.5,-42.5,0,0,-0.0562081 -44505,3416:227:3,167,-42.5,0,0,-0.0544535 -44506,3416:227:4,167.5,-42.5,0,0,-0.0534486 -44507,3416:228:3,168,-42.5,0,0,-0.0525728 -44508,3416:228:4,168.5,-42.5,0,0,-0.0508549 -44509,3416:229:3,169,-42.5,0,0,-0.0489677 -44510,3416:229:4,169.5,-42.5,0,0,-0.0478799 -44511,3417:120:3,170,-42.5,0,0,-0.0472306 -44512,3417:120:4,170.5,-42.5,0,0,-0.0465363 -44513,3417:121:3,171,-42.5,0,0,-0.0461508 -44514,3417:121:4,171.5,-42.5,0,0,-0.0463109 -44515,3417:122:3,172,-42.5,0,0,-0.0467305 -44516,3417:122:4,172.5,-42.5,0,0,-0.0471759 -44517,3417:123:3,173,-42.5,0,0,-0.0475264 -44518,3417:123:4,173.5,-42.5,0,0,-0.0485271 -44519,3417:124:3,174,-42.5,0,0,-0.050233 -44520,3417:124:4,174.5,-42.5,0,0,-0.04846 -44521,3417:225:3,175,-42.5,0,0,-0.0445587 -44522,3417:225:4,175.5,-42.5,0,0,-0.0394769 -44523,3417:226:3,176,-42.5,0,0,-0.0361332 -44524,3417:226:4,176.5,-42.5,0,0,-0.037379 -44525,3417:227:3,177,-42.5,0,0,-0.0378447 -44526,3417:227:4,177.5,-42.5,0,0,-0.0394589 -44527,3417:228:3,178,-42.5,0,0,-0.0423941 -44528,3417:228:4,178.5,-42.5,0,0,-0.043744 -44529,3417:229:3,179,-42.5,0,0,-0.0448578 -44530,3417:229:4,179.5,-42.5,0,0,-0.0456205 -44531,3418:120:3,180,-42.5,0,0,-0.046429 -44532,5418:120:1,-180,-42,0,0,-0.0437538 -44533,5417:229:2,-179.5,-42,0,0,-0.0436834 -44534,5417:229:1,-179,-42,0,0,-0.0442208 -44535,5417:228:2,-178.5,-42,0,0,-0.0448269 -44536,5417:228:1,-178,-42,0,0,-0.0455048 -44537,5417:227:2,-177.5,-42,0,0,-0.0468064 -44538,5417:227:1,-177,-42,0,0,-0.0488656 -44539,5417:226:2,-176.5,-42,0,0,-0.0497228 -44540,5417:226:1,-176,-42,0,0,-0.0500119 -44541,5417:225:2,-175.5,-42,0,0,-0.0515086 -44542,5417:225:1,-175,-42,0,0,-0.0535482 -44543,5417:124:2,-174.5,-42,0,0,-0.0553753 -44544,5417:124:1,-174,-42,0,0,-0.0588969 -44545,5417:123:2,-173.5,-42,0,0,-0.0581849 -44546,5417:123:1,-173,-42,0,0,-0.0547844 -44547,5417:122:2,-172.5,-42,0,0,-0.0532501 -44548,5417:122:1,-172,-42,0,0,-0.0525728 -44549,5417:121:2,-171.5,-42,0,0,-0.0511865 -44550,5417:121:1,-171,-42,0,0,-0.0478799 -44551,5417:120:2,-170.5,-42,0,0,-0.0452636 -44552,5417:120:1,-170,-42,0,0,-0.0455681 -44553,5416:229:2,-169.5,-42,0,0,-0.0446617 -44554,5416:229:1,-169,-42,0,0,-0.0448477 -44555,5416:228:2,-168.5,-42,0,0,-0.0520742 -44556,5416:228:1,-168,-42,0,0,-0.0579814 -44557,5416:227:2,-167.5,-42,0,0,-0.0580087 -44558,5416:227:1,-167,-42,0,0,-0.0584033 -44559,5416:226:2,-166.5,-42,0,0,-0.0594233 -44560,5416:226:1,-166,-42,0,0,-0.0599821 -44561,5416:225:2,-165.5,-42,0,0,-0.0603347 -44562,5416:225:1,-165,-42,0,0,-0.0603347 -44563,5416:124:2,-164.5,-42,0,0,-0.0596602 -44564,5416:124:1,-164,-42,0,0,-0.0572008 -44565,5416:123:2,-163.5,-42,0,0,-0.0525486 -44566,5416:123:1,-163,-42,0,0,-0.0481578 -44567,5416:122:2,-162.5,-42,0,0,-0.0476588 -44568,5416:122:1,-162,-42,0,0,-0.050233 -44569,5416:121:2,-161.5,-42,0,0,-0.056405 -44570,5416:121:1,-161,-42,0,0,-0.0597438 -44571,5416:120:2,-160.5,-42,0,0,-0.0605469 -44572,5416:120:1,-160,-42,0,0,-0.0601792 -44573,5415:229:2,-159.5,-42,0,0,-0.0595346 -44574,5415:229:1,-159,-42,0,0,-0.0593257 -44575,5415:228:2,-158.5,-42,0,0,-0.0611458 -44576,5415:228:1,-158,-42,0,0,-0.0653952 -44577,5415:227:2,-157.5,-42,0,0,-0.0696623 -44578,5415:227:1,-157,-42,0,0,-0.0731783 -44579,5415:226:2,-156.5,-42,0,0,-0.0760293 -44580,5415:226:1,-156,-42,0,0,-0.0775271 -44581,5415:225:2,-155.5,-42,0,0,-0.0768839 -44582,5415:225:1,-155,-42,0,0,-0.0749531 -44583,5415:124:2,-154.5,-42,0,0,-0.0771036 -44584,5415:124:1,-154,-42,0,0,-0.0794157 -44585,5415:123:2,-153.5,-42,0,0,-0.0823509 -44586,5415:123:1,-153,-42,0,0,-0.0869966 -44587,5415:122:2,-152.5,-42,0,0,-0.0903882 -44588,5415:122:1,-152,-42,0,0,-0.0881752 -44589,5415:121:2,-151.5,-42,0,0,-0.086601 -44590,5415:121:1,-151,-42,0,0,-0.0850565 -44591,5415:120:2,-150.5,-42,0,0,-0.084346 -44592,5415:120:1,-150,-42,0,0,-0.0840438 -44593,5414:229:2,-149.5,-42,0,0,-0.0837623 -44594,5414:229:1,-149,-42,0,0,-0.083004 -44595,5414:228:2,-148.5,-42,0,0,-0.080484 -44596,5414:228:1,-148,-42,0,0,-0.0763189 -44597,5414:227:2,-147.5,-42,0,0,-0.0722646 -44598,5414:227:1,-147,-42,0,0,-0.0710597 -44599,5414:226:2,-146.5,-42,0,0,-0.0728144 -44600,5414:226:1,-146,-42,0,0,-0.0756689 -44601,5414:225:2,-145.5,-42,0,0,-0.0782693 -44602,5414:225:1,-145,-42,0,0,-0.0791129 -44603,5414:124:2,-144.5,-42,0,0,-0.0784933 -44604,5414:124:1,-144,-42,0,0,-0.078046 -44605,5414:123:2,-143.5,-42,0,0,-0.0790375 -44606,5414:123:1,-143,-42,0,0,-0.0808307 -44607,5414:122:2,-142.5,-42,0,0,-0.0813533 -44608,5414:122:1,-142,-42,0,0,-0.0778415 -44609,5414:121:2,-141.5,-42,0,0,-0.0721618 -44610,5414:121:1,-141,-42,0,0,-0.0670644 -44611,5414:120:2,-140.5,-42,0,0,-0.0652722 -44612,5414:120:1,-140,-42,0,0,-0.0669223 -44613,5413:229:2,-139.5,-42,0,0,-0.0698767 -44614,5413:229:1,-139,-42,0,0,-0.0737707 -44615,5413:228:2,-138.5,-42,0,0,-0.0775457 -44616,5413:228:1,-138,-42,0,0,-0.0797384 -44617,5413:227:2,-137.5,-42,0,0,-0.0791509 -44618,5413:227:1,-137,-42,0,0,-0.077214 -44619,5413:226:2,-136.5,-42,0,0,-0.0775457 -44620,5413:226:1,-136,-42,0,0,-0.0805221 -44621,5413:225:2,-135.5,-42,0,0,-0.0827462 -44622,5413:225:1,-135,-42,0,0,-0.0797761 -44623,5413:124:2,-134.5,-42,0,0,-0.0753098 -44624,5413:124:1,-134,-42,0,0,-0.0743505 -44625,5413:123:2,-133.5,-42,0,0,-0.0742445 -44626,5413:123:1,-133,-42,0,0,-0.074086 -44627,5413:122:2,-132.5,-42,0,0,-0.0725563 -44628,5413:122:1,-132,-42,0,0,-0.0702741 -44629,5413:121:2,-131.5,-42,0,0,-0.0708921 -44630,5413:121:1,-131,-42,0,0,-0.0724703 -44631,5413:120:2,-130.5,-42,0,0,-0.0733516 -44632,5413:120:1,-130,-42,0,0,-0.0713297 -44633,5412:229:2,-129.5,-42,0,0,-0.0685035 -44634,5412:229:1,-129,-42,0,0,-0.0681649 -44635,5412:228:2,-128.5,-42,0,0,-0.0691703 -44636,5412:228:1,-128,-42,0,0,-0.0704737 -44637,5412:227:2,-127.5,-42,0,0,-0.0710766 -44638,5412:227:1,-127,-42,0,0,-0.0686656 -44639,5412:226:2,-126.5,-42,0,0,-0.0612605 -44640,5412:226:1,-126,-42,0,0,-0.0605326 -44641,5412:225:2,-125.5,-42,0,0,-0.063695 -44642,5412:225:1,-125,-42,0,0,-0.0645545 -44643,5412:124:2,-124.5,-42,0,0,-0.0653492 -44644,5412:124:1,-124,-42,0,0,-0.0658275 -44645,5412:123:2,-123.5,-42,0,0,-0.0643117 -44646,5412:123:1,-123,-42,0,0,-0.0568281 -44647,5412:122:2,-122.5,-42,0,0,-0.0520864 -44648,5412:122:1,-122,-42,0,0,-0.0513413 -44649,5412:121:2,-121.5,-42,0,0,-0.051127 -44650,5412:121:1,-121,-42,0,0,-0.0507959 -44651,5412:120:2,-120.5,-42,0,0,-0.0508311 -44652,5412:120:1,-120,-42,0,0,-0.0512104 -44653,5411:229:2,-119.5,-42,0,0,-0.0509613 -44654,5411:229:1,-119,-42,0,0,-0.0497922 -44655,5411:228:2,-118.5,-42,0,0,-0.0490814 -44656,5411:228:1,-118,-42,0,0,-0.0495963 -44657,5411:227:2,-117.5,-42,0,0,-0.0513056 -44658,5411:227:1,-117,-42,0,0,-0.0533739 -44659,5411:226:2,-116.5,-42,0,0,-0.0547081 -44660,5411:226:1,-116,-42,0,0,-0.0539361 -44661,5411:225:2,-115.5,-42,0,0,-0.0519897 -44662,5411:225:1,-115,-42,0,0,-0.0502914 -44663,5411:124:2,-114.5,-42,0,0,-0.0496191 -44664,5411:124:1,-114,-42,0,0,-0.048719 -44665,5411:123:2,-113.5,-42,0,0,-0.0473291 -44666,5411:123:1,-113,-42,0,0,-0.0460231 -44667,5411:122:2,-112.5,-42,0,0,-0.0454837 -44668,5411:122:1,-112,-42,0,0,-0.045853 -44669,5411:121:2,-111.5,-42,0,0,-0.0462789 -44670,5411:121:1,-111,-42,0,0,-0.0457261 -44671,5411:120:2,-110.5,-42,0,0,-0.0444149 -44672,5411:120:1,-110,-42,0,0,-0.043764 -44673,5410:229:2,-109.5,-42,0,0,-0.0438753 -44674,5410:229:1,-109,-42,0,0,-0.0441595 -44675,5410:228:2,-108.5,-42,0,0,-0.0444662 -44676,5410:228:1,-108,-42,0,0,-0.0442513 -44677,5410:227:2,-107.5,-42,0,0,-0.0432625 -44678,5410:227:1,-107,-42,0,0,-0.042112 -44679,5410:226:2,-106.5,-42,0,0,-0.0423452 -44680,5410:226:1,-106,-42,0,0,-0.0430734 -44681,5410:225:2,-105.5,-42,0,0,-0.0424528 -44682,5410:225:1,-105,-42,0,0,-0.0414103 -44683,5410:124:2,-104.5,-42,0,0,-0.0410877 -44684,5410:124:1,-104,-42,0,0,-0.0415534 -44685,5410:123:2,-103.5,-42,0,0,-0.0423842 -44686,5410:123:1,-103,-42,0,0,-0.0430934 -44687,5410:122:2,-102.5,-42,0,0,-0.0432525 -44688,5410:122:1,-102,-42,0,0,-0.0425702 -44689,5410:121:2,-101.5,-42,0,0,-0.0413342 -44690,5410:121:1,-101,-42,0,0,-0.0401721 -44691,5410:120:2,-100.5,-42,0,0,-0.0397682 -44692,5410:120:1,-100,-42,0,0,-0.0400155 -44693,5409:229:2,-99.5,-42,0,0,-0.0404129 -44694,5409:229:1,-99,-42,0,0,-0.0406366 -44695,5409:228:2,-98.5,-42,0,0,-0.0405247 -44696,5409:228:1,-98,-42,0,0,-0.0402183 -44697,5409:227:2,-97.5,-42,0,0,-0.0393774 -44698,5409:227:1,-97,-42,0,0,-0.0389725 -44699,5409:226:2,-96.5,-42,0,0,-0.0392509 -44700,5409:226:1,-96,-42,0,0,-0.0395586 -44701,5409:225:2,-95.5,-42,0,0,-0.0394951 -44702,5409:225:1,-95,-42,0,0,-0.0391071 -44703,5409:124:2,-94.5,-42,0,0,-0.0392688 -44704,5409:124:1,-94,-42,0,0,-0.0401445 -44705,5409:123:2,-93.5,-42,0,0,-0.0404222 -44706,5409:123:1,-93,-42,0,0,-0.0402183 -44707,5409:122:2,-92.5,-42,0,0,-0.040034 -44708,5409:122:1,-92,-42,0,0,-0.0393592 -44709,5409:121:2,-91.5,-42,0,0,-0.0385633 -44710,5409:121:1,-91,-42,0,0,-0.0384749 -44711,5409:120:2,-90.5,-42,0,0,-0.039224 -44712,5409:120:1,-90,-42,0,0,-0.0398505 -44713,5408:229:2,-89.5,-42,0,0,-0.0398779 -44714,5408:229:1,-89,-42,0,0,-0.0396132 -44715,5408:228:2,-88.5,-42,0,0,-0.0394135 -44716,5408:228:1,-88,-42,0,0,-0.0392961 -44717,5408:227:2,-87.5,-42,0,0,-0.039098 -44718,5408:227:1,-87,-42,0,0,-0.038723 -44719,5408:226:2,-86.5,-42,0,0,-0.038334 -44720,5408:226:1,-86,-42,0,0,-0.0381148 -44721,5408:225:2,-85.5,-42,0,0,-0.0380884 -44722,5408:225:1,-85,-42,0,0,-0.0380711 -44723,5408:124:2,-84.5,-42,0,0,-0.0378535 -44724,5408:124:1,-84,-42,0,0,-0.0375079 -44725,5408:123:2,-83.5,-42,0,0,-0.0372167 -44726,5408:123:1,-83,-42,0,0,-0.037021 -44727,5408:122:2,-82.5,-42,0,0,-0.0368942 -44728,5408:122:1,-82,-42,0,0,-0.0368771 -44729,5408:121:2,-81.5,-42,0,0,-0.0369194 -44730,5408:121:1,-81,-42,0,0,-0.0391789 -44731,5408:120:2,-80.5,-42,0,0,-0.0404781 -44732,5408:120:1,-80,-42,0,0,-0.0398047 -44733,5407:229:2,-79.5,-42,0,0,-0.0387941 -44734,5407:229:1,-79,-42,0,0,-0.0378273 -44735,5407:228:2,-78.5,-42,0,0,-0.037862 -44736,5407:228:1,-78,-42,0,0,-0.0400983 -44737,5407:227:2,-77.5,-42,0,0,-0.0419572 -44738,5407:227:1,-77,-42,0,0,-0.0423747 -44739,5407:226:2,-76.5,-42,0,0,-0.0452219 -44740,5407:226:1,-76,-42,0,0,-0.0515923 -44741,5407:225:2,-75.5,-42,0,0,-0.0533618 -44742,5407:225:1,-75,-42,0,0,-0.0611029 -44743,5406:228:2,-68.5,-42,0,0,-0.062671 -44744,5406:228:1,-68,-42,0,0,-0.0522682 -44745,5406:227:2,-67.5,-42,0,0,-0.0440883 -44746,5406:227:1,-67,-42,0,0,-0.0398961 -44747,5406:226:2,-66.5,-42,0,0,-0.0379926 -44748,5406:226:1,-66,-42,0,0,-0.0374476 -44749,5406:225:2,-65.5,-42,0,0,-0.0372764 -44750,5406:225:1,-65,-42,0,0,-0.0374476 -44751,5406:124:2,-64.5,-42,0,0,-0.0376456 -44752,5406:124:1,-64,-42,0,0,-0.0385191 -44753,5406:123:2,-63.5,-42,0,0,-0.0394951 -44754,5406:123:1,-63,-42,0,0,-0.0389905 -44755,5406:122:2,-62.5,-42,0,0,-0.0392509 -44756,5406:122:1,-62,-42,0,0,-0.0400615 -44757,5406:121:2,-61.5,-42,0,0,-0.0399972 -44758,5406:121:1,-61,-42,0,0,-0.0467955 -44759,5406:120:2,-60.5,-42,0,0,-0.0584304 -44760,5405:228:1,-58,-42,0,0,-0.0655495 -44761,5405:227:2,-57.5,-42,0,0,-0.0473836 -44762,5405:227:1,-57,-42,0,0,-0.0394315 -44763,5405:226:2,-56.5,-42,0,0,-0.0363157 -44764,5405:226:1,-56,-42,0,0,-0.0345094 -44765,5405:225:2,-55.5,-42,0,0,-0.032976 -44766,5405:225:1,-55,-42,0,0,-0.0313482 -44767,5405:124:2,-54.5,-42,0,0,-0.0292722 -44768,5405:124:1,-54,-42,0,0,-0.0275866 -44769,5405:123:2,-53.5,-42,0,0,-0.0269431 -44770,5405:123:1,-53,-42,0,0,-0.0270043 -44771,5405:122:2,-52.5,-42,0,0,-0.0273683 -44772,5405:122:1,-52,-42,0,0,-0.0276933 -44773,5405:121:2,-51.5,-42,0,0,-0.0278384 -44774,5405:121:1,-51,-42,0,0,-0.0277311 -44775,5405:120:2,-50.5,-42,0,0,-0.0273933 -44776,5405:120:1,-50,-42,0,0,-0.0263867 -44777,5404:229:2,-49.5,-42,0,0,-0.0244029 -44778,5404:229:1,-49,-42,0,0,-0.0223988 -44779,5404:228:2,-48.5,-42,0,0,-0.021953 -44780,5404:228:1,-48,-42,0,0,-0.0217213 -44781,5404:227:2,-47.5,-42,0,0,-0.0208192 -44782,5404:227:1,-47,-42,0,0,-0.0195767 -44783,5404:226:2,-46.5,-42,0,0,-0.0193444 -44784,5404:226:1,-46,-42,0,0,-0.0193487 -44785,5404:225:2,-45.5,-42,0,0,-0.0196164 -44786,5404:225:1,-45,-42,0,0,-0.0201269 -44787,5404:124:2,-44.5,-42,0,0,-0.0204884 -44788,5404:124:1,-44,-42,0,0,-0.0206741 -44789,5404:123:2,-43.5,-42,0,0,-0.0208803 -44790,5404:123:1,-43,-42,0,0,-0.0208897 -44791,5404:122:2,-42.5,-42,0,0,-0.0204101 -44792,5404:122:1,-42,-42,0,0,-0.0195238 -44793,5404:121:2,-41.5,-42,0,0,-0.0177071 -44794,5404:121:1,-41,-42,0,0,-0.0167321 -44795,5404:120:2,-40.5,-42,0,0,-0.0180772 -44796,5404:120:1,-40,-42,0,0,-0.0180772 -44797,5403:229:2,-39.5,-42,0,0,-0.0180691 -44798,5403:229:1,-39,-42,0,0,-0.0180326 -44799,5403:228:2,-38.5,-42,0,0,-0.0180895 -44800,5403:228:1,-38,-42,0,0,-0.0178631 -44801,5403:227:2,-37.5,-42,0,0,-0.0168112 -44802,5403:227:1,-37,-42,0,0,-0.0158864 -44803,5403:226:2,-36.5,-42,0,0,-0.0163164 -44804,5403:226:1,-36,-42,0,0,-0.0171971 -44805,5403:225:2,-35.5,-42,0,0,-0.0167547 -44806,5403:225:1,-35,-42,0,0,-0.0161452 -44807,5403:124:2,-34.5,-42,0,0,-0.0154851 -44808,5403:124:1,-34,-42,0,0,-0.0150907 -44809,5403:123:2,-33.5,-42,0,0,-0.0134971 -44810,5403:123:1,-33,-42,0,0,-0.0118625 -44811,5403:122:2,-32.5,-42,0,0,-0.0124552 -44812,5403:122:1,-32,-42,0,0,-0.0129816 -44813,5403:121:2,-31.5,-42,0,0,-0.0128314 -44814,5403:121:1,-31,-42,0,0,-0.0133499 -44815,5403:120:2,-30.5,-42,0,0,-0.0134791 -44816,5403:120:1,-30,-42,0,0,-0.0136859 -44817,5402:229:2,-29.5,-42,0,0,-0.0146835 -44818,5402:229:1,-29,-42,0,0,-0.0166571 -44819,5402:228:2,-28.5,-42,0,0,-0.0185052 -44820,5402:228:1,-28,-42,0,0,-0.0190376 -44821,5402:227:2,-27.5,-42,0,0,-0.0177829 -44822,5402:227:1,-27,-42,0,0,-0.0173758 -44823,5402:226:2,-26.5,-42,0,0,-0.0177829 -44824,5402:226:1,-26,-42,0,0,-0.0175485 -44825,5402:225:2,-25.5,-42,0,0,-0.0170662 -44826,5402:225:1,-25,-42,0,0,-0.0174071 -44827,5402:124:2,-24.5,-42,0,0,-0.0183683 -44828,5402:124:1,-24,-42,0,0,-0.0183932 -44829,5402:123:2,-23.5,-42,0,0,-0.017759 -44830,5402:123:1,-23,-42,0,0,-0.0172087 -44831,5402:122:2,-22.5,-42,0,0,-0.0171971 -44832,5402:122:1,-22,-42,0,0,-0.0172396 -44833,5402:121:2,-21.5,-42,0,0,-0.0166946 -44834,5402:121:1,-21,-42,0,0,-0.0164267 -44835,5402:120:2,-20.5,-42,0,0,-0.0167961 -44836,5402:120:1,-20,-42,0,0,-0.0166833 -44837,5401:229:2,-19.5,-42,0,0,-0.0157126 -44838,5401:229:1,-19,-42,0,0,-0.0155025 -44839,5401:228:2,-18.5,-42,0,0,-0.0161234 -44840,5401:228:1,-18,-42,0,0,-0.0189521 -44841,5401:227:2,-17.5,-42,0,0,-0.0204056 -44842,5401:227:1,-17,-42,0,0,-0.0205394 -44843,5401:226:2,-16.5,-42,0,0,-0.0192921 -44844,5401:226:1,-16,-42,0,0,-0.0180976 -44845,5401:225:2,-15.5,-42,0,0,-0.0178189 -44846,5401:225:1,-15,-42,0,0,-0.017851 -44847,5401:124:2,-14.5,-42,0,0,-0.0175013 -44848,5401:124:1,-14,-42,0,0,-0.0171701 -44849,5401:123:2,-13.5,-42,0,0,-0.0178952 -44850,5401:123:1,-13,-42,0,0,-0.0197629 -44851,5401:122:2,-12.5,-42,0,0,-0.021565 -44852,5401:122:1,-12,-42,0,0,-0.0205626 -44853,5401:121:2,-11.5,-42,0,0,-0.0186055 -44854,5401:121:1,-11,-42,0,0,-0.0168718 -44855,5401:120:2,-10.5,-42,0,0,-0.0159973 -44856,5401:120:1,-10,-42,0,0,-0.0145101 -44857,5400:229:2,-9.5,-42,0,0,-0.012886 -44858,5400:229:1,-9,-42,0,0,-0.0120712 -44859,5400:228:2,-8.5,-42,0,0,-0.0121688 -44860,5400:228:1,-8,-42,0,0,-0.0121961 -44861,5400:227:2,-7.5,-42,0,0,-0.0120712 -44862,5400:227:1,-7,-42,0,0,-0.0119878 -44863,5400:226:2,-6.5,-42,0,0,-0.0119157 -44864,5400:226:1,-6,-42,0,0,-0.0118386 -44865,5400:225:2,-5.5,-42,0,0,-0.0113922 -44866,5400:225:1,-5,-42,0,0,-0.0104139 -44867,5400:124:2,-4.5,-42,0,0,-0.0100508 -44868,5400:124:1,-4,-42,0,0,-0.0102113 -44869,5400:123:2,-3.5,-42,0,0,-0.0108434 -44870,5400:123:1,-3,-42,0,0,-0.0117307 -44871,5400:122:2,-2.5,-42,0,0,-0.0113693 -44872,5400:122:1,-2,-42,0,0,-0.0104465 -44873,5400:121:2,-1.5,-42,0,0,-0.0104419 -44874,5400:121:1,-1,-42,0,0,-0.0104558 -44875,5400:120:2,-0.5,-42,0,0,-0.0102045 -44876,3400:120:2,0,-42,0,0,-0.00988838 -44877,3400:120:2,0.5,-42,0,0,-0.0097417 -44878,3400:121:1,1,-42,0,0,-0.00937715 -44879,3400:121:2,1.5,-42,0,0,-0.00918059 -44880,3400:122:1,2,-42,0,0,-0.00958859 -44881,3400:122:2,2.5,-42,0,0,-0.00981587 -44882,3400:123:1,3,-42,0,0,-0.00983119 -44883,3400:123:2,3.5,-42,0,0,-0.00973301 -44884,3400:124:1,4,-42,0,0,-0.00952257 -44885,3400:124:2,4.5,-42,0,0,-0.0104348 -44886,3400:225:1,5,-42,0,0,-0.0105709 -44887,3400:225:2,5.5,-42,0,0,-0.0126263 -44888,3400:226:1,6,-42,0,0,-0.0150637 -44889,3400:226:2,6.5,-42,0,0,-0.0151314 -44890,3400:227:1,7,-42,0,0,-0.0145003 -44891,3400:227:2,7.5,-42,0,0,-0.0138649 -44892,3400:228:1,8,-42,0,0,-0.0131659 -44893,3400:228:2,8.5,-42,0,0,-0.012483 -44894,3400:229:1,9,-42,0,0,-0.0113973 -44895,3400:229:2,9.5,-42,0,0,-0.0108434 -44896,3401:120:1,10,-42,0,0,-0.0127883 -44897,3401:120:2,10.5,-42,0,0,-0.0131806 -44898,3401:121:1,11,-42,0,0,-0.0131012 -44899,3401:121:2,11.5,-42,0,0,-0.0131836 -44900,3401:122:1,12,-42,0,0,-0.0125362 -44901,3401:122:2,12.5,-42,0,0,-0.0111281 -44902,3401:123:1,13,-42,0,0,-0.009495 -44903,3401:123:2,13.5,-42,0,0,-0.00942116 -44904,3401:124:1,14,-42,0,0,-0.0105238 -44905,3401:124:2,14.5,-42,0,0,-0.0107517 -44906,3401:225:1,15,-42,0,0,-0.0103329 -44907,3401:225:2,15.5,-42,0,0,-0.0101025 -44908,3401:226:1,16,-42,0,0,-0.00989505 -44909,3401:226:2,16.5,-42,0,0,-0.00960787 -44910,3401:227:1,17,-42,0,0,-0.00980271 -44911,3401:227:2,17.5,-42,0,0,-0.01008 -44912,3401:228:1,18,-42,0,0,-0.00999045 -44913,3401:228:2,18.5,-42,0,0,-0.00956727 -44914,3401:229:1,19,-42,0,0,-0.00932706 -44915,3401:229:2,19.5,-42,0,0,-0.00969835 -44916,3402:120:1,20,-42,0,0,-0.0104956 -44917,3402:120:2,20.5,-42,0,0,-0.0107374 -44918,3402:121:1,21,-42,0,0,-0.010771 -44919,3402:121:2,21.5,-42,0,0,-0.0102296 -44920,3402:122:1,22,-42,0,0,-0.00948654 -44921,3402:122:2,22.5,-42,0,0,-0.00933747 -44922,3402:123:1,23,-42,0,0,-0.00942328 -44923,3402:123:2,23.5,-42,0,0,-0.00976348 -44924,3402:124:1,24,-42,0,0,-0.0111057 -44925,3402:124:2,24.5,-42,0,0,-0.0121253 -44926,3402:225:1,25,-42,0,0,-0.0122179 -44927,3402:225:2,25.5,-42,0,0,-0.0121388 -44928,3402:226:1,26,-42,0,0,-0.0120739 -44929,3402:226:2,26.5,-42,0,0,-0.011937 -44930,3402:227:1,27,-42,0,0,-0.0124051 -44931,3402:227:2,27.5,-42,0,0,-0.0123386 -44932,3402:228:1,28,-42,0,0,-0.0109603 -44933,3402:228:2,28.5,-42,0,0,-0.00993928 -44934,3402:229:1,29,-42,0,0,-0.0100396 -44935,3402:229:2,29.5,-42,0,0,-0.00990388 -44936,3403:120:1,30,-42,0,0,-0.0127798 -44937,3403:120:2,30.5,-42,0,0,-0.0157373 -44938,3403:121:1,31,-42,0,0,-0.0165118 -44939,3403:121:2,31.5,-42,0,0,-0.0158045 -44940,3403:122:1,32,-42,0,0,-0.0145687 -44941,3403:122:2,32.5,-42,0,0,-0.0134429 -44942,3403:123:1,33,-42,0,0,-0.0125784 -44943,3403:123:2,33.5,-42,0,0,-0.0119691 -44944,3403:124:1,34,-42,0,0,-0.0117464 -44945,3403:124:2,34.5,-42,0,0,-0.0116132 -44946,3403:225:1,35,-42,0,0,-0.0115537 -44947,3403:225:2,35.5,-42,0,0,-0.0117885 -44948,3403:226:1,36,-42,0,0,-0.0123029 -44949,3403:226:2,36.5,-42,0,0,-0.0122535 -44950,3403:227:1,37,-42,0,0,-0.0125558 -44951,3403:227:2,37.5,-42,0,0,-0.0127626 -44952,3403:228:1,38,-42,0,0,-0.013034 -44953,3403:228:2,38.5,-42,0,0,-0.0122726 -44954,3403:229:1,39,-42,0,0,-0.0118837 -44955,3403:229:2,39.5,-42,0,0,-0.0116757 -44956,3404:120:1,40,-42,0,0,-0.0120604 -44957,3404:120:2,40.5,-42,0,0,-0.012394 -44958,3404:121:1,41,-42,0,0,-0.0119985 -44959,3404:121:2,41.5,-42,0,0,-0.0114279 -44960,3404:122:1,42,-42,0,0,-0.0116262 -44961,3404:122:2,42.5,-42,0,0,-0.0122151 -44962,3404:123:1,43,-42,0,0,-0.012394 -44963,3404:123:2,43.5,-42,0,0,-0.0124496 -44964,3404:124:1,44,-42,0,0,-0.0126376 -44965,3404:124:2,44.5,-42,0,0,-0.0130427 -44966,3404:225:1,45,-42,0,0,-0.0135973 -44967,3404:225:2,45.5,-42,0,0,-0.014021 -44968,3404:226:1,46,-42,0,0,-0.0141061 -44969,3404:226:2,46.5,-42,0,0,-0.0138618 -44970,3404:227:1,47,-42,0,0,-0.0133589 -44971,3404:227:2,47.5,-42,0,0,-0.0127455 -44972,3404:228:1,48,-42,0,0,-0.0128774 -44973,3404:228:2,48.5,-42,0,0,-0.0139427 -44974,3404:229:1,49,-42,0,0,-0.014371 -44975,3404:229:2,49.5,-42,0,0,-0.0139771 -44976,3405:120:1,50,-42,0,0,-0.0136492 -44977,3405:120:2,50.5,-42,0,0,-0.0136614 -44978,3405:121:1,51,-42,0,0,-0.0136736 -44979,3405:121:2,51.5,-42,0,0,-0.0136583 -44980,3405:122:1,52,-42,0,0,-0.0137813 -44981,3405:122:2,52.5,-42,0,0,-0.013924 -44982,3405:123:1,53,-42,0,0,-0.0138091 -44983,3405:123:2,53.5,-42,0,0,-0.0135123 -44984,3405:124:1,54,-42,0,0,-0.0131806 -44985,3405:124:2,54.5,-42,0,0,-0.0128918 -44986,3405:225:1,55,-42,0,0,-0.0127113 -44987,3405:225:2,55.5,-42,0,0,-0.0126772 -44988,3405:226:1,56,-42,0,0,-0.0134881 -44989,3405:226:2,56.5,-42,0,0,-0.0143066 -44990,3405:227:1,57,-42,0,0,-0.0143999 -44991,3405:227:2,57.5,-42,0,0,-0.0140935 -44992,3405:228:1,58,-42,0,0,-0.0135214 -44993,3405:228:2,58.5,-42,0,0,-0.012967 -44994,3405:229:1,59,-42,0,0,-0.0130223 -44995,3405:229:2,59.5,-42,0,0,-0.0140085 -44996,3406:120:1,60,-42,0,0,-0.0147892 -44997,3406:120:2,60.5,-42,0,0,-0.0149392 -44998,3406:121:1,61,-42,0,0,-0.0147594 -44999,3406:121:2,61.5,-42,0,0,-0.0145393 -45000,3406:122:1,62,-42,0,0,-0.0143355 -45001,3406:122:2,62.5,-42,0,0,-0.014125 -45002,3406:123:1,63,-42,0,0,-0.013974 -45003,3406:123:2,63.5,-42,0,0,-0.0140053 -45004,3406:124:1,64,-42,0,0,-0.0142045 -45005,3406:124:2,64.5,-42,0,0,-0.0144193 -45006,3406:225:1,65,-42,0,0,-0.0145231 -45007,3406:225:2,65.5,-42,0,0,-0.0144517 -45008,3406:226:1,66,-42,0,0,-0.0142746 -45009,3406:226:2,66.5,-42,0,0,-0.0141188 -45010,3406:227:1,67,-42,0,0,-0.0139802 -45011,3406:227:2,67.5,-42,0,0,-0.0137658 -45012,3406:228:1,68,-42,0,0,-0.0134309 -45013,3406:228:2,68.5,-42,0,0,-0.012837 -45014,3406:229:1,69,-42,0,0,-0.0125026 -45015,3406:229:2,69.5,-42,0,0,-0.0122398 -45016,3407:120:1,70,-42,0,0,-0.0118123 -45017,3407:120:2,70.5,-42,0,0,-0.011515 -45018,3407:121:1,71,-42,0,0,-0.0114483 -45019,3407:121:2,71.5,-42,0,0,-0.0115795 -45020,3407:122:1,72,-42,0,0,-0.0117359 -45021,3407:122:2,72.5,-42,0,0,-0.0118784 -45022,3407:123:2,73.5,-42,0,0,-0.0120389 -45023,3407:124:1,74,-42,0,0,-0.0120955 -45024,3407:124:2,74.5,-42,0,0,-0.0120066 -45025,3407:225:1,75,-42,0,0,-0.0118281 -45026,3407:225:2,75.5,-42,0,0,-0.0116601 -45027,3407:226:1,76,-42,0,0,-0.0111256 -45028,3407:226:2,76.5,-42,0,0,-0.010824 -45029,3407:227:1,77,-42,0,0,-0.00977871 -45030,3407:227:2,77.5,-42,0,0,-0.00917241 -45031,3407:228:1,78,-42,0,0,-0.00907878 -45032,3407:228:2,78.5,-42,0,0,-0.0104093 -45033,3407:229:1,79,-42,0,0,-0.0134459 -45034,3407:229:2,79.5,-42,0,0,-0.0166159 -45035,3408:120:1,80,-42,0,0,-0.0180205 -45036,3408:120:2,80.5,-42,0,0,-0.0198297 -45037,3408:121:1,81,-42,0,0,-0.020268 -45038,3408:121:2,81.5,-42,0,0,-0.0197895 -45039,3408:122:1,82,-42,0,0,-0.0177031 -45040,3408:122:2,82.5,-42,0,0,-0.0174423 -45041,3408:123:1,83,-42,0,0,-0.0194186 -45042,3408:123:2,83.5,-42,0,0,-0.0204515 -45043,3408:124:1,84,-42,0,0,-0.0204746 -45044,3408:124:2,84.5,-42,0,0,-0.0223028 -45045,3408:225:1,85,-42,0,0,-0.0229624 -45046,3408:225:2,85.5,-42,0,0,-0.0215991 -45047,3408:226:1,86,-42,0,0,-0.0204655 -45048,3408:226:2,86.5,-42,0,0,-0.0195943 -45049,3408:227:1,87,-42,0,0,-0.0192228 -45050,3408:227:2,87.5,-42,0,0,-0.019785 -45051,3408:228:1,88,-42,0,0,-0.0208239 -45052,3408:228:2,88.5,-42,0,0,-0.0217851 -45053,3408:229:1,89,-42,0,0,-0.0222524 -45054,3408:229:2,89.5,-42,0,0,-0.0244471 -45055,3409:120:1,90,-42,0,0,-0.0263628 -45056,3409:120:2,90.5,-42,0,0,-0.0275805 -45057,3409:121:1,91,-42,0,0,-0.0285492 -45058,3409:121:2,91.5,-42,0,0,-0.0263389 -45059,3409:122:1,92,-42,0,0,-0.0230874 -45060,3409:122:2,92.5,-42,0,0,-0.0210506 -45061,3409:123:1,93,-42,0,0,-0.0195459 -45062,3409:123:2,93.5,-42,0,0,-0.0185011 -45063,3409:124:1,94,-42,0,0,-0.0182406 -45064,3409:124:2,94.5,-42,0,0,-0.0184553 -45065,3409:225:1,95,-42,0,0,-0.0191149 -45066,3409:225:2,95.5,-42,0,0,-0.0196784 -45067,3409:226:1,96,-42,0,0,-0.0198566 -45068,3409:226:2,96.5,-42,0,0,-0.0198969 -45069,3409:227:1,97,-42,0,0,-0.0201223 -45070,3409:227:2,97.5,-42,0,0,-0.0209228 -45071,3409:228:1,98,-42,0,0,-0.0218 -45072,3409:228:2,98.5,-42,0,0,-0.0215942 -45073,3409:229:1,99,-42,0,0,-0.0211362 -45074,3409:229:2,99.5,-42,0,0,-0.02047 -45075,3410:120:1,100,-42,0,0,-0.019559 -45076,3410:120:2,100.5,-42,0,0,-0.0188584 -45077,3410:121:1,101,-42,0,0,-0.0179881 -45078,3410:121:2,101.5,-42,0,0,-0.0176316 -45079,3410:122:1,102,-42,0,0,-0.0176792 -45080,3410:122:2,102.5,-42,0,0,-0.0177909 -45081,3410:123:1,103,-42,0,0,-0.0178792 -45082,3410:123:2,103.5,-42,0,0,-0.0177669 -45083,3410:124:1,104,-42,0,0,-0.0175288 -45084,3410:124:2,104.5,-42,0,0,-0.0173797 -45085,3410:225:1,105,-42,0,0,-0.0170662 -45086,3410:225:2,105.5,-42,0,0,-0.0166459 -45087,3410:226:1,106,-42,0,0,-0.0160332 -45088,3410:226:2,106.5,-42,0,0,-0.0158721 -45089,3410:227:1,107,-42,0,0,-0.0166272 -45090,3410:227:2,107.5,-42,0,0,-0.0171431 -45091,3410:228:1,108,-42,0,0,-0.0174385 -45092,3410:228:2,108.5,-42,0,0,-0.0185594 -45093,3410:229:1,109,-42,0,0,-0.0191321 -45094,3410:229:2,109.5,-42,0,0,-0.0186305 -45095,3411:120:1,110,-42,0,0,-0.0181751 -45096,3411:120:2,110.5,-42,0,0,-0.0199957 -45097,3411:121:1,111,-42,0,0,-0.0216235 -45098,3411:121:2,111.5,-42,0,0,-0.021958 -45099,3411:122:1,112,-42,0,0,-0.0215067 -45100,3411:122:2,112.5,-42,0,0,-0.0205162 -45101,3411:123:1,113,-42,0,0,-0.0199822 -45102,3411:123:2,113.5,-42,0,0,-0.0203872 -45103,3411:124:1,114,-42,0,0,-0.0226226 -45104,3411:124:2,114.5,-42,0,0,-0.0240139 -45105,3411:225:1,115,-42,0,0,-0.0243037 -45106,3411:225:2,115.5,-42,0,0,-0.0301715 -45107,3411:226:1,116,-42,0,0,-0.0317074 -45108,3411:226:2,116.5,-42,0,0,-0.0318959 -45109,3411:227:1,117,-42,0,0,-0.0318959 -45110,3411:227:2,117.5,-42,0,0,-0.0302195 -45111,3411:228:1,118,-42,0,0,-0.0270105 -45112,3411:228:2,118.5,-42,0,0,-0.024436 -45113,3411:229:1,119,-42,0,0,-0.0241885 -45114,3411:229:2,119.5,-42,0,0,-0.0248883 -45115,3412:120:1,120,-42,0,0,-0.0257719 -45116,3412:120:2,120.5,-42,0,0,-0.0261544 -45117,3412:121:1,121,-42,0,0,-0.0263986 -45118,3412:121:2,121.5,-42,0,0,-0.026597 -45119,3412:122:1,122,-42,0,0,-0.027618 -45120,3412:122:2,122.5,-42,0,0,-0.0294256 -45121,3412:123:1,123,-42,0,0,-0.0299524 -45122,3412:123:2,123.5,-42,0,0,-0.0299321 -45123,3412:124:1,124,-42,0,0,-0.0301784 -45124,3412:124:2,124.5,-42,0,0,-0.0310497 -45125,3412:225:1,125,-42,0,0,-0.0322543 -45126,3412:225:2,125.5,-42,0,0,-0.0326913 -45127,3412:226:1,126,-42,0,0,-0.0315777 -45128,3412:226:2,126.5,-42,0,0,-0.0302609 -45129,3412:227:1,127,-42,0,0,-0.0286728 -45130,3412:227:2,127.5,-42,0,0,-0.0324387 -45131,3412:228:1,128,-42,0,0,-0.0450241 -45132,3412:228:2,128.5,-42,0,0,-0.0490929 -45133,3412:229:1,129,-42,0,0,-0.0482695 -45134,3412:229:2,129.5,-42,0,0,-0.0477248 -45135,3413:120:1,130,-42,0,0,-0.0475156 -45136,3413:120:2,130.5,-42,0,0,-0.0467305 -45137,3413:121:1,131,-42,0,0,-0.0446926 -45138,3413:121:2,131.5,-42,0,0,-0.0421896 -45139,3413:122:1,132,-42,0,0,-0.0408803 -45140,3413:122:2,132.5,-42,0,0,-0.0411729 -45141,3413:123:1,133,-42,0,0,-0.0426979 -45142,3413:123:2,133.5,-42,0,0,-0.0444969 -45143,3413:124:1,134,-42,0,0,-0.0453789 -45144,3413:124:2,134.5,-42,0,0,-0.0453684 -45145,3413:225:1,135,-42,0,0,-0.0450968 -45146,3413:225:2,135.5,-42,0,0,-0.0448165 -45147,3413:226:1,136,-42,0,0,-0.044333 -45148,3413:226:2,136.5,-42,0,0,-0.0434223 -45149,3413:227:1,137,-42,0,0,-0.0415726 -45150,3413:227:2,137.5,-42,0,0,-0.038246 -45151,3413:228:1,138,-42,0,0,-0.0360835 -45152,3413:228:2,138.5,-42,0,0,-0.0373534 -45153,3413:229:1,139,-42,0,0,-0.0374992 -45154,3413:229:2,139.5,-42,0,0,-0.0364989 -45155,3414:120:1,140,-42,0,0,-0.0343286 -45156,3414:120:2,140.5,-42,0,0,-0.0313554 -45157,3414:121:1,141,-42,0,0,-0.0266273 -45158,3414:121:2,141.5,-42,0,0,-0.0248995 -45159,3414:122:1,142,-42,0,0,-0.026736 -45160,3414:122:2,142.5,-42,0,0,-0.0310354 -45161,3414:123:1,143,-42,0,0,-0.0355182 -45162,3414:123:2,143.5,-42,0,0,-0.036776 -45163,3414:124:1,144,-42,0,0,-0.0347786 -45164,3414:124:2,144.5,-42,0,0,-0.0324536 -45165,3414:225:1,145,-42,0,0,-0.0291791 -45166,3414:225:2,145.5,-42,0,0,-0.0244637 -45167,3414:226:1,146,-42,0,0,-0.0239434 -45168,3414:226:2,146.5,-42,0,0,-0.0282911 -45169,3414:227:1,147,-42,0,0,-0.039814 -45170,3414:227:2,147.5,-42,0,0,-0.0517844 -45171,3414:228:1,148,-42,0,0,-0.054024 -45172,3414:228:2,148.5,-42,0,0,-0.0528182 -45173,3414:229:1,149,-42,0,0,-0.0516402 -45174,3414:229:2,149.5,-42,0,0,-0.0491269 -45175,3415:120:1,150,-42,0,0,-0.0387851 -45176,3415:120:2,150.5,-42,0,0,-0.0401538 -45177,3415:121:1,151,-42,0,0,-0.0418028 -45178,3415:121:2,151.5,-42,0,0,-0.0422771 -45179,3415:122:1,152,-42,0,0,-0.0433024 -45180,3415:122:2,152.5,-42,0,0,-0.0444869 -45181,3415:123:1,153,-42,0,0,-0.0442921 -45182,3415:123:2,153.5,-42,0,0,-0.046472 -45183,3415:124:1,154,-42,0,0,-0.0500934 -45184,3415:124:2,154.5,-42,0,0,-0.0515323 -45185,3415:225:1,155,-42,0,0,-0.0504316 -45186,3415:225:2,155.5,-42,0,0,-0.0452847 -45187,3415:226:1,156,-42,0,0,-0.044796 -45188,3415:226:2,156.5,-42,0,0,-0.0454314 -45189,3415:227:1,157,-42,0,0,-0.0439056 -45190,3415:227:2,157.5,-42,0,0,-0.0469908 -45191,3415:228:1,158,-42,0,0,-0.0505958 -45192,3415:228:2,158.5,-42,0,0,-0.0522074 -45193,3415:229:1,159,-42,0,0,-0.0515323 -45194,3415:229:2,159.5,-42,0,0,-0.0524752 -45195,3416:120:1,160,-42,0,0,-0.0553879 -45196,3416:120:2,160.5,-42,0,0,-0.0562474 -45197,3416:121:1,161,-42,0,0,-0.0568946 -45198,3416:121:2,161.5,-42,0,0,-0.0572411 -45199,3416:122:1,162,-42,0,0,-0.0571877 -45200,3416:122:2,162.5,-42,0,0,-0.0566031 -45201,3416:123:1,163,-42,0,0,-0.0566164 -45202,3416:123:2,163.5,-42,0,0,-0.055751 -45203,3416:124:1,164,-42,0,0,-0.0529906 -45204,3416:124:2,164.5,-42,0,0,-0.0505958 -45205,3416:225:1,165,-42,0,0,-0.0527077 -45206,3416:225:2,165.5,-42,0,0,-0.0575899 -45207,3416:226:1,166,-42,0,0,-0.0586631 -45208,3416:226:2,166.5,-42,0,0,-0.0583075 -45209,3416:227:1,167,-42,0,0,-0.0578191 -45210,3416:227:2,167.5,-42,0,0,-0.0567885 -45211,3416:228:1,168,-42,0,0,-0.0559988 -45212,3416:228:2,168.5,-42,0,0,-0.0533493 -45213,3416:229:1,169,-42,0,0,-0.0508783 -45214,3416:229:2,169.5,-42,0,0,-0.0494355 -45215,3417:120:1,170,-42,0,0,-0.0478799 -45216,3417:120:2,170.5,-42,0,0,-0.0469473 -45217,3417:121:1,171,-42,0,0,-0.0467199 -45218,3417:121:2,171.5,-42,0,0,-0.0469473 -45219,3417:122:1,172,-42,0,0,-0.0472086 -45220,3417:122:2,172.5,-42,0,0,-0.0474496 -45221,3417:123:1,173,-42,0,0,-0.047769 -45222,3417:123:2,173.5,-42,0,0,-0.0483812 -45223,3417:124:1,174,-42,0,0,-0.0491043 -45224,3417:124:2,174.5,-42,0,0,-0.0498963 -45225,3417:225:1,175,-42,0,0,-0.0485049 -45226,3417:225:2,175.5,-42,0,0,-0.0431926 -45227,3417:226:1,176,-42,0,0,-0.0380711 -45228,3417:226:2,176.5,-42,0,0,-0.0374392 -45229,3417:227:1,177,-42,0,0,-0.0379577 -45230,3417:227:2,177.5,-42,0,0,-0.0389278 -45231,3417:228:1,178,-42,0,0,-0.0396496 -45232,3417:228:2,178.5,-42,0,0,-0.0419378 -45233,3417:229:1,179,-42,0,0,-0.0438145 -45234,3417:229:2,179.5,-42,0,0,-0.0440375 -45235,3418:120:1,180,-42,0,0,-0.0437538 -45236,5418:110:3,-180,-41.5,0,0,-0.0399787 -45237,5417:219:4,-179.5,-41.5,0,0,-0.0410122 -45238,5417:219:3,-179,-41.5,0,0,-0.0416779 -45239,5417:218:4,-178.5,-41.5,0,0,-0.0422284 -45240,5417:218:3,-178,-41.5,0,0,-0.0433024 -45241,5417:217:4,-177.5,-41.5,0,0,-0.0442616 -45242,5417:217:3,-177,-41.5,0,0,-0.0494012 -45243,5417:216:4,-176.5,-41.5,0,0,-0.0533739 -45244,5417:216:3,-176,-41.5,0,0,-0.0547334 -45245,5417:215:4,-175.5,-41.5,0,0,-0.0550661 -45246,5417:215:3,-175,-41.5,0,0,-0.0543394 -45247,5417:114:4,-174.5,-41.5,0,0,-0.0576705 -45248,5417:114:3,-174,-41.5,0,0,-0.061232 -45249,5417:113:4,-173.5,-41.5,0,0,-0.0600383 -45250,5417:113:3,-173,-41.5,0,0,-0.058226 -45251,5417:112:4,-172.5,-41.5,0,0,-0.0595486 -45252,5417:112:3,-172,-41.5,0,0,-0.056077 -45253,5417:111:4,-171.5,-41.5,0,0,-0.0542888 -45254,5417:111:3,-171,-41.5,0,0,-0.0542765 -45255,5417:110:4,-170.5,-41.5,0,0,-0.0505958 -45256,5417:110:3,-170,-41.5,0,0,-0.048303 -45257,5416:219:4,-169.5,-41.5,0,0,-0.0464612 -45258,5416:219:3,-169,-41.5,0,0,-0.0454837 -45259,5416:218:4,-168.5,-41.5,0,0,-0.0457683 -45260,5416:218:3,-168,-41.5,0,0,-0.0464503 -45261,5416:217:4,-167.5,-41.5,0,0,-0.0547462 -45262,5416:217:3,-167,-41.5,0,0,-0.0588284 -45263,5416:216:4,-166.5,-41.5,0,0,-0.0564975 -45264,5416:216:3,-166,-41.5,0,0,-0.0554009 -45265,5416:215:4,-165.5,-41.5,0,0,-0.0553879 -45266,5416:215:3,-165,-41.5,0,0,-0.0569875 -45267,5416:114:4,-164.5,-41.5,0,0,-0.0607034 -45268,5416:114:3,-164,-41.5,0,0,-0.0666705 -45269,5416:113:4,-163.5,-41.5,0,0,-0.0726424 -45270,5416:113:3,-163,-41.5,0,0,-0.068779 -45271,5416:112:4,-162.5,-41.5,0,0,-0.0573481 -45272,5416:112:3,-162,-41.5,0,0,-0.0559203 -45273,5416:111:4,-161.5,-41.5,0,0,-0.0630105 -45274,5416:111:3,-161,-41.5,0,0,-0.065042 -45275,5416:110:4,-160.5,-41.5,0,0,-0.0651495 -45276,5416:110:3,-160,-41.5,0,0,-0.0653182 -45277,5415:219:4,-159.5,-41.5,0,0,-0.0670331 -45278,5415:219:3,-159,-41.5,0,0,-0.0698933 -45279,5415:218:4,-158.5,-41.5,0,0,-0.0731952 -45280,5415:218:3,-158,-41.5,0,0,-0.0775642 -45281,5415:217:4,-157.5,-41.5,0,0,-0.0876683 -45282,5415:217:3,-157,-41.5,0,0,-0.0941509 -45283,5415:216:4,-156.5,-41.5,0,0,-0.0964337 -45284,5415:216:3,-156,-41.5,0,0,-0.0960141 -45285,5415:215:4,-155.5,-41.5,0,0,-0.0923936 -45286,5415:215:3,-155,-41.5,0,0,-0.0844472 -45287,5415:114:4,-154.5,-41.5,0,0,-0.0785309 -45288,5415:114:3,-154,-41.5,0,0,-0.0764825 -45289,5415:113:4,-153.5,-41.5,0,0,-0.0778601 -45290,5415:113:3,-153,-41.5,0,0,-0.082944 -45291,5415:112:4,-152.5,-41.5,0,0,-0.0932904 -45292,5415:112:3,-152,-41.5,0,0,-0.0946762 -45293,5415:111:4,-151.5,-41.5,0,0,-0.0887713 -45294,5415:111:3,-151,-41.5,0,0,-0.0867464 -45295,5415:110:4,-150.5,-41.5,0,0,-0.0841446 -45296,5415:110:3,-150,-41.5,0,0,-0.0836418 -45297,5414:219:4,-149.5,-41.5,0,0,-0.0827661 -45298,5414:219:3,-149,-41.5,0,0,-0.0809852 -45299,5414:218:4,-148.5,-41.5,0,0,-0.0786618 -45300,5414:218:3,-148,-41.5,0,0,-0.0776567 -45301,5414:217:4,-147.5,-41.5,0,0,-0.0795482 -45302,5414:217:3,-147,-41.5,0,0,-0.0837421 -45303,5414:216:4,-146.5,-41.5,0,0,-0.0879213 -45304,5414:216:3,-146,-41.5,0,0,-0.0902361 -45305,5414:215:4,-145.5,-41.5,0,0,-0.0902361 -45306,5414:215:3,-145,-41.5,0,0,-0.0887074 -45307,5414:114:4,-144.5,-41.5,0,0,-0.0871434 -45308,5414:114:3,-144,-41.5,0,0,-0.0866632 -45309,5414:113:4,-143.5,-41.5,0,0,-0.0864552 -45310,5414:113:3,-143,-41.5,0,0,-0.0850161 -45311,5414:112:4,-142.5,-41.5,0,0,-0.0833624 -45312,5414:112:3,-142,-41.5,0,0,-0.0797384 -45313,5414:111:4,-141.5,-41.5,0,0,-0.0773796 -45314,5414:111:3,-141,-41.5,0,0,-0.0778601 -45315,5414:110:4,-140.5,-41.5,0,0,-0.0804259 -45316,5414:110:3,-140,-41.5,0,0,-0.0836021 -45317,5413:219:4,-139.5,-41.5,0,0,-0.0863103 -45318,5413:219:3,-139,-41.5,0,0,-0.0881545 -45319,5413:218:4,-138.5,-41.5,0,0,-0.0885792 -45320,5413:218:3,-138,-41.5,0,0,-0.0872482 -45321,5413:217:4,-137.5,-41.5,0,0,-0.0849545 -45322,5413:217:3,-137,-41.5,0,0,-0.0836021 -45323,5413:216:4,-136.5,-41.5,0,0,-0.0846295 -45324,5413:216:3,-136,-41.5,0,0,-0.0865591 -45325,5413:215:4,-135.5,-41.5,0,0,-0.0868297 -45326,5413:215:3,-135,-41.5,0,0,-0.0845689 -45327,5413:114:4,-134.5,-41.5,0,0,-0.0808885 -45328,5413:114:3,-134,-41.5,0,0,-0.0786996 -45329,5413:113:4,-133.5,-41.5,0,0,-0.0781948 -45330,5413:113:3,-133,-41.5,0,0,-0.0784185 -45331,5413:112:4,-132.5,-41.5,0,0,-0.0781948 -45332,5413:112:3,-132,-41.5,0,0,-0.0776009 -45333,5413:111:4,-131.5,-41.5,0,0,-0.0778228 -45334,5413:111:3,-131,-41.5,0,0,-0.0787746 -45335,5413:110:4,-130.5,-41.5,0,0,-0.0790945 -45336,5413:110:3,-130,-41.5,0,0,-0.0787557 -45337,5412:219:4,-129.5,-41.5,0,0,-0.0782881 -45338,5412:219:3,-129,-41.5,0,0,-0.077953 -45339,5412:218:4,-128.5,-41.5,0,0,-0.0778415 -45340,5412:218:3,-128,-41.5,0,0,-0.0777488 -45341,5412:217:4,-127.5,-41.5,0,0,-0.077269 -45342,5412:217:3,-127,-41.5,0,0,-0.0757766 -45343,5412:216:4,-126.5,-41.5,0,0,-0.0695308 -45344,5412:216:3,-126,-41.5,0,0,-0.0623919 -45345,5412:215:4,-125.5,-41.5,0,0,-0.065042 -45346,5412:215:3,-125,-41.5,0,0,-0.0666235 -45347,5412:114:4,-124.5,-41.5,0,0,-0.0671755 -45348,5412:114:3,-124,-41.5,0,0,-0.0677641 -45349,5412:113:4,-123.5,-41.5,0,0,-0.0693831 -45350,5412:113:3,-123,-41.5,0,0,-0.0691867 -45351,5412:112:4,-122.5,-41.5,0,0,-0.0622459 -45352,5412:112:3,-122,-41.5,0,0,-0.0566559 -45353,5412:111:4,-121.5,-41.5,0,0,-0.0565503 -45354,5412:111:3,-121,-41.5,0,0,-0.057684 -45355,5412:110:4,-120.5,-41.5,0,0,-0.0562866 -45356,5412:110:3,-120,-41.5,0,0,-0.0544411 -45357,5411:219:4,-119.5,-41.5,0,0,-0.0542132 -45358,5411:219:3,-119,-41.5,0,0,-0.0540997 -45359,5411:218:4,-118.5,-41.5,0,0,-0.054251 -45360,5411:218:3,-118,-41.5,0,0,-0.0557121 -45361,5411:217:4,-117.5,-41.5,0,0,-0.0569477 -45362,5411:217:3,-117,-41.5,0,0,-0.0569477 -45363,5411:216:4,-116.5,-41.5,0,0,-0.057081 -45364,5411:216:3,-116,-41.5,0,0,-0.057081 -45365,5411:215:4,-115.5,-41.5,0,0,-0.0562999 -45366,5411:215:3,-115,-41.5,0,0,-0.0551562 -45367,5411:114:4,-114.5,-41.5,0,0,-0.0542132 -45368,5411:114:3,-114,-41.5,0,0,-0.0532501 -45369,5411:113:4,-113.5,-41.5,0,0,-0.0522074 -45370,5411:113:3,-113,-41.5,0,0,-0.0511629 -45371,5411:112:4,-112.5,-41.5,0,0,-0.0501747 -45372,5411:112:3,-112,-41.5,0,0,-0.0493554 -45373,5411:111:4,-111.5,-41.5,0,0,-0.0484935 -45374,5411:111:3,-111,-41.5,0,0,-0.0481132 -45375,5411:110:4,-110.5,-41.5,0,0,-0.047296 -45376,5411:110:3,-110,-41.5,0,0,-0.0468603 -45377,5410:219:4,-109.5,-41.5,0,0,-0.047143 -45378,5410:219:3,-109,-41.5,0,0,-0.0476144 -45379,5410:218:4,-108.5,-41.5,0,0,-0.0475596 -45380,5410:218:3,-108,-41.5,0,0,-0.0462574 -45381,5410:217:4,-107.5,-41.5,0,0,-0.0452636 -45382,5410:217:3,-107,-41.5,0,0,-0.045589 -45383,5410:216:4,-106.5,-41.5,0,0,-0.0460549 -45384,5410:216:3,-106,-41.5,0,0,-0.0458426 -45385,5410:215:4,-105.5,-41.5,0,0,-0.0453473 -45386,5410:215:3,-105,-41.5,0,0,-0.0455154 -45387,5410:114:4,-104.5,-41.5,0,0,-0.0464182 -45388,5410:114:3,-104,-41.5,0,0,-0.0471869 -45389,5410:113:4,-103.5,-41.5,0,0,-0.0473618 -45390,5410:113:3,-103,-41.5,0,0,-0.0468497 -45391,5410:112:4,-102.5,-41.5,0,0,-0.0458637 -45392,5410:112:3,-102,-41.5,0,0,-0.0446205 -45393,5410:111:4,-101.5,-41.5,0,0,-0.0435324 -45394,5410:111:3,-101,-41.5,0,0,-0.0429445 -45395,5410:110:4,-100.5,-41.5,0,0,-0.043014 -45396,5410:110:3,-100,-41.5,0,0,-0.0434522 -45397,5409:219:4,-99.5,-41.5,0,0,-0.0439056 -45398,5409:219:3,-99,-41.5,0,0,-0.0439563 -45399,5409:218:4,-98.5,-41.5,0,0,-0.0434024 -45400,5409:218:3,-98,-41.5,0,0,-0.042443 -45401,5409:217:4,-97.5,-41.5,0,0,-0.0412867 -45402,5409:217:3,-97,-41.5,0,0,-0.0408238 -45403,5409:216:4,-96.5,-41.5,0,0,-0.0411821 -45404,5409:216:3,-96,-41.5,0,0,-0.0416685 -45405,5409:215:4,-95.5,-41.5,0,0,-0.0417546 -45406,5409:215:3,-95,-41.5,0,0,-0.0411729 -45407,5409:114:4,-94.5,-41.5,0,0,-0.0405247 -45408,5409:114:3,-94,-41.5,0,0,-0.0408614 -45409,5409:113:4,-93.5,-41.5,0,0,-0.041544 -45410,5409:113:3,-93,-41.5,0,0,-0.0420248 -45411,5409:112:4,-92.5,-41.5,0,0,-0.0425702 -45412,5409:112:3,-92,-41.5,0,0,-0.0430634 -45413,5409:111:4,-91.5,-41.5,0,0,-0.0420732 -45414,5409:111:3,-91,-41.5,0,0,-0.0408898 -45415,5409:110:4,-90.5,-41.5,0,0,-0.0410592 -45416,5409:110:3,-90,-41.5,0,0,-0.0414388 -45417,5408:219:4,-89.5,-41.5,0,0,-0.0413435 -45418,5408:219:3,-89,-41.5,0,0,-0.0409837 -45419,5408:218:4,-88.5,-41.5,0,0,-0.0405711 -45420,5408:218:3,-88,-41.5,0,0,-0.0402369 -45421,5408:217:4,-87.5,-41.5,0,0,-0.0399513 -45422,5408:217:3,-87,-41.5,0,0,-0.0397225 -45423,5408:216:4,-86.5,-41.5,0,0,-0.0395769 -45424,5408:216:3,-86,-41.5,0,0,-0.0395586 -45425,5408:215:4,-85.5,-41.5,0,0,-0.0396769 -45426,5408:215:3,-85,-41.5,0,0,-0.0397863 -45427,5408:114:4,-84.5,-41.5,0,0,-0.0396677 -45428,5408:114:3,-84,-41.5,0,0,-0.03926 -45429,5408:113:4,-83.5,-41.5,0,0,-0.03891 -45430,5408:113:3,-83,-41.5,0,0,-0.0387406 -45431,5408:112:4,-82.5,-41.5,0,0,-0.0386962 -45432,5408:112:3,-82,-41.5,0,0,-0.0425311 -45433,5408:111:4,-81.5,-41.5,0,0,-0.0412391 -45434,5408:111:3,-81,-41.5,0,0,-0.0418509 -45435,5408:110:4,-80.5,-41.5,0,0,-0.0434122 -45436,5408:110:3,-80,-41.5,0,0,-0.0441595 -45437,5407:219:4,-79.5,-41.5,0,0,-0.0428655 -45438,5407:219:3,-79,-41.5,0,0,-0.0400615 -45439,5407:218:4,-78.5,-41.5,0,0,-0.0408522 -45440,5407:218:3,-78,-41.5,0,0,-0.0442208 -45441,5407:217:4,-77.5,-41.5,0,0,-0.0459167 -45442,5407:217:3,-77,-41.5,0,0,-0.0478799 -45443,5407:216:4,-76.5,-41.5,0,0,-0.0493554 -45444,5407:216:3,-76,-41.5,0,0,-0.0555173 -45445,5407:215:4,-75.5,-41.5,0,0,-0.0577919 -45446,5407:215:3,-75,-41.5,0,0,-0.0753994 -45447,5406:219:3,-69,-41.5,0,0,-0.0772325 -45448,5406:218:4,-68.5,-41.5,0,0,-0.0577112 -45449,5406:218:3,-68,-41.5,0,0,-0.0520259 -45450,5406:217:4,-67.5,-41.5,0,0,-0.0456945 -45451,5406:217:3,-67,-41.5,0,0,-0.0435226 -45452,5406:216:4,-66.5,-41.5,0,0,-0.0432026 -45453,5406:216:3,-66,-41.5,0,0,-0.0425311 -45454,5406:215:4,-65.5,-41.5,0,0,-0.0416012 -45455,5406:215:3,-65,-41.5,0,0,-0.0409084 -45456,5406:114:4,-64.5,-41.5,0,0,-0.0408238 -45457,5406:114:3,-64,-41.5,0,0,-0.0414962 -45458,5406:113:4,-63.5,-41.5,0,0,-0.0420248 -45459,5406:113:3,-63,-41.5,0,0,-0.0416875 -45460,5406:112:4,-62.5,-41.5,0,0,-0.0428061 -45461,5406:112:3,-62,-41.5,0,0,-0.0433024 -45462,5406:111:4,-61.5,-41.5,0,0,-0.0445383 -45463,5406:111:3,-61,-41.5,0,0,-0.0518689 -45464,5406:110:4,-60.5,-41.5,0,0,-0.0649044 -45465,5406:110:3,-60,-41.5,0,0,-0.0735782 -45466,5405:219:4,-59.5,-41.5,0,0,-0.0754536 -45467,5405:219:3,-59,-41.5,0,0,-0.0803685 -45468,5405:218:4,-58.5,-41.5,0,0,-0.0616789 -45469,5405:218:3,-58,-41.5,0,0,-0.0563524 -45470,5405:217:4,-57.5,-41.5,0,0,-0.0476588 -45471,5405:217:3,-57,-41.5,0,0,-0.0415823 -45472,5405:216:4,-56.5,-41.5,0,0,-0.0380362 -45473,5405:216:3,-56,-41.5,0,0,-0.0359434 -45474,5405:215:4,-55.5,-41.5,0,0,-0.0342268 -45475,5405:215:3,-55,-41.5,0,0,-0.0327437 -45476,5405:114:4,-54.5,-41.5,0,0,-0.030789 -45477,5405:114:3,-54,-41.5,0,0,-0.0285752 -45478,5405:113:4,-53.5,-41.5,0,0,-0.027356 -45479,5405:113:3,-53,-41.5,0,0,-0.0272876 -45480,5405:112:4,-52.5,-41.5,0,0,-0.0280287 -45481,5405:112:3,-52,-41.5,0,0,-0.0284133 -45482,5405:111:4,-51.5,-41.5,0,0,-0.0281244 -45483,5405:111:3,-51,-41.5,0,0,-0.028067 -45484,5405:110:4,-50.5,-41.5,0,0,-0.0273435 -45485,5405:110:3,-50,-41.5,0,0,-0.0256378 -45486,5404:219:4,-49.5,-41.5,0,0,-0.0226788 -45487,5404:219:3,-49,-41.5,0,0,-0.0220374 -45488,5404:218:4,-48.5,-41.5,0,0,-0.0215942 -45489,5404:218:3,-48,-41.5,0,0,-0.0210221 -45490,5404:217:4,-47.5,-41.5,0,0,-0.0204839 -45491,5404:217:3,-47,-41.5,0,0,-0.0210791 -45492,5404:216:4,-46.5,-41.5,0,0,-0.0222224 -45493,5404:216:3,-46,-41.5,0,0,-0.0229832 -45494,5404:215:4,-45.5,-41.5,0,0,-0.0230716 -45495,5404:215:3,-45,-41.5,0,0,-0.0228537 -45496,5404:114:4,-44.5,-41.5,0,0,-0.0224799 -45497,5404:114:3,-44,-41.5,0,0,-0.0223533 -45498,5404:113:4,-43.5,-41.5,0,0,-0.0226174 -45499,5404:113:3,-43,-41.5,0,0,-0.0225256 -45500,5404:112:4,-42.5,-41.5,0,0,-0.0217901 -45501,5404:112:3,-42,-41.5,0,0,-0.0209842 -45502,5404:111:4,-41.5,-41.5,0,0,-0.0204931 -45503,5404:111:3,-41,-41.5,0,0,-0.0185469 -45504,5404:110:4,-40.5,-41.5,0,0,-0.0175603 -45505,5404:110:3,-40,-41.5,0,0,-0.0179638 -45506,5403:219:4,-39.5,-41.5,0,0,-0.0179356 -45507,5403:219:3,-39,-41.5,0,0,-0.0198969 -45508,5403:218:4,-38.5,-41.5,0,0,-0.0237868 -45509,5403:218:3,-38,-41.5,0,0,-0.0254816 -45510,5403:217:4,-37.5,-41.5,0,0,-0.0250069 -45511,5403:217:3,-37,-41.5,0,0,-0.0233287 -45512,5403:216:4,-36.5,-41.5,0,0,-0.0212558 -45513,5403:216:3,-36,-41.5,0,0,-0.0191838 -45514,5403:215:4,-35.5,-41.5,0,0,-0.0178631 -45515,5403:215:3,-35,-41.5,0,0,-0.0177869 -45516,5403:114:4,-34.5,-41.5,0,0,-0.0172901 -45517,5403:114:3,-34,-41.5,0,0,-0.0168075 -45518,5403:113:4,-33.5,-41.5,0,0,-0.0164342 -45519,5403:113:3,-33,-41.5,0,0,-0.0156527 -45520,5403:112:4,-32.5,-41.5,0,0,-0.015237 -45521,5403:112:3,-32,-41.5,0,0,-0.0154538 -45522,5403:111:4,-31.5,-41.5,0,0,-0.0158365 -45523,5403:111:3,-31,-41.5,0,0,-0.0165601 -45524,5403:110:4,-30.5,-41.5,0,0,-0.01836 -45525,5403:110:3,-30,-41.5,0,0,-0.0204746 -45526,5402:219:4,-29.5,-41.5,0,0,-0.0208756 -45527,5402:219:3,-29,-41.5,0,0,-0.0204839 -45528,5402:218:4,-28.5,-41.5,0,0,-0.0201996 -45529,5402:218:3,-28,-41.5,0,0,-0.0197406 -45530,5402:217:4,-27.5,-41.5,0,0,-0.0193269 -45531,5402:217:3,-27,-41.5,0,0,-0.0190291 -45532,5402:216:4,-26.5,-41.5,0,0,-0.0184345 -45533,5402:216:3,-26,-41.5,0,0,-0.0188499 -45534,5402:215:4,-25.5,-41.5,0,0,-0.0198969 -45535,5402:215:3,-25,-41.5,0,0,-0.0201178 -45536,5402:114:4,-24.5,-41.5,0,0,-0.019785 -45537,5402:114:3,-24,-41.5,0,0,-0.0202224 -45538,5402:113:4,-23.5,-41.5,0,0,-0.0205441 -45539,5402:113:3,-23,-41.5,0,0,-0.0202908 -45540,5402:112:4,-22.5,-41.5,0,0,-0.0201088 -45541,5402:112:3,-22,-41.5,0,0,-0.0197539 -45542,5402:111:4,-21.5,-41.5,0,0,-0.0182284 -45543,5402:111:3,-21,-41.5,0,0,-0.0175603 -45544,5402:110:4,-20.5,-41.5,0,0,-0.0176356 -45545,5402:110:3,-20,-41.5,0,0,-0.0176396 -45546,5401:219:4,-19.5,-41.5,0,0,-0.017831 -45547,5401:219:3,-19,-41.5,0,0,-0.0176157 -45548,5401:218:4,-18.5,-41.5,0,0,-0.0180935 -45549,5401:218:3,-18,-41.5,0,0,-0.0193357 -45550,5401:217:4,-17.5,-41.5,0,0,-0.0214727 -45551,5401:217:3,-17,-41.5,0,0,-0.0218641 -45552,5401:216:4,-16.5,-41.5,0,0,-0.0212702 -45553,5401:216:3,-16,-41.5,0,0,-0.0211983 -45554,5401:215:4,-15.5,-41.5,0,0,-0.0207535 -45555,5401:215:3,-15,-41.5,0,0,-0.0201904 -45556,5401:114:4,-14.5,-41.5,0,0,-0.0196562 -45557,5401:114:3,-14,-41.5,0,0,-0.0210458 -45558,5401:113:4,-13.5,-41.5,0,0,-0.0233656 -45559,5401:113:3,-13,-41.5,0,0,-0.0235779 -45560,5401:112:4,-12.5,-41.5,0,0,-0.0226379 -45561,5401:112:3,-12,-41.5,0,0,-0.0208897 -45562,5401:111:4,-11.5,-41.5,0,0,-0.0191192 -45563,5401:111:3,-11,-41.5,0,0,-0.0179476 -45564,5401:110:4,-10.5,-41.5,0,0,-0.0177031 -45565,5401:110:3,-10,-41.5,0,0,-0.0176633 -45566,5400:219:4,-9.5,-41.5,0,0,-0.0167772 -45567,5400:219:3,-9,-41.5,0,0,-0.0139084 -45568,5400:218:4,-8.5,-41.5,0,0,-0.0124218 -45569,5400:218:3,-8,-41.5,0,0,-0.0125166 -45570,5400:217:4,-7.5,-41.5,0,0,-0.0125868 -45571,5400:217:3,-7,-41.5,0,0,-0.0121933 -45572,5400:216:4,-6.5,-41.5,0,0,-0.0117307 -45573,5400:216:3,-6,-41.5,0,0,-0.0115692 -45574,5400:215:4,-5.5,-41.5,0,0,-0.0112179 -45575,5400:215:3,-5,-41.5,0,0,-0.0106585 -45576,5400:114:4,-4.5,-41.5,0,0,-0.0105897 -45577,5400:114:3,-4,-41.5,0,0,-0.01177 -45578,5400:113:4,-3.5,-41.5,0,0,-0.0129496 -45579,5400:113:3,-3,-41.5,0,0,-0.0134399 -45580,5400:112:4,-2.5,-41.5,0,0,-0.0132042 -45581,5400:112:3,-2,-41.5,0,0,-0.0128314 -45582,5400:111:4,-1.5,-41.5,0,0,-0.0124886 -45583,5400:111:3,-1,-41.5,0,0,-0.0122507 -45584,5400:110:4,-0.5,-41.5,0,0,-0.0120389 -45585,3400:110:4,0,-41.5,0,0,-0.0117149 -45586,3400:110:4,0.5,-41.5,0,0,-0.0113237 -45587,3400:111:3,1,-41.5,0,0,-0.0104605 -45588,3400:111:4,1.5,-41.5,0,0,-0.00971567 -45589,3400:112:3,2,-41.5,0,0,-0.0101523 -45590,3400:112:4,2.5,-41.5,0,0,-0.0104302 -45591,3400:113:3,3,-41.5,0,0,-0.0107039 -45592,3400:113:4,3.5,-41.5,0,0,-0.010545 -45593,3400:114:3,4,-41.5,0,0,-0.00993042 -45594,3400:114:4,4.5,-41.5,0,0,-0.0100576 -45595,3400:215:3,5,-41.5,0,0,-0.0111904 -45596,3400:215:4,5.5,-41.5,0,0,-0.0152883 -45597,3400:216:3,6,-41.5,0,0,-0.0160945 -45598,3400:216:4,6.5,-41.5,0,0,-0.0148025 -45599,3400:217:3,7,-41.5,0,0,-0.0143548 -45600,3400:217:4,7.5,-41.5,0,0,-0.0132427 -45601,3400:218:3,8,-41.5,0,0,-0.0131541 -45602,3400:218:4,8.5,-41.5,0,0,-0.0137197 -45603,3400:219:3,9,-41.5,0,0,-0.0131483 -45604,3400:219:4,9.5,-41.5,0,0,-0.0131159 -45605,3401:110:3,10,-41.5,0,0,-0.0140399 -45606,3401:110:4,10.5,-41.5,0,0,-0.0139959 -45607,3401:111:3,11,-41.5,0,0,-0.0126122 -45608,3401:111:4,11.5,-41.5,0,0,-0.0124858 -45609,3401:112:3,12,-41.5,0,0,-0.0127 -45610,3401:112:4,12.5,-41.5,0,0,-0.0123857 -45611,3401:113:3,13,-41.5,0,0,-0.0113897 -45612,3401:113:4,13.5,-41.5,0,0,-0.0106824 -45613,3401:114:3,14,-41.5,0,0,-0.010909 -45614,3401:114:4,14.5,-41.5,0,0,-0.0106728 -45615,3401:215:3,15,-41.5,0,0,-0.0107951 -45616,3401:215:4,15.5,-41.5,0,0,-0.0116653 -45617,3401:216:3,16,-41.5,0,0,-0.0120066 -45618,3401:216:4,16.5,-41.5,0,0,-0.0114816 -45619,3401:217:3,17,-41.5,0,0,-0.0111829 -45620,3401:217:4,17.5,-41.5,0,0,-0.0117595 -45621,3401:218:3,18,-41.5,0,0,-0.0126065 -45622,3401:218:4,18.5,-41.5,0,0,-0.0120793 -45623,3401:219:3,19,-41.5,0,0,-0.0107278 -45624,3401:219:4,19.5,-41.5,0,0,-0.0105638 -45625,3402:110:3,20,-41.5,0,0,-0.0113693 -45626,3402:110:4,20.5,-41.5,0,0,-0.0116081 -45627,3402:111:3,21,-41.5,0,0,-0.0122891 -45628,3402:111:4,21.5,-41.5,0,0,-0.0128687 -45629,3402:112:3,22,-41.5,0,0,-0.0117964 -45630,3402:112:4,22.5,-41.5,0,0,-0.0102387 -45631,3402:113:3,23,-41.5,0,0,-0.0101319 -45632,3402:113:4,23.5,-41.5,0,0,-0.0109261 -45633,3402:114:3,24,-41.5,0,0,-0.0118096 -45634,3402:114:4,24.5,-41.5,0,0,-0.0120012 -45635,3402:215:3,25,-41.5,0,0,-0.0118784 -45636,3402:215:4,25.5,-41.5,0,0,-0.0117124 -45637,3402:216:3,26,-41.5,0,0,-0.0117675 -45638,3402:216:4,26.5,-41.5,0,0,-0.0117675 -45639,3402:217:3,27,-41.5,0,0,-0.0147033 -45640,3402:217:4,27.5,-41.5,0,0,-0.0175999 -45641,3402:218:3,28,-41.5,0,0,-0.0167283 -45642,3402:218:4,28.5,-41.5,0,0,-0.0129786 -45643,3402:219:3,29,-41.5,0,0,-0.0108773 -45644,3402:219:4,29.5,-41.5,0,0,-0.0120982 -45645,3403:110:3,30,-41.5,0,0,-0.0165229 -45646,3403:110:4,30.5,-41.5,0,0,-0.0169859 -45647,3403:111:3,31,-41.5,0,0,-0.0162543 -45648,3403:111:4,31.5,-41.5,0,0,-0.0138586 -45649,3403:112:3,32,-41.5,0,0,-0.012967 -45650,3403:112:4,32.5,-41.5,0,0,-0.0126404 -45651,3403:113:3,33,-41.5,0,0,-0.0124496 -45652,3403:113:4,33.5,-41.5,0,0,-0.0121579 -45653,3403:114:3,34,-41.5,0,0,-0.012101 -45654,3403:114:4,34.5,-41.5,0,0,-0.012539 -45655,3403:215:3,35,-41.5,0,0,-0.0129207 -45656,3403:215:4,35.5,-41.5,0,0,-0.0132102 -45657,3403:216:3,36,-41.5,0,0,-0.0134369 -45658,3403:216:4,36.5,-41.5,0,0,-0.0132992 -45659,3403:217:3,37,-41.5,0,0,-0.0125587 -45660,3403:217:4,37.5,-41.5,0,0,-0.0126772 -45661,3403:218:3,38,-41.5,0,0,-0.0134038 -45662,3403:218:4,38.5,-41.5,0,0,-0.0136981 -45663,3403:219:3,39,-41.5,0,0,-0.0126376 -45664,3403:219:4,39.5,-41.5,0,0,-0.0121388 -45665,3404:110:3,40,-41.5,0,0,-0.0125756 -45666,3404:110:4,40.5,-41.5,0,0,-0.0126263 -45667,3404:111:3,41,-41.5,0,0,-0.0128889 -45668,3404:111:4,41.5,-41.5,0,0,-0.013031 -45669,3404:112:3,42,-41.5,0,0,-0.012737 -45670,3404:112:4,42.5,-41.5,0,0,-0.0124079 -45671,3404:113:3,43,-41.5,0,0,-0.0123829 -45672,3404:113:4,43.5,-41.5,0,0,-0.0127769 -45673,3404:114:3,44,-41.5,0,0,-0.0136921 -45674,3404:114:4,44.5,-41.5,0,0,-0.0149292 -45675,3404:215:3,45,-41.5,0,0,-0.0155967 -45676,3404:215:4,45.5,-41.5,0,0,-0.0156703 -45677,3404:216:3,46,-41.5,0,0,-0.0154573 -45678,3404:216:4,46.5,-41.5,0,0,-0.0148656 -45679,3404:217:3,47,-41.5,0,0,-0.0139521 -45680,3404:217:4,47.5,-41.5,0,0,-0.0131659 -45681,3404:218:3,48,-41.5,0,0,-0.0134579 -45682,3404:218:4,48.5,-41.5,0,0,-0.0142842 -45683,3404:219:3,49,-41.5,0,0,-0.0147297 -45684,3404:219:4,49.5,-41.5,0,0,-0.0143677 -45685,3405:110:3,50,-41.5,0,0,-0.0139427 -45686,3405:110:4,50.5,-41.5,0,0,-0.0140525 -45687,3405:111:3,51,-41.5,0,0,-0.0144614 -45688,3405:111:4,51.5,-41.5,0,0,-0.0146276 -45689,3405:112:3,52,-41.5,0,0,-0.0146441 -45690,3405:112:4,52.5,-41.5,0,0,-0.0146145 -45691,3405:113:3,53,-41.5,0,0,-0.0146736 -45692,3405:113:4,53.5,-41.5,0,0,-0.0148457 -45693,3405:114:3,54,-41.5,0,0,-0.0147098 -45694,3405:114:4,54.5,-41.5,0,0,-0.0139896 -45695,3405:215:3,55,-41.5,0,0,-0.0132694 -45696,3405:215:4,55.5,-41.5,0,0,-0.0130807 -45697,3405:216:3,56,-41.5,0,0,-0.0135973 -45698,3405:216:4,56.5,-41.5,0,0,-0.0143451 -45699,3405:217:3,57,-41.5,0,0,-0.0147198 -45700,3405:217:4,57.5,-41.5,0,0,-0.0142267 -45701,3405:218:3,58,-41.5,0,0,-0.0138369 -45702,3405:218:4,58.5,-41.5,0,0,-0.0136552 -45703,3405:219:3,59,-41.5,0,0,-0.014899 -45704,3405:219:4,59.5,-41.5,0,0,-0.0158329 -45705,3406:110:3,60,-41.5,0,0,-0.0157691 -45706,3406:110:4,60.5,-41.5,0,0,-0.0155408 -45707,3406:111:3,61,-41.5,0,0,-0.0155025 -45708,3406:111:4,61.5,-41.5,0,0,-0.0154643 -45709,3406:112:3,62,-41.5,0,0,-0.0154261 -45710,3406:112:4,62.5,-41.5,0,0,-0.0153985 -45711,3406:113:3,63,-41.5,0,0,-0.0152917 -45712,3406:113:4,63.5,-41.5,0,0,-0.0151654 -45713,3406:114:3,64,-41.5,0,0,-0.015128 -45714,3406:114:4,64.5,-41.5,0,0,-0.0150367 -45715,3406:215:3,65,-41.5,0,0,-0.0148957 -45716,3406:215:4,65.5,-41.5,0,0,-0.0146638 -45717,3406:216:3,66,-41.5,0,0,-0.0143612 -45718,3406:216:4,66.5,-41.5,0,0,-0.0140147 -45719,3406:217:3,67,-41.5,0,0,-0.013573 -45720,3406:217:4,67.5,-41.5,0,0,-0.0131866 -45721,3406:218:3,68,-41.5,0,0,-0.0128803 -45722,3406:218:4,68.5,-41.5,0,0,-0.0126376 -45723,3406:219:3,69,-41.5,0,0,-0.0125811 -45724,3406:219:4,69.5,-41.5,0,0,-0.0126659 -45725,3407:110:3,70,-41.5,0,0,-0.0126631 -45726,3407:110:4,70.5,-41.5,0,0,-0.0122479 -45727,3407:111:3,71,-41.5,0,0,-0.0121579 -45728,3407:111:4,71.5,-41.5,0,0,-0.012128 -45729,3407:112:3,72,-41.5,0,0,-0.0122452 -45730,3407:112:4,72.5,-41.5,0,0,-0.0123691 -45731,3407:113:4,73.5,-41.5,0,0,-0.0124663 -45732,3407:114:3,74,-41.5,0,0,-0.0124524 -45733,3407:114:4,74.5,-41.5,0,0,-0.0123332 -45734,3407:215:3,75,-41.5,0,0,-0.0119557 -45735,3407:215:4,75.5,-41.5,0,0,-0.0107494 -45736,3407:216:3,76,-41.5,0,0,-0.0100172 -45737,3407:216:4,76.5,-41.5,0,0,-0.00972864 -45738,3407:217:3,77,-41.5,0,0,-0.0100733 -45739,3407:217:4,77.5,-41.5,0,0,-0.0120308 -45740,3407:218:3,78,-41.5,0,0,-0.0134821 -45741,3407:218:4,78.5,-41.5,0,0,-0.0130194 -45742,3407:219:3,79,-41.5,0,0,-0.014869 -45743,3407:219:4,79.5,-41.5,0,0,-0.0147165 -45744,3408:110:3,80,-41.5,0,0,-0.0196164 -45745,3408:110:4,80.5,-41.5,0,0,-0.0231763 -45746,3408:111:3,81,-41.5,0,0,-0.0247422 -45747,3408:111:4,81.5,-41.5,0,0,-0.0246472 -45748,3408:112:3,82,-41.5,0,0,-0.023562 -45749,3408:112:4,82.5,-41.5,0,0,-0.0220923 -45750,3408:113:3,83,-41.5,0,0,-0.0219928 -45751,3408:113:4,83.5,-41.5,0,0,-0.021958 -45752,3408:114:3,84,-41.5,0,0,-0.0226635 -45753,3408:114:4,84.5,-41.5,0,0,-0.0238678 -45754,3408:215:3,85,-41.5,0,0,-0.0248263 -45755,3408:215:4,85.5,-41.5,0,0,-0.0256205 -45756,3408:216:3,86,-41.5,0,0,-0.0243367 -45757,3408:216:4,86.5,-41.5,0,0,-0.0232025 -45758,3408:217:3,87,-41.5,0,0,-0.0227765 -45759,3408:217:4,87.5,-41.5,0,0,-0.0231816 -45760,3408:218:3,88,-41.5,0,0,-0.0242761 -45761,3408:218:4,88.5,-41.5,0,0,-0.026297 -45762,3408:219:3,89,-41.5,0,0,-0.0288296 -45763,3408:219:4,89.5,-41.5,0,0,-0.0304405 -45764,3409:110:3,90,-41.5,0,0,-0.0308383 -45765,3409:110:4,90.5,-41.5,0,0,-0.0351384 -45766,3409:111:3,91,-41.5,0,0,-0.0359351 -45767,3409:111:4,91.5,-41.5,0,0,-0.0352834 -45768,3409:112:3,92,-41.5,0,0,-0.0298505 -45769,3409:112:4,92.5,-41.5,0,0,-0.0239381 -45770,3409:113:3,93,-41.5,0,0,-0.0216626 -45771,3409:113:4,93.5,-41.5,0,0,-0.022328 -45772,3409:114:3,94,-41.5,0,0,-0.0240248 -45773,3409:114:4,94.5,-41.5,0,0,-0.0258304 -45774,3409:215:3,95,-41.5,0,0,-0.0274554 -45775,3409:215:4,95.5,-41.5,0,0,-0.0280161 -45776,3409:216:3,96,-41.5,0,0,-0.0273933 -45777,3409:216:4,96.5,-41.5,0,0,-0.0262852 -45778,3409:217:3,97,-41.5,0,0,-0.0251489 -45779,3409:217:4,97.5,-41.5,0,0,-0.0240793 -45780,3409:218:3,98,-41.5,0,0,-0.023392 -45781,3409:218:4,98.5,-41.5,0,0,-0.0231395 -45782,3409:219:3,99,-41.5,0,0,-0.0228485 -45783,3409:219:4,99.5,-41.5,0,0,-0.0222776 -45784,3410:110:3,100,-41.5,0,0,-0.0216675 -45785,3410:110:4,100.5,-41.5,0,0,-0.0215552 -45786,3410:111:3,101,-41.5,0,0,-0.0215845 -45787,3410:111:4,101.5,-41.5,0,0,-0.0207722 -45788,3410:112:3,102,-41.5,0,0,-0.0194756 -45789,3410:112:4,102.5,-41.5,0,0,-0.01836 -45790,3410:113:3,103,-41.5,0,0,-0.0178711 -45791,3410:113:4,103.5,-41.5,0,0,-0.0180895 -45792,3410:114:3,104,-41.5,0,0,-0.0184304 -45793,3410:114:4,104.5,-41.5,0,0,-0.0186683 -45794,3410:215:3,105,-41.5,0,0,-0.0187526 -45795,3410:215:4,105.5,-41.5,0,0,-0.0187315 -45796,3410:216:3,106,-41.5,0,0,-0.017719 -45797,3410:216:4,106.5,-41.5,0,0,-0.016423 -45798,3410:217:3,107,-41.5,0,0,-0.0165787 -45799,3410:217:4,107.5,-41.5,0,0,-0.0171971 -45800,3410:218:3,108,-41.5,0,0,-0.0194098 -45801,3410:218:4,108.5,-41.5,0,0,-0.0212991 -45802,3410:219:3,109,-41.5,0,0,-0.0210173 -45803,3410:219:4,109.5,-41.5,0,0,-0.0195987 -45804,3411:110:3,110,-41.5,0,0,-0.0197807 -45805,3411:110:4,110.5,-41.5,0,0,-0.0213519 -45806,3411:111:3,111,-41.5,0,0,-0.0217409 -45807,3411:111:4,111.5,-41.5,0,0,-0.0222275 -45808,3411:112:3,112,-41.5,0,0,-0.0227147 -45809,3411:112:4,112.5,-41.5,0,0,-0.0230405 -45810,3411:113:3,113,-41.5,0,0,-0.0230978 -45811,3411:113:4,113.5,-41.5,0,0,-0.0229521 -45812,3411:114:3,114,-41.5,0,0,-0.0225409 -45813,3411:114:4,114.5,-41.5,0,0,-0.0227045 -45814,3411:215:3,115,-41.5,0,0,-0.0231657 -45815,3411:215:4,115.5,-41.5,0,0,-0.0286402 -45816,3411:216:3,116,-41.5,0,0,-0.0318015 -45817,3411:216:4,116.5,-41.5,0,0,-0.031227 -45818,3411:217:3,117,-41.5,0,0,-0.0299797 -45819,3411:217:4,117.5,-41.5,0,0,-0.0273622 -45820,3411:218:3,118,-41.5,0,0,-0.0249786 -45821,3411:218:4,118.5,-41.5,0,0,-0.0242487 -45822,3411:219:3,119,-41.5,0,0,-0.0247646 -45823,3411:219:4,119.5,-41.5,0,0,-0.0250239 -45824,3412:110:3,120,-41.5,0,0,-0.0255161 -45825,3412:110:4,120.5,-41.5,0,0,-0.0275303 -45826,3412:111:3,121,-41.5,0,0,-0.0303852 -45827,3412:111:4,121.5,-41.5,0,0,-0.0330892 -45828,3412:112:3,122,-41.5,0,0,-0.0344622 -45829,3412:112:4,122.5,-41.5,0,0,-0.0335916 -45830,3412:113:3,123,-41.5,0,0,-0.0296137 -45831,3412:113:4,123.5,-41.5,0,0,-0.0285104 -45832,3412:114:3,124,-41.5,0,0,-0.0282524 -45833,3412:114:4,124.5,-41.5,0,0,-0.0287772 -45834,3412:215:3,125,-41.5,0,0,-0.0304543 -45835,3412:215:4,125.5,-41.5,0,0,-0.0326392 -45836,3412:216:3,126,-41.5,0,0,-0.0335839 -45837,3412:216:4,126.5,-41.5,0,0,-0.0325351 -45838,3412:217:3,127,-41.5,0,0,-0.0333623 -45839,3412:217:4,127.5,-41.5,0,0,-0.0475596 -45840,3412:218:3,128,-41.5,0,0,-0.0511629 -45841,3412:218:4,128.5,-41.5,0,0,-0.0487414 -45842,3412:219:3,129,-41.5,0,0,-0.0479242 -45843,3412:219:4,129.5,-41.5,0,0,-0.0480575 -45844,3413:110:3,130,-41.5,0,0,-0.0480018 -45845,3413:110:4,130.5,-41.5,0,0,-0.047891 -45846,3413:111:3,131,-41.5,0,0,-0.0476696 -45847,3413:111:4,131.5,-41.5,0,0,-0.047307 -45848,3413:112:3,132,-41.5,0,0,-0.0469473 -45849,3413:112:4,132.5,-41.5,0,0,-0.046655 -45850,3413:113:3,133,-41.5,0,0,-0.046472 -45851,3413:113:4,133.5,-41.5,0,0,-0.046817 -45852,3413:114:3,134,-41.5,0,0,-0.0451906 -45853,3413:114:4,134.5,-41.5,0,0,-0.0437742 -45854,3413:215:3,135,-41.5,0,0,-0.0432924 -45855,3413:215:4,135.5,-41.5,0,0,-0.0429545 -45856,3413:216:3,136,-41.5,0,0,-0.0423161 -45857,3413:216:4,136.5,-41.5,0,0,-0.040899 -45858,3413:217:3,137,-41.5,0,0,-0.0383866 -45859,3413:217:4,137.5,-41.5,0,0,-0.0363238 -45860,3413:218:3,138,-41.5,0,0,-0.0368942 -45861,3413:218:4,138.5,-41.5,0,0,-0.0375165 -45862,3413:219:3,139,-41.5,0,0,-0.0387762 -45863,3413:219:4,139.5,-41.5,0,0,-0.0383955 -45864,3414:110:3,140,-41.5,0,0,-0.0363988 -45865,3414:110:4,140.5,-41.5,0,0,-0.0357711 -45866,3414:111:3,141,-41.5,0,0,-0.041928 -45867,3414:111:4,141.5,-41.5,0,0,-0.0551049 -45868,3414:112:3,142,-41.5,0,0,-0.0643421 -45869,3414:112:4,142.5,-41.5,0,0,-0.0663882 -45870,3414:113:3,143,-41.5,0,0,-0.0652722 -45871,3414:113:4,143.5,-41.5,0,0,-0.059884 -45872,3414:114:3,144,-41.5,0,0,-0.0471649 -45873,3414:114:4,144.5,-41.5,0,0,-0.0385544 -45874,3414:215:3,145,-41.5,0,0,-0.0353885 -45875,3414:215:4,145.5,-41.5,0,0,-0.0355507 -45876,3414:216:3,146,-41.5,0,0,-0.0418895 -45877,3414:216:4,146.5,-41.5,0,0,-0.050843 -45878,3414:217:3,147,-41.5,0,0,-0.0558419 -45879,3414:217:4,147.5,-41.5,0,0,-0.0595065 -45880,3414:218:3,148,-41.5,0,0,-0.0604902 -45881,3414:218:4,148.5,-41.5,0,0,-0.0593537 -45882,3414:219:3,149,-41.5,0,0,-0.0545806 -45883,3414:219:4,149.5,-41.5,0,0,-0.0513176 -45884,3415:110:3,150,-41.5,0,0,-0.0499656 -45885,3415:110:4,150.5,-41.5,0,0,-0.0427766 -45886,3415:111:3,151,-41.5,0,0,-0.04105 -45887,3415:111:4,151.5,-41.5,0,0,-0.0425604 -45888,3415:112:3,152,-41.5,0,0,-0.0435827 -45889,3415:112:4,152.5,-41.5,0,0,-0.0456732 -45890,3415:113:3,153,-41.5,0,0,-0.0524141 -45891,3415:113:4,153.5,-41.5,0,0,-0.0627447 -45892,3415:114:3,154,-41.5,0,0,-0.0713632 -45893,3415:114:4,154.5,-41.5,0,0,-0.0759213 -45894,3415:215:3,155,-41.5,0,0,-0.0746868 -45895,3415:215:4,155.5,-41.5,0,0,-0.067748 -45896,3415:216:3,156,-41.5,0,0,-0.0552462 -45897,3415:216:4,156.5,-41.5,0,0,-0.0492525 -45898,3415:217:3,157,-41.5,0,0,-0.0465258 -45899,3415:217:4,157.5,-41.5,0,0,-0.0510676 -45900,3415:218:3,158,-41.5,0,0,-0.061419 -45901,3415:218:4,158.5,-41.5,0,0,-0.0678603 -45902,3415:219:3,159,-41.5,0,0,-0.0670331 -45903,3415:219:4,159.5,-41.5,0,0,-0.0653337 -45904,3416:110:3,160,-41.5,0,0,-0.0635905 -45905,3416:110:4,160.5,-41.5,0,0,-0.0611891 -45906,3416:111:3,161,-41.5,0,0,-0.0622602 -45907,3416:111:4,161.5,-41.5,0,0,-0.0633815 -45908,3416:112:3,162,-41.5,0,0,-0.060292 -45909,3416:112:4,162.5,-41.5,0,0,-0.0575628 -45910,3416:113:3,163,-41.5,0,0,-0.0565764 -45911,3416:113:4,163.5,-41.5,0,0,-0.0563131 -45912,3416:114:3,164,-41.5,0,0,-0.0555304 -45913,3416:114:4,164.5,-41.5,0,0,-0.0555043 -45914,3416:215:3,165,-41.5,0,0,-0.0575361 -45915,3416:215:4,165.5,-41.5,0,0,-0.0608312 -45916,3416:216:3,166,-41.5,0,0,-0.0594233 -45917,3416:216:4,166.5,-41.5,0,0,-0.0594925 -45918,3416:217:3,167,-41.5,0,0,-0.0589659 -45919,3416:217:4,167.5,-41.5,0,0,-0.0582397 -45920,3416:218:3,168,-41.5,0,0,-0.0574419 -45921,3416:218:4,168.5,-41.5,0,0,-0.0554269 -45922,3416:219:3,169,-41.5,0,0,-0.0521589 -45923,3416:219:4,169.5,-41.5,0,0,-0.0503613 -45924,3417:110:3,170,-41.5,0,0,-0.0496884 -45925,3417:110:4,170.5,-41.5,0,0,-0.0488546 -45926,3417:111:3,171,-41.5,0,0,-0.048303 -45927,3417:111:4,171.5,-41.5,0,0,-0.0481356 -45928,3417:112:3,172,-41.5,0,0,-0.0482695 -45929,3417:112:4,172.5,-41.5,0,0,-0.04846 -45930,3417:113:3,173,-41.5,0,0,-0.0486849 -45931,3417:113:4,173.5,-41.5,0,0,-0.0488093 -45932,3417:114:3,174,-41.5,0,0,-0.0491839 -45933,3417:114:4,174.5,-41.5,0,0,-0.0499426 -45934,3417:215:3,175,-41.5,0,0,-0.0500817 -45935,3417:215:4,175.5,-41.5,0,0,-0.0477913 -45936,3417:216:3,176,-41.5,0,0,-0.0431829 -45937,3417:216:4,176.5,-41.5,0,0,-0.0402739 -45938,3417:217:3,177,-41.5,0,0,-0.0391071 -45939,3417:217:4,177.5,-41.5,0,0,-0.0383251 -45940,3417:218:3,178,-41.5,0,0,-0.0369786 -45941,3417:218:4,178.5,-41.5,0,0,-0.0367505 -45942,3417:219:3,179,-41.5,0,0,-0.0376714 -45943,3417:219:4,179.5,-41.5,0,0,-0.0390351 -45944,3418:110:3,180,-41.5,0,0,-0.0399787 -45945,5418:110:1,-180,-41,0,0,-0.0436431 -45946,5417:219:2,-179.5,-41,0,0,-0.042895 -45947,5417:219:1,-179,-41,0,0,-0.0425311 -45948,5417:218:2,-178.5,-41,0,0,-0.0428854 -45949,5417:218:1,-178,-41,0,0,-0.0436631 -45950,5417:217:2,-177.5,-41,0,0,-0.0479686 -45951,5417:217:1,-177,-41,0,0,-0.0568014 -45952,5417:216:2,-176.5,-41,0,0,-0.0594789 -45953,5417:216:1,-176,-41,0,0,-0.058226 -45954,5417:215:2,-175.5,-41,0,0,-0.0556728 -45955,5417:215:1,-175,-41,0,0,-0.0549635 -45956,5417:114:2,-174.5,-41,0,0,-0.06139 -45957,5417:114:1,-174,-41,0,0,-0.0605755 -45958,5417:113:2,-173.5,-41,0,0,-0.0592702 -45959,5417:113:1,-173,-41,0,0,-0.0600383 -45960,5417:112:2,-172.5,-41,0,0,-0.0622896 -45961,5417:112:1,-172,-41,0,0,-0.0657655 -45962,5417:111:2,-171.5,-41,0,0,-0.0606748 -45963,5417:111:1,-171,-41,0,0,-0.0571877 -45964,5417:110:2,-170.5,-41,0,0,-0.0636051 -45965,5417:110:1,-170,-41,0,0,-0.0565503 -45966,5416:219:2,-169.5,-41,0,0,-0.0539108 -45967,5416:219:1,-169,-41,0,0,-0.0545298 -45968,5416:218:2,-168.5,-41,0,0,-0.0554009 -45969,5416:218:1,-168,-41,0,0,-0.0555434 -45970,5416:217:2,-167.5,-41,0,0,-0.0542383 -45971,5416:217:1,-167,-41,0,0,-0.0511984 -45972,5416:216:2,-166.5,-41,0,0,-0.0522441 -45973,5416:216:1,-166,-41,0,0,-0.0550148 -45974,5416:215:2,-165.5,-41,0,0,-0.0549893 -45975,5416:215:1,-165,-41,0,0,-0.054517 -45976,5416:114:2,-164.5,-41,0,0,-0.0575226 -45977,5416:114:1,-164,-41,0,0,-0.0643574 -45978,5416:113:2,-163.5,-41,0,0,-0.0732996 -45979,5416:113:1,-163,-41,0,0,-0.0790375 -45980,5416:112:2,-162.5,-41,0,0,-0.0736133 -45981,5416:112:1,-162,-41,0,0,-0.0606323 -45982,5416:111:2,-161.5,-41,0,0,-0.0594093 -45983,5416:111:1,-161,-41,0,0,-0.0617076 -45984,5416:110:2,-160.5,-41,0,0,-0.0635454 -45985,5416:110:1,-160,-41,0,0,-0.0676364 -45986,5415:219:2,-159.5,-41,0,0,-0.0733692 -45987,5415:219:1,-159,-41,0,0,-0.0790002 -45988,5415:218:2,-158.5,-41,0,0,-0.0825284 -45989,5415:218:1,-158,-41,0,0,-0.0936743 -45990,5415:217:2,-157.5,-41,0,0,-0.0981083 -45991,5415:217:1,-157,-41,0,0,-0.102098 -45992,5415:216:2,-156.5,-41,0,0,-0.102897 -45993,5415:216:1,-156,-41,0,0,-0.101429 -45994,5415:215:2,-155.5,-41,0,0,-0.0991134 -45995,5415:215:1,-155,-41,0,0,-0.0932004 -45996,5415:114:2,-154.5,-41,0,0,-0.0837219 -45997,5415:114:1,-154,-41,0,0,-0.0784373 -45998,5415:113:2,-153.5,-41,0,0,-0.0788497 -45999,5415:113:1,-153,-41,0,0,-0.0846091 -46000,5415:112:2,-152.5,-41,0,0,-0.0957824 -46001,5415:112:1,-152,-41,0,0,-0.0986336 -46002,5415:111:2,-151.5,-41,0,0,-0.092461 -46003,5415:111:1,-151,-41,0,0,-0.0909128 -46004,5415:110:2,-150.5,-41,0,0,-0.0921042 -46005,5415:110:1,-150,-41,0,0,-0.0888567 -46006,5414:219:2,-149.5,-41,0,0,-0.0842855 -46007,5414:219:1,-149,-41,0,0,-0.0829246 -46008,5414:218:2,-148.5,-41,0,0,-0.0839431 -46009,5414:218:1,-148,-41,0,0,-0.0870598 -46010,5414:217:2,-147.5,-41,0,0,-0.0912639 -46011,5414:217:1,-147,-41,0,0,-0.0944473 -46012,5414:216:2,-146.5,-41,0,0,-0.0957357 -46013,5414:216:1,-146,-41,0,0,-0.0955739 -46014,5414:215:2,-145.5,-41,0,0,-0.0949744 -46015,5414:215:1,-145,-41,0,0,-0.0942649 -46016,5414:114:2,-144.5,-41,0,0,-0.0934708 -46017,5414:114:1,-144,-41,0,0,-0.0927065 -46018,5414:113:2,-143.5,-41,0,0,-0.0913083 -46019,5414:113:1,-143,-41,0,0,-0.087795 -46020,5414:112:2,-142.5,-41,0,0,-0.0862275 -46021,5414:112:1,-142,-41,0,0,-0.0848527 -46022,5414:111:2,-141.5,-41,0,0,-0.0855885 -46023,5414:111:1,-141,-41,0,0,-0.0884513 -46024,5414:110:2,-140.5,-41,0,0,-0.0916166 -46025,5414:110:1,-140,-41,0,0,-0.0940829 -46026,5413:219:2,-139.5,-41,0,0,-0.0953891 -46027,5413:219:1,-139,-41,0,0,-0.0952504 -46028,5413:218:2,-138.5,-41,0,0,-0.0937199 -46029,5413:218:1,-138,-41,0,0,-0.0913963 -46030,5413:217:2,-137.5,-41,0,0,-0.089436 -46031,5413:217:1,-137,-41,0,0,-0.0889853 -46032,5413:216:2,-136.5,-41,0,0,-0.0898675 -46033,5413:216:1,-136,-41,0,0,-0.090432 -46034,5413:215:2,-135.5,-41,0,0,-0.0893927 -46035,5413:215:1,-135,-41,0,0,-0.0882814 -46036,5413:114:2,-134.5,-41,0,0,-0.0873321 -46037,5413:114:1,-134,-41,0,0,-0.086414 -46038,5413:113:2,-133.5,-41,0,0,-0.0862686 -46039,5413:113:1,-133,-41,0,0,-0.0859382 -46040,5413:112:2,-132.5,-41,0,0,-0.0847106 -46041,5413:112:1,-132,-41,0,0,-0.0834617 -46042,5413:111:2,-131.5,-41,0,0,-0.0826671 -46043,5413:111:1,-131,-41,0,0,-0.0823317 -46044,5413:110:2,-130.5,-41,0,0,-0.0822134 -46045,5413:110:1,-130,-41,0,0,-0.0820762 -46046,5412:219:2,-129.5,-41,0,0,-0.08188 -46047,5412:219:1,-129,-41,0,0,-0.0816844 -46048,5412:218:2,-128.5,-41,0,0,-0.0814506 -46049,5412:218:1,-128,-41,0,0,-0.081101 -46050,5412:217:2,-127.5,-41,0,0,-0.0804453 -46051,5412:217:1,-127,-41,0,0,-0.0789249 -46052,5412:216:2,-126.5,-41,0,0,-0.0753459 -46053,5412:216:1,-126,-41,0,0,-0.0663415 -46054,5412:215:2,-125.5,-41,0,0,-0.0651645 -46055,5412:215:1,-125,-41,0,0,-0.0663572 -46056,5412:114:2,-124.5,-41,0,0,-0.0675089 -46057,5412:114:1,-124,-41,0,0,-0.0696126 -46058,5412:113:2,-123.5,-41,0,0,-0.0717017 -46059,5412:113:1,-123,-41,0,0,-0.0699922 -46060,5412:112:2,-122.5,-41,0,0,-0.063695 -46061,5412:112:1,-122,-41,0,0,-0.0592288 -46062,5412:111:2,-121.5,-41,0,0,-0.0611318 -46063,5412:111:1,-121,-41,0,0,-0.0620705 -46064,5412:110:2,-120.5,-41,0,0,-0.059702 -46065,5412:110:1,-120,-41,0,0,-0.0572811 -46066,5411:219:2,-119.5,-41,0,0,-0.0567618 -46067,5411:219:1,-119,-41,0,0,-0.0573882 -46068,5411:218:2,-118.5,-41,0,0,-0.0596461 -46069,5411:218:1,-118,-41,0,0,-0.0599118 -46070,5411:217:2,-117.5,-41,0,0,-0.0593537 -46071,5411:217:1,-117,-41,0,0,-0.058485 -46072,5411:216:2,-116.5,-41,0,0,-0.0583758 -46073,5411:216:1,-116,-41,0,0,-0.0588006 -46074,5411:215:2,-115.5,-41,0,0,-0.0595206 -46075,5411:215:1,-115,-41,0,0,-0.0604051 -46076,5411:114:2,-114.5,-41,0,0,-0.061232 -46077,5411:114:1,-114,-41,0,0,-0.0613039 -46078,5411:113:2,-113.5,-41,0,0,-0.0604051 -46079,5411:113:1,-113,-41,0,0,-0.0588006 -46080,5411:112:2,-112.5,-41,0,0,-0.0566559 -46081,5411:112:1,-112,-41,0,0,-0.0541878 -46082,5411:111:2,-111.5,-41,0,0,-0.051389 -46083,5411:111:1,-111,-41,0,0,-0.049769 -46084,5411:110:2,-110.5,-41,0,0,-0.0491839 -46085,5411:110:1,-110,-41,0,0,-0.0500934 -46086,5410:219:2,-109.5,-41,0,0,-0.0507721 -46087,5410:219:1,-109,-41,0,0,-0.0504198 -46088,5410:218:2,-108.5,-41,0,0,-0.049036 -46089,5410:218:1,-108,-41,0,0,-0.0474274 -46090,5410:217:2,-107.5,-41,0,0,-0.0478025 -46091,5410:217:1,-107,-41,0,0,-0.0491499 -46092,5410:216:2,-106.5,-41,0,0,-0.0495272 -46093,5410:216:1,-106,-41,0,0,-0.0489566 -46094,5410:215:2,-105.5,-41,0,0,-0.0486285 -46095,5410:215:1,-105,-41,0,0,-0.0493094 -46096,5410:114:2,-104.5,-41,0,0,-0.049769 -46097,5410:114:1,-104,-41,0,0,-0.0501165 -46098,5410:113:2,-103.5,-41,0,0,-0.0494124 -46099,5410:113:1,-103,-41,0,0,-0.0481356 -46100,5410:112:2,-102.5,-41,0,0,-0.0468388 -46101,5410:112:1,-102,-41,0,0,-0.0458426 -46102,5410:111:2,-101.5,-41,0,0,-0.0454314 -46103,5410:111:1,-101,-41,0,0,-0.0457051 -46104,5410:110:2,-100.5,-41,0,0,-0.0462574 -46105,5410:110:1,-100,-41,0,0,-0.046601 -46106,5409:219:2,-99.5,-41,0,0,-0.0464612 -46107,5409:219:1,-99,-41,0,0,-0.0457897 -46108,5409:218:2,-98.5,-41,0,0,-0.0448787 -46109,5409:218:1,-98,-41,0,0,-0.0439257 -46110,5409:217:2,-97.5,-41,0,0,-0.0429841 -46111,5409:217:1,-97,-41,0,0,-0.0425212 -46112,5409:216:2,-96.5,-41,0,0,-0.0426388 -46113,5409:216:1,-96,-41,0,0,-0.0431131 -46114,5409:215:2,-95.5,-41,0,0,-0.0430734 -46115,5409:215:1,-95,-41,0,0,-0.0422673 -46116,5409:114:2,-94.5,-41,0,0,-0.0418125 -46117,5409:114:1,-94,-41,0,0,-0.0422575 -46118,5409:113:2,-93.5,-41,0,0,-0.0428359 -46119,5409:113:1,-93,-41,0,0,-0.0433125 -46120,5409:112:2,-92.5,-41,0,0,-0.0438954 -46121,5409:112:1,-92,-41,0,0,-0.0443127 -46122,5409:111:2,-91.5,-41,0,0,-0.0439867 -46123,5409:111:1,-91,-41,0,0,-0.0429249 -46124,5409:110:2,-90.5,-41,0,0,-0.0425113 -46125,5409:110:1,-90,-41,0,0,-0.0425702 -46126,5408:219:2,-89.5,-41,0,0,-0.042443 -46127,5408:219:1,-89,-41,0,0,-0.042083 -46128,5408:218:2,-88.5,-41,0,0,-0.0416875 -46129,5408:218:1,-88,-41,0,0,-0.0414007 -46130,5408:217:2,-87.5,-41,0,0,-0.0411821 -46131,5408:217:1,-87,-41,0,0,-0.0410404 -46132,5408:216:2,-86.5,-41,0,0,-0.0409932 -46133,5408:216:1,-86,-41,0,0,-0.040965 -46134,5408:215:2,-85.5,-41,0,0,-0.0408614 -46135,5408:215:1,-85,-41,0,0,-0.0407958 -46136,5408:114:2,-84.5,-41,0,0,-0.0408803 -46137,5408:114:1,-84,-41,0,0,-0.0405526 -46138,5408:113:2,-83.5,-41,0,0,-0.0400983 -46139,5408:113:1,-83,-41,0,0,-0.0398687 -46140,5408:112:2,-82.5,-41,0,0,-0.0418798 -46141,5408:112:1,-82,-41,0,0,-0.0448061 -46142,5408:111:2,-81.5,-41,0,0,-0.044641 -46143,5408:111:1,-81,-41,0,0,-0.0444765 -46144,5408:110:2,-80.5,-41,0,0,-0.0459592 -46145,5408:110:1,-80,-41,0,0,-0.0469908 -46146,5407:219:2,-79.5,-41,0,0,-0.0471104 -46147,5407:219:1,-79,-41,0,0,-0.048247 -46148,5407:218:2,-78.5,-41,0,0,-0.0480687 -46149,5407:218:1,-78,-41,0,0,-0.0449721 -46150,5407:217:2,-77.5,-41,0,0,-0.0456839 -46151,5407:217:1,-77,-41,0,0,-0.0484486 -46152,5407:216:2,-76.5,-41,0,0,-0.0538607 -46153,5407:216:1,-76,-41,0,0,-0.0597579 -46154,5407:215:2,-75.5,-41,0,0,-0.0605045 -46155,5407:215:1,-75,-41,0,0,-0.0751495 -46156,5406:219:1,-69,-41,0,0,-0.0694812 -46157,5406:218:2,-68.5,-41,0,0,-0.0591181 -46158,5406:218:1,-68,-41,0,0,-0.0512696 -46159,5406:217:2,-67.5,-41,0,0,-0.050047 -46160,5406:217:1,-67,-41,0,0,-0.0485948 -46161,5406:216:2,-66.5,-41,0,0,-0.0480354 -46162,5406:216:1,-66,-41,0,0,-0.0476696 -46163,5406:215:2,-65.5,-41,0,0,-0.0466227 -46164,5406:215:1,-65,-41,0,0,-0.0455048 -46165,5406:114:2,-64.5,-41,0,0,-0.0447855 -46166,5406:114:1,-64,-41,0,0,-0.0444559 -46167,5406:113:2,-63.5,-41,0,0,-0.0442002 -46168,5406:113:1,-63,-41,0,0,-0.0443227 -46169,5406:112:2,-62.5,-41,0,0,-0.0458743 -46170,5406:112:1,-62,-41,0,0,-0.0461827 -46171,5406:111:2,-61.5,-41,0,0,-0.0496884 -46172,5406:111:1,-61,-41,0,0,-0.0555822 -46173,5406:110:2,-60.5,-41,0,0,-0.0591594 -46174,5406:110:1,-60,-41,0,0,-0.0611458 -46175,5405:219:2,-59.5,-41,0,0,-0.0609026 -46176,5405:219:1,-59,-41,0,0,-0.0597998 -46177,5405:218:2,-58.5,-41,0,0,-0.0543649 -46178,5405:218:1,-58,-41,0,0,-0.049447 -46179,5405:217:2,-57.5,-41,0,0,-0.0448578 -46180,5405:217:1,-57,-41,0,0,-0.0414292 -46181,5405:216:2,-56.5,-41,0,0,-0.0386163 -46182,5405:216:1,-56,-41,0,0,-0.0366412 -46183,5405:215:2,-55.5,-41,0,0,-0.0351465 -46184,5405:215:1,-55,-41,0,0,-0.0336223 -46185,5405:114:2,-54.5,-41,0,0,-0.0314412 -46186,5405:114:1,-54,-41,0,0,-0.0289941 -46187,5405:113:2,-53.5,-41,0,0,-0.027662 -46188,5405:113:1,-53,-41,0,0,-0.0279714 -46189,5405:112:2,-52.5,-41,0,0,-0.0291261 -46190,5405:112:1,-52,-41,0,0,-0.0291658 -46191,5405:111:2,-51.5,-41,0,0,-0.0290666 -46192,5405:111:1,-51,-41,0,0,-0.0293656 -46193,5405:110:2,-50.5,-41,0,0,-0.0276808 -46194,5405:110:1,-50,-41,0,0,-0.0251319 -46195,5404:219:2,-49.5,-41,0,0,-0.0236368 -46196,5404:219:1,-49,-41,0,0,-0.0236206 -46197,5404:218:2,-48.5,-41,0,0,-0.0233709 -46198,5404:218:1,-48,-41,0,0,-0.0230508 -46199,5404:217:2,-47.5,-41,0,0,-0.0235939 -46200,5404:217:1,-47,-41,0,0,-0.0249786 -46201,5404:216:2,-46.5,-41,0,0,-0.0247927 -46202,5404:216:1,-46,-41,0,0,-0.0243257 -46203,5404:215:2,-45.5,-41,0,0,-0.0241282 -46204,5404:215:1,-45,-41,0,0,-0.0237599 -46205,5404:114:2,-44.5,-41,0,0,-0.0234821 -46206,5404:114:1,-44,-41,0,0,-0.0236046 -46207,5404:113:2,-43.5,-41,0,0,-0.023965 -46208,5404:113:1,-43,-41,0,0,-0.0241119 -46209,5404:112:2,-42.5,-41,0,0,-0.0236741 -46210,5404:112:1,-42,-41,0,0,-0.0227404 -46211,5404:111:2,-41.5,-41,0,0,-0.0216186 -46212,5404:111:1,-41,-41,0,0,-0.0211458 -46213,5404:110:2,-40.5,-41,0,0,-0.0194799 -46214,5404:110:1,-40,-41,0,0,-0.0187736 -46215,5403:219:2,-39.5,-41,0,0,-0.0198164 -46216,5403:219:1,-39,-41,0,0,-0.024832 -46217,5403:218:2,-38.5,-41,0,0,-0.0269004 -46218,5403:218:1,-38,-41,0,0,-0.0275492 -46219,5403:217:2,-37.5,-41,0,0,-0.0280351 -46220,5403:217:1,-37,-41,0,0,-0.0281051 -46221,5403:216:2,-36.5,-41,0,0,-0.0274056 -46222,5403:216:1,-36,-41,0,0,-0.0257485 -46223,5403:215:2,-35.5,-41,0,0,-0.0227609 -46224,5403:215:1,-35,-41,0,0,-0.0208756 -46225,5403:114:2,-34.5,-41,0,0,-0.0205162 -46226,5403:114:1,-34,-41,0,0,-0.0212558 -46227,5403:113:2,-33.5,-41,0,0,-0.0221623 -46228,5403:113:1,-33,-41,0,0,-0.0221573 -46229,5403:112:2,-32.5,-41,0,0,-0.0211029 -46230,5403:112:1,-32,-41,0,0,-0.019794 -46231,5403:111:2,-31.5,-41,0,0,-0.0192315 -46232,5403:111:1,-31,-41,0,0,-0.0207348 -46233,5403:110:2,-30.5,-41,0,0,-0.0222324 -46234,5403:110:1,-30,-41,0,0,-0.0219432 -46235,5402:219:2,-29.5,-41,0,0,-0.0212702 -46236,5402:219:1,-29,-41,0,0,-0.0213038 -46237,5402:218:2,-28.5,-41,0,0,-0.0220225 -46238,5402:218:1,-28,-41,0,0,-0.0225664 -46239,5402:217:2,-27.5,-41,0,0,-0.0225409 -46240,5402:217:1,-27,-41,0,0,-0.0211745 -46241,5402:216:2,-26.5,-41,0,0,-0.0192228 -46242,5402:216:1,-26,-41,0,0,-0.0191321 -46243,5402:215:2,-25.5,-41,0,0,-0.0203137 -46244,5402:215:1,-25,-41,0,0,-0.0209605 -46245,5402:114:2,-24.5,-41,0,0,-0.0204147 -46246,5402:114:1,-24,-41,0,0,-0.0211745 -46247,5402:113:2,-23.5,-41,0,0,-0.0221123 -46248,5402:113:1,-23,-41,0,0,-0.0220923 -46249,5402:112:2,-22.5,-41,0,0,-0.0219086 -46250,5402:112:1,-22,-41,0,0,-0.0221123 -46251,5402:111:2,-21.5,-41,0,0,-0.0211362 -46252,5402:111:1,-21,-41,0,0,-0.0192098 -46253,5402:110:2,-20.5,-41,0,0,-0.0187991 -46254,5402:110:1,-20,-41,0,0,-0.0189392 -46255,5401:219:2,-19.5,-41,0,0,-0.0192011 -46256,5401:219:1,-19,-41,0,0,-0.0189094 -46257,5401:218:2,-18.5,-41,0,0,-0.0181262 -46258,5401:218:1,-18,-41,0,0,-0.0183642 -46259,5401:217:2,-17.5,-41,0,0,-0.0208756 -46260,5401:217:1,-17,-41,0,0,-0.0227147 -46261,5401:216:2,-16.5,-41,0,0,-0.0214533 -46262,5401:216:1,-16,-41,0,0,-0.0211649 -46263,5401:215:2,-15.5,-41,0,0,-0.0207535 -46264,5401:215:1,-15,-41,0,0,-0.0203963 -46265,5401:114:2,-14.5,-41,0,0,-0.0209794 -46266,5401:114:1,-14,-41,0,0,-0.0219878 -46267,5401:113:2,-13.5,-41,0,0,-0.0234504 -46268,5401:113:1,-13,-41,0,0,-0.0244748 -46269,5401:112:2,-12.5,-41,0,0,-0.023965 -46270,5401:112:1,-12,-41,0,0,-0.0229469 -46271,5401:111:2,-11.5,-41,0,0,-0.0219332 -46272,5401:111:1,-11,-41,0,0,-0.021275 -46273,5401:110:2,-10.5,-41,0,0,-0.0210315 -46274,5401:110:1,-10,-41,0,0,-0.0202863 -46275,5400:219:2,-9.5,-41,0,0,-0.0185887 -46276,5400:219:1,-9,-41,0,0,-0.016575 -46277,5400:218:2,-8.5,-41,0,0,-0.0136767 -46278,5400:218:1,-8,-41,0,0,-0.0128285 -46279,5400:217:2,-7.5,-41,0,0,-0.012938 -46280,5400:217:1,-7,-41,0,0,-0.0126943 -46281,5400:216:2,-6.5,-41,0,0,-0.011799 -46282,5400:216:1,-6,-41,0,0,-0.0113186 -46283,5400:215:2,-5.5,-41,0,0,-0.0113668 -46284,5400:215:1,-5,-41,0,0,-0.0112832 -46285,5400:114:2,-4.5,-41,0,0,-0.0109701 -46286,5400:114:1,-4,-41,0,0,-0.0117569 -46287,5400:113:2,-3.5,-41,0,0,-0.0131453 -46288,5400:113:1,-3,-41,0,0,-0.0140021 -46289,5400:112:2,-2.5,-41,0,0,-0.0133888 -46290,5400:112:1,-2,-41,0,0,-0.0128113 -46291,5400:111:2,-1.5,-41,0,0,-0.0127826 -46292,5400:111:1,-1,-41,0,0,-0.0134068 -46293,5400:110:2,-0.5,-41,0,0,-0.0140273 -46294,3400:110:2,0,-41,0,0,-0.0141694 -46295,3400:110:2,0.5,-41,0,0,-0.0133439 -46296,3400:111:1,1,-41,0,0,-0.0115821 -46297,3400:111:2,1.5,-41,0,0,-0.0108338 -46298,3400:112:1,2,-41,0,0,-0.0115356 -46299,3400:112:2,2.5,-41,0,0,-0.0118917 -46300,3400:113:1,3,-41,0,0,-0.0117045 -46301,3400:113:2,3.5,-41,0,0,-0.0114457 -46302,3400:114:1,4,-41,0,0,-0.0111057 -46303,3400:114:2,4.5,-41,0,0,-0.0112984 -46304,3400:215:1,5,-41,0,0,-0.0127712 -46305,3400:215:2,5.5,-41,0,0,-0.0162981 -46306,3400:216:1,6,-41,0,0,-0.017723 -46307,3400:216:2,6.5,-41,0,0,-0.014416 -46308,3400:217:1,7,-41,0,0,-0.0132694 -46309,3400:217:2,7.5,-41,0,0,-0.0131541 -46310,3400:218:1,8,-41,0,0,-0.0142746 -46311,3400:218:2,8.5,-41,0,0,-0.0152199 -46312,3400:219:1,9,-41,0,0,-0.0154851 -46313,3400:219:2,9.5,-41,0,0,-0.0155827 -46314,3401:110:1,10,-41,0,0,-0.0153571 -46315,3401:110:2,10.5,-41,0,0,-0.0147263 -46316,3401:111:1,11,-41,0,0,-0.0134519 -46317,3401:111:2,11.5,-41,0,0,-0.0133529 -46318,3401:112:1,12,-41,0,0,-0.0139427 -46319,3401:112:2,12.5,-41,0,0,-0.0139771 -46320,3401:113:1,13,-41,0,0,-0.0130427 -46321,3401:113:2,13.5,-41,0,0,-0.0115124 -46322,3401:114:1,14,-41,0,0,-0.011243 -46323,3401:114:2,14.5,-41,0,0,-0.0112129 -46324,3401:215:1,15,-41,0,0,-0.0120685 -46325,3401:215:2,15.5,-41,0,0,-0.0134309 -46326,3401:216:1,16,-41,0,0,-0.0147958 -46327,3401:216:2,16.5,-41,0,0,-0.0152233 -46328,3401:217:1,17,-41,0,0,-0.0147859 -46329,3401:217:2,17.5,-41,0,0,-0.0144548 -46330,3401:218:1,18,-41,0,0,-0.0148791 -46331,3401:218:2,18.5,-41,0,0,-0.0138586 -46332,3401:219:1,19,-41,0,0,-0.0118466 -46333,3401:219:2,19.5,-41,0,0,-0.0110982 -46334,3402:110:1,20,-41,0,0,-0.0110784 -46335,3402:110:2,20.5,-41,0,0,-0.0112984 -46336,3402:111:1,21,-41,0,0,-0.0120712 -46337,3402:111:2,21.5,-41,0,0,-0.014043 -46338,3402:112:1,22,-41,0,0,-0.0150941 -46339,3402:112:2,22.5,-41,0,0,-0.013772 -46340,3402:113:1,23,-41,0,0,-0.0114842 -46341,3402:113:2,23.5,-41,0,0,-0.0107063 -46342,3402:114:1,24,-41,0,0,-0.0111505 -46343,3402:114:2,24.5,-41,0,0,-0.0119691 -46344,3402:215:1,25,-41,0,0,-0.0127028 -46345,3402:215:2,25.5,-41,0,0,-0.0128314 -46346,3402:216:1,26,-41,0,0,-0.0119477 -46347,3402:216:2,26.5,-41,0,0,-0.0119959 -46348,3402:217:1,27,-41,0,0,-0.0159542 -46349,3402:217:2,27.5,-41,0,0,-0.0193139 -46350,3402:218:1,28,-41,0,0,-0.01959 -46351,3402:218:2,28.5,-41,0,0,-0.0176474 -46352,3402:219:1,29,-41,0,0,-0.0138152 -46353,3402:219:2,29.5,-41,0,0,-0.0151212 -46354,3403:110:1,30,-41,0,0,-0.0172048 -46355,3403:110:2,30.5,-41,0,0,-0.0168075 -46356,3403:111:1,31,-41,0,0,-0.0156458 -46357,3403:111:2,31.5,-41,0,0,-0.0141029 -46358,3403:112:1,32,-41,0,0,-0.0133799 -46359,3403:112:2,32.5,-41,0,0,-0.0129699 -46360,3403:113:1,33,-41,0,0,-0.0121742 -46361,3403:113:2,33.5,-41,0,0,-0.0122179 -46362,3403:114:1,34,-41,0,0,-0.012539 -46363,3403:114:2,34.5,-41,0,0,-0.0133649 -46364,3403:215:1,35,-41,0,0,-0.013806 -46365,3403:215:2,35.5,-41,0,0,-0.0141473 -46366,3403:216:1,36,-41,0,0,-0.0140619 -46367,3403:216:2,36.5,-41,0,0,-0.0139771 -46368,3403:217:1,37,-41,0,0,-0.0130135 -46369,3403:217:2,37.5,-41,0,0,-0.0130281 -46370,3403:218:1,38,-41,0,0,-0.0138959 -46371,3403:218:2,38.5,-41,0,0,-0.0150569 -46372,3403:219:1,39,-41,0,0,-0.0154956 -46373,3403:219:2,39.5,-41,0,0,-0.0143741 -46374,3404:110:1,40,-41,0,0,-0.0132516 -46375,3404:110:2,40.5,-41,0,0,-0.0130514 -46376,3404:111:1,41,-41,0,0,-0.0132102 -46377,3404:111:2,41.5,-41,0,0,-0.0134038 -46378,3404:112:1,42,-41,0,0,-0.0135973 -46379,3404:112:2,42.5,-41,0,0,-0.0136705 -46380,3404:113:1,43,-41,0,0,-0.013775 -46381,3404:113:2,43.5,-41,0,0,-0.0143066 -46382,3404:114:1,44,-41,0,0,-0.0153192 -46383,3404:114:2,44.5,-41,0,0,-0.0159542 -46384,3404:215:1,45,-41,0,0,-0.0159077 -46385,3404:215:2,45.5,-41,0,0,-0.0158045 -46386,3404:216:1,46,-41,0,0,-0.0156247 -46387,3404:216:2,46.5,-41,0,0,-0.0150941 -46388,3404:217:1,47,-41,0,0,-0.0142587 -46389,3404:217:2,47.5,-41,0,0,-0.0135821 -46390,3404:218:1,48,-41,0,0,-0.013732 -46391,3404:218:2,48.5,-41,0,0,-0.0146441 -46392,3404:219:1,49,-41,0,0,-0.0150873 -46393,3404:219:2,49.5,-41,0,0,-0.0146407 -46394,3405:110:1,50,-41,0,0,-0.0141853 -46395,3405:110:2,50.5,-41,0,0,-0.0143516 -46396,3405:111:1,51,-41,0,0,-0.0146309 -46397,3405:111:2,51.5,-41,0,0,-0.0148091 -46398,3405:112:1,52,-41,0,0,-0.0149593 -46399,3405:112:2,52.5,-41,0,0,-0.0149828 -46400,3405:113:1,53,-41,0,0,-0.0149896 -46401,3405:113:2,53.5,-41,0,0,-0.0151552 -46402,3405:114:1,54,-41,0,0,-0.0153743 -46403,3405:114:2,54.5,-41,0,0,-0.0152506 -46404,3405:215:1,55,-41,0,0,-0.0147198 -46405,3405:215:2,55.5,-41,0,0,-0.0141188 -46406,3405:216:1,56,-41,0,0,-0.0138307 -46407,3405:216:2,56.5,-41,0,0,-0.0141853 -46408,3405:217:1,57,-41,0,0,-0.0150064 -46409,3405:217:2,57.5,-41,0,0,-0.014859 -46410,3405:218:1,58,-41,0,0,-0.0143227 -46411,3405:218:2,58.5,-41,0,0,-0.0151756 -46412,3405:219:1,59,-41,0,0,-0.016601 -46413,3405:219:2,59.5,-41,0,0,-0.0167021 -46414,3406:110:1,60,-41,0,0,-0.0163788 -46415,3406:110:2,60.5,-41,0,0,-0.01608 -46416,3406:111:1,61,-41,0,0,-0.0160008 -46417,3406:111:2,61.5,-41,0,0,-0.0159399 -46418,3406:112:1,62,-41,0,0,-0.0158365 -46419,3406:112:2,62.5,-41,0,0,-0.0156598 -46420,3406:113:1,63,-41,0,0,-0.0154123 -46421,3406:113:2,63.5,-41,0,0,-0.0151178 -46422,3406:114:1,64,-41,0,0,-0.0148523 -46423,3406:114:2,64.5,-41,0,0,-0.0146835 -46424,3406:215:1,65,-41,0,0,-0.0145655 -46425,3406:215:2,65.5,-41,0,0,-0.0144226 -46426,3406:216:1,66,-41,0,0,-0.0141599 -46427,3406:216:2,66.5,-41,0,0,-0.0137473 -46428,3406:217:1,67,-41,0,0,-0.0133022 -46429,3406:217:2,67.5,-41,0,0,-0.0131483 -46430,3406:218:1,68,-41,0,0,-0.0133559 -46431,3406:218:2,68.5,-41,0,0,-0.0133888 -46432,3406:219:1,69,-41,0,0,-0.0133858 -46433,3406:219:2,69.5,-41,0,0,-0.0132902 -46434,3407:110:1,70,-41,0,0,-0.0133589 -46435,3407:110:2,70.5,-41,0,0,-0.0132368 -46436,3407:111:1,71,-41,0,0,-0.0127741 -46437,3407:111:2,71.5,-41,0,0,-0.0126687 -46438,3407:112:1,72,-41,0,0,-0.0128228 -46439,3407:112:2,72.5,-41,0,0,-0.0129207 -46440,3407:113:2,73.5,-41,0,0,-0.0129496 -46441,3407:114:1,74,-41,0,0,-0.0128256 -46442,3407:114:2,74.5,-41,0,0,-0.0124691 -46443,3407:215:1,75,-41,0,0,-0.011647 -46444,3407:215:2,75.5,-41,0,0,-0.0105378 -46445,3407:216:1,76,-41,0,0,-0.0100217 -46446,3407:216:2,76.5,-41,0,0,-0.0107326 -46447,3407:217:1,77,-41,0,0,-0.013732 -46448,3407:217:2,77.5,-41,0,0,-0.0146572 -46449,3407:218:1,78,-41,0,0,-0.0148257 -46450,3407:218:2,78.5,-41,0,0,-0.0131247 -46451,3407:219:1,79,-41,0,0,-0.013735 -46452,3407:219:2,79.5,-41,0,0,-0.0177309 -46453,3408:110:1,80,-41,0,0,-0.0257778 -46454,3408:110:2,80.5,-41,0,0,-0.0275992 -46455,3408:111:1,81,-41,0,0,-0.0272444 -46456,3408:111:2,81.5,-41,0,0,-0.0273435 -46457,3408:112:1,82,-41,0,0,-0.0263807 -46458,3408:112:2,82.5,-41,0,0,-0.0246526 -46459,3408:113:1,83,-41,0,0,-0.0240901 -46460,3408:113:2,83.5,-41,0,0,-0.0246472 -46461,3408:114:1,84,-41,0,0,-0.0258361 -46462,3408:114:2,84.5,-41,0,0,-0.0255278 -46463,3408:215:1,85,-41,0,0,-0.0280096 -46464,3408:215:2,85.5,-41,0,0,-0.0290732 -46465,3408:216:1,86,-41,0,0,-0.027195 -46466,3408:216:2,86.5,-41,0,0,-0.0259712 -46467,3408:217:1,87,-41,0,0,-0.0254816 -46468,3408:217:2,87.5,-41,0,0,-0.0249446 -46469,3408:218:1,88,-41,0,0,-0.0265127 -46470,3408:218:2,88.5,-41,0,0,-0.0303852 -46471,3408:219:1,89,-41,0,0,-0.0325276 -46472,3408:219:2,89.5,-41,0,0,-0.0322395 -46473,3409:110:1,90,-41,0,0,-0.0313196 -46474,3409:110:2,90.5,-41,0,0,-0.0365407 -46475,3409:111:1,91,-41,0,0,-0.03596 -46476,3409:111:2,91.5,-41,0,0,-0.0352349 -46477,3409:112:1,92,-41,0,0,-0.0316065 -46478,3409:112:2,92.5,-41,0,0,-0.0265788 -46479,3409:113:1,93,-41,0,0,-0.0253549 -46480,3409:113:2,93.5,-41,0,0,-0.0266029 -46481,3409:114:1,94,-41,0,0,-0.0282203 -46482,3409:114:2,94.5,-41,0,0,-0.0300139 -46483,3409:215:1,95,-41,0,0,-0.0305168 -46484,3409:215:2,95.5,-41,0,0,-0.029898 -46485,3409:216:1,96,-41,0,0,-0.0286534 -46486,3409:216:2,96.5,-41,0,0,-0.0277563 -46487,3409:217:1,97,-41,0,0,-0.0270288 -46488,3409:217:2,97.5,-41,0,0,-0.0261188 -46489,3409:218:1,98,-41,0,0,-0.0253032 -46490,3409:218:2,98.5,-41,0,0,-0.0247253 -46491,3409:219:1,99,-41,0,0,-0.0241666 -46492,3409:219:2,99.5,-41,0,0,-0.0240086 -46493,3410:110:1,100,-41,0,0,-0.0243753 -46494,3410:110:2,100.5,-41,0,0,-0.0248095 -46495,3410:111:1,101,-41,0,0,-0.0245247 -46496,3410:111:2,101.5,-41,0,0,-0.0246249 -46497,3410:112:1,102,-41,0,0,-0.0236581 -46498,3410:112:2,102.5,-41,0,0,-0.0220225 -46499,3410:113:1,103,-41,0,0,-0.0204331 -46500,3410:113:2,103.5,-41,0,0,-0.0195943 -46501,3410:114:1,104,-41,0,0,-0.0198208 -46502,3410:114:2,104.5,-41,0,0,-0.0204331 -46503,3410:215:1,105,-41,0,0,-0.0208708 -46504,3410:215:2,105.5,-41,0,0,-0.0206602 -46505,3410:216:1,106,-41,0,0,-0.0198252 -46506,3410:216:2,106.5,-41,0,0,-0.0187695 -46507,3410:217:1,107,-41,0,0,-0.0182653 -46508,3410:217:2,107.5,-41,0,0,-0.0196695 -46509,3410:218:1,108,-41,0,0,-0.0224647 -46510,3410:218:2,108.5,-41,0,0,-0.0229989 -46511,3410:219:1,109,-41,0,0,-0.0224596 -46512,3410:219:2,109.5,-41,0,0,-0.0217066 -46513,3411:110:1,110,-41,0,0,-0.0203137 -46514,3411:110:2,110.5,-41,0,0,-0.020236 -46515,3411:111:1,111,-41,0,0,-0.0204285 -46516,3411:111:2,111.5,-41,0,0,-0.0209275 -46517,3411:112:1,112,-41,0,0,-0.0218492 -46518,3411:112:2,112.5,-41,0,0,-0.023297 -46519,3411:113:1,113,-41,0,0,-0.0245636 -46520,3411:113:2,113.5,-41,0,0,-0.0253491 -46521,3411:114:1,114,-41,0,0,-0.025842 -46522,3411:114:2,114.5,-41,0,0,-0.0263568 -46523,3411:215:1,115,-41,0,0,-0.0284522 -46524,3411:215:2,115.5,-41,0,0,-0.0320563 -46525,3411:216:1,116,-41,0,0,-0.0320197 -46526,3411:216:2,116.5,-41,0,0,-0.0308663 -46527,3411:217:1,117,-41,0,0,-0.0289675 -46528,3411:217:2,117.5,-41,0,0,-0.0272259 -46529,3411:218:1,118,-41,0,0,-0.0262614 -46530,3411:218:2,118.5,-41,0,0,-0.0259066 -46531,3411:219:1,119,-41,0,0,-0.0265066 -46532,3411:219:2,119.5,-41,0,0,-0.0273745 -46533,3412:110:1,120,-41,0,0,-0.0289545 -46534,3412:110:2,120.5,-41,0,0,-0.0329085 -46535,3412:111:1,121,-41,0,0,-0.0372337 -46536,3412:111:2,121.5,-41,0,0,-0.0396769 -46537,3412:112:1,122,-41,0,0,-0.0405432 -46538,3412:112:2,122.5,-41,0,0,-0.0403387 -46539,3412:113:1,123,-41,0,0,-0.0390173 -46540,3412:113:2,123.5,-41,0,0,-0.0362242 -46541,3412:114:1,124,-41,0,0,-0.0340784 -46542,3412:114:2,124.5,-41,0,0,-0.0336453 -46543,3412:215:1,125,-41,0,0,-0.0342502 -46544,3412:215:2,125.5,-41,0,0,-0.0351063 -46545,3412:216:1,126,-41,0,0,-0.0350581 -46546,3412:216:2,126.5,-41,0,0,-0.0343207 -46547,3412:217:1,127,-41,0,0,-0.0415151 -46548,3412:217:2,127.5,-41,0,0,-0.0520982 -46549,3412:218:1,128,-41,0,0,-0.0523535 -46550,3412:218:2,128.5,-41,0,0,-0.0504198 -46551,3412:219:1,129,-41,0,0,-0.0478799 -46552,3412:219:2,129.5,-41,0,0,-0.0473836 -46553,3413:110:1,130,-41,0,0,-0.0471976 -46554,3413:110:2,130.5,-41,0,0,-0.0470233 -46555,3413:111:1,131,-41,0,0,-0.0468603 -46556,3413:111:2,131.5,-41,0,0,-0.046709 -46557,3413:112:1,132,-41,0,0,-0.0463217 -46558,3413:112:2,132.5,-41,0,0,-0.0455784 -46559,3413:113:1,133,-41,0,0,-0.0445998 -46560,3413:113:2,133.5,-41,0,0,-0.0440272 -46561,3413:114:1,134,-41,0,0,-0.0441085 -46562,3413:114:2,134.5,-41,0,0,-0.0438753 -46563,3413:215:1,135,-41,0,0,-0.0424528 -46564,3413:215:2,135.5,-41,0,0,-0.0413818 -46565,3413:216:1,136,-41,0,0,-0.0403851 -46566,3413:216:2,136.5,-41,0,0,-0.0389905 -46567,3413:217:1,137,-41,0,0,-0.0374905 -46568,3413:217:2,137.5,-41,0,0,-0.0366917 -46569,3413:218:1,138,-41,0,0,-0.0367423 -46570,3413:218:2,138.5,-41,0,0,-0.0401907 -46571,3413:219:1,139,-41,0,0,-0.0424528 -46572,3413:219:2,139.5,-41,0,0,-0.042015 -46573,3414:110:1,140,-41,0,0,-0.0428359 -46574,3414:110:2,140.5,-41,0,0,-0.0510087 -46575,3414:111:1,141,-41,0,0,-0.0632476 -46576,3414:111:2,141.5,-41,0,0,-0.0671277 -46577,3414:112:1,142,-41,0,0,-0.0675245 -46578,3414:112:2,142.5,-41,0,0,-0.0668751 -46579,3414:113:1,143,-41,0,0,-0.0652413 -46580,3414:113:2,143.5,-41,0,0,-0.0615633 -46581,3414:114:1,144,-41,0,0,-0.0475045 -46582,3414:114:2,144.5,-41,0,0,-0.0393774 -46583,3414:215:1,145,-41,0,0,-0.0406272 -46584,3414:215:2,145.5,-41,0,0,-0.0469039 -46585,3414:216:1,146,-41,0,0,-0.0487979 -46586,3414:216:2,146.5,-41,0,0,-0.053798 -46587,3414:217:1,147,-41,0,0,-0.0587318 -46588,3414:217:2,147.5,-41,0,0,-0.0612894 -46589,3414:218:1,148,-41,0,0,-0.0637549 -46590,3414:218:2,148.5,-41,0,0,-0.0608312 -46591,3414:219:1,149,-41,0,0,-0.0569477 -46592,3414:219:2,149.5,-41,0,0,-0.0544918 -46593,3415:110:1,150,-41,0,0,-0.0536979 -46594,3415:110:2,150.5,-41,0,0,-0.0492752 -46595,3415:111:1,151,-41,0,0,-0.0433222 -46596,3415:111:2,151.5,-41,0,0,-0.0418895 -46597,3415:112:1,152,-41,0,0,-0.0433924 -46598,3415:112:2,152.5,-41,0,0,-0.0460231 -46599,3415:113:1,153,-41,0,0,-0.0561557 -46600,3415:113:2,153.5,-41,0,0,-0.0772875 -46601,3415:114:1,154,-41,0,0,-0.0833423 -46602,3415:114:2,154.5,-41,0,0,-0.0833022 -46603,3415:215:1,155,-41,0,0,-0.0836021 -46604,3415:215:2,155.5,-41,0,0,-0.0841446 -46605,3415:216:1,156,-41,0,0,-0.0711609 -46606,3415:216:2,156.5,-41,0,0,-0.0552462 -46607,3415:217:1,157,-41,0,0,-0.0486285 -46608,3415:217:2,157.5,-41,0,0,-0.0508665 -46609,3415:218:1,158,-41,0,0,-0.0619107 -46610,3415:218:2,158.5,-41,0,0,-0.0706407 -46611,3415:219:1,159,-41,0,0,-0.0697116 -46612,3415:219:2,159.5,-41,0,0,-0.066954 -46613,3416:110:1,160,-41,0,0,-0.0641458 -46614,3416:110:2,160.5,-41,0,0,-0.0620123 -46615,3416:111:1,161,-41,0,0,-0.0658743 -46616,3416:111:2,161.5,-41,0,0,-0.0678441 -46617,3416:112:1,162,-41,0,0,-0.066954 -46618,3416:112:2,162.5,-41,0,0,-0.062027 -46619,3416:113:1,163,-41,0,0,-0.0579541 -46620,3416:113:2,163.5,-41,0,0,-0.0574419 -46621,3416:114:1,164,-41,0,0,-0.0575091 -46622,3416:114:2,164.5,-41,0,0,-0.0581173 -46623,3416:215:1,165,-41,0,0,-0.0593813 -46624,3416:215:2,165.5,-41,0,0,-0.062027 -46625,3416:216:1,166,-41,0,0,-0.0621728 -46626,3416:216:2,166.5,-41,0,0,-0.0601229 -46627,3416:217:1,167,-41,0,0,-0.0600246 -46628,3416:217:2,167.5,-41,0,0,-0.0593813 -46629,3416:218:1,168,-41,0,0,-0.0585264 -46630,3416:218:2,168.5,-41,0,0,-0.0566164 -46631,3416:219:1,169,-41,0,0,-0.053798 -46632,3416:219:2,169.5,-41,0,0,-0.052634 -46633,3417:110:1,170,-41,0,0,-0.052512 -46634,3417:110:2,170.5,-41,0,0,-0.0515802 -46635,3417:111:1,171,-41,0,0,-0.0504666 -46636,3417:111:2,171.5,-41,0,0,-0.049873 -46637,3417:112:1,172,-41,0,0,-0.0496307 -46638,3417:112:2,172.5,-41,0,0,-0.0497461 -46639,3417:113:1,173,-41,0,0,-0.0498613 -46640,3417:113:2,173.5,-41,0,0,-0.0496536 -46641,3417:114:1,174,-41,0,0,-0.0498384 -46642,3417:114:2,174.5,-41,0,0,-0.0505253 -46643,3417:215:1,175,-41,0,0,-0.0502448 -46644,3417:215:2,175.5,-41,0,0,-0.0493094 -46645,3417:216:1,176,-41,0,0,-0.0463862 -46646,3417:216:2,176.5,-41,0,0,-0.0440477 -46647,3417:217:1,177,-41,0,0,-0.0433722 -46648,3417:217:2,177.5,-41,0,0,-0.0432726 -46649,3417:218:1,178,-41,0,0,-0.0433524 -46650,3417:218:2,178.5,-41,0,0,-0.0434923 -46651,3417:219:1,179,-41,0,0,-0.0439257 -46652,3417:219:2,179.5,-41,0,0,-0.0440781 -46653,3418:110:1,180,-41,0,0,-0.0436431 -46654,5418:100:3,-180,-40.5,0,0,-0.0481802 -46655,5417:209:4,-179.5,-40.5,0,0,-0.046601 -46656,5417:209:3,-179,-40.5,0,0,-0.0439867 -46657,5417:208:4,-178.5,-40.5,0,0,-0.0438247 -46658,5417:208:3,-178,-40.5,0,0,-0.0458954 -46659,5417:207:4,-177.5,-40.5,0,0,-0.0532006 -46660,5417:207:3,-177,-40.5,0,0,-0.0623191 -46661,5417:206:4,-176.5,-40.5,0,0,-0.0616643 -46662,5417:206:3,-176,-40.5,0,0,-0.0588284 -46663,5417:205:4,-175.5,-40.5,0,0,-0.0551688 -46664,5417:205:3,-175,-40.5,0,0,-0.0573747 -46665,5417:104:4,-174.5,-40.5,0,0,-0.0598139 -46666,5417:104:3,-174,-40.5,0,0,-0.0584579 -46667,5417:103:4,-173.5,-40.5,0,0,-0.0589937 -46668,5417:103:3,-173,-40.5,0,0,-0.0581173 -46669,5417:102:4,-172.5,-40.5,0,0,-0.0616211 -46670,5417:102:3,-172,-40.5,0,0,-0.0690557 -46671,5417:101:4,-171.5,-40.5,0,0,-0.0717867 -46672,5417:101:3,-171,-40.5,0,0,-0.0645086 -46673,5417:100:4,-170.5,-40.5,0,0,-0.0659828 -46674,5417:100:3,-170,-40.5,0,0,-0.0692846 -46675,5416:209:4,-169.5,-40.5,0,0,-0.0676841 -46676,5416:209:3,-169,-40.5,0,0,-0.0715154 -46677,5416:208:4,-168.5,-40.5,0,0,-0.0769023 -46678,5416:208:3,-168,-40.5,0,0,-0.0823317 -46679,5416:207:4,-167.5,-40.5,0,0,-0.0837623 -46680,5416:207:3,-167,-40.5,0,0,-0.0812951 -46681,5416:206:4,-166.5,-40.5,0,0,-0.0682455 -46682,5416:206:3,-166,-40.5,0,0,-0.0582942 -46683,5416:205:4,-165.5,-40.5,0,0,-0.0544535 -46684,5416:205:3,-165,-40.5,0,0,-0.0534486 -46685,5416:104:4,-164.5,-40.5,0,0,-0.0559725 -46686,5416:104:3,-164,-40.5,0,0,-0.0647062 -46687,5416:103:4,-163.5,-40.5,0,0,-0.0765192 -46688,5416:103:3,-163,-40.5,0,0,-0.0838027 -46689,5416:102:4,-162.5,-40.5,0,0,-0.0827263 -46690,5416:102:3,-162,-40.5,0,0,-0.0798144 -46691,5416:101:4,-161.5,-40.5,0,0,-0.0738931 -46692,5416:101:3,-161,-40.5,0,0,-0.0691867 -46693,5416:100:4,-160.5,-40.5,0,0,-0.0699095 -46694,5416:100:3,-160,-40.5,0,0,-0.0752563 -46695,5415:209:4,-159.5,-40.5,0,0,-0.083402 -46696,5415:209:3,-159,-40.5,0,0,-0.0848936 -46697,5415:208:4,-158.5,-40.5,0,0,-0.095968 -46698,5415:208:3,-158,-40.5,0,0,-0.100912 -46699,5415:207:4,-157.5,-40.5,0,0,-0.104235 -46700,5415:207:3,-157,-40.5,0,0,-0.106551 -46701,5415:206:4,-156.5,-40.5,0,0,-0.103198 -46702,5415:206:3,-156,-40.5,0,0,-0.0998383 -46703,5415:205:4,-155.5,-40.5,0,0,-0.0991854 -46704,5415:205:3,-155,-40.5,0,0,-0.098657 -46705,5415:104:4,-154.5,-40.5,0,0,-0.0930878 -46706,5415:104:3,-154,-40.5,0,0,-0.0862686 -46707,5415:103:4,-153.5,-40.5,0,0,-0.0858149 -46708,5415:103:3,-153,-40.5,0,0,-0.0917056 -46709,5415:102:4,-152.5,-40.5,0,0,-0.0999354 -46710,5415:102:3,-152,-40.5,0,0,-0.0998872 -46711,5415:101:4,-151.5,-40.5,0,0,-0.0964102 -46712,5415:101:3,-151,-40.5,0,0,-0.093992 -46713,5415:100:4,-150.5,-40.5,0,0,-0.0955739 -46714,5415:100:3,-150,-40.5,0,0,-0.0977285 -46715,5414:209:4,-149.5,-40.5,0,0,-0.098993 -46716,5414:209:3,-149,-40.5,0,0,-0.0984657 -46717,5414:208:4,-148.5,-40.5,0,0,-0.0973733 -46718,5414:208:3,-148,-40.5,0,0,-0.0974439 -46719,5414:207:4,-147.5,-40.5,0,0,-0.0985138 -46720,5414:207:3,-147,-40.5,0,0,-0.0988728 -46721,5414:206:4,-146.5,-40.5,0,0,-0.0993304 -46722,5414:206:3,-146,-40.5,0,0,-0.100447 -46723,5414:205:4,-145.5,-40.5,0,0,-0.101775 -46724,5414:205:3,-145,-40.5,0,0,-0.10185 -46725,5414:104:4,-144.5,-40.5,0,0,-0.100667 -46726,5414:104:3,-144,-40.5,0,0,-0.0991377 -46727,5414:103:4,-143.5,-40.5,0,0,-0.097161 -46728,5414:103:3,-143,-40.5,0,0,-0.0929754 -46729,5414:102:4,-142.5,-40.5,0,0,-0.0908032 -46730,5414:102:3,-142,-40.5,0,0,-0.0915283 -46731,5414:101:4,-141.5,-40.5,0,0,-0.0946077 -46732,5414:101:3,-141,-40.5,0,0,-0.0982508 -46733,5414:100:4,-140.5,-40.5,0,0,-0.101281 -46734,5414:100:3,-140,-40.5,0,0,-0.101924 -46735,5413:209:4,-139.5,-40.5,0,0,-0.100227 -46736,5413:209:3,-139,-40.5,0,0,-0.0980132 -46737,5413:208:4,-138.5,-40.5,0,0,-0.096154 -46738,5413:208:3,-138,-40.5,0,0,-0.0949057 -46739,5413:207:4,-137.5,-40.5,0,0,-0.0942649 -46740,5413:207:3,-137,-40.5,0,0,-0.0940149 -46741,5413:206:4,-136.5,-40.5,0,0,-0.0939012 -46742,5413:206:3,-136,-40.5,0,0,-0.092998 -46743,5413:205:4,-135.5,-40.5,0,0,-0.092416 -46744,5413:205:3,-135,-40.5,0,0,-0.0922603 -46745,5413:104:4,-134.5,-40.5,0,0,-0.0917941 -46746,5413:104:3,-134,-40.5,0,0,-0.0909349 -46747,5413:103:4,-133.5,-40.5,0,0,-0.0895866 -46748,5413:103:3,-133,-40.5,0,0,-0.0877313 -46749,5413:102:4,-132.5,-40.5,0,0,-0.086497 -46750,5413:102:3,-132,-40.5,0,0,-0.0858351 -46751,5413:101:4,-131.5,-40.5,0,0,-0.0852197 -46752,5413:101:3,-131,-40.5,0,0,-0.0846902 -46753,5413:100:4,-130.5,-40.5,0,0,-0.0844472 -46754,5413:100:3,-130,-40.5,0,0,-0.0844472 -46755,5412:209:4,-129.5,-40.5,0,0,-0.0845887 -46756,5412:209:3,-129,-40.5,0,0,-0.0845887 -46757,5412:208:4,-128.5,-40.5,0,0,-0.084346 -46758,5412:208:3,-128,-40.5,0,0,-0.0839026 -46759,5412:207:4,-127.5,-40.5,0,0,-0.0832225 -46760,5412:207:3,-127,-40.5,0,0,-0.0822332 -46761,5412:206:4,-126.5,-40.5,0,0,-0.081704 -46762,5412:206:3,-126,-40.5,0,0,-0.0786618 -46763,5412:205:4,-125.5,-40.5,0,0,-0.0758486 -46764,5412:205:3,-125,-40.5,0,0,-0.0748461 -46765,5412:104:4,-124.5,-40.5,0,0,-0.0749351 -46766,5412:104:3,-124,-40.5,0,0,-0.0753819 -46767,5412:103:4,-123.5,-40.5,0,0,-0.0739456 -46768,5412:103:3,-123,-40.5,0,0,-0.0688931 -46769,5412:102:4,-122.5,-40.5,0,0,-0.0635158 -46770,5412:102:3,-122,-40.5,0,0,-0.0635007 -46771,5412:101:4,-121.5,-40.5,0,0,-0.0654257 -46772,5412:101:3,-121,-40.5,0,0,-0.066435 -46773,5412:100:4,-120.5,-40.5,0,0,-0.0643117 -46774,5412:100:3,-120,-40.5,0,0,-0.0615633 -46775,5411:209:4,-119.5,-40.5,0,0,-0.0602076 -46776,5411:209:3,-119,-40.5,0,0,-0.0612176 -46777,5411:208:4,-118.5,-40.5,0,0,-0.0638299 -46778,5411:208:3,-118,-40.5,0,0,-0.0626413 -46779,5411:207:4,-117.5,-40.5,0,0,-0.0611747 -46780,5411:207:3,-117,-40.5,0,0,-0.0600945 -46781,5411:206:4,-116.5,-40.5,0,0,-0.0598421 -46782,5411:206:3,-116,-40.5,0,0,-0.060292 -46783,5411:205:4,-115.5,-40.5,0,0,-0.0611747 -46784,5411:205:3,-115,-40.5,0,0,-0.0626413 -46785,5411:104:4,-114.5,-40.5,0,0,-0.0645086 -46786,5411:104:3,-114,-40.5,0,0,-0.0654568 -46787,5411:103:4,-113.5,-40.5,0,0,-0.0649044 -46788,5411:103:3,-113,-40.5,0,0,-0.0632626 -46789,5411:102:4,-112.5,-40.5,0,0,-0.0607742 -46790,5411:102:3,-112,-40.5,0,0,-0.0573616 -46791,5411:101:4,-111.5,-40.5,0,0,-0.053798 -46792,5411:101:3,-111,-40.5,0,0,-0.0514487 -46793,5411:100:4,-110.5,-40.5,0,0,-0.0514367 -46794,5411:100:3,-110,-40.5,0,0,-0.0531138 -46795,5410:209:4,-109.5,-40.5,0,0,-0.053999 -46796,5410:209:3,-109,-40.5,0,0,-0.0527811 -46797,5410:208:4,-108.5,-40.5,0,0,-0.0504316 -46798,5410:208:3,-108,-40.5,0,0,-0.0491154 -46799,5410:207:4,-107.5,-40.5,0,0,-0.0501048 -46800,5410:207:3,-107,-40.5,0,0,-0.0518689 -46801,5410:206:4,-106.5,-40.5,0,0,-0.0530892 -46802,5410:206:3,-106,-40.5,0,0,-0.0528797 -46803,5410:205:4,-105.5,-40.5,0,0,-0.0523413 -46804,5410:205:3,-105,-40.5,0,0,-0.0519293 -46805,5410:104:4,-104.5,-40.5,0,0,-0.0517726 -46806,5410:104:3,-104,-40.5,0,0,-0.0517363 -46807,5410:103:4,-103.5,-40.5,0,0,-0.050373 -46808,5410:103:3,-103,-40.5,0,0,-0.0489223 -46809,5410:102:4,-102.5,-40.5,0,0,-0.0479354 -46810,5410:102:3,-102,-40.5,0,0,-0.0476918 -46811,5410:101:4,-101.5,-40.5,0,0,-0.0482808 -46812,5410:101:3,-101,-40.5,0,0,-0.0491954 -46813,5410:100:4,-100.5,-40.5,0,0,-0.0498384 -46814,5410:100:3,-100,-40.5,0,0,-0.0494582 -46815,5409:209:4,-99.5,-40.5,0,0,-0.0483364 -46816,5409:209:3,-99,-40.5,0,0,-0.0471976 -46817,5409:208:4,-98.5,-40.5,0,0,-0.0465688 -46818,5409:208:3,-98,-40.5,0,0,-0.0461935 -46819,5409:207:4,-97.5,-40.5,0,0,-0.0454734 -46820,5409:207:3,-97,-40.5,0,0,-0.0446102 -46821,5409:206:4,-96.5,-40.5,0,0,-0.0442818 -46822,5409:206:3,-96,-40.5,0,0,-0.0445483 -46823,5409:205:4,-95.5,-40.5,0,0,-0.0443536 -46824,5409:205:3,-95,-40.5,0,0,-0.0436029 -46825,5409:104:4,-94.5,-40.5,0,0,-0.0439158 -46826,5409:104:3,-94,-40.5,0,0,-0.0450657 -46827,5409:103:4,-93.5,-40.5,0,0,-0.0457474 -46828,5409:103:3,-93,-40.5,0,0,-0.0460867 -46829,5409:102:4,-92.5,-40.5,0,0,-0.0458954 -46830,5409:102:3,-92,-40.5,0,0,-0.0454103 -46831,5409:101:4,-91.5,-40.5,0,0,-0.0448061 -46832,5409:101:3,-91,-40.5,0,0,-0.044129 -46833,5409:100:4,-90.5,-40.5,0,0,-0.0437843 -46834,5409:100:3,-90,-40.5,0,0,-0.0438349 -46835,5408:209:4,-89.5,-40.5,0,0,-0.0438448 -46836,5408:209:3,-89,-40.5,0,0,-0.0436631 -46837,5408:208:4,-88.5,-40.5,0,0,-0.0434324 -46838,5408:208:3,-88,-40.5,0,0,-0.0433024 -46839,5408:207:4,-87.5,-40.5,0,0,-0.0433924 -46840,5408:207:3,-87,-40.5,0,0,-0.0433722 -46841,5408:206:4,-86.5,-40.5,0,0,-0.043014 -46842,5408:206:3,-86,-40.5,0,0,-0.04259 -46843,5408:205:4,-85.5,-40.5,0,0,-0.042083 -46844,5408:205:3,-85,-40.5,0,0,-0.0420732 -46845,5408:104:4,-84.5,-40.5,0,0,-0.0423161 -46846,5408:104:3,-84,-40.5,0,0,-0.0418992 -46847,5408:103:4,-83.5,-40.5,0,0,-0.041477 -46848,5408:103:3,-83,-40.5,0,0,-0.0418318 -46849,5408:102:4,-82.5,-40.5,0,0,-0.0434825 -46850,5408:102:3,-82,-40.5,0,0,-0.0442002 -46851,5408:101:4,-81.5,-40.5,0,0,-0.0439764 -46852,5408:101:3,-81,-40.5,0,0,-0.0449721 -46853,5408:100:4,-80.5,-40.5,0,0,-0.0492867 -46854,5408:100:3,-80,-40.5,0,0,-0.0493324 -46855,5407:209:4,-79.5,-40.5,0,0,-0.0491954 -46856,5407:209:3,-79,-40.5,0,0,-0.0494698 -46857,5407:208:4,-78.5,-40.5,0,0,-0.0493781 -46858,5407:208:3,-78,-40.5,0,0,-0.0476255 -46859,5407:207:4,-77.5,-40.5,0,0,-0.0476918 -46860,5407:207:3,-77,-40.5,0,0,-0.0489566 -46861,5407:206:4,-76.5,-40.5,0,0,-0.0555561 -46862,5407:206:3,-76,-40.5,0,0,-0.0628626 -46863,5407:205:4,-75.5,-40.5,0,0,-0.0677802 -46864,5407:205:3,-75,-40.5,0,0,-0.0820169 -46865,5406:208:3,-68,-40.5,0,0,-0.0657967 -46866,5406:207:4,-67.5,-40.5,0,0,-0.0644938 -46867,5406:207:3,-67,-40.5,0,0,-0.059702 -46868,5406:206:4,-66.5,-40.5,0,0,-0.0564315 -46869,5406:206:3,-66,-40.5,0,0,-0.0538607 -46870,5406:205:4,-65.5,-40.5,0,0,-0.0519411 -46871,5406:205:3,-65,-40.5,0,0,-0.050502 -46872,5406:104:4,-64.5,-40.5,0,0,-0.0491839 -46873,5406:104:3,-64,-40.5,0,0,-0.0481132 -46874,5406:103:4,-63.5,-40.5,0,0,-0.047318 -46875,5406:103:3,-63,-40.5,0,0,-0.0481578 -46876,5406:102:4,-62.5,-40.5,0,0,-0.0497573 -46877,5406:102:3,-62,-40.5,0,0,-0.0492637 -46878,5406:101:4,-61.5,-40.5,0,0,-0.0529906 -46879,5406:101:3,-61,-40.5,0,0,-0.0591873 -46880,5406:100:4,-60.5,-40.5,0,0,-0.0603913 -46881,5406:100:3,-60,-40.5,0,0,-0.0590902 -46882,5405:209:4,-59.5,-40.5,0,0,-0.0572142 -46883,5405:209:3,-59,-40.5,0,0,-0.0551562 -46884,5405:208:4,-58.5,-40.5,0,0,-0.0520982 -46885,5405:208:3,-58,-40.5,0,0,-0.0489223 -46886,5405:207:4,-57.5,-40.5,0,0,-0.0454314 -46887,5405:207:3,-57,-40.5,0,0,-0.0419959 -46888,5405:206:4,-56.5,-40.5,0,0,-0.0396585 -46889,5405:206:3,-56,-40.5,0,0,-0.0378185 -46890,5405:205:4,-55.5,-40.5,0,0,-0.0365742 -46891,5405:205:3,-55,-40.5,0,0,-0.0349301 -46892,5405:104:4,-54.5,-40.5,0,0,-0.0323796 -46893,5405:104:3,-54,-40.5,0,0,-0.0293989 -46894,5405:103:4,-53.5,-40.5,0,0,-0.0281756 -46895,5405:103:3,-53,-40.5,0,0,-0.0292521 -46896,5405:102:4,-52.5,-40.5,0,0,-0.0304059 -46897,5405:102:3,-52,-40.5,0,0,-0.0303367 -46898,5405:101:4,-51.5,-40.5,0,0,-0.0295263 -46899,5405:101:3,-51,-40.5,0,0,-0.0290071 -46900,5405:100:4,-50.5,-40.5,0,0,-0.0283488 -46901,5405:100:3,-50,-40.5,0,0,-0.0258948 -46902,5404:209:4,-49.5,-40.5,0,0,-0.0251604 -46903,5404:209:3,-49,-40.5,0,0,-0.0256786 -46904,5404:208:4,-48.5,-40.5,0,0,-0.0255161 -46905,5404:208:3,-48,-40.5,0,0,-0.0261722 -46906,5404:207:4,-47.5,-40.5,0,0,-0.0282589 -46907,5404:207:3,-47,-40.5,0,0,-0.029219 -46908,5404:206:4,-46.5,-40.5,0,0,-0.0309437 -46909,5404:206:3,-46,-40.5,0,0,-0.0293056 -46910,5404:205:4,-45.5,-40.5,0,0,-0.0261248 -46911,5404:205:3,-45,-40.5,0,0,-0.0253491 -46912,5404:104:4,-44.5,-40.5,0,0,-0.0255161 -46913,5404:104:3,-44,-40.5,0,0,-0.0258186 -46914,5404:103:4,-43.5,-40.5,0,0,-0.0255973 -46915,5404:103:3,-43,-40.5,0,0,-0.0255568 -46916,5404:102:4,-42.5,-40.5,0,0,-0.0256495 -46917,5404:102:3,-42,-40.5,0,0,-0.0250977 -46918,5404:101:4,-41.5,-40.5,0,0,-0.0241556 -46919,5404:101:3,-41,-40.5,0,0,-0.0224747 -46920,5404:100:4,-40.5,-40.5,0,0,-0.0211219 -46921,5404:100:3,-40,-40.5,0,0,-0.0199417 -46922,5403:209:4,-39.5,-40.5,0,0,-0.021968 -46923,5403:209:3,-39,-40.5,0,0,-0.0252002 -46924,5403:208:4,-38.5,-40.5,0,0,-0.0268637 -46925,5403:208:3,-38,-40.5,0,0,-0.0277815 -46926,5403:207:4,-37.5,-40.5,0,0,-0.0284457 -46927,5403:207:3,-37,-40.5,0,0,-0.0290863 -46928,5403:206:4,-36.5,-40.5,0,0,-0.0288034 -46929,5403:206:3,-36,-40.5,0,0,-0.0272506 -46930,5403:205:4,-35.5,-40.5,0,0,-0.0244637 -46931,5403:205:3,-35,-40.5,0,0,-0.023626 -46932,5403:104:4,-34.5,-40.5,0,0,-0.0255914 -46933,5403:104:3,-34,-40.5,0,0,-0.0257252 -46934,5403:103:4,-33.5,-40.5,0,0,-0.0263329 -46935,5403:103:3,-33,-40.5,0,0,-0.0260834 -46936,5403:102:4,-32.5,-40.5,0,0,-0.0239597 -46937,5403:102:3,-32,-40.5,0,0,-0.021968 -46938,5403:101:4,-31.5,-40.5,0,0,-0.0228279 -46939,5403:101:3,-31,-40.5,0,0,-0.0232286 -46940,5403:100:4,-30.5,-40.5,0,0,-0.0230978 -46941,5403:100:3,-30,-40.5,0,0,-0.0229469 -46942,5402:209:4,-29.5,-40.5,0,0,-0.0233023 -46943,5402:209:3,-29,-40.5,0,0,-0.0239597 -46944,5402:208:4,-28.5,-40.5,0,0,-0.0246193 -46945,5402:208:3,-28,-40.5,0,0,-0.0258361 -46946,5402:207:4,-27.5,-40.5,0,0,-0.0258832 -46947,5402:207:3,-27,-40.5,0,0,-0.0254989 -46948,5402:206:4,-26.5,-40.5,0,0,-0.0232445 -46949,5402:206:3,-26,-40.5,0,0,-0.0206649 -46950,5402:205:4,-25.5,-40.5,0,0,-0.0211315 -46951,5402:205:3,-25,-40.5,0,0,-0.0222174 -46952,5402:104:4,-24.5,-40.5,0,0,-0.0211888 -46953,5402:104:3,-24,-40.5,0,0,-0.0216284 -46954,5402:103:4,-23.5,-40.5,0,0,-0.0231448 -46955,5402:103:3,-23,-40.5,0,0,-0.0242212 -46956,5402:102:4,-22.5,-40.5,0,0,-0.0245136 -46957,5402:102:3,-22,-40.5,0,0,-0.0254527 -46958,5402:101:4,-21.5,-40.5,0,0,-0.0257719 -46959,5402:101:3,-21,-40.5,0,0,-0.0253088 -46960,5402:100:4,-20.5,-40.5,0,0,-0.0250296 -46961,5402:100:3,-20,-40.5,0,0,-0.0255103 -46962,5401:209:4,-19.5,-40.5,0,0,-0.0258773 -46963,5401:209:3,-19,-40.5,0,0,-0.0253204 -46964,5401:208:4,-18.5,-40.5,0,0,-0.0228898 -46965,5401:208:3,-18,-40.5,0,0,-0.0202817 -46966,5401:207:4,-17.5,-40.5,0,0,-0.0204608 -46967,5401:207:3,-17,-40.5,0,0,-0.0223431 -46968,5401:206:4,-16.5,-40.5,0,0,-0.0232182 -46969,5401:206:3,-16,-40.5,0,0,-0.0240248 -46970,5401:205:4,-15.5,-40.5,0,0,-0.0243808 -46971,5401:205:3,-15,-40.5,0,0,-0.0237278 -46972,5401:104:4,-14.5,-40.5,0,0,-0.0227045 -46973,5401:104:3,-14,-40.5,0,0,-0.0222324 -46974,5401:103:4,-13.5,-40.5,0,0,-0.0230197 -46975,5401:103:3,-13,-40.5,0,0,-0.0245858 -46976,5401:102:4,-12.5,-40.5,0,0,-0.0249109 -46977,5401:102:3,-12,-40.5,0,0,-0.0232655 -46978,5401:101:4,-11.5,-40.5,0,0,-0.0230508 -46979,5401:101:3,-11,-40.5,0,0,-0.0214872 -46980,5401:100:4,-10.5,-40.5,0,0,-0.0193575 -46981,5401:100:3,-10,-40.5,0,0,-0.0182161 -46982,5400:209:4,-9.5,-40.5,0,0,-0.017839 -46983,5400:209:3,-9,-40.5,0,0,-0.0162872 -46984,5400:208:4,-8.5,-40.5,0,0,-0.0145589 -46985,5400:208:3,-8,-40.5,0,0,-0.0135184 -46986,5400:207:4,-7.5,-40.5,0,0,-0.0138246 -46987,5400:207:3,-7,-40.5,0,0,-0.0143935 -46988,5400:206:4,-6.5,-40.5,0,0,-0.0138773 -46989,5400:206:3,-6,-40.5,0,0,-0.0131688 -46990,5400:205:4,-5.5,-40.5,0,0,-0.0140493 -46991,5400:205:3,-5,-40.5,0,0,-0.0156142 -46992,5400:104:4,-4.5,-40.5,0,0,-0.0159901 -46993,5400:104:3,-4,-40.5,0,0,-0.016091 -46994,5400:103:4,-3.5,-40.5,0,0,-0.0164379 -46995,5400:103:3,-3,-40.5,0,0,-0.0162872 -46996,5400:102:4,-2.5,-40.5,0,0,-0.0147793 -46997,5400:102:3,-2,-40.5,0,0,-0.0136034 -46998,5400:101:4,-1.5,-40.5,0,0,-0.0139084 -46999,5400:101:3,-1,-40.5,0,0,-0.0152746 -47000,5400:100:4,-0.5,-40.5,0,0,-0.0172126 -47001,3400:100:4,0,-40.5,0,0,-0.0194712 -47002,3400:100:4,0.5,-40.5,0,0,-0.0212031 -47003,3400:101:3,1,-40.5,0,0,-0.0216821 -47004,3400:101:4,1.5,-40.5,0,0,-0.0214533 -47005,3400:102:3,2,-40.5,0,0,-0.0208897 -47006,3400:102:4,2.5,-40.5,0,0,-0.0192357 -47007,3400:103:3,3,-40.5,0,0,-0.0165936 -47008,3400:103:4,3.5,-40.5,0,0,-0.0145753 -47009,3400:104:3,4,-40.5,0,0,-0.0131365 -47010,3400:104:4,4.5,-40.5,0,0,-0.0127085 -47011,3400:205:3,5,-40.5,0,0,-0.0129554 -47012,3400:205:4,5.5,-40.5,0,0,-0.0148857 -47013,3400:206:3,6,-40.5,0,0,-0.0168642 -47014,3400:206:4,6.5,-40.5,0,0,-0.0181058 -47015,3400:207:3,7,-40.5,0,0,-0.0154851 -47016,3400:207:4,7.5,-40.5,0,0,-0.0134489 -47017,3400:208:3,8,-40.5,0,0,-0.0144226 -47018,3400:208:4,8.5,-40.5,0,0,-0.0152199 -47019,3400:209:3,9,-40.5,0,0,-0.0161488 -47020,3400:209:4,9.5,-40.5,0,0,-0.0164526 -47021,3401:100:3,10,-40.5,0,0,-0.0164563 -47022,3401:100:4,10.5,-40.5,0,0,-0.0159973 -47023,3401:101:3,11,-40.5,0,0,-0.0156598 -47024,3401:101:4,11.5,-40.5,0,0,-0.0159901 -47025,3401:102:3,12,-40.5,0,0,-0.0164748 -47026,3401:102:4,12.5,-40.5,0,0,-0.0164452 -47027,3401:103:3,13,-40.5,0,0,-0.0157338 -47028,3401:103:4,13.5,-40.5,0,0,-0.0145329 -47029,3401:104:3,14,-40.5,0,0,-0.0133022 -47030,3401:104:4,14.5,-40.5,0,0,-0.0127826 -47031,3401:205:3,15,-40.5,0,0,-0.0132783 -47032,3401:205:4,15.5,-40.5,0,0,-0.015395 -47033,3401:206:3,16,-40.5,0,0,-0.0181506 -47034,3401:206:4,16.5,-40.5,0,0,-0.0193793 -47035,3401:207:3,17,-40.5,0,0,-0.0182653 -47036,3401:207:4,17.5,-40.5,0,0,-0.0162909 -47037,3401:208:3,18,-40.5,0,0,-0.015709 -47038,3401:208:4,18.5,-40.5,0,0,-0.0154921 -47039,3401:209:3,19,-40.5,0,0,-0.0139709 -47040,3401:209:4,19.5,-40.5,0,0,-0.0135669 -47041,3402:100:3,20,-40.5,0,0,-0.0141093 -47042,3402:100:4,20.5,-40.5,0,0,-0.0140085 -47043,3402:101:3,21,-40.5,0,0,-0.0136217 -47044,3402:101:4,21.5,-40.5,0,0,-0.0148224 -47045,3402:102:3,22,-40.5,0,0,-0.0167697 -47046,3402:102:4,22.5,-40.5,0,0,-0.016815 -47047,3402:103:3,23,-40.5,0,0,-0.0155967 -47048,3402:103:4,23.5,-40.5,0,0,-0.0138091 -47049,3402:104:3,24,-40.5,0,0,-0.0126744 -47050,3402:104:4,24.5,-40.5,0,0,-0.0131895 -47051,3402:205:3,25,-40.5,0,0,-0.0147693 -47052,3402:205:4,25.5,-40.5,0,0,-0.0154608 -47053,3402:206:3,26,-40.5,0,0,-0.0143259 -47054,3402:206:4,26.5,-40.5,0,0,-0.0134821 -47055,3402:207:3,27,-40.5,0,0,-0.0164489 -47056,3402:207:4,27.5,-40.5,0,0,-0.0190675 -47057,3402:208:3,28,-40.5,0,0,-0.0202817 -47058,3402:208:4,28.5,-40.5,0,0,-0.0190675 -47059,3402:209:3,29,-40.5,0,0,-0.0152268 -47060,3402:209:4,29.5,-40.5,0,0,-0.0162543 -47061,3403:100:3,30,-40.5,0,0,-0.0161852 -47062,3403:100:4,30.5,-40.5,0,0,-0.0162178 -47063,3403:101:3,31,-40.5,0,0,-0.0171508 -47064,3403:101:4,31.5,-40.5,0,0,-0.0179759 -47065,3403:102:3,32,-40.5,0,0,-0.0180813 -47066,3403:102:4,32.5,-40.5,0,0,-0.0170854 -47067,3403:103:3,33,-40.5,0,0,-0.0144581 -47068,3403:103:4,33.5,-40.5,0,0,-0.0125952 -47069,3403:104:3,34,-40.5,0,0,-0.0128314 -47070,3403:104:4,34.5,-40.5,0,0,-0.0138929 -47071,3403:205:3,35,-40.5,0,0,-0.0145166 -47072,3403:205:4,35.5,-40.5,0,0,-0.0143291 -47073,3403:206:3,36,-40.5,0,0,-0.0144064 -47074,3403:206:4,36.5,-40.5,0,0,-0.0142746 -47075,3403:207:3,37,-40.5,0,0,-0.0134791 -47076,3403:207:4,37.5,-40.5,0,0,-0.0134128 -47077,3403:208:3,38,-40.5,0,0,-0.0141853 -47078,3403:208:4,38.5,-40.5,0,0,-0.0160008 -47079,3403:209:3,39,-40.5,0,0,-0.0179154 -47080,3403:209:4,39.5,-40.5,0,0,-0.0187104 -47081,3404:100:3,40,-40.5,0,0,-0.0187905 -47082,3404:100:4,40.5,-40.5,0,0,-0.0184886 -47083,3404:101:3,41,-40.5,0,0,-0.0178229 -47084,3404:101:4,41.5,-40.5,0,0,-0.0169401 -47085,3404:102:3,42,-40.5,0,0,-0.0160332 -47086,3404:102:4,42.5,-40.5,0,0,-0.0153502 -47087,3404:103:3,43,-40.5,0,0,-0.0152301 -47088,3404:103:4,43.5,-40.5,0,0,-0.0158507 -47089,3404:104:3,44,-40.5,0,0,-0.0163164 -47090,3404:104:4,44.5,-40.5,0,0,-0.0161415 -47091,3404:205:3,45,-40.5,0,0,-0.0157762 -47092,3404:205:4,45.5,-40.5,0,0,-0.0156668 -47093,3404:206:3,46,-40.5,0,0,-0.0153329 -47094,3404:206:4,46.5,-40.5,0,0,-0.0146835 -47095,3404:207:3,47,-40.5,0,0,-0.0140966 -47096,3404:207:4,47.5,-40.5,0,0,-0.0141536 -47097,3404:208:3,48,-40.5,0,0,-0.0156949 -47098,3404:208:4,48.5,-40.5,0,0,-0.01712 -47099,3404:209:3,49,-40.5,0,0,-0.0168793 -47100,3404:209:4,49.5,-40.5,0,0,-0.0156212 -47101,3405:100:3,50,-40.5,0,0,-0.0147693 -47102,3405:100:4,50.5,-40.5,0,0,-0.0146605 -47103,3405:101:3,51,-40.5,0,0,-0.0149459 -47104,3405:101:4,51.5,-40.5,0,0,-0.0153124 -47105,3405:102:3,52,-40.5,0,0,-0.0155513 -47106,3405:102:4,52.5,-40.5,0,0,-0.0155932 -47107,3405:103:3,53,-40.5,0,0,-0.0154643 -47108,3405:103:4,53.5,-40.5,0,0,-0.0153812 -47109,3405:104:3,54,-40.5,0,0,-0.0155687 -47110,3405:104:4,54.5,-40.5,0,0,-0.0158934 -47111,3405:205:3,55,-40.5,0,0,-0.0161597 -47112,3405:205:4,55.5,-40.5,0,0,-0.0161162 -47113,3405:206:3,56,-40.5,0,0,-0.0155617 -47114,3405:206:4,56.5,-40.5,0,0,-0.0150975 -47115,3405:207:3,57,-40.5,0,0,-0.0154365 -47116,3405:207:4,57.5,-40.5,0,0,-0.0156668 -47117,3405:208:3,58,-40.5,0,0,-0.0151077 -47118,3405:208:4,58.5,-40.5,0,0,-0.0163092 -47119,3405:209:3,59,-40.5,0,0,-0.0171701 -47120,3405:209:4,59.5,-40.5,0,0,-0.0171932 -47121,3406:100:3,60,-40.5,0,0,-0.01712 -47122,3406:100:4,60.5,-40.5,0,0,-0.0169782 -47123,3406:101:3,61,-40.5,0,0,-0.0167434 -47124,3406:101:4,61.5,-40.5,0,0,-0.0163238 -47125,3406:102:3,62,-40.5,0,0,-0.0158685 -47126,3406:102:4,62.5,-40.5,0,0,-0.0155721 -47127,3406:103:3,63,-40.5,0,0,-0.0152541 -47128,3406:103:4,63.5,-40.5,0,0,-0.0149896 -47129,3406:104:3,64,-40.5,0,0,-0.0149024 -47130,3406:104:4,64.5,-40.5,0,0,-0.014776 -47131,3406:205:3,65,-40.5,0,0,-0.0145981 -47132,3406:205:4,65.5,-40.5,0,0,-0.014371 -47133,3406:206:3,66,-40.5,0,0,-0.0141061 -47134,3406:206:4,66.5,-40.5,0,0,-0.013775 -47135,3406:207:3,67,-40.5,0,0,-0.0135032 -47136,3406:207:4,67.5,-40.5,0,0,-0.0137381 -47137,3406:208:3,68,-40.5,0,0,-0.0142203 -47138,3406:208:4,68.5,-40.5,0,0,-0.014416 -47139,3406:209:3,69,-40.5,0,0,-0.0144258 -47140,3406:209:4,69.5,-40.5,0,0,-0.0141885 -47141,3407:100:3,70,-40.5,0,0,-0.0139928 -47142,3407:100:4,70.5,-40.5,0,0,-0.0139271 -47143,3407:101:3,71,-40.5,0,0,-0.01332 -47144,3407:101:4,71.5,-40.5,0,0,-0.0132487 -47145,3407:102:3,72,-40.5,0,0,-0.0135821 -47146,3407:102:4,72.5,-40.5,0,0,-0.0135851 -47147,3407:103:4,73.5,-40.5,0,0,-0.0133081 -47148,3407:104:3,74,-40.5,0,0,-0.0126545 -47149,3407:104:4,74.5,-40.5,0,0,-0.011694 -47150,3407:205:3,75,-40.5,0,0,-0.0109114 -47151,3407:205:4,75.5,-40.5,0,0,-0.0113947 -47152,3407:206:3,76,-40.5,0,0,-0.0124858 -47153,3407:206:4,76.5,-40.5,0,0,-0.0137473 -47154,3407:207:3,77,-40.5,0,0,-0.014371 -47155,3407:207:4,77.5,-40.5,0,0,-0.0149828 -47156,3407:208:3,78,-40.5,0,0,-0.0152575 -47157,3407:208:4,78.5,-40.5,0,0,-0.0147859 -47158,3407:209:3,79,-40.5,0,0,-0.0196032 -47159,3407:209:4,79.5,-40.5,0,0,-0.0221722 -47160,3408:100:3,80,-40.5,0,0,-0.0279778 -47161,3408:100:4,80.5,-40.5,0,0,-0.0281883 -47162,3408:101:3,81,-40.5,0,0,-0.0293522 -47163,3408:101:4,81.5,-40.5,0,0,-0.0292989 -47164,3408:102:3,82,-40.5,0,0,-0.0298368 -47165,3408:102:4,82.5,-40.5,0,0,-0.030789 -47166,3408:103:3,83,-40.5,0,0,-0.0314484 -47167,3408:103:4,83.5,-40.5,0,0,-0.0305934 -47168,3408:104:3,84,-40.5,0,0,-0.0280796 -47169,3408:104:4,84.5,-40.5,0,0,-0.0260715 -47170,3408:205:3,85,-40.5,0,0,-0.0272691 -47171,3408:205:4,85.5,-40.5,0,0,-0.0263448 -47172,3408:206:3,86,-40.5,0,0,-0.0249277 -47173,3408:206:4,86.5,-40.5,0,0,-0.0250919 -47174,3408:207:3,87,-40.5,0,0,-0.0254642 -47175,3408:207:4,87.5,-40.5,0,0,-0.0248263 -47176,3408:208:3,88,-40.5,0,0,-0.0307191 -47177,3408:208:4,88.5,-40.5,0,0,-0.0361249 -47178,3408:209:3,89,-40.5,0,0,-0.0378185 -47179,3408:209:4,89.5,-40.5,0,0,-0.0344858 -47180,3409:100:3,90,-40.5,0,0,-0.030698 -47181,3409:100:4,90.5,-40.5,0,0,-0.0336223 -47182,3409:101:3,91,-40.5,0,0,-0.0342894 -47183,3409:101:4,91.5,-40.5,0,0,-0.0322986 -47184,3409:102:3,92,-40.5,0,0,-0.0299186 -47185,3409:102:4,92.5,-40.5,0,0,-0.0286273 -47186,3409:103:3,93,-40.5,0,0,-0.0289149 -47187,3409:103:4,93.5,-40.5,0,0,-0.0298573 -47188,3409:104:3,94,-40.5,0,0,-0.0312626 -47189,3409:104:4,94.5,-40.5,0,0,-0.0318451 -47190,3409:205:3,95,-40.5,0,0,-0.0322249 -47191,3409:205:4,95.5,-40.5,0,0,-0.031434 -47192,3409:206:3,96,-40.5,0,0,-0.0299117 -47193,3409:206:4,96.5,-40.5,0,0,-0.0288953 -47194,3409:207:3,97,-40.5,0,0,-0.0286534 -47195,3409:207:4,97.5,-40.5,0,0,-0.0287445 -47196,3409:208:3,98,-40.5,0,0,-0.0288232 -47197,3409:208:4,98.5,-40.5,0,0,-0.0286468 -47198,3409:209:3,99,-40.5,0,0,-0.0279968 -47199,3409:209:4,99.5,-40.5,0,0,-0.0266756 -47200,3410:100:3,100,-40.5,0,0,-0.0253491 -47201,3410:100:4,100.5,-40.5,0,0,-0.0231605 -47202,3410:101:3,101,-40.5,0,0,-0.0238084 -47203,3410:101:4,101.5,-40.5,0,0,-0.0245191 -47204,3410:102:3,102,-40.5,0,0,-0.0236902 -47205,3410:102:4,102.5,-40.5,0,0,-0.0218541 -47206,3410:103:3,103,-40.5,0,0,-0.0206741 -47207,3410:103:4,103.5,-40.5,0,0,-0.0213375 -47208,3410:104:3,104,-40.5,0,0,-0.0226941 -47209,3410:104:4,104.5,-40.5,0,0,-0.0239434 -47210,3410:205:3,105,-40.5,0,0,-0.0252402 -47211,3410:205:4,105.5,-40.5,0,0,-0.0257427 -47212,3410:206:3,106,-40.5,0,0,-0.0239381 -47213,3410:206:4,106.5,-40.5,0,0,-0.0209087 -47214,3410:207:3,107,-40.5,0,0,-0.0200138 -47215,3410:207:4,107.5,-40.5,0,0,-0.0214921 -47216,3410:208:3,108,-40.5,0,0,-0.0230769 -47217,3410:208:4,108.5,-40.5,0,0,-0.0238515 -47218,3410:209:3,109,-40.5,0,0,-0.0242926 -47219,3410:209:4,109.5,-40.5,0,0,-0.0235939 -47220,3411:100:3,110,-40.5,0,0,-0.0234716 -47221,3411:100:4,110.5,-40.5,0,0,-0.0238462 -47222,3411:101:3,111,-40.5,0,0,-0.0240303 -47223,3411:101:4,111.5,-40.5,0,0,-0.0234769 -47224,3411:102:3,112,-40.5,0,0,-0.0230508 -47225,3411:102:4,112.5,-40.5,0,0,-0.0225664 -47226,3411:103:3,113,-40.5,0,0,-0.0229936 -47227,3411:103:4,113.5,-40.5,0,0,-0.0240356 -47228,3411:104:3,114,-40.5,0,0,-0.025075 -47229,3411:104:4,114.5,-40.5,0,0,-0.0271457 -47230,3411:205:3,115,-40.5,0,0,-0.0299252 -47231,3411:205:4,115.5,-40.5,0,0,-0.0320052 -47232,3411:206:3,116,-40.5,0,0,-0.0321222 -47233,3411:206:4,116.5,-40.5,0,0,-0.0314484 -47234,3411:207:3,117,-40.5,0,0,-0.0307471 -47235,3411:207:4,117.5,-40.5,0,0,-0.0311487 -47236,3411:208:3,118,-40.5,0,0,-0.0326988 -47237,3411:208:4,118.5,-40.5,0,0,-0.0332102 -47238,3411:209:3,119,-40.5,0,0,-0.0335303 -47239,3411:209:4,119.5,-40.5,0,0,-0.032766 -47240,3412:100:3,120,-40.5,0,0,-0.0349301 -47241,3412:100:4,120.5,-40.5,0,0,-0.041774 -47242,3412:101:3,121,-40.5,0,0,-0.047318 -47243,3412:101:4,121.5,-40.5,0,0,-0.0484486 -47244,3412:102:3,122,-40.5,0,0,-0.0467846 -47245,3412:102:4,122.5,-40.5,0,0,-0.0448269 -47246,3412:103:3,123,-40.5,0,0,-0.0428555 -47247,3412:103:4,123.5,-40.5,0,0,-0.0416779 -47248,3412:104:3,124,-40.5,0,0,-0.0407769 -47249,3412:104:4,124.5,-40.5,0,0,-0.0400155 -47250,3412:205:3,125,-40.5,0,0,-0.0393321 -47251,3412:205:4,125.5,-40.5,0,0,-0.0383603 -47252,3412:206:3,126,-40.5,0,0,-0.0369362 -47253,3412:206:4,126.5,-40.5,0,0,-0.0363073 -47254,3412:207:3,127,-40.5,0,0,-0.0493666 -47255,3412:207:4,127.5,-40.5,0,0,-0.0534236 -47256,3412:208:3,128,-40.5,0,0,-0.0541374 -47257,3412:208:4,128.5,-40.5,0,0,-0.0538484 -47258,3412:209:3,129,-40.5,0,0,-0.0528549 -47259,3412:209:4,129.5,-40.5,0,0,-0.0507369 -47260,3413:100:3,130,-40.5,0,0,-0.0499193 -47261,3413:100:4,130.5,-40.5,0,0,-0.0497228 -47262,3413:101:3,131,-40.5,0,0,-0.0491384 -47263,3413:101:4,131.5,-40.5,0,0,-0.0480242 -47264,3413:102:3,132,-40.5,0,0,-0.046515 -47265,3413:102:4,132.5,-40.5,0,0,-0.0457367 -47266,3413:103:3,133,-40.5,0,0,-0.0461082 -47267,3413:103:4,133.5,-40.5,0,0,-0.047143 -47268,3413:104:3,134,-40.5,0,0,-0.04846 -47269,3413:104:4,134.5,-40.5,0,0,-0.0488656 -47270,3413:205:3,135,-40.5,0,0,-0.0478244 -47271,3413:205:4,135.5,-40.5,0,0,-0.0465363 -47272,3413:206:3,136,-40.5,0,0,-0.0455154 -47273,3413:206:4,136.5,-40.5,0,0,-0.0442307 -47274,3413:207:3,137,-40.5,0,0,-0.0422284 -47275,3413:207:4,137.5,-40.5,0,0,-0.0397682 -47276,3413:208:3,138,-40.5,0,0,-0.0378967 -47277,3413:208:4,138.5,-40.5,0,0,-0.0399605 -47278,3413:209:3,139,-40.5,0,0,-0.0439257 -47279,3413:209:4,139.5,-40.5,0,0,-0.0434122 -47280,3414:100:3,140,-40.5,0,0,-0.0488318 -47281,3414:100:4,140.5,-40.5,0,0,-0.0636352 -47282,3414:101:3,141,-40.5,0,0,-0.0664823 -47283,3414:101:4,141.5,-40.5,0,0,-0.0672703 -47284,3414:102:3,142,-40.5,0,0,-0.0672863 -47285,3414:102:4,142.5,-40.5,0,0,-0.0667804 -47286,3414:103:3,143,-40.5,0,0,-0.0639197 -47287,3414:103:4,143.5,-40.5,0,0,-0.0547844 -47288,3414:104:3,144,-40.5,0,0,-0.0417452 -47289,3414:104:4,144.5,-40.5,0,0,-0.0421798 -47290,3414:205:3,145,-40.5,0,0,-0.0471759 -47291,3414:205:4,145.5,-40.5,0,0,-0.0479686 -47292,3414:206:3,146,-40.5,0,0,-0.0496884 -47293,3414:206:4,146.5,-40.5,0,0,-0.0548995 -47294,3414:207:3,147,-40.5,0,0,-0.059618 -47295,3414:207:4,147.5,-40.5,0,0,-0.063995 -47296,3414:208:3,148,-40.5,0,0,-0.0661695 -47297,3414:208:4,148.5,-40.5,0,0,-0.0667175 -47298,3414:209:3,149,-40.5,0,0,-0.0630991 -47299,3414:209:4,149.5,-40.5,0,0,-0.0605894 -47300,3415:100:3,150,-40.5,0,0,-0.0587595 -47301,3415:100:4,150.5,-40.5,0,0,-0.0562999 -47302,3415:101:3,151,-40.5,0,0,-0.0506898 -47303,3415:101:4,151.5,-40.5,0,0,-0.0458213 -47304,3415:102:3,152,-40.5,0,0,-0.0465471 -47305,3415:102:4,152.5,-40.5,0,0,-0.0489452 -47306,3415:103:3,153,-40.5,0,0,-0.0657348 -47307,3415:103:4,153.5,-40.5,0,0,-0.0901274 -47308,3415:104:3,154,-40.5,0,0,-0.0792074 -47309,3415:104:4,154.5,-40.5,0,0,-0.0742273 -47310,3415:205:3,155,-40.5,0,0,-0.0736832 -47311,3415:205:4,155.5,-40.5,0,0,-0.0783439 -47312,3415:206:3,156,-40.5,0,0,-0.082253 -47313,3415:206:4,156.5,-40.5,0,0,-0.0695965 -47314,3415:207:3,157,-40.5,0,0,-0.0573747 -47315,3415:207:4,157.5,-40.5,0,0,-0.0573747 -47316,3415:208:3,158,-40.5,0,0,-0.0655956 -47317,3415:208:4,158.5,-40.5,0,0,-0.0714648 -47318,3415:209:3,159,-40.5,0,0,-0.0721107 -47319,3415:209:4,159.5,-40.5,0,0,-0.0677641 -47320,3416:100:3,160,-40.5,0,0,-0.0653642 -47321,3416:100:4,160.5,-40.5,0,0,-0.0636202 -47322,3416:101:3,161,-40.5,0,0,-0.0678603 -47323,3416:101:4,161.5,-40.5,0,0,-0.0689254 -47324,3416:102:3,162,-40.5,0,0,-0.0653182 -47325,3416:102:4,162.5,-40.5,0,0,-0.0656886 -47326,3416:103:3,163,-40.5,0,0,-0.0633666 -47327,3416:103:4,163.5,-40.5,0,0,-0.0621581 -47328,3416:104:3,164,-40.5,0,0,-0.06194 -47329,3416:104:4,164.5,-40.5,0,0,-0.0618093 -47330,3416:205:3,165,-40.5,0,0,-0.0618381 -47331,3416:205:4,165.5,-40.5,0,0,-0.0633071 -47332,3416:206:3,166,-40.5,0,0,-0.0633666 -47333,3416:206:4,166.5,-40.5,0,0,-0.059021 -47334,3416:207:3,167,-40.5,0,0,-0.0608456 -47335,3416:207:4,167.5,-40.5,0,0,-0.060292 -47336,3416:208:3,168,-40.5,0,0,-0.0593118 -47337,3416:208:4,168.5,-40.5,0,0,-0.0578055 -47338,3416:209:3,169,-40.5,0,0,-0.0551562 -47339,3416:209:4,169.5,-40.5,0,0,-0.0550531 -47340,3417:100:3,170,-40.5,0,0,-0.0550019 -47341,3417:100:4,170.5,-40.5,0,0,-0.0541247 -47342,3417:101:3,171,-40.5,0,0,-0.0533118 -47343,3417:101:4,171.5,-40.5,0,0,-0.0526217 -47344,3417:102:3,172,-40.5,0,0,-0.0519171 -47345,3417:102:4,172.5,-40.5,0,0,-0.0516044 -47346,3417:103:3,173,-40.5,0,0,-0.0514247 -47347,3417:103:4,173.5,-40.5,0,0,-0.0508665 -47348,3417:104:3,174,-40.5,0,0,-0.0505371 -47349,3417:104:4,174.5,-40.5,0,0,-0.0507959 -47350,3417:205:3,175,-40.5,0,0,-0.0509729 -47351,3417:205:4,175.5,-40.5,0,0,-0.049873 -47352,3417:206:3,176,-40.5,0,0,-0.048247 -47353,3417:206:4,176.5,-40.5,0,0,-0.0467522 -47354,3417:207:3,177,-40.5,0,0,-0.046709 -47355,3417:207:4,177.5,-40.5,0,0,-0.0468279 -47356,3417:208:3,178,-40.5,0,0,-0.0469145 -47357,3417:208:4,178.5,-40.5,0,0,-0.0471976 -47358,3417:209:3,179,-40.5,0,0,-0.0476255 -47359,3417:209:4,179.5,-40.5,0,0,-0.0479242 -47360,3418:100:3,180,-40.5,0,0,-0.0481802 -47361,5418:100:1,-180,-40,0,0,-0.0487414 -47362,5417:209:2,-179.5,-40,0,0,-0.0467413 -47363,5417:209:1,-179,-40,0,0,-0.0439969 -47364,5417:208:2,-178.5,-40,0,0,-0.0451384 -47365,5417:208:1,-178,-40,0,0,-0.0465797 -47366,5417:207:2,-177.5,-40,0,0,-0.0564842 -47367,5417:207:1,-177,-40,0,0,-0.0656574 -47368,5417:206:2,-176.5,-40,0,0,-0.0650883 -47369,5417:206:1,-176,-40,0,0,-0.0595346 -47370,5417:205:2,-175.5,-40,0,0,-0.0555822 -47371,5417:205:1,-175,-40,0,0,-0.0575764 -47372,5417:104:2,-174.5,-40,0,0,-0.0567885 -47373,5417:104:1,-174,-40,0,0,-0.0559462 -47374,5417:103:2,-173.5,-40,0,0,-0.0587868 -47375,5417:103:1,-173,-40,0,0,-0.0578596 -47376,5417:102:2,-172.5,-40,0,0,-0.0654568 -47377,5417:102:1,-172,-40,0,0,-0.0750243 -47378,5417:101:2,-171.5,-40,0,0,-0.0797575 -47379,5417:101:1,-171,-40,0,0,-0.0752563 -47380,5417:100:2,-170.5,-40,0,0,-0.0713297 -47381,5417:100:1,-170,-40,0,0,-0.0715495 -47382,5416:209:2,-169.5,-40,0,0,-0.0784744 -47383,5416:209:1,-169,-40,0,0,-0.0849545 -47384,5416:208:2,-168.5,-40,0,0,-0.0892425 -47385,5416:208:1,-168,-40,0,0,-0.092729 -47386,5416:207:2,-167.5,-40,0,0,-0.09406 -47387,5416:207:1,-167,-40,0,0,-0.0947216 -47388,5416:206:2,-166.5,-40,0,0,-0.0902361 -47389,5416:206:1,-166,-40,0,0,-0.0802919 -47390,5416:205:2,-165.5,-40,0,0,-0.0694156 -47391,5416:205:1,-165,-40,0,0,-0.06377 -47392,5416:104:2,-164.5,-40,0,0,-0.0657967 -47393,5416:104:1,-164,-40,0,0,-0.0736656 -47394,5416:103:2,-163.5,-40,0,0,-0.0813728 -47395,5416:103:1,-163,-40,0,0,-0.0849346 -47396,5416:102:2,-162.5,-40,0,0,-0.0858558 -47397,5416:102:1,-162,-40,0,0,-0.0870177 -47398,5416:101:2,-161.5,-40,0,0,-0.0858765 -47399,5416:101:1,-161,-40,0,0,-0.0847515 -47400,5416:100:2,-160.5,-40,0,0,-0.0844268 -47401,5416:100:1,-160,-40,0,0,-0.0876895 -47402,5415:209:2,-159.5,-40,0,0,-0.090345 -47403,5415:209:1,-159,-40,0,0,-0.0933578 -47404,5415:208:2,-158.5,-40,0,0,-0.1034 -47405,5415:208:1,-158,-40,0,0,-0.103677 -47406,5415:207:2,-157.5,-40,0,0,-0.106943 -47407,5415:207:1,-157,-40,0,0,-0.109326 -47408,5415:206:2,-156.5,-40,0,0,-0.105412 -47409,5415:206:1,-156,-40,0,0,-0.0996926 -47410,5415:205:2,-155.5,-40,0,0,-0.098801 -47411,5415:205:1,-155,-40,0,0,-0.0990892 -47412,5415:104:2,-154.5,-40,0,0,-0.0984657 -47413,5415:104:1,-154,-40,0,0,-0.0951119 -47414,5415:103:2,-153.5,-40,0,0,-0.0945617 -47415,5415:103:1,-153,-40,0,0,-0.0983702 -47416,5415:102:2,-152.5,-40,0,0,-0.102872 -47417,5415:102:1,-152,-40,0,0,-0.104745 -47418,5415:101:2,-151.5,-40,0,0,-0.104006 -47419,5415:101:1,-151,-40,0,0,-0.103602 -47420,5415:100:2,-150.5,-40,0,0,-0.105258 -47421,5415:100:1,-150,-40,0,0,-0.107153 -47422,5414:209:2,-149.5,-40,0,0,-0.107363 -47423,5414:209:1,-149,-40,0,0,-0.105903 -47424,5414:208:2,-148.5,-40,0,0,-0.104032 -47425,5414:208:1,-148,-40,0,0,-0.102596 -47426,5414:207:2,-147.5,-40,0,0,-0.102247 -47427,5414:207:1,-147,-40,0,0,-0.103349 -47428,5414:206:2,-146.5,-40,0,0,-0.105284 -47429,5414:206:1,-146,-40,0,0,-0.106604 -47430,5414:205:2,-145.5,-40,0,0,-0.106839 -47431,5414:205:1,-145,-40,0,0,-0.104209 -47432,5414:104:2,-144.5,-40,0,0,-0.102571 -47433,5414:104:1,-144,-40,0,0,-0.102272 -47434,5414:103:2,-143.5,-40,0,0,-0.101627 -47435,5414:103:1,-143,-40,0,0,-0.0997414 -47436,5414:102:2,-142.5,-40,0,0,-0.098657 -47437,5414:102:1,-142,-40,0,0,-0.0998872 -47438,5414:101:2,-141.5,-40,0,0,-0.102721 -47439,5414:101:1,-141,-40,0,0,-0.106006 -47440,5414:100:2,-140.5,-40,0,0,-0.106578 -47441,5414:100:1,-140,-40,0,0,-0.104311 -47442,5413:209:2,-139.5,-40,0,0,-0.101999 -47443,5413:209:1,-139,-40,0,0,-0.100594 -47444,5413:208:2,-138.5,-40,0,0,-0.0998872 -47445,5413:208:1,-138,-40,0,0,-0.0997414 -47446,5413:207:2,-137.5,-40,0,0,-0.0991134 -47447,5413:207:1,-137,-40,0,0,-0.0980132 -47448,5413:206:2,-136.5,-40,0,0,-0.0968553 -47449,5413:206:1,-136,-40,0,0,-0.0961078 -47450,5413:205:2,-135.5,-40,0,0,-0.0956664 -47451,5413:205:1,-135,-40,0,0,-0.0955047 -47452,5413:104:2,-134.5,-40,0,0,-0.0947447 -47453,5413:104:1,-134,-40,0,0,-0.0932231 -47454,5413:103:2,-133.5,-40,0,0,-0.0913083 -47455,5413:103:1,-133,-40,0,0,-0.0903012 -47456,5413:102:2,-132.5,-40,0,0,-0.0904759 -47457,5413:102:1,-132,-40,0,0,-0.0903012 -47458,5413:101:2,-131.5,-40,0,0,-0.0895432 -47459,5413:101:1,-131,-40,0,0,-0.0887498 -47460,5413:100:2,-130.5,-40,0,0,-0.0884727 -47461,5413:100:1,-130,-40,0,0,-0.0885578 -47462,5412:209:2,-129.5,-40,0,0,-0.0885792 -47463,5412:209:1,-129,-40,0,0,-0.0884513 -47464,5412:208:2,-128.5,-40,0,0,-0.0881752 -47465,5412:208:1,-128,-40,0,0,-0.0877525 -47466,5412:207:2,-127.5,-40,0,0,-0.0871639 -47467,5412:207:1,-127,-40,0,0,-0.0867051 -47468,5412:206:2,-126.5,-40,0,0,-0.0868297 -47469,5412:206:1,-126,-40,0,0,-0.0868921 -47470,5412:205:2,-125.5,-40,0,0,-0.0860622 -47471,5412:205:1,-125,-40,0,0,-0.0842652 -47472,5412:104:2,-124.5,-40,0,0,-0.081978 -47473,5412:104:1,-124,-40,0,0,-0.0792454 -47474,5412:103:2,-123.5,-40,0,0,-0.0750776 -47475,5412:103:1,-123,-40,0,0,-0.0703908 -47476,5412:102:2,-122.5,-40,0,0,-0.0684552 -47477,5412:102:1,-122,-40,0,0,-0.0697282 -47478,5412:101:2,-121.5,-40,0,0,-0.06958 -47479,5412:101:1,-121,-40,0,0,-0.0693665 -47480,5412:100:2,-120.5,-40,0,0,-0.0697609 -47481,5412:100:1,-120,-40,0,0,-0.0683581 -47482,5411:209:2,-119.5,-40,0,0,-0.0661695 -47483,5411:209:1,-119,-40,0,0,-0.0643874 -47484,5411:208:2,-118.5,-40,0,0,-0.0656574 -47485,5411:208:1,-118,-40,0,0,-0.065952 -47486,5411:207:2,-117.5,-40,0,0,-0.0645693 -47487,5411:207:1,-117,-40,0,0,-0.063129 -47488,5411:206:2,-116.5,-40,0,0,-0.0627887 -47489,5411:206:1,-116,-40,0,0,-0.063845 -47490,5411:205:2,-115.5,-40,0,0,-0.0657967 -47491,5411:205:1,-115,-40,0,0,-0.0680364 -47492,5411:104:2,-114.5,-40,0,0,-0.0690557 -47493,5411:104:1,-114,-40,0,0,-0.0678119 -47494,5411:103:2,-113.5,-40,0,0,-0.0659985 -47495,5411:103:1,-113,-40,0,0,-0.0644938 -47496,5411:102:2,-112.5,-40,0,0,-0.0623919 -47497,5411:102:1,-112,-40,0,0,-0.0585397 -47498,5411:101:2,-111.5,-40,0,0,-0.0548741 -47499,5411:101:1,-111,-40,0,0,-0.0531387 -47500,5411:100:2,-110.5,-40,0,0,-0.0539108 -47501,5411:100:1,-110,-40,0,0,-0.0559203 -47502,5410:209:2,-109.5,-40,0,0,-0.0571075 -47503,5410:209:1,-109,-40,0,0,-0.0566293 -47504,5410:208:2,-108.5,-40,0,0,-0.0536731 -47505,5410:208:1,-108,-40,0,0,-0.0514845 -47506,5410:207:2,-107.5,-40,0,0,-0.0519897 -47507,5410:207:1,-107,-40,0,0,-0.0541124 -47508,5410:206:2,-106.5,-40,0,0,-0.056405 -47509,5410:206:1,-106,-40,0,0,-0.0566293 -47510,5410:205:2,-105.5,-40,0,0,-0.0554916 -47511,5410:205:1,-105,-40,0,0,-0.053999 -47512,5410:104:2,-104.5,-40,0,0,-0.0534236 -47513,5410:104:1,-104,-40,0,0,-0.0537857 -47514,5410:103:2,-103.5,-40,0,0,-0.052671 -47515,5410:103:1,-103,-40,0,0,-0.0509613 -47516,5410:102:2,-102.5,-40,0,0,-0.0499076 -47517,5410:102:1,-102,-40,0,0,-0.0497806 -47518,5410:101:2,-101.5,-40,0,0,-0.0504434 -47519,5410:101:1,-101,-40,0,0,-0.0517726 -47520,5410:100:2,-100.5,-40,0,0,-0.0524141 -47521,5410:100:1,-100,-40,0,0,-0.0513176 -47522,5409:209:2,-99.5,-40,0,0,-0.0497573 -47523,5409:209:1,-99,-40,0,0,-0.0487979 -47524,5409:208:2,-98.5,-40,0,0,-0.0485385 -47525,5409:208:1,-98,-40,0,0,-0.048247 -47526,5409:207:2,-97.5,-40,0,0,-0.0475374 -47527,5409:207:1,-97,-40,0,0,-0.0466873 -47528,5409:206:2,-96.5,-40,0,0,-0.0462682 -47529,5409:206:1,-96,-40,0,0,-0.0462362 -47530,5409:205:2,-95.5,-40,0,0,-0.045885 -47531,5409:205:1,-95,-40,0,0,-0.0452429 -47532,5409:104:2,-94.5,-40,0,0,-0.0460124 -47533,5409:104:1,-94,-40,0,0,-0.0469798 -47534,5409:103:2,-93.5,-40,0,0,-0.0476144 -47535,5409:103:1,-93,-40,0,0,-0.0477913 -47536,5409:102:2,-92.5,-40,0,0,-0.0470342 -47537,5409:102:1,-92,-40,0,0,-0.0465688 -47538,5409:101:2,-91.5,-40,0,0,-0.0464399 -47539,5409:101:1,-91,-40,0,0,-0.0461616 -47540,5409:100:2,-90.5,-40,0,0,-0.045779 -47541,5409:100:1,-90,-40,0,0,-0.045589 -47542,5408:209:2,-89.5,-40,0,0,-0.0456102 -47543,5408:209:1,-89,-40,0,0,-0.0456839 -47544,5408:208:2,-88.5,-40,0,0,-0.045589 -47545,5408:208:1,-88,-40,0,0,-0.0456732 -47546,5408:207:2,-87.5,-40,0,0,-0.046601 -47547,5408:207:1,-87,-40,0,0,-0.0462897 -47548,5408:206:2,-86.5,-40,0,0,-0.0447134 -47549,5408:206:1,-86,-40,0,0,-0.0438145 -47550,5408:205:2,-85.5,-40,0,0,-0.0441595 -47551,5408:205:1,-85,-40,0,0,-0.0445998 -47552,5408:104:2,-84.5,-40,0,0,-0.0444049 -47553,5408:104:1,-84,-40,0,0,-0.0437338 -47554,5408:103:2,-83.5,-40,0,0,-0.0432525 -47555,5408:103:1,-83,-40,0,0,-0.0445176 -47556,5408:102:2,-82.5,-40,0,0,-0.0480018 -47557,5408:102:1,-82,-40,0,0,-0.0478356 -47558,5408:101:2,-81.5,-40,0,0,-0.0470233 -47559,5408:101:1,-81,-40,0,0,-0.0527811 -47560,5408:100:2,-80.5,-40,0,0,-0.0532376 -47561,5408:100:1,-80,-40,0,0,-0.0527077 -47562,5407:209:2,-79.5,-40,0,0,-0.052634 -47563,5407:209:1,-79,-40,0,0,-0.0522559 -47564,5407:208:2,-78.5,-40,0,0,-0.0512816 -47565,5407:208:1,-78,-40,0,0,-0.0504784 -47566,5407:207:2,-77.5,-40,0,0,-0.0501982 -47567,5407:207:1,-77,-40,0,0,-0.0508311 -47568,5407:206:2,-76.5,-40,0,0,-0.0592009 -47569,5407:206:1,-76,-40,0,0,-0.0670172 -47570,5407:205:2,-75.5,-40,0,0,-0.0756689 -47571,5406:207:2,-67.5,-40,0,0,-0.075597 -47572,5406:207:1,-67,-40,0,0,-0.0710264 -47573,5406:206:2,-66.5,-40,0,0,-0.0645999 -47574,5406:206:1,-66,-40,0,0,-0.0611747 -47575,5406:205:2,-65.5,-40,0,0,-0.058253 -47576,5406:205:1,-65,-40,0,0,-0.0564183 -47577,5406:104:2,-64.5,-40,0,0,-0.0545298 -47578,5406:104:1,-64,-40,0,0,-0.052671 -47579,5406:103:2,-63.5,-40,0,0,-0.0518689 -47580,5406:103:1,-63,-40,0,0,-0.0538232 -47581,5406:102:2,-62.5,-40,0,0,-0.0551303 -47582,5406:102:1,-62,-40,0,0,-0.0536605 -47583,5406:101:2,-61.5,-40,0,0,-0.0577651 -47584,5406:101:1,-61,-40,0,0,-0.0631883 -47585,5406:100:2,-60.5,-40,0,0,-0.0637247 -47586,5406:100:1,-60,-40,0,0,-0.061693 -47587,5405:209:2,-59.5,-40,0,0,-0.0584988 -47588,5405:209:1,-59,-40,0,0,-0.0551303 -47589,5405:208:2,-58.5,-40,0,0,-0.0521955 -47590,5405:208:1,-58,-40,0,0,-0.0501399 -47591,5405:207:2,-57.5,-40,0,0,-0.0479465 -47592,5405:207:1,-57,-40,0,0,-0.0444662 -47593,5405:206:2,-56.5,-40,0,0,-0.0411443 -47594,5405:206:1,-56,-40,0,0,-0.0394044 -47595,5405:205:2,-55.5,-40,0,0,-0.0380186 -47596,5405:205:1,-55,-40,0,0,-0.0357137 -47597,5405:104:2,-54.5,-40,0,0,-0.0326913 -47598,5405:104:1,-54,-40,0,0,-0.0296946 -47599,5405:103:2,-53.5,-40,0,0,-0.0290269 -47600,5405:103:1,-53,-40,0,0,-0.0311063 -47601,5405:102:2,-52.5,-40,0,0,-0.0311204 -47602,5405:102:1,-52,-40,0,0,-0.0315632 -47603,5405:101:2,-51.5,-40,0,0,-0.0333012 -47604,5405:101:1,-51,-40,0,0,-0.0338457 -47605,5405:100:2,-50.5,-40,0,0,-0.0290468 -47606,5405:100:1,-50,-40,0,0,-0.0269554 -47607,5404:209:2,-49.5,-40,0,0,-0.0274243 -47608,5404:209:1,-49,-40,0,0,-0.0281116 -47609,5404:208:2,-48.5,-40,0,0,-0.0279335 -47610,5404:208:1,-48,-40,0,0,-0.0269981 -47611,5404:207:2,-47.5,-40,0,0,-0.0294859 -47612,5404:207:1,-47,-40,0,0,-0.0278637 -47613,5404:206:2,-46.5,-40,0,0,-0.0311843 -47614,5404:206:1,-46,-40,0,0,-0.0317944 -47615,5404:205:2,-45.5,-40,0,0,-0.0293789 -47616,5404:205:1,-45,-40,0,0,-0.0294256 -47617,5404:104:2,-44.5,-40,0,0,-0.031078 -47618,5404:104:1,-44,-40,0,0,-0.0309015 -47619,5404:103:2,-43.5,-40,0,0,-0.0288428 -47620,5404:103:1,-43,-40,0,0,-0.0271826 -47621,5404:102:2,-42.5,-40,0,0,-0.025842 -47622,5404:102:1,-42,-40,0,0,-0.0245303 -47623,5404:101:2,-41.5,-40,0,0,-0.0233287 -47624,5404:101:1,-41,-40,0,0,-0.0225256 -47625,5404:100:2,-40.5,-40,0,0,-0.0215845 -47626,5404:100:1,-40,-40,0,0,-0.0217066 -47627,5403:209:2,-39.5,-40,0,0,-0.0248601 -47628,5403:209:1,-39,-40,0,0,-0.0260538 -47629,5403:208:2,-38.5,-40,0,0,-0.0263151 -47630,5403:208:1,-38,-40,0,0,-0.0279271 -47631,5403:207:2,-37.5,-40,0,0,-0.0283103 -47632,5403:207:1,-37,-40,0,0,-0.0280541 -47633,5403:206:2,-36.5,-40,0,0,-0.0270595 -47634,5403:206:1,-36,-40,0,0,-0.0254123 -47635,5403:205:2,-35.5,-40,0,0,-0.024636 -47636,5403:205:1,-35,-40,0,0,-0.0249898 -47637,5403:104:2,-34.5,-40,0,0,-0.0248545 -47638,5403:104:1,-34,-40,0,0,-0.025058 -47639,5403:103:2,-33.5,-40,0,0,-0.024832 -47640,5403:103:1,-33,-40,0,0,-0.0240901 -47641,5403:102:2,-32.5,-40,0,0,-0.0235459 -47642,5403:102:1,-32,-40,0,0,-0.0238946 -47643,5403:101:2,-31.5,-40,0,0,-0.0245303 -47644,5403:101:1,-31,-40,0,0,-0.0243147 -47645,5403:100:2,-30.5,-40,0,0,-0.0241119 -47646,5403:100:1,-30,-40,0,0,-0.0241774 -47647,5402:209:2,-29.5,-40,0,0,-0.0241064 -47648,5402:209:1,-29,-40,0,0,-0.0242267 -47649,5402:208:2,-28.5,-40,0,0,-0.0253319 -47650,5402:208:1,-28,-40,0,0,-0.0267725 -47651,5402:207:2,-27.5,-40,0,0,-0.0259066 -47652,5402:207:1,-27,-40,0,0,-0.0257368 -47653,5402:206:2,-26.5,-40,0,0,-0.0250465 -47654,5402:206:1,-26,-40,0,0,-0.0230925 -47655,5402:205:2,-25.5,-40,0,0,-0.0235939 -47656,5402:205:1,-25,-40,0,0,-0.0245136 -47657,5402:104:2,-24.5,-40,0,0,-0.023171 -47658,5402:104:1,-24,-40,0,0,-0.0220724 -47659,5402:103:2,-23.5,-40,0,0,-0.0230874 -47660,5402:103:1,-23,-40,0,0,-0.0251432 -47661,5402:102:2,-22.5,-40,0,0,-0.0263568 -47662,5402:102:1,-22,-40,0,0,-0.0266573 -47663,5402:101:2,-21.5,-40,0,0,-0.0258948 -47664,5402:101:1,-21,-40,0,0,-0.0259831 -47665,5402:100:2,-20.5,-40,0,0,-0.0262852 -47666,5402:100:1,-20,-40,0,0,-0.0264766 -47667,5401:209:2,-19.5,-40,0,0,-0.0263091 -47668,5401:209:1,-19,-40,0,0,-0.0261188 -47669,5401:208:2,-18.5,-40,0,0,-0.0254297 -47670,5401:208:1,-18,-40,0,0,-0.0234875 -47671,5401:207:2,-17.5,-40,0,0,-0.0219778 -47672,5401:207:1,-17,-40,0,0,-0.022648 -47673,5401:206:2,-16.5,-40,0,0,-0.0247309 -47674,5401:206:1,-16,-40,0,0,-0.0286468 -47675,5401:205:2,-15.5,-40,0,0,-0.031513 -47676,5401:205:1,-15,-40,0,0,-0.0311914 -47677,5401:104:2,-14.5,-40,0,0,-0.0293322 -47678,5401:104:1,-14,-40,0,0,-0.0274804 -47679,5401:103:2,-13.5,-40,0,0,-0.0266453 -47680,5401:103:1,-13,-40,0,0,-0.026815 -47681,5401:102:2,-12.5,-40,0,0,-0.0268516 -47682,5401:102:1,-12,-40,0,0,-0.0234292 -47683,5401:101:2,-11.5,-40,0,0,-0.0213761 -47684,5401:101:1,-11,-40,0,0,-0.0191407 -47685,5401:100:2,-10.5,-40,0,0,-0.0187905 -47686,5401:100:1,-10,-40,0,0,-0.0193531 -47687,5400:209:2,-9.5,-40,0,0,-0.0190934 -47688,5400:209:1,-9,-40,0,0,-0.0176872 -47689,5400:208:2,-8.5,-40,0,0,-0.0162872 -47690,5400:208:1,-8,-40,0,0,-0.0150367 -47691,5400:207:2,-7.5,-40,0,0,-0.0146572 -47692,5400:207:1,-7,-40,0,0,-0.0154573 -47693,5400:206:2,-6.5,-40,0,0,-0.0157408 -47694,5400:206:1,-6,-40,0,0,-0.0160837 -47695,5400:205:2,-5.5,-40,0,0,-0.0167171 -47696,5400:205:1,-5,-40,0,0,-0.0179193 -47697,5400:104:2,-4.5,-40,0,0,-0.0194317 -47698,5400:104:1,-4,-40,0,0,-0.0202087 -47699,5400:103:2,-3.5,-40,0,0,-0.0202087 -47700,5400:103:1,-3,-40,0,0,-0.0196562 -47701,5400:102:2,-2.5,-40,0,0,-0.018171 -47702,5400:102:1,-2,-40,0,0,-0.016412 -47703,5400:101:2,-1.5,-40,0,0,-0.0167585 -47704,5400:101:1,-1,-40,0,0,-0.0190247 -47705,5400:100:2,-0.5,-40,0,0,-0.0224698 -47706,3400:100:2,0,-40,0,0,-0.0267603 -47707,3400:100:2,0.5,-40,0,0,-0.0304543 -47708,3400:101:1,1,-40,0,0,-0.030705 -47709,3400:101:2,1.5,-40,0,0,-0.0296002 -47710,3400:102:1,2,-40,0,0,-0.0271149 -47711,3400:102:2,2.5,-40,0,0,-0.0241556 -47712,3400:103:1,3,-40,0,0,-0.0214049 -47713,3400:103:2,3.5,-40,0,0,-0.0193053 -47714,3400:104:1,4,-40,0,0,-0.0182982 -47715,3400:104:2,4.5,-40,0,0,-0.0176673 -47716,3400:205:1,5,-40,0,0,-0.0169896 -47717,3400:205:2,5.5,-40,0,0,-0.0176991 -47718,3400:206:1,6,-40,0,0,-0.0190719 -47719,3400:206:2,6.5,-40,0,0,-0.019612 -47720,3400:207:1,7,-40,0,0,-0.019537 -47721,3400:207:2,7.5,-40,0,0,-0.0153296 -47722,3400:208:1,8,-40,0,0,-0.0142875 -47723,3400:208:2,8.5,-40,0,0,-0.0159042 -47724,3400:209:1,9,-40,0,0,-0.0173525 -47725,3400:209:2,9.5,-40,0,0,-0.0177111 -47726,3401:100:1,10,-40,0,0,-0.0176474 -47727,3401:100:2,10.5,-40,0,0,-0.0176872 -47728,3401:101:1,11,-40,0,0,-0.018526 -47729,3401:101:2,11.5,-40,0,0,-0.0188372 -47730,3401:102:1,12,-40,0,0,-0.018618 -47731,3401:102:2,12.5,-40,0,0,-0.0184387 -47732,3401:103:1,13,-40,0,0,-0.0185803 -47733,3401:103:2,13.5,-40,0,0,-0.0182325 -47734,3401:104:1,14,-40,0,0,-0.0168755 -47735,3401:104:2,14.5,-40,0,0,-0.0154643 -47736,3401:205:1,15,-40,0,0,-0.0175328 -47737,3401:205:2,15.5,-40,0,0,-0.021251 -47738,3401:206:1,16,-40,0,0,-0.0231972 -47739,3401:206:2,16.5,-40,0,0,-0.0232708 -47740,3401:207:1,17,-40,0,0,-0.0221672 -47741,3401:207:2,17.5,-40,0,0,-0.0183105 -47742,3401:208:1,18,-40,0,0,-0.0161778 -47743,3401:208:2,18.5,-40,0,0,-0.0160008 -47744,3401:209:1,19,-40,0,0,-0.0163458 -47745,3401:209:2,19.5,-40,0,0,-0.0186222 -47746,3402:100:1,20,-40,0,0,-0.0190977 -47747,3402:100:2,20.5,-40,0,0,-0.0182284 -47748,3402:101:1,21,-40,0,0,-0.0167208 -47749,3402:101:2,21.5,-40,0,0,-0.0173602 -47750,3402:102:1,22,-40,0,0,-0.0182859 -47751,3402:102:2,22.5,-40,0,0,-0.0162288 -47752,3402:103:1,23,-40,0,0,-0.0151926 -47753,3402:103:2,23.5,-40,0,0,-0.0161234 -47754,3402:104:1,24,-40,0,0,-0.0165192 -47755,3402:104:2,24.5,-40,0,0,-0.0174149 -47756,3402:205:1,25,-40,0,0,-0.0183229 -47757,3402:205:2,25.5,-40,0,0,-0.0183312 -47758,3402:206:1,26,-40,0,0,-0.0171546 -47759,3402:206:2,26.5,-40,0,0,-0.0147693 -47760,3402:207:1,27,-40,0,0,-0.0156915 -47761,3402:207:2,27.5,-40,0,0,-0.0176912 -47762,3402:208:1,28,-40,0,0,-0.0192705 -47763,3402:208:2,28.5,-40,0,0,-0.0190161 -47764,3402:209:1,29,-40,0,0,-0.0167622 -47765,3402:209:2,29.5,-40,0,0,-0.015897 -47766,3403:100:1,30,-40,0,0,-0.0153296 -47767,3403:100:2,30.5,-40,0,0,-0.0153261 -47768,3403:101:1,31,-40,0,0,-0.0160152 -47769,3403:101:2,31.5,-40,0,0,-0.0175406 -47770,3403:102:1,32,-40,0,0,-0.0179799 -47771,3403:102:2,32.5,-40,0,0,-0.0175328 -47772,3403:103:1,33,-40,0,0,-0.0174816 -47773,3403:103:2,33.5,-40,0,0,-0.0156527 -47774,3403:104:1,34,-40,0,0,-0.0149158 -47775,3403:104:2,34.5,-40,0,0,-0.0156458 -47776,3403:205:1,35,-40,0,0,-0.0172863 -47777,3403:205:2,35.5,-40,0,0,-0.0175248 -47778,3403:206:1,36,-40,0,0,-0.0169287 -47779,3403:206:2,36.5,-40,0,0,-0.0162288 -47780,3403:207:1,37,-40,0,0,-0.0153674 -47781,3403:207:2,37.5,-40,0,0,-0.0141853 -47782,3403:208:1,38,-40,0,0,-0.0137781 -47783,3403:208:2,38.5,-40,0,0,-0.0150738 -47784,3403:209:1,39,-40,0,0,-0.0167359 -47785,3403:209:2,39.5,-40,0,0,-0.017743 -47786,3404:100:1,40,-40,0,0,-0.0191709 -47787,3404:100:2,40.5,-40,0,0,-0.0197807 -47788,3404:101:1,41,-40,0,0,-0.0189521 -47789,3404:101:2,41.5,-40,0,0,-0.018356 -47790,3404:102:1,42,-40,0,0,-0.0176237 -47791,3404:102:2,42.5,-40,0,0,-0.0169973 -47792,3404:103:1,43,-40,0,0,-0.0167697 -47793,3404:103:2,43.5,-40,0,0,-0.0167886 -47794,3404:104:1,44,-40,0,0,-0.0165787 -47795,3404:104:2,44.5,-40,0,0,-0.0163788 -47796,3404:205:1,45,-40,0,0,-0.0159077 -47797,3404:205:2,45.5,-40,0,0,-0.0154956 -47798,3404:206:1,46,-40,0,0,-0.0151585 -47799,3404:206:2,46.5,-40,0,0,-0.0147727 -47800,3404:207:1,47,-40,0,0,-0.0146703 -47801,3404:207:2,47.5,-40,0,0,-0.0161633 -47802,3404:208:1,48,-40,0,0,-0.0184886 -47803,3404:208:2,48.5,-40,0,0,-0.0193095 -47804,3404:209:1,49,-40,0,0,-0.0190161 -47805,3404:209:2,49.5,-40,0,0,-0.0175959 -47806,3405:100:1,50,-40,0,0,-0.0165192 -47807,3405:100:2,50.5,-40,0,0,-0.0163863 -47808,3405:101:1,51,-40,0,0,-0.0166422 -47809,3405:101:2,51.5,-40,0,0,-0.0167171 -47810,3405:102:1,52,-40,0,0,-0.0167283 -47811,3405:102:2,52.5,-40,0,0,-0.0167359 -47812,3405:103:1,53,-40,0,0,-0.0164822 -47813,3405:103:2,53.5,-40,0,0,-0.0161234 -47814,3405:104:1,54,-40,0,0,-0.0160117 -47815,3405:104:2,54.5,-40,0,0,-0.0162872 -47816,3405:205:1,55,-40,0,0,-0.0167848 -47817,3405:205:2,55.5,-40,0,0,-0.0169364 -47818,3405:206:1,56,-40,0,0,-0.0166123 -47819,3405:206:2,56.5,-40,0,0,-0.0160585 -47820,3405:207:1,57,-40,0,0,-0.0161852 -47821,3405:207:2,57.5,-40,0,0,-0.0166459 -47822,3405:208:1,58,-40,0,0,-0.0164822 -47823,3405:208:2,58.5,-40,0,0,-0.0160044 -47824,3405:209:1,59,-40,0,0,-0.0169135 -47825,3405:209:2,59.5,-40,0,0,-0.0173525 -47826,3406:100:1,60,-40,0,0,-0.0174385 -47827,3406:100:2,60.5,-40,0,0,-0.0175446 -47828,3406:101:1,61,-40,0,0,-0.0177271 -47829,3406:101:2,61.5,-40,0,0,-0.0175406 -47830,3406:102:1,62,-40,0,0,-0.016887 -47831,3406:102:2,62.5,-40,0,0,-0.0162325 -47832,3406:103:1,63,-40,0,0,-0.0155932 -47833,3406:103:2,63.5,-40,0,0,-0.0153158 -47834,3406:104:1,64,-40,0,0,-0.0154158 -47835,3406:104:2,64.5,-40,0,0,-0.0152609 -47836,3406:205:1,65,-40,0,0,-0.0148091 -47837,3406:205:2,65.5,-40,0,0,-0.0144548 -47838,3406:206:1,66,-40,0,0,-0.0144711 -47839,3406:206:2,66.5,-40,0,0,-0.0147727 -47840,3406:207:1,67,-40,0,0,-0.0150772 -47841,3406:207:2,67.5,-40,0,0,-0.0151892 -47842,3406:208:1,68,-40,0,0,-0.0153296 -47843,3406:208:2,68.5,-40,0,0,-0.015801 -47844,3406:209:1,69,-40,0,0,-0.0160765 -47845,3406:209:2,69.5,-40,0,0,-0.01608 -47846,3407:100:1,70,-40,0,0,-0.0152746 -47847,3407:100:2,70.5,-40,0,0,-0.0149896 -47848,3407:101:1,71,-40,0,0,-0.0140871 -47849,3407:101:2,71.5,-40,0,0,-0.0138028 -47850,3407:102:1,72,-40,0,0,-0.0138929 -47851,3407:102:2,72.5,-40,0,0,-0.0133619 -47852,3407:103:2,73.5,-40,0,0,-0.0129757 -47853,3407:104:1,74,-40,0,0,-0.012817 -47854,3407:104:2,74.5,-40,0,0,-0.0131306 -47855,3407:205:1,75,-40,0,0,-0.014766 -47856,3407:205:2,75.5,-40,0,0,-0.018918 -47857,3407:206:1,76,-40,0,0,-0.0206835 -47858,3407:206:2,76.5,-40,0,0,-0.0227765 -47859,3407:207:1,77,-40,0,0,-0.0241119 -47860,3407:207:2,77.5,-40,0,0,-0.0250523 -47861,3407:208:1,78,-40,0,0,-0.0250353 -47862,3407:208:2,78.5,-40,0,0,-0.0228331 -47863,3407:209:1,79,-40,0,0,-0.0221823 -47864,3407:209:2,79.5,-40,0,0,-0.024558 -47865,3408:100:1,80,-40,0,0,-0.0276055 -47866,3408:100:2,80.5,-40,0,0,-0.0287381 -47867,3408:101:1,81,-40,0,0,-0.0260834 -47868,3408:101:2,81.5,-40,0,0,-0.0236688 -47869,3408:102:1,82,-40,0,0,-0.0241392 -47870,3408:102:2,82.5,-40,0,0,-0.0276431 -47871,3408:103:1,83,-40,0,0,-0.0326242 -47872,3408:103:2,83.5,-40,0,0,-0.0335532 -47873,3408:104:1,84,-40,0,0,-0.0321295 -47874,3408:104:2,84.5,-40,0,0,-0.0277563 -47875,3408:205:1,85,-40,0,0,-0.0268091 -47876,3408:205:2,85.5,-40,0,0,-0.0262376 -47877,3408:206:1,86,-40,0,0,-0.0251147 -47878,3408:206:2,86.5,-40,0,0,-0.0248263 -47879,3408:207:1,87,-40,0,0,-0.0255741 -47880,3408:207:2,87.5,-40,0,0,-0.0304752 -47881,3408:208:1,88,-40,0,0,-0.0393412 -47882,3408:208:2,88.5,-40,0,0,-0.0432324 -47883,3408:209:1,89,-40,0,0,-0.0443945 -47884,3408:209:2,89.5,-40,0,0,-0.0403667 -47885,3409:100:1,90,-40,0,0,-0.0340162 -47886,3409:100:2,90.5,-40,0,0,-0.0333697 -47887,3409:101:1,91,-40,0,0,-0.03505 -47888,3409:101:2,91.5,-40,0,0,-0.0348982 -47889,3409:102:1,92,-40,0,0,-0.0337917 -47890,3409:102:2,92.5,-40,0,0,-0.0329009 -47891,3409:103:1,93,-40,0,0,-0.0327211 -47892,3409:103:2,93.5,-40,0,0,-0.0339307 -47893,3409:104:1,94,-40,0,0,-0.0351868 -47894,3409:104:2,94.5,-40,0,0,-0.0353562 -47895,3409:205:1,95,-40,0,0,-0.0349301 -47896,3409:205:2,95.5,-40,0,0,-0.0333242 -47897,3409:206:1,96,-40,0,0,-0.0312983 -47898,3409:206:2,96.5,-40,0,0,-0.0308522 -47899,3409:207:1,97,-40,0,0,-0.0314126 -47900,3409:207:2,97.5,-40,0,0,-0.0318161 -47901,3409:208:1,98,-40,0,0,-0.0318378 -47902,3409:208:2,98.5,-40,0,0,-0.0314985 -47903,3409:209:1,99,-40,0,0,-0.0305238 -47904,3409:209:2,99.5,-40,0,0,-0.027965 -47905,3410:100:1,100,-40,0,0,-0.0244471 -47906,3410:100:2,100.5,-40,0,0,-0.0222827 -47907,3410:101:1,101,-40,0,0,-0.022895 -47908,3410:101:2,101.5,-40,0,0,-0.022895 -47909,3410:102:1,102,-40,0,0,-0.0227661 -47910,3410:102:2,102.5,-40,0,0,-0.0227455 -47911,3410:103:1,103,-40,0,0,-0.0232445 -47912,3410:103:2,103.5,-40,0,0,-0.0242597 -47913,3410:104:1,104,-40,0,0,-0.0247982 -47914,3410:104:2,104.5,-40,0,0,-0.0251887 -47915,3410:205:1,105,-40,0,0,-0.0260598 -47916,3410:205:2,105.5,-40,0,0,-0.0264286 -47917,3410:206:1,106,-40,0,0,-0.0252116 -47918,3410:206:2,106.5,-40,0,0,-0.0224493 -47919,3410:207:1,107,-40,0,0,-0.0215699 -47920,3410:207:2,107.5,-40,0,0,-0.0227507 -47921,3410:208:1,108,-40,0,0,-0.0245136 -47922,3410:208:2,108.5,-40,0,0,-0.0253319 -47923,3410:209:1,109,-40,0,0,-0.0249334 -47924,3410:209:2,109.5,-40,0,0,-0.0242212 -47925,3411:100:1,110,-40,0,0,-0.0244527 -47926,3411:100:2,110.5,-40,0,0,-0.0254297 -47927,3411:101:1,111,-40,0,0,-0.0258654 -47928,3411:101:2,111.5,-40,0,0,-0.0253779 -47929,3411:102:1,112,-40,0,0,-0.0248263 -47930,3411:102:2,112.5,-40,0,0,-0.0262256 -47931,3411:103:1,113,-40,0,0,-0.0289742 -47932,3411:103:2,113.5,-40,0,0,-0.0311134 -47933,3411:104:1,114,-40,0,0,-0.0307471 -47934,3411:104:2,114.5,-40,0,0,-0.0295464 -47935,3411:205:1,115,-40,0,0,-0.0310214 -47936,3411:205:2,115.5,-40,0,0,-0.0319323 -47937,3411:206:1,116,-40,0,0,-0.0316642 -47938,3411:206:2,116.5,-40,0,0,-0.0312127 -47939,3411:207:1,117,-40,0,0,-0.0315058 -47940,3411:207:2,117.5,-40,0,0,-0.0332405 -47941,3411:208:1,118,-40,0,0,-0.0347311 -47942,3411:208:2,118.5,-40,0,0,-0.0358694 -47943,3411:209:1,119,-40,0,0,-0.035968 -47944,3411:209:2,119.5,-40,0,0,-0.0354694 -47945,3412:100:1,120,-40,0,0,-0.0392961 -47946,3412:100:2,120.5,-40,0,0,-0.0479354 -47947,3412:101:1,121,-40,0,0,-0.0532747 -47948,3412:101:2,121.5,-40,0,0,-0.0529658 -47949,3412:102:1,122,-40,0,0,-0.0476477 -47950,3412:102:2,122.5,-40,0,0,-0.0453578 -47951,3412:103:1,123,-40,0,0,-0.0449306 -47952,3412:103:2,123.5,-40,0,0,-0.0426979 -47953,3412:104:1,124,-40,0,0,-0.0420732 -47954,3412:104:2,124.5,-40,0,0,-0.0416779 -47955,3412:205:1,125,-40,0,0,-0.0407958 -47956,3412:205:2,125.5,-40,0,0,-0.0395586 -47957,3412:206:1,126,-40,0,0,-0.0389548 -47958,3412:206:2,126.5,-40,0,0,-0.0414292 -47959,3412:207:1,127,-40,0,0,-0.0522318 -47960,3412:207:2,127.5,-40,0,0,-0.0534236 -47961,3412:208:1,128,-40,0,0,-0.0542132 -47962,3412:208:2,128.5,-40,0,0,-0.0553107 -47963,3412:209:1,129,-40,0,0,-0.0545934 -47964,3412:209:2,129.5,-40,0,0,-0.0538232 -47965,3413:100:1,130,-40,0,0,-0.0548995 -47966,3413:100:2,130.5,-40,0,0,-0.0567885 -47967,3413:101:1,131,-40,0,0,-0.0576976 -47968,3413:101:2,131.5,-40,0,0,-0.0581579 -47969,3413:102:1,132,-40,0,0,-0.0585397 -47970,3413:102:2,132.5,-40,0,0,-0.0580899 -47971,3413:103:1,133,-40,0,0,-0.0556728 -47972,3413:103:2,133.5,-40,0,0,-0.0515802 -47973,3413:104:1,134,-40,0,0,-0.0499193 -47974,3413:104:2,134.5,-40,0,0,-0.0533864 -47975,3413:205:1,135,-40,0,0,-0.0547972 -47976,3413:205:2,135.5,-40,0,0,-0.0561033 -47977,3413:206:1,136,-40,0,0,-0.0573347 -47978,3413:206:2,136.5,-40,0,0,-0.0583895 -47979,3413:207:1,137,-40,0,0,-0.0587046 -47980,3413:207:2,137.5,-40,0,0,-0.0568946 -47981,3413:208:1,138,-40,0,0,-0.0511865 -47982,3413:208:2,138.5,-40,0,0,-0.0421703 -47983,3413:209:1,139,-40,0,0,-0.0418895 -47984,3413:209:2,139.5,-40,0,0,-0.0420537 -47985,3414:100:1,140,-40,0,0,-0.0542888 -47986,3414:100:2,140.5,-40,0,0,-0.0670485 -47987,3414:101:1,141,-40,0,0,-0.0644179 -47988,3414:101:2,141.5,-40,0,0,-0.0638299 -47989,3414:102:1,142,-40,0,0,-0.0627887 -47990,3414:102:2,142.5,-40,0,0,-0.059828 -47991,3414:103:1,143,-40,0,0,-0.0535109 -47992,3414:103:2,143.5,-40,0,0,-0.0443945 -47993,3414:104:1,144,-40,0,0,-0.0421022 -47994,3414:104:2,144.5,-40,0,0,-0.0456417 -47995,3414:205:1,145,-40,0,0,-0.0472633 -47996,3414:205:2,145.5,-40,0,0,-0.047991 -47997,3414:206:1,146,-40,0,0,-0.0510087 -47998,3414:206:2,146.5,-40,0,0,-0.0575091 -47999,3414:207:1,147,-40,0,0,-0.06377 -48000,3414:207:2,147.5,-40,0,0,-0.0688768 -48001,3414:208:1,148,-40,0,0,-0.0700256 -48002,3414:208:2,148.5,-40,0,0,-0.0691374 -48003,3414:209:1,149,-40,0,0,-0.0683581 -48004,3414:209:2,149.5,-40,0,0,-0.0639051 -48005,3415:100:1,150,-40,0,0,-0.0618234 -48006,3415:100:2,150.5,-40,0,0,-0.0602356 -48007,3415:101:1,151,-40,0,0,-0.0573347 -48008,3415:101:2,151.5,-40,0,0,-0.0546315 -48009,3415:102:1,152,-40,0,0,-0.0539611 -48010,3415:102:2,152.5,-40,0,0,-0.0664976 -48011,3415:103:1,153,-40,0,0,-0.0815088 -48012,3415:103:2,153.5,-40,0,0,-0.0820169 -48013,3415:104:1,154,-40,0,0,-0.0761922 -48014,3415:104:2,154.5,-40,0,0,-0.0736832 -48015,3415:205:1,155,-40,0,0,-0.0727628 -48016,3415:205:2,155.5,-40,0,0,-0.0735957 -48017,3415:206:1,156,-40,0,0,-0.0813533 -48018,3415:206:2,156.5,-40,0,0,-0.083183 -48019,3415:207:1,157,-40,0,0,-0.074971 -48020,3415:207:2,157.5,-40,0,0,-0.0720424 -48021,3415:208:1,158,-40,0,0,-0.0730048 -48022,3415:208:2,158.5,-40,0,0,-0.0724017 -48023,3415:209:1,159,-40,0,0,-0.0707413 -48024,3415:209:2,159.5,-40,0,0,-0.0701748 -48025,3416:100:1,160,-40,0,0,-0.0683099 -48026,3416:100:2,160.5,-40,0,0,-0.0654723 -48027,3416:101:1,161,-40,0,0,-0.0678119 -48028,3416:101:2,161.5,-40,0,0,-0.0721962 -48029,3416:102:1,162,-40,0,0,-0.065952 -48030,3416:102:2,162.5,-40,0,0,-0.0656886 -48031,3416:103:1,163,-40,0,0,-0.0653492 -48032,3416:103:2,163.5,-40,0,0,-0.0655956 -48033,3416:104:1,164,-40,0,0,-0.0657192 -48034,3416:104:2,164.5,-40,0,0,-0.0645545 -48035,3416:205:1,165,-40,0,0,-0.0636649 -48036,3416:205:2,165.5,-40,0,0,-0.0645392 -48037,3416:206:1,166,-40,0,0,-0.0670644 -48038,3416:206:2,166.5,-40,0,0,-0.0601792 -48039,3416:207:1,167,-40,0,0,-0.0609457 -48040,3416:207:2,167.5,-40,0,0,-0.0604617 -48041,3416:208:1,168,-40,0,0,-0.0594233 -48042,3416:208:2,168.5,-40,0,0,-0.0573481 -48043,3416:209:1,169,-40,0,0,-0.0567221 -48044,3416:209:2,169.5,-40,0,0,-0.0576705 -48045,3417:100:1,170,-40,0,0,-0.0567355 -48046,3417:100:2,170.5,-40,0,0,-0.0559462 -48047,3417:101:1,171,-40,0,0,-0.0555561 -48048,3417:101:2,171.5,-40,0,0,-0.0549893 -48049,3417:102:1,172,-40,0,0,-0.0543521 -48050,3417:102:2,172.5,-40,0,0,-0.0537731 -48051,3417:103:1,173,-40,0,0,-0.0530026 -48052,3417:103:2,173.5,-40,0,0,-0.0524141 -48053,3417:104:1,174,-40,0,0,-0.0521348 -48054,3417:104:2,174.5,-40,0,0,-0.0519532 -48055,3417:205:1,175,-40,0,0,-0.0519411 -48056,3417:205:2,175.5,-40,0,0,-0.0515802 -48057,3417:206:1,176,-40,0,0,-0.0502914 -48058,3417:206:2,176.5,-40,0,0,-0.0487641 -48059,3417:207:1,177,-40,0,0,-0.0481911 -48060,3417:207:2,177.5,-40,0,0,-0.0484151 -48061,3417:208:1,178,-40,0,0,-0.0484822 -48062,3417:208:2,178.5,-40,0,0,-0.0484264 -48063,3417:209:1,179,-40,0,0,-0.0485162 -48064,3417:209:2,179.5,-40,0,0,-0.0492295 -48065,3418:100:1,180,-40,0,0,-0.0487414 -48066,5318:390:3,-180,-39.5,0,0,-0.0488432 -48067,5317:499:4,-179.5,-39.5,0,0,-0.0475485 -48068,5317:499:3,-179,-39.5,0,0,-0.0449407 -48069,5317:498:4,-178.5,-39.5,0,0,-0.0451906 -48070,5317:498:3,-178,-39.5,0,0,-0.0474824 -48071,5317:497:4,-177.5,-39.5,0,0,-0.0568415 -48072,5317:497:3,-177,-39.5,0,0,-0.0676364 -48073,5317:496:4,-176.5,-39.5,0,0,-0.0698933 -48074,5317:496:3,-176,-39.5,0,0,-0.0661229 -48075,5317:495:4,-175.5,-39.5,0,0,-0.0602076 -48076,5317:495:3,-175,-39.5,0,0,-0.0559856 -48077,5317:394:4,-174.5,-39.5,0,0,-0.0566955 -48078,5317:394:3,-174,-39.5,0,0,-0.0572142 -48079,5317:393:4,-173.5,-39.5,0,0,-0.0584988 -48080,5317:393:3,-173,-39.5,0,0,-0.0638899 -48081,5317:392:4,-172.5,-39.5,0,0,-0.0753639 -48082,5317:392:3,-172,-39.5,0,0,-0.0839026 -48083,5317:391:4,-171.5,-39.5,0,0,-0.0876258 -48084,5317:391:3,-171,-39.5,0,0,-0.0830834 -48085,5317:390:4,-170.5,-39.5,0,0,-0.0732302 -48086,5317:390:3,-170,-39.5,0,0,-0.0790002 -48087,5316:499:4,-169.5,-39.5,0,0,-0.0863932 -48088,5316:499:3,-169,-39.5,0,0,-0.0883027 -48089,5316:498:4,-168.5,-39.5,0,0,-0.0937877 -48090,5316:498:3,-168,-39.5,0,0,-0.0962706 -48091,5316:497:4,-167.5,-39.5,0,0,-0.0981795 -48092,5316:497:3,-167,-39.5,0,0,-0.0983702 -48093,5316:496:4,-166.5,-39.5,0,0,-0.0971143 -48094,5316:496:3,-166,-39.5,0,0,-0.0889206 -48095,5316:495:4,-165.5,-39.5,0,0,-0.0808113 -48096,5316:495:3,-165,-39.5,0,0,-0.0758668 -48097,5316:394:4,-164.5,-39.5,0,0,-0.0764281 -48098,5316:394:3,-164,-39.5,0,0,-0.0802153 -48099,5316:393:4,-163.5,-39.5,0,0,-0.0878369 -48100,5316:393:3,-163,-39.5,0,0,-0.0898239 -48101,5316:392:4,-162.5,-39.5,0,0,-0.0909349 -48102,5316:392:3,-162,-39.5,0,0,-0.0942197 -48103,5316:391:4,-161.5,-39.5,0,0,-0.101528 -48104,5316:391:3,-161,-39.5,0,0,-0.104618 -48105,5316:390:4,-160.5,-39.5,0,0,-0.101874 -48106,5316:390:3,-160,-39.5,0,0,-0.0985854 -48107,5315:499:4,-159.5,-39.5,0,0,-0.0956198 -48108,5315:499:3,-159,-39.5,0,0,-0.0974439 -48109,5315:498:4,-158.5,-39.5,0,0,-0.104184 -48110,5315:498:3,-158,-39.5,0,0,-0.106864 -48111,5315:497:4,-157.5,-39.5,0,0,-0.107783 -48112,5315:497:3,-157,-39.5,0,0,-0.110241 -48113,5315:496:4,-156.5,-39.5,0,0,-0.112787 -48114,5315:496:3,-156,-39.5,0,0,-0.106058 -48115,5315:495:4,-155.5,-39.5,0,0,-0.100986 -48116,5315:495:3,-155,-39.5,0,0,-0.100667 -48117,5315:394:4,-154.5,-39.5,0,0,-0.100741 -48118,5315:394:3,-154,-39.5,0,0,-0.100081 -48119,5315:393:4,-153.5,-39.5,0,0,-0.100447 -48120,5315:393:3,-153,-39.5,0,0,-0.102098 -48121,5315:392:4,-152.5,-39.5,0,0,-0.105929 -48122,5315:392:3,-152,-39.5,0,0,-0.108286 -48123,5315:391:4,-151.5,-39.5,0,0,-0.110512 -48124,5315:391:3,-151,-39.5,0,0,-0.112373 -48125,5315:390:4,-150.5,-39.5,0,0,-0.113931 -48126,5315:390:3,-150,-39.5,0,0,-0.113149 -48127,5314:499:4,-149.5,-39.5,0,0,-0.110865 -48128,5314:499:3,-149,-39.5,0,0,-0.108525 -48129,5314:498:4,-148.5,-39.5,0,0,-0.106917 -48130,5314:498:3,-148,-39.5,0,0,-0.106813 -48131,5314:497:4,-147.5,-39.5,0,0,-0.108392 -48132,5314:497:3,-147,-39.5,0,0,-0.11081 -48133,5314:496:4,-146.5,-39.5,0,0,-0.112622 -48134,5314:496:3,-146,-39.5,0,0,-0.112483 -48135,5314:495:4,-145.5,-39.5,0,0,-0.111192 -48136,5314:495:3,-145,-39.5,0,0,-0.108127 -48137,5314:394:4,-144.5,-39.5,0,0,-0.106136 -48138,5314:394:3,-144,-39.5,0,0,-0.105825 -48139,5314:393:4,-143.5,-39.5,0,0,-0.10598 -48140,5314:393:3,-143,-39.5,0,0,-0.106162 -48141,5314:392:4,-142.5,-39.5,0,0,-0.106629 -48142,5314:392:3,-142,-39.5,0,0,-0.108048 -48143,5314:391:4,-141.5,-39.5,0,0,-0.110268 -48144,5314:391:3,-141,-39.5,0,0,-0.111411 -48145,5314:390:4,-140.5,-39.5,0,0,-0.110079 -48146,5314:390:3,-140,-39.5,0,0,-0.107652 -48147,5313:499:4,-139.5,-39.5,0,0,-0.10585 -48148,5313:499:3,-139,-39.5,0,0,-0.104796 -48149,5313:498:4,-138.5,-39.5,0,0,-0.104362 -48150,5313:498:3,-138,-39.5,0,0,-0.104822 -48151,5313:497:4,-137.5,-39.5,0,0,-0.104261 -48152,5313:497:3,-137,-39.5,0,0,-0.101974 -48153,5313:496:4,-136.5,-39.5,0,0,-0.0997414 -48154,5313:496:3,-136,-39.5,0,0,-0.0987052 -48155,5313:495:4,-135.5,-39.5,0,0,-0.0982748 -48156,5313:495:3,-135,-39.5,0,0,-0.0977285 -48157,5313:394:4,-134.5,-39.5,0,0,-0.0966443 -48158,5313:394:3,-134,-39.5,0,0,-0.0947909 -48159,5313:393:4,-133.5,-39.5,0,0,-0.0936971 -48160,5313:393:3,-133,-39.5,0,0,-0.0946531 -48161,5313:392:4,-132.5,-39.5,0,0,-0.0953658 -48162,5313:392:3,-132,-39.5,0,0,-0.0947447 -48163,5313:391:4,-131.5,-39.5,0,0,-0.0937199 -48164,5313:391:3,-131,-39.5,0,0,-0.0931331 -48165,5313:390:4,-130.5,-39.5,0,0,-0.0932231 -48166,5313:390:3,-130,-39.5,0,0,-0.0932904 -48167,5312:499:4,-129.5,-39.5,0,0,-0.0930878 -48168,5312:499:3,-129,-39.5,0,0,-0.0928412 -48169,5312:498:4,-128.5,-39.5,0,0,-0.092796 -48170,5312:498:3,-128,-39.5,0,0,-0.0927516 -48171,5312:497:4,-127.5,-39.5,0,0,-0.0925277 -48172,5312:497:3,-127,-39.5,0,0,-0.0924385 -48173,5312:496:4,-126.5,-39.5,0,0,-0.0926171 -48174,5312:496:3,-126,-39.5,0,0,-0.0926171 -48175,5312:495:4,-125.5,-39.5,0,0,-0.0915505 -48176,5312:495:3,-125,-39.5,0,0,-0.0890919 -48177,5312:394:4,-124.5,-39.5,0,0,-0.0856298 -48178,5312:394:3,-124,-39.5,0,0,-0.0814506 -48179,5312:393:4,-123.5,-39.5,0,0,-0.0774533 -48180,5312:393:3,-123,-39.5,0,0,-0.0750422 -48181,5312:392:4,-122.5,-39.5,0,0,-0.0753639 -48182,5312:392:3,-122,-39.5,0,0,-0.0766103 -48183,5312:391:4,-121.5,-39.5,0,0,-0.074616 -48184,5312:391:3,-121,-39.5,0,0,-0.0726765 -48185,5312:390:4,-120.5,-39.5,0,0,-0.0739986 -48186,5312:390:3,-120,-39.5,0,0,-0.0753639 -48187,5311:499:4,-119.5,-39.5,0,0,-0.0760657 -48188,5311:499:3,-119,-39.5,0,0,-0.0754711 -48189,5311:498:4,-118.5,-39.5,0,0,-0.0738931 -48190,5311:498:3,-118,-39.5,0,0,-0.072625 -48191,5311:497:4,-117.5,-39.5,0,0,-0.0718718 -48192,5311:497:3,-117,-39.5,0,0,-0.0713632 -48193,5311:496:4,-116.5,-39.5,0,0,-0.0712452 -48194,5311:496:3,-116,-39.5,0,0,-0.0721107 -48195,5311:495:4,-115.5,-39.5,0,0,-0.0734738 -48196,5311:495:3,-115,-39.5,0,0,-0.0722302 -48197,5311:394:4,-114.5,-39.5,0,0,-0.0679722 -48198,5311:394:3,-114,-39.5,0,0,-0.0651495 -48199,5311:393:4,-113.5,-39.5,0,0,-0.0642061 -48200,5311:393:3,-113,-39.5,0,0,-0.0635303 -48201,5311:392:4,-112.5,-39.5,0,0,-0.0616643 -48202,5311:392:3,-112,-39.5,0,0,-0.0583075 -48203,5311:391:4,-111.5,-39.5,0,0,-0.0561033 -48204,5311:391:3,-111,-39.5,0,0,-0.0568545 -48205,5311:390:4,-110.5,-39.5,0,0,-0.060618 -48206,5311:390:3,-110,-39.5,0,0,-0.0633666 -48207,5310:499:4,-109.5,-39.5,0,0,-0.0631439 -48208,5310:499:3,-109,-39.5,0,0,-0.0612894 -48209,5310:498:4,-108.5,-39.5,0,0,-0.0588557 -48210,5310:498:3,-108,-39.5,0,0,-0.055751 -48211,5310:497:4,-107.5,-39.5,0,0,-0.054823 -48212,5310:497:3,-107,-39.5,0,0,-0.0568678 -48213,5310:496:4,-106.5,-39.5,0,0,-0.0592288 -48214,5310:496:3,-106,-39.5,0,0,-0.0595763 -48215,5310:495:4,-105.5,-39.5,0,0,-0.0584988 -48216,5310:495:3,-105,-39.5,0,0,-0.056908 -48217,5310:394:4,-104.5,-39.5,0,0,-0.0559593 -48218,5310:394:3,-104,-39.5,0,0,-0.0559593 -48219,5310:393:4,-103.5,-39.5,0,0,-0.055634 -48220,5310:393:3,-103,-39.5,0,0,-0.0542765 -48221,5310:392:4,-102.5,-39.5,0,0,-0.0528058 -48222,5310:392:3,-102,-39.5,0,0,-0.0520015 -48223,5310:391:4,-101.5,-39.5,0,0,-0.0522804 -48224,5310:391:3,-101,-39.5,0,0,-0.0539488 -48225,5310:390:4,-100.5,-39.5,0,0,-0.0542765 -48226,5310:390:3,-100,-39.5,0,0,-0.0526464 -48227,5309:499:4,-99.5,-39.5,0,0,-0.0510441 -48228,5309:499:3,-99,-39.5,0,0,-0.0502914 -48229,5309:498:4,-98.5,-39.5,0,0,-0.0499426 -48230,5309:498:3,-98,-39.5,0,0,-0.0494698 -48231,5309:497:4,-97.5,-39.5,0,0,-0.0489113 -48232,5309:497:3,-97,-39.5,0,0,-0.0484151 -48233,5309:496:4,-96.5,-39.5,0,0,-0.0480687 -48234,5309:496:3,-96,-39.5,0,0,-0.0477137 -48235,5309:495:4,-95.5,-39.5,0,0,-0.0472743 -48236,5309:495:3,-95,-39.5,0,0,-0.0474274 -48237,5309:394:4,-94.5,-39.5,0,0,-0.0484151 -48238,5309:394:3,-94,-39.5,0,0,-0.0487414 -48239,5309:393:4,-93.5,-39.5,0,0,-0.0490131 -48240,5309:393:3,-93,-39.5,0,0,-0.0493897 -48241,5309:392:4,-92.5,-39.5,0,0,-0.0489337 -48242,5309:392:3,-92,-39.5,0,0,-0.0487528 -48243,5309:391:4,-91.5,-39.5,0,0,-0.0491725 -48244,5309:391:3,-91,-39.5,0,0,-0.0494813 -48245,5309:390:4,-90.5,-39.5,0,0,-0.0494012 -48246,5309:390:3,-90,-39.5,0,0,-0.0490589 -48247,5308:499:4,-89.5,-39.5,0,0,-0.0487076 -48248,5308:499:3,-89,-39.5,0,0,-0.0483812 -48249,5308:498:4,-88.5,-39.5,0,0,-0.0481132 -48250,5308:498:3,-88,-39.5,0,0,-0.0476255 -48251,5308:497:4,-87.5,-39.5,0,0,-0.0488656 -48252,5308:497:3,-87,-39.5,0,0,-0.0496423 -48253,5308:496:4,-86.5,-39.5,0,0,-0.0470887 -48254,5308:496:3,-86,-39.5,0,0,-0.0457577 -48255,5308:495:4,-85.5,-39.5,0,0,-0.0473836 -48256,5308:495:3,-85,-39.5,0,0,-0.0470994 -48257,5308:394:4,-84.5,-39.5,0,0,-0.0460867 -48258,5308:394:3,-84,-39.5,0,0,-0.0455996 -48259,5308:393:4,-83.5,-39.5,0,0,-0.0455575 -48260,5308:393:3,-83,-39.5,0,0,-0.0464503 -48261,5308:392:4,-82.5,-39.5,0,0,-0.0491269 -48262,5308:392:3,-82,-39.5,0,0,-0.0513293 -48263,5308:391:4,-81.5,-39.5,0,0,-0.0520259 -48264,5308:391:3,-81,-39.5,0,0,-0.0534859 -48265,5308:390:4,-80.5,-39.5,0,0,-0.0544663 -48266,5308:390:3,-80,-39.5,0,0,-0.0551688 -48267,5307:499:4,-79.5,-39.5,0,0,-0.0559988 -48268,5307:499:3,-79,-39.5,0,0,-0.0571209 -48269,5307:498:4,-78.5,-39.5,0,0,-0.0576573 -48270,5307:498:3,-78,-39.5,0,0,-0.0580493 -48271,5307:497:4,-77.5,-39.5,0,0,-0.055855 -48272,5307:497:3,-77,-39.5,0,0,-0.0559334 -48273,5307:496:4,-76.5,-39.5,0,0,-0.06395 -48274,5307:496:3,-76,-39.5,0,0,-0.0710433 -48275,5307:495:4,-75.5,-39.5,0,0,-0.0764825 -48276,5306:497:4,-67.5,-39.5,0,0,-0.0839633 -48277,5306:497:3,-67,-39.5,0,0,-0.075579 -48278,5306:496:4,-66.5,-39.5,0,0,-0.0726765 -48279,5306:496:3,-66,-39.5,0,0,-0.0681811 -48280,5306:495:4,-65.5,-39.5,0,0,-0.0647368 -48281,5306:495:3,-65,-39.5,0,0,-0.0627739 -48282,5306:394:4,-64.5,-39.5,0,0,-0.0607173 -48283,5306:394:3,-64,-39.5,0,0,-0.0584033 -48284,5306:393:4,-63.5,-39.5,0,0,-0.0579951 -48285,5306:393:3,-63,-39.5,0,0,-0.0597998 -48286,5306:392:4,-62.5,-39.5,0,0,-0.0610741 -48287,5306:392:3,-62,-39.5,0,0,-0.0595346 -48288,5306:391:4,-61.5,-39.5,0,0,-0.0638299 -48289,5306:391:3,-61,-39.5,0,0,-0.067748 -48290,5306:390:4,-60.5,-39.5,0,0,-0.0664197 -48291,5306:390:3,-60,-39.5,0,0,-0.0630842 -48292,5305:499:4,-59.5,-39.5,0,0,-0.0589246 -48293,5305:499:3,-59,-39.5,0,0,-0.0554009 -48294,5305:498:4,-58.5,-39.5,0,0,-0.0524387 -48295,5305:498:3,-58,-39.5,0,0,-0.0502562 -48296,5305:497:4,-57.5,-39.5,0,0,-0.048247 -48297,5305:497:3,-57,-39.5,0,0,-0.0451696 -48298,5305:496:4,-56.5,-39.5,0,0,-0.0423747 -48299,5305:496:3,-56,-39.5,0,0,-0.0405153 -48300,5305:495:4,-55.5,-39.5,0,0,-0.0376801 -48301,5305:495:3,-55,-39.5,0,0,-0.0347311 -48302,5305:394:4,-54.5,-39.5,0,0,-0.0314198 -48303,5305:394:3,-54,-39.5,0,0,-0.0297555 -48304,5305:393:4,-53.5,-39.5,0,0,-0.0316569 -48305,5305:393:3,-53,-39.5,0,0,-0.034636 -48306,5305:392:4,-52.5,-39.5,0,0,-0.04045 -48307,5305:392:3,-52,-39.5,0,0,-0.0485725 -48308,5305:391:4,-51.5,-39.5,0,0,-0.0559725 -48309,5305:391:3,-51,-39.5,0,0,-0.0580356 -48310,5305:390:4,-50.5,-39.5,0,0,-0.0559988 -48311,5305:390:3,-50,-39.5,0,0,-0.052451 -48312,5304:499:4,-49.5,-39.5,0,0,-0.0524997 -48313,5304:499:3,-49,-39.5,0,0,-0.0546571 -48314,5304:498:4,-48.5,-39.5,0,0,-0.0538106 -48315,5304:498:3,-48,-39.5,0,0,-0.0485049 -48316,5304:497:4,-47.5,-39.5,0,0,-0.0407677 -48317,5304:497:3,-47,-39.5,0,0,-0.0344307 -48318,5304:496:4,-46.5,-39.5,0,0,-0.0296542 -48319,5304:496:3,-46,-39.5,0,0,-0.0311702 -48320,5304:495:4,-45.5,-39.5,0,0,-0.032976 -48321,5304:495:3,-45,-39.5,0,0,-0.0339541 -48322,5304:394:4,-44.5,-39.5,0,0,-0.0337531 -48323,5304:394:3,-44,-39.5,0,0,-0.0351706 -48324,5304:393:4,-43.5,-39.5,0,0,-0.0377408 -48325,5304:393:3,-43,-39.5,0,0,-0.0362242 -48326,5304:392:4,-42.5,-39.5,0,0,-0.0282911 -48327,5304:392:3,-42,-39.5,0,0,-0.0273126 -48328,5304:391:4,-41.5,-39.5,0,0,-0.0275053 -48329,5304:391:3,-41,-39.5,0,0,-0.0284715 -48330,5304:390:4,-40.5,-39.5,0,0,-0.0297285 -48331,5304:390:3,-40,-39.5,0,0,-0.030705 -48332,5303:499:4,-39.5,-39.5,0,0,-0.030323 -48333,5303:499:3,-39,-39.5,0,0,-0.0306841 -48334,5303:498:4,-38.5,-39.5,0,0,-0.0302745 -48335,5303:498:3,-38,-39.5,0,0,-0.0294191 -48336,5303:497:4,-37.5,-39.5,0,0,-0.0288166 -48337,5303:497:3,-37,-39.5,0,0,-0.0275053 -48338,5303:496:4,-36.5,-39.5,0,0,-0.0262376 -48339,5303:496:3,-36,-39.5,0,0,-0.0257893 -48340,5303:495:4,-35.5,-39.5,0,0,-0.0265489 -48341,5303:495:3,-35,-39.5,0,0,-0.0272382 -48342,5303:394:4,-34.5,-39.5,0,0,-0.0285817 -48343,5303:394:3,-34,-39.5,0,0,-0.0297826 -48344,5303:393:4,-33.5,-39.5,0,0,-0.0305308 -48345,5303:393:3,-33,-39.5,0,0,-0.0300823 -48346,5303:392:4,-32.5,-39.5,0,0,-0.0281436 -48347,5303:392:3,-32,-39.5,0,0,-0.0252402 -48348,5303:391:4,-31.5,-39.5,0,0,-0.0234821 -48349,5303:391:3,-31,-39.5,0,0,-0.0238299 -48350,5303:390:4,-30.5,-39.5,0,0,-0.0252517 -48351,5303:390:3,-30,-39.5,0,0,-0.0263448 -48352,5302:499:4,-29.5,-39.5,0,0,-0.0269127 -48353,5302:499:3,-29,-39.5,0,0,-0.0270288 -48354,5302:498:4,-28.5,-39.5,0,0,-0.0272444 -48355,5302:498:3,-28,-39.5,0,0,-0.0273311 -48356,5302:497:4,-27.5,-39.5,0,0,-0.0257835 -48357,5302:497:3,-27,-39.5,0,0,-0.0255624 -48358,5302:496:4,-26.5,-39.5,0,0,-0.0251319 -48359,5302:496:3,-26,-39.5,0,0,-0.0251887 -48360,5302:495:4,-25.5,-39.5,0,0,-0.0260538 -48361,5302:495:3,-25,-39.5,0,0,-0.0266029 -48362,5302:394:4,-24.5,-39.5,0,0,-0.0261841 -48363,5302:394:3,-24,-39.5,0,0,-0.0248545 -48364,5302:393:4,-23.5,-39.5,0,0,-0.0242323 -48365,5302:393:3,-23,-39.5,0,0,-0.0251489 -48366,5302:392:4,-22.5,-39.5,0,0,-0.0266273 -48367,5302:392:3,-22,-39.5,0,0,-0.0280989 -48368,5302:391:4,-21.5,-39.5,0,0,-0.0288624 -48369,5302:391:3,-21,-39.5,0,0,-0.0282332 -48370,5302:390:4,-20.5,-39.5,0,0,-0.0271888 -48371,5302:390:3,-20,-39.5,0,0,-0.0273933 -48372,5301:499:4,-19.5,-39.5,0,0,-0.0269615 -48373,5301:499:3,-19,-39.5,0,0,-0.0261248 -48374,5301:498:4,-18.5,-39.5,0,0,-0.0257427 -48375,5301:498:3,-18,-39.5,0,0,-0.0255568 -48376,5301:497:4,-17.5,-39.5,0,0,-0.0267483 -48377,5301:497:3,-17,-39.5,0,0,-0.0309366 -48378,5301:496:4,-16.5,-39.5,0,0,-0.037106 -48379,5301:496:3,-16,-39.5,0,0,-0.0380447 -48380,5301:495:4,-15.5,-39.5,0,0,-0.0355021 -48381,5301:495:3,-15,-39.5,0,0,-0.0330816 -48382,5301:394:4,-14.5,-39.5,0,0,-0.0321956 -48383,5301:394:3,-14,-39.5,0,0,-0.0314268 -48384,5301:393:4,-13.5,-39.5,0,0,-0.0305238 -48385,5301:393:3,-13,-39.5,0,0,-0.0300481 -48386,5301:392:4,-12.5,-39.5,0,0,-0.0296069 -48387,5301:392:3,-12,-39.5,0,0,-0.0285233 -48388,5301:391:4,-11.5,-39.5,0,0,-0.025206 -48389,5301:391:3,-11,-39.5,0,0,-0.0228176 -48390,5301:390:4,-10.5,-39.5,0,0,-0.0218591 -48391,5301:390:3,-10,-39.5,0,0,-0.0215115 -48392,5300:499:4,-9.5,-39.5,0,0,-0.0209416 -48393,5300:499:3,-9,-39.5,0,0,-0.020077 -48394,5300:498:4,-8.5,-39.5,0,0,-0.01866 -48395,5300:498:3,-8,-39.5,0,0,-0.0174267 -48396,5300:497:4,-7.5,-39.5,0,0,-0.016887 -48397,5300:497:3,-7,-39.5,0,0,-0.0170317 -48398,5300:496:4,-6.5,-39.5,0,0,-0.0176872 -48399,5300:496:3,-6,-39.5,0,0,-0.0194142 -48400,5300:495:4,-5.5,-39.5,0,0,-0.0220127 -48401,5300:495:3,-5,-39.5,0,0,-0.0229521 -48402,5300:394:4,-4.5,-39.5,0,0,-0.022602 -48403,5300:394:3,-4,-39.5,0,0,-0.0218098 -48404,5300:393:4,-3.5,-39.5,0,0,-0.0218245 -48405,5300:393:3,-3,-39.5,0,0,-0.0230405 -48406,5300:392:4,-2.5,-39.5,0,0,-0.023334 -48407,5300:392:3,-2,-39.5,0,0,-0.022419 -48408,5300:391:4,-1.5,-39.5,0,0,-0.0223382 -48409,5300:391:3,-1,-39.5,0,0,-0.0242323 -48410,5300:390:4,-0.5,-39.5,0,0,-0.0276306 -48411,3300:390:4,0,-39.5,0,0,-0.0307121 -48412,3300:390:4,0.5,-39.5,0,0,-0.0314985 -48413,3300:391:3,1,-39.5,0,0,-0.0301097 -48414,3300:391:4,1.5,-39.5,0,0,-0.0286534 -48415,3300:392:3,2,-39.5,0,0,-0.0262614 -48416,3300:392:4,2.5,-39.5,0,0,-0.0253375 -48417,3300:393:3,3,-39.5,0,0,-0.0249277 -48418,3300:393:4,3.5,-39.5,0,0,-0.0246806 -48419,3300:394:3,4,-39.5,0,0,-0.0249446 -48420,3300:394:4,4.5,-39.5,0,0,-0.0254642 -48421,3300:495:3,5,-39.5,0,0,-0.0251832 -48422,3300:495:4,5.5,-39.5,0,0,-0.0238894 -48423,3300:496:3,6,-39.5,0,0,-0.0228176 -48424,3300:496:4,6.5,-39.5,0,0,-0.0221472 -48425,3300:497:3,7,-39.5,0,0,-0.0220077 -48426,3300:497:4,7.5,-39.5,0,0,-0.0188203 -48427,3300:498:3,8,-39.5,0,0,-0.0149058 -48428,3300:498:4,8.5,-39.5,0,0,-0.0156002 -48429,3300:499:3,9,-39.5,0,0,-0.0164047 -48430,3300:499:4,9.5,-39.5,0,0,-0.0169935 -48431,3301:390:3,10,-39.5,0,0,-0.0171238 -48432,3301:390:4,10.5,-39.5,0,0,-0.0176713 -48433,3301:391:3,11,-39.5,0,0,-0.018639 -48434,3301:391:4,11.5,-39.5,0,0,-0.0195943 -48435,3301:392:3,12,-39.5,0,0,-0.0202634 -48436,3301:392:4,12.5,-39.5,0,0,-0.0201088 -48437,3301:393:3,13,-39.5,0,0,-0.0200726 -48438,3301:393:4,13.5,-39.5,0,0,-0.0200815 -48439,3301:394:3,14,-39.5,0,0,-0.0190633 -48440,3301:394:4,14.5,-39.5,0,0,-0.018572 -48441,3301:495:3,15,-39.5,0,0,-0.0218739 -48442,3301:495:4,15.5,-39.5,0,0,-0.023392 -48443,3301:496:3,16,-39.5,0,0,-0.0241721 -48444,3301:496:4,16.5,-39.5,0,0,-0.0239163 -48445,3301:497:3,17,-39.5,0,0,-0.0228537 -48446,3301:497:4,17.5,-39.5,0,0,-0.0190504 -48447,3301:498:3,18,-39.5,0,0,-0.0167471 -48448,3301:498:4,18.5,-39.5,0,0,-0.0167471 -48449,3301:499:3,19,-39.5,0,0,-0.0172979 -48450,3301:499:4,19.5,-39.5,0,0,-0.0184138 -48451,3302:390:3,20,-39.5,0,0,-0.0189435 -48452,3302:390:4,20.5,-39.5,0,0,-0.0176276 -48453,3302:391:3,21,-39.5,0,0,-0.0176753 -48454,3302:391:4,21.5,-39.5,0,0,-0.019537 -48455,3302:392:3,22,-39.5,0,0,-0.0187736 -48456,3302:392:4,22.5,-39.5,0,0,-0.0158329 -48457,3302:393:3,23,-39.5,0,0,-0.0168831 -48458,3302:393:4,23.5,-39.5,0,0,-0.0178832 -48459,3302:394:3,24,-39.5,0,0,-0.0179193 -48460,3302:394:4,24.5,-39.5,0,0,-0.0180205 -48461,3302:495:3,25,-39.5,0,0,-0.0181384 -48462,3302:495:4,25.5,-39.5,0,0,-0.0182242 -48463,3302:496:3,26,-39.5,0,0,-0.0173641 -48464,3302:496:4,26.5,-39.5,0,0,-0.0154712 -48465,3302:497:3,27,-39.5,0,0,-0.0156773 -48466,3302:497:4,27.5,-39.5,0,0,-0.0177509 -48467,3302:498:3,28,-39.5,0,0,-0.0200363 -48468,3302:498:4,28.5,-39.5,0,0,-0.0213905 -48469,3302:499:3,29,-39.5,0,0,-0.0189862 -48470,3302:499:4,29.5,-39.5,0,0,-0.0159113 -48471,3303:390:3,30,-39.5,0,0,-0.0150839 -48472,3303:390:4,30.5,-39.5,0,0,-0.014125 -48473,3303:391:3,31,-39.5,0,0,-0.0141409 -48474,3303:391:4,31.5,-39.5,0,0,-0.0152472 -48475,3303:392:3,32,-39.5,0,0,-0.0174345 -48476,3303:392:4,32.5,-39.5,0,0,-0.0184056 -48477,3303:393:3,33,-39.5,0,0,-0.0167208 -48478,3303:393:4,33.5,-39.5,0,0,-0.0167283 -48479,3303:394:3,34,-39.5,0,0,-0.0181996 -48480,3303:394:4,34.5,-39.5,0,0,-0.0191838 -48481,3303:495:3,35,-39.5,0,0,-0.0193531 -48482,3303:495:4,35.5,-39.5,0,0,-0.0196872 -48483,3303:496:3,36,-39.5,0,0,-0.0200363 -48484,3303:496:4,36.5,-39.5,0,0,-0.0201632 -48485,3303:497:3,37,-39.5,0,0,-0.0197895 -48486,3303:497:4,37.5,-39.5,0,0,-0.0184637 -48487,3303:498:3,38,-39.5,0,0,-0.0160656 -48488,3303:498:4,38.5,-39.5,0,0,-0.0153158 -48489,3303:499:3,39,-39.5,0,0,-0.0154643 -48490,3303:499:4,39.5,-39.5,0,0,-0.0164563 -48491,3304:390:3,40,-39.5,0,0,-0.018171 -48492,3304:390:4,40.5,-39.5,0,0,-0.0207675 -48493,3304:391:3,41,-39.5,0,0,-0.0202132 -48494,3304:391:4,41.5,-39.5,0,0,-0.0195194 -48495,3304:392:3,42,-39.5,0,0,-0.0195107 -48496,3304:392:4,42.5,-39.5,0,0,-0.0195767 -48497,3304:393:3,43,-39.5,0,0,-0.0189562 -48498,3304:393:4,43.5,-39.5,0,0,-0.0174895 -48499,3304:394:3,44,-39.5,0,0,-0.0170969 -48500,3304:394:4,44.5,-39.5,0,0,-0.0174071 -48501,3304:495:3,45,-39.5,0,0,-0.017294 -48502,3304:495:4,45.5,-39.5,0,0,-0.0169325 -48503,3304:496:3,46,-39.5,0,0,-0.01646 -48504,3304:496:4,46.5,-39.5,0,0,-0.0163385 -48505,3304:497:3,47,-39.5,0,0,-0.0176316 -48506,3304:497:4,47.5,-39.5,0,0,-0.0193836 -48507,3304:498:3,48,-39.5,0,0,-0.0199372 -48508,3304:498:4,48.5,-39.5,0,0,-0.0199283 -48509,3304:499:3,49,-39.5,0,0,-0.0198566 -48510,3304:499:4,49.5,-39.5,0,0,-0.0192965 -48511,3305:390:3,50,-39.5,0,0,-0.0184511 -48512,3305:390:4,50.5,-39.5,0,0,-0.0180691 -48513,3305:391:3,51,-39.5,0,0,-0.0179073 -48514,3305:391:4,51.5,-39.5,0,0,-0.0179315 -48515,3305:392:3,52,-39.5,0,0,-0.0182079 -48516,3305:392:4,52.5,-39.5,0,0,-0.0182653 -48517,3305:393:3,53,-39.5,0,0,-0.0180529 -48518,3305:393:4,53.5,-39.5,0,0,-0.0178189 -48519,3305:394:3,54,-39.5,0,0,-0.017735 -48520,3305:394:4,54.5,-39.5,0,0,-0.0179356 -48521,3305:495:3,55,-39.5,0,0,-0.018171 -48522,3305:495:4,55.5,-39.5,0,0,-0.0177509 -48523,3305:496:3,56,-39.5,0,0,-0.0172204 -48524,3305:496:4,56.5,-39.5,0,0,-0.0168339 -48525,3305:497:3,57,-39.5,0,0,-0.0170854 -48526,3305:497:4,57.5,-39.5,0,0,-0.017743 -48527,3305:498:3,58,-39.5,0,0,-0.0182859 -48528,3305:498:4,58.5,-39.5,0,0,-0.0179113 -48529,3305:499:3,59,-39.5,0,0,-0.0170547 -48530,3305:499:4,59.5,-39.5,0,0,-0.0170126 -48531,3306:390:3,60,-39.5,0,0,-0.0172745 -48532,3306:390:4,60.5,-39.5,0,0,-0.0178229 -48533,3306:391:3,61,-39.5,0,0,-0.0184138 -48534,3306:391:4,61.5,-39.5,0,0,-0.018118 -48535,3306:392:3,62,-39.5,0,0,-0.0173018 -48536,3306:392:4,62.5,-39.5,0,0,-0.0163055 -48537,3306:393:3,63,-39.5,0,0,-0.015801 -48538,3306:393:4,63.5,-39.5,0,0,-0.0158294 -48539,3306:394:3,64,-39.5,0,0,-0.0160585 -48540,3306:394:4,64.5,-39.5,0,0,-0.0158507 -48541,3306:495:3,65,-39.5,0,0,-0.0152506 -48542,3306:495:4,65.5,-39.5,0,0,-0.0150671 -48543,3306:496:3,66,-39.5,0,0,-0.0158579 -48544,3306:496:4,66.5,-39.5,0,0,-0.0171585 -48545,3306:497:3,67,-39.5,0,0,-0.0167772 -48546,3306:497:4,67.5,-39.5,0,0,-0.0162543 -48547,3306:498:3,68,-39.5,0,0,-0.0162616 -48548,3306:498:4,68.5,-39.5,0,0,-0.0174149 -48549,3307:390:4,70.5,-39.5,0,0,-0.016601 -48550,3307:391:3,71,-39.5,0,0,-0.014497 -48551,3307:391:4,71.5,-39.5,0,0,-0.0141916 -48552,3307:392:3,72,-39.5,0,0,-0.0142522 -48553,3307:392:4,72.5,-39.5,0,0,-0.0154747 -48554,3307:393:4,73.5,-39.5,0,0,-0.0167886 -48555,3307:394:3,74,-39.5,0,0,-0.0165044 -48556,3307:394:4,74.5,-39.5,0,0,-0.0173212 -48557,3307:495:3,75,-39.5,0,0,-0.0176434 -48558,3307:495:4,75.5,-39.5,0,0,-0.0204515 -48559,3307:496:3,76,-39.5,0,0,-0.0239922 -48560,3307:496:4,76.5,-39.5,0,0,-0.0258832 -48561,3307:497:3,77,-39.5,0,0,-0.0276306 -48562,3307:497:4,77.5,-39.5,0,0,-0.0299662 -48563,3307:498:3,78,-39.5,0,0,-0.0311914 -48564,3307:498:4,78.5,-39.5,0,0,-0.0283103 -48565,3307:499:3,79,-39.5,0,0,-0.0269431 -48566,3307:499:4,79.5,-39.5,0,0,-0.0278764 -48567,3308:390:3,80,-39.5,0,0,-0.0278953 -48568,3308:390:4,80.5,-39.5,0,0,-0.0271826 -48569,3308:391:3,81,-39.5,0,0,-0.0251204 -48570,3308:391:4,81.5,-39.5,0,0,-0.0235726 -48571,3308:392:3,82,-39.5,0,0,-0.0253605 -48572,3308:392:4,82.5,-39.5,0,0,-0.0286402 -48573,3308:393:3,83,-39.5,0,0,-0.0333242 -48574,3308:393:4,83.5,-39.5,0,0,-0.0354857 -48575,3308:394:3,84,-39.5,0,0,-0.0341329 -48576,3308:394:4,84.5,-39.5,0,0,-0.0325945 -48577,3308:495:3,85,-39.5,0,0,-0.0324979 -48578,3308:495:4,85.5,-39.5,0,0,-0.0321222 -48579,3308:496:3,86,-39.5,0,0,-0.0303367 -48580,3308:496:4,86.5,-39.5,0,0,-0.0285363 -48581,3308:497:3,87,-39.5,0,0,-0.0310709 -48582,3308:497:4,87.5,-39.5,0,0,-0.0425311 -48583,3308:498:3,88,-39.5,0,0,-0.0436935 -48584,3308:498:4,88.5,-39.5,0,0,-0.0432924 -48585,3308:499:3,89,-39.5,0,0,-0.0433024 -48586,3308:499:4,89.5,-39.5,0,0,-0.0396769 -48587,3309:390:3,90,-39.5,0,0,-0.0367169 -48588,3309:390:4,90.5,-39.5,0,0,-0.0404316 -48589,3309:391:3,91,-39.5,0,0,-0.0443945 -48590,3309:391:4,91.5,-39.5,0,0,-0.045906 -48591,3309:392:3,92,-39.5,0,0,-0.0470668 -48592,3309:392:4,92.5,-39.5,0,0,-0.0471976 -48593,3309:393:3,93,-39.5,0,0,-0.0441595 -48594,3309:393:4,93.5,-39.5,0,0,-0.0401262 -48595,3309:394:3,94,-39.5,0,0,-0.0372423 -48596,3309:394:4,94.5,-39.5,0,0,-0.0364655 -48597,3309:495:3,95,-39.5,0,0,-0.0360752 -48598,3309:495:4,95.5,-39.5,0,0,-0.0345884 -48599,3309:496:3,96,-39.5,0,0,-0.0329987 -48600,3309:496:4,96.5,-39.5,0,0,-0.032841 -48601,3309:497:3,97,-39.5,0,0,-0.0330968 -48602,3309:497:4,97.5,-39.5,0,0,-0.0331041 -48603,3309:498:3,98,-39.5,0,0,-0.0324907 -48604,3309:498:4,98.5,-39.5,0,0,-0.0309366 -48605,3309:499:3,99,-39.5,0,0,-0.0296878 -48606,3309:499:4,99.5,-39.5,0,0,-0.0273683 -48607,3310:390:3,100,-39.5,0,0,-0.0242981 -48608,3310:390:4,100.5,-39.5,0,0,-0.0230613 -48609,3310:391:3,101,-39.5,0,0,-0.0237599 -48610,3310:391:4,101.5,-39.5,0,0,-0.024508 -48611,3310:392:3,102,-39.5,0,0,-0.0249843 -48612,3310:392:4,102.5,-39.5,0,0,-0.0252346 -48613,3310:393:3,103,-39.5,0,0,-0.0260892 -48614,3310:393:4,103.5,-39.5,0,0,-0.0278067 -48615,3310:394:3,104,-39.5,0,0,-0.0279778 -48616,3310:394:4,104.5,-39.5,0,0,-0.0272876 -48617,3310:495:3,105,-39.5,0,0,-0.0263329 -48618,3310:495:4,105.5,-39.5,0,0,-0.0261071 -48619,3310:496:3,106,-39.5,0,0,-0.0243532 -48620,3310:496:4,106.5,-39.5,0,0,-0.0222174 -48621,3310:497:3,107,-39.5,0,0,-0.024425 -48622,3310:497:4,107.5,-39.5,0,0,-0.0278384 -48623,3310:498:3,108,-39.5,0,0,-0.0298708 -48624,3310:498:4,108.5,-39.5,0,0,-0.0289545 -48625,3310:499:3,109,-39.5,0,0,-0.0254297 -48626,3310:499:4,109.5,-39.5,0,0,-0.0245469 -48627,3311:390:3,110,-39.5,0,0,-0.0258245 -48628,3311:390:4,110.5,-39.5,0,0,-0.0271641 -48629,3311:391:3,111,-39.5,0,0,-0.0271025 -48630,3311:391:4,111.5,-39.5,0,0,-0.0266453 -48631,3311:392:3,112,-39.5,0,0,-0.0330968 -48632,3311:392:4,112.5,-39.5,0,0,-0.0440679 -48633,3311:393:3,113,-39.5,0,0,-0.0484264 -48634,3311:393:4,113.5,-39.5,0,0,-0.0486512 -48635,3311:394:3,114,-39.5,0,0,-0.0457051 -48636,3311:394:4,114.5,-39.5,0,0,-0.0363571 -48637,3311:495:3,115,-39.5,0,0,-0.0306492 -48638,3311:495:4,115.5,-39.5,0,0,-0.0303506 -48639,3311:496:3,116,-39.5,0,0,-0.0311418 -48640,3311:496:4,116.5,-39.5,0,0,-0.032071 -48641,3311:497:3,117,-39.5,0,0,-0.0335149 -48642,3311:497:4,117.5,-39.5,0,0,-0.0387762 -48643,3311:498:3,118,-39.5,0,0,-0.0426388 -48644,3311:498:4,118.5,-39.5,0,0,-0.0427472 -48645,3311:499:3,119,-39.5,0,0,-0.0377408 -48646,3311:499:4,119.5,-39.5,0,0,-0.0347628 -48647,3312:390:3,120,-39.5,0,0,-0.0365241 -48648,3312:390:4,120.5,-39.5,0,0,-0.0467955 -48649,3312:391:3,121,-39.5,0,0,-0.0536857 -48650,3312:391:4,121.5,-39.5,0,0,-0.0532376 -48651,3312:392:3,122,-39.5,0,0,-0.049769 -48652,3312:392:4,122.5,-39.5,0,0,-0.0489677 -48653,3312:393:3,123,-39.5,0,0,-0.0489223 -48654,3312:393:4,123.5,-39.5,0,0,-0.0469798 -48655,3312:394:3,124,-39.5,0,0,-0.0430437 -48656,3312:394:4,124.5,-39.5,0,0,-0.0416779 -48657,3312:495:3,125,-39.5,0,0,-0.0409932 -48658,3312:495:4,125.5,-39.5,0,0,-0.0408052 -48659,3312:496:3,126,-39.5,0,0,-0.0416205 -48660,3312:496:4,126.5,-39.5,0,0,-0.0469039 -48661,3312:497:3,127,-39.5,0,0,-0.0518568 -48662,3312:497:4,127.5,-39.5,0,0,-0.0528917 -48663,3312:498:3,128,-39.5,0,0,-0.0543649 -48664,3312:498:4,128.5,-39.5,0,0,-0.0554916 -48665,3312:499:3,129,-39.5,0,0,-0.0559593 -48666,3312:499:4,129.5,-39.5,0,0,-0.0561817 -48667,3313:390:3,130,-39.5,0,0,-0.0572008 -48668,3313:390:4,130.5,-39.5,0,0,-0.057094 -48669,3313:391:3,131,-39.5,0,0,-0.0572546 -48670,3313:391:4,131.5,-39.5,0,0,-0.0574824 -48671,3313:392:3,132,-39.5,0,0,-0.0588834 -48672,3313:392:4,132.5,-39.5,0,0,-0.0609885 -48673,3313:393:3,133,-39.5,0,0,-0.0616498 -48674,3313:393:4,133.5,-39.5,0,0,-0.0597579 -48675,3313:394:3,134,-39.5,0,0,-0.0526954 -48676,3313:394:4,134.5,-39.5,0,0,-0.054823 -48677,3313:495:3,135,-39.5,0,0,-0.0565635 -48678,3313:495:4,135.5,-39.5,0,0,-0.0569209 -48679,3313:496:3,136,-39.5,0,0,-0.058063 -48680,3313:496:4,136.5,-39.5,0,0,-0.0613039 -48681,3313:497:3,137,-39.5,0,0,-0.0645999 -48682,3313:497:4,137.5,-39.5,0,0,-0.0659985 -48683,3313:498:3,138,-39.5,0,0,-0.0638148 -48684,3313:498:4,138.5,-39.5,0,0,-0.0580899 -48685,3313:499:3,139,-39.5,0,0,-0.0471539 -48686,3313:499:4,139.5,-39.5,0,0,-0.0458426 -48687,3314:390:3,140,-39.5,0,0,-0.055894 -48688,3314:390:4,140.5,-39.5,0,0,-0.0677002 -48689,3314:391:3,141,-39.5,0,0,-0.0661386 -48690,3314:391:4,141.5,-39.5,0,0,-0.0617222 -48691,3314:392:3,142,-39.5,0,0,-0.0570676 -48692,3314:392:4,142.5,-39.5,0,0,-0.0531387 -48693,3314:393:3,143,-39.5,0,0,-0.0499426 -48694,3314:393:4,143.5,-39.5,0,0,-0.0467737 -48695,3314:394:3,144,-39.5,0,0,-0.0463646 -48696,3314:394:4,144.5,-39.5,0,0,-0.0483925 -48697,3314:495:3,145,-39.5,0,0,-0.0508902 -48698,3314:495:4,145.5,-39.5,0,0,-0.054087 -48699,3314:496:3,146,-39.5,0,0,-0.0601229 -48700,3314:496:4,146.5,-39.5,0,0,-0.0657192 -48701,3314:497:3,147,-39.5,0,0,-0.0719061 -48702,3314:497:4,147.5,-39.5,0,0,-0.0732302 -48703,3314:498:3,148,-39.5,0,0,-0.0716509 -48704,3314:498:4,148.5,-39.5,0,0,-0.0700256 -48705,3314:499:3,149,-39.5,0,0,-0.0684227 -48706,3314:499:4,149.5,-39.5,0,0,-0.0651645 -48707,3315:390:3,150,-39.5,0,0,-0.0633071 -48708,3315:390:4,150.5,-39.5,0,0,-0.0620563 -48709,3315:391:3,151,-39.5,0,0,-0.0618093 -48710,3315:391:4,151.5,-39.5,0,0,-0.0681168 -48711,3315:392:3,152,-39.5,0,0,-0.0784744 -48712,3315:392:4,152.5,-39.5,0,0,-0.0894144 -48713,3315:393:3,153,-39.5,0,0,-0.0906284 -48714,3315:393:4,153.5,-39.5,0,0,-0.0790755 -48715,3315:394:3,154,-39.5,0,0,-0.0773982 -48716,3315:394:4,154.5,-39.5,0,0,-0.0755428 -48717,3315:495:3,155,-39.5,0,0,-0.0757947 -48718,3315:495:4,155.5,-39.5,0,0,-0.0781573 -48719,3315:496:3,156,-39.5,0,0,-0.081412 -48720,3315:496:4,156.5,-39.5,0,0,-0.083883 -48721,3315:497:3,157,-39.5,0,0,-0.0816653 -48722,3315:497:4,157.5,-39.5,0,0,-0.0769207 -48723,3315:498:3,158,-39.5,0,0,-0.0735435 -48724,3315:498:4,158.5,-39.5,0,0,-0.0712957 -48725,3315:499:3,159,-39.5,0,0,-0.0712622 -48726,3315:499:4,159.5,-39.5,0,0,-0.0708415 -48727,3316:390:3,160,-39.5,0,0,-0.0702244 -48728,3316:390:4,160.5,-39.5,0,0,-0.0683581 -48729,3316:391:3,161,-39.5,0,0,-0.0672863 -48730,3316:391:4,161.5,-39.5,0,0,-0.0734738 -48731,3316:392:3,162,-39.5,0,0,-0.0710433 -48732,3316:392:4,162.5,-39.5,0,0,-0.0672229 -48733,3316:393:3,163,-39.5,0,0,-0.0677802 -48734,3316:393:4,163.5,-39.5,0,0,-0.068909 -48735,3316:394:3,164,-39.5,0,0,-0.0716509 -48736,3316:394:4,164.5,-39.5,0,0,-0.0699428 -48737,3316:495:3,165,-39.5,0,0,-0.066279 -48738,3316:495:4,165.5,-39.5,0,0,-0.066435 -48739,3316:496:3,166,-39.5,0,0,-0.0699594 -48740,3316:496:4,166.5,-39.5,0,0,-0.0734212 -48741,3316:497:3,167,-39.5,0,0,-0.0689746 -48742,3316:497:4,167.5,-39.5,0,0,-0.058417 -48743,3316:498:3,168,-39.5,0,0,-0.0596738 -48744,3316:498:4,168.5,-39.5,0,0,-0.0607886 -48745,3316:499:3,169,-39.5,0,0,-0.060618 -48746,3316:499:4,169.5,-39.5,0,0,-0.0594369 -48747,3317:390:3,170,-39.5,0,0,-0.058022 -48748,3317:390:4,170.5,-39.5,0,0,-0.0577783 -48749,3317:391:3,171,-39.5,0,0,-0.0576166 -48750,3317:391:4,171.5,-39.5,0,0,-0.0572008 -48751,3317:392:3,172,-39.5,0,0,-0.056405 -48752,3317:392:4,172.5,-39.5,0,0,-0.0555822 -48753,3317:393:3,173,-39.5,0,0,-0.0546571 -48754,3317:393:4,173.5,-39.5,0,0,-0.0545042 -48755,3317:394:3,174,-39.5,0,0,-0.0544028 -48756,3317:394:4,174.5,-39.5,0,0,-0.0542765 -48757,3317:495:3,175,-39.5,0,0,-0.0539611 -48758,3317:495:4,175.5,-39.5,0,0,-0.0528182 -48759,3317:496:3,176,-39.5,0,0,-0.0517605 -48760,3317:496:4,176.5,-39.5,0,0,-0.0501048 -48761,3317:497:3,177,-39.5,0,0,-0.0497 -48762,3317:497:4,177.5,-39.5,0,0,-0.0505253 -48763,3317:498:3,178,-39.5,0,0,-0.0515323 -48764,3317:498:4,178.5,-39.5,0,0,-0.0518928 -48765,3317:499:3,179,-39.5,0,0,-0.0509375 -48766,3317:499:4,179.5,-39.5,0,0,-0.0496307 -48767,3318:390:3,180,-39.5,0,0,-0.0488432 -48768,5318:390:1,-180,-39,0,0,-0.0525486 -48769,5317:499:2,-179.5,-39,0,0,-0.0496191 -48770,5317:499:1,-179,-39,0,0,-0.0468064 -48771,5317:498:2,-178.5,-39,0,0,-0.0456311 -48772,5317:498:1,-178,-39,0,0,-0.0480018 -48773,5317:497:2,-177.5,-39,0,0,-0.0557899 -48774,5317:497:1,-177,-39,0,0,-0.0694812 -48775,5317:496:2,-176.5,-39,0,0,-0.0749531 -48776,5317:496:1,-176,-39,0,0,-0.0770857 -48777,5317:495:2,-175.5,-39,0,0,-0.0770124 -48778,5317:495:1,-175,-39,0,0,-0.0747399 -48779,5317:394:2,-174.5,-39,0,0,-0.0716509 -48780,5317:394:1,-174,-39,0,0,-0.0702574 -48781,5317:393:2,-173.5,-39,0,0,-0.0695143 -48782,5317:393:1,-173,-39,0,0,-0.0817434 -48783,5317:392:2,-172.5,-39,0,0,-0.0886215 -48784,5317:392:1,-172,-39,0,0,-0.0919713 -48785,5317:391:2,-171.5,-39,0,0,-0.090193 -48786,5317:391:1,-171,-39,0,0,-0.083883 -48787,5317:390:2,-170.5,-39,0,0,-0.0739986 -48788,5317:390:1,-170,-39,0,0,-0.0826074 -48789,5316:499:2,-169.5,-39,0,0,-0.082944 -48790,5316:499:1,-169,-39,0,0,-0.0892641 -48791,5316:498:2,-168.5,-39,0,0,-0.0956897 -48792,5316:498:1,-168,-39,0,0,-0.0962237 -48793,5316:497:2,-167.5,-39,0,0,-0.0937199 -48794,5316:497:1,-167,-39,0,0,-0.0948364 -48795,5316:496:2,-166.5,-39,0,0,-0.0940829 -48796,5316:496:1,-166,-39,0,0,-0.0892208 -48797,5316:495:2,-165.5,-39,0,0,-0.0856091 -48798,5316:495:1,-165,-39,0,0,-0.0824893 -48799,5316:394:2,-164.5,-39,0,0,-0.0790945 -48800,5316:394:1,-164,-39,0,0,-0.0880272 -48801,5316:393:2,-163.5,-39,0,0,-0.090345 -48802,5316:393:1,-163,-39,0,0,-0.0910226 -48803,5316:392:2,-162.5,-39,0,0,-0.0946762 -48804,5316:392:1,-162,-39,0,0,-0.102547 -48805,5316:391:2,-161.5,-39,0,0,-0.116142 -48806,5316:391:1,-161,-39,0,0,-0.118986 -48807,5316:390:2,-160.5,-39,0,0,-0.117004 -48808,5316:390:1,-160,-39,0,0,-0.113009 -48809,5315:499:2,-159.5,-39,0,0,-0.106917 -48810,5315:499:1,-159,-39,0,0,-0.102872 -48811,5315:498:2,-158.5,-39,0,0,-0.106058 -48812,5315:498:1,-158,-39,0,0,-0.111165 -48813,5315:497:2,-157.5,-39,0,0,-0.11043 -48814,5315:497:1,-157,-39,0,0,-0.109379 -48815,5315:496:2,-156.5,-39,0,0,-0.111465 -48816,5315:496:1,-156,-39,0,0,-0.117206 -48817,5315:495:2,-155.5,-39,0,0,-0.111877 -48818,5315:495:1,-155,-39,0,0,-0.105515 -48819,5315:394:2,-154.5,-39,0,0,-0.104515 -48820,5315:394:1,-154,-39,0,0,-0.104184 -48821,5315:393:2,-153.5,-39,0,0,-0.103905 -48822,5315:393:1,-153,-39,0,0,-0.105104 -48823,5315:392:2,-152.5,-39,0,0,-0.107837 -48824,5315:392:1,-152,-39,0,0,-0.110295 -48825,5315:391:2,-151.5,-39,0,0,-0.113679 -48826,5315:391:1,-151,-39,0,0,-0.116716 -48827,5315:390:2,-150.5,-39,0,0,-0.119339 -48828,5315:390:1,-150,-39,0,0,-0.117583 -48829,5314:499:2,-149.5,-39,0,0,-0.11424 -48830,5314:499:1,-149,-39,0,0,-0.112428 -48831,5314:498:2,-148.5,-39,0,0,-0.112428 -48832,5314:498:1,-148,-39,0,0,-0.114352 -48833,5314:497:2,-147.5,-39,0,0,-0.117236 -48834,5314:497:1,-147,-39,0,0,-0.119635 -48835,5314:496:2,-146.5,-39,0,0,-0.120408 -48836,5314:496:1,-146,-39,0,0,-0.118956 -48837,5314:495:2,-145.5,-39,0,0,-0.116716 -48838,5314:495:1,-145,-39,0,0,-0.115257 -48839,5314:394:2,-144.5,-39,0,0,-0.1152 -48840,5314:394:1,-144,-39,0,0,-0.115741 -48841,5314:393:2,-143.5,-39,0,0,-0.115998 -48842,5314:393:1,-143,-39,0,0,-0.116027 -48843,5314:392:2,-142.5,-39,0,0,-0.115827 -48844,5314:392:1,-142,-39,0,0,-0.115855 -48845,5314:391:2,-141.5,-39,0,0,-0.116342 -48846,5314:391:1,-141,-39,0,0,-0.11577 -48847,5314:390:2,-140.5,-39,0,0,-0.113819 -48848,5314:390:1,-140,-39,0,0,-0.11152 -48849,5313:499:2,-139.5,-39,0,0,-0.10989 -48850,5313:499:1,-139,-39,0,0,-0.109245 -48851,5313:498:2,-138.5,-39,0,0,-0.109299 -48852,5313:498:1,-138,-39,0,0,-0.109621 -48853,5313:497:2,-137.5,-39,0,0,-0.109353 -48854,5313:497:1,-137,-39,0,0,-0.106421 -48855,5313:496:2,-136.5,-39,0,0,-0.103223 -48856,5313:496:1,-136,-39,0,0,-0.102272 -48857,5313:495:2,-135.5,-39,0,0,-0.101627 -48858,5313:495:1,-135,-39,0,0,-0.100594 -48859,5313:394:2,-134.5,-39,0,0,-0.0992818 -48860,5313:394:1,-134,-39,0,0,-0.0973733 -48861,5313:393:2,-133.5,-39,0,0,-0.0970432 -48862,5313:393:1,-133,-39,0,0,-0.0992818 -48863,5313:392:2,-132.5,-39,0,0,-0.101133 -48864,5313:392:1,-132,-39,0,0,-0.100716 -48865,5313:391:2,-131.5,-39,0,0,-0.0995235 -48866,5313:391:1,-131,-39,0,0,-0.0990415 -48867,5313:390:2,-130.5,-39,0,0,-0.0990892 -48868,5313:390:1,-130,-39,0,0,-0.098993 -48869,5312:499:2,-129.5,-39,0,0,-0.098657 -48870,5312:499:1,-129,-39,0,0,-0.0983942 -48871,5312:498:2,-128.5,-39,0,0,-0.0984898 -48872,5312:498:1,-128,-39,0,0,-0.0987535 -48873,5312:497:2,-127.5,-39,0,0,-0.0989212 -48874,5312:497:1,-127,-39,0,0,-0.098897 -48875,5312:496:2,-126.5,-39,0,0,-0.0985138 -48876,5312:496:1,-126,-39,0,0,-0.0976569 -48877,5312:495:2,-125.5,-39,0,0,-0.0960141 -48878,5312:495:1,-125,-39,0,0,-0.0933131 -48879,5312:394:2,-124.5,-39,0,0,-0.0898457 -48880,5312:394:1,-124,-39,0,0,-0.0860622 -48881,5312:393:2,-123.5,-39,0,0,-0.0828054 -48882,5312:393:1,-123,-39,0,0,-0.0808307 -48883,5312:392:2,-122.5,-39,0,0,-0.0802346 -48884,5312:392:1,-122,-39,0,0,-0.0810431 -48885,5312:391:2,-121.5,-39,0,0,-0.0800053 -48886,5312:391:1,-121,-39,0,0,-0.0785869 -48887,5312:390:2,-120.5,-39,0,0,-0.0798906 -48888,5312:390:1,-120,-39,0,0,-0.0815873 -48889,5311:499:2,-119.5,-39,0,0,-0.0837623 -48890,5311:499:1,-119,-39,0,0,-0.0845689 -48891,5311:498:2,-118.5,-39,0,0,-0.0839633 -48892,5311:498:1,-118,-39,0,0,-0.0828254 -48893,5311:497:2,-117.5,-39,0,0,-0.0817237 -48894,5311:497:1,-117,-39,0,0,-0.0807148 -48895,5311:496:2,-116.5,-39,0,0,-0.0794915 -48896,5311:496:1,-116,-39,0,0,-0.0777674 -48897,5311:495:2,-115.5,-39,0,0,-0.0749351 -48898,5311:495:1,-115,-39,0,0,-0.0710936 -48899,5311:394:2,-114.5,-39,0,0,-0.0678119 -48900,5311:394:1,-114,-39,0,0,-0.0652568 -48901,5311:393:2,-113.5,-39,0,0,-0.063845 -48902,5311:393:1,-113,-39,0,0,-0.0628036 -48903,5311:392:2,-112.5,-39,0,0,-0.0612465 -48904,5311:392:1,-112,-39,0,0,-0.060377 -48905,5311:391:2,-111.5,-39,0,0,-0.0623628 -48906,5311:391:1,-111,-39,0,0,-0.0684715 -48907,5311:390:2,-110.5,-39,0,0,-0.071668 -48908,5311:390:1,-110,-39,0,0,-0.0698767 -48909,5310:499:2,-109.5,-39,0,0,-0.0679082 -48910,5310:499:1,-109,-39,0,0,-0.065673 -48911,5310:498:2,-108.5,-39,0,0,-0.0632771 -48912,5310:498:1,-108,-39,0,0,-0.060377 -48913,5310:497:2,-107.5,-39,0,0,-0.0583487 -48914,5310:497:1,-107,-39,0,0,-0.0593677 -48915,5310:496:2,-106.5,-39,0,0,-0.0609314 -48916,5310:496:1,-106,-39,0,0,-0.0615774 -48917,5310:495:2,-105.5,-39,0,0,-0.0619688 -48918,5310:495:1,-105,-39,0,0,-0.06139 -48919,5310:394:2,-104.5,-39,0,0,-0.0599401 -48920,5310:394:1,-104,-39,0,0,-0.0588284 -48921,5310:393:2,-103.5,-39,0,0,-0.0579409 -48922,5310:393:1,-103,-39,0,0,-0.0568148 -48923,5310:392:2,-102.5,-39,0,0,-0.0552977 -48924,5310:392:1,-102,-39,0,0,-0.0540367 -48925,5310:391:2,-101.5,-39,0,0,-0.0541374 -48926,5310:391:1,-101,-39,0,0,-0.055751 -48927,5310:390:2,-100.5,-39,0,0,-0.0562341 -48928,5310:390:1,-100,-39,0,0,-0.0546952 -48929,5309:499:2,-99.5,-39,0,0,-0.0527934 -48930,5309:499:1,-99,-39,0,0,-0.0517965 -48931,5309:498:2,-98.5,-39,0,0,-0.0515923 -48932,5309:498:1,-98,-39,0,0,-0.0516285 -48933,5309:497:2,-97.5,-39,0,0,-0.051389 -48934,5309:497:1,-97,-39,0,0,-0.0508311 -48935,5309:496:2,-96.5,-39,0,0,-0.050233 -48936,5309:496:1,-96,-39,0,0,-0.0498035 -48937,5309:495:2,-95.5,-39,0,0,-0.0497461 -48938,5309:495:1,-95,-39,0,0,-0.0504548 -48939,5309:394:2,-94.5,-39,0,0,-0.0512816 -48940,5309:394:1,-94,-39,0,0,-0.0508783 -48941,5309:393:2,-93.5,-39,0,0,-0.0505958 -48942,5309:393:1,-93,-39,0,0,-0.0507487 -48943,5309:392:2,-92.5,-39,0,0,-0.0508665 -48944,5309:392:1,-92,-39,0,0,-0.0509256 -48945,5309:391:2,-91.5,-39,0,0,-0.051258 -48946,5309:391:1,-91,-39,0,0,-0.0517965 -48947,5309:390:2,-90.5,-39,0,0,-0.0523413 -48948,5309:390:1,-90,-39,0,0,-0.0527077 -48949,5308:499:2,-89.5,-39,0,0,-0.0526098 -48950,5308:499:1,-89,-39,0,0,-0.0528058 -48951,5308:498:2,-88.5,-39,0,0,-0.0547209 -48952,5308:498:1,-88,-39,0,0,-0.0528549 -48953,5308:497:2,-87.5,-39,0,0,-0.0504902 -48954,5308:497:1,-87,-39,0,0,-0.0520259 -48955,5308:496:2,-86.5,-39,0,0,-0.0516165 -48956,5308:496:1,-86,-39,0,0,-0.0487076 -48957,5308:495:2,-85.5,-39,0,0,-0.0489905 -48958,5308:495:1,-85,-39,0,0,-0.0496536 -48959,5308:394:2,-84.5,-39,0,0,-0.0486625 -48960,5308:394:1,-84,-39,0,0,-0.0482917 -48961,5308:393:2,-83.5,-39,0,0,-0.0488656 -48962,5308:393:1,-83,-39,0,0,-0.0507487 -48963,5308:392:2,-82.5,-39,0,0,-0.0561817 -48964,5308:392:1,-82,-39,0,0,-0.0577515 -48965,5308:391:2,-81.5,-39,0,0,-0.0568678 -48966,5308:391:1,-81,-39,0,0,-0.0558682 -48967,5308:390:2,-80.5,-39,0,0,-0.0575091 -48968,5308:390:1,-80,-39,0,0,-0.0605326 -48969,5307:499:2,-79.5,-39,0,0,-0.0599118 -48970,5307:499:1,-79,-39,0,0,-0.0585673 -48971,5307:498:2,-78.5,-39,0,0,-0.0593118 -48972,5307:498:1,-78,-39,0,0,-0.0615342 -48973,5307:497:2,-77.5,-39,0,0,-0.0615342 -48974,5307:497:1,-77,-39,0,0,-0.0607886 -48975,5307:496:2,-76.5,-39,0,0,-0.0675566 -48976,5307:496:1,-76,-39,0,0,-0.073526 -48977,5306:497:1,-67,-39,0,0,-0.0909128 -48978,5306:496:2,-66.5,-39,0,0,-0.0842855 -48979,5306:496:1,-66,-39,0,0,-0.0761198 -48980,5306:495:2,-65.5,-39,0,0,-0.0734563 -48981,5306:495:1,-65,-39,0,0,-0.0702244 -48982,5306:394:2,-64.5,-39,0,0,-0.0666235 -48983,5306:394:1,-64,-39,0,0,-0.0644938 -48984,5306:393:2,-63.5,-39,0,0,-0.0641458 -48985,5306:393:1,-63,-39,0,0,-0.0644179 -48986,5306:392:2,-62.5,-39,0,0,-0.0659207 -48987,5306:392:1,-62,-39,0,0,-0.0647215 -48988,5306:391:2,-61.5,-39,0,0,-0.0682617 -48989,5306:391:1,-61,-39,0,0,-0.0718547 -48990,5306:390:2,-60.5,-39,0,0,-0.0686493 -48991,5306:390:1,-60,-39,0,0,-0.0643874 -48992,5305:499:2,-59.5,-39,0,0,-0.0601087 -48993,5305:499:1,-59,-39,0,0,-0.0548101 -48994,5305:498:2,-58.5,-39,0,0,-0.0491043 -48995,5305:498:1,-58,-39,0,0,-0.0468064 -48996,5305:497:2,-57.5,-39,0,0,-0.0453789 -48997,5305:497:1,-57,-39,0,0,-0.0435125 -48998,5305:496:2,-56.5,-39,0,0,-0.0406552 -48999,5305:496:1,-56,-39,0,0,-0.0370975 -49000,5305:495:2,-55.5,-39,0,0,-0.0333546 -49001,5305:495:1,-55,-39,0,0,-0.0314771 -49002,5305:394:2,-54.5,-39,0,0,-0.033059 -49003,5305:394:1,-54,-39,0,0,-0.0385987 -49004,5305:393:2,-53.5,-39,0,0,-0.0519171 -49005,5305:393:1,-53,-39,0,0,-0.0706076 -49006,5305:392:2,-52.5,-39,0,0,-0.0750776 -49007,5305:392:1,-52,-39,0,0,-0.0759571 -49008,5305:391:2,-51.5,-39,0,0,-0.0774905 -49009,5305:391:1,-51,-39,0,0,-0.082984 -49010,5305:390:2,-50.5,-39,0,0,-0.086601 -49011,5305:390:1,-50,-39,0,0,-0.0849955 -49012,5304:499:2,-49.5,-39,0,0,-0.0801768 -49013,5304:499:1,-49,-39,0,0,-0.0762647 -49014,5304:498:2,-48.5,-39,0,0,-0.0743149 -49015,5304:498:1,-48,-39,0,0,-0.072625 -49016,5304:497:2,-47.5,-39,0,0,-0.0703741 -49017,5304:497:1,-47,-39,0,0,-0.0651187 -49018,5304:496:2,-46.5,-39,0,0,-0.060618 -49019,5304:496:1,-46,-39,0,0,-0.0516402 -49020,5304:495:2,-45.5,-39,0,0,-0.0439158 -49021,5304:495:1,-45,-39,0,0,-0.0393774 -49022,5304:394:2,-44.5,-39,0,0,-0.0389905 -49023,5304:394:1,-44,-39,0,0,-0.0434623 -49024,5304:393:2,-43.5,-39,0,0,-0.048247 -49025,5304:393:1,-43,-39,0,0,-0.0483364 -49026,5304:392:2,-42.5,-39,0,0,-0.0424137 -49027,5304:392:1,-42,-39,0,0,-0.0324387 -49028,5304:391:2,-41.5,-39,0,0,-0.0288953 -49029,5304:391:1,-41,-39,0,0,-0.031556 -49030,5304:390:2,-40.5,-39,0,0,-0.0346597 -49031,5304:390:1,-40,-39,0,0,-0.0374133 -49032,5303:499:2,-39.5,-39,0,0,-0.0381759 -49033,5303:499:1,-39,-39,0,0,-0.0372167 -49034,5303:498:2,-38.5,-39,0,0,-0.0363988 -49035,5303:498:1,-38,-39,0,0,-0.0334002 -49036,5303:497:2,-37.5,-39,0,0,-0.0302264 -49037,5303:497:1,-37,-39,0,0,-0.0299935 -49038,5303:496:2,-36.5,-39,0,0,-0.0309579 -49039,5303:496:1,-36,-39,0,0,-0.0303436 -49040,5303:495:2,-35.5,-39,0,0,-0.0299866 -49041,5303:495:1,-35,-39,0,0,-0.0322689 -49042,5303:394:2,-34.5,-39,0,0,-0.037379 -49043,5303:394:1,-34,-39,0,0,-0.0376024 -49044,5303:393:2,-33.5,-39,0,0,-0.0372509 -49045,5303:393:1,-33,-39,0,0,-0.0374133 -49046,5303:392:2,-32.5,-39,0,0,-0.0372251 -49047,5303:392:1,-32,-39,0,0,-0.0363238 -49048,5303:391:2,-31.5,-39,0,0,-0.0345173 -49049,5303:391:1,-31,-39,0,0,-0.0323647 -49050,5303:390:2,-30.5,-39,0,0,-0.0312127 -49051,5303:390:1,-30,-39,0,0,-0.0311986 -49052,5302:499:2,-29.5,-39,0,0,-0.0310709 -49053,5302:499:1,-29,-39,0,0,-0.0299797 -49054,5302:498:2,-28.5,-39,0,0,-0.0287381 -49055,5302:498:1,-28,-39,0,0,-0.0282076 -49056,5302:497:2,-27.5,-39,0,0,-0.0260715 -49057,5302:497:1,-27,-39,0,0,-0.0260538 -49058,5302:496:2,-26.5,-39,0,0,-0.0289611 -49059,5302:496:1,-26,-39,0,0,-0.0329835 -49060,5302:495:2,-25.5,-39,0,0,-0.0341955 -49061,5302:495:1,-25,-39,0,0,-0.033347 -49062,5302:394:2,-24.5,-39,0,0,-0.0313695 -49063,5302:394:1,-24,-39,0,0,-0.0293856 -49064,5302:393:2,-23.5,-39,0,0,-0.0277879 -49065,5302:393:1,-23,-39,0,0,-0.0267787 -49066,5302:392:2,-22.5,-39,0,0,-0.0273126 -49067,5302:392:1,-22,-39,0,0,-0.0296676 -49068,5302:391:2,-21.5,-39,0,0,-0.0313624 -49069,5302:391:1,-21,-39,0,0,-0.0331496 -49070,5302:390:2,-20.5,-39,0,0,-0.0339541 -49071,5302:390:1,-20,-39,0,0,-0.0331346 -49072,5301:499:2,-19.5,-39,0,0,-0.0316785 -49073,5301:499:1,-19,-39,0,0,-0.0306911 -49074,5301:498:2,-18.5,-39,0,0,-0.03074 -49075,5301:498:1,-18,-39,0,0,-0.0324758 -49076,5301:497:2,-17.5,-39,0,0,-0.0368012 -49077,5301:497:1,-17,-39,0,0,-0.0392688 -49078,5301:496:2,-16.5,-39,0,0,-0.0403758 -49079,5301:496:1,-16,-39,0,0,-0.0374133 -49080,5301:495:2,-15.5,-39,0,0,-0.0321956 -49081,5301:495:1,-15,-39,0,0,-0.0303643 -49082,5301:394:2,-14.5,-39,0,0,-0.0304128 -49083,5301:394:1,-14,-39,0,0,-0.0304475 -49084,5301:393:2,-13.5,-39,0,0,-0.0303299 -49085,5301:393:1,-13,-39,0,0,-0.0301097 -49086,5301:392:2,-12.5,-39,0,0,-0.0299935 -49087,5301:392:1,-12,-39,0,0,-0.0293188 -49088,5301:391:2,-11.5,-39,0,0,-0.0271271 -49089,5301:391:1,-11,-39,0,0,-0.0256786 -49090,5301:390:2,-10.5,-39,0,0,-0.0245247 -49091,5301:390:1,-10,-39,0,0,-0.0229107 -49092,5300:499:2,-9.5,-39,0,0,-0.0215309 -49093,5300:499:1,-9,-39,0,0,-0.0205116 -49094,5300:498:2,-8.5,-39,0,0,-0.0198297 -49095,5300:498:1,-8,-39,0,0,-0.0209747 -49096,5300:497:2,-7.5,-39,0,0,-0.0239705 -49097,5300:497:1,-7,-39,0,0,-0.0258948 -49098,5300:496:2,-6.5,-39,0,0,-0.0313482 -49099,5300:496:1,-6,-39,0,0,-0.0395223 -49100,5300:495:2,-5.5,-39,0,0,-0.0407488 -49101,5300:495:1,-5,-39,0,0,-0.0411351 -49102,5300:394:2,-4.5,-39,0,0,-0.0405805 -49103,5300:394:1,-4,-39,0,0,-0.0377926 -49104,5300:393:2,-3.5,-39,0,0,-0.0329987 -49105,5300:393:1,-3,-39,0,0,-0.0299252 -49106,5300:392:2,-2.5,-39,0,0,-0.0303782 -49107,5300:392:1,-2,-39,0,0,-0.0315487 -49108,5300:391:2,-1.5,-39,0,0,-0.0322763 -49109,5300:391:1,-1,-39,0,0,-0.0330968 -49110,5300:390:2,-0.5,-39,0,0,-0.0343993 -49111,3300:390:2,0,-39,0,0,-0.033993 -49112,3300:390:2,0.5,-39,0,0,-0.0333851 -49113,3300:391:1,1,-39,0,0,-0.0298505 -49114,3300:391:2,1.5,-39,0,0,-0.0278131 -49115,3300:392:1,2,-39,0,0,-0.0262196 -49116,3300:392:2,2.5,-39,0,0,-0.0271765 -49117,3300:393:1,3,-39,0,0,-0.0304128 -49118,3300:393:2,3.5,-39,0,0,-0.0307961 -49119,3300:394:1,4,-39,0,0,-0.0281244 -49120,3300:394:2,4.5,-39,0,0,-0.0259183 -49121,3300:495:1,5,-39,0,0,-0.0235939 -49122,3300:495:2,5.5,-39,0,0,-0.0236634 -49123,3300:496:1,6,-39,0,0,-0.0233656 -49124,3300:496:2,6.5,-39,0,0,-0.0231605 -49125,3300:497:1,7,-39,0,0,-0.0229107 -49126,3300:497:2,7.5,-39,0,0,-0.0218886 -49127,3300:498:1,8,-39,0,0,-0.0163716 -49128,3300:498:2,8.5,-39,0,0,-0.0154193 -49129,3300:499:1,9,-39,0,0,-0.0156107 -49130,3300:499:2,9.5,-39,0,0,-0.0159471 -49131,3301:390:1,10,-39,0,0,-0.016167 -49132,3301:390:2,10.5,-39,0,0,-0.0166871 -49133,3301:391:1,11,-39,0,0,-0.0198342 -49134,3301:391:2,11.5,-39,0,0,-0.0232813 -49135,3301:392:1,12,-39,0,0,-0.0245357 -49136,3301:392:2,12.5,-39,0,0,-0.0237708 -49137,3301:393:1,13,-39,0,0,-0.022323 -49138,3301:393:2,13.5,-39,0,0,-0.0219728 -49139,3301:394:1,14,-39,0,0,-0.0215845 -49140,3301:394:2,14.5,-39,0,0,-0.0216626 -49141,3301:495:1,15,-39,0,0,-0.0217605 -49142,3301:495:2,15.5,-39,0,0,-0.0227609 -49143,3301:496:1,16,-39,0,0,-0.0232813 -49144,3301:496:2,16.5,-39,0,0,-0.0228331 -49145,3301:497:1,17,-39,0,0,-0.0209842 -49146,3301:497:2,17.5,-39,0,0,-0.0183064 -49147,3301:498:1,18,-39,0,0,-0.0184221 -49148,3301:498:2,18.5,-39,0,0,-0.0203366 -49149,3301:499:1,19,-39,0,0,-0.0216479 -49150,3301:499:2,19.5,-39,0,0,-0.0217116 -49151,3302:390:1,20,-39,0,0,-0.020154 -49152,3302:390:2,20.5,-39,0,0,-0.0184429 -49153,3302:391:1,21,-39,0,0,-0.0185928 -49154,3302:391:2,21.5,-39,0,0,-0.0205671 -49155,3302:392:1,22,-39,0,0,-0.0214291 -49156,3302:392:2,22.5,-39,0,0,-0.0172396 -49157,3302:393:1,23,-39,0,0,-0.0168528 -49158,3302:393:2,23.5,-39,0,0,-0.0188456 -49159,3302:394:1,24,-39,0,0,-0.0190118 -49160,3302:394:2,24.5,-39,0,0,-0.0194756 -49161,3302:495:1,25,-39,0,0,-0.0192791 -49162,3302:495:2,25.5,-39,0,0,-0.0182161 -49163,3302:496:1,26,-39,0,0,-0.0177949 -49164,3302:496:2,26.5,-39,0,0,-0.0182365 -49165,3302:497:1,27,-39,0,0,-0.0203687 -49166,3302:497:2,27.5,-39,0,0,-0.0215845 -49167,3302:498:1,28,-39,0,0,-0.0231395 -49168,3302:498:2,28.5,-39,0,0,-0.0243753 -49169,3302:499:1,29,-39,0,0,-0.0239922 -49170,3302:499:2,29.5,-39,0,0,-0.0212318 -49171,3303:390:1,30,-39,0,0,-0.0170279 -49172,3303:390:2,30.5,-39,0,0,-0.0153812 -49173,3303:391:1,31,-39,0,0,-0.0152883 -49174,3303:391:2,31.5,-39,0,0,-0.0166309 -49175,3303:392:1,32,-39,0,0,-0.0194098 -49176,3303:392:2,32.5,-39,0,0,-0.0212462 -49177,3303:393:1,33,-39,0,0,-0.01987 -49178,3303:393:2,33.5,-39,0,0,-0.017521 -49179,3303:394:1,34,-39,0,0,-0.0192791 -49180,3303:394:2,34.5,-39,0,0,-0.0196695 -49181,3303:495:1,35,-39,0,0,-0.0195503 -49182,3303:495:2,35.5,-39,0,0,-0.0195724 -49183,3303:496:1,36,-39,0,0,-0.0199597 -49184,3303:496:2,36.5,-39,0,0,-0.0206044 -49185,3303:497:1,37,-39,0,0,-0.0214049 -49186,3303:497:2,37.5,-39,0,0,-0.0215503 -49187,3303:498:1,38,-39,0,0,-0.0207348 -49188,3303:498:2,38.5,-39,0,0,-0.018572 -49189,3303:499:1,39,-39,0,0,-0.0176832 -49190,3303:499:2,39.5,-39,0,0,-0.0174934 -49191,3304:390:1,40,-39,0,0,-0.019089 -49192,3304:390:2,40.5,-39,0,0,-0.0217116 -49193,3304:391:1,41,-39,0,0,-0.0215213 -49194,3304:391:2,41.5,-39,0,0,-0.0217409 -49195,3304:392:1,42,-39,0,0,-0.0221123 -49196,3304:392:2,42.5,-39,0,0,-0.0226276 -49197,3304:393:1,43,-39,0,0,-0.0221773 -49198,3304:393:2,43.5,-39,0,0,-0.0193487 -49199,3304:394:1,44,-39,0,0,-0.0176474 -49200,3304:394:2,44.5,-39,0,0,-0.0179759 -49201,3304:495:1,45,-39,0,0,-0.0181669 -49202,3304:495:2,45.5,-39,0,0,-0.0182571 -49203,3304:496:1,46,-39,0,0,-0.0182899 -49204,3304:496:2,46.5,-39,0,0,-0.0183765 -49205,3304:497:1,47,-39,0,0,-0.0189307 -49206,3304:497:2,47.5,-39,0,0,-0.0195635 -49207,3304:498:1,48,-39,0,0,-0.0200363 -49208,3304:498:2,48.5,-39,0,0,-0.019861 -49209,3304:499:1,49,-39,0,0,-0.0196784 -49210,3304:499:2,49.5,-39,0,0,-0.0193226 -49211,3305:390:1,50,-39,0,0,-0.018935 -49212,3305:390:2,50.5,-39,0,0,-0.0189307 -49213,3305:391:1,51,-39,0,0,-0.0192445 -49214,3305:391:2,51.5,-39,0,0,-0.0198074 -49215,3305:392:1,52,-39,0,0,-0.0203872 -49216,3305:392:2,52.5,-39,0,0,-0.0210791 -49217,3305:393:1,53,-39,0,0,-0.0218986 -49218,3305:393:2,53.5,-39,0,0,-0.0226276 -49219,3305:394:1,54,-39,0,0,-0.0231344 -49220,3305:394:2,54.5,-39,0,0,-0.0231501 -49221,3305:495:1,55,-39,0,0,-0.0221072 -49222,3305:495:2,55.5,-39,0,0,-0.020195 -49223,3305:496:1,56,-39,0,0,-0.0184719 -49224,3305:496:2,56.5,-39,0,0,-0.0177949 -49225,3305:497:1,57,-39,0,0,-0.0179961 -49226,3305:497:2,57.5,-39,0,0,-0.0190462 -49227,3305:498:1,58,-39,0,0,-0.0197717 -49228,3305:498:2,58.5,-39,0,0,-0.0197406 -49229,3305:499:1,59,-39,0,0,-0.0189562 -49230,3305:499:2,59.5,-39,0,0,-0.0194054 -49231,3306:390:1,60,-39,0,0,-0.0207069 -49232,3306:390:2,60.5,-39,0,0,-0.0209794 -49233,3306:391:1,61,-39,0,0,-0.0198029 -49234,3306:391:2,61.5,-39,0,0,-0.0181384 -49235,3306:392:1,62,-39,0,0,-0.0169935 -49236,3306:392:2,62.5,-39,0,0,-0.016549 -49237,3306:393:1,63,-39,0,0,-0.0167058 -49238,3306:393:2,63.5,-39,0,0,-0.0168112 -49239,3306:394:1,64,-39,0,0,-0.0165899 -49240,3306:394:2,64.5,-39,0,0,-0.0164379 -49241,3306:495:1,65,-39,0,0,-0.01646 -49242,3306:495:2,65.5,-39,0,0,-0.0174659 -49243,3306:496:1,66,-39,0,0,-0.0193924 -49244,3306:496:2,66.5,-39,0,0,-0.0190719 -49245,3306:497:1,67,-39,0,0,-0.0178069 -49246,3306:497:2,67.5,-39,0,0,-0.0174973 -49247,3306:498:1,68,-39,0,0,-0.0172629 -49248,3306:498:2,68.5,-39,0,0,-0.0174306 -49249,3306:499:1,69,-39,0,0,-0.0184553 -49250,3306:499:2,69.5,-39,0,0,-0.0193487 -49251,3307:390:1,70,-39,0,0,-0.0199237 -49252,3307:390:2,70.5,-39,0,0,-0.0172241 -49253,3307:391:1,71,-39,0,0,-0.0146605 -49254,3307:391:2,71.5,-39,0,0,-0.0149392 -49255,3307:392:1,72,-39,0,0,-0.0165008 -49256,3307:392:2,72.5,-39,0,0,-0.0175683 -49257,3307:393:2,73.5,-39,0,0,-0.0175091 -49258,3307:394:1,74,-39,0,0,-0.0173954 -49259,3307:394:2,74.5,-39,0,0,-0.0174032 -49260,3307:495:1,75,-39,0,0,-0.0174895 -49261,3307:495:2,75.5,-39,0,0,-0.0205533 -49262,3307:496:1,76,-39,0,0,-0.0241337 -49263,3307:496:2,76.5,-39,0,0,-0.0259242 -49264,3307:497:1,77,-39,0,0,-0.0272012 -49265,3307:497:2,77.5,-39,0,0,-0.0278067 -49266,3307:498:1,78,-39,0,0,-0.0285298 -49267,3307:498:2,78.5,-39,0,0,-0.0300276 -49268,3307:499:1,79,-39,0,0,-0.0317219 -49269,3307:499:2,79.5,-39,0,0,-0.0317074 -49270,3308:390:1,80,-39,0,0,-0.0298437 -49271,3308:390:2,80.5,-39,0,0,-0.0286402 -49272,3308:391:1,81,-39,0,0,-0.0278195 -49273,3308:391:2,81.5,-39,0,0,-0.0276557 -49274,3308:392:1,82,-39,0,0,-0.0291063 -49275,3308:392:2,82.5,-39,0,0,-0.0347548 -49276,3308:393:1,83,-39,0,0,-0.0363073 -49277,3308:393:2,83.5,-39,0,0,-0.0352994 -49278,3308:394:1,84,-39,0,0,-0.0348026 -49279,3308:394:2,84.5,-39,0,0,-0.0389368 -49280,3308:495:1,85,-39,0,0,-0.0419475 -49281,3308:495:2,85.5,-39,0,0,-0.0429445 -49282,3308:496:1,86,-39,0,0,-0.0467955 -49283,3308:496:2,86.5,-39,0,0,-0.0512936 -49284,3308:497:1,87,-39,0,0,-0.048877 -49285,3308:497:2,87.5,-39,0,0,-0.0467305 -49286,3308:498:1,88,-39,0,0,-0.0439563 -49287,3308:498:2,88.5,-39,0,0,-0.0421605 -49288,3308:499:1,89,-39,0,0,-0.0418992 -49289,3308:499:2,89.5,-39,0,0,-0.0427273 -49290,3309:390:1,90,-39,0,0,-0.0455996 -49291,3309:390:2,90.5,-39,0,0,-0.0475596 -49292,3309:391:1,91,-39,0,0,-0.0480799 -49293,3309:391:2,91.5,-39,0,0,-0.0492295 -49294,3309:392:1,92,-39,0,0,-0.0499773 -49295,3309:392:2,92.5,-39,0,0,-0.0486849 -49296,3309:393:1,93,-39,0,0,-0.0402553 -49297,3309:393:2,93.5,-39,0,0,-0.0370125 -49298,3309:394:1,94,-39,0,0,-0.036349 -49299,3309:394:2,94.5,-39,0,0,-0.0358694 -49300,3309:495:1,95,-39,0,0,-0.035259 -49301,3309:495:2,95.5,-39,0,0,-0.0341564 -49302,3309:496:1,96,-39,0,0,-0.0334538 -49303,3309:496:2,96.5,-39,0,0,-0.0330364 -49304,3309:497:1,97,-39,0,0,-0.0331649 -49305,3309:497:2,97.5,-39,0,0,-0.0331722 -49306,3309:498:1,98,-39,0,0,-0.0325722 -49307,3309:498:2,98.5,-39,0,0,-0.030496 -49308,3309:499:1,99,-39,0,0,-0.0286208 -49309,3309:499:2,99.5,-39,0,0,-0.0267603 -49310,3310:390:1,100,-39,0,0,-0.0252231 -49311,3310:390:2,100.5,-39,0,0,-0.0248207 -49312,3310:391:1,101,-39,0,0,-0.025522 -49313,3310:391:2,101.5,-39,0,0,-0.0264646 -49314,3310:392:1,102,-39,0,0,-0.0263568 -49315,3310:392:2,102.5,-39,0,0,-0.0263928 -49316,3310:393:1,103,-39,0,0,-0.0278511 -49317,3310:393:2,103.5,-39,0,0,-0.0289478 -49318,3310:394:1,104,-39,0,0,-0.0290468 -49319,3310:394:2,104.5,-39,0,0,-0.0287055 -49320,3310:495:1,105,-39,0,0,-0.0262614 -49321,3310:495:2,105.5,-39,0,0,-0.0257368 -49322,3310:496:1,106,-39,0,0,-0.0247029 -49323,3310:496:2,106.5,-39,0,0,-0.0284263 -49324,3310:497:1,107,-39,0,0,-0.0318814 -49325,3310:497:2,107.5,-39,0,0,-0.0327736 -49326,3310:498:1,108,-39,0,0,-0.0324979 -49327,3310:498:2,108.5,-39,0,0,-0.031384 -49328,3310:499:1,109,-39,0,0,-0.0285298 -49329,3310:499:2,109.5,-39,0,0,-0.0266876 -49330,3311:390:1,110,-39,0,0,-0.0287316 -49331,3311:390:2,110.5,-39,0,0,-0.0322101 -49332,3311:391:1,111,-39,0,0,-0.0326765 -49333,3311:391:2,111.5,-39,0,0,-0.035968 -49334,3311:392:1,112,-39,0,0,-0.0432625 -49335,3311:392:2,112.5,-39,0,0,-0.0470994 -49336,3311:393:1,113,-39,0,0,-0.0501165 -49337,3311:393:2,113.5,-39,0,0,-0.0514487 -49338,3311:394:1,114,-39,0,0,-0.0517844 -49339,3311:394:2,114.5,-39,0,0,-0.0493324 -49340,3311:495:1,115,-39,0,0,-0.0385544 -49341,3311:495:2,115.5,-39,0,0,-0.035348 -49342,3311:496:1,116,-39,0,0,-0.0357466 -49343,3311:496:2,116.5,-39,0,0,-0.0399238 -49344,3311:497:1,117,-39,0,0,-0.0505722 -49345,3311:497:2,117.5,-39,0,0,-0.0550277 -49346,3311:498:1,118,-39,0,0,-0.0549764 -49347,3311:498:2,118.5,-39,0,0,-0.0533864 -49348,3311:499:1,119,-39,0,0,-0.0460124 -49349,3311:499:2,119.5,-39,0,0,-0.0368264 -49350,3312:390:1,120,-39,0,0,-0.0362822 -49351,3312:390:2,120.5,-39,0,0,-0.0422284 -49352,3312:391:1,121,-39,0,0,-0.0535482 -49353,3312:391:2,121.5,-39,0,0,-0.0534486 -49354,3312:392:1,122,-39,0,0,-0.0516165 -49355,3312:392:2,122.5,-39,0,0,-0.0544663 -49356,3312:393:1,123,-39,0,0,-0.0550406 -49357,3312:393:2,123.5,-39,0,0,-0.0559203 -49358,3312:394:1,124,-39,0,0,-0.0545806 -49359,3312:394:2,124.5,-39,0,0,-0.0470123 -49360,3312:495:1,125,-39,0,0,-0.0428456 -49361,3312:495:2,125.5,-39,0,0,-0.0442921 -49362,3312:496:1,126,-39,0,0,-0.0481244 -49363,3312:496:2,126.5,-39,0,0,-0.0521348 -49364,3312:497:1,127,-39,0,0,-0.0528549 -49365,3312:497:2,127.5,-39,0,0,-0.0562999 -49366,3312:498:1,128,-39,0,0,-0.0626561 -49367,3312:498:2,128.5,-39,0,0,-0.065673 -49368,3312:499:1,129,-39,0,0,-0.0641007 -49369,3312:499:2,129.5,-39,0,0,-0.0591181 -49370,3313:390:1,130,-39,0,0,-0.0562081 -49371,3313:390:2,130.5,-39,0,0,-0.0572546 -49372,3313:391:1,131,-39,0,0,-0.0578191 -49373,3313:391:2,131.5,-39,0,0,-0.0582805 -49374,3313:392:1,132,-39,0,0,-0.0620999 -49375,3313:392:2,132.5,-39,0,0,-0.0666077 -49376,3313:393:1,133,-39,0,0,-0.0674608 -49377,3313:393:2,133.5,-39,0,0,-0.064767 -49378,3313:394:1,134,-39,0,0,-0.0611029 -49379,3313:394:2,134.5,-39,0,0,-0.0575091 -49380,3313:495:1,135,-39,0,0,-0.0578868 -49381,3313:495:2,135.5,-39,0,0,-0.0595486 -49382,3313:496:1,136,-39,0,0,-0.0625974 -49383,3313:496:2,136.5,-39,0,0,-0.0670485 -49384,3313:497:1,137,-39,0,0,-0.0706407 -49385,3313:497:2,137.5,-39,0,0,-0.0726077 -49386,3313:498:1,138,-39,0,0,-0.0716002 -49387,3313:498:2,138.5,-39,0,0,-0.0673178 -49388,3313:499:1,139,-39,0,0,-0.0588557 -49389,3313:499:2,139.5,-39,0,0,-0.0534612 -49390,3314:390:1,140,-39,0,0,-0.0577919 -49391,3314:390:2,140.5,-39,0,0,-0.06589 -49392,3314:391:1,141,-39,0,0,-0.0695634 -49393,3314:391:2,141.5,-39,0,0,-0.0692027 -49394,3314:392:1,142,-39,0,0,-0.0677163 -49395,3314:392:2,142.5,-39,0,0,-0.0656418 -49396,3314:393:1,143,-39,0,0,-0.0640101 -49397,3314:393:2,143.5,-39,0,0,-0.0638748 -49398,3314:394:1,144,-39,0,0,-0.0650728 -49399,3314:394:2,144.5,-39,0,0,-0.06631 -49400,3314:495:1,145,-39,0,0,-0.0668121 -49401,3314:495:2,145.5,-39,0,0,-0.0672229 -49402,3314:496:1,146,-39,0,0,-0.0692027 -49403,3314:496:2,146.5,-39,0,0,-0.0752209 -49404,3314:497:1,147,-39,0,0,-0.0766465 -49405,3314:497:2,147.5,-39,0,0,-0.0740688 -49406,3314:498:1,148,-39,0,0,-0.0719742 -49407,3314:498:2,148.5,-39,0,0,-0.0703741 -49408,3314:499:1,149,-39,0,0,-0.0683581 -49409,3314:499:2,149.5,-39,0,0,-0.0649505 -49410,3315:390:1,150,-39,0,0,-0.0645545 -49411,3315:390:2,150.5,-39,0,0,-0.0740158 -49412,3315:391:1,151,-39,0,0,-0.0783439 -49413,3315:391:2,151.5,-39,0,0,-0.0883027 -49414,3315:392:1,152,-39,0,0,-0.106578 -49415,3315:392:2,152.5,-39,0,0,-0.0956664 -49416,3315:393:1,153,-39,0,0,-0.0784185 -49417,3315:393:2,153.5,-39,0,0,-0.0780086 -49418,3315:394:1,154,-39,0,0,-0.0789438 -49419,3315:394:2,154.5,-39,0,0,-0.0796809 -49420,3315:495:1,155,-39,0,0,-0.0801196 -49421,3315:495:2,155.5,-39,0,0,-0.0800816 -49422,3315:496:1,156,-39,0,0,-0.0792644 -49423,3315:496:2,156.5,-39,0,0,-0.0774167 -49424,3315:497:1,157,-39,0,0,-0.0754355 -49425,3315:497:2,157.5,-39,0,0,-0.0738231 -49426,3315:498:1,158,-39,0,0,-0.0723844 -49427,3315:498:2,158.5,-39,0,0,-0.0719061 -49428,3315:499:1,159,-39,0,0,-0.0720424 -49429,3315:499:2,159.5,-39,0,0,-0.0717359 -49430,3316:390:1,160,-39,0,0,-0.0709254 -49431,3316:390:2,160.5,-39,0,0,-0.0694812 -49432,3316:391:1,161,-39,0,0,-0.0681973 -49433,3316:391:2,161.5,-39,0,0,-0.0752743 -49434,3316:392:1,162,-39,0,0,-0.0749531 -49435,3316:392:2,162.5,-39,0,0,-0.0704406 -49436,3316:393:1,163,-39,0,0,-0.0688281 -49437,3316:393:2,163.5,-39,0,0,-0.0698268 -49438,3316:394:1,164,-39,0,0,-0.0738931 -49439,3316:394:2,164.5,-39,0,0,-0.07428 -49440,3316:495:1,165,-39,0,0,-0.0706407 -49441,3316:495:2,165.5,-39,0,0,-0.0680844 -49442,3316:496:1,166,-39,0,0,-0.0682936 -49443,3316:496:2,166.5,-39,0,0,-0.0792264 -49444,3316:497:1,167,-39,0,0,-0.0801581 -49445,3316:497:2,167.5,-39,0,0,-0.0754175 -49446,3316:498:1,168,-39,0,0,-0.0675405 -49447,3316:498:2,168.5,-39,0,0,-0.0636799 -49448,3316:499:1,169,-39,0,0,-0.0627447 -49449,3316:499:2,169.5,-39,0,0,-0.0610885 -49450,3317:390:1,170,-39,0,0,-0.0596044 -49451,3317:390:2,170.5,-39,0,0,-0.0592702 -49452,3317:391:1,171,-39,0,0,-0.0585673 -49453,3317:391:2,171.5,-39,0,0,-0.0577919 -49454,3317:392:1,172,-39,0,0,-0.0571209 -49455,3317:392:2,172.5,-39,0,0,-0.0565764 -49456,3317:393:1,173,-39,0,0,-0.0563524 -49457,3317:393:2,173.5,-39,0,0,-0.0562999 -49458,3317:394:1,174,-39,0,0,-0.0558682 -49459,3317:394:2,174.5,-39,0,0,-0.0552847 -49460,3317:495:1,175,-39,0,0,-0.0543904 -49461,3317:495:2,175.5,-39,0,0,-0.0533989 -49462,3317:496:1,176,-39,0,0,-0.0523777 -49463,3317:496:2,176.5,-39,0,0,-0.051258 -49464,3317:497:1,177,-39,0,0,-0.0517363 -49465,3317:497:2,177.5,-39,0,0,-0.0541628 -49466,3317:498:1,178,-39,0,0,-0.0571209 -49467,3317:498:2,178.5,-39,0,0,-0.0577783 -49468,3317:499:1,179,-39,0,0,-0.0568545 -49469,3317:499:2,179.5,-39,0,0,-0.0550531 -49470,3318:390:1,180,-39,0,0,-0.0525486 -49471,5318:380:3,-180,-38.5,0,0,-0.0587457 -49472,5317:489:4,-179.5,-38.5,0,0,-0.0562606 -49473,5317:489:3,-179,-38.5,0,0,-0.0500119 -49474,5317:488:4,-178.5,-38.5,0,0,-0.0470123 -49475,5317:488:3,-178,-38.5,0,0,-0.0480575 -49476,5317:487:4,-177.5,-38.5,0,0,-0.0546187 -49477,5317:487:3,-177,-38.5,0,0,-0.0725904 -49478,5317:486:4,-176.5,-38.5,0,0,-0.0782881 -49479,5317:486:3,-176,-38.5,0,0,-0.0860622 -49480,5317:485:4,-175.5,-38.5,0,0,-0.0906284 -49481,5317:485:3,-175,-38.5,0,0,-0.0889637 -49482,5317:384:4,-174.5,-38.5,0,0,-0.082984 -49483,5317:384:3,-174,-38.5,0,0,-0.0791129 -49484,5317:383:4,-173.5,-38.5,0,0,-0.0803879 -49485,5317:383:3,-173,-38.5,0,0,-0.0884941 -49486,5317:382:4,-172.5,-38.5,0,0,-0.0916611 -49487,5317:382:3,-172,-38.5,0,0,-0.0924385 -49488,5317:381:4,-171.5,-38.5,0,0,-0.0886644 -49489,5317:381:3,-171,-38.5,0,0,-0.0809463 -49490,5317:380:4,-170.5,-38.5,0,0,-0.0808113 -49491,5317:380:3,-170,-38.5,0,0,-0.0770303 -49492,5316:489:4,-169.5,-38.5,0,0,-0.0769023 -49493,5316:489:3,-169,-38.5,0,0,-0.0955972 -49494,5316:488:4,-168.5,-38.5,0,0,-0.0996445 -49495,5316:488:3,-168,-38.5,0,0,-0.092796 -49496,5316:487:4,-167.5,-38.5,0,0,-0.0908907 -49497,5316:487:3,-167,-38.5,0,0,-0.089954 -49498,5316:486:4,-166.5,-38.5,0,0,-0.0875841 -49499,5316:486:3,-166,-38.5,0,0,-0.086414 -49500,5316:485:4,-165.5,-38.5,0,0,-0.0862275 -49501,5316:485:3,-165,-38.5,0,0,-0.0841846 -49502,5316:384:4,-164.5,-38.5,0,0,-0.0889853 -49503,5316:384:3,-164,-38.5,0,0,-0.0905844 -49504,5316:383:4,-163.5,-38.5,0,0,-0.0916833 -49505,5316:383:3,-163,-38.5,0,0,-0.0918603 -49506,5316:382:4,-162.5,-38.5,0,0,-0.094814 -49507,5316:382:3,-162,-38.5,0,0,-0.105309 -49508,5316:381:4,-161.5,-38.5,0,0,-0.120586 -49509,5316:381:3,-161,-38.5,0,0,-0.119074 -49510,5316:380:4,-160.5,-38.5,0,0,-0.117874 -49511,5316:380:3,-160,-38.5,0,0,-0.117351 -49512,5315:489:4,-159.5,-38.5,0,0,-0.11455 -49513,5315:489:3,-159,-38.5,0,0,-0.111575 -49514,5315:488:4,-158.5,-38.5,0,0,-0.112843 -49515,5315:488:3,-158,-38.5,0,0,-0.116457 -49516,5315:487:4,-157.5,-38.5,0,0,-0.116055 -49517,5315:487:3,-157,-38.5,0,0,-0.112677 -49518,5315:486:4,-156.5,-38.5,0,0,-0.112787 -49519,5315:486:3,-156,-38.5,0,0,-0.118487 -49520,5315:485:4,-155.5,-38.5,0,0,-0.12291 -49521,5315:485:3,-155,-38.5,0,0,-0.118458 -49522,5315:384:4,-154.5,-38.5,0,0,-0.114409 -49523,5315:384:3,-154,-38.5,0,0,-0.112594 -49524,5315:383:4,-153.5,-38.5,0,0,-0.111438 -49525,5315:383:3,-153,-38.5,0,0,-0.111329 -49526,5315:382:4,-152.5,-38.5,0,0,-0.113009 -49527,5315:382:3,-152,-38.5,0,0,-0.115599 -49528,5315:381:4,-151.5,-38.5,0,0,-0.118224 -49529,5315:381:3,-151,-38.5,0,0,-0.121757 -49530,5315:380:4,-150.5,-38.5,0,0,-0.126158 -49531,5315:380:3,-150,-38.5,0,0,-0.125719 -49532,5314:489:4,-149.5,-38.5,0,0,-0.121336 -49533,5314:489:3,-149,-38.5,0,0,-0.119547 -49534,5314:488:4,-148.5,-38.5,0,0,-0.120706 -49535,5314:488:3,-148,-38.5,0,0,-0.123307 -49536,5314:487:4,-147.5,-38.5,0,0,-0.125657 -49537,5314:487:3,-147,-38.5,0,0,-0.127167 -49538,5314:486:4,-146.5,-38.5,0,0,-0.126756 -49539,5314:486:3,-146,-38.5,0,0,-0.124661 -49540,5314:485:4,-145.5,-38.5,0,0,-0.122727 -49541,5314:485:3,-145,-38.5,0,0,-0.121999 -49542,5314:384:4,-144.5,-38.5,0,0,-0.121216 -49543,5314:384:3,-144,-38.5,0,0,-0.120467 -49544,5314:383:4,-143.5,-38.5,0,0,-0.120616 -49545,5314:383:3,-143,-38.5,0,0,-0.120766 -49546,5314:382:4,-142.5,-38.5,0,0,-0.121065 -49547,5314:382:3,-142,-38.5,0,0,-0.121848 -49548,5314:381:4,-141.5,-38.5,0,0,-0.121275 -49549,5314:381:3,-141,-38.5,0,0,-0.118751 -49550,5314:380:4,-140.5,-38.5,0,0,-0.115798 -49551,5314:380:3,-140,-38.5,0,0,-0.1152 -49552,5313:489:4,-139.5,-38.5,0,0,-0.115941 -49553,5313:489:3,-139,-38.5,0,0,-0.116256 -49554,5313:488:4,-138.5,-38.5,0,0,-0.116889 -49555,5313:488:3,-138,-38.5,0,0,-0.116256 -49556,5313:487:4,-137.5,-38.5,0,0,-0.114719 -49557,5313:487:3,-137,-38.5,0,0,-0.111685 -49558,5313:486:4,-136.5,-38.5,0,0,-0.107916 -49559,5313:486:3,-136,-38.5,0,0,-0.106917 -49560,5313:485:4,-135.5,-38.5,0,0,-0.106786 -49561,5313:485:3,-135,-38.5,0,0,-0.106187 -49562,5313:384:4,-134.5,-38.5,0,0,-0.104822 -49563,5313:384:3,-134,-38.5,0,0,-0.101974 -49564,5313:383:4,-133.5,-38.5,0,0,-0.0997414 -49565,5313:383:3,-133,-38.5,0,0,-0.101949 -49566,5313:382:4,-132.5,-38.5,0,0,-0.105361 -49567,5313:382:3,-132,-38.5,0,0,-0.106786 -49568,5313:381:4,-131.5,-38.5,0,0,-0.107231 -49569,5313:381:3,-131,-38.5,0,0,-0.106943 -49570,5313:380:4,-130.5,-38.5,0,0,-0.106943 -49571,5313:380:3,-130,-38.5,0,0,-0.106604 -49572,5312:489:4,-129.5,-38.5,0,0,-0.105722 -49573,5312:489:3,-129,-38.5,0,0,-0.104847 -49574,5312:488:4,-128.5,-38.5,0,0,-0.104388 -49575,5312:488:3,-128,-38.5,0,0,-0.104159 -49576,5312:487:4,-127.5,-38.5,0,0,-0.103728 -49577,5312:487:3,-127,-38.5,0,0,-0.102822 -49578,5312:486:4,-126.5,-38.5,0,0,-0.10175 -49579,5312:486:3,-126,-38.5,0,0,-0.100642 -49580,5312:485:4,-125.5,-38.5,0,0,-0.0991134 -49581,5312:485:3,-125,-38.5,0,0,-0.0969966 -49582,5312:384:4,-124.5,-38.5,0,0,-0.0941509 -49583,5312:384:3,-124,-38.5,0,0,-0.0910882 -49584,5312:383:4,-123.5,-38.5,0,0,-0.088643 -49585,5312:383:3,-123,-38.5,0,0,-0.0869966 -49586,5312:382:4,-122.5,-38.5,0,0,-0.086083 -49587,5312:382:3,-122,-38.5,0,0,-0.0860414 -49588,5312:381:4,-121.5,-38.5,0,0,-0.0865801 -49589,5312:381:3,-121,-38.5,0,0,-0.0876053 -49590,5312:380:4,-120.5,-38.5,0,0,-0.0888352 -49591,5312:380:3,-120,-38.5,0,0,-0.0926171 -49592,5311:489:4,-119.5,-38.5,0,0,-0.0931331 -49593,5311:489:3,-119,-38.5,0,0,-0.0912203 -49594,5311:488:4,-118.5,-38.5,0,0,-0.0890493 -49595,5311:488:3,-118,-38.5,0,0,-0.0870802 -49596,5311:487:4,-117.5,-38.5,0,0,-0.085036 -49597,5311:487:3,-117,-38.5,0,0,-0.0827855 -49598,5311:486:4,-116.5,-38.5,0,0,-0.0805221 -49599,5311:486:3,-116,-38.5,0,0,-0.0784373 -49600,5311:485:4,-115.5,-38.5,0,0,-0.0770672 -49601,5311:485:3,-115,-38.5,0,0,-0.0758128 -49602,5311:384:4,-114.5,-38.5,0,0,-0.0739809 -49603,5311:384:3,-114,-38.5,0,0,-0.0703908 -49604,5311:383:4,-113.5,-38.5,0,0,-0.0670013 -49605,5311:383:3,-113,-38.5,0,0,-0.0654413 -49606,5311:382:4,-112.5,-38.5,0,0,-0.0654413 -49607,5311:382:3,-112,-38.5,0,0,-0.0672863 -49608,5311:381:4,-111.5,-38.5,0,0,-0.0701581 -49609,5311:381:3,-111,-38.5,0,0,-0.0760293 -49610,5311:380:4,-110.5,-38.5,0,0,-0.074386 -49611,5311:380:3,-110,-38.5,0,0,-0.0700089 -49612,5310:489:4,-109.5,-38.5,0,0,-0.0685845 -49613,5310:489:3,-109,-38.5,0,0,-0.0675405 -49614,5310:488:4,-108.5,-38.5,0,0,-0.065952 -49615,5310:488:3,-108,-38.5,0,0,-0.0637851 -49616,5310:487:4,-107.5,-38.5,0,0,-0.0617655 -49617,5310:487:3,-107,-38.5,0,0,-0.0616498 -49618,5310:486:4,-106.5,-38.5,0,0,-0.062627 -49619,5310:486:3,-106,-38.5,0,0,-0.0638299 -49620,5310:485:4,-105.5,-38.5,0,0,-0.0642513 -49621,5310:485:3,-105,-38.5,0,0,-0.0637247 -49622,5310:384:4,-104.5,-38.5,0,0,-0.062627 -49623,5310:384:3,-104,-38.5,0,0,-0.061275 -49624,5310:383:4,-103.5,-38.5,0,0,-0.0600666 -49625,5310:383:3,-103,-38.5,0,0,-0.0588418 -49626,5310:382:4,-102.5,-38.5,0,0,-0.0574017 -49627,5310:382:3,-102,-38.5,0,0,-0.0562606 -49628,5310:381:4,-101.5,-38.5,0,0,-0.0562738 -49629,5310:381:3,-101,-38.5,0,0,-0.0573747 -49630,5310:380:4,-100.5,-38.5,0,0,-0.058226 -49631,5310:380:3,-100,-38.5,0,0,-0.0580356 -49632,5309:489:4,-99.5,-38.5,0,0,-0.0568415 -49633,5309:489:3,-99,-38.5,0,0,-0.0553879 -49634,5309:488:4,-98.5,-38.5,0,0,-0.0544283 -49635,5309:488:3,-98,-38.5,0,0,-0.054024 -49636,5309:487:4,-97.5,-38.5,0,0,-0.0539611 -49637,5309:487:3,-97,-38.5,0,0,-0.053798 -49638,5309:486:4,-96.5,-38.5,0,0,-0.0532997 -49639,5309:486:3,-96,-38.5,0,0,-0.0529041 -49640,5309:485:4,-95.5,-38.5,0,0,-0.0530275 -49641,5309:485:3,-95,-38.5,0,0,-0.0537357 -49642,5309:384:4,-94.5,-38.5,0,0,-0.0549123 -49643,5309:384:3,-94,-38.5,0,0,-0.054251 -49644,5309:383:4,-93.5,-38.5,0,0,-0.0533618 -49645,5309:383:3,-93,-38.5,0,0,-0.0533989 -49646,5309:382:4,-92.5,-38.5,0,0,-0.0529289 -49647,5309:382:3,-92,-38.5,0,0,-0.0526217 -49648,5309:381:4,-91.5,-38.5,0,0,-0.052732 -49649,5309:381:3,-91,-38.5,0,0,-0.0539488 -49650,5309:380:4,-90.5,-38.5,0,0,-0.0548101 -49651,5309:380:3,-90,-38.5,0,0,-0.055079 -49652,5308:489:4,-89.5,-38.5,0,0,-0.0552592 -49653,5308:489:3,-89,-38.5,0,0,-0.0563922 -49654,5308:488:4,-88.5,-38.5,0,0,-0.0581442 -49655,5308:488:3,-88,-38.5,0,0,-0.0575764 -49656,5308:487:4,-87.5,-38.5,0,0,-0.0536605 -49657,5308:487:3,-87,-38.5,0,0,-0.0545554 -49658,5308:486:4,-86.5,-38.5,0,0,-0.0535235 -49659,5308:486:3,-86,-38.5,0,0,-0.0511984 -49660,5308:485:4,-85.5,-38.5,0,0,-0.051258 -49661,5308:485:3,-85,-38.5,0,0,-0.0532006 -49662,5308:384:4,-84.5,-38.5,0,0,-0.0543904 -49663,5308:384:3,-84,-38.5,0,0,-0.0536232 -49664,5308:383:4,-83.5,-38.5,0,0,-0.0522559 -49665,5308:383:3,-83,-38.5,0,0,-0.0580899 -49666,5308:382:4,-82.5,-38.5,0,0,-0.0601934 -49667,5308:382:3,-82,-38.5,0,0,-0.0590628 -49668,5308:381:4,-81.5,-38.5,0,0,-0.0600524 -49669,5308:381:3,-81,-38.5,0,0,-0.062715 -49670,5308:380:4,-80.5,-38.5,0,0,-0.0642817 -49671,5308:380:3,-80,-38.5,0,0,-0.0648895 -49672,5307:489:4,-79.5,-38.5,0,0,-0.0648434 -49673,5307:489:3,-79,-38.5,0,0,-0.0635158 -49674,5307:488:4,-78.5,-38.5,0,0,-0.0630105 -49675,5307:488:3,-78,-38.5,0,0,-0.0632032 -49676,5307:487:4,-77.5,-38.5,0,0,-0.0642513 -49677,5307:487:3,-77,-38.5,0,0,-0.0635454 -49678,5307:486:4,-76.5,-38.5,0,0,-0.0702244 -49679,5307:486:3,-76,-38.5,0,0,-0.0772875 -49680,5306:486:3,-66,-38.5,0,0,-0.0955506 -49681,5306:485:4,-65.5,-38.5,0,0,-0.0849141 -49682,5306:485:3,-65,-38.5,0,0,-0.0822723 -49683,5306:384:4,-64.5,-38.5,0,0,-0.0784744 -49684,5306:384:3,-64,-38.5,0,0,-0.0731433 -49685,5306:383:4,-63.5,-38.5,0,0,-0.0693831 -49686,5306:383:3,-63,-38.5,0,0,-0.0677163 -49687,5306:382:4,-62.5,-38.5,0,0,-0.068844 -49688,5306:382:3,-62,-38.5,0,0,-0.0688604 -49689,5306:381:4,-61.5,-38.5,0,0,-0.0717188 -49690,5306:381:3,-61,-38.5,0,0,-0.0754536 -49691,5306:380:4,-60.5,-38.5,0,0,-0.0714307 -49692,5306:380:3,-60,-38.5,0,0,-0.0660607 -49693,5305:489:4,-59.5,-38.5,0,0,-0.0586769 -49694,5305:489:3,-59,-38.5,0,0,-0.0489905 -49695,5305:488:4,-58.5,-38.5,0,0,-0.0409274 -49696,5305:488:3,-58,-38.5,0,0,-0.0380013 -49697,5305:487:4,-57.5,-38.5,0,0,-0.0366666 -49698,5305:487:3,-57,-38.5,0,0,-0.0357466 -49699,5305:486:4,-56.5,-38.5,0,0,-0.0355425 -49700,5305:486:3,-56,-38.5,0,0,-0.0365826 -49701,5305:485:4,-55.5,-38.5,0,0,-0.0390622 -49702,5305:485:3,-55,-38.5,0,0,-0.0426979 -49703,5305:384:4,-54.5,-38.5,0,0,-0.0482136 -49704,5305:384:3,-54,-38.5,0,0,-0.0595623 -49705,5305:383:4,-53.5,-38.5,0,0,-0.0667333 -49706,5305:383:3,-53,-38.5,0,0,-0.0710264 -49707,5305:382:4,-52.5,-38.5,0,0,-0.0754355 -49708,5305:382:3,-52,-38.5,0,0,-0.0802539 -49709,5305:381:4,-51.5,-38.5,0,0,-0.0832426 -49710,5305:381:3,-51,-38.5,0,0,-0.100301 -49711,5305:380:4,-50.5,-38.5,0,0,-0.108233 -49712,5305:380:3,-50,-38.5,0,0,-0.107626 -49713,5304:489:4,-49.5,-38.5,0,0,-0.0991854 -49714,5304:489:3,-49,-38.5,0,0,-0.0824694 -49715,5304:488:4,-48.5,-38.5,0,0,-0.0783063 -49716,5304:488:3,-48,-38.5,0,0,-0.0762829 -49717,5304:487:4,-47.5,-38.5,0,0,-0.0778415 -49718,5304:487:3,-47,-38.5,0,0,-0.0800624 -49719,5304:486:4,-46.5,-38.5,0,0,-0.0790191 -49720,5304:486:3,-46,-38.5,0,0,-0.0771591 -49721,5304:485:4,-45.5,-38.5,0,0,-0.0742622 -49722,5304:485:3,-45,-38.5,0,0,-0.0714813 -49723,5304:384:4,-44.5,-38.5,0,0,-0.0704574 -49724,5304:384:3,-44,-38.5,0,0,-0.0706076 -49725,5304:383:4,-43.5,-38.5,0,0,-0.0700751 -49726,5304:383:3,-43,-38.5,0,0,-0.068682 -49727,5304:382:4,-42.5,-38.5,0,0,-0.0657504 -49728,5304:382:3,-42,-38.5,0,0,-0.0595486 -49729,5304:381:4,-41.5,-38.5,0,0,-0.0520015 -49730,5304:381:3,-41,-38.5,0,0,-0.050584 -49731,5304:380:4,-40.5,-38.5,0,0,-0.0533864 -49732,5304:380:3,-40,-38.5,0,0,-0.0561293 -49733,5303:489:4,-39.5,-38.5,0,0,-0.0568946 -49734,5303:489:3,-39,-38.5,0,0,-0.0556728 -49735,5303:488:4,-38.5,-38.5,0,0,-0.0528426 -49736,5303:488:3,-38,-38.5,0,0,-0.0495156 -49737,5303:487:4,-37.5,-38.5,0,0,-0.0461827 -49738,5303:487:3,-37,-38.5,0,0,-0.0439969 -49739,5303:486:4,-36.5,-38.5,0,0,-0.043014 -49740,5303:486:3,-36,-38.5,0,0,-0.0419764 -49741,5303:485:4,-35.5,-38.5,0,0,-0.0395857 -49742,5303:485:3,-35,-38.5,0,0,-0.0376456 -49743,5303:384:4,-34.5,-38.5,0,0,-0.0370296 -49744,5303:384:3,-34,-38.5,0,0,-0.0363073 -49745,5303:383:4,-33.5,-38.5,0,0,-0.0367505 -49746,5303:383:3,-33,-38.5,0,0,-0.037285 -49747,5303:382:4,-32.5,-38.5,0,0,-0.0376024 -49748,5303:382:3,-32,-38.5,0,0,-0.0371741 -49749,5303:381:4,-31.5,-38.5,0,0,-0.0361744 -49750,5303:381:3,-31,-38.5,0,0,-0.0349782 -49751,5303:380:4,-30.5,-38.5,0,0,-0.0340006 -49752,5303:380:3,-30,-38.5,0,0,-0.0331572 -49753,5302:489:4,-29.5,-38.5,0,0,-0.0318015 -49754,5302:489:3,-29,-38.5,0,0,-0.0303091 -49755,5302:488:4,-28.5,-38.5,0,0,-0.0299321 -49756,5302:488:3,-28,-38.5,0,0,-0.0297962 -49757,5302:487:4,-27.5,-38.5,0,0,-0.0281691 -49758,5302:487:3,-27,-38.5,0,0,-0.0302128 -49759,5302:486:4,-26.5,-38.5,0,0,-0.0366581 -49760,5302:486:3,-26,-38.5,0,0,-0.037975 -49761,5302:485:4,-25.5,-38.5,0,0,-0.0376285 -49762,5302:485:3,-25,-38.5,0,0,-0.0365492 -49763,5302:384:4,-24.5,-38.5,0,0,-0.034914 -49764,5302:384:3,-24,-38.5,0,0,-0.0334615 -49765,5302:383:4,-23.5,-38.5,0,0,-0.0321148 -49766,5302:383:3,-23,-38.5,0,0,-0.0300003 -49767,5302:382:4,-22.5,-38.5,0,0,-0.0284715 -49768,5302:382:3,-22,-38.5,0,0,-0.0296676 -49769,5302:381:4,-21.5,-38.5,0,0,-0.0310709 -49770,5302:381:3,-21,-38.5,0,0,-0.0345568 -49771,5302:380:4,-20.5,-38.5,0,0,-0.0393592 -49772,5302:380:3,-20,-38.5,0,0,-0.0414007 -49773,5301:489:4,-19.5,-38.5,0,0,-0.0389905 -49774,5301:489:3,-19,-38.5,0,0,-0.0356404 -49775,5301:488:4,-18.5,-38.5,0,0,-0.0344622 -49776,5301:488:3,-18,-38.5,0,0,-0.0361082 -49777,5301:487:4,-17.5,-38.5,0,0,-0.0398505 -49778,5301:487:3,-17,-38.5,0,0,-0.0429345 -49779,5301:486:4,-16.5,-38.5,0,0,-0.0434122 -49780,5301:486:3,-16,-38.5,0,0,-0.039224 -49781,5301:485:4,-15.5,-38.5,0,0,-0.0320563 -49782,5301:485:3,-15,-38.5,0,0,-0.0317003 -49783,5301:384:4,-14.5,-38.5,0,0,-0.0318668 -49784,5301:384:3,-14,-38.5,0,0,-0.0311487 -49785,5301:383:4,-13.5,-38.5,0,0,-0.0304475 -49786,5301:383:3,-13,-38.5,0,0,-0.0300959 -49787,5301:382:4,-12.5,-38.5,0,0,-0.0295396 -49788,5301:382:3,-12,-38.5,0,0,-0.0275742 -49789,5301:381:4,-11.5,-38.5,0,0,-0.0254469 -49790,5301:381:3,-11,-38.5,0,0,-0.0242212 -49791,5301:380:4,-10.5,-38.5,0,0,-0.0229989 -49792,5301:380:3,-10,-38.5,0,0,-0.0218098 -49793,5300:489:4,-9.5,-38.5,0,0,-0.0208803 -49794,5300:489:3,-9,-38.5,0,0,-0.0207395 -49795,5300:488:4,-8.5,-38.5,0,0,-0.0228537 -49796,5300:488:3,-8,-38.5,0,0,-0.0260655 -49797,5300:487:4,-7.5,-38.5,0,0,-0.0291658 -49798,5300:487:3,-7,-38.5,0,0,-0.0337839 -49799,5300:486:4,-6.5,-38.5,0,0,-0.0384218 -49800,5300:486:3,-6,-38.5,0,0,-0.0404781 -49801,5300:485:4,-5.5,-38.5,0,0,-0.043014 -49802,5300:485:3,-5,-38.5,0,0,-0.0450447 -49803,5300:384:4,-4.5,-38.5,0,0,-0.0455154 -49804,5300:384:3,-4,-38.5,0,0,-0.042443 -49805,5300:383:4,-3.5,-38.5,0,0,-0.0377839 -49806,5300:383:3,-3,-38.5,0,0,-0.0343442 -49807,5300:382:4,-2.5,-38.5,0,0,-0.0340784 -49808,5300:382:3,-2,-38.5,0,0,-0.0339231 -49809,5300:381:4,-1.5,-38.5,0,0,-0.034628 -49810,5300:381:3,-1,-38.5,0,0,-0.035219 -49811,5300:380:4,-0.5,-38.5,0,0,-0.0349301 -49812,3300:380:4,0,-38.5,0,0,-0.0337223 -49813,3300:380:4,0.5,-38.5,0,0,-0.0339307 -49814,3300:381:3,1,-38.5,0,0,-0.0320418 -49815,3300:381:4,1.5,-38.5,0,0,-0.0285492 -49816,3300:382:3,2,-38.5,0,0,-0.0262614 -49817,3300:382:4,2.5,-38.5,0,0,-0.0269186 -49818,3300:383:3,3,-38.5,0,0,-0.0324536 -49819,3300:383:4,3.5,-38.5,0,0,-0.0354939 -49820,3300:384:3,4,-38.5,0,0,-0.0298097 -49821,3300:384:4,4.5,-38.5,0,0,-0.0255393 -49822,3300:485:3,5,-38.5,0,0,-0.0242323 -49823,3300:485:4,5.5,-38.5,0,0,-0.0242103 -49824,3300:486:3,6,-38.5,0,0,-0.0234027 -49825,3300:486:4,6.5,-38.5,0,0,-0.0229989 -49826,3300:487:3,7,-38.5,0,0,-0.0229781 -49827,3300:487:4,7.5,-38.5,0,0,-0.0224291 -49828,3300:488:3,8,-38.5,0,0,-0.0187736 -49829,3300:488:4,8.5,-38.5,0,0,-0.0163825 -49830,3300:489:3,9,-38.5,0,0,-0.0161997 -49831,3300:489:4,9.5,-38.5,0,0,-0.0166946 -49832,3301:380:3,10,-38.5,0,0,-0.0174542 -49833,3301:380:4,10.5,-38.5,0,0,-0.0209464 -49834,3301:381:3,11,-38.5,0,0,-0.0263687 -49835,3301:381:4,11.5,-38.5,0,0,-0.0294323 -49836,3301:382:3,12,-38.5,0,0,-0.0289874 -49837,3301:382:4,12.5,-38.5,0,0,-0.0273933 -49838,3301:383:3,13,-38.5,0,0,-0.0260124 -49839,3301:383:4,13.5,-38.5,0,0,-0.0248095 -49840,3301:384:3,14,-38.5,0,0,-0.0237278 -49841,3301:384:4,14.5,-38.5,0,0,-0.0227096 -49842,3301:485:3,15,-38.5,0,0,-0.0215601 -49843,3301:485:4,15.5,-38.5,0,0,-0.0210553 -49844,3301:486:3,16,-38.5,0,0,-0.0207348 -49845,3301:486:4,16.5,-38.5,0,0,-0.0205579 -49846,3301:487:3,17,-38.5,0,0,-0.0211697 -49847,3301:487:4,17.5,-38.5,0,0,-0.0224698 -49848,3301:488:3,18,-38.5,0,0,-0.0267544 -49849,3301:488:4,18.5,-38.5,0,0,-0.0265788 -49850,3301:489:3,19,-38.5,0,0,-0.0266756 -49851,3301:489:4,19.5,-38.5,0,0,-0.0266756 -49852,3302:380:3,20,-38.5,0,0,-0.0246806 -49853,3302:380:4,20.5,-38.5,0,0,-0.0231605 -49854,3302:381:3,21,-38.5,0,0,-0.0244139 -49855,3302:381:4,21.5,-38.5,0,0,-0.0255914 -49856,3302:382:3,22,-38.5,0,0,-0.0244637 -49857,3302:382:4,22.5,-38.5,0,0,-0.0216529 -49858,3302:383:3,23,-38.5,0,0,-0.0183353 -49859,3302:383:4,23.5,-38.5,0,0,-0.0184263 -49860,3302:384:3,24,-38.5,0,0,-0.019537 -49861,3302:384:4,24.5,-38.5,0,0,-0.0195811 -49862,3302:485:3,25,-38.5,0,0,-0.0203826 -49863,3302:485:4,25.5,-38.5,0,0,-0.0208708 -49864,3302:486:3,26,-38.5,0,0,-0.0208851 -49865,3302:486:4,26.5,-38.5,0,0,-0.0212079 -49866,3302:487:3,27,-38.5,0,0,-0.0221123 -49867,3302:487:4,27.5,-38.5,0,0,-0.0243201 -49868,3302:488:3,28,-38.5,0,0,-0.0263867 -49869,3302:488:4,28.5,-38.5,0,0,-0.026597 -49870,3302:489:3,29,-38.5,0,0,-0.0256554 -49871,3302:489:4,29.5,-38.5,0,0,-0.025075 -49872,3303:380:3,30,-38.5,0,0,-0.0230666 -49873,3303:380:4,30.5,-38.5,0,0,-0.021958 -49874,3303:381:3,31,-38.5,0,0,-0.0234132 -49875,3303:381:4,31.5,-38.5,0,0,-0.0280032 -49876,3303:382:3,32,-38.5,0,0,-0.0330212 -49877,3303:382:4,32.5,-38.5,0,0,-0.034164 -49878,3303:383:3,33,-38.5,0,0,-0.0305168 -49879,3303:383:4,33.5,-38.5,0,0,-0.0222475 -49880,3303:384:3,34,-38.5,0,0,-0.0187484 -49881,3303:384:4,34.5,-38.5,0,0,-0.0195811 -49882,3303:485:3,35,-38.5,0,0,-0.0202087 -49883,3303:485:4,35.5,-38.5,0,0,-0.0197672 -49884,3303:486:3,36,-38.5,0,0,-0.0195503 -49885,3303:486:4,36.5,-38.5,0,0,-0.0197406 -49886,3303:487:3,37,-38.5,0,0,-0.0204931 -49887,3303:487:4,37.5,-38.5,0,0,-0.0216772 -49888,3303:488:3,38,-38.5,0,0,-0.0217803 -49889,3303:488:4,38.5,-38.5,0,0,-0.0216529 -49890,3303:489:3,39,-38.5,0,0,-0.0207488 -49891,3303:489:4,39.5,-38.5,0,0,-0.0197316 -49892,3304:380:3,40,-38.5,0,0,-0.0207675 -49893,3304:380:4,40.5,-38.5,0,0,-0.0213134 -49894,3304:381:3,41,-38.5,0,0,-0.0212222 -49895,3304:381:4,41.5,-38.5,0,0,-0.0214872 -49896,3304:382:3,42,-38.5,0,0,-0.0218591 -49897,3304:382:4,42.5,-38.5,0,0,-0.0228796 -49898,3304:383:3,43,-38.5,0,0,-0.023626 -49899,3304:383:4,43.5,-38.5,0,0,-0.0226788 -49900,3304:384:3,44,-38.5,0,0,-0.0195283 -49901,3304:384:4,44.5,-38.5,0,0,-0.0180813 -49902,3304:485:3,45,-38.5,0,0,-0.0182776 -49903,3304:485:4,45.5,-38.5,0,0,-0.0187526 -49904,3304:486:3,46,-38.5,0,0,-0.0191537 -49905,3304:486:4,46.5,-38.5,0,0,-0.0193139 -49906,3304:487:3,47,-38.5,0,0,-0.0191407 -49907,3304:487:4,47.5,-38.5,0,0,-0.0188754 -49908,3304:488:3,48,-38.5,0,0,-0.019059 -49909,3304:488:4,48.5,-38.5,0,0,-0.0202543 -49910,3304:489:3,49,-38.5,0,0,-0.0201586 -49911,3304:489:4,49.5,-38.5,0,0,-0.0200363 -49912,3305:380:3,50,-38.5,0,0,-0.0203 -49913,3305:380:4,50.5,-38.5,0,0,-0.0207255 -49914,3305:381:3,51,-38.5,0,0,-0.021227 -49915,3305:381:4,51.5,-38.5,0,0,-0.0218 -49916,3305:382:3,52,-38.5,0,0,-0.0224444 -49917,3305:382:4,52.5,-38.5,0,0,-0.0230874 -49918,3305:383:3,53,-38.5,0,0,-0.0235674 -49919,3305:383:4,53.5,-38.5,0,0,-0.0237439 -49920,3305:384:3,54,-38.5,0,0,-0.024194 -49921,3305:384:4,54.5,-38.5,0,0,-0.0256961 -49922,3305:485:3,55,-38.5,0,0,-0.0263091 -49923,3305:485:4,55.5,-38.5,0,0,-0.0247982 -49924,3305:486:3,56,-38.5,0,0,-0.0214825 -49925,3305:486:4,56.5,-38.5,0,0,-0.0194404 -49926,3305:487:3,57,-38.5,0,0,-0.0199328 -49927,3305:487:4,57.5,-38.5,0,0,-0.0218986 -49928,3305:488:3,58,-38.5,0,0,-0.0220774 -49929,3305:488:4,58.5,-38.5,0,0,-0.02116 -49930,3305:489:3,59,-38.5,0,0,-0.0210553 -49931,3305:489:4,59.5,-38.5,0,0,-0.0221874 -49932,3306:380:3,60,-38.5,0,0,-0.0240846 -49933,3306:380:4,60.5,-38.5,0,0,-0.0232129 -49934,3306:381:3,61,-38.5,0,0,-0.0202543 -49935,3306:381:4,61.5,-38.5,0,0,-0.0182859 -49936,3306:382:3,62,-38.5,0,0,-0.0175841 -49937,3306:382:4,62.5,-38.5,0,0,-0.0179275 -49938,3306:383:3,63,-38.5,0,0,-0.0182859 -49939,3306:383:4,63.5,-38.5,0,0,-0.017984 -49940,3306:384:3,64,-38.5,0,0,-0.0173018 -49941,3306:384:4,64.5,-38.5,0,0,-0.0169554 -49942,3306:485:3,65,-38.5,0,0,-0.018572 -49943,3306:485:4,65.5,-38.5,0,0,-0.0217508 -49944,3306:486:3,66,-38.5,0,0,-0.0230716 -49945,3306:486:4,66.5,-38.5,0,0,-0.0218344 -49946,3306:487:3,67,-38.5,0,0,-0.0196474 -49947,3306:487:4,67.5,-38.5,0,0,-0.0189264 -49948,3306:488:3,68,-38.5,0,0,-0.0187188 -49949,3306:488:4,68.5,-38.5,0,0,-0.0185928 -49950,3306:489:3,69,-38.5,0,0,-0.0193053 -49951,3306:489:4,69.5,-38.5,0,0,-0.0196784 -49952,3307:380:3,70,-38.5,0,0,-0.0198119 -49953,3307:380:4,70.5,-38.5,0,0,-0.0189905 -49954,3307:381:3,71,-38.5,0,0,-0.0156598 -49955,3307:381:4,71.5,-38.5,0,0,-0.0150704 -49956,3307:382:3,72,-38.5,0,0,-0.0159292 -49957,3307:382:4,72.5,-38.5,0,0,-0.0164415 -49958,3307:383:4,73.5,-38.5,0,0,-0.0163604 -49959,3307:384:3,74,-38.5,0,0,-0.0167772 -49960,3307:384:4,74.5,-38.5,0,0,-0.0176157 -49961,3307:485:3,75,-38.5,0,0,-0.0188584 -49962,3307:485:4,75.5,-38.5,0,0,-0.0213663 -49963,3307:486:3,76,-38.5,0,0,-0.0245692 -49964,3307:486:4,76.5,-38.5,0,0,-0.0255914 -49965,3307:487:3,77,-38.5,0,0,-0.0255914 -49966,3307:487:4,77.5,-38.5,0,0,-0.0250465 -49967,3307:488:3,78,-38.5,0,0,-0.0253835 -49968,3307:488:4,78.5,-38.5,0,0,-0.0280861 -49969,3307:489:3,79,-38.5,0,0,-0.0329385 -49970,3307:489:4,79.5,-38.5,0,0,-0.0355021 -49971,3308:380:3,80,-38.5,0,0,-0.0354209 -49972,3308:380:4,80.5,-38.5,0,0,-0.0351706 -49973,3308:381:3,81,-38.5,0,0,-0.0359351 -49974,3308:381:4,81.5,-38.5,0,0,-0.0369533 -49975,3308:382:3,82,-38.5,0,0,-0.037568 -49976,3308:382:4,82.5,-38.5,0,0,-0.0381848 -49977,3308:383:3,83,-38.5,0,0,-0.03908 -49978,3308:383:4,83.5,-38.5,0,0,-0.0388297 -49979,3308:384:3,84,-38.5,0,0,-0.0368686 -49980,3308:384:4,84.5,-38.5,0,0,-0.0414103 -49981,3308:485:3,85,-38.5,0,0,-0.0451384 -49982,3308:485:4,85.5,-38.5,0,0,-0.0447751 -49983,3308:486:3,86,-38.5,0,0,-0.0473508 -49984,3308:486:4,86.5,-38.5,0,0,-0.0541751 -49985,3308:487:3,87,-38.5,0,0,-0.055764 -49986,3308:487:4,87.5,-38.5,0,0,-0.0533618 -49987,3308:488:3,88,-38.5,0,0,-0.0507959 -49988,3308:488:4,88.5,-38.5,0,0,-0.0496536 -49989,3308:489:3,89,-38.5,0,0,-0.0484486 -49990,3308:489:4,89.5,-38.5,0,0,-0.0479686 -49991,3309:380:3,90,-38.5,0,0,-0.0483925 -49992,3309:380:4,90.5,-38.5,0,0,-0.049241 -49993,3309:381:3,91,-38.5,0,0,-0.0513533 -49994,3309:381:4,91.5,-38.5,0,0,-0.0522804 -49995,3309:382:3,92,-38.5,0,0,-0.04907 -49996,3309:382:4,92.5,-38.5,0,0,-0.041563 -49997,3309:383:3,93,-38.5,0,0,-0.0375422 -49998,3309:383:4,93.5,-38.5,0,0,-0.0374822 -49999,3309:384:3,94,-38.5,0,0,-0.0365995 -50000,3309:384:4,94.5,-38.5,0,0,-0.0355996 -50001,3309:485:3,95,-38.5,0,0,-0.0348425 -50002,3309:485:4,95.5,-38.5,0,0,-0.0339695 -50003,3309:486:3,96,-38.5,0,0,-0.0329911 -50004,3309:486:4,96.5,-38.5,0,0,-0.0324979 -50005,3309:487:3,97,-38.5,0,0,-0.0324017 -50006,3309:487:4,97.5,-38.5,0,0,-0.0325425 -50007,3309:488:3,98,-38.5,0,0,-0.0328334 -50008,3309:488:4,98.5,-38.5,0,0,-0.032424 -50009,3309:489:3,99,-38.5,0,0,-0.030323 -50010,3309:489:4,99.5,-38.5,0,0,-0.0279778 -50011,3310:380:3,100,-38.5,0,0,-0.0267846 -50012,3310:380:4,100.5,-38.5,0,0,-0.0268273 -50013,3310:381:3,101,-38.5,0,0,-0.0280796 -50014,3310:381:4,101.5,-38.5,0,0,-0.0293121 -50015,3310:382:3,102,-38.5,0,0,-0.028118 -50016,3310:382:4,102.5,-38.5,0,0,-0.0272754 -50017,3310:383:3,103,-38.5,0,0,-0.0279842 -50018,3310:383:4,103.5,-38.5,0,0,-0.0290599 -50019,3310:384:3,104,-38.5,0,0,-0.0298165 -50020,3310:384:4,104.5,-38.5,0,0,-0.0303643 -50021,3310:485:3,105,-38.5,0,0,-0.0303299 -50022,3310:485:4,105.5,-38.5,0,0,-0.0281562 -50023,3310:486:3,106,-38.5,0,0,-0.0279588 -50024,3310:486:4,106.5,-38.5,0,0,-0.0303436 -50025,3310:487:3,107,-38.5,0,0,-0.0327286 -50026,3310:487:4,107.5,-38.5,0,0,-0.035018 -50027,3310:488:3,108,-38.5,0,0,-0.0348902 -50028,3310:488:4,108.5,-38.5,0,0,-0.0330514 -50029,3310:489:3,109,-38.5,0,0,-0.0299524 -50030,3310:489:4,109.5,-38.5,0,0,-0.0296407 -50031,3311:380:3,110,-38.5,0,0,-0.0400801 -50032,3311:380:4,110.5,-38.5,0,0,-0.0423842 -50033,3311:381:3,111,-38.5,0,0,-0.0405899 -50034,3311:381:4,111.5,-38.5,0,0,-0.0434923 -50035,3311:382:3,112,-38.5,0,0,-0.0469039 -50036,3311:382:4,112.5,-38.5,0,0,-0.0505722 -50037,3311:383:3,113,-38.5,0,0,-0.0516165 -50038,3311:383:4,113.5,-38.5,0,0,-0.050408 -50039,3311:384:3,114,-38.5,0,0,-0.0516644 -50040,3311:384:4,114.5,-38.5,0,0,-0.0540367 -50041,3311:485:3,115,-38.5,0,0,-0.0540493 -50042,3311:485:4,115.5,-38.5,0,0,-0.0524141 -50043,3311:486:3,116,-38.5,0,0,-0.0497573 -50044,3311:486:4,116.5,-38.5,0,0,-0.0572946 -50045,3311:487:3,117,-38.5,0,0,-0.0579409 -50046,3311:487:4,117.5,-38.5,0,0,-0.0557121 -50047,3311:488:3,118,-38.5,0,0,-0.0545042 -50048,3311:488:4,118.5,-38.5,0,0,-0.0546187 -50049,3311:489:3,119,-38.5,0,0,-0.0532251 -50050,3311:489:4,119.5,-38.5,0,0,-0.0486285 -50051,3312:380:3,120,-38.5,0,0,-0.0474606 -50052,3312:380:4,120.5,-38.5,0,0,-0.0492752 -50053,3312:381:3,121,-38.5,0,0,-0.0510322 -50054,3312:381:4,121.5,-38.5,0,0,-0.0515086 -50055,3312:382:3,122,-38.5,0,0,-0.052038 -50056,3312:382:4,122.5,-38.5,0,0,-0.0515565 -50057,3312:383:3,123,-38.5,0,0,-0.0528058 -50058,3312:383:4,123.5,-38.5,0,0,-0.0564975 -50059,3312:384:3,124,-38.5,0,0,-0.0593118 -50060,3312:384:4,124.5,-38.5,0,0,-0.056908 -50061,3312:485:3,125,-38.5,0,0,-0.0470558 -50062,3312:485:4,125.5,-38.5,0,0,-0.0472413 -50063,3312:486:3,126,-38.5,0,0,-0.0514845 -50064,3312:486:4,126.5,-38.5,0,0,-0.0514367 -50065,3312:487:3,127,-38.5,0,0,-0.0547972 -50066,3312:487:4,127.5,-38.5,0,0,-0.0664976 -50067,3312:488:3,128,-38.5,0,0,-0.0751135 -50068,3312:488:4,128.5,-38.5,0,0,-0.0774347 -50069,3312:489:3,129,-38.5,0,0,-0.0764464 -50070,3312:489:4,129.5,-38.5,0,0,-0.0730915 -50071,3313:380:3,130,-38.5,0,0,-0.0678119 -50072,3313:380:4,130.5,-38.5,0,0,-0.0637101 -50073,3313:381:3,131,-38.5,0,0,-0.0633666 -50074,3313:381:4,131.5,-38.5,0,0,-0.0667962 -50075,3313:382:3,132,-38.5,0,0,-0.0718547 -50076,3313:382:4,132.5,-38.5,0,0,-0.0748109 -50077,3313:383:3,133,-38.5,0,0,-0.0748109 -50078,3313:383:4,133.5,-38.5,0,0,-0.0719914 -50079,3313:384:3,134,-38.5,0,0,-0.0674453 -50080,3313:384:4,134.5,-38.5,0,0,-0.063322 -50081,3313:485:3,135,-38.5,0,0,-0.0629807 -50082,3313:485:4,135.5,-38.5,0,0,-0.0649044 -50083,3313:486:3,136,-38.5,0,0,-0.0681168 -50084,3313:486:4,136.5,-38.5,0,0,-0.0713802 -50085,3313:487:3,137,-38.5,0,0,-0.0758128 -50086,3313:487:4,137.5,-38.5,0,0,-0.0762464 -50087,3313:488:3,138,-38.5,0,0,-0.0747399 -50088,3313:488:4,138.5,-38.5,0,0,-0.0704239 -50089,3313:489:3,139,-38.5,0,0,-0.0653027 -50090,3313:489:4,139.5,-38.5,0,0,-0.0608599 -50091,3314:380:3,140,-38.5,0,0,-0.0629514 -50092,3314:380:4,140.5,-38.5,0,0,-0.0690721 -50093,3314:381:3,141,-38.5,0,0,-0.0747578 -50094,3314:381:4,141.5,-38.5,0,0,-0.0758849 -50095,3314:382:3,142,-38.5,0,0,-0.0747578 -50096,3314:382:4,142.5,-38.5,0,0,-0.0756508 -50097,3314:383:3,143,-38.5,0,0,-0.0780829 -50098,3314:383:4,143.5,-38.5,0,0,-0.0807342 -50099,3314:384:3,144,-38.5,0,0,-0.0818018 -50100,3314:384:4,144.5,-38.5,0,0,-0.0797761 -50101,3314:485:3,145,-38.5,0,0,-0.0771955 -50102,3314:485:4,145.5,-38.5,0,0,-0.0761198 -50103,3314:486:3,146,-38.5,0,0,-0.0809079 -50104,3314:486:4,146.5,-38.5,0,0,-0.0825284 -50105,3314:487:3,147,-38.5,0,0,-0.0747399 -50106,3314:487:4,147.5,-38.5,0,0,-0.072539 -50107,3314:488:3,148,-38.5,0,0,-0.071753 -50108,3314:488:4,148.5,-38.5,0,0,-0.0704905 -50109,3314:489:3,149,-38.5,0,0,-0.0686656 -50110,3314:489:4,149.5,-38.5,0,0,-0.0659828 -50111,3315:380:3,150,-38.5,0,0,-0.0713127 -50112,3315:380:4,150.5,-38.5,0,0,-0.0740334 -50113,3315:381:3,151,-38.5,0,0,-0.0745625 -50114,3315:381:4,151.5,-38.5,0,0,-0.0799669 -50115,3315:382:3,152,-38.5,0,0,-0.104873 -50116,3315:382:4,152.5,-38.5,0,0,-0.0996202 -50117,3315:383:3,153,-38.5,0,0,-0.0766287 -50118,3315:383:4,153.5,-38.5,0,0,-0.0763189 -50119,3315:384:3,154,-38.5,0,0,-0.0759753 -50120,3315:384:4,154.5,-38.5,0,0,-0.0759753 -50121,3315:485:3,155,-38.5,0,0,-0.0764281 -50122,3315:485:4,155.5,-38.5,0,0,-0.0768108 -50123,3315:486:3,156,-38.5,0,0,-0.0780273 -50124,3315:486:4,156.5,-38.5,0,0,-0.0803685 -50125,3315:487:3,157,-38.5,0,0,-0.0810431 -50126,3315:487:4,157.5,-38.5,0,0,-0.0770124 -50127,3315:488:3,158,-38.5,0,0,-0.0746511 -50128,3315:488:4,158.5,-38.5,0,0,-0.0751135 -50129,3315:489:3,159,-38.5,0,0,-0.0727454 -50130,3315:489:4,159.5,-38.5,0,0,-0.0718381 -50131,3316:380:3,160,-38.5,0,0,-0.0714478 -50132,3316:380:4,160.5,-38.5,0,0,-0.071127 -50133,3316:381:3,161,-38.5,0,0,-0.074386 -50134,3316:381:4,161.5,-38.5,0,0,-0.0799861 -50135,3316:382:3,162,-38.5,0,0,-0.0788681 -50136,3316:382:4,162.5,-38.5,0,0,-0.0749351 -50137,3316:383:3,163,-38.5,0,0,-0.0742622 -50138,3316:383:4,163.5,-38.5,0,0,-0.0777307 -50139,3316:384:3,164,-38.5,0,0,-0.079321 -50140,3316:384:4,164.5,-38.5,0,0,-0.0783439 -50141,3316:485:3,165,-38.5,0,0,-0.0784373 -50142,3316:485:4,165.5,-38.5,0,0,-0.0750602 -50143,3316:486:3,166,-38.5,0,0,-0.0754536 -50144,3316:486:4,166.5,-38.5,0,0,-0.0869131 -50145,3316:487:3,167,-38.5,0,0,-0.0875417 -50146,3316:487:4,167.5,-38.5,0,0,-0.0832225 -50147,3316:488:3,168,-38.5,0,0,-0.0767561 -50148,3316:488:4,168.5,-38.5,0,0,-0.0695634 -50149,3316:489:3,169,-38.5,0,0,-0.065673 -50150,3316:489:4,169.5,-38.5,0,0,-0.0656574 -50151,3317:380:3,170,-38.5,0,0,-0.0624214 -50152,3317:380:4,170.5,-38.5,0,0,-0.0602778 -50153,3317:381:3,171,-38.5,0,0,-0.0589385 -50154,3317:381:4,171.5,-38.5,0,0,-0.058063 -50155,3317:382:3,172,-38.5,0,0,-0.0574017 -50156,3317:382:4,172.5,-38.5,0,0,-0.0568812 -50157,3317:383:3,173,-38.5,0,0,-0.0563922 -50158,3317:383:4,173.5,-38.5,0,0,-0.0558682 -50159,3317:384:3,174,-38.5,0,0,-0.0554009 -50160,3317:384:4,174.5,-38.5,0,0,-0.0549764 -50161,3317:485:3,175,-38.5,0,0,-0.0544156 -50162,3317:485:4,175.5,-38.5,0,0,-0.0536979 -50163,3317:486:3,176,-38.5,0,0,-0.0528673 -50164,3317:486:4,176.5,-38.5,0,0,-0.0529165 -50165,3317:487:3,177,-38.5,0,0,-0.0557379 -50166,3317:487:4,177.5,-38.5,0,0,-0.059035 -50167,3317:488:3,178,-38.5,0,0,-0.0602214 -50168,3317:488:4,178.5,-38.5,0,0,-0.0605045 -50169,3317:489:3,179,-38.5,0,0,-0.0607603 -50170,3317:489:4,179.5,-38.5,0,0,-0.060264 -50171,3318:380:3,180,-38.5,0,0,-0.0587457 -50172,5318:380:1,-180,-38,0,0,-0.0620563 -50173,5317:489:2,-179.5,-38,0,0,-0.0594925 -50174,5317:489:1,-179,-38,0,0,-0.0527691 -50175,5317:488:2,-178.5,-38,0,0,-0.0487528 -50176,5317:488:1,-178,-38,0,0,-0.0486175 -50177,5317:487:2,-177.5,-38,0,0,-0.0632327 -50178,5317:487:1,-177,-38,0,0,-0.0774347 -50179,5317:486:2,-176.5,-38,0,0,-0.0848527 -50180,5317:486:1,-176,-38,0,0,-0.091838 -50181,5317:485:2,-175.5,-38,0,0,-0.0960609 -50182,5317:485:1,-175,-38,0,0,-0.0915505 -50183,5317:384:2,-174.5,-38,0,0,-0.087206 -50184,5317:384:1,-174,-38,0,0,-0.0823317 -50185,5317:383:2,-173.5,-38,0,0,-0.0875629 -50186,5317:383:1,-173,-38,0,0,-0.0908687 -50187,5317:382:2,-172.5,-38,0,0,-0.0914401 -50188,5317:382:1,-172,-38,0,0,-0.0906064 -50189,5317:381:2,-171.5,-38,0,0,-0.0856298 -50190,5317:381:1,-171,-38,0,0,-0.0805221 -50191,5317:380:2,-170.5,-38,0,0,-0.0805802 -50192,5317:380:1,-170,-38,0,0,-0.0781948 -50193,5316:489:2,-169.5,-38,0,0,-0.0901274 -50194,5316:489:1,-169,-38,0,0,-0.113875 -50195,5316:488:2,-168.5,-38,0,0,-0.120646 -50196,5316:488:1,-168,-38,0,0,-0.103551 -50197,5316:487:2,-167.5,-38,0,0,-0.0928412 -50198,5316:487:1,-167,-38,0,0,-0.091838 -50199,5316:486:2,-166.5,-38,0,0,-0.0987293 -50200,5316:486:1,-166,-38,0,0,-0.101949 -50201,5316:485:2,-165.5,-38,0,0,-0.101454 -50202,5316:485:1,-165,-38,0,0,-0.0990657 -50203,5316:384:2,-164.5,-38,0,0,-0.0948826 -50204,5316:384:1,-164,-38,0,0,-0.0906064 -50205,5316:383:2,-163.5,-38,0,0,-0.090345 -50206,5316:383:1,-163,-38,0,0,-0.0923493 -50207,5316:382:2,-162.5,-38,0,0,-0.0940371 -50208,5316:382:1,-162,-38,0,0,-0.103324 -50209,5316:381:2,-161.5,-38,0,0,-0.118311 -50210,5316:381:1,-161,-38,0,0,-0.125376 -50211,5316:380:2,-160.5,-38,0,0,-0.117932 -50212,5316:380:1,-160,-38,0,0,-0.117206 -50213,5315:489:2,-159.5,-38,0,0,-0.116515 -50214,5315:489:1,-159,-38,0,0,-0.116199 -50215,5315:488:2,-158.5,-38,0,0,-0.118781 -50216,5315:488:1,-158,-38,0,0,-0.120557 -50217,5315:487:2,-157.5,-38,0,0,-0.119487 -50218,5315:487:1,-157,-38,0,0,-0.117351 -50219,5315:486:2,-156.5,-38,0,0,-0.119932 -50220,5315:486:1,-156,-38,0,0,-0.127009 -50221,5315:485:2,-155.5,-38,0,0,-0.130118 -50222,5315:485:1,-155,-38,0,0,-0.129051 -50223,5315:384:2,-154.5,-38,0,0,-0.127199 -50224,5315:384:1,-154,-38,0,0,-0.126096 -50225,5315:383:2,-153.5,-38,0,0,-0.125782 -50226,5315:383:1,-153,-38,0,0,-0.125689 -50227,5315:382:2,-152.5,-38,0,0,-0.125189 -50228,5315:382:1,-152,-38,0,0,-0.124044 -50229,5315:381:2,-151.5,-38,0,0,-0.12491 -50230,5315:381:1,-151,-38,0,0,-0.131656 -50231,5315:380:2,-150.5,-38,0,0,-0.13574 -50232,5315:380:1,-150,-38,0,0,-0.134251 -50233,5314:489:2,-149.5,-38,0,0,-0.130216 -50234,5314:489:1,-149,-38,0,0,-0.128154 -50235,5314:488:2,-148.5,-38,0,0,-0.129212 -50236,5314:488:1,-148,-38,0,0,-0.131032 -50237,5314:487:2,-147.5,-38,0,0,-0.132282 -50238,5314:487:1,-147,-38,0,0,-0.13268 -50239,5314:486:2,-146.5,-38,0,0,-0.131853 -50240,5314:486:1,-146,-38,0,0,-0.129858 -50241,5314:485:2,-145.5,-38,0,0,-0.127962 -50242,5314:485:1,-145,-38,0,0,-0.125782 -50243,5314:384:2,-144.5,-38,0,0,-0.124075 -50244,5314:384:1,-144,-38,0,0,-0.124661 -50245,5314:383:2,-143.5,-38,0,0,-0.126253 -50246,5314:383:1,-143,-38,0,0,-0.127136 -50247,5314:382:2,-142.5,-38,0,0,-0.127484 -50248,5314:382:1,-142,-38,0,0,-0.127421 -50249,5314:381:2,-141.5,-38,0,0,-0.125096 -50250,5314:381:1,-141,-38,0,0,-0.121576 -50251,5314:380:2,-140.5,-38,0,0,-0.120646 -50252,5314:380:1,-140,-38,0,0,-0.124259 -50253,5313:489:2,-139.5,-38,0,0,-0.124724 -50254,5313:489:1,-139,-38,0,0,-0.123184 -50255,5313:488:2,-138.5,-38,0,0,-0.122211 -50256,5313:488:1,-138,-38,0,0,-0.120228 -50257,5313:487:2,-137.5,-38,0,0,-0.117874 -50258,5313:487:1,-137,-38,0,0,-0.115229 -50259,5313:486:2,-136.5,-38,0,0,-0.112511 -50260,5313:486:1,-136,-38,0,0,-0.111438 -50261,5313:485:2,-135.5,-38,0,0,-0.111246 -50262,5313:485:1,-135,-38,0,0,-0.11122 -50263,5313:384:2,-134.5,-38,0,0,-0.11081 -50264,5313:384:1,-134,-38,0,0,-0.108392 -50265,5313:383:2,-133.5,-38,0,0,-0.104439 -50266,5313:383:1,-133,-38,0,0,-0.102947 -50267,5313:382:2,-132.5,-38,0,0,-0.104899 -50268,5313:382:1,-132,-38,0,0,-0.106682 -50269,5313:381:2,-131.5,-38,0,0,-0.10781 -50270,5313:381:1,-131,-38,0,0,-0.110106 -50271,5313:380:2,-130.5,-38,0,0,-0.112843 -50272,5313:380:1,-130,-38,0,0,-0.113875 -50273,5312:489:2,-129.5,-38,0,0,-0.113316 -50274,5312:489:1,-129,-38,0,0,-0.111712 -50275,5312:488:2,-128.5,-38,0,0,-0.109971 -50276,5312:488:1,-128,-38,0,0,-0.108419 -50277,5312:487:2,-127.5,-38,0,0,-0.107074 -50278,5312:487:1,-127,-38,0,0,-0.105747 -50279,5312:486:2,-126.5,-38,0,0,-0.104439 -50280,5312:486:1,-126,-38,0,0,-0.103173 -50281,5312:485:2,-125.5,-38,0,0,-0.101676 -50282,5312:485:1,-125,-38,0,0,-0.0999109 -50283,5312:384:2,-124.5,-38,0,0,-0.0979414 -50284,5312:384:1,-124,-38,0,0,-0.096154 -50285,5312:383:2,-123.5,-38,0,0,-0.094814 -50286,5312:383:1,-123,-38,0,0,-0.09406 -50287,5312:382:2,-122.5,-38,0,0,-0.0941509 -50288,5312:382:1,-122,-38,0,0,-0.0946762 -50289,5312:381:2,-121.5,-38,0,0,-0.0954349 -50290,5312:381:1,-121,-38,0,0,-0.098993 -50291,5312:380:2,-120.5,-38,0,0,-0.100447 -50292,5312:380:1,-120,-38,0,0,-0.0999354 -50293,5311:489:2,-119.5,-38,0,0,-0.0953426 -50294,5311:489:1,-119,-38,0,0,-0.0928412 -50295,5311:488:2,-118.5,-38,0,0,-0.0910005 -50296,5311:488:1,-118,-38,0,0,-0.0889853 -50297,5311:487:2,-117.5,-38,0,0,-0.0869762 -50298,5311:487:1,-117,-38,0,0,-0.0849955 -50299,5311:486:2,-116.5,-38,0,0,-0.0835819 -50300,5311:486:1,-116,-38,0,0,-0.0835618 -50301,5311:485:2,-115.5,-38,0,0,-0.0848328 -50302,5311:485:1,-115,-38,0,0,-0.0853014 -50303,5311:384:2,-114.5,-38,0,0,-0.0836223 -50304,5311:384:1,-114,-38,0,0,-0.0802726 -50305,5311:383:2,-113.5,-38,0,0,-0.0752923 -50306,5311:383:1,-113,-38,0,0,-0.0717359 -50307,5311:382:2,-112.5,-38,0,0,-0.0713972 -50308,5311:382:1,-112,-38,0,0,-0.0727628 -50309,5311:381:2,-111.5,-38,0,0,-0.0757046 -50310,5311:381:1,-111,-38,0,0,-0.0816844 -50311,5311:380:2,-110.5,-38,0,0,-0.0780641 -50312,5311:380:1,-110,-38,0,0,-0.0721446 -50313,5310:489:2,-109.5,-38,0,0,-0.0706239 -50314,5310:489:1,-109,-38,0,0,-0.0693991 -50315,5310:488:2,-108.5,-38,0,0,-0.0679082 -50316,5310:488:1,-108,-38,0,0,-0.066435 -50317,5310:487:2,-107.5,-38,0,0,-0.0653337 -50318,5310:487:1,-107,-38,0,0,-0.0653492 -50319,5310:486:2,-106.5,-38,0,0,-0.0664666 -50320,5310:486:1,-106,-38,0,0,-0.067191 -50321,5310:485:2,-105.5,-38,0,0,-0.0666235 -50322,5310:485:1,-105,-38,0,0,-0.065673 -50323,5310:384:2,-104.5,-38,0,0,-0.0645693 -50324,5310:384:1,-104,-38,0,0,-0.0632626 -50325,5310:383:2,-103.5,-38,0,0,-0.0621145 -50326,5310:383:1,-103,-38,0,0,-0.0611029 -50327,5310:382:2,-102.5,-38,0,0,-0.0604193 -50328,5310:382:1,-102,-38,0,0,-0.0602356 -50329,5310:381:2,-101.5,-38,0,0,-0.0603347 -50330,5310:381:1,-101,-38,0,0,-0.0605755 -50331,5310:380:2,-100.5,-38,0,0,-0.0607603 -50332,5310:380:1,-100,-38,0,0,-0.0609457 -50333,5309:489:2,-99.5,-38,0,0,-0.0610601 -50334,5309:489:1,-99,-38,0,0,-0.0605045 -50335,5309:488:2,-98.5,-38,0,0,-0.0592702 -50336,5309:488:1,-98,-38,0,0,-0.0579951 -50337,5309:487:2,-97.5,-38,0,0,-0.0570273 -50338,5309:487:1,-97,-38,0,0,-0.0564577 -50339,5309:486:2,-96.5,-38,0,0,-0.056077 -50340,5309:486:1,-96,-38,0,0,-0.0561817 -50341,5309:485:2,-95.5,-38,0,0,-0.0574554 -50342,5309:485:1,-95,-38,0,0,-0.0577651 -50343,5309:384:2,-94.5,-38,0,0,-0.0584033 -50344,5309:384:1,-94,-38,0,0,-0.0577112 -50345,5309:383:2,-93.5,-38,0,0,-0.056537 -50346,5309:383:1,-93,-38,0,0,-0.0560638 -50347,5309:382:2,-92.5,-38,0,0,-0.0559988 -50348,5309:382:1,-92,-38,0,0,-0.0547844 -50349,5309:381:2,-91.5,-38,0,0,-0.0567484 -50350,5309:381:1,-91,-38,0,0,-0.0601513 -50351,5309:380:2,-90.5,-38,0,0,-0.0592148 -50352,5309:380:1,-90,-38,0,0,-0.0584441 -50353,5308:489:2,-89.5,-38,0,0,-0.0643117 -50354,5308:489:1,-89,-38,0,0,-0.064676 -50355,5308:488:2,-88.5,-38,0,0,-0.0607886 -50356,5308:488:1,-88,-38,0,0,-0.057603 -50357,5308:487:2,-87.5,-38,0,0,-0.056908 -50358,5308:487:1,-87,-38,0,0,-0.0584304 -50359,5308:486:2,-86.5,-38,0,0,-0.0566293 -50360,5308:486:1,-86,-38,0,0,-0.0552977 -50361,5308:485:2,-85.5,-38,0,0,-0.0579 -50362,5308:485:1,-85,-38,0,0,-0.0599821 -50363,5308:384:2,-84.5,-38,0,0,-0.0596602 -50364,5308:384:1,-84,-38,0,0,-0.0578055 -50365,5308:383:2,-83.5,-38,0,0,-0.0563922 -50366,5308:383:1,-83,-38,0,0,-0.0614621 -50367,5308:382:2,-82.5,-38,0,0,-0.0630548 -50368,5308:382:1,-82,-38,0,0,-0.0625826 -50369,5308:381:2,-81.5,-38,0,0,-0.0636503 -50370,5308:381:1,-81,-38,0,0,-0.0675405 -50371,5308:380:2,-80.5,-38,0,0,-0.0690886 -50372,5308:380:1,-80,-38,0,0,-0.0693665 -50373,5307:489:2,-79.5,-38,0,0,-0.070191 -50374,5307:489:1,-79,-38,0,0,-0.0706407 -50375,5307:488:2,-78.5,-38,0,0,-0.0695634 -50376,5307:488:1,-78,-38,0,0,-0.0680202 -50377,5307:487:2,-77.5,-38,0,0,-0.0669064 -50378,5307:487:1,-77,-38,0,0,-0.0657037 -50379,5307:486:2,-76.5,-38,0,0,-0.0695634 -50380,5307:486:1,-76,-38,0,0,-0.0786807 -50381,5307:485:2,-75.5,-38,0,0,-0.0788681 -50382,5307:485:1,-75,-38,0,0,-0.0888136 -50383,5306:485:2,-65.5,-38,0,0,-0.109031 -50384,5306:485:1,-65,-38,0,0,-0.0947678 -50385,5306:384:2,-64.5,-38,0,0,-0.0876895 -50386,5306:384:1,-64,-38,0,0,-0.0765553 -50387,5306:383:2,-63.5,-38,0,0,-0.0722302 -50388,5306:383:1,-63,-38,0,0,-0.0713297 -50389,5306:382:2,-62.5,-38,0,0,-0.0710597 -50390,5306:382:1,-62,-38,0,0,-0.0714478 -50391,5306:381:2,-61.5,-38,0,0,-0.0750243 -50392,5306:381:1,-61,-38,0,0,-0.0784933 -50393,5306:380:2,-60.5,-38,0,0,-0.0742977 -50394,5306:380:1,-60,-38,0,0,-0.066891 -50395,5305:489:2,-59.5,-38,0,0,-0.0555434 -50396,5305:489:1,-59,-38,0,0,-0.0440679 -50397,5305:488:2,-58.5,-38,0,0,-0.0416875 -50398,5305:488:1,-58,-38,0,0,-0.0448993 -50399,5305:487:2,-57.5,-38,0,0,-0.0454314 -50400,5305:487:1,-57,-38,0,0,-0.0458743 -50401,5305:486:2,-56.5,-38,0,0,-0.046893 -50402,5305:486:1,-56,-38,0,0,-0.0494582 -50403,5305:485:2,-55.5,-38,0,0,-0.0554916 -50404,5305:485:1,-55,-38,0,0,-0.0607316 -50405,5305:384:2,-54.5,-38,0,0,-0.0644179 -50406,5305:384:1,-54,-38,0,0,-0.0691867 -50407,5305:383:2,-53.5,-38,0,0,-0.0744033 -50408,5305:383:1,-53,-38,0,0,-0.0898457 -50409,5305:382:2,-52.5,-38,0,0,-0.094814 -50410,5305:382:1,-52,-38,0,0,-0.09406 -50411,5305:381:2,-51.5,-38,0,0,-0.0994755 -50412,5305:381:1,-51,-38,0,0,-0.12793 -50413,5305:380:2,-50.5,-38,0,0,-0.135333 -50414,5305:380:1,-50,-38,0,0,-0.129891 -50415,5304:489:2,-49.5,-38,0,0,-0.119605 -50416,5304:489:1,-49,-38,0,0,-0.0949975 -50417,5304:488:2,-48.5,-38,0,0,-0.0764281 -50418,5304:488:1,-48,-38,0,0,-0.0778975 -50419,5304:487:2,-47.5,-38,0,0,-0.0826671 -50420,5304:487:1,-47,-38,0,0,-0.0838027 -50421,5304:486:2,-46.5,-38,0,0,-0.078176 -50422,5304:486:1,-46,-38,0,0,-0.0741918 -50423,5304:485:2,-45.5,-38,0,0,-0.0724703 -50424,5304:485:1,-45,-38,0,0,-0.0712622 -50425,5304:384:2,-44.5,-38,0,0,-0.0702077 -50426,5304:384:1,-44,-38,0,0,-0.0684389 -50427,5304:383:2,-43.5,-38,0,0,-0.0664976 -50428,5304:383:1,-43,-38,0,0,-0.0667962 -50429,5304:382:2,-42.5,-38,0,0,-0.0674929 -50430,5304:382:1,-42,-38,0,0,-0.0673498 -50431,5304:381:2,-41.5,-38,0,0,-0.0661695 -50432,5304:381:1,-41,-38,0,0,-0.0653952 -50433,5304:380:2,-40.5,-38,0,0,-0.0648895 -50434,5304:380:1,-40,-38,0,0,-0.0641761 -50435,5303:489:2,-39.5,-38,0,0,-0.0629807 -50436,5303:489:1,-39,-38,0,0,-0.0616065 -50437,5303:488:2,-38.5,-38,0,0,-0.0604478 -50438,5303:488:1,-38,-38,0,0,-0.0595065 -50439,5303:487:2,-37.5,-38,0,0,-0.0581579 -50440,5303:487:1,-37,-38,0,0,-0.0569611 -50441,5303:486:2,-36.5,-38,0,0,-0.0562866 -50442,5303:486:1,-36,-38,0,0,-0.0549635 -50443,5303:485:2,-35.5,-38,0,0,-0.0519293 -50444,5303:485:1,-35,-38,0,0,-0.0453789 -50445,5303:384:2,-34.5,-38,0,0,-0.0385722 -50446,5303:384:1,-34,-38,0,0,-0.0347391 -50447,5303:383:2,-33.5,-38,0,0,-0.0343286 -50448,5303:383:1,-33,-38,0,0,-0.033561 -50449,5303:382:2,-32.5,-38,0,0,-0.0331951 -50450,5303:382:1,-32,-38,0,0,-0.0332025 -50451,5303:381:2,-31.5,-38,0,0,-0.0328858 -50452,5303:381:1,-31,-38,0,0,-0.0324313 -50453,5303:380:2,-30.5,-38,0,0,-0.0324758 -50454,5303:380:1,-30,-38,0,0,-0.0330892 -50455,5302:489:2,-29.5,-38,0,0,-0.0336223 -50456,5302:489:1,-29,-38,0,0,-0.0335378 -50457,5302:488:2,-28.5,-38,0,0,-0.0322986 -50458,5302:488:1,-28,-38,0,0,-0.0308663 -50459,5302:487:2,-27.5,-38,0,0,-0.0304752 -50460,5302:487:1,-27,-38,0,0,-0.0322469 -50461,5302:486:2,-26.5,-38,0,0,-0.0378447 -50462,5302:486:1,-26,-38,0,0,-0.0385987 -50463,5302:485:2,-25.5,-38,0,0,-0.0365492 -50464,5302:485:1,-25,-38,0,0,-0.0359022 -50465,5302:384:2,-24.5,-38,0,0,-0.0365157 -50466,5302:384:1,-24,-38,0,0,-0.0357956 -50467,5302:383:2,-23.5,-38,0,0,-0.0346834 -50468,5302:383:1,-23,-38,0,0,-0.0330136 -50469,5302:382:2,-22.5,-38,0,0,-0.0311914 -50470,5302:382:1,-22,-38,0,0,-0.0308945 -50471,5302:381:2,-21.5,-38,0,0,-0.0327138 -50472,5302:381:1,-21,-38,0,0,-0.0372678 -50473,5302:380:2,-20.5,-38,0,0,-0.0432424 -50474,5302:380:1,-20,-38,0,0,-0.0452742 -50475,5301:489:2,-19.5,-38,0,0,-0.0408238 -50476,5301:489:1,-19,-38,0,0,-0.0361332 -50477,5301:488:2,-18.5,-38,0,0,-0.0376456 -50478,5301:488:1,-18,-38,0,0,-0.0449927 -50479,5301:487:2,-17.5,-38,0,0,-0.0484373 -50480,5301:487:1,-17,-38,0,0,-0.047991 -50481,5301:486:2,-16.5,-38,0,0,-0.0455257 -50482,5301:486:1,-16,-38,0,0,-0.0392509 -50483,5301:485:2,-15.5,-38,0,0,-0.0326317 -50484,5301:485:1,-15,-38,0,0,-0.0334002 -50485,5301:384:2,-14.5,-38,0,0,-0.0323647 -50486,5301:384:1,-14,-38,0,0,-0.0313053 -50487,5301:383:2,-13.5,-38,0,0,-0.0303919 -50488,5301:383:1,-13,-38,0,0,-0.0290666 -50489,5301:382:2,-12.5,-38,0,0,-0.0270903 -50490,5301:382:1,-12,-38,0,0,-0.0261544 -50491,5301:381:2,-11.5,-38,0,0,-0.0262732 -50492,5301:381:1,-11,-38,0,0,-0.0260715 -50493,5301:380:2,-10.5,-38,0,0,-0.0248658 -50494,5301:380:1,-10,-38,0,0,-0.0232339 -50495,5300:489:2,-9.5,-38,0,0,-0.0219283 -50496,5300:489:1,-9,-38,0,0,-0.0215991 -50497,5300:488:2,-8.5,-38,0,0,-0.0222776 -50498,5300:488:1,-8,-38,0,0,-0.024636 -50499,5300:487:2,-7.5,-38,0,0,-0.0270657 -50500,5300:487:1,-7,-38,0,0,-0.030144 -50501,5300:486:2,-6.5,-38,0,0,-0.0328858 -50502,5300:486:1,-6,-38,0,0,-0.0361663 -50503,5300:485:2,-5.5,-38,0,0,-0.0419764 -50504,5300:485:1,-5,-38,0,0,-0.0405993 -50505,5300:384:2,-4.5,-38,0,0,-0.0415823 -50506,5300:384:1,-4,-38,0,0,-0.039814 -50507,5300:383:2,-3.5,-38,0,0,-0.0372251 -50508,5300:383:1,-3,-38,0,0,-0.0361744 -50509,5300:382:2,-2.5,-38,0,0,-0.0351063 -50510,5300:382:1,-2,-38,0,0,-0.0345409 -50511,5300:381:2,-1.5,-38,0,0,-0.0345332 -50512,5300:381:1,-1,-38,0,0,-0.035219 -50513,5300:380:2,-0.5,-38,0,0,-0.036928 -50514,3300:380:2,0,-38,0,0,-0.0370464 -50515,3300:380:2,0.5,-38,0,0,-0.0389635 -50516,3300:381:1,1,-38,0,0,-0.0402646 -50517,3300:381:2,1.5,-38,0,0,-0.0381233 -50518,3300:382:1,2,-38,0,0,-0.0341955 -50519,3300:382:2,2.5,-38,0,0,-0.0351868 -50520,3300:383:1,3,-38,0,0,-0.0391158 -50521,3300:383:2,3.5,-38,0,0,-0.0380884 -50522,3300:384:1,4,-38,0,0,-0.0365576 -50523,3300:384:2,4.5,-38,0,0,-0.0318595 -50524,3300:485:1,5,-38,0,0,-0.0291128 -50525,3300:485:2,5.5,-38,0,0,-0.0278131 -50526,3300:486:1,6,-38,0,0,-0.0256205 -50527,3300:486:2,6.5,-38,0,0,-0.0240466 -50528,3300:487:1,7,-38,0,0,-0.0239597 -50529,3300:487:2,7.5,-38,0,0,-0.0241611 -50530,3300:488:1,8,-38,0,0,-0.0224291 -50531,3300:488:2,8.5,-38,0,0,-0.0194668 -50532,3300:489:1,9,-38,0,0,-0.0188372 -50533,3300:489:2,9.5,-38,0,0,-0.0205301 -50534,3301:380:1,10,-38,0,0,-0.0245026 -50535,3301:380:2,10.5,-38,0,0,-0.0287184 -50536,3301:381:1,11,-38,0,0,-0.0326913 -50537,3301:381:2,11.5,-38,0,0,-0.0340084 -50538,3301:382:1,12,-38,0,0,-0.0320271 -50539,3301:382:2,12.5,-38,0,0,-0.0300619 -50540,3301:383:1,13,-38,0,0,-0.0287055 -50541,3301:383:2,13.5,-38,0,0,-0.0276243 -50542,3301:384:1,14,-38,0,0,-0.025632 -50543,3301:384:2,14.5,-38,0,0,-0.0239488 -50544,3301:485:1,15,-38,0,0,-0.0234821 -50545,3301:485:2,15.5,-38,0,0,-0.0234928 -50546,3301:486:1,16,-38,0,0,-0.0231448 -50547,3301:486:2,16.5,-38,0,0,-0.0224088 -50548,3301:487:1,17,-38,0,0,-0.0218838 -50549,3301:487:2,17.5,-38,0,0,-0.0222878 -50550,3301:488:1,18,-38,0,0,-0.0283488 -50551,3301:488:2,18.5,-38,0,0,-0.0279714 -50552,3301:489:1,19,-38,0,0,-0.0282524 -50553,3301:489:2,19.5,-38,0,0,-0.0283425 -50554,3302:380:1,20,-38,0,0,-0.0290005 -50555,3302:380:2,20.5,-38,0,0,-0.0297555 -50556,3302:381:1,21,-38,0,0,-0.0304682 -50557,3302:381:2,21.5,-38,0,0,-0.0301235 -50558,3302:382:1,22,-38,0,0,-0.0272072 -50559,3302:382:2,22.5,-38,0,0,-0.0238192 -50560,3302:383:1,23,-38,0,0,-0.0204884 -50561,3302:383:2,23.5,-38,0,0,-0.018999 -50562,3302:384:1,24,-38,0,0,-0.0195327 -50563,3302:384:2,24.5,-38,0,0,-0.0214727 -50564,3302:485:1,25,-38,0,0,-0.0256378 -50565,3302:485:2,25.5,-38,0,0,-0.0275053 -50566,3302:486:1,26,-38,0,0,-0.0273683 -50567,3302:486:2,26.5,-38,0,0,-0.0262912 -50568,3302:487:1,27,-38,0,0,-0.0257427 -50569,3302:487:2,27.5,-38,0,0,-0.0270167 -50570,3302:488:1,28,-38,0,0,-0.0279207 -50571,3302:488:2,28.5,-38,0,0,-0.0263031 -50572,3302:489:1,29,-38,0,0,-0.0254642 -50573,3302:489:2,29.5,-38,0,0,-0.0260479 -50574,3303:380:1,30,-38,0,0,-0.0298573 -50575,3303:380:2,30.5,-38,0,0,-0.037758 -50576,3303:381:1,31,-38,0,0,-0.0436631 -50577,3303:381:2,31.5,-38,0,0,-0.0453265 -50578,3303:382:1,32,-38,0,0,-0.0448165 -50579,3303:382:2,32.5,-38,0,0,-0.0447546 -50580,3303:383:1,33,-38,0,0,-0.042443 -50581,3303:383:2,33.5,-38,0,0,-0.0374476 -50582,3303:384:1,34,-38,0,0,-0.0274243 -50583,3303:384:2,34.5,-38,0,0,-0.0210125 -50584,3303:485:1,35,-38,0,0,-0.0193226 -50585,3303:485:2,35.5,-38,0,0,-0.0193705 -50586,3303:486:1,36,-38,0,0,-0.0195459 -50587,3303:486:2,36.5,-38,0,0,-0.0200635 -50588,3303:487:1,37,-38,0,0,-0.0211888 -50589,3303:487:2,37.5,-38,0,0,-0.0224799 -50590,3303:488:1,38,-38,0,0,-0.0228898 -50591,3303:488:2,38.5,-38,0,0,-0.0219728 -50592,3303:489:1,39,-38,0,0,-0.0209133 -50593,3303:489:2,39.5,-38,0,0,-0.0207675 -50594,3304:380:1,40,-38,0,0,-0.0209605 -50595,3304:380:2,40.5,-38,0,0,-0.0213568 -50596,3304:381:1,41,-38,0,0,-0.0214872 -50597,3304:381:2,41.5,-38,0,0,-0.0216332 -50598,3304:382:1,42,-38,0,0,-0.0228796 -50599,3304:382:2,42.5,-38,0,0,-0.0254527 -50600,3304:383:1,43,-38,0,0,-0.0268821 -50601,3304:383:2,43.5,-38,0,0,-0.0264586 -50602,3304:384:1,44,-38,0,0,-0.0252173 -50603,3304:384:2,44.5,-38,0,0,-0.0239759 -50604,3304:485:1,45,-38,0,0,-0.0233656 -50605,3304:485:2,45.5,-38,0,0,-0.0235141 -50606,3304:486:1,46,-38,0,0,-0.023965 -50607,3304:486:2,46.5,-38,0,0,-0.0241666 -50608,3304:487:1,47,-38,0,0,-0.0236152 -50609,3304:487:2,47.5,-38,0,0,-0.0222374 -50610,3304:488:1,48,-38,0,0,-0.0205858 -50611,3304:488:2,48.5,-38,0,0,-0.0196253 -50612,3304:489:1,49,-38,0,0,-0.0199867 -50613,3304:489:2,49.5,-38,0,0,-0.0206136 -50614,3305:380:1,50,-38,0,0,-0.0208708 -50615,3305:380:2,50.5,-38,0,0,-0.0210221 -50616,3305:381:1,51,-38,0,0,-0.0211697 -50617,3305:381:2,51.5,-38,0,0,-0.0213471 -50618,3305:382:1,52,-38,0,0,-0.0217312 -50619,3305:382:2,52.5,-38,0,0,-0.0226174 -50620,3305:383:1,53,-38,0,0,-0.0232655 -50621,3305:383:2,53.5,-38,0,0,-0.0233656 -50622,3305:384:1,54,-38,0,0,-0.0235939 -50623,3305:384:2,54.5,-38,0,0,-0.0268577 -50624,3305:485:1,55,-38,0,0,-0.0289085 -50625,3305:485:2,55.5,-38,0,0,-0.02815 -50626,3305:486:1,56,-38,0,0,-0.0236902 -50627,3305:486:2,56.5,-38,0,0,-0.020852 -50628,3305:487:1,57,-38,0,0,-0.0229417 -50629,3305:487:2,57.5,-38,0,0,-0.0235034 -50630,3305:488:1,58,-38,0,0,-0.0229781 -50631,3305:488:2,58.5,-38,0,0,-0.0221923 -50632,3305:489:1,59,-38,0,0,-0.0222123 -50633,3305:489:2,59.5,-38,0,0,-0.0245748 -50634,3306:380:1,60,-38,0,0,-0.0263568 -50635,3306:380:2,60.5,-38,0,0,-0.0279207 -50636,3306:381:1,61,-38,0,0,-0.0250523 -50637,3306:381:2,61.5,-38,0,0,-0.0192098 -50638,3306:382:1,62,-38,0,0,-0.0186013 -50639,3306:382:2,62.5,-38,0,0,-0.0193793 -50640,3306:383:1,63,-38,0,0,-0.0196474 -50641,3306:383:2,63.5,-38,0,0,-0.0196253 -50642,3306:384:1,64,-38,0,0,-0.0189562 -50643,3306:384:2,64.5,-38,0,0,-0.0174385 -50644,3306:485:1,65,-38,0,0,-0.0188967 -50645,3306:485:2,65.5,-38,0,0,-0.0226276 -50646,3306:486:1,66,-38,0,0,-0.0240683 -50647,3306:486:2,66.5,-38,0,0,-0.0231554 -50648,3306:487:1,67,-38,0,0,-0.0214389 -50649,3306:487:2,67.5,-38,0,0,-0.0205533 -50650,3306:488:1,68,-38,0,0,-0.020424 -50651,3306:488:2,68.5,-38,0,0,-0.0199013 -50652,3306:489:1,69,-38,0,0,-0.0200635 -50653,3306:489:2,69.5,-38,0,0,-0.0204608 -50654,3307:380:1,70,-38,0,0,-0.0201768 -50655,3307:380:2,70.5,-38,0,0,-0.0189008 -50656,3307:381:1,71,-38,0,0,-0.0164194 -50657,3307:381:2,71.5,-38,0,0,-0.0154608 -50658,3307:382:1,72,-38,0,0,-0.015709 -50659,3307:382:2,72.5,-38,0,0,-0.0169821 -50660,3307:383:2,73.5,-38,0,0,-0.02047 -50661,3307:384:1,74,-38,0,0,-0.0236902 -50662,3307:384:2,74.5,-38,0,0,-0.0255856 -50663,3307:485:1,75,-38,0,0,-0.0264887 -50664,3307:485:2,75.5,-38,0,0,-0.0269492 -50665,3307:486:1,76,-38,0,0,-0.0270226 -50666,3307:486:2,76.5,-38,0,0,-0.0259066 -50667,3307:487:1,77,-38,0,0,-0.0253375 -50668,3307:487:2,77.5,-38,0,0,-0.0251887 -50669,3307:488:1,78,-38,0,0,-0.0252402 -50670,3307:488:2,78.5,-38,0,0,-0.0294859 -50671,3307:489:1,79,-38,0,0,-0.0357956 -50672,3307:489:2,79.5,-38,0,0,-0.0371996 -50673,3308:380:1,80,-38,0,0,-0.037594 -50674,3308:380:2,80.5,-38,0,0,-0.039504 -50675,3308:381:1,81,-38,0,0,-0.040965 -50676,3308:381:2,81.5,-38,0,0,-0.0401262 -50677,3308:382:1,82,-38,0,0,-0.0389278 -50678,3308:382:2,82.5,-38,0,0,-0.0395857 -50679,3308:383:1,83,-38,0,0,-0.04419 -50680,3308:383:2,83.5,-38,0,0,-0.0477248 -50681,3308:384:1,84,-38,0,0,-0.0453578 -50682,3308:384:2,84.5,-38,0,0,-0.0397041 -50683,3308:485:1,85,-38,0,0,-0.0439764 -50684,3308:485:2,85.5,-38,0,0,-0.0435526 -50685,3308:486:1,86,-38,0,0,-0.0465471 -50686,3308:486:2,86.5,-38,0,0,-0.0546062 -50687,3308:487:1,87,-38,0,0,-0.0585673 -50688,3308:487:2,87.5,-38,0,0,-0.0599542 -50689,3308:488:1,88,-38,0,0,-0.0610313 -50690,3308:488:2,88.5,-38,0,0,-0.0617076 -50691,3308:489:1,89,-38,0,0,-0.0610029 -50692,3308:489:2,89.5,-38,0,0,-0.0590489 -50693,3309:380:1,90,-38,0,0,-0.0566955 -50694,3309:380:2,90.5,-38,0,0,-0.0572677 -50695,3309:381:1,91,-38,0,0,-0.0561161 -50696,3309:381:2,91.5,-38,0,0,-0.0548995 -50697,3309:382:1,92,-38,0,0,-0.05007 -50698,3309:382:2,92.5,-38,0,0,-0.0411443 -50699,3309:383:1,93,-38,0,0,-0.0394135 -50700,3309:383:2,93.5,-38,0,0,-0.0405899 -50701,3309:384:1,94,-38,0,0,-0.0407394 -50702,3309:384:2,94.5,-38,0,0,-0.0396132 -50703,3309:485:1,95,-38,0,0,-0.0362078 -50704,3309:485:2,95.5,-38,0,0,-0.0343676 -50705,3309:486:1,96,-38,0,0,-0.0331572 -50706,3309:486:2,96.5,-38,0,0,-0.0323501 -50707,3309:487:1,97,-38,0,0,-0.0320929 -50708,3309:487:2,97.5,-38,0,0,-0.0323427 -50709,3309:488:1,98,-38,0,0,-0.0321222 -50710,3309:488:2,98.5,-38,0,0,-0.0322101 -50711,3309:489:1,99,-38,0,0,-0.0311986 -50712,3309:489:2,99.5,-38,0,0,-0.0292655 -50713,3310:380:1,100,-38,0,0,-0.0282781 -50714,3310:380:2,100.5,-38,0,0,-0.0298912 -50715,3310:381:1,101,-38,0,0,-0.0318595 -50716,3310:381:2,101.5,-38,0,0,-0.0322543 -50717,3310:382:1,102,-38,0,0,-0.0325722 -50718,3310:382:2,102.5,-38,0,0,-0.0315417 -50719,3310:383:1,103,-38,0,0,-0.0310992 -50720,3310:383:2,103.5,-38,0,0,-0.0321514 -50721,3310:384:1,104,-38,0,0,-0.0340784 -50722,3310:384:2,104.5,-38,0,0,-0.0355832 -50723,3310:485:1,105,-38,0,0,-0.0356566 -50724,3310:485:2,105.5,-38,0,0,-0.0345252 -50725,3310:486:1,106,-38,0,0,-0.0334538 -50726,3310:486:2,106.5,-38,0,0,-0.03462 -50727,3310:487:1,107,-38,0,0,-0.0383691 -50728,3310:487:2,107.5,-38,0,0,-0.0407769 -50729,3310:488:1,108,-38,0,0,-0.0384132 -50730,3310:488:2,108.5,-38,0,0,-0.0362159 -50731,3310:489:1,109,-38,0,0,-0.0339307 -50732,3310:489:2,109.5,-38,0,0,-0.0396221 -50733,3311:380:1,110,-38,0,0,-0.0418704 -50734,3311:380:2,110.5,-38,0,0,-0.0425702 -50735,3311:381:1,111,-38,0,0,-0.0441085 -50736,3311:381:2,111.5,-38,0,0,-0.0475704 -50737,3311:382:1,112,-38,0,0,-0.0577651 -50738,3311:382:2,112.5,-38,0,0,-0.0653797 -50739,3311:383:1,113,-38,0,0,-0.0660607 -50740,3311:383:2,113.5,-38,0,0,-0.0610029 -50741,3311:384:1,114,-38,0,0,-0.0533493 -50742,3311:384:2,114.5,-38,0,0,-0.0538358 -50743,3311:485:1,115,-38,0,0,-0.0530275 -50744,3311:485:2,115.5,-38,0,0,-0.0535235 -50745,3311:486:1,116,-38,0,0,-0.0557248 -50746,3311:486:2,116.5,-38,0,0,-0.058335 -50747,3311:487:1,117,-38,0,0,-0.0596321 -50748,3311:487:2,117.5,-38,0,0,-0.0589246 -50749,3311:488:1,118,-38,0,0,-0.059884 -50750,3311:488:2,118.5,-38,0,0,-0.0619253 -50751,3311:489:1,119,-38,0,0,-0.0642213 -50752,3311:489:2,119.5,-38,0,0,-0.0671436 -50753,3312:380:1,120,-38,0,0,-0.0701581 -50754,3312:380:2,120.5,-38,0,0,-0.0694977 -50755,3312:381:1,121,-38,0,0,-0.0624214 -50756,3312:381:2,121.5,-38,0,0,-0.054479 -50757,3312:382:1,122,-38,0,0,-0.0514608 -50758,3312:382:2,122.5,-38,0,0,-0.0530892 -50759,3312:383:1,123,-38,0,0,-0.0559203 -50760,3312:383:2,123.5,-38,0,0,-0.0609026 -50761,3312:384:1,124,-38,0,0,-0.0665608 -50762,3312:384:2,124.5,-38,0,0,-0.0650271 -50763,3312:485:1,125,-38,0,0,-0.0595065 -50764,3312:485:2,125.5,-38,0,0,-0.0497345 -50765,3312:486:1,126,-38,0,0,-0.0492637 -50766,3312:486:2,126.5,-38,0,0,-0.0517003 -50767,3312:487:1,127,-38,0,0,-0.0620705 -50768,3312:487:2,127.5,-38,0,0,-0.0742977 -50769,3312:488:1,128,-38,0,0,-0.0799098 -50770,3312:488:2,128.5,-38,0,0,-0.0791889 -50771,3312:489:1,129,-38,0,0,-0.0782505 -50772,3312:489:2,129.5,-38,0,0,-0.0776381 -50773,3313:380:1,130,-38,0,0,-0.0763372 -50774,3313:380:2,130.5,-38,0,0,-0.0748109 -50775,3313:381:1,131,-38,0,0,-0.0744739 -50776,3313:381:2,131.5,-38,0,0,-0.075579 -50777,3313:382:1,132,-38,0,0,-0.0769939 -50778,3313:382:2,132.5,-38,0,0,-0.0773611 -50779,3313:383:1,133,-38,0,0,-0.0766832 -50780,3313:383:2,133.5,-38,0,0,-0.0756689 -50781,3313:384:1,134,-38,0,0,-0.0727802 -50782,3313:384:2,134.5,-38,0,0,-0.0697116 -50783,3313:485:1,135,-38,0,0,-0.0686172 -50784,3313:485:2,135.5,-38,0,0,-0.0697941 -50785,3313:486:1,136,-38,0,0,-0.0719742 -50786,3313:486:2,136.5,-38,0,0,-0.0761198 -50787,3313:487:1,137,-38,0,0,-0.0785121 -50788,3313:487:2,137.5,-38,0,0,-0.076174 -50789,3313:488:1,138,-38,0,0,-0.0743327 -50790,3313:488:2,138.5,-38,0,0,-0.0710264 -50791,3313:489:1,139,-38,0,0,-0.0678759 -50792,3313:489:2,139.5,-38,0,0,-0.0669854 -50793,3314:380:1,140,-38,0,0,-0.0707076 -50794,3314:380:2,140.5,-38,0,0,-0.0758128 -50795,3314:381:1,141,-38,0,0,-0.0810626 -50796,3314:381:2,141.5,-38,0,0,-0.0887074 -50797,3314:382:1,142,-38,0,0,-0.0879426 -50798,3314:382:2,142.5,-38,0,0,-0.0862686 -50799,3314:383:1,143,-38,0,0,-0.0883877 -50800,3314:383:2,143.5,-38,0,0,-0.0907591 -50801,3314:384:1,144,-38,0,0,-0.0942878 -50802,3314:384:2,144.5,-38,0,0,-0.0978465 -50803,3314:485:1,145,-38,0,0,-0.098897 -50804,3314:485:2,145.5,-38,0,0,-0.095759 -50805,3314:486:1,146,-38,0,0,-0.0898457 -50806,3314:486:2,146.5,-38,0,0,-0.0791889 -50807,3314:487:1,147,-38,0,0,-0.0739108 -50808,3314:487:2,147.5,-38,0,0,-0.0737355 -50809,3314:488:1,148,-38,0,0,-0.0725563 -50810,3314:488:2,148.5,-38,0,0,-0.0708415 -50811,3314:489:1,149,-38,0,0,-0.0694977 -50812,3314:489:2,149.5,-38,0,0,-0.0682292 -50813,3315:380:1,150,-38,0,0,-0.0710597 -50814,3315:380:2,150.5,-38,0,0,-0.0742273 -50815,3315:381:1,151,-38,0,0,-0.0735606 -50816,3315:381:2,151.5,-38,0,0,-0.0743683 -50817,3315:382:1,152,-38,0,0,-0.0885792 -50818,3315:382:2,152.5,-38,0,0,-0.112732 -50819,3315:383:1,153,-38,0,0,-0.0923936 -50820,3315:383:2,153.5,-38,0,0,-0.078887 -50821,3315:384:1,154,-38,0,0,-0.0811785 -50822,3315:384:2,154.5,-38,0,0,-0.0890278 -50823,3315:485:1,155,-38,0,0,-0.092461 -50824,3315:485:2,155.5,-38,0,0,-0.0919043 -50825,3315:486:1,156,-38,0,0,-0.0899111 -50826,3315:486:2,156.5,-38,0,0,-0.0875629 -50827,3315:487:1,157,-38,0,0,-0.0835618 -50828,3315:487:2,157.5,-38,0,0,-0.078176 -50829,3315:488:1,158,-38,0,0,-0.0770857 -50830,3315:488:2,158.5,-38,0,0,-0.07934 -50831,3315:489:1,159,-38,0,0,-0.0795673 -50832,3315:489:2,159.5,-38,0,0,-0.0792454 -50833,3316:380:1,160,-38,0,0,-0.080753 -50834,3316:380:2,160.5,-38,0,0,-0.0836418 -50835,3316:381:1,161,-38,0,0,-0.0863723 -50836,3316:381:2,161.5,-38,0,0,-0.0853014 -50837,3316:382:1,162,-38,0,0,-0.083402 -50838,3316:382:2,162.5,-38,0,0,-0.0848731 -50839,3316:383:1,163,-38,0,0,-0.0856499 -50840,3316:383:2,163.5,-38,0,0,-0.0858973 -50841,3316:384:1,164,-38,0,0,-0.0890493 -50842,3316:384:2,164.5,-38,0,0,-0.0887283 -50843,3316:485:1,165,-38,0,0,-0.0875629 -50844,3316:485:2,165.5,-38,0,0,-0.083024 -50845,3316:486:1,166,-38,0,0,-0.0835618 -50846,3316:486:2,166.5,-38,0,0,-0.0930652 -50847,3316:487:1,167,-38,0,0,-0.0921489 -50848,3316:487:2,167.5,-38,0,0,-0.0932004 -50849,3316:488:1,168,-38,0,0,-0.0865801 -50850,3316:488:2,168.5,-38,0,0,-0.0786996 -50851,3316:489:1,169,-38,0,0,-0.0736133 -50852,3316:489:2,169.5,-38,0,0,-0.0703076 -50853,3317:380:1,170,-38,0,0,-0.0649808 -50854,3317:380:2,170.5,-38,0,0,-0.061419 -50855,3317:381:1,171,-38,0,0,-0.0595206 -50856,3317:381:2,171.5,-38,0,0,-0.0581442 -50857,3317:382:1,172,-38,0,0,-0.057603 -50858,3317:382:2,172.5,-38,0,0,-0.0574955 -50859,3317:383:1,173,-38,0,0,-0.0574017 -50860,3317:383:2,173.5,-38,0,0,-0.0571743 -50861,3317:384:1,174,-38,0,0,-0.0568812 -50862,3317:384:2,174.5,-38,0,0,-0.0562866 -50863,3317:485:1,175,-38,0,0,-0.0554526 -50864,3317:485:2,175.5,-38,0,0,-0.0549506 -50865,3317:486:1,176,-38,0,0,-0.0554526 -50866,3317:486:2,176.5,-38,0,0,-0.0579409 -50867,3317:487:1,177,-38,0,0,-0.0604193 -50868,3317:487:2,177.5,-38,0,0,-0.0614766 -50869,3317:488:1,178,-38,0,0,-0.0621728 -50870,3317:488:2,178.5,-38,0,0,-0.0623333 -50871,3317:489:1,179,-38,0,0,-0.0622749 -50872,3317:489:2,179.5,-38,0,0,-0.0628184 -50873,3318:380:1,180,-38,0,0,-0.0620563 -50874,5318:370:3,-180,-37.5,0,0,-0.059021 -50875,5317:479:4,-179.5,-37.5,0,0,-0.0543143 -50876,5317:479:3,-179,-37.5,0,0,-0.0513533 -50877,5317:478:4,-178.5,-37.5,0,0,-0.0517484 -50878,5317:478:3,-178,-37.5,0,0,-0.0692192 -50879,5317:477:4,-177.5,-37.5,0,0,-0.0810041 -50880,5317:477:3,-177,-37.5,0,0,-0.0845485 -50881,5317:476:4,-176.5,-37.5,0,0,-0.0881118 -50882,5317:476:3,-176,-37.5,0,0,-0.0905412 -50883,5317:475:4,-175.5,-37.5,0,0,-0.092796 -50884,5317:475:3,-175,-37.5,0,0,-0.0939462 -50885,5317:374:4,-174.5,-37.5,0,0,-0.0872898 -50886,5317:374:3,-174,-37.5,0,0,-0.0848731 -50887,5317:373:4,-173.5,-37.5,0,0,-0.0902361 -50888,5317:373:3,-173,-37.5,0,0,-0.0901056 -50889,5317:372:4,-172.5,-37.5,0,0,-0.089436 -50890,5317:372:3,-172,-37.5,0,0,-0.0877313 -50891,5317:371:4,-171.5,-37.5,0,0,-0.0838027 -50892,5317:371:3,-171,-37.5,0,0,-0.0835423 -50893,5317:370:4,-170.5,-37.5,0,0,-0.0885363 -50894,5317:370:3,-170,-37.5,0,0,-0.11767 -50895,5316:479:4,-169.5,-37.5,0,0,-0.13605 -50896,5316:479:3,-169,-37.5,0,0,-0.13605 -50897,5316:478:4,-168.5,-37.5,0,0,-0.13605 -50898,5316:478:3,-168,-37.5,0,0,-0.129988 -50899,5316:477:4,-167.5,-37.5,0,0,-0.111821 -50900,5316:477:3,-167,-37.5,0,0,-0.105747 -50901,5316:476:4,-166.5,-37.5,0,0,-0.110892 -50902,5316:476:3,-166,-37.5,0,0,-0.122059 -50903,5316:475:4,-165.5,-37.5,0,0,-0.127739 -50904,5316:475:3,-165,-37.5,0,0,-0.126977 -50905,5316:374:4,-164.5,-37.5,0,0,-0.125532 -50906,5316:374:3,-164,-37.5,0,0,-0.121456 -50907,5316:373:4,-163.5,-37.5,0,0,-0.112289 -50908,5316:373:3,-163,-37.5,0,0,-0.104006 -50909,5316:372:4,-162.5,-37.5,0,0,-0.102272 -50910,5316:372:3,-162,-37.5,0,0,-0.107546 -50911,5316:371:4,-161.5,-37.5,0,0,-0.117786 -50912,5316:371:3,-161,-37.5,0,0,-0.127802 -50913,5316:370:4,-160.5,-37.5,0,0,-0.127104 -50914,5316:370:3,-160,-37.5,0,0,-0.122696 -50915,5315:479:4,-159.5,-37.5,0,0,-0.121576 -50916,5315:479:3,-159,-37.5,0,0,-0.122332 -50917,5315:478:4,-158.5,-37.5,0,0,-0.124848 -50918,5315:478:3,-158,-37.5,0,0,-0.126409 -50919,5315:477:4,-157.5,-37.5,0,0,-0.127516 -50920,5315:477:3,-157,-37.5,0,0,-0.128922 -50921,5315:476:4,-156.5,-37.5,0,0,-0.131097 -50922,5315:476:3,-156,-37.5,0,0,-0.134285 -50923,5315:475:4,-155.5,-37.5,0,0,-0.134386 -50924,5315:475:3,-155,-37.5,0,0,-0.133882 -50925,5315:374:4,-154.5,-37.5,0,0,-0.133949 -50926,5315:374:3,-154,-37.5,0,0,-0.134386 -50927,5315:373:4,-153.5,-37.5,0,0,-0.134352 -50928,5315:373:3,-153,-37.5,0,0,-0.133046 -50929,5315:372:4,-152.5,-37.5,0,0,-0.130934 -50930,5315:372:3,-152,-37.5,0,0,-0.130704 -50931,5315:371:4,-151.5,-37.5,0,0,-0.135468 -50932,5315:371:3,-151,-37.5,0,0,-0.13605 -50933,5315:370:4,-150.5,-37.5,0,0,-0.13605 -50934,5315:370:3,-150,-37.5,0,0,-0.13605 -50935,5314:479:4,-149.5,-37.5,0,0,-0.135673 -50936,5314:479:3,-149,-37.5,0,0,-0.13557 -50937,5314:478:4,-148.5,-37.5,0,0,-0.135975 -50938,5314:478:3,-148,-37.5,0,0,-0.13605 -50939,5314:477:4,-147.5,-37.5,0,0,-0.13605 -50940,5314:477:3,-147,-37.5,0,0,-0.13605 -50941,5314:476:4,-146.5,-37.5,0,0,-0.135992 -50942,5314:476:3,-146,-37.5,0,0,-0.135027 -50943,5314:475:4,-145.5,-37.5,0,0,-0.131985 -50944,5314:475:3,-145,-37.5,0,0,-0.128698 -50945,5314:374:4,-144.5,-37.5,0,0,-0.12793 -50946,5314:374:3,-144,-37.5,0,0,-0.13064 -50947,5314:373:4,-143.5,-37.5,0,0,-0.133781 -50948,5314:373:3,-143,-37.5,0,0,-0.134791 -50949,5314:372:4,-142.5,-37.5,0,0,-0.134184 -50950,5314:372:3,-142,-37.5,0,0,-0.132614 -50951,5314:371:4,-141.5,-37.5,0,0,-0.129374 -50952,5314:371:3,-141,-37.5,0,0,-0.126253 -50953,5314:370:4,-140.5,-37.5,0,0,-0.127675 -50954,5314:370:3,-140,-37.5,0,0,-0.13278 -50955,5313:479:4,-139.5,-37.5,0,0,-0.133379 -50956,5313:479:3,-139,-37.5,0,0,-0.129794 -50957,5313:478:4,-138.5,-37.5,0,0,-0.126945 -50958,5313:478:3,-138,-37.5,0,0,-0.123767 -50959,5313:477:4,-137.5,-37.5,0,0,-0.120946 -50960,5313:477:3,-137,-37.5,0,0,-0.118869 -50961,5313:476:4,-136.5,-37.5,0,0,-0.117758 -50962,5313:476:3,-136,-37.5,0,0,-0.117874 -50963,5313:475:4,-135.5,-37.5,0,0,-0.118283 -50964,5313:475:3,-135,-37.5,0,0,-0.117845 -50965,5313:374:4,-134.5,-37.5,0,0,-0.116486 -50966,5313:374:3,-134,-37.5,0,0,-0.114352 -50967,5313:373:4,-133.5,-37.5,0,0,-0.111274 -50968,5313:373:3,-133,-37.5,0,0,-0.108765 -50969,5313:372:4,-132.5,-37.5,0,0,-0.108605 -50970,5313:372:3,-132,-37.5,0,0,-0.110376 -50971,5313:371:4,-131.5,-37.5,0,0,-0.112566 -50972,5313:371:3,-131,-37.5,0,0,-0.112594 -50973,5313:370:4,-130.5,-37.5,0,0,-0.112954 -50974,5313:370:3,-130,-37.5,0,0,-0.115656 -50975,5312:479:4,-129.5,-37.5,0,0,-0.118107 -50976,5312:479:3,-129,-37.5,0,0,-0.118927 -50977,5312:478:4,-128.5,-37.5,0,0,-0.117467 -50978,5312:478:3,-128,-37.5,0,0,-0.115513 -50979,5312:477:4,-127.5,-37.5,0,0,-0.113847 -50980,5312:477:3,-127,-37.5,0,0,-0.113093 -50981,5312:476:4,-126.5,-37.5,0,0,-0.113205 -50982,5312:476:3,-126,-37.5,0,0,-0.113679 -50983,5312:475:4,-125.5,-37.5,0,0,-0.113484 -50984,5312:475:3,-125,-37.5,0,0,-0.112566 -50985,5312:374:4,-124.5,-37.5,0,0,-0.110919 -50986,5312:374:3,-124,-37.5,0,0,-0.109245 -50987,5312:373:4,-123.5,-37.5,0,0,-0.108605 -50988,5312:373:3,-123,-37.5,0,0,-0.108339 -50989,5312:372:4,-122.5,-37.5,0,0,-0.109112 -50990,5312:372:3,-122,-37.5,0,0,-0.10826 -50991,5312:371:4,-121.5,-37.5,0,0,-0.109917 -50992,5312:371:3,-121,-37.5,0,0,-0.112705 -50993,5312:370:4,-120.5,-37.5,0,0,-0.110485 -50994,5312:370:3,-120,-37.5,0,0,-0.105027 -50995,5311:479:4,-119.5,-37.5,0,0,-0.100691 -50996,5311:479:3,-119,-37.5,0,0,-0.100398 -50997,5311:478:4,-118.5,-37.5,0,0,-0.0978704 -50998,5311:478:3,-118,-37.5,0,0,-0.0956198 -50999,5311:477:4,-117.5,-37.5,0,0,-0.0942197 -51000,5311:477:3,-117,-37.5,0,0,-0.0928412 -51001,5311:476:4,-116.5,-37.5,0,0,-0.0921042 -51002,5311:476:3,-116,-37.5,0,0,-0.093426 -51003,5311:475:4,-115.5,-37.5,0,0,-0.0955739 -51004,5311:475:3,-115,-37.5,0,0,-0.094379 -51005,5311:374:4,-114.5,-37.5,0,0,-0.0909349 -51006,5311:374:3,-114,-37.5,0,0,-0.0874788 -51007,5311:373:4,-113.5,-37.5,0,0,-0.0839026 -51008,5311:373:3,-113,-37.5,0,0,-0.0804072 -51009,5311:372:4,-112.5,-37.5,0,0,-0.0785492 -51010,5311:372:3,-112,-37.5,0,0,-0.0791129 -51011,5311:371:4,-111.5,-37.5,0,0,-0.0841642 -51012,5311:371:3,-111,-37.5,0,0,-0.0871849 -51013,5311:370:4,-110.5,-37.5,0,0,-0.081101 -51014,5311:370:3,-110,-37.5,0,0,-0.0760475 -51015,5310:479:4,-109.5,-37.5,0,0,-0.0750602 -51016,5310:479:3,-109,-37.5,0,0,-0.0730048 -51017,5310:478:4,-108.5,-37.5,0,0,-0.0714478 -51018,5310:478:3,-108,-37.5,0,0,-0.0712787 -51019,5310:477:4,-107.5,-37.5,0,0,-0.0712452 -51020,5310:477:3,-107,-37.5,0,0,-0.0708583 -51021,5310:476:4,-106.5,-37.5,0,0,-0.0707244 -51022,5310:476:3,-106,-37.5,0,0,-0.0703573 -51023,5310:475:4,-105.5,-37.5,0,0,-0.069695 -51024,5310:475:3,-105,-37.5,0,0,-0.068844 -51025,5310:374:4,-104.5,-37.5,0,0,-0.0677802 -51026,5310:374:3,-104,-37.5,0,0,-0.0666077 -51027,5310:373:4,-103.5,-37.5,0,0,-0.0652722 -51028,5310:373:3,-103,-37.5,0,0,-0.0642969 -51029,5310:372:4,-102.5,-37.5,0,0,-0.0646305 -51030,5310:372:3,-102,-37.5,0,0,-0.0653027 -51031,5310:371:4,-101.5,-37.5,0,0,-0.0651187 -51032,5310:371:3,-101,-37.5,0,0,-0.064767 -51033,5310:370:4,-100.5,-37.5,0,0,-0.0649198 -51034,5310:370:3,-100,-37.5,0,0,-0.0655184 -51035,5309:479:4,-99.5,-37.5,0,0,-0.0656886 -51036,5309:479:3,-99,-37.5,0,0,-0.0648434 -51037,5309:478:4,-98.5,-37.5,0,0,-0.0633071 -51038,5309:478:3,-98,-37.5,0,0,-0.0616352 -51039,5309:477:4,-97.5,-37.5,0,0,-0.0602214 -51040,5309:477:3,-97,-37.5,0,0,-0.0594789 -51041,5309:476:4,-96.5,-37.5,0,0,-0.0595065 -51042,5309:476:3,-96,-37.5,0,0,-0.0611602 -51043,5309:475:4,-95.5,-37.5,0,0,-0.0637247 -51044,5309:475:3,-95,-37.5,0,0,-0.0624066 -51045,5309:374:4,-94.5,-37.5,0,0,-0.0620123 -51046,5309:374:3,-94,-37.5,0,0,-0.0613039 -51047,5309:373:4,-93.5,-37.5,0,0,-0.0598981 -51048,5309:373:3,-93,-37.5,0,0,-0.0589524 -51049,5309:372:4,-92.5,-37.5,0,0,-0.0607316 -51050,5309:372:3,-92,-37.5,0,0,-0.0600383 -51051,5309:371:4,-91.5,-37.5,0,0,-0.0600945 -51052,5309:371:3,-91,-37.5,0,0,-0.0630399 -51053,5309:370:4,-90.5,-37.5,0,0,-0.0612465 -51054,5309:370:3,-90,-37.5,0,0,-0.0632327 -51055,5308:479:4,-89.5,-37.5,0,0,-0.0678441 -51056,5308:479:3,-89,-37.5,0,0,-0.0687305 -51057,5308:478:4,-88.5,-37.5,0,0,-0.0685361 -51058,5308:478:3,-88,-37.5,0,0,-0.0633071 -51059,5308:477:4,-87.5,-37.5,0,0,-0.0603628 -51060,5308:477:3,-87,-37.5,0,0,-0.0620416 -51061,5308:476:4,-86.5,-37.5,0,0,-0.0614766 -51062,5308:476:3,-86,-37.5,0,0,-0.0628919 -51063,5308:475:4,-85.5,-37.5,0,0,-0.0645239 -51064,5308:475:3,-85,-37.5,0,0,-0.0630548 -51065,5308:374:4,-84.5,-37.5,0,0,-0.0608173 -51066,5308:374:3,-84,-37.5,0,0,-0.0593813 -51067,5308:373:4,-83.5,-37.5,0,0,-0.0618527 -51068,5308:373:3,-83,-37.5,0,0,-0.0665919 -51069,5308:372:4,-82.5,-37.5,0,0,-0.0683424 -51070,5308:372:3,-82,-37.5,0,0,-0.0661543 -51071,5308:371:4,-81.5,-37.5,0,0,-0.0671277 -51072,5308:371:3,-81,-37.5,0,0,-0.0683906 -51073,5308:370:4,-80.5,-37.5,0,0,-0.0703406 -51074,5308:370:3,-80,-37.5,0,0,-0.0730915 -51075,5307:479:4,-79.5,-37.5,0,0,-0.0742445 -51076,5307:479:3,-79,-37.5,0,0,-0.074722 -51077,5307:478:4,-78.5,-37.5,0,0,-0.0743683 -51078,5307:478:3,-78,-37.5,0,0,-0.0714137 -51079,5307:477:4,-77.5,-37.5,0,0,-0.0693175 -51080,5307:477:3,-77,-37.5,0,0,-0.0685035 -51081,5307:476:4,-76.5,-37.5,0,0,-0.0730566 -51082,5307:476:3,-76,-37.5,0,0,-0.0800816 -51083,5307:475:4,-75.5,-37.5,0,0,-0.0843256 -51084,5307:475:3,-75,-37.5,0,0,-0.0812951 -51085,5307:374:4,-74.5,-37.5,0,0,-0.0887713 -51086,5306:475:4,-65.5,-37.5,0,0,-0.128185 -51087,5306:475:3,-65,-37.5,0,0,-0.103804 -51088,5306:374:4,-64.5,-37.5,0,0,-0.094814 -51089,5306:374:3,-64,-37.5,0,0,-0.0869131 -51090,5306:373:4,-63.5,-37.5,0,0,-0.0821151 -51091,5306:373:3,-63,-37.5,0,0,-0.0790755 -51092,5306:372:4,-62.5,-37.5,0,0,-0.0786058 -51093,5306:372:3,-62,-37.5,0,0,-0.0770672 -51094,5306:371:4,-61.5,-37.5,0,0,-0.077953 -51095,5306:371:3,-61,-37.5,0,0,-0.0818603 -51096,5306:370:4,-60.5,-37.5,0,0,-0.0782693 -51097,5306:370:3,-60,-37.5,0,0,-0.0686172 -51098,5305:479:4,-59.5,-37.5,0,0,-0.0554399 -51099,5305:479:3,-59,-37.5,0,0,-0.0450863 -51100,5305:478:4,-58.5,-37.5,0,0,-0.0462147 -51101,5305:478:3,-58,-37.5,0,0,-0.0483925 -51102,5305:477:4,-57.5,-37.5,0,0,-0.051389 -51103,5305:477:3,-57,-37.5,0,0,-0.0561161 -51104,5305:476:4,-56.5,-37.5,0,0,-0.0573747 -51105,5305:476:3,-56,-37.5,0,0,-0.0572142 -51106,5305:475:4,-55.5,-37.5,0,0,-0.0635755 -51107,5305:475:3,-55,-37.5,0,0,-0.0708251 -51108,5305:374:4,-54.5,-37.5,0,0,-0.074971 -51109,5305:374:3,-54,-37.5,0,0,-0.0804453 -51110,5305:373:4,-53.5,-37.5,0,0,-0.086124 -51111,5305:373:3,-53,-37.5,0,0,-0.0895649 -51112,5305:372:4,-52.5,-37.5,0,0,-0.0910661 -51113,5305:372:3,-52,-37.5,0,0,-0.0949513 -51114,5305:371:4,-51.5,-37.5,0,0,-0.112954 -51115,5305:371:3,-51,-37.5,0,0,-0.13605 -51116,5305:370:4,-50.5,-37.5,0,0,-0.13605 -51117,5305:370:3,-50,-37.5,0,0,-0.13605 -51118,5304:479:4,-49.5,-37.5,0,0,-0.134588 -51119,5304:479:3,-49,-37.5,0,0,-0.106447 -51120,5304:478:4,-48.5,-37.5,0,0,-0.084064 -51121,5304:478:3,-48,-37.5,0,0,-0.0858765 -51122,5304:477:4,-47.5,-37.5,0,0,-0.0871013 -51123,5304:477:3,-47,-37.5,0,0,-0.0864552 -51124,5304:476:4,-46.5,-37.5,0,0,-0.0813924 -51125,5304:476:3,-46,-37.5,0,0,-0.0787557 -51126,5304:475:4,-45.5,-37.5,0,0,-0.0787179 -51127,5304:475:3,-45,-37.5,0,0,-0.078887 -51128,5304:374:4,-44.5,-37.5,0,0,-0.0786241 -51129,5304:374:3,-44,-37.5,0,0,-0.0727975 -51130,5304:373:4,-43.5,-37.5,0,0,-0.0670013 -51131,5304:373:3,-43,-37.5,0,0,-0.0674133 -51132,5304:372:4,-42.5,-37.5,0,0,-0.0679082 -51133,5304:372:3,-42,-37.5,0,0,-0.0678441 -51134,5304:371:4,-41.5,-37.5,0,0,-0.0675245 -51135,5304:371:3,-41,-37.5,0,0,-0.0662009 -51136,5304:370:4,-40.5,-37.5,0,0,-0.0652263 -51137,5304:370:3,-40,-37.5,0,0,-0.0635454 -51138,5303:479:4,-39.5,-37.5,0,0,-0.0617947 -51139,5303:479:3,-39,-37.5,0,0,-0.0606891 -51140,5303:478:4,-38.5,-37.5,0,0,-0.059884 -51141,5303:478:3,-38,-37.5,0,0,-0.0596044 -51142,5303:477:4,-37.5,-37.5,0,0,-0.0593813 -51143,5303:477:3,-37,-37.5,0,0,-0.0590489 -51144,5303:476:4,-36.5,-37.5,0,0,-0.0585811 -51145,5303:476:3,-36,-37.5,0,0,-0.0574689 -51146,5303:475:4,-35.5,-37.5,0,0,-0.055079 -51147,5303:475:3,-35,-37.5,0,0,-0.0498613 -51148,5303:374:4,-34.5,-37.5,0,0,-0.0421312 -51149,5303:374:3,-34,-37.5,0,0,-0.0371569 -51150,5303:373:4,-33.5,-37.5,0,0,-0.0372936 -51151,5303:373:3,-33,-37.5,0,0,-0.0375079 -51152,5303:372:4,-32.5,-37.5,0,0,-0.0367338 -51153,5303:372:3,-32,-37.5,0,0,-0.0349462 -51154,5303:371:4,-31.5,-37.5,0,0,-0.0334995 -51155,5303:371:3,-31,-37.5,0,0,-0.0332178 -51156,5303:370:4,-30.5,-37.5,0,0,-0.0337684 -51157,5303:370:3,-30,-37.5,0,0,-0.0348503 -51158,5302:479:4,-29.5,-37.5,0,0,-0.0382811 -51159,5302:479:3,-29,-37.5,0,0,-0.0425113 -51160,5302:478:4,-28.5,-37.5,0,0,-0.0423452 -51161,5302:478:3,-28,-37.5,0,0,-0.039188 -51162,5302:477:4,-27.5,-37.5,0,0,-0.0352431 -51163,5302:477:3,-27,-37.5,0,0,-0.0347071 -51164,5302:476:4,-26.5,-37.5,0,0,-0.0381498 -51165,5302:476:3,-26,-37.5,0,0,-0.0395314 -51166,5302:475:4,-25.5,-37.5,0,0,-0.0380013 -51167,5302:475:3,-25,-37.5,0,0,-0.0367927 -51168,5302:374:4,-24.5,-37.5,0,0,-0.0393774 -51169,5302:374:3,-24,-37.5,0,0,-0.0427866 -51170,5302:373:4,-23.5,-37.5,0,0,-0.0395131 -51171,5302:373:3,-23,-37.5,0,0,-0.035681 -51172,5302:372:4,-22.5,-37.5,0,0,-0.0358611 -51173,5302:372:3,-22,-37.5,0,0,-0.038211 -51174,5302:371:4,-21.5,-37.5,0,0,-0.0448578 -51175,5302:371:3,-21,-37.5,0,0,-0.0539611 -51176,5302:370:4,-20.5,-37.5,0,0,-0.0578868 -51177,5302:370:3,-20,-37.5,0,0,-0.0533864 -51178,5301:479:4,-19.5,-37.5,0,0,-0.0427866 -51179,5301:479:3,-19,-37.5,0,0,-0.0370381 -51180,5301:478:4,-18.5,-37.5,0,0,-0.0434623 -51181,5301:478:3,-18,-37.5,0,0,-0.0506898 -51182,5301:477:4,-17.5,-37.5,0,0,-0.0486285 -51183,5301:477:3,-17,-37.5,0,0,-0.0466981 -51184,5301:476:4,-16.5,-37.5,0,0,-0.0427965 -51185,5301:476:3,-16,-37.5,0,0,-0.0341719 -51186,5301:475:4,-15.5,-37.5,0,0,-0.0355264 -51187,5301:475:3,-15,-37.5,0,0,-0.0347628 -51188,5301:374:4,-14.5,-37.5,0,0,-0.0323647 -51189,5301:374:3,-14,-37.5,0,0,-0.031384 -51190,5301:373:4,-13.5,-37.5,0,0,-0.0302745 -51191,5301:373:3,-13,-37.5,0,0,-0.0284909 -51192,5301:372:4,-12.5,-37.5,0,0,-0.0276243 -51193,5301:372:3,-12,-37.5,0,0,-0.0283553 -51194,5301:371:4,-11.5,-37.5,0,0,-0.0297555 -51195,5301:371:3,-11,-37.5,0,0,-0.030482 -51196,5301:370:4,-10.5,-37.5,0,0,-0.0305516 -51197,5301:370:3,-10,-37.5,0,0,-0.0294794 -51198,5300:479:4,-9.5,-37.5,0,0,-0.027618 -51199,5300:479:3,-9,-37.5,0,0,-0.0266212 -51200,5300:478:4,-8.5,-37.5,0,0,-0.0261841 -51201,5300:478:3,-8,-37.5,0,0,-0.0264407 -51202,5300:477:4,-7.5,-37.5,0,0,-0.0276494 -51203,5300:477:3,-7,-37.5,0,0,-0.0285752 -51204,5300:476:4,-6.5,-37.5,0,0,-0.0300139 -51205,5300:476:3,-6,-37.5,0,0,-0.0355589 -51206,5300:475:4,-5.5,-37.5,0,0,-0.0434024 -51207,5300:475:3,-5,-37.5,0,0,-0.0436431 -51208,5300:374:4,-4.5,-37.5,0,0,-0.0410309 -51209,5300:374:3,-4,-37.5,0,0,-0.0407677 -51210,5300:373:4,-3.5,-37.5,0,0,-0.0418992 -51211,5300:373:3,-3,-37.5,0,0,-0.0437037 -51212,5300:372:4,-2.5,-37.5,0,0,-0.0452534 -51213,5300:372:3,-2,-37.5,0,0,-0.0450968 -51214,5300:371:4,-1.5,-37.5,0,0,-0.0437942 -51215,5300:371:3,-1,-37.5,0,0,-0.0424722 -51216,5300:370:4,-0.5,-37.5,0,0,-0.0400247 -51217,3300:370:4,0,-37.5,0,0,-0.0363571 -51218,3300:370:4,0.5,-37.5,0,0,-0.035575 -51219,3300:371:3,1,-37.5,0,0,-0.0395314 -51220,3300:371:4,1.5,-37.5,0,0,-0.0462362 -51221,3300:372:3,2,-37.5,0,0,-0.0449512 -51222,3300:372:4,2.5,-37.5,0,0,-0.0418895 -51223,3300:373:3,3,-37.5,0,0,-0.0406926 -51224,3300:373:4,3.5,-37.5,0,0,-0.040965 -51225,3300:374:3,4,-37.5,0,0,-0.0400522 -51226,3300:374:4,4.5,-37.5,0,0,-0.0384573 -51227,3300:475:3,5,-37.5,0,0,-0.0366581 -51228,3300:475:4,5.5,-37.5,0,0,-0.0345804 -51229,3300:476:3,6,-37.5,0,0,-0.0322395 -51230,3300:476:4,6.5,-37.5,0,0,-0.0301097 -51231,3300:477:3,7,-37.5,0,0,-0.0287577 -51232,3300:477:4,7.5,-37.5,0,0,-0.0283168 -51233,3300:478:3,8,-37.5,0,0,-0.0277879 -51234,3300:478:4,8.5,-37.5,0,0,-0.0268029 -51235,3300:479:3,9,-37.5,0,0,-0.0266212 -51236,3300:479:4,9.5,-37.5,0,0,-0.0282395 -51237,3301:370:3,10,-37.5,0,0,-0.0312911 -51238,3301:370:4,10.5,-37.5,0,0,-0.0364739 -51239,3301:371:3,11,-37.5,0,0,-0.0387406 -51240,3301:371:4,11.5,-37.5,0,0,-0.0367844 -51241,3301:372:3,12,-37.5,0,0,-0.0332178 -51242,3301:372:4,12.5,-37.5,0,0,-0.0302264 -51243,3301:373:3,13,-37.5,0,0,-0.028725 -51244,3301:373:4,13.5,-37.5,0,0,-0.0281244 -51245,3301:374:3,14,-37.5,0,0,-0.0273683 -51246,3301:374:4,14.5,-37.5,0,0,-0.0264226 -51247,3301:475:3,15,-37.5,0,0,-0.0264826 -51248,3301:475:4,15.5,-37.5,0,0,-0.0274368 -51249,3301:476:3,16,-37.5,0,0,-0.0283295 -51250,3301:476:4,16.5,-37.5,0,0,-0.0280161 -51251,3301:477:3,17,-37.5,0,0,-0.0262376 -51252,3301:477:4,17.5,-37.5,0,0,-0.0239001 -51253,3301:478:3,18,-37.5,0,0,-0.0290005 -51254,3301:478:4,18.5,-37.5,0,0,-0.0286597 -51255,3301:479:3,19,-37.5,0,0,-0.0280861 -51256,3301:479:4,19.5,-37.5,0,0,-0.0289545 -51257,3302:370:3,20,-37.5,0,0,-0.0300412 -51258,3302:370:4,20.5,-37.5,0,0,-0.0311204 -51259,3302:371:3,21,-37.5,0,0,-0.032071 -51260,3302:371:4,21.5,-37.5,0,0,-0.0324609 -51261,3302:372:3,22,-37.5,0,0,-0.0292854 -51262,3302:372:4,22.5,-37.5,0,0,-0.0263986 -51263,3302:373:3,23,-37.5,0,0,-0.0237977 -51264,3302:373:4,23.5,-37.5,0,0,-0.0230666 -51265,3302:374:3,24,-37.5,0,0,-0.0257019 -51266,3302:374:4,24.5,-37.5,0,0,-0.0332102 -51267,3302:475:3,25,-37.5,0,0,-0.0375165 -51268,3302:475:4,25.5,-37.5,0,0,-0.0379926 -51269,3302:476:3,26,-37.5,0,0,-0.0365241 -51270,3302:476:4,26.5,-37.5,0,0,-0.0330063 -51271,3302:477:3,27,-37.5,0,0,-0.0289545 -51272,3302:477:4,27.5,-37.5,0,0,-0.0285039 -51273,3302:478:3,28,-37.5,0,0,-0.029973 -51274,3302:478:4,28.5,-37.5,0,0,-0.0304543 -51275,3302:479:3,29,-37.5,0,0,-0.0312555 -51276,3302:479:4,29.5,-37.5,0,0,-0.0391249 -51277,3303:370:3,30,-37.5,0,0,-0.0477913 -51278,3303:370:4,30.5,-37.5,0,0,-0.0437237 -51279,3303:371:3,31,-37.5,0,0,-0.0431728 -51280,3303:371:4,31.5,-37.5,0,0,-0.0443842 -51281,3303:372:3,32,-37.5,0,0,-0.0442719 -51282,3303:372:4,32.5,-37.5,0,0,-0.0435627 -51283,3303:373:3,33,-37.5,0,0,-0.0424722 -51284,3303:373:4,33.5,-37.5,0,0,-0.0414292 -51285,3303:374:3,34,-37.5,0,0,-0.0382021 -51286,3303:374:4,34.5,-37.5,0,0,-0.0325945 -51287,3303:475:3,35,-37.5,0,0,-0.0276431 -51288,3303:475:4,35.5,-37.5,0,0,-0.0253549 -51289,3303:476:3,36,-37.5,0,0,-0.0248433 -51290,3303:476:4,36.5,-37.5,0,0,-0.025807 -51291,3303:477:3,37,-37.5,0,0,-0.0279017 -51292,3303:477:4,37.5,-37.5,0,0,-0.0304335 -51293,3303:478:3,38,-37.5,0,0,-0.0291128 -51294,3303:478:4,38.5,-37.5,0,0,-0.0266392 -51295,3303:479:3,39,-37.5,0,0,-0.0243037 -51296,3303:479:4,39.5,-37.5,0,0,-0.0220623 -51297,3304:370:3,40,-37.5,0,0,-0.0208897 -51298,3304:370:4,40.5,-37.5,0,0,-0.0209653 -51299,3304:371:3,41,-37.5,0,0,-0.021795 -51300,3304:371:4,41.5,-37.5,0,0,-0.0241721 -51301,3304:372:3,42,-37.5,0,0,-0.028067 -51302,3304:372:4,42.5,-37.5,0,0,-0.0309437 -51303,3304:373:3,43,-37.5,0,0,-0.0312696 -51304,3304:373:4,43.5,-37.5,0,0,-0.0307259 -51305,3304:374:3,44,-37.5,0,0,-0.0298097 -51306,3304:374:4,44.5,-37.5,0,0,-0.0289348 -51307,3304:475:3,45,-37.5,0,0,-0.0285948 -51308,3304:475:4,45.5,-37.5,0,0,-0.0287511 -51309,3304:476:3,46,-37.5,0,0,-0.0290269 -51310,3304:476:4,46.5,-37.5,0,0,-0.0289215 -51311,3304:477:3,47,-37.5,0,0,-0.0279271 -51312,3304:477:4,47.5,-37.5,0,0,-0.0259418 -51313,3304:478:3,48,-37.5,0,0,-0.023733 -51314,3304:478:4,48.5,-37.5,0,0,-0.0221623 -51315,3304:479:3,49,-37.5,0,0,-0.021565 -51316,3304:479:4,49.5,-37.5,0,0,-0.0215552 -51317,3305:370:3,50,-37.5,0,0,-0.0217165 -51318,3305:370:4,50.5,-37.5,0,0,-0.0218788 -51319,3305:371:3,51,-37.5,0,0,-0.0219928 -51320,3305:371:4,51.5,-37.5,0,0,-0.021958 -51321,3305:372:3,52,-37.5,0,0,-0.0217803 -51322,3305:372:4,52.5,-37.5,0,0,-0.0216479 -51323,3305:373:3,53,-37.5,0,0,-0.0218838 -51324,3305:373:4,53.5,-37.5,0,0,-0.0226174 -51325,3305:374:3,54,-37.5,0,0,-0.0233604 -51326,3305:374:4,54.5,-37.5,0,0,-0.0279842 -51327,3305:475:3,55,-37.5,0,0,-0.0304613 -51328,3305:475:4,55.5,-37.5,0,0,-0.030698 -51329,3305:476:3,56,-37.5,0,0,-0.0253549 -51330,3305:476:4,56.5,-37.5,0,0,-0.0229676 -51331,3305:477:3,57,-37.5,0,0,-0.0242817 -51332,3305:477:4,57.5,-37.5,0,0,-0.0254353 -51333,3305:478:3,58,-37.5,0,0,-0.0261071 -51334,3305:478:4,58.5,-37.5,0,0,-0.0267483 -51335,3305:479:3,59,-37.5,0,0,-0.0275992 -51336,3305:479:4,59.5,-37.5,0,0,-0.0286989 -51337,3306:370:3,60,-37.5,0,0,-0.0297285 -51338,3306:370:4,60.5,-37.5,0,0,-0.0328483 -51339,3306:371:3,61,-37.5,0,0,-0.035429 -51340,3306:371:4,61.5,-37.5,0,0,-0.0274119 -51341,3306:372:3,62,-37.5,0,0,-0.020595 -51342,3306:372:4,62.5,-37.5,0,0,-0.0199913 -51343,3306:373:3,63,-37.5,0,0,-0.0208285 -51344,3306:373:4,63.5,-37.5,0,0,-0.0216381 -51345,3306:374:3,64,-37.5,0,0,-0.0221223 -51346,3306:374:4,64.5,-37.5,0,0,-0.0196341 -51347,3306:475:3,65,-37.5,0,0,-0.0182693 -51348,3306:475:4,65.5,-37.5,0,0,-0.0224393 -51349,3306:476:3,66,-37.5,0,0,-0.0250012 -51350,3306:476:4,66.5,-37.5,0,0,-0.0236848 -51351,3306:477:3,67,-37.5,0,0,-0.0227713 -51352,3306:477:4,67.5,-37.5,0,0,-0.0222024 -51353,3306:478:3,68,-37.5,0,0,-0.0221223 -51354,3306:478:4,68.5,-37.5,0,0,-0.0220923 -51355,3306:479:3,69,-37.5,0,0,-0.0219036 -51356,3306:479:4,69.5,-37.5,0,0,-0.0214389 -51357,3307:370:3,70,-37.5,0,0,-0.0203459 -51358,3307:370:4,70.5,-37.5,0,0,-0.018327 -51359,3307:371:3,71,-37.5,0,0,-0.0170012 -51360,3307:371:4,71.5,-37.5,0,0,-0.0168075 -51361,3307:372:3,72,-37.5,0,0,-0.0183064 -51362,3307:372:4,72.5,-37.5,0,0,-0.0218147 -51363,3307:373:4,73.5,-37.5,0,0,-0.0266332 -51364,3307:374:3,74,-37.5,0,0,-0.030489 -51365,3307:374:4,74.5,-37.5,0,0,-0.0330666 -51366,3307:475:3,75,-37.5,0,0,-0.0345252 -51367,3307:475:4,75.5,-37.5,0,0,-0.0354533 -51368,3307:476:3,76,-37.5,0,0,-0.0373448 -51369,3307:476:4,76.5,-37.5,0,0,-0.0386962 -51370,3307:477:3,77,-37.5,0,0,-0.0369024 -51371,3307:477:4,77.5,-37.5,0,0,-0.0337917 -51372,3307:478:3,78,-37.5,0,0,-0.0344384 -51373,3307:478:4,78.5,-37.5,0,0,-0.0395949 -51374,3307:479:3,79,-37.5,0,0,-0.0417643 -51375,3307:479:4,79.5,-37.5,0,0,-0.039224 -51376,3308:370:3,80,-37.5,0,0,-0.0374133 -51377,3308:370:4,80.5,-37.5,0,0,-0.0422673 -51378,3308:371:3,81,-37.5,0,0,-0.0409932 -51379,3308:371:4,81.5,-37.5,0,0,-0.0394498 -51380,3308:372:3,82,-37.5,0,0,-0.0385898 -51381,3308:372:4,82.5,-37.5,0,0,-0.0392058 -51382,3308:373:3,83,-37.5,0,0,-0.049873 -51383,3308:373:4,83.5,-37.5,0,0,-0.0554399 -51384,3308:374:3,84,-37.5,0,0,-0.052329 -51385,3308:374:4,84.5,-37.5,0,0,-0.0458213 -51386,3308:475:3,85,-37.5,0,0,-0.0431031 -51387,3308:475:4,85.5,-37.5,0,0,-0.0434923 -51388,3308:476:3,86,-37.5,0,0,-0.0499076 -51389,3308:476:4,86.5,-37.5,0,0,-0.057094 -51390,3308:477:3,87,-37.5,0,0,-0.0603347 -51391,3308:477:4,87.5,-37.5,0,0,-0.0637549 -51392,3308:478:3,88,-37.5,0,0,-0.066828 -51393,3308:478:4,88.5,-37.5,0,0,-0.0677002 -51394,3308:479:3,89,-37.5,0,0,-0.0653952 -51395,3308:479:4,89.5,-37.5,0,0,-0.0623481 -51396,3309:370:3,90,-37.5,0,0,-0.060618 -51397,3309:370:4,90.5,-37.5,0,0,-0.0566692 -51398,3309:371:3,91,-37.5,0,0,-0.0560379 -51399,3309:371:4,91.5,-37.5,0,0,-0.055764 -51400,3309:372:3,92,-37.5,0,0,-0.0545554 -51401,3309:372:4,92.5,-37.5,0,0,-0.048013 -51402,3309:373:3,93,-37.5,0,0,-0.0432026 -51403,3309:373:4,93.5,-37.5,0,0,-0.0423452 -51404,3309:374:3,94,-37.5,0,0,-0.0433823 -51405,3309:374:4,94.5,-37.5,0,0,-0.0435526 -51406,3309:475:3,95,-37.5,0,0,-0.0397771 -51407,3309:475:4,95.5,-37.5,0,0,-0.0357873 -51408,3309:476:3,96,-37.5,0,0,-0.0343676 -51409,3309:476:4,96.5,-37.5,0,0,-0.0334766 -51410,3309:477:3,97,-37.5,0,0,-0.0329234 -51411,3309:477:4,97.5,-37.5,0,0,-0.0329459 -51412,3309:478:3,98,-37.5,0,0,-0.0334843 -51413,3309:478:4,98.5,-37.5,0,0,-0.0328783 -51414,3309:479:3,99,-37.5,0,0,-0.031556 -51415,3309:479:4,99.5,-37.5,0,0,-0.0300481 -51416,3310:370:3,100,-37.5,0,0,-0.0289545 -51417,3310:370:4,100.5,-37.5,0,0,-0.03074 -51418,3310:371:3,101,-37.5,0,0,-0.03152 -51419,3310:371:4,101.5,-37.5,0,0,-0.0317292 -51420,3310:372:3,102,-37.5,0,0,-0.033347 -51421,3310:372:4,102.5,-37.5,0,0,-0.034258 -51422,3310:373:3,103,-37.5,0,0,-0.0343207 -51423,3310:373:4,103.5,-37.5,0,0,-0.0368181 -51424,3310:374:3,104,-37.5,0,0,-0.0434324 -51425,3310:374:4,104.5,-37.5,0,0,-0.0456417 -51426,3310:475:3,105,-37.5,0,0,-0.0464828 -51427,3310:475:4,105.5,-37.5,0,0,-0.0467737 -51428,3310:476:3,106,-37.5,0,0,-0.0472413 -51429,3310:476:4,106.5,-37.5,0,0,-0.0484373 -51430,3310:477:3,107,-37.5,0,0,-0.0500119 -51431,3310:477:4,107.5,-37.5,0,0,-0.0498501 -51432,3310:478:3,108,-37.5,0,0,-0.0456311 -51433,3310:478:4,108.5,-37.5,0,0,-0.0388654 -51434,3310:479:3,109,-37.5,0,0,-0.0370889 -51435,3310:479:4,109.5,-37.5,0,0,-0.0391518 -51436,3311:370:3,110,-37.5,0,0,-0.0389548 -51437,3311:370:4,110.5,-37.5,0,0,-0.0407958 -51438,3311:371:3,111,-37.5,0,0,-0.0473291 -51439,3311:371:4,111.5,-37.5,0,0,-0.0639349 -51440,3311:372:3,112,-37.5,0,0,-0.0759389 -51441,3311:372:4,112.5,-37.5,0,0,-0.0780829 -51442,3311:373:3,113,-37.5,0,0,-0.0766287 -51443,3311:373:4,113.5,-37.5,0,0,-0.0739108 -51444,3311:374:3,114,-37.5,0,0,-0.059828 -51445,3311:374:4,114.5,-37.5,0,0,-0.0538106 -51446,3311:475:3,115,-37.5,0,0,-0.0539488 -51447,3311:475:4,115.5,-37.5,0,0,-0.0547591 -51448,3311:476:3,116,-37.5,0,0,-0.0563922 -51449,3311:476:4,116.5,-37.5,0,0,-0.0578327 -51450,3311:477:3,117,-37.5,0,0,-0.0569611 -51451,3311:477:4,117.5,-37.5,0,0,-0.0578191 -51452,3311:478:3,118,-37.5,0,0,-0.0567618 -51453,3311:478:4,118.5,-37.5,0,0,-0.055764 -51454,3311:479:3,119,-37.5,0,0,-0.0584304 -51455,3311:479:4,119.5,-37.5,0,0,-0.0642665 -51456,3312:370:3,120,-37.5,0,0,-0.0733171 -51457,3312:370:4,120.5,-37.5,0,0,-0.0770857 -51458,3312:371:3,121,-37.5,0,0,-0.0754355 -51459,3312:371:4,121.5,-37.5,0,0,-0.067828 -51460,3312:372:3,122,-37.5,0,0,-0.0583895 -51461,3312:372:4,122.5,-37.5,0,0,-0.0579 -51462,3312:373:3,123,-37.5,0,0,-0.0628919 -51463,3312:373:4,123.5,-37.5,0,0,-0.0708082 -51464,3312:374:3,124,-37.5,0,0,-0.0774167 -51465,3312:374:4,124.5,-37.5,0,0,-0.0771955 -51466,3312:475:3,125,-37.5,0,0,-0.0727802 -51467,3312:475:4,125.5,-37.5,0,0,-0.0672229 -51468,3312:476:3,126,-37.5,0,0,-0.0635158 -51469,3312:476:4,126.5,-37.5,0,0,-0.0662318 -51470,3312:477:3,127,-37.5,0,0,-0.0736656 -51471,3312:477:4,127.5,-37.5,0,0,-0.0800053 -51472,3312:478:3,128,-37.5,0,0,-0.0815284 -51473,3312:478:4,128.5,-37.5,0,0,-0.0792829 -51474,3312:479:3,129,-37.5,0,0,-0.0781203 -51475,3312:479:4,129.5,-37.5,0,0,-0.0779156 -51476,3313:370:3,130,-37.5,0,0,-0.0778047 -51477,3313:370:4,130.5,-37.5,0,0,-0.0777861 -51478,3313:371:3,131,-37.5,0,0,-0.078176 -51479,3313:371:4,131.5,-37.5,0,0,-0.0787179 -51480,3313:372:3,132,-37.5,0,0,-0.0785869 -51481,3313:372:4,132.5,-37.5,0,0,-0.0774533 -51482,3313:373:3,133,-37.5,0,0,-0.0765192 -51483,3313:373:4,133.5,-37.5,0,0,-0.0759213 -51484,3313:374:3,134,-37.5,0,0,-0.0747042 -51485,3313:374:4,134.5,-37.5,0,0,-0.0733692 -51486,3313:475:3,135,-37.5,0,0,-0.0728318 -51487,3313:475:4,135.5,-37.5,0,0,-0.073648 -51488,3313:476:3,136,-37.5,0,0,-0.0763372 -51489,3313:476:4,136.5,-37.5,0,0,-0.0805415 -51490,3313:477:3,137,-37.5,0,0,-0.080484 -51491,3313:477:4,137.5,-37.5,0,0,-0.0762287 -51492,3313:478:3,138,-37.5,0,0,-0.0737355 -51493,3313:478:4,138.5,-37.5,0,0,-0.0716002 -51494,3313:479:3,139,-37.5,0,0,-0.0707576 -51495,3313:479:4,139.5,-37.5,0,0,-0.0726939 -51496,3314:370:3,140,-37.5,0,0,-0.0779343 -51497,3314:370:4,140.5,-37.5,0,0,-0.0804259 -51498,3314:371:3,141,-37.5,0,0,-0.0849346 -51499,3314:371:4,141.5,-37.5,0,0,-0.0916166 -51500,3314:372:3,142,-37.5,0,0,-0.091838 -51501,3314:372:4,142.5,-37.5,0,0,-0.0895004 -51502,3314:373:3,143,-37.5,0,0,-0.0942197 -51503,3314:373:4,143.5,-37.5,0,0,-0.0974677 -51504,3314:374:3,144,-37.5,0,0,-0.0990172 -51505,3314:374:4,144.5,-37.5,0,0,-0.100349 -51506,3314:475:3,145,-37.5,0,0,-0.102223 -51507,3314:475:4,145.5,-37.5,0,0,-0.105644 -51508,3314:476:3,146,-37.5,0,0,-0.100544 -51509,3314:476:4,146.5,-37.5,0,0,-0.083662 -51510,3314:477:3,147,-37.5,0,0,-0.0766287 -51511,3314:477:4,147.5,-37.5,0,0,-0.0773796 -51512,3314:478:3,148,-37.5,0,0,-0.0795864 -51513,3314:478:4,148.5,-37.5,0,0,-0.0813533 -51514,3314:479:3,149,-37.5,0,0,-0.080676 -51515,3314:479:4,149.5,-37.5,0,0,-0.0761016 -51516,3315:370:3,150,-37.5,0,0,-0.0695634 -51517,3315:370:4,150.5,-37.5,0,0,-0.0693991 -51518,3315:371:3,151,-37.5,0,0,-0.0711609 -51519,3315:371:4,151.5,-37.5,0,0,-0.0761016 -51520,3315:372:3,152,-37.5,0,0,-0.0955506 -51521,3315:372:4,152.5,-37.5,0,0,-0.115485 -51522,3315:373:3,153,-37.5,0,0,-0.109863 -51523,3315:373:4,153.5,-37.5,0,0,-0.0837023 -51524,3315:374:3,154,-37.5,0,0,-0.089371 -51525,3315:374:4,154.5,-37.5,0,0,-0.0923936 -51526,3315:475:3,155,-37.5,0,0,-0.0953658 -51527,3315:475:4,155.5,-37.5,0,0,-0.0929308 -51528,3315:476:3,156,-37.5,0,0,-0.0894788 -51529,3315:476:4,156.5,-37.5,0,0,-0.0866423 -51530,3315:477:3,157,-37.5,0,0,-0.0836021 -51531,3315:477:4,157.5,-37.5,0,0,-0.08114 -51532,3315:478:3,158,-37.5,0,0,-0.0819195 -51533,3315:478:4,158.5,-37.5,0,0,-0.0842652 -51534,3315:479:3,159,-37.5,0,0,-0.0868921 -51535,3315:479:4,159.5,-37.5,0,0,-0.0895866 -51536,3316:370:3,160,-37.5,0,0,-0.092998 -51537,3316:370:4,160.5,-37.5,0,0,-0.0950431 -51538,3316:371:3,161,-37.5,0,0,-0.0923045 -51539,3316:371:4,161.5,-37.5,0,0,-0.0886007 -51540,3316:372:3,162,-37.5,0,0,-0.0918827 -51541,3316:372:4,162.5,-37.5,0,0,-0.094128 -51542,3316:373:3,163,-37.5,0,0,-0.0910661 -51543,3316:373:4,163.5,-37.5,0,0,-0.0948826 -51544,3316:374:3,164,-37.5,0,0,-0.0976569 -51545,3316:374:4,164.5,-37.5,0,0,-0.0964808 -51546,3316:475:3,165,-37.5,0,0,-0.091044 -51547,3316:475:4,165.5,-37.5,0,0,-0.0853633 -51548,3316:476:3,166,-37.5,0,0,-0.089954 -51549,3316:476:4,166.5,-37.5,0,0,-0.0970906 -51550,3316:477:3,167,-37.5,0,0,-0.0977046 -51551,3316:477:4,167.5,-37.5,0,0,-0.102671 -51552,3316:478:3,168,-37.5,0,0,-0.104337 -51553,3316:478:4,168.5,-37.5,0,0,-0.0942419 -51554,3316:479:3,169,-37.5,0,0,-0.0854651 -51555,3316:479:4,169.5,-37.5,0,0,-0.0765553 -51556,3317:370:3,170,-37.5,0,0,-0.0702741 -51557,3317:370:4,170.5,-37.5,0,0,-0.0641154 -51558,3317:371:3,171,-37.5,0,0,-0.0619253 -51559,3317:371:4,171.5,-37.5,0,0,-0.0600383 -51560,3317:372:3,172,-37.5,0,0,-0.0602356 -51561,3317:372:4,172.5,-37.5,0,0,-0.0621581 -51562,3317:373:3,173,-37.5,0,0,-0.0639803 -51563,3317:373:4,173.5,-37.5,0,0,-0.0641909 -51564,3317:374:3,174,-37.5,0,0,-0.0634561 -51565,3317:374:4,174.5,-37.5,0,0,-0.0626413 -51566,3317:475:3,175,-37.5,0,0,-0.0614911 -51567,3317:475:4,175.5,-37.5,0,0,-0.0608599 -51568,3317:476:3,176,-37.5,0,0,-0.0624214 -51569,3317:476:4,176.5,-37.5,0,0,-0.0640253 -51570,3317:477:3,177,-37.5,0,0,-0.0635905 -51571,3317:477:4,177.5,-37.5,0,0,-0.0629514 -51572,3317:478:3,178,-37.5,0,0,-0.0614475 -51573,3317:478:4,178.5,-37.5,0,0,-0.0603347 -51574,3317:479:3,179,-37.5,0,0,-0.0605755 -51575,3317:479:4,179.5,-37.5,0,0,-0.0614621 -51576,3318:370:3,180,-37.5,0,0,-0.059021 -51577,5318:370:1,-180,-37,0,0,-0.0567221 -51578,5317:479:2,-179.5,-37,0,0,-0.0588557 -51579,5317:479:1,-179,-37,0,0,-0.0651495 -51580,5317:478:2,-178.5,-37,0,0,-0.0760834 -51581,5317:478:1,-178,-37,0,0,-0.0831629 -51582,5317:477:2,-177.5,-37,0,0,-0.0855885 -51583,5317:477:1,-177,-37,0,0,-0.0864349 -51584,5317:476:2,-176.5,-37,0,0,-0.0887283 -51585,5317:476:1,-176,-37,0,0,-0.0921713 -51586,5317:475:2,-175.5,-37,0,0,-0.0951351 -51587,5317:475:1,-175,-37,0,0,-0.0975153 -51588,5317:374:2,-174.5,-37,0,0,-0.102972 -51589,5317:374:1,-174,-37,0,0,-0.106708 -51590,5317:373:2,-173.5,-37,0,0,-0.0971847 -51591,5317:373:1,-173,-37,0,0,-0.0919266 -51592,5317:372:2,-172.5,-37,0,0,-0.0930652 -51593,5317:372:1,-172,-37,0,0,-0.0954349 -51594,5317:371:2,-171.5,-37,0,0,-0.0997902 -51595,5317:371:1,-171,-37,0,0,-0.112566 -51596,5317:370:2,-170.5,-37,0,0,-0.13605 -51597,5317:370:1,-170,-37,0,0,-0.13605 -51598,5316:479:2,-169.5,-37,0,0,-0.13605 -51599,5316:479:1,-169,-37,0,0,-0.13605 -51600,5316:478:2,-168.5,-37,0,0,-0.135231 -51601,5316:478:1,-168,-37,0,0,-0.135163 -51602,5316:477:2,-167.5,-37,0,0,-0.129503 -51603,5316:477:1,-167,-37,0,0,-0.125626 -51604,5316:476:2,-166.5,-37,0,0,-0.127041 -51605,5316:476:1,-166,-37,0,0,-0.125096 -51606,5316:475:2,-165.5,-37,0,0,-0.125657 -51607,5316:475:1,-165,-37,0,0,-0.125907 -51608,5316:374:2,-164.5,-37,0,0,-0.125626 -51609,5316:374:1,-164,-37,0,0,-0.12547 -51610,5316:373:2,-163.5,-37,0,0,-0.121848 -51611,5316:373:1,-163,-37,0,0,-0.11597 -51612,5316:372:2,-162.5,-37,0,0,-0.113344 -51613,5316:372:1,-162,-37,0,0,-0.115941 -51614,5316:371:2,-161.5,-37,0,0,-0.124044 -51615,5316:371:1,-161,-37,0,0,-0.132581 -51616,5316:370:2,-160.5,-37,0,0,-0.133614 -51617,5316:370:1,-160,-37,0,0,-0.130704 -51618,5315:479:2,-159.5,-37,0,0,-0.129956 -51619,5315:479:1,-159,-37,0,0,-0.130281 -51620,5315:478:2,-158.5,-37,0,0,-0.130346 -51621,5315:478:1,-158,-37,0,0,-0.132381 -51622,5315:477:2,-157.5,-37,0,0,-0.136002 -51623,5315:477:1,-157,-37,0,0,-0.13605 -51624,5315:476:2,-156.5,-37,0,0,-0.13605 -51625,5315:476:1,-156,-37,0,0,-0.13605 -51626,5315:475:2,-155.5,-37,0,0,-0.13605 -51627,5315:475:1,-155,-37,0,0,-0.13605 -51628,5315:374:2,-154.5,-37,0,0,-0.13605 -51629,5315:374:1,-154,-37,0,0,-0.13605 -51630,5315:373:2,-153.5,-37,0,0,-0.13605 -51631,5315:373:1,-153,-37,0,0,-0.13605 -51632,5315:372:2,-152.5,-37,0,0,-0.13605 -51633,5315:372:1,-152,-37,0,0,-0.13605 -51634,5315:371:2,-151.5,-37,0,0,-0.13605 -51635,5315:371:1,-151,-37,0,0,-0.13605 -51636,5315:370:2,-150.5,-37,0,0,-0.13605 -51637,5315:370:1,-150,-37,0,0,-0.13605 -51638,5314:479:2,-149.5,-37,0,0,-0.13605 -51639,5314:479:1,-149,-37,0,0,-0.13605 -51640,5314:478:2,-148.5,-37,0,0,-0.13605 -51641,5314:478:1,-148,-37,0,0,-0.13605 -51642,5314:477:2,-147.5,-37,0,0,-0.13605 -51643,5314:477:1,-147,-37,0,0,-0.13605 -51644,5314:476:2,-146.5,-37,0,0,-0.13605 -51645,5314:476:1,-146,-37,0,0,-0.136022 -51646,5314:475:2,-145.5,-37,0,0,-0.134318 -51647,5314:475:1,-145,-37,0,0,-0.132381 -51648,5314:374:2,-144.5,-37,0,0,-0.134487 -51649,5314:374:1,-144,-37,0,0,-0.13605 -51650,5314:373:2,-143.5,-37,0,0,-0.13605 -51651,5314:373:1,-143,-37,0,0,-0.13605 -51652,5314:372:2,-142.5,-37,0,0,-0.13605 -51653,5314:372:1,-142,-37,0,0,-0.13605 -51654,5314:371:2,-141.5,-37,0,0,-0.135163 -51655,5314:371:1,-141,-37,0,0,-0.134858 -51656,5314:370:2,-140.5,-37,0,0,-0.13605 -51657,5314:370:1,-140,-37,0,0,-0.13605 -51658,5313:479:2,-139.5,-37,0,0,-0.13605 -51659,5313:479:1,-139,-37,0,0,-0.13605 -51660,5313:478:2,-138.5,-37,0,0,-0.133213 -51661,5313:478:1,-138,-37,0,0,-0.129309 -51662,5313:477:2,-137.5,-37,0,0,-0.127041 -51663,5313:477:1,-137,-37,0,0,-0.126693 -51664,5313:476:2,-136.5,-37,0,0,-0.127294 -51665,5313:476:1,-136,-37,0,0,-0.12777 -51666,5313:475:2,-135.5,-37,0,0,-0.127326 -51667,5313:475:1,-135,-37,0,0,-0.125876 -51668,5313:374:2,-134.5,-37,0,0,-0.123215 -51669,5313:374:1,-134,-37,0,0,-0.120766 -51670,5313:373:2,-133.5,-37,0,0,-0.118927 -51671,5313:373:1,-133,-37,0,0,-0.118195 -51672,5313:372:2,-132.5,-37,0,0,-0.119281 -51673,5313:372:1,-132,-37,0,0,-0.121426 -51674,5313:371:2,-131.5,-37,0,0,-0.123368 -51675,5313:371:1,-131,-37,0,0,-0.121938 -51676,5313:370:2,-130.5,-37,0,0,-0.119074 -51677,5313:370:1,-130,-37,0,0,-0.119163 -51678,5312:479:2,-129.5,-37,0,0,-0.121185 -51679,5312:479:1,-129,-37,0,0,-0.123582 -51680,5312:478:2,-128.5,-37,0,0,-0.12522 -51681,5312:478:1,-128,-37,0,0,-0.125283 -51682,5312:477:2,-127.5,-37,0,0,-0.124167 -51683,5312:477:1,-127,-37,0,0,-0.122849 -51684,5312:476:2,-126.5,-37,0,0,-0.122271 -51685,5312:476:1,-126,-37,0,0,-0.122636 -51686,5312:475:2,-125.5,-37,0,0,-0.123093 -51687,5312:475:1,-125,-37,0,0,-0.123032 -51688,5312:374:2,-124.5,-37,0,0,-0.121999 -51689,5312:374:1,-124,-37,0,0,-0.122788 -51690,5312:373:2,-123.5,-37,0,0,-0.127326 -51691,5312:373:1,-123,-37,0,0,-0.129309 -51692,5312:372:2,-122.5,-37,0,0,-0.124692 -51693,5312:372:1,-122,-37,0,0,-0.119192 -51694,5312:371:2,-121.5,-37,0,0,-0.120975 -51695,5312:371:1,-121,-37,0,0,-0.118107 -51696,5312:370:2,-120.5,-37,0,0,-0.113791 -51697,5312:370:1,-120,-37,0,0,-0.110404 -51698,5311:479:2,-119.5,-37,0,0,-0.111356 -51699,5311:479:1,-119,-37,0,0,-0.113093 -51700,5311:478:2,-118.5,-37,0,0,-0.108048 -51701,5311:478:1,-118,-37,0,0,-0.103778 -51702,5311:477:2,-117.5,-37,0,0,-0.106136 -51703,5311:477:1,-117,-37,0,0,-0.106656 -51704,5311:476:2,-116.5,-37,0,0,-0.104847 -51705,5311:476:1,-116,-37,0,0,-0.104796 -51706,5311:475:2,-115.5,-37,0,0,-0.100839 -51707,5311:475:1,-115,-37,0,0,-0.0952047 -51708,5311:374:2,-114.5,-37,0,0,-0.0915505 -51709,5311:374:1,-114,-37,0,0,-0.0896729 -51710,5311:373:2,-113.5,-37,0,0,-0.0876471 -51711,5311:373:1,-113,-37,0,0,-0.0853014 -51712,5311:372:2,-112.5,-37,0,0,-0.0843059 -51713,5311:372:1,-112,-37,0,0,-0.0871434 -51714,5311:371:2,-111.5,-37,0,0,-0.0925946 -51715,5311:371:1,-111,-37,0,0,-0.0928856 -51716,5311:370:2,-110.5,-37,0,0,-0.0844675 -51717,5311:370:1,-110,-37,0,0,-0.080599 -51718,5310:479:2,-109.5,-37,0,0,-0.0801388 -51719,5310:479:1,-109,-37,0,0,-0.0776934 -51720,5310:478:2,-108.5,-37,0,0,-0.0767561 -51721,5310:478:1,-108,-37,0,0,-0.0780086 -51722,5310:477:2,-107.5,-37,0,0,-0.0784373 -51723,5310:477:1,-107,-37,0,0,-0.0778601 -51724,5310:476:2,-106.5,-37,0,0,-0.076866 -51725,5310:476:1,-106,-37,0,0,-0.0756327 -51726,5310:475:2,-105.5,-37,0,0,-0.0741037 -51727,5310:475:1,-105,-37,0,0,-0.0736832 -51728,5310:374:2,-104.5,-37,0,0,-0.074616 -51729,5310:374:1,-104,-37,0,0,-0.0752383 -51730,5310:373:2,-103.5,-37,0,0,-0.0732127 -51731,5310:373:1,-103,-37,0,0,-0.0692027 -51732,5310:372:2,-102.5,-37,0,0,-0.0687954 -51733,5310:372:1,-102,-37,0,0,-0.0704071 -51734,5310:371:2,-101.5,-37,0,0,-0.0704071 -51735,5310:371:1,-101,-37,0,0,-0.0701414 -51736,5310:370:2,-100.5,-37,0,0,-0.0712282 -51737,5310:370:1,-100,-37,0,0,-0.0724703 -51738,5309:479:2,-99.5,-37,0,0,-0.0720935 -51739,5309:479:1,-99,-37,0,0,-0.0705572 -51740,5309:478:2,-98.5,-37,0,0,-0.0696126 -51741,5309:478:1,-98,-37,0,0,-0.0692356 -51742,5309:477:2,-97.5,-37,0,0,-0.0669381 -51743,5309:477:1,-97,-37,0,0,-0.065042 -51744,5309:476:2,-96.5,-37,0,0,-0.06589 -51745,5309:476:1,-96,-37,0,0,-0.0667333 -51746,5309:475:2,-95.5,-37,0,0,-0.0666388 -51747,5309:475:1,-95,-37,0,0,-0.0675726 -51748,5309:374:2,-94.5,-37,0,0,-0.0702077 -51749,5309:374:1,-94,-37,0,0,-0.0685682 -51750,5309:373:2,-93.5,-37,0,0,-0.0667492 -51751,5309:373:1,-93,-37,0,0,-0.0651187 -51752,5309:372:2,-92.5,-37,0,0,-0.0646152 -51753,5309:372:1,-92,-37,0,0,-0.0648434 -51754,5309:371:2,-91.5,-37,0,0,-0.0623191 -51755,5309:371:1,-91,-37,0,0,-0.0657348 -51756,5309:370:2,-90.5,-37,0,0,-0.067748 -51757,5309:370:1,-90,-37,0,0,-0.0673023 -51758,5308:479:2,-89.5,-37,0,0,-0.0682292 -51759,5308:479:1,-89,-37,0,0,-0.0678441 -51760,5308:478:2,-88.5,-37,0,0,-0.0705908 -51761,5308:478:1,-88,-37,0,0,-0.068844 -51762,5308:477:2,-87.5,-37,0,0,-0.0648895 -51763,5308:477:1,-87,-37,0,0,-0.0650728 -51764,5308:476:2,-86.5,-37,0,0,-0.0664197 -51765,5308:476:1,-86,-37,0,0,-0.0684389 -51766,5308:475:2,-85.5,-37,0,0,-0.065673 -51767,5308:475:1,-85,-37,0,0,-0.0638748 -51768,5308:374:2,-84.5,-37,0,0,-0.0636051 -51769,5308:374:1,-84,-37,0,0,-0.066092 -51770,5308:373:2,-83.5,-37,0,0,-0.0690721 -51771,5308:373:1,-83,-37,0,0,-0.0694977 -51772,5308:372:2,-82.5,-37,0,0,-0.0713802 -51773,5308:372:1,-82,-37,0,0,-0.0709423 -51774,5308:371:2,-81.5,-37,0,0,-0.0689582 -51775,5308:371:1,-81,-37,0,0,-0.0696623 -51776,5308:370:2,-80.5,-37,0,0,-0.0722302 -51777,5308:370:1,-80,-37,0,0,-0.0744917 -51778,5307:479:2,-79.5,-37,0,0,-0.0762105 -51779,5307:479:1,-79,-37,0,0,-0.0775642 -51780,5307:478:2,-78.5,-37,0,0,-0.078793 -51781,5307:478:1,-78,-37,0,0,-0.0769939 -51782,5307:477:2,-77.5,-37,0,0,-0.0734738 -51783,5307:477:1,-77,-37,0,0,-0.0725904 -51784,5307:476:2,-76.5,-37,0,0,-0.0773982 -51785,5307:476:1,-76,-37,0,0,-0.0845281 -51786,5307:475:1,-75,-37,0,0,-0.0833624 -51787,5306:477:1,-67,-37,0,0,-0.131523 -51788,5306:476:2,-66.5,-37,0,0,-0.120348 -51789,5306:476:1,-66,-37,0,0,-0.118986 -51790,5306:475:2,-65.5,-37,0,0,-0.110647 -51791,5306:475:1,-65,-37,0,0,-0.104847 -51792,5306:374:2,-64.5,-37,0,0,-0.104058 -51793,5306:374:1,-64,-37,0,0,-0.0999598 -51794,5306:373:2,-63.5,-37,0,0,-0.0949057 -51795,5306:373:1,-63,-37,0,0,-0.0923936 -51796,5306:372:2,-62.5,-37,0,0,-0.0935611 -51797,5306:372:1,-62,-37,0,0,-0.0929082 -51798,5306:371:2,-61.5,-37,0,0,-0.0902799 -51799,5306:371:1,-61,-37,0,0,-0.0884941 -51800,5306:370:2,-60.5,-37,0,0,-0.0854245 -51801,5306:370:1,-60,-37,0,0,-0.0731433 -51802,5305:479:2,-59.5,-37,0,0,-0.0579951 -51803,5305:479:1,-59,-37,0,0,-0.0475925 -51804,5305:478:2,-58.5,-37,0,0,-0.0496075 -51805,5305:478:1,-58,-37,0,0,-0.0590628 -51806,5305:477:2,-57.5,-37,0,0,-0.0739809 -51807,5305:477:1,-57,-37,0,0,-0.0898893 -51808,5305:476:2,-56.5,-37,0,0,-0.0934481 -51809,5305:476:1,-56,-37,0,0,-0.0893284 -51810,5305:475:2,-55.5,-37,0,0,-0.0866219 -51811,5305:475:1,-55,-37,0,0,-0.0891776 -51812,5305:374:2,-54.5,-37,0,0,-0.0982508 -51813,5305:374:1,-54,-37,0,0,-0.108552 -51814,5305:373:2,-53.5,-37,0,0,-0.111767 -51815,5305:373:1,-53,-37,0,0,-0.110838 -51816,5305:372:2,-52.5,-37,0,0,-0.11111 -51817,5305:372:1,-52,-37,0,0,-0.116975 -51818,5305:371:2,-51.5,-37,0,0,-0.13605 -51819,5305:371:1,-51,-37,0,0,-0.13605 -51820,5305:370:2,-50.5,-37,0,0,-0.13605 -51821,5305:370:1,-50,-37,0,0,-0.13605 -51822,5304:479:2,-49.5,-37,0,0,-0.13605 -51823,5304:479:1,-49,-37,0,0,-0.109379 -51824,5304:478:2,-48.5,-37,0,0,-0.0904972 -51825,5304:478:1,-48,-37,0,0,-0.0891776 -51826,5304:477:2,-47.5,-37,0,0,-0.0917718 -51827,5304:477:1,-47,-37,0,0,-0.0894571 -51828,5304:476:2,-46.5,-37,0,0,-0.0868297 -51829,5304:476:1,-46,-37,0,0,-0.0861859 -51830,5304:475:2,-45.5,-37,0,0,-0.086124 -51831,5304:475:1,-45,-37,0,0,-0.0854451 -51832,5304:374:2,-44.5,-37,0,0,-0.0841243 -51833,5304:374:1,-44,-37,0,0,-0.0800239 -51834,5304:373:2,-43.5,-37,0,0,-0.0700417 -51835,5304:373:1,-43,-37,0,0,-0.0689746 -51836,5304:372:2,-42.5,-37,0,0,-0.0703076 -51837,5304:372:1,-42,-37,0,0,-0.0698601 -51838,5304:371:2,-41.5,-37,0,0,-0.0688768 -51839,5304:371:1,-41,-37,0,0,-0.0678603 -51840,5304:370:2,-40.5,-37,0,0,-0.0666705 -51841,5304:370:1,-40,-37,0,0,-0.0635007 -51842,5303:479:2,-39.5,-37,0,0,-0.0642213 -51843,5303:479:1,-39,-37,0,0,-0.0648131 -51844,5303:478:2,-38.5,-37,0,0,-0.0654107 -51845,5303:478:1,-38,-37,0,0,-0.0664197 -51846,5303:477:2,-37.5,-37,0,0,-0.0654878 -51847,5303:477:1,-37,-37,0,0,-0.0621292 -51848,5303:476:2,-36.5,-37,0,0,-0.0598981 -51849,5303:476:1,-36,-37,0,0,-0.0587318 -51850,5303:475:2,-35.5,-37,0,0,-0.0559988 -51851,5303:475:1,-35,-37,0,0,-0.0518446 -51852,5303:374:2,-34.5,-37,0,0,-0.0453684 -51853,5303:374:1,-34,-37,0,0,-0.0404222 -51854,5303:373:2,-33.5,-37,0,0,-0.0400155 -51855,5303:373:1,-33,-37,0,0,-0.040674 -51856,5303:372:2,-32.5,-37,0,0,-0.0410687 -51857,5303:372:1,-32,-37,0,0,-0.0409837 -51858,5303:371:2,-31.5,-37,0,0,-0.039942 -51859,5303:371:1,-31,-37,0,0,-0.0383691 -51860,5303:370:2,-30.5,-37,0,0,-0.0375422 -51861,5303:370:1,-30,-37,0,0,-0.0389635 -51862,5302:479:2,-29.5,-37,0,0,-0.0460442 -51863,5302:479:1,-29,-37,0,0,-0.0467737 -51864,5302:478:2,-28.5,-37,0,0,-0.0460231 -51865,5302:478:1,-28,-37,0,0,-0.0438349 -51866,5302:477:2,-27.5,-37,0,0,-0.0397225 -51867,5302:477:1,-27,-37,0,0,-0.0388831 -51868,5302:476:2,-26.5,-37,0,0,-0.0449721 -51869,5302:476:1,-26,-37,0,0,-0.048359 -51870,5302:475:2,-25.5,-37,0,0,-0.0438753 -51871,5302:475:1,-25,-37,0,0,-0.040034 -51872,5302:374:2,-24.5,-37,0,0,-0.0455784 -51873,5302:374:1,-24,-37,0,0,-0.0528917 -51874,5302:373:2,-23.5,-37,0,0,-0.0516165 -51875,5302:373:1,-23,-37,0,0,-0.0465902 -51876,5302:372:2,-22.5,-37,0,0,-0.0449825 -51877,5302:372:1,-22,-37,0,0,-0.0560902 -51878,5302:371:2,-21.5,-37,0,0,-0.0711609 -51879,5302:371:1,-21,-37,0,0,-0.0740511 -51880,5302:370:2,-20.5,-37,0,0,-0.0735957 -51881,5302:370:1,-20,-37,0,0,-0.0667962 -51882,5301:479:2,-19.5,-37,0,0,-0.0473729 -51883,5301:479:1,-19,-37,0,0,-0.0387585 -51884,5301:478:2,-18.5,-37,0,0,-0.0431728 -51885,5301:478:1,-18,-37,0,0,-0.0518568 -51886,5301:477:2,-17.5,-37,0,0,-0.0470233 -51887,5301:477:1,-17,-37,0,0,-0.0440071 -51888,5301:476:2,-16.5,-37,0,0,-0.038334 -51889,5301:476:1,-16,-37,0,0,-0.0352349 -51890,5301:475:2,-15.5,-37,0,0,-0.0380098 -51891,5301:475:1,-15,-37,0,0,-0.0395403 -51892,5301:374:2,-14.5,-37,0,0,-0.0379402 -51893,5301:374:1,-14,-37,0,0,-0.0317652 -51894,5301:373:2,-13.5,-37,0,0,-0.0300276 -51895,5301:373:1,-13,-37,0,0,-0.0282139 -51896,5301:372:2,-12.5,-37,0,0,-0.0290071 -51897,5301:372:1,-12,-37,0,0,-0.0302334 -51898,5301:371:2,-11.5,-37,0,0,-0.0305864 -51899,5301:371:1,-11,-37,0,0,-0.0313624 -51900,5301:370:2,-10.5,-37,0,0,-0.0341486 -51901,5301:370:1,-10,-37,0,0,-0.0358531 -51902,5300:479:2,-9.5,-37,0,0,-0.0333928 -51903,5300:479:1,-9,-37,0,0,-0.0318741 -51904,5300:478:2,-8.5,-37,0,0,-0.0329158 -51905,5300:478:1,-8,-37,0,0,-0.0345017 -51906,5300:477:2,-7.5,-37,0,0,-0.0355425 -51907,5300:477:1,-7,-37,0,0,-0.0373448 -51908,5300:476:2,-6.5,-37,0,0,-0.0440071 -51909,5300:476:1,-6,-37,0,0,-0.0519411 -51910,5300:475:2,-5.5,-37,0,0,-0.05272 -51911,5300:475:1,-5,-37,0,0,-0.0488884 -51912,5300:374:2,-4.5,-37,0,0,-0.045589 -51913,5300:374:1,-4,-37,0,0,-0.0469689 -51914,5300:373:2,-3.5,-37,0,0,-0.050784 -51915,5300:373:1,-3,-37,0,0,-0.0559071 -51916,5300:372:2,-2.5,-37,0,0,-0.0601371 -51917,5300:372:1,-2,-37,0,0,-0.0631439 -51918,5300:371:2,-1.5,-37,0,0,-0.0636799 -51919,5300:371:1,-1,-37,0,0,-0.0619688 -51920,5300:370:2,-0.5,-37,0,0,-0.059021 -51921,3300:370:2,0,-37,0,0,-0.0493439 -51922,3300:370:2,0.5,-37,0,0,-0.0399328 -51923,3300:371:1,1,-37,0,0,-0.0406178 -51924,3300:371:2,1.5,-37,0,0,-0.0459485 -51925,3300:372:1,2,-37,0,0,-0.0461508 -51926,3300:372:2,2.5,-37,0,0,-0.0419475 -51927,3300:373:1,3,-37,0,0,-0.0443739 -51928,3300:373:2,3.5,-37,0,0,-0.0450758 -51929,3300:374:1,4,-37,0,0,-0.0446306 -51930,3300:374:2,4.5,-37,0,0,-0.0420537 -51931,3300:475:1,5,-37,0,0,-0.0391339 -51932,3300:475:2,5.5,-37,0,0,-0.0380799 -51933,3300:476:1,6,-37,0,0,-0.0361249 -51934,3300:476:2,6.5,-37,0,0,-0.033993 -51935,3300:477:1,7,-37,0,0,-0.032751 -51936,3300:477:2,7.5,-37,0,0,-0.0326765 -51937,3300:478:1,8,-37,0,0,-0.0332102 -51938,3300:478:2,8.5,-37,0,0,-0.0338148 -51939,3300:479:1,9,-37,0,0,-0.0348583 -51940,3300:479:2,9.5,-37,0,0,-0.0369957 -51941,3301:370:1,10,-37,0,0,-0.0405153 -51942,3301:370:2,10.5,-37,0,0,-0.04259 -51943,3301:371:1,11,-37,0,0,-0.0396952 -51944,3301:371:2,11.5,-37,0,0,-0.0362326 -51945,3301:372:1,12,-37,0,0,-0.0332558 -51946,3301:372:2,12.5,-37,0,0,-0.0320418 -51947,3301:373:1,13,-37,0,0,-0.032766 -51948,3301:373:2,13.5,-37,0,0,-0.0347708 -51949,3301:374:1,14,-37,0,0,-0.0368519 -51950,3301:374:2,14.5,-37,0,0,-0.0387051 -51951,3301:475:1,15,-37,0,0,-0.0408614 -51952,3301:475:2,15.5,-37,0,0,-0.0435827 -51953,3301:476:1,16,-37,0,0,-0.0449306 -51954,3301:476:2,16.5,-37,0,0,-0.0426292 -51955,3301:477:1,17,-37,0,0,-0.0346517 -51956,3301:477:2,17.5,-37,0,0,-0.0268029 -51957,3301:478:1,18,-37,0,0,-0.0279968 -51958,3301:478:2,18.5,-37,0,0,-0.0277627 -51959,3301:479:1,19,-37,0,0,-0.0261781 -51960,3301:479:2,19.5,-37,0,0,-0.0271888 -51961,3302:370:1,20,-37,0,0,-0.029219 -51962,3302:370:2,20.5,-37,0,0,-0.0307821 -51963,3302:371:1,21,-37,0,0,-0.0324017 -51964,3302:371:2,21.5,-37,0,0,-0.0339541 -51965,3302:372:1,22,-37,0,0,-0.035219 -51966,3302:372:2,22.5,-37,0,0,-0.0349701 -51967,3302:373:1,23,-37,0,0,-0.0352027 -51968,3302:373:2,23.5,-37,0,0,-0.0364655 -51969,3302:374:1,24,-37,0,0,-0.0390173 -51970,3302:374:2,24.5,-37,0,0,-0.040506 -51971,3302:475:1,25,-37,0,0,-0.0400615 -51972,3302:475:2,25.5,-37,0,0,-0.0378101 -51973,3302:476:1,26,-37,0,0,-0.0384043 -51974,3302:476:2,26.5,-37,0,0,-0.0361332 -51975,3302:477:1,27,-37,0,0,-0.0306004 -51976,3302:477:2,27.5,-37,0,0,-0.0288558 -51977,3302:478:1,28,-37,0,0,-0.0300412 -51978,3302:478:2,28.5,-37,0,0,-0.0318814 -51979,3302:479:1,29,-37,0,0,-0.0372251 -51980,3302:479:2,29.5,-37,0,0,-0.0495731 -51981,3303:370:1,30,-37,0,0,-0.0455048 -51982,3303:370:2,30.5,-37,0,0,-0.044641 -51983,3303:371:1,31,-37,0,0,-0.0453473 -51984,3303:371:2,31.5,-37,0,0,-0.0454417 -51985,3303:372:1,32,-37,0,0,-0.0445587 -51986,3303:372:2,32.5,-37,0,0,-0.0434623 -51987,3303:373:1,33,-37,0,0,-0.0420732 -51988,3303:373:2,33.5,-37,0,0,-0.0408898 -51989,3303:374:1,34,-37,0,0,-0.0394498 -51990,3303:374:2,34.5,-37,0,0,-0.0374735 -51991,3303:475:1,35,-37,0,0,-0.0350341 -51992,3303:475:2,35.5,-37,0,0,-0.0331118 -51993,3303:476:1,36,-37,0,0,-0.0321662 -51994,3303:476:2,36.5,-37,0,0,-0.0323945 -51995,3303:477:1,37,-37,0,0,-0.0339231 -51996,3303:477:2,37.5,-37,0,0,-0.0336453 -51997,3303:478:1,38,-37,0,0,-0.0333623 -51998,3303:478:2,38.5,-37,0,0,-0.0316065 -51999,3303:479:1,39,-37,0,0,-0.0304335 -52000,3303:479:2,39.5,-37,0,0,-0.0294056 -52001,3304:370:1,40,-37,0,0,-0.0282781 -52002,3304:370:2,40.5,-37,0,0,-0.0280861 -52003,3304:371:1,41,-37,0,0,-0.0294526 -52004,3304:371:2,41.5,-37,0,0,-0.0320929 -52005,3304:372:1,42,-37,0,0,-0.0359268 -52006,3304:372:2,42.5,-37,0,0,-0.03714 -52007,3304:373:1,43,-37,0,0,-0.0357793 -52008,3304:373:2,43.5,-37,0,0,-0.0357956 -52009,3304:374:1,44,-37,0,0,-0.0362574 -52010,3304:374:2,44.5,-37,0,0,-0.0354209 -52011,3304:475:1,45,-37,0,0,-0.0340551 -52012,3304:475:2,45.5,-37,0,0,-0.0330892 -52013,3304:476:1,46,-37,0,0,-0.0323132 -52014,3304:476:2,46.5,-37,0,0,-0.0312483 -52015,3304:477:1,47,-37,0,0,-0.0300345 -52016,3304:477:2,47.5,-37,0,0,-0.0282012 -52017,3304:478:1,48,-37,0,0,-0.0259888 -52018,3304:478:2,48.5,-37,0,0,-0.0243312 -52019,3304:479:1,49,-37,0,0,-0.023626 -52020,3304:479:2,49.5,-37,0,0,-0.0239381 -52021,3305:370:1,50,-37,0,0,-0.0239434 -52022,3305:370:2,50.5,-37,0,0,-0.0241337 -52023,3305:371:1,51,-37,0,0,-0.0243753 -52024,3305:371:2,51.5,-37,0,0,-0.0243312 -52025,3305:372:1,52,-37,0,0,-0.023701 -52026,3305:372:2,52.5,-37,0,0,-0.0228383 -52027,3305:373:1,53,-37,0,0,-0.0221672 -52028,3305:373:2,53.5,-37,0,0,-0.0223482 -52029,3305:374:1,54,-37,0,0,-0.0258889 -52030,3305:374:2,54.5,-37,0,0,-0.0306562 -52031,3305:475:1,55,-37,0,0,-0.0327063 -52032,3305:475:2,55.5,-37,0,0,-0.0340706 -52033,3305:476:1,56,-37,0,0,-0.0289611 -52034,3305:476:2,56.5,-37,0,0,-0.024759 -52035,3305:477:1,57,-37,0,0,-0.0260774 -52036,3305:477:2,57.5,-37,0,0,-0.0269554 -52037,3305:478:1,58,-37,0,0,-0.0264526 -52038,3305:478:2,58.5,-37,0,0,-0.0272321 -52039,3305:479:1,59,-37,0,0,-0.0296676 -52040,3305:479:2,59.5,-37,0,0,-0.0332558 -52041,3306:370:1,60,-37,0,0,-0.036633 -52042,3306:370:2,60.5,-37,0,0,-0.0420053 -52043,3306:371:1,61,-37,0,0,-0.048877 -52044,3306:371:2,61.5,-37,0,0,-0.0474713 -52045,3306:372:1,62,-37,0,0,-0.0281562 -52046,3306:372:2,62.5,-37,0,0,-0.0225104 -52047,3306:373:1,63,-37,0,0,-0.0223988 -52048,3306:373:2,63.5,-37,0,0,-0.0242378 -52049,3306:374:1,64,-37,0,0,-0.0262079 -52050,3306:374:2,64.5,-37,0,0,-0.0253835 -52051,3306:475:1,65,-37,0,0,-0.020145 -52052,3306:475:2,65.5,-37,0,0,-0.0200093 -52053,3306:476:1,66,-37,0,0,-0.0251604 -52054,3306:476:2,66.5,-37,0,0,-0.0256902 -52055,3306:477:1,67,-37,0,0,-0.0243973 -52056,3306:477:2,67.5,-37,0,0,-0.0237923 -52057,3306:478:1,68,-37,0,0,-0.0247871 -52058,3306:478:2,68.5,-37,0,0,-0.0273374 -52059,3306:479:1,69,-37,0,0,-0.0287055 -52060,3306:479:2,69.5,-37,0,0,-0.0291658 -52061,3307:370:1,70,-37,0,0,-0.0283875 -52062,3307:370:2,70.5,-37,0,0,-0.0270779 -52063,3307:371:1,71,-37,0,0,-0.02787 -52064,3307:371:2,71.5,-37,0,0,-0.0300003 -52065,3307:372:1,72,-37,0,0,-0.0334689 -52066,3307:372:2,72.5,-37,0,0,-0.0377926 -52067,3307:373:2,73.5,-37,0,0,-0.0427766 -52068,3307:374:1,74,-37,0,0,-0.0474385 -52069,3307:374:2,74.5,-37,0,0,-0.0495731 -52070,3307:475:1,75,-37,0,0,-0.0491839 -52071,3307:475:2,75.5,-37,0,0,-0.046655 -52072,3307:476:1,76,-37,0,0,-0.0454837 -52073,3307:476:2,76.5,-37,0,0,-0.0470887 -52074,3307:477:1,77,-37,0,0,-0.0491839 -52075,3307:477:2,77.5,-37,0,0,-0.0491154 -52076,3307:478:1,78,-37,0,0,-0.0456732 -52077,3307:478:2,78.5,-37,0,0,-0.0482695 -52078,3307:479:1,79,-37,0,0,-0.0476807 -52079,3307:479:2,79.5,-37,0,0,-0.0452534 -52080,3308:370:1,80,-37,0,0,-0.0453895 -52081,3308:370:2,80.5,-37,0,0,-0.0497 -52082,3308:371:1,81,-37,0,0,-0.0490814 -52083,3308:371:2,81.5,-37,0,0,-0.0427273 -52084,3308:372:1,82,-37,0,0,-0.0418992 -52085,3308:372:2,82.5,-37,0,0,-0.0586083 -52086,3308:373:1,83,-37,0,0,-0.0666863 -52087,3308:373:2,83.5,-37,0,0,-0.0645846 -52088,3308:374:1,84,-37,0,0,-0.0577244 -52089,3308:374:2,84.5,-37,0,0,-0.0484264 -52090,3308:475:1,85,-37,0,0,-0.0444149 -52091,3308:475:2,85.5,-37,0,0,-0.04873 -52092,3308:476:1,86,-37,0,0,-0.0567618 -52093,3308:476:2,86.5,-37,0,0,-0.060165 -52094,3308:477:1,87,-37,0,0,-0.0645545 -52095,3308:477:2,87.5,-37,0,0,-0.0698434 -52096,3308:478:1,88,-37,0,0,-0.0703076 -52097,3308:478:2,88.5,-37,0,0,-0.0699261 -52098,3308:479:1,89,-37,0,0,-0.0652877 -52099,3308:479:2,89.5,-37,0,0,-0.0605045 -52100,3309:370:1,90,-37,0,0,-0.0553879 -52101,3309:370:2,90.5,-37,0,0,-0.0544663 -52102,3309:371:1,91,-37,0,0,-0.0536857 -52103,3309:371:2,91.5,-37,0,0,-0.0535235 -52104,3309:372:1,92,-37,0,0,-0.0537857 -52105,3309:372:2,92.5,-37,0,0,-0.0535109 -52106,3309:373:1,93,-37,0,0,-0.0515565 -52107,3309:373:2,93.5,-37,0,0,-0.0495156 -52108,3309:374:1,94,-37,0,0,-0.0481911 -52109,3309:374:2,94.5,-37,0,0,-0.0460335 -52110,3309:475:1,95,-37,0,0,-0.0405153 -52111,3309:475:2,95.5,-37,0,0,-0.0369533 -52112,3309:476:1,96,-37,0,0,-0.0374049 -52113,3309:476:2,96.5,-37,0,0,-0.0353562 -52114,3309:477:1,97,-37,0,0,-0.0340862 -52115,3309:477:2,97.5,-37,0,0,-0.0341252 -52116,3309:478:1,98,-37,0,0,-0.0370381 -52117,3309:478:2,98.5,-37,0,0,-0.0401538 -52118,3309:479:1,99,-37,0,0,-0.0418704 -52119,3309:479:2,99.5,-37,0,0,-0.0435324 -52120,3310:370:1,100,-37,0,0,-0.0430734 -52121,3310:370:2,100.5,-37,0,0,-0.0391071 -52122,3310:371:1,101,-37,0,0,-0.0352672 -52123,3310:371:2,101.5,-37,0,0,-0.0345725 -52124,3310:372:1,102,-37,0,0,-0.0420924 -52125,3310:372:2,102.5,-37,0,0,-0.0434223 -52126,3310:373:1,103,-37,0,0,-0.0395131 -52127,3310:373:2,103.5,-37,0,0,-0.0383691 -52128,3310:374:1,104,-37,0,0,-0.0453684 -52129,3310:374:2,104.5,-37,0,0,-0.0488998 -52130,3310:475:1,105,-37,0,0,-0.0494355 -52131,3310:475:2,105.5,-37,0,0,-0.0491154 -52132,3310:476:1,106,-37,0,0,-0.0491269 -52133,3310:476:2,106.5,-37,0,0,-0.0513056 -52134,3310:477:1,107,-37,0,0,-0.0564577 -52135,3310:477:2,107.5,-37,0,0,-0.0592982 -52136,3310:478:1,108,-37,0,0,-0.0567355 -52137,3310:478:2,108.5,-37,0,0,-0.0456945 -52138,3310:479:1,109,-37,0,0,-0.0397133 -52139,3310:479:2,109.5,-37,0,0,-0.0399698 -52140,3311:370:1,110,-37,0,0,-0.0435827 -52141,3311:370:2,110.5,-37,0,0,-0.0511509 -52142,3311:371:1,111,-37,0,0,-0.0669223 -52143,3311:371:2,111.5,-37,0,0,-0.080869 -52144,3311:372:1,112,-37,0,0,-0.0815873 -52145,3311:372:2,112.5,-37,0,0,-0.0817624 -52146,3311:373:1,113,-37,0,0,-0.082253 -52147,3311:373:2,113.5,-37,0,0,-0.0756508 -52148,3311:374:1,114,-37,0,0,-0.0673658 -52149,3311:374:2,114.5,-37,0,0,-0.0559856 -52150,3311:475:1,115,-37,0,0,-0.0557899 -52151,3311:475:2,115.5,-37,0,0,-0.0580493 -52152,3311:476:1,116,-37,0,0,-0.0622018 -52153,3311:476:2,116.5,-37,0,0,-0.066891 -52154,3311:477:1,117,-37,0,0,-0.0669854 -52155,3311:477:2,117.5,-37,0,0,-0.0620705 -52156,3311:478:1,118,-37,0,0,-0.0593537 -52157,3311:478:2,118.5,-37,0,0,-0.0574689 -52158,3311:479:1,119,-37,0,0,-0.0588006 -52159,3311:479:2,119.5,-37,0,0,-0.0649198 -52160,3312:370:1,120,-37,0,0,-0.0765919 -52161,3312:370:2,120.5,-37,0,0,-0.081978 -52162,3312:371:1,121,-37,0,0,-0.0827855 -52163,3312:371:2,121.5,-37,0,0,-0.0808113 -52164,3312:372:1,122,-37,0,0,-0.0789622 -52165,3312:372:2,122.5,-37,0,0,-0.0777674 -52166,3312:373:1,123,-37,0,0,-0.078793 -52167,3312:373:2,123.5,-37,0,0,-0.0797953 -52168,3312:374:1,124,-37,0,0,-0.0794915 -52169,3312:374:2,124.5,-37,0,0,-0.0793585 -52170,3312:475:1,125,-37,0,0,-0.0784744 -52171,3312:475:2,125.5,-37,0,0,-0.076957 -52172,3312:476:1,126,-37,0,0,-0.0760657 -52173,3312:476:2,126.5,-37,0,0,-0.0771036 -52174,3312:477:1,127,-37,0,0,-0.0805221 -52175,3312:477:2,127.5,-37,0,0,-0.0839228 -52176,3312:478:1,128,-37,0,0,-0.0822134 -52177,3312:478:2,128.5,-37,0,0,-0.0803305 -52178,3312:479:1,129,-37,0,0,-0.0794157 -52179,3312:479:2,129.5,-37,0,0,-0.079321 -52180,3313:370:1,130,-37,0,0,-0.079605 -52181,3313:370:2,130.5,-37,0,0,-0.0803305 -52182,3313:371:1,131,-37,0,0,-0.0810431 -52183,3313:371:2,131.5,-37,0,0,-0.0806184 -52184,3313:372:1,132,-37,0,0,-0.0796623 -52185,3313:372:2,132.5,-37,0,0,-0.0785492 -52186,3313:373:1,133,-37,0,0,-0.0775642 -52187,3313:373:2,133.5,-37,0,0,-0.0767924 -52188,3313:374:1,134,-37,0,0,-0.0763012 -52189,3313:374:2,134.5,-37,0,0,-0.0763921 -52190,3313:475:1,135,-37,0,0,-0.0774719 -52191,3313:475:2,135.5,-37,0,0,-0.0799284 -52192,3313:476:1,136,-37,0,0,-0.0826472 -52193,3313:476:2,136.5,-37,0,0,-0.0835618 -52194,3313:477:1,137,-37,0,0,-0.0829246 -52195,3313:477:2,137.5,-37,0,0,-0.0791319 -52196,3313:478:1,138,-37,0,0,-0.0762647 -52197,3313:478:2,138.5,-37,0,0,-0.0750063 -52198,3313:479:1,139,-37,0,0,-0.0755428 -52199,3313:479:2,139.5,-37,0,0,-0.0806571 -52200,3314:370:1,140,-37,0,0,-0.0888567 -52201,3314:370:2,140.5,-37,0,0,-0.0881118 -52202,3314:371:1,141,-37,0,0,-0.0861657 -52203,3314:371:2,141.5,-37,0,0,-0.0860622 -52204,3314:372:1,142,-37,0,0,-0.0903669 -52205,3314:372:2,142.5,-37,0,0,-0.0934033 -52206,3314:373:1,143,-37,0,0,-0.0940829 -52207,3314:373:2,143.5,-37,0,0,-0.0968553 -52208,3314:374:1,144,-37,0,0,-0.100839 -52209,3314:374:2,144.5,-37,0,0,-0.111987 -52210,3314:475:1,145,-37,0,0,-0.120946 -52211,3314:475:2,145.5,-37,0,0,-0.124229 -52212,3314:476:1,146,-37,0,0,-0.11663 -52213,3314:476:2,146.5,-37,0,0,-0.103374 -52214,3314:477:1,147,-37,0,0,-0.0859382 -52215,3314:477:2,147.5,-37,0,0,-0.08188 -52216,3314:478:1,148,-37,0,0,-0.0822332 -52217,3314:478:2,148.5,-37,0,0,-0.0839228 -52218,3314:479:1,149,-37,0,0,-0.0869342 -52219,3314:479:2,149.5,-37,0,0,-0.0919266 -52220,3315:370:1,150,-37,0,0,-0.101257 -52221,3315:370:2,150.5,-37,0,0,-0.106421 -52222,3315:371:1,151,-37,0,0,-0.106578 -52223,3315:371:2,151.5,-37,0,0,-0.107468 -52224,3315:372:1,152,-37,0,0,-0.118781 -52225,3315:372:2,152.5,-37,0,0,-0.122393 -52226,3315:373:1,153,-37,0,0,-0.11557 -52227,3315:373:2,153.5,-37,0,0,-0.0888991 -52228,3315:374:1,154,-37,0,0,-0.0896729 -52229,3315:374:2,154.5,-37,0,0,-0.094402 -52230,3315:475:1,155,-37,0,0,-0.0979893 -52231,3315:475:2,155.5,-37,0,0,-0.0928631 -52232,3315:476:1,156,-37,0,0,-0.0899322 -52233,3315:476:2,156.5,-37,0,0,-0.0891567 -52234,3315:477:1,157,-37,0,0,-0.0885578 -52235,3315:477:2,157.5,-37,0,0,-0.0887498 -52236,3315:478:1,158,-37,0,0,-0.0907378 -52237,3315:478:2,158.5,-37,0,0,-0.0945163 -52238,3315:479:1,159,-37,0,0,-0.0977755 -52239,3315:479:2,159.5,-37,0,0,-0.0975384 -52240,3316:370:1,160,-37,0,0,-0.0998872 -52241,3316:370:2,160.5,-37,0,0,-0.0992097 -52242,3316:371:1,161,-37,0,0,-0.0948364 -52243,3316:371:2,161.5,-37,0,0,-0.094814 -52244,3316:372:1,162,-37,0,0,-0.101825 -52245,3316:372:2,162.5,-37,0,0,-0.104745 -52246,3316:373:1,163,-37,0,0,-0.0990415 -52247,3316:373:2,163.5,-37,0,0,-0.0975623 -52248,3316:374:1,164,-37,0,0,-0.102147 -52249,3316:374:2,164.5,-37,0,0,-0.105104 -52250,3316:475:1,165,-37,0,0,-0.104873 -52251,3316:475:2,165.5,-37,0,0,-0.101701 -52252,3316:476:1,166,-37,0,0,-0.105747 -52253,3316:476:2,166.5,-37,0,0,-0.106291 -52254,3316:477:1,167,-37,0,0,-0.104643 -52255,3316:477:2,167.5,-37,0,0,-0.113903 -52256,3316:478:1,168,-37,0,0,-0.119428 -52257,3316:478:2,168.5,-37,0,0,-0.135964 -52258,3316:479:1,169,-37,0,0,-0.117091 -52259,3316:479:2,169.5,-37,0,0,-0.103956 -52260,3317:370:1,170,-37,0,0,-0.0980364 -52261,3317:370:2,170.5,-37,0,0,-0.0732302 -52262,3317:371:1,171,-37,0,0,-0.0666077 -52263,3317:371:2,171.5,-37,0,0,-0.0641761 -52264,3317:372:1,172,-37,0,0,-0.0623043 -52265,3317:372:2,172.5,-37,0,0,-0.0649351 -52266,3317:373:1,173,-37,0,0,-0.0674293 -52267,3317:373:2,173.5,-37,0,0,-0.0679561 -52268,3317:374:1,174,-37,0,0,-0.0667175 -52269,3317:374:2,174.5,-37,0,0,-0.0660141 -52270,3317:475:1,175,-37,0,0,-0.065673 -52271,3317:475:2,175.5,-37,0,0,-0.0649351 -52272,3317:476:1,176,-37,0,0,-0.0636352 -52273,3317:476:2,176.5,-37,0,0,-0.0621875 -52274,3317:477:1,177,-37,0,0,-0.0606748 -52275,3317:477:2,177.5,-37,0,0,-0.0590902 -52276,3317:478:1,178,-37,0,0,-0.0576302 -52277,3317:478:2,178.5,-37,0,0,-0.0566692 -52278,3317:479:1,179,-37,0,0,-0.0563396 -52279,3317:479:2,179.5,-37,0,0,-0.0563922 -52280,3318:370:1,180,-37,0,0,-0.0567221 -52281,5318:360:3,-180,-36.5,0,0,-0.0672543 -52282,5317:469:4,-179.5,-36.5,0,0,-0.0713127 -52283,5317:469:3,-179,-36.5,0,0,-0.0778975 -52284,5317:468:4,-178.5,-36.5,0,0,-0.0853633 -52285,5317:468:3,-178,-36.5,0,0,-0.0893284 -52286,5317:467:4,-177.5,-36.5,0,0,-0.0908032 -52287,5317:467:3,-177,-36.5,0,0,-0.0908032 -52288,5317:466:4,-176.5,-36.5,0,0,-0.0893284 -52289,5317:466:3,-176,-36.5,0,0,-0.0895432 -52290,5317:465:4,-175.5,-36.5,0,0,-0.0919266 -52291,5317:465:3,-175,-36.5,0,0,-0.0949057 -52292,5317:364:4,-174.5,-36.5,0,0,-0.0995958 -52293,5317:364:3,-174,-36.5,0,0,-0.103324 -52294,5317:363:4,-173.5,-36.5,0,0,-0.100789 -52295,5317:363:3,-173,-36.5,0,0,-0.102522 -52296,5317:362:4,-172.5,-36.5,0,0,-0.1081 -52297,5317:362:3,-172,-36.5,0,0,-0.112124 -52298,5317:361:4,-171.5,-36.5,0,0,-0.117554 -52299,5317:361:3,-171,-36.5,0,0,-0.126756 -52300,5317:360:4,-170.5,-36.5,0,0,-0.133882 -52301,5317:360:3,-170,-36.5,0,0,-0.13605 -52302,5316:469:4,-169.5,-36.5,0,0,-0.13605 -52303,5316:469:3,-169,-36.5,0,0,-0.135231 -52304,5316:468:4,-168.5,-36.5,0,0,-0.128922 -52305,5316:468:3,-168,-36.5,0,0,-0.124445 -52306,5316:467:4,-167.5,-36.5,0,0,-0.122423 -52307,5316:467:3,-167,-36.5,0,0,-0.123368 -52308,5316:466:4,-166.5,-36.5,0,0,-0.126504 -52309,5316:466:3,-166,-36.5,0,0,-0.12793 -52310,5316:465:4,-165.5,-36.5,0,0,-0.12889 -52311,5316:465:3,-165,-36.5,0,0,-0.127834 -52312,5316:364:4,-164.5,-36.5,0,0,-0.127104 -52313,5316:364:3,-164,-36.5,0,0,-0.125845 -52314,5316:363:4,-163.5,-36.5,0,0,-0.123521 -52315,5316:363:3,-163,-36.5,0,0,-0.121125 -52316,5316:362:4,-162.5,-36.5,0,0,-0.121395 -52317,5316:362:3,-162,-36.5,0,0,-0.127675 -52318,5316:361:4,-161.5,-36.5,0,0,-0.135904 -52319,5316:361:3,-161,-36.5,0,0,-0.13605 -52320,5316:360:4,-160.5,-36.5,0,0,-0.136 -52321,5316:360:3,-160,-36.5,0,0,-0.135932 -52322,5315:469:4,-159.5,-36.5,0,0,-0.135983 -52323,5315:469:3,-159,-36.5,0,0,-0.135913 -52324,5315:468:4,-158.5,-36.5,0,0,-0.135604 -52325,5315:468:3,-158,-36.5,0,0,-0.13605 -52326,5315:467:4,-157.5,-36.5,0,0,-0.13605 -52327,5315:467:3,-157,-36.5,0,0,-0.13605 -52328,5315:466:4,-156.5,-36.5,0,0,-0.13605 -52329,5315:466:3,-156,-36.5,0,0,-0.13605 -52330,5315:465:4,-155.5,-36.5,0,0,-0.13605 -52331,5315:465:3,-155,-36.5,0,0,-0.13605 -52332,5315:364:4,-154.5,-36.5,0,0,-0.13605 -52333,5315:364:3,-154,-36.5,0,0,-0.13605 -52334,5315:363:4,-153.5,-36.5,0,0,-0.13605 -52335,5315:363:3,-153,-36.5,0,0,-0.13605 -52336,5315:362:4,-152.5,-36.5,0,0,-0.13605 -52337,5315:362:3,-152,-36.5,0,0,-0.13605 -52338,5315:361:4,-151.5,-36.5,0,0,-0.13605 -52339,5315:361:3,-151,-36.5,0,0,-0.13605 -52340,5315:360:4,-150.5,-36.5,0,0,-0.13605 -52341,5315:360:3,-150,-36.5,0,0,-0.13605 -52342,5314:469:4,-149.5,-36.5,0,0,-0.13605 -52343,5314:469:3,-149,-36.5,0,0,-0.13605 -52344,5314:468:4,-148.5,-36.5,0,0,-0.13605 -52345,5314:468:3,-148,-36.5,0,0,-0.13605 -52346,5314:467:4,-147.5,-36.5,0,0,-0.13605 -52347,5314:467:3,-147,-36.5,0,0,-0.13605 -52348,5314:466:4,-146.5,-36.5,0,0,-0.13605 -52349,5314:466:3,-146,-36.5,0,0,-0.13605 -52350,5314:465:4,-145.5,-36.5,0,0,-0.13605 -52351,5314:465:3,-145,-36.5,0,0,-0.13605 -52352,5314:364:4,-144.5,-36.5,0,0,-0.13605 -52353,5314:364:3,-144,-36.5,0,0,-0.13605 -52354,5314:363:4,-143.5,-36.5,0,0,-0.13605 -52355,5314:363:3,-143,-36.5,0,0,-0.13605 -52356,5314:362:4,-142.5,-36.5,0,0,-0.13605 -52357,5314:362:3,-142,-36.5,0,0,-0.13605 -52358,5314:361:4,-141.5,-36.5,0,0,-0.13605 -52359,5314:361:3,-141,-36.5,0,0,-0.13605 -52360,5314:360:4,-140.5,-36.5,0,0,-0.13605 -52361,5314:360:3,-140,-36.5,0,0,-0.13605 -52362,5313:469:4,-139.5,-36.5,0,0,-0.13605 -52363,5313:469:3,-139,-36.5,0,0,-0.13605 -52364,5313:468:4,-138.5,-36.5,0,0,-0.13605 -52365,5313:468:3,-138,-36.5,0,0,-0.13605 -52366,5313:467:4,-137.5,-36.5,0,0,-0.135163 -52367,5313:467:3,-137,-36.5,0,0,-0.134622 -52368,5313:466:4,-136.5,-36.5,0,0,-0.135877 -52369,5313:466:3,-136,-36.5,0,0,-0.135956 -52370,5313:465:4,-135.5,-36.5,0,0,-0.13588 -52371,5313:465:3,-135,-36.5,0,0,-0.13348 -52372,5313:364:4,-134.5,-36.5,0,0,-0.131261 -52373,5313:364:3,-134,-36.5,0,0,-0.129632 -52374,5313:363:4,-133.5,-36.5,0,0,-0.129924 -52375,5313:363:3,-133,-36.5,0,0,-0.131853 -52376,5313:362:4,-132.5,-36.5,0,0,-0.133413 -52377,5313:362:3,-132,-36.5,0,0,-0.133413 -52378,5313:361:4,-131.5,-36.5,0,0,-0.133379 -52379,5313:361:3,-131,-36.5,0,0,-0.13136 -52380,5313:360:4,-130.5,-36.5,0,0,-0.12857 -52381,5313:360:3,-130,-36.5,0,0,-0.127484 -52382,5312:469:4,-129.5,-36.5,0,0,-0.128026 -52383,5312:469:3,-129,-36.5,0,0,-0.129535 -52384,5312:468:4,-128.5,-36.5,0,0,-0.131688 -52385,5312:468:3,-128,-36.5,0,0,-0.134083 -52386,5312:467:4,-127.5,-36.5,0,0,-0.13557 -52387,5312:467:3,-127,-36.5,0,0,-0.134858 -52388,5312:466:4,-126.5,-36.5,0,0,-0.133246 -52389,5312:466:3,-126,-36.5,0,0,-0.132581 -52390,5312:465:4,-125.5,-36.5,0,0,-0.132713 -52391,5312:465:3,-125,-36.5,0,0,-0.132217 -52392,5312:364:4,-124.5,-36.5,0,0,-0.13064 -52393,5312:364:3,-124,-36.5,0,0,-0.131556 -52394,5312:363:4,-123.5,-36.5,0,0,-0.135197 -52395,5312:363:3,-123,-36.5,0,0,-0.135937 -52396,5312:362:4,-122.5,-36.5,0,0,-0.129503 -52397,5312:362:3,-122,-36.5,0,0,-0.127707 -52398,5312:361:4,-121.5,-36.5,0,0,-0.129374 -52399,5312:361:3,-121,-36.5,0,0,-0.122696 -52400,5312:360:4,-120.5,-36.5,0,0,-0.120318 -52401,5312:360:3,-120,-36.5,0,0,-0.122575 -52402,5311:469:4,-119.5,-36.5,0,0,-0.123123 -52403,5311:469:3,-119,-36.5,0,0,-0.119369 -52404,5311:468:4,-118.5,-36.5,0,0,-0.113233 -52405,5311:468:3,-118,-36.5,0,0,-0.113121 -52406,5311:467:4,-117.5,-36.5,0,0,-0.115002 -52407,5311:467:3,-117,-36.5,0,0,-0.112871 -52408,5311:466:4,-116.5,-36.5,0,0,-0.113539 -52409,5311:466:3,-116,-36.5,0,0,-0.110919 -52410,5311:465:4,-115.5,-36.5,0,0,-0.104439 -52411,5311:465:3,-115,-36.5,0,0,-0.10013 -52412,5311:364:4,-114.5,-36.5,0,0,-0.0994755 -52413,5311:364:3,-114,-36.5,0,0,-0.0998139 -52414,5311:363:4,-113.5,-36.5,0,0,-0.0977755 -52415,5311:363:3,-113,-36.5,0,0,-0.0936294 -52416,5311:362:4,-112.5,-36.5,0,0,-0.092416 -52417,5311:362:3,-112,-36.5,0,0,-0.0962706 -52418,5311:361:4,-111.5,-36.5,0,0,-0.100961 -52419,5311:361:3,-111,-36.5,0,0,-0.102346 -52420,5311:360:4,-110.5,-36.5,0,0,-0.0941058 -52421,5311:360:3,-110,-36.5,0,0,-0.0873321 -52422,5310:469:4,-109.5,-36.5,0,0,-0.0866842 -52423,5310:469:3,-109,-36.5,0,0,-0.085712 -52424,5310:468:4,-108.5,-36.5,0,0,-0.083024 -52425,5310:468:3,-108,-36.5,0,0,-0.0823906 -52426,5310:467:4,-107.5,-36.5,0,0,-0.0843867 -52427,5310:467:3,-107,-36.5,0,0,-0.0871639 -52428,5310:466:4,-106.5,-36.5,0,0,-0.0873526 -52429,5310:466:3,-106,-36.5,0,0,-0.0859174 -52430,5310:465:4,-105.5,-36.5,0,0,-0.0824496 -52431,5310:465:3,-105,-36.5,0,0,-0.0786996 -52432,5310:364:4,-104.5,-36.5,0,0,-0.0784744 -52433,5310:364:3,-104,-36.5,0,0,-0.081101 -52434,5310:363:4,-103.5,-36.5,0,0,-0.0831229 -52435,5310:363:3,-103,-36.5,0,0,-0.0788308 -52436,5310:362:4,-102.5,-36.5,0,0,-0.0737008 -52437,5310:362:3,-102,-36.5,0,0,-0.0739632 -52438,5310:361:4,-101.5,-36.5,0,0,-0.0757227 -52439,5310:361:3,-101,-36.5,0,0,-0.0767378 -52440,5310:360:4,-100.5,-36.5,0,0,-0.0785121 -52441,5310:360:3,-100,-36.5,0,0,-0.0799476 -52442,5309:469:4,-99.5,-36.5,0,0,-0.0783251 -52443,5309:469:3,-99,-36.5,0,0,-0.076866 -52444,5309:468:4,-98.5,-36.5,0,0,-0.0797001 -52445,5309:468:3,-98,-36.5,0,0,-0.0795864 -52446,5309:467:4,-97.5,-36.5,0,0,-0.0754536 -52447,5309:467:3,-97,-36.5,0,0,-0.0728144 -52448,5309:466:4,-96.5,-36.5,0,0,-0.0716002 -52449,5309:466:3,-96,-36.5,0,0,-0.0707076 -52450,5309:465:4,-95.5,-36.5,0,0,-0.0729182 -52451,5309:465:3,-95,-36.5,0,0,-0.0758128 -52452,5309:364:4,-94.5,-36.5,0,0,-0.0751315 -52453,5309:364:3,-94,-36.5,0,0,-0.075579 -52454,5309:363:4,-93.5,-36.5,0,0,-0.0782135 -52455,5309:363:3,-93,-36.5,0,0,-0.0796432 -52456,5309:362:4,-92.5,-36.5,0,0,-0.0753098 -52457,5309:362:3,-92,-36.5,0,0,-0.0674293 -52458,5309:361:4,-91.5,-36.5,0,0,-0.0662633 -52459,5309:361:3,-91,-36.5,0,0,-0.0699922 -52460,5309:360:4,-90.5,-36.5,0,0,-0.0719061 -52461,5309:360:3,-90,-36.5,0,0,-0.074386 -52462,5308:469:4,-89.5,-36.5,0,0,-0.0783439 -52463,5308:469:3,-89,-36.5,0,0,-0.0753994 -52464,5308:468:4,-88.5,-36.5,0,0,-0.0738578 -52465,5308:468:3,-88,-36.5,0,0,-0.0718381 -52466,5308:467:4,-87.5,-36.5,0,0,-0.0687954 -52467,5308:467:3,-87,-36.5,0,0,-0.0726592 -52468,5308:466:4,-86.5,-36.5,0,0,-0.0724876 -52469,5308:466:3,-86,-36.5,0,0,-0.0716509 -52470,5308:465:4,-85.5,-36.5,0,0,-0.0699095 -52471,5308:465:3,-85,-36.5,0,0,-0.0738755 -52472,5308:364:4,-84.5,-36.5,0,0,-0.0762464 -52473,5308:364:3,-84,-36.5,0,0,-0.0751669 -52474,5308:363:4,-83.5,-36.5,0,0,-0.07428 -52475,5308:363:3,-83,-36.5,0,0,-0.0738931 -52476,5308:362:4,-82.5,-36.5,0,0,-0.0739284 -52477,5308:362:3,-82,-36.5,0,0,-0.073648 -52478,5308:361:4,-81.5,-36.5,0,0,-0.0715154 -52479,5308:361:3,-81,-36.5,0,0,-0.0733341 -52480,5308:360:4,-80.5,-36.5,0,0,-0.0768108 -52481,5308:360:3,-80,-36.5,0,0,-0.078046 -52482,5307:469:4,-79.5,-36.5,0,0,-0.0789438 -52483,5307:469:3,-79,-36.5,0,0,-0.0816844 -52484,5307:468:4,-78.5,-36.5,0,0,-0.0823119 -52485,5307:468:3,-78,-36.5,0,0,-0.0794533 -52486,5307:467:4,-77.5,-36.5,0,0,-0.0770487 -52487,5307:467:3,-77,-36.5,0,0,-0.0782505 -52488,5307:466:4,-76.5,-36.5,0,0,-0.0810431 -52489,5307:466:3,-76,-36.5,0,0,-0.0825682 -52490,5307:465:4,-75.5,-36.5,0,0,-0.0896946 -52491,5307:465:3,-75,-36.5,0,0,-0.0919713 -52492,5306:467:4,-67.5,-36.5,0,0,-0.12723 -52493,5306:467:3,-67,-36.5,0,0,-0.131623 -52494,5306:466:4,-66.5,-36.5,0,0,-0.123093 -52495,5306:466:3,-66,-36.5,0,0,-0.118137 -52496,5306:465:4,-65.5,-36.5,0,0,-0.116428 -52497,5306:465:3,-65,-36.5,0,0,-0.115456 -52498,5306:364:4,-64.5,-36.5,0,0,-0.119339 -52499,5306:364:3,-64,-36.5,0,0,-0.115314 -52500,5306:363:4,-63.5,-36.5,0,0,-0.106656 -52501,5306:363:3,-63,-36.5,0,0,-0.103374 -52502,5306:362:4,-62.5,-36.5,0,0,-0.106213 -52503,5306:362:3,-62,-36.5,0,0,-0.108339 -52504,5306:361:4,-61.5,-36.5,0,0,-0.108127 -52505,5306:361:3,-61,-36.5,0,0,-0.104082 -52506,5306:360:4,-60.5,-36.5,0,0,-0.095968 -52507,5306:360:3,-60,-36.5,0,0,-0.0804259 -52508,5305:469:4,-59.5,-36.5,0,0,-0.0619835 -52509,5305:469:3,-59,-36.5,0,0,-0.0503848 -52510,5305:468:4,-58.5,-36.5,0,0,-0.0546315 -52511,5305:468:3,-58,-36.5,0,0,-0.0710597 -52512,5305:467:4,-57.5,-36.5,0,0,-0.0939241 -52513,5305:467:3,-57,-36.5,0,0,-0.112898 -52514,5305:466:4,-56.5,-36.5,0,0,-0.121185 -52515,5305:466:3,-56,-36.5,0,0,-0.130966 -52516,5305:465:4,-55.5,-36.5,0,0,-0.13605 -52517,5305:465:3,-55,-36.5,0,0,-0.13605 -52518,5305:364:4,-54.5,-36.5,0,0,-0.13605 -52519,5305:364:3,-54,-36.5,0,0,-0.13605 -52520,5305:363:4,-53.5,-36.5,0,0,-0.13605 -52521,5305:363:3,-53,-36.5,0,0,-0.13605 -52522,5305:362:4,-52.5,-36.5,0,0,-0.13605 -52523,5305:362:3,-52,-36.5,0,0,-0.13605 -52524,5305:361:4,-51.5,-36.5,0,0,-0.13605 -52525,5305:361:3,-51,-36.5,0,0,-0.13605 -52526,5305:360:4,-50.5,-36.5,0,0,-0.13605 -52527,5305:360:3,-50,-36.5,0,0,-0.130086 -52528,5304:469:4,-49.5,-36.5,0,0,-0.116601 -52529,5304:469:3,-49,-36.5,0,0,-0.101404 -52530,5304:468:4,-48.5,-36.5,0,0,-0.0959446 -52531,5304:468:3,-48,-36.5,0,0,-0.0974915 -52532,5304:467:4,-47.5,-36.5,0,0,-0.0968088 -52533,5304:467:3,-47,-36.5,0,0,-0.0950431 -52534,5304:466:4,-46.5,-36.5,0,0,-0.0942419 -52535,5304:466:3,-46,-36.5,0,0,-0.0931777 -52536,5304:465:4,-45.5,-36.5,0,0,-0.0918603 -52537,5304:465:3,-45,-36.5,0,0,-0.0895432 -52538,5304:364:4,-44.5,-36.5,0,0,-0.0868087 -52539,5304:364:3,-44,-36.5,0,0,-0.0848527 -52540,5304:363:4,-43.5,-36.5,0,0,-0.0792454 -52541,5304:363:3,-43,-36.5,0,0,-0.0720763 -52542,5304:362:4,-42.5,-36.5,0,0,-0.0712282 -52543,5304:362:3,-42,-36.5,0,0,-0.0720081 -52544,5304:361:4,-41.5,-36.5,0,0,-0.0729008 -52545,5304:361:3,-41,-36.5,0,0,-0.0738231 -52546,5304:360:4,-40.5,-36.5,0,0,-0.0725904 -52547,5304:360:3,-40,-36.5,0,0,-0.0669699 -52548,5303:469:4,-39.5,-36.5,0,0,-0.0645239 -52549,5303:469:3,-39,-36.5,0,0,-0.0646913 -52550,5303:468:4,-38.5,-36.5,0,0,-0.0649962 -52551,5303:468:3,-38,-36.5,0,0,-0.0661852 -52552,5303:467:4,-37.5,-36.5,0,0,-0.0680687 -52553,5303:467:3,-37,-36.5,0,0,-0.0650883 -52554,5303:466:4,-36.5,-36.5,0,0,-0.0611458 -52555,5303:466:3,-36,-36.5,0,0,-0.0588695 -52556,5303:465:4,-35.5,-36.5,0,0,-0.0566164 -52557,5303:465:3,-35,-36.5,0,0,-0.0528549 -52558,5303:364:4,-34.5,-36.5,0,0,-0.0479465 -52559,5303:364:3,-34,-36.5,0,0,-0.044241 -52560,5303:363:4,-33.5,-36.5,0,0,-0.044333 -52561,5303:363:3,-33,-36.5,0,0,-0.046076 -52562,5303:362:4,-32.5,-36.5,0,0,-0.0478133 -52563,5303:362:3,-32,-36.5,0,0,-0.0475374 -52564,5303:361:4,-31.5,-36.5,0,0,-0.0448269 -52565,5303:361:3,-31,-36.5,0,0,-0.0416395 -52566,5303:360:4,-30.5,-36.5,0,0,-0.0403573 -52567,5303:360:3,-30,-36.5,0,0,-0.0425018 -52568,5302:469:4,-29.5,-36.5,0,0,-0.049161 -52569,5302:469:3,-29,-36.5,0,0,-0.046817 -52570,5302:468:4,-28.5,-36.5,0,0,-0.0436029 -52571,5302:468:3,-28,-36.5,0,0,-0.0418412 -52572,5302:467:4,-27.5,-36.5,0,0,-0.0444458 -52573,5302:467:3,-27,-36.5,0,0,-0.0476255 -52574,5302:466:4,-26.5,-36.5,0,0,-0.0521226 -52575,5302:466:3,-26,-36.5,0,0,-0.0552977 -52576,5302:465:4,-25.5,-36.5,0,0,-0.0491839 -52577,5302:465:3,-25,-36.5,0,0,-0.0444458 -52578,5302:364:4,-24.5,-36.5,0,0,-0.0536106 -52579,5302:364:3,-24,-36.5,0,0,-0.0605045 -52580,5302:363:4,-23.5,-36.5,0,0,-0.0600383 -52581,5302:363:3,-23,-36.5,0,0,-0.0543143 -52582,5302:362:4,-22.5,-36.5,0,0,-0.0560115 -52583,5302:362:3,-22,-36.5,0,0,-0.0714478 -52584,5302:361:4,-21.5,-36.5,0,0,-0.07428 -52585,5302:361:3,-21,-36.5,0,0,-0.0748109 -52586,5302:360:4,-20.5,-36.5,0,0,-0.0742095 -52587,5302:360:3,-20,-36.5,0,0,-0.0710094 -52588,5301:469:4,-19.5,-36.5,0,0,-0.051389 -52589,5301:469:3,-19,-36.5,0,0,-0.0404688 -52590,5301:468:4,-18.5,-36.5,0,0,-0.0430237 -52591,5301:468:3,-18,-36.5,0,0,-0.0516165 -52592,5301:467:4,-17.5,-36.5,0,0,-0.0537731 -52593,5301:467:3,-17,-36.5,0,0,-0.0422186 -52594,5301:466:4,-16.5,-36.5,0,0,-0.0368601 -52595,5301:466:3,-16,-36.5,0,0,-0.0363238 -52596,5301:465:4,-15.5,-36.5,0,0,-0.0366497 -52597,5301:465:3,-15,-36.5,0,0,-0.0378273 -52598,5301:364:4,-14.5,-36.5,0,0,-0.0409366 -52599,5301:364:3,-14,-36.5,0,0,-0.0394498 -52600,5301:363:4,-13.5,-36.5,0,0,-0.0337992 -52601,5301:363:3,-13,-36.5,0,0,-0.0297285 -52602,5301:362:4,-12.5,-36.5,0,0,-0.0297148 -52603,5301:362:3,-12,-36.5,0,0,-0.0310214 -52604,5301:361:4,-11.5,-36.5,0,0,-0.0343914 -52605,5301:361:3,-11,-36.5,0,0,-0.0391789 -52606,5301:360:4,-10.5,-36.5,0,0,-0.0465258 -52607,5301:360:3,-10,-36.5,0,0,-0.0494813 -52608,5300:469:4,-9.5,-36.5,0,0,-0.0475596 -52609,5300:469:3,-9,-36.5,0,0,-0.044569 -52610,5300:468:4,-8.5,-36.5,0,0,-0.0440272 -52611,5300:468:3,-8,-36.5,0,0,-0.0455363 -52612,5300:467:4,-7.5,-36.5,0,0,-0.0485271 -52613,5300:467:3,-7,-36.5,0,0,-0.051905 -52614,5300:466:4,-6.5,-36.5,0,0,-0.0547591 -52615,5300:466:3,-6,-36.5,0,0,-0.0569875 -52616,5300:465:4,-5.5,-36.5,0,0,-0.0578596 -52617,5300:465:3,-5,-36.5,0,0,-0.0562866 -52618,5300:364:4,-4.5,-36.5,0,0,-0.0528917 -52619,5300:364:3,-4,-36.5,0,0,-0.0506546 -52620,5300:363:4,-3.5,-36.5,0,0,-0.0488093 -52621,5300:363:3,-3,-36.5,0,0,-0.0518446 -52622,5300:362:4,-2.5,-36.5,0,0,-0.0582397 -52623,5300:362:3,-2,-36.5,0,0,-0.0647977 -52624,5300:361:4,-1.5,-36.5,0,0,-0.0652263 -52625,5300:361:3,-1,-36.5,0,0,-0.0613324 -52626,5300:360:4,-0.5,-36.5,0,0,-0.0586497 -52627,3300:360:4,0,-36.5,0,0,-0.0594093 -52628,3300:360:4,0.5,-36.5,0,0,-0.0557768 -52629,3300:361:3,1,-36.5,0,0,-0.0506898 -52630,3300:361:4,1.5,-36.5,0,0,-0.0514845 -52631,3300:362:3,2,-36.5,0,0,-0.0497461 -52632,3300:362:4,2.5,-36.5,0,0,-0.044017 -52633,3300:363:3,3,-36.5,0,0,-0.0460442 -52634,3300:363:4,3.5,-36.5,0,0,-0.0455996 -52635,3300:364:3,4,-36.5,0,0,-0.045779 -52636,3300:364:4,4.5,-36.5,0,0,-0.0472633 -52637,3300:465:3,5,-36.5,0,0,-0.0453473 -52638,3300:465:4,5.5,-36.5,0,0,-0.0384396 -52639,3300:466:3,6,-36.5,0,0,-0.0370804 -52640,3300:466:4,6.5,-36.5,0,0,-0.0367844 -52641,3300:467:3,7,-36.5,0,0,-0.0401445 -52642,3300:467:4,7.5,-36.5,0,0,-0.045832 -52643,3300:468:3,8,-36.5,0,0,-0.0509375 -52644,3300:468:4,8.5,-36.5,0,0,-0.0541374 -52645,3300:469:3,9,-36.5,0,0,-0.0558161 -52646,3300:469:4,9.5,-36.5,0,0,-0.0557248 -52647,3301:360:3,10,-36.5,0,0,-0.0533989 -52648,3301:360:4,10.5,-36.5,0,0,-0.0476807 -52649,3301:361:3,11,-36.5,0,0,-0.0398687 -52650,3301:361:4,11.5,-36.5,0,0,-0.0363822 -52651,3301:362:3,12,-36.5,0,0,-0.0352834 -52652,3301:362:4,12.5,-36.5,0,0,-0.0369362 -52653,3301:363:3,13,-36.5,0,0,-0.0407208 -52654,3301:363:4,13.5,-36.5,0,0,-0.0448477 -52655,3301:364:3,14,-36.5,0,0,-0.0480687 -52656,3301:364:4,14.5,-36.5,0,0,-0.0482024 -52657,3301:465:3,15,-36.5,0,0,-0.0462574 -52658,3301:465:4,15.5,-36.5,0,0,-0.0446617 -52659,3301:466:3,16,-36.5,0,0,-0.0451384 -52660,3301:466:4,16.5,-36.5,0,0,-0.045853 -52661,3301:467:3,17,-36.5,0,0,-0.042141 -52662,3301:467:4,17.5,-36.5,0,0,-0.0326838 -52663,3301:468:3,18,-36.5,0,0,-0.0274119 -52664,3301:468:4,18.5,-36.5,0,0,-0.0284845 -52665,3301:469:3,19,-36.5,0,0,-0.0285039 -52666,3301:469:4,19.5,-36.5,0,0,-0.0289149 -52667,3302:360:3,20,-36.5,0,0,-0.0297353 -52668,3302:360:4,20.5,-36.5,0,0,-0.031384 -52669,3302:361:3,21,-36.5,0,0,-0.0334843 -52670,3302:361:4,21.5,-36.5,0,0,-0.0345489 -52671,3302:362:3,22,-36.5,0,0,-0.0356322 -52672,3302:362:4,22.5,-36.5,0,0,-0.0396132 -52673,3302:363:3,23,-36.5,0,0,-0.0432026 -52674,3302:363:4,23.5,-36.5,0,0,-0.0443636 -52675,3302:364:3,24,-36.5,0,0,-0.041928 -52676,3302:364:4,24.5,-36.5,0,0,-0.0434324 -52677,3302:465:3,25,-36.5,0,0,-0.0434825 -52678,3302:465:4,25.5,-36.5,0,0,-0.0406646 -52679,3302:466:3,26,-36.5,0,0,-0.0383251 -52680,3302:466:4,26.5,-36.5,0,0,-0.037362 -52681,3302:467:3,27,-36.5,0,0,-0.0350422 -52682,3302:467:4,27.5,-36.5,0,0,-0.0338997 -52683,3302:468:3,28,-36.5,0,0,-0.0348503 -52684,3302:468:4,28.5,-36.5,0,0,-0.0351063 -52685,3302:469:3,29,-36.5,0,0,-0.0411255 -52686,3302:469:4,29.5,-36.5,0,0,-0.0515565 -52687,3303:360:3,30,-36.5,0,0,-0.0479574 -52688,3303:360:4,30.5,-36.5,0,0,-0.0444662 -52689,3303:361:3,31,-36.5,0,0,-0.0450552 -52690,3303:361:4,31.5,-36.5,0,0,-0.0452324 -52691,3303:362:3,32,-36.5,0,0,-0.044641 -52692,3303:362:4,32.5,-36.5,0,0,-0.0436732 -52693,3303:363:3,33,-36.5,0,0,-0.0425702 -52694,3303:363:4,33.5,-36.5,0,0,-0.0416299 -52695,3303:364:3,34,-36.5,0,0,-0.0408052 -52696,3303:364:4,34.5,-36.5,0,0,-0.0400615 -52697,3303:465:3,35,-36.5,0,0,-0.0394498 -52698,3303:465:4,35.5,-36.5,0,0,-0.0390083 -52699,3303:466:3,36,-36.5,0,0,-0.038528 -52700,3303:466:4,36.5,-36.5,0,0,-0.0373706 -52701,3303:467:3,37,-36.5,0,0,-0.0351544 -52702,3303:467:4,37.5,-36.5,0,0,-0.0338457 -52703,3303:468:3,38,-36.5,0,0,-0.0334843 -52704,3303:468:4,38.5,-36.5,0,0,-0.0343993 -52705,3303:469:3,39,-36.5,0,0,-0.0357384 -52706,3303:469:4,39.5,-36.5,0,0,-0.0356892 -52707,3304:360:3,40,-36.5,0,0,-0.0352268 -52708,3304:360:4,40.5,-36.5,0,0,-0.0366162 -52709,3304:361:3,41,-36.5,0,0,-0.040562 -52710,3304:361:4,41.5,-36.5,0,0,-0.0440272 -52711,3304:362:3,42,-36.5,0,0,-0.0424039 -52712,3304:362:4,42.5,-36.5,0,0,-0.0416109 -52713,3304:363:3,43,-36.5,0,0,-0.0407303 -52714,3304:363:4,43.5,-36.5,0,0,-0.0397498 -52715,3304:364:3,44,-36.5,0,0,-0.0385102 -52716,3304:364:4,44.5,-36.5,0,0,-0.037021 -52717,3304:465:3,45,-36.5,0,0,-0.0360339 -52718,3304:465:4,45.5,-36.5,0,0,-0.0353238 -52719,3304:466:3,46,-36.5,0,0,-0.0339695 -52720,3304:466:4,46.5,-36.5,0,0,-0.0317436 -52721,3304:467:3,47,-36.5,0,0,-0.0298368 -52722,3304:467:4,47.5,-36.5,0,0,-0.028246 -52723,3304:468:3,48,-36.5,0,0,-0.0259301 -52724,3304:468:4,48.5,-36.5,0,0,-0.0248883 -52725,3304:469:3,49,-36.5,0,0,-0.0272939 -52726,3304:469:4,49.5,-36.5,0,0,-0.0266815 -52727,3305:360:3,50,-36.5,0,0,-0.0260243 -52728,3305:360:4,50.5,-36.5,0,0,-0.0259653 -52729,3305:361:3,51,-36.5,0,0,-0.0253893 -52730,3305:361:4,51.5,-36.5,0,0,-0.0247309 -52731,3305:362:3,52,-36.5,0,0,-0.0239867 -52732,3305:362:4,52.5,-36.5,0,0,-0.0229417 -52733,3305:363:3,53,-36.5,0,0,-0.0225867 -52734,3305:363:4,53.5,-36.5,0,0,-0.0242981 -52735,3305:364:3,54,-36.5,0,0,-0.0284263 -52736,3305:364:4,54.5,-36.5,0,0,-0.0306004 -52737,3305:465:3,55,-36.5,0,0,-0.0344622 -52738,3305:465:4,55.5,-36.5,0,0,-0.046076 -52739,3305:466:3,56,-36.5,0,0,-0.041928 -52740,3305:466:4,56.5,-36.5,0,0,-0.0293656 -52741,3305:467:3,57,-36.5,0,0,-0.0268029 -52742,3305:467:4,57.5,-36.5,0,0,-0.0266876 -52743,3305:468:3,58,-36.5,0,0,-0.0261425 -52744,3305:468:4,58.5,-36.5,0,0,-0.0269127 -52745,3305:469:3,59,-36.5,0,0,-0.0308945 -52746,3305:469:4,59.5,-36.5,0,0,-0.0391789 -52747,3306:360:3,60,-36.5,0,0,-0.0465258 -52748,3306:360:4,60.5,-36.5,0,0,-0.0501865 -52749,3306:361:3,61,-36.5,0,0,-0.0544156 -52750,3306:361:4,61.5,-36.5,0,0,-0.0592842 -52751,3306:362:3,62,-36.5,0,0,-0.0474167 -52752,3306:362:4,62.5,-36.5,0,0,-0.0296407 -52753,3306:363:3,63,-36.5,0,0,-0.0259888 -52754,3306:363:4,63.5,-36.5,0,0,-0.0270657 -52755,3306:364:3,64,-36.5,0,0,-0.0296542 -52756,3306:364:4,64.5,-36.5,0,0,-0.0328558 -52757,3306:465:3,65,-36.5,0,0,-0.02958 -52758,3306:465:4,65.5,-36.5,0,0,-0.0223937 -52759,3306:466:3,66,-36.5,0,0,-0.0205718 -52760,3306:466:4,66.5,-36.5,0,0,-0.0261011 -52761,3306:467:3,67,-36.5,0,0,-0.0261604 -52762,3306:467:4,67.5,-36.5,0,0,-0.0264465 -52763,3306:468:3,68,-36.5,0,0,-0.0287118 -52764,3306:468:4,68.5,-36.5,0,0,-0.0384926 -52765,3306:469:3,69,-36.5,0,0,-0.0427273 -52766,3306:469:4,69.5,-36.5,0,0,-0.0426388 -52767,3307:360:3,70,-36.5,0,0,-0.0424528 -52768,3307:360:4,70.5,-36.5,0,0,-0.0434122 -52769,3307:361:3,71,-36.5,0,0,-0.0445794 -52770,3307:361:4,71.5,-36.5,0,0,-0.0468712 -52771,3307:362:3,72,-36.5,0,0,-0.0498846 -52772,3307:362:4,72.5,-36.5,0,0,-0.0557248 -52773,3307:363:4,73.5,-36.5,0,0,-0.0653027 -52774,3307:364:3,74,-36.5,0,0,-0.075579 -52775,3307:364:4,74.5,-36.5,0,0,-0.0798336 -52776,3307:465:3,75,-36.5,0,0,-0.0765008 -52777,3307:465:4,75.5,-36.5,0,0,-0.0696623 -52778,3307:466:3,76,-36.5,0,0,-0.0636799 -52779,3307:466:4,76.5,-36.5,0,0,-0.0600524 -52780,3307:467:3,77,-36.5,0,0,-0.0521348 -52781,3307:467:4,77.5,-36.5,0,0,-0.0494582 -52782,3307:468:3,78,-36.5,0,0,-0.0505135 -52783,3307:468:4,78.5,-36.5,0,0,-0.0488884 -52784,3307:469:3,79,-36.5,0,0,-0.0476696 -52785,3307:469:4,79.5,-36.5,0,0,-0.0486735 -52786,3308:360:3,80,-36.5,0,0,-0.0498846 -52787,3308:360:4,80.5,-36.5,0,0,-0.0521833 -52788,3308:361:3,81,-36.5,0,0,-0.0544535 -52789,3308:361:4,81.5,-36.5,0,0,-0.0546315 -52790,3308:362:3,82,-36.5,0,0,-0.0611891 -52791,3308:362:4,82.5,-36.5,0,0,-0.068133 -52792,3308:363:3,83,-36.5,0,0,-0.0663257 -52793,3308:363:4,83.5,-36.5,0,0,-0.0635303 -52794,3308:364:3,84,-36.5,0,0,-0.0543904 -52795,3308:364:4,84.5,-36.5,0,0,-0.0461616 -52796,3308:465:3,85,-36.5,0,0,-0.0506546 -52797,3308:465:4,85.5,-36.5,0,0,-0.0571075 -52798,3308:466:3,86,-36.5,0,0,-0.0595065 -52799,3308:466:4,86.5,-36.5,0,0,-0.0620999 -52800,3308:467:3,87,-36.5,0,0,-0.0709592 -52801,3308:467:4,87.5,-36.5,0,0,-0.0716338 -52802,3308:468:3,88,-36.5,0,0,-0.0676364 -52803,3308:468:4,88.5,-36.5,0,0,-0.0669223 -52804,3308:469:3,89,-36.5,0,0,-0.0616789 -52805,3308:469:4,89.5,-36.5,0,0,-0.0572008 -52806,3309:360:3,90,-36.5,0,0,-0.0529289 -52807,3309:360:4,90.5,-36.5,0,0,-0.0518689 -52808,3309:361:3,91,-36.5,0,0,-0.0511629 -52809,3309:361:4,91.5,-36.5,0,0,-0.0516402 -52810,3309:362:3,92,-36.5,0,0,-0.0529658 -52811,3309:362:4,92.5,-36.5,0,0,-0.0526217 -52812,3309:363:3,93,-36.5,0,0,-0.0527811 -52813,3309:363:4,93.5,-36.5,0,0,-0.0516765 -52814,3309:364:3,94,-36.5,0,0,-0.0488546 -52815,3309:364:4,94.5,-36.5,0,0,-0.0438247 -52816,3309:465:3,95,-36.5,0,0,-0.0393412 -52817,3309:465:4,95.5,-36.5,0,0,-0.0432924 -52818,3309:466:3,96,-36.5,0,0,-0.0445894 -52819,3309:466:4,96.5,-36.5,0,0,-0.0416012 -52820,3309:467:3,97,-36.5,0,0,-0.0359517 -52821,3309:467:4,97.5,-36.5,0,0,-0.036424 -52822,3309:468:3,98,-36.5,0,0,-0.0393231 -52823,3309:468:4,98.5,-36.5,0,0,-0.0390441 -52824,3309:469:3,99,-36.5,0,0,-0.0412108 -52825,3309:469:4,99.5,-36.5,0,0,-0.045906 -52826,3310:360:3,100,-36.5,0,0,-0.048877 -52827,3310:360:4,100.5,-36.5,0,0,-0.047318 -52828,3310:361:3,101,-36.5,0,0,-0.0423452 -52829,3310:361:4,101.5,-36.5,0,0,-0.0416299 -52830,3310:362:3,102,-36.5,0,0,-0.0450342 -52831,3310:362:4,102.5,-36.5,0,0,-0.0451696 -52832,3310:363:3,103,-36.5,0,0,-0.0445998 -52833,3310:363:4,103.5,-36.5,0,0,-0.0424627 -52834,3310:364:3,104,-36.5,0,0,-0.0425311 -52835,3310:364:4,104.5,-36.5,0,0,-0.0472523 -52836,3310:465:3,105,-36.5,0,0,-0.0489566 -52837,3310:465:4,105.5,-36.5,0,0,-0.048169 -52838,3310:466:3,106,-36.5,0,0,-0.0497112 -52839,3310:466:4,106.5,-36.5,0,0,-0.0564315 -52840,3310:467:3,107,-36.5,0,0,-0.0684873 -52841,3310:467:4,107.5,-36.5,0,0,-0.074793 -52842,3310:468:3,108,-36.5,0,0,-0.0707576 -52843,3310:468:4,108.5,-36.5,0,0,-0.059884 -52844,3310:469:3,109,-36.5,0,0,-0.0508077 -52845,3310:469:4,109.5,-36.5,0,0,-0.0515323 -52846,3311:360:3,110,-36.5,0,0,-0.0593397 -52847,3311:360:4,110.5,-36.5,0,0,-0.0765192 -52848,3311:361:3,111,-36.5,0,0,-0.086414 -52849,3311:361:4,111.5,-36.5,0,0,-0.0794157 -52850,3311:362:3,112,-36.5,0,0,-0.0795864 -52851,3311:362:4,112.5,-36.5,0,0,-0.080599 -52852,3311:363:3,113,-36.5,0,0,-0.0819195 -52853,3311:363:4,113.5,-36.5,0,0,-0.0767924 -52854,3311:364:3,114,-36.5,0,0,-0.0733692 -52855,3311:364:4,114.5,-36.5,0,0,-0.0616789 -52856,3311:465:3,115,-36.5,0,0,-0.0605894 -52857,3311:465:4,115.5,-36.5,0,0,-0.0667175 -52858,3311:466:3,116,-36.5,0,0,-0.081256 -52859,3311:466:4,116.5,-36.5,0,0,-0.0889206 -52860,3311:467:3,117,-36.5,0,0,-0.0891776 -52861,3311:467:4,117.5,-36.5,0,0,-0.0853426 -52862,3311:468:3,118,-36.5,0,0,-0.0767016 -52863,3311:468:4,118.5,-36.5,0,0,-0.0701247 -52864,3311:469:3,119,-36.5,0,0,-0.0692521 -52865,3311:469:4,119.5,-36.5,0,0,-0.0755609 -52866,3312:360:3,120,-36.5,0,0,-0.081704 -52867,3312:360:4,120.5,-36.5,0,0,-0.0840438 -52868,3312:361:3,121,-36.5,0,0,-0.0846902 -52869,3312:361:4,121.5,-36.5,0,0,-0.0828453 -52870,3312:362:3,122,-36.5,0,0,-0.0817624 -52871,3312:362:4,122.5,-36.5,0,0,-0.081431 -52872,3312:363:3,123,-36.5,0,0,-0.0808113 -52873,3312:363:4,123.5,-36.5,0,0,-0.0800053 -52874,3312:364:3,124,-36.5,0,0,-0.0800432 -52875,3312:364:4,124.5,-36.5,0,0,-0.0798714 -52876,3312:465:3,125,-36.5,0,0,-0.0796241 -52877,3312:465:4,125.5,-36.5,0,0,-0.0798144 -52878,3312:466:3,126,-36.5,0,0,-0.08114 -52879,3312:466:4,126.5,-36.5,0,0,-0.0838627 -52880,3312:467:3,127,-36.5,0,0,-0.0862275 -52881,3312:467:4,127.5,-36.5,0,0,-0.0861657 -52882,3312:468:3,128,-36.5,0,0,-0.0845281 -52883,3312:468:4,128.5,-36.5,0,0,-0.0831034 -52884,3312:469:3,129,-36.5,0,0,-0.0823708 -52885,3312:469:4,129.5,-36.5,0,0,-0.0820762 -52886,3313:360:3,130,-36.5,0,0,-0.0819386 -52887,3313:360:4,130.5,-36.5,0,0,-0.0824694 -52888,3313:361:3,131,-36.5,0,0,-0.0829246 -52889,3313:361:4,131.5,-36.5,0,0,-0.0823708 -52890,3313:362:3,132,-36.5,0,0,-0.081412 -52891,3313:362:4,132.5,-36.5,0,0,-0.080599 -52892,3313:363:3,133,-36.5,0,0,-0.0800432 -52893,3313:363:4,133.5,-36.5,0,0,-0.0802346 -52894,3313:364:3,134,-36.5,0,0,-0.0812756 -52895,3313:364:4,134.5,-36.5,0,0,-0.0831229 -52896,3313:465:3,135,-36.5,0,0,-0.0850976 -52897,3313:465:4,135.5,-36.5,0,0,-0.0855064 -52898,3313:466:3,136,-36.5,0,0,-0.084975 -52899,3313:466:4,136.5,-36.5,0,0,-0.0842449 -52900,3313:467:3,137,-36.5,0,0,-0.0836021 -52901,3313:467:4,137.5,-36.5,0,0,-0.081256 -52902,3313:468:3,138,-36.5,0,0,-0.0791889 -52903,3313:468:4,138.5,-36.5,0,0,-0.0803305 -52904,3313:469:3,139,-36.5,0,0,-0.0876258 -52905,3313:469:4,139.5,-36.5,0,0,-0.0968088 -52906,3314:360:3,140,-36.5,0,0,-0.0994991 -52907,3314:360:4,140.5,-36.5,0,0,-0.0997414 -52908,3314:361:3,141,-36.5,0,0,-0.111438 -52909,3314:361:4,141.5,-36.5,0,0,-0.116946 -52910,3314:362:3,142,-36.5,0,0,-0.0989688 -52911,3314:362:4,142.5,-36.5,0,0,-0.091352 -52912,3314:363:3,143,-36.5,0,0,-0.0966443 -52913,3314:363:4,143.5,-36.5,0,0,-0.100008 -52914,3314:364:3,144,-36.5,0,0,-0.105412 -52915,3314:364:4,144.5,-36.5,0,0,-0.125408 -52916,3314:465:3,145,-36.5,0,0,-0.136049 -52917,3314:465:4,145.5,-36.5,0,0,-0.127484 -52918,3314:466:3,146,-36.5,0,0,-0.123184 -52919,3314:466:4,146.5,-36.5,0,0,-0.118751 -52920,3314:467:3,147,-36.5,0,0,-0.109219 -52921,3314:467:4,147.5,-36.5,0,0,-0.10345 -52922,3314:468:3,148,-36.5,0,0,-0.10637 -52923,3314:468:4,148.5,-36.5,0,0,-0.11837 -52924,3314:469:3,149,-36.5,0,0,-0.131032 -52925,3314:469:4,149.5,-36.5,0,0,-0.13605 -52926,3315:360:3,150,-36.5,0,0,-0.13605 -52927,3315:360:4,150.5,-36.5,0,0,-0.13605 -52928,3315:361:3,151,-36.5,0,0,-0.133013 -52929,3315:361:4,151.5,-36.5,0,0,-0.123552 -52930,3315:362:3,152,-36.5,0,0,-0.131425 -52931,3315:362:4,152.5,-36.5,0,0,-0.116543 -52932,3315:363:3,153,-36.5,0,0,-0.109648 -52933,3315:363:4,153.5,-36.5,0,0,-0.0933806 -52934,3315:364:3,154,-36.5,0,0,-0.094402 -52935,3315:364:4,154.5,-36.5,0,0,-0.101355 -52936,3315:465:3,155,-36.5,0,0,-0.102471 -52937,3315:465:4,155.5,-36.5,0,0,-0.0971143 -52938,3315:466:3,156,-36.5,0,0,-0.0969492 -52939,3315:466:4,156.5,-36.5,0,0,-0.0995958 -52940,3315:467:3,157,-36.5,0,0,-0.102297 -52941,3315:467:4,157.5,-36.5,0,0,-0.103956 -52942,3315:468:3,158,-36.5,0,0,-0.10549 -52943,3315:468:4,158.5,-36.5,0,0,-0.109379 -52944,3315:469:3,159,-36.5,0,0,-0.107863 -52945,3315:469:4,159.5,-36.5,0,0,-0.104159 -52946,3316:360:3,160,-36.5,0,0,-0.1065 -52947,3316:360:4,160.5,-36.5,0,0,-0.103855 -52948,3316:361:3,161,-36.5,0,0,-0.0994755 -52949,3316:361:4,161.5,-36.5,0,0,-0.100374 -52950,3316:362:3,162,-36.5,0,0,-0.106578 -52951,3316:362:4,162.5,-36.5,0,0,-0.113875 -52952,3316:363:3,163,-36.5,0,0,-0.111356 -52953,3316:363:4,163.5,-36.5,0,0,-0.10585 -52954,3316:364:3,164,-36.5,0,0,-0.105825 -52955,3316:364:4,164.5,-36.5,0,0,-0.108871 -52956,3316:465:3,165,-36.5,0,0,-0.112097 -52957,3316:465:4,165.5,-36.5,0,0,-0.113009 -52958,3316:466:3,166,-36.5,0,0,-0.115031 -52959,3316:466:4,166.5,-36.5,0,0,-0.116917 -52960,3316:467:3,167,-36.5,0,0,-0.122362 -52961,3317:360:4,170.5,-36.5,0,0,-0.0969026 -52962,3317:361:3,171,-36.5,0,0,-0.086124 -52963,3317:361:4,171.5,-36.5,0,0,-0.0709756 -52964,3317:362:3,172,-36.5,0,0,-0.064767 -52965,3317:362:4,172.5,-36.5,0,0,-0.066092 -52966,3317:363:3,173,-36.5,0,0,-0.0686008 -52967,3317:363:4,173.5,-36.5,0,0,-0.0702574 -52968,3317:364:3,174,-36.5,0,0,-0.0702244 -52969,3317:364:4,174.5,-36.5,0,0,-0.0698933 -52970,3317:465:3,175,-36.5,0,0,-0.0687305 -52971,3317:465:4,175.5,-36.5,0,0,-0.0670013 -52972,3317:466:3,176,-36.5,0,0,-0.065673 -52973,3317:466:4,176.5,-36.5,0,0,-0.0648285 -52974,3317:467:3,177,-36.5,0,0,-0.0641007 -52975,3317:467:4,177.5,-36.5,0,0,-0.063025 -52976,3317:468:3,178,-36.5,0,0,-0.0621728 -52977,3317:468:4,178.5,-36.5,0,0,-0.0620416 -52978,3317:469:3,179,-36.5,0,0,-0.0626858 -52979,3317:469:4,179.5,-36.5,0,0,-0.0645086 -52980,3318:360:3,180,-36.5,0,0,-0.0672543 -52981,5318:360:1,-180,-36,0,0,-0.0864349 -52982,5317:469:2,-179.5,-36,0,0,-0.0886215 -52983,5317:469:1,-179,-36,0,0,-0.0885363 -52984,5317:468:2,-178.5,-36,0,0,-0.0884305 -52985,5317:468:1,-178,-36,0,0,-0.0906064 -52986,5317:467:2,-177.5,-36,0,0,-0.0933131 -52987,5317:467:1,-177,-36,0,0,-0.0952047 -52988,5317:466:2,-176.5,-36,0,0,-0.0952504 -52989,5317:466:1,-176,-36,0,0,-0.0937877 -52990,5317:465:2,-175.5,-36,0,0,-0.0911539 -52991,5317:465:1,-175,-36,0,0,-0.0903231 -52992,5317:364:2,-174.5,-36,0,0,-0.0909128 -52993,5317:364:1,-174,-36,0,0,-0.094379 -52994,5317:363:2,-173.5,-36,0,0,-0.119902 -52995,5317:363:1,-173,-36,0,0,-0.116745 -52996,5317:362:2,-172.5,-36,0,0,-0.101454 -52997,5317:362:1,-172,-36,0,0,-0.10818 -52998,5317:361:2,-171.5,-36,0,0,-0.109058 -52999,5317:361:1,-171,-36,0,0,-0.119074 -53000,5317:360:2,-170.5,-36,0,0,-0.122393 -53001,5317:360:1,-170,-36,0,0,-0.134892 -53002,5316:469:2,-169.5,-36,0,0,-0.13605 -53003,5316:469:1,-169,-36,0,0,-0.13605 -53004,5316:468:2,-168.5,-36,0,0,-0.13605 -53005,5316:468:1,-168,-36,0,0,-0.132515 -53006,5316:467:2,-167.5,-36,0,0,-0.126064 -53007,5316:467:1,-167,-36,0,0,-0.126567 -53008,5316:466:2,-166.5,-36,0,0,-0.128794 -53009,5316:466:1,-166,-36,0,0,-0.129924 -53010,5316:465:2,-165.5,-36,0,0,-0.132183 -53011,5316:465:1,-165,-36,0,0,-0.13288 -53012,5316:364:2,-164.5,-36,0,0,-0.132316 -53013,5316:364:1,-164,-36,0,0,-0.131425 -53014,5316:363:2,-163.5,-36,0,0,-0.131065 -53015,5316:363:1,-163,-36,0,0,-0.13288 -53016,5316:362:2,-162.5,-36,0,0,-0.135986 -53017,5316:362:1,-162,-36,0,0,-0.13605 -53018,5316:361:2,-161.5,-36,0,0,-0.13605 -53019,5316:361:1,-161,-36,0,0,-0.13605 -53020,5316:360:2,-160.5,-36,0,0,-0.13605 -53021,5316:360:1,-160,-36,0,0,-0.13605 -53022,5315:469:2,-159.5,-36,0,0,-0.13605 -53023,5315:469:1,-159,-36,0,0,-0.13605 -53024,5315:468:2,-158.5,-36,0,0,-0.13605 -53025,5315:468:1,-158,-36,0,0,-0.13605 -53026,5315:467:2,-157.5,-36,0,0,-0.13605 -53027,5315:467:1,-157,-36,0,0,-0.13605 -53028,5315:466:2,-156.5,-36,0,0,-0.13605 -53029,5315:466:1,-156,-36,0,0,-0.13605 -53030,5315:465:2,-155.5,-36,0,0,-0.13605 -53031,5315:465:1,-155,-36,0,0,-0.13605 -53032,5315:364:2,-154.5,-36,0,0,-0.13605 -53033,5315:364:1,-154,-36,0,0,-0.13605 -53034,5315:363:2,-153.5,-36,0,0,-0.13605 -53035,5315:363:1,-153,-36,0,0,-0.13605 -53036,5315:362:2,-152.5,-36,0,0,-0.13605 -53037,5315:362:1,-152,-36,0,0,-0.13605 -53038,5315:361:2,-151.5,-36,0,0,-0.13605 -53039,5315:361:1,-151,-36,0,0,-0.13605 -53040,5315:360:2,-150.5,-36,0,0,-0.13605 -53041,5315:360:1,-150,-36,0,0,-0.13605 -53042,5314:469:2,-149.5,-36,0,0,-0.13605 -53043,5314:469:1,-149,-36,0,0,-0.13605 -53044,5314:468:2,-148.5,-36,0,0,-0.13605 -53045,5314:468:1,-148,-36,0,0,-0.13605 -53046,5314:467:2,-147.5,-36,0,0,-0.13605 -53047,5314:467:1,-147,-36,0,0,-0.13605 -53048,5314:466:2,-146.5,-36,0,0,-0.13605 -53049,5314:466:1,-146,-36,0,0,-0.13605 -53050,5314:465:2,-145.5,-36,0,0,-0.13605 -53051,5314:465:1,-145,-36,0,0,-0.13605 -53052,5314:364:2,-144.5,-36,0,0,-0.13605 -53053,5314:364:1,-144,-36,0,0,-0.13605 -53054,5314:363:2,-143.5,-36,0,0,-0.13605 -53055,5314:363:1,-143,-36,0,0,-0.13605 -53056,5314:362:2,-142.5,-36,0,0,-0.13605 -53057,5314:362:1,-142,-36,0,0,-0.13605 -53058,5314:361:2,-141.5,-36,0,0,-0.13605 -53059,5314:361:1,-141,-36,0,0,-0.13605 -53060,5314:360:2,-140.5,-36,0,0,-0.13605 -53061,5314:360:1,-140,-36,0,0,-0.13605 -53062,5313:469:2,-139.5,-36,0,0,-0.13605 -53063,5313:469:1,-139,-36,0,0,-0.13605 -53064,5313:468:2,-138.5,-36,0,0,-0.13605 -53065,5313:468:1,-138,-36,0,0,-0.13605 -53066,5313:467:2,-137.5,-36,0,0,-0.13605 -53067,5313:467:1,-137,-36,0,0,-0.13605 -53068,5313:466:2,-136.5,-36,0,0,-0.13605 -53069,5313:466:1,-136,-36,0,0,-0.13605 -53070,5313:465:2,-135.5,-36,0,0,-0.13605 -53071,5313:465:1,-135,-36,0,0,-0.13605 -53072,5313:364:2,-134.5,-36,0,0,-0.13605 -53073,5313:364:1,-134,-36,0,0,-0.13605 -53074,5313:363:2,-133.5,-36,0,0,-0.13605 -53075,5313:363:1,-133,-36,0,0,-0.13605 -53076,5313:362:2,-132.5,-36,0,0,-0.13605 -53077,5313:362:1,-132,-36,0,0,-0.13605 -53078,5313:361:2,-131.5,-36,0,0,-0.13605 -53079,5313:361:1,-131,-36,0,0,-0.13605 -53080,5313:360:2,-130.5,-36,0,0,-0.13605 -53081,5313:360:1,-130,-36,0,0,-0.136016 -53082,5312:469:2,-129.5,-36,0,0,-0.135948 -53083,5312:469:1,-129,-36,0,0,-0.136032 -53084,5312:468:2,-128.5,-36,0,0,-0.13605 -53085,5312:468:1,-128,-36,0,0,-0.13605 -53086,5312:467:2,-127.5,-36,0,0,-0.13605 -53087,5312:467:1,-127,-36,0,0,-0.13605 -53088,5312:466:2,-126.5,-36,0,0,-0.13605 -53089,5312:466:1,-126,-36,0,0,-0.13605 -53090,5312:465:2,-125.5,-36,0,0,-0.13605 -53091,5312:465:1,-125,-36,0,0,-0.13605 -53092,5312:364:2,-124.5,-36,0,0,-0.13605 -53093,5312:364:1,-124,-36,0,0,-0.13605 -53094,5312:363:2,-123.5,-36,0,0,-0.13605 -53095,5312:363:1,-123,-36,0,0,-0.13605 -53096,5312:362:2,-122.5,-36,0,0,-0.13605 -53097,5312:362:1,-122,-36,0,0,-0.13605 -53098,5312:361:2,-121.5,-36,0,0,-0.13605 -53099,5312:361:1,-121,-36,0,0,-0.134521 -53100,5312:360:2,-120.5,-36,0,0,-0.132415 -53101,5312:360:1,-120,-36,0,0,-0.132051 -53102,5311:469:2,-119.5,-36,0,0,-0.127994 -53103,5311:469:1,-119,-36,0,0,-0.123521 -53104,5311:468:2,-118.5,-36,0,0,-0.124445 -53105,5311:468:1,-118,-36,0,0,-0.124972 -53106,5311:467:2,-117.5,-36,0,0,-0.120586 -53107,5311:467:1,-117,-36,0,0,-0.119576 -53108,5311:466:2,-116.5,-36,0,0,-0.121727 -53109,5311:466:1,-116,-36,0,0,-0.120169 -53110,5311:465:2,-115.5,-36,0,0,-0.118224 -53111,5311:465:1,-115,-36,0,0,-0.118458 -53112,5311:364:2,-114.5,-36,0,0,-0.119222 -53113,5311:364:1,-114,-36,0,0,-0.115371 -53114,5311:363:2,-113.5,-36,0,0,-0.108552 -53115,5311:363:1,-113,-36,0,0,-0.101999 -53116,5311:362:2,-112.5,-36,0,0,-0.100227 -53117,5311:362:1,-112,-36,0,0,-0.103905 -53118,5311:361:2,-111.5,-36,0,0,-0.108738 -53119,5311:361:1,-111,-36,0,0,-0.111438 -53120,5311:360:2,-110.5,-36,0,0,-0.107441 -53121,5311:360:1,-110,-36,0,0,-0.0990657 -53122,5310:469:2,-109.5,-36,0,0,-0.0944473 -53123,5310:469:1,-109,-36,0,0,-0.0932677 -53124,5310:468:2,-108.5,-36,0,0,-0.0921489 -53125,5310:468:1,-108,-36,0,0,-0.0893927 -53126,5310:467:2,-107.5,-36,0,0,-0.0877525 -53127,5310:467:1,-107,-36,0,0,-0.090432 -53128,5310:466:2,-106.5,-36,0,0,-0.092572 -53129,5310:466:1,-106,-36,0,0,-0.0936067 -53130,5310:465:2,-105.5,-36,0,0,-0.0932004 -53131,5310:465:1,-105,-36,0,0,-0.0875212 -53132,5310:364:2,-104.5,-36,0,0,-0.0836822 -53133,5310:364:1,-104,-36,0,0,-0.0852609 -53134,5310:363:2,-103.5,-36,0,0,-0.0893284 -53135,5310:363:1,-103,-36,0,0,-0.0888991 -53136,5310:362:2,-102.5,-36,0,0,-0.0833222 -53137,5310:362:1,-102,-36,0,0,-0.0797001 -53138,5310:361:2,-101.5,-36,0,0,-0.0797575 -53139,5310:361:1,-101,-36,0,0,-0.0810821 -53140,5310:360:2,-100.5,-36,0,0,-0.0831429 -53141,5310:360:1,-100,-36,0,0,-0.0851175 -53142,5309:469:2,-99.5,-36,0,0,-0.0841846 -53143,5309:469:1,-99,-36,0,0,-0.0860414 -53144,5309:468:2,-98.5,-36,0,0,-0.0862484 -53145,5309:468:1,-98,-36,0,0,-0.0822134 -53146,5309:467:2,-97.5,-36,0,0,-0.0791509 -53147,5309:467:1,-97,-36,0,0,-0.0782881 -53148,5309:466:2,-96.5,-36,0,0,-0.0767016 -53149,5309:466:1,-96,-36,0,0,-0.0759213 -53150,5309:465:2,-95.5,-36,0,0,-0.0761922 -53151,5309:465:1,-95,-36,0,0,-0.0769023 -53152,5309:364:2,-94.5,-36,0,0,-0.0775457 -53153,5309:364:1,-94,-36,0,0,-0.0785492 -53154,5309:363:2,-93.5,-36,0,0,-0.0791509 -53155,5309:363:1,-93,-36,0,0,-0.0812756 -53156,5309:362:2,-92.5,-36,0,0,-0.0859999 -53157,5309:362:1,-92,-36,0,0,-0.0825284 -53158,5309:361:2,-91.5,-36,0,0,-0.0780273 -53159,5309:361:1,-91,-36,0,0,-0.0764464 -53160,5309:360:2,-90.5,-36,0,0,-0.0767378 -53161,5309:360:1,-90,-36,0,0,-0.0820169 -53162,5308:469:2,-89.5,-36,0,0,-0.0838425 -53163,5308:469:1,-89,-36,0,0,-0.0801388 -53164,5308:468:2,-88.5,-36,0,0,-0.0779898 -53165,5308:468:1,-88,-36,0,0,-0.0768108 -53166,5308:467:2,-87.5,-36,0,0,-0.0744739 -53167,5308:467:1,-87,-36,0,0,-0.0776748 -53168,5308:466:2,-86.5,-36,0,0,-0.0784373 -53169,5308:466:1,-86,-36,0,0,-0.0745274 -53170,5308:465:2,-85.5,-36,0,0,-0.078793 -53171,5308:465:1,-85,-36,0,0,-0.0826273 -53172,5308:364:2,-84.5,-36,0,0,-0.0818215 -53173,5308:364:1,-84,-36,0,0,-0.0801768 -53174,5308:363:2,-83.5,-36,0,0,-0.0786058 -53175,5308:363:1,-83,-36,0,0,-0.0766832 -53176,5308:362:2,-82.5,-36,0,0,-0.0770857 -53177,5308:362:1,-82,-36,0,0,-0.0772325 -53178,5308:361:2,-81.5,-36,0,0,-0.0778788 -53179,5308:361:1,-81,-36,0,0,-0.0811595 -53180,5308:360:2,-80.5,-36,0,0,-0.082253 -53181,5308:360:1,-80,-36,0,0,-0.0815677 -53182,5307:469:2,-79.5,-36,0,0,-0.0833819 -53183,5307:469:1,-79,-36,0,0,-0.0870598 -53184,5307:468:2,-78.5,-36,0,0,-0.0883877 -53185,5307:468:1,-78,-36,0,0,-0.0871849 -53186,5307:467:2,-77.5,-36,0,0,-0.0854858 -53187,5307:467:1,-77,-36,0,0,-0.0855271 -53188,5307:466:2,-76.5,-36,0,0,-0.0857321 -53189,5307:466:1,-76,-36,0,0,-0.0848123 -53190,5307:465:2,-75.5,-36,0,0,-0.092416 -53191,5307:465:1,-75,-36,0,0,-0.0991619 -53192,5306:467:1,-67,-36,0,0,-0.13605 -53193,5306:466:2,-66.5,-36,0,0,-0.134184 -53194,5306:466:1,-66,-36,0,0,-0.129956 -53195,5306:465:2,-65.5,-36,0,0,-0.132979 -53196,5306:465:1,-65,-36,0,0,-0.133413 -53197,5306:364:2,-64.5,-36,0,0,-0.133279 -53198,5306:364:1,-64,-36,0,0,-0.12793 -53199,5306:363:2,-63.5,-36,0,0,-0.119842 -53200,5306:363:1,-63,-36,0,0,-0.11837 -53201,5306:362:2,-62.5,-36,0,0,-0.119902 -53202,5306:362:1,-62,-36,0,0,-0.12429 -53203,5306:361:2,-61.5,-36,0,0,-0.126126 -53204,5306:361:1,-61,-36,0,0,-0.122544 -53205,5306:360:2,-60.5,-36,0,0,-0.108684 -53206,5306:360:1,-60,-36,0,0,-0.0861859 -53207,5305:469:2,-59.5,-36,0,0,-0.066092 -53208,5305:469:1,-59,-36,0,0,-0.0537231 -53209,5305:468:2,-58.5,-36,0,0,-0.0597438 -53210,5305:468:1,-58,-36,0,0,-0.0795673 -53211,5305:467:2,-57.5,-36,0,0,-0.12758 -53212,5305:467:1,-57,-36,0,0,-0.13605 -53213,5305:466:2,-56.5,-36,0,0,-0.13605 -53214,5305:466:1,-56,-36,0,0,-0.13605 -53215,5305:465:2,-55.5,-36,0,0,-0.13605 -53216,5305:465:1,-55,-36,0,0,-0.13605 -53217,5305:364:2,-54.5,-36,0,0,-0.13605 -53218,5305:364:1,-54,-36,0,0,-0.13605 -53219,5305:363:2,-53.5,-36,0,0,-0.13605 -53220,5305:363:1,-53,-36,0,0,-0.13605 -53221,5305:362:2,-52.5,-36,0,0,-0.13605 -53222,5305:362:1,-52,-36,0,0,-0.13605 -53223,5305:361:2,-51.5,-36,0,0,-0.13605 -53224,5305:361:1,-51,-36,0,0,-0.13605 -53225,5305:360:2,-50.5,-36,0,0,-0.13605 -53226,5305:360:1,-50,-36,0,0,-0.117961 -53227,5304:469:2,-49.5,-36,0,0,-0.102297 -53228,5304:469:1,-49,-36,0,0,-0.103627 -53229,5304:468:2,-48.5,-36,0,0,-0.105232 -53230,5304:468:1,-48,-36,0,0,-0.105954 -53231,5304:467:2,-47.5,-36,0,0,-0.107916 -53232,5304:467:1,-47,-36,0,0,-0.10624 -53233,5304:466:2,-46.5,-36,0,0,-0.101725 -53234,5304:466:1,-46,-36,0,0,-0.0978943 -53235,5304:465:2,-45.5,-36,0,0,-0.0941509 -53236,5304:465:1,-45,-36,0,0,-0.0888567 -53237,5304:364:2,-44.5,-36,0,0,-0.0849955 -53238,5304:364:1,-44,-36,0,0,-0.0836223 -53239,5304:363:2,-43.5,-36,0,0,-0.0824893 -53240,5304:363:1,-43,-36,0,0,-0.0795106 -53241,5304:362:2,-42.5,-36,0,0,-0.0768476 -53242,5304:362:1,-42,-36,0,0,-0.0754355 -53243,5304:361:2,-41.5,-36,0,0,-0.0753278 -53244,5304:361:1,-41,-36,0,0,-0.0759571 -53245,5304:360:2,-40.5,-36,0,0,-0.076138 -53246,5304:360:1,-40,-36,0,0,-0.0754891 -53247,5303:469:2,-39.5,-36,0,0,-0.0713127 -53248,5303:469:1,-39,-36,0,0,-0.0660607 -53249,5303:468:2,-38.5,-36,0,0,-0.0655801 -53250,5303:468:1,-38,-36,0,0,-0.0671755 -53251,5303:467:2,-37.5,-36,0,0,-0.0693175 -53252,5303:467:1,-37,-36,0,0,-0.0659828 -53253,5303:466:2,-36.5,-36,0,0,-0.0621875 -53254,5303:466:1,-36,-36,0,0,-0.0591455 -53255,5303:465:2,-35.5,-36,0,0,-0.0565897 -53256,5303:465:1,-35,-36,0,0,-0.0535235 -53257,5303:364:2,-34.5,-36,0,0,-0.0506898 -53258,5303:364:1,-34,-36,0,0,-0.0501165 -53259,5303:363:2,-33.5,-36,0,0,-0.0530768 -53260,5303:363:1,-33,-36,0,0,-0.056537 -53261,5303:362:2,-32.5,-36,0,0,-0.0567355 -53262,5303:362:1,-32,-36,0,0,-0.0559593 -53263,5303:361:2,-31.5,-36,0,0,-0.0520015 -53264,5303:361:1,-31,-36,0,0,-0.0456523 -53265,5303:360:2,-30.5,-36,0,0,-0.0422771 -53266,5303:360:1,-30,-36,0,0,-0.0433823 -53267,5302:469:2,-29.5,-36,0,0,-0.048169 -53268,5302:469:1,-29,-36,0,0,-0.0529782 -53269,5302:468:2,-28.5,-36,0,0,-0.0504434 -53270,5302:468:1,-28,-36,0,0,-0.0472633 -53271,5302:467:2,-27.5,-36,0,0,-0.0463109 -53272,5302:467:1,-27,-36,0,0,-0.0475485 -53273,5302:466:2,-26.5,-36,0,0,-0.0529782 -53274,5302:466:1,-26,-36,0,0,-0.0592842 -53275,5302:465:2,-25.5,-36,0,0,-0.0555043 -53276,5302:465:1,-25,-36,0,0,-0.0476477 -53277,5302:364:2,-24.5,-36,0,0,-0.0518568 -53278,5302:364:1,-24,-36,0,0,-0.0614911 -53279,5302:363:2,-23.5,-36,0,0,-0.0696789 -53280,5302:363:1,-23,-36,0,0,-0.0644632 -53281,5302:362:2,-22.5,-36,0,0,-0.0640703 -53282,5302:362:1,-22,-36,0,0,-0.074722 -53283,5302:361:2,-21.5,-36,0,0,-0.0728834 -53284,5302:361:1,-21,-36,0,0,-0.0739108 -53285,5302:360:2,-20.5,-36,0,0,-0.0724876 -53286,5302:360:1,-20,-36,0,0,-0.0653027 -53287,5301:469:2,-19.5,-36,0,0,-0.0520864 -53288,5301:469:1,-19,-36,0,0,-0.047143 -53289,5301:468:2,-18.5,-36,0,0,-0.0535855 -53290,5301:468:1,-18,-36,0,0,-0.0634261 -53291,5301:467:2,-17.5,-36,0,0,-0.0664508 -53292,5301:467:1,-17,-36,0,0,-0.051246 -53293,5301:466:2,-16.5,-36,0,0,-0.0386875 -53294,5301:466:1,-16,-36,0,0,-0.0369618 -53295,5301:465:2,-15.5,-36,0,0,-0.037594 -53296,5301:465:1,-15,-36,0,0,-0.0409366 -53297,5301:364:2,-14.5,-36,0,0,-0.0414103 -53298,5301:364:1,-14,-36,0,0,-0.0425212 -53299,5301:363:2,-13.5,-36,0,0,-0.0426292 -53300,5301:363:1,-13,-36,0,0,-0.0428754 -53301,5301:362:2,-12.5,-36,0,0,-0.0478687 -53302,5301:362:1,-12,-36,0,0,-0.0544535 -53303,5301:361:2,-11.5,-36,0,0,-0.0547844 -53304,5301:361:1,-11,-36,0,0,-0.0519654 -53305,5301:360:2,-10.5,-36,0,0,-0.0504316 -53306,5301:360:1,-10,-36,0,0,-0.049769 -53307,5300:469:2,-9.5,-36,0,0,-0.0496768 -53308,5300:469:1,-9,-36,0,0,-0.0500934 -53309,5300:468:2,-8.5,-36,0,0,-0.052038 -53310,5300:468:1,-8,-36,0,0,-0.0562213 -53311,5300:467:2,-7.5,-36,0,0,-0.0592148 -53312,5300:467:1,-7,-36,0,0,-0.0592148 -53313,5300:466:2,-6.5,-36,0,0,-0.057094 -53314,5300:466:1,-6,-36,0,0,-0.0566293 -53315,5300:465:2,-5.5,-36,0,0,-0.0607034 -53316,5300:465:1,-5,-36,0,0,-0.0626561 -53317,5300:364:2,-4.5,-36,0,0,-0.0595763 -53318,5300:364:1,-4,-36,0,0,-0.0545678 -53319,5300:363:2,-3.5,-36,0,0,-0.0508311 -53320,5300:363:1,-3,-36,0,0,-0.0522196 -53321,5300:362:2,-2.5,-36,0,0,-0.0592148 -53322,5300:362:1,-2,-36,0,0,-0.0684873 -53323,5300:361:2,-1.5,-36,0,0,-0.0718038 -53324,5300:361:1,-1,-36,0,0,-0.0635303 -53325,5300:360:2,-0.5,-36,0,0,-0.0568281 -53326,3300:360:2,0,-36,0,0,-0.0562474 -53327,3300:360:2,0.5,-36,0,0,-0.0579273 -53328,3300:361:1,1,-36,0,0,-0.0575361 -53329,3300:361:2,1.5,-36,0,0,-0.0568946 -53330,3300:362:1,2,-36,0,0,-0.0545678 -53331,3300:362:2,2.5,-36,0,0,-0.0468821 -53332,3300:363:1,3,-36,0,0,-0.0448683 -53333,3300:363:2,3.5,-36,0,0,-0.0455154 -53334,3300:364:1,4,-36,0,0,-0.0457683 -53335,3300:364:2,4.5,-36,0,0,-0.0465471 -53336,3300:465:1,5,-36,0,0,-0.0485162 -53337,3300:465:2,5.5,-36,0,0,-0.0502914 -53338,3300:466:1,6,-36,0,0,-0.0440983 -53339,3300:466:2,6.5,-36,0,0,-0.0437338 -53340,3300:467:1,7,-36,0,0,-0.0509021 -53341,3300:467:2,7.5,-36,0,0,-0.0571608 -53342,3300:468:1,8,-36,0,0,-0.0593813 -53343,3300:468:2,8.5,-36,0,0,-0.0624066 -53344,3300:469:1,9,-36,0,0,-0.0656112 -53345,3300:469:2,9.5,-36,0,0,-0.0642365 -53346,3301:360:1,10,-36,0,0,-0.0595065 -53347,3301:360:2,10.5,-36,0,0,-0.0513653 -53348,3301:361:1,11,-36,0,0,-0.0415344 -53349,3301:361:2,11.5,-36,0,0,-0.038528 -53350,3301:362:1,12,-36,0,0,-0.0397041 -53351,3301:362:2,12.5,-36,0,0,-0.0457261 -53352,3301:363:1,13,-36,0,0,-0.050678 -53353,3301:363:2,13.5,-36,0,0,-0.052038 -53354,3301:364:1,14,-36,0,0,-0.0516523 -53355,3301:364:2,14.5,-36,0,0,-0.0488432 -53356,3301:465:1,15,-36,0,0,-0.0456945 -53357,3301:465:2,15.5,-36,0,0,-0.0457683 -53358,3301:466:1,16,-36,0,0,-0.0455257 -53359,3301:466:2,16.5,-36,0,0,-0.0450342 -53360,3301:467:1,17,-36,0,0,-0.0436834 -53361,3301:467:2,17.5,-36,0,0,-0.0403851 -53362,3301:468:1,18,-36,0,0,-0.0335991 -53363,3301:468:2,18.5,-36,0,0,-0.0303575 -53364,3301:469:1,19,-36,0,0,-0.0296878 -53365,3301:469:2,19.5,-36,0,0,-0.0304059 -53366,3302:360:1,20,-36,0,0,-0.0325351 -53367,3302:360:2,20.5,-36,0,0,-0.0351787 -53368,3302:361:1,21,-36,0,0,-0.0377493 -53369,3302:361:2,21.5,-36,0,0,-0.03908 -53370,3302:362:1,22,-36,0,0,-0.0373192 -53371,3302:362:2,22.5,-36,0,0,-0.0370635 -53372,3302:363:1,23,-36,0,0,-0.0386875 -53373,3302:363:2,23.5,-36,0,0,-0.0444149 -53374,3302:364:1,24,-36,0,0,-0.0472633 -53375,3302:364:2,24.5,-36,0,0,-0.0448269 -53376,3302:465:1,25,-36,0,0,-0.0436029 -53377,3302:465:2,25.5,-36,0,0,-0.0436431 -53378,3302:466:1,26,-36,0,0,-0.0491725 -53379,3302:466:2,26.5,-36,0,0,-0.0532747 -53380,3302:467:1,27,-36,0,0,-0.0510322 -53381,3302:467:2,27.5,-36,0,0,-0.0481578 -53382,3302:468:1,28,-36,0,0,-0.0435226 -53383,3302:468:2,28.5,-36,0,0,-0.0378101 -53384,3302:469:1,29,-36,0,0,-0.0385633 -53385,3302:469:2,29.5,-36,0,0,-0.04418 -53386,3303:360:1,30,-36,0,0,-0.0567088 -53387,3303:360:2,30.5,-36,0,0,-0.0566692 -53388,3303:361:1,31,-36,0,0,-0.0527691 -53389,3303:361:2,31.5,-36,0,0,-0.0454734 -53390,3303:362:1,32,-36,0,0,-0.0431331 -53391,3303:362:2,32.5,-36,0,0,-0.0432625 -53392,3303:363:1,33,-36,0,0,-0.0428061 -53393,3303:363:2,33.5,-36,0,0,-0.0424627 -53394,3303:364:1,34,-36,0,0,-0.0426487 -53395,3303:364:2,34.5,-36,0,0,-0.0435425 -53396,3303:465:1,35,-36,0,0,-0.0438954 -53397,3303:465:2,35.5,-36,0,0,-0.0413435 -53398,3303:466:1,36,-36,0,0,-0.0399513 -53399,3303:466:2,36.5,-36,0,0,-0.0384837 -53400,3303:467:1,37,-36,0,0,-0.0356322 -53401,3303:467:2,37.5,-36,0,0,-0.0351625 -53402,3303:468:1,38,-36,0,0,-0.0357629 -53403,3303:468:2,38.5,-36,0,0,-0.036633 -53404,3303:469:1,39,-36,0,0,-0.0374049 -53405,3303:469:2,39.5,-36,0,0,-0.038246 -53406,3304:360:1,40,-36,0,0,-0.0394769 -53407,3304:360:2,40.5,-36,0,0,-0.0451594 -53408,3304:361:1,41,-36,0,0,-0.0468388 -53409,3304:361:2,41.5,-36,0,0,-0.0417546 -53410,3304:362:1,42,-36,0,0,-0.040899 -53411,3304:362:2,42.5,-36,0,0,-0.0406926 -53412,3304:363:1,43,-36,0,0,-0.0398229 -53413,3304:363:2,43.5,-36,0,0,-0.0389815 -53414,3304:364:1,44,-36,0,0,-0.0382549 -53415,3304:364:2,44.5,-36,0,0,-0.0375336 -53416,3304:465:1,45,-36,0,0,-0.0367253 -53417,3304:465:2,45.5,-36,0,0,-0.0358611 -53418,3304:466:1,46,-36,0,0,-0.0345964 -53419,3304:466:2,46.5,-36,0,0,-0.0321295 -53420,3304:467:1,47,-36,0,0,-0.0294256 -53421,3304:467:2,47.5,-36,0,0,-0.0274992 -53422,3304:468:1,48,-36,0,0,-0.0258011 -53423,3304:468:2,48.5,-36,0,0,-0.0281562 -53424,3304:469:1,49,-36,0,0,-0.0285948 -53425,3304:469:2,49.5,-36,0,0,-0.0275492 -53426,3305:360:1,50,-36,0,0,-0.0257193 -53427,3305:360:2,50.5,-36,0,0,-0.0249503 -53428,3305:361:1,51,-36,0,0,-0.0255103 -53429,3305:361:2,51.5,-36,0,0,-0.0239597 -53430,3305:362:1,52,-36,0,0,-0.023392 -53431,3305:362:2,52.5,-36,0,0,-0.0238408 -53432,3305:363:1,53,-36,0,0,-0.0258127 -53433,3305:363:2,53.5,-36,0,0,-0.0279397 -53434,3305:364:1,54,-36,0,0,-0.0291658 -53435,3305:364:2,54.5,-36,0,0,-0.0300345 -53436,3305:465:1,55,-36,0,0,-0.0326838 -53437,3305:465:2,55.5,-36,0,0,-0.0494355 -53438,3305:466:1,56,-36,0,0,-0.0610741 -53439,3305:466:2,56.5,-36,0,0,-0.054479 -53440,3305:467:1,57,-36,0,0,-0.0417643 -53441,3305:467:2,57.5,-36,0,0,-0.0360422 -53442,3305:468:1,58,-36,0,0,-0.0372251 -53443,3305:468:2,58.5,-36,0,0,-0.0474713 -53444,3305:469:1,59,-36,0,0,-0.068779 -53445,3305:469:2,59.5,-36,0,0,-0.0888782 -53446,3306:360:1,60,-36,0,0,-0.0935384 -53447,3306:360:2,60.5,-36,0,0,-0.0843663 -53448,3306:361:1,61,-36,0,0,-0.0677163 -53449,3306:361:2,61.5,-36,0,0,-0.061693 -53450,3306:362:1,62,-36,0,0,-0.0722135 -53451,3306:362:2,62.5,-36,0,0,-0.0429741 -53452,3306:363:1,63,-36,0,0,-0.0290732 -53453,3306:363:2,63.5,-36,0,0,-0.0296676 -53454,3306:364:1,64,-36,0,0,-0.0396677 -53455,3306:364:2,64.5,-36,0,0,-0.056908 -53456,3306:465:1,65,-36,0,0,-0.0549635 -53457,3306:465:2,65.5,-36,0,0,-0.041116 -53458,3306:466:1,66,-36,0,0,-0.0278447 -53459,3306:466:2,66.5,-36,0,0,-0.0226941 -53460,3306:467:1,67,-36,0,0,-0.0228331 -53461,3306:467:2,67.5,-36,0,0,-0.0236956 -53462,3306:468:1,68,-36,0,0,-0.0254872 -53463,3306:468:2,68.5,-36,0,0,-0.0293789 -53464,3306:469:1,69,-36,0,0,-0.0305586 -53465,3306:469:2,69.5,-36,0,0,-0.0311346 -53466,3307:360:1,70,-36,0,0,-0.0367423 -53467,3307:360:2,70.5,-36,0,0,-0.0439764 -53468,3307:361:1,71,-36,0,0,-0.0496884 -53469,3307:361:2,71.5,-36,0,0,-0.0542637 -53470,3307:362:1,72,-36,0,0,-0.0641458 -53471,3307:362:2,72.5,-36,0,0,-0.0741214 -53472,3307:363:2,73.5,-36,0,0,-0.0927735 -53473,3307:364:1,74,-36,0,0,-0.110214 -53474,3307:364:2,74.5,-36,0,0,-0.117206 -53475,3307:465:1,75,-36,0,0,-0.110376 -53476,3307:465:2,75.5,-36,0,0,-0.0946531 -53477,3307:466:1,76,-36,0,0,-0.0761016 -53478,3307:466:2,76.5,-36,0,0,-0.0681168 -53479,3307:467:1,77,-36,0,0,-0.0628626 -53480,3307:467:2,77.5,-36,0,0,-0.064767 -53481,3307:468:1,78,-36,0,0,-0.0656263 -53482,3307:468:2,78.5,-36,0,0,-0.0645239 -53483,3307:469:1,79,-36,0,0,-0.0617368 -53484,3307:469:2,79.5,-36,0,0,-0.0584579 -53485,3308:360:1,80,-36,0,0,-0.0585264 -53486,3308:360:2,80.5,-36,0,0,-0.0606891 -53487,3308:361:1,81,-36,0,0,-0.0616065 -53488,3308:361:2,81.5,-36,0,0,-0.059828 -53489,3308:362:1,82,-36,0,0,-0.0598981 -53490,3308:362:2,82.5,-36,0,0,-0.0661852 -53491,3308:363:1,83,-36,0,0,-0.0703908 -53492,3308:363:2,83.5,-36,0,0,-0.0683424 -53493,3308:364:1,84,-36,0,0,-0.0640405 -53494,3308:364:2,84.5,-36,0,0,-0.0543016 -53495,3308:465:1,85,-36,0,0,-0.058022 -53496,3308:465:2,85.5,-36,0,0,-0.0619542 -53497,3308:466:1,86,-36,0,0,-0.0646152 -53498,3308:466:2,86.5,-36,0,0,-0.06958 -53499,3308:467:1,87,-36,0,0,-0.0763738 -53500,3308:467:2,87.5,-36,0,0,-0.0739108 -53501,3308:468:1,88,-36,0,0,-0.0697116 -53502,3308:468:2,88.5,-36,0,0,-0.0656418 -53503,3308:469:1,89,-36,0,0,-0.0614621 -53504,3308:469:2,89.5,-36,0,0,-0.0573212 -53505,3309:360:1,90,-36,0,0,-0.0539611 -53506,3309:360:2,90.5,-36,0,0,-0.0525728 -53507,3309:361:1,91,-36,0,0,-0.0522196 -53508,3309:361:2,91.5,-36,0,0,-0.05239 -53509,3309:362:1,92,-36,0,0,-0.0535981 -53510,3309:362:2,92.5,-36,0,0,-0.0527567 -53511,3309:363:1,93,-36,0,0,-0.0519411 -53512,3309:363:2,93.5,-36,0,0,-0.049769 -53513,3309:364:1,94,-36,0,0,-0.0456417 -53514,3309:364:2,94.5,-36,0,0,-0.0414292 -53515,3309:465:1,95,-36,0,0,-0.042688 -53516,3309:465:2,95.5,-36,0,0,-0.0435627 -53517,3309:466:1,96,-36,0,0,-0.0452113 -53518,3309:466:2,96.5,-36,0,0,-0.0470233 -53519,3309:467:1,97,-36,0,0,-0.0453473 -53520,3309:467:2,97.5,-36,0,0,-0.0385013 -53521,3309:468:1,98,-36,0,0,-0.0373706 -53522,3309:468:2,98.5,-36,0,0,-0.0385633 -53523,3309:469:1,99,-36,0,0,-0.0462042 -53524,3309:469:2,99.5,-36,0,0,-0.0569209 -53525,3310:360:1,100,-36,0,0,-0.0572946 -53526,3310:360:2,100.5,-36,0,0,-0.0500583 -53527,3310:361:1,101,-36,0,0,-0.0445894 -53528,3310:361:2,101.5,-36,0,0,-0.0431528 -53529,3310:362:1,102,-36,0,0,-0.0441697 -53530,3310:362:2,102.5,-36,0,0,-0.0477913 -53531,3310:363:1,103,-36,0,0,-0.0518086 -53532,3310:363:2,103.5,-36,0,0,-0.0520982 -53533,3310:364:1,104,-36,0,0,-0.0492069 -53534,3310:364:2,104.5,-36,0,0,-0.0445176 -53535,3310:465:1,105,-36,0,0,-0.0472523 -53536,3310:465:2,105.5,-36,0,0,-0.0464933 -53537,3310:466:1,106,-36,0,0,-0.0505489 -53538,3310:466:2,106.5,-36,0,0,-0.0683261 -53539,3310:467:1,107,-36,0,0,-0.0877313 -53540,3310:467:2,107.5,-36,0,0,-0.0915283 -53541,3310:468:1,108,-36,0,0,-0.0842449 -53542,3310:468:2,108.5,-36,0,0,-0.0680364 -53543,3310:469:1,109,-36,0,0,-0.0584579 -53544,3310:469:2,109.5,-36,0,0,-0.0650117 -53545,3311:360:1,110,-36,0,0,-0.082964 -53546,3311:360:2,110.5,-36,0,0,-0.0915505 -53547,3311:361:1,111,-36,0,0,-0.0828054 -53548,3311:361:2,111.5,-36,0,0,-0.0785681 -53549,3311:362:1,112,-36,0,0,-0.0790945 -53550,3311:362:2,112.5,-36,0,0,-0.0798144 -53551,3311:363:1,113,-36,0,0,-0.0795864 -53552,3311:363:2,113.5,-36,0,0,-0.077712 -53553,3311:364:1,114,-36,0,0,-0.0771591 -53554,3311:364:2,114.5,-36,0,0,-0.0716338 -53555,3311:465:1,115,-36,0,0,-0.0737008 -53556,3311:465:2,115.5,-36,0,0,-0.0865382 -53557,3311:466:1,116,-36,0,0,-0.0901056 -53558,3311:466:2,116.5,-36,0,0,-0.0892425 -53559,3311:467:1,117,-36,0,0,-0.0896301 -53560,3311:467:2,117.5,-36,0,0,-0.089436 -53561,3311:468:1,118,-36,0,0,-0.0878369 -53562,3311:468:2,118.5,-36,0,0,-0.0845077 -53563,3311:469:1,119,-36,0,0,-0.0828254 -53564,3311:469:2,119.5,-36,0,0,-0.0834617 -53565,3312:360:1,120,-36,0,0,-0.0838223 -53566,3312:360:2,120.5,-36,0,0,-0.0863723 -53567,3312:361:1,121,-36,0,0,-0.0877313 -53568,3312:361:2,121.5,-36,0,0,-0.0858351 -53569,3312:362:1,122,-36,0,0,-0.0841642 -53570,3312:362:2,122.5,-36,0,0,-0.0830834 -53571,3312:363:1,123,-36,0,0,-0.0819386 -53572,3312:363:2,123.5,-36,0,0,-0.0822332 -53573,3312:364:1,124,-36,0,0,-0.0825284 -53574,3312:364:2,124.5,-36,0,0,-0.082964 -53575,3312:465:1,125,-36,0,0,-0.083662 -53576,3312:465:2,125.5,-36,0,0,-0.0849141 -53577,3312:466:1,126,-36,0,0,-0.0867884 -53578,3312:466:2,126.5,-36,0,0,-0.0884091 -53579,3312:467:1,127,-36,0,0,-0.0891351 -53580,3312:467:2,127.5,-36,0,0,-0.0898675 -53581,3312:468:1,128,-36,0,0,-0.0905844 -53582,3312:468:2,128.5,-36,0,0,-0.0908032 -53583,3312:469:1,129,-36,0,0,-0.089781 -53584,3312:469:2,129.5,-36,0,0,-0.0871013 -53585,3313:360:1,130,-36,0,0,-0.0856706 -53586,3313:360:2,130.5,-36,0,0,-0.0851586 -53587,3313:361:1,131,-36,0,0,-0.0854451 -53588,3313:361:2,131.5,-36,0,0,-0.085712 -53589,3313:362:1,132,-36,0,0,-0.0851998 -53590,3313:362:2,132.5,-36,0,0,-0.084346 -53591,3313:363:1,133,-36,0,0,-0.0840032 -53592,3313:363:2,133.5,-36,0,0,-0.0845689 -53593,3313:364:1,134,-36,0,0,-0.0856091 -53594,3313:364:2,134.5,-36,0,0,-0.0877313 -53595,3313:465:1,135,-36,0,0,-0.0885363 -53596,3313:465:2,135.5,-36,0,0,-0.0876053 -53597,3313:466:1,136,-36,0,0,-0.0867255 -53598,3313:466:2,136.5,-36,0,0,-0.0856913 -53599,3313:467:1,137,-36,0,0,-0.0851175 -53600,3313:467:2,137.5,-36,0,0,-0.0866219 -53601,3313:468:1,138,-36,0,0,-0.0919266 -53602,3313:468:2,138.5,-36,0,0,-0.0969729 -53603,3313:469:1,139,-36,0,0,-0.10013 -53604,3313:469:2,139.5,-36,0,0,-0.102471 -53605,3314:360:1,140,-36,0,0,-0.105309 -53606,3314:360:2,140.5,-36,0,0,-0.110621 -53607,3314:361:1,141,-36,0,0,-0.134588 -53608,3314:361:2,141.5,-36,0,0,-0.13605 -53609,3314:362:1,142,-36,0,0,-0.13605 -53610,3314:362:2,142.5,-36,0,0,-0.126693 -53611,3314:363:1,143,-36,0,0,-0.113484 -53612,3314:363:2,143.5,-36,0,0,-0.104235 -53613,3314:364:1,144,-36,0,0,-0.10472 -53614,3314:364:2,144.5,-36,0,0,-0.124445 -53615,3314:465:1,145,-36,0,0,-0.13605 -53616,3314:465:2,145.5,-36,0,0,-0.13605 -53617,3314:466:1,146,-36,0,0,-0.13605 -53618,3314:466:2,146.5,-36,0,0,-0.136032 -53619,3314:467:1,147,-36,0,0,-0.13605 -53620,3314:467:2,147.5,-36,0,0,-0.13605 -53621,3314:468:1,148,-36,0,0,-0.13605 -53622,3314:468:2,148.5,-36,0,0,-0.13605 -53623,3314:469:1,149,-36,0,0,-0.13605 -53624,3314:469:2,149.5,-36,0,0,-0.13605 -53625,3315:360:1,150,-36,0,0,-0.13605 -53626,3315:360:2,150.5,-36,0,0,-0.13605 -53627,3315:361:1,151,-36,0,0,-0.13605 -53628,3315:361:2,151.5,-36,0,0,-0.13605 -53629,3315:362:1,152,-36,0,0,-0.131623 -53630,3315:362:2,152.5,-36,0,0,-0.111356 -53631,3315:363:1,153,-36,0,0,-0.108021 -53632,3315:363:2,153.5,-36,0,0,-0.104159 -53633,3315:364:1,154,-36,0,0,-0.107705 -53634,3315:364:2,154.5,-36,0,0,-0.111137 -53635,3315:465:1,155,-36,0,0,-0.110133 -53636,3315:465:2,155.5,-36,0,0,-0.107258 -53637,3315:466:1,156,-36,0,0,-0.107783 -53638,3315:466:2,156.5,-36,0,0,-0.110485 -53639,3315:467:1,157,-36,0,0,-0.114099 -53640,3315:467:2,157.5,-36,0,0,-0.115827 -53641,3315:468:1,158,-36,0,0,-0.116342 -53642,3315:468:2,158.5,-36,0,0,-0.118604 -53643,3315:469:1,159,-36,0,0,-0.114043 -53644,3315:469:2,159.5,-36,0,0,-0.111329 -53645,3316:360:1,160,-36,0,0,-0.115087 -53646,3316:360:2,160.5,-36,0,0,-0.114663 -53647,3316:361:1,161,-36,0,0,-0.109299 -53648,3316:361:2,161.5,-36,0,0,-0.108286 -53649,3316:362:1,162,-36,0,0,-0.116027 -53650,3316:362:2,162.5,-36,0,0,-0.123123 -53651,3316:363:1,163,-36,0,0,-0.123184 -53652,3316:363:2,163.5,-36,0,0,-0.127675 -53653,3316:364:1,164,-36,0,0,-0.130183 -53654,3316:364:2,164.5,-36,0,0,-0.128729 -53655,3316:465:1,165,-36,0,0,-0.128217 -53656,3316:465:2,165.5,-36,0,0,-0.123982 -53657,3316:466:1,166,-36,0,0,-0.124569 -53658,3316:466:2,166.5,-36,0,0,-0.127994 -53659,3317:361:1,171,-36,0,0,-0.125096 -53660,3317:361:2,171.5,-36,0,0,-0.0858149 -53661,3317:362:1,172,-36,0,0,-0.0698767 -53662,3317:362:2,172.5,-36,0,0,-0.0679722 -53663,3317:363:1,173,-36,0,0,-0.0698107 -53664,3317:363:2,173.5,-36,0,0,-0.0725049 -53665,3317:364:1,174,-36,0,0,-0.0745625 -53666,3317:364:2,174.5,-36,0,0,-0.0764464 -53667,3317:465:1,175,-36,0,0,-0.0778047 -53668,3317:465:2,175.5,-36,0,0,-0.0771955 -53669,3317:466:1,176,-36,0,0,-0.0720253 -53670,3317:466:2,176.5,-36,0,0,-0.0687954 -53671,3317:467:1,177,-36,0,0,-0.0690886 -53672,3317:467:2,177.5,-36,0,0,-0.0694156 -53673,3317:468:1,178,-36,0,0,-0.0713802 -53674,3317:468:2,178.5,-36,0,0,-0.0752209 -53675,3317:469:1,179,-36,0,0,-0.0791129 -53676,3317:469:2,179.5,-36,0,0,-0.0831229 -53677,3318:360:1,180,-36,0,0,-0.0864349 -53678,5318:350:3,-180,-35.5,0,0,-0.0795673 -53679,5317:459:4,-179.5,-35.5,0,0,-0.0827263 -53680,5317:459:3,-179,-35.5,0,0,-0.0869131 -53681,5317:458:4,-178.5,-35.5,0,0,-0.0911539 -53682,5317:458:3,-178,-35.5,0,0,-0.0944703 -53683,5317:457:4,-177.5,-35.5,0,0,-0.0967379 -53684,5317:457:3,-177,-35.5,0,0,-0.0982748 -53685,5317:456:4,-176.5,-35.5,0,0,-0.0991134 -53686,5317:456:3,-176,-35.5,0,0,-0.0989212 -53687,5317:455:4,-175.5,-35.5,0,0,-0.0967616 -53688,5317:455:3,-175,-35.5,0,0,-0.0954582 -53689,5317:354:4,-174.5,-35.5,0,0,-0.0946993 -53690,5317:354:3,-174,-35.5,0,0,-0.0935839 -53691,5317:353:4,-173.5,-35.5,0,0,-0.125719 -53692,5317:353:3,-173,-35.5,0,0,-0.13605 -53693,5317:352:4,-172.5,-35.5,0,0,-0.13605 -53694,5317:352:3,-172,-35.5,0,0,-0.127834 -53695,5317:351:4,-171.5,-35.5,0,0,-0.102522 -53696,5317:351:3,-171,-35.5,0,0,-0.102847 -53697,5317:350:4,-170.5,-35.5,0,0,-0.112566 -53698,5317:350:3,-170,-35.5,0,0,-0.111028 -53699,5316:459:4,-169.5,-35.5,0,0,-0.116889 -53700,5316:459:3,-169,-35.5,0,0,-0.13348 -53701,5316:458:4,-168.5,-35.5,0,0,-0.13605 -53702,5316:458:3,-168,-35.5,0,0,-0.13605 -53703,5316:457:4,-167.5,-35.5,0,0,-0.13605 -53704,5316:457:3,-167,-35.5,0,0,-0.131623 -53705,5316:456:4,-166.5,-35.5,0,0,-0.132349 -53706,5316:456:3,-166,-35.5,0,0,-0.134656 -53707,5316:455:4,-165.5,-35.5,0,0,-0.13605 -53708,5316:455:3,-165,-35.5,0,0,-0.13605 -53709,5316:354:4,-164.5,-35.5,0,0,-0.13605 -53710,5316:354:3,-164,-35.5,0,0,-0.13605 -53711,5316:353:4,-163.5,-35.5,0,0,-0.13605 -53712,5316:353:3,-163,-35.5,0,0,-0.13605 -53713,5316:352:4,-162.5,-35.5,0,0,-0.13605 -53714,5316:352:3,-162,-35.5,0,0,-0.13605 -53715,5316:351:4,-161.5,-35.5,0,0,-0.13605 -53716,5316:351:3,-161,-35.5,0,0,-0.13605 -53717,5316:350:4,-160.5,-35.5,0,0,-0.13605 -53718,5316:350:3,-160,-35.5,0,0,-0.13605 -53719,5315:459:4,-159.5,-35.5,0,0,-0.13605 -53720,5315:459:3,-159,-35.5,0,0,-0.13605 -53721,5315:458:4,-158.5,-35.5,0,0,-0.13605 -53722,5315:458:3,-158,-35.5,0,0,-0.13605 -53723,5315:457:4,-157.5,-35.5,0,0,-0.13605 -53724,5315:457:3,-157,-35.5,0,0,-0.13605 -53725,5315:456:4,-156.5,-35.5,0,0,-0.13605 -53726,5315:456:3,-156,-35.5,0,0,-0.13605 -53727,5315:455:4,-155.5,-35.5,0,0,-0.13605 -53728,5315:455:3,-155,-35.5,0,0,-0.13605 -53729,5315:354:4,-154.5,-35.5,0,0,-0.13605 -53730,5315:354:3,-154,-35.5,0,0,-0.13605 -53731,5315:353:4,-153.5,-35.5,0,0,-0.13605 -53732,5315:353:3,-153,-35.5,0,0,-0.13605 -53733,5315:352:4,-152.5,-35.5,0,0,-0.13605 -53734,5315:352:3,-152,-35.5,0,0,-0.13605 -53735,5315:351:4,-151.5,-35.5,0,0,-0.13605 -53736,5315:351:3,-151,-35.5,0,0,-0.13605 -53737,5315:350:4,-150.5,-35.5,0,0,-0.13605 -53738,5315:350:3,-150,-35.5,0,0,-0.13605 -53739,5314:459:4,-149.5,-35.5,0,0,-0.13605 -53740,5314:459:3,-149,-35.5,0,0,-0.13605 -53741,5314:458:4,-148.5,-35.5,0,0,-0.13605 -53742,5314:458:3,-148,-35.5,0,0,-0.13605 -53743,5314:457:4,-147.5,-35.5,0,0,-0.13605 -53744,5314:457:3,-147,-35.5,0,0,-0.13605 -53745,5314:456:4,-146.5,-35.5,0,0,-0.13605 -53746,5314:456:3,-146,-35.5,0,0,-0.13605 -53747,5314:455:4,-145.5,-35.5,0,0,-0.13605 -53748,5314:455:3,-145,-35.5,0,0,-0.13605 -53749,5314:354:4,-144.5,-35.5,0,0,-0.13605 -53750,5314:354:3,-144,-35.5,0,0,-0.13605 -53751,5314:353:4,-143.5,-35.5,0,0,-0.13605 -53752,5314:353:3,-143,-35.5,0,0,-0.13605 -53753,5314:352:4,-142.5,-35.5,0,0,-0.13605 -53754,5314:352:3,-142,-35.5,0,0,-0.13605 -53755,5314:351:4,-141.5,-35.5,0,0,-0.13605 -53756,5314:351:3,-141,-35.5,0,0,-0.13605 -53757,5314:350:4,-140.5,-35.5,0,0,-0.13605 -53758,5314:350:3,-140,-35.5,0,0,-0.13605 -53759,5313:459:4,-139.5,-35.5,0,0,-0.13605 -53760,5313:459:3,-139,-35.5,0,0,-0.13605 -53761,5313:458:4,-138.5,-35.5,0,0,-0.13605 -53762,5313:458:3,-138,-35.5,0,0,-0.13605 -53763,5313:457:4,-137.5,-35.5,0,0,-0.13605 -53764,5313:457:3,-137,-35.5,0,0,-0.13605 -53765,5313:456:4,-136.5,-35.5,0,0,-0.13605 -53766,5313:456:3,-136,-35.5,0,0,-0.13605 -53767,5313:455:4,-135.5,-35.5,0,0,-0.13605 -53768,5313:455:3,-135,-35.5,0,0,-0.13605 -53769,5313:354:4,-134.5,-35.5,0,0,-0.13605 -53770,5313:354:3,-134,-35.5,0,0,-0.13605 -53771,5313:353:4,-133.5,-35.5,0,0,-0.13605 -53772,5313:353:3,-133,-35.5,0,0,-0.13605 -53773,5313:352:4,-132.5,-35.5,0,0,-0.13605 -53774,5313:352:3,-132,-35.5,0,0,-0.13605 -53775,5313:351:4,-131.5,-35.5,0,0,-0.13605 -53776,5313:351:3,-131,-35.5,0,0,-0.13605 -53777,5313:350:4,-130.5,-35.5,0,0,-0.13605 -53778,5313:350:3,-130,-35.5,0,0,-0.13605 -53779,5312:459:4,-129.5,-35.5,0,0,-0.13605 -53780,5312:459:3,-129,-35.5,0,0,-0.13605 -53781,5312:458:4,-128.5,-35.5,0,0,-0.13605 -53782,5312:458:3,-128,-35.5,0,0,-0.13605 -53783,5312:457:4,-127.5,-35.5,0,0,-0.13605 -53784,5312:457:3,-127,-35.5,0,0,-0.13605 -53785,5312:456:4,-126.5,-35.5,0,0,-0.13605 -53786,5312:456:3,-126,-35.5,0,0,-0.13605 -53787,5312:455:4,-125.5,-35.5,0,0,-0.13605 -53788,5312:455:3,-125,-35.5,0,0,-0.13605 -53789,5312:354:4,-124.5,-35.5,0,0,-0.13605 -53790,5312:354:3,-124,-35.5,0,0,-0.13605 -53791,5312:353:4,-123.5,-35.5,0,0,-0.13605 -53792,5312:353:3,-123,-35.5,0,0,-0.13605 -53793,5312:352:4,-122.5,-35.5,0,0,-0.13605 -53794,5312:352:3,-122,-35.5,0,0,-0.13605 -53795,5312:351:4,-121.5,-35.5,0,0,-0.13605 -53796,5312:351:3,-121,-35.5,0,0,-0.13605 -53797,5312:350:4,-120.5,-35.5,0,0,-0.13605 -53798,5312:350:3,-120,-35.5,0,0,-0.13605 -53799,5311:459:4,-119.5,-35.5,0,0,-0.13574 -53800,5311:459:3,-119,-35.5,0,0,-0.136022 -53801,5311:458:4,-118.5,-35.5,0,0,-0.13605 -53802,5311:458:3,-118,-35.5,0,0,-0.131032 -53803,5311:457:4,-117.5,-35.5,0,0,-0.12491 -53804,5311:457:3,-117,-35.5,0,0,-0.127453 -53805,5311:456:4,-116.5,-35.5,0,0,-0.130541 -53806,5311:456:3,-116,-35.5,0,0,-0.129212 -53807,5311:455:4,-115.5,-35.5,0,0,-0.130476 -53808,5311:455:3,-115,-35.5,0,0,-0.135888 -53809,5311:354:4,-114.5,-35.5,0,0,-0.134926 -53810,5311:354:3,-114,-35.5,0,0,-0.124259 -53811,5311:353:4,-113.5,-35.5,0,0,-0.115485 -53812,5311:353:3,-113,-35.5,0,0,-0.110647 -53813,5311:352:4,-112.5,-35.5,0,0,-0.109353 -53814,5311:352:3,-112,-35.5,0,0,-0.113651 -53815,5311:351:4,-111.5,-35.5,0,0,-0.120288 -53816,5311:351:3,-111,-35.5,0,0,-0.120169 -53817,5311:350:4,-110.5,-35.5,0,0,-0.119694 -53818,5311:350:3,-110,-35.5,0,0,-0.112649 -53819,5310:459:4,-109.5,-35.5,0,0,-0.104235 -53820,5310:459:3,-109,-35.5,0,0,-0.101281 -53821,5310:458:4,-108.5,-35.5,0,0,-0.102647 -53822,5310:458:3,-108,-35.5,0,0,-0.103652 -53823,5310:457:4,-107.5,-35.5,0,0,-0.0998628 -53824,5310:457:3,-107,-35.5,0,0,-0.0952968 -53825,5310:456:4,-106.5,-35.5,0,0,-0.0949744 -53826,5310:456:3,-106,-35.5,0,0,-0.0965507 -53827,5310:455:4,-105.5,-35.5,0,0,-0.0990657 -53828,5310:455:3,-105,-35.5,0,0,-0.0980604 -53829,5310:354:4,-104.5,-35.5,0,0,-0.0923269 -53830,5310:354:3,-104,-35.5,0,0,-0.092193 -53831,5310:353:4,-103.5,-35.5,0,0,-0.0964337 -53832,5310:353:3,-103,-35.5,0,0,-0.0959446 -53833,5310:352:4,-102.5,-35.5,0,0,-0.0915283 -53834,5310:352:3,-102,-35.5,0,0,-0.0876471 -53835,5310:351:4,-101.5,-35.5,0,0,-0.086414 -53836,5310:351:3,-101,-35.5,0,0,-0.0872898 -53837,5310:350:4,-100.5,-35.5,0,0,-0.0892425 -53838,5310:350:3,-100,-35.5,0,0,-0.0901712 -53839,5309:459:4,-99.5,-35.5,0,0,-0.0903231 -53840,5309:459:3,-99,-35.5,0,0,-0.0923269 -53841,5309:458:4,-98.5,-35.5,0,0,-0.0908253 -53842,5309:458:3,-98,-35.5,0,0,-0.0866423 -53843,5309:457:4,-97.5,-35.5,0,0,-0.0849955 -53844,5309:457:3,-97,-35.5,0,0,-0.086414 -53845,5309:456:4,-96.5,-35.5,0,0,-0.0891992 -53846,5309:456:3,-96,-35.5,0,0,-0.0908687 -53847,5309:455:4,-95.5,-35.5,0,0,-0.0885578 -53848,5309:455:3,-95,-35.5,0,0,-0.0852197 -53849,5309:354:4,-94.5,-35.5,0,0,-0.0837825 -53850,5309:354:3,-94,-35.5,0,0,-0.0823317 -53851,5309:353:4,-93.5,-35.5,0,0,-0.0820564 -53852,5309:353:3,-93,-35.5,0,0,-0.0852403 -53853,5309:352:4,-92.5,-35.5,0,0,-0.0903231 -53854,5309:352:3,-92,-35.5,0,0,-0.0931551 -53855,5309:351:4,-91.5,-35.5,0,0,-0.0914185 -53856,5309:351:3,-91,-35.5,0,0,-0.0875841 -53857,5309:350:4,-90.5,-35.5,0,0,-0.0892208 -53858,5309:350:3,-90,-35.5,0,0,-0.0885363 -53859,5308:459:4,-89.5,-35.5,0,0,-0.0848731 -53860,5308:459:3,-89,-35.5,0,0,-0.0823906 -53861,5308:458:4,-88.5,-35.5,0,0,-0.083883 -53862,5308:458:3,-88,-35.5,0,0,-0.083502 -53863,5308:457:4,-87.5,-35.5,0,0,-0.0818997 -53864,5308:457:3,-87,-35.5,0,0,-0.0814702 -53865,5308:456:4,-86.5,-35.5,0,0,-0.0792644 -53866,5308:456:3,-86,-35.5,0,0,-0.0831629 -53867,5308:455:4,-85.5,-35.5,0,0,-0.0884305 -53868,5308:455:3,-85,-35.5,0,0,-0.0842855 -53869,5308:354:4,-84.5,-35.5,0,0,-0.0824893 -53870,5308:354:3,-84,-35.5,0,0,-0.0805608 -53871,5308:353:4,-83.5,-35.5,0,0,-0.0791319 -53872,5308:353:3,-83,-35.5,0,0,-0.0793776 -53873,5308:352:4,-82.5,-35.5,0,0,-0.0808496 -53874,5308:352:3,-82,-35.5,0,0,-0.0831229 -53875,5308:351:4,-81.5,-35.5,0,0,-0.0855478 -53876,5308:351:3,-81,-35.5,0,0,-0.0853832 -53877,5308:350:4,-80.5,-35.5,0,0,-0.0849955 -53878,5308:350:3,-80,-35.5,0,0,-0.0851586 -53879,5307:459:4,-79.5,-35.5,0,0,-0.0872898 -53880,5307:459:3,-79,-35.5,0,0,-0.090432 -53881,5307:458:4,-78.5,-35.5,0,0,-0.0928631 -53882,5307:458:3,-78,-35.5,0,0,-0.0928412 -53883,5307:457:4,-77.5,-35.5,0,0,-0.0928412 -53884,5307:457:3,-77,-35.5,0,0,-0.092998 -53885,5307:456:4,-76.5,-35.5,0,0,-0.0906938 -53886,5307:456:3,-76,-35.5,0,0,-0.0893067 -53887,5307:455:4,-75.5,-35.5,0,0,-0.0971143 -53888,5307:455:3,-75,-35.5,0,0,-0.100106 -53889,5307:354:4,-74.5,-35.5,0,0,-0.107995 -53890,5306:456:4,-66.5,-35.5,0,0,-0.13605 -53891,5306:456:3,-66,-35.5,0,0,-0.13605 -53892,5306:455:4,-65.5,-35.5,0,0,-0.13605 -53893,5306:455:3,-65,-35.5,0,0,-0.13605 -53894,5306:354:4,-64.5,-35.5,0,0,-0.13605 -53895,5306:354:3,-64,-35.5,0,0,-0.13605 -53896,5306:353:4,-63.5,-35.5,0,0,-0.13605 -53897,5306:353:3,-63,-35.5,0,0,-0.136019 -53898,5306:352:4,-62.5,-35.5,0,0,-0.13605 -53899,5306:352:3,-62,-35.5,0,0,-0.13605 -53900,5306:351:4,-61.5,-35.5,0,0,-0.13605 -53901,5306:351:3,-61,-35.5,0,0,-0.13605 -53902,5306:350:4,-60.5,-35.5,0,0,-0.12212 -53903,5306:350:3,-60,-35.5,0,0,-0.0941738 -53904,5305:459:4,-59.5,-35.5,0,0,-0.0709756 -53905,5305:459:3,-59,-35.5,0,0,-0.0575493 -53906,5305:458:4,-58.5,-35.5,0,0,-0.0634111 -53907,5305:458:3,-58,-35.5,0,0,-0.103677 -53908,5305:457:4,-57.5,-35.5,0,0,-0.13605 -53909,5305:457:3,-57,-35.5,0,0,-0.13605 -53910,5305:456:4,-56.5,-35.5,0,0,-0.13605 -53911,5305:456:3,-56,-35.5,0,0,-0.13605 -53912,5305:455:4,-55.5,-35.5,0,0,-0.13605 -53913,5305:455:3,-55,-35.5,0,0,-0.13605 -53914,5305:354:4,-54.5,-35.5,0,0,-0.13605 -53915,5305:354:3,-54,-35.5,0,0,-0.13605 -53916,5305:353:4,-53.5,-35.5,0,0,-0.13605 -53917,5305:353:3,-53,-35.5,0,0,-0.13605 -53918,5305:352:4,-52.5,-35.5,0,0,-0.13605 -53919,5305:352:3,-52,-35.5,0,0,-0.13605 -53920,5305:351:4,-51.5,-35.5,0,0,-0.13605 -53921,5305:351:3,-51,-35.5,0,0,-0.13605 -53922,5305:350:4,-50.5,-35.5,0,0,-0.130607 -53923,5305:350:3,-50,-35.5,0,0,-0.117642 -53924,5304:459:4,-49.5,-35.5,0,0,-0.11163 -53925,5304:459:3,-49,-35.5,0,0,-0.110729 -53926,5304:458:4,-48.5,-35.5,0,0,-0.115286 -53927,5304:458:3,-48,-35.5,0,0,-0.121787 -53928,5304:457:4,-47.5,-35.5,0,0,-0.121035 -53929,5304:457:3,-47,-35.5,0,0,-0.109513 -53930,5304:456:4,-46.5,-35.5,0,0,-0.104694 -53931,5304:456:3,-46,-35.5,0,0,-0.101676 -53932,5304:455:4,-45.5,-35.5,0,0,-0.097161 -53933,5304:455:3,-45,-35.5,0,0,-0.0901274 -53934,5304:354:4,-44.5,-35.5,0,0,-0.0854245 -53935,5304:354:3,-44,-35.5,0,0,-0.0827063 -53936,5304:353:4,-43.5,-35.5,0,0,-0.0808307 -53937,5304:353:3,-43,-35.5,0,0,-0.0797575 -53938,5304:352:4,-42.5,-35.5,0,0,-0.0795482 -53939,5304:352:3,-42,-35.5,0,0,-0.0800624 -53940,5304:351:4,-41.5,-35.5,0,0,-0.0797001 -53941,5304:351:3,-41,-35.5,0,0,-0.078887 -53942,5304:350:4,-40.5,-35.5,0,0,-0.0782317 -53943,5304:350:3,-40,-35.5,0,0,-0.0777861 -53944,5303:459:4,-39.5,-35.5,0,0,-0.0766648 -53945,5303:459:3,-39,-35.5,0,0,-0.0720596 -53946,5303:458:4,-38.5,-35.5,0,0,-0.0690233 -53947,5303:458:3,-38,-35.5,0,0,-0.0698601 -53948,5303:457:4,-37.5,-35.5,0,0,-0.069105 -53949,5303:457:3,-37,-35.5,0,0,-0.0655339 -53950,5303:456:4,-36.5,-35.5,0,0,-0.062715 -53951,5303:456:3,-36,-35.5,0,0,-0.0599962 -53952,5303:455:4,-35.5,-35.5,0,0,-0.0573616 -53953,5303:455:3,-35,-35.5,0,0,-0.0552202 -53954,5303:354:4,-34.5,-35.5,0,0,-0.0545806 -53955,5303:354:3,-34,-35.5,0,0,-0.0560379 -53956,5303:353:4,-33.5,-35.5,0,0,-0.0568946 -53957,5303:353:3,-33,-35.5,0,0,-0.0562606 -53958,5303:352:4,-32.5,-35.5,0,0,-0.0562213 -53959,5303:352:3,-32,-35.5,0,0,-0.0553753 -53960,5303:351:4,-31.5,-35.5,0,0,-0.0519293 -53961,5303:351:3,-31,-35.5,0,0,-0.0467737 -53962,5303:350:4,-30.5,-35.5,0,0,-0.0440477 -53963,5303:350:3,-30,-35.5,0,0,-0.0456311 -53964,5302:459:4,-29.5,-35.5,0,0,-0.0549764 -53965,5302:459:3,-29,-35.5,0,0,-0.0672229 -53966,5302:458:4,-28.5,-35.5,0,0,-0.068779 -53967,5302:458:3,-28,-35.5,0,0,-0.0628184 -53968,5302:457:4,-27.5,-35.5,0,0,-0.0580899 -53969,5302:457:3,-27,-35.5,0,0,-0.058335 -53970,5302:456:4,-26.5,-35.5,0,0,-0.0634857 -53971,5302:456:3,-26,-35.5,0,0,-0.0678441 -53972,5302:455:4,-25.5,-35.5,0,0,-0.0653182 -53973,5302:455:3,-25,-35.5,0,0,-0.0519532 -53974,5302:354:4,-24.5,-35.5,0,0,-0.0504316 -53975,5302:354:3,-24,-35.5,0,0,-0.0621292 -53976,5302:353:4,-23.5,-35.5,0,0,-0.0765736 -53977,5302:353:3,-23,-35.5,0,0,-0.076957 -53978,5302:352:4,-22.5,-35.5,0,0,-0.0734388 -53979,5302:352:3,-22,-35.5,0,0,-0.0778415 -53980,5302:351:4,-21.5,-35.5,0,0,-0.0753639 -53981,5302:351:3,-21,-35.5,0,0,-0.0694812 -53982,5302:350:4,-20.5,-35.5,0,0,-0.0674453 -53983,5302:350:3,-20,-35.5,0,0,-0.0666547 -53984,5301:459:4,-19.5,-35.5,0,0,-0.0692356 -53985,5301:459:3,-19,-35.5,0,0,-0.0739284 -53986,5301:458:4,-18.5,-35.5,0,0,-0.0773796 -53987,5301:458:3,-18,-35.5,0,0,-0.0761016 -53988,5301:457:4,-17.5,-35.5,0,0,-0.0729356 -53989,5301:457:3,-17,-35.5,0,0,-0.0679082 -53990,5301:456:4,-16.5,-35.5,0,0,-0.0494124 -53991,5301:456:3,-16,-35.5,0,0,-0.0410027 -53992,5301:455:4,-15.5,-35.5,0,0,-0.0386163 -53993,5301:455:3,-15,-35.5,0,0,-0.0411351 -53994,5301:354:4,-14.5,-35.5,0,0,-0.0416875 -53995,5301:354:3,-14,-35.5,0,0,-0.0495731 -53996,5301:353:4,-13.5,-35.5,0,0,-0.0613324 -53997,5301:353:3,-13,-35.5,0,0,-0.0684552 -53998,5301:352:4,-12.5,-35.5,0,0,-0.0754355 -53999,5301:352:3,-12,-35.5,0,0,-0.0821349 -54000,5301:351:4,-11.5,-35.5,0,0,-0.0800624 -54001,5301:351:3,-11,-35.5,0,0,-0.0692356 -54002,5301:350:4,-10.5,-35.5,0,0,-0.0599542 -54003,5301:350:3,-10,-35.5,0,0,-0.059035 -54004,5300:459:4,-9.5,-35.5,0,0,-0.0637851 -54005,5300:459:3,-9,-35.5,0,0,-0.0741918 -54006,5300:458:4,-8.5,-35.5,0,0,-0.0941509 -54007,5300:458:3,-8,-35.5,0,0,-0.108286 -54008,5300:457:4,-7.5,-35.5,0,0,-0.11016 -54009,5300:457:3,-7,-35.5,0,0,-0.106969 -54010,5300:456:4,-6.5,-35.5,0,0,-0.0952736 -54011,5300:456:3,-6,-35.5,0,0,-0.0762287 -54012,5300:455:4,-5.5,-35.5,0,0,-0.0662476 -54013,5300:455:3,-5,-35.5,0,0,-0.0647522 -54014,5300:354:4,-4.5,-35.5,0,0,-0.0650117 -54015,5300:354:3,-4,-35.5,0,0,-0.0642061 -54016,5300:353:4,-3.5,-35.5,0,0,-0.0653492 -54017,5300:353:3,-3,-35.5,0,0,-0.0683581 -54018,5300:352:4,-2.5,-35.5,0,0,-0.0741918 -54019,5300:352:3,-2,-35.5,0,0,-0.0801196 -54020,5300:351:4,-1.5,-35.5,0,0,-0.0802919 -54021,5300:351:3,-1,-35.5,0,0,-0.0754355 -54022,5300:350:4,-0.5,-35.5,0,0,-0.06958 -54023,3300:350:4,0,-35.5,0,0,-0.0705404 -54024,3300:350:4,0.5,-35.5,0,0,-0.0702741 -54025,3300:351:3,1,-35.5,0,0,-0.0689418 -54026,3300:351:4,1.5,-35.5,0,0,-0.0665292 -54027,3300:352:3,2,-35.5,0,0,-0.0623333 -54028,3300:352:4,2.5,-35.5,0,0,-0.0581442 -54029,3300:353:3,3,-35.5,0,0,-0.0543649 -54030,3300:353:4,3.5,-35.5,0,0,-0.0519897 -54031,3300:354:3,4,-35.5,0,0,-0.051246 -54032,3300:354:4,4.5,-35.5,0,0,-0.052038 -54033,3300:455:3,5,-35.5,0,0,-0.0533739 -54034,3300:455:4,5.5,-35.5,0,0,-0.0535482 -54035,3300:456:3,6,-35.5,0,0,-0.0516644 -54036,3300:456:4,6.5,-35.5,0,0,-0.0499076 -54037,3300:457:3,7,-35.5,0,0,-0.0572277 -54038,3300:457:4,7.5,-35.5,0,0,-0.0592148 -54039,3300:458:3,8,-35.5,0,0,-0.0617947 -54040,3300:458:4,8.5,-35.5,0,0,-0.0680526 -54041,3300:459:3,9,-35.5,0,0,-0.0688118 -54042,3300:459:4,9.5,-35.5,0,0,-0.065673 -54043,3301:350:3,10,-35.5,0,0,-0.0615342 -54044,3301:350:4,10.5,-35.5,0,0,-0.0542005 -54045,3301:351:3,11,-35.5,0,0,-0.0458426 -54046,3301:351:4,11.5,-35.5,0,0,-0.0442002 -54047,3301:352:3,12,-35.5,0,0,-0.0498963 -54048,3301:352:4,12.5,-35.5,0,0,-0.0565897 -54049,3301:353:3,13,-35.5,0,0,-0.0617513 -54050,3301:353:4,13.5,-35.5,0,0,-0.0590628 -54051,3301:354:3,14,-35.5,0,0,-0.055764 -54052,3301:354:4,14.5,-35.5,0,0,-0.0542888 -54053,3301:455:3,15,-35.5,0,0,-0.0548612 -54054,3301:455:4,15.5,-35.5,0,0,-0.0556601 -54055,3301:456:3,16,-35.5,0,0,-0.0535109 -54056,3301:456:4,16.5,-35.5,0,0,-0.0493897 -54057,3301:457:3,17,-35.5,0,0,-0.0478575 -54058,3301:457:4,17.5,-35.5,0,0,-0.048102 -54059,3301:458:3,18,-35.5,0,0,-0.0472743 -54060,3301:458:4,18.5,-35.5,0,0,-0.0449306 -54061,3301:459:3,19,-35.5,0,0,-0.0433125 -54062,3301:459:4,19.5,-35.5,0,0,-0.0432126 -54063,3302:350:3,20,-35.5,0,0,-0.0445587 -54064,3302:350:4,20.5,-35.5,0,0,-0.0468712 -54065,3302:351:3,21,-35.5,0,0,-0.0497806 -54066,3302:351:4,21.5,-35.5,0,0,-0.0517003 -54067,3302:352:3,22,-35.5,0,0,-0.0507132 -54068,3302:352:4,22.5,-35.5,0,0,-0.0471104 -54069,3302:353:3,23,-35.5,0,0,-0.0434024 -54070,3302:353:4,23.5,-35.5,0,0,-0.0411917 -54071,3302:354:3,24,-35.5,0,0,-0.0433722 -54072,3302:354:4,24.5,-35.5,0,0,-0.0479242 -54073,3302:455:3,25,-35.5,0,0,-0.0526464 -54074,3302:455:4,25.5,-35.5,0,0,-0.0501517 -54075,3302:456:3,26,-35.5,0,0,-0.0503263 -54076,3302:456:4,26.5,-35.5,0,0,-0.0573882 -54077,3302:457:3,27,-35.5,0,0,-0.0574824 -54078,3302:457:4,27.5,-35.5,0,0,-0.0499309 -54079,3302:458:3,28,-35.5,0,0,-0.0416972 -54080,3302:458:4,28.5,-35.5,0,0,-0.0382198 -54081,3302:459:3,29,-35.5,0,0,-0.038211 -54082,3302:459:4,29.5,-35.5,0,0,-0.0416205 -54083,3303:350:3,30,-35.5,0,0,-0.0543649 -54084,3303:350:4,30.5,-35.5,0,0,-0.0639803 -54085,3303:351:3,31,-35.5,0,0,-0.0748461 -54086,3303:351:4,31.5,-35.5,0,0,-0.0789438 -54087,3303:352:3,32,-35.5,0,0,-0.071753 -54088,3303:352:4,32.5,-35.5,0,0,-0.0562081 -54089,3303:353:3,33,-35.5,0,0,-0.0496884 -54090,3303:353:4,33.5,-35.5,0,0,-0.0493554 -54091,3303:354:3,34,-35.5,0,0,-0.04873 -54092,3303:354:4,34.5,-35.5,0,0,-0.0481465 -54093,3303:455:3,35,-35.5,0,0,-0.0474713 -54094,3303:455:4,35.5,-35.5,0,0,-0.0463754 -54095,3303:456:3,36,-35.5,0,0,-0.0419089 -54096,3303:456:4,36.5,-35.5,0,0,-0.0389905 -54097,3303:457:3,37,-35.5,0,0,-0.0369786 -54098,3303:457:4,37.5,-35.5,0,0,-0.036349 -54099,3303:458:3,38,-35.5,0,0,-0.0370889 -54100,3303:458:4,38.5,-35.5,0,0,-0.0380535 -54101,3303:459:3,39,-35.5,0,0,-0.0391339 -54102,3303:459:4,39.5,-35.5,0,0,-0.0402369 -54103,3304:350:3,40,-35.5,0,0,-0.0433423 -54104,3304:350:4,40.5,-35.5,0,0,-0.0505253 -54105,3304:351:3,41,-35.5,0,0,-0.0476696 -54106,3304:351:4,41.5,-35.5,0,0,-0.0417934 -54107,3304:352:3,42,-35.5,0,0,-0.0409084 -54108,3304:352:4,42.5,-35.5,0,0,-0.0403387 -54109,3304:353:3,43,-35.5,0,0,-0.0397771 -54110,3304:353:4,43.5,-35.5,0,0,-0.0392688 -54111,3304:354:3,44,-35.5,0,0,-0.0387051 -54112,3304:354:4,44.5,-35.5,0,0,-0.037862 -54113,3304:455:3,45,-35.5,0,0,-0.0366751 -54114,3304:455:4,45.5,-35.5,0,0,-0.0353076 -54115,3304:456:3,46,-35.5,0,0,-0.0339463 -54116,3304:456:4,46.5,-35.5,0,0,-0.0317146 -54117,3304:457:3,47,-35.5,0,0,-0.0289478 -54118,3304:457:4,47.5,-35.5,0,0,-0.0271457 -54119,3304:458:3,48,-35.5,0,0,-0.0273187 -54120,3304:458:4,48.5,-35.5,0,0,-0.0299389 -54121,3304:459:3,49,-35.5,0,0,-0.0293989 -54122,3304:459:4,49.5,-35.5,0,0,-0.0276494 -54123,3305:350:3,50,-35.5,0,0,-0.026297 -54124,3305:350:4,50.5,-35.5,0,0,-0.0253605 -54125,3305:351:3,51,-35.5,0,0,-0.0246303 -54126,3305:351:4,51.5,-35.5,0,0,-0.0246695 -54127,3305:352:3,52,-35.5,0,0,-0.0252688 -54128,3305:352:4,52.5,-35.5,0,0,-0.0262554 -54129,3305:353:3,53,-35.5,0,0,-0.0278826 -54130,3305:353:4,53.5,-35.5,0,0,-0.0302815 -54131,3305:354:3,54,-35.5,0,0,-0.0323647 -54132,3305:354:4,54.5,-35.5,0,0,-0.0314198 -54133,3305:455:3,55,-35.5,0,0,-0.0304475 -54134,3305:455:4,55.5,-35.5,0,0,-0.0355996 -54135,3305:456:3,56,-35.5,0,0,-0.0480242 -54136,3305:456:4,56.5,-35.5,0,0,-0.0693175 -54137,3305:457:3,57,-35.5,0,0,-0.0846091 -54138,3305:457:4,57.5,-35.5,0,0,-0.0970669 -54139,3305:458:3,58,-35.5,0,0,-0.107022 -54140,3305:458:4,58.5,-35.5,0,0,-0.119547 -54141,3305:459:3,59,-35.5,0,0,-0.13605 -54142,3305:459:4,59.5,-35.5,0,0,-0.13605 -54143,3306:350:3,60,-35.5,0,0,-0.13605 -54144,3306:350:4,60.5,-35.5,0,0,-0.13605 -54145,3306:351:3,61,-35.5,0,0,-0.113539 -54146,3306:351:4,61.5,-35.5,0,0,-0.0821349 -54147,3306:352:3,62,-35.5,0,0,-0.0754891 -54148,3306:352:4,62.5,-35.5,0,0,-0.0826273 -54149,3306:353:3,63,-35.5,0,0,-0.0675405 -54150,3306:353:4,63.5,-35.5,0,0,-0.0700256 -54151,3306:354:3,64,-35.5,0,0,-0.107783 -54152,3306:354:4,64.5,-35.5,0,0,-0.120946 -54153,3306:455:3,65,-35.5,0,0,-0.108818 -54154,3306:455:4,65.5,-35.5,0,0,-0.0748109 -54155,3306:456:3,66,-35.5,0,0,-0.0446926 -54156,3306:456:4,66.5,-35.5,0,0,-0.0347866 -54157,3306:457:3,67,-35.5,0,0,-0.0425212 -54158,3306:457:4,67.5,-35.5,0,0,-0.0547334 -54159,3306:458:3,68,-35.5,0,0,-0.0648285 -54160,3306:458:4,68.5,-35.5,0,0,-0.0650271 -54161,3306:459:3,69,-35.5,0,0,-0.0634561 -54162,3306:459:4,69.5,-35.5,0,0,-0.0707244 -54163,3307:350:3,70,-35.5,0,0,-0.0894571 -54164,3307:350:4,70.5,-35.5,0,0,-0.110404 -54165,3307:351:3,71,-35.5,0,0,-0.116084 -54166,3307:351:4,71.5,-35.5,0,0,-0.11163 -54167,3307:352:3,72,-35.5,0,0,-0.105387 -54168,3307:352:4,72.5,-35.5,0,0,-0.111411 -54169,3307:353:4,73.5,-35.5,0,0,-0.135891 -54170,3307:354:3,74,-35.5,0,0,-0.13605 -54171,3307:354:4,74.5,-35.5,0,0,-0.13605 -54172,3307:455:3,75,-35.5,0,0,-0.13605 -54173,3307:455:4,75.5,-35.5,0,0,-0.119724 -54174,3307:456:3,76,-35.5,0,0,-0.0870177 -54175,3307:456:4,76.5,-35.5,0,0,-0.0798906 -54176,3307:457:3,77,-35.5,0,0,-0.0774347 -54177,3307:457:4,77.5,-35.5,0,0,-0.078887 -54178,3307:458:3,78,-35.5,0,0,-0.0789622 -54179,3307:458:4,78.5,-35.5,0,0,-0.0820564 -54180,3307:459:3,79,-35.5,0,0,-0.0832827 -54181,3307:459:4,79.5,-35.5,0,0,-0.0921042 -54182,3308:350:3,80,-35.5,0,0,-0.0988728 -54183,3308:350:4,80.5,-35.5,0,0,-0.0987769 -54184,3308:351:3,81,-35.5,0,0,-0.0970195 -54185,3308:351:4,81.5,-35.5,0,0,-0.0915067 -54186,3308:352:3,82,-35.5,0,0,-0.0832024 -54187,3308:352:4,82.5,-35.5,0,0,-0.0763921 -54188,3308:353:3,83,-35.5,0,0,-0.0707244 -54189,3308:353:4,83.5,-35.5,0,0,-0.0687141 -54190,3308:354:3,84,-35.5,0,0,-0.0698107 -54191,3308:354:4,84.5,-35.5,0,0,-0.0678119 -54192,3308:455:3,85,-35.5,0,0,-0.067748 -54193,3308:455:4,85.5,-35.5,0,0,-0.072179 -54194,3308:456:3,86,-35.5,0,0,-0.0770303 -54195,3308:456:4,86.5,-35.5,0,0,-0.0833222 -54196,3308:457:3,87,-35.5,0,0,-0.080484 -54197,3308:457:4,87.5,-35.5,0,0,-0.0714813 -54198,3308:458:3,88,-35.5,0,0,-0.0698434 -54199,3308:458:4,88.5,-35.5,0,0,-0.0690557 -54200,3308:459:3,89,-35.5,0,0,-0.0658275 -54201,3308:459:4,89.5,-35.5,0,0,-0.0604478 -54202,3309:350:3,90,-35.5,0,0,-0.0565764 -54203,3309:350:4,90.5,-35.5,0,0,-0.0566293 -54204,3309:351:3,91,-35.5,0,0,-0.0576166 -54205,3309:351:4,91.5,-35.5,0,0,-0.0562341 -54206,3309:352:3,92,-35.5,0,0,-0.055894 -54207,3309:352:4,92.5,-35.5,0,0,-0.0578459 -54208,3309:353:3,93,-35.5,0,0,-0.0541878 -54209,3309:353:4,93.5,-35.5,0,0,-0.0503499 -54210,3309:354:3,94,-35.5,0,0,-0.0473398 -54211,3309:354:4,94.5,-35.5,0,0,-0.0448578 -54212,3309:455:3,95,-35.5,0,0,-0.0444869 -54213,3309:455:4,95.5,-35.5,0,0,-0.0462574 -54214,3309:456:3,96,-35.5,0,0,-0.0501747 -54215,3309:456:4,96.5,-35.5,0,0,-0.0563657 -54216,3309:457:3,97,-35.5,0,0,-0.0572008 -54217,3309:457:4,97.5,-35.5,0,0,-0.0539361 -54218,3309:458:3,98,-35.5,0,0,-0.052038 -54219,3309:458:4,98.5,-35.5,0,0,-0.0661695 -54220,3309:459:3,99,-35.5,0,0,-0.0905412 -54221,3309:459:4,99.5,-35.5,0,0,-0.0966915 -54222,3310:350:3,100,-35.5,0,0,-0.0859382 -54223,3310:350:4,100.5,-35.5,0,0,-0.0612465 -54224,3310:351:3,101,-35.5,0,0,-0.0465258 -54225,3310:351:4,101.5,-35.5,0,0,-0.0441188 -54226,3310:352:3,102,-35.5,0,0,-0.0491499 -54227,3310:352:4,102.5,-35.5,0,0,-0.0600104 -54228,3310:353:3,103,-35.5,0,0,-0.0734042 -54229,3310:353:4,103.5,-35.5,0,0,-0.0771221 -54230,3310:354:3,104,-35.5,0,0,-0.0719228 -54231,3310:354:4,104.5,-35.5,0,0,-0.062715 -54232,3310:455:3,105,-35.5,0,0,-0.0533618 -54233,3310:455:4,105.5,-35.5,0,0,-0.051905 -54234,3310:456:3,106,-35.5,0,0,-0.0586359 -54235,3310:456:4,106.5,-35.5,0,0,-0.082964 -54236,3310:457:3,107,-35.5,0,0,-0.0959212 -54237,3310:457:4,107.5,-35.5,0,0,-0.0936515 -54238,3310:458:3,108,-35.5,0,0,-0.0810431 -54239,3310:458:4,108.5,-35.5,0,0,-0.0620705 -54240,3310:459:3,109,-35.5,0,0,-0.0662166 -54241,3310:459:4,109.5,-35.5,0,0,-0.0795291 -54242,3311:350:3,110,-35.5,0,0,-0.0936067 -54243,3311:350:4,110.5,-35.5,0,0,-0.0908473 -54244,3311:351:3,111,-35.5,0,0,-0.0842252 -54245,3311:351:4,111.5,-35.5,0,0,-0.0794157 -54246,3311:352:3,112,-35.5,0,0,-0.0792074 -54247,3311:352:4,112.5,-35.5,0,0,-0.0799861 -54248,3311:353:3,113,-35.5,0,0,-0.0810821 -54249,3311:353:4,113.5,-35.5,0,0,-0.0804453 -54250,3311:354:3,114,-35.5,0,0,-0.0803492 -54251,3311:354:4,114.5,-35.5,0,0,-0.0816064 -54252,3311:455:3,115,-35.5,0,0,-0.0867051 -54253,3311:455:4,115.5,-35.5,0,0,-0.0922154 -54254,3311:456:3,116,-35.5,0,0,-0.0913742 -54255,3311:456:4,116.5,-35.5,0,0,-0.0890062 -54256,3311:457:3,117,-35.5,0,0,-0.0884091 -54257,3311:457:4,117.5,-35.5,0,0,-0.0882393 -54258,3311:458:3,118,-35.5,0,0,-0.0875841 -54259,3311:458:4,118.5,-35.5,0,0,-0.0863932 -54260,3311:459:3,119,-35.5,0,0,-0.0854245 -54261,3311:459:4,119.5,-35.5,0,0,-0.0853426 -54262,3312:350:3,120,-35.5,0,0,-0.0864761 -54263,3312:350:4,120.5,-35.5,0,0,-0.0902361 -54264,3312:351:3,121,-35.5,0,0,-0.091352 -54265,3312:351:4,121.5,-35.5,0,0,-0.0884513 -54266,3312:352:3,122,-35.5,0,0,-0.0862484 -54267,3312:352:4,122.5,-35.5,0,0,-0.085036 -54268,3312:353:3,123,-35.5,0,0,-0.0855478 -54269,3312:353:4,123.5,-35.5,0,0,-0.0868087 -54270,3312:354:3,124,-35.5,0,0,-0.0872271 -54271,3312:354:4,124.5,-35.5,0,0,-0.0877101 -54272,3312:455:3,125,-35.5,0,0,-0.0881965 -54273,3312:455:4,125.5,-35.5,0,0,-0.0890709 -54274,3312:456:3,126,-35.5,0,0,-0.0906064 -54275,3312:456:4,126.5,-35.5,0,0,-0.0920377 -54276,3312:457:3,127,-35.5,0,0,-0.0928186 -54277,3312:457:4,127.5,-35.5,0,0,-0.0928186 -54278,3312:458:3,128,-35.5,0,0,-0.0930206 -54279,3312:458:4,128.5,-35.5,0,0,-0.0947678 -54280,3312:459:3,129,-35.5,0,0,-0.0975861 -54281,3312:459:4,129.5,-35.5,0,0,-0.0966679 -54282,3313:350:3,130,-35.5,0,0,-0.0920153 -54283,3313:350:4,130.5,-35.5,0,0,-0.0905631 -54284,3313:351:3,131,-35.5,0,0,-0.0901712 -54285,3313:351:4,131.5,-35.5,0,0,-0.0900844 -54286,3313:352:3,132,-35.5,0,0,-0.0899111 -54287,3313:352:4,132.5,-35.5,0,0,-0.0894788 -54288,3313:353:3,133,-35.5,0,0,-0.0894571 -54289,3313:353:4,133.5,-35.5,0,0,-0.0897164 -54290,3313:354:3,134,-35.5,0,0,-0.090258 -54291,3313:354:4,134.5,-35.5,0,0,-0.0916388 -54292,3313:455:3,135,-35.5,0,0,-0.0913298 -54293,3313:455:4,135.5,-35.5,0,0,-0.0903882 -54294,3313:456:3,136,-35.5,0,0,-0.0902799 -54295,3313:456:4,136.5,-35.5,0,0,-0.0900188 -54296,3313:457:3,137,-35.5,0,0,-0.0905192 -54297,3313:457:4,137.5,-35.5,0,0,-0.092729 -54298,3313:458:3,138,-35.5,0,0,-0.0958518 -54299,3313:458:4,138.5,-35.5,0,0,-0.0984423 -54300,3313:459:3,139,-35.5,0,0,-0.104133 -54301,3313:459:4,139.5,-35.5,0,0,-0.107363 -54302,3314:350:3,140,-35.5,0,0,-0.107048 -54303,3314:350:4,140.5,-35.5,0,0,-0.119842 -54304,3314:351:3,141,-35.5,0,0,-0.13605 -54305,3314:351:4,141.5,-35.5,0,0,-0.13605 -54306,3314:352:3,142,-35.5,0,0,-0.13605 -54307,3314:352:4,142.5,-35.5,0,0,-0.13605 -54308,3314:353:3,143,-35.5,0,0,-0.131623 -54309,3314:353:4,143.5,-35.5,0,0,-0.11738 -54310,3314:354:3,144,-35.5,0,0,-0.118927 -54311,3314:354:4,144.5,-35.5,0,0,-0.131294 -54312,3314:455:3,145,-35.5,0,0,-0.13605 -54313,3314:455:4,145.5,-35.5,0,0,-0.13605 -54314,3314:456:3,146,-35.5,0,0,-0.13605 -54315,3314:456:4,146.5,-35.5,0,0,-0.13605 -54316,3314:457:3,147,-35.5,0,0,-0.13605 -54317,3314:457:4,147.5,-35.5,0,0,-0.13605 -54318,3314:458:3,148,-35.5,0,0,-0.13605 -54319,3314:458:4,148.5,-35.5,0,0,-0.13605 -54320,3314:459:3,149,-35.5,0,0,-0.13605 -54321,3314:459:4,149.5,-35.5,0,0,-0.13605 -54322,3315:350:3,150,-35.5,0,0,-0.13605 -54323,3315:350:4,150.5,-35.5,0,0,-0.13605 -54324,3315:351:3,151,-35.5,0,0,-0.13605 -54325,3315:351:4,151.5,-35.5,0,0,-0.13605 -54326,3315:352:3,152,-35.5,0,0,-0.123767 -54327,3315:352:4,152.5,-35.5,0,0,-0.124106 -54328,3315:353:3,153,-35.5,0,0,-0.12294 -54329,3315:353:4,153.5,-35.5,0,0,-0.121666 -54330,3315:354:3,154,-35.5,0,0,-0.124106 -54331,3315:354:4,154.5,-35.5,0,0,-0.124972 -54332,3315:455:3,155,-35.5,0,0,-0.122971 -54333,3315:455:4,155.5,-35.5,0,0,-0.120975 -54334,3315:456:3,156,-35.5,0,0,-0.121697 -54335,3315:456:4,156.5,-35.5,0,0,-0.125034 -54336,3315:457:3,157,-35.5,0,0,-0.127866 -54337,3315:457:4,157.5,-35.5,0,0,-0.126409 -54338,3315:458:3,158,-35.5,0,0,-0.125751 -54339,3315:458:4,158.5,-35.5,0,0,-0.128473 -54340,3315:459:3,159,-35.5,0,0,-0.124631 -54341,3315:459:4,159.5,-35.5,0,0,-0.122544 -54342,3316:350:3,160,-35.5,0,0,-0.129891 -54343,3316:350:4,160.5,-35.5,0,0,-0.132846 -54344,3316:351:3,161,-35.5,0,0,-0.128313 -54345,3316:351:4,161.5,-35.5,0,0,-0.123644 -54346,3316:352:3,162,-35.5,0,0,-0.12294 -54347,3316:352:4,162.5,-35.5,0,0,-0.124414 -54348,3316:353:3,163,-35.5,0,0,-0.129083 -54349,3316:353:4,163.5,-35.5,0,0,-0.13605 -54350,3316:354:3,164,-35.5,0,0,-0.13605 -54351,3316:354:4,164.5,-35.5,0,0,-0.13605 -54352,3316:455:3,165,-35.5,0,0,-0.13605 -54353,3316:455:4,165.5,-35.5,0,0,-0.136035 -54354,3316:456:3,166,-35.5,0,0,-0.135964 -54355,3316:456:4,166.5,-35.5,0,0,-0.13605 -54356,3316:457:3,167,-35.5,0,0,-0.13605 -54357,3317:351:4,171.5,-35.5,0,0,-0.112649 -54358,3317:352:3,172,-35.5,0,0,-0.0904972 -54359,3317:352:4,172.5,-35.5,0,0,-0.0771955 -54360,3317:353:3,173,-35.5,0,0,-0.0722819 -54361,3317:353:4,173.5,-35.5,0,0,-0.0716173 -54362,3317:354:3,174,-35.5,0,0,-0.0729531 -54363,3317:354:4,174.5,-35.5,0,0,-0.0747042 -54364,3317:455:3,175,-35.5,0,0,-0.0760657 -54365,3317:455:4,175.5,-35.5,0,0,-0.077306 -54366,3317:456:3,176,-35.5,0,0,-0.0796432 -54367,3317:456:4,176.5,-35.5,0,0,-0.0803305 -54368,3317:457:3,177,-35.5,0,0,-0.075759 -54369,3317:457:4,177.5,-35.5,0,0,-0.0725049 -54370,3317:458:3,178,-35.5,0,0,-0.0731084 -54371,3317:458:4,178.5,-35.5,0,0,-0.0746868 -54372,3317:459:3,179,-35.5,0,0,-0.0756327 -54373,3317:459:4,179.5,-35.5,0,0,-0.077251 -54374,3318:350:3,180,-35.5,0,0,-0.0795673 -54375,5318:350:1,-180,-35,0,0,-0.0819978 -54376,5317:459:2,-179.5,-35,0,0,-0.0857321 -54377,5317:459:1,-179,-35,0,0,-0.0906284 -54378,5317:458:2,-178.5,-35,0,0,-0.0950663 -54379,5317:458:1,-178,-35,0,0,-0.0986095 -54380,5317:457:2,-177.5,-35,0,0,-0.102048 -54381,5317:457:1,-177,-35,0,0,-0.10676 -54382,5317:456:2,-176.5,-35,0,0,-0.112538 -54383,5317:456:1,-176,-35,0,0,-0.116084 -54384,5317:455:2,-175.5,-35,0,0,-0.112014 -54385,5317:455:1,-175,-35,0,0,-0.105644 -54386,5317:354:2,-174.5,-35,0,0,-0.102346 -54387,5317:354:1,-174,-35,0,0,-0.105104 -54388,5317:353:2,-173.5,-35,0,0,-0.13605 -54389,5317:353:1,-173,-35,0,0,-0.13605 -54390,5317:352:2,-172.5,-35,0,0,-0.13605 -54391,5317:352:1,-172,-35,0,0,-0.13605 -54392,5317:351:2,-171.5,-35,0,0,-0.13605 -54393,5317:351:1,-171,-35,0,0,-0.13605 -54394,5317:350:2,-170.5,-35,0,0,-0.135926 -54395,5317:350:1,-170,-35,0,0,-0.123001 -54396,5316:459:2,-169.5,-35,0,0,-0.126756 -54397,5316:459:1,-169,-35,0,0,-0.13605 -54398,5316:458:2,-168.5,-35,0,0,-0.13605 -54399,5316:458:1,-168,-35,0,0,-0.13605 -54400,5316:457:2,-167.5,-35,0,0,-0.13605 -54401,5316:457:1,-167,-35,0,0,-0.13605 -54402,5316:456:2,-166.5,-35,0,0,-0.135959 -54403,5316:456:1,-166,-35,0,0,-0.13605 -54404,5316:455:2,-165.5,-35,0,0,-0.13605 -54405,5316:455:1,-165,-35,0,0,-0.13605 -54406,5316:354:2,-164.5,-35,0,0,-0.13605 -54407,5316:354:1,-164,-35,0,0,-0.13605 -54408,5316:353:2,-163.5,-35,0,0,-0.13605 -54409,5316:353:1,-163,-35,0,0,-0.13605 -54410,5316:352:2,-162.5,-35,0,0,-0.13605 -54411,5316:352:1,-162,-35,0,0,-0.13605 -54412,5316:351:2,-161.5,-35,0,0,-0.13605 -54413,5316:351:1,-161,-35,0,0,-0.13605 -54414,5316:350:2,-160.5,-35,0,0,-0.13605 -54415,5316:350:1,-160,-35,0,0,-0.13605 -54416,5315:459:2,-159.5,-35,0,0,-0.13605 -54417,5315:459:1,-159,-35,0,0,-0.13605 -54418,5315:458:2,-158.5,-35,0,0,-0.13605 -54419,5315:458:1,-158,-35,0,0,-0.13605 -54420,5315:457:2,-157.5,-35,0,0,-0.13605 -54421,5315:457:1,-157,-35,0,0,-0.13605 -54422,5315:456:2,-156.5,-35,0,0,-0.13605 -54423,5315:456:1,-156,-35,0,0,-0.13605 -54424,5315:455:2,-155.5,-35,0,0,-0.13605 -54425,5315:455:1,-155,-35,0,0,-0.13605 -54426,5315:354:2,-154.5,-35,0,0,-0.13605 -54427,5315:354:1,-154,-35,0,0,-0.13605 -54428,5315:353:2,-153.5,-35,0,0,-0.13605 -54429,5315:353:1,-153,-35,0,0,-0.13605 -54430,5315:352:2,-152.5,-35,0,0,-0.13605 -54431,5315:352:1,-152,-35,0,0,-0.13605 -54432,5315:351:2,-151.5,-35,0,0,-0.13605 -54433,5315:351:1,-151,-35,0,0,-0.13605 -54434,5315:350:2,-150.5,-35,0,0,-0.13605 -54435,5315:350:1,-150,-35,0,0,-0.13605 -54436,5314:459:2,-149.5,-35,0,0,-0.13605 -54437,5314:459:1,-149,-35,0,0,-0.13605 -54438,5314:458:2,-148.5,-35,0,0,-0.13605 -54439,5314:458:1,-148,-35,0,0,-0.13605 -54440,5314:457:2,-147.5,-35,0,0,-0.13605 -54441,5314:457:1,-147,-35,0,0,-0.13605 -54442,5314:456:2,-146.5,-35,0,0,-0.13605 -54443,5314:456:1,-146,-35,0,0,-0.13605 -54444,5314:455:2,-145.5,-35,0,0,-0.13605 -54445,5314:455:1,-145,-35,0,0,-0.13605 -54446,5314:354:2,-144.5,-35,0,0,-0.13605 -54447,5314:354:1,-144,-35,0,0,-0.13605 -54448,5314:353:2,-143.5,-35,0,0,-0.13605 -54449,5314:353:1,-143,-35,0,0,-0.13605 -54450,5314:352:2,-142.5,-35,0,0,-0.13605 -54451,5314:352:1,-142,-35,0,0,-0.13605 -54452,5314:351:2,-141.5,-35,0,0,-0.13605 -54453,5314:351:1,-141,-35,0,0,-0.13605 -54454,5314:350:2,-140.5,-35,0,0,-0.13605 -54455,5314:350:1,-140,-35,0,0,-0.13605 -54456,5313:459:2,-139.5,-35,0,0,-0.13605 -54457,5313:459:1,-139,-35,0,0,-0.13605 -54458,5313:458:2,-138.5,-35,0,0,-0.13605 -54459,5313:458:1,-138,-35,0,0,-0.13605 -54460,5313:457:2,-137.5,-35,0,0,-0.13605 -54461,5313:457:1,-137,-35,0,0,-0.13605 -54462,5313:456:2,-136.5,-35,0,0,-0.13605 -54463,5313:456:1,-136,-35,0,0,-0.13605 -54464,5313:455:2,-135.5,-35,0,0,-0.13605 -54465,5313:455:1,-135,-35,0,0,-0.13605 -54466,5313:354:2,-134.5,-35,0,0,-0.13605 -54467,5313:354:1,-134,-35,0,0,-0.13605 -54468,5313:353:2,-133.5,-35,0,0,-0.13605 -54469,5313:353:1,-133,-35,0,0,-0.13605 -54470,5313:352:2,-132.5,-35,0,0,-0.13605 -54471,5313:352:1,-132,-35,0,0,-0.13605 -54472,5313:351:2,-131.5,-35,0,0,-0.13605 -54473,5313:351:1,-131,-35,0,0,-0.13605 -54474,5313:350:2,-130.5,-35,0,0,-0.13605 -54475,5313:350:1,-130,-35,0,0,-0.13605 -54476,5312:459:2,-129.5,-35,0,0,-0.13605 -54477,5312:459:1,-129,-35,0,0,-0.13605 -54478,5312:458:2,-128.5,-35,0,0,-0.13605 -54479,5312:458:1,-128,-35,0,0,-0.13605 -54480,5312:457:2,-127.5,-35,0,0,-0.13605 -54481,5312:457:1,-127,-35,0,0,-0.13605 -54482,5312:456:2,-126.5,-35,0,0,-0.13605 -54483,5312:456:1,-126,-35,0,0,-0.13605 -54484,5312:455:2,-125.5,-35,0,0,-0.13605 -54485,5312:455:1,-125,-35,0,0,-0.13605 -54486,5312:354:2,-124.5,-35,0,0,-0.13605 -54487,5312:354:1,-124,-35,0,0,-0.13605 -54488,5312:353:2,-123.5,-35,0,0,-0.13605 -54489,5312:353:1,-123,-35,0,0,-0.13605 -54490,5312:352:2,-122.5,-35,0,0,-0.13605 -54491,5312:352:1,-122,-35,0,0,-0.13605 -54492,5312:351:2,-121.5,-35,0,0,-0.13605 -54493,5312:351:1,-121,-35,0,0,-0.13605 -54494,5312:350:2,-120.5,-35,0,0,-0.13605 -54495,5312:350:1,-120,-35,0,0,-0.13605 -54496,5311:459:2,-119.5,-35,0,0,-0.13605 -54497,5311:459:1,-119,-35,0,0,-0.13605 -54498,5311:458:2,-118.5,-35,0,0,-0.13605 -54499,5311:458:1,-118,-35,0,0,-0.13605 -54500,5311:457:2,-117.5,-35,0,0,-0.13605 -54501,5311:457:1,-117,-35,0,0,-0.13605 -54502,5311:456:2,-116.5,-35,0,0,-0.13605 -54503,5311:456:1,-116,-35,0,0,-0.13605 -54504,5311:455:2,-115.5,-35,0,0,-0.136 -54505,5311:455:1,-115,-35,0,0,-0.13605 -54506,5311:354:2,-114.5,-35,0,0,-0.13605 -54507,5311:354:1,-114,-35,0,0,-0.13605 -54508,5311:353:2,-113.5,-35,0,0,-0.12918 -54509,5311:353:1,-113,-35,0,0,-0.123368 -54510,5311:352:2,-112.5,-35,0,0,-0.120646 -54511,5311:352:1,-112,-35,0,0,-0.125034 -54512,5311:351:2,-111.5,-35,0,0,-0.135027 -54513,5311:351:1,-111,-35,0,0,-0.132051 -54514,5311:350:2,-110.5,-35,0,0,-0.130249 -54515,5311:350:1,-110,-35,0,0,-0.13415 -54516,5310:459:2,-109.5,-35,0,0,-0.131458 -54517,5310:459:1,-109,-35,0,0,-0.122879 -54518,5310:458:2,-108.5,-35,0,0,-0.116687 -54519,5310:458:1,-108,-35,0,0,-0.114691 -54520,5310:457:2,-107.5,-35,0,0,-0.112483 -54521,5310:457:1,-107,-35,0,0,-0.107652 -54522,5310:456:2,-106.5,-35,0,0,-0.10472 -54523,5310:456:1,-106,-35,0,0,-0.105206 -54524,5310:455:2,-105.5,-35,0,0,-0.107074 -54525,5310:455:1,-105,-35,0,0,-0.106421 -54526,5310:354:2,-104.5,-35,0,0,-0.101454 -54527,5310:354:1,-104,-35,0,0,-0.100057 -54528,5310:353:2,-103.5,-35,0,0,-0.10388 -54529,5310:353:1,-103,-35,0,0,-0.104388 -54530,5310:352:2,-102.5,-35,0,0,-0.100618 -54531,5310:352:1,-102,-35,0,0,-0.0968553 -54532,5310:351:2,-101.5,-35,0,0,-0.0957357 -54533,5310:351:1,-101,-35,0,0,-0.0962706 -54534,5310:350:2,-100.5,-35,0,0,-0.0966679 -54535,5310:350:1,-100,-35,0,0,-0.097279 -54536,5309:459:2,-99.5,-35,0,0,-0.0980604 -54537,5309:459:1,-99,-35,0,0,-0.0989212 -54538,5309:458:2,-98.5,-35,0,0,-0.0985854 -54539,5309:458:1,-98,-35,0,0,-0.0962941 -54540,5309:457:2,-97.5,-35,0,0,-0.0946531 -54541,5309:457:1,-97,-35,0,0,-0.0966915 -54542,5309:456:2,-96.5,-35,0,0,-0.101355 -54543,5309:456:1,-96,-35,0,0,-0.101999 -54544,5309:455:2,-95.5,-35,0,0,-0.0989212 -54545,5309:455:1,-95,-35,0,0,-0.094379 -54546,5309:354:2,-94.5,-35,0,0,-0.0908473 -54547,5309:354:1,-94,-35,0,0,-0.0887498 -54548,5309:353:2,-93.5,-35,0,0,-0.0894144 -54549,5309:353:1,-93,-35,0,0,-0.092193 -54550,5309:352:2,-92.5,-35,0,0,-0.0944243 -54551,5309:352:1,-92,-35,0,0,-0.0977755 -54552,5309:351:2,-91.5,-35,0,0,-0.0980132 -54553,5309:351:1,-91,-35,0,0,-0.0955506 -54554,5309:350:2,-90.5,-35,0,0,-0.0951583 -54555,5309:350:1,-90,-35,0,0,-0.0922379 -54556,5308:459:2,-89.5,-35,0,0,-0.0882814 -54557,5308:459:1,-89,-35,0,0,-0.0875629 -54558,5308:458:2,-88.5,-35,0,0,-0.0894571 -54559,5308:458:1,-88,-35,0,0,-0.0873109 -54560,5308:457:2,-87.5,-35,0,0,-0.0869966 -54561,5308:457:1,-87,-35,0,0,-0.0906717 -54562,5308:456:2,-86.5,-35,0,0,-0.0887074 -54563,5308:456:1,-86,-35,0,0,-0.092282 -54564,5308:455:2,-85.5,-35,0,0,-0.0918603 -54565,5308:455:1,-85,-35,0,0,-0.0900407 -54566,5308:354:2,-84.5,-35,0,0,-0.0926171 -54567,5308:354:1,-84,-35,0,0,-0.0891567 -54568,5308:353:2,-83.5,-35,0,0,-0.085322 -54569,5308:353:1,-83,-35,0,0,-0.0844675 -54570,5308:352:2,-82.5,-35,0,0,-0.0868087 -54571,5308:352:1,-82,-35,0,0,-0.088643 -54572,5308:351:2,-81.5,-35,0,0,-0.090345 -54573,5308:351:1,-81,-35,0,0,-0.0903012 -54574,5308:350:2,-80.5,-35,0,0,-0.0908032 -54575,5308:350:1,-80,-35,0,0,-0.0921713 -54576,5307:459:2,-79.5,-35,0,0,-0.0937421 -54577,5307:459:1,-79,-35,0,0,-0.0954582 -54578,5307:458:2,-78.5,-35,0,0,-0.0970195 -54579,5307:458:1,-78,-35,0,0,-0.0967616 -54580,5307:457:2,-77.5,-35,0,0,-0.0971143 -54581,5307:457:1,-77,-35,0,0,-0.098801 -54582,5307:456:2,-76.5,-35,0,0,-0.0989212 -54583,5307:456:1,-76,-35,0,0,-0.0977285 -54584,5307:455:2,-75.5,-35,0,0,-0.104771 -54585,5307:455:1,-75,-35,0,0,-0.112289 -54586,5307:354:2,-74.5,-35,0,0,-0.126409 -54587,5307:353:2,-73.5,-35,0,0,-0.129924 -54588,5306:455:2,-65.5,-35,0,0,-0.13605 -54589,5306:455:1,-65,-35,0,0,-0.13605 -54590,5306:354:2,-64.5,-35,0,0,-0.13605 -54591,5306:354:1,-64,-35,0,0,-0.13605 -54592,5306:353:2,-63.5,-35,0,0,-0.13605 -54593,5306:353:1,-63,-35,0,0,-0.13605 -54594,5306:352:2,-62.5,-35,0,0,-0.13605 -54595,5306:352:1,-62,-35,0,0,-0.13605 -54596,5306:351:2,-61.5,-35,0,0,-0.13605 -54597,5306:351:1,-61,-35,0,0,-0.13605 -54598,5306:350:2,-60.5,-35,0,0,-0.13605 -54599,5306:350:1,-60,-35,0,0,-0.103374 -54600,5305:459:2,-59.5,-35,0,0,-0.0750063 -54601,5305:459:1,-59,-35,0,0,-0.0619981 -54602,5305:458:2,-58.5,-35,0,0,-0.075759 -54603,5305:458:1,-58,-35,0,0,-0.127866 -54604,5305:457:2,-57.5,-35,0,0,-0.13605 -54605,5305:457:1,-57,-35,0,0,-0.13605 -54606,5305:456:2,-56.5,-35,0,0,-0.13605 -54607,5305:456:1,-56,-35,0,0,-0.13605 -54608,5305:455:2,-55.5,-35,0,0,-0.13605 -54609,5305:455:1,-55,-35,0,0,-0.13605 -54610,5305:354:2,-54.5,-35,0,0,-0.13605 -54611,5305:354:1,-54,-35,0,0,-0.13605 -54612,5305:353:2,-53.5,-35,0,0,-0.13605 -54613,5305:353:1,-53,-35,0,0,-0.13605 -54614,5305:352:2,-52.5,-35,0,0,-0.13605 -54615,5305:352:1,-52,-35,0,0,-0.13605 -54616,5305:351:2,-51.5,-35,0,0,-0.13605 -54617,5305:351:1,-51,-35,0,0,-0.134083 -54618,5305:350:2,-50.5,-35,0,0,-0.126096 -54619,5305:350:1,-50,-35,0,0,-0.119724 -54620,5304:459:2,-49.5,-35,0,0,-0.118253 -54621,5304:459:1,-49,-35,0,0,-0.119872 -54622,5304:458:2,-48.5,-35,0,0,-0.12758 -54623,5304:458:1,-48,-35,0,0,-0.128473 -54624,5304:457:2,-47.5,-35,0,0,-0.119784 -54625,5304:457:1,-47,-35,0,0,-0.110647 -54626,5304:456:2,-46.5,-35,0,0,-0.107783 -54627,5304:456:1,-46,-35,0,0,-0.104311 -54628,5304:455:2,-45.5,-35,0,0,-0.100691 -54629,5304:455:1,-45,-35,0,0,-0.0950663 -54630,5304:354:2,-44.5,-35,0,0,-0.0904759 -54631,5304:354:1,-44,-35,0,0,-0.0868087 -54632,5304:353:2,-43.5,-35,0,0,-0.0843256 -54633,5304:353:1,-43,-35,0,0,-0.0824105 -54634,5304:352:2,-42.5,-35,0,0,-0.0807342 -54635,5304:352:1,-42,-35,0,0,-0.0800053 -54636,5304:351:2,-41.5,-35,0,0,-0.0786618 -54637,5304:351:1,-41,-35,0,0,-0.0776381 -54638,5304:350:2,-40.5,-35,0,0,-0.0776381 -54639,5304:350:1,-40,-35,0,0,-0.0779343 -54640,5303:459:2,-39.5,-35,0,0,-0.0773611 -54641,5303:459:1,-39,-35,0,0,-0.0732646 -54642,5303:458:2,-38.5,-35,0,0,-0.0707244 -54643,5303:458:1,-38,-35,0,0,-0.0699095 -54644,5303:457:2,-37.5,-35,0,0,-0.0673498 -54645,5303:457:1,-37,-35,0,0,-0.0647522 -54646,5303:456:2,-36.5,-35,0,0,-0.0637549 -54647,5303:456:1,-36,-35,0,0,-0.0632771 -54648,5303:455:2,-35.5,-35,0,0,-0.0616498 -54649,5303:455:1,-35,-35,0,0,-0.0611458 -54650,5303:354:2,-34.5,-35,0,0,-0.0621434 -54651,5303:354:1,-34,-35,0,0,-0.0622602 -54652,5303:353:2,-33.5,-35,0,0,-0.0585811 -54653,5303:353:1,-33,-35,0,0,-0.056077 -54654,5303:352:2,-32.5,-35,0,0,-0.0540493 -54655,5303:352:1,-32,-35,0,0,-0.0522804 -54656,5303:351:2,-31.5,-35,0,0,-0.0504902 -54657,5303:351:1,-31,-35,0,0,-0.0494355 -54658,5303:350:2,-30.5,-35,0,0,-0.051905 -54659,5303:350:1,-30,-35,0,0,-0.0628036 -54660,5302:459:2,-29.5,-35,0,0,-0.0806378 -54661,5302:459:1,-29,-35,0,0,-0.085712 -54662,5302:458:2,-28.5,-35,0,0,-0.0802539 -54663,5302:458:1,-28,-35,0,0,-0.0733516 -54664,5302:457:2,-27.5,-35,0,0,-0.0695143 -54665,5302:457:1,-27,-35,0,0,-0.0719061 -54666,5302:456:2,-26.5,-35,0,0,-0.075759 -54667,5302:456:1,-26,-35,0,0,-0.0762105 -54668,5302:455:2,-25.5,-35,0,0,-0.0736133 -54669,5302:455:1,-25,-35,0,0,-0.0608743 -54670,5302:354:2,-24.5,-35,0,0,-0.0571343 -54671,5302:354:1,-24,-35,0,0,-0.0692027 -54672,5302:353:2,-23.5,-35,0,0,-0.0813728 -54673,5302:353:1,-23,-35,0,0,-0.0865801 -54674,5302:352:2,-22.5,-35,0,0,-0.0905631 -54675,5302:352:1,-22,-35,0,0,-0.0961774 -54676,5302:351:2,-21.5,-35,0,0,-0.0962941 -54677,5302:351:1,-21,-35,0,0,-0.0816457 -54678,5302:350:2,-20.5,-35,0,0,-0.074793 -54679,5302:350:1,-20,-35,0,0,-0.0769939 -54680,5301:459:2,-19.5,-35,0,0,-0.0792454 -54681,5301:459:1,-19,-35,0,0,-0.0770303 -54682,5301:458:2,-18.5,-35,0,0,-0.0751315 -54683,5301:458:1,-18,-35,0,0,-0.0727112 -54684,5301:457:2,-17.5,-35,0,0,-0.0710936 -54685,5301:457:1,-17,-35,0,0,-0.0716338 -54686,5301:456:2,-16.5,-35,0,0,-0.0604336 -54687,5301:456:1,-16,-35,0,0,-0.047143 -54688,5301:455:2,-15.5,-35,0,0,-0.0406272 -54689,5301:455:1,-15,-35,0,0,-0.0419186 -54690,5301:354:2,-14.5,-35,0,0,-0.0570009 -54691,5301:354:1,-14,-35,0,0,-0.0645693 -54692,5301:353:2,-13.5,-35,0,0,-0.0727454 -54693,5301:353:1,-13,-35,0,0,-0.083883 -54694,5301:352:2,-12.5,-35,0,0,-0.0956664 -54695,5301:352:1,-12,-35,0,0,-0.104058 -54696,5301:351:2,-11.5,-35,0,0,-0.104184 -54697,5301:351:1,-11,-35,0,0,-0.0986095 -54698,5301:350:2,-10.5,-35,0,0,-0.0941509 -54699,5301:350:1,-10,-35,0,0,-0.0963874 -54700,5300:459:2,-9.5,-35,0,0,-0.105593 -54701,5300:459:1,-9,-35,0,0,-0.11597 -54702,5300:458:2,-8.5,-35,0,0,-0.110376 -54703,5300:458:1,-8,-35,0,0,-0.107048 -54704,5300:457:2,-7.5,-35,0,0,-0.109272 -54705,5300:457:1,-7,-35,0,0,-0.108154 -54706,5300:456:2,-6.5,-35,0,0,-0.105825 -54707,5300:456:1,-6,-35,0,0,-0.0939241 -54708,5300:455:2,-5.5,-35,0,0,-0.0810821 -54709,5300:455:1,-5,-35,0,0,-0.0740334 -54710,5300:354:2,-4.5,-35,0,0,-0.0721618 -54711,5300:354:1,-4,-35,0,0,-0.0752029 -54712,5300:353:2,-3.5,-35,0,0,-0.0832827 -54713,5300:353:1,-3,-35,0,0,-0.091949 -54714,5300:352:2,-2.5,-35,0,0,-0.0965272 -54715,5300:352:1,-2,-35,0,0,-0.09502 -54716,5300:351:2,-1.5,-35,0,0,-0.090193 -54717,5300:351:1,-1,-35,0,0,-0.083883 -54718,5300:350:2,-0.5,-35,0,0,-0.081412 -54719,3300:350:2,0,-35,0,0,-0.0839026 -54720,3300:350:2,0.5,-35,0,0,-0.0864761 -54721,3300:351:1,1,-35,0,0,-0.0869762 -54722,3300:351:2,1.5,-35,0,0,-0.0865801 -54723,3300:352:1,2,-35,0,0,-0.0859174 -54724,3300:352:2,2.5,-35,0,0,-0.0849545 -54725,3300:353:1,3,-35,0,0,-0.0832426 -54726,3300:353:2,3.5,-35,0,0,-0.080484 -54727,3300:354:1,4,-35,0,0,-0.0762647 -54728,3300:354:2,4.5,-35,0,0,-0.0705241 -54729,3300:455:1,5,-35,0,0,-0.0650728 -54730,3300:455:2,5.5,-35,0,0,-0.0598139 -54731,3300:456:1,6,-35,0,0,-0.0552721 -54732,3300:456:2,6.5,-35,0,0,-0.0543394 -54733,3300:457:1,7,-35,0,0,-0.0594649 -54734,3300:457:2,7.5,-35,0,0,-0.0604478 -54735,3300:458:1,8,-35,0,0,-0.0625095 -54736,3300:458:2,8.5,-35,0,0,-0.0681811 -54737,3300:459:1,9,-35,0,0,-0.0707413 -54738,3300:459:2,9.5,-35,0,0,-0.066404 -54739,3301:350:1,10,-35,0,0,-0.0629365 -54740,3301:350:2,10.5,-35,0,0,-0.0592427 -54741,3301:351:1,11,-35,0,0,-0.0555952 -54742,3301:351:2,11.5,-35,0,0,-0.055764 -54743,3301:352:1,12,-35,0,0,-0.0594369 -54744,3301:352:2,12.5,-35,0,0,-0.070574 -54745,3301:353:1,13,-35,0,0,-0.0761563 -54746,3301:353:2,13.5,-35,0,0,-0.0670013 -54747,3301:354:1,14,-35,0,0,-0.0608599 -54748,3301:354:2,14.5,-35,0,0,-0.0628184 -54749,3301:455:1,15,-35,0,0,-0.0741214 -54750,3301:455:2,15.5,-35,0,0,-0.0900844 -54751,3301:456:1,16,-35,0,0,-0.0879639 -54752,3301:456:2,16.5,-35,0,0,-0.0764825 -54753,3301:457:1,17,-35,0,0,-0.0672543 -54754,3301:457:2,17.5,-35,0,0,-0.06395 -54755,3301:458:1,18,-35,0,0,-0.0652568 -54756,3301:458:2,18.5,-35,0,0,-0.0705908 -54757,3301:459:1,19,-35,0,0,-0.0756151 -54758,3301:459:2,19.5,-35,0,0,-0.0747399 -54759,3302:350:1,20,-35,0,0,-0.0694321 -54760,3302:350:2,20.5,-35,0,0,-0.0630842 -54761,3302:351:1,21,-35,0,0,-0.0607603 -54762,3302:351:2,21.5,-35,0,0,-0.0710766 -54763,3302:352:1,22,-35,0,0,-0.0833022 -54764,3302:352:2,22.5,-35,0,0,-0.0938327 -54765,3302:353:1,23,-35,0,0,-0.0980843 -54766,3302:353:2,23.5,-35,0,0,-0.083183 -54767,3302:354:1,24,-35,0,0,-0.0551947 -54768,3302:354:2,24.5,-35,0,0,-0.0460335 -54769,3302:455:1,25,-35,0,0,-0.0543649 -54770,3302:455:2,25.5,-35,0,0,-0.0618527 -54771,3302:456:1,26,-35,0,0,-0.0612176 -54772,3302:456:2,26.5,-35,0,0,-0.0601229 -54773,3302:457:1,27,-35,0,0,-0.06248 -54774,3302:457:2,27.5,-35,0,0,-0.066404 -54775,3302:458:1,28,-35,0,0,-0.0653952 -54776,3302:458:2,28.5,-35,0,0,-0.0581716 -54777,3302:459:1,29,-35,0,0,-0.053999 -54778,3302:459:2,29.5,-35,0,0,-0.0607173 -54779,3303:350:1,30,-35,0,0,-0.0675405 -54780,3303:350:2,30.5,-35,0,0,-0.0810431 -54781,3303:351:1,31,-35,0,0,-0.0932457 -54782,3303:351:2,31.5,-35,0,0,-0.0942649 -54783,3303:352:1,32,-35,0,0,-0.0903882 -54784,3303:352:2,32.5,-35,0,0,-0.0799098 -54785,3303:353:1,33,-35,0,0,-0.0677958 -54786,3303:353:2,33.5,-35,0,0,-0.0612605 -54787,3303:354:1,34,-35,0,0,-0.0556083 -54788,3303:354:2,34.5,-35,0,0,-0.0527811 -54789,3303:455:1,35,-35,0,0,-0.0531262 -54790,3303:455:2,35.5,-35,0,0,-0.053798 -54791,3303:456:1,36,-35,0,0,-0.0539361 -54792,3303:456:2,36.5,-35,0,0,-0.0529289 -54793,3303:457:1,37,-35,0,0,-0.0504902 -54794,3303:457:2,37.5,-35,0,0,-0.0478133 -54795,3303:458:1,38,-35,0,0,-0.0462362 -54796,3303:458:2,38.5,-35,0,0,-0.0453789 -54797,3303:459:1,39,-35,0,0,-0.0444049 -54798,3303:459:2,39.5,-35,0,0,-0.0436533 -54799,3304:350:1,40,-35,0,0,-0.047991 -54800,3304:350:2,40.5,-35,0,0,-0.0523654 -54801,3304:351:1,41,-35,0,0,-0.0501865 -54802,3304:351:2,41.5,-35,0,0,-0.0447442 -54803,3304:352:1,42,-35,0,0,-0.0429941 -54804,3304:352:2,42.5,-35,0,0,-0.0416875 -54805,3304:353:1,43,-35,0,0,-0.040674 -54806,3304:353:2,43.5,-35,0,0,-0.0401907 -54807,3304:354:1,44,-35,0,0,-0.0396132 -54808,3304:354:2,44.5,-35,0,0,-0.0385544 -54809,3304:455:1,45,-35,0,0,-0.0369871 -54810,3304:455:2,45.5,-35,0,0,-0.0346913 -54811,3304:456:1,46,-35,0,0,-0.0326838 -54812,3304:456:2,46.5,-35,0,0,-0.0305586 -54813,3304:457:1,47,-35,0,0,-0.0285104 -54814,3304:457:2,47.5,-35,0,0,-0.0277627 -54815,3304:458:1,48,-35,0,0,-0.02958 -54816,3304:458:2,48.5,-35,0,0,-0.0315632 -54817,3304:459:1,49,-35,0,0,-0.0312342 -54818,3304:459:2,49.5,-35,0,0,-0.0292255 -54819,3305:350:1,50,-35,0,0,-0.0272939 -54820,3305:350:2,50.5,-35,0,0,-0.0265187 -54821,3305:351:1,51,-35,0,0,-0.0268637 -54822,3305:351:2,51.5,-35,0,0,-0.0295195 -54823,3305:352:1,52,-35,0,0,-0.0333851 -54824,3305:352:2,52.5,-35,0,0,-0.0361496 -54825,3305:353:1,53,-35,0,0,-0.0366246 -54826,3305:353:2,53.5,-35,0,0,-0.0415344 -54827,3305:354:1,54,-35,0,0,-0.0482917 -54828,3305:354:2,54.5,-35,0,0,-0.0516523 -54829,3305:455:1,55,-35,0,0,-0.0475704 -54830,3305:455:2,55.5,-35,0,0,-0.0449927 -54831,3305:456:1,56,-35,0,0,-0.04873 -54832,3305:456:2,56.5,-35,0,0,-0.0751849 -54833,3305:457:1,57,-35,0,0,-0.113567 -54834,3305:457:2,57.5,-35,0,0,-0.124661 -54835,3305:458:1,58,-35,0,0,-0.133213 -54836,3305:458:2,58.5,-35,0,0,-0.13605 -54837,3305:459:1,59,-35,0,0,-0.13605 -54838,3305:459:2,59.5,-35,0,0,-0.13605 -54839,3306:350:1,60,-35,0,0,-0.13605 -54840,3306:350:2,60.5,-35,0,0,-0.13605 -54841,3306:351:1,61,-35,0,0,-0.13605 -54842,3306:351:2,61.5,-35,0,0,-0.134892 -54843,3306:352:1,62,-35,0,0,-0.0948826 -54844,3306:352:2,62.5,-35,0,0,-0.0971143 -54845,3306:353:1,63,-35,0,0,-0.107546 -54846,3306:353:2,63.5,-35,0,0,-0.135937 -54847,3306:354:1,64,-35,0,0,-0.13605 -54848,3306:354:2,64.5,-35,0,0,-0.13605 -54849,3306:455:1,65,-35,0,0,-0.13605 -54850,3306:455:2,65.5,-35,0,0,-0.13605 -54851,3306:456:1,66,-35,0,0,-0.0695965 -54852,3306:456:2,66.5,-35,0,0,-0.054517 -54853,3306:457:1,67,-35,0,0,-0.0702741 -54854,3306:457:2,67.5,-35,0,0,-0.10637 -54855,3306:458:1,68,-35,0,0,-0.13605 -54856,3306:458:2,68.5,-35,0,0,-0.13605 -54857,3306:459:1,69,-35,0,0,-0.13605 -54858,3306:459:2,69.5,-35,0,0,-0.13605 -54859,3307:350:1,70,-35,0,0,-0.13605 -54860,3307:350:2,70.5,-35,0,0,-0.13605 -54861,3307:351:1,71,-35,0,0,-0.13605 -54862,3307:351:2,71.5,-35,0,0,-0.125189 -54863,3307:352:1,72,-35,0,0,-0.100374 -54864,3307:352:2,72.5,-35,0,0,-0.1071 -54865,3307:353:2,73.5,-35,0,0,-0.128987 -54866,3307:354:1,74,-35,0,0,-0.13605 -54867,3307:354:2,74.5,-35,0,0,-0.13605 -54868,3307:455:1,75,-35,0,0,-0.135967 -54869,3307:455:2,75.5,-35,0,0,-0.123093 -54870,3307:456:1,76,-35,0,0,-0.0873526 -54871,3307:456:2,76.5,-35,0,0,-0.0806571 -54872,3307:457:1,77,-35,0,0,-0.0810431 -54873,3307:457:2,77.5,-35,0,0,-0.0874365 -54874,3307:458:1,78,-35,0,0,-0.0971373 -54875,3307:458:2,78.5,-35,0,0,-0.10518 -54876,3307:459:1,79,-35,0,0,-0.113316 -54877,3307:459:2,79.5,-35,0,0,-0.111548 -54878,3308:350:1,80,-35,0,0,-0.105825 -54879,3308:350:2,80.5,-35,0,0,-0.10549 -54880,3308:351:1,81,-35,0,0,-0.10585 -54881,3308:351:2,81.5,-35,0,0,-0.103778 -54882,3308:352:1,82,-35,0,0,-0.0973258 -54883,3308:352:2,82.5,-35,0,0,-0.0893927 -54884,3308:353:1,83,-35,0,0,-0.0798906 -54885,3308:353:2,83.5,-35,0,0,-0.0745446 -54886,3308:354:1,84,-35,0,0,-0.0740511 -54887,3308:354:2,84.5,-35,0,0,-0.0766287 -54888,3308:455:1,85,-35,0,0,-0.082984 -54889,3308:455:2,85.5,-35,0,0,-0.0918603 -54890,3308:456:1,86,-35,0,0,-0.0986095 -54891,3308:456:2,86.5,-35,0,0,-0.0977994 -54892,3308:457:1,87,-35,0,0,-0.0786058 -54893,3308:457:2,87.5,-35,0,0,-0.0699428 -54894,3308:458:1,88,-35,0,0,-0.0705241 -54895,3308:458:2,88.5,-35,0,0,-0.0695965 -54896,3308:459:1,89,-35,0,0,-0.0663415 -54897,3308:459:2,89.5,-35,0,0,-0.0618093 -54898,3309:350:1,90,-35,0,0,-0.0613759 -54899,3309:350:2,90.5,-35,0,0,-0.0632177 -54900,3309:351:1,91,-35,0,0,-0.061592 -54901,3309:351:2,91.5,-35,0,0,-0.0591316 -54902,3309:352:1,92,-35,0,0,-0.0607886 -54903,3309:352:2,92.5,-35,0,0,-0.0616352 -54904,3309:353:1,93,-35,0,0,-0.0610885 -54905,3309:353:2,93.5,-35,0,0,-0.0600383 -54906,3309:354:1,94,-35,0,0,-0.0584717 -54907,3309:354:2,94.5,-35,0,0,-0.0564577 -54908,3309:455:1,95,-35,0,0,-0.0543904 -54909,3309:455:2,95.5,-35,0,0,-0.0549764 -54910,3309:456:1,96,-35,0,0,-0.0654723 -54911,3309:456:2,96.5,-35,0,0,-0.0702244 -54912,3309:457:1,97,-35,0,0,-0.0723671 -54913,3309:457:2,97.5,-35,0,0,-0.0749178 -54914,3309:458:1,98,-35,0,0,-0.0817237 -54915,3309:458:2,98.5,-35,0,0,-0.0892425 -54916,3309:459:1,99,-35,0,0,-0.110268 -54917,3309:459:2,99.5,-35,0,0,-0.113456 -54918,3310:350:1,100,-35,0,0,-0.108021 -54919,3310:350:2,100.5,-35,0,0,-0.0886644 -54920,3310:351:1,101,-35,0,0,-0.0595763 -54921,3310:351:2,101.5,-35,0,0,-0.0517965 -54922,3310:352:1,102,-35,0,0,-0.0565635 -54923,3310:352:2,102.5,-35,0,0,-0.0792829 -54924,3310:353:1,103,-35,0,0,-0.0983229 -54925,3310:353:2,103.5,-35,0,0,-0.101429 -54926,3310:354:1,104,-35,0,0,-0.0961774 -54927,3310:354:2,104.5,-35,0,0,-0.0831034 -54928,3310:455:1,105,-35,0,0,-0.0703573 -54929,3310:455:2,105.5,-35,0,0,-0.0640703 -54930,3310:456:1,106,-35,0,0,-0.0723844 -54931,3310:456:2,106.5,-35,0,0,-0.0938105 -54932,3310:457:1,107,-35,0,0,-0.0978233 -54933,3310:457:2,107.5,-35,0,0,-0.0899759 -54934,3310:458:1,108,-35,0,0,-0.0726765 -54935,3310:458:2,108.5,-35,0,0,-0.0583212 -54936,3310:459:1,109,-35,0,0,-0.0674133 -54937,3310:459:2,109.5,-35,0,0,-0.0911103 -54938,3311:350:1,110,-35,0,0,-0.0994025 -54939,3311:350:2,110.5,-35,0,0,-0.0927065 -54940,3311:351:1,111,-35,0,0,-0.0864552 -54941,3311:351:2,111.5,-35,0,0,-0.0811595 -54942,3311:352:1,112,-35,0,0,-0.0796623 -54943,3311:352:2,112.5,-35,0,0,-0.0814506 -54944,3311:353:1,113,-35,0,0,-0.0871013 -54945,3311:353:2,113.5,-35,0,0,-0.0913083 -54946,3311:354:1,114,-35,0,0,-0.0924385 -54947,3311:354:2,114.5,-35,0,0,-0.0929754 -54948,3311:455:1,115,-35,0,0,-0.09502 -54949,3311:455:2,115.5,-35,0,0,-0.0947216 -54950,3311:456:1,116,-35,0,0,-0.0941968 -54951,3311:456:2,116.5,-35,0,0,-0.0929754 -54952,3311:457:1,117,-35,0,0,-0.0911539 -54953,3311:457:2,117.5,-35,0,0,-0.0898893 -54954,3311:458:1,118,-35,0,0,-0.0891351 -54955,3311:458:2,118.5,-35,0,0,-0.0889637 -54956,3311:459:1,119,-35,0,0,-0.0889637 -54957,3311:459:2,119.5,-35,0,0,-0.0887928 -54958,3312:350:1,120,-35,0,0,-0.090345 -54959,3312:350:2,120.5,-35,0,0,-0.0942649 -54960,3312:351:1,121,-35,0,0,-0.0962471 -54961,3312:351:2,121.5,-35,0,0,-0.0939241 -54962,3312:352:1,122,-35,0,0,-0.0913298 -54963,3312:352:2,122.5,-35,0,0,-0.0901056 -54964,3312:353:1,123,-35,0,0,-0.0900844 -54965,3312:353:2,123.5,-35,0,0,-0.0909784 -54966,3312:354:1,124,-35,0,0,-0.0919713 -54967,3312:354:2,124.5,-35,0,0,-0.0927516 -54968,3312:455:1,125,-35,0,0,-0.0934935 -54969,3312:455:2,125.5,-35,0,0,-0.0944473 -54970,3312:456:1,126,-35,0,0,-0.0957824 -54971,3312:456:2,126.5,-35,0,0,-0.0964337 -54972,3312:457:1,127,-35,0,0,-0.0964337 -54973,3312:457:2,127.5,-35,0,0,-0.0969729 -54974,3312:458:1,128,-35,0,0,-0.0969729 -54975,3312:458:2,128.5,-35,0,0,-0.097279 -54976,3312:459:1,129,-35,0,0,-0.0999843 -54977,3312:459:2,129.5,-35,0,0,-0.101207 -54978,3313:350:1,130,-35,0,0,-0.0980843 -54979,3313:350:2,130.5,-35,0,0,-0.0969026 -54980,3313:351:1,131,-35,0,0,-0.0972085 -54981,3313:351:2,131.5,-35,0,0,-0.0977516 -54982,3313:352:1,132,-35,0,0,-0.0978233 -54983,3313:352:2,132.5,-35,0,0,-0.0969256 -54984,3313:353:1,133,-35,0,0,-0.0959212 -54985,3313:353:2,133.5,-35,0,0,-0.0953891 -54986,3313:354:1,134,-35,0,0,-0.095759 -54987,3313:354:2,134.5,-35,0,0,-0.0959446 -54988,3313:455:1,135,-35,0,0,-0.0947678 -54989,3313:455:2,135.5,-35,0,0,-0.0958518 -54990,3313:456:1,136,-35,0,0,-0.0977994 -54991,3313:456:2,136.5,-35,0,0,-0.0965743 -54992,3313:457:1,137,-35,0,0,-0.0958518 -54993,3313:457:2,137.5,-35,0,0,-0.0965978 -54994,3313:458:1,138,-35,0,0,-0.0982988 -54995,3313:458:2,138.5,-35,0,0,-0.102197 -54996,3313:459:1,139,-35,0,0,-0.109755 -54997,3313:459:2,139.5,-35,0,0,-0.1152 -54998,3314:350:1,140,-35,0,0,-0.113595 -54999,3314:350:2,140.5,-35,0,0,-0.131097 -55000,3314:351:1,141,-35,0,0,-0.13605 -55001,3314:351:2,141.5,-35,0,0,-0.13605 -55002,3314:352:1,142,-35,0,0,-0.13605 -55003,3314:352:2,142.5,-35,0,0,-0.13605 -55004,3314:353:1,143,-35,0,0,-0.135537 -55005,3314:353:2,143.5,-35,0,0,-0.122575 -55006,3314:354:1,144,-35,0,0,-0.13605 -55007,3314:354:2,144.5,-35,0,0,-0.13605 -55008,3314:455:1,145,-35,0,0,-0.13605 -55009,3314:455:2,145.5,-35,0,0,-0.13605 -55010,3314:456:1,146,-35,0,0,-0.13605 -55011,3314:456:2,146.5,-35,0,0,-0.13605 -55012,3314:457:1,147,-35,0,0,-0.13605 -55013,3314:457:2,147.5,-35,0,0,-0.13605 -55014,3314:458:1,148,-35,0,0,-0.13605 -55015,3314:458:2,148.5,-35,0,0,-0.13605 -55016,3314:459:1,149,-35,0,0,-0.13605 -55017,3314:459:2,149.5,-35,0,0,-0.13605 -55018,3315:350:1,150,-35,0,0,-0.13605 -55019,3315:350:2,150.5,-35,0,0,-0.13605 -55020,3315:351:1,151,-35,0,0,-0.13605 -55021,3315:351:2,151.5,-35,0,0,-0.135775 -55022,3315:352:1,152,-35,0,0,-0.134285 -55023,3315:352:2,152.5,-35,0,0,-0.13605 -55024,3315:353:1,153,-35,0,0,-0.136022 -55025,3315:353:2,153.5,-35,0,0,-0.13605 -55026,3315:354:1,154,-35,0,0,-0.13605 -55027,3315:354:2,154.5,-35,0,0,-0.13605 -55028,3315:455:1,155,-35,0,0,-0.13605 -55029,3315:455:2,155.5,-35,0,0,-0.13605 -55030,3315:456:1,156,-35,0,0,-0.13605 -55031,3315:456:2,156.5,-35,0,0,-0.13605 -55032,3315:457:1,157,-35,0,0,-0.13605 -55033,3315:457:2,157.5,-35,0,0,-0.136008 -55034,3315:458:1,158,-35,0,0,-0.136019 -55035,3315:458:2,158.5,-35,0,0,-0.13605 -55036,3315:459:1,159,-35,0,0,-0.13605 -55037,3315:459:2,159.5,-35,0,0,-0.13605 -55038,3316:350:1,160,-35,0,0,-0.13605 -55039,3316:350:2,160.5,-35,0,0,-0.13605 -55040,3316:351:1,161,-35,0,0,-0.13605 -55041,3316:351:2,161.5,-35,0,0,-0.13605 -55042,3316:352:1,162,-35,0,0,-0.13605 -55043,3316:352:2,162.5,-35,0,0,-0.13605 -55044,3316:353:1,163,-35,0,0,-0.13605 -55045,3316:353:2,163.5,-35,0,0,-0.13605 -55046,3316:354:1,164,-35,0,0,-0.13605 -55047,3316:354:2,164.5,-35,0,0,-0.13605 -55048,3316:455:1,165,-35,0,0,-0.13605 -55049,3316:455:2,165.5,-35,0,0,-0.13605 -55050,3316:456:1,166,-35,0,0,-0.13605 -55051,3316:456:2,166.5,-35,0,0,-0.13605 -55052,3316:457:1,167,-35,0,0,-0.13605 -55053,3316:457:2,167.5,-35,0,0,-0.13605 -55054,3317:351:2,171.5,-35,0,0,-0.13605 -55055,3317:352:1,172,-35,0,0,-0.11043 -55056,3317:352:2,172.5,-35,0,0,-0.0979893 -55057,3317:353:1,173,-35,0,0,-0.0903012 -55058,3317:353:2,173.5,-35,0,0,-0.0855271 -55059,3317:354:1,174,-35,0,0,-0.083883 -55060,3317:354:2,174.5,-35,0,0,-0.0856706 -55061,3317:455:1,175,-35,0,0,-0.0886215 -55062,3317:455:2,175.5,-35,0,0,-0.0885792 -55063,3317:456:1,176,-35,0,0,-0.0884305 -55064,3317:456:2,176.5,-35,0,0,-0.08465 -55065,3317:457:1,177,-35,0,0,-0.0809852 -55066,3317:457:2,177.5,-35,0,0,-0.0802726 -55067,3317:458:1,178,-35,0,0,-0.0802539 -55068,3317:458:2,178.5,-35,0,0,-0.0798336 -55069,3317:459:1,179,-35,0,0,-0.0791889 -55070,3317:459:2,179.5,-35,0,0,-0.0797953 -55071,3318:350:1,180,-35,0,0,-0.0819978 -55072,5318:140:3,-180,-34.5,0,0,-0.0981795 -55073,5317:249:4,-179.5,-34.5,0,0,-0.111685 -55074,5317:249:3,-179,-34.5,0,0,-0.118224 -55075,5317:248:4,-178.5,-34.5,0,0,-0.120946 -55076,5317:248:3,-178,-34.5,0,0,-0.125719 -55077,5317:247:4,-177.5,-34.5,0,0,-0.128762 -55078,5317:247:3,-177,-34.5,0,0,-0.13605 -55079,5317:246:4,-176.5,-34.5,0,0,-0.13605 -55080,5317:246:3,-176,-34.5,0,0,-0.13605 -55081,5317:245:4,-175.5,-34.5,0,0,-0.124879 -55082,5317:245:3,-175,-34.5,0,0,-0.120169 -55083,5317:144:4,-174.5,-34.5,0,0,-0.110947 -55084,5317:144:3,-174,-34.5,0,0,-0.13605 -55085,5317:143:4,-173.5,-34.5,0,0,-0.13605 -55086,5317:143:3,-173,-34.5,0,0,-0.13605 -55087,5317:142:4,-172.5,-34.5,0,0,-0.13605 -55088,5317:142:3,-172,-34.5,0,0,-0.13605 -55089,5317:141:4,-171.5,-34.5,0,0,-0.13605 -55090,5317:141:3,-171,-34.5,0,0,-0.13605 -55091,5317:140:4,-170.5,-34.5,0,0,-0.13605 -55092,5317:140:3,-170,-34.5,0,0,-0.13605 -55093,5316:249:4,-169.5,-34.5,0,0,-0.13605 -55094,5316:249:3,-169,-34.5,0,0,-0.13605 -55095,5316:248:4,-168.5,-34.5,0,0,-0.13605 -55096,5316:248:3,-168,-34.5,0,0,-0.13605 -55097,5316:247:4,-167.5,-34.5,0,0,-0.13605 -55098,5316:247:3,-167,-34.5,0,0,-0.13605 -55099,5316:246:4,-166.5,-34.5,0,0,-0.13605 -55100,5316:246:3,-166,-34.5,0,0,-0.13605 -55101,5316:245:4,-165.5,-34.5,0,0,-0.13605 -55102,5316:245:3,-165,-34.5,0,0,-0.13605 -55103,5316:144:4,-164.5,-34.5,0,0,-0.13605 -55104,5316:144:3,-164,-34.5,0,0,-0.13605 -55105,5316:143:4,-163.5,-34.5,0,0,-0.13605 -55106,5316:143:3,-163,-34.5,0,0,-0.13605 -55107,5316:142:4,-162.5,-34.5,0,0,-0.13605 -55108,5316:142:3,-162,-34.5,0,0,-0.13605 -55109,5316:141:4,-161.5,-34.5,0,0,-0.13605 -55110,5316:141:3,-161,-34.5,0,0,-0.13605 -55111,5316:140:4,-160.5,-34.5,0,0,-0.13605 -55112,5316:140:3,-160,-34.5,0,0,-0.13605 -55113,5315:249:4,-159.5,-34.5,0,0,-0.13605 -55114,5315:249:3,-159,-34.5,0,0,-0.13605 -55115,5315:248:4,-158.5,-34.5,0,0,-0.13605 -55116,5315:248:3,-158,-34.5,0,0,-0.13605 -55117,5315:247:4,-157.5,-34.5,0,0,-0.13605 -55118,5315:247:3,-157,-34.5,0,0,-0.13605 -55119,5315:246:4,-156.5,-34.5,0,0,-0.13605 -55120,5315:246:3,-156,-34.5,0,0,-0.13605 -55121,5315:245:4,-155.5,-34.5,0,0,-0.13605 -55122,5315:245:3,-155,-34.5,0,0,-0.13605 -55123,5315:144:4,-154.5,-34.5,0,0,-0.13605 -55124,5315:144:3,-154,-34.5,0,0,-0.13605 -55125,5315:143:4,-153.5,-34.5,0,0,-0.13605 -55126,5315:143:3,-153,-34.5,0,0,-0.13605 -55127,5315:142:4,-152.5,-34.5,0,0,-0.13605 -55128,5315:142:3,-152,-34.5,0,0,-0.13605 -55129,5315:141:4,-151.5,-34.5,0,0,-0.13605 -55130,5315:141:3,-151,-34.5,0,0,-0.13605 -55131,5315:140:4,-150.5,-34.5,0,0,-0.13605 -55132,5315:140:3,-150,-34.5,0,0,-0.13605 -55133,5314:249:4,-149.5,-34.5,0,0,-0.13605 -55134,5314:249:3,-149,-34.5,0,0,-0.13605 -55135,5314:248:4,-148.5,-34.5,0,0,-0.13605 -55136,5314:248:3,-148,-34.5,0,0,-0.13605 -55137,5314:247:4,-147.5,-34.5,0,0,-0.13605 -55138,5314:247:3,-147,-34.5,0,0,-0.13605 -55139,5314:246:4,-146.5,-34.5,0,0,-0.13605 -55140,5314:246:3,-146,-34.5,0,0,-0.13605 -55141,5314:245:4,-145.5,-34.5,0,0,-0.13605 -55142,5314:245:3,-145,-34.5,0,0,-0.13605 -55143,5314:144:4,-144.5,-34.5,0,0,-0.13605 -55144,5314:144:3,-144,-34.5,0,0,-0.13605 -55145,5314:143:4,-143.5,-34.5,0,0,-0.13605 -55146,5314:143:3,-143,-34.5,0,0,-0.13605 -55147,5314:142:4,-142.5,-34.5,0,0,-0.13605 -55148,5314:142:3,-142,-34.5,0,0,-0.13605 -55149,5314:141:4,-141.5,-34.5,0,0,-0.13605 -55150,5314:141:3,-141,-34.5,0,0,-0.13605 -55151,5314:140:4,-140.5,-34.5,0,0,-0.13605 -55152,5314:140:3,-140,-34.5,0,0,-0.13605 -55153,5313:249:4,-139.5,-34.5,0,0,-0.13605 -55154,5313:249:3,-139,-34.5,0,0,-0.13605 -55155,5313:248:4,-138.5,-34.5,0,0,-0.13605 -55156,5313:248:3,-138,-34.5,0,0,-0.13605 -55157,5313:247:4,-137.5,-34.5,0,0,-0.13605 -55158,5313:247:3,-137,-34.5,0,0,-0.13605 -55159,5313:246:4,-136.5,-34.5,0,0,-0.13605 -55160,5313:246:3,-136,-34.5,0,0,-0.13605 -55161,5313:245:4,-135.5,-34.5,0,0,-0.13605 -55162,5313:245:3,-135,-34.5,0,0,-0.13605 -55163,5313:144:4,-134.5,-34.5,0,0,-0.13605 -55164,5313:144:3,-134,-34.5,0,0,-0.13605 -55165,5313:143:4,-133.5,-34.5,0,0,-0.13605 -55166,5313:143:3,-133,-34.5,0,0,-0.13605 -55167,5313:142:4,-132.5,-34.5,0,0,-0.13605 -55168,5313:142:3,-132,-34.5,0,0,-0.13605 -55169,5313:141:4,-131.5,-34.5,0,0,-0.13605 -55170,5313:141:3,-131,-34.5,0,0,-0.13605 -55171,5313:140:4,-130.5,-34.5,0,0,-0.13605 -55172,5313:140:3,-130,-34.5,0,0,-0.13605 -55173,5312:249:4,-129.5,-34.5,0,0,-0.13605 -55174,5312:249:3,-129,-34.5,0,0,-0.13605 -55175,5312:248:4,-128.5,-34.5,0,0,-0.13605 -55176,5312:248:3,-128,-34.5,0,0,-0.13605 -55177,5312:247:4,-127.5,-34.5,0,0,-0.13605 -55178,5312:247:3,-127,-34.5,0,0,-0.13605 -55179,5312:246:4,-126.5,-34.5,0,0,-0.13605 -55180,5312:246:3,-126,-34.5,0,0,-0.13605 -55181,5312:245:4,-125.5,-34.5,0,0,-0.13605 -55182,5312:245:3,-125,-34.5,0,0,-0.13605 -55183,5312:144:4,-124.5,-34.5,0,0,-0.13605 -55184,5312:144:3,-124,-34.5,0,0,-0.13605 -55185,5312:143:4,-123.5,-34.5,0,0,-0.13605 -55186,5312:143:3,-123,-34.5,0,0,-0.13605 -55187,5312:142:4,-122.5,-34.5,0,0,-0.13605 -55188,5312:142:3,-122,-34.5,0,0,-0.13605 -55189,5312:141:4,-121.5,-34.5,0,0,-0.13605 -55190,5312:141:3,-121,-34.5,0,0,-0.13605 -55191,5312:140:4,-120.5,-34.5,0,0,-0.13605 -55192,5312:140:3,-120,-34.5,0,0,-0.13605 -55193,5311:249:4,-119.5,-34.5,0,0,-0.13605 -55194,5311:249:3,-119,-34.5,0,0,-0.13605 -55195,5311:248:4,-118.5,-34.5,0,0,-0.13605 -55196,5311:248:3,-118,-34.5,0,0,-0.13605 -55197,5311:247:4,-117.5,-34.5,0,0,-0.13605 -55198,5311:247:3,-117,-34.5,0,0,-0.13605 -55199,5311:246:4,-116.5,-34.5,0,0,-0.13605 -55200,5311:246:3,-116,-34.5,0,0,-0.13605 -55201,5311:245:4,-115.5,-34.5,0,0,-0.13605 -55202,5311:245:3,-115,-34.5,0,0,-0.13605 -55203,5311:144:4,-114.5,-34.5,0,0,-0.13605 -55204,5311:144:3,-114,-34.5,0,0,-0.13605 -55205,5311:143:4,-113.5,-34.5,0,0,-0.13605 -55206,5311:143:3,-113,-34.5,0,0,-0.13605 -55207,5311:142:4,-112.5,-34.5,0,0,-0.13605 -55208,5311:142:3,-112,-34.5,0,0,-0.135809 -55209,5311:141:4,-111.5,-34.5,0,0,-0.13605 -55210,5311:141:3,-111,-34.5,0,0,-0.13605 -55211,5311:140:4,-110.5,-34.5,0,0,-0.13605 -55212,5311:140:3,-110,-34.5,0,0,-0.13605 -55213,5310:249:4,-109.5,-34.5,0,0,-0.136022 -55214,5310:249:3,-109,-34.5,0,0,-0.131754 -55215,5310:248:4,-108.5,-34.5,0,0,-0.131523 -55216,5310:248:3,-108,-34.5,0,0,-0.130835 -55217,5310:247:4,-107.5,-34.5,0,0,-0.128313 -55218,5310:247:3,-107,-34.5,0,0,-0.124848 -55219,5310:246:4,-106.5,-34.5,0,0,-0.121877 -55220,5310:246:3,-106,-34.5,0,0,-0.119487 -55221,5310:245:4,-105.5,-34.5,0,0,-0.117091 -55222,5310:245:3,-105,-34.5,0,0,-0.113484 -55223,5310:144:4,-104.5,-34.5,0,0,-0.108525 -55224,5310:144:3,-104,-34.5,0,0,-0.108048 -55225,5310:143:4,-103.5,-34.5,0,0,-0.113149 -55226,5310:143:3,-103,-34.5,0,0,-0.115599 -55227,5310:142:4,-102.5,-34.5,0,0,-0.113177 -55228,5310:142:3,-102,-34.5,0,0,-0.108924 -55229,5310:141:4,-101.5,-34.5,0,0,-0.107546 -55230,5310:141:3,-101,-34.5,0,0,-0.10826 -55231,5310:140:4,-100.5,-34.5,0,0,-0.108791 -55232,5310:140:3,-100,-34.5,0,0,-0.108525 -55233,5309:249:4,-99.5,-34.5,0,0,-0.107705 -55234,5309:249:3,-99,-34.5,0,0,-0.106447 -55235,5309:248:4,-98.5,-34.5,0,0,-0.104694 -55236,5309:248:3,-98,-34.5,0,0,-0.103576 -55237,5309:247:4,-97.5,-34.5,0,0,-0.105515 -55238,5309:247:3,-97,-34.5,0,0,-0.110079 -55239,5309:246:4,-96.5,-34.5,0,0,-0.109406 -55240,5309:246:3,-96,-34.5,0,0,-0.107494 -55241,5309:245:4,-95.5,-34.5,0,0,-0.108021 -55242,5309:245:3,-95,-34.5,0,0,-0.109379 -55243,5309:144:4,-94.5,-34.5,0,0,-0.109917 -55244,5309:144:3,-94,-34.5,0,0,-0.104388 -55245,5309:143:4,-93.5,-34.5,0,0,-0.0979182 -55246,5309:143:3,-93,-34.5,0,0,-0.0986811 -55247,5309:142:4,-92.5,-34.5,0,0,-0.100349 -55248,5309:142:3,-92,-34.5,0,0,-0.100544 -55249,5309:141:4,-91.5,-34.5,0,0,-0.102972 -55250,5309:141:3,-91,-34.5,0,0,-0.104439 -55251,5309:140:4,-90.5,-34.5,0,0,-0.106525 -55252,5309:140:3,-90,-34.5,0,0,-0.105876 -55253,5308:249:4,-89.5,-34.5,0,0,-0.10013 -55254,5308:249:3,-89,-34.5,0,0,-0.0966679 -55255,5308:248:4,-88.5,-34.5,0,0,-0.0958518 -55256,5308:248:3,-88,-34.5,0,0,-0.0938105 -55257,5308:247:4,-87.5,-34.5,0,0,-0.0954349 -55258,5308:247:3,-87,-34.5,0,0,-0.0993304 -55259,5308:246:4,-86.5,-34.5,0,0,-0.102172 -55260,5308:246:3,-86,-34.5,0,0,-0.104058 -55261,5308:245:4,-85.5,-34.5,0,0,-0.101035 -55262,5308:245:3,-85,-34.5,0,0,-0.100106 -55263,5308:144:4,-84.5,-34.5,0,0,-0.101725 -55264,5308:144:3,-84,-34.5,0,0,-0.10101 -55265,5308:143:4,-83.5,-34.5,0,0,-0.0963404 -55266,5308:143:3,-83,-34.5,0,0,-0.0929534 -55267,5308:142:4,-82.5,-34.5,0,0,-0.0999109 -55268,5308:142:3,-82,-34.5,0,0,-0.0990892 -55269,5308:141:4,-81.5,-34.5,0,0,-0.0962009 -55270,5308:141:3,-81,-34.5,0,0,-0.0982988 -55271,5308:140:4,-80.5,-34.5,0,0,-0.100203 -55272,5308:140:3,-80,-34.5,0,0,-0.100301 -55273,5307:249:4,-79.5,-34.5,0,0,-0.100912 -55274,5307:249:3,-79,-34.5,0,0,-0.101553 -55275,5307:248:4,-78.5,-34.5,0,0,-0.101503 -55276,5307:248:3,-78,-34.5,0,0,-0.101158 -55277,5307:247:4,-77.5,-34.5,0,0,-0.102621 -55278,5307:247:3,-77,-34.5,0,0,-0.104899 -55279,5307:246:4,-76.5,-34.5,0,0,-0.10611 -55280,5307:246:3,-76,-34.5,0,0,-0.10518 -55281,5307:245:4,-75.5,-34.5,0,0,-0.10981 -55282,5307:245:3,-75,-34.5,0,0,-0.115172 -55283,5307:144:4,-74.5,-34.5,0,0,-0.125408 -55284,5307:144:3,-74,-34.5,0,0,-0.13605 -55285,5307:143:4,-73.5,-34.5,0,0,-0.13605 -55286,5306:245:3,-65,-34.5,0,0,-0.13605 -55287,5306:144:4,-64.5,-34.5,0,0,-0.13605 -55288,5306:144:3,-64,-34.5,0,0,-0.13605 -55289,5306:143:4,-63.5,-34.5,0,0,-0.13605 -55290,5306:143:3,-63,-34.5,0,0,-0.13605 -55291,5306:142:4,-62.5,-34.5,0,0,-0.13605 -55292,5306:142:3,-62,-34.5,0,0,-0.13605 -55293,5306:141:4,-61.5,-34.5,0,0,-0.13605 -55294,5306:141:3,-61,-34.5,0,0,-0.13605 -55295,5306:140:4,-60.5,-34.5,0,0,-0.13605 -55296,5306:140:3,-60,-34.5,0,0,-0.126409 -55297,5305:249:4,-59.5,-34.5,0,0,-0.0867051 -55298,5305:249:3,-59,-34.5,0,0,-0.0694977 -55299,5305:248:4,-58.5,-34.5,0,0,-0.0892641 -55300,5305:248:3,-58,-34.5,0,0,-0.132614 -55301,5305:247:4,-57.5,-34.5,0,0,-0.13605 -55302,5305:247:3,-57,-34.5,0,0,-0.13605 -55303,5305:246:4,-56.5,-34.5,0,0,-0.13605 -55304,5305:246:3,-56,-34.5,0,0,-0.13605 -55305,5305:245:4,-55.5,-34.5,0,0,-0.13605 -55306,5305:245:3,-55,-34.5,0,0,-0.13605 -55307,5305:144:4,-54.5,-34.5,0,0,-0.13605 -55308,5305:144:3,-54,-34.5,0,0,-0.13605 -55309,5305:143:4,-53.5,-34.5,0,0,-0.13605 -55310,5305:143:3,-53,-34.5,0,0,-0.13605 -55311,5305:142:4,-52.5,-34.5,0,0,-0.13605 -55312,5305:142:3,-52,-34.5,0,0,-0.13605 -55313,5305:141:4,-51.5,-34.5,0,0,-0.13605 -55314,5305:141:3,-51,-34.5,0,0,-0.13605 -55315,5305:140:4,-50.5,-34.5,0,0,-0.13605 -55316,5305:140:3,-50,-34.5,0,0,-0.13605 -55317,5304:249:4,-49.5,-34.5,0,0,-0.124785 -55318,5304:249:3,-49,-34.5,0,0,-0.131097 -55319,5304:248:4,-48.5,-34.5,0,0,-0.13318 -55320,5304:248:3,-48,-34.5,0,0,-0.12758 -55321,5304:247:4,-47.5,-34.5,0,0,-0.11767 -55322,5304:247:3,-47,-34.5,0,0,-0.109648 -55323,5304:246:4,-46.5,-34.5,0,0,-0.104032 -55324,5304:246:3,-46,-34.5,0,0,-0.0999843 -55325,5304:245:4,-45.5,-34.5,0,0,-0.0972315 -55326,5304:245:3,-45,-34.5,0,0,-0.0937649 -55327,5304:144:4,-44.5,-34.5,0,0,-0.0895004 -55328,5304:144:3,-44,-34.5,0,0,-0.0860414 -55329,5304:143:4,-43.5,-34.5,0,0,-0.0837825 -55330,5304:143:3,-43,-34.5,0,0,-0.0833423 -55331,5304:142:4,-42.5,-34.5,0,0,-0.084104 -55332,5304:142:3,-42,-34.5,0,0,-0.0830634 -55333,5304:141:4,-41.5,-34.5,0,0,-0.0806378 -55334,5304:141:3,-41,-34.5,0,0,-0.0793019 -55335,5304:140:4,-40.5,-34.5,0,0,-0.0787557 -55336,5304:140:3,-40,-34.5,0,0,-0.077712 -55337,5303:249:4,-39.5,-34.5,0,0,-0.075597 -55338,5303:249:3,-39,-34.5,0,0,-0.0737878 -55339,5303:248:4,-38.5,-34.5,0,0,-0.073074 -55340,5303:248:3,-38,-34.5,0,0,-0.0729874 -55341,5303:247:4,-37.5,-34.5,0,0,-0.072453 -55342,5303:247:3,-37,-34.5,0,0,-0.0729008 -55343,5303:246:4,-36.5,-34.5,0,0,-0.0729531 -55344,5303:246:3,-36,-34.5,0,0,-0.0714648 -55345,5303:245:4,-35.5,-34.5,0,0,-0.0713127 -55346,5303:245:3,-35,-34.5,0,0,-0.0726424 -55347,5303:144:4,-34.5,-34.5,0,0,-0.0746868 -55348,5303:144:3,-34,-34.5,0,0,-0.0781573 -55349,5303:143:4,-33.5,-34.5,0,0,-0.0828453 -55350,5303:143:3,-33,-34.5,0,0,-0.0810431 -55351,5303:142:4,-32.5,-34.5,0,0,-0.0751315 -55352,5303:142:3,-32,-34.5,0,0,-0.0705572 -55353,5303:141:4,-31.5,-34.5,0,0,-0.0702908 -55354,5303:141:3,-31,-34.5,0,0,-0.0745274 -55355,5303:140:4,-30.5,-34.5,0,0,-0.0833819 -55356,5303:140:3,-30,-34.5,0,0,-0.0931331 -55357,5302:249:4,-29.5,-34.5,0,0,-0.0938555 -55358,5302:249:3,-29,-34.5,0,0,-0.0888567 -55359,5302:248:4,-28.5,-34.5,0,0,-0.0839633 -55360,5302:248:3,-28,-34.5,0,0,-0.0824893 -55361,5302:247:4,-27.5,-34.5,0,0,-0.0859999 -55362,5302:247:3,-27,-34.5,0,0,-0.0901056 -55363,5302:246:4,-26.5,-34.5,0,0,-0.0829246 -55364,5302:246:3,-26,-34.5,0,0,-0.0769023 -55365,5302:245:4,-25.5,-34.5,0,0,-0.0731608 -55366,5302:245:3,-25,-34.5,0,0,-0.0665761 -55367,5302:144:4,-24.5,-34.5,0,0,-0.0700256 -55368,5302:144:3,-24,-34.5,0,0,-0.0813533 -55369,5302:143:4,-23.5,-34.5,0,0,-0.0941968 -55370,5302:143:3,-23,-34.5,0,0,-0.106995 -55371,5302:142:4,-22.5,-34.5,0,0,-0.11686 -55372,5302:142:3,-22,-34.5,0,0,-0.117729 -55373,5302:141:4,-21.5,-34.5,0,0,-0.114832 -55374,5302:141:3,-21,-34.5,0,0,-0.103627 -55375,5302:140:4,-20.5,-34.5,0,0,-0.0855678 -55376,5302:140:3,-20,-34.5,0,0,-0.0836418 -55377,5301:249:4,-19.5,-34.5,0,0,-0.0797192 -55378,5301:249:3,-19,-34.5,0,0,-0.0769392 -55379,5301:248:4,-18.5,-34.5,0,0,-0.075597 -55380,5301:248:3,-18,-34.5,0,0,-0.0729356 -55381,5301:247:4,-17.5,-34.5,0,0,-0.0693991 -55382,5301:247:3,-17,-34.5,0,0,-0.0693175 -55383,5301:246:4,-16.5,-34.5,0,0,-0.063114 -55384,5301:246:3,-16,-34.5,0,0,-0.050373 -55385,5301:245:4,-15.5,-34.5,0,0,-0.043855 -55386,5301:245:3,-15,-34.5,0,0,-0.0548483 -55387,5301:144:4,-14.5,-34.5,0,0,-0.0602076 -55388,5301:144:3,-14,-34.5,0,0,-0.0668433 -55389,5301:143:4,-13.5,-34.5,0,0,-0.0964573 -55390,5301:143:3,-13,-34.5,0,0,-0.12291 -55391,5301:142:4,-12.5,-34.5,0,0,-0.130086 -55392,5301:142:3,-12,-34.5,0,0,-0.130118 -55393,5301:141:4,-11.5,-34.5,0,0,-0.124075 -55394,5301:141:3,-11,-34.5,0,0,-0.115827 -55395,5301:140:4,-10.5,-34.5,0,0,-0.114522 -55396,5301:140:3,-10,-34.5,0,0,-0.116428 -55397,5300:249:4,-9.5,-34.5,0,0,-0.114127 -55398,5300:249:3,-9,-34.5,0,0,-0.107048 -55399,5300:248:4,-8.5,-34.5,0,0,-0.105387 -55400,5300:248:3,-8,-34.5,0,0,-0.103602 -55401,5300:247:4,-7.5,-34.5,0,0,-0.104082 -55402,5300:247:3,-7,-34.5,0,0,-0.104618 -55403,5300:246:4,-6.5,-34.5,0,0,-0.104058 -55404,5300:246:3,-6,-34.5,0,0,-0.0992582 -55405,5300:245:4,-5.5,-34.5,0,0,-0.091176 -55406,5300:245:3,-5,-34.5,0,0,-0.0879 -55407,5300:144:4,-4.5,-34.5,0,0,-0.0910226 -55408,5300:144:3,-4,-34.5,0,0,-0.0993547 -55409,5300:143:4,-3.5,-34.5,0,0,-0.102822 -55410,5300:143:3,-3,-34.5,0,0,-0.103526 -55411,5300:142:4,-2.5,-34.5,0,0,-0.100544 -55412,5300:142:3,-2,-34.5,0,0,-0.095759 -55413,5300:141:4,-1.5,-34.5,0,0,-0.0909563 -55414,5300:141:3,-1,-34.5,0,0,-0.0861657 -55415,5300:140:4,-0.5,-34.5,0,0,-0.0889637 -55416,3300:140:4,0,-34.5,0,0,-0.0913298 -55417,3300:140:4,0.5,-34.5,0,0,-0.0895432 -55418,3300:141:3,1,-34.5,0,0,-0.0892425 -55419,3300:141:4,1.5,-34.5,0,0,-0.0875629 -55420,3300:142:3,2,-34.5,0,0,-0.0856298 -55421,3300:142:4,2.5,-34.5,0,0,-0.0846902 -55422,3300:143:3,3,-34.5,0,0,-0.084407 -55423,3300:143:4,3.5,-34.5,0,0,-0.0841446 -55424,3300:144:3,4,-34.5,0,0,-0.0835618 -55425,3300:144:4,4.5,-34.5,0,0,-0.0818603 -55426,3300:245:3,5,-34.5,0,0,-0.076866 -55427,3300:245:4,5.5,-34.5,0,0,-0.0673973 -55428,3300:246:3,6,-34.5,0,0,-0.0597438 -55429,3300:246:4,6.5,-34.5,0,0,-0.0566955 -55430,3300:247:3,7,-34.5,0,0,-0.0593677 -55431,3300:247:4,7.5,-34.5,0,0,-0.0599962 -55432,3300:248:3,8,-34.5,0,0,-0.0608882 -55433,3300:248:4,8.5,-34.5,0,0,-0.0634707 -55434,3300:249:3,9,-34.5,0,0,-0.0711105 -55435,3300:249:4,9.5,-34.5,0,0,-0.0747751 -55436,3301:140:3,10,-34.5,0,0,-0.0705241 -55437,3301:140:4,10.5,-34.5,0,0,-0.0667492 -55438,3301:141:3,11,-34.5,0,0,-0.0650271 -55439,3301:141:4,11.5,-34.5,0,0,-0.0651341 -55440,3301:142:3,12,-34.5,0,0,-0.0763372 -55441,3301:142:4,12.5,-34.5,0,0,-0.0875841 -55442,3301:143:3,13,-34.5,0,0,-0.0854039 -55443,3301:143:4,13.5,-34.5,0,0,-0.0723671 -55444,3301:144:3,14,-34.5,0,0,-0.0694486 -55445,3301:144:4,14.5,-34.5,0,0,-0.0813147 -55446,3301:245:3,15,-34.5,0,0,-0.0923269 -55447,3301:245:4,15.5,-34.5,0,0,-0.112152 -55448,3301:246:3,16,-34.5,0,0,-0.116285 -55449,3301:246:4,16.5,-34.5,0,0,-0.078793 -55450,3301:247:3,17,-34.5,0,0,-0.0722302 -55451,3301:247:4,17.5,-34.5,0,0,-0.0978233 -55452,3301:248:3,18,-34.5,0,0,-0.130151 -55453,3301:248:4,18.5,-34.5,0,0,-0.13605 -55454,3301:249:3,19,-34.5,0,0,-0.13605 -55455,3301:249:4,19.5,-34.5,0,0,-0.12429 -55456,3302:140:3,20,-34.5,0,0,-0.0823708 -55457,3302:140:4,20.5,-34.5,0,0,-0.0780829 -55458,3302:141:3,21,-34.5,0,0,-0.106813 -55459,3302:141:4,21.5,-34.5,0,0,-0.115087 -55460,3302:142:3,22,-34.5,0,0,-0.125096 -55461,3302:142:4,22.5,-34.5,0,0,-0.13605 -55462,3302:143:3,23,-34.5,0,0,-0.130672 -55463,3302:143:4,23.5,-34.5,0,0,-0.119754 -55464,3302:144:3,24,-34.5,0,0,-0.120616 -55465,3302:144:4,24.5,-34.5,0,0,-0.0915067 -55466,3302:245:3,25,-34.5,0,0,-0.0709756 -55467,3302:245:4,25.5,-34.5,0,0,-0.0776567 -55468,3302:246:3,26,-34.5,0,0,-0.0873321 -55469,3302:246:4,26.5,-34.5,0,0,-0.122484 -55470,3302:247:3,27,-34.5,0,0,-0.135843 -55471,3302:247:4,27.5,-34.5,0,0,-0.133213 -55472,3302:248:3,28,-34.5,0,0,-0.127994 -55473,3302:248:4,28.5,-34.5,0,0,-0.108366 -55474,3302:249:3,29,-34.5,0,0,-0.0840235 -55475,3302:249:4,29.5,-34.5,0,0,-0.0775271 -55476,3303:140:3,30,-34.5,0,0,-0.0796241 -55477,3303:140:4,30.5,-34.5,0,0,-0.0887928 -55478,3303:141:3,31,-34.5,0,0,-0.0960141 -55479,3303:141:4,31.5,-34.5,0,0,-0.0884513 -55480,3303:142:3,32,-34.5,0,0,-0.0797384 -55481,3303:142:4,32.5,-34.5,0,0,-0.0699095 -55482,3303:143:3,33,-34.5,0,0,-0.0628184 -55483,3303:143:4,33.5,-34.5,0,0,-0.058253 -55484,3303:144:3,34,-34.5,0,0,-0.0582805 -55485,3303:144:4,34.5,-34.5,0,0,-0.0593397 -55486,3303:245:3,35,-34.5,0,0,-0.0600945 -55487,3303:245:4,35.5,-34.5,0,0,-0.0610313 -55488,3303:246:3,36,-34.5,0,0,-0.0591041 -55489,3303:246:4,36.5,-34.5,0,0,-0.0566692 -55490,3303:247:3,37,-34.5,0,0,-0.0561689 -55491,3303:247:4,37.5,-34.5,0,0,-0.0545806 -55492,3303:248:3,38,-34.5,0,0,-0.0514966 -55493,3303:248:4,38.5,-34.5,0,0,-0.0484151 -55494,3303:249:3,39,-34.5,0,0,-0.0496768 -55495,3303:249:4,39.5,-34.5,0,0,-0.0518207 -55496,3304:140:3,40,-34.5,0,0,-0.0511984 -55497,3304:140:4,40.5,-34.5,0,0,-0.0515685 -55498,3304:141:3,41,-34.5,0,0,-0.0542888 -55499,3304:141:4,41.5,-34.5,0,0,-0.0488884 -55500,3304:142:3,42,-34.5,0,0,-0.0461616 -55501,3304:142:4,42.5,-34.5,0,0,-0.0431131 -55502,3304:143:3,43,-34.5,0,0,-0.0413723 -55503,3304:143:4,43.5,-34.5,0,0,-0.0404781 -55504,3304:144:3,44,-34.5,0,0,-0.039504 -55505,3304:144:4,44.5,-34.5,0,0,-0.0382811 -55506,3304:245:3,45,-34.5,0,0,-0.0361663 -55507,3304:245:4,45.5,-34.5,0,0,-0.0334309 -55508,3304:246:3,46,-34.5,0,0,-0.0314913 -55509,3304:246:4,46.5,-34.5,0,0,-0.0299049 -55510,3304:247:3,47,-34.5,0,0,-0.0292722 -55511,3304:247:4,47.5,-34.5,0,0,-0.0303436 -55512,3304:248:3,48,-34.5,0,0,-0.0327211 -55513,3304:248:4,48.5,-34.5,0,0,-0.0341407 -55514,3304:249:3,49,-34.5,0,0,-0.0345884 -55515,3304:249:4,49.5,-34.5,0,0,-0.0346913 -55516,3305:140:3,50,-34.5,0,0,-0.0334461 -55517,3305:140:4,50.5,-34.5,0,0,-0.0309932 -55518,3305:141:3,51,-34.5,0,0,-0.0325276 -55519,3305:141:4,51.5,-34.5,0,0,-0.0362574 -55520,3305:142:3,52,-34.5,0,0,-0.0399787 -55521,3305:142:4,52.5,-34.5,0,0,-0.0499656 -55522,3305:143:3,53,-34.5,0,0,-0.0724362 -55523,3305:143:4,53.5,-34.5,0,0,-0.12218 -55524,3305:144:3,54,-34.5,0,0,-0.13605 -55525,3305:144:4,54.5,-34.5,0,0,-0.13605 -55526,3305:245:3,55,-34.5,0,0,-0.128922 -55527,3305:245:4,55.5,-34.5,0,0,-0.0881118 -55528,3305:246:3,56,-34.5,0,0,-0.0677163 -55529,3305:246:4,56.5,-34.5,0,0,-0.0863723 -55530,3305:247:3,57,-34.5,0,0,-0.117932 -55531,3305:247:4,57.5,-34.5,0,0,-0.12343 -55532,3305:248:3,58,-34.5,0,0,-0.124044 -55533,3305:248:4,58.5,-34.5,0,0,-0.134993 -55534,3305:249:3,59,-34.5,0,0,-0.13605 -55535,3305:249:4,59.5,-34.5,0,0,-0.13605 -55536,3306:140:3,60,-34.5,0,0,-0.13605 -55537,3306:140:4,60.5,-34.5,0,0,-0.13605 -55538,3306:141:3,61,-34.5,0,0,-0.13605 -55539,3306:141:4,61.5,-34.5,0,0,-0.13605 -55540,3306:142:3,62,-34.5,0,0,-0.13605 -55541,3306:142:4,62.5,-34.5,0,0,-0.11837 -55542,3306:143:3,63,-34.5,0,0,-0.113987 -55543,3306:143:4,63.5,-34.5,0,0,-0.126788 -55544,3306:144:3,64,-34.5,0,0,-0.13605 -55545,3306:144:4,64.5,-34.5,0,0,-0.13605 -55546,3306:245:3,65,-34.5,0,0,-0.13605 -55547,3306:245:4,65.5,-34.5,0,0,-0.13605 -55548,3306:246:3,66,-34.5,0,0,-0.119016 -55549,3306:246:4,66.5,-34.5,0,0,-0.0721962 -55550,3306:247:3,67,-34.5,0,0,-0.090454 -55551,3306:247:4,67.5,-34.5,0,0,-0.13605 -55552,3306:248:3,68,-34.5,0,0,-0.13605 -55553,3306:248:4,68.5,-34.5,0,0,-0.13605 -55554,3306:249:3,69,-34.5,0,0,-0.13605 -55555,3306:249:4,69.5,-34.5,0,0,-0.13605 -55556,3307:140:3,70,-34.5,0,0,-0.13605 -55557,3307:140:4,70.5,-34.5,0,0,-0.13605 -55558,3307:141:3,71,-34.5,0,0,-0.13605 -55559,3307:141:4,71.5,-34.5,0,0,-0.118165 -55560,3307:142:3,72,-34.5,0,0,-0.102747 -55561,3307:142:4,72.5,-34.5,0,0,-0.106551 -55562,3307:143:4,73.5,-34.5,0,0,-0.121877 -55563,3307:144:3,74,-34.5,0,0,-0.123276 -55564,3307:144:4,74.5,-34.5,0,0,-0.127834 -55565,3307:245:3,75,-34.5,0,0,-0.123032 -55566,3307:245:4,75.5,-34.5,0,0,-0.105515 -55567,3307:246:3,76,-34.5,0,0,-0.0829246 -55568,3307:246:4,76.5,-34.5,0,0,-0.0797953 -55569,3307:247:3,77,-34.5,0,0,-0.0887928 -55570,3307:247:4,77.5,-34.5,0,0,-0.104592 -55571,3307:248:3,78,-34.5,0,0,-0.119635 -55572,3307:248:4,78.5,-34.5,0,0,-0.130151 -55573,3307:249:3,79,-34.5,0,0,-0.128026 -55574,3307:249:4,79.5,-34.5,0,0,-0.118107 -55575,3308:140:3,80,-34.5,0,0,-0.109112 -55576,3308:140:4,80.5,-34.5,0,0,-0.105929 -55577,3308:141:3,81,-34.5,0,0,-0.104668 -55578,3308:141:4,81.5,-34.5,0,0,-0.101676 -55579,3308:142:3,82,-34.5,0,0,-0.0971143 -55580,3308:142:4,82.5,-34.5,0,0,-0.0932004 -55581,3308:143:3,83,-34.5,0,0,-0.0891351 -55582,3308:143:4,83.5,-34.5,0,0,-0.0867674 -55583,3308:144:3,84,-34.5,0,0,-0.0890919 -55584,3308:144:4,84.5,-34.5,0,0,-0.0941058 -55585,3308:245:3,85,-34.5,0,0,-0.0996445 -55586,3308:245:4,85.5,-34.5,0,0,-0.104566 -55587,3308:246:3,86,-34.5,0,0,-0.10624 -55588,3308:246:4,86.5,-34.5,0,0,-0.102322 -55589,3308:247:3,87,-34.5,0,0,-0.0794342 -55590,3308:247:4,87.5,-34.5,0,0,-0.0693335 -55591,3308:248:3,88,-34.5,0,0,-0.0678759 -55592,3308:248:4,88.5,-34.5,0,0,-0.0667017 -55593,3308:249:3,89,-34.5,0,0,-0.0652109 -55594,3308:249:4,89.5,-34.5,0,0,-0.0642665 -55595,3309:140:3,90,-34.5,0,0,-0.0654568 -55596,3309:140:4,90.5,-34.5,0,0,-0.0670331 -55597,3309:141:3,91,-34.5,0,0,-0.0669064 -55598,3309:141:4,91.5,-34.5,0,0,-0.0651645 -55599,3309:142:3,92,-34.5,0,0,-0.06377 -55600,3309:142:4,92.5,-34.5,0,0,-0.0633666 -55601,3309:143:3,93,-34.5,0,0,-0.062027 -55602,3309:143:4,93.5,-34.5,0,0,-0.0609457 -55603,3309:144:3,94,-34.5,0,0,-0.0597579 -55604,3309:144:4,94.5,-34.5,0,0,-0.0585673 -55605,3309:245:3,95,-34.5,0,0,-0.0597861 -55606,3309:245:4,95.5,-34.5,0,0,-0.0647824 -55607,3309:246:3,96,-34.5,0,0,-0.0682292 -55608,3309:246:4,96.5,-34.5,0,0,-0.0743327 -55609,3309:247:3,97,-34.5,0,0,-0.0773796 -55610,3309:247:4,97.5,-34.5,0,0,-0.0762829 -55611,3309:248:3,98,-34.5,0,0,-0.0750063 -55612,3309:248:4,98.5,-34.5,0,0,-0.0798336 -55613,3309:249:3,99,-34.5,0,0,-0.105335 -55614,3309:249:4,99.5,-34.5,0,0,-0.114522 -55615,3310:140:3,100,-34.5,0,0,-0.114127 -55616,3310:140:4,100.5,-34.5,0,0,-0.112538 -55617,3310:141:3,101,-34.5,0,0,-0.0932457 -55618,3310:141:4,101.5,-34.5,0,0,-0.0811785 -55619,3310:142:3,102,-34.5,0,0,-0.0904101 -55620,3310:142:4,102.5,-34.5,0,0,-0.106317 -55621,3310:143:3,103,-34.5,0,0,-0.107126 -55622,3310:143:4,103.5,-34.5,0,0,-0.106084 -55623,3310:144:3,104,-34.5,0,0,-0.103526 -55624,3310:144:4,104.5,-34.5,0,0,-0.0906284 -55625,3310:245:3,105,-34.5,0,0,-0.0764647 -55626,3310:245:4,105.5,-34.5,0,0,-0.0724362 -55627,3310:246:3,106,-34.5,0,0,-0.0877525 -55628,3310:246:4,106.5,-34.5,0,0,-0.100301 -55629,3310:247:3,107,-34.5,0,0,-0.107757 -55630,3310:247:4,107.5,-34.5,0,0,-0.0966915 -55631,3310:248:3,108,-34.5,0,0,-0.0833423 -55632,3310:248:4,108.5,-34.5,0,0,-0.0757227 -55633,3310:249:3,109,-34.5,0,0,-0.0871849 -55634,3310:249:4,109.5,-34.5,0,0,-0.101109 -55635,3311:140:3,110,-34.5,0,0,-0.103274 -55636,3311:140:4,110.5,-34.5,0,0,-0.099234 -55637,3311:141:3,111,-34.5,0,0,-0.0937649 -55638,3311:141:4,111.5,-34.5,0,0,-0.089436 -55639,3311:142:3,112,-34.5,0,0,-0.0895004 -55640,3311:142:4,112.5,-34.5,0,0,-0.0949744 -55641,3311:143:3,113,-34.5,0,0,-0.100252 -55642,3311:143:4,113.5,-34.5,0,0,-0.102147 -55643,3311:144:3,114,-34.5,0,0,-0.101479 -55644,3311:144:4,114.5,-34.5,0,0,-0.10013 -55645,3311:245:3,115,-34.5,0,0,-0.0985613 -55646,3311:245:4,115.5,-34.5,0,0,-0.0967143 -55647,3311:246:3,116,-34.5,0,0,-0.0984657 -55648,3311:246:4,116.5,-34.5,0,0,-0.0984657 -55649,3311:247:3,117,-34.5,0,0,-0.0971373 -55650,3311:247:4,117.5,-34.5,0,0,-0.0962009 -55651,3311:248:3,118,-34.5,0,0,-0.0951351 -55652,3311:248:4,118.5,-34.5,0,0,-0.0950431 -55653,3311:249:3,119,-34.5,0,0,-0.0956431 -55654,3311:249:4,119.5,-34.5,0,0,-0.0962237 -55655,3312:140:3,120,-34.5,0,0,-0.0977755 -55656,3312:140:4,120.5,-34.5,0,0,-0.100106 -55657,3312:141:3,121,-34.5,0,0,-0.102098 -55658,3312:141:4,121.5,-34.5,0,0,-0.102671 -55659,3312:142:3,122,-34.5,0,0,-0.100863 -55660,3312:142:4,122.5,-34.5,0,0,-0.0985138 -55661,3312:143:3,123,-34.5,0,0,-0.0970669 -55662,3312:143:4,123.5,-34.5,0,0,-0.0962471 -55663,3312:144:3,124,-34.5,0,0,-0.0964337 -55664,3312:144:4,124.5,-34.5,0,0,-0.0973971 -55665,3312:245:3,125,-34.5,0,0,-0.0985854 -55666,3312:245:4,125.5,-34.5,0,0,-0.0998383 -55667,3312:246:3,126,-34.5,0,0,-0.101207 -55668,3312:246:4,126.5,-34.5,0,0,-0.101578 -55669,3312:247:3,127,-34.5,0,0,-0.100642 -55670,3312:247:4,127.5,-34.5,0,0,-0.101084 -55671,3312:248:3,128,-34.5,0,0,-0.101924 -55672,3312:248:4,128.5,-34.5,0,0,-0.102397 -55673,3312:249:3,129,-34.5,0,0,-0.104362 -55674,3312:249:4,129.5,-34.5,0,0,-0.105309 -55675,3313:140:3,130,-34.5,0,0,-0.103324 -55676,3313:140:4,130.5,-34.5,0,0,-0.103097 -55677,3313:141:3,131,-34.5,0,0,-0.105954 -55678,3313:141:4,131.5,-34.5,0,0,-0.108472 -55679,3313:142:3,132,-34.5,0,0,-0.109702 -55680,3313:142:4,132.5,-34.5,0,0,-0.109165 -55681,3313:143:3,133,-34.5,0,0,-0.106813 -55682,3313:143:4,133.5,-34.5,0,0,-0.103526 -55683,3313:144:3,134,-34.5,0,0,-0.101404 -55684,3313:144:4,134.5,-34.5,0,0,-0.100301 -55685,3313:245:3,135,-34.5,0,0,-0.100765 -55686,3313:245:4,135.5,-34.5,0,0,-0.107126 -55687,3313:246:3,136,-34.5,0,0,-0.109219 -55688,3313:246:4,136.5,-34.5,0,0,-0.104362 -55689,3313:247:3,137,-34.5,0,0,-0.102023 -55690,3313:247:4,137.5,-34.5,0,0,-0.104771 -55691,3313:248:3,138,-34.5,0,0,-0.110349 -55692,3313:248:4,138.5,-34.5,0,0,-0.118311 -55693,3313:249:3,139,-34.5,0,0,-0.122879 -55694,3313:249:4,139.5,-34.5,0,0,-0.123859 -55695,3314:140:3,140,-34.5,0,0,-0.124136 -55696,3314:140:4,140.5,-34.5,0,0,-0.130411 -55697,3314:141:3,141,-34.5,0,0,-0.13605 -55698,3314:141:4,141.5,-34.5,0,0,-0.13605 -55699,3314:142:3,142,-34.5,0,0,-0.13605 -55700,3314:142:4,142.5,-34.5,0,0,-0.13605 -55701,3314:143:3,143,-34.5,0,0,-0.135956 -55702,3314:143:4,143.5,-34.5,0,0,-0.13182 -55703,3314:144:3,144,-34.5,0,0,-0.13605 -55704,3314:144:4,144.5,-34.5,0,0,-0.13605 -55705,3314:245:3,145,-34.5,0,0,-0.13605 -55706,3314:245:4,145.5,-34.5,0,0,-0.13605 -55707,3314:246:3,146,-34.5,0,0,-0.13605 -55708,3314:246:4,146.5,-34.5,0,0,-0.13605 -55709,3314:247:3,147,-34.5,0,0,-0.13605 -55710,3314:247:4,147.5,-34.5,0,0,-0.13605 -55711,3314:248:3,148,-34.5,0,0,-0.13605 -55712,3314:248:4,148.5,-34.5,0,0,-0.13605 -55713,3314:249:3,149,-34.5,0,0,-0.13605 -55714,3314:249:4,149.5,-34.5,0,0,-0.13605 -55715,3315:140:3,150,-34.5,0,0,-0.13605 -55716,3315:140:4,150.5,-34.5,0,0,-0.13605 -55717,3315:141:3,151,-34.5,0,0,-0.13605 -55718,3315:141:4,151.5,-34.5,0,0,-0.13605 -55719,3315:142:3,152,-34.5,0,0,-0.13605 -55720,3315:142:4,152.5,-34.5,0,0,-0.13605 -55721,3315:143:3,153,-34.5,0,0,-0.13605 -55722,3315:143:4,153.5,-34.5,0,0,-0.13605 -55723,3315:144:3,154,-34.5,0,0,-0.13605 -55724,3315:144:4,154.5,-34.5,0,0,-0.13605 -55725,3315:245:3,155,-34.5,0,0,-0.13605 -55726,3315:245:4,155.5,-34.5,0,0,-0.13605 -55727,3315:246:3,156,-34.5,0,0,-0.13605 -55728,3315:246:4,156.5,-34.5,0,0,-0.13605 -55729,3315:247:3,157,-34.5,0,0,-0.13605 -55730,3315:247:4,157.5,-34.5,0,0,-0.13605 -55731,3315:248:3,158,-34.5,0,0,-0.13605 -55732,3315:248:4,158.5,-34.5,0,0,-0.13605 -55733,3315:249:3,159,-34.5,0,0,-0.13605 -55734,3315:249:4,159.5,-34.5,0,0,-0.13605 -55735,3316:140:3,160,-34.5,0,0,-0.13605 -55736,3316:140:4,160.5,-34.5,0,0,-0.13605 -55737,3316:141:3,161,-34.5,0,0,-0.13605 -55738,3316:141:4,161.5,-34.5,0,0,-0.13605 -55739,3316:142:3,162,-34.5,0,0,-0.13605 -55740,3316:142:4,162.5,-34.5,0,0,-0.13605 -55741,3316:143:3,163,-34.5,0,0,-0.13605 -55742,3316:143:4,163.5,-34.5,0,0,-0.13605 -55743,3316:144:3,164,-34.5,0,0,-0.13605 -55744,3316:144:4,164.5,-34.5,0,0,-0.13605 -55745,3316:245:3,165,-34.5,0,0,-0.13605 -55746,3316:245:4,165.5,-34.5,0,0,-0.13605 -55747,3316:246:3,166,-34.5,0,0,-0.13605 -55748,3316:246:4,166.5,-34.5,0,0,-0.13605 -55749,3316:247:3,167,-34.5,0,0,-0.13605 -55750,3316:247:4,167.5,-34.5,0,0,-0.13605 -55751,3316:248:3,168,-34.5,0,0,-0.13605 -55752,3316:248:4,168.5,-34.5,0,0,-0.13605 -55753,3317:142:3,172,-34.5,0,0,-0.13605 -55754,3317:142:4,172.5,-34.5,0,0,-0.13605 -55755,3317:143:3,173,-34.5,0,0,-0.131688 -55756,3317:143:4,173.5,-34.5,0,0,-0.107048 -55757,3317:144:3,174,-34.5,0,0,-0.0991134 -55758,3317:144:4,174.5,-34.5,0,0,-0.101207 -55759,3317:245:3,175,-34.5,0,0,-0.123767 -55760,3317:245:4,175.5,-34.5,0,0,-0.12947 -55761,3317:246:3,176,-34.5,0,0,-0.121275 -55762,3317:246:4,176.5,-34.5,0,0,-0.107022 -55763,3317:247:3,177,-34.5,0,0,-0.100349 -55764,3317:247:4,177.5,-34.5,0,0,-0.0958057 -55765,3317:248:3,178,-34.5,0,0,-0.0930652 -55766,3317:248:4,178.5,-34.5,0,0,-0.0920153 -55767,3317:249:3,179,-34.5,0,0,-0.092282 -55768,3317:249:4,179.5,-34.5,0,0,-0.0940371 -55769,3318:140:3,180,-34.5,0,0,-0.0981795 -55770,5318:140:1,-180,-34,0,0,-0.13605 -55771,5317:249:2,-179.5,-34,0,0,-0.135401 -55772,5317:249:1,-179,-34,0,0,-0.132647 -55773,5317:248:2,-178.5,-34,0,0,-0.13605 -55774,5317:248:1,-178,-34,0,0,-0.13605 -55775,5317:247:2,-177.5,-34,0,0,-0.13605 -55776,5317:247:1,-177,-34,0,0,-0.13605 -55777,5317:246:2,-176.5,-34,0,0,-0.13605 -55778,5317:246:1,-176,-34,0,0,-0.13605 -55779,5317:245:2,-175.5,-34,0,0,-0.135962 -55780,5317:245:1,-175,-34,0,0,-0.129665 -55781,5317:144:2,-174.5,-34,0,0,-0.13605 -55782,5317:144:1,-174,-34,0,0,-0.13605 -55783,5317:143:2,-173.5,-34,0,0,-0.13605 -55784,5317:143:1,-173,-34,0,0,-0.13605 -55785,5317:142:2,-172.5,-34,0,0,-0.13605 -55786,5317:142:1,-172,-34,0,0,-0.13605 -55787,5317:141:2,-171.5,-34,0,0,-0.13605 -55788,5317:141:1,-171,-34,0,0,-0.13605 -55789,5317:140:2,-170.5,-34,0,0,-0.13605 -55790,5317:140:1,-170,-34,0,0,-0.13605 -55791,5316:249:2,-169.5,-34,0,0,-0.13605 -55792,5316:249:1,-169,-34,0,0,-0.13605 -55793,5316:248:2,-168.5,-34,0,0,-0.13605 -55794,5316:248:1,-168,-34,0,0,-0.13605 -55795,5316:247:2,-167.5,-34,0,0,-0.13605 -55796,5316:247:1,-167,-34,0,0,-0.13605 -55797,5316:246:2,-166.5,-34,0,0,-0.13605 -55798,5316:246:1,-166,-34,0,0,-0.13605 -55799,5316:245:2,-165.5,-34,0,0,-0.13605 -55800,5316:245:1,-165,-34,0,0,-0.13605 -55801,5316:144:2,-164.5,-34,0,0,-0.13605 -55802,5316:144:1,-164,-34,0,0,-0.13605 -55803,5316:143:2,-163.5,-34,0,0,-0.13605 -55804,5316:143:1,-163,-34,0,0,-0.13605 -55805,5316:142:2,-162.5,-34,0,0,-0.13605 -55806,5316:142:1,-162,-34,0,0,-0.13605 -55807,5316:141:2,-161.5,-34,0,0,-0.13605 -55808,5316:141:1,-161,-34,0,0,-0.13605 -55809,5316:140:2,-160.5,-34,0,0,-0.13605 -55810,5316:140:1,-160,-34,0,0,-0.13605 -55811,5315:249:2,-159.5,-34,0,0,-0.13605 -55812,5315:249:1,-159,-34,0,0,-0.13605 -55813,5315:248:2,-158.5,-34,0,0,-0.13605 -55814,5315:248:1,-158,-34,0,0,-0.13605 -55815,5315:247:2,-157.5,-34,0,0,-0.13605 -55816,5315:247:1,-157,-34,0,0,-0.13605 -55817,5315:246:2,-156.5,-34,0,0,-0.13605 -55818,5315:246:1,-156,-34,0,0,-0.13605 -55819,5315:245:2,-155.5,-34,0,0,-0.13605 -55820,5315:245:1,-155,-34,0,0,-0.13605 -55821,5315:144:2,-154.5,-34,0,0,-0.13605 -55822,5315:144:1,-154,-34,0,0,-0.13605 -55823,5315:143:2,-153.5,-34,0,0,-0.13605 -55824,5315:143:1,-153,-34,0,0,-0.13605 -55825,5315:142:2,-152.5,-34,0,0,-0.13605 -55826,5315:142:1,-152,-34,0,0,-0.13605 -55827,5315:141:2,-151.5,-34,0,0,-0.13605 -55828,5315:141:1,-151,-34,0,0,-0.13605 -55829,5315:140:2,-150.5,-34,0,0,-0.13605 -55830,5315:140:1,-150,-34,0,0,-0.13605 -55831,5314:249:2,-149.5,-34,0,0,-0.13605 -55832,5314:249:1,-149,-34,0,0,-0.13605 -55833,5314:248:2,-148.5,-34,0,0,-0.13605 -55834,5314:248:1,-148,-34,0,0,-0.13605 -55835,5314:247:2,-147.5,-34,0,0,-0.13605 -55836,5314:247:1,-147,-34,0,0,-0.13605 -55837,5314:246:2,-146.5,-34,0,0,-0.13605 -55838,5314:246:1,-146,-34,0,0,-0.13605 -55839,5314:245:2,-145.5,-34,0,0,-0.13605 -55840,5314:245:1,-145,-34,0,0,-0.13605 -55841,5314:144:2,-144.5,-34,0,0,-0.13605 -55842,5314:144:1,-144,-34,0,0,-0.13605 -55843,5314:143:2,-143.5,-34,0,0,-0.13605 -55844,5314:143:1,-143,-34,0,0,-0.13605 -55845,5314:142:2,-142.5,-34,0,0,-0.13605 -55846,5314:142:1,-142,-34,0,0,-0.13605 -55847,5314:141:2,-141.5,-34,0,0,-0.13605 -55848,5314:141:1,-141,-34,0,0,-0.13605 -55849,5314:140:2,-140.5,-34,0,0,-0.13605 -55850,5314:140:1,-140,-34,0,0,-0.13605 -55851,5313:249:2,-139.5,-34,0,0,-0.13605 -55852,5313:249:1,-139,-34,0,0,-0.13605 -55853,5313:248:2,-138.5,-34,0,0,-0.13605 -55854,5313:248:1,-138,-34,0,0,-0.13605 -55855,5313:247:2,-137.5,-34,0,0,-0.13605 -55856,5313:247:1,-137,-34,0,0,-0.13605 -55857,5313:246:2,-136.5,-34,0,0,-0.13605 -55858,5313:246:1,-136,-34,0,0,-0.13605 -55859,5313:245:2,-135.5,-34,0,0,-0.13605 -55860,5313:245:1,-135,-34,0,0,-0.13605 -55861,5313:144:2,-134.5,-34,0,0,-0.13605 -55862,5313:144:1,-134,-34,0,0,-0.13605 -55863,5313:143:2,-133.5,-34,0,0,-0.13605 -55864,5313:143:1,-133,-34,0,0,-0.13605 -55865,5313:142:2,-132.5,-34,0,0,-0.13605 -55866,5313:142:1,-132,-34,0,0,-0.13605 -55867,5313:141:2,-131.5,-34,0,0,-0.13605 -55868,5313:141:1,-131,-34,0,0,-0.13605 -55869,5313:140:2,-130.5,-34,0,0,-0.13605 -55870,5313:140:1,-130,-34,0,0,-0.13605 -55871,5312:249:2,-129.5,-34,0,0,-0.13605 -55872,5312:249:1,-129,-34,0,0,-0.13605 -55873,5312:248:2,-128.5,-34,0,0,-0.13605 -55874,5312:248:1,-128,-34,0,0,-0.13605 -55875,5312:247:2,-127.5,-34,0,0,-0.13605 -55876,5312:247:1,-127,-34,0,0,-0.13605 -55877,5312:246:2,-126.5,-34,0,0,-0.13605 -55878,5312:246:1,-126,-34,0,0,-0.13605 -55879,5312:245:2,-125.5,-34,0,0,-0.13605 -55880,5312:245:1,-125,-34,0,0,-0.13605 -55881,5312:144:2,-124.5,-34,0,0,-0.13605 -55882,5312:144:1,-124,-34,0,0,-0.13605 -55883,5312:143:2,-123.5,-34,0,0,-0.13605 -55884,5312:143:1,-123,-34,0,0,-0.13605 -55885,5312:142:2,-122.5,-34,0,0,-0.13605 -55886,5312:142:1,-122,-34,0,0,-0.13605 -55887,5312:141:2,-121.5,-34,0,0,-0.13605 -55888,5312:141:1,-121,-34,0,0,-0.13605 -55889,5312:140:2,-120.5,-34,0,0,-0.13605 -55890,5312:140:1,-120,-34,0,0,-0.13605 -55891,5311:249:2,-119.5,-34,0,0,-0.13605 -55892,5311:249:1,-119,-34,0,0,-0.13605 -55893,5311:248:2,-118.5,-34,0,0,-0.13605 -55894,5311:248:1,-118,-34,0,0,-0.13605 -55895,5311:247:2,-117.5,-34,0,0,-0.13605 -55896,5311:247:1,-117,-34,0,0,-0.13605 -55897,5311:246:2,-116.5,-34,0,0,-0.13605 -55898,5311:246:1,-116,-34,0,0,-0.13605 -55899,5311:245:2,-115.5,-34,0,0,-0.13605 -55900,5311:245:1,-115,-34,0,0,-0.13605 -55901,5311:144:2,-114.5,-34,0,0,-0.13605 -55902,5311:144:1,-114,-34,0,0,-0.13605 -55903,5311:143:2,-113.5,-34,0,0,-0.13605 -55904,5311:143:1,-113,-34,0,0,-0.13605 -55905,5311:142:2,-112.5,-34,0,0,-0.13605 -55906,5311:142:1,-112,-34,0,0,-0.13605 -55907,5311:141:2,-111.5,-34,0,0,-0.13605 -55908,5311:141:1,-111,-34,0,0,-0.13605 -55909,5311:140:2,-110.5,-34,0,0,-0.13605 -55910,5311:140:1,-110,-34,0,0,-0.13605 -55911,5310:249:2,-109.5,-34,0,0,-0.13605 -55912,5310:249:1,-109,-34,0,0,-0.13605 -55913,5310:248:2,-108.5,-34,0,0,-0.13605 -55914,5310:248:1,-108,-34,0,0,-0.136022 -55915,5310:247:2,-107.5,-34,0,0,-0.134588 -55916,5310:247:1,-107,-34,0,0,-0.13077 -55917,5310:246:2,-106.5,-34,0,0,-0.127041 -55918,5310:246:1,-106,-34,0,0,-0.124229 -55919,5310:245:2,-105.5,-34,0,0,-0.121576 -55920,5310:245:1,-105,-34,0,0,-0.117991 -55921,5310:144:2,-104.5,-34,0,0,-0.114352 -55922,5310:144:1,-104,-34,0,0,-0.11802 -55923,5310:143:2,-103.5,-34,0,0,-0.12494 -55924,5310:143:1,-103,-34,0,0,-0.128698 -55925,5310:142:2,-102.5,-34,0,0,-0.129374 -55926,5310:142:1,-102,-34,0,0,-0.125751 -55927,5310:141:2,-101.5,-34,0,0,-0.121155 -55928,5310:141:1,-101,-34,0,0,-0.120676 -55929,5310:140:2,-100.5,-34,0,0,-0.121727 -55930,5310:140:1,-100,-34,0,0,-0.121245 -55931,5309:249:2,-99.5,-34,0,0,-0.121035 -55932,5309:249:1,-99,-34,0,0,-0.11663 -55933,5309:248:2,-98.5,-34,0,0,-0.110947 -55934,5309:248:1,-98,-34,0,0,-0.110376 -55935,5309:247:2,-97.5,-34,0,0,-0.115713 -55936,5309:247:1,-97,-34,0,0,-0.118751 -55937,5309:246:2,-96.5,-34,0,0,-0.116975 -55938,5309:246:1,-96,-34,0,0,-0.119369 -55939,5309:245:2,-95.5,-34,0,0,-0.124414 -55940,5309:245:1,-95,-34,0,0,-0.126567 -55941,5309:144:2,-94.5,-34,0,0,-0.12619 -55942,5309:144:1,-94,-34,0,0,-0.119074 -55943,5309:143:2,-93.5,-34,0,0,-0.107415 -55944,5309:143:1,-93,-34,0,0,-0.107916 -55945,5309:142:2,-92.5,-34,0,0,-0.115713 -55946,5309:142:1,-92,-34,0,0,-0.116027 -55947,5309:141:2,-91.5,-34,0,0,-0.109621 -55948,5309:141:1,-91,-34,0,0,-0.109513 -55949,5309:140:2,-90.5,-34,0,0,-0.113875 -55950,5309:140:1,-90,-34,0,0,-0.119133 -55951,5308:249:2,-89.5,-34,0,0,-0.117816 -55952,5308:249:1,-89,-34,0,0,-0.110621 -55953,5308:248:2,-88.5,-34,0,0,-0.106421 -55954,5308:248:1,-88,-34,0,0,-0.106682 -55955,5308:247:2,-87.5,-34,0,0,-0.110214 -55956,5308:247:1,-87,-34,0,0,-0.11486 -55957,5308:246:2,-86.5,-34,0,0,-0.112871 -55958,5308:246:1,-86,-34,0,0,-0.110106 -55959,5308:245:2,-85.5,-34,0,0,-0.109836 -55960,5308:245:1,-85,-34,0,0,-0.107942 -55961,5308:144:2,-84.5,-34,0,0,-0.109836 -55962,5308:144:1,-84,-34,0,0,-0.115031 -55963,5308:143:2,-83.5,-34,0,0,-0.111329 -55964,5308:143:1,-83,-34,0,0,-0.103374 -55965,5308:142:2,-82.5,-34,0,0,-0.109112 -55966,5308:142:1,-82,-34,0,0,-0.106995 -55967,5308:141:2,-81.5,-34,0,0,-0.10449 -55968,5308:141:1,-81,-34,0,0,-0.10781 -55969,5308:140:2,-80.5,-34,0,0,-0.108154 -55970,5308:140:1,-80,-34,0,0,-0.107889 -55971,5307:249:2,-79.5,-34,0,0,-0.107626 -55972,5307:249:1,-79,-34,0,0,-0.107336 -55973,5307:248:2,-78.5,-34,0,0,-0.1081 -55974,5307:248:1,-78,-34,0,0,-0.110892 -55975,5307:247:2,-77.5,-34,0,0,-0.114663 -55976,5307:247:1,-77,-34,0,0,-0.114211 -55977,5307:246:2,-76.5,-34,0,0,-0.112069 -55978,5307:246:1,-76,-34,0,0,-0.112649 -55979,5307:245:2,-75.5,-34,0,0,-0.119281 -55980,5307:245:1,-75,-34,0,0,-0.120467 -55981,5307:144:2,-74.5,-34,0,0,-0.130541 -55982,5307:144:1,-74,-34,0,0,-0.13605 -55983,5307:143:2,-73.5,-34,0,0,-0.13605 -55984,5306:245:1,-65,-34,0,0,-0.13605 -55985,5306:144:2,-64.5,-34,0,0,-0.13605 -55986,5306:144:1,-64,-34,0,0,-0.13605 -55987,5306:143:2,-63.5,-34,0,0,-0.13605 -55988,5306:143:1,-63,-34,0,0,-0.13605 -55989,5306:142:2,-62.5,-34,0,0,-0.13605 -55990,5306:142:1,-62,-34,0,0,-0.13605 -55991,5306:141:2,-61.5,-34,0,0,-0.13605 -55992,5306:141:1,-61,-34,0,0,-0.13605 -55993,5306:140:2,-60.5,-34,0,0,-0.13605 -55994,5306:140:1,-60,-34,0,0,-0.13605 -55995,5305:249:2,-59.5,-34,0,0,-0.114296 -55996,5305:249:1,-59,-34,0,0,-0.0823509 -55997,5305:248:2,-58.5,-34,0,0,-0.0845887 -55998,5305:248:1,-58,-34,0,0,-0.123276 -55999,5305:247:2,-57.5,-34,0,0,-0.13605 -56000,5305:247:1,-57,-34,0,0,-0.13605 -56001,5305:246:2,-56.5,-34,0,0,-0.13605 -56002,5305:246:1,-56,-34,0,0,-0.13605 -56003,5305:245:2,-55.5,-34,0,0,-0.13605 -56004,5305:245:1,-55,-34,0,0,-0.13605 -56005,5305:144:2,-54.5,-34,0,0,-0.13605 -56006,5305:144:1,-54,-34,0,0,-0.13605 -56007,5305:143:2,-53.5,-34,0,0,-0.13605 -56008,5305:143:1,-53,-34,0,0,-0.13605 -56009,5305:142:2,-52.5,-34,0,0,-0.13605 -56010,5305:142:1,-52,-34,0,0,-0.13605 -56011,5305:141:2,-51.5,-34,0,0,-0.13605 -56012,5305:141:1,-51,-34,0,0,-0.13605 -56013,5305:140:2,-50.5,-34,0,0,-0.13605 -56014,5305:140:1,-50,-34,0,0,-0.13605 -56015,5304:249:2,-49.5,-34,0,0,-0.134352 -56016,5304:249:1,-49,-34,0,0,-0.13605 -56017,5304:248:2,-48.5,-34,0,0,-0.13605 -56018,5304:248:1,-48,-34,0,0,-0.134858 -56019,5304:247:2,-47.5,-34,0,0,-0.123337 -56020,5304:247:1,-47,-34,0,0,-0.114211 -56021,5304:246:2,-46.5,-34,0,0,-0.109219 -56022,5304:246:1,-46,-34,0,0,-0.10518 -56023,5304:245:2,-45.5,-34,0,0,-0.0998383 -56024,5304:245:1,-45,-34,0,0,-0.0954582 -56025,5304:144:2,-44.5,-34,0,0,-0.0943331 -56026,5304:144:1,-44,-34,0,0,-0.0953891 -56027,5304:143:2,-43.5,-34,0,0,-0.0967143 -56028,5304:143:1,-43,-34,0,0,-0.0950895 -56029,5304:142:2,-42.5,-34,0,0,-0.0914845 -56030,5304:142:1,-42,-34,0,0,-0.0914623 -56031,5304:141:2,-41.5,-34,0,0,-0.0920377 -56032,5304:141:1,-41,-34,0,0,-0.0914845 -56033,5304:140:2,-40.5,-34,0,0,-0.090432 -56034,5304:140:1,-40,-34,0,0,-0.0888991 -56035,5303:249:2,-39.5,-34,0,0,-0.0849346 -56036,5303:249:1,-39,-34,0,0,-0.0798144 -56037,5303:248:2,-38.5,-34,0,0,-0.0773246 -56038,5303:248:1,-38,-34,0,0,-0.0751495 -56039,5303:247:2,-37.5,-34,0,0,-0.0739632 -56040,5303:247:1,-37,-34,0,0,-0.0745274 -56041,5303:246:2,-36.5,-34,0,0,-0.0744567 -56042,5303:246:1,-36,-34,0,0,-0.0740688 -56043,5303:245:2,-35.5,-34,0,0,-0.0744211 -56044,5303:245:1,-35,-34,0,0,-0.0752029 -56045,5303:144:2,-34.5,-34,0,0,-0.0760834 -56046,5303:144:1,-34,-34,0,0,-0.0771591 -56047,5303:143:2,-33.5,-34,0,0,-0.0855064 -56048,5303:143:1,-33,-34,0,0,-0.0937649 -56049,5303:142:2,-32.5,-34,0,0,-0.0904101 -56050,5303:142:1,-32,-34,0,0,-0.0891992 -56051,5303:141:2,-31.5,-34,0,0,-0.0949975 -56052,5303:141:1,-31,-34,0,0,-0.105438 -56053,5303:140:2,-30.5,-34,0,0,-0.11043 -56054,5303:140:1,-30,-34,0,0,-0.106656 -56055,5302:249:2,-29.5,-34,0,0,-0.0990172 -56056,5302:249:1,-29,-34,0,0,-0.0936743 -56057,5302:248:2,-28.5,-34,0,0,-0.092684 -56058,5302:248:1,-28,-34,0,0,-0.0987052 -56059,5302:247:2,-27.5,-34,0,0,-0.108154 -56060,5302:247:1,-27,-34,0,0,-0.107757 -56061,5302:246:2,-26.5,-34,0,0,-0.0888352 -56062,5302:246:1,-26,-34,0,0,-0.0763189 -56063,5302:245:2,-25.5,-34,0,0,-0.0738578 -56064,5302:245:1,-25,-34,0,0,-0.0777307 -56065,5302:144:2,-24.5,-34,0,0,-0.0905412 -56066,5302:144:1,-24,-34,0,0,-0.108286 -56067,5302:143:2,-23.5,-34,0,0,-0.124383 -56068,5302:143:1,-23,-34,0,0,-0.133882 -56069,5302:142:2,-22.5,-34,0,0,-0.127675 -56070,5302:142:1,-22,-34,0,0,-0.114889 -56071,5302:141:2,-21.5,-34,0,0,-0.114268 -56072,5302:141:1,-21,-34,0,0,-0.110349 -56073,5302:140:2,-20.5,-34,0,0,-0.0939241 -56074,5302:140:1,-20,-34,0,0,-0.0884941 -56075,5301:249:2,-19.5,-34,0,0,-0.0803112 -56076,5301:249:1,-19,-34,0,0,-0.0769939 -56077,5301:248:2,-18.5,-34,0,0,-0.0757227 -56078,5301:248:1,-18,-34,0,0,-0.0726939 -56079,5301:247:2,-17.5,-34,0,0,-0.0688768 -56080,5301:247:1,-17,-34,0,0,-0.0665134 -56081,5301:246:2,-16.5,-34,0,0,-0.0592288 -56082,5301:246:1,-16,-34,0,0,-0.0497345 -56083,5301:245:2,-15.5,-34,0,0,-0.0491499 -56084,5301:245:1,-15,-34,0,0,-0.0558161 -56085,5301:144:2,-14.5,-34,0,0,-0.061592 -56086,5301:144:1,-14,-34,0,0,-0.0988728 -56087,5301:143:2,-13.5,-34,0,0,-0.133848 -56088,5301:143:1,-13,-34,0,0,-0.13605 -56089,5301:142:2,-12.5,-34,0,0,-0.13605 -56090,5301:142:1,-12,-34,0,0,-0.132747 -56091,5301:141:2,-11.5,-34,0,0,-0.12346 -56092,5301:141:1,-11,-34,0,0,-0.116371 -56093,5301:140:2,-10.5,-34,0,0,-0.113567 -56094,5301:140:1,-10,-34,0,0,-0.111465 -56095,5300:249:2,-9.5,-34,0,0,-0.109353 -56096,5300:249:1,-9,-34,0,0,-0.103677 -56097,5300:248:2,-8.5,-34,0,0,-0.100667 -56098,5300:248:1,-8,-34,0,0,-0.0987293 -56099,5300:247:2,-7.5,-34,0,0,-0.10818 -56100,5300:247:1,-7,-34,0,0,-0.11122 -56101,5300:246:2,-6.5,-34,0,0,-0.109379 -56102,5300:246:1,-6,-34,0,0,-0.107678 -56103,5300:245:2,-5.5,-34,0,0,-0.105258 -56104,5300:245:1,-5,-34,0,0,-0.105387 -56105,5300:144:2,-4.5,-34,0,0,-0.105387 -56106,5300:144:1,-4,-34,0,0,-0.100986 -56107,5300:143:2,-3.5,-34,0,0,-0.100106 -56108,5300:143:1,-3,-34,0,0,-0.0986095 -56109,5300:142:2,-2.5,-34,0,0,-0.0952272 -56110,5300:142:1,-2,-34,0,0,-0.0917272 -56111,5300:141:2,-1.5,-34,0,0,-0.0889422 -56112,5300:141:1,-1,-34,0,0,-0.0921489 -56113,5300:140:2,-0.5,-34,0,0,-0.0957824 -56114,3300:140:2,0,-34,0,0,-0.0917941 -56115,3300:140:2,0.5,-34,0,0,-0.0926396 -56116,3300:141:1,1,-34,0,0,-0.0932677 -56117,3300:141:2,1.5,-34,0,0,-0.0898893 -56118,3300:142:1,2,-34,0,0,-0.0872687 -56119,3300:142:2,2.5,-34,0,0,-0.0855678 -56120,3300:143:1,3,-34,0,0,-0.0841846 -56121,3300:143:2,3.5,-34,0,0,-0.083502 -56122,3300:144:1,4,-34,0,0,-0.0830434 -56123,3300:144:2,4.5,-34,0,0,-0.0811595 -56124,3300:245:1,5,-34,0,0,-0.0759031 -56125,3300:245:2,5.5,-34,0,0,-0.0684069 -56126,3300:246:1,6,-34,0,0,-0.063114 -56127,3300:246:2,6.5,-34,0,0,-0.0608599 -56128,3300:247:1,7,-34,0,0,-0.0626122 -56129,3300:247:2,7.5,-34,0,0,-0.0641306 -56130,3300:248:1,8,-34,0,0,-0.0645999 -56131,3300:248:2,8.5,-34,0,0,-0.0640703 -56132,3300:249:1,9,-34,0,0,-0.0646453 -56133,3300:249:2,9.5,-34,0,0,-0.0695965 -56134,3301:140:1,10,-34,0,0,-0.0795864 -56135,3301:140:2,10.5,-34,0,0,-0.0805802 -56136,3301:141:1,11,-34,0,0,-0.0787557 -56137,3301:141:2,11.5,-34,0,0,-0.081101 -56138,3301:142:1,12,-34,0,0,-0.0858351 -56139,3301:142:2,12.5,-34,0,0,-0.0902361 -56140,3301:143:1,13,-34,0,0,-0.0886007 -56141,3301:143:2,13.5,-34,0,0,-0.0776195 -56142,3301:144:1,14,-34,0,0,-0.0745803 -56143,3301:144:2,14.5,-34,0,0,-0.0825092 -56144,3301:245:1,15,-34,0,0,-0.115087 -56145,3301:245:2,15.5,-34,0,0,-0.13605 -56146,3301:246:1,16,-34,0,0,-0.13605 -56147,3301:246:2,16.5,-34,0,0,-0.126126 -56148,3301:247:1,17,-34,0,0,-0.0847918 -56149,3301:247:2,17.5,-34,0,0,-0.132316 -56150,3301:248:1,18,-34,0,0,-0.13605 -56151,3301:248:2,18.5,-34,0,0,-0.13605 -56152,3301:249:1,19,-34,0,0,-0.13605 -56153,3301:249:2,19.5,-34,0,0,-0.136013 -56154,3302:140:1,20,-34,0,0,-0.125594 -56155,3302:140:2,20.5,-34,0,0,-0.13605 -56156,3302:141:1,21,-34,0,0,-0.13605 -56157,3302:141:2,21.5,-34,0,0,-0.13605 -56158,3302:142:1,22,-34,0,0,-0.13605 -56159,3302:142:2,22.5,-34,0,0,-0.13605 -56160,3302:143:1,23,-34,0,0,-0.13605 -56161,3302:143:2,23.5,-34,0,0,-0.13605 -56162,3302:144:1,24,-34,0,0,-0.13605 -56163,3302:144:2,24.5,-34,0,0,-0.130379 -56164,3302:245:1,25,-34,0,0,-0.0989212 -56165,3302:245:2,25.5,-34,0,0,-0.102471 -56166,3302:246:1,26,-34,0,0,-0.127167 -56167,3302:246:2,26.5,-34,0,0,-0.133514 -56168,3302:247:1,27,-34,0,0,-0.128249 -56169,3302:247:2,27.5,-34,0,0,-0.130672 -56170,3302:248:1,28,-34,0,0,-0.132747 -56171,3302:248:2,28.5,-34,0,0,-0.12491 -56172,3302:249:1,29,-34,0,0,-0.107757 -56173,3302:249:2,29.5,-34,0,0,-0.094379 -56174,3303:140:1,30,-34,0,0,-0.0898239 -56175,3303:140:2,30.5,-34,0,0,-0.0896301 -56176,3303:141:1,31,-34,0,0,-0.114889 -56177,3303:141:2,31.5,-34,0,0,-0.0831429 -56178,3303:142:1,32,-34,0,0,-0.068909 -56179,3303:142:2,32.5,-34,0,0,-0.0667017 -56180,3303:143:1,33,-34,0,0,-0.0642513 -56181,3303:143:2,33.5,-34,0,0,-0.0636051 -56182,3303:144:1,34,-34,0,0,-0.0663725 -56183,3303:144:2,34.5,-34,0,0,-0.0656263 -56184,3303:245:1,35,-34,0,0,-0.0656886 -56185,3303:245:2,35.5,-34,0,0,-0.0729008 -56186,3303:246:1,36,-34,0,0,-0.077269 -56187,3303:246:2,36.5,-34,0,0,-0.0703406 -56188,3303:247:1,37,-34,0,0,-0.0556728 -56189,3303:247:2,37.5,-34,0,0,-0.0535981 -56190,3303:248:1,38,-34,0,0,-0.0532127 -56191,3303:248:2,38.5,-34,0,0,-0.0578327 -56192,3303:249:1,39,-34,0,0,-0.0652413 -56193,3303:249:2,39.5,-34,0,0,-0.066891 -56194,3304:140:1,40,-34,0,0,-0.0676203 -56195,3304:140:2,40.5,-34,0,0,-0.0627298 -56196,3304:141:1,41,-34,0,0,-0.0599542 -56197,3304:141:2,41.5,-34,0,0,-0.0559856 -56198,3304:142:1,42,-34,0,0,-0.0522196 -56199,3304:142:2,42.5,-34,0,0,-0.0496768 -56200,3304:143:1,43,-34,0,0,-0.0460549 -56201,3304:143:2,43.5,-34,0,0,-0.043744 -56202,3304:144:1,44,-34,0,0,-0.0417837 -56203,3304:144:2,44.5,-34,0,0,-0.0395769 -56204,3304:245:1,45,-34,0,0,-0.0375079 -56205,3304:245:2,45.5,-34,0,0,-0.0354451 -56206,3304:246:1,46,-34,0,0,-0.0337917 -56207,3304:246:2,46.5,-34,0,0,-0.0321003 -56208,3304:247:1,47,-34,0,0,-0.0308945 -56209,3304:247:2,47.5,-34,0,0,-0.0316496 -56210,3304:248:1,48,-34,0,0,-0.0337992 -56211,3304:248:2,48.5,-34,0,0,-0.0353885 -56212,3304:249:1,49,-34,0,0,-0.0358449 -56213,3304:249:2,49.5,-34,0,0,-0.0371143 -56214,3305:140:1,50,-34,0,0,-0.0385455 -56215,3305:140:2,50.5,-34,0,0,-0.038466 -56216,3305:141:1,51,-34,0,0,-0.0388474 -56217,3305:141:2,51.5,-34,0,0,-0.0467522 -56218,3305:142:1,52,-34,0,0,-0.0702244 -56219,3305:142:2,52.5,-34,0,0,-0.082253 -56220,3305:143:1,53,-34,0,0,-0.13064 -56221,3305:143:2,53.5,-34,0,0,-0.13605 -56222,3305:144:1,54,-34,0,0,-0.13605 -56223,3305:144:2,54.5,-34,0,0,-0.13605 -56224,3305:245:1,55,-34,0,0,-0.13605 -56225,3305:245:2,55.5,-34,0,0,-0.12494 -56226,3305:246:1,56,-34,0,0,-0.0967379 -56227,3305:246:2,56.5,-34,0,0,-0.0939012 -56228,3305:247:1,57,-34,0,0,-0.105387 -56229,3305:247:2,57.5,-34,0,0,-0.115998 -56230,3305:248:1,58,-34,0,0,-0.111795 -56231,3305:248:2,58.5,-34,0,0,-0.115798 -56232,3305:249:1,59,-34,0,0,-0.128217 -56233,3305:249:2,59.5,-34,0,0,-0.13605 -56234,3306:140:1,60,-34,0,0,-0.13605 -56235,3306:140:2,60.5,-34,0,0,-0.13605 -56236,3306:141:1,61,-34,0,0,-0.13605 -56237,3306:141:2,61.5,-34,0,0,-0.13605 -56238,3306:142:1,62,-34,0,0,-0.13605 -56239,3306:142:2,62.5,-34,0,0,-0.131853 -56240,3306:143:1,63,-34,0,0,-0.117496 -56241,3306:143:2,63.5,-34,0,0,-0.124537 -56242,3306:144:1,64,-34,0,0,-0.13605 -56243,3306:144:2,64.5,-34,0,0,-0.13605 -56244,3306:245:1,65,-34,0,0,-0.13605 -56245,3306:245:2,65.5,-34,0,0,-0.13605 -56246,3306:246:1,66,-34,0,0,-0.13605 -56247,3306:246:2,66.5,-34,0,0,-0.0803492 -56248,3306:247:1,67,-34,0,0,-0.100569 -56249,3306:247:2,67.5,-34,0,0,-0.12889 -56250,3306:248:1,68,-34,0,0,-0.13605 -56251,3306:248:2,68.5,-34,0,0,-0.13605 -56252,3306:249:1,69,-34,0,0,-0.13605 -56253,3306:249:2,69.5,-34,0,0,-0.13605 -56254,3307:140:1,70,-34,0,0,-0.13605 -56255,3307:140:2,70.5,-34,0,0,-0.13605 -56256,3307:141:1,71,-34,0,0,-0.13605 -56257,3307:141:2,71.5,-34,0,0,-0.116428 -56258,3307:142:1,72,-34,0,0,-0.105387 -56259,3307:142:2,72.5,-34,0,0,-0.110947 -56260,3307:143:2,73.5,-34,0,0,-0.123736 -56261,3307:144:1,74,-34,0,0,-0.126788 -56262,3307:144:2,74.5,-34,0,0,-0.121065 -56263,3307:245:1,75,-34,0,0,-0.118722 -56264,3307:245:2,75.5,-34,0,0,-0.118839 -56265,3307:246:1,76,-34,0,0,-0.121817 -56266,3307:246:2,76.5,-34,0,0,-0.128154 -56267,3307:247:1,77,-34,0,0,-0.134622 -56268,3307:247:2,77.5,-34,0,0,-0.13605 -56269,3307:248:1,78,-34,0,0,-0.13605 -56270,3307:248:2,78.5,-34,0,0,-0.135298 -56271,3307:249:1,79,-34,0,0,-0.12547 -56272,3307:249:2,79.5,-34,0,0,-0.118663 -56273,3308:140:1,80,-34,0,0,-0.116055 -56274,3308:140:2,80.5,-34,0,0,-0.114634 -56275,3308:141:1,81,-34,0,0,-0.115485 -56276,3308:141:2,81.5,-34,0,0,-0.119784 -56277,3308:142:1,82,-34,0,0,-0.123675 -56278,3308:142:2,82.5,-34,0,0,-0.123798 -56279,3308:143:1,83,-34,0,0,-0.119812 -56280,3308:143:2,83.5,-34,0,0,-0.115002 -56281,3308:144:1,84,-34,0,0,-0.115087 -56282,3308:144:2,84.5,-34,0,0,-0.116917 -56283,3308:245:1,85,-34,0,0,-0.119724 -56284,3308:245:2,85.5,-34,0,0,-0.119251 -56285,3308:246:1,86,-34,0,0,-0.1164 -56286,3308:246:2,86.5,-34,0,0,-0.108366 -56287,3308:247:1,87,-34,0,0,-0.0980132 -56288,3308:247:2,87.5,-34,0,0,-0.0801388 -56289,3308:248:1,88,-34,0,0,-0.0755072 -56290,3308:248:2,88.5,-34,0,0,-0.0785869 -56291,3308:249:1,89,-34,0,0,-0.0816064 -56292,3308:249:2,89.5,-34,0,0,-0.0851792 -56293,3309:140:1,90,-34,0,0,-0.0893067 -56294,3309:140:2,90.5,-34,0,0,-0.091044 -56295,3309:141:1,91,-34,0,0,-0.0896946 -56296,3309:141:2,91.5,-34,0,0,-0.083502 -56297,3309:142:1,92,-34,0,0,-0.0743149 -56298,3309:142:2,92.5,-34,0,0,-0.067748 -56299,3309:143:1,93,-34,0,0,-0.065952 -56300,3309:143:2,93.5,-34,0,0,-0.0656263 -56301,3309:144:1,94,-34,0,0,-0.0654723 -56302,3309:144:2,94.5,-34,0,0,-0.0656574 -56303,3309:245:1,95,-34,0,0,-0.0667333 -56304,3309:245:2,95.5,-34,0,0,-0.0682455 -56305,3309:246:1,96,-34,0,0,-0.0686008 -56306,3309:246:2,96.5,-34,0,0,-0.0666235 -56307,3309:247:1,97,-34,0,0,-0.0712787 -56308,3309:247:2,97.5,-34,0,0,-0.074864 -56309,3309:248:1,98,-34,0,0,-0.0714137 -56310,3309:248:2,98.5,-34,0,0,-0.0721107 -56311,3309:249:1,99,-34,0,0,-0.0935839 -56312,3309:249:2,99.5,-34,0,0,-0.117293 -56313,3310:140:1,100,-34,0,0,-0.116256 -56314,3310:140:2,100.5,-34,0,0,-0.116486 -56315,3310:141:1,101,-34,0,0,-0.110349 -56316,3310:141:2,101.5,-34,0,0,-0.105799 -56317,3310:142:1,102,-34,0,0,-0.109058 -56318,3310:142:2,102.5,-34,0,0,-0.108339 -56319,3310:143:1,103,-34,0,0,-0.10637 -56320,3310:143:2,103.5,-34,0,0,-0.104566 -56321,3310:144:1,104,-34,0,0,-0.098801 -56322,3310:144:2,104.5,-34,0,0,-0.0875417 -56323,3310:245:1,105,-34,0,0,-0.0815677 -56324,3310:245:2,105.5,-34,0,0,-0.0869552 -56325,3310:246:1,106,-34,0,0,-0.0970195 -56326,3310:246:2,106.5,-34,0,0,-0.108366 -56327,3310:247:1,107,-34,0,0,-0.113763 -56328,3310:247:2,107.5,-34,0,0,-0.110621 -56329,3310:248:1,108,-34,0,0,-0.104286 -56330,3310:248:2,108.5,-34,0,0,-0.100301 -56331,3310:249:1,109,-34,0,0,-0.103551 -56332,3310:249:2,109.5,-34,0,0,-0.107916 -56333,3311:140:1,110,-34,0,0,-0.108445 -56334,3311:140:2,110.5,-34,0,0,-0.105567 -56335,3311:141:1,111,-34,0,0,-0.10185 -56336,3311:141:2,111.5,-34,0,0,-0.100544 -56337,3311:142:1,112,-34,0,0,-0.102098 -56338,3311:142:2,112.5,-34,0,0,-0.105335 -56339,3311:143:1,113,-34,0,0,-0.10549 -56340,3311:143:2,113.5,-34,0,0,-0.103804 -56341,3311:144:1,114,-34,0,0,-0.102446 -56342,3311:144:2,114.5,-34,0,0,-0.101158 -56343,3311:245:1,115,-34,0,0,-0.100496 -56344,3311:245:2,115.5,-34,0,0,-0.101899 -56345,3311:246:1,116,-34,0,0,-0.103223 -56346,3311:246:2,116.5,-34,0,0,-0.103324 -56347,3311:247:1,117,-34,0,0,-0.102947 -56348,3311:247:2,117.5,-34,0,0,-0.102522 -56349,3311:248:1,118,-34,0,0,-0.102223 -56350,3311:248:2,118.5,-34,0,0,-0.102796 -56351,3311:249:1,119,-34,0,0,-0.104337 -56352,3311:249:2,119.5,-34,0,0,-0.105618 -56353,3312:140:1,120,-34,0,0,-0.107048 -56354,3312:140:2,120.5,-34,0,0,-0.109621 -56355,3312:141:1,121,-34,0,0,-0.111602 -56356,3312:141:2,121.5,-34,0,0,-0.111274 -56357,3312:142:1,122,-34,0,0,-0.109112 -56358,3312:142:2,122.5,-34,0,0,-0.106969 -56359,3312:143:1,123,-34,0,0,-0.106343 -56360,3312:143:2,123.5,-34,0,0,-0.105541 -56361,3312:144:1,124,-34,0,0,-0.104643 -56362,3312:144:2,124.5,-34,0,0,-0.104924 -56363,3312:245:1,125,-34,0,0,-0.105954 -56364,3312:245:2,125.5,-34,0,0,-0.107022 -56365,3312:246:1,126,-34,0,0,-0.107336 -56366,3312:246:2,126.5,-34,0,0,-0.10624 -56367,3312:247:1,127,-34,0,0,-0.10637 -56368,3312:247:2,127.5,-34,0,0,-0.110674 -56369,3312:248:1,128,-34,0,0,-0.113651 -56370,3312:248:2,128.5,-34,0,0,-0.109379 -56371,3312:249:1,129,-34,0,0,-0.108552 -56372,3312:249:2,129.5,-34,0,0,-0.109836 -56373,3313:140:1,130,-34,0,0,-0.109755 -56374,3313:140:2,130.5,-34,0,0,-0.109648 -56375,3313:141:1,131,-34,0,0,-0.110674 -56376,3313:141:2,131.5,-34,0,0,-0.112289 -56377,3313:142:1,132,-34,0,0,-0.113791 -56378,3313:142:2,132.5,-34,0,0,-0.115087 -56379,3313:143:1,133,-34,0,0,-0.116084 -56380,3313:143:2,133.5,-34,0,0,-0.115371 -56381,3313:144:1,134,-34,0,0,-0.112566 -56382,3313:144:2,134.5,-34,0,0,-0.108845 -56383,3313:245:1,135,-34,0,0,-0.106343 -56384,3313:245:2,135.5,-34,0,0,-0.107942 -56385,3313:246:1,136,-34,0,0,-0.112511 -56386,3313:246:2,136.5,-34,0,0,-0.115684 -56387,3313:247:1,137,-34,0,0,-0.111712 -56388,3313:247:2,137.5,-34,0,0,-0.111165 -56389,3313:248:1,138,-34,0,0,-0.11686 -56390,3313:248:2,138.5,-34,0,0,-0.129116 -56391,3313:249:1,139,-34,0,0,-0.134251 -56392,3313:249:2,139.5,-34,0,0,-0.13605 -56393,3314:140:1,140,-34,0,0,-0.13605 -56394,3314:140:2,140.5,-34,0,0,-0.13605 -56395,3314:141:1,141,-34,0,0,-0.13605 -56396,3314:141:2,141.5,-34,0,0,-0.13605 -56397,3314:142:1,142,-34,0,0,-0.13605 -56398,3314:142:2,142.5,-34,0,0,-0.13605 -56399,3314:143:1,143,-34,0,0,-0.13605 -56400,3314:143:2,143.5,-34,0,0,-0.13605 -56401,3314:144:1,144,-34,0,0,-0.13605 -56402,3314:144:2,144.5,-34,0,0,-0.13605 -56403,3314:245:1,145,-34,0,0,-0.13605 -56404,3314:245:2,145.5,-34,0,0,-0.13605 -56405,3314:246:1,146,-34,0,0,-0.13605 -56406,3314:246:2,146.5,-34,0,0,-0.13605 -56407,3314:247:2,147.5,-34,0,0,-0.13605 -56408,3314:248:1,148,-34,0,0,-0.13605 -56409,3314:248:2,148.5,-34,0,0,-0.13605 -56410,3314:249:1,149,-34,0,0,-0.13605 -56411,3314:249:2,149.5,-34,0,0,-0.13605 -56412,3315:140:1,150,-34,0,0,-0.13605 -56413,3315:140:2,150.5,-34,0,0,-0.13605 -56414,3315:141:1,151,-34,0,0,-0.13605 -56415,3315:141:2,151.5,-34,0,0,-0.13605 -56416,3315:142:1,152,-34,0,0,-0.13605 -56417,3315:142:2,152.5,-34,0,0,-0.13605 -56418,3315:143:1,153,-34,0,0,-0.13605 -56419,3315:143:2,153.5,-34,0,0,-0.13605 -56420,3315:144:1,154,-34,0,0,-0.13605 -56421,3315:144:2,154.5,-34,0,0,-0.13605 -56422,3315:245:1,155,-34,0,0,-0.13605 -56423,3315:245:2,155.5,-34,0,0,-0.13605 -56424,3315:246:1,156,-34,0,0,-0.13605 -56425,3315:246:2,156.5,-34,0,0,-0.13605 -56426,3315:247:1,157,-34,0,0,-0.13605 -56427,3315:247:2,157.5,-34,0,0,-0.13605 -56428,3315:248:1,158,-34,0,0,-0.13605 -56429,3315:248:2,158.5,-34,0,0,-0.13605 -56430,3315:249:1,159,-34,0,0,-0.13605 -56431,3315:249:2,159.5,-34,0,0,-0.13605 -56432,3316:140:1,160,-34,0,0,-0.13605 -56433,3316:140:2,160.5,-34,0,0,-0.13605 -56434,3316:141:1,161,-34,0,0,-0.13605 -56435,3316:141:2,161.5,-34,0,0,-0.13605 -56436,3316:142:1,162,-34,0,0,-0.13605 -56437,3316:142:2,162.5,-34,0,0,-0.13605 -56438,3316:143:1,163,-34,0,0,-0.13605 -56439,3316:143:2,163.5,-34,0,0,-0.13605 -56440,3316:144:1,164,-34,0,0,-0.13605 -56441,3316:144:2,164.5,-34,0,0,-0.13605 -56442,3316:245:1,165,-34,0,0,-0.13605 -56443,3316:245:2,165.5,-34,0,0,-0.13605 -56444,3316:246:1,166,-34,0,0,-0.13605 -56445,3316:246:2,166.5,-34,0,0,-0.13605 -56446,3316:247:1,167,-34,0,0,-0.13605 -56447,3316:247:2,167.5,-34,0,0,-0.13605 -56448,3316:248:1,168,-34,0,0,-0.13605 -56449,3316:248:2,168.5,-34,0,0,-0.13605 -56450,3316:249:1,169,-34,0,0,-0.13605 -56451,3316:249:2,169.5,-34,0,0,-0.13605 -56452,3317:143:2,173.5,-34,0,0,-0.13605 -56453,3317:144:1,174,-34,0,0,-0.116745 -56454,3317:144:2,174.5,-34,0,0,-0.13605 -56455,3317:245:1,175,-34,0,0,-0.13605 -56456,3317:245:2,175.5,-34,0,0,-0.13605 -56457,3317:246:1,176,-34,0,0,-0.13605 -56458,3317:246:2,176.5,-34,0,0,-0.133279 -56459,3317:247:1,177,-34,0,0,-0.134723 -56460,3317:247:2,177.5,-34,0,0,-0.133814 -56461,3317:248:1,178,-34,0,0,-0.127357 -56462,3317:248:2,178.5,-34,0,0,-0.127167 -56463,3317:249:1,179,-34,0,0,-0.124569 -56464,3317:249:2,179.5,-34,0,0,-0.122241 -56465,3318:140:1,180,-34,0,0,-0.13605 -56466,5318:130:3,-180,-33.5,0,0,-0.13605 -56467,5317:239:4,-179.5,-33.5,0,0,-0.13605 -56468,5317:239:3,-179,-33.5,0,0,-0.13605 -56469,5317:238:4,-178.5,-33.5,0,0,-0.13605 -56470,5317:238:3,-178,-33.5,0,0,-0.13605 -56471,5317:237:4,-177.5,-33.5,0,0,-0.13605 -56472,5317:237:3,-177,-33.5,0,0,-0.13605 -56473,5317:236:4,-176.5,-33.5,0,0,-0.13605 -56474,5317:236:3,-176,-33.5,0,0,-0.13605 -56475,5317:235:4,-175.5,-33.5,0,0,-0.13605 -56476,5317:235:3,-175,-33.5,0,0,-0.13605 -56477,5317:134:4,-174.5,-33.5,0,0,-0.13605 -56478,5317:134:3,-174,-33.5,0,0,-0.13605 -56479,5317:133:4,-173.5,-33.5,0,0,-0.13605 -56480,5317:133:3,-173,-33.5,0,0,-0.13605 -56481,5317:132:4,-172.5,-33.5,0,0,-0.13605 -56482,5317:132:3,-172,-33.5,0,0,-0.13605 -56483,5317:131:4,-171.5,-33.5,0,0,-0.13605 -56484,5317:131:3,-171,-33.5,0,0,-0.13605 -56485,5317:130:4,-170.5,-33.5,0,0,-0.13605 -56486,5317:130:3,-170,-33.5,0,0,-0.13605 -56487,5316:239:4,-169.5,-33.5,0,0,-0.13605 -56488,5316:239:3,-169,-33.5,0,0,-0.13605 -56489,5316:238:4,-168.5,-33.5,0,0,-0.13605 -56490,5316:238:3,-168,-33.5,0,0,-0.13605 -56491,5316:237:4,-167.5,-33.5,0,0,-0.13605 -56492,5316:237:3,-167,-33.5,0,0,-0.13605 -56493,5316:236:4,-166.5,-33.5,0,0,-0.13605 -56494,5316:236:3,-166,-33.5,0,0,-0.13605 -56495,5316:235:4,-165.5,-33.5,0,0,-0.13605 -56496,5316:235:3,-165,-33.5,0,0,-0.13605 -56497,5316:134:4,-164.5,-33.5,0,0,-0.13605 -56498,5316:134:3,-164,-33.5,0,0,-0.13605 -56499,5316:133:4,-163.5,-33.5,0,0,-0.13605 -56500,5316:133:3,-163,-33.5,0,0,-0.13605 -56501,5316:132:4,-162.5,-33.5,0,0,-0.13605 -56502,5316:132:3,-162,-33.5,0,0,-0.13605 -56503,5316:131:4,-161.5,-33.5,0,0,-0.13605 -56504,5316:131:3,-161,-33.5,0,0,-0.13605 -56505,5316:130:4,-160.5,-33.5,0,0,-0.13605 -56506,5316:130:3,-160,-33.5,0,0,-0.13605 -56507,5315:239:4,-159.5,-33.5,0,0,-0.13605 -56508,5315:239:3,-159,-33.5,0,0,-0.13605 -56509,5315:238:4,-158.5,-33.5,0,0,-0.13605 -56510,5315:238:3,-158,-33.5,0,0,-0.13605 -56511,5315:237:4,-157.5,-33.5,0,0,-0.13605 -56512,5315:237:3,-157,-33.5,0,0,-0.13605 -56513,5315:236:4,-156.5,-33.5,0,0,-0.13605 -56514,5315:236:3,-156,-33.5,0,0,-0.13605 -56515,5315:235:4,-155.5,-33.5,0,0,-0.13605 -56516,5315:235:3,-155,-33.5,0,0,-0.13605 -56517,5315:134:4,-154.5,-33.5,0,0,-0.13605 -56518,5315:134:3,-154,-33.5,0,0,-0.13605 -56519,5315:133:4,-153.5,-33.5,0,0,-0.13605 -56520,5315:133:3,-153,-33.5,0,0,-0.13605 -56521,5315:132:4,-152.5,-33.5,0,0,-0.13605 -56522,5315:132:3,-152,-33.5,0,0,-0.13605 -56523,5315:131:4,-151.5,-33.5,0,0,-0.13605 -56524,5315:131:3,-151,-33.5,0,0,-0.13605 -56525,5315:130:4,-150.5,-33.5,0,0,-0.13605 -56526,5315:130:3,-150,-33.5,0,0,-0.13605 -56527,5314:239:4,-149.5,-33.5,0,0,-0.13605 -56528,5314:239:3,-149,-33.5,0,0,-0.13605 -56529,5314:238:4,-148.5,-33.5,0,0,-0.13605 -56530,5314:238:3,-148,-33.5,0,0,-0.13605 -56531,5314:237:4,-147.5,-33.5,0,0,-0.13605 -56532,5314:237:3,-147,-33.5,0,0,-0.13605 -56533,5314:236:4,-146.5,-33.5,0,0,-0.13605 -56534,5314:236:3,-146,-33.5,0,0,-0.13605 -56535,5314:235:4,-145.5,-33.5,0,0,-0.13605 -56536,5314:235:3,-145,-33.5,0,0,-0.13605 -56537,5314:134:4,-144.5,-33.5,0,0,-0.13605 -56538,5314:134:3,-144,-33.5,0,0,-0.13605 -56539,5314:133:4,-143.5,-33.5,0,0,-0.13605 -56540,5314:133:3,-143,-33.5,0,0,-0.13605 -56541,5314:132:4,-142.5,-33.5,0,0,-0.13605 -56542,5314:132:3,-142,-33.5,0,0,-0.13605 -56543,5314:131:4,-141.5,-33.5,0,0,-0.13605 -56544,5314:131:3,-141,-33.5,0,0,-0.13605 -56545,5314:130:4,-140.5,-33.5,0,0,-0.13605 -56546,5314:130:3,-140,-33.5,0,0,-0.13605 -56547,5313:239:4,-139.5,-33.5,0,0,-0.13605 -56548,5313:239:3,-139,-33.5,0,0,-0.13605 -56549,5313:238:4,-138.5,-33.5,0,0,-0.13605 -56550,5313:238:3,-138,-33.5,0,0,-0.13605 -56551,5313:237:4,-137.5,-33.5,0,0,-0.13605 -56552,5313:237:3,-137,-33.5,0,0,-0.13605 -56553,5313:236:4,-136.5,-33.5,0,0,-0.13605 -56554,5313:236:3,-136,-33.5,0,0,-0.13605 -56555,5313:235:4,-135.5,-33.5,0,0,-0.13605 -56556,5313:235:3,-135,-33.5,0,0,-0.13605 -56557,5313:134:4,-134.5,-33.5,0,0,-0.13605 -56558,5313:134:3,-134,-33.5,0,0,-0.13605 -56559,5313:133:4,-133.5,-33.5,0,0,-0.13605 -56560,5313:133:3,-133,-33.5,0,0,-0.13605 -56561,5313:132:4,-132.5,-33.5,0,0,-0.13605 -56562,5313:132:3,-132,-33.5,0,0,-0.13605 -56563,5313:131:4,-131.5,-33.5,0,0,-0.13605 -56564,5313:131:3,-131,-33.5,0,0,-0.13605 -56565,5313:130:4,-130.5,-33.5,0,0,-0.13605 -56566,5313:130:3,-130,-33.5,0,0,-0.13605 -56567,5312:239:4,-129.5,-33.5,0,0,-0.13605 -56568,5312:239:3,-129,-33.5,0,0,-0.13605 -56569,5312:238:4,-128.5,-33.5,0,0,-0.13605 -56570,5312:238:3,-128,-33.5,0,0,-0.13605 -56571,5312:237:4,-127.5,-33.5,0,0,-0.13605 -56572,5312:237:3,-127,-33.5,0,0,-0.13605 -56573,5312:236:4,-126.5,-33.5,0,0,-0.13605 -56574,5312:236:3,-126,-33.5,0,0,-0.13605 -56575,5312:235:4,-125.5,-33.5,0,0,-0.13605 -56576,5312:235:3,-125,-33.5,0,0,-0.13605 -56577,5312:134:4,-124.5,-33.5,0,0,-0.13605 -56578,5312:134:3,-124,-33.5,0,0,-0.13605 -56579,5312:133:4,-123.5,-33.5,0,0,-0.13605 -56580,5312:133:3,-123,-33.5,0,0,-0.13605 -56581,5312:132:4,-122.5,-33.5,0,0,-0.13605 -56582,5312:132:3,-122,-33.5,0,0,-0.13605 -56583,5312:131:4,-121.5,-33.5,0,0,-0.13605 -56584,5312:131:3,-121,-33.5,0,0,-0.13605 -56585,5312:130:4,-120.5,-33.5,0,0,-0.13605 -56586,5312:130:3,-120,-33.5,0,0,-0.13605 -56587,5311:239:4,-119.5,-33.5,0,0,-0.13605 -56588,5311:239:3,-119,-33.5,0,0,-0.13605 -56589,5311:238:4,-118.5,-33.5,0,0,-0.13605 -56590,5311:238:3,-118,-33.5,0,0,-0.13605 -56591,5311:237:4,-117.5,-33.5,0,0,-0.13605 -56592,5311:237:3,-117,-33.5,0,0,-0.13605 -56593,5311:236:4,-116.5,-33.5,0,0,-0.13605 -56594,5311:236:3,-116,-33.5,0,0,-0.13605 -56595,5311:235:4,-115.5,-33.5,0,0,-0.13605 -56596,5311:235:3,-115,-33.5,0,0,-0.13605 -56597,5311:134:4,-114.5,-33.5,0,0,-0.13605 -56598,5311:134:3,-114,-33.5,0,0,-0.13605 -56599,5311:133:4,-113.5,-33.5,0,0,-0.13605 -56600,5311:133:3,-113,-33.5,0,0,-0.13605 -56601,5311:132:4,-112.5,-33.5,0,0,-0.13605 -56602,5311:132:3,-112,-33.5,0,0,-0.13605 -56603,5311:131:4,-111.5,-33.5,0,0,-0.13605 -56604,5311:131:3,-111,-33.5,0,0,-0.13605 -56605,5311:130:4,-110.5,-33.5,0,0,-0.13605 -56606,5311:130:3,-110,-33.5,0,0,-0.13605 -56607,5310:239:4,-109.5,-33.5,0,0,-0.13605 -56608,5310:239:3,-109,-33.5,0,0,-0.13605 -56609,5310:238:4,-108.5,-33.5,0,0,-0.13605 -56610,5310:238:3,-108,-33.5,0,0,-0.13605 -56611,5310:237:4,-107.5,-33.5,0,0,-0.135061 -56612,5310:237:3,-107,-33.5,0,0,-0.132415 -56613,5310:236:4,-106.5,-33.5,0,0,-0.130574 -56614,5310:236:3,-106,-33.5,0,0,-0.128473 -56615,5310:235:4,-105.5,-33.5,0,0,-0.125594 -56616,5310:235:3,-105,-33.5,0,0,-0.123001 -56617,5310:134:4,-104.5,-33.5,0,0,-0.123829 -56618,5310:134:3,-104,-33.5,0,0,-0.130803 -56619,5310:133:4,-103.5,-33.5,0,0,-0.135877 -56620,5310:133:3,-103,-33.5,0,0,-0.13605 -56621,5310:132:4,-102.5,-33.5,0,0,-0.13605 -56622,5310:132:3,-102,-33.5,0,0,-0.13605 -56623,5310:131:4,-101.5,-33.5,0,0,-0.136038 -56624,5310:131:3,-101,-33.5,0,0,-0.135401 -56625,5310:130:4,-100.5,-33.5,0,0,-0.131688 -56626,5310:130:3,-100,-33.5,0,0,-0.135921 -56627,5309:239:4,-99.5,-33.5,0,0,-0.136035 -56628,5309:239:3,-99,-33.5,0,0,-0.135706 -56629,5309:238:4,-98.5,-33.5,0,0,-0.132117 -56630,5309:238:3,-98,-33.5,0,0,-0.128313 -56631,5309:237:4,-97.5,-33.5,0,0,-0.125876 -56632,5309:237:3,-97,-33.5,0,0,-0.12597 -56633,5309:236:4,-96.5,-33.5,0,0,-0.125252 -56634,5309:236:3,-96,-33.5,0,0,-0.135956 -56635,5309:235:4,-95.5,-33.5,0,0,-0.134352 -56636,5309:235:3,-95,-33.5,0,0,-0.129665 -56637,5309:134:4,-94.5,-33.5,0,0,-0.122484 -56638,5309:134:3,-94,-33.5,0,0,-0.118898 -56639,5309:133:4,-93.5,-33.5,0,0,-0.11686 -56640,5309:133:3,-93,-33.5,0,0,-0.121426 -56641,5309:132:4,-92.5,-33.5,0,0,-0.128442 -56642,5309:132:3,-92,-33.5,0,0,-0.129858 -56643,5309:131:4,-91.5,-33.5,0,0,-0.122393 -56644,5309:131:3,-91,-33.5,0,0,-0.114973 -56645,5309:130:4,-90.5,-33.5,0,0,-0.117149 -56646,5309:130:3,-90,-33.5,0,0,-0.128089 -56647,5308:239:4,-89.5,-33.5,0,0,-0.130379 -56648,5308:239:3,-89,-33.5,0,0,-0.125657 -56649,5308:238:4,-88.5,-33.5,0,0,-0.121666 -56650,5308:238:3,-88,-33.5,0,0,-0.120348 -56651,5308:237:4,-87.5,-33.5,0,0,-0.12011 -56652,5308:237:3,-87,-33.5,0,0,-0.119074 -56653,5308:236:4,-86.5,-33.5,0,0,-0.11557 -56654,5308:236:3,-86,-33.5,0,0,-0.118253 -56655,5308:235:4,-85.5,-33.5,0,0,-0.119784 -56656,5308:235:3,-85,-33.5,0,0,-0.120228 -56657,5308:134:4,-84.5,-33.5,0,0,-0.12215 -56658,5308:134:3,-84,-33.5,0,0,-0.124661 -56659,5308:133:4,-83.5,-33.5,0,0,-0.120676 -56660,5308:133:3,-83,-33.5,0,0,-0.112677 -56661,5308:132:4,-82.5,-33.5,0,0,-0.117322 -56662,5308:132:3,-82,-33.5,0,0,-0.117033 -56663,5308:131:4,-81.5,-33.5,0,0,-0.113595 -56664,5308:131:3,-81,-33.5,0,0,-0.115059 -56665,5308:130:4,-80.5,-33.5,0,0,-0.115059 -56666,5308:130:3,-80,-33.5,0,0,-0.115627 -56667,5307:239:4,-79.5,-33.5,0,0,-0.116745 -56668,5307:239:3,-79,-33.5,0,0,-0.118809 -56669,5307:238:4,-78.5,-33.5,0,0,-0.119487 -56670,5307:238:3,-78,-33.5,0,0,-0.119576 -56671,5307:237:4,-77.5,-33.5,0,0,-0.12291 -56672,5307:237:3,-77,-33.5,0,0,-0.122301 -56673,5307:236:4,-76.5,-33.5,0,0,-0.119694 -56674,5307:236:3,-76,-33.5,0,0,-0.121485 -56675,5307:235:4,-75.5,-33.5,0,0,-0.129729 -56676,5307:235:3,-75,-33.5,0,0,-0.13064 -56677,5307:134:4,-74.5,-33.5,0,0,-0.131788 -56678,5307:133:4,-73.5,-33.5,0,0,-0.13605 -56679,5307:133:3,-73,-33.5,0,0,-0.13605 -56680,5306:134:4,-64.5,-33.5,0,0,-0.13605 -56681,5306:134:3,-64,-33.5,0,0,-0.13605 -56682,5306:133:4,-63.5,-33.5,0,0,-0.13605 -56683,5306:133:3,-63,-33.5,0,0,-0.13605 -56684,5306:132:4,-62.5,-33.5,0,0,-0.13605 -56685,5306:132:3,-62,-33.5,0,0,-0.13605 -56686,5306:131:4,-61.5,-33.5,0,0,-0.13605 -56687,5306:131:3,-61,-33.5,0,0,-0.13605 -56688,5306:130:4,-60.5,-33.5,0,0,-0.13605 -56689,5306:130:3,-60,-33.5,0,0,-0.13605 -56690,5305:239:4,-59.5,-33.5,0,0,-0.13605 -56691,5305:239:3,-59,-33.5,0,0,-0.117236 -56692,5305:238:4,-58.5,-33.5,0,0,-0.0885155 -56693,5305:238:3,-58,-33.5,0,0,-0.0942649 -56694,5305:237:4,-57.5,-33.5,0,0,-0.132448 -56695,5305:237:3,-57,-33.5,0,0,-0.13605 -56696,5305:236:4,-56.5,-33.5,0,0,-0.13605 -56697,5305:236:3,-56,-33.5,0,0,-0.13605 -56698,5305:235:4,-55.5,-33.5,0,0,-0.13605 -56699,5305:235:3,-55,-33.5,0,0,-0.13605 -56700,5305:134:4,-54.5,-33.5,0,0,-0.13605 -56701,5305:134:3,-54,-33.5,0,0,-0.13605 -56702,5305:133:4,-53.5,-33.5,0,0,-0.13605 -56703,5305:133:3,-53,-33.5,0,0,-0.13605 -56704,5305:132:4,-52.5,-33.5,0,0,-0.13605 -56705,5305:132:3,-52,-33.5,0,0,-0.13605 -56706,5305:131:4,-51.5,-33.5,0,0,-0.13605 -56707,5305:131:3,-51,-33.5,0,0,-0.13605 -56708,5305:130:4,-50.5,-33.5,0,0,-0.13605 -56709,5305:130:3,-50,-33.5,0,0,-0.13605 -56710,5304:239:4,-49.5,-33.5,0,0,-0.13605 -56711,5304:239:3,-49,-33.5,0,0,-0.13605 -56712,5304:238:4,-48.5,-33.5,0,0,-0.13605 -56713,5304:238:3,-48,-33.5,0,0,-0.13605 -56714,5304:237:4,-47.5,-33.5,0,0,-0.135333 -56715,5304:237:3,-47,-33.5,0,0,-0.12947 -56716,5304:236:4,-46.5,-33.5,0,0,-0.123276 -56717,5304:236:3,-46,-33.5,0,0,-0.118341 -56718,5304:235:4,-45.5,-33.5,0,0,-0.121666 -56719,5304:235:3,-45,-33.5,0,0,-0.126535 -56720,5304:134:4,-44.5,-33.5,0,0,-0.126599 -56721,5304:134:3,-44,-33.5,0,0,-0.13268 -56722,5304:133:4,-43.5,-33.5,0,0,-0.135604 -56723,5304:133:3,-43,-33.5,0,0,-0.130999 -56724,5304:132:4,-42.5,-33.5,0,0,-0.123552 -56725,5304:132:3,-42,-33.5,0,0,-0.114437 -56726,5304:131:4,-41.5,-33.5,0,0,-0.104159 -56727,5304:131:3,-41,-33.5,0,0,-0.0964337 -56728,5304:130:4,-40.5,-33.5,0,0,-0.101133 -56729,5304:130:3,-40,-33.5,0,0,-0.103349 -56730,5303:239:4,-39.5,-33.5,0,0,-0.097633 -56731,5303:239:3,-39,-33.5,0,0,-0.090258 -56732,5303:238:4,-38.5,-33.5,0,0,-0.0849955 -56733,5303:238:3,-38,-33.5,0,0,-0.0823708 -56734,5303:237:4,-37.5,-33.5,0,0,-0.0794157 -56735,5303:237:3,-37,-33.5,0,0,-0.0818406 -56736,5303:236:4,-36.5,-33.5,0,0,-0.0886215 -56737,5303:236:3,-36,-33.5,0,0,-0.094356 -56738,5303:235:4,-35.5,-33.5,0,0,-0.0967616 -56739,5303:235:3,-35,-33.5,0,0,-0.0961078 -56740,5303:134:4,-34.5,-33.5,0,0,-0.0907591 -56741,5303:134:3,-34,-33.5,0,0,-0.0839228 -56742,5303:133:4,-33.5,-33.5,0,0,-0.0853426 -56743,5303:133:3,-33,-33.5,0,0,-0.098897 -56744,5303:132:4,-32.5,-33.5,0,0,-0.101775 -56745,5303:132:3,-32,-33.5,0,0,-0.102471 -56746,5303:131:4,-31.5,-33.5,0,0,-0.116227 -56747,5303:131:3,-31,-33.5,0,0,-0.129567 -56748,5303:130:4,-30.5,-33.5,0,0,-0.126725 -56749,5303:130:3,-30,-33.5,0,0,-0.115855 -56750,5302:239:4,-29.5,-33.5,0,0,-0.10611 -56751,5302:239:3,-29,-33.5,0,0,-0.102322 -56752,5302:238:4,-28.5,-33.5,0,0,-0.103022 -56753,5302:238:3,-28,-33.5,0,0,-0.109998 -56754,5302:237:4,-27.5,-33.5,0,0,-0.124414 -56755,5302:237:3,-27,-33.5,0,0,-0.124631 -56756,5302:236:4,-26.5,-33.5,0,0,-0.114522 -56757,5302:236:3,-26,-33.5,0,0,-0.0980604 -56758,5302:235:4,-25.5,-33.5,0,0,-0.0978943 -56759,5302:235:3,-25,-33.5,0,0,-0.112262 -56760,5302:134:4,-24.5,-33.5,0,0,-0.13605 -56761,5302:134:3,-24,-33.5,0,0,-0.13605 -56762,5302:133:4,-23.5,-33.5,0,0,-0.13605 -56763,5302:133:3,-23,-33.5,0,0,-0.13605 -56764,5302:132:4,-22.5,-33.5,0,0,-0.130281 -56765,5302:132:3,-22,-33.5,0,0,-0.11931 -56766,5302:131:4,-21.5,-33.5,0,0,-0.111602 -56767,5302:131:3,-21,-33.5,0,0,-0.110647 -56768,5302:130:4,-20.5,-33.5,0,0,-0.103778 -56769,5302:130:3,-20,-33.5,0,0,-0.0960375 -56770,5301:239:4,-19.5,-33.5,0,0,-0.0857942 -56771,5301:239:3,-19,-33.5,0,0,-0.0774905 -56772,5301:238:4,-18.5,-33.5,0,0,-0.0742095 -56773,5301:238:3,-18,-33.5,0,0,-0.0707913 -56774,5301:237:4,-17.5,-33.5,0,0,-0.0682617 -56775,5301:237:3,-17,-33.5,0,0,-0.0658587 -56776,5301:236:4,-16.5,-33.5,0,0,-0.0596044 -56777,5301:236:3,-16,-33.5,0,0,-0.0527444 -56778,5301:235:4,-15.5,-33.5,0,0,-0.0538106 -56779,5301:235:3,-15,-33.5,0,0,-0.0597998 -56780,5301:134:4,-14.5,-33.5,0,0,-0.092796 -56781,5301:134:3,-14,-33.5,0,0,-0.13605 -56782,5301:133:4,-13.5,-33.5,0,0,-0.13605 -56783,5301:133:3,-13,-33.5,0,0,-0.13605 -56784,5301:132:4,-12.5,-33.5,0,0,-0.135972 -56785,5301:132:3,-12,-33.5,0,0,-0.116428 -56786,5301:131:4,-11.5,-33.5,0,0,-0.112069 -56787,5301:131:3,-11,-33.5,0,0,-0.110647 -56788,5301:130:4,-10.5,-33.5,0,0,-0.109594 -56789,5301:130:3,-10,-33.5,0,0,-0.10981 -56790,5300:239:4,-9.5,-33.5,0,0,-0.108445 -56791,5300:239:3,-9,-33.5,0,0,-0.102048 -56792,5300:238:4,-8.5,-33.5,0,0,-0.0952504 -56793,5300:238:3,-8,-33.5,0,0,-0.0934708 -56794,5300:237:4,-7.5,-33.5,0,0,-0.108951 -56795,5300:237:3,-7,-33.5,0,0,-0.121817 -56796,5300:236:4,-6.5,-33.5,0,0,-0.120915 -56797,5300:236:3,-6,-33.5,0,0,-0.112732 -56798,5300:235:4,-5.5,-33.5,0,0,-0.105027 -56799,5300:235:3,-5,-33.5,0,0,-0.101306 -56800,5300:134:4,-4.5,-33.5,0,0,-0.098993 -56801,5300:134:3,-4,-33.5,0,0,-0.0980604 -56802,5300:133:4,-3.5,-33.5,0,0,-0.0986811 -56803,5300:133:3,-3,-33.5,0,0,-0.0985138 -56804,5300:132:4,-2.5,-33.5,0,0,-0.0973027 -56805,5300:132:3,-2,-33.5,0,0,-0.0957357 -56806,5300:131:4,-1.5,-33.5,0,0,-0.094128 -56807,5300:131:3,-1,-33.5,0,0,-0.0956431 -56808,5300:130:4,-0.5,-33.5,0,0,-0.100301 -56809,3300:130:4,0,-33.5,0,0,-0.0965043 -56810,3300:130:4,0.5,-33.5,0,0,-0.0941968 -56811,3300:131:3,1,-33.5,0,0,-0.0965507 -56812,3300:131:4,1.5,-33.5,0,0,-0.0965043 -56813,3300:132:3,2,-33.5,0,0,-0.0909563 -56814,3300:132:4,2.5,-33.5,0,0,-0.0862894 -56815,3300:133:3,3,-33.5,0,0,-0.0848936 -56816,3300:133:4,3.5,-33.5,0,0,-0.0834422 -56817,3300:134:3,4,-33.5,0,0,-0.0800432 -56818,3300:134:4,4.5,-33.5,0,0,-0.0764647 -56819,3300:235:3,5,-33.5,0,0,-0.0749351 -56820,3300:235:4,5.5,-33.5,0,0,-0.0759389 -56821,3300:236:3,6,-33.5,0,0,-0.0779898 -56822,3300:236:4,6.5,-33.5,0,0,-0.0799861 -56823,3300:237:3,7,-33.5,0,0,-0.0824893 -56824,3300:237:4,7.5,-33.5,0,0,-0.0840837 -56825,3300:238:3,8,-33.5,0,0,-0.0821936 -56826,3300:238:4,8.5,-33.5,0,0,-0.0762829 -56827,3300:239:3,9,-33.5,0,0,-0.0703406 -56828,3300:239:4,9.5,-33.5,0,0,-0.0692027 -56829,3301:130:3,10,-33.5,0,0,-0.0714648 -56830,3301:130:4,10.5,-33.5,0,0,-0.078793 -56831,3301:131:3,11,-33.5,0,0,-0.083983 -56832,3301:131:4,11.5,-33.5,0,0,-0.0858149 -56833,3301:132:3,12,-33.5,0,0,-0.0899977 -56834,3301:132:4,12.5,-33.5,0,0,-0.0929534 -56835,3301:133:3,13,-33.5,0,0,-0.098993 -56836,3301:133:4,13.5,-33.5,0,0,-0.0998628 -56837,3301:134:3,14,-33.5,0,0,-0.101924 -56838,3301:134:4,14.5,-33.5,0,0,-0.128409 -56839,3301:235:3,15,-33.5,0,0,-0.13605 -56840,3301:235:4,15.5,-33.5,0,0,-0.13605 -56841,3301:236:3,16,-33.5,0,0,-0.13605 -56842,3301:236:4,16.5,-33.5,0,0,-0.13605 -56843,3301:237:3,17,-33.5,0,0,-0.107468 -56844,3301:237:4,17.5,-33.5,0,0,-0.13605 -56845,3301:238:3,18,-33.5,0,0,-0.13605 -56846,3301:238:4,18.5,-33.5,0,0,-0.13605 -56847,3301:239:3,19,-33.5,0,0,-0.13605 -56848,3301:239:4,19.5,-33.5,0,0,-0.13605 -56849,3302:130:3,20,-33.5,0,0,-0.13605 -56850,3302:130:4,20.5,-33.5,0,0,-0.13605 -56851,3302:131:3,21,-33.5,0,0,-0.13605 -56852,3302:131:4,21.5,-33.5,0,0,-0.13605 -56853,3302:132:3,22,-33.5,0,0,-0.13605 -56854,3302:132:4,22.5,-33.5,0,0,-0.13605 -56855,3302:133:3,23,-33.5,0,0,-0.13605 -56856,3302:133:4,23.5,-33.5,0,0,-0.13605 -56857,3302:134:3,24,-33.5,0,0,-0.13605 -56858,3302:134:4,24.5,-33.5,0,0,-0.129212 -56859,3302:235:3,25,-33.5,0,0,-0.107258 -56860,3302:235:4,25.5,-33.5,0,0,-0.0979182 -56861,3302:236:3,26,-33.5,0,0,-0.113791 -56862,3302:236:4,26.5,-33.5,0,0,-0.122301 -56863,3302:237:3,27,-33.5,0,0,-0.13605 -56864,3302:237:4,27.5,-33.5,0,0,-0.13605 -56865,3302:238:3,28,-33.5,0,0,-0.118224 -56866,3302:238:4,28.5,-33.5,0,0,-0.113791 -56867,3302:239:3,29,-33.5,0,0,-0.109192 -56868,3302:239:4,29.5,-33.5,0,0,-0.100544 -56869,3303:130:3,30,-33.5,0,0,-0.0981083 -56870,3303:130:4,30.5,-33.5,0,0,-0.0975623 -56871,3303:131:3,31,-33.5,0,0,-0.118107 -56872,3303:131:4,31.5,-33.5,0,0,-0.127516 -56873,3303:132:3,32,-33.5,0,0,-0.0890278 -56874,3303:132:4,32.5,-33.5,0,0,-0.0748998 -56875,3303:133:3,33,-33.5,0,0,-0.0762105 -56876,3303:133:4,33.5,-33.5,0,0,-0.0813147 -56877,3303:134:3,34,-33.5,0,0,-0.0887074 -56878,3303:134:4,34.5,-33.5,0,0,-0.0939462 -56879,3303:235:3,35,-33.5,0,0,-0.0915727 -56880,3303:235:4,35.5,-33.5,0,0,-0.0800816 -56881,3303:236:3,36,-33.5,0,0,-0.073526 -56882,3303:236:4,36.5,-33.5,0,0,-0.0794342 -56883,3303:237:3,37,-33.5,0,0,-0.0940149 -56884,3303:237:4,37.5,-33.5,0,0,-0.097279 -56885,3303:238:3,38,-33.5,0,0,-0.0878794 -56886,3303:238:4,38.5,-33.5,0,0,-0.0706907 -56887,3303:239:3,39,-33.5,0,0,-0.0611173 -56888,3303:239:4,39.5,-33.5,0,0,-0.0624947 -56889,3304:130:3,40,-33.5,0,0,-0.0685035 -56890,3304:130:4,40.5,-33.5,0,0,-0.066404 -56891,3304:131:3,41,-33.5,0,0,-0.0644332 -56892,3304:131:4,41.5,-33.5,0,0,-0.0621145 -56893,3304:132:3,42,-33.5,0,0,-0.0610457 -56894,3304:132:4,42.5,-33.5,0,0,-0.0617513 -56895,3304:133:3,43,-33.5,0,0,-0.063025 -56896,3304:133:4,43.5,-33.5,0,0,-0.0599962 -56897,3304:134:3,44,-33.5,0,0,-0.0526587 -56898,3304:134:4,44.5,-33.5,0,0,-0.0489677 -56899,3304:235:3,45,-33.5,0,0,-0.047769 -56900,3304:235:4,45.5,-33.5,0,0,-0.0471104 -56901,3304:236:3,46,-33.5,0,0,-0.047143 -56902,3304:236:4,46.5,-33.5,0,0,-0.047913 -56903,3304:237:3,47,-33.5,0,0,-0.050502 -56904,3304:237:4,47.5,-33.5,0,0,-0.0539864 -56905,3304:238:3,48,-33.5,0,0,-0.0513653 -56906,3304:238:4,48.5,-33.5,0,0,-0.0425311 -56907,3304:239:3,49,-33.5,0,0,-0.037285 -56908,3304:239:4,49.5,-33.5,0,0,-0.0370296 -56909,3305:130:3,50,-33.5,0,0,-0.0379577 -56910,3305:130:4,50.5,-33.5,0,0,-0.0393231 -56911,3305:131:3,51,-33.5,0,0,-0.0422186 -56912,3305:131:4,51.5,-33.5,0,0,-0.0699594 -56913,3305:132:3,52,-33.5,0,0,-0.0993304 -56914,3305:132:4,52.5,-33.5,0,0,-0.123706 -56915,3305:133:3,53,-33.5,0,0,-0.135333 -56916,3305:133:4,53.5,-33.5,0,0,-0.135893 -56917,3305:134:3,54,-33.5,0,0,-0.133915 -56918,3305:134:4,54.5,-33.5,0,0,-0.135948 -56919,3305:235:3,55,-33.5,0,0,-0.135537 -56920,3305:235:4,55.5,-33.5,0,0,-0.112705 -56921,3305:236:3,56,-33.5,0,0,-0.102671 -56922,3305:236:4,56.5,-33.5,0,0,-0.111739 -56923,3305:237:3,57,-33.5,0,0,-0.112262 -56924,3305:237:4,57.5,-33.5,0,0,-0.114663 -56925,3305:238:3,58,-33.5,0,0,-0.112622 -56926,3305:238:4,58.5,-33.5,0,0,-0.11326 -56927,3305:239:3,59,-33.5,0,0,-0.128313 -56928,3305:239:4,59.5,-33.5,0,0,-0.13605 -56929,3306:130:3,60,-33.5,0,0,-0.13605 -56930,3306:130:4,60.5,-33.5,0,0,-0.13605 -56931,3306:131:3,61,-33.5,0,0,-0.13605 -56932,3306:131:4,61.5,-33.5,0,0,-0.13605 -56933,3306:132:3,62,-33.5,0,0,-0.13605 -56934,3306:132:4,62.5,-33.5,0,0,-0.13605 -56935,3306:133:3,63,-33.5,0,0,-0.13605 -56936,3306:133:4,63.5,-33.5,0,0,-0.13605 -56937,3306:134:3,64,-33.5,0,0,-0.13605 -56938,3306:134:4,64.5,-33.5,0,0,-0.13605 -56939,3306:235:3,65,-33.5,0,0,-0.13605 -56940,3306:235:4,65.5,-33.5,0,0,-0.13605 -56941,3306:236:3,66,-33.5,0,0,-0.13605 -56942,3306:236:4,66.5,-33.5,0,0,-0.0906504 -56943,3306:237:3,67,-33.5,0,0,-0.0946762 -56944,3306:237:4,67.5,-33.5,0,0,-0.103022 -56945,3306:238:3,68,-33.5,0,0,-0.13605 -56946,3306:238:4,68.5,-33.5,0,0,-0.13605 -56947,3306:239:3,69,-33.5,0,0,-0.13605 -56948,3306:239:4,69.5,-33.5,0,0,-0.13605 -56949,3307:130:3,70,-33.5,0,0,-0.13605 -56950,3307:130:4,70.5,-33.5,0,0,-0.13605 -56951,3307:131:3,71,-33.5,0,0,-0.13605 -56952,3307:131:4,71.5,-33.5,0,0,-0.13605 -56953,3307:132:3,72,-33.5,0,0,-0.13605 -56954,3307:132:4,72.5,-33.5,0,0,-0.135843 -56955,3307:133:4,73.5,-33.5,0,0,-0.134016 -56956,3307:134:3,74,-33.5,0,0,-0.135945 -56957,3307:134:4,74.5,-33.5,0,0,-0.130476 -56958,3307:235:3,75,-33.5,0,0,-0.133546 -56959,3307:235:4,75.5,-33.5,0,0,-0.13605 -56960,3307:236:3,76,-33.5,0,0,-0.13605 -56961,3307:236:4,76.5,-33.5,0,0,-0.13605 -56962,3307:237:3,77,-33.5,0,0,-0.13605 -56963,3307:237:4,77.5,-33.5,0,0,-0.13605 -56964,3307:238:3,78,-33.5,0,0,-0.135809 -56965,3307:238:4,78.5,-33.5,0,0,-0.119369 -56966,3307:239:3,79,-33.5,0,0,-0.118575 -56967,3307:239:4,79.5,-33.5,0,0,-0.120051 -56968,3308:130:3,80,-33.5,0,0,-0.121576 -56969,3308:130:4,80.5,-33.5,0,0,-0.124692 -56970,3308:131:3,81,-33.5,0,0,-0.135129 -56971,3308:131:4,81.5,-33.5,0,0,-0.13605 -56972,3308:132:3,82,-33.5,0,0,-0.13605 -56973,3308:132:4,82.5,-33.5,0,0,-0.13605 -56974,3308:133:3,83,-33.5,0,0,-0.13605 -56975,3308:133:4,83.5,-33.5,0,0,-0.135953 -56976,3308:134:3,84,-33.5,0,0,-0.130704 -56977,3308:134:4,84.5,-33.5,0,0,-0.127962 -56978,3308:235:3,85,-33.5,0,0,-0.117033 -56979,3308:235:4,85.5,-33.5,0,0,-0.115827 -56980,3308:236:3,86,-33.5,0,0,-0.115656 -56981,3308:236:4,86.5,-33.5,0,0,-0.109863 -56982,3308:237:3,87,-33.5,0,0,-0.103475 -56983,3308:237:4,87.5,-33.5,0,0,-0.0925277 -56984,3308:238:3,88,-33.5,0,0,-0.0868921 -56985,3308:238:4,88.5,-33.5,0,0,-0.0858149 -56986,3308:239:3,89,-33.5,0,0,-0.0878156 -56987,3308:239:4,89.5,-33.5,0,0,-0.0900407 -56988,3309:130:3,90,-33.5,0,0,-0.0938555 -56989,3309:130:4,90.5,-33.5,0,0,-0.0981555 -56990,3309:131:3,91,-33.5,0,0,-0.0990415 -56991,3309:131:4,91.5,-33.5,0,0,-0.0951583 -56992,3309:132:3,92,-33.5,0,0,-0.0858351 -56993,3309:132:4,92.5,-33.5,0,0,-0.0752029 -56994,3309:133:3,93,-33.5,0,0,-0.0709085 -56995,3309:133:4,93.5,-33.5,0,0,-0.0713297 -56996,3309:134:3,94,-33.5,0,0,-0.0741569 -56997,3309:134:4,94.5,-33.5,0,0,-0.0801003 -56998,3309:235:3,95,-33.5,0,0,-0.0894788 -56999,3309:235:4,95.5,-33.5,0,0,-0.0993304 -57000,3309:236:3,96,-33.5,0,0,-0.104032 -57001,3309:236:4,96.5,-33.5,0,0,-0.101232 -57002,3309:237:3,97,-33.5,0,0,-0.0912861 -57003,3309:237:4,97.5,-33.5,0,0,-0.0775823 -57004,3309:238:3,98,-33.5,0,0,-0.0743683 -57005,3309:238:4,98.5,-33.5,0,0,-0.0783063 -57006,3309:239:3,99,-33.5,0,0,-0.105515 -57007,3309:239:4,99.5,-33.5,0,0,-0.122727 -57008,3310:130:3,100,-33.5,0,0,-0.113959 -57009,3310:130:4,100.5,-33.5,0,0,-0.111165 -57010,3310:131:3,101,-33.5,0,0,-0.109728 -57011,3310:131:4,101.5,-33.5,0,0,-0.110674 -57012,3310:132:3,102,-33.5,0,0,-0.109567 -57013,3310:132:4,102.5,-33.5,0,0,-0.108075 -57014,3310:133:3,103,-33.5,0,0,-0.105722 -57015,3310:133:4,103.5,-33.5,0,0,-0.101701 -57016,3310:134:3,104,-33.5,0,0,-0.0955506 -57017,3310:134:4,104.5,-33.5,0,0,-0.0909563 -57018,3310:235:3,105,-33.5,0,0,-0.0918827 -57019,3310:235:4,105.5,-33.5,0,0,-0.0990172 -57020,3310:236:3,106,-33.5,0,0,-0.110702 -57021,3310:236:4,106.5,-33.5,0,0,-0.120318 -57022,3310:237:3,107,-33.5,0,0,-0.12212 -57023,3310:237:4,107.5,-33.5,0,0,-0.120199 -57024,3310:238:3,108,-33.5,0,0,-0.116142 -57025,3310:238:4,108.5,-33.5,0,0,-0.113316 -57026,3310:239:3,109,-33.5,0,0,-0.113567 -57027,3310:239:4,109.5,-33.5,0,0,-0.113931 -57028,3311:130:3,110,-33.5,0,0,-0.112262 -57029,3311:130:4,110.5,-33.5,0,0,-0.109326 -57030,3311:131:3,111,-33.5,0,0,-0.107573 -57031,3311:131:4,111.5,-33.5,0,0,-0.108791 -57032,3311:132:3,112,-33.5,0,0,-0.110838 -57033,3311:132:4,112.5,-33.5,0,0,-0.110512 -57034,3311:133:3,113,-33.5,0,0,-0.107757 -57035,3311:133:4,113.5,-33.5,0,0,-0.106474 -57036,3311:134:3,114,-33.5,0,0,-0.105954 -57037,3311:134:4,114.5,-33.5,0,0,-0.105747 -57038,3311:235:3,115,-33.5,0,0,-0.106396 -57039,3311:235:4,115.5,-33.5,0,0,-0.107599 -57040,3311:236:3,116,-33.5,0,0,-0.107837 -57041,3311:236:4,116.5,-33.5,0,0,-0.108605 -57042,3311:237:3,117,-33.5,0,0,-0.109406 -57043,3311:237:4,117.5,-33.5,0,0,-0.109594 -57044,3311:238:3,118,-33.5,0,0,-0.110566 -57045,3311:238:4,118.5,-33.5,0,0,-0.111959 -57046,3311:239:3,119,-33.5,0,0,-0.113177 -57047,3311:239:4,119.5,-33.5,0,0,-0.114973 -57048,3312:130:3,120,-33.5,0,0,-0.1184 -57049,3312:130:4,120.5,-33.5,0,0,-0.122241 -57050,3312:131:3,121,-33.5,0,0,-0.121787 -57051,3312:131:4,121.5,-33.5,0,0,-0.119961 -57052,3312:132:3,122,-33.5,0,0,-0.119369 -57053,3312:132:4,122.5,-33.5,0,0,-0.119074 -57054,3312:133:3,123,-33.5,0,0,-0.118663 -57055,3312:133:4,123.5,-33.5,0,0,-0.117729 -57056,3312:134:3,124,-33.5,0,0,-0.117149 -57057,3312:134:4,124.5,-33.5,0,0,-0.117004 -57058,3312:235:3,125,-33.5,0,0,-0.116084 -57059,3312:235:4,125.5,-33.5,0,0,-0.11424 -57060,3312:236:3,126,-33.5,0,0,-0.112179 -57061,3312:236:4,126.5,-33.5,0,0,-0.114381 -57062,3312:237:3,127,-33.5,0,0,-0.125939 -57063,3312:237:4,127.5,-33.5,0,0,-0.135891 -57064,3312:238:3,128,-33.5,0,0,-0.134487 -57065,3312:238:4,128.5,-33.5,0,0,-0.126662 -57066,3312:239:3,129,-33.5,0,0,-0.118165 -57067,3312:239:4,129.5,-33.5,0,0,-0.115884 -57068,3313:130:3,130,-33.5,0,0,-0.117033 -57069,3313:130:4,130.5,-33.5,0,0,-0.116975 -57070,3313:131:3,131,-33.5,0,0,-0.11663 -57071,3313:131:4,131.5,-33.5,0,0,-0.117991 -57072,3313:132:3,132,-33.5,0,0,-0.120169 -57073,3313:132:4,132.5,-33.5,0,0,-0.120735 -57074,3313:133:3,133,-33.5,0,0,-0.121216 -57075,3313:133:4,133.5,-33.5,0,0,-0.122362 -57076,3313:134:3,134,-33.5,0,0,-0.124816 -57077,3313:134:4,134.5,-33.5,0,0,-0.126284 -57078,3313:235:3,135,-33.5,0,0,-0.124569 -57079,3313:235:4,135.5,-33.5,0,0,-0.121336 -57080,3313:236:3,136,-33.5,0,0,-0.118898 -57081,3313:236:4,136.5,-33.5,0,0,-0.12008 -57082,3313:237:3,137,-33.5,0,0,-0.124075 -57083,3313:237:4,137.5,-33.5,0,0,-0.124044 -57084,3313:238:3,138,-33.5,0,0,-0.125408 -57085,3313:238:4,138.5,-33.5,0,0,-0.135639 -57086,3313:239:3,139,-33.5,0,0,-0.13605 -57087,3313:239:4,139.5,-33.5,0,0,-0.13605 -57088,3314:130:3,140,-33.5,0,0,-0.13605 -57089,3314:130:4,140.5,-33.5,0,0,-0.13605 -57090,3314:131:3,141,-33.5,0,0,-0.13605 -57091,3314:131:4,141.5,-33.5,0,0,-0.13605 -57092,3314:132:3,142,-33.5,0,0,-0.13605 -57093,3314:132:4,142.5,-33.5,0,0,-0.13605 -57094,3314:133:3,143,-33.5,0,0,-0.13605 -57095,3314:133:4,143.5,-33.5,0,0,-0.13605 -57096,3314:134:3,144,-33.5,0,0,-0.13605 -57097,3314:134:4,144.5,-33.5,0,0,-0.13605 -57098,3314:235:3,145,-33.5,0,0,-0.13605 -57099,3314:235:4,145.5,-33.5,0,0,-0.13605 -57100,3314:238:3,148,-33.5,0,0,-0.13605 -57101,3314:238:4,148.5,-33.5,0,0,-0.13605 -57102,3314:239:3,149,-33.5,0,0,-0.13605 -57103,3314:239:4,149.5,-33.5,0,0,-0.13605 -57104,3315:130:3,150,-33.5,0,0,-0.13605 -57105,3315:130:4,150.5,-33.5,0,0,-0.13605 -57106,3315:131:3,151,-33.5,0,0,-0.13605 -57107,3315:131:4,151.5,-33.5,0,0,-0.13605 -57108,3315:132:3,152,-33.5,0,0,-0.13605 -57109,3315:132:4,152.5,-33.5,0,0,-0.13605 -57110,3315:133:3,153,-33.5,0,0,-0.13605 -57111,3315:133:4,153.5,-33.5,0,0,-0.13605 -57112,3315:134:3,154,-33.5,0,0,-0.13605 -57113,3315:134:4,154.5,-33.5,0,0,-0.13605 -57114,3315:235:3,155,-33.5,0,0,-0.13605 -57115,3315:235:4,155.5,-33.5,0,0,-0.13605 -57116,3315:236:3,156,-33.5,0,0,-0.13605 -57117,3315:236:4,156.5,-33.5,0,0,-0.13605 -57118,3315:237:3,157,-33.5,0,0,-0.13605 -57119,3315:237:4,157.5,-33.5,0,0,-0.13605 -57120,3315:238:3,158,-33.5,0,0,-0.13605 -57121,3315:238:4,158.5,-33.5,0,0,-0.13605 -57122,3315:239:3,159,-33.5,0,0,-0.13605 -57123,3315:239:4,159.5,-33.5,0,0,-0.13605 -57124,3316:130:3,160,-33.5,0,0,-0.13605 -57125,3316:130:4,160.5,-33.5,0,0,-0.13605 -57126,3316:131:3,161,-33.5,0,0,-0.13605 -57127,3316:131:4,161.5,-33.5,0,0,-0.13605 -57128,3316:132:3,162,-33.5,0,0,-0.13605 -57129,3316:132:4,162.5,-33.5,0,0,-0.13605 -57130,3316:133:3,163,-33.5,0,0,-0.13605 -57131,3316:133:4,163.5,-33.5,0,0,-0.13605 -57132,3316:134:3,164,-33.5,0,0,-0.13605 -57133,3316:134:4,164.5,-33.5,0,0,-0.13605 -57134,3316:235:3,165,-33.5,0,0,-0.13605 -57135,3316:235:4,165.5,-33.5,0,0,-0.13605 -57136,3316:236:3,166,-33.5,0,0,-0.13605 -57137,3316:236:4,166.5,-33.5,0,0,-0.13605 -57138,3316:237:3,167,-33.5,0,0,-0.13605 -57139,3316:237:4,167.5,-33.5,0,0,-0.13605 -57140,3316:238:3,168,-33.5,0,0,-0.13605 -57141,3316:238:4,168.5,-33.5,0,0,-0.13605 -57142,3316:239:3,169,-33.5,0,0,-0.13605 -57143,3316:239:4,169.5,-33.5,0,0,-0.13605 -57144,3317:130:3,170,-33.5,0,0,-0.13605 -57145,3317:130:4,170.5,-33.5,0,0,-0.13605 -57146,3317:133:4,173.5,-33.5,0,0,-0.13605 -57147,3317:134:3,174,-33.5,0,0,-0.130541 -57148,3317:134:4,174.5,-33.5,0,0,-0.13605 -57149,3317:235:3,175,-33.5,0,0,-0.13605 -57150,3317:235:4,175.5,-33.5,0,0,-0.13605 -57151,3317:236:3,176,-33.5,0,0,-0.13605 -57152,3317:236:4,176.5,-33.5,0,0,-0.13605 -57153,3317:237:3,177,-33.5,0,0,-0.13605 -57154,3317:237:4,177.5,-33.5,0,0,-0.13605 -57155,3317:238:3,178,-33.5,0,0,-0.13605 -57156,3317:238:4,178.5,-33.5,0,0,-0.13605 -57157,3317:239:3,179,-33.5,0,0,-0.13605 -57158,3317:239:4,179.5,-33.5,0,0,-0.13605 -57159,3318:130:3,180,-33.5,0,0,-0.13605 -57160,5318:130:1,-180,-33,0,0,-0.13605 -57161,5317:239:2,-179.5,-33,0,0,-0.13605 -57162,5317:239:1,-179,-33,0,0,-0.13605 -57163,5317:238:2,-178.5,-33,0,0,-0.13605 -57164,5317:238:1,-178,-33,0,0,-0.13605 -57165,5317:237:2,-177.5,-33,0,0,-0.13605 -57166,5317:237:1,-177,-33,0,0,-0.13605 -57167,5317:236:2,-176.5,-33,0,0,-0.13605 -57168,5317:236:1,-176,-33,0,0,-0.13605 -57169,5317:235:2,-175.5,-33,0,0,-0.13605 -57170,5317:235:1,-175,-33,0,0,-0.13605 -57171,5317:134:2,-174.5,-33,0,0,-0.13605 -57172,5317:134:1,-174,-33,0,0,-0.13605 -57173,5317:133:2,-173.5,-33,0,0,-0.13605 -57174,5317:133:1,-173,-33,0,0,-0.13605 -57175,5317:132:2,-172.5,-33,0,0,-0.13605 -57176,5317:132:1,-172,-33,0,0,-0.13605 -57177,5317:131:2,-171.5,-33,0,0,-0.13605 -57178,5317:131:1,-171,-33,0,0,-0.13605 -57179,5317:130:2,-170.5,-33,0,0,-0.13605 -57180,5317:130:1,-170,-33,0,0,-0.13605 -57181,5316:239:2,-169.5,-33,0,0,-0.13605 -57182,5316:239:1,-169,-33,0,0,-0.13605 -57183,5316:238:2,-168.5,-33,0,0,-0.13605 -57184,5316:238:1,-168,-33,0,0,-0.13605 -57185,5316:237:2,-167.5,-33,0,0,-0.13605 -57186,5316:237:1,-167,-33,0,0,-0.13605 -57187,5316:236:2,-166.5,-33,0,0,-0.13605 -57188,5316:236:1,-166,-33,0,0,-0.13605 -57189,5316:235:2,-165.5,-33,0,0,-0.13605 -57190,5316:235:1,-165,-33,0,0,-0.13605 -57191,5316:134:2,-164.5,-33,0,0,-0.13605 -57192,5316:134:1,-164,-33,0,0,-0.13605 -57193,5316:133:2,-163.5,-33,0,0,-0.13605 -57194,5316:133:1,-163,-33,0,0,-0.13605 -57195,5316:132:2,-162.5,-33,0,0,-0.13605 -57196,5316:132:1,-162,-33,0,0,-0.13605 -57197,5316:131:2,-161.5,-33,0,0,-0.13605 -57198,5316:131:1,-161,-33,0,0,-0.13605 -57199,5316:130:2,-160.5,-33,0,0,-0.13605 -57200,5316:130:1,-160,-33,0,0,-0.13605 -57201,5315:239:2,-159.5,-33,0,0,-0.13605 -57202,5315:239:1,-159,-33,0,0,-0.13605 -57203,5315:238:2,-158.5,-33,0,0,-0.13605 -57204,5315:238:1,-158,-33,0,0,-0.13605 -57205,5315:237:2,-157.5,-33,0,0,-0.13605 -57206,5315:237:1,-157,-33,0,0,-0.13605 -57207,5315:236:2,-156.5,-33,0,0,-0.13605 -57208,5315:236:1,-156,-33,0,0,-0.13605 -57209,5315:235:2,-155.5,-33,0,0,-0.13605 -57210,5315:235:1,-155,-33,0,0,-0.13605 -57211,5315:134:2,-154.5,-33,0,0,-0.13605 -57212,5315:134:1,-154,-33,0,0,-0.13605 -57213,5315:133:2,-153.5,-33,0,0,-0.13605 -57214,5315:133:1,-153,-33,0,0,-0.13605 -57215,5315:132:2,-152.5,-33,0,0,-0.13605 -57216,5315:132:1,-152,-33,0,0,-0.13605 -57217,5315:131:2,-151.5,-33,0,0,-0.13605 -57218,5315:131:1,-151,-33,0,0,-0.13605 -57219,5315:130:2,-150.5,-33,0,0,-0.13605 -57220,5315:130:1,-150,-33,0,0,-0.13605 -57221,5314:239:2,-149.5,-33,0,0,-0.13605 -57222,5314:239:1,-149,-33,0,0,-0.13605 -57223,5314:238:2,-148.5,-33,0,0,-0.13605 -57224,5314:238:1,-148,-33,0,0,-0.13605 -57225,5314:237:2,-147.5,-33,0,0,-0.13605 -57226,5314:237:1,-147,-33,0,0,-0.13605 -57227,5314:236:2,-146.5,-33,0,0,-0.13605 -57228,5314:236:1,-146,-33,0,0,-0.13605 -57229,5314:235:2,-145.5,-33,0,0,-0.13605 -57230,5314:235:1,-145,-33,0,0,-0.13605 -57231,5314:134:2,-144.5,-33,0,0,-0.13605 -57232,5314:134:1,-144,-33,0,0,-0.13605 -57233,5314:133:2,-143.5,-33,0,0,-0.13605 -57234,5314:133:1,-143,-33,0,0,-0.13605 -57235,5314:132:2,-142.5,-33,0,0,-0.13605 -57236,5314:132:1,-142,-33,0,0,-0.13605 -57237,5314:131:2,-141.5,-33,0,0,-0.13605 -57238,5314:131:1,-141,-33,0,0,-0.13605 -57239,5314:130:2,-140.5,-33,0,0,-0.13605 -57240,5314:130:1,-140,-33,0,0,-0.13605 -57241,5313:239:2,-139.5,-33,0,0,-0.13605 -57242,5313:239:1,-139,-33,0,0,-0.13605 -57243,5313:238:2,-138.5,-33,0,0,-0.13605 -57244,5313:238:1,-138,-33,0,0,-0.13605 -57245,5313:237:2,-137.5,-33,0,0,-0.13605 -57246,5313:237:1,-137,-33,0,0,-0.13605 -57247,5313:236:2,-136.5,-33,0,0,-0.13605 -57248,5313:236:1,-136,-33,0,0,-0.13605 -57249,5313:235:2,-135.5,-33,0,0,-0.13605 -57250,5313:235:1,-135,-33,0,0,-0.13605 -57251,5313:134:2,-134.5,-33,0,0,-0.13605 -57252,5313:134:1,-134,-33,0,0,-0.13605 -57253,5313:133:2,-133.5,-33,0,0,-0.13605 -57254,5313:133:1,-133,-33,0,0,-0.13605 -57255,5313:132:2,-132.5,-33,0,0,-0.13605 -57256,5313:132:1,-132,-33,0,0,-0.13605 -57257,5313:131:2,-131.5,-33,0,0,-0.13605 -57258,5313:131:1,-131,-33,0,0,-0.13605 -57259,5313:130:2,-130.5,-33,0,0,-0.13605 -57260,5313:130:1,-130,-33,0,0,-0.13605 -57261,5312:239:2,-129.5,-33,0,0,-0.13605 -57262,5312:239:1,-129,-33,0,0,-0.13605 -57263,5312:238:2,-128.5,-33,0,0,-0.13605 -57264,5312:238:1,-128,-33,0,0,-0.13605 -57265,5312:237:2,-127.5,-33,0,0,-0.13605 -57266,5312:237:1,-127,-33,0,0,-0.13605 -57267,5312:236:2,-126.5,-33,0,0,-0.13605 -57268,5312:236:1,-126,-33,0,0,-0.13605 -57269,5312:235:2,-125.5,-33,0,0,-0.13605 -57270,5312:235:1,-125,-33,0,0,-0.13605 -57271,5312:134:2,-124.5,-33,0,0,-0.13605 -57272,5312:134:1,-124,-33,0,0,-0.13605 -57273,5312:133:2,-123.5,-33,0,0,-0.13605 -57274,5312:133:1,-123,-33,0,0,-0.13605 -57275,5312:132:2,-122.5,-33,0,0,-0.13605 -57276,5312:132:1,-122,-33,0,0,-0.13605 -57277,5312:131:2,-121.5,-33,0,0,-0.13605 -57278,5312:131:1,-121,-33,0,0,-0.13605 -57279,5312:130:2,-120.5,-33,0,0,-0.13605 -57280,5312:130:1,-120,-33,0,0,-0.13605 -57281,5311:239:2,-119.5,-33,0,0,-0.13605 -57282,5311:239:1,-119,-33,0,0,-0.13605 -57283,5311:238:2,-118.5,-33,0,0,-0.13605 -57284,5311:238:1,-118,-33,0,0,-0.13605 -57285,5311:237:2,-117.5,-33,0,0,-0.13605 -57286,5311:237:1,-117,-33,0,0,-0.13605 -57287,5311:236:2,-116.5,-33,0,0,-0.13605 -57288,5311:236:1,-116,-33,0,0,-0.13605 -57289,5311:235:2,-115.5,-33,0,0,-0.13605 -57290,5311:235:1,-115,-33,0,0,-0.13605 -57291,5311:134:2,-114.5,-33,0,0,-0.13605 -57292,5311:134:1,-114,-33,0,0,-0.13605 -57293,5311:133:2,-113.5,-33,0,0,-0.13605 -57294,5311:133:1,-113,-33,0,0,-0.13605 -57295,5311:132:2,-112.5,-33,0,0,-0.13605 -57296,5311:132:1,-112,-33,0,0,-0.13605 -57297,5311:131:2,-111.5,-33,0,0,-0.13605 -57298,5311:131:1,-111,-33,0,0,-0.13605 -57299,5311:130:2,-110.5,-33,0,0,-0.13605 -57300,5311:130:1,-110,-33,0,0,-0.13605 -57301,5310:239:2,-109.5,-33,0,0,-0.13605 -57302,5310:239:1,-109,-33,0,0,-0.13605 -57303,5310:238:2,-108.5,-33,0,0,-0.13605 -57304,5310:238:1,-108,-33,0,0,-0.13605 -57305,5310:237:2,-107.5,-33,0,0,-0.13605 -57306,5310:237:1,-107,-33,0,0,-0.13605 -57307,5310:236:2,-106.5,-33,0,0,-0.13605 -57308,5310:236:1,-106,-33,0,0,-0.13605 -57309,5310:235:2,-105.5,-33,0,0,-0.13605 -57310,5310:235:1,-105,-33,0,0,-0.13605 -57311,5310:134:2,-104.5,-33,0,0,-0.13605 -57312,5310:134:1,-104,-33,0,0,-0.13605 -57313,5310:133:2,-103.5,-33,0,0,-0.13605 -57314,5310:133:1,-103,-33,0,0,-0.13605 -57315,5310:132:2,-102.5,-33,0,0,-0.13605 -57316,5310:132:1,-102,-33,0,0,-0.13605 -57317,5310:131:2,-101.5,-33,0,0,-0.13605 -57318,5310:131:1,-101,-33,0,0,-0.13605 -57319,5310:130:2,-100.5,-33,0,0,-0.13605 -57320,5310:130:1,-100,-33,0,0,-0.13605 -57321,5309:239:2,-99.5,-33,0,0,-0.13605 -57322,5309:239:1,-99,-33,0,0,-0.13605 -57323,5309:238:2,-98.5,-33,0,0,-0.13605 -57324,5309:238:1,-98,-33,0,0,-0.13605 -57325,5309:237:2,-97.5,-33,0,0,-0.135231 -57326,5309:237:1,-97,-33,0,0,-0.132448 -57327,5309:236:2,-96.5,-33,0,0,-0.136043 -57328,5309:236:1,-96,-33,0,0,-0.13605 -57329,5309:235:2,-95.5,-33,0,0,-0.133915 -57330,5309:235:1,-95,-33,0,0,-0.130509 -57331,5309:134:2,-94.5,-33,0,0,-0.13496 -57332,5309:134:1,-94,-33,0,0,-0.13605 -57333,5309:133:2,-93.5,-33,0,0,-0.13605 -57334,5309:133:1,-93,-33,0,0,-0.136011 -57335,5309:132:2,-92.5,-33,0,0,-0.134926 -57336,5309:132:1,-92,-33,0,0,-0.132217 -57337,5309:131:2,-91.5,-33,0,0,-0.126379 -57338,5309:131:1,-91,-33,0,0,-0.122727 -57339,5309:130:2,-90.5,-33,0,0,-0.126535 -57340,5309:130:1,-90,-33,0,0,-0.135163 -57341,5308:239:2,-89.5,-33,0,0,-0.133514 -57342,5308:239:1,-89,-33,0,0,-0.126567 -57343,5308:238:2,-88.5,-33,0,0,-0.124724 -57344,5308:238:1,-88,-33,0,0,-0.124075 -57345,5308:237:2,-87.5,-33,0,0,-0.122271 -57346,5308:237:1,-87,-33,0,0,-0.123982 -57347,5308:236:2,-86.5,-33,0,0,-0.130737 -57348,5308:236:1,-86,-33,0,0,-0.135468 -57349,5308:235:2,-85.5,-33,0,0,-0.132979 -57350,5308:235:1,-85,-33,0,0,-0.131458 -57351,5308:134:2,-84.5,-33,0,0,-0.132217 -57352,5308:134:1,-84,-33,0,0,-0.131032 -57353,5308:133:2,-83.5,-33,0,0,-0.126788 -57354,5308:133:1,-83,-33,0,0,-0.122423 -57355,5308:132:2,-82.5,-33,0,0,-0.124136 -57356,5308:132:1,-82,-33,0,0,-0.130411 -57357,5308:131:2,-81.5,-33,0,0,-0.129147 -57358,5308:131:1,-81,-33,0,0,-0.12343 -57359,5308:130:2,-80.5,-33,0,0,-0.124383 -57360,5308:130:1,-80,-33,0,0,-0.125376 -57361,5307:239:2,-79.5,-33,0,0,-0.125564 -57362,5307:239:1,-79,-33,0,0,-0.130346 -57363,5307:238:2,-78.5,-33,0,0,-0.132085 -57364,5307:238:1,-78,-33,0,0,-0.130672 -57365,5307:237:2,-77.5,-33,0,0,-0.132018 -57366,5307:237:1,-77,-33,0,0,-0.131919 -57367,5307:236:2,-76.5,-33,0,0,-0.130999 -57368,5307:236:1,-76,-33,0,0,-0.133313 -57369,5307:235:2,-75.5,-33,0,0,-0.13605 -57370,5307:235:1,-75,-33,0,0,-0.13605 -57371,5307:134:2,-74.5,-33,0,0,-0.13605 -57372,5307:133:2,-73.5,-33,0,0,-0.13605 -57373,5307:133:1,-73,-33,0,0,-0.13605 -57374,5306:133:2,-63.5,-33,0,0,-0.13605 -57375,5306:133:1,-63,-33,0,0,-0.13605 -57376,5306:132:2,-62.5,-33,0,0,-0.13605 -57377,5306:132:1,-62,-33,0,0,-0.13605 -57378,5306:131:2,-61.5,-33,0,0,-0.13605 -57379,5306:131:1,-61,-33,0,0,-0.13605 -57380,5306:130:2,-60.5,-33,0,0,-0.13605 -57381,5306:130:1,-60,-33,0,0,-0.13605 -57382,5305:239:2,-59.5,-33,0,0,-0.13605 -57383,5305:239:1,-59,-33,0,0,-0.13605 -57384,5305:238:2,-58.5,-33,0,0,-0.13288 -57385,5305:238:1,-58,-33,0,0,-0.0999354 -57386,5305:237:2,-57.5,-33,0,0,-0.09502 -57387,5305:237:1,-57,-33,0,0,-0.130574 -57388,5305:236:2,-56.5,-33,0,0,-0.13605 -57389,5305:236:1,-56,-33,0,0,-0.13605 -57390,5305:235:2,-55.5,-33,0,0,-0.13605 -57391,5305:235:1,-55,-33,0,0,-0.13605 -57392,5305:134:2,-54.5,-33,0,0,-0.13605 -57393,5305:134:1,-54,-33,0,0,-0.13605 -57394,5305:133:2,-53.5,-33,0,0,-0.13605 -57395,5305:133:1,-53,-33,0,0,-0.13605 -57396,5305:132:2,-52.5,-33,0,0,-0.13605 -57397,5305:132:1,-52,-33,0,0,-0.13605 -57398,5305:131:2,-51.5,-33,0,0,-0.13605 -57399,5305:131:1,-51,-33,0,0,-0.13605 -57400,5305:130:2,-50.5,-33,0,0,-0.13605 -57401,5305:130:1,-50,-33,0,0,-0.13605 -57402,5304:239:2,-49.5,-33,0,0,-0.13605 -57403,5304:239:1,-49,-33,0,0,-0.13605 -57404,5304:238:2,-48.5,-33,0,0,-0.13605 -57405,5304:238:1,-48,-33,0,0,-0.13605 -57406,5304:237:2,-47.5,-33,0,0,-0.13605 -57407,5304:237:1,-47,-33,0,0,-0.13605 -57408,5304:236:2,-46.5,-33,0,0,-0.13605 -57409,5304:236:1,-46,-33,0,0,-0.13605 -57410,5304:235:2,-45.5,-33,0,0,-0.13605 -57411,5304:235:1,-45,-33,0,0,-0.13605 -57412,5304:134:2,-44.5,-33,0,0,-0.13605 -57413,5304:134:1,-44,-33,0,0,-0.13605 -57414,5304:133:2,-43.5,-33,0,0,-0.13605 -57415,5304:133:1,-43,-33,0,0,-0.13605 -57416,5304:132:2,-42.5,-33,0,0,-0.13605 -57417,5304:132:1,-42,-33,0,0,-0.13605 -57418,5304:131:2,-41.5,-33,0,0,-0.13605 -57419,5304:131:1,-41,-33,0,0,-0.13605 -57420,5304:130:2,-40.5,-33,0,0,-0.121607 -57421,5304:130:1,-40,-33,0,0,-0.10637 -57422,5303:239:2,-39.5,-33,0,0,-0.0996445 -57423,5303:239:1,-39,-33,0,0,-0.0930878 -57424,5303:238:2,-38.5,-33,0,0,-0.0928856 -57425,5303:238:1,-38,-33,0,0,-0.0979893 -57426,5303:237:2,-37.5,-33,0,0,-0.103324 -57427,5303:237:1,-37,-33,0,0,-0.10954 -57428,5303:236:2,-36.5,-33,0,0,-0.120975 -57429,5303:236:1,-36,-33,0,0,-0.13215 -57430,5303:235:2,-35.5,-33,0,0,-0.13605 -57431,5303:235:1,-35,-33,0,0,-0.135896 -57432,5303:134:2,-34.5,-33,0,0,-0.120915 -57433,5303:134:1,-34,-33,0,0,-0.0987535 -57434,5303:133:2,-33.5,-33,0,0,-0.0923936 -57435,5303:133:1,-33,-33,0,0,-0.106058 -57436,5303:132:2,-32.5,-33,0,0,-0.117062 -57437,5303:132:1,-32,-33,0,0,-0.116889 -57438,5303:131:2,-31.5,-33,0,0,-0.13591 -57439,5303:131:1,-31,-33,0,0,-0.13605 -57440,5303:130:2,-30.5,-33,0,0,-0.135907 -57441,5303:130:1,-30,-33,0,0,-0.127357 -57442,5302:239:2,-29.5,-33,0,0,-0.121245 -57443,5302:239:1,-29,-33,0,0,-0.117874 -57444,5302:238:2,-28.5,-33,0,0,-0.11486 -57445,5302:238:1,-28,-33,0,0,-0.117874 -57446,5302:237:2,-27.5,-33,0,0,-0.132183 -57447,5302:237:1,-27,-33,0,0,-0.129858 -57448,5302:236:2,-26.5,-33,0,0,-0.125439 -57449,5302:236:1,-26,-33,0,0,-0.121817 -57450,5302:235:2,-25.5,-33,0,0,-0.135937 -57451,5302:235:1,-25,-33,0,0,-0.13605 -57452,5302:134:2,-24.5,-33,0,0,-0.13605 -57453,5302:134:1,-24,-33,0,0,-0.13605 -57454,5302:133:2,-23.5,-33,0,0,-0.13605 -57455,5302:133:1,-23,-33,0,0,-0.13605 -57456,5302:132:2,-22.5,-33,0,0,-0.13605 -57457,5302:132:1,-22,-33,0,0,-0.13605 -57458,5302:131:2,-21.5,-33,0,0,-0.13605 -57459,5302:131:1,-21,-33,0,0,-0.13605 -57460,5302:130:2,-20.5,-33,0,0,-0.124075 -57461,5302:130:1,-20,-33,0,0,-0.106813 -57462,5301:239:2,-19.5,-33,0,0,-0.0988494 -57463,5301:239:1,-19,-33,0,0,-0.0909784 -57464,5301:238:2,-18.5,-33,0,0,-0.0833819 -57465,5301:238:1,-18,-33,0,0,-0.072625 -57466,5301:237:2,-17.5,-33,0,0,-0.0673813 -57467,5301:237:1,-17,-33,0,0,-0.0654107 -57468,5301:236:2,-16.5,-33,0,0,-0.0629067 -57469,5301:236:1,-16,-33,0,0,-0.0600104 -57470,5301:235:2,-15.5,-33,0,0,-0.0638299 -57471,5301:235:1,-15,-33,0,0,-0.0859797 -57472,5301:134:2,-14.5,-33,0,0,-0.13605 -57473,5301:134:1,-14,-33,0,0,-0.13605 -57474,5301:133:2,-13.5,-33,0,0,-0.13605 -57475,5301:133:1,-13,-33,0,0,-0.136046 -57476,5301:132:2,-12.5,-33,0,0,-0.123399 -57477,5301:132:1,-12,-33,0,0,-0.113763 -57478,5301:131:2,-11.5,-33,0,0,-0.112455 -57479,5301:131:1,-11,-33,0,0,-0.111657 -57480,5301:130:2,-10.5,-33,0,0,-0.111001 -57481,5301:130:1,-10,-33,0,0,-0.110485 -57482,5300:239:2,-9.5,-33,0,0,-0.11016 -57483,5300:239:1,-9,-33,0,0,-0.105954 -57484,5300:238:2,-8.5,-33,0,0,-0.102872 -57485,5300:238:1,-8,-33,0,0,-0.105825 -57486,5300:237:2,-7.5,-33,0,0,-0.113595 -57487,5300:237:1,-7,-33,0,0,-0.130672 -57488,5300:236:2,-6.5,-33,0,0,-0.126253 -57489,5300:236:1,-6,-33,0,0,-0.113399 -57490,5300:235:2,-5.5,-33,0,0,-0.103526 -57491,5300:235:1,-5,-33,0,0,-0.100276 -57492,5300:134:2,-4.5,-33,0,0,-0.0992818 -57493,5300:134:1,-4,-33,0,0,-0.0998139 -57494,5300:133:2,-3.5,-33,0,0,-0.101281 -57495,5300:133:1,-3,-33,0,0,-0.103073 -57496,5300:132:2,-2.5,-33,0,0,-0.105464 -57497,5300:132:1,-2,-33,0,0,-0.10637 -57498,5300:131:2,-1.5,-33,0,0,-0.105464 -57499,5300:131:1,-1,-33,0,0,-0.106629 -57500,5300:130:2,-0.5,-33,0,0,-0.105747 -57501,3300:130:2,0,-33,0,0,-0.100691 -57502,3300:130:2,0.5,-33,0,0,-0.0972085 -57503,3300:131:1,1,-33,0,0,-0.0996689 -57504,3300:131:2,1.5,-33,0,0,-0.102571 -57505,3300:132:1,2,-33,0,0,-0.100471 -57506,3300:132:2,2.5,-33,0,0,-0.0925946 -57507,3300:133:1,3,-33,0,0,-0.0865382 -57508,3300:133:2,3.5,-33,0,0,-0.0839431 -57509,3300:134:1,4,-33,0,0,-0.0824694 -57510,3300:134:2,4.5,-33,0,0,-0.0836021 -57511,3300:235:1,5,-33,0,0,-0.0881965 -57512,3300:235:2,5.5,-33,0,0,-0.0957357 -57513,3300:236:1,6,-33,0,0,-0.101503 -57514,3300:236:2,6.5,-33,0,0,-0.102422 -57515,3300:237:1,7,-33,0,0,-0.0989454 -57516,3300:237:2,7.5,-33,0,0,-0.0969729 -57517,3300:238:1,8,-33,0,0,-0.0953658 -57518,3300:238:2,8.5,-33,0,0,-0.0888136 -57519,3300:239:1,9,-33,0,0,-0.0803879 -57520,3300:239:2,9.5,-33,0,0,-0.0759389 -57521,3301:130:1,10,-33,0,0,-0.0753098 -57522,3301:130:2,10.5,-33,0,0,-0.0763012 -57523,3301:131:1,11,-33,0,0,-0.0794342 -57524,3301:131:2,11.5,-33,0,0,-0.0827661 -57525,3301:132:1,12,-33,0,0,-0.097633 -57526,3301:132:2,12.5,-33,0,0,-0.102997 -57527,3301:133:1,13,-33,0,0,-0.10624 -57528,3301:133:2,13.5,-33,0,0,-0.111192 -57529,3301:134:1,14,-33,0,0,-0.117177 -57530,3301:134:2,14.5,-33,0,0,-0.13605 -57531,3301:235:1,15,-33,0,0,-0.13605 -57532,3301:235:2,15.5,-33,0,0,-0.13605 -57533,3301:236:1,16,-33,0,0,-0.13605 -57534,3301:236:2,16.5,-33,0,0,-0.13605 -57535,3301:237:1,17,-33,0,0,-0.13605 -57536,3301:237:2,17.5,-33,0,0,-0.13605 -57537,3301:238:1,18,-33,0,0,-0.13605 -57538,3301:238:2,18.5,-33,0,0,-0.13605 -57539,3301:239:1,19,-33,0,0,-0.13605 -57540,3301:239:2,19.5,-33,0,0,-0.13605 -57541,3302:130:1,20,-33,0,0,-0.13605 -57542,3302:130:2,20.5,-33,0,0,-0.13605 -57543,3302:131:1,21,-33,0,0,-0.13605 -57544,3302:131:2,21.5,-33,0,0,-0.13605 -57545,3302:132:1,22,-33,0,0,-0.13605 -57546,3302:132:2,22.5,-33,0,0,-0.13605 -57547,3302:133:1,23,-33,0,0,-0.13605 -57548,3302:133:2,23.5,-33,0,0,-0.13605 -57549,3302:134:1,24,-33,0,0,-0.13605 -57550,3302:134:2,24.5,-33,0,0,-0.13605 -57551,3302:235:1,25,-33,0,0,-0.126409 -57552,3302:235:2,25.5,-33,0,0,-0.111959 -57553,3302:236:1,26,-33,0,0,-0.105464 -57554,3302:236:2,26.5,-33,0,0,-0.103248 -57555,3302:237:1,27,-33,0,0,-0.113344 -57556,3302:237:2,27.5,-33,0,0,-0.135809 -57557,3302:238:1,28,-33,0,0,-0.13605 -57558,3302:238:2,28.5,-33,0,0,-0.13605 -57559,3302:239:1,29,-33,0,0,-0.128089 -57560,3302:239:2,29.5,-33,0,0,-0.13605 -57561,3303:130:1,30,-33,0,0,-0.13605 -57562,3303:130:2,30.5,-33,0,0,-0.13605 -57563,3303:131:1,31,-33,0,0,-0.13605 -57564,3303:131:2,31.5,-33,0,0,-0.13605 -57565,3303:132:1,32,-33,0,0,-0.13605 -57566,3303:132:2,32.5,-33,0,0,-0.11597 -57567,3303:133:1,33,-33,0,0,-0.116543 -57568,3303:133:2,33.5,-33,0,0,-0.13605 -57569,3303:134:1,34,-33,0,0,-0.13605 -57570,3303:134:2,34.5,-33,0,0,-0.13605 -57571,3303:235:1,35,-33,0,0,-0.13605 -57572,3303:235:2,35.5,-33,0,0,-0.13605 -57573,3303:236:1,36,-33,0,0,-0.13605 -57574,3303:236:2,36.5,-33,0,0,-0.13605 -57575,3303:237:1,37,-33,0,0,-0.128826 -57576,3303:237:2,37.5,-33,0,0,-0.133413 -57577,3303:238:1,38,-33,0,0,-0.13605 -57578,3303:238:2,38.5,-33,0,0,-0.13605 -57579,3303:239:1,39,-33,0,0,-0.124848 -57580,3303:239:2,39.5,-33,0,0,-0.0934708 -57581,3304:130:1,40,-33,0,0,-0.0725049 -57582,3304:130:2,40.5,-33,0,0,-0.0699095 -57583,3304:131:1,41,-33,0,0,-0.0726424 -57584,3304:131:2,41.5,-33,0,0,-0.0761016 -57585,3304:132:1,42,-33,0,0,-0.0862686 -57586,3304:132:2,42.5,-33,0,0,-0.102747 -57587,3304:133:1,43,-33,0,0,-0.122971 -57588,3304:133:2,43.5,-33,0,0,-0.119222 -57589,3304:134:1,44,-33,0,0,-0.0955972 -57590,3304:134:2,44.5,-33,0,0,-0.0778047 -57591,3304:235:1,45,-33,0,0,-0.0716002 -57592,3304:235:2,45.5,-33,0,0,-0.0698767 -57593,3304:236:1,46,-33,0,0,-0.0722986 -57594,3304:236:2,46.5,-33,0,0,-0.0835819 -57595,3304:237:1,47,-33,0,0,-0.112566 -57596,3304:237:2,47.5,-33,0,0,-0.118487 -57597,3304:238:1,48,-33,0,0,-0.118517 -57598,3304:238:2,48.5,-33,0,0,-0.110647 -57599,3304:239:1,49,-33,0,0,-0.102872 -57600,3304:239:2,49.5,-33,0,0,-0.107389 -57601,3305:130:1,50,-33,0,0,-0.108684 -57602,3305:130:2,50.5,-33,0,0,-0.0976807 -57603,3305:131:1,51,-33,0,0,-0.0724876 -57604,3305:131:2,51.5,-33,0,0,-0.0614335 -57605,3305:132:1,52,-33,0,0,-0.108658 -57606,3305:132:2,52.5,-33,0,0,-0.13605 -57607,3305:133:1,53,-33,0,0,-0.136027 -57608,3305:133:2,53.5,-33,0,0,-0.129019 -57609,3305:134:1,54,-33,0,0,-0.13605 -57610,3305:134:2,54.5,-33,0,0,-0.13605 -57611,3305:235:1,55,-33,0,0,-0.13605 -57612,3305:235:2,55.5,-33,0,0,-0.13605 -57613,3305:236:1,56,-33,0,0,-0.135994 -57614,3305:236:2,56.5,-33,0,0,-0.121757 -57615,3305:237:1,57,-33,0,0,-0.115144 -57616,3305:237:2,57.5,-33,0,0,-0.111411 -57617,3305:238:1,58,-33,0,0,-0.109272 -57618,3305:238:2,58.5,-33,0,0,-0.12209 -57619,3305:239:1,59,-33,0,0,-0.13605 -57620,3305:239:2,59.5,-33,0,0,-0.13605 -57621,3306:130:1,60,-33,0,0,-0.13605 -57622,3306:130:2,60.5,-33,0,0,-0.13605 -57623,3306:131:1,61,-33,0,0,-0.13605 -57624,3306:131:2,61.5,-33,0,0,-0.13605 -57625,3306:132:1,62,-33,0,0,-0.13605 -57626,3306:132:2,62.5,-33,0,0,-0.13605 -57627,3306:133:1,63,-33,0,0,-0.13605 -57628,3306:133:2,63.5,-33,0,0,-0.13605 -57629,3306:134:1,64,-33,0,0,-0.13605 -57630,3306:134:2,64.5,-33,0,0,-0.13605 -57631,3306:235:1,65,-33,0,0,-0.13605 -57632,3306:235:2,65.5,-33,0,0,-0.13605 -57633,3306:236:1,66,-33,0,0,-0.13605 -57634,3306:236:2,66.5,-33,0,0,-0.102721 -57635,3306:237:1,67,-33,0,0,-0.0931104 -57636,3306:237:2,67.5,-33,0,0,-0.0915505 -57637,3306:238:1,68,-33,0,0,-0.110621 -57638,3306:238:2,68.5,-33,0,0,-0.13605 -57639,3306:239:1,69,-33,0,0,-0.13605 -57640,3306:239:2,69.5,-33,0,0,-0.13605 -57641,3307:130:1,70,-33,0,0,-0.13605 -57642,3307:130:2,70.5,-33,0,0,-0.13605 -57643,3307:131:1,71,-33,0,0,-0.13605 -57644,3307:131:2,71.5,-33,0,0,-0.13605 -57645,3307:132:1,72,-33,0,0,-0.13605 -57646,3307:132:2,72.5,-33,0,0,-0.13605 -57647,3307:133:2,73.5,-33,0,0,-0.13605 -57648,3307:134:1,74,-33,0,0,-0.135902 -57649,3307:134:2,74.5,-33,0,0,-0.133546 -57650,3307:235:1,75,-33,0,0,-0.13605 -57651,3307:235:2,75.5,-33,0,0,-0.13605 -57652,3307:236:1,76,-33,0,0,-0.13605 -57653,3307:236:2,76.5,-33,0,0,-0.13605 -57654,3307:237:1,77,-33,0,0,-0.13605 -57655,3307:237:2,77.5,-33,0,0,-0.135197 -57656,3307:238:1,78,-33,0,0,-0.119547 -57657,3307:238:2,78.5,-33,0,0,-0.121607 -57658,3307:239:1,79,-33,0,0,-0.125564 -57659,3307:239:2,79.5,-33,0,0,-0.133781 -57660,3308:130:1,80,-33,0,0,-0.13605 -57661,3308:130:2,80.5,-33,0,0,-0.13605 -57662,3308:131:1,81,-33,0,0,-0.13605 -57663,3308:131:2,81.5,-33,0,0,-0.13605 -57664,3308:132:1,82,-33,0,0,-0.13605 -57665,3308:132:2,82.5,-33,0,0,-0.13605 -57666,3308:133:1,83,-33,0,0,-0.13605 -57667,3308:133:2,83.5,-33,0,0,-0.13605 -57668,3308:134:1,84,-33,0,0,-0.13215 -57669,3308:134:2,84.5,-33,0,0,-0.116745 -57670,3308:235:1,85,-33,0,0,-0.109406 -57671,3308:235:2,85.5,-33,0,0,-0.102172 -57672,3308:236:1,86,-33,0,0,-0.0998139 -57673,3308:236:2,86.5,-33,0,0,-0.100569 -57674,3308:237:1,87,-33,0,0,-0.103047 -57675,3308:237:2,87.5,-33,0,0,-0.106187 -57676,3308:238:1,88,-33,0,0,-0.1081 -57677,3308:238:2,88.5,-33,0,0,-0.108313 -57678,3308:239:1,89,-33,0,0,-0.106995 -57679,3308:239:2,89.5,-33,0,0,-0.104058 -57680,3309:130:1,90,-33,0,0,-0.102922 -57681,3309:130:2,90.5,-33,0,0,-0.104592 -57682,3309:131:1,91,-33,0,0,-0.104899 -57683,3309:131:2,91.5,-33,0,0,-0.104311 -57684,3309:132:1,92,-33,0,0,-0.102123 -57685,3309:132:2,92.5,-33,0,0,-0.0980843 -57686,3309:133:1,93,-33,0,0,-0.094814 -57687,3309:133:2,93.5,-33,0,0,-0.0949744 -57688,3309:134:1,94,-33,0,0,-0.100496 -57689,3309:134:2,94.5,-33,0,0,-0.111001 -57690,3309:235:1,95,-33,0,0,-0.12343 -57691,3309:235:2,95.5,-33,0,0,-0.132316 -57692,3309:236:1,96,-33,0,0,-0.135877 -57693,3309:236:2,96.5,-33,0,0,-0.135061 -57694,3309:237:1,97,-33,0,0,-0.131229 -57695,3309:237:2,97.5,-33,0,0,-0.125439 -57696,3309:238:1,98,-33,0,0,-0.118839 -57697,3309:238:2,98.5,-33,0,0,-0.118751 -57698,3309:239:1,99,-33,0,0,-0.125252 -57699,3309:239:2,99.5,-33,0,0,-0.125814 -57700,3310:130:1,100,-33,0,0,-0.119754 -57701,3310:130:2,100.5,-33,0,0,-0.120855 -57702,3310:131:1,101,-33,0,0,-0.119251 -57703,3310:131:2,101.5,-33,0,0,-0.113511 -57704,3310:132:1,102,-33,0,0,-0.112594 -57705,3310:132:2,102.5,-33,0,0,-0.110566 -57706,3310:133:1,103,-33,0,0,-0.107521 -57707,3310:133:2,103.5,-33,0,0,-0.104745 -57708,3310:134:1,104,-33,0,0,-0.102696 -57709,3310:134:2,104.5,-33,0,0,-0.103274 -57710,3310:235:1,105,-33,0,0,-0.108207 -57711,3310:235:2,105.5,-33,0,0,-0.117438 -57712,3310:236:1,106,-33,0,0,-0.125876 -57713,3310:236:2,106.5,-33,0,0,-0.128922 -57714,3310:237:1,107,-33,0,0,-0.126693 -57715,3310:237:2,107.5,-33,0,0,-0.124136 -57716,3310:238:1,108,-33,0,0,-0.121938 -57717,3310:238:2,108.5,-33,0,0,-0.119724 -57718,3310:239:1,109,-33,0,0,-0.118956 -57719,3310:239:2,109.5,-33,0,0,-0.117932 -57720,3311:130:1,110,-33,0,0,-0.114325 -57721,3311:130:2,110.5,-33,0,0,-0.112982 -57722,3311:131:1,111,-33,0,0,-0.114663 -57723,3311:131:2,111.5,-33,0,0,-0.116716 -57724,3311:132:1,112,-33,0,0,-0.116889 -57725,3311:132:2,112.5,-33,0,0,-0.113511 -57726,3311:133:1,113,-33,0,0,-0.11163 -57727,3311:133:2,113.5,-33,0,0,-0.113456 -57728,3311:134:1,114,-33,0,0,-0.114832 -57729,3311:134:2,114.5,-33,0,0,-0.114776 -57730,3311:235:1,115,-33,0,0,-0.113735 -57731,3311:235:2,115.5,-33,0,0,-0.113763 -57732,3311:236:1,116,-33,0,0,-0.113679 -57733,3311:236:2,116.5,-33,0,0,-0.114099 -57734,3311:237:1,117,-33,0,0,-0.116486 -57735,3311:237:2,117.5,-33,0,0,-0.119192 -57736,3311:238:1,118,-33,0,0,-0.121485 -57737,3311:238:2,118.5,-33,0,0,-0.122818 -57738,3311:239:1,119,-33,0,0,-0.123521 -57739,3311:239:2,119.5,-33,0,0,-0.125034 -57740,3312:130:1,120,-33,0,0,-0.127612 -57741,3312:130:2,120.5,-33,0,0,-0.131163 -57742,3312:131:1,121,-33,0,0,-0.132085 -57743,3312:131:2,121.5,-33,0,0,-0.13136 -57744,3312:132:1,122,-33,0,0,-0.129891 -57745,3312:132:2,122.5,-33,0,0,-0.12947 -57746,3312:133:1,123,-33,0,0,-0.129019 -57747,3312:133:2,123.5,-33,0,0,-0.127294 -57748,3312:134:1,124,-33,0,0,-0.125189 -57749,3312:134:2,124.5,-33,0,0,-0.123123 -57750,3312:235:1,125,-33,0,0,-0.120616 -57751,3312:235:2,125.5,-33,0,0,-0.118809 -57752,3312:236:1,126,-33,0,0,-0.120348 -57753,3312:236:2,126.5,-33,0,0,-0.127326 -57754,3312:237:1,127,-33,0,0,-0.135907 -57755,3312:237:2,127.5,-33,0,0,-0.13605 -57756,3312:238:1,128,-33,0,0,-0.13605 -57757,3312:238:2,128.5,-33,0,0,-0.135231 -57758,3312:239:1,129,-33,0,0,-0.125376 -57759,3312:239:2,129.5,-33,0,0,-0.128249 -57760,3313:130:1,130,-33,0,0,-0.133814 -57761,3313:130:2,130.5,-33,0,0,-0.131556 -57762,3313:131:1,131,-33,0,0,-0.129147 -57763,3313:131:2,131.5,-33,0,0,-0.132647 -57764,3313:132:1,132,-33,0,0,-0.133915 -57765,3313:132:2,132.5,-33,0,0,-0.131196 -57766,3313:133:1,133,-33,0,0,-0.129891 -57767,3313:133:2,133.5,-33,0,0,-0.131853 -57768,3313:134:1,134,-33,0,0,-0.13594 -57769,3313:134:2,134.5,-33,0,0,-0.13605 -57770,3313:235:1,135,-33,0,0,-0.135877 -57771,3313:235:2,135.5,-33,0,0,-0.133313 -57772,3313:236:1,136,-33,0,0,-0.131952 -57773,3313:236:2,136.5,-33,0,0,-0.132614 -57774,3313:237:1,137,-33,0,0,-0.134791 -57775,3313:237:2,137.5,-33,0,0,-0.135915 -57776,3313:238:1,138,-33,0,0,-0.13605 -57777,3313:238:2,138.5,-33,0,0,-0.13605 -57778,3313:239:1,139,-33,0,0,-0.13605 -57779,3313:239:2,139.5,-33,0,0,-0.13605 -57780,3314:130:1,140,-33,0,0,-0.13605 -57781,3314:130:2,140.5,-33,0,0,-0.13605 -57782,3314:131:1,141,-33,0,0,-0.13605 -57783,3314:131:2,141.5,-33,0,0,-0.13605 -57784,3314:132:1,142,-33,0,0,-0.13605 -57785,3314:132:2,142.5,-33,0,0,-0.13605 -57786,3314:133:1,143,-33,0,0,-0.13605 -57787,3314:133:2,143.5,-33,0,0,-0.13605 -57788,3314:134:1,144,-33,0,0,-0.13605 -57789,3314:134:2,144.5,-33,0,0,-0.13605 -57790,3314:235:1,145,-33,0,0,-0.13605 -57791,3314:238:2,148.5,-33,0,0,-0.13605 -57792,3314:239:1,149,-33,0,0,-0.13605 -57793,3314:239:2,149.5,-33,0,0,-0.13605 -57794,3315:130:1,150,-33,0,0,-0.13605 -57795,3315:130:2,150.5,-33,0,0,-0.13605 -57796,3315:131:1,151,-33,0,0,-0.13605 -57797,3315:131:2,151.5,-33,0,0,-0.13605 -57798,3315:132:1,152,-33,0,0,-0.13605 -57799,3315:132:2,152.5,-33,0,0,-0.13605 -57800,3315:133:1,153,-33,0,0,-0.13605 -57801,3315:133:2,153.5,-33,0,0,-0.13605 -57802,3315:134:1,154,-33,0,0,-0.13605 -57803,3315:134:2,154.5,-33,0,0,-0.13605 -57804,3315:235:1,155,-33,0,0,-0.13605 -57805,3315:235:2,155.5,-33,0,0,-0.13605 -57806,3315:236:1,156,-33,0,0,-0.13605 -57807,3315:236:2,156.5,-33,0,0,-0.13605 -57808,3315:237:1,157,-33,0,0,-0.13605 -57809,3315:237:2,157.5,-33,0,0,-0.13605 -57810,3315:238:1,158,-33,0,0,-0.13605 -57811,3315:238:2,158.5,-33,0,0,-0.13605 -57812,3315:239:1,159,-33,0,0,-0.13605 -57813,3315:239:2,159.5,-33,0,0,-0.13605 -57814,3316:130:1,160,-33,0,0,-0.13605 -57815,3316:130:2,160.5,-33,0,0,-0.13605 -57816,3316:131:1,161,-33,0,0,-0.13605 -57817,3316:131:2,161.5,-33,0,0,-0.13605 -57818,3316:132:1,162,-33,0,0,-0.13605 -57819,3316:132:2,162.5,-33,0,0,-0.13605 -57820,3316:133:1,163,-33,0,0,-0.13605 -57821,3316:133:2,163.5,-33,0,0,-0.13605 -57822,3316:134:1,164,-33,0,0,-0.13605 -57823,3316:134:2,164.5,-33,0,0,-0.13605 -57824,3316:235:1,165,-33,0,0,-0.13605 -57825,3316:235:2,165.5,-33,0,0,-0.13605 -57826,3316:236:1,166,-33,0,0,-0.13605 -57827,3316:236:2,166.5,-33,0,0,-0.13605 -57828,3316:237:1,167,-33,0,0,-0.13605 -57829,3316:237:2,167.5,-33,0,0,-0.13605 -57830,3316:238:1,168,-33,0,0,-0.13605 -57831,3316:238:2,168.5,-33,0,0,-0.13605 -57832,3316:239:1,169,-33,0,0,-0.13605 -57833,3316:239:2,169.5,-33,0,0,-0.13605 -57834,3317:130:1,170,-33,0,0,-0.13605 -57835,3317:130:2,170.5,-33,0,0,-0.13605 -57836,3317:131:1,171,-33,0,0,-0.13605 -57837,3317:134:1,174,-33,0,0,-0.13605 -57838,3317:134:2,174.5,-33,0,0,-0.13605 -57839,3317:235:1,175,-33,0,0,-0.13605 -57840,3317:235:2,175.5,-33,0,0,-0.13605 -57841,3317:236:1,176,-33,0,0,-0.13605 -57842,3317:236:2,176.5,-33,0,0,-0.13605 -57843,3317:237:1,177,-33,0,0,-0.13605 -57844,3317:237:2,177.5,-33,0,0,-0.13605 -57845,3317:238:1,178,-33,0,0,-0.13605 -57846,3317:238:2,178.5,-33,0,0,-0.13605 -57847,3317:239:1,179,-33,0,0,-0.13605 -57848,3317:239:2,179.5,-33,0,0,-0.13605 -57849,3318:130:1,180,-33,0,0,-0.13605 -57850,5318:120:3,-180,-32.5,0,0,-0.13605 -57851,5317:229:4,-179.5,-32.5,0,0,-0.13605 -57852,5317:229:3,-179,-32.5,0,0,-0.13605 -57853,5317:228:4,-178.5,-32.5,0,0,-0.13605 -57854,5317:228:3,-178,-32.5,0,0,-0.13605 -57855,5317:227:4,-177.5,-32.5,0,0,-0.13605 -57856,5317:227:3,-177,-32.5,0,0,-0.13605 -57857,5317:226:4,-176.5,-32.5,0,0,-0.13605 -57858,5317:226:3,-176,-32.5,0,0,-0.13605 -57859,5317:225:4,-175.5,-32.5,0,0,-0.13605 -57860,5317:225:3,-175,-32.5,0,0,-0.13605 -57861,5317:124:4,-174.5,-32.5,0,0,-0.13605 -57862,5317:124:3,-174,-32.5,0,0,-0.13605 -57863,5317:123:4,-173.5,-32.5,0,0,-0.13605 -57864,5317:123:3,-173,-32.5,0,0,-0.13605 -57865,5317:122:4,-172.5,-32.5,0,0,-0.13605 -57866,5317:122:3,-172,-32.5,0,0,-0.13605 -57867,5317:121:4,-171.5,-32.5,0,0,-0.13605 -57868,5317:121:3,-171,-32.5,0,0,-0.13605 -57869,5317:120:4,-170.5,-32.5,0,0,-0.13605 -57870,5317:120:3,-170,-32.5,0,0,-0.13605 -57871,5316:229:4,-169.5,-32.5,0,0,-0.13605 -57872,5316:229:3,-169,-32.5,0,0,-0.13605 -57873,5316:228:4,-168.5,-32.5,0,0,-0.13605 -57874,5316:228:3,-168,-32.5,0,0,-0.13605 -57875,5316:227:4,-167.5,-32.5,0,0,-0.13605 -57876,5316:227:3,-167,-32.5,0,0,-0.13605 -57877,5316:226:4,-166.5,-32.5,0,0,-0.13605 -57878,5316:226:3,-166,-32.5,0,0,-0.13605 -57879,5316:225:4,-165.5,-32.5,0,0,-0.13605 -57880,5316:225:3,-165,-32.5,0,0,-0.13605 -57881,5316:124:4,-164.5,-32.5,0,0,-0.13605 -57882,5316:124:3,-164,-32.5,0,0,-0.13605 -57883,5316:123:4,-163.5,-32.5,0,0,-0.13605 -57884,5316:123:3,-163,-32.5,0,0,-0.13605 -57885,5316:122:4,-162.5,-32.5,0,0,-0.13605 -57886,5316:122:3,-162,-32.5,0,0,-0.13605 -57887,5316:121:4,-161.5,-32.5,0,0,-0.13605 -57888,5316:121:3,-161,-32.5,0,0,-0.13605 -57889,5316:120:4,-160.5,-32.5,0,0,-0.13605 -57890,5316:120:3,-160,-32.5,0,0,-0.13605 -57891,5315:229:4,-159.5,-32.5,0,0,-0.13605 -57892,5315:229:3,-159,-32.5,0,0,-0.13605 -57893,5315:228:4,-158.5,-32.5,0,0,-0.13605 -57894,5315:228:3,-158,-32.5,0,0,-0.13605 -57895,5315:227:4,-157.5,-32.5,0,0,-0.13605 -57896,5315:227:3,-157,-32.5,0,0,-0.13605 -57897,5315:226:4,-156.5,-32.5,0,0,-0.13605 -57898,5315:226:3,-156,-32.5,0,0,-0.13605 -57899,5315:225:4,-155.5,-32.5,0,0,-0.13605 -57900,5315:225:3,-155,-32.5,0,0,-0.13605 -57901,5315:124:4,-154.5,-32.5,0,0,-0.13605 -57902,5315:124:3,-154,-32.5,0,0,-0.13605 -57903,5315:123:4,-153.5,-32.5,0,0,-0.13605 -57904,5315:123:3,-153,-32.5,0,0,-0.13605 -57905,5315:122:4,-152.5,-32.5,0,0,-0.13605 -57906,5315:122:3,-152,-32.5,0,0,-0.13605 -57907,5315:121:4,-151.5,-32.5,0,0,-0.13605 -57908,5315:121:3,-151,-32.5,0,0,-0.13605 -57909,5315:120:4,-150.5,-32.5,0,0,-0.13605 -57910,5315:120:3,-150,-32.5,0,0,-0.13605 -57911,5314:229:4,-149.5,-32.5,0,0,-0.13605 -57912,5314:229:3,-149,-32.5,0,0,-0.13605 -57913,5314:228:4,-148.5,-32.5,0,0,-0.13605 -57914,5314:228:3,-148,-32.5,0,0,-0.13605 -57915,5314:227:4,-147.5,-32.5,0,0,-0.13605 -57916,5314:227:3,-147,-32.5,0,0,-0.13605 -57917,5314:226:4,-146.5,-32.5,0,0,-0.13605 -57918,5314:226:3,-146,-32.5,0,0,-0.13605 -57919,5314:225:4,-145.5,-32.5,0,0,-0.13605 -57920,5314:225:3,-145,-32.5,0,0,-0.13605 -57921,5314:124:4,-144.5,-32.5,0,0,-0.13605 -57922,5314:124:3,-144,-32.5,0,0,-0.13605 -57923,5314:123:4,-143.5,-32.5,0,0,-0.13605 -57924,5314:123:3,-143,-32.5,0,0,-0.13605 -57925,5314:122:4,-142.5,-32.5,0,0,-0.13605 -57926,5314:122:3,-142,-32.5,0,0,-0.13605 -57927,5314:121:4,-141.5,-32.5,0,0,-0.13605 -57928,5314:121:3,-141,-32.5,0,0,-0.13605 -57929,5314:120:4,-140.5,-32.5,0,0,-0.13605 -57930,5314:120:3,-140,-32.5,0,0,-0.13605 -57931,5313:229:4,-139.5,-32.5,0,0,-0.13605 -57932,5313:229:3,-139,-32.5,0,0,-0.13605 -57933,5313:228:4,-138.5,-32.5,0,0,-0.13605 -57934,5313:228:3,-138,-32.5,0,0,-0.13605 -57935,5313:227:4,-137.5,-32.5,0,0,-0.13605 -57936,5313:227:3,-137,-32.5,0,0,-0.13605 -57937,5313:226:4,-136.5,-32.5,0,0,-0.13605 -57938,5313:226:3,-136,-32.5,0,0,-0.13605 -57939,5313:225:4,-135.5,-32.5,0,0,-0.13605 -57940,5313:225:3,-135,-32.5,0,0,-0.13605 -57941,5313:124:4,-134.5,-32.5,0,0,-0.13605 -57942,5313:124:3,-134,-32.5,0,0,-0.13605 -57943,5313:123:4,-133.5,-32.5,0,0,-0.13605 -57944,5313:123:3,-133,-32.5,0,0,-0.13605 -57945,5313:122:4,-132.5,-32.5,0,0,-0.13605 -57946,5313:122:3,-132,-32.5,0,0,-0.13605 -57947,5313:121:4,-131.5,-32.5,0,0,-0.13605 -57948,5313:121:3,-131,-32.5,0,0,-0.13605 -57949,5313:120:4,-130.5,-32.5,0,0,-0.13605 -57950,5313:120:3,-130,-32.5,0,0,-0.13605 -57951,5312:229:4,-129.5,-32.5,0,0,-0.13605 -57952,5312:229:3,-129,-32.5,0,0,-0.13605 -57953,5312:228:4,-128.5,-32.5,0,0,-0.13605 -57954,5312:228:3,-128,-32.5,0,0,-0.13605 -57955,5312:227:4,-127.5,-32.5,0,0,-0.13605 -57956,5312:227:3,-127,-32.5,0,0,-0.13605 -57957,5312:226:4,-126.5,-32.5,0,0,-0.13605 -57958,5312:226:3,-126,-32.5,0,0,-0.13605 -57959,5312:225:4,-125.5,-32.5,0,0,-0.13605 -57960,5312:225:3,-125,-32.5,0,0,-0.13605 -57961,5312:124:4,-124.5,-32.5,0,0,-0.13605 -57962,5312:124:3,-124,-32.5,0,0,-0.13605 -57963,5312:123:4,-123.5,-32.5,0,0,-0.13605 -57964,5312:123:3,-123,-32.5,0,0,-0.13605 -57965,5312:122:4,-122.5,-32.5,0,0,-0.13605 -57966,5312:122:3,-122,-32.5,0,0,-0.13605 -57967,5312:121:4,-121.5,-32.5,0,0,-0.13605 -57968,5312:121:3,-121,-32.5,0,0,-0.13605 -57969,5312:120:4,-120.5,-32.5,0,0,-0.13605 -57970,5312:120:3,-120,-32.5,0,0,-0.13605 -57971,5311:229:4,-119.5,-32.5,0,0,-0.13605 -57972,5311:229:3,-119,-32.5,0,0,-0.13605 -57973,5311:228:4,-118.5,-32.5,0,0,-0.13605 -57974,5311:228:3,-118,-32.5,0,0,-0.13605 -57975,5311:227:4,-117.5,-32.5,0,0,-0.13605 -57976,5311:227:3,-117,-32.5,0,0,-0.13605 -57977,5311:226:4,-116.5,-32.5,0,0,-0.13605 -57978,5311:226:3,-116,-32.5,0,0,-0.13605 -57979,5311:225:4,-115.5,-32.5,0,0,-0.13605 -57980,5311:225:3,-115,-32.5,0,0,-0.13605 -57981,5311:124:4,-114.5,-32.5,0,0,-0.13605 -57982,5311:124:3,-114,-32.5,0,0,-0.13605 -57983,5311:123:4,-113.5,-32.5,0,0,-0.13605 -57984,5311:123:3,-113,-32.5,0,0,-0.13605 -57985,5311:122:4,-112.5,-32.5,0,0,-0.13605 -57986,5311:122:3,-112,-32.5,0,0,-0.13605 -57987,5311:121:4,-111.5,-32.5,0,0,-0.13605 -57988,5311:121:3,-111,-32.5,0,0,-0.13605 -57989,5311:120:4,-110.5,-32.5,0,0,-0.13605 -57990,5311:120:3,-110,-32.5,0,0,-0.13605 -57991,5310:229:4,-109.5,-32.5,0,0,-0.13605 -57992,5310:229:3,-109,-32.5,0,0,-0.13605 -57993,5310:228:4,-108.5,-32.5,0,0,-0.13605 -57994,5310:228:3,-108,-32.5,0,0,-0.13605 -57995,5310:227:4,-107.5,-32.5,0,0,-0.13605 -57996,5310:227:3,-107,-32.5,0,0,-0.13605 -57997,5310:226:4,-106.5,-32.5,0,0,-0.13605 -57998,5310:226:3,-106,-32.5,0,0,-0.13605 -57999,5310:225:4,-105.5,-32.5,0,0,-0.13605 -58000,5310:225:3,-105,-32.5,0,0,-0.13605 -58001,5310:124:4,-104.5,-32.5,0,0,-0.13605 -58002,5310:124:3,-104,-32.5,0,0,-0.13605 -58003,5310:123:4,-103.5,-32.5,0,0,-0.13605 -58004,5310:123:3,-103,-32.5,0,0,-0.13605 -58005,5310:122:4,-102.5,-32.5,0,0,-0.13605 -58006,5310:122:3,-102,-32.5,0,0,-0.13605 -58007,5310:121:4,-101.5,-32.5,0,0,-0.13605 -58008,5310:121:3,-101,-32.5,0,0,-0.13605 -58009,5310:120:4,-100.5,-32.5,0,0,-0.13605 -58010,5310:120:3,-100,-32.5,0,0,-0.13605 -58011,5309:229:4,-99.5,-32.5,0,0,-0.13605 -58012,5309:229:3,-99,-32.5,0,0,-0.13605 -58013,5309:228:4,-98.5,-32.5,0,0,-0.13605 -58014,5309:228:3,-98,-32.5,0,0,-0.13605 -58015,5309:227:4,-97.5,-32.5,0,0,-0.13605 -58016,5309:227:3,-97,-32.5,0,0,-0.13605 -58017,5309:226:4,-96.5,-32.5,0,0,-0.13605 -58018,5309:226:3,-96,-32.5,0,0,-0.13605 -58019,5309:225:4,-95.5,-32.5,0,0,-0.13605 -58020,5309:225:3,-95,-32.5,0,0,-0.13605 -58021,5309:124:4,-94.5,-32.5,0,0,-0.13605 -58022,5309:124:3,-94,-32.5,0,0,-0.13605 -58023,5309:123:4,-93.5,-32.5,0,0,-0.13605 -58024,5309:123:3,-93,-32.5,0,0,-0.13605 -58025,5309:122:4,-92.5,-32.5,0,0,-0.13605 -58026,5309:122:3,-92,-32.5,0,0,-0.13605 -58027,5309:121:4,-91.5,-32.5,0,0,-0.13605 -58028,5309:121:3,-91,-32.5,0,0,-0.13605 -58029,5309:120:4,-90.5,-32.5,0,0,-0.13605 -58030,5309:120:3,-90,-32.5,0,0,-0.13605 -58031,5308:229:4,-89.5,-32.5,0,0,-0.13605 -58032,5308:229:3,-89,-32.5,0,0,-0.13605 -58033,5308:228:4,-88.5,-32.5,0,0,-0.13605 -58034,5308:228:3,-88,-32.5,0,0,-0.13605 -58035,5308:227:4,-87.5,-32.5,0,0,-0.13605 -58036,5308:227:3,-87,-32.5,0,0,-0.135904 -58037,5308:226:4,-86.5,-32.5,0,0,-0.135983 -58038,5308:226:3,-86,-32.5,0,0,-0.13605 -58039,5308:225:4,-85.5,-32.5,0,0,-0.13605 -58040,5308:225:3,-85,-32.5,0,0,-0.13605 -58041,5308:124:4,-84.5,-32.5,0,0,-0.13605 -58042,5308:124:3,-84,-32.5,0,0,-0.13605 -58043,5308:123:4,-83.5,-32.5,0,0,-0.13605 -58044,5308:123:3,-83,-32.5,0,0,-0.13605 -58045,5308:122:4,-82.5,-32.5,0,0,-0.13605 -58046,5308:122:3,-82,-32.5,0,0,-0.13605 -58047,5308:121:4,-81.5,-32.5,0,0,-0.13605 -58048,5308:121:3,-81,-32.5,0,0,-0.135951 -58049,5308:120:4,-80.5,-32.5,0,0,-0.13605 -58050,5308:120:3,-80,-32.5,0,0,-0.13605 -58051,5307:229:4,-79.5,-32.5,0,0,-0.13605 -58052,5307:229:3,-79,-32.5,0,0,-0.13605 -58053,5307:228:4,-78.5,-32.5,0,0,-0.13605 -58054,5307:228:3,-78,-32.5,0,0,-0.13605 -58055,5307:227:4,-77.5,-32.5,0,0,-0.13605 -58056,5307:227:3,-77,-32.5,0,0,-0.13605 -58057,5307:226:4,-76.5,-32.5,0,0,-0.13605 -58058,5307:226:3,-76,-32.5,0,0,-0.13605 -58059,5307:225:4,-75.5,-32.5,0,0,-0.13605 -58060,5307:225:3,-75,-32.5,0,0,-0.13605 -58061,5307:124:4,-74.5,-32.5,0,0,-0.13605 -58062,5307:124:3,-74,-32.5,0,0,-0.13605 -58063,5307:123:3,-73,-32.5,0,0,-0.13605 -58064,5306:225:3,-65,-32.5,0,0,-0.13605 -58065,5306:124:4,-64.5,-32.5,0,0,-0.13605 -58066,5306:124:3,-64,-32.5,0,0,-0.13605 -58067,5306:123:4,-63.5,-32.5,0,0,-0.13605 -58068,5306:123:3,-63,-32.5,0,0,-0.13605 -58069,5306:122:4,-62.5,-32.5,0,0,-0.13605 -58070,5306:122:3,-62,-32.5,0,0,-0.13605 -58071,5306:121:4,-61.5,-32.5,0,0,-0.13605 -58072,5306:121:3,-61,-32.5,0,0,-0.13605 -58073,5306:120:4,-60.5,-32.5,0,0,-0.13605 -58074,5306:120:3,-60,-32.5,0,0,-0.13605 -58075,5305:229:4,-59.5,-32.5,0,0,-0.13605 -58076,5305:229:3,-59,-32.5,0,0,-0.13605 -58077,5305:228:4,-58.5,-32.5,0,0,-0.13605 -58078,5305:228:3,-58,-32.5,0,0,-0.13605 -58079,5305:227:4,-57.5,-32.5,0,0,-0.130249 -58080,5305:227:3,-57,-32.5,0,0,-0.10101 -58081,5305:226:4,-56.5,-32.5,0,0,-0.117845 -58082,5305:226:3,-56,-32.5,0,0,-0.13605 -58083,5305:225:4,-55.5,-32.5,0,0,-0.13605 -58084,5305:225:3,-55,-32.5,0,0,-0.13605 -58085,5305:124:4,-54.5,-32.5,0,0,-0.13605 -58086,5305:124:3,-54,-32.5,0,0,-0.13605 -58087,5305:123:4,-53.5,-32.5,0,0,-0.13605 -58088,5305:123:3,-53,-32.5,0,0,-0.13605 -58089,5305:122:4,-52.5,-32.5,0,0,-0.13605 -58090,5305:122:3,-52,-32.5,0,0,-0.13605 -58091,5305:121:4,-51.5,-32.5,0,0,-0.13605 -58092,5305:121:3,-51,-32.5,0,0,-0.13605 -58093,5305:120:4,-50.5,-32.5,0,0,-0.13605 -58094,5305:120:3,-50,-32.5,0,0,-0.13605 -58095,5304:229:4,-49.5,-32.5,0,0,-0.13605 -58096,5304:229:3,-49,-32.5,0,0,-0.13605 -58097,5304:228:4,-48.5,-32.5,0,0,-0.13605 -58098,5304:228:3,-48,-32.5,0,0,-0.13605 -58099,5304:227:4,-47.5,-32.5,0,0,-0.13605 -58100,5304:227:3,-47,-32.5,0,0,-0.13605 -58101,5304:226:4,-46.5,-32.5,0,0,-0.13605 -58102,5304:226:3,-46,-32.5,0,0,-0.13605 -58103,5304:225:4,-45.5,-32.5,0,0,-0.13605 -58104,5304:225:3,-45,-32.5,0,0,-0.13605 -58105,5304:124:4,-44.5,-32.5,0,0,-0.13605 -58106,5304:124:3,-44,-32.5,0,0,-0.13605 -58107,5304:123:4,-43.5,-32.5,0,0,-0.13605 -58108,5304:123:3,-43,-32.5,0,0,-0.13605 -58109,5304:122:4,-42.5,-32.5,0,0,-0.13605 -58110,5304:122:3,-42,-32.5,0,0,-0.13605 -58111,5304:121:4,-41.5,-32.5,0,0,-0.13605 -58112,5304:121:3,-41,-32.5,0,0,-0.13605 -58113,5304:120:4,-40.5,-32.5,0,0,-0.13605 -58114,5304:120:3,-40,-32.5,0,0,-0.13605 -58115,5303:229:4,-39.5,-32.5,0,0,-0.13605 -58116,5303:229:3,-39,-32.5,0,0,-0.135129 -58117,5303:228:4,-38.5,-32.5,0,0,-0.113511 -58118,5303:228:3,-38,-32.5,0,0,-0.108658 -58119,5303:227:4,-37.5,-32.5,0,0,-0.121969 -58120,5303:227:3,-37,-32.5,0,0,-0.13605 -58121,5303:226:4,-36.5,-32.5,0,0,-0.13605 -58122,5303:226:3,-36,-32.5,0,0,-0.13605 -58123,5303:225:4,-35.5,-32.5,0,0,-0.13605 -58124,5303:225:3,-35,-32.5,0,0,-0.13605 -58125,5303:124:4,-34.5,-32.5,0,0,-0.132085 -58126,5303:124:3,-34,-32.5,0,0,-0.121245 -58127,5303:123:4,-33.5,-32.5,0,0,-0.119991 -58128,5303:123:3,-33,-32.5,0,0,-0.13288 -58129,5303:122:4,-32.5,-32.5,0,0,-0.13605 -58130,5303:122:3,-32,-32.5,0,0,-0.13605 -58131,5303:121:4,-31.5,-32.5,0,0,-0.13605 -58132,5303:121:3,-31,-32.5,0,0,-0.13605 -58133,5303:120:4,-30.5,-32.5,0,0,-0.13605 -58134,5303:120:3,-30,-32.5,0,0,-0.13605 -58135,5302:229:4,-29.5,-32.5,0,0,-0.13605 -58136,5302:229:3,-29,-32.5,0,0,-0.13605 -58137,5302:228:4,-28.5,-32.5,0,0,-0.13605 -58138,5302:228:3,-28,-32.5,0,0,-0.13605 -58139,5302:227:4,-27.5,-32.5,0,0,-0.133882 -58140,5302:227:3,-27,-32.5,0,0,-0.13605 -58141,5302:226:4,-26.5,-32.5,0,0,-0.13605 -58142,5302:226:3,-26,-32.5,0,0,-0.13605 -58143,5302:225:4,-25.5,-32.5,0,0,-0.13605 -58144,5302:225:3,-25,-32.5,0,0,-0.13605 -58145,5302:124:4,-24.5,-32.5,0,0,-0.13605 -58146,5302:124:3,-24,-32.5,0,0,-0.13605 -58147,5302:123:4,-23.5,-32.5,0,0,-0.13605 -58148,5302:123:3,-23,-32.5,0,0,-0.13605 -58149,5302:122:4,-22.5,-32.5,0,0,-0.13605 -58150,5302:122:3,-22,-32.5,0,0,-0.13605 -58151,5302:121:4,-21.5,-32.5,0,0,-0.13605 -58152,5302:121:3,-21,-32.5,0,0,-0.13605 -58153,5302:120:4,-20.5,-32.5,0,0,-0.13605 -58154,5302:120:3,-20,-32.5,0,0,-0.135537 -58155,5301:229:4,-19.5,-32.5,0,0,-0.120557 -58156,5301:229:3,-19,-32.5,0,0,-0.108075 -58157,5301:228:4,-18.5,-32.5,0,0,-0.0990892 -58158,5301:228:3,-18,-32.5,0,0,-0.0917272 -58159,5301:227:4,-17.5,-32.5,0,0,-0.0769207 -58160,5301:227:3,-17,-32.5,0,0,-0.0678759 -58161,5301:226:4,-16.5,-32.5,0,0,-0.0689418 -58162,5301:226:3,-16,-32.5,0,0,-0.0744211 -58163,5301:225:4,-15.5,-32.5,0,0,-0.0856706 -58164,5301:225:3,-15,-32.5,0,0,-0.12218 -58165,5301:124:4,-14.5,-32.5,0,0,-0.13605 -58166,5301:124:3,-14,-32.5,0,0,-0.13605 -58167,5301:123:4,-13.5,-32.5,0,0,-0.13605 -58168,5301:123:3,-13,-32.5,0,0,-0.13605 -58169,5301:122:4,-12.5,-32.5,0,0,-0.135503 -58170,5301:122:3,-12,-32.5,0,0,-0.121065 -58171,5301:121:4,-11.5,-32.5,0,0,-0.119784 -58172,5301:121:3,-11,-32.5,0,0,-0.119547 -58173,5301:120:4,-10.5,-32.5,0,0,-0.120586 -58174,5301:120:3,-10,-32.5,0,0,-0.123675 -58175,5300:229:4,-9.5,-32.5,0,0,-0.121096 -58176,5300:229:3,-9,-32.5,0,0,-0.117642 -58177,5300:228:4,-8.5,-32.5,0,0,-0.116543 -58178,5300:228:3,-8,-32.5,0,0,-0.118898 -58179,5300:227:4,-7.5,-32.5,0,0,-0.131919 -58180,5300:227:3,-7,-32.5,0,0,-0.13605 -58181,5300:226:4,-6.5,-32.5,0,0,-0.13605 -58182,5300:226:3,-6,-32.5,0,0,-0.132481 -58183,5300:225:4,-5.5,-32.5,0,0,-0.122727 -58184,5300:225:3,-5,-32.5,0,0,-0.117874 -58185,5300:124:4,-4.5,-32.5,0,0,-0.115002 -58186,5300:124:3,-4,-32.5,0,0,-0.112152 -58187,5300:123:4,-3.5,-32.5,0,0,-0.11276 -58188,5300:123:3,-3,-32.5,0,0,-0.117438 -58189,5300:122:4,-2.5,-32.5,0,0,-0.120796 -58190,5300:122:3,-2,-32.5,0,0,-0.118048 -58191,5300:121:4,-1.5,-32.5,0,0,-0.114352 -58192,5300:121:3,-1,-32.5,0,0,-0.11111 -58193,5300:120:4,-0.5,-32.5,0,0,-0.108525 -58194,3300:120:4,0,-32.5,0,0,-0.109594 -58195,3300:120:4,0.5,-32.5,0,0,-0.112677 -58196,3300:121:3,1,-32.5,0,0,-0.116745 -58197,3300:121:4,1.5,-32.5,0,0,-0.120467 -58198,3300:122:3,2,-32.5,0,0,-0.120258 -58199,3300:122:4,2.5,-32.5,0,0,-0.115115 -58200,3300:123:3,3,-32.5,0,0,-0.105387 -58201,3300:123:4,3.5,-32.5,0,0,-0.0994991 -58202,3300:124:3,4,-32.5,0,0,-0.100471 -58203,3300:124:4,4.5,-32.5,0,0,-0.107336 -58204,3300:225:3,5,-32.5,0,0,-0.114015 -58205,3300:225:4,5.5,-32.5,0,0,-0.113735 -58206,3300:226:3,6,-32.5,0,0,-0.112289 -58207,3300:226:4,6.5,-32.5,0,0,-0.112124 -58208,3300:227:3,7,-32.5,0,0,-0.1081 -58209,3300:227:4,7.5,-32.5,0,0,-0.0967616 -58210,3300:228:3,8,-32.5,0,0,-0.0946762 -58211,3300:228:4,8.5,-32.5,0,0,-0.0920601 -58212,3300:229:3,9,-32.5,0,0,-0.0889637 -58213,3300:229:4,9.5,-32.5,0,0,-0.0873109 -58214,3301:120:3,10,-32.5,0,0,-0.0873948 -58215,3301:120:4,10.5,-32.5,0,0,-0.0887498 -58216,3301:121:3,11,-32.5,0,0,-0.0907591 -58217,3301:121:4,11.5,-32.5,0,0,-0.095759 -58218,3301:122:3,12,-32.5,0,0,-0.101651 -58219,3301:122:4,12.5,-32.5,0,0,-0.108658 -58220,3301:123:3,13,-32.5,0,0,-0.124445 -58221,3301:123:4,13.5,-32.5,0,0,-0.128794 -58222,3301:124:3,14,-32.5,0,0,-0.133714 -58223,3301:124:4,14.5,-32.5,0,0,-0.13605 -58224,3301:225:3,15,-32.5,0,0,-0.13605 -58225,3301:225:4,15.5,-32.5,0,0,-0.13605 -58226,3301:226:3,16,-32.5,0,0,-0.13605 -58227,3301:226:4,16.5,-32.5,0,0,-0.13605 -58228,3301:227:3,17,-32.5,0,0,-0.13605 -58229,3301:227:4,17.5,-32.5,0,0,-0.13605 -58230,3301:228:3,18,-32.5,0,0,-0.13605 -58231,3301:228:4,18.5,-32.5,0,0,-0.13605 -58232,3301:229:3,19,-32.5,0,0,-0.13605 -58233,3301:229:4,19.5,-32.5,0,0,-0.13605 -58234,3302:120:3,20,-32.5,0,0,-0.13605 -58235,3302:120:4,20.5,-32.5,0,0,-0.13605 -58236,3302:121:3,21,-32.5,0,0,-0.13605 -58237,3302:121:4,21.5,-32.5,0,0,-0.13605 -58238,3302:122:3,22,-32.5,0,0,-0.13605 -58239,3302:122:4,22.5,-32.5,0,0,-0.13605 -58240,3302:123:3,23,-32.5,0,0,-0.13605 -58241,3302:123:4,23.5,-32.5,0,0,-0.13605 -58242,3302:124:3,24,-32.5,0,0,-0.13605 -58243,3302:124:4,24.5,-32.5,0,0,-0.13605 -58244,3302:225:3,25,-32.5,0,0,-0.13605 -58245,3302:225:4,25.5,-32.5,0,0,-0.13605 -58246,3302:226:3,26,-32.5,0,0,-0.13605 -58247,3302:226:4,26.5,-32.5,0,0,-0.13605 -58248,3302:227:3,27,-32.5,0,0,-0.13605 -58249,3302:227:4,27.5,-32.5,0,0,-0.13605 -58250,3302:228:3,28,-32.5,0,0,-0.13605 -58251,3302:228:4,28.5,-32.5,0,0,-0.13605 -58252,3302:229:3,29,-32.5,0,0,-0.13605 -58253,3302:229:4,29.5,-32.5,0,0,-0.13605 -58254,3303:120:3,30,-32.5,0,0,-0.13605 -58255,3303:120:4,30.5,-32.5,0,0,-0.13605 -58256,3303:121:3,31,-32.5,0,0,-0.13605 -58257,3303:121:4,31.5,-32.5,0,0,-0.13605 -58258,3303:122:3,32,-32.5,0,0,-0.13605 -58259,3303:122:4,32.5,-32.5,0,0,-0.13605 -58260,3303:123:3,33,-32.5,0,0,-0.13605 -58261,3303:123:4,33.5,-32.5,0,0,-0.13605 -58262,3303:124:3,34,-32.5,0,0,-0.13605 -58263,3303:124:4,34.5,-32.5,0,0,-0.13605 -58264,3303:225:3,35,-32.5,0,0,-0.13605 -58265,3303:225:4,35.5,-32.5,0,0,-0.13605 -58266,3303:226:3,36,-32.5,0,0,-0.13605 -58267,3303:226:4,36.5,-32.5,0,0,-0.13605 -58268,3303:227:3,37,-32.5,0,0,-0.13605 -58269,3303:227:4,37.5,-32.5,0,0,-0.13605 -58270,3303:228:3,38,-32.5,0,0,-0.13605 -58271,3303:228:4,38.5,-32.5,0,0,-0.13605 -58272,3303:229:3,39,-32.5,0,0,-0.13605 -58273,3303:229:4,39.5,-32.5,0,0,-0.13605 -58274,3304:120:3,40,-32.5,0,0,-0.13605 -58275,3304:120:4,40.5,-32.5,0,0,-0.13605 -58276,3304:121:3,41,-32.5,0,0,-0.13605 -58277,3304:121:4,41.5,-32.5,0,0,-0.123215 -58278,3304:122:3,42,-32.5,0,0,-0.100667 -58279,3304:122:4,42.5,-32.5,0,0,-0.111959 -58280,3304:123:3,43,-32.5,0,0,-0.13605 -58281,3304:123:4,43.5,-32.5,0,0,-0.13605 -58282,3304:124:3,44,-32.5,0,0,-0.13605 -58283,3304:124:4,44.5,-32.5,0,0,-0.13605 -58284,3304:225:3,45,-32.5,0,0,-0.13605 -58285,3304:225:4,45.5,-32.5,0,0,-0.13605 -58286,3304:226:3,46,-32.5,0,0,-0.13605 -58287,3304:226:4,46.5,-32.5,0,0,-0.13605 -58288,3304:227:3,47,-32.5,0,0,-0.111028 -58289,3304:227:4,47.5,-32.5,0,0,-0.115314 -58290,3304:228:3,48,-32.5,0,0,-0.118487 -58291,3304:228:4,48.5,-32.5,0,0,-0.124136 -58292,3304:229:3,49,-32.5,0,0,-0.13605 -58293,3304:229:4,49.5,-32.5,0,0,-0.13605 -58294,3305:120:3,50,-32.5,0,0,-0.13605 -58295,3305:120:4,50.5,-32.5,0,0,-0.13605 -58296,3305:121:3,51,-32.5,0,0,-0.13605 -58297,3305:121:4,51.5,-32.5,0,0,-0.13605 -58298,3305:122:3,52,-32.5,0,0,-0.13605 -58299,3305:122:4,52.5,-32.5,0,0,-0.0962237 -58300,3305:123:3,53,-32.5,0,0,-0.114127 -58301,3305:123:4,53.5,-32.5,0,0,-0.104694 -58302,3305:124:3,54,-32.5,0,0,-0.115059 -58303,3305:124:4,54.5,-32.5,0,0,-0.13605 -58304,3305:225:3,55,-32.5,0,0,-0.13605 -58305,3305:225:4,55.5,-32.5,0,0,-0.13605 -58306,3305:226:3,56,-32.5,0,0,-0.13605 -58307,3305:226:4,56.5,-32.5,0,0,-0.13605 -58308,3305:227:3,57,-32.5,0,0,-0.13605 -58309,3305:227:4,57.5,-32.5,0,0,-0.13605 -58310,3305:228:3,58,-32.5,0,0,-0.13605 -58311,3305:228:4,58.5,-32.5,0,0,-0.13605 -58312,3305:229:3,59,-32.5,0,0,-0.13605 -58313,3305:229:4,59.5,-32.5,0,0,-0.13605 -58314,3306:120:3,60,-32.5,0,0,-0.13605 -58315,3306:120:4,60.5,-32.5,0,0,-0.13605 -58316,3306:121:3,61,-32.5,0,0,-0.13605 -58317,3306:121:4,61.5,-32.5,0,0,-0.13605 -58318,3306:122:3,62,-32.5,0,0,-0.13605 -58319,3306:122:4,62.5,-32.5,0,0,-0.13605 -58320,3306:123:3,63,-32.5,0,0,-0.13605 -58321,3306:123:4,63.5,-32.5,0,0,-0.13605 -58322,3306:124:3,64,-32.5,0,0,-0.13605 -58323,3306:124:4,64.5,-32.5,0,0,-0.13605 -58324,3306:225:3,65,-32.5,0,0,-0.13605 -58325,3306:225:4,65.5,-32.5,0,0,-0.13605 -58326,3306:226:3,66,-32.5,0,0,-0.13605 -58327,3306:226:4,66.5,-32.5,0,0,-0.13605 -58328,3306:227:3,67,-32.5,0,0,-0.110865 -58329,3306:227:4,67.5,-32.5,0,0,-0.103047 -58330,3306:228:3,68,-32.5,0,0,-0.121546 -58331,3306:228:4,68.5,-32.5,0,0,-0.13605 -58332,3306:229:3,69,-32.5,0,0,-0.13605 -58333,3306:229:4,69.5,-32.5,0,0,-0.13605 -58334,3307:120:3,70,-32.5,0,0,-0.13605 -58335,3307:120:4,70.5,-32.5,0,0,-0.13605 -58336,3307:121:3,71,-32.5,0,0,-0.13605 -58337,3307:121:4,71.5,-32.5,0,0,-0.13605 -58338,3307:122:3,72,-32.5,0,0,-0.13605 -58339,3307:122:4,72.5,-32.5,0,0,-0.13605 -58340,3307:123:4,73.5,-32.5,0,0,-0.13605 -58341,3307:124:3,74,-32.5,0,0,-0.13605 -58342,3307:124:4,74.5,-32.5,0,0,-0.13605 -58343,3307:225:3,75,-32.5,0,0,-0.13605 -58344,3307:225:4,75.5,-32.5,0,0,-0.13605 -58345,3307:226:3,76,-32.5,0,0,-0.13605 -58346,3307:226:4,76.5,-32.5,0,0,-0.13605 -58347,3307:227:3,77,-32.5,0,0,-0.13605 -58348,3307:227:4,77.5,-32.5,0,0,-0.127104 -58349,3307:228:3,78,-32.5,0,0,-0.124879 -58350,3307:228:4,78.5,-32.5,0,0,-0.131919 -58351,3307:229:3,79,-32.5,0,0,-0.13605 -58352,3307:229:4,79.5,-32.5,0,0,-0.13605 -58353,3308:120:3,80,-32.5,0,0,-0.13605 -58354,3308:120:4,80.5,-32.5,0,0,-0.13605 -58355,3308:121:3,81,-32.5,0,0,-0.13605 -58356,3308:121:4,81.5,-32.5,0,0,-0.13605 -58357,3308:122:3,82,-32.5,0,0,-0.13605 -58358,3308:122:4,82.5,-32.5,0,0,-0.136 -58359,3308:123:3,83,-32.5,0,0,-0.133848 -58360,3308:123:4,83.5,-32.5,0,0,-0.133446 -58361,3308:124:3,84,-32.5,0,0,-0.130868 -58362,3308:124:4,84.5,-32.5,0,0,-0.119694 -58363,3308:225:3,85,-32.5,0,0,-0.108818 -58364,3308:225:4,85.5,-32.5,0,0,-0.103047 -58365,3308:226:3,86,-32.5,0,0,-0.104745 -58366,3308:226:4,86.5,-32.5,0,0,-0.106734 -58367,3308:227:3,87,-32.5,0,0,-0.10826 -58368,3308:227:4,87.5,-32.5,0,0,-0.114184 -58369,3308:228:3,88,-32.5,0,0,-0.121005 -58370,3308:228:4,88.5,-32.5,0,0,-0.123246 -58371,3308:229:3,89,-32.5,0,0,-0.121697 -58372,3308:229:4,89.5,-32.5,0,0,-0.115827 -58373,3309:120:3,90,-32.5,0,0,-0.112843 -58374,3309:120:4,90.5,-32.5,0,0,-0.116027 -58375,3309:121:3,91,-32.5,0,0,-0.123921 -58376,3309:121:4,91.5,-32.5,0,0,-0.134791 -58377,3309:122:3,92,-32.5,0,0,-0.13605 -58378,3309:122:4,92.5,-32.5,0,0,-0.13605 -58379,3309:123:3,93,-32.5,0,0,-0.13605 -58380,3309:123:4,93.5,-32.5,0,0,-0.13605 -58381,3309:124:3,94,-32.5,0,0,-0.13605 -58382,3309:124:4,94.5,-32.5,0,0,-0.13605 -58383,3309:225:3,95,-32.5,0,0,-0.13605 -58384,3309:225:4,95.5,-32.5,0,0,-0.13605 -58385,3309:226:3,96,-32.5,0,0,-0.13605 -58386,3309:226:4,96.5,-32.5,0,0,-0.13605 -58387,3309:227:3,97,-32.5,0,0,-0.135951 -58388,3309:227:4,97.5,-32.5,0,0,-0.135027 -58389,3309:228:3,98,-32.5,0,0,-0.132846 -58390,3309:228:4,98.5,-32.5,0,0,-0.130835 -58391,3309:229:3,99,-32.5,0,0,-0.131919 -58392,3309:229:4,99.5,-32.5,0,0,-0.132415 -58393,3310:120:3,100,-32.5,0,0,-0.136 -58394,3310:120:4,100.5,-32.5,0,0,-0.13605 -58395,3310:121:3,101,-32.5,0,0,-0.13597 -58396,3310:121:4,101.5,-32.5,0,0,-0.134251 -58397,3310:122:3,102,-32.5,0,0,-0.130151 -58398,3310:122:4,102.5,-32.5,0,0,-0.127009 -58399,3310:123:3,103,-32.5,0,0,-0.125439 -58400,3310:123:4,103.5,-32.5,0,0,-0.125189 -58401,3310:124:3,104,-32.5,0,0,-0.126756 -58402,3310:124:4,104.5,-32.5,0,0,-0.130379 -58403,3310:225:3,105,-32.5,0,0,-0.134723 -58404,3310:225:4,105.5,-32.5,0,0,-0.135896 -58405,3310:226:3,106,-32.5,0,0,-0.13415 -58406,3310:226:4,106.5,-32.5,0,0,-0.131656 -58407,3310:227:3,107,-32.5,0,0,-0.128987 -58408,3310:227:4,107.5,-32.5,0,0,-0.127802 -58409,3310:228:3,108,-32.5,0,0,-0.126693 -58410,3310:228:4,108.5,-32.5,0,0,-0.125594 -58411,3310:229:3,109,-32.5,0,0,-0.124445 -58412,3310:229:4,109.5,-32.5,0,0,-0.124476 -58413,3311:120:3,110,-32.5,0,0,-0.124537 -58414,3311:120:4,110.5,-32.5,0,0,-0.124075 -58415,3311:121:3,111,-32.5,0,0,-0.124692 -58416,3311:121:4,111.5,-32.5,0,0,-0.124383 -58417,3311:122:3,112,-32.5,0,0,-0.121938 -58418,3311:122:4,112.5,-32.5,0,0,-0.119784 -58419,3311:123:3,113,-32.5,0,0,-0.120975 -58420,3311:123:4,113.5,-32.5,0,0,-0.124198 -58421,3311:124:3,114,-32.5,0,0,-0.12889 -58422,3311:124:4,114.5,-32.5,0,0,-0.13136 -58423,3311:225:3,115,-32.5,0,0,-0.127962 -58424,3311:225:4,115.5,-32.5,0,0,-0.12522 -58425,3311:226:3,116,-32.5,0,0,-0.126441 -58426,3311:226:4,116.5,-32.5,0,0,-0.129245 -58427,3311:227:3,117,-32.5,0,0,-0.13159 -58428,3311:227:4,117.5,-32.5,0,0,-0.132381 -58429,3311:228:3,118,-32.5,0,0,-0.133046 -58430,3311:228:4,118.5,-32.5,0,0,-0.135401 -58431,3311:229:3,119,-32.5,0,0,-0.13605 -58432,3311:229:4,119.5,-32.5,0,0,-0.13605 -58433,3312:120:3,120,-32.5,0,0,-0.13605 -58434,3312:120:4,120.5,-32.5,0,0,-0.13605 -58435,3312:121:3,121,-32.5,0,0,-0.13605 -58436,3312:121:4,121.5,-32.5,0,0,-0.13605 -58437,3312:122:3,122,-32.5,0,0,-0.13605 -58438,3312:122:4,122.5,-32.5,0,0,-0.13605 -58439,3312:123:3,123,-32.5,0,0,-0.13605 -58440,3312:123:4,123.5,-32.5,0,0,-0.13605 -58441,3312:124:3,124,-32.5,0,0,-0.13605 -58442,3312:124:4,124.5,-32.5,0,0,-0.13605 -58443,3312:225:3,125,-32.5,0,0,-0.135967 -58444,3312:225:4,125.5,-32.5,0,0,-0.136016 -58445,3312:226:3,126,-32.5,0,0,-0.13605 -58446,3312:226:4,126.5,-32.5,0,0,-0.13605 -58447,3312:227:3,127,-32.5,0,0,-0.13605 -58448,3312:227:4,127.5,-32.5,0,0,-0.13605 -58449,3312:228:3,128,-32.5,0,0,-0.13605 -58450,3312:228:4,128.5,-32.5,0,0,-0.13605 -58451,3312:229:3,129,-32.5,0,0,-0.13605 -58452,3312:229:4,129.5,-32.5,0,0,-0.13605 -58453,3313:120:3,130,-32.5,0,0,-0.13605 -58454,3313:120:4,130.5,-32.5,0,0,-0.13605 -58455,3313:121:3,131,-32.5,0,0,-0.13605 -58456,3313:121:4,131.5,-32.5,0,0,-0.13605 -58457,3313:122:3,132,-32.5,0,0,-0.13605 -58458,3313:122:4,132.5,-32.5,0,0,-0.13605 -58459,3313:123:3,133,-32.5,0,0,-0.13605 -58460,3313:123:4,133.5,-32.5,0,0,-0.13605 -58461,3313:124:3,134,-32.5,0,0,-0.13605 -58462,3313:124:4,134.5,-32.5,0,0,-0.13605 -58463,3313:225:3,135,-32.5,0,0,-0.13605 -58464,3313:225:4,135.5,-32.5,0,0,-0.13605 -58465,3313:226:3,136,-32.5,0,0,-0.13605 -58466,3313:226:4,136.5,-32.5,0,0,-0.13605 -58467,3313:227:3,137,-32.5,0,0,-0.13605 -58468,3313:227:4,137.5,-32.5,0,0,-0.13605 -58469,3313:228:3,138,-32.5,0,0,-0.13605 -58470,3313:228:4,138.5,-32.5,0,0,-0.13605 -58471,3313:229:3,139,-32.5,0,0,-0.13605 -58472,3313:229:4,139.5,-32.5,0,0,-0.13605 -58473,3314:120:3,140,-32.5,0,0,-0.13605 -58474,3314:120:4,140.5,-32.5,0,0,-0.13605 -58475,3314:121:3,141,-32.5,0,0,-0.13605 -58476,3314:121:4,141.5,-32.5,0,0,-0.13605 -58477,3314:122:3,142,-32.5,0,0,-0.13605 -58478,3314:122:4,142.5,-32.5,0,0,-0.13605 -58479,3314:123:3,143,-32.5,0,0,-0.13605 -58480,3314:123:4,143.5,-32.5,0,0,-0.13605 -58481,3314:124:3,144,-32.5,0,0,-0.13605 -58482,3314:124:4,144.5,-32.5,0,0,-0.13605 -58483,3314:225:3,145,-32.5,0,0,-0.13605 -58484,3314:229:3,149,-32.5,0,0,-0.13605 -58485,3314:229:4,149.5,-32.5,0,0,-0.13605 -58486,3315:120:3,150,-32.5,0,0,-0.13605 -58487,3315:120:4,150.5,-32.5,0,0,-0.13605 -58488,3315:121:3,151,-32.5,0,0,-0.13605 -58489,3315:121:4,151.5,-32.5,0,0,-0.13605 -58490,3315:122:3,152,-32.5,0,0,-0.13605 -58491,3315:122:4,152.5,-32.5,0,0,-0.13605 -58492,3315:123:3,153,-32.5,0,0,-0.13605 -58493,3315:123:4,153.5,-32.5,0,0,-0.13605 -58494,3315:124:3,154,-32.5,0,0,-0.13605 -58495,3315:124:4,154.5,-32.5,0,0,-0.13605 -58496,3315:225:3,155,-32.5,0,0,-0.13605 -58497,3315:225:4,155.5,-32.5,0,0,-0.13605 -58498,3315:226:3,156,-32.5,0,0,-0.13605 -58499,3315:226:4,156.5,-32.5,0,0,-0.13605 -58500,3315:227:3,157,-32.5,0,0,-0.13605 -58501,3315:227:4,157.5,-32.5,0,0,-0.13605 -58502,3315:228:3,158,-32.5,0,0,-0.13605 -58503,3315:228:4,158.5,-32.5,0,0,-0.13605 -58504,3315:229:3,159,-32.5,0,0,-0.13605 -58505,3315:229:4,159.5,-32.5,0,0,-0.13605 -58506,3316:120:3,160,-32.5,0,0,-0.13605 -58507,3316:120:4,160.5,-32.5,0,0,-0.13605 -58508,3316:121:3,161,-32.5,0,0,-0.13605 -58509,3316:121:4,161.5,-32.5,0,0,-0.13605 -58510,3316:122:3,162,-32.5,0,0,-0.13605 -58511,3316:122:4,162.5,-32.5,0,0,-0.13605 -58512,3316:123:3,163,-32.5,0,0,-0.13605 -58513,3316:123:4,163.5,-32.5,0,0,-0.13605 -58514,3316:124:3,164,-32.5,0,0,-0.13605 -58515,3316:124:4,164.5,-32.5,0,0,-0.13605 -58516,3316:225:3,165,-32.5,0,0,-0.13605 -58517,3316:225:4,165.5,-32.5,0,0,-0.13605 -58518,3316:226:3,166,-32.5,0,0,-0.13605 -58519,3316:226:4,166.5,-32.5,0,0,-0.13605 -58520,3316:227:3,167,-32.5,0,0,-0.13605 -58521,3316:227:4,167.5,-32.5,0,0,-0.13605 -58522,3316:228:3,168,-32.5,0,0,-0.13605 -58523,3316:228:4,168.5,-32.5,0,0,-0.13605 -58524,3316:229:3,169,-32.5,0,0,-0.13605 -58525,3316:229:4,169.5,-32.5,0,0,-0.13605 -58526,3317:120:3,170,-32.5,0,0,-0.13605 -58527,3317:120:4,170.5,-32.5,0,0,-0.13605 -58528,3317:121:3,171,-32.5,0,0,-0.13605 -58529,3317:121:4,171.5,-32.5,0,0,-0.13605 -58530,3317:124:4,174.5,-32.5,0,0,-0.13605 -58531,3317:225:3,175,-32.5,0,0,-0.13605 -58532,3317:225:4,175.5,-32.5,0,0,-0.13605 -58533,3317:226:3,176,-32.5,0,0,-0.13605 -58534,3317:226:4,176.5,-32.5,0,0,-0.13605 -58535,3317:227:3,177,-32.5,0,0,-0.13605 -58536,3317:227:4,177.5,-32.5,0,0,-0.13605 -58537,3317:228:3,178,-32.5,0,0,-0.13605 -58538,3317:228:4,178.5,-32.5,0,0,-0.13605 -58539,3317:229:3,179,-32.5,0,0,-0.13605 -58540,3317:229:4,179.5,-32.5,0,0,-0.13605 -58541,3318:120:3,180,-32.5,0,0,-0.13605 -58542,5318:120:1,-180,-32,0,0,-0.13605 -58543,5317:229:2,-179.5,-32,0,0,-0.13605 -58544,5317:229:1,-179,-32,0,0,-0.13605 -58545,5317:228:2,-178.5,-32,0,0,-0.13605 -58546,5317:228:1,-178,-32,0,0,-0.13605 -58547,5317:227:2,-177.5,-32,0,0,-0.13605 -58548,5317:227:1,-177,-32,0,0,-0.13605 -58549,5317:226:2,-176.5,-32,0,0,-0.13605 -58550,5317:226:1,-176,-32,0,0,-0.13605 -58551,5317:225:2,-175.5,-32,0,0,-0.13605 -58552,5317:225:1,-175,-32,0,0,-0.13605 -58553,5317:124:2,-174.5,-32,0,0,-0.13605 -58554,5317:124:1,-174,-32,0,0,-0.13605 -58555,5317:123:2,-173.5,-32,0,0,-0.13605 -58556,5317:123:1,-173,-32,0,0,-0.13605 -58557,5317:122:2,-172.5,-32,0,0,-0.13605 -58558,5317:122:1,-172,-32,0,0,-0.13605 -58559,5317:121:2,-171.5,-32,0,0,-0.13605 -58560,5317:121:1,-171,-32,0,0,-0.13605 -58561,5317:120:2,-170.5,-32,0,0,-0.13605 -58562,5317:120:1,-170,-32,0,0,-0.13605 -58563,5316:229:2,-169.5,-32,0,0,-0.13605 -58564,5316:229:1,-169,-32,0,0,-0.13605 -58565,5316:228:2,-168.5,-32,0,0,-0.13605 -58566,5316:228:1,-168,-32,0,0,-0.13605 -58567,5316:227:2,-167.5,-32,0,0,-0.13605 -58568,5316:227:1,-167,-32,0,0,-0.13605 -58569,5316:226:2,-166.5,-32,0,0,-0.13605 -58570,5316:226:1,-166,-32,0,0,-0.13605 -58571,5316:225:2,-165.5,-32,0,0,-0.13605 -58572,5316:225:1,-165,-32,0,0,-0.13605 -58573,5316:124:2,-164.5,-32,0,0,-0.13605 -58574,5316:124:1,-164,-32,0,0,-0.13605 -58575,5316:123:2,-163.5,-32,0,0,-0.13605 -58576,5316:123:1,-163,-32,0,0,-0.13605 -58577,5316:122:2,-162.5,-32,0,0,-0.13605 -58578,5316:122:1,-162,-32,0,0,-0.13605 -58579,5316:121:2,-161.5,-32,0,0,-0.13605 -58580,5316:121:1,-161,-32,0,0,-0.13605 -58581,5316:120:2,-160.5,-32,0,0,-0.13605 -58582,5316:120:1,-160,-32,0,0,-0.13605 -58583,5315:229:2,-159.5,-32,0,0,-0.13605 -58584,5315:229:1,-159,-32,0,0,-0.13605 -58585,5315:228:2,-158.5,-32,0,0,-0.13605 -58586,5315:228:1,-158,-32,0,0,-0.13605 -58587,5315:227:2,-157.5,-32,0,0,-0.13605 -58588,5315:227:1,-157,-32,0,0,-0.13605 -58589,5315:226:2,-156.5,-32,0,0,-0.13605 -58590,5315:226:1,-156,-32,0,0,-0.13605 -58591,5315:225:2,-155.5,-32,0,0,-0.13605 -58592,5315:225:1,-155,-32,0,0,-0.13605 -58593,5315:124:2,-154.5,-32,0,0,-0.13605 -58594,5315:124:1,-154,-32,0,0,-0.13605 -58595,5315:123:2,-153.5,-32,0,0,-0.13605 -58596,5315:123:1,-153,-32,0,0,-0.13605 -58597,5315:122:2,-152.5,-32,0,0,-0.13605 -58598,5315:122:1,-152,-32,0,0,-0.13605 -58599,5315:121:2,-151.5,-32,0,0,-0.13605 -58600,5315:121:1,-151,-32,0,0,-0.13605 -58601,5315:120:2,-150.5,-32,0,0,-0.13605 -58602,5315:120:1,-150,-32,0,0,-0.13605 -58603,5314:229:2,-149.5,-32,0,0,-0.13605 -58604,5314:229:1,-149,-32,0,0,-0.13605 -58605,5314:228:2,-148.5,-32,0,0,-0.13605 -58606,5314:228:1,-148,-32,0,0,-0.13605 -58607,5314:227:2,-147.5,-32,0,0,-0.13605 -58608,5314:227:1,-147,-32,0,0,-0.13605 -58609,5314:226:2,-146.5,-32,0,0,-0.13605 -58610,5314:226:1,-146,-32,0,0,-0.13605 -58611,5314:225:2,-145.5,-32,0,0,-0.13605 -58612,5314:225:1,-145,-32,0,0,-0.13605 -58613,5314:124:2,-144.5,-32,0,0,-0.13605 -58614,5314:124:1,-144,-32,0,0,-0.13605 -58615,5314:123:2,-143.5,-32,0,0,-0.13605 -58616,5314:123:1,-143,-32,0,0,-0.13605 -58617,5314:122:2,-142.5,-32,0,0,-0.13605 -58618,5314:122:1,-142,-32,0,0,-0.13605 -58619,5314:121:2,-141.5,-32,0,0,-0.13605 -58620,5314:121:1,-141,-32,0,0,-0.13605 -58621,5314:120:2,-140.5,-32,0,0,-0.13605 -58622,5314:120:1,-140,-32,0,0,-0.13605 -58623,5313:229:2,-139.5,-32,0,0,-0.13605 -58624,5313:229:1,-139,-32,0,0,-0.13605 -58625,5313:228:2,-138.5,-32,0,0,-0.13605 -58626,5313:228:1,-138,-32,0,0,-0.13605 -58627,5313:227:2,-137.5,-32,0,0,-0.13605 -58628,5313:227:1,-137,-32,0,0,-0.13605 -58629,5313:226:2,-136.5,-32,0,0,-0.13605 -58630,5313:226:1,-136,-32,0,0,-0.13605 -58631,5313:225:2,-135.5,-32,0,0,-0.13605 -58632,5313:225:1,-135,-32,0,0,-0.13605 -58633,5313:124:2,-134.5,-32,0,0,-0.13605 -58634,5313:124:1,-134,-32,0,0,-0.13605 -58635,5313:123:2,-133.5,-32,0,0,-0.13605 -58636,5313:123:1,-133,-32,0,0,-0.13605 -58637,5313:122:2,-132.5,-32,0,0,-0.13605 -58638,5313:122:1,-132,-32,0,0,-0.13605 -58639,5313:121:2,-131.5,-32,0,0,-0.13605 -58640,5313:121:1,-131,-32,0,0,-0.13605 -58641,5313:120:2,-130.5,-32,0,0,-0.13605 -58642,5313:120:1,-130,-32,0,0,-0.13605 -58643,5312:229:2,-129.5,-32,0,0,-0.13605 -58644,5312:229:1,-129,-32,0,0,-0.13605 -58645,5312:228:2,-128.5,-32,0,0,-0.13605 -58646,5312:228:1,-128,-32,0,0,-0.13605 -58647,5312:227:2,-127.5,-32,0,0,-0.13605 -58648,5312:227:1,-127,-32,0,0,-0.13605 -58649,5312:226:2,-126.5,-32,0,0,-0.13605 -58650,5312:226:1,-126,-32,0,0,-0.13605 -58651,5312:225:2,-125.5,-32,0,0,-0.13605 -58652,5312:225:1,-125,-32,0,0,-0.13605 -58653,5312:124:2,-124.5,-32,0,0,-0.13605 -58654,5312:124:1,-124,-32,0,0,-0.13605 -58655,5312:123:2,-123.5,-32,0,0,-0.13605 -58656,5312:123:1,-123,-32,0,0,-0.13605 -58657,5312:122:2,-122.5,-32,0,0,-0.13605 -58658,5312:122:1,-122,-32,0,0,-0.13605 -58659,5312:121:2,-121.5,-32,0,0,-0.13605 -58660,5312:121:1,-121,-32,0,0,-0.13605 -58661,5312:120:2,-120.5,-32,0,0,-0.13605 -58662,5312:120:1,-120,-32,0,0,-0.13605 -58663,5311:229:2,-119.5,-32,0,0,-0.13605 -58664,5311:229:1,-119,-32,0,0,-0.13605 -58665,5311:228:2,-118.5,-32,0,0,-0.13605 -58666,5311:228:1,-118,-32,0,0,-0.13605 -58667,5311:227:2,-117.5,-32,0,0,-0.13605 -58668,5311:227:1,-117,-32,0,0,-0.13605 -58669,5311:226:2,-116.5,-32,0,0,-0.13605 -58670,5311:226:1,-116,-32,0,0,-0.13605 -58671,5311:225:2,-115.5,-32,0,0,-0.13605 -58672,5311:225:1,-115,-32,0,0,-0.13605 -58673,5311:124:2,-114.5,-32,0,0,-0.13605 -58674,5311:124:1,-114,-32,0,0,-0.13605 -58675,5311:123:2,-113.5,-32,0,0,-0.13605 -58676,5311:123:1,-113,-32,0,0,-0.13605 -58677,5311:122:2,-112.5,-32,0,0,-0.13605 -58678,5311:122:1,-112,-32,0,0,-0.13605 -58679,5311:121:2,-111.5,-32,0,0,-0.13605 -58680,5311:121:1,-111,-32,0,0,-0.13605 -58681,5311:120:2,-110.5,-32,0,0,-0.13605 -58682,5311:120:1,-110,-32,0,0,-0.13605 -58683,5310:229:2,-109.5,-32,0,0,-0.13605 -58684,5310:229:1,-109,-32,0,0,-0.13605 -58685,5310:228:2,-108.5,-32,0,0,-0.13605 -58686,5310:228:1,-108,-32,0,0,-0.13605 -58687,5310:227:2,-107.5,-32,0,0,-0.13605 -58688,5310:227:1,-107,-32,0,0,-0.13605 -58689,5310:226:2,-106.5,-32,0,0,-0.13605 -58690,5310:226:1,-106,-32,0,0,-0.13605 -58691,5310:225:2,-105.5,-32,0,0,-0.13605 -58692,5310:225:1,-105,-32,0,0,-0.13605 -58693,5310:124:2,-104.5,-32,0,0,-0.13605 -58694,5310:124:1,-104,-32,0,0,-0.13605 -58695,5310:123:2,-103.5,-32,0,0,-0.13605 -58696,5310:123:1,-103,-32,0,0,-0.13605 -58697,5310:122:2,-102.5,-32,0,0,-0.13605 -58698,5310:122:1,-102,-32,0,0,-0.13605 -58699,5310:121:2,-101.5,-32,0,0,-0.13605 -58700,5310:121:1,-101,-32,0,0,-0.13605 -58701,5310:120:2,-100.5,-32,0,0,-0.13605 -58702,5310:120:1,-100,-32,0,0,-0.13605 -58703,5309:229:2,-99.5,-32,0,0,-0.13605 -58704,5309:229:1,-99,-32,0,0,-0.13605 -58705,5309:228:2,-98.5,-32,0,0,-0.13605 -58706,5309:228:1,-98,-32,0,0,-0.13605 -58707,5309:227:2,-97.5,-32,0,0,-0.13605 -58708,5309:227:1,-97,-32,0,0,-0.13605 -58709,5309:226:2,-96.5,-32,0,0,-0.13605 -58710,5309:226:1,-96,-32,0,0,-0.13605 -58711,5309:225:2,-95.5,-32,0,0,-0.13605 -58712,5309:225:1,-95,-32,0,0,-0.13605 -58713,5309:124:2,-94.5,-32,0,0,-0.13605 -58714,5309:124:1,-94,-32,0,0,-0.13605 -58715,5309:123:2,-93.5,-32,0,0,-0.13605 -58716,5309:123:1,-93,-32,0,0,-0.13605 -58717,5309:122:2,-92.5,-32,0,0,-0.13605 -58718,5309:122:1,-92,-32,0,0,-0.13605 -58719,5309:121:2,-91.5,-32,0,0,-0.13605 -58720,5309:121:1,-91,-32,0,0,-0.13605 -58721,5309:120:2,-90.5,-32,0,0,-0.13605 -58722,5309:120:1,-90,-32,0,0,-0.13605 -58723,5308:229:2,-89.5,-32,0,0,-0.13605 -58724,5308:229:1,-89,-32,0,0,-0.13605 -58725,5308:228:2,-88.5,-32,0,0,-0.13605 -58726,5308:228:1,-88,-32,0,0,-0.13605 -58727,5308:227:2,-87.5,-32,0,0,-0.13605 -58728,5308:227:1,-87,-32,0,0,-0.13605 -58729,5308:226:2,-86.5,-32,0,0,-0.13605 -58730,5308:226:1,-86,-32,0,0,-0.13605 -58731,5308:225:2,-85.5,-32,0,0,-0.13605 -58732,5308:225:1,-85,-32,0,0,-0.13605 -58733,5308:124:2,-84.5,-32,0,0,-0.13605 -58734,5308:124:1,-84,-32,0,0,-0.13605 -58735,5308:123:2,-83.5,-32,0,0,-0.13605 -58736,5308:123:1,-83,-32,0,0,-0.13605 -58737,5308:122:2,-82.5,-32,0,0,-0.13605 -58738,5308:122:1,-82,-32,0,0,-0.13605 -58739,5308:121:2,-81.5,-32,0,0,-0.13605 -58740,5308:121:1,-81,-32,0,0,-0.13605 -58741,5308:120:2,-80.5,-32,0,0,-0.13605 -58742,5308:120:1,-80,-32,0,0,-0.13605 -58743,5307:229:2,-79.5,-32,0,0,-0.13605 -58744,5307:229:1,-79,-32,0,0,-0.13605 -58745,5307:228:2,-78.5,-32,0,0,-0.13605 -58746,5307:228:1,-78,-32,0,0,-0.13605 -58747,5307:227:2,-77.5,-32,0,0,-0.13605 -58748,5307:227:1,-77,-32,0,0,-0.13605 -58749,5307:226:2,-76.5,-32,0,0,-0.13605 -58750,5307:226:1,-76,-32,0,0,-0.13605 -58751,5307:225:2,-75.5,-32,0,0,-0.13605 -58752,5307:225:1,-75,-32,0,0,-0.13605 -58753,5307:124:2,-74.5,-32,0,0,-0.13605 -58754,5307:124:1,-74,-32,0,0,-0.13605 -58755,5306:225:1,-65,-32,0,0,-0.13605 -58756,5306:124:2,-64.5,-32,0,0,-0.13605 -58757,5306:124:1,-64,-32,0,0,-0.13605 -58758,5306:123:1,-63,-32,0,0,-0.13605 -58759,5306:122:2,-62.5,-32,0,0,-0.13605 -58760,5306:122:1,-62,-32,0,0,-0.13605 -58761,5306:121:2,-61.5,-32,0,0,-0.13605 -58762,5306:121:1,-61,-32,0,0,-0.13605 -58763,5306:120:2,-60.5,-32,0,0,-0.13605 -58764,5306:120:1,-60,-32,0,0,-0.13605 -58765,5305:229:2,-59.5,-32,0,0,-0.13605 -58766,5305:229:1,-59,-32,0,0,-0.13605 -58767,5305:228:2,-58.5,-32,0,0,-0.13605 -58768,5305:228:1,-58,-32,0,0,-0.13605 -58769,5305:227:2,-57.5,-32,0,0,-0.13605 -58770,5305:227:1,-57,-32,0,0,-0.13405 -58771,5305:226:2,-56.5,-32,0,0,-0.109971 -58772,5305:226:1,-56,-32,0,0,-0.1296 -58773,5305:225:2,-55.5,-32,0,0,-0.13605 -58774,5305:225:1,-55,-32,0,0,-0.13605 -58775,5305:124:2,-54.5,-32,0,0,-0.13605 -58776,5305:124:1,-54,-32,0,0,-0.13605 -58777,5305:123:2,-53.5,-32,0,0,-0.13605 -58778,5305:123:1,-53,-32,0,0,-0.13605 -58779,5305:122:2,-52.5,-32,0,0,-0.13605 -58780,5305:122:1,-52,-32,0,0,-0.13605 -58781,5305:121:2,-51.5,-32,0,0,-0.13605 -58782,5305:121:1,-51,-32,0,0,-0.13605 -58783,5305:120:2,-50.5,-32,0,0,-0.13605 -58784,5305:120:1,-50,-32,0,0,-0.13605 -58785,5304:229:2,-49.5,-32,0,0,-0.13605 -58786,5304:229:1,-49,-32,0,0,-0.13605 -58787,5304:228:2,-48.5,-32,0,0,-0.13605 -58788,5304:228:1,-48,-32,0,0,-0.13605 -58789,5304:227:2,-47.5,-32,0,0,-0.13605 -58790,5304:227:1,-47,-32,0,0,-0.13605 -58791,5304:226:2,-46.5,-32,0,0,-0.13605 -58792,5304:226:1,-46,-32,0,0,-0.13605 -58793,5304:225:2,-45.5,-32,0,0,-0.13605 -58794,5304:225:1,-45,-32,0,0,-0.13605 -58795,5304:124:2,-44.5,-32,0,0,-0.13605 -58796,5304:124:1,-44,-32,0,0,-0.13605 -58797,5304:123:2,-43.5,-32,0,0,-0.13605 -58798,5304:123:1,-43,-32,0,0,-0.13605 -58799,5304:122:2,-42.5,-32,0,0,-0.13605 -58800,5304:122:1,-42,-32,0,0,-0.13605 -58801,5304:121:2,-41.5,-32,0,0,-0.13605 -58802,5304:121:1,-41,-32,0,0,-0.13605 -58803,5304:120:2,-40.5,-32,0,0,-0.13605 -58804,5304:120:1,-40,-32,0,0,-0.13605 -58805,5303:229:2,-39.5,-32,0,0,-0.13605 -58806,5303:229:1,-39,-32,0,0,-0.13605 -58807,5303:228:2,-38.5,-32,0,0,-0.13605 -58808,5303:228:1,-38,-32,0,0,-0.13605 -58809,5303:227:2,-37.5,-32,0,0,-0.13605 -58810,5303:227:1,-37,-32,0,0,-0.13605 -58811,5303:226:2,-36.5,-32,0,0,-0.13605 -58812,5303:226:1,-36,-32,0,0,-0.13605 -58813,5303:225:2,-35.5,-32,0,0,-0.13605 -58814,5303:225:1,-35,-32,0,0,-0.13605 -58815,5303:124:2,-34.5,-32,0,0,-0.13605 -58816,5303:124:1,-34,-32,0,0,-0.13605 -58817,5303:123:2,-33.5,-32,0,0,-0.13605 -58818,5303:123:1,-33,-32,0,0,-0.13605 -58819,5303:122:2,-32.5,-32,0,0,-0.13605 -58820,5303:122:1,-32,-32,0,0,-0.13605 -58821,5303:121:2,-31.5,-32,0,0,-0.13605 -58822,5303:121:1,-31,-32,0,0,-0.13605 -58823,5303:120:2,-30.5,-32,0,0,-0.13605 -58824,5303:120:1,-30,-32,0,0,-0.13605 -58825,5302:229:2,-29.5,-32,0,0,-0.13605 -58826,5302:229:1,-29,-32,0,0,-0.13605 -58827,5302:228:2,-28.5,-32,0,0,-0.13605 -58828,5302:228:1,-28,-32,0,0,-0.13605 -58829,5302:227:2,-27.5,-32,0,0,-0.13605 -58830,5302:227:1,-27,-32,0,0,-0.13605 -58831,5302:226:2,-26.5,-32,0,0,-0.13605 -58832,5302:226:1,-26,-32,0,0,-0.13605 -58833,5302:225:2,-25.5,-32,0,0,-0.13605 -58834,5302:225:1,-25,-32,0,0,-0.13605 -58835,5302:124:2,-24.5,-32,0,0,-0.13605 -58836,5302:124:1,-24,-32,0,0,-0.13605 -58837,5302:123:2,-23.5,-32,0,0,-0.13605 -58838,5302:123:1,-23,-32,0,0,-0.13605 -58839,5302:122:2,-22.5,-32,0,0,-0.13605 -58840,5302:122:1,-22,-32,0,0,-0.13605 -58841,5302:121:2,-21.5,-32,0,0,-0.13605 -58842,5302:121:1,-21,-32,0,0,-0.13605 -58843,5302:120:2,-20.5,-32,0,0,-0.13605 -58844,5302:120:1,-20,-32,0,0,-0.13605 -58845,5301:229:2,-19.5,-32,0,0,-0.128826 -58846,5301:229:1,-19,-32,0,0,-0.115371 -58847,5301:228:2,-18.5,-32,0,0,-0.106708 -58848,5301:228:1,-18,-32,0,0,-0.101974 -58849,5301:227:2,-17.5,-32,0,0,-0.0933806 -58850,5301:227:1,-17,-32,0,0,-0.0770487 -58851,5301:226:2,-16.5,-32,0,0,-0.0720424 -58852,5301:226:1,-16,-32,0,0,-0.0759031 -58853,5301:225:2,-15.5,-32,0,0,-0.0861032 -58854,5301:225:1,-15,-32,0,0,-0.128154 -58855,5301:124:2,-14.5,-32,0,0,-0.13605 -58856,5301:124:1,-14,-32,0,0,-0.13605 -58857,5301:123:2,-13.5,-32,0,0,-0.13605 -58858,5301:123:1,-13,-32,0,0,-0.13605 -58859,5301:122:2,-12.5,-32,0,0,-0.13605 -58860,5301:122:1,-12,-32,0,0,-0.13605 -58861,5301:121:2,-11.5,-32,0,0,-0.13605 -58862,5301:121:1,-11,-32,0,0,-0.135926 -58863,5301:120:2,-10.5,-32,0,0,-0.133915 -58864,5301:120:1,-10,-32,0,0,-0.135231 -58865,5300:229:2,-9.5,-32,0,0,-0.134622 -58866,5300:229:1,-9,-32,0,0,-0.133446 -58867,5300:228:2,-8.5,-32,0,0,-0.133647 -58868,5300:228:1,-8,-32,0,0,-0.13594 -58869,5300:227:2,-7.5,-32,0,0,-0.13605 -58870,5300:227:1,-7,-32,0,0,-0.13605 -58871,5300:226:2,-6.5,-32,0,0,-0.13605 -58872,5300:226:1,-6,-32,0,0,-0.13605 -58873,5300:225:2,-5.5,-32,0,0,-0.135197 -58874,5300:225:1,-5,-32,0,0,-0.130313 -58875,5300:124:2,-4.5,-32,0,0,-0.125907 -58876,5300:124:1,-4,-32,0,0,-0.12215 -58877,5300:123:2,-3.5,-32,0,0,-0.121485 -58878,5300:123:1,-3,-32,0,0,-0.124353 -58879,5300:122:2,-2.5,-32,0,0,-0.125751 -58880,5300:122:1,-2,-32,0,0,-0.126441 -58881,5300:121:2,-1.5,-32,0,0,-0.124569 -58882,5300:121:1,-1,-32,0,0,-0.121817 -58883,5300:120:2,-0.5,-32,0,0,-0.12346 -58884,3300:120:2,0,-32,0,0,-0.12619 -58885,3300:120:2,0.5,-32,0,0,-0.12758 -58886,3300:121:1,1,-32,0,0,-0.132018 -58887,3300:121:2,1.5,-32,0,0,-0.133546 -58888,3300:122:1,2,-32,0,0,-0.130379 -58889,3300:122:2,2.5,-32,0,0,-0.12522 -58890,3300:123:1,3,-32,0,0,-0.119517 -58891,3300:123:2,3.5,-32,0,0,-0.118751 -58892,3300:124:1,4,-32,0,0,-0.127072 -58893,3300:124:2,4.5,-32,0,0,-0.134825 -58894,3300:225:1,5,-32,0,0,-0.132947 -58895,3300:225:2,5.5,-32,0,0,-0.126473 -58896,3300:226:1,6,-32,0,0,-0.125159 -58897,3300:226:2,6.5,-32,0,0,-0.130216 -58898,3300:227:1,7,-32,0,0,-0.135163 -58899,3300:227:2,7.5,-32,0,0,-0.131721 -58900,3300:228:1,8,-32,0,0,-0.110404 -58901,3300:228:2,8.5,-32,0,0,-0.105799 -58902,3300:229:1,9,-32,0,0,-0.110756 -58903,3300:229:2,9.5,-32,0,0,-0.117874 -58904,3301:120:1,10,-32,0,0,-0.124445 -58905,3301:120:2,10.5,-32,0,0,-0.127421 -58906,3301:121:1,11,-32,0,0,-0.12777 -58907,3301:121:2,11.5,-32,0,0,-0.132349 -58908,3301:122:1,12,-32,0,0,-0.13605 -58909,3301:122:2,12.5,-32,0,0,-0.135948 -58910,3301:123:1,13,-32,0,0,-0.124136 -58911,3301:123:2,13.5,-32,0,0,-0.132282 -58912,3301:124:1,14,-32,0,0,-0.13605 -58913,3301:124:2,14.5,-32,0,0,-0.13605 -58914,3301:225:1,15,-32,0,0,-0.13605 -58915,3301:225:2,15.5,-32,0,0,-0.13605 -58916,3301:226:1,16,-32,0,0,-0.13605 -58917,3301:226:2,16.5,-32,0,0,-0.13605 -58918,3301:227:1,17,-32,0,0,-0.13605 -58919,3301:227:2,17.5,-32,0,0,-0.13605 -58920,3301:228:1,18,-32,0,0,-0.13605 -58921,3301:228:2,18.5,-32,0,0,-0.13605 -58922,3301:229:1,19,-32,0,0,-0.13605 -58923,3301:229:2,19.5,-32,0,0,-0.13605 -58924,3302:120:1,20,-32,0,0,-0.13605 -58925,3302:120:2,20.5,-32,0,0,-0.13605 -58926,3302:121:1,21,-32,0,0,-0.13605 -58927,3302:121:2,21.5,-32,0,0,-0.13605 -58928,3302:122:1,22,-32,0,0,-0.13605 -58929,3302:122:2,22.5,-32,0,0,-0.13605 -58930,3302:123:1,23,-32,0,0,-0.13605 -58931,3302:123:2,23.5,-32,0,0,-0.13605 -58932,3302:124:1,24,-32,0,0,-0.13605 -58933,3302:124:2,24.5,-32,0,0,-0.13605 -58934,3302:225:1,25,-32,0,0,-0.13605 -58935,3302:225:2,25.5,-32,0,0,-0.13605 -58936,3302:226:1,26,-32,0,0,-0.13605 -58937,3302:226:2,26.5,-32,0,0,-0.13605 -58938,3302:227:1,27,-32,0,0,-0.13605 -58939,3302:227:2,27.5,-32,0,0,-0.13605 -58940,3302:228:1,28,-32,0,0,-0.13605 -58941,3302:228:2,28.5,-32,0,0,-0.13605 -58942,3302:229:1,29,-32,0,0,-0.13605 -58943,3302:229:2,29.5,-32,0,0,-0.13605 -58944,3303:120:1,30,-32,0,0,-0.13605 -58945,3303:120:2,30.5,-32,0,0,-0.13605 -58946,3303:121:1,31,-32,0,0,-0.13605 -58947,3303:121:2,31.5,-32,0,0,-0.13605 -58948,3303:122:1,32,-32,0,0,-0.13605 -58949,3303:122:2,32.5,-32,0,0,-0.13605 -58950,3303:123:1,33,-32,0,0,-0.13605 -58951,3303:123:2,33.5,-32,0,0,-0.13605 -58952,3303:124:1,34,-32,0,0,-0.13605 -58953,3303:124:2,34.5,-32,0,0,-0.13605 -58954,3303:225:1,35,-32,0,0,-0.13605 -58955,3303:225:2,35.5,-32,0,0,-0.13605 -58956,3303:226:1,36,-32,0,0,-0.13605 -58957,3303:226:2,36.5,-32,0,0,-0.13605 -58958,3303:227:1,37,-32,0,0,-0.13605 -58959,3303:227:2,37.5,-32,0,0,-0.13605 -58960,3303:228:1,38,-32,0,0,-0.13605 -58961,3303:228:2,38.5,-32,0,0,-0.13605 -58962,3303:229:1,39,-32,0,0,-0.13605 -58963,3303:229:2,39.5,-32,0,0,-0.13605 -58964,3304:120:1,40,-32,0,0,-0.13605 -58965,3304:120:2,40.5,-32,0,0,-0.13605 -58966,3304:121:1,41,-32,0,0,-0.13605 -58967,3304:121:2,41.5,-32,0,0,-0.13605 -58968,3304:122:1,42,-32,0,0,-0.13605 -58969,3304:122:2,42.5,-32,0,0,-0.135163 -58970,3304:123:1,43,-32,0,0,-0.135231 -58971,3304:123:2,43.5,-32,0,0,-0.13605 -58972,3304:124:1,44,-32,0,0,-0.13605 -58973,3304:124:2,44.5,-32,0,0,-0.13605 -58974,3304:225:1,45,-32,0,0,-0.13605 -58975,3304:225:2,45.5,-32,0,0,-0.13605 -58976,3304:226:1,46,-32,0,0,-0.13605 -58977,3304:226:2,46.5,-32,0,0,-0.13605 -58978,3304:227:1,47,-32,0,0,-0.13605 -58979,3304:227:2,47.5,-32,0,0,-0.13605 -58980,3304:228:1,48,-32,0,0,-0.123706 -58981,3304:228:2,48.5,-32,0,0,-0.13605 -58982,3304:229:1,49,-32,0,0,-0.13605 -58983,3304:229:2,49.5,-32,0,0,-0.13605 -58984,3305:120:1,50,-32,0,0,-0.13605 -58985,3305:120:2,50.5,-32,0,0,-0.13605 -58986,3305:121:1,51,-32,0,0,-0.13605 -58987,3305:121:2,51.5,-32,0,0,-0.13605 -58988,3305:122:1,52,-32,0,0,-0.13605 -58989,3305:122:2,52.5,-32,0,0,-0.13605 -58990,3305:123:1,53,-32,0,0,-0.13605 -58991,3305:123:2,53.5,-32,0,0,-0.13605 -58992,3305:124:1,54,-32,0,0,-0.13605 -58993,3305:124:2,54.5,-32,0,0,-0.13605 -58994,3305:225:1,55,-32,0,0,-0.13605 -58995,3305:225:2,55.5,-32,0,0,-0.13605 -58996,3305:226:1,56,-32,0,0,-0.13605 -58997,3305:226:2,56.5,-32,0,0,-0.13605 -58998,3305:227:1,57,-32,0,0,-0.13605 -58999,3305:227:2,57.5,-32,0,0,-0.13605 -59000,3305:228:1,58,-32,0,0,-0.13605 -59001,3305:228:2,58.5,-32,0,0,-0.13605 -59002,3305:229:1,59,-32,0,0,-0.13605 -59003,3305:229:2,59.5,-32,0,0,-0.13605 -59004,3306:120:1,60,-32,0,0,-0.13605 -59005,3306:120:2,60.5,-32,0,0,-0.13605 -59006,3306:121:1,61,-32,0,0,-0.13605 -59007,3306:121:2,61.5,-32,0,0,-0.13605 -59008,3306:122:1,62,-32,0,0,-0.13605 -59009,3306:122:2,62.5,-32,0,0,-0.13605 -59010,3306:123:1,63,-32,0,0,-0.13605 -59011,3306:123:2,63.5,-32,0,0,-0.13605 -59012,3306:124:1,64,-32,0,0,-0.13605 -59013,3306:124:2,64.5,-32,0,0,-0.13605 -59014,3306:225:1,65,-32,0,0,-0.13605 -59015,3306:225:2,65.5,-32,0,0,-0.13605 -59016,3306:226:1,66,-32,0,0,-0.13605 -59017,3306:226:2,66.5,-32,0,0,-0.13605 -59018,3306:227:1,67,-32,0,0,-0.13605 -59019,3306:227:2,67.5,-32,0,0,-0.13605 -59020,3306:228:1,68,-32,0,0,-0.13605 -59021,3306:228:2,68.5,-32,0,0,-0.13605 -59022,3306:229:1,69,-32,0,0,-0.13605 -59023,3306:229:2,69.5,-32,0,0,-0.13605 -59024,3307:120:1,70,-32,0,0,-0.13605 -59025,3307:120:2,70.5,-32,0,0,-0.13605 -59026,3307:121:1,71,-32,0,0,-0.13605 -59027,3307:121:2,71.5,-32,0,0,-0.13605 -59028,3307:122:1,72,-32,0,0,-0.13605 -59029,3307:122:2,72.5,-32,0,0,-0.13605 -59030,3307:123:2,73.5,-32,0,0,-0.13605 -59031,3307:124:1,74,-32,0,0,-0.13605 -59032,3307:124:2,74.5,-32,0,0,-0.13605 -59033,3307:225:1,75,-32,0,0,-0.13605 -59034,3307:225:2,75.5,-32,0,0,-0.13605 -59035,3307:226:1,76,-32,0,0,-0.13605 -59036,3307:226:2,76.5,-32,0,0,-0.13605 -59037,3307:227:1,77,-32,0,0,-0.13605 -59038,3307:227:2,77.5,-32,0,0,-0.13605 -59039,3307:228:1,78,-32,0,0,-0.13605 -59040,3307:228:2,78.5,-32,0,0,-0.13605 -59041,3307:229:1,79,-32,0,0,-0.13605 -59042,3307:229:2,79.5,-32,0,0,-0.13605 -59043,3308:120:1,80,-32,0,0,-0.13605 -59044,3308:120:2,80.5,-32,0,0,-0.13605 -59045,3308:121:1,81,-32,0,0,-0.13605 -59046,3308:121:2,81.5,-32,0,0,-0.13605 -59047,3308:122:1,82,-32,0,0,-0.13605 -59048,3308:122:2,82.5,-32,0,0,-0.13605 -59049,3308:123:1,83,-32,0,0,-0.13605 -59050,3308:123:2,83.5,-32,0,0,-0.13605 -59051,3308:124:1,84,-32,0,0,-0.13605 -59052,3308:124:2,84.5,-32,0,0,-0.13605 -59053,3308:225:1,85,-32,0,0,-0.13605 -59054,3308:225:2,85.5,-32,0,0,-0.135953 -59055,3308:226:1,86,-32,0,0,-0.125034 -59056,3308:226:2,86.5,-32,0,0,-0.124785 -59057,3308:227:1,87,-32,0,0,-0.134723 -59058,3308:227:2,87.5,-32,0,0,-0.13605 -59059,3308:228:1,88,-32,0,0,-0.13605 -59060,3308:228:2,88.5,-32,0,0,-0.13605 -59061,3308:229:1,89,-32,0,0,-0.128762 -59062,3308:229:2,89.5,-32,0,0,-0.124136 -59063,3309:120:1,90,-32,0,0,-0.127516 -59064,3309:120:2,90.5,-32,0,0,-0.135975 -59065,3309:121:1,91,-32,0,0,-0.13605 -59066,3309:121:2,91.5,-32,0,0,-0.13605 -59067,3309:122:1,92,-32,0,0,-0.13605 -59068,3309:122:2,92.5,-32,0,0,-0.13605 -59069,3309:123:1,93,-32,0,0,-0.13605 -59070,3309:123:2,93.5,-32,0,0,-0.13605 -59071,3309:124:1,94,-32,0,0,-0.13605 -59072,3309:124:2,94.5,-32,0,0,-0.13605 -59073,3309:225:1,95,-32,0,0,-0.13605 -59074,3309:225:2,95.5,-32,0,0,-0.13605 -59075,3309:226:1,96,-32,0,0,-0.13605 -59076,3309:226:2,96.5,-32,0,0,-0.13605 -59077,3309:227:1,97,-32,0,0,-0.13605 -59078,3309:227:2,97.5,-32,0,0,-0.135932 -59079,3309:228:1,98,-32,0,0,-0.134083 -59080,3309:228:2,98.5,-32,0,0,-0.13368 -59081,3309:229:1,99,-32,0,0,-0.130803 -59082,3309:229:2,99.5,-32,0,0,-0.13215 -59083,3310:120:1,100,-32,0,0,-0.13605 -59084,3310:120:2,100.5,-32,0,0,-0.13605 -59085,3310:121:1,101,-32,0,0,-0.13605 -59086,3310:121:2,101.5,-32,0,0,-0.13605 -59087,3310:122:1,102,-32,0,0,-0.13605 -59088,3310:122:2,102.5,-32,0,0,-0.13605 -59089,3310:123:1,103,-32,0,0,-0.13605 -59090,3310:123:2,103.5,-32,0,0,-0.13605 -59091,3310:124:1,104,-32,0,0,-0.13605 -59092,3310:124:2,104.5,-32,0,0,-0.13605 -59093,3310:225:1,105,-32,0,0,-0.13605 -59094,3310:225:2,105.5,-32,0,0,-0.13605 -59095,3310:226:1,106,-32,0,0,-0.13605 -59096,3310:226:2,106.5,-32,0,0,-0.135891 -59097,3310:227:1,107,-32,0,0,-0.135604 -59098,3310:227:2,107.5,-32,0,0,-0.134656 -59099,3310:228:1,108,-32,0,0,-0.133213 -59100,3310:228:2,108.5,-32,0,0,-0.131952 -59101,3310:229:1,109,-32,0,0,-0.130966 -59102,3310:229:2,109.5,-32,0,0,-0.132448 -59103,3311:120:1,110,-32,0,0,-0.134116 -59104,3311:120:2,110.5,-32,0,0,-0.133882 -59105,3311:121:1,111,-32,0,0,-0.132813 -59106,3311:121:2,111.5,-32,0,0,-0.131754 -59107,3311:122:1,112,-32,0,0,-0.134352 -59108,3311:122:2,112.5,-32,0,0,-0.129632 -59109,3311:123:1,113,-32,0,0,-0.131163 -59110,3311:123:2,113.5,-32,0,0,-0.133781 -59111,3311:124:1,114,-32,0,0,-0.136035 -59112,3311:124:2,114.5,-32,0,0,-0.13605 -59113,3311:225:1,115,-32,0,0,-0.13605 -59114,3311:225:2,115.5,-32,0,0,-0.13605 -59115,3311:226:1,116,-32,0,0,-0.13605 -59116,3311:226:2,116.5,-32,0,0,-0.13605 -59117,3311:227:1,117,-32,0,0,-0.13605 -59118,3311:227:2,117.5,-32,0,0,-0.13605 -59119,3311:228:1,118,-32,0,0,-0.13605 -59120,3311:228:2,118.5,-32,0,0,-0.13605 -59121,3311:229:1,119,-32,0,0,-0.13605 -59122,3311:229:2,119.5,-32,0,0,-0.13605 -59123,3312:120:1,120,-32,0,0,-0.13605 -59124,3312:120:2,120.5,-32,0,0,-0.13605 -59125,3312:121:1,121,-32,0,0,-0.13605 -59126,3312:121:2,121.5,-32,0,0,-0.13605 -59127,3312:122:1,122,-32,0,0,-0.13605 -59128,3312:122:2,122.5,-32,0,0,-0.13605 -59129,3312:123:1,123,-32,0,0,-0.13605 -59130,3312:123:2,123.5,-32,0,0,-0.13605 -59131,3312:124:1,124,-32,0,0,-0.13605 -59132,3312:124:2,124.5,-32,0,0,-0.13605 -59133,3312:225:1,125,-32,0,0,-0.13605 -59134,3312:225:2,125.5,-32,0,0,-0.13605 -59135,3312:226:1,126,-32,0,0,-0.13605 -59136,3312:226:2,126.5,-32,0,0,-0.13605 -59137,3312:227:1,127,-32,0,0,-0.13605 -59138,3312:227:2,127.5,-32,0,0,-0.13605 -59139,3312:228:1,128,-32,0,0,-0.13605 -59140,3312:228:2,128.5,-32,0,0,-0.13605 -59141,3312:229:1,129,-32,0,0,-0.13605 -59142,3312:229:2,129.5,-32,0,0,-0.13605 -59143,3313:120:1,130,-32,0,0,-0.13605 -59144,3313:120:2,130.5,-32,0,0,-0.13605 -59145,3313:121:1,131,-32,0,0,-0.13605 -59146,3313:121:2,131.5,-32,0,0,-0.13605 -59147,3313:122:1,132,-32,0,0,-0.13605 -59148,3313:122:2,132.5,-32,0,0,-0.13605 -59149,3313:123:1,133,-32,0,0,-0.13605 -59150,3313:123:2,133.5,-32,0,0,-0.13605 -59151,3313:124:1,134,-32,0,0,-0.13605 -59152,3313:124:2,134.5,-32,0,0,-0.13605 -59153,3313:225:1,135,-32,0,0,-0.13605 -59154,3313:225:2,135.5,-32,0,0,-0.13605 -59155,3313:226:1,136,-32,0,0,-0.13605 -59156,3313:226:2,136.5,-32,0,0,-0.13605 -59157,3313:227:1,137,-32,0,0,-0.13605 -59158,3313:227:2,137.5,-32,0,0,-0.13605 -59159,3313:228:1,138,-32,0,0,-0.13605 -59160,3313:228:2,138.5,-32,0,0,-0.13605 -59161,3313:229:1,139,-32,0,0,-0.13605 -59162,3313:229:2,139.5,-32,0,0,-0.13605 -59163,3314:120:1,140,-32,0,0,-0.13605 -59164,3314:120:2,140.5,-32,0,0,-0.13605 -59165,3314:121:1,141,-32,0,0,-0.13605 -59166,3314:121:2,141.5,-32,0,0,-0.13605 -59167,3314:122:1,142,-32,0,0,-0.13605 -59168,3314:122:2,142.5,-32,0,0,-0.13605 -59169,3314:123:1,143,-32,0,0,-0.13605 -59170,3314:123:2,143.5,-32,0,0,-0.13605 -59171,3314:124:1,144,-32,0,0,-0.13605 -59172,3314:124:2,144.5,-32,0,0,-0.13605 -59173,3314:229:1,149,-32,0,0,-0.13605 -59174,3314:229:2,149.5,-32,0,0,-0.13605 -59175,3315:120:1,150,-32,0,0,-0.13605 -59176,3315:120:2,150.5,-32,0,0,-0.13605 -59177,3315:121:1,151,-32,0,0,-0.13605 -59178,3315:121:2,151.5,-32,0,0,-0.13605 -59179,3315:122:1,152,-32,0,0,-0.13605 -59180,3315:122:2,152.5,-32,0,0,-0.13605 -59181,3315:123:1,153,-32,0,0,-0.13605 -59182,3315:123:2,153.5,-32,0,0,-0.13605 -59183,3315:124:1,154,-32,0,0,-0.13605 -59184,3315:124:2,154.5,-32,0,0,-0.13605 -59185,3315:225:1,155,-32,0,0,-0.13605 -59186,3315:225:2,155.5,-32,0,0,-0.13605 -59187,3315:226:1,156,-32,0,0,-0.13605 -59188,3315:226:2,156.5,-32,0,0,-0.13605 -59189,3315:227:1,157,-32,0,0,-0.13605 -59190,3315:227:2,157.5,-32,0,0,-0.13605 -59191,3315:228:1,158,-32,0,0,-0.13605 -59192,3315:228:2,158.5,-32,0,0,-0.13605 -59193,3315:229:1,159,-32,0,0,-0.13605 -59194,3315:229:2,159.5,-32,0,0,-0.13605 -59195,3316:120:1,160,-32,0,0,-0.13605 -59196,3316:120:2,160.5,-32,0,0,-0.13605 -59197,3316:121:1,161,-32,0,0,-0.13605 -59198,3316:121:2,161.5,-32,0,0,-0.13605 -59199,3316:122:1,162,-32,0,0,-0.13605 -59200,3316:122:2,162.5,-32,0,0,-0.13605 -59201,3316:123:1,163,-32,0,0,-0.13605 -59202,3316:123:2,163.5,-32,0,0,-0.13605 -59203,3316:124:1,164,-32,0,0,-0.13605 -59204,3316:124:2,164.5,-32,0,0,-0.13605 -59205,3316:225:1,165,-32,0,0,-0.13605 -59206,3316:225:2,165.5,-32,0,0,-0.13605 -59207,3316:226:1,166,-32,0,0,-0.13605 -59208,3316:226:2,166.5,-32,0,0,-0.13605 -59209,3316:227:1,167,-32,0,0,-0.13605 -59210,3316:227:2,167.5,-32,0,0,-0.13605 -59211,3316:228:1,168,-32,0,0,-0.13605 -59212,3316:228:2,168.5,-32,0,0,-0.13605 -59213,3316:229:1,169,-32,0,0,-0.13605 -59214,3316:229:2,169.5,-32,0,0,-0.13605 -59215,3317:120:1,170,-32,0,0,-0.13605 -59216,3317:120:2,170.5,-32,0,0,-0.13605 -59217,3317:121:1,171,-32,0,0,-0.13605 -59218,3317:121:2,171.5,-32,0,0,-0.13605 -59219,3317:122:1,172,-32,0,0,-0.13605 -59220,3317:124:2,174.5,-32,0,0,-0.13605 -59221,3317:226:2,176.5,-32,0,0,-0.13605 -59222,3317:227:1,177,-32,0,0,-0.13605 -59223,3317:227:2,177.5,-32,0,0,-0.13605 -59224,3317:228:1,178,-32,0,0,-0.13605 -59225,3317:228:2,178.5,-32,0,0,-0.13605 -59226,3317:229:1,179,-32,0,0,-0.13605 -59227,3317:229:2,179.5,-32,0,0,-0.13605 -59228,3318:120:1,180,-32,0,0,-0.13605 -59229,5318:110:3,-180,-31.5,0,0,-0.13605 -59230,5317:219:4,-179.5,-31.5,0,0,-0.13605 -59231,5317:219:3,-179,-31.5,0,0,-0.13605 -59232,5317:218:4,-178.5,-31.5,0,0,-0.13605 -59233,5317:218:3,-178,-31.5,0,0,-0.13605 -59234,5317:217:4,-177.5,-31.5,0,0,-0.13605 -59235,5317:217:3,-177,-31.5,0,0,-0.13605 -59236,5317:216:4,-176.5,-31.5,0,0,-0.13605 -59237,5317:216:3,-176,-31.5,0,0,-0.13605 -59238,5317:215:4,-175.5,-31.5,0,0,-0.13605 -59239,5317:215:3,-175,-31.5,0,0,-0.13605 -59240,5317:114:4,-174.5,-31.5,0,0,-0.13605 -59241,5317:114:3,-174,-31.5,0,0,-0.13605 -59242,5317:113:4,-173.5,-31.5,0,0,-0.13605 -59243,5317:113:3,-173,-31.5,0,0,-0.13605 -59244,5317:112:4,-172.5,-31.5,0,0,-0.13605 -59245,5317:112:3,-172,-31.5,0,0,-0.13605 -59246,5317:111:4,-171.5,-31.5,0,0,-0.13605 -59247,5317:111:3,-171,-31.5,0,0,-0.13605 -59248,5317:110:4,-170.5,-31.5,0,0,-0.13605 -59249,5317:110:3,-170,-31.5,0,0,-0.13605 -59250,5316:219:4,-169.5,-31.5,0,0,-0.13605 -59251,5316:219:3,-169,-31.5,0,0,-0.13605 -59252,5316:218:4,-168.5,-31.5,0,0,-0.13605 -59253,5316:218:3,-168,-31.5,0,0,-0.13605 -59254,5316:217:4,-167.5,-31.5,0,0,-0.13605 -59255,5316:217:3,-167,-31.5,0,0,-0.13605 -59256,5316:216:4,-166.5,-31.5,0,0,-0.13605 -59257,5316:216:3,-166,-31.5,0,0,-0.13605 -59258,5316:215:4,-165.5,-31.5,0,0,-0.13605 -59259,5316:215:3,-165,-31.5,0,0,-0.13605 -59260,5316:114:4,-164.5,-31.5,0,0,-0.13605 -59261,5316:114:3,-164,-31.5,0,0,-0.13605 -59262,5316:113:4,-163.5,-31.5,0,0,-0.13605 -59263,5316:113:3,-163,-31.5,0,0,-0.13605 -59264,5316:112:4,-162.5,-31.5,0,0,-0.13605 -59265,5316:112:3,-162,-31.5,0,0,-0.13605 -59266,5316:111:4,-161.5,-31.5,0,0,-0.13605 -59267,5316:111:3,-161,-31.5,0,0,-0.13605 -59268,5316:110:4,-160.5,-31.5,0,0,-0.13605 -59269,5316:110:3,-160,-31.5,0,0,-0.13605 -59270,5315:219:4,-159.5,-31.5,0,0,-0.13605 -59271,5315:219:3,-159,-31.5,0,0,-0.13605 -59272,5315:218:4,-158.5,-31.5,0,0,-0.13605 -59273,5315:218:3,-158,-31.5,0,0,-0.13605 -59274,5315:217:4,-157.5,-31.5,0,0,-0.13605 -59275,5315:217:3,-157,-31.5,0,0,-0.13605 -59276,5315:216:4,-156.5,-31.5,0,0,-0.13605 -59277,5315:216:3,-156,-31.5,0,0,-0.13605 -59278,5315:215:4,-155.5,-31.5,0,0,-0.13605 -59279,5315:215:3,-155,-31.5,0,0,-0.13605 -59280,5315:114:4,-154.5,-31.5,0,0,-0.13605 -59281,5315:114:3,-154,-31.5,0,0,-0.13605 -59282,5315:113:4,-153.5,-31.5,0,0,-0.13605 -59283,5315:113:3,-153,-31.5,0,0,-0.13605 -59284,5315:112:4,-152.5,-31.5,0,0,-0.13605 -59285,5315:112:3,-152,-31.5,0,0,-0.13605 -59286,5315:111:4,-151.5,-31.5,0,0,-0.13605 -59287,5315:111:3,-151,-31.5,0,0,-0.13605 -59288,5315:110:4,-150.5,-31.5,0,0,-0.13605 -59289,5315:110:3,-150,-31.5,0,0,-0.13605 -59290,5314:219:4,-149.5,-31.5,0,0,-0.13605 -59291,5314:219:3,-149,-31.5,0,0,-0.13605 -59292,5314:218:4,-148.5,-31.5,0,0,-0.13605 -59293,5314:218:3,-148,-31.5,0,0,-0.13605 -59294,5314:217:4,-147.5,-31.5,0,0,-0.13605 -59295,5314:217:3,-147,-31.5,0,0,-0.13605 -59296,5314:216:4,-146.5,-31.5,0,0,-0.13605 -59297,5314:216:3,-146,-31.5,0,0,-0.13605 -59298,5314:215:4,-145.5,-31.5,0,0,-0.13605 -59299,5314:215:3,-145,-31.5,0,0,-0.13605 -59300,5314:114:4,-144.5,-31.5,0,0,-0.13605 -59301,5314:114:3,-144,-31.5,0,0,-0.13605 -59302,5314:113:4,-143.5,-31.5,0,0,-0.13605 -59303,5314:113:3,-143,-31.5,0,0,-0.13605 -59304,5314:112:4,-142.5,-31.5,0,0,-0.13605 -59305,5314:112:3,-142,-31.5,0,0,-0.13605 -59306,5314:111:4,-141.5,-31.5,0,0,-0.13605 -59307,5314:111:3,-141,-31.5,0,0,-0.13605 -59308,5314:110:4,-140.5,-31.5,0,0,-0.13605 -59309,5314:110:3,-140,-31.5,0,0,-0.13605 -59310,5313:219:4,-139.5,-31.5,0,0,-0.13605 -59311,5313:219:3,-139,-31.5,0,0,-0.13605 -59312,5313:218:4,-138.5,-31.5,0,0,-0.13605 -59313,5313:218:3,-138,-31.5,0,0,-0.13605 -59314,5313:217:4,-137.5,-31.5,0,0,-0.13605 -59315,5313:217:3,-137,-31.5,0,0,-0.13605 -59316,5313:216:4,-136.5,-31.5,0,0,-0.13605 -59317,5313:216:3,-136,-31.5,0,0,-0.13605 -59318,5313:215:4,-135.5,-31.5,0,0,-0.13605 -59319,5313:215:3,-135,-31.5,0,0,-0.13605 -59320,5313:114:4,-134.5,-31.5,0,0,-0.13605 -59321,5313:114:3,-134,-31.5,0,0,-0.13605 -59322,5313:113:4,-133.5,-31.5,0,0,-0.13605 -59323,5313:113:3,-133,-31.5,0,0,-0.13605 -59324,5313:112:4,-132.5,-31.5,0,0,-0.13605 -59325,5313:112:3,-132,-31.5,0,0,-0.13605 -59326,5313:111:4,-131.5,-31.5,0,0,-0.13605 -59327,5313:111:3,-131,-31.5,0,0,-0.13605 -59328,5313:110:4,-130.5,-31.5,0,0,-0.13605 -59329,5313:110:3,-130,-31.5,0,0,-0.13605 -59330,5312:219:4,-129.5,-31.5,0,0,-0.13605 -59331,5312:219:3,-129,-31.5,0,0,-0.13605 -59332,5312:218:4,-128.5,-31.5,0,0,-0.13605 -59333,5312:218:3,-128,-31.5,0,0,-0.13605 -59334,5312:217:4,-127.5,-31.5,0,0,-0.13605 -59335,5312:217:3,-127,-31.5,0,0,-0.13605 -59336,5312:216:4,-126.5,-31.5,0,0,-0.13605 -59337,5312:216:3,-126,-31.5,0,0,-0.13605 -59338,5312:215:4,-125.5,-31.5,0,0,-0.13605 -59339,5312:215:3,-125,-31.5,0,0,-0.13605 -59340,5312:114:4,-124.5,-31.5,0,0,-0.13605 -59341,5312:114:3,-124,-31.5,0,0,-0.13605 -59342,5312:113:4,-123.5,-31.5,0,0,-0.13605 -59343,5312:113:3,-123,-31.5,0,0,-0.13605 -59344,5312:112:4,-122.5,-31.5,0,0,-0.13605 -59345,5312:112:3,-122,-31.5,0,0,-0.13605 -59346,5312:111:4,-121.5,-31.5,0,0,-0.13605 -59347,5312:111:3,-121,-31.5,0,0,-0.13605 -59348,5312:110:4,-120.5,-31.5,0,0,-0.13605 -59349,5312:110:3,-120,-31.5,0,0,-0.13605 -59350,5311:219:4,-119.5,-31.5,0,0,-0.13605 -59351,5311:219:3,-119,-31.5,0,0,-0.13605 -59352,5311:218:4,-118.5,-31.5,0,0,-0.13605 -59353,5311:218:3,-118,-31.5,0,0,-0.13605 -59354,5311:217:4,-117.5,-31.5,0,0,-0.13605 -59355,5311:217:3,-117,-31.5,0,0,-0.13605 -59356,5311:216:4,-116.5,-31.5,0,0,-0.13605 -59357,5311:216:3,-116,-31.5,0,0,-0.13605 -59358,5311:215:4,-115.5,-31.5,0,0,-0.13605 -59359,5311:215:3,-115,-31.5,0,0,-0.13605 -59360,5311:114:4,-114.5,-31.5,0,0,-0.13605 -59361,5311:114:3,-114,-31.5,0,0,-0.13605 -59362,5311:113:4,-113.5,-31.5,0,0,-0.13605 -59363,5311:113:3,-113,-31.5,0,0,-0.13605 -59364,5311:112:4,-112.5,-31.5,0,0,-0.13605 -59365,5311:112:3,-112,-31.5,0,0,-0.13605 -59366,5311:111:4,-111.5,-31.5,0,0,-0.13605 -59367,5311:111:3,-111,-31.5,0,0,-0.13605 -59368,5311:110:4,-110.5,-31.5,0,0,-0.13605 -59369,5311:110:3,-110,-31.5,0,0,-0.13605 -59370,5310:219:4,-109.5,-31.5,0,0,-0.13605 -59371,5310:219:3,-109,-31.5,0,0,-0.13605 -59372,5310:218:4,-108.5,-31.5,0,0,-0.13605 -59373,5310:218:3,-108,-31.5,0,0,-0.13605 -59374,5310:217:4,-107.5,-31.5,0,0,-0.13605 -59375,5310:217:3,-107,-31.5,0,0,-0.13605 -59376,5310:216:4,-106.5,-31.5,0,0,-0.13605 -59377,5310:216:3,-106,-31.5,0,0,-0.13605 -59378,5310:215:4,-105.5,-31.5,0,0,-0.13605 -59379,5310:215:3,-105,-31.5,0,0,-0.13605 -59380,5310:114:4,-104.5,-31.5,0,0,-0.13605 -59381,5310:114:3,-104,-31.5,0,0,-0.13605 -59382,5310:113:4,-103.5,-31.5,0,0,-0.13605 -59383,5310:113:3,-103,-31.5,0,0,-0.13605 -59384,5310:112:4,-102.5,-31.5,0,0,-0.13605 -59385,5310:112:3,-102,-31.5,0,0,-0.13605 -59386,5310:111:4,-101.5,-31.5,0,0,-0.13605 -59387,5310:111:3,-101,-31.5,0,0,-0.13605 -59388,5310:110:4,-100.5,-31.5,0,0,-0.13605 -59389,5310:110:3,-100,-31.5,0,0,-0.13605 -59390,5309:219:4,-99.5,-31.5,0,0,-0.13605 -59391,5309:219:3,-99,-31.5,0,0,-0.13605 -59392,5309:218:4,-98.5,-31.5,0,0,-0.13605 -59393,5309:218:3,-98,-31.5,0,0,-0.13605 -59394,5309:217:4,-97.5,-31.5,0,0,-0.13605 -59395,5309:217:3,-97,-31.5,0,0,-0.13605 -59396,5309:216:4,-96.5,-31.5,0,0,-0.13605 -59397,5309:216:3,-96,-31.5,0,0,-0.13605 -59398,5309:215:4,-95.5,-31.5,0,0,-0.13605 -59399,5309:215:3,-95,-31.5,0,0,-0.13605 -59400,5309:114:4,-94.5,-31.5,0,0,-0.13605 -59401,5309:114:3,-94,-31.5,0,0,-0.13605 -59402,5309:113:4,-93.5,-31.5,0,0,-0.13605 -59403,5309:113:3,-93,-31.5,0,0,-0.13605 -59404,5309:112:4,-92.5,-31.5,0,0,-0.13605 -59405,5309:112:3,-92,-31.5,0,0,-0.13605 -59406,5309:111:4,-91.5,-31.5,0,0,-0.13605 -59407,5309:111:3,-91,-31.5,0,0,-0.13605 -59408,5309:110:4,-90.5,-31.5,0,0,-0.13605 -59409,5309:110:3,-90,-31.5,0,0,-0.13605 -59410,5308:219:4,-89.5,-31.5,0,0,-0.13605 -59411,5308:219:3,-89,-31.5,0,0,-0.13605 -59412,5308:218:4,-88.5,-31.5,0,0,-0.13605 -59413,5308:218:3,-88,-31.5,0,0,-0.13605 -59414,5308:217:4,-87.5,-31.5,0,0,-0.13605 -59415,5308:217:3,-87,-31.5,0,0,-0.13605 -59416,5308:216:4,-86.5,-31.5,0,0,-0.13605 -59417,5308:216:3,-86,-31.5,0,0,-0.13605 -59418,5308:215:4,-85.5,-31.5,0,0,-0.13605 -59419,5308:215:3,-85,-31.5,0,0,-0.13605 -59420,5308:114:4,-84.5,-31.5,0,0,-0.13605 -59421,5308:114:3,-84,-31.5,0,0,-0.13605 -59422,5308:113:4,-83.5,-31.5,0,0,-0.13605 -59423,5308:113:3,-83,-31.5,0,0,-0.13605 -59424,5308:112:4,-82.5,-31.5,0,0,-0.13605 -59425,5308:112:3,-82,-31.5,0,0,-0.13605 -59426,5308:111:4,-81.5,-31.5,0,0,-0.13605 -59427,5308:111:3,-81,-31.5,0,0,-0.13605 -59428,5308:110:4,-80.5,-31.5,0,0,-0.13605 -59429,5308:110:3,-80,-31.5,0,0,-0.13605 -59430,5307:219:4,-79.5,-31.5,0,0,-0.13605 -59431,5307:219:3,-79,-31.5,0,0,-0.13605 -59432,5307:218:4,-78.5,-31.5,0,0,-0.13605 -59433,5307:218:3,-78,-31.5,0,0,-0.13605 -59434,5307:217:4,-77.5,-31.5,0,0,-0.13605 -59435,5307:217:3,-77,-31.5,0,0,-0.13605 -59436,5307:216:4,-76.5,-31.5,0,0,-0.13605 -59437,5307:216:3,-76,-31.5,0,0,-0.13605 -59438,5307:215:4,-75.5,-31.5,0,0,-0.13605 -59439,5307:215:3,-75,-31.5,0,0,-0.13605 -59440,5307:114:4,-74.5,-31.5,0,0,-0.13605 -59441,5307:114:3,-74,-31.5,0,0,-0.13605 -59442,5306:112:3,-62,-31.5,0,0,-0.13605 -59443,5306:111:4,-61.5,-31.5,0,0,-0.13605 -59444,5306:111:3,-61,-31.5,0,0,-0.13605 -59445,5306:110:4,-60.5,-31.5,0,0,-0.13605 -59446,5306:110:3,-60,-31.5,0,0,-0.13605 -59447,5305:219:4,-59.5,-31.5,0,0,-0.13605 -59448,5305:219:3,-59,-31.5,0,0,-0.13605 -59449,5305:218:4,-58.5,-31.5,0,0,-0.13605 -59450,5305:218:3,-58,-31.5,0,0,-0.13605 -59451,5305:217:4,-57.5,-31.5,0,0,-0.13605 -59452,5305:217:3,-57,-31.5,0,0,-0.13605 -59453,5305:216:4,-56.5,-31.5,0,0,-0.13605 -59454,5305:216:3,-56,-31.5,0,0,-0.119281 -59455,5305:215:4,-55.5,-31.5,0,0,-0.13605 -59456,5305:215:3,-55,-31.5,0,0,-0.13605 -59457,5305:114:4,-54.5,-31.5,0,0,-0.13605 -59458,5305:114:3,-54,-31.5,0,0,-0.13605 -59459,5305:113:4,-53.5,-31.5,0,0,-0.13605 -59460,5305:113:3,-53,-31.5,0,0,-0.13605 -59461,5305:112:4,-52.5,-31.5,0,0,-0.13605 -59462,5305:112:3,-52,-31.5,0,0,-0.13605 -59463,5305:111:4,-51.5,-31.5,0,0,-0.13605 -59464,5305:111:3,-51,-31.5,0,0,-0.13605 -59465,5305:110:4,-50.5,-31.5,0,0,-0.13605 -59466,5305:110:3,-50,-31.5,0,0,-0.13605 -59467,5304:219:4,-49.5,-31.5,0,0,-0.13605 -59468,5304:219:3,-49,-31.5,0,0,-0.13605 -59469,5304:218:4,-48.5,-31.5,0,0,-0.13605 -59470,5304:218:3,-48,-31.5,0,0,-0.13605 -59471,5304:217:4,-47.5,-31.5,0,0,-0.13605 -59472,5304:217:3,-47,-31.5,0,0,-0.13605 -59473,5304:216:4,-46.5,-31.5,0,0,-0.13605 -59474,5304:216:3,-46,-31.5,0,0,-0.13605 -59475,5304:215:4,-45.5,-31.5,0,0,-0.13605 -59476,5304:215:3,-45,-31.5,0,0,-0.13605 -59477,5304:114:4,-44.5,-31.5,0,0,-0.13605 -59478,5304:114:3,-44,-31.5,0,0,-0.13605 -59479,5304:113:4,-43.5,-31.5,0,0,-0.13605 -59480,5304:113:3,-43,-31.5,0,0,-0.13605 -59481,5304:112:4,-42.5,-31.5,0,0,-0.13605 -59482,5304:112:3,-42,-31.5,0,0,-0.13605 -59483,5304:111:4,-41.5,-31.5,0,0,-0.13605 -59484,5304:111:3,-41,-31.5,0,0,-0.13605 -59485,5304:110:4,-40.5,-31.5,0,0,-0.13605 -59486,5304:110:3,-40,-31.5,0,0,-0.13605 -59487,5303:219:4,-39.5,-31.5,0,0,-0.13605 -59488,5303:219:3,-39,-31.5,0,0,-0.13605 -59489,5303:218:4,-38.5,-31.5,0,0,-0.13605 -59490,5303:218:3,-38,-31.5,0,0,-0.13605 -59491,5303:217:4,-37.5,-31.5,0,0,-0.13605 -59492,5303:217:3,-37,-31.5,0,0,-0.13605 -59493,5303:216:4,-36.5,-31.5,0,0,-0.13605 -59494,5303:216:3,-36,-31.5,0,0,-0.13605 -59495,5303:215:4,-35.5,-31.5,0,0,-0.13605 -59496,5303:215:3,-35,-31.5,0,0,-0.13605 -59497,5303:114:4,-34.5,-31.5,0,0,-0.13605 -59498,5303:114:3,-34,-31.5,0,0,-0.13605 -59499,5303:113:4,-33.5,-31.5,0,0,-0.13605 -59500,5303:113:3,-33,-31.5,0,0,-0.13605 -59501,5303:112:4,-32.5,-31.5,0,0,-0.13605 -59502,5303:112:3,-32,-31.5,0,0,-0.13605 -59503,5303:111:4,-31.5,-31.5,0,0,-0.13605 -59504,5303:111:3,-31,-31.5,0,0,-0.13605 -59505,5303:110:4,-30.5,-31.5,0,0,-0.13605 -59506,5303:110:3,-30,-31.5,0,0,-0.13605 -59507,5302:219:4,-29.5,-31.5,0,0,-0.13605 -59508,5302:219:3,-29,-31.5,0,0,-0.13605 -59509,5302:218:4,-28.5,-31.5,0,0,-0.13605 -59510,5302:218:3,-28,-31.5,0,0,-0.13605 -59511,5302:217:4,-27.5,-31.5,0,0,-0.13605 -59512,5302:217:3,-27,-31.5,0,0,-0.13605 -59513,5302:216:4,-26.5,-31.5,0,0,-0.13605 -59514,5302:216:3,-26,-31.5,0,0,-0.13605 -59515,5302:215:4,-25.5,-31.5,0,0,-0.13605 -59516,5302:215:3,-25,-31.5,0,0,-0.13605 -59517,5302:114:4,-24.5,-31.5,0,0,-0.13605 -59518,5302:114:3,-24,-31.5,0,0,-0.13605 -59519,5302:113:4,-23.5,-31.5,0,0,-0.13605 -59520,5302:113:3,-23,-31.5,0,0,-0.13605 -59521,5302:112:4,-22.5,-31.5,0,0,-0.13605 -59522,5302:112:3,-22,-31.5,0,0,-0.13605 -59523,5302:111:4,-21.5,-31.5,0,0,-0.13605 -59524,5302:111:3,-21,-31.5,0,0,-0.13605 -59525,5302:110:4,-20.5,-31.5,0,0,-0.13605 -59526,5302:110:3,-20,-31.5,0,0,-0.13605 -59527,5301:219:4,-19.5,-31.5,0,0,-0.13182 -59528,5301:219:3,-19,-31.5,0,0,-0.12346 -59529,5301:218:4,-18.5,-31.5,0,0,-0.119487 -59530,5301:218:3,-18,-31.5,0,0,-0.116917 -59531,5301:217:4,-17.5,-31.5,0,0,-0.112649 -59532,5301:217:3,-17,-31.5,0,0,-0.105515 -59533,5301:216:4,-16.5,-31.5,0,0,-0.0948826 -59534,5301:216:3,-16,-31.5,0,0,-0.0920153 -59535,5301:215:4,-15.5,-31.5,0,0,-0.108711 -59536,5301:215:3,-15,-31.5,0,0,-0.13605 -59537,5301:114:4,-14.5,-31.5,0,0,-0.13605 -59538,5301:114:3,-14,-31.5,0,0,-0.13605 -59539,5301:113:4,-13.5,-31.5,0,0,-0.13605 -59540,5301:113:3,-13,-31.5,0,0,-0.13605 -59541,5301:112:4,-12.5,-31.5,0,0,-0.13605 -59542,5301:112:3,-12,-31.5,0,0,-0.13605 -59543,5301:111:4,-11.5,-31.5,0,0,-0.13605 -59544,5301:111:3,-11,-31.5,0,0,-0.13605 -59545,5301:110:4,-10.5,-31.5,0,0,-0.13605 -59546,5301:110:3,-10,-31.5,0,0,-0.13605 -59547,5300:219:4,-9.5,-31.5,0,0,-0.13605 -59548,5300:219:3,-9,-31.5,0,0,-0.13605 -59549,5300:218:4,-8.5,-31.5,0,0,-0.13605 -59550,5300:218:3,-8,-31.5,0,0,-0.13605 -59551,5300:217:4,-7.5,-31.5,0,0,-0.13605 -59552,5300:217:3,-7,-31.5,0,0,-0.13605 -59553,5300:216:4,-6.5,-31.5,0,0,-0.13605 -59554,5300:216:3,-6,-31.5,0,0,-0.13605 -59555,5300:215:4,-5.5,-31.5,0,0,-0.13605 -59556,5300:215:3,-5,-31.5,0,0,-0.13605 -59557,5300:114:4,-4.5,-31.5,0,0,-0.13605 -59558,5300:114:3,-4,-31.5,0,0,-0.13605 -59559,5300:113:4,-3.5,-31.5,0,0,-0.13605 -59560,5300:113:3,-3,-31.5,0,0,-0.13605 -59561,5300:112:4,-2.5,-31.5,0,0,-0.134926 -59562,5300:112:3,-2,-31.5,0,0,-0.135913 -59563,5300:111:4,-1.5,-31.5,0,0,-0.13605 -59564,5300:111:3,-1,-31.5,0,0,-0.13605 -59565,5300:110:4,-0.5,-31.5,0,0,-0.13605 -59566,3300:110:4,0,-31.5,0,0,-0.13605 -59567,3300:110:4,0.5,-31.5,0,0,-0.13605 -59568,3300:111:3,1,-31.5,0,0,-0.13605 -59569,3300:111:4,1.5,-31.5,0,0,-0.135231 -59570,3300:112:3,2,-31.5,0,0,-0.130672 -59571,3300:112:4,2.5,-31.5,0,0,-0.128249 -59572,3300:113:3,3,-31.5,0,0,-0.130835 -59573,3300:113:4,3.5,-31.5,0,0,-0.13605 -59574,3300:114:3,4,-31.5,0,0,-0.13605 -59575,3300:114:4,4.5,-31.5,0,0,-0.13605 -59576,3300:215:3,5,-31.5,0,0,-0.13605 -59577,3300:215:4,5.5,-31.5,0,0,-0.13605 -59578,3300:216:3,6,-31.5,0,0,-0.13605 -59579,3300:216:4,6.5,-31.5,0,0,-0.13605 -59580,3300:217:3,7,-31.5,0,0,-0.13605 -59581,3300:217:4,7.5,-31.5,0,0,-0.13605 -59582,3300:218:3,8,-31.5,0,0,-0.13605 -59583,3300:218:4,8.5,-31.5,0,0,-0.13605 -59584,3300:219:3,9,-31.5,0,0,-0.13605 -59585,3300:219:4,9.5,-31.5,0,0,-0.13605 -59586,3301:110:3,10,-31.5,0,0,-0.13605 -59587,3301:110:4,10.5,-31.5,0,0,-0.13605 -59588,3301:111:3,11,-31.5,0,0,-0.13605 -59589,3301:111:4,11.5,-31.5,0,0,-0.13605 -59590,3301:112:3,12,-31.5,0,0,-0.13605 -59591,3301:112:4,12.5,-31.5,0,0,-0.13605 -59592,3301:113:3,13,-31.5,0,0,-0.13605 -59593,3301:113:4,13.5,-31.5,0,0,-0.13605 -59594,3301:114:3,14,-31.5,0,0,-0.13605 -59595,3301:114:4,14.5,-31.5,0,0,-0.13605 -59596,3301:215:3,15,-31.5,0,0,-0.13605 -59597,3301:215:4,15.5,-31.5,0,0,-0.13605 -59598,3301:216:3,16,-31.5,0,0,-0.13605 -59599,3301:216:4,16.5,-31.5,0,0,-0.13605 -59600,3301:217:3,17,-31.5,0,0,-0.13605 -59601,3301:217:4,17.5,-31.5,0,0,-0.13605 -59602,3301:218:3,18,-31.5,0,0,-0.13605 -59603,3301:218:4,18.5,-31.5,0,0,-0.13605 -59604,3301:219:3,19,-31.5,0,0,-0.13605 -59605,3301:219:4,19.5,-31.5,0,0,-0.13605 -59606,3302:110:3,20,-31.5,0,0,-0.13605 -59607,3302:110:4,20.5,-31.5,0,0,-0.13605 -59608,3302:111:3,21,-31.5,0,0,-0.13605 -59609,3302:111:4,21.5,-31.5,0,0,-0.13605 -59610,3302:112:3,22,-31.5,0,0,-0.13605 -59611,3302:112:4,22.5,-31.5,0,0,-0.13605 -59612,3302:113:3,23,-31.5,0,0,-0.13605 -59613,3302:113:4,23.5,-31.5,0,0,-0.13605 -59614,3302:114:3,24,-31.5,0,0,-0.13605 -59615,3302:114:4,24.5,-31.5,0,0,-0.13605 -59616,3302:215:3,25,-31.5,0,0,-0.13605 -59617,3302:215:4,25.5,-31.5,0,0,-0.13605 -59618,3302:216:3,26,-31.5,0,0,-0.13605 -59619,3302:216:4,26.5,-31.5,0,0,-0.13605 -59620,3302:217:3,27,-31.5,0,0,-0.13605 -59621,3302:217:4,27.5,-31.5,0,0,-0.13605 -59622,3302:218:3,28,-31.5,0,0,-0.13605 -59623,3302:218:4,28.5,-31.5,0,0,-0.13605 -59624,3302:219:3,29,-31.5,0,0,-0.13605 -59625,3302:219:4,29.5,-31.5,0,0,-0.13605 -59626,3303:110:3,30,-31.5,0,0,-0.13605 -59627,3303:110:4,30.5,-31.5,0,0,-0.13605 -59628,3303:111:3,31,-31.5,0,0,-0.13605 -59629,3303:111:4,31.5,-31.5,0,0,-0.13605 -59630,3303:112:3,32,-31.5,0,0,-0.13605 -59631,3303:112:4,32.5,-31.5,0,0,-0.13605 -59632,3303:113:3,33,-31.5,0,0,-0.13605 -59633,3303:113:4,33.5,-31.5,0,0,-0.13605 -59634,3303:114:3,34,-31.5,0,0,-0.13605 -59635,3303:114:4,34.5,-31.5,0,0,-0.13605 -59636,3303:215:3,35,-31.5,0,0,-0.13605 -59637,3303:215:4,35.5,-31.5,0,0,-0.13605 -59638,3303:216:3,36,-31.5,0,0,-0.13605 -59639,3303:216:4,36.5,-31.5,0,0,-0.13605 -59640,3303:217:3,37,-31.5,0,0,-0.13605 -59641,3303:217:4,37.5,-31.5,0,0,-0.13605 -59642,3303:218:3,38,-31.5,0,0,-0.13605 -59643,3303:218:4,38.5,-31.5,0,0,-0.13605 -59644,3303:219:3,39,-31.5,0,0,-0.13605 -59645,3303:219:4,39.5,-31.5,0,0,-0.13605 -59646,3304:110:3,40,-31.5,0,0,-0.13605 -59647,3304:110:4,40.5,-31.5,0,0,-0.13605 -59648,3304:111:3,41,-31.5,0,0,-0.13605 -59649,3304:111:4,41.5,-31.5,0,0,-0.13605 -59650,3304:112:3,42,-31.5,0,0,-0.13605 -59651,3304:112:4,42.5,-31.5,0,0,-0.13605 -59652,3304:113:3,43,-31.5,0,0,-0.13605 -59653,3304:113:4,43.5,-31.5,0,0,-0.13605 -59654,3304:114:3,44,-31.5,0,0,-0.13605 -59655,3304:114:4,44.5,-31.5,0,0,-0.13605 -59656,3304:215:3,45,-31.5,0,0,-0.13605 -59657,3304:215:4,45.5,-31.5,0,0,-0.13605 -59658,3304:216:3,46,-31.5,0,0,-0.13605 -59659,3304:216:4,46.5,-31.5,0,0,-0.13605 -59660,3304:217:3,47,-31.5,0,0,-0.13605 -59661,3304:217:4,47.5,-31.5,0,0,-0.13605 -59662,3304:218:3,48,-31.5,0,0,-0.13605 -59663,3304:218:4,48.5,-31.5,0,0,-0.13605 -59664,3304:219:3,49,-31.5,0,0,-0.13605 -59665,3304:219:4,49.5,-31.5,0,0,-0.13605 -59666,3305:110:3,50,-31.5,0,0,-0.13605 -59667,3305:110:4,50.5,-31.5,0,0,-0.13605 -59668,3305:111:3,51,-31.5,0,0,-0.13605 -59669,3305:111:4,51.5,-31.5,0,0,-0.13605 -59670,3305:112:3,52,-31.5,0,0,-0.13605 -59671,3305:112:4,52.5,-31.5,0,0,-0.13605 -59672,3305:113:3,53,-31.5,0,0,-0.13605 -59673,3305:113:4,53.5,-31.5,0,0,-0.13605 -59674,3305:114:3,54,-31.5,0,0,-0.13605 -59675,3305:114:4,54.5,-31.5,0,0,-0.13605 -59676,3305:215:3,55,-31.5,0,0,-0.13605 -59677,3305:215:4,55.5,-31.5,0,0,-0.13605 -59678,3305:216:3,56,-31.5,0,0,-0.13605 -59679,3305:216:4,56.5,-31.5,0,0,-0.13605 -59680,3305:217:3,57,-31.5,0,0,-0.13605 -59681,3305:217:4,57.5,-31.5,0,0,-0.13605 -59682,3305:218:3,58,-31.5,0,0,-0.13605 -59683,3305:218:4,58.5,-31.5,0,0,-0.13605 -59684,3305:219:3,59,-31.5,0,0,-0.13605 -59685,3305:219:4,59.5,-31.5,0,0,-0.13605 -59686,3306:110:3,60,-31.5,0,0,-0.13605 -59687,3306:110:4,60.5,-31.5,0,0,-0.13605 -59688,3306:111:3,61,-31.5,0,0,-0.13605 -59689,3306:111:4,61.5,-31.5,0,0,-0.13605 -59690,3306:112:3,62,-31.5,0,0,-0.13605 -59691,3306:112:4,62.5,-31.5,0,0,-0.13605 -59692,3306:113:3,63,-31.5,0,0,-0.13605 -59693,3306:113:4,63.5,-31.5,0,0,-0.13605 -59694,3306:114:3,64,-31.5,0,0,-0.13605 -59695,3306:114:4,64.5,-31.5,0,0,-0.13605 -59696,3306:215:3,65,-31.5,0,0,-0.13605 -59697,3306:215:4,65.5,-31.5,0,0,-0.13605 -59698,3306:216:3,66,-31.5,0,0,-0.13605 -59699,3306:216:4,66.5,-31.5,0,0,-0.13605 -59700,3306:217:3,67,-31.5,0,0,-0.13605 -59701,3306:217:4,67.5,-31.5,0,0,-0.13605 -59702,3306:218:3,68,-31.5,0,0,-0.13605 -59703,3306:218:4,68.5,-31.5,0,0,-0.13605 -59704,3306:219:3,69,-31.5,0,0,-0.13605 -59705,3306:219:4,69.5,-31.5,0,0,-0.13605 -59706,3307:110:3,70,-31.5,0,0,-0.13605 -59707,3307:110:4,70.5,-31.5,0,0,-0.13605 -59708,3307:111:3,71,-31.5,0,0,-0.13605 -59709,3307:111:4,71.5,-31.5,0,0,-0.13605 -59710,3307:112:3,72,-31.5,0,0,-0.13605 -59711,3307:112:4,72.5,-31.5,0,0,-0.13605 -59712,3307:113:4,73.5,-31.5,0,0,-0.13605 -59713,3307:114:3,74,-31.5,0,0,-0.13605 -59714,3307:114:4,74.5,-31.5,0,0,-0.13605 -59715,3307:215:3,75,-31.5,0,0,-0.13605 -59716,3307:215:4,75.5,-31.5,0,0,-0.13605 -59717,3307:216:3,76,-31.5,0,0,-0.13605 -59718,3307:216:4,76.5,-31.5,0,0,-0.13605 -59719,3307:217:3,77,-31.5,0,0,-0.13605 -59720,3307:217:4,77.5,-31.5,0,0,-0.13605 -59721,3307:218:3,78,-31.5,0,0,-0.13605 -59722,3307:218:4,78.5,-31.5,0,0,-0.13605 -59723,3307:219:3,79,-31.5,0,0,-0.13605 -59724,3307:219:4,79.5,-31.5,0,0,-0.13605 -59725,3308:110:3,80,-31.5,0,0,-0.13605 -59726,3308:110:4,80.5,-31.5,0,0,-0.13605 -59727,3308:111:3,81,-31.5,0,0,-0.13605 -59728,3308:111:4,81.5,-31.5,0,0,-0.13605 -59729,3308:112:3,82,-31.5,0,0,-0.13605 -59730,3308:112:4,82.5,-31.5,0,0,-0.13605 -59731,3308:113:3,83,-31.5,0,0,-0.13605 -59732,3308:113:4,83.5,-31.5,0,0,-0.13605 -59733,3308:114:3,84,-31.5,0,0,-0.13605 -59734,3308:114:4,84.5,-31.5,0,0,-0.13605 -59735,3308:215:3,85,-31.5,0,0,-0.13605 -59736,3308:215:4,85.5,-31.5,0,0,-0.13605 -59737,3308:216:3,86,-31.5,0,0,-0.13605 -59738,3308:216:4,86.5,-31.5,0,0,-0.13605 -59739,3308:217:3,87,-31.5,0,0,-0.13605 -59740,3308:217:4,87.5,-31.5,0,0,-0.13605 -59741,3308:218:3,88,-31.5,0,0,-0.13605 -59742,3308:218:4,88.5,-31.5,0,0,-0.13605 -59743,3308:219:3,89,-31.5,0,0,-0.13605 -59744,3308:219:4,89.5,-31.5,0,0,-0.136011 -59745,3309:110:3,90,-31.5,0,0,-0.13605 -59746,3309:110:4,90.5,-31.5,0,0,-0.13605 -59747,3309:111:3,91,-31.5,0,0,-0.13605 -59748,3309:111:4,91.5,-31.5,0,0,-0.13605 -59749,3309:112:3,92,-31.5,0,0,-0.13605 -59750,3309:112:4,92.5,-31.5,0,0,-0.13605 -59751,3309:113:3,93,-31.5,0,0,-0.13605 -59752,3309:113:4,93.5,-31.5,0,0,-0.13605 -59753,3309:114:3,94,-31.5,0,0,-0.13605 -59754,3309:114:4,94.5,-31.5,0,0,-0.13605 -59755,3309:215:3,95,-31.5,0,0,-0.13605 -59756,3309:215:4,95.5,-31.5,0,0,-0.13605 -59757,3309:216:3,96,-31.5,0,0,-0.13605 -59758,3309:216:4,96.5,-31.5,0,0,-0.13605 -59759,3309:217:3,97,-31.5,0,0,-0.13605 -59760,3309:217:4,97.5,-31.5,0,0,-0.13605 -59761,3309:218:3,98,-31.5,0,0,-0.135945 -59762,3309:218:4,98.5,-31.5,0,0,-0.135809 -59763,3309:219:3,99,-31.5,0,0,-0.135434 -59764,3309:219:4,99.5,-31.5,0,0,-0.13605 -59765,3310:110:3,100,-31.5,0,0,-0.13605 -59766,3310:110:4,100.5,-31.5,0,0,-0.13605 -59767,3310:111:3,101,-31.5,0,0,-0.13605 -59768,3310:111:4,101.5,-31.5,0,0,-0.13605 -59769,3310:112:3,102,-31.5,0,0,-0.13605 -59770,3310:112:4,102.5,-31.5,0,0,-0.13605 -59771,3310:113:3,103,-31.5,0,0,-0.13605 -59772,3310:113:4,103.5,-31.5,0,0,-0.13605 -59773,3310:114:3,104,-31.5,0,0,-0.13605 -59774,3310:114:4,104.5,-31.5,0,0,-0.13605 -59775,3310:215:3,105,-31.5,0,0,-0.13605 -59776,3310:215:4,105.5,-31.5,0,0,-0.13605 -59777,3310:216:3,106,-31.5,0,0,-0.13605 -59778,3310:216:4,106.5,-31.5,0,0,-0.13605 -59779,3310:217:3,107,-31.5,0,0,-0.13605 -59780,3310:217:4,107.5,-31.5,0,0,-0.13605 -59781,3310:218:3,108,-31.5,0,0,-0.13605 -59782,3310:218:4,108.5,-31.5,0,0,-0.13605 -59783,3310:219:3,109,-31.5,0,0,-0.13605 -59784,3310:219:4,109.5,-31.5,0,0,-0.13605 -59785,3311:110:3,110,-31.5,0,0,-0.13605 -59786,3311:110:4,110.5,-31.5,0,0,-0.13605 -59787,3311:111:3,111,-31.5,0,0,-0.13605 -59788,3311:111:4,111.5,-31.5,0,0,-0.13605 -59789,3311:112:3,112,-31.5,0,0,-0.13605 -59790,3311:112:4,112.5,-31.5,0,0,-0.13605 -59791,3311:113:3,113,-31.5,0,0,-0.13605 -59792,3311:113:4,113.5,-31.5,0,0,-0.13605 -59793,3311:114:3,114,-31.5,0,0,-0.13605 -59794,3311:114:4,114.5,-31.5,0,0,-0.13605 -59795,3311:215:3,115,-31.5,0,0,-0.13605 -59796,3311:215:4,115.5,-31.5,0,0,-0.13605 -59797,3311:216:3,116,-31.5,0,0,-0.13605 -59798,3311:216:4,116.5,-31.5,0,0,-0.13605 -59799,3311:217:3,117,-31.5,0,0,-0.13605 -59800,3311:217:4,117.5,-31.5,0,0,-0.13605 -59801,3311:218:3,118,-31.5,0,0,-0.13605 -59802,3311:218:4,118.5,-31.5,0,0,-0.13605 -59803,3311:219:3,119,-31.5,0,0,-0.13605 -59804,3311:219:4,119.5,-31.5,0,0,-0.13605 -59805,3312:110:3,120,-31.5,0,0,-0.13605 -59806,3312:110:4,120.5,-31.5,0,0,-0.13605 -59807,3312:111:3,121,-31.5,0,0,-0.13605 -59808,3312:111:4,121.5,-31.5,0,0,-0.13605 -59809,3312:112:3,122,-31.5,0,0,-0.13605 -59810,3312:112:4,122.5,-31.5,0,0,-0.13605 -59811,3312:113:3,123,-31.5,0,0,-0.13605 -59812,3312:113:4,123.5,-31.5,0,0,-0.13605 -59813,3312:114:3,124,-31.5,0,0,-0.13605 -59814,3312:114:4,124.5,-31.5,0,0,-0.13605 -59815,3312:215:3,125,-31.5,0,0,-0.13605 -59816,3312:215:4,125.5,-31.5,0,0,-0.13605 -59817,3312:216:3,126,-31.5,0,0,-0.13605 -59818,3312:216:4,126.5,-31.5,0,0,-0.13605 -59819,3312:217:3,127,-31.5,0,0,-0.13605 -59820,3312:217:4,127.5,-31.5,0,0,-0.13605 -59821,3312:218:3,128,-31.5,0,0,-0.13605 -59822,3312:218:4,128.5,-31.5,0,0,-0.13605 -59823,3312:219:3,129,-31.5,0,0,-0.13605 -59824,3312:219:4,129.5,-31.5,0,0,-0.13605 -59825,3313:110:3,130,-31.5,0,0,-0.13605 -59826,3313:110:4,130.5,-31.5,0,0,-0.13605 -59827,3313:111:3,131,-31.5,0,0,-0.13605 -59828,3313:111:4,131.5,-31.5,0,0,-0.13605 -59829,3313:112:3,132,-31.5,0,0,-0.13605 -59830,3313:112:4,132.5,-31.5,0,0,-0.13605 -59831,3313:113:3,133,-31.5,0,0,-0.13605 -59832,3313:113:4,133.5,-31.5,0,0,-0.13605 -59833,3313:114:3,134,-31.5,0,0,-0.13605 -59834,3313:114:4,134.5,-31.5,0,0,-0.13605 -59835,3313:215:3,135,-31.5,0,0,-0.13605 -59836,3313:215:4,135.5,-31.5,0,0,-0.13605 -59837,3313:216:3,136,-31.5,0,0,-0.13605 -59838,3313:216:4,136.5,-31.5,0,0,-0.13605 -59839,3313:217:3,137,-31.5,0,0,-0.13605 -59840,3313:217:4,137.5,-31.5,0,0,-0.13605 -59841,3313:218:3,138,-31.5,0,0,-0.13605 -59842,3313:218:4,138.5,-31.5,0,0,-0.13605 -59843,3313:219:3,139,-31.5,0,0,-0.13605 -59844,3313:219:4,139.5,-31.5,0,0,-0.13605 -59845,3314:110:3,140,-31.5,0,0,-0.13605 -59846,3314:110:4,140.5,-31.5,0,0,-0.13605 -59847,3314:111:3,141,-31.5,0,0,-0.13605 -59848,3314:111:4,141.5,-31.5,0,0,-0.13605 -59849,3314:112:3,142,-31.5,0,0,-0.13605 -59850,3314:112:4,142.5,-31.5,0,0,-0.13605 -59851,3314:113:3,143,-31.5,0,0,-0.13605 -59852,3314:113:4,143.5,-31.5,0,0,-0.13605 -59853,3314:114:3,144,-31.5,0,0,-0.13605 -59854,3314:114:4,144.5,-31.5,0,0,-0.13605 -59855,3314:215:3,145,-31.5,0,0,-0.13605 -59856,3314:215:4,145.5,-31.5,0,0,-0.13605 -59857,3314:216:3,146,-31.5,0,0,-0.13605 -59858,3314:216:4,146.5,-31.5,0,0,-0.13605 -59859,3314:217:3,147,-31.5,0,0,-0.13605 -59860,3314:217:4,147.5,-31.5,0,0,-0.13605 -59861,3314:218:3,148,-31.5,0,0,-0.13605 -59862,3314:218:4,148.5,-31.5,0,0,-0.13605 -59863,3314:219:3,149,-31.5,0,0,-0.13605 -59864,3314:219:4,149.5,-31.5,0,0,-0.13605 -59865,3315:110:3,150,-31.5,0,0,-0.13605 -59866,3315:110:4,150.5,-31.5,0,0,-0.13605 -59867,3315:111:3,151,-31.5,0,0,-0.13605 -59868,3315:111:4,151.5,-31.5,0,0,-0.13605 -59869,3315:112:3,152,-31.5,0,0,-0.13605 -59870,3315:112:4,152.5,-31.5,0,0,-0.13605 -59871,3315:113:3,153,-31.5,0,0,-0.13605 -59872,3315:113:4,153.5,-31.5,0,0,-0.13605 -59873,3315:114:3,154,-31.5,0,0,-0.13605 -59874,3315:114:4,154.5,-31.5,0,0,-0.13605 -59875,3315:215:3,155,-31.5,0,0,-0.13605 -59876,3315:215:4,155.5,-31.5,0,0,-0.13605 -59877,3315:216:3,156,-31.5,0,0,-0.13605 -59878,3315:216:4,156.5,-31.5,0,0,-0.13605 -59879,3315:217:3,157,-31.5,0,0,-0.13605 -59880,3315:217:4,157.5,-31.5,0,0,-0.13605 -59881,3315:218:3,158,-31.5,0,0,-0.13605 -59882,3315:218:4,158.5,-31.5,0,0,-0.13605 -59883,3315:219:3,159,-31.5,0,0,-0.13605 -59884,3315:219:4,159.5,-31.5,0,0,-0.13605 -59885,3316:110:3,160,-31.5,0,0,-0.13605 -59886,3316:110:4,160.5,-31.5,0,0,-0.13605 -59887,3316:111:3,161,-31.5,0,0,-0.13605 -59888,3316:111:4,161.5,-31.5,0,0,-0.13605 -59889,3316:112:3,162,-31.5,0,0,-0.13605 -59890,3316:112:4,162.5,-31.5,0,0,-0.13605 -59891,3316:113:3,163,-31.5,0,0,-0.13605 -59892,3316:113:4,163.5,-31.5,0,0,-0.13605 -59893,3316:114:3,164,-31.5,0,0,-0.13605 -59894,3316:114:4,164.5,-31.5,0,0,-0.13605 -59895,3316:215:3,165,-31.5,0,0,-0.13605 -59896,3316:215:4,165.5,-31.5,0,0,-0.13605 -59897,3316:216:3,166,-31.5,0,0,-0.13605 -59898,3316:216:4,166.5,-31.5,0,0,-0.13605 -59899,3316:217:3,167,-31.5,0,0,-0.13605 -59900,3316:217:4,167.5,-31.5,0,0,-0.13605 -59901,3316:218:3,168,-31.5,0,0,-0.13605 -59902,3316:218:4,168.5,-31.5,0,0,-0.13605 -59903,3316:219:3,169,-31.5,0,0,-0.13605 -59904,3316:219:4,169.5,-31.5,0,0,-0.13605 -59905,3317:110:3,170,-31.5,0,0,-0.13605 -59906,3317:110:4,170.5,-31.5,0,0,-0.13605 -59907,3317:111:3,171,-31.5,0,0,-0.13605 -59908,3317:111:4,171.5,-31.5,0,0,-0.13605 -59909,3317:112:3,172,-31.5,0,0,-0.13605 -59910,3317:112:4,172.5,-31.5,0,0,-0.13605 -59911,3317:113:4,173.5,-31.5,0,0,-0.13605 -59912,3317:114:3,174,-31.5,0,0,-0.13605 -59913,3317:114:4,174.5,-31.5,0,0,-0.13605 -59914,3317:215:3,175,-31.5,0,0,-0.13605 -59915,3317:217:3,177,-31.5,0,0,-0.13605 -59916,3317:217:4,177.5,-31.5,0,0,-0.13605 -59917,3317:218:3,178,-31.5,0,0,-0.13605 -59918,3317:218:4,178.5,-31.5,0,0,-0.13605 -59919,3317:219:3,179,-31.5,0,0,-0.13605 -59920,3317:219:4,179.5,-31.5,0,0,-0.13605 -59921,3318:110:3,180,-31.5,0,0,-0.13605 -59922,5318:110:1,-180,-31,0,0,-0.13605 -59923,5317:219:2,-179.5,-31,0,0,-0.13605 -59924,5317:219:1,-179,-31,0,0,-0.13605 -59925,5317:218:2,-178.5,-31,0,0,-0.13605 -59926,5317:218:1,-178,-31,0,0,-0.13605 -59927,5317:217:2,-177.5,-31,0,0,-0.13605 -59928,5317:217:1,-177,-31,0,0,-0.13605 -59929,5317:216:2,-176.5,-31,0,0,-0.13605 -59930,5317:216:1,-176,-31,0,0,-0.13605 -59931,5317:215:2,-175.5,-31,0,0,-0.13605 -59932,5317:215:1,-175,-31,0,0,-0.13605 -59933,5317:114:2,-174.5,-31,0,0,-0.13605 -59934,5317:114:1,-174,-31,0,0,-0.13605 -59935,5317:113:2,-173.5,-31,0,0,-0.13605 -59936,5317:113:1,-173,-31,0,0,-0.13605 -59937,5317:112:2,-172.5,-31,0,0,-0.13605 -59938,5317:112:1,-172,-31,0,0,-0.13605 -59939,5317:111:2,-171.5,-31,0,0,-0.13605 -59940,5317:111:1,-171,-31,0,0,-0.13605 -59941,5317:110:2,-170.5,-31,0,0,-0.13605 -59942,5317:110:1,-170,-31,0,0,-0.13605 -59943,5316:219:2,-169.5,-31,0,0,-0.13605 -59944,5316:219:1,-169,-31,0,0,-0.13605 -59945,5316:218:2,-168.5,-31,0,0,-0.13605 -59946,5316:218:1,-168,-31,0,0,-0.13605 -59947,5316:217:2,-167.5,-31,0,0,-0.13605 -59948,5316:217:1,-167,-31,0,0,-0.13605 -59949,5316:216:2,-166.5,-31,0,0,-0.13605 -59950,5316:216:1,-166,-31,0,0,-0.13605 -59951,5316:215:2,-165.5,-31,0,0,-0.13605 -59952,5316:215:1,-165,-31,0,0,-0.13605 -59953,5316:114:2,-164.5,-31,0,0,-0.13605 -59954,5316:114:1,-164,-31,0,0,-0.13605 -59955,5316:113:2,-163.5,-31,0,0,-0.13605 -59956,5316:113:1,-163,-31,0,0,-0.13605 -59957,5316:112:2,-162.5,-31,0,0,-0.13605 -59958,5316:112:1,-162,-31,0,0,-0.13605 -59959,5316:111:2,-161.5,-31,0,0,-0.13605 -59960,5316:111:1,-161,-31,0,0,-0.13605 -59961,5316:110:2,-160.5,-31,0,0,-0.13605 -59962,5316:110:1,-160,-31,0,0,-0.13605 -59963,5315:219:2,-159.5,-31,0,0,-0.13605 -59964,5315:219:1,-159,-31,0,0,-0.13605 -59965,5315:218:2,-158.5,-31,0,0,-0.13605 -59966,5315:218:1,-158,-31,0,0,-0.13605 -59967,5315:217:2,-157.5,-31,0,0,-0.13605 -59968,5315:217:1,-157,-31,0,0,-0.13605 -59969,5315:216:2,-156.5,-31,0,0,-0.13605 -59970,5315:216:1,-156,-31,0,0,-0.13605 -59971,5315:215:2,-155.5,-31,0,0,-0.13605 -59972,5315:215:1,-155,-31,0,0,-0.13605 -59973,5315:114:2,-154.5,-31,0,0,-0.13605 -59974,5315:114:1,-154,-31,0,0,-0.13605 -59975,5315:113:2,-153.5,-31,0,0,-0.13605 -59976,5315:113:1,-153,-31,0,0,-0.13605 -59977,5315:112:2,-152.5,-31,0,0,-0.13605 -59978,5315:112:1,-152,-31,0,0,-0.13605 -59979,5315:111:2,-151.5,-31,0,0,-0.13605 -59980,5315:111:1,-151,-31,0,0,-0.13605 -59981,5315:110:2,-150.5,-31,0,0,-0.13605 -59982,5315:110:1,-150,-31,0,0,-0.13605 -59983,5314:219:2,-149.5,-31,0,0,-0.13605 -59984,5314:219:1,-149,-31,0,0,-0.13605 -59985,5314:218:2,-148.5,-31,0,0,-0.13605 -59986,5314:218:1,-148,-31,0,0,-0.13605 -59987,5314:217:2,-147.5,-31,0,0,-0.13605 -59988,5314:217:1,-147,-31,0,0,-0.13605 -59989,5314:216:2,-146.5,-31,0,0,-0.13605 -59990,5314:216:1,-146,-31,0,0,-0.13605 -59991,5314:215:2,-145.5,-31,0,0,-0.13605 -59992,5314:215:1,-145,-31,0,0,-0.13605 -59993,5314:114:2,-144.5,-31,0,0,-0.13605 -59994,5314:114:1,-144,-31,0,0,-0.13605 -59995,5314:113:2,-143.5,-31,0,0,-0.13605 -59996,5314:113:1,-143,-31,0,0,-0.13605 -59997,5314:112:2,-142.5,-31,0,0,-0.13605 -59998,5314:112:1,-142,-31,0,0,-0.13605 -59999,5314:111:2,-141.5,-31,0,0,-0.13605 -60000,5314:111:1,-141,-31,0,0,-0.13605 -60001,5314:110:2,-140.5,-31,0,0,-0.13605 -60002,5314:110:1,-140,-31,0,0,-0.13605 -60003,5313:219:2,-139.5,-31,0,0,-0.13605 -60004,5313:219:1,-139,-31,0,0,-0.13605 -60005,5313:218:2,-138.5,-31,0,0,-0.13605 -60006,5313:218:1,-138,-31,0,0,-0.13605 -60007,5313:217:2,-137.5,-31,0,0,-0.13605 -60008,5313:217:1,-137,-31,0,0,-0.13605 -60009,5313:216:2,-136.5,-31,0,0,-0.13605 -60010,5313:216:1,-136,-31,0,0,-0.13605 -60011,5313:215:2,-135.5,-31,0,0,-0.13605 -60012,5313:215:1,-135,-31,0,0,-0.13605 -60013,5313:114:2,-134.5,-31,0,0,-0.13605 -60014,5313:114:1,-134,-31,0,0,-0.13605 -60015,5313:113:2,-133.5,-31,0,0,-0.13605 -60016,5313:113:1,-133,-31,0,0,-0.13605 -60017,5313:112:2,-132.5,-31,0,0,-0.13605 -60018,5313:112:1,-132,-31,0,0,-0.13605 -60019,5313:111:2,-131.5,-31,0,0,-0.13605 -60020,5313:111:1,-131,-31,0,0,-0.13605 -60021,5313:110:2,-130.5,-31,0,0,-0.13605 -60022,5313:110:1,-130,-31,0,0,-0.13605 -60023,5312:219:2,-129.5,-31,0,0,-0.13605 -60024,5312:219:1,-129,-31,0,0,-0.13605 -60025,5312:218:2,-128.5,-31,0,0,-0.13605 -60026,5312:218:1,-128,-31,0,0,-0.13605 -60027,5312:217:2,-127.5,-31,0,0,-0.13605 -60028,5312:217:1,-127,-31,0,0,-0.13605 -60029,5312:216:2,-126.5,-31,0,0,-0.13605 -60030,5312:216:1,-126,-31,0,0,-0.13605 -60031,5312:215:2,-125.5,-31,0,0,-0.13605 -60032,5312:215:1,-125,-31,0,0,-0.13605 -60033,5312:114:2,-124.5,-31,0,0,-0.13605 -60034,5312:114:1,-124,-31,0,0,-0.13605 -60035,5312:113:2,-123.5,-31,0,0,-0.13605 -60036,5312:113:1,-123,-31,0,0,-0.13605 -60037,5312:112:2,-122.5,-31,0,0,-0.13605 -60038,5312:112:1,-122,-31,0,0,-0.13605 -60039,5312:111:2,-121.5,-31,0,0,-0.13605 -60040,5312:111:1,-121,-31,0,0,-0.13605 -60041,5312:110:2,-120.5,-31,0,0,-0.13605 -60042,5312:110:1,-120,-31,0,0,-0.13605 -60043,5311:219:2,-119.5,-31,0,0,-0.13605 -60044,5311:219:1,-119,-31,0,0,-0.13605 -60045,5311:218:2,-118.5,-31,0,0,-0.13605 -60046,5311:218:1,-118,-31,0,0,-0.13605 -60047,5311:217:2,-117.5,-31,0,0,-0.13605 -60048,5311:217:1,-117,-31,0,0,-0.13605 -60049,5311:216:2,-116.5,-31,0,0,-0.13605 -60050,5311:216:1,-116,-31,0,0,-0.13605 -60051,5311:215:2,-115.5,-31,0,0,-0.13605 -60052,5311:215:1,-115,-31,0,0,-0.13605 -60053,5311:114:2,-114.5,-31,0,0,-0.13605 -60054,5311:114:1,-114,-31,0,0,-0.13605 -60055,5311:113:2,-113.5,-31,0,0,-0.13605 -60056,5311:113:1,-113,-31,0,0,-0.13605 -60057,5311:112:2,-112.5,-31,0,0,-0.13605 -60058,5311:112:1,-112,-31,0,0,-0.13605 -60059,5311:111:2,-111.5,-31,0,0,-0.13605 -60060,5311:111:1,-111,-31,0,0,-0.13605 -60061,5311:110:2,-110.5,-31,0,0,-0.13605 -60062,5311:110:1,-110,-31,0,0,-0.13605 -60063,5310:219:2,-109.5,-31,0,0,-0.13605 -60064,5310:219:1,-109,-31,0,0,-0.13605 -60065,5310:218:2,-108.5,-31,0,0,-0.13605 -60066,5310:218:1,-108,-31,0,0,-0.13605 -60067,5310:217:2,-107.5,-31,0,0,-0.13605 -60068,5310:217:1,-107,-31,0,0,-0.13605 -60069,5310:216:2,-106.5,-31,0,0,-0.13605 -60070,5310:216:1,-106,-31,0,0,-0.13605 -60071,5310:215:2,-105.5,-31,0,0,-0.13605 -60072,5310:215:1,-105,-31,0,0,-0.13605 -60073,5310:114:2,-104.5,-31,0,0,-0.13605 -60074,5310:114:1,-104,-31,0,0,-0.13605 -60075,5310:113:2,-103.5,-31,0,0,-0.13605 -60076,5310:113:1,-103,-31,0,0,-0.13605 -60077,5310:112:2,-102.5,-31,0,0,-0.13605 -60078,5310:112:1,-102,-31,0,0,-0.13605 -60079,5310:111:2,-101.5,-31,0,0,-0.13605 -60080,5310:111:1,-101,-31,0,0,-0.13605 -60081,5310:110:2,-100.5,-31,0,0,-0.13605 -60082,5310:110:1,-100,-31,0,0,-0.13605 -60083,5309:219:2,-99.5,-31,0,0,-0.13605 -60084,5309:219:1,-99,-31,0,0,-0.13605 -60085,5309:218:2,-98.5,-31,0,0,-0.13605 -60086,5309:218:1,-98,-31,0,0,-0.13605 -60087,5309:217:2,-97.5,-31,0,0,-0.13605 -60088,5309:217:1,-97,-31,0,0,-0.13605 -60089,5309:216:2,-96.5,-31,0,0,-0.13605 -60090,5309:216:1,-96,-31,0,0,-0.13605 -60091,5309:215:2,-95.5,-31,0,0,-0.13605 -60092,5309:215:1,-95,-31,0,0,-0.13605 -60093,5309:114:2,-94.5,-31,0,0,-0.13605 -60094,5309:114:1,-94,-31,0,0,-0.13605 -60095,5309:113:2,-93.5,-31,0,0,-0.13605 -60096,5309:113:1,-93,-31,0,0,-0.13605 -60097,5309:112:2,-92.5,-31,0,0,-0.13605 -60098,5309:112:1,-92,-31,0,0,-0.13605 -60099,5309:111:2,-91.5,-31,0,0,-0.13605 -60100,5309:111:1,-91,-31,0,0,-0.13605 -60101,5309:110:2,-90.5,-31,0,0,-0.13605 -60102,5309:110:1,-90,-31,0,0,-0.13605 -60103,5308:219:2,-89.5,-31,0,0,-0.13605 -60104,5308:219:1,-89,-31,0,0,-0.13605 -60105,5308:218:2,-88.5,-31,0,0,-0.13605 -60106,5308:218:1,-88,-31,0,0,-0.13605 -60107,5308:217:2,-87.5,-31,0,0,-0.13605 -60108,5308:217:1,-87,-31,0,0,-0.13605 -60109,5308:216:2,-86.5,-31,0,0,-0.13605 -60110,5308:216:1,-86,-31,0,0,-0.13605 -60111,5308:215:2,-85.5,-31,0,0,-0.13605 -60112,5308:215:1,-85,-31,0,0,-0.13605 -60113,5308:114:2,-84.5,-31,0,0,-0.13605 -60114,5308:114:1,-84,-31,0,0,-0.13605 -60115,5308:113:2,-83.5,-31,0,0,-0.13605 -60116,5308:113:1,-83,-31,0,0,-0.13605 -60117,5308:112:2,-82.5,-31,0,0,-0.13605 -60118,5308:112:1,-82,-31,0,0,-0.13605 -60119,5308:111:2,-81.5,-31,0,0,-0.13605 -60120,5308:111:1,-81,-31,0,0,-0.13605 -60121,5308:110:2,-80.5,-31,0,0,-0.13605 -60122,5308:110:1,-80,-31,0,0,-0.13605 -60123,5307:219:2,-79.5,-31,0,0,-0.13605 -60124,5307:219:1,-79,-31,0,0,-0.13605 -60125,5307:218:2,-78.5,-31,0,0,-0.13605 -60126,5307:218:1,-78,-31,0,0,-0.13605 -60127,5307:217:2,-77.5,-31,0,0,-0.13605 -60128,5307:217:1,-77,-31,0,0,-0.13605 -60129,5307:216:2,-76.5,-31,0,0,-0.13605 -60130,5307:216:1,-76,-31,0,0,-0.13605 -60131,5307:215:2,-75.5,-31,0,0,-0.13605 -60132,5307:215:1,-75,-31,0,0,-0.13605 -60133,5307:114:2,-74.5,-31,0,0,-0.13605 -60134,5307:114:1,-74,-31,0,0,-0.13605 -60135,5306:112:1,-62,-31,0,0,-0.13605 -60136,5306:111:2,-61.5,-31,0,0,-0.13605 -60137,5306:111:1,-61,-31,0,0,-0.13605 -60138,5306:110:2,-60.5,-31,0,0,-0.13605 -60139,5306:110:1,-60,-31,0,0,-0.13605 -60140,5305:219:2,-59.5,-31,0,0,-0.13605 -60141,5305:219:1,-59,-31,0,0,-0.13605 -60142,5305:218:2,-58.5,-31,0,0,-0.13605 -60143,5305:218:1,-58,-31,0,0,-0.13605 -60144,5305:217:2,-57.5,-31,0,0,-0.13605 -60145,5305:217:1,-57,-31,0,0,-0.13605 -60146,5305:216:2,-56.5,-31,0,0,-0.13605 -60147,5305:216:1,-56,-31,0,0,-0.13605 -60148,5305:215:2,-55.5,-31,0,0,-0.129276 -60149,5305:215:1,-55,-31,0,0,-0.13605 -60150,5305:114:2,-54.5,-31,0,0,-0.13605 -60151,5305:114:1,-54,-31,0,0,-0.13605 -60152,5305:113:2,-53.5,-31,0,0,-0.13605 -60153,5305:113:1,-53,-31,0,0,-0.13605 -60154,5305:112:2,-52.5,-31,0,0,-0.13605 -60155,5305:112:1,-52,-31,0,0,-0.13605 -60156,5305:111:2,-51.5,-31,0,0,-0.13605 -60157,5305:111:1,-51,-31,0,0,-0.13605 -60158,5305:110:2,-50.5,-31,0,0,-0.13605 -60159,5305:110:1,-50,-31,0,0,-0.13605 -60160,5304:219:2,-49.5,-31,0,0,-0.13605 -60161,5304:219:1,-49,-31,0,0,-0.13605 -60162,5304:218:2,-48.5,-31,0,0,-0.13605 -60163,5304:218:1,-48,-31,0,0,-0.13605 -60164,5304:217:2,-47.5,-31,0,0,-0.13605 -60165,5304:217:1,-47,-31,0,0,-0.13605 -60166,5304:216:2,-46.5,-31,0,0,-0.13605 -60167,5304:216:1,-46,-31,0,0,-0.13605 -60168,5304:215:2,-45.5,-31,0,0,-0.13605 -60169,5304:215:1,-45,-31,0,0,-0.13605 -60170,5304:114:2,-44.5,-31,0,0,-0.13605 -60171,5304:114:1,-44,-31,0,0,-0.13605 -60172,5304:113:2,-43.5,-31,0,0,-0.13605 -60173,5304:113:1,-43,-31,0,0,-0.13605 -60174,5304:112:2,-42.5,-31,0,0,-0.13605 -60175,5304:112:1,-42,-31,0,0,-0.13605 -60176,5304:111:2,-41.5,-31,0,0,-0.13605 -60177,5304:111:1,-41,-31,0,0,-0.13605 -60178,5304:110:2,-40.5,-31,0,0,-0.13605 -60179,5304:110:1,-40,-31,0,0,-0.13605 -60180,5303:219:2,-39.5,-31,0,0,-0.13605 -60181,5303:219:1,-39,-31,0,0,-0.13605 -60182,5303:218:2,-38.5,-31,0,0,-0.13605 -60183,5303:218:1,-38,-31,0,0,-0.13605 -60184,5303:217:2,-37.5,-31,0,0,-0.13605 -60185,5303:217:1,-37,-31,0,0,-0.13605 -60186,5303:216:2,-36.5,-31,0,0,-0.13605 -60187,5303:216:1,-36,-31,0,0,-0.13605 -60188,5303:215:2,-35.5,-31,0,0,-0.13605 -60189,5303:215:1,-35,-31,0,0,-0.13605 -60190,5303:114:2,-34.5,-31,0,0,-0.13605 -60191,5303:114:1,-34,-31,0,0,-0.13605 -60192,5303:113:2,-33.5,-31,0,0,-0.13605 -60193,5303:113:1,-33,-31,0,0,-0.13605 -60194,5303:112:2,-32.5,-31,0,0,-0.13605 -60195,5303:112:1,-32,-31,0,0,-0.13605 -60196,5303:111:2,-31.5,-31,0,0,-0.13605 -60197,5303:111:1,-31,-31,0,0,-0.13605 -60198,5303:110:2,-30.5,-31,0,0,-0.13605 -60199,5303:110:1,-30,-31,0,0,-0.13605 -60200,5302:219:2,-29.5,-31,0,0,-0.13605 -60201,5302:219:1,-29,-31,0,0,-0.13605 -60202,5302:218:2,-28.5,-31,0,0,-0.13605 -60203,5302:218:1,-28,-31,0,0,-0.13605 -60204,5302:217:2,-27.5,-31,0,0,-0.13605 -60205,5302:217:1,-27,-31,0,0,-0.13605 -60206,5302:216:2,-26.5,-31,0,0,-0.13605 -60207,5302:216:1,-26,-31,0,0,-0.13605 -60208,5302:215:2,-25.5,-31,0,0,-0.13605 -60209,5302:215:1,-25,-31,0,0,-0.13605 -60210,5302:114:2,-24.5,-31,0,0,-0.13605 -60211,5302:114:1,-24,-31,0,0,-0.13605 -60212,5302:113:2,-23.5,-31,0,0,-0.13605 -60213,5302:113:1,-23,-31,0,0,-0.13605 -60214,5302:112:2,-22.5,-31,0,0,-0.13605 -60215,5302:112:1,-22,-31,0,0,-0.13605 -60216,5302:111:2,-21.5,-31,0,0,-0.13605 -60217,5302:111:1,-21,-31,0,0,-0.13605 -60218,5302:110:2,-20.5,-31,0,0,-0.13605 -60219,5302:110:1,-20,-31,0,0,-0.13605 -60220,5301:219:2,-19.5,-31,0,0,-0.13605 -60221,5301:219:1,-19,-31,0,0,-0.13605 -60222,5301:218:2,-18.5,-31,0,0,-0.13605 -60223,5301:218:1,-18,-31,0,0,-0.13605 -60224,5301:217:2,-17.5,-31,0,0,-0.13605 -60225,5301:217:1,-17,-31,0,0,-0.13605 -60226,5301:216:2,-16.5,-31,0,0,-0.13605 -60227,5301:216:1,-16,-31,0,0,-0.13605 -60228,5301:215:2,-15.5,-31,0,0,-0.13605 -60229,5301:215:1,-15,-31,0,0,-0.13605 -60230,5301:114:2,-14.5,-31,0,0,-0.13605 -60231,5301:114:1,-14,-31,0,0,-0.13605 -60232,5301:113:2,-13.5,-31,0,0,-0.13605 -60233,5301:113:1,-13,-31,0,0,-0.13605 -60234,5301:112:2,-12.5,-31,0,0,-0.13605 -60235,5301:112:1,-12,-31,0,0,-0.13605 -60236,5301:111:2,-11.5,-31,0,0,-0.13605 -60237,5301:111:1,-11,-31,0,0,-0.13605 -60238,5301:110:2,-10.5,-31,0,0,-0.13605 -60239,5301:110:1,-10,-31,0,0,-0.13605 -60240,5300:219:2,-9.5,-31,0,0,-0.13605 -60241,5300:219:1,-9,-31,0,0,-0.13605 -60242,5300:218:2,-8.5,-31,0,0,-0.13605 -60243,5300:218:1,-8,-31,0,0,-0.13605 -60244,5300:217:2,-7.5,-31,0,0,-0.13605 -60245,5300:217:1,-7,-31,0,0,-0.13605 -60246,5300:216:2,-6.5,-31,0,0,-0.13605 -60247,5300:216:1,-6,-31,0,0,-0.13605 -60248,5300:215:2,-5.5,-31,0,0,-0.13605 -60249,5300:215:1,-5,-31,0,0,-0.13605 -60250,5300:114:2,-4.5,-31,0,0,-0.13605 -60251,5300:114:1,-4,-31,0,0,-0.13605 -60252,5300:113:2,-3.5,-31,0,0,-0.13605 -60253,5300:113:1,-3,-31,0,0,-0.13605 -60254,5300:112:2,-2.5,-31,0,0,-0.13605 -60255,5300:112:1,-2,-31,0,0,-0.13605 -60256,5300:111:2,-1.5,-31,0,0,-0.13605 -60257,5300:111:1,-1,-31,0,0,-0.13605 -60258,5300:110:2,-0.5,-31,0,0,-0.13605 -60259,3300:110:2,0,-31,0,0,-0.13605 -60260,3300:110:2,0.5,-31,0,0,-0.13605 -60261,3300:111:1,1,-31,0,0,-0.13605 -60262,3300:111:2,1.5,-31,0,0,-0.13605 -60263,3300:112:1,2,-31,0,0,-0.13605 -60264,3300:112:2,2.5,-31,0,0,-0.13605 -60265,3300:113:1,3,-31,0,0,-0.13605 -60266,3300:113:2,3.5,-31,0,0,-0.13605 -60267,3300:114:1,4,-31,0,0,-0.13605 -60268,3300:114:2,4.5,-31,0,0,-0.13605 -60269,3300:215:1,5,-31,0,0,-0.13605 -60270,3300:215:2,5.5,-31,0,0,-0.13605 -60271,3300:216:1,6,-31,0,0,-0.13605 -60272,3300:216:2,6.5,-31,0,0,-0.13605 -60273,3300:217:1,7,-31,0,0,-0.13605 -60274,3300:217:2,7.5,-31,0,0,-0.13605 -60275,3300:218:1,8,-31,0,0,-0.13605 -60276,3300:218:2,8.5,-31,0,0,-0.13605 -60277,3300:219:1,9,-31,0,0,-0.13605 -60278,3300:219:2,9.5,-31,0,0,-0.13605 -60279,3301:110:1,10,-31,0,0,-0.13605 -60280,3301:110:2,10.5,-31,0,0,-0.13605 -60281,3301:111:1,11,-31,0,0,-0.13605 -60282,3301:111:2,11.5,-31,0,0,-0.13605 -60283,3301:112:1,12,-31,0,0,-0.13605 -60284,3301:112:2,12.5,-31,0,0,-0.13605 -60285,3301:113:1,13,-31,0,0,-0.13605 -60286,3301:113:2,13.5,-31,0,0,-0.13605 -60287,3301:114:1,14,-31,0,0,-0.13605 -60288,3301:114:2,14.5,-31,0,0,-0.13605 -60289,3301:215:1,15,-31,0,0,-0.13605 -60290,3301:215:2,15.5,-31,0,0,-0.13605 -60291,3301:216:1,16,-31,0,0,-0.13605 -60292,3301:216:2,16.5,-31,0,0,-0.13605 -60293,3301:217:1,17,-31,0,0,-0.13605 -60294,3301:217:2,17.5,-31,0,0,-0.13605 -60295,3301:218:1,18,-31,0,0,-0.13605 -60296,3301:218:2,18.5,-31,0,0,-0.13605 -60297,3301:219:1,19,-31,0,0,-0.13605 -60298,3301:219:2,19.5,-31,0,0,-0.13605 -60299,3302:110:1,20,-31,0,0,-0.13605 -60300,3302:110:2,20.5,-31,0,0,-0.13605 -60301,3302:111:1,21,-31,0,0,-0.13605 -60302,3302:111:2,21.5,-31,0,0,-0.13605 -60303,3302:112:1,22,-31,0,0,-0.13605 -60304,3302:112:2,22.5,-31,0,0,-0.13605 -60305,3302:113:1,23,-31,0,0,-0.13605 -60306,3302:113:2,23.5,-31,0,0,-0.13605 -60307,3302:114:1,24,-31,0,0,-0.13605 -60308,3302:114:2,24.5,-31,0,0,-0.13605 -60309,3302:215:1,25,-31,0,0,-0.13605 -60310,3302:215:2,25.5,-31,0,0,-0.13605 -60311,3302:216:1,26,-31,0,0,-0.13605 -60312,3302:216:2,26.5,-31,0,0,-0.13605 -60313,3302:217:1,27,-31,0,0,-0.13605 -60314,3302:217:2,27.5,-31,0,0,-0.13605 -60315,3302:218:1,28,-31,0,0,-0.13605 -60316,3302:218:2,28.5,-31,0,0,-0.13605 -60317,3302:219:1,29,-31,0,0,-0.13605 -60318,3302:219:2,29.5,-31,0,0,-0.13605 -60319,3303:110:1,30,-31,0,0,-0.13605 -60320,3303:110:2,30.5,-31,0,0,-0.13605 -60321,3303:111:1,31,-31,0,0,-0.13605 -60322,3303:111:2,31.5,-31,0,0,-0.13605 -60323,3303:112:1,32,-31,0,0,-0.13605 -60324,3303:112:2,32.5,-31,0,0,-0.13605 -60325,3303:113:1,33,-31,0,0,-0.13605 -60326,3303:113:2,33.5,-31,0,0,-0.13605 -60327,3303:114:1,34,-31,0,0,-0.13605 -60328,3303:114:2,34.5,-31,0,0,-0.13605 -60329,3303:215:1,35,-31,0,0,-0.13605 -60330,3303:215:2,35.5,-31,0,0,-0.13605 -60331,3303:216:1,36,-31,0,0,-0.13605 -60332,3303:216:2,36.5,-31,0,0,-0.13605 -60333,3303:217:1,37,-31,0,0,-0.13605 -60334,3303:217:2,37.5,-31,0,0,-0.13605 -60335,3303:218:1,38,-31,0,0,-0.13605 -60336,3303:218:2,38.5,-31,0,0,-0.13605 -60337,3303:219:1,39,-31,0,0,-0.13605 -60338,3303:219:2,39.5,-31,0,0,-0.13605 -60339,3304:110:1,40,-31,0,0,-0.13605 -60340,3304:110:2,40.5,-31,0,0,-0.13605 -60341,3304:111:1,41,-31,0,0,-0.13605 -60342,3304:111:2,41.5,-31,0,0,-0.13605 -60343,3304:112:1,42,-31,0,0,-0.13605 -60344,3304:112:2,42.5,-31,0,0,-0.13605 -60345,3304:113:1,43,-31,0,0,-0.13605 -60346,3304:113:2,43.5,-31,0,0,-0.13605 -60347,3304:114:1,44,-31,0,0,-0.13605 -60348,3304:114:2,44.5,-31,0,0,-0.13605 -60349,3304:215:1,45,-31,0,0,-0.13605 -60350,3304:215:2,45.5,-31,0,0,-0.13605 -60351,3304:216:1,46,-31,0,0,-0.13605 -60352,3304:216:2,46.5,-31,0,0,-0.13605 -60353,3304:217:1,47,-31,0,0,-0.13605 -60354,3304:217:2,47.5,-31,0,0,-0.13605 -60355,3304:218:1,48,-31,0,0,-0.13605 -60356,3304:218:2,48.5,-31,0,0,-0.13605 -60357,3304:219:1,49,-31,0,0,-0.13605 -60358,3304:219:2,49.5,-31,0,0,-0.13605 -60359,3305:110:1,50,-31,0,0,-0.13605 -60360,3305:110:2,50.5,-31,0,0,-0.13605 -60361,3305:111:1,51,-31,0,0,-0.13605 -60362,3305:111:2,51.5,-31,0,0,-0.13605 -60363,3305:112:1,52,-31,0,0,-0.13605 -60364,3305:112:2,52.5,-31,0,0,-0.13605 -60365,3305:113:1,53,-31,0,0,-0.13605 -60366,3305:113:2,53.5,-31,0,0,-0.13605 -60367,3305:114:1,54,-31,0,0,-0.13605 -60368,3305:114:2,54.5,-31,0,0,-0.13605 -60369,3305:215:1,55,-31,0,0,-0.13605 -60370,3305:215:2,55.5,-31,0,0,-0.13605 -60371,3305:216:1,56,-31,0,0,-0.13605 -60372,3305:216:2,56.5,-31,0,0,-0.13605 -60373,3305:217:1,57,-31,0,0,-0.13605 -60374,3305:217:2,57.5,-31,0,0,-0.13605 -60375,3305:218:1,58,-31,0,0,-0.13605 -60376,3305:218:2,58.5,-31,0,0,-0.13605 -60377,3305:219:1,59,-31,0,0,-0.13605 -60378,3305:219:2,59.5,-31,0,0,-0.13605 -60379,3306:110:1,60,-31,0,0,-0.13605 -60380,3306:110:2,60.5,-31,0,0,-0.13605 -60381,3306:111:1,61,-31,0,0,-0.13605 -60382,3306:111:2,61.5,-31,0,0,-0.13605 -60383,3306:112:1,62,-31,0,0,-0.13605 -60384,3306:112:2,62.5,-31,0,0,-0.13605 -60385,3306:113:1,63,-31,0,0,-0.13605 -60386,3306:113:2,63.5,-31,0,0,-0.13605 -60387,3306:114:1,64,-31,0,0,-0.13605 -60388,3306:114:2,64.5,-31,0,0,-0.13605 -60389,3306:215:1,65,-31,0,0,-0.13605 -60390,3306:215:2,65.5,-31,0,0,-0.13605 -60391,3306:216:1,66,-31,0,0,-0.13605 -60392,3306:216:2,66.5,-31,0,0,-0.13605 -60393,3306:217:1,67,-31,0,0,-0.13605 -60394,3306:217:2,67.5,-31,0,0,-0.13605 -60395,3306:218:1,68,-31,0,0,-0.13605 -60396,3306:218:2,68.5,-31,0,0,-0.13605 -60397,3306:219:1,69,-31,0,0,-0.13605 -60398,3306:219:2,69.5,-31,0,0,-0.13605 -60399,3307:110:1,70,-31,0,0,-0.13605 -60400,3307:110:2,70.5,-31,0,0,-0.13605 -60401,3307:111:1,71,-31,0,0,-0.13605 -60402,3307:111:2,71.5,-31,0,0,-0.13605 -60403,3307:112:1,72,-31,0,0,-0.13605 -60404,3307:112:2,72.5,-31,0,0,-0.13605 -60405,3307:113:2,73.5,-31,0,0,-0.13605 -60406,3307:114:1,74,-31,0,0,-0.13605 -60407,3307:114:2,74.5,-31,0,0,-0.13605 -60408,3307:215:1,75,-31,0,0,-0.13605 -60409,3307:215:2,75.5,-31,0,0,-0.13605 -60410,3307:216:1,76,-31,0,0,-0.13605 -60411,3307:216:2,76.5,-31,0,0,-0.13605 -60412,3307:217:1,77,-31,0,0,-0.13605 -60413,3307:217:2,77.5,-31,0,0,-0.13605 -60414,3307:218:1,78,-31,0,0,-0.13605 -60415,3307:218:2,78.5,-31,0,0,-0.13605 -60416,3307:219:1,79,-31,0,0,-0.13605 -60417,3307:219:2,79.5,-31,0,0,-0.13605 -60418,3308:110:1,80,-31,0,0,-0.13605 -60419,3308:110:2,80.5,-31,0,0,-0.13605 -60420,3308:111:1,81,-31,0,0,-0.13605 -60421,3308:111:2,81.5,-31,0,0,-0.13605 -60422,3308:112:1,82,-31,0,0,-0.13605 -60423,3308:112:2,82.5,-31,0,0,-0.13605 -60424,3308:113:1,83,-31,0,0,-0.13605 -60425,3308:113:2,83.5,-31,0,0,-0.13605 -60426,3308:114:1,84,-31,0,0,-0.13605 -60427,3308:114:2,84.5,-31,0,0,-0.13605 -60428,3308:215:1,85,-31,0,0,-0.13605 -60429,3308:215:2,85.5,-31,0,0,-0.13605 -60430,3308:216:1,86,-31,0,0,-0.13605 -60431,3308:216:2,86.5,-31,0,0,-0.13605 -60432,3308:217:1,87,-31,0,0,-0.13605 -60433,3308:217:2,87.5,-31,0,0,-0.13605 -60434,3308:218:1,88,-31,0,0,-0.13605 -60435,3308:218:2,88.5,-31,0,0,-0.13605 -60436,3308:219:1,89,-31,0,0,-0.13605 -60437,3308:219:2,89.5,-31,0,0,-0.13605 -60438,3309:110:1,90,-31,0,0,-0.13605 -60439,3309:110:2,90.5,-31,0,0,-0.13605 -60440,3309:111:1,91,-31,0,0,-0.13605 -60441,3309:111:2,91.5,-31,0,0,-0.13605 -60442,3309:112:1,92,-31,0,0,-0.13605 -60443,3309:112:2,92.5,-31,0,0,-0.13605 -60444,3309:113:1,93,-31,0,0,-0.13605 -60445,3309:113:2,93.5,-31,0,0,-0.13605 -60446,3309:114:1,94,-31,0,0,-0.13605 -60447,3309:114:2,94.5,-31,0,0,-0.13605 -60448,3309:215:1,95,-31,0,0,-0.13605 -60449,3309:215:2,95.5,-31,0,0,-0.13605 -60450,3309:216:1,96,-31,0,0,-0.13605 -60451,3309:216:2,96.5,-31,0,0,-0.13605 -60452,3309:217:1,97,-31,0,0,-0.13605 -60453,3309:217:2,97.5,-31,0,0,-0.13605 -60454,3309:218:1,98,-31,0,0,-0.13605 -60455,3309:218:2,98.5,-31,0,0,-0.13605 -60456,3309:219:1,99,-31,0,0,-0.13605 -60457,3309:219:2,99.5,-31,0,0,-0.13605 -60458,3310:110:1,100,-31,0,0,-0.13605 -60459,3310:110:2,100.5,-31,0,0,-0.13605 -60460,3310:111:1,101,-31,0,0,-0.13605 -60461,3310:111:2,101.5,-31,0,0,-0.13605 -60462,3310:112:1,102,-31,0,0,-0.13605 -60463,3310:112:2,102.5,-31,0,0,-0.13605 -60464,3310:113:1,103,-31,0,0,-0.13605 -60465,3310:113:2,103.5,-31,0,0,-0.13605 -60466,3310:114:1,104,-31,0,0,-0.13605 -60467,3310:114:2,104.5,-31,0,0,-0.13605 -60468,3310:215:1,105,-31,0,0,-0.13605 -60469,3310:215:2,105.5,-31,0,0,-0.13605 -60470,3310:216:1,106,-31,0,0,-0.13605 -60471,3310:216:2,106.5,-31,0,0,-0.13605 -60472,3310:217:1,107,-31,0,0,-0.13605 -60473,3310:217:2,107.5,-31,0,0,-0.13605 -60474,3310:218:1,108,-31,0,0,-0.13605 -60475,3310:218:2,108.5,-31,0,0,-0.13605 -60476,3310:219:1,109,-31,0,0,-0.13605 -60477,3310:219:2,109.5,-31,0,0,-0.13605 -60478,3311:110:1,110,-31,0,0,-0.13605 -60479,3311:110:2,110.5,-31,0,0,-0.13605 -60480,3311:111:1,111,-31,0,0,-0.13605 -60481,3311:111:2,111.5,-31,0,0,-0.13605 -60482,3311:112:1,112,-31,0,0,-0.13605 -60483,3311:112:2,112.5,-31,0,0,-0.13605 -60484,3311:113:1,113,-31,0,0,-0.13605 -60485,3311:113:2,113.5,-31,0,0,-0.13605 -60486,3311:114:1,114,-31,0,0,-0.13605 -60487,3311:114:2,114.5,-31,0,0,-0.13605 -60488,3311:215:1,115,-31,0,0,-0.13605 -60489,3311:215:2,115.5,-31,0,0,-0.13605 -60490,3311:216:1,116,-31,0,0,-0.13605 -60491,3311:216:2,116.5,-31,0,0,-0.13605 -60492,3311:217:1,117,-31,0,0,-0.13605 -60493,3311:217:2,117.5,-31,0,0,-0.13605 -60494,3311:218:1,118,-31,0,0,-0.13605 -60495,3311:218:2,118.5,-31,0,0,-0.13605 -60496,3311:219:1,119,-31,0,0,-0.13605 -60497,3311:219:2,119.5,-31,0,0,-0.13605 -60498,3312:110:1,120,-31,0,0,-0.13605 -60499,3312:110:2,120.5,-31,0,0,-0.13605 -60500,3312:111:1,121,-31,0,0,-0.13605 -60501,3312:111:2,121.5,-31,0,0,-0.13605 -60502,3312:112:1,122,-31,0,0,-0.13605 -60503,3312:112:2,122.5,-31,0,0,-0.13605 -60504,3312:113:1,123,-31,0,0,-0.13605 -60505,3312:113:2,123.5,-31,0,0,-0.13605 -60506,3312:114:1,124,-31,0,0,-0.13605 -60507,3312:114:2,124.5,-31,0,0,-0.13605 -60508,3312:215:1,125,-31,0,0,-0.13605 -60509,3312:215:2,125.5,-31,0,0,-0.13605 -60510,3312:216:1,126,-31,0,0,-0.13605 -60511,3312:216:2,126.5,-31,0,0,-0.13605 -60512,3312:217:1,127,-31,0,0,-0.13605 -60513,3312:217:2,127.5,-31,0,0,-0.13605 -60514,3312:218:1,128,-31,0,0,-0.13605 -60515,3312:218:2,128.5,-31,0,0,-0.13605 -60516,3312:219:1,129,-31,0,0,-0.13605 -60517,3312:219:2,129.5,-31,0,0,-0.13605 -60518,3313:110:1,130,-31,0,0,-0.13605 -60519,3313:110:2,130.5,-31,0,0,-0.13605 -60520,3313:111:1,131,-31,0,0,-0.13605 -60521,3313:111:2,131.5,-31,0,0,-0.13605 -60522,3313:112:1,132,-31,0,0,-0.13605 -60523,3313:112:2,132.5,-31,0,0,-0.13605 -60524,3313:113:1,133,-31,0,0,-0.13605 -60525,3313:113:2,133.5,-31,0,0,-0.13605 -60526,3313:114:1,134,-31,0,0,-0.13605 -60527,3313:114:2,134.5,-31,0,0,-0.13605 -60528,3313:215:1,135,-31,0,0,-0.13605 -60529,3313:215:2,135.5,-31,0,0,-0.13605 -60530,3313:216:1,136,-31,0,0,-0.13605 -60531,3313:216:2,136.5,-31,0,0,-0.13605 -60532,3313:217:1,137,-31,0,0,-0.13605 -60533,3313:217:2,137.5,-31,0,0,-0.13605 -60534,3313:218:1,138,-31,0,0,-0.13605 -60535,3313:218:2,138.5,-31,0,0,-0.13605 -60536,3313:219:1,139,-31,0,0,-0.13605 -60537,3313:219:2,139.5,-31,0,0,-0.13605 -60538,3314:110:1,140,-31,0,0,-0.13605 -60539,3314:110:2,140.5,-31,0,0,-0.13605 -60540,3314:111:1,141,-31,0,0,-0.13605 -60541,3314:111:2,141.5,-31,0,0,-0.13605 -60542,3314:112:1,142,-31,0,0,-0.13605 -60543,3314:112:2,142.5,-31,0,0,-0.13605 -60544,3314:113:1,143,-31,0,0,-0.13605 -60545,3314:113:2,143.5,-31,0,0,-0.13605 -60546,3314:114:1,144,-31,0,0,-0.13605 -60547,3314:114:2,144.5,-31,0,0,-0.13605 -60548,3314:215:1,145,-31,0,0,-0.13605 -60549,3314:215:2,145.5,-31,0,0,-0.13605 -60550,3314:216:1,146,-31,0,0,-0.13605 -60551,3314:216:2,146.5,-31,0,0,-0.13605 -60552,3314:217:1,147,-31,0,0,-0.13605 -60553,3314:217:2,147.5,-31,0,0,-0.13605 -60554,3314:218:1,148,-31,0,0,-0.13605 -60555,3314:219:1,149,-31,0,0,-0.13605 -60556,3314:219:2,149.5,-31,0,0,-0.13605 -60557,3315:110:1,150,-31,0,0,-0.13605 -60558,3315:110:2,150.5,-31,0,0,-0.13605 -60559,3315:111:1,151,-31,0,0,-0.13605 -60560,3315:111:2,151.5,-31,0,0,-0.13605 -60561,3315:112:1,152,-31,0,0,-0.13605 -60562,3315:112:2,152.5,-31,0,0,-0.13605 -60563,3315:113:1,153,-31,0,0,-0.13605 -60564,3315:113:2,153.5,-31,0,0,-0.13605 -60565,3315:114:1,154,-31,0,0,-0.13605 -60566,3315:114:2,154.5,-31,0,0,-0.13605 -60567,3315:215:1,155,-31,0,0,-0.13605 -60568,3315:215:2,155.5,-31,0,0,-0.13605 -60569,3315:216:1,156,-31,0,0,-0.13605 -60570,3315:216:2,156.5,-31,0,0,-0.13605 -60571,3315:217:1,157,-31,0,0,-0.13605 -60572,3315:217:2,157.5,-31,0,0,-0.13605 -60573,3315:218:1,158,-31,0,0,-0.13605 -60574,3315:218:2,158.5,-31,0,0,-0.13605 -60575,3315:219:1,159,-31,0,0,-0.13605 -60576,3315:219:2,159.5,-31,0,0,-0.13605 -60577,3316:110:1,160,-31,0,0,-0.13605 -60578,3316:110:2,160.5,-31,0,0,-0.13605 -60579,3316:111:1,161,-31,0,0,-0.13605 -60580,3316:111:2,161.5,-31,0,0,-0.13605 -60581,3316:112:1,162,-31,0,0,-0.13605 -60582,3316:112:2,162.5,-31,0,0,-0.13605 -60583,3316:113:1,163,-31,0,0,-0.13605 -60584,3316:113:2,163.5,-31,0,0,-0.13605 -60585,3316:114:1,164,-31,0,0,-0.13605 -60586,3316:114:2,164.5,-31,0,0,-0.13605 -60587,3316:215:1,165,-31,0,0,-0.13605 -60588,3316:215:2,165.5,-31,0,0,-0.13605 -60589,3316:216:1,166,-31,0,0,-0.13605 -60590,3316:216:2,166.5,-31,0,0,-0.13605 -60591,3316:217:1,167,-31,0,0,-0.13605 -60592,3316:217:2,167.5,-31,0,0,-0.13605 -60593,3316:218:1,168,-31,0,0,-0.13605 -60594,3316:218:2,168.5,-31,0,0,-0.13605 -60595,3316:219:1,169,-31,0,0,-0.13605 -60596,3316:219:2,169.5,-31,0,0,-0.13605 -60597,3317:110:1,170,-31,0,0,-0.13605 -60598,3317:110:2,170.5,-31,0,0,-0.13605 -60599,3317:111:1,171,-31,0,0,-0.13605 -60600,3317:111:2,171.5,-31,0,0,-0.13605 -60601,3317:112:1,172,-31,0,0,-0.13605 -60602,3317:112:2,172.5,-31,0,0,-0.13605 -60603,3317:113:1,173,-31,0,0,-0.13605 -60604,3317:113:2,173.5,-31,0,0,-0.13605 -60605,3317:114:1,174,-31,0,0,-0.13605 -60606,3317:114:2,174.5,-31,0,0,-0.13605 -60607,3317:215:1,175,-31,0,0,-0.13605 -60608,3317:217:2,177.5,-31,0,0,-0.13605 -60609,3317:218:1,178,-31,0,0,-0.13605 -60610,3317:218:2,178.5,-31,0,0,-0.13605 -60611,3317:219:1,179,-31,0,0,-0.13605 -60612,3317:219:2,179.5,-31,0,0,-0.13605 -60613,3318:110:1,180,-31,0,0,-0.13605 -60614,5318:100:3,-180,-30.5,0,0,-0.13605 -60615,5317:209:4,-179.5,-30.5,0,0,-0.13605 -60616,5317:209:3,-179,-30.5,0,0,-0.13605 -60617,5317:208:4,-178.5,-30.5,0,0,-0.13605 -60618,5317:208:3,-178,-30.5,0,0,-0.13605 -60619,5317:207:4,-177.5,-30.5,0,0,-0.13605 -60620,5317:207:3,-177,-30.5,0,0,-0.13605 -60621,5317:206:4,-176.5,-30.5,0,0,-0.13605 -60622,5317:206:3,-176,-30.5,0,0,-0.13605 -60623,5317:205:4,-175.5,-30.5,0,0,-0.13605 -60624,5317:205:3,-175,-30.5,0,0,-0.13605 -60625,5317:104:4,-174.5,-30.5,0,0,-0.13605 -60626,5317:104:3,-174,-30.5,0,0,-0.13605 -60627,5317:103:4,-173.5,-30.5,0,0,-0.13605 -60628,5317:103:3,-173,-30.5,0,0,-0.13605 -60629,5317:102:4,-172.5,-30.5,0,0,-0.13605 -60630,5317:102:3,-172,-30.5,0,0,-0.13605 -60631,5317:101:4,-171.5,-30.5,0,0,-0.13605 -60632,5317:101:3,-171,-30.5,0,0,-0.13605 -60633,5317:100:4,-170.5,-30.5,0,0,-0.13605 -60634,5317:100:3,-170,-30.5,0,0,-0.13605 -60635,5316:209:4,-169.5,-30.5,0,0,-0.13605 -60636,5316:209:3,-169,-30.5,0,0,-0.13605 -60637,5316:208:4,-168.5,-30.5,0,0,-0.13605 -60638,5316:208:3,-168,-30.5,0,0,-0.13605 -60639,5316:207:4,-167.5,-30.5,0,0,-0.13605 -60640,5316:207:3,-167,-30.5,0,0,-0.13605 -60641,5316:206:4,-166.5,-30.5,0,0,-0.13605 -60642,5316:206:3,-166,-30.5,0,0,-0.13605 -60643,5316:205:4,-165.5,-30.5,0,0,-0.13605 -60644,5316:205:3,-165,-30.5,0,0,-0.13605 -60645,5316:104:4,-164.5,-30.5,0,0,-0.13605 -60646,5316:104:3,-164,-30.5,0,0,-0.13605 -60647,5316:103:4,-163.5,-30.5,0,0,-0.13605 -60648,5316:103:3,-163,-30.5,0,0,-0.13605 -60649,5316:102:4,-162.5,-30.5,0,0,-0.13605 -60650,5316:102:3,-162,-30.5,0,0,-0.13605 -60651,5316:101:4,-161.5,-30.5,0,0,-0.13605 -60652,5316:101:3,-161,-30.5,0,0,-0.13605 -60653,5316:100:4,-160.5,-30.5,0,0,-0.13605 -60654,5316:100:3,-160,-30.5,0,0,-0.13605 -60655,5315:209:4,-159.5,-30.5,0,0,-0.13605 -60656,5315:209:3,-159,-30.5,0,0,-0.13605 -60657,5315:208:4,-158.5,-30.5,0,0,-0.13605 -60658,5315:208:3,-158,-30.5,0,0,-0.13605 -60659,5315:207:4,-157.5,-30.5,0,0,-0.13605 -60660,5315:207:3,-157,-30.5,0,0,-0.13605 -60661,5315:206:4,-156.5,-30.5,0,0,-0.13605 -60662,5315:206:3,-156,-30.5,0,0,-0.13605 -60663,5315:205:4,-155.5,-30.5,0,0,-0.13605 -60664,5315:205:3,-155,-30.5,0,0,-0.13605 -60665,5315:104:4,-154.5,-30.5,0,0,-0.13605 -60666,5315:104:3,-154,-30.5,0,0,-0.13605 -60667,5315:103:4,-153.5,-30.5,0,0,-0.13605 -60668,5315:103:3,-153,-30.5,0,0,-0.13605 -60669,5315:102:4,-152.5,-30.5,0,0,-0.13605 -60670,5315:102:3,-152,-30.5,0,0,-0.13605 -60671,5315:101:4,-151.5,-30.5,0,0,-0.13605 -60672,5315:101:3,-151,-30.5,0,0,-0.13605 -60673,5315:100:4,-150.5,-30.5,0,0,-0.13605 -60674,5315:100:3,-150,-30.5,0,0,-0.13605 -60675,5314:209:4,-149.5,-30.5,0,0,-0.13605 -60676,5314:209:3,-149,-30.5,0,0,-0.13605 -60677,5314:208:4,-148.5,-30.5,0,0,-0.13605 -60678,5314:208:3,-148,-30.5,0,0,-0.13605 -60679,5314:207:4,-147.5,-30.5,0,0,-0.13605 -60680,5314:207:3,-147,-30.5,0,0,-0.13605 -60681,5314:206:4,-146.5,-30.5,0,0,-0.13605 -60682,5314:206:3,-146,-30.5,0,0,-0.13605 -60683,5314:205:4,-145.5,-30.5,0,0,-0.13605 -60684,5314:205:3,-145,-30.5,0,0,-0.13605 -60685,5314:104:4,-144.5,-30.5,0,0,-0.13605 -60686,5314:104:3,-144,-30.5,0,0,-0.13605 -60687,5314:103:4,-143.5,-30.5,0,0,-0.13605 -60688,5314:103:3,-143,-30.5,0,0,-0.13605 -60689,5314:102:4,-142.5,-30.5,0,0,-0.13605 -60690,5314:102:3,-142,-30.5,0,0,-0.13605 -60691,5314:101:4,-141.5,-30.5,0,0,-0.13605 -60692,5314:101:3,-141,-30.5,0,0,-0.13605 -60693,5314:100:4,-140.5,-30.5,0,0,-0.13605 -60694,5314:100:3,-140,-30.5,0,0,-0.13605 -60695,5313:209:4,-139.5,-30.5,0,0,-0.13605 -60696,5313:209:3,-139,-30.5,0,0,-0.13605 -60697,5313:208:4,-138.5,-30.5,0,0,-0.13605 -60698,5313:208:3,-138,-30.5,0,0,-0.13605 -60699,5313:207:4,-137.5,-30.5,0,0,-0.13605 -60700,5313:207:3,-137,-30.5,0,0,-0.13605 -60701,5313:206:4,-136.5,-30.5,0,0,-0.13605 -60702,5313:206:3,-136,-30.5,0,0,-0.13605 -60703,5313:205:4,-135.5,-30.5,0,0,-0.13605 -60704,5313:205:3,-135,-30.5,0,0,-0.13605 -60705,5313:104:4,-134.5,-30.5,0,0,-0.13605 -60706,5313:104:3,-134,-30.5,0,0,-0.13605 -60707,5313:103:4,-133.5,-30.5,0,0,-0.13605 -60708,5313:103:3,-133,-30.5,0,0,-0.13605 -60709,5313:102:4,-132.5,-30.5,0,0,-0.13605 -60710,5313:102:3,-132,-30.5,0,0,-0.13605 -60711,5313:101:4,-131.5,-30.5,0,0,-0.13605 -60712,5313:101:3,-131,-30.5,0,0,-0.13605 -60713,5313:100:4,-130.5,-30.5,0,0,-0.13605 -60714,5313:100:3,-130,-30.5,0,0,-0.13605 -60715,5312:209:4,-129.5,-30.5,0,0,-0.13605 -60716,5312:209:3,-129,-30.5,0,0,-0.13605 -60717,5312:208:4,-128.5,-30.5,0,0,-0.13605 -60718,5312:208:3,-128,-30.5,0,0,-0.13605 -60719,5312:207:4,-127.5,-30.5,0,0,-0.13605 -60720,5312:207:3,-127,-30.5,0,0,-0.13605 -60721,5312:206:4,-126.5,-30.5,0,0,-0.13605 -60722,5312:206:3,-126,-30.5,0,0,-0.13605 -60723,5312:205:4,-125.5,-30.5,0,0,-0.13605 -60724,5312:205:3,-125,-30.5,0,0,-0.13605 -60725,5312:104:4,-124.5,-30.5,0,0,-0.13605 -60726,5312:104:3,-124,-30.5,0,0,-0.13605 -60727,5312:103:4,-123.5,-30.5,0,0,-0.13605 -60728,5312:103:3,-123,-30.5,0,0,-0.13605 -60729,5312:102:4,-122.5,-30.5,0,0,-0.13605 -60730,5312:102:3,-122,-30.5,0,0,-0.13605 -60731,5312:101:4,-121.5,-30.5,0,0,-0.13605 -60732,5312:101:3,-121,-30.5,0,0,-0.13605 -60733,5312:100:4,-120.5,-30.5,0,0,-0.13605 -60734,5312:100:3,-120,-30.5,0,0,-0.13605 -60735,5311:209:4,-119.5,-30.5,0,0,-0.13605 -60736,5311:209:3,-119,-30.5,0,0,-0.13605 -60737,5311:208:4,-118.5,-30.5,0,0,-0.13605 -60738,5311:208:3,-118,-30.5,0,0,-0.13605 -60739,5311:207:4,-117.5,-30.5,0,0,-0.13605 -60740,5311:207:3,-117,-30.5,0,0,-0.13605 -60741,5311:206:4,-116.5,-30.5,0,0,-0.13605 -60742,5311:206:3,-116,-30.5,0,0,-0.13605 -60743,5311:205:4,-115.5,-30.5,0,0,-0.13605 -60744,5311:205:3,-115,-30.5,0,0,-0.13605 -60745,5311:104:4,-114.5,-30.5,0,0,-0.13605 -60746,5311:104:3,-114,-30.5,0,0,-0.13605 -60747,5311:103:4,-113.5,-30.5,0,0,-0.13605 -60748,5311:103:3,-113,-30.5,0,0,-0.13605 -60749,5311:102:4,-112.5,-30.5,0,0,-0.13605 -60750,5311:102:3,-112,-30.5,0,0,-0.13605 -60751,5311:101:4,-111.5,-30.5,0,0,-0.13605 -60752,5311:101:3,-111,-30.5,0,0,-0.13605 -60753,5311:100:4,-110.5,-30.5,0,0,-0.13605 -60754,5311:100:3,-110,-30.5,0,0,-0.13605 -60755,5310:209:4,-109.5,-30.5,0,0,-0.13605 -60756,5310:209:3,-109,-30.5,0,0,-0.13605 -60757,5310:208:4,-108.5,-30.5,0,0,-0.13605 -60758,5310:208:3,-108,-30.5,0,0,-0.13605 -60759,5310:207:4,-107.5,-30.5,0,0,-0.13605 -60760,5310:207:3,-107,-30.5,0,0,-0.13605 -60761,5310:206:4,-106.5,-30.5,0,0,-0.13605 -60762,5310:206:3,-106,-30.5,0,0,-0.13605 -60763,5310:205:4,-105.5,-30.5,0,0,-0.13605 -60764,5310:205:3,-105,-30.5,0,0,-0.13605 -60765,5310:104:4,-104.5,-30.5,0,0,-0.13605 -60766,5310:104:3,-104,-30.5,0,0,-0.13605 -60767,5310:103:4,-103.5,-30.5,0,0,-0.13605 -60768,5310:103:3,-103,-30.5,0,0,-0.13605 -60769,5310:102:4,-102.5,-30.5,0,0,-0.13605 -60770,5310:102:3,-102,-30.5,0,0,-0.13605 -60771,5310:101:4,-101.5,-30.5,0,0,-0.13605 -60772,5310:101:3,-101,-30.5,0,0,-0.13605 -60773,5310:100:4,-100.5,-30.5,0,0,-0.13605 -60774,5310:100:3,-100,-30.5,0,0,-0.13605 -60775,5309:209:4,-99.5,-30.5,0,0,-0.13605 -60776,5309:209:3,-99,-30.5,0,0,-0.13605 -60777,5309:208:4,-98.5,-30.5,0,0,-0.13605 -60778,5309:208:3,-98,-30.5,0,0,-0.13605 -60779,5309:207:4,-97.5,-30.5,0,0,-0.13605 -60780,5309:207:3,-97,-30.5,0,0,-0.13605 -60781,5309:206:4,-96.5,-30.5,0,0,-0.13605 -60782,5309:206:3,-96,-30.5,0,0,-0.13605 -60783,5309:205:4,-95.5,-30.5,0,0,-0.13605 -60784,5309:205:3,-95,-30.5,0,0,-0.13605 -60785,5309:104:4,-94.5,-30.5,0,0,-0.13605 -60786,5309:104:3,-94,-30.5,0,0,-0.13605 -60787,5309:103:4,-93.5,-30.5,0,0,-0.13605 -60788,5309:103:3,-93,-30.5,0,0,-0.13605 -60789,5309:102:4,-92.5,-30.5,0,0,-0.13605 -60790,5309:102:3,-92,-30.5,0,0,-0.13605 -60791,5309:101:4,-91.5,-30.5,0,0,-0.13605 -60792,5309:101:3,-91,-30.5,0,0,-0.13605 -60793,5309:100:4,-90.5,-30.5,0,0,-0.13605 -60794,5309:100:3,-90,-30.5,0,0,-0.13605 -60795,5308:209:4,-89.5,-30.5,0,0,-0.13605 -60796,5308:209:3,-89,-30.5,0,0,-0.13605 -60797,5308:208:4,-88.5,-30.5,0,0,-0.13605 -60798,5308:208:3,-88,-30.5,0,0,-0.13605 -60799,5308:207:4,-87.5,-30.5,0,0,-0.13605 -60800,5308:207:3,-87,-30.5,0,0,-0.13605 -60801,5308:206:4,-86.5,-30.5,0,0,-0.13605 -60802,5308:206:3,-86,-30.5,0,0,-0.13605 -60803,5308:205:4,-85.5,-30.5,0,0,-0.13605 -60804,5308:205:3,-85,-30.5,0,0,-0.13605 -60805,5308:104:4,-84.5,-30.5,0,0,-0.13605 -60806,5308:104:3,-84,-30.5,0,0,-0.13605 -60807,5308:103:4,-83.5,-30.5,0,0,-0.13605 -60808,5308:103:3,-83,-30.5,0,0,-0.13605 -60809,5308:102:4,-82.5,-30.5,0,0,-0.13605 -60810,5308:102:3,-82,-30.5,0,0,-0.13605 -60811,5308:101:4,-81.5,-30.5,0,0,-0.13605 -60812,5308:101:3,-81,-30.5,0,0,-0.13605 -60813,5308:100:4,-80.5,-30.5,0,0,-0.13605 -60814,5308:100:3,-80,-30.5,0,0,-0.13605 -60815,5307:209:4,-79.5,-30.5,0,0,-0.13605 -60816,5307:209:3,-79,-30.5,0,0,-0.13605 -60817,5307:208:4,-78.5,-30.5,0,0,-0.13605 -60818,5307:208:3,-78,-30.5,0,0,-0.13605 -60819,5307:207:4,-77.5,-30.5,0,0,-0.13605 -60820,5307:207:3,-77,-30.5,0,0,-0.13605 -60821,5307:206:4,-76.5,-30.5,0,0,-0.13605 -60822,5307:206:3,-76,-30.5,0,0,-0.13605 -60823,5307:205:4,-75.5,-30.5,0,0,-0.13605 -60824,5307:205:3,-75,-30.5,0,0,-0.13605 -60825,5307:104:4,-74.5,-30.5,0,0,-0.13605 -60826,5307:104:3,-74,-30.5,0,0,-0.13605 -60827,5307:103:4,-73.5,-30.5,0,0,-0.13605 -60828,5306:102:3,-62,-30.5,0,0,-0.13605 -60829,5306:101:4,-61.5,-30.5,0,0,-0.13605 -60830,5306:101:3,-61,-30.5,0,0,-0.13605 -60831,5306:100:4,-60.5,-30.5,0,0,-0.13605 -60832,5306:100:3,-60,-30.5,0,0,-0.13605 -60833,5305:209:4,-59.5,-30.5,0,0,-0.13605 -60834,5305:209:3,-59,-30.5,0,0,-0.13605 -60835,5305:208:4,-58.5,-30.5,0,0,-0.13605 -60836,5305:208:3,-58,-30.5,0,0,-0.13605 -60837,5305:207:4,-57.5,-30.5,0,0,-0.13605 -60838,5305:207:3,-57,-30.5,0,0,-0.13605 -60839,5305:206:4,-56.5,-30.5,0,0,-0.13605 -60840,5305:206:3,-56,-30.5,0,0,-0.13605 -60841,5305:205:4,-55.5,-30.5,0,0,-0.13605 -60842,5305:205:3,-55,-30.5,0,0,-0.13605 -60843,5305:104:4,-54.5,-30.5,0,0,-0.13605 -60844,5305:104:3,-54,-30.5,0,0,-0.13605 -60845,5305:103:4,-53.5,-30.5,0,0,-0.13605 -60846,5305:103:3,-53,-30.5,0,0,-0.13605 -60847,5305:102:4,-52.5,-30.5,0,0,-0.13605 -60848,5305:102:3,-52,-30.5,0,0,-0.13605 -60849,5305:101:4,-51.5,-30.5,0,0,-0.13605 -60850,5305:101:3,-51,-30.5,0,0,-0.13605 -60851,5305:100:4,-50.5,-30.5,0,0,-0.13605 -60852,5305:100:3,-50,-30.5,0,0,-0.13605 -60853,5304:209:4,-49.5,-30.5,0,0,-0.13605 -60854,5304:209:3,-49,-30.5,0,0,-0.13605 -60855,5304:208:4,-48.5,-30.5,0,0,-0.13605 -60856,5304:208:3,-48,-30.5,0,0,-0.13605 -60857,5304:207:4,-47.5,-30.5,0,0,-0.13605 -60858,5304:207:3,-47,-30.5,0,0,-0.13605 -60859,5304:206:4,-46.5,-30.5,0,0,-0.13605 -60860,5304:206:3,-46,-30.5,0,0,-0.13605 -60861,5304:205:4,-45.5,-30.5,0,0,-0.13605 -60862,5304:205:3,-45,-30.5,0,0,-0.13605 -60863,5304:104:4,-44.5,-30.5,0,0,-0.13605 -60864,5304:104:3,-44,-30.5,0,0,-0.13605 -60865,5304:103:4,-43.5,-30.5,0,0,-0.13605 -60866,5304:103:3,-43,-30.5,0,0,-0.13605 -60867,5304:102:4,-42.5,-30.5,0,0,-0.13605 -60868,5304:102:3,-42,-30.5,0,0,-0.13605 -60869,5304:101:4,-41.5,-30.5,0,0,-0.13605 -60870,5304:101:3,-41,-30.5,0,0,-0.13605 -60871,5304:100:4,-40.5,-30.5,0,0,-0.13605 -60872,5304:100:3,-40,-30.5,0,0,-0.13605 -60873,5303:209:4,-39.5,-30.5,0,0,-0.13605 -60874,5303:209:3,-39,-30.5,0,0,-0.13605 -60875,5303:208:4,-38.5,-30.5,0,0,-0.13605 -60876,5303:208:3,-38,-30.5,0,0,-0.13605 -60877,5303:207:4,-37.5,-30.5,0,0,-0.13605 -60878,5303:207:3,-37,-30.5,0,0,-0.13605 -60879,5303:206:4,-36.5,-30.5,0,0,-0.13605 -60880,5303:206:3,-36,-30.5,0,0,-0.13605 -60881,5303:205:4,-35.5,-30.5,0,0,-0.13605 -60882,5303:205:3,-35,-30.5,0,0,-0.13605 -60883,5303:104:4,-34.5,-30.5,0,0,-0.13605 -60884,5303:104:3,-34,-30.5,0,0,-0.13605 -60885,5303:103:4,-33.5,-30.5,0,0,-0.13605 -60886,5303:103:3,-33,-30.5,0,0,-0.13605 -60887,5303:102:4,-32.5,-30.5,0,0,-0.13605 -60888,5303:102:3,-32,-30.5,0,0,-0.13605 -60889,5303:101:4,-31.5,-30.5,0,0,-0.13605 -60890,5303:101:3,-31,-30.5,0,0,-0.13605 -60891,5303:100:4,-30.5,-30.5,0,0,-0.13605 -60892,5303:100:3,-30,-30.5,0,0,-0.13605 -60893,5302:209:4,-29.5,-30.5,0,0,-0.13605 -60894,5302:209:3,-29,-30.5,0,0,-0.13605 -60895,5302:208:4,-28.5,-30.5,0,0,-0.13605 -60896,5302:208:3,-28,-30.5,0,0,-0.13605 -60897,5302:207:4,-27.5,-30.5,0,0,-0.13605 -60898,5302:207:3,-27,-30.5,0,0,-0.13605 -60899,5302:206:4,-26.5,-30.5,0,0,-0.13605 -60900,5302:206:3,-26,-30.5,0,0,-0.13605 -60901,5302:205:4,-25.5,-30.5,0,0,-0.13605 -60902,5302:205:3,-25,-30.5,0,0,-0.13605 -60903,5302:104:4,-24.5,-30.5,0,0,-0.13605 -60904,5302:104:3,-24,-30.5,0,0,-0.13605 -60905,5302:103:4,-23.5,-30.5,0,0,-0.13605 -60906,5302:103:3,-23,-30.5,0,0,-0.13605 -60907,5302:102:4,-22.5,-30.5,0,0,-0.13605 -60908,5302:102:3,-22,-30.5,0,0,-0.13605 -60909,5302:101:4,-21.5,-30.5,0,0,-0.13605 -60910,5302:101:3,-21,-30.5,0,0,-0.13605 -60911,5302:100:4,-20.5,-30.5,0,0,-0.13605 -60912,5302:100:3,-20,-30.5,0,0,-0.13605 -60913,5301:209:4,-19.5,-30.5,0,0,-0.13605 -60914,5301:209:3,-19,-30.5,0,0,-0.13605 -60915,5301:208:4,-18.5,-30.5,0,0,-0.13605 -60916,5301:208:3,-18,-30.5,0,0,-0.13605 -60917,5301:207:4,-17.5,-30.5,0,0,-0.13605 -60918,5301:207:3,-17,-30.5,0,0,-0.13605 -60919,5301:206:4,-16.5,-30.5,0,0,-0.13605 -60920,5301:206:3,-16,-30.5,0,0,-0.13605 -60921,5301:205:4,-15.5,-30.5,0,0,-0.13605 -60922,5301:205:3,-15,-30.5,0,0,-0.13605 -60923,5301:104:4,-14.5,-30.5,0,0,-0.13605 -60924,5301:104:3,-14,-30.5,0,0,-0.13605 -60925,5301:103:4,-13.5,-30.5,0,0,-0.13605 -60926,5301:103:3,-13,-30.5,0,0,-0.13605 -60927,5301:102:4,-12.5,-30.5,0,0,-0.13605 -60928,5301:102:3,-12,-30.5,0,0,-0.13605 -60929,5301:101:4,-11.5,-30.5,0,0,-0.13605 -60930,5301:101:3,-11,-30.5,0,0,-0.13605 -60931,5301:100:4,-10.5,-30.5,0,0,-0.13605 -60932,5301:100:3,-10,-30.5,0,0,-0.13605 -60933,5300:209:4,-9.5,-30.5,0,0,-0.13605 -60934,5300:209:3,-9,-30.5,0,0,-0.13605 -60935,5300:208:4,-8.5,-30.5,0,0,-0.13605 -60936,5300:208:3,-8,-30.5,0,0,-0.13605 -60937,5300:207:4,-7.5,-30.5,0,0,-0.13605 -60938,5300:207:3,-7,-30.5,0,0,-0.13605 -60939,5300:206:4,-6.5,-30.5,0,0,-0.13605 -60940,5300:206:3,-6,-30.5,0,0,-0.13605 -60941,5300:205:4,-5.5,-30.5,0,0,-0.13605 -60942,5300:205:3,-5,-30.5,0,0,-0.13605 -60943,5300:104:4,-4.5,-30.5,0,0,-0.13605 -60944,5300:104:3,-4,-30.5,0,0,-0.13605 -60945,5300:103:4,-3.5,-30.5,0,0,-0.13605 -60946,5300:103:3,-3,-30.5,0,0,-0.13605 -60947,5300:102:4,-2.5,-30.5,0,0,-0.13605 -60948,5300:102:3,-2,-30.5,0,0,-0.13605 -60949,5300:101:4,-1.5,-30.5,0,0,-0.13605 -60950,5300:101:3,-1,-30.5,0,0,-0.13605 -60951,5300:100:4,-0.5,-30.5,0,0,-0.13605 -60952,3300:100:4,0,-30.5,0,0,-0.13605 -60953,3300:100:4,0.5,-30.5,0,0,-0.13605 -60954,3300:101:3,1,-30.5,0,0,-0.13605 -60955,3300:101:4,1.5,-30.5,0,0,-0.13605 -60956,3300:102:3,2,-30.5,0,0,-0.13605 -60957,3300:102:4,2.5,-30.5,0,0,-0.13605 -60958,3300:103:3,3,-30.5,0,0,-0.13605 -60959,3300:103:4,3.5,-30.5,0,0,-0.13605 -60960,3300:104:3,4,-30.5,0,0,-0.13605 -60961,3300:104:4,4.5,-30.5,0,0,-0.13605 -60962,3300:205:3,5,-30.5,0,0,-0.13605 -60963,3300:205:4,5.5,-30.5,0,0,-0.13605 -60964,3300:206:3,6,-30.5,0,0,-0.13605 -60965,3300:206:4,6.5,-30.5,0,0,-0.13605 -60966,3300:207:3,7,-30.5,0,0,-0.13605 -60967,3300:207:4,7.5,-30.5,0,0,-0.13605 -60968,3300:208:3,8,-30.5,0,0,-0.13605 -60969,3300:208:4,8.5,-30.5,0,0,-0.13605 -60970,3300:209:3,9,-30.5,0,0,-0.13605 -60971,3300:209:4,9.5,-30.5,0,0,-0.13605 -60972,3301:100:3,10,-30.5,0,0,-0.13605 -60973,3301:100:4,10.5,-30.5,0,0,-0.13605 -60974,3301:101:3,11,-30.5,0,0,-0.13605 -60975,3301:101:4,11.5,-30.5,0,0,-0.13605 -60976,3301:102:3,12,-30.5,0,0,-0.13605 -60977,3301:102:4,12.5,-30.5,0,0,-0.13605 -60978,3301:103:3,13,-30.5,0,0,-0.13605 -60979,3301:103:4,13.5,-30.5,0,0,-0.13605 -60980,3301:104:3,14,-30.5,0,0,-0.13605 -60981,3301:104:4,14.5,-30.5,0,0,-0.13605 -60982,3301:205:3,15,-30.5,0,0,-0.13605 -60983,3301:205:4,15.5,-30.5,0,0,-0.13605 -60984,3301:206:3,16,-30.5,0,0,-0.13605 -60985,3301:206:4,16.5,-30.5,0,0,-0.13605 -60986,3301:207:3,17,-30.5,0,0,-0.13605 -60987,3301:207:4,17.5,-30.5,0,0,-0.13605 -60988,3301:208:3,18,-30.5,0,0,-0.13605 -60989,3301:208:4,18.5,-30.5,0,0,-0.13605 -60990,3301:209:3,19,-30.5,0,0,-0.13605 -60991,3301:209:4,19.5,-30.5,0,0,-0.13605 -60992,3302:100:3,20,-30.5,0,0,-0.13605 -60993,3302:100:4,20.5,-30.5,0,0,-0.13605 -60994,3302:101:3,21,-30.5,0,0,-0.13605 -60995,3302:101:4,21.5,-30.5,0,0,-0.13605 -60996,3302:102:3,22,-30.5,0,0,-0.13605 -60997,3302:102:4,22.5,-30.5,0,0,-0.13605 -60998,3302:103:3,23,-30.5,0,0,-0.13605 -60999,3302:103:4,23.5,-30.5,0,0,-0.13605 -61000,3302:104:3,24,-30.5,0,0,-0.13605 -61001,3302:104:4,24.5,-30.5,0,0,-0.13605 -61002,3302:205:3,25,-30.5,0,0,-0.13605 -61003,3302:205:4,25.5,-30.5,0,0,-0.13605 -61004,3302:206:3,26,-30.5,0,0,-0.13605 -61005,3302:206:4,26.5,-30.5,0,0,-0.13605 -61006,3302:207:3,27,-30.5,0,0,-0.13605 -61007,3302:207:4,27.5,-30.5,0,0,-0.13605 -61008,3302:208:3,28,-30.5,0,0,-0.13605 -61009,3302:208:4,28.5,-30.5,0,0,-0.13605 -61010,3302:209:3,29,-30.5,0,0,-0.13605 -61011,3302:209:4,29.5,-30.5,0,0,-0.13605 -61012,3303:100:3,30,-30.5,0,0,-0.13605 -61013,3303:100:4,30.5,-30.5,0,0,-0.13605 -61014,3303:101:3,31,-30.5,0,0,-0.13605 -61015,3303:101:4,31.5,-30.5,0,0,-0.13605 -61016,3303:102:3,32,-30.5,0,0,-0.13605 -61017,3303:102:4,32.5,-30.5,0,0,-0.13605 -61018,3303:103:3,33,-30.5,0,0,-0.13605 -61019,3303:103:4,33.5,-30.5,0,0,-0.13605 -61020,3303:104:3,34,-30.5,0,0,-0.13605 -61021,3303:104:4,34.5,-30.5,0,0,-0.13605 -61022,3303:205:3,35,-30.5,0,0,-0.13605 -61023,3303:205:4,35.5,-30.5,0,0,-0.13605 -61024,3303:206:3,36,-30.5,0,0,-0.13605 -61025,3303:206:4,36.5,-30.5,0,0,-0.13605 -61026,3303:207:3,37,-30.5,0,0,-0.13605 -61027,3303:207:4,37.5,-30.5,0,0,-0.13605 -61028,3303:208:3,38,-30.5,0,0,-0.13605 -61029,3303:208:4,38.5,-30.5,0,0,-0.13605 -61030,3303:209:3,39,-30.5,0,0,-0.13605 -61031,3303:209:4,39.5,-30.5,0,0,-0.13605 -61032,3304:100:3,40,-30.5,0,0,-0.13605 -61033,3304:100:4,40.5,-30.5,0,0,-0.13605 -61034,3304:101:3,41,-30.5,0,0,-0.13605 -61035,3304:101:4,41.5,-30.5,0,0,-0.13605 -61036,3304:102:3,42,-30.5,0,0,-0.13605 -61037,3304:102:4,42.5,-30.5,0,0,-0.13605 -61038,3304:103:3,43,-30.5,0,0,-0.13605 -61039,3304:103:4,43.5,-30.5,0,0,-0.13605 -61040,3304:104:3,44,-30.5,0,0,-0.13605 -61041,3304:104:4,44.5,-30.5,0,0,-0.13605 -61042,3304:205:3,45,-30.5,0,0,-0.13605 -61043,3304:205:4,45.5,-30.5,0,0,-0.13605 -61044,3304:206:3,46,-30.5,0,0,-0.13605 -61045,3304:206:4,46.5,-30.5,0,0,-0.13605 -61046,3304:207:3,47,-30.5,0,0,-0.13605 -61047,3304:207:4,47.5,-30.5,0,0,-0.13605 -61048,3304:208:3,48,-30.5,0,0,-0.13605 -61049,3304:208:4,48.5,-30.5,0,0,-0.13605 -61050,3304:209:3,49,-30.5,0,0,-0.13605 -61051,3304:209:4,49.5,-30.5,0,0,-0.13605 -61052,3305:100:3,50,-30.5,0,0,-0.13605 -61053,3305:100:4,50.5,-30.5,0,0,-0.13605 -61054,3305:101:3,51,-30.5,0,0,-0.13605 -61055,3305:101:4,51.5,-30.5,0,0,-0.13605 -61056,3305:102:3,52,-30.5,0,0,-0.13605 -61057,3305:102:4,52.5,-30.5,0,0,-0.13605 -61058,3305:103:3,53,-30.5,0,0,-0.13605 -61059,3305:103:4,53.5,-30.5,0,0,-0.13605 -61060,3305:104:3,54,-30.5,0,0,-0.13605 -61061,3305:104:4,54.5,-30.5,0,0,-0.13605 -61062,3305:205:3,55,-30.5,0,0,-0.13605 -61063,3305:205:4,55.5,-30.5,0,0,-0.13605 -61064,3305:206:3,56,-30.5,0,0,-0.13605 -61065,3305:206:4,56.5,-30.5,0,0,-0.13605 -61066,3305:207:3,57,-30.5,0,0,-0.13605 -61067,3305:207:4,57.5,-30.5,0,0,-0.13605 -61068,3305:208:3,58,-30.5,0,0,-0.13605 -61069,3305:208:4,58.5,-30.5,0,0,-0.13605 -61070,3305:209:3,59,-30.5,0,0,-0.13605 -61071,3305:209:4,59.5,-30.5,0,0,-0.13605 -61072,3306:100:3,60,-30.5,0,0,-0.13605 -61073,3306:100:4,60.5,-30.5,0,0,-0.13605 -61074,3306:101:3,61,-30.5,0,0,-0.13605 -61075,3306:101:4,61.5,-30.5,0,0,-0.13605 -61076,3306:102:3,62,-30.5,0,0,-0.13605 -61077,3306:102:4,62.5,-30.5,0,0,-0.13605 -61078,3306:103:3,63,-30.5,0,0,-0.13605 -61079,3306:103:4,63.5,-30.5,0,0,-0.13605 -61080,3306:104:3,64,-30.5,0,0,-0.13605 -61081,3306:104:4,64.5,-30.5,0,0,-0.13605 -61082,3306:205:3,65,-30.5,0,0,-0.13605 -61083,3306:205:4,65.5,-30.5,0,0,-0.13605 -61084,3306:206:3,66,-30.5,0,0,-0.13605 -61085,3306:206:4,66.5,-30.5,0,0,-0.13605 -61086,3306:207:3,67,-30.5,0,0,-0.13605 -61087,3306:207:4,67.5,-30.5,0,0,-0.13605 -61088,3306:208:3,68,-30.5,0,0,-0.13605 -61089,3306:208:4,68.5,-30.5,0,0,-0.13605 -61090,3306:209:3,69,-30.5,0,0,-0.13605 -61091,3306:209:4,69.5,-30.5,0,0,-0.13605 -61092,3307:100:3,70,-30.5,0,0,-0.13605 -61093,3307:100:4,70.5,-30.5,0,0,-0.13605 -61094,3307:101:3,71,-30.5,0,0,-0.13605 -61095,3307:101:4,71.5,-30.5,0,0,-0.13605 -61096,3307:102:3,72,-30.5,0,0,-0.13605 -61097,3307:102:4,72.5,-30.5,0,0,-0.13605 -61098,3307:103:4,73.5,-30.5,0,0,-0.13605 -61099,3307:104:3,74,-30.5,0,0,-0.13605 -61100,3307:104:4,74.5,-30.5,0,0,-0.13605 -61101,3307:205:3,75,-30.5,0,0,-0.13605 -61102,3307:205:4,75.5,-30.5,0,0,-0.13605 -61103,3307:206:3,76,-30.5,0,0,-0.13605 -61104,3307:206:4,76.5,-30.5,0,0,-0.13605 -61105,3307:207:3,77,-30.5,0,0,-0.13605 -61106,3307:207:4,77.5,-30.5,0,0,-0.13605 -61107,3307:208:3,78,-30.5,0,0,-0.13605 -61108,3307:208:4,78.5,-30.5,0,0,-0.13605 -61109,3307:209:3,79,-30.5,0,0,-0.13605 -61110,3307:209:4,79.5,-30.5,0,0,-0.13605 -61111,3308:100:3,80,-30.5,0,0,-0.13605 -61112,3308:100:4,80.5,-30.5,0,0,-0.13605 -61113,3308:101:3,81,-30.5,0,0,-0.13605 -61114,3308:101:4,81.5,-30.5,0,0,-0.13605 -61115,3308:102:3,82,-30.5,0,0,-0.13605 -61116,3308:102:4,82.5,-30.5,0,0,-0.13605 -61117,3308:103:3,83,-30.5,0,0,-0.13605 -61118,3308:103:4,83.5,-30.5,0,0,-0.13605 -61119,3308:104:3,84,-30.5,0,0,-0.13605 -61120,3308:104:4,84.5,-30.5,0,0,-0.13605 -61121,3308:205:3,85,-30.5,0,0,-0.13605 -61122,3308:205:4,85.5,-30.5,0,0,-0.13605 -61123,3308:206:3,86,-30.5,0,0,-0.13605 -61124,3308:206:4,86.5,-30.5,0,0,-0.13605 -61125,3308:207:3,87,-30.5,0,0,-0.13605 -61126,3308:207:4,87.5,-30.5,0,0,-0.13605 -61127,3308:208:3,88,-30.5,0,0,-0.13605 -61128,3308:208:4,88.5,-30.5,0,0,-0.13605 -61129,3308:209:3,89,-30.5,0,0,-0.13605 -61130,3308:209:4,89.5,-30.5,0,0,-0.13605 -61131,3309:100:3,90,-30.5,0,0,-0.13605 -61132,3309:100:4,90.5,-30.5,0,0,-0.13605 -61133,3309:101:3,91,-30.5,0,0,-0.13605 -61134,3309:101:4,91.5,-30.5,0,0,-0.13605 -61135,3309:102:3,92,-30.5,0,0,-0.13605 -61136,3309:102:4,92.5,-30.5,0,0,-0.13605 -61137,3309:103:3,93,-30.5,0,0,-0.13605 -61138,3309:103:4,93.5,-30.5,0,0,-0.13605 -61139,3309:104:3,94,-30.5,0,0,-0.13605 -61140,3309:104:4,94.5,-30.5,0,0,-0.13605 -61141,3309:205:3,95,-30.5,0,0,-0.13605 -61142,3309:205:4,95.5,-30.5,0,0,-0.13605 -61143,3309:206:3,96,-30.5,0,0,-0.13605 -61144,3309:206:4,96.5,-30.5,0,0,-0.13605 -61145,3309:207:3,97,-30.5,0,0,-0.13605 -61146,3309:207:4,97.5,-30.5,0,0,-0.13605 -61147,3309:208:3,98,-30.5,0,0,-0.13605 -61148,3309:208:4,98.5,-30.5,0,0,-0.13605 -61149,3309:209:3,99,-30.5,0,0,-0.13605 -61150,3309:209:4,99.5,-30.5,0,0,-0.13605 -61151,3310:100:3,100,-30.5,0,0,-0.13605 -61152,3310:100:4,100.5,-30.5,0,0,-0.13605 -61153,3310:101:3,101,-30.5,0,0,-0.13605 -61154,3310:101:4,101.5,-30.5,0,0,-0.13605 -61155,3310:102:3,102,-30.5,0,0,-0.13605 -61156,3310:102:4,102.5,-30.5,0,0,-0.13605 -61157,3310:103:3,103,-30.5,0,0,-0.13605 -61158,3310:103:4,103.5,-30.5,0,0,-0.13605 -61159,3310:104:3,104,-30.5,0,0,-0.13605 -61160,3310:104:4,104.5,-30.5,0,0,-0.13605 -61161,3310:205:3,105,-30.5,0,0,-0.13605 -61162,3310:205:4,105.5,-30.5,0,0,-0.13605 -61163,3310:206:3,106,-30.5,0,0,-0.13605 -61164,3310:206:4,106.5,-30.5,0,0,-0.13605 -61165,3310:207:3,107,-30.5,0,0,-0.13605 -61166,3310:207:4,107.5,-30.5,0,0,-0.13605 -61167,3310:208:3,108,-30.5,0,0,-0.13605 -61168,3310:208:4,108.5,-30.5,0,0,-0.13605 -61169,3310:209:3,109,-30.5,0,0,-0.13605 -61170,3310:209:4,109.5,-30.5,0,0,-0.13605 -61171,3311:100:3,110,-30.5,0,0,-0.13605 -61172,3311:100:4,110.5,-30.5,0,0,-0.13605 -61173,3311:101:3,111,-30.5,0,0,-0.13605 -61174,3311:101:4,111.5,-30.5,0,0,-0.13605 -61175,3311:102:3,112,-30.5,0,0,-0.13605 -61176,3311:102:4,112.5,-30.5,0,0,-0.13605 -61177,3311:103:3,113,-30.5,0,0,-0.13605 -61178,3311:103:4,113.5,-30.5,0,0,-0.13605 -61179,3311:104:3,114,-30.5,0,0,-0.13605 -61180,3311:104:4,114.5,-30.5,0,0,-0.13605 -61181,3311:205:3,115,-30.5,0,0,-0.13605 -61182,3311:205:4,115.5,-30.5,0,0,-0.13605 -61183,3311:206:3,116,-30.5,0,0,-0.13605 -61184,3311:206:4,116.5,-30.5,0,0,-0.13605 -61185,3311:207:3,117,-30.5,0,0,-0.13605 -61186,3311:207:4,117.5,-30.5,0,0,-0.13605 -61187,3311:208:3,118,-30.5,0,0,-0.13605 -61188,3311:208:4,118.5,-30.5,0,0,-0.13605 -61189,3311:209:3,119,-30.5,0,0,-0.13605 -61190,3311:209:4,119.5,-30.5,0,0,-0.13605 -61191,3312:100:3,120,-30.5,0,0,-0.13605 -61192,3312:100:4,120.5,-30.5,0,0,-0.13605 -61193,3312:101:3,121,-30.5,0,0,-0.13605 -61194,3312:101:4,121.5,-30.5,0,0,-0.13605 -61195,3312:102:3,122,-30.5,0,0,-0.13605 -61196,3312:102:4,122.5,-30.5,0,0,-0.13605 -61197,3312:103:3,123,-30.5,0,0,-0.13605 -61198,3312:103:4,123.5,-30.5,0,0,-0.13605 -61199,3312:104:3,124,-30.5,0,0,-0.13605 -61200,3312:104:4,124.5,-30.5,0,0,-0.13605 -61201,3312:205:3,125,-30.5,0,0,-0.13605 -61202,3312:205:4,125.5,-30.5,0,0,-0.13605 -61203,3312:206:3,126,-30.5,0,0,-0.13605 -61204,3312:206:4,126.5,-30.5,0,0,-0.13605 -61205,3312:207:3,127,-30.5,0,0,-0.13605 -61206,3312:207:4,127.5,-30.5,0,0,-0.13605 -61207,3312:208:3,128,-30.5,0,0,-0.13605 -61208,3312:208:4,128.5,-30.5,0,0,-0.13605 -61209,3312:209:3,129,-30.5,0,0,-0.13605 -61210,3312:209:4,129.5,-30.5,0,0,-0.13605 -61211,3313:100:3,130,-30.5,0,0,-0.13605 -61212,3313:100:4,130.5,-30.5,0,0,-0.13605 -61213,3313:101:3,131,-30.5,0,0,-0.13605 -61214,3313:101:4,131.5,-30.5,0,0,-0.13605 -61215,3313:102:3,132,-30.5,0,0,-0.13605 -61216,3313:102:4,132.5,-30.5,0,0,-0.13605 -61217,3313:103:3,133,-30.5,0,0,-0.13605 -61218,3313:103:4,133.5,-30.5,0,0,-0.13605 -61219,3313:104:3,134,-30.5,0,0,-0.13605 -61220,3313:104:4,134.5,-30.5,0,0,-0.13605 -61221,3313:205:3,135,-30.5,0,0,-0.13605 -61222,3313:205:4,135.5,-30.5,0,0,-0.13605 -61223,3313:206:3,136,-30.5,0,0,-0.13605 -61224,3313:206:4,136.5,-30.5,0,0,-0.13605 -61225,3313:207:3,137,-30.5,0,0,-0.13605 -61226,3313:207:4,137.5,-30.5,0,0,-0.13605 -61227,3313:208:3,138,-30.5,0,0,-0.13605 -61228,3313:208:4,138.5,-30.5,0,0,-0.13605 -61229,3313:209:3,139,-30.5,0,0,-0.13605 -61230,3313:209:4,139.5,-30.5,0,0,-0.13605 -61231,3314:100:3,140,-30.5,0,0,-0.13605 -61232,3314:100:4,140.5,-30.5,0,0,-0.13605 -61233,3314:101:3,141,-30.5,0,0,-0.13605 -61234,3314:101:4,141.5,-30.5,0,0,-0.13605 -61235,3314:102:3,142,-30.5,0,0,-0.13605 -61236,3314:102:4,142.5,-30.5,0,0,-0.13605 -61237,3314:103:3,143,-30.5,0,0,-0.13605 -61238,3314:103:4,143.5,-30.5,0,0,-0.13605 -61239,3314:104:3,144,-30.5,0,0,-0.13605 -61240,3314:104:4,144.5,-30.5,0,0,-0.13605 -61241,3314:205:3,145,-30.5,0,0,-0.13605 -61242,3314:205:4,145.5,-30.5,0,0,-0.13605 -61243,3314:206:3,146,-30.5,0,0,-0.13605 -61244,3314:206:4,146.5,-30.5,0,0,-0.13605 -61245,3314:207:3,147,-30.5,0,0,-0.13605 -61246,3314:207:4,147.5,-30.5,0,0,-0.13605 -61247,3314:208:3,148,-30.5,0,0,-0.13605 -61248,3314:208:4,148.5,-30.5,0,0,-0.13605 -61249,3314:209:3,149,-30.5,0,0,-0.13605 -61250,3314:209:4,149.5,-30.5,0,0,-0.13605 -61251,3315:100:3,150,-30.5,0,0,-0.13605 -61252,3315:100:4,150.5,-30.5,0,0,-0.13605 -61253,3315:101:3,151,-30.5,0,0,-0.13605 -61254,3315:101:4,151.5,-30.5,0,0,-0.13605 -61255,3315:102:3,152,-30.5,0,0,-0.13605 -61256,3315:102:4,152.5,-30.5,0,0,-0.13605 -61257,3315:103:3,153,-30.5,0,0,-0.13605 -61258,3315:103:4,153.5,-30.5,0,0,-0.13605 -61259,3315:104:3,154,-30.5,0,0,-0.13605 -61260,3315:104:4,154.5,-30.5,0,0,-0.13605 -61261,3315:205:3,155,-30.5,0,0,-0.13605 -61262,3315:205:4,155.5,-30.5,0,0,-0.13605 -61263,3315:206:3,156,-30.5,0,0,-0.13605 -61264,3315:206:4,156.5,-30.5,0,0,-0.13605 -61265,3315:207:3,157,-30.5,0,0,-0.13605 -61266,3315:207:4,157.5,-30.5,0,0,-0.13605 -61267,3315:208:3,158,-30.5,0,0,-0.13605 -61268,3315:208:4,158.5,-30.5,0,0,-0.13605 -61269,3315:209:3,159,-30.5,0,0,-0.13605 -61270,3315:209:4,159.5,-30.5,0,0,-0.13605 -61271,3316:100:3,160,-30.5,0,0,-0.13605 -61272,3316:100:4,160.5,-30.5,0,0,-0.13605 -61273,3316:101:3,161,-30.5,0,0,-0.13605 -61274,3316:101:4,161.5,-30.5,0,0,-0.13605 -61275,3316:102:3,162,-30.5,0,0,-0.13605 -61276,3316:102:4,162.5,-30.5,0,0,-0.13605 -61277,3316:103:3,163,-30.5,0,0,-0.13605 -61278,3316:103:4,163.5,-30.5,0,0,-0.13605 -61279,3316:104:3,164,-30.5,0,0,-0.13605 -61280,3316:104:4,164.5,-30.5,0,0,-0.13605 -61281,3316:205:3,165,-30.5,0,0,-0.13605 -61282,3316:205:4,165.5,-30.5,0,0,-0.13605 -61283,3316:206:3,166,-30.5,0,0,-0.13605 -61284,3316:206:4,166.5,-30.5,0,0,-0.13605 -61285,3316:207:3,167,-30.5,0,0,-0.13605 -61286,3316:207:4,167.5,-30.5,0,0,-0.13605 -61287,3316:208:3,168,-30.5,0,0,-0.13605 -61288,3316:208:4,168.5,-30.5,0,0,-0.13605 -61289,3316:209:3,169,-30.5,0,0,-0.13605 -61290,3316:209:4,169.5,-30.5,0,0,-0.13605 -61291,3317:100:3,170,-30.5,0,0,-0.13605 -61292,3317:100:4,170.5,-30.5,0,0,-0.13605 -61293,3317:101:3,171,-30.5,0,0,-0.13605 -61294,3317:101:4,171.5,-30.5,0,0,-0.13605 -61295,3317:102:3,172,-30.5,0,0,-0.13605 -61296,3317:102:4,172.5,-30.5,0,0,-0.13605 -61297,3317:103:3,173,-30.5,0,0,-0.13605 -61298,3317:103:4,173.5,-30.5,0,0,-0.13605 -61299,3317:104:3,174,-30.5,0,0,-0.13605 -61300,3317:207:4,177.5,-30.5,0,0,-0.13605 -61301,3317:208:3,178,-30.5,0,0,-0.13605 -61302,3317:208:4,178.5,-30.5,0,0,-0.13605 -61303,3317:209:3,179,-30.5,0,0,-0.13605 -61304,3317:209:4,179.5,-30.5,0,0,-0.13605 -61305,3318:100:3,180,-30.5,0,0,-0.13605 -61306,5318:100:1,-180,-30,0,0,-0.13605 -61307,5317:209:2,-179.5,-30,0,0,-0.13605 -61308,5317:209:1,-179,-30,0,0,-0.13605 -61309,5317:208:2,-178.5,-30,0,0,-0.13605 -61310,5317:208:1,-178,-30,0,0,-0.13605 -61311,5317:207:2,-177.5,-30,0,0,-0.13605 -61312,5317:207:1,-177,-30,0,0,-0.13605 -61313,5317:206:2,-176.5,-30,0,0,-0.13605 -61314,5317:206:1,-176,-30,0,0,-0.13605 -61315,5317:205:2,-175.5,-30,0,0,-0.13605 -61316,5317:205:1,-175,-30,0,0,-0.13605 -61317,5317:104:2,-174.5,-30,0,0,-0.13605 -61318,5317:104:1,-174,-30,0,0,-0.13605 -61319,5317:103:2,-173.5,-30,0,0,-0.13605 -61320,5317:103:1,-173,-30,0,0,-0.13605 -61321,5317:102:2,-172.5,-30,0,0,-0.13605 -61322,5317:102:1,-172,-30,0,0,-0.13605 -61323,5317:101:2,-171.5,-30,0,0,-0.13605 -61324,5317:101:1,-171,-30,0,0,-0.13605 -61325,5317:100:2,-170.5,-30,0,0,-0.13605 -61326,5317:100:1,-170,-30,0,0,-0.13605 -61327,5316:209:2,-169.5,-30,0,0,-0.13605 -61328,5316:209:1,-169,-30,0,0,-0.13605 -61329,5316:208:2,-168.5,-30,0,0,-0.13605 -61330,5316:208:1,-168,-30,0,0,-0.13605 -61331,5316:207:2,-167.5,-30,0,0,-0.13605 -61332,5316:207:1,-167,-30,0,0,-0.13605 -61333,5316:206:2,-166.5,-30,0,0,-0.13605 -61334,5316:206:1,-166,-30,0,0,-0.13605 -61335,5316:205:2,-165.5,-30,0,0,-0.13605 -61336,5316:205:1,-165,-30,0,0,-0.13605 -61337,5316:104:2,-164.5,-30,0,0,-0.13605 -61338,5316:104:1,-164,-30,0,0,-0.13605 -61339,5316:103:2,-163.5,-30,0,0,-0.13605 -61340,5316:103:1,-163,-30,0,0,-0.13605 -61341,5316:102:2,-162.5,-30,0,0,-0.13605 -61342,5316:102:1,-162,-30,0,0,-0.13605 -61343,5316:101:2,-161.5,-30,0,0,-0.13605 -61344,5316:101:1,-161,-30,0,0,-0.13605 -61345,5316:100:2,-160.5,-30,0,0,-0.13605 -61346,5316:100:1,-160,-30,0,0,-0.13605 -61347,5315:209:2,-159.5,-30,0,0,-0.13605 -61348,5315:209:1,-159,-30,0,0,-0.13605 -61349,5315:208:2,-158.5,-30,0,0,-0.13605 -61350,5315:208:1,-158,-30,0,0,-0.13605 -61351,5315:207:2,-157.5,-30,0,0,-0.13605 -61352,5315:207:1,-157,-30,0,0,-0.13605 -61353,5315:206:2,-156.5,-30,0,0,-0.13605 -61354,5315:206:1,-156,-30,0,0,-0.13605 -61355,5315:205:2,-155.5,-30,0,0,-0.13605 -61356,5315:205:1,-155,-30,0,0,-0.13605 -61357,5315:104:2,-154.5,-30,0,0,-0.13605 -61358,5315:104:1,-154,-30,0,0,-0.13605 -61359,5315:103:2,-153.5,-30,0,0,-0.13605 -61360,5315:103:1,-153,-30,0,0,-0.13605 -61361,5315:102:2,-152.5,-30,0,0,-0.13605 -61362,5315:102:1,-152,-30,0,0,-0.13605 -61363,5315:101:2,-151.5,-30,0,0,-0.13605 -61364,5315:101:1,-151,-30,0,0,-0.13605 -61365,5315:100:2,-150.5,-30,0,0,-0.13605 -61366,5315:100:1,-150,-30,0,0,-0.13605 -61367,5314:209:2,-149.5,-30,0,0,-0.13605 -61368,5314:209:1,-149,-30,0,0,-0.13605 -61369,5314:208:2,-148.5,-30,0,0,-0.13605 -61370,5314:208:1,-148,-30,0,0,-0.13605 -61371,5314:207:2,-147.5,-30,0,0,-0.13605 -61372,5314:207:1,-147,-30,0,0,-0.13605 -61373,5314:206:2,-146.5,-30,0,0,-0.13605 -61374,5314:206:1,-146,-30,0,0,-0.13605 -61375,5314:205:2,-145.5,-30,0,0,-0.13605 -61376,5314:205:1,-145,-30,0,0,-0.13605 -61377,5314:104:2,-144.5,-30,0,0,-0.13605 -61378,5314:104:1,-144,-30,0,0,-0.13605 -61379,5314:103:2,-143.5,-30,0,0,-0.13605 -61380,5314:103:1,-143,-30,0,0,-0.13605 -61381,5314:102:2,-142.5,-30,0,0,-0.13605 -61382,5314:102:1,-142,-30,0,0,-0.13605 -61383,5314:101:2,-141.5,-30,0,0,-0.13605 -61384,5314:101:1,-141,-30,0,0,-0.13605 -61385,5314:100:2,-140.5,-30,0,0,-0.13605 -61386,5314:100:1,-140,-30,0,0,-0.13605 -61387,5313:209:2,-139.5,-30,0,0,-0.13605 -61388,5313:209:1,-139,-30,0,0,-0.13605 -61389,5313:208:2,-138.5,-30,0,0,-0.13605 -61390,5313:208:1,-138,-30,0,0,-0.13605 -61391,5313:207:2,-137.5,-30,0,0,-0.13605 -61392,5313:207:1,-137,-30,0,0,-0.13605 -61393,5313:206:2,-136.5,-30,0,0,-0.13605 -61394,5313:206:1,-136,-30,0,0,-0.13605 -61395,5313:205:2,-135.5,-30,0,0,-0.13605 -61396,5313:205:1,-135,-30,0,0,-0.13605 -61397,5313:104:2,-134.5,-30,0,0,-0.13605 -61398,5313:104:1,-134,-30,0,0,-0.13605 -61399,5313:103:2,-133.5,-30,0,0,-0.13605 -61400,5313:103:1,-133,-30,0,0,-0.13605 -61401,5313:102:2,-132.5,-30,0,0,-0.13605 -61402,5313:102:1,-132,-30,0,0,-0.13605 -61403,5313:101:2,-131.5,-30,0,0,-0.13605 -61404,5313:101:1,-131,-30,0,0,-0.13605 -61405,5313:100:2,-130.5,-30,0,0,-0.13605 -61406,5313:100:1,-130,-30,0,0,-0.13605 -61407,5312:209:2,-129.5,-30,0,0,-0.13605 -61408,5312:209:1,-129,-30,0,0,-0.13605 -61409,5312:208:2,-128.5,-30,0,0,-0.13605 -61410,5312:208:1,-128,-30,0,0,-0.13605 -61411,5312:207:2,-127.5,-30,0,0,-0.13605 -61412,5312:207:1,-127,-30,0,0,-0.13605 -61413,5312:206:2,-126.5,-30,0,0,-0.13605 -61414,5312:206:1,-126,-30,0,0,-0.13605 -61415,5312:205:2,-125.5,-30,0,0,-0.13605 -61416,5312:205:1,-125,-30,0,0,-0.13605 -61417,5312:104:2,-124.5,-30,0,0,-0.13605 -61418,5312:104:1,-124,-30,0,0,-0.13605 -61419,5312:103:2,-123.5,-30,0,0,-0.13605 -61420,5312:103:1,-123,-30,0,0,-0.13605 -61421,5312:102:2,-122.5,-30,0,0,-0.13605 -61422,5312:102:1,-122,-30,0,0,-0.13605 -61423,5312:101:2,-121.5,-30,0,0,-0.13605 -61424,5312:101:1,-121,-30,0,0,-0.13605 -61425,5312:100:2,-120.5,-30,0,0,-0.13605 -61426,5312:100:1,-120,-30,0,0,-0.13605 -61427,5311:209:2,-119.5,-30,0,0,-0.13605 -61428,5311:209:1,-119,-30,0,0,-0.13605 -61429,5311:208:2,-118.5,-30,0,0,-0.13605 -61430,5311:208:1,-118,-30,0,0,-0.13605 -61431,5311:207:2,-117.5,-30,0,0,-0.13605 -61432,5311:207:1,-117,-30,0,0,-0.13605 -61433,5311:206:2,-116.5,-30,0,0,-0.13605 -61434,5311:206:1,-116,-30,0,0,-0.13605 -61435,5311:205:2,-115.5,-30,0,0,-0.13605 -61436,5311:205:1,-115,-30,0,0,-0.13605 -61437,5311:104:2,-114.5,-30,0,0,-0.13605 -61438,5311:104:1,-114,-30,0,0,-0.13605 -61439,5311:103:2,-113.5,-30,0,0,-0.13605 -61440,5311:103:1,-113,-30,0,0,-0.13605 -61441,5311:102:2,-112.5,-30,0,0,-0.13605 -61442,5311:102:1,-112,-30,0,0,-0.13605 -61443,5311:101:2,-111.5,-30,0,0,-0.13605 -61444,5311:101:1,-111,-30,0,0,-0.13605 -61445,5311:100:2,-110.5,-30,0,0,-0.13605 -61446,5311:100:1,-110,-30,0,0,-0.13605 -61447,5310:209:2,-109.5,-30,0,0,-0.13605 -61448,5310:209:1,-109,-30,0,0,-0.13605 -61449,5310:208:2,-108.5,-30,0,0,-0.13605 -61450,5310:208:1,-108,-30,0,0,-0.13605 -61451,5310:207:2,-107.5,-30,0,0,-0.13605 -61452,5310:207:1,-107,-30,0,0,-0.13605 -61453,5310:206:2,-106.5,-30,0,0,-0.13605 -61454,5310:206:1,-106,-30,0,0,-0.13605 -61455,5310:205:2,-105.5,-30,0,0,-0.13605 -61456,5310:205:1,-105,-30,0,0,-0.13605 -61457,5310:104:2,-104.5,-30,0,0,-0.13605 -61458,5310:104:1,-104,-30,0,0,-0.13605 -61459,5310:103:2,-103.5,-30,0,0,-0.13605 -61460,5310:103:1,-103,-30,0,0,-0.13605 -61461,5310:102:2,-102.5,-30,0,0,-0.13605 -61462,5310:102:1,-102,-30,0,0,-0.13605 -61463,5310:101:2,-101.5,-30,0,0,-0.13605 -61464,5310:101:1,-101,-30,0,0,-0.13605 -61465,5310:100:2,-100.5,-30,0,0,-0.13605 -61466,5310:100:1,-100,-30,0,0,-0.13605 -61467,5309:209:2,-99.5,-30,0,0,-0.13605 -61468,5309:209:1,-99,-30,0,0,-0.13605 -61469,5309:208:2,-98.5,-30,0,0,-0.13605 -61470,5309:208:1,-98,-30,0,0,-0.13605 -61471,5309:207:2,-97.5,-30,0,0,-0.13605 -61472,5309:207:1,-97,-30,0,0,-0.13605 -61473,5309:206:2,-96.5,-30,0,0,-0.13605 -61474,5309:206:1,-96,-30,0,0,-0.13605 -61475,5309:205:2,-95.5,-30,0,0,-0.13605 -61476,5309:205:1,-95,-30,0,0,-0.13605 -61477,5309:104:2,-94.5,-30,0,0,-0.13605 -61478,5309:104:1,-94,-30,0,0,-0.13605 -61479,5309:103:2,-93.5,-30,0,0,-0.13605 -61480,5309:103:1,-93,-30,0,0,-0.13605 -61481,5309:102:2,-92.5,-30,0,0,-0.13605 -61482,5309:102:1,-92,-30,0,0,-0.13605 -61483,5309:101:2,-91.5,-30,0,0,-0.13605 -61484,5309:101:1,-91,-30,0,0,-0.13605 -61485,5309:100:2,-90.5,-30,0,0,-0.13605 -61486,5309:100:1,-90,-30,0,0,-0.13605 -61487,5308:209:2,-89.5,-30,0,0,-0.13605 -61488,5308:209:1,-89,-30,0,0,-0.13605 -61489,5308:208:2,-88.5,-30,0,0,-0.13605 -61490,5308:208:1,-88,-30,0,0,-0.13605 -61491,5308:207:2,-87.5,-30,0,0,-0.13605 -61492,5308:207:1,-87,-30,0,0,-0.13605 -61493,5308:206:2,-86.5,-30,0,0,-0.13605 -61494,5308:206:1,-86,-30,0,0,-0.13605 -61495,5308:205:2,-85.5,-30,0,0,-0.13605 -61496,5308:205:1,-85,-30,0,0,-0.13605 -61497,5308:104:2,-84.5,-30,0,0,-0.13605 -61498,5308:104:1,-84,-30,0,0,-0.13605 -61499,5308:103:2,-83.5,-30,0,0,-0.13605 -61500,5308:103:1,-83,-30,0,0,-0.13605 -61501,5308:102:2,-82.5,-30,0,0,-0.13605 -61502,5308:102:1,-82,-30,0,0,-0.13605 -61503,5308:101:2,-81.5,-30,0,0,-0.13605 -61504,5308:101:1,-81,-30,0,0,-0.13605 -61505,5308:100:2,-80.5,-30,0,0,-0.13605 -61506,5308:100:1,-80,-30,0,0,-0.13605 -61507,5307:209:2,-79.5,-30,0,0,-0.13605 -61508,5307:209:1,-79,-30,0,0,-0.13605 -61509,5307:208:2,-78.5,-30,0,0,-0.13605 -61510,5307:208:1,-78,-30,0,0,-0.13605 -61511,5307:207:2,-77.5,-30,0,0,-0.13605 -61512,5307:207:1,-77,-30,0,0,-0.13605 -61513,5307:206:2,-76.5,-30,0,0,-0.13605 -61514,5307:206:1,-76,-30,0,0,-0.13605 -61515,5307:205:2,-75.5,-30,0,0,-0.13605 -61516,5307:205:1,-75,-30,0,0,-0.13605 -61517,5307:104:2,-74.5,-30,0,0,-0.13605 -61518,5307:104:1,-74,-30,0,0,-0.13605 -61519,5307:103:2,-73.5,-30,0,0,-0.13605 -61520,5306:100:1,-60,-30,0,0,-0.13605 -61521,5305:209:2,-59.5,-30,0,0,-0.13605 -61522,5305:209:1,-59,-30,0,0,-0.13605 -61523,5305:208:2,-58.5,-30,0,0,-0.13605 -61524,5305:208:1,-58,-30,0,0,-0.13605 -61525,5305:207:2,-57.5,-30,0,0,-0.13605 -61526,5305:207:1,-57,-30,0,0,-0.13605 -61527,5305:206:2,-56.5,-30,0,0,-0.13605 -61528,5305:206:1,-56,-30,0,0,-0.13605 -61529,5305:205:2,-55.5,-30,0,0,-0.13605 -61530,5305:205:1,-55,-30,0,0,-0.13605 -61531,5305:104:2,-54.5,-30,0,0,-0.13605 -61532,5305:104:1,-54,-30,0,0,-0.13605 -61533,5305:103:2,-53.5,-30,0,0,-0.13605 -61534,5305:103:1,-53,-30,0,0,-0.13605 -61535,5305:102:2,-52.5,-30,0,0,-0.13605 -61536,5305:102:1,-52,-30,0,0,-0.13605 -61537,5305:101:2,-51.5,-30,0,0,-0.13605 -61538,5305:101:1,-51,-30,0,0,-0.13605 -61539,5305:100:2,-50.5,-30,0,0,-0.13605 -61540,5305:100:1,-50,-30,0,0,-0.13605 -61541,5304:209:2,-49.5,-30,0,0,-0.13605 -61542,5304:209:1,-49,-30,0,0,-0.13605 -61543,5304:208:2,-48.5,-30,0,0,-0.13605 -61544,5304:208:1,-48,-30,0,0,-0.13605 -61545,5304:207:2,-47.5,-30,0,0,-0.13605 -61546,5304:207:1,-47,-30,0,0,-0.13605 -61547,5304:206:2,-46.5,-30,0,0,-0.13605 -61548,5304:206:1,-46,-30,0,0,-0.13605 -61549,5304:205:2,-45.5,-30,0,0,-0.13605 -61550,5304:205:1,-45,-30,0,0,-0.13605 -61551,5304:104:2,-44.5,-30,0,0,-0.13605 -61552,5304:104:1,-44,-30,0,0,-0.13605 -61553,5304:103:2,-43.5,-30,0,0,-0.13605 -61554,5304:103:1,-43,-30,0,0,-0.13605 -61555,5304:102:2,-42.5,-30,0,0,-0.13605 -61556,5304:102:1,-42,-30,0,0,-0.13605 -61557,5304:101:2,-41.5,-30,0,0,-0.13605 -61558,5304:101:1,-41,-30,0,0,-0.13605 -61559,5304:100:2,-40.5,-30,0,0,-0.13605 -61560,5304:100:1,-40,-30,0,0,-0.13605 -61561,5303:209:2,-39.5,-30,0,0,-0.13605 -61562,5303:209:1,-39,-30,0,0,-0.13605 -61563,5303:208:2,-38.5,-30,0,0,-0.13605 -61564,5303:208:1,-38,-30,0,0,-0.13605 -61565,5303:207:2,-37.5,-30,0,0,-0.13605 -61566,5303:207:1,-37,-30,0,0,-0.13605 -61567,5303:206:2,-36.5,-30,0,0,-0.13605 -61568,5303:206:1,-36,-30,0,0,-0.13605 -61569,5303:205:2,-35.5,-30,0,0,-0.13605 -61570,5303:205:1,-35,-30,0,0,-0.13605 -61571,5303:104:2,-34.5,-30,0,0,-0.13605 -61572,5303:104:1,-34,-30,0,0,-0.13605 -61573,5303:103:2,-33.5,-30,0,0,-0.13605 -61574,5303:103:1,-33,-30,0,0,-0.13605 -61575,5303:102:2,-32.5,-30,0,0,-0.13605 -61576,5303:102:1,-32,-30,0,0,-0.13605 -61577,5303:101:2,-31.5,-30,0,0,-0.13605 -61578,5303:101:1,-31,-30,0,0,-0.13605 -61579,5303:100:2,-30.5,-30,0,0,-0.13605 -61580,5303:100:1,-30,-30,0,0,-0.13605 -61581,5302:209:2,-29.5,-30,0,0,-0.13605 -61582,5302:209:1,-29,-30,0,0,-0.13605 -61583,5302:208:2,-28.5,-30,0,0,-0.13605 -61584,5302:208:1,-28,-30,0,0,-0.13605 -61585,5302:207:2,-27.5,-30,0,0,-0.13605 -61586,5302:207:1,-27,-30,0,0,-0.13605 -61587,5302:206:2,-26.5,-30,0,0,-0.13605 -61588,5302:206:1,-26,-30,0,0,-0.13605 -61589,5302:205:2,-25.5,-30,0,0,-0.13605 -61590,5302:205:1,-25,-30,0,0,-0.13605 -61591,5302:104:2,-24.5,-30,0,0,-0.13605 -61592,5302:104:1,-24,-30,0,0,-0.13605 -61593,5302:103:2,-23.5,-30,0,0,-0.13605 -61594,5302:103:1,-23,-30,0,0,-0.13605 -61595,5302:102:2,-22.5,-30,0,0,-0.13605 -61596,5302:102:1,-22,-30,0,0,-0.13605 -61597,5302:101:2,-21.5,-30,0,0,-0.13605 -61598,5302:101:1,-21,-30,0,0,-0.13605 -61599,5302:100:2,-20.5,-30,0,0,-0.13605 -61600,5302:100:1,-20,-30,0,0,-0.13605 -61601,5301:209:2,-19.5,-30,0,0,-0.13605 -61602,5301:209:1,-19,-30,0,0,-0.13605 -61603,5301:208:2,-18.5,-30,0,0,-0.13605 -61604,5301:208:1,-18,-30,0,0,-0.13605 -61605,5301:207:2,-17.5,-30,0,0,-0.13605 -61606,5301:207:1,-17,-30,0,0,-0.13605 -61607,5301:206:2,-16.5,-30,0,0,-0.13605 -61608,5301:206:1,-16,-30,0,0,-0.13605 -61609,5301:205:2,-15.5,-30,0,0,-0.13605 -61610,5301:205:1,-15,-30,0,0,-0.13605 -61611,5301:104:2,-14.5,-30,0,0,-0.13605 -61612,5301:104:1,-14,-30,0,0,-0.13605 -61613,5301:103:2,-13.5,-30,0,0,-0.13605 -61614,5301:103:1,-13,-30,0,0,-0.13605 -61615,5301:102:2,-12.5,-30,0,0,-0.13605 -61616,5301:102:1,-12,-30,0,0,-0.13605 -61617,5301:101:2,-11.5,-30,0,0,-0.13605 -61618,5301:101:1,-11,-30,0,0,-0.13605 -61619,5301:100:2,-10.5,-30,0,0,-0.13605 -61620,5301:100:1,-10,-30,0,0,-0.13605 -61621,5300:209:2,-9.5,-30,0,0,-0.13605 -61622,5300:209:1,-9,-30,0,0,-0.13605 -61623,5300:208:2,-8.5,-30,0,0,-0.13605 -61624,5300:208:1,-8,-30,0,0,-0.13605 -61625,5300:207:2,-7.5,-30,0,0,-0.13605 -61626,5300:207:1,-7,-30,0,0,-0.13605 -61627,5300:206:2,-6.5,-30,0,0,-0.13605 -61628,5300:206:1,-6,-30,0,0,-0.13605 -61629,5300:205:2,-5.5,-30,0,0,-0.13605 -61630,5300:205:1,-5,-30,0,0,-0.13605 -61631,5300:104:2,-4.5,-30,0,0,-0.13605 -61632,5300:104:1,-4,-30,0,0,-0.13605 -61633,5300:103:2,-3.5,-30,0,0,-0.13605 -61634,5300:103:1,-3,-30,0,0,-0.13605 -61635,5300:102:2,-2.5,-30,0,0,-0.13605 -61636,5300:102:1,-2,-30,0,0,-0.13605 -61637,5300:101:2,-1.5,-30,0,0,-0.13605 -61638,5300:101:1,-1,-30,0,0,-0.13605 -61639,5300:100:2,-0.5,-30,0,0,-0.13605 -61640,3300:100:2,0,-30,0,0,-0.13605 -61641,3300:100:2,0.5,-30,0,0,-0.13605 -61642,3300:101:1,1,-30,0,0,-0.13605 -61643,3300:101:2,1.5,-30,0,0,-0.13605 -61644,3300:102:1,2,-30,0,0,-0.13605 -61645,3300:102:2,2.5,-30,0,0,-0.13605 -61646,3300:103:1,3,-30,0,0,-0.13605 -61647,3300:103:2,3.5,-30,0,0,-0.13605 -61648,3300:104:1,4,-30,0,0,-0.13605 -61649,3300:104:2,4.5,-30,0,0,-0.13605 -61650,3300:205:1,5,-30,0,0,-0.13605 -61651,3300:205:2,5.5,-30,0,0,-0.13605 -61652,3300:206:1,6,-30,0,0,-0.13605 -61653,3300:206:2,6.5,-30,0,0,-0.13605 -61654,3300:207:1,7,-30,0,0,-0.13605 -61655,3300:207:2,7.5,-30,0,0,-0.13605 -61656,3300:208:1,8,-30,0,0,-0.13605 -61657,3300:208:2,8.5,-30,0,0,-0.13605 -61658,3300:209:1,9,-30,0,0,-0.13605 -61659,3300:209:2,9.5,-30,0,0,-0.13605 -61660,3301:100:1,10,-30,0,0,-0.13605 -61661,3301:100:2,10.5,-30,0,0,-0.13605 -61662,3301:101:1,11,-30,0,0,-0.13605 -61663,3301:101:2,11.5,-30,0,0,-0.13605 -61664,3301:102:1,12,-30,0,0,-0.13605 -61665,3301:102:2,12.5,-30,0,0,-0.13605 -61666,3301:103:1,13,-30,0,0,-0.13605 -61667,3301:103:2,13.5,-30,0,0,-0.13605 -61668,3301:104:1,14,-30,0,0,-0.13605 -61669,3301:104:2,14.5,-30,0,0,-0.13605 -61670,3301:205:1,15,-30,0,0,-0.13605 -61671,3301:205:2,15.5,-30,0,0,-0.13605 -61672,3301:206:1,16,-30,0,0,-0.13605 -61673,3301:206:2,16.5,-30,0,0,-0.13605 -61674,3301:207:1,17,-30,0,0,-0.13605 -61675,3301:207:2,17.5,-30,0,0,-0.13605 -61676,3301:208:1,18,-30,0,0,-0.13605 -61677,3301:208:2,18.5,-30,0,0,-0.13605 -61678,3301:209:1,19,-30,0,0,-0.13605 -61679,3301:209:2,19.5,-30,0,0,-0.13605 -61680,3302:100:1,20,-30,0,0,-0.13605 -61681,3302:100:2,20.5,-30,0,0,-0.13605 -61682,3302:101:1,21,-30,0,0,-0.13605 -61683,3302:101:2,21.5,-30,0,0,-0.13605 -61684,3302:102:1,22,-30,0,0,-0.13605 -61685,3302:102:2,22.5,-30,0,0,-0.13605 -61686,3302:103:1,23,-30,0,0,-0.13605 -61687,3302:103:2,23.5,-30,0,0,-0.13605 -61688,3302:104:1,24,-30,0,0,-0.13605 -61689,3302:104:2,24.5,-30,0,0,-0.13605 -61690,3302:205:1,25,-30,0,0,-0.13605 -61691,3302:205:2,25.5,-30,0,0,-0.13605 -61692,3302:206:1,26,-30,0,0,-0.13605 -61693,3302:206:2,26.5,-30,0,0,-0.13605 -61694,3302:207:1,27,-30,0,0,-0.13605 -61695,3302:207:2,27.5,-30,0,0,-0.13605 -61696,3302:208:1,28,-30,0,0,-0.13605 -61697,3302:208:2,28.5,-30,0,0,-0.13605 -61698,3302:209:1,29,-30,0,0,-0.13605 -61699,3302:209:2,29.5,-30,0,0,-0.13605 -61700,3303:100:1,30,-30,0,0,-0.13605 -61701,3303:100:2,30.5,-30,0,0,-0.13605 -61702,3303:101:1,31,-30,0,0,-0.13605 -61703,3303:101:2,31.5,-30,0,0,-0.13605 -61704,3303:102:1,32,-30,0,0,-0.13605 -61705,3303:102:2,32.5,-30,0,0,-0.13605 -61706,3303:103:1,33,-30,0,0,-0.13605 -61707,3303:103:2,33.5,-30,0,0,-0.13605 -61708,3303:104:1,34,-30,0,0,-0.13605 -61709,3303:104:2,34.5,-30,0,0,-0.13605 -61710,3303:205:1,35,-30,0,0,-0.13605 -61711,3303:205:2,35.5,-30,0,0,-0.13605 -61712,3303:206:1,36,-30,0,0,-0.13605 -61713,3303:206:2,36.5,-30,0,0,-0.13605 -61714,3303:207:1,37,-30,0,0,-0.13605 -61715,3303:207:2,37.5,-30,0,0,-0.13605 -61716,3303:208:1,38,-30,0,0,-0.13605 -61717,3303:208:2,38.5,-30,0,0,-0.13605 -61718,3303:209:1,39,-30,0,0,-0.13605 -61719,3303:209:2,39.5,-30,0,0,-0.13605 -61720,3304:100:1,40,-30,0,0,-0.13605 -61721,3304:100:2,40.5,-30,0,0,-0.13605 -61722,3304:101:1,41,-30,0,0,-0.13605 -61723,3304:101:2,41.5,-30,0,0,-0.13605 -61724,3304:102:1,42,-30,0,0,-0.13605 -61725,3304:102:2,42.5,-30,0,0,-0.13605 -61726,3304:103:1,43,-30,0,0,-0.13605 -61727,3304:103:2,43.5,-30,0,0,-0.13605 -61728,3304:104:1,44,-30,0,0,-0.13605 -61729,3304:104:2,44.5,-30,0,0,-0.13605 -61730,3304:205:1,45,-30,0,0,-0.13605 -61731,3304:205:2,45.5,-30,0,0,-0.13605 -61732,3304:206:1,46,-30,0,0,-0.13605 -61733,3304:206:2,46.5,-30,0,0,-0.13605 -61734,3304:207:1,47,-30,0,0,-0.13605 -61735,3304:207:2,47.5,-30,0,0,-0.13605 -61736,3304:208:1,48,-30,0,0,-0.13605 -61737,3304:208:2,48.5,-30,0,0,-0.13605 -61738,3304:209:1,49,-30,0,0,-0.13605 -61739,3304:209:2,49.5,-30,0,0,-0.13605 -61740,3305:100:1,50,-30,0,0,-0.13605 -61741,3305:100:2,50.5,-30,0,0,-0.13605 -61742,3305:101:1,51,-30,0,0,-0.13605 -61743,3305:101:2,51.5,-30,0,0,-0.13605 -61744,3305:102:1,52,-30,0,0,-0.13605 -61745,3305:102:2,52.5,-30,0,0,-0.13605 -61746,3305:103:1,53,-30,0,0,-0.13605 -61747,3305:103:2,53.5,-30,0,0,-0.13605 -61748,3305:104:1,54,-30,0,0,-0.13605 -61749,3305:104:2,54.5,-30,0,0,-0.13605 -61750,3305:205:1,55,-30,0,0,-0.13605 -61751,3305:205:2,55.5,-30,0,0,-0.13605 -61752,3305:206:1,56,-30,0,0,-0.13605 -61753,3305:206:2,56.5,-30,0,0,-0.13605 -61754,3305:207:1,57,-30,0,0,-0.13605 -61755,3305:207:2,57.5,-30,0,0,-0.13605 -61756,3305:208:1,58,-30,0,0,-0.13605 -61757,3305:208:2,58.5,-30,0,0,-0.13605 -61758,3305:209:1,59,-30,0,0,-0.13605 -61759,3305:209:2,59.5,-30,0,0,-0.13605 -61760,3306:100:1,60,-30,0,0,-0.13605 -61761,3306:100:2,60.5,-30,0,0,-0.13605 -61762,3306:101:1,61,-30,0,0,-0.13605 -61763,3306:101:2,61.5,-30,0,0,-0.13605 -61764,3306:102:1,62,-30,0,0,-0.13605 -61765,3306:102:2,62.5,-30,0,0,-0.13605 -61766,3306:103:1,63,-30,0,0,-0.13605 -61767,3306:103:2,63.5,-30,0,0,-0.13605 -61768,3306:104:1,64,-30,0,0,-0.13605 -61769,3306:104:2,64.5,-30,0,0,-0.13605 -61770,3306:205:1,65,-30,0,0,-0.13605 -61771,3306:205:2,65.5,-30,0,0,-0.13605 -61772,3306:206:1,66,-30,0,0,-0.13605 -61773,3306:206:2,66.5,-30,0,0,-0.13605 -61774,3306:207:1,67,-30,0,0,-0.13605 -61775,3306:207:2,67.5,-30,0,0,-0.13605 -61776,3306:208:1,68,-30,0,0,-0.13605 -61777,3306:208:2,68.5,-30,0,0,-0.13605 -61778,3306:209:1,69,-30,0,0,-0.13605 -61779,3306:209:2,69.5,-30,0,0,-0.13605 -61780,3307:100:1,70,-30,0,0,-0.13605 -61781,3307:100:2,70.5,-30,0,0,-0.13605 -61782,3307:101:1,71,-30,0,0,-0.13605 -61783,3307:101:2,71.5,-30,0,0,-0.13605 -61784,3307:102:1,72,-30,0,0,-0.13605 -61785,3307:102:2,72.5,-30,0,0,-0.13605 -61786,3307:103:2,73.5,-30,0,0,-0.13605 -61787,3307:104:1,74,-30,0,0,-0.13605 -61788,3307:104:2,74.5,-30,0,0,-0.13605 -61789,3307:205:1,75,-30,0,0,-0.13605 -61790,3307:205:2,75.5,-30,0,0,-0.13605 -61791,3307:206:1,76,-30,0,0,-0.13605 -61792,3307:206:2,76.5,-30,0,0,-0.13605 -61793,3307:207:1,77,-30,0,0,-0.13605 -61794,3307:207:2,77.5,-30,0,0,-0.13605 -61795,3307:208:1,78,-30,0,0,-0.13605 -61796,3307:208:2,78.5,-30,0,0,-0.13605 -61797,3307:209:1,79,-30,0,0,-0.13605 -61798,3307:209:2,79.5,-30,0,0,-0.13605 -61799,3308:100:1,80,-30,0,0,-0.13605 -61800,3308:100:2,80.5,-30,0,0,-0.13605 -61801,3308:101:1,81,-30,0,0,-0.13605 -61802,3308:101:2,81.5,-30,0,0,-0.13605 -61803,3308:102:1,82,-30,0,0,-0.13605 -61804,3308:102:2,82.5,-30,0,0,-0.13605 -61805,3308:103:1,83,-30,0,0,-0.13605 -61806,3308:103:2,83.5,-30,0,0,-0.13605 -61807,3308:104:1,84,-30,0,0,-0.13605 -61808,3308:104:2,84.5,-30,0,0,-0.13605 -61809,3308:205:1,85,-30,0,0,-0.13605 -61810,3308:205:2,85.5,-30,0,0,-0.13605 -61811,3308:206:1,86,-30,0,0,-0.13605 -61812,3308:206:2,86.5,-30,0,0,-0.13605 -61813,3308:207:1,87,-30,0,0,-0.13605 -61814,3308:207:2,87.5,-30,0,0,-0.13605 -61815,3308:208:1,88,-30,0,0,-0.13605 -61816,3308:208:2,88.5,-30,0,0,-0.13605 -61817,3308:209:1,89,-30,0,0,-0.13605 -61818,3308:209:2,89.5,-30,0,0,-0.13605 -61819,3309:100:1,90,-30,0,0,-0.13605 -61820,3309:100:2,90.5,-30,0,0,-0.13605 -61821,3309:101:1,91,-30,0,0,-0.13605 -61822,3309:101:2,91.5,-30,0,0,-0.13605 -61823,3309:102:1,92,-30,0,0,-0.13605 -61824,3309:102:2,92.5,-30,0,0,-0.13605 -61825,3309:103:1,93,-30,0,0,-0.13605 -61826,3309:103:2,93.5,-30,0,0,-0.13605 -61827,3309:104:1,94,-30,0,0,-0.13605 -61828,3309:104:2,94.5,-30,0,0,-0.13605 -61829,3309:205:1,95,-30,0,0,-0.13605 -61830,3309:205:2,95.5,-30,0,0,-0.13605 -61831,3309:206:1,96,-30,0,0,-0.13605 -61832,3309:206:2,96.5,-30,0,0,-0.13605 -61833,3309:207:1,97,-30,0,0,-0.13605 -61834,3309:207:2,97.5,-30,0,0,-0.13605 -61835,3309:208:1,98,-30,0,0,-0.13605 -61836,3309:208:2,98.5,-30,0,0,-0.13605 -61837,3309:209:1,99,-30,0,0,-0.13605 -61838,3309:209:2,99.5,-30,0,0,-0.13605 -61839,3310:100:1,100,-30,0,0,-0.13605 -61840,3310:100:2,100.5,-30,0,0,-0.13605 -61841,3310:101:1,101,-30,0,0,-0.13605 -61842,3310:101:2,101.5,-30,0,0,-0.13605 -61843,3310:102:1,102,-30,0,0,-0.13605 -61844,3310:102:2,102.5,-30,0,0,-0.13605 -61845,3310:103:1,103,-30,0,0,-0.13605 -61846,3310:103:2,103.5,-30,0,0,-0.13605 -61847,3310:104:1,104,-30,0,0,-0.13605 -61848,3310:104:2,104.5,-30,0,0,-0.13605 -61849,3310:205:1,105,-30,0,0,-0.13605 -61850,3310:205:2,105.5,-30,0,0,-0.13605 -61851,3310:206:1,106,-30,0,0,-0.13605 -61852,3310:206:2,106.5,-30,0,0,-0.13605 -61853,3310:207:1,107,-30,0,0,-0.13605 -61854,3310:207:2,107.5,-30,0,0,-0.13605 -61855,3310:208:1,108,-30,0,0,-0.13605 -61856,3310:208:2,108.5,-30,0,0,-0.13605 -61857,3310:209:1,109,-30,0,0,-0.13605 -61858,3310:209:2,109.5,-30,0,0,-0.13605 -61859,3311:100:1,110,-30,0,0,-0.13605 -61860,3311:100:2,110.5,-30,0,0,-0.13605 -61861,3311:101:1,111,-30,0,0,-0.13605 -61862,3311:101:2,111.5,-30,0,0,-0.13605 -61863,3311:102:1,112,-30,0,0,-0.13605 -61864,3311:102:2,112.5,-30,0,0,-0.13605 -61865,3311:103:1,113,-30,0,0,-0.13605 -61866,3311:103:2,113.5,-30,0,0,-0.13605 -61867,3311:104:1,114,-30,0,0,-0.13605 -61868,3311:104:2,114.5,-30,0,0,-0.13605 -61869,3311:205:1,115,-30,0,0,-0.13605 -61870,3311:205:2,115.5,-30,0,0,-0.13605 -61871,3311:206:1,116,-30,0,0,-0.13605 -61872,3311:206:2,116.5,-30,0,0,-0.13605 -61873,3311:207:1,117,-30,0,0,-0.13605 -61874,3311:207:2,117.5,-30,0,0,-0.13605 -61875,3311:208:1,118,-30,0,0,-0.13605 -61876,3311:208:2,118.5,-30,0,0,-0.13605 -61877,3311:209:1,119,-30,0,0,-0.13605 -61878,3311:209:2,119.5,-30,0,0,-0.13605 -61879,3312:100:1,120,-30,0,0,-0.13605 -61880,3312:100:2,120.5,-30,0,0,-0.13605 -61881,3312:101:1,121,-30,0,0,-0.13605 -61882,3312:101:2,121.5,-30,0,0,-0.13605 -61883,3312:102:1,122,-30,0,0,-0.13605 -61884,3312:102:2,122.5,-30,0,0,-0.13605 -61885,3312:103:1,123,-30,0,0,-0.13605 -61886,3312:103:2,123.5,-30,0,0,-0.13605 -61887,3312:104:1,124,-30,0,0,-0.13605 -61888,3312:104:2,124.5,-30,0,0,-0.13605 -61889,3312:205:1,125,-30,0,0,-0.13605 -61890,3312:205:2,125.5,-30,0,0,-0.13605 -61891,3312:206:1,126,-30,0,0,-0.13605 -61892,3312:206:2,126.5,-30,0,0,-0.13605 -61893,3312:207:1,127,-30,0,0,-0.13605 -61894,3312:207:2,127.5,-30,0,0,-0.13605 -61895,3312:208:1,128,-30,0,0,-0.13605 -61896,3312:208:2,128.5,-30,0,0,-0.13605 -61897,3312:209:1,129,-30,0,0,-0.13605 -61898,3312:209:2,129.5,-30,0,0,-0.13605 -61899,3313:100:1,130,-30,0,0,-0.13605 -61900,3313:100:2,130.5,-30,0,0,-0.13605 -61901,3313:101:1,131,-30,0,0,-0.13605 -61902,3313:101:2,131.5,-30,0,0,-0.13605 -61903,3313:102:1,132,-30,0,0,-0.13605 -61904,3313:102:2,132.5,-30,0,0,-0.13605 -61905,3313:103:1,133,-30,0,0,-0.13605 -61906,3313:103:2,133.5,-30,0,0,-0.13605 -61907,3313:104:1,134,-30,0,0,-0.13605 -61908,3313:104:2,134.5,-30,0,0,-0.13605 -61909,3313:205:1,135,-30,0,0,-0.13605 -61910,3313:205:2,135.5,-30,0,0,-0.13605 -61911,3313:206:1,136,-30,0,0,-0.13605 -61912,3313:206:2,136.5,-30,0,0,-0.13605 -61913,3313:207:1,137,-30,0,0,-0.13605 -61914,3313:207:2,137.5,-30,0,0,-0.13605 -61915,3313:208:1,138,-30,0,0,-0.13605 -61916,3313:208:2,138.5,-30,0,0,-0.13605 -61917,3313:209:1,139,-30,0,0,-0.13605 -61918,3313:209:2,139.5,-30,0,0,-0.13605 -61919,3314:100:1,140,-30,0,0,-0.13605 -61920,3314:100:2,140.5,-30,0,0,-0.13605 -61921,3314:101:1,141,-30,0,0,-0.13605 -61922,3314:101:2,141.5,-30,0,0,-0.13605 -61923,3314:102:1,142,-30,0,0,-0.13605 -61924,3314:102:2,142.5,-30,0,0,-0.13605 -61925,3314:103:1,143,-30,0,0,-0.13605 -61926,3314:103:2,143.5,-30,0,0,-0.13605 -61927,3314:104:1,144,-30,0,0,-0.13605 -61928,3314:104:2,144.5,-30,0,0,-0.13605 -61929,3314:205:1,145,-30,0,0,-0.13605 -61930,3314:205:2,145.5,-30,0,0,-0.13605 -61931,3314:206:1,146,-30,0,0,-0.13605 -61932,3314:207:1,147,-30,0,0,-0.13605 -61933,3314:207:2,147.5,-30,0,0,-0.13605 -61934,3314:208:1,148,-30,0,0,-0.13605 -61935,3314:208:2,148.5,-30,0,0,-0.13605 -61936,3314:209:1,149,-30,0,0,-0.13605 -61937,3314:209:2,149.5,-30,0,0,-0.13605 -61938,3315:100:1,150,-30,0,0,-0.13605 -61939,3315:100:2,150.5,-30,0,0,-0.13605 -61940,3315:101:1,151,-30,0,0,-0.13605 -61941,3315:101:2,151.5,-30,0,0,-0.13605 -61942,3315:102:1,152,-30,0,0,-0.13605 -61943,3315:102:2,152.5,-30,0,0,-0.13605 -61944,3315:103:1,153,-30,0,0,-0.13605 -61945,3315:103:2,153.5,-30,0,0,-0.13605 -61946,3315:104:1,154,-30,0,0,-0.13605 -61947,3315:104:2,154.5,-30,0,0,-0.13605 -61948,3315:205:1,155,-30,0,0,-0.13605 -61949,3315:205:2,155.5,-30,0,0,-0.13605 -61950,3315:206:1,156,-30,0,0,-0.13605 -61951,3315:206:2,156.5,-30,0,0,-0.13605 -61952,3315:207:1,157,-30,0,0,-0.13605 -61953,3315:207:2,157.5,-30,0,0,-0.13605 -61954,3315:208:1,158,-30,0,0,-0.13605 -61955,3315:208:2,158.5,-30,0,0,-0.13605 -61956,3315:209:1,159,-30,0,0,-0.13605 -61957,3315:209:2,159.5,-30,0,0,-0.13605 -61958,3316:100:1,160,-30,0,0,-0.13605 -61959,3316:100:2,160.5,-30,0,0,-0.13605 -61960,3316:101:1,161,-30,0,0,-0.13605 -61961,3316:101:2,161.5,-30,0,0,-0.13605 -61962,3316:102:1,162,-30,0,0,-0.13605 -61963,3316:102:2,162.5,-30,0,0,-0.13605 -61964,3316:103:1,163,-30,0,0,-0.13605 -61965,3316:103:2,163.5,-30,0,0,-0.13605 -61966,3316:104:1,164,-30,0,0,-0.13605 -61967,3316:104:2,164.5,-30,0,0,-0.13605 -61968,3316:205:1,165,-30,0,0,-0.13605 -61969,3316:205:2,165.5,-30,0,0,-0.13605 -61970,3316:206:1,166,-30,0,0,-0.13605 -61971,3316:206:2,166.5,-30,0,0,-0.13605 -61972,3316:207:1,167,-30,0,0,-0.13605 -61973,3316:207:2,167.5,-30,0,0,-0.13605 -61974,3316:208:1,168,-30,0,0,-0.13605 -61975,3316:208:2,168.5,-30,0,0,-0.13605 -61976,3316:209:1,169,-30,0,0,-0.13605 -61977,3316:209:2,169.5,-30,0,0,-0.13605 -61978,3317:100:1,170,-30,0,0,-0.13605 -61979,3317:100:2,170.5,-30,0,0,-0.13605 -61980,3317:101:1,171,-30,0,0,-0.13605 -61981,3317:101:2,171.5,-30,0,0,-0.13605 -61982,3317:102:1,172,-30,0,0,-0.13605 -61983,3317:102:2,172.5,-30,0,0,-0.13605 -61984,3317:103:1,173,-30,0,0,-0.13605 -61985,3317:103:2,173.5,-30,0,0,-0.13605 -61986,3317:104:1,174,-30,0,0,-0.13605 -61987,3317:104:2,174.5,-30,0,0,-0.13605 -61988,3317:208:2,178.5,-30,0,0,-0.13605 -61989,3317:209:1,179,-30,0,0,-0.13605 -61990,3317:209:2,179.5,-30,0,0,-0.13605 -61991,3318:100:1,180,-30,0,0,-0.13605 -61992,5218:390:3,-180,-29.5,0,0,-0.13605 -61993,5217:499:4,-179.5,-29.5,0,0,-0.13605 -61994,5217:499:3,-179,-29.5,0,0,-0.13605 -61995,5217:498:4,-178.5,-29.5,0,0,-0.13605 -61996,5217:498:3,-178,-29.5,0,0,-0.13605 -61997,5217:497:4,-177.5,-29.5,0,0,-0.13605 -61998,5217:497:3,-177,-29.5,0,0,-0.13605 -61999,5217:496:4,-176.5,-29.5,0,0,-0.13605 -62000,5217:496:3,-176,-29.5,0,0,-0.13605 -62001,5217:495:4,-175.5,-29.5,0,0,-0.13605 -62002,5217:495:3,-175,-29.5,0,0,-0.13605 -62003,5217:394:4,-174.5,-29.5,0,0,-0.13605 -62004,5217:394:3,-174,-29.5,0,0,-0.13605 -62005,5217:393:4,-173.5,-29.5,0,0,-0.13605 -62006,5217:393:3,-173,-29.5,0,0,-0.13605 -62007,5217:392:4,-172.5,-29.5,0,0,-0.13605 -62008,5217:392:3,-172,-29.5,0,0,-0.13605 -62009,5217:391:4,-171.5,-29.5,0,0,-0.13605 -62010,5217:391:3,-171,-29.5,0,0,-0.13605 -62011,5217:390:4,-170.5,-29.5,0,0,-0.13605 -62012,5217:390:3,-170,-29.5,0,0,-0.13605 -62013,5216:499:4,-169.5,-29.5,0,0,-0.13605 -62014,5216:499:3,-169,-29.5,0,0,-0.13605 -62015,5216:498:4,-168.5,-29.5,0,0,-0.13605 -62016,5216:498:3,-168,-29.5,0,0,-0.13605 -62017,5216:497:4,-167.5,-29.5,0,0,-0.13605 -62018,5216:497:3,-167,-29.5,0,0,-0.13605 -62019,5216:496:4,-166.5,-29.5,0,0,-0.13605 -62020,5216:496:3,-166,-29.5,0,0,-0.13605 -62021,5216:495:4,-165.5,-29.5,0,0,-0.13605 -62022,5216:495:3,-165,-29.5,0,0,-0.13605 -62023,5216:394:4,-164.5,-29.5,0,0,-0.13605 -62024,5216:394:3,-164,-29.5,0,0,-0.13605 -62025,5216:393:4,-163.5,-29.5,0,0,-0.13605 -62026,5216:393:3,-163,-29.5,0,0,-0.13605 -62027,5216:392:4,-162.5,-29.5,0,0,-0.13605 -62028,5216:392:3,-162,-29.5,0,0,-0.13605 -62029,5216:391:4,-161.5,-29.5,0,0,-0.13605 -62030,5216:391:3,-161,-29.5,0,0,-0.13605 -62031,5216:390:4,-160.5,-29.5,0,0,-0.13605 -62032,5216:390:3,-160,-29.5,0,0,-0.13605 -62033,5215:499:4,-159.5,-29.5,0,0,-0.13605 -62034,5215:499:3,-159,-29.5,0,0,-0.13605 -62035,5215:498:4,-158.5,-29.5,0,0,-0.13605 -62036,5215:498:3,-158,-29.5,0,0,-0.13605 -62037,5215:497:4,-157.5,-29.5,0,0,-0.13605 -62038,5215:497:3,-157,-29.5,0,0,-0.13605 -62039,5215:496:4,-156.5,-29.5,0,0,-0.13605 -62040,5215:496:3,-156,-29.5,0,0,-0.13605 -62041,5215:495:4,-155.5,-29.5,0,0,-0.13605 -62042,5215:495:3,-155,-29.5,0,0,-0.13605 -62043,5215:394:4,-154.5,-29.5,0,0,-0.13605 -62044,5215:394:3,-154,-29.5,0,0,-0.13605 -62045,5215:393:4,-153.5,-29.5,0,0,-0.13605 -62046,5215:393:3,-153,-29.5,0,0,-0.13605 -62047,5215:392:4,-152.5,-29.5,0,0,-0.13605 -62048,5215:392:3,-152,-29.5,0,0,-0.13605 -62049,5215:391:4,-151.5,-29.5,0,0,-0.13605 -62050,5215:391:3,-151,-29.5,0,0,-0.13605 -62051,5215:390:4,-150.5,-29.5,0,0,-0.13605 -62052,5215:390:3,-150,-29.5,0,0,-0.13605 -62053,5214:499:4,-149.5,-29.5,0,0,-0.13605 -62054,5214:499:3,-149,-29.5,0,0,-0.13605 -62055,5214:498:4,-148.5,-29.5,0,0,-0.13605 -62056,5214:498:3,-148,-29.5,0,0,-0.13605 -62057,5214:497:4,-147.5,-29.5,0,0,-0.13605 -62058,5214:497:3,-147,-29.5,0,0,-0.13605 -62059,5214:496:4,-146.5,-29.5,0,0,-0.13605 -62060,5214:496:3,-146,-29.5,0,0,-0.13605 -62061,5214:495:4,-145.5,-29.5,0,0,-0.13605 -62062,5214:495:3,-145,-29.5,0,0,-0.13605 -62063,5214:394:4,-144.5,-29.5,0,0,-0.13605 -62064,5214:394:3,-144,-29.5,0,0,-0.13605 -62065,5214:393:4,-143.5,-29.5,0,0,-0.13605 -62066,5214:393:3,-143,-29.5,0,0,-0.13605 -62067,5214:392:4,-142.5,-29.5,0,0,-0.13605 -62068,5214:392:3,-142,-29.5,0,0,-0.13605 -62069,5214:391:4,-141.5,-29.5,0,0,-0.13605 -62070,5214:391:3,-141,-29.5,0,0,-0.13605 -62071,5214:390:4,-140.5,-29.5,0,0,-0.13605 -62072,5214:390:3,-140,-29.5,0,0,-0.13605 -62073,5213:499:4,-139.5,-29.5,0,0,-0.13605 -62074,5213:499:3,-139,-29.5,0,0,-0.13605 -62075,5213:498:4,-138.5,-29.5,0,0,-0.13605 -62076,5213:498:3,-138,-29.5,0,0,-0.13605 -62077,5213:497:4,-137.5,-29.5,0,0,-0.13605 -62078,5213:497:3,-137,-29.5,0,0,-0.13605 -62079,5213:496:4,-136.5,-29.5,0,0,-0.13605 -62080,5213:496:3,-136,-29.5,0,0,-0.13605 -62081,5213:495:4,-135.5,-29.5,0,0,-0.13605 -62082,5213:495:3,-135,-29.5,0,0,-0.13605 -62083,5213:394:4,-134.5,-29.5,0,0,-0.13605 -62084,5213:394:3,-134,-29.5,0,0,-0.13605 -62085,5213:393:4,-133.5,-29.5,0,0,-0.13605 -62086,5213:393:3,-133,-29.5,0,0,-0.13605 -62087,5213:392:4,-132.5,-29.5,0,0,-0.13605 -62088,5213:392:3,-132,-29.5,0,0,-0.13605 -62089,5213:391:4,-131.5,-29.5,0,0,-0.13605 -62090,5213:391:3,-131,-29.5,0,0,-0.13605 -62091,5213:390:4,-130.5,-29.5,0,0,-0.13605 -62092,5213:390:3,-130,-29.5,0,0,-0.13605 -62093,5212:499:4,-129.5,-29.5,0,0,-0.13605 -62094,5212:499:3,-129,-29.5,0,0,-0.13605 -62095,5212:498:4,-128.5,-29.5,0,0,-0.13605 -62096,5212:498:3,-128,-29.5,0,0,-0.13605 -62097,5212:497:4,-127.5,-29.5,0,0,-0.13605 -62098,5212:497:3,-127,-29.5,0,0,-0.13605 -62099,5212:496:4,-126.5,-29.5,0,0,-0.13605 -62100,5212:496:3,-126,-29.5,0,0,-0.13605 -62101,5212:495:4,-125.5,-29.5,0,0,-0.13605 -62102,5212:495:3,-125,-29.5,0,0,-0.13605 -62103,5212:394:4,-124.5,-29.5,0,0,-0.13605 -62104,5212:394:3,-124,-29.5,0,0,-0.13605 -62105,5212:393:4,-123.5,-29.5,0,0,-0.13605 -62106,5212:393:3,-123,-29.5,0,0,-0.13605 -62107,5212:392:4,-122.5,-29.5,0,0,-0.13605 -62108,5212:392:3,-122,-29.5,0,0,-0.13605 -62109,5212:391:4,-121.5,-29.5,0,0,-0.13605 -62110,5212:391:3,-121,-29.5,0,0,-0.13605 -62111,5212:390:4,-120.5,-29.5,0,0,-0.13605 -62112,5212:390:3,-120,-29.5,0,0,-0.13605 -62113,5211:499:4,-119.5,-29.5,0,0,-0.13605 -62114,5211:499:3,-119,-29.5,0,0,-0.13605 -62115,5211:498:4,-118.5,-29.5,0,0,-0.13605 -62116,5211:498:3,-118,-29.5,0,0,-0.13605 -62117,5211:497:4,-117.5,-29.5,0,0,-0.13605 -62118,5211:497:3,-117,-29.5,0,0,-0.13605 -62119,5211:496:4,-116.5,-29.5,0,0,-0.13605 -62120,5211:496:3,-116,-29.5,0,0,-0.13605 -62121,5211:495:4,-115.5,-29.5,0,0,-0.13605 -62122,5211:495:3,-115,-29.5,0,0,-0.13605 -62123,5211:394:4,-114.5,-29.5,0,0,-0.13605 -62124,5211:394:3,-114,-29.5,0,0,-0.13605 -62125,5211:393:4,-113.5,-29.5,0,0,-0.13605 -62126,5211:393:3,-113,-29.5,0,0,-0.13605 -62127,5211:392:4,-112.5,-29.5,0,0,-0.13605 -62128,5211:392:3,-112,-29.5,0,0,-0.13605 -62129,5211:391:4,-111.5,-29.5,0,0,-0.13605 -62130,5211:391:3,-111,-29.5,0,0,-0.13605 -62131,5211:390:4,-110.5,-29.5,0,0,-0.13605 -62132,5211:390:3,-110,-29.5,0,0,-0.13605 -62133,5210:499:4,-109.5,-29.5,0,0,-0.13605 -62134,5210:499:3,-109,-29.5,0,0,-0.13605 -62135,5210:498:4,-108.5,-29.5,0,0,-0.13605 -62136,5210:498:3,-108,-29.5,0,0,-0.13605 -62137,5210:497:4,-107.5,-29.5,0,0,-0.13605 -62138,5210:497:3,-107,-29.5,0,0,-0.13605 -62139,5210:496:4,-106.5,-29.5,0,0,-0.13605 -62140,5210:496:3,-106,-29.5,0,0,-0.13605 -62141,5210:495:4,-105.5,-29.5,0,0,-0.13605 -62142,5210:495:3,-105,-29.5,0,0,-0.13605 -62143,5210:394:4,-104.5,-29.5,0,0,-0.13605 -62144,5210:394:3,-104,-29.5,0,0,-0.13605 -62145,5210:393:4,-103.5,-29.5,0,0,-0.13605 -62146,5210:393:3,-103,-29.5,0,0,-0.13605 -62147,5210:392:4,-102.5,-29.5,0,0,-0.13605 -62148,5210:392:3,-102,-29.5,0,0,-0.13605 -62149,5210:391:4,-101.5,-29.5,0,0,-0.13605 -62150,5210:391:3,-101,-29.5,0,0,-0.13605 -62151,5210:390:4,-100.5,-29.5,0,0,-0.13605 -62152,5210:390:3,-100,-29.5,0,0,-0.13605 -62153,5209:499:4,-99.5,-29.5,0,0,-0.13605 -62154,5209:499:3,-99,-29.5,0,0,-0.13605 -62155,5209:498:4,-98.5,-29.5,0,0,-0.13605 -62156,5209:498:3,-98,-29.5,0,0,-0.13605 -62157,5209:497:4,-97.5,-29.5,0,0,-0.13605 -62158,5209:497:3,-97,-29.5,0,0,-0.13605 -62159,5209:496:4,-96.5,-29.5,0,0,-0.13605 -62160,5209:496:3,-96,-29.5,0,0,-0.13605 -62161,5209:495:4,-95.5,-29.5,0,0,-0.13605 -62162,5209:495:3,-95,-29.5,0,0,-0.13605 -62163,5209:394:4,-94.5,-29.5,0,0,-0.13605 -62164,5209:394:3,-94,-29.5,0,0,-0.13605 -62165,5209:393:4,-93.5,-29.5,0,0,-0.13605 -62166,5209:393:3,-93,-29.5,0,0,-0.13605 -62167,5209:392:4,-92.5,-29.5,0,0,-0.13605 -62168,5209:392:3,-92,-29.5,0,0,-0.13605 -62169,5209:391:4,-91.5,-29.5,0,0,-0.13605 -62170,5209:391:3,-91,-29.5,0,0,-0.13605 -62171,5209:390:4,-90.5,-29.5,0,0,-0.13605 -62172,5209:390:3,-90,-29.5,0,0,-0.13605 -62173,5208:499:4,-89.5,-29.5,0,0,-0.13605 -62174,5208:499:3,-89,-29.5,0,0,-0.13605 -62175,5208:498:4,-88.5,-29.5,0,0,-0.13605 -62176,5208:498:3,-88,-29.5,0,0,-0.13605 -62177,5208:497:4,-87.5,-29.5,0,0,-0.13605 -62178,5208:497:3,-87,-29.5,0,0,-0.13605 -62179,5208:496:4,-86.5,-29.5,0,0,-0.13605 -62180,5208:496:3,-86,-29.5,0,0,-0.13605 -62181,5208:495:4,-85.5,-29.5,0,0,-0.13605 -62182,5208:495:3,-85,-29.5,0,0,-0.13605 -62183,5208:394:4,-84.5,-29.5,0,0,-0.13605 -62184,5208:394:3,-84,-29.5,0,0,-0.13605 -62185,5208:393:4,-83.5,-29.5,0,0,-0.13605 -62186,5208:393:3,-83,-29.5,0,0,-0.13605 -62187,5208:392:4,-82.5,-29.5,0,0,-0.13605 -62188,5208:392:3,-82,-29.5,0,0,-0.13605 -62189,5208:391:4,-81.5,-29.5,0,0,-0.13605 -62190,5208:391:3,-81,-29.5,0,0,-0.13605 -62191,5208:390:4,-80.5,-29.5,0,0,-0.13605 -62192,5208:390:3,-80,-29.5,0,0,-0.13605 -62193,5207:499:4,-79.5,-29.5,0,0,-0.13605 -62194,5207:499:3,-79,-29.5,0,0,-0.13605 -62195,5207:498:4,-78.5,-29.5,0,0,-0.13605 -62196,5207:498:3,-78,-29.5,0,0,-0.13605 -62197,5207:497:4,-77.5,-29.5,0,0,-0.13605 -62198,5207:497:3,-77,-29.5,0,0,-0.13605 -62199,5207:496:4,-76.5,-29.5,0,0,-0.13605 -62200,5207:496:3,-76,-29.5,0,0,-0.13605 -62201,5207:495:4,-75.5,-29.5,0,0,-0.13605 -62202,5207:495:3,-75,-29.5,0,0,-0.13605 -62203,5207:394:4,-74.5,-29.5,0,0,-0.13605 -62204,5207:394:3,-74,-29.5,0,0,-0.13605 -62205,5205:497:4,-57.5,-29.5,0,0,-0.13605 -62206,5205:497:3,-57,-29.5,0,0,-0.13605 -62207,5205:496:4,-56.5,-29.5,0,0,-0.13605 -62208,5205:496:3,-56,-29.5,0,0,-0.13605 -62209,5205:495:4,-55.5,-29.5,0,0,-0.13605 -62210,5205:495:3,-55,-29.5,0,0,-0.13605 -62211,5205:394:4,-54.5,-29.5,0,0,-0.13605 -62212,5205:394:3,-54,-29.5,0,0,-0.13605 -62213,5205:393:4,-53.5,-29.5,0,0,-0.13605 -62214,5205:393:3,-53,-29.5,0,0,-0.13605 -62215,5205:392:4,-52.5,-29.5,0,0,-0.13605 -62216,5205:392:3,-52,-29.5,0,0,-0.13605 -62217,5205:391:4,-51.5,-29.5,0,0,-0.13605 -62218,5205:391:3,-51,-29.5,0,0,-0.13605 -62219,5205:390:4,-50.5,-29.5,0,0,-0.13605 -62220,5205:390:3,-50,-29.5,0,0,-0.13605 -62221,5204:499:4,-49.5,-29.5,0,0,-0.13605 -62222,5204:499:3,-49,-29.5,0,0,-0.13605 -62223,5204:498:4,-48.5,-29.5,0,0,-0.13605 -62224,5204:498:3,-48,-29.5,0,0,-0.13605 -62225,5204:497:4,-47.5,-29.5,0,0,-0.13605 -62226,5204:497:3,-47,-29.5,0,0,-0.13605 -62227,5204:496:4,-46.5,-29.5,0,0,-0.13605 -62228,5204:496:3,-46,-29.5,0,0,-0.13605 -62229,5204:495:4,-45.5,-29.5,0,0,-0.13605 -62230,5204:495:3,-45,-29.5,0,0,-0.13605 -62231,5204:394:4,-44.5,-29.5,0,0,-0.13605 -62232,5204:394:3,-44,-29.5,0,0,-0.13605 -62233,5204:393:4,-43.5,-29.5,0,0,-0.13605 -62234,5204:393:3,-43,-29.5,0,0,-0.13605 -62235,5204:392:4,-42.5,-29.5,0,0,-0.13605 -62236,5204:392:3,-42,-29.5,0,0,-0.13605 -62237,5204:391:4,-41.5,-29.5,0,0,-0.13605 -62238,5204:391:3,-41,-29.5,0,0,-0.13605 -62239,5204:390:4,-40.5,-29.5,0,0,-0.13605 -62240,5204:390:3,-40,-29.5,0,0,-0.13605 -62241,5203:499:4,-39.5,-29.5,0,0,-0.13605 -62242,5203:499:3,-39,-29.5,0,0,-0.13605 -62243,5203:498:4,-38.5,-29.5,0,0,-0.13605 -62244,5203:498:3,-38,-29.5,0,0,-0.13605 -62245,5203:497:4,-37.5,-29.5,0,0,-0.13605 -62246,5203:497:3,-37,-29.5,0,0,-0.13605 -62247,5203:496:4,-36.5,-29.5,0,0,-0.13605 -62248,5203:496:3,-36,-29.5,0,0,-0.13605 -62249,5203:495:4,-35.5,-29.5,0,0,-0.13605 -62250,5203:495:3,-35,-29.5,0,0,-0.13605 -62251,5203:394:4,-34.5,-29.5,0,0,-0.13605 -62252,5203:394:3,-34,-29.5,0,0,-0.13605 -62253,5203:393:4,-33.5,-29.5,0,0,-0.13605 -62254,5203:393:3,-33,-29.5,0,0,-0.13605 -62255,5203:392:4,-32.5,-29.5,0,0,-0.13605 -62256,5203:392:3,-32,-29.5,0,0,-0.13605 -62257,5203:391:4,-31.5,-29.5,0,0,-0.13605 -62258,5203:391:3,-31,-29.5,0,0,-0.13605 -62259,5203:390:4,-30.5,-29.5,0,0,-0.13605 -62260,5203:390:3,-30,-29.5,0,0,-0.13605 -62261,5202:499:4,-29.5,-29.5,0,0,-0.13605 -62262,5202:499:3,-29,-29.5,0,0,-0.13605 -62263,5202:498:4,-28.5,-29.5,0,0,-0.13605 -62264,5202:498:3,-28,-29.5,0,0,-0.13605 -62265,5202:497:4,-27.5,-29.5,0,0,-0.13605 -62266,5202:497:3,-27,-29.5,0,0,-0.13605 -62267,5202:496:4,-26.5,-29.5,0,0,-0.13605 -62268,5202:496:3,-26,-29.5,0,0,-0.13605 -62269,5202:495:4,-25.5,-29.5,0,0,-0.13605 -62270,5202:495:3,-25,-29.5,0,0,-0.13605 -62271,5202:394:4,-24.5,-29.5,0,0,-0.13605 -62272,5202:394:3,-24,-29.5,0,0,-0.13605 -62273,5202:393:4,-23.5,-29.5,0,0,-0.13605 -62274,5202:393:3,-23,-29.5,0,0,-0.13605 -62275,5202:392:4,-22.5,-29.5,0,0,-0.13605 -62276,5202:392:3,-22,-29.5,0,0,-0.13605 -62277,5202:391:4,-21.5,-29.5,0,0,-0.13605 -62278,5202:391:3,-21,-29.5,0,0,-0.13605 -62279,5202:390:4,-20.5,-29.5,0,0,-0.13605 -62280,5202:390:3,-20,-29.5,0,0,-0.13605 -62281,5201:499:4,-19.5,-29.5,0,0,-0.13605 -62282,5201:499:3,-19,-29.5,0,0,-0.13605 -62283,5201:498:4,-18.5,-29.5,0,0,-0.13605 -62284,5201:498:3,-18,-29.5,0,0,-0.13605 -62285,5201:497:4,-17.5,-29.5,0,0,-0.13605 -62286,5201:497:3,-17,-29.5,0,0,-0.13605 -62287,5201:496:4,-16.5,-29.5,0,0,-0.13605 -62288,5201:496:3,-16,-29.5,0,0,-0.13605 -62289,5201:495:4,-15.5,-29.5,0,0,-0.13605 -62290,5201:495:3,-15,-29.5,0,0,-0.13605 -62291,5201:394:4,-14.5,-29.5,0,0,-0.13605 -62292,5201:394:3,-14,-29.5,0,0,-0.13605 -62293,5201:393:4,-13.5,-29.5,0,0,-0.13605 -62294,5201:393:3,-13,-29.5,0,0,-0.13605 -62295,5201:392:4,-12.5,-29.5,0,0,-0.13605 -62296,5201:392:3,-12,-29.5,0,0,-0.13605 -62297,5201:391:4,-11.5,-29.5,0,0,-0.13605 -62298,5201:391:3,-11,-29.5,0,0,-0.13605 -62299,5201:390:4,-10.5,-29.5,0,0,-0.13605 -62300,5201:390:3,-10,-29.5,0,0,-0.13605 -62301,5200:499:4,-9.5,-29.5,0,0,-0.13605 -62302,5200:499:3,-9,-29.5,0,0,-0.13605 -62303,5200:498:4,-8.5,-29.5,0,0,-0.13605 -62304,5200:498:3,-8,-29.5,0,0,-0.13605 -62305,5200:497:4,-7.5,-29.5,0,0,-0.13605 -62306,5200:497:3,-7,-29.5,0,0,-0.13605 -62307,5200:496:4,-6.5,-29.5,0,0,-0.13605 -62308,5200:496:3,-6,-29.5,0,0,-0.13605 -62309,5200:495:4,-5.5,-29.5,0,0,-0.13605 -62310,5200:495:3,-5,-29.5,0,0,-0.13605 -62311,5200:394:4,-4.5,-29.5,0,0,-0.13605 -62312,5200:394:3,-4,-29.5,0,0,-0.13605 -62313,5200:393:4,-3.5,-29.5,0,0,-0.13605 -62314,5200:393:3,-3,-29.5,0,0,-0.13605 -62315,5200:392:4,-2.5,-29.5,0,0,-0.13605 -62316,5200:392:3,-2,-29.5,0,0,-0.13605 -62317,5200:391:4,-1.5,-29.5,0,0,-0.13605 -62318,5200:391:3,-1,-29.5,0,0,-0.13605 -62319,5200:390:4,-0.5,-29.5,0,0,-0.13605 -62320,3200:390:4,0,-29.5,0,0,-0.13605 -62321,3200:390:4,0.5,-29.5,0,0,-0.13605 -62322,3200:391:3,1,-29.5,0,0,-0.13605 -62323,3200:391:4,1.5,-29.5,0,0,-0.13605 -62324,3200:392:3,2,-29.5,0,0,-0.13605 -62325,3200:392:4,2.5,-29.5,0,0,-0.13605 -62326,3200:393:3,3,-29.5,0,0,-0.13605 -62327,3200:393:4,3.5,-29.5,0,0,-0.13605 -62328,3200:394:3,4,-29.5,0,0,-0.13605 -62329,3200:394:4,4.5,-29.5,0,0,-0.13605 -62330,3200:495:3,5,-29.5,0,0,-0.13605 -62331,3200:495:4,5.5,-29.5,0,0,-0.13605 -62332,3200:496:3,6,-29.5,0,0,-0.13605 -62333,3200:496:4,6.5,-29.5,0,0,-0.13605 -62334,3200:497:3,7,-29.5,0,0,-0.13605 -62335,3200:497:4,7.5,-29.5,0,0,-0.13605 -62336,3200:498:3,8,-29.5,0,0,-0.13605 -62337,3200:498:4,8.5,-29.5,0,0,-0.13605 -62338,3200:499:3,9,-29.5,0,0,-0.13605 -62339,3200:499:4,9.5,-29.5,0,0,-0.13605 -62340,3201:390:3,10,-29.5,0,0,-0.13605 -62341,3201:390:4,10.5,-29.5,0,0,-0.13605 -62342,3201:391:3,11,-29.5,0,0,-0.13605 -62343,3201:391:4,11.5,-29.5,0,0,-0.13605 -62344,3201:392:3,12,-29.5,0,0,-0.13605 -62345,3201:392:4,12.5,-29.5,0,0,-0.13605 -62346,3201:393:3,13,-29.5,0,0,-0.13605 -62347,3201:393:4,13.5,-29.5,0,0,-0.13605 -62348,3201:394:3,14,-29.5,0,0,-0.13605 -62349,3201:394:4,14.5,-29.5,0,0,-0.13605 -62350,3201:495:3,15,-29.5,0,0,-0.13605 -62351,3201:495:4,15.5,-29.5,0,0,-0.13605 -62352,3201:496:3,16,-29.5,0,0,-0.13605 -62353,3201:496:4,16.5,-29.5,0,0,-0.13605 -62354,3201:497:3,17,-29.5,0,0,-0.13605 -62355,3201:497:4,17.5,-29.5,0,0,-0.13605 -62356,3201:498:3,18,-29.5,0,0,-0.13605 -62357,3201:498:4,18.5,-29.5,0,0,-0.13605 -62358,3201:499:3,19,-29.5,0,0,-0.13605 -62359,3201:499:4,19.5,-29.5,0,0,-0.13605 -62360,3202:390:3,20,-29.5,0,0,-0.13605 -62361,3202:390:4,20.5,-29.5,0,0,-0.13605 -62362,3202:391:3,21,-29.5,0,0,-0.13605 -62363,3202:391:4,21.5,-29.5,0,0,-0.13605 -62364,3202:392:3,22,-29.5,0,0,-0.13605 -62365,3202:392:4,22.5,-29.5,0,0,-0.13605 -62366,3202:393:3,23,-29.5,0,0,-0.13605 -62367,3202:393:4,23.5,-29.5,0,0,-0.13605 -62368,3202:394:3,24,-29.5,0,0,-0.13605 -62369,3202:394:4,24.5,-29.5,0,0,-0.13605 -62370,3202:495:3,25,-29.5,0,0,-0.13605 -62371,3202:495:4,25.5,-29.5,0,0,-0.13605 -62372,3202:496:3,26,-29.5,0,0,-0.13605 -62373,3202:496:4,26.5,-29.5,0,0,-0.13605 -62374,3202:497:3,27,-29.5,0,0,-0.13605 -62375,3202:497:4,27.5,-29.5,0,0,-0.13605 -62376,3202:498:3,28,-29.5,0,0,-0.13605 -62377,3202:498:4,28.5,-29.5,0,0,-0.13605 -62378,3202:499:3,29,-29.5,0,0,-0.13605 -62379,3202:499:4,29.5,-29.5,0,0,-0.13605 -62380,3203:390:3,30,-29.5,0,0,-0.13605 -62381,3203:390:4,30.5,-29.5,0,0,-0.13605 -62382,3203:391:3,31,-29.5,0,0,-0.13605 -62383,3203:391:4,31.5,-29.5,0,0,-0.13605 -62384,3203:392:3,32,-29.5,0,0,-0.13605 -62385,3203:392:4,32.5,-29.5,0,0,-0.13605 -62386,3203:393:3,33,-29.5,0,0,-0.13605 -62387,3203:393:4,33.5,-29.5,0,0,-0.13605 -62388,3203:394:3,34,-29.5,0,0,-0.13605 -62389,3203:394:4,34.5,-29.5,0,0,-0.13605 -62390,3203:495:3,35,-29.5,0,0,-0.13605 -62391,3203:495:4,35.5,-29.5,0,0,-0.13605 -62392,3203:496:3,36,-29.5,0,0,-0.13605 -62393,3203:496:4,36.5,-29.5,0,0,-0.13605 -62394,3203:497:3,37,-29.5,0,0,-0.13605 -62395,3203:497:4,37.5,-29.5,0,0,-0.13605 -62396,3203:498:3,38,-29.5,0,0,-0.13605 -62397,3203:498:4,38.5,-29.5,0,0,-0.13605 -62398,3203:499:3,39,-29.5,0,0,-0.13605 -62399,3203:499:4,39.5,-29.5,0,0,-0.13605 -62400,3204:390:3,40,-29.5,0,0,-0.13605 -62401,3204:390:4,40.5,-29.5,0,0,-0.13605 -62402,3204:391:3,41,-29.5,0,0,-0.13605 -62403,3204:391:4,41.5,-29.5,0,0,-0.13605 -62404,3204:392:3,42,-29.5,0,0,-0.13605 -62405,3204:392:4,42.5,-29.5,0,0,-0.13605 -62406,3204:393:3,43,-29.5,0,0,-0.13605 -62407,3204:393:4,43.5,-29.5,0,0,-0.13605 -62408,3204:394:3,44,-29.5,0,0,-0.13605 -62409,3204:394:4,44.5,-29.5,0,0,-0.13605 -62410,3204:495:3,45,-29.5,0,0,-0.13605 -62411,3204:495:4,45.5,-29.5,0,0,-0.13605 -62412,3204:496:3,46,-29.5,0,0,-0.13605 -62413,3204:496:4,46.5,-29.5,0,0,-0.13605 -62414,3204:497:3,47,-29.5,0,0,-0.13605 -62415,3204:497:4,47.5,-29.5,0,0,-0.13605 -62416,3204:498:3,48,-29.5,0,0,-0.13605 -62417,3204:498:4,48.5,-29.5,0,0,-0.13605 -62418,3204:499:3,49,-29.5,0,0,-0.13605 -62419,3204:499:4,49.5,-29.5,0,0,-0.13605 -62420,3205:390:3,50,-29.5,0,0,-0.13605 -62421,3205:390:4,50.5,-29.5,0,0,-0.13605 -62422,3205:391:3,51,-29.5,0,0,-0.13605 -62423,3205:391:4,51.5,-29.5,0,0,-0.13605 -62424,3205:392:3,52,-29.5,0,0,-0.13605 -62425,3205:392:4,52.5,-29.5,0,0,-0.13605 -62426,3205:393:3,53,-29.5,0,0,-0.13605 -62427,3205:393:4,53.5,-29.5,0,0,-0.13605 -62428,3205:394:3,54,-29.5,0,0,-0.13605 -62429,3205:394:4,54.5,-29.5,0,0,-0.13605 -62430,3205:495:3,55,-29.5,0,0,-0.13605 -62431,3205:495:4,55.5,-29.5,0,0,-0.13605 -62432,3205:496:3,56,-29.5,0,0,-0.13605 -62433,3205:496:4,56.5,-29.5,0,0,-0.13605 -62434,3205:497:3,57,-29.5,0,0,-0.13605 -62435,3205:497:4,57.5,-29.5,0,0,-0.13605 -62436,3205:498:3,58,-29.5,0,0,-0.13605 -62437,3205:498:4,58.5,-29.5,0,0,-0.13605 -62438,3205:499:3,59,-29.5,0,0,-0.13605 -62439,3205:499:4,59.5,-29.5,0,0,-0.13605 -62440,3206:390:3,60,-29.5,0,0,-0.13605 -62441,3206:390:4,60.5,-29.5,0,0,-0.13605 -62442,3206:391:3,61,-29.5,0,0,-0.13605 -62443,3206:391:4,61.5,-29.5,0,0,-0.13605 -62444,3206:392:3,62,-29.5,0,0,-0.13605 -62445,3206:392:4,62.5,-29.5,0,0,-0.13605 -62446,3206:393:3,63,-29.5,0,0,-0.13605 -62447,3206:393:4,63.5,-29.5,0,0,-0.13605 -62448,3206:394:3,64,-29.5,0,0,-0.13605 -62449,3206:394:4,64.5,-29.5,0,0,-0.13605 -62450,3206:495:3,65,-29.5,0,0,-0.13605 -62451,3206:495:4,65.5,-29.5,0,0,-0.13605 -62452,3206:496:3,66,-29.5,0,0,-0.13605 -62453,3206:496:4,66.5,-29.5,0,0,-0.13605 -62454,3206:497:3,67,-29.5,0,0,-0.13605 -62455,3206:497:4,67.5,-29.5,0,0,-0.13605 -62456,3206:498:3,68,-29.5,0,0,-0.13605 -62457,3206:498:4,68.5,-29.5,0,0,-0.13605 -62458,3206:499:3,69,-29.5,0,0,-0.13605 -62459,3206:499:4,69.5,-29.5,0,0,-0.13605 -62460,3207:390:3,70,-29.5,0,0,-0.13605 -62461,3207:390:4,70.5,-29.5,0,0,-0.13605 -62462,3207:391:3,71,-29.5,0,0,-0.13605 -62463,3207:391:4,71.5,-29.5,0,0,-0.13605 -62464,3207:392:3,72,-29.5,0,0,-0.13605 -62465,3207:392:4,72.5,-29.5,0,0,-0.13605 -62466,3207:393:4,73.5,-29.5,0,0,-0.13605 -62467,3207:394:3,74,-29.5,0,0,-0.13605 -62468,3207:394:4,74.5,-29.5,0,0,-0.13605 -62469,3207:495:3,75,-29.5,0,0,-0.13605 -62470,3207:495:4,75.5,-29.5,0,0,-0.13605 -62471,3207:496:3,76,-29.5,0,0,-0.13605 -62472,3207:496:4,76.5,-29.5,0,0,-0.13605 -62473,3207:497:3,77,-29.5,0,0,-0.13605 -62474,3207:497:4,77.5,-29.5,0,0,-0.13605 -62475,3207:498:3,78,-29.5,0,0,-0.13605 -62476,3207:498:4,78.5,-29.5,0,0,-0.13605 -62477,3207:499:3,79,-29.5,0,0,-0.13605 -62478,3207:499:4,79.5,-29.5,0,0,-0.13605 -62479,3208:390:3,80,-29.5,0,0,-0.13605 -62480,3208:390:4,80.5,-29.5,0,0,-0.13605 -62481,3208:391:3,81,-29.5,0,0,-0.13605 -62482,3208:391:4,81.5,-29.5,0,0,-0.13605 -62483,3208:392:3,82,-29.5,0,0,-0.13605 -62484,3208:392:4,82.5,-29.5,0,0,-0.13605 -62485,3208:393:3,83,-29.5,0,0,-0.13605 -62486,3208:393:4,83.5,-29.5,0,0,-0.13605 -62487,3208:394:3,84,-29.5,0,0,-0.13605 -62488,3208:394:4,84.5,-29.5,0,0,-0.13605 -62489,3208:495:3,85,-29.5,0,0,-0.13605 -62490,3208:495:4,85.5,-29.5,0,0,-0.13605 -62491,3208:496:3,86,-29.5,0,0,-0.13605 -62492,3208:496:4,86.5,-29.5,0,0,-0.13605 -62493,3208:497:3,87,-29.5,0,0,-0.13605 -62494,3208:497:4,87.5,-29.5,0,0,-0.13605 -62495,3208:498:3,88,-29.5,0,0,-0.13605 -62496,3208:498:4,88.5,-29.5,0,0,-0.13605 -62497,3208:499:3,89,-29.5,0,0,-0.13605 -62498,3208:499:4,89.5,-29.5,0,0,-0.13605 -62499,3209:390:3,90,-29.5,0,0,-0.13605 -62500,3209:390:4,90.5,-29.5,0,0,-0.13605 -62501,3209:391:3,91,-29.5,0,0,-0.13605 -62502,3209:391:4,91.5,-29.5,0,0,-0.13605 -62503,3209:392:3,92,-29.5,0,0,-0.13605 -62504,3209:392:4,92.5,-29.5,0,0,-0.13605 -62505,3209:393:3,93,-29.5,0,0,-0.13605 -62506,3209:393:4,93.5,-29.5,0,0,-0.13605 -62507,3209:394:3,94,-29.5,0,0,-0.13605 -62508,3209:394:4,94.5,-29.5,0,0,-0.13605 -62509,3209:495:3,95,-29.5,0,0,-0.13605 -62510,3209:495:4,95.5,-29.5,0,0,-0.13605 -62511,3209:496:3,96,-29.5,0,0,-0.13605 -62512,3209:496:4,96.5,-29.5,0,0,-0.13605 -62513,3209:497:3,97,-29.5,0,0,-0.13605 -62514,3209:497:4,97.5,-29.5,0,0,-0.13605 -62515,3209:498:3,98,-29.5,0,0,-0.13605 -62516,3209:498:4,98.5,-29.5,0,0,-0.13605 -62517,3209:499:3,99,-29.5,0,0,-0.13605 -62518,3209:499:4,99.5,-29.5,0,0,-0.13605 -62519,3210:390:3,100,-29.5,0,0,-0.13605 -62520,3210:390:4,100.5,-29.5,0,0,-0.13605 -62521,3210:391:3,101,-29.5,0,0,-0.13605 -62522,3210:391:4,101.5,-29.5,0,0,-0.13605 -62523,3210:392:3,102,-29.5,0,0,-0.13605 -62524,3210:392:4,102.5,-29.5,0,0,-0.13605 -62525,3210:393:3,103,-29.5,0,0,-0.13605 -62526,3210:393:4,103.5,-29.5,0,0,-0.13605 -62527,3210:394:3,104,-29.5,0,0,-0.13605 -62528,3210:394:4,104.5,-29.5,0,0,-0.13605 -62529,3210:495:3,105,-29.5,0,0,-0.13605 -62530,3210:495:4,105.5,-29.5,0,0,-0.13605 -62531,3210:496:3,106,-29.5,0,0,-0.13605 -62532,3210:496:4,106.5,-29.5,0,0,-0.13605 -62533,3210:497:3,107,-29.5,0,0,-0.13605 -62534,3210:497:4,107.5,-29.5,0,0,-0.13605 -62535,3210:498:3,108,-29.5,0,0,-0.13605 -62536,3210:498:4,108.5,-29.5,0,0,-0.13605 -62537,3210:499:3,109,-29.5,0,0,-0.13605 -62538,3210:499:4,109.5,-29.5,0,0,-0.13605 -62539,3211:390:3,110,-29.5,0,0,-0.13605 -62540,3211:390:4,110.5,-29.5,0,0,-0.13605 -62541,3211:391:3,111,-29.5,0,0,-0.13605 -62542,3211:391:4,111.5,-29.5,0,0,-0.13605 -62543,3211:392:3,112,-29.5,0,0,-0.13605 -62544,3211:392:4,112.5,-29.5,0,0,-0.13605 -62545,3211:393:3,113,-29.5,0,0,-0.13605 -62546,3211:393:4,113.5,-29.5,0,0,-0.13605 -62547,3211:394:3,114,-29.5,0,0,-0.13605 -62548,3211:394:4,114.5,-29.5,0,0,-0.13605 -62549,3211:495:3,115,-29.5,0,0,-0.13605 -62550,3211:495:4,115.5,-29.5,0,0,-0.13605 -62551,3211:496:3,116,-29.5,0,0,-0.13605 -62552,3211:496:4,116.5,-29.5,0,0,-0.13605 -62553,3211:497:3,117,-29.5,0,0,-0.13605 -62554,3211:497:4,117.5,-29.5,0,0,-0.13605 -62555,3211:498:3,118,-29.5,0,0,-0.13605 -62556,3211:498:4,118.5,-29.5,0,0,-0.13605 -62557,3211:499:3,119,-29.5,0,0,-0.13605 -62558,3211:499:4,119.5,-29.5,0,0,-0.13605 -62559,3212:390:3,120,-29.5,0,0,-0.13605 -62560,3212:390:4,120.5,-29.5,0,0,-0.13605 -62561,3212:391:3,121,-29.5,0,0,-0.13605 -62562,3212:391:4,121.5,-29.5,0,0,-0.13605 -62563,3212:392:3,122,-29.5,0,0,-0.13605 -62564,3212:392:4,122.5,-29.5,0,0,-0.13605 -62565,3212:393:3,123,-29.5,0,0,-0.13605 -62566,3212:393:4,123.5,-29.5,0,0,-0.13605 -62567,3212:394:3,124,-29.5,0,0,-0.13605 -62568,3212:394:4,124.5,-29.5,0,0,-0.13605 -62569,3212:495:3,125,-29.5,0,0,-0.13605 -62570,3212:495:4,125.5,-29.5,0,0,-0.13605 -62571,3212:496:3,126,-29.5,0,0,-0.13605 -62572,3212:496:4,126.5,-29.5,0,0,-0.13605 -62573,3212:497:3,127,-29.5,0,0,-0.13605 -62574,3212:497:4,127.5,-29.5,0,0,-0.13605 -62575,3212:498:3,128,-29.5,0,0,-0.13605 -62576,3212:498:4,128.5,-29.5,0,0,-0.13605 -62577,3212:499:3,129,-29.5,0,0,-0.13605 -62578,3212:499:4,129.5,-29.5,0,0,-0.13605 -62579,3213:390:3,130,-29.5,0,0,-0.13605 -62580,3213:390:4,130.5,-29.5,0,0,-0.13605 -62581,3213:391:3,131,-29.5,0,0,-0.13605 -62582,3213:391:4,131.5,-29.5,0,0,-0.13605 -62583,3213:392:3,132,-29.5,0,0,-0.13605 -62584,3213:392:4,132.5,-29.5,0,0,-0.13605 -62585,3213:393:3,133,-29.5,0,0,-0.13605 -62586,3213:393:4,133.5,-29.5,0,0,-0.13605 -62587,3213:394:3,134,-29.5,0,0,-0.13605 -62588,3213:394:4,134.5,-29.5,0,0,-0.13605 -62589,3213:495:3,135,-29.5,0,0,-0.13605 -62590,3213:495:4,135.5,-29.5,0,0,-0.13605 -62591,3213:496:3,136,-29.5,0,0,-0.13605 -62592,3213:496:4,136.5,-29.5,0,0,-0.13605 -62593,3213:497:3,137,-29.5,0,0,-0.13605 -62594,3213:497:4,137.5,-29.5,0,0,-0.13605 -62595,3213:498:3,138,-29.5,0,0,-0.13605 -62596,3213:498:4,138.5,-29.5,0,0,-0.13605 -62597,3213:499:3,139,-29.5,0,0,-0.13605 -62598,3213:499:4,139.5,-29.5,0,0,-0.13605 -62599,3214:390:3,140,-29.5,0,0,-0.13605 -62600,3214:390:4,140.5,-29.5,0,0,-0.13605 -62601,3214:391:3,141,-29.5,0,0,-0.13605 -62602,3214:391:4,141.5,-29.5,0,0,-0.13605 -62603,3214:498:3,148,-29.5,0,0,-0.13605 -62604,3214:498:4,148.5,-29.5,0,0,-0.13605 -62605,3214:499:3,149,-29.5,0,0,-0.13605 -62606,3214:499:4,149.5,-29.5,0,0,-0.13605 -62607,3215:390:3,150,-29.5,0,0,-0.13605 -62608,3215:390:4,150.5,-29.5,0,0,-0.13605 -62609,3215:391:3,151,-29.5,0,0,-0.13605 -62610,3215:391:4,151.5,-29.5,0,0,-0.13605 -62611,3215:392:3,152,-29.5,0,0,-0.13605 -62612,3215:392:4,152.5,-29.5,0,0,-0.13605 -62613,3215:393:3,153,-29.5,0,0,-0.13605 -62614,3215:393:4,153.5,-29.5,0,0,-0.13605 -62615,3215:394:3,154,-29.5,0,0,-0.13605 -62616,3215:394:4,154.5,-29.5,0,0,-0.13605 -62617,3215:495:3,155,-29.5,0,0,-0.13605 -62618,3215:495:4,155.5,-29.5,0,0,-0.13605 -62619,3215:496:3,156,-29.5,0,0,-0.13605 -62620,3215:496:4,156.5,-29.5,0,0,-0.13605 -62621,3215:497:3,157,-29.5,0,0,-0.13605 -62622,3215:497:4,157.5,-29.5,0,0,-0.13605 -62623,3215:498:3,158,-29.5,0,0,-0.13605 -62624,3215:498:4,158.5,-29.5,0,0,-0.13605 -62625,3215:499:3,159,-29.5,0,0,-0.13605 -62626,3215:499:4,159.5,-29.5,0,0,-0.13605 -62627,3216:390:3,160,-29.5,0,0,-0.13605 -62628,3216:390:4,160.5,-29.5,0,0,-0.13605 -62629,3216:391:3,161,-29.5,0,0,-0.13605 -62630,3216:391:4,161.5,-29.5,0,0,-0.13605 -62631,3216:392:3,162,-29.5,0,0,-0.13605 -62632,3216:392:4,162.5,-29.5,0,0,-0.13605 -62633,3216:393:3,163,-29.5,0,0,-0.13605 -62634,3216:393:4,163.5,-29.5,0,0,-0.13605 -62635,3216:394:3,164,-29.5,0,0,-0.13605 -62636,3216:394:4,164.5,-29.5,0,0,-0.13605 -62637,3216:495:3,165,-29.5,0,0,-0.13605 -62638,3216:495:4,165.5,-29.5,0,0,-0.13605 -62639,3216:496:3,166,-29.5,0,0,-0.13605 -62640,3216:496:4,166.5,-29.5,0,0,-0.13605 -62641,3216:497:3,167,-29.5,0,0,-0.13605 -62642,3216:497:4,167.5,-29.5,0,0,-0.13605 -62643,3216:498:3,168,-29.5,0,0,-0.13605 -62644,3216:498:4,168.5,-29.5,0,0,-0.13605 -62645,3216:499:3,169,-29.5,0,0,-0.13605 -62646,3216:499:4,169.5,-29.5,0,0,-0.13605 -62647,3217:390:3,170,-29.5,0,0,-0.13605 -62648,3217:390:4,170.5,-29.5,0,0,-0.13605 -62649,3217:391:3,171,-29.5,0,0,-0.13605 -62650,3217:391:4,171.5,-29.5,0,0,-0.13605 -62651,3217:392:3,172,-29.5,0,0,-0.13605 -62652,3217:392:4,172.5,-29.5,0,0,-0.13605 -62653,3217:393:3,173,-29.5,0,0,-0.13605 -62654,3217:393:4,173.5,-29.5,0,0,-0.13605 -62655,3217:394:3,174,-29.5,0,0,-0.13605 -62656,3217:394:4,174.5,-29.5,0,0,-0.13605 -62657,3217:499:3,179,-29.5,0,0,-0.13605 -62658,3217:499:4,179.5,-29.5,0,0,-0.13605 -62659,3218:390:3,180,-29.5,0,0,-0.13605 -62660,5218:390:1,-180,-29,0,0,-0.13605 -62661,5217:499:2,-179.5,-29,0,0,-0.13605 -62662,5217:499:1,-179,-29,0,0,-0.13605 -62663,5217:498:2,-178.5,-29,0,0,-0.13605 -62664,5217:498:1,-178,-29,0,0,-0.13605 -62665,5217:497:2,-177.5,-29,0,0,-0.13605 -62666,5217:497:1,-177,-29,0,0,-0.13605 -62667,5217:496:2,-176.5,-29,0,0,-0.13605 -62668,5217:496:1,-176,-29,0,0,-0.13605 -62669,5217:495:2,-175.5,-29,0,0,-0.13605 -62670,5217:495:1,-175,-29,0,0,-0.13605 -62671,5217:394:2,-174.5,-29,0,0,-0.13605 -62672,5217:394:1,-174,-29,0,0,-0.13605 -62673,5217:393:2,-173.5,-29,0,0,-0.13605 -62674,5217:393:1,-173,-29,0,0,-0.13605 -62675,5217:392:2,-172.5,-29,0,0,-0.13605 -62676,5217:392:1,-172,-29,0,0,-0.13605 -62677,5217:391:2,-171.5,-29,0,0,-0.13605 -62678,5217:391:1,-171,-29,0,0,-0.13605 -62679,5217:390:2,-170.5,-29,0,0,-0.13605 -62680,5217:390:1,-170,-29,0,0,-0.13605 -62681,5216:499:2,-169.5,-29,0,0,-0.13605 -62682,5216:499:1,-169,-29,0,0,-0.13605 -62683,5216:498:2,-168.5,-29,0,0,-0.13605 -62684,5216:498:1,-168,-29,0,0,-0.13605 -62685,5216:497:2,-167.5,-29,0,0,-0.13605 -62686,5216:497:1,-167,-29,0,0,-0.13605 -62687,5216:496:2,-166.5,-29,0,0,-0.13605 -62688,5216:496:1,-166,-29,0,0,-0.13605 -62689,5216:495:2,-165.5,-29,0,0,-0.13605 -62690,5216:495:1,-165,-29,0,0,-0.13605 -62691,5216:394:2,-164.5,-29,0,0,-0.13605 -62692,5216:394:1,-164,-29,0,0,-0.13605 -62693,5216:393:2,-163.5,-29,0,0,-0.13605 -62694,5216:393:1,-163,-29,0,0,-0.13605 -62695,5216:392:2,-162.5,-29,0,0,-0.13605 -62696,5216:392:1,-162,-29,0,0,-0.13605 -62697,5216:391:2,-161.5,-29,0,0,-0.13605 -62698,5216:391:1,-161,-29,0,0,-0.13605 -62699,5216:390:2,-160.5,-29,0,0,-0.13605 -62700,5216:390:1,-160,-29,0,0,-0.13605 -62701,5215:499:2,-159.5,-29,0,0,-0.13605 -62702,5215:499:1,-159,-29,0,0,-0.13605 -62703,5215:498:2,-158.5,-29,0,0,-0.13605 -62704,5215:498:1,-158,-29,0,0,-0.13605 -62705,5215:497:2,-157.5,-29,0,0,-0.13605 -62706,5215:497:1,-157,-29,0,0,-0.13605 -62707,5215:496:2,-156.5,-29,0,0,-0.13605 -62708,5215:496:1,-156,-29,0,0,-0.13605 -62709,5215:495:2,-155.5,-29,0,0,-0.13605 -62710,5215:495:1,-155,-29,0,0,-0.13605 -62711,5215:394:2,-154.5,-29,0,0,-0.13605 -62712,5215:394:1,-154,-29,0,0,-0.13605 -62713,5215:393:2,-153.5,-29,0,0,-0.13605 -62714,5215:393:1,-153,-29,0,0,-0.13605 -62715,5215:392:2,-152.5,-29,0,0,-0.13605 -62716,5215:392:1,-152,-29,0,0,-0.13605 -62717,5215:391:2,-151.5,-29,0,0,-0.13605 -62718,5215:391:1,-151,-29,0,0,-0.13605 -62719,5215:390:2,-150.5,-29,0,0,-0.13605 -62720,5215:390:1,-150,-29,0,0,-0.13605 -62721,5214:499:2,-149.5,-29,0,0,-0.13605 -62722,5214:499:1,-149,-29,0,0,-0.13605 -62723,5214:498:2,-148.5,-29,0,0,-0.13605 -62724,5214:498:1,-148,-29,0,0,-0.13605 -62725,5214:497:2,-147.5,-29,0,0,-0.13605 -62726,5214:497:1,-147,-29,0,0,-0.13605 -62727,5214:496:2,-146.5,-29,0,0,-0.13605 -62728,5214:496:1,-146,-29,0,0,-0.13605 -62729,5214:495:2,-145.5,-29,0,0,-0.13605 -62730,5214:495:1,-145,-29,0,0,-0.13605 -62731,5214:394:2,-144.5,-29,0,0,-0.13605 -62732,5214:394:1,-144,-29,0,0,-0.13605 -62733,5214:393:2,-143.5,-29,0,0,-0.13605 -62734,5214:393:1,-143,-29,0,0,-0.13605 -62735,5214:392:2,-142.5,-29,0,0,-0.13605 -62736,5214:392:1,-142,-29,0,0,-0.13605 -62737,5214:391:2,-141.5,-29,0,0,-0.13605 -62738,5214:391:1,-141,-29,0,0,-0.13605 -62739,5214:390:2,-140.5,-29,0,0,-0.13605 -62740,5214:390:1,-140,-29,0,0,-0.13605 -62741,5213:499:2,-139.5,-29,0,0,-0.13605 -62742,5213:499:1,-139,-29,0,0,-0.13605 -62743,5213:498:2,-138.5,-29,0,0,-0.13605 -62744,5213:498:1,-138,-29,0,0,-0.13605 -62745,5213:497:2,-137.5,-29,0,0,-0.13605 -62746,5213:497:1,-137,-29,0,0,-0.13605 -62747,5213:496:2,-136.5,-29,0,0,-0.13605 -62748,5213:496:1,-136,-29,0,0,-0.13605 -62749,5213:495:2,-135.5,-29,0,0,-0.13605 -62750,5213:495:1,-135,-29,0,0,-0.13605 -62751,5213:394:2,-134.5,-29,0,0,-0.13605 -62752,5213:394:1,-134,-29,0,0,-0.13605 -62753,5213:393:2,-133.5,-29,0,0,-0.13605 -62754,5213:393:1,-133,-29,0,0,-0.13605 -62755,5213:392:2,-132.5,-29,0,0,-0.13605 -62756,5213:392:1,-132,-29,0,0,-0.13605 -62757,5213:391:2,-131.5,-29,0,0,-0.13605 -62758,5213:391:1,-131,-29,0,0,-0.13605 -62759,5213:390:2,-130.5,-29,0,0,-0.13605 -62760,5213:390:1,-130,-29,0,0,-0.13605 -62761,5212:499:2,-129.5,-29,0,0,-0.13605 -62762,5212:499:1,-129,-29,0,0,-0.13605 -62763,5212:498:2,-128.5,-29,0,0,-0.13605 -62764,5212:498:1,-128,-29,0,0,-0.13605 -62765,5212:497:2,-127.5,-29,0,0,-0.13605 -62766,5212:497:1,-127,-29,0,0,-0.13605 -62767,5212:496:2,-126.5,-29,0,0,-0.13605 -62768,5212:496:1,-126,-29,0,0,-0.13605 -62769,5212:495:2,-125.5,-29,0,0,-0.13605 -62770,5212:495:1,-125,-29,0,0,-0.13605 -62771,5212:394:2,-124.5,-29,0,0,-0.13605 -62772,5212:394:1,-124,-29,0,0,-0.13605 -62773,5212:393:2,-123.5,-29,0,0,-0.13605 -62774,5212:393:1,-123,-29,0,0,-0.13605 -62775,5212:392:2,-122.5,-29,0,0,-0.13605 -62776,5212:392:1,-122,-29,0,0,-0.13605 -62777,5212:391:2,-121.5,-29,0,0,-0.13605 -62778,5212:391:1,-121,-29,0,0,-0.13605 -62779,5212:390:2,-120.5,-29,0,0,-0.13605 -62780,5212:390:1,-120,-29,0,0,-0.13605 -62781,5211:499:2,-119.5,-29,0,0,-0.13605 -62782,5211:499:1,-119,-29,0,0,-0.13605 -62783,5211:498:2,-118.5,-29,0,0,-0.13605 -62784,5211:498:1,-118,-29,0,0,-0.13605 -62785,5211:497:2,-117.5,-29,0,0,-0.13605 -62786,5211:497:1,-117,-29,0,0,-0.13605 -62787,5211:496:2,-116.5,-29,0,0,-0.13605 -62788,5211:496:1,-116,-29,0,0,-0.13605 -62789,5211:495:2,-115.5,-29,0,0,-0.13605 -62790,5211:495:1,-115,-29,0,0,-0.13605 -62791,5211:394:2,-114.5,-29,0,0,-0.13605 -62792,5211:394:1,-114,-29,0,0,-0.13605 -62793,5211:393:2,-113.5,-29,0,0,-0.13605 -62794,5211:393:1,-113,-29,0,0,-0.13605 -62795,5211:392:2,-112.5,-29,0,0,-0.13605 -62796,5211:392:1,-112,-29,0,0,-0.13605 -62797,5211:391:2,-111.5,-29,0,0,-0.13605 -62798,5211:391:1,-111,-29,0,0,-0.13605 -62799,5211:390:2,-110.5,-29,0,0,-0.13605 -62800,5211:390:1,-110,-29,0,0,-0.13605 -62801,5210:499:2,-109.5,-29,0,0,-0.13605 -62802,5210:499:1,-109,-29,0,0,-0.13605 -62803,5210:498:2,-108.5,-29,0,0,-0.13605 -62804,5210:498:1,-108,-29,0,0,-0.13605 -62805,5210:497:2,-107.5,-29,0,0,-0.13605 -62806,5210:497:1,-107,-29,0,0,-0.13605 -62807,5210:496:2,-106.5,-29,0,0,-0.13605 -62808,5210:496:1,-106,-29,0,0,-0.13605 -62809,5210:495:2,-105.5,-29,0,0,-0.13605 -62810,5210:495:1,-105,-29,0,0,-0.13605 -62811,5210:394:2,-104.5,-29,0,0,-0.13605 -62812,5210:394:1,-104,-29,0,0,-0.13605 -62813,5210:393:2,-103.5,-29,0,0,-0.13605 -62814,5210:393:1,-103,-29,0,0,-0.13605 -62815,5210:392:2,-102.5,-29,0,0,-0.13605 -62816,5210:392:1,-102,-29,0,0,-0.13605 -62817,5210:391:2,-101.5,-29,0,0,-0.13605 -62818,5210:391:1,-101,-29,0,0,-0.13605 -62819,5210:390:2,-100.5,-29,0,0,-0.13605 -62820,5210:390:1,-100,-29,0,0,-0.13605 -62821,5209:499:2,-99.5,-29,0,0,-0.13605 -62822,5209:499:1,-99,-29,0,0,-0.13605 -62823,5209:498:2,-98.5,-29,0,0,-0.13605 -62824,5209:498:1,-98,-29,0,0,-0.13605 -62825,5209:497:2,-97.5,-29,0,0,-0.13605 -62826,5209:497:1,-97,-29,0,0,-0.13605 -62827,5209:496:2,-96.5,-29,0,0,-0.13605 -62828,5209:496:1,-96,-29,0,0,-0.13605 -62829,5209:495:2,-95.5,-29,0,0,-0.13605 -62830,5209:495:1,-95,-29,0,0,-0.13605 -62831,5209:394:2,-94.5,-29,0,0,-0.13605 -62832,5209:394:1,-94,-29,0,0,-0.13605 -62833,5209:393:2,-93.5,-29,0,0,-0.13605 -62834,5209:393:1,-93,-29,0,0,-0.13605 -62835,5209:392:2,-92.5,-29,0,0,-0.13605 -62836,5209:392:1,-92,-29,0,0,-0.13605 -62837,5209:391:2,-91.5,-29,0,0,-0.13605 -62838,5209:391:1,-91,-29,0,0,-0.13605 -62839,5209:390:2,-90.5,-29,0,0,-0.13605 -62840,5209:390:1,-90,-29,0,0,-0.13605 -62841,5208:499:2,-89.5,-29,0,0,-0.13605 -62842,5208:499:1,-89,-29,0,0,-0.13605 -62843,5208:498:2,-88.5,-29,0,0,-0.13605 -62844,5208:498:1,-88,-29,0,0,-0.13605 -62845,5208:497:2,-87.5,-29,0,0,-0.13605 -62846,5208:497:1,-87,-29,0,0,-0.13605 -62847,5208:496:2,-86.5,-29,0,0,-0.13605 -62848,5208:496:1,-86,-29,0,0,-0.13605 -62849,5208:495:2,-85.5,-29,0,0,-0.13605 -62850,5208:495:1,-85,-29,0,0,-0.13605 -62851,5208:394:2,-84.5,-29,0,0,-0.13605 -62852,5208:394:1,-84,-29,0,0,-0.13605 -62853,5208:393:2,-83.5,-29,0,0,-0.13605 -62854,5208:393:1,-83,-29,0,0,-0.13605 -62855,5208:392:2,-82.5,-29,0,0,-0.13605 -62856,5208:392:1,-82,-29,0,0,-0.13605 -62857,5208:391:2,-81.5,-29,0,0,-0.13605 -62858,5208:391:1,-81,-29,0,0,-0.13605 -62859,5208:390:2,-80.5,-29,0,0,-0.13605 -62860,5208:390:1,-80,-29,0,0,-0.13605 -62861,5207:499:2,-79.5,-29,0,0,-0.13605 -62862,5207:499:1,-79,-29,0,0,-0.13605 -62863,5207:498:2,-78.5,-29,0,0,-0.13605 -62864,5207:498:1,-78,-29,0,0,-0.13605 -62865,5207:497:2,-77.5,-29,0,0,-0.13605 -62866,5207:497:1,-77,-29,0,0,-0.13605 -62867,5207:496:2,-76.5,-29,0,0,-0.13605 -62868,5207:496:1,-76,-29,0,0,-0.13605 -62869,5207:495:2,-75.5,-29,0,0,-0.13605 -62870,5207:495:1,-75,-29,0,0,-0.13605 -62871,5207:394:2,-74.5,-29,0,0,-0.13605 -62872,5207:394:1,-74,-29,0,0,-0.13605 -62873,5205:497:1,-57,-29,0,0,-0.13605 -62874,5205:496:2,-56.5,-29,0,0,-0.13605 -62875,5205:496:1,-56,-29,0,0,-0.13605 -62876,5205:495:2,-55.5,-29,0,0,-0.13605 -62877,5205:495:1,-55,-29,0,0,-0.13605 -62878,5205:394:2,-54.5,-29,0,0,-0.13605 -62879,5205:394:1,-54,-29,0,0,-0.13605 -62880,5205:393:2,-53.5,-29,0,0,-0.13605 -62881,5205:393:1,-53,-29,0,0,-0.13605 -62882,5205:392:2,-52.5,-29,0,0,-0.13605 -62883,5205:392:1,-52,-29,0,0,-0.13605 -62884,5205:391:2,-51.5,-29,0,0,-0.13605 -62885,5205:391:1,-51,-29,0,0,-0.13605 -62886,5205:390:2,-50.5,-29,0,0,-0.13605 -62887,5205:390:1,-50,-29,0,0,-0.13605 -62888,5204:499:2,-49.5,-29,0,0,-0.13605 -62889,5204:499:1,-49,-29,0,0,-0.13605 -62890,5204:498:2,-48.5,-29,0,0,-0.13605 -62891,5204:498:1,-48,-29,0,0,-0.13605 -62892,5204:497:2,-47.5,-29,0,0,-0.13605 -62893,5204:497:1,-47,-29,0,0,-0.13605 -62894,5204:496:2,-46.5,-29,0,0,-0.13605 -62895,5204:496:1,-46,-29,0,0,-0.13605 -62896,5204:495:2,-45.5,-29,0,0,-0.13605 -62897,5204:495:1,-45,-29,0,0,-0.13605 -62898,5204:394:2,-44.5,-29,0,0,-0.13605 -62899,5204:394:1,-44,-29,0,0,-0.13605 -62900,5204:393:2,-43.5,-29,0,0,-0.13605 -62901,5204:393:1,-43,-29,0,0,-0.13605 -62902,5204:392:2,-42.5,-29,0,0,-0.13605 -62903,5204:392:1,-42,-29,0,0,-0.13605 -62904,5204:391:2,-41.5,-29,0,0,-0.13605 -62905,5204:391:1,-41,-29,0,0,-0.13605 -62906,5204:390:2,-40.5,-29,0,0,-0.13605 -62907,5204:390:1,-40,-29,0,0,-0.13605 -62908,5203:499:2,-39.5,-29,0,0,-0.13605 -62909,5203:499:1,-39,-29,0,0,-0.13605 -62910,5203:498:2,-38.5,-29,0,0,-0.13605 -62911,5203:498:1,-38,-29,0,0,-0.13605 -62912,5203:497:2,-37.5,-29,0,0,-0.13605 -62913,5203:497:1,-37,-29,0,0,-0.13605 -62914,5203:496:2,-36.5,-29,0,0,-0.13605 -62915,5203:496:1,-36,-29,0,0,-0.13605 -62916,5203:495:2,-35.5,-29,0,0,-0.13605 -62917,5203:495:1,-35,-29,0,0,-0.13605 -62918,5203:394:2,-34.5,-29,0,0,-0.13605 -62919,5203:394:1,-34,-29,0,0,-0.13605 -62920,5203:393:2,-33.5,-29,0,0,-0.13605 -62921,5203:393:1,-33,-29,0,0,-0.13605 -62922,5203:392:2,-32.5,-29,0,0,-0.13605 -62923,5203:392:1,-32,-29,0,0,-0.13605 -62924,5203:391:2,-31.5,-29,0,0,-0.13605 -62925,5203:391:1,-31,-29,0,0,-0.13605 -62926,5203:390:2,-30.5,-29,0,0,-0.13605 -62927,5203:390:1,-30,-29,0,0,-0.13605 -62928,5202:499:2,-29.5,-29,0,0,-0.13605 -62929,5202:499:1,-29,-29,0,0,-0.13605 -62930,5202:498:2,-28.5,-29,0,0,-0.13605 -62931,5202:498:1,-28,-29,0,0,-0.13605 -62932,5202:497:2,-27.5,-29,0,0,-0.13605 -62933,5202:497:1,-27,-29,0,0,-0.13605 -62934,5202:496:2,-26.5,-29,0,0,-0.13605 -62935,5202:496:1,-26,-29,0,0,-0.13605 -62936,5202:495:2,-25.5,-29,0,0,-0.13605 -62937,5202:495:1,-25,-29,0,0,-0.13605 -62938,5202:394:2,-24.5,-29,0,0,-0.13605 -62939,5202:394:1,-24,-29,0,0,-0.13605 -62940,5202:393:2,-23.5,-29,0,0,-0.13605 -62941,5202:393:1,-23,-29,0,0,-0.13605 -62942,5202:392:2,-22.5,-29,0,0,-0.13605 -62943,5202:392:1,-22,-29,0,0,-0.13605 -62944,5202:391:2,-21.5,-29,0,0,-0.13605 -62945,5202:391:1,-21,-29,0,0,-0.13605 -62946,5202:390:2,-20.5,-29,0,0,-0.13605 -62947,5202:390:1,-20,-29,0,0,-0.13605 -62948,5201:499:2,-19.5,-29,0,0,-0.13605 -62949,5201:499:1,-19,-29,0,0,-0.13605 -62950,5201:498:2,-18.5,-29,0,0,-0.13605 -62951,5201:498:1,-18,-29,0,0,-0.13605 -62952,5201:497:2,-17.5,-29,0,0,-0.13605 -62953,5201:497:1,-17,-29,0,0,-0.13605 -62954,5201:496:2,-16.5,-29,0,0,-0.13605 -62955,5201:496:1,-16,-29,0,0,-0.13605 -62956,5201:495:2,-15.5,-29,0,0,-0.13605 -62957,5201:495:1,-15,-29,0,0,-0.13605 -62958,5201:394:2,-14.5,-29,0,0,-0.13605 -62959,5201:394:1,-14,-29,0,0,-0.13605 -62960,5201:393:2,-13.5,-29,0,0,-0.13605 -62961,5201:393:1,-13,-29,0,0,-0.13605 -62962,5201:392:2,-12.5,-29,0,0,-0.13605 -62963,5201:392:1,-12,-29,0,0,-0.13605 -62964,5201:391:2,-11.5,-29,0,0,-0.13605 -62965,5201:391:1,-11,-29,0,0,-0.13605 -62966,5201:390:2,-10.5,-29,0,0,-0.13605 -62967,5201:390:1,-10,-29,0,0,-0.13605 -62968,5200:499:2,-9.5,-29,0,0,-0.13605 -62969,5200:499:1,-9,-29,0,0,-0.13605 -62970,5200:498:2,-8.5,-29,0,0,-0.13605 -62971,5200:498:1,-8,-29,0,0,-0.13605 -62972,5200:497:2,-7.5,-29,0,0,-0.13605 -62973,5200:497:1,-7,-29,0,0,-0.13605 -62974,5200:496:2,-6.5,-29,0,0,-0.13605 -62975,5200:496:1,-6,-29,0,0,-0.13605 -62976,5200:495:2,-5.5,-29,0,0,-0.13605 -62977,5200:495:1,-5,-29,0,0,-0.13605 -62978,5200:394:2,-4.5,-29,0,0,-0.13605 -62979,5200:394:1,-4,-29,0,0,-0.13605 -62980,5200:393:2,-3.5,-29,0,0,-0.13605 -62981,5200:393:1,-3,-29,0,0,-0.13605 -62982,5200:392:2,-2.5,-29,0,0,-0.13605 -62983,5200:392:1,-2,-29,0,0,-0.13605 -62984,5200:391:2,-1.5,-29,0,0,-0.13605 -62985,5200:391:1,-1,-29,0,0,-0.13605 -62986,5200:390:2,-0.5,-29,0,0,-0.13605 -62987,3200:390:2,0,-29,0,0,-0.13605 -62988,3200:390:2,0.5,-29,0,0,-0.13605 -62989,3200:391:1,1,-29,0,0,-0.13605 -62990,3200:391:2,1.5,-29,0,0,-0.13605 -62991,3200:392:1,2,-29,0,0,-0.13605 -62992,3200:392:2,2.5,-29,0,0,-0.13605 -62993,3200:393:1,3,-29,0,0,-0.13605 -62994,3200:393:2,3.5,-29,0,0,-0.13605 -62995,3200:394:1,4,-29,0,0,-0.13605 -62996,3200:394:2,4.5,-29,0,0,-0.13605 -62997,3200:495:1,5,-29,0,0,-0.13605 -62998,3200:495:2,5.5,-29,0,0,-0.13605 -62999,3200:496:1,6,-29,0,0,-0.13605 -63000,3200:496:2,6.5,-29,0,0,-0.13605 -63001,3200:497:1,7,-29,0,0,-0.13605 -63002,3200:497:2,7.5,-29,0,0,-0.13605 -63003,3200:498:1,8,-29,0,0,-0.13605 -63004,3200:498:2,8.5,-29,0,0,-0.13605 -63005,3200:499:1,9,-29,0,0,-0.13605 -63006,3200:499:2,9.5,-29,0,0,-0.13605 -63007,3201:390:1,10,-29,0,0,-0.13605 -63008,3201:390:2,10.5,-29,0,0,-0.13605 -63009,3201:391:1,11,-29,0,0,-0.13605 -63010,3201:391:2,11.5,-29,0,0,-0.13605 -63011,3201:392:1,12,-29,0,0,-0.13605 -63012,3201:392:2,12.5,-29,0,0,-0.13605 -63013,3201:393:1,13,-29,0,0,-0.13605 -63014,3201:393:2,13.5,-29,0,0,-0.13605 -63015,3201:394:1,14,-29,0,0,-0.13605 -63016,3201:394:2,14.5,-29,0,0,-0.13605 -63017,3201:495:1,15,-29,0,0,-0.13605 -63018,3201:495:2,15.5,-29,0,0,-0.13605 -63019,3201:496:1,16,-29,0,0,-0.13605 -63020,3201:496:2,16.5,-29,0,0,-0.13605 -63021,3201:497:1,17,-29,0,0,-0.13605 -63022,3201:497:2,17.5,-29,0,0,-0.13605 -63023,3201:498:1,18,-29,0,0,-0.13605 -63024,3201:498:2,18.5,-29,0,0,-0.13605 -63025,3201:499:1,19,-29,0,0,-0.13605 -63026,3201:499:2,19.5,-29,0,0,-0.13605 -63027,3202:390:1,20,-29,0,0,-0.13605 -63028,3202:390:2,20.5,-29,0,0,-0.13605 -63029,3202:391:1,21,-29,0,0,-0.13605 -63030,3202:391:2,21.5,-29,0,0,-0.13605 -63031,3202:392:1,22,-29,0,0,-0.13605 -63032,3202:392:2,22.5,-29,0,0,-0.13605 -63033,3202:393:1,23,-29,0,0,-0.13605 -63034,3202:393:2,23.5,-29,0,0,-0.13605 -63035,3202:394:1,24,-29,0,0,-0.13605 -63036,3202:394:2,24.5,-29,0,0,-0.13605 -63037,3202:495:1,25,-29,0,0,-0.13605 -63038,3202:495:2,25.5,-29,0,0,-0.13605 -63039,3202:496:1,26,-29,0,0,-0.13605 -63040,3202:496:2,26.5,-29,0,0,-0.13605 -63041,3202:497:1,27,-29,0,0,-0.13605 -63042,3202:497:2,27.5,-29,0,0,-0.13605 -63043,3202:498:1,28,-29,0,0,-0.13605 -63044,3202:498:2,28.5,-29,0,0,-0.13605 -63045,3202:499:1,29,-29,0,0,-0.13605 -63046,3202:499:2,29.5,-29,0,0,-0.13605 -63047,3203:390:1,30,-29,0,0,-0.13605 -63048,3203:390:2,30.5,-29,0,0,-0.13605 -63049,3203:391:1,31,-29,0,0,-0.13605 -63050,3203:391:2,31.5,-29,0,0,-0.13605 -63051,3203:392:1,32,-29,0,0,-0.13605 -63052,3203:392:2,32.5,-29,0,0,-0.13605 -63053,3203:393:1,33,-29,0,0,-0.13605 -63054,3203:393:2,33.5,-29,0,0,-0.13605 -63055,3203:394:1,34,-29,0,0,-0.13605 -63056,3203:394:2,34.5,-29,0,0,-0.13605 -63057,3203:495:1,35,-29,0,0,-0.13605 -63058,3203:495:2,35.5,-29,0,0,-0.13605 -63059,3203:496:1,36,-29,0,0,-0.13605 -63060,3203:496:2,36.5,-29,0,0,-0.13605 -63061,3203:497:1,37,-29,0,0,-0.13605 -63062,3203:497:2,37.5,-29,0,0,-0.13605 -63063,3203:498:1,38,-29,0,0,-0.13605 -63064,3203:498:2,38.5,-29,0,0,-0.13605 -63065,3203:499:1,39,-29,0,0,-0.13605 -63066,3203:499:2,39.5,-29,0,0,-0.13605 -63067,3204:390:1,40,-29,0,0,-0.13605 -63068,3204:390:2,40.5,-29,0,0,-0.13605 -63069,3204:391:1,41,-29,0,0,-0.13605 -63070,3204:391:2,41.5,-29,0,0,-0.13605 -63071,3204:392:1,42,-29,0,0,-0.13605 -63072,3204:392:2,42.5,-29,0,0,-0.13605 -63073,3204:393:1,43,-29,0,0,-0.13605 -63074,3204:393:2,43.5,-29,0,0,-0.13605 -63075,3204:394:1,44,-29,0,0,-0.13605 -63076,3204:394:2,44.5,-29,0,0,-0.13605 -63077,3204:495:1,45,-29,0,0,-0.13605 -63078,3204:495:2,45.5,-29,0,0,-0.13605 -63079,3204:496:1,46,-29,0,0,-0.13605 -63080,3204:496:2,46.5,-29,0,0,-0.13605 -63081,3204:497:1,47,-29,0,0,-0.13605 -63082,3204:497:2,47.5,-29,0,0,-0.13605 -63083,3204:498:1,48,-29,0,0,-0.13605 -63084,3204:498:2,48.5,-29,0,0,-0.13605 -63085,3204:499:1,49,-29,0,0,-0.13605 -63086,3204:499:2,49.5,-29,0,0,-0.13605 -63087,3205:390:1,50,-29,0,0,-0.13605 -63088,3205:390:2,50.5,-29,0,0,-0.13605 -63089,3205:391:1,51,-29,0,0,-0.13605 -63090,3205:391:2,51.5,-29,0,0,-0.13605 -63091,3205:392:1,52,-29,0,0,-0.13605 -63092,3205:392:2,52.5,-29,0,0,-0.13605 -63093,3205:393:1,53,-29,0,0,-0.13605 -63094,3205:393:2,53.5,-29,0,0,-0.13605 -63095,3205:394:1,54,-29,0,0,-0.13605 -63096,3205:394:2,54.5,-29,0,0,-0.13605 -63097,3205:495:1,55,-29,0,0,-0.13605 -63098,3205:495:2,55.5,-29,0,0,-0.13605 -63099,3205:496:1,56,-29,0,0,-0.13605 -63100,3205:496:2,56.5,-29,0,0,-0.13605 -63101,3205:497:1,57,-29,0,0,-0.13605 -63102,3205:497:2,57.5,-29,0,0,-0.13605 -63103,3205:498:1,58,-29,0,0,-0.13605 -63104,3205:498:2,58.5,-29,0,0,-0.13605 -63105,3205:499:1,59,-29,0,0,-0.13605 -63106,3205:499:2,59.5,-29,0,0,-0.13605 -63107,3206:390:1,60,-29,0,0,-0.13605 -63108,3206:390:2,60.5,-29,0,0,-0.13605 -63109,3206:391:1,61,-29,0,0,-0.13605 -63110,3206:391:2,61.5,-29,0,0,-0.13605 -63111,3206:392:1,62,-29,0,0,-0.13605 -63112,3206:392:2,62.5,-29,0,0,-0.13605 -63113,3206:393:1,63,-29,0,0,-0.13605 -63114,3206:393:2,63.5,-29,0,0,-0.13605 -63115,3206:394:1,64,-29,0,0,-0.13605 -63116,3206:394:2,64.5,-29,0,0,-0.13605 -63117,3206:495:1,65,-29,0,0,-0.13605 -63118,3206:495:2,65.5,-29,0,0,-0.13605 -63119,3206:496:1,66,-29,0,0,-0.13605 -63120,3206:496:2,66.5,-29,0,0,-0.13605 -63121,3206:497:1,67,-29,0,0,-0.13605 -63122,3206:497:2,67.5,-29,0,0,-0.13605 -63123,3206:498:1,68,-29,0,0,-0.13605 -63124,3206:498:2,68.5,-29,0,0,-0.13605 -63125,3206:499:1,69,-29,0,0,-0.13605 -63126,3206:499:2,69.5,-29,0,0,-0.13605 -63127,3207:390:1,70,-29,0,0,-0.13605 -63128,3207:390:2,70.5,-29,0,0,-0.13605 -63129,3207:391:1,71,-29,0,0,-0.13605 -63130,3207:391:2,71.5,-29,0,0,-0.13605 -63131,3207:392:1,72,-29,0,0,-0.13605 -63132,3207:392:2,72.5,-29,0,0,-0.13605 -63133,3207:393:2,73.5,-29,0,0,-0.13605 -63134,3207:394:1,74,-29,0,0,-0.13605 -63135,3207:394:2,74.5,-29,0,0,-0.13605 -63136,3207:495:1,75,-29,0,0,-0.13605 -63137,3207:495:2,75.5,-29,0,0,-0.13605 -63138,3207:496:1,76,-29,0,0,-0.13605 -63139,3207:496:2,76.5,-29,0,0,-0.13605 -63140,3207:497:1,77,-29,0,0,-0.13605 -63141,3207:497:2,77.5,-29,0,0,-0.13605 -63142,3207:498:1,78,-29,0,0,-0.13605 -63143,3207:498:2,78.5,-29,0,0,-0.13605 -63144,3207:499:1,79,-29,0,0,-0.13605 -63145,3207:499:2,79.5,-29,0,0,-0.13605 -63146,3208:390:1,80,-29,0,0,-0.13605 -63147,3208:390:2,80.5,-29,0,0,-0.13605 -63148,3208:391:1,81,-29,0,0,-0.13605 -63149,3208:391:2,81.5,-29,0,0,-0.13605 -63150,3208:392:1,82,-29,0,0,-0.13605 -63151,3208:392:2,82.5,-29,0,0,-0.13605 -63152,3208:393:1,83,-29,0,0,-0.13605 -63153,3208:393:2,83.5,-29,0,0,-0.13605 -63154,3208:394:1,84,-29,0,0,-0.13605 -63155,3208:394:2,84.5,-29,0,0,-0.13605 -63156,3208:495:1,85,-29,0,0,-0.13605 -63157,3208:495:2,85.5,-29,0,0,-0.13605 -63158,3208:496:1,86,-29,0,0,-0.13605 -63159,3208:496:2,86.5,-29,0,0,-0.13605 -63160,3208:497:1,87,-29,0,0,-0.13605 -63161,3208:497:2,87.5,-29,0,0,-0.13605 -63162,3208:498:1,88,-29,0,0,-0.13605 -63163,3208:498:2,88.5,-29,0,0,-0.13605 -63164,3208:499:1,89,-29,0,0,-0.13605 -63165,3208:499:2,89.5,-29,0,0,-0.13605 -63166,3209:390:1,90,-29,0,0,-0.13605 -63167,3209:390:2,90.5,-29,0,0,-0.13605 -63168,3209:391:1,91,-29,0,0,-0.13605 -63169,3209:391:2,91.5,-29,0,0,-0.13605 -63170,3209:392:1,92,-29,0,0,-0.13605 -63171,3209:392:2,92.5,-29,0,0,-0.13605 -63172,3209:393:1,93,-29,0,0,-0.13605 -63173,3209:393:2,93.5,-29,0,0,-0.13605 -63174,3209:394:1,94,-29,0,0,-0.13605 -63175,3209:394:2,94.5,-29,0,0,-0.13605 -63176,3209:495:1,95,-29,0,0,-0.13605 -63177,3209:495:2,95.5,-29,0,0,-0.13605 -63178,3209:496:1,96,-29,0,0,-0.13605 -63179,3209:496:2,96.5,-29,0,0,-0.13605 -63180,3209:497:1,97,-29,0,0,-0.13605 -63181,3209:497:2,97.5,-29,0,0,-0.13605 -63182,3209:498:1,98,-29,0,0,-0.13605 -63183,3209:498:2,98.5,-29,0,0,-0.13605 -63184,3209:499:1,99,-29,0,0,-0.13605 -63185,3209:499:2,99.5,-29,0,0,-0.13605 -63186,3210:390:1,100,-29,0,0,-0.13605 -63187,3210:390:2,100.5,-29,0,0,-0.13605 -63188,3210:391:1,101,-29,0,0,-0.13605 -63189,3210:391:2,101.5,-29,0,0,-0.13605 -63190,3210:392:1,102,-29,0,0,-0.13605 -63191,3210:392:2,102.5,-29,0,0,-0.13605 -63192,3210:393:1,103,-29,0,0,-0.13605 -63193,3210:393:2,103.5,-29,0,0,-0.13605 -63194,3210:394:1,104,-29,0,0,-0.13605 -63195,3210:394:2,104.5,-29,0,0,-0.13605 -63196,3210:495:1,105,-29,0,0,-0.13605 -63197,3210:495:2,105.5,-29,0,0,-0.13605 -63198,3210:496:1,106,-29,0,0,-0.13605 -63199,3210:496:2,106.5,-29,0,0,-0.13605 -63200,3210:497:1,107,-29,0,0,-0.13605 -63201,3210:497:2,107.5,-29,0,0,-0.13605 -63202,3210:498:1,108,-29,0,0,-0.13605 -63203,3210:498:2,108.5,-29,0,0,-0.13605 -63204,3210:499:1,109,-29,0,0,-0.13605 -63205,3210:499:2,109.5,-29,0,0,-0.13605 -63206,3211:390:1,110,-29,0,0,-0.13605 -63207,3211:390:2,110.5,-29,0,0,-0.13605 -63208,3211:391:1,111,-29,0,0,-0.13605 -63209,3211:391:2,111.5,-29,0,0,-0.13605 -63210,3211:392:1,112,-29,0,0,-0.13605 -63211,3211:392:2,112.5,-29,0,0,-0.13605 -63212,3211:393:1,113,-29,0,0,-0.13605 -63213,3211:393:2,113.5,-29,0,0,-0.13605 -63214,3211:394:1,114,-29,0,0,-0.13605 -63215,3211:394:2,114.5,-29,0,0,-0.13605 -63216,3211:495:1,115,-29,0,0,-0.13605 -63217,3211:495:2,115.5,-29,0,0,-0.13605 -63218,3211:496:1,116,-29,0,0,-0.13605 -63219,3211:496:2,116.5,-29,0,0,-0.13605 -63220,3211:497:1,117,-29,0,0,-0.13605 -63221,3211:497:2,117.5,-29,0,0,-0.13605 -63222,3211:498:1,118,-29,0,0,-0.13605 -63223,3211:498:2,118.5,-29,0,0,-0.13605 -63224,3211:499:1,119,-29,0,0,-0.13605 -63225,3211:499:2,119.5,-29,0,0,-0.13605 -63226,3212:390:1,120,-29,0,0,-0.13605 -63227,3212:390:2,120.5,-29,0,0,-0.13605 -63228,3212:391:1,121,-29,0,0,-0.13605 -63229,3212:391:2,121.5,-29,0,0,-0.13605 -63230,3212:392:1,122,-29,0,0,-0.13605 -63231,3212:392:2,122.5,-29,0,0,-0.13605 -63232,3212:393:1,123,-29,0,0,-0.13605 -63233,3212:393:2,123.5,-29,0,0,-0.13605 -63234,3212:394:1,124,-29,0,0,-0.13605 -63235,3212:394:2,124.5,-29,0,0,-0.13605 -63236,3212:495:1,125,-29,0,0,-0.13605 -63237,3212:495:2,125.5,-29,0,0,-0.13605 -63238,3212:496:1,126,-29,0,0,-0.13605 -63239,3212:496:2,126.5,-29,0,0,-0.13605 -63240,3212:497:1,127,-29,0,0,-0.13605 -63241,3212:497:2,127.5,-29,0,0,-0.13605 -63242,3212:498:1,128,-29,0,0,-0.13605 -63243,3212:498:2,128.5,-29,0,0,-0.13605 -63244,3212:499:1,129,-29,0,0,-0.13605 -63245,3212:499:2,129.5,-29,0,0,-0.13605 -63246,3213:390:1,130,-29,0,0,-0.13605 -63247,3213:390:2,130.5,-29,0,0,-0.13605 -63248,3213:391:1,131,-29,0,0,-0.13605 -63249,3213:391:2,131.5,-29,0,0,-0.13605 -63250,3213:392:1,132,-29,0,0,-0.13605 -63251,3213:392:2,132.5,-29,0,0,-0.13605 -63252,3213:393:1,133,-29,0,0,-0.13605 -63253,3213:393:2,133.5,-29,0,0,-0.13605 -63254,3213:394:1,134,-29,0,0,-0.13605 -63255,3213:394:2,134.5,-29,0,0,-0.13605 -63256,3213:495:1,135,-29,0,0,-0.13605 -63257,3213:495:2,135.5,-29,0,0,-0.13605 -63258,3213:496:1,136,-29,0,0,-0.13605 -63259,3213:496:2,136.5,-29,0,0,-0.13605 -63260,3213:497:1,137,-29,0,0,-0.13605 -63261,3213:497:2,137.5,-29,0,0,-0.13605 -63262,3213:498:1,138,-29,0,0,-0.13605 -63263,3213:498:2,138.5,-29,0,0,-0.13605 -63264,3213:499:1,139,-29,0,0,-0.13605 -63265,3213:499:2,139.5,-29,0,0,-0.13605 -63266,3214:390:1,140,-29,0,0,-0.13605 -63267,3214:390:2,140.5,-29,0,0,-0.13605 -63268,3215:390:1,150,-29,0,0,-0.13605 -63269,3215:390:2,150.5,-29,0,0,-0.13605 -63270,3215:391:1,151,-29,0,0,-0.13605 -63271,3215:391:2,151.5,-29,0,0,-0.13605 -63272,3215:392:1,152,-29,0,0,-0.13605 -63273,3215:392:2,152.5,-29,0,0,-0.13605 -63274,3215:393:1,153,-29,0,0,-0.13605 -63275,3215:393:2,153.5,-29,0,0,-0.13605 -63276,3215:394:1,154,-29,0,0,-0.13605 -63277,3215:394:2,154.5,-29,0,0,-0.13605 -63278,3215:495:1,155,-29,0,0,-0.13605 -63279,3215:495:2,155.5,-29,0,0,-0.13605 -63280,3215:496:1,156,-29,0,0,-0.13605 -63281,3215:496:2,156.5,-29,0,0,-0.13605 -63282,3215:497:1,157,-29,0,0,-0.13605 -63283,3215:497:2,157.5,-29,0,0,-0.13605 -63284,3215:498:1,158,-29,0,0,-0.13605 -63285,3215:498:2,158.5,-29,0,0,-0.13605 -63286,3215:499:1,159,-29,0,0,-0.13605 -63287,3215:499:2,159.5,-29,0,0,-0.13605 -63288,3216:390:1,160,-29,0,0,-0.13605 -63289,3216:390:2,160.5,-29,0,0,-0.13605 -63290,3216:391:1,161,-29,0,0,-0.13605 -63291,3216:391:2,161.5,-29,0,0,-0.13605 -63292,3216:392:1,162,-29,0,0,-0.13605 -63293,3216:392:2,162.5,-29,0,0,-0.13605 -63294,3216:393:1,163,-29,0,0,-0.13605 -63295,3216:393:2,163.5,-29,0,0,-0.13605 -63296,3216:394:1,164,-29,0,0,-0.13605 -63297,3216:394:2,164.5,-29,0,0,-0.13605 -63298,3216:495:1,165,-29,0,0,-0.13605 -63299,3216:495:2,165.5,-29,0,0,-0.13605 -63300,3216:496:1,166,-29,0,0,-0.13605 -63301,3216:496:2,166.5,-29,0,0,-0.13605 -63302,3216:497:1,167,-29,0,0,-0.13605 -63303,3216:497:2,167.5,-29,0,0,-0.13605 -63304,3216:498:1,168,-29,0,0,-0.13605 -63305,3216:498:2,168.5,-29,0,0,-0.13605 -63306,3216:499:1,169,-29,0,0,-0.13605 -63307,3216:499:2,169.5,-29,0,0,-0.13605 -63308,3217:390:1,170,-29,0,0,-0.13605 -63309,3217:390:2,170.5,-29,0,0,-0.13605 -63310,3217:391:1,171,-29,0,0,-0.13605 -63311,3217:391:2,171.5,-29,0,0,-0.13605 -63312,3217:392:1,172,-29,0,0,-0.13605 -63313,3217:392:2,172.5,-29,0,0,-0.13605 -63314,3217:393:1,173,-29,0,0,-0.13605 -63315,3217:393:2,173.5,-29,0,0,-0.13605 -63316,3217:394:1,174,-29,0,0,-0.13605 -63317,3217:394:2,174.5,-29,0,0,-0.13605 -63318,3217:495:1,175,-29,0,0,-0.13605 -63319,3217:497:1,177,-29,0,0,-0.13605 -63320,3217:497:2,177.5,-29,0,0,-0.13605 -63321,3217:498:1,178,-29,0,0,-0.13605 -63322,3217:499:1,179,-29,0,0,-0.13605 -63323,3217:499:2,179.5,-29,0,0,-0.13605 -63324,3218:390:1,180,-29,0,0,-0.13605 -63325,5218:380:3,-180,-28.5,0,0,-0.13605 -63326,5217:489:4,-179.5,-28.5,0,0,-0.13605 -63327,5217:489:3,-179,-28.5,0,0,-0.13605 -63328,5217:488:4,-178.5,-28.5,0,0,-0.13605 -63329,5217:488:3,-178,-28.5,0,0,-0.13605 -63330,5217:487:4,-177.5,-28.5,0,0,-0.13605 -63331,5217:487:3,-177,-28.5,0,0,-0.13605 -63332,5217:486:4,-176.5,-28.5,0,0,-0.13605 -63333,5217:486:3,-176,-28.5,0,0,-0.13605 -63334,5217:485:4,-175.5,-28.5,0,0,-0.13605 -63335,5217:485:3,-175,-28.5,0,0,-0.13605 -63336,5217:384:4,-174.5,-28.5,0,0,-0.13605 -63337,5217:384:3,-174,-28.5,0,0,-0.13605 -63338,5217:383:4,-173.5,-28.5,0,0,-0.13605 -63339,5217:383:3,-173,-28.5,0,0,-0.13605 -63340,5217:382:4,-172.5,-28.5,0,0,-0.13605 -63341,5217:382:3,-172,-28.5,0,0,-0.13605 -63342,5217:381:4,-171.5,-28.5,0,0,-0.13605 -63343,5217:381:3,-171,-28.5,0,0,-0.13605 -63344,5217:380:4,-170.5,-28.5,0,0,-0.13605 -63345,5217:380:3,-170,-28.5,0,0,-0.13605 -63346,5216:489:4,-169.5,-28.5,0,0,-0.13605 -63347,5216:489:3,-169,-28.5,0,0,-0.13605 -63348,5216:488:4,-168.5,-28.5,0,0,-0.13605 -63349,5216:488:3,-168,-28.5,0,0,-0.13605 -63350,5216:487:4,-167.5,-28.5,0,0,-0.13605 -63351,5216:487:3,-167,-28.5,0,0,-0.13605 -63352,5216:486:4,-166.5,-28.5,0,0,-0.13605 -63353,5216:486:3,-166,-28.5,0,0,-0.13605 -63354,5216:485:4,-165.5,-28.5,0,0,-0.13605 -63355,5216:485:3,-165,-28.5,0,0,-0.13605 -63356,5216:384:4,-164.5,-28.5,0,0,-0.13605 -63357,5216:384:3,-164,-28.5,0,0,-0.13605 -63358,5216:383:4,-163.5,-28.5,0,0,-0.13605 -63359,5216:383:3,-163,-28.5,0,0,-0.13605 -63360,5216:382:4,-162.5,-28.5,0,0,-0.13605 -63361,5216:382:3,-162,-28.5,0,0,-0.13605 -63362,5216:381:4,-161.5,-28.5,0,0,-0.13605 -63363,5216:381:3,-161,-28.5,0,0,-0.13605 -63364,5216:380:4,-160.5,-28.5,0,0,-0.13605 -63365,5216:380:3,-160,-28.5,0,0,-0.13605 -63366,5215:489:4,-159.5,-28.5,0,0,-0.13605 -63367,5215:489:3,-159,-28.5,0,0,-0.13605 -63368,5215:488:4,-158.5,-28.5,0,0,-0.13605 -63369,5215:488:3,-158,-28.5,0,0,-0.13605 -63370,5215:487:4,-157.5,-28.5,0,0,-0.13605 -63371,5215:487:3,-157,-28.5,0,0,-0.13605 -63372,5215:486:4,-156.5,-28.5,0,0,-0.13605 -63373,5215:486:3,-156,-28.5,0,0,-0.13605 -63374,5215:485:4,-155.5,-28.5,0,0,-0.13605 -63375,5215:485:3,-155,-28.5,0,0,-0.13605 -63376,5215:384:4,-154.5,-28.5,0,0,-0.13605 -63377,5215:384:3,-154,-28.5,0,0,-0.13605 -63378,5215:383:4,-153.5,-28.5,0,0,-0.13605 -63379,5215:383:3,-153,-28.5,0,0,-0.13605 -63380,5215:382:4,-152.5,-28.5,0,0,-0.13605 -63381,5215:382:3,-152,-28.5,0,0,-0.13605 -63382,5215:381:4,-151.5,-28.5,0,0,-0.13605 -63383,5215:381:3,-151,-28.5,0,0,-0.13605 -63384,5215:380:4,-150.5,-28.5,0,0,-0.13605 -63385,5215:380:3,-150,-28.5,0,0,-0.13605 -63386,5214:489:4,-149.5,-28.5,0,0,-0.13605 -63387,5214:489:3,-149,-28.5,0,0,-0.13605 -63388,5214:488:4,-148.5,-28.5,0,0,-0.13605 -63389,5214:488:3,-148,-28.5,0,0,-0.13605 -63390,5214:487:4,-147.5,-28.5,0,0,-0.13605 -63391,5214:487:3,-147,-28.5,0,0,-0.13605 -63392,5214:486:4,-146.5,-28.5,0,0,-0.13605 -63393,5214:486:3,-146,-28.5,0,0,-0.13605 -63394,5214:485:4,-145.5,-28.5,0,0,-0.13605 -63395,5214:485:3,-145,-28.5,0,0,-0.13605 -63396,5214:384:4,-144.5,-28.5,0,0,-0.13605 -63397,5214:384:3,-144,-28.5,0,0,-0.13605 -63398,5214:383:4,-143.5,-28.5,0,0,-0.13605 -63399,5214:383:3,-143,-28.5,0,0,-0.13605 -63400,5214:382:4,-142.5,-28.5,0,0,-0.13605 -63401,5214:382:3,-142,-28.5,0,0,-0.13605 -63402,5214:381:4,-141.5,-28.5,0,0,-0.13605 -63403,5214:381:3,-141,-28.5,0,0,-0.13605 -63404,5214:380:4,-140.5,-28.5,0,0,-0.13605 -63405,5214:380:3,-140,-28.5,0,0,-0.13605 -63406,5213:489:4,-139.5,-28.5,0,0,-0.13605 -63407,5213:489:3,-139,-28.5,0,0,-0.13605 -63408,5213:488:4,-138.5,-28.5,0,0,-0.13605 -63409,5213:488:3,-138,-28.5,0,0,-0.13605 -63410,5213:487:4,-137.5,-28.5,0,0,-0.13605 -63411,5213:487:3,-137,-28.5,0,0,-0.13605 -63412,5213:486:4,-136.5,-28.5,0,0,-0.13605 -63413,5213:486:3,-136,-28.5,0,0,-0.13605 -63414,5213:485:4,-135.5,-28.5,0,0,-0.13605 -63415,5213:485:3,-135,-28.5,0,0,-0.13605 -63416,5213:384:4,-134.5,-28.5,0,0,-0.13605 -63417,5213:384:3,-134,-28.5,0,0,-0.13605 -63418,5213:383:4,-133.5,-28.5,0,0,-0.13605 -63419,5213:383:3,-133,-28.5,0,0,-0.13605 -63420,5213:382:4,-132.5,-28.5,0,0,-0.13605 -63421,5213:382:3,-132,-28.5,0,0,-0.13605 -63422,5213:381:4,-131.5,-28.5,0,0,-0.13605 -63423,5213:381:3,-131,-28.5,0,0,-0.13605 -63424,5213:380:4,-130.5,-28.5,0,0,-0.13605 -63425,5213:380:3,-130,-28.5,0,0,-0.13605 -63426,5212:489:4,-129.5,-28.5,0,0,-0.13605 -63427,5212:489:3,-129,-28.5,0,0,-0.13605 -63428,5212:488:4,-128.5,-28.5,0,0,-0.13605 -63429,5212:488:3,-128,-28.5,0,0,-0.13605 -63430,5212:487:4,-127.5,-28.5,0,0,-0.13605 -63431,5212:487:3,-127,-28.5,0,0,-0.13605 -63432,5212:486:4,-126.5,-28.5,0,0,-0.13605 -63433,5212:486:3,-126,-28.5,0,0,-0.13605 -63434,5212:485:4,-125.5,-28.5,0,0,-0.13605 -63435,5212:485:3,-125,-28.5,0,0,-0.13605 -63436,5212:384:4,-124.5,-28.5,0,0,-0.13605 -63437,5212:384:3,-124,-28.5,0,0,-0.13605 -63438,5212:383:4,-123.5,-28.5,0,0,-0.13605 -63439,5212:383:3,-123,-28.5,0,0,-0.13605 -63440,5212:382:4,-122.5,-28.5,0,0,-0.13605 -63441,5212:382:3,-122,-28.5,0,0,-0.13605 -63442,5212:381:4,-121.5,-28.5,0,0,-0.13605 -63443,5212:381:3,-121,-28.5,0,0,-0.13605 -63444,5212:380:4,-120.5,-28.5,0,0,-0.13605 -63445,5212:380:3,-120,-28.5,0,0,-0.13605 -63446,5211:489:4,-119.5,-28.5,0,0,-0.13605 -63447,5211:489:3,-119,-28.5,0,0,-0.13605 -63448,5211:488:4,-118.5,-28.5,0,0,-0.13605 -63449,5211:488:3,-118,-28.5,0,0,-0.13605 -63450,5211:487:4,-117.5,-28.5,0,0,-0.13605 -63451,5211:487:3,-117,-28.5,0,0,-0.13605 -63452,5211:486:4,-116.5,-28.5,0,0,-0.13605 -63453,5211:486:3,-116,-28.5,0,0,-0.13605 -63454,5211:485:4,-115.5,-28.5,0,0,-0.13605 -63455,5211:485:3,-115,-28.5,0,0,-0.13605 -63456,5211:384:4,-114.5,-28.5,0,0,-0.13605 -63457,5211:384:3,-114,-28.5,0,0,-0.13605 -63458,5211:383:4,-113.5,-28.5,0,0,-0.13605 -63459,5211:383:3,-113,-28.5,0,0,-0.13605 -63460,5211:382:4,-112.5,-28.5,0,0,-0.13605 -63461,5211:382:3,-112,-28.5,0,0,-0.13605 -63462,5211:381:4,-111.5,-28.5,0,0,-0.13605 -63463,5211:381:3,-111,-28.5,0,0,-0.13605 -63464,5211:380:4,-110.5,-28.5,0,0,-0.13605 -63465,5211:380:3,-110,-28.5,0,0,-0.13605 -63466,5210:489:4,-109.5,-28.5,0,0,-0.13605 -63467,5210:489:3,-109,-28.5,0,0,-0.13605 -63468,5210:488:4,-108.5,-28.5,0,0,-0.13605 -63469,5210:488:3,-108,-28.5,0,0,-0.13605 -63470,5210:487:4,-107.5,-28.5,0,0,-0.13605 -63471,5210:487:3,-107,-28.5,0,0,-0.13605 -63472,5210:486:4,-106.5,-28.5,0,0,-0.13605 -63473,5210:486:3,-106,-28.5,0,0,-0.13605 -63474,5210:485:4,-105.5,-28.5,0,0,-0.13605 -63475,5210:485:3,-105,-28.5,0,0,-0.13605 -63476,5210:384:4,-104.5,-28.5,0,0,-0.13605 -63477,5210:384:3,-104,-28.5,0,0,-0.13605 -63478,5210:383:4,-103.5,-28.5,0,0,-0.13605 -63479,5210:383:3,-103,-28.5,0,0,-0.13605 -63480,5210:382:4,-102.5,-28.5,0,0,-0.13605 -63481,5210:382:3,-102,-28.5,0,0,-0.13605 -63482,5210:381:4,-101.5,-28.5,0,0,-0.13605 -63483,5210:381:3,-101,-28.5,0,0,-0.13605 -63484,5210:380:4,-100.5,-28.5,0,0,-0.13605 -63485,5210:380:3,-100,-28.5,0,0,-0.13605 -63486,5209:489:4,-99.5,-28.5,0,0,-0.13605 -63487,5209:489:3,-99,-28.5,0,0,-0.13605 -63488,5209:488:4,-98.5,-28.5,0,0,-0.13605 -63489,5209:488:3,-98,-28.5,0,0,-0.13605 -63490,5209:487:4,-97.5,-28.5,0,0,-0.13605 -63491,5209:487:3,-97,-28.5,0,0,-0.13605 -63492,5209:486:4,-96.5,-28.5,0,0,-0.13605 -63493,5209:486:3,-96,-28.5,0,0,-0.13605 -63494,5209:485:4,-95.5,-28.5,0,0,-0.13605 -63495,5209:485:3,-95,-28.5,0,0,-0.13605 -63496,5209:384:4,-94.5,-28.5,0,0,-0.13605 -63497,5209:384:3,-94,-28.5,0,0,-0.13605 -63498,5209:383:4,-93.5,-28.5,0,0,-0.13605 -63499,5209:383:3,-93,-28.5,0,0,-0.13605 -63500,5209:382:4,-92.5,-28.5,0,0,-0.13605 -63501,5209:382:3,-92,-28.5,0,0,-0.13605 -63502,5209:381:4,-91.5,-28.5,0,0,-0.13605 -63503,5209:381:3,-91,-28.5,0,0,-0.13605 -63504,5209:380:4,-90.5,-28.5,0,0,-0.13605 -63505,5209:380:3,-90,-28.5,0,0,-0.13605 -63506,5208:489:4,-89.5,-28.5,0,0,-0.13605 -63507,5208:489:3,-89,-28.5,0,0,-0.13605 -63508,5208:488:4,-88.5,-28.5,0,0,-0.13605 -63509,5208:488:3,-88,-28.5,0,0,-0.13605 -63510,5208:487:4,-87.5,-28.5,0,0,-0.13605 -63511,5208:487:3,-87,-28.5,0,0,-0.13605 -63512,5208:486:4,-86.5,-28.5,0,0,-0.13605 -63513,5208:486:3,-86,-28.5,0,0,-0.13605 -63514,5208:485:4,-85.5,-28.5,0,0,-0.13605 -63515,5208:485:3,-85,-28.5,0,0,-0.13605 -63516,5208:384:4,-84.5,-28.5,0,0,-0.13605 -63517,5208:384:3,-84,-28.5,0,0,-0.13605 -63518,5208:383:4,-83.5,-28.5,0,0,-0.13605 -63519,5208:383:3,-83,-28.5,0,0,-0.13605 -63520,5208:382:4,-82.5,-28.5,0,0,-0.13605 -63521,5208:382:3,-82,-28.5,0,0,-0.13605 -63522,5208:381:4,-81.5,-28.5,0,0,-0.13605 -63523,5208:381:3,-81,-28.5,0,0,-0.13605 -63524,5208:380:4,-80.5,-28.5,0,0,-0.13605 -63525,5208:380:3,-80,-28.5,0,0,-0.13605 -63526,5207:489:4,-79.5,-28.5,0,0,-0.13605 -63527,5207:489:3,-79,-28.5,0,0,-0.13605 -63528,5207:488:4,-78.5,-28.5,0,0,-0.13605 -63529,5207:488:3,-78,-28.5,0,0,-0.13605 -63530,5207:487:4,-77.5,-28.5,0,0,-0.13605 -63531,5207:487:3,-77,-28.5,0,0,-0.13605 -63532,5207:486:4,-76.5,-28.5,0,0,-0.13605 -63533,5207:486:3,-76,-28.5,0,0,-0.13605 -63534,5207:485:4,-75.5,-28.5,0,0,-0.13605 -63535,5207:485:3,-75,-28.5,0,0,-0.13605 -63536,5207:384:4,-74.5,-28.5,0,0,-0.13605 -63537,5207:384:3,-74,-28.5,0,0,-0.13605 -63538,5207:383:4,-73.5,-28.5,0,0,-0.13605 -63539,5205:486:4,-56.5,-28.5,0,0,-0.13605 -63540,5205:486:3,-56,-28.5,0,0,-0.13605 -63541,5205:485:4,-55.5,-28.5,0,0,-0.13605 -63542,5205:485:3,-55,-28.5,0,0,-0.13605 -63543,5205:384:4,-54.5,-28.5,0,0,-0.13605 -63544,5205:384:3,-54,-28.5,0,0,-0.13605 -63545,5205:383:4,-53.5,-28.5,0,0,-0.13605 -63546,5205:383:3,-53,-28.5,0,0,-0.13605 -63547,5205:382:4,-52.5,-28.5,0,0,-0.13605 -63548,5205:382:3,-52,-28.5,0,0,-0.13605 -63549,5205:381:4,-51.5,-28.5,0,0,-0.13605 -63550,5205:381:3,-51,-28.5,0,0,-0.13605 -63551,5205:380:4,-50.5,-28.5,0,0,-0.13605 -63552,5205:380:3,-50,-28.5,0,0,-0.13605 -63553,5204:489:4,-49.5,-28.5,0,0,-0.13605 -63554,5204:489:3,-49,-28.5,0,0,-0.13605 -63555,5204:488:4,-48.5,-28.5,0,0,-0.13605 -63556,5204:488:3,-48,-28.5,0,0,-0.13605 -63557,5204:487:4,-47.5,-28.5,0,0,-0.13605 -63558,5204:487:3,-47,-28.5,0,0,-0.13605 -63559,5204:486:4,-46.5,-28.5,0,0,-0.13605 -63560,5204:486:3,-46,-28.5,0,0,-0.13605 -63561,5204:485:4,-45.5,-28.5,0,0,-0.13605 -63562,5204:485:3,-45,-28.5,0,0,-0.13605 -63563,5204:384:4,-44.5,-28.5,0,0,-0.13605 -63564,5204:384:3,-44,-28.5,0,0,-0.13605 -63565,5204:383:4,-43.5,-28.5,0,0,-0.13605 -63566,5204:383:3,-43,-28.5,0,0,-0.13605 -63567,5204:382:4,-42.5,-28.5,0,0,-0.13605 -63568,5204:382:3,-42,-28.5,0,0,-0.13605 -63569,5204:381:4,-41.5,-28.5,0,0,-0.13605 -63570,5204:381:3,-41,-28.5,0,0,-0.13605 -63571,5204:380:4,-40.5,-28.5,0,0,-0.13605 -63572,5204:380:3,-40,-28.5,0,0,-0.13605 -63573,5203:489:4,-39.5,-28.5,0,0,-0.13605 -63574,5203:489:3,-39,-28.5,0,0,-0.13605 -63575,5203:488:4,-38.5,-28.5,0,0,-0.13605 -63576,5203:488:3,-38,-28.5,0,0,-0.13605 -63577,5203:487:4,-37.5,-28.5,0,0,-0.13605 -63578,5203:487:3,-37,-28.5,0,0,-0.13605 -63579,5203:486:4,-36.5,-28.5,0,0,-0.13605 -63580,5203:486:3,-36,-28.5,0,0,-0.13605 -63581,5203:485:4,-35.5,-28.5,0,0,-0.13605 -63582,5203:485:3,-35,-28.5,0,0,-0.13605 -63583,5203:384:4,-34.5,-28.5,0,0,-0.13605 -63584,5203:384:3,-34,-28.5,0,0,-0.13605 -63585,5203:383:4,-33.5,-28.5,0,0,-0.13605 -63586,5203:383:3,-33,-28.5,0,0,-0.13605 -63587,5203:382:4,-32.5,-28.5,0,0,-0.13605 -63588,5203:382:3,-32,-28.5,0,0,-0.13605 -63589,5203:381:4,-31.5,-28.5,0,0,-0.13605 -63590,5203:381:3,-31,-28.5,0,0,-0.13605 -63591,5203:380:4,-30.5,-28.5,0,0,-0.13605 -63592,5203:380:3,-30,-28.5,0,0,-0.13605 -63593,5202:489:4,-29.5,-28.5,0,0,-0.13605 -63594,5202:489:3,-29,-28.5,0,0,-0.13605 -63595,5202:488:4,-28.5,-28.5,0,0,-0.13605 -63596,5202:488:3,-28,-28.5,0,0,-0.13605 -63597,5202:487:4,-27.5,-28.5,0,0,-0.13605 -63598,5202:487:3,-27,-28.5,0,0,-0.13605 -63599,5202:486:4,-26.5,-28.5,0,0,-0.13605 -63600,5202:486:3,-26,-28.5,0,0,-0.13605 -63601,5202:485:4,-25.5,-28.5,0,0,-0.13605 -63602,5202:485:3,-25,-28.5,0,0,-0.13605 -63603,5202:384:4,-24.5,-28.5,0,0,-0.13605 -63604,5202:384:3,-24,-28.5,0,0,-0.13605 -63605,5202:383:4,-23.5,-28.5,0,0,-0.13605 -63606,5202:383:3,-23,-28.5,0,0,-0.13605 -63607,5202:382:4,-22.5,-28.5,0,0,-0.13605 -63608,5202:382:3,-22,-28.5,0,0,-0.13605 -63609,5202:381:4,-21.5,-28.5,0,0,-0.13605 -63610,5202:381:3,-21,-28.5,0,0,-0.13605 -63611,5202:380:4,-20.5,-28.5,0,0,-0.13605 -63612,5202:380:3,-20,-28.5,0,0,-0.13605 -63613,5201:489:4,-19.5,-28.5,0,0,-0.13605 -63614,5201:489:3,-19,-28.5,0,0,-0.13605 -63615,5201:488:4,-18.5,-28.5,0,0,-0.13605 -63616,5201:488:3,-18,-28.5,0,0,-0.13605 -63617,5201:487:4,-17.5,-28.5,0,0,-0.13605 -63618,5201:487:3,-17,-28.5,0,0,-0.13605 -63619,5201:486:4,-16.5,-28.5,0,0,-0.13605 -63620,5201:486:3,-16,-28.5,0,0,-0.13605 -63621,5201:485:4,-15.5,-28.5,0,0,-0.13605 -63622,5201:485:3,-15,-28.5,0,0,-0.13605 -63623,5201:384:4,-14.5,-28.5,0,0,-0.13605 -63624,5201:384:3,-14,-28.5,0,0,-0.13605 -63625,5201:383:4,-13.5,-28.5,0,0,-0.13605 -63626,5201:383:3,-13,-28.5,0,0,-0.13605 -63627,5201:382:4,-12.5,-28.5,0,0,-0.13605 -63628,5201:382:3,-12,-28.5,0,0,-0.13605 -63629,5201:381:4,-11.5,-28.5,0,0,-0.13605 -63630,5201:381:3,-11,-28.5,0,0,-0.13605 -63631,5201:380:4,-10.5,-28.5,0,0,-0.13605 -63632,5201:380:3,-10,-28.5,0,0,-0.13605 -63633,5200:489:4,-9.5,-28.5,0,0,-0.13605 -63634,5200:489:3,-9,-28.5,0,0,-0.13605 -63635,5200:488:4,-8.5,-28.5,0,0,-0.13605 -63636,5200:488:3,-8,-28.5,0,0,-0.13605 -63637,5200:487:4,-7.5,-28.5,0,0,-0.13605 -63638,5200:487:3,-7,-28.5,0,0,-0.13605 -63639,5200:486:4,-6.5,-28.5,0,0,-0.13605 -63640,5200:486:3,-6,-28.5,0,0,-0.13605 -63641,5200:485:4,-5.5,-28.5,0,0,-0.13605 -63642,5200:485:3,-5,-28.5,0,0,-0.13605 -63643,5200:384:4,-4.5,-28.5,0,0,-0.13605 -63644,5200:384:3,-4,-28.5,0,0,-0.13605 -63645,5200:383:4,-3.5,-28.5,0,0,-0.13605 -63646,5200:383:3,-3,-28.5,0,0,-0.13605 -63647,5200:382:4,-2.5,-28.5,0,0,-0.13605 -63648,5200:382:3,-2,-28.5,0,0,-0.13605 -63649,5200:381:4,-1.5,-28.5,0,0,-0.13605 -63650,5200:381:3,-1,-28.5,0,0,-0.13605 -63651,5200:380:4,-0.5,-28.5,0,0,-0.13605 -63652,3200:380:4,0,-28.5,0,0,-0.13605 -63653,3200:380:4,0.5,-28.5,0,0,-0.13605 -63654,3200:381:3,1,-28.5,0,0,-0.13605 -63655,3200:381:4,1.5,-28.5,0,0,-0.13605 -63656,3200:382:3,2,-28.5,0,0,-0.13605 -63657,3200:382:4,2.5,-28.5,0,0,-0.13605 -63658,3200:383:3,3,-28.5,0,0,-0.13605 -63659,3200:383:4,3.5,-28.5,0,0,-0.13605 -63660,3200:384:3,4,-28.5,0,0,-0.13605 -63661,3200:384:4,4.5,-28.5,0,0,-0.13605 -63662,3200:485:3,5,-28.5,0,0,-0.13605 -63663,3200:485:4,5.5,-28.5,0,0,-0.13605 -63664,3200:486:3,6,-28.5,0,0,-0.13605 -63665,3200:486:4,6.5,-28.5,0,0,-0.13605 -63666,3200:487:3,7,-28.5,0,0,-0.13605 -63667,3200:487:4,7.5,-28.5,0,0,-0.13605 -63668,3200:488:3,8,-28.5,0,0,-0.13605 -63669,3200:488:4,8.5,-28.5,0,0,-0.13605 -63670,3200:489:3,9,-28.5,0,0,-0.13605 -63671,3200:489:4,9.5,-28.5,0,0,-0.13605 -63672,3201:380:3,10,-28.5,0,0,-0.13605 -63673,3201:380:4,10.5,-28.5,0,0,-0.13605 -63674,3201:381:3,11,-28.5,0,0,-0.13605 -63675,3201:381:4,11.5,-28.5,0,0,-0.13605 -63676,3201:382:3,12,-28.5,0,0,-0.13605 -63677,3201:382:4,12.5,-28.5,0,0,-0.13605 -63678,3201:383:3,13,-28.5,0,0,-0.13605 -63679,3201:383:4,13.5,-28.5,0,0,-0.13605 -63680,3201:384:3,14,-28.5,0,0,-0.13605 -63681,3201:384:4,14.5,-28.5,0,0,-0.13605 -63682,3201:485:3,15,-28.5,0,0,-0.13605 -63683,3201:485:4,15.5,-28.5,0,0,-0.13605 -63684,3201:486:3,16,-28.5,0,0,-0.13605 -63685,3201:486:4,16.5,-28.5,0,0,-0.13605 -63686,3201:487:3,17,-28.5,0,0,-0.13605 -63687,3201:487:4,17.5,-28.5,0,0,-0.13605 -63688,3201:488:3,18,-28.5,0,0,-0.13605 -63689,3201:488:4,18.5,-28.5,0,0,-0.13605 -63690,3201:489:3,19,-28.5,0,0,-0.13605 -63691,3201:489:4,19.5,-28.5,0,0,-0.13605 -63692,3202:380:3,20,-28.5,0,0,-0.13605 -63693,3202:380:4,20.5,-28.5,0,0,-0.13605 -63694,3202:381:3,21,-28.5,0,0,-0.13605 -63695,3202:381:4,21.5,-28.5,0,0,-0.13605 -63696,3202:382:3,22,-28.5,0,0,-0.13605 -63697,3202:382:4,22.5,-28.5,0,0,-0.13605 -63698,3202:383:3,23,-28.5,0,0,-0.13605 -63699,3202:383:4,23.5,-28.5,0,0,-0.13605 -63700,3202:384:3,24,-28.5,0,0,-0.13605 -63701,3202:384:4,24.5,-28.5,0,0,-0.13605 -63702,3202:485:3,25,-28.5,0,0,-0.13605 -63703,3202:485:4,25.5,-28.5,0,0,-0.13605 -63704,3202:486:3,26,-28.5,0,0,-0.13605 -63705,3202:486:4,26.5,-28.5,0,0,-0.13605 -63706,3202:487:3,27,-28.5,0,0,-0.13605 -63707,3202:487:4,27.5,-28.5,0,0,-0.13605 -63708,3202:488:3,28,-28.5,0,0,-0.13605 -63709,3202:488:4,28.5,-28.5,0,0,-0.13605 -63710,3202:489:3,29,-28.5,0,0,-0.13605 -63711,3202:489:4,29.5,-28.5,0,0,-0.13605 -63712,3203:380:3,30,-28.5,0,0,-0.13605 -63713,3203:380:4,30.5,-28.5,0,0,-0.13605 -63714,3203:381:3,31,-28.5,0,0,-0.13605 -63715,3203:381:4,31.5,-28.5,0,0,-0.13605 -63716,3203:382:3,32,-28.5,0,0,-0.13605 -63717,3203:382:4,32.5,-28.5,0,0,-0.13605 -63718,3203:383:3,33,-28.5,0,0,-0.13605 -63719,3203:383:4,33.5,-28.5,0,0,-0.13605 -63720,3203:384:3,34,-28.5,0,0,-0.13605 -63721,3203:384:4,34.5,-28.5,0,0,-0.13605 -63722,3203:485:3,35,-28.5,0,0,-0.13605 -63723,3203:485:4,35.5,-28.5,0,0,-0.13605 -63724,3203:486:3,36,-28.5,0,0,-0.13605 -63725,3203:486:4,36.5,-28.5,0,0,-0.13605 -63726,3203:487:3,37,-28.5,0,0,-0.13605 -63727,3203:487:4,37.5,-28.5,0,0,-0.13605 -63728,3203:488:3,38,-28.5,0,0,-0.13605 -63729,3203:488:4,38.5,-28.5,0,0,-0.13605 -63730,3203:489:3,39,-28.5,0,0,-0.13605 -63731,3203:489:4,39.5,-28.5,0,0,-0.13605 -63732,3204:380:3,40,-28.5,0,0,-0.13605 -63733,3204:380:4,40.5,-28.5,0,0,-0.13605 -63734,3204:381:3,41,-28.5,0,0,-0.13605 -63735,3204:381:4,41.5,-28.5,0,0,-0.13605 -63736,3204:382:3,42,-28.5,0,0,-0.13605 -63737,3204:382:4,42.5,-28.5,0,0,-0.13605 -63738,3204:383:3,43,-28.5,0,0,-0.13605 -63739,3204:383:4,43.5,-28.5,0,0,-0.13605 -63740,3204:384:3,44,-28.5,0,0,-0.13605 -63741,3204:384:4,44.5,-28.5,0,0,-0.13605 -63742,3204:485:3,45,-28.5,0,0,-0.13605 -63743,3204:485:4,45.5,-28.5,0,0,-0.13605 -63744,3204:486:3,46,-28.5,0,0,-0.13605 -63745,3204:486:4,46.5,-28.5,0,0,-0.13605 -63746,3204:487:3,47,-28.5,0,0,-0.13605 -63747,3204:487:4,47.5,-28.5,0,0,-0.13605 -63748,3204:488:3,48,-28.5,0,0,-0.13605 -63749,3204:488:4,48.5,-28.5,0,0,-0.13605 -63750,3204:489:3,49,-28.5,0,0,-0.13605 -63751,3204:489:4,49.5,-28.5,0,0,-0.13605 -63752,3205:380:3,50,-28.5,0,0,-0.13605 -63753,3205:380:4,50.5,-28.5,0,0,-0.13605 -63754,3205:381:3,51,-28.5,0,0,-0.13605 -63755,3205:381:4,51.5,-28.5,0,0,-0.13605 -63756,3205:382:3,52,-28.5,0,0,-0.13605 -63757,3205:382:4,52.5,-28.5,0,0,-0.13605 -63758,3205:383:3,53,-28.5,0,0,-0.13605 -63759,3205:383:4,53.5,-28.5,0,0,-0.13605 -63760,3205:384:3,54,-28.5,0,0,-0.13605 -63761,3205:384:4,54.5,-28.5,0,0,-0.13605 -63762,3205:485:3,55,-28.5,0,0,-0.13605 -63763,3205:485:4,55.5,-28.5,0,0,-0.13605 -63764,3205:486:3,56,-28.5,0,0,-0.13605 -63765,3205:486:4,56.5,-28.5,0,0,-0.13605 -63766,3205:487:3,57,-28.5,0,0,-0.13605 -63767,3205:487:4,57.5,-28.5,0,0,-0.13605 -63768,3205:488:3,58,-28.5,0,0,-0.13605 -63769,3205:488:4,58.5,-28.5,0,0,-0.13605 -63770,3205:489:3,59,-28.5,0,0,-0.13605 -63771,3205:489:4,59.5,-28.5,0,0,-0.13605 -63772,3206:380:3,60,-28.5,0,0,-0.13605 -63773,3206:380:4,60.5,-28.5,0,0,-0.13605 -63774,3206:381:3,61,-28.5,0,0,-0.13605 -63775,3206:381:4,61.5,-28.5,0,0,-0.13605 -63776,3206:382:3,62,-28.5,0,0,-0.13605 -63777,3206:382:4,62.5,-28.5,0,0,-0.13605 -63778,3206:383:3,63,-28.5,0,0,-0.13605 -63779,3206:383:4,63.5,-28.5,0,0,-0.13605 -63780,3206:384:3,64,-28.5,0,0,-0.13605 -63781,3206:384:4,64.5,-28.5,0,0,-0.13605 -63782,3206:485:3,65,-28.5,0,0,-0.13605 -63783,3206:485:4,65.5,-28.5,0,0,-0.13605 -63784,3206:486:3,66,-28.5,0,0,-0.13605 -63785,3206:486:4,66.5,-28.5,0,0,-0.13605 -63786,3206:487:3,67,-28.5,0,0,-0.13605 -63787,3206:487:4,67.5,-28.5,0,0,-0.13605 -63788,3206:488:3,68,-28.5,0,0,-0.13605 -63789,3206:488:4,68.5,-28.5,0,0,-0.13605 -63790,3206:489:3,69,-28.5,0,0,-0.13605 -63791,3206:489:4,69.5,-28.5,0,0,-0.13605 -63792,3207:380:3,70,-28.5,0,0,-0.13605 -63793,3207:380:4,70.5,-28.5,0,0,-0.13605 -63794,3207:381:3,71,-28.5,0,0,-0.13605 -63795,3207:381:4,71.5,-28.5,0,0,-0.13605 -63796,3207:382:3,72,-28.5,0,0,-0.13605 -63797,3207:382:4,72.5,-28.5,0,0,-0.13605 -63798,3207:383:4,73.5,-28.5,0,0,-0.13605 -63799,3207:384:3,74,-28.5,0,0,-0.13605 -63800,3207:384:4,74.5,-28.5,0,0,-0.13605 -63801,3207:485:3,75,-28.5,0,0,-0.13605 -63802,3207:485:4,75.5,-28.5,0,0,-0.13605 -63803,3207:486:3,76,-28.5,0,0,-0.13605 -63804,3207:486:4,76.5,-28.5,0,0,-0.13605 -63805,3207:487:3,77,-28.5,0,0,-0.13605 -63806,3207:487:4,77.5,-28.5,0,0,-0.13605 -63807,3207:488:3,78,-28.5,0,0,-0.13605 -63808,3207:488:4,78.5,-28.5,0,0,-0.13605 -63809,3207:489:3,79,-28.5,0,0,-0.13605 -63810,3207:489:4,79.5,-28.5,0,0,-0.13605 -63811,3208:380:3,80,-28.5,0,0,-0.13605 -63812,3208:380:4,80.5,-28.5,0,0,-0.13605 -63813,3208:381:3,81,-28.5,0,0,-0.13605 -63814,3208:381:4,81.5,-28.5,0,0,-0.13605 -63815,3208:382:3,82,-28.5,0,0,-0.13605 -63816,3208:382:4,82.5,-28.5,0,0,-0.13605 -63817,3208:383:3,83,-28.5,0,0,-0.13605 -63818,3208:383:4,83.5,-28.5,0,0,-0.13605 -63819,3208:384:3,84,-28.5,0,0,-0.13605 -63820,3208:384:4,84.5,-28.5,0,0,-0.13605 -63821,3208:485:3,85,-28.5,0,0,-0.13605 -63822,3208:485:4,85.5,-28.5,0,0,-0.13605 -63823,3208:486:3,86,-28.5,0,0,-0.13605 -63824,3208:486:4,86.5,-28.5,0,0,-0.13605 -63825,3208:487:3,87,-28.5,0,0,-0.13605 -63826,3208:487:4,87.5,-28.5,0,0,-0.13605 -63827,3208:488:3,88,-28.5,0,0,-0.13605 -63828,3208:488:4,88.5,-28.5,0,0,-0.13605 -63829,3208:489:3,89,-28.5,0,0,-0.13605 -63830,3208:489:4,89.5,-28.5,0,0,-0.13605 -63831,3209:380:3,90,-28.5,0,0,-0.13605 -63832,3209:380:4,90.5,-28.5,0,0,-0.13605 -63833,3209:381:3,91,-28.5,0,0,-0.13605 -63834,3209:381:4,91.5,-28.5,0,0,-0.13605 -63835,3209:382:3,92,-28.5,0,0,-0.13605 -63836,3209:382:4,92.5,-28.5,0,0,-0.13605 -63837,3209:383:3,93,-28.5,0,0,-0.13605 -63838,3209:383:4,93.5,-28.5,0,0,-0.13605 -63839,3209:384:3,94,-28.5,0,0,-0.13605 -63840,3209:384:4,94.5,-28.5,0,0,-0.13605 -63841,3209:485:3,95,-28.5,0,0,-0.13605 -63842,3209:485:4,95.5,-28.5,0,0,-0.13605 -63843,3209:486:3,96,-28.5,0,0,-0.13605 -63844,3209:486:4,96.5,-28.5,0,0,-0.13605 -63845,3209:487:3,97,-28.5,0,0,-0.13605 -63846,3209:487:4,97.5,-28.5,0,0,-0.13605 -63847,3209:488:3,98,-28.5,0,0,-0.13605 -63848,3209:488:4,98.5,-28.5,0,0,-0.13605 -63849,3209:489:3,99,-28.5,0,0,-0.13605 -63850,3209:489:4,99.5,-28.5,0,0,-0.13605 -63851,3210:380:3,100,-28.5,0,0,-0.13605 -63852,3210:380:4,100.5,-28.5,0,0,-0.13605 -63853,3210:381:3,101,-28.5,0,0,-0.13605 -63854,3210:381:4,101.5,-28.5,0,0,-0.13605 -63855,3210:382:3,102,-28.5,0,0,-0.13605 -63856,3210:382:4,102.5,-28.5,0,0,-0.13605 -63857,3210:383:3,103,-28.5,0,0,-0.13605 -63858,3210:383:4,103.5,-28.5,0,0,-0.13605 -63859,3210:384:3,104,-28.5,0,0,-0.13605 -63860,3210:384:4,104.5,-28.5,0,0,-0.13605 -63861,3210:485:3,105,-28.5,0,0,-0.13605 -63862,3210:485:4,105.5,-28.5,0,0,-0.13605 -63863,3210:486:3,106,-28.5,0,0,-0.13605 -63864,3210:486:4,106.5,-28.5,0,0,-0.13605 -63865,3210:487:3,107,-28.5,0,0,-0.13605 -63866,3210:487:4,107.5,-28.5,0,0,-0.13605 -63867,3210:488:3,108,-28.5,0,0,-0.13605 -63868,3210:488:4,108.5,-28.5,0,0,-0.13605 -63869,3210:489:3,109,-28.5,0,0,-0.13605 -63870,3210:489:4,109.5,-28.5,0,0,-0.13605 -63871,3211:380:3,110,-28.5,0,0,-0.13605 -63872,3211:380:4,110.5,-28.5,0,0,-0.13605 -63873,3211:381:3,111,-28.5,0,0,-0.13605 -63874,3211:381:4,111.5,-28.5,0,0,-0.13605 -63875,3211:382:3,112,-28.5,0,0,-0.13605 -63876,3211:382:4,112.5,-28.5,0,0,-0.13605 -63877,3211:383:3,113,-28.5,0,0,-0.13605 -63878,3211:383:4,113.5,-28.5,0,0,-0.13605 -63879,3211:384:3,114,-28.5,0,0,-0.13605 -63880,3211:384:4,114.5,-28.5,0,0,-0.13605 -63881,3211:485:3,115,-28.5,0,0,-0.13605 -63882,3211:485:4,115.5,-28.5,0,0,-0.13605 -63883,3211:486:3,116,-28.5,0,0,-0.13605 -63884,3211:486:4,116.5,-28.5,0,0,-0.13605 -63885,3211:487:3,117,-28.5,0,0,-0.13605 -63886,3211:487:4,117.5,-28.5,0,0,-0.13605 -63887,3211:488:3,118,-28.5,0,0,-0.13605 -63888,3211:488:4,118.5,-28.5,0,0,-0.13605 -63889,3211:489:3,119,-28.5,0,0,-0.13605 -63890,3211:489:4,119.5,-28.5,0,0,-0.13605 -63891,3212:380:3,120,-28.5,0,0,-0.13605 -63892,3212:380:4,120.5,-28.5,0,0,-0.13605 -63893,3212:381:3,121,-28.5,0,0,-0.13605 -63894,3212:381:4,121.5,-28.5,0,0,-0.13605 -63895,3212:382:3,122,-28.5,0,0,-0.13605 -63896,3212:382:4,122.5,-28.5,0,0,-0.13605 -63897,3212:383:3,123,-28.5,0,0,-0.13605 -63898,3212:383:4,123.5,-28.5,0,0,-0.13605 -63899,3212:384:3,124,-28.5,0,0,-0.13605 -63900,3212:384:4,124.5,-28.5,0,0,-0.13605 -63901,3212:485:3,125,-28.5,0,0,-0.13605 -63902,3212:485:4,125.5,-28.5,0,0,-0.13605 -63903,3212:486:3,126,-28.5,0,0,-0.13605 -63904,3212:486:4,126.5,-28.5,0,0,-0.13605 -63905,3212:487:3,127,-28.5,0,0,-0.13605 -63906,3212:487:4,127.5,-28.5,0,0,-0.13605 -63907,3212:488:3,128,-28.5,0,0,-0.13605 -63908,3212:488:4,128.5,-28.5,0,0,-0.13605 -63909,3212:489:3,129,-28.5,0,0,-0.13605 -63910,3212:489:4,129.5,-28.5,0,0,-0.13605 -63911,3213:380:3,130,-28.5,0,0,-0.13605 -63912,3213:380:4,130.5,-28.5,0,0,-0.13605 -63913,3213:381:3,131,-28.5,0,0,-0.13605 -63914,3213:381:4,131.5,-28.5,0,0,-0.13605 -63915,3213:382:3,132,-28.5,0,0,-0.13605 -63916,3213:382:4,132.5,-28.5,0,0,-0.13605 -63917,3213:383:3,133,-28.5,0,0,-0.13605 -63918,3213:383:4,133.5,-28.5,0,0,-0.13605 -63919,3213:384:3,134,-28.5,0,0,-0.13605 -63920,3213:384:4,134.5,-28.5,0,0,-0.13605 -63921,3213:485:3,135,-28.5,0,0,-0.13605 -63922,3213:485:4,135.5,-28.5,0,0,-0.13605 -63923,3213:486:3,136,-28.5,0,0,-0.13605 -63924,3213:486:4,136.5,-28.5,0,0,-0.13605 -63925,3213:487:3,137,-28.5,0,0,-0.13605 -63926,3213:487:4,137.5,-28.5,0,0,-0.13605 -63927,3213:488:3,138,-28.5,0,0,-0.13605 -63928,3213:488:4,138.5,-28.5,0,0,-0.13605 -63929,3213:489:3,139,-28.5,0,0,-0.13605 -63930,3213:489:4,139.5,-28.5,0,0,-0.13605 -63931,3214:380:3,140,-28.5,0,0,-0.13605 -63932,3215:380:4,150.5,-28.5,0,0,-0.13605 -63933,3215:381:3,151,-28.5,0,0,-0.13605 -63934,3215:381:4,151.5,-28.5,0,0,-0.13605 -63935,3215:382:3,152,-28.5,0,0,-0.13605 -63936,3215:382:4,152.5,-28.5,0,0,-0.13605 -63937,3215:383:3,153,-28.5,0,0,-0.13605 -63938,3215:383:4,153.5,-28.5,0,0,-0.13605 -63939,3215:384:3,154,-28.5,0,0,-0.13605 -63940,3215:384:4,154.5,-28.5,0,0,-0.13605 -63941,3215:485:3,155,-28.5,0,0,-0.13605 -63942,3215:485:4,155.5,-28.5,0,0,-0.13605 -63943,3215:486:3,156,-28.5,0,0,-0.13605 -63944,3215:486:4,156.5,-28.5,0,0,-0.13605 -63945,3215:487:3,157,-28.5,0,0,-0.13605 -63946,3215:487:4,157.5,-28.5,0,0,-0.13605 -63947,3215:488:3,158,-28.5,0,0,-0.13605 -63948,3215:488:4,158.5,-28.5,0,0,-0.13605 -63949,3215:489:3,159,-28.5,0,0,-0.13605 -63950,3215:489:4,159.5,-28.5,0,0,-0.13605 -63951,3216:380:3,160,-28.5,0,0,-0.13605 -63952,3216:380:4,160.5,-28.5,0,0,-0.13605 -63953,3216:381:3,161,-28.5,0,0,-0.13605 -63954,3216:381:4,161.5,-28.5,0,0,-0.13605 -63955,3216:382:3,162,-28.5,0,0,-0.13605 -63956,3216:382:4,162.5,-28.5,0,0,-0.13605 -63957,3216:383:3,163,-28.5,0,0,-0.13605 -63958,3216:383:4,163.5,-28.5,0,0,-0.13605 -63959,3216:384:3,164,-28.5,0,0,-0.13605 -63960,3216:384:4,164.5,-28.5,0,0,-0.13605 -63961,3216:485:3,165,-28.5,0,0,-0.13605 -63962,3216:485:4,165.5,-28.5,0,0,-0.13605 -63963,3216:486:3,166,-28.5,0,0,-0.13605 -63964,3216:486:4,166.5,-28.5,0,0,-0.13605 -63965,3216:487:3,167,-28.5,0,0,-0.13605 -63966,3216:487:4,167.5,-28.5,0,0,-0.13605 -63967,3216:488:3,168,-28.5,0,0,-0.13605 -63968,3216:488:4,168.5,-28.5,0,0,-0.13605 -63969,3216:489:3,169,-28.5,0,0,-0.13605 -63970,3216:489:4,169.5,-28.5,0,0,-0.13605 -63971,3217:380:3,170,-28.5,0,0,-0.13605 -63972,3217:380:4,170.5,-28.5,0,0,-0.13605 -63973,3217:381:3,171,-28.5,0,0,-0.13605 -63974,3217:381:4,171.5,-28.5,0,0,-0.13605 -63975,3217:382:3,172,-28.5,0,0,-0.13605 -63976,3217:382:4,172.5,-28.5,0,0,-0.13605 -63977,3217:383:3,173,-28.5,0,0,-0.13605 -63978,3217:383:4,173.5,-28.5,0,0,-0.13605 -63979,3217:384:3,174,-28.5,0,0,-0.13605 -63980,3217:384:4,174.5,-28.5,0,0,-0.13605 -63981,3217:486:4,176.5,-28.5,0,0,-0.13605 -63982,3217:487:3,177,-28.5,0,0,-0.13605 -63983,3217:487:4,177.5,-28.5,0,0,-0.13605 -63984,3217:488:3,178,-28.5,0,0,-0.13605 -63985,3217:488:4,178.5,-28.5,0,0,-0.13605 -63986,3217:489:3,179,-28.5,0,0,-0.13605 -63987,3217:489:4,179.5,-28.5,0,0,-0.13605 -63988,3218:380:3,180,-28.5,0,0,-0.13605 -63989,5218:380:1,-180,-28,0,0,-0.13605 -63990,5217:489:2,-179.5,-28,0,0,-0.13605 -63991,5217:489:1,-179,-28,0,0,-0.13605 -63992,5217:488:2,-178.5,-28,0,0,-0.13605 -63993,5217:488:1,-178,-28,0,0,-0.13605 -63994,5217:487:2,-177.5,-28,0,0,-0.13605 -63995,5217:487:1,-177,-28,0,0,-0.13605 -63996,5217:486:2,-176.5,-28,0,0,-0.13605 -63997,5217:486:1,-176,-28,0,0,-0.13605 -63998,5217:485:2,-175.5,-28,0,0,-0.13605 -63999,5217:485:1,-175,-28,0,0,-0.13605 -64000,5217:384:2,-174.5,-28,0,0,-0.13605 -64001,5217:384:1,-174,-28,0,0,-0.13605 -64002,5217:383:2,-173.5,-28,0,0,-0.13605 -64003,5217:383:1,-173,-28,0,0,-0.13605 -64004,5217:382:2,-172.5,-28,0,0,-0.13605 -64005,5217:382:1,-172,-28,0,0,-0.13605 -64006,5217:381:2,-171.5,-28,0,0,-0.13605 -64007,5217:381:1,-171,-28,0,0,-0.13605 -64008,5217:380:2,-170.5,-28,0,0,-0.13605 -64009,5217:380:1,-170,-28,0,0,-0.13605 -64010,5216:489:2,-169.5,-28,0,0,-0.13605 -64011,5216:489:1,-169,-28,0,0,-0.13605 -64012,5216:488:2,-168.5,-28,0,0,-0.13605 -64013,5216:488:1,-168,-28,0,0,-0.13605 -64014,5216:487:2,-167.5,-28,0,0,-0.13605 -64015,5216:487:1,-167,-28,0,0,-0.13605 -64016,5216:486:2,-166.5,-28,0,0,-0.13605 -64017,5216:486:1,-166,-28,0,0,-0.13605 -64018,5216:485:2,-165.5,-28,0,0,-0.13605 -64019,5216:485:1,-165,-28,0,0,-0.13605 -64020,5216:384:2,-164.5,-28,0,0,-0.13605 -64021,5216:384:1,-164,-28,0,0,-0.13605 -64022,5216:383:2,-163.5,-28,0,0,-0.13605 -64023,5216:383:1,-163,-28,0,0,-0.13605 -64024,5216:382:2,-162.5,-28,0,0,-0.13605 -64025,5216:382:1,-162,-28,0,0,-0.13605 -64026,5216:381:2,-161.5,-28,0,0,-0.13605 -64027,5216:381:1,-161,-28,0,0,-0.13605 -64028,5216:380:2,-160.5,-28,0,0,-0.13605 -64029,5216:380:1,-160,-28,0,0,-0.13605 -64030,5215:489:2,-159.5,-28,0,0,-0.13605 -64031,5215:489:1,-159,-28,0,0,-0.13605 -64032,5215:488:2,-158.5,-28,0,0,-0.13605 -64033,5215:488:1,-158,-28,0,0,-0.13605 -64034,5215:487:2,-157.5,-28,0,0,-0.13605 -64035,5215:487:1,-157,-28,0,0,-0.13605 -64036,5215:486:2,-156.5,-28,0,0,-0.13605 -64037,5215:486:1,-156,-28,0,0,-0.13605 -64038,5215:485:2,-155.5,-28,0,0,-0.13605 -64039,5215:485:1,-155,-28,0,0,-0.13605 -64040,5215:384:2,-154.5,-28,0,0,-0.13605 -64041,5215:384:1,-154,-28,0,0,-0.13605 -64042,5215:383:2,-153.5,-28,0,0,-0.13605 -64043,5215:383:1,-153,-28,0,0,-0.13605 -64044,5215:382:2,-152.5,-28,0,0,-0.13605 -64045,5215:382:1,-152,-28,0,0,-0.13605 -64046,5215:381:2,-151.5,-28,0,0,-0.13605 -64047,5215:381:1,-151,-28,0,0,-0.13605 -64048,5215:380:2,-150.5,-28,0,0,-0.13605 -64049,5215:380:1,-150,-28,0,0,-0.13605 -64050,5214:489:2,-149.5,-28,0,0,-0.13605 -64051,5214:489:1,-149,-28,0,0,-0.13605 -64052,5214:488:2,-148.5,-28,0,0,-0.13605 -64053,5214:488:1,-148,-28,0,0,-0.13605 -64054,5214:487:2,-147.5,-28,0,0,-0.13605 -64055,5214:487:1,-147,-28,0,0,-0.13605 -64056,5214:486:2,-146.5,-28,0,0,-0.13605 -64057,5214:486:1,-146,-28,0,0,-0.13605 -64058,5214:485:2,-145.5,-28,0,0,-0.13605 -64059,5214:485:1,-145,-28,0,0,-0.13605 -64060,5214:384:2,-144.5,-28,0,0,-0.13605 -64061,5214:384:1,-144,-28,0,0,-0.13605 -64062,5214:383:2,-143.5,-28,0,0,-0.13605 -64063,5214:383:1,-143,-28,0,0,-0.13605 -64064,5214:382:2,-142.5,-28,0,0,-0.13605 -64065,5214:382:1,-142,-28,0,0,-0.13605 -64066,5214:381:2,-141.5,-28,0,0,-0.13605 -64067,5214:381:1,-141,-28,0,0,-0.13605 -64068,5214:380:2,-140.5,-28,0,0,-0.13605 -64069,5214:380:1,-140,-28,0,0,-0.13605 -64070,5213:489:2,-139.5,-28,0,0,-0.13605 -64071,5213:489:1,-139,-28,0,0,-0.13605 -64072,5213:488:2,-138.5,-28,0,0,-0.13605 -64073,5213:488:1,-138,-28,0,0,-0.13605 -64074,5213:487:2,-137.5,-28,0,0,-0.13605 -64075,5213:487:1,-137,-28,0,0,-0.13605 -64076,5213:486:2,-136.5,-28,0,0,-0.13605 -64077,5213:486:1,-136,-28,0,0,-0.13605 -64078,5213:485:2,-135.5,-28,0,0,-0.13605 -64079,5213:485:1,-135,-28,0,0,-0.13605 -64080,5213:384:2,-134.5,-28,0,0,-0.13605 -64081,5213:384:1,-134,-28,0,0,-0.13605 -64082,5213:383:2,-133.5,-28,0,0,-0.13605 -64083,5213:383:1,-133,-28,0,0,-0.13605 -64084,5213:382:2,-132.5,-28,0,0,-0.13605 -64085,5213:382:1,-132,-28,0,0,-0.13605 -64086,5213:381:2,-131.5,-28,0,0,-0.13605 -64087,5213:381:1,-131,-28,0,0,-0.13605 -64088,5213:380:2,-130.5,-28,0,0,-0.13605 -64089,5213:380:1,-130,-28,0,0,-0.13605 -64090,5212:489:2,-129.5,-28,0,0,-0.13605 -64091,5212:489:1,-129,-28,0,0,-0.13605 -64092,5212:488:2,-128.5,-28,0,0,-0.13605 -64093,5212:488:1,-128,-28,0,0,-0.13605 -64094,5212:487:2,-127.5,-28,0,0,-0.13605 -64095,5212:487:1,-127,-28,0,0,-0.13605 -64096,5212:486:2,-126.5,-28,0,0,-0.13605 -64097,5212:486:1,-126,-28,0,0,-0.13605 -64098,5212:485:2,-125.5,-28,0,0,-0.13605 -64099,5212:485:1,-125,-28,0,0,-0.13605 -64100,5212:384:2,-124.5,-28,0,0,-0.13605 -64101,5212:384:1,-124,-28,0,0,-0.13605 -64102,5212:383:2,-123.5,-28,0,0,-0.13605 -64103,5212:383:1,-123,-28,0,0,-0.13605 -64104,5212:382:2,-122.5,-28,0,0,-0.13605 -64105,5212:382:1,-122,-28,0,0,-0.13605 -64106,5212:381:2,-121.5,-28,0,0,-0.13605 -64107,5212:381:1,-121,-28,0,0,-0.13605 -64108,5212:380:2,-120.5,-28,0,0,-0.13605 -64109,5212:380:1,-120,-28,0,0,-0.13605 -64110,5211:489:2,-119.5,-28,0,0,-0.13605 -64111,5211:489:1,-119,-28,0,0,-0.13605 -64112,5211:488:2,-118.5,-28,0,0,-0.13605 -64113,5211:488:1,-118,-28,0,0,-0.13605 -64114,5211:487:2,-117.5,-28,0,0,-0.13605 -64115,5211:487:1,-117,-28,0,0,-0.13605 -64116,5211:486:2,-116.5,-28,0,0,-0.13605 -64117,5211:486:1,-116,-28,0,0,-0.13605 -64118,5211:485:2,-115.5,-28,0,0,-0.13605 -64119,5211:485:1,-115,-28,0,0,-0.13605 -64120,5211:384:2,-114.5,-28,0,0,-0.13605 -64121,5211:384:1,-114,-28,0,0,-0.13605 -64122,5211:383:2,-113.5,-28,0,0,-0.13605 -64123,5211:383:1,-113,-28,0,0,-0.13605 -64124,5211:382:2,-112.5,-28,0,0,-0.13605 -64125,5211:382:1,-112,-28,0,0,-0.13605 -64126,5211:381:2,-111.5,-28,0,0,-0.13605 -64127,5211:381:1,-111,-28,0,0,-0.13605 -64128,5211:380:2,-110.5,-28,0,0,-0.13605 -64129,5211:380:1,-110,-28,0,0,-0.13605 -64130,5210:489:2,-109.5,-28,0,0,-0.13605 -64131,5210:489:1,-109,-28,0,0,-0.13605 -64132,5210:488:2,-108.5,-28,0,0,-0.13605 -64133,5210:488:1,-108,-28,0,0,-0.13605 -64134,5210:487:2,-107.5,-28,0,0,-0.13605 -64135,5210:487:1,-107,-28,0,0,-0.13605 -64136,5210:486:2,-106.5,-28,0,0,-0.13605 -64137,5210:486:1,-106,-28,0,0,-0.13605 -64138,5210:485:2,-105.5,-28,0,0,-0.13605 -64139,5210:485:1,-105,-28,0,0,-0.13605 -64140,5210:384:2,-104.5,-28,0,0,-0.13605 -64141,5210:384:1,-104,-28,0,0,-0.13605 -64142,5210:383:2,-103.5,-28,0,0,-0.13605 -64143,5210:383:1,-103,-28,0,0,-0.13605 -64144,5210:382:2,-102.5,-28,0,0,-0.13605 -64145,5210:382:1,-102,-28,0,0,-0.13605 -64146,5210:381:2,-101.5,-28,0,0,-0.13605 -64147,5210:381:1,-101,-28,0,0,-0.13605 -64148,5210:380:2,-100.5,-28,0,0,-0.13605 -64149,5210:380:1,-100,-28,0,0,-0.13605 -64150,5209:489:2,-99.5,-28,0,0,-0.13605 -64151,5209:489:1,-99,-28,0,0,-0.13605 -64152,5209:488:2,-98.5,-28,0,0,-0.13605 -64153,5209:488:1,-98,-28,0,0,-0.13605 -64154,5209:487:2,-97.5,-28,0,0,-0.13605 -64155,5209:487:1,-97,-28,0,0,-0.13605 -64156,5209:486:2,-96.5,-28,0,0,-0.13605 -64157,5209:486:1,-96,-28,0,0,-0.13605 -64158,5209:485:2,-95.5,-28,0,0,-0.13605 -64159,5209:485:1,-95,-28,0,0,-0.13605 -64160,5209:384:2,-94.5,-28,0,0,-0.13605 -64161,5209:384:1,-94,-28,0,0,-0.13605 -64162,5209:383:2,-93.5,-28,0,0,-0.13605 -64163,5209:383:1,-93,-28,0,0,-0.13605 -64164,5209:382:2,-92.5,-28,0,0,-0.13605 -64165,5209:382:1,-92,-28,0,0,-0.13605 -64166,5209:381:2,-91.5,-28,0,0,-0.13605 -64167,5209:381:1,-91,-28,0,0,-0.13605 -64168,5209:380:2,-90.5,-28,0,0,-0.13605 -64169,5209:380:1,-90,-28,0,0,-0.13605 -64170,5208:489:2,-89.5,-28,0,0,-0.13605 -64171,5208:489:1,-89,-28,0,0,-0.13605 -64172,5208:488:2,-88.5,-28,0,0,-0.13605 -64173,5208:488:1,-88,-28,0,0,-0.13605 -64174,5208:487:2,-87.5,-28,0,0,-0.13605 -64175,5208:487:1,-87,-28,0,0,-0.13605 -64176,5208:486:2,-86.5,-28,0,0,-0.13605 -64177,5208:486:1,-86,-28,0,0,-0.13605 -64178,5208:485:2,-85.5,-28,0,0,-0.13605 -64179,5208:485:1,-85,-28,0,0,-0.13605 -64180,5208:384:2,-84.5,-28,0,0,-0.13605 -64181,5208:384:1,-84,-28,0,0,-0.13605 -64182,5208:383:2,-83.5,-28,0,0,-0.13605 -64183,5208:383:1,-83,-28,0,0,-0.13605 -64184,5208:382:2,-82.5,-28,0,0,-0.13605 -64185,5208:382:1,-82,-28,0,0,-0.13605 -64186,5208:381:2,-81.5,-28,0,0,-0.13605 -64187,5208:381:1,-81,-28,0,0,-0.13605 -64188,5208:380:2,-80.5,-28,0,0,-0.13605 -64189,5208:380:1,-80,-28,0,0,-0.13605 -64190,5207:489:2,-79.5,-28,0,0,-0.13605 -64191,5207:489:1,-79,-28,0,0,-0.13605 -64192,5207:488:2,-78.5,-28,0,0,-0.13605 -64193,5207:488:1,-78,-28,0,0,-0.13605 -64194,5207:487:2,-77.5,-28,0,0,-0.13605 -64195,5207:487:1,-77,-28,0,0,-0.13605 -64196,5207:486:2,-76.5,-28,0,0,-0.13605 -64197,5207:486:1,-76,-28,0,0,-0.13605 -64198,5207:485:2,-75.5,-28,0,0,-0.13605 -64199,5207:485:1,-75,-28,0,0,-0.13605 -64200,5207:384:2,-74.5,-28,0,0,-0.13605 -64201,5207:384:1,-74,-28,0,0,-0.13605 -64202,5207:383:2,-73.5,-28,0,0,-0.13605 -64203,5207:383:1,-73,-28,0,0,-0.13605 -64204,5205:486:2,-56.5,-28,0,0,-0.13605 -64205,5205:486:1,-56,-28,0,0,-0.13605 -64206,5205:485:2,-55.5,-28,0,0,-0.13605 -64207,5205:485:1,-55,-28,0,0,-0.13605 -64208,5205:384:2,-54.5,-28,0,0,-0.13605 -64209,5205:384:1,-54,-28,0,0,-0.13605 -64210,5205:383:2,-53.5,-28,0,0,-0.13605 -64211,5205:383:1,-53,-28,0,0,-0.13605 -64212,5205:382:2,-52.5,-28,0,0,-0.13605 -64213,5205:382:1,-52,-28,0,0,-0.13605 -64214,5205:381:2,-51.5,-28,0,0,-0.13605 -64215,5205:381:1,-51,-28,0,0,-0.13605 -64216,5205:380:2,-50.5,-28,0,0,-0.13605 -64217,5205:380:1,-50,-28,0,0,-0.13605 -64218,5204:489:2,-49.5,-28,0,0,-0.13605 -64219,5204:489:1,-49,-28,0,0,-0.13605 -64220,5204:488:2,-48.5,-28,0,0,-0.13605 -64221,5204:488:1,-48,-28,0,0,-0.13605 -64222,5204:487:2,-47.5,-28,0,0,-0.13605 -64223,5204:487:1,-47,-28,0,0,-0.13605 -64224,5204:486:2,-46.5,-28,0,0,-0.13605 -64225,5204:486:1,-46,-28,0,0,-0.13605 -64226,5204:485:2,-45.5,-28,0,0,-0.13605 -64227,5204:485:1,-45,-28,0,0,-0.13605 -64228,5204:384:2,-44.5,-28,0,0,-0.13605 -64229,5204:384:1,-44,-28,0,0,-0.13605 -64230,5204:383:2,-43.5,-28,0,0,-0.13605 -64231,5204:383:1,-43,-28,0,0,-0.13605 -64232,5204:382:2,-42.5,-28,0,0,-0.13605 -64233,5204:382:1,-42,-28,0,0,-0.13605 -64234,5204:381:2,-41.5,-28,0,0,-0.13605 -64235,5204:381:1,-41,-28,0,0,-0.13605 -64236,5204:380:2,-40.5,-28,0,0,-0.13605 -64237,5204:380:1,-40,-28,0,0,-0.13605 -64238,5203:489:2,-39.5,-28,0,0,-0.13605 -64239,5203:489:1,-39,-28,0,0,-0.13605 -64240,5203:488:2,-38.5,-28,0,0,-0.13605 -64241,5203:488:1,-38,-28,0,0,-0.13605 -64242,5203:487:2,-37.5,-28,0,0,-0.13605 -64243,5203:487:1,-37,-28,0,0,-0.13605 -64244,5203:486:2,-36.5,-28,0,0,-0.13605 -64245,5203:486:1,-36,-28,0,0,-0.13605 -64246,5203:485:2,-35.5,-28,0,0,-0.13605 -64247,5203:485:1,-35,-28,0,0,-0.13605 -64248,5203:384:2,-34.5,-28,0,0,-0.13605 -64249,5203:384:1,-34,-28,0,0,-0.13605 -64250,5203:383:2,-33.5,-28,0,0,-0.13605 -64251,5203:383:1,-33,-28,0,0,-0.13605 -64252,5203:382:2,-32.5,-28,0,0,-0.13605 -64253,5203:382:1,-32,-28,0,0,-0.13605 -64254,5203:381:2,-31.5,-28,0,0,-0.13605 -64255,5203:381:1,-31,-28,0,0,-0.13605 -64256,5203:380:2,-30.5,-28,0,0,-0.13605 -64257,5203:380:1,-30,-28,0,0,-0.13605 -64258,5202:489:2,-29.5,-28,0,0,-0.13605 -64259,5202:489:1,-29,-28,0,0,-0.13605 -64260,5202:488:2,-28.5,-28,0,0,-0.13605 -64261,5202:488:1,-28,-28,0,0,-0.13605 -64262,5202:487:2,-27.5,-28,0,0,-0.13605 -64263,5202:487:1,-27,-28,0,0,-0.13605 -64264,5202:486:2,-26.5,-28,0,0,-0.13605 -64265,5202:486:1,-26,-28,0,0,-0.13605 -64266,5202:485:2,-25.5,-28,0,0,-0.13605 -64267,5202:485:1,-25,-28,0,0,-0.13605 -64268,5202:384:2,-24.5,-28,0,0,-0.13605 -64269,5202:384:1,-24,-28,0,0,-0.13605 -64270,5202:383:2,-23.5,-28,0,0,-0.13605 -64271,5202:383:1,-23,-28,0,0,-0.13605 -64272,5202:382:2,-22.5,-28,0,0,-0.13605 -64273,5202:382:1,-22,-28,0,0,-0.13605 -64274,5202:381:2,-21.5,-28,0,0,-0.13605 -64275,5202:381:1,-21,-28,0,0,-0.13605 -64276,5202:380:2,-20.5,-28,0,0,-0.13605 -64277,5202:380:1,-20,-28,0,0,-0.13605 -64278,5201:489:2,-19.5,-28,0,0,-0.13605 -64279,5201:489:1,-19,-28,0,0,-0.13605 -64280,5201:488:2,-18.5,-28,0,0,-0.13605 -64281,5201:488:1,-18,-28,0,0,-0.13605 -64282,5201:487:2,-17.5,-28,0,0,-0.13605 -64283,5201:487:1,-17,-28,0,0,-0.13605 -64284,5201:486:2,-16.5,-28,0,0,-0.13605 -64285,5201:486:1,-16,-28,0,0,-0.13605 -64286,5201:485:2,-15.5,-28,0,0,-0.13605 -64287,5201:485:1,-15,-28,0,0,-0.13605 -64288,5201:384:2,-14.5,-28,0,0,-0.13605 -64289,5201:384:1,-14,-28,0,0,-0.13605 -64290,5201:383:2,-13.5,-28,0,0,-0.13605 -64291,5201:383:1,-13,-28,0,0,-0.13605 -64292,5201:382:2,-12.5,-28,0,0,-0.13605 -64293,5201:382:1,-12,-28,0,0,-0.13605 -64294,5201:381:2,-11.5,-28,0,0,-0.13605 -64295,5201:381:1,-11,-28,0,0,-0.13605 -64296,5201:380:2,-10.5,-28,0,0,-0.13605 -64297,5201:380:1,-10,-28,0,0,-0.13605 -64298,5200:489:2,-9.5,-28,0,0,-0.13605 -64299,5200:489:1,-9,-28,0,0,-0.13605 -64300,5200:488:2,-8.5,-28,0,0,-0.13605 -64301,5200:488:1,-8,-28,0,0,-0.13605 -64302,5200:487:2,-7.5,-28,0,0,-0.13605 -64303,5200:487:1,-7,-28,0,0,-0.13605 -64304,5200:486:2,-6.5,-28,0,0,-0.13605 -64305,5200:486:1,-6,-28,0,0,-0.13605 -64306,5200:485:2,-5.5,-28,0,0,-0.13605 -64307,5200:485:1,-5,-28,0,0,-0.13605 -64308,5200:384:2,-4.5,-28,0,0,-0.13605 -64309,5200:384:1,-4,-28,0,0,-0.13605 -64310,5200:383:2,-3.5,-28,0,0,-0.13605 -64311,5200:383:1,-3,-28,0,0,-0.13605 -64312,5200:382:2,-2.5,-28,0,0,-0.13605 -64313,5200:382:1,-2,-28,0,0,-0.13605 -64314,5200:381:2,-1.5,-28,0,0,-0.13605 -64315,5200:381:1,-1,-28,0,0,-0.13605 -64316,5200:380:2,-0.5,-28,0,0,-0.13605 -64317,3200:380:2,0,-28,0,0,-0.13605 -64318,3200:380:2,0.5,-28,0,0,-0.13605 -64319,3200:381:1,1,-28,0,0,-0.13605 -64320,3200:381:2,1.5,-28,0,0,-0.13605 -64321,3200:382:1,2,-28,0,0,-0.13605 -64322,3200:382:2,2.5,-28,0,0,-0.13605 -64323,3200:383:1,3,-28,0,0,-0.13605 -64324,3200:383:2,3.5,-28,0,0,-0.13605 -64325,3200:384:1,4,-28,0,0,-0.13605 -64326,3200:384:2,4.5,-28,0,0,-0.13605 -64327,3200:485:1,5,-28,0,0,-0.13605 -64328,3200:485:2,5.5,-28,0,0,-0.13605 -64329,3200:486:1,6,-28,0,0,-0.13605 -64330,3200:486:2,6.5,-28,0,0,-0.13605 -64331,3200:487:1,7,-28,0,0,-0.13605 -64332,3200:487:2,7.5,-28,0,0,-0.13605 -64333,3200:488:1,8,-28,0,0,-0.13605 -64334,3200:488:2,8.5,-28,0,0,-0.13605 -64335,3200:489:1,9,-28,0,0,-0.13605 -64336,3200:489:2,9.5,-28,0,0,-0.13605 -64337,3201:380:1,10,-28,0,0,-0.13605 -64338,3201:380:2,10.5,-28,0,0,-0.13605 -64339,3201:381:1,11,-28,0,0,-0.13605 -64340,3201:381:2,11.5,-28,0,0,-0.13605 -64341,3201:382:1,12,-28,0,0,-0.13605 -64342,3201:382:2,12.5,-28,0,0,-0.13605 -64343,3201:383:1,13,-28,0,0,-0.13605 -64344,3201:383:2,13.5,-28,0,0,-0.13605 -64345,3201:384:1,14,-28,0,0,-0.13605 -64346,3201:384:2,14.5,-28,0,0,-0.13605 -64347,3201:485:1,15,-28,0,0,-0.13605 -64348,3201:485:2,15.5,-28,0,0,-0.13605 -64349,3201:486:1,16,-28,0,0,-0.13605 -64350,3201:486:2,16.5,-28,0,0,-0.13605 -64351,3201:487:1,17,-28,0,0,-0.13605 -64352,3201:487:2,17.5,-28,0,0,-0.13605 -64353,3201:488:1,18,-28,0,0,-0.13605 -64354,3201:488:2,18.5,-28,0,0,-0.13605 -64355,3201:489:1,19,-28,0,0,-0.13605 -64356,3201:489:2,19.5,-28,0,0,-0.13605 -64357,3202:380:1,20,-28,0,0,-0.13605 -64358,3202:380:2,20.5,-28,0,0,-0.13605 -64359,3202:381:1,21,-28,0,0,-0.13605 -64360,3202:381:2,21.5,-28,0,0,-0.13605 -64361,3202:382:1,22,-28,0,0,-0.13605 -64362,3202:382:2,22.5,-28,0,0,-0.13605 -64363,3202:383:1,23,-28,0,0,-0.13605 -64364,3202:383:2,23.5,-28,0,0,-0.13605 -64365,3202:384:1,24,-28,0,0,-0.13605 -64366,3202:384:2,24.5,-28,0,0,-0.13605 -64367,3202:485:1,25,-28,0,0,-0.13605 -64368,3202:485:2,25.5,-28,0,0,-0.13605 -64369,3202:486:1,26,-28,0,0,-0.13605 -64370,3202:486:2,26.5,-28,0,0,-0.13605 -64371,3202:487:1,27,-28,0,0,-0.13605 -64372,3202:487:2,27.5,-28,0,0,-0.13605 -64373,3202:488:1,28,-28,0,0,-0.13605 -64374,3202:488:2,28.5,-28,0,0,-0.13605 -64375,3202:489:1,29,-28,0,0,-0.13605 -64376,3202:489:2,29.5,-28,0,0,-0.13605 -64377,3203:380:1,30,-28,0,0,-0.13605 -64378,3203:380:2,30.5,-28,0,0,-0.13605 -64379,3203:381:1,31,-28,0,0,-0.13605 -64380,3203:381:2,31.5,-28,0,0,-0.13605 -64381,3203:382:1,32,-28,0,0,-0.13605 -64382,3203:382:2,32.5,-28,0,0,-0.13605 -64383,3203:383:1,33,-28,0,0,-0.13605 -64384,3203:383:2,33.5,-28,0,0,-0.13605 -64385,3203:384:1,34,-28,0,0,-0.13605 -64386,3203:384:2,34.5,-28,0,0,-0.13605 -64387,3203:485:1,35,-28,0,0,-0.13605 -64388,3203:485:2,35.5,-28,0,0,-0.13605 -64389,3203:486:1,36,-28,0,0,-0.13605 -64390,3203:486:2,36.5,-28,0,0,-0.13605 -64391,3203:487:1,37,-28,0,0,-0.13605 -64392,3203:487:2,37.5,-28,0,0,-0.13605 -64393,3203:488:1,38,-28,0,0,-0.13605 -64394,3203:488:2,38.5,-28,0,0,-0.13605 -64395,3203:489:1,39,-28,0,0,-0.13605 -64396,3203:489:2,39.5,-28,0,0,-0.13605 -64397,3204:380:1,40,-28,0,0,-0.13605 -64398,3204:380:2,40.5,-28,0,0,-0.13605 -64399,3204:381:1,41,-28,0,0,-0.13605 -64400,3204:381:2,41.5,-28,0,0,-0.13605 -64401,3204:382:1,42,-28,0,0,-0.13605 -64402,3204:382:2,42.5,-28,0,0,-0.13605 -64403,3204:383:1,43,-28,0,0,-0.13605 -64404,3204:383:2,43.5,-28,0,0,-0.13605 -64405,3204:384:1,44,-28,0,0,-0.13605 -64406,3204:384:2,44.5,-28,0,0,-0.13605 -64407,3204:485:1,45,-28,0,0,-0.13605 -64408,3204:485:2,45.5,-28,0,0,-0.13605 -64409,3204:486:1,46,-28,0,0,-0.13605 -64410,3204:486:2,46.5,-28,0,0,-0.13605 -64411,3204:487:1,47,-28,0,0,-0.13605 -64412,3204:487:2,47.5,-28,0,0,-0.13605 -64413,3204:488:1,48,-28,0,0,-0.13605 -64414,3204:488:2,48.5,-28,0,0,-0.13605 -64415,3204:489:1,49,-28,0,0,-0.13605 -64416,3204:489:2,49.5,-28,0,0,-0.13605 -64417,3205:380:1,50,-28,0,0,-0.13605 -64418,3205:380:2,50.5,-28,0,0,-0.13605 -64419,3205:381:1,51,-28,0,0,-0.13605 -64420,3205:381:2,51.5,-28,0,0,-0.13605 -64421,3205:382:1,52,-28,0,0,-0.13605 -64422,3205:382:2,52.5,-28,0,0,-0.13605 -64423,3205:383:1,53,-28,0,0,-0.13605 -64424,3205:383:2,53.5,-28,0,0,-0.13605 -64425,3205:384:1,54,-28,0,0,-0.13605 -64426,3205:384:2,54.5,-28,0,0,-0.13605 -64427,3205:485:1,55,-28,0,0,-0.13605 -64428,3205:485:2,55.5,-28,0,0,-0.13605 -64429,3205:486:1,56,-28,0,0,-0.13605 -64430,3205:486:2,56.5,-28,0,0,-0.13605 -64431,3205:487:1,57,-28,0,0,-0.13605 -64432,3205:487:2,57.5,-28,0,0,-0.13605 -64433,3205:488:1,58,-28,0,0,-0.13605 -64434,3205:488:2,58.5,-28,0,0,-0.13605 -64435,3205:489:1,59,-28,0,0,-0.13605 -64436,3205:489:2,59.5,-28,0,0,-0.13605 -64437,3206:380:1,60,-28,0,0,-0.13605 -64438,3206:380:2,60.5,-28,0,0,-0.13605 -64439,3206:381:1,61,-28,0,0,-0.13605 -64440,3206:381:2,61.5,-28,0,0,-0.13605 -64441,3206:382:1,62,-28,0,0,-0.13605 -64442,3206:382:2,62.5,-28,0,0,-0.13605 -64443,3206:383:1,63,-28,0,0,-0.13605 -64444,3206:383:2,63.5,-28,0,0,-0.13605 -64445,3206:384:1,64,-28,0,0,-0.13605 -64446,3206:384:2,64.5,-28,0,0,-0.13605 -64447,3206:485:1,65,-28,0,0,-0.13605 -64448,3206:485:2,65.5,-28,0,0,-0.13605 -64449,3206:486:1,66,-28,0,0,-0.13605 -64450,3206:486:2,66.5,-28,0,0,-0.13605 -64451,3206:487:1,67,-28,0,0,-0.13605 -64452,3206:487:2,67.5,-28,0,0,-0.13605 -64453,3206:488:1,68,-28,0,0,-0.13605 -64454,3206:488:2,68.5,-28,0,0,-0.13605 -64455,3206:489:1,69,-28,0,0,-0.13605 -64456,3206:489:2,69.5,-28,0,0,-0.13605 -64457,3207:380:1,70,-28,0,0,-0.13605 -64458,3207:380:2,70.5,-28,0,0,-0.13605 -64459,3207:381:1,71,-28,0,0,-0.13605 -64460,3207:381:2,71.5,-28,0,0,-0.13605 -64461,3207:382:1,72,-28,0,0,-0.13605 -64462,3207:382:2,72.5,-28,0,0,-0.13605 -64463,3207:383:2,73.5,-28,0,0,-0.13605 -64464,3207:384:1,74,-28,0,0,-0.13605 -64465,3207:384:2,74.5,-28,0,0,-0.13605 -64466,3207:485:1,75,-28,0,0,-0.13605 -64467,3207:485:2,75.5,-28,0,0,-0.13605 -64468,3207:486:1,76,-28,0,0,-0.13605 -64469,3207:486:2,76.5,-28,0,0,-0.13605 -64470,3207:487:1,77,-28,0,0,-0.13605 -64471,3207:487:2,77.5,-28,0,0,-0.13605 -64472,3207:488:1,78,-28,0,0,-0.13605 -64473,3207:488:2,78.5,-28,0,0,-0.13605 -64474,3207:489:1,79,-28,0,0,-0.13605 -64475,3207:489:2,79.5,-28,0,0,-0.13605 -64476,3208:380:1,80,-28,0,0,-0.13605 -64477,3208:380:2,80.5,-28,0,0,-0.13605 -64478,3208:381:1,81,-28,0,0,-0.13605 -64479,3208:381:2,81.5,-28,0,0,-0.13605 -64480,3208:382:1,82,-28,0,0,-0.13605 -64481,3208:382:2,82.5,-28,0,0,-0.13605 -64482,3208:383:1,83,-28,0,0,-0.13605 -64483,3208:383:2,83.5,-28,0,0,-0.13605 -64484,3208:384:1,84,-28,0,0,-0.13605 -64485,3208:384:2,84.5,-28,0,0,-0.13605 -64486,3208:485:1,85,-28,0,0,-0.13605 -64487,3208:485:2,85.5,-28,0,0,-0.13605 -64488,3208:486:1,86,-28,0,0,-0.13605 -64489,3208:486:2,86.5,-28,0,0,-0.13605 -64490,3208:487:1,87,-28,0,0,-0.13605 -64491,3208:487:2,87.5,-28,0,0,-0.13605 -64492,3208:488:1,88,-28,0,0,-0.13605 -64493,3208:488:2,88.5,-28,0,0,-0.13605 -64494,3208:489:1,89,-28,0,0,-0.13605 -64495,3208:489:2,89.5,-28,0,0,-0.13605 -64496,3209:380:1,90,-28,0,0,-0.13605 -64497,3209:380:2,90.5,-28,0,0,-0.13605 -64498,3209:381:1,91,-28,0,0,-0.13605 -64499,3209:381:2,91.5,-28,0,0,-0.13605 -64500,3209:382:1,92,-28,0,0,-0.13605 -64501,3209:382:2,92.5,-28,0,0,-0.13605 -64502,3209:383:1,93,-28,0,0,-0.13605 -64503,3209:383:2,93.5,-28,0,0,-0.13605 -64504,3209:384:1,94,-28,0,0,-0.13605 -64505,3209:384:2,94.5,-28,0,0,-0.13605 -64506,3209:485:1,95,-28,0,0,-0.13605 -64507,3209:485:2,95.5,-28,0,0,-0.13605 -64508,3209:486:1,96,-28,0,0,-0.13605 -64509,3209:486:2,96.5,-28,0,0,-0.13605 -64510,3209:487:1,97,-28,0,0,-0.13605 -64511,3209:487:2,97.5,-28,0,0,-0.13605 -64512,3209:488:1,98,-28,0,0,-0.13605 -64513,3209:488:2,98.5,-28,0,0,-0.13605 -64514,3209:489:1,99,-28,0,0,-0.13605 -64515,3209:489:2,99.5,-28,0,0,-0.13605 -64516,3210:380:1,100,-28,0,0,-0.13605 -64517,3210:380:2,100.5,-28,0,0,-0.13605 -64518,3210:381:1,101,-28,0,0,-0.13605 -64519,3210:381:2,101.5,-28,0,0,-0.13605 -64520,3210:382:1,102,-28,0,0,-0.13605 -64521,3210:382:2,102.5,-28,0,0,-0.13605 -64522,3210:383:1,103,-28,0,0,-0.13605 -64523,3210:383:2,103.5,-28,0,0,-0.13605 -64524,3210:384:1,104,-28,0,0,-0.13605 -64525,3210:384:2,104.5,-28,0,0,-0.13605 -64526,3210:485:1,105,-28,0,0,-0.13605 -64527,3210:485:2,105.5,-28,0,0,-0.13605 -64528,3210:486:1,106,-28,0,0,-0.13605 -64529,3210:486:2,106.5,-28,0,0,-0.13605 -64530,3210:487:1,107,-28,0,0,-0.13605 -64531,3210:487:2,107.5,-28,0,0,-0.13605 -64532,3210:488:1,108,-28,0,0,-0.13605 -64533,3210:488:2,108.5,-28,0,0,-0.13605 -64534,3210:489:1,109,-28,0,0,-0.13605 -64535,3210:489:2,109.5,-28,0,0,-0.13605 -64536,3211:380:1,110,-28,0,0,-0.13605 -64537,3211:380:2,110.5,-28,0,0,-0.13605 -64538,3211:381:1,111,-28,0,0,-0.13605 -64539,3211:381:2,111.5,-28,0,0,-0.13605 -64540,3211:382:1,112,-28,0,0,-0.13605 -64541,3211:382:2,112.5,-28,0,0,-0.13605 -64542,3211:383:1,113,-28,0,0,-0.13605 -64543,3211:383:2,113.5,-28,0,0,-0.13605 -64544,3211:384:1,114,-28,0,0,-0.13605 -64545,3211:384:2,114.5,-28,0,0,-0.13605 -64546,3211:485:1,115,-28,0,0,-0.13605 -64547,3211:485:2,115.5,-28,0,0,-0.13605 -64548,3211:486:1,116,-28,0,0,-0.13605 -64549,3211:486:2,116.5,-28,0,0,-0.13605 -64550,3211:487:1,117,-28,0,0,-0.13605 -64551,3211:487:2,117.5,-28,0,0,-0.13605 -64552,3211:488:1,118,-28,0,0,-0.13605 -64553,3211:488:2,118.5,-28,0,0,-0.13605 -64554,3211:489:1,119,-28,0,0,-0.13605 -64555,3211:489:2,119.5,-28,0,0,-0.13605 -64556,3212:380:1,120,-28,0,0,-0.13605 -64557,3212:380:2,120.5,-28,0,0,-0.13605 -64558,3212:381:1,121,-28,0,0,-0.13605 -64559,3212:381:2,121.5,-28,0,0,-0.13605 -64560,3212:382:1,122,-28,0,0,-0.13605 -64561,3212:382:2,122.5,-28,0,0,-0.13605 -64562,3212:383:1,123,-28,0,0,-0.13605 -64563,3212:383:2,123.5,-28,0,0,-0.13605 -64564,3212:384:1,124,-28,0,0,-0.13605 -64565,3212:384:2,124.5,-28,0,0,-0.13605 -64566,3212:485:1,125,-28,0,0,-0.13605 -64567,3212:485:2,125.5,-28,0,0,-0.13605 -64568,3212:486:1,126,-28,0,0,-0.13605 -64569,3212:486:2,126.5,-28,0,0,-0.13605 -64570,3212:487:1,127,-28,0,0,-0.13605 -64571,3212:487:2,127.5,-28,0,0,-0.13605 -64572,3212:488:1,128,-28,0,0,-0.13605 -64573,3212:488:2,128.5,-28,0,0,-0.13605 -64574,3212:489:1,129,-28,0,0,-0.13605 -64575,3212:489:2,129.5,-28,0,0,-0.13605 -64576,3213:380:1,130,-28,0,0,-0.13605 -64577,3213:380:2,130.5,-28,0,0,-0.13605 -64578,3213:381:1,131,-28,0,0,-0.13605 -64579,3213:381:2,131.5,-28,0,0,-0.13605 -64580,3213:382:1,132,-28,0,0,-0.13605 -64581,3213:382:2,132.5,-28,0,0,-0.13605 -64582,3213:383:1,133,-28,0,0,-0.13605 -64583,3213:383:2,133.5,-28,0,0,-0.13605 -64584,3213:384:1,134,-28,0,0,-0.13605 -64585,3213:384:2,134.5,-28,0,0,-0.13605 -64586,3213:485:1,135,-28,0,0,-0.13605 -64587,3213:485:2,135.5,-28,0,0,-0.13605 -64588,3213:486:1,136,-28,0,0,-0.13605 -64589,3213:486:2,136.5,-28,0,0,-0.13605 -64590,3213:487:1,137,-28,0,0,-0.13605 -64591,3213:487:2,137.5,-28,0,0,-0.13605 -64592,3213:488:1,138,-28,0,0,-0.13605 -64593,3213:488:2,138.5,-28,0,0,-0.13605 -64594,3213:489:1,139,-28,0,0,-0.13605 -64595,3213:489:2,139.5,-28,0,0,-0.13605 -64596,3214:380:1,140,-28,0,0,-0.13605 -64597,3215:380:2,150.5,-28,0,0,-0.13605 -64598,3215:381:1,151,-28,0,0,-0.13605 -64599,3215:381:2,151.5,-28,0,0,-0.13605 -64600,3215:382:1,152,-28,0,0,-0.13605 -64601,3215:382:2,152.5,-28,0,0,-0.13605 -64602,3215:383:1,153,-28,0,0,-0.13605 -64603,3215:383:2,153.5,-28,0,0,-0.13605 -64604,3215:384:1,154,-28,0,0,-0.13605 -64605,3215:384:2,154.5,-28,0,0,-0.13605 -64606,3215:485:1,155,-28,0,0,-0.13605 -64607,3215:485:2,155.5,-28,0,0,-0.13605 -64608,3215:486:1,156,-28,0,0,-0.13605 -64609,3215:486:2,156.5,-28,0,0,-0.13605 -64610,3215:487:1,157,-28,0,0,-0.13605 -64611,3215:487:2,157.5,-28,0,0,-0.13605 -64612,3215:488:1,158,-28,0,0,-0.13605 -64613,3215:488:2,158.5,-28,0,0,-0.13605 -64614,3215:489:1,159,-28,0,0,-0.13605 -64615,3215:489:2,159.5,-28,0,0,-0.13605 -64616,3216:380:1,160,-28,0,0,-0.13605 -64617,3216:380:2,160.5,-28,0,0,-0.13605 -64618,3216:381:1,161,-28,0,0,-0.13605 -64619,3216:381:2,161.5,-28,0,0,-0.13605 -64620,3216:382:1,162,-28,0,0,-0.13605 -64621,3216:382:2,162.5,-28,0,0,-0.13605 -64622,3216:383:1,163,-28,0,0,-0.13605 -64623,3216:383:2,163.5,-28,0,0,-0.13605 -64624,3216:384:1,164,-28,0,0,-0.13605 -64625,3216:384:2,164.5,-28,0,0,-0.13605 -64626,3216:485:1,165,-28,0,0,-0.13605 -64627,3216:485:2,165.5,-28,0,0,-0.13605 -64628,3216:486:1,166,-28,0,0,-0.13605 -64629,3216:486:2,166.5,-28,0,0,-0.13605 -64630,3216:487:1,167,-28,0,0,-0.13605 -64631,3216:487:2,167.5,-28,0,0,-0.13605 -64632,3216:488:1,168,-28,0,0,-0.13605 -64633,3216:488:2,168.5,-28,0,0,-0.13605 -64634,3216:489:1,169,-28,0,0,-0.13605 -64635,3216:489:2,169.5,-28,0,0,-0.13605 -64636,3217:380:1,170,-28,0,0,-0.13605 -64637,3217:380:2,170.5,-28,0,0,-0.13605 -64638,3217:381:1,171,-28,0,0,-0.13605 -64639,3217:381:2,171.5,-28,0,0,-0.13605 -64640,3217:382:1,172,-28,0,0,-0.13605 -64641,3217:382:2,172.5,-28,0,0,-0.13605 -64642,3217:383:1,173,-28,0,0,-0.13605 -64643,3217:383:2,173.5,-28,0,0,-0.13605 -64644,3217:384:1,174,-28,0,0,-0.13605 -64645,3217:384:2,174.5,-28,0,0,-0.13605 -64646,3217:485:2,175.5,-28,0,0,-0.13605 -64647,3217:486:1,176,-28,0,0,-0.13605 -64648,3217:486:2,176.5,-28,0,0,-0.13605 -64649,3217:487:1,177,-28,0,0,-0.13605 -64650,3217:487:2,177.5,-28,0,0,-0.13605 -64651,3217:488:1,178,-28,0,0,-0.13605 -64652,3217:488:2,178.5,-28,0,0,-0.13605 -64653,3217:489:1,179,-28,0,0,-0.13605 -64654,3217:489:2,179.5,-28,0,0,-0.13605 -64655,3218:380:1,180,-28,0,0,-0.13605 -64656,5218:370:3,-180,-27.5,0,0,-0.13605 -64657,5217:479:4,-179.5,-27.5,0,0,-0.13605 -64658,5217:479:3,-179,-27.5,0,0,-0.13605 -64659,5217:478:4,-178.5,-27.5,0,0,-0.13605 -64660,5217:478:3,-178,-27.5,0,0,-0.13605 -64661,5217:477:4,-177.5,-27.5,0,0,-0.13605 -64662,5217:477:3,-177,-27.5,0,0,-0.13605 -64663,5217:476:4,-176.5,-27.5,0,0,-0.13605 -64664,5217:476:3,-176,-27.5,0,0,-0.13605 -64665,5217:475:4,-175.5,-27.5,0,0,-0.13605 -64666,5217:475:3,-175,-27.5,0,0,-0.13605 -64667,5217:374:4,-174.5,-27.5,0,0,-0.13605 -64668,5217:374:3,-174,-27.5,0,0,-0.13605 -64669,5217:373:4,-173.5,-27.5,0,0,-0.13605 -64670,5217:373:3,-173,-27.5,0,0,-0.13605 -64671,5217:372:4,-172.5,-27.5,0,0,-0.13605 -64672,5217:372:3,-172,-27.5,0,0,-0.13605 -64673,5217:371:4,-171.5,-27.5,0,0,-0.13605 -64674,5217:371:3,-171,-27.5,0,0,-0.13605 -64675,5217:370:4,-170.5,-27.5,0,0,-0.13605 -64676,5217:370:3,-170,-27.5,0,0,-0.13605 -64677,5216:479:4,-169.5,-27.5,0,0,-0.13605 -64678,5216:479:3,-169,-27.5,0,0,-0.13605 -64679,5216:478:4,-168.5,-27.5,0,0,-0.13605 -64680,5216:478:3,-168,-27.5,0,0,-0.13605 -64681,5216:477:4,-167.5,-27.5,0,0,-0.13605 -64682,5216:477:3,-167,-27.5,0,0,-0.13605 -64683,5216:476:4,-166.5,-27.5,0,0,-0.13605 -64684,5216:476:3,-166,-27.5,0,0,-0.13605 -64685,5216:475:4,-165.5,-27.5,0,0,-0.13605 -64686,5216:475:3,-165,-27.5,0,0,-0.13605 -64687,5216:374:4,-164.5,-27.5,0,0,-0.13605 -64688,5216:374:3,-164,-27.5,0,0,-0.13605 -64689,5216:373:4,-163.5,-27.5,0,0,-0.13605 -64690,5216:373:3,-163,-27.5,0,0,-0.13605 -64691,5216:372:4,-162.5,-27.5,0,0,-0.13605 -64692,5216:372:3,-162,-27.5,0,0,-0.13605 -64693,5216:371:4,-161.5,-27.5,0,0,-0.13605 -64694,5216:371:3,-161,-27.5,0,0,-0.13605 -64695,5216:370:4,-160.5,-27.5,0,0,-0.13605 -64696,5216:370:3,-160,-27.5,0,0,-0.13605 -64697,5215:479:4,-159.5,-27.5,0,0,-0.13605 -64698,5215:479:3,-159,-27.5,0,0,-0.13605 -64699,5215:478:4,-158.5,-27.5,0,0,-0.13605 -64700,5215:478:3,-158,-27.5,0,0,-0.13605 -64701,5215:477:4,-157.5,-27.5,0,0,-0.13605 -64702,5215:477:3,-157,-27.5,0,0,-0.13605 -64703,5215:476:4,-156.5,-27.5,0,0,-0.13605 -64704,5215:476:3,-156,-27.5,0,0,-0.13605 -64705,5215:475:4,-155.5,-27.5,0,0,-0.13605 -64706,5215:475:3,-155,-27.5,0,0,-0.13605 -64707,5215:374:4,-154.5,-27.5,0,0,-0.13605 -64708,5215:374:3,-154,-27.5,0,0,-0.13605 -64709,5215:373:4,-153.5,-27.5,0,0,-0.13605 -64710,5215:373:3,-153,-27.5,0,0,-0.13605 -64711,5215:372:4,-152.5,-27.5,0,0,-0.13605 -64712,5215:372:3,-152,-27.5,0,0,-0.13605 -64713,5215:371:4,-151.5,-27.5,0,0,-0.13605 -64714,5215:371:3,-151,-27.5,0,0,-0.13605 -64715,5215:370:4,-150.5,-27.5,0,0,-0.13605 -64716,5215:370:3,-150,-27.5,0,0,-0.13605 -64717,5214:479:4,-149.5,-27.5,0,0,-0.13605 -64718,5214:479:3,-149,-27.5,0,0,-0.13605 -64719,5214:478:4,-148.5,-27.5,0,0,-0.13605 -64720,5214:478:3,-148,-27.5,0,0,-0.13605 -64721,5214:477:4,-147.5,-27.5,0,0,-0.13605 -64722,5214:477:3,-147,-27.5,0,0,-0.13605 -64723,5214:476:4,-146.5,-27.5,0,0,-0.13605 -64724,5214:476:3,-146,-27.5,0,0,-0.13605 -64725,5214:475:4,-145.5,-27.5,0,0,-0.13605 -64726,5214:475:3,-145,-27.5,0,0,-0.13605 -64727,5214:374:4,-144.5,-27.5,0,0,-0.13605 -64728,5214:374:3,-144,-27.5,0,0,-0.13605 -64729,5214:373:4,-143.5,-27.5,0,0,-0.13605 -64730,5214:373:3,-143,-27.5,0,0,-0.13605 -64731,5214:372:4,-142.5,-27.5,0,0,-0.13605 -64732,5214:372:3,-142,-27.5,0,0,-0.13605 -64733,5214:371:4,-141.5,-27.5,0,0,-0.13605 -64734,5214:371:3,-141,-27.5,0,0,-0.13605 -64735,5214:370:4,-140.5,-27.5,0,0,-0.13605 -64736,5214:370:3,-140,-27.5,0,0,-0.13605 -64737,5213:479:4,-139.5,-27.5,0,0,-0.13605 -64738,5213:479:3,-139,-27.5,0,0,-0.13605 -64739,5213:478:4,-138.5,-27.5,0,0,-0.13605 -64740,5213:478:3,-138,-27.5,0,0,-0.13605 -64741,5213:477:4,-137.5,-27.5,0,0,-0.13605 -64742,5213:477:3,-137,-27.5,0,0,-0.13605 -64743,5213:476:4,-136.5,-27.5,0,0,-0.13605 -64744,5213:476:3,-136,-27.5,0,0,-0.13605 -64745,5213:475:4,-135.5,-27.5,0,0,-0.13605 -64746,5213:475:3,-135,-27.5,0,0,-0.13605 -64747,5213:374:4,-134.5,-27.5,0,0,-0.13605 -64748,5213:374:3,-134,-27.5,0,0,-0.13605 -64749,5213:373:4,-133.5,-27.5,0,0,-0.13605 -64750,5213:373:3,-133,-27.5,0,0,-0.13605 -64751,5213:372:4,-132.5,-27.5,0,0,-0.13605 -64752,5213:372:3,-132,-27.5,0,0,-0.13605 -64753,5213:371:4,-131.5,-27.5,0,0,-0.13605 -64754,5213:371:3,-131,-27.5,0,0,-0.13605 -64755,5213:370:4,-130.5,-27.5,0,0,-0.13605 -64756,5213:370:3,-130,-27.5,0,0,-0.13605 -64757,5212:479:4,-129.5,-27.5,0,0,-0.13605 -64758,5212:479:3,-129,-27.5,0,0,-0.13605 -64759,5212:478:4,-128.5,-27.5,0,0,-0.13605 -64760,5212:478:3,-128,-27.5,0,0,-0.13605 -64761,5212:477:4,-127.5,-27.5,0,0,-0.13605 -64762,5212:477:3,-127,-27.5,0,0,-0.13605 -64763,5212:476:4,-126.5,-27.5,0,0,-0.13605 -64764,5212:476:3,-126,-27.5,0,0,-0.13605 -64765,5212:475:4,-125.5,-27.5,0,0,-0.13605 -64766,5212:475:3,-125,-27.5,0,0,-0.13605 -64767,5212:374:4,-124.5,-27.5,0,0,-0.13605 -64768,5212:374:3,-124,-27.5,0,0,-0.13605 -64769,5212:373:4,-123.5,-27.5,0,0,-0.13605 -64770,5212:373:3,-123,-27.5,0,0,-0.13605 -64771,5212:372:4,-122.5,-27.5,0,0,-0.13605 -64772,5212:372:3,-122,-27.5,0,0,-0.13605 -64773,5212:371:4,-121.5,-27.5,0,0,-0.13605 -64774,5212:371:3,-121,-27.5,0,0,-0.13605 -64775,5212:370:4,-120.5,-27.5,0,0,-0.13605 -64776,5212:370:3,-120,-27.5,0,0,-0.13605 -64777,5211:479:4,-119.5,-27.5,0,0,-0.13605 -64778,5211:479:3,-119,-27.5,0,0,-0.13605 -64779,5211:478:4,-118.5,-27.5,0,0,-0.13605 -64780,5211:478:3,-118,-27.5,0,0,-0.13605 -64781,5211:477:4,-117.5,-27.5,0,0,-0.13605 -64782,5211:477:3,-117,-27.5,0,0,-0.13605 -64783,5211:476:4,-116.5,-27.5,0,0,-0.13605 -64784,5211:476:3,-116,-27.5,0,0,-0.13605 -64785,5211:475:4,-115.5,-27.5,0,0,-0.13605 -64786,5211:475:3,-115,-27.5,0,0,-0.13605 -64787,5211:374:4,-114.5,-27.5,0,0,-0.13605 -64788,5211:374:3,-114,-27.5,0,0,-0.13605 -64789,5211:373:4,-113.5,-27.5,0,0,-0.13605 -64790,5211:373:3,-113,-27.5,0,0,-0.13605 -64791,5211:372:4,-112.5,-27.5,0,0,-0.13605 -64792,5211:372:3,-112,-27.5,0,0,-0.13605 -64793,5211:371:4,-111.5,-27.5,0,0,-0.13605 -64794,5211:371:3,-111,-27.5,0,0,-0.13605 -64795,5211:370:4,-110.5,-27.5,0,0,-0.13605 -64796,5211:370:3,-110,-27.5,0,0,-0.13605 -64797,5210:479:4,-109.5,-27.5,0,0,-0.13605 -64798,5210:479:3,-109,-27.5,0,0,-0.13605 -64799,5210:478:4,-108.5,-27.5,0,0,-0.13605 -64800,5210:478:3,-108,-27.5,0,0,-0.13605 -64801,5210:477:4,-107.5,-27.5,0,0,-0.13605 -64802,5210:477:3,-107,-27.5,0,0,-0.13605 -64803,5210:476:4,-106.5,-27.5,0,0,-0.13605 -64804,5210:476:3,-106,-27.5,0,0,-0.13605 -64805,5210:475:4,-105.5,-27.5,0,0,-0.13605 -64806,5210:475:3,-105,-27.5,0,0,-0.13605 -64807,5210:374:4,-104.5,-27.5,0,0,-0.13605 -64808,5210:374:3,-104,-27.5,0,0,-0.13605 -64809,5210:373:4,-103.5,-27.5,0,0,-0.13605 -64810,5210:373:3,-103,-27.5,0,0,-0.13605 -64811,5210:372:4,-102.5,-27.5,0,0,-0.13605 -64812,5210:372:3,-102,-27.5,0,0,-0.13605 -64813,5210:371:4,-101.5,-27.5,0,0,-0.13605 -64814,5210:371:3,-101,-27.5,0,0,-0.13605 -64815,5210:370:4,-100.5,-27.5,0,0,-0.13605 -64816,5210:370:3,-100,-27.5,0,0,-0.13605 -64817,5209:479:4,-99.5,-27.5,0,0,-0.13605 -64818,5209:479:3,-99,-27.5,0,0,-0.13605 -64819,5209:478:4,-98.5,-27.5,0,0,-0.13605 -64820,5209:478:3,-98,-27.5,0,0,-0.13605 -64821,5209:477:4,-97.5,-27.5,0,0,-0.13605 -64822,5209:477:3,-97,-27.5,0,0,-0.13605 -64823,5209:476:4,-96.5,-27.5,0,0,-0.13605 -64824,5209:476:3,-96,-27.5,0,0,-0.13605 -64825,5209:475:4,-95.5,-27.5,0,0,-0.13605 -64826,5209:475:3,-95,-27.5,0,0,-0.13605 -64827,5209:374:4,-94.5,-27.5,0,0,-0.13605 -64828,5209:374:3,-94,-27.5,0,0,-0.13605 -64829,5209:373:4,-93.5,-27.5,0,0,-0.13605 -64830,5209:373:3,-93,-27.5,0,0,-0.13605 -64831,5209:372:4,-92.5,-27.5,0,0,-0.13605 -64832,5209:372:3,-92,-27.5,0,0,-0.13605 -64833,5209:371:4,-91.5,-27.5,0,0,-0.13605 -64834,5209:371:3,-91,-27.5,0,0,-0.13605 -64835,5209:370:4,-90.5,-27.5,0,0,-0.13605 -64836,5209:370:3,-90,-27.5,0,0,-0.13605 -64837,5208:479:4,-89.5,-27.5,0,0,-0.13605 -64838,5208:479:3,-89,-27.5,0,0,-0.13605 -64839,5208:478:4,-88.5,-27.5,0,0,-0.13605 -64840,5208:478:3,-88,-27.5,0,0,-0.13605 -64841,5208:477:4,-87.5,-27.5,0,0,-0.13605 -64842,5208:477:3,-87,-27.5,0,0,-0.13605 -64843,5208:476:4,-86.5,-27.5,0,0,-0.13605 -64844,5208:476:3,-86,-27.5,0,0,-0.13605 -64845,5208:475:4,-85.5,-27.5,0,0,-0.13605 -64846,5208:475:3,-85,-27.5,0,0,-0.13605 -64847,5208:374:4,-84.5,-27.5,0,0,-0.13605 -64848,5208:374:3,-84,-27.5,0,0,-0.13605 -64849,5208:373:4,-83.5,-27.5,0,0,-0.13605 -64850,5208:373:3,-83,-27.5,0,0,-0.13605 -64851,5208:372:4,-82.5,-27.5,0,0,-0.13605 -64852,5208:372:3,-82,-27.5,0,0,-0.13605 -64853,5208:371:4,-81.5,-27.5,0,0,-0.13605 -64854,5208:371:3,-81,-27.5,0,0,-0.13605 -64855,5208:370:4,-80.5,-27.5,0,0,-0.13605 -64856,5208:370:3,-80,-27.5,0,0,-0.13605 -64857,5207:479:4,-79.5,-27.5,0,0,-0.13605 -64858,5207:479:3,-79,-27.5,0,0,-0.13605 -64859,5207:478:4,-78.5,-27.5,0,0,-0.13605 -64860,5207:478:3,-78,-27.5,0,0,-0.13605 -64861,5207:477:4,-77.5,-27.5,0,0,-0.13605 -64862,5207:477:3,-77,-27.5,0,0,-0.13605 -64863,5207:476:4,-76.5,-27.5,0,0,-0.13605 -64864,5207:476:3,-76,-27.5,0,0,-0.13605 -64865,5207:475:4,-75.5,-27.5,0,0,-0.13605 -64866,5207:475:3,-75,-27.5,0,0,-0.13605 -64867,5207:374:4,-74.5,-27.5,0,0,-0.13605 -64868,5207:374:3,-74,-27.5,0,0,-0.13605 -64869,5207:373:4,-73.5,-27.5,0,0,-0.13605 -64870,5207:373:3,-73,-27.5,0,0,-0.13605 -64871,5205:477:3,-57,-27.5,0,0,-0.13605 -64872,5205:476:4,-56.5,-27.5,0,0,-0.13605 -64873,5205:476:3,-56,-27.5,0,0,-0.13605 -64874,5205:475:4,-55.5,-27.5,0,0,-0.13605 -64875,5205:475:3,-55,-27.5,0,0,-0.13605 -64876,5205:374:4,-54.5,-27.5,0,0,-0.13605 -64877,5205:374:3,-54,-27.5,0,0,-0.13605 -64878,5205:373:4,-53.5,-27.5,0,0,-0.13605 -64879,5205:373:3,-53,-27.5,0,0,-0.13605 -64880,5205:372:4,-52.5,-27.5,0,0,-0.13605 -64881,5205:372:3,-52,-27.5,0,0,-0.13605 -64882,5205:371:4,-51.5,-27.5,0,0,-0.13605 -64883,5205:371:3,-51,-27.5,0,0,-0.13605 -64884,5205:370:4,-50.5,-27.5,0,0,-0.13605 -64885,5205:370:3,-50,-27.5,0,0,-0.13605 -64886,5204:479:4,-49.5,-27.5,0,0,-0.13605 -64887,5204:479:3,-49,-27.5,0,0,-0.13605 -64888,5204:478:4,-48.5,-27.5,0,0,-0.13605 -64889,5204:478:3,-48,-27.5,0,0,-0.13605 -64890,5204:477:4,-47.5,-27.5,0,0,-0.13605 -64891,5204:477:3,-47,-27.5,0,0,-0.13605 -64892,5204:476:4,-46.5,-27.5,0,0,-0.13605 -64893,5204:476:3,-46,-27.5,0,0,-0.13605 -64894,5204:475:4,-45.5,-27.5,0,0,-0.13605 -64895,5204:475:3,-45,-27.5,0,0,-0.13605 -64896,5204:374:4,-44.5,-27.5,0,0,-0.13605 -64897,5204:374:3,-44,-27.5,0,0,-0.13605 -64898,5204:373:4,-43.5,-27.5,0,0,-0.13605 -64899,5204:373:3,-43,-27.5,0,0,-0.13605 -64900,5204:372:4,-42.5,-27.5,0,0,-0.13605 -64901,5204:372:3,-42,-27.5,0,0,-0.13605 -64902,5204:371:4,-41.5,-27.5,0,0,-0.13605 -64903,5204:371:3,-41,-27.5,0,0,-0.13605 -64904,5204:370:4,-40.5,-27.5,0,0,-0.13605 -64905,5204:370:3,-40,-27.5,0,0,-0.13605 -64906,5203:479:4,-39.5,-27.5,0,0,-0.13605 -64907,5203:479:3,-39,-27.5,0,0,-0.13605 -64908,5203:478:4,-38.5,-27.5,0,0,-0.13605 -64909,5203:478:3,-38,-27.5,0,0,-0.13605 -64910,5203:477:4,-37.5,-27.5,0,0,-0.13605 -64911,5203:477:3,-37,-27.5,0,0,-0.13605 -64912,5203:476:4,-36.5,-27.5,0,0,-0.13605 -64913,5203:476:3,-36,-27.5,0,0,-0.13605 -64914,5203:475:4,-35.5,-27.5,0,0,-0.13605 -64915,5203:475:3,-35,-27.5,0,0,-0.13605 -64916,5203:374:4,-34.5,-27.5,0,0,-0.13605 -64917,5203:374:3,-34,-27.5,0,0,-0.13605 -64918,5203:373:4,-33.5,-27.5,0,0,-0.13605 -64919,5203:373:3,-33,-27.5,0,0,-0.13605 -64920,5203:372:4,-32.5,-27.5,0,0,-0.13605 -64921,5203:372:3,-32,-27.5,0,0,-0.13605 -64922,5203:371:4,-31.5,-27.5,0,0,-0.13605 -64923,5203:371:3,-31,-27.5,0,0,-0.13605 -64924,5203:370:4,-30.5,-27.5,0,0,-0.13605 -64925,5203:370:3,-30,-27.5,0,0,-0.13605 -64926,5202:479:4,-29.5,-27.5,0,0,-0.13605 -64927,5202:479:3,-29,-27.5,0,0,-0.13605 -64928,5202:478:4,-28.5,-27.5,0,0,-0.13605 -64929,5202:478:3,-28,-27.5,0,0,-0.13605 -64930,5202:477:4,-27.5,-27.5,0,0,-0.13605 -64931,5202:477:3,-27,-27.5,0,0,-0.13605 -64932,5202:476:4,-26.5,-27.5,0,0,-0.13605 -64933,5202:476:3,-26,-27.5,0,0,-0.13605 -64934,5202:475:4,-25.5,-27.5,0,0,-0.13605 -64935,5202:475:3,-25,-27.5,0,0,-0.13605 -64936,5202:374:4,-24.5,-27.5,0,0,-0.13605 -64937,5202:374:3,-24,-27.5,0,0,-0.13605 -64938,5202:373:4,-23.5,-27.5,0,0,-0.13605 -64939,5202:373:3,-23,-27.5,0,0,-0.13605 -64940,5202:372:4,-22.5,-27.5,0,0,-0.13605 -64941,5202:372:3,-22,-27.5,0,0,-0.13605 -64942,5202:371:4,-21.5,-27.5,0,0,-0.13605 -64943,5202:371:3,-21,-27.5,0,0,-0.13605 -64944,5202:370:4,-20.5,-27.5,0,0,-0.13605 -64945,5202:370:3,-20,-27.5,0,0,-0.13605 -64946,5201:479:4,-19.5,-27.5,0,0,-0.13605 -64947,5201:479:3,-19,-27.5,0,0,-0.13605 -64948,5201:478:4,-18.5,-27.5,0,0,-0.13605 -64949,5201:478:3,-18,-27.5,0,0,-0.13605 -64950,5201:477:4,-17.5,-27.5,0,0,-0.13605 -64951,5201:477:3,-17,-27.5,0,0,-0.13605 -64952,5201:476:4,-16.5,-27.5,0,0,-0.13605 -64953,5201:476:3,-16,-27.5,0,0,-0.13605 -64954,5201:475:4,-15.5,-27.5,0,0,-0.13605 -64955,5201:475:3,-15,-27.5,0,0,-0.13605 -64956,5201:374:4,-14.5,-27.5,0,0,-0.13605 -64957,5201:374:3,-14,-27.5,0,0,-0.13605 -64958,5201:373:4,-13.5,-27.5,0,0,-0.13605 -64959,5201:373:3,-13,-27.5,0,0,-0.13605 -64960,5201:372:4,-12.5,-27.5,0,0,-0.13605 -64961,5201:372:3,-12,-27.5,0,0,-0.13605 -64962,5201:371:4,-11.5,-27.5,0,0,-0.13605 -64963,5201:371:3,-11,-27.5,0,0,-0.13605 -64964,5201:370:4,-10.5,-27.5,0,0,-0.13605 -64965,5201:370:3,-10,-27.5,0,0,-0.13605 -64966,5200:479:4,-9.5,-27.5,0,0,-0.13605 -64967,5200:479:3,-9,-27.5,0,0,-0.13605 -64968,5200:478:4,-8.5,-27.5,0,0,-0.13605 -64969,5200:478:3,-8,-27.5,0,0,-0.13605 -64970,5200:477:4,-7.5,-27.5,0,0,-0.13605 -64971,5200:477:3,-7,-27.5,0,0,-0.13605 -64972,5200:476:4,-6.5,-27.5,0,0,-0.13605 -64973,5200:476:3,-6,-27.5,0,0,-0.13605 -64974,5200:475:4,-5.5,-27.5,0,0,-0.13605 -64975,5200:475:3,-5,-27.5,0,0,-0.13605 -64976,5200:374:4,-4.5,-27.5,0,0,-0.13605 -64977,5200:374:3,-4,-27.5,0,0,-0.13605 -64978,5200:373:4,-3.5,-27.5,0,0,-0.13605 -64979,5200:373:3,-3,-27.5,0,0,-0.13605 -64980,5200:372:4,-2.5,-27.5,0,0,-0.13605 -64981,5200:372:3,-2,-27.5,0,0,-0.13605 -64982,5200:371:4,-1.5,-27.5,0,0,-0.13605 -64983,5200:371:3,-1,-27.5,0,0,-0.13605 -64984,5200:370:4,-0.5,-27.5,0,0,-0.13605 -64985,3200:370:4,0,-27.5,0,0,-0.13605 -64986,3200:370:4,0.5,-27.5,0,0,-0.13605 -64987,3200:371:3,1,-27.5,0,0,-0.13605 -64988,3200:371:4,1.5,-27.5,0,0,-0.13605 -64989,3200:372:3,2,-27.5,0,0,-0.13605 -64990,3200:372:4,2.5,-27.5,0,0,-0.13605 -64991,3200:373:3,3,-27.5,0,0,-0.13605 -64992,3200:373:4,3.5,-27.5,0,0,-0.13605 -64993,3200:374:3,4,-27.5,0,0,-0.13605 -64994,3200:374:4,4.5,-27.5,0,0,-0.13605 -64995,3200:475:3,5,-27.5,0,0,-0.13605 -64996,3200:475:4,5.5,-27.5,0,0,-0.13605 -64997,3200:476:3,6,-27.5,0,0,-0.13605 -64998,3200:476:4,6.5,-27.5,0,0,-0.13605 -64999,3200:477:3,7,-27.5,0,0,-0.13605 -65000,3200:477:4,7.5,-27.5,0,0,-0.13605 -65001,3200:478:3,8,-27.5,0,0,-0.13605 -65002,3200:478:4,8.5,-27.5,0,0,-0.13605 -65003,3200:479:3,9,-27.5,0,0,-0.13605 -65004,3200:479:4,9.5,-27.5,0,0,-0.13605 -65005,3201:370:3,10,-27.5,0,0,-0.13605 -65006,3201:370:4,10.5,-27.5,0,0,-0.13605 -65007,3201:371:3,11,-27.5,0,0,-0.13605 -65008,3201:371:4,11.5,-27.5,0,0,-0.13605 -65009,3201:372:3,12,-27.5,0,0,-0.13605 -65010,3201:372:4,12.5,-27.5,0,0,-0.13605 -65011,3201:373:3,13,-27.5,0,0,-0.13605 -65012,3201:373:4,13.5,-27.5,0,0,-0.13605 -65013,3201:374:3,14,-27.5,0,0,-0.13605 -65014,3201:374:4,14.5,-27.5,0,0,-0.13605 -65015,3201:475:3,15,-27.5,0,0,-0.13605 -65016,3201:475:4,15.5,-27.5,0,0,-0.13605 -65017,3201:476:3,16,-27.5,0,0,-0.13605 -65018,3201:476:4,16.5,-27.5,0,0,-0.13605 -65019,3201:477:3,17,-27.5,0,0,-0.13605 -65020,3201:477:4,17.5,-27.5,0,0,-0.13605 -65021,3201:478:3,18,-27.5,0,0,-0.13605 -65022,3201:478:4,18.5,-27.5,0,0,-0.13605 -65023,3201:479:3,19,-27.5,0,0,-0.13605 -65024,3201:479:4,19.5,-27.5,0,0,-0.13605 -65025,3202:370:3,20,-27.5,0,0,-0.13605 -65026,3202:370:4,20.5,-27.5,0,0,-0.13605 -65027,3202:371:3,21,-27.5,0,0,-0.13605 -65028,3202:371:4,21.5,-27.5,0,0,-0.13605 -65029,3202:372:3,22,-27.5,0,0,-0.13605 -65030,3202:372:4,22.5,-27.5,0,0,-0.13605 -65031,3202:373:3,23,-27.5,0,0,-0.13605 -65032,3202:373:4,23.5,-27.5,0,0,-0.13605 -65033,3202:374:3,24,-27.5,0,0,-0.13605 -65034,3202:374:4,24.5,-27.5,0,0,-0.13605 -65035,3202:475:3,25,-27.5,0,0,-0.13605 -65036,3202:475:4,25.5,-27.5,0,0,-0.13605 -65037,3202:476:3,26,-27.5,0,0,-0.13605 -65038,3202:476:4,26.5,-27.5,0,0,-0.13605 -65039,3202:477:3,27,-27.5,0,0,-0.13605 -65040,3202:477:4,27.5,-27.5,0,0,-0.13605 -65041,3202:478:3,28,-27.5,0,0,-0.13605 -65042,3202:478:4,28.5,-27.5,0,0,-0.13605 -65043,3202:479:3,29,-27.5,0,0,-0.13605 -65044,3202:479:4,29.5,-27.5,0,0,-0.13605 -65045,3203:370:3,30,-27.5,0,0,-0.13605 -65046,3203:370:4,30.5,-27.5,0,0,-0.13605 -65047,3203:371:3,31,-27.5,0,0,-0.13605 -65048,3203:371:4,31.5,-27.5,0,0,-0.13605 -65049,3203:372:3,32,-27.5,0,0,-0.13605 -65050,3203:372:4,32.5,-27.5,0,0,-0.13605 -65051,3203:373:3,33,-27.5,0,0,-0.13605 -65052,3203:373:4,33.5,-27.5,0,0,-0.13605 -65053,3203:374:3,34,-27.5,0,0,-0.13605 -65054,3203:374:4,34.5,-27.5,0,0,-0.13605 -65055,3203:475:3,35,-27.5,0,0,-0.13605 -65056,3203:475:4,35.5,-27.5,0,0,-0.13605 -65057,3203:476:3,36,-27.5,0,0,-0.13605 -65058,3203:476:4,36.5,-27.5,0,0,-0.13605 -65059,3203:477:3,37,-27.5,0,0,-0.13605 -65060,3203:477:4,37.5,-27.5,0,0,-0.13605 -65061,3203:478:3,38,-27.5,0,0,-0.13605 -65062,3203:478:4,38.5,-27.5,0,0,-0.13605 -65063,3203:479:3,39,-27.5,0,0,-0.13605 -65064,3203:479:4,39.5,-27.5,0,0,-0.13605 -65065,3204:370:3,40,-27.5,0,0,-0.13605 -65066,3204:370:4,40.5,-27.5,0,0,-0.13605 -65067,3204:371:3,41,-27.5,0,0,-0.13605 -65068,3204:371:4,41.5,-27.5,0,0,-0.13605 -65069,3204:372:3,42,-27.5,0,0,-0.13605 -65070,3204:372:4,42.5,-27.5,0,0,-0.13605 -65071,3204:373:3,43,-27.5,0,0,-0.13605 -65072,3204:373:4,43.5,-27.5,0,0,-0.13605 -65073,3204:374:3,44,-27.5,0,0,-0.13605 -65074,3204:374:4,44.5,-27.5,0,0,-0.13605 -65075,3204:475:3,45,-27.5,0,0,-0.13605 -65076,3204:475:4,45.5,-27.5,0,0,-0.13605 -65077,3204:476:3,46,-27.5,0,0,-0.13605 -65078,3204:476:4,46.5,-27.5,0,0,-0.13605 -65079,3204:477:3,47,-27.5,0,0,-0.13605 -65080,3204:477:4,47.5,-27.5,0,0,-0.13605 -65081,3204:478:3,48,-27.5,0,0,-0.13605 -65082,3204:478:4,48.5,-27.5,0,0,-0.13605 -65083,3204:479:3,49,-27.5,0,0,-0.13605 -65084,3204:479:4,49.5,-27.5,0,0,-0.13605 -65085,3205:370:3,50,-27.5,0,0,-0.13605 -65086,3205:370:4,50.5,-27.5,0,0,-0.13605 -65087,3205:371:3,51,-27.5,0,0,-0.13605 -65088,3205:371:4,51.5,-27.5,0,0,-0.13605 -65089,3205:372:3,52,-27.5,0,0,-0.13605 -65090,3205:372:4,52.5,-27.5,0,0,-0.13605 -65091,3205:373:3,53,-27.5,0,0,-0.13605 -65092,3205:373:4,53.5,-27.5,0,0,-0.13605 -65093,3205:374:3,54,-27.5,0,0,-0.13605 -65094,3205:374:4,54.5,-27.5,0,0,-0.13605 -65095,3205:475:3,55,-27.5,0,0,-0.13605 -65096,3205:475:4,55.5,-27.5,0,0,-0.13605 -65097,3205:476:3,56,-27.5,0,0,-0.13605 -65098,3205:476:4,56.5,-27.5,0,0,-0.13605 -65099,3205:477:3,57,-27.5,0,0,-0.13605 -65100,3205:477:4,57.5,-27.5,0,0,-0.13605 -65101,3205:478:3,58,-27.5,0,0,-0.13605 -65102,3205:478:4,58.5,-27.5,0,0,-0.13605 -65103,3205:479:3,59,-27.5,0,0,-0.13605 -65104,3205:479:4,59.5,-27.5,0,0,-0.13605 -65105,3206:370:3,60,-27.5,0,0,-0.13605 -65106,3206:370:4,60.5,-27.5,0,0,-0.13605 -65107,3206:371:3,61,-27.5,0,0,-0.13605 -65108,3206:371:4,61.5,-27.5,0,0,-0.13605 -65109,3206:372:3,62,-27.5,0,0,-0.13605 -65110,3206:372:4,62.5,-27.5,0,0,-0.13605 -65111,3206:373:3,63,-27.5,0,0,-0.13605 -65112,3206:373:4,63.5,-27.5,0,0,-0.13605 -65113,3206:374:3,64,-27.5,0,0,-0.13605 -65114,3206:374:4,64.5,-27.5,0,0,-0.13605 -65115,3206:475:3,65,-27.5,0,0,-0.13605 -65116,3206:475:4,65.5,-27.5,0,0,-0.13605 -65117,3206:476:3,66,-27.5,0,0,-0.13605 -65118,3206:476:4,66.5,-27.5,0,0,-0.13605 -65119,3206:477:3,67,-27.5,0,0,-0.13605 -65120,3206:477:4,67.5,-27.5,0,0,-0.13605 -65121,3206:478:3,68,-27.5,0,0,-0.13605 -65122,3206:478:4,68.5,-27.5,0,0,-0.13605 -65123,3206:479:3,69,-27.5,0,0,-0.13605 -65124,3206:479:4,69.5,-27.5,0,0,-0.13605 -65125,3207:370:3,70,-27.5,0,0,-0.13605 -65126,3207:370:4,70.5,-27.5,0,0,-0.13605 -65127,3207:371:3,71,-27.5,0,0,-0.13605 -65128,3207:371:4,71.5,-27.5,0,0,-0.13605 -65129,3207:372:3,72,-27.5,0,0,-0.13605 -65130,3207:372:4,72.5,-27.5,0,0,-0.13605 -65131,3207:373:4,73.5,-27.5,0,0,-0.13605 -65132,3207:374:3,74,-27.5,0,0,-0.13605 -65133,3207:374:4,74.5,-27.5,0,0,-0.13605 -65134,3207:475:3,75,-27.5,0,0,-0.13605 -65135,3207:475:4,75.5,-27.5,0,0,-0.13605 -65136,3207:476:3,76,-27.5,0,0,-0.13605 -65137,3207:476:4,76.5,-27.5,0,0,-0.13605 -65138,3207:477:3,77,-27.5,0,0,-0.13605 -65139,3207:477:4,77.5,-27.5,0,0,-0.13605 -65140,3207:478:3,78,-27.5,0,0,-0.13605 -65141,3207:478:4,78.5,-27.5,0,0,-0.13605 -65142,3207:479:3,79,-27.5,0,0,-0.13605 -65143,3207:479:4,79.5,-27.5,0,0,-0.13605 -65144,3208:370:3,80,-27.5,0,0,-0.13605 -65145,3208:370:4,80.5,-27.5,0,0,-0.13605 -65146,3208:371:3,81,-27.5,0,0,-0.13605 -65147,3208:371:4,81.5,-27.5,0,0,-0.13605 -65148,3208:372:3,82,-27.5,0,0,-0.13605 -65149,3208:372:4,82.5,-27.5,0,0,-0.13605 -65150,3208:373:3,83,-27.5,0,0,-0.13605 -65151,3208:373:4,83.5,-27.5,0,0,-0.13605 -65152,3208:374:3,84,-27.5,0,0,-0.13605 -65153,3208:374:4,84.5,-27.5,0,0,-0.13605 -65154,3208:475:3,85,-27.5,0,0,-0.13605 -65155,3208:475:4,85.5,-27.5,0,0,-0.13605 -65156,3208:476:3,86,-27.5,0,0,-0.13605 -65157,3208:476:4,86.5,-27.5,0,0,-0.13605 -65158,3208:477:3,87,-27.5,0,0,-0.13605 -65159,3208:477:4,87.5,-27.5,0,0,-0.13605 -65160,3208:478:3,88,-27.5,0,0,-0.13605 -65161,3208:478:4,88.5,-27.5,0,0,-0.13605 -65162,3208:479:3,89,-27.5,0,0,-0.13605 -65163,3208:479:4,89.5,-27.5,0,0,-0.13605 -65164,3209:370:3,90,-27.5,0,0,-0.13605 -65165,3209:370:4,90.5,-27.5,0,0,-0.13605 -65166,3209:371:3,91,-27.5,0,0,-0.13605 -65167,3209:371:4,91.5,-27.5,0,0,-0.13605 -65168,3209:372:3,92,-27.5,0,0,-0.13605 -65169,3209:372:4,92.5,-27.5,0,0,-0.13605 -65170,3209:373:3,93,-27.5,0,0,-0.13605 -65171,3209:373:4,93.5,-27.5,0,0,-0.13605 -65172,3209:374:3,94,-27.5,0,0,-0.13605 -65173,3209:374:4,94.5,-27.5,0,0,-0.13605 -65174,3209:475:3,95,-27.5,0,0,-0.13605 -65175,3209:475:4,95.5,-27.5,0,0,-0.13605 -65176,3209:476:3,96,-27.5,0,0,-0.13605 -65177,3209:476:4,96.5,-27.5,0,0,-0.13605 -65178,3209:477:3,97,-27.5,0,0,-0.13605 -65179,3209:477:4,97.5,-27.5,0,0,-0.13605 -65180,3209:478:3,98,-27.5,0,0,-0.13605 -65181,3209:478:4,98.5,-27.5,0,0,-0.13605 -65182,3209:479:3,99,-27.5,0,0,-0.13605 -65183,3209:479:4,99.5,-27.5,0,0,-0.13605 -65184,3210:370:3,100,-27.5,0,0,-0.13605 -65185,3210:370:4,100.5,-27.5,0,0,-0.13605 -65186,3210:371:3,101,-27.5,0,0,-0.13605 -65187,3210:371:4,101.5,-27.5,0,0,-0.13605 -65188,3210:372:3,102,-27.5,0,0,-0.13605 -65189,3210:372:4,102.5,-27.5,0,0,-0.13605 -65190,3210:373:3,103,-27.5,0,0,-0.13605 -65191,3210:373:4,103.5,-27.5,0,0,-0.13605 -65192,3210:374:3,104,-27.5,0,0,-0.13605 -65193,3210:374:4,104.5,-27.5,0,0,-0.13605 -65194,3210:475:3,105,-27.5,0,0,-0.13605 -65195,3210:475:4,105.5,-27.5,0,0,-0.13605 -65196,3210:476:3,106,-27.5,0,0,-0.13605 -65197,3210:476:4,106.5,-27.5,0,0,-0.13605 -65198,3210:477:3,107,-27.5,0,0,-0.13605 -65199,3210:477:4,107.5,-27.5,0,0,-0.13605 -65200,3210:478:3,108,-27.5,0,0,-0.13605 -65201,3210:478:4,108.5,-27.5,0,0,-0.13605 -65202,3210:479:3,109,-27.5,0,0,-0.13605 -65203,3210:479:4,109.5,-27.5,0,0,-0.13605 -65204,3211:370:3,110,-27.5,0,0,-0.13605 -65205,3211:370:4,110.5,-27.5,0,0,-0.13605 -65206,3211:371:3,111,-27.5,0,0,-0.13605 -65207,3211:371:4,111.5,-27.5,0,0,-0.13605 -65208,3211:372:3,112,-27.5,0,0,-0.13605 -65209,3211:372:4,112.5,-27.5,0,0,-0.13605 -65210,3211:373:3,113,-27.5,0,0,-0.13605 -65211,3211:373:4,113.5,-27.5,0,0,-0.13605 -65212,3211:374:3,114,-27.5,0,0,-0.13605 -65213,3211:374:4,114.5,-27.5,0,0,-0.13605 -65214,3211:475:3,115,-27.5,0,0,-0.13605 -65215,3211:475:4,115.5,-27.5,0,0,-0.13605 -65216,3211:476:3,116,-27.5,0,0,-0.13605 -65217,3211:476:4,116.5,-27.5,0,0,-0.13605 -65218,3211:477:3,117,-27.5,0,0,-0.13605 -65219,3211:477:4,117.5,-27.5,0,0,-0.13605 -65220,3211:478:3,118,-27.5,0,0,-0.13605 -65221,3211:478:4,118.5,-27.5,0,0,-0.13605 -65222,3211:479:3,119,-27.5,0,0,-0.13605 -65223,3211:479:4,119.5,-27.5,0,0,-0.13605 -65224,3212:370:3,120,-27.5,0,0,-0.13605 -65225,3212:370:4,120.5,-27.5,0,0,-0.13605 -65226,3212:371:3,121,-27.5,0,0,-0.13605 -65227,3212:371:4,121.5,-27.5,0,0,-0.13605 -65228,3212:372:3,122,-27.5,0,0,-0.13605 -65229,3212:372:4,122.5,-27.5,0,0,-0.13605 -65230,3212:373:3,123,-27.5,0,0,-0.13605 -65231,3212:373:4,123.5,-27.5,0,0,-0.13605 -65232,3212:374:3,124,-27.5,0,0,-0.13605 -65233,3212:374:4,124.5,-27.5,0,0,-0.13605 -65234,3212:475:3,125,-27.5,0,0,-0.13605 -65235,3212:475:4,125.5,-27.5,0,0,-0.13605 -65236,3212:476:3,126,-27.5,0,0,-0.13605 -65237,3212:476:4,126.5,-27.5,0,0,-0.13605 -65238,3212:477:3,127,-27.5,0,0,-0.13605 -65239,3212:477:4,127.5,-27.5,0,0,-0.13605 -65240,3212:478:3,128,-27.5,0,0,-0.13605 -65241,3212:478:4,128.5,-27.5,0,0,-0.13605 -65242,3212:479:3,129,-27.5,0,0,-0.13605 -65243,3212:479:4,129.5,-27.5,0,0,-0.13605 -65244,3213:370:3,130,-27.5,0,0,-0.13605 -65245,3213:370:4,130.5,-27.5,0,0,-0.13605 -65246,3213:371:3,131,-27.5,0,0,-0.13605 -65247,3213:371:4,131.5,-27.5,0,0,-0.13605 -65248,3213:372:3,132,-27.5,0,0,-0.13605 -65249,3213:372:4,132.5,-27.5,0,0,-0.13605 -65250,3213:373:3,133,-27.5,0,0,-0.13605 -65251,3213:373:4,133.5,-27.5,0,0,-0.13605 -65252,3213:374:3,134,-27.5,0,0,-0.13605 -65253,3213:374:4,134.5,-27.5,0,0,-0.13605 -65254,3213:475:3,135,-27.5,0,0,-0.13605 -65255,3213:475:4,135.5,-27.5,0,0,-0.13605 -65256,3213:476:3,136,-27.5,0,0,-0.13605 -65257,3213:476:4,136.5,-27.5,0,0,-0.13605 -65258,3213:478:3,138,-27.5,0,0,-0.13605 -65259,3213:478:4,138.5,-27.5,0,0,-0.13605 -65260,3213:479:3,139,-27.5,0,0,-0.13605 -65261,3213:479:4,139.5,-27.5,0,0,-0.13605 -65262,3215:370:4,150.5,-27.5,0,0,-0.13605 -65263,3215:371:3,151,-27.5,0,0,-0.13605 -65264,3215:371:4,151.5,-27.5,0,0,-0.13605 -65265,3215:372:3,152,-27.5,0,0,-0.13605 -65266,3215:372:4,152.5,-27.5,0,0,-0.13605 -65267,3215:373:3,153,-27.5,0,0,-0.13605 -65268,3215:373:4,153.5,-27.5,0,0,-0.13605 -65269,3215:374:3,154,-27.5,0,0,-0.13605 -65270,3215:374:4,154.5,-27.5,0,0,-0.13605 -65271,3215:475:3,155,-27.5,0,0,-0.13605 -65272,3215:475:4,155.5,-27.5,0,0,-0.13605 -65273,3215:476:3,156,-27.5,0,0,-0.13605 -65274,3215:476:4,156.5,-27.5,0,0,-0.13605 -65275,3215:477:3,157,-27.5,0,0,-0.13605 -65276,3215:477:4,157.5,-27.5,0,0,-0.13605 -65277,3215:478:3,158,-27.5,0,0,-0.13605 -65278,3215:478:4,158.5,-27.5,0,0,-0.13605 -65279,3215:479:3,159,-27.5,0,0,-0.13605 -65280,3215:479:4,159.5,-27.5,0,0,-0.13605 -65281,3216:370:3,160,-27.5,0,0,-0.13605 -65282,3216:370:4,160.5,-27.5,0,0,-0.13605 -65283,3216:371:3,161,-27.5,0,0,-0.13605 -65284,3216:371:4,161.5,-27.5,0,0,-0.13605 -65285,3216:372:3,162,-27.5,0,0,-0.13605 -65286,3216:372:4,162.5,-27.5,0,0,-0.13605 -65287,3216:373:3,163,-27.5,0,0,-0.13605 -65288,3216:373:4,163.5,-27.5,0,0,-0.13605 -65289,3216:374:3,164,-27.5,0,0,-0.13605 -65290,3216:374:4,164.5,-27.5,0,0,-0.13605 -65291,3216:475:3,165,-27.5,0,0,-0.13605 -65292,3216:475:4,165.5,-27.5,0,0,-0.13605 -65293,3216:476:3,166,-27.5,0,0,-0.13605 -65294,3216:476:4,166.5,-27.5,0,0,-0.13605 -65295,3216:477:3,167,-27.5,0,0,-0.13605 -65296,3216:477:4,167.5,-27.5,0,0,-0.13605 -65297,3216:478:3,168,-27.5,0,0,-0.13605 -65298,3216:478:4,168.5,-27.5,0,0,-0.13605 -65299,3216:479:3,169,-27.5,0,0,-0.13605 -65300,3216:479:4,169.5,-27.5,0,0,-0.13605 -65301,3217:370:3,170,-27.5,0,0,-0.13605 -65302,3217:370:4,170.5,-27.5,0,0,-0.13605 -65303,3217:371:3,171,-27.5,0,0,-0.13605 -65304,3217:371:4,171.5,-27.5,0,0,-0.13605 -65305,3217:372:3,172,-27.5,0,0,-0.13605 -65306,3217:372:4,172.5,-27.5,0,0,-0.13605 -65307,3217:373:3,173,-27.5,0,0,-0.13605 -65308,3217:373:4,173.5,-27.5,0,0,-0.13605 -65309,3217:475:3,175,-27.5,0,0,-0.13605 -65310,3217:475:4,175.5,-27.5,0,0,-0.13605 -65311,3217:476:3,176,-27.5,0,0,-0.13605 -65312,3217:476:4,176.5,-27.5,0,0,-0.13605 -65313,3217:477:3,177,-27.5,0,0,-0.13605 -65314,3217:477:4,177.5,-27.5,0,0,-0.13605 -65315,3217:478:3,178,-27.5,0,0,-0.13605 -65316,3217:478:4,178.5,-27.5,0,0,-0.13605 -65317,3217:479:3,179,-27.5,0,0,-0.13605 -65318,3217:479:4,179.5,-27.5,0,0,-0.13605 -65319,3218:370:3,180,-27.5,0,0,-0.13605 -65320,5218:370:1,-180,-27,0,0,-0.13605 -65321,5217:479:2,-179.5,-27,0,0,-0.13605 -65322,5217:479:1,-179,-27,0,0,-0.13605 -65323,5217:478:2,-178.5,-27,0,0,-0.13605 -65324,5217:478:1,-178,-27,0,0,-0.13605 -65325,5217:477:2,-177.5,-27,0,0,-0.13605 -65326,5217:477:1,-177,-27,0,0,-0.13605 -65327,5217:476:2,-176.5,-27,0,0,-0.13605 -65328,5217:476:1,-176,-27,0,0,-0.13605 -65329,5217:475:2,-175.5,-27,0,0,-0.13605 -65330,5217:475:1,-175,-27,0,0,-0.13605 -65331,5217:374:2,-174.5,-27,0,0,-0.13605 -65332,5217:374:1,-174,-27,0,0,-0.13605 -65333,5217:373:2,-173.5,-27,0,0,-0.13605 -65334,5217:373:1,-173,-27,0,0,-0.13605 -65335,5217:372:2,-172.5,-27,0,0,-0.13605 -65336,5217:372:1,-172,-27,0,0,-0.13605 -65337,5217:371:2,-171.5,-27,0,0,-0.13605 -65338,5217:371:1,-171,-27,0,0,-0.13605 -65339,5217:370:2,-170.5,-27,0,0,-0.13605 -65340,5217:370:1,-170,-27,0,0,-0.13605 -65341,5216:479:2,-169.5,-27,0,0,-0.13605 -65342,5216:479:1,-169,-27,0,0,-0.13605 -65343,5216:478:2,-168.5,-27,0,0,-0.13605 -65344,5216:478:1,-168,-27,0,0,-0.13605 -65345,5216:477:2,-167.5,-27,0,0,-0.13605 -65346,5216:477:1,-167,-27,0,0,-0.13605 -65347,5216:476:2,-166.5,-27,0,0,-0.13605 -65348,5216:476:1,-166,-27,0,0,-0.13605 -65349,5216:475:2,-165.5,-27,0,0,-0.13605 -65350,5216:475:1,-165,-27,0,0,-0.13605 -65351,5216:374:2,-164.5,-27,0,0,-0.13605 -65352,5216:374:1,-164,-27,0,0,-0.13605 -65353,5216:373:2,-163.5,-27,0,0,-0.13605 -65354,5216:373:1,-163,-27,0,0,-0.13605 -65355,5216:372:2,-162.5,-27,0,0,-0.13605 -65356,5216:372:1,-162,-27,0,0,-0.13605 -65357,5216:371:2,-161.5,-27,0,0,-0.13605 -65358,5216:371:1,-161,-27,0,0,-0.13605 -65359,5216:370:2,-160.5,-27,0,0,-0.13605 -65360,5216:370:1,-160,-27,0,0,-0.13605 -65361,5215:479:2,-159.5,-27,0,0,-0.13605 -65362,5215:479:1,-159,-27,0,0,-0.13605 -65363,5215:478:2,-158.5,-27,0,0,-0.13605 -65364,5215:478:1,-158,-27,0,0,-0.13605 -65365,5215:477:2,-157.5,-27,0,0,-0.13605 -65366,5215:477:1,-157,-27,0,0,-0.13605 -65367,5215:476:2,-156.5,-27,0,0,-0.13605 -65368,5215:476:1,-156,-27,0,0,-0.13605 -65369,5215:475:2,-155.5,-27,0,0,-0.13605 -65370,5215:475:1,-155,-27,0,0,-0.13605 -65371,5215:374:2,-154.5,-27,0,0,-0.13605 -65372,5215:374:1,-154,-27,0,0,-0.13605 -65373,5215:373:2,-153.5,-27,0,0,-0.13605 -65374,5215:373:1,-153,-27,0,0,-0.13605 -65375,5215:372:2,-152.5,-27,0,0,-0.13605 -65376,5215:372:1,-152,-27,0,0,-0.13605 -65377,5215:371:2,-151.5,-27,0,0,-0.13605 -65378,5215:371:1,-151,-27,0,0,-0.13605 -65379,5215:370:2,-150.5,-27,0,0,-0.13605 -65380,5215:370:1,-150,-27,0,0,-0.13605 -65381,5214:479:2,-149.5,-27,0,0,-0.13605 -65382,5214:479:1,-149,-27,0,0,-0.13605 -65383,5214:478:2,-148.5,-27,0,0,-0.13605 -65384,5214:478:1,-148,-27,0,0,-0.13605 -65385,5214:477:2,-147.5,-27,0,0,-0.13605 -65386,5214:477:1,-147,-27,0,0,-0.13605 -65387,5214:476:2,-146.5,-27,0,0,-0.13605 -65388,5214:476:1,-146,-27,0,0,-0.13605 -65389,5214:475:2,-145.5,-27,0,0,-0.13605 -65390,5214:475:1,-145,-27,0,0,-0.13605 -65391,5214:374:2,-144.5,-27,0,0,-0.13605 -65392,5214:374:1,-144,-27,0,0,-0.13605 -65393,5214:373:2,-143.5,-27,0,0,-0.13605 -65394,5214:373:1,-143,-27,0,0,-0.13605 -65395,5214:372:2,-142.5,-27,0,0,-0.13605 -65396,5214:372:1,-142,-27,0,0,-0.13605 -65397,5214:371:2,-141.5,-27,0,0,-0.13605 -65398,5214:371:1,-141,-27,0,0,-0.13605 -65399,5214:370:2,-140.5,-27,0,0,-0.13605 -65400,5214:370:1,-140,-27,0,0,-0.13605 -65401,5213:479:2,-139.5,-27,0,0,-0.13605 -65402,5213:479:1,-139,-27,0,0,-0.13605 -65403,5213:478:2,-138.5,-27,0,0,-0.13605 -65404,5213:478:1,-138,-27,0,0,-0.13605 -65405,5213:477:2,-137.5,-27,0,0,-0.13605 -65406,5213:477:1,-137,-27,0,0,-0.13605 -65407,5213:476:2,-136.5,-27,0,0,-0.13605 -65408,5213:476:1,-136,-27,0,0,-0.13605 -65409,5213:475:2,-135.5,-27,0,0,-0.13605 -65410,5213:475:1,-135,-27,0,0,-0.13605 -65411,5213:374:2,-134.5,-27,0,0,-0.13605 -65412,5213:374:1,-134,-27,0,0,-0.13605 -65413,5213:373:2,-133.5,-27,0,0,-0.13605 -65414,5213:373:1,-133,-27,0,0,-0.13605 -65415,5213:372:2,-132.5,-27,0,0,-0.13605 -65416,5213:372:1,-132,-27,0,0,-0.13605 -65417,5213:371:2,-131.5,-27,0,0,-0.13605 -65418,5213:371:1,-131,-27,0,0,-0.13605 -65419,5213:370:2,-130.5,-27,0,0,-0.13605 -65420,5213:370:1,-130,-27,0,0,-0.13605 -65421,5212:479:2,-129.5,-27,0,0,-0.13605 -65422,5212:479:1,-129,-27,0,0,-0.13605 -65423,5212:478:2,-128.5,-27,0,0,-0.13605 -65424,5212:478:1,-128,-27,0,0,-0.13605 -65425,5212:477:2,-127.5,-27,0,0,-0.13605 -65426,5212:477:1,-127,-27,0,0,-0.13605 -65427,5212:476:2,-126.5,-27,0,0,-0.13605 -65428,5212:476:1,-126,-27,0,0,-0.13605 -65429,5212:475:2,-125.5,-27,0,0,-0.13605 -65430,5212:475:1,-125,-27,0,0,-0.13605 -65431,5212:374:2,-124.5,-27,0,0,-0.13605 -65432,5212:374:1,-124,-27,0,0,-0.13605 -65433,5212:373:2,-123.5,-27,0,0,-0.13605 -65434,5212:373:1,-123,-27,0,0,-0.13605 -65435,5212:372:2,-122.5,-27,0,0,-0.13605 -65436,5212:372:1,-122,-27,0,0,-0.13605 -65437,5212:371:2,-121.5,-27,0,0,-0.13605 -65438,5212:371:1,-121,-27,0,0,-0.13605 -65439,5212:370:2,-120.5,-27,0,0,-0.13605 -65440,5212:370:1,-120,-27,0,0,-0.13605 -65441,5211:479:2,-119.5,-27,0,0,-0.13605 -65442,5211:479:1,-119,-27,0,0,-0.13605 -65443,5211:478:2,-118.5,-27,0,0,-0.13605 -65444,5211:478:1,-118,-27,0,0,-0.13605 -65445,5211:477:2,-117.5,-27,0,0,-0.13605 -65446,5211:477:1,-117,-27,0,0,-0.13605 -65447,5211:476:2,-116.5,-27,0,0,-0.13605 -65448,5211:476:1,-116,-27,0,0,-0.13605 -65449,5211:475:2,-115.5,-27,0,0,-0.13605 -65450,5211:475:1,-115,-27,0,0,-0.13605 -65451,5211:374:2,-114.5,-27,0,0,-0.13605 -65452,5211:374:1,-114,-27,0,0,-0.13605 -65453,5211:373:2,-113.5,-27,0,0,-0.13605 -65454,5211:373:1,-113,-27,0,0,-0.13605 -65455,5211:372:2,-112.5,-27,0,0,-0.13605 -65456,5211:372:1,-112,-27,0,0,-0.13605 -65457,5211:371:2,-111.5,-27,0,0,-0.13605 -65458,5211:371:1,-111,-27,0,0,-0.13605 -65459,5211:370:2,-110.5,-27,0,0,-0.13605 -65460,5211:370:1,-110,-27,0,0,-0.13605 -65461,5210:479:2,-109.5,-27,0,0,-0.13605 -65462,5210:479:1,-109,-27,0,0,-0.13605 -65463,5210:478:2,-108.5,-27,0,0,-0.13605 -65464,5210:478:1,-108,-27,0,0,-0.13605 -65465,5210:477:2,-107.5,-27,0,0,-0.13605 -65466,5210:477:1,-107,-27,0,0,-0.13605 -65467,5210:476:2,-106.5,-27,0,0,-0.13605 -65468,5210:476:1,-106,-27,0,0,-0.13605 -65469,5210:475:2,-105.5,-27,0,0,-0.13605 -65470,5210:475:1,-105,-27,0,0,-0.13605 -65471,5210:374:2,-104.5,-27,0,0,-0.13605 -65472,5210:374:1,-104,-27,0,0,-0.13605 -65473,5210:373:2,-103.5,-27,0,0,-0.13605 -65474,5210:373:1,-103,-27,0,0,-0.13605 -65475,5210:372:2,-102.5,-27,0,0,-0.13605 -65476,5210:372:1,-102,-27,0,0,-0.13605 -65477,5210:371:2,-101.5,-27,0,0,-0.13605 -65478,5210:371:1,-101,-27,0,0,-0.13605 -65479,5210:370:2,-100.5,-27,0,0,-0.13605 -65480,5210:370:1,-100,-27,0,0,-0.13605 -65481,5209:479:2,-99.5,-27,0,0,-0.13605 -65482,5209:479:1,-99,-27,0,0,-0.13605 -65483,5209:478:2,-98.5,-27,0,0,-0.13605 -65484,5209:478:1,-98,-27,0,0,-0.13605 -65485,5209:477:2,-97.5,-27,0,0,-0.13605 -65486,5209:477:1,-97,-27,0,0,-0.13605 -65487,5209:476:2,-96.5,-27,0,0,-0.13605 -65488,5209:476:1,-96,-27,0,0,-0.13605 -65489,5209:475:2,-95.5,-27,0,0,-0.13605 -65490,5209:475:1,-95,-27,0,0,-0.13605 -65491,5209:374:2,-94.5,-27,0,0,-0.13605 -65492,5209:374:1,-94,-27,0,0,-0.13605 -65493,5209:373:2,-93.5,-27,0,0,-0.13605 -65494,5209:373:1,-93,-27,0,0,-0.13605 -65495,5209:372:2,-92.5,-27,0,0,-0.13605 -65496,5209:372:1,-92,-27,0,0,-0.13605 -65497,5209:371:2,-91.5,-27,0,0,-0.13605 -65498,5209:371:1,-91,-27,0,0,-0.13605 -65499,5209:370:2,-90.5,-27,0,0,-0.13605 -65500,5209:370:1,-90,-27,0,0,-0.13605 -65501,5208:479:2,-89.5,-27,0,0,-0.13605 -65502,5208:479:1,-89,-27,0,0,-0.13605 -65503,5208:478:2,-88.5,-27,0,0,-0.13605 -65504,5208:478:1,-88,-27,0,0,-0.13605 -65505,5208:477:2,-87.5,-27,0,0,-0.13605 -65506,5208:477:1,-87,-27,0,0,-0.13605 -65507,5208:476:2,-86.5,-27,0,0,-0.13605 -65508,5208:476:1,-86,-27,0,0,-0.13605 -65509,5208:475:2,-85.5,-27,0,0,-0.13605 -65510,5208:475:1,-85,-27,0,0,-0.13605 -65511,5208:374:2,-84.5,-27,0,0,-0.13605 -65512,5208:374:1,-84,-27,0,0,-0.13605 -65513,5208:373:2,-83.5,-27,0,0,-0.13605 -65514,5208:373:1,-83,-27,0,0,-0.13605 -65515,5208:372:2,-82.5,-27,0,0,-0.13605 -65516,5208:372:1,-82,-27,0,0,-0.13605 -65517,5208:371:2,-81.5,-27,0,0,-0.13605 -65518,5208:371:1,-81,-27,0,0,-0.13605 -65519,5208:370:2,-80.5,-27,0,0,-0.13605 -65520,5208:370:1,-80,-27,0,0,-0.13605 -65521,5207:479:2,-79.5,-27,0,0,-0.13605 -65522,5207:479:1,-79,-27,0,0,-0.13605 -65523,5207:478:2,-78.5,-27,0,0,-0.13605 -65524,5207:478:1,-78,-27,0,0,-0.13605 -65525,5207:477:2,-77.5,-27,0,0,-0.13605 -65526,5207:477:1,-77,-27,0,0,-0.13605 -65527,5207:476:2,-76.5,-27,0,0,-0.13605 -65528,5207:476:1,-76,-27,0,0,-0.13605 -65529,5207:475:2,-75.5,-27,0,0,-0.13605 -65530,5207:475:1,-75,-27,0,0,-0.13605 -65531,5207:374:2,-74.5,-27,0,0,-0.13605 -65532,5207:374:1,-74,-27,0,0,-0.13605 -65533,5207:373:2,-73.5,-27,0,0,-0.13605 -65534,5207:373:1,-73,-27,0,0,-0.13605 -65535,5207:372:2,-72.5,-27,0,0,-0.13605 -65536,5205:477:1,-57,-27,0,0,-0.13605 -65537,5205:476:2,-56.5,-27,0,0,-0.13605 -65538,5205:476:1,-56,-27,0,0,-0.13605 -65539,5205:475:2,-55.5,-27,0,0,-0.13605 -65540,5205:475:1,-55,-27,0,0,-0.13605 -65541,5205:374:2,-54.5,-27,0,0,-0.13605 -65542,5205:374:1,-54,-27,0,0,-0.13605 -65543,5205:373:2,-53.5,-27,0,0,-0.13605 -65544,5205:373:1,-53,-27,0,0,-0.13605 -65545,5205:372:2,-52.5,-27,0,0,-0.13605 -65546,5205:372:1,-52,-27,0,0,-0.13605 -65547,5205:371:2,-51.5,-27,0,0,-0.13605 -65548,5205:371:1,-51,-27,0,0,-0.13605 -65549,5205:370:2,-50.5,-27,0,0,-0.13605 -65550,5205:370:1,-50,-27,0,0,-0.13605 -65551,5204:479:2,-49.5,-27,0,0,-0.13605 -65552,5204:479:1,-49,-27,0,0,-0.13605 -65553,5204:478:2,-48.5,-27,0,0,-0.13605 -65554,5204:478:1,-48,-27,0,0,-0.13605 -65555,5204:477:2,-47.5,-27,0,0,-0.13605 -65556,5204:477:1,-47,-27,0,0,-0.13605 -65557,5204:476:2,-46.5,-27,0,0,-0.13605 -65558,5204:476:1,-46,-27,0,0,-0.13605 -65559,5204:475:2,-45.5,-27,0,0,-0.13605 -65560,5204:475:1,-45,-27,0,0,-0.13605 -65561,5204:374:2,-44.5,-27,0,0,-0.13605 -65562,5204:374:1,-44,-27,0,0,-0.13605 -65563,5204:373:2,-43.5,-27,0,0,-0.13605 -65564,5204:373:1,-43,-27,0,0,-0.13605 -65565,5204:372:2,-42.5,-27,0,0,-0.13605 -65566,5204:372:1,-42,-27,0,0,-0.13605 -65567,5204:371:2,-41.5,-27,0,0,-0.13605 -65568,5204:371:1,-41,-27,0,0,-0.13605 -65569,5204:370:2,-40.5,-27,0,0,-0.13605 -65570,5204:370:1,-40,-27,0,0,-0.13605 -65571,5203:479:2,-39.5,-27,0,0,-0.13605 -65572,5203:479:1,-39,-27,0,0,-0.13605 -65573,5203:478:2,-38.5,-27,0,0,-0.13605 -65574,5203:478:1,-38,-27,0,0,-0.13605 -65575,5203:477:2,-37.5,-27,0,0,-0.13605 -65576,5203:477:1,-37,-27,0,0,-0.13605 -65577,5203:476:2,-36.5,-27,0,0,-0.13605 -65578,5203:476:1,-36,-27,0,0,-0.13605 -65579,5203:475:2,-35.5,-27,0,0,-0.13605 -65580,5203:475:1,-35,-27,0,0,-0.13605 -65581,5203:374:2,-34.5,-27,0,0,-0.13605 -65582,5203:374:1,-34,-27,0,0,-0.13605 -65583,5203:373:2,-33.5,-27,0,0,-0.13605 -65584,5203:373:1,-33,-27,0,0,-0.13605 -65585,5203:372:2,-32.5,-27,0,0,-0.13605 -65586,5203:372:1,-32,-27,0,0,-0.13605 -65587,5203:371:2,-31.5,-27,0,0,-0.13605 -65588,5203:371:1,-31,-27,0,0,-0.13605 -65589,5203:370:2,-30.5,-27,0,0,-0.13605 -65590,5203:370:1,-30,-27,0,0,-0.13605 -65591,5202:479:2,-29.5,-27,0,0,-0.13605 -65592,5202:479:1,-29,-27,0,0,-0.13605 -65593,5202:478:2,-28.5,-27,0,0,-0.13605 -65594,5202:478:1,-28,-27,0,0,-0.13605 -65595,5202:477:2,-27.5,-27,0,0,-0.13605 -65596,5202:477:1,-27,-27,0,0,-0.13605 -65597,5202:476:2,-26.5,-27,0,0,-0.13605 -65598,5202:476:1,-26,-27,0,0,-0.13605 -65599,5202:475:2,-25.5,-27,0,0,-0.13605 -65600,5202:475:1,-25,-27,0,0,-0.13605 -65601,5202:374:2,-24.5,-27,0,0,-0.13605 -65602,5202:374:1,-24,-27,0,0,-0.13605 -65603,5202:373:2,-23.5,-27,0,0,-0.13605 -65604,5202:373:1,-23,-27,0,0,-0.13605 -65605,5202:372:2,-22.5,-27,0,0,-0.13605 -65606,5202:372:1,-22,-27,0,0,-0.13605 -65607,5202:371:2,-21.5,-27,0,0,-0.13605 -65608,5202:371:1,-21,-27,0,0,-0.13605 -65609,5202:370:2,-20.5,-27,0,0,-0.13605 -65610,5202:370:1,-20,-27,0,0,-0.13605 -65611,5201:479:2,-19.5,-27,0,0,-0.13605 -65612,5201:479:1,-19,-27,0,0,-0.13605 -65613,5201:478:2,-18.5,-27,0,0,-0.13605 -65614,5201:478:1,-18,-27,0,0,-0.13605 -65615,5201:477:2,-17.5,-27,0,0,-0.13605 -65616,5201:477:1,-17,-27,0,0,-0.13605 -65617,5201:476:2,-16.5,-27,0,0,-0.13605 -65618,5201:476:1,-16,-27,0,0,-0.13605 -65619,5201:475:2,-15.5,-27,0,0,-0.13605 -65620,5201:475:1,-15,-27,0,0,-0.13605 -65621,5201:374:2,-14.5,-27,0,0,-0.13605 -65622,5201:374:1,-14,-27,0,0,-0.13605 -65623,5201:373:2,-13.5,-27,0,0,-0.13605 -65624,5201:373:1,-13,-27,0,0,-0.13605 -65625,5201:372:2,-12.5,-27,0,0,-0.13605 -65626,5201:372:1,-12,-27,0,0,-0.13605 -65627,5201:371:2,-11.5,-27,0,0,-0.13605 -65628,5201:371:1,-11,-27,0,0,-0.13605 -65629,5201:370:2,-10.5,-27,0,0,-0.13605 -65630,5201:370:1,-10,-27,0,0,-0.13605 -65631,5200:479:2,-9.5,-27,0,0,-0.13605 -65632,5200:479:1,-9,-27,0,0,-0.13605 -65633,5200:478:2,-8.5,-27,0,0,-0.13605 -65634,5200:478:1,-8,-27,0,0,-0.13605 -65635,5200:477:2,-7.5,-27,0,0,-0.13605 -65636,5200:477:1,-7,-27,0,0,-0.13605 -65637,5200:476:2,-6.5,-27,0,0,-0.13605 -65638,5200:476:1,-6,-27,0,0,-0.13605 -65639,5200:475:2,-5.5,-27,0,0,-0.13605 -65640,5200:475:1,-5,-27,0,0,-0.13605 -65641,5200:374:2,-4.5,-27,0,0,-0.13605 -65642,5200:374:1,-4,-27,0,0,-0.13605 -65643,5200:373:2,-3.5,-27,0,0,-0.13605 -65644,5200:373:1,-3,-27,0,0,-0.13605 -65645,5200:372:2,-2.5,-27,0,0,-0.13605 -65646,5200:372:1,-2,-27,0,0,-0.13605 -65647,5200:371:2,-1.5,-27,0,0,-0.13605 -65648,5200:371:1,-1,-27,0,0,-0.13605 -65649,5200:370:2,-0.5,-27,0,0,-0.13605 -65650,3200:370:2,0,-27,0,0,-0.13605 -65651,3200:370:2,0.5,-27,0,0,-0.13605 -65652,3200:371:1,1,-27,0,0,-0.13605 -65653,3200:371:2,1.5,-27,0,0,-0.13605 -65654,3200:372:1,2,-27,0,0,-0.13605 -65655,3200:372:2,2.5,-27,0,0,-0.13605 -65656,3200:373:1,3,-27,0,0,-0.13605 -65657,3200:373:2,3.5,-27,0,0,-0.13605 -65658,3200:374:1,4,-27,0,0,-0.13605 -65659,3200:374:2,4.5,-27,0,0,-0.13605 -65660,3200:475:1,5,-27,0,0,-0.13605 -65661,3200:475:2,5.5,-27,0,0,-0.13605 -65662,3200:476:1,6,-27,0,0,-0.13605 -65663,3200:476:2,6.5,-27,0,0,-0.13605 -65664,3200:477:1,7,-27,0,0,-0.13605 -65665,3200:477:2,7.5,-27,0,0,-0.13605 -65666,3200:478:1,8,-27,0,0,-0.13605 -65667,3200:478:2,8.5,-27,0,0,-0.13605 -65668,3200:479:1,9,-27,0,0,-0.13605 -65669,3200:479:2,9.5,-27,0,0,-0.13605 -65670,3201:370:1,10,-27,0,0,-0.13605 -65671,3201:370:2,10.5,-27,0,0,-0.13605 -65672,3201:371:1,11,-27,0,0,-0.13605 -65673,3201:371:2,11.5,-27,0,0,-0.13605 -65674,3201:372:1,12,-27,0,0,-0.13605 -65675,3201:372:2,12.5,-27,0,0,-0.13605 -65676,3201:373:1,13,-27,0,0,-0.13605 -65677,3201:373:2,13.5,-27,0,0,-0.13605 -65678,3201:374:1,14,-27,0,0,-0.13605 -65679,3201:374:2,14.5,-27,0,0,-0.13605 -65680,3201:475:1,15,-27,0,0,-0.13605 -65681,3201:475:2,15.5,-27,0,0,-0.13605 -65682,3201:476:1,16,-27,0,0,-0.13605 -65683,3201:476:2,16.5,-27,0,0,-0.13605 -65684,3201:477:1,17,-27,0,0,-0.13605 -65685,3201:477:2,17.5,-27,0,0,-0.13605 -65686,3201:478:1,18,-27,0,0,-0.13605 -65687,3201:478:2,18.5,-27,0,0,-0.13605 -65688,3201:479:1,19,-27,0,0,-0.13605 -65689,3201:479:2,19.5,-27,0,0,-0.13605 -65690,3202:370:1,20,-27,0,0,-0.13605 -65691,3202:370:2,20.5,-27,0,0,-0.13605 -65692,3202:371:1,21,-27,0,0,-0.13605 -65693,3202:371:2,21.5,-27,0,0,-0.13605 -65694,3202:372:1,22,-27,0,0,-0.13605 -65695,3202:372:2,22.5,-27,0,0,-0.13605 -65696,3202:373:1,23,-27,0,0,-0.13605 -65697,3202:373:2,23.5,-27,0,0,-0.13605 -65698,3202:374:1,24,-27,0,0,-0.13605 -65699,3202:374:2,24.5,-27,0,0,-0.13605 -65700,3202:475:1,25,-27,0,0,-0.13605 -65701,3202:475:2,25.5,-27,0,0,-0.13605 -65702,3202:476:1,26,-27,0,0,-0.13605 -65703,3202:476:2,26.5,-27,0,0,-0.13605 -65704,3202:477:1,27,-27,0,0,-0.13605 -65705,3202:477:2,27.5,-27,0,0,-0.13605 -65706,3202:478:1,28,-27,0,0,-0.13605 -65707,3202:478:2,28.5,-27,0,0,-0.13605 -65708,3202:479:1,29,-27,0,0,-0.13605 -65709,3202:479:2,29.5,-27,0,0,-0.13605 -65710,3203:370:1,30,-27,0,0,-0.13605 -65711,3203:370:2,30.5,-27,0,0,-0.13605 -65712,3203:371:1,31,-27,0,0,-0.13605 -65713,3203:371:2,31.5,-27,0,0,-0.13605 -65714,3203:372:1,32,-27,0,0,-0.13605 -65715,3203:372:2,32.5,-27,0,0,-0.13605 -65716,3203:373:1,33,-27,0,0,-0.13605 -65717,3203:373:2,33.5,-27,0,0,-0.13605 -65718,3203:374:1,34,-27,0,0,-0.13605 -65719,3203:374:2,34.5,-27,0,0,-0.13605 -65720,3203:475:1,35,-27,0,0,-0.13605 -65721,3203:475:2,35.5,-27,0,0,-0.13605 -65722,3203:476:1,36,-27,0,0,-0.13605 -65723,3203:476:2,36.5,-27,0,0,-0.13605 -65724,3203:477:1,37,-27,0,0,-0.13605 -65725,3203:477:2,37.5,-27,0,0,-0.13605 -65726,3203:478:1,38,-27,0,0,-0.13605 -65727,3203:478:2,38.5,-27,0,0,-0.13605 -65728,3203:479:1,39,-27,0,0,-0.13605 -65729,3203:479:2,39.5,-27,0,0,-0.13605 -65730,3204:370:1,40,-27,0,0,-0.13605 -65731,3204:370:2,40.5,-27,0,0,-0.13605 -65732,3204:371:1,41,-27,0,0,-0.13605 -65733,3204:371:2,41.5,-27,0,0,-0.13605 -65734,3204:372:1,42,-27,0,0,-0.13605 -65735,3204:372:2,42.5,-27,0,0,-0.13605 -65736,3204:373:1,43,-27,0,0,-0.13605 -65737,3204:373:2,43.5,-27,0,0,-0.13605 -65738,3204:374:1,44,-27,0,0,-0.13605 -65739,3204:374:2,44.5,-27,0,0,-0.13605 -65740,3204:475:1,45,-27,0,0,-0.13605 -65741,3204:475:2,45.5,-27,0,0,-0.13605 -65742,3204:476:1,46,-27,0,0,-0.13605 -65743,3204:476:2,46.5,-27,0,0,-0.13605 -65744,3204:477:1,47,-27,0,0,-0.13605 -65745,3204:477:2,47.5,-27,0,0,-0.13605 -65746,3204:478:1,48,-27,0,0,-0.13605 -65747,3204:478:2,48.5,-27,0,0,-0.13605 -65748,3204:479:1,49,-27,0,0,-0.13605 -65749,3204:479:2,49.5,-27,0,0,-0.13605 -65750,3205:370:1,50,-27,0,0,-0.13605 -65751,3205:370:2,50.5,-27,0,0,-0.13605 -65752,3205:371:1,51,-27,0,0,-0.13605 -65753,3205:371:2,51.5,-27,0,0,-0.13605 -65754,3205:372:1,52,-27,0,0,-0.13605 -65755,3205:372:2,52.5,-27,0,0,-0.13605 -65756,3205:373:1,53,-27,0,0,-0.13605 -65757,3205:373:2,53.5,-27,0,0,-0.13605 -65758,3205:374:1,54,-27,0,0,-0.13605 -65759,3205:374:2,54.5,-27,0,0,-0.13605 -65760,3205:475:1,55,-27,0,0,-0.13605 -65761,3205:475:2,55.5,-27,0,0,-0.13605 -65762,3205:476:1,56,-27,0,0,-0.13605 -65763,3205:476:2,56.5,-27,0,0,-0.13605 -65764,3205:477:1,57,-27,0,0,-0.13605 -65765,3205:477:2,57.5,-27,0,0,-0.13605 -65766,3205:478:1,58,-27,0,0,-0.13605 -65767,3205:478:2,58.5,-27,0,0,-0.13605 -65768,3205:479:1,59,-27,0,0,-0.13605 -65769,3205:479:2,59.5,-27,0,0,-0.13605 -65770,3206:370:1,60,-27,0,0,-0.13605 -65771,3206:370:2,60.5,-27,0,0,-0.13605 -65772,3206:371:1,61,-27,0,0,-0.13605 -65773,3206:371:2,61.5,-27,0,0,-0.13605 -65774,3206:372:1,62,-27,0,0,-0.13605 -65775,3206:372:2,62.5,-27,0,0,-0.13605 -65776,3206:373:1,63,-27,0,0,-0.13605 -65777,3206:373:2,63.5,-27,0,0,-0.13605 -65778,3206:374:1,64,-27,0,0,-0.13605 -65779,3206:374:2,64.5,-27,0,0,-0.13605 -65780,3206:475:1,65,-27,0,0,-0.13605 -65781,3206:475:2,65.5,-27,0,0,-0.13605 -65782,3206:476:1,66,-27,0,0,-0.13605 -65783,3206:476:2,66.5,-27,0,0,-0.13605 -65784,3206:477:1,67,-27,0,0,-0.13605 -65785,3206:477:2,67.5,-27,0,0,-0.13605 -65786,3206:478:1,68,-27,0,0,-0.13605 -65787,3206:478:2,68.5,-27,0,0,-0.13605 -65788,3206:479:1,69,-27,0,0,-0.13605 -65789,3206:479:2,69.5,-27,0,0,-0.13605 -65790,3207:370:1,70,-27,0,0,-0.13605 -65791,3207:370:2,70.5,-27,0,0,-0.13605 -65792,3207:371:1,71,-27,0,0,-0.13605 -65793,3207:371:2,71.5,-27,0,0,-0.13605 -65794,3207:372:1,72,-27,0,0,-0.13605 -65795,3207:372:2,72.5,-27,0,0,-0.13605 -65796,3207:373:2,73.5,-27,0,0,-0.13605 -65797,3207:374:1,74,-27,0,0,-0.13605 -65798,3207:374:2,74.5,-27,0,0,-0.13605 -65799,3207:475:1,75,-27,0,0,-0.13605 -65800,3207:475:2,75.5,-27,0,0,-0.13605 -65801,3207:476:1,76,-27,0,0,-0.13605 -65802,3207:476:2,76.5,-27,0,0,-0.13605 -65803,3207:477:1,77,-27,0,0,-0.13605 -65804,3207:477:2,77.5,-27,0,0,-0.13605 -65805,3207:478:1,78,-27,0,0,-0.13605 -65806,3207:478:2,78.5,-27,0,0,-0.13605 -65807,3207:479:1,79,-27,0,0,-0.13605 -65808,3207:479:2,79.5,-27,0,0,-0.13605 -65809,3208:370:1,80,-27,0,0,-0.13605 -65810,3208:370:2,80.5,-27,0,0,-0.13605 -65811,3208:371:1,81,-27,0,0,-0.13605 -65812,3208:371:2,81.5,-27,0,0,-0.13605 -65813,3208:372:1,82,-27,0,0,-0.13605 -65814,3208:372:2,82.5,-27,0,0,-0.13605 -65815,3208:373:1,83,-27,0,0,-0.13605 -65816,3208:373:2,83.5,-27,0,0,-0.13605 -65817,3208:374:1,84,-27,0,0,-0.13605 -65818,3208:374:2,84.5,-27,0,0,-0.13605 -65819,3208:475:1,85,-27,0,0,-0.13605 -65820,3208:475:2,85.5,-27,0,0,-0.13605 -65821,3208:476:1,86,-27,0,0,-0.13605 -65822,3208:476:2,86.5,-27,0,0,-0.13605 -65823,3208:477:1,87,-27,0,0,-0.13605 -65824,3208:477:2,87.5,-27,0,0,-0.13605 -65825,3208:478:1,88,-27,0,0,-0.13605 -65826,3208:478:2,88.5,-27,0,0,-0.13605 -65827,3208:479:1,89,-27,0,0,-0.13605 -65828,3208:479:2,89.5,-27,0,0,-0.13605 -65829,3209:370:1,90,-27,0,0,-0.13605 -65830,3209:370:2,90.5,-27,0,0,-0.13605 -65831,3209:371:1,91,-27,0,0,-0.13605 -65832,3209:371:2,91.5,-27,0,0,-0.13605 -65833,3209:372:1,92,-27,0,0,-0.13605 -65834,3209:372:2,92.5,-27,0,0,-0.13605 -65835,3209:373:1,93,-27,0,0,-0.13605 -65836,3209:373:2,93.5,-27,0,0,-0.13605 -65837,3209:374:1,94,-27,0,0,-0.13605 -65838,3209:374:2,94.5,-27,0,0,-0.13605 -65839,3209:475:1,95,-27,0,0,-0.13605 -65840,3209:475:2,95.5,-27,0,0,-0.13605 -65841,3209:476:1,96,-27,0,0,-0.13605 -65842,3209:476:2,96.5,-27,0,0,-0.13605 -65843,3209:477:1,97,-27,0,0,-0.13605 -65844,3209:477:2,97.5,-27,0,0,-0.13605 -65845,3209:478:1,98,-27,0,0,-0.13605 -65846,3209:478:2,98.5,-27,0,0,-0.13605 -65847,3209:479:1,99,-27,0,0,-0.13605 -65848,3209:479:2,99.5,-27,0,0,-0.13605 -65849,3210:370:1,100,-27,0,0,-0.13605 -65850,3210:370:2,100.5,-27,0,0,-0.13605 -65851,3210:371:1,101,-27,0,0,-0.13605 -65852,3210:371:2,101.5,-27,0,0,-0.13605 -65853,3210:372:1,102,-27,0,0,-0.13605 -65854,3210:372:2,102.5,-27,0,0,-0.13605 -65855,3210:373:1,103,-27,0,0,-0.13605 -65856,3210:373:2,103.5,-27,0,0,-0.13605 -65857,3210:374:1,104,-27,0,0,-0.13605 -65858,3210:374:2,104.5,-27,0,0,-0.13605 -65859,3210:475:1,105,-27,0,0,-0.13605 -65860,3210:475:2,105.5,-27,0,0,-0.13605 -65861,3210:476:1,106,-27,0,0,-0.13605 -65862,3210:476:2,106.5,-27,0,0,-0.13605 -65863,3210:477:1,107,-27,0,0,-0.13605 -65864,3210:477:2,107.5,-27,0,0,-0.13605 -65865,3210:478:1,108,-27,0,0,-0.13605 -65866,3210:478:2,108.5,-27,0,0,-0.13605 -65867,3210:479:1,109,-27,0,0,-0.13605 -65868,3210:479:2,109.5,-27,0,0,-0.13605 -65869,3211:370:1,110,-27,0,0,-0.13605 -65870,3211:370:2,110.5,-27,0,0,-0.13605 -65871,3211:371:1,111,-27,0,0,-0.13605 -65872,3211:371:2,111.5,-27,0,0,-0.13605 -65873,3211:372:1,112,-27,0,0,-0.13605 -65874,3211:372:2,112.5,-27,0,0,-0.13605 -65875,3211:373:1,113,-27,0,0,-0.13605 -65876,3211:373:2,113.5,-27,0,0,-0.13605 -65877,3211:374:1,114,-27,0,0,-0.13605 -65878,3211:374:2,114.5,-27,0,0,-0.13605 -65879,3211:475:1,115,-27,0,0,-0.13605 -65880,3211:475:2,115.5,-27,0,0,-0.13605 -65881,3211:476:1,116,-27,0,0,-0.13605 -65882,3211:476:2,116.5,-27,0,0,-0.13605 -65883,3211:477:1,117,-27,0,0,-0.13605 -65884,3211:477:2,117.5,-27,0,0,-0.13605 -65885,3211:478:1,118,-27,0,0,-0.13605 -65886,3211:478:2,118.5,-27,0,0,-0.13605 -65887,3211:479:1,119,-27,0,0,-0.13605 -65888,3211:479:2,119.5,-27,0,0,-0.13605 -65889,3212:370:1,120,-27,0,0,-0.13605 -65890,3212:370:2,120.5,-27,0,0,-0.13605 -65891,3212:371:1,121,-27,0,0,-0.13605 -65892,3212:371:2,121.5,-27,0,0,-0.13605 -65893,3212:372:1,122,-27,0,0,-0.13605 -65894,3212:372:2,122.5,-27,0,0,-0.13605 -65895,3212:373:1,123,-27,0,0,-0.13605 -65896,3212:373:2,123.5,-27,0,0,-0.13605 -65897,3212:374:1,124,-27,0,0,-0.13605 -65898,3212:374:2,124.5,-27,0,0,-0.13605 -65899,3212:475:1,125,-27,0,0,-0.13605 -65900,3212:475:2,125.5,-27,0,0,-0.13605 -65901,3212:476:1,126,-27,0,0,-0.13605 -65902,3212:476:2,126.5,-27,0,0,-0.13605 -65903,3212:477:1,127,-27,0,0,-0.13605 -65904,3212:477:2,127.5,-27,0,0,-0.13605 -65905,3212:478:1,128,-27,0,0,-0.13605 -65906,3212:478:2,128.5,-27,0,0,-0.13605 -65907,3212:479:1,129,-27,0,0,-0.13605 -65908,3212:479:2,129.5,-27,0,0,-0.13605 -65909,3213:370:1,130,-27,0,0,-0.13605 -65910,3213:370:2,130.5,-27,0,0,-0.13605 -65911,3213:371:1,131,-27,0,0,-0.13605 -65912,3213:371:2,131.5,-27,0,0,-0.13605 -65913,3213:372:1,132,-27,0,0,-0.13605 -65914,3213:372:2,132.5,-27,0,0,-0.13605 -65915,3213:373:1,133,-27,0,0,-0.13605 -65916,3213:373:2,133.5,-27,0,0,-0.13605 -65917,3213:374:1,134,-27,0,0,-0.13605 -65918,3213:374:2,134.5,-27,0,0,-0.13605 -65919,3213:475:1,135,-27,0,0,-0.13605 -65920,3213:475:2,135.5,-27,0,0,-0.13605 -65921,3213:476:1,136,-27,0,0,-0.13605 -65922,3213:476:2,136.5,-27,0,0,-0.13605 -65923,3213:477:1,137,-27,0,0,-0.13605 -65924,3213:477:2,137.5,-27,0,0,-0.13605 -65925,3213:478:1,138,-27,0,0,-0.13605 -65926,3213:478:2,138.5,-27,0,0,-0.13605 -65927,3215:371:1,151,-27,0,0,-0.13605 -65928,3215:371:2,151.5,-27,0,0,-0.13605 -65929,3215:372:1,152,-27,0,0,-0.13605 -65930,3215:372:2,152.5,-27,0,0,-0.13605 -65931,3215:373:1,153,-27,0,0,-0.13605 -65932,3215:373:2,153.5,-27,0,0,-0.13605 -65933,3215:374:1,154,-27,0,0,-0.13605 -65934,3215:374:2,154.5,-27,0,0,-0.13605 -65935,3215:475:1,155,-27,0,0,-0.13605 -65936,3215:475:2,155.5,-27,0,0,-0.13605 -65937,3215:476:1,156,-27,0,0,-0.13605 -65938,3215:476:2,156.5,-27,0,0,-0.13605 -65939,3215:477:1,157,-27,0,0,-0.13605 -65940,3215:477:2,157.5,-27,0,0,-0.13605 -65941,3215:478:1,158,-27,0,0,-0.13605 -65942,3215:478:2,158.5,-27,0,0,-0.13605 -65943,3215:479:1,159,-27,0,0,-0.13605 -65944,3215:479:2,159.5,-27,0,0,-0.13605 -65945,3216:370:1,160,-27,0,0,-0.13605 -65946,3216:370:2,160.5,-27,0,0,-0.13605 -65947,3216:371:1,161,-27,0,0,-0.13605 -65948,3216:371:2,161.5,-27,0,0,-0.13605 -65949,3216:372:1,162,-27,0,0,-0.13605 -65950,3216:372:2,162.5,-27,0,0,-0.13605 -65951,3216:373:1,163,-27,0,0,-0.13605 -65952,3216:373:2,163.5,-27,0,0,-0.13605 -65953,3216:374:1,164,-27,0,0,-0.13605 -65954,3216:374:2,164.5,-27,0,0,-0.13605 -65955,3216:475:1,165,-27,0,0,-0.13605 -65956,3216:475:2,165.5,-27,0,0,-0.13605 -65957,3216:476:1,166,-27,0,0,-0.13605 -65958,3216:476:2,166.5,-27,0,0,-0.13605 -65959,3216:477:1,167,-27,0,0,-0.13605 -65960,3216:477:2,167.5,-27,0,0,-0.13605 -65961,3216:478:1,168,-27,0,0,-0.13605 -65962,3216:478:2,168.5,-27,0,0,-0.13605 -65963,3216:479:1,169,-27,0,0,-0.13605 -65964,3216:479:2,169.5,-27,0,0,-0.13605 -65965,3217:370:1,170,-27,0,0,-0.13605 -65966,3217:370:2,170.5,-27,0,0,-0.13605 -65967,3217:371:1,171,-27,0,0,-0.13605 -65968,3217:371:2,171.5,-27,0,0,-0.13605 -65969,3217:372:1,172,-27,0,0,-0.13605 -65970,3217:372:2,172.5,-27,0,0,-0.13605 -65971,3217:373:1,173,-27,0,0,-0.13605 -65972,3217:374:2,174.5,-27,0,0,-0.13605 -65973,3217:475:1,175,-27,0,0,-0.13605 -65974,3217:475:2,175.5,-27,0,0,-0.13605 -65975,3217:476:1,176,-27,0,0,-0.13605 -65976,3217:476:2,176.5,-27,0,0,-0.13605 -65977,3217:477:1,177,-27,0,0,-0.13605 -65978,3217:477:2,177.5,-27,0,0,-0.13605 -65979,3217:478:1,178,-27,0,0,-0.13605 -65980,3217:478:2,178.5,-27,0,0,-0.13605 -65981,3217:479:1,179,-27,0,0,-0.13605 -65982,3217:479:2,179.5,-27,0,0,-0.13605 -65983,3218:370:1,180,-27,0,0,-0.13605 -65984,5218:360:3,-180,-26.5,0,0,-0.13605 -65985,5217:469:4,-179.5,-26.5,0,0,-0.13605 -65986,5217:469:3,-179,-26.5,0,0,-0.13605 -65987,5217:468:4,-178.5,-26.5,0,0,-0.13605 -65988,5217:468:3,-178,-26.5,0,0,-0.13605 -65989,5217:467:4,-177.5,-26.5,0,0,-0.13605 -65990,5217:467:3,-177,-26.5,0,0,-0.13605 -65991,5217:466:4,-176.5,-26.5,0,0,-0.13605 -65992,5217:466:3,-176,-26.5,0,0,-0.13605 -65993,5217:465:4,-175.5,-26.5,0,0,-0.13605 -65994,5217:465:3,-175,-26.5,0,0,-0.13605 -65995,5217:364:4,-174.5,-26.5,0,0,-0.13605 -65996,5217:364:3,-174,-26.5,0,0,-0.13605 -65997,5217:363:4,-173.5,-26.5,0,0,-0.13605 -65998,5217:363:3,-173,-26.5,0,0,-0.13605 -65999,5217:362:4,-172.5,-26.5,0,0,-0.13605 -66000,5217:362:3,-172,-26.5,0,0,-0.13605 -66001,5217:361:4,-171.5,-26.5,0,0,-0.13605 -66002,5217:361:3,-171,-26.5,0,0,-0.13605 -66003,5217:360:4,-170.5,-26.5,0,0,-0.13605 -66004,5217:360:3,-170,-26.5,0,0,-0.13605 -66005,5216:469:4,-169.5,-26.5,0,0,-0.13605 -66006,5216:469:3,-169,-26.5,0,0,-0.13605 -66007,5216:468:4,-168.5,-26.5,0,0,-0.13605 -66008,5216:468:3,-168,-26.5,0,0,-0.13605 -66009,5216:467:4,-167.5,-26.5,0,0,-0.13605 -66010,5216:467:3,-167,-26.5,0,0,-0.13605 -66011,5216:466:4,-166.5,-26.5,0,0,-0.13605 -66012,5216:466:3,-166,-26.5,0,0,-0.13605 -66013,5216:465:4,-165.5,-26.5,0,0,-0.13605 -66014,5216:465:3,-165,-26.5,0,0,-0.13605 -66015,5216:364:4,-164.5,-26.5,0,0,-0.13605 -66016,5216:364:3,-164,-26.5,0,0,-0.13605 -66017,5216:363:4,-163.5,-26.5,0,0,-0.13605 -66018,5216:363:3,-163,-26.5,0,0,-0.13605 -66019,5216:362:4,-162.5,-26.5,0,0,-0.13605 -66020,5216:362:3,-162,-26.5,0,0,-0.13605 -66021,5216:361:4,-161.5,-26.5,0,0,-0.13605 -66022,5216:361:3,-161,-26.5,0,0,-0.13605 -66023,5216:360:4,-160.5,-26.5,0,0,-0.13605 -66024,5216:360:3,-160,-26.5,0,0,-0.13605 -66025,5215:469:4,-159.5,-26.5,0,0,-0.13605 -66026,5215:469:3,-159,-26.5,0,0,-0.13605 -66027,5215:468:4,-158.5,-26.5,0,0,-0.13605 -66028,5215:468:3,-158,-26.5,0,0,-0.13605 -66029,5215:467:4,-157.5,-26.5,0,0,-0.13605 -66030,5215:467:3,-157,-26.5,0,0,-0.13605 -66031,5215:466:4,-156.5,-26.5,0,0,-0.13605 -66032,5215:466:3,-156,-26.5,0,0,-0.13605 -66033,5215:465:4,-155.5,-26.5,0,0,-0.13605 -66034,5215:465:3,-155,-26.5,0,0,-0.13605 -66035,5215:364:4,-154.5,-26.5,0,0,-0.13605 -66036,5215:364:3,-154,-26.5,0,0,-0.13605 -66037,5215:363:4,-153.5,-26.5,0,0,-0.13605 -66038,5215:363:3,-153,-26.5,0,0,-0.13605 -66039,5215:362:4,-152.5,-26.5,0,0,-0.13605 -66040,5215:362:3,-152,-26.5,0,0,-0.13605 -66041,5215:361:4,-151.5,-26.5,0,0,-0.13605 -66042,5215:361:3,-151,-26.5,0,0,-0.13605 -66043,5215:360:4,-150.5,-26.5,0,0,-0.13605 -66044,5215:360:3,-150,-26.5,0,0,-0.13605 -66045,5214:469:4,-149.5,-26.5,0,0,-0.13605 -66046,5214:469:3,-149,-26.5,0,0,-0.13605 -66047,5214:468:4,-148.5,-26.5,0,0,-0.13605 -66048,5214:468:3,-148,-26.5,0,0,-0.13605 -66049,5214:467:4,-147.5,-26.5,0,0,-0.13605 -66050,5214:467:3,-147,-26.5,0,0,-0.13605 -66051,5214:466:4,-146.5,-26.5,0,0,-0.13605 -66052,5214:466:3,-146,-26.5,0,0,-0.13605 -66053,5214:465:4,-145.5,-26.5,0,0,-0.13605 -66054,5214:465:3,-145,-26.5,0,0,-0.13605 -66055,5214:364:4,-144.5,-26.5,0,0,-0.13605 -66056,5214:364:3,-144,-26.5,0,0,-0.13605 -66057,5214:363:4,-143.5,-26.5,0,0,-0.13605 -66058,5214:363:3,-143,-26.5,0,0,-0.13605 -66059,5214:362:4,-142.5,-26.5,0,0,-0.13605 -66060,5214:362:3,-142,-26.5,0,0,-0.13605 -66061,5214:361:4,-141.5,-26.5,0,0,-0.13605 -66062,5214:361:3,-141,-26.5,0,0,-0.13605 -66063,5214:360:4,-140.5,-26.5,0,0,-0.13605 -66064,5214:360:3,-140,-26.5,0,0,-0.13605 -66065,5213:469:4,-139.5,-26.5,0,0,-0.13605 -66066,5213:469:3,-139,-26.5,0,0,-0.13605 -66067,5213:468:4,-138.5,-26.5,0,0,-0.13605 -66068,5213:468:3,-138,-26.5,0,0,-0.13605 -66069,5213:467:4,-137.5,-26.5,0,0,-0.13605 -66070,5213:467:3,-137,-26.5,0,0,-0.13605 -66071,5213:466:4,-136.5,-26.5,0,0,-0.13605 -66072,5213:466:3,-136,-26.5,0,0,-0.13605 -66073,5213:465:4,-135.5,-26.5,0,0,-0.13605 -66074,5213:465:3,-135,-26.5,0,0,-0.13605 -66075,5213:364:4,-134.5,-26.5,0,0,-0.13605 -66076,5213:364:3,-134,-26.5,0,0,-0.13605 -66077,5213:363:4,-133.5,-26.5,0,0,-0.13605 -66078,5213:363:3,-133,-26.5,0,0,-0.13605 -66079,5213:362:4,-132.5,-26.5,0,0,-0.13605 -66080,5213:362:3,-132,-26.5,0,0,-0.13605 -66081,5213:361:4,-131.5,-26.5,0,0,-0.13605 -66082,5213:361:3,-131,-26.5,0,0,-0.13605 -66083,5213:360:4,-130.5,-26.5,0,0,-0.13605 -66084,5213:360:3,-130,-26.5,0,0,-0.13605 -66085,5212:469:4,-129.5,-26.5,0,0,-0.13605 -66086,5212:469:3,-129,-26.5,0,0,-0.13605 -66087,5212:468:4,-128.5,-26.5,0,0,-0.13605 -66088,5212:468:3,-128,-26.5,0,0,-0.13605 -66089,5212:467:4,-127.5,-26.5,0,0,-0.13605 -66090,5212:467:3,-127,-26.5,0,0,-0.13605 -66091,5212:466:4,-126.5,-26.5,0,0,-0.13605 -66092,5212:466:3,-126,-26.5,0,0,-0.13605 -66093,5212:465:4,-125.5,-26.5,0,0,-0.13605 -66094,5212:465:3,-125,-26.5,0,0,-0.13605 -66095,5212:364:4,-124.5,-26.5,0,0,-0.13605 -66096,5212:364:3,-124,-26.5,0,0,-0.13605 -66097,5212:363:4,-123.5,-26.5,0,0,-0.13605 -66098,5212:363:3,-123,-26.5,0,0,-0.13605 -66099,5212:362:4,-122.5,-26.5,0,0,-0.13605 -66100,5212:362:3,-122,-26.5,0,0,-0.13605 -66101,5212:361:4,-121.5,-26.5,0,0,-0.13605 -66102,5212:361:3,-121,-26.5,0,0,-0.13605 -66103,5212:360:4,-120.5,-26.5,0,0,-0.13605 -66104,5212:360:3,-120,-26.5,0,0,-0.13605 -66105,5211:469:4,-119.5,-26.5,0,0,-0.13605 -66106,5211:469:3,-119,-26.5,0,0,-0.13605 -66107,5211:468:4,-118.5,-26.5,0,0,-0.13605 -66108,5211:468:3,-118,-26.5,0,0,-0.13605 -66109,5211:467:4,-117.5,-26.5,0,0,-0.13605 -66110,5211:467:3,-117,-26.5,0,0,-0.13605 -66111,5211:466:4,-116.5,-26.5,0,0,-0.13605 -66112,5211:466:3,-116,-26.5,0,0,-0.13605 -66113,5211:465:4,-115.5,-26.5,0,0,-0.13605 -66114,5211:465:3,-115,-26.5,0,0,-0.13605 -66115,5211:364:4,-114.5,-26.5,0,0,-0.13605 -66116,5211:364:3,-114,-26.5,0,0,-0.13605 -66117,5211:363:4,-113.5,-26.5,0,0,-0.13605 -66118,5211:363:3,-113,-26.5,0,0,-0.13605 -66119,5211:362:4,-112.5,-26.5,0,0,-0.13605 -66120,5211:362:3,-112,-26.5,0,0,-0.13605 -66121,5211:361:4,-111.5,-26.5,0,0,-0.13605 -66122,5211:361:3,-111,-26.5,0,0,-0.13605 -66123,5211:360:4,-110.5,-26.5,0,0,-0.13605 -66124,5211:360:3,-110,-26.5,0,0,-0.13605 -66125,5210:469:4,-109.5,-26.5,0,0,-0.13605 -66126,5210:469:3,-109,-26.5,0,0,-0.13605 -66127,5210:468:4,-108.5,-26.5,0,0,-0.13605 -66128,5210:468:3,-108,-26.5,0,0,-0.13605 -66129,5210:467:4,-107.5,-26.5,0,0,-0.13605 -66130,5210:467:3,-107,-26.5,0,0,-0.13605 -66131,5210:466:4,-106.5,-26.5,0,0,-0.13605 -66132,5210:466:3,-106,-26.5,0,0,-0.13605 -66133,5210:465:4,-105.5,-26.5,0,0,-0.13605 -66134,5210:465:3,-105,-26.5,0,0,-0.13605 -66135,5210:364:4,-104.5,-26.5,0,0,-0.13605 -66136,5210:364:3,-104,-26.5,0,0,-0.13605 -66137,5210:363:4,-103.5,-26.5,0,0,-0.13605 -66138,5210:363:3,-103,-26.5,0,0,-0.13605 -66139,5210:362:4,-102.5,-26.5,0,0,-0.13605 -66140,5210:362:3,-102,-26.5,0,0,-0.13605 -66141,5210:361:4,-101.5,-26.5,0,0,-0.13605 -66142,5210:361:3,-101,-26.5,0,0,-0.13605 -66143,5210:360:4,-100.5,-26.5,0,0,-0.13605 -66144,5210:360:3,-100,-26.5,0,0,-0.13605 -66145,5209:469:4,-99.5,-26.5,0,0,-0.13605 -66146,5209:469:3,-99,-26.5,0,0,-0.13605 -66147,5209:468:4,-98.5,-26.5,0,0,-0.13605 -66148,5209:468:3,-98,-26.5,0,0,-0.13605 -66149,5209:467:4,-97.5,-26.5,0,0,-0.13605 -66150,5209:467:3,-97,-26.5,0,0,-0.13605 -66151,5209:466:4,-96.5,-26.5,0,0,-0.13605 -66152,5209:466:3,-96,-26.5,0,0,-0.13605 -66153,5209:465:4,-95.5,-26.5,0,0,-0.13605 -66154,5209:465:3,-95,-26.5,0,0,-0.13605 -66155,5209:364:4,-94.5,-26.5,0,0,-0.13605 -66156,5209:364:3,-94,-26.5,0,0,-0.13605 -66157,5209:363:4,-93.5,-26.5,0,0,-0.13605 -66158,5209:363:3,-93,-26.5,0,0,-0.13605 -66159,5209:362:4,-92.5,-26.5,0,0,-0.13605 -66160,5209:362:3,-92,-26.5,0,0,-0.13605 -66161,5209:361:4,-91.5,-26.5,0,0,-0.13605 -66162,5209:361:3,-91,-26.5,0,0,-0.13605 -66163,5209:360:4,-90.5,-26.5,0,0,-0.13605 -66164,5209:360:3,-90,-26.5,0,0,-0.13605 -66165,5208:469:4,-89.5,-26.5,0,0,-0.13605 -66166,5208:469:3,-89,-26.5,0,0,-0.13605 -66167,5208:468:4,-88.5,-26.5,0,0,-0.13605 -66168,5208:468:3,-88,-26.5,0,0,-0.13605 -66169,5208:467:4,-87.5,-26.5,0,0,-0.13605 -66170,5208:467:3,-87,-26.5,0,0,-0.13605 -66171,5208:466:4,-86.5,-26.5,0,0,-0.13605 -66172,5208:466:3,-86,-26.5,0,0,-0.13605 -66173,5208:465:4,-85.5,-26.5,0,0,-0.13605 -66174,5208:465:3,-85,-26.5,0,0,-0.13605 -66175,5208:364:4,-84.5,-26.5,0,0,-0.13605 -66176,5208:364:3,-84,-26.5,0,0,-0.13605 -66177,5208:363:4,-83.5,-26.5,0,0,-0.13605 -66178,5208:363:3,-83,-26.5,0,0,-0.13605 -66179,5208:362:4,-82.5,-26.5,0,0,-0.13605 -66180,5208:362:3,-82,-26.5,0,0,-0.13605 -66181,5208:361:4,-81.5,-26.5,0,0,-0.13605 -66182,5208:361:3,-81,-26.5,0,0,-0.13605 -66183,5208:360:4,-80.5,-26.5,0,0,-0.13605 -66184,5208:360:3,-80,-26.5,0,0,-0.13605 -66185,5207:469:4,-79.5,-26.5,0,0,-0.13605 -66186,5207:469:3,-79,-26.5,0,0,-0.13605 -66187,5207:468:4,-78.5,-26.5,0,0,-0.13605 -66188,5207:468:3,-78,-26.5,0,0,-0.13605 -66189,5207:467:4,-77.5,-26.5,0,0,-0.13605 -66190,5207:467:3,-77,-26.5,0,0,-0.13605 -66191,5207:466:4,-76.5,-26.5,0,0,-0.13605 -66192,5207:466:3,-76,-26.5,0,0,-0.13605 -66193,5207:465:4,-75.5,-26.5,0,0,-0.13605 -66194,5207:465:3,-75,-26.5,0,0,-0.13605 -66195,5207:364:4,-74.5,-26.5,0,0,-0.13605 -66196,5207:364:3,-74,-26.5,0,0,-0.13605 -66197,5207:363:4,-73.5,-26.5,0,0,-0.13605 -66198,5207:363:3,-73,-26.5,0,0,-0.13605 -66199,5207:362:4,-72.5,-26.5,0,0,-0.13605 -66200,5205:468:3,-58,-26.5,0,0,-0.13605 -66201,5205:467:4,-57.5,-26.5,0,0,-0.13605 -66202,5205:467:3,-57,-26.5,0,0,-0.13605 -66203,5205:364:3,-54,-26.5,0,0,-0.13605 -66204,5205:363:4,-53.5,-26.5,0,0,-0.13605 -66205,5205:363:3,-53,-26.5,0,0,-0.13605 -66206,5205:362:4,-52.5,-26.5,0,0,-0.13605 -66207,5205:362:3,-52,-26.5,0,0,-0.13605 -66208,5205:361:4,-51.5,-26.5,0,0,-0.13605 -66209,5205:361:3,-51,-26.5,0,0,-0.13605 -66210,5205:360:4,-50.5,-26.5,0,0,-0.13605 -66211,5205:360:3,-50,-26.5,0,0,-0.13605 -66212,5204:469:4,-49.5,-26.5,0,0,-0.13605 -66213,5204:469:3,-49,-26.5,0,0,-0.13605 -66214,5204:468:4,-48.5,-26.5,0,0,-0.13605 -66215,5204:468:3,-48,-26.5,0,0,-0.13605 -66216,5204:467:4,-47.5,-26.5,0,0,-0.13605 -66217,5204:467:3,-47,-26.5,0,0,-0.13605 -66218,5204:466:4,-46.5,-26.5,0,0,-0.13605 -66219,5204:466:3,-46,-26.5,0,0,-0.13605 -66220,5204:465:4,-45.5,-26.5,0,0,-0.13605 -66221,5204:465:3,-45,-26.5,0,0,-0.13605 -66222,5204:364:4,-44.5,-26.5,0,0,-0.13605 -66223,5204:364:3,-44,-26.5,0,0,-0.13605 -66224,5204:363:4,-43.5,-26.5,0,0,-0.13605 -66225,5204:363:3,-43,-26.5,0,0,-0.13605 -66226,5204:362:4,-42.5,-26.5,0,0,-0.13605 -66227,5204:362:3,-42,-26.5,0,0,-0.13605 -66228,5204:361:4,-41.5,-26.5,0,0,-0.13605 -66229,5204:361:3,-41,-26.5,0,0,-0.13605 -66230,5204:360:4,-40.5,-26.5,0,0,-0.13605 -66231,5204:360:3,-40,-26.5,0,0,-0.13605 -66232,5203:469:4,-39.5,-26.5,0,0,-0.13605 -66233,5203:469:3,-39,-26.5,0,0,-0.13605 -66234,5203:468:4,-38.5,-26.5,0,0,-0.13605 -66235,5203:468:3,-38,-26.5,0,0,-0.13605 -66236,5203:467:4,-37.5,-26.5,0,0,-0.13605 -66237,5203:467:3,-37,-26.5,0,0,-0.13605 -66238,5203:466:4,-36.5,-26.5,0,0,-0.13605 -66239,5203:466:3,-36,-26.5,0,0,-0.13605 -66240,5203:465:4,-35.5,-26.5,0,0,-0.13605 -66241,5203:465:3,-35,-26.5,0,0,-0.13605 -66242,5203:364:4,-34.5,-26.5,0,0,-0.13605 -66243,5203:364:3,-34,-26.5,0,0,-0.13605 -66244,5203:363:4,-33.5,-26.5,0,0,-0.13605 -66245,5203:363:3,-33,-26.5,0,0,-0.13605 -66246,5203:362:4,-32.5,-26.5,0,0,-0.13605 -66247,5203:362:3,-32,-26.5,0,0,-0.13605 -66248,5203:361:4,-31.5,-26.5,0,0,-0.13605 -66249,5203:361:3,-31,-26.5,0,0,-0.13605 -66250,5203:360:4,-30.5,-26.5,0,0,-0.13605 -66251,5203:360:3,-30,-26.5,0,0,-0.13605 -66252,5202:469:4,-29.5,-26.5,0,0,-0.13605 -66253,5202:469:3,-29,-26.5,0,0,-0.13605 -66254,5202:468:4,-28.5,-26.5,0,0,-0.13605 -66255,5202:468:3,-28,-26.5,0,0,-0.13605 -66256,5202:467:4,-27.5,-26.5,0,0,-0.13605 -66257,5202:467:3,-27,-26.5,0,0,-0.13605 -66258,5202:466:4,-26.5,-26.5,0,0,-0.13605 -66259,5202:466:3,-26,-26.5,0,0,-0.13605 -66260,5202:465:4,-25.5,-26.5,0,0,-0.13605 -66261,5202:465:3,-25,-26.5,0,0,-0.13605 -66262,5202:364:4,-24.5,-26.5,0,0,-0.13605 -66263,5202:364:3,-24,-26.5,0,0,-0.13605 -66264,5202:363:4,-23.5,-26.5,0,0,-0.13605 -66265,5202:363:3,-23,-26.5,0,0,-0.13605 -66266,5202:362:4,-22.5,-26.5,0,0,-0.13605 -66267,5202:362:3,-22,-26.5,0,0,-0.13605 -66268,5202:361:4,-21.5,-26.5,0,0,-0.13605 -66269,5202:361:3,-21,-26.5,0,0,-0.13605 -66270,5202:360:4,-20.5,-26.5,0,0,-0.13605 -66271,5202:360:3,-20,-26.5,0,0,-0.13605 -66272,5201:469:4,-19.5,-26.5,0,0,-0.13605 -66273,5201:469:3,-19,-26.5,0,0,-0.13605 -66274,5201:468:4,-18.5,-26.5,0,0,-0.13605 -66275,5201:468:3,-18,-26.5,0,0,-0.13605 -66276,5201:467:4,-17.5,-26.5,0,0,-0.13605 -66277,5201:467:3,-17,-26.5,0,0,-0.13605 -66278,5201:466:4,-16.5,-26.5,0,0,-0.13605 -66279,5201:466:3,-16,-26.5,0,0,-0.13605 -66280,5201:465:4,-15.5,-26.5,0,0,-0.13605 -66281,5201:465:3,-15,-26.5,0,0,-0.13605 -66282,5201:364:4,-14.5,-26.5,0,0,-0.13605 -66283,5201:364:3,-14,-26.5,0,0,-0.13605 -66284,5201:363:4,-13.5,-26.5,0,0,-0.13605 -66285,5201:363:3,-13,-26.5,0,0,-0.13605 -66286,5201:362:4,-12.5,-26.5,0,0,-0.13605 -66287,5201:362:3,-12,-26.5,0,0,-0.13605 -66288,5201:361:4,-11.5,-26.5,0,0,-0.13605 -66289,5201:361:3,-11,-26.5,0,0,-0.13605 -66290,5201:360:4,-10.5,-26.5,0,0,-0.13605 -66291,5201:360:3,-10,-26.5,0,0,-0.13605 -66292,5200:469:4,-9.5,-26.5,0,0,-0.13605 -66293,5200:469:3,-9,-26.5,0,0,-0.13605 -66294,5200:468:4,-8.5,-26.5,0,0,-0.13605 -66295,5200:468:3,-8,-26.5,0,0,-0.13605 -66296,5200:467:4,-7.5,-26.5,0,0,-0.13605 -66297,5200:467:3,-7,-26.5,0,0,-0.13605 -66298,5200:466:4,-6.5,-26.5,0,0,-0.13605 -66299,5200:466:3,-6,-26.5,0,0,-0.13605 -66300,5200:465:4,-5.5,-26.5,0,0,-0.13605 -66301,5200:465:3,-5,-26.5,0,0,-0.13605 -66302,5200:364:4,-4.5,-26.5,0,0,-0.13605 -66303,5200:364:3,-4,-26.5,0,0,-0.13605 -66304,5200:363:4,-3.5,-26.5,0,0,-0.13605 -66305,5200:363:3,-3,-26.5,0,0,-0.13605 -66306,5200:362:4,-2.5,-26.5,0,0,-0.13605 -66307,5200:362:3,-2,-26.5,0,0,-0.13605 -66308,5200:361:4,-1.5,-26.5,0,0,-0.13605 -66309,5200:361:3,-1,-26.5,0,0,-0.13605 -66310,5200:360:4,-0.5,-26.5,0,0,-0.13605 -66311,3200:360:4,0,-26.5,0,0,-0.13605 -66312,3200:360:4,0.5,-26.5,0,0,-0.13605 -66313,3200:361:3,1,-26.5,0,0,-0.13605 -66314,3200:361:4,1.5,-26.5,0,0,-0.13605 -66315,3200:362:3,2,-26.5,0,0,-0.13605 -66316,3200:362:4,2.5,-26.5,0,0,-0.13605 -66317,3200:363:3,3,-26.5,0,0,-0.13605 -66318,3200:363:4,3.5,-26.5,0,0,-0.13605 -66319,3200:364:3,4,-26.5,0,0,-0.13605 -66320,3200:364:4,4.5,-26.5,0,0,-0.13605 -66321,3200:465:3,5,-26.5,0,0,-0.13605 -66322,3200:465:4,5.5,-26.5,0,0,-0.13605 -66323,3200:466:3,6,-26.5,0,0,-0.13605 -66324,3200:466:4,6.5,-26.5,0,0,-0.13605 -66325,3200:467:3,7,-26.5,0,0,-0.13605 -66326,3200:467:4,7.5,-26.5,0,0,-0.13605 -66327,3200:468:3,8,-26.5,0,0,-0.13605 -66328,3200:468:4,8.5,-26.5,0,0,-0.13605 -66329,3200:469:3,9,-26.5,0,0,-0.13605 -66330,3200:469:4,9.5,-26.5,0,0,-0.13605 -66331,3201:360:3,10,-26.5,0,0,-0.13605 -66332,3201:360:4,10.5,-26.5,0,0,-0.13605 -66333,3201:361:3,11,-26.5,0,0,-0.13605 -66334,3201:361:4,11.5,-26.5,0,0,-0.13605 -66335,3201:362:3,12,-26.5,0,0,-0.13605 -66336,3201:362:4,12.5,-26.5,0,0,-0.13605 -66337,3201:363:3,13,-26.5,0,0,-0.13605 -66338,3201:363:4,13.5,-26.5,0,0,-0.13605 -66339,3201:364:3,14,-26.5,0,0,-0.13605 -66340,3201:364:4,14.5,-26.5,0,0,-0.13605 -66341,3201:465:3,15,-26.5,0,0,-0.13605 -66342,3201:465:4,15.5,-26.5,0,0,-0.13605 -66343,3201:466:3,16,-26.5,0,0,-0.13605 -66344,3201:466:4,16.5,-26.5,0,0,-0.13605 -66345,3201:467:3,17,-26.5,0,0,-0.13605 -66346,3201:467:4,17.5,-26.5,0,0,-0.13605 -66347,3201:468:3,18,-26.5,0,0,-0.13605 -66348,3201:468:4,18.5,-26.5,0,0,-0.13605 -66349,3201:469:3,19,-26.5,0,0,-0.13605 -66350,3202:360:3,20,-26.5,0,0,-0.13605 -66351,3202:360:4,20.5,-26.5,0,0,-0.13605 -66352,3202:361:3,21,-26.5,0,0,-0.13605 -66353,3202:361:4,21.5,-26.5,0,0,-0.13605 -66354,3202:362:3,22,-26.5,0,0,-0.13605 -66355,3202:362:4,22.5,-26.5,0,0,-0.13605 -66356,3202:363:3,23,-26.5,0,0,-0.13605 -66357,3202:363:4,23.5,-26.5,0,0,-0.13605 -66358,3202:364:3,24,-26.5,0,0,-0.13605 -66359,3202:364:4,24.5,-26.5,0,0,-0.13605 -66360,3202:465:3,25,-26.5,0,0,-0.13605 -66361,3202:465:4,25.5,-26.5,0,0,-0.13605 -66362,3202:466:3,26,-26.5,0,0,-0.13605 -66363,3202:466:4,26.5,-26.5,0,0,-0.13605 -66364,3202:467:3,27,-26.5,0,0,-0.13605 -66365,3202:467:4,27.5,-26.5,0,0,-0.13605 -66366,3202:468:3,28,-26.5,0,0,-0.13605 -66367,3202:468:4,28.5,-26.5,0,0,-0.13605 -66368,3202:469:3,29,-26.5,0,0,-0.13605 -66369,3202:469:4,29.5,-26.5,0,0,-0.13605 -66370,3203:360:3,30,-26.5,0,0,-0.13605 -66371,3203:360:4,30.5,-26.5,0,0,-0.13605 -66372,3203:361:3,31,-26.5,0,0,-0.13605 -66373,3203:361:4,31.5,-26.5,0,0,-0.13605 -66374,3203:362:3,32,-26.5,0,0,-0.13605 -66375,3203:362:4,32.5,-26.5,0,0,-0.13605 -66376,3203:363:3,33,-26.5,0,0,-0.13605 -66377,3203:363:4,33.5,-26.5,0,0,-0.13605 -66378,3203:364:3,34,-26.5,0,0,-0.13605 -66379,3203:364:4,34.5,-26.5,0,0,-0.13605 -66380,3203:465:3,35,-26.5,0,0,-0.13605 -66381,3203:465:4,35.5,-26.5,0,0,-0.13605 -66382,3203:466:3,36,-26.5,0,0,-0.13605 -66383,3203:466:4,36.5,-26.5,0,0,-0.13605 -66384,3203:467:3,37,-26.5,0,0,-0.13605 -66385,3203:467:4,37.5,-26.5,0,0,-0.13605 -66386,3203:468:3,38,-26.5,0,0,-0.13605 -66387,3203:468:4,38.5,-26.5,0,0,-0.13605 -66388,3203:469:3,39,-26.5,0,0,-0.13605 -66389,3203:469:4,39.5,-26.5,0,0,-0.13605 -66390,3204:360:3,40,-26.5,0,0,-0.13605 -66391,3204:360:4,40.5,-26.5,0,0,-0.13605 -66392,3204:361:3,41,-26.5,0,0,-0.13605 -66393,3204:361:4,41.5,-26.5,0,0,-0.13605 -66394,3204:362:3,42,-26.5,0,0,-0.13605 -66395,3204:362:4,42.5,-26.5,0,0,-0.13605 -66396,3204:363:3,43,-26.5,0,0,-0.13605 -66397,3204:363:4,43.5,-26.5,0,0,-0.13605 -66398,3204:364:3,44,-26.5,0,0,-0.13605 -66399,3204:364:4,44.5,-26.5,0,0,-0.13605 -66400,3204:465:3,45,-26.5,0,0,-0.13605 -66401,3204:465:4,45.5,-26.5,0,0,-0.13605 -66402,3204:466:3,46,-26.5,0,0,-0.13605 -66403,3204:466:4,46.5,-26.5,0,0,-0.13605 -66404,3204:467:3,47,-26.5,0,0,-0.13605 -66405,3204:467:4,47.5,-26.5,0,0,-0.13605 -66406,3204:468:3,48,-26.5,0,0,-0.13605 -66407,3204:468:4,48.5,-26.5,0,0,-0.13605 -66408,3204:469:3,49,-26.5,0,0,-0.13605 -66409,3204:469:4,49.5,-26.5,0,0,-0.13605 -66410,3205:360:3,50,-26.5,0,0,-0.13605 -66411,3205:360:4,50.5,-26.5,0,0,-0.13605 -66412,3205:361:3,51,-26.5,0,0,-0.13605 -66413,3205:361:4,51.5,-26.5,0,0,-0.13605 -66414,3205:362:3,52,-26.5,0,0,-0.13605 -66415,3205:362:4,52.5,-26.5,0,0,-0.13605 -66416,3205:363:3,53,-26.5,0,0,-0.13605 -66417,3205:363:4,53.5,-26.5,0,0,-0.13605 -66418,3205:364:3,54,-26.5,0,0,-0.13605 -66419,3205:364:4,54.5,-26.5,0,0,-0.13605 -66420,3205:465:3,55,-26.5,0,0,-0.13605 -66421,3205:465:4,55.5,-26.5,0,0,-0.13605 -66422,3205:466:3,56,-26.5,0,0,-0.13605 -66423,3205:466:4,56.5,-26.5,0,0,-0.13605 -66424,3205:467:3,57,-26.5,0,0,-0.13605 -66425,3205:467:4,57.5,-26.5,0,0,-0.13605 -66426,3205:468:3,58,-26.5,0,0,-0.13605 -66427,3205:468:4,58.5,-26.5,0,0,-0.13605 -66428,3205:469:3,59,-26.5,0,0,-0.13605 -66429,3205:469:4,59.5,-26.5,0,0,-0.13605 -66430,3206:360:3,60,-26.5,0,0,-0.13605 -66431,3206:360:4,60.5,-26.5,0,0,-0.13605 -66432,3206:361:3,61,-26.5,0,0,-0.13605 -66433,3206:361:4,61.5,-26.5,0,0,-0.13605 -66434,3206:362:3,62,-26.5,0,0,-0.13605 -66435,3206:362:4,62.5,-26.5,0,0,-0.13605 -66436,3206:363:3,63,-26.5,0,0,-0.13605 -66437,3206:363:4,63.5,-26.5,0,0,-0.13605 -66438,3206:364:3,64,-26.5,0,0,-0.13605 -66439,3206:364:4,64.5,-26.5,0,0,-0.13605 -66440,3206:465:3,65,-26.5,0,0,-0.13605 -66441,3206:465:4,65.5,-26.5,0,0,-0.13605 -66442,3206:466:3,66,-26.5,0,0,-0.13605 -66443,3206:466:4,66.5,-26.5,0,0,-0.13605 -66444,3206:467:3,67,-26.5,0,0,-0.13605 -66445,3206:467:4,67.5,-26.5,0,0,-0.13605 -66446,3206:468:3,68,-26.5,0,0,-0.13605 -66447,3206:468:4,68.5,-26.5,0,0,-0.13605 -66448,3206:469:3,69,-26.5,0,0,-0.13605 -66449,3206:469:4,69.5,-26.5,0,0,-0.13605 -66450,3207:360:3,70,-26.5,0,0,-0.13605 -66451,3207:360:4,70.5,-26.5,0,0,-0.13605 -66452,3207:361:3,71,-26.5,0,0,-0.13605 -66453,3207:361:4,71.5,-26.5,0,0,-0.13605 -66454,3207:362:3,72,-26.5,0,0,-0.13605 -66455,3207:362:4,72.5,-26.5,0,0,-0.13605 -66456,3207:363:4,73.5,-26.5,0,0,-0.13605 -66457,3207:364:3,74,-26.5,0,0,-0.13605 -66458,3207:364:4,74.5,-26.5,0,0,-0.13605 -66459,3207:465:3,75,-26.5,0,0,-0.13605 -66460,3207:465:4,75.5,-26.5,0,0,-0.13605 -66461,3207:466:3,76,-26.5,0,0,-0.13605 -66462,3207:466:4,76.5,-26.5,0,0,-0.13605 -66463,3207:467:3,77,-26.5,0,0,-0.13605 -66464,3207:467:4,77.5,-26.5,0,0,-0.13605 -66465,3207:468:3,78,-26.5,0,0,-0.13605 -66466,3207:468:4,78.5,-26.5,0,0,-0.13605 -66467,3207:469:3,79,-26.5,0,0,-0.13605 -66468,3207:469:4,79.5,-26.5,0,0,-0.13605 -66469,3208:360:3,80,-26.5,0,0,-0.13605 -66470,3208:360:4,80.5,-26.5,0,0,-0.13605 -66471,3208:361:3,81,-26.5,0,0,-0.13605 -66472,3208:361:4,81.5,-26.5,0,0,-0.13605 -66473,3208:362:3,82,-26.5,0,0,-0.13605 -66474,3208:362:4,82.5,-26.5,0,0,-0.13605 -66475,3208:363:3,83,-26.5,0,0,-0.13605 -66476,3208:363:4,83.5,-26.5,0,0,-0.13605 -66477,3208:364:3,84,-26.5,0,0,-0.13605 -66478,3208:364:4,84.5,-26.5,0,0,-0.13605 -66479,3208:465:3,85,-26.5,0,0,-0.13605 -66480,3208:465:4,85.5,-26.5,0,0,-0.13605 -66481,3208:466:3,86,-26.5,0,0,-0.13605 -66482,3208:466:4,86.5,-26.5,0,0,-0.13605 -66483,3208:467:3,87,-26.5,0,0,-0.13605 -66484,3208:467:4,87.5,-26.5,0,0,-0.13605 -66485,3208:468:3,88,-26.5,0,0,-0.13605 -66486,3208:468:4,88.5,-26.5,0,0,-0.13605 -66487,3208:469:3,89,-26.5,0,0,-0.13605 -66488,3208:469:4,89.5,-26.5,0,0,-0.13605 -66489,3209:360:3,90,-26.5,0,0,-0.13605 -66490,3209:360:4,90.5,-26.5,0,0,-0.13605 -66491,3209:361:3,91,-26.5,0,0,-0.13605 -66492,3209:361:4,91.5,-26.5,0,0,-0.13605 -66493,3209:362:3,92,-26.5,0,0,-0.13605 -66494,3209:362:4,92.5,-26.5,0,0,-0.13605 -66495,3209:363:3,93,-26.5,0,0,-0.13605 -66496,3209:363:4,93.5,-26.5,0,0,-0.13605 -66497,3209:364:3,94,-26.5,0,0,-0.13605 -66498,3209:364:4,94.5,-26.5,0,0,-0.13605 -66499,3209:465:3,95,-26.5,0,0,-0.13605 -66500,3209:465:4,95.5,-26.5,0,0,-0.13605 -66501,3209:466:3,96,-26.5,0,0,-0.13605 -66502,3209:466:4,96.5,-26.5,0,0,-0.13605 -66503,3209:467:3,97,-26.5,0,0,-0.13605 -66504,3209:467:4,97.5,-26.5,0,0,-0.13605 -66505,3209:468:3,98,-26.5,0,0,-0.13605 -66506,3209:468:4,98.5,-26.5,0,0,-0.13605 -66507,3209:469:3,99,-26.5,0,0,-0.13605 -66508,3209:469:4,99.5,-26.5,0,0,-0.13605 -66509,3210:360:3,100,-26.5,0,0,-0.13605 -66510,3210:360:4,100.5,-26.5,0,0,-0.13605 -66511,3210:361:3,101,-26.5,0,0,-0.13605 -66512,3210:361:4,101.5,-26.5,0,0,-0.13605 -66513,3210:362:3,102,-26.5,0,0,-0.13605 -66514,3210:362:4,102.5,-26.5,0,0,-0.13605 -66515,3210:363:3,103,-26.5,0,0,-0.13605 -66516,3210:363:4,103.5,-26.5,0,0,-0.13605 -66517,3210:364:3,104,-26.5,0,0,-0.13605 -66518,3210:364:4,104.5,-26.5,0,0,-0.13605 -66519,3210:465:3,105,-26.5,0,0,-0.13605 -66520,3210:465:4,105.5,-26.5,0,0,-0.13605 -66521,3210:466:3,106,-26.5,0,0,-0.13605 -66522,3210:466:4,106.5,-26.5,0,0,-0.13605 -66523,3210:467:3,107,-26.5,0,0,-0.13605 -66524,3210:467:4,107.5,-26.5,0,0,-0.13605 -66525,3210:468:3,108,-26.5,0,0,-0.13605 -66526,3210:468:4,108.5,-26.5,0,0,-0.13605 -66527,3210:469:3,109,-26.5,0,0,-0.13605 -66528,3210:469:4,109.5,-26.5,0,0,-0.13605 -66529,3211:360:3,110,-26.5,0,0,-0.13605 -66530,3211:360:4,110.5,-26.5,0,0,-0.13605 -66531,3211:361:3,111,-26.5,0,0,-0.13605 -66532,3211:361:4,111.5,-26.5,0,0,-0.13605 -66533,3211:362:3,112,-26.5,0,0,-0.13605 -66534,3211:362:4,112.5,-26.5,0,0,-0.13605 -66535,3211:363:3,113,-26.5,0,0,-0.13605 -66536,3211:363:4,113.5,-26.5,0,0,-0.13605 -66537,3211:364:3,114,-26.5,0,0,-0.13605 -66538,3211:364:4,114.5,-26.5,0,0,-0.13605 -66539,3211:465:3,115,-26.5,0,0,-0.13605 -66540,3211:465:4,115.5,-26.5,0,0,-0.13605 -66541,3211:466:3,116,-26.5,0,0,-0.13605 -66542,3211:469:3,119,-26.5,0,0,-0.13605 -66543,3211:469:4,119.5,-26.5,0,0,-0.13605 -66544,3212:360:3,120,-26.5,0,0,-0.13605 -66545,3212:360:4,120.5,-26.5,0,0,-0.13605 -66546,3212:361:3,121,-26.5,0,0,-0.13605 -66547,3212:361:4,121.5,-26.5,0,0,-0.13605 -66548,3212:362:3,122,-26.5,0,0,-0.13605 -66549,3212:362:4,122.5,-26.5,0,0,-0.13605 -66550,3212:363:3,123,-26.5,0,0,-0.13605 -66551,3212:363:4,123.5,-26.5,0,0,-0.13605 -66552,3212:364:3,124,-26.5,0,0,-0.13605 -66553,3212:364:4,124.5,-26.5,0,0,-0.13605 -66554,3212:465:3,125,-26.5,0,0,-0.13605 -66555,3212:465:4,125.5,-26.5,0,0,-0.13605 -66556,3212:466:3,126,-26.5,0,0,-0.13605 -66557,3212:466:4,126.5,-26.5,0,0,-0.13605 -66558,3212:467:3,127,-26.5,0,0,-0.13605 -66559,3212:467:4,127.5,-26.5,0,0,-0.13605 -66560,3212:468:3,128,-26.5,0,0,-0.13605 -66561,3212:468:4,128.5,-26.5,0,0,-0.13605 -66562,3212:469:3,129,-26.5,0,0,-0.13605 -66563,3212:469:4,129.5,-26.5,0,0,-0.13605 -66564,3213:360:3,130,-26.5,0,0,-0.13605 -66565,3213:360:4,130.5,-26.5,0,0,-0.13605 -66566,3213:361:3,131,-26.5,0,0,-0.13605 -66567,3213:361:4,131.5,-26.5,0,0,-0.13605 -66568,3213:362:3,132,-26.5,0,0,-0.13605 -66569,3213:362:4,132.5,-26.5,0,0,-0.13605 -66570,3213:363:3,133,-26.5,0,0,-0.13605 -66571,3213:363:4,133.5,-26.5,0,0,-0.13605 -66572,3213:364:3,134,-26.5,0,0,-0.13605 -66573,3213:364:4,134.5,-26.5,0,0,-0.13605 -66574,3213:465:3,135,-26.5,0,0,-0.13605 -66575,3213:465:4,135.5,-26.5,0,0,-0.13605 -66576,3213:466:4,136.5,-26.5,0,0,-0.13605 -66577,3213:467:3,137,-26.5,0,0,-0.13605 -66578,3213:467:4,137.5,-26.5,0,0,-0.13605 -66579,3213:468:4,138.5,-26.5,0,0,-0.13605 -66580,3215:361:4,151.5,-26.5,0,0,-0.13605 -66581,3215:362:3,152,-26.5,0,0,-0.13605 -66582,3215:362:4,152.5,-26.5,0,0,-0.13605 -66583,3215:363:3,153,-26.5,0,0,-0.13605 -66584,3215:363:4,153.5,-26.5,0,0,-0.13605 -66585,3215:364:3,154,-26.5,0,0,-0.13605 -66586,3215:364:4,154.5,-26.5,0,0,-0.13605 -66587,3215:465:3,155,-26.5,0,0,-0.13605 -66588,3215:465:4,155.5,-26.5,0,0,-0.13605 -66589,3215:466:3,156,-26.5,0,0,-0.13605 -66590,3215:466:4,156.5,-26.5,0,0,-0.13605 -66591,3215:467:3,157,-26.5,0,0,-0.13605 -66592,3215:467:4,157.5,-26.5,0,0,-0.13605 -66593,3215:468:3,158,-26.5,0,0,-0.13605 -66594,3215:468:4,158.5,-26.5,0,0,-0.13605 -66595,3215:469:3,159,-26.5,0,0,-0.13605 -66596,3215:469:4,159.5,-26.5,0,0,-0.13605 -66597,3216:360:3,160,-26.5,0,0,-0.13605 -66598,3216:360:4,160.5,-26.5,0,0,-0.13605 -66599,3216:361:3,161,-26.5,0,0,-0.13605 -66600,3216:361:4,161.5,-26.5,0,0,-0.13605 -66601,3216:362:3,162,-26.5,0,0,-0.13605 -66602,3216:362:4,162.5,-26.5,0,0,-0.13605 -66603,3216:363:3,163,-26.5,0,0,-0.13605 -66604,3216:363:4,163.5,-26.5,0,0,-0.13605 -66605,3216:364:3,164,-26.5,0,0,-0.13605 -66606,3216:364:4,164.5,-26.5,0,0,-0.13605 -66607,3216:465:3,165,-26.5,0,0,-0.13605 -66608,3216:465:4,165.5,-26.5,0,0,-0.13605 -66609,3216:466:3,166,-26.5,0,0,-0.13605 -66610,3216:466:4,166.5,-26.5,0,0,-0.13605 -66611,3216:467:3,167,-26.5,0,0,-0.13605 -66612,3216:467:4,167.5,-26.5,0,0,-0.13605 -66613,3216:468:3,168,-26.5,0,0,-0.13605 -66614,3216:468:4,168.5,-26.5,0,0,-0.13605 -66615,3216:469:3,169,-26.5,0,0,-0.13605 -66616,3216:469:4,169.5,-26.5,0,0,-0.13605 -66617,3217:360:3,170,-26.5,0,0,-0.13605 -66618,3217:360:4,170.5,-26.5,0,0,-0.13605 -66619,3217:361:3,171,-26.5,0,0,-0.13605 -66620,3217:361:4,171.5,-26.5,0,0,-0.13605 -66621,3217:362:3,172,-26.5,0,0,-0.13605 -66622,3217:362:4,172.5,-26.5,0,0,-0.13605 -66623,3217:363:3,173,-26.5,0,0,-0.13605 -66624,3217:363:4,173.5,-26.5,0,0,-0.13605 -66625,3217:364:3,174,-26.5,0,0,-0.13605 -66626,3217:364:4,174.5,-26.5,0,0,-0.13605 -66627,3217:465:3,175,-26.5,0,0,-0.13605 -66628,3217:465:4,175.5,-26.5,0,0,-0.13605 -66629,3217:466:3,176,-26.5,0,0,-0.13605 -66630,3217:466:4,176.5,-26.5,0,0,-0.13605 -66631,3217:467:3,177,-26.5,0,0,-0.13605 -66632,3217:467:4,177.5,-26.5,0,0,-0.13605 -66633,3217:468:3,178,-26.5,0,0,-0.13605 -66634,3217:468:4,178.5,-26.5,0,0,-0.13605 -66635,3217:469:3,179,-26.5,0,0,-0.13605 -66636,3217:469:4,179.5,-26.5,0,0,-0.13605 -66637,3218:360:3,180,-26.5,0,0,-0.13605 -66638,5218:360:1,-180,-26,0,0,-0.13605 -66639,5217:469:2,-179.5,-26,0,0,-0.13605 -66640,5217:469:1,-179,-26,0,0,-0.13605 -66641,5217:468:2,-178.5,-26,0,0,-0.13605 -66642,5217:468:1,-178,-26,0,0,-0.13605 -66643,5217:467:2,-177.5,-26,0,0,-0.13605 -66644,5217:467:1,-177,-26,0,0,-0.13605 -66645,5217:466:2,-176.5,-26,0,0,-0.13605 -66646,5217:466:1,-176,-26,0,0,-0.13605 -66647,5217:465:2,-175.5,-26,0,0,-0.13605 -66648,5217:465:1,-175,-26,0,0,-0.13605 -66649,5217:364:2,-174.5,-26,0,0,-0.13605 -66650,5217:364:1,-174,-26,0,0,-0.13605 -66651,5217:363:2,-173.5,-26,0,0,-0.13605 -66652,5217:363:1,-173,-26,0,0,-0.13605 -66653,5217:362:2,-172.5,-26,0,0,-0.13605 -66654,5217:362:1,-172,-26,0,0,-0.13605 -66655,5217:361:2,-171.5,-26,0,0,-0.13605 -66656,5217:361:1,-171,-26,0,0,-0.13605 -66657,5217:360:2,-170.5,-26,0,0,-0.13605 -66658,5217:360:1,-170,-26,0,0,-0.13605 -66659,5216:469:2,-169.5,-26,0,0,-0.13605 -66660,5216:469:1,-169,-26,0,0,-0.13605 -66661,5216:468:2,-168.5,-26,0,0,-0.13605 -66662,5216:468:1,-168,-26,0,0,-0.13605 -66663,5216:467:2,-167.5,-26,0,0,-0.13605 -66664,5216:467:1,-167,-26,0,0,-0.13605 -66665,5216:466:2,-166.5,-26,0,0,-0.13605 -66666,5216:466:1,-166,-26,0,0,-0.13605 -66667,5216:465:2,-165.5,-26,0,0,-0.13605 -66668,5216:465:1,-165,-26,0,0,-0.13605 -66669,5216:364:2,-164.5,-26,0,0,-0.13605 -66670,5216:364:1,-164,-26,0,0,-0.13605 -66671,5216:363:2,-163.5,-26,0,0,-0.13605 -66672,5216:363:1,-163,-26,0,0,-0.13605 -66673,5216:362:2,-162.5,-26,0,0,-0.13605 -66674,5216:362:1,-162,-26,0,0,-0.13605 -66675,5216:361:2,-161.5,-26,0,0,-0.13605 -66676,5216:361:1,-161,-26,0,0,-0.13605 -66677,5216:360:2,-160.5,-26,0,0,-0.13605 -66678,5216:360:1,-160,-26,0,0,-0.13605 -66679,5215:469:2,-159.5,-26,0,0,-0.13605 -66680,5215:469:1,-159,-26,0,0,-0.13605 -66681,5215:468:2,-158.5,-26,0,0,-0.13605 -66682,5215:468:1,-158,-26,0,0,-0.13605 -66683,5215:467:2,-157.5,-26,0,0,-0.13605 -66684,5215:467:1,-157,-26,0,0,-0.13605 -66685,5215:466:2,-156.5,-26,0,0,-0.13605 -66686,5215:466:1,-156,-26,0,0,-0.13605 -66687,5215:465:2,-155.5,-26,0,0,-0.13605 -66688,5215:465:1,-155,-26,0,0,-0.13605 -66689,5215:364:2,-154.5,-26,0,0,-0.13605 -66690,5215:364:1,-154,-26,0,0,-0.13605 -66691,5215:363:2,-153.5,-26,0,0,-0.13605 -66692,5215:363:1,-153,-26,0,0,-0.13605 -66693,5215:362:2,-152.5,-26,0,0,-0.13605 -66694,5215:362:1,-152,-26,0,0,-0.13605 -66695,5215:361:2,-151.5,-26,0,0,-0.13605 -66696,5215:361:1,-151,-26,0,0,-0.13605 -66697,5215:360:2,-150.5,-26,0,0,-0.13605 -66698,5215:360:1,-150,-26,0,0,-0.13605 -66699,5214:469:2,-149.5,-26,0,0,-0.13605 -66700,5214:469:1,-149,-26,0,0,-0.13605 -66701,5214:468:2,-148.5,-26,0,0,-0.13605 -66702,5214:468:1,-148,-26,0,0,-0.13605 -66703,5214:467:2,-147.5,-26,0,0,-0.13605 -66704,5214:467:1,-147,-26,0,0,-0.13605 -66705,5214:466:2,-146.5,-26,0,0,-0.13605 -66706,5214:466:1,-146,-26,0,0,-0.13605 -66707,5214:465:2,-145.5,-26,0,0,-0.13605 -66708,5214:465:1,-145,-26,0,0,-0.13605 -66709,5214:364:2,-144.5,-26,0,0,-0.13605 -66710,5214:364:1,-144,-26,0,0,-0.13605 -66711,5214:363:2,-143.5,-26,0,0,-0.13605 -66712,5214:363:1,-143,-26,0,0,-0.13605 -66713,5214:362:2,-142.5,-26,0,0,-0.13605 -66714,5214:362:1,-142,-26,0,0,-0.13605 -66715,5214:361:2,-141.5,-26,0,0,-0.13605 -66716,5214:361:1,-141,-26,0,0,-0.13605 -66717,5214:360:2,-140.5,-26,0,0,-0.13605 -66718,5214:360:1,-140,-26,0,0,-0.13605 -66719,5213:469:2,-139.5,-26,0,0,-0.13605 -66720,5213:469:1,-139,-26,0,0,-0.13605 -66721,5213:468:2,-138.5,-26,0,0,-0.13605 -66722,5213:468:1,-138,-26,0,0,-0.13605 -66723,5213:467:2,-137.5,-26,0,0,-0.13605 -66724,5213:467:1,-137,-26,0,0,-0.13605 -66725,5213:466:2,-136.5,-26,0,0,-0.13605 -66726,5213:466:1,-136,-26,0,0,-0.13605 -66727,5213:465:2,-135.5,-26,0,0,-0.13605 -66728,5213:465:1,-135,-26,0,0,-0.13605 -66729,5213:364:2,-134.5,-26,0,0,-0.13605 -66730,5213:364:1,-134,-26,0,0,-0.13605 -66731,5213:363:2,-133.5,-26,0,0,-0.13605 -66732,5213:363:1,-133,-26,0,0,-0.13605 -66733,5213:362:2,-132.5,-26,0,0,-0.13605 -66734,5213:362:1,-132,-26,0,0,-0.13605 -66735,5213:361:2,-131.5,-26,0,0,-0.13605 -66736,5213:361:1,-131,-26,0,0,-0.13605 -66737,5213:360:2,-130.5,-26,0,0,-0.13605 -66738,5213:360:1,-130,-26,0,0,-0.13605 -66739,5212:469:2,-129.5,-26,0,0,-0.13605 -66740,5212:469:1,-129,-26,0,0,-0.13605 -66741,5212:468:2,-128.5,-26,0,0,-0.13605 -66742,5212:468:1,-128,-26,0,0,-0.13605 -66743,5212:467:2,-127.5,-26,0,0,-0.13605 -66744,5212:467:1,-127,-26,0,0,-0.13605 -66745,5212:466:2,-126.5,-26,0,0,-0.13605 -66746,5212:466:1,-126,-26,0,0,-0.13605 -66747,5212:465:2,-125.5,-26,0,0,-0.13605 -66748,5212:465:1,-125,-26,0,0,-0.13605 -66749,5212:364:2,-124.5,-26,0,0,-0.13605 -66750,5212:364:1,-124,-26,0,0,-0.13605 -66751,5212:363:2,-123.5,-26,0,0,-0.13605 -66752,5212:363:1,-123,-26,0,0,-0.13605 -66753,5212:362:2,-122.5,-26,0,0,-0.13605 -66754,5212:362:1,-122,-26,0,0,-0.13605 -66755,5212:361:2,-121.5,-26,0,0,-0.13605 -66756,5212:361:1,-121,-26,0,0,-0.13605 -66757,5212:360:2,-120.5,-26,0,0,-0.13605 -66758,5212:360:1,-120,-26,0,0,-0.13605 -66759,5211:469:2,-119.5,-26,0,0,-0.13605 -66760,5211:469:1,-119,-26,0,0,-0.13605 -66761,5211:468:2,-118.5,-26,0,0,-0.13605 -66762,5211:468:1,-118,-26,0,0,-0.13605 -66763,5211:467:2,-117.5,-26,0,0,-0.13605 -66764,5211:467:1,-117,-26,0,0,-0.13605 -66765,5211:466:2,-116.5,-26,0,0,-0.13605 -66766,5211:466:1,-116,-26,0,0,-0.13605 -66767,5211:465:2,-115.5,-26,0,0,-0.13605 -66768,5211:465:1,-115,-26,0,0,-0.13605 -66769,5211:364:2,-114.5,-26,0,0,-0.13605 -66770,5211:364:1,-114,-26,0,0,-0.13605 -66771,5211:363:2,-113.5,-26,0,0,-0.13605 -66772,5211:363:1,-113,-26,0,0,-0.13605 -66773,5211:362:2,-112.5,-26,0,0,-0.13605 -66774,5211:362:1,-112,-26,0,0,-0.13605 -66775,5211:361:2,-111.5,-26,0,0,-0.13605 -66776,5211:361:1,-111,-26,0,0,-0.13605 -66777,5211:360:2,-110.5,-26,0,0,-0.13605 -66778,5211:360:1,-110,-26,0,0,-0.13605 -66779,5210:469:2,-109.5,-26,0,0,-0.13605 -66780,5210:469:1,-109,-26,0,0,-0.13605 -66781,5210:468:2,-108.5,-26,0,0,-0.13605 -66782,5210:468:1,-108,-26,0,0,-0.13605 -66783,5210:467:2,-107.5,-26,0,0,-0.13605 -66784,5210:467:1,-107,-26,0,0,-0.13605 -66785,5210:466:2,-106.5,-26,0,0,-0.13605 -66786,5210:466:1,-106,-26,0,0,-0.13605 -66787,5210:465:2,-105.5,-26,0,0,-0.13605 -66788,5210:465:1,-105,-26,0,0,-0.13605 -66789,5210:364:2,-104.5,-26,0,0,-0.13605 -66790,5210:364:1,-104,-26,0,0,-0.13605 -66791,5210:363:2,-103.5,-26,0,0,-0.13605 -66792,5210:363:1,-103,-26,0,0,-0.13605 -66793,5210:362:2,-102.5,-26,0,0,-0.13605 -66794,5210:362:1,-102,-26,0,0,-0.13605 -66795,5210:361:2,-101.5,-26,0,0,-0.13605 -66796,5210:361:1,-101,-26,0,0,-0.13605 -66797,5210:360:2,-100.5,-26,0,0,-0.13605 -66798,5210:360:1,-100,-26,0,0,-0.13605 -66799,5209:469:2,-99.5,-26,0,0,-0.13605 -66800,5209:469:1,-99,-26,0,0,-0.13605 -66801,5209:468:2,-98.5,-26,0,0,-0.13605 -66802,5209:468:1,-98,-26,0,0,-0.13605 -66803,5209:467:2,-97.5,-26,0,0,-0.13605 -66804,5209:467:1,-97,-26,0,0,-0.13605 -66805,5209:466:2,-96.5,-26,0,0,-0.13605 -66806,5209:466:1,-96,-26,0,0,-0.13605 -66807,5209:465:2,-95.5,-26,0,0,-0.13605 -66808,5209:465:1,-95,-26,0,0,-0.13605 -66809,5209:364:2,-94.5,-26,0,0,-0.13605 -66810,5209:364:1,-94,-26,0,0,-0.13605 -66811,5209:363:2,-93.5,-26,0,0,-0.13605 -66812,5209:363:1,-93,-26,0,0,-0.13605 -66813,5209:362:2,-92.5,-26,0,0,-0.13605 -66814,5209:362:1,-92,-26,0,0,-0.13605 -66815,5209:361:2,-91.5,-26,0,0,-0.13605 -66816,5209:361:1,-91,-26,0,0,-0.13605 -66817,5209:360:2,-90.5,-26,0,0,-0.13605 -66818,5209:360:1,-90,-26,0,0,-0.13605 -66819,5208:469:2,-89.5,-26,0,0,-0.13605 -66820,5208:469:1,-89,-26,0,0,-0.13605 -66821,5208:468:2,-88.5,-26,0,0,-0.13605 -66822,5208:468:1,-88,-26,0,0,-0.13605 -66823,5208:467:2,-87.5,-26,0,0,-0.13605 -66824,5208:467:1,-87,-26,0,0,-0.13605 -66825,5208:466:2,-86.5,-26,0,0,-0.13605 -66826,5208:466:1,-86,-26,0,0,-0.13605 -66827,5208:465:2,-85.5,-26,0,0,-0.13605 -66828,5208:465:1,-85,-26,0,0,-0.13605 -66829,5208:364:2,-84.5,-26,0,0,-0.13605 -66830,5208:364:1,-84,-26,0,0,-0.13605 -66831,5208:363:2,-83.5,-26,0,0,-0.13605 -66832,5208:363:1,-83,-26,0,0,-0.13605 -66833,5208:362:2,-82.5,-26,0,0,-0.13605 -66834,5208:362:1,-82,-26,0,0,-0.13605 -66835,5208:361:2,-81.5,-26,0,0,-0.13605 -66836,5208:361:1,-81,-26,0,0,-0.13605 -66837,5208:360:2,-80.5,-26,0,0,-0.13605 -66838,5208:360:1,-80,-26,0,0,-0.13605 -66839,5207:469:2,-79.5,-26,0,0,-0.13605 -66840,5207:469:1,-79,-26,0,0,-0.13605 -66841,5207:468:2,-78.5,-26,0,0,-0.13605 -66842,5207:468:1,-78,-26,0,0,-0.13605 -66843,5207:467:2,-77.5,-26,0,0,-0.13605 -66844,5207:467:1,-77,-26,0,0,-0.13605 -66845,5207:466:2,-76.5,-26,0,0,-0.13605 -66846,5207:466:1,-76,-26,0,0,-0.13605 -66847,5207:465:2,-75.5,-26,0,0,-0.13605 -66848,5207:465:1,-75,-26,0,0,-0.13605 -66849,5207:364:2,-74.5,-26,0,0,-0.13605 -66850,5207:364:1,-74,-26,0,0,-0.13605 -66851,5207:363:2,-73.5,-26,0,0,-0.13605 -66852,5207:363:1,-73,-26,0,0,-0.13605 -66853,5207:362:2,-72.5,-26,0,0,-0.13605 -66854,5207:362:1,-72,-26,0,0,-0.13605 -66855,5205:363:2,-53.5,-26,0,0,-0.13605 -66856,5205:363:1,-53,-26,0,0,-0.13605 -66857,5205:362:2,-52.5,-26,0,0,-0.13605 -66858,5205:362:1,-52,-26,0,0,-0.13605 -66859,5205:361:2,-51.5,-26,0,0,-0.13605 -66860,5205:361:1,-51,-26,0,0,-0.13605 -66861,5205:360:2,-50.5,-26,0,0,-0.13605 -66862,5205:360:1,-50,-26,0,0,-0.13605 -66863,5204:469:2,-49.5,-26,0,0,-0.13605 -66864,5204:469:1,-49,-26,0,0,-0.13605 -66865,5204:468:2,-48.5,-26,0,0,-0.13605 -66866,5204:468:1,-48,-26,0,0,-0.13605 -66867,5204:467:2,-47.5,-26,0,0,-0.13605 -66868,5204:467:1,-47,-26,0,0,-0.13605 -66869,5204:466:2,-46.5,-26,0,0,-0.13605 -66870,5204:466:1,-46,-26,0,0,-0.13605 -66871,5204:465:2,-45.5,-26,0,0,-0.13605 -66872,5204:465:1,-45,-26,0,0,-0.13605 -66873,5204:364:2,-44.5,-26,0,0,-0.13605 -66874,5204:364:1,-44,-26,0,0,-0.13605 -66875,5204:363:2,-43.5,-26,0,0,-0.13605 -66876,5204:363:1,-43,-26,0,0,-0.13605 -66877,5204:362:2,-42.5,-26,0,0,-0.13605 -66878,5204:362:1,-42,-26,0,0,-0.13605 -66879,5204:361:2,-41.5,-26,0,0,-0.13605 -66880,5204:361:1,-41,-26,0,0,-0.13605 -66881,5204:360:2,-40.5,-26,0,0,-0.13605 -66882,5204:360:1,-40,-26,0,0,-0.13605 -66883,5203:469:2,-39.5,-26,0,0,-0.13605 -66884,5203:469:1,-39,-26,0,0,-0.13605 -66885,5203:468:2,-38.5,-26,0,0,-0.13605 -66886,5203:468:1,-38,-26,0,0,-0.13605 -66887,5203:467:2,-37.5,-26,0,0,-0.13605 -66888,5203:467:1,-37,-26,0,0,-0.13605 -66889,5203:466:2,-36.5,-26,0,0,-0.13605 -66890,5203:466:1,-36,-26,0,0,-0.13605 -66891,5203:465:2,-35.5,-26,0,0,-0.13605 -66892,5203:465:1,-35,-26,0,0,-0.13605 -66893,5203:364:2,-34.5,-26,0,0,-0.13605 -66894,5203:364:1,-34,-26,0,0,-0.13605 -66895,5203:363:2,-33.5,-26,0,0,-0.13605 -66896,5203:363:1,-33,-26,0,0,-0.13605 -66897,5203:362:2,-32.5,-26,0,0,-0.13605 -66898,5203:362:1,-32,-26,0,0,-0.13605 -66899,5203:361:2,-31.5,-26,0,0,-0.13605 -66900,5203:361:1,-31,-26,0,0,-0.13605 -66901,5203:360:2,-30.5,-26,0,0,-0.13605 -66902,5203:360:1,-30,-26,0,0,-0.13605 -66903,5202:469:2,-29.5,-26,0,0,-0.13605 -66904,5202:469:1,-29,-26,0,0,-0.13605 -66905,5202:468:2,-28.5,-26,0,0,-0.13605 -66906,5202:468:1,-28,-26,0,0,-0.13605 -66907,5202:467:2,-27.5,-26,0,0,-0.13605 -66908,5202:467:1,-27,-26,0,0,-0.13605 -66909,5202:466:2,-26.5,-26,0,0,-0.13605 -66910,5202:466:1,-26,-26,0,0,-0.13605 -66911,5202:465:2,-25.5,-26,0,0,-0.13605 -66912,5202:465:1,-25,-26,0,0,-0.13605 -66913,5202:364:2,-24.5,-26,0,0,-0.13605 -66914,5202:364:1,-24,-26,0,0,-0.13605 -66915,5202:363:2,-23.5,-26,0,0,-0.13605 -66916,5202:363:1,-23,-26,0,0,-0.13605 -66917,5202:362:2,-22.5,-26,0,0,-0.13605 -66918,5202:362:1,-22,-26,0,0,-0.13605 -66919,5202:361:2,-21.5,-26,0,0,-0.13605 -66920,5202:361:1,-21,-26,0,0,-0.13605 -66921,5202:360:2,-20.5,-26,0,0,-0.13605 -66922,5202:360:1,-20,-26,0,0,-0.13605 -66923,5201:469:2,-19.5,-26,0,0,-0.13605 -66924,5201:469:1,-19,-26,0,0,-0.13605 -66925,5201:468:2,-18.5,-26,0,0,-0.13605 -66926,5201:468:1,-18,-26,0,0,-0.13605 -66927,5201:467:2,-17.5,-26,0,0,-0.13605 -66928,5201:467:1,-17,-26,0,0,-0.13605 -66929,5201:466:2,-16.5,-26,0,0,-0.13605 -66930,5201:466:1,-16,-26,0,0,-0.13605 -66931,5201:465:2,-15.5,-26,0,0,-0.13605 -66932,5201:465:1,-15,-26,0,0,-0.13605 -66933,5201:364:2,-14.5,-26,0,0,-0.13605 -66934,5201:364:1,-14,-26,0,0,-0.13605 -66935,5201:363:2,-13.5,-26,0,0,-0.13605 -66936,5201:363:1,-13,-26,0,0,-0.13605 -66937,5201:362:2,-12.5,-26,0,0,-0.13605 -66938,5201:362:1,-12,-26,0,0,-0.13605 -66939,5201:361:2,-11.5,-26,0,0,-0.13605 -66940,5201:361:1,-11,-26,0,0,-0.13605 -66941,5201:360:2,-10.5,-26,0,0,-0.13605 -66942,5201:360:1,-10,-26,0,0,-0.13605 -66943,5200:469:2,-9.5,-26,0,0,-0.13605 -66944,5200:469:1,-9,-26,0,0,-0.13605 -66945,5200:468:2,-8.5,-26,0,0,-0.13605 -66946,5200:468:1,-8,-26,0,0,-0.13605 -66947,5200:467:2,-7.5,-26,0,0,-0.13605 -66948,5200:467:1,-7,-26,0,0,-0.13605 -66949,5200:466:2,-6.5,-26,0,0,-0.13605 -66950,5200:466:1,-6,-26,0,0,-0.13605 -66951,5200:465:2,-5.5,-26,0,0,-0.13605 -66952,5200:465:1,-5,-26,0,0,-0.13605 -66953,5200:364:2,-4.5,-26,0,0,-0.13605 -66954,5200:364:1,-4,-26,0,0,-0.13605 -66955,5200:363:2,-3.5,-26,0,0,-0.13605 -66956,5200:363:1,-3,-26,0,0,-0.13605 -66957,5200:362:2,-2.5,-26,0,0,-0.13605 -66958,5200:362:1,-2,-26,0,0,-0.13605 -66959,5200:361:2,-1.5,-26,0,0,-0.13605 -66960,5200:361:1,-1,-26,0,0,-0.13605 -66961,5200:360:2,-0.5,-26,0,0,-0.13605 -66962,3200:360:2,0,-26,0,0,-0.13605 -66963,3200:360:2,0.5,-26,0,0,-0.13605 -66964,3200:361:1,1,-26,0,0,-0.13605 -66965,3200:361:2,1.5,-26,0,0,-0.13605 -66966,3200:362:1,2,-26,0,0,-0.13605 -66967,3200:362:2,2.5,-26,0,0,-0.13605 -66968,3200:363:1,3,-26,0,0,-0.13605 -66969,3200:363:2,3.5,-26,0,0,-0.13605 -66970,3200:364:1,4,-26,0,0,-0.13605 -66971,3200:364:2,4.5,-26,0,0,-0.13605 -66972,3200:465:1,5,-26,0,0,-0.13605 -66973,3200:465:2,5.5,-26,0,0,-0.13605 -66974,3200:466:1,6,-26,0,0,-0.13605 -66975,3200:466:2,6.5,-26,0,0,-0.13605 -66976,3200:467:1,7,-26,0,0,-0.13605 -66977,3200:467:2,7.5,-26,0,0,-0.13605 -66978,3200:468:1,8,-26,0,0,-0.13605 -66979,3200:468:2,8.5,-26,0,0,-0.13605 -66980,3200:469:1,9,-26,0,0,-0.13605 -66981,3200:469:2,9.5,-26,0,0,-0.13605 -66982,3201:360:1,10,-26,0,0,-0.13605 -66983,3201:360:2,10.5,-26,0,0,-0.13605 -66984,3201:361:1,11,-26,0,0,-0.13605 -66985,3201:361:2,11.5,-26,0,0,-0.13605 -66986,3201:362:1,12,-26,0,0,-0.13605 -66987,3201:362:2,12.5,-26,0,0,-0.13605 -66988,3201:363:1,13,-26,0,0,-0.13605 -66989,3201:363:2,13.5,-26,0,0,-0.13605 -66990,3201:364:1,14,-26,0,0,-0.13605 -66991,3201:364:2,14.5,-26,0,0,-0.13605 -66992,3201:465:1,15,-26,0,0,-0.13605 -66993,3201:465:2,15.5,-26,0,0,-0.13605 -66994,3201:466:1,16,-26,0,0,-0.13605 -66995,3201:466:2,16.5,-26,0,0,-0.13605 -66996,3201:467:1,17,-26,0,0,-0.13605 -66997,3201:467:2,17.5,-26,0,0,-0.13605 -66998,3201:468:1,18,-26,0,0,-0.13605 -66999,3202:362:2,22.5,-26,0,0,-0.13605 -67000,3202:363:2,23.5,-26,0,0,-0.13605 -67001,3202:465:1,25,-26,0,0,-0.13605 -67002,3202:465:2,25.5,-26,0,0,-0.13605 -67003,3202:466:1,26,-26,0,0,-0.13605 -67004,3202:466:2,26.5,-26,0,0,-0.13605 -67005,3202:467:1,27,-26,0,0,-0.13605 -67006,3202:467:2,27.5,-26,0,0,-0.13605 -67007,3202:468:1,28,-26,0,0,-0.13605 -67008,3202:468:2,28.5,-26,0,0,-0.13605 -67009,3202:469:1,29,-26,0,0,-0.13605 -67010,3202:469:2,29.5,-26,0,0,-0.13605 -67011,3203:360:1,30,-26,0,0,-0.13605 -67012,3203:360:2,30.5,-26,0,0,-0.13605 -67013,3203:361:1,31,-26,0,0,-0.13605 -67014,3203:361:2,31.5,-26,0,0,-0.13605 -67015,3203:362:1,32,-26,0,0,-0.13605 -67016,3203:362:2,32.5,-26,0,0,-0.13605 -67017,3203:363:1,33,-26,0,0,-0.13605 -67018,3203:363:2,33.5,-26,0,0,-0.13605 -67019,3203:364:1,34,-26,0,0,-0.13605 -67020,3203:364:2,34.5,-26,0,0,-0.13605 -67021,3203:465:1,35,-26,0,0,-0.13605 -67022,3203:465:2,35.5,-26,0,0,-0.13605 -67023,3203:466:1,36,-26,0,0,-0.13605 -67024,3203:466:2,36.5,-26,0,0,-0.13605 -67025,3203:467:1,37,-26,0,0,-0.13605 -67026,3203:467:2,37.5,-26,0,0,-0.13605 -67027,3203:468:1,38,-26,0,0,-0.13605 -67028,3203:468:2,38.5,-26,0,0,-0.13605 -67029,3203:469:1,39,-26,0,0,-0.13605 -67030,3203:469:2,39.5,-26,0,0,-0.13605 -67031,3204:360:1,40,-26,0,0,-0.13605 -67032,3204:360:2,40.5,-26,0,0,-0.13605 -67033,3204:361:1,41,-26,0,0,-0.13605 -67034,3204:361:2,41.5,-26,0,0,-0.13605 -67035,3204:362:1,42,-26,0,0,-0.13605 -67036,3204:362:2,42.5,-26,0,0,-0.13605 -67037,3204:363:1,43,-26,0,0,-0.13605 -67038,3204:363:2,43.5,-26,0,0,-0.13605 -67039,3204:364:1,44,-26,0,0,-0.13605 -67040,3204:364:2,44.5,-26,0,0,-0.13605 -67041,3204:465:1,45,-26,0,0,-0.13605 -67042,3204:465:2,45.5,-26,0,0,-0.13605 -67043,3204:466:1,46,-26,0,0,-0.13605 -67044,3204:466:2,46.5,-26,0,0,-0.13605 -67045,3204:467:1,47,-26,0,0,-0.13605 -67046,3204:467:2,47.5,-26,0,0,-0.13605 -67047,3204:468:1,48,-26,0,0,-0.13605 -67048,3204:468:2,48.5,-26,0,0,-0.13605 -67049,3204:469:1,49,-26,0,0,-0.13605 -67050,3204:469:2,49.5,-26,0,0,-0.13605 -67051,3205:360:1,50,-26,0,0,-0.13605 -67052,3205:360:2,50.5,-26,0,0,-0.13605 -67053,3205:361:1,51,-26,0,0,-0.13605 -67054,3205:361:2,51.5,-26,0,0,-0.13605 -67055,3205:362:1,52,-26,0,0,-0.13605 -67056,3205:362:2,52.5,-26,0,0,-0.13605 -67057,3205:363:1,53,-26,0,0,-0.13605 -67058,3205:363:2,53.5,-26,0,0,-0.13605 -67059,3205:364:1,54,-26,0,0,-0.13605 -67060,3205:364:2,54.5,-26,0,0,-0.13605 -67061,3205:465:1,55,-26,0,0,-0.13605 -67062,3205:465:2,55.5,-26,0,0,-0.13605 -67063,3205:466:1,56,-26,0,0,-0.13605 -67064,3205:466:2,56.5,-26,0,0,-0.13605 -67065,3205:467:1,57,-26,0,0,-0.13605 -67066,3205:467:2,57.5,-26,0,0,-0.13605 -67067,3205:468:1,58,-26,0,0,-0.13605 -67068,3205:468:2,58.5,-26,0,0,-0.13605 -67069,3205:469:1,59,-26,0,0,-0.13605 -67070,3205:469:2,59.5,-26,0,0,-0.13605 -67071,3206:360:1,60,-26,0,0,-0.13605 -67072,3206:360:2,60.5,-26,0,0,-0.13605 -67073,3206:361:1,61,-26,0,0,-0.13605 -67074,3206:361:2,61.5,-26,0,0,-0.13605 -67075,3206:362:1,62,-26,0,0,-0.13605 -67076,3206:362:2,62.5,-26,0,0,-0.13605 -67077,3206:363:1,63,-26,0,0,-0.13605 -67078,3206:363:2,63.5,-26,0,0,-0.13605 -67079,3206:364:1,64,-26,0,0,-0.13605 -67080,3206:364:2,64.5,-26,0,0,-0.13605 -67081,3206:465:1,65,-26,0,0,-0.13605 -67082,3206:465:2,65.5,-26,0,0,-0.13605 -67083,3206:466:1,66,-26,0,0,-0.13605 -67084,3206:466:2,66.5,-26,0,0,-0.13605 -67085,3206:467:1,67,-26,0,0,-0.13605 -67086,3206:467:2,67.5,-26,0,0,-0.13605 -67087,3206:468:1,68,-26,0,0,-0.13605 -67088,3206:468:2,68.5,-26,0,0,-0.13605 -67089,3206:469:1,69,-26,0,0,-0.13605 -67090,3206:469:2,69.5,-26,0,0,-0.13605 -67091,3207:360:1,70,-26,0,0,-0.13605 -67092,3207:360:2,70.5,-26,0,0,-0.13605 -67093,3207:361:1,71,-26,0,0,-0.13605 -67094,3207:361:2,71.5,-26,0,0,-0.13605 -67095,3207:362:1,72,-26,0,0,-0.13605 -67096,3207:362:2,72.5,-26,0,0,-0.13605 -67097,3207:363:2,73.5,-26,0,0,-0.13605 -67098,3207:364:1,74,-26,0,0,-0.13605 -67099,3207:364:2,74.5,-26,0,0,-0.13605 -67100,3207:465:1,75,-26,0,0,-0.13605 -67101,3207:465:2,75.5,-26,0,0,-0.13605 -67102,3207:466:1,76,-26,0,0,-0.13605 -67103,3207:466:2,76.5,-26,0,0,-0.13605 -67104,3207:467:1,77,-26,0,0,-0.13605 -67105,3207:467:2,77.5,-26,0,0,-0.13605 -67106,3207:468:1,78,-26,0,0,-0.13605 -67107,3207:468:2,78.5,-26,0,0,-0.13605 -67108,3207:469:1,79,-26,0,0,-0.13605 -67109,3207:469:2,79.5,-26,0,0,-0.13605 -67110,3208:360:1,80,-26,0,0,-0.13605 -67111,3208:360:2,80.5,-26,0,0,-0.13605 -67112,3208:361:1,81,-26,0,0,-0.13605 -67113,3208:361:2,81.5,-26,0,0,-0.13605 -67114,3208:362:1,82,-26,0,0,-0.13605 -67115,3208:362:2,82.5,-26,0,0,-0.13605 -67116,3208:363:1,83,-26,0,0,-0.13605 -67117,3208:363:2,83.5,-26,0,0,-0.13605 -67118,3208:364:1,84,-26,0,0,-0.13605 -67119,3208:364:2,84.5,-26,0,0,-0.13605 -67120,3208:465:1,85,-26,0,0,-0.13605 -67121,3208:465:2,85.5,-26,0,0,-0.13605 -67122,3208:466:1,86,-26,0,0,-0.13605 -67123,3208:466:2,86.5,-26,0,0,-0.13605 -67124,3208:467:1,87,-26,0,0,-0.13605 -67125,3208:467:2,87.5,-26,0,0,-0.13605 -67126,3208:468:1,88,-26,0,0,-0.13605 -67127,3208:468:2,88.5,-26,0,0,-0.13605 -67128,3208:469:1,89,-26,0,0,-0.13605 -67129,3208:469:2,89.5,-26,0,0,-0.13605 -67130,3209:360:1,90,-26,0,0,-0.13605 -67131,3209:360:2,90.5,-26,0,0,-0.13605 -67132,3209:361:1,91,-26,0,0,-0.13605 -67133,3209:361:2,91.5,-26,0,0,-0.13605 -67134,3209:362:1,92,-26,0,0,-0.13605 -67135,3209:362:2,92.5,-26,0,0,-0.13605 -67136,3209:363:1,93,-26,0,0,-0.13605 -67137,3209:363:2,93.5,-26,0,0,-0.13605 -67138,3209:364:1,94,-26,0,0,-0.13605 -67139,3209:364:2,94.5,-26,0,0,-0.13605 -67140,3209:465:1,95,-26,0,0,-0.13605 -67141,3209:465:2,95.5,-26,0,0,-0.13605 -67142,3209:466:1,96,-26,0,0,-0.13605 -67143,3209:466:2,96.5,-26,0,0,-0.13605 -67144,3209:467:1,97,-26,0,0,-0.13605 -67145,3209:467:2,97.5,-26,0,0,-0.13605 -67146,3209:468:1,98,-26,0,0,-0.13605 -67147,3209:468:2,98.5,-26,0,0,-0.13605 -67148,3209:469:1,99,-26,0,0,-0.13605 -67149,3209:469:2,99.5,-26,0,0,-0.13605 -67150,3210:360:1,100,-26,0,0,-0.13605 -67151,3210:360:2,100.5,-26,0,0,-0.13605 -67152,3210:361:1,101,-26,0,0,-0.13605 -67153,3210:361:2,101.5,-26,0,0,-0.13605 -67154,3210:362:1,102,-26,0,0,-0.13605 -67155,3210:362:2,102.5,-26,0,0,-0.13605 -67156,3210:363:1,103,-26,0,0,-0.13605 -67157,3210:363:2,103.5,-26,0,0,-0.13605 -67158,3210:364:1,104,-26,0,0,-0.13605 -67159,3210:364:2,104.5,-26,0,0,-0.13605 -67160,3210:465:1,105,-26,0,0,-0.13605 -67161,3210:465:2,105.5,-26,0,0,-0.13605 -67162,3210:466:1,106,-26,0,0,-0.13605 -67163,3210:466:2,106.5,-26,0,0,-0.13605 -67164,3210:467:1,107,-26,0,0,-0.13605 -67165,3210:467:2,107.5,-26,0,0,-0.13605 -67166,3210:468:1,108,-26,0,0,-0.13605 -67167,3210:468:2,108.5,-26,0,0,-0.13605 -67168,3210:469:1,109,-26,0,0,-0.13605 -67169,3210:469:2,109.5,-26,0,0,-0.13605 -67170,3211:360:1,110,-26,0,0,-0.13605 -67171,3211:360:2,110.5,-26,0,0,-0.13605 -67172,3211:361:1,111,-26,0,0,-0.13605 -67173,3211:361:2,111.5,-26,0,0,-0.13605 -67174,3211:362:1,112,-26,0,0,-0.13605 -67175,3211:362:2,112.5,-26,0,0,-0.13605 -67176,3211:363:1,113,-26,0,0,-0.13605 -67177,3211:363:2,113.5,-26,0,0,-0.13605 -67178,3211:364:1,114,-26,0,0,-0.13605 -67179,3211:364:2,114.5,-26,0,0,-0.13605 -67180,3211:465:1,115,-26,0,0,-0.13605 -67181,3212:360:1,120,-26,0,0,-0.13605 -67182,3212:360:2,120.5,-26,0,0,-0.13605 -67183,3212:361:1,121,-26,0,0,-0.13605 -67184,3212:361:2,121.5,-26,0,0,-0.13605 -67185,3212:362:1,122,-26,0,0,-0.13605 -67186,3212:362:2,122.5,-26,0,0,-0.13605 -67187,3212:363:1,123,-26,0,0,-0.13605 -67188,3212:363:2,123.5,-26,0,0,-0.13605 -67189,3212:364:1,124,-26,0,0,-0.13605 -67190,3212:364:2,124.5,-26,0,0,-0.13605 -67191,3212:465:1,125,-26,0,0,-0.13605 -67192,3212:465:2,125.5,-26,0,0,-0.13605 -67193,3212:466:1,126,-26,0,0,-0.13605 -67194,3212:466:2,126.5,-26,0,0,-0.13605 -67195,3212:467:1,127,-26,0,0,-0.13605 -67196,3212:467:2,127.5,-26,0,0,-0.13605 -67197,3212:468:1,128,-26,0,0,-0.13605 -67198,3212:468:2,128.5,-26,0,0,-0.13605 -67199,3212:469:1,129,-26,0,0,-0.13605 -67200,3212:469:2,129.5,-26,0,0,-0.13605 -67201,3213:360:1,130,-26,0,0,-0.13605 -67202,3213:360:2,130.5,-26,0,0,-0.13605 -67203,3213:361:1,131,-26,0,0,-0.13605 -67204,3213:361:2,131.5,-26,0,0,-0.13605 -67205,3213:362:1,132,-26,0,0,-0.13605 -67206,3213:362:2,132.5,-26,0,0,-0.13605 -67207,3213:363:1,133,-26,0,0,-0.13605 -67208,3213:363:2,133.5,-26,0,0,-0.13605 -67209,3213:364:1,134,-26,0,0,-0.13605 -67210,3213:364:2,134.5,-26,0,0,-0.13605 -67211,3213:465:1,135,-26,0,0,-0.13605 -67212,3213:467:1,137,-26,0,0,-0.13605 -67213,3213:467:2,137.5,-26,0,0,-0.13605 -67214,3215:361:2,151.5,-26,0,0,-0.13605 -67215,3215:362:1,152,-26,0,0,-0.13605 -67216,3215:362:2,152.5,-26,0,0,-0.13605 -67217,3215:363:1,153,-26,0,0,-0.13605 -67218,3215:363:2,153.5,-26,0,0,-0.13605 -67219,3215:364:1,154,-26,0,0,-0.13605 -67220,3215:364:2,154.5,-26,0,0,-0.13605 -67221,3215:465:1,155,-26,0,0,-0.13605 -67222,3215:465:2,155.5,-26,0,0,-0.13605 -67223,3215:466:1,156,-26,0,0,-0.13605 -67224,3215:466:2,156.5,-26,0,0,-0.13605 -67225,3215:467:1,157,-26,0,0,-0.13605 -67226,3215:467:2,157.5,-26,0,0,-0.13605 -67227,3215:468:1,158,-26,0,0,-0.13605 -67228,3215:468:2,158.5,-26,0,0,-0.13605 -67229,3215:469:1,159,-26,0,0,-0.13605 -67230,3215:469:2,159.5,-26,0,0,-0.13605 -67231,3216:360:1,160,-26,0,0,-0.13605 -67232,3216:360:2,160.5,-26,0,0,-0.13605 -67233,3216:361:1,161,-26,0,0,-0.13605 -67234,3216:361:2,161.5,-26,0,0,-0.13605 -67235,3216:362:1,162,-26,0,0,-0.13605 -67236,3216:362:2,162.5,-26,0,0,-0.13605 -67237,3216:363:1,163,-26,0,0,-0.13605 -67238,3216:363:2,163.5,-26,0,0,-0.13605 -67239,3216:364:1,164,-26,0,0,-0.13605 -67240,3216:364:2,164.5,-26,0,0,-0.13605 -67241,3216:465:1,165,-26,0,0,-0.13605 -67242,3216:465:2,165.5,-26,0,0,-0.13605 -67243,3216:466:1,166,-26,0,0,-0.13605 -67244,3216:466:2,166.5,-26,0,0,-0.13605 -67245,3216:467:1,167,-26,0,0,-0.13605 -67246,3216:467:2,167.5,-26,0,0,-0.13605 -67247,3216:468:1,168,-26,0,0,-0.13605 -67248,3216:468:2,168.5,-26,0,0,-0.13605 -67249,3216:469:1,169,-26,0,0,-0.13605 -67250,3216:469:2,169.5,-26,0,0,-0.13605 -67251,3217:360:1,170,-26,0,0,-0.13605 -67252,3217:360:2,170.5,-26,0,0,-0.13605 -67253,3217:361:1,171,-26,0,0,-0.13605 -67254,3217:361:2,171.5,-26,0,0,-0.13605 -67255,3217:362:1,172,-26,0,0,-0.13605 -67256,3217:362:2,172.5,-26,0,0,-0.13605 -67257,3217:363:1,173,-26,0,0,-0.13605 -67258,3217:363:2,173.5,-26,0,0,-0.13605 -67259,3217:364:1,174,-26,0,0,-0.13605 -67260,3217:364:2,174.5,-26,0,0,-0.13605 -67261,3217:465:1,175,-26,0,0,-0.13605 -67262,3217:465:2,175.5,-26,0,0,-0.13605 -67263,3217:466:1,176,-26,0,0,-0.13605 -67264,3217:466:2,176.5,-26,0,0,-0.13605 -67265,3217:467:1,177,-26,0,0,-0.13605 -67266,3217:467:2,177.5,-26,0,0,-0.13605 -67267,3217:468:1,178,-26,0,0,-0.13605 -67268,3217:468:2,178.5,-26,0,0,-0.13605 -67269,3217:469:1,179,-26,0,0,-0.13605 -67270,3217:469:2,179.5,-26,0,0,-0.13605 -67271,3218:360:1,180,-26,0,0,-0.13605 -67272,5218:350:3,-180,-25.5,0,0,-0.13605 -67273,5217:459:4,-179.5,-25.5,0,0,-0.13605 -67274,5217:459:3,-179,-25.5,0,0,-0.13605 -67275,5217:458:4,-178.5,-25.5,0,0,-0.13605 -67276,5217:458:3,-178,-25.5,0,0,-0.13605 -67277,5217:457:4,-177.5,-25.5,0,0,-0.13605 -67278,5217:457:3,-177,-25.5,0,0,-0.13605 -67279,5217:456:4,-176.5,-25.5,0,0,-0.13605 -67280,5217:456:3,-176,-25.5,0,0,-0.13605 -67281,5217:455:4,-175.5,-25.5,0,0,-0.13605 -67282,5217:455:3,-175,-25.5,0,0,-0.13605 -67283,5217:354:4,-174.5,-25.5,0,0,-0.13605 -67284,5217:354:3,-174,-25.5,0,0,-0.13605 -67285,5217:353:4,-173.5,-25.5,0,0,-0.13605 -67286,5217:353:3,-173,-25.5,0,0,-0.13605 -67287,5217:352:4,-172.5,-25.5,0,0,-0.13605 -67288,5217:352:3,-172,-25.5,0,0,-0.13605 -67289,5217:351:4,-171.5,-25.5,0,0,-0.13605 -67290,5217:351:3,-171,-25.5,0,0,-0.13605 -67291,5217:350:4,-170.5,-25.5,0,0,-0.13605 -67292,5217:350:3,-170,-25.5,0,0,-0.13605 -67293,5216:459:4,-169.5,-25.5,0,0,-0.13605 -67294,5216:459:3,-169,-25.5,0,0,-0.13605 -67295,5216:458:4,-168.5,-25.5,0,0,-0.13605 -67296,5216:458:3,-168,-25.5,0,0,-0.13605 -67297,5216:457:4,-167.5,-25.5,0,0,-0.13605 -67298,5216:457:3,-167,-25.5,0,0,-0.13605 -67299,5216:456:4,-166.5,-25.5,0,0,-0.13605 -67300,5216:456:3,-166,-25.5,0,0,-0.13605 -67301,5216:455:4,-165.5,-25.5,0,0,-0.13605 -67302,5216:455:3,-165,-25.5,0,0,-0.13605 -67303,5216:354:4,-164.5,-25.5,0,0,-0.13605 -67304,5216:354:3,-164,-25.5,0,0,-0.13605 -67305,5216:353:4,-163.5,-25.5,0,0,-0.13605 -67306,5216:353:3,-163,-25.5,0,0,-0.13605 -67307,5216:352:4,-162.5,-25.5,0,0,-0.13605 -67308,5216:352:3,-162,-25.5,0,0,-0.13605 -67309,5216:351:4,-161.5,-25.5,0,0,-0.13605 -67310,5216:351:3,-161,-25.5,0,0,-0.13605 -67311,5216:350:4,-160.5,-25.5,0,0,-0.13605 -67312,5216:350:3,-160,-25.5,0,0,-0.13605 -67313,5215:459:4,-159.5,-25.5,0,0,-0.13605 -67314,5215:459:3,-159,-25.5,0,0,-0.13605 -67315,5215:458:4,-158.5,-25.5,0,0,-0.13605 -67316,5215:458:3,-158,-25.5,0,0,-0.13605 -67317,5215:457:4,-157.5,-25.5,0,0,-0.13605 -67318,5215:457:3,-157,-25.5,0,0,-0.13605 -67319,5215:456:4,-156.5,-25.5,0,0,-0.13605 -67320,5215:456:3,-156,-25.5,0,0,-0.13605 -67321,5215:455:4,-155.5,-25.5,0,0,-0.13605 -67322,5215:455:3,-155,-25.5,0,0,-0.13605 -67323,5215:354:4,-154.5,-25.5,0,0,-0.13605 -67324,5215:354:3,-154,-25.5,0,0,-0.13605 -67325,5215:353:4,-153.5,-25.5,0,0,-0.13605 -67326,5215:353:3,-153,-25.5,0,0,-0.13605 -67327,5215:352:4,-152.5,-25.5,0,0,-0.13605 -67328,5215:352:3,-152,-25.5,0,0,-0.13605 -67329,5215:351:4,-151.5,-25.5,0,0,-0.13605 -67330,5215:351:3,-151,-25.5,0,0,-0.13605 -67331,5215:350:4,-150.5,-25.5,0,0,-0.13605 -67332,5215:350:3,-150,-25.5,0,0,-0.13605 -67333,5214:459:4,-149.5,-25.5,0,0,-0.13605 -67334,5214:459:3,-149,-25.5,0,0,-0.13605 -67335,5214:458:4,-148.5,-25.5,0,0,-0.13605 -67336,5214:458:3,-148,-25.5,0,0,-0.13605 -67337,5214:457:4,-147.5,-25.5,0,0,-0.13605 -67338,5214:457:3,-147,-25.5,0,0,-0.13605 -67339,5214:456:4,-146.5,-25.5,0,0,-0.13605 -67340,5214:456:3,-146,-25.5,0,0,-0.13605 -67341,5214:455:4,-145.5,-25.5,0,0,-0.13605 -67342,5214:455:3,-145,-25.5,0,0,-0.13605 -67343,5214:354:4,-144.5,-25.5,0,0,-0.13605 -67344,5214:354:3,-144,-25.5,0,0,-0.13605 -67345,5214:353:4,-143.5,-25.5,0,0,-0.13605 -67346,5214:353:3,-143,-25.5,0,0,-0.13605 -67347,5214:352:4,-142.5,-25.5,0,0,-0.13605 -67348,5214:352:3,-142,-25.5,0,0,-0.13605 -67349,5214:351:4,-141.5,-25.5,0,0,-0.13605 -67350,5214:351:3,-141,-25.5,0,0,-0.13605 -67351,5214:350:4,-140.5,-25.5,0,0,-0.13605 -67352,5214:350:3,-140,-25.5,0,0,-0.13605 -67353,5213:459:4,-139.5,-25.5,0,0,-0.13605 -67354,5213:459:3,-139,-25.5,0,0,-0.13605 -67355,5213:458:4,-138.5,-25.5,0,0,-0.13605 -67356,5213:458:3,-138,-25.5,0,0,-0.13605 -67357,5213:457:4,-137.5,-25.5,0,0,-0.13605 -67358,5213:457:3,-137,-25.5,0,0,-0.13605 -67359,5213:456:4,-136.5,-25.5,0,0,-0.13605 -67360,5213:456:3,-136,-25.5,0,0,-0.13605 -67361,5213:455:4,-135.5,-25.5,0,0,-0.13605 -67362,5213:455:3,-135,-25.5,0,0,-0.13605 -67363,5213:354:4,-134.5,-25.5,0,0,-0.13605 -67364,5213:354:3,-134,-25.5,0,0,-0.13605 -67365,5213:353:4,-133.5,-25.5,0,0,-0.13605 -67366,5213:353:3,-133,-25.5,0,0,-0.13605 -67367,5213:352:4,-132.5,-25.5,0,0,-0.13605 -67368,5213:352:3,-132,-25.5,0,0,-0.13605 -67369,5213:351:4,-131.5,-25.5,0,0,-0.13605 -67370,5213:351:3,-131,-25.5,0,0,-0.13605 -67371,5213:350:4,-130.5,-25.5,0,0,-0.13605 -67372,5213:350:3,-130,-25.5,0,0,-0.13605 -67373,5212:459:4,-129.5,-25.5,0,0,-0.13605 -67374,5212:459:3,-129,-25.5,0,0,-0.13605 -67375,5212:458:4,-128.5,-25.5,0,0,-0.13605 -67376,5212:458:3,-128,-25.5,0,0,-0.13605 -67377,5212:457:4,-127.5,-25.5,0,0,-0.13605 -67378,5212:457:3,-127,-25.5,0,0,-0.13605 -67379,5212:456:4,-126.5,-25.5,0,0,-0.13605 -67380,5212:456:3,-126,-25.5,0,0,-0.13605 -67381,5212:455:4,-125.5,-25.5,0,0,-0.13605 -67382,5212:455:3,-125,-25.5,0,0,-0.13605 -67383,5212:354:4,-124.5,-25.5,0,0,-0.13605 -67384,5212:354:3,-124,-25.5,0,0,-0.13605 -67385,5212:353:4,-123.5,-25.5,0,0,-0.13605 -67386,5212:353:3,-123,-25.5,0,0,-0.13605 -67387,5212:352:4,-122.5,-25.5,0,0,-0.13605 -67388,5212:352:3,-122,-25.5,0,0,-0.13605 -67389,5212:351:4,-121.5,-25.5,0,0,-0.13605 -67390,5212:351:3,-121,-25.5,0,0,-0.13605 -67391,5212:350:4,-120.5,-25.5,0,0,-0.13605 -67392,5212:350:3,-120,-25.5,0,0,-0.13605 -67393,5211:459:4,-119.5,-25.5,0,0,-0.13605 -67394,5211:459:3,-119,-25.5,0,0,-0.13605 -67395,5211:458:4,-118.5,-25.5,0,0,-0.13605 -67396,5211:458:3,-118,-25.5,0,0,-0.13605 -67397,5211:457:4,-117.5,-25.5,0,0,-0.13605 -67398,5211:457:3,-117,-25.5,0,0,-0.13605 -67399,5211:456:4,-116.5,-25.5,0,0,-0.13605 -67400,5211:456:3,-116,-25.5,0,0,-0.13605 -67401,5211:455:4,-115.5,-25.5,0,0,-0.13605 -67402,5211:455:3,-115,-25.5,0,0,-0.13605 -67403,5211:354:4,-114.5,-25.5,0,0,-0.13605 -67404,5211:354:3,-114,-25.5,0,0,-0.13605 -67405,5211:353:4,-113.5,-25.5,0,0,-0.13605 -67406,5211:353:3,-113,-25.5,0,0,-0.13605 -67407,5211:352:4,-112.5,-25.5,0,0,-0.13605 -67408,5211:352:3,-112,-25.5,0,0,-0.13605 -67409,5211:351:4,-111.5,-25.5,0,0,-0.13605 -67410,5211:351:3,-111,-25.5,0,0,-0.13605 -67411,5211:350:4,-110.5,-25.5,0,0,-0.13605 -67412,5211:350:3,-110,-25.5,0,0,-0.13605 -67413,5210:459:4,-109.5,-25.5,0,0,-0.13605 -67414,5210:459:3,-109,-25.5,0,0,-0.13605 -67415,5210:458:4,-108.5,-25.5,0,0,-0.13605 -67416,5210:458:3,-108,-25.5,0,0,-0.13605 -67417,5210:457:4,-107.5,-25.5,0,0,-0.13605 -67418,5210:457:3,-107,-25.5,0,0,-0.13605 -67419,5210:456:4,-106.5,-25.5,0,0,-0.13605 -67420,5210:456:3,-106,-25.5,0,0,-0.13605 -67421,5210:455:4,-105.5,-25.5,0,0,-0.13605 -67422,5210:455:3,-105,-25.5,0,0,-0.13605 -67423,5210:354:4,-104.5,-25.5,0,0,-0.13605 -67424,5210:354:3,-104,-25.5,0,0,-0.13605 -67425,5210:353:4,-103.5,-25.5,0,0,-0.13605 -67426,5210:353:3,-103,-25.5,0,0,-0.13605 -67427,5210:352:4,-102.5,-25.5,0,0,-0.13605 -67428,5210:352:3,-102,-25.5,0,0,-0.13605 -67429,5210:351:4,-101.5,-25.5,0,0,-0.13605 -67430,5210:351:3,-101,-25.5,0,0,-0.13605 -67431,5210:350:4,-100.5,-25.5,0,0,-0.13605 -67432,5210:350:3,-100,-25.5,0,0,-0.13605 -67433,5209:459:4,-99.5,-25.5,0,0,-0.13605 -67434,5209:459:3,-99,-25.5,0,0,-0.13605 -67435,5209:458:4,-98.5,-25.5,0,0,-0.13605 -67436,5209:458:3,-98,-25.5,0,0,-0.13605 -67437,5209:457:4,-97.5,-25.5,0,0,-0.13605 -67438,5209:457:3,-97,-25.5,0,0,-0.13605 -67439,5209:456:4,-96.5,-25.5,0,0,-0.13605 -67440,5209:456:3,-96,-25.5,0,0,-0.13605 -67441,5209:455:4,-95.5,-25.5,0,0,-0.13605 -67442,5209:455:3,-95,-25.5,0,0,-0.13605 -67443,5209:354:4,-94.5,-25.5,0,0,-0.13605 -67444,5209:354:3,-94,-25.5,0,0,-0.13605 -67445,5209:353:4,-93.5,-25.5,0,0,-0.13605 -67446,5209:353:3,-93,-25.5,0,0,-0.13605 -67447,5209:352:4,-92.5,-25.5,0,0,-0.13605 -67448,5209:352:3,-92,-25.5,0,0,-0.13605 -67449,5209:351:4,-91.5,-25.5,0,0,-0.13605 -67450,5209:351:3,-91,-25.5,0,0,-0.13605 -67451,5209:350:4,-90.5,-25.5,0,0,-0.13605 -67452,5209:350:3,-90,-25.5,0,0,-0.13605 -67453,5208:459:4,-89.5,-25.5,0,0,-0.13605 -67454,5208:459:3,-89,-25.5,0,0,-0.13605 -67455,5208:458:4,-88.5,-25.5,0,0,-0.13605 -67456,5208:458:3,-88,-25.5,0,0,-0.13605 -67457,5208:457:4,-87.5,-25.5,0,0,-0.13605 -67458,5208:457:3,-87,-25.5,0,0,-0.13605 -67459,5208:456:4,-86.5,-25.5,0,0,-0.13605 -67460,5208:456:3,-86,-25.5,0,0,-0.13605 -67461,5208:455:4,-85.5,-25.5,0,0,-0.13605 -67462,5208:455:3,-85,-25.5,0,0,-0.13605 -67463,5208:354:4,-84.5,-25.5,0,0,-0.13605 -67464,5208:354:3,-84,-25.5,0,0,-0.13605 -67465,5208:353:4,-83.5,-25.5,0,0,-0.13605 -67466,5208:353:3,-83,-25.5,0,0,-0.13605 -67467,5208:352:4,-82.5,-25.5,0,0,-0.13605 -67468,5208:352:3,-82,-25.5,0,0,-0.13605 -67469,5208:351:4,-81.5,-25.5,0,0,-0.13605 -67470,5208:351:3,-81,-25.5,0,0,-0.13605 -67471,5208:350:4,-80.5,-25.5,0,0,-0.13605 -67472,5208:350:3,-80,-25.5,0,0,-0.13605 -67473,5207:459:4,-79.5,-25.5,0,0,-0.13605 -67474,5207:459:3,-79,-25.5,0,0,-0.13605 -67475,5207:458:4,-78.5,-25.5,0,0,-0.13605 -67476,5207:458:3,-78,-25.5,0,0,-0.13605 -67477,5207:457:4,-77.5,-25.5,0,0,-0.13605 -67478,5207:457:3,-77,-25.5,0,0,-0.13605 -67479,5207:456:4,-76.5,-25.5,0,0,-0.13605 -67480,5207:456:3,-76,-25.5,0,0,-0.13605 -67481,5207:455:4,-75.5,-25.5,0,0,-0.13605 -67482,5207:455:3,-75,-25.5,0,0,-0.13605 -67483,5207:354:4,-74.5,-25.5,0,0,-0.13605 -67484,5207:354:3,-74,-25.5,0,0,-0.13605 -67485,5207:353:4,-73.5,-25.5,0,0,-0.13605 -67486,5207:353:3,-73,-25.5,0,0,-0.13605 -67487,5207:352:4,-72.5,-25.5,0,0,-0.13605 -67488,5207:352:3,-72,-25.5,0,0,-0.13605 -67489,5205:352:4,-52.5,-25.5,0,0,-0.13605 -67490,5205:352:3,-52,-25.5,0,0,-0.13605 -67491,5205:351:4,-51.5,-25.5,0,0,-0.13605 -67492,5205:351:3,-51,-25.5,0,0,-0.13605 -67493,5205:350:4,-50.5,-25.5,0,0,-0.13605 -67494,5205:350:3,-50,-25.5,0,0,-0.13605 -67495,5204:459:4,-49.5,-25.5,0,0,-0.13605 -67496,5204:459:3,-49,-25.5,0,0,-0.13605 -67497,5204:458:4,-48.5,-25.5,0,0,-0.13605 -67498,5204:458:3,-48,-25.5,0,0,-0.13605 -67499,5204:457:4,-47.5,-25.5,0,0,-0.13605 -67500,5204:457:3,-47,-25.5,0,0,-0.13605 -67501,5204:456:4,-46.5,-25.5,0,0,-0.13605 -67502,5204:456:3,-46,-25.5,0,0,-0.13605 -67503,5204:455:4,-45.5,-25.5,0,0,-0.13605 -67504,5204:455:3,-45,-25.5,0,0,-0.13605 -67505,5204:354:4,-44.5,-25.5,0,0,-0.13605 -67506,5204:354:3,-44,-25.5,0,0,-0.13605 -67507,5204:353:4,-43.5,-25.5,0,0,-0.13605 -67508,5204:353:3,-43,-25.5,0,0,-0.13605 -67509,5204:352:4,-42.5,-25.5,0,0,-0.13605 -67510,5204:352:3,-42,-25.5,0,0,-0.13605 -67511,5204:351:4,-41.5,-25.5,0,0,-0.13605 -67512,5204:351:3,-41,-25.5,0,0,-0.13605 -67513,5204:350:4,-40.5,-25.5,0,0,-0.13605 -67514,5204:350:3,-40,-25.5,0,0,-0.13605 -67515,5203:459:4,-39.5,-25.5,0,0,-0.13605 -67516,5203:459:3,-39,-25.5,0,0,-0.13605 -67517,5203:458:4,-38.5,-25.5,0,0,-0.13605 -67518,5203:458:3,-38,-25.5,0,0,-0.13605 -67519,5203:457:4,-37.5,-25.5,0,0,-0.13605 -67520,5203:457:3,-37,-25.5,0,0,-0.13605 -67521,5203:456:4,-36.5,-25.5,0,0,-0.13605 -67522,5203:456:3,-36,-25.5,0,0,-0.13605 -67523,5203:455:4,-35.5,-25.5,0,0,-0.13605 -67524,5203:455:3,-35,-25.5,0,0,-0.13605 -67525,5203:354:4,-34.5,-25.5,0,0,-0.13605 -67526,5203:354:3,-34,-25.5,0,0,-0.13605 -67527,5203:353:4,-33.5,-25.5,0,0,-0.13605 -67528,5203:353:3,-33,-25.5,0,0,-0.13605 -67529,5203:352:4,-32.5,-25.5,0,0,-0.13605 -67530,5203:352:3,-32,-25.5,0,0,-0.13605 -67531,5203:351:4,-31.5,-25.5,0,0,-0.13605 -67532,5203:351:3,-31,-25.5,0,0,-0.13605 -67533,5203:350:4,-30.5,-25.5,0,0,-0.13605 -67534,5203:350:3,-30,-25.5,0,0,-0.13605 -67535,5202:459:4,-29.5,-25.5,0,0,-0.13605 -67536,5202:459:3,-29,-25.5,0,0,-0.13605 -67537,5202:458:4,-28.5,-25.5,0,0,-0.13605 -67538,5202:458:3,-28,-25.5,0,0,-0.13605 -67539,5202:457:4,-27.5,-25.5,0,0,-0.13605 -67540,5202:457:3,-27,-25.5,0,0,-0.13605 -67541,5202:456:4,-26.5,-25.5,0,0,-0.13605 -67542,5202:456:3,-26,-25.5,0,0,-0.13605 -67543,5202:455:4,-25.5,-25.5,0,0,-0.13605 -67544,5202:455:3,-25,-25.5,0,0,-0.13605 -67545,5202:354:4,-24.5,-25.5,0,0,-0.13605 -67546,5202:354:3,-24,-25.5,0,0,-0.13605 -67547,5202:353:4,-23.5,-25.5,0,0,-0.13605 -67548,5202:353:3,-23,-25.5,0,0,-0.13605 -67549,5202:352:4,-22.5,-25.5,0,0,-0.13605 -67550,5202:352:3,-22,-25.5,0,0,-0.13605 -67551,5202:351:4,-21.5,-25.5,0,0,-0.13605 -67552,5202:351:3,-21,-25.5,0,0,-0.13605 -67553,5202:350:4,-20.5,-25.5,0,0,-0.13605 -67554,5202:350:3,-20,-25.5,0,0,-0.13605 -67555,5201:459:4,-19.5,-25.5,0,0,-0.13605 -67556,5201:459:3,-19,-25.5,0,0,-0.13605 -67557,5201:458:4,-18.5,-25.5,0,0,-0.13605 -67558,5201:458:3,-18,-25.5,0,0,-0.13605 -67559,5201:457:4,-17.5,-25.5,0,0,-0.13605 -67560,5201:457:3,-17,-25.5,0,0,-0.13605 -67561,5201:456:4,-16.5,-25.5,0,0,-0.13605 -67562,5201:456:3,-16,-25.5,0,0,-0.13605 -67563,5201:455:4,-15.5,-25.5,0,0,-0.13605 -67564,5201:455:3,-15,-25.5,0,0,-0.13605 -67565,5201:354:4,-14.5,-25.5,0,0,-0.13605 -67566,5201:354:3,-14,-25.5,0,0,-0.13605 -67567,5201:353:4,-13.5,-25.5,0,0,-0.13605 -67568,5201:353:3,-13,-25.5,0,0,-0.13605 -67569,5201:352:4,-12.5,-25.5,0,0,-0.13605 -67570,5201:352:3,-12,-25.5,0,0,-0.13605 -67571,5201:351:4,-11.5,-25.5,0,0,-0.13605 -67572,5201:351:3,-11,-25.5,0,0,-0.13605 -67573,5201:350:4,-10.5,-25.5,0,0,-0.13605 -67574,5201:350:3,-10,-25.5,0,0,-0.13605 -67575,5200:459:4,-9.5,-25.5,0,0,-0.13605 -67576,5200:459:3,-9,-25.5,0,0,-0.13605 -67577,5200:458:4,-8.5,-25.5,0,0,-0.13605 -67578,5200:458:3,-8,-25.5,0,0,-0.13605 -67579,5200:457:4,-7.5,-25.5,0,0,-0.13605 -67580,5200:457:3,-7,-25.5,0,0,-0.13605 -67581,5200:456:4,-6.5,-25.5,0,0,-0.13605 -67582,5200:456:3,-6,-25.5,0,0,-0.13605 -67583,5200:455:4,-5.5,-25.5,0,0,-0.13605 -67584,5200:455:3,-5,-25.5,0,0,-0.13605 -67585,5200:354:4,-4.5,-25.5,0,0,-0.13605 -67586,5200:354:3,-4,-25.5,0,0,-0.13605 -67587,5200:353:4,-3.5,-25.5,0,0,-0.13605 -67588,5200:353:3,-3,-25.5,0,0,-0.13605 -67589,5200:352:4,-2.5,-25.5,0,0,-0.13605 -67590,5200:352:3,-2,-25.5,0,0,-0.13605 -67591,5200:351:4,-1.5,-25.5,0,0,-0.13605 -67592,5200:351:3,-1,-25.5,0,0,-0.13605 -67593,5200:350:4,-0.5,-25.5,0,0,-0.13605 -67594,3200:350:4,0,-25.5,0,0,-0.13605 -67595,3200:350:4,0.5,-25.5,0,0,-0.13605 -67596,3200:351:3,1,-25.5,0,0,-0.13605 -67597,3200:351:4,1.5,-25.5,0,0,-0.13605 -67598,3200:352:3,2,-25.5,0,0,-0.13605 -67599,3200:352:4,2.5,-25.5,0,0,-0.13605 -67600,3200:353:3,3,-25.5,0,0,-0.13605 -67601,3200:353:4,3.5,-25.5,0,0,-0.13605 -67602,3200:354:3,4,-25.5,0,0,-0.13605 -67603,3200:354:4,4.5,-25.5,0,0,-0.13605 -67604,3200:455:3,5,-25.5,0,0,-0.13605 -67605,3200:455:4,5.5,-25.5,0,0,-0.13605 -67606,3200:456:3,6,-25.5,0,0,-0.13605 -67607,3200:456:4,6.5,-25.5,0,0,-0.13605 -67608,3200:457:3,7,-25.5,0,0,-0.13605 -67609,3200:457:4,7.5,-25.5,0,0,-0.13605 -67610,3200:458:3,8,-25.5,0,0,-0.13605 -67611,3200:458:4,8.5,-25.5,0,0,-0.13605 -67612,3200:459:3,9,-25.5,0,0,-0.13605 -67613,3200:459:4,9.5,-25.5,0,0,-0.13605 -67614,3201:350:3,10,-25.5,0,0,-0.13605 -67615,3201:350:4,10.5,-25.5,0,0,-0.13605 -67616,3201:351:3,11,-25.5,0,0,-0.13605 -67617,3201:351:4,11.5,-25.5,0,0,-0.13605 -67618,3201:352:3,12,-25.5,0,0,-0.13605 -67619,3201:352:4,12.5,-25.5,0,0,-0.13605 -67620,3201:353:3,13,-25.5,0,0,-0.13605 -67621,3201:353:4,13.5,-25.5,0,0,-0.13605 -67622,3201:354:3,14,-25.5,0,0,-0.13605 -67623,3201:354:4,14.5,-25.5,0,0,-0.13605 -67624,3201:455:3,15,-25.5,0,0,-0.13605 -67625,3201:455:4,15.5,-25.5,0,0,-0.13605 -67626,3201:456:3,16,-25.5,0,0,-0.13605 -67627,3201:456:4,16.5,-25.5,0,0,-0.13605 -67628,3201:457:3,17,-25.5,0,0,-0.13605 -67629,3201:457:4,17.5,-25.5,0,0,-0.13605 -67630,3202:457:4,27.5,-25.5,0,0,-0.13605 -67631,3202:458:3,28,-25.5,0,0,-0.13605 -67632,3202:458:4,28.5,-25.5,0,0,-0.13605 -67633,3202:459:3,29,-25.5,0,0,-0.13605 -67634,3202:459:4,29.5,-25.5,0,0,-0.13605 -67635,3203:350:3,30,-25.5,0,0,-0.13605 -67636,3203:350:4,30.5,-25.5,0,0,-0.13605 -67637,3203:351:3,31,-25.5,0,0,-0.13605 -67638,3203:351:4,31.5,-25.5,0,0,-0.13605 -67639,3203:352:3,32,-25.5,0,0,-0.13605 -67640,3203:352:4,32.5,-25.5,0,0,-0.13605 -67641,3203:353:3,33,-25.5,0,0,-0.13605 -67642,3203:353:4,33.5,-25.5,0,0,-0.13605 -67643,3203:354:3,34,-25.5,0,0,-0.13605 -67644,3203:354:4,34.5,-25.5,0,0,-0.13605 -67645,3203:455:3,35,-25.5,0,0,-0.13605 -67646,3203:455:4,35.5,-25.5,0,0,-0.13605 -67647,3203:456:3,36,-25.5,0,0,-0.13605 -67648,3203:456:4,36.5,-25.5,0,0,-0.13605 -67649,3203:457:3,37,-25.5,0,0,-0.13605 -67650,3203:457:4,37.5,-25.5,0,0,-0.13605 -67651,3203:458:3,38,-25.5,0,0,-0.13605 -67652,3203:458:4,38.5,-25.5,0,0,-0.13605 -67653,3203:459:3,39,-25.5,0,0,-0.13605 -67654,3203:459:4,39.5,-25.5,0,0,-0.13605 -67655,3204:350:3,40,-25.5,0,0,-0.13605 -67656,3204:350:4,40.5,-25.5,0,0,-0.13605 -67657,3204:351:3,41,-25.5,0,0,-0.13605 -67658,3204:351:4,41.5,-25.5,0,0,-0.13605 -67659,3204:352:3,42,-25.5,0,0,-0.13605 -67660,3204:352:4,42.5,-25.5,0,0,-0.13605 -67661,3204:353:3,43,-25.5,0,0,-0.13605 -67662,3204:353:4,43.5,-25.5,0,0,-0.13605 -67663,3204:354:3,44,-25.5,0,0,-0.13605 -67664,3204:354:4,44.5,-25.5,0,0,-0.13605 -67665,3204:455:3,45,-25.5,0,0,-0.13605 -67666,3204:455:4,45.5,-25.5,0,0,-0.13605 -67667,3204:456:3,46,-25.5,0,0,-0.13605 -67668,3204:456:4,46.5,-25.5,0,0,-0.13605 -67669,3204:457:3,47,-25.5,0,0,-0.13605 -67670,3204:457:4,47.5,-25.5,0,0,-0.13605 -67671,3204:458:3,48,-25.5,0,0,-0.13605 -67672,3204:458:4,48.5,-25.5,0,0,-0.13605 -67673,3204:459:3,49,-25.5,0,0,-0.13605 -67674,3204:459:4,49.5,-25.5,0,0,-0.13605 -67675,3205:350:3,50,-25.5,0,0,-0.13605 -67676,3205:350:4,50.5,-25.5,0,0,-0.13605 -67677,3205:351:3,51,-25.5,0,0,-0.13605 -67678,3205:351:4,51.5,-25.5,0,0,-0.13605 -67679,3205:352:3,52,-25.5,0,0,-0.13605 -67680,3205:352:4,52.5,-25.5,0,0,-0.13605 -67681,3205:353:3,53,-25.5,0,0,-0.13605 -67682,3205:353:4,53.5,-25.5,0,0,-0.13605 -67683,3205:354:3,54,-25.5,0,0,-0.13605 -67684,3205:354:4,54.5,-25.5,0,0,-0.13605 -67685,3205:455:3,55,-25.5,0,0,-0.13605 -67686,3205:455:4,55.5,-25.5,0,0,-0.13605 -67687,3205:456:3,56,-25.5,0,0,-0.13605 -67688,3205:456:4,56.5,-25.5,0,0,-0.13605 -67689,3205:457:3,57,-25.5,0,0,-0.13605 -67690,3205:457:4,57.5,-25.5,0,0,-0.13605 -67691,3205:458:3,58,-25.5,0,0,-0.13605 -67692,3205:458:4,58.5,-25.5,0,0,-0.13605 -67693,3205:459:3,59,-25.5,0,0,-0.13605 -67694,3205:459:4,59.5,-25.5,0,0,-0.13605 -67695,3206:350:3,60,-25.5,0,0,-0.13605 -67696,3206:350:4,60.5,-25.5,0,0,-0.13605 -67697,3206:351:3,61,-25.5,0,0,-0.13605 -67698,3206:351:4,61.5,-25.5,0,0,-0.13605 -67699,3206:352:3,62,-25.5,0,0,-0.13605 -67700,3206:352:4,62.5,-25.5,0,0,-0.13605 -67701,3206:353:3,63,-25.5,0,0,-0.13605 -67702,3206:353:4,63.5,-25.5,0,0,-0.13605 -67703,3206:354:3,64,-25.5,0,0,-0.13605 -67704,3206:354:4,64.5,-25.5,0,0,-0.13605 -67705,3206:455:3,65,-25.5,0,0,-0.13605 -67706,3206:455:4,65.5,-25.5,0,0,-0.13605 -67707,3206:456:3,66,-25.5,0,0,-0.13605 -67708,3206:456:4,66.5,-25.5,0,0,-0.13605 -67709,3206:457:3,67,-25.5,0,0,-0.13605 -67710,3206:457:4,67.5,-25.5,0,0,-0.13605 -67711,3206:458:3,68,-25.5,0,0,-0.13605 -67712,3206:458:4,68.5,-25.5,0,0,-0.13605 -67713,3206:459:3,69,-25.5,0,0,-0.13605 -67714,3206:459:4,69.5,-25.5,0,0,-0.13605 -67715,3207:350:3,70,-25.5,0,0,-0.13605 -67716,3207:350:4,70.5,-25.5,0,0,-0.13605 -67717,3207:351:3,71,-25.5,0,0,-0.13605 -67718,3207:351:4,71.5,-25.5,0,0,-0.13605 -67719,3207:352:3,72,-25.5,0,0,-0.13605 -67720,3207:352:4,72.5,-25.5,0,0,-0.13605 -67721,3207:353:4,73.5,-25.5,0,0,-0.13605 -67722,3207:354:3,74,-25.5,0,0,-0.13605 -67723,3207:354:4,74.5,-25.5,0,0,-0.13605 -67724,3207:455:3,75,-25.5,0,0,-0.13605 -67725,3207:455:4,75.5,-25.5,0,0,-0.13605 -67726,3207:456:3,76,-25.5,0,0,-0.13605 -67727,3207:456:4,76.5,-25.5,0,0,-0.13605 -67728,3207:457:3,77,-25.5,0,0,-0.13605 -67729,3207:457:4,77.5,-25.5,0,0,-0.13605 -67730,3207:458:3,78,-25.5,0,0,-0.13605 -67731,3207:458:4,78.5,-25.5,0,0,-0.13605 -67732,3207:459:3,79,-25.5,0,0,-0.13605 -67733,3207:459:4,79.5,-25.5,0,0,-0.13605 -67734,3208:350:3,80,-25.5,0,0,-0.13605 -67735,3208:350:4,80.5,-25.5,0,0,-0.13605 -67736,3208:351:3,81,-25.5,0,0,-0.13605 -67737,3208:351:4,81.5,-25.5,0,0,-0.13605 -67738,3208:352:3,82,-25.5,0,0,-0.13605 -67739,3208:352:4,82.5,-25.5,0,0,-0.13605 -67740,3208:353:3,83,-25.5,0,0,-0.13605 -67741,3208:353:4,83.5,-25.5,0,0,-0.13605 -67742,3208:354:3,84,-25.5,0,0,-0.13605 -67743,3208:354:4,84.5,-25.5,0,0,-0.13605 -67744,3208:455:3,85,-25.5,0,0,-0.13605 -67745,3208:455:4,85.5,-25.5,0,0,-0.13605 -67746,3208:456:3,86,-25.5,0,0,-0.13605 -67747,3208:456:4,86.5,-25.5,0,0,-0.13605 -67748,3208:457:3,87,-25.5,0,0,-0.13605 -67749,3208:457:4,87.5,-25.5,0,0,-0.13605 -67750,3208:458:3,88,-25.5,0,0,-0.13605 -67751,3208:458:4,88.5,-25.5,0,0,-0.13605 -67752,3208:459:3,89,-25.5,0,0,-0.13605 -67753,3208:459:4,89.5,-25.5,0,0,-0.13605 -67754,3209:350:3,90,-25.5,0,0,-0.13605 -67755,3209:350:4,90.5,-25.5,0,0,-0.13605 -67756,3209:351:3,91,-25.5,0,0,-0.13605 -67757,3209:351:4,91.5,-25.5,0,0,-0.13605 -67758,3209:352:3,92,-25.5,0,0,-0.13605 -67759,3209:352:4,92.5,-25.5,0,0,-0.13605 -67760,3209:353:3,93,-25.5,0,0,-0.13605 -67761,3209:353:4,93.5,-25.5,0,0,-0.13605 -67762,3209:354:3,94,-25.5,0,0,-0.13605 -67763,3209:354:4,94.5,-25.5,0,0,-0.13605 -67764,3209:455:3,95,-25.5,0,0,-0.13605 -67765,3209:455:4,95.5,-25.5,0,0,-0.13605 -67766,3209:456:3,96,-25.5,0,0,-0.13605 -67767,3209:456:4,96.5,-25.5,0,0,-0.13605 -67768,3209:457:3,97,-25.5,0,0,-0.13605 -67769,3209:457:4,97.5,-25.5,0,0,-0.13605 -67770,3209:458:3,98,-25.5,0,0,-0.13605 -67771,3209:458:4,98.5,-25.5,0,0,-0.13605 -67772,3209:459:3,99,-25.5,0,0,-0.13605 -67773,3209:459:4,99.5,-25.5,0,0,-0.13605 -67774,3210:350:3,100,-25.5,0,0,-0.13605 -67775,3210:350:4,100.5,-25.5,0,0,-0.13605 -67776,3210:351:3,101,-25.5,0,0,-0.13605 -67777,3210:351:4,101.5,-25.5,0,0,-0.13605 -67778,3210:352:3,102,-25.5,0,0,-0.13605 -67779,3210:352:4,102.5,-25.5,0,0,-0.13605 -67780,3210:353:3,103,-25.5,0,0,-0.13605 -67781,3210:353:4,103.5,-25.5,0,0,-0.13605 -67782,3210:354:3,104,-25.5,0,0,-0.13605 -67783,3210:354:4,104.5,-25.5,0,0,-0.13605 -67784,3210:455:3,105,-25.5,0,0,-0.13605 -67785,3210:455:4,105.5,-25.5,0,0,-0.13605 -67786,3210:456:3,106,-25.5,0,0,-0.13605 -67787,3210:456:4,106.5,-25.5,0,0,-0.13605 -67788,3210:457:3,107,-25.5,0,0,-0.13605 -67789,3210:457:4,107.5,-25.5,0,0,-0.13605 -67790,3210:458:3,108,-25.5,0,0,-0.13605 -67791,3210:458:4,108.5,-25.5,0,0,-0.13605 -67792,3210:459:3,109,-25.5,0,0,-0.13605 -67793,3210:459:4,109.5,-25.5,0,0,-0.13605 -67794,3211:350:3,110,-25.5,0,0,-0.13605 -67795,3211:350:4,110.5,-25.5,0,0,-0.13605 -67796,3211:351:3,111,-25.5,0,0,-0.13605 -67797,3211:351:4,111.5,-25.5,0,0,-0.13605 -67798,3211:352:3,112,-25.5,0,0,-0.13605 -67799,3211:352:4,112.5,-25.5,0,0,-0.13605 -67800,3211:353:3,113,-25.5,0,0,-0.13605 -67801,3211:353:4,113.5,-25.5,0,0,-0.13605 -67802,3211:354:3,114,-25.5,0,0,-0.13605 -67803,3211:354:4,114.5,-25.5,0,0,-0.13605 -67804,3211:455:3,115,-25.5,0,0,-0.13605 -67805,3211:455:4,115.5,-25.5,0,0,-0.13605 -67806,3212:354:4,124.5,-25.5,0,0,-0.13605 -67807,3212:455:3,125,-25.5,0,0,-0.13605 -67808,3212:455:4,125.5,-25.5,0,0,-0.13605 -67809,3212:456:3,126,-25.5,0,0,-0.13605 -67810,3212:456:4,126.5,-25.5,0,0,-0.13605 -67811,3212:457:3,127,-25.5,0,0,-0.13605 -67812,3212:457:4,127.5,-25.5,0,0,-0.13605 -67813,3212:458:3,128,-25.5,0,0,-0.13605 -67814,3212:458:4,128.5,-25.5,0,0,-0.13605 -67815,3212:459:3,129,-25.5,0,0,-0.13605 -67816,3212:459:4,129.5,-25.5,0,0,-0.13605 -67817,3213:350:3,130,-25.5,0,0,-0.13605 -67818,3213:350:4,130.5,-25.5,0,0,-0.13605 -67819,3213:351:3,131,-25.5,0,0,-0.13605 -67820,3213:351:4,131.5,-25.5,0,0,-0.13605 -67821,3213:352:3,132,-25.5,0,0,-0.13605 -67822,3213:352:4,132.5,-25.5,0,0,-0.13605 -67823,3213:353:3,133,-25.5,0,0,-0.13605 -67824,3213:353:4,133.5,-25.5,0,0,-0.13605 -67825,3213:354:3,134,-25.5,0,0,-0.13605 -67826,3213:354:4,134.5,-25.5,0,0,-0.13605 -67827,3213:455:3,135,-25.5,0,0,-0.13605 -67828,3213:458:3,138,-25.5,0,0,-0.13605 -67829,3215:352:3,152,-25.5,0,0,-0.13605 -67830,3215:352:4,152.5,-25.5,0,0,-0.13605 -67831,3215:353:3,153,-25.5,0,0,-0.13605 -67832,3215:353:4,153.5,-25.5,0,0,-0.13605 -67833,3215:354:3,154,-25.5,0,0,-0.13605 -67834,3215:354:4,154.5,-25.5,0,0,-0.13605 -67835,3215:455:3,155,-25.5,0,0,-0.13605 -67836,3215:455:4,155.5,-25.5,0,0,-0.13605 -67837,3215:456:3,156,-25.5,0,0,-0.13605 -67838,3215:456:4,156.5,-25.5,0,0,-0.13605 -67839,3215:457:3,157,-25.5,0,0,-0.13605 -67840,3215:457:4,157.5,-25.5,0,0,-0.13605 -67841,3215:458:3,158,-25.5,0,0,-0.13605 -67842,3215:458:4,158.5,-25.5,0,0,-0.13605 -67843,3215:459:3,159,-25.5,0,0,-0.13605 -67844,3215:459:4,159.5,-25.5,0,0,-0.13605 -67845,3216:350:3,160,-25.5,0,0,-0.13605 -67846,3216:350:4,160.5,-25.5,0,0,-0.13605 -67847,3216:351:3,161,-25.5,0,0,-0.13605 -67848,3216:351:4,161.5,-25.5,0,0,-0.13605 -67849,3216:352:3,162,-25.5,0,0,-0.13605 -67850,3216:352:4,162.5,-25.5,0,0,-0.13605 -67851,3216:353:3,163,-25.5,0,0,-0.13605 -67852,3216:353:4,163.5,-25.5,0,0,-0.13605 -67853,3216:354:3,164,-25.5,0,0,-0.13605 -67854,3216:354:4,164.5,-25.5,0,0,-0.13605 -67855,3216:455:3,165,-25.5,0,0,-0.13605 -67856,3216:455:4,165.5,-25.5,0,0,-0.13605 -67857,3216:456:3,166,-25.5,0,0,-0.13605 -67858,3216:456:4,166.5,-25.5,0,0,-0.13605 -67859,3216:457:3,167,-25.5,0,0,-0.13605 -67860,3216:457:4,167.5,-25.5,0,0,-0.13605 -67861,3216:458:3,168,-25.5,0,0,-0.13605 -67862,3216:458:4,168.5,-25.5,0,0,-0.13605 -67863,3216:459:3,169,-25.5,0,0,-0.13605 -67864,3216:459:4,169.5,-25.5,0,0,-0.13605 -67865,3217:350:3,170,-25.5,0,0,-0.13605 -67866,3217:350:4,170.5,-25.5,0,0,-0.13605 -67867,3217:351:3,171,-25.5,0,0,-0.13605 -67868,3217:351:4,171.5,-25.5,0,0,-0.13605 -67869,3217:352:3,172,-25.5,0,0,-0.13605 -67870,3217:352:4,172.5,-25.5,0,0,-0.13605 -67871,3217:353:3,173,-25.5,0,0,-0.13605 -67872,3217:353:4,173.5,-25.5,0,0,-0.13605 -67873,3217:354:3,174,-25.5,0,0,-0.13605 -67874,3217:354:4,174.5,-25.5,0,0,-0.13605 -67875,3217:455:3,175,-25.5,0,0,-0.13605 -67876,3217:455:4,175.5,-25.5,0,0,-0.13605 -67877,3217:456:3,176,-25.5,0,0,-0.13605 -67878,3217:456:4,176.5,-25.5,0,0,-0.13605 -67879,3217:457:3,177,-25.5,0,0,-0.13605 -67880,3217:457:4,177.5,-25.5,0,0,-0.13605 -67881,3217:458:3,178,-25.5,0,0,-0.13605 -67882,3217:458:4,178.5,-25.5,0,0,-0.13605 -67883,3217:459:3,179,-25.5,0,0,-0.13605 -67884,3217:459:4,179.5,-25.5,0,0,-0.13605 -67885,3218:350:3,180,-25.5,0,0,-0.13605 -67886,5218:350:1,-180,-25,0,0,-0.13605 -67887,5217:459:2,-179.5,-25,0,0,-0.13605 -67888,5217:459:1,-179,-25,0,0,-0.13605 -67889,5217:458:2,-178.5,-25,0,0,-0.13605 -67890,5217:458:1,-178,-25,0,0,-0.13605 -67891,5217:457:2,-177.5,-25,0,0,-0.13605 -67892,5217:457:1,-177,-25,0,0,-0.13605 -67893,5217:456:2,-176.5,-25,0,0,-0.13605 -67894,5217:456:1,-176,-25,0,0,-0.13605 -67895,5217:455:2,-175.5,-25,0,0,-0.13605 -67896,5217:455:1,-175,-25,0,0,-0.13605 -67897,5217:354:2,-174.5,-25,0,0,-0.13605 -67898,5217:354:1,-174,-25,0,0,-0.13605 -67899,5217:353:2,-173.5,-25,0,0,-0.13605 -67900,5217:353:1,-173,-25,0,0,-0.13605 -67901,5217:352:2,-172.5,-25,0,0,-0.13605 -67902,5217:352:1,-172,-25,0,0,-0.13605 -67903,5217:351:2,-171.5,-25,0,0,-0.13605 -67904,5217:351:1,-171,-25,0,0,-0.13605 -67905,5217:350:2,-170.5,-25,0,0,-0.13605 -67906,5217:350:1,-170,-25,0,0,-0.13605 -67907,5216:459:2,-169.5,-25,0,0,-0.13605 -67908,5216:459:1,-169,-25,0,0,-0.13605 -67909,5216:458:2,-168.5,-25,0,0,-0.13605 -67910,5216:458:1,-168,-25,0,0,-0.13605 -67911,5216:457:2,-167.5,-25,0,0,-0.13605 -67912,5216:457:1,-167,-25,0,0,-0.13605 -67913,5216:456:2,-166.5,-25,0,0,-0.13605 -67914,5216:456:1,-166,-25,0,0,-0.13605 -67915,5216:455:2,-165.5,-25,0,0,-0.13605 -67916,5216:455:1,-165,-25,0,0,-0.13605 -67917,5216:354:2,-164.5,-25,0,0,-0.13605 -67918,5216:354:1,-164,-25,0,0,-0.13605 -67919,5216:353:2,-163.5,-25,0,0,-0.13605 -67920,5216:353:1,-163,-25,0,0,-0.13605 -67921,5216:352:2,-162.5,-25,0,0,-0.13605 -67922,5216:352:1,-162,-25,0,0,-0.13605 -67923,5216:351:2,-161.5,-25,0,0,-0.13605 -67924,5216:351:1,-161,-25,0,0,-0.13605 -67925,5216:350:2,-160.5,-25,0,0,-0.13605 -67926,5216:350:1,-160,-25,0,0,-0.13605 -67927,5215:459:2,-159.5,-25,0,0,-0.13605 -67928,5215:459:1,-159,-25,0,0,-0.13605 -67929,5215:458:2,-158.5,-25,0,0,-0.13605 -67930,5215:458:1,-158,-25,0,0,-0.13605 -67931,5215:457:2,-157.5,-25,0,0,-0.13605 -67932,5215:457:1,-157,-25,0,0,-0.13605 -67933,5215:456:2,-156.5,-25,0,0,-0.13605 -67934,5215:456:1,-156,-25,0,0,-0.13605 -67935,5215:455:2,-155.5,-25,0,0,-0.13605 -67936,5215:455:1,-155,-25,0,0,-0.13605 -67937,5215:354:2,-154.5,-25,0,0,-0.13605 -67938,5215:354:1,-154,-25,0,0,-0.13605 -67939,5215:353:2,-153.5,-25,0,0,-0.13605 -67940,5215:353:1,-153,-25,0,0,-0.13605 -67941,5215:352:2,-152.5,-25,0,0,-0.13605 -67942,5215:352:1,-152,-25,0,0,-0.13605 -67943,5215:351:2,-151.5,-25,0,0,-0.13605 -67944,5215:351:1,-151,-25,0,0,-0.13605 -67945,5215:350:2,-150.5,-25,0,0,-0.13605 -67946,5215:350:1,-150,-25,0,0,-0.13605 -67947,5214:459:2,-149.5,-25,0,0,-0.13605 -67948,5214:459:1,-149,-25,0,0,-0.13605 -67949,5214:458:2,-148.5,-25,0,0,-0.13605 -67950,5214:458:1,-148,-25,0,0,-0.13605 -67951,5214:457:2,-147.5,-25,0,0,-0.13605 -67952,5214:457:1,-147,-25,0,0,-0.13605 -67953,5214:456:2,-146.5,-25,0,0,-0.13605 -67954,5214:456:1,-146,-25,0,0,-0.13605 -67955,5214:455:2,-145.5,-25,0,0,-0.13605 -67956,5214:455:1,-145,-25,0,0,-0.13605 -67957,5214:354:2,-144.5,-25,0,0,-0.13605 -67958,5214:354:1,-144,-25,0,0,-0.13605 -67959,5214:353:2,-143.5,-25,0,0,-0.13605 -67960,5214:353:1,-143,-25,0,0,-0.13605 -67961,5214:352:2,-142.5,-25,0,0,-0.13605 -67962,5214:352:1,-142,-25,0,0,-0.13605 -67963,5214:351:2,-141.5,-25,0,0,-0.13605 -67964,5214:351:1,-141,-25,0,0,-0.13605 -67965,5214:350:2,-140.5,-25,0,0,-0.13605 -67966,5214:350:1,-140,-25,0,0,-0.13605 -67967,5213:459:2,-139.5,-25,0,0,-0.13605 -67968,5213:459:1,-139,-25,0,0,-0.13605 -67969,5213:458:2,-138.5,-25,0,0,-0.13605 -67970,5213:458:1,-138,-25,0,0,-0.13605 -67971,5213:457:2,-137.5,-25,0,0,-0.13605 -67972,5213:457:1,-137,-25,0,0,-0.13605 -67973,5213:456:2,-136.5,-25,0,0,-0.13605 -67974,5213:456:1,-136,-25,0,0,-0.13605 -67975,5213:455:2,-135.5,-25,0,0,-0.13605 -67976,5213:455:1,-135,-25,0,0,-0.13605 -67977,5213:354:2,-134.5,-25,0,0,-0.13605 -67978,5213:354:1,-134,-25,0,0,-0.13605 -67979,5213:353:2,-133.5,-25,0,0,-0.13605 -67980,5213:353:1,-133,-25,0,0,-0.13605 -67981,5213:352:2,-132.5,-25,0,0,-0.13605 -67982,5213:352:1,-132,-25,0,0,-0.13605 -67983,5213:351:2,-131.5,-25,0,0,-0.13605 -67984,5213:351:1,-131,-25,0,0,-0.13605 -67985,5213:350:2,-130.5,-25,0,0,-0.13605 -67986,5213:350:1,-130,-25,0,0,-0.13605 -67987,5212:459:2,-129.5,-25,0,0,-0.13605 -67988,5212:459:1,-129,-25,0,0,-0.13605 -67989,5212:458:2,-128.5,-25,0,0,-0.13605 -67990,5212:458:1,-128,-25,0,0,-0.13605 -67991,5212:457:2,-127.5,-25,0,0,-0.13605 -67992,5212:457:1,-127,-25,0,0,-0.13605 -67993,5212:456:2,-126.5,-25,0,0,-0.13605 -67994,5212:456:1,-126,-25,0,0,-0.13605 -67995,5212:455:2,-125.5,-25,0,0,-0.13605 -67996,5212:455:1,-125,-25,0,0,-0.13605 -67997,5212:354:2,-124.5,-25,0,0,-0.13605 -67998,5212:354:1,-124,-25,0,0,-0.13605 -67999,5212:353:2,-123.5,-25,0,0,-0.13605 -68000,5212:353:1,-123,-25,0,0,-0.13605 -68001,5212:352:2,-122.5,-25,0,0,-0.13605 -68002,5212:352:1,-122,-25,0,0,-0.13605 -68003,5212:351:2,-121.5,-25,0,0,-0.13605 -68004,5212:351:1,-121,-25,0,0,-0.13605 -68005,5212:350:2,-120.5,-25,0,0,-0.13605 -68006,5212:350:1,-120,-25,0,0,-0.13605 -68007,5211:459:2,-119.5,-25,0,0,-0.13605 -68008,5211:459:1,-119,-25,0,0,-0.13605 -68009,5211:458:2,-118.5,-25,0,0,-0.13605 -68010,5211:458:1,-118,-25,0,0,-0.13605 -68011,5211:457:2,-117.5,-25,0,0,-0.13605 -68012,5211:457:1,-117,-25,0,0,-0.13605 -68013,5211:456:2,-116.5,-25,0,0,-0.13605 -68014,5211:456:1,-116,-25,0,0,-0.13605 -68015,5211:455:2,-115.5,-25,0,0,-0.13605 -68016,5211:455:1,-115,-25,0,0,-0.13605 -68017,5211:354:2,-114.5,-25,0,0,-0.13605 -68018,5211:354:1,-114,-25,0,0,-0.13605 -68019,5211:353:2,-113.5,-25,0,0,-0.13605 -68020,5211:353:1,-113,-25,0,0,-0.13605 -68021,5211:352:2,-112.5,-25,0,0,-0.13605 -68022,5211:352:1,-112,-25,0,0,-0.13605 -68023,5211:351:2,-111.5,-25,0,0,-0.13605 -68024,5211:351:1,-111,-25,0,0,-0.13605 -68025,5211:350:2,-110.5,-25,0,0,-0.13605 -68026,5211:350:1,-110,-25,0,0,-0.13605 -68027,5210:459:2,-109.5,-25,0,0,-0.13605 -68028,5210:459:1,-109,-25,0,0,-0.13605 -68029,5210:458:2,-108.5,-25,0,0,-0.13605 -68030,5210:458:1,-108,-25,0,0,-0.13605 -68031,5210:457:2,-107.5,-25,0,0,-0.13605 -68032,5210:457:1,-107,-25,0,0,-0.13605 -68033,5210:456:2,-106.5,-25,0,0,-0.13605 -68034,5210:456:1,-106,-25,0,0,-0.13605 -68035,5210:455:2,-105.5,-25,0,0,-0.13605 -68036,5210:455:1,-105,-25,0,0,-0.13605 -68037,5210:354:2,-104.5,-25,0,0,-0.13605 -68038,5210:354:1,-104,-25,0,0,-0.13605 -68039,5210:353:2,-103.5,-25,0,0,-0.13605 -68040,5210:353:1,-103,-25,0,0,-0.13605 -68041,5210:352:2,-102.5,-25,0,0,-0.13605 -68042,5210:352:1,-102,-25,0,0,-0.13605 -68043,5210:351:2,-101.5,-25,0,0,-0.13605 -68044,5210:351:1,-101,-25,0,0,-0.13605 -68045,5210:350:2,-100.5,-25,0,0,-0.13605 -68046,5210:350:1,-100,-25,0,0,-0.13605 -68047,5209:459:2,-99.5,-25,0,0,-0.13605 -68048,5209:459:1,-99,-25,0,0,-0.13605 -68049,5209:458:2,-98.5,-25,0,0,-0.13605 -68050,5209:458:1,-98,-25,0,0,-0.13605 -68051,5209:457:2,-97.5,-25,0,0,-0.13605 -68052,5209:457:1,-97,-25,0,0,-0.13605 -68053,5209:456:2,-96.5,-25,0,0,-0.13605 -68054,5209:456:1,-96,-25,0,0,-0.13605 -68055,5209:455:2,-95.5,-25,0,0,-0.13605 -68056,5209:455:1,-95,-25,0,0,-0.13605 -68057,5209:354:2,-94.5,-25,0,0,-0.13605 -68058,5209:354:1,-94,-25,0,0,-0.13605 -68059,5209:353:2,-93.5,-25,0,0,-0.13605 -68060,5209:353:1,-93,-25,0,0,-0.13605 -68061,5209:352:2,-92.5,-25,0,0,-0.13605 -68062,5209:352:1,-92,-25,0,0,-0.13605 -68063,5209:351:2,-91.5,-25,0,0,-0.13605 -68064,5209:351:1,-91,-25,0,0,-0.13605 -68065,5209:350:2,-90.5,-25,0,0,-0.13605 -68066,5209:350:1,-90,-25,0,0,-0.13605 -68067,5208:459:2,-89.5,-25,0,0,-0.13605 -68068,5208:459:1,-89,-25,0,0,-0.13605 -68069,5208:458:2,-88.5,-25,0,0,-0.13605 -68070,5208:458:1,-88,-25,0,0,-0.13605 -68071,5208:457:2,-87.5,-25,0,0,-0.13605 -68072,5208:457:1,-87,-25,0,0,-0.13605 -68073,5208:456:2,-86.5,-25,0,0,-0.13605 -68074,5208:456:1,-86,-25,0,0,-0.13605 -68075,5208:455:2,-85.5,-25,0,0,-0.13605 -68076,5208:455:1,-85,-25,0,0,-0.13605 -68077,5208:354:2,-84.5,-25,0,0,-0.13605 -68078,5208:354:1,-84,-25,0,0,-0.13605 -68079,5208:353:2,-83.5,-25,0,0,-0.13605 -68080,5208:353:1,-83,-25,0,0,-0.13605 -68081,5208:352:2,-82.5,-25,0,0,-0.13605 -68082,5208:352:1,-82,-25,0,0,-0.13605 -68083,5208:351:2,-81.5,-25,0,0,-0.13605 -68084,5208:351:1,-81,-25,0,0,-0.13605 -68085,5208:350:2,-80.5,-25,0,0,-0.13605 -68086,5208:350:1,-80,-25,0,0,-0.13605 -68087,5207:459:2,-79.5,-25,0,0,-0.13605 -68088,5207:459:1,-79,-25,0,0,-0.13605 -68089,5207:458:2,-78.5,-25,0,0,-0.13605 -68090,5207:458:1,-78,-25,0,0,-0.13605 -68091,5207:457:2,-77.5,-25,0,0,-0.13605 -68092,5207:457:1,-77,-25,0,0,-0.13605 -68093,5207:456:2,-76.5,-25,0,0,-0.13605 -68094,5207:456:1,-76,-25,0,0,-0.13605 -68095,5207:455:2,-75.5,-25,0,0,-0.13605 -68096,5207:455:1,-75,-25,0,0,-0.13605 -68097,5207:354:2,-74.5,-25,0,0,-0.13605 -68098,5207:354:1,-74,-25,0,0,-0.13605 -68099,5207:353:2,-73.5,-25,0,0,-0.13605 -68100,5207:353:1,-73,-25,0,0,-0.13605 -68101,5207:352:2,-72.5,-25,0,0,-0.13605 -68102,5207:352:1,-72,-25,0,0,-0.13605 -68103,5205:352:1,-52,-25,0,0,-0.13605 -68104,5205:351:2,-51.5,-25,0,0,-0.13605 -68105,5205:351:1,-51,-25,0,0,-0.13605 -68106,5205:350:2,-50.5,-25,0,0,-0.13605 -68107,5205:350:1,-50,-25,0,0,-0.13605 -68108,5204:459:2,-49.5,-25,0,0,-0.13605 -68109,5204:459:1,-49,-25,0,0,-0.13605 -68110,5204:458:2,-48.5,-25,0,0,-0.13605 -68111,5204:458:1,-48,-25,0,0,-0.13605 -68112,5204:457:2,-47.5,-25,0,0,-0.13605 -68113,5204:457:1,-47,-25,0,0,-0.13605 -68114,5204:456:2,-46.5,-25,0,0,-0.13605 -68115,5204:456:1,-46,-25,0,0,-0.13605 -68116,5204:455:2,-45.5,-25,0,0,-0.13605 -68117,5204:455:1,-45,-25,0,0,-0.13605 -68118,5204:354:2,-44.5,-25,0,0,-0.13605 -68119,5204:354:1,-44,-25,0,0,-0.13605 -68120,5204:353:2,-43.5,-25,0,0,-0.13605 -68121,5204:353:1,-43,-25,0,0,-0.13605 -68122,5204:352:2,-42.5,-25,0,0,-0.13605 -68123,5204:352:1,-42,-25,0,0,-0.13605 -68124,5204:351:2,-41.5,-25,0,0,-0.13605 -68125,5204:351:1,-41,-25,0,0,-0.13605 -68126,5204:350:2,-40.5,-25,0,0,-0.13605 -68127,5204:350:1,-40,-25,0,0,-0.13605 -68128,5203:459:2,-39.5,-25,0,0,-0.13605 -68129,5203:459:1,-39,-25,0,0,-0.13605 -68130,5203:458:2,-38.5,-25,0,0,-0.13605 -68131,5203:458:1,-38,-25,0,0,-0.13605 -68132,5203:457:2,-37.5,-25,0,0,-0.13605 -68133,5203:457:1,-37,-25,0,0,-0.13605 -68134,5203:456:2,-36.5,-25,0,0,-0.13605 -68135,5203:456:1,-36,-25,0,0,-0.13605 -68136,5203:455:2,-35.5,-25,0,0,-0.13605 -68137,5203:455:1,-35,-25,0,0,-0.13605 -68138,5203:354:2,-34.5,-25,0,0,-0.13605 -68139,5203:354:1,-34,-25,0,0,-0.13605 -68140,5203:353:2,-33.5,-25,0,0,-0.13605 -68141,5203:353:1,-33,-25,0,0,-0.13605 -68142,5203:352:2,-32.5,-25,0,0,-0.13605 -68143,5203:352:1,-32,-25,0,0,-0.13605 -68144,5203:351:2,-31.5,-25,0,0,-0.13605 -68145,5203:351:1,-31,-25,0,0,-0.13605 -68146,5203:350:2,-30.5,-25,0,0,-0.13605 -68147,5203:350:1,-30,-25,0,0,-0.13605 -68148,5202:459:2,-29.5,-25,0,0,-0.13605 -68149,5202:459:1,-29,-25,0,0,-0.13605 -68150,5202:458:2,-28.5,-25,0,0,-0.13605 -68151,5202:458:1,-28,-25,0,0,-0.13605 -68152,5202:457:2,-27.5,-25,0,0,-0.13605 -68153,5202:457:1,-27,-25,0,0,-0.13605 -68154,5202:456:2,-26.5,-25,0,0,-0.13605 -68155,5202:456:1,-26,-25,0,0,-0.13605 -68156,5202:455:2,-25.5,-25,0,0,-0.13605 -68157,5202:455:1,-25,-25,0,0,-0.13605 -68158,5202:354:2,-24.5,-25,0,0,-0.13605 -68159,5202:354:1,-24,-25,0,0,-0.13605 -68160,5202:353:2,-23.5,-25,0,0,-0.13605 -68161,5202:353:1,-23,-25,0,0,-0.13605 -68162,5202:352:2,-22.5,-25,0,0,-0.13605 -68163,5202:352:1,-22,-25,0,0,-0.13605 -68164,5202:351:2,-21.5,-25,0,0,-0.13605 -68165,5202:351:1,-21,-25,0,0,-0.13605 -68166,5202:350:2,-20.5,-25,0,0,-0.13605 -68167,5202:350:1,-20,-25,0,0,-0.13605 -68168,5201:459:2,-19.5,-25,0,0,-0.13605 -68169,5201:459:1,-19,-25,0,0,-0.13605 -68170,5201:458:2,-18.5,-25,0,0,-0.13605 -68171,5201:458:1,-18,-25,0,0,-0.13605 -68172,5201:457:2,-17.5,-25,0,0,-0.13605 -68173,5201:457:1,-17,-25,0,0,-0.13605 -68174,5201:456:2,-16.5,-25,0,0,-0.13605 -68175,5201:456:1,-16,-25,0,0,-0.13605 -68176,5201:455:2,-15.5,-25,0,0,-0.13605 -68177,5201:455:1,-15,-25,0,0,-0.13605 -68178,5201:354:2,-14.5,-25,0,0,-0.13605 -68179,5201:354:1,-14,-25,0,0,-0.13605 -68180,5201:353:2,-13.5,-25,0,0,-0.13605 -68181,5201:353:1,-13,-25,0,0,-0.13605 -68182,5201:352:2,-12.5,-25,0,0,-0.13605 -68183,5201:352:1,-12,-25,0,0,-0.13605 -68184,5201:351:2,-11.5,-25,0,0,-0.13605 -68185,5201:351:1,-11,-25,0,0,-0.13605 -68186,5201:350:2,-10.5,-25,0,0,-0.13605 -68187,5201:350:1,-10,-25,0,0,-0.13605 -68188,5200:459:2,-9.5,-25,0,0,-0.13605 -68189,5200:459:1,-9,-25,0,0,-0.13605 -68190,5200:458:2,-8.5,-25,0,0,-0.13605 -68191,5200:458:1,-8,-25,0,0,-0.13605 -68192,5200:457:2,-7.5,-25,0,0,-0.13605 -68193,5200:457:1,-7,-25,0,0,-0.13605 -68194,5200:456:2,-6.5,-25,0,0,-0.13605 -68195,5200:456:1,-6,-25,0,0,-0.13605 -68196,5200:455:2,-5.5,-25,0,0,-0.13605 -68197,5200:455:1,-5,-25,0,0,-0.13605 -68198,5200:354:2,-4.5,-25,0,0,-0.13605 -68199,5200:354:1,-4,-25,0,0,-0.13605 -68200,5200:353:2,-3.5,-25,0,0,-0.13605 -68201,5200:353:1,-3,-25,0,0,-0.13605 -68202,5200:352:2,-2.5,-25,0,0,-0.13605 -68203,5200:352:1,-2,-25,0,0,-0.13605 -68204,5200:351:2,-1.5,-25,0,0,-0.13605 -68205,5200:351:1,-1,-25,0,0,-0.13605 -68206,5200:350:2,-0.5,-25,0,0,-0.13605 -68207,3200:350:2,0,-25,0,0,-0.13605 -68208,3200:350:2,0.5,-25,0,0,-0.13605 -68209,3200:351:1,1,-25,0,0,-0.13605 -68210,3200:351:2,1.5,-25,0,0,-0.13605 -68211,3200:352:1,2,-25,0,0,-0.13605 -68212,3200:352:2,2.5,-25,0,0,-0.13605 -68213,3200:353:1,3,-25,0,0,-0.13605 -68214,3200:353:2,3.5,-25,0,0,-0.13605 -68215,3200:354:1,4,-25,0,0,-0.13605 -68216,3200:354:2,4.5,-25,0,0,-0.13605 -68217,3200:455:1,5,-25,0,0,-0.13605 -68218,3200:455:2,5.5,-25,0,0,-0.13605 -68219,3200:456:1,6,-25,0,0,-0.13605 -68220,3200:456:2,6.5,-25,0,0,-0.13605 -68221,3200:457:1,7,-25,0,0,-0.13605 -68222,3200:457:2,7.5,-25,0,0,-0.13605 -68223,3200:458:1,8,-25,0,0,-0.13605 -68224,3200:458:2,8.5,-25,0,0,-0.13605 -68225,3200:459:1,9,-25,0,0,-0.13605 -68226,3200:459:2,9.5,-25,0,0,-0.13605 -68227,3201:350:1,10,-25,0,0,-0.13605 -68228,3201:350:2,10.5,-25,0,0,-0.13605 -68229,3201:351:1,11,-25,0,0,-0.13605 -68230,3201:351:2,11.5,-25,0,0,-0.13605 -68231,3201:352:1,12,-25,0,0,-0.13605 -68232,3201:352:2,12.5,-25,0,0,-0.13605 -68233,3201:353:1,13,-25,0,0,-0.13605 -68234,3201:353:2,13.5,-25,0,0,-0.13605 -68235,3201:354:1,14,-25,0,0,-0.13605 -68236,3201:354:2,14.5,-25,0,0,-0.13605 -68237,3201:455:1,15,-25,0,0,-0.13605 -68238,3201:455:2,15.5,-25,0,0,-0.13605 -68239,3201:456:1,16,-25,0,0,-0.13605 -68240,3201:456:2,16.5,-25,0,0,-0.13605 -68241,3201:457:1,17,-25,0,0,-0.13605 -68242,3201:457:2,17.5,-25,0,0,-0.13605 -68243,3202:458:1,28,-25,0,0,-0.13605 -68244,3202:458:2,28.5,-25,0,0,-0.13605 -68245,3202:459:1,29,-25,0,0,-0.13605 -68246,3202:459:2,29.5,-25,0,0,-0.13605 -68247,3203:350:1,30,-25,0,0,-0.13605 -68248,3203:350:2,30.5,-25,0,0,-0.13605 -68249,3203:351:1,31,-25,0,0,-0.13605 -68250,3203:351:2,31.5,-25,0,0,-0.13605 -68251,3203:352:1,32,-25,0,0,-0.13605 -68252,3203:352:2,32.5,-25,0,0,-0.13605 -68253,3203:353:1,33,-25,0,0,-0.13605 -68254,3203:353:2,33.5,-25,0,0,-0.13605 -68255,3203:354:1,34,-25,0,0,-0.13605 -68256,3203:354:2,34.5,-25,0,0,-0.13605 -68257,3203:455:1,35,-25,0,0,-0.13605 -68258,3203:455:2,35.5,-25,0,0,-0.13605 -68259,3203:456:1,36,-25,0,0,-0.13605 -68260,3203:456:2,36.5,-25,0,0,-0.13605 -68261,3203:457:1,37,-25,0,0,-0.13605 -68262,3203:457:2,37.5,-25,0,0,-0.13605 -68263,3203:458:1,38,-25,0,0,-0.13605 -68264,3203:458:2,38.5,-25,0,0,-0.13605 -68265,3203:459:1,39,-25,0,0,-0.13605 -68266,3203:459:2,39.5,-25,0,0,-0.13605 -68267,3204:350:1,40,-25,0,0,-0.13605 -68268,3204:350:2,40.5,-25,0,0,-0.13605 -68269,3204:351:1,41,-25,0,0,-0.13605 -68270,3204:351:2,41.5,-25,0,0,-0.13605 -68271,3204:352:1,42,-25,0,0,-0.13605 -68272,3204:352:2,42.5,-25,0,0,-0.13605 -68273,3204:353:1,43,-25,0,0,-0.13605 -68274,3204:353:2,43.5,-25,0,0,-0.13605 -68275,3204:354:1,44,-25,0,0,-0.13605 -68276,3204:354:2,44.5,-25,0,0,-0.13605 -68277,3204:455:1,45,-25,0,0,-0.13605 -68278,3204:455:2,45.5,-25,0,0,-0.13605 -68279,3204:456:1,46,-25,0,0,-0.13605 -68280,3204:456:2,46.5,-25,0,0,-0.13605 -68281,3204:457:1,47,-25,0,0,-0.13605 -68282,3204:457:2,47.5,-25,0,0,-0.13605 -68283,3204:458:1,48,-25,0,0,-0.13605 -68284,3204:458:2,48.5,-25,0,0,-0.13605 -68285,3204:459:1,49,-25,0,0,-0.13605 -68286,3204:459:2,49.5,-25,0,0,-0.13605 -68287,3205:350:1,50,-25,0,0,-0.13605 -68288,3205:350:2,50.5,-25,0,0,-0.13605 -68289,3205:351:1,51,-25,0,0,-0.13605 -68290,3205:351:2,51.5,-25,0,0,-0.13605 -68291,3205:352:1,52,-25,0,0,-0.13605 -68292,3205:352:2,52.5,-25,0,0,-0.13605 -68293,3205:353:1,53,-25,0,0,-0.13605 -68294,3205:353:2,53.5,-25,0,0,-0.13605 -68295,3205:354:1,54,-25,0,0,-0.13605 -68296,3205:354:2,54.5,-25,0,0,-0.13605 -68297,3205:455:1,55,-25,0,0,-0.13605 -68298,3205:455:2,55.5,-25,0,0,-0.13605 -68299,3205:456:1,56,-25,0,0,-0.13605 -68300,3205:456:2,56.5,-25,0,0,-0.13605 -68301,3205:457:1,57,-25,0,0,-0.13605 -68302,3205:457:2,57.5,-25,0,0,-0.13605 -68303,3205:458:1,58,-25,0,0,-0.13605 -68304,3205:458:2,58.5,-25,0,0,-0.13605 -68305,3205:459:1,59,-25,0,0,-0.13605 -68306,3205:459:2,59.5,-25,0,0,-0.13605 -68307,3206:350:1,60,-25,0,0,-0.13605 -68308,3206:350:2,60.5,-25,0,0,-0.13605 -68309,3206:351:1,61,-25,0,0,-0.13605 -68310,3206:351:2,61.5,-25,0,0,-0.13605 -68311,3206:352:1,62,-25,0,0,-0.13605 -68312,3206:352:2,62.5,-25,0,0,-0.13605 -68313,3206:353:1,63,-25,0,0,-0.13605 -68314,3206:353:2,63.5,-25,0,0,-0.13605 -68315,3206:354:1,64,-25,0,0,-0.13605 -68316,3206:354:2,64.5,-25,0,0,-0.13605 -68317,3206:455:1,65,-25,0,0,-0.13605 -68318,3206:455:2,65.5,-25,0,0,-0.13605 -68319,3206:456:1,66,-25,0,0,-0.13605 -68320,3206:456:2,66.5,-25,0,0,-0.13605 -68321,3206:457:1,67,-25,0,0,-0.13605 -68322,3206:457:2,67.5,-25,0,0,-0.13605 -68323,3206:458:1,68,-25,0,0,-0.13605 -68324,3206:458:2,68.5,-25,0,0,-0.13605 -68325,3206:459:1,69,-25,0,0,-0.13605 -68326,3206:459:2,69.5,-25,0,0,-0.13605 -68327,3207:350:1,70,-25,0,0,-0.13605 -68328,3207:350:2,70.5,-25,0,0,-0.13605 -68329,3207:351:1,71,-25,0,0,-0.13605 -68330,3207:351:2,71.5,-25,0,0,-0.13605 -68331,3207:352:1,72,-25,0,0,-0.13605 -68332,3207:352:2,72.5,-25,0,0,-0.13605 -68333,3207:353:2,73.5,-25,0,0,-0.13605 -68334,3207:354:1,74,-25,0,0,-0.13605 -68335,3207:354:2,74.5,-25,0,0,-0.13605 -68336,3207:455:1,75,-25,0,0,-0.13605 -68337,3207:455:2,75.5,-25,0,0,-0.13605 -68338,3207:456:1,76,-25,0,0,-0.13605 -68339,3207:456:2,76.5,-25,0,0,-0.13605 -68340,3207:457:1,77,-25,0,0,-0.13605 -68341,3207:457:2,77.5,-25,0,0,-0.13605 -68342,3207:458:1,78,-25,0,0,-0.13605 -68343,3207:458:2,78.5,-25,0,0,-0.13605 -68344,3207:459:1,79,-25,0,0,-0.13605 -68345,3207:459:2,79.5,-25,0,0,-0.13605 -68346,3208:350:1,80,-25,0,0,-0.13605 -68347,3208:350:2,80.5,-25,0,0,-0.13605 -68348,3208:351:1,81,-25,0,0,-0.13605 -68349,3208:351:2,81.5,-25,0,0,-0.13605 -68350,3208:352:1,82,-25,0,0,-0.13605 -68351,3208:352:2,82.5,-25,0,0,-0.13605 -68352,3208:353:1,83,-25,0,0,-0.13605 -68353,3208:353:2,83.5,-25,0,0,-0.13605 -68354,3208:354:1,84,-25,0,0,-0.13605 -68355,3208:354:2,84.5,-25,0,0,-0.13605 -68356,3208:455:1,85,-25,0,0,-0.13605 -68357,3208:455:2,85.5,-25,0,0,-0.13605 -68358,3208:456:1,86,-25,0,0,-0.13605 -68359,3208:456:2,86.5,-25,0,0,-0.13605 -68360,3208:457:1,87,-25,0,0,-0.13605 -68361,3208:457:2,87.5,-25,0,0,-0.13605 -68362,3208:458:1,88,-25,0,0,-0.13605 -68363,3208:458:2,88.5,-25,0,0,-0.13605 -68364,3208:459:1,89,-25,0,0,-0.13605 -68365,3208:459:2,89.5,-25,0,0,-0.13605 -68366,3209:350:1,90,-25,0,0,-0.13605 -68367,3209:350:2,90.5,-25,0,0,-0.13605 -68368,3209:351:1,91,-25,0,0,-0.13605 -68369,3209:351:2,91.5,-25,0,0,-0.13605 -68370,3209:352:1,92,-25,0,0,-0.13605 -68371,3209:352:2,92.5,-25,0,0,-0.13605 -68372,3209:353:1,93,-25,0,0,-0.13605 -68373,3209:353:2,93.5,-25,0,0,-0.13605 -68374,3209:354:1,94,-25,0,0,-0.13605 -68375,3209:354:2,94.5,-25,0,0,-0.13605 -68376,3209:455:1,95,-25,0,0,-0.13605 -68377,3209:455:2,95.5,-25,0,0,-0.13605 -68378,3209:456:1,96,-25,0,0,-0.13605 -68379,3209:456:2,96.5,-25,0,0,-0.13605 -68380,3209:457:1,97,-25,0,0,-0.13605 -68381,3209:457:2,97.5,-25,0,0,-0.13605 -68382,3209:458:1,98,-25,0,0,-0.13605 -68383,3209:458:2,98.5,-25,0,0,-0.13605 -68384,3209:459:1,99,-25,0,0,-0.13605 -68385,3209:459:2,99.5,-25,0,0,-0.13605 -68386,3210:350:1,100,-25,0,0,-0.13605 -68387,3210:350:2,100.5,-25,0,0,-0.13605 -68388,3210:351:1,101,-25,0,0,-0.13605 -68389,3210:351:2,101.5,-25,0,0,-0.13605 -68390,3210:352:1,102,-25,0,0,-0.13605 -68391,3210:352:2,102.5,-25,0,0,-0.13605 -68392,3210:353:1,103,-25,0,0,-0.13605 -68393,3210:353:2,103.5,-25,0,0,-0.13605 -68394,3210:354:1,104,-25,0,0,-0.13605 -68395,3210:354:2,104.5,-25,0,0,-0.13605 -68396,3210:455:1,105,-25,0,0,-0.13605 -68397,3210:455:2,105.5,-25,0,0,-0.13605 -68398,3210:456:1,106,-25,0,0,-0.13605 -68399,3210:456:2,106.5,-25,0,0,-0.13605 -68400,3210:457:1,107,-25,0,0,-0.13605 -68401,3210:457:2,107.5,-25,0,0,-0.13605 -68402,3210:458:1,108,-25,0,0,-0.13605 -68403,3210:458:2,108.5,-25,0,0,-0.13605 -68404,3210:459:1,109,-25,0,0,-0.13605 -68405,3210:459:2,109.5,-25,0,0,-0.13605 -68406,3211:350:1,110,-25,0,0,-0.13605 -68407,3211:350:2,110.5,-25,0,0,-0.13605 -68408,3211:351:1,111,-25,0,0,-0.13605 -68409,3211:351:2,111.5,-25,0,0,-0.13605 -68410,3211:352:1,112,-25,0,0,-0.13605 -68411,3211:352:2,112.5,-25,0,0,-0.13605 -68412,3211:353:1,113,-25,0,0,-0.13605 -68413,3211:353:2,113.5,-25,0,0,-0.13605 -68414,3211:354:1,114,-25,0,0,-0.13605 -68415,3211:354:2,114.5,-25,0,0,-0.13605 -68416,3211:455:1,115,-25,0,0,-0.13605 -68417,3211:455:2,115.5,-25,0,0,-0.13605 -68418,3212:455:2,125.5,-25,0,0,-0.13605 -68419,3212:456:1,126,-25,0,0,-0.13605 -68420,3212:456:2,126.5,-25,0,0,-0.13605 -68421,3212:457:1,127,-25,0,0,-0.13605 -68422,3212:457:2,127.5,-25,0,0,-0.13605 -68423,3212:458:1,128,-25,0,0,-0.13605 -68424,3212:458:2,128.5,-25,0,0,-0.13605 -68425,3212:459:1,129,-25,0,0,-0.13605 -68426,3212:459:2,129.5,-25,0,0,-0.13605 -68427,3213:350:1,130,-25,0,0,-0.13605 -68428,3213:350:2,130.5,-25,0,0,-0.13605 -68429,3213:351:1,131,-25,0,0,-0.13605 -68430,3213:351:2,131.5,-25,0,0,-0.13605 -68431,3213:352:1,132,-25,0,0,-0.13605 -68432,3213:352:2,132.5,-25,0,0,-0.13605 -68433,3213:353:1,133,-25,0,0,-0.13605 -68434,3213:353:2,133.5,-25,0,0,-0.13605 -68435,3213:354:1,134,-25,0,0,-0.13605 -68436,3215:352:2,152.5,-25,0,0,-0.13605 -68437,3215:353:1,153,-25,0,0,-0.13605 -68438,3215:353:2,153.5,-25,0,0,-0.13605 -68439,3215:354:1,154,-25,0,0,-0.13605 -68440,3215:354:2,154.5,-25,0,0,-0.13605 -68441,3215:455:1,155,-25,0,0,-0.13605 -68442,3215:455:2,155.5,-25,0,0,-0.13605 -68443,3215:456:1,156,-25,0,0,-0.13605 -68444,3215:456:2,156.5,-25,0,0,-0.13605 -68445,3215:457:1,157,-25,0,0,-0.13605 -68446,3215:457:2,157.5,-25,0,0,-0.13605 -68447,3215:458:1,158,-25,0,0,-0.13605 -68448,3215:458:2,158.5,-25,0,0,-0.13605 -68449,3215:459:1,159,-25,0,0,-0.13605 -68450,3215:459:2,159.5,-25,0,0,-0.13605 -68451,3216:350:1,160,-25,0,0,-0.13605 -68452,3216:350:2,160.5,-25,0,0,-0.13605 -68453,3216:351:1,161,-25,0,0,-0.13605 -68454,3216:351:2,161.5,-25,0,0,-0.13605 -68455,3216:352:1,162,-25,0,0,-0.13605 -68456,3216:352:2,162.5,-25,0,0,-0.13605 -68457,3216:353:1,163,-25,0,0,-0.13605 -68458,3216:353:2,163.5,-25,0,0,-0.13605 -68459,3216:354:1,164,-25,0,0,-0.13605 -68460,3216:354:2,164.5,-25,0,0,-0.13605 -68461,3216:455:1,165,-25,0,0,-0.13605 -68462,3216:455:2,165.5,-25,0,0,-0.13605 -68463,3216:456:1,166,-25,0,0,-0.13605 -68464,3216:456:2,166.5,-25,0,0,-0.13605 -68465,3216:457:1,167,-25,0,0,-0.13605 -68466,3216:457:2,167.5,-25,0,0,-0.13605 -68467,3216:458:1,168,-25,0,0,-0.13605 -68468,3216:458:2,168.5,-25,0,0,-0.13605 -68469,3216:459:1,169,-25,0,0,-0.13605 -68470,3216:459:2,169.5,-25,0,0,-0.13605 -68471,3217:350:1,170,-25,0,0,-0.13605 -68472,3217:350:2,170.5,-25,0,0,-0.13605 -68473,3217:351:1,171,-25,0,0,-0.13605 -68474,3217:351:2,171.5,-25,0,0,-0.13605 -68475,3217:352:1,172,-25,0,0,-0.13605 -68476,3217:352:2,172.5,-25,0,0,-0.13605 -68477,3217:353:1,173,-25,0,0,-0.13605 -68478,3217:353:2,173.5,-25,0,0,-0.13605 -68479,3217:354:1,174,-25,0,0,-0.13605 -68480,3217:354:2,174.5,-25,0,0,-0.13605 -68481,3217:455:1,175,-25,0,0,-0.13605 -68482,3217:455:2,175.5,-25,0,0,-0.13605 -68483,3217:456:1,176,-25,0,0,-0.13605 -68484,3217:456:2,176.5,-25,0,0,-0.13605 -68485,3217:457:1,177,-25,0,0,-0.13605 -68486,3217:457:2,177.5,-25,0,0,-0.13605 -68487,3217:458:1,178,-25,0,0,-0.13605 -68488,3217:458:2,178.5,-25,0,0,-0.13605 -68489,3217:459:1,179,-25,0,0,-0.13605 -68490,3217:459:2,179.5,-25,0,0,-0.13605 -68491,3218:350:1,180,-25,0,0,-0.13605 -68492,5218:140:3,-180,-24.5,0,0,-0.13605 -68493,5217:249:4,-179.5,-24.5,0,0,-0.13605 -68494,5217:249:3,-179,-24.5,0,0,-0.13605 -68495,5217:248:4,-178.5,-24.5,0,0,-0.13605 -68496,5217:248:3,-178,-24.5,0,0,-0.13605 -68497,5217:247:4,-177.5,-24.5,0,0,-0.13605 -68498,5217:247:3,-177,-24.5,0,0,-0.13605 -68499,5217:246:4,-176.5,-24.5,0,0,-0.13605 -68500,5217:246:3,-176,-24.5,0,0,-0.13605 -68501,5217:245:4,-175.5,-24.5,0,0,-0.13605 -68502,5217:245:3,-175,-24.5,0,0,-0.13605 -68503,5217:144:4,-174.5,-24.5,0,0,-0.13605 -68504,5217:144:3,-174,-24.5,0,0,-0.13605 -68505,5217:143:4,-173.5,-24.5,0,0,-0.13605 -68506,5217:143:3,-173,-24.5,0,0,-0.13605 -68507,5217:142:4,-172.5,-24.5,0,0,-0.13605 -68508,5217:142:3,-172,-24.5,0,0,-0.13605 -68509,5217:141:4,-171.5,-24.5,0,0,-0.13605 -68510,5217:141:3,-171,-24.5,0,0,-0.13605 -68511,5217:140:4,-170.5,-24.5,0,0,-0.13605 -68512,5217:140:3,-170,-24.5,0,0,-0.13605 -68513,5216:249:4,-169.5,-24.5,0,0,-0.13605 -68514,5216:249:3,-169,-24.5,0,0,-0.13605 -68515,5216:248:4,-168.5,-24.5,0,0,-0.13605 -68516,5216:248:3,-168,-24.5,0,0,-0.13605 -68517,5216:247:4,-167.5,-24.5,0,0,-0.13605 -68518,5216:247:3,-167,-24.5,0,0,-0.13605 -68519,5216:246:4,-166.5,-24.5,0,0,-0.13605 -68520,5216:246:3,-166,-24.5,0,0,-0.13605 -68521,5216:245:4,-165.5,-24.5,0,0,-0.13605 -68522,5216:245:3,-165,-24.5,0,0,-0.13605 -68523,5216:144:4,-164.5,-24.5,0,0,-0.13605 -68524,5216:144:3,-164,-24.5,0,0,-0.13605 -68525,5216:143:4,-163.5,-24.5,0,0,-0.13605 -68526,5216:143:3,-163,-24.5,0,0,-0.13605 -68527,5216:142:4,-162.5,-24.5,0,0,-0.13605 -68528,5216:142:3,-162,-24.5,0,0,-0.13605 -68529,5216:141:4,-161.5,-24.5,0,0,-0.13605 -68530,5216:141:3,-161,-24.5,0,0,-0.13605 -68531,5216:140:4,-160.5,-24.5,0,0,-0.13605 -68532,5216:140:3,-160,-24.5,0,0,-0.13605 -68533,5215:249:4,-159.5,-24.5,0,0,-0.13605 -68534,5215:249:3,-159,-24.5,0,0,-0.13605 -68535,5215:248:4,-158.5,-24.5,0,0,-0.13605 -68536,5215:248:3,-158,-24.5,0,0,-0.13605 -68537,5215:247:4,-157.5,-24.5,0,0,-0.13605 -68538,5215:247:3,-157,-24.5,0,0,-0.13605 -68539,5215:246:4,-156.5,-24.5,0,0,-0.13605 -68540,5215:246:3,-156,-24.5,0,0,-0.13605 -68541,5215:245:4,-155.5,-24.5,0,0,-0.13605 -68542,5215:245:3,-155,-24.5,0,0,-0.13605 -68543,5215:144:4,-154.5,-24.5,0,0,-0.13605 -68544,5215:144:3,-154,-24.5,0,0,-0.13605 -68545,5215:143:4,-153.5,-24.5,0,0,-0.13605 -68546,5215:143:3,-153,-24.5,0,0,-0.13605 -68547,5215:142:4,-152.5,-24.5,0,0,-0.13605 -68548,5215:142:3,-152,-24.5,0,0,-0.13605 -68549,5215:141:4,-151.5,-24.5,0,0,-0.13605 -68550,5215:141:3,-151,-24.5,0,0,-0.13605 -68551,5215:140:4,-150.5,-24.5,0,0,-0.13605 -68552,5215:140:3,-150,-24.5,0,0,-0.13605 -68553,5214:249:4,-149.5,-24.5,0,0,-0.13605 -68554,5214:249:3,-149,-24.5,0,0,-0.13605 -68555,5214:248:4,-148.5,-24.5,0,0,-0.13605 -68556,5214:248:3,-148,-24.5,0,0,-0.13605 -68557,5214:247:4,-147.5,-24.5,0,0,-0.13605 -68558,5214:247:3,-147,-24.5,0,0,-0.13605 -68559,5214:246:4,-146.5,-24.5,0,0,-0.13605 -68560,5214:246:3,-146,-24.5,0,0,-0.13605 -68561,5214:245:4,-145.5,-24.5,0,0,-0.13605 -68562,5214:245:3,-145,-24.5,0,0,-0.13605 -68563,5214:144:4,-144.5,-24.5,0,0,-0.13605 -68564,5214:144:3,-144,-24.5,0,0,-0.13605 -68565,5214:143:4,-143.5,-24.5,0,0,-0.13605 -68566,5214:143:3,-143,-24.5,0,0,-0.13605 -68567,5214:142:4,-142.5,-24.5,0,0,-0.13605 -68568,5214:142:3,-142,-24.5,0,0,-0.13605 -68569,5214:141:4,-141.5,-24.5,0,0,-0.13605 -68570,5214:141:3,-141,-24.5,0,0,-0.13605 -68571,5214:140:4,-140.5,-24.5,0,0,-0.13605 -68572,5214:140:3,-140,-24.5,0,0,-0.13605 -68573,5213:249:4,-139.5,-24.5,0,0,-0.13605 -68574,5213:249:3,-139,-24.5,0,0,-0.13605 -68575,5213:248:4,-138.5,-24.5,0,0,-0.13605 -68576,5213:248:3,-138,-24.5,0,0,-0.13605 -68577,5213:247:4,-137.5,-24.5,0,0,-0.13605 -68578,5213:247:3,-137,-24.5,0,0,-0.13605 -68579,5213:246:4,-136.5,-24.5,0,0,-0.13605 -68580,5213:246:3,-136,-24.5,0,0,-0.13605 -68581,5213:245:4,-135.5,-24.5,0,0,-0.13605 -68582,5213:245:3,-135,-24.5,0,0,-0.13605 -68583,5213:144:4,-134.5,-24.5,0,0,-0.13605 -68584,5213:144:3,-134,-24.5,0,0,-0.13605 -68585,5213:143:4,-133.5,-24.5,0,0,-0.13605 -68586,5213:143:3,-133,-24.5,0,0,-0.13605 -68587,5213:142:4,-132.5,-24.5,0,0,-0.13605 -68588,5213:142:3,-132,-24.5,0,0,-0.13605 -68589,5213:141:4,-131.5,-24.5,0,0,-0.13605 -68590,5213:141:3,-131,-24.5,0,0,-0.13605 -68591,5213:140:4,-130.5,-24.5,0,0,-0.13605 -68592,5213:140:3,-130,-24.5,0,0,-0.13605 -68593,5212:249:4,-129.5,-24.5,0,0,-0.13605 -68594,5212:249:3,-129,-24.5,0,0,-0.13605 -68595,5212:248:4,-128.5,-24.5,0,0,-0.13605 -68596,5212:248:3,-128,-24.5,0,0,-0.13605 -68597,5212:247:4,-127.5,-24.5,0,0,-0.13605 -68598,5212:247:3,-127,-24.5,0,0,-0.13605 -68599,5212:246:4,-126.5,-24.5,0,0,-0.13605 -68600,5212:246:3,-126,-24.5,0,0,-0.13605 -68601,5212:245:4,-125.5,-24.5,0,0,-0.13605 -68602,5212:245:3,-125,-24.5,0,0,-0.13605 -68603,5212:144:4,-124.5,-24.5,0,0,-0.13605 -68604,5212:144:3,-124,-24.5,0,0,-0.13605 -68605,5212:143:4,-123.5,-24.5,0,0,-0.13605 -68606,5212:143:3,-123,-24.5,0,0,-0.13605 -68607,5212:142:4,-122.5,-24.5,0,0,-0.13605 -68608,5212:142:3,-122,-24.5,0,0,-0.13605 -68609,5212:141:4,-121.5,-24.5,0,0,-0.13605 -68610,5212:141:3,-121,-24.5,0,0,-0.13605 -68611,5212:140:4,-120.5,-24.5,0,0,-0.13605 -68612,5212:140:3,-120,-24.5,0,0,-0.13605 -68613,5211:249:4,-119.5,-24.5,0,0,-0.13605 -68614,5211:249:3,-119,-24.5,0,0,-0.13605 -68615,5211:248:4,-118.5,-24.5,0,0,-0.13605 -68616,5211:248:3,-118,-24.5,0,0,-0.13605 -68617,5211:247:4,-117.5,-24.5,0,0,-0.13605 -68618,5211:247:3,-117,-24.5,0,0,-0.13605 -68619,5211:246:4,-116.5,-24.5,0,0,-0.13605 -68620,5211:246:3,-116,-24.5,0,0,-0.13605 -68621,5211:245:4,-115.5,-24.5,0,0,-0.13605 -68622,5211:245:3,-115,-24.5,0,0,-0.13605 -68623,5211:144:4,-114.5,-24.5,0,0,-0.13605 -68624,5211:144:3,-114,-24.5,0,0,-0.13605 -68625,5211:143:4,-113.5,-24.5,0,0,-0.13605 -68626,5211:143:3,-113,-24.5,0,0,-0.13605 -68627,5211:142:4,-112.5,-24.5,0,0,-0.13605 -68628,5211:142:3,-112,-24.5,0,0,-0.13605 -68629,5211:141:4,-111.5,-24.5,0,0,-0.13605 -68630,5211:141:3,-111,-24.5,0,0,-0.13605 -68631,5211:140:4,-110.5,-24.5,0,0,-0.13605 -68632,5211:140:3,-110,-24.5,0,0,-0.13605 -68633,5210:249:4,-109.5,-24.5,0,0,-0.13605 -68634,5210:249:3,-109,-24.5,0,0,-0.13605 -68635,5210:248:4,-108.5,-24.5,0,0,-0.13605 -68636,5210:248:3,-108,-24.5,0,0,-0.13605 -68637,5210:247:4,-107.5,-24.5,0,0,-0.13605 -68638,5210:247:3,-107,-24.5,0,0,-0.13605 -68639,5210:246:4,-106.5,-24.5,0,0,-0.13605 -68640,5210:246:3,-106,-24.5,0,0,-0.13605 -68641,5210:245:4,-105.5,-24.5,0,0,-0.13605 -68642,5210:245:3,-105,-24.5,0,0,-0.13605 -68643,5210:144:4,-104.5,-24.5,0,0,-0.13605 -68644,5210:144:3,-104,-24.5,0,0,-0.13605 -68645,5210:143:4,-103.5,-24.5,0,0,-0.13605 -68646,5210:143:3,-103,-24.5,0,0,-0.13605 -68647,5210:142:4,-102.5,-24.5,0,0,-0.13605 -68648,5210:142:3,-102,-24.5,0,0,-0.13605 -68649,5210:141:4,-101.5,-24.5,0,0,-0.13605 -68650,5210:141:3,-101,-24.5,0,0,-0.13605 -68651,5210:140:4,-100.5,-24.5,0,0,-0.13605 -68652,5210:140:3,-100,-24.5,0,0,-0.13605 -68653,5209:249:4,-99.5,-24.5,0,0,-0.13605 -68654,5209:249:3,-99,-24.5,0,0,-0.13605 -68655,5209:248:4,-98.5,-24.5,0,0,-0.13605 -68656,5209:248:3,-98,-24.5,0,0,-0.13605 -68657,5209:247:4,-97.5,-24.5,0,0,-0.13605 -68658,5209:247:3,-97,-24.5,0,0,-0.13605 -68659,5209:246:4,-96.5,-24.5,0,0,-0.13605 -68660,5209:246:3,-96,-24.5,0,0,-0.13605 -68661,5209:245:4,-95.5,-24.5,0,0,-0.13605 -68662,5209:245:3,-95,-24.5,0,0,-0.13605 -68663,5209:144:4,-94.5,-24.5,0,0,-0.13605 -68664,5209:144:3,-94,-24.5,0,0,-0.13605 -68665,5209:143:4,-93.5,-24.5,0,0,-0.13605 -68666,5209:143:3,-93,-24.5,0,0,-0.13605 -68667,5209:142:4,-92.5,-24.5,0,0,-0.13605 -68668,5209:142:3,-92,-24.5,0,0,-0.13605 -68669,5209:141:4,-91.5,-24.5,0,0,-0.13605 -68670,5209:141:3,-91,-24.5,0,0,-0.13605 -68671,5209:140:4,-90.5,-24.5,0,0,-0.13605 -68672,5209:140:3,-90,-24.5,0,0,-0.13605 -68673,5208:249:4,-89.5,-24.5,0,0,-0.13605 -68674,5208:249:3,-89,-24.5,0,0,-0.13605 -68675,5208:248:4,-88.5,-24.5,0,0,-0.13605 -68676,5208:248:3,-88,-24.5,0,0,-0.13605 -68677,5208:247:4,-87.5,-24.5,0,0,-0.13605 -68678,5208:247:3,-87,-24.5,0,0,-0.13605 -68679,5208:246:4,-86.5,-24.5,0,0,-0.13605 -68680,5208:246:3,-86,-24.5,0,0,-0.13605 -68681,5208:245:4,-85.5,-24.5,0,0,-0.13605 -68682,5208:245:3,-85,-24.5,0,0,-0.13605 -68683,5208:144:4,-84.5,-24.5,0,0,-0.13605 -68684,5208:144:3,-84,-24.5,0,0,-0.13605 -68685,5208:143:4,-83.5,-24.5,0,0,-0.13605 -68686,5208:143:3,-83,-24.5,0,0,-0.13605 -68687,5208:142:4,-82.5,-24.5,0,0,-0.13605 -68688,5208:142:3,-82,-24.5,0,0,-0.13605 -68689,5208:141:4,-81.5,-24.5,0,0,-0.13605 -68690,5208:141:3,-81,-24.5,0,0,-0.13605 -68691,5208:140:4,-80.5,-24.5,0,0,-0.13605 -68692,5208:140:3,-80,-24.5,0,0,-0.13605 -68693,5207:249:4,-79.5,-24.5,0,0,-0.13605 -68694,5207:249:3,-79,-24.5,0,0,-0.13605 -68695,5207:248:4,-78.5,-24.5,0,0,-0.13605 -68696,5207:248:3,-78,-24.5,0,0,-0.13605 -68697,5207:247:4,-77.5,-24.5,0,0,-0.13605 -68698,5207:247:3,-77,-24.5,0,0,-0.13605 -68699,5207:246:4,-76.5,-24.5,0,0,-0.13605 -68700,5207:246:3,-76,-24.5,0,0,-0.13605 -68701,5207:245:4,-75.5,-24.5,0,0,-0.13605 -68702,5207:245:3,-75,-24.5,0,0,-0.13605 -68703,5207:144:4,-74.5,-24.5,0,0,-0.13605 -68704,5207:144:3,-74,-24.5,0,0,-0.13605 -68705,5207:143:4,-73.5,-24.5,0,0,-0.13605 -68706,5207:143:3,-73,-24.5,0,0,-0.13605 -68707,5207:142:4,-72.5,-24.5,0,0,-0.13605 -68708,5207:142:3,-72,-24.5,0,0,-0.13605 -68709,5205:142:3,-52,-24.5,0,0,-0.13605 -68710,5205:141:4,-51.5,-24.5,0,0,-0.13605 -68711,5205:141:3,-51,-24.5,0,0,-0.13605 -68712,5205:140:4,-50.5,-24.5,0,0,-0.13605 -68713,5205:140:3,-50,-24.5,0,0,-0.13605 -68714,5204:249:4,-49.5,-24.5,0,0,-0.13605 -68715,5204:249:3,-49,-24.5,0,0,-0.13605 -68716,5204:248:4,-48.5,-24.5,0,0,-0.13605 -68717,5204:248:3,-48,-24.5,0,0,-0.13605 -68718,5204:247:4,-47.5,-24.5,0,0,-0.13605 -68719,5204:247:3,-47,-24.5,0,0,-0.13605 -68720,5204:246:4,-46.5,-24.5,0,0,-0.13605 -68721,5204:246:3,-46,-24.5,0,0,-0.13605 -68722,5204:245:4,-45.5,-24.5,0,0,-0.13605 -68723,5204:245:3,-45,-24.5,0,0,-0.13605 -68724,5204:144:4,-44.5,-24.5,0,0,-0.13605 -68725,5204:144:3,-44,-24.5,0,0,-0.13605 -68726,5204:143:4,-43.5,-24.5,0,0,-0.13605 -68727,5204:143:3,-43,-24.5,0,0,-0.13605 -68728,5204:142:4,-42.5,-24.5,0,0,-0.13605 -68729,5204:142:3,-42,-24.5,0,0,-0.13605 -68730,5204:141:4,-41.5,-24.5,0,0,-0.13605 -68731,5204:141:3,-41,-24.5,0,0,-0.13605 -68732,5204:140:4,-40.5,-24.5,0,0,-0.13605 -68733,5204:140:3,-40,-24.5,0,0,-0.13605 -68734,5203:249:4,-39.5,-24.5,0,0,-0.13605 -68735,5203:249:3,-39,-24.5,0,0,-0.13605 -68736,5203:248:4,-38.5,-24.5,0,0,-0.13605 -68737,5203:248:3,-38,-24.5,0,0,-0.13605 -68738,5203:247:4,-37.5,-24.5,0,0,-0.13605 -68739,5203:247:3,-37,-24.5,0,0,-0.13605 -68740,5203:246:4,-36.5,-24.5,0,0,-0.13605 -68741,5203:246:3,-36,-24.5,0,0,-0.13605 -68742,5203:245:4,-35.5,-24.5,0,0,-0.13605 -68743,5203:245:3,-35,-24.5,0,0,-0.13605 -68744,5203:144:4,-34.5,-24.5,0,0,-0.13605 -68745,5203:144:3,-34,-24.5,0,0,-0.13605 -68746,5203:143:4,-33.5,-24.5,0,0,-0.13605 -68747,5203:143:3,-33,-24.5,0,0,-0.13605 -68748,5203:142:4,-32.5,-24.5,0,0,-0.13605 -68749,5203:142:3,-32,-24.5,0,0,-0.13605 -68750,5203:141:4,-31.5,-24.5,0,0,-0.13605 -68751,5203:141:3,-31,-24.5,0,0,-0.13605 -68752,5203:140:4,-30.5,-24.5,0,0,-0.13605 -68753,5203:140:3,-30,-24.5,0,0,-0.13605 -68754,5202:249:4,-29.5,-24.5,0,0,-0.13605 -68755,5202:249:3,-29,-24.5,0,0,-0.13605 -68756,5202:248:4,-28.5,-24.5,0,0,-0.13605 -68757,5202:248:3,-28,-24.5,0,0,-0.13605 -68758,5202:247:4,-27.5,-24.5,0,0,-0.13605 -68759,5202:247:3,-27,-24.5,0,0,-0.13605 -68760,5202:246:4,-26.5,-24.5,0,0,-0.13605 -68761,5202:246:3,-26,-24.5,0,0,-0.13605 -68762,5202:245:4,-25.5,-24.5,0,0,-0.13605 -68763,5202:245:3,-25,-24.5,0,0,-0.13605 -68764,5202:144:4,-24.5,-24.5,0,0,-0.13605 -68765,5202:144:3,-24,-24.5,0,0,-0.13605 -68766,5202:143:4,-23.5,-24.5,0,0,-0.13605 -68767,5202:143:3,-23,-24.5,0,0,-0.13605 -68768,5202:142:4,-22.5,-24.5,0,0,-0.13605 -68769,5202:142:3,-22,-24.5,0,0,-0.13605 -68770,5202:141:4,-21.5,-24.5,0,0,-0.13605 -68771,5202:141:3,-21,-24.5,0,0,-0.13605 -68772,5202:140:4,-20.5,-24.5,0,0,-0.13605 -68773,5202:140:3,-20,-24.5,0,0,-0.13605 -68774,5201:249:4,-19.5,-24.5,0,0,-0.13605 -68775,5201:249:3,-19,-24.5,0,0,-0.13605 -68776,5201:248:4,-18.5,-24.5,0,0,-0.13605 -68777,5201:248:3,-18,-24.5,0,0,-0.13605 -68778,5201:247:4,-17.5,-24.5,0,0,-0.13605 -68779,5201:247:3,-17,-24.5,0,0,-0.13605 -68780,5201:246:4,-16.5,-24.5,0,0,-0.13605 -68781,5201:246:3,-16,-24.5,0,0,-0.13605 -68782,5201:245:4,-15.5,-24.5,0,0,-0.13605 -68783,5201:245:3,-15,-24.5,0,0,-0.13605 -68784,5201:144:4,-14.5,-24.5,0,0,-0.13605 -68785,5201:144:3,-14,-24.5,0,0,-0.13605 -68786,5201:143:4,-13.5,-24.5,0,0,-0.13605 -68787,5201:143:3,-13,-24.5,0,0,-0.13605 -68788,5201:142:4,-12.5,-24.5,0,0,-0.13605 -68789,5201:142:3,-12,-24.5,0,0,-0.13605 -68790,5201:141:4,-11.5,-24.5,0,0,-0.13605 -68791,5201:141:3,-11,-24.5,0,0,-0.13605 -68792,5201:140:4,-10.5,-24.5,0,0,-0.13605 -68793,5201:140:3,-10,-24.5,0,0,-0.13605 -68794,5200:249:4,-9.5,-24.5,0,0,-0.13605 -68795,5200:249:3,-9,-24.5,0,0,-0.13605 -68796,5200:248:4,-8.5,-24.5,0,0,-0.13605 -68797,5200:248:3,-8,-24.5,0,0,-0.13605 -68798,5200:247:4,-7.5,-24.5,0,0,-0.13605 -68799,5200:247:3,-7,-24.5,0,0,-0.13605 -68800,5200:246:4,-6.5,-24.5,0,0,-0.13605 -68801,5200:246:3,-6,-24.5,0,0,-0.13605 -68802,5200:245:4,-5.5,-24.5,0,0,-0.13605 -68803,5200:245:3,-5,-24.5,0,0,-0.13605 -68804,5200:144:4,-4.5,-24.5,0,0,-0.13605 -68805,5200:144:3,-4,-24.5,0,0,-0.13605 -68806,5200:143:4,-3.5,-24.5,0,0,-0.13605 -68807,5200:143:3,-3,-24.5,0,0,-0.13605 -68808,5200:142:4,-2.5,-24.5,0,0,-0.13605 -68809,5200:142:3,-2,-24.5,0,0,-0.13605 -68810,5200:141:4,-1.5,-24.5,0,0,-0.13605 -68811,5200:141:3,-1,-24.5,0,0,-0.13605 -68812,5200:140:4,-0.5,-24.5,0,0,-0.13605 -68813,3200:140:4,0,-24.5,0,0,-0.13605 -68814,3200:140:4,0.5,-24.5,0,0,-0.13605 -68815,3200:141:3,1,-24.5,0,0,-0.13605 -68816,3200:141:4,1.5,-24.5,0,0,-0.13605 -68817,3200:142:3,2,-24.5,0,0,-0.13605 -68818,3200:142:4,2.5,-24.5,0,0,-0.13605 -68819,3200:143:3,3,-24.5,0,0,-0.13605 -68820,3200:143:4,3.5,-24.5,0,0,-0.13605 -68821,3200:144:3,4,-24.5,0,0,-0.13605 -68822,3200:144:4,4.5,-24.5,0,0,-0.13605 -68823,3200:245:3,5,-24.5,0,0,-0.13605 -68824,3200:245:4,5.5,-24.5,0,0,-0.13605 -68825,3200:246:3,6,-24.5,0,0,-0.13605 -68826,3200:246:4,6.5,-24.5,0,0,-0.13605 -68827,3200:247:3,7,-24.5,0,0,-0.13605 -68828,3200:247:4,7.5,-24.5,0,0,-0.13605 -68829,3200:248:3,8,-24.5,0,0,-0.13605 -68830,3200:248:4,8.5,-24.5,0,0,-0.13605 -68831,3200:249:3,9,-24.5,0,0,-0.13605 -68832,3200:249:4,9.5,-24.5,0,0,-0.13605 -68833,3201:140:3,10,-24.5,0,0,-0.13605 -68834,3201:140:4,10.5,-24.5,0,0,-0.13605 -68835,3201:141:3,11,-24.5,0,0,-0.13605 -68836,3201:141:4,11.5,-24.5,0,0,-0.13605 -68837,3201:142:3,12,-24.5,0,0,-0.13605 -68838,3201:142:4,12.5,-24.5,0,0,-0.13605 -68839,3201:143:3,13,-24.5,0,0,-0.13605 -68840,3201:143:4,13.5,-24.5,0,0,-0.13605 -68841,3201:144:3,14,-24.5,0,0,-0.13605 -68842,3201:144:4,14.5,-24.5,0,0,-0.13605 -68843,3201:245:3,15,-24.5,0,0,-0.13605 -68844,3201:245:4,15.5,-24.5,0,0,-0.13605 -68845,3201:246:3,16,-24.5,0,0,-0.13605 -68846,3201:246:4,16.5,-24.5,0,0,-0.13605 -68847,3201:247:3,17,-24.5,0,0,-0.13605 -68848,3201:247:4,17.5,-24.5,0,0,-0.13605 -68849,3201:248:3,18,-24.5,0,0,-0.13605 -68850,3202:249:3,29,-24.5,0,0,-0.13605 -68851,3202:249:4,29.5,-24.5,0,0,-0.13605 -68852,3203:140:3,30,-24.5,0,0,-0.13605 -68853,3203:140:4,30.5,-24.5,0,0,-0.13605 -68854,3203:141:3,31,-24.5,0,0,-0.13605 -68855,3203:141:4,31.5,-24.5,0,0,-0.13605 -68856,3203:142:3,32,-24.5,0,0,-0.13605 -68857,3203:142:4,32.5,-24.5,0,0,-0.13605 -68858,3203:143:3,33,-24.5,0,0,-0.13605 -68859,3203:143:4,33.5,-24.5,0,0,-0.13605 -68860,3203:144:3,34,-24.5,0,0,-0.13605 -68861,3203:144:4,34.5,-24.5,0,0,-0.13605 -68862,3203:245:3,35,-24.5,0,0,-0.13605 -68863,3203:245:4,35.5,-24.5,0,0,-0.13605 -68864,3203:246:3,36,-24.5,0,0,-0.13605 -68865,3203:246:4,36.5,-24.5,0,0,-0.13605 -68866,3203:247:3,37,-24.5,0,0,-0.13605 -68867,3203:247:4,37.5,-24.5,0,0,-0.13605 -68868,3203:248:3,38,-24.5,0,0,-0.13605 -68869,3203:248:4,38.5,-24.5,0,0,-0.13605 -68870,3203:249:3,39,-24.5,0,0,-0.13605 -68871,3203:249:4,39.5,-24.5,0,0,-0.13605 -68872,3204:140:3,40,-24.5,0,0,-0.13605 -68873,3204:140:4,40.5,-24.5,0,0,-0.13605 -68874,3204:141:3,41,-24.5,0,0,-0.13605 -68875,3204:141:4,41.5,-24.5,0,0,-0.13605 -68876,3204:142:3,42,-24.5,0,0,-0.13605 -68877,3204:142:4,42.5,-24.5,0,0,-0.13605 -68878,3204:143:3,43,-24.5,0,0,-0.13605 -68879,3204:143:4,43.5,-24.5,0,0,-0.13605 -68880,3204:144:3,44,-24.5,0,0,-0.13605 -68881,3204:144:4,44.5,-24.5,0,0,-0.13605 -68882,3204:245:3,45,-24.5,0,0,-0.13605 -68883,3204:245:4,45.5,-24.5,0,0,-0.13605 -68884,3204:246:3,46,-24.5,0,0,-0.13605 -68885,3204:246:4,46.5,-24.5,0,0,-0.13605 -68886,3204:247:3,47,-24.5,0,0,-0.13605 -68887,3204:247:4,47.5,-24.5,0,0,-0.13605 -68888,3204:248:3,48,-24.5,0,0,-0.13605 -68889,3204:248:4,48.5,-24.5,0,0,-0.13605 -68890,3204:249:3,49,-24.5,0,0,-0.13605 -68891,3204:249:4,49.5,-24.5,0,0,-0.13605 -68892,3205:140:3,50,-24.5,0,0,-0.13605 -68893,3205:140:4,50.5,-24.5,0,0,-0.13605 -68894,3205:141:3,51,-24.5,0,0,-0.13605 -68895,3205:141:4,51.5,-24.5,0,0,-0.13605 -68896,3205:142:3,52,-24.5,0,0,-0.13605 -68897,3205:142:4,52.5,-24.5,0,0,-0.13605 -68898,3205:143:3,53,-24.5,0,0,-0.13605 -68899,3205:143:4,53.5,-24.5,0,0,-0.13605 -68900,3205:144:3,54,-24.5,0,0,-0.13605 -68901,3205:144:4,54.5,-24.5,0,0,-0.13605 -68902,3205:245:3,55,-24.5,0,0,-0.13605 -68903,3205:245:4,55.5,-24.5,0,0,-0.13605 -68904,3205:246:3,56,-24.5,0,0,-0.13605 -68905,3205:246:4,56.5,-24.5,0,0,-0.13605 -68906,3205:247:3,57,-24.5,0,0,-0.13605 -68907,3205:247:4,57.5,-24.5,0,0,-0.13605 -68908,3205:248:3,58,-24.5,0,0,-0.13605 -68909,3205:248:4,58.5,-24.5,0,0,-0.13605 -68910,3205:249:3,59,-24.5,0,0,-0.13605 -68911,3205:249:4,59.5,-24.5,0,0,-0.13605 -68912,3206:140:3,60,-24.5,0,0,-0.13605 -68913,3206:140:4,60.5,-24.5,0,0,-0.13605 -68914,3206:141:3,61,-24.5,0,0,-0.13605 -68915,3206:141:4,61.5,-24.5,0,0,-0.13605 -68916,3206:142:3,62,-24.5,0,0,-0.13605 -68917,3206:142:4,62.5,-24.5,0,0,-0.13605 -68918,3206:143:3,63,-24.5,0,0,-0.13605 -68919,3206:143:4,63.5,-24.5,0,0,-0.13605 -68920,3206:144:3,64,-24.5,0,0,-0.13605 -68921,3206:144:4,64.5,-24.5,0,0,-0.13605 -68922,3206:245:3,65,-24.5,0,0,-0.13605 -68923,3206:245:4,65.5,-24.5,0,0,-0.13605 -68924,3206:246:3,66,-24.5,0,0,-0.13605 -68925,3206:246:4,66.5,-24.5,0,0,-0.13605 -68926,3206:247:3,67,-24.5,0,0,-0.13605 -68927,3206:247:4,67.5,-24.5,0,0,-0.13605 -68928,3206:248:3,68,-24.5,0,0,-0.13605 -68929,3206:248:4,68.5,-24.5,0,0,-0.13605 -68930,3206:249:3,69,-24.5,0,0,-0.13605 -68931,3206:249:4,69.5,-24.5,0,0,-0.13605 -68932,3207:140:3,70,-24.5,0,0,-0.13605 -68933,3207:140:4,70.5,-24.5,0,0,-0.13605 -68934,3207:141:3,71,-24.5,0,0,-0.13605 -68935,3207:141:4,71.5,-24.5,0,0,-0.13605 -68936,3207:142:3,72,-24.5,0,0,-0.13605 -68937,3207:142:4,72.5,-24.5,0,0,-0.13605 -68938,3207:143:4,73.5,-24.5,0,0,-0.13605 -68939,3207:144:3,74,-24.5,0,0,-0.13605 -68940,3207:144:4,74.5,-24.5,0,0,-0.13605 -68941,3207:245:3,75,-24.5,0,0,-0.13605 -68942,3207:245:4,75.5,-24.5,0,0,-0.13605 -68943,3207:246:3,76,-24.5,0,0,-0.13605 -68944,3207:246:4,76.5,-24.5,0,0,-0.13605 -68945,3207:247:3,77,-24.5,0,0,-0.13605 -68946,3207:247:4,77.5,-24.5,0,0,-0.13605 -68947,3207:248:3,78,-24.5,0,0,-0.13605 -68948,3207:248:4,78.5,-24.5,0,0,-0.13605 -68949,3207:249:3,79,-24.5,0,0,-0.13605 -68950,3207:249:4,79.5,-24.5,0,0,-0.13605 -68951,3208:140:3,80,-24.5,0,0,-0.13605 -68952,3208:140:4,80.5,-24.5,0,0,-0.13605 -68953,3208:141:3,81,-24.5,0,0,-0.13605 -68954,3208:141:4,81.5,-24.5,0,0,-0.13605 -68955,3208:142:3,82,-24.5,0,0,-0.13605 -68956,3208:142:4,82.5,-24.5,0,0,-0.13605 -68957,3208:143:3,83,-24.5,0,0,-0.13605 -68958,3208:143:4,83.5,-24.5,0,0,-0.13605 -68959,3208:144:3,84,-24.5,0,0,-0.13605 -68960,3208:144:4,84.5,-24.5,0,0,-0.13605 -68961,3208:245:3,85,-24.5,0,0,-0.13605 -68962,3208:245:4,85.5,-24.5,0,0,-0.13605 -68963,3208:246:3,86,-24.5,0,0,-0.13605 -68964,3208:246:4,86.5,-24.5,0,0,-0.13605 -68965,3208:247:3,87,-24.5,0,0,-0.13605 -68966,3208:247:4,87.5,-24.5,0,0,-0.13605 -68967,3208:248:3,88,-24.5,0,0,-0.13605 -68968,3208:248:4,88.5,-24.5,0,0,-0.13605 -68969,3208:249:3,89,-24.5,0,0,-0.13605 -68970,3208:249:4,89.5,-24.5,0,0,-0.13605 -68971,3209:140:3,90,-24.5,0,0,-0.13605 -68972,3209:140:4,90.5,-24.5,0,0,-0.13605 -68973,3209:141:3,91,-24.5,0,0,-0.13605 -68974,3209:141:4,91.5,-24.5,0,0,-0.13605 -68975,3209:142:3,92,-24.5,0,0,-0.13605 -68976,3209:142:4,92.5,-24.5,0,0,-0.13605 -68977,3209:143:3,93,-24.5,0,0,-0.13605 -68978,3209:143:4,93.5,-24.5,0,0,-0.13605 -68979,3209:144:3,94,-24.5,0,0,-0.13605 -68980,3209:144:4,94.5,-24.5,0,0,-0.13605 -68981,3209:245:3,95,-24.5,0,0,-0.13605 -68982,3209:245:4,95.5,-24.5,0,0,-0.13605 -68983,3209:246:3,96,-24.5,0,0,-0.13605 -68984,3209:246:4,96.5,-24.5,0,0,-0.13605 -68985,3209:247:3,97,-24.5,0,0,-0.13605 -68986,3209:247:4,97.5,-24.5,0,0,-0.13605 -68987,3209:248:3,98,-24.5,0,0,-0.13605 -68988,3209:248:4,98.5,-24.5,0,0,-0.13605 -68989,3209:249:3,99,-24.5,0,0,-0.13605 -68990,3209:249:4,99.5,-24.5,0,0,-0.13605 -68991,3210:140:3,100,-24.5,0,0,-0.13605 -68992,3210:140:4,100.5,-24.5,0,0,-0.13605 -68993,3210:141:3,101,-24.5,0,0,-0.13605 -68994,3210:141:4,101.5,-24.5,0,0,-0.13605 -68995,3210:142:3,102,-24.5,0,0,-0.13605 -68996,3210:142:4,102.5,-24.5,0,0,-0.13605 -68997,3210:143:3,103,-24.5,0,0,-0.13605 -68998,3210:143:4,103.5,-24.5,0,0,-0.13605 -68999,3210:144:3,104,-24.5,0,0,-0.13605 -69000,3210:144:4,104.5,-24.5,0,0,-0.13605 -69001,3210:245:3,105,-24.5,0,0,-0.13605 -69002,3210:245:4,105.5,-24.5,0,0,-0.13605 -69003,3210:246:3,106,-24.5,0,0,-0.13605 -69004,3210:246:4,106.5,-24.5,0,0,-0.13605 -69005,3210:247:3,107,-24.5,0,0,-0.13605 -69006,3210:247:4,107.5,-24.5,0,0,-0.13605 -69007,3210:248:3,108,-24.5,0,0,-0.13605 -69008,3210:248:4,108.5,-24.5,0,0,-0.13605 -69009,3210:249:3,109,-24.5,0,0,-0.13605 -69010,3210:249:4,109.5,-24.5,0,0,-0.13605 -69011,3211:140:3,110,-24.5,0,0,-0.13605 -69012,3211:140:4,110.5,-24.5,0,0,-0.13605 -69013,3211:141:3,111,-24.5,0,0,-0.13605 -69014,3211:141:4,111.5,-24.5,0,0,-0.13605 -69015,3211:142:3,112,-24.5,0,0,-0.13605 -69016,3211:142:4,112.5,-24.5,0,0,-0.13605 -69017,3211:143:3,113,-24.5,0,0,-0.13605 -69018,3211:143:4,113.5,-24.5,0,0,-0.13605 -69019,3211:144:3,114,-24.5,0,0,-0.13605 -69020,3211:144:4,114.5,-24.5,0,0,-0.13605 -69021,3211:245:3,115,-24.5,0,0,-0.13605 -69022,3211:245:4,115.5,-24.5,0,0,-0.13605 -69023,3212:248:3,128,-24.5,0,0,-0.13605 -69024,3212:248:4,128.5,-24.5,0,0,-0.13605 -69025,3212:249:3,129,-24.5,0,0,-0.13605 -69026,3212:249:4,129.5,-24.5,0,0,-0.13605 -69027,3213:140:3,130,-24.5,0,0,-0.13605 -69028,3213:140:4,130.5,-24.5,0,0,-0.13605 -69029,3213:141:3,131,-24.5,0,0,-0.13605 -69030,3213:141:4,131.5,-24.5,0,0,-0.13605 -69031,3213:142:3,132,-24.5,0,0,-0.13605 -69032,3213:142:4,132.5,-24.5,0,0,-0.13605 -69033,3213:143:3,133,-24.5,0,0,-0.13605 -69034,3215:143:3,153,-24.5,0,0,-0.13605 -69035,3215:143:4,153.5,-24.5,0,0,-0.13605 -69036,3215:144:3,154,-24.5,0,0,-0.13605 -69037,3215:144:4,154.5,-24.5,0,0,-0.13605 -69038,3215:245:3,155,-24.5,0,0,-0.13605 -69039,3215:245:4,155.5,-24.5,0,0,-0.13605 -69040,3215:246:3,156,-24.5,0,0,-0.13605 -69041,3215:246:4,156.5,-24.5,0,0,-0.13605 -69042,3215:247:3,157,-24.5,0,0,-0.13605 -69043,3215:247:4,157.5,-24.5,0,0,-0.13605 -69044,3215:248:3,158,-24.5,0,0,-0.13605 -69045,3215:248:4,158.5,-24.5,0,0,-0.13605 -69046,3215:249:3,159,-24.5,0,0,-0.13605 -69047,3215:249:4,159.5,-24.5,0,0,-0.13605 -69048,3216:140:3,160,-24.5,0,0,-0.13605 -69049,3216:140:4,160.5,-24.5,0,0,-0.13605 -69050,3216:141:3,161,-24.5,0,0,-0.13605 -69051,3216:141:4,161.5,-24.5,0,0,-0.13605 -69052,3216:142:3,162,-24.5,0,0,-0.13605 -69053,3216:142:4,162.5,-24.5,0,0,-0.13605 -69054,3216:143:3,163,-24.5,0,0,-0.13605 -69055,3216:143:4,163.5,-24.5,0,0,-0.13605 -69056,3216:144:3,164,-24.5,0,0,-0.13605 -69057,3216:144:4,164.5,-24.5,0,0,-0.13605 -69058,3216:245:3,165,-24.5,0,0,-0.13605 -69059,3216:245:4,165.5,-24.5,0,0,-0.13605 -69060,3216:246:3,166,-24.5,0,0,-0.13605 -69061,3216:246:4,166.5,-24.5,0,0,-0.13605 -69062,3216:247:3,167,-24.5,0,0,-0.13605 -69063,3216:247:4,167.5,-24.5,0,0,-0.13605 -69064,3216:248:3,168,-24.5,0,0,-0.13605 -69065,3216:248:4,168.5,-24.5,0,0,-0.13605 -69066,3216:249:3,169,-24.5,0,0,-0.13605 -69067,3216:249:4,169.5,-24.5,0,0,-0.13605 -69068,3217:140:3,170,-24.5,0,0,-0.13605 -69069,3217:140:4,170.5,-24.5,0,0,-0.13605 -69070,3217:141:3,171,-24.5,0,0,-0.13605 -69071,3217:141:4,171.5,-24.5,0,0,-0.13605 -69072,3217:142:3,172,-24.5,0,0,-0.13605 -69073,3217:142:4,172.5,-24.5,0,0,-0.13605 -69074,3217:143:3,173,-24.5,0,0,-0.13605 -69075,3217:143:4,173.5,-24.5,0,0,-0.13605 -69076,3217:144:3,174,-24.5,0,0,-0.13605 -69077,3217:144:4,174.5,-24.5,0,0,-0.13605 -69078,3217:245:3,175,-24.5,0,0,-0.13605 -69079,3217:245:4,175.5,-24.5,0,0,-0.13605 -69080,3217:246:3,176,-24.5,0,0,-0.13605 -69081,3217:246:4,176.5,-24.5,0,0,-0.13605 -69082,3217:247:3,177,-24.5,0,0,-0.13605 -69083,3217:247:4,177.5,-24.5,0,0,-0.13605 -69084,3217:248:3,178,-24.5,0,0,-0.13605 -69085,3217:248:4,178.5,-24.5,0,0,-0.13605 -69086,3217:249:3,179,-24.5,0,0,-0.13605 -69087,3217:249:4,179.5,-24.5,0,0,-0.13605 -69088,3218:140:3,180,-24.5,0,0,-0.13605 -69089,5218:140:1,-180,-24,0,0,-0.13605 -69090,5217:249:2,-179.5,-24,0,0,-0.13605 -69091,5217:249:1,-179,-24,0,0,-0.13605 -69092,5217:248:2,-178.5,-24,0,0,-0.13605 -69093,5217:248:1,-178,-24,0,0,-0.13605 -69094,5217:247:2,-177.5,-24,0,0,-0.13605 -69095,5217:247:1,-177,-24,0,0,-0.13605 -69096,5217:246:2,-176.5,-24,0,0,-0.13605 -69097,5217:246:1,-176,-24,0,0,-0.13605 -69098,5217:245:2,-175.5,-24,0,0,-0.13605 -69099,5217:245:1,-175,-24,0,0,-0.13605 -69100,5217:144:2,-174.5,-24,0,0,-0.13605 -69101,5217:144:1,-174,-24,0,0,-0.13605 -69102,5217:143:2,-173.5,-24,0,0,-0.13605 -69103,5217:143:1,-173,-24,0,0,-0.13605 -69104,5217:142:2,-172.5,-24,0,0,-0.13605 -69105,5217:142:1,-172,-24,0,0,-0.13605 -69106,5217:141:2,-171.5,-24,0,0,-0.13605 -69107,5217:141:1,-171,-24,0,0,-0.13605 -69108,5217:140:2,-170.5,-24,0,0,-0.13605 -69109,5217:140:1,-170,-24,0,0,-0.13605 -69110,5216:249:2,-169.5,-24,0,0,-0.13605 -69111,5216:249:1,-169,-24,0,0,-0.13605 -69112,5216:248:2,-168.5,-24,0,0,-0.13605 -69113,5216:248:1,-168,-24,0,0,-0.13605 -69114,5216:247:2,-167.5,-24,0,0,-0.13605 -69115,5216:247:1,-167,-24,0,0,-0.13605 -69116,5216:246:2,-166.5,-24,0,0,-0.13605 -69117,5216:246:1,-166,-24,0,0,-0.13605 -69118,5216:245:2,-165.5,-24,0,0,-0.13605 -69119,5216:245:1,-165,-24,0,0,-0.13605 -69120,5216:144:2,-164.5,-24,0,0,-0.13605 -69121,5216:144:1,-164,-24,0,0,-0.13605 -69122,5216:143:2,-163.5,-24,0,0,-0.13605 -69123,5216:143:1,-163,-24,0,0,-0.13605 -69124,5216:142:2,-162.5,-24,0,0,-0.13605 -69125,5216:142:1,-162,-24,0,0,-0.13605 -69126,5216:141:2,-161.5,-24,0,0,-0.13605 -69127,5216:141:1,-161,-24,0,0,-0.13605 -69128,5216:140:2,-160.5,-24,0,0,-0.13605 -69129,5216:140:1,-160,-24,0,0,-0.13605 -69130,5215:249:2,-159.5,-24,0,0,-0.13605 -69131,5215:249:1,-159,-24,0,0,-0.13605 -69132,5215:248:2,-158.5,-24,0,0,-0.13605 -69133,5215:248:1,-158,-24,0,0,-0.13605 -69134,5215:247:2,-157.5,-24,0,0,-0.13605 -69135,5215:247:1,-157,-24,0,0,-0.13605 -69136,5215:246:2,-156.5,-24,0,0,-0.13605 -69137,5215:246:1,-156,-24,0,0,-0.13605 -69138,5215:245:2,-155.5,-24,0,0,-0.13605 -69139,5215:245:1,-155,-24,0,0,-0.13605 -69140,5215:144:2,-154.5,-24,0,0,-0.13605 -69141,5215:144:1,-154,-24,0,0,-0.13605 -69142,5215:143:2,-153.5,-24,0,0,-0.13605 -69143,5215:143:1,-153,-24,0,0,-0.13605 -69144,5215:142:2,-152.5,-24,0,0,-0.13605 -69145,5215:142:1,-152,-24,0,0,-0.13605 -69146,5215:141:2,-151.5,-24,0,0,-0.13605 -69147,5215:141:1,-151,-24,0,0,-0.13605 -69148,5215:140:2,-150.5,-24,0,0,-0.13605 -69149,5215:140:1,-150,-24,0,0,-0.13605 -69150,5214:249:2,-149.5,-24,0,0,-0.13605 -69151,5214:249:1,-149,-24,0,0,-0.13605 -69152,5214:248:2,-148.5,-24,0,0,-0.13605 -69153,5214:248:1,-148,-24,0,0,-0.13605 -69154,5214:247:2,-147.5,-24,0,0,-0.13605 -69155,5214:247:1,-147,-24,0,0,-0.13605 -69156,5214:246:2,-146.5,-24,0,0,-0.13605 -69157,5214:246:1,-146,-24,0,0,-0.13605 -69158,5214:245:2,-145.5,-24,0,0,-0.13605 -69159,5214:245:1,-145,-24,0,0,-0.13605 -69160,5214:144:2,-144.5,-24,0,0,-0.13605 -69161,5214:144:1,-144,-24,0,0,-0.13605 -69162,5214:143:2,-143.5,-24,0,0,-0.13605 -69163,5214:143:1,-143,-24,0,0,-0.13605 -69164,5214:142:2,-142.5,-24,0,0,-0.13605 -69165,5214:142:1,-142,-24,0,0,-0.13605 -69166,5214:141:2,-141.5,-24,0,0,-0.13605 -69167,5214:141:1,-141,-24,0,0,-0.13605 -69168,5214:140:2,-140.5,-24,0,0,-0.13605 -69169,5214:140:1,-140,-24,0,0,-0.13605 -69170,5213:249:2,-139.5,-24,0,0,-0.13605 -69171,5213:249:1,-139,-24,0,0,-0.13605 -69172,5213:248:2,-138.5,-24,0,0,-0.13605 -69173,5213:248:1,-138,-24,0,0,-0.13605 -69174,5213:247:2,-137.5,-24,0,0,-0.13605 -69175,5213:247:1,-137,-24,0,0,-0.13605 -69176,5213:246:2,-136.5,-24,0,0,-0.13605 -69177,5213:246:1,-136,-24,0,0,-0.13605 -69178,5213:245:2,-135.5,-24,0,0,-0.13605 -69179,5213:245:1,-135,-24,0,0,-0.13605 -69180,5213:144:2,-134.5,-24,0,0,-0.13605 -69181,5213:144:1,-134,-24,0,0,-0.13605 -69182,5213:143:2,-133.5,-24,0,0,-0.13605 -69183,5213:143:1,-133,-24,0,0,-0.13605 -69184,5213:142:2,-132.5,-24,0,0,-0.13605 -69185,5213:142:1,-132,-24,0,0,-0.13605 -69186,5213:141:2,-131.5,-24,0,0,-0.13605 -69187,5213:141:1,-131,-24,0,0,-0.13605 -69188,5213:140:2,-130.5,-24,0,0,-0.13605 -69189,5213:140:1,-130,-24,0,0,-0.13605 -69190,5212:249:2,-129.5,-24,0,0,-0.13605 -69191,5212:249:1,-129,-24,0,0,-0.13605 -69192,5212:248:2,-128.5,-24,0,0,-0.13605 -69193,5212:248:1,-128,-24,0,0,-0.13605 -69194,5212:247:2,-127.5,-24,0,0,-0.13605 -69195,5212:247:1,-127,-24,0,0,-0.13605 -69196,5212:246:2,-126.5,-24,0,0,-0.13605 -69197,5212:246:1,-126,-24,0,0,-0.13605 -69198,5212:245:2,-125.5,-24,0,0,-0.13605 -69199,5212:245:1,-125,-24,0,0,-0.13605 -69200,5212:144:2,-124.5,-24,0,0,-0.13605 -69201,5212:144:1,-124,-24,0,0,-0.13605 -69202,5212:143:2,-123.5,-24,0,0,-0.13605 -69203,5212:143:1,-123,-24,0,0,-0.13605 -69204,5212:142:2,-122.5,-24,0,0,-0.13605 -69205,5212:142:1,-122,-24,0,0,-0.13605 -69206,5212:141:2,-121.5,-24,0,0,-0.13605 -69207,5212:141:1,-121,-24,0,0,-0.13605 -69208,5212:140:2,-120.5,-24,0,0,-0.13605 -69209,5212:140:1,-120,-24,0,0,-0.13605 -69210,5211:249:2,-119.5,-24,0,0,-0.13605 -69211,5211:249:1,-119,-24,0,0,-0.13605 -69212,5211:248:2,-118.5,-24,0,0,-0.13605 -69213,5211:248:1,-118,-24,0,0,-0.13605 -69214,5211:247:2,-117.5,-24,0,0,-0.13605 -69215,5211:247:1,-117,-24,0,0,-0.13605 -69216,5211:246:2,-116.5,-24,0,0,-0.13605 -69217,5211:246:1,-116,-24,0,0,-0.13605 -69218,5211:245:2,-115.5,-24,0,0,-0.13605 -69219,5211:245:1,-115,-24,0,0,-0.13605 -69220,5211:144:2,-114.5,-24,0,0,-0.13605 -69221,5211:144:1,-114,-24,0,0,-0.13605 -69222,5211:143:2,-113.5,-24,0,0,-0.13605 -69223,5211:143:1,-113,-24,0,0,-0.13605 -69224,5211:142:2,-112.5,-24,0,0,-0.13605 -69225,5211:142:1,-112,-24,0,0,-0.13605 -69226,5211:141:2,-111.5,-24,0,0,-0.13605 -69227,5211:141:1,-111,-24,0,0,-0.13605 -69228,5211:140:2,-110.5,-24,0,0,-0.13605 -69229,5211:140:1,-110,-24,0,0,-0.13605 -69230,5210:249:2,-109.5,-24,0,0,-0.13605 -69231,5210:249:1,-109,-24,0,0,-0.13605 -69232,5210:248:2,-108.5,-24,0,0,-0.13605 -69233,5210:248:1,-108,-24,0,0,-0.13605 -69234,5210:247:2,-107.5,-24,0,0,-0.13605 -69235,5210:247:1,-107,-24,0,0,-0.13605 -69236,5210:246:2,-106.5,-24,0,0,-0.13605 -69237,5210:246:1,-106,-24,0,0,-0.13605 -69238,5210:245:2,-105.5,-24,0,0,-0.13605 -69239,5210:245:1,-105,-24,0,0,-0.13605 -69240,5210:144:2,-104.5,-24,0,0,-0.13605 -69241,5210:144:1,-104,-24,0,0,-0.13605 -69242,5210:143:2,-103.5,-24,0,0,-0.13605 -69243,5210:143:1,-103,-24,0,0,-0.13605 -69244,5210:142:2,-102.5,-24,0,0,-0.13605 -69245,5210:142:1,-102,-24,0,0,-0.13605 -69246,5210:141:2,-101.5,-24,0,0,-0.13605 -69247,5210:141:1,-101,-24,0,0,-0.13605 -69248,5210:140:2,-100.5,-24,0,0,-0.13605 -69249,5210:140:1,-100,-24,0,0,-0.13605 -69250,5209:249:2,-99.5,-24,0,0,-0.13605 -69251,5209:249:1,-99,-24,0,0,-0.13605 -69252,5209:248:2,-98.5,-24,0,0,-0.13605 -69253,5209:248:1,-98,-24,0,0,-0.13605 -69254,5209:247:2,-97.5,-24,0,0,-0.13605 -69255,5209:247:1,-97,-24,0,0,-0.13605 -69256,5209:246:2,-96.5,-24,0,0,-0.13605 -69257,5209:246:1,-96,-24,0,0,-0.13605 -69258,5209:245:2,-95.5,-24,0,0,-0.13605 -69259,5209:245:1,-95,-24,0,0,-0.13605 -69260,5209:144:2,-94.5,-24,0,0,-0.13605 -69261,5209:144:1,-94,-24,0,0,-0.13605 -69262,5209:143:2,-93.5,-24,0,0,-0.13605 -69263,5209:143:1,-93,-24,0,0,-0.13605 -69264,5209:142:2,-92.5,-24,0,0,-0.13605 -69265,5209:142:1,-92,-24,0,0,-0.13605 -69266,5209:141:2,-91.5,-24,0,0,-0.13605 -69267,5209:141:1,-91,-24,0,0,-0.13605 -69268,5209:140:2,-90.5,-24,0,0,-0.13605 -69269,5209:140:1,-90,-24,0,0,-0.13605 -69270,5208:249:2,-89.5,-24,0,0,-0.13605 -69271,5208:249:1,-89,-24,0,0,-0.13605 -69272,5208:248:2,-88.5,-24,0,0,-0.13605 -69273,5208:248:1,-88,-24,0,0,-0.13605 -69274,5208:247:2,-87.5,-24,0,0,-0.13605 -69275,5208:247:1,-87,-24,0,0,-0.13605 -69276,5208:246:2,-86.5,-24,0,0,-0.13605 -69277,5208:246:1,-86,-24,0,0,-0.13605 -69278,5208:245:2,-85.5,-24,0,0,-0.13605 -69279,5208:245:1,-85,-24,0,0,-0.13605 -69280,5208:144:2,-84.5,-24,0,0,-0.13605 -69281,5208:144:1,-84,-24,0,0,-0.13605 -69282,5208:143:2,-83.5,-24,0,0,-0.13605 -69283,5208:143:1,-83,-24,0,0,-0.13605 -69284,5208:142:2,-82.5,-24,0,0,-0.13605 -69285,5208:142:1,-82,-24,0,0,-0.13605 -69286,5208:141:2,-81.5,-24,0,0,-0.13605 -69287,5208:141:1,-81,-24,0,0,-0.13605 -69288,5208:140:2,-80.5,-24,0,0,-0.13605 -69289,5208:140:1,-80,-24,0,0,-0.13605 -69290,5207:249:2,-79.5,-24,0,0,-0.13605 -69291,5207:249:1,-79,-24,0,0,-0.13605 -69292,5207:248:2,-78.5,-24,0,0,-0.13605 -69293,5207:248:1,-78,-24,0,0,-0.13605 -69294,5207:247:2,-77.5,-24,0,0,-0.13605 -69295,5207:247:1,-77,-24,0,0,-0.13605 -69296,5207:246:2,-76.5,-24,0,0,-0.13605 -69297,5207:246:1,-76,-24,0,0,-0.13605 -69298,5207:245:2,-75.5,-24,0,0,-0.13605 -69299,5207:245:1,-75,-24,0,0,-0.13605 -69300,5207:144:2,-74.5,-24,0,0,-0.13605 -69301,5207:144:1,-74,-24,0,0,-0.13605 -69302,5207:143:2,-73.5,-24,0,0,-0.13605 -69303,5207:143:1,-73,-24,0,0,-0.13605 -69304,5207:142:2,-72.5,-24,0,0,-0.13605 -69305,5207:142:1,-72,-24,0,0,-0.13605 -69306,5205:141:1,-51,-24,0,0,-0.13605 -69307,5205:140:2,-50.5,-24,0,0,-0.13605 -69308,5205:140:1,-50,-24,0,0,-0.13605 -69309,5204:249:2,-49.5,-24,0,0,-0.13605 -69310,5204:249:1,-49,-24,0,0,-0.13605 -69311,5204:248:2,-48.5,-24,0,0,-0.13605 -69312,5204:248:1,-48,-24,0,0,-0.13605 -69313,5204:247:2,-47.5,-24,0,0,-0.13605 -69314,5204:247:1,-47,-24,0,0,-0.13605 -69315,5204:246:2,-46.5,-24,0,0,-0.13605 -69316,5204:246:1,-46,-24,0,0,-0.13605 -69317,5204:245:2,-45.5,-24,0,0,-0.13605 -69318,5204:245:1,-45,-24,0,0,-0.13605 -69319,5204:144:2,-44.5,-24,0,0,-0.13605 -69320,5204:144:1,-44,-24,0,0,-0.13605 -69321,5204:143:2,-43.5,-24,0,0,-0.13605 -69322,5204:143:1,-43,-24,0,0,-0.13605 -69323,5204:142:2,-42.5,-24,0,0,-0.13605 -69324,5204:142:1,-42,-24,0,0,-0.13605 -69325,5204:141:2,-41.5,-24,0,0,-0.13605 -69326,5204:141:1,-41,-24,0,0,-0.13605 -69327,5204:140:2,-40.5,-24,0,0,-0.13605 -69328,5204:140:1,-40,-24,0,0,-0.13605 -69329,5203:249:2,-39.5,-24,0,0,-0.13605 -69330,5203:249:1,-39,-24,0,0,-0.13605 -69331,5203:248:2,-38.5,-24,0,0,-0.13605 -69332,5203:248:1,-38,-24,0,0,-0.13605 -69333,5203:247:2,-37.5,-24,0,0,-0.13605 -69334,5203:247:1,-37,-24,0,0,-0.13605 -69335,5203:246:2,-36.5,-24,0,0,-0.13605 -69336,5203:246:1,-36,-24,0,0,-0.13605 -69337,5203:245:2,-35.5,-24,0,0,-0.13605 -69338,5203:245:1,-35,-24,0,0,-0.13605 -69339,5203:144:2,-34.5,-24,0,0,-0.13605 -69340,5203:144:1,-34,-24,0,0,-0.13605 -69341,5203:143:2,-33.5,-24,0,0,-0.13605 -69342,5203:143:1,-33,-24,0,0,-0.13605 -69343,5203:142:2,-32.5,-24,0,0,-0.13605 -69344,5203:142:1,-32,-24,0,0,-0.13605 -69345,5203:141:2,-31.5,-24,0,0,-0.13605 -69346,5203:141:1,-31,-24,0,0,-0.13605 -69347,5203:140:2,-30.5,-24,0,0,-0.13605 -69348,5203:140:1,-30,-24,0,0,-0.13605 -69349,5202:249:2,-29.5,-24,0,0,-0.13605 -69350,5202:249:1,-29,-24,0,0,-0.13605 -69351,5202:248:2,-28.5,-24,0,0,-0.13605 -69352,5202:248:1,-28,-24,0,0,-0.13605 -69353,5202:247:2,-27.5,-24,0,0,-0.13605 -69354,5202:247:1,-27,-24,0,0,-0.13605 -69355,5202:246:2,-26.5,-24,0,0,-0.13605 -69356,5202:246:1,-26,-24,0,0,-0.13605 -69357,5202:245:2,-25.5,-24,0,0,-0.13605 -69358,5202:245:1,-25,-24,0,0,-0.13605 -69359,5202:144:2,-24.5,-24,0,0,-0.13605 -69360,5202:144:1,-24,-24,0,0,-0.13605 -69361,5202:143:2,-23.5,-24,0,0,-0.13605 -69362,5202:143:1,-23,-24,0,0,-0.13605 -69363,5202:142:2,-22.5,-24,0,0,-0.13605 -69364,5202:142:1,-22,-24,0,0,-0.13605 -69365,5202:141:2,-21.5,-24,0,0,-0.13605 -69366,5202:141:1,-21,-24,0,0,-0.13605 -69367,5202:140:2,-20.5,-24,0,0,-0.13605 -69368,5202:140:1,-20,-24,0,0,-0.13605 -69369,5201:249:2,-19.5,-24,0,0,-0.13605 -69370,5201:249:1,-19,-24,0,0,-0.13605 -69371,5201:248:2,-18.5,-24,0,0,-0.13605 -69372,5201:248:1,-18,-24,0,0,-0.13605 -69373,5201:247:2,-17.5,-24,0,0,-0.13605 -69374,5201:247:1,-17,-24,0,0,-0.13605 -69375,5201:246:2,-16.5,-24,0,0,-0.13605 -69376,5201:246:1,-16,-24,0,0,-0.13605 -69377,5201:245:2,-15.5,-24,0,0,-0.13605 -69378,5201:245:1,-15,-24,0,0,-0.13605 -69379,5201:144:2,-14.5,-24,0,0,-0.13605 -69380,5201:144:1,-14,-24,0,0,-0.13605 -69381,5201:143:2,-13.5,-24,0,0,-0.13605 -69382,5201:143:1,-13,-24,0,0,-0.13605 -69383,5201:142:2,-12.5,-24,0,0,-0.13605 -69384,5201:142:1,-12,-24,0,0,-0.13605 -69385,5201:141:2,-11.5,-24,0,0,-0.13605 -69386,5201:141:1,-11,-24,0,0,-0.13605 -69387,5201:140:2,-10.5,-24,0,0,-0.13605 -69388,5201:140:1,-10,-24,0,0,-0.13605 -69389,5200:249:2,-9.5,-24,0,0,-0.13605 -69390,5200:249:1,-9,-24,0,0,-0.13605 -69391,5200:248:2,-8.5,-24,0,0,-0.13605 -69392,5200:248:1,-8,-24,0,0,-0.13605 -69393,5200:247:2,-7.5,-24,0,0,-0.13605 -69394,5200:247:1,-7,-24,0,0,-0.13605 -69395,5200:246:2,-6.5,-24,0,0,-0.13605 -69396,5200:246:1,-6,-24,0,0,-0.13605 -69397,5200:245:2,-5.5,-24,0,0,-0.13605 -69398,5200:245:1,-5,-24,0,0,-0.13605 -69399,5200:144:2,-4.5,-24,0,0,-0.13605 -69400,5200:144:1,-4,-24,0,0,-0.13605 -69401,5200:143:2,-3.5,-24,0,0,-0.13605 -69402,5200:143:1,-3,-24,0,0,-0.13605 -69403,5200:142:2,-2.5,-24,0,0,-0.13605 -69404,5200:142:1,-2,-24,0,0,-0.13605 -69405,5200:141:2,-1.5,-24,0,0,-0.13605 -69406,5200:141:1,-1,-24,0,0,-0.13605 -69407,5200:140:2,-0.5,-24,0,0,-0.13605 -69408,3200:140:2,0,-24,0,0,-0.13605 -69409,3200:140:2,0.5,-24,0,0,-0.13605 -69410,3200:141:1,1,-24,0,0,-0.13605 -69411,3200:141:2,1.5,-24,0,0,-0.13605 -69412,3200:142:1,2,-24,0,0,-0.13605 -69413,3200:142:2,2.5,-24,0,0,-0.13605 -69414,3200:143:1,3,-24,0,0,-0.13605 -69415,3200:143:2,3.5,-24,0,0,-0.13605 -69416,3200:144:1,4,-24,0,0,-0.13605 -69417,3200:144:2,4.5,-24,0,0,-0.13605 -69418,3200:245:1,5,-24,0,0,-0.13605 -69419,3200:245:2,5.5,-24,0,0,-0.13605 -69420,3200:246:1,6,-24,0,0,-0.13605 -69421,3200:246:2,6.5,-24,0,0,-0.13605 -69422,3200:247:1,7,-24,0,0,-0.13605 -69423,3200:247:2,7.5,-24,0,0,-0.13605 -69424,3200:248:1,8,-24,0,0,-0.13605 -69425,3200:248:2,8.5,-24,0,0,-0.13605 -69426,3200:249:1,9,-24,0,0,-0.13605 -69427,3200:249:2,9.5,-24,0,0,-0.13605 -69428,3201:140:1,10,-24,0,0,-0.13605 -69429,3201:140:2,10.5,-24,0,0,-0.13605 -69430,3201:141:1,11,-24,0,0,-0.13605 -69431,3201:141:2,11.5,-24,0,0,-0.13605 -69432,3201:142:1,12,-24,0,0,-0.13605 -69433,3201:142:2,12.5,-24,0,0,-0.13605 -69434,3201:143:1,13,-24,0,0,-0.13605 -69435,3201:143:2,13.5,-24,0,0,-0.13605 -69436,3201:144:1,14,-24,0,0,-0.13605 -69437,3201:144:2,14.5,-24,0,0,-0.13605 -69438,3201:245:1,15,-24,0,0,-0.13605 -69439,3201:245:2,15.5,-24,0,0,-0.13605 -69440,3201:246:1,16,-24,0,0,-0.13605 -69441,3201:246:2,16.5,-24,0,0,-0.13605 -69442,3201:247:1,17,-24,0,0,-0.13605 -69443,3201:247:2,17.5,-24,0,0,-0.13605 -69444,3203:140:1,30,-24,0,0,-0.13605 -69445,3203:140:2,30.5,-24,0,0,-0.13605 -69446,3203:141:1,31,-24,0,0,-0.13605 -69447,3203:141:2,31.5,-24,0,0,-0.13605 -69448,3203:142:1,32,-24,0,0,-0.13605 -69449,3203:142:2,32.5,-24,0,0,-0.13605 -69450,3203:143:1,33,-24,0,0,-0.13605 -69451,3203:143:2,33.5,-24,0,0,-0.13605 -69452,3203:144:1,34,-24,0,0,-0.13605 -69453,3203:144:2,34.5,-24,0,0,-0.13605 -69454,3203:245:1,35,-24,0,0,-0.13605 -69455,3203:245:2,35.5,-24,0,0,-0.13605 -69456,3203:246:1,36,-24,0,0,-0.13605 -69457,3203:246:2,36.5,-24,0,0,-0.13605 -69458,3203:247:1,37,-24,0,0,-0.13605 -69459,3203:247:2,37.5,-24,0,0,-0.13605 -69460,3203:248:1,38,-24,0,0,-0.13605 -69461,3203:248:2,38.5,-24,0,0,-0.13605 -69462,3203:249:1,39,-24,0,0,-0.13605 -69463,3203:249:2,39.5,-24,0,0,-0.13605 -69464,3204:140:1,40,-24,0,0,-0.13605 -69465,3204:140:2,40.5,-24,0,0,-0.13605 -69466,3204:141:1,41,-24,0,0,-0.13605 -69467,3204:141:2,41.5,-24,0,0,-0.13605 -69468,3204:142:1,42,-24,0,0,-0.13605 -69469,3204:142:2,42.5,-24,0,0,-0.13605 -69470,3204:143:1,43,-24,0,0,-0.13605 -69471,3204:143:2,43.5,-24,0,0,-0.13605 -69472,3204:144:1,44,-24,0,0,-0.13605 -69473,3204:144:2,44.5,-24,0,0,-0.13605 -69474,3204:245:1,45,-24,0,0,-0.13605 -69475,3204:245:2,45.5,-24,0,0,-0.13605 -69476,3204:246:1,46,-24,0,0,-0.13605 -69477,3204:246:2,46.5,-24,0,0,-0.13605 -69478,3204:247:1,47,-24,0,0,-0.13605 -69479,3204:247:2,47.5,-24,0,0,-0.13605 -69480,3204:248:1,48,-24,0,0,-0.13605 -69481,3204:248:2,48.5,-24,0,0,-0.13605 -69482,3204:249:1,49,-24,0,0,-0.13605 -69483,3204:249:2,49.5,-24,0,0,-0.13605 -69484,3205:140:1,50,-24,0,0,-0.13605 -69485,3205:140:2,50.5,-24,0,0,-0.13605 -69486,3205:141:1,51,-24,0,0,-0.13605 -69487,3205:141:2,51.5,-24,0,0,-0.13605 -69488,3205:142:1,52,-24,0,0,-0.13605 -69489,3205:142:2,52.5,-24,0,0,-0.13605 -69490,3205:143:1,53,-24,0,0,-0.13605 -69491,3205:143:2,53.5,-24,0,0,-0.13605 -69492,3205:144:1,54,-24,0,0,-0.13605 -69493,3205:144:2,54.5,-24,0,0,-0.13605 -69494,3205:245:1,55,-24,0,0,-0.13605 -69495,3205:245:2,55.5,-24,0,0,-0.13605 -69496,3205:246:1,56,-24,0,0,-0.13605 -69497,3205:246:2,56.5,-24,0,0,-0.13605 -69498,3205:247:1,57,-24,0,0,-0.13605 -69499,3205:247:2,57.5,-24,0,0,-0.13605 -69500,3205:248:1,58,-24,0,0,-0.13605 -69501,3205:248:2,58.5,-24,0,0,-0.13605 -69502,3205:249:1,59,-24,0,0,-0.13605 -69503,3205:249:2,59.5,-24,0,0,-0.13605 -69504,3206:140:1,60,-24,0,0,-0.13605 -69505,3206:140:2,60.5,-24,0,0,-0.13605 -69506,3206:141:1,61,-24,0,0,-0.13605 -69507,3206:141:2,61.5,-24,0,0,-0.13605 -69508,3206:142:1,62,-24,0,0,-0.13605 -69509,3206:142:2,62.5,-24,0,0,-0.13605 -69510,3206:143:1,63,-24,0,0,-0.13605 -69511,3206:143:2,63.5,-24,0,0,-0.13605 -69512,3206:144:1,64,-24,0,0,-0.13605 -69513,3206:144:2,64.5,-24,0,0,-0.13605 -69514,3206:245:1,65,-24,0,0,-0.13605 -69515,3206:245:2,65.5,-24,0,0,-0.13605 -69516,3206:246:1,66,-24,0,0,-0.13605 -69517,3206:246:2,66.5,-24,0,0,-0.13605 -69518,3206:247:1,67,-24,0,0,-0.13605 -69519,3206:247:2,67.5,-24,0,0,-0.13605 -69520,3206:248:1,68,-24,0,0,-0.13605 -69521,3206:248:2,68.5,-24,0,0,-0.13605 -69522,3206:249:1,69,-24,0,0,-0.13605 -69523,3206:249:2,69.5,-24,0,0,-0.13605 -69524,3207:140:1,70,-24,0,0,-0.13605 -69525,3207:140:2,70.5,-24,0,0,-0.13605 -69526,3207:141:1,71,-24,0,0,-0.13605 -69527,3207:141:2,71.5,-24,0,0,-0.13605 -69528,3207:142:1,72,-24,0,0,-0.13605 -69529,3207:142:2,72.5,-24,0,0,-0.13605 -69530,3207:143:2,73.5,-24,0,0,-0.13605 -69531,3207:144:1,74,-24,0,0,-0.13605 -69532,3207:144:2,74.5,-24,0,0,-0.13605 -69533,3207:245:1,75,-24,0,0,-0.13605 -69534,3207:245:2,75.5,-24,0,0,-0.13605 -69535,3207:246:1,76,-24,0,0,-0.13605 -69536,3207:246:2,76.5,-24,0,0,-0.13605 -69537,3207:247:1,77,-24,0,0,-0.13605 -69538,3207:247:2,77.5,-24,0,0,-0.13605 -69539,3207:248:1,78,-24,0,0,-0.13605 -69540,3207:248:2,78.5,-24,0,0,-0.13605 -69541,3207:249:1,79,-24,0,0,-0.13605 -69542,3207:249:2,79.5,-24,0,0,-0.13605 -69543,3208:140:1,80,-24,0,0,-0.13605 -69544,3208:140:2,80.5,-24,0,0,-0.13605 -69545,3208:141:1,81,-24,0,0,-0.13605 -69546,3208:141:2,81.5,-24,0,0,-0.13605 -69547,3208:142:1,82,-24,0,0,-0.13605 -69548,3208:142:2,82.5,-24,0,0,-0.13605 -69549,3208:143:1,83,-24,0,0,-0.13605 -69550,3208:143:2,83.5,-24,0,0,-0.13605 -69551,3208:144:1,84,-24,0,0,-0.13605 -69552,3208:144:2,84.5,-24,0,0,-0.13605 -69553,3208:245:1,85,-24,0,0,-0.13605 -69554,3208:245:2,85.5,-24,0,0,-0.13605 -69555,3208:246:1,86,-24,0,0,-0.13605 -69556,3208:246:2,86.5,-24,0,0,-0.13605 -69557,3208:247:1,87,-24,0,0,-0.13605 -69558,3208:247:2,87.5,-24,0,0,-0.13605 -69559,3208:248:1,88,-24,0,0,-0.13605 -69560,3208:248:2,88.5,-24,0,0,-0.13605 -69561,3208:249:1,89,-24,0,0,-0.13605 -69562,3208:249:2,89.5,-24,0,0,-0.13605 -69563,3209:140:1,90,-24,0,0,-0.13605 -69564,3209:140:2,90.5,-24,0,0,-0.13605 -69565,3209:141:1,91,-24,0,0,-0.13605 -69566,3209:141:2,91.5,-24,0,0,-0.13605 -69567,3209:142:1,92,-24,0,0,-0.13605 -69568,3209:142:2,92.5,-24,0,0,-0.13605 -69569,3209:143:1,93,-24,0,0,-0.13605 -69570,3209:143:2,93.5,-24,0,0,-0.13605 -69571,3209:144:1,94,-24,0,0,-0.13605 -69572,3209:144:2,94.5,-24,0,0,-0.13605 -69573,3209:245:1,95,-24,0,0,-0.13605 -69574,3209:245:2,95.5,-24,0,0,-0.13605 -69575,3209:246:1,96,-24,0,0,-0.13605 -69576,3209:246:2,96.5,-24,0,0,-0.13605 -69577,3209:247:1,97,-24,0,0,-0.13605 -69578,3209:247:2,97.5,-24,0,0,-0.13605 -69579,3209:248:1,98,-24,0,0,-0.13605 -69580,3209:248:2,98.5,-24,0,0,-0.13605 -69581,3209:249:1,99,-24,0,0,-0.13605 -69582,3209:249:2,99.5,-24,0,0,-0.13605 -69583,3210:140:1,100,-24,0,0,-0.13605 -69584,3210:140:2,100.5,-24,0,0,-0.13605 -69585,3210:141:1,101,-24,0,0,-0.13605 -69586,3210:141:2,101.5,-24,0,0,-0.13605 -69587,3210:142:1,102,-24,0,0,-0.13605 -69588,3210:142:2,102.5,-24,0,0,-0.13605 -69589,3210:143:1,103,-24,0,0,-0.13605 -69590,3210:143:2,103.5,-24,0,0,-0.13605 -69591,3210:144:1,104,-24,0,0,-0.13605 -69592,3210:144:2,104.5,-24,0,0,-0.13605 -69593,3210:245:1,105,-24,0,0,-0.13605 -69594,3210:245:2,105.5,-24,0,0,-0.13605 -69595,3210:246:1,106,-24,0,0,-0.13605 -69596,3210:246:2,106.5,-24,0,0,-0.13605 -69597,3210:247:1,107,-24,0,0,-0.13605 -69598,3210:247:2,107.5,-24,0,0,-0.13605 -69599,3210:248:1,108,-24,0,0,-0.13605 -69600,3210:248:2,108.5,-24,0,0,-0.13605 -69601,3210:249:1,109,-24,0,0,-0.13605 -69602,3210:249:2,109.5,-24,0,0,-0.13605 -69603,3211:140:1,110,-24,0,0,-0.13605 -69604,3211:140:2,110.5,-24,0,0,-0.13605 -69605,3211:141:1,111,-24,0,0,-0.13605 -69606,3211:141:2,111.5,-24,0,0,-0.13605 -69607,3211:142:1,112,-24,0,0,-0.13605 -69608,3211:142:2,112.5,-24,0,0,-0.13605 -69609,3211:143:1,113,-24,0,0,-0.13605 -69610,3211:143:2,113.5,-24,0,0,-0.13605 -69611,3211:144:1,114,-24,0,0,-0.13605 -69612,3211:144:2,114.5,-24,0,0,-0.13605 -69613,3211:245:1,115,-24,0,0,-0.13605 -69614,3211:245:2,115.5,-24,0,0,-0.13605 -69615,3215:143:2,153.5,-24,0,0,-0.13605 -69616,3215:144:1,154,-24,0,0,-0.13605 -69617,3215:144:2,154.5,-24,0,0,-0.13605 -69618,3215:245:1,155,-24,0,0,-0.13605 -69619,3215:245:2,155.5,-24,0,0,-0.13605 -69620,3215:246:1,156,-24,0,0,-0.13605 -69621,3215:246:2,156.5,-24,0,0,-0.13605 -69622,3215:247:1,157,-24,0,0,-0.13605 -69623,3215:247:2,157.5,-24,0,0,-0.13605 -69624,3215:248:1,158,-24,0,0,-0.13605 -69625,3215:248:2,158.5,-24,0,0,-0.13605 -69626,3215:249:1,159,-24,0,0,-0.13605 -69627,3215:249:2,159.5,-24,0,0,-0.13605 -69628,3216:140:1,160,-24,0,0,-0.13605 -69629,3216:140:2,160.5,-24,0,0,-0.13605 -69630,3216:141:1,161,-24,0,0,-0.13605 -69631,3216:141:2,161.5,-24,0,0,-0.13605 -69632,3216:142:1,162,-24,0,0,-0.13605 -69633,3216:142:2,162.5,-24,0,0,-0.13605 -69634,3216:143:1,163,-24,0,0,-0.13605 -69635,3216:143:2,163.5,-24,0,0,-0.13605 -69636,3216:144:1,164,-24,0,0,-0.13605 -69637,3216:144:2,164.5,-24,0,0,-0.13605 -69638,3216:245:1,165,-24,0,0,-0.13605 -69639,3216:245:2,165.5,-24,0,0,-0.13605 -69640,3216:246:1,166,-24,0,0,-0.13605 -69641,3216:246:2,166.5,-24,0,0,-0.13605 -69642,3216:247:1,167,-24,0,0,-0.13605 -69643,3216:247:2,167.5,-24,0,0,-0.13605 -69644,3216:248:1,168,-24,0,0,-0.13605 -69645,3216:248:2,168.5,-24,0,0,-0.13605 -69646,3216:249:1,169,-24,0,0,-0.13605 -69647,3216:249:2,169.5,-24,0,0,-0.13605 -69648,3217:140:1,170,-24,0,0,-0.13605 -69649,3217:140:2,170.5,-24,0,0,-0.13605 -69650,3217:141:1,171,-24,0,0,-0.13605 -69651,3217:141:2,171.5,-24,0,0,-0.13605 -69652,3217:142:1,172,-24,0,0,-0.13605 -69653,3217:142:2,172.5,-24,0,0,-0.13605 -69654,3217:143:1,173,-24,0,0,-0.13605 -69655,3217:143:2,173.5,-24,0,0,-0.13605 -69656,3217:144:1,174,-24,0,0,-0.13605 -69657,3217:144:2,174.5,-24,0,0,-0.13605 -69658,3217:245:1,175,-24,0,0,-0.13605 -69659,3217:245:2,175.5,-24,0,0,-0.13605 -69660,3217:246:1,176,-24,0,0,-0.13605 -69661,3217:246:2,176.5,-24,0,0,-0.13605 -69662,3217:247:1,177,-24,0,0,-0.13605 -69663,3217:247:2,177.5,-24,0,0,-0.13605 -69664,3217:248:1,178,-24,0,0,-0.13605 -69665,3217:248:2,178.5,-24,0,0,-0.13605 -69666,3217:249:1,179,-24,0,0,-0.13605 -69667,3217:249:2,179.5,-24,0,0,-0.13605 -69668,3218:140:1,180,-24,0,0,-0.13605 -69669,5218:130:3,-180,-23.5,0,0,-0.13605 -69670,5217:239:4,-179.5,-23.5,0,0,-0.13605 -69671,5217:239:3,-179,-23.5,0,0,-0.13605 -69672,5217:238:4,-178.5,-23.5,0,0,-0.13605 -69673,5217:238:3,-178,-23.5,0,0,-0.13605 -69674,5217:237:4,-177.5,-23.5,0,0,-0.13605 -69675,5217:237:3,-177,-23.5,0,0,-0.13605 -69676,5217:236:4,-176.5,-23.5,0,0,-0.13605 -69677,5217:236:3,-176,-23.5,0,0,-0.13605 -69678,5217:235:4,-175.5,-23.5,0,0,-0.13605 -69679,5217:235:3,-175,-23.5,0,0,-0.13605 -69680,5217:134:4,-174.5,-23.5,0,0,-0.13605 -69681,5217:134:3,-174,-23.5,0,0,-0.13605 -69682,5217:133:4,-173.5,-23.5,0,0,-0.13605 -69683,5217:133:3,-173,-23.5,0,0,-0.13605 -69684,5217:132:4,-172.5,-23.5,0,0,-0.13605 -69685,5217:132:3,-172,-23.5,0,0,-0.13605 -69686,5217:131:4,-171.5,-23.5,0,0,-0.13605 -69687,5217:131:3,-171,-23.5,0,0,-0.13605 -69688,5217:130:4,-170.5,-23.5,0,0,-0.13605 -69689,5217:130:3,-170,-23.5,0,0,-0.13605 -69690,5216:239:4,-169.5,-23.5,0,0,-0.13605 -69691,5216:239:3,-169,-23.5,0,0,-0.13605 -69692,5216:238:4,-168.5,-23.5,0,0,-0.13605 -69693,5216:238:3,-168,-23.5,0,0,-0.13605 -69694,5216:237:4,-167.5,-23.5,0,0,-0.13605 -69695,5216:237:3,-167,-23.5,0,0,-0.13605 -69696,5216:236:4,-166.5,-23.5,0,0,-0.13605 -69697,5216:236:3,-166,-23.5,0,0,-0.13605 -69698,5216:235:4,-165.5,-23.5,0,0,-0.13605 -69699,5216:235:3,-165,-23.5,0,0,-0.13605 -69700,5216:134:4,-164.5,-23.5,0,0,-0.13605 -69701,5216:134:3,-164,-23.5,0,0,-0.13605 -69702,5216:133:4,-163.5,-23.5,0,0,-0.13605 -69703,5216:133:3,-163,-23.5,0,0,-0.13605 -69704,5216:132:4,-162.5,-23.5,0,0,-0.13605 -69705,5216:132:3,-162,-23.5,0,0,-0.13605 -69706,5216:131:4,-161.5,-23.5,0,0,-0.13605 -69707,5216:131:3,-161,-23.5,0,0,-0.13605 -69708,5216:130:4,-160.5,-23.5,0,0,-0.13605 -69709,5216:130:3,-160,-23.5,0,0,-0.13605 -69710,5215:239:4,-159.5,-23.5,0,0,-0.13605 -69711,5215:239:3,-159,-23.5,0,0,-0.13605 -69712,5215:238:4,-158.5,-23.5,0,0,-0.13605 -69713,5215:238:3,-158,-23.5,0,0,-0.13605 -69714,5215:237:4,-157.5,-23.5,0,0,-0.13605 -69715,5215:237:3,-157,-23.5,0,0,-0.13605 -69716,5215:236:4,-156.5,-23.5,0,0,-0.13605 -69717,5215:236:3,-156,-23.5,0,0,-0.13605 -69718,5215:235:4,-155.5,-23.5,0,0,-0.13605 -69719,5215:235:3,-155,-23.5,0,0,-0.13605 -69720,5215:134:4,-154.5,-23.5,0,0,-0.13605 -69721,5215:134:3,-154,-23.5,0,0,-0.13605 -69722,5215:133:4,-153.5,-23.5,0,0,-0.13605 -69723,5215:133:3,-153,-23.5,0,0,-0.13605 -69724,5215:132:4,-152.5,-23.5,0,0,-0.13605 -69725,5215:132:3,-152,-23.5,0,0,-0.13605 -69726,5215:131:4,-151.5,-23.5,0,0,-0.13605 -69727,5215:131:3,-151,-23.5,0,0,-0.13605 -69728,5215:130:4,-150.5,-23.5,0,0,-0.13605 -69729,5215:130:3,-150,-23.5,0,0,-0.13605 -69730,5214:239:4,-149.5,-23.5,0,0,-0.13605 -69731,5214:239:3,-149,-23.5,0,0,-0.13605 -69732,5214:238:4,-148.5,-23.5,0,0,-0.13605 -69733,5214:238:3,-148,-23.5,0,0,-0.13605 -69734,5214:237:4,-147.5,-23.5,0,0,-0.13605 -69735,5214:237:3,-147,-23.5,0,0,-0.13605 -69736,5214:236:4,-146.5,-23.5,0,0,-0.13605 -69737,5214:236:3,-146,-23.5,0,0,-0.13605 -69738,5214:235:4,-145.5,-23.5,0,0,-0.13605 -69739,5214:235:3,-145,-23.5,0,0,-0.13605 -69740,5214:134:4,-144.5,-23.5,0,0,-0.13605 -69741,5214:134:3,-144,-23.5,0,0,-0.13605 -69742,5214:133:4,-143.5,-23.5,0,0,-0.13605 -69743,5214:133:3,-143,-23.5,0,0,-0.13605 -69744,5214:132:4,-142.5,-23.5,0,0,-0.13605 -69745,5214:132:3,-142,-23.5,0,0,-0.13605 -69746,5214:131:4,-141.5,-23.5,0,0,-0.13605 -69747,5214:131:3,-141,-23.5,0,0,-0.13605 -69748,5214:130:4,-140.5,-23.5,0,0,-0.13605 -69749,5214:130:3,-140,-23.5,0,0,-0.13605 -69750,5213:239:4,-139.5,-23.5,0,0,-0.13605 -69751,5213:239:3,-139,-23.5,0,0,-0.13605 -69752,5213:238:4,-138.5,-23.5,0,0,-0.13605 -69753,5213:238:3,-138,-23.5,0,0,-0.13605 -69754,5213:237:4,-137.5,-23.5,0,0,-0.13605 -69755,5213:237:3,-137,-23.5,0,0,-0.13605 -69756,5213:236:4,-136.5,-23.5,0,0,-0.13605 -69757,5213:236:3,-136,-23.5,0,0,-0.13605 -69758,5213:235:4,-135.5,-23.5,0,0,-0.13605 -69759,5213:235:3,-135,-23.5,0,0,-0.13605 -69760,5213:134:4,-134.5,-23.5,0,0,-0.13605 -69761,5213:134:3,-134,-23.5,0,0,-0.13605 -69762,5213:133:4,-133.5,-23.5,0,0,-0.13605 -69763,5213:133:3,-133,-23.5,0,0,-0.13605 -69764,5213:132:4,-132.5,-23.5,0,0,-0.13605 -69765,5213:132:3,-132,-23.5,0,0,-0.13605 -69766,5213:131:4,-131.5,-23.5,0,0,-0.13605 -69767,5213:131:3,-131,-23.5,0,0,-0.13605 -69768,5213:130:4,-130.5,-23.5,0,0,-0.13605 -69769,5213:130:3,-130,-23.5,0,0,-0.13605 -69770,5212:239:4,-129.5,-23.5,0,0,-0.13605 -69771,5212:239:3,-129,-23.5,0,0,-0.13605 -69772,5212:238:4,-128.5,-23.5,0,0,-0.13605 -69773,5212:238:3,-128,-23.5,0,0,-0.13605 -69774,5212:237:4,-127.5,-23.5,0,0,-0.13605 -69775,5212:237:3,-127,-23.5,0,0,-0.13605 -69776,5212:236:4,-126.5,-23.5,0,0,-0.13605 -69777,5212:236:3,-126,-23.5,0,0,-0.13605 -69778,5212:235:4,-125.5,-23.5,0,0,-0.13605 -69779,5212:235:3,-125,-23.5,0,0,-0.13605 -69780,5212:134:4,-124.5,-23.5,0,0,-0.13605 -69781,5212:134:3,-124,-23.5,0,0,-0.13605 -69782,5212:133:4,-123.5,-23.5,0,0,-0.13605 -69783,5212:133:3,-123,-23.5,0,0,-0.13605 -69784,5212:132:4,-122.5,-23.5,0,0,-0.13605 -69785,5212:132:3,-122,-23.5,0,0,-0.13605 -69786,5212:131:4,-121.5,-23.5,0,0,-0.13605 -69787,5212:131:3,-121,-23.5,0,0,-0.13605 -69788,5212:130:4,-120.5,-23.5,0,0,-0.13605 -69789,5212:130:3,-120,-23.5,0,0,-0.13605 -69790,5211:239:4,-119.5,-23.5,0,0,-0.13605 -69791,5211:239:3,-119,-23.5,0,0,-0.13605 -69792,5211:238:4,-118.5,-23.5,0,0,-0.13605 -69793,5211:238:3,-118,-23.5,0,0,-0.13605 -69794,5211:237:4,-117.5,-23.5,0,0,-0.13605 -69795,5211:237:3,-117,-23.5,0,0,-0.13605 -69796,5211:236:4,-116.5,-23.5,0,0,-0.13605 -69797,5211:236:3,-116,-23.5,0,0,-0.13605 -69798,5211:235:4,-115.5,-23.5,0,0,-0.13605 -69799,5211:235:3,-115,-23.5,0,0,-0.13605 -69800,5211:134:4,-114.5,-23.5,0,0,-0.13605 -69801,5211:134:3,-114,-23.5,0,0,-0.13605 -69802,5211:133:4,-113.5,-23.5,0,0,-0.13605 -69803,5211:133:3,-113,-23.5,0,0,-0.13605 -69804,5211:132:4,-112.5,-23.5,0,0,-0.13605 -69805,5211:132:3,-112,-23.5,0,0,-0.13605 -69806,5211:131:4,-111.5,-23.5,0,0,-0.13605 -69807,5211:131:3,-111,-23.5,0,0,-0.13605 -69808,5211:130:4,-110.5,-23.5,0,0,-0.13605 -69809,5211:130:3,-110,-23.5,0,0,-0.13605 -69810,5210:239:4,-109.5,-23.5,0,0,-0.13605 -69811,5210:239:3,-109,-23.5,0,0,-0.13605 -69812,5210:238:4,-108.5,-23.5,0,0,-0.13605 -69813,5210:238:3,-108,-23.5,0,0,-0.13605 -69814,5210:237:4,-107.5,-23.5,0,0,-0.13605 -69815,5210:237:3,-107,-23.5,0,0,-0.13605 -69816,5210:236:4,-106.5,-23.5,0,0,-0.13605 -69817,5210:236:3,-106,-23.5,0,0,-0.13605 -69818,5210:235:4,-105.5,-23.5,0,0,-0.13605 -69819,5210:235:3,-105,-23.5,0,0,-0.13605 -69820,5210:134:4,-104.5,-23.5,0,0,-0.13605 -69821,5210:134:3,-104,-23.5,0,0,-0.13605 -69822,5210:133:4,-103.5,-23.5,0,0,-0.13605 -69823,5210:133:3,-103,-23.5,0,0,-0.13605 -69824,5210:132:4,-102.5,-23.5,0,0,-0.13605 -69825,5210:132:3,-102,-23.5,0,0,-0.13605 -69826,5210:131:4,-101.5,-23.5,0,0,-0.13605 -69827,5210:131:3,-101,-23.5,0,0,-0.13605 -69828,5210:130:4,-100.5,-23.5,0,0,-0.13605 -69829,5210:130:3,-100,-23.5,0,0,-0.13605 -69830,5209:239:4,-99.5,-23.5,0,0,-0.13605 -69831,5209:239:3,-99,-23.5,0,0,-0.13605 -69832,5209:238:4,-98.5,-23.5,0,0,-0.13605 -69833,5209:238:3,-98,-23.5,0,0,-0.13605 -69834,5209:237:4,-97.5,-23.5,0,0,-0.13605 -69835,5209:237:3,-97,-23.5,0,0,-0.13605 -69836,5209:236:4,-96.5,-23.5,0,0,-0.13605 -69837,5209:236:3,-96,-23.5,0,0,-0.13605 -69838,5209:235:4,-95.5,-23.5,0,0,-0.13605 -69839,5209:235:3,-95,-23.5,0,0,-0.13605 -69840,5209:134:4,-94.5,-23.5,0,0,-0.13605 -69841,5209:134:3,-94,-23.5,0,0,-0.13605 -69842,5209:133:4,-93.5,-23.5,0,0,-0.13605 -69843,5209:133:3,-93,-23.5,0,0,-0.13605 -69844,5209:132:4,-92.5,-23.5,0,0,-0.13605 -69845,5209:132:3,-92,-23.5,0,0,-0.13605 -69846,5209:131:4,-91.5,-23.5,0,0,-0.13605 -69847,5209:131:3,-91,-23.5,0,0,-0.13605 -69848,5209:130:4,-90.5,-23.5,0,0,-0.13605 -69849,5209:130:3,-90,-23.5,0,0,-0.13605 -69850,5208:239:4,-89.5,-23.5,0,0,-0.13605 -69851,5208:239:3,-89,-23.5,0,0,-0.13605 -69852,5208:238:4,-88.5,-23.5,0,0,-0.13605 -69853,5208:238:3,-88,-23.5,0,0,-0.13605 -69854,5208:237:4,-87.5,-23.5,0,0,-0.13605 -69855,5208:237:3,-87,-23.5,0,0,-0.13605 -69856,5208:236:4,-86.5,-23.5,0,0,-0.13605 -69857,5208:236:3,-86,-23.5,0,0,-0.13605 -69858,5208:235:4,-85.5,-23.5,0,0,-0.13605 -69859,5208:235:3,-85,-23.5,0,0,-0.13605 -69860,5208:134:4,-84.5,-23.5,0,0,-0.13605 -69861,5208:134:3,-84,-23.5,0,0,-0.13605 -69862,5208:133:4,-83.5,-23.5,0,0,-0.13605 -69863,5208:133:3,-83,-23.5,0,0,-0.13605 -69864,5208:132:4,-82.5,-23.5,0,0,-0.13605 -69865,5208:132:3,-82,-23.5,0,0,-0.13605 -69866,5208:131:4,-81.5,-23.5,0,0,-0.13605 -69867,5208:131:3,-81,-23.5,0,0,-0.13605 -69868,5208:130:4,-80.5,-23.5,0,0,-0.13605 -69869,5208:130:3,-80,-23.5,0,0,-0.13605 -69870,5207:239:4,-79.5,-23.5,0,0,-0.13605 -69871,5207:239:3,-79,-23.5,0,0,-0.13605 -69872,5207:238:4,-78.5,-23.5,0,0,-0.13605 -69873,5207:238:3,-78,-23.5,0,0,-0.13605 -69874,5207:237:4,-77.5,-23.5,0,0,-0.13605 -69875,5207:237:3,-77,-23.5,0,0,-0.13605 -69876,5207:236:4,-76.5,-23.5,0,0,-0.13605 -69877,5207:236:3,-76,-23.5,0,0,-0.13605 -69878,5207:235:4,-75.5,-23.5,0,0,-0.13605 -69879,5207:235:3,-75,-23.5,0,0,-0.13605 -69880,5207:134:4,-74.5,-23.5,0,0,-0.13605 -69881,5207:134:3,-74,-23.5,0,0,-0.13605 -69882,5207:133:4,-73.5,-23.5,0,0,-0.13605 -69883,5207:133:3,-73,-23.5,0,0,-0.13605 -69884,5207:132:4,-72.5,-23.5,0,0,-0.13605 -69885,5207:132:3,-72,-23.5,0,0,-0.13605 -69886,5205:130:3,-50,-23.5,0,0,-0.13605 -69887,5204:239:4,-49.5,-23.5,0,0,-0.13605 -69888,5204:239:3,-49,-23.5,0,0,-0.13605 -69889,5204:238:4,-48.5,-23.5,0,0,-0.137924 -69890,5204:238:3,-48,-23.5,0,0,-0.137806 -69891,5204:237:4,-47.5,-23.5,0,0,-0.13605 -69892,5204:237:3,-47,-23.5,0,0,-0.13605 -69893,5204:236:4,-46.5,-23.5,0,0,-0.13605 -69894,5204:236:3,-46,-23.5,0,0,-0.13605 -69895,5204:235:4,-45.5,-23.5,0,0,-0.13605 -69896,5204:235:3,-45,-23.5,0,0,-0.13605 -69897,5204:134:4,-44.5,-23.5,0,0,-0.13605 -69898,5204:134:3,-44,-23.5,0,0,-0.13605 -69899,5204:133:4,-43.5,-23.5,0,0,-0.13605 -69900,5204:133:3,-43,-23.5,0,0,-0.13605 -69901,5204:132:4,-42.5,-23.5,0,0,-0.13605 -69902,5204:132:3,-42,-23.5,0,0,-0.13605 -69903,5204:131:4,-41.5,-23.5,0,0,-0.13605 -69904,5204:131:3,-41,-23.5,0,0,-0.13605 -69905,5204:130:4,-40.5,-23.5,0,0,-0.13605 -69906,5204:130:3,-40,-23.5,0,0,-0.13605 -69907,5203:239:4,-39.5,-23.5,0,0,-0.13605 -69908,5203:239:3,-39,-23.5,0,0,-0.13605 -69909,5203:238:4,-38.5,-23.5,0,0,-0.13605 -69910,5203:238:3,-38,-23.5,0,0,-0.13605 -69911,5203:237:4,-37.5,-23.5,0,0,-0.13605 -69912,5203:237:3,-37,-23.5,0,0,-0.13605 -69913,5203:236:4,-36.5,-23.5,0,0,-0.13605 -69914,5203:236:3,-36,-23.5,0,0,-0.13605 -69915,5203:235:4,-35.5,-23.5,0,0,-0.13605 -69916,5203:235:3,-35,-23.5,0,0,-0.13605 -69917,5203:134:4,-34.5,-23.5,0,0,-0.13605 -69918,5203:134:3,-34,-23.5,0,0,-0.13605 -69919,5203:133:4,-33.5,-23.5,0,0,-0.13605 -69920,5203:133:3,-33,-23.5,0,0,-0.13605 -69921,5203:132:4,-32.5,-23.5,0,0,-0.13605 -69922,5203:132:3,-32,-23.5,0,0,-0.13605 -69923,5203:131:4,-31.5,-23.5,0,0,-0.13605 -69924,5203:131:3,-31,-23.5,0,0,-0.13605 -69925,5203:130:4,-30.5,-23.5,0,0,-0.13605 -69926,5203:130:3,-30,-23.5,0,0,-0.13605 -69927,5202:239:4,-29.5,-23.5,0,0,-0.13605 -69928,5202:239:3,-29,-23.5,0,0,-0.13605 -69929,5202:238:4,-28.5,-23.5,0,0,-0.13605 -69930,5202:238:3,-28,-23.5,0,0,-0.13605 -69931,5202:237:4,-27.5,-23.5,0,0,-0.13605 -69932,5202:237:3,-27,-23.5,0,0,-0.13605 -69933,5202:236:4,-26.5,-23.5,0,0,-0.13605 -69934,5202:236:3,-26,-23.5,0,0,-0.13605 -69935,5202:235:4,-25.5,-23.5,0,0,-0.13605 -69936,5202:235:3,-25,-23.5,0,0,-0.13605 -69937,5202:134:4,-24.5,-23.5,0,0,-0.13605 -69938,5202:134:3,-24,-23.5,0,0,-0.13605 -69939,5202:133:4,-23.5,-23.5,0,0,-0.13605 -69940,5202:133:3,-23,-23.5,0,0,-0.13605 -69941,5202:132:4,-22.5,-23.5,0,0,-0.13605 -69942,5202:132:3,-22,-23.5,0,0,-0.13605 -69943,5202:131:4,-21.5,-23.5,0,0,-0.13605 -69944,5202:131:3,-21,-23.5,0,0,-0.13605 -69945,5202:130:4,-20.5,-23.5,0,0,-0.13605 -69946,5202:130:3,-20,-23.5,0,0,-0.13605 -69947,5201:239:4,-19.5,-23.5,0,0,-0.13605 -69948,5201:239:3,-19,-23.5,0,0,-0.13605 -69949,5201:238:4,-18.5,-23.5,0,0,-0.13605 -69950,5201:238:3,-18,-23.5,0,0,-0.13605 -69951,5201:237:4,-17.5,-23.5,0,0,-0.13605 -69952,5201:237:3,-17,-23.5,0,0,-0.13605 -69953,5201:236:4,-16.5,-23.5,0,0,-0.13605 -69954,5201:236:3,-16,-23.5,0,0,-0.13605 -69955,5201:235:4,-15.5,-23.5,0,0,-0.13605 -69956,5201:235:3,-15,-23.5,0,0,-0.13605 -69957,5201:134:4,-14.5,-23.5,0,0,-0.13605 -69958,5201:134:3,-14,-23.5,0,0,-0.13605 -69959,5201:133:4,-13.5,-23.5,0,0,-0.13605 -69960,5201:133:3,-13,-23.5,0,0,-0.13605 -69961,5201:132:4,-12.5,-23.5,0,0,-0.13605 -69962,5201:132:3,-12,-23.5,0,0,-0.13605 -69963,5201:131:4,-11.5,-23.5,0,0,-0.13605 -69964,5201:131:3,-11,-23.5,0,0,-0.13605 -69965,5201:130:4,-10.5,-23.5,0,0,-0.13605 -69966,5201:130:3,-10,-23.5,0,0,-0.13605 -69967,5200:239:4,-9.5,-23.5,0,0,-0.13605 -69968,5200:239:3,-9,-23.5,0,0,-0.13605 -69969,5200:238:4,-8.5,-23.5,0,0,-0.13605 -69970,5200:238:3,-8,-23.5,0,0,-0.13605 -69971,5200:237:4,-7.5,-23.5,0,0,-0.13605 -69972,5200:237:3,-7,-23.5,0,0,-0.13605 -69973,5200:236:4,-6.5,-23.5,0,0,-0.13605 -69974,5200:236:3,-6,-23.5,0,0,-0.13605 -69975,5200:235:4,-5.5,-23.5,0,0,-0.13605 -69976,5200:235:3,-5,-23.5,0,0,-0.13605 -69977,5200:134:4,-4.5,-23.5,0,0,-0.13605 -69978,5200:134:3,-4,-23.5,0,0,-0.13605 -69979,5200:133:4,-3.5,-23.5,0,0,-0.13605 -69980,5200:133:3,-3,-23.5,0,0,-0.13605 -69981,5200:132:4,-2.5,-23.5,0,0,-0.13605 -69982,5200:132:3,-2,-23.5,0,0,-0.13605 -69983,5200:131:4,-1.5,-23.5,0,0,-0.13605 -69984,5200:131:3,-1,-23.5,0,0,-0.13605 -69985,5200:130:4,-0.5,-23.5,0,0,-0.13605 -69986,3200:130:4,0,-23.5,0,0,-0.13605 -69987,3200:130:4,0.5,-23.5,0,0,-0.13605 -69988,3200:131:3,1,-23.5,0,0,-0.13605 -69989,3200:131:4,1.5,-23.5,0,0,-0.13605 -69990,3200:132:3,2,-23.5,0,0,-0.13605 -69991,3200:132:4,2.5,-23.5,0,0,-0.13605 -69992,3200:133:3,3,-23.5,0,0,-0.13605 -69993,3200:133:4,3.5,-23.5,0,0,-0.13605 -69994,3200:134:3,4,-23.5,0,0,-0.13605 -69995,3200:134:4,4.5,-23.5,0,0,-0.13605 -69996,3200:235:3,5,-23.5,0,0,-0.13605 -69997,3200:235:4,5.5,-23.5,0,0,-0.13605 -69998,3200:236:3,6,-23.5,0,0,-0.13605 -69999,3200:236:4,6.5,-23.5,0,0,-0.13605 -70000,3200:237:3,7,-23.5,0,0,-0.13605 -70001,3200:237:4,7.5,-23.5,0,0,-0.13605 -70002,3200:238:3,8,-23.5,0,0,-0.13605 -70003,3200:238:4,8.5,-23.5,0,0,-0.13605 -70004,3200:239:3,9,-23.5,0,0,-0.13605 -70005,3200:239:4,9.5,-23.5,0,0,-0.13605 -70006,3201:130:3,10,-23.5,0,0,-0.13605 -70007,3201:130:4,10.5,-23.5,0,0,-0.13605 -70008,3201:131:3,11,-23.5,0,0,-0.13605 -70009,3201:131:4,11.5,-23.5,0,0,-0.13605 -70010,3201:132:3,12,-23.5,0,0,-0.13605 -70011,3201:132:4,12.5,-23.5,0,0,-0.13605 -70012,3201:133:3,13,-23.5,0,0,-0.13605 -70013,3201:133:4,13.5,-23.5,0,0,-0.13605 -70014,3201:134:3,14,-23.5,0,0,-0.13605 -70015,3201:134:4,14.5,-23.5,0,0,-0.13605 -70016,3201:235:3,15,-23.5,0,0,-0.13605 -70017,3201:235:4,15.5,-23.5,0,0,-0.13605 -70018,3201:236:3,16,-23.5,0,0,-0.13605 -70019,3201:236:4,16.5,-23.5,0,0,-0.13605 -70020,3201:237:3,17,-23.5,0,0,-0.13605 -70021,3203:130:4,30.5,-23.5,0,0,-0.13605 -70022,3203:131:3,31,-23.5,0,0,-0.13605 -70023,3203:131:4,31.5,-23.5,0,0,-0.13605 -70024,3203:132:3,32,-23.5,0,0,-0.13605 -70025,3203:132:4,32.5,-23.5,0,0,-0.13605 -70026,3203:133:3,33,-23.5,0,0,-0.13605 -70027,3203:133:4,33.5,-23.5,0,0,-0.13605 -70028,3203:134:3,34,-23.5,0,0,-0.13605 -70029,3203:134:4,34.5,-23.5,0,0,-0.13605 -70030,3203:235:3,35,-23.5,0,0,-0.13605 -70031,3203:235:4,35.5,-23.5,0,0,-0.13605 -70032,3203:236:3,36,-23.5,0,0,-0.13605 -70033,3203:236:4,36.5,-23.5,0,0,-0.13605 -70034,3203:237:3,37,-23.5,0,0,-0.13605 -70035,3203:237:4,37.5,-23.5,0,0,-0.13605 -70036,3203:238:3,38,-23.5,0,0,-0.13605 -70037,3203:238:4,38.5,-23.5,0,0,-0.13605 -70038,3203:239:3,39,-23.5,0,0,-0.13605 -70039,3203:239:4,39.5,-23.5,0,0,-0.13605 -70040,3204:130:3,40,-23.5,0,0,-0.13605 -70041,3204:130:4,40.5,-23.5,0,0,-0.13605 -70042,3204:131:3,41,-23.5,0,0,-0.13605 -70043,3204:131:4,41.5,-23.5,0,0,-0.13605 -70044,3204:132:3,42,-23.5,0,0,-0.13605 -70045,3204:132:4,42.5,-23.5,0,0,-0.13605 -70046,3204:133:3,43,-23.5,0,0,-0.13605 -70047,3204:133:4,43.5,-23.5,0,0,-0.13605 -70048,3204:134:3,44,-23.5,0,0,-0.13605 -70049,3204:134:4,44.5,-23.5,0,0,-0.13605 -70050,3204:235:3,45,-23.5,0,0,-0.13605 -70051,3204:235:4,45.5,-23.5,0,0,-0.13605 -70052,3204:236:3,46,-23.5,0,0,-0.13605 -70053,3204:236:4,46.5,-23.5,0,0,-0.13605 -70054,3204:237:3,47,-23.5,0,0,-0.13605 -70055,3204:237:4,47.5,-23.5,0,0,-0.13605 -70056,3204:238:3,48,-23.5,0,0,-0.13605 -70057,3204:238:4,48.5,-23.5,0,0,-0.13605 -70058,3204:239:3,49,-23.5,0,0,-0.13605 -70059,3204:239:4,49.5,-23.5,0,0,-0.13605 -70060,3205:130:3,50,-23.5,0,0,-0.13605 -70061,3205:130:4,50.5,-23.5,0,0,-0.13605 -70062,3205:131:3,51,-23.5,0,0,-0.13605 -70063,3205:131:4,51.5,-23.5,0,0,-0.13605 -70064,3205:132:3,52,-23.5,0,0,-0.13605 -70065,3205:132:4,52.5,-23.5,0,0,-0.13605 -70066,3205:133:3,53,-23.5,0,0,-0.13605 -70067,3205:133:4,53.5,-23.5,0,0,-0.13605 -70068,3205:134:3,54,-23.5,0,0,-0.13605 -70069,3205:134:4,54.5,-23.5,0,0,-0.13605 -70070,3205:235:3,55,-23.5,0,0,-0.13605 -70071,3205:235:4,55.5,-23.5,0,0,-0.13605 -70072,3205:236:3,56,-23.5,0,0,-0.13605 -70073,3205:236:4,56.5,-23.5,0,0,-0.13605 -70074,3205:237:3,57,-23.5,0,0,-0.13605 -70075,3205:237:4,57.5,-23.5,0,0,-0.13605 -70076,3205:238:3,58,-23.5,0,0,-0.13605 -70077,3205:238:4,58.5,-23.5,0,0,-0.13605 -70078,3205:239:3,59,-23.5,0,0,-0.13605 -70079,3205:239:4,59.5,-23.5,0,0,-0.13605 -70080,3206:130:3,60,-23.5,0,0,-0.13605 -70081,3206:130:4,60.5,-23.5,0,0,-0.13605 -70082,3206:131:3,61,-23.5,0,0,-0.13605 -70083,3206:131:4,61.5,-23.5,0,0,-0.13605 -70084,3206:132:3,62,-23.5,0,0,-0.13605 -70085,3206:132:4,62.5,-23.5,0,0,-0.13605 -70086,3206:133:3,63,-23.5,0,0,-0.13605 -70087,3206:133:4,63.5,-23.5,0,0,-0.13605 -70088,3206:134:3,64,-23.5,0,0,-0.13605 -70089,3206:134:4,64.5,-23.5,0,0,-0.13605 -70090,3206:235:3,65,-23.5,0,0,-0.13605 -70091,3206:235:4,65.5,-23.5,0,0,-0.13605 -70092,3206:236:3,66,-23.5,0,0,-0.13605 -70093,3206:236:4,66.5,-23.5,0,0,-0.13605 -70094,3206:237:3,67,-23.5,0,0,-0.13605 -70095,3206:237:4,67.5,-23.5,0,0,-0.13605 -70096,3206:238:3,68,-23.5,0,0,-0.13605 -70097,3206:238:4,68.5,-23.5,0,0,-0.13605 -70098,3206:239:3,69,-23.5,0,0,-0.13605 -70099,3206:239:4,69.5,-23.5,0,0,-0.13605 -70100,3207:130:3,70,-23.5,0,0,-0.13605 -70101,3207:130:4,70.5,-23.5,0,0,-0.13605 -70102,3207:131:3,71,-23.5,0,0,-0.13605 -70103,3207:131:4,71.5,-23.5,0,0,-0.13605 -70104,3207:132:3,72,-23.5,0,0,-0.13605 -70105,3207:132:4,72.5,-23.5,0,0,-0.13605 -70106,3207:133:4,73.5,-23.5,0,0,-0.13605 -70107,3207:134:3,74,-23.5,0,0,-0.13605 -70108,3207:134:4,74.5,-23.5,0,0,-0.13605 -70109,3207:235:3,75,-23.5,0,0,-0.13605 -70110,3207:235:4,75.5,-23.5,0,0,-0.13605 -70111,3207:236:3,76,-23.5,0,0,-0.13605 -70112,3207:236:4,76.5,-23.5,0,0,-0.13605 -70113,3207:237:3,77,-23.5,0,0,-0.13605 -70114,3207:237:4,77.5,-23.5,0,0,-0.13605 -70115,3207:238:3,78,-23.5,0,0,-0.13605 -70116,3207:238:4,78.5,-23.5,0,0,-0.13605 -70117,3207:239:3,79,-23.5,0,0,-0.13605 -70118,3207:239:4,79.5,-23.5,0,0,-0.13605 -70119,3208:130:3,80,-23.5,0,0,-0.13605 -70120,3208:130:4,80.5,-23.5,0,0,-0.13605 -70121,3208:131:3,81,-23.5,0,0,-0.13605 -70122,3208:131:4,81.5,-23.5,0,0,-0.13605 -70123,3208:132:3,82,-23.5,0,0,-0.13605 -70124,3208:132:4,82.5,-23.5,0,0,-0.13605 -70125,3208:133:3,83,-23.5,0,0,-0.13605 -70126,3208:133:4,83.5,-23.5,0,0,-0.13605 -70127,3208:134:3,84,-23.5,0,0,-0.13605 -70128,3208:134:4,84.5,-23.5,0,0,-0.13605 -70129,3208:235:3,85,-23.5,0,0,-0.13605 -70130,3208:235:4,85.5,-23.5,0,0,-0.13605 -70131,3208:236:3,86,-23.5,0,0,-0.13605 -70132,3208:236:4,86.5,-23.5,0,0,-0.13605 -70133,3208:237:3,87,-23.5,0,0,-0.13605 -70134,3208:237:4,87.5,-23.5,0,0,-0.13605 -70135,3208:238:3,88,-23.5,0,0,-0.13605 -70136,3208:238:4,88.5,-23.5,0,0,-0.13605 -70137,3208:239:3,89,-23.5,0,0,-0.13605 -70138,3208:239:4,89.5,-23.5,0,0,-0.13605 -70139,3209:130:3,90,-23.5,0,0,-0.13605 -70140,3209:130:4,90.5,-23.5,0,0,-0.13605 -70141,3209:131:3,91,-23.5,0,0,-0.13605 -70142,3209:131:4,91.5,-23.5,0,0,-0.13605 -70143,3209:132:3,92,-23.5,0,0,-0.13605 -70144,3209:132:4,92.5,-23.5,0,0,-0.13605 -70145,3209:133:3,93,-23.5,0,0,-0.13605 -70146,3209:133:4,93.5,-23.5,0,0,-0.13605 -70147,3209:134:3,94,-23.5,0,0,-0.13605 -70148,3209:134:4,94.5,-23.5,0,0,-0.13605 -70149,3209:235:3,95,-23.5,0,0,-0.13605 -70150,3209:235:4,95.5,-23.5,0,0,-0.13605 -70151,3209:236:3,96,-23.5,0,0,-0.13605 -70152,3209:236:4,96.5,-23.5,0,0,-0.13605 -70153,3209:237:3,97,-23.5,0,0,-0.13605 -70154,3209:237:4,97.5,-23.5,0,0,-0.13605 -70155,3209:238:3,98,-23.5,0,0,-0.13605 -70156,3209:238:4,98.5,-23.5,0,0,-0.13605 -70157,3209:239:3,99,-23.5,0,0,-0.13605 -70158,3209:239:4,99.5,-23.5,0,0,-0.13605 -70159,3210:130:3,100,-23.5,0,0,-0.13605 -70160,3210:130:4,100.5,-23.5,0,0,-0.13605 -70161,3210:131:3,101,-23.5,0,0,-0.13605 -70162,3210:131:4,101.5,-23.5,0,0,-0.13605 -70163,3210:132:3,102,-23.5,0,0,-0.13605 -70164,3210:132:4,102.5,-23.5,0,0,-0.13605 -70165,3210:133:3,103,-23.5,0,0,-0.13605 -70166,3210:133:4,103.5,-23.5,0,0,-0.13605 -70167,3210:134:3,104,-23.5,0,0,-0.13605 -70168,3210:134:4,104.5,-23.5,0,0,-0.13605 -70169,3210:235:3,105,-23.5,0,0,-0.13605 -70170,3210:235:4,105.5,-23.5,0,0,-0.13605 -70171,3210:236:3,106,-23.5,0,0,-0.13605 -70172,3210:236:4,106.5,-23.5,0,0,-0.13605 -70173,3210:237:3,107,-23.5,0,0,-0.13605 -70174,3210:237:4,107.5,-23.5,0,0,-0.13605 -70175,3210:238:3,108,-23.5,0,0,-0.13605 -70176,3210:238:4,108.5,-23.5,0,0,-0.13605 -70177,3210:239:3,109,-23.5,0,0,-0.13605 -70178,3210:239:4,109.5,-23.5,0,0,-0.13605 -70179,3211:130:3,110,-23.5,0,0,-0.13605 -70180,3211:130:4,110.5,-23.5,0,0,-0.13605 -70181,3211:131:3,111,-23.5,0,0,-0.13605 -70182,3211:131:4,111.5,-23.5,0,0,-0.13605 -70183,3211:132:3,112,-23.5,0,0,-0.13605 -70184,3211:132:4,112.5,-23.5,0,0,-0.13605 -70185,3211:133:3,113,-23.5,0,0,-0.13605 -70186,3211:133:4,113.5,-23.5,0,0,-0.13605 -70187,3211:134:3,114,-23.5,0,0,-0.13605 -70188,3211:134:4,114.5,-23.5,0,0,-0.13605 -70189,3211:235:3,115,-23.5,0,0,-0.13605 -70190,3215:133:4,153.5,-23.5,0,0,-0.13605 -70191,3215:134:3,154,-23.5,0,0,-0.13605 -70192,3215:134:4,154.5,-23.5,0,0,-0.13605 -70193,3215:235:3,155,-23.5,0,0,-0.13605 -70194,3215:235:4,155.5,-23.5,0,0,-0.13605 -70195,3215:236:3,156,-23.5,0,0,-0.13605 -70196,3215:236:4,156.5,-23.5,0,0,-0.13605 -70197,3215:237:3,157,-23.5,0,0,-0.13605 -70198,3215:237:4,157.5,-23.5,0,0,-0.13605 -70199,3215:238:3,158,-23.5,0,0,-0.13605 -70200,3215:238:4,158.5,-23.5,0,0,-0.13605 -70201,3215:239:3,159,-23.5,0,0,-0.13605 -70202,3215:239:4,159.5,-23.5,0,0,-0.13605 -70203,3216:130:3,160,-23.5,0,0,-0.13605 -70204,3216:130:4,160.5,-23.5,0,0,-0.13605 -70205,3216:131:3,161,-23.5,0,0,-0.13605 -70206,3216:131:4,161.5,-23.5,0,0,-0.13605 -70207,3216:132:3,162,-23.5,0,0,-0.13605 -70208,3216:132:4,162.5,-23.5,0,0,-0.13605 -70209,3216:133:3,163,-23.5,0,0,-0.13605 -70210,3216:133:4,163.5,-23.5,0,0,-0.13605 -70211,3216:134:3,164,-23.5,0,0,-0.13605 -70212,3216:134:4,164.5,-23.5,0,0,-0.13605 -70213,3216:235:3,165,-23.5,0,0,-0.13605 -70214,3216:235:4,165.5,-23.5,0,0,-0.13605 -70215,3216:236:3,166,-23.5,0,0,-0.13605 -70216,3216:236:4,166.5,-23.5,0,0,-0.13605 -70217,3216:237:3,167,-23.5,0,0,-0.13605 -70218,3216:237:4,167.5,-23.5,0,0,-0.13605 -70219,3216:238:3,168,-23.5,0,0,-0.13605 -70220,3216:238:4,168.5,-23.5,0,0,-0.13605 -70221,3216:239:3,169,-23.5,0,0,-0.13605 -70222,3216:239:4,169.5,-23.5,0,0,-0.13605 -70223,3217:130:3,170,-23.5,0,0,-0.13605 -70224,3217:130:4,170.5,-23.5,0,0,-0.13605 -70225,3217:131:3,171,-23.5,0,0,-0.13605 -70226,3217:131:4,171.5,-23.5,0,0,-0.13605 -70227,3217:132:3,172,-23.5,0,0,-0.13605 -70228,3217:132:4,172.5,-23.5,0,0,-0.13605 -70229,3217:133:3,173,-23.5,0,0,-0.13605 -70230,3217:133:4,173.5,-23.5,0,0,-0.13605 -70231,3217:134:3,174,-23.5,0,0,-0.13605 -70232,3217:134:4,174.5,-23.5,0,0,-0.13605 -70233,3217:235:3,175,-23.5,0,0,-0.13605 -70234,3217:235:4,175.5,-23.5,0,0,-0.13605 -70235,3217:236:3,176,-23.5,0,0,-0.13605 -70236,3217:236:4,176.5,-23.5,0,0,-0.13605 -70237,3217:237:3,177,-23.5,0,0,-0.13605 -70238,3217:237:4,177.5,-23.5,0,0,-0.13605 -70239,3217:238:3,178,-23.5,0,0,-0.13605 -70240,3217:238:4,178.5,-23.5,0,0,-0.13605 -70241,3217:239:3,179,-23.5,0,0,-0.13605 -70242,3217:239:4,179.5,-23.5,0,0,-0.13605 -70243,3218:130:3,180,-23.5,0,0,-0.13605 -70244,5218:130:1,-180,-23,0,0,-0.13605 -70245,5217:239:2,-179.5,-23,0,0,-0.13605 -70246,5217:239:1,-179,-23,0,0,-0.13605 -70247,5217:238:2,-178.5,-23,0,0,-0.13605 -70248,5217:238:1,-178,-23,0,0,-0.13605 -70249,5217:237:2,-177.5,-23,0,0,-0.13605 -70250,5217:237:1,-177,-23,0,0,-0.13605 -70251,5217:236:2,-176.5,-23,0,0,-0.13605 -70252,5217:236:1,-176,-23,0,0,-0.13605 -70253,5217:235:2,-175.5,-23,0,0,-0.13605 -70254,5217:235:1,-175,-23,0,0,-0.13605 -70255,5217:134:2,-174.5,-23,0,0,-0.13605 -70256,5217:134:1,-174,-23,0,0,-0.13605 -70257,5217:133:2,-173.5,-23,0,0,-0.13605 -70258,5217:133:1,-173,-23,0,0,-0.13605 -70259,5217:132:2,-172.5,-23,0,0,-0.13605 -70260,5217:132:1,-172,-23,0,0,-0.13605 -70261,5217:131:2,-171.5,-23,0,0,-0.13605 -70262,5217:131:1,-171,-23,0,0,-0.13605 -70263,5217:130:2,-170.5,-23,0,0,-0.13605 -70264,5217:130:1,-170,-23,0,0,-0.13605 -70265,5216:239:2,-169.5,-23,0,0,-0.13605 -70266,5216:239:1,-169,-23,0,0,-0.13605 -70267,5216:238:2,-168.5,-23,0,0,-0.13605 -70268,5216:238:1,-168,-23,0,0,-0.13605 -70269,5216:237:2,-167.5,-23,0,0,-0.13605 -70270,5216:237:1,-167,-23,0,0,-0.13605 -70271,5216:236:2,-166.5,-23,0,0,-0.13605 -70272,5216:236:1,-166,-23,0,0,-0.13605 -70273,5216:235:2,-165.5,-23,0,0,-0.13605 -70274,5216:235:1,-165,-23,0,0,-0.13605 -70275,5216:134:2,-164.5,-23,0,0,-0.13605 -70276,5216:134:1,-164,-23,0,0,-0.13605 -70277,5216:133:2,-163.5,-23,0,0,-0.13605 -70278,5216:133:1,-163,-23,0,0,-0.13605 -70279,5216:132:2,-162.5,-23,0,0,-0.13605 -70280,5216:132:1,-162,-23,0,0,-0.13605 -70281,5216:131:2,-161.5,-23,0,0,-0.13605 -70282,5216:131:1,-161,-23,0,0,-0.13605 -70283,5216:130:2,-160.5,-23,0,0,-0.13605 -70284,5216:130:1,-160,-23,0,0,-0.13605 -70285,5215:239:2,-159.5,-23,0,0,-0.13605 -70286,5215:239:1,-159,-23,0,0,-0.13605 -70287,5215:238:2,-158.5,-23,0,0,-0.13605 -70288,5215:238:1,-158,-23,0,0,-0.13605 -70289,5215:237:2,-157.5,-23,0,0,-0.13605 -70290,5215:237:1,-157,-23,0,0,-0.13605 -70291,5215:236:2,-156.5,-23,0,0,-0.13605 -70292,5215:236:1,-156,-23,0,0,-0.13605 -70293,5215:235:2,-155.5,-23,0,0,-0.13605 -70294,5215:235:1,-155,-23,0,0,-0.13605 -70295,5215:134:2,-154.5,-23,0,0,-0.13605 -70296,5215:134:1,-154,-23,0,0,-0.13605 -70297,5215:133:2,-153.5,-23,0,0,-0.13605 -70298,5215:133:1,-153,-23,0,0,-0.13605 -70299,5215:132:2,-152.5,-23,0,0,-0.13605 -70300,5215:132:1,-152,-23,0,0,-0.13605 -70301,5215:131:2,-151.5,-23,0,0,-0.13605 -70302,5215:131:1,-151,-23,0,0,-0.13605 -70303,5215:130:2,-150.5,-23,0,0,-0.13605 -70304,5215:130:1,-150,-23,0,0,-0.13605 -70305,5214:239:2,-149.5,-23,0,0,-0.13605 -70306,5214:239:1,-149,-23,0,0,-0.13605 -70307,5214:238:2,-148.5,-23,0,0,-0.13605 -70308,5214:238:1,-148,-23,0,0,-0.13605 -70309,5214:237:2,-147.5,-23,0,0,-0.13605 -70310,5214:237:1,-147,-23,0,0,-0.13605 -70311,5214:236:2,-146.5,-23,0,0,-0.13605 -70312,5214:236:1,-146,-23,0,0,-0.13605 -70313,5214:235:2,-145.5,-23,0,0,-0.13605 -70314,5214:235:1,-145,-23,0,0,-0.13605 -70315,5214:134:2,-144.5,-23,0,0,-0.13605 -70316,5214:134:1,-144,-23,0,0,-0.13605 -70317,5214:133:2,-143.5,-23,0,0,-0.13605 -70318,5214:133:1,-143,-23,0,0,-0.13605 -70319,5214:132:2,-142.5,-23,0,0,-0.13605 -70320,5214:132:1,-142,-23,0,0,-0.13605 -70321,5214:131:2,-141.5,-23,0,0,-0.13605 -70322,5214:131:1,-141,-23,0,0,-0.13605 -70323,5214:130:2,-140.5,-23,0,0,-0.13605 -70324,5214:130:1,-140,-23,0,0,-0.13605 -70325,5213:239:2,-139.5,-23,0,0,-0.13605 -70326,5213:239:1,-139,-23,0,0,-0.13605 -70327,5213:238:2,-138.5,-23,0,0,-0.13605 -70328,5213:238:1,-138,-23,0,0,-0.13605 -70329,5213:237:2,-137.5,-23,0,0,-0.13605 -70330,5213:237:1,-137,-23,0,0,-0.13605 -70331,5213:236:2,-136.5,-23,0,0,-0.13605 -70332,5213:236:1,-136,-23,0,0,-0.13605 -70333,5213:235:2,-135.5,-23,0,0,-0.13605 -70334,5213:235:1,-135,-23,0,0,-0.13605 -70335,5213:134:2,-134.5,-23,0,0,-0.13605 -70336,5213:134:1,-134,-23,0,0,-0.13605 -70337,5213:133:2,-133.5,-23,0,0,-0.13605 -70338,5213:133:1,-133,-23,0,0,-0.13605 -70339,5213:132:2,-132.5,-23,0,0,-0.13605 -70340,5213:132:1,-132,-23,0,0,-0.13605 -70341,5213:131:2,-131.5,-23,0,0,-0.13605 -70342,5213:131:1,-131,-23,0,0,-0.13605 -70343,5213:130:2,-130.5,-23,0,0,-0.13605 -70344,5213:130:1,-130,-23,0,0,-0.13605 -70345,5212:239:2,-129.5,-23,0,0,-0.13605 -70346,5212:239:1,-129,-23,0,0,-0.13605 -70347,5212:238:2,-128.5,-23,0,0,-0.13605 -70348,5212:238:1,-128,-23,0,0,-0.13605 -70349,5212:237:2,-127.5,-23,0,0,-0.13605 -70350,5212:237:1,-127,-23,0,0,-0.13605 -70351,5212:236:2,-126.5,-23,0,0,-0.13605 -70352,5212:236:1,-126,-23,0,0,-0.13605 -70353,5212:235:2,-125.5,-23,0,0,-0.13605 -70354,5212:235:1,-125,-23,0,0,-0.13605 -70355,5212:134:2,-124.5,-23,0,0,-0.13605 -70356,5212:134:1,-124,-23,0,0,-0.13605 -70357,5212:133:2,-123.5,-23,0,0,-0.13605 -70358,5212:133:1,-123,-23,0,0,-0.13605 -70359,5212:132:2,-122.5,-23,0,0,-0.13605 -70360,5212:132:1,-122,-23,0,0,-0.13605 -70361,5212:131:2,-121.5,-23,0,0,-0.13605 -70362,5212:131:1,-121,-23,0,0,-0.13605 -70363,5212:130:2,-120.5,-23,0,0,-0.13605 -70364,5212:130:1,-120,-23,0,0,-0.13605 -70365,5211:239:2,-119.5,-23,0,0,-0.13605 -70366,5211:239:1,-119,-23,0,0,-0.13605 -70367,5211:238:2,-118.5,-23,0,0,-0.13605 -70368,5211:238:1,-118,-23,0,0,-0.13605 -70369,5211:237:2,-117.5,-23,0,0,-0.13605 -70370,5211:237:1,-117,-23,0,0,-0.13605 -70371,5211:236:2,-116.5,-23,0,0,-0.13605 -70372,5211:236:1,-116,-23,0,0,-0.13605 -70373,5211:235:2,-115.5,-23,0,0,-0.13605 -70374,5211:235:1,-115,-23,0,0,-0.13605 -70375,5211:134:2,-114.5,-23,0,0,-0.13605 -70376,5211:134:1,-114,-23,0,0,-0.13605 -70377,5211:133:2,-113.5,-23,0,0,-0.13605 -70378,5211:133:1,-113,-23,0,0,-0.13605 -70379,5211:132:2,-112.5,-23,0,0,-0.13605 -70380,5211:132:1,-112,-23,0,0,-0.13605 -70381,5211:131:2,-111.5,-23,0,0,-0.13605 -70382,5211:131:1,-111,-23,0,0,-0.13605 -70383,5211:130:2,-110.5,-23,0,0,-0.13605 -70384,5211:130:1,-110,-23,0,0,-0.13605 -70385,5210:239:2,-109.5,-23,0,0,-0.13605 -70386,5210:239:1,-109,-23,0,0,-0.13605 -70387,5210:238:2,-108.5,-23,0,0,-0.13605 -70388,5210:238:1,-108,-23,0,0,-0.13605 -70389,5210:237:2,-107.5,-23,0,0,-0.13605 -70390,5210:237:1,-107,-23,0,0,-0.13605 -70391,5210:236:2,-106.5,-23,0,0,-0.13605 -70392,5210:236:1,-106,-23,0,0,-0.13605 -70393,5210:235:2,-105.5,-23,0,0,-0.13605 -70394,5210:235:1,-105,-23,0,0,-0.13605 -70395,5210:134:2,-104.5,-23,0,0,-0.13605 -70396,5210:134:1,-104,-23,0,0,-0.13605 -70397,5210:133:2,-103.5,-23,0,0,-0.13605 -70398,5210:133:1,-103,-23,0,0,-0.13605 -70399,5210:132:2,-102.5,-23,0,0,-0.13605 -70400,5210:132:1,-102,-23,0,0,-0.13605 -70401,5210:131:2,-101.5,-23,0,0,-0.13605 -70402,5210:131:1,-101,-23,0,0,-0.13605 -70403,5210:130:2,-100.5,-23,0,0,-0.13605 -70404,5210:130:1,-100,-23,0,0,-0.13605 -70405,5209:239:2,-99.5,-23,0,0,-0.13605 -70406,5209:239:1,-99,-23,0,0,-0.13605 -70407,5209:238:2,-98.5,-23,0,0,-0.13605 -70408,5209:238:1,-98,-23,0,0,-0.13605 -70409,5209:237:2,-97.5,-23,0,0,-0.13605 -70410,5209:237:1,-97,-23,0,0,-0.13605 -70411,5209:236:2,-96.5,-23,0,0,-0.13605 -70412,5209:236:1,-96,-23,0,0,-0.13605 -70413,5209:235:2,-95.5,-23,0,0,-0.13605 -70414,5209:235:1,-95,-23,0,0,-0.13605 -70415,5209:134:2,-94.5,-23,0,0,-0.13605 -70416,5209:134:1,-94,-23,0,0,-0.13605 -70417,5209:133:2,-93.5,-23,0,0,-0.13605 -70418,5209:133:1,-93,-23,0,0,-0.13605 -70419,5209:132:2,-92.5,-23,0,0,-0.13605 -70420,5209:132:1,-92,-23,0,0,-0.13605 -70421,5209:131:2,-91.5,-23,0,0,-0.13605 -70422,5209:131:1,-91,-23,0,0,-0.13605 -70423,5209:130:2,-90.5,-23,0,0,-0.13605 -70424,5209:130:1,-90,-23,0,0,-0.13605 -70425,5208:239:2,-89.5,-23,0,0,-0.13605 -70426,5208:239:1,-89,-23,0,0,-0.13605 -70427,5208:238:2,-88.5,-23,0,0,-0.13605 -70428,5208:238:1,-88,-23,0,0,-0.13605 -70429,5208:237:2,-87.5,-23,0,0,-0.13605 -70430,5208:237:1,-87,-23,0,0,-0.13605 -70431,5208:236:2,-86.5,-23,0,0,-0.13605 -70432,5208:236:1,-86,-23,0,0,-0.13605 -70433,5208:235:2,-85.5,-23,0,0,-0.13605 -70434,5208:235:1,-85,-23,0,0,-0.13605 -70435,5208:134:2,-84.5,-23,0,0,-0.13605 -70436,5208:134:1,-84,-23,0,0,-0.13605 -70437,5208:133:2,-83.5,-23,0,0,-0.13605 -70438,5208:133:1,-83,-23,0,0,-0.13605 -70439,5208:132:2,-82.5,-23,0,0,-0.13605 -70440,5208:132:1,-82,-23,0,0,-0.13605 -70441,5208:131:2,-81.5,-23,0,0,-0.13605 -70442,5208:131:1,-81,-23,0,0,-0.13605 -70443,5208:130:2,-80.5,-23,0,0,-0.13605 -70444,5208:130:1,-80,-23,0,0,-0.13605 -70445,5207:239:2,-79.5,-23,0,0,-0.13605 -70446,5207:239:1,-79,-23,0,0,-0.13605 -70447,5207:238:2,-78.5,-23,0,0,-0.13605 -70448,5207:238:1,-78,-23,0,0,-0.13605 -70449,5207:237:2,-77.5,-23,0,0,-0.13605 -70450,5207:237:1,-77,-23,0,0,-0.13605 -70451,5207:236:2,-76.5,-23,0,0,-0.13605 -70452,5207:236:1,-76,-23,0,0,-0.13605 -70453,5207:235:2,-75.5,-23,0,0,-0.13605 -70454,5207:235:1,-75,-23,0,0,-0.13605 -70455,5207:134:2,-74.5,-23,0,0,-0.13605 -70456,5207:134:1,-74,-23,0,0,-0.13605 -70457,5207:133:2,-73.5,-23,0,0,-0.13605 -70458,5207:133:1,-73,-23,0,0,-0.13605 -70459,5207:132:2,-72.5,-23,0,0,-0.13605 -70460,5207:132:1,-72,-23,0,0,-0.13605 -70461,5207:131:2,-71.5,-23,0,0,-0.13605 -70462,5205:130:1,-50,-23,0,0,-0.13605 -70463,5204:239:2,-49.5,-23,0,0,-0.13605 -70464,5204:239:1,-49,-23,0,0,-0.13605 -70465,5204:238:2,-48.5,-23,0,0,-0.136124 -70466,5204:238:1,-48,-23,0,0,-0.141856 -70467,5204:237:2,-47.5,-23,0,0,-0.13605 -70468,5204:237:1,-47,-23,0,0,-0.13605 -70469,5204:236:2,-46.5,-23,0,0,-0.13605 -70470,5204:236:1,-46,-23,0,0,-0.13605 -70471,5204:235:2,-45.5,-23,0,0,-0.13605 -70472,5204:235:1,-45,-23,0,0,-0.13605 -70473,5204:134:2,-44.5,-23,0,0,-0.13605 -70474,5204:134:1,-44,-23,0,0,-0.13605 -70475,5204:133:2,-43.5,-23,0,0,-0.13605 -70476,5204:133:1,-43,-23,0,0,-0.13605 -70477,5204:132:2,-42.5,-23,0,0,-0.13605 -70478,5204:132:1,-42,-23,0,0,-0.13605 -70479,5204:131:2,-41.5,-23,0,0,-0.13605 -70480,5204:131:1,-41,-23,0,0,-0.13605 -70481,5204:130:2,-40.5,-23,0,0,-0.13605 -70482,5204:130:1,-40,-23,0,0,-0.13605 -70483,5203:239:2,-39.5,-23,0,0,-0.13605 -70484,5203:239:1,-39,-23,0,0,-0.13605 -70485,5203:238:2,-38.5,-23,0,0,-0.13605 -70486,5203:238:1,-38,-23,0,0,-0.13605 -70487,5203:237:2,-37.5,-23,0,0,-0.13605 -70488,5203:237:1,-37,-23,0,0,-0.13605 -70489,5203:236:2,-36.5,-23,0,0,-0.13605 -70490,5203:236:1,-36,-23,0,0,-0.13605 -70491,5203:235:2,-35.5,-23,0,0,-0.13605 -70492,5203:235:1,-35,-23,0,0,-0.13605 -70493,5203:134:2,-34.5,-23,0,0,-0.13605 -70494,5203:134:1,-34,-23,0,0,-0.13605 -70495,5203:133:2,-33.5,-23,0,0,-0.13605 -70496,5203:133:1,-33,-23,0,0,-0.13605 -70497,5203:132:2,-32.5,-23,0,0,-0.13605 -70498,5203:132:1,-32,-23,0,0,-0.13605 -70499,5203:131:2,-31.5,-23,0,0,-0.13605 -70500,5203:131:1,-31,-23,0,0,-0.13605 -70501,5203:130:2,-30.5,-23,0,0,-0.13605 -70502,5203:130:1,-30,-23,0,0,-0.13605 -70503,5202:239:2,-29.5,-23,0,0,-0.13605 -70504,5202:239:1,-29,-23,0,0,-0.13605 -70505,5202:238:2,-28.5,-23,0,0,-0.13605 -70506,5202:238:1,-28,-23,0,0,-0.13605 -70507,5202:237:2,-27.5,-23,0,0,-0.13605 -70508,5202:237:1,-27,-23,0,0,-0.13605 -70509,5202:236:2,-26.5,-23,0,0,-0.13605 -70510,5202:236:1,-26,-23,0,0,-0.13605 -70511,5202:235:2,-25.5,-23,0,0,-0.13605 -70512,5202:235:1,-25,-23,0,0,-0.13605 -70513,5202:134:2,-24.5,-23,0,0,-0.13605 -70514,5202:134:1,-24,-23,0,0,-0.13605 -70515,5202:133:2,-23.5,-23,0,0,-0.13605 -70516,5202:133:1,-23,-23,0,0,-0.13605 -70517,5202:132:2,-22.5,-23,0,0,-0.13605 -70518,5202:132:1,-22,-23,0,0,-0.13605 -70519,5202:131:2,-21.5,-23,0,0,-0.13605 -70520,5202:131:1,-21,-23,0,0,-0.13605 -70521,5202:130:2,-20.5,-23,0,0,-0.13605 -70522,5202:130:1,-20,-23,0,0,-0.13605 -70523,5201:239:2,-19.5,-23,0,0,-0.13605 -70524,5201:239:1,-19,-23,0,0,-0.13605 -70525,5201:238:2,-18.5,-23,0,0,-0.13605 -70526,5201:238:1,-18,-23,0,0,-0.13605 -70527,5201:237:2,-17.5,-23,0,0,-0.13605 -70528,5201:237:1,-17,-23,0,0,-0.13605 -70529,5201:236:2,-16.5,-23,0,0,-0.13605 -70530,5201:236:1,-16,-23,0,0,-0.13605 -70531,5201:235:2,-15.5,-23,0,0,-0.13605 -70532,5201:235:1,-15,-23,0,0,-0.13605 -70533,5201:134:2,-14.5,-23,0,0,-0.13605 -70534,5201:134:1,-14,-23,0,0,-0.13605 -70535,5201:133:2,-13.5,-23,0,0,-0.13605 -70536,5201:133:1,-13,-23,0,0,-0.13605 -70537,5201:132:2,-12.5,-23,0,0,-0.13605 -70538,5201:132:1,-12,-23,0,0,-0.13605 -70539,5201:131:2,-11.5,-23,0,0,-0.13605 -70540,5201:131:1,-11,-23,0,0,-0.13605 -70541,5201:130:2,-10.5,-23,0,0,-0.13605 -70542,5201:130:1,-10,-23,0,0,-0.13605 -70543,5200:239:2,-9.5,-23,0,0,-0.13605 -70544,5200:239:1,-9,-23,0,0,-0.13605 -70545,5200:238:2,-8.5,-23,0,0,-0.13605 -70546,5200:238:1,-8,-23,0,0,-0.13605 -70547,5200:237:2,-7.5,-23,0,0,-0.13605 -70548,5200:237:1,-7,-23,0,0,-0.13605 -70549,5200:236:2,-6.5,-23,0,0,-0.13605 -70550,5200:236:1,-6,-23,0,0,-0.13605 -70551,5200:235:2,-5.5,-23,0,0,-0.13605 -70552,5200:235:1,-5,-23,0,0,-0.13605 -70553,5200:134:2,-4.5,-23,0,0,-0.13605 -70554,5200:134:1,-4,-23,0,0,-0.13605 -70555,5200:133:2,-3.5,-23,0,0,-0.13605 -70556,5200:133:1,-3,-23,0,0,-0.13605 -70557,5200:132:2,-2.5,-23,0,0,-0.13605 -70558,5200:132:1,-2,-23,0,0,-0.13605 -70559,5200:131:2,-1.5,-23,0,0,-0.13605 -70560,5200:131:1,-1,-23,0,0,-0.13605 -70561,5200:130:2,-0.5,-23,0,0,-0.13605 -70562,3200:130:2,0,-23,0,0,-0.13605 -70563,3200:130:2,0.5,-23,0,0,-0.13605 -70564,3200:131:1,1,-23,0,0,-0.13605 -70565,3200:131:2,1.5,-23,0,0,-0.13605 -70566,3200:132:1,2,-23,0,0,-0.13605 -70567,3200:132:2,2.5,-23,0,0,-0.13605 -70568,3200:133:1,3,-23,0,0,-0.13605 -70569,3200:133:2,3.5,-23,0,0,-0.13605 -70570,3200:134:1,4,-23,0,0,-0.13605 -70571,3200:134:2,4.5,-23,0,0,-0.13605 -70572,3200:235:1,5,-23,0,0,-0.13605 -70573,3200:235:2,5.5,-23,0,0,-0.13605 -70574,3200:236:1,6,-23,0,0,-0.13605 -70575,3200:236:2,6.5,-23,0,0,-0.13605 -70576,3200:237:1,7,-23,0,0,-0.13605 -70577,3200:237:2,7.5,-23,0,0,-0.13605 -70578,3200:238:1,8,-23,0,0,-0.13605 -70579,3200:238:2,8.5,-23,0,0,-0.13605 -70580,3200:239:1,9,-23,0,0,-0.13605 -70581,3200:239:2,9.5,-23,0,0,-0.13605 -70582,3201:130:1,10,-23,0,0,-0.13605 -70583,3201:130:2,10.5,-23,0,0,-0.13605 -70584,3201:131:1,11,-23,0,0,-0.13605 -70585,3201:131:2,11.5,-23,0,0,-0.13605 -70586,3201:132:1,12,-23,0,0,-0.13605 -70587,3201:132:2,12.5,-23,0,0,-0.13605 -70588,3201:133:1,13,-23,0,0,-0.13605 -70589,3201:133:2,13.5,-23,0,0,-0.13605 -70590,3201:134:1,14,-23,0,0,-0.13605 -70591,3201:134:2,14.5,-23,0,0,-0.13605 -70592,3201:235:1,15,-23,0,0,-0.13605 -70593,3201:235:2,15.5,-23,0,0,-0.13605 -70594,3201:236:1,16,-23,0,0,-0.13605 -70595,3201:236:2,16.5,-23,0,0,-0.13605 -70596,3203:131:1,31,-23,0,0,-0.13605 -70597,3203:131:2,31.5,-23,0,0,-0.136667 -70598,3203:132:1,32,-23,0,0,-0.13655 -70599,3203:132:2,32.5,-23,0,0,-0.13605 -70600,3203:133:1,33,-23,0,0,-0.13605 -70601,3203:133:2,33.5,-23,0,0,-0.13605 -70602,3203:134:1,34,-23,0,0,-0.13605 -70603,3203:134:2,34.5,-23,0,0,-0.13605 -70604,3203:235:1,35,-23,0,0,-0.13605 -70605,3203:235:2,35.5,-23,0,0,-0.13605 -70606,3203:236:1,36,-23,0,0,-0.13605 -70607,3203:236:2,36.5,-23,0,0,-0.13605 -70608,3203:237:1,37,-23,0,0,-0.13605 -70609,3203:237:2,37.5,-23,0,0,-0.13605 -70610,3203:238:1,38,-23,0,0,-0.13605 -70611,3203:238:2,38.5,-23,0,0,-0.13605 -70612,3203:239:1,39,-23,0,0,-0.13605 -70613,3203:239:2,39.5,-23,0,0,-0.13605 -70614,3204:130:1,40,-23,0,0,-0.13605 -70615,3204:130:2,40.5,-23,0,0,-0.13605 -70616,3204:131:1,41,-23,0,0,-0.13605 -70617,3204:131:2,41.5,-23,0,0,-0.13605 -70618,3204:132:1,42,-23,0,0,-0.13605 -70619,3204:132:2,42.5,-23,0,0,-0.13605 -70620,3204:133:1,43,-23,0,0,-0.13605 -70621,3204:133:2,43.5,-23,0,0,-0.13605 -70622,3204:134:1,44,-23,0,0,-0.13605 -70623,3204:134:2,44.5,-23,0,0,-0.13605 -70624,3204:235:1,45,-23,0,0,-0.13605 -70625,3204:235:2,45.5,-23,0,0,-0.13605 -70626,3204:236:1,46,-23,0,0,-0.13605 -70627,3204:236:2,46.5,-23,0,0,-0.13605 -70628,3204:237:1,47,-23,0,0,-0.13605 -70629,3204:237:2,47.5,-23,0,0,-0.13605 -70630,3204:238:1,48,-23,0,0,-0.13605 -70631,3204:238:2,48.5,-23,0,0,-0.13605 -70632,3204:239:1,49,-23,0,0,-0.13605 -70633,3204:239:2,49.5,-23,0,0,-0.13605 -70634,3205:130:1,50,-23,0,0,-0.13605 -70635,3205:130:2,50.5,-23,0,0,-0.13605 -70636,3205:131:1,51,-23,0,0,-0.13605 -70637,3205:131:2,51.5,-23,0,0,-0.13605 -70638,3205:132:1,52,-23,0,0,-0.13605 -70639,3205:132:2,52.5,-23,0,0,-0.13605 -70640,3205:133:1,53,-23,0,0,-0.13605 -70641,3205:133:2,53.5,-23,0,0,-0.13605 -70642,3205:134:1,54,-23,0,0,-0.13605 -70643,3205:134:2,54.5,-23,0,0,-0.13605 -70644,3205:235:1,55,-23,0,0,-0.13605 -70645,3205:235:2,55.5,-23,0,0,-0.13605 -70646,3205:236:1,56,-23,0,0,-0.13605 -70647,3205:236:2,56.5,-23,0,0,-0.13605 -70648,3205:237:1,57,-23,0,0,-0.13605 -70649,3205:237:2,57.5,-23,0,0,-0.13605 -70650,3205:238:1,58,-23,0,0,-0.13605 -70651,3205:238:2,58.5,-23,0,0,-0.13605 -70652,3205:239:1,59,-23,0,0,-0.13605 -70653,3205:239:2,59.5,-23,0,0,-0.13605 -70654,3206:130:1,60,-23,0,0,-0.13605 -70655,3206:130:2,60.5,-23,0,0,-0.13605 -70656,3206:131:1,61,-23,0,0,-0.13605 -70657,3206:131:2,61.5,-23,0,0,-0.13605 -70658,3206:132:1,62,-23,0,0,-0.13605 -70659,3206:132:2,62.5,-23,0,0,-0.13605 -70660,3206:133:1,63,-23,0,0,-0.13605 -70661,3206:133:2,63.5,-23,0,0,-0.13605 -70662,3206:134:1,64,-23,0,0,-0.13605 -70663,3206:134:2,64.5,-23,0,0,-0.13605 -70664,3206:235:1,65,-23,0,0,-0.13605 -70665,3206:235:2,65.5,-23,0,0,-0.13605 -70666,3206:236:1,66,-23,0,0,-0.13605 -70667,3206:236:2,66.5,-23,0,0,-0.13605 -70668,3206:237:1,67,-23,0,0,-0.13605 -70669,3206:237:2,67.5,-23,0,0,-0.13605 -70670,3206:238:1,68,-23,0,0,-0.13605 -70671,3206:238:2,68.5,-23,0,0,-0.13605 -70672,3206:239:1,69,-23,0,0,-0.13605 -70673,3206:239:2,69.5,-23,0,0,-0.13605 -70674,3207:130:1,70,-23,0,0,-0.13605 -70675,3207:130:2,70.5,-23,0,0,-0.13605 -70676,3207:131:1,71,-23,0,0,-0.13605 -70677,3207:131:2,71.5,-23,0,0,-0.13605 -70678,3207:132:1,72,-23,0,0,-0.13605 -70679,3207:132:2,72.5,-23,0,0,-0.13605 -70680,3207:133:2,73.5,-23,0,0,-0.13605 -70681,3207:134:1,74,-23,0,0,-0.13605 -70682,3207:134:2,74.5,-23,0,0,-0.13605 -70683,3207:235:1,75,-23,0,0,-0.13605 -70684,3207:235:2,75.5,-23,0,0,-0.13605 -70685,3207:236:1,76,-23,0,0,-0.13605 -70686,3207:236:2,76.5,-23,0,0,-0.13605 -70687,3207:237:1,77,-23,0,0,-0.13605 -70688,3207:237:2,77.5,-23,0,0,-0.13605 -70689,3207:238:1,78,-23,0,0,-0.13605 -70690,3207:238:2,78.5,-23,0,0,-0.13605 -70691,3207:239:1,79,-23,0,0,-0.13605 -70692,3207:239:2,79.5,-23,0,0,-0.13605 -70693,3208:130:1,80,-23,0,0,-0.13605 -70694,3208:130:2,80.5,-23,0,0,-0.13605 -70695,3208:131:1,81,-23,0,0,-0.13605 -70696,3208:131:2,81.5,-23,0,0,-0.13605 -70697,3208:132:1,82,-23,0,0,-0.13605 -70698,3208:132:2,82.5,-23,0,0,-0.13605 -70699,3208:133:1,83,-23,0,0,-0.13605 -70700,3208:133:2,83.5,-23,0,0,-0.13605 -70701,3208:134:1,84,-23,0,0,-0.13605 -70702,3208:134:2,84.5,-23,0,0,-0.13605 -70703,3208:235:1,85,-23,0,0,-0.13605 -70704,3208:235:2,85.5,-23,0,0,-0.13605 -70705,3208:236:1,86,-23,0,0,-0.13605 -70706,3208:236:2,86.5,-23,0,0,-0.13605 -70707,3208:237:1,87,-23,0,0,-0.13605 -70708,3208:237:2,87.5,-23,0,0,-0.13605 -70709,3208:238:1,88,-23,0,0,-0.13605 -70710,3208:238:2,88.5,-23,0,0,-0.13605 -70711,3208:239:1,89,-23,0,0,-0.13605 -70712,3208:239:2,89.5,-23,0,0,-0.13605 -70713,3209:130:1,90,-23,0,0,-0.13605 -70714,3209:130:2,90.5,-23,0,0,-0.13605 -70715,3209:131:1,91,-23,0,0,-0.13605 -70716,3209:131:2,91.5,-23,0,0,-0.13605 -70717,3209:132:1,92,-23,0,0,-0.13605 -70718,3209:132:2,92.5,-23,0,0,-0.13605 -70719,3209:133:1,93,-23,0,0,-0.13605 -70720,3209:133:2,93.5,-23,0,0,-0.13605 -70721,3209:134:1,94,-23,0,0,-0.13605 -70722,3209:134:2,94.5,-23,0,0,-0.13605 -70723,3209:235:1,95,-23,0,0,-0.13605 -70724,3209:235:2,95.5,-23,0,0,-0.13605 -70725,3209:236:1,96,-23,0,0,-0.13605 -70726,3209:236:2,96.5,-23,0,0,-0.13605 -70727,3209:237:1,97,-23,0,0,-0.13605 -70728,3209:237:2,97.5,-23,0,0,-0.13605 -70729,3209:238:1,98,-23,0,0,-0.13605 -70730,3209:238:2,98.5,-23,0,0,-0.13605 -70731,3209:239:1,99,-23,0,0,-0.13605 -70732,3209:239:2,99.5,-23,0,0,-0.13605 -70733,3210:130:1,100,-23,0,0,-0.13605 -70734,3210:130:2,100.5,-23,0,0,-0.13605 -70735,3210:131:1,101,-23,0,0,-0.13605 -70736,3210:131:2,101.5,-23,0,0,-0.13605 -70737,3210:132:1,102,-23,0,0,-0.13605 -70738,3210:132:2,102.5,-23,0,0,-0.13605 -70739,3210:133:1,103,-23,0,0,-0.13605 -70740,3210:133:2,103.5,-23,0,0,-0.13605 -70741,3210:134:1,104,-23,0,0,-0.13605 -70742,3210:134:2,104.5,-23,0,0,-0.13605 -70743,3210:235:1,105,-23,0,0,-0.13605 -70744,3210:235:2,105.5,-23,0,0,-0.13605 -70745,3210:236:1,106,-23,0,0,-0.13605 -70746,3210:236:2,106.5,-23,0,0,-0.13605 -70747,3210:237:1,107,-23,0,0,-0.13605 -70748,3210:237:2,107.5,-23,0,0,-0.13605 -70749,3210:238:1,108,-23,0,0,-0.13605 -70750,3210:238:2,108.5,-23,0,0,-0.13605 -70751,3210:239:1,109,-23,0,0,-0.13605 -70752,3210:239:2,109.5,-23,0,0,-0.13605 -70753,3211:130:1,110,-23,0,0,-0.13605 -70754,3211:130:2,110.5,-23,0,0,-0.13605 -70755,3211:131:1,111,-23,0,0,-0.13605 -70756,3211:131:2,111.5,-23,0,0,-0.13605 -70757,3211:132:1,112,-23,0,0,-0.13605 -70758,3211:132:2,112.5,-23,0,0,-0.13605 -70759,3211:133:1,113,-23,0,0,-0.13605 -70760,3211:133:2,113.5,-23,0,0,-0.13605 -70761,3211:134:1,114,-23,0,0,-0.13605 -70762,3211:134:2,114.5,-23,0,0,-0.13605 -70763,3211:235:1,115,-23,0,0,-0.13605 -70764,3215:133:2,153.5,-23,0,0,-0.13605 -70765,3215:134:1,154,-23,0,0,-0.137003 -70766,3215:134:2,154.5,-23,0,0,-0.13605 -70767,3215:235:1,155,-23,0,0,-0.13605 -70768,3215:235:2,155.5,-23,0,0,-0.13605 -70769,3215:236:1,156,-23,0,0,-0.13605 -70770,3215:236:2,156.5,-23,0,0,-0.13605 -70771,3215:237:1,157,-23,0,0,-0.13605 -70772,3215:237:2,157.5,-23,0,0,-0.13605 -70773,3215:238:1,158,-23,0,0,-0.13605 -70774,3215:238:2,158.5,-23,0,0,-0.13605 -70775,3215:239:1,159,-23,0,0,-0.13605 -70776,3215:239:2,159.5,-23,0,0,-0.13605 -70777,3216:130:1,160,-23,0,0,-0.13605 -70778,3216:130:2,160.5,-23,0,0,-0.13605 -70779,3216:131:1,161,-23,0,0,-0.13605 -70780,3216:131:2,161.5,-23,0,0,-0.13605 -70781,3216:132:1,162,-23,0,0,-0.13605 -70782,3216:132:2,162.5,-23,0,0,-0.13605 -70783,3216:133:1,163,-23,0,0,-0.13605 -70784,3216:133:2,163.5,-23,0,0,-0.13605 -70785,3216:134:1,164,-23,0,0,-0.13605 -70786,3216:134:2,164.5,-23,0,0,-0.13605 -70787,3216:235:1,165,-23,0,0,-0.13605 -70788,3216:235:2,165.5,-23,0,0,-0.13605 -70789,3216:236:1,166,-23,0,0,-0.13605 -70790,3216:236:2,166.5,-23,0,0,-0.13605 -70791,3216:237:1,167,-23,0,0,-0.13605 -70792,3216:237:2,167.5,-23,0,0,-0.13605 -70793,3216:238:1,168,-23,0,0,-0.13605 -70794,3216:238:2,168.5,-23,0,0,-0.13605 -70795,3216:239:1,169,-23,0,0,-0.13605 -70796,3216:239:2,169.5,-23,0,0,-0.13605 -70797,3217:130:1,170,-23,0,0,-0.13605 -70798,3217:130:2,170.5,-23,0,0,-0.13605 -70799,3217:131:1,171,-23,0,0,-0.13605 -70800,3217:131:2,171.5,-23,0,0,-0.13605 -70801,3217:132:1,172,-23,0,0,-0.13605 -70802,3217:132:2,172.5,-23,0,0,-0.13605 -70803,3217:133:1,173,-23,0,0,-0.13605 -70804,3217:133:2,173.5,-23,0,0,-0.13605 -70805,3217:134:1,174,-23,0,0,-0.13605 -70806,3217:134:2,174.5,-23,0,0,-0.13605 -70807,3217:235:1,175,-23,0,0,-0.13605 -70808,3217:235:2,175.5,-23,0,0,-0.13605 -70809,3217:236:1,176,-23,0,0,-0.13605 -70810,3217:236:2,176.5,-23,0,0,-0.13605 -70811,3217:237:1,177,-23,0,0,-0.13605 -70812,3217:237:2,177.5,-23,0,0,-0.13605 -70813,3217:238:1,178,-23,0,0,-0.13605 -70814,3217:238:2,178.5,-23,0,0,-0.13605 -70815,3217:239:1,179,-23,0,0,-0.13605 -70816,3217:239:2,179.5,-23,0,0,-0.13605 -70817,3218:130:1,180,-23,0,0,-0.13605 -70818,5218:120:3,-180,-22.5,0,0,-0.13605 -70819,5217:229:4,-179.5,-22.5,0,0,-0.13605 -70820,5217:229:3,-179,-22.5,0,0,-0.13605 -70821,5217:228:4,-178.5,-22.5,0,0,-0.13605 -70822,5217:228:3,-178,-22.5,0,0,-0.13605 -70823,5217:227:4,-177.5,-22.5,0,0,-0.13605 -70824,5217:227:3,-177,-22.5,0,0,-0.13605 -70825,5217:226:4,-176.5,-22.5,0,0,-0.13605 -70826,5217:226:3,-176,-22.5,0,0,-0.13605 -70827,5217:225:4,-175.5,-22.5,0,0,-0.13605 -70828,5217:225:3,-175,-22.5,0,0,-0.13605 -70829,5217:124:4,-174.5,-22.5,0,0,-0.13605 -70830,5217:124:3,-174,-22.5,0,0,-0.13605 -70831,5217:123:4,-173.5,-22.5,0,0,-0.13605 -70832,5217:123:3,-173,-22.5,0,0,-0.13605 -70833,5217:122:4,-172.5,-22.5,0,0,-0.13605 -70834,5217:122:3,-172,-22.5,0,0,-0.13605 -70835,5217:121:4,-171.5,-22.5,0,0,-0.13605 -70836,5217:121:3,-171,-22.5,0,0,-0.13605 -70837,5217:120:4,-170.5,-22.5,0,0,-0.13605 -70838,5217:120:3,-170,-22.5,0,0,-0.13605 -70839,5216:229:4,-169.5,-22.5,0,0,-0.13605 -70840,5216:229:3,-169,-22.5,0,0,-0.13605 -70841,5216:228:4,-168.5,-22.5,0,0,-0.13605 -70842,5216:228:3,-168,-22.5,0,0,-0.13605 -70843,5216:227:4,-167.5,-22.5,0,0,-0.13605 -70844,5216:227:3,-167,-22.5,0,0,-0.13605 -70845,5216:226:4,-166.5,-22.5,0,0,-0.13605 -70846,5216:226:3,-166,-22.5,0,0,-0.13605 -70847,5216:225:4,-165.5,-22.5,0,0,-0.13605 -70848,5216:225:3,-165,-22.5,0,0,-0.13605 -70849,5216:124:4,-164.5,-22.5,0,0,-0.13605 -70850,5216:124:3,-164,-22.5,0,0,-0.13605 -70851,5216:123:4,-163.5,-22.5,0,0,-0.13605 -70852,5216:123:3,-163,-22.5,0,0,-0.13605 -70853,5216:122:4,-162.5,-22.5,0,0,-0.13605 -70854,5216:122:3,-162,-22.5,0,0,-0.13605 -70855,5216:121:4,-161.5,-22.5,0,0,-0.13605 -70856,5216:121:3,-161,-22.5,0,0,-0.13605 -70857,5216:120:4,-160.5,-22.5,0,0,-0.13605 -70858,5216:120:3,-160,-22.5,0,0,-0.13605 -70859,5215:229:4,-159.5,-22.5,0,0,-0.13605 -70860,5215:229:3,-159,-22.5,0,0,-0.13605 -70861,5215:228:4,-158.5,-22.5,0,0,-0.13605 -70862,5215:228:3,-158,-22.5,0,0,-0.13605 -70863,5215:227:4,-157.5,-22.5,0,0,-0.13605 -70864,5215:227:3,-157,-22.5,0,0,-0.13605 -70865,5215:226:4,-156.5,-22.5,0,0,-0.13605 -70866,5215:226:3,-156,-22.5,0,0,-0.13605 -70867,5215:225:4,-155.5,-22.5,0,0,-0.13605 -70868,5215:225:3,-155,-22.5,0,0,-0.13605 -70869,5215:124:4,-154.5,-22.5,0,0,-0.13605 -70870,5215:124:3,-154,-22.5,0,0,-0.13605 -70871,5215:123:4,-153.5,-22.5,0,0,-0.13605 -70872,5215:123:3,-153,-22.5,0,0,-0.13605 -70873,5215:122:4,-152.5,-22.5,0,0,-0.13605 -70874,5215:122:3,-152,-22.5,0,0,-0.13605 -70875,5215:121:4,-151.5,-22.5,0,0,-0.13605 -70876,5215:121:3,-151,-22.5,0,0,-0.13605 -70877,5215:120:4,-150.5,-22.5,0,0,-0.13605 -70878,5215:120:3,-150,-22.5,0,0,-0.13605 -70879,5214:229:4,-149.5,-22.5,0,0,-0.13605 -70880,5214:229:3,-149,-22.5,0,0,-0.13605 -70881,5214:228:4,-148.5,-22.5,0,0,-0.13605 -70882,5214:228:3,-148,-22.5,0,0,-0.13605 -70883,5214:227:4,-147.5,-22.5,0,0,-0.13605 -70884,5214:227:3,-147,-22.5,0,0,-0.13605 -70885,5214:226:4,-146.5,-22.5,0,0,-0.13605 -70886,5214:226:3,-146,-22.5,0,0,-0.13605 -70887,5214:225:4,-145.5,-22.5,0,0,-0.13605 -70888,5214:225:3,-145,-22.5,0,0,-0.13605 -70889,5214:124:4,-144.5,-22.5,0,0,-0.13605 -70890,5214:124:3,-144,-22.5,0,0,-0.13605 -70891,5214:123:4,-143.5,-22.5,0,0,-0.13605 -70892,5214:123:3,-143,-22.5,0,0,-0.13605 -70893,5214:122:4,-142.5,-22.5,0,0,-0.13605 -70894,5214:122:3,-142,-22.5,0,0,-0.13605 -70895,5214:121:4,-141.5,-22.5,0,0,-0.13605 -70896,5214:121:3,-141,-22.5,0,0,-0.13605 -70897,5214:120:4,-140.5,-22.5,0,0,-0.13605 -70898,5214:120:3,-140,-22.5,0,0,-0.13605 -70899,5213:229:4,-139.5,-22.5,0,0,-0.13605 -70900,5213:229:3,-139,-22.5,0,0,-0.13605 -70901,5213:228:4,-138.5,-22.5,0,0,-0.13605 -70902,5213:228:3,-138,-22.5,0,0,-0.13605 -70903,5213:227:4,-137.5,-22.5,0,0,-0.13605 -70904,5213:227:3,-137,-22.5,0,0,-0.13605 -70905,5213:226:4,-136.5,-22.5,0,0,-0.13605 -70906,5213:226:3,-136,-22.5,0,0,-0.13605 -70907,5213:225:4,-135.5,-22.5,0,0,-0.13605 -70908,5213:225:3,-135,-22.5,0,0,-0.13605 -70909,5213:124:4,-134.5,-22.5,0,0,-0.13605 -70910,5213:124:3,-134,-22.5,0,0,-0.13605 -70911,5213:123:4,-133.5,-22.5,0,0,-0.13605 -70912,5213:123:3,-133,-22.5,0,0,-0.13605 -70913,5213:122:4,-132.5,-22.5,0,0,-0.13605 -70914,5213:122:3,-132,-22.5,0,0,-0.13605 -70915,5213:121:4,-131.5,-22.5,0,0,-0.13605 -70916,5213:121:3,-131,-22.5,0,0,-0.13605 -70917,5213:120:4,-130.5,-22.5,0,0,-0.13605 -70918,5213:120:3,-130,-22.5,0,0,-0.13605 -70919,5212:229:4,-129.5,-22.5,0,0,-0.13605 -70920,5212:229:3,-129,-22.5,0,0,-0.13605 -70921,5212:228:4,-128.5,-22.5,0,0,-0.13605 -70922,5212:228:3,-128,-22.5,0,0,-0.13605 -70923,5212:227:4,-127.5,-22.5,0,0,-0.13605 -70924,5212:227:3,-127,-22.5,0,0,-0.13605 -70925,5212:226:4,-126.5,-22.5,0,0,-0.13605 -70926,5212:226:3,-126,-22.5,0,0,-0.13605 -70927,5212:225:4,-125.5,-22.5,0,0,-0.13605 -70928,5212:225:3,-125,-22.5,0,0,-0.13605 -70929,5212:124:4,-124.5,-22.5,0,0,-0.13605 -70930,5212:124:3,-124,-22.5,0,0,-0.13605 -70931,5212:123:4,-123.5,-22.5,0,0,-0.13605 -70932,5212:123:3,-123,-22.5,0,0,-0.13605 -70933,5212:122:4,-122.5,-22.5,0,0,-0.13605 -70934,5212:122:3,-122,-22.5,0,0,-0.13605 -70935,5212:121:4,-121.5,-22.5,0,0,-0.13605 -70936,5212:121:3,-121,-22.5,0,0,-0.13605 -70937,5212:120:4,-120.5,-22.5,0,0,-0.13605 -70938,5212:120:3,-120,-22.5,0,0,-0.13605 -70939,5211:229:4,-119.5,-22.5,0,0,-0.13605 -70940,5211:229:3,-119,-22.5,0,0,-0.13605 -70941,5211:228:4,-118.5,-22.5,0,0,-0.13605 -70942,5211:228:3,-118,-22.5,0,0,-0.13605 -70943,5211:227:4,-117.5,-22.5,0,0,-0.13605 -70944,5211:227:3,-117,-22.5,0,0,-0.13605 -70945,5211:226:4,-116.5,-22.5,0,0,-0.13605 -70946,5211:226:3,-116,-22.5,0,0,-0.13605 -70947,5211:225:4,-115.5,-22.5,0,0,-0.13605 -70948,5211:225:3,-115,-22.5,0,0,-0.13605 -70949,5211:124:4,-114.5,-22.5,0,0,-0.13605 -70950,5211:124:3,-114,-22.5,0,0,-0.13605 -70951,5211:123:4,-113.5,-22.5,0,0,-0.13605 -70952,5211:123:3,-113,-22.5,0,0,-0.13605 -70953,5211:122:4,-112.5,-22.5,0,0,-0.13605 -70954,5211:122:3,-112,-22.5,0,0,-0.13605 -70955,5211:121:4,-111.5,-22.5,0,0,-0.13605 -70956,5211:121:3,-111,-22.5,0,0,-0.13605 -70957,5211:120:4,-110.5,-22.5,0,0,-0.13605 -70958,5211:120:3,-110,-22.5,0,0,-0.13605 -70959,5210:229:4,-109.5,-22.5,0,0,-0.13605 -70960,5210:229:3,-109,-22.5,0,0,-0.13605 -70961,5210:228:4,-108.5,-22.5,0,0,-0.13605 -70962,5210:228:3,-108,-22.5,0,0,-0.13605 -70963,5210:227:4,-107.5,-22.5,0,0,-0.13605 -70964,5210:227:3,-107,-22.5,0,0,-0.13605 -70965,5210:226:4,-106.5,-22.5,0,0,-0.13605 -70966,5210:226:3,-106,-22.5,0,0,-0.13605 -70967,5210:225:4,-105.5,-22.5,0,0,-0.13605 -70968,5210:225:3,-105,-22.5,0,0,-0.13605 -70969,5210:124:4,-104.5,-22.5,0,0,-0.13605 -70970,5210:124:3,-104,-22.5,0,0,-0.13605 -70971,5210:123:4,-103.5,-22.5,0,0,-0.13605 -70972,5210:123:3,-103,-22.5,0,0,-0.13605 -70973,5210:122:4,-102.5,-22.5,0,0,-0.13605 -70974,5210:122:3,-102,-22.5,0,0,-0.13605 -70975,5210:121:4,-101.5,-22.5,0,0,-0.13605 -70976,5210:121:3,-101,-22.5,0,0,-0.13605 -70977,5210:120:4,-100.5,-22.5,0,0,-0.13605 -70978,5210:120:3,-100,-22.5,0,0,-0.13605 -70979,5209:229:4,-99.5,-22.5,0,0,-0.13605 -70980,5209:229:3,-99,-22.5,0,0,-0.13605 -70981,5209:228:4,-98.5,-22.5,0,0,-0.13605 -70982,5209:228:3,-98,-22.5,0,0,-0.13605 -70983,5209:227:4,-97.5,-22.5,0,0,-0.13605 -70984,5209:227:3,-97,-22.5,0,0,-0.13605 -70985,5209:226:4,-96.5,-22.5,0,0,-0.13605 -70986,5209:226:3,-96,-22.5,0,0,-0.13605 -70987,5209:225:4,-95.5,-22.5,0,0,-0.13605 -70988,5209:225:3,-95,-22.5,0,0,-0.13605 -70989,5209:124:4,-94.5,-22.5,0,0,-0.13605 -70990,5209:124:3,-94,-22.5,0,0,-0.13605 -70991,5209:123:4,-93.5,-22.5,0,0,-0.13605 -70992,5209:123:3,-93,-22.5,0,0,-0.13605 -70993,5209:122:4,-92.5,-22.5,0,0,-0.13605 -70994,5209:122:3,-92,-22.5,0,0,-0.13605 -70995,5209:121:4,-91.5,-22.5,0,0,-0.13605 -70996,5209:121:3,-91,-22.5,0,0,-0.13605 -70997,5209:120:4,-90.5,-22.5,0,0,-0.13605 -70998,5209:120:3,-90,-22.5,0,0,-0.13605 -70999,5208:229:4,-89.5,-22.5,0,0,-0.13605 -71000,5208:229:3,-89,-22.5,0,0,-0.13605 -71001,5208:228:4,-88.5,-22.5,0,0,-0.13605 -71002,5208:228:3,-88,-22.5,0,0,-0.13605 -71003,5208:227:4,-87.5,-22.5,0,0,-0.13605 -71004,5208:227:3,-87,-22.5,0,0,-0.13605 -71005,5208:226:4,-86.5,-22.5,0,0,-0.13605 -71006,5208:226:3,-86,-22.5,0,0,-0.13605 -71007,5208:225:4,-85.5,-22.5,0,0,-0.13605 -71008,5208:225:3,-85,-22.5,0,0,-0.13605 -71009,5208:124:4,-84.5,-22.5,0,0,-0.13605 -71010,5208:124:3,-84,-22.5,0,0,-0.13605 -71011,5208:123:4,-83.5,-22.5,0,0,-0.13605 -71012,5208:123:3,-83,-22.5,0,0,-0.13605 -71013,5208:122:4,-82.5,-22.5,0,0,-0.13605 -71014,5208:122:3,-82,-22.5,0,0,-0.13605 -71015,5208:121:4,-81.5,-22.5,0,0,-0.13605 -71016,5208:121:3,-81,-22.5,0,0,-0.13605 -71017,5208:120:4,-80.5,-22.5,0,0,-0.13605 -71018,5208:120:3,-80,-22.5,0,0,-0.13605 -71019,5207:229:4,-79.5,-22.5,0,0,-0.13605 -71020,5207:229:3,-79,-22.5,0,0,-0.13605 -71021,5207:228:4,-78.5,-22.5,0,0,-0.13605 -71022,5207:228:3,-78,-22.5,0,0,-0.13605 -71023,5207:227:4,-77.5,-22.5,0,0,-0.13605 -71024,5207:227:3,-77,-22.5,0,0,-0.13605 -71025,5207:226:4,-76.5,-22.5,0,0,-0.13605 -71026,5207:226:3,-76,-22.5,0,0,-0.13605 -71027,5207:225:4,-75.5,-22.5,0,0,-0.13605 -71028,5207:225:3,-75,-22.5,0,0,-0.13605 -71029,5207:124:4,-74.5,-22.5,0,0,-0.13605 -71030,5207:124:3,-74,-22.5,0,0,-0.13605 -71031,5207:123:4,-73.5,-22.5,0,0,-0.13605 -71032,5207:123:3,-73,-22.5,0,0,-0.13605 -71033,5207:122:4,-72.5,-22.5,0,0,-0.13605 -71034,5207:122:3,-72,-22.5,0,0,-0.13605 -71035,5207:121:4,-71.5,-22.5,0,0,-0.13605 -71036,5204:229:4,-49.5,-22.5,0,0,-0.13605 -71037,5204:229:3,-49,-22.5,0,0,-0.13605 -71038,5204:228:4,-48.5,-22.5,0,0,-0.136654 -71039,5204:228:3,-48,-22.5,0,0,-0.142507 -71040,5204:227:4,-47.5,-22.5,0,0,-0.142181 -71041,5204:227:3,-47,-22.5,0,0,-0.13605 -71042,5204:226:4,-46.5,-22.5,0,0,-0.13605 -71043,5204:226:3,-46,-22.5,0,0,-0.13605 -71044,5204:225:4,-45.5,-22.5,0,0,-0.13605 -71045,5204:225:3,-45,-22.5,0,0,-0.13605 -71046,5204:124:4,-44.5,-22.5,0,0,-0.13605 -71047,5204:124:3,-44,-22.5,0,0,-0.13605 -71048,5204:123:4,-43.5,-22.5,0,0,-0.13605 -71049,5204:123:3,-43,-22.5,0,0,-0.13605 -71050,5204:122:4,-42.5,-22.5,0,0,-0.13605 -71051,5204:122:3,-42,-22.5,0,0,-0.13605 -71052,5204:121:4,-41.5,-22.5,0,0,-0.13605 -71053,5204:121:3,-41,-22.5,0,0,-0.13605 -71054,5204:120:4,-40.5,-22.5,0,0,-0.13605 -71055,5204:120:3,-40,-22.5,0,0,-0.13605 -71056,5203:229:4,-39.5,-22.5,0,0,-0.13605 -71057,5203:229:3,-39,-22.5,0,0,-0.13605 -71058,5203:228:4,-38.5,-22.5,0,0,-0.13605 -71059,5203:228:3,-38,-22.5,0,0,-0.13605 -71060,5203:227:4,-37.5,-22.5,0,0,-0.13605 -71061,5203:227:3,-37,-22.5,0,0,-0.13605 -71062,5203:226:4,-36.5,-22.5,0,0,-0.13605 -71063,5203:226:3,-36,-22.5,0,0,-0.13605 -71064,5203:225:4,-35.5,-22.5,0,0,-0.13605 -71065,5203:225:3,-35,-22.5,0,0,-0.13605 -71066,5203:124:4,-34.5,-22.5,0,0,-0.13605 -71067,5203:124:3,-34,-22.5,0,0,-0.13605 -71068,5203:123:4,-33.5,-22.5,0,0,-0.13605 -71069,5203:123:3,-33,-22.5,0,0,-0.13605 -71070,5203:122:4,-32.5,-22.5,0,0,-0.13605 -71071,5203:122:3,-32,-22.5,0,0,-0.13605 -71072,5203:121:4,-31.5,-22.5,0,0,-0.13605 -71073,5203:121:3,-31,-22.5,0,0,-0.13605 -71074,5203:120:4,-30.5,-22.5,0,0,-0.13605 -71075,5203:120:3,-30,-22.5,0,0,-0.13605 -71076,5202:229:4,-29.5,-22.5,0,0,-0.13605 -71077,5202:229:3,-29,-22.5,0,0,-0.13605 -71078,5202:228:4,-28.5,-22.5,0,0,-0.13605 -71079,5202:228:3,-28,-22.5,0,0,-0.13605 -71080,5202:227:4,-27.5,-22.5,0,0,-0.13605 -71081,5202:227:3,-27,-22.5,0,0,-0.13605 -71082,5202:226:4,-26.5,-22.5,0,0,-0.13605 -71083,5202:226:3,-26,-22.5,0,0,-0.13605 -71084,5202:225:4,-25.5,-22.5,0,0,-0.13605 -71085,5202:225:3,-25,-22.5,0,0,-0.13605 -71086,5202:124:4,-24.5,-22.5,0,0,-0.13605 -71087,5202:124:3,-24,-22.5,0,0,-0.13605 -71088,5202:123:4,-23.5,-22.5,0,0,-0.13605 -71089,5202:123:3,-23,-22.5,0,0,-0.13605 -71090,5202:122:4,-22.5,-22.5,0,0,-0.13605 -71091,5202:122:3,-22,-22.5,0,0,-0.13605 -71092,5202:121:4,-21.5,-22.5,0,0,-0.13605 -71093,5202:121:3,-21,-22.5,0,0,-0.13605 -71094,5202:120:4,-20.5,-22.5,0,0,-0.13605 -71095,5202:120:3,-20,-22.5,0,0,-0.13605 -71096,5201:229:4,-19.5,-22.5,0,0,-0.13605 -71097,5201:229:3,-19,-22.5,0,0,-0.13605 -71098,5201:228:4,-18.5,-22.5,0,0,-0.13605 -71099,5201:228:3,-18,-22.5,0,0,-0.13605 -71100,5201:227:4,-17.5,-22.5,0,0,-0.13605 -71101,5201:227:3,-17,-22.5,0,0,-0.13605 -71102,5201:226:4,-16.5,-22.5,0,0,-0.13605 -71103,5201:226:3,-16,-22.5,0,0,-0.13605 -71104,5201:225:4,-15.5,-22.5,0,0,-0.13605 -71105,5201:225:3,-15,-22.5,0,0,-0.13605 -71106,5201:124:4,-14.5,-22.5,0,0,-0.13605 -71107,5201:124:3,-14,-22.5,0,0,-0.13605 -71108,5201:123:4,-13.5,-22.5,0,0,-0.13605 -71109,5201:123:3,-13,-22.5,0,0,-0.13605 -71110,5201:122:4,-12.5,-22.5,0,0,-0.13605 -71111,5201:122:3,-12,-22.5,0,0,-0.13605 -71112,5201:121:4,-11.5,-22.5,0,0,-0.13605 -71113,5201:121:3,-11,-22.5,0,0,-0.13605 -71114,5201:120:4,-10.5,-22.5,0,0,-0.13605 -71115,5201:120:3,-10,-22.5,0,0,-0.13605 -71116,5200:229:4,-9.5,-22.5,0,0,-0.13605 -71117,5200:229:3,-9,-22.5,0,0,-0.13605 -71118,5200:228:4,-8.5,-22.5,0,0,-0.13605 -71119,5200:228:3,-8,-22.5,0,0,-0.13605 -71120,5200:227:4,-7.5,-22.5,0,0,-0.13605 -71121,5200:227:3,-7,-22.5,0,0,-0.13605 -71122,5200:226:4,-6.5,-22.5,0,0,-0.13605 -71123,5200:226:3,-6,-22.5,0,0,-0.13605 -71124,5200:225:4,-5.5,-22.5,0,0,-0.13605 -71125,5200:225:3,-5,-22.5,0,0,-0.13605 -71126,5200:124:4,-4.5,-22.5,0,0,-0.13605 -71127,5200:124:3,-4,-22.5,0,0,-0.13605 -71128,5200:123:4,-3.5,-22.5,0,0,-0.13605 -71129,5200:123:3,-3,-22.5,0,0,-0.13605 -71130,5200:122:4,-2.5,-22.5,0,0,-0.13605 -71131,5200:122:3,-2,-22.5,0,0,-0.13605 -71132,5200:121:4,-1.5,-22.5,0,0,-0.13605 -71133,5200:121:3,-1,-22.5,0,0,-0.13605 -71134,5200:120:4,-0.5,-22.5,0,0,-0.13605 -71135,3200:120:4,0,-22.5,0,0,-0.13605 -71136,3200:120:4,0.5,-22.5,0,0,-0.13605 -71137,3200:121:3,1,-22.5,0,0,-0.13605 -71138,3200:121:4,1.5,-22.5,0,0,-0.13605 -71139,3200:122:3,2,-22.5,0,0,-0.13605 -71140,3200:122:4,2.5,-22.5,0,0,-0.13605 -71141,3200:123:3,3,-22.5,0,0,-0.13605 -71142,3200:123:4,3.5,-22.5,0,0,-0.13605 -71143,3200:124:3,4,-22.5,0,0,-0.13605 -71144,3200:124:4,4.5,-22.5,0,0,-0.13605 -71145,3200:225:3,5,-22.5,0,0,-0.13605 -71146,3200:225:4,5.5,-22.5,0,0,-0.13605 -71147,3200:226:3,6,-22.5,0,0,-0.13605 -71148,3200:226:4,6.5,-22.5,0,0,-0.13605 -71149,3200:227:3,7,-22.5,0,0,-0.13605 -71150,3200:227:4,7.5,-22.5,0,0,-0.13605 -71151,3200:228:3,8,-22.5,0,0,-0.13605 -71152,3200:228:4,8.5,-22.5,0,0,-0.13605 -71153,3200:229:3,9,-22.5,0,0,-0.13605 -71154,3200:229:4,9.5,-22.5,0,0,-0.13605 -71155,3201:120:3,10,-22.5,0,0,-0.13605 -71156,3201:120:4,10.5,-22.5,0,0,-0.13605 -71157,3201:121:3,11,-22.5,0,0,-0.13605 -71158,3201:121:4,11.5,-22.5,0,0,-0.13605 -71159,3201:122:3,12,-22.5,0,0,-0.13605 -71160,3201:122:4,12.5,-22.5,0,0,-0.13605 -71161,3201:123:3,13,-22.5,0,0,-0.13605 -71162,3201:123:4,13.5,-22.5,0,0,-0.13605 -71163,3201:124:3,14,-22.5,0,0,-0.13605 -71164,3201:124:4,14.5,-22.5,0,0,-0.13605 -71165,3201:225:3,15,-22.5,0,0,-0.13605 -71166,3201:225:4,15.5,-22.5,0,0,-0.13605 -71167,3201:226:3,16,-22.5,0,0,-0.13605 -71168,3201:226:4,16.5,-22.5,0,0,-0.13605 -71169,3203:121:4,31.5,-22.5,0,0,-0.13605 -71170,3203:122:3,32,-22.5,0,0,-0.139326 -71171,3203:122:4,32.5,-22.5,0,0,-0.142354 -71172,3203:123:3,33,-22.5,0,0,-0.13605 -71173,3203:123:4,33.5,-22.5,0,0,-0.13605 -71174,3203:124:3,34,-22.5,0,0,-0.13605 -71175,3203:124:4,34.5,-22.5,0,0,-0.13605 -71176,3203:225:3,35,-22.5,0,0,-0.13605 -71177,3203:225:4,35.5,-22.5,0,0,-0.13605 -71178,3203:226:3,36,-22.5,0,0,-0.13605 -71179,3203:226:4,36.5,-22.5,0,0,-0.13605 -71180,3203:227:3,37,-22.5,0,0,-0.13605 -71181,3203:227:4,37.5,-22.5,0,0,-0.13605 -71182,3203:228:3,38,-22.5,0,0,-0.13605 -71183,3203:228:4,38.5,-22.5,0,0,-0.13605 -71184,3203:229:3,39,-22.5,0,0,-0.13605 -71185,3203:229:4,39.5,-22.5,0,0,-0.13605 -71186,3204:120:3,40,-22.5,0,0,-0.13605 -71187,3204:120:4,40.5,-22.5,0,0,-0.13605 -71188,3204:121:3,41,-22.5,0,0,-0.13605 -71189,3204:121:4,41.5,-22.5,0,0,-0.13605 -71190,3204:122:3,42,-22.5,0,0,-0.13605 -71191,3204:122:4,42.5,-22.5,0,0,-0.13605 -71192,3204:123:3,43,-22.5,0,0,-0.13605 -71193,3204:123:4,43.5,-22.5,0,0,-0.13605 -71194,3204:124:3,44,-22.5,0,0,-0.13605 -71195,3204:124:4,44.5,-22.5,0,0,-0.13605 -71196,3204:225:3,45,-22.5,0,0,-0.13605 -71197,3204:225:4,45.5,-22.5,0,0,-0.13605 -71198,3204:226:3,46,-22.5,0,0,-0.13605 -71199,3204:226:4,46.5,-22.5,0,0,-0.13605 -71200,3204:227:3,47,-22.5,0,0,-0.13605 -71201,3204:227:4,47.5,-22.5,0,0,-0.13605 -71202,3204:228:3,48,-22.5,0,0,-0.13605 -71203,3204:228:4,48.5,-22.5,0,0,-0.13605 -71204,3204:229:3,49,-22.5,0,0,-0.13605 -71205,3204:229:4,49.5,-22.5,0,0,-0.13605 -71206,3205:120:3,50,-22.5,0,0,-0.13605 -71207,3205:120:4,50.5,-22.5,0,0,-0.13605 -71208,3205:121:3,51,-22.5,0,0,-0.13605 -71209,3205:121:4,51.5,-22.5,0,0,-0.13605 -71210,3205:122:3,52,-22.5,0,0,-0.13605 -71211,3205:122:4,52.5,-22.5,0,0,-0.13605 -71212,3205:123:3,53,-22.5,0,0,-0.13605 -71213,3205:123:4,53.5,-22.5,0,0,-0.13605 -71214,3205:124:3,54,-22.5,0,0,-0.13605 -71215,3205:124:4,54.5,-22.5,0,0,-0.13605 -71216,3205:225:3,55,-22.5,0,0,-0.13605 -71217,3205:225:4,55.5,-22.5,0,0,-0.13605 -71218,3205:226:3,56,-22.5,0,0,-0.13605 -71219,3205:226:4,56.5,-22.5,0,0,-0.13605 -71220,3205:227:3,57,-22.5,0,0,-0.13605 -71221,3205:227:4,57.5,-22.5,0,0,-0.13605 -71222,3205:228:3,58,-22.5,0,0,-0.13605 -71223,3205:228:4,58.5,-22.5,0,0,-0.13605 -71224,3205:229:3,59,-22.5,0,0,-0.13605 -71225,3205:229:4,59.5,-22.5,0,0,-0.13605 -71226,3206:120:3,60,-22.5,0,0,-0.13605 -71227,3206:120:4,60.5,-22.5,0,0,-0.13605 -71228,3206:121:3,61,-22.5,0,0,-0.13605 -71229,3206:121:4,61.5,-22.5,0,0,-0.13605 -71230,3206:122:3,62,-22.5,0,0,-0.13605 -71231,3206:122:4,62.5,-22.5,0,0,-0.13605 -71232,3206:123:3,63,-22.5,0,0,-0.13605 -71233,3206:123:4,63.5,-22.5,0,0,-0.13605 -71234,3206:124:3,64,-22.5,0,0,-0.13605 -71235,3206:124:4,64.5,-22.5,0,0,-0.13605 -71236,3206:225:3,65,-22.5,0,0,-0.13605 -71237,3206:225:4,65.5,-22.5,0,0,-0.13605 -71238,3206:226:3,66,-22.5,0,0,-0.13605 -71239,3206:226:4,66.5,-22.5,0,0,-0.13605 -71240,3206:227:3,67,-22.5,0,0,-0.13605 -71241,3206:227:4,67.5,-22.5,0,0,-0.13605 -71242,3206:228:3,68,-22.5,0,0,-0.13605 -71243,3206:228:4,68.5,-22.5,0,0,-0.13605 -71244,3206:229:3,69,-22.5,0,0,-0.13605 -71245,3206:229:4,69.5,-22.5,0,0,-0.13605 -71246,3207:120:3,70,-22.5,0,0,-0.13605 -71247,3207:120:4,70.5,-22.5,0,0,-0.13605 -71248,3207:121:3,71,-22.5,0,0,-0.13605 -71249,3207:121:4,71.5,-22.5,0,0,-0.13605 -71250,3207:122:3,72,-22.5,0,0,-0.13605 -71251,3207:122:4,72.5,-22.5,0,0,-0.13605 -71252,3207:123:4,73.5,-22.5,0,0,-0.13605 -71253,3207:124:3,74,-22.5,0,0,-0.13605 -71254,3207:124:4,74.5,-22.5,0,0,-0.13605 -71255,3207:225:3,75,-22.5,0,0,-0.13605 -71256,3207:225:4,75.5,-22.5,0,0,-0.13605 -71257,3207:226:3,76,-22.5,0,0,-0.13605 -71258,3207:226:4,76.5,-22.5,0,0,-0.13605 -71259,3207:227:3,77,-22.5,0,0,-0.13605 -71260,3207:227:4,77.5,-22.5,0,0,-0.13605 -71261,3207:228:3,78,-22.5,0,0,-0.13605 -71262,3207:228:4,78.5,-22.5,0,0,-0.13605 -71263,3207:229:3,79,-22.5,0,0,-0.13605 -71264,3207:229:4,79.5,-22.5,0,0,-0.13605 -71265,3208:120:3,80,-22.5,0,0,-0.13605 -71266,3208:120:4,80.5,-22.5,0,0,-0.13605 -71267,3208:121:3,81,-22.5,0,0,-0.13605 -71268,3208:121:4,81.5,-22.5,0,0,-0.13605 -71269,3208:122:3,82,-22.5,0,0,-0.13605 -71270,3208:122:4,82.5,-22.5,0,0,-0.13605 -71271,3208:123:3,83,-22.5,0,0,-0.13605 -71272,3208:123:4,83.5,-22.5,0,0,-0.13605 -71273,3208:124:3,84,-22.5,0,0,-0.13605 -71274,3208:124:4,84.5,-22.5,0,0,-0.13605 -71275,3208:225:3,85,-22.5,0,0,-0.13605 -71276,3208:225:4,85.5,-22.5,0,0,-0.13605 -71277,3208:226:3,86,-22.5,0,0,-0.13605 -71278,3208:226:4,86.5,-22.5,0,0,-0.13605 -71279,3208:227:3,87,-22.5,0,0,-0.13605 -71280,3208:227:4,87.5,-22.5,0,0,-0.13605 -71281,3208:228:3,88,-22.5,0,0,-0.13605 -71282,3208:228:4,88.5,-22.5,0,0,-0.13605 -71283,3208:229:3,89,-22.5,0,0,-0.13605 -71284,3208:229:4,89.5,-22.5,0,0,-0.13605 -71285,3209:120:3,90,-22.5,0,0,-0.13605 -71286,3209:120:4,90.5,-22.5,0,0,-0.13605 -71287,3209:121:3,91,-22.5,0,0,-0.13605 -71288,3209:121:4,91.5,-22.5,0,0,-0.13605 -71289,3209:122:3,92,-22.5,0,0,-0.13605 -71290,3209:122:4,92.5,-22.5,0,0,-0.13605 -71291,3209:123:3,93,-22.5,0,0,-0.13605 -71292,3209:123:4,93.5,-22.5,0,0,-0.13605 -71293,3209:124:3,94,-22.5,0,0,-0.13605 -71294,3209:124:4,94.5,-22.5,0,0,-0.13605 -71295,3209:225:3,95,-22.5,0,0,-0.13605 -71296,3209:225:4,95.5,-22.5,0,0,-0.13605 -71297,3209:226:3,96,-22.5,0,0,-0.13605 -71298,3209:226:4,96.5,-22.5,0,0,-0.13605 -71299,3209:227:3,97,-22.5,0,0,-0.13605 -71300,3209:227:4,97.5,-22.5,0,0,-0.13605 -71301,3209:228:3,98,-22.5,0,0,-0.13605 -71302,3209:228:4,98.5,-22.5,0,0,-0.13605 -71303,3209:229:3,99,-22.5,0,0,-0.13605 -71304,3209:229:4,99.5,-22.5,0,0,-0.13605 -71305,3210:120:3,100,-22.5,0,0,-0.13605 -71306,3210:120:4,100.5,-22.5,0,0,-0.13605 -71307,3210:121:3,101,-22.5,0,0,-0.13605 -71308,3210:121:4,101.5,-22.5,0,0,-0.13605 -71309,3210:122:3,102,-22.5,0,0,-0.13605 -71310,3210:122:4,102.5,-22.5,0,0,-0.13605 -71311,3210:123:3,103,-22.5,0,0,-0.13605 -71312,3210:123:4,103.5,-22.5,0,0,-0.13605 -71313,3210:124:3,104,-22.5,0,0,-0.13605 -71314,3210:124:4,104.5,-22.5,0,0,-0.13605 -71315,3210:225:3,105,-22.5,0,0,-0.13605 -71316,3210:225:4,105.5,-22.5,0,0,-0.13605 -71317,3210:226:3,106,-22.5,0,0,-0.13605 -71318,3210:226:4,106.5,-22.5,0,0,-0.13605 -71319,3210:227:3,107,-22.5,0,0,-0.13605 -71320,3210:227:4,107.5,-22.5,0,0,-0.13605 -71321,3210:228:3,108,-22.5,0,0,-0.13605 -71322,3210:228:4,108.5,-22.5,0,0,-0.13605 -71323,3210:229:3,109,-22.5,0,0,-0.13605 -71324,3210:229:4,109.5,-22.5,0,0,-0.13605 -71325,3211:120:3,110,-22.5,0,0,-0.13605 -71326,3211:120:4,110.5,-22.5,0,0,-0.13605 -71327,3211:121:3,111,-22.5,0,0,-0.13605 -71328,3211:121:4,111.5,-22.5,0,0,-0.13605 -71329,3211:122:3,112,-22.5,0,0,-0.13605 -71330,3211:122:4,112.5,-22.5,0,0,-0.13605 -71331,3211:123:3,113,-22.5,0,0,-0.13605 -71332,3211:123:4,113.5,-22.5,0,0,-0.13605 -71333,3211:124:3,114,-22.5,0,0,-0.13605 -71334,3211:124:4,114.5,-22.5,0,0,-0.13605 -71335,3211:225:3,115,-22.5,0,0,-0.13605 -71336,3215:124:3,154,-22.5,0,0,-0.13722 -71337,3215:124:4,154.5,-22.5,0,0,-0.13605 -71338,3215:225:3,155,-22.5,0,0,-0.13605 -71339,3215:225:4,155.5,-22.5,0,0,-0.13605 -71340,3215:226:3,156,-22.5,0,0,-0.13605 -71341,3215:226:4,156.5,-22.5,0,0,-0.13605 -71342,3215:227:3,157,-22.5,0,0,-0.13605 -71343,3215:227:4,157.5,-22.5,0,0,-0.13605 -71344,3215:228:3,158,-22.5,0,0,-0.13605 -71345,3215:228:4,158.5,-22.5,0,0,-0.13605 -71346,3215:229:3,159,-22.5,0,0,-0.13605 -71347,3215:229:4,159.5,-22.5,0,0,-0.13605 -71348,3216:120:3,160,-22.5,0,0,-0.13605 -71349,3216:120:4,160.5,-22.5,0,0,-0.13605 -71350,3216:121:3,161,-22.5,0,0,-0.13605 -71351,3216:121:4,161.5,-22.5,0,0,-0.13605 -71352,3216:122:3,162,-22.5,0,0,-0.13605 -71353,3216:122:4,162.5,-22.5,0,0,-0.13605 -71354,3216:123:3,163,-22.5,0,0,-0.13605 -71355,3216:123:4,163.5,-22.5,0,0,-0.13605 -71356,3216:124:3,164,-22.5,0,0,-0.13605 -71357,3216:124:4,164.5,-22.5,0,0,-0.13605 -71358,3216:225:3,165,-22.5,0,0,-0.13605 -71359,3216:225:4,165.5,-22.5,0,0,-0.13605 -71360,3216:226:3,166,-22.5,0,0,-0.13605 -71361,3216:226:4,166.5,-22.5,0,0,-0.13605 -71362,3216:227:3,167,-22.5,0,0,-0.13605 -71363,3216:227:4,167.5,-22.5,0,0,-0.13605 -71364,3216:228:3,168,-22.5,0,0,-0.13605 -71365,3216:228:4,168.5,-22.5,0,0,-0.13605 -71366,3216:229:3,169,-22.5,0,0,-0.13605 -71367,3216:229:4,169.5,-22.5,0,0,-0.13605 -71368,3217:120:3,170,-22.5,0,0,-0.13605 -71369,3217:120:4,170.5,-22.5,0,0,-0.13605 -71370,3217:121:3,171,-22.5,0,0,-0.13605 -71371,3217:121:4,171.5,-22.5,0,0,-0.13605 -71372,3217:122:3,172,-22.5,0,0,-0.13605 -71373,3217:122:4,172.5,-22.5,0,0,-0.13605 -71374,3217:123:3,173,-22.5,0,0,-0.13605 -71375,3217:123:4,173.5,-22.5,0,0,-0.13605 -71376,3217:124:3,174,-22.5,0,0,-0.13605 -71377,3217:124:4,174.5,-22.5,0,0,-0.13605 -71378,3217:225:3,175,-22.5,0,0,-0.13605 -71379,3217:225:4,175.5,-22.5,0,0,-0.13605 -71380,3217:226:3,176,-22.5,0,0,-0.13605 -71381,3217:226:4,176.5,-22.5,0,0,-0.13605 -71382,3217:227:3,177,-22.5,0,0,-0.13605 -71383,3217:227:4,177.5,-22.5,0,0,-0.13605 -71384,3217:228:3,178,-22.5,0,0,-0.13605 -71385,3217:228:4,178.5,-22.5,0,0,-0.13605 -71386,3217:229:3,179,-22.5,0,0,-0.13605 -71387,3217:229:4,179.5,-22.5,0,0,-0.13605 -71388,3218:120:3,180,-22.5,0,0,-0.13605 -71389,5218:120:1,-180,-22,0,0,-0.13605 -71390,5217:229:2,-179.5,-22,0,0,-0.13605 -71391,5217:229:1,-179,-22,0,0,-0.13605 -71392,5217:228:2,-178.5,-22,0,0,-0.13605 -71393,5217:228:1,-178,-22,0,0,-0.13605 -71394,5217:227:2,-177.5,-22,0,0,-0.13605 -71395,5217:227:1,-177,-22,0,0,-0.13605 -71396,5217:226:2,-176.5,-22,0,0,-0.13605 -71397,5217:226:1,-176,-22,0,0,-0.13605 -71398,5217:225:2,-175.5,-22,0,0,-0.13605 -71399,5217:225:1,-175,-22,0,0,-0.13605 -71400,5217:124:2,-174.5,-22,0,0,-0.13605 -71401,5217:124:1,-174,-22,0,0,-0.13605 -71402,5217:123:2,-173.5,-22,0,0,-0.13605 -71403,5217:123:1,-173,-22,0,0,-0.13605 -71404,5217:122:2,-172.5,-22,0,0,-0.13605 -71405,5217:122:1,-172,-22,0,0,-0.13605 -71406,5217:121:2,-171.5,-22,0,0,-0.13605 -71407,5217:121:1,-171,-22,0,0,-0.13605 -71408,5217:120:2,-170.5,-22,0,0,-0.13605 -71409,5217:120:1,-170,-22,0,0,-0.13605 -71410,5216:229:2,-169.5,-22,0,0,-0.13605 -71411,5216:229:1,-169,-22,0,0,-0.13605 -71412,5216:228:2,-168.5,-22,0,0,-0.13605 -71413,5216:228:1,-168,-22,0,0,-0.13605 -71414,5216:227:2,-167.5,-22,0,0,-0.13605 -71415,5216:227:1,-167,-22,0,0,-0.13605 -71416,5216:226:2,-166.5,-22,0,0,-0.13605 -71417,5216:226:1,-166,-22,0,0,-0.13605 -71418,5216:225:2,-165.5,-22,0,0,-0.13605 -71419,5216:225:1,-165,-22,0,0,-0.13605 -71420,5216:124:2,-164.5,-22,0,0,-0.13605 -71421,5216:124:1,-164,-22,0,0,-0.13605 -71422,5216:123:2,-163.5,-22,0,0,-0.13605 -71423,5216:123:1,-163,-22,0,0,-0.13605 -71424,5216:122:2,-162.5,-22,0,0,-0.13605 -71425,5216:122:1,-162,-22,0,0,-0.13605 -71426,5216:121:2,-161.5,-22,0,0,-0.13605 -71427,5216:121:1,-161,-22,0,0,-0.13605 -71428,5216:120:2,-160.5,-22,0,0,-0.13605 -71429,5216:120:1,-160,-22,0,0,-0.13605 -71430,5215:229:2,-159.5,-22,0,0,-0.13605 -71431,5215:229:1,-159,-22,0,0,-0.13605 -71432,5215:228:2,-158.5,-22,0,0,-0.13605 -71433,5215:228:1,-158,-22,0,0,-0.13605 -71434,5215:227:2,-157.5,-22,0,0,-0.13605 -71435,5215:227:1,-157,-22,0,0,-0.13605 -71436,5215:226:2,-156.5,-22,0,0,-0.13605 -71437,5215:226:1,-156,-22,0,0,-0.13605 -71438,5215:225:2,-155.5,-22,0,0,-0.13605 -71439,5215:225:1,-155,-22,0,0,-0.13605 -71440,5215:124:2,-154.5,-22,0,0,-0.13605 -71441,5215:124:1,-154,-22,0,0,-0.13605 -71442,5215:123:2,-153.5,-22,0,0,-0.13605 -71443,5215:123:1,-153,-22,0,0,-0.13605 -71444,5215:122:2,-152.5,-22,0,0,-0.13605 -71445,5215:122:1,-152,-22,0,0,-0.13605 -71446,5215:121:2,-151.5,-22,0,0,-0.13605 -71447,5215:121:1,-151,-22,0,0,-0.13605 -71448,5215:120:2,-150.5,-22,0,0,-0.13605 -71449,5215:120:1,-150,-22,0,0,-0.13605 -71450,5214:229:2,-149.5,-22,0,0,-0.13605 -71451,5214:229:1,-149,-22,0,0,-0.13605 -71452,5214:228:2,-148.5,-22,0,0,-0.13605 -71453,5214:228:1,-148,-22,0,0,-0.13605 -71454,5214:227:2,-147.5,-22,0,0,-0.13605 -71455,5214:227:1,-147,-22,0,0,-0.13605 -71456,5214:226:2,-146.5,-22,0,0,-0.13605 -71457,5214:226:1,-146,-22,0,0,-0.13605 -71458,5214:225:2,-145.5,-22,0,0,-0.13605 -71459,5214:225:1,-145,-22,0,0,-0.13605 -71460,5214:124:2,-144.5,-22,0,0,-0.13605 -71461,5214:124:1,-144,-22,0,0,-0.13605 -71462,5214:123:2,-143.5,-22,0,0,-0.13605 -71463,5214:123:1,-143,-22,0,0,-0.13605 -71464,5214:122:2,-142.5,-22,0,0,-0.13605 -71465,5214:122:1,-142,-22,0,0,-0.13605 -71466,5214:121:2,-141.5,-22,0,0,-0.13605 -71467,5214:121:1,-141,-22,0,0,-0.13605 -71468,5214:120:2,-140.5,-22,0,0,-0.13605 -71469,5214:120:1,-140,-22,0,0,-0.13605 -71470,5213:229:2,-139.5,-22,0,0,-0.13605 -71471,5213:229:1,-139,-22,0,0,-0.13605 -71472,5213:228:2,-138.5,-22,0,0,-0.13605 -71473,5213:228:1,-138,-22,0,0,-0.13605 -71474,5213:227:2,-137.5,-22,0,0,-0.13605 -71475,5213:227:1,-137,-22,0,0,-0.13605 -71476,5213:226:2,-136.5,-22,0,0,-0.13605 -71477,5213:226:1,-136,-22,0,0,-0.13605 -71478,5213:225:2,-135.5,-22,0,0,-0.13605 -71479,5213:225:1,-135,-22,0,0,-0.13605 -71480,5213:124:2,-134.5,-22,0,0,-0.13605 -71481,5213:124:1,-134,-22,0,0,-0.13605 -71482,5213:123:2,-133.5,-22,0,0,-0.13605 -71483,5213:123:1,-133,-22,0,0,-0.13605 -71484,5213:122:2,-132.5,-22,0,0,-0.13605 -71485,5213:122:1,-132,-22,0,0,-0.13605 -71486,5213:121:2,-131.5,-22,0,0,-0.13605 -71487,5213:121:1,-131,-22,0,0,-0.13605 -71488,5213:120:2,-130.5,-22,0,0,-0.13605 -71489,5213:120:1,-130,-22,0,0,-0.13605 -71490,5212:229:2,-129.5,-22,0,0,-0.13605 -71491,5212:229:1,-129,-22,0,0,-0.13605 -71492,5212:228:2,-128.5,-22,0,0,-0.13605 -71493,5212:228:1,-128,-22,0,0,-0.13605 -71494,5212:227:2,-127.5,-22,0,0,-0.13605 -71495,5212:227:1,-127,-22,0,0,-0.13605 -71496,5212:226:2,-126.5,-22,0,0,-0.13605 -71497,5212:226:1,-126,-22,0,0,-0.13605 -71498,5212:225:2,-125.5,-22,0,0,-0.13605 -71499,5212:225:1,-125,-22,0,0,-0.13605 -71500,5212:124:2,-124.5,-22,0,0,-0.13605 -71501,5212:124:1,-124,-22,0,0,-0.13605 -71502,5212:123:2,-123.5,-22,0,0,-0.13605 -71503,5212:123:1,-123,-22,0,0,-0.13605 -71504,5212:122:2,-122.5,-22,0,0,-0.13605 -71505,5212:122:1,-122,-22,0,0,-0.13605 -71506,5212:121:2,-121.5,-22,0,0,-0.13605 -71507,5212:121:1,-121,-22,0,0,-0.13605 -71508,5212:120:2,-120.5,-22,0,0,-0.13605 -71509,5212:120:1,-120,-22,0,0,-0.13605 -71510,5211:229:2,-119.5,-22,0,0,-0.13605 -71511,5211:229:1,-119,-22,0,0,-0.13605 -71512,5211:228:2,-118.5,-22,0,0,-0.13605 -71513,5211:228:1,-118,-22,0,0,-0.13605 -71514,5211:227:2,-117.5,-22,0,0,-0.13605 -71515,5211:227:1,-117,-22,0,0,-0.13605 -71516,5211:226:2,-116.5,-22,0,0,-0.13605 -71517,5211:226:1,-116,-22,0,0,-0.13605 -71518,5211:225:2,-115.5,-22,0,0,-0.13605 -71519,5211:225:1,-115,-22,0,0,-0.13605 -71520,5211:124:2,-114.5,-22,0,0,-0.13605 -71521,5211:124:1,-114,-22,0,0,-0.13605 -71522,5211:123:2,-113.5,-22,0,0,-0.13605 -71523,5211:123:1,-113,-22,0,0,-0.13605 -71524,5211:122:2,-112.5,-22,0,0,-0.13605 -71525,5211:122:1,-112,-22,0,0,-0.13605 -71526,5211:121:2,-111.5,-22,0,0,-0.13605 -71527,5211:121:1,-111,-22,0,0,-0.13605 -71528,5211:120:2,-110.5,-22,0,0,-0.13605 -71529,5211:120:1,-110,-22,0,0,-0.13605 -71530,5210:229:2,-109.5,-22,0,0,-0.13605 -71531,5210:229:1,-109,-22,0,0,-0.13605 -71532,5210:228:2,-108.5,-22,0,0,-0.13605 -71533,5210:228:1,-108,-22,0,0,-0.13605 -71534,5210:227:2,-107.5,-22,0,0,-0.13605 -71535,5210:227:1,-107,-22,0,0,-0.13605 -71536,5210:226:2,-106.5,-22,0,0,-0.13605 -71537,5210:226:1,-106,-22,0,0,-0.13605 -71538,5210:225:2,-105.5,-22,0,0,-0.13605 -71539,5210:225:1,-105,-22,0,0,-0.13605 -71540,5210:124:2,-104.5,-22,0,0,-0.13605 -71541,5210:124:1,-104,-22,0,0,-0.13605 -71542,5210:123:2,-103.5,-22,0,0,-0.13605 -71543,5210:123:1,-103,-22,0,0,-0.13605 -71544,5210:122:2,-102.5,-22,0,0,-0.13605 -71545,5210:122:1,-102,-22,0,0,-0.13605 -71546,5210:121:2,-101.5,-22,0,0,-0.13605 -71547,5210:121:1,-101,-22,0,0,-0.13605 -71548,5210:120:2,-100.5,-22,0,0,-0.13605 -71549,5210:120:1,-100,-22,0,0,-0.13605 -71550,5209:229:2,-99.5,-22,0,0,-0.13605 -71551,5209:229:1,-99,-22,0,0,-0.13605 -71552,5209:228:2,-98.5,-22,0,0,-0.13605 -71553,5209:228:1,-98,-22,0,0,-0.13605 -71554,5209:227:2,-97.5,-22,0,0,-0.13605 -71555,5209:227:1,-97,-22,0,0,-0.13605 -71556,5209:226:2,-96.5,-22,0,0,-0.13605 -71557,5209:226:1,-96,-22,0,0,-0.13605 -71558,5209:225:2,-95.5,-22,0,0,-0.13605 -71559,5209:225:1,-95,-22,0,0,-0.13605 -71560,5209:124:2,-94.5,-22,0,0,-0.13605 -71561,5209:124:1,-94,-22,0,0,-0.13605 -71562,5209:123:2,-93.5,-22,0,0,-0.13605 -71563,5209:123:1,-93,-22,0,0,-0.13605 -71564,5209:122:2,-92.5,-22,0,0,-0.13605 -71565,5209:122:1,-92,-22,0,0,-0.13605 -71566,5209:121:2,-91.5,-22,0,0,-0.13605 -71567,5209:121:1,-91,-22,0,0,-0.13605 -71568,5209:120:2,-90.5,-22,0,0,-0.13605 -71569,5209:120:1,-90,-22,0,0,-0.13605 -71570,5208:229:2,-89.5,-22,0,0,-0.13605 -71571,5208:229:1,-89,-22,0,0,-0.13605 -71572,5208:228:2,-88.5,-22,0,0,-0.13605 -71573,5208:228:1,-88,-22,0,0,-0.13605 -71574,5208:227:2,-87.5,-22,0,0,-0.13605 -71575,5208:227:1,-87,-22,0,0,-0.13605 -71576,5208:226:2,-86.5,-22,0,0,-0.13605 -71577,5208:226:1,-86,-22,0,0,-0.13605 -71578,5208:225:2,-85.5,-22,0,0,-0.13605 -71579,5208:225:1,-85,-22,0,0,-0.13605 -71580,5208:124:2,-84.5,-22,0,0,-0.13605 -71581,5208:124:1,-84,-22,0,0,-0.13605 -71582,5208:123:2,-83.5,-22,0,0,-0.13605 -71583,5208:123:1,-83,-22,0,0,-0.13605 -71584,5208:122:2,-82.5,-22,0,0,-0.13605 -71585,5208:122:1,-82,-22,0,0,-0.13605 -71586,5208:121:2,-81.5,-22,0,0,-0.13605 -71587,5208:121:1,-81,-22,0,0,-0.13605 -71588,5208:120:2,-80.5,-22,0,0,-0.13605 -71589,5208:120:1,-80,-22,0,0,-0.13605 -71590,5207:229:2,-79.5,-22,0,0,-0.13605 -71591,5207:229:1,-79,-22,0,0,-0.13605 -71592,5207:228:2,-78.5,-22,0,0,-0.13605 -71593,5207:228:1,-78,-22,0,0,-0.13605 -71594,5207:227:2,-77.5,-22,0,0,-0.13605 -71595,5207:227:1,-77,-22,0,0,-0.13605 -71596,5207:226:2,-76.5,-22,0,0,-0.13605 -71597,5207:226:1,-76,-22,0,0,-0.13605 -71598,5207:225:2,-75.5,-22,0,0,-0.13605 -71599,5207:225:1,-75,-22,0,0,-0.13605 -71600,5207:124:2,-74.5,-22,0,0,-0.13605 -71601,5207:124:1,-74,-22,0,0,-0.13605 -71602,5207:123:2,-73.5,-22,0,0,-0.13605 -71603,5207:123:1,-73,-22,0,0,-0.13605 -71604,5207:122:2,-72.5,-22,0,0,-0.13605 -71605,5207:122:1,-72,-22,0,0,-0.13605 -71606,5207:121:2,-71.5,-22,0,0,-0.13605 -71607,5204:229:1,-49,-22,0,0,-0.13605 -71608,5204:228:2,-48.5,-22,0,0,-0.139173 -71609,5204:228:1,-48,-22,0,0,-0.136654 -71610,5204:227:2,-47.5,-22,0,0,-0.142699 -71611,5204:227:1,-47,-22,0,0,-0.13605 -71612,5204:226:2,-46.5,-22,0,0,-0.13605 -71613,5204:226:1,-46,-22,0,0,-0.13605 -71614,5204:225:2,-45.5,-22,0,0,-0.13605 -71615,5204:225:1,-45,-22,0,0,-0.13605 -71616,5204:124:2,-44.5,-22,0,0,-0.13605 -71617,5204:124:1,-44,-22,0,0,-0.13605 -71618,5204:123:2,-43.5,-22,0,0,-0.13605 -71619,5204:123:1,-43,-22,0,0,-0.13605 -71620,5204:122:2,-42.5,-22,0,0,-0.13605 -71621,5204:122:1,-42,-22,0,0,-0.13605 -71622,5204:121:2,-41.5,-22,0,0,-0.13605 -71623,5204:121:1,-41,-22,0,0,-0.13605 -71624,5204:120:2,-40.5,-22,0,0,-0.13605 -71625,5204:120:1,-40,-22,0,0,-0.13605 -71626,5203:229:2,-39.5,-22,0,0,-0.13605 -71627,5203:229:1,-39,-22,0,0,-0.13605 -71628,5203:228:2,-38.5,-22,0,0,-0.13605 -71629,5203:228:1,-38,-22,0,0,-0.13605 -71630,5203:227:2,-37.5,-22,0,0,-0.13605 -71631,5203:227:1,-37,-22,0,0,-0.13605 -71632,5203:226:2,-36.5,-22,0,0,-0.13605 -71633,5203:226:1,-36,-22,0,0,-0.13605 -71634,5203:225:2,-35.5,-22,0,0,-0.13605 -71635,5203:225:1,-35,-22,0,0,-0.13605 -71636,5203:124:2,-34.5,-22,0,0,-0.13605 -71637,5203:124:1,-34,-22,0,0,-0.13605 -71638,5203:123:2,-33.5,-22,0,0,-0.13605 -71639,5203:123:1,-33,-22,0,0,-0.13605 -71640,5203:122:2,-32.5,-22,0,0,-0.13605 -71641,5203:122:1,-32,-22,0,0,-0.13605 -71642,5203:121:2,-31.5,-22,0,0,-0.13605 -71643,5203:121:1,-31,-22,0,0,-0.13605 -71644,5203:120:2,-30.5,-22,0,0,-0.13605 -71645,5203:120:1,-30,-22,0,0,-0.13605 -71646,5202:229:2,-29.5,-22,0,0,-0.13605 -71647,5202:229:1,-29,-22,0,0,-0.13605 -71648,5202:228:2,-28.5,-22,0,0,-0.13605 -71649,5202:228:1,-28,-22,0,0,-0.13605 -71650,5202:227:2,-27.5,-22,0,0,-0.13605 -71651,5202:227:1,-27,-22,0,0,-0.13605 -71652,5202:226:2,-26.5,-22,0,0,-0.13605 -71653,5202:226:1,-26,-22,0,0,-0.13605 -71654,5202:225:2,-25.5,-22,0,0,-0.13605 -71655,5202:225:1,-25,-22,0,0,-0.13605 -71656,5202:124:2,-24.5,-22,0,0,-0.13605 -71657,5202:124:1,-24,-22,0,0,-0.13605 -71658,5202:123:2,-23.5,-22,0,0,-0.13605 -71659,5202:123:1,-23,-22,0,0,-0.13605 -71660,5202:122:2,-22.5,-22,0,0,-0.13605 -71661,5202:122:1,-22,-22,0,0,-0.13605 -71662,5202:121:2,-21.5,-22,0,0,-0.13605 -71663,5202:121:1,-21,-22,0,0,-0.13605 -71664,5202:120:2,-20.5,-22,0,0,-0.13605 -71665,5202:120:1,-20,-22,0,0,-0.13605 -71666,5201:229:2,-19.5,-22,0,0,-0.13605 -71667,5201:229:1,-19,-22,0,0,-0.13605 -71668,5201:228:2,-18.5,-22,0,0,-0.13605 -71669,5201:228:1,-18,-22,0,0,-0.13605 -71670,5201:227:2,-17.5,-22,0,0,-0.13605 -71671,5201:227:1,-17,-22,0,0,-0.13605 -71672,5201:226:2,-16.5,-22,0,0,-0.13605 -71673,5201:226:1,-16,-22,0,0,-0.13605 -71674,5201:225:2,-15.5,-22,0,0,-0.13605 -71675,5201:225:1,-15,-22,0,0,-0.13605 -71676,5201:124:2,-14.5,-22,0,0,-0.13605 -71677,5201:124:1,-14,-22,0,0,-0.13605 -71678,5201:123:2,-13.5,-22,0,0,-0.13605 -71679,5201:123:1,-13,-22,0,0,-0.13605 -71680,5201:122:2,-12.5,-22,0,0,-0.13605 -71681,5201:122:1,-12,-22,0,0,-0.13605 -71682,5201:121:2,-11.5,-22,0,0,-0.13605 -71683,5201:121:1,-11,-22,0,0,-0.13605 -71684,5201:120:2,-10.5,-22,0,0,-0.13605 -71685,5201:120:1,-10,-22,0,0,-0.13605 -71686,5200:229:2,-9.5,-22,0,0,-0.13605 -71687,5200:229:1,-9,-22,0,0,-0.13605 -71688,5200:228:2,-8.5,-22,0,0,-0.13605 -71689,5200:228:1,-8,-22,0,0,-0.13605 -71690,5200:227:2,-7.5,-22,0,0,-0.13605 -71691,5200:227:1,-7,-22,0,0,-0.13605 -71692,5200:226:2,-6.5,-22,0,0,-0.13605 -71693,5200:226:1,-6,-22,0,0,-0.13605 -71694,5200:225:2,-5.5,-22,0,0,-0.13605 -71695,5200:225:1,-5,-22,0,0,-0.13605 -71696,5200:124:2,-4.5,-22,0,0,-0.13605 -71697,5200:124:1,-4,-22,0,0,-0.13605 -71698,5200:123:2,-3.5,-22,0,0,-0.13605 -71699,5200:123:1,-3,-22,0,0,-0.13605 -71700,5200:122:2,-2.5,-22,0,0,-0.13605 -71701,5200:122:1,-2,-22,0,0,-0.13605 -71702,5200:121:2,-1.5,-22,0,0,-0.13605 -71703,5200:121:1,-1,-22,0,0,-0.13605 -71704,5200:120:2,-0.5,-22,0,0,-0.13605 -71705,3200:120:2,0,-22,0,0,-0.13605 -71706,3200:120:2,0.5,-22,0,0,-0.13605 -71707,3200:121:1,1,-22,0,0,-0.13605 -71708,3200:121:2,1.5,-22,0,0,-0.13605 -71709,3200:122:1,2,-22,0,0,-0.13605 -71710,3200:122:2,2.5,-22,0,0,-0.13605 -71711,3200:123:1,3,-22,0,0,-0.13605 -71712,3200:123:2,3.5,-22,0,0,-0.13605 -71713,3200:124:1,4,-22,0,0,-0.13605 -71714,3200:124:2,4.5,-22,0,0,-0.13605 -71715,3200:225:1,5,-22,0,0,-0.13605 -71716,3200:225:2,5.5,-22,0,0,-0.13605 -71717,3200:226:1,6,-22,0,0,-0.13605 -71718,3200:226:2,6.5,-22,0,0,-0.13605 -71719,3200:227:1,7,-22,0,0,-0.13605 -71720,3200:227:2,7.5,-22,0,0,-0.13605 -71721,3200:228:1,8,-22,0,0,-0.13605 -71722,3200:228:2,8.5,-22,0,0,-0.13605 -71723,3200:229:1,9,-22,0,0,-0.13605 -71724,3200:229:2,9.5,-22,0,0,-0.13605 -71725,3201:120:1,10,-22,0,0,-0.13605 -71726,3201:120:2,10.5,-22,0,0,-0.13605 -71727,3201:121:1,11,-22,0,0,-0.13605 -71728,3201:121:2,11.5,-22,0,0,-0.13605 -71729,3201:122:1,12,-22,0,0,-0.13605 -71730,3201:122:2,12.5,-22,0,0,-0.13605 -71731,3201:123:1,13,-22,0,0,-0.13605 -71732,3201:123:2,13.5,-22,0,0,-0.13605 -71733,3201:124:1,14,-22,0,0,-0.13605 -71734,3201:124:2,14.5,-22,0,0,-0.13605 -71735,3201:225:1,15,-22,0,0,-0.13605 -71736,3201:225:2,15.5,-22,0,0,-0.13605 -71737,3201:226:1,16,-22,0,0,-0.13605 -71738,3203:122:1,32,-22,0,0,-0.13605 -71739,3203:122:2,32.5,-22,0,0,-0.14603 -71740,3203:123:1,33,-22,0,0,-0.14268 -71741,3203:123:2,33.5,-22,0,0,-0.13605 -71742,3203:124:1,34,-22,0,0,-0.13605 -71743,3203:124:2,34.5,-22,0,0,-0.13605 -71744,3203:225:1,35,-22,0,0,-0.13605 -71745,3203:225:2,35.5,-22,0,0,-0.13605 -71746,3203:226:1,36,-22,0,0,-0.13605 -71747,3203:226:2,36.5,-22,0,0,-0.13605 -71748,3203:227:1,37,-22,0,0,-0.13605 -71749,3203:227:2,37.5,-22,0,0,-0.13605 -71750,3203:228:1,38,-22,0,0,-0.13605 -71751,3203:228:2,38.5,-22,0,0,-0.13605 -71752,3203:229:1,39,-22,0,0,-0.13605 -71753,3203:229:2,39.5,-22,0,0,-0.13605 -71754,3204:120:1,40,-22,0,0,-0.13605 -71755,3204:120:2,40.5,-22,0,0,-0.13605 -71756,3204:121:1,41,-22,0,0,-0.13605 -71757,3204:121:2,41.5,-22,0,0,-0.13605 -71758,3204:122:1,42,-22,0,0,-0.13605 -71759,3204:122:2,42.5,-22,0,0,-0.13605 -71760,3204:123:1,43,-22,0,0,-0.13605 -71761,3204:123:2,43.5,-22,0,0,-0.13605 -71762,3204:124:1,44,-22,0,0,-0.13605 -71763,3204:124:2,44.5,-22,0,0,-0.13605 -71764,3204:225:1,45,-22,0,0,-0.13605 -71765,3204:225:2,45.5,-22,0,0,-0.13605 -71766,3204:226:1,46,-22,0,0,-0.13605 -71767,3204:226:2,46.5,-22,0,0,-0.13605 -71768,3204:227:1,47,-22,0,0,-0.13605 -71769,3204:227:2,47.5,-22,0,0,-0.13605 -71770,3204:228:1,48,-22,0,0,-0.13605 -71771,3204:228:2,48.5,-22,0,0,-0.13605 -71772,3204:229:1,49,-22,0,0,-0.13605 -71773,3204:229:2,49.5,-22,0,0,-0.13605 -71774,3205:120:1,50,-22,0,0,-0.13605 -71775,3205:120:2,50.5,-22,0,0,-0.13605 -71776,3205:121:1,51,-22,0,0,-0.13605 -71777,3205:121:2,51.5,-22,0,0,-0.13605 -71778,3205:122:1,52,-22,0,0,-0.13605 -71779,3205:122:2,52.5,-22,0,0,-0.13605 -71780,3205:123:1,53,-22,0,0,-0.13605 -71781,3205:123:2,53.5,-22,0,0,-0.13605 -71782,3205:124:1,54,-22,0,0,-0.13605 -71783,3205:124:2,54.5,-22,0,0,-0.13605 -71784,3205:225:1,55,-22,0,0,-0.13605 -71785,3205:225:2,55.5,-22,0,0,-0.13605 -71786,3205:226:1,56,-22,0,0,-0.13605 -71787,3205:226:2,56.5,-22,0,0,-0.13605 -71788,3205:227:1,57,-22,0,0,-0.13605 -71789,3205:227:2,57.5,-22,0,0,-0.13605 -71790,3205:228:1,58,-22,0,0,-0.13605 -71791,3205:228:2,58.5,-22,0,0,-0.13605 -71792,3205:229:1,59,-22,0,0,-0.13605 -71793,3205:229:2,59.5,-22,0,0,-0.13605 -71794,3206:120:1,60,-22,0,0,-0.13605 -71795,3206:120:2,60.5,-22,0,0,-0.13605 -71796,3206:121:1,61,-22,0,0,-0.13605 -71797,3206:121:2,61.5,-22,0,0,-0.13605 -71798,3206:122:1,62,-22,0,0,-0.13605 -71799,3206:122:2,62.5,-22,0,0,-0.13605 -71800,3206:123:1,63,-22,0,0,-0.13605 -71801,3206:123:2,63.5,-22,0,0,-0.13605 -71802,3206:124:1,64,-22,0,0,-0.13605 -71803,3206:124:2,64.5,-22,0,0,-0.13605 -71804,3206:225:1,65,-22,0,0,-0.13605 -71805,3206:225:2,65.5,-22,0,0,-0.13605 -71806,3206:226:1,66,-22,0,0,-0.13605 -71807,3206:226:2,66.5,-22,0,0,-0.13605 -71808,3206:227:1,67,-22,0,0,-0.13605 -71809,3206:227:2,67.5,-22,0,0,-0.13605 -71810,3206:228:1,68,-22,0,0,-0.13605 -71811,3206:228:2,68.5,-22,0,0,-0.13605 -71812,3206:229:1,69,-22,0,0,-0.13605 -71813,3206:229:2,69.5,-22,0,0,-0.13605 -71814,3207:120:1,70,-22,0,0,-0.13605 -71815,3207:120:2,70.5,-22,0,0,-0.13605 -71816,3207:121:1,71,-22,0,0,-0.13605 -71817,3207:121:2,71.5,-22,0,0,-0.13605 -71818,3207:122:1,72,-22,0,0,-0.13605 -71819,3207:122:2,72.5,-22,0,0,-0.13605 -71820,3207:123:2,73.5,-22,0,0,-0.13605 -71821,3207:124:1,74,-22,0,0,-0.13605 -71822,3207:124:2,74.5,-22,0,0,-0.13605 -71823,3207:225:1,75,-22,0,0,-0.13605 -71824,3207:225:2,75.5,-22,0,0,-0.13605 -71825,3207:226:1,76,-22,0,0,-0.13605 -71826,3207:226:2,76.5,-22,0,0,-0.13605 -71827,3207:227:1,77,-22,0,0,-0.13605 -71828,3207:227:2,77.5,-22,0,0,-0.13605 -71829,3207:228:1,78,-22,0,0,-0.13605 -71830,3207:228:2,78.5,-22,0,0,-0.13605 -71831,3207:229:1,79,-22,0,0,-0.13605 -71832,3207:229:2,79.5,-22,0,0,-0.13605 -71833,3208:120:1,80,-22,0,0,-0.13605 -71834,3208:120:2,80.5,-22,0,0,-0.13605 -71835,3208:121:1,81,-22,0,0,-0.13605 -71836,3208:121:2,81.5,-22,0,0,-0.13605 -71837,3208:122:1,82,-22,0,0,-0.13605 -71838,3208:122:2,82.5,-22,0,0,-0.13605 -71839,3208:123:1,83,-22,0,0,-0.13605 -71840,3208:123:2,83.5,-22,0,0,-0.13605 -71841,3208:124:1,84,-22,0,0,-0.13605 -71842,3208:124:2,84.5,-22,0,0,-0.13605 -71843,3208:225:1,85,-22,0,0,-0.13605 -71844,3208:225:2,85.5,-22,0,0,-0.13605 -71845,3208:226:1,86,-22,0,0,-0.13605 -71846,3208:226:2,86.5,-22,0,0,-0.13605 -71847,3208:227:1,87,-22,0,0,-0.13605 -71848,3208:227:2,87.5,-22,0,0,-0.13605 -71849,3208:228:1,88,-22,0,0,-0.13605 -71850,3208:228:2,88.5,-22,0,0,-0.13605 -71851,3208:229:1,89,-22,0,0,-0.13605 -71852,3208:229:2,89.5,-22,0,0,-0.13605 -71853,3209:120:1,90,-22,0,0,-0.13605 -71854,3209:120:2,90.5,-22,0,0,-0.13605 -71855,3209:121:1,91,-22,0,0,-0.13605 -71856,3209:121:2,91.5,-22,0,0,-0.13605 -71857,3209:122:1,92,-22,0,0,-0.13605 -71858,3209:122:2,92.5,-22,0,0,-0.13605 -71859,3209:123:1,93,-22,0,0,-0.13605 -71860,3209:123:2,93.5,-22,0,0,-0.13605 -71861,3209:124:1,94,-22,0,0,-0.13605 -71862,3209:124:2,94.5,-22,0,0,-0.13605 -71863,3209:225:1,95,-22,0,0,-0.13605 -71864,3209:225:2,95.5,-22,0,0,-0.13605 -71865,3209:226:1,96,-22,0,0,-0.13605 -71866,3209:226:2,96.5,-22,0,0,-0.13605 -71867,3209:227:1,97,-22,0,0,-0.13605 -71868,3209:227:2,97.5,-22,0,0,-0.13605 -71869,3209:228:1,98,-22,0,0,-0.13605 -71870,3209:228:2,98.5,-22,0,0,-0.13605 -71871,3209:229:1,99,-22,0,0,-0.13605 -71872,3209:229:2,99.5,-22,0,0,-0.13605 -71873,3210:120:1,100,-22,0,0,-0.13605 -71874,3210:120:2,100.5,-22,0,0,-0.13605 -71875,3210:121:1,101,-22,0,0,-0.13605 -71876,3210:121:2,101.5,-22,0,0,-0.13605 -71877,3210:122:1,102,-22,0,0,-0.13605 -71878,3210:122:2,102.5,-22,0,0,-0.13605 -71879,3210:123:1,103,-22,0,0,-0.13605 -71880,3210:123:2,103.5,-22,0,0,-0.13605 -71881,3210:124:1,104,-22,0,0,-0.13605 -71882,3210:124:2,104.5,-22,0,0,-0.13605 -71883,3210:225:1,105,-22,0,0,-0.13605 -71884,3210:225:2,105.5,-22,0,0,-0.13605 -71885,3210:226:1,106,-22,0,0,-0.13605 -71886,3210:226:2,106.5,-22,0,0,-0.13605 -71887,3210:227:1,107,-22,0,0,-0.13605 -71888,3210:227:2,107.5,-22,0,0,-0.13605 -71889,3210:228:1,108,-22,0,0,-0.13605 -71890,3210:228:2,108.5,-22,0,0,-0.13605 -71891,3210:229:1,109,-22,0,0,-0.13605 -71892,3210:229:2,109.5,-22,0,0,-0.13605 -71893,3211:120:1,110,-22,0,0,-0.13605 -71894,3211:120:2,110.5,-22,0,0,-0.13605 -71895,3211:121:1,111,-22,0,0,-0.13605 -71896,3211:121:2,111.5,-22,0,0,-0.13605 -71897,3211:122:1,112,-22,0,0,-0.13605 -71898,3211:122:2,112.5,-22,0,0,-0.13605 -71899,3211:123:1,113,-22,0,0,-0.13605 -71900,3211:123:2,113.5,-22,0,0,-0.13605 -71901,3211:124:1,114,-22,0,0,-0.13605 -71902,3211:124:2,114.5,-22,0,0,-0.13605 -71903,3215:124:1,154,-22,0,0,-0.138614 -71904,3215:124:2,154.5,-22,0,0,-0.13605 -71905,3215:225:1,155,-22,0,0,-0.13605 -71906,3215:225:2,155.5,-22,0,0,-0.13605 -71907,3215:226:1,156,-22,0,0,-0.13605 -71908,3215:226:2,156.5,-22,0,0,-0.13605 -71909,3215:227:1,157,-22,0,0,-0.13605 -71910,3215:227:2,157.5,-22,0,0,-0.13605 -71911,3215:228:1,158,-22,0,0,-0.13605 -71912,3215:228:2,158.5,-22,0,0,-0.13605 -71913,3215:229:1,159,-22,0,0,-0.13605 -71914,3215:229:2,159.5,-22,0,0,-0.13605 -71915,3216:120:1,160,-22,0,0,-0.13605 -71916,3216:120:2,160.5,-22,0,0,-0.13605 -71917,3216:121:1,161,-22,0,0,-0.13605 -71918,3216:121:2,161.5,-22,0,0,-0.13605 -71919,3216:122:1,162,-22,0,0,-0.13605 -71920,3216:122:2,162.5,-22,0,0,-0.13605 -71921,3216:123:1,163,-22,0,0,-0.13605 -71922,3216:123:2,163.5,-22,0,0,-0.13605 -71923,3216:124:1,164,-22,0,0,-0.13605 -71924,3216:124:2,164.5,-22,0,0,-0.13605 -71925,3216:225:1,165,-22,0,0,-0.13605 -71926,3216:225:2,165.5,-22,0,0,-0.13605 -71927,3216:226:1,166,-22,0,0,-0.13605 -71928,3216:226:2,166.5,-22,0,0,-0.13605 -71929,3216:227:1,167,-22,0,0,-0.13605 -71930,3216:227:2,167.5,-22,0,0,-0.13605 -71931,3216:228:1,168,-22,0,0,-0.13605 -71932,3216:228:2,168.5,-22,0,0,-0.13605 -71933,3216:229:1,169,-22,0,0,-0.13605 -71934,3216:229:2,169.5,-22,0,0,-0.13605 -71935,3217:120:1,170,-22,0,0,-0.13605 -71936,3217:120:2,170.5,-22,0,0,-0.13605 -71937,3217:121:1,171,-22,0,0,-0.13605 -71938,3217:121:2,171.5,-22,0,0,-0.13605 -71939,3217:122:1,172,-22,0,0,-0.13605 -71940,3217:122:2,172.5,-22,0,0,-0.13605 -71941,3217:123:1,173,-22,0,0,-0.13605 -71942,3217:123:2,173.5,-22,0,0,-0.13605 -71943,3217:124:1,174,-22,0,0,-0.13605 -71944,3217:124:2,174.5,-22,0,0,-0.13605 -71945,3217:225:1,175,-22,0,0,-0.13605 -71946,3217:225:2,175.5,-22,0,0,-0.13605 -71947,3217:226:1,176,-22,0,0,-0.13605 -71948,3217:226:2,176.5,-22,0,0,-0.13605 -71949,3217:227:1,177,-22,0,0,-0.13605 -71950,3217:227:2,177.5,-22,0,0,-0.13605 -71951,3217:228:1,178,-22,0,0,-0.13605 -71952,3217:228:2,178.5,-22,0,0,-0.13605 -71953,3217:229:1,179,-22,0,0,-0.13605 -71954,3217:229:2,179.5,-22,0,0,-0.13605 -71955,3218:120:1,180,-22,0,0,-0.13605 -71956,5218:110:3,-180,-21.5,0,0,-0.13605 -71957,5217:219:4,-179.5,-21.5,0,0,-0.13605 -71958,5217:219:3,-179,-21.5,0,0,-0.13605 -71959,5217:218:4,-178.5,-21.5,0,0,-0.13605 -71960,5217:218:3,-178,-21.5,0,0,-0.13605 -71961,5217:217:4,-177.5,-21.5,0,0,-0.13605 -71962,5217:217:3,-177,-21.5,0,0,-0.13605 -71963,5217:216:4,-176.5,-21.5,0,0,-0.13605 -71964,5217:216:3,-176,-21.5,0,0,-0.13605 -71965,5217:215:4,-175.5,-21.5,0,0,-0.13605 -71966,5217:215:3,-175,-21.5,0,0,-0.13605 -71967,5217:114:4,-174.5,-21.5,0,0,-0.13605 -71968,5217:114:3,-174,-21.5,0,0,-0.13605 -71969,5217:113:4,-173.5,-21.5,0,0,-0.13605 -71970,5217:113:3,-173,-21.5,0,0,-0.13605 -71971,5217:112:4,-172.5,-21.5,0,0,-0.13605 -71972,5217:112:3,-172,-21.5,0,0,-0.13605 -71973,5217:111:4,-171.5,-21.5,0,0,-0.13605 -71974,5217:111:3,-171,-21.5,0,0,-0.13605 -71975,5217:110:4,-170.5,-21.5,0,0,-0.13605 -71976,5217:110:3,-170,-21.5,0,0,-0.13605 -71977,5216:219:4,-169.5,-21.5,0,0,-0.13605 -71978,5216:219:3,-169,-21.5,0,0,-0.13605 -71979,5216:218:4,-168.5,-21.5,0,0,-0.13605 -71980,5216:218:3,-168,-21.5,0,0,-0.13605 -71981,5216:217:4,-167.5,-21.5,0,0,-0.13605 -71982,5216:217:3,-167,-21.5,0,0,-0.13605 -71983,5216:216:4,-166.5,-21.5,0,0,-0.13605 -71984,5216:216:3,-166,-21.5,0,0,-0.13605 -71985,5216:215:4,-165.5,-21.5,0,0,-0.13605 -71986,5216:215:3,-165,-21.5,0,0,-0.13605 -71987,5216:114:4,-164.5,-21.5,0,0,-0.13605 -71988,5216:114:3,-164,-21.5,0,0,-0.13605 -71989,5216:113:4,-163.5,-21.5,0,0,-0.13605 -71990,5216:113:3,-163,-21.5,0,0,-0.13605 -71991,5216:112:4,-162.5,-21.5,0,0,-0.13605 -71992,5216:112:3,-162,-21.5,0,0,-0.13605 -71993,5216:111:4,-161.5,-21.5,0,0,-0.13605 -71994,5216:111:3,-161,-21.5,0,0,-0.13605 -71995,5216:110:4,-160.5,-21.5,0,0,-0.13605 -71996,5216:110:3,-160,-21.5,0,0,-0.13605 -71997,5215:219:4,-159.5,-21.5,0,0,-0.13605 -71998,5215:219:3,-159,-21.5,0,0,-0.13605 -71999,5215:218:4,-158.5,-21.5,0,0,-0.13605 -72000,5215:218:3,-158,-21.5,0,0,-0.13605 -72001,5215:217:4,-157.5,-21.5,0,0,-0.13605 -72002,5215:217:3,-157,-21.5,0,0,-0.13605 -72003,5215:216:4,-156.5,-21.5,0,0,-0.13605 -72004,5215:216:3,-156,-21.5,0,0,-0.13605 -72005,5215:215:4,-155.5,-21.5,0,0,-0.13605 -72006,5215:215:3,-155,-21.5,0,0,-0.13605 -72007,5215:114:4,-154.5,-21.5,0,0,-0.13605 -72008,5215:114:3,-154,-21.5,0,0,-0.13605 -72009,5215:113:4,-153.5,-21.5,0,0,-0.13605 -72010,5215:113:3,-153,-21.5,0,0,-0.13605 -72011,5215:112:4,-152.5,-21.5,0,0,-0.13605 -72012,5215:112:3,-152,-21.5,0,0,-0.13605 -72013,5215:111:4,-151.5,-21.5,0,0,-0.13605 -72014,5215:111:3,-151,-21.5,0,0,-0.13605 -72015,5215:110:4,-150.5,-21.5,0,0,-0.13605 -72016,5215:110:3,-150,-21.5,0,0,-0.13605 -72017,5214:219:4,-149.5,-21.5,0,0,-0.13605 -72018,5214:219:3,-149,-21.5,0,0,-0.13605 -72019,5214:218:4,-148.5,-21.5,0,0,-0.13605 -72020,5214:218:3,-148,-21.5,0,0,-0.13605 -72021,5214:217:4,-147.5,-21.5,0,0,-0.13605 -72022,5214:217:3,-147,-21.5,0,0,-0.13605 -72023,5214:216:4,-146.5,-21.5,0,0,-0.13605 -72024,5214:216:3,-146,-21.5,0,0,-0.13605 -72025,5214:215:4,-145.5,-21.5,0,0,-0.13605 -72026,5214:215:3,-145,-21.5,0,0,-0.13605 -72027,5214:114:4,-144.5,-21.5,0,0,-0.13605 -72028,5214:114:3,-144,-21.5,0,0,-0.13605 -72029,5214:113:4,-143.5,-21.5,0,0,-0.13605 -72030,5214:113:3,-143,-21.5,0,0,-0.13605 -72031,5214:112:4,-142.5,-21.5,0,0,-0.13605 -72032,5214:112:3,-142,-21.5,0,0,-0.13605 -72033,5214:111:4,-141.5,-21.5,0,0,-0.13605 -72034,5214:111:3,-141,-21.5,0,0,-0.13605 -72035,5214:110:4,-140.5,-21.5,0,0,-0.13605 -72036,5214:110:3,-140,-21.5,0,0,-0.13605 -72037,5213:219:4,-139.5,-21.5,0,0,-0.13605 -72038,5213:219:3,-139,-21.5,0,0,-0.13605 -72039,5213:218:4,-138.5,-21.5,0,0,-0.13605 -72040,5213:218:3,-138,-21.5,0,0,-0.13605 -72041,5213:217:4,-137.5,-21.5,0,0,-0.13605 -72042,5213:217:3,-137,-21.5,0,0,-0.13605 -72043,5213:216:4,-136.5,-21.5,0,0,-0.13605 -72044,5213:216:3,-136,-21.5,0,0,-0.13605 -72045,5213:215:4,-135.5,-21.5,0,0,-0.13605 -72046,5213:215:3,-135,-21.5,0,0,-0.13605 -72047,5213:114:4,-134.5,-21.5,0,0,-0.13605 -72048,5213:114:3,-134,-21.5,0,0,-0.13605 -72049,5213:113:4,-133.5,-21.5,0,0,-0.13605 -72050,5213:113:3,-133,-21.5,0,0,-0.13605 -72051,5213:112:4,-132.5,-21.5,0,0,-0.13605 -72052,5213:112:3,-132,-21.5,0,0,-0.13605 -72053,5213:111:4,-131.5,-21.5,0,0,-0.13605 -72054,5213:111:3,-131,-21.5,0,0,-0.13605 -72055,5213:110:4,-130.5,-21.5,0,0,-0.13605 -72056,5213:110:3,-130,-21.5,0,0,-0.13605 -72057,5212:219:4,-129.5,-21.5,0,0,-0.13605 -72058,5212:219:3,-129,-21.5,0,0,-0.13605 -72059,5212:218:4,-128.5,-21.5,0,0,-0.13605 -72060,5212:218:3,-128,-21.5,0,0,-0.13605 -72061,5212:217:4,-127.5,-21.5,0,0,-0.13605 -72062,5212:217:3,-127,-21.5,0,0,-0.13605 -72063,5212:216:4,-126.5,-21.5,0,0,-0.13605 -72064,5212:216:3,-126,-21.5,0,0,-0.13605 -72065,5212:215:4,-125.5,-21.5,0,0,-0.13605 -72066,5212:215:3,-125,-21.5,0,0,-0.13605 -72067,5212:114:4,-124.5,-21.5,0,0,-0.13605 -72068,5212:114:3,-124,-21.5,0,0,-0.13605 -72069,5212:113:4,-123.5,-21.5,0,0,-0.13605 -72070,5212:113:3,-123,-21.5,0,0,-0.13605 -72071,5212:112:4,-122.5,-21.5,0,0,-0.13605 -72072,5212:112:3,-122,-21.5,0,0,-0.13605 -72073,5212:111:4,-121.5,-21.5,0,0,-0.13605 -72074,5212:111:3,-121,-21.5,0,0,-0.13605 -72075,5212:110:4,-120.5,-21.5,0,0,-0.13605 -72076,5212:110:3,-120,-21.5,0,0,-0.13605 -72077,5211:219:4,-119.5,-21.5,0,0,-0.13605 -72078,5211:219:3,-119,-21.5,0,0,-0.13605 -72079,5211:218:4,-118.5,-21.5,0,0,-0.13605 -72080,5211:218:3,-118,-21.5,0,0,-0.13605 -72081,5211:217:4,-117.5,-21.5,0,0,-0.13605 -72082,5211:217:3,-117,-21.5,0,0,-0.13605 -72083,5211:216:4,-116.5,-21.5,0,0,-0.13605 -72084,5211:216:3,-116,-21.5,0,0,-0.13605 -72085,5211:215:4,-115.5,-21.5,0,0,-0.13605 -72086,5211:215:3,-115,-21.5,0,0,-0.13605 -72087,5211:114:4,-114.5,-21.5,0,0,-0.13605 -72088,5211:114:3,-114,-21.5,0,0,-0.13605 -72089,5211:113:4,-113.5,-21.5,0,0,-0.13605 -72090,5211:113:3,-113,-21.5,0,0,-0.13605 -72091,5211:112:4,-112.5,-21.5,0,0,-0.13605 -72092,5211:112:3,-112,-21.5,0,0,-0.13605 -72093,5211:111:4,-111.5,-21.5,0,0,-0.13605 -72094,5211:111:3,-111,-21.5,0,0,-0.13605 -72095,5211:110:4,-110.5,-21.5,0,0,-0.13605 -72096,5211:110:3,-110,-21.5,0,0,-0.13605 -72097,5210:219:4,-109.5,-21.5,0,0,-0.13605 -72098,5210:219:3,-109,-21.5,0,0,-0.13605 -72099,5210:218:4,-108.5,-21.5,0,0,-0.13605 -72100,5210:218:3,-108,-21.5,0,0,-0.13605 -72101,5210:217:4,-107.5,-21.5,0,0,-0.13605 -72102,5210:217:3,-107,-21.5,0,0,-0.13605 -72103,5210:216:4,-106.5,-21.5,0,0,-0.13605 -72104,5210:216:3,-106,-21.5,0,0,-0.13605 -72105,5210:215:4,-105.5,-21.5,0,0,-0.13605 -72106,5210:215:3,-105,-21.5,0,0,-0.13605 -72107,5210:114:4,-104.5,-21.5,0,0,-0.13605 -72108,5210:114:3,-104,-21.5,0,0,-0.13605 -72109,5210:113:4,-103.5,-21.5,0,0,-0.13605 -72110,5210:113:3,-103,-21.5,0,0,-0.13605 -72111,5210:112:4,-102.5,-21.5,0,0,-0.13605 -72112,5210:112:3,-102,-21.5,0,0,-0.13605 -72113,5210:111:4,-101.5,-21.5,0,0,-0.13605 -72114,5210:111:3,-101,-21.5,0,0,-0.13605 -72115,5210:110:4,-100.5,-21.5,0,0,-0.13605 -72116,5210:110:3,-100,-21.5,0,0,-0.13605 -72117,5209:219:4,-99.5,-21.5,0,0,-0.13605 -72118,5209:219:3,-99,-21.5,0,0,-0.13605 -72119,5209:218:4,-98.5,-21.5,0,0,-0.13605 -72120,5209:218:3,-98,-21.5,0,0,-0.13605 -72121,5209:217:4,-97.5,-21.5,0,0,-0.13605 -72122,5209:217:3,-97,-21.5,0,0,-0.13605 -72123,5209:216:4,-96.5,-21.5,0,0,-0.13605 -72124,5209:216:3,-96,-21.5,0,0,-0.13605 -72125,5209:215:4,-95.5,-21.5,0,0,-0.13605 -72126,5209:215:3,-95,-21.5,0,0,-0.13605 -72127,5209:114:4,-94.5,-21.5,0,0,-0.13605 -72128,5209:114:3,-94,-21.5,0,0,-0.13605 -72129,5209:113:4,-93.5,-21.5,0,0,-0.13605 -72130,5209:113:3,-93,-21.5,0,0,-0.13605 -72131,5209:112:4,-92.5,-21.5,0,0,-0.13605 -72132,5209:112:3,-92,-21.5,0,0,-0.13605 -72133,5209:111:4,-91.5,-21.5,0,0,-0.13605 -72134,5209:111:3,-91,-21.5,0,0,-0.13605 -72135,5209:110:4,-90.5,-21.5,0,0,-0.13605 -72136,5209:110:3,-90,-21.5,0,0,-0.13605 -72137,5208:219:4,-89.5,-21.5,0,0,-0.13605 -72138,5208:219:3,-89,-21.5,0,0,-0.13605 -72139,5208:218:4,-88.5,-21.5,0,0,-0.13605 -72140,5208:218:3,-88,-21.5,0,0,-0.13605 -72141,5208:217:4,-87.5,-21.5,0,0,-0.13605 -72142,5208:217:3,-87,-21.5,0,0,-0.13605 -72143,5208:216:4,-86.5,-21.5,0,0,-0.13605 -72144,5208:216:3,-86,-21.5,0,0,-0.13605 -72145,5208:215:4,-85.5,-21.5,0,0,-0.13605 -72146,5208:215:3,-85,-21.5,0,0,-0.13605 -72147,5208:114:4,-84.5,-21.5,0,0,-0.13605 -72148,5208:114:3,-84,-21.5,0,0,-0.13605 -72149,5208:113:4,-83.5,-21.5,0,0,-0.13605 -72150,5208:113:3,-83,-21.5,0,0,-0.13605 -72151,5208:112:4,-82.5,-21.5,0,0,-0.13605 -72152,5208:112:3,-82,-21.5,0,0,-0.13605 -72153,5208:111:4,-81.5,-21.5,0,0,-0.13605 -72154,5208:111:3,-81,-21.5,0,0,-0.13605 -72155,5208:110:4,-80.5,-21.5,0,0,-0.13605 -72156,5208:110:3,-80,-21.5,0,0,-0.13605 -72157,5207:219:4,-79.5,-21.5,0,0,-0.13605 -72158,5207:219:3,-79,-21.5,0,0,-0.13605 -72159,5207:218:4,-78.5,-21.5,0,0,-0.13605 -72160,5207:218:3,-78,-21.5,0,0,-0.13605 -72161,5207:217:4,-77.5,-21.5,0,0,-0.13605 -72162,5207:217:3,-77,-21.5,0,0,-0.13605 -72163,5207:216:4,-76.5,-21.5,0,0,-0.13605 -72164,5207:216:3,-76,-21.5,0,0,-0.13605 -72165,5207:215:4,-75.5,-21.5,0,0,-0.13605 -72166,5207:215:3,-75,-21.5,0,0,-0.13605 -72167,5207:114:4,-74.5,-21.5,0,0,-0.13605 -72168,5207:114:3,-74,-21.5,0,0,-0.13605 -72169,5207:113:4,-73.5,-21.5,0,0,-0.13605 -72170,5207:113:3,-73,-21.5,0,0,-0.13605 -72171,5207:112:4,-72.5,-21.5,0,0,-0.13605 -72172,5207:112:3,-72,-21.5,0,0,-0.13605 -72173,5207:111:4,-71.5,-21.5,0,0,-0.13605 -72174,5204:218:4,-48.5,-21.5,0,0,-0.148259 -72175,5204:218:3,-48,-21.5,0,0,-0.137857 -72176,5204:217:4,-47.5,-21.5,0,0,-0.141837 -72177,5204:217:3,-47,-21.5,0,0,-0.142372 -72178,5204:216:4,-46.5,-21.5,0,0,-0.13605 -72179,5204:216:3,-46,-21.5,0,0,-0.13605 -72180,5204:215:4,-45.5,-21.5,0,0,-0.13605 -72181,5204:215:3,-45,-21.5,0,0,-0.13605 -72182,5204:114:4,-44.5,-21.5,0,0,-0.13605 -72183,5204:114:3,-44,-21.5,0,0,-0.13605 -72184,5204:113:4,-43.5,-21.5,0,0,-0.13605 -72185,5204:113:3,-43,-21.5,0,0,-0.13605 -72186,5204:112:4,-42.5,-21.5,0,0,-0.13605 -72187,5204:112:3,-42,-21.5,0,0,-0.13605 -72188,5204:111:4,-41.5,-21.5,0,0,-0.13605 -72189,5204:111:3,-41,-21.5,0,0,-0.13605 -72190,5204:110:4,-40.5,-21.5,0,0,-0.13605 -72191,5204:110:3,-40,-21.5,0,0,-0.13605 -72192,5203:219:4,-39.5,-21.5,0,0,-0.13605 -72193,5203:219:3,-39,-21.5,0,0,-0.13605 -72194,5203:218:4,-38.5,-21.5,0,0,-0.13605 -72195,5203:218:3,-38,-21.5,0,0,-0.13605 -72196,5203:217:4,-37.5,-21.5,0,0,-0.13605 -72197,5203:217:3,-37,-21.5,0,0,-0.13605 -72198,5203:216:4,-36.5,-21.5,0,0,-0.13605 -72199,5203:216:3,-36,-21.5,0,0,-0.13605 -72200,5203:215:4,-35.5,-21.5,0,0,-0.13605 -72201,5203:215:3,-35,-21.5,0,0,-0.13605 -72202,5203:114:4,-34.5,-21.5,0,0,-0.13605 -72203,5203:114:3,-34,-21.5,0,0,-0.13605 -72204,5203:113:4,-33.5,-21.5,0,0,-0.13605 -72205,5203:113:3,-33,-21.5,0,0,-0.13605 -72206,5203:112:4,-32.5,-21.5,0,0,-0.13605 -72207,5203:112:3,-32,-21.5,0,0,-0.13605 -72208,5203:111:4,-31.5,-21.5,0,0,-0.13605 -72209,5203:111:3,-31,-21.5,0,0,-0.13605 -72210,5203:110:4,-30.5,-21.5,0,0,-0.13605 -72211,5203:110:3,-30,-21.5,0,0,-0.13605 -72212,5202:219:4,-29.5,-21.5,0,0,-0.13605 -72213,5202:219:3,-29,-21.5,0,0,-0.13605 -72214,5202:218:4,-28.5,-21.5,0,0,-0.13605 -72215,5202:218:3,-28,-21.5,0,0,-0.13605 -72216,5202:217:4,-27.5,-21.5,0,0,-0.13605 -72217,5202:217:3,-27,-21.5,0,0,-0.13605 -72218,5202:216:4,-26.5,-21.5,0,0,-0.13605 -72219,5202:216:3,-26,-21.5,0,0,-0.13605 -72220,5202:215:4,-25.5,-21.5,0,0,-0.13605 -72221,5202:215:3,-25,-21.5,0,0,-0.13605 -72222,5202:114:4,-24.5,-21.5,0,0,-0.13605 -72223,5202:114:3,-24,-21.5,0,0,-0.13605 -72224,5202:113:4,-23.5,-21.5,0,0,-0.13605 -72225,5202:113:3,-23,-21.5,0,0,-0.13605 -72226,5202:112:4,-22.5,-21.5,0,0,-0.13605 -72227,5202:112:3,-22,-21.5,0,0,-0.13605 -72228,5202:111:4,-21.5,-21.5,0,0,-0.13605 -72229,5202:111:3,-21,-21.5,0,0,-0.13605 -72230,5202:110:4,-20.5,-21.5,0,0,-0.13605 -72231,5202:110:3,-20,-21.5,0,0,-0.13605 -72232,5201:219:4,-19.5,-21.5,0,0,-0.13605 -72233,5201:219:3,-19,-21.5,0,0,-0.13605 -72234,5201:218:4,-18.5,-21.5,0,0,-0.13605 -72235,5201:218:3,-18,-21.5,0,0,-0.13605 -72236,5201:217:4,-17.5,-21.5,0,0,-0.13605 -72237,5201:217:3,-17,-21.5,0,0,-0.13605 -72238,5201:216:4,-16.5,-21.5,0,0,-0.13605 -72239,5201:216:3,-16,-21.5,0,0,-0.13605 -72240,5201:215:4,-15.5,-21.5,0,0,-0.13605 -72241,5201:215:3,-15,-21.5,0,0,-0.13605 -72242,5201:114:4,-14.5,-21.5,0,0,-0.13605 -72243,5201:114:3,-14,-21.5,0,0,-0.13605 -72244,5201:113:4,-13.5,-21.5,0,0,-0.13605 -72245,5201:113:3,-13,-21.5,0,0,-0.13605 -72246,5201:112:4,-12.5,-21.5,0,0,-0.13605 -72247,5201:112:3,-12,-21.5,0,0,-0.13605 -72248,5201:111:4,-11.5,-21.5,0,0,-0.13605 -72249,5201:111:3,-11,-21.5,0,0,-0.13605 -72250,5201:110:4,-10.5,-21.5,0,0,-0.13605 -72251,5201:110:3,-10,-21.5,0,0,-0.13605 -72252,5200:219:4,-9.5,-21.5,0,0,-0.13605 -72253,5200:219:3,-9,-21.5,0,0,-0.13605 -72254,5200:218:4,-8.5,-21.5,0,0,-0.13605 -72255,5200:218:3,-8,-21.5,0,0,-0.13605 -72256,5200:217:4,-7.5,-21.5,0,0,-0.13605 -72257,5200:217:3,-7,-21.5,0,0,-0.13605 -72258,5200:216:4,-6.5,-21.5,0,0,-0.13605 -72259,5200:216:3,-6,-21.5,0,0,-0.13605 -72260,5200:215:4,-5.5,-21.5,0,0,-0.13605 -72261,5200:215:3,-5,-21.5,0,0,-0.13605 -72262,5200:114:4,-4.5,-21.5,0,0,-0.13605 -72263,5200:114:3,-4,-21.5,0,0,-0.13605 -72264,5200:113:4,-3.5,-21.5,0,0,-0.13605 -72265,5200:113:3,-3,-21.5,0,0,-0.13605 -72266,5200:112:4,-2.5,-21.5,0,0,-0.13605 -72267,5200:112:3,-2,-21.5,0,0,-0.13605 -72268,5200:111:4,-1.5,-21.5,0,0,-0.13605 -72269,5200:111:3,-1,-21.5,0,0,-0.13605 -72270,5200:110:4,-0.5,-21.5,0,0,-0.13605 -72271,3200:110:4,0,-21.5,0,0,-0.13605 -72272,3200:110:4,0.5,-21.5,0,0,-0.13605 -72273,3200:111:3,1,-21.5,0,0,-0.13605 -72274,3200:111:4,1.5,-21.5,0,0,-0.13605 -72275,3200:112:3,2,-21.5,0,0,-0.13605 -72276,3200:112:4,2.5,-21.5,0,0,-0.13605 -72277,3200:113:3,3,-21.5,0,0,-0.13605 -72278,3200:113:4,3.5,-21.5,0,0,-0.13605 -72279,3200:114:3,4,-21.5,0,0,-0.13605 -72280,3200:114:4,4.5,-21.5,0,0,-0.13605 -72281,3200:215:3,5,-21.5,0,0,-0.13605 -72282,3200:215:4,5.5,-21.5,0,0,-0.13605 -72283,3200:216:3,6,-21.5,0,0,-0.13605 -72284,3200:216:4,6.5,-21.5,0,0,-0.13605 -72285,3200:217:3,7,-21.5,0,0,-0.13605 -72286,3200:217:4,7.5,-21.5,0,0,-0.13605 -72287,3200:218:3,8,-21.5,0,0,-0.13605 -72288,3200:218:4,8.5,-21.5,0,0,-0.13605 -72289,3200:219:3,9,-21.5,0,0,-0.13605 -72290,3200:219:4,9.5,-21.5,0,0,-0.13605 -72291,3201:110:3,10,-21.5,0,0,-0.13605 -72292,3201:110:4,10.5,-21.5,0,0,-0.13605 -72293,3201:111:3,11,-21.5,0,0,-0.13605 -72294,3201:111:4,11.5,-21.5,0,0,-0.13605 -72295,3201:112:3,12,-21.5,0,0,-0.13605 -72296,3201:112:4,12.5,-21.5,0,0,-0.13605 -72297,3201:113:3,13,-21.5,0,0,-0.13605 -72298,3201:113:4,13.5,-21.5,0,0,-0.13605 -72299,3201:114:3,14,-21.5,0,0,-0.13605 -72300,3201:114:4,14.5,-21.5,0,0,-0.13605 -72301,3201:215:3,15,-21.5,0,0,-0.13605 -72302,3203:112:4,32.5,-21.5,0,0,-0.145597 -72303,3203:113:3,33,-21.5,0,0,-0.147739 -72304,3203:113:4,33.5,-21.5,0,0,-0.143645 -72305,3203:114:3,34,-21.5,0,0,-0.140942 -72306,3203:114:4,34.5,-21.5,0,0,-0.139998 -72307,3203:215:3,35,-21.5,0,0,-0.136667 -72308,3203:215:4,35.5,-21.5,0,0,-0.13605 -72309,3203:216:3,36,-21.5,0,0,-0.13605 -72310,3203:216:4,36.5,-21.5,0,0,-0.13605 -72311,3203:217:3,37,-21.5,0,0,-0.13605 -72312,3203:217:4,37.5,-21.5,0,0,-0.13605 -72313,3203:218:3,38,-21.5,0,0,-0.13605 -72314,3203:218:4,38.5,-21.5,0,0,-0.13605 -72315,3203:219:3,39,-21.5,0,0,-0.13605 -72316,3203:219:4,39.5,-21.5,0,0,-0.13605 -72317,3204:110:3,40,-21.5,0,0,-0.13605 -72318,3204:110:4,40.5,-21.5,0,0,-0.13605 -72319,3204:111:3,41,-21.5,0,0,-0.13605 -72320,3204:111:4,41.5,-21.5,0,0,-0.13605 -72321,3204:112:3,42,-21.5,0,0,-0.13605 -72322,3204:112:4,42.5,-21.5,0,0,-0.13605 -72323,3204:113:3,43,-21.5,0,0,-0.13605 -72324,3204:113:4,43.5,-21.5,0,0,-0.13605 -72325,3204:114:3,44,-21.5,0,0,-0.13605 -72326,3204:114:4,44.5,-21.5,0,0,-0.13605 -72327,3204:215:3,45,-21.5,0,0,-0.13605 -72328,3204:215:4,45.5,-21.5,0,0,-0.13605 -72329,3204:216:3,46,-21.5,0,0,-0.13605 -72330,3204:216:4,46.5,-21.5,0,0,-0.13605 -72331,3204:217:3,47,-21.5,0,0,-0.13605 -72332,3204:217:4,47.5,-21.5,0,0,-0.13605 -72333,3204:218:3,48,-21.5,0,0,-0.13605 -72334,3204:218:4,48.5,-21.5,0,0,-0.13605 -72335,3204:219:3,49,-21.5,0,0,-0.13605 -72336,3204:219:4,49.5,-21.5,0,0,-0.13605 -72337,3205:110:3,50,-21.5,0,0,-0.13605 -72338,3205:110:4,50.5,-21.5,0,0,-0.13605 -72339,3205:111:3,51,-21.5,0,0,-0.13605 -72340,3205:111:4,51.5,-21.5,0,0,-0.13605 -72341,3205:112:3,52,-21.5,0,0,-0.13605 -72342,3205:112:4,52.5,-21.5,0,0,-0.13605 -72343,3205:113:3,53,-21.5,0,0,-0.13605 -72344,3205:113:4,53.5,-21.5,0,0,-0.13605 -72345,3205:114:3,54,-21.5,0,0,-0.13605 -72346,3205:114:4,54.5,-21.5,0,0,-0.13605 -72347,3205:215:3,55,-21.5,0,0,-0.13605 -72348,3205:215:4,55.5,-21.5,0,0,-0.13605 -72349,3205:216:3,56,-21.5,0,0,-0.13605 -72350,3205:216:4,56.5,-21.5,0,0,-0.13605 -72351,3205:217:3,57,-21.5,0,0,-0.13605 -72352,3205:217:4,57.5,-21.5,0,0,-0.13605 -72353,3205:218:3,58,-21.5,0,0,-0.13605 -72354,3205:218:4,58.5,-21.5,0,0,-0.13605 -72355,3205:219:3,59,-21.5,0,0,-0.13605 -72356,3205:219:4,59.5,-21.5,0,0,-0.13605 -72357,3206:110:3,60,-21.5,0,0,-0.13605 -72358,3206:110:4,60.5,-21.5,0,0,-0.13605 -72359,3206:111:3,61,-21.5,0,0,-0.13605 -72360,3206:111:4,61.5,-21.5,0,0,-0.13605 -72361,3206:112:3,62,-21.5,0,0,-0.13605 -72362,3206:112:4,62.5,-21.5,0,0,-0.13605 -72363,3206:113:3,63,-21.5,0,0,-0.13605 -72364,3206:113:4,63.5,-21.5,0,0,-0.13605 -72365,3206:114:3,64,-21.5,0,0,-0.13605 -72366,3206:114:4,64.5,-21.5,0,0,-0.13605 -72367,3206:215:3,65,-21.5,0,0,-0.13605 -72368,3206:215:4,65.5,-21.5,0,0,-0.13605 -72369,3206:216:3,66,-21.5,0,0,-0.13605 -72370,3206:216:4,66.5,-21.5,0,0,-0.13605 -72371,3206:217:3,67,-21.5,0,0,-0.13605 -72372,3206:217:4,67.5,-21.5,0,0,-0.13605 -72373,3206:218:3,68,-21.5,0,0,-0.13605 -72374,3206:218:4,68.5,-21.5,0,0,-0.13605 -72375,3206:219:3,69,-21.5,0,0,-0.13605 -72376,3206:219:4,69.5,-21.5,0,0,-0.13605 -72377,3207:110:3,70,-21.5,0,0,-0.13605 -72378,3207:110:4,70.5,-21.5,0,0,-0.13605 -72379,3207:111:3,71,-21.5,0,0,-0.13605 -72380,3207:111:4,71.5,-21.5,0,0,-0.13605 -72381,3207:112:3,72,-21.5,0,0,-0.13605 -72382,3207:112:4,72.5,-21.5,0,0,-0.13605 -72383,3207:113:4,73.5,-21.5,0,0,-0.13605 -72384,3207:114:3,74,-21.5,0,0,-0.13605 -72385,3207:114:4,74.5,-21.5,0,0,-0.13605 -72386,3207:215:3,75,-21.5,0,0,-0.13605 -72387,3207:215:4,75.5,-21.5,0,0,-0.13605 -72388,3207:216:3,76,-21.5,0,0,-0.13605 -72389,3207:216:4,76.5,-21.5,0,0,-0.13605 -72390,3207:217:3,77,-21.5,0,0,-0.13605 -72391,3207:217:4,77.5,-21.5,0,0,-0.13605 -72392,3207:218:3,78,-21.5,0,0,-0.13605 -72393,3207:218:4,78.5,-21.5,0,0,-0.13605 -72394,3207:219:3,79,-21.5,0,0,-0.13605 -72395,3207:219:4,79.5,-21.5,0,0,-0.13605 -72396,3208:110:3,80,-21.5,0,0,-0.13605 -72397,3208:110:4,80.5,-21.5,0,0,-0.13605 -72398,3208:111:3,81,-21.5,0,0,-0.13605 -72399,3208:111:4,81.5,-21.5,0,0,-0.13605 -72400,3208:112:3,82,-21.5,0,0,-0.13605 -72401,3208:112:4,82.5,-21.5,0,0,-0.13605 -72402,3208:113:3,83,-21.5,0,0,-0.13605 -72403,3208:113:4,83.5,-21.5,0,0,-0.13605 -72404,3208:114:3,84,-21.5,0,0,-0.13605 -72405,3208:114:4,84.5,-21.5,0,0,-0.13605 -72406,3208:215:3,85,-21.5,0,0,-0.13605 -72407,3208:215:4,85.5,-21.5,0,0,-0.13605 -72408,3208:216:3,86,-21.5,0,0,-0.13605 -72409,3208:216:4,86.5,-21.5,0,0,-0.13605 -72410,3208:217:3,87,-21.5,0,0,-0.13605 -72411,3208:217:4,87.5,-21.5,0,0,-0.13605 -72412,3208:218:3,88,-21.5,0,0,-0.13605 -72413,3208:218:4,88.5,-21.5,0,0,-0.13605 -72414,3208:219:3,89,-21.5,0,0,-0.13605 -72415,3208:219:4,89.5,-21.5,0,0,-0.13605 -72416,3209:110:3,90,-21.5,0,0,-0.13605 -72417,3209:110:4,90.5,-21.5,0,0,-0.13605 -72418,3209:111:3,91,-21.5,0,0,-0.13605 -72419,3209:111:4,91.5,-21.5,0,0,-0.13605 -72420,3209:112:3,92,-21.5,0,0,-0.13605 -72421,3209:112:4,92.5,-21.5,0,0,-0.13605 -72422,3209:113:3,93,-21.5,0,0,-0.13605 -72423,3209:113:4,93.5,-21.5,0,0,-0.13605 -72424,3209:114:3,94,-21.5,0,0,-0.13605 -72425,3209:114:4,94.5,-21.5,0,0,-0.13605 -72426,3209:215:3,95,-21.5,0,0,-0.13605 -72427,3209:215:4,95.5,-21.5,0,0,-0.13605 -72428,3209:216:3,96,-21.5,0,0,-0.13605 -72429,3209:216:4,96.5,-21.5,0,0,-0.13605 -72430,3209:217:3,97,-21.5,0,0,-0.13605 -72431,3209:217:4,97.5,-21.5,0,0,-0.13605 -72432,3209:218:3,98,-21.5,0,0,-0.13605 -72433,3209:218:4,98.5,-21.5,0,0,-0.13605 -72434,3209:219:3,99,-21.5,0,0,-0.13605 -72435,3209:219:4,99.5,-21.5,0,0,-0.13605 -72436,3210:110:3,100,-21.5,0,0,-0.13605 -72437,3210:110:4,100.5,-21.5,0,0,-0.13605 -72438,3210:111:3,101,-21.5,0,0,-0.13605 -72439,3210:111:4,101.5,-21.5,0,0,-0.13605 -72440,3210:112:3,102,-21.5,0,0,-0.13605 -72441,3210:112:4,102.5,-21.5,0,0,-0.13605 -72442,3210:113:3,103,-21.5,0,0,-0.13605 -72443,3210:113:4,103.5,-21.5,0,0,-0.13605 -72444,3210:114:3,104,-21.5,0,0,-0.13605 -72445,3210:114:4,104.5,-21.5,0,0,-0.13605 -72446,3210:215:3,105,-21.5,0,0,-0.13605 -72447,3210:215:4,105.5,-21.5,0,0,-0.13605 -72448,3210:216:3,106,-21.5,0,0,-0.13605 -72449,3210:216:4,106.5,-21.5,0,0,-0.13605 -72450,3210:217:3,107,-21.5,0,0,-0.13605 -72451,3210:217:4,107.5,-21.5,0,0,-0.13605 -72452,3210:218:3,108,-21.5,0,0,-0.13605 -72453,3210:218:4,108.5,-21.5,0,0,-0.13605 -72454,3210:219:3,109,-21.5,0,0,-0.13605 -72455,3210:219:4,109.5,-21.5,0,0,-0.13605 -72456,3211:110:3,110,-21.5,0,0,-0.13605 -72457,3211:110:4,110.5,-21.5,0,0,-0.13605 -72458,3211:111:3,111,-21.5,0,0,-0.13605 -72459,3211:111:4,111.5,-21.5,0,0,-0.13605 -72460,3211:112:3,112,-21.5,0,0,-0.13605 -72461,3211:112:4,112.5,-21.5,0,0,-0.13605 -72462,3211:113:3,113,-21.5,0,0,-0.13605 -72463,3211:113:4,113.5,-21.5,0,0,-0.13605 -72464,3211:114:3,114,-21.5,0,0,-0.13605 -72465,3215:114:3,154,-21.5,0,0,-0.140696 -72466,3215:114:4,154.5,-21.5,0,0,-0.136421 -72467,3215:215:3,155,-21.5,0,0,-0.13605 -72468,3215:215:4,155.5,-21.5,0,0,-0.13605 -72469,3215:216:3,156,-21.5,0,0,-0.13605 -72470,3215:216:4,156.5,-21.5,0,0,-0.13605 -72471,3215:217:3,157,-21.5,0,0,-0.13605 -72472,3215:217:4,157.5,-21.5,0,0,-0.13605 -72473,3215:218:3,158,-21.5,0,0,-0.13605 -72474,3215:218:4,158.5,-21.5,0,0,-0.13605 -72475,3215:219:3,159,-21.5,0,0,-0.13605 -72476,3215:219:4,159.5,-21.5,0,0,-0.13605 -72477,3216:110:3,160,-21.5,0,0,-0.13605 -72478,3216:110:4,160.5,-21.5,0,0,-0.13605 -72479,3216:111:3,161,-21.5,0,0,-0.13605 -72480,3216:111:4,161.5,-21.5,0,0,-0.13605 -72481,3216:112:3,162,-21.5,0,0,-0.13605 -72482,3216:112:4,162.5,-21.5,0,0,-0.13605 -72483,3216:113:3,163,-21.5,0,0,-0.13605 -72484,3216:113:4,163.5,-21.5,0,0,-0.13605 -72485,3216:114:3,164,-21.5,0,0,-0.13605 -72486,3216:114:4,164.5,-21.5,0,0,-0.13605 -72487,3216:215:3,165,-21.5,0,0,-0.13605 -72488,3216:215:4,165.5,-21.5,0,0,-0.13605 -72489,3216:216:3,166,-21.5,0,0,-0.13605 -72490,3216:216:4,166.5,-21.5,0,0,-0.13605 -72491,3216:217:3,167,-21.5,0,0,-0.13605 -72492,3216:217:4,167.5,-21.5,0,0,-0.13605 -72493,3216:218:3,168,-21.5,0,0,-0.13605 -72494,3216:218:4,168.5,-21.5,0,0,-0.13605 -72495,3216:219:3,169,-21.5,0,0,-0.13605 -72496,3216:219:4,169.5,-21.5,0,0,-0.13605 -72497,3217:110:3,170,-21.5,0,0,-0.13605 -72498,3217:110:4,170.5,-21.5,0,0,-0.13605 -72499,3217:111:3,171,-21.5,0,0,-0.13605 -72500,3217:111:4,171.5,-21.5,0,0,-0.13605 -72501,3217:112:3,172,-21.5,0,0,-0.13605 -72502,3217:112:4,172.5,-21.5,0,0,-0.13605 -72503,3217:113:3,173,-21.5,0,0,-0.13605 -72504,3217:113:4,173.5,-21.5,0,0,-0.13605 -72505,3217:114:3,174,-21.5,0,0,-0.13605 -72506,3217:114:4,174.5,-21.5,0,0,-0.13605 -72507,3217:215:3,175,-21.5,0,0,-0.13605 -72508,3217:215:4,175.5,-21.5,0,0,-0.13605 -72509,3217:216:3,176,-21.5,0,0,-0.13605 -72510,3217:216:4,176.5,-21.5,0,0,-0.13605 -72511,3217:217:3,177,-21.5,0,0,-0.13605 -72512,3217:217:4,177.5,-21.5,0,0,-0.13605 -72513,3217:218:3,178,-21.5,0,0,-0.13605 -72514,3217:218:4,178.5,-21.5,0,0,-0.13605 -72515,3217:219:3,179,-21.5,0,0,-0.13605 -72516,3217:219:4,179.5,-21.5,0,0,-0.13605 -72517,3218:110:3,180,-21.5,0,0,-0.13605 -72518,5218:110:1,-180,-21,0,0,-0.13605 -72519,5217:219:2,-179.5,-21,0,0,-0.13605 -72520,5217:219:1,-179,-21,0,0,-0.13605 -72521,5217:218:2,-178.5,-21,0,0,-0.13605 -72522,5217:218:1,-178,-21,0,0,-0.13605 -72523,5217:217:2,-177.5,-21,0,0,-0.13605 -72524,5217:217:1,-177,-21,0,0,-0.13605 -72525,5217:216:2,-176.5,-21,0,0,-0.13605 -72526,5217:216:1,-176,-21,0,0,-0.13605 -72527,5217:215:2,-175.5,-21,0,0,-0.13605 -72528,5217:215:1,-175,-21,0,0,-0.13605 -72529,5217:114:2,-174.5,-21,0,0,-0.13605 -72530,5217:114:1,-174,-21,0,0,-0.13605 -72531,5217:113:2,-173.5,-21,0,0,-0.13605 -72532,5217:113:1,-173,-21,0,0,-0.13605 -72533,5217:112:2,-172.5,-21,0,0,-0.13605 -72534,5217:112:1,-172,-21,0,0,-0.13605 -72535,5217:111:2,-171.5,-21,0,0,-0.13605 -72536,5217:111:1,-171,-21,0,0,-0.13605 -72537,5217:110:2,-170.5,-21,0,0,-0.13605 -72538,5217:110:1,-170,-21,0,0,-0.13605 -72539,5216:219:2,-169.5,-21,0,0,-0.13605 -72540,5216:219:1,-169,-21,0,0,-0.13605 -72541,5216:218:2,-168.5,-21,0,0,-0.13605 -72542,5216:218:1,-168,-21,0,0,-0.13605 -72543,5216:217:2,-167.5,-21,0,0,-0.13605 -72544,5216:217:1,-167,-21,0,0,-0.13605 -72545,5216:216:2,-166.5,-21,0,0,-0.13605 -72546,5216:216:1,-166,-21,0,0,-0.13605 -72547,5216:215:2,-165.5,-21,0,0,-0.13605 -72548,5216:215:1,-165,-21,0,0,-0.13605 -72549,5216:114:2,-164.5,-21,0,0,-0.13605 -72550,5216:114:1,-164,-21,0,0,-0.13605 -72551,5216:113:2,-163.5,-21,0,0,-0.13605 -72552,5216:113:1,-163,-21,0,0,-0.13605 -72553,5216:112:2,-162.5,-21,0,0,-0.13605 -72554,5216:112:1,-162,-21,0,0,-0.13605 -72555,5216:111:2,-161.5,-21,0,0,-0.13605 -72556,5216:111:1,-161,-21,0,0,-0.13605 -72557,5216:110:2,-160.5,-21,0,0,-0.13605 -72558,5216:110:1,-160,-21,0,0,-0.13605 -72559,5215:219:2,-159.5,-21,0,0,-0.13605 -72560,5215:219:1,-159,-21,0,0,-0.13605 -72561,5215:218:2,-158.5,-21,0,0,-0.13605 -72562,5215:218:1,-158,-21,0,0,-0.13605 -72563,5215:217:2,-157.5,-21,0,0,-0.13605 -72564,5215:217:1,-157,-21,0,0,-0.13605 -72565,5215:216:2,-156.5,-21,0,0,-0.13605 -72566,5215:216:1,-156,-21,0,0,-0.13605 -72567,5215:215:2,-155.5,-21,0,0,-0.13605 -72568,5215:215:1,-155,-21,0,0,-0.13605 -72569,5215:114:2,-154.5,-21,0,0,-0.13605 -72570,5215:114:1,-154,-21,0,0,-0.13605 -72571,5215:113:2,-153.5,-21,0,0,-0.13605 -72572,5215:113:1,-153,-21,0,0,-0.13605 -72573,5215:112:2,-152.5,-21,0,0,-0.13605 -72574,5215:112:1,-152,-21,0,0,-0.13605 -72575,5215:111:2,-151.5,-21,0,0,-0.13605 -72576,5215:111:1,-151,-21,0,0,-0.13605 -72577,5215:110:2,-150.5,-21,0,0,-0.13605 -72578,5215:110:1,-150,-21,0,0,-0.13605 -72579,5214:219:2,-149.5,-21,0,0,-0.13605 -72580,5214:219:1,-149,-21,0,0,-0.13605 -72581,5214:218:2,-148.5,-21,0,0,-0.13605 -72582,5214:218:1,-148,-21,0,0,-0.13605 -72583,5214:217:2,-147.5,-21,0,0,-0.13605 -72584,5214:217:1,-147,-21,0,0,-0.13605 -72585,5214:216:2,-146.5,-21,0,0,-0.13605 -72586,5214:216:1,-146,-21,0,0,-0.13605 -72587,5214:215:2,-145.5,-21,0,0,-0.13605 -72588,5214:215:1,-145,-21,0,0,-0.13605 -72589,5214:114:2,-144.5,-21,0,0,-0.13605 -72590,5214:114:1,-144,-21,0,0,-0.13605 -72591,5214:113:2,-143.5,-21,0,0,-0.13605 -72592,5214:113:1,-143,-21,0,0,-0.13605 -72593,5214:112:2,-142.5,-21,0,0,-0.13605 -72594,5214:112:1,-142,-21,0,0,-0.13605 -72595,5214:111:2,-141.5,-21,0,0,-0.13605 -72596,5214:111:1,-141,-21,0,0,-0.13605 -72597,5214:110:2,-140.5,-21,0,0,-0.13605 -72598,5214:110:1,-140,-21,0,0,-0.13605 -72599,5213:219:2,-139.5,-21,0,0,-0.13605 -72600,5213:219:1,-139,-21,0,0,-0.13605 -72601,5213:218:2,-138.5,-21,0,0,-0.13605 -72602,5213:218:1,-138,-21,0,0,-0.13605 -72603,5213:217:2,-137.5,-21,0,0,-0.13605 -72604,5213:217:1,-137,-21,0,0,-0.13605 -72605,5213:216:2,-136.5,-21,0,0,-0.13605 -72606,5213:216:1,-136,-21,0,0,-0.13605 -72607,5213:215:2,-135.5,-21,0,0,-0.13605 -72608,5213:215:1,-135,-21,0,0,-0.13605 -72609,5213:114:2,-134.5,-21,0,0,-0.13605 -72610,5213:114:1,-134,-21,0,0,-0.13605 -72611,5213:113:2,-133.5,-21,0,0,-0.13605 -72612,5213:113:1,-133,-21,0,0,-0.13605 -72613,5213:112:2,-132.5,-21,0,0,-0.13605 -72614,5213:112:1,-132,-21,0,0,-0.13605 -72615,5213:111:2,-131.5,-21,0,0,-0.13605 -72616,5213:111:1,-131,-21,0,0,-0.13605 -72617,5213:110:2,-130.5,-21,0,0,-0.13605 -72618,5213:110:1,-130,-21,0,0,-0.13605 -72619,5212:219:2,-129.5,-21,0,0,-0.13605 -72620,5212:219:1,-129,-21,0,0,-0.13605 -72621,5212:218:2,-128.5,-21,0,0,-0.13605 -72622,5212:218:1,-128,-21,0,0,-0.13605 -72623,5212:217:2,-127.5,-21,0,0,-0.13605 -72624,5212:217:1,-127,-21,0,0,-0.13605 -72625,5212:216:2,-126.5,-21,0,0,-0.13605 -72626,5212:216:1,-126,-21,0,0,-0.13605 -72627,5212:215:2,-125.5,-21,0,0,-0.13605 -72628,5212:215:1,-125,-21,0,0,-0.13605 -72629,5212:114:2,-124.5,-21,0,0,-0.13605 -72630,5212:114:1,-124,-21,0,0,-0.13605 -72631,5212:113:2,-123.5,-21,0,0,-0.13605 -72632,5212:113:1,-123,-21,0,0,-0.13605 -72633,5212:112:2,-122.5,-21,0,0,-0.13605 -72634,5212:112:1,-122,-21,0,0,-0.13605 -72635,5212:111:2,-121.5,-21,0,0,-0.13605 -72636,5212:111:1,-121,-21,0,0,-0.13605 -72637,5212:110:2,-120.5,-21,0,0,-0.13605 -72638,5212:110:1,-120,-21,0,0,-0.13605 -72639,5211:219:2,-119.5,-21,0,0,-0.13605 -72640,5211:219:1,-119,-21,0,0,-0.13605 -72641,5211:218:2,-118.5,-21,0,0,-0.13605 -72642,5211:218:1,-118,-21,0,0,-0.13605 -72643,5211:217:2,-117.5,-21,0,0,-0.13605 -72644,5211:217:1,-117,-21,0,0,-0.13605 -72645,5211:216:2,-116.5,-21,0,0,-0.13605 -72646,5211:216:1,-116,-21,0,0,-0.13605 -72647,5211:215:2,-115.5,-21,0,0,-0.13605 -72648,5211:215:1,-115,-21,0,0,-0.13605 -72649,5211:114:2,-114.5,-21,0,0,-0.13605 -72650,5211:114:1,-114,-21,0,0,-0.13605 -72651,5211:113:2,-113.5,-21,0,0,-0.13605 -72652,5211:113:1,-113,-21,0,0,-0.13605 -72653,5211:112:2,-112.5,-21,0,0,-0.13605 -72654,5211:112:1,-112,-21,0,0,-0.13605 -72655,5211:111:2,-111.5,-21,0,0,-0.13605 -72656,5211:111:1,-111,-21,0,0,-0.13605 -72657,5211:110:2,-110.5,-21,0,0,-0.13605 -72658,5211:110:1,-110,-21,0,0,-0.13605 -72659,5210:219:2,-109.5,-21,0,0,-0.13605 -72660,5210:219:1,-109,-21,0,0,-0.13605 -72661,5210:218:2,-108.5,-21,0,0,-0.13605 -72662,5210:218:1,-108,-21,0,0,-0.13605 -72663,5210:217:2,-107.5,-21,0,0,-0.13605 -72664,5210:217:1,-107,-21,0,0,-0.13605 -72665,5210:216:2,-106.5,-21,0,0,-0.13605 -72666,5210:216:1,-106,-21,0,0,-0.13605 -72667,5210:215:2,-105.5,-21,0,0,-0.13605 -72668,5210:215:1,-105,-21,0,0,-0.13605 -72669,5210:114:2,-104.5,-21,0,0,-0.13605 -72670,5210:114:1,-104,-21,0,0,-0.13605 -72671,5210:113:2,-103.5,-21,0,0,-0.13605 -72672,5210:113:1,-103,-21,0,0,-0.13605 -72673,5210:112:2,-102.5,-21,0,0,-0.13605 -72674,5210:112:1,-102,-21,0,0,-0.13605 -72675,5210:111:2,-101.5,-21,0,0,-0.13605 -72676,5210:111:1,-101,-21,0,0,-0.13605 -72677,5210:110:2,-100.5,-21,0,0,-0.13605 -72678,5210:110:1,-100,-21,0,0,-0.13605 -72679,5209:219:2,-99.5,-21,0,0,-0.13605 -72680,5209:219:1,-99,-21,0,0,-0.13605 -72681,5209:218:2,-98.5,-21,0,0,-0.13605 -72682,5209:218:1,-98,-21,0,0,-0.13605 -72683,5209:217:2,-97.5,-21,0,0,-0.13605 -72684,5209:217:1,-97,-21,0,0,-0.13605 -72685,5209:216:2,-96.5,-21,0,0,-0.13605 -72686,5209:216:1,-96,-21,0,0,-0.13605 -72687,5209:215:2,-95.5,-21,0,0,-0.13605 -72688,5209:215:1,-95,-21,0,0,-0.13605 -72689,5209:114:2,-94.5,-21,0,0,-0.13605 -72690,5209:114:1,-94,-21,0,0,-0.13605 -72691,5209:113:2,-93.5,-21,0,0,-0.13605 -72692,5209:113:1,-93,-21,0,0,-0.13605 -72693,5209:112:2,-92.5,-21,0,0,-0.13605 -72694,5209:112:1,-92,-21,0,0,-0.13605 -72695,5209:111:2,-91.5,-21,0,0,-0.13605 -72696,5209:111:1,-91,-21,0,0,-0.13605 -72697,5209:110:2,-90.5,-21,0,0,-0.13605 -72698,5209:110:1,-90,-21,0,0,-0.13605 -72699,5208:219:2,-89.5,-21,0,0,-0.13605 -72700,5208:219:1,-89,-21,0,0,-0.13605 -72701,5208:218:2,-88.5,-21,0,0,-0.13605 -72702,5208:218:1,-88,-21,0,0,-0.13605 -72703,5208:217:2,-87.5,-21,0,0,-0.13605 -72704,5208:217:1,-87,-21,0,0,-0.13605 -72705,5208:216:2,-86.5,-21,0,0,-0.13605 -72706,5208:216:1,-86,-21,0,0,-0.13605 -72707,5208:215:2,-85.5,-21,0,0,-0.13605 -72708,5208:215:1,-85,-21,0,0,-0.13605 -72709,5208:114:2,-84.5,-21,0,0,-0.13605 -72710,5208:114:1,-84,-21,0,0,-0.13605 -72711,5208:113:2,-83.5,-21,0,0,-0.13605 -72712,5208:113:1,-83,-21,0,0,-0.13605 -72713,5208:112:2,-82.5,-21,0,0,-0.13605 -72714,5208:112:1,-82,-21,0,0,-0.13605 -72715,5208:111:2,-81.5,-21,0,0,-0.13605 -72716,5208:111:1,-81,-21,0,0,-0.13605 -72717,5208:110:2,-80.5,-21,0,0,-0.13605 -72718,5208:110:1,-80,-21,0,0,-0.13605 -72719,5207:219:2,-79.5,-21,0,0,-0.13605 -72720,5207:219:1,-79,-21,0,0,-0.13605 -72721,5207:218:2,-78.5,-21,0,0,-0.13605 -72722,5207:218:1,-78,-21,0,0,-0.13605 -72723,5207:217:2,-77.5,-21,0,0,-0.13605 -72724,5207:217:1,-77,-21,0,0,-0.13605 -72725,5207:216:2,-76.5,-21,0,0,-0.13605 -72726,5207:216:1,-76,-21,0,0,-0.13605 -72727,5207:215:2,-75.5,-21,0,0,-0.13605 -72728,5207:215:1,-75,-21,0,0,-0.13605 -72729,5207:114:2,-74.5,-21,0,0,-0.13605 -72730,5207:114:1,-74,-21,0,0,-0.13605 -72731,5207:113:2,-73.5,-21,0,0,-0.13605 -72732,5207:113:1,-73,-21,0,0,-0.13605 -72733,5207:112:2,-72.5,-21,0,0,-0.13605 -72734,5207:112:1,-72,-21,0,0,-0.13605 -72735,5207:111:2,-71.5,-21,0,0,-0.13605 -72736,5207:111:1,-71,-21,0,0,-0.13605 -72737,5204:218:2,-48.5,-21,0,0,-0.156221 -72738,5204:218:1,-48,-21,0,0,-0.140337 -72739,5204:217:2,-47.5,-21,0,0,-0.140337 -72740,5204:217:1,-47,-21,0,0,-0.151429 -72741,5204:216:2,-46.5,-21,0,0,-0.140923 -72742,5204:216:1,-46,-21,0,0,-0.13605 -72743,5204:215:2,-45.5,-21,0,0,-0.13605 -72744,5204:215:1,-45,-21,0,0,-0.13605 -72745,5204:114:2,-44.5,-21,0,0,-0.13605 -72746,5204:114:1,-44,-21,0,0,-0.13605 -72747,5204:113:2,-43.5,-21,0,0,-0.13605 -72748,5204:113:1,-43,-21,0,0,-0.13605 -72749,5204:112:2,-42.5,-21,0,0,-0.13605 -72750,5204:112:1,-42,-21,0,0,-0.13605 -72751,5204:111:2,-41.5,-21,0,0,-0.13605 -72752,5204:111:1,-41,-21,0,0,-0.13605 -72753,5204:110:2,-40.5,-21,0,0,-0.13605 -72754,5204:110:1,-40,-21,0,0,-0.13605 -72755,5203:219:2,-39.5,-21,0,0,-0.13605 -72756,5203:219:1,-39,-21,0,0,-0.13605 -72757,5203:218:2,-38.5,-21,0,0,-0.13605 -72758,5203:218:1,-38,-21,0,0,-0.13605 -72759,5203:217:2,-37.5,-21,0,0,-0.13605 -72760,5203:217:1,-37,-21,0,0,-0.13605 -72761,5203:216:2,-36.5,-21,0,0,-0.13605 -72762,5203:216:1,-36,-21,0,0,-0.13605 -72763,5203:215:2,-35.5,-21,0,0,-0.13605 -72764,5203:215:1,-35,-21,0,0,-0.13605 -72765,5203:114:2,-34.5,-21,0,0,-0.13605 -72766,5203:114:1,-34,-21,0,0,-0.13605 -72767,5203:113:2,-33.5,-21,0,0,-0.13605 -72768,5203:113:1,-33,-21,0,0,-0.13605 -72769,5203:112:2,-32.5,-21,0,0,-0.13605 -72770,5203:112:1,-32,-21,0,0,-0.13605 -72771,5203:111:2,-31.5,-21,0,0,-0.13605 -72772,5203:111:1,-31,-21,0,0,-0.13605 -72773,5203:110:2,-30.5,-21,0,0,-0.13605 -72774,5203:110:1,-30,-21,0,0,-0.13605 -72775,5202:219:2,-29.5,-21,0,0,-0.13605 -72776,5202:219:1,-29,-21,0,0,-0.13605 -72777,5202:218:2,-28.5,-21,0,0,-0.13605 -72778,5202:218:1,-28,-21,0,0,-0.13605 -72779,5202:217:2,-27.5,-21,0,0,-0.13605 -72780,5202:217:1,-27,-21,0,0,-0.13605 -72781,5202:216:2,-26.5,-21,0,0,-0.13605 -72782,5202:216:1,-26,-21,0,0,-0.13605 -72783,5202:215:2,-25.5,-21,0,0,-0.13605 -72784,5202:215:1,-25,-21,0,0,-0.13605 -72785,5202:114:2,-24.5,-21,0,0,-0.13605 -72786,5202:114:1,-24,-21,0,0,-0.13605 -72787,5202:113:2,-23.5,-21,0,0,-0.13605 -72788,5202:113:1,-23,-21,0,0,-0.13605 -72789,5202:112:2,-22.5,-21,0,0,-0.13605 -72790,5202:112:1,-22,-21,0,0,-0.13605 -72791,5202:111:2,-21.5,-21,0,0,-0.13605 -72792,5202:111:1,-21,-21,0,0,-0.13605 -72793,5202:110:2,-20.5,-21,0,0,-0.13605 -72794,5202:110:1,-20,-21,0,0,-0.13605 -72795,5201:219:2,-19.5,-21,0,0,-0.13605 -72796,5201:219:1,-19,-21,0,0,-0.13605 -72797,5201:218:2,-18.5,-21,0,0,-0.13605 -72798,5201:218:1,-18,-21,0,0,-0.13605 -72799,5201:217:2,-17.5,-21,0,0,-0.13605 -72800,5201:217:1,-17,-21,0,0,-0.13605 -72801,5201:216:2,-16.5,-21,0,0,-0.13605 -72802,5201:216:1,-16,-21,0,0,-0.13605 -72803,5201:215:2,-15.5,-21,0,0,-0.13605 -72804,5201:215:1,-15,-21,0,0,-0.13605 -72805,5201:114:2,-14.5,-21,0,0,-0.13605 -72806,5201:114:1,-14,-21,0,0,-0.13605 -72807,5201:113:2,-13.5,-21,0,0,-0.13605 -72808,5201:113:1,-13,-21,0,0,-0.13605 -72809,5201:112:2,-12.5,-21,0,0,-0.13605 -72810,5201:112:1,-12,-21,0,0,-0.13605 -72811,5201:111:2,-11.5,-21,0,0,-0.13605 -72812,5201:111:1,-11,-21,0,0,-0.13605 -72813,5201:110:2,-10.5,-21,0,0,-0.13605 -72814,5201:110:1,-10,-21,0,0,-0.13605 -72815,5200:219:2,-9.5,-21,0,0,-0.13605 -72816,5200:219:1,-9,-21,0,0,-0.13605 -72817,5200:218:2,-8.5,-21,0,0,-0.13605 -72818,5200:218:1,-8,-21,0,0,-0.13605 -72819,5200:217:2,-7.5,-21,0,0,-0.13605 -72820,5200:217:1,-7,-21,0,0,-0.13605 -72821,5200:216:2,-6.5,-21,0,0,-0.13605 -72822,5200:216:1,-6,-21,0,0,-0.13605 -72823,5200:215:2,-5.5,-21,0,0,-0.13605 -72824,5200:215:1,-5,-21,0,0,-0.13605 -72825,5200:114:2,-4.5,-21,0,0,-0.13605 -72826,5200:114:1,-4,-21,0,0,-0.13605 -72827,5200:113:2,-3.5,-21,0,0,-0.13605 -72828,5200:113:1,-3,-21,0,0,-0.13605 -72829,5200:112:2,-2.5,-21,0,0,-0.13605 -72830,5200:112:1,-2,-21,0,0,-0.13605 -72831,5200:111:2,-1.5,-21,0,0,-0.13605 -72832,5200:111:1,-1,-21,0,0,-0.13605 -72833,5200:110:2,-0.5,-21,0,0,-0.13605 -72834,3200:110:2,0,-21,0,0,-0.13605 -72835,3200:110:2,0.5,-21,0,0,-0.13605 -72836,3200:111:1,1,-21,0,0,-0.13605 -72837,3200:111:2,1.5,-21,0,0,-0.13605 -72838,3200:112:1,2,-21,0,0,-0.13605 -72839,3200:112:2,2.5,-21,0,0,-0.13605 -72840,3200:113:1,3,-21,0,0,-0.13605 -72841,3200:113:2,3.5,-21,0,0,-0.13605 -72842,3200:114:1,4,-21,0,0,-0.13605 -72843,3200:114:2,4.5,-21,0,0,-0.13605 -72844,3200:215:1,5,-21,0,0,-0.13605 -72845,3200:215:2,5.5,-21,0,0,-0.13605 -72846,3200:216:1,6,-21,0,0,-0.13605 -72847,3200:216:2,6.5,-21,0,0,-0.13605 -72848,3200:217:1,7,-21,0,0,-0.13605 -72849,3200:217:2,7.5,-21,0,0,-0.13605 -72850,3200:218:1,8,-21,0,0,-0.13605 -72851,3200:218:2,8.5,-21,0,0,-0.13605 -72852,3200:219:1,9,-21,0,0,-0.13605 -72853,3200:219:2,9.5,-21,0,0,-0.13605 -72854,3201:110:1,10,-21,0,0,-0.13605 -72855,3201:110:2,10.5,-21,0,0,-0.13605 -72856,3201:111:1,11,-21,0,0,-0.13605 -72857,3201:111:2,11.5,-21,0,0,-0.13605 -72858,3201:112:1,12,-21,0,0,-0.13605 -72859,3201:112:2,12.5,-21,0,0,-0.13605 -72860,3201:113:1,13,-21,0,0,-0.13605 -72861,3201:113:2,13.5,-21,0,0,-0.13605 -72862,3201:114:1,14,-21,0,0,-0.13605 -72863,3201:114:2,14.5,-21,0,0,-0.13605 -72864,3201:215:1,15,-21,0,0,-0.13605 -72865,3203:112:2,32.5,-21,0,0,-0.14544 -72866,3203:113:1,33,-21,0,0,-0.146742 -72867,3203:113:2,33.5,-21,0,0,-0.15018 -72868,3203:114:1,34,-21,0,0,-0.14834 -72869,3203:114:2,34.5,-21,0,0,-0.146624 -72870,3203:215:1,35,-21,0,0,-0.145656 -72871,3203:215:2,35.5,-21,0,0,-0.14013 -72872,3203:216:1,36,-21,0,0,-0.13605 -72873,3203:216:2,36.5,-21,0,0,-0.13605 -72874,3203:217:1,37,-21,0,0,-0.13605 -72875,3203:217:2,37.5,-21,0,0,-0.13605 -72876,3203:218:1,38,-21,0,0,-0.13605 -72877,3203:218:2,38.5,-21,0,0,-0.13605 -72878,3203:219:1,39,-21,0,0,-0.13605 -72879,3203:219:2,39.5,-21,0,0,-0.13605 -72880,3204:110:1,40,-21,0,0,-0.13605 -72881,3204:110:2,40.5,-21,0,0,-0.13605 -72882,3204:111:1,41,-21,0,0,-0.13605 -72883,3204:111:2,41.5,-21,0,0,-0.13605 -72884,3204:112:1,42,-21,0,0,-0.13605 -72885,3204:112:2,42.5,-21,0,0,-0.13605 -72886,3204:113:1,43,-21,0,0,-0.13605 -72887,3204:113:2,43.5,-21,0,0,-0.13605 -72888,3204:114:1,44,-21,0,0,-0.13605 -72889,3204:114:2,44.5,-21,0,0,-0.13605 -72890,3204:215:1,45,-21,0,0,-0.13605 -72891,3204:215:2,45.5,-21,0,0,-0.13605 -72892,3204:216:1,46,-21,0,0,-0.13605 -72893,3204:216:2,46.5,-21,0,0,-0.13605 -72894,3204:217:1,47,-21,0,0,-0.13605 -72895,3204:217:2,47.5,-21,0,0,-0.13605 -72896,3204:218:1,48,-21,0,0,-0.13605 -72897,3204:218:2,48.5,-21,0,0,-0.13605 -72898,3204:219:1,49,-21,0,0,-0.13605 -72899,3204:219:2,49.5,-21,0,0,-0.13605 -72900,3205:110:1,50,-21,0,0,-0.13605 -72901,3205:110:2,50.5,-21,0,0,-0.13605 -72902,3205:111:1,51,-21,0,0,-0.13605 -72903,3205:111:2,51.5,-21,0,0,-0.13605 -72904,3205:112:1,52,-21,0,0,-0.13605 -72905,3205:112:2,52.5,-21,0,0,-0.13605 -72906,3205:113:1,53,-21,0,0,-0.13605 -72907,3205:113:2,53.5,-21,0,0,-0.13605 -72908,3205:114:1,54,-21,0,0,-0.13605 -72909,3205:114:2,54.5,-21,0,0,-0.13605 -72910,3205:215:1,55,-21,0,0,-0.13605 -72911,3205:215:2,55.5,-21,0,0,-0.13605 -72912,3205:216:1,56,-21,0,0,-0.13605 -72913,3205:216:2,56.5,-21,0,0,-0.13605 -72914,3205:217:1,57,-21,0,0,-0.13605 -72915,3205:217:2,57.5,-21,0,0,-0.13605 -72916,3205:218:1,58,-21,0,0,-0.13605 -72917,3205:218:2,58.5,-21,0,0,-0.13605 -72918,3205:219:1,59,-21,0,0,-0.13605 -72919,3205:219:2,59.5,-21,0,0,-0.13605 -72920,3206:110:1,60,-21,0,0,-0.13605 -72921,3206:110:2,60.5,-21,0,0,-0.13605 -72922,3206:111:1,61,-21,0,0,-0.13605 -72923,3206:111:2,61.5,-21,0,0,-0.13605 -72924,3206:112:1,62,-21,0,0,-0.13605 -72925,3206:112:2,62.5,-21,0,0,-0.13605 -72926,3206:113:1,63,-21,0,0,-0.13605 -72927,3206:113:2,63.5,-21,0,0,-0.13605 -72928,3206:114:1,64,-21,0,0,-0.13605 -72929,3206:114:2,64.5,-21,0,0,-0.13605 -72930,3206:215:1,65,-21,0,0,-0.13605 -72931,3206:215:2,65.5,-21,0,0,-0.13605 -72932,3206:216:1,66,-21,0,0,-0.13605 -72933,3206:216:2,66.5,-21,0,0,-0.13605 -72934,3206:217:1,67,-21,0,0,-0.13605 -72935,3206:217:2,67.5,-21,0,0,-0.13605 -72936,3206:218:1,68,-21,0,0,-0.13605 -72937,3206:218:2,68.5,-21,0,0,-0.13605 -72938,3206:219:1,69,-21,0,0,-0.13605 -72939,3206:219:2,69.5,-21,0,0,-0.13605 -72940,3207:110:1,70,-21,0,0,-0.13605 -72941,3207:110:2,70.5,-21,0,0,-0.13605 -72942,3207:111:1,71,-21,0,0,-0.13605 -72943,3207:111:2,71.5,-21,0,0,-0.13605 -72944,3207:112:1,72,-21,0,0,-0.13605 -72945,3207:112:2,72.5,-21,0,0,-0.13605 -72946,3207:113:2,73.5,-21,0,0,-0.13605 -72947,3207:114:1,74,-21,0,0,-0.13605 -72948,3207:114:2,74.5,-21,0,0,-0.13605 -72949,3207:215:1,75,-21,0,0,-0.13605 -72950,3207:215:2,75.5,-21,0,0,-0.13605 -72951,3207:216:1,76,-21,0,0,-0.13605 -72952,3207:216:2,76.5,-21,0,0,-0.13605 -72953,3207:217:1,77,-21,0,0,-0.13605 -72954,3207:217:2,77.5,-21,0,0,-0.13605 -72955,3207:218:1,78,-21,0,0,-0.13605 -72956,3207:218:2,78.5,-21,0,0,-0.13605 -72957,3207:219:1,79,-21,0,0,-0.13605 -72958,3207:219:2,79.5,-21,0,0,-0.13605 -72959,3208:110:1,80,-21,0,0,-0.13605 -72960,3208:110:2,80.5,-21,0,0,-0.13605 -72961,3208:111:1,81,-21,0,0,-0.13605 -72962,3208:111:2,81.5,-21,0,0,-0.13605 -72963,3208:112:1,82,-21,0,0,-0.13605 -72964,3208:112:2,82.5,-21,0,0,-0.13605 -72965,3208:113:1,83,-21,0,0,-0.13605 -72966,3208:113:2,83.5,-21,0,0,-0.13605 -72967,3208:114:1,84,-21,0,0,-0.13605 -72968,3208:114:2,84.5,-21,0,0,-0.13605 -72969,3208:215:1,85,-21,0,0,-0.13605 -72970,3208:215:2,85.5,-21,0,0,-0.13605 -72971,3208:216:1,86,-21,0,0,-0.13605 -72972,3208:216:2,86.5,-21,0,0,-0.13605 -72973,3208:217:1,87,-21,0,0,-0.13605 -72974,3208:217:2,87.5,-21,0,0,-0.13605 -72975,3208:218:1,88,-21,0,0,-0.13605 -72976,3208:218:2,88.5,-21,0,0,-0.13605 -72977,3208:219:1,89,-21,0,0,-0.13605 -72978,3208:219:2,89.5,-21,0,0,-0.13605 -72979,3209:110:1,90,-21,0,0,-0.13605 -72980,3209:110:2,90.5,-21,0,0,-0.13605 -72981,3209:111:1,91,-21,0,0,-0.13605 -72982,3209:111:2,91.5,-21,0,0,-0.13605 -72983,3209:112:1,92,-21,0,0,-0.13605 -72984,3209:112:2,92.5,-21,0,0,-0.13605 -72985,3209:113:1,93,-21,0,0,-0.13605 -72986,3209:113:2,93.5,-21,0,0,-0.13605 -72987,3209:114:1,94,-21,0,0,-0.13605 -72988,3209:114:2,94.5,-21,0,0,-0.13605 -72989,3209:215:1,95,-21,0,0,-0.13605 -72990,3209:215:2,95.5,-21,0,0,-0.13605 -72991,3209:216:1,96,-21,0,0,-0.13605 -72992,3209:216:2,96.5,-21,0,0,-0.13605 -72993,3209:217:1,97,-21,0,0,-0.13605 -72994,3209:217:2,97.5,-21,0,0,-0.13605 -72995,3209:218:1,98,-21,0,0,-0.13605 -72996,3209:218:2,98.5,-21,0,0,-0.13605 -72997,3209:219:1,99,-21,0,0,-0.13605 -72998,3209:219:2,99.5,-21,0,0,-0.13605 -72999,3210:110:1,100,-21,0,0,-0.13605 -73000,3210:110:2,100.5,-21,0,0,-0.13605 -73001,3210:111:1,101,-21,0,0,-0.13605 -73002,3210:111:2,101.5,-21,0,0,-0.13605 -73003,3210:112:1,102,-21,0,0,-0.13605 -73004,3210:112:2,102.5,-21,0,0,-0.13605 -73005,3210:113:1,103,-21,0,0,-0.13605 -73006,3210:113:2,103.5,-21,0,0,-0.13605 -73007,3210:114:1,104,-21,0,0,-0.13605 -73008,3210:114:2,104.5,-21,0,0,-0.13605 -73009,3210:215:1,105,-21,0,0,-0.13605 -73010,3210:215:2,105.5,-21,0,0,-0.13605 -73011,3210:216:1,106,-21,0,0,-0.13605 -73012,3210:216:2,106.5,-21,0,0,-0.13605 -73013,3210:217:1,107,-21,0,0,-0.13605 -73014,3210:217:2,107.5,-21,0,0,-0.13605 -73015,3210:218:1,108,-21,0,0,-0.13605 -73016,3210:218:2,108.5,-21,0,0,-0.13605 -73017,3210:219:1,109,-21,0,0,-0.13605 -73018,3210:219:2,109.5,-21,0,0,-0.13605 -73019,3211:110:1,110,-21,0,0,-0.13605 -73020,3211:110:2,110.5,-21,0,0,-0.13605 -73021,3211:111:1,111,-21,0,0,-0.13605 -73022,3211:111:2,111.5,-21,0,0,-0.13605 -73023,3211:112:1,112,-21,0,0,-0.13605 -73024,3211:112:2,112.5,-21,0,0,-0.13605 -73025,3211:113:1,113,-21,0,0,-0.13605 -73026,3211:113:2,113.5,-21,0,0,-0.13605 -73027,3211:114:1,114,-21,0,0,-0.13605 -73028,3215:113:2,153.5,-21,0,0,-0.145577 -73029,3215:114:1,154,-21,0,0,-0.144461 -73030,3215:114:2,154.5,-21,0,0,-0.137538 -73031,3215:215:1,155,-21,0,0,-0.13605 -73032,3215:215:2,155.5,-21,0,0,-0.13605 -73033,3215:216:1,156,-21,0,0,-0.13605 -73034,3215:216:2,156.5,-21,0,0,-0.13605 -73035,3215:217:1,157,-21,0,0,-0.13605 -73036,3215:217:2,157.5,-21,0,0,-0.13605 -73037,3215:218:1,158,-21,0,0,-0.13605 -73038,3215:218:2,158.5,-21,0,0,-0.13605 -73039,3215:219:1,159,-21,0,0,-0.13605 -73040,3215:219:2,159.5,-21,0,0,-0.13605 -73041,3216:110:1,160,-21,0,0,-0.13605 -73042,3216:110:2,160.5,-21,0,0,-0.13605 -73043,3216:111:1,161,-21,0,0,-0.13605 -73044,3216:111:2,161.5,-21,0,0,-0.13605 -73045,3216:112:1,162,-21,0,0,-0.13605 -73046,3216:112:2,162.5,-21,0,0,-0.13605 -73047,3216:113:1,163,-21,0,0,-0.13605 -73048,3216:113:2,163.5,-21,0,0,-0.13605 -73049,3216:114:1,164,-21,0,0,-0.13605 -73050,3216:114:2,164.5,-21,0,0,-0.13605 -73051,3216:215:1,165,-21,0,0,-0.13605 -73052,3216:215:2,165.5,-21,0,0,-0.13605 -73053,3216:216:1,166,-21,0,0,-0.13605 -73054,3216:216:2,166.5,-21,0,0,-0.13605 -73055,3216:217:1,167,-21,0,0,-0.13605 -73056,3216:217:2,167.5,-21,0,0,-0.13605 -73057,3216:218:1,168,-21,0,0,-0.13605 -73058,3216:218:2,168.5,-21,0,0,-0.13605 -73059,3216:219:1,169,-21,0,0,-0.13605 -73060,3216:219:2,169.5,-21,0,0,-0.13605 -73061,3217:110:1,170,-21,0,0,-0.13605 -73062,3217:110:2,170.5,-21,0,0,-0.13605 -73063,3217:111:1,171,-21,0,0,-0.13605 -73064,3217:111:2,171.5,-21,0,0,-0.13605 -73065,3217:112:1,172,-21,0,0,-0.13605 -73066,3217:112:2,172.5,-21,0,0,-0.13605 -73067,3217:113:1,173,-21,0,0,-0.13605 -73068,3217:113:2,173.5,-21,0,0,-0.13605 -73069,3217:114:1,174,-21,0,0,-0.13605 -73070,3217:114:2,174.5,-21,0,0,-0.13605 -73071,3217:215:1,175,-21,0,0,-0.13605 -73072,3217:215:2,175.5,-21,0,0,-0.13605 -73073,3217:216:1,176,-21,0,0,-0.13605 -73074,3217:216:2,176.5,-21,0,0,-0.13605 -73075,3217:217:1,177,-21,0,0,-0.13605 -73076,3217:217:2,177.5,-21,0,0,-0.13605 -73077,3217:218:1,178,-21,0,0,-0.13605 -73078,3217:218:2,178.5,-21,0,0,-0.13605 -73079,3217:219:1,179,-21,0,0,-0.13605 -73080,3217:219:2,179.5,-21,0,0,-0.13605 -73081,3218:110:1,180,-21,0,0,-0.13605 -73082,5218:100:3,-180,-20.5,0,0,-0.13605 -73083,5217:209:4,-179.5,-20.5,0,0,-0.13605 -73084,5217:209:3,-179,-20.5,0,0,-0.13605 -73085,5217:208:4,-178.5,-20.5,0,0,-0.13605 -73086,5217:208:3,-178,-20.5,0,0,-0.13605 -73087,5217:207:4,-177.5,-20.5,0,0,-0.13605 -73088,5217:207:3,-177,-20.5,0,0,-0.13605 -73089,5217:206:4,-176.5,-20.5,0,0,-0.13605 -73090,5217:206:3,-176,-20.5,0,0,-0.13605 -73091,5217:205:4,-175.5,-20.5,0,0,-0.13605 -73092,5217:205:3,-175,-20.5,0,0,-0.13605 -73093,5217:104:4,-174.5,-20.5,0,0,-0.13605 -73094,5217:104:3,-174,-20.5,0,0,-0.13605 -73095,5217:103:4,-173.5,-20.5,0,0,-0.13605 -73096,5217:103:3,-173,-20.5,0,0,-0.13605 -73097,5217:102:4,-172.5,-20.5,0,0,-0.13605 -73098,5217:102:3,-172,-20.5,0,0,-0.13605 -73099,5217:101:4,-171.5,-20.5,0,0,-0.13605 -73100,5217:101:3,-171,-20.5,0,0,-0.13605 -73101,5217:100:4,-170.5,-20.5,0,0,-0.13605 -73102,5217:100:3,-170,-20.5,0,0,-0.13605 -73103,5216:209:4,-169.5,-20.5,0,0,-0.13605 -73104,5216:209:3,-169,-20.5,0,0,-0.13605 -73105,5216:208:4,-168.5,-20.5,0,0,-0.13605 -73106,5216:208:3,-168,-20.5,0,0,-0.13605 -73107,5216:207:4,-167.5,-20.5,0,0,-0.13605 -73108,5216:207:3,-167,-20.5,0,0,-0.13605 -73109,5216:206:4,-166.5,-20.5,0,0,-0.13605 -73110,5216:206:3,-166,-20.5,0,0,-0.13605 -73111,5216:205:4,-165.5,-20.5,0,0,-0.13605 -73112,5216:205:3,-165,-20.5,0,0,-0.13605 -73113,5216:104:4,-164.5,-20.5,0,0,-0.13605 -73114,5216:104:3,-164,-20.5,0,0,-0.13605 -73115,5216:103:4,-163.5,-20.5,0,0,-0.13605 -73116,5216:103:3,-163,-20.5,0,0,-0.13605 -73117,5216:102:4,-162.5,-20.5,0,0,-0.13605 -73118,5216:102:3,-162,-20.5,0,0,-0.13605 -73119,5216:101:4,-161.5,-20.5,0,0,-0.13605 -73120,5216:101:3,-161,-20.5,0,0,-0.13605 -73121,5216:100:4,-160.5,-20.5,0,0,-0.13605 -73122,5216:100:3,-160,-20.5,0,0,-0.13605 -73123,5215:209:4,-159.5,-20.5,0,0,-0.13605 -73124,5215:209:3,-159,-20.5,0,0,-0.13605 -73125,5215:208:4,-158.5,-20.5,0,0,-0.13605 -73126,5215:208:3,-158,-20.5,0,0,-0.13605 -73127,5215:207:4,-157.5,-20.5,0,0,-0.13605 -73128,5215:207:3,-157,-20.5,0,0,-0.13605 -73129,5215:206:4,-156.5,-20.5,0,0,-0.13605 -73130,5215:206:3,-156,-20.5,0,0,-0.13605 -73131,5215:205:4,-155.5,-20.5,0,0,-0.13605 -73132,5215:205:3,-155,-20.5,0,0,-0.13605 -73133,5215:104:4,-154.5,-20.5,0,0,-0.13605 -73134,5215:104:3,-154,-20.5,0,0,-0.13605 -73135,5215:103:4,-153.5,-20.5,0,0,-0.13605 -73136,5215:103:3,-153,-20.5,0,0,-0.13605 -73137,5215:102:4,-152.5,-20.5,0,0,-0.13605 -73138,5215:102:3,-152,-20.5,0,0,-0.13605 -73139,5215:101:4,-151.5,-20.5,0,0,-0.13605 -73140,5215:101:3,-151,-20.5,0,0,-0.13605 -73141,5215:100:4,-150.5,-20.5,0,0,-0.13605 -73142,5215:100:3,-150,-20.5,0,0,-0.13605 -73143,5214:209:4,-149.5,-20.5,0,0,-0.13605 -73144,5214:209:3,-149,-20.5,0,0,-0.13605 -73145,5214:208:4,-148.5,-20.5,0,0,-0.13605 -73146,5214:208:3,-148,-20.5,0,0,-0.13605 -73147,5214:207:4,-147.5,-20.5,0,0,-0.13605 -73148,5214:207:3,-147,-20.5,0,0,-0.13605 -73149,5214:206:4,-146.5,-20.5,0,0,-0.13605 -73150,5214:206:3,-146,-20.5,0,0,-0.13605 -73151,5214:205:4,-145.5,-20.5,0,0,-0.13605 -73152,5214:205:3,-145,-20.5,0,0,-0.13605 -73153,5214:104:4,-144.5,-20.5,0,0,-0.13605 -73154,5214:104:3,-144,-20.5,0,0,-0.13605 -73155,5214:103:4,-143.5,-20.5,0,0,-0.13605 -73156,5214:103:3,-143,-20.5,0,0,-0.13605 -73157,5214:102:4,-142.5,-20.5,0,0,-0.13605 -73158,5214:102:3,-142,-20.5,0,0,-0.13605 -73159,5214:101:4,-141.5,-20.5,0,0,-0.13605 -73160,5214:101:3,-141,-20.5,0,0,-0.13605 -73161,5214:100:4,-140.5,-20.5,0,0,-0.13605 -73162,5214:100:3,-140,-20.5,0,0,-0.13605 -73163,5213:209:4,-139.5,-20.5,0,0,-0.13605 -73164,5213:209:3,-139,-20.5,0,0,-0.13605 -73165,5213:208:4,-138.5,-20.5,0,0,-0.13605 -73166,5213:208:3,-138,-20.5,0,0,-0.13605 -73167,5213:207:4,-137.5,-20.5,0,0,-0.13605 -73168,5213:207:3,-137,-20.5,0,0,-0.13605 -73169,5213:206:4,-136.5,-20.5,0,0,-0.13605 -73170,5213:206:3,-136,-20.5,0,0,-0.13605 -73171,5213:205:4,-135.5,-20.5,0,0,-0.13605 -73172,5213:205:3,-135,-20.5,0,0,-0.13605 -73173,5213:104:4,-134.5,-20.5,0,0,-0.13605 -73174,5213:104:3,-134,-20.5,0,0,-0.13605 -73175,5213:103:4,-133.5,-20.5,0,0,-0.13605 -73176,5213:103:3,-133,-20.5,0,0,-0.13605 -73177,5213:102:4,-132.5,-20.5,0,0,-0.13605 -73178,5213:102:3,-132,-20.5,0,0,-0.13605 -73179,5213:101:4,-131.5,-20.5,0,0,-0.13605 -73180,5213:101:3,-131,-20.5,0,0,-0.13605 -73181,5213:100:4,-130.5,-20.5,0,0,-0.13605 -73182,5213:100:3,-130,-20.5,0,0,-0.13605 -73183,5212:209:4,-129.5,-20.5,0,0,-0.13605 -73184,5212:209:3,-129,-20.5,0,0,-0.13605 -73185,5212:208:4,-128.5,-20.5,0,0,-0.13605 -73186,5212:208:3,-128,-20.5,0,0,-0.13605 -73187,5212:207:4,-127.5,-20.5,0,0,-0.13605 -73188,5212:207:3,-127,-20.5,0,0,-0.13605 -73189,5212:206:4,-126.5,-20.5,0,0,-0.13605 -73190,5212:206:3,-126,-20.5,0,0,-0.13605 -73191,5212:205:4,-125.5,-20.5,0,0,-0.13605 -73192,5212:205:3,-125,-20.5,0,0,-0.13605 -73193,5212:104:4,-124.5,-20.5,0,0,-0.13605 -73194,5212:104:3,-124,-20.5,0,0,-0.13605 -73195,5212:103:4,-123.5,-20.5,0,0,-0.13605 -73196,5212:103:3,-123,-20.5,0,0,-0.13605 -73197,5212:102:4,-122.5,-20.5,0,0,-0.13605 -73198,5212:102:3,-122,-20.5,0,0,-0.13605 -73199,5212:101:4,-121.5,-20.5,0,0,-0.13605 -73200,5212:101:3,-121,-20.5,0,0,-0.13605 -73201,5212:100:4,-120.5,-20.5,0,0,-0.13605 -73202,5212:100:3,-120,-20.5,0,0,-0.13605 -73203,5211:209:4,-119.5,-20.5,0,0,-0.13605 -73204,5211:209:3,-119,-20.5,0,0,-0.13605 -73205,5211:208:4,-118.5,-20.5,0,0,-0.13605 -73206,5211:208:3,-118,-20.5,0,0,-0.13605 -73207,5211:207:4,-117.5,-20.5,0,0,-0.13605 -73208,5211:207:3,-117,-20.5,0,0,-0.13605 -73209,5211:206:4,-116.5,-20.5,0,0,-0.13605 -73210,5211:206:3,-116,-20.5,0,0,-0.13605 -73211,5211:205:4,-115.5,-20.5,0,0,-0.13605 -73212,5211:205:3,-115,-20.5,0,0,-0.13605 -73213,5211:104:4,-114.5,-20.5,0,0,-0.13605 -73214,5211:104:3,-114,-20.5,0,0,-0.13605 -73215,5211:103:4,-113.5,-20.5,0,0,-0.13605 -73216,5211:103:3,-113,-20.5,0,0,-0.13605 -73217,5211:102:4,-112.5,-20.5,0,0,-0.13605 -73218,5211:102:3,-112,-20.5,0,0,-0.13605 -73219,5211:101:4,-111.5,-20.5,0,0,-0.13605 -73220,5211:101:3,-111,-20.5,0,0,-0.13605 -73221,5211:100:4,-110.5,-20.5,0,0,-0.13605 -73222,5211:100:3,-110,-20.5,0,0,-0.13605 -73223,5210:209:4,-109.5,-20.5,0,0,-0.13605 -73224,5210:209:3,-109,-20.5,0,0,-0.13605 -73225,5210:208:4,-108.5,-20.5,0,0,-0.13605 -73226,5210:208:3,-108,-20.5,0,0,-0.13605 -73227,5210:207:4,-107.5,-20.5,0,0,-0.13605 -73228,5210:207:3,-107,-20.5,0,0,-0.13605 -73229,5210:206:4,-106.5,-20.5,0,0,-0.13605 -73230,5210:206:3,-106,-20.5,0,0,-0.13605 -73231,5210:205:4,-105.5,-20.5,0,0,-0.13605 -73232,5210:205:3,-105,-20.5,0,0,-0.13605 -73233,5210:104:4,-104.5,-20.5,0,0,-0.13605 -73234,5210:104:3,-104,-20.5,0,0,-0.13605 -73235,5210:103:4,-103.5,-20.5,0,0,-0.13605 -73236,5210:103:3,-103,-20.5,0,0,-0.13605 -73237,5210:102:4,-102.5,-20.5,0,0,-0.13605 -73238,5210:102:3,-102,-20.5,0,0,-0.13605 -73239,5210:101:4,-101.5,-20.5,0,0,-0.13605 -73240,5210:101:3,-101,-20.5,0,0,-0.13605 -73241,5210:100:4,-100.5,-20.5,0,0,-0.13605 -73242,5210:100:3,-100,-20.5,0,0,-0.13605 -73243,5209:209:4,-99.5,-20.5,0,0,-0.13605 -73244,5209:209:3,-99,-20.5,0,0,-0.13605 -73245,5209:208:4,-98.5,-20.5,0,0,-0.13605 -73246,5209:208:3,-98,-20.5,0,0,-0.13605 -73247,5209:207:4,-97.5,-20.5,0,0,-0.13605 -73248,5209:207:3,-97,-20.5,0,0,-0.13605 -73249,5209:206:4,-96.5,-20.5,0,0,-0.13605 -73250,5209:206:3,-96,-20.5,0,0,-0.13605 -73251,5209:205:4,-95.5,-20.5,0,0,-0.13605 -73252,5209:205:3,-95,-20.5,0,0,-0.13605 -73253,5209:104:4,-94.5,-20.5,0,0,-0.13605 -73254,5209:104:3,-94,-20.5,0,0,-0.13605 -73255,5209:103:4,-93.5,-20.5,0,0,-0.13605 -73256,5209:103:3,-93,-20.5,0,0,-0.13605 -73257,5209:102:4,-92.5,-20.5,0,0,-0.13605 -73258,5209:102:3,-92,-20.5,0,0,-0.13605 -73259,5209:101:4,-91.5,-20.5,0,0,-0.13605 -73260,5209:101:3,-91,-20.5,0,0,-0.13605 -73261,5209:100:4,-90.5,-20.5,0,0,-0.13605 -73262,5209:100:3,-90,-20.5,0,0,-0.13605 -73263,5208:209:4,-89.5,-20.5,0,0,-0.13605 -73264,5208:209:3,-89,-20.5,0,0,-0.13605 -73265,5208:208:4,-88.5,-20.5,0,0,-0.13605 -73266,5208:208:3,-88,-20.5,0,0,-0.13605 -73267,5208:207:4,-87.5,-20.5,0,0,-0.13605 -73268,5208:207:3,-87,-20.5,0,0,-0.13605 -73269,5208:206:4,-86.5,-20.5,0,0,-0.13605 -73270,5208:206:3,-86,-20.5,0,0,-0.13605 -73271,5208:205:4,-85.5,-20.5,0,0,-0.13605 -73272,5208:205:3,-85,-20.5,0,0,-0.13605 -73273,5208:104:4,-84.5,-20.5,0,0,-0.13605 -73274,5208:104:3,-84,-20.5,0,0,-0.13605 -73275,5208:103:4,-83.5,-20.5,0,0,-0.13605 -73276,5208:103:3,-83,-20.5,0,0,-0.13605 -73277,5208:102:4,-82.5,-20.5,0,0,-0.13605 -73278,5208:102:3,-82,-20.5,0,0,-0.13605 -73279,5208:101:4,-81.5,-20.5,0,0,-0.13605 -73280,5208:101:3,-81,-20.5,0,0,-0.13605 -73281,5208:100:4,-80.5,-20.5,0,0,-0.13605 -73282,5208:100:3,-80,-20.5,0,0,-0.13605 -73283,5207:209:4,-79.5,-20.5,0,0,-0.13605 -73284,5207:209:3,-79,-20.5,0,0,-0.13605 -73285,5207:208:4,-78.5,-20.5,0,0,-0.13605 -73286,5207:208:3,-78,-20.5,0,0,-0.13605 -73287,5207:207:4,-77.5,-20.5,0,0,-0.13605 -73288,5207:207:3,-77,-20.5,0,0,-0.13605 -73289,5207:206:4,-76.5,-20.5,0,0,-0.13605 -73290,5207:206:3,-76,-20.5,0,0,-0.13605 -73291,5207:205:4,-75.5,-20.5,0,0,-0.13605 -73292,5207:205:3,-75,-20.5,0,0,-0.13605 -73293,5207:104:4,-74.5,-20.5,0,0,-0.13605 -73294,5207:104:3,-74,-20.5,0,0,-0.13605 -73295,5207:103:4,-73.5,-20.5,0,0,-0.13605 -73296,5207:103:3,-73,-20.5,0,0,-0.13605 -73297,5207:102:4,-72.5,-20.5,0,0,-0.13605 -73298,5207:102:3,-72,-20.5,0,0,-0.13605 -73299,5207:101:4,-71.5,-20.5,0,0,-0.13605 -73300,5207:101:3,-71,-20.5,0,0,-0.13605 -73301,5204:208:4,-48.5,-20.5,0,0,-0.153688 -73302,5204:208:3,-48,-20.5,0,0,-0.142296 -73303,5204:207:4,-47.5,-20.5,0,0,-0.138918 -73304,5204:207:3,-47,-20.5,0,0,-0.150752 -73305,5204:206:4,-46.5,-20.5,0,0,-0.152626 -73306,5204:206:3,-46,-20.5,0,0,-0.144539 -73307,5204:205:4,-45.5,-20.5,0,0,-0.137588 -73308,5204:205:3,-45,-20.5,0,0,-0.13605 -73309,5204:104:4,-44.5,-20.5,0,0,-0.13605 -73310,5204:104:3,-44,-20.5,0,0,-0.13605 -73311,5204:103:4,-43.5,-20.5,0,0,-0.141837 -73312,5204:103:3,-43,-20.5,0,0,-0.136356 -73313,5204:102:4,-42.5,-20.5,0,0,-0.13605 -73314,5204:102:3,-42,-20.5,0,0,-0.13605 -73315,5204:101:4,-41.5,-20.5,0,0,-0.13605 -73316,5204:101:3,-41,-20.5,0,0,-0.13605 -73317,5204:100:4,-40.5,-20.5,0,0,-0.13605 -73318,5204:100:3,-40,-20.5,0,0,-0.13605 -73319,5203:209:4,-39.5,-20.5,0,0,-0.13605 -73320,5203:209:3,-39,-20.5,0,0,-0.13605 -73321,5203:208:4,-38.5,-20.5,0,0,-0.13605 -73322,5203:208:3,-38,-20.5,0,0,-0.13605 -73323,5203:207:4,-37.5,-20.5,0,0,-0.13605 -73324,5203:207:3,-37,-20.5,0,0,-0.13605 -73325,5203:206:4,-36.5,-20.5,0,0,-0.13605 -73326,5203:206:3,-36,-20.5,0,0,-0.13605 -73327,5203:205:4,-35.5,-20.5,0,0,-0.13605 -73328,5203:205:3,-35,-20.5,0,0,-0.13605 -73329,5203:104:4,-34.5,-20.5,0,0,-0.13605 -73330,5203:104:3,-34,-20.5,0,0,-0.13605 -73331,5203:103:4,-33.5,-20.5,0,0,-0.13605 -73332,5203:103:3,-33,-20.5,0,0,-0.13605 -73333,5203:102:4,-32.5,-20.5,0,0,-0.13605 -73334,5203:102:3,-32,-20.5,0,0,-0.13605 -73335,5203:101:4,-31.5,-20.5,0,0,-0.13605 -73336,5203:101:3,-31,-20.5,0,0,-0.13605 -73337,5203:100:4,-30.5,-20.5,0,0,-0.13605 -73338,5203:100:3,-30,-20.5,0,0,-0.13605 -73339,5202:209:4,-29.5,-20.5,0,0,-0.13605 -73340,5202:209:3,-29,-20.5,0,0,-0.13605 -73341,5202:208:4,-28.5,-20.5,0,0,-0.13605 -73342,5202:208:3,-28,-20.5,0,0,-0.13605 -73343,5202:207:4,-27.5,-20.5,0,0,-0.13605 -73344,5202:207:3,-27,-20.5,0,0,-0.13605 -73345,5202:206:4,-26.5,-20.5,0,0,-0.13605 -73346,5202:206:3,-26,-20.5,0,0,-0.13605 -73347,5202:205:4,-25.5,-20.5,0,0,-0.13605 -73348,5202:205:3,-25,-20.5,0,0,-0.13605 -73349,5202:104:4,-24.5,-20.5,0,0,-0.13605 -73350,5202:104:3,-24,-20.5,0,0,-0.13605 -73351,5202:103:4,-23.5,-20.5,0,0,-0.13605 -73352,5202:103:3,-23,-20.5,0,0,-0.13605 -73353,5202:102:4,-22.5,-20.5,0,0,-0.13605 -73354,5202:102:3,-22,-20.5,0,0,-0.13605 -73355,5202:101:4,-21.5,-20.5,0,0,-0.13605 -73356,5202:101:3,-21,-20.5,0,0,-0.13605 -73357,5202:100:4,-20.5,-20.5,0,0,-0.13605 -73358,5202:100:3,-20,-20.5,0,0,-0.13605 -73359,5201:209:4,-19.5,-20.5,0,0,-0.13605 -73360,5201:209:3,-19,-20.5,0,0,-0.13605 -73361,5201:208:4,-18.5,-20.5,0,0,-0.13605 -73362,5201:208:3,-18,-20.5,0,0,-0.13605 -73363,5201:207:4,-17.5,-20.5,0,0,-0.13605 -73364,5201:207:3,-17,-20.5,0,0,-0.13605 -73365,5201:206:4,-16.5,-20.5,0,0,-0.13605 -73366,5201:206:3,-16,-20.5,0,0,-0.13605 -73367,5201:205:4,-15.5,-20.5,0,0,-0.13605 -73368,5201:205:3,-15,-20.5,0,0,-0.13605 -73369,5201:104:4,-14.5,-20.5,0,0,-0.13605 -73370,5201:104:3,-14,-20.5,0,0,-0.13605 -73371,5201:103:4,-13.5,-20.5,0,0,-0.13605 -73372,5201:103:3,-13,-20.5,0,0,-0.13605 -73373,5201:102:4,-12.5,-20.5,0,0,-0.13605 -73374,5201:102:3,-12,-20.5,0,0,-0.13605 -73375,5201:101:4,-11.5,-20.5,0,0,-0.13605 -73376,5201:101:3,-11,-20.5,0,0,-0.13605 -73377,5201:100:4,-10.5,-20.5,0,0,-0.13605 -73378,5201:100:3,-10,-20.5,0,0,-0.13605 -73379,5200:209:4,-9.5,-20.5,0,0,-0.13605 -73380,5200:209:3,-9,-20.5,0,0,-0.13605 -73381,5200:208:4,-8.5,-20.5,0,0,-0.13605 -73382,5200:208:3,-8,-20.5,0,0,-0.13605 -73383,5200:207:4,-7.5,-20.5,0,0,-0.13605 -73384,5200:207:3,-7,-20.5,0,0,-0.13605 -73385,5200:206:4,-6.5,-20.5,0,0,-0.13605 -73386,5200:206:3,-6,-20.5,0,0,-0.13605 -73387,5200:205:4,-5.5,-20.5,0,0,-0.13605 -73388,5200:205:3,-5,-20.5,0,0,-0.13605 -73389,5200:104:4,-4.5,-20.5,0,0,-0.13605 -73390,5200:104:3,-4,-20.5,0,0,-0.13605 -73391,5200:103:4,-3.5,-20.5,0,0,-0.13605 -73392,5200:103:3,-3,-20.5,0,0,-0.13605 -73393,5200:102:4,-2.5,-20.5,0,0,-0.13605 -73394,5200:102:3,-2,-20.5,0,0,-0.13605 -73395,5200:101:4,-1.5,-20.5,0,0,-0.13605 -73396,5200:101:3,-1,-20.5,0,0,-0.13605 -73397,5200:100:4,-0.5,-20.5,0,0,-0.13605 -73398,3200:100:4,0,-20.5,0,0,-0.13605 -73399,3200:100:4,0.5,-20.5,0,0,-0.13605 -73400,3200:101:3,1,-20.5,0,0,-0.13605 -73401,3200:101:4,1.5,-20.5,0,0,-0.13605 -73402,3200:102:3,2,-20.5,0,0,-0.13605 -73403,3200:102:4,2.5,-20.5,0,0,-0.13605 -73404,3200:103:3,3,-20.5,0,0,-0.13605 -73405,3200:103:4,3.5,-20.5,0,0,-0.13605 -73406,3200:104:3,4,-20.5,0,0,-0.13605 -73407,3200:104:4,4.5,-20.5,0,0,-0.13605 -73408,3200:205:3,5,-20.5,0,0,-0.13605 -73409,3200:205:4,5.5,-20.5,0,0,-0.13605 -73410,3200:206:3,6,-20.5,0,0,-0.13605 -73411,3200:206:4,6.5,-20.5,0,0,-0.13605 -73412,3200:207:3,7,-20.5,0,0,-0.13605 -73413,3200:207:4,7.5,-20.5,0,0,-0.13605 -73414,3200:208:3,8,-20.5,0,0,-0.13605 -73415,3200:208:4,8.5,-20.5,0,0,-0.13605 -73416,3200:209:3,9,-20.5,0,0,-0.13605 -73417,3200:209:4,9.5,-20.5,0,0,-0.13605 -73418,3201:100:3,10,-20.5,0,0,-0.13605 -73419,3201:100:4,10.5,-20.5,0,0,-0.13605 -73420,3201:101:3,11,-20.5,0,0,-0.13605 -73421,3201:101:4,11.5,-20.5,0,0,-0.13605 -73422,3201:102:3,12,-20.5,0,0,-0.13605 -73423,3201:102:4,12.5,-20.5,0,0,-0.13605 -73424,3201:103:3,13,-20.5,0,0,-0.13605 -73425,3201:103:4,13.5,-20.5,0,0,-0.13605 -73426,3201:104:3,14,-20.5,0,0,-0.13605 -73427,3201:104:4,14.5,-20.5,0,0,-0.13605 -73428,3203:103:3,33,-20.5,0,0,-0.153126 -73429,3203:103:4,33.5,-20.5,0,0,-0.148843 -73430,3203:104:3,34,-20.5,0,0,-0.151449 -73431,3203:104:4,34.5,-20.5,0,0,-0.155605 -73432,3203:205:3,35,-20.5,0,0,-0.155945 -73433,3203:205:4,35.5,-20.5,0,0,-0.156541 -73434,3203:206:3,36,-20.5,0,0,-0.152336 -73435,3203:206:4,36.5,-20.5,0,0,-0.140753 -73436,3203:207:3,37,-20.5,0,0,-0.137354 -73437,3203:207:4,37.5,-20.5,0,0,-0.13605 -73438,3203:208:3,38,-20.5,0,0,-0.13605 -73439,3203:208:4,38.5,-20.5,0,0,-0.13605 -73440,3203:209:3,39,-20.5,0,0,-0.13605 -73441,3203:209:4,39.5,-20.5,0,0,-0.13605 -73442,3204:100:3,40,-20.5,0,0,-0.13605 -73443,3204:100:4,40.5,-20.5,0,0,-0.13605 -73444,3204:101:3,41,-20.5,0,0,-0.13605 -73445,3204:101:4,41.5,-20.5,0,0,-0.136151 -73446,3204:102:3,42,-20.5,0,0,-0.136447 -73447,3204:102:4,42.5,-20.5,0,0,-0.140696 -73448,3204:103:3,43,-20.5,0,0,-0.143374 -73449,3204:103:4,43.5,-20.5,0,0,-0.148581 -73450,3204:104:3,44,-20.5,0,0,-0.15147 -73451,3204:104:4,44.5,-20.5,0,0,-0.144695 -73452,3204:205:3,45,-20.5,0,0,-0.13605 -73453,3204:205:4,45.5,-20.5,0,0,-0.13605 -73454,3204:206:3,46,-20.5,0,0,-0.13605 -73455,3204:206:4,46.5,-20.5,0,0,-0.13605 -73456,3204:207:3,47,-20.5,0,0,-0.13605 -73457,3204:207:4,47.5,-20.5,0,0,-0.13605 -73458,3204:208:3,48,-20.5,0,0,-0.13605 -73459,3204:208:4,48.5,-20.5,0,0,-0.13605 -73460,3204:209:3,49,-20.5,0,0,-0.13605 -73461,3204:209:4,49.5,-20.5,0,0,-0.13605 -73462,3205:100:3,50,-20.5,0,0,-0.13605 -73463,3205:100:4,50.5,-20.5,0,0,-0.13605 -73464,3205:101:3,51,-20.5,0,0,-0.13605 -73465,3205:101:4,51.5,-20.5,0,0,-0.13605 -73466,3205:102:3,52,-20.5,0,0,-0.13605 -73467,3205:102:4,52.5,-20.5,0,0,-0.13605 -73468,3205:103:3,53,-20.5,0,0,-0.13605 -73469,3205:103:4,53.5,-20.5,0,0,-0.13605 -73470,3205:104:3,54,-20.5,0,0,-0.13605 -73471,3205:104:4,54.5,-20.5,0,0,-0.13605 -73472,3205:205:3,55,-20.5,0,0,-0.13605 -73473,3205:205:4,55.5,-20.5,0,0,-0.13605 -73474,3205:206:3,56,-20.5,0,0,-0.13605 -73475,3205:206:4,56.5,-20.5,0,0,-0.13605 -73476,3205:207:3,57,-20.5,0,0,-0.13605 -73477,3205:207:4,57.5,-20.5,0,0,-0.13605 -73478,3205:208:3,58,-20.5,0,0,-0.13605 -73479,3205:208:4,58.5,-20.5,0,0,-0.13605 -73480,3205:209:3,59,-20.5,0,0,-0.13605 -73481,3205:209:4,59.5,-20.5,0,0,-0.13605 -73482,3206:100:3,60,-20.5,0,0,-0.13605 -73483,3206:100:4,60.5,-20.5,0,0,-0.13605 -73484,3206:101:3,61,-20.5,0,0,-0.13605 -73485,3206:101:4,61.5,-20.5,0,0,-0.13605 -73486,3206:102:3,62,-20.5,0,0,-0.13605 -73487,3206:102:4,62.5,-20.5,0,0,-0.13605 -73488,3206:103:3,63,-20.5,0,0,-0.13605 -73489,3206:103:4,63.5,-20.5,0,0,-0.13605 -73490,3206:104:3,64,-20.5,0,0,-0.13605 -73491,3206:104:4,64.5,-20.5,0,0,-0.13605 -73492,3206:205:3,65,-20.5,0,0,-0.13605 -73493,3206:205:4,65.5,-20.5,0,0,-0.13605 -73494,3206:206:3,66,-20.5,0,0,-0.13605 -73495,3206:206:4,66.5,-20.5,0,0,-0.13605 -73496,3206:207:3,67,-20.5,0,0,-0.13605 -73497,3206:207:4,67.5,-20.5,0,0,-0.13605 -73498,3206:208:3,68,-20.5,0,0,-0.13605 -73499,3206:208:4,68.5,-20.5,0,0,-0.13605 -73500,3206:209:3,69,-20.5,0,0,-0.13605 -73501,3206:209:4,69.5,-20.5,0,0,-0.13605 -73502,3207:100:3,70,-20.5,0,0,-0.13605 -73503,3207:100:4,70.5,-20.5,0,0,-0.13605 -73504,3207:101:3,71,-20.5,0,0,-0.13605 -73505,3207:101:4,71.5,-20.5,0,0,-0.13605 -73506,3207:102:3,72,-20.5,0,0,-0.13605 -73507,3207:102:4,72.5,-20.5,0,0,-0.13605 -73508,3207:103:4,73.5,-20.5,0,0,-0.13605 -73509,3207:104:3,74,-20.5,0,0,-0.13605 -73510,3207:104:4,74.5,-20.5,0,0,-0.13605 -73511,3207:205:3,75,-20.5,0,0,-0.13605 -73512,3207:205:4,75.5,-20.5,0,0,-0.13605 -73513,3207:206:3,76,-20.5,0,0,-0.13605 -73514,3207:206:4,76.5,-20.5,0,0,-0.13605 -73515,3207:207:3,77,-20.5,0,0,-0.13605 -73516,3207:207:4,77.5,-20.5,0,0,-0.13605 -73517,3207:208:3,78,-20.5,0,0,-0.13605 -73518,3207:208:4,78.5,-20.5,0,0,-0.13605 -73519,3207:209:3,79,-20.5,0,0,-0.13605 -73520,3207:209:4,79.5,-20.5,0,0,-0.13605 -73521,3208:100:3,80,-20.5,0,0,-0.13605 -73522,3208:100:4,80.5,-20.5,0,0,-0.13605 -73523,3208:101:3,81,-20.5,0,0,-0.13605 -73524,3208:101:4,81.5,-20.5,0,0,-0.13605 -73525,3208:102:3,82,-20.5,0,0,-0.13605 -73526,3208:102:4,82.5,-20.5,0,0,-0.13605 -73527,3208:103:3,83,-20.5,0,0,-0.13605 -73528,3208:103:4,83.5,-20.5,0,0,-0.13605 -73529,3208:104:3,84,-20.5,0,0,-0.13605 -73530,3208:104:4,84.5,-20.5,0,0,-0.13605 -73531,3208:205:3,85,-20.5,0,0,-0.13605 -73532,3208:205:4,85.5,-20.5,0,0,-0.13605 -73533,3208:206:3,86,-20.5,0,0,-0.13605 -73534,3208:206:4,86.5,-20.5,0,0,-0.13605 -73535,3208:207:3,87,-20.5,0,0,-0.13605 -73536,3208:207:4,87.5,-20.5,0,0,-0.13605 -73537,3208:208:3,88,-20.5,0,0,-0.13605 -73538,3208:208:4,88.5,-20.5,0,0,-0.13605 -73539,3208:209:3,89,-20.5,0,0,-0.13605 -73540,3208:209:4,89.5,-20.5,0,0,-0.13605 -73541,3209:100:3,90,-20.5,0,0,-0.13605 -73542,3209:100:4,90.5,-20.5,0,0,-0.13605 -73543,3209:101:3,91,-20.5,0,0,-0.13605 -73544,3209:101:4,91.5,-20.5,0,0,-0.13605 -73545,3209:102:3,92,-20.5,0,0,-0.13605 -73546,3209:102:4,92.5,-20.5,0,0,-0.13605 -73547,3209:103:3,93,-20.5,0,0,-0.13605 -73548,3209:103:4,93.5,-20.5,0,0,-0.13605 -73549,3209:104:3,94,-20.5,0,0,-0.13605 -73550,3209:104:4,94.5,-20.5,0,0,-0.13605 -73551,3209:205:3,95,-20.5,0,0,-0.13605 -73552,3209:205:4,95.5,-20.5,0,0,-0.13605 -73553,3209:206:3,96,-20.5,0,0,-0.13605 -73554,3209:206:4,96.5,-20.5,0,0,-0.13605 -73555,3209:207:3,97,-20.5,0,0,-0.13605 -73556,3209:207:4,97.5,-20.5,0,0,-0.13605 -73557,3209:208:3,98,-20.5,0,0,-0.13605 -73558,3209:208:4,98.5,-20.5,0,0,-0.13605 -73559,3209:209:3,99,-20.5,0,0,-0.13605 -73560,3209:209:4,99.5,-20.5,0,0,-0.13605 -73561,3210:100:3,100,-20.5,0,0,-0.13605 -73562,3210:100:4,100.5,-20.5,0,0,-0.13605 -73563,3210:101:3,101,-20.5,0,0,-0.13605 -73564,3210:101:4,101.5,-20.5,0,0,-0.13605 -73565,3210:102:3,102,-20.5,0,0,-0.13605 -73566,3210:102:4,102.5,-20.5,0,0,-0.13605 -73567,3210:103:3,103,-20.5,0,0,-0.13605 -73568,3210:103:4,103.5,-20.5,0,0,-0.13605 -73569,3210:104:3,104,-20.5,0,0,-0.13605 -73570,3210:104:4,104.5,-20.5,0,0,-0.13605 -73571,3210:205:3,105,-20.5,0,0,-0.13605 -73572,3210:205:4,105.5,-20.5,0,0,-0.13605 -73573,3210:206:3,106,-20.5,0,0,-0.13605 -73574,3210:206:4,106.5,-20.5,0,0,-0.13605 -73575,3210:207:3,107,-20.5,0,0,-0.13605 -73576,3210:207:4,107.5,-20.5,0,0,-0.13605 -73577,3210:208:3,108,-20.5,0,0,-0.13605 -73578,3210:208:4,108.5,-20.5,0,0,-0.13605 -73579,3210:209:3,109,-20.5,0,0,-0.13605 -73580,3210:209:4,109.5,-20.5,0,0,-0.13605 -73581,3211:100:3,110,-20.5,0,0,-0.13605 -73582,3211:100:4,110.5,-20.5,0,0,-0.13605 -73583,3211:101:3,111,-20.5,0,0,-0.13605 -73584,3211:101:4,111.5,-20.5,0,0,-0.13605 -73585,3211:102:3,112,-20.5,0,0,-0.13605 -73586,3211:102:4,112.5,-20.5,0,0,-0.13605 -73587,3211:103:3,113,-20.5,0,0,-0.13605 -73588,3211:103:4,113.5,-20.5,0,0,-0.13605 -73589,3215:103:4,153.5,-20.5,0,0,-0.137638 -73590,3215:104:3,154,-20.5,0,0,-0.145223 -73591,3215:104:4,154.5,-20.5,0,0,-0.141952 -73592,3215:205:3,155,-20.5,0,0,-0.13605 -73593,3215:205:4,155.5,-20.5,0,0,-0.13605 -73594,3215:206:3,156,-20.5,0,0,-0.13605 -73595,3215:206:4,156.5,-20.5,0,0,-0.13605 -73596,3215:207:3,157,-20.5,0,0,-0.13605 -73597,3215:207:4,157.5,-20.5,0,0,-0.13605 -73598,3215:208:3,158,-20.5,0,0,-0.13605 -73599,3215:208:4,158.5,-20.5,0,0,-0.13605 -73600,3215:209:3,159,-20.5,0,0,-0.13605 -73601,3215:209:4,159.5,-20.5,0,0,-0.13605 -73602,3216:100:3,160,-20.5,0,0,-0.13605 -73603,3216:100:4,160.5,-20.5,0,0,-0.13605 -73604,3216:101:3,161,-20.5,0,0,-0.13605 -73605,3216:101:4,161.5,-20.5,0,0,-0.13605 -73606,3216:102:3,162,-20.5,0,0,-0.13605 -73607,3216:102:4,162.5,-20.5,0,0,-0.13605 -73608,3216:103:3,163,-20.5,0,0,-0.13605 -73609,3216:103:4,163.5,-20.5,0,0,-0.13605 -73610,3216:104:3,164,-20.5,0,0,-0.13605 -73611,3216:104:4,164.5,-20.5,0,0,-0.13605 -73612,3216:205:3,165,-20.5,0,0,-0.13605 -73613,3216:205:4,165.5,-20.5,0,0,-0.13605 -73614,3216:206:3,166,-20.5,0,0,-0.13605 -73615,3216:206:4,166.5,-20.5,0,0,-0.13605 -73616,3216:207:3,167,-20.5,0,0,-0.13605 -73617,3216:207:4,167.5,-20.5,0,0,-0.13605 -73618,3216:208:3,168,-20.5,0,0,-0.13605 -73619,3216:208:4,168.5,-20.5,0,0,-0.13605 -73620,3216:209:3,169,-20.5,0,0,-0.13605 -73621,3216:209:4,169.5,-20.5,0,0,-0.13605 -73622,3217:100:3,170,-20.5,0,0,-0.13605 -73623,3217:100:4,170.5,-20.5,0,0,-0.13605 -73624,3217:101:3,171,-20.5,0,0,-0.13605 -73625,3217:101:4,171.5,-20.5,0,0,-0.13605 -73626,3217:102:3,172,-20.5,0,0,-0.13605 -73627,3217:102:4,172.5,-20.5,0,0,-0.13605 -73628,3217:103:3,173,-20.5,0,0,-0.13605 -73629,3217:103:4,173.5,-20.5,0,0,-0.13605 -73630,3217:104:3,174,-20.5,0,0,-0.13605 -73631,3217:104:4,174.5,-20.5,0,0,-0.13605 -73632,3217:205:3,175,-20.5,0,0,-0.13605 -73633,3217:205:4,175.5,-20.5,0,0,-0.13605 -73634,3217:206:3,176,-20.5,0,0,-0.13605 -73635,3217:206:4,176.5,-20.5,0,0,-0.13605 -73636,3217:207:3,177,-20.5,0,0,-0.13605 -73637,3217:207:4,177.5,-20.5,0,0,-0.13605 -73638,3217:208:3,178,-20.5,0,0,-0.13605 -73639,3217:208:4,178.5,-20.5,0,0,-0.13605 -73640,3217:209:3,179,-20.5,0,0,-0.13605 -73641,3217:209:4,179.5,-20.5,0,0,-0.13605 -73642,3218:100:3,180,-20.5,0,0,-0.13605 -73643,5218:100:1,-180,-20,0,0,-0.13605 -73644,5217:209:2,-179.5,-20,0,0,-0.13605 -73645,5217:209:1,-179,-20,0,0,-0.13605 -73646,5217:208:2,-178.5,-20,0,0,-0.13605 -73647,5217:208:1,-178,-20,0,0,-0.13605 -73648,5217:207:2,-177.5,-20,0,0,-0.13605 -73649,5217:207:1,-177,-20,0,0,-0.13605 -73650,5217:206:2,-176.5,-20,0,0,-0.13605 -73651,5217:206:1,-176,-20,0,0,-0.13605 -73652,5217:205:2,-175.5,-20,0,0,-0.13605 -73653,5217:205:1,-175,-20,0,0,-0.13605 -73654,5217:104:2,-174.5,-20,0,0,-0.13605 -73655,5217:104:1,-174,-20,0,0,-0.13605 -73656,5217:103:2,-173.5,-20,0,0,-0.13605 -73657,5217:103:1,-173,-20,0,0,-0.13605 -73658,5217:102:2,-172.5,-20,0,0,-0.13605 -73659,5217:102:1,-172,-20,0,0,-0.13605 -73660,5217:101:2,-171.5,-20,0,0,-0.13605 -73661,5217:101:1,-171,-20,0,0,-0.13605 -73662,5217:100:2,-170.5,-20,0,0,-0.13605 -73663,5217:100:1,-170,-20,0,0,-0.13605 -73664,5216:209:2,-169.5,-20,0,0,-0.13605 -73665,5216:209:1,-169,-20,0,0,-0.13605 -73666,5216:208:2,-168.5,-20,0,0,-0.13605 -73667,5216:208:1,-168,-20,0,0,-0.13605 -73668,5216:207:2,-167.5,-20,0,0,-0.13605 -73669,5216:207:1,-167,-20,0,0,-0.13605 -73670,5216:206:2,-166.5,-20,0,0,-0.13605 -73671,5216:206:1,-166,-20,0,0,-0.13605 -73672,5216:205:2,-165.5,-20,0,0,-0.13605 -73673,5216:205:1,-165,-20,0,0,-0.13605 -73674,5216:104:2,-164.5,-20,0,0,-0.13605 -73675,5216:104:1,-164,-20,0,0,-0.13605 -73676,5216:103:2,-163.5,-20,0,0,-0.13605 -73677,5216:103:1,-163,-20,0,0,-0.13605 -73678,5216:102:2,-162.5,-20,0,0,-0.13605 -73679,5216:102:1,-162,-20,0,0,-0.13605 -73680,5216:101:2,-161.5,-20,0,0,-0.13605 -73681,5216:101:1,-161,-20,0,0,-0.13605 -73682,5216:100:2,-160.5,-20,0,0,-0.13605 -73683,5216:100:1,-160,-20,0,0,-0.13605 -73684,5215:209:2,-159.5,-20,0,0,-0.13605 -73685,5215:209:1,-159,-20,0,0,-0.13605 -73686,5215:208:2,-158.5,-20,0,0,-0.13605 -73687,5215:208:1,-158,-20,0,0,-0.13605 -73688,5215:207:2,-157.5,-20,0,0,-0.13605 -73689,5215:207:1,-157,-20,0,0,-0.13605 -73690,5215:206:2,-156.5,-20,0,0,-0.13605 -73691,5215:206:1,-156,-20,0,0,-0.13605 -73692,5215:205:2,-155.5,-20,0,0,-0.13605 -73693,5215:205:1,-155,-20,0,0,-0.13605 -73694,5215:104:2,-154.5,-20,0,0,-0.13605 -73695,5215:104:1,-154,-20,0,0,-0.13605 -73696,5215:103:2,-153.5,-20,0,0,-0.13605 -73697,5215:103:1,-153,-20,0,0,-0.13605 -73698,5215:102:2,-152.5,-20,0,0,-0.13605 -73699,5215:102:1,-152,-20,0,0,-0.13605 -73700,5215:101:2,-151.5,-20,0,0,-0.13605 -73701,5215:101:1,-151,-20,0,0,-0.13605 -73702,5215:100:2,-150.5,-20,0,0,-0.13605 -73703,5215:100:1,-150,-20,0,0,-0.13605 -73704,5214:209:2,-149.5,-20,0,0,-0.13605 -73705,5214:209:1,-149,-20,0,0,-0.13605 -73706,5214:208:2,-148.5,-20,0,0,-0.13605 -73707,5214:208:1,-148,-20,0,0,-0.13605 -73708,5214:207:2,-147.5,-20,0,0,-0.13605 -73709,5214:207:1,-147,-20,0,0,-0.13605 -73710,5214:206:2,-146.5,-20,0,0,-0.13605 -73711,5214:206:1,-146,-20,0,0,-0.13605 -73712,5214:205:2,-145.5,-20,0,0,-0.13605 -73713,5214:205:1,-145,-20,0,0,-0.13605 -73714,5214:104:2,-144.5,-20,0,0,-0.13605 -73715,5214:104:1,-144,-20,0,0,-0.13605 -73716,5214:103:2,-143.5,-20,0,0,-0.13605 -73717,5214:103:1,-143,-20,0,0,-0.13605 -73718,5214:102:2,-142.5,-20,0,0,-0.13605 -73719,5214:102:1,-142,-20,0,0,-0.13605 -73720,5214:101:2,-141.5,-20,0,0,-0.13605 -73721,5214:101:1,-141,-20,0,0,-0.13605 -73722,5214:100:2,-140.5,-20,0,0,-0.13605 -73723,5214:100:1,-140,-20,0,0,-0.13605 -73724,5213:209:2,-139.5,-20,0,0,-0.13605 -73725,5213:209:1,-139,-20,0,0,-0.13605 -73726,5213:208:2,-138.5,-20,0,0,-0.13605 -73727,5213:208:1,-138,-20,0,0,-0.13605 -73728,5213:207:2,-137.5,-20,0,0,-0.13605 -73729,5213:207:1,-137,-20,0,0,-0.13605 -73730,5213:206:2,-136.5,-20,0,0,-0.13605 -73731,5213:206:1,-136,-20,0,0,-0.13605 -73732,5213:205:2,-135.5,-20,0,0,-0.13605 -73733,5213:205:1,-135,-20,0,0,-0.13605 -73734,5213:104:2,-134.5,-20,0,0,-0.13605 -73735,5213:104:1,-134,-20,0,0,-0.13605 -73736,5213:103:2,-133.5,-20,0,0,-0.13605 -73737,5213:103:1,-133,-20,0,0,-0.13605 -73738,5213:102:2,-132.5,-20,0,0,-0.13605 -73739,5213:102:1,-132,-20,0,0,-0.13605 -73740,5213:101:2,-131.5,-20,0,0,-0.13605 -73741,5213:101:1,-131,-20,0,0,-0.13605 -73742,5213:100:2,-130.5,-20,0,0,-0.13605 -73743,5213:100:1,-130,-20,0,0,-0.13605 -73744,5212:209:2,-129.5,-20,0,0,-0.13605 -73745,5212:209:1,-129,-20,0,0,-0.13605 -73746,5212:208:2,-128.5,-20,0,0,-0.13605 -73747,5212:208:1,-128,-20,0,0,-0.13605 -73748,5212:207:2,-127.5,-20,0,0,-0.13605 -73749,5212:207:1,-127,-20,0,0,-0.13605 -73750,5212:206:2,-126.5,-20,0,0,-0.13605 -73751,5212:206:1,-126,-20,0,0,-0.13605 -73752,5212:205:2,-125.5,-20,0,0,-0.13605 -73753,5212:205:1,-125,-20,0,0,-0.13605 -73754,5212:104:2,-124.5,-20,0,0,-0.13605 -73755,5212:104:1,-124,-20,0,0,-0.13605 -73756,5212:103:2,-123.5,-20,0,0,-0.13605 -73757,5212:103:1,-123,-20,0,0,-0.13605 -73758,5212:102:2,-122.5,-20,0,0,-0.13605 -73759,5212:102:1,-122,-20,0,0,-0.13605 -73760,5212:101:2,-121.5,-20,0,0,-0.13605 -73761,5212:101:1,-121,-20,0,0,-0.13605 -73762,5212:100:2,-120.5,-20,0,0,-0.13605 -73763,5212:100:1,-120,-20,0,0,-0.13605 -73764,5211:209:2,-119.5,-20,0,0,-0.13605 -73765,5211:209:1,-119,-20,0,0,-0.13605 -73766,5211:208:2,-118.5,-20,0,0,-0.13605 -73767,5211:208:1,-118,-20,0,0,-0.13605 -73768,5211:207:2,-117.5,-20,0,0,-0.13605 -73769,5211:207:1,-117,-20,0,0,-0.13605 -73770,5211:206:2,-116.5,-20,0,0,-0.13605 -73771,5211:206:1,-116,-20,0,0,-0.13605 -73772,5211:205:2,-115.5,-20,0,0,-0.13605 -73773,5211:205:1,-115,-20,0,0,-0.13605 -73774,5211:104:2,-114.5,-20,0,0,-0.13605 -73775,5211:104:1,-114,-20,0,0,-0.13605 -73776,5211:103:2,-113.5,-20,0,0,-0.13605 -73777,5211:103:1,-113,-20,0,0,-0.13605 -73778,5211:102:2,-112.5,-20,0,0,-0.13605 -73779,5211:102:1,-112,-20,0,0,-0.13605 -73780,5211:101:2,-111.5,-20,0,0,-0.13605 -73781,5211:101:1,-111,-20,0,0,-0.13605 -73782,5211:100:2,-110.5,-20,0,0,-0.13605 -73783,5211:100:1,-110,-20,0,0,-0.13605 -73784,5210:209:2,-109.5,-20,0,0,-0.13605 -73785,5210:209:1,-109,-20,0,0,-0.13605 -73786,5210:208:2,-108.5,-20,0,0,-0.13605 -73787,5210:208:1,-108,-20,0,0,-0.13605 -73788,5210:207:2,-107.5,-20,0,0,-0.13605 -73789,5210:207:1,-107,-20,0,0,-0.13605 -73790,5210:206:2,-106.5,-20,0,0,-0.13605 -73791,5210:206:1,-106,-20,0,0,-0.13605 -73792,5210:205:2,-105.5,-20,0,0,-0.13605 -73793,5210:205:1,-105,-20,0,0,-0.13605 -73794,5210:104:2,-104.5,-20,0,0,-0.13605 -73795,5210:104:1,-104,-20,0,0,-0.13605 -73796,5210:103:2,-103.5,-20,0,0,-0.13605 -73797,5210:103:1,-103,-20,0,0,-0.13605 -73798,5210:102:2,-102.5,-20,0,0,-0.13605 -73799,5210:102:1,-102,-20,0,0,-0.13605 -73800,5210:101:2,-101.5,-20,0,0,-0.13605 -73801,5210:101:1,-101,-20,0,0,-0.13605 -73802,5210:100:2,-100.5,-20,0,0,-0.13605 -73803,5210:100:1,-100,-20,0,0,-0.13605 -73804,5209:209:2,-99.5,-20,0,0,-0.13605 -73805,5209:209:1,-99,-20,0,0,-0.13605 -73806,5209:208:2,-98.5,-20,0,0,-0.13605 -73807,5209:208:1,-98,-20,0,0,-0.13605 -73808,5209:207:2,-97.5,-20,0,0,-0.13605 -73809,5209:207:1,-97,-20,0,0,-0.13605 -73810,5209:206:2,-96.5,-20,0,0,-0.13605 -73811,5209:206:1,-96,-20,0,0,-0.13605 -73812,5209:205:2,-95.5,-20,0,0,-0.13605 -73813,5209:205:1,-95,-20,0,0,-0.13605 -73814,5209:104:2,-94.5,-20,0,0,-0.13605 -73815,5209:104:1,-94,-20,0,0,-0.13605 -73816,5209:103:2,-93.5,-20,0,0,-0.13605 -73817,5209:103:1,-93,-20,0,0,-0.13605 -73818,5209:102:2,-92.5,-20,0,0,-0.13605 -73819,5209:102:1,-92,-20,0,0,-0.13605 -73820,5209:101:2,-91.5,-20,0,0,-0.13605 -73821,5209:101:1,-91,-20,0,0,-0.13605 -73822,5209:100:2,-90.5,-20,0,0,-0.13605 -73823,5209:100:1,-90,-20,0,0,-0.13605 -73824,5208:209:2,-89.5,-20,0,0,-0.13605 -73825,5208:209:1,-89,-20,0,0,-0.13605 -73826,5208:208:2,-88.5,-20,0,0,-0.13605 -73827,5208:208:1,-88,-20,0,0,-0.13605 -73828,5208:207:2,-87.5,-20,0,0,-0.13605 -73829,5208:207:1,-87,-20,0,0,-0.13605 -73830,5208:206:2,-86.5,-20,0,0,-0.13605 -73831,5208:206:1,-86,-20,0,0,-0.13605 -73832,5208:205:2,-85.5,-20,0,0,-0.13605 -73833,5208:205:1,-85,-20,0,0,-0.13605 -73834,5208:104:2,-84.5,-20,0,0,-0.13605 -73835,5208:104:1,-84,-20,0,0,-0.13605 -73836,5208:103:2,-83.5,-20,0,0,-0.13605 -73837,5208:103:1,-83,-20,0,0,-0.13605 -73838,5208:102:2,-82.5,-20,0,0,-0.13605 -73839,5208:102:1,-82,-20,0,0,-0.13605 -73840,5208:101:2,-81.5,-20,0,0,-0.13605 -73841,5208:101:1,-81,-20,0,0,-0.13605 -73842,5208:100:2,-80.5,-20,0,0,-0.13605 -73843,5208:100:1,-80,-20,0,0,-0.13605 -73844,5207:209:2,-79.5,-20,0,0,-0.13605 -73845,5207:209:1,-79,-20,0,0,-0.13605 -73846,5207:208:2,-78.5,-20,0,0,-0.13605 -73847,5207:208:1,-78,-20,0,0,-0.13605 -73848,5207:207:2,-77.5,-20,0,0,-0.13605 -73849,5207:207:1,-77,-20,0,0,-0.13605 -73850,5207:206:2,-76.5,-20,0,0,-0.13605 -73851,5207:206:1,-76,-20,0,0,-0.13605 -73852,5207:205:2,-75.5,-20,0,0,-0.13605 -73853,5207:205:1,-75,-20,0,0,-0.13605 -73854,5207:104:2,-74.5,-20,0,0,-0.13605 -73855,5207:104:1,-74,-20,0,0,-0.13605 -73856,5207:103:2,-73.5,-20,0,0,-0.13605 -73857,5207:103:1,-73,-20,0,0,-0.13605 -73858,5207:102:2,-72.5,-20,0,0,-0.13605 -73859,5207:102:1,-72,-20,0,0,-0.13605 -73860,5207:101:2,-71.5,-20,0,0,-0.13605 -73861,5207:101:1,-71,-20,0,0,-0.13605 -73862,5204:208:2,-48.5,-20,0,0,-0.169033 -73863,5204:208:1,-48,-20,0,0,-0.14828 -73864,5204:207:2,-47.5,-20,0,0,-0.14098 -73865,5204:207:1,-47,-20,0,0,-0.140867 -73866,5204:206:2,-46.5,-20,0,0,-0.149065 -73867,5204:206:1,-46,-20,0,0,-0.156626 -73868,5204:205:2,-45.5,-20,0,0,-0.157526 -73869,5204:205:1,-45,-20,0,0,-0.146524 -73870,5204:104:2,-44.5,-20,0,0,-0.143936 -73871,5204:104:1,-44,-20,0,0,-0.148239 -73872,5204:103:2,-43.5,-20,0,0,-0.152751 -73873,5204:103:1,-43,-20,0,0,-0.150649 -73874,5204:102:2,-42.5,-20,0,0,-0.141856 -73875,5204:102:1,-42,-20,0,0,-0.138479 -73876,5204:101:2,-41.5,-20,0,0,-0.136173 -73877,5204:101:1,-41,-20,0,0,-0.137722 -73878,5204:100:2,-40.5,-20,0,0,-0.139847 -73879,5204:100:1,-40,-20,0,0,-0.13902 -73880,5203:209:2,-39.5,-20,0,0,-0.137705 -73881,5203:209:1,-39,-20,0,0,-0.13789 -73882,5203:208:2,-38.5,-20,0,0,-0.138075 -73883,5203:208:1,-38,-20,0,0,-0.13692 -73884,5203:207:2,-37.5,-20,0,0,-0.136937 -73885,5203:207:1,-37,-20,0,0,-0.138446 -73886,5203:206:2,-36.5,-20,0,0,-0.137924 -73887,5203:206:1,-36,-20,0,0,-0.13605 -73888,5203:205:2,-35.5,-20,0,0,-0.13605 -73889,5203:205:1,-35,-20,0,0,-0.13605 -73890,5203:104:2,-34.5,-20,0,0,-0.13605 -73891,5203:104:1,-34,-20,0,0,-0.13605 -73892,5203:103:2,-33.5,-20,0,0,-0.13605 -73893,5203:103:1,-33,-20,0,0,-0.13605 -73894,5203:102:2,-32.5,-20,0,0,-0.13605 -73895,5203:102:1,-32,-20,0,0,-0.13605 -73896,5203:101:2,-31.5,-20,0,0,-0.13605 -73897,5203:101:1,-31,-20,0,0,-0.13605 -73898,5203:100:2,-30.5,-20,0,0,-0.13605 -73899,5203:100:1,-30,-20,0,0,-0.13605 -73900,5202:209:2,-29.5,-20,0,0,-0.13605 -73901,5202:209:1,-29,-20,0,0,-0.13605 -73902,5202:208:2,-28.5,-20,0,0,-0.13605 -73903,5202:208:1,-28,-20,0,0,-0.13605 -73904,5202:207:2,-27.5,-20,0,0,-0.13605 -73905,5202:207:1,-27,-20,0,0,-0.13605 -73906,5202:206:2,-26.5,-20,0,0,-0.13605 -73907,5202:206:1,-26,-20,0,0,-0.13605 -73908,5202:205:2,-25.5,-20,0,0,-0.13605 -73909,5202:205:1,-25,-20,0,0,-0.13605 -73910,5202:104:2,-24.5,-20,0,0,-0.13605 -73911,5202:104:1,-24,-20,0,0,-0.13605 -73912,5202:103:2,-23.5,-20,0,0,-0.13605 -73913,5202:103:1,-23,-20,0,0,-0.13605 -73914,5202:102:2,-22.5,-20,0,0,-0.13605 -73915,5202:102:1,-22,-20,0,0,-0.13605 -73916,5202:101:2,-21.5,-20,0,0,-0.13605 -73917,5202:101:1,-21,-20,0,0,-0.13605 -73918,5202:100:2,-20.5,-20,0,0,-0.13605 -73919,5202:100:1,-20,-20,0,0,-0.13605 -73920,5201:209:2,-19.5,-20,0,0,-0.13605 -73921,5201:209:1,-19,-20,0,0,-0.13605 -73922,5201:208:2,-18.5,-20,0,0,-0.13605 -73923,5201:208:1,-18,-20,0,0,-0.13605 -73924,5201:207:2,-17.5,-20,0,0,-0.13605 -73925,5201:207:1,-17,-20,0,0,-0.13605 -73926,5201:206:2,-16.5,-20,0,0,-0.13605 -73927,5201:206:1,-16,-20,0,0,-0.13605 -73928,5201:205:2,-15.5,-20,0,0,-0.13605 -73929,5201:205:1,-15,-20,0,0,-0.13605 -73930,5201:104:2,-14.5,-20,0,0,-0.13605 -73931,5201:104:1,-14,-20,0,0,-0.13605 -73932,5201:103:2,-13.5,-20,0,0,-0.13605 -73933,5201:103:1,-13,-20,0,0,-0.13605 -73934,5201:102:2,-12.5,-20,0,0,-0.13605 -73935,5201:102:1,-12,-20,0,0,-0.13605 -73936,5201:101:2,-11.5,-20,0,0,-0.13605 -73937,5201:101:1,-11,-20,0,0,-0.13605 -73938,5201:100:2,-10.5,-20,0,0,-0.13605 -73939,5201:100:1,-10,-20,0,0,-0.13605 -73940,5200:209:2,-9.5,-20,0,0,-0.13605 -73941,5200:209:1,-9,-20,0,0,-0.13605 -73942,5200:208:2,-8.5,-20,0,0,-0.13605 -73943,5200:208:1,-8,-20,0,0,-0.13605 -73944,5200:207:2,-7.5,-20,0,0,-0.13605 -73945,5200:207:1,-7,-20,0,0,-0.13605 -73946,5200:206:2,-6.5,-20,0,0,-0.13605 -73947,5200:206:1,-6,-20,0,0,-0.13605 -73948,5200:205:2,-5.5,-20,0,0,-0.13605 -73949,5200:205:1,-5,-20,0,0,-0.13605 -73950,5200:104:2,-4.5,-20,0,0,-0.13605 -73951,5200:104:1,-4,-20,0,0,-0.13605 -73952,5200:103:2,-3.5,-20,0,0,-0.13605 -73953,5200:103:1,-3,-20,0,0,-0.13605 -73954,5200:102:2,-2.5,-20,0,0,-0.13605 -73955,5200:102:1,-2,-20,0,0,-0.13605 -73956,5200:101:2,-1.5,-20,0,0,-0.13605 -73957,5200:101:1,-1,-20,0,0,-0.13605 -73958,5200:100:2,-0.5,-20,0,0,-0.13605 -73959,3200:100:2,0,-20,0,0,-0.13605 -73960,3200:100:2,0.5,-20,0,0,-0.13605 -73961,3200:101:1,1,-20,0,0,-0.13605 -73962,3200:101:2,1.5,-20,0,0,-0.13605 -73963,3200:102:1,2,-20,0,0,-0.13605 -73964,3200:102:2,2.5,-20,0,0,-0.13605 -73965,3200:103:1,3,-20,0,0,-0.13605 -73966,3200:103:2,3.5,-20,0,0,-0.13605 -73967,3200:104:1,4,-20,0,0,-0.13605 -73968,3200:104:2,4.5,-20,0,0,-0.13605 -73969,3200:205:1,5,-20,0,0,-0.13605 -73970,3200:205:2,5.5,-20,0,0,-0.13605 -73971,3200:206:1,6,-20,0,0,-0.13605 -73972,3200:206:2,6.5,-20,0,0,-0.13605 -73973,3200:207:1,7,-20,0,0,-0.13605 -73974,3200:207:2,7.5,-20,0,0,-0.13605 -73975,3200:208:1,8,-20,0,0,-0.13605 -73976,3200:208:2,8.5,-20,0,0,-0.13605 -73977,3200:209:1,9,-20,0,0,-0.13605 -73978,3200:209:2,9.5,-20,0,0,-0.13605 -73979,3201:100:1,10,-20,0,0,-0.13605 -73980,3201:100:2,10.5,-20,0,0,-0.13605 -73981,3201:101:1,11,-20,0,0,-0.13605 -73982,3201:101:2,11.5,-20,0,0,-0.13605 -73983,3201:102:1,12,-20,0,0,-0.13605 -73984,3201:102:2,12.5,-20,0,0,-0.13605 -73985,3201:103:1,13,-20,0,0,-0.13605 -73986,3201:103:2,13.5,-20,0,0,-0.13605 -73987,3201:104:1,14,-20,0,0,-0.13605 -73988,3201:104:2,14.5,-20,0,0,-0.13605 -73989,3203:102:2,32.5,-20,0,0,-0.160592 -73990,3203:103:1,33,-20,0,0,-0.149065 -73991,3203:103:2,33.5,-20,0,0,-0.157655 -73992,3203:104:1,34,-20,0,0,-0.162183 -73993,3203:104:2,34.5,-20,0,0,-0.164446 -73994,3203:205:1,35,-20,0,0,-0.165511 -73995,3203:205:2,35.5,-20,0,0,-0.168035 -73996,3203:206:1,36,-20,0,0,-0.161495 -73997,3203:206:2,36.5,-20,0,0,-0.159083 -73998,3203:207:1,37,-20,0,0,-0.145361 -73999,3203:207:2,37.5,-20,0,0,-0.13605 -74000,3203:208:1,38,-20,0,0,-0.13605 -74001,3203:208:2,38.5,-20,0,0,-0.13605 -74002,3203:209:1,39,-20,0,0,-0.13605 -74003,3203:209:2,39.5,-20,0,0,-0.13784 -74004,3204:100:1,40,-20,0,0,-0.140923 -74005,3204:100:2,40.5,-20,0,0,-0.13981 -74006,3204:101:1,41,-20,0,0,-0.140942 -74007,3204:101:2,41.5,-20,0,0,-0.143703 -74008,3204:102:1,42,-20,0,0,-0.14157 -74009,3204:102:2,42.5,-20,0,0,-0.14293 -74010,3204:103:1,43,-20,0,0,-0.150875 -74011,3204:103:2,43.5,-20,0,0,-0.162005 -74012,3204:104:1,44,-20,0,0,-0.166676 -74013,3204:104:2,44.5,-20,0,0,-0.154949 -74014,3204:205:1,45,-20,0,0,-0.139207 -74015,3204:205:2,45.5,-20,0,0,-0.136149 -74016,3204:206:1,46,-20,0,0,-0.13605 -74017,3204:206:2,46.5,-20,0,0,-0.13605 -74018,3204:207:1,47,-20,0,0,-0.13605 -74019,3204:207:2,47.5,-20,0,0,-0.13605 -74020,3204:208:1,48,-20,0,0,-0.13605 -74021,3204:208:2,48.5,-20,0,0,-0.13605 -74022,3204:209:1,49,-20,0,0,-0.13605 -74023,3204:209:2,49.5,-20,0,0,-0.13605 -74024,3205:100:1,50,-20,0,0,-0.13605 -74025,3205:100:2,50.5,-20,0,0,-0.13605 -74026,3205:101:1,51,-20,0,0,-0.13605 -74027,3205:101:2,51.5,-20,0,0,-0.13605 -74028,3205:102:1,52,-20,0,0,-0.13605 -74029,3205:102:2,52.5,-20,0,0,-0.13605 -74030,3205:103:1,53,-20,0,0,-0.13605 -74031,3205:103:2,53.5,-20,0,0,-0.13605 -74032,3205:104:1,54,-20,0,0,-0.13605 -74033,3205:104:2,54.5,-20,0,0,-0.13605 -74034,3205:205:1,55,-20,0,0,-0.13605 -74035,3205:205:2,55.5,-20,0,0,-0.13605 -74036,3205:206:1,56,-20,0,0,-0.13605 -74037,3205:206:2,56.5,-20,0,0,-0.13605 -74038,3205:207:1,57,-20,0,0,-0.13605 -74039,3205:207:2,57.5,-20,0,0,-0.13605 -74040,3205:208:1,58,-20,0,0,-0.13605 -74041,3205:208:2,58.5,-20,0,0,-0.13605 -74042,3205:209:1,59,-20,0,0,-0.13605 -74043,3205:209:2,59.5,-20,0,0,-0.13605 -74044,3206:100:1,60,-20,0,0,-0.13605 -74045,3206:100:2,60.5,-20,0,0,-0.13605 -74046,3206:101:1,61,-20,0,0,-0.13605 -74047,3206:101:2,61.5,-20,0,0,-0.13605 -74048,3206:102:1,62,-20,0,0,-0.13605 -74049,3206:102:2,62.5,-20,0,0,-0.13605 -74050,3206:103:1,63,-20,0,0,-0.13605 -74051,3206:103:2,63.5,-20,0,0,-0.13605 -74052,3206:104:1,64,-20,0,0,-0.13605 -74053,3206:104:2,64.5,-20,0,0,-0.13605 -74054,3206:205:1,65,-20,0,0,-0.13605 -74055,3206:205:2,65.5,-20,0,0,-0.13605 -74056,3206:206:1,66,-20,0,0,-0.13605 -74057,3206:206:2,66.5,-20,0,0,-0.13605 -74058,3206:207:1,67,-20,0,0,-0.13605 -74059,3206:207:2,67.5,-20,0,0,-0.13605 -74060,3206:208:1,68,-20,0,0,-0.13605 -74061,3206:208:2,68.5,-20,0,0,-0.13605 -74062,3206:209:1,69,-20,0,0,-0.13605 -74063,3206:209:2,69.5,-20,0,0,-0.13605 -74064,3207:100:1,70,-20,0,0,-0.13605 -74065,3207:100:2,70.5,-20,0,0,-0.13605 -74066,3207:101:1,71,-20,0,0,-0.13605 -74067,3207:101:2,71.5,-20,0,0,-0.13605 -74068,3207:102:1,72,-20,0,0,-0.13605 -74069,3207:102:2,72.5,-20,0,0,-0.13605 -74070,3207:103:2,73.5,-20,0,0,-0.13605 -74071,3207:104:1,74,-20,0,0,-0.13605 -74072,3207:104:2,74.5,-20,0,0,-0.13605 -74073,3207:205:1,75,-20,0,0,-0.13605 -74074,3207:205:2,75.5,-20,0,0,-0.13605 -74075,3207:206:1,76,-20,0,0,-0.13605 -74076,3207:206:2,76.5,-20,0,0,-0.13605 -74077,3207:207:1,77,-20,0,0,-0.13605 -74078,3207:207:2,77.5,-20,0,0,-0.13605 -74079,3207:208:1,78,-20,0,0,-0.13605 -74080,3207:208:2,78.5,-20,0,0,-0.13605 -74081,3207:209:1,79,-20,0,0,-0.13605 -74082,3207:209:2,79.5,-20,0,0,-0.13605 -74083,3208:100:1,80,-20,0,0,-0.13605 -74084,3208:100:2,80.5,-20,0,0,-0.13605 -74085,3208:101:1,81,-20,0,0,-0.13605 -74086,3208:101:2,81.5,-20,0,0,-0.13605 -74087,3208:102:1,82,-20,0,0,-0.13605 -74088,3208:102:2,82.5,-20,0,0,-0.13605 -74089,3208:103:1,83,-20,0,0,-0.13605 -74090,3208:103:2,83.5,-20,0,0,-0.13605 -74091,3208:104:1,84,-20,0,0,-0.13605 -74092,3208:104:2,84.5,-20,0,0,-0.13605 -74093,3208:205:1,85,-20,0,0,-0.13605 -74094,3208:205:2,85.5,-20,0,0,-0.13605 -74095,3208:206:1,86,-20,0,0,-0.13605 -74096,3208:206:2,86.5,-20,0,0,-0.13605 -74097,3208:207:1,87,-20,0,0,-0.13605 -74098,3208:207:2,87.5,-20,0,0,-0.13605 -74099,3208:208:1,88,-20,0,0,-0.13605 -74100,3208:208:2,88.5,-20,0,0,-0.13605 -74101,3208:209:1,89,-20,0,0,-0.13605 -74102,3208:209:2,89.5,-20,0,0,-0.13605 -74103,3209:100:1,90,-20,0,0,-0.13605 -74104,3209:100:2,90.5,-20,0,0,-0.13605 -74105,3209:101:1,91,-20,0,0,-0.13605 -74106,3209:101:2,91.5,-20,0,0,-0.13605 -74107,3209:102:1,92,-20,0,0,-0.13605 -74108,3209:102:2,92.5,-20,0,0,-0.13605 -74109,3209:103:1,93,-20,0,0,-0.13605 -74110,3209:103:2,93.5,-20,0,0,-0.13605 -74111,3209:104:1,94,-20,0,0,-0.13605 -74112,3209:104:2,94.5,-20,0,0,-0.13605 -74113,3209:205:1,95,-20,0,0,-0.13605 -74114,3209:205:2,95.5,-20,0,0,-0.13605 -74115,3209:206:1,96,-20,0,0,-0.13605 -74116,3209:206:2,96.5,-20,0,0,-0.13605 -74117,3209:207:1,97,-20,0,0,-0.13605 -74118,3209:207:2,97.5,-20,0,0,-0.13605 -74119,3209:208:1,98,-20,0,0,-0.13605 -74120,3209:208:2,98.5,-20,0,0,-0.13605 -74121,3209:209:1,99,-20,0,0,-0.13605 -74122,3209:209:2,99.5,-20,0,0,-0.13605 -74123,3210:100:1,100,-20,0,0,-0.13605 -74124,3210:100:2,100.5,-20,0,0,-0.13605 -74125,3210:101:1,101,-20,0,0,-0.13605 -74126,3210:101:2,101.5,-20,0,0,-0.13605 -74127,3210:102:1,102,-20,0,0,-0.13605 -74128,3210:102:2,102.5,-20,0,0,-0.13605 -74129,3210:103:1,103,-20,0,0,-0.13605 -74130,3210:103:2,103.5,-20,0,0,-0.13605 -74131,3210:104:1,104,-20,0,0,-0.13605 -74132,3210:104:2,104.5,-20,0,0,-0.13605 -74133,3210:205:1,105,-20,0,0,-0.13605 -74134,3210:205:2,105.5,-20,0,0,-0.13605 -74135,3210:206:1,106,-20,0,0,-0.13605 -74136,3210:206:2,106.5,-20,0,0,-0.13605 -74137,3210:207:1,107,-20,0,0,-0.13605 -74138,3210:207:2,107.5,-20,0,0,-0.13605 -74139,3210:208:1,108,-20,0,0,-0.13605 -74140,3210:208:2,108.5,-20,0,0,-0.13605 -74141,3210:209:1,109,-20,0,0,-0.13605 -74142,3210:209:2,109.5,-20,0,0,-0.13605 -74143,3211:100:1,110,-20,0,0,-0.13605 -74144,3211:100:2,110.5,-20,0,0,-0.13605 -74145,3211:101:1,111,-20,0,0,-0.13605 -74146,3211:101:2,111.5,-20,0,0,-0.13605 -74147,3211:102:1,112,-20,0,0,-0.13605 -74148,3211:102:2,112.5,-20,0,0,-0.13605 -74149,3211:103:1,113,-20,0,0,-0.13605 -74150,3211:104:1,114,-20,0,0,-0.13605 -74151,3215:103:2,153.5,-20,0,0,-0.137103 -74152,3215:104:1,154,-20,0,0,-0.145597 -74153,3215:104:2,154.5,-20,0,0,-0.143509 -74154,3215:205:1,155,-20,0,0,-0.13605 -74155,3215:205:2,155.5,-20,0,0,-0.13605 -74156,3215:206:1,156,-20,0,0,-0.13605 -74157,3215:206:2,156.5,-20,0,0,-0.13605 -74158,3215:207:1,157,-20,0,0,-0.13605 -74159,3215:207:2,157.5,-20,0,0,-0.13605 -74160,3215:208:1,158,-20,0,0,-0.13605 -74161,3215:208:2,158.5,-20,0,0,-0.13605 -74162,3215:209:1,159,-20,0,0,-0.13605 -74163,3215:209:2,159.5,-20,0,0,-0.13605 -74164,3216:100:1,160,-20,0,0,-0.13605 -74165,3216:100:2,160.5,-20,0,0,-0.13605 -74166,3216:101:1,161,-20,0,0,-0.13605 -74167,3216:101:2,161.5,-20,0,0,-0.13605 -74168,3216:102:1,162,-20,0,0,-0.13605 -74169,3216:102:2,162.5,-20,0,0,-0.13605 -74170,3216:103:1,163,-20,0,0,-0.13605 -74171,3216:103:2,163.5,-20,0,0,-0.13605 -74172,3216:104:1,164,-20,0,0,-0.13605 -74173,3216:104:2,164.5,-20,0,0,-0.13605 -74174,3216:205:1,165,-20,0,0,-0.13605 -74175,3216:205:2,165.5,-20,0,0,-0.13605 -74176,3216:206:1,166,-20,0,0,-0.13605 -74177,3216:206:2,166.5,-20,0,0,-0.13605 -74178,3216:207:1,167,-20,0,0,-0.13605 -74179,3216:207:2,167.5,-20,0,0,-0.13605 -74180,3216:208:1,168,-20,0,0,-0.13605 -74181,3216:208:2,168.5,-20,0,0,-0.13605 -74182,3216:209:1,169,-20,0,0,-0.13605 -74183,3216:209:2,169.5,-20,0,0,-0.13605 -74184,3217:100:1,170,-20,0,0,-0.13605 -74185,3217:100:2,170.5,-20,0,0,-0.13605 -74186,3217:101:1,171,-20,0,0,-0.13605 -74187,3217:101:2,171.5,-20,0,0,-0.13605 -74188,3217:102:1,172,-20,0,0,-0.13605 -74189,3217:102:2,172.5,-20,0,0,-0.13605 -74190,3217:103:1,173,-20,0,0,-0.13605 -74191,3217:103:2,173.5,-20,0,0,-0.13605 -74192,3217:104:1,174,-20,0,0,-0.13605 -74193,3217:104:2,174.5,-20,0,0,-0.13605 -74194,3217:205:1,175,-20,0,0,-0.13605 -74195,3217:205:2,175.5,-20,0,0,-0.13605 -74196,3217:206:1,176,-20,0,0,-0.13605 -74197,3217:206:2,176.5,-20,0,0,-0.13605 -74198,3217:207:1,177,-20,0,0,-0.13605 -74199,3217:207:2,177.5,-20,0,0,-0.13605 -74200,3217:208:1,178,-20,0,0,-0.13605 -74201,3217:208:2,178.5,-20,0,0,-0.13605 -74202,3217:209:1,179,-20,0,0,-0.13605 -74203,3217:209:2,179.5,-20,0,0,-0.13605 -74204,3218:100:1,180,-20,0,0,-0.13605 -74205,5118:390:3,-180,-19.5,0,0,-0.13605 -74206,5117:499:4,-179.5,-19.5,0,0,-0.13605 -74207,5117:499:3,-179,-19.5,0,0,-0.13605 -74208,5117:498:4,-178.5,-19.5,0,0,-0.13605 -74209,5117:498:3,-178,-19.5,0,0,-0.13605 -74210,5117:497:4,-177.5,-19.5,0,0,-0.13605 -74211,5117:497:3,-177,-19.5,0,0,-0.13605 -74212,5117:496:4,-176.5,-19.5,0,0,-0.13605 -74213,5117:496:3,-176,-19.5,0,0,-0.13605 -74214,5117:495:4,-175.5,-19.5,0,0,-0.13605 -74215,5117:495:3,-175,-19.5,0,0,-0.13605 -74216,5117:394:4,-174.5,-19.5,0,0,-0.13605 -74217,5117:394:3,-174,-19.5,0,0,-0.13605 -74218,5117:393:4,-173.5,-19.5,0,0,-0.13605 -74219,5117:393:3,-173,-19.5,0,0,-0.13605 -74220,5117:392:4,-172.5,-19.5,0,0,-0.13605 -74221,5117:392:3,-172,-19.5,0,0,-0.13605 -74222,5117:391:4,-171.5,-19.5,0,0,-0.13605 -74223,5117:391:3,-171,-19.5,0,0,-0.13605 -74224,5117:390:4,-170.5,-19.5,0,0,-0.13605 -74225,5117:390:3,-170,-19.5,0,0,-0.13605 -74226,5116:499:4,-169.5,-19.5,0,0,-0.13605 -74227,5116:499:3,-169,-19.5,0,0,-0.13605 -74228,5116:498:4,-168.5,-19.5,0,0,-0.13605 -74229,5116:498:3,-168,-19.5,0,0,-0.13605 -74230,5116:497:4,-167.5,-19.5,0,0,-0.13605 -74231,5116:497:3,-167,-19.5,0,0,-0.13605 -74232,5116:496:4,-166.5,-19.5,0,0,-0.13605 -74233,5116:496:3,-166,-19.5,0,0,-0.13605 -74234,5116:495:4,-165.5,-19.5,0,0,-0.13605 -74235,5116:495:3,-165,-19.5,0,0,-0.13605 -74236,5116:394:4,-164.5,-19.5,0,0,-0.13605 -74237,5116:394:3,-164,-19.5,0,0,-0.13605 -74238,5116:393:4,-163.5,-19.5,0,0,-0.13605 -74239,5116:393:3,-163,-19.5,0,0,-0.13605 -74240,5116:392:4,-162.5,-19.5,0,0,-0.13605 -74241,5116:392:3,-162,-19.5,0,0,-0.13605 -74242,5116:391:4,-161.5,-19.5,0,0,-0.13605 -74243,5116:391:3,-161,-19.5,0,0,-0.13605 -74244,5116:390:4,-160.5,-19.5,0,0,-0.13605 -74245,5116:390:3,-160,-19.5,0,0,-0.13605 -74246,5115:499:4,-159.5,-19.5,0,0,-0.13605 -74247,5115:499:3,-159,-19.5,0,0,-0.13605 -74248,5115:498:4,-158.5,-19.5,0,0,-0.13605 -74249,5115:498:3,-158,-19.5,0,0,-0.13605 -74250,5115:497:4,-157.5,-19.5,0,0,-0.13605 -74251,5115:497:3,-157,-19.5,0,0,-0.13605 -74252,5115:496:4,-156.5,-19.5,0,0,-0.13605 -74253,5115:496:3,-156,-19.5,0,0,-0.13605 -74254,5115:495:4,-155.5,-19.5,0,0,-0.13605 -74255,5115:495:3,-155,-19.5,0,0,-0.13605 -74256,5115:394:4,-154.5,-19.5,0,0,-0.13605 -74257,5115:394:3,-154,-19.5,0,0,-0.13605 -74258,5115:393:4,-153.5,-19.5,0,0,-0.13605 -74259,5115:393:3,-153,-19.5,0,0,-0.13605 -74260,5115:392:4,-152.5,-19.5,0,0,-0.13605 -74261,5115:392:3,-152,-19.5,0,0,-0.13605 -74262,5115:391:4,-151.5,-19.5,0,0,-0.13605 -74263,5115:391:3,-151,-19.5,0,0,-0.13605 -74264,5115:390:4,-150.5,-19.5,0,0,-0.13605 -74265,5115:390:3,-150,-19.5,0,0,-0.13605 -74266,5114:499:4,-149.5,-19.5,0,0,-0.13605 -74267,5114:499:3,-149,-19.5,0,0,-0.13605 -74268,5114:498:4,-148.5,-19.5,0,0,-0.13605 -74269,5114:498:3,-148,-19.5,0,0,-0.13605 -74270,5114:497:4,-147.5,-19.5,0,0,-0.13605 -74271,5114:497:3,-147,-19.5,0,0,-0.13605 -74272,5114:496:4,-146.5,-19.5,0,0,-0.13605 -74273,5114:496:3,-146,-19.5,0,0,-0.13605 -74274,5114:495:4,-145.5,-19.5,0,0,-0.13605 -74275,5114:495:3,-145,-19.5,0,0,-0.13605 -74276,5114:394:4,-144.5,-19.5,0,0,-0.13605 -74277,5114:394:3,-144,-19.5,0,0,-0.13605 -74278,5114:393:4,-143.5,-19.5,0,0,-0.13605 -74279,5114:393:3,-143,-19.5,0,0,-0.13605 -74280,5114:392:4,-142.5,-19.5,0,0,-0.13605 -74281,5114:392:3,-142,-19.5,0,0,-0.13605 -74282,5114:391:4,-141.5,-19.5,0,0,-0.13605 -74283,5114:391:3,-141,-19.5,0,0,-0.13605 -74284,5114:390:4,-140.5,-19.5,0,0,-0.13605 -74285,5114:390:3,-140,-19.5,0,0,-0.13605 -74286,5113:499:4,-139.5,-19.5,0,0,-0.13605 -74287,5113:499:3,-139,-19.5,0,0,-0.13605 -74288,5113:498:4,-138.5,-19.5,0,0,-0.13605 -74289,5113:498:3,-138,-19.5,0,0,-0.13605 -74290,5113:497:4,-137.5,-19.5,0,0,-0.13605 -74291,5113:497:3,-137,-19.5,0,0,-0.13605 -74292,5113:496:4,-136.5,-19.5,0,0,-0.13605 -74293,5113:496:3,-136,-19.5,0,0,-0.13605 -74294,5113:495:4,-135.5,-19.5,0,0,-0.13605 -74295,5113:495:3,-135,-19.5,0,0,-0.13605 -74296,5113:394:4,-134.5,-19.5,0,0,-0.13605 -74297,5113:394:3,-134,-19.5,0,0,-0.13605 -74298,5113:393:4,-133.5,-19.5,0,0,-0.13605 -74299,5113:393:3,-133,-19.5,0,0,-0.13605 -74300,5113:392:4,-132.5,-19.5,0,0,-0.13605 -74301,5113:392:3,-132,-19.5,0,0,-0.13605 -74302,5113:391:4,-131.5,-19.5,0,0,-0.13605 -74303,5113:391:3,-131,-19.5,0,0,-0.13605 -74304,5113:390:4,-130.5,-19.5,0,0,-0.13605 -74305,5113:390:3,-130,-19.5,0,0,-0.13605 -74306,5112:499:4,-129.5,-19.5,0,0,-0.13605 -74307,5112:499:3,-129,-19.5,0,0,-0.13605 -74308,5112:498:4,-128.5,-19.5,0,0,-0.13605 -74309,5112:498:3,-128,-19.5,0,0,-0.13605 -74310,5112:497:4,-127.5,-19.5,0,0,-0.13605 -74311,5112:497:3,-127,-19.5,0,0,-0.13605 -74312,5112:496:4,-126.5,-19.5,0,0,-0.13605 -74313,5112:496:3,-126,-19.5,0,0,-0.13605 -74314,5112:495:4,-125.5,-19.5,0,0,-0.13605 -74315,5112:495:3,-125,-19.5,0,0,-0.13605 -74316,5112:394:4,-124.5,-19.5,0,0,-0.13605 -74317,5112:394:3,-124,-19.5,0,0,-0.13605 -74318,5112:393:4,-123.5,-19.5,0,0,-0.13605 -74319,5112:393:3,-123,-19.5,0,0,-0.13605 -74320,5112:392:4,-122.5,-19.5,0,0,-0.13605 -74321,5112:392:3,-122,-19.5,0,0,-0.13605 -74322,5112:391:4,-121.5,-19.5,0,0,-0.13605 -74323,5112:391:3,-121,-19.5,0,0,-0.13605 -74324,5112:390:4,-120.5,-19.5,0,0,-0.13605 -74325,5112:390:3,-120,-19.5,0,0,-0.13605 -74326,5111:499:4,-119.5,-19.5,0,0,-0.13605 -74327,5111:499:3,-119,-19.5,0,0,-0.13605 -74328,5111:498:4,-118.5,-19.5,0,0,-0.13605 -74329,5111:498:3,-118,-19.5,0,0,-0.13605 -74330,5111:497:4,-117.5,-19.5,0,0,-0.13605 -74331,5111:497:3,-117,-19.5,0,0,-0.13605 -74332,5111:496:4,-116.5,-19.5,0,0,-0.13605 -74333,5111:496:3,-116,-19.5,0,0,-0.13605 -74334,5111:495:4,-115.5,-19.5,0,0,-0.13605 -74335,5111:495:3,-115,-19.5,0,0,-0.13605 -74336,5111:394:4,-114.5,-19.5,0,0,-0.13605 -74337,5111:394:3,-114,-19.5,0,0,-0.13605 -74338,5111:393:4,-113.5,-19.5,0,0,-0.13605 -74339,5111:393:3,-113,-19.5,0,0,-0.13605 -74340,5111:392:4,-112.5,-19.5,0,0,-0.13605 -74341,5111:392:3,-112,-19.5,0,0,-0.13605 -74342,5111:391:4,-111.5,-19.5,0,0,-0.13605 -74343,5111:391:3,-111,-19.5,0,0,-0.13605 -74344,5111:390:4,-110.5,-19.5,0,0,-0.13605 -74345,5111:390:3,-110,-19.5,0,0,-0.13605 -74346,5110:499:4,-109.5,-19.5,0,0,-0.13605 -74347,5110:499:3,-109,-19.5,0,0,-0.13605 -74348,5110:498:4,-108.5,-19.5,0,0,-0.13605 -74349,5110:498:3,-108,-19.5,0,0,-0.13605 -74350,5110:497:4,-107.5,-19.5,0,0,-0.13605 -74351,5110:497:3,-107,-19.5,0,0,-0.13605 -74352,5110:496:4,-106.5,-19.5,0,0,-0.13605 -74353,5110:496:3,-106,-19.5,0,0,-0.13605 -74354,5110:495:4,-105.5,-19.5,0,0,-0.13605 -74355,5110:495:3,-105,-19.5,0,0,-0.13605 -74356,5110:394:4,-104.5,-19.5,0,0,-0.13605 -74357,5110:394:3,-104,-19.5,0,0,-0.13605 -74358,5110:393:4,-103.5,-19.5,0,0,-0.13605 -74359,5110:393:3,-103,-19.5,0,0,-0.13605 -74360,5110:392:4,-102.5,-19.5,0,0,-0.13605 -74361,5110:392:3,-102,-19.5,0,0,-0.13605 -74362,5110:391:4,-101.5,-19.5,0,0,-0.13605 -74363,5110:391:3,-101,-19.5,0,0,-0.13605 -74364,5110:390:4,-100.5,-19.5,0,0,-0.13605 -74365,5110:390:3,-100,-19.5,0,0,-0.13605 -74366,5109:499:4,-99.5,-19.5,0,0,-0.13605 -74367,5109:499:3,-99,-19.5,0,0,-0.13605 -74368,5109:498:4,-98.5,-19.5,0,0,-0.13605 -74369,5109:498:3,-98,-19.5,0,0,-0.13605 -74370,5109:497:4,-97.5,-19.5,0,0,-0.13605 -74371,5109:497:3,-97,-19.5,0,0,-0.13605 -74372,5109:496:4,-96.5,-19.5,0,0,-0.13605 -74373,5109:496:3,-96,-19.5,0,0,-0.13605 -74374,5109:495:4,-95.5,-19.5,0,0,-0.13605 -74375,5109:495:3,-95,-19.5,0,0,-0.13605 -74376,5109:394:4,-94.5,-19.5,0,0,-0.13605 -74377,5109:394:3,-94,-19.5,0,0,-0.13605 -74378,5109:393:4,-93.5,-19.5,0,0,-0.13605 -74379,5109:393:3,-93,-19.5,0,0,-0.13605 -74380,5109:392:4,-92.5,-19.5,0,0,-0.13605 -74381,5109:392:3,-92,-19.5,0,0,-0.13605 -74382,5109:391:4,-91.5,-19.5,0,0,-0.13605 -74383,5109:391:3,-91,-19.5,0,0,-0.13605 -74384,5109:390:4,-90.5,-19.5,0,0,-0.13605 -74385,5109:390:3,-90,-19.5,0,0,-0.13605 -74386,5108:499:4,-89.5,-19.5,0,0,-0.13605 -74387,5108:499:3,-89,-19.5,0,0,-0.13605 -74388,5108:498:4,-88.5,-19.5,0,0,-0.13605 -74389,5108:498:3,-88,-19.5,0,0,-0.13605 -74390,5108:497:4,-87.5,-19.5,0,0,-0.13605 -74391,5108:497:3,-87,-19.5,0,0,-0.13605 -74392,5108:496:4,-86.5,-19.5,0,0,-0.13605 -74393,5108:496:3,-86,-19.5,0,0,-0.13605 -74394,5108:495:4,-85.5,-19.5,0,0,-0.13605 -74395,5108:495:3,-85,-19.5,0,0,-0.13605 -74396,5108:394:4,-84.5,-19.5,0,0,-0.13605 -74397,5108:394:3,-84,-19.5,0,0,-0.13605 -74398,5108:393:4,-83.5,-19.5,0,0,-0.13605 -74399,5108:393:3,-83,-19.5,0,0,-0.13605 -74400,5108:392:4,-82.5,-19.5,0,0,-0.13605 -74401,5108:392:3,-82,-19.5,0,0,-0.13605 -74402,5108:391:4,-81.5,-19.5,0,0,-0.13605 -74403,5108:391:3,-81,-19.5,0,0,-0.13605 -74404,5108:390:4,-80.5,-19.5,0,0,-0.13605 -74405,5108:390:3,-80,-19.5,0,0,-0.13605 -74406,5107:499:4,-79.5,-19.5,0,0,-0.13605 -74407,5107:499:3,-79,-19.5,0,0,-0.13605 -74408,5107:498:4,-78.5,-19.5,0,0,-0.13605 -74409,5107:498:3,-78,-19.5,0,0,-0.13605 -74410,5107:497:4,-77.5,-19.5,0,0,-0.13605 -74411,5107:497:3,-77,-19.5,0,0,-0.13605 -74412,5107:496:4,-76.5,-19.5,0,0,-0.13605 -74413,5107:496:3,-76,-19.5,0,0,-0.13605 -74414,5107:495:4,-75.5,-19.5,0,0,-0.13605 -74415,5107:495:3,-75,-19.5,0,0,-0.13605 -74416,5107:394:4,-74.5,-19.5,0,0,-0.13605 -74417,5107:394:3,-74,-19.5,0,0,-0.13605 -74418,5107:393:4,-73.5,-19.5,0,0,-0.13605 -74419,5107:393:3,-73,-19.5,0,0,-0.13605 -74420,5107:392:4,-72.5,-19.5,0,0,-0.13605 -74421,5107:392:3,-72,-19.5,0,0,-0.13605 -74422,5107:391:4,-71.5,-19.5,0,0,-0.13605 -74423,5107:391:3,-71,-19.5,0,0,-0.13605 -74424,5107:390:4,-70.5,-19.5,0,0,-0.13605 -74425,5104:498:3,-48,-19.5,0,0,-0.164084 -74426,5104:497:4,-47.5,-19.5,0,0,-0.146981 -74427,5104:497:3,-47,-19.5,0,0,-0.13605 -74428,5104:496:4,-46.5,-19.5,0,0,-0.13605 -74429,5104:496:3,-46,-19.5,0,0,-0.13605 -74430,5104:495:4,-45.5,-19.5,0,0,-0.15016 -74431,5104:495:3,-45,-19.5,0,0,-0.16123 -74432,5104:394:4,-44.5,-19.5,0,0,-0.159475 -74433,5104:394:3,-44,-19.5,0,0,-0.157892 -74434,5104:393:4,-43.5,-19.5,0,0,-0.159977 -74435,5104:393:3,-43,-19.5,0,0,-0.159781 -74436,5104:392:4,-42.5,-19.5,0,0,-0.155647 -74437,5104:392:3,-42,-19.5,0,0,-0.148661 -74438,5104:391:4,-41.5,-19.5,0,0,-0.148541 -74439,5104:391:3,-41,-19.5,0,0,-0.150201 -74440,5104:390:4,-40.5,-19.5,0,0,-0.150977 -74441,5104:390:3,-40,-19.5,0,0,-0.149166 -74442,5103:499:4,-39.5,-19.5,0,0,-0.148099 -74443,5103:499:3,-39,-19.5,0,0,-0.148561 -74444,5103:498:4,-38.5,-19.5,0,0,-0.148139 -74445,5103:498:3,-38,-19.5,0,0,-0.147459 -74446,5103:497:4,-37.5,-19.5,0,0,-0.147379 -74447,5103:497:3,-37,-19.5,0,0,-0.147718 -74448,5103:496:4,-36.5,-19.5,0,0,-0.146644 -74449,5103:496:3,-36,-19.5,0,0,-0.143587 -74450,5103:495:4,-35.5,-19.5,0,0,-0.138935 -74451,5103:495:3,-35,-19.5,0,0,-0.136317 -74452,5103:394:4,-34.5,-19.5,0,0,-0.13605 -74453,5103:394:3,-34,-19.5,0,0,-0.13605 -74454,5103:393:4,-33.5,-19.5,0,0,-0.13605 -74455,5103:393:3,-33,-19.5,0,0,-0.13605 -74456,5103:392:4,-32.5,-19.5,0,0,-0.13605 -74457,5103:392:3,-32,-19.5,0,0,-0.13605 -74458,5103:391:4,-31.5,-19.5,0,0,-0.13605 -74459,5103:391:3,-31,-19.5,0,0,-0.13605 -74460,5103:390:4,-30.5,-19.5,0,0,-0.13605 -74461,5103:390:3,-30,-19.5,0,0,-0.13605 -74462,5102:499:4,-29.5,-19.5,0,0,-0.13605 -74463,5102:499:3,-29,-19.5,0,0,-0.13605 -74464,5102:498:4,-28.5,-19.5,0,0,-0.13605 -74465,5102:498:3,-28,-19.5,0,0,-0.13605 -74466,5102:497:4,-27.5,-19.5,0,0,-0.13605 -74467,5102:497:3,-27,-19.5,0,0,-0.13605 -74468,5102:496:4,-26.5,-19.5,0,0,-0.13605 -74469,5102:496:3,-26,-19.5,0,0,-0.13605 -74470,5102:495:4,-25.5,-19.5,0,0,-0.13605 -74471,5102:495:3,-25,-19.5,0,0,-0.13605 -74472,5102:394:4,-24.5,-19.5,0,0,-0.13605 -74473,5102:394:3,-24,-19.5,0,0,-0.13605 -74474,5102:393:4,-23.5,-19.5,0,0,-0.13605 -74475,5102:393:3,-23,-19.5,0,0,-0.13605 -74476,5102:392:4,-22.5,-19.5,0,0,-0.13605 -74477,5102:392:3,-22,-19.5,0,0,-0.13605 -74478,5102:391:4,-21.5,-19.5,0,0,-0.13605 -74479,5102:391:3,-21,-19.5,0,0,-0.13605 -74480,5102:390:4,-20.5,-19.5,0,0,-0.13605 -74481,5102:390:3,-20,-19.5,0,0,-0.13605 -74482,5101:499:4,-19.5,-19.5,0,0,-0.13605 -74483,5101:499:3,-19,-19.5,0,0,-0.13605 -74484,5101:498:4,-18.5,-19.5,0,0,-0.13605 -74485,5101:498:3,-18,-19.5,0,0,-0.13605 -74486,5101:497:4,-17.5,-19.5,0,0,-0.13605 -74487,5101:497:3,-17,-19.5,0,0,-0.13605 -74488,5101:496:4,-16.5,-19.5,0,0,-0.13605 -74489,5101:496:3,-16,-19.5,0,0,-0.13605 -74490,5101:495:4,-15.5,-19.5,0,0,-0.13605 -74491,5101:495:3,-15,-19.5,0,0,-0.13605 -74492,5101:394:4,-14.5,-19.5,0,0,-0.13605 -74493,5101:394:3,-14,-19.5,0,0,-0.13605 -74494,5101:393:4,-13.5,-19.5,0,0,-0.13605 -74495,5101:393:3,-13,-19.5,0,0,-0.13605 -74496,5101:392:4,-12.5,-19.5,0,0,-0.13605 -74497,5101:392:3,-12,-19.5,0,0,-0.13605 -74498,5101:391:4,-11.5,-19.5,0,0,-0.13605 -74499,5101:391:3,-11,-19.5,0,0,-0.13605 -74500,5101:390:4,-10.5,-19.5,0,0,-0.13605 -74501,5101:390:3,-10,-19.5,0,0,-0.13605 -74502,5100:499:4,-9.5,-19.5,0,0,-0.13605 -74503,5100:499:3,-9,-19.5,0,0,-0.13605 -74504,5100:498:4,-8.5,-19.5,0,0,-0.13605 -74505,5100:498:3,-8,-19.5,0,0,-0.13605 -74506,5100:497:4,-7.5,-19.5,0,0,-0.13605 -74507,5100:497:3,-7,-19.5,0,0,-0.13605 -74508,5100:496:4,-6.5,-19.5,0,0,-0.13605 -74509,5100:496:3,-6,-19.5,0,0,-0.13605 -74510,5100:495:4,-5.5,-19.5,0,0,-0.13605 -74511,5100:495:3,-5,-19.5,0,0,-0.13605 -74512,5100:394:4,-4.5,-19.5,0,0,-0.13605 -74513,5100:394:3,-4,-19.5,0,0,-0.13605 -74514,5100:393:4,-3.5,-19.5,0,0,-0.13605 -74515,5100:393:3,-3,-19.5,0,0,-0.13605 -74516,5100:392:4,-2.5,-19.5,0,0,-0.13605 -74517,5100:392:3,-2,-19.5,0,0,-0.13605 -74518,5100:391:4,-1.5,-19.5,0,0,-0.13605 -74519,5100:391:3,-1,-19.5,0,0,-0.13605 -74520,5100:390:4,-0.5,-19.5,0,0,-0.13605 -74521,3100:390:4,0,-19.5,0,0,-0.13605 -74522,3100:390:4,0.5,-19.5,0,0,-0.13605 -74523,3100:391:3,1,-19.5,0,0,-0.13605 -74524,3100:391:4,1.5,-19.5,0,0,-0.13605 -74525,3100:392:3,2,-19.5,0,0,-0.13605 -74526,3100:392:4,2.5,-19.5,0,0,-0.13605 -74527,3100:393:3,3,-19.5,0,0,-0.13605 -74528,3100:393:4,3.5,-19.5,0,0,-0.13605 -74529,3100:394:3,4,-19.5,0,0,-0.13605 -74530,3100:394:4,4.5,-19.5,0,0,-0.13605 -74531,3100:495:3,5,-19.5,0,0,-0.13605 -74532,3100:495:4,5.5,-19.5,0,0,-0.13605 -74533,3100:496:3,6,-19.5,0,0,-0.13605 -74534,3100:496:4,6.5,-19.5,0,0,-0.13605 -74535,3100:497:3,7,-19.5,0,0,-0.13605 -74536,3100:497:4,7.5,-19.5,0,0,-0.13605 -74537,3100:498:3,8,-19.5,0,0,-0.13605 -74538,3100:498:4,8.5,-19.5,0,0,-0.13605 -74539,3100:499:3,9,-19.5,0,0,-0.13605 -74540,3100:499:4,9.5,-19.5,0,0,-0.13605 -74541,3101:390:3,10,-19.5,0,0,-0.13605 -74542,3101:390:4,10.5,-19.5,0,0,-0.13605 -74543,3101:391:3,11,-19.5,0,0,-0.13605 -74544,3101:391:4,11.5,-19.5,0,0,-0.13605 -74545,3101:392:3,12,-19.5,0,0,-0.13605 -74546,3101:392:4,12.5,-19.5,0,0,-0.13605 -74547,3101:393:3,13,-19.5,0,0,-0.13605 -74548,3101:393:4,13.5,-19.5,0,0,-0.13605 -74549,3101:394:3,14,-19.5,0,0,-0.13605 -74550,3101:394:4,14.5,-19.5,0,0,-0.13605 -74551,3103:393:3,33,-19.5,0,0,-0.145853 -74552,3103:393:4,33.5,-19.5,0,0,-0.155097 -74553,3103:394:3,34,-19.5,0,0,-0.163612 -74554,3103:394:4,34.5,-19.5,0,0,-0.169219 -74555,3103:495:3,35,-19.5,0,0,-0.173552 -74556,3103:495:4,35.5,-19.5,0,0,-0.17607 -74557,3103:496:3,36,-19.5,0,0,-0.168521 -74558,3103:496:4,36.5,-19.5,0,0,-0.161164 -74559,3103:497:3,37,-19.5,0,0,-0.151737 -74560,3103:497:4,37.5,-19.5,0,0,-0.148299 -74561,3103:498:3,38,-19.5,0,0,-0.137789 -74562,3103:498:4,38.5,-19.5,0,0,-0.137521 -74563,3103:499:3,39,-19.5,0,0,-0.145695 -74564,3103:499:4,39.5,-19.5,0,0,-0.152709 -74565,3104:390:3,40,-19.5,0,0,-0.155605 -74566,3104:390:4,40.5,-19.5,0,0,-0.152585 -74567,3104:391:3,41,-19.5,0,0,-0.150119 -74568,3104:391:4,41.5,-19.5,0,0,-0.150486 -74569,3104:392:3,42,-19.5,0,0,-0.151264 -74570,3104:392:4,42.5,-19.5,0,0,-0.153772 -74571,3104:393:3,43,-19.5,0,0,-0.172427 -74572,3104:393:4,43.5,-19.5,0,0,-0.185093 -74573,3104:394:3,44,-19.5,0,0,-0.176535 -74574,3104:394:4,44.5,-19.5,0,0,-0.157505 -74575,3104:496:3,46,-19.5,0,0,-0.13605 -74576,3104:496:4,46.5,-19.5,0,0,-0.136101 -74577,3104:497:3,47,-19.5,0,0,-0.13655 -74578,3104:497:4,47.5,-19.5,0,0,-0.145518 -74579,3104:498:3,48,-19.5,0,0,-0.148299 -74580,3104:498:4,48.5,-19.5,0,0,-0.142258 -74581,3104:499:3,49,-19.5,0,0,-0.136195 -74582,3104:499:4,49.5,-19.5,0,0,-0.139434 -74583,3105:390:3,50,-19.5,0,0,-0.139585 -74584,3105:390:4,50.5,-19.5,0,0,-0.13605 -74585,3105:391:3,51,-19.5,0,0,-0.13605 -74586,3105:391:4,51.5,-19.5,0,0,-0.13605 -74587,3105:392:3,52,-19.5,0,0,-0.13605 -74588,3105:392:4,52.5,-19.5,0,0,-0.13605 -74589,3105:393:3,53,-19.5,0,0,-0.13605 -74590,3105:393:4,53.5,-19.5,0,0,-0.13605 -74591,3105:394:3,54,-19.5,0,0,-0.13605 -74592,3105:394:4,54.5,-19.5,0,0,-0.13605 -74593,3105:495:3,55,-19.5,0,0,-0.13605 -74594,3105:495:4,55.5,-19.5,0,0,-0.13605 -74595,3105:496:3,56,-19.5,0,0,-0.13605 -74596,3105:496:4,56.5,-19.5,0,0,-0.13605 -74597,3105:497:3,57,-19.5,0,0,-0.13605 -74598,3105:497:4,57.5,-19.5,0,0,-0.13605 -74599,3105:498:3,58,-19.5,0,0,-0.13605 -74600,3105:498:4,58.5,-19.5,0,0,-0.13605 -74601,3105:499:3,59,-19.5,0,0,-0.13605 -74602,3105:499:4,59.5,-19.5,0,0,-0.13605 -74603,3106:390:3,60,-19.5,0,0,-0.13605 -74604,3106:390:4,60.5,-19.5,0,0,-0.13605 -74605,3106:391:3,61,-19.5,0,0,-0.13605 -74606,3106:391:4,61.5,-19.5,0,0,-0.13605 -74607,3106:392:3,62,-19.5,0,0,-0.13605 -74608,3106:392:4,62.5,-19.5,0,0,-0.13605 -74609,3106:393:3,63,-19.5,0,0,-0.13605 -74610,3106:393:4,63.5,-19.5,0,0,-0.13605 -74611,3106:394:3,64,-19.5,0,0,-0.13605 -74612,3106:394:4,64.5,-19.5,0,0,-0.13605 -74613,3106:495:3,65,-19.5,0,0,-0.13605 -74614,3106:495:4,65.5,-19.5,0,0,-0.13605 -74615,3106:496:3,66,-19.5,0,0,-0.13605 -74616,3106:496:4,66.5,-19.5,0,0,-0.13605 -74617,3106:497:3,67,-19.5,0,0,-0.13605 -74618,3106:497:4,67.5,-19.5,0,0,-0.13605 -74619,3106:498:3,68,-19.5,0,0,-0.13605 -74620,3106:498:4,68.5,-19.5,0,0,-0.13605 -74621,3106:499:3,69,-19.5,0,0,-0.13605 -74622,3106:499:4,69.5,-19.5,0,0,-0.13605 -74623,3107:390:3,70,-19.5,0,0,-0.13605 -74624,3107:390:4,70.5,-19.5,0,0,-0.13605 -74625,3107:391:3,71,-19.5,0,0,-0.13605 -74626,3107:391:4,71.5,-19.5,0,0,-0.13605 -74627,3107:392:3,72,-19.5,0,0,-0.13605 -74628,3107:392:4,72.5,-19.5,0,0,-0.13605 -74629,3107:393:4,73.5,-19.5,0,0,-0.13605 -74630,3107:394:3,74,-19.5,0,0,-0.13605 -74631,3107:394:4,74.5,-19.5,0,0,-0.13605 -74632,3107:495:3,75,-19.5,0,0,-0.13605 -74633,3107:495:4,75.5,-19.5,0,0,-0.13605 -74634,3107:496:3,76,-19.5,0,0,-0.13605 -74635,3107:496:4,76.5,-19.5,0,0,-0.13605 -74636,3107:497:3,77,-19.5,0,0,-0.13605 -74637,3107:497:4,77.5,-19.5,0,0,-0.13605 -74638,3107:498:3,78,-19.5,0,0,-0.13605 -74639,3107:498:4,78.5,-19.5,0,0,-0.13605 -74640,3107:499:3,79,-19.5,0,0,-0.13605 -74641,3107:499:4,79.5,-19.5,0,0,-0.13605 -74642,3108:390:3,80,-19.5,0,0,-0.13605 -74643,3108:390:4,80.5,-19.5,0,0,-0.13605 -74644,3108:391:3,81,-19.5,0,0,-0.13605 -74645,3108:391:4,81.5,-19.5,0,0,-0.13605 -74646,3108:392:3,82,-19.5,0,0,-0.13605 -74647,3108:392:4,82.5,-19.5,0,0,-0.13605 -74648,3108:393:3,83,-19.5,0,0,-0.13605 -74649,3108:393:4,83.5,-19.5,0,0,-0.13605 -74650,3108:394:3,84,-19.5,0,0,-0.13605 -74651,3108:394:4,84.5,-19.5,0,0,-0.13605 -74652,3108:495:3,85,-19.5,0,0,-0.13605 -74653,3108:495:4,85.5,-19.5,0,0,-0.13605 -74654,3108:496:3,86,-19.5,0,0,-0.13605 -74655,3108:496:4,86.5,-19.5,0,0,-0.13605 -74656,3108:497:3,87,-19.5,0,0,-0.13605 -74657,3108:497:4,87.5,-19.5,0,0,-0.13605 -74658,3108:498:3,88,-19.5,0,0,-0.13605 -74659,3108:498:4,88.5,-19.5,0,0,-0.13605 -74660,3108:499:3,89,-19.5,0,0,-0.13605 -74661,3108:499:4,89.5,-19.5,0,0,-0.13605 -74662,3109:390:3,90,-19.5,0,0,-0.13605 -74663,3109:390:4,90.5,-19.5,0,0,-0.13605 -74664,3109:391:3,91,-19.5,0,0,-0.13605 -74665,3109:391:4,91.5,-19.5,0,0,-0.13605 -74666,3109:392:3,92,-19.5,0,0,-0.13605 -74667,3109:392:4,92.5,-19.5,0,0,-0.13605 -74668,3109:393:3,93,-19.5,0,0,-0.13605 -74669,3109:393:4,93.5,-19.5,0,0,-0.13605 -74670,3109:394:3,94,-19.5,0,0,-0.13605 -74671,3109:394:4,94.5,-19.5,0,0,-0.13605 -74672,3109:495:3,95,-19.5,0,0,-0.13605 -74673,3109:495:4,95.5,-19.5,0,0,-0.13605 -74674,3109:496:3,96,-19.5,0,0,-0.13605 -74675,3109:496:4,96.5,-19.5,0,0,-0.13605 -74676,3109:497:3,97,-19.5,0,0,-0.13605 -74677,3109:497:4,97.5,-19.5,0,0,-0.13605 -74678,3109:498:3,98,-19.5,0,0,-0.13605 -74679,3109:498:4,98.5,-19.5,0,0,-0.13605 -74680,3109:499:3,99,-19.5,0,0,-0.13605 -74681,3109:499:4,99.5,-19.5,0,0,-0.13605 -74682,3110:390:3,100,-19.5,0,0,-0.13605 -74683,3110:390:4,100.5,-19.5,0,0,-0.13605 -74684,3110:391:3,101,-19.5,0,0,-0.13605 -74685,3110:391:4,101.5,-19.5,0,0,-0.13605 -74686,3110:392:3,102,-19.5,0,0,-0.13605 -74687,3110:392:4,102.5,-19.5,0,0,-0.13605 -74688,3110:393:3,103,-19.5,0,0,-0.13605 -74689,3110:393:4,103.5,-19.5,0,0,-0.13605 -74690,3110:394:3,104,-19.5,0,0,-0.13605 -74691,3110:394:4,104.5,-19.5,0,0,-0.13605 -74692,3110:495:3,105,-19.5,0,0,-0.13605 -74693,3110:495:4,105.5,-19.5,0,0,-0.13605 -74694,3110:496:3,106,-19.5,0,0,-0.13605 -74695,3110:496:4,106.5,-19.5,0,0,-0.13605 -74696,3110:497:3,107,-19.5,0,0,-0.13605 -74697,3110:497:4,107.5,-19.5,0,0,-0.13605 -74698,3110:498:3,108,-19.5,0,0,-0.13605 -74699,3110:498:4,108.5,-19.5,0,0,-0.13605 -74700,3110:499:3,109,-19.5,0,0,-0.13605 -74701,3110:499:4,109.5,-19.5,0,0,-0.13605 -74702,3111:390:3,110,-19.5,0,0,-0.13605 -74703,3111:390:4,110.5,-19.5,0,0,-0.13605 -74704,3111:391:3,111,-19.5,0,0,-0.13605 -74705,3111:391:4,111.5,-19.5,0,0,-0.13605 -74706,3111:392:3,112,-19.5,0,0,-0.13605 -74707,3111:392:4,112.5,-19.5,0,0,-0.13605 -74708,3111:393:3,113,-19.5,0,0,-0.13605 -74709,3111:393:4,113.5,-19.5,0,0,-0.13605 -74710,3111:394:3,114,-19.5,0,0,-0.13605 -74711,3115:394:3,154,-19.5,0,0,-0.1471 -74712,3115:394:4,154.5,-19.5,0,0,-0.144052 -74713,3115:495:3,155,-19.5,0,0,-0.13605 -74714,3115:495:4,155.5,-19.5,0,0,-0.13605 -74715,3115:496:3,156,-19.5,0,0,-0.13605 -74716,3115:496:4,156.5,-19.5,0,0,-0.13605 -74717,3115:497:3,157,-19.5,0,0,-0.13605 -74718,3115:497:4,157.5,-19.5,0,0,-0.13605 -74719,3115:498:3,158,-19.5,0,0,-0.13605 -74720,3115:498:4,158.5,-19.5,0,0,-0.13605 -74721,3115:499:3,159,-19.5,0,0,-0.13605 -74722,3115:499:4,159.5,-19.5,0,0,-0.13605 -74723,3116:390:3,160,-19.5,0,0,-0.13605 -74724,3116:390:4,160.5,-19.5,0,0,-0.13605 -74725,3116:391:3,161,-19.5,0,0,-0.13605 -74726,3116:391:4,161.5,-19.5,0,0,-0.13605 -74727,3116:392:3,162,-19.5,0,0,-0.13605 -74728,3116:392:4,162.5,-19.5,0,0,-0.13605 -74729,3116:393:3,163,-19.5,0,0,-0.13605 -74730,3116:393:4,163.5,-19.5,0,0,-0.13605 -74731,3116:394:3,164,-19.5,0,0,-0.13605 -74732,3116:394:4,164.5,-19.5,0,0,-0.13605 -74733,3116:495:3,165,-19.5,0,0,-0.13605 -74734,3116:495:4,165.5,-19.5,0,0,-0.13605 -74735,3116:496:3,166,-19.5,0,0,-0.13605 -74736,3116:496:4,166.5,-19.5,0,0,-0.13605 -74737,3116:497:3,167,-19.5,0,0,-0.13605 -74738,3116:497:4,167.5,-19.5,0,0,-0.13605 -74739,3116:498:3,168,-19.5,0,0,-0.13605 -74740,3116:498:4,168.5,-19.5,0,0,-0.13605 -74741,3116:499:3,169,-19.5,0,0,-0.13605 -74742,3116:499:4,169.5,-19.5,0,0,-0.13605 -74743,3117:390:3,170,-19.5,0,0,-0.13605 -74744,3117:390:4,170.5,-19.5,0,0,-0.13605 -74745,3117:391:3,171,-19.5,0,0,-0.13605 -74746,3117:391:4,171.5,-19.5,0,0,-0.13605 -74747,3117:392:3,172,-19.5,0,0,-0.13605 -74748,3117:392:4,172.5,-19.5,0,0,-0.13605 -74749,3117:393:3,173,-19.5,0,0,-0.13605 -74750,3117:393:4,173.5,-19.5,0,0,-0.13605 -74751,3117:394:3,174,-19.5,0,0,-0.13605 -74752,3117:394:4,174.5,-19.5,0,0,-0.13605 -74753,3117:495:3,175,-19.5,0,0,-0.13605 -74754,3117:495:4,175.5,-19.5,0,0,-0.13605 -74755,3117:496:3,176,-19.5,0,0,-0.13605 -74756,3117:496:4,176.5,-19.5,0,0,-0.13605 -74757,3117:497:3,177,-19.5,0,0,-0.13605 -74758,3117:497:4,177.5,-19.5,0,0,-0.13605 -74759,3117:498:3,178,-19.5,0,0,-0.13605 -74760,3117:498:4,178.5,-19.5,0,0,-0.13605 -74761,3117:499:3,179,-19.5,0,0,-0.13605 -74762,3117:499:4,179.5,-19.5,0,0,-0.13605 -74763,3118:390:3,180,-19.5,0,0,-0.13605 -74764,5118:390:1,-180,-19,0,0,-0.13605 -74765,5117:499:2,-179.5,-19,0,0,-0.13605 -74766,5117:499:1,-179,-19,0,0,-0.13605 -74767,5117:498:2,-178.5,-19,0,0,-0.13605 -74768,5117:498:1,-178,-19,0,0,-0.13605 -74769,5117:497:2,-177.5,-19,0,0,-0.13605 -74770,5117:497:1,-177,-19,0,0,-0.13605 -74771,5117:496:2,-176.5,-19,0,0,-0.13605 -74772,5117:496:1,-176,-19,0,0,-0.13605 -74773,5117:495:2,-175.5,-19,0,0,-0.13605 -74774,5117:495:1,-175,-19,0,0,-0.13605 -74775,5117:394:2,-174.5,-19,0,0,-0.13605 -74776,5117:394:1,-174,-19,0,0,-0.13605 -74777,5117:393:2,-173.5,-19,0,0,-0.13605 -74778,5117:393:1,-173,-19,0,0,-0.13605 -74779,5117:392:2,-172.5,-19,0,0,-0.13605 -74780,5117:392:1,-172,-19,0,0,-0.13605 -74781,5117:391:2,-171.5,-19,0,0,-0.13605 -74782,5117:391:1,-171,-19,0,0,-0.13605 -74783,5117:390:2,-170.5,-19,0,0,-0.13605 -74784,5117:390:1,-170,-19,0,0,-0.13605 -74785,5116:499:2,-169.5,-19,0,0,-0.13605 -74786,5116:499:1,-169,-19,0,0,-0.13605 -74787,5116:498:2,-168.5,-19,0,0,-0.13605 -74788,5116:498:1,-168,-19,0,0,-0.13605 -74789,5116:497:2,-167.5,-19,0,0,-0.13605 -74790,5116:497:1,-167,-19,0,0,-0.13605 -74791,5116:496:2,-166.5,-19,0,0,-0.13605 -74792,5116:496:1,-166,-19,0,0,-0.13605 -74793,5116:495:2,-165.5,-19,0,0,-0.13605 -74794,5116:495:1,-165,-19,0,0,-0.13605 -74795,5116:394:2,-164.5,-19,0,0,-0.13605 -74796,5116:394:1,-164,-19,0,0,-0.13605 -74797,5116:393:2,-163.5,-19,0,0,-0.13605 -74798,5116:393:1,-163,-19,0,0,-0.13605 -74799,5116:392:2,-162.5,-19,0,0,-0.13605 -74800,5116:392:1,-162,-19,0,0,-0.13605 -74801,5116:391:2,-161.5,-19,0,0,-0.13605 -74802,5116:391:1,-161,-19,0,0,-0.13605 -74803,5116:390:2,-160.5,-19,0,0,-0.13605 -74804,5116:390:1,-160,-19,0,0,-0.13605 -74805,5115:499:2,-159.5,-19,0,0,-0.13605 -74806,5115:499:1,-159,-19,0,0,-0.13605 -74807,5115:498:2,-158.5,-19,0,0,-0.13605 -74808,5115:498:1,-158,-19,0,0,-0.13605 -74809,5115:497:2,-157.5,-19,0,0,-0.13605 -74810,5115:497:1,-157,-19,0,0,-0.13605 -74811,5115:496:2,-156.5,-19,0,0,-0.13605 -74812,5115:496:1,-156,-19,0,0,-0.13605 -74813,5115:495:2,-155.5,-19,0,0,-0.13605 -74814,5115:495:1,-155,-19,0,0,-0.13605 -74815,5115:394:2,-154.5,-19,0,0,-0.13605 -74816,5115:394:1,-154,-19,0,0,-0.13605 -74817,5115:393:2,-153.5,-19,0,0,-0.13605 -74818,5115:393:1,-153,-19,0,0,-0.13605 -74819,5115:392:2,-152.5,-19,0,0,-0.13605 -74820,5115:392:1,-152,-19,0,0,-0.13605 -74821,5115:391:2,-151.5,-19,0,0,-0.13605 -74822,5115:391:1,-151,-19,0,0,-0.13605 -74823,5115:390:2,-150.5,-19,0,0,-0.13605 -74824,5115:390:1,-150,-19,0,0,-0.13605 -74825,5114:499:2,-149.5,-19,0,0,-0.13605 -74826,5114:499:1,-149,-19,0,0,-0.13605 -74827,5114:498:2,-148.5,-19,0,0,-0.13605 -74828,5114:498:1,-148,-19,0,0,-0.13605 -74829,5114:497:2,-147.5,-19,0,0,-0.13605 -74830,5114:497:1,-147,-19,0,0,-0.13605 -74831,5114:496:2,-146.5,-19,0,0,-0.13605 -74832,5114:496:1,-146,-19,0,0,-0.13605 -74833,5114:495:2,-145.5,-19,0,0,-0.13605 -74834,5114:495:1,-145,-19,0,0,-0.13605 -74835,5114:394:2,-144.5,-19,0,0,-0.13605 -74836,5114:394:1,-144,-19,0,0,-0.13605 -74837,5114:393:2,-143.5,-19,0,0,-0.13605 -74838,5114:393:1,-143,-19,0,0,-0.13605 -74839,5114:392:2,-142.5,-19,0,0,-0.13605 -74840,5114:392:1,-142,-19,0,0,-0.13605 -74841,5114:391:2,-141.5,-19,0,0,-0.13605 -74842,5114:391:1,-141,-19,0,0,-0.13605 -74843,5114:390:2,-140.5,-19,0,0,-0.13605 -74844,5114:390:1,-140,-19,0,0,-0.13605 -74845,5113:499:2,-139.5,-19,0,0,-0.13605 -74846,5113:499:1,-139,-19,0,0,-0.13605 -74847,5113:498:2,-138.5,-19,0,0,-0.13605 -74848,5113:498:1,-138,-19,0,0,-0.13605 -74849,5113:497:2,-137.5,-19,0,0,-0.13605 -74850,5113:497:1,-137,-19,0,0,-0.13605 -74851,5113:496:2,-136.5,-19,0,0,-0.13605 -74852,5113:496:1,-136,-19,0,0,-0.13605 -74853,5113:495:2,-135.5,-19,0,0,-0.13605 -74854,5113:495:1,-135,-19,0,0,-0.13605 -74855,5113:394:2,-134.5,-19,0,0,-0.13605 -74856,5113:394:1,-134,-19,0,0,-0.13605 -74857,5113:393:2,-133.5,-19,0,0,-0.13605 -74858,5113:393:1,-133,-19,0,0,-0.13605 -74859,5113:392:2,-132.5,-19,0,0,-0.13605 -74860,5113:392:1,-132,-19,0,0,-0.13605 -74861,5113:391:2,-131.5,-19,0,0,-0.13605 -74862,5113:391:1,-131,-19,0,0,-0.13605 -74863,5113:390:2,-130.5,-19,0,0,-0.13605 -74864,5113:390:1,-130,-19,0,0,-0.13605 -74865,5112:499:2,-129.5,-19,0,0,-0.13605 -74866,5112:499:1,-129,-19,0,0,-0.13605 -74867,5112:498:2,-128.5,-19,0,0,-0.13605 -74868,5112:498:1,-128,-19,0,0,-0.13605 -74869,5112:497:2,-127.5,-19,0,0,-0.13605 -74870,5112:497:1,-127,-19,0,0,-0.13605 -74871,5112:496:2,-126.5,-19,0,0,-0.13605 -74872,5112:496:1,-126,-19,0,0,-0.13605 -74873,5112:495:2,-125.5,-19,0,0,-0.13605 -74874,5112:495:1,-125,-19,0,0,-0.13605 -74875,5112:394:2,-124.5,-19,0,0,-0.13605 -74876,5112:394:1,-124,-19,0,0,-0.13605 -74877,5112:393:2,-123.5,-19,0,0,-0.13605 -74878,5112:393:1,-123,-19,0,0,-0.13605 -74879,5112:392:2,-122.5,-19,0,0,-0.13605 -74880,5112:392:1,-122,-19,0,0,-0.13605 -74881,5112:391:2,-121.5,-19,0,0,-0.13605 -74882,5112:391:1,-121,-19,0,0,-0.13605 -74883,5112:390:2,-120.5,-19,0,0,-0.13605 -74884,5112:390:1,-120,-19,0,0,-0.13605 -74885,5111:499:2,-119.5,-19,0,0,-0.13605 -74886,5111:499:1,-119,-19,0,0,-0.13605 -74887,5111:498:2,-118.5,-19,0,0,-0.13605 -74888,5111:498:1,-118,-19,0,0,-0.13605 -74889,5111:497:2,-117.5,-19,0,0,-0.13605 -74890,5111:497:1,-117,-19,0,0,-0.13605 -74891,5111:496:2,-116.5,-19,0,0,-0.13605 -74892,5111:496:1,-116,-19,0,0,-0.13605 -74893,5111:495:2,-115.5,-19,0,0,-0.13605 -74894,5111:495:1,-115,-19,0,0,-0.13605 -74895,5111:394:2,-114.5,-19,0,0,-0.13605 -74896,5111:394:1,-114,-19,0,0,-0.13605 -74897,5111:393:2,-113.5,-19,0,0,-0.13605 -74898,5111:393:1,-113,-19,0,0,-0.13605 -74899,5111:392:2,-112.5,-19,0,0,-0.13605 -74900,5111:392:1,-112,-19,0,0,-0.13605 -74901,5111:391:2,-111.5,-19,0,0,-0.13605 -74902,5111:391:1,-111,-19,0,0,-0.13605 -74903,5111:390:2,-110.5,-19,0,0,-0.13605 -74904,5111:390:1,-110,-19,0,0,-0.13605 -74905,5110:499:2,-109.5,-19,0,0,-0.13605 -74906,5110:499:1,-109,-19,0,0,-0.13605 -74907,5110:498:2,-108.5,-19,0,0,-0.13605 -74908,5110:498:1,-108,-19,0,0,-0.13605 -74909,5110:497:2,-107.5,-19,0,0,-0.13605 -74910,5110:497:1,-107,-19,0,0,-0.13605 -74911,5110:496:2,-106.5,-19,0,0,-0.13605 -74912,5110:496:1,-106,-19,0,0,-0.13605 -74913,5110:495:2,-105.5,-19,0,0,-0.13605 -74914,5110:495:1,-105,-19,0,0,-0.13605 -74915,5110:394:2,-104.5,-19,0,0,-0.13605 -74916,5110:394:1,-104,-19,0,0,-0.13605 -74917,5110:393:2,-103.5,-19,0,0,-0.13605 -74918,5110:393:1,-103,-19,0,0,-0.13605 -74919,5110:392:2,-102.5,-19,0,0,-0.13605 -74920,5110:392:1,-102,-19,0,0,-0.13605 -74921,5110:391:2,-101.5,-19,0,0,-0.13605 -74922,5110:391:1,-101,-19,0,0,-0.13605 -74923,5110:390:2,-100.5,-19,0,0,-0.13605 -74924,5110:390:1,-100,-19,0,0,-0.13605 -74925,5109:499:2,-99.5,-19,0,0,-0.13605 -74926,5109:499:1,-99,-19,0,0,-0.13605 -74927,5109:498:2,-98.5,-19,0,0,-0.13605 -74928,5109:498:1,-98,-19,0,0,-0.13605 -74929,5109:497:2,-97.5,-19,0,0,-0.13605 -74930,5109:497:1,-97,-19,0,0,-0.13605 -74931,5109:496:2,-96.5,-19,0,0,-0.13605 -74932,5109:496:1,-96,-19,0,0,-0.13605 -74933,5109:495:2,-95.5,-19,0,0,-0.13605 -74934,5109:495:1,-95,-19,0,0,-0.13605 -74935,5109:394:2,-94.5,-19,0,0,-0.13605 -74936,5109:394:1,-94,-19,0,0,-0.13605 -74937,5109:393:2,-93.5,-19,0,0,-0.13605 -74938,5109:393:1,-93,-19,0,0,-0.13605 -74939,5109:392:2,-92.5,-19,0,0,-0.13605 -74940,5109:392:1,-92,-19,0,0,-0.13605 -74941,5109:391:2,-91.5,-19,0,0,-0.13605 -74942,5109:391:1,-91,-19,0,0,-0.13605 -74943,5109:390:2,-90.5,-19,0,0,-0.13605 -74944,5109:390:1,-90,-19,0,0,-0.13605 -74945,5108:499:2,-89.5,-19,0,0,-0.13605 -74946,5108:499:1,-89,-19,0,0,-0.13605 -74947,5108:498:2,-88.5,-19,0,0,-0.13605 -74948,5108:498:1,-88,-19,0,0,-0.13605 -74949,5108:497:2,-87.5,-19,0,0,-0.13605 -74950,5108:497:1,-87,-19,0,0,-0.13605 -74951,5108:496:2,-86.5,-19,0,0,-0.13605 -74952,5108:496:1,-86,-19,0,0,-0.13605 -74953,5108:495:2,-85.5,-19,0,0,-0.13605 -74954,5108:495:1,-85,-19,0,0,-0.13605 -74955,5108:394:2,-84.5,-19,0,0,-0.13605 -74956,5108:394:1,-84,-19,0,0,-0.13605 -74957,5108:393:2,-83.5,-19,0,0,-0.13605 -74958,5108:393:1,-83,-19,0,0,-0.13605 -74959,5108:392:2,-82.5,-19,0,0,-0.13605 -74960,5108:392:1,-82,-19,0,0,-0.13605 -74961,5108:391:2,-81.5,-19,0,0,-0.13605 -74962,5108:391:1,-81,-19,0,0,-0.13605 -74963,5108:390:2,-80.5,-19,0,0,-0.13605 -74964,5108:390:1,-80,-19,0,0,-0.13605 -74965,5107:499:2,-79.5,-19,0,0,-0.13605 -74966,5107:499:1,-79,-19,0,0,-0.13605 -74967,5107:498:2,-78.5,-19,0,0,-0.13605 -74968,5107:498:1,-78,-19,0,0,-0.13605 -74969,5107:497:2,-77.5,-19,0,0,-0.13605 -74970,5107:497:1,-77,-19,0,0,-0.13605 -74971,5107:496:2,-76.5,-19,0,0,-0.13605 -74972,5107:496:1,-76,-19,0,0,-0.13605 -74973,5107:495:2,-75.5,-19,0,0,-0.13605 -74974,5107:495:1,-75,-19,0,0,-0.13605 -74975,5107:394:2,-74.5,-19,0,0,-0.13605 -74976,5107:394:1,-74,-19,0,0,-0.13605 -74977,5107:393:2,-73.5,-19,0,0,-0.13605 -74978,5107:393:1,-73,-19,0,0,-0.13605 -74979,5107:392:2,-72.5,-19,0,0,-0.13605 -74980,5107:392:1,-72,-19,0,0,-0.13605 -74981,5107:391:2,-71.5,-19,0,0,-0.13605 -74982,5107:391:1,-71,-19,0,0,-0.13605 -74983,5104:497:1,-47,-19,0,0,-0.138209 -74984,5104:496:2,-46.5,-19,0,0,-0.13605 -74985,5104:496:1,-46,-19,0,0,-0.13605 -74986,5104:495:2,-45.5,-19,0,0,-0.136156 -74987,5104:495:1,-45,-19,0,0,-0.159955 -74988,5104:394:2,-44.5,-19,0,0,-0.165147 -74989,5104:394:1,-44,-19,0,0,-0.166081 -74990,5104:393:2,-43.5,-19,0,0,-0.165351 -74991,5104:393:1,-43,-19,0,0,-0.163052 -74992,5104:392:2,-42.5,-19,0,0,-0.159344 -74993,5104:392:1,-42,-19,0,0,-0.155987 -74994,5104:391:2,-41.5,-19,0,0,-0.15535 -74995,5104:391:1,-41,-19,0,0,-0.158692 -74996,5104:390:2,-40.5,-19,0,0,-0.162138 -74997,5104:390:1,-40,-19,0,0,-0.161296 -74998,5103:499:2,-39.5,-19,0,0,-0.158822 -74999,5103:499:1,-39,-19,0,0,-0.158194 -75000,5103:498:2,-38.5,-19,0,0,-0.157054 -75001,5103:498:1,-38,-19,0,0,-0.155498 -75002,5103:497:2,-37.5,-19,0,0,-0.154738 -75003,5103:497:1,-37,-19,0,0,-0.154801 -75004,5103:496:2,-36.5,-19,0,0,-0.154317 -75005,5103:496:1,-36,-19,0,0,-0.152647 -75006,5103:495:2,-35.5,-19,0,0,-0.149692 -75007,5103:495:1,-35,-19,0,0,-0.146326 -75008,5103:394:2,-34.5,-19,0,0,-0.143936 -75009,5103:394:1,-34,-19,0,0,-0.1422 -75010,5103:393:2,-33.5,-19,0,0,-0.141818 -75011,5103:393:1,-33,-19,0,0,-0.141741 -75012,5103:392:2,-32.5,-19,0,0,-0.142162 -75013,5103:392:1,-32,-19,0,0,-0.142372 -75014,5103:391:2,-31.5,-19,0,0,-0.142066 -75015,5103:391:1,-31,-19,0,0,-0.141151 -75016,5103:390:2,-30.5,-19,0,0,-0.140375 -75017,5103:390:1,-30,-19,0,0,-0.139941 -75018,5102:499:2,-29.5,-19,0,0,-0.138513 -75019,5102:499:1,-29,-19,0,0,-0.136304 -75020,5102:498:2,-28.5,-19,0,0,-0.13605 -75021,5102:498:1,-28,-19,0,0,-0.13605 -75022,5102:497:2,-27.5,-19,0,0,-0.13605 -75023,5102:497:1,-27,-19,0,0,-0.13605 -75024,5102:496:2,-26.5,-19,0,0,-0.13605 -75025,5102:496:1,-26,-19,0,0,-0.13605 -75026,5102:495:2,-25.5,-19,0,0,-0.13605 -75027,5102:495:1,-25,-19,0,0,-0.13605 -75028,5102:394:2,-24.5,-19,0,0,-0.13605 -75029,5102:394:1,-24,-19,0,0,-0.13605 -75030,5102:393:2,-23.5,-19,0,0,-0.13605 -75031,5102:393:1,-23,-19,0,0,-0.13605 -75032,5102:392:2,-22.5,-19,0,0,-0.13605 -75033,5102:392:1,-22,-19,0,0,-0.13605 -75034,5102:391:2,-21.5,-19,0,0,-0.13605 -75035,5102:391:1,-21,-19,0,0,-0.13605 -75036,5102:390:2,-20.5,-19,0,0,-0.13605 -75037,5102:390:1,-20,-19,0,0,-0.13605 -75038,5101:499:2,-19.5,-19,0,0,-0.13605 -75039,5101:499:1,-19,-19,0,0,-0.13605 -75040,5101:498:2,-18.5,-19,0,0,-0.13605 -75041,5101:498:1,-18,-19,0,0,-0.13605 -75042,5101:497:2,-17.5,-19,0,0,-0.13605 -75043,5101:497:1,-17,-19,0,0,-0.13605 -75044,5101:496:2,-16.5,-19,0,0,-0.13605 -75045,5101:496:1,-16,-19,0,0,-0.13605 -75046,5101:495:2,-15.5,-19,0,0,-0.13605 -75047,5101:495:1,-15,-19,0,0,-0.13605 -75048,5101:394:2,-14.5,-19,0,0,-0.13605 -75049,5101:394:1,-14,-19,0,0,-0.13605 -75050,5101:393:2,-13.5,-19,0,0,-0.13605 -75051,5101:393:1,-13,-19,0,0,-0.13605 -75052,5101:392:2,-12.5,-19,0,0,-0.13605 -75053,5101:392:1,-12,-19,0,0,-0.13605 -75054,5101:391:2,-11.5,-19,0,0,-0.13605 -75055,5101:391:1,-11,-19,0,0,-0.13605 -75056,5101:390:2,-10.5,-19,0,0,-0.13605 -75057,5101:390:1,-10,-19,0,0,-0.13605 -75058,5100:499:2,-9.5,-19,0,0,-0.13605 -75059,5100:499:1,-9,-19,0,0,-0.13605 -75060,5100:498:2,-8.5,-19,0,0,-0.13605 -75061,5100:498:1,-8,-19,0,0,-0.13605 -75062,5100:497:2,-7.5,-19,0,0,-0.13605 -75063,5100:497:1,-7,-19,0,0,-0.13605 -75064,5100:496:2,-6.5,-19,0,0,-0.13605 -75065,5100:496:1,-6,-19,0,0,-0.13605 -75066,5100:495:2,-5.5,-19,0,0,-0.13605 -75067,5100:495:1,-5,-19,0,0,-0.13605 -75068,5100:394:2,-4.5,-19,0,0,-0.13605 -75069,5100:394:1,-4,-19,0,0,-0.13605 -75070,5100:393:2,-3.5,-19,0,0,-0.13605 -75071,5100:393:1,-3,-19,0,0,-0.13605 -75072,5100:392:2,-2.5,-19,0,0,-0.13605 -75073,5100:392:1,-2,-19,0,0,-0.13605 -75074,5100:391:2,-1.5,-19,0,0,-0.13605 -75075,5100:391:1,-1,-19,0,0,-0.13605 -75076,5100:390:2,-0.5,-19,0,0,-0.13605 -75077,3100:390:2,0,-19,0,0,-0.13605 -75078,3100:390:2,0.5,-19,0,0,-0.13605 -75079,3100:391:1,1,-19,0,0,-0.13605 -75080,3100:391:2,1.5,-19,0,0,-0.13605 -75081,3100:392:1,2,-19,0,0,-0.13605 -75082,3100:392:2,2.5,-19,0,0,-0.13605 -75083,3100:393:1,3,-19,0,0,-0.13605 -75084,3100:393:2,3.5,-19,0,0,-0.13605 -75085,3100:394:1,4,-19,0,0,-0.13605 -75086,3100:394:2,4.5,-19,0,0,-0.13605 -75087,3100:495:1,5,-19,0,0,-0.13605 -75088,3100:495:2,5.5,-19,0,0,-0.13605 -75089,3100:496:1,6,-19,0,0,-0.13605 -75090,3100:496:2,6.5,-19,0,0,-0.13605 -75091,3100:497:1,7,-19,0,0,-0.13605 -75092,3100:497:2,7.5,-19,0,0,-0.13605 -75093,3100:498:1,8,-19,0,0,-0.13605 -75094,3100:498:2,8.5,-19,0,0,-0.13605 -75095,3100:499:1,9,-19,0,0,-0.13605 -75096,3100:499:2,9.5,-19,0,0,-0.13605 -75097,3101:390:1,10,-19,0,0,-0.13605 -75098,3101:390:2,10.5,-19,0,0,-0.13605 -75099,3101:391:1,11,-19,0,0,-0.13605 -75100,3101:391:2,11.5,-19,0,0,-0.13605 -75101,3101:392:1,12,-19,0,0,-0.13605 -75102,3101:392:2,12.5,-19,0,0,-0.13605 -75103,3101:393:1,13,-19,0,0,-0.13605 -75104,3101:393:2,13.5,-19,0,0,-0.13605 -75105,3101:394:1,14,-19,0,0,-0.13605 -75106,3103:495:1,35,-19,0,0,-0.161076 -75107,3103:495:2,35.5,-19,0,0,-0.191908 -75108,3103:496:1,36,-19,0,0,-0.17257 -75109,3103:496:2,36.5,-19,0,0,-0.167365 -75110,3103:497:1,37,-19,0,0,-0.160966 -75111,3103:497:2,37.5,-19,0,0,-0.160966 -75112,3103:498:1,38,-19,0,0,-0.159432 -75113,3103:498:2,38.5,-19,0,0,-0.15273 -75114,3103:499:1,39,-19,0,0,-0.150998 -75115,3103:499:2,39.5,-19,0,0,-0.155435 -75116,3104:390:1,40,-19,0,0,-0.161098 -75117,3104:390:2,40.5,-19,0,0,-0.156712 -75118,3104:391:1,41,-19,0,0,-0.153021 -75119,3104:391:2,41.5,-19,0,0,-0.155456 -75120,3104:392:1,42,-19,0,0,-0.162739 -75121,3104:392:2,42.5,-19,0,0,-0.179777 -75122,3104:393:1,43,-19,0,0,-0.197557 -75123,3104:393:2,43.5,-19,0,0,-0.187228 -75124,3104:497:1,47,-19,0,0,-0.136408 -75125,3104:497:2,47.5,-19,0,0,-0.151387 -75126,3104:498:1,48,-19,0,0,-0.157871 -75127,3104:498:2,48.5,-19,0,0,-0.15459 -75128,3104:499:1,49,-19,0,0,-0.147919 -75129,3104:499:2,49.5,-19,0,0,-0.143664 -75130,3105:390:1,50,-19,0,0,-0.147061 -75131,3105:390:2,50.5,-19,0,0,-0.144402 -75132,3105:391:1,51,-19,0,0,-0.13605 -75133,3105:391:2,51.5,-19,0,0,-0.136136 -75134,3105:392:1,52,-19,0,0,-0.139622 -75135,3105:392:2,52.5,-19,0,0,-0.14045 -75136,3105:393:1,53,-19,0,0,-0.136086 -75137,3105:393:2,53.5,-19,0,0,-0.13605 -75138,3105:394:1,54,-19,0,0,-0.13605 -75139,3105:394:2,54.5,-19,0,0,-0.13605 -75140,3105:495:1,55,-19,0,0,-0.13605 -75141,3105:495:2,55.5,-19,0,0,-0.13605 -75142,3105:496:1,56,-19,0,0,-0.13605 -75143,3105:496:2,56.5,-19,0,0,-0.13605 -75144,3105:497:1,57,-19,0,0,-0.13605 -75145,3105:497:2,57.5,-19,0,0,-0.13605 -75146,3105:498:1,58,-19,0,0,-0.13605 -75147,3105:498:2,58.5,-19,0,0,-0.137455 -75148,3105:499:1,59,-19,0,0,-0.137287 -75149,3105:499:2,59.5,-19,0,0,-0.13605 -75150,3106:390:1,60,-19,0,0,-0.13605 -75151,3106:390:2,60.5,-19,0,0,-0.13605 -75152,3106:391:1,61,-19,0,0,-0.13605 -75153,3106:391:2,61.5,-19,0,0,-0.13605 -75154,3106:392:1,62,-19,0,0,-0.13605 -75155,3106:392:2,62.5,-19,0,0,-0.13605 -75156,3106:393:1,63,-19,0,0,-0.13605 -75157,3106:393:2,63.5,-19,0,0,-0.13605 -75158,3106:394:1,64,-19,0,0,-0.13605 -75159,3106:394:2,64.5,-19,0,0,-0.13605 -75160,3106:495:1,65,-19,0,0,-0.13605 -75161,3106:495:2,65.5,-19,0,0,-0.13605 -75162,3106:496:1,66,-19,0,0,-0.13605 -75163,3106:496:2,66.5,-19,0,0,-0.13605 -75164,3106:497:1,67,-19,0,0,-0.13605 -75165,3106:497:2,67.5,-19,0,0,-0.13605 -75166,3106:498:1,68,-19,0,0,-0.13605 -75167,3106:498:2,68.5,-19,0,0,-0.13605 -75168,3106:499:1,69,-19,0,0,-0.13605 -75169,3106:499:2,69.5,-19,0,0,-0.13605 -75170,3107:390:1,70,-19,0,0,-0.13605 -75171,3107:390:2,70.5,-19,0,0,-0.13605 -75172,3107:391:1,71,-19,0,0,-0.13605 -75173,3107:391:2,71.5,-19,0,0,-0.13605 -75174,3107:392:1,72,-19,0,0,-0.13605 -75175,3107:392:2,72.5,-19,0,0,-0.13605 -75176,3107:393:2,73.5,-19,0,0,-0.13605 -75177,3107:394:1,74,-19,0,0,-0.13605 -75178,3107:394:2,74.5,-19,0,0,-0.13605 -75179,3107:495:1,75,-19,0,0,-0.13605 -75180,3107:495:2,75.5,-19,0,0,-0.13605 -75181,3107:496:1,76,-19,0,0,-0.13605 -75182,3107:496:2,76.5,-19,0,0,-0.13605 -75183,3107:497:1,77,-19,0,0,-0.13605 -75184,3107:497:2,77.5,-19,0,0,-0.13605 -75185,3107:498:1,78,-19,0,0,-0.13605 -75186,3107:498:2,78.5,-19,0,0,-0.13605 -75187,3107:499:1,79,-19,0,0,-0.13605 -75188,3107:499:2,79.5,-19,0,0,-0.13605 -75189,3108:390:1,80,-19,0,0,-0.13605 -75190,3108:390:2,80.5,-19,0,0,-0.13605 -75191,3108:391:1,81,-19,0,0,-0.13605 -75192,3108:391:2,81.5,-19,0,0,-0.13605 -75193,3108:392:1,82,-19,0,0,-0.13605 -75194,3108:392:2,82.5,-19,0,0,-0.13605 -75195,3108:393:1,83,-19,0,0,-0.13605 -75196,3108:393:2,83.5,-19,0,0,-0.13605 -75197,3108:394:1,84,-19,0,0,-0.13605 -75198,3108:394:2,84.5,-19,0,0,-0.13605 -75199,3108:495:1,85,-19,0,0,-0.13605 -75200,3108:495:2,85.5,-19,0,0,-0.13605 -75201,3108:496:1,86,-19,0,0,-0.13605 -75202,3108:496:2,86.5,-19,0,0,-0.13605 -75203,3108:497:1,87,-19,0,0,-0.13605 -75204,3108:497:2,87.5,-19,0,0,-0.13605 -75205,3108:498:1,88,-19,0,0,-0.13605 -75206,3108:498:2,88.5,-19,0,0,-0.13605 -75207,3108:499:1,89,-19,0,0,-0.13605 -75208,3108:499:2,89.5,-19,0,0,-0.13605 -75209,3109:390:1,90,-19,0,0,-0.13605 -75210,3109:390:2,90.5,-19,0,0,-0.13605 -75211,3109:391:1,91,-19,0,0,-0.13605 -75212,3109:391:2,91.5,-19,0,0,-0.13605 -75213,3109:392:1,92,-19,0,0,-0.13605 -75214,3109:392:2,92.5,-19,0,0,-0.13605 -75215,3109:393:1,93,-19,0,0,-0.13605 -75216,3109:393:2,93.5,-19,0,0,-0.13605 -75217,3109:394:1,94,-19,0,0,-0.13605 -75218,3109:394:2,94.5,-19,0,0,-0.13605 -75219,3109:495:1,95,-19,0,0,-0.13605 -75220,3109:495:2,95.5,-19,0,0,-0.13605 -75221,3109:496:1,96,-19,0,0,-0.13605 -75222,3109:496:2,96.5,-19,0,0,-0.13605 -75223,3109:497:1,97,-19,0,0,-0.13605 -75224,3109:497:2,97.5,-19,0,0,-0.13605 -75225,3109:498:1,98,-19,0,0,-0.13605 -75226,3109:498:2,98.5,-19,0,0,-0.13605 -75227,3109:499:1,99,-19,0,0,-0.13605 -75228,3109:499:2,99.5,-19,0,0,-0.13605 -75229,3110:390:1,100,-19,0,0,-0.13605 -75230,3110:390:2,100.5,-19,0,0,-0.13605 -75231,3110:391:1,101,-19,0,0,-0.13605 -75232,3110:391:2,101.5,-19,0,0,-0.13605 -75233,3110:392:1,102,-19,0,0,-0.13605 -75234,3110:392:2,102.5,-19,0,0,-0.13605 -75235,3110:393:1,103,-19,0,0,-0.13605 -75236,3110:393:2,103.5,-19,0,0,-0.13605 -75237,3110:394:1,104,-19,0,0,-0.13605 -75238,3110:394:2,104.5,-19,0,0,-0.13605 -75239,3110:495:1,105,-19,0,0,-0.13605 -75240,3110:495:2,105.5,-19,0,0,-0.13605 -75241,3110:496:1,106,-19,0,0,-0.13605 -75242,3110:496:2,106.5,-19,0,0,-0.13605 -75243,3110:497:1,107,-19,0,0,-0.13605 -75244,3110:497:2,107.5,-19,0,0,-0.13605 -75245,3110:498:1,108,-19,0,0,-0.13605 -75246,3110:498:2,108.5,-19,0,0,-0.13605 -75247,3110:499:1,109,-19,0,0,-0.13605 -75248,3110:499:2,109.5,-19,0,0,-0.13605 -75249,3111:390:1,110,-19,0,0,-0.13605 -75250,3111:390:2,110.5,-19,0,0,-0.13605 -75251,3111:391:1,111,-19,0,0,-0.13605 -75252,3111:391:2,111.5,-19,0,0,-0.13605 -75253,3111:392:1,112,-19,0,0,-0.13605 -75254,3111:392:2,112.5,-19,0,0,-0.13605 -75255,3111:393:1,113,-19,0,0,-0.13605 -75256,3111:393:2,113.5,-19,0,0,-0.13605 -75257,3115:393:1,153,-19,0,0,-0.151285 -75258,3115:393:2,153.5,-19,0,0,-0.150018 -75259,3115:394:1,154,-19,0,0,-0.151655 -75260,3115:394:2,154.5,-19,0,0,-0.147279 -75261,3115:495:1,155,-19,0,0,-0.13605 -75262,3115:495:2,155.5,-19,0,0,-0.13605 -75263,3115:496:1,156,-19,0,0,-0.13605 -75264,3115:496:2,156.5,-19,0,0,-0.13605 -75265,3115:497:1,157,-19,0,0,-0.13605 -75266,3115:497:2,157.5,-19,0,0,-0.13605 -75267,3115:498:1,158,-19,0,0,-0.13605 -75268,3115:498:2,158.5,-19,0,0,-0.13605 -75269,3115:499:1,159,-19,0,0,-0.13605 -75270,3115:499:2,159.5,-19,0,0,-0.13605 -75271,3116:390:1,160,-19,0,0,-0.13605 -75272,3116:390:2,160.5,-19,0,0,-0.13605 -75273,3116:391:1,161,-19,0,0,-0.13605 -75274,3116:391:2,161.5,-19,0,0,-0.13605 -75275,3116:392:1,162,-19,0,0,-0.13605 -75276,3116:392:2,162.5,-19,0,0,-0.13605 -75277,3116:393:1,163,-19,0,0,-0.13605 -75278,3116:393:2,163.5,-19,0,0,-0.13605 -75279,3116:394:1,164,-19,0,0,-0.13605 -75280,3116:394:2,164.5,-19,0,0,-0.13605 -75281,3116:495:1,165,-19,0,0,-0.13605 -75282,3116:495:2,165.5,-19,0,0,-0.13605 -75283,3116:496:1,166,-19,0,0,-0.13605 -75284,3116:496:2,166.5,-19,0,0,-0.13605 -75285,3116:497:1,167,-19,0,0,-0.13605 -75286,3116:497:2,167.5,-19,0,0,-0.13605 -75287,3116:498:1,168,-19,0,0,-0.13605 -75288,3116:498:2,168.5,-19,0,0,-0.13605 -75289,3116:499:1,169,-19,0,0,-0.13605 -75290,3116:499:2,169.5,-19,0,0,-0.13605 -75291,3117:390:1,170,-19,0,0,-0.13605 -75292,3117:390:2,170.5,-19,0,0,-0.13605 -75293,3117:391:1,171,-19,0,0,-0.13605 -75294,3117:391:2,171.5,-19,0,0,-0.13605 -75295,3117:392:1,172,-19,0,0,-0.13605 -75296,3117:392:2,172.5,-19,0,0,-0.13605 -75297,3117:393:1,173,-19,0,0,-0.13605 -75298,3117:393:2,173.5,-19,0,0,-0.13605 -75299,3117:394:1,174,-19,0,0,-0.13605 -75300,3117:394:2,174.5,-19,0,0,-0.13605 -75301,3117:495:1,175,-19,0,0,-0.13605 -75302,3117:495:2,175.5,-19,0,0,-0.13605 -75303,3117:496:1,176,-19,0,0,-0.13605 -75304,3117:496:2,176.5,-19,0,0,-0.13605 -75305,3117:497:1,177,-19,0,0,-0.13605 -75306,3117:497:2,177.5,-19,0,0,-0.13605 -75307,3117:498:1,178,-19,0,0,-0.13605 -75308,3117:498:2,178.5,-19,0,0,-0.13605 -75309,3117:499:1,179,-19,0,0,-0.13605 -75310,3117:499:2,179.5,-19,0,0,-0.13605 -75311,3118:390:1,180,-19,0,0,-0.13605 -75312,5118:380:3,-180,-18.5,0,0,-0.13605 -75313,5117:489:4,-179.5,-18.5,0,0,-0.13605 -75314,5117:489:3,-179,-18.5,0,0,-0.13605 -75315,5117:488:4,-178.5,-18.5,0,0,-0.13605 -75316,5117:488:3,-178,-18.5,0,0,-0.13605 -75317,5117:487:4,-177.5,-18.5,0,0,-0.13605 -75318,5117:487:3,-177,-18.5,0,0,-0.13605 -75319,5117:486:4,-176.5,-18.5,0,0,-0.13605 -75320,5117:486:3,-176,-18.5,0,0,-0.13605 -75321,5117:485:4,-175.5,-18.5,0,0,-0.13605 -75322,5117:485:3,-175,-18.5,0,0,-0.13605 -75323,5117:384:4,-174.5,-18.5,0,0,-0.13605 -75324,5117:384:3,-174,-18.5,0,0,-0.13605 -75325,5117:383:4,-173.5,-18.5,0,0,-0.13605 -75326,5117:383:3,-173,-18.5,0,0,-0.13605 -75327,5117:382:4,-172.5,-18.5,0,0,-0.13605 -75328,5117:382:3,-172,-18.5,0,0,-0.13605 -75329,5117:381:4,-171.5,-18.5,0,0,-0.13605 -75330,5117:381:3,-171,-18.5,0,0,-0.13605 -75331,5117:380:4,-170.5,-18.5,0,0,-0.13605 -75332,5117:380:3,-170,-18.5,0,0,-0.13605 -75333,5116:489:4,-169.5,-18.5,0,0,-0.13605 -75334,5116:489:3,-169,-18.5,0,0,-0.13605 -75335,5116:488:4,-168.5,-18.5,0,0,-0.13605 -75336,5116:488:3,-168,-18.5,0,0,-0.13605 -75337,5116:487:4,-167.5,-18.5,0,0,-0.13605 -75338,5116:487:3,-167,-18.5,0,0,-0.13605 -75339,5116:486:4,-166.5,-18.5,0,0,-0.13605 -75340,5116:486:3,-166,-18.5,0,0,-0.13605 -75341,5116:485:4,-165.5,-18.5,0,0,-0.13605 -75342,5116:485:3,-165,-18.5,0,0,-0.13605 -75343,5116:384:4,-164.5,-18.5,0,0,-0.13605 -75344,5116:384:3,-164,-18.5,0,0,-0.13605 -75345,5116:383:4,-163.5,-18.5,0,0,-0.13605 -75346,5116:383:3,-163,-18.5,0,0,-0.13605 -75347,5116:382:4,-162.5,-18.5,0,0,-0.13605 -75348,5116:382:3,-162,-18.5,0,0,-0.13605 -75349,5116:381:4,-161.5,-18.5,0,0,-0.13605 -75350,5116:381:3,-161,-18.5,0,0,-0.13605 -75351,5116:380:4,-160.5,-18.5,0,0,-0.13605 -75352,5116:380:3,-160,-18.5,0,0,-0.13605 -75353,5115:489:4,-159.5,-18.5,0,0,-0.13605 -75354,5115:489:3,-159,-18.5,0,0,-0.13605 -75355,5115:488:4,-158.5,-18.5,0,0,-0.13605 -75356,5115:488:3,-158,-18.5,0,0,-0.13605 -75357,5115:487:4,-157.5,-18.5,0,0,-0.13605 -75358,5115:487:3,-157,-18.5,0,0,-0.13605 -75359,5115:486:4,-156.5,-18.5,0,0,-0.13605 -75360,5115:486:3,-156,-18.5,0,0,-0.13605 -75361,5115:485:4,-155.5,-18.5,0,0,-0.13605 -75362,5115:485:3,-155,-18.5,0,0,-0.13605 -75363,5115:384:4,-154.5,-18.5,0,0,-0.13605 -75364,5115:384:3,-154,-18.5,0,0,-0.13605 -75365,5115:383:4,-153.5,-18.5,0,0,-0.13605 -75366,5115:383:3,-153,-18.5,0,0,-0.13605 -75367,5115:382:4,-152.5,-18.5,0,0,-0.13605 -75368,5115:382:3,-152,-18.5,0,0,-0.13605 -75369,5115:381:4,-151.5,-18.5,0,0,-0.13605 -75370,5115:381:3,-151,-18.5,0,0,-0.13605 -75371,5115:380:4,-150.5,-18.5,0,0,-0.13605 -75372,5115:380:3,-150,-18.5,0,0,-0.13605 -75373,5114:489:4,-149.5,-18.5,0,0,-0.13605 -75374,5114:489:3,-149,-18.5,0,0,-0.13605 -75375,5114:488:4,-148.5,-18.5,0,0,-0.13605 -75376,5114:488:3,-148,-18.5,0,0,-0.13605 -75377,5114:487:4,-147.5,-18.5,0,0,-0.13605 -75378,5114:487:3,-147,-18.5,0,0,-0.13605 -75379,5114:486:4,-146.5,-18.5,0,0,-0.13605 -75380,5114:486:3,-146,-18.5,0,0,-0.13605 -75381,5114:485:4,-145.5,-18.5,0,0,-0.13605 -75382,5114:485:3,-145,-18.5,0,0,-0.13605 -75383,5114:384:4,-144.5,-18.5,0,0,-0.13605 -75384,5114:384:3,-144,-18.5,0,0,-0.13605 -75385,5114:383:4,-143.5,-18.5,0,0,-0.13605 -75386,5114:383:3,-143,-18.5,0,0,-0.13605 -75387,5114:382:4,-142.5,-18.5,0,0,-0.13605 -75388,5114:382:3,-142,-18.5,0,0,-0.13605 -75389,5114:381:4,-141.5,-18.5,0,0,-0.13605 -75390,5114:381:3,-141,-18.5,0,0,-0.13605 -75391,5114:380:4,-140.5,-18.5,0,0,-0.13605 -75392,5114:380:3,-140,-18.5,0,0,-0.13605 -75393,5113:489:4,-139.5,-18.5,0,0,-0.13605 -75394,5113:489:3,-139,-18.5,0,0,-0.13605 -75395,5113:488:4,-138.5,-18.5,0,0,-0.13605 -75396,5113:488:3,-138,-18.5,0,0,-0.13605 -75397,5113:487:4,-137.5,-18.5,0,0,-0.13605 -75398,5113:487:3,-137,-18.5,0,0,-0.13605 -75399,5113:486:4,-136.5,-18.5,0,0,-0.13605 -75400,5113:486:3,-136,-18.5,0,0,-0.13605 -75401,5113:485:4,-135.5,-18.5,0,0,-0.13605 -75402,5113:485:3,-135,-18.5,0,0,-0.13605 -75403,5113:384:4,-134.5,-18.5,0,0,-0.13605 -75404,5113:384:3,-134,-18.5,0,0,-0.13605 -75405,5113:383:4,-133.5,-18.5,0,0,-0.13605 -75406,5113:383:3,-133,-18.5,0,0,-0.13605 -75407,5113:382:4,-132.5,-18.5,0,0,-0.13605 -75408,5113:382:3,-132,-18.5,0,0,-0.13605 -75409,5113:381:4,-131.5,-18.5,0,0,-0.13605 -75410,5113:381:3,-131,-18.5,0,0,-0.13605 -75411,5113:380:4,-130.5,-18.5,0,0,-0.13605 -75412,5113:380:3,-130,-18.5,0,0,-0.13605 -75413,5112:489:4,-129.5,-18.5,0,0,-0.13605 -75414,5112:489:3,-129,-18.5,0,0,-0.13605 -75415,5112:488:4,-128.5,-18.5,0,0,-0.13605 -75416,5112:488:3,-128,-18.5,0,0,-0.13605 -75417,5112:487:4,-127.5,-18.5,0,0,-0.13605 -75418,5112:487:3,-127,-18.5,0,0,-0.13605 -75419,5112:486:4,-126.5,-18.5,0,0,-0.13605 -75420,5112:486:3,-126,-18.5,0,0,-0.13605 -75421,5112:485:4,-125.5,-18.5,0,0,-0.13605 -75422,5112:485:3,-125,-18.5,0,0,-0.13605 -75423,5112:384:4,-124.5,-18.5,0,0,-0.13605 -75424,5112:384:3,-124,-18.5,0,0,-0.13605 -75425,5112:383:4,-123.5,-18.5,0,0,-0.13605 -75426,5112:383:3,-123,-18.5,0,0,-0.13605 -75427,5112:382:4,-122.5,-18.5,0,0,-0.13605 -75428,5112:382:3,-122,-18.5,0,0,-0.13605 -75429,5112:381:4,-121.5,-18.5,0,0,-0.13605 -75430,5112:381:3,-121,-18.5,0,0,-0.13605 -75431,5112:380:4,-120.5,-18.5,0,0,-0.13605 -75432,5112:380:3,-120,-18.5,0,0,-0.13605 -75433,5111:489:4,-119.5,-18.5,0,0,-0.13605 -75434,5111:489:3,-119,-18.5,0,0,-0.13605 -75435,5111:488:4,-118.5,-18.5,0,0,-0.13605 -75436,5111:488:3,-118,-18.5,0,0,-0.13605 -75437,5111:487:4,-117.5,-18.5,0,0,-0.13605 -75438,5111:487:3,-117,-18.5,0,0,-0.13605 -75439,5111:486:4,-116.5,-18.5,0,0,-0.13605 -75440,5111:486:3,-116,-18.5,0,0,-0.13605 -75441,5111:485:4,-115.5,-18.5,0,0,-0.13605 -75442,5111:485:3,-115,-18.5,0,0,-0.13605 -75443,5111:384:4,-114.5,-18.5,0,0,-0.13605 -75444,5111:384:3,-114,-18.5,0,0,-0.13605 -75445,5111:383:4,-113.5,-18.5,0,0,-0.13605 -75446,5111:383:3,-113,-18.5,0,0,-0.13605 -75447,5111:382:4,-112.5,-18.5,0,0,-0.13605 -75448,5111:382:3,-112,-18.5,0,0,-0.13605 -75449,5111:381:4,-111.5,-18.5,0,0,-0.13605 -75450,5111:381:3,-111,-18.5,0,0,-0.13605 -75451,5111:380:4,-110.5,-18.5,0,0,-0.13605 -75452,5111:380:3,-110,-18.5,0,0,-0.13605 -75453,5110:489:4,-109.5,-18.5,0,0,-0.13605 -75454,5110:489:3,-109,-18.5,0,0,-0.13605 -75455,5110:488:4,-108.5,-18.5,0,0,-0.13605 -75456,5110:488:3,-108,-18.5,0,0,-0.13605 -75457,5110:487:4,-107.5,-18.5,0,0,-0.13605 -75458,5110:487:3,-107,-18.5,0,0,-0.13605 -75459,5110:486:4,-106.5,-18.5,0,0,-0.13605 -75460,5110:486:3,-106,-18.5,0,0,-0.13605 -75461,5110:485:4,-105.5,-18.5,0,0,-0.13605 -75462,5110:485:3,-105,-18.5,0,0,-0.13605 -75463,5110:384:4,-104.5,-18.5,0,0,-0.13605 -75464,5110:384:3,-104,-18.5,0,0,-0.13605 -75465,5110:383:4,-103.5,-18.5,0,0,-0.13605 -75466,5110:383:3,-103,-18.5,0,0,-0.13605 -75467,5110:382:4,-102.5,-18.5,0,0,-0.13605 -75468,5110:382:3,-102,-18.5,0,0,-0.13605 -75469,5110:381:4,-101.5,-18.5,0,0,-0.13605 -75470,5110:381:3,-101,-18.5,0,0,-0.13605 -75471,5110:380:4,-100.5,-18.5,0,0,-0.13605 -75472,5110:380:3,-100,-18.5,0,0,-0.13605 -75473,5109:489:4,-99.5,-18.5,0,0,-0.13605 -75474,5109:489:3,-99,-18.5,0,0,-0.13605 -75475,5109:488:4,-98.5,-18.5,0,0,-0.13605 -75476,5109:488:3,-98,-18.5,0,0,-0.13605 -75477,5109:487:4,-97.5,-18.5,0,0,-0.13605 -75478,5109:487:3,-97,-18.5,0,0,-0.13605 -75479,5109:486:4,-96.5,-18.5,0,0,-0.13605 -75480,5109:486:3,-96,-18.5,0,0,-0.13605 -75481,5109:485:4,-95.5,-18.5,0,0,-0.13605 -75482,5109:485:3,-95,-18.5,0,0,-0.13605 -75483,5109:384:4,-94.5,-18.5,0,0,-0.13605 -75484,5109:384:3,-94,-18.5,0,0,-0.13605 -75485,5109:383:4,-93.5,-18.5,0,0,-0.13605 -75486,5109:383:3,-93,-18.5,0,0,-0.13605 -75487,5109:382:4,-92.5,-18.5,0,0,-0.13605 -75488,5109:382:3,-92,-18.5,0,0,-0.13605 -75489,5109:381:4,-91.5,-18.5,0,0,-0.13605 -75490,5109:381:3,-91,-18.5,0,0,-0.13605 -75491,5109:380:4,-90.5,-18.5,0,0,-0.13605 -75492,5109:380:3,-90,-18.5,0,0,-0.13605 -75493,5108:489:4,-89.5,-18.5,0,0,-0.13605 -75494,5108:489:3,-89,-18.5,0,0,-0.13605 -75495,5108:488:4,-88.5,-18.5,0,0,-0.13605 -75496,5108:488:3,-88,-18.5,0,0,-0.13605 -75497,5108:487:4,-87.5,-18.5,0,0,-0.13605 -75498,5108:487:3,-87,-18.5,0,0,-0.13605 -75499,5108:486:4,-86.5,-18.5,0,0,-0.13605 -75500,5108:486:3,-86,-18.5,0,0,-0.13605 -75501,5108:485:4,-85.5,-18.5,0,0,-0.13605 -75502,5108:485:3,-85,-18.5,0,0,-0.13605 -75503,5108:384:4,-84.5,-18.5,0,0,-0.13605 -75504,5108:384:3,-84,-18.5,0,0,-0.13605 -75505,5108:383:4,-83.5,-18.5,0,0,-0.13605 -75506,5108:383:3,-83,-18.5,0,0,-0.13605 -75507,5108:382:4,-82.5,-18.5,0,0,-0.13605 -75508,5108:382:3,-82,-18.5,0,0,-0.13605 -75509,5108:381:4,-81.5,-18.5,0,0,-0.13605 -75510,5108:381:3,-81,-18.5,0,0,-0.13605 -75511,5108:380:4,-80.5,-18.5,0,0,-0.13605 -75512,5108:380:3,-80,-18.5,0,0,-0.13605 -75513,5107:489:4,-79.5,-18.5,0,0,-0.13605 -75514,5107:489:3,-79,-18.5,0,0,-0.13605 -75515,5107:488:4,-78.5,-18.5,0,0,-0.13605 -75516,5107:488:3,-78,-18.5,0,0,-0.13605 -75517,5107:487:4,-77.5,-18.5,0,0,-0.13605 -75518,5107:487:3,-77,-18.5,0,0,-0.13605 -75519,5107:486:4,-76.5,-18.5,0,0,-0.13605 -75520,5107:486:3,-76,-18.5,0,0,-0.13605 -75521,5107:485:4,-75.5,-18.5,0,0,-0.13605 -75522,5107:485:3,-75,-18.5,0,0,-0.13605 -75523,5107:384:4,-74.5,-18.5,0,0,-0.13605 -75524,5107:384:3,-74,-18.5,0,0,-0.13605 -75525,5107:383:4,-73.5,-18.5,0,0,-0.13605 -75526,5107:383:3,-73,-18.5,0,0,-0.13605 -75527,5107:382:4,-72.5,-18.5,0,0,-0.13605 -75528,5107:382:3,-72,-18.5,0,0,-0.13605 -75529,5107:381:4,-71.5,-18.5,0,0,-0.13605 -75530,5107:381:3,-71,-18.5,0,0,-0.13605 -75531,5104:486:4,-46.5,-18.5,0,0,-0.13605 -75532,5104:486:3,-46,-18.5,0,0,-0.13605 -75533,5104:485:4,-45.5,-18.5,0,0,-0.13605 -75534,5104:485:3,-45,-18.5,0,0,-0.1422 -75535,5104:384:4,-44.5,-18.5,0,0,-0.153459 -75536,5104:384:3,-44,-18.5,0,0,-0.163837 -75537,5104:383:4,-43.5,-18.5,0,0,-0.16908 -75538,5104:383:3,-43,-18.5,0,0,-0.169945 -75539,5104:382:4,-42.5,-18.5,0,0,-0.17124 -75540,5104:382:3,-42,-18.5,0,0,-0.171547 -75541,5104:381:4,-41.5,-18.5,0,0,-0.169757 -75542,5104:381:3,-41,-18.5,0,0,-0.167757 -75543,5104:380:4,-40.5,-18.5,0,0,-0.167942 -75544,5104:380:3,-40,-18.5,0,0,-0.168521 -75545,5103:489:4,-39.5,-18.5,0,0,-0.16887 -75546,5103:489:3,-39,-18.5,0,0,-0.166905 -75547,5103:488:4,-38.5,-18.5,0,0,-0.16431 -75548,5103:488:3,-38,-18.5,0,0,-0.162205 -75549,5103:487:4,-37.5,-18.5,0,0,-0.160657 -75550,5103:487:3,-37,-18.5,0,0,-0.15965 -75551,5103:486:4,-36.5,-18.5,0,0,-0.158606 -75552,5103:486:3,-36,-18.5,0,0,-0.157699 -75553,5103:485:4,-35.5,-18.5,0,0,-0.156947 -75554,5103:485:3,-35,-18.5,0,0,-0.155647 -75555,5103:384:4,-34.5,-18.5,0,0,-0.153354 -75556,5103:384:3,-34,-18.5,0,0,-0.151367 -75557,5103:383:4,-33.5,-18.5,0,0,-0.15182 -75558,5103:383:3,-33,-18.5,0,0,-0.152067 -75559,5103:382:4,-32.5,-18.5,0,0,-0.151923 -75560,5103:382:3,-32,-18.5,0,0,-0.150486 -75561,5103:381:4,-31.5,-18.5,0,0,-0.149611 -75562,5103:381:3,-31,-18.5,0,0,-0.149024 -75563,5103:380:4,-30.5,-18.5,0,0,-0.14836 -75564,5103:380:3,-30,-18.5,0,0,-0.146148 -75565,5102:489:4,-29.5,-18.5,0,0,-0.142181 -75566,5102:489:3,-29,-18.5,0,0,-0.138614 -75567,5102:488:4,-28.5,-18.5,0,0,-0.136485 -75568,5102:488:3,-28,-18.5,0,0,-0.13605 -75569,5102:487:4,-27.5,-18.5,0,0,-0.13605 -75570,5102:487:3,-27,-18.5,0,0,-0.13605 -75571,5102:486:4,-26.5,-18.5,0,0,-0.13605 -75572,5102:486:3,-26,-18.5,0,0,-0.13605 -75573,5102:485:4,-25.5,-18.5,0,0,-0.13605 -75574,5102:485:3,-25,-18.5,0,0,-0.13605 -75575,5102:384:4,-24.5,-18.5,0,0,-0.13605 -75576,5102:384:3,-24,-18.5,0,0,-0.13605 -75577,5102:383:4,-23.5,-18.5,0,0,-0.13605 -75578,5102:383:3,-23,-18.5,0,0,-0.13605 -75579,5102:382:4,-22.5,-18.5,0,0,-0.13605 -75580,5102:382:3,-22,-18.5,0,0,-0.13605 -75581,5102:381:4,-21.5,-18.5,0,0,-0.13605 -75582,5102:381:3,-21,-18.5,0,0,-0.13605 -75583,5102:380:4,-20.5,-18.5,0,0,-0.13605 -75584,5102:380:3,-20,-18.5,0,0,-0.13605 -75585,5101:489:4,-19.5,-18.5,0,0,-0.13605 -75586,5101:489:3,-19,-18.5,0,0,-0.13605 -75587,5101:488:4,-18.5,-18.5,0,0,-0.13605 -75588,5101:488:3,-18,-18.5,0,0,-0.13605 -75589,5101:487:4,-17.5,-18.5,0,0,-0.13605 -75590,5101:487:3,-17,-18.5,0,0,-0.13605 -75591,5101:486:4,-16.5,-18.5,0,0,-0.13605 -75592,5101:486:3,-16,-18.5,0,0,-0.13605 -75593,5101:485:4,-15.5,-18.5,0,0,-0.13605 -75594,5101:485:3,-15,-18.5,0,0,-0.13605 -75595,5101:384:4,-14.5,-18.5,0,0,-0.13605 -75596,5101:384:3,-14,-18.5,0,0,-0.13605 -75597,5101:383:4,-13.5,-18.5,0,0,-0.13605 -75598,5101:383:3,-13,-18.5,0,0,-0.13605 -75599,5101:382:4,-12.5,-18.5,0,0,-0.13605 -75600,5101:382:3,-12,-18.5,0,0,-0.13605 -75601,5101:381:4,-11.5,-18.5,0,0,-0.13605 -75602,5101:381:3,-11,-18.5,0,0,-0.13605 -75603,5101:380:4,-10.5,-18.5,0,0,-0.13605 -75604,5101:380:3,-10,-18.5,0,0,-0.13605 -75605,5100:489:4,-9.5,-18.5,0,0,-0.13605 -75606,5100:489:3,-9,-18.5,0,0,-0.13605 -75607,5100:488:4,-8.5,-18.5,0,0,-0.13605 -75608,5100:488:3,-8,-18.5,0,0,-0.13605 -75609,5100:487:4,-7.5,-18.5,0,0,-0.13605 -75610,5100:487:3,-7,-18.5,0,0,-0.13605 -75611,5100:486:4,-6.5,-18.5,0,0,-0.13605 -75612,5100:486:3,-6,-18.5,0,0,-0.13605 -75613,5100:485:4,-5.5,-18.5,0,0,-0.13605 -75614,5100:485:3,-5,-18.5,0,0,-0.13605 -75615,5100:384:4,-4.5,-18.5,0,0,-0.13605 -75616,5100:384:3,-4,-18.5,0,0,-0.13605 -75617,5100:383:4,-3.5,-18.5,0,0,-0.13605 -75618,5100:383:3,-3,-18.5,0,0,-0.13605 -75619,5100:382:4,-2.5,-18.5,0,0,-0.13605 -75620,5100:382:3,-2,-18.5,0,0,-0.13605 -75621,5100:381:4,-1.5,-18.5,0,0,-0.13605 -75622,5100:381:3,-1,-18.5,0,0,-0.13605 -75623,5100:380:4,-0.5,-18.5,0,0,-0.13605 -75624,3100:380:4,0,-18.5,0,0,-0.13605 -75625,3100:380:4,0.5,-18.5,0,0,-0.13605 -75626,3100:381:3,1,-18.5,0,0,-0.13605 -75627,3100:381:4,1.5,-18.5,0,0,-0.13605 -75628,3100:382:3,2,-18.5,0,0,-0.13605 -75629,3100:382:4,2.5,-18.5,0,0,-0.13605 -75630,3100:383:3,3,-18.5,0,0,-0.13605 -75631,3100:383:4,3.5,-18.5,0,0,-0.13605 -75632,3100:384:3,4,-18.5,0,0,-0.13605 -75633,3100:384:4,4.5,-18.5,0,0,-0.13605 -75634,3100:485:3,5,-18.5,0,0,-0.13605 -75635,3100:485:4,5.5,-18.5,0,0,-0.13605 -75636,3100:486:3,6,-18.5,0,0,-0.13605 -75637,3100:486:4,6.5,-18.5,0,0,-0.13605 -75638,3100:487:3,7,-18.5,0,0,-0.13605 -75639,3100:487:4,7.5,-18.5,0,0,-0.13605 -75640,3100:488:3,8,-18.5,0,0,-0.13605 -75641,3100:488:4,8.5,-18.5,0,0,-0.13605 -75642,3100:489:3,9,-18.5,0,0,-0.13605 -75643,3100:489:4,9.5,-18.5,0,0,-0.13605 -75644,3101:380:3,10,-18.5,0,0,-0.13605 -75645,3101:380:4,10.5,-18.5,0,0,-0.13605 -75646,3101:381:3,11,-18.5,0,0,-0.13605 -75647,3101:381:4,11.5,-18.5,0,0,-0.13605 -75648,3101:382:3,12,-18.5,0,0,-0.13605 -75649,3101:382:4,12.5,-18.5,0,0,-0.13605 -75650,3101:383:3,13,-18.5,0,0,-0.13605 -75651,3101:383:4,13.5,-18.5,0,0,-0.13605 -75652,3101:384:3,14,-18.5,0,0,-0.13605 -75653,3103:485:4,35.5,-18.5,0,0,-0.196231 -75654,3103:486:3,36,-18.5,0,0,-0.181184 -75655,3103:486:4,36.5,-18.5,0,0,-0.174781 -75656,3103:487:3,37,-18.5,0,0,-0.165261 -75657,3103:487:4,37.5,-18.5,0,0,-0.166721 -75658,3103:488:3,38,-18.5,0,0,-0.168637 -75659,3103:488:4,38.5,-18.5,0,0,-0.163254 -75660,3103:489:3,39,-18.5,0,0,-0.16154 -75661,3103:489:4,39.5,-18.5,0,0,-0.162806 -75662,3104:380:3,40,-18.5,0,0,-0.16413 -75663,3104:380:4,40.5,-18.5,0,0,-0.164355 -75664,3104:381:3,41,-18.5,0,0,-0.164898 -75665,3104:381:4,41.5,-18.5,0,0,-0.170156 -75666,3104:382:3,42,-18.5,0,0,-0.179078 -75667,3104:382:4,42.5,-18.5,0,0,-0.219219 -75668,3104:383:3,43,-18.5,0,0,-0.529677 -75669,3104:487:4,47.5,-18.5,0,0,-0.160944 -75670,3104:488:3,48,-18.5,0,0,-0.161054 -75671,3104:488:4,48.5,-18.5,0,0,-0.158065 -75672,3104:489:3,49,-18.5,0,0,-0.156115 -75673,3104:489:4,49.5,-18.5,0,0,-0.152316 -75674,3105:380:3,50,-18.5,0,0,-0.150691 -75675,3105:380:4,50.5,-18.5,0,0,-0.148984 -75676,3105:381:3,51,-18.5,0,0,-0.142834 -75677,3105:381:4,51.5,-18.5,0,0,-0.13981 -75678,3105:382:3,52,-18.5,0,0,-0.143645 -75679,3105:382:4,52.5,-18.5,0,0,-0.144402 -75680,3105:383:3,53,-18.5,0,0,-0.13919 -75681,3105:383:4,53.5,-18.5,0,0,-0.13633 -75682,3105:384:3,54,-18.5,0,0,-0.13605 -75683,3105:384:4,54.5,-18.5,0,0,-0.13605 -75684,3105:485:3,55,-18.5,0,0,-0.137705 -75685,3105:485:4,55.5,-18.5,0,0,-0.13858 -75686,3105:486:3,56,-18.5,0,0,-0.139343 -75687,3105:486:4,56.5,-18.5,0,0,-0.140092 -75688,3105:487:3,57,-18.5,0,0,-0.140582 -75689,3105:487:4,57.5,-18.5,0,0,-0.139922 -75690,3105:488:3,58,-18.5,0,0,-0.140962 -75691,3105:488:4,58.5,-18.5,0,0,-0.142009 -75692,3105:489:3,59,-18.5,0,0,-0.141094 -75693,3105:489:4,59.5,-18.5,0,0,-0.13605 -75694,3106:380:3,60,-18.5,0,0,-0.13605 -75695,3106:380:4,60.5,-18.5,0,0,-0.13605 -75696,3106:381:3,61,-18.5,0,0,-0.13605 -75697,3106:381:4,61.5,-18.5,0,0,-0.13605 -75698,3106:382:3,62,-18.5,0,0,-0.13605 -75699,3106:382:4,62.5,-18.5,0,0,-0.13605 -75700,3106:383:3,63,-18.5,0,0,-0.13605 -75701,3106:383:4,63.5,-18.5,0,0,-0.13605 -75702,3106:384:3,64,-18.5,0,0,-0.13605 -75703,3106:384:4,64.5,-18.5,0,0,-0.13605 -75704,3106:485:3,65,-18.5,0,0,-0.13605 -75705,3106:485:4,65.5,-18.5,0,0,-0.13605 -75706,3106:486:3,66,-18.5,0,0,-0.13605 -75707,3106:486:4,66.5,-18.5,0,0,-0.13605 -75708,3106:487:3,67,-18.5,0,0,-0.13605 -75709,3106:487:4,67.5,-18.5,0,0,-0.13605 -75710,3106:488:3,68,-18.5,0,0,-0.13605 -75711,3106:488:4,68.5,-18.5,0,0,-0.13605 -75712,3106:489:3,69,-18.5,0,0,-0.13605 -75713,3106:489:4,69.5,-18.5,0,0,-0.13605 -75714,3107:380:3,70,-18.5,0,0,-0.13605 -75715,3107:380:4,70.5,-18.5,0,0,-0.13605 -75716,3107:381:3,71,-18.5,0,0,-0.13605 -75717,3107:381:4,71.5,-18.5,0,0,-0.13605 -75718,3107:382:3,72,-18.5,0,0,-0.13605 -75719,3107:382:4,72.5,-18.5,0,0,-0.13605 -75720,3107:383:4,73.5,-18.5,0,0,-0.13605 -75721,3107:384:3,74,-18.5,0,0,-0.13605 -75722,3107:384:4,74.5,-18.5,0,0,-0.13605 -75723,3107:485:3,75,-18.5,0,0,-0.13605 -75724,3107:485:4,75.5,-18.5,0,0,-0.13605 -75725,3107:486:3,76,-18.5,0,0,-0.13605 -75726,3107:486:4,76.5,-18.5,0,0,-0.13605 -75727,3107:487:3,77,-18.5,0,0,-0.13605 -75728,3107:487:4,77.5,-18.5,0,0,-0.13605 -75729,3107:488:3,78,-18.5,0,0,-0.13605 -75730,3107:488:4,78.5,-18.5,0,0,-0.13605 -75731,3107:489:3,79,-18.5,0,0,-0.13605 -75732,3107:489:4,79.5,-18.5,0,0,-0.13605 -75733,3108:380:3,80,-18.5,0,0,-0.13605 -75734,3108:380:4,80.5,-18.5,0,0,-0.13605 -75735,3108:381:3,81,-18.5,0,0,-0.13605 -75736,3108:381:4,81.5,-18.5,0,0,-0.13605 -75737,3108:382:3,82,-18.5,0,0,-0.13605 -75738,3108:382:4,82.5,-18.5,0,0,-0.13605 -75739,3108:383:3,83,-18.5,0,0,-0.13605 -75740,3108:383:4,83.5,-18.5,0,0,-0.13605 -75741,3108:384:3,84,-18.5,0,0,-0.13605 -75742,3108:384:4,84.5,-18.5,0,0,-0.13605 -75743,3108:485:3,85,-18.5,0,0,-0.13605 -75744,3108:485:4,85.5,-18.5,0,0,-0.13605 -75745,3108:486:3,86,-18.5,0,0,-0.13605 -75746,3108:486:4,86.5,-18.5,0,0,-0.13605 -75747,3108:487:3,87,-18.5,0,0,-0.13605 -75748,3108:487:4,87.5,-18.5,0,0,-0.13605 -75749,3108:488:3,88,-18.5,0,0,-0.13605 -75750,3108:488:4,88.5,-18.5,0,0,-0.13605 -75751,3108:489:3,89,-18.5,0,0,-0.13605 -75752,3108:489:4,89.5,-18.5,0,0,-0.13605 -75753,3109:380:3,90,-18.5,0,0,-0.13605 -75754,3109:380:4,90.5,-18.5,0,0,-0.13605 -75755,3109:381:3,91,-18.5,0,0,-0.13605 -75756,3109:381:4,91.5,-18.5,0,0,-0.13605 -75757,3109:382:3,92,-18.5,0,0,-0.13605 -75758,3109:382:4,92.5,-18.5,0,0,-0.13605 -75759,3109:383:3,93,-18.5,0,0,-0.13605 -75760,3109:383:4,93.5,-18.5,0,0,-0.13605 -75761,3109:384:3,94,-18.5,0,0,-0.13605 -75762,3109:384:4,94.5,-18.5,0,0,-0.13605 -75763,3109:485:3,95,-18.5,0,0,-0.13605 -75764,3109:485:4,95.5,-18.5,0,0,-0.13605 -75765,3109:486:3,96,-18.5,0,0,-0.13605 -75766,3109:486:4,96.5,-18.5,0,0,-0.13605 -75767,3109:487:3,97,-18.5,0,0,-0.13605 -75768,3109:487:4,97.5,-18.5,0,0,-0.13605 -75769,3109:488:3,98,-18.5,0,0,-0.13605 -75770,3109:488:4,98.5,-18.5,0,0,-0.13605 -75771,3109:489:3,99,-18.5,0,0,-0.13605 -75772,3109:489:4,99.5,-18.5,0,0,-0.13605 -75773,3110:380:3,100,-18.5,0,0,-0.13605 -75774,3110:380:4,100.5,-18.5,0,0,-0.13605 -75775,3110:381:3,101,-18.5,0,0,-0.13605 -75776,3110:381:4,101.5,-18.5,0,0,-0.13605 -75777,3110:382:3,102,-18.5,0,0,-0.13605 -75778,3110:382:4,102.5,-18.5,0,0,-0.13605 -75779,3110:383:3,103,-18.5,0,0,-0.13605 -75780,3110:383:4,103.5,-18.5,0,0,-0.13605 -75781,3110:384:3,104,-18.5,0,0,-0.13605 -75782,3110:384:4,104.5,-18.5,0,0,-0.13605 -75783,3110:485:3,105,-18.5,0,0,-0.13605 -75784,3110:485:4,105.5,-18.5,0,0,-0.13605 -75785,3110:486:3,106,-18.5,0,0,-0.13605 -75786,3110:486:4,106.5,-18.5,0,0,-0.13605 -75787,3110:487:3,107,-18.5,0,0,-0.13605 -75788,3110:487:4,107.5,-18.5,0,0,-0.13605 -75789,3110:488:3,108,-18.5,0,0,-0.13605 -75790,3110:488:4,108.5,-18.5,0,0,-0.13605 -75791,3110:489:3,109,-18.5,0,0,-0.13605 -75792,3110:489:4,109.5,-18.5,0,0,-0.13605 -75793,3111:380:3,110,-18.5,0,0,-0.13605 -75794,3111:380:4,110.5,-18.5,0,0,-0.13605 -75795,3111:381:3,111,-18.5,0,0,-0.13605 -75796,3111:381:4,111.5,-18.5,0,0,-0.13605 -75797,3111:382:3,112,-18.5,0,0,-0.13605 -75798,3111:382:4,112.5,-18.5,0,0,-0.13605 -75799,3111:383:3,113,-18.5,0,0,-0.13605 -75800,3111:383:4,113.5,-18.5,0,0,-0.13605 -75801,3115:382:3,152,-18.5,0,0,-0.158389 -75802,3115:382:4,152.5,-18.5,0,0,-0.151676 -75803,3115:383:3,153,-18.5,0,0,-0.147339 -75804,3115:383:4,153.5,-18.5,0,0,-0.150404 -75805,3115:384:3,154,-18.5,0,0,-0.151779 -75806,3115:384:4,154.5,-18.5,0,0,-0.149146 -75807,3115:485:3,155,-18.5,0,0,-0.141837 -75808,3115:485:4,155.5,-18.5,0,0,-0.136161 -75809,3115:486:3,156,-18.5,0,0,-0.13605 -75810,3115:486:4,156.5,-18.5,0,0,-0.13605 -75811,3115:487:3,157,-18.5,0,0,-0.13605 -75812,3115:487:4,157.5,-18.5,0,0,-0.13605 -75813,3115:488:3,158,-18.5,0,0,-0.13605 -75814,3115:488:4,158.5,-18.5,0,0,-0.13605 -75815,3115:489:3,159,-18.5,0,0,-0.13605 -75816,3115:489:4,159.5,-18.5,0,0,-0.13605 -75817,3116:380:3,160,-18.5,0,0,-0.13605 -75818,3116:380:4,160.5,-18.5,0,0,-0.13605 -75819,3116:381:3,161,-18.5,0,0,-0.13605 -75820,3116:381:4,161.5,-18.5,0,0,-0.13605 -75821,3116:382:3,162,-18.5,0,0,-0.13605 -75822,3116:382:4,162.5,-18.5,0,0,-0.13605 -75823,3116:383:3,163,-18.5,0,0,-0.13605 -75824,3116:383:4,163.5,-18.5,0,0,-0.13605 -75825,3116:384:3,164,-18.5,0,0,-0.13605 -75826,3116:384:4,164.5,-18.5,0,0,-0.13605 -75827,3116:485:3,165,-18.5,0,0,-0.13605 -75828,3116:485:4,165.5,-18.5,0,0,-0.13605 -75829,3116:486:3,166,-18.5,0,0,-0.13605 -75830,3116:486:4,166.5,-18.5,0,0,-0.13605 -75831,3116:487:3,167,-18.5,0,0,-0.13605 -75832,3116:487:4,167.5,-18.5,0,0,-0.13605 -75833,3116:488:3,168,-18.5,0,0,-0.13605 -75834,3116:488:4,168.5,-18.5,0,0,-0.13605 -75835,3116:489:3,169,-18.5,0,0,-0.13605 -75836,3116:489:4,169.5,-18.5,0,0,-0.13605 -75837,3117:380:3,170,-18.5,0,0,-0.13605 -75838,3117:380:4,170.5,-18.5,0,0,-0.13605 -75839,3117:381:3,171,-18.5,0,0,-0.13605 -75840,3117:381:4,171.5,-18.5,0,0,-0.13605 -75841,3117:382:3,172,-18.5,0,0,-0.13605 -75842,3117:382:4,172.5,-18.5,0,0,-0.13605 -75843,3117:383:3,173,-18.5,0,0,-0.13605 -75844,3117:383:4,173.5,-18.5,0,0,-0.13605 -75845,3117:384:3,174,-18.5,0,0,-0.13605 -75846,3117:384:4,174.5,-18.5,0,0,-0.13605 -75847,3117:485:3,175,-18.5,0,0,-0.13605 -75848,3117:485:4,175.5,-18.5,0,0,-0.13605 -75849,3117:486:3,176,-18.5,0,0,-0.13605 -75850,3117:486:4,176.5,-18.5,0,0,-0.13605 -75851,3117:487:3,177,-18.5,0,0,-0.13605 -75852,3117:487:4,177.5,-18.5,0,0,-0.13605 -75853,3117:488:3,178,-18.5,0,0,-0.13605 -75854,3117:488:4,178.5,-18.5,0,0,-0.13605 -75855,3117:489:3,179,-18.5,0,0,-0.13605 -75856,3117:489:4,179.5,-18.5,0,0,-0.13605 -75857,3118:380:3,180,-18.5,0,0,-0.13605 -75858,5118:380:1,-180,-18,0,0,-0.13605 -75859,5117:489:2,-179.5,-18,0,0,-0.13605 -75860,5117:489:1,-179,-18,0,0,-0.13605 -75861,5117:488:2,-178.5,-18,0,0,-0.13605 -75862,5117:488:1,-178,-18,0,0,-0.13605 -75863,5117:487:2,-177.5,-18,0,0,-0.13605 -75864,5117:487:1,-177,-18,0,0,-0.13605 -75865,5117:486:2,-176.5,-18,0,0,-0.13605 -75866,5117:486:1,-176,-18,0,0,-0.13605 -75867,5117:485:2,-175.5,-18,0,0,-0.13605 -75868,5117:485:1,-175,-18,0,0,-0.13605 -75869,5117:384:2,-174.5,-18,0,0,-0.13605 -75870,5117:384:1,-174,-18,0,0,-0.13605 -75871,5117:383:2,-173.5,-18,0,0,-0.13605 -75872,5117:383:1,-173,-18,0,0,-0.13605 -75873,5117:382:2,-172.5,-18,0,0,-0.13605 -75874,5117:382:1,-172,-18,0,0,-0.13605 -75875,5117:381:2,-171.5,-18,0,0,-0.13605 -75876,5117:381:1,-171,-18,0,0,-0.13605 -75877,5117:380:2,-170.5,-18,0,0,-0.13605 -75878,5117:380:1,-170,-18,0,0,-0.13605 -75879,5116:489:2,-169.5,-18,0,0,-0.13605 -75880,5116:489:1,-169,-18,0,0,-0.13605 -75881,5116:488:2,-168.5,-18,0,0,-0.13605 -75882,5116:488:1,-168,-18,0,0,-0.13605 -75883,5116:487:2,-167.5,-18,0,0,-0.13605 -75884,5116:487:1,-167,-18,0,0,-0.13605 -75885,5116:486:2,-166.5,-18,0,0,-0.13605 -75886,5116:486:1,-166,-18,0,0,-0.13605 -75887,5116:485:2,-165.5,-18,0,0,-0.13605 -75888,5116:485:1,-165,-18,0,0,-0.13605 -75889,5116:384:2,-164.5,-18,0,0,-0.13605 -75890,5116:384:1,-164,-18,0,0,-0.13605 -75891,5116:383:2,-163.5,-18,0,0,-0.13605 -75892,5116:383:1,-163,-18,0,0,-0.13605 -75893,5116:382:2,-162.5,-18,0,0,-0.13605 -75894,5116:382:1,-162,-18,0,0,-0.13605 -75895,5116:381:2,-161.5,-18,0,0,-0.13605 -75896,5116:381:1,-161,-18,0,0,-0.13605 -75897,5116:380:2,-160.5,-18,0,0,-0.13605 -75898,5116:380:1,-160,-18,0,0,-0.13605 -75899,5115:489:2,-159.5,-18,0,0,-0.13605 -75900,5115:489:1,-159,-18,0,0,-0.13605 -75901,5115:488:2,-158.5,-18,0,0,-0.13605 -75902,5115:488:1,-158,-18,0,0,-0.13605 -75903,5115:487:2,-157.5,-18,0,0,-0.13605 -75904,5115:487:1,-157,-18,0,0,-0.13605 -75905,5115:486:2,-156.5,-18,0,0,-0.13605 -75906,5115:486:1,-156,-18,0,0,-0.13605 -75907,5115:485:2,-155.5,-18,0,0,-0.13605 -75908,5115:485:1,-155,-18,0,0,-0.13605 -75909,5115:384:2,-154.5,-18,0,0,-0.13605 -75910,5115:384:1,-154,-18,0,0,-0.13605 -75911,5115:383:2,-153.5,-18,0,0,-0.13605 -75912,5115:383:1,-153,-18,0,0,-0.13605 -75913,5115:382:2,-152.5,-18,0,0,-0.13605 -75914,5115:382:1,-152,-18,0,0,-0.13605 -75915,5115:381:2,-151.5,-18,0,0,-0.13605 -75916,5115:381:1,-151,-18,0,0,-0.13605 -75917,5115:380:2,-150.5,-18,0,0,-0.13605 -75918,5115:380:1,-150,-18,0,0,-0.13605 -75919,5114:489:2,-149.5,-18,0,0,-0.13605 -75920,5114:489:1,-149,-18,0,0,-0.13605 -75921,5114:488:2,-148.5,-18,0,0,-0.13605 -75922,5114:488:1,-148,-18,0,0,-0.13605 -75923,5114:487:2,-147.5,-18,0,0,-0.13605 -75924,5114:487:1,-147,-18,0,0,-0.13605 -75925,5114:486:2,-146.5,-18,0,0,-0.13605 -75926,5114:486:1,-146,-18,0,0,-0.13605 -75927,5114:485:2,-145.5,-18,0,0,-0.13605 -75928,5114:485:1,-145,-18,0,0,-0.13605 -75929,5114:384:2,-144.5,-18,0,0,-0.13605 -75930,5114:384:1,-144,-18,0,0,-0.13605 -75931,5114:383:2,-143.5,-18,0,0,-0.13605 -75932,5114:383:1,-143,-18,0,0,-0.13605 -75933,5114:382:2,-142.5,-18,0,0,-0.13605 -75934,5114:382:1,-142,-18,0,0,-0.13605 -75935,5114:381:2,-141.5,-18,0,0,-0.13605 -75936,5114:381:1,-141,-18,0,0,-0.13605 -75937,5114:380:2,-140.5,-18,0,0,-0.13605 -75938,5114:380:1,-140,-18,0,0,-0.13605 -75939,5113:489:2,-139.5,-18,0,0,-0.136182 -75940,5113:489:1,-139,-18,0,0,-0.13605 -75941,5113:488:2,-138.5,-18,0,0,-0.13605 -75942,5113:488:1,-138,-18,0,0,-0.13605 -75943,5113:487:2,-137.5,-18,0,0,-0.13605 -75944,5113:487:1,-137,-18,0,0,-0.13605 -75945,5113:486:2,-136.5,-18,0,0,-0.13605 -75946,5113:486:1,-136,-18,0,0,-0.136104 -75947,5113:485:2,-135.5,-18,0,0,-0.136136 -75948,5113:485:1,-135,-18,0,0,-0.13605 -75949,5113:384:2,-134.5,-18,0,0,-0.13605 -75950,5113:384:1,-134,-18,0,0,-0.13605 -75951,5113:383:2,-133.5,-18,0,0,-0.13605 -75952,5113:383:1,-133,-18,0,0,-0.13605 -75953,5113:382:2,-132.5,-18,0,0,-0.13605 -75954,5113:382:1,-132,-18,0,0,-0.13605 -75955,5113:381:2,-131.5,-18,0,0,-0.13605 -75956,5113:381:1,-131,-18,0,0,-0.13605 -75957,5113:380:2,-130.5,-18,0,0,-0.13605 -75958,5113:380:1,-130,-18,0,0,-0.13605 -75959,5112:489:2,-129.5,-18,0,0,-0.13605 -75960,5112:489:1,-129,-18,0,0,-0.13605 -75961,5112:488:2,-128.5,-18,0,0,-0.13605 -75962,5112:488:1,-128,-18,0,0,-0.13605 -75963,5112:487:2,-127.5,-18,0,0,-0.13605 -75964,5112:487:1,-127,-18,0,0,-0.13605 -75965,5112:486:2,-126.5,-18,0,0,-0.13605 -75966,5112:486:1,-126,-18,0,0,-0.13605 -75967,5112:485:2,-125.5,-18,0,0,-0.13605 -75968,5112:485:1,-125,-18,0,0,-0.13605 -75969,5112:384:2,-124.5,-18,0,0,-0.13605 -75970,5112:384:1,-124,-18,0,0,-0.13605 -75971,5112:383:2,-123.5,-18,0,0,-0.13605 -75972,5112:383:1,-123,-18,0,0,-0.13605 -75973,5112:382:2,-122.5,-18,0,0,-0.13605 -75974,5112:382:1,-122,-18,0,0,-0.13605 -75975,5112:381:2,-121.5,-18,0,0,-0.13605 -75976,5112:381:1,-121,-18,0,0,-0.13605 -75977,5112:380:2,-120.5,-18,0,0,-0.13605 -75978,5112:380:1,-120,-18,0,0,-0.13605 -75979,5111:489:2,-119.5,-18,0,0,-0.13605 -75980,5111:489:1,-119,-18,0,0,-0.13605 -75981,5111:488:2,-118.5,-18,0,0,-0.13605 -75982,5111:488:1,-118,-18,0,0,-0.13605 -75983,5111:487:2,-117.5,-18,0,0,-0.13605 -75984,5111:487:1,-117,-18,0,0,-0.13605 -75985,5111:486:2,-116.5,-18,0,0,-0.13605 -75986,5111:486:1,-116,-18,0,0,-0.13605 -75987,5111:485:2,-115.5,-18,0,0,-0.13605 -75988,5111:485:1,-115,-18,0,0,-0.13605 -75989,5111:384:2,-114.5,-18,0,0,-0.13605 -75990,5111:384:1,-114,-18,0,0,-0.13605 -75991,5111:383:2,-113.5,-18,0,0,-0.13605 -75992,5111:383:1,-113,-18,0,0,-0.13605 -75993,5111:382:2,-112.5,-18,0,0,-0.13605 -75994,5111:382:1,-112,-18,0,0,-0.13605 -75995,5111:381:2,-111.5,-18,0,0,-0.13605 -75996,5111:381:1,-111,-18,0,0,-0.13605 -75997,5111:380:2,-110.5,-18,0,0,-0.13605 -75998,5111:380:1,-110,-18,0,0,-0.13605 -75999,5110:489:2,-109.5,-18,0,0,-0.13605 -76000,5110:489:1,-109,-18,0,0,-0.13605 -76001,5110:488:2,-108.5,-18,0,0,-0.13605 -76002,5110:488:1,-108,-18,0,0,-0.13605 -76003,5110:487:2,-107.5,-18,0,0,-0.13605 -76004,5110:487:1,-107,-18,0,0,-0.13605 -76005,5110:486:2,-106.5,-18,0,0,-0.13605 -76006,5110:486:1,-106,-18,0,0,-0.13605 -76007,5110:485:2,-105.5,-18,0,0,-0.13605 -76008,5110:485:1,-105,-18,0,0,-0.13605 -76009,5110:384:2,-104.5,-18,0,0,-0.13605 -76010,5110:384:1,-104,-18,0,0,-0.13605 -76011,5110:383:2,-103.5,-18,0,0,-0.13605 -76012,5110:383:1,-103,-18,0,0,-0.13605 -76013,5110:382:2,-102.5,-18,0,0,-0.13605 -76014,5110:382:1,-102,-18,0,0,-0.13605 -76015,5110:381:2,-101.5,-18,0,0,-0.13605 -76016,5110:381:1,-101,-18,0,0,-0.13605 -76017,5110:380:2,-100.5,-18,0,0,-0.13605 -76018,5110:380:1,-100,-18,0,0,-0.13605 -76019,5109:489:2,-99.5,-18,0,0,-0.13605 -76020,5109:489:1,-99,-18,0,0,-0.13605 -76021,5109:488:2,-98.5,-18,0,0,-0.13605 -76022,5109:488:1,-98,-18,0,0,-0.13605 -76023,5109:487:2,-97.5,-18,0,0,-0.13605 -76024,5109:487:1,-97,-18,0,0,-0.13605 -76025,5109:486:2,-96.5,-18,0,0,-0.13605 -76026,5109:486:1,-96,-18,0,0,-0.13605 -76027,5109:485:2,-95.5,-18,0,0,-0.13605 -76028,5109:485:1,-95,-18,0,0,-0.13605 -76029,5109:384:2,-94.5,-18,0,0,-0.13605 -76030,5109:384:1,-94,-18,0,0,-0.13605 -76031,5109:383:2,-93.5,-18,0,0,-0.13605 -76032,5109:383:1,-93,-18,0,0,-0.13605 -76033,5109:382:2,-92.5,-18,0,0,-0.13605 -76034,5109:382:1,-92,-18,0,0,-0.13605 -76035,5109:381:2,-91.5,-18,0,0,-0.13605 -76036,5109:381:1,-91,-18,0,0,-0.13605 -76037,5109:380:2,-90.5,-18,0,0,-0.13605 -76038,5109:380:1,-90,-18,0,0,-0.13605 -76039,5108:489:2,-89.5,-18,0,0,-0.13605 -76040,5108:489:1,-89,-18,0,0,-0.13605 -76041,5108:488:2,-88.5,-18,0,0,-0.13605 -76042,5108:488:1,-88,-18,0,0,-0.13605 -76043,5108:487:2,-87.5,-18,0,0,-0.13605 -76044,5108:487:1,-87,-18,0,0,-0.13605 -76045,5108:486:2,-86.5,-18,0,0,-0.13605 -76046,5108:486:1,-86,-18,0,0,-0.13605 -76047,5108:485:2,-85.5,-18,0,0,-0.13605 -76048,5108:485:1,-85,-18,0,0,-0.13605 -76049,5108:384:2,-84.5,-18,0,0,-0.13605 -76050,5108:384:1,-84,-18,0,0,-0.13605 -76051,5108:383:2,-83.5,-18,0,0,-0.13605 -76052,5108:383:1,-83,-18,0,0,-0.13605 -76053,5108:382:2,-82.5,-18,0,0,-0.13605 -76054,5108:382:1,-82,-18,0,0,-0.13605 -76055,5108:381:2,-81.5,-18,0,0,-0.13605 -76056,5108:381:1,-81,-18,0,0,-0.13605 -76057,5108:380:2,-80.5,-18,0,0,-0.13605 -76058,5108:380:1,-80,-18,0,0,-0.13605 -76059,5107:489:2,-79.5,-18,0,0,-0.13605 -76060,5107:489:1,-79,-18,0,0,-0.13605 -76061,5107:488:2,-78.5,-18,0,0,-0.13605 -76062,5107:488:1,-78,-18,0,0,-0.13605 -76063,5107:487:2,-77.5,-18,0,0,-0.13605 -76064,5107:487:1,-77,-18,0,0,-0.13605 -76065,5107:486:2,-76.5,-18,0,0,-0.13605 -76066,5107:486:1,-76,-18,0,0,-0.13605 -76067,5107:485:2,-75.5,-18,0,0,-0.13605 -76068,5107:485:1,-75,-18,0,0,-0.13605 -76069,5107:384:2,-74.5,-18,0,0,-0.13605 -76070,5107:384:1,-74,-18,0,0,-0.13605 -76071,5107:383:2,-73.5,-18,0,0,-0.13605 -76072,5107:383:1,-73,-18,0,0,-0.13605 -76073,5107:382:2,-72.5,-18,0,0,-0.13605 -76074,5107:382:1,-72,-18,0,0,-0.13605 -76075,5107:381:2,-71.5,-18,0,0,-0.13605 -76076,5107:381:1,-71,-18,0,0,-0.13605 -76077,5104:384:2,-44.5,-18,0,0,-0.13605 -76078,5104:384:1,-44,-18,0,0,-0.13605 -76079,5104:383:2,-43.5,-18,0,0,-0.13605 -76080,5104:383:1,-43,-18,0,0,-0.159563 -76081,5104:382:2,-42.5,-18,0,0,-0.16943 -76082,5104:382:1,-42,-18,0,0,-0.161208 -76083,5104:381:2,-41.5,-18,0,0,-0.171358 -76084,5104:381:1,-41,-18,0,0,-0.177666 -76085,5104:380:2,-40.5,-18,0,0,-0.183779 -76086,5104:380:1,-40,-18,0,0,-0.178135 -76087,5103:489:2,-39.5,-18,0,0,-0.174346 -76088,5103:489:1,-39,-18,0,0,-0.174854 -76089,5103:488:2,-38.5,-18,0,0,-0.173432 -76090,5103:488:1,-38,-18,0,0,-0.169945 -76091,5103:487:2,-37.5,-18,0,0,-0.168081 -76092,5103:487:1,-37,-18,0,0,-0.166286 -76093,5103:486:2,-36.5,-18,0,0,-0.163366 -76094,5103:486:1,-36,-18,0,0,-0.16079 -76095,5103:485:2,-35.5,-18,0,0,-0.159388 -76096,5103:485:1,-35,-18,0,0,-0.158671 -76097,5103:384:2,-34.5,-18,0,0,-0.158367 -76098,5103:384:1,-34,-18,0,0,-0.158757 -76099,5103:383:2,-33.5,-18,0,0,-0.160878 -76100,5103:383:1,-33,-18,0,0,-0.162294 -76101,5103:382:2,-32.5,-18,0,0,-0.161761 -76102,5103:382:1,-32,-18,0,0,-0.158757 -76103,5103:381:2,-31.5,-18,0,0,-0.157075 -76104,5103:381:1,-31,-18,0,0,-0.156968 -76105,5103:380:2,-30.5,-18,0,0,-0.157075 -76106,5103:380:1,-30,-18,0,0,-0.153919 -76107,5102:489:2,-29.5,-18,0,0,-0.149308 -76108,5102:489:1,-29,-18,0,0,-0.145125 -76109,5102:488:2,-28.5,-18,0,0,-0.142143 -76110,5102:488:1,-28,-18,0,0,-0.139641 -76111,5102:487:2,-27.5,-18,0,0,-0.138378 -76112,5102:487:1,-27,-18,0,0,-0.138125 -76113,5102:486:2,-26.5,-18,0,0,-0.13858 -76114,5102:486:1,-26,-18,0,0,-0.138885 -76115,5102:485:2,-25.5,-18,0,0,-0.138563 -76116,5102:485:1,-25,-18,0,0,-0.138243 -76117,5102:384:2,-24.5,-18,0,0,-0.137823 -76118,5102:384:1,-24,-18,0,0,-0.137253 -76119,5102:383:2,-23.5,-18,0,0,-0.136563 -76120,5102:383:1,-23,-18,0,0,-0.136167 -76121,5102:382:2,-22.5,-18,0,0,-0.136151 -76122,5102:382:1,-22,-18,0,0,-0.136202 -76123,5102:381:2,-21.5,-18,0,0,-0.136692 -76124,5102:381:1,-21,-18,0,0,-0.137455 -76125,5102:380:2,-20.5,-18,0,0,-0.13789 -76126,5102:380:1,-20,-18,0,0,-0.137387 -76127,5101:489:2,-19.5,-18,0,0,-0.136304 -76128,5101:489:1,-19,-18,0,0,-0.136161 -76129,5101:488:2,-18.5,-18,0,0,-0.136589 -76130,5101:488:1,-18,-18,0,0,-0.13697 -76131,5101:487:2,-17.5,-18,0,0,-0.136679 -76132,5101:487:1,-17,-18,0,0,-0.136154 -76133,5101:486:2,-16.5,-18,0,0,-0.13605 -76134,5101:486:1,-16,-18,0,0,-0.13605 -76135,5101:485:2,-15.5,-18,0,0,-0.13605 -76136,5101:485:1,-15,-18,0,0,-0.13605 -76137,5101:384:2,-14.5,-18,0,0,-0.13605 -76138,5101:384:1,-14,-18,0,0,-0.13605 -76139,5101:383:2,-13.5,-18,0,0,-0.13605 -76140,5101:383:1,-13,-18,0,0,-0.13605 -76141,5101:382:2,-12.5,-18,0,0,-0.13605 -76142,5101:382:1,-12,-18,0,0,-0.13605 -76143,5101:381:2,-11.5,-18,0,0,-0.13605 -76144,5101:381:1,-11,-18,0,0,-0.13605 -76145,5101:380:2,-10.5,-18,0,0,-0.13605 -76146,5101:380:1,-10,-18,0,0,-0.13605 -76147,5100:489:2,-9.5,-18,0,0,-0.13605 -76148,5100:489:1,-9,-18,0,0,-0.13605 -76149,5100:488:2,-8.5,-18,0,0,-0.13605 -76150,5100:488:1,-8,-18,0,0,-0.13605 -76151,5100:487:2,-7.5,-18,0,0,-0.13605 -76152,5100:487:1,-7,-18,0,0,-0.13605 -76153,5100:486:2,-6.5,-18,0,0,-0.13605 -76154,5100:486:1,-6,-18,0,0,-0.13605 -76155,5100:485:2,-5.5,-18,0,0,-0.13605 -76156,5100:485:1,-5,-18,0,0,-0.13605 -76157,5100:384:2,-4.5,-18,0,0,-0.13605 -76158,5100:384:1,-4,-18,0,0,-0.13605 -76159,5100:383:2,-3.5,-18,0,0,-0.13605 -76160,5100:383:1,-3,-18,0,0,-0.13605 -76161,5100:382:2,-2.5,-18,0,0,-0.13605 -76162,5100:382:1,-2,-18,0,0,-0.13605 -76163,5100:381:2,-1.5,-18,0,0,-0.13605 -76164,5100:381:1,-1,-18,0,0,-0.13605 -76165,5100:380:2,-0.5,-18,0,0,-0.13605 -76166,3100:380:2,0,-18,0,0,-0.13605 -76167,3100:380:2,0.5,-18,0,0,-0.13605 -76168,3100:381:1,1,-18,0,0,-0.13605 -76169,3100:381:2,1.5,-18,0,0,-0.13605 -76170,3100:382:1,2,-18,0,0,-0.13605 -76171,3100:382:2,2.5,-18,0,0,-0.13605 -76172,3100:383:1,3,-18,0,0,-0.13605 -76173,3100:383:2,3.5,-18,0,0,-0.13605 -76174,3100:384:1,4,-18,0,0,-0.13605 -76175,3100:384:2,4.5,-18,0,0,-0.13605 -76176,3100:485:1,5,-18,0,0,-0.13605 -76177,3100:485:2,5.5,-18,0,0,-0.13605 -76178,3100:486:1,6,-18,0,0,-0.13605 -76179,3100:486:2,6.5,-18,0,0,-0.13605 -76180,3100:487:1,7,-18,0,0,-0.13605 -76181,3100:487:2,7.5,-18,0,0,-0.13605 -76182,3100:488:1,8,-18,0,0,-0.13605 -76183,3100:488:2,8.5,-18,0,0,-0.13605 -76184,3100:489:1,9,-18,0,0,-0.13605 -76185,3100:489:2,9.5,-18,0,0,-0.13605 -76186,3101:380:1,10,-18,0,0,-0.13605 -76187,3101:380:2,10.5,-18,0,0,-0.13605 -76188,3101:381:1,11,-18,0,0,-0.13605 -76189,3101:381:2,11.5,-18,0,0,-0.13605 -76190,3101:382:1,12,-18,0,0,-0.13605 -76191,3101:382:2,12.5,-18,0,0,-0.13605 -76192,3101:383:1,13,-18,0,0,-0.13605 -76193,3101:383:2,13.5,-18,0,0,-0.13605 -76194,3101:384:1,14,-18,0,0,-0.13605 -76195,3103:485:2,35.5,-18,0,0,-0.196583 -76196,3103:486:1,36,-18,0,0,-0.187149 -76197,3103:486:2,36.5,-18,0,0,-0.178457 -76198,3103:487:1,37,-18,0,0,-0.17032 -76199,3103:487:2,37.5,-18,0,0,-0.171904 -76200,3103:488:1,38,-18,0,0,-0.168127 -76201,3103:488:2,38.5,-18,0,0,-0.165033 -76202,3103:489:1,39,-18,0,0,-0.166012 -76203,3103:489:2,39.5,-18,0,0,-0.167227 -76204,3104:380:1,40,-18,0,0,-0.171999 -76205,3104:380:2,40.5,-18,0,0,-0.175169 -76206,3104:381:1,41,-18,0,0,-0.180152 -76207,3104:381:2,41.5,-18,0,0,-0.190004 -76208,3104:382:1,42,-18,0,0,-0.309057 -76209,3104:382:2,42.5,-18,0,0,-0.678113 -76210,3104:383:1,43,-18,0,0,-4.29357 -76211,3104:487:2,47.5,-18,0,0,-0.162561 -76212,3104:488:1,48,-18,0,0,-0.166699 -76213,3104:488:2,48.5,-18,0,0,-0.158562 -76214,3104:489:1,49,-18,0,0,-0.154003 -76215,3104:489:2,49.5,-18,0,0,-0.153772 -76216,3105:380:1,50,-18,0,0,-0.154759 -76217,3105:380:2,50.5,-18,0,0,-0.153271 -76218,3105:381:1,51,-18,0,0,-0.150302 -76219,3105:381:2,51.5,-18,0,0,-0.146663 -76220,3105:382:1,52,-18,0,0,-0.147559 -76221,3105:382:2,52.5,-18,0,0,-0.144871 -76222,3105:383:1,53,-18,0,0,-0.140563 -76223,3105:383:2,53.5,-18,0,0,-0.138462 -76224,3105:384:1,54,-18,0,0,-0.13707 -76225,3105:384:2,54.5,-18,0,0,-0.137354 -76226,3105:485:1,55,-18,0,0,-0.13996 -76227,3105:485:2,55.5,-18,0,0,-0.140545 -76228,3105:486:1,56,-18,0,0,-0.142181 -76229,3105:486:2,56.5,-18,0,0,-0.142603 -76230,3105:487:1,57,-18,0,0,-0.143742 -76231,3105:487:2,57.5,-18,0,0,-0.1438 -76232,3105:488:1,58,-18,0,0,-0.143529 -76233,3105:488:2,58.5,-18,0,0,-0.14378 -76234,3105:489:1,59,-18,0,0,-0.143567 -76235,3105:489:2,59.5,-18,0,0,-0.142795 -76236,3106:380:1,60,-18,0,0,-0.139566 -76237,3106:380:2,60.5,-18,0,0,-0.136304 -76238,3106:381:1,61,-18,0,0,-0.13605 -76239,3106:381:2,61.5,-18,0,0,-0.13605 -76240,3106:382:1,62,-18,0,0,-0.13605 -76241,3106:382:2,62.5,-18,0,0,-0.13605 -76242,3106:383:1,63,-18,0,0,-0.136176 -76243,3106:383:2,63.5,-18,0,0,-0.136343 -76244,3106:384:1,64,-18,0,0,-0.13605 -76245,3106:384:2,64.5,-18,0,0,-0.13605 -76246,3106:485:1,65,-18,0,0,-0.13605 -76247,3106:485:2,65.5,-18,0,0,-0.13605 -76248,3106:486:1,66,-18,0,0,-0.13605 -76249,3106:486:2,66.5,-18,0,0,-0.13605 -76250,3106:487:1,67,-18,0,0,-0.13605 -76251,3106:487:2,67.5,-18,0,0,-0.13605 -76252,3106:488:1,68,-18,0,0,-0.13605 -76253,3106:488:2,68.5,-18,0,0,-0.13605 -76254,3106:489:1,69,-18,0,0,-0.13605 -76255,3106:489:2,69.5,-18,0,0,-0.13605 -76256,3107:380:1,70,-18,0,0,-0.13605 -76257,3107:380:2,70.5,-18,0,0,-0.13605 -76258,3107:381:1,71,-18,0,0,-0.13605 -76259,3107:381:2,71.5,-18,0,0,-0.13605 -76260,3107:382:1,72,-18,0,0,-0.13605 -76261,3107:382:2,72.5,-18,0,0,-0.13605 -76262,3107:383:2,73.5,-18,0,0,-0.13605 -76263,3107:384:1,74,-18,0,0,-0.13605 -76264,3107:384:2,74.5,-18,0,0,-0.13605 -76265,3107:485:1,75,-18,0,0,-0.13605 -76266,3107:485:2,75.5,-18,0,0,-0.13605 -76267,3107:486:1,76,-18,0,0,-0.13605 -76268,3107:486:2,76.5,-18,0,0,-0.13605 -76269,3107:487:1,77,-18,0,0,-0.13605 -76270,3107:487:2,77.5,-18,0,0,-0.13605 -76271,3107:488:1,78,-18,0,0,-0.13605 -76272,3107:488:2,78.5,-18,0,0,-0.13605 -76273,3107:489:1,79,-18,0,0,-0.13605 -76274,3107:489:2,79.5,-18,0,0,-0.13605 -76275,3108:380:1,80,-18,0,0,-0.13605 -76276,3108:380:2,80.5,-18,0,0,-0.13605 -76277,3108:381:1,81,-18,0,0,-0.13605 -76278,3108:381:2,81.5,-18,0,0,-0.13605 -76279,3108:382:1,82,-18,0,0,-0.13605 -76280,3108:382:2,82.5,-18,0,0,-0.13605 -76281,3108:383:1,83,-18,0,0,-0.13605 -76282,3108:383:2,83.5,-18,0,0,-0.13605 -76283,3108:384:1,84,-18,0,0,-0.13605 -76284,3108:384:2,84.5,-18,0,0,-0.13605 -76285,3108:485:1,85,-18,0,0,-0.13605 -76286,3108:485:2,85.5,-18,0,0,-0.13605 -76287,3108:486:1,86,-18,0,0,-0.13605 -76288,3108:486:2,86.5,-18,0,0,-0.13605 -76289,3108:487:1,87,-18,0,0,-0.13605 -76290,3108:487:2,87.5,-18,0,0,-0.13605 -76291,3108:488:1,88,-18,0,0,-0.13605 -76292,3108:488:2,88.5,-18,0,0,-0.13605 -76293,3108:489:1,89,-18,0,0,-0.13605 -76294,3108:489:2,89.5,-18,0,0,-0.13605 -76295,3109:380:1,90,-18,0,0,-0.13605 -76296,3109:380:2,90.5,-18,0,0,-0.13605 -76297,3109:381:1,91,-18,0,0,-0.13605 -76298,3109:381:2,91.5,-18,0,0,-0.13605 -76299,3109:382:1,92,-18,0,0,-0.13605 -76300,3109:382:2,92.5,-18,0,0,-0.13605 -76301,3109:383:1,93,-18,0,0,-0.13605 -76302,3109:383:2,93.5,-18,0,0,-0.13605 -76303,3109:384:1,94,-18,0,0,-0.13605 -76304,3109:384:2,94.5,-18,0,0,-0.13605 -76305,3109:485:1,95,-18,0,0,-0.13605 -76306,3109:485:2,95.5,-18,0,0,-0.13605 -76307,3109:486:1,96,-18,0,0,-0.13605 -76308,3109:486:2,96.5,-18,0,0,-0.13605 -76309,3109:487:1,97,-18,0,0,-0.13605 -76310,3109:487:2,97.5,-18,0,0,-0.13605 -76311,3109:488:1,98,-18,0,0,-0.13605 -76312,3109:488:2,98.5,-18,0,0,-0.13605 -76313,3109:489:1,99,-18,0,0,-0.13605 -76314,3109:489:2,99.5,-18,0,0,-0.13605 -76315,3110:380:1,100,-18,0,0,-0.13605 -76316,3110:380:2,100.5,-18,0,0,-0.13605 -76317,3110:381:1,101,-18,0,0,-0.13605 -76318,3110:381:2,101.5,-18,0,0,-0.13605 -76319,3110:382:1,102,-18,0,0,-0.13605 -76320,3110:382:2,102.5,-18,0,0,-0.13605 -76321,3110:383:1,103,-18,0,0,-0.13605 -76322,3110:383:2,103.5,-18,0,0,-0.13605 -76323,3110:384:1,104,-18,0,0,-0.13605 -76324,3110:384:2,104.5,-18,0,0,-0.13605 -76325,3110:485:1,105,-18,0,0,-0.13605 -76326,3110:485:2,105.5,-18,0,0,-0.13605 -76327,3110:486:1,106,-18,0,0,-0.13605 -76328,3110:486:2,106.5,-18,0,0,-0.13605 -76329,3110:487:1,107,-18,0,0,-0.13605 -76330,3110:487:2,107.5,-18,0,0,-0.13605 -76331,3110:488:1,108,-18,0,0,-0.13605 -76332,3110:488:2,108.5,-18,0,0,-0.13605 -76333,3110:489:1,109,-18,0,0,-0.13605 -76334,3110:489:2,109.5,-18,0,0,-0.13605 -76335,3111:380:1,110,-18,0,0,-0.13605 -76336,3111:380:2,110.5,-18,0,0,-0.13605 -76337,3111:381:1,111,-18,0,0,-0.13605 -76338,3111:381:2,111.5,-18,0,0,-0.13605 -76339,3111:382:1,112,-18,0,0,-0.13605 -76340,3111:382:2,112.5,-18,0,0,-0.13605 -76341,3111:383:1,113,-18,0,0,-0.13605 -76342,3111:383:2,113.5,-18,0,0,-0.13605 -76343,3111:384:1,114,-18,0,0,-0.13605 -76344,3115:381:2,151.5,-18,0,0,-0.158152 -76345,3115:382:1,152,-18,0,0,-0.148762 -76346,3115:382:2,152.5,-18,0,0,-0.144812 -76347,3115:383:1,153,-18,0,0,-0.146425 -76348,3115:383:2,153.5,-18,0,0,-0.147839 -76349,3115:384:1,154,-18,0,0,-0.150895 -76350,3115:384:2,154.5,-18,0,0,-0.152688 -76351,3115:485:1,155,-18,0,0,-0.146109 -76352,3115:485:2,155.5,-18,0,0,-0.138682 -76353,3115:486:1,156,-18,0,0,-0.13605 -76354,3115:486:2,156.5,-18,0,0,-0.13605 -76355,3115:487:1,157,-18,0,0,-0.136176 -76356,3115:487:2,157.5,-18,0,0,-0.13672 -76357,3115:488:1,158,-18,0,0,-0.13605 -76358,3115:488:2,158.5,-18,0,0,-0.13605 -76359,3115:489:1,159,-18,0,0,-0.13605 -76360,3115:489:2,159.5,-18,0,0,-0.13605 -76361,3116:380:1,160,-18,0,0,-0.13605 -76362,3116:380:2,160.5,-18,0,0,-0.13605 -76363,3116:381:1,161,-18,0,0,-0.13605 -76364,3116:381:2,161.5,-18,0,0,-0.13605 -76365,3116:382:1,162,-18,0,0,-0.13605 -76366,3116:382:2,162.5,-18,0,0,-0.13605 -76367,3116:383:1,163,-18,0,0,-0.13605 -76368,3116:383:2,163.5,-18,0,0,-0.13605 -76369,3116:384:1,164,-18,0,0,-0.13605 -76370,3116:384:2,164.5,-18,0,0,-0.13605 -76371,3116:485:1,165,-18,0,0,-0.13605 -76372,3116:485:2,165.5,-18,0,0,-0.13605 -76373,3116:486:1,166,-18,0,0,-0.13605 -76374,3116:486:2,166.5,-18,0,0,-0.13605 -76375,3116:487:1,167,-18,0,0,-0.13605 -76376,3116:487:2,167.5,-18,0,0,-0.13605 -76377,3116:488:1,168,-18,0,0,-0.13605 -76378,3116:488:2,168.5,-18,0,0,-0.13605 -76379,3116:489:1,169,-18,0,0,-0.13605 -76380,3116:489:2,169.5,-18,0,0,-0.13605 -76381,3117:380:1,170,-18,0,0,-0.13605 -76382,3117:380:2,170.5,-18,0,0,-0.13605 -76383,3117:381:1,171,-18,0,0,-0.13605 -76384,3117:381:2,171.5,-18,0,0,-0.13605 -76385,3117:382:1,172,-18,0,0,-0.13605 -76386,3117:382:2,172.5,-18,0,0,-0.13605 -76387,3117:383:1,173,-18,0,0,-0.13605 -76388,3117:383:2,173.5,-18,0,0,-0.13605 -76389,3117:384:1,174,-18,0,0,-0.13605 -76390,3117:384:2,174.5,-18,0,0,-0.13605 -76391,3117:485:1,175,-18,0,0,-0.13605 -76392,3117:485:2,175.5,-18,0,0,-0.13605 -76393,3117:486:1,176,-18,0,0,-0.13605 -76394,3117:486:2,176.5,-18,0,0,-0.13605 -76395,3117:487:1,177,-18,0,0,-0.13605 -76396,3117:487:2,177.5,-18,0,0,-0.13605 -76397,3117:488:1,178,-18,0,0,-0.13605 -76398,3117:488:2,178.5,-18,0,0,-0.13605 -76399,3117:489:1,179,-18,0,0,-0.13605 -76400,3117:489:2,179.5,-18,0,0,-0.13605 -76401,3118:380:1,180,-18,0,0,-0.13605 -76402,5118:370:3,-180,-17.5,0,0,-0.13605 -76403,5117:479:4,-179.5,-17.5,0,0,-0.13605 -76404,5117:479:3,-179,-17.5,0,0,-0.13605 -76405,5117:478:4,-178.5,-17.5,0,0,-0.13605 -76406,5117:478:3,-178,-17.5,0,0,-0.13605 -76407,5117:477:4,-177.5,-17.5,0,0,-0.13605 -76408,5117:477:3,-177,-17.5,0,0,-0.13605 -76409,5117:476:4,-176.5,-17.5,0,0,-0.13605 -76410,5117:476:3,-176,-17.5,0,0,-0.13605 -76411,5117:475:4,-175.5,-17.5,0,0,-0.13605 -76412,5117:475:3,-175,-17.5,0,0,-0.13605 -76413,5117:374:4,-174.5,-17.5,0,0,-0.13605 -76414,5117:374:3,-174,-17.5,0,0,-0.13605 -76415,5117:373:4,-173.5,-17.5,0,0,-0.13605 -76416,5117:373:3,-173,-17.5,0,0,-0.13605 -76417,5117:372:4,-172.5,-17.5,0,0,-0.13605 -76418,5117:372:3,-172,-17.5,0,0,-0.13605 -76419,5117:371:4,-171.5,-17.5,0,0,-0.13605 -76420,5117:371:3,-171,-17.5,0,0,-0.13605 -76421,5117:370:4,-170.5,-17.5,0,0,-0.13605 -76422,5117:370:3,-170,-17.5,0,0,-0.13605 -76423,5116:479:4,-169.5,-17.5,0,0,-0.13605 -76424,5116:479:3,-169,-17.5,0,0,-0.13605 -76425,5116:478:4,-168.5,-17.5,0,0,-0.13605 -76426,5116:478:3,-168,-17.5,0,0,-0.13605 -76427,5116:477:4,-167.5,-17.5,0,0,-0.13605 -76428,5116:477:3,-167,-17.5,0,0,-0.13605 -76429,5116:476:4,-166.5,-17.5,0,0,-0.13605 -76430,5116:476:3,-166,-17.5,0,0,-0.13605 -76431,5116:475:4,-165.5,-17.5,0,0,-0.13605 -76432,5116:475:3,-165,-17.5,0,0,-0.13605 -76433,5116:374:4,-164.5,-17.5,0,0,-0.13605 -76434,5116:374:3,-164,-17.5,0,0,-0.13605 -76435,5116:373:4,-163.5,-17.5,0,0,-0.13605 -76436,5116:373:3,-163,-17.5,0,0,-0.13605 -76437,5116:372:4,-162.5,-17.5,0,0,-0.13605 -76438,5116:372:3,-162,-17.5,0,0,-0.13605 -76439,5116:371:4,-161.5,-17.5,0,0,-0.13605 -76440,5116:371:3,-161,-17.5,0,0,-0.13605 -76441,5116:370:4,-160.5,-17.5,0,0,-0.13605 -76442,5116:370:3,-160,-17.5,0,0,-0.13605 -76443,5115:479:4,-159.5,-17.5,0,0,-0.13605 -76444,5115:479:3,-159,-17.5,0,0,-0.13605 -76445,5115:478:4,-158.5,-17.5,0,0,-0.13605 -76446,5115:478:3,-158,-17.5,0,0,-0.13605 -76447,5115:477:4,-157.5,-17.5,0,0,-0.13605 -76448,5115:477:3,-157,-17.5,0,0,-0.13605 -76449,5115:476:4,-156.5,-17.5,0,0,-0.13605 -76450,5115:476:3,-156,-17.5,0,0,-0.13605 -76451,5115:475:4,-155.5,-17.5,0,0,-0.13605 -76452,5115:475:3,-155,-17.5,0,0,-0.13605 -76453,5115:374:4,-154.5,-17.5,0,0,-0.13605 -76454,5115:374:3,-154,-17.5,0,0,-0.13605 -76455,5115:373:4,-153.5,-17.5,0,0,-0.13605 -76456,5115:373:3,-153,-17.5,0,0,-0.13605 -76457,5115:372:4,-152.5,-17.5,0,0,-0.13605 -76458,5115:372:3,-152,-17.5,0,0,-0.13605 -76459,5115:371:4,-151.5,-17.5,0,0,-0.13605 -76460,5115:371:3,-151,-17.5,0,0,-0.137053 -76461,5115:370:4,-150.5,-17.5,0,0,-0.13605 -76462,5115:370:3,-150,-17.5,0,0,-0.13605 -76463,5114:479:4,-149.5,-17.5,0,0,-0.136447 -76464,5114:479:3,-149,-17.5,0,0,-0.138142 -76465,5114:478:4,-148.5,-17.5,0,0,-0.138395 -76466,5114:478:3,-148,-17.5,0,0,-0.137873 -76467,5114:477:4,-147.5,-17.5,0,0,-0.137605 -76468,5114:477:3,-147,-17.5,0,0,-0.137304 -76469,5114:476:4,-146.5,-17.5,0,0,-0.136254 -76470,5114:476:3,-146,-17.5,0,0,-0.136156 -76471,5114:475:4,-145.5,-17.5,0,0,-0.136146 -76472,5114:475:3,-145,-17.5,0,0,-0.136061 -76473,5114:374:4,-144.5,-17.5,0,0,-0.136116 -76474,5114:374:3,-144,-17.5,0,0,-0.13605 -76475,5114:373:4,-143.5,-17.5,0,0,-0.13605 -76476,5114:373:3,-143,-17.5,0,0,-0.136066 -76477,5114:372:4,-142.5,-17.5,0,0,-0.136343 -76478,5114:372:3,-142,-17.5,0,0,-0.136091 -76479,5114:371:4,-141.5,-17.5,0,0,-0.13605 -76480,5114:371:3,-141,-17.5,0,0,-0.13605 -76481,5114:370:4,-140.5,-17.5,0,0,-0.137941 -76482,5114:370:3,-140,-17.5,0,0,-0.140488 -76483,5113:479:4,-139.5,-17.5,0,0,-0.140753 -76484,5113:479:3,-139,-17.5,0,0,-0.140715 -76485,5113:478:4,-138.5,-17.5,0,0,-0.138614 -76486,5113:478:3,-138,-17.5,0,0,-0.139585 -76487,5113:477:4,-137.5,-17.5,0,0,-0.14157 -76488,5113:477:3,-137,-17.5,0,0,-0.141037 -76489,5113:476:4,-136.5,-17.5,0,0,-0.139866 -76490,5113:476:3,-136,-17.5,0,0,-0.141532 -76491,5113:475:4,-135.5,-17.5,0,0,-0.143316 -76492,5113:475:3,-135,-17.5,0,0,-0.143355 -76493,5113:374:4,-134.5,-17.5,0,0,-0.142526 -76494,5113:374:3,-134,-17.5,0,0,-0.141113 -76495,5113:373:4,-133.5,-17.5,0,0,-0.138733 -76496,5113:373:3,-133,-17.5,0,0,-0.136195 -76497,5113:372:4,-132.5,-17.5,0,0,-0.13605 -76498,5113:372:3,-132,-17.5,0,0,-0.13605 -76499,5113:371:4,-131.5,-17.5,0,0,-0.13605 -76500,5113:371:3,-131,-17.5,0,0,-0.13605 -76501,5113:370:4,-130.5,-17.5,0,0,-0.13605 -76502,5113:370:3,-130,-17.5,0,0,-0.13605 -76503,5112:479:4,-129.5,-17.5,0,0,-0.13605 -76504,5112:479:3,-129,-17.5,0,0,-0.13605 -76505,5112:478:4,-128.5,-17.5,0,0,-0.13605 -76506,5112:478:3,-128,-17.5,0,0,-0.13605 -76507,5112:477:4,-127.5,-17.5,0,0,-0.13605 -76508,5112:477:3,-127,-17.5,0,0,-0.13605 -76509,5112:476:4,-126.5,-17.5,0,0,-0.13605 -76510,5112:476:3,-126,-17.5,0,0,-0.13605 -76511,5112:475:4,-125.5,-17.5,0,0,-0.13605 -76512,5112:475:3,-125,-17.5,0,0,-0.13605 -76513,5112:374:4,-124.5,-17.5,0,0,-0.13605 -76514,5112:374:3,-124,-17.5,0,0,-0.13605 -76515,5112:373:4,-123.5,-17.5,0,0,-0.13605 -76516,5112:373:3,-123,-17.5,0,0,-0.13605 -76517,5112:372:4,-122.5,-17.5,0,0,-0.13605 -76518,5112:372:3,-122,-17.5,0,0,-0.13605 -76519,5112:371:4,-121.5,-17.5,0,0,-0.13605 -76520,5112:371:3,-121,-17.5,0,0,-0.13605 -76521,5112:370:4,-120.5,-17.5,0,0,-0.13605 -76522,5112:370:3,-120,-17.5,0,0,-0.13605 -76523,5111:479:4,-119.5,-17.5,0,0,-0.13605 -76524,5111:479:3,-119,-17.5,0,0,-0.13605 -76525,5111:478:4,-118.5,-17.5,0,0,-0.13605 -76526,5111:478:3,-118,-17.5,0,0,-0.13605 -76527,5111:477:4,-117.5,-17.5,0,0,-0.13605 -76528,5111:477:3,-117,-17.5,0,0,-0.13605 -76529,5111:476:4,-116.5,-17.5,0,0,-0.13605 -76530,5111:476:3,-116,-17.5,0,0,-0.13605 -76531,5111:475:4,-115.5,-17.5,0,0,-0.13605 -76532,5111:475:3,-115,-17.5,0,0,-0.13605 -76533,5111:374:4,-114.5,-17.5,0,0,-0.13605 -76534,5111:374:3,-114,-17.5,0,0,-0.13605 -76535,5111:373:4,-113.5,-17.5,0,0,-0.13605 -76536,5111:373:3,-113,-17.5,0,0,-0.13605 -76537,5111:372:4,-112.5,-17.5,0,0,-0.13605 -76538,5111:372:3,-112,-17.5,0,0,-0.13605 -76539,5111:371:4,-111.5,-17.5,0,0,-0.13605 -76540,5111:371:3,-111,-17.5,0,0,-0.13605 -76541,5111:370:4,-110.5,-17.5,0,0,-0.13605 -76542,5111:370:3,-110,-17.5,0,0,-0.13605 -76543,5110:479:4,-109.5,-17.5,0,0,-0.13605 -76544,5110:479:3,-109,-17.5,0,0,-0.13605 -76545,5110:478:4,-108.5,-17.5,0,0,-0.13605 -76546,5110:478:3,-108,-17.5,0,0,-0.13605 -76547,5110:477:4,-107.5,-17.5,0,0,-0.13605 -76548,5110:477:3,-107,-17.5,0,0,-0.13605 -76549,5110:476:4,-106.5,-17.5,0,0,-0.13605 -76550,5110:476:3,-106,-17.5,0,0,-0.13605 -76551,5110:475:4,-105.5,-17.5,0,0,-0.13605 -76552,5110:475:3,-105,-17.5,0,0,-0.13605 -76553,5110:374:4,-104.5,-17.5,0,0,-0.13605 -76554,5110:374:3,-104,-17.5,0,0,-0.13605 -76555,5110:373:4,-103.5,-17.5,0,0,-0.13605 -76556,5110:373:3,-103,-17.5,0,0,-0.13605 -76557,5110:372:4,-102.5,-17.5,0,0,-0.13605 -76558,5110:372:3,-102,-17.5,0,0,-0.13605 -76559,5110:371:4,-101.5,-17.5,0,0,-0.13605 -76560,5110:371:3,-101,-17.5,0,0,-0.13605 -76561,5110:370:4,-100.5,-17.5,0,0,-0.13605 -76562,5110:370:3,-100,-17.5,0,0,-0.13605 -76563,5109:479:4,-99.5,-17.5,0,0,-0.13605 -76564,5109:479:3,-99,-17.5,0,0,-0.13605 -76565,5109:478:4,-98.5,-17.5,0,0,-0.13605 -76566,5109:478:3,-98,-17.5,0,0,-0.13605 -76567,5109:477:4,-97.5,-17.5,0,0,-0.13605 -76568,5109:477:3,-97,-17.5,0,0,-0.13605 -76569,5109:476:4,-96.5,-17.5,0,0,-0.13605 -76570,5109:476:3,-96,-17.5,0,0,-0.13605 -76571,5109:475:4,-95.5,-17.5,0,0,-0.13605 -76572,5109:475:3,-95,-17.5,0,0,-0.13605 -76573,5109:374:4,-94.5,-17.5,0,0,-0.13605 -76574,5109:374:3,-94,-17.5,0,0,-0.13605 -76575,5109:373:4,-93.5,-17.5,0,0,-0.13605 -76576,5109:373:3,-93,-17.5,0,0,-0.13605 -76577,5109:372:4,-92.5,-17.5,0,0,-0.13605 -76578,5109:372:3,-92,-17.5,0,0,-0.13605 -76579,5109:371:4,-91.5,-17.5,0,0,-0.13605 -76580,5109:371:3,-91,-17.5,0,0,-0.13605 -76581,5109:370:4,-90.5,-17.5,0,0,-0.13605 -76582,5109:370:3,-90,-17.5,0,0,-0.13605 -76583,5108:479:4,-89.5,-17.5,0,0,-0.13605 -76584,5108:479:3,-89,-17.5,0,0,-0.13605 -76585,5108:478:4,-88.5,-17.5,0,0,-0.13605 -76586,5108:478:3,-88,-17.5,0,0,-0.13605 -76587,5108:477:4,-87.5,-17.5,0,0,-0.13605 -76588,5108:477:3,-87,-17.5,0,0,-0.13605 -76589,5108:476:4,-86.5,-17.5,0,0,-0.13605 -76590,5108:476:3,-86,-17.5,0,0,-0.13605 -76591,5108:475:4,-85.5,-17.5,0,0,-0.13605 -76592,5108:475:3,-85,-17.5,0,0,-0.13605 -76593,5108:374:4,-84.5,-17.5,0,0,-0.13605 -76594,5108:374:3,-84,-17.5,0,0,-0.13605 -76595,5108:373:4,-83.5,-17.5,0,0,-0.13605 -76596,5108:373:3,-83,-17.5,0,0,-0.13605 -76597,5108:372:4,-82.5,-17.5,0,0,-0.13605 -76598,5108:372:3,-82,-17.5,0,0,-0.13605 -76599,5108:371:4,-81.5,-17.5,0,0,-0.13605 -76600,5108:371:3,-81,-17.5,0,0,-0.13605 -76601,5108:370:4,-80.5,-17.5,0,0,-0.13605 -76602,5108:370:3,-80,-17.5,0,0,-0.13605 -76603,5107:479:4,-79.5,-17.5,0,0,-0.13605 -76604,5107:479:3,-79,-17.5,0,0,-0.13605 -76605,5107:478:4,-78.5,-17.5,0,0,-0.13605 -76606,5107:478:3,-78,-17.5,0,0,-0.13605 -76607,5107:477:4,-77.5,-17.5,0,0,-0.13605 -76608,5107:477:3,-77,-17.5,0,0,-0.13605 -76609,5107:476:4,-76.5,-17.5,0,0,-0.13605 -76610,5107:476:3,-76,-17.5,0,0,-0.13605 -76611,5107:475:4,-75.5,-17.5,0,0,-0.13605 -76612,5107:475:3,-75,-17.5,0,0,-0.13605 -76613,5107:374:4,-74.5,-17.5,0,0,-0.13605 -76614,5107:374:3,-74,-17.5,0,0,-0.13605 -76615,5107:373:4,-73.5,-17.5,0,0,-0.13605 -76616,5107:373:3,-73,-17.5,0,0,-0.13605 -76617,5107:372:4,-72.5,-17.5,0,0,-0.13605 -76618,5107:372:3,-72,-17.5,0,0,-0.13605 -76619,5107:371:4,-71.5,-17.5,0,0,-0.13605 -76620,5107:371:3,-71,-17.5,0,0,-0.13605 -76621,5107:370:4,-70.5,-17.5,0,0,-0.13605 -76622,5104:372:3,-42,-17.5,0,0,-0.13605 -76623,5104:371:4,-41.5,-17.5,0,0,-0.160416 -76624,5104:371:3,-41,-17.5,0,0,-0.176388 -76625,5104:370:4,-40.5,-17.5,0,0,-0.174008 -76626,5104:370:3,-40,-17.5,0,0,-0.181158 -76627,5103:479:4,-39.5,-17.5,0,0,-0.178854 -76628,5103:479:3,-39,-17.5,0,0,-0.179153 -76629,5103:478:4,-38.5,-17.5,0,0,-0.178954 -76630,5103:478:3,-38,-17.5,0,0,-0.175753 -76631,5103:477:4,-37.5,-17.5,0,0,-0.17324 -76632,5103:477:3,-37,-17.5,0,0,-0.171833 -76633,5103:476:4,-36.5,-17.5,0,0,-0.169594 -76634,5103:476:3,-36,-17.5,0,0,-0.166974 -76635,5103:475:4,-35.5,-17.5,0,0,-0.165397 -76636,5103:475:3,-35,-17.5,0,0,-0.165147 -76637,5103:374:4,-34.5,-17.5,0,0,-0.165102 -76638,5103:374:3,-34,-17.5,0,0,-0.164988 -76639,5103:373:4,-33.5,-17.5,0,0,-0.165898 -76640,5103:373:3,-33,-17.5,0,0,-0.167388 -76641,5103:372:4,-32.5,-17.5,0,0,-0.168452 -76642,5103:372:3,-32,-17.5,0,0,-0.169057 -76643,5103:371:4,-31.5,-17.5,0,0,-0.169383 -76644,5103:371:3,-31,-17.5,0,0,-0.169336 -76645,5103:370:4,-30.5,-17.5,0,0,-0.16873 -76646,5103:370:3,-30,-17.5,0,0,-0.165602 -76647,5102:479:4,-29.5,-17.5,0,0,-0.160109 -76648,5102:479:3,-29,-17.5,0,0,-0.153898 -76649,5102:478:4,-28.5,-17.5,0,0,-0.147999 -76650,5102:478:3,-28,-17.5,0,0,-0.143722 -76651,5102:477:4,-27.5,-17.5,0,0,-0.141379 -76652,5102:477:3,-27,-17.5,0,0,-0.140734 -76653,5102:476:4,-26.5,-17.5,0,0,-0.140962 -76654,5102:476:3,-26,-17.5,0,0,-0.141493 -76655,5102:475:4,-25.5,-17.5,0,0,-0.141894 -76656,5102:475:3,-25,-17.5,0,0,-0.142105 -76657,5102:374:4,-24.5,-17.5,0,0,-0.142047 -76658,5102:374:3,-24,-17.5,0,0,-0.141798 -76659,5102:373:4,-23.5,-17.5,0,0,-0.141398 -76660,5102:373:3,-23,-17.5,0,0,-0.141018 -76661,5102:372:4,-22.5,-17.5,0,0,-0.140809 -76662,5102:372:3,-22,-17.5,0,0,-0.141189 -76663,5102:371:4,-21.5,-17.5,0,0,-0.141932 -76664,5102:371:3,-21,-17.5,0,0,-0.142392 -76665,5102:370:4,-20.5,-17.5,0,0,-0.142354 -76666,5102:370:3,-20,-17.5,0,0,-0.141837 -76667,5101:479:4,-19.5,-17.5,0,0,-0.140848 -76668,5101:479:3,-19,-17.5,0,0,-0.139998 -76669,5101:478:4,-18.5,-17.5,0,0,-0.13966 -76670,5101:478:3,-18,-17.5,0,0,-0.138986 -76671,5101:477:4,-17.5,-17.5,0,0,-0.13826 -76672,5101:477:3,-17,-17.5,0,0,-0.137672 -76673,5101:476:4,-16.5,-17.5,0,0,-0.136987 -76674,5101:476:3,-16,-17.5,0,0,-0.136202 -76675,5101:475:4,-15.5,-17.5,0,0,-0.13605 -76676,5101:475:3,-15,-17.5,0,0,-0.13605 -76677,5101:374:4,-14.5,-17.5,0,0,-0.13605 -76678,5101:374:3,-14,-17.5,0,0,-0.13605 -76679,5101:373:4,-13.5,-17.5,0,0,-0.13605 -76680,5101:373:3,-13,-17.5,0,0,-0.13605 -76681,5101:372:4,-12.5,-17.5,0,0,-0.13605 -76682,5101:372:3,-12,-17.5,0,0,-0.13605 -76683,5101:371:4,-11.5,-17.5,0,0,-0.13605 -76684,5101:371:3,-11,-17.5,0,0,-0.13605 -76685,5101:370:4,-10.5,-17.5,0,0,-0.13605 -76686,5101:370:3,-10,-17.5,0,0,-0.13605 -76687,5100:479:4,-9.5,-17.5,0,0,-0.13605 -76688,5100:479:3,-9,-17.5,0,0,-0.13605 -76689,5100:478:4,-8.5,-17.5,0,0,-0.13605 -76690,5100:478:3,-8,-17.5,0,0,-0.13605 -76691,5100:477:4,-7.5,-17.5,0,0,-0.13605 -76692,5100:477:3,-7,-17.5,0,0,-0.13605 -76693,5100:476:4,-6.5,-17.5,0,0,-0.13605 -76694,5100:476:3,-6,-17.5,0,0,-0.13605 -76695,5100:475:4,-5.5,-17.5,0,0,-0.13605 -76696,5100:475:3,-5,-17.5,0,0,-0.13605 -76697,5100:374:4,-4.5,-17.5,0,0,-0.13605 -76698,5100:374:3,-4,-17.5,0,0,-0.13605 -76699,5100:373:4,-3.5,-17.5,0,0,-0.13605 -76700,5100:373:3,-3,-17.5,0,0,-0.13605 -76701,5100:372:4,-2.5,-17.5,0,0,-0.13605 -76702,5100:372:3,-2,-17.5,0,0,-0.13605 -76703,5100:371:4,-1.5,-17.5,0,0,-0.13605 -76704,5100:371:3,-1,-17.5,0,0,-0.13605 -76705,5100:370:4,-0.5,-17.5,0,0,-0.13605 -76706,3100:370:4,0,-17.5,0,0,-0.13605 -76707,3100:370:4,0.5,-17.5,0,0,-0.13605 -76708,3100:371:3,1,-17.5,0,0,-0.13605 -76709,3100:371:4,1.5,-17.5,0,0,-0.13605 -76710,3100:372:3,2,-17.5,0,0,-0.13605 -76711,3100:372:4,2.5,-17.5,0,0,-0.13605 -76712,3100:373:3,3,-17.5,0,0,-0.13605 -76713,3100:373:4,3.5,-17.5,0,0,-0.13605 -76714,3100:374:3,4,-17.5,0,0,-0.13605 -76715,3100:374:4,4.5,-17.5,0,0,-0.13605 -76716,3100:475:3,5,-17.5,0,0,-0.13605 -76717,3100:475:4,5.5,-17.5,0,0,-0.13605 -76718,3100:476:3,6,-17.5,0,0,-0.13605 -76719,3100:476:4,6.5,-17.5,0,0,-0.13605 -76720,3100:477:3,7,-17.5,0,0,-0.13605 -76721,3100:477:4,7.5,-17.5,0,0,-0.13605 -76722,3100:478:3,8,-17.5,0,0,-0.13605 -76723,3100:478:4,8.5,-17.5,0,0,-0.13605 -76724,3100:479:3,9,-17.5,0,0,-0.13605 -76725,3100:479:4,9.5,-17.5,0,0,-0.13605 -76726,3101:370:3,10,-17.5,0,0,-0.13605 -76727,3101:370:4,10.5,-17.5,0,0,-0.13605 -76728,3101:371:3,11,-17.5,0,0,-0.13605 -76729,3101:371:4,11.5,-17.5,0,0,-0.13605 -76730,3101:372:3,12,-17.5,0,0,-0.13605 -76731,3101:372:4,12.5,-17.5,0,0,-0.13605 -76732,3101:373:3,13,-17.5,0,0,-0.13605 -76733,3101:373:4,13.5,-17.5,0,0,-0.13605 -76734,3101:374:3,14,-17.5,0,0,-0.13605 -76735,3103:475:4,35.5,-17.5,0,0,-0.208658 -76736,3103:476:3,36,-17.5,0,0,-0.191719 -76737,3103:476:4,36.5,-17.5,0,0,-0.179527 -76738,3103:477:3,37,-17.5,0,0,-0.172355 -76739,3103:477:4,37.5,-17.5,0,0,-0.176927 -76740,3103:478:3,38,-17.5,0,0,-0.171571 -76741,3103:478:4,38.5,-17.5,0,0,-0.167342 -76742,3103:479:3,39,-17.5,0,0,-0.170203 -76743,3103:479:4,39.5,-17.5,0,0,-0.176486 -76744,3104:370:3,40,-17.5,0,0,-0.184344 -76745,3104:370:4,40.5,-17.5,0,0,-0.189897 -76746,3104:371:3,41,-17.5,0,0,-0.230597 -76747,3104:371:4,41.5,-17.5,0,0,-0.524698 -76748,3104:372:3,42,-17.5,0,0,-2.53137 -76749,3104:372:4,42.5,-17.5,0,0,2.57556 -76750,3104:373:3,43,-17.5,0,0,-1.8336 -76751,3104:478:3,48,-17.5,0,0,-0.176168 -76752,3104:478:4,48.5,-17.5,0,0,-0.168847 -76753,3104:479:3,49,-17.5,0,0,-0.158238 -76754,3104:479:4,49.5,-17.5,0,0,-0.1562 -76755,3105:370:3,50,-17.5,0,0,-0.155987 -76756,3105:370:4,50.5,-17.5,0,0,-0.15396 -76757,3105:371:3,51,-17.5,0,0,-0.151367 -76758,3105:371:4,51.5,-17.5,0,0,-0.149632 -76759,3105:372:3,52,-17.5,0,0,-0.147718 -76760,3105:372:4,52.5,-17.5,0,0,-0.145695 -76761,3105:373:3,53,-17.5,0,0,-0.14349 -76762,3105:373:4,53.5,-17.5,0,0,-0.143432 -76763,3105:374:3,54,-17.5,0,0,-0.144617 -76764,3105:374:4,54.5,-17.5,0,0,-0.143877 -76765,3105:475:3,55,-17.5,0,0,-0.142776 -76766,3105:475:4,55.5,-17.5,0,0,-0.141798 -76767,3105:476:3,56,-17.5,0,0,-0.143703 -76768,3105:476:4,56.5,-17.5,0,0,-0.148863 -76769,3105:477:3,57,-17.5,0,0,-0.151387 -76770,3105:477:4,57.5,-17.5,0,0,-0.149246 -76771,3105:478:3,58,-17.5,0,0,-0.147359 -76772,3105:478:4,58.5,-17.5,0,0,-0.147999 -76773,3105:479:3,59,-17.5,0,0,-0.149085 -76774,3105:479:4,59.5,-17.5,0,0,-0.145518 -76775,3106:370:3,60,-17.5,0,0,-0.14117 -76776,3106:370:4,60.5,-17.5,0,0,-0.138885 -76777,3106:371:3,61,-17.5,0,0,-0.136279 -76778,3106:371:4,61.5,-17.5,0,0,-0.13605 -76779,3106:372:3,62,-17.5,0,0,-0.136421 -76780,3106:372:4,62.5,-17.5,0,0,-0.138226 -76781,3106:373:3,63,-17.5,0,0,-0.137571 -76782,3106:373:4,63.5,-17.5,0,0,-0.13605 -76783,3106:374:3,64,-17.5,0,0,-0.13605 -76784,3106:374:4,64.5,-17.5,0,0,-0.13605 -76785,3106:475:3,65,-17.5,0,0,-0.13605 -76786,3106:475:4,65.5,-17.5,0,0,-0.13605 -76787,3106:476:3,66,-17.5,0,0,-0.13605 -76788,3106:476:4,66.5,-17.5,0,0,-0.13605 -76789,3106:477:3,67,-17.5,0,0,-0.13605 -76790,3106:477:4,67.5,-17.5,0,0,-0.13605 -76791,3106:478:3,68,-17.5,0,0,-0.13605 -76792,3106:478:4,68.5,-17.5,0,0,-0.13605 -76793,3106:479:3,69,-17.5,0,0,-0.13605 -76794,3106:479:4,69.5,-17.5,0,0,-0.13605 -76795,3107:370:3,70,-17.5,0,0,-0.13605 -76796,3107:370:4,70.5,-17.5,0,0,-0.13605 -76797,3107:371:3,71,-17.5,0,0,-0.13605 -76798,3107:371:4,71.5,-17.5,0,0,-0.13605 -76799,3107:372:3,72,-17.5,0,0,-0.13605 -76800,3107:372:4,72.5,-17.5,0,0,-0.13605 -76801,3107:373:4,73.5,-17.5,0,0,-0.13605 -76802,3107:374:3,74,-17.5,0,0,-0.13605 -76803,3107:374:4,74.5,-17.5,0,0,-0.13605 -76804,3107:475:3,75,-17.5,0,0,-0.13605 -76805,3107:475:4,75.5,-17.5,0,0,-0.13605 -76806,3107:476:3,76,-17.5,0,0,-0.13605 -76807,3107:476:4,76.5,-17.5,0,0,-0.13605 -76808,3107:477:3,77,-17.5,0,0,-0.13605 -76809,3107:477:4,77.5,-17.5,0,0,-0.13605 -76810,3107:478:3,78,-17.5,0,0,-0.13605 -76811,3107:478:4,78.5,-17.5,0,0,-0.13605 -76812,3107:479:3,79,-17.5,0,0,-0.13605 -76813,3107:479:4,79.5,-17.5,0,0,-0.13605 -76814,3108:370:3,80,-17.5,0,0,-0.13605 -76815,3108:370:4,80.5,-17.5,0,0,-0.13605 -76816,3108:371:3,81,-17.5,0,0,-0.13605 -76817,3108:371:4,81.5,-17.5,0,0,-0.13605 -76818,3108:372:3,82,-17.5,0,0,-0.13605 -76819,3108:372:4,82.5,-17.5,0,0,-0.13605 -76820,3108:373:3,83,-17.5,0,0,-0.13605 -76821,3108:373:4,83.5,-17.5,0,0,-0.13605 -76822,3108:374:3,84,-17.5,0,0,-0.13605 -76823,3108:374:4,84.5,-17.5,0,0,-0.13605 -76824,3108:475:3,85,-17.5,0,0,-0.13605 -76825,3108:475:4,85.5,-17.5,0,0,-0.13605 -76826,3108:476:3,86,-17.5,0,0,-0.13605 -76827,3108:476:4,86.5,-17.5,0,0,-0.13605 -76828,3108:477:3,87,-17.5,0,0,-0.13605 -76829,3108:477:4,87.5,-17.5,0,0,-0.13605 -76830,3108:478:3,88,-17.5,0,0,-0.13605 -76831,3108:478:4,88.5,-17.5,0,0,-0.13605 -76832,3108:479:3,89,-17.5,0,0,-0.13605 -76833,3108:479:4,89.5,-17.5,0,0,-0.13605 -76834,3109:370:3,90,-17.5,0,0,-0.13605 -76835,3109:370:4,90.5,-17.5,0,0,-0.13605 -76836,3109:371:3,91,-17.5,0,0,-0.13605 -76837,3109:371:4,91.5,-17.5,0,0,-0.13605 -76838,3109:372:3,92,-17.5,0,0,-0.13605 -76839,3109:372:4,92.5,-17.5,0,0,-0.13605 -76840,3109:373:3,93,-17.5,0,0,-0.13605 -76841,3109:373:4,93.5,-17.5,0,0,-0.13605 -76842,3109:374:3,94,-17.5,0,0,-0.13605 -76843,3109:374:4,94.5,-17.5,0,0,-0.13605 -76844,3109:475:3,95,-17.5,0,0,-0.13605 -76845,3109:475:4,95.5,-17.5,0,0,-0.13605 -76846,3109:476:3,96,-17.5,0,0,-0.13605 -76847,3109:476:4,96.5,-17.5,0,0,-0.13605 -76848,3109:477:3,97,-17.5,0,0,-0.13605 -76849,3109:477:4,97.5,-17.5,0,0,-0.13605 -76850,3109:478:3,98,-17.5,0,0,-0.13605 -76851,3109:478:4,98.5,-17.5,0,0,-0.13605 -76852,3109:479:3,99,-17.5,0,0,-0.13605 -76853,3109:479:4,99.5,-17.5,0,0,-0.13605 -76854,3110:370:3,100,-17.5,0,0,-0.13605 -76855,3110:370:4,100.5,-17.5,0,0,-0.13605 -76856,3110:371:3,101,-17.5,0,0,-0.13605 -76857,3110:371:4,101.5,-17.5,0,0,-0.13605 -76858,3110:372:3,102,-17.5,0,0,-0.13605 -76859,3110:372:4,102.5,-17.5,0,0,-0.13605 -76860,3110:373:3,103,-17.5,0,0,-0.13605 -76861,3110:373:4,103.5,-17.5,0,0,-0.13605 -76862,3110:374:3,104,-17.5,0,0,-0.13605 -76863,3110:374:4,104.5,-17.5,0,0,-0.13605 -76864,3110:475:3,105,-17.5,0,0,-0.13605 -76865,3110:475:4,105.5,-17.5,0,0,-0.13605 -76866,3110:476:3,106,-17.5,0,0,-0.13605 -76867,3110:476:4,106.5,-17.5,0,0,-0.13605 -76868,3110:477:3,107,-17.5,0,0,-0.13605 -76869,3110:477:4,107.5,-17.5,0,0,-0.13605 -76870,3110:478:3,108,-17.5,0,0,-0.13605 -76871,3110:478:4,108.5,-17.5,0,0,-0.13605 -76872,3110:479:3,109,-17.5,0,0,-0.13605 -76873,3110:479:4,109.5,-17.5,0,0,-0.13605 -76874,3111:370:3,110,-17.5,0,0,-0.13605 -76875,3111:370:4,110.5,-17.5,0,0,-0.13605 -76876,3111:371:3,111,-17.5,0,0,-0.13605 -76877,3111:371:4,111.5,-17.5,0,0,-0.13605 -76878,3111:372:3,112,-17.5,0,0,-0.13605 -76879,3111:372:4,112.5,-17.5,0,0,-0.13605 -76880,3111:373:3,113,-17.5,0,0,-0.137555 -76881,3111:373:4,113.5,-17.5,0,0,-0.139566 -76882,3115:371:4,151.5,-17.5,0,0,-0.150241 -76883,3115:372:3,152,-17.5,0,0,-0.150936 -76884,3115:372:4,152.5,-17.5,0,0,-0.149652 -76885,3115:373:3,153,-17.5,0,0,-0.14949 -76886,3115:373:4,153.5,-17.5,0,0,-0.146902 -76887,3115:374:3,154,-17.5,0,0,-0.153542 -76888,3115:374:4,154.5,-17.5,0,0,-0.153668 -76889,3115:475:3,155,-17.5,0,0,-0.147279 -76890,3115:475:4,155.5,-17.5,0,0,-0.144305 -76891,3115:476:3,156,-17.5,0,0,-0.13605 -76892,3115:476:4,156.5,-17.5,0,0,-0.13605 -76893,3115:477:3,157,-17.5,0,0,-0.13605 -76894,3115:477:4,157.5,-17.5,0,0,-0.138125 -76895,3115:478:3,158,-17.5,0,0,-0.13853 -76896,3115:478:4,158.5,-17.5,0,0,-0.136064 -76897,3115:479:3,159,-17.5,0,0,-0.13605 -76898,3115:479:4,159.5,-17.5,0,0,-0.13605 -76899,3116:370:3,160,-17.5,0,0,-0.13605 -76900,3116:370:4,160.5,-17.5,0,0,-0.13605 -76901,3116:371:3,161,-17.5,0,0,-0.13605 -76902,3116:371:4,161.5,-17.5,0,0,-0.13605 -76903,3116:372:3,162,-17.5,0,0,-0.13605 -76904,3116:372:4,162.5,-17.5,0,0,-0.13605 -76905,3116:373:3,163,-17.5,0,0,-0.13605 -76906,3116:373:4,163.5,-17.5,0,0,-0.13605 -76907,3116:374:3,164,-17.5,0,0,-0.13605 -76908,3116:374:4,164.5,-17.5,0,0,-0.13605 -76909,3116:475:3,165,-17.5,0,0,-0.13605 -76910,3116:475:4,165.5,-17.5,0,0,-0.13605 -76911,3116:476:3,166,-17.5,0,0,-0.13605 -76912,3116:476:4,166.5,-17.5,0,0,-0.13605 -76913,3116:477:4,167.5,-17.5,0,0,-0.13605 -76914,3116:478:3,168,-17.5,0,0,-0.13605 -76915,3116:478:4,168.5,-17.5,0,0,-0.13605 -76916,3116:479:3,169,-17.5,0,0,-0.13605 -76917,3116:479:4,169.5,-17.5,0,0,-0.13605 -76918,3117:370:3,170,-17.5,0,0,-0.13605 -76919,3117:370:4,170.5,-17.5,0,0,-0.13605 -76920,3117:371:3,171,-17.5,0,0,-0.13605 -76921,3117:371:4,171.5,-17.5,0,0,-0.13605 -76922,3117:372:3,172,-17.5,0,0,-0.13605 -76923,3117:372:4,172.5,-17.5,0,0,-0.13605 -76924,3117:373:3,173,-17.5,0,0,-0.13605 -76925,3117:373:4,173.5,-17.5,0,0,-0.13605 -76926,3117:374:3,174,-17.5,0,0,-0.13605 -76927,3117:374:4,174.5,-17.5,0,0,-0.13605 -76928,3117:475:3,175,-17.5,0,0,-0.13605 -76929,3117:475:4,175.5,-17.5,0,0,-0.13605 -76930,3117:476:3,176,-17.5,0,0,-0.13605 -76931,3117:476:4,176.5,-17.5,0,0,-0.13605 -76932,3117:477:3,177,-17.5,0,0,-0.13605 -76933,3117:477:4,177.5,-17.5,0,0,-0.13605 -76934,3117:478:3,178,-17.5,0,0,-0.13605 -76935,3117:478:4,178.5,-17.5,0,0,-0.13605 -76936,3117:479:3,179,-17.5,0,0,-0.13605 -76937,3117:479:4,179.5,-17.5,0,0,-0.13605 -76938,3118:370:3,180,-17.5,0,0,-0.13605 -76939,5118:370:1,-180,-17,0,0,-0.13605 -76940,5117:479:2,-179.5,-17,0,0,-0.13605 -76941,5117:479:1,-179,-17,0,0,-0.13605 -76942,5117:478:2,-178.5,-17,0,0,-0.13605 -76943,5117:478:1,-178,-17,0,0,-0.13605 -76944,5117:477:2,-177.5,-17,0,0,-0.13605 -76945,5117:477:1,-177,-17,0,0,-0.13605 -76946,5117:476:2,-176.5,-17,0,0,-0.13605 -76947,5117:476:1,-176,-17,0,0,-0.13605 -76948,5117:475:2,-175.5,-17,0,0,-0.13605 -76949,5117:475:1,-175,-17,0,0,-0.13605 -76950,5117:374:2,-174.5,-17,0,0,-0.13605 -76951,5117:374:1,-174,-17,0,0,-0.13605 -76952,5117:373:2,-173.5,-17,0,0,-0.13605 -76953,5117:373:1,-173,-17,0,0,-0.13605 -76954,5117:372:2,-172.5,-17,0,0,-0.13605 -76955,5117:372:1,-172,-17,0,0,-0.13605 -76956,5117:371:2,-171.5,-17,0,0,-0.13605 -76957,5117:371:1,-171,-17,0,0,-0.13605 -76958,5117:370:2,-170.5,-17,0,0,-0.13605 -76959,5117:370:1,-170,-17,0,0,-0.13605 -76960,5116:479:2,-169.5,-17,0,0,-0.13605 -76961,5116:479:1,-169,-17,0,0,-0.13605 -76962,5116:478:2,-168.5,-17,0,0,-0.13605 -76963,5116:478:1,-168,-17,0,0,-0.13605 -76964,5116:477:2,-167.5,-17,0,0,-0.13605 -76965,5116:477:1,-167,-17,0,0,-0.13605 -76966,5116:476:2,-166.5,-17,0,0,-0.13605 -76967,5116:476:1,-166,-17,0,0,-0.13605 -76968,5116:475:2,-165.5,-17,0,0,-0.13605 -76969,5116:475:1,-165,-17,0,0,-0.13605 -76970,5116:374:2,-164.5,-17,0,0,-0.13605 -76971,5116:374:1,-164,-17,0,0,-0.13605 -76972,5116:373:2,-163.5,-17,0,0,-0.13605 -76973,5116:373:1,-163,-17,0,0,-0.13605 -76974,5116:372:2,-162.5,-17,0,0,-0.13605 -76975,5116:372:1,-162,-17,0,0,-0.13605 -76976,5116:371:2,-161.5,-17,0,0,-0.13605 -76977,5116:371:1,-161,-17,0,0,-0.13605 -76978,5116:370:2,-160.5,-17,0,0,-0.13605 -76979,5116:370:1,-160,-17,0,0,-0.13605 -76980,5115:479:2,-159.5,-17,0,0,-0.13605 -76981,5115:479:1,-159,-17,0,0,-0.13605 -76982,5115:478:2,-158.5,-17,0,0,-0.13605 -76983,5115:478:1,-158,-17,0,0,-0.13605 -76984,5115:477:2,-157.5,-17,0,0,-0.13605 -76985,5115:477:1,-157,-17,0,0,-0.13605 -76986,5115:476:2,-156.5,-17,0,0,-0.13605 -76987,5115:476:1,-156,-17,0,0,-0.13605 -76988,5115:475:2,-155.5,-17,0,0,-0.13605 -76989,5115:475:1,-155,-17,0,0,-0.13605 -76990,5115:374:2,-154.5,-17,0,0,-0.13605 -76991,5115:374:1,-154,-17,0,0,-0.13605 -76992,5115:373:2,-153.5,-17,0,0,-0.13687 -76993,5115:373:1,-153,-17,0,0,-0.136159 -76994,5115:372:2,-152.5,-17,0,0,-0.13605 -76995,5115:372:1,-152,-17,0,0,-0.139274 -76996,5115:371:2,-151.5,-17,0,0,-0.146247 -76997,5115:371:1,-151,-17,0,0,-0.145853 -76998,5115:370:2,-150.5,-17,0,0,-0.142162 -76999,5115:370:1,-150,-17,0,0,-0.139941 -77000,5114:479:2,-149.5,-17,0,0,-0.143142 -77001,5114:479:1,-149,-17,0,0,-0.145067 -77002,5114:478:2,-148.5,-17,0,0,-0.1445 -77003,5114:478:1,-148,-17,0,0,-0.143684 -77004,5114:477:2,-147.5,-17,0,0,-0.143142 -77005,5114:477:1,-147,-17,0,0,-0.14268 -77006,5114:476:2,-146.5,-17,0,0,-0.142354 -77007,5114:476:1,-146,-17,0,0,-0.142949 -77008,5114:475:2,-145.5,-17,0,0,-0.143877 -77009,5114:475:1,-145,-17,0,0,-0.144247 -77010,5114:374:2,-144.5,-17,0,0,-0.143606 -77011,5114:374:1,-144,-17,0,0,-0.142296 -77012,5114:373:2,-143.5,-17,0,0,-0.141932 -77013,5114:373:1,-143,-17,0,0,-0.143509 -77014,5114:372:2,-142.5,-17,0,0,-0.144091 -77015,5114:372:1,-142,-17,0,0,-0.143684 -77016,5114:371:2,-141.5,-17,0,0,-0.144111 -77017,5114:371:1,-141,-17,0,0,-0.145715 -77018,5114:370:2,-140.5,-17,0,0,-0.147939 -77019,5114:370:1,-140,-17,0,0,-0.148299 -77020,5113:479:2,-139.5,-17,0,0,-0.14724 -77021,5113:479:1,-139,-17,0,0,-0.146902 -77022,5113:478:2,-138.5,-17,0,0,-0.146425 -77023,5113:478:1,-138,-17,0,0,-0.146148 -77024,5113:477:2,-137.5,-17,0,0,-0.1471 -77025,5113:477:1,-137,-17,0,0,-0.147698 -77026,5113:476:2,-136.5,-17,0,0,-0.148239 -77027,5113:476:1,-136,-17,0,0,-0.14844 -77028,5113:475:2,-135.5,-17,0,0,-0.148119 -77029,5113:475:1,-135,-17,0,0,-0.147379 -77030,5113:374:2,-134.5,-17,0,0,-0.146782 -77031,5113:374:1,-134,-17,0,0,-0.145813 -77032,5113:373:2,-133.5,-17,0,0,-0.144111 -77033,5113:373:1,-133,-17,0,0,-0.142238 -77034,5113:372:2,-132.5,-17,0,0,-0.140753 -77035,5113:372:1,-132,-17,0,0,-0.139292 -77036,5113:371:2,-131.5,-17,0,0,-0.137622 -77037,5113:371:1,-131,-17,0,0,-0.136421 -77038,5113:370:2,-130.5,-17,0,0,-0.136254 -77039,5113:370:1,-130,-17,0,0,-0.136498 -77040,5112:479:2,-129.5,-17,0,0,-0.136266 -77041,5112:479:1,-129,-17,0,0,-0.136071 -77042,5112:478:2,-128.5,-17,0,0,-0.13605 -77043,5112:478:1,-128,-17,0,0,-0.13605 -77044,5112:477:2,-127.5,-17,0,0,-0.13605 -77045,5112:477:1,-127,-17,0,0,-0.13605 -77046,5112:476:2,-126.5,-17,0,0,-0.13605 -77047,5112:476:1,-126,-17,0,0,-0.13605 -77048,5112:475:2,-125.5,-17,0,0,-0.13605 -77049,5112:475:1,-125,-17,0,0,-0.13605 -77050,5112:374:2,-124.5,-17,0,0,-0.13605 -77051,5112:374:1,-124,-17,0,0,-0.13605 -77052,5112:373:2,-123.5,-17,0,0,-0.13605 -77053,5112:373:1,-123,-17,0,0,-0.13605 -77054,5112:372:2,-122.5,-17,0,0,-0.13605 -77055,5112:372:1,-122,-17,0,0,-0.13605 -77056,5112:371:2,-121.5,-17,0,0,-0.13605 -77057,5112:371:1,-121,-17,0,0,-0.13605 -77058,5112:370:2,-120.5,-17,0,0,-0.13605 -77059,5112:370:1,-120,-17,0,0,-0.13605 -77060,5111:479:2,-119.5,-17,0,0,-0.13605 -77061,5111:479:1,-119,-17,0,0,-0.13605 -77062,5111:478:2,-118.5,-17,0,0,-0.13605 -77063,5111:478:1,-118,-17,0,0,-0.13605 -77064,5111:477:2,-117.5,-17,0,0,-0.13605 -77065,5111:477:1,-117,-17,0,0,-0.13605 -77066,5111:476:2,-116.5,-17,0,0,-0.13605 -77067,5111:476:1,-116,-17,0,0,-0.13605 -77068,5111:475:2,-115.5,-17,0,0,-0.13605 -77069,5111:475:1,-115,-17,0,0,-0.13605 -77070,5111:374:2,-114.5,-17,0,0,-0.13605 -77071,5111:374:1,-114,-17,0,0,-0.13605 -77072,5111:373:2,-113.5,-17,0,0,-0.13605 -77073,5111:373:1,-113,-17,0,0,-0.13605 -77074,5111:372:2,-112.5,-17,0,0,-0.13605 -77075,5111:372:1,-112,-17,0,0,-0.13605 -77076,5111:371:2,-111.5,-17,0,0,-0.13605 -77077,5111:371:1,-111,-17,0,0,-0.13605 -77078,5111:370:2,-110.5,-17,0,0,-0.13605 -77079,5111:370:1,-110,-17,0,0,-0.13605 -77080,5110:479:2,-109.5,-17,0,0,-0.13605 -77081,5110:479:1,-109,-17,0,0,-0.13605 -77082,5110:478:2,-108.5,-17,0,0,-0.13605 -77083,5110:478:1,-108,-17,0,0,-0.13605 -77084,5110:477:2,-107.5,-17,0,0,-0.13605 -77085,5110:477:1,-107,-17,0,0,-0.13605 -77086,5110:476:2,-106.5,-17,0,0,-0.13605 -77087,5110:476:1,-106,-17,0,0,-0.13605 -77088,5110:475:2,-105.5,-17,0,0,-0.13605 -77089,5110:475:1,-105,-17,0,0,-0.13605 -77090,5110:374:2,-104.5,-17,0,0,-0.13605 -77091,5110:374:1,-104,-17,0,0,-0.13605 -77092,5110:373:2,-103.5,-17,0,0,-0.13605 -77093,5110:373:1,-103,-17,0,0,-0.13605 -77094,5110:372:2,-102.5,-17,0,0,-0.13605 -77095,5110:372:1,-102,-17,0,0,-0.13605 -77096,5110:371:2,-101.5,-17,0,0,-0.13605 -77097,5110:371:1,-101,-17,0,0,-0.13605 -77098,5110:370:2,-100.5,-17,0,0,-0.13605 -77099,5110:370:1,-100,-17,0,0,-0.13605 -77100,5109:479:2,-99.5,-17,0,0,-0.13605 -77101,5109:479:1,-99,-17,0,0,-0.13605 -77102,5109:478:2,-98.5,-17,0,0,-0.13605 -77103,5109:478:1,-98,-17,0,0,-0.13605 -77104,5109:477:2,-97.5,-17,0,0,-0.13605 -77105,5109:477:1,-97,-17,0,0,-0.13605 -77106,5109:476:2,-96.5,-17,0,0,-0.13605 -77107,5109:476:1,-96,-17,0,0,-0.13605 -77108,5109:475:2,-95.5,-17,0,0,-0.13605 -77109,5109:475:1,-95,-17,0,0,-0.13605 -77110,5109:374:2,-94.5,-17,0,0,-0.13605 -77111,5109:374:1,-94,-17,0,0,-0.13605 -77112,5109:373:2,-93.5,-17,0,0,-0.13605 -77113,5109:373:1,-93,-17,0,0,-0.13605 -77114,5109:372:2,-92.5,-17,0,0,-0.13605 -77115,5109:372:1,-92,-17,0,0,-0.13605 -77116,5109:371:2,-91.5,-17,0,0,-0.13605 -77117,5109:371:1,-91,-17,0,0,-0.13605 -77118,5109:370:2,-90.5,-17,0,0,-0.13605 -77119,5109:370:1,-90,-17,0,0,-0.13605 -77120,5108:479:2,-89.5,-17,0,0,-0.13605 -77121,5108:479:1,-89,-17,0,0,-0.13605 -77122,5108:478:2,-88.5,-17,0,0,-0.13605 -77123,5108:478:1,-88,-17,0,0,-0.13605 -77124,5108:477:2,-87.5,-17,0,0,-0.13605 -77125,5108:477:1,-87,-17,0,0,-0.13605 -77126,5108:476:2,-86.5,-17,0,0,-0.13605 -77127,5108:476:1,-86,-17,0,0,-0.13605 -77128,5108:475:2,-85.5,-17,0,0,-0.13605 -77129,5108:475:1,-85,-17,0,0,-0.13605 -77130,5108:374:2,-84.5,-17,0,0,-0.13605 -77131,5108:374:1,-84,-17,0,0,-0.13605 -77132,5108:373:2,-83.5,-17,0,0,-0.13605 -77133,5108:373:1,-83,-17,0,0,-0.13605 -77134,5108:372:2,-82.5,-17,0,0,-0.13605 -77135,5108:372:1,-82,-17,0,0,-0.13605 -77136,5108:371:2,-81.5,-17,0,0,-0.13605 -77137,5108:371:1,-81,-17,0,0,-0.13605 -77138,5108:370:2,-80.5,-17,0,0,-0.13605 -77139,5108:370:1,-80,-17,0,0,-0.13605 -77140,5107:479:2,-79.5,-17,0,0,-0.13605 -77141,5107:479:1,-79,-17,0,0,-0.13605 -77142,5107:478:2,-78.5,-17,0,0,-0.13605 -77143,5107:478:1,-78,-17,0,0,-0.13605 -77144,5107:477:2,-77.5,-17,0,0,-0.13605 -77145,5107:477:1,-77,-17,0,0,-0.13605 -77146,5107:476:2,-76.5,-17,0,0,-0.13605 -77147,5107:476:1,-76,-17,0,0,-0.13605 -77148,5107:475:2,-75.5,-17,0,0,-0.13605 -77149,5107:475:1,-75,-17,0,0,-0.13605 -77150,5107:374:2,-74.5,-17,0,0,-0.13605 -77151,5107:374:1,-74,-17,0,0,-0.13605 -77152,5107:373:2,-73.5,-17,0,0,-0.13605 -77153,5107:373:1,-73,-17,0,0,-0.13605 -77154,5107:372:2,-72.5,-17,0,0,-0.13605 -77155,5107:372:1,-72,-17,0,0,-0.13605 -77156,5107:371:2,-71.5,-17,0,0,-0.13605 -77157,5107:371:1,-71,-17,0,0,-0.13605 -77158,5107:370:2,-70.5,-17,0,0,-0.13605 -77159,5104:371:1,-41,-17,0,0,-0.177247 -77160,5104:370:2,-40.5,-17,0,0,-0.172594 -77161,5104:370:1,-40,-17,0,0,-0.182629 -77162,5103:479:2,-39.5,-17,0,0,-0.185481 -77163,5103:479:1,-39,-17,0,0,-0.183037 -77164,5103:478:2,-38.5,-17,0,0,-0.180604 -77165,5103:478:1,-38,-17,0,0,-0.177518 -77166,5103:477:2,-37.5,-17,0,0,-0.175534 -77167,5103:477:1,-37,-17,0,0,-0.173744 -77168,5103:476:2,-36.5,-17,0,0,-0.172213 -77169,5103:476:1,-36,-17,0,0,-0.171358 -77170,5103:475:2,-35.5,-17,0,0,-0.17124 -77171,5103:475:1,-35,-17,0,0,-0.171642 -77172,5103:374:2,-34.5,-17,0,0,-0.171975 -77173,5103:374:1,-34,-17,0,0,-0.171904 -77174,5103:373:2,-33.5,-17,0,0,-0.172118 -77175,5103:373:1,-33,-17,0,0,-0.172761 -77176,5103:372:2,-32.5,-17,0,0,-0.173383 -77177,5103:372:1,-32,-17,0,0,-0.173576 -77178,5103:371:2,-31.5,-17,0,0,-0.173048 -77179,5103:371:1,-31,-17,0,0,-0.172141 -77180,5103:370:2,-30.5,-17,0,0,-0.17124 -77181,5103:370:1,-30,-17,0,0,-0.16936 -77182,5102:479:2,-29.5,-17,0,0,-0.165738 -77183,5102:479:1,-29,-17,0,0,-0.159868 -77184,5102:478:2,-28.5,-17,0,0,-0.152316 -77185,5102:478:1,-28,-17,0,0,-0.146188 -77186,5102:477:2,-27.5,-17,0,0,-0.142699 -77187,5102:477:1,-27,-17,0,0,-0.141741 -77188,5102:476:2,-26.5,-17,0,0,-0.142066 -77189,5102:476:1,-26,-17,0,0,-0.142891 -77190,5102:475:2,-25.5,-17,0,0,-0.143994 -77191,5102:475:1,-25,-17,0,0,-0.144793 -77192,5102:374:2,-24.5,-17,0,0,-0.145086 -77193,5102:374:1,-24,-17,0,0,-0.14489 -77194,5102:373:2,-23.5,-17,0,0,-0.144754 -77195,5102:373:1,-23,-17,0,0,-0.14495 -77196,5102:372:2,-22.5,-17,0,0,-0.145223 -77197,5102:372:1,-22,-17,0,0,-0.145341 -77198,5102:371:2,-21.5,-17,0,0,-0.144852 -77199,5102:371:1,-21,-17,0,0,-0.144033 -77200,5102:370:2,-20.5,-17,0,0,-0.143181 -77201,5102:370:1,-20,-17,0,0,-0.142143 -77202,5101:479:2,-19.5,-17,0,0,-0.141284 -77203,5101:479:1,-19,-17,0,0,-0.140753 -77204,5101:478:2,-18.5,-17,0,0,-0.140318 -77205,5101:478:1,-18,-17,0,0,-0.139904 -77206,5101:477:2,-17.5,-17,0,0,-0.139378 -77207,5101:477:1,-17,-17,0,0,-0.138429 -77208,5101:476:2,-16.5,-17,0,0,-0.137053 -77209,5101:476:1,-16,-17,0,0,-0.136111 -77210,5101:475:2,-15.5,-17,0,0,-0.13605 -77211,5101:475:1,-15,-17,0,0,-0.13605 -77212,5101:374:2,-14.5,-17,0,0,-0.13605 -77213,5101:374:1,-14,-17,0,0,-0.13605 -77214,5101:373:2,-13.5,-17,0,0,-0.13605 -77215,5101:373:1,-13,-17,0,0,-0.13605 -77216,5101:372:2,-12.5,-17,0,0,-0.13605 -77217,5101:372:1,-12,-17,0,0,-0.13605 -77218,5101:371:2,-11.5,-17,0,0,-0.13605 -77219,5101:371:1,-11,-17,0,0,-0.13605 -77220,5101:370:2,-10.5,-17,0,0,-0.13605 -77221,5101:370:1,-10,-17,0,0,-0.13605 -77222,5100:479:2,-9.5,-17,0,0,-0.13605 -77223,5100:479:1,-9,-17,0,0,-0.13605 -77224,5100:478:2,-8.5,-17,0,0,-0.13605 -77225,5100:478:1,-8,-17,0,0,-0.13605 -77226,5100:477:2,-7.5,-17,0,0,-0.13605 -77227,5100:477:1,-7,-17,0,0,-0.13605 -77228,5100:476:2,-6.5,-17,0,0,-0.13605 -77229,5100:476:1,-6,-17,0,0,-0.13605 -77230,5100:475:2,-5.5,-17,0,0,-0.13605 -77231,5100:475:1,-5,-17,0,0,-0.13605 -77232,5100:374:2,-4.5,-17,0,0,-0.13605 -77233,5100:374:1,-4,-17,0,0,-0.13605 -77234,5100:373:2,-3.5,-17,0,0,-0.13605 -77235,5100:373:1,-3,-17,0,0,-0.13605 -77236,5100:372:2,-2.5,-17,0,0,-0.13605 -77237,5100:372:1,-2,-17,0,0,-0.13605 -77238,5100:371:2,-1.5,-17,0,0,-0.13605 -77239,5100:371:1,-1,-17,0,0,-0.13605 -77240,5100:370:2,-0.5,-17,0,0,-0.13605 -77241,3100:370:2,0,-17,0,0,-0.13605 -77242,3100:370:2,0.5,-17,0,0,-0.13605 -77243,3100:371:1,1,-17,0,0,-0.13605 -77244,3100:371:2,1.5,-17,0,0,-0.13605 -77245,3100:372:1,2,-17,0,0,-0.13605 -77246,3100:372:2,2.5,-17,0,0,-0.13605 -77247,3100:373:1,3,-17,0,0,-0.13605 -77248,3100:373:2,3.5,-17,0,0,-0.13605 -77249,3100:374:1,4,-17,0,0,-0.13605 -77250,3100:374:2,4.5,-17,0,0,-0.13605 -77251,3100:475:1,5,-17,0,0,-0.13605 -77252,3100:475:2,5.5,-17,0,0,-0.13605 -77253,3100:476:1,6,-17,0,0,-0.13605 -77254,3100:476:2,6.5,-17,0,0,-0.13605 -77255,3100:477:1,7,-17,0,0,-0.13605 -77256,3100:477:2,7.5,-17,0,0,-0.13605 -77257,3100:478:1,8,-17,0,0,-0.13605 -77258,3100:478:2,8.5,-17,0,0,-0.13605 -77259,3100:479:1,9,-17,0,0,-0.13605 -77260,3100:479:2,9.5,-17,0,0,-0.13605 -77261,3101:370:1,10,-17,0,0,-0.13605 -77262,3101:370:2,10.5,-17,0,0,-0.13605 -77263,3101:371:1,11,-17,0,0,-0.13605 -77264,3101:371:2,11.5,-17,0,0,-0.13605 -77265,3101:372:1,12,-17,0,0,-0.13605 -77266,3101:372:2,12.5,-17,0,0,-0.13605 -77267,3101:373:1,13,-17,0,0,-0.13605 -77268,3101:373:2,13.5,-17,0,0,-0.13605 -77269,3103:475:2,35.5,-17,0,0,-0.223755 -77270,3103:476:1,36,-17,0,0,-0.197292 -77271,3103:476:2,36.5,-17,0,0,-0.181008 -77272,3103:477:1,37,-17,0,0,-0.177813 -77273,3103:477:2,37.5,-17,0,0,-0.183959 -77274,3103:478:1,38,-17,0,0,-0.184964 -77275,3103:478:2,38.5,-17,0,0,-0.181562 -77276,3103:479:1,39,-17,0,0,-0.179827 -77277,3103:479:2,39.5,-17,0,0,-0.187097 -77278,3104:370:1,40,-17,0,0,-0.197735 -77279,3104:370:2,40.5,-17,0,0,-0.287993 -77280,3104:371:1,41,-17,0,0,-0.57856 -77281,3104:371:2,41.5,-17,0,0,-3.06051 -77282,3104:372:1,42,-17,0,0,3.221 -77283,3104:372:2,42.5,-17,0,0,1.56017 -77284,3104:373:1,43,-17,0,0,5.9932 -77285,3104:478:1,48,-17,0,0,-0.174129 -77286,3104:478:2,48.5,-17,0,0,-0.176755 -77287,3104:479:1,49,-17,0,0,-0.164446 -77288,3104:479:2,49.5,-17,0,0,-0.159148 -77289,3105:370:1,50,-17,0,0,-0.156584 -77290,3105:370:2,50.5,-17,0,0,-0.154065 -77291,3105:371:1,51,-17,0,0,-0.150629 -77292,3105:371:2,51.5,-17,0,0,-0.148843 -77293,3105:372:1,52,-17,0,0,-0.147979 -77294,3105:372:2,52.5,-17,0,0,-0.148682 -77295,3105:373:1,53,-17,0,0,-0.149997 -77296,3105:373:2,53.5,-17,0,0,-0.149713 -77297,3105:374:1,54,-17,0,0,-0.147061 -77298,3105:374:2,54.5,-17,0,0,-0.144988 -77299,3105:475:1,55,-17,0,0,-0.144091 -77300,3105:475:2,55.5,-17,0,0,-0.144832 -77301,3105:476:1,56,-17,0,0,-0.145734 -77302,3105:476:2,56.5,-17,0,0,-0.149348 -77303,3105:477:1,57,-17,0,0,-0.15459 -77304,3105:477:2,57.5,-17,0,0,-0.154044 -77305,3105:478:1,58,-17,0,0,-0.152006 -77306,3105:478:2,58.5,-17,0,0,-0.151614 -77307,3105:479:1,59,-17,0,0,-0.149652 -77308,3105:479:2,59.5,-17,0,0,-0.147259 -77309,3106:370:1,60,-17,0,0,-0.14712 -77310,3106:370:2,60.5,-17,0,0,-0.14603 -77311,3106:371:1,61,-17,0,0,-0.14347 -77312,3106:371:2,61.5,-17,0,0,-0.14028 -77313,3106:372:1,62,-17,0,0,-0.138429 -77314,3106:372:2,62.5,-17,0,0,-0.138513 -77315,3106:373:1,63,-17,0,0,-0.13655 -77316,3106:373:2,63.5,-17,0,0,-0.13605 -77317,3106:374:1,64,-17,0,0,-0.13605 -77318,3106:374:2,64.5,-17,0,0,-0.13605 -77319,3106:475:1,65,-17,0,0,-0.13605 -77320,3106:475:2,65.5,-17,0,0,-0.13605 -77321,3106:476:1,66,-17,0,0,-0.13605 -77322,3106:476:2,66.5,-17,0,0,-0.13605 -77323,3106:477:1,67,-17,0,0,-0.13605 -77324,3106:477:2,67.5,-17,0,0,-0.13605 -77325,3106:478:1,68,-17,0,0,-0.13605 -77326,3106:478:2,68.5,-17,0,0,-0.13605 -77327,3106:479:1,69,-17,0,0,-0.13605 -77328,3106:479:2,69.5,-17,0,0,-0.13605 -77329,3107:370:1,70,-17,0,0,-0.13605 -77330,3107:370:2,70.5,-17,0,0,-0.13605 -77331,3107:371:1,71,-17,0,0,-0.13605 -77332,3107:371:2,71.5,-17,0,0,-0.13605 -77333,3107:372:1,72,-17,0,0,-0.13605 -77334,3107:372:2,72.5,-17,0,0,-0.13605 -77335,3107:373:2,73.5,-17,0,0,-0.13605 -77336,3107:374:1,74,-17,0,0,-0.13605 -77337,3107:374:2,74.5,-17,0,0,-0.13605 -77338,3107:475:1,75,-17,0,0,-0.13605 -77339,3107:475:2,75.5,-17,0,0,-0.13605 -77340,3107:476:1,76,-17,0,0,-0.13605 -77341,3107:476:2,76.5,-17,0,0,-0.13605 -77342,3107:477:1,77,-17,0,0,-0.13605 -77343,3107:477:2,77.5,-17,0,0,-0.13605 -77344,3107:478:1,78,-17,0,0,-0.13605 -77345,3107:478:2,78.5,-17,0,0,-0.13605 -77346,3107:479:1,79,-17,0,0,-0.13605 -77347,3107:479:2,79.5,-17,0,0,-0.13605 -77348,3108:370:1,80,-17,0,0,-0.13605 -77349,3108:370:2,80.5,-17,0,0,-0.13605 -77350,3108:371:1,81,-17,0,0,-0.13605 -77351,3108:371:2,81.5,-17,0,0,-0.13605 -77352,3108:372:1,82,-17,0,0,-0.13605 -77353,3108:372:2,82.5,-17,0,0,-0.13605 -77354,3108:373:1,83,-17,0,0,-0.13605 -77355,3108:373:2,83.5,-17,0,0,-0.13605 -77356,3108:374:1,84,-17,0,0,-0.13605 -77357,3108:374:2,84.5,-17,0,0,-0.13605 -77358,3108:475:1,85,-17,0,0,-0.13605 -77359,3108:475:2,85.5,-17,0,0,-0.13605 -77360,3108:476:1,86,-17,0,0,-0.13605 -77361,3108:476:2,86.5,-17,0,0,-0.13605 -77362,3108:477:1,87,-17,0,0,-0.13605 -77363,3108:477:2,87.5,-17,0,0,-0.13605 -77364,3108:478:1,88,-17,0,0,-0.13605 -77365,3108:478:2,88.5,-17,0,0,-0.13605 -77366,3108:479:1,89,-17,0,0,-0.13605 -77367,3108:479:2,89.5,-17,0,0,-0.13605 -77368,3109:370:1,90,-17,0,0,-0.13605 -77369,3109:370:2,90.5,-17,0,0,-0.13605 -77370,3109:371:1,91,-17,0,0,-0.13605 -77371,3109:371:2,91.5,-17,0,0,-0.13605 -77372,3109:372:1,92,-17,0,0,-0.13605 -77373,3109:372:2,92.5,-17,0,0,-0.13605 -77374,3109:373:1,93,-17,0,0,-0.13605 -77375,3109:373:2,93.5,-17,0,0,-0.13605 -77376,3109:374:1,94,-17,0,0,-0.13605 -77377,3109:374:2,94.5,-17,0,0,-0.13605 -77378,3109:475:1,95,-17,0,0,-0.13605 -77379,3109:475:2,95.5,-17,0,0,-0.13605 -77380,3109:476:1,96,-17,0,0,-0.13605 -77381,3109:476:2,96.5,-17,0,0,-0.13605 -77382,3109:477:1,97,-17,0,0,-0.13605 -77383,3109:477:2,97.5,-17,0,0,-0.13605 -77384,3109:478:1,98,-17,0,0,-0.13605 -77385,3109:478:2,98.5,-17,0,0,-0.13605 -77386,3109:479:1,99,-17,0,0,-0.13605 -77387,3109:479:2,99.5,-17,0,0,-0.13605 -77388,3110:370:1,100,-17,0,0,-0.13605 -77389,3110:370:2,100.5,-17,0,0,-0.13605 -77390,3110:371:1,101,-17,0,0,-0.13605 -77391,3110:371:2,101.5,-17,0,0,-0.13605 -77392,3110:372:1,102,-17,0,0,-0.13605 -77393,3110:372:2,102.5,-17,0,0,-0.13605 -77394,3110:373:1,103,-17,0,0,-0.13605 -77395,3110:373:2,103.5,-17,0,0,-0.13605 -77396,3110:374:1,104,-17,0,0,-0.13605 -77397,3110:374:2,104.5,-17,0,0,-0.13605 -77398,3110:475:1,105,-17,0,0,-0.13605 -77399,3110:475:2,105.5,-17,0,0,-0.13605 -77400,3110:476:1,106,-17,0,0,-0.13605 -77401,3110:476:2,106.5,-17,0,0,-0.13605 -77402,3110:477:1,107,-17,0,0,-0.13605 -77403,3110:477:2,107.5,-17,0,0,-0.13605 -77404,3110:478:1,108,-17,0,0,-0.13605 -77405,3110:478:2,108.5,-17,0,0,-0.13605 -77406,3110:479:1,109,-17,0,0,-0.13605 -77407,3110:479:2,109.5,-17,0,0,-0.13605 -77408,3111:370:1,110,-17,0,0,-0.13605 -77409,3111:370:2,110.5,-17,0,0,-0.13605 -77410,3111:371:1,111,-17,0,0,-0.13605 -77411,3111:371:2,111.5,-17,0,0,-0.13605 -77412,3111:372:1,112,-17,0,0,-0.13605 -77413,3111:372:2,112.5,-17,0,0,-0.13605 -77414,3111:373:1,113,-17,0,0,-0.136121 -77415,3111:373:2,113.5,-17,0,0,-0.137756 -77416,3111:374:1,114,-17,0,0,-0.140715 -77417,3111:374:2,114.5,-17,0,0,-0.141265 -77418,3115:370:1,150,-17,0,0,-0.179327 -77419,3115:370:2,150.5,-17,0,0,-0.166309 -77420,3115:371:1,151,-17,0,0,-0.156926 -77421,3115:371:2,151.5,-17,0,0,-0.161828 -77422,3115:372:1,152,-17,0,0,-0.165511 -77423,3115:372:2,152.5,-17,0,0,-0.165579 -77424,3115:373:1,153,-17,0,0,-0.156968 -77425,3115:373:2,153.5,-17,0,0,-0.156221 -77426,3115:374:1,154,-17,0,0,-0.153688 -77427,3115:374:2,154.5,-17,0,0,-0.150793 -77428,3115:475:1,155,-17,0,0,-0.144578 -77429,3115:475:2,155.5,-17,0,0,-0.143239 -77430,3115:476:1,156,-17,0,0,-0.142181 -77431,3115:476:2,156.5,-17,0,0,-0.136434 -77432,3115:477:1,157,-17,0,0,-0.136091 -77433,3115:477:2,157.5,-17,0,0,-0.138479 -77434,3115:478:1,158,-17,0,0,-0.140394 -77435,3115:478:2,158.5,-17,0,0,-0.137154 -77436,3115:479:1,159,-17,0,0,-0.13605 -77437,3115:479:2,159.5,-17,0,0,-0.13605 -77438,3116:370:1,160,-17,0,0,-0.13605 -77439,3116:370:2,160.5,-17,0,0,-0.13605 -77440,3116:371:1,161,-17,0,0,-0.14028 -77441,3116:371:2,161.5,-17,0,0,-0.141284 -77442,3116:372:1,162,-17,0,0,-0.137387 -77443,3116:372:2,162.5,-17,0,0,-0.138361 -77444,3116:373:1,163,-17,0,0,-0.139847 -77445,3116:373:2,163.5,-17,0,0,-0.137521 -77446,3116:374:1,164,-17,0,0,-0.139753 -77447,3116:374:2,164.5,-17,0,0,-0.139122 -77448,3116:475:1,165,-17,0,0,-0.13605 -77449,3116:475:2,165.5,-17,0,0,-0.13605 -77450,3116:476:1,166,-17,0,0,-0.13605 -77451,3116:477:1,167,-17,0,0,-0.13605 -77452,3116:477:2,167.5,-17,0,0,-0.13605 -77453,3116:478:1,168,-17,0,0,-0.13605 -77454,3116:478:2,168.5,-17,0,0,-0.13605 -77455,3116:479:1,169,-17,0,0,-0.13605 -77456,3116:479:2,169.5,-17,0,0,-0.13605 -77457,3117:370:1,170,-17,0,0,-0.13605 -77458,3117:370:2,170.5,-17,0,0,-0.13605 -77459,3117:371:1,171,-17,0,0,-0.13605 -77460,3117:371:2,171.5,-17,0,0,-0.13605 -77461,3117:372:1,172,-17,0,0,-0.13605 -77462,3117:372:2,172.5,-17,0,0,-0.13605 -77463,3117:373:1,173,-17,0,0,-0.13605 -77464,3117:373:2,173.5,-17,0,0,-0.13605 -77465,3117:374:1,174,-17,0,0,-0.13605 -77466,3117:374:2,174.5,-17,0,0,-0.13605 -77467,3117:475:1,175,-17,0,0,-0.13605 -77468,3117:475:2,175.5,-17,0,0,-0.13605 -77469,3117:476:1,176,-17,0,0,-0.13605 -77470,3117:476:2,176.5,-17,0,0,-0.13605 -77471,3117:477:1,177,-17,0,0,-0.13605 -77472,3117:477:2,177.5,-17,0,0,-0.13605 -77473,3117:478:1,178,-17,0,0,-0.13605 -77474,3117:478:2,178.5,-17,0,0,-0.13605 -77475,3117:479:1,179,-17,0,0,-0.13605 -77476,3117:479:2,179.5,-17,0,0,-0.13605 -77477,3118:370:1,180,-17,0,0,-0.13605 -77478,5118:360:3,-180,-16.5,0,0,-0.13605 -77479,5117:469:4,-179.5,-16.5,0,0,-0.13605 -77480,5117:469:3,-179,-16.5,0,0,-0.13605 -77481,5117:468:4,-178.5,-16.5,0,0,-0.13605 -77482,5117:468:3,-178,-16.5,0,0,-0.13605 -77483,5117:467:4,-177.5,-16.5,0,0,-0.13605 -77484,5117:467:3,-177,-16.5,0,0,-0.13605 -77485,5117:466:4,-176.5,-16.5,0,0,-0.13605 -77486,5117:466:3,-176,-16.5,0,0,-0.13605 -77487,5117:465:4,-175.5,-16.5,0,0,-0.13605 -77488,5117:465:3,-175,-16.5,0,0,-0.13605 -77489,5117:364:4,-174.5,-16.5,0,0,-0.13605 -77490,5117:364:3,-174,-16.5,0,0,-0.13605 -77491,5117:363:4,-173.5,-16.5,0,0,-0.13605 -77492,5117:363:3,-173,-16.5,0,0,-0.13605 -77493,5117:362:4,-172.5,-16.5,0,0,-0.13605 -77494,5117:362:3,-172,-16.5,0,0,-0.13605 -77495,5117:361:4,-171.5,-16.5,0,0,-0.13605 -77496,5117:361:3,-171,-16.5,0,0,-0.13605 -77497,5117:360:4,-170.5,-16.5,0,0,-0.13605 -77498,5117:360:3,-170,-16.5,0,0,-0.13605 -77499,5116:469:4,-169.5,-16.5,0,0,-0.13605 -77500,5116:469:3,-169,-16.5,0,0,-0.13605 -77501,5116:468:4,-168.5,-16.5,0,0,-0.13605 -77502,5116:468:3,-168,-16.5,0,0,-0.13605 -77503,5116:467:4,-167.5,-16.5,0,0,-0.13605 -77504,5116:467:3,-167,-16.5,0,0,-0.13605 -77505,5116:466:4,-166.5,-16.5,0,0,-0.13605 -77506,5116:466:3,-166,-16.5,0,0,-0.13605 -77507,5116:465:4,-165.5,-16.5,0,0,-0.13605 -77508,5116:465:3,-165,-16.5,0,0,-0.13605 -77509,5116:364:4,-164.5,-16.5,0,0,-0.13605 -77510,5116:364:3,-164,-16.5,0,0,-0.13605 -77511,5116:363:4,-163.5,-16.5,0,0,-0.13605 -77512,5116:363:3,-163,-16.5,0,0,-0.13605 -77513,5116:362:4,-162.5,-16.5,0,0,-0.13605 -77514,5116:362:3,-162,-16.5,0,0,-0.13605 -77515,5116:361:4,-161.5,-16.5,0,0,-0.13605 -77516,5116:361:3,-161,-16.5,0,0,-0.13605 -77517,5116:360:4,-160.5,-16.5,0,0,-0.13605 -77518,5116:360:3,-160,-16.5,0,0,-0.13605 -77519,5115:469:4,-159.5,-16.5,0,0,-0.13605 -77520,5115:469:3,-159,-16.5,0,0,-0.13605 -77521,5115:468:4,-158.5,-16.5,0,0,-0.13605 -77522,5115:468:3,-158,-16.5,0,0,-0.13605 -77523,5115:467:4,-157.5,-16.5,0,0,-0.13605 -77524,5115:467:3,-157,-16.5,0,0,-0.136131 -77525,5115:466:4,-156.5,-16.5,0,0,-0.13712 -77526,5115:466:3,-156,-16.5,0,0,-0.136706 -77527,5115:465:4,-155.5,-16.5,0,0,-0.13697 -77528,5115:465:3,-155,-16.5,0,0,-0.138058 -77529,5115:364:4,-154.5,-16.5,0,0,-0.139904 -77530,5115:364:3,-154,-16.5,0,0,-0.14245 -77531,5115:363:4,-153.5,-16.5,0,0,-0.144988 -77532,5115:363:3,-153,-16.5,0,0,-0.148079 -77533,5115:362:4,-152.5,-16.5,0,0,-0.150854 -77534,5115:362:3,-152,-16.5,0,0,-0.150302 -77535,5115:361:4,-151.5,-16.5,0,0,-0.149186 -77536,5115:361:3,-151,-16.5,0,0,-0.148139 -77537,5115:360:4,-150.5,-16.5,0,0,-0.148099 -77538,5115:360:3,-150,-16.5,0,0,-0.150241 -77539,5114:469:4,-149.5,-16.5,0,0,-0.150936 -77540,5114:469:3,-149,-16.5,0,0,-0.150099 -77541,5114:468:4,-148.5,-16.5,0,0,-0.14951 -77542,5114:468:3,-148,-16.5,0,0,-0.149611 -77543,5114:467:4,-147.5,-16.5,0,0,-0.150323 -77544,5114:467:3,-147,-16.5,0,0,-0.151264 -77545,5114:466:4,-146.5,-16.5,0,0,-0.152253 -77546,5114:466:3,-146,-16.5,0,0,-0.153042 -77547,5114:465:4,-145.5,-16.5,0,0,-0.15348 -77548,5114:465:3,-145,-16.5,0,0,-0.153584 -77549,5114:364:4,-144.5,-16.5,0,0,-0.153 -77550,5114:364:3,-144,-16.5,0,0,-0.152357 -77551,5114:363:4,-143.5,-16.5,0,0,-0.152626 -77552,5114:363:3,-143,-16.5,0,0,-0.153772 -77553,5114:362:4,-142.5,-16.5,0,0,-0.154381 -77554,5114:362:3,-142,-16.5,0,0,-0.154338 -77555,5114:361:4,-141.5,-16.5,0,0,-0.154486 -77556,5114:361:3,-141,-16.5,0,0,-0.155118 -77557,5114:360:4,-140.5,-16.5,0,0,-0.155435 -77558,5114:360:3,-140,-16.5,0,0,-0.155562 -77559,5113:469:4,-139.5,-16.5,0,0,-0.155732 -77560,5113:469:3,-139,-16.5,0,0,-0.155541 -77561,5113:468:4,-138.5,-16.5,0,0,-0.155118 -77562,5113:468:3,-138,-16.5,0,0,-0.154443 -77563,5113:467:4,-137.5,-16.5,0,0,-0.153919 -77564,5113:467:3,-137,-16.5,0,0,-0.153626 -77565,5113:466:4,-136.5,-16.5,0,0,-0.153688 -77566,5113:466:3,-136,-16.5,0,0,-0.153793 -77567,5113:465:4,-135.5,-16.5,0,0,-0.153688 -77568,5113:465:3,-135,-16.5,0,0,-0.153542 -77569,5113:364:4,-134.5,-16.5,0,0,-0.152938 -77570,5113:364:3,-134,-16.5,0,0,-0.151779 -77571,5113:363:4,-133.5,-16.5,0,0,-0.150262 -77572,5113:363:3,-133,-16.5,0,0,-0.148782 -77573,5113:362:4,-132.5,-16.5,0,0,-0.146366 -77574,5113:362:3,-132,-16.5,0,0,-0.144266 -77575,5113:361:4,-131.5,-16.5,0,0,-0.143897 -77576,5113:361:3,-131,-16.5,0,0,-0.144305 -77577,5113:360:4,-130.5,-16.5,0,0,-0.144189 -77578,5113:360:3,-130,-16.5,0,0,-0.143123 -77579,5112:469:4,-129.5,-16.5,0,0,-0.141703 -77580,5112:469:3,-129,-16.5,0,0,-0.140488 -77581,5112:468:4,-128.5,-16.5,0,0,-0.139274 -77582,5112:468:3,-128,-16.5,0,0,-0.138142 -77583,5112:467:4,-127.5,-16.5,0,0,-0.137421 -77584,5112:467:3,-127,-16.5,0,0,-0.137237 -77585,5112:466:4,-126.5,-16.5,0,0,-0.136953 -77586,5112:466:3,-126,-16.5,0,0,-0.136121 -77587,5112:465:4,-125.5,-16.5,0,0,-0.13605 -77588,5112:465:3,-125,-16.5,0,0,-0.13605 -77589,5112:364:4,-124.5,-16.5,0,0,-0.13605 -77590,5112:364:3,-124,-16.5,0,0,-0.13605 -77591,5112:363:4,-123.5,-16.5,0,0,-0.13605 -77592,5112:363:3,-123,-16.5,0,0,-0.13605 -77593,5112:362:4,-122.5,-16.5,0,0,-0.13605 -77594,5112:362:3,-122,-16.5,0,0,-0.13605 -77595,5112:361:4,-121.5,-16.5,0,0,-0.13605 -77596,5112:361:3,-121,-16.5,0,0,-0.13605 -77597,5112:360:4,-120.5,-16.5,0,0,-0.13605 -77598,5112:360:3,-120,-16.5,0,0,-0.13605 -77599,5111:469:4,-119.5,-16.5,0,0,-0.13605 -77600,5111:469:3,-119,-16.5,0,0,-0.13605 -77601,5111:468:4,-118.5,-16.5,0,0,-0.13605 -77602,5111:468:3,-118,-16.5,0,0,-0.13605 -77603,5111:467:4,-117.5,-16.5,0,0,-0.13605 -77604,5111:467:3,-117,-16.5,0,0,-0.136076 -77605,5111:466:4,-116.5,-16.5,0,0,-0.136485 -77606,5111:466:3,-116,-16.5,0,0,-0.136837 -77607,5111:465:4,-115.5,-16.5,0,0,-0.136787 -77608,5111:465:3,-115,-16.5,0,0,-0.136279 -77609,5111:364:4,-114.5,-16.5,0,0,-0.13605 -77610,5111:364:3,-114,-16.5,0,0,-0.13605 -77611,5111:363:4,-113.5,-16.5,0,0,-0.13605 -77612,5111:363:3,-113,-16.5,0,0,-0.13605 -77613,5111:362:4,-112.5,-16.5,0,0,-0.13605 -77614,5111:362:3,-112,-16.5,0,0,-0.13605 -77615,5111:361:4,-111.5,-16.5,0,0,-0.13605 -77616,5111:361:3,-111,-16.5,0,0,-0.13605 -77617,5111:360:4,-110.5,-16.5,0,0,-0.13605 -77618,5111:360:3,-110,-16.5,0,0,-0.13605 -77619,5110:469:4,-109.5,-16.5,0,0,-0.13605 -77620,5110:469:3,-109,-16.5,0,0,-0.13605 -77621,5110:468:4,-108.5,-16.5,0,0,-0.13605 -77622,5110:468:3,-108,-16.5,0,0,-0.13605 -77623,5110:467:4,-107.5,-16.5,0,0,-0.13605 -77624,5110:467:3,-107,-16.5,0,0,-0.13605 -77625,5110:466:4,-106.5,-16.5,0,0,-0.13605 -77626,5110:466:3,-106,-16.5,0,0,-0.13605 -77627,5110:465:4,-105.5,-16.5,0,0,-0.13605 -77628,5110:465:3,-105,-16.5,0,0,-0.13605 -77629,5110:364:4,-104.5,-16.5,0,0,-0.13605 -77630,5110:364:3,-104,-16.5,0,0,-0.13605 -77631,5110:363:4,-103.5,-16.5,0,0,-0.13605 -77632,5110:363:3,-103,-16.5,0,0,-0.13605 -77633,5110:362:4,-102.5,-16.5,0,0,-0.13605 -77634,5110:362:3,-102,-16.5,0,0,-0.13605 -77635,5110:361:4,-101.5,-16.5,0,0,-0.13605 -77636,5110:361:3,-101,-16.5,0,0,-0.13605 -77637,5110:360:4,-100.5,-16.5,0,0,-0.13605 -77638,5110:360:3,-100,-16.5,0,0,-0.13605 -77639,5109:469:4,-99.5,-16.5,0,0,-0.13605 -77640,5109:469:3,-99,-16.5,0,0,-0.13605 -77641,5109:468:4,-98.5,-16.5,0,0,-0.13605 -77642,5109:468:3,-98,-16.5,0,0,-0.13605 -77643,5109:467:4,-97.5,-16.5,0,0,-0.13605 -77644,5109:467:3,-97,-16.5,0,0,-0.13605 -77645,5109:466:4,-96.5,-16.5,0,0,-0.13605 -77646,5109:466:3,-96,-16.5,0,0,-0.13605 -77647,5109:465:4,-95.5,-16.5,0,0,-0.13605 -77648,5109:465:3,-95,-16.5,0,0,-0.13605 -77649,5109:364:4,-94.5,-16.5,0,0,-0.13605 -77650,5109:364:3,-94,-16.5,0,0,-0.13605 -77651,5109:363:4,-93.5,-16.5,0,0,-0.13605 -77652,5109:363:3,-93,-16.5,0,0,-0.13605 -77653,5109:362:4,-92.5,-16.5,0,0,-0.13605 -77654,5109:362:3,-92,-16.5,0,0,-0.13605 -77655,5109:361:4,-91.5,-16.5,0,0,-0.13605 -77656,5109:361:3,-91,-16.5,0,0,-0.13605 -77657,5109:360:4,-90.5,-16.5,0,0,-0.13605 -77658,5109:360:3,-90,-16.5,0,0,-0.13605 -77659,5108:469:4,-89.5,-16.5,0,0,-0.13605 -77660,5108:469:3,-89,-16.5,0,0,-0.13605 -77661,5108:468:4,-88.5,-16.5,0,0,-0.13605 -77662,5108:468:3,-88,-16.5,0,0,-0.13605 -77663,5108:467:4,-87.5,-16.5,0,0,-0.13605 -77664,5108:467:3,-87,-16.5,0,0,-0.13605 -77665,5108:466:4,-86.5,-16.5,0,0,-0.13605 -77666,5108:466:3,-86,-16.5,0,0,-0.13605 -77667,5108:465:4,-85.5,-16.5,0,0,-0.13605 -77668,5108:465:3,-85,-16.5,0,0,-0.13605 -77669,5108:364:4,-84.5,-16.5,0,0,-0.13605 -77670,5108:364:3,-84,-16.5,0,0,-0.13605 -77671,5108:363:4,-83.5,-16.5,0,0,-0.13605 -77672,5108:363:3,-83,-16.5,0,0,-0.13605 -77673,5108:362:4,-82.5,-16.5,0,0,-0.13605 -77674,5108:362:3,-82,-16.5,0,0,-0.13605 -77675,5108:361:4,-81.5,-16.5,0,0,-0.13605 -77676,5108:361:3,-81,-16.5,0,0,-0.13605 -77677,5108:360:4,-80.5,-16.5,0,0,-0.13605 -77678,5108:360:3,-80,-16.5,0,0,-0.13605 -77679,5107:469:4,-79.5,-16.5,0,0,-0.13605 -77680,5107:469:3,-79,-16.5,0,0,-0.13605 -77681,5107:468:4,-78.5,-16.5,0,0,-0.13605 -77682,5107:468:3,-78,-16.5,0,0,-0.13605 -77683,5107:467:4,-77.5,-16.5,0,0,-0.13605 -77684,5107:467:3,-77,-16.5,0,0,-0.13605 -77685,5107:466:4,-76.5,-16.5,0,0,-0.13605 -77686,5107:466:3,-76,-16.5,0,0,-0.13605 -77687,5107:465:4,-75.5,-16.5,0,0,-0.13605 -77688,5107:465:3,-75,-16.5,0,0,-0.13605 -77689,5107:364:4,-74.5,-16.5,0,0,-0.13605 -77690,5107:364:3,-74,-16.5,0,0,-0.13605 -77691,5107:363:4,-73.5,-16.5,0,0,-0.13605 -77692,5107:363:3,-73,-16.5,0,0,-0.13605 -77693,5107:362:4,-72.5,-16.5,0,0,-0.13605 -77694,5107:362:3,-72,-16.5,0,0,-0.13605 -77695,5107:361:4,-71.5,-16.5,0,0,-0.13605 -77696,5107:361:3,-71,-16.5,0,0,-0.13605 -77697,5107:360:4,-70.5,-16.5,0,0,-0.13605 -77698,5104:361:3,-41,-16.5,0,0,-0.161938 -77699,5104:360:4,-40.5,-16.5,0,0,-0.180756 -77700,5104:360:3,-40,-16.5,0,0,-0.185507 -77701,5103:469:4,-39.5,-16.5,0,0,-0.187149 -77702,5103:469:3,-39,-16.5,0,0,-0.185637 -77703,5103:468:4,-38.5,-16.5,0,0,-0.183574 -77704,5103:468:3,-38,-16.5,0,0,-0.180354 -77705,5103:467:4,-37.5,-16.5,0,0,-0.177715 -77706,5103:467:3,-37,-16.5,0,0,-0.175997 -77707,5103:466:4,-36.5,-16.5,0,0,-0.17551 -77708,5103:466:3,-36,-16.5,0,0,-0.175656 -77709,5103:465:4,-35.5,-16.5,0,0,-0.176168 -77710,5103:465:3,-35,-16.5,0,0,-0.177296 -77711,5103:364:4,-34.5,-16.5,0,0,-0.178036 -77712,5103:364:3,-34,-16.5,0,0,-0.17811 -77713,5103:363:4,-33.5,-16.5,0,0,-0.177987 -77714,5103:363:3,-33,-16.5,0,0,-0.177715 -77715,5103:362:4,-32.5,-16.5,0,0,-0.177468 -77716,5103:362:3,-32,-16.5,0,0,-0.17678 -77717,5103:361:4,-31.5,-16.5,0,0,-0.175729 -77718,5103:361:3,-31,-16.5,0,0,-0.174177 -77719,5103:360:4,-30.5,-16.5,0,0,-0.172379 -77720,5103:360:3,-30,-16.5,0,0,-0.170697 -77721,5102:469:4,-29.5,-16.5,0,0,-0.168614 -77722,5102:469:3,-29,-16.5,0,0,-0.164153 -77723,5102:468:4,-28.5,-16.5,0,0,-0.156349 -77724,5102:468:3,-28,-16.5,0,0,-0.148159 -77725,5102:467:4,-27.5,-16.5,0,0,-0.14349 -77726,5102:467:3,-27,-16.5,0,0,-0.141589 -77727,5102:466:4,-26.5,-16.5,0,0,-0.141703 -77728,5102:466:3,-26,-16.5,0,0,-0.142699 -77729,5102:465:4,-25.5,-16.5,0,0,-0.143625 -77730,5102:465:3,-25,-16.5,0,0,-0.144714 -77731,5102:364:4,-24.5,-16.5,0,0,-0.145263 -77732,5102:364:3,-24,-16.5,0,0,-0.145283 -77733,5102:363:4,-23.5,-16.5,0,0,-0.145165 -77734,5102:363:3,-23,-16.5,0,0,-0.14489 -77735,5102:362:4,-22.5,-16.5,0,0,-0.144871 -77736,5102:362:3,-22,-16.5,0,0,-0.144793 -77737,5102:361:4,-21.5,-16.5,0,0,-0.144285 -77738,5102:361:3,-21,-16.5,0,0,-0.143355 -77739,5102:360:4,-20.5,-16.5,0,0,-0.142296 -77740,5102:360:3,-20,-16.5,0,0,-0.141227 -77741,5101:469:4,-19.5,-16.5,0,0,-0.140299 -77742,5101:469:3,-19,-16.5,0,0,-0.139791 -77743,5101:468:4,-18.5,-16.5,0,0,-0.138953 -77744,5101:468:3,-18,-16.5,0,0,-0.137974 -77745,5101:467:4,-17.5,-16.5,0,0,-0.137053 -77746,5101:467:3,-17,-16.5,0,0,-0.136159 -77747,5101:466:4,-16.5,-16.5,0,0,-0.13605 -77748,5101:466:3,-16,-16.5,0,0,-0.13605 -77749,5101:465:4,-15.5,-16.5,0,0,-0.13605 -77750,5101:465:3,-15,-16.5,0,0,-0.13605 -77751,5101:364:4,-14.5,-16.5,0,0,-0.13605 -77752,5101:364:3,-14,-16.5,0,0,-0.13605 -77753,5101:363:4,-13.5,-16.5,0,0,-0.13605 -77754,5101:363:3,-13,-16.5,0,0,-0.13605 -77755,5101:362:4,-12.5,-16.5,0,0,-0.13605 -77756,5101:362:3,-12,-16.5,0,0,-0.13605 -77757,5101:361:4,-11.5,-16.5,0,0,-0.13605 -77758,5101:361:3,-11,-16.5,0,0,-0.13605 -77759,5101:360:4,-10.5,-16.5,0,0,-0.13605 -77760,5101:360:3,-10,-16.5,0,0,-0.13605 -77761,5100:469:4,-9.5,-16.5,0,0,-0.13605 -77762,5100:469:3,-9,-16.5,0,0,-0.13605 -77763,5100:468:4,-8.5,-16.5,0,0,-0.13605 -77764,5100:468:3,-8,-16.5,0,0,-0.13605 -77765,5100:467:4,-7.5,-16.5,0,0,-0.13605 -77766,5100:467:3,-7,-16.5,0,0,-0.13605 -77767,5100:466:4,-6.5,-16.5,0,0,-0.13605 -77768,5100:466:3,-6,-16.5,0,0,-0.13605 -77769,5100:465:4,-5.5,-16.5,0,0,-0.13605 -77770,5100:465:3,-5,-16.5,0,0,-0.13605 -77771,5100:364:4,-4.5,-16.5,0,0,-0.13605 -77772,5100:364:3,-4,-16.5,0,0,-0.13605 -77773,5100:363:4,-3.5,-16.5,0,0,-0.13605 -77774,5100:363:3,-3,-16.5,0,0,-0.13605 -77775,5100:362:4,-2.5,-16.5,0,0,-0.13605 -77776,5100:362:3,-2,-16.5,0,0,-0.13605 -77777,5100:361:4,-1.5,-16.5,0,0,-0.13605 -77778,5100:361:3,-1,-16.5,0,0,-0.13605 -77779,5100:360:4,-0.5,-16.5,0,0,-0.13605 -77780,3100:360:4,0,-16.5,0,0,-0.13605 -77781,3100:360:4,0.5,-16.5,0,0,-0.13605 -77782,3100:361:3,1,-16.5,0,0,-0.13605 -77783,3100:361:4,1.5,-16.5,0,0,-0.13605 -77784,3100:362:3,2,-16.5,0,0,-0.13605 -77785,3100:362:4,2.5,-16.5,0,0,-0.13605 -77786,3100:363:3,3,-16.5,0,0,-0.13605 -77787,3100:363:4,3.5,-16.5,0,0,-0.13605 -77788,3100:364:3,4,-16.5,0,0,-0.13605 -77789,3100:364:4,4.5,-16.5,0,0,-0.13605 -77790,3100:465:3,5,-16.5,0,0,-0.13605 -77791,3100:465:4,5.5,-16.5,0,0,-0.13605 -77792,3100:466:3,6,-16.5,0,0,-0.13605 -77793,3100:466:4,6.5,-16.5,0,0,-0.13605 -77794,3100:467:3,7,-16.5,0,0,-0.13605 -77795,3100:467:4,7.5,-16.5,0,0,-0.13605 -77796,3100:468:3,8,-16.5,0,0,-0.13605 -77797,3100:468:4,8.5,-16.5,0,0,-0.13605 -77798,3100:469:3,9,-16.5,0,0,-0.13605 -77799,3100:469:4,9.5,-16.5,0,0,-0.13605 -77800,3101:360:3,10,-16.5,0,0,-0.13605 -77801,3101:360:4,10.5,-16.5,0,0,-0.13605 -77802,3101:361:3,11,-16.5,0,0,-0.13605 -77803,3101:361:4,11.5,-16.5,0,0,-0.13605 -77804,3101:362:3,12,-16.5,0,0,-0.13605 -77805,3101:362:4,12.5,-16.5,0,0,-0.13605 -77806,3101:363:3,13,-16.5,0,0,-0.13605 -77807,3103:465:3,35,-16.5,0,0,-0.197602 -77808,3103:465:4,35.5,-16.5,0,0,-0.226437 -77809,3103:466:3,36,-16.5,0,0,-0.205022 -77810,3103:466:4,36.5,-16.5,0,0,-0.189524 -77811,3103:467:3,37,-16.5,0,0,-0.179702 -77812,3103:467:4,37.5,-16.5,0,0,-0.182146 -77813,3103:468:3,38,-16.5,0,0,-0.187517 -77814,3103:468:4,38.5,-16.5,0,0,-0.192529 -77815,3103:469:3,39,-16.5,0,0,-0.188359 -77816,3103:469:4,39.5,-16.5,0,0,-0.190967 -77817,3104:360:3,40,-16.5,0,0,-0.239561 -77818,3104:360:4,40.5,-16.5,0,0,-0.377695 -77819,3104:361:3,41,-16.5,0,0,-0.657456 -77820,3104:361:4,41.5,-16.5,0,0,-5.87314 -77821,3104:362:3,42,-16.5,0,0,2.36581 -77822,3104:362:4,42.5,-16.5,0,0,1.54367 -77823,3104:363:3,43,-16.5,0,0,1.2438 -77824,3104:363:4,43.5,-16.5,0,0,1.21124 -77825,3104:468:4,48.5,-16.5,0,0,-0.182171 -77826,3104:469:3,49,-16.5,0,0,-0.165511 -77827,3104:469:4,49.5,-16.5,0,0,-0.159715 -77828,3105:360:3,50,-16.5,0,0,-0.157828 -77829,3105:360:4,50.5,-16.5,0,0,-0.156733 -77830,3105:361:3,51,-16.5,0,0,-0.155605 -77831,3105:361:4,51.5,-16.5,0,0,-0.154759 -77832,3105:362:3,52,-16.5,0,0,-0.154191 -77833,3105:362:4,52.5,-16.5,0,0,-0.153856 -77834,3105:363:3,53,-16.5,0,0,-0.153438 -77835,3105:363:4,53.5,-16.5,0,0,-0.152067 -77836,3105:364:3,54,-16.5,0,0,-0.152171 -77837,3105:364:4,54.5,-16.5,0,0,-0.153459 -77838,3105:465:3,55,-16.5,0,0,-0.152253 -77839,3105:466:3,56,-16.5,0,0,-0.152109 -77840,3105:466:4,56.5,-16.5,0,0,-0.155372 -77841,3105:467:3,57,-16.5,0,0,-0.15813 -77842,3105:467:4,57.5,-16.5,0,0,-0.157161 -77843,3105:468:3,58,-16.5,0,0,-0.154949 -77844,3105:468:4,58.5,-16.5,0,0,-0.153146 -77845,3105:469:3,59,-16.5,0,0,-0.150221 -77846,3105:469:4,59.5,-16.5,0,0,-0.149409 -77847,3106:360:3,60,-16.5,0,0,-0.149591 -77848,3106:360:4,60.5,-16.5,0,0,-0.1485 -77849,3106:361:3,61,-16.5,0,0,-0.14601 -77850,3106:361:4,61.5,-16.5,0,0,-0.142699 -77851,3106:362:3,62,-16.5,0,0,-0.140318 -77852,3106:362:4,62.5,-16.5,0,0,-0.140299 -77853,3106:363:3,63,-16.5,0,0,-0.140507 -77854,3106:363:4,63.5,-16.5,0,0,-0.138209 -77855,3106:364:3,64,-16.5,0,0,-0.13605 -77856,3106:364:4,64.5,-16.5,0,0,-0.13605 -77857,3106:465:3,65,-16.5,0,0,-0.13605 -77858,3106:465:4,65.5,-16.5,0,0,-0.13605 -77859,3106:466:3,66,-16.5,0,0,-0.13605 -77860,3106:466:4,66.5,-16.5,0,0,-0.13605 -77861,3106:467:3,67,-16.5,0,0,-0.13605 -77862,3106:467:4,67.5,-16.5,0,0,-0.13605 -77863,3106:468:3,68,-16.5,0,0,-0.13605 -77864,3106:468:4,68.5,-16.5,0,0,-0.13605 -77865,3106:469:3,69,-16.5,0,0,-0.13605 -77866,3106:469:4,69.5,-16.5,0,0,-0.13605 -77867,3107:360:3,70,-16.5,0,0,-0.13605 -77868,3107:360:4,70.5,-16.5,0,0,-0.13605 -77869,3107:361:3,71,-16.5,0,0,-0.13605 -77870,3107:361:4,71.5,-16.5,0,0,-0.13605 -77871,3107:362:3,72,-16.5,0,0,-0.13605 -77872,3107:362:4,72.5,-16.5,0,0,-0.13605 -77873,3107:363:4,73.5,-16.5,0,0,-0.13605 -77874,3107:364:3,74,-16.5,0,0,-0.13605 -77875,3107:364:4,74.5,-16.5,0,0,-0.13605 -77876,3107:465:3,75,-16.5,0,0,-0.13605 -77877,3107:465:4,75.5,-16.5,0,0,-0.13605 -77878,3107:466:3,76,-16.5,0,0,-0.13605 -77879,3107:466:4,76.5,-16.5,0,0,-0.13605 -77880,3107:467:3,77,-16.5,0,0,-0.13605 -77881,3107:467:4,77.5,-16.5,0,0,-0.13605 -77882,3107:468:3,78,-16.5,0,0,-0.13605 -77883,3107:468:4,78.5,-16.5,0,0,-0.13605 -77884,3107:469:3,79,-16.5,0,0,-0.13605 -77885,3107:469:4,79.5,-16.5,0,0,-0.13605 -77886,3108:360:3,80,-16.5,0,0,-0.13605 -77887,3108:360:4,80.5,-16.5,0,0,-0.13605 -77888,3108:361:3,81,-16.5,0,0,-0.13605 -77889,3108:361:4,81.5,-16.5,0,0,-0.13605 -77890,3108:362:3,82,-16.5,0,0,-0.13605 -77891,3108:362:4,82.5,-16.5,0,0,-0.13605 -77892,3108:363:3,83,-16.5,0,0,-0.13605 -77893,3108:363:4,83.5,-16.5,0,0,-0.13605 -77894,3108:364:3,84,-16.5,0,0,-0.13605 -77895,3108:364:4,84.5,-16.5,0,0,-0.13605 -77896,3108:465:3,85,-16.5,0,0,-0.13605 -77897,3108:465:4,85.5,-16.5,0,0,-0.13605 -77898,3108:466:3,86,-16.5,0,0,-0.13605 -77899,3108:466:4,86.5,-16.5,0,0,-0.13605 -77900,3108:467:3,87,-16.5,0,0,-0.13605 -77901,3108:467:4,87.5,-16.5,0,0,-0.13605 -77902,3108:468:3,88,-16.5,0,0,-0.13605 -77903,3108:468:4,88.5,-16.5,0,0,-0.13605 -77904,3108:469:3,89,-16.5,0,0,-0.13605 -77905,3108:469:4,89.5,-16.5,0,0,-0.13605 -77906,3109:360:3,90,-16.5,0,0,-0.13605 -77907,3109:360:4,90.5,-16.5,0,0,-0.13605 -77908,3109:361:3,91,-16.5,0,0,-0.13605 -77909,3109:361:4,91.5,-16.5,0,0,-0.13605 -77910,3109:362:3,92,-16.5,0,0,-0.13605 -77911,3109:362:4,92.5,-16.5,0,0,-0.13605 -77912,3109:363:3,93,-16.5,0,0,-0.13605 -77913,3109:363:4,93.5,-16.5,0,0,-0.13605 -77914,3109:364:3,94,-16.5,0,0,-0.13605 -77915,3109:364:4,94.5,-16.5,0,0,-0.13605 -77916,3109:465:3,95,-16.5,0,0,-0.13605 -77917,3109:465:4,95.5,-16.5,0,0,-0.13605 -77918,3109:466:3,96,-16.5,0,0,-0.13605 -77919,3109:466:4,96.5,-16.5,0,0,-0.13605 -77920,3109:467:3,97,-16.5,0,0,-0.13605 -77921,3109:467:4,97.5,-16.5,0,0,-0.13605 -77922,3109:468:3,98,-16.5,0,0,-0.13605 -77923,3109:468:4,98.5,-16.5,0,0,-0.13605 -77924,3109:469:3,99,-16.5,0,0,-0.13605 -77925,3109:469:4,99.5,-16.5,0,0,-0.13605 -77926,3110:360:3,100,-16.5,0,0,-0.13605 -77927,3110:360:4,100.5,-16.5,0,0,-0.13605 -77928,3110:361:3,101,-16.5,0,0,-0.13605 -77929,3110:361:4,101.5,-16.5,0,0,-0.13605 -77930,3110:362:3,102,-16.5,0,0,-0.13605 -77931,3110:362:4,102.5,-16.5,0,0,-0.13605 -77932,3110:363:3,103,-16.5,0,0,-0.13605 -77933,3110:363:4,103.5,-16.5,0,0,-0.13605 -77934,3110:364:3,104,-16.5,0,0,-0.13605 -77935,3110:364:4,104.5,-16.5,0,0,-0.13605 -77936,3110:465:3,105,-16.5,0,0,-0.13605 -77937,3110:465:4,105.5,-16.5,0,0,-0.13605 -77938,3110:466:3,106,-16.5,0,0,-0.13605 -77939,3110:466:4,106.5,-16.5,0,0,-0.13605 -77940,3110:467:3,107,-16.5,0,0,-0.13605 -77941,3110:467:4,107.5,-16.5,0,0,-0.13605 -77942,3110:468:3,108,-16.5,0,0,-0.13605 -77943,3110:468:4,108.5,-16.5,0,0,-0.13605 -77944,3110:469:3,109,-16.5,0,0,-0.13605 -77945,3110:469:4,109.5,-16.5,0,0,-0.13605 -77946,3111:360:3,110,-16.5,0,0,-0.13605 -77947,3111:360:4,110.5,-16.5,0,0,-0.13605 -77948,3111:361:3,111,-16.5,0,0,-0.13605 -77949,3111:361:4,111.5,-16.5,0,0,-0.13605 -77950,3111:362:3,112,-16.5,0,0,-0.13605 -77951,3111:362:4,112.5,-16.5,0,0,-0.137521 -77952,3111:363:3,113,-16.5,0,0,-0.14199 -77953,3111:363:4,113.5,-16.5,0,0,-0.145145 -77954,3111:364:3,114,-16.5,0,0,-0.148581 -77955,3111:364:4,114.5,-16.5,0,0,-0.152917 -77956,3111:465:3,115,-16.5,0,0,-0.150466 -77957,3111:465:4,115.5,-16.5,0,0,-0.149611 -77958,3111:466:3,116,-16.5,0,0,-0.153438 -77959,3114:469:4,149.5,-16.5,0,0,-0.183702 -77960,3115:360:3,150,-16.5,0,0,-0.175169 -77961,3115:360:4,150.5,-16.5,0,0,-0.164491 -77962,3115:361:3,151,-16.5,0,0,-0.171311 -77963,3115:361:4,151.5,-16.5,0,0,-0.168521 -77964,3115:362:3,152,-16.5,0,0,-0.163994 -77965,3115:362:4,152.5,-16.5,0,0,-0.161186 -77966,3115:363:3,153,-16.5,0,0,-0.159192 -77967,3115:363:4,153.5,-16.5,0,0,-0.156797 -77968,3115:364:3,154,-16.5,0,0,-0.149388 -77969,3115:364:4,154.5,-16.5,0,0,-0.145853 -77970,3115:465:3,155,-16.5,0,0,-0.141056 -77971,3115:465:4,155.5,-16.5,0,0,-0.141646 -77972,3115:466:3,156,-16.5,0,0,-0.144227 -77973,3115:466:4,156.5,-16.5,0,0,-0.141741 -77974,3115:467:3,157,-16.5,0,0,-0.140563 -77975,3115:467:4,157.5,-16.5,0,0,-0.140886 -77976,3115:468:3,158,-16.5,0,0,-0.144636 -77977,3115:468:4,158.5,-16.5,0,0,-0.1438 -77978,3115:469:3,159,-16.5,0,0,-0.140224 -77979,3115:469:4,159.5,-16.5,0,0,-0.13605 -77980,3116:360:3,160,-16.5,0,0,-0.13605 -77981,3116:360:4,160.5,-16.5,0,0,-0.139904 -77982,3116:361:3,161,-16.5,0,0,-0.147739 -77983,3116:361:4,161.5,-16.5,0,0,-0.144871 -77984,3116:362:3,162,-16.5,0,0,-0.143955 -77985,3116:362:4,162.5,-16.5,0,0,-0.144149 -77986,3116:363:3,163,-16.5,0,0,-0.144558 -77987,3116:363:4,163.5,-16.5,0,0,-0.145067 -77988,3116:364:3,164,-16.5,0,0,-0.144305 -77989,3116:364:4,164.5,-16.5,0,0,-0.141818 -77990,3116:465:3,165,-16.5,0,0,-0.13605 -77991,3116:466:3,166,-16.5,0,0,-0.13605 -77992,3116:466:4,166.5,-16.5,0,0,-0.13605 -77993,3116:467:3,167,-16.5,0,0,-0.13605 -77994,3116:467:4,167.5,-16.5,0,0,-0.136291 -77995,3116:468:3,168,-16.5,0,0,-0.13605 -77996,3116:468:4,168.5,-16.5,0,0,-0.13605 -77997,3116:469:3,169,-16.5,0,0,-0.13605 -77998,3116:469:4,169.5,-16.5,0,0,-0.13605 -77999,3117:360:3,170,-16.5,0,0,-0.13605 -78000,3117:360:4,170.5,-16.5,0,0,-0.13605 -78001,3117:361:3,171,-16.5,0,0,-0.13605 -78002,3117:361:4,171.5,-16.5,0,0,-0.13605 -78003,3117:362:3,172,-16.5,0,0,-0.13605 -78004,3117:362:4,172.5,-16.5,0,0,-0.13605 -78005,3117:363:3,173,-16.5,0,0,-0.13605 -78006,3117:363:4,173.5,-16.5,0,0,-0.13605 -78007,3117:364:3,174,-16.5,0,0,-0.13605 -78008,3117:364:4,174.5,-16.5,0,0,-0.13605 -78009,3117:465:3,175,-16.5,0,0,-0.13605 -78010,3117:465:4,175.5,-16.5,0,0,-0.13605 -78011,3117:466:3,176,-16.5,0,0,-0.13605 -78012,3117:466:4,176.5,-16.5,0,0,-0.13605 -78013,3117:467:3,177,-16.5,0,0,-0.13605 -78014,3117:467:4,177.5,-16.5,0,0,-0.13605 -78015,3117:468:3,178,-16.5,0,0,-0.13605 -78016,3117:468:4,178.5,-16.5,0,0,-0.13605 -78017,3117:469:3,179,-16.5,0,0,-0.13605 -78018,3117:469:4,179.5,-16.5,0,0,-0.13605 -78019,3118:360:3,180,-16.5,0,0,-0.13605 -78020,5118:360:1,-180,-16,0,0,-0.13605 -78021,5117:469:2,-179.5,-16,0,0,-0.13605 -78022,5117:469:1,-179,-16,0,0,-0.13605 -78023,5117:468:2,-178.5,-16,0,0,-0.13605 -78024,5117:468:1,-178,-16,0,0,-0.13605 -78025,5117:467:2,-177.5,-16,0,0,-0.13605 -78026,5117:467:1,-177,-16,0,0,-0.13605 -78027,5117:466:2,-176.5,-16,0,0,-0.13605 -78028,5117:466:1,-176,-16,0,0,-0.13605 -78029,5117:465:2,-175.5,-16,0,0,-0.13605 -78030,5117:465:1,-175,-16,0,0,-0.13605 -78031,5117:364:2,-174.5,-16,0,0,-0.13605 -78032,5117:364:1,-174,-16,0,0,-0.13605 -78033,5117:363:2,-173.5,-16,0,0,-0.13605 -78034,5117:363:1,-173,-16,0,0,-0.13605 -78035,5117:362:2,-172.5,-16,0,0,-0.13605 -78036,5117:362:1,-172,-16,0,0,-0.13605 -78037,5117:361:2,-171.5,-16,0,0,-0.13605 -78038,5117:361:1,-171,-16,0,0,-0.13605 -78039,5117:360:2,-170.5,-16,0,0,-0.13605 -78040,5117:360:1,-170,-16,0,0,-0.13605 -78041,5116:469:2,-169.5,-16,0,0,-0.13605 -78042,5116:469:1,-169,-16,0,0,-0.13605 -78043,5116:468:2,-168.5,-16,0,0,-0.13605 -78044,5116:468:1,-168,-16,0,0,-0.13605 -78045,5116:467:2,-167.5,-16,0,0,-0.13605 -78046,5116:467:1,-167,-16,0,0,-0.13605 -78047,5116:466:2,-166.5,-16,0,0,-0.13605 -78048,5116:466:1,-166,-16,0,0,-0.13605 -78049,5116:465:2,-165.5,-16,0,0,-0.13605 -78050,5116:465:1,-165,-16,0,0,-0.13605 -78051,5116:364:2,-164.5,-16,0,0,-0.13605 -78052,5116:364:1,-164,-16,0,0,-0.13605 -78053,5116:363:2,-163.5,-16,0,0,-0.136086 -78054,5116:363:1,-163,-16,0,0,-0.13605 -78055,5116:362:2,-162.5,-16,0,0,-0.13605 -78056,5116:362:1,-162,-16,0,0,-0.13605 -78057,5116:361:2,-161.5,-16,0,0,-0.13605 -78058,5116:361:1,-161,-16,0,0,-0.136074 -78059,5116:360:2,-160.5,-16,0,0,-0.136886 -78060,5116:360:1,-160,-16,0,0,-0.139139 -78061,5115:469:2,-159.5,-16,0,0,-0.140563 -78062,5115:469:1,-159,-16,0,0,-0.141265 -78063,5115:468:2,-158.5,-16,0,0,-0.141589 -78064,5115:468:1,-158,-16,0,0,-0.141875 -78065,5115:467:2,-157.5,-16,0,0,-0.142776 -78066,5115:467:1,-157,-16,0,0,-0.144656 -78067,5115:466:2,-156.5,-16,0,0,-0.146247 -78068,5115:466:1,-156,-16,0,0,-0.146961 -78069,5115:465:2,-155.5,-16,0,0,-0.14848 -78070,5115:465:1,-155,-16,0,0,-0.150548 -78071,5115:364:2,-154.5,-16,0,0,-0.151429 -78072,5115:364:1,-154,-16,0,0,-0.151841 -78073,5115:363:2,-153.5,-16,0,0,-0.154024 -78074,5115:363:1,-153,-16,0,0,-0.155838 -78075,5115:362:2,-152.5,-16,0,0,-0.156008 -78076,5115:362:1,-152,-16,0,0,-0.157161 -78077,5115:361:2,-151.5,-16,0,0,-0.157871 -78078,5115:361:1,-151,-16,0,0,-0.158476 -78079,5115:360:2,-150.5,-16,0,0,-0.159606 -78080,5115:360:1,-150,-16,0,0,-0.160416 -78081,5114:469:2,-149.5,-16,0,0,-0.160284 -78082,5114:469:1,-149,-16,0,0,-0.160284 -78083,5114:468:2,-148.5,-16,0,0,-0.160921 -78084,5114:468:1,-148,-16,0,0,-0.161961 -78085,5114:467:2,-147.5,-16,0,0,-0.163254 -78086,5114:467:1,-147,-16,0,0,-0.164355 -78087,5114:466:2,-146.5,-16,0,0,-0.164581 -78088,5114:466:1,-146,-16,0,0,-0.164491 -78089,5114:465:2,-145.5,-16,0,0,-0.164558 -78090,5114:465:1,-145,-16,0,0,-0.164807 -78091,5114:364:2,-144.5,-16,0,0,-0.164717 -78092,5114:364:1,-144,-16,0,0,-0.163815 -78093,5114:363:2,-143.5,-16,0,0,-0.16265 -78094,5114:363:1,-143,-16,0,0,-0.162874 -78095,5114:362:2,-142.5,-16,0,0,-0.16341 -78096,5114:362:1,-142,-16,0,0,-0.163658 -78097,5114:361:2,-141.5,-16,0,0,-0.163927 -78098,5114:361:1,-141,-16,0,0,-0.164287 -78099,5114:360:2,-140.5,-16,0,0,-0.164468 -78100,5114:360:1,-140,-16,0,0,-0.1644 -78101,5113:469:2,-139.5,-16,0,0,-0.164107 -78102,5113:469:1,-139,-16,0,0,-0.16395 -78103,5113:468:2,-138.5,-16,0,0,-0.163815 -78104,5113:468:1,-138,-16,0,0,-0.162963 -78105,5113:467:2,-137.5,-16,0,0,-0.161961 -78106,5113:467:1,-137,-16,0,0,-0.161385 -78107,5113:466:2,-136.5,-16,0,0,-0.161253 -78108,5113:466:1,-136,-16,0,0,-0.160966 -78109,5113:465:2,-135.5,-16,0,0,-0.160504 -78110,5113:465:1,-135,-16,0,0,-0.159912 -78111,5113:364:2,-134.5,-16,0,0,-0.159192 -78112,5113:364:1,-134,-16,0,0,-0.15854 -78113,5113:363:2,-133.5,-16,0,0,-0.157419 -78114,5113:363:1,-133,-16,0,0,-0.156498 -78115,5113:362:2,-132.5,-16,0,0,-0.155012 -78116,5113:362:1,-132,-16,0,0,-0.153063 -78117,5113:361:2,-131.5,-16,0,0,-0.151985 -78118,5113:361:1,-131,-16,0,0,-0.15149 -78119,5113:360:2,-130.5,-16,0,0,-0.150507 -78120,5113:360:1,-130,-16,0,0,-0.148923 -78121,5112:469:2,-129.5,-16,0,0,-0.147299 -78122,5112:469:1,-129,-16,0,0,-0.146287 -78123,5112:468:2,-128.5,-16,0,0,-0.145557 -78124,5112:468:1,-128,-16,0,0,-0.144852 -78125,5112:467:2,-127.5,-16,0,0,-0.144812 -78126,5112:467:1,-127,-16,0,0,-0.145479 -78127,5112:466:2,-126.5,-16,0,0,-0.145794 -78128,5112:466:1,-126,-16,0,0,-0.144695 -78129,5112:465:2,-125.5,-16,0,0,-0.142911 -78130,5112:465:1,-125,-16,0,0,-0.142047 -78131,5112:364:2,-124.5,-16,0,0,-0.142988 -78132,5112:364:1,-124,-16,0,0,-0.143819 -78133,5112:363:2,-123.5,-16,0,0,-0.143625 -78134,5112:363:1,-123,-16,0,0,-0.1432 -78135,5112:362:2,-122.5,-16,0,0,-0.143393 -78136,5112:362:1,-122,-16,0,0,-0.143645 -78137,5112:361:2,-121.5,-16,0,0,-0.143296 -78138,5112:361:1,-121,-16,0,0,-0.142181 -78139,5112:360:2,-120.5,-16,0,0,-0.140791 -78140,5112:360:1,-120,-16,0,0,-0.140035 -78141,5111:469:2,-119.5,-16,0,0,-0.140318 -78142,5111:469:1,-119,-16,0,0,-0.141132 -78143,5111:468:2,-118.5,-16,0,0,-0.14157 -78144,5111:468:1,-118,-16,0,0,-0.141513 -78145,5111:467:2,-117.5,-16,0,0,-0.141741 -78146,5111:467:1,-117,-16,0,0,-0.1422 -78147,5111:466:2,-116.5,-16,0,0,-0.142143 -78148,5111:466:1,-116,-16,0,0,-0.141474 -78149,5111:465:2,-115.5,-16,0,0,-0.140394 -78150,5111:465:1,-115,-16,0,0,-0.138885 -78151,5111:364:2,-114.5,-16,0,0,-0.137588 -78152,5111:364:1,-114,-16,0,0,-0.136692 -78153,5111:363:2,-113.5,-16,0,0,-0.13617 -78154,5111:363:1,-113,-16,0,0,-0.13605 -78155,5111:362:2,-112.5,-16,0,0,-0.13605 -78156,5111:362:1,-112,-16,0,0,-0.13605 -78157,5111:361:2,-111.5,-16,0,0,-0.13605 -78158,5111:361:1,-111,-16,0,0,-0.13605 -78159,5111:360:2,-110.5,-16,0,0,-0.13605 -78160,5111:360:1,-110,-16,0,0,-0.13605 -78161,5110:469:2,-109.5,-16,0,0,-0.13605 -78162,5110:469:1,-109,-16,0,0,-0.13605 -78163,5110:468:2,-108.5,-16,0,0,-0.13605 -78164,5110:468:1,-108,-16,0,0,-0.13605 -78165,5110:467:2,-107.5,-16,0,0,-0.13605 -78166,5110:467:1,-107,-16,0,0,-0.13605 -78167,5110:466:2,-106.5,-16,0,0,-0.13605 -78168,5110:466:1,-106,-16,0,0,-0.13605 -78169,5110:465:2,-105.5,-16,0,0,-0.13605 -78170,5110:465:1,-105,-16,0,0,-0.13605 -78171,5110:364:2,-104.5,-16,0,0,-0.13605 -78172,5110:364:1,-104,-16,0,0,-0.13605 -78173,5110:363:2,-103.5,-16,0,0,-0.13605 -78174,5110:363:1,-103,-16,0,0,-0.13605 -78175,5110:362:2,-102.5,-16,0,0,-0.13605 -78176,5110:362:1,-102,-16,0,0,-0.13605 -78177,5110:361:2,-101.5,-16,0,0,-0.13605 -78178,5110:361:1,-101,-16,0,0,-0.13605 -78179,5110:360:2,-100.5,-16,0,0,-0.13605 -78180,5110:360:1,-100,-16,0,0,-0.13605 -78181,5109:469:2,-99.5,-16,0,0,-0.13605 -78182,5109:469:1,-99,-16,0,0,-0.13605 -78183,5109:468:2,-98.5,-16,0,0,-0.13605 -78184,5109:468:1,-98,-16,0,0,-0.13605 -78185,5109:467:2,-97.5,-16,0,0,-0.13605 -78186,5109:467:1,-97,-16,0,0,-0.13605 -78187,5109:466:2,-96.5,-16,0,0,-0.13605 -78188,5109:466:1,-96,-16,0,0,-0.13605 -78189,5109:465:2,-95.5,-16,0,0,-0.13605 -78190,5109:465:1,-95,-16,0,0,-0.13605 -78191,5109:364:2,-94.5,-16,0,0,-0.13605 -78192,5109:364:1,-94,-16,0,0,-0.13605 -78193,5109:363:2,-93.5,-16,0,0,-0.13605 -78194,5109:363:1,-93,-16,0,0,-0.13605 -78195,5109:362:2,-92.5,-16,0,0,-0.13605 -78196,5109:362:1,-92,-16,0,0,-0.13605 -78197,5109:361:2,-91.5,-16,0,0,-0.13605 -78198,5109:361:1,-91,-16,0,0,-0.13605 -78199,5109:360:2,-90.5,-16,0,0,-0.13605 -78200,5109:360:1,-90,-16,0,0,-0.13605 -78201,5108:469:2,-89.5,-16,0,0,-0.13605 -78202,5108:469:1,-89,-16,0,0,-0.13605 -78203,5108:468:2,-88.5,-16,0,0,-0.13605 -78204,5108:468:1,-88,-16,0,0,-0.13605 -78205,5108:467:2,-87.5,-16,0,0,-0.13605 -78206,5108:467:1,-87,-16,0,0,-0.13605 -78207,5108:466:2,-86.5,-16,0,0,-0.13605 -78208,5108:466:1,-86,-16,0,0,-0.13605 -78209,5108:465:2,-85.5,-16,0,0,-0.13605 -78210,5108:465:1,-85,-16,0,0,-0.13605 -78211,5108:364:2,-84.5,-16,0,0,-0.13605 -78212,5108:364:1,-84,-16,0,0,-0.13605 -78213,5108:363:2,-83.5,-16,0,0,-0.13605 -78214,5108:363:1,-83,-16,0,0,-0.13605 -78215,5108:362:2,-82.5,-16,0,0,-0.13605 -78216,5108:362:1,-82,-16,0,0,-0.13605 -78217,5108:361:2,-81.5,-16,0,0,-0.13605 -78218,5108:361:1,-81,-16,0,0,-0.13605 -78219,5108:360:2,-80.5,-16,0,0,-0.13605 -78220,5108:360:1,-80,-16,0,0,-0.13605 -78221,5107:469:2,-79.5,-16,0,0,-0.13605 -78222,5107:469:1,-79,-16,0,0,-0.13605 -78223,5107:468:2,-78.5,-16,0,0,-0.13605 -78224,5107:468:1,-78,-16,0,0,-0.13605 -78225,5107:467:2,-77.5,-16,0,0,-0.13605 -78226,5107:467:1,-77,-16,0,0,-0.13605 -78227,5107:466:2,-76.5,-16,0,0,-0.13605 -78228,5107:466:1,-76,-16,0,0,-0.13605 -78229,5107:465:2,-75.5,-16,0,0,-0.13605 -78230,5107:465:1,-75,-16,0,0,-0.13605 -78231,5107:364:2,-74.5,-16,0,0,-0.13605 -78232,5107:364:1,-74,-16,0,0,-0.13605 -78233,5107:363:2,-73.5,-16,0,0,-0.13605 -78234,5107:363:1,-73,-16,0,0,-0.13605 -78235,5107:362:2,-72.5,-16,0,0,-0.13605 -78236,5107:362:1,-72,-16,0,0,-0.13605 -78237,5107:361:2,-71.5,-16,0,0,-0.13605 -78238,5107:361:1,-71,-16,0,0,-0.13605 -78239,5107:360:2,-70.5,-16,0,0,-0.13605 -78240,5104:360:2,-40.5,-16,0,0,-0.163052 -78241,5104:360:1,-40,-16,0,0,-0.191262 -78242,5103:469:2,-39.5,-16,0,0,-0.187885 -78243,5103:469:1,-39,-16,0,0,-0.187464 -78244,5103:468:2,-38.5,-16,0,0,-0.182782 -78245,5103:468:1,-38,-16,0,0,-0.184602 -78246,5103:467:2,-37.5,-16,0,0,-0.177863 -78247,5103:467:1,-37,-16,0,0,-0.178309 -78248,5103:466:2,-36.5,-16,0,0,-0.177863 -78249,5103:466:1,-36,-16,0,0,-0.178259 -78250,5103:465:2,-35.5,-16,0,0,-0.179902 -78251,5103:465:1,-35,-16,0,0,-0.181234 -78252,5103:364:2,-34.5,-16,0,0,-0.18212 -78253,5103:364:1,-34,-16,0,0,-0.181538 -78254,5103:363:2,-33.5,-16,0,0,-0.180354 -78255,5103:363:1,-33,-16,0,0,-0.179378 -78256,5103:362:2,-32.5,-16,0,0,-0.178854 -78257,5103:362:1,-32,-16,0,0,-0.17816 -78258,5103:361:2,-31.5,-16,0,0,-0.176903 -78259,5103:361:1,-31,-16,0,0,-0.174903 -78260,5103:360:2,-30.5,-16,0,0,-0.172046 -78261,5103:360:1,-30,-16,0,0,-0.169617 -78262,5102:469:2,-29.5,-16,0,0,-0.167665 -78263,5102:469:1,-29,-16,0,0,-0.164062 -78264,5102:468:2,-28.5,-16,0,0,-0.15772 -78265,5102:468:1,-28,-16,0,0,-0.151573 -78266,5102:467:2,-27.5,-16,0,0,-0.146346 -78267,5102:467:1,-27,-16,0,0,-0.142661 -78268,5102:466:2,-26.5,-16,0,0,-0.141798 -78269,5102:466:1,-26,-16,0,0,-0.142047 -78270,5102:465:2,-25.5,-16,0,0,-0.142584 -78271,5102:465:1,-25,-16,0,0,-0.143296 -78272,5102:364:2,-24.5,-16,0,0,-0.143858 -78273,5102:364:1,-24,-16,0,0,-0.144149 -78274,5102:363:2,-23.5,-16,0,0,-0.144305 -78275,5102:363:1,-23,-16,0,0,-0.144189 -78276,5102:362:2,-22.5,-16,0,0,-0.143819 -78277,5102:362:1,-22,-16,0,0,-0.143239 -78278,5102:361:2,-21.5,-16,0,0,-0.142584 -78279,5102:361:1,-21,-16,0,0,-0.141932 -78280,5102:360:2,-20.5,-16,0,0,-0.141379 -78281,5102:360:1,-20,-16,0,0,-0.140848 -78282,5101:469:2,-19.5,-16,0,0,-0.139866 -78283,5101:469:1,-19,-16,0,0,-0.13858 -78284,5101:468:2,-18.5,-16,0,0,-0.13677 -78285,5101:468:1,-18,-16,0,0,-0.13605 -78286,5101:467:2,-17.5,-16,0,0,-0.13605 -78287,5101:467:1,-17,-16,0,0,-0.13605 -78288,5101:466:2,-16.5,-16,0,0,-0.13605 -78289,5101:466:1,-16,-16,0,0,-0.13605 -78290,5101:465:2,-15.5,-16,0,0,-0.13605 -78291,5101:465:1,-15,-16,0,0,-0.13605 -78292,5101:364:2,-14.5,-16,0,0,-0.13605 -78293,5101:364:1,-14,-16,0,0,-0.13605 -78294,5101:363:2,-13.5,-16,0,0,-0.13605 -78295,5101:363:1,-13,-16,0,0,-0.13605 -78296,5101:362:2,-12.5,-16,0,0,-0.13605 -78297,5101:362:1,-12,-16,0,0,-0.13605 -78298,5101:361:2,-11.5,-16,0,0,-0.13605 -78299,5101:361:1,-11,-16,0,0,-0.13605 -78300,5101:360:2,-10.5,-16,0,0,-0.13605 -78301,5101:360:1,-10,-16,0,0,-0.13605 -78302,5100:469:2,-9.5,-16,0,0,-0.13605 -78303,5100:469:1,-9,-16,0,0,-0.13605 -78304,5100:468:2,-8.5,-16,0,0,-0.13605 -78305,5100:468:1,-8,-16,0,0,-0.13605 -78306,5100:467:2,-7.5,-16,0,0,-0.13605 -78307,5100:467:1,-7,-16,0,0,-0.13605 -78308,5100:466:2,-6.5,-16,0,0,-0.13605 -78309,5100:466:1,-6,-16,0,0,-0.13605 -78310,5100:465:2,-5.5,-16,0,0,-0.13605 -78311,5100:465:1,-5,-16,0,0,-0.13605 -78312,5100:364:2,-4.5,-16,0,0,-0.13605 -78313,5100:364:1,-4,-16,0,0,-0.13605 -78314,5100:363:2,-3.5,-16,0,0,-0.13605 -78315,5100:363:1,-3,-16,0,0,-0.13605 -78316,5100:362:2,-2.5,-16,0,0,-0.13605 -78317,5100:362:1,-2,-16,0,0,-0.13605 -78318,5100:361:2,-1.5,-16,0,0,-0.13605 -78319,5100:361:1,-1,-16,0,0,-0.13605 -78320,5100:360:2,-0.5,-16,0,0,-0.13605 -78321,3100:360:2,0,-16,0,0,-0.13605 -78322,3100:360:2,0.5,-16,0,0,-0.13605 -78323,3100:361:1,1,-16,0,0,-0.13605 -78324,3100:361:2,1.5,-16,0,0,-0.13605 -78325,3100:362:1,2,-16,0,0,-0.13605 -78326,3100:362:2,2.5,-16,0,0,-0.13605 -78327,3100:363:1,3,-16,0,0,-0.13605 -78328,3100:363:2,3.5,-16,0,0,-0.13605 -78329,3100:364:1,4,-16,0,0,-0.13605 -78330,3100:364:2,4.5,-16,0,0,-0.13605 -78331,3100:465:1,5,-16,0,0,-0.13605 -78332,3100:465:2,5.5,-16,0,0,-0.13605 -78333,3100:466:1,6,-16,0,0,-0.13605 -78334,3100:466:2,6.5,-16,0,0,-0.13605 -78335,3100:467:1,7,-16,0,0,-0.13605 -78336,3100:467:2,7.5,-16,0,0,-0.13605 -78337,3100:468:1,8,-16,0,0,-0.13605 -78338,3100:468:2,8.5,-16,0,0,-0.13605 -78339,3100:469:1,9,-16,0,0,-0.13605 -78340,3100:469:2,9.5,-16,0,0,-0.13605 -78341,3101:360:1,10,-16,0,0,-0.13605 -78342,3101:360:2,10.5,-16,0,0,-0.13605 -78343,3101:361:1,11,-16,0,0,-0.13605 -78344,3101:361:2,11.5,-16,0,0,-0.13605 -78345,3101:362:1,12,-16,0,0,-0.13605 -78346,3101:362:2,12.5,-16,0,0,-0.13605 -78347,3101:363:1,13,-16,0,0,-0.13605 -78348,3103:465:1,35,-16,0,0,-0.246277 -78349,3103:465:2,35.5,-16,0,0,-0.288455 -78350,3103:466:1,36,-16,0,0,-0.273767 -78351,3103:466:2,36.5,-16,0,0,-0.241033 -78352,3103:467:1,37,-16,0,0,-0.2381 -78353,3103:467:2,37.5,-16,0,0,-0.187228 -78354,3103:468:1,38,-16,0,0,-0.181538 -78355,3103:468:2,38.5,-16,0,0,-0.188438 -78356,3103:469:1,39,-16,0,0,-0.234848 -78357,3103:469:2,39.5,-16,0,0,-0.38354 -78358,3104:360:1,40,-16,0,0,-0.521724 -78359,3104:360:2,40.5,-16,0,0,-0.652104 -78360,3104:361:1,41,-16,0,0,-1.09328 -78361,3104:361:2,41.5,-16,0,0,146.38 -78362,3104:362:1,42,-16,0,0,1.75082 -78363,3104:362:2,42.5,-16,0,0,1.5827 -78364,3104:363:1,43,-16,0,0,1.32781 -78365,3104:363:2,43.5,-16,0,0,1.20548 -78366,3104:468:2,48.5,-16,0,0,-0.183753 -78367,3104:469:1,49,-16,0,0,-0.173936 -78368,3104:469:2,49.5,-16,0,0,-0.162338 -78369,3105:360:1,50,-16,0,0,-0.163276 -78370,3105:360:2,50.5,-16,0,0,-0.163388 -78371,3105:361:1,51,-16,0,0,-0.161783 -78372,3105:361:2,51.5,-16,0,0,-0.161076 -78373,3105:362:1,52,-16,0,0,-0.158779 -78374,3105:362:2,52.5,-16,0,0,-0.156862 -78375,3105:363:1,53,-16,0,0,-0.156776 -78376,3105:363:2,53.5,-16,0,0,-0.157097 -78377,3105:364:1,54,-16,0,0,-0.159061 -78378,3105:364:2,54.5,-16,0,0,-0.158975 -78379,3105:465:1,55,-16,0,0,-0.157247 -78380,3105:465:2,55.5,-16,0,0,-0.157312 -78381,3105:466:1,56,-16,0,0,-0.158671 -78382,3105:466:2,56.5,-16,0,0,-0.159737 -78383,3105:467:1,57,-16,0,0,-0.158454 -78384,3105:467:2,57.5,-16,0,0,-0.151841 -78385,3105:468:1,58,-16,0,0,-0.154907 -78386,3105:468:2,58.5,-16,0,0,-0.153877 -78387,3105:469:1,59,-16,0,0,-0.150629 -78388,3105:469:2,59.5,-16,0,0,-0.15018 -78389,3106:360:1,60,-16,0,0,-0.150343 -78390,3106:360:2,60.5,-16,0,0,-0.150527 -78391,3106:361:1,61,-16,0,0,-0.148541 -78392,3106:361:2,61.5,-16,0,0,-0.143278 -78393,3106:362:1,62,-16,0,0,-0.14155 -78394,3106:362:2,62.5,-16,0,0,-0.141474 -78395,3106:363:1,63,-16,0,0,-0.142334 -78396,3106:363:2,63.5,-16,0,0,-0.141018 -78397,3106:364:1,64,-16,0,0,-0.137857 -78398,3106:364:2,64.5,-16,0,0,-0.136136 -78399,3106:465:1,65,-16,0,0,-0.13605 -78400,3106:465:2,65.5,-16,0,0,-0.13605 -78401,3106:466:1,66,-16,0,0,-0.136472 -78402,3106:466:2,66.5,-16,0,0,-0.137204 -78403,3106:467:1,67,-16,0,0,-0.137037 -78404,3106:467:2,67.5,-16,0,0,-0.136129 -78405,3106:468:1,68,-16,0,0,-0.13605 -78406,3106:468:2,68.5,-16,0,0,-0.13605 -78407,3106:469:1,69,-16,0,0,-0.13605 -78408,3106:469:2,69.5,-16,0,0,-0.13605 -78409,3107:360:1,70,-16,0,0,-0.13605 -78410,3107:360:2,70.5,-16,0,0,-0.13605 -78411,3107:361:1,71,-16,0,0,-0.13605 -78412,3107:361:2,71.5,-16,0,0,-0.13605 -78413,3107:362:1,72,-16,0,0,-0.13605 -78414,3107:362:2,72.5,-16,0,0,-0.13605 -78415,3107:363:2,73.5,-16,0,0,-0.13605 -78416,3107:364:1,74,-16,0,0,-0.13605 -78417,3107:364:2,74.5,-16,0,0,-0.13605 -78418,3107:465:1,75,-16,0,0,-0.13605 -78419,3107:465:2,75.5,-16,0,0,-0.13605 -78420,3107:466:1,76,-16,0,0,-0.13605 -78421,3107:466:2,76.5,-16,0,0,-0.13605 -78422,3107:467:1,77,-16,0,0,-0.13605 -78423,3107:467:2,77.5,-16,0,0,-0.13605 -78424,3107:468:1,78,-16,0,0,-0.13605 -78425,3107:468:2,78.5,-16,0,0,-0.13605 -78426,3107:469:1,79,-16,0,0,-0.13605 -78427,3107:469:2,79.5,-16,0,0,-0.13605 -78428,3108:360:1,80,-16,0,0,-0.13605 -78429,3108:360:2,80.5,-16,0,0,-0.13605 -78430,3108:361:1,81,-16,0,0,-0.13605 -78431,3108:361:2,81.5,-16,0,0,-0.13605 -78432,3108:362:1,82,-16,0,0,-0.13605 -78433,3108:362:2,82.5,-16,0,0,-0.13605 -78434,3108:363:1,83,-16,0,0,-0.13605 -78435,3108:363:2,83.5,-16,0,0,-0.13605 -78436,3108:364:1,84,-16,0,0,-0.13605 -78437,3108:364:2,84.5,-16,0,0,-0.13605 -78438,3108:465:1,85,-16,0,0,-0.13605 -78439,3108:465:2,85.5,-16,0,0,-0.13605 -78440,3108:466:1,86,-16,0,0,-0.13605 -78441,3108:466:2,86.5,-16,0,0,-0.13605 -78442,3108:467:1,87,-16,0,0,-0.13605 -78443,3108:467:2,87.5,-16,0,0,-0.13605 -78444,3108:468:1,88,-16,0,0,-0.13605 -78445,3108:468:2,88.5,-16,0,0,-0.13605 -78446,3108:469:1,89,-16,0,0,-0.13605 -78447,3108:469:2,89.5,-16,0,0,-0.13605 -78448,3109:360:1,90,-16,0,0,-0.13605 -78449,3109:360:2,90.5,-16,0,0,-0.13605 -78450,3109:361:1,91,-16,0,0,-0.13605 -78451,3109:361:2,91.5,-16,0,0,-0.13605 -78452,3109:362:1,92,-16,0,0,-0.13605 -78453,3109:362:2,92.5,-16,0,0,-0.13605 -78454,3109:363:1,93,-16,0,0,-0.13605 -78455,3109:363:2,93.5,-16,0,0,-0.13605 -78456,3109:364:1,94,-16,0,0,-0.13605 -78457,3109:364:2,94.5,-16,0,0,-0.13605 -78458,3109:465:1,95,-16,0,0,-0.13605 -78459,3109:465:2,95.5,-16,0,0,-0.13605 -78460,3109:466:1,96,-16,0,0,-0.13605 -78461,3109:466:2,96.5,-16,0,0,-0.13605 -78462,3109:467:1,97,-16,0,0,-0.13605 -78463,3109:467:2,97.5,-16,0,0,-0.13605 -78464,3109:468:1,98,-16,0,0,-0.13605 -78465,3109:468:2,98.5,-16,0,0,-0.13605 -78466,3109:469:1,99,-16,0,0,-0.13605 -78467,3109:469:2,99.5,-16,0,0,-0.13605 -78468,3110:360:1,100,-16,0,0,-0.13605 -78469,3110:360:2,100.5,-16,0,0,-0.13605 -78470,3110:361:1,101,-16,0,0,-0.13605 -78471,3110:361:2,101.5,-16,0,0,-0.13605 -78472,3110:362:1,102,-16,0,0,-0.13605 -78473,3110:362:2,102.5,-16,0,0,-0.13605 -78474,3110:363:1,103,-16,0,0,-0.13605 -78475,3110:363:2,103.5,-16,0,0,-0.13605 -78476,3110:364:1,104,-16,0,0,-0.13605 -78477,3110:364:2,104.5,-16,0,0,-0.13605 -78478,3110:465:1,105,-16,0,0,-0.13605 -78479,3110:465:2,105.5,-16,0,0,-0.13605 -78480,3110:466:1,106,-16,0,0,-0.13605 -78481,3110:466:2,106.5,-16,0,0,-0.13605 -78482,3110:467:1,107,-16,0,0,-0.13605 -78483,3110:467:2,107.5,-16,0,0,-0.13605 -78484,3110:468:1,108,-16,0,0,-0.13605 -78485,3110:468:2,108.5,-16,0,0,-0.13605 -78486,3110:469:1,109,-16,0,0,-0.13605 -78487,3110:469:2,109.5,-16,0,0,-0.13605 -78488,3111:360:1,110,-16,0,0,-0.13605 -78489,3111:360:2,110.5,-16,0,0,-0.13605 -78490,3111:361:1,111,-16,0,0,-0.13605 -78491,3111:361:2,111.5,-16,0,0,-0.13605 -78492,3111:362:1,112,-16,0,0,-0.13605 -78493,3111:362:2,112.5,-16,0,0,-0.13605 -78494,3111:363:1,113,-16,0,0,-0.141608 -78495,3111:363:2,113.5,-16,0,0,-0.149206 -78496,3111:364:1,114,-16,0,0,-0.152316 -78497,3111:364:2,114.5,-16,0,0,-0.153167 -78498,3111:465:1,115,-16,0,0,-0.158433 -78499,3111:465:2,115.5,-16,0,0,-0.162806 -78500,3111:466:1,116,-16,0,0,-0.166217 -78501,3111:466:2,116.5,-16,0,0,-0.174298 -78502,3111:467:1,117,-16,0,0,-0.186157 -78503,3111:467:2,117.5,-16,0,0,-0.239931 -78504,3111:468:1,118,-16,0,0,-0.566343 -78505,3114:469:2,149.5,-16,0,0,-0.171928 -78506,3115:360:1,150,-16,0,0,-0.161983 -78507,3115:360:2,150.5,-16,0,0,-0.166951 -78508,3115:361:1,151,-16,0,0,-0.166401 -78509,3115:361:2,151.5,-16,0,0,-0.161695 -78510,3115:362:1,152,-16,0,0,-0.161054 -78511,3115:362:2,152.5,-16,0,0,-0.161783 -78512,3115:363:1,153,-16,0,0,-0.160745 -78513,3115:363:2,153.5,-16,0,0,-0.153898 -78514,3115:364:1,154,-16,0,0,-0.146129 -78515,3115:364:2,154.5,-16,0,0,-0.143955 -78516,3115:465:1,155,-16,0,0,-0.142988 -78517,3115:465:2,155.5,-16,0,0,-0.142564 -78518,3115:466:1,156,-16,0,0,-0.142392 -78519,3115:466:2,156.5,-16,0,0,-0.143258 -78520,3115:467:1,157,-16,0,0,-0.148863 -78521,3115:467:2,157.5,-16,0,0,-0.15108 -78522,3115:468:1,158,-16,0,0,-0.148843 -78523,3115:468:2,158.5,-16,0,0,-0.148984 -78524,3115:469:1,159,-16,0,0,-0.141284 -78525,3115:469:2,159.5,-16,0,0,-0.138075 -78526,3116:360:1,160,-16,0,0,-0.140942 -78527,3116:360:2,160.5,-16,0,0,-0.151305 -78528,3116:361:1,161,-16,0,0,-0.151717 -78529,3116:361:2,161.5,-16,0,0,-0.147319 -78530,3116:362:1,162,-16,0,0,-0.149835 -78531,3116:362:2,162.5,-16,0,0,-0.147718 -78532,3116:363:1,163,-16,0,0,-0.1484 -78533,3116:363:2,163.5,-16,0,0,-0.147499 -78534,3116:364:1,164,-16,0,0,-0.147479 -78535,3116:465:1,165,-16,0,0,-0.143219 -78536,3116:465:2,165.5,-16,0,0,-0.136853 -78537,3116:466:1,166,-16,0,0,-0.138193 -78538,3116:466:2,166.5,-16,0,0,-0.139378 -78539,3116:467:1,167,-16,0,0,-0.139979 -78540,3116:467:2,167.5,-16,0,0,-0.137337 -78541,3116:468:1,168,-16,0,0,-0.136176 -78542,3116:468:2,168.5,-16,0,0,-0.13605 -78543,3116:469:1,169,-16,0,0,-0.13605 -78544,3116:469:2,169.5,-16,0,0,-0.13605 -78545,3117:360:1,170,-16,0,0,-0.13605 -78546,3117:360:2,170.5,-16,0,0,-0.13605 -78547,3117:361:1,171,-16,0,0,-0.13605 -78548,3117:361:2,171.5,-16,0,0,-0.13605 -78549,3117:362:1,172,-16,0,0,-0.13605 -78550,3117:362:2,172.5,-16,0,0,-0.13605 -78551,3117:363:1,173,-16,0,0,-0.13605 -78552,3117:363:2,173.5,-16,0,0,-0.13605 -78553,3117:364:1,174,-16,0,0,-0.13605 -78554,3117:364:2,174.5,-16,0,0,-0.13605 -78555,3117:465:1,175,-16,0,0,-0.13605 -78556,3117:465:2,175.5,-16,0,0,-0.13605 -78557,3117:466:1,176,-16,0,0,-0.13605 -78558,3117:466:2,176.5,-16,0,0,-0.13605 -78559,3117:467:1,177,-16,0,0,-0.13605 -78560,3117:467:2,177.5,-16,0,0,-0.13605 -78561,3117:468:1,178,-16,0,0,-0.13605 -78562,3117:468:2,178.5,-16,0,0,-0.13605 -78563,3117:469:1,179,-16,0,0,-0.13605 -78564,3117:469:2,179.5,-16,0,0,-0.13605 -78565,3118:360:1,180,-16,0,0,-0.13605 -78566,5118:350:3,-180,-15.5,0,0,-0.13605 -78567,5117:459:4,-179.5,-15.5,0,0,-0.136121 -78568,5117:459:3,-179,-15.5,0,0,-0.13605 -78569,5117:458:4,-178.5,-15.5,0,0,-0.13605 -78570,5117:458:3,-178,-15.5,0,0,-0.13605 -78571,5117:457:4,-177.5,-15.5,0,0,-0.136051 -78572,5117:457:3,-177,-15.5,0,0,-0.13605 -78573,5117:456:4,-176.5,-15.5,0,0,-0.136144 -78574,5117:456:3,-176,-15.5,0,0,-0.13692 -78575,5117:455:4,-175.5,-15.5,0,0,-0.137857 -78576,5117:455:3,-175,-15.5,0,0,-0.136537 -78577,5117:354:4,-174.5,-15.5,0,0,-0.13605 -78578,5117:354:3,-174,-15.5,0,0,-0.13605 -78579,5117:353:4,-173.5,-15.5,0,0,-0.13605 -78580,5117:353:3,-173,-15.5,0,0,-0.136094 -78581,5117:352:4,-172.5,-15.5,0,0,-0.136188 -78582,5117:352:3,-172,-15.5,0,0,-0.138193 -78583,5117:351:4,-171.5,-15.5,0,0,-0.137538 -78584,5117:351:3,-171,-15.5,0,0,-0.13853 -78585,5117:350:4,-170.5,-15.5,0,0,-0.140772 -78586,5117:350:3,-170,-15.5,0,0,-0.140337 -78587,5116:459:4,-169.5,-15.5,0,0,-0.140469 -78588,5116:459:3,-169,-15.5,0,0,-0.139566 -78589,5116:458:4,-168.5,-15.5,0,0,-0.13858 -78590,5116:458:3,-168,-15.5,0,0,-0.139156 -78591,5116:457:4,-167.5,-15.5,0,0,-0.140677 -78592,5116:457:3,-167,-15.5,0,0,-0.140696 -78593,5116:456:4,-166.5,-15.5,0,0,-0.13858 -78594,5116:456:3,-166,-15.5,0,0,-0.137806 -78595,5116:455:4,-165.5,-15.5,0,0,-0.138159 -78596,5116:455:3,-165,-15.5,0,0,-0.139678 -78597,5116:354:4,-164.5,-15.5,0,0,-0.142258 -78598,5116:354:3,-164,-15.5,0,0,-0.144052 -78599,5116:353:4,-163.5,-15.5,0,0,-0.143007 -78600,5116:353:3,-163,-15.5,0,0,-0.142468 -78601,5116:352:4,-162.5,-15.5,0,0,-0.143296 -78602,5116:352:3,-162,-15.5,0,0,-0.145047 -78603,5116:351:4,-161.5,-15.5,0,0,-0.146882 -78604,5116:351:3,-161,-15.5,0,0,-0.148219 -78605,5116:350:4,-160.5,-15.5,0,0,-0.149126 -78606,5116:350:3,-160,-15.5,0,0,-0.150282 -78607,5115:459:4,-159.5,-15.5,0,0,-0.152026 -78608,5115:459:3,-159,-15.5,0,0,-0.153814 -78609,5115:458:4,-158.5,-15.5,0,0,-0.15535 -78610,5115:458:3,-158,-15.5,0,0,-0.156904 -78611,5115:457:4,-157.5,-15.5,0,0,-0.157849 -78612,5115:457:3,-157,-15.5,0,0,-0.158433 -78613,5115:456:4,-156.5,-15.5,0,0,-0.159606 -78614,5115:456:3,-156,-15.5,0,0,-0.161739 -78615,5115:455:4,-155.5,-15.5,0,0,-0.163769 -78616,5115:455:3,-155,-15.5,0,0,-0.164558 -78617,5115:354:4,-154.5,-15.5,0,0,-0.164717 -78618,5115:354:3,-154,-15.5,0,0,-0.165488 -78619,5115:353:4,-153.5,-15.5,0,0,-0.166172 -78620,5115:353:3,-153,-15.5,0,0,-0.166217 -78621,5115:352:4,-152.5,-15.5,0,0,-0.16748 -78622,5115:352:3,-152,-15.5,0,0,-0.170038 -78623,5115:351:4,-151.5,-15.5,0,0,-0.17372 -78624,5115:351:3,-151,-15.5,0,0,-0.176657 -78625,5115:350:4,-150.5,-15.5,0,0,-0.177493 -78626,5115:350:3,-150,-15.5,0,0,-0.177369 -78627,5114:459:4,-149.5,-15.5,0,0,-0.176632 -78628,5114:459:3,-149,-15.5,0,0,-0.176143 -78629,5114:458:4,-148.5,-15.5,0,0,-0.176853 -78630,5114:458:3,-148,-15.5,0,0,-0.177888 -78631,5114:457:4,-147.5,-15.5,0,0,-0.178086 -78632,5114:457:3,-147,-15.5,0,0,-0.177863 -78633,5114:456:4,-146.5,-15.5,0,0,-0.177666 -78634,5114:456:3,-146,-15.5,0,0,-0.177247 -78635,5114:455:4,-145.5,-15.5,0,0,-0.176584 -78636,5114:455:3,-145,-15.5,0,0,-0.175559 -78637,5114:354:4,-144.5,-15.5,0,0,-0.174418 -78638,5114:354:3,-144,-15.5,0,0,-0.173768 -78639,5114:353:4,-143.5,-15.5,0,0,-0.173889 -78640,5114:353:3,-143,-15.5,0,0,-0.174298 -78641,5114:352:4,-142.5,-15.5,0,0,-0.174516 -78642,5114:352:3,-142,-15.5,0,0,-0.174612 -78643,5114:351:4,-141.5,-15.5,0,0,-0.17466 -78644,5114:351:3,-141,-15.5,0,0,-0.174685 -78645,5114:350:4,-140.5,-15.5,0,0,-0.174612 -78646,5114:350:3,-140,-15.5,0,0,-0.174418 -78647,5113:459:4,-139.5,-15.5,0,0,-0.174225 -78648,5113:459:3,-139,-15.5,0,0,-0.174418 -78649,5113:458:4,-138.5,-15.5,0,0,-0.174733 -78650,5113:458:3,-138,-15.5,0,0,-0.174346 -78651,5113:457:4,-137.5,-15.5,0,0,-0.173432 -78652,5113:457:3,-137,-15.5,0,0,-0.172642 -78653,5113:456:4,-136.5,-15.5,0,0,-0.17207 -78654,5113:456:3,-136,-15.5,0,0,-0.170956 -78655,5113:455:4,-135.5,-15.5,0,0,-0.170297 -78656,5113:455:3,-135,-15.5,0,0,-0.170367 -78657,5113:354:4,-134.5,-15.5,0,0,-0.170273 -78658,5113:354:3,-134,-15.5,0,0,-0.169898 -78659,5113:353:4,-133.5,-15.5,0,0,-0.16894 -78660,5113:353:3,-133,-15.5,0,0,-0.168614 -78661,5113:352:4,-132.5,-15.5,0,0,-0.168382 -78662,5113:352:3,-132,-15.5,0,0,-0.167388 -78663,5113:351:4,-131.5,-15.5,0,0,-0.165829 -78664,5113:351:3,-131,-15.5,0,0,-0.163568 -78665,5113:350:4,-130.5,-15.5,0,0,-0.161098 -78666,5113:350:3,-130,-15.5,0,0,-0.159105 -78667,5112:459:4,-129.5,-15.5,0,0,-0.157742 -78668,5112:459:3,-129,-15.5,0,0,-0.157526 -78669,5112:458:4,-128.5,-15.5,0,0,-0.158433 -78670,5112:458:3,-128,-15.5,0,0,-0.159018 -78671,5112:457:4,-127.5,-15.5,0,0,-0.158086 -78672,5112:457:3,-127,-15.5,0,0,-0.156221 -78673,5112:456:4,-126.5,-15.5,0,0,-0.156349 -78674,5112:456:3,-126,-15.5,0,0,-0.157591 -78675,5112:455:4,-125.5,-15.5,0,0,-0.156477 -78676,5112:455:3,-125,-15.5,0,0,-0.155329 -78677,5112:354:4,-124.5,-15.5,0,0,-0.155541 -78678,5112:354:3,-124,-15.5,0,0,-0.15588 -78679,5112:353:4,-123.5,-15.5,0,0,-0.155753 -78680,5112:353:3,-123,-15.5,0,0,-0.155562 -78681,5112:352:4,-122.5,-15.5,0,0,-0.156242 -78682,5112:352:3,-122,-15.5,0,0,-0.156776 -78683,5112:351:4,-121.5,-15.5,0,0,-0.157161 -78684,5112:351:3,-121,-15.5,0,0,-0.15729 -78685,5112:350:4,-120.5,-15.5,0,0,-0.156712 -78686,5112:350:3,-120,-15.5,0,0,-0.155965 -78687,5111:459:4,-119.5,-15.5,0,0,-0.155308 -78688,5111:459:3,-119,-15.5,0,0,-0.154044 -78689,5111:458:4,-118.5,-15.5,0,0,-0.152316 -78690,5111:458:3,-118,-15.5,0,0,-0.150895 -78691,5111:457:4,-117.5,-15.5,0,0,-0.150262 -78692,5111:457:3,-117,-15.5,0,0,-0.149875 -78693,5111:456:4,-116.5,-15.5,0,0,-0.149146 -78694,5111:456:3,-116,-15.5,0,0,-0.148038 -78695,5111:455:4,-115.5,-15.5,0,0,-0.146544 -78696,5111:455:3,-115,-15.5,0,0,-0.145106 -78697,5111:354:4,-114.5,-15.5,0,0,-0.143722 -78698,5111:354:3,-114,-15.5,0,0,-0.141932 -78699,5111:353:4,-113.5,-15.5,0,0,-0.139904 -78700,5111:353:3,-113,-15.5,0,0,-0.137488 -78701,5111:352:4,-112.5,-15.5,0,0,-0.13605 -78702,5111:352:3,-112,-15.5,0,0,-0.13605 -78703,5111:351:4,-111.5,-15.5,0,0,-0.13605 -78704,5111:351:3,-111,-15.5,0,0,-0.13605 -78705,5111:350:4,-110.5,-15.5,0,0,-0.13605 -78706,5111:350:3,-110,-15.5,0,0,-0.13605 -78707,5110:459:4,-109.5,-15.5,0,0,-0.13605 -78708,5110:459:3,-109,-15.5,0,0,-0.13605 -78709,5110:458:4,-108.5,-15.5,0,0,-0.13605 -78710,5110:458:3,-108,-15.5,0,0,-0.13605 -78711,5110:457:4,-107.5,-15.5,0,0,-0.13605 -78712,5110:457:3,-107,-15.5,0,0,-0.13605 -78713,5110:456:4,-106.5,-15.5,0,0,-0.13605 -78714,5110:456:3,-106,-15.5,0,0,-0.13605 -78715,5110:455:4,-105.5,-15.5,0,0,-0.13605 -78716,5110:455:3,-105,-15.5,0,0,-0.13605 -78717,5110:354:4,-104.5,-15.5,0,0,-0.13605 -78718,5110:354:3,-104,-15.5,0,0,-0.13605 -78719,5110:353:4,-103.5,-15.5,0,0,-0.13605 -78720,5110:353:3,-103,-15.5,0,0,-0.13605 -78721,5110:352:4,-102.5,-15.5,0,0,-0.13605 -78722,5110:352:3,-102,-15.5,0,0,-0.13605 -78723,5110:351:4,-101.5,-15.5,0,0,-0.13605 -78724,5110:351:3,-101,-15.5,0,0,-0.13605 -78725,5110:350:4,-100.5,-15.5,0,0,-0.13605 -78726,5110:350:3,-100,-15.5,0,0,-0.13605 -78727,5109:459:4,-99.5,-15.5,0,0,-0.13605 -78728,5109:459:3,-99,-15.5,0,0,-0.13605 -78729,5109:458:4,-98.5,-15.5,0,0,-0.13605 -78730,5109:458:3,-98,-15.5,0,0,-0.13605 -78731,5109:457:4,-97.5,-15.5,0,0,-0.13605 -78732,5109:457:3,-97,-15.5,0,0,-0.13605 -78733,5109:456:4,-96.5,-15.5,0,0,-0.13605 -78734,5109:456:3,-96,-15.5,0,0,-0.13605 -78735,5109:455:4,-95.5,-15.5,0,0,-0.13605 -78736,5109:455:3,-95,-15.5,0,0,-0.13605 -78737,5109:354:4,-94.5,-15.5,0,0,-0.13605 -78738,5109:354:3,-94,-15.5,0,0,-0.13605 -78739,5109:353:4,-93.5,-15.5,0,0,-0.13605 -78740,5109:353:3,-93,-15.5,0,0,-0.13605 -78741,5109:352:4,-92.5,-15.5,0,0,-0.13605 -78742,5109:352:3,-92,-15.5,0,0,-0.13605 -78743,5109:351:4,-91.5,-15.5,0,0,-0.13605 -78744,5109:351:3,-91,-15.5,0,0,-0.13605 -78745,5109:350:4,-90.5,-15.5,0,0,-0.13605 -78746,5109:350:3,-90,-15.5,0,0,-0.13605 -78747,5108:459:4,-89.5,-15.5,0,0,-0.13605 -78748,5108:459:3,-89,-15.5,0,0,-0.13605 -78749,5108:458:4,-88.5,-15.5,0,0,-0.13605 -78750,5108:458:3,-88,-15.5,0,0,-0.13605 -78751,5108:457:4,-87.5,-15.5,0,0,-0.13605 -78752,5108:457:3,-87,-15.5,0,0,-0.13605 -78753,5108:456:4,-86.5,-15.5,0,0,-0.13605 -78754,5108:456:3,-86,-15.5,0,0,-0.13605 -78755,5108:455:4,-85.5,-15.5,0,0,-0.13605 -78756,5108:455:3,-85,-15.5,0,0,-0.13605 -78757,5108:354:4,-84.5,-15.5,0,0,-0.13605 -78758,5108:354:3,-84,-15.5,0,0,-0.13605 -78759,5108:353:4,-83.5,-15.5,0,0,-0.13605 -78760,5108:353:3,-83,-15.5,0,0,-0.13605 -78761,5108:352:4,-82.5,-15.5,0,0,-0.13605 -78762,5108:352:3,-82,-15.5,0,0,-0.13605 -78763,5108:351:4,-81.5,-15.5,0,0,-0.13605 -78764,5108:351:3,-81,-15.5,0,0,-0.13605 -78765,5108:350:4,-80.5,-15.5,0,0,-0.13605 -78766,5108:350:3,-80,-15.5,0,0,-0.13605 -78767,5107:459:4,-79.5,-15.5,0,0,-0.13605 -78768,5107:459:3,-79,-15.5,0,0,-0.13605 -78769,5107:458:4,-78.5,-15.5,0,0,-0.13605 -78770,5107:458:3,-78,-15.5,0,0,-0.13605 -78771,5107:457:4,-77.5,-15.5,0,0,-0.13605 -78772,5107:457:3,-77,-15.5,0,0,-0.13605 -78773,5107:456:4,-76.5,-15.5,0,0,-0.13605 -78774,5107:456:3,-76,-15.5,0,0,-0.13605 -78775,5107:455:4,-75.5,-15.5,0,0,-0.13605 -78776,5107:455:3,-75,-15.5,0,0,-0.13605 -78777,5107:354:4,-74.5,-15.5,0,0,-0.13605 -78778,5107:354:3,-74,-15.5,0,0,-0.13605 -78779,5107:353:4,-73.5,-15.5,0,0,-0.13605 -78780,5107:353:3,-73,-15.5,0,0,-0.13605 -78781,5107:352:4,-72.5,-15.5,0,0,-0.13605 -78782,5107:352:3,-72,-15.5,0,0,-0.13605 -78783,5107:351:4,-71.5,-15.5,0,0,-0.13605 -78784,5107:351:3,-71,-15.5,0,0,-0.13605 -78785,5107:350:4,-70.5,-15.5,0,0,-0.13605 -78786,5104:350:3,-40,-15.5,0,0,-0.177937 -78787,5103:459:4,-39.5,-15.5,0,0,-0.187648 -78788,5103:459:3,-39,-15.5,0,0,-0.184653 -78789,5103:458:4,-38.5,-15.5,0,0,-0.175656 -78790,5103:458:3,-38,-15.5,0,0,-0.179327 -78791,5103:457:4,-37.5,-15.5,0,0,-0.181133 -78792,5103:457:3,-37,-15.5,0,0,-0.179477 -78793,5103:456:4,-36.5,-15.5,0,0,-0.178755 -78794,5103:456:3,-36,-15.5,0,0,-0.178904 -78795,5103:455:4,-35.5,-15.5,0,0,-0.180177 -78796,5103:455:3,-35,-15.5,0,0,-0.180554 -78797,5103:354:4,-34.5,-15.5,0,0,-0.180028 -78798,5103:354:3,-34,-15.5,0,0,-0.17883 -78799,5103:353:4,-33.5,-15.5,0,0,-0.177567 -78800,5103:353:3,-33,-15.5,0,0,-0.176559 -78801,5103:352:4,-32.5,-15.5,0,0,-0.17568 -78802,5103:352:3,-32,-15.5,0,0,-0.174709 -78803,5103:351:4,-31.5,-15.5,0,0,-0.172953 -78804,5103:351:3,-31,-15.5,0,0,-0.171121 -78805,5103:350:4,-30.5,-15.5,0,0,-0.169243 -78806,5103:350:3,-30,-15.5,0,0,-0.167296 -78807,5102:459:4,-29.5,-15.5,0,0,-0.165351 -78808,5102:459:3,-29,-15.5,0,0,-0.163097 -78809,5102:458:4,-28.5,-15.5,0,0,-0.16024 -78810,5102:458:3,-28,-15.5,0,0,-0.155562 -78811,5102:457:4,-27.5,-15.5,0,0,-0.149652 -78812,5102:457:3,-27,-15.5,0,0,-0.144402 -78813,5102:456:4,-26.5,-15.5,0,0,-0.142354 -78814,5102:456:3,-26,-15.5,0,0,-0.141703 -78815,5102:455:4,-25.5,-15.5,0,0,-0.141627 -78816,5102:455:3,-25,-15.5,0,0,-0.14157 -78817,5102:354:4,-24.5,-15.5,0,0,-0.14178 -78818,5102:354:3,-24,-15.5,0,0,-0.14176 -78819,5102:353:4,-23.5,-15.5,0,0,-0.141379 -78820,5102:353:3,-23,-15.5,0,0,-0.140848 -78821,5102:352:4,-22.5,-15.5,0,0,-0.139866 -78822,5102:352:3,-22,-15.5,0,0,-0.138546 -78823,5102:351:4,-21.5,-15.5,0,0,-0.13722 -78824,5102:351:3,-21,-15.5,0,0,-0.136243 -78825,5102:350:4,-20.5,-15.5,0,0,-0.13605 -78826,5102:350:3,-20,-15.5,0,0,-0.13605 -78827,5101:459:4,-19.5,-15.5,0,0,-0.13605 -78828,5101:459:3,-19,-15.5,0,0,-0.13605 -78829,5101:458:4,-18.5,-15.5,0,0,-0.13605 -78830,5101:458:3,-18,-15.5,0,0,-0.13605 -78831,5101:457:4,-17.5,-15.5,0,0,-0.13605 -78832,5101:457:3,-17,-15.5,0,0,-0.13605 -78833,5101:456:4,-16.5,-15.5,0,0,-0.13605 -78834,5101:456:3,-16,-15.5,0,0,-0.13605 -78835,5101:455:4,-15.5,-15.5,0,0,-0.13605 -78836,5101:455:3,-15,-15.5,0,0,-0.13605 -78837,5101:354:4,-14.5,-15.5,0,0,-0.13605 -78838,5101:354:3,-14,-15.5,0,0,-0.13605 -78839,5101:353:4,-13.5,-15.5,0,0,-0.13605 -78840,5101:353:3,-13,-15.5,0,0,-0.13605 -78841,5101:352:4,-12.5,-15.5,0,0,-0.13605 -78842,5101:352:3,-12,-15.5,0,0,-0.13605 -78843,5101:351:4,-11.5,-15.5,0,0,-0.13605 -78844,5101:351:3,-11,-15.5,0,0,-0.13605 -78845,5101:350:4,-10.5,-15.5,0,0,-0.13605 -78846,5101:350:3,-10,-15.5,0,0,-0.13605 -78847,5100:459:4,-9.5,-15.5,0,0,-0.13605 -78848,5100:459:3,-9,-15.5,0,0,-0.13605 -78849,5100:458:4,-8.5,-15.5,0,0,-0.13605 -78850,5100:458:3,-8,-15.5,0,0,-0.13605 -78851,5100:457:4,-7.5,-15.5,0,0,-0.13605 -78852,5100:457:3,-7,-15.5,0,0,-0.13605 -78853,5100:456:4,-6.5,-15.5,0,0,-0.13605 -78854,5100:456:3,-6,-15.5,0,0,-0.13605 -78855,5100:455:4,-5.5,-15.5,0,0,-0.13605 -78856,5100:455:3,-5,-15.5,0,0,-0.13605 -78857,5100:354:4,-4.5,-15.5,0,0,-0.13605 -78858,5100:354:3,-4,-15.5,0,0,-0.13605 -78859,5100:353:4,-3.5,-15.5,0,0,-0.13605 -78860,5100:353:3,-3,-15.5,0,0,-0.13605 -78861,5100:352:4,-2.5,-15.5,0,0,-0.13605 -78862,5100:352:3,-2,-15.5,0,0,-0.13605 -78863,5100:351:4,-1.5,-15.5,0,0,-0.13605 -78864,5100:351:3,-1,-15.5,0,0,-0.13605 -78865,5100:350:4,-0.5,-15.5,0,0,-0.13605 -78866,3100:350:4,0,-15.5,0,0,-0.13605 -78867,3100:350:4,0.5,-15.5,0,0,-0.13605 -78868,3100:351:3,1,-15.5,0,0,-0.13605 -78869,3100:351:4,1.5,-15.5,0,0,-0.13605 -78870,3100:352:3,2,-15.5,0,0,-0.13605 -78871,3100:352:4,2.5,-15.5,0,0,-0.13605 -78872,3100:353:3,3,-15.5,0,0,-0.13605 -78873,3100:353:4,3.5,-15.5,0,0,-0.13605 -78874,3100:354:3,4,-15.5,0,0,-0.13605 -78875,3100:354:4,4.5,-15.5,0,0,-0.13605 -78876,3100:455:3,5,-15.5,0,0,-0.13605 -78877,3100:455:4,5.5,-15.5,0,0,-0.13605 -78878,3100:456:3,6,-15.5,0,0,-0.13605 -78879,3100:456:4,6.5,-15.5,0,0,-0.13605 -78880,3100:457:3,7,-15.5,0,0,-0.13605 -78881,3100:457:4,7.5,-15.5,0,0,-0.13605 -78882,3100:458:3,8,-15.5,0,0,-0.13605 -78883,3100:458:4,8.5,-15.5,0,0,-0.13605 -78884,3100:459:3,9,-15.5,0,0,-0.13605 -78885,3100:459:4,9.5,-15.5,0,0,-0.13605 -78886,3101:350:3,10,-15.5,0,0,-0.13605 -78887,3101:350:4,10.5,-15.5,0,0,-0.13605 -78888,3101:351:3,11,-15.5,0,0,-0.13605 -78889,3101:351:4,11.5,-15.5,0,0,-0.13605 -78890,3101:352:3,12,-15.5,0,0,-0.13605 -78891,3101:352:4,12.5,-15.5,0,0,-0.13605 -78892,3103:455:4,35.5,-15.5,0,0,-0.228501 -78893,3103:456:3,36,-15.5,0,0,-0.311063 -78894,3103:456:4,36.5,-15.5,0,0,-0.255578 -78895,3103:457:3,37,-15.5,0,0,-0.254395 -78896,3103:457:4,37.5,-15.5,0,0,-0.604136 -78897,3103:458:3,38,-15.5,0,0,-0.21371 -78898,3103:458:4,38.5,-15.5,0,0,-0.194261 -78899,3103:459:3,39,-15.5,0,0,-0.208914 -78900,3103:459:4,39.5,-15.5,0,0,-0.31666 -78901,3104:350:3,40,-15.5,0,0,-0.569634 -78902,3104:350:4,40.5,-15.5,0,0,-1.14351 -78903,3104:351:3,41,-15.5,0,0,-3.18486 -78904,3104:351:4,41.5,-15.5,0,0,2.82273 -78905,3104:352:3,42,-15.5,0,0,1.5469 -78906,3104:352:4,42.5,-15.5,0,0,1.36564 -78907,3104:353:3,43,-15.5,0,0,1.29646 -78908,3104:353:4,43.5,-15.5,0,0,1.22992 -78909,3104:354:3,44,-15.5,0,0,1.12529 -78910,3104:459:3,49,-15.5,0,0,-0.185974 -78911,3104:459:4,49.5,-15.5,0,0,-0.173695 -78912,3105:350:3,50,-15.5,0,0,-0.16778 -78913,3105:350:4,50.5,-15.5,0,0,-0.164717 -78914,3105:351:3,51,-15.5,0,0,-0.164017 -78915,3105:351:4,51.5,-15.5,0,0,-0.163545 -78916,3105:352:3,52,-15.5,0,0,-0.162584 -78917,3105:352:4,52.5,-15.5,0,0,-0.16216 -78918,3105:353:3,53,-15.5,0,0,-0.162851 -78919,3105:353:4,53.5,-15.5,0,0,-0.163815 -78920,3105:354:3,54,-15.5,0,0,-0.163905 -78921,3105:354:4,54.5,-15.5,0,0,-0.163635 -78922,3105:455:3,55,-15.5,0,0,-0.163635 -78923,3105:455:4,55.5,-15.5,0,0,-0.163433 -78924,3105:456:3,56,-15.5,0,0,-0.162963 -78925,3105:456:4,56.5,-15.5,0,0,-0.161894 -78926,3105:457:3,57,-15.5,0,0,-0.160745 -78927,3105:457:4,57.5,-15.5,0,0,-0.159584 -78928,3105:458:3,58,-15.5,0,0,-0.157871 -78929,3105:458:4,58.5,-15.5,0,0,-0.156327 -78930,3105:459:3,59,-15.5,0,0,-0.156434 -78931,3105:459:4,59.5,-15.5,0,0,-0.155245 -78932,3106:350:3,60,-15.5,0,0,-0.152481 -78933,3106:350:4,60.5,-15.5,0,0,-0.151923 -78934,3106:351:3,61,-15.5,0,0,-0.153042 -78935,3106:351:4,61.5,-15.5,0,0,-0.150772 -78936,3106:352:3,62,-15.5,0,0,-0.14722 -78937,3106:352:4,62.5,-15.5,0,0,-0.145479 -78938,3106:353:3,63,-15.5,0,0,-0.146247 -78939,3106:353:4,63.5,-15.5,0,0,-0.144091 -78940,3106:354:3,64,-15.5,0,0,-0.141913 -78941,3106:354:4,64.5,-15.5,0,0,-0.140962 -78942,3106:455:3,65,-15.5,0,0,-0.139678 -78943,3106:455:4,65.5,-15.5,0,0,-0.139122 -78944,3106:456:3,66,-15.5,0,0,-0.139585 -78945,3106:456:4,66.5,-15.5,0,0,-0.140904 -78946,3106:457:3,67,-15.5,0,0,-0.140356 -78947,3106:457:4,67.5,-15.5,0,0,-0.140017 -78948,3106:458:3,68,-15.5,0,0,-0.139585 -78949,3106:458:4,68.5,-15.5,0,0,-0.137739 -78950,3106:459:3,69,-15.5,0,0,-0.137287 -78951,3106:459:4,69.5,-15.5,0,0,-0.13605 -78952,3107:350:3,70,-15.5,0,0,-0.13605 -78953,3107:350:4,70.5,-15.5,0,0,-0.13605 -78954,3107:351:3,71,-15.5,0,0,-0.13605 -78955,3107:351:4,71.5,-15.5,0,0,-0.136064 -78956,3107:352:3,72,-15.5,0,0,-0.13605 -78957,3107:352:4,72.5,-15.5,0,0,-0.13605 -78958,3107:353:4,73.5,-15.5,0,0,-0.13605 -78959,3107:354:3,74,-15.5,0,0,-0.13605 -78960,3107:354:4,74.5,-15.5,0,0,-0.13605 -78961,3107:455:3,75,-15.5,0,0,-0.13605 -78962,3107:455:4,75.5,-15.5,0,0,-0.13605 -78963,3107:456:3,76,-15.5,0,0,-0.13605 -78964,3107:456:4,76.5,-15.5,0,0,-0.13605 -78965,3107:457:3,77,-15.5,0,0,-0.13605 -78966,3107:457:4,77.5,-15.5,0,0,-0.13605 -78967,3107:458:3,78,-15.5,0,0,-0.13605 -78968,3107:458:4,78.5,-15.5,0,0,-0.13605 -78969,3107:459:3,79,-15.5,0,0,-0.13605 -78970,3107:459:4,79.5,-15.5,0,0,-0.13605 -78971,3108:350:3,80,-15.5,0,0,-0.13605 -78972,3108:350:4,80.5,-15.5,0,0,-0.13605 -78973,3108:351:3,81,-15.5,0,0,-0.13605 -78974,3108:351:4,81.5,-15.5,0,0,-0.13605 -78975,3108:352:3,82,-15.5,0,0,-0.13605 -78976,3108:352:4,82.5,-15.5,0,0,-0.13605 -78977,3108:353:3,83,-15.5,0,0,-0.13605 -78978,3108:353:4,83.5,-15.5,0,0,-0.13605 -78979,3108:354:3,84,-15.5,0,0,-0.13605 -78980,3108:354:4,84.5,-15.5,0,0,-0.13605 -78981,3108:455:3,85,-15.5,0,0,-0.13605 -78982,3108:455:4,85.5,-15.5,0,0,-0.13605 -78983,3108:456:3,86,-15.5,0,0,-0.13605 -78984,3108:456:4,86.5,-15.5,0,0,-0.13605 -78985,3108:457:3,87,-15.5,0,0,-0.13605 -78986,3108:457:4,87.5,-15.5,0,0,-0.13605 -78987,3108:458:3,88,-15.5,0,0,-0.13605 -78988,3108:458:4,88.5,-15.5,0,0,-0.13605 -78989,3108:459:3,89,-15.5,0,0,-0.13605 -78990,3108:459:4,89.5,-15.5,0,0,-0.13605 -78991,3109:350:3,90,-15.5,0,0,-0.13605 -78992,3109:350:4,90.5,-15.5,0,0,-0.13605 -78993,3109:351:3,91,-15.5,0,0,-0.13605 -78994,3109:351:4,91.5,-15.5,0,0,-0.13605 -78995,3109:352:3,92,-15.5,0,0,-0.13605 -78996,3109:352:4,92.5,-15.5,0,0,-0.13605 -78997,3109:353:3,93,-15.5,0,0,-0.13605 -78998,3109:353:4,93.5,-15.5,0,0,-0.13605 -78999,3109:354:3,94,-15.5,0,0,-0.13605 -79000,3109:354:4,94.5,-15.5,0,0,-0.13605 -79001,3109:455:3,95,-15.5,0,0,-0.13605 -79002,3109:455:4,95.5,-15.5,0,0,-0.13605 -79003,3109:456:3,96,-15.5,0,0,-0.13605 -79004,3109:456:4,96.5,-15.5,0,0,-0.13605 -79005,3109:457:3,97,-15.5,0,0,-0.13605 -79006,3109:457:4,97.5,-15.5,0,0,-0.13605 -79007,3109:458:3,98,-15.5,0,0,-0.13605 -79008,3109:458:4,98.5,-15.5,0,0,-0.13605 -79009,3109:459:3,99,-15.5,0,0,-0.13605 -79010,3109:459:4,99.5,-15.5,0,0,-0.13605 -79011,3110:350:3,100,-15.5,0,0,-0.13605 -79012,3110:350:4,100.5,-15.5,0,0,-0.13605 -79013,3110:351:3,101,-15.5,0,0,-0.13605 -79014,3110:351:4,101.5,-15.5,0,0,-0.13605 -79015,3110:352:3,102,-15.5,0,0,-0.13605 -79016,3110:352:4,102.5,-15.5,0,0,-0.13605 -79017,3110:353:3,103,-15.5,0,0,-0.13605 -79018,3110:353:4,103.5,-15.5,0,0,-0.13605 -79019,3110:354:3,104,-15.5,0,0,-0.13605 -79020,3110:354:4,104.5,-15.5,0,0,-0.13605 -79021,3110:455:3,105,-15.5,0,0,-0.13605 -79022,3110:455:4,105.5,-15.5,0,0,-0.13605 -79023,3110:456:3,106,-15.5,0,0,-0.13605 -79024,3110:456:4,106.5,-15.5,0,0,-0.13605 -79025,3110:457:3,107,-15.5,0,0,-0.13605 -79026,3110:457:4,107.5,-15.5,0,0,-0.13605 -79027,3110:458:3,108,-15.5,0,0,-0.13605 -79028,3110:458:4,108.5,-15.5,0,0,-0.13605 -79029,3110:459:3,109,-15.5,0,0,-0.13605 -79030,3110:459:4,109.5,-15.5,0,0,-0.136154 -79031,3111:350:3,110,-15.5,0,0,-0.14155 -79032,3111:350:4,110.5,-15.5,0,0,-0.139566 -79033,3111:351:3,111,-15.5,0,0,-0.139326 -79034,3111:351:4,111.5,-15.5,0,0,-0.140431 -79035,3111:352:3,112,-15.5,0,0,-0.146742 -79036,3111:352:4,112.5,-15.5,0,0,-0.15729 -79037,3111:353:3,113,-15.5,0,0,-0.166172 -79038,3111:353:4,113.5,-15.5,0,0,-0.157312 -79039,3111:354:3,114,-15.5,0,0,-0.16185 -79040,3111:354:4,114.5,-15.5,0,0,-0.16592 -79041,3111:455:3,115,-15.5,0,0,-0.170414 -79042,3111:455:4,115.5,-15.5,0,0,-0.170156 -79043,3111:456:3,116,-15.5,0,0,-0.172713 -79044,3111:456:4,116.5,-15.5,0,0,-0.177001 -79045,3111:457:3,117,-15.5,0,0,-0.182578 -79046,3111:457:4,117.5,-15.5,0,0,-0.186365 -79047,3111:458:3,118,-15.5,0,0,-0.190057 -79048,3111:458:4,118.5,-15.5,0,0,-0.192917 -79049,3111:459:3,119,-15.5,0,0,-0.294027 -79050,3111:459:4,119.5,-15.5,0,0,-1.55304 -79051,3112:350:3,120,-15.5,0,0,-0.590007 -79052,3112:350:4,120.5,-15.5,0,0,-1.30036 -79053,3112:351:3,121,-15.5,0,0,-8.07899 -79054,3114:458:3,148,-15.5,0,0,-0.183523 -79055,3114:458:4,148.5,-15.5,0,0,-0.175218 -79056,3114:459:3,149,-15.5,0,0,-0.169734 -79057,3114:459:4,149.5,-15.5,0,0,-0.168127 -79058,3115:350:3,150,-15.5,0,0,-0.167503 -79059,3115:350:4,150.5,-15.5,0,0,-0.17018 -79060,3115:351:3,151,-15.5,0,0,-0.169594 -79061,3115:351:4,151.5,-15.5,0,0,-0.164355 -79062,3115:352:3,152,-15.5,0,0,-0.158822 -79063,3115:352:4,152.5,-15.5,0,0,-0.156434 -79064,3115:353:3,153,-15.5,0,0,-0.15478 -79065,3115:353:4,153.5,-15.5,0,0,-0.155245 -79066,3115:354:3,154,-15.5,0,0,-0.151779 -79067,3115:354:4,154.5,-15.5,0,0,-0.149733 -79068,3115:455:3,155,-15.5,0,0,-0.149024 -79069,3115:455:4,155.5,-15.5,0,0,-0.150568 -79070,3115:456:3,156,-15.5,0,0,-0.151965 -79071,3115:456:4,156.5,-15.5,0,0,-0.151841 -79072,3115:457:3,157,-15.5,0,0,-0.155287 -79073,3115:457:4,157.5,-15.5,0,0,-0.158562 -79074,3115:458:3,158,-15.5,0,0,-0.158649 -79075,3115:458:4,158.5,-15.5,0,0,-0.152564 -79076,3115:459:3,159,-15.5,0,0,-0.147839 -79077,3115:459:4,159.5,-15.5,0,0,-0.143916 -79078,3116:350:3,160,-15.5,0,0,-0.154844 -79079,3116:350:4,160.5,-15.5,0,0,-0.159453 -79080,3116:351:3,161,-15.5,0,0,-0.156349 -79081,3116:351:4,161.5,-15.5,0,0,-0.154527 -79082,3116:352:3,162,-15.5,0,0,-0.152502 -79083,3116:352:4,162.5,-15.5,0,0,-0.151408 -79084,3116:353:3,163,-15.5,0,0,-0.147999 -79085,3116:353:4,163.5,-15.5,0,0,-0.145991 -79086,3116:354:3,164,-15.5,0,0,-0.148923 -79087,3116:354:4,164.5,-15.5,0,0,-0.145991 -79088,3116:455:3,165,-15.5,0,0,-0.144285 -79089,3116:455:4,165.5,-15.5,0,0,-0.145479 -79090,3116:456:3,166,-15.5,0,0,-0.143955 -79091,3116:456:4,166.5,-15.5,0,0,-0.143819 -79092,3116:457:3,167,-15.5,0,0,-0.146227 -79093,3116:457:4,167.5,-15.5,0,0,-0.1438 -79094,3116:458:3,168,-15.5,0,0,-0.142066 -79095,3116:458:4,168.5,-15.5,0,0,-0.140507 -79096,3116:459:3,169,-15.5,0,0,-0.14013 -79097,3116:459:4,169.5,-15.5,0,0,-0.138902 -79098,3117:350:3,170,-15.5,0,0,-0.13717 -79099,3117:350:4,170.5,-15.5,0,0,-0.137705 -79100,3117:351:3,171,-15.5,0,0,-0.137705 -79101,3117:351:4,171.5,-15.5,0,0,-0.138075 -79102,3117:352:3,172,-15.5,0,0,-0.140526 -79103,3117:352:4,172.5,-15.5,0,0,-0.140261 -79104,3117:353:3,173,-15.5,0,0,-0.137103 -79105,3117:353:4,173.5,-15.5,0,0,-0.13605 -79106,3117:354:3,174,-15.5,0,0,-0.136188 -79107,3117:354:4,174.5,-15.5,0,0,-0.136221 -79108,3117:455:3,175,-15.5,0,0,-0.139791 -79109,3117:455:4,175.5,-15.5,0,0,-0.140149 -79110,3117:456:3,176,-15.5,0,0,-0.137137 -79111,3117:456:4,176.5,-15.5,0,0,-0.136804 -79112,3117:457:3,177,-15.5,0,0,-0.137873 -79113,3117:457:4,177.5,-15.5,0,0,-0.137538 -79114,3117:458:3,178,-15.5,0,0,-0.136382 -79115,3117:458:4,178.5,-15.5,0,0,-0.136188 -79116,3117:459:3,179,-15.5,0,0,-0.137387 -79117,3117:459:4,179.5,-15.5,0,0,-0.13605 -79118,3118:350:3,180,-15.5,0,0,-0.13605 -79119,5118:350:1,-180,-15,0,0,-0.13727 -79120,5117:459:2,-179.5,-15,0,0,-0.139397 -79121,5117:459:1,-179,-15,0,0,-0.137404 -79122,5117:458:2,-178.5,-15,0,0,-0.136524 -79123,5117:458:1,-178,-15,0,0,-0.136382 -79124,5117:457:2,-177.5,-15,0,0,-0.13727 -79125,5117:457:1,-177,-15,0,0,-0.137137 -79126,5117:456:2,-176.5,-15,0,0,-0.141646 -79127,5117:456:1,-176,-15,0,0,-0.143161 -79128,5117:455:2,-175.5,-15,0,0,-0.14347 -79129,5117:455:1,-175,-15,0,0,-0.144656 -79130,5117:354:2,-174.5,-15,0,0,-0.144636 -79131,5117:354:1,-174,-15,0,0,-0.141932 -79132,5117:353:2,-173.5,-15,0,0,-0.141589 -79133,5117:353:1,-173,-15,0,0,-0.143548 -79134,5117:352:2,-172.5,-15,0,0,-0.142526 -79135,5117:352:1,-172,-15,0,0,-0.143994 -79136,5117:351:2,-171.5,-15,0,0,-0.14349 -79137,5117:351:1,-171,-15,0,0,-0.143936 -79138,5117:350:2,-170.5,-15,0,0,-0.145106 -79139,5117:350:1,-170,-15,0,0,-0.144598 -79140,5116:459:2,-169.5,-15,0,0,-0.145715 -79141,5116:459:1,-169,-15,0,0,-0.14714 -79142,5116:458:2,-168.5,-15,0,0,-0.145518 -79143,5116:458:1,-168,-15,0,0,-0.145636 -79144,5116:457:2,-167.5,-15,0,0,-0.147598 -79145,5116:457:1,-167,-15,0,0,-0.147379 -79146,5116:456:2,-166.5,-15,0,0,-0.146762 -79147,5116:456:1,-166,-15,0,0,-0.147819 -79148,5116:455:2,-165.5,-15,0,0,-0.148461 -79149,5116:455:1,-165,-15,0,0,-0.150814 -79150,5116:354:2,-164.5,-15,0,0,-0.154422 -79151,5116:354:1,-164,-15,0,0,-0.154759 -79152,5116:353:2,-163.5,-15,0,0,-0.152834 -79153,5116:353:1,-163,-15,0,0,-0.152481 -79154,5116:352:2,-162.5,-15,0,0,-0.154612 -79155,5116:352:1,-162,-15,0,0,-0.155987 -79156,5116:351:2,-161.5,-15,0,0,-0.15684 -79157,5116:351:1,-161,-15,0,0,-0.158238 -79158,5116:350:2,-160.5,-15,0,0,-0.159344 -79159,5116:350:1,-160,-15,0,0,-0.160635 -79160,5115:459:2,-159.5,-15,0,0,-0.162338 -79161,5115:459:1,-159,-15,0,0,-0.164785 -79162,5115:458:2,-158.5,-15,0,0,-0.16829 -79163,5115:458:1,-158,-15,0,0,-0.171169 -79164,5115:457:2,-157.5,-15,0,0,-0.171571 -79165,5115:457:1,-157,-15,0,0,-0.170556 -79166,5115:456:2,-156.5,-15,0,0,-0.170932 -79167,5115:456:1,-156,-15,0,0,-0.172665 -79168,5115:455:2,-155.5,-15,0,0,-0.174202 -79169,5115:455:1,-155,-15,0,0,-0.175485 -79170,5115:354:2,-154.5,-15,0,0,-0.176266 -79171,5115:354:1,-154,-15,0,0,-0.176632 -79172,5115:353:2,-153.5,-15,0,0,-0.177444 -79173,5115:353:1,-153,-15,0,0,-0.179302 -79174,5115:352:2,-152.5,-15,0,0,-0.181437 -79175,5115:352:1,-152,-15,0,0,-0.183215 -79176,5115:351:2,-151.5,-15,0,0,-0.186079 -79177,5115:351:1,-151,-15,0,0,-0.188253 -79178,5115:350:2,-150.5,-15,0,0,-0.188491 -79179,5115:350:1,-150,-15,0,0,-0.188095 -79180,5114:459:2,-149.5,-15,0,0,-0.186392 -79181,5114:459:1,-149,-15,0,0,-0.185845 -79182,5114:458:2,-148.5,-15,0,0,-0.186418 -79183,5114:458:1,-148,-15,0,0,-0.187332 -79184,5114:457:2,-147.5,-15,0,0,-0.187674 -79185,5114:457:1,-147,-15,0,0,-0.187805 -79186,5114:456:2,-146.5,-15,0,0,-0.187779 -79187,5114:456:1,-146,-15,0,0,-0.187097 -79188,5114:455:2,-145.5,-15,0,0,-0.185766 -79189,5114:455:1,-145,-15,0,0,-0.184293 -79190,5114:354:2,-144.5,-15,0,0,-0.1836 -79191,5114:354:1,-144,-15,0,0,-0.183395 -79192,5114:353:2,-143.5,-15,0,0,-0.1836 -79193,5114:353:1,-143,-15,0,0,-0.18419 -79194,5114:352:2,-142.5,-15,0,0,-0.183369 -79195,5114:352:1,-142,-15,0,0,-0.181993 -79196,5114:351:2,-141.5,-15,0,0,-0.183165 -79197,5114:351:1,-141,-15,0,0,-0.183318 -79198,5114:350:2,-140.5,-15,0,0,-0.183063 -79199,5114:350:1,-140,-15,0,0,-0.182833 -79200,5113:459:2,-139.5,-15,0,0,-0.182171 -79201,5113:459:1,-139,-15,0,0,-0.181613 -79202,5113:458:2,-138.5,-15,0,0,-0.181083 -79203,5113:458:1,-138,-15,0,0,-0.180052 -79204,5113:457:2,-137.5,-15,0,0,-0.179927 -79205,5113:457:1,-137,-15,0,0,-0.180655 -79206,5113:456:2,-136.5,-15,0,0,-0.181209 -79207,5113:456:1,-136,-15,0,0,-0.181058 -79208,5113:455:2,-135.5,-15,0,0,-0.180479 -79209,5113:455:1,-135,-15,0,0,-0.179452 -79210,5113:354:2,-134.5,-15,0,0,-0.178581 -79211,5113:354:1,-134,-15,0,0,-0.177838 -79212,5113:353:2,-133.5,-15,0,0,-0.177444 -79213,5113:353:1,-133,-15,0,0,-0.177369 -79214,5113:352:2,-132.5,-15,0,0,-0.177247 -79215,5113:352:1,-132,-15,0,0,-0.176707 -79216,5113:351:2,-131.5,-15,0,0,-0.175559 -79217,5113:351:1,-131,-15,0,0,-0.173792 -79218,5113:350:2,-130.5,-15,0,0,-0.172023 -79219,5113:350:1,-130,-15,0,0,-0.170438 -79220,5112:459:2,-129.5,-15,0,0,-0.169196 -79221,5112:459:1,-129,-15,0,0,-0.1688 -79222,5112:458:2,-128.5,-15,0,0,-0.169383 -79223,5112:458:1,-128,-15,0,0,-0.1695 -79224,5112:457:2,-127.5,-15,0,0,-0.167826 -79225,5112:457:1,-127,-15,0,0,-0.165056 -79226,5112:456:2,-126.5,-15,0,0,-0.165147 -79227,5112:456:1,-126,-15,0,0,-0.167158 -79228,5112:455:2,-125.5,-15,0,0,-0.165784 -79229,5112:455:1,-125,-15,0,0,-0.163792 -79230,5112:354:2,-124.5,-15,0,0,-0.163994 -79231,5112:354:1,-124,-15,0,0,-0.165511 -79232,5112:353:2,-123.5,-15,0,0,-0.165875 -79233,5112:353:1,-123,-15,0,0,-0.164898 -79234,5112:352:2,-122.5,-15,0,0,-0.164243 -79235,5112:352:1,-122,-15,0,0,-0.16413 -79236,5112:351:2,-121.5,-15,0,0,-0.164785 -79237,5112:351:1,-121,-15,0,0,-0.165488 -79238,5112:350:2,-120.5,-15,0,0,-0.165147 -79239,5112:350:1,-120,-15,0,0,-0.164084 -79240,5111:459:2,-119.5,-15,0,0,-0.162406 -79241,5111:459:1,-119,-15,0,0,-0.160921 -79242,5111:458:2,-118.5,-15,0,0,-0.159366 -79243,5111:458:1,-118,-15,0,0,-0.157806 -79244,5111:457:2,-117.5,-15,0,0,-0.156434 -79245,5111:457:1,-117,-15,0,0,-0.155054 -79246,5111:456:2,-116.5,-15,0,0,-0.15325 -79247,5111:456:1,-116,-15,0,0,-0.150998 -79248,5111:455:2,-115.5,-15,0,0,-0.148762 -79249,5111:455:1,-115,-15,0,0,-0.147061 -79250,5111:354:2,-114.5,-15,0,0,-0.145597 -79251,5111:354:1,-114,-15,0,0,-0.143761 -79252,5111:353:2,-113.5,-15,0,0,-0.14155 -79253,5111:353:1,-113,-15,0,0,-0.139054 -79254,5111:352:2,-112.5,-15,0,0,-0.136615 -79255,5111:352:1,-112,-15,0,0,-0.13605 -79256,5111:351:2,-111.5,-15,0,0,-0.13605 -79257,5111:351:1,-111,-15,0,0,-0.13605 -79258,5111:350:2,-110.5,-15,0,0,-0.13605 -79259,5111:350:1,-110,-15,0,0,-0.13605 -79260,5110:459:2,-109.5,-15,0,0,-0.13605 -79261,5110:459:1,-109,-15,0,0,-0.13605 -79262,5110:458:2,-108.5,-15,0,0,-0.13605 -79263,5110:458:1,-108,-15,0,0,-0.13605 -79264,5110:457:2,-107.5,-15,0,0,-0.13605 -79265,5110:457:1,-107,-15,0,0,-0.13605 -79266,5110:456:2,-106.5,-15,0,0,-0.13605 -79267,5110:456:1,-106,-15,0,0,-0.13605 -79268,5110:455:2,-105.5,-15,0,0,-0.13605 -79269,5110:455:1,-105,-15,0,0,-0.13605 -79270,5110:354:2,-104.5,-15,0,0,-0.13605 -79271,5110:354:1,-104,-15,0,0,-0.13605 -79272,5110:353:2,-103.5,-15,0,0,-0.13605 -79273,5110:353:1,-103,-15,0,0,-0.13605 -79274,5110:352:2,-102.5,-15,0,0,-0.13605 -79275,5110:352:1,-102,-15,0,0,-0.13605 -79276,5110:351:2,-101.5,-15,0,0,-0.13605 -79277,5110:351:1,-101,-15,0,0,-0.13605 -79278,5110:350:2,-100.5,-15,0,0,-0.13605 -79279,5110:350:1,-100,-15,0,0,-0.13605 -79280,5109:459:2,-99.5,-15,0,0,-0.13605 -79281,5109:459:1,-99,-15,0,0,-0.13605 -79282,5109:458:2,-98.5,-15,0,0,-0.13605 -79283,5109:458:1,-98,-15,0,0,-0.13605 -79284,5109:457:2,-97.5,-15,0,0,-0.13605 -79285,5109:457:1,-97,-15,0,0,-0.13605 -79286,5109:456:2,-96.5,-15,0,0,-0.13605 -79287,5109:456:1,-96,-15,0,0,-0.13605 -79288,5109:455:2,-95.5,-15,0,0,-0.13605 -79289,5109:455:1,-95,-15,0,0,-0.13605 -79290,5109:354:2,-94.5,-15,0,0,-0.13605 -82515,5112:226:2,-126.5,-12,0,0,-0.1877 -79291,5109:354:1,-94,-15,0,0,-0.13605 -79292,5109:353:2,-93.5,-15,0,0,-0.13605 -79293,5109:353:1,-93,-15,0,0,-0.13605 -79294,5109:352:2,-92.5,-15,0,0,-0.13605 -79295,5109:352:1,-92,-15,0,0,-0.13605 -79296,5109:351:2,-91.5,-15,0,0,-0.13605 -79297,5109:351:1,-91,-15,0,0,-0.13605 -79298,5109:350:2,-90.5,-15,0,0,-0.13605 -79299,5109:350:1,-90,-15,0,0,-0.13605 -79300,5108:459:2,-89.5,-15,0,0,-0.13605 -79301,5108:459:1,-89,-15,0,0,-0.13605 -79302,5108:458:2,-88.5,-15,0,0,-0.13605 -79303,5108:458:1,-88,-15,0,0,-0.13605 -79304,5108:457:2,-87.5,-15,0,0,-0.13605 -79305,5108:457:1,-87,-15,0,0,-0.13605 -79306,5108:456:2,-86.5,-15,0,0,-0.13605 -79307,5108:456:1,-86,-15,0,0,-0.13605 -79308,5108:455:2,-85.5,-15,0,0,-0.13605 -79309,5108:455:1,-85,-15,0,0,-0.13605 -79310,5108:354:2,-84.5,-15,0,0,-0.13605 -79311,5108:354:1,-84,-15,0,0,-0.13605 -79312,5108:353:2,-83.5,-15,0,0,-0.13605 -79313,5108:353:1,-83,-15,0,0,-0.13605 -79314,5108:352:2,-82.5,-15,0,0,-0.13605 -79315,5108:352:1,-82,-15,0,0,-0.13605 -79316,5108:351:2,-81.5,-15,0,0,-0.13605 -79317,5108:351:1,-81,-15,0,0,-0.13605 -79318,5108:350:2,-80.5,-15,0,0,-0.13605 -79319,5108:350:1,-80,-15,0,0,-0.13605 -79320,5107:459:2,-79.5,-15,0,0,-0.13605 -79321,5107:459:1,-79,-15,0,0,-0.13605 -79322,5107:458:2,-78.5,-15,0,0,-0.13605 -79323,5107:458:1,-78,-15,0,0,-0.13605 -79324,5107:457:2,-77.5,-15,0,0,-0.13605 -79325,5107:457:1,-77,-15,0,0,-0.13605 -79326,5107:456:2,-76.5,-15,0,0,-0.13605 -79327,5107:456:1,-76,-15,0,0,-0.13605 -79328,5107:455:2,-75.5,-15,0,0,-0.13605 -79329,5107:455:1,-75,-15,0,0,-0.13605 -79330,5107:354:2,-74.5,-15,0,0,-0.13605 -79331,5107:354:1,-74,-15,0,0,-0.13605 -79332,5107:353:2,-73.5,-15,0,0,-0.13605 -79333,5107:353:1,-73,-15,0,0,-0.13605 -79334,5107:352:2,-72.5,-15,0,0,-0.13605 -79335,5107:352:1,-72,-15,0,0,-0.13605 -79336,5107:351:2,-71.5,-15,0,0,-0.13605 -79337,5107:351:1,-71,-15,0,0,-0.13605 -79338,5107:350:2,-70.5,-15,0,0,-0.13605 -79339,5103:459:2,-39.5,-15,0,0,-0.184524 -79340,5103:459:1,-39,-15,0,0,-0.177124 -79341,5103:458:2,-38.5,-15,0,0,-0.167873 -79342,5103:458:1,-38,-15,0,0,-0.176193 -79343,5103:457:2,-37.5,-15,0,0,-0.181715 -79344,5103:457:1,-37,-15,0,0,-0.178531 -79345,5103:456:2,-36.5,-15,0,0,-0.179302 -79346,5103:456:1,-36,-15,0,0,-0.179054 -79347,5103:455:2,-35.5,-15,0,0,-0.179402 -79348,5103:455:1,-35,-15,0,0,-0.179652 -79349,5103:354:2,-34.5,-15,0,0,-0.178879 -79350,5103:354:1,-34,-15,0,0,-0.177518 -79351,5103:353:2,-33.5,-15,0,0,-0.176535 -79352,5103:353:1,-33,-15,0,0,-0.175485 -79353,5103:352:2,-32.5,-15,0,0,-0.174129 -79354,5103:352:1,-32,-15,0,0,-0.172929 -79355,5103:351:2,-31.5,-15,0,0,-0.17098 -79356,5103:351:1,-31,-15,0,0,-0.16894 -79357,5103:350:2,-30.5,-15,0,0,-0.167066 -79358,5103:350:1,-30,-15,0,0,-0.165011 -79359,5102:459:2,-29.5,-15,0,0,-0.163254 -79360,5102:459:1,-29,-15,0,0,-0.161473 -79361,5102:458:2,-28.5,-15,0,0,-0.158931 -79362,5102:458:1,-28,-15,0,0,-0.155076 -79363,5102:457:2,-27.5,-15,0,0,-0.150058 -79364,5102:457:1,-27,-15,0,0,-0.14495 -79365,5102:456:2,-26.5,-15,0,0,-0.141589 -79366,5102:456:1,-26,-15,0,0,-0.13981 -79367,5102:455:2,-25.5,-15,0,0,-0.139088 -79368,5102:455:1,-25,-15,0,0,-0.13902 -79369,5102:354:2,-24.5,-15,0,0,-0.139359 -79370,5102:354:1,-24,-15,0,0,-0.139528 -79371,5102:353:2,-23.5,-15,0,0,-0.138986 -79372,5102:353:1,-23,-15,0,0,-0.137991 -79373,5102:352:2,-22.5,-15,0,0,-0.136667 -79374,5102:352:1,-22,-15,0,0,-0.136084 -79375,5102:351:2,-21.5,-15,0,0,-0.13605 -79376,5102:351:1,-21,-15,0,0,-0.13605 -79377,5102:350:2,-20.5,-15,0,0,-0.13605 -79378,5102:350:1,-20,-15,0,0,-0.13605 -79379,5101:459:2,-19.5,-15,0,0,-0.13605 -79380,5101:459:1,-19,-15,0,0,-0.13605 -79381,5101:458:2,-18.5,-15,0,0,-0.13605 -79382,5101:458:1,-18,-15,0,0,-0.13605 -79383,5101:457:2,-17.5,-15,0,0,-0.13605 -79384,5101:457:1,-17,-15,0,0,-0.13605 -79385,5101:456:2,-16.5,-15,0,0,-0.13605 -79386,5101:456:1,-16,-15,0,0,-0.13605 -79387,5101:455:2,-15.5,-15,0,0,-0.13605 -79388,5101:455:1,-15,-15,0,0,-0.13605 -79389,5101:354:2,-14.5,-15,0,0,-0.13605 -79390,5101:354:1,-14,-15,0,0,-0.13605 -79391,5101:353:2,-13.5,-15,0,0,-0.13605 -79392,5101:353:1,-13,-15,0,0,-0.13605 -79393,5101:352:2,-12.5,-15,0,0,-0.13605 -79394,5101:352:1,-12,-15,0,0,-0.13605 -79395,5101:351:2,-11.5,-15,0,0,-0.13605 -79396,5101:351:1,-11,-15,0,0,-0.13605 -79397,5101:350:2,-10.5,-15,0,0,-0.13605 -79398,5101:350:1,-10,-15,0,0,-0.13605 -79399,5100:459:2,-9.5,-15,0,0,-0.13605 -79400,5100:459:1,-9,-15,0,0,-0.13605 -79401,5100:458:2,-8.5,-15,0,0,-0.13605 -79402,5100:458:1,-8,-15,0,0,-0.13605 -79403,5100:457:2,-7.5,-15,0,0,-0.13605 -79404,5100:457:1,-7,-15,0,0,-0.13605 -79405,5100:456:2,-6.5,-15,0,0,-0.13605 -79406,5100:456:1,-6,-15,0,0,-0.13605 -79407,5100:455:2,-5.5,-15,0,0,-0.13605 -79408,5100:455:1,-5,-15,0,0,-0.13605 -79409,5100:354:2,-4.5,-15,0,0,-0.13605 -79410,5100:354:1,-4,-15,0,0,-0.13605 -79411,5100:353:2,-3.5,-15,0,0,-0.13605 -79412,5100:353:1,-3,-15,0,0,-0.13605 -79413,5100:352:2,-2.5,-15,0,0,-0.13605 -79414,5100:352:1,-2,-15,0,0,-0.13605 -79415,5100:351:2,-1.5,-15,0,0,-0.13605 -79416,5100:351:1,-1,-15,0,0,-0.13605 -79417,5100:350:2,-0.5,-15,0,0,-0.13605 -79418,3100:350:2,0,-15,0,0,-0.13605 -79419,3100:350:2,0.5,-15,0,0,-0.13605 -79420,3100:351:1,1,-15,0,0,-0.13605 -79421,3100:351:2,1.5,-15,0,0,-0.13605 -79422,3100:352:1,2,-15,0,0,-0.13605 -79423,3100:352:2,2.5,-15,0,0,-0.13605 -79424,3100:353:1,3,-15,0,0,-0.13605 -79425,3100:353:2,3.5,-15,0,0,-0.13605 -79426,3100:354:1,4,-15,0,0,-0.13605 -79427,3100:354:2,4.5,-15,0,0,-0.13605 -79428,3100:455:1,5,-15,0,0,-0.13605 -79429,3100:455:2,5.5,-15,0,0,-0.13605 -79430,3100:456:1,6,-15,0,0,-0.13605 -79431,3100:456:2,6.5,-15,0,0,-0.13605 -79432,3100:457:1,7,-15,0,0,-0.13605 -79433,3100:457:2,7.5,-15,0,0,-0.13605 -79434,3100:458:1,8,-15,0,0,-0.13605 -79435,3100:458:2,8.5,-15,0,0,-0.13605 -79436,3100:459:1,9,-15,0,0,-0.13605 -79437,3100:459:2,9.5,-15,0,0,-0.13605 -79438,3101:350:1,10,-15,0,0,-0.13605 -79439,3101:350:2,10.5,-15,0,0,-0.13605 -79440,3101:351:1,11,-15,0,0,-0.13605 -79441,3101:351:2,11.5,-15,0,0,-0.13605 -79442,3101:352:1,12,-15,0,0,-0.13605 -79443,3103:456:1,36,-15,0,0,-0.807263 -79444,3103:456:2,36.5,-15,0,0,-0.210987 -79445,3103:457:1,37,-15,0,0,-0.237013 -79446,3103:457:2,37.5,-15,0,0,-0.683766 -79447,3103:458:1,38,-15,0,0,-0.515901 -79448,3103:458:2,38.5,-15,0,0,-0.278121 -79449,3103:459:1,39,-15,0,0,-0.300217 -79450,3103:459:2,39.5,-15,0,0,-0.466215 -79451,3104:350:1,40,-15,0,0,-0.752743 -79452,3104:350:2,40.5,-15,0,0,-1.19754 -79453,3104:351:1,41,-15,0,0,-2.83582 -79454,3104:351:2,41.5,-15,0,0,5.9932 -79455,3104:352:1,42,-15,0,0,2.11065 -79456,3104:352:2,42.5,-15,0,0,1.51704 -79457,3104:353:1,43,-15,0,0,1.2994 -79458,3104:353:2,43.5,-15,0,0,1.2208 -79459,3104:354:1,44,-15,0,0,1.1742 -79460,3104:459:1,49,-15,0,0,-0.187438 -79461,3104:459:2,49.5,-15,0,0,-0.18207 -79462,3105:350:1,50,-15,0,0,-0.173552 -79463,3105:350:2,50.5,-15,0,0,-0.169851 -79464,3105:351:1,51,-15,0,0,-0.168428 -79465,3105:351:2,51.5,-15,0,0,-0.16778 -79466,3105:352:1,52,-15,0,0,-0.167989 -79467,3105:352:2,52.5,-15,0,0,-0.167942 -79468,3105:353:1,53,-15,0,0,-0.166859 -79469,3105:353:2,53.5,-15,0,0,-0.16624 -79470,3105:354:1,54,-15,0,0,-0.165465 -79471,3105:354:2,54.5,-15,0,0,-0.164107 -79472,3105:455:1,55,-15,0,0,-0.164739 -79473,3105:455:2,55.5,-15,0,0,-0.164898 -79474,3105:456:1,56,-15,0,0,-0.16422 -79475,3105:456:2,56.5,-15,0,0,-0.163837 -79476,3105:457:1,57,-15,0,0,-0.163119 -79477,3105:457:2,57.5,-15,0,0,-0.161717 -79478,3105:458:1,58,-15,0,0,-0.159519 -79479,3105:458:2,58.5,-15,0,0,-0.155498 -79480,3105:459:1,59,-15,0,0,-0.157075 -79481,3105:459:2,59.5,-15,0,0,-0.155902 -79482,3106:350:1,60,-15,0,0,-0.153626 -79483,3106:350:2,60.5,-15,0,0,-0.153188 -79484,3106:351:1,61,-15,0,0,-0.155456 -79485,3106:351:2,61.5,-15,0,0,-0.155012 -79486,3106:352:1,62,-15,0,0,-0.151059 -79487,3106:352:2,62.5,-15,0,0,-0.147739 -79488,3106:353:1,63,-15,0,0,-0.148782 -79489,3106:353:2,63.5,-15,0,0,-0.147939 -79490,3106:354:1,64,-15,0,0,-0.146703 -79491,3106:354:2,64.5,-15,0,0,-0.145656 -79492,3106:455:1,65,-15,0,0,-0.144072 -79493,3106:455:2,65.5,-15,0,0,-0.143432 -79494,3106:456:1,66,-15,0,0,-0.143839 -79495,3106:456:2,66.5,-15,0,0,-0.143994 -79496,3106:457:1,67,-15,0,0,-0.143316 -79497,3106:457:2,67.5,-15,0,0,-0.142795 -79498,3106:458:1,68,-15,0,0,-0.141741 -79499,3106:458:2,68.5,-15,0,0,-0.139491 -79500,3106:459:1,69,-15,0,0,-0.136692 -79501,3106:459:2,69.5,-15,0,0,-0.13605 -79502,3107:350:1,70,-15,0,0,-0.13605 -79503,3107:350:2,70.5,-15,0,0,-0.136121 -79504,3107:351:1,71,-15,0,0,-0.13919 -79505,3107:351:2,71.5,-15,0,0,-0.140186 -79506,3107:352:1,72,-15,0,0,-0.140149 -79507,3107:352:2,72.5,-15,0,0,-0.137655 -79508,3107:353:2,73.5,-15,0,0,-0.13605 -79509,3107:354:1,74,-15,0,0,-0.136106 -79510,3107:354:2,74.5,-15,0,0,-0.13697 -79511,3107:455:1,75,-15,0,0,-0.138344 -79512,3107:455:2,75.5,-15,0,0,-0.137773 -79513,3107:456:1,76,-15,0,0,-0.13605 -79514,3107:456:2,76.5,-15,0,0,-0.137154 -79515,3107:457:1,77,-15,0,0,-0.13722 -79516,3107:457:2,77.5,-15,0,0,-0.136104 -79517,3107:458:1,78,-15,0,0,-0.136254 -79518,3107:458:2,78.5,-15,0,0,-0.13605 -79519,3107:459:1,79,-15,0,0,-0.13605 -79520,3107:459:2,79.5,-15,0,0,-0.13605 -79521,3108:350:1,80,-15,0,0,-0.136254 -79522,3108:350:2,80.5,-15,0,0,-0.13605 -79523,3108:351:1,81,-15,0,0,-0.13605 -79524,3108:351:2,81.5,-15,0,0,-0.13605 -79525,3108:352:1,82,-15,0,0,-0.13605 -79526,3108:352:2,82.5,-15,0,0,-0.13605 -79527,3108:353:1,83,-15,0,0,-0.136069 -79528,3108:353:2,83.5,-15,0,0,-0.137555 -79529,3108:354:1,84,-15,0,0,-0.137722 -79530,3108:354:2,84.5,-15,0,0,-0.136304 -79531,3108:455:1,85,-15,0,0,-0.13605 -79532,3108:455:2,85.5,-15,0,0,-0.13605 -79533,3108:456:1,86,-15,0,0,-0.13605 -79534,3108:456:2,86.5,-15,0,0,-0.13605 -79535,3108:457:1,87,-15,0,0,-0.13605 -79536,3108:457:2,87.5,-15,0,0,-0.13605 -79537,3108:458:1,88,-15,0,0,-0.13605 -79538,3108:458:2,88.5,-15,0,0,-0.13605 -79539,3108:459:1,89,-15,0,0,-0.13605 -79540,3108:459:2,89.5,-15,0,0,-0.13605 -79541,3109:350:1,90,-15,0,0,-0.13605 -79542,3109:350:2,90.5,-15,0,0,-0.13605 -79543,3109:351:1,91,-15,0,0,-0.13605 -79544,3109:351:2,91.5,-15,0,0,-0.13605 -79545,3109:352:1,92,-15,0,0,-0.13605 -79546,3109:352:2,92.5,-15,0,0,-0.13605 -79547,3109:353:1,93,-15,0,0,-0.136167 -79548,3109:353:2,93.5,-15,0,0,-0.13605 -79549,3109:354:1,94,-15,0,0,-0.13605 -79550,3109:354:2,94.5,-15,0,0,-0.13605 -79551,3109:455:1,95,-15,0,0,-0.13605 -79552,3109:455:2,95.5,-15,0,0,-0.13605 -79553,3109:456:1,96,-15,0,0,-0.13605 -79554,3109:456:2,96.5,-15,0,0,-0.13605 -79555,3109:457:1,97,-15,0,0,-0.13605 -79556,3109:457:2,97.5,-15,0,0,-0.13605 -79557,3109:458:1,98,-15,0,0,-0.13605 -79558,3109:458:2,98.5,-15,0,0,-0.13605 -79559,3109:459:1,99,-15,0,0,-0.13605 -79560,3109:459:2,99.5,-15,0,0,-0.13605 -79561,3110:350:1,100,-15,0,0,-0.13605 -79562,3110:350:2,100.5,-15,0,0,-0.13605 -79563,3110:351:1,101,-15,0,0,-0.13605 -79564,3110:351:2,101.5,-15,0,0,-0.13605 -79565,3110:352:1,102,-15,0,0,-0.13605 -79566,3110:352:2,102.5,-15,0,0,-0.13605 -79567,3110:353:1,103,-15,0,0,-0.13605 -79568,3110:353:2,103.5,-15,0,0,-0.13605 -79569,3110:354:1,104,-15,0,0,-0.13605 -79570,3110:354:2,104.5,-15,0,0,-0.13605 -79571,3110:455:1,105,-15,0,0,-0.13605 -79572,3110:455:2,105.5,-15,0,0,-0.13605 -79573,3110:456:1,106,-15,0,0,-0.13605 -79574,3110:456:2,106.5,-15,0,0,-0.13605 -79575,3110:457:1,107,-15,0,0,-0.13605 -79576,3110:457:2,107.5,-15,0,0,-0.13605 -79577,3110:458:1,108,-15,0,0,-0.13605 -79578,3110:458:2,108.5,-15,0,0,-0.13605 -79579,3110:459:1,109,-15,0,0,-0.13605 -79580,3110:459:2,109.5,-15,0,0,-0.143027 -79581,3111:350:1,110,-15,0,0,-0.147339 -79582,3111:350:2,110.5,-15,0,0,-0.147359 -79583,3111:351:1,111,-15,0,0,-0.152502 -79584,3111:351:2,111.5,-15,0,0,-0.160811 -79585,3111:352:1,112,-15,0,0,-0.165966 -79586,3111:352:2,112.5,-15,0,0,-0.16929 -79587,3111:353:1,113,-15,0,0,-0.16915 -79588,3111:353:2,113.5,-15,0,0,-0.171642 -79589,3111:354:1,114,-15,0,0,-0.16679 -79590,3111:354:2,114.5,-15,0,0,-0.166836 -79591,3111:455:1,115,-15,0,0,-0.176584 -79592,3111:455:2,115.5,-15,0,0,-0.181032 -79593,3111:456:1,116,-15,0,0,-0.182705 -79594,3111:456:2,116.5,-15,0,0,-0.186313 -79595,3111:457:1,117,-15,0,0,-0.192828 -79596,3111:457:2,117.5,-15,0,0,-0.217305 -79597,3111:458:1,118,-15,0,0,-0.267403 -79598,3111:458:2,118.5,-15,0,0,-0.315124 -79599,3111:459:1,119,-15,0,0,-0.342638 -79600,3111:459:2,119.5,-15,0,0,-0.381585 -79601,3112:350:1,120,-15,0,0,-0.369454 -79602,3112:350:2,120.5,-15,0,0,-0.339808 -79603,3112:351:1,121,-15,0,0,-0.459501 -79604,3112:351:2,121.5,-15,0,0,21.6052 -79605,3114:457:1,147,-15,0,0,-0.198225 -79606,3114:457:2,147.5,-15,0,0,-0.184705 -79607,3114:458:1,148,-15,0,0,-0.177148 -79608,3114:458:2,148.5,-15,0,0,-0.17774 -79609,3114:459:1,149,-15,0,0,-0.177666 -79610,3114:459:2,149.5,-15,0,0,-0.17705 -79611,3115:350:1,150,-15,0,0,-0.172332 -79612,3115:350:2,150.5,-15,0,0,-0.164197 -79613,3115:351:1,151,-15,0,0,-0.158044 -79614,3115:351:2,151.5,-15,0,0,-0.157247 -79615,3115:352:1,152,-15,0,0,-0.16185 -79616,3115:352:2,152.5,-15,0,0,-0.164581 -79617,3115:353:1,153,-15,0,0,-0.166492 -79618,3115:353:2,153.5,-15,0,0,-0.16341 -79619,3115:354:1,154,-15,0,0,-0.163702 -79620,3115:354:2,154.5,-15,0,0,-0.162874 -79621,3115:455:1,155,-15,0,0,-0.160197 -79622,3115:455:2,155.5,-15,0,0,-0.158433 -79623,3115:456:1,156,-15,0,0,-0.159759 -79624,3115:456:2,156.5,-15,0,0,-0.159148 -79625,3115:457:1,157,-15,0,0,-0.161452 -79626,3115:457:2,157.5,-15,0,0,-0.160152 -79627,3115:458:1,158,-15,0,0,-0.157742 -79628,3115:458:2,158.5,-15,0,0,-0.16079 -79629,3115:459:1,159,-15,0,0,-0.159475 -79630,3115:459:2,159.5,-15,0,0,-0.15588 -79631,3116:350:1,160,-15,0,0,-0.158735 -79632,3116:350:2,160.5,-15,0,0,-0.163456 -79633,3116:351:1,161,-15,0,0,-0.154087 -79634,3116:351:2,161.5,-15,0,0,-0.154087 -79635,3116:352:1,162,-15,0,0,-0.156648 -79636,3116:352:2,162.5,-15,0,0,-0.152399 -79637,3116:353:1,163,-15,0,0,-0.151121 -79638,3116:353:2,163.5,-15,0,0,-0.142584 -79639,3116:354:1,164,-15,0,0,-0.14828 -79640,3116:354:2,164.5,-15,0,0,-0.14542 -79641,3116:455:1,165,-15,0,0,-0.1471 -79642,3116:455:2,165.5,-15,0,0,-0.151779 -79643,3116:456:1,166,-15,0,0,-0.147 -79644,3116:456:2,166.5,-15,0,0,-0.14836 -79645,3116:457:1,167,-15,0,0,-0.14842 -79646,3116:457:2,167.5,-15,0,0,-0.141474 -79647,3116:458:1,168,-15,0,0,-0.143239 -79648,3116:458:2,168.5,-15,0,0,-0.144033 -79649,3116:459:1,169,-15,0,0,-0.144871 -79650,3117:350:1,170,-15,0,0,-0.143355 -79651,3117:350:2,170.5,-15,0,0,-0.147439 -79652,3117:351:1,171,-15,0,0,-0.148782 -79653,3117:351:2,171.5,-15,0,0,-0.147 -79654,3117:352:1,172,-15,0,0,-0.14601 -79655,3117:352:2,172.5,-15,0,0,-0.141798 -79656,3117:353:1,173,-15,0,0,-0.140017 -79657,3117:353:2,173.5,-15,0,0,-0.141322 -79658,3117:354:1,174,-15,0,0,-0.14178 -79659,3117:354:2,174.5,-15,0,0,-0.143296 -79660,3117:455:1,175,-15,0,0,-0.145283 -79661,3117:455:2,175.5,-15,0,0,-0.146644 -79662,3117:456:1,176,-15,0,0,-0.146604 -79663,3117:456:2,176.5,-15,0,0,-0.14605 -79664,3117:457:1,177,-15,0,0,-0.147639 -79665,3117:457:2,177.5,-15,0,0,-0.147858 -79666,3117:458:1,178,-15,0,0,-0.144189 -79667,3117:459:1,179,-15,0,0,-0.142834 -79668,3117:459:2,179.5,-15,0,0,-0.13717 -79669,3118:350:1,180,-15,0,0,-0.13727 -79670,5118:140:3,-180,-14.5,0,0,-0.14452 -79671,5117:249:4,-179.5,-14.5,0,0,-0.145833 -79672,5117:249:3,-179,-14.5,0,0,-0.144305 -79673,5117:248:4,-178.5,-14.5,0,0,-0.143722 -79674,5117:248:3,-178,-14.5,0,0,-0.140394 -79675,5117:247:4,-177.5,-14.5,0,0,-0.145951 -79676,5117:247:3,-177,-14.5,0,0,-0.148521 -79677,5117:246:4,-176.5,-14.5,0,0,-0.148461 -79678,5117:246:3,-176,-14.5,0,0,-0.148059 -79679,5117:245:4,-175.5,-14.5,0,0,-0.148702 -79680,5117:245:3,-175,-14.5,0,0,-0.148923 -79681,5117:144:4,-174.5,-14.5,0,0,-0.150446 -79682,5117:144:3,-174,-14.5,0,0,-0.150752 -79683,5117:143:4,-173.5,-14.5,0,0,-0.150711 -79684,5117:143:3,-173,-14.5,0,0,-0.149065 -79685,5117:142:4,-172.5,-14.5,0,0,-0.148581 -79686,5117:142:3,-172,-14.5,0,0,-0.148461 -79687,5117:141:4,-171.5,-14.5,0,0,-0.149794 -79688,5117:141:3,-171,-14.5,0,0,-0.15149 -79689,5117:140:4,-170.5,-14.5,0,0,-0.151614 -79690,5117:140:3,-170,-14.5,0,0,-0.153105 -79691,5116:249:4,-169.5,-14.5,0,0,-0.157763 -79692,5116:249:3,-169,-14.5,0,0,-0.157398 -79693,5116:248:4,-168.5,-14.5,0,0,-0.152772 -79694,5116:248:3,-168,-14.5,0,0,-0.153459 -79695,5116:247:4,-167.5,-14.5,0,0,-0.155308 -79696,5116:247:3,-167,-14.5,0,0,-0.155393 -79697,5116:246:4,-166.5,-14.5,0,0,-0.157871 -79698,5116:246:3,-166,-14.5,0,0,-0.158801 -79699,5116:245:4,-165.5,-14.5,0,0,-0.158671 -79700,5116:245:3,-165,-14.5,0,0,-0.160657 -79701,5116:144:4,-164.5,-14.5,0,0,-0.164943 -79702,5116:144:3,-164,-14.5,0,0,-0.166149 -79703,5116:143:4,-163.5,-14.5,0,0,-0.163209 -79704,5116:143:3,-163,-14.5,0,0,-0.163231 -79705,5116:142:4,-162.5,-14.5,0,0,-0.166149 -79706,5116:142:3,-162,-14.5,0,0,-0.167135 -79707,5116:141:4,-161.5,-14.5,0,0,-0.166721 -79708,5116:141:3,-161,-14.5,0,0,-0.166974 -79709,5116:140:4,-160.5,-14.5,0,0,-0.168661 -79710,5116:140:3,-160,-14.5,0,0,-0.170556 -79711,5115:249:4,-159.5,-14.5,0,0,-0.172284 -79712,5115:249:3,-159,-14.5,0,0,-0.17336 -79713,5115:248:4,-158.5,-14.5,0,0,-0.175024 -79714,5115:248:3,-158,-14.5,0,0,-0.178507 -79715,5115:247:4,-157.5,-14.5,0,0,-0.180403 -79716,5115:247:3,-157,-14.5,0,0,-0.180177 -79717,5115:246:4,-156.5,-14.5,0,0,-0.179852 -79718,5115:246:3,-156,-14.5,0,0,-0.180932 -79719,5115:245:4,-155.5,-14.5,0,0,-0.183395 -79720,5115:245:3,-155,-14.5,0,0,-0.186157 -79721,5115:144:4,-154.5,-14.5,0,0,-0.188253 -79722,5115:144:3,-154,-14.5,0,0,-0.188623 -79723,5115:143:4,-153.5,-14.5,0,0,-0.187964 -79724,5115:143:3,-153,-14.5,0,0,-0.18987 -79725,5115:142:4,-152.5,-14.5,0,0,-0.19509 -79726,5115:142:3,-152,-14.5,0,0,-0.198092 -79727,5115:141:4,-151.5,-14.5,0,0,-0.195879 -79728,5115:141:3,-151,-14.5,0,0,-0.197026 -79729,5115:140:4,-150.5,-14.5,0,0,-0.199973 -79730,5115:140:3,-150,-14.5,0,0,-0.211259 -79731,5114:249:4,-149.5,-14.5,0,0,-0.199013 -79732,5114:249:3,-149,-14.5,0,0,-0.19374 -79733,5114:248:4,-148.5,-14.5,0,0,-0.195222 -79734,5114:248:3,-148,-14.5,0,0,-0.197869 -79735,5114:247:4,-147.5,-14.5,0,0,-0.204251 -79736,5114:247:3,-147,-14.5,0,0,-0.210194 -79737,5114:246:4,-146.5,-14.5,0,0,-0.205991 -79738,5114:246:3,-146,-14.5,0,0,-0.199119 -79739,5114:245:4,-145.5,-14.5,0,0,-0.196761 -79740,5114:245:3,-145,-14.5,0,0,-0.19544 -79741,5114:144:4,-144.5,-14.5,0,0,-0.195484 -79742,5114:144:3,-144,-14.5,0,0,-0.195835 -79743,5114:143:4,-143.5,-14.5,0,0,-0.195703 -79744,5114:143:3,-143,-14.5,0,0,-0.194479 -79745,5114:142:4,-142.5,-14.5,0,0,-0.192016 -79746,5114:142:3,-142,-14.5,0,0,-0.187648 -79747,5114:141:4,-141.5,-14.5,0,0,-0.189206 -79748,5114:141:3,-141,-14.5,0,0,-0.190405 -79749,5114:140:4,-140.5,-14.5,0,0,-0.190057 -79750,5114:140:3,-140,-14.5,0,0,-0.188571 -79751,5113:249:4,-139.5,-14.5,0,0,-0.18799 -79752,5113:249:3,-139,-14.5,0,0,-0.187202 -79753,5113:248:4,-138.5,-14.5,0,0,-0.186443 -79754,5113:248:3,-138,-14.5,0,0,-0.186626 -79755,5113:247:4,-137.5,-14.5,0,0,-0.1877 -79756,5113:247:3,-137,-14.5,0,0,-0.18865 -79757,5113:246:4,-136.5,-14.5,0,0,-0.188782 -79758,5113:246:3,-136,-14.5,0,0,-0.188095 -79759,5113:245:4,-135.5,-14.5,0,0,-0.187071 -79760,5113:245:3,-135,-14.5,0,0,-0.185949 -79761,5113:144:4,-134.5,-14.5,0,0,-0.185041 -79762,5113:144:3,-134,-14.5,0,0,-0.184267 -79763,5113:143:4,-133.5,-14.5,0,0,-0.183959 -79764,5113:143:3,-133,-14.5,0,0,-0.18419 -79765,5113:142:4,-132.5,-14.5,0,0,-0.184576 -79766,5113:142:3,-132,-14.5,0,0,-0.185015 -79767,5113:141:4,-131.5,-14.5,0,0,-0.185222 -79768,5113:141:3,-131,-14.5,0,0,-0.184835 -79769,5113:140:4,-130.5,-14.5,0,0,-0.184293 -79770,5113:140:3,-130,-14.5,0,0,-0.182909 -79771,5112:249:4,-129.5,-14.5,0,0,-0.180604 -79772,5112:249:3,-129,-14.5,0,0,-0.178854 -79773,5112:248:4,-128.5,-14.5,0,0,-0.178209 -79774,5112:248:3,-128,-14.5,0,0,-0.177296 -79775,5112:247:4,-127.5,-14.5,0,0,-0.175291 -79776,5112:247:3,-127,-14.5,0,0,-0.173432 -79777,5112:246:4,-126.5,-14.5,0,0,-0.174274 -79778,5112:246:3,-126,-14.5,0,0,-0.175948 -79779,5112:245:4,-125.5,-14.5,0,0,-0.174491 -79780,5112:245:3,-125,-14.5,0,0,-0.171999 -79781,5112:144:4,-124.5,-14.5,0,0,-0.171429 -79782,5112:144:3,-124,-14.5,0,0,-0.172857 -79783,5112:143:4,-123.5,-14.5,0,0,-0.174418 -79784,5112:143:3,-123,-14.5,0,0,-0.173624 -79785,5112:142:4,-122.5,-14.5,0,0,-0.170814 -79786,5112:142:3,-122,-14.5,0,0,-0.169126 -79787,5112:141:4,-121.5,-14.5,0,0,-0.1688 -79788,5112:141:3,-121,-14.5,0,0,-0.16908 -79789,5112:140:4,-120.5,-14.5,0,0,-0.168754 -79790,5112:140:3,-120,-14.5,0,0,-0.167526 -79791,5111:249:4,-119.5,-14.5,0,0,-0.166149 -79792,5111:249:3,-119,-14.5,0,0,-0.164852 -79793,5111:248:4,-118.5,-14.5,0,0,-0.163007 -79794,5111:248:3,-118,-14.5,0,0,-0.160262 -79795,5111:247:4,-117.5,-14.5,0,0,-0.157548 -79796,5111:247:3,-117,-14.5,0,0,-0.155583 -79797,5111:246:4,-116.5,-14.5,0,0,-0.153584 -79798,5111:246:3,-116,-14.5,0,0,-0.150875 -79799,5111:245:4,-115.5,-14.5,0,0,-0.1484 -79800,5111:245:3,-115,-14.5,0,0,-0.146644 -79801,5111:144:4,-114.5,-14.5,0,0,-0.145008 -79802,5111:144:3,-114,-14.5,0,0,-0.142949 -79803,5111:143:4,-113.5,-14.5,0,0,-0.140715 -79804,5111:143:3,-113,-14.5,0,0,-0.138597 -79805,5111:142:4,-112.5,-14.5,0,0,-0.136615 -79806,5111:142:3,-112,-14.5,0,0,-0.13605 -79807,5111:141:4,-111.5,-14.5,0,0,-0.13605 -79808,5111:141:3,-111,-14.5,0,0,-0.13605 -79809,5111:140:4,-110.5,-14.5,0,0,-0.13605 -79810,5111:140:3,-110,-14.5,0,0,-0.13605 -79811,5110:249:4,-109.5,-14.5,0,0,-0.13605 -79812,5110:249:3,-109,-14.5,0,0,-0.13605 -79813,5110:248:4,-108.5,-14.5,0,0,-0.13605 -79814,5110:248:3,-108,-14.5,0,0,-0.13605 -79815,5110:247:4,-107.5,-14.5,0,0,-0.13605 -79816,5110:247:3,-107,-14.5,0,0,-0.13605 -79817,5110:246:4,-106.5,-14.5,0,0,-0.13605 -79818,5110:246:3,-106,-14.5,0,0,-0.13605 -79819,5110:245:4,-105.5,-14.5,0,0,-0.13605 -79820,5110:245:3,-105,-14.5,0,0,-0.13605 -79821,5110:144:4,-104.5,-14.5,0,0,-0.13605 -79822,5110:144:3,-104,-14.5,0,0,-0.13605 -79823,5110:143:4,-103.5,-14.5,0,0,-0.13605 -79824,5110:143:3,-103,-14.5,0,0,-0.13605 -79825,5110:142:4,-102.5,-14.5,0,0,-0.13605 -79826,5110:142:3,-102,-14.5,0,0,-0.13605 -79827,5110:141:4,-101.5,-14.5,0,0,-0.13605 -79828,5110:141:3,-101,-14.5,0,0,-0.13605 -79829,5110:140:4,-100.5,-14.5,0,0,-0.13605 -79830,5110:140:3,-100,-14.5,0,0,-0.13605 -79831,5109:249:4,-99.5,-14.5,0,0,-0.13605 -79832,5109:249:3,-99,-14.5,0,0,-0.13605 -79833,5109:248:4,-98.5,-14.5,0,0,-0.13605 -79834,5109:248:3,-98,-14.5,0,0,-0.13605 -79835,5109:247:4,-97.5,-14.5,0,0,-0.13605 -79836,5109:247:3,-97,-14.5,0,0,-0.13605 -79837,5109:246:4,-96.5,-14.5,0,0,-0.13605 -79838,5109:246:3,-96,-14.5,0,0,-0.13605 -79839,5109:245:4,-95.5,-14.5,0,0,-0.13605 -79840,5109:245:3,-95,-14.5,0,0,-0.13605 -79841,5109:144:4,-94.5,-14.5,0,0,-0.13605 -79842,5109:144:3,-94,-14.5,0,0,-0.13605 -79843,5109:143:4,-93.5,-14.5,0,0,-0.13605 -79844,5109:143:3,-93,-14.5,0,0,-0.13605 -79845,5109:142:4,-92.5,-14.5,0,0,-0.13605 -79846,5109:142:3,-92,-14.5,0,0,-0.13605 -79847,5109:141:4,-91.5,-14.5,0,0,-0.13605 -79848,5109:141:3,-91,-14.5,0,0,-0.13605 -79849,5109:140:4,-90.5,-14.5,0,0,-0.13605 -79850,5109:140:3,-90,-14.5,0,0,-0.13605 -79851,5108:249:4,-89.5,-14.5,0,0,-0.13605 -79852,5108:249:3,-89,-14.5,0,0,-0.13605 -79853,5108:248:4,-88.5,-14.5,0,0,-0.13605 -79854,5108:248:3,-88,-14.5,0,0,-0.13605 -79855,5108:247:4,-87.5,-14.5,0,0,-0.13605 -79856,5108:247:3,-87,-14.5,0,0,-0.13605 -79857,5108:246:4,-86.5,-14.5,0,0,-0.13605 -79858,5108:246:3,-86,-14.5,0,0,-0.13605 -79859,5108:245:4,-85.5,-14.5,0,0,-0.13605 -79860,5108:245:3,-85,-14.5,0,0,-0.13605 -79861,5108:144:4,-84.5,-14.5,0,0,-0.13605 -79862,5108:144:3,-84,-14.5,0,0,-0.13605 -79863,5108:143:4,-83.5,-14.5,0,0,-0.13605 -79864,5108:143:3,-83,-14.5,0,0,-0.13605 -79865,5108:142:4,-82.5,-14.5,0,0,-0.13605 -79866,5108:142:3,-82,-14.5,0,0,-0.13605 -79867,5108:141:4,-81.5,-14.5,0,0,-0.13605 -79868,5108:141:3,-81,-14.5,0,0,-0.13605 -79869,5108:140:4,-80.5,-14.5,0,0,-0.13605 -79870,5108:140:3,-80,-14.5,0,0,-0.13605 -79871,5107:249:4,-79.5,-14.5,0,0,-0.13605 -79872,5107:249:3,-79,-14.5,0,0,-0.13605 -79873,5107:248:4,-78.5,-14.5,0,0,-0.13605 -79874,5107:248:3,-78,-14.5,0,0,-0.13605 -79875,5107:247:4,-77.5,-14.5,0,0,-0.13605 -79876,5107:247:3,-77,-14.5,0,0,-0.13605 -79877,5107:246:4,-76.5,-14.5,0,0,-0.13605 -79878,5107:246:3,-76,-14.5,0,0,-0.13605 -79879,5107:245:4,-75.5,-14.5,0,0,-0.13605 -79880,5107:245:3,-75,-14.5,0,0,-0.13605 -79881,5107:144:4,-74.5,-14.5,0,0,-0.13605 -79882,5107:144:3,-74,-14.5,0,0,-0.13605 -79883,5107:143:4,-73.5,-14.5,0,0,-0.13605 -79884,5107:143:3,-73,-14.5,0,0,-0.13605 -79885,5107:142:4,-72.5,-14.5,0,0,-0.13605 -79886,5107:142:3,-72,-14.5,0,0,-0.13605 -79887,5107:141:4,-71.5,-14.5,0,0,-0.13605 -79888,5107:141:3,-71,-14.5,0,0,-0.13605 -79889,5103:249:4,-39.5,-14.5,0,0,-0.184473 -79890,5103:249:3,-39,-14.5,0,0,-0.166652 -79891,5103:248:4,-38.5,-14.5,0,0,-0.16216 -79892,5103:248:3,-38,-14.5,0,0,-0.167273 -79893,5103:247:4,-37.5,-14.5,0,0,-0.178581 -79894,5103:247:3,-37,-14.5,0,0,-0.179827 -79895,5103:246:4,-36.5,-14.5,0,0,-0.178805 -79896,5103:246:3,-36,-14.5,0,0,-0.178556 -79897,5103:245:4,-35.5,-14.5,0,0,-0.177937 -79898,5103:245:3,-35,-14.5,0,0,-0.178061 -79899,5103:144:4,-34.5,-14.5,0,0,-0.17774 -79900,5103:144:3,-34,-14.5,0,0,-0.176314 -79901,5103:143:4,-33.5,-14.5,0,0,-0.175242 -79902,5103:143:3,-33,-14.5,0,0,-0.173864 -79903,5103:142:4,-32.5,-14.5,0,0,-0.172046 -79904,5103:142:3,-32,-14.5,0,0,-0.170273 -79905,5103:141:4,-31.5,-14.5,0,0,-0.168011 -79906,5103:141:3,-31,-14.5,0,0,-0.165738 -79907,5103:140:4,-30.5,-14.5,0,0,-0.163612 -79908,5103:140:3,-30,-14.5,0,0,-0.161783 -79909,5102:249:4,-29.5,-14.5,0,0,-0.160087 -79910,5102:249:3,-29,-14.5,0,0,-0.158411 -79911,5102:248:4,-28.5,-14.5,0,0,-0.156434 -79912,5102:248:3,-28,-14.5,0,0,-0.15396 -79913,5102:247:4,-27.5,-14.5,0,0,-0.150936 -79914,5102:247:3,-27,-14.5,0,0,-0.14712 -79915,5102:246:4,-26.5,-14.5,0,0,-0.142488 -79916,5102:246:3,-26,-14.5,0,0,-0.139309 -79917,5102:245:4,-25.5,-14.5,0,0,-0.13789 -79918,5102:245:3,-25,-14.5,0,0,-0.137505 -79919,5102:144:4,-24.5,-14.5,0,0,-0.13717 -79920,5102:144:3,-24,-14.5,0,0,-0.13687 -79921,5102:143:4,-23.5,-14.5,0,0,-0.13633 -79922,5102:143:3,-23,-14.5,0,0,-0.136089 -79923,5102:142:4,-22.5,-14.5,0,0,-0.13605 -79924,5102:142:3,-22,-14.5,0,0,-0.13605 -79925,5102:141:4,-21.5,-14.5,0,0,-0.13605 -79926,5102:141:3,-21,-14.5,0,0,-0.13605 -79927,5102:140:4,-20.5,-14.5,0,0,-0.13605 -79928,5102:140:3,-20,-14.5,0,0,-0.13605 -79929,5101:249:4,-19.5,-14.5,0,0,-0.13605 -79930,5101:249:3,-19,-14.5,0,0,-0.13605 -79931,5101:248:4,-18.5,-14.5,0,0,-0.13605 -79932,5101:248:3,-18,-14.5,0,0,-0.13605 -79933,5101:247:4,-17.5,-14.5,0,0,-0.13605 -79934,5101:247:3,-17,-14.5,0,0,-0.13605 -79935,5101:246:4,-16.5,-14.5,0,0,-0.13605 -79936,5101:246:3,-16,-14.5,0,0,-0.13605 -79937,5101:245:4,-15.5,-14.5,0,0,-0.13605 -79938,5101:245:3,-15,-14.5,0,0,-0.13605 -79939,5101:144:4,-14.5,-14.5,0,0,-0.13605 -79940,5101:144:3,-14,-14.5,0,0,-0.13605 -79941,5101:143:4,-13.5,-14.5,0,0,-0.13605 -79942,5101:143:3,-13,-14.5,0,0,-0.13605 -79943,5101:142:4,-12.5,-14.5,0,0,-0.13605 -79944,5101:142:3,-12,-14.5,0,0,-0.13605 -79945,5101:141:4,-11.5,-14.5,0,0,-0.13605 -79946,5101:141:3,-11,-14.5,0,0,-0.13605 -79947,5101:140:4,-10.5,-14.5,0,0,-0.13605 -79948,5101:140:3,-10,-14.5,0,0,-0.13605 -79949,5100:249:4,-9.5,-14.5,0,0,-0.13605 -79950,5100:249:3,-9,-14.5,0,0,-0.13605 -79951,5100:248:4,-8.5,-14.5,0,0,-0.13605 -79952,5100:248:3,-8,-14.5,0,0,-0.13605 -79953,5100:247:4,-7.5,-14.5,0,0,-0.13605 -79954,5100:247:3,-7,-14.5,0,0,-0.13605 -79955,5100:246:4,-6.5,-14.5,0,0,-0.13605 -79956,5100:246:3,-6,-14.5,0,0,-0.13605 -79957,5100:245:4,-5.5,-14.5,0,0,-0.13605 -79958,5100:245:3,-5,-14.5,0,0,-0.13605 -79959,5100:144:4,-4.5,-14.5,0,0,-0.13605 -79960,5100:144:3,-4,-14.5,0,0,-0.13605 -79961,5100:143:4,-3.5,-14.5,0,0,-0.13605 -79962,5100:143:3,-3,-14.5,0,0,-0.13605 -79963,5100:142:4,-2.5,-14.5,0,0,-0.13605 -79964,5100:142:3,-2,-14.5,0,0,-0.13605 -79965,5100:141:4,-1.5,-14.5,0,0,-0.13605 -79966,5100:141:3,-1,-14.5,0,0,-0.13605 -79967,5100:140:4,-0.5,-14.5,0,0,-0.13605 -79968,3100:140:4,0,-14.5,0,0,-0.13605 -79969,3100:140:4,0.5,-14.5,0,0,-0.13605 -79970,3100:141:3,1,-14.5,0,0,-0.13605 -79971,3100:141:4,1.5,-14.5,0,0,-0.13605 -79972,3100:142:3,2,-14.5,0,0,-0.13605 -79973,3100:142:4,2.5,-14.5,0,0,-0.13605 -79974,3100:143:3,3,-14.5,0,0,-0.13605 -79975,3100:143:4,3.5,-14.5,0,0,-0.13605 -79976,3100:144:3,4,-14.5,0,0,-0.13605 -79977,3100:144:4,4.5,-14.5,0,0,-0.13605 -79978,3100:245:3,5,-14.5,0,0,-0.13605 -79979,3100:245:4,5.5,-14.5,0,0,-0.13605 -79980,3100:246:3,6,-14.5,0,0,-0.13605 -79981,3100:246:4,6.5,-14.5,0,0,-0.13605 -79982,3100:247:3,7,-14.5,0,0,-0.13605 -79983,3100:247:4,7.5,-14.5,0,0,-0.13605 -79984,3100:248:3,8,-14.5,0,0,-0.13605 -79985,3100:248:4,8.5,-14.5,0,0,-0.13605 -79986,3100:249:3,9,-14.5,0,0,-0.13605 -79987,3100:249:4,9.5,-14.5,0,0,-0.13605 -79988,3101:140:3,10,-14.5,0,0,-0.13605 -79989,3101:140:4,10.5,-14.5,0,0,-0.13605 -79990,3101:141:3,11,-14.5,0,0,-0.13605 -79991,3101:141:4,11.5,-14.5,0,0,-0.13605 -79992,3103:247:3,37,-14.5,0,0,-0.221142 -79993,3103:247:4,37.5,-14.5,0,0,-0.31564 -79994,3103:248:3,38,-14.5,0,0,-1.56078 -79995,3103:248:4,38.5,-14.5,0,0,-1.28327 -79996,3103:249:3,39,-14.5,0,0,-3.8199 -79997,3103:249:4,39.5,-14.5,0,0,-0.818638 -79998,3104:140:3,40,-14.5,0,0,-1.29457 -79999,3104:140:4,40.5,-14.5,0,0,-2.9895 -80000,3104:141:3,41,-14.5,0,0,19.314 -80001,3104:141:4,41.5,-14.5,0,0,2.8029 -80002,3104:142:3,42,-14.5,0,0,1.74077 -80003,3104:142:4,42.5,-14.5,0,0,1.49071 -80004,3104:143:3,43,-14.5,0,0,1.28317 -80005,3104:143:4,43.5,-14.5,0,0,1.1247 -80006,3104:249:4,49.5,-14.5,0,0,-0.19461 -80007,3105:140:3,50,-14.5,0,0,-0.18073 -80008,3105:140:4,50.5,-14.5,0,0,-0.173985 -80009,3105:141:3,51,-14.5,0,0,-0.172141 -80010,3105:141:4,51.5,-14.5,0,0,-0.171027 -80011,3105:142:3,52,-14.5,0,0,-0.169781 -80012,3105:142:4,52.5,-14.5,0,0,-0.168707 -80013,3105:143:3,53,-14.5,0,0,-0.167181 -80014,3105:143:4,53.5,-14.5,0,0,-0.165875 -80015,3105:144:3,54,-14.5,0,0,-0.165306 -80016,3105:144:4,54.5,-14.5,0,0,-0.164943 -80017,3105:245:3,55,-14.5,0,0,-0.165079 -80018,3105:245:4,55.5,-14.5,0,0,-0.166172 -80019,3105:246:3,56,-14.5,0,0,-0.167089 -80020,3105:246:4,56.5,-14.5,0,0,-0.167665 -80021,3105:247:3,57,-14.5,0,0,-0.166606 -80022,3105:247:4,57.5,-14.5,0,0,-0.165079 -80023,3105:248:3,58,-14.5,0,0,-0.16341 -80024,3105:248:4,58.5,-14.5,0,0,-0.161806 -80025,3105:249:3,59,-14.5,0,0,-0.160944 -80026,3105:249:4,59.5,-14.5,0,0,-0.159715 -80027,3106:140:3,60,-14.5,0,0,-0.158757 -80028,3106:140:4,60.5,-14.5,0,0,-0.158389 -80029,3106:141:3,61,-14.5,0,0,-0.158259 -80030,3106:141:4,61.5,-14.5,0,0,-0.156947 -80031,3106:142:3,62,-14.5,0,0,-0.154087 -80032,3106:142:4,62.5,-14.5,0,0,-0.152772 -80033,3106:143:3,63,-14.5,0,0,-0.152751 -80034,3106:143:4,63.5,-14.5,0,0,-0.152109 -80035,3106:144:3,64,-14.5,0,0,-0.15149 -80036,3106:144:4,64.5,-14.5,0,0,-0.15016 -80037,3106:245:3,65,-14.5,0,0,-0.148682 -80038,3106:245:4,65.5,-14.5,0,0,-0.147919 -80039,3106:246:3,66,-14.5,0,0,-0.147518 -80040,3106:246:4,66.5,-14.5,0,0,-0.146882 -80041,3106:247:3,67,-14.5,0,0,-0.146425 -80042,3106:247:4,67.5,-14.5,0,0,-0.146663 -80043,3106:248:3,68,-14.5,0,0,-0.146425 -80044,3106:248:4,68.5,-14.5,0,0,-0.145459 -80045,3106:249:3,69,-14.5,0,0,-0.143587 -80046,3106:249:4,69.5,-14.5,0,0,-0.141589 -80047,3107:140:3,70,-14.5,0,0,-0.140092 -80048,3107:140:4,70.5,-14.5,0,0,-0.141398 -80049,3107:141:3,71,-14.5,0,0,-0.144969 -80050,3107:141:4,71.5,-14.5,0,0,-0.146604 -80051,3107:142:3,72,-14.5,0,0,-0.146227 -80052,3107:142:4,72.5,-14.5,0,0,-0.14448 -80053,3107:143:4,73.5,-14.5,0,0,-0.142911 -80054,3107:144:3,74,-14.5,0,0,-0.141722 -80055,3107:144:4,74.5,-14.5,0,0,-0.138834 -80056,3107:245:3,75,-14.5,0,0,-0.142545 -80057,3107:245:4,75.5,-14.5,0,0,-0.1422 -80058,3107:246:3,76,-14.5,0,0,-0.141265 -80059,3107:246:4,76.5,-14.5,0,0,-0.141341 -80060,3107:247:3,77,-14.5,0,0,-0.13687 -80061,3107:247:4,77.5,-14.5,0,0,-0.141094 -80062,3107:248:3,78,-14.5,0,0,-0.140715 -80063,3107:248:4,78.5,-14.5,0,0,-0.13605 -80064,3107:249:3,79,-14.5,0,0,-0.136356 -80065,3107:249:4,79.5,-14.5,0,0,-0.144695 -80066,3108:140:3,80,-14.5,0,0,-0.145283 -80067,3108:140:4,80.5,-14.5,0,0,-0.14155 -80068,3108:141:3,81,-14.5,0,0,-0.13672 -80069,3108:141:4,81.5,-14.5,0,0,-0.137957 -80070,3108:142:3,82,-14.5,0,0,-0.137421 -80071,3108:142:4,82.5,-14.5,0,0,-0.13605 -80072,3108:143:3,83,-14.5,0,0,-0.13605 -80073,3108:143:4,83.5,-14.5,0,0,-0.140923 -80074,3108:144:3,84,-14.5,0,0,-0.141932 -80075,3108:144:4,84.5,-14.5,0,0,-0.138243 -80076,3108:245:3,85,-14.5,0,0,-0.136692 -80077,3108:245:4,85.5,-14.5,0,0,-0.140658 -80078,3108:246:3,86,-14.5,0,0,-0.140545 -80079,3108:246:4,86.5,-14.5,0,0,-0.136886 -80080,3108:247:3,87,-14.5,0,0,-0.137924 -80081,3108:247:4,87.5,-14.5,0,0,-0.138935 -80082,3108:248:3,88,-14.5,0,0,-0.138614 -80083,3108:248:4,88.5,-14.5,0,0,-0.138546 -80084,3108:249:3,89,-14.5,0,0,-0.13605 -80085,3108:249:4,89.5,-14.5,0,0,-0.13605 -80086,3109:140:3,90,-14.5,0,0,-0.137455 -80087,3109:140:4,90.5,-14.5,0,0,-0.136369 -80088,3109:141:3,91,-14.5,0,0,-0.136146 -80089,3109:141:4,91.5,-14.5,0,0,-0.13605 -80090,3109:142:3,92,-14.5,0,0,-0.13605 -80091,3109:142:4,92.5,-14.5,0,0,-0.13605 -80092,3109:143:3,93,-14.5,0,0,-0.137253 -80093,3109:143:4,93.5,-14.5,0,0,-0.13605 -80094,3109:144:3,94,-14.5,0,0,-0.13605 -80095,3109:144:4,94.5,-14.5,0,0,-0.13605 -80096,3109:245:3,95,-14.5,0,0,-0.13605 -80097,3109:245:4,95.5,-14.5,0,0,-0.13605 -80098,3109:246:3,96,-14.5,0,0,-0.13605 -80099,3109:246:4,96.5,-14.5,0,0,-0.13605 -80100,3109:247:3,97,-14.5,0,0,-0.13605 -80101,3109:247:4,97.5,-14.5,0,0,-0.13605 -80102,3109:248:3,98,-14.5,0,0,-0.13605 -80103,3109:248:4,98.5,-14.5,0,0,-0.13605 -80104,3109:249:3,99,-14.5,0,0,-0.13605 -80105,3109:249:4,99.5,-14.5,0,0,-0.13605 -80106,3110:140:3,100,-14.5,0,0,-0.13605 -80107,3110:140:4,100.5,-14.5,0,0,-0.13605 -80108,3110:141:3,101,-14.5,0,0,-0.13605 -80109,3110:141:4,101.5,-14.5,0,0,-0.13605 -80110,3110:142:3,102,-14.5,0,0,-0.13605 -80111,3110:142:4,102.5,-14.5,0,0,-0.13605 -80112,3110:143:3,103,-14.5,0,0,-0.13605 -80113,3110:143:4,103.5,-14.5,0,0,-0.13605 -80114,3110:144:3,104,-14.5,0,0,-0.13605 -80115,3110:144:4,104.5,-14.5,0,0,-0.13605 -80116,3110:245:3,105,-14.5,0,0,-0.136101 -80117,3110:245:4,105.5,-14.5,0,0,-0.138058 -80118,3110:246:3,106,-14.5,0,0,-0.13682 -80119,3110:246:4,106.5,-14.5,0,0,-0.137991 -80120,3110:247:3,107,-14.5,0,0,-0.137154 -80121,3110:247:4,107.5,-14.5,0,0,-0.136086 -80122,3110:248:3,108,-14.5,0,0,-0.13605 -80123,3110:248:4,108.5,-14.5,0,0,-0.136243 -80124,3110:249:3,109,-14.5,0,0,-0.138986 -80125,3110:249:4,109.5,-14.5,0,0,-0.144072 -80126,3111:140:3,110,-14.5,0,0,-0.15417 -80127,3111:140:4,110.5,-14.5,0,0,-0.153898 -80128,3111:141:3,111,-14.5,0,0,-0.153668 -80129,3111:141:4,111.5,-14.5,0,0,-0.157828 -80130,3111:142:3,112,-14.5,0,0,-0.16024 -80131,3111:142:4,112.5,-14.5,0,0,-0.162317 -80132,3111:143:3,113,-14.5,0,0,-0.167549 -80133,3111:143:4,113.5,-14.5,0,0,-0.175753 -80134,3111:144:3,114,-14.5,0,0,-0.171453 -80135,3111:144:4,114.5,-14.5,0,0,-0.1715 -80136,3111:245:3,115,-14.5,0,0,-0.17868 -80137,3111:245:4,115.5,-14.5,0,0,-0.188623 -80138,3111:246:3,116,-14.5,0,0,-0.192854 -80139,3111:246:4,116.5,-14.5,0,0,-0.196011 -80140,3111:247:3,117,-14.5,0,0,-0.201842 -80141,3111:247:4,117.5,-14.5,0,0,-0.232004 -80142,3111:248:3,118,-14.5,0,0,-0.294027 -80143,3111:248:4,118.5,-14.5,0,0,-0.382242 -80144,3111:249:3,119,-14.5,0,0,-0.481728 -80145,3111:249:4,119.5,-14.5,0,0,-0.547068 -80146,3112:140:3,120,-14.5,0,0,-0.785105 -80147,3112:140:4,120.5,-14.5,0,0,-0.848069 -80148,3112:141:3,121,-14.5,0,0,-0.630014 -80149,3112:141:4,121.5,-14.5,0,0,-0.922117 -80150,3112:142:3,122,-14.5,0,0,7.10821 -80151,3114:246:4,146.5,-14.5,0,0,-0.333698 -80152,3114:247:3,147,-14.5,0,0,-0.19632 -80153,3114:247:4,147.5,-14.5,0,0,-0.184757 -80154,3114:248:3,148,-14.5,0,0,-0.182273 -80155,3114:248:4,148.5,-14.5,0,0,-0.178854 -80156,3114:249:3,149,-14.5,0,0,-0.172141 -80157,3114:249:4,149.5,-14.5,0,0,-0.169827 -80158,3115:140:3,150,-14.5,0,0,-0.170344 -80159,3115:140:4,150.5,-14.5,0,0,-0.168847 -80160,3115:141:3,151,-14.5,0,0,-0.162606 -80161,3115:141:4,151.5,-14.5,0,0,-0.162695 -80162,3115:142:3,152,-14.5,0,0,-0.160833 -80163,3115:142:4,152.5,-14.5,0,0,-0.16413 -80164,3115:143:3,153,-14.5,0,0,-0.172046 -80165,3115:143:4,153.5,-14.5,0,0,-0.171642 -80166,3115:144:3,154,-14.5,0,0,-0.171311 -80167,3115:144:4,154.5,-14.5,0,0,-0.169336 -80168,3115:245:3,155,-14.5,0,0,-0.16294 -80169,3115:245:4,155.5,-14.5,0,0,-0.157548 -80170,3115:246:3,156,-14.5,0,0,-0.162472 -80171,3115:246:4,156.5,-14.5,0,0,-0.165442 -80172,3115:247:3,157,-14.5,0,0,-0.166606 -80173,3115:247:4,157.5,-14.5,0,0,-0.158735 -80174,3115:248:3,158,-14.5,0,0,-0.156648 -80175,3115:248:4,158.5,-14.5,0,0,-0.162249 -80176,3115:249:3,159,-14.5,0,0,-0.163119 -80177,3115:249:4,159.5,-14.5,0,0,-0.163343 -80178,3116:140:3,160,-14.5,0,0,-0.166355 -80179,3116:140:4,160.5,-14.5,0,0,-0.167089 -80180,3116:141:3,161,-14.5,0,0,-0.161894 -80181,3116:141:4,161.5,-14.5,0,0,-0.159606 -80182,3116:142:3,162,-14.5,0,0,-0.157226 -80183,3116:142:4,162.5,-14.5,0,0,-0.155223 -80184,3116:143:3,163,-14.5,0,0,-0.156093 -80185,3116:143:4,163.5,-14.5,0,0,-0.1485 -80186,3116:144:3,164,-14.5,0,0,-0.154275 -80187,3116:144:4,164.5,-14.5,0,0,-0.151326 -80188,3116:245:3,165,-14.5,0,0,-0.148722 -80189,3116:245:4,165.5,-14.5,0,0,-0.15603 -80190,3116:246:3,166,-14.5,0,0,-0.150711 -80191,3116:246:4,166.5,-14.5,0,0,-0.150221 -80192,3116:247:3,167,-14.5,0,0,-0.154003 -80193,3116:247:4,167.5,-14.5,0,0,-0.148199 -80194,3116:248:3,168,-14.5,0,0,-0.147618 -80195,3116:248:4,168.5,-14.5,0,0,-0.146584 -80196,3116:249:3,169,-14.5,0,0,-0.148641 -80197,3116:249:4,169.5,-14.5,0,0,-0.150486 -80198,3117:140:3,170,-14.5,0,0,-0.152481 -80199,3117:140:4,170.5,-14.5,0,0,-0.15182 -80200,3117:141:3,171,-14.5,0,0,-0.151285 -80201,3117:141:4,171.5,-14.5,0,0,-0.150895 -80202,3117:142:3,172,-14.5,0,0,-0.147919 -80203,3117:142:4,172.5,-14.5,0,0,-0.146663 -80204,3117:143:3,173,-14.5,0,0,-0.147659 -80205,3117:143:4,173.5,-14.5,0,0,-0.147999 -80206,3117:144:3,174,-14.5,0,0,-0.149065 -80207,3117:144:4,174.5,-14.5,0,0,-0.1511 -80208,3117:245:3,175,-14.5,0,0,-0.151285 -80209,3117:245:4,175.5,-14.5,0,0,-0.15147 -80210,3117:246:3,176,-14.5,0,0,-0.154065 -80211,3117:246:4,176.5,-14.5,0,0,-0.153877 -80212,3117:247:3,177,-14.5,0,0,-0.156157 -80213,3117:247:4,177.5,-14.5,0,0,-0.157354 -80214,3117:249:3,179,-14.5,0,0,-0.148641 -80215,3117:249:4,179.5,-14.5,0,0,-0.143374 -80216,3118:140:3,180,-14.5,0,0,-0.14452 -80217,5118:140:1,-180,-14,0,0,-0.1511 -80218,5117:249:2,-179.5,-14,0,0,-0.151018 -80219,5117:249:1,-179,-14,0,0,-0.150282 -80220,5117:248:2,-178.5,-14,0,0,-0.147299 -80221,5117:248:1,-178,-14,0,0,-0.151965 -80222,5117:247:2,-177.5,-14,0,0,-0.156584 -80223,5117:247:1,-177,-14,0,0,-0.157312 -80224,5117:246:2,-176.5,-14,0,0,-0.156776 -80225,5117:246:1,-176,-14,0,0,-0.154886 -80226,5117:245:2,-175.5,-14,0,0,-0.157097 -80227,5117:245:1,-175,-14,0,0,-0.158194 -80228,5117:144:2,-174.5,-14,0,0,-0.15605 -80229,5117:144:1,-174,-14,0,0,-0.156306 -80230,5117:143:2,-173.5,-14,0,0,-0.15729 -80231,5117:143:1,-173,-14,0,0,-0.157247 -80232,5117:142:2,-172.5,-14,0,0,-0.158367 -80233,5117:142:1,-172,-14,0,0,-0.16079 -80234,5117:141:2,-171.5,-14,0,0,-0.162516 -80235,5117:141:1,-171,-14,0,0,-0.163905 -80236,5117:140:2,-170.5,-14,0,0,-0.166012 -80237,5117:140:1,-170,-14,0,0,-0.167227 -80238,5116:249:2,-169.5,-14,0,0,-0.166378 -80239,5116:249:1,-169,-14,0,0,-0.162806 -80240,5116:248:2,-168.5,-14,0,0,-0.161363 -80241,5116:248:1,-168,-14,0,0,-0.162784 -80242,5116:247:2,-167.5,-14,0,0,-0.163725 -80243,5116:247:1,-167,-14,0,0,-0.165989 -80244,5116:246:2,-166.5,-14,0,0,-0.17169 -80245,5116:246:1,-166,-14,0,0,-0.170862 -80246,5116:245:2,-165.5,-14,0,0,-0.169898 -80247,5116:245:1,-165,-14,0,0,-0.170367 -80248,5116:144:2,-164.5,-14,0,0,-0.172165 -80249,5116:144:1,-164,-14,0,0,-0.176707 -80250,5116:143:2,-163.5,-14,0,0,-0.177271 -80251,5116:143:1,-163,-14,0,0,-0.175194 -80252,5116:142:2,-162.5,-14,0,0,-0.174274 -80253,5116:142:1,-162,-14,0,0,-0.175875 -80254,5116:141:2,-161.5,-14,0,0,-0.177197 -80255,5116:141:1,-161,-14,0,0,-0.176951 -82731,3104:226:2,46.5,-12,0,0,1.29516 -80256,5116:140:2,-160.5,-14,0,0,-0.177197 -80257,5116:140:1,-160,-14,0,0,-0.178309 -80258,5115:249:2,-159.5,-14,0,0,-0.180429 -80259,5115:249:1,-159,-14,0,0,-0.183882 -80260,5115:248:2,-158.5,-14,0,0,-0.186966 -80261,5115:248:1,-158,-14,0,0,-0.188517 -80262,5115:247:2,-157.5,-14,0,0,-0.18828 -80263,5115:247:1,-157,-14,0,0,-0.187464 -80264,5115:246:2,-156.5,-14,0,0,-0.188095 -80265,5115:246:1,-156,-14,0,0,-0.190244 -80266,5115:245:2,-155.5,-14,0,0,-0.194566 -80267,5115:245:1,-155,-14,0,0,-0.198909 -80268,5115:144:2,-154.5,-14,0,0,-0.20149 -80269,5115:144:1,-154,-14,0,0,-0.225403 -80270,5115:143:2,-153.5,-14,0,0,-0.275496 -80271,5115:143:1,-153,-14,0,0,-0.28571 -80272,5115:142:2,-152.5,-14,0,0,-0.282998 -80273,5115:142:1,-152,-14,0,0,-0.289832 -80274,5115:141:2,-151.5,-14,0,0,-0.26408 -80275,5115:141:1,-151,-14,0,0,-0.255977 -80276,5115:140:2,-150.5,-14,0,0,-0.279884 -80277,5115:140:1,-150,-14,0,0,-0.28166 -80278,5114:249:2,-149.5,-14,0,0,-0.232716 -80279,5114:249:1,-149,-14,0,0,-0.21371 -80280,5114:248:2,-148.5,-14,0,0,-0.28345 -80281,5114:248:1,-148,-14,0,0,-0.297334 -80282,5114:247:2,-147.5,-14,0,0,-0.309546 -80283,5114:247:1,-147,-14,0,0,-0.321869 -80284,5114:246:2,-146.5,-14,0,0,-0.310556 -80285,5114:246:1,-146,-14,0,0,-0.298764 -80286,5114:245:2,-145.5,-14,0,0,-0.288455 -80287,5114:245:1,-145,-14,0,0,-0.255191 -80288,5114:144:2,-144.5,-14,0,0,-0.23342 -80289,5114:144:1,-144,-14,0,0,-0.249331 -80290,5114:143:2,-143.5,-14,0,0,-0.258784 -80291,5114:143:1,-143,-14,0,0,-0.223755 -80292,5114:142:2,-142.5,-14,0,0,-0.198646 -80293,5114:142:1,-142,-14,0,0,-0.197203 -80294,5114:141:2,-141.5,-14,0,0,-0.199309 -80295,5114:141:1,-141,-14,0,0,-0.198803 -80296,5114:140:2,-140.5,-14,0,0,-0.197958 -80297,5114:140:1,-140,-14,0,0,-0.196849 -80298,5113:249:2,-139.5,-14,0,0,-0.195703 -80299,5113:249:1,-139,-14,0,0,-0.193913 -80300,5113:248:2,-138.5,-14,0,0,-0.19309 -80301,5113:248:1,-138,-14,0,0,-0.19387 -80302,5113:247:2,-137.5,-14,0,0,-0.195003 -80303,5113:247:1,-137,-14,0,0,-0.195703 -80304,5113:246:2,-136.5,-14,0,0,-0.195528 -80305,5113:246:1,-136,-14,0,0,-0.194305 -80306,5113:245:2,-135.5,-14,0,0,-0.192854 -80307,5113:245:1,-135,-14,0,0,-0.191773 -80308,5113:144:2,-134.5,-14,0,0,-0.190458 -80309,5113:144:1,-134,-14,0,0,-0.189551 -80310,5113:143:2,-133.5,-14,0,0,-0.189206 -80311,5113:143:1,-133,-14,0,0,-0.189472 -80312,5113:142:2,-132.5,-14,0,0,-0.190378 -80313,5113:142:1,-132,-14,0,0,-0.191342 -80314,5113:141:2,-131.5,-14,0,0,-0.19207 -80315,5113:141:1,-131,-14,0,0,-0.191881 -80316,5113:140:2,-130.5,-14,0,0,-0.191611 -80317,5113:140:1,-130,-14,0,0,-0.190351 -80318,5112:249:2,-129.5,-14,0,0,-0.187727 -80319,5112:249:1,-129,-14,0,0,-0.185845 -80320,5112:248:2,-128.5,-14,0,0,-0.185274 -80321,5112:248:1,-128,-14,0,0,-0.184499 -80322,5112:247:2,-127.5,-14,0,0,-0.182935 -80323,5112:247:1,-127,-14,0,0,-0.181968 -80324,5112:246:2,-126.5,-14,0,0,-0.18212 -80325,5112:246:1,-126,-14,0,0,-0.182552 -80326,5112:245:2,-125.5,-14,0,0,-0.180957 -80327,5112:245:1,-125,-14,0,0,-0.178036 -80328,5112:144:2,-124.5,-14,0,0,-0.175875 -80329,5112:144:1,-124,-14,0,0,-0.175753 -80330,5112:143:2,-123.5,-14,0,0,-0.177666 -80331,5112:143:1,-123,-14,0,0,-0.177888 -80332,5112:142:2,-122.5,-14,0,0,-0.175291 -80333,5112:142:1,-122,-14,0,0,-0.173 -80334,5112:141:2,-121.5,-14,0,0,-0.171951 -80335,5112:141:1,-121,-14,0,0,-0.171311 -80336,5112:140:2,-120.5,-14,0,0,-0.170344 -80337,5112:140:1,-120,-14,0,0,-0.169033 -80338,5111:249:2,-119.5,-14,0,0,-0.167895 -80339,5111:249:1,-119,-14,0,0,-0.166035 -80340,5111:248:2,-118.5,-14,0,0,-0.163366 -80341,5111:248:1,-118,-14,0,0,-0.16024 -80342,5111:247:2,-117.5,-14,0,0,-0.157419 -80343,5111:247:1,-117,-14,0,0,-0.155541 -80344,5111:246:2,-116.5,-14,0,0,-0.153042 -80345,5111:246:1,-116,-14,0,0,-0.14951 -80346,5111:245:2,-115.5,-14,0,0,-0.146822 -80347,5111:245:1,-115,-14,0,0,-0.145617 -80348,5111:144:2,-114.5,-14,0,0,-0.143974 -80349,5111:144:1,-114,-14,0,0,-0.141322 -80350,5111:143:2,-113.5,-14,0,0,-0.138766 -80351,5111:143:1,-113,-14,0,0,-0.136537 -80352,5111:142:2,-112.5,-14,0,0,-0.13605 -80353,5111:142:1,-112,-14,0,0,-0.13605 -80354,5111:141:2,-111.5,-14,0,0,-0.13605 -80355,5111:141:1,-111,-14,0,0,-0.13605 -80356,5111:140:2,-110.5,-14,0,0,-0.13605 -80357,5111:140:1,-110,-14,0,0,-0.13605 -80358,5110:249:2,-109.5,-14,0,0,-0.13605 -80359,5110:249:1,-109,-14,0,0,-0.13605 -80360,5110:248:2,-108.5,-14,0,0,-0.13605 -80361,5110:248:1,-108,-14,0,0,-0.13605 -80362,5110:247:2,-107.5,-14,0,0,-0.13605 -80363,5110:247:1,-107,-14,0,0,-0.13605 -80364,5110:246:2,-106.5,-14,0,0,-0.13605 -80365,5110:246:1,-106,-14,0,0,-0.13605 -80366,5110:245:2,-105.5,-14,0,0,-0.13605 -80367,5110:245:1,-105,-14,0,0,-0.13605 -80368,5110:144:2,-104.5,-14,0,0,-0.13605 -80369,5110:144:1,-104,-14,0,0,-0.13605 -80370,5110:143:2,-103.5,-14,0,0,-0.13605 -80371,5110:143:1,-103,-14,0,0,-0.13605 -80372,5110:142:2,-102.5,-14,0,0,-0.13605 -80373,5110:142:1,-102,-14,0,0,-0.13605 -80374,5110:141:2,-101.5,-14,0,0,-0.13605 -80375,5110:141:1,-101,-14,0,0,-0.13605 -80376,5110:140:2,-100.5,-14,0,0,-0.13605 -80377,5110:140:1,-100,-14,0,0,-0.13605 -80378,5109:249:2,-99.5,-14,0,0,-0.13605 -80379,5109:249:1,-99,-14,0,0,-0.13605 -80380,5109:248:2,-98.5,-14,0,0,-0.13605 -80381,5109:248:1,-98,-14,0,0,-0.13605 -80382,5109:247:2,-97.5,-14,0,0,-0.13605 -80383,5109:247:1,-97,-14,0,0,-0.13605 -80384,5109:246:2,-96.5,-14,0,0,-0.13605 -80385,5109:246:1,-96,-14,0,0,-0.13605 -80386,5109:245:2,-95.5,-14,0,0,-0.13605 -80387,5109:245:1,-95,-14,0,0,-0.13605 -80388,5109:144:2,-94.5,-14,0,0,-0.13605 -80389,5109:144:1,-94,-14,0,0,-0.13605 -80390,5109:143:2,-93.5,-14,0,0,-0.13605 -80391,5109:143:1,-93,-14,0,0,-0.13605 -80392,5109:142:2,-92.5,-14,0,0,-0.13605 -80393,5109:142:1,-92,-14,0,0,-0.13605 -80394,5109:141:2,-91.5,-14,0,0,-0.13605 -80395,5109:141:1,-91,-14,0,0,-0.13605 -80396,5109:140:2,-90.5,-14,0,0,-0.13605 -80397,5109:140:1,-90,-14,0,0,-0.13605 -80398,5108:249:2,-89.5,-14,0,0,-0.13605 -80399,5108:249:1,-89,-14,0,0,-0.13605 -80400,5108:248:2,-88.5,-14,0,0,-0.13605 -80401,5108:248:1,-88,-14,0,0,-0.13605 -80402,5108:247:2,-87.5,-14,0,0,-0.13605 -80403,5108:247:1,-87,-14,0,0,-0.13605 -80404,5108:246:2,-86.5,-14,0,0,-0.13605 -80405,5108:246:1,-86,-14,0,0,-0.13605 -80406,5108:245:2,-85.5,-14,0,0,-0.13605 -80407,5108:245:1,-85,-14,0,0,-0.13605 -80408,5108:144:2,-84.5,-14,0,0,-0.13605 -80409,5108:144:1,-84,-14,0,0,-0.13605 -80410,5108:143:2,-83.5,-14,0,0,-0.13605 -80411,5108:143:1,-83,-14,0,0,-0.13605 -80412,5108:142:2,-82.5,-14,0,0,-0.13605 -80413,5108:142:1,-82,-14,0,0,-0.13605 -80414,5108:141:2,-81.5,-14,0,0,-0.13605 -80415,5108:141:1,-81,-14,0,0,-0.13605 -80416,5108:140:2,-80.5,-14,0,0,-0.13605 -80417,5108:140:1,-80,-14,0,0,-0.13605 -80418,5107:249:2,-79.5,-14,0,0,-0.13605 -80419,5107:249:1,-79,-14,0,0,-0.13605 -80420,5107:248:2,-78.5,-14,0,0,-0.13605 -80421,5107:248:1,-78,-14,0,0,-0.13605 -80422,5107:247:2,-77.5,-14,0,0,-0.13605 -80423,5107:247:1,-77,-14,0,0,-0.13605 -80424,5107:246:2,-76.5,-14,0,0,-0.13605 -80425,5107:246:1,-76,-14,0,0,-0.13605 -80426,5107:245:2,-75.5,-14,0,0,-0.13605 -80427,5107:245:1,-75,-14,0,0,-0.13605 -80428,5107:144:2,-74.5,-14,0,0,-0.13605 -80429,5107:144:1,-74,-14,0,0,-0.13605 -80430,5107:143:2,-73.5,-14,0,0,-0.13605 -80431,5107:143:1,-73,-14,0,0,-0.13605 -80432,5107:142:2,-72.5,-14,0,0,-0.13605 -80433,5107:142:1,-72,-14,0,0,-0.13605 -80434,5107:141:2,-71.5,-14,0,0,-0.13605 -80435,5103:249:1,-39,-14,0,0,-0.153313 -80436,5103:248:2,-38.5,-14,0,0,-0.17098 -80437,5103:248:1,-38,-14,0,0,-0.180957 -80438,5103:247:2,-37.5,-14,0,0,-0.182044 -80439,5103:247:1,-37,-14,0,0,-0.177394 -80440,5103:246:2,-36.5,-14,0,0,-0.177369 -80441,5103:246:1,-36,-14,0,0,-0.177715 -80442,5103:245:2,-35.5,-14,0,0,-0.17705 -80443,5103:245:1,-35,-14,0,0,-0.176878 -80444,5103:144:2,-34.5,-14,0,0,-0.175973 -80445,5103:144:1,-34,-14,0,0,-0.174129 -80446,5103:143:2,-33.5,-14,0,0,-0.172523 -80447,5103:143:1,-33,-14,0,0,-0.170603 -80448,5103:142:2,-32.5,-14,0,0,-0.168684 -80449,5103:142:1,-32,-14,0,0,-0.167066 -80450,5103:141:2,-31.5,-14,0,0,-0.164807 -80451,5103:141:1,-31,-14,0,0,-0.16245 -80452,5103:140:2,-30.5,-14,0,0,-0.160306 -80453,5103:140:1,-30,-14,0,0,-0.158649 -80454,5102:249:2,-29.5,-14,0,0,-0.156968 -80455,5102:249:1,-29,-14,0,0,-0.155223 -80456,5102:248:2,-28.5,-14,0,0,-0.153354 -80457,5102:248:1,-28,-14,0,0,-0.151676 -80458,5102:247:2,-27.5,-14,0,0,-0.149835 -80459,5102:247:1,-27,-14,0,0,-0.14724 -80460,5102:246:2,-26.5,-14,0,0,-0.142661 -80461,5102:246:1,-26,-14,0,0,-0.139603 -80462,5102:245:2,-25.5,-14,0,0,-0.138294 -80463,5102:245:1,-25,-14,0,0,-0.137705 -80464,5102:144:2,-24.5,-14,0,0,-0.136804 -80465,5102:144:1,-24,-14,0,0,-0.136188 -80466,5102:143:2,-23.5,-14,0,0,-0.136091 -80467,5102:143:1,-23,-14,0,0,-0.13605 -80468,5102:142:2,-22.5,-14,0,0,-0.13605 -80469,5102:142:1,-22,-14,0,0,-0.13605 -80470,5102:141:2,-21.5,-14,0,0,-0.13605 -80471,5102:141:1,-21,-14,0,0,-0.13605 -80472,5102:140:2,-20.5,-14,0,0,-0.13605 -80473,5102:140:1,-20,-14,0,0,-0.13605 -80474,5101:249:2,-19.5,-14,0,0,-0.13605 -80475,5101:249:1,-19,-14,0,0,-0.13605 -80476,5101:248:2,-18.5,-14,0,0,-0.13605 -80477,5101:248:1,-18,-14,0,0,-0.13605 -80478,5101:247:2,-17.5,-14,0,0,-0.13605 -80479,5101:247:1,-17,-14,0,0,-0.13605 -80480,5101:246:2,-16.5,-14,0,0,-0.13605 -80481,5101:246:1,-16,-14,0,0,-0.13605 -80482,5101:245:2,-15.5,-14,0,0,-0.13605 -80483,5101:245:1,-15,-14,0,0,-0.13605 -80484,5101:144:2,-14.5,-14,0,0,-0.13605 -80485,5101:144:1,-14,-14,0,0,-0.13605 -80486,5101:143:2,-13.5,-14,0,0,-0.13605 -80487,5101:143:1,-13,-14,0,0,-0.13605 -80488,5101:142:2,-12.5,-14,0,0,-0.13605 -80489,5101:142:1,-12,-14,0,0,-0.13605 -80490,5101:141:2,-11.5,-14,0,0,-0.13605 -80491,5101:141:1,-11,-14,0,0,-0.13605 -80492,5101:140:2,-10.5,-14,0,0,-0.13605 -80493,5101:140:1,-10,-14,0,0,-0.13605 -80494,5100:249:2,-9.5,-14,0,0,-0.13605 -80495,5100:249:1,-9,-14,0,0,-0.13605 -80496,5100:248:2,-8.5,-14,0,0,-0.13605 -80497,5100:248:1,-8,-14,0,0,-0.13605 -80498,5100:247:2,-7.5,-14,0,0,-0.13605 -80499,5100:247:1,-7,-14,0,0,-0.13605 -80500,5100:246:2,-6.5,-14,0,0,-0.13605 -80501,5100:246:1,-6,-14,0,0,-0.13605 -80502,5100:245:2,-5.5,-14,0,0,-0.13605 -80503,5100:245:1,-5,-14,0,0,-0.13605 -80504,5100:144:2,-4.5,-14,0,0,-0.13605 -80505,5100:144:1,-4,-14,0,0,-0.13605 -80506,5100:143:2,-3.5,-14,0,0,-0.13605 -80507,5100:143:1,-3,-14,0,0,-0.13605 -80508,5100:142:2,-2.5,-14,0,0,-0.13605 -80509,5100:142:1,-2,-14,0,0,-0.13605 -80510,5100:141:2,-1.5,-14,0,0,-0.13605 -80511,5100:141:1,-1,-14,0,0,-0.13605 -80512,5100:140:2,-0.5,-14,0,0,-0.13605 -80513,3100:140:2,0,-14,0,0,-0.13605 -80514,3100:140:2,0.5,-14,0,0,-0.13605 -80515,3100:141:1,1,-14,0,0,-0.13605 -80516,3100:141:2,1.5,-14,0,0,-0.13605 -80517,3100:142:1,2,-14,0,0,-0.13605 -80518,3100:142:2,2.5,-14,0,0,-0.13605 -80519,3100:143:1,3,-14,0,0,-0.13605 -80520,3100:143:2,3.5,-14,0,0,-0.13605 -80521,3100:144:1,4,-14,0,0,-0.13605 -80522,3100:144:2,4.5,-14,0,0,-0.13605 -80523,3100:245:1,5,-14,0,0,-0.13605 -80524,3100:245:2,5.5,-14,0,0,-0.13605 -80525,3100:246:1,6,-14,0,0,-0.13605 -80526,3100:246:2,6.5,-14,0,0,-0.13605 -80527,3100:247:1,7,-14,0,0,-0.13605 -80528,3100:247:2,7.5,-14,0,0,-0.13605 -80529,3100:248:1,8,-14,0,0,-0.13605 -80530,3100:248:2,8.5,-14,0,0,-0.13605 -80531,3100:249:1,9,-14,0,0,-0.13605 -80532,3100:249:2,9.5,-14,0,0,-0.13605 -80533,3101:140:1,10,-14,0,0,-0.13605 -80534,3101:140:2,10.5,-14,0,0,-0.13605 -80535,3101:141:1,11,-14,0,0,-0.13605 -80536,3103:247:2,37.5,-14,0,0,-0.31005 -80537,3103:248:1,38,-14,0,0,-0.196099 -80538,3103:248:2,38.5,-14,0,0,-0.335906 -80539,3103:249:1,39,-14,0,0,-94.5052 -80540,3103:249:2,39.5,-14,0,0,3.63682 -80541,3104:140:1,40,-14,0,0,-4.67245 -80542,3104:140:2,40.5,-14,0,0,-2.62035 -80543,3104:141:1,41,-14,0,0,94.0931 -80544,3104:141:2,41.5,-14,0,0,2.61557 -80545,3104:142:1,42,-14,0,0,1.77685 -80546,3104:142:2,42.5,-14,0,0,1.51852 -80547,3104:143:1,43,-14,0,0,1.26176 -80548,3104:143:2,43.5,-14,0,0,1.12165 -80549,3104:249:2,49.5,-14,0,0,-0.198225 -80550,3105:140:1,50,-14,0,0,-0.1866 -80551,3105:140:2,50.5,-14,0,0,-0.181689 -80552,3105:141:1,51,-14,0,0,-0.178581 -80553,3105:141:2,51.5,-14,0,0,-0.173695 -80554,3105:142:1,52,-14,0,0,-0.170956 -80555,3105:142:2,52.5,-14,0,0,-0.16936 -80556,3105:143:1,53,-14,0,0,-0.168104 -80557,3105:143:2,53.5,-14,0,0,-0.167388 -80558,3105:144:1,54,-14,0,0,-0.16679 -80559,3105:144:2,54.5,-14,0,0,-0.166561 -80560,3105:245:1,55,-14,0,0,-0.167273 -80561,3105:245:2,55.5,-14,0,0,-0.168475 -80562,3105:246:1,56,-14,0,0,-0.16929 -80563,3105:246:2,56.5,-14,0,0,-0.171406 -80564,3105:247:1,57,-14,0,0,-0.171785 -80565,3105:247:2,57.5,-14,0,0,-0.170015 -80566,3105:248:1,58,-14,0,0,-0.168196 -80567,3105:248:2,58.5,-14,0,0,-0.166423 -80568,3105:249:1,59,-14,0,0,-0.16413 -80569,3105:249:2,59.5,-14,0,0,-0.164491 -80570,3106:140:1,60,-14,0,0,-0.163568 -80571,3106:140:2,60.5,-14,0,0,-0.161495 -80572,3106:141:1,61,-14,0,0,-0.161164 -80573,3106:141:2,61.5,-14,0,0,-0.160152 -80574,3106:142:1,62,-14,0,0,-0.158194 -80575,3106:142:2,62.5,-14,0,0,-0.157376 -80576,3106:143:1,63,-14,0,0,-0.156904 -80577,3106:143:2,63.5,-14,0,0,-0.156157 -80578,3106:144:1,64,-14,0,0,-0.155245 -80579,3106:144:2,64.5,-14,0,0,-0.154044 -80580,3106:245:1,65,-14,0,0,-0.153063 -80581,3106:245:2,65.5,-14,0,0,-0.152896 -80582,3106:246:1,66,-14,0,0,-0.152834 -80583,3106:246:2,66.5,-14,0,0,-0.152336 -80584,3106:247:1,67,-14,0,0,-0.151634 -80585,3106:247:2,67.5,-14,0,0,-0.151203 -80586,3106:248:1,68,-14,0,0,-0.151305 -80587,3106:248:2,68.5,-14,0,0,-0.151059 -80588,3106:249:1,69,-14,0,0,-0.150875 -80589,3106:249:2,69.5,-14,0,0,-0.151634 -80590,3107:140:1,70,-14,0,0,-0.151285 -80591,3107:140:2,70.5,-14,0,0,-0.150588 -80592,3107:141:1,71,-14,0,0,-0.150915 -80593,3107:141:2,71.5,-14,0,0,-0.150793 -80594,3107:142:1,72,-14,0,0,-0.149429 -80595,3107:142:2,72.5,-14,0,0,-0.148159 -80596,3107:143:2,73.5,-14,0,0,-0.147539 -80597,3107:144:1,74,-14,0,0,-0.14605 -80598,3107:144:2,74.5,-14,0,0,-0.147518 -80599,3107:245:1,75,-14,0,0,-0.148903 -80600,3107:245:2,75.5,-14,0,0,-0.147559 -80601,3107:246:1,76,-14,0,0,-0.146663 -80602,3107:246:2,76.5,-14,0,0,-0.14452 -80603,3107:247:1,77,-14,0,0,-0.145813 -80604,3107:247:2,77.5,-14,0,0,-0.145715 -80605,3107:248:1,78,-14,0,0,-0.143936 -80606,3107:248:2,78.5,-14,0,0,-0.142296 -80607,3107:249:1,79,-14,0,0,-0.148119 -80608,3107:249:2,79.5,-14,0,0,-0.150998 -80609,3108:140:1,80,-14,0,0,-0.152813 -80610,3108:140:2,80.5,-14,0,0,-0.155097 -80611,3108:141:1,81,-14,0,0,-0.150404 -80612,3108:141:2,81.5,-14,0,0,-0.149672 -80613,3108:142:1,82,-14,0,0,-0.146822 -80614,3108:142:2,82.5,-14,0,0,-0.145538 -80615,3108:143:1,83,-14,0,0,-0.143955 -80616,3108:143:2,83.5,-14,0,0,-0.146326 -80617,3108:144:1,84,-14,0,0,-0.145734 -80618,3108:144:2,84.5,-14,0,0,-0.145263 -80619,3108:245:1,85,-14,0,0,-0.151018 -80620,3108:245:2,85.5,-14,0,0,-0.153752 -80621,3108:246:1,86,-14,0,0,-0.152502 -80622,3108:246:2,86.5,-14,0,0,-0.150711 -80623,3108:247:1,87,-14,0,0,-0.144442 -80624,3108:247:2,87.5,-14,0,0,-0.145656 -80625,3108:248:1,88,-14,0,0,-0.14448 -80626,3108:248:2,88.5,-14,0,0,-0.142028 -80627,3108:249:1,89,-14,0,0,-0.146148 -80628,3108:249:2,89.5,-14,0,0,-0.145165 -80629,3109:140:1,90,-14,0,0,-0.138429 -80630,3109:140:2,90.5,-14,0,0,-0.138597 -80631,3109:141:1,91,-14,0,0,-0.13605 -80632,3109:141:2,91.5,-14,0,0,-0.13605 -80633,3109:142:1,92,-14,0,0,-0.13605 -80634,3109:142:2,92.5,-14,0,0,-0.142699 -80635,3109:143:1,93,-14,0,0,-0.141227 -80636,3109:143:2,93.5,-14,0,0,-0.136524 -80637,3109:144:1,94,-14,0,0,-0.13605 -80638,3109:144:2,94.5,-14,0,0,-0.13605 -80639,3109:245:1,95,-14,0,0,-0.13605 -80640,3109:245:2,95.5,-14,0,0,-0.13605 -80641,3109:246:1,96,-14,0,0,-0.13605 -80642,3109:246:2,96.5,-14,0,0,-0.13605 -80643,3109:247:1,97,-14,0,0,-0.136589 -80644,3109:247:2,97.5,-14,0,0,-0.13605 -80645,3109:248:1,98,-14,0,0,-0.13605 -80646,3109:248:2,98.5,-14,0,0,-0.13605 -80647,3109:249:1,99,-14,0,0,-0.13605 -80648,3109:249:2,99.5,-14,0,0,-0.13605 -80649,3110:140:1,100,-14,0,0,-0.13605 -80650,3110:140:2,100.5,-14,0,0,-0.13605 -80651,3110:141:1,101,-14,0,0,-0.13605 -80652,3110:141:2,101.5,-14,0,0,-0.13605 -80653,3110:142:1,102,-14,0,0,-0.13605 -80654,3110:142:2,102.5,-14,0,0,-0.13605 -80655,3110:143:1,103,-14,0,0,-0.13605 -80656,3110:143:2,103.5,-14,0,0,-0.13605 -80657,3110:144:1,104,-14,0,0,-0.13605 -80658,3110:144:2,104.5,-14,0,0,-0.13605 -80659,3110:245:1,105,-14,0,0,-0.137689 -80660,3110:245:2,105.5,-14,0,0,-0.142334 -80661,3110:246:1,106,-14,0,0,-0.142814 -80662,3110:246:2,106.5,-14,0,0,-0.142661 -80663,3110:247:1,107,-14,0,0,-0.145165 -80664,3110:247:2,107.5,-14,0,0,-0.148984 -80665,3110:248:1,108,-14,0,0,-0.153772 -80666,3110:248:2,108.5,-14,0,0,-0.153605 -80667,3110:249:1,109,-14,0,0,-0.154297 -80668,3110:249:2,109.5,-14,0,0,-0.158628 -80669,3111:140:1,110,-14,0,0,-0.165193 -80670,3111:140:2,110.5,-14,0,0,-0.16024 -80671,3111:141:1,111,-14,0,0,-0.162561 -80672,3111:141:2,111.5,-14,0,0,-0.168336 -80673,3111:142:1,112,-14,0,0,-0.166744 -80674,3111:142:2,112.5,-14,0,0,-0.165556 -80675,3111:143:1,113,-14,0,0,-0.174636 -80676,3111:143:2,113.5,-14,0,0,-0.180403 -80677,3111:144:1,114,-14,0,0,-0.178036 -80678,3111:144:2,114.5,-14,0,0,-0.177296 -80679,3111:245:1,115,-14,0,0,-0.1877 -80680,3111:245:2,115.5,-14,0,0,-0.194784 -80681,3111:246:1,116,-14,0,0,-0.205022 -80682,3111:246:2,116.5,-14,0,0,-0.224407 -80683,3111:247:1,117,-14,0,0,-0.295437 -80684,3111:247:2,117.5,-14,0,0,-0.427123 -80685,3111:248:1,118,-14,0,0,-0.401082 -80686,3111:248:2,118.5,-14,0,0,-0.401782 -80687,3111:249:1,119,-14,0,0,-0.64417 -80688,3111:249:2,119.5,-14,0,0,-0.777073 -80689,3112:140:1,120,-14,0,0,-0.577425 -80690,3112:140:2,120.5,-14,0,0,-2.35276 -80691,3112:141:1,121,-14,0,0,-4.88552 -80692,3112:141:2,121.5,-14,0,0,-4.38224 -80693,3112:142:1,122,-14,0,0,8.92746 -80694,3114:140:1,140,-14,0,0,1.07988 -80695,3114:140:2,140.5,-14,0,0,1.08143 -80696,3114:141:1,141,-14,0,0,1.09093 -80697,3114:246:2,146.5,-14,0,0,-0.214809 -80698,3114:247:1,147,-14,0,0,-0.190967 -80699,3114:247:2,147.5,-14,0,0,-0.186157 -80700,3114:248:1,148,-14,0,0,-0.183676 -80701,3114:248:2,148.5,-14,0,0,-0.175802 -80702,3114:249:1,149,-14,0,0,-0.172189 -80703,3114:249:2,149.5,-14,0,0,-0.177444 -80704,3115:140:1,150,-14,0,0,-0.178383 -80705,3115:140:2,150.5,-14,0,0,-0.173816 -80706,3115:141:1,151,-14,0,0,-0.177148 -80707,3115:141:2,151.5,-14,0,0,-0.179827 -80708,3115:142:1,152,-14,0,0,-0.178482 -80709,3115:142:2,152.5,-14,0,0,-0.172379 -80710,3115:143:1,153,-14,0,0,-0.171571 -80711,3115:143:2,153.5,-14,0,0,-0.177419 -80712,3115:144:1,154,-14,0,0,-0.179552 -80713,3115:144:2,154.5,-14,0,0,-0.175753 -80714,3115:245:1,155,-14,0,0,-0.177813 -80715,3115:245:2,155.5,-14,0,0,-0.17466 -80716,3115:246:1,156,-14,0,0,-0.170909 -80717,3115:246:2,156.5,-14,0,0,-0.168637 -80718,3115:247:1,157,-14,0,0,-0.1695 -80719,3115:247:2,157.5,-14,0,0,-0.176314 -80720,3115:248:1,158,-14,0,0,-0.171287 -80721,3115:248:2,158.5,-14,0,0,-0.168011 -80722,3115:249:1,159,-14,0,0,-0.164943 -80723,3115:249:2,159.5,-14,0,0,-0.170461 -80724,3116:140:1,160,-14,0,0,-0.16778 -80725,3116:140:2,160.5,-14,0,0,-0.165738 -80726,3116:141:1,161,-14,0,0,-0.164558 -80727,3116:141:2,161.5,-14,0,0,-0.16368 -80728,3116:142:1,162,-14,0,0,-0.160921 -80729,3116:142:2,162.5,-14,0,0,-0.162272 -80730,3116:143:1,163,-14,0,0,-0.160856 -80731,3116:143:2,163.5,-14,0,0,-0.16035 -80732,3116:144:1,164,-14,0,0,-0.161274 -80733,3116:144:2,164.5,-14,0,0,-0.162205 -80734,3116:245:1,165,-14,0,0,-0.16068 -80735,3116:245:2,165.5,-14,0,0,-0.161186 -80736,3116:246:1,166,-14,0,0,-0.163075 -80737,3116:246:2,166.5,-14,0,0,-0.159977 -80738,3116:247:1,167,-14,0,0,-0.159693 -80739,3116:247:2,167.5,-14,0,0,-0.155562 -80740,3116:248:1,168,-14,0,0,-0.154949 -80741,3116:248:2,168.5,-14,0,0,-0.152461 -80742,3116:249:1,169,-14,0,0,-0.152006 -80743,3116:249:2,169.5,-14,0,0,-0.157226 -80744,3117:140:1,170,-14,0,0,-0.155965 -80745,3117:140:2,170.5,-14,0,0,-0.153982 -80746,3117:141:1,171,-14,0,0,-0.154886 -80747,3117:141:2,171.5,-14,0,0,-0.156242 -80748,3117:142:1,172,-14,0,0,-0.157033 -80749,3117:142:2,172.5,-14,0,0,-0.157828 -80750,3117:143:1,173,-14,0,0,-0.158389 -80751,3117:143:2,173.5,-14,0,0,-0.158692 -80752,3117:144:1,174,-14,0,0,-0.160131 -80753,3117:144:2,174.5,-14,0,0,-0.161142 -80754,3117:245:1,175,-14,0,0,-0.160592 -80755,3117:245:2,175.5,-14,0,0,-0.160944 -80756,3117:246:1,176,-14,0,0,-0.162094 -80757,3117:246:2,176.5,-14,0,0,-0.162896 -80758,3117:247:1,177,-14,0,0,-0.164536 -80759,3117:247:2,177.5,-14,0,0,-0.161983 -80760,3117:248:1,178,-14,0,0,-0.161407 -80761,3117:249:1,179,-14,0,0,-0.149916 -80762,3117:249:2,179.5,-14,0,0,-0.149085 -80763,3118:140:1,180,-14,0,0,-0.1511 -80764,5118:130:3,-180,-13.5,0,0,-0.157591 -80765,5117:239:3,-179,-13.5,0,0,-0.158519 -80766,5117:238:4,-178.5,-13.5,0,0,-0.159279 -80767,5117:238:3,-178,-13.5,0,0,-0.162851 -80768,5117:237:4,-177.5,-13.5,0,0,-0.162361 -80769,5117:237:3,-177,-13.5,0,0,-0.16035 -80770,5117:236:4,-176.5,-13.5,0,0,-0.16035 -80771,5117:236:3,-176,-13.5,0,0,-0.159344 -80772,5117:235:4,-175.5,-13.5,0,0,-0.162049 -80773,5117:235:3,-175,-13.5,0,0,-0.163905 -80774,5117:134:4,-174.5,-13.5,0,0,-0.162673 -80775,5117:134:3,-174,-13.5,0,0,-0.163254 -80776,5117:133:4,-173.5,-13.5,0,0,-0.165784 -80777,5117:133:3,-173,-13.5,0,0,-0.167895 -80778,5117:132:4,-172.5,-13.5,0,0,-0.168266 -80779,5117:132:3,-172,-13.5,0,0,-0.16815 -80780,5117:131:4,-171.5,-13.5,0,0,-0.168684 -80781,5117:131:3,-171,-13.5,0,0,-0.170697 -80782,5117:130:4,-170.5,-13.5,0,0,-0.172427 -80783,5117:130:3,-170,-13.5,0,0,-0.173096 -80784,5116:239:4,-169.5,-13.5,0,0,-0.174346 -80785,5116:239:3,-169,-13.5,0,0,-0.175899 -80786,5116:238:4,-168.5,-13.5,0,0,-0.175145 -80787,5116:238:3,-168,-13.5,0,0,-0.174081 -80788,5116:237:4,-167.5,-13.5,0,0,-0.173503 -80789,5116:237:3,-167,-13.5,0,0,-0.175973 -80790,5116:236:4,-166.5,-13.5,0,0,-0.182247 -80791,5116:236:3,-166,-13.5,0,0,-0.180805 -80792,5116:235:4,-165.5,-13.5,0,0,-0.179777 -80793,5116:235:3,-165,-13.5,0,0,-0.17816 -80794,5116:134:4,-164.5,-13.5,0,0,-0.178606 -80795,5116:134:3,-164,-13.5,0,0,-0.186992 -80796,5116:133:4,-163.5,-13.5,0,0,-0.191504 -80797,5116:133:3,-163,-13.5,0,0,-0.187149 -80798,5116:132:4,-162.5,-13.5,0,0,-0.1836 -80799,5116:132:3,-162,-13.5,0,0,-0.187464 -80800,5116:131:4,-161.5,-13.5,0,0,-0.188808 -80801,5116:131:3,-161,-13.5,0,0,-0.188994 -80802,5116:130:4,-160.5,-13.5,0,0,-0.190405 -80803,5116:130:3,-160,-13.5,0,0,-0.190004 -80804,5115:239:4,-159.5,-13.5,0,0,-0.188861 -80805,5115:239:3,-159,-13.5,0,0,-0.190832 -80806,5115:238:4,-158.5,-13.5,0,0,-0.197869 -80807,5115:238:3,-158,-13.5,0,0,-0.203129 -80808,5115:237:4,-157.5,-13.5,0,0,-0.19778 -80809,5115:237:3,-157,-13.5,0,0,-0.195835 -80810,5115:236:4,-156.5,-13.5,0,0,-0.196099 -80811,5115:236:3,-156,-13.5,0,0,-0.201314 -80812,5115:235:4,-155.5,-13.5,0,0,-0.262425 -80813,5115:235:3,-155,-13.5,0,0,-0.311556 -80814,5115:134:4,-154.5,-13.5,0,0,-0.275496 -80815,5115:134:3,-154,-13.5,0,0,-0.302152 -80816,5115:133:4,-153.5,-13.5,0,0,-0.3895 -80817,5115:133:3,-153,-13.5,0,0,-0.39085 -80818,5115:132:4,-152.5,-13.5,0,0,-0.376422 -80819,5115:132:3,-152,-13.5,0,0,-0.406704 -80820,5115:131:3,-151,-13.5,0,0,-0.339242 -80821,5115:130:4,-150.5,-13.5,0,0,-0.418213 -80822,5115:130:3,-150,-13.5,0,0,-0.466215 -80823,5114:239:4,-149.5,-13.5,0,0,-0.471303 -80824,5114:239:3,-149,-13.5,0,0,-0.486168 -80825,5114:238:4,-148.5,-13.5,0,0,-0.500754 -80826,5114:238:3,-148,-13.5,0,0,-0.484402 -80827,5114:237:4,-147.5,-13.5,0,0,-0.440178 -80828,5114:237:3,-147,-13.5,0,0,-0.411683 -80829,5114:236:4,-146.5,-13.5,0,0,-0.396268 -80830,5114:236:3,-146,-13.5,0,0,-0.378993 -80831,5114:235:4,-145.5,-13.5,0,0,-0.338695 -80832,5114:235:3,-145,-13.5,0,0,-0.307551 -80833,5114:134:4,-144.5,-13.5,0,0,-0.296855 -80834,5114:134:3,-144,-13.5,0,0,-0.300688 -80835,5114:133:4,-143.5,-13.5,0,0,-0.304597 -80836,5114:133:3,-143,-13.5,0,0,-0.286168 -80837,5114:132:4,-142.5,-13.5,0,0,-0.270349 -80838,5114:132:3,-142,-13.5,0,0,-0.260399 -80839,5114:131:4,-141.5,-13.5,0,0,-0.263665 -80840,5114:131:3,-141,-13.5,0,0,-0.262838 -80841,5114:130:4,-140.5,-13.5,0,0,-0.255977 -80842,5114:130:3,-140,-13.5,0,0,-0.245146 -80843,5113:239:4,-139.5,-13.5,0,0,-0.232716 -80844,5113:239:3,-139,-13.5,0,0,-0.224076 -80845,5113:238:4,-138.5,-13.5,0,0,-0.222449 -80846,5113:238:3,-138,-13.5,0,0,-0.227814 -80847,5113:237:4,-137.5,-13.5,0,0,-0.234138 -80848,5113:237:3,-137,-13.5,0,0,-0.237379 -80849,5113:236:4,-136.5,-13.5,0,0,-0.22885 -80850,5113:236:3,-136,-13.5,0,0,-0.208658 -80851,5113:235:4,-135.5,-13.5,0,0,-0.19896 -80852,5113:235:3,-135,-13.5,0,0,-0.197602 -80853,5113:134:4,-134.5,-13.5,0,0,-0.197514 -80854,5113:134:3,-134,-13.5,0,0,-0.19738 -80855,5113:133:4,-133.5,-13.5,0,0,-0.196805 -80856,5113:133:3,-133,-13.5,0,0,-0.196275 -80857,5113:132:4,-132.5,-13.5,0,0,-0.19654 -80858,5113:132:3,-132,-13.5,0,0,-0.197248 -80859,5113:131:4,-131.5,-13.5,0,0,-0.197514 -80860,5113:131:3,-131,-13.5,0,0,-0.197557 -80861,5113:130:4,-130.5,-13.5,0,0,-0.197425 -80862,5113:130:3,-130,-13.5,0,0,-0.195265 -80863,5112:239:4,-129.5,-13.5,0,0,-0.191962 -80864,5112:239:3,-129,-13.5,0,0,-0.190431 -80865,5112:238:4,-128.5,-13.5,0,0,-0.18995 -80866,5112:238:3,-128,-13.5,0,0,-0.189073 -80867,5112:237:4,-127.5,-13.5,0,0,-0.187937 -80868,5112:237:3,-127,-13.5,0,0,-0.187045 -80869,5112:236:4,-126.5,-13.5,0,0,-0.186443 -80870,5112:236:3,-126,-13.5,0,0,-0.185559 -80871,5112:235:4,-125.5,-13.5,0,0,-0.183011 -80872,5112:235:3,-125,-13.5,0,0,-0.180252 -80873,5112:134:4,-124.5,-13.5,0,0,-0.177912 -80874,5112:134:3,-124,-13.5,0,0,-0.176461 -80875,5112:133:4,-123.5,-13.5,0,0,-0.178036 -80876,5112:133:3,-123,-13.5,0,0,-0.179178 -80877,5112:132:4,-122.5,-13.5,0,0,-0.177222 -80878,5112:132:3,-122,-13.5,0,0,-0.17466 -80879,5112:131:4,-121.5,-13.5,0,0,-0.172953 -80880,5112:131:3,-121,-13.5,0,0,-0.171287 -80881,5112:130:4,-120.5,-13.5,0,0,-0.169827 -80882,5112:130:3,-120,-13.5,0,0,-0.168127 -80883,5111:239:4,-119.5,-13.5,0,0,-0.166469 -80884,5111:239:3,-119,-13.5,0,0,-0.164197 -80885,5111:238:4,-118.5,-13.5,0,0,-0.161407 -80886,5111:238:3,-118,-13.5,0,0,-0.158367 -80887,5111:237:4,-117.5,-13.5,0,0,-0.156136 -80888,5111:237:3,-117,-13.5,0,0,-0.154401 -80889,5111:236:4,-116.5,-13.5,0,0,-0.151717 -80890,5111:236:3,-116,-13.5,0,0,-0.1485 -80891,5111:235:4,-115.5,-13.5,0,0,-0.146227 -80892,5111:235:3,-115,-13.5,0,0,-0.145459 -80893,5111:134:4,-114.5,-13.5,0,0,-0.143722 -80894,5111:134:3,-114,-13.5,0,0,-0.140962 -80895,5111:133:4,-113.5,-13.5,0,0,-0.138058 -80896,5111:133:3,-113,-13.5,0,0,-0.13605 -80897,5111:132:4,-112.5,-13.5,0,0,-0.13605 -80898,5111:132:3,-112,-13.5,0,0,-0.13605 -80899,5111:131:4,-111.5,-13.5,0,0,-0.13605 -80900,5111:131:3,-111,-13.5,0,0,-0.13605 -80901,5111:130:4,-110.5,-13.5,0,0,-0.13605 -80902,5111:130:3,-110,-13.5,0,0,-0.13605 -80903,5110:239:4,-109.5,-13.5,0,0,-0.13605 -80904,5110:239:3,-109,-13.5,0,0,-0.13605 -80905,5110:238:4,-108.5,-13.5,0,0,-0.13605 -80906,5110:238:3,-108,-13.5,0,0,-0.13605 -80907,5110:237:4,-107.5,-13.5,0,0,-0.13605 -80908,5110:237:3,-107,-13.5,0,0,-0.13605 -80909,5110:236:4,-106.5,-13.5,0,0,-0.13605 -80910,5110:236:3,-106,-13.5,0,0,-0.13605 -80911,5110:235:4,-105.5,-13.5,0,0,-0.13605 -80912,5110:235:3,-105,-13.5,0,0,-0.13605 -80913,5110:134:4,-104.5,-13.5,0,0,-0.13605 -80914,5110:134:3,-104,-13.5,0,0,-0.13605 -80915,5110:133:4,-103.5,-13.5,0,0,-0.13605 -80916,5110:133:3,-103,-13.5,0,0,-0.13605 -80917,5110:132:4,-102.5,-13.5,0,0,-0.13605 -80918,5110:132:3,-102,-13.5,0,0,-0.13605 -80919,5110:131:4,-101.5,-13.5,0,0,-0.13605 -80920,5110:131:3,-101,-13.5,0,0,-0.13605 -80921,5110:130:4,-100.5,-13.5,0,0,-0.13605 -80922,5110:130:3,-100,-13.5,0,0,-0.13605 -80923,5109:239:4,-99.5,-13.5,0,0,-0.13605 -80924,5109:239:3,-99,-13.5,0,0,-0.13605 -80925,5109:238:4,-98.5,-13.5,0,0,-0.13605 -80926,5109:238:3,-98,-13.5,0,0,-0.13605 -80927,5109:237:4,-97.5,-13.5,0,0,-0.13605 -80928,5109:237:3,-97,-13.5,0,0,-0.13605 -80929,5109:236:4,-96.5,-13.5,0,0,-0.13605 -80930,5109:236:3,-96,-13.5,0,0,-0.13605 -80931,5109:235:4,-95.5,-13.5,0,0,-0.13605 -80932,5109:235:3,-95,-13.5,0,0,-0.13605 -80933,5109:134:4,-94.5,-13.5,0,0,-0.13605 -80934,5109:134:3,-94,-13.5,0,0,-0.13605 -80935,5109:133:4,-93.5,-13.5,0,0,-0.13605 -80936,5109:133:3,-93,-13.5,0,0,-0.13605 -80937,5109:132:4,-92.5,-13.5,0,0,-0.13605 -80938,5109:132:3,-92,-13.5,0,0,-0.13605 -80939,5109:131:4,-91.5,-13.5,0,0,-0.13605 -80940,5109:131:3,-91,-13.5,0,0,-0.13605 -80941,5109:130:4,-90.5,-13.5,0,0,-0.13605 -80942,5109:130:3,-90,-13.5,0,0,-0.13605 -80943,5108:239:4,-89.5,-13.5,0,0,-0.13605 -80944,5108:239:3,-89,-13.5,0,0,-0.13605 -80945,5108:238:4,-88.5,-13.5,0,0,-0.13605 -80946,5108:238:3,-88,-13.5,0,0,-0.13605 -80947,5108:237:4,-87.5,-13.5,0,0,-0.13605 -80948,5108:237:3,-87,-13.5,0,0,-0.13605 -80949,5108:236:4,-86.5,-13.5,0,0,-0.13605 -80950,5108:236:3,-86,-13.5,0,0,-0.13605 -80951,5108:235:4,-85.5,-13.5,0,0,-0.13605 -80952,5108:235:3,-85,-13.5,0,0,-0.13605 -80953,5108:134:4,-84.5,-13.5,0,0,-0.13605 -80954,5108:134:3,-84,-13.5,0,0,-0.13605 -80955,5108:133:4,-83.5,-13.5,0,0,-0.13605 -80956,5108:133:3,-83,-13.5,0,0,-0.13605 -80957,5108:132:4,-82.5,-13.5,0,0,-0.13605 -80958,5108:132:3,-82,-13.5,0,0,-0.13605 -80959,5108:131:4,-81.5,-13.5,0,0,-0.13605 -80960,5108:131:3,-81,-13.5,0,0,-0.13605 -80961,5108:130:4,-80.5,-13.5,0,0,-0.13605 -80962,5108:130:3,-80,-13.5,0,0,-0.13605 -80963,5107:239:4,-79.5,-13.5,0,0,-0.13605 -80964,5107:239:3,-79,-13.5,0,0,-0.13605 -80965,5107:238:4,-78.5,-13.5,0,0,-0.13605 -80966,5107:238:3,-78,-13.5,0,0,-0.13605 -80967,5107:237:4,-77.5,-13.5,0,0,-0.13605 -80968,5107:237:3,-77,-13.5,0,0,-0.13605 -80969,5107:236:4,-76.5,-13.5,0,0,-0.13605 -80970,5107:236:3,-76,-13.5,0,0,-0.13605 -80971,5107:235:4,-75.5,-13.5,0,0,-0.13605 -80972,5107:235:3,-75,-13.5,0,0,-0.13605 -80973,5107:134:4,-74.5,-13.5,0,0,-0.13605 -80974,5107:134:3,-74,-13.5,0,0,-0.13605 -80975,5107:133:4,-73.5,-13.5,0,0,-0.13605 -80976,5107:133:3,-73,-13.5,0,0,-0.13605 -80977,5107:132:4,-72.5,-13.5,0,0,-0.13605 -80978,5103:239:3,-39,-13.5,0,0,-0.159148 -80979,5103:238:4,-38.5,-13.5,0,0,-0.178086 -80980,5103:238:3,-38,-13.5,0,0,-0.178978 -80981,5103:237:4,-37.5,-13.5,0,0,-0.182578 -80982,5103:237:3,-37,-13.5,0,0,-0.180957 -80983,5103:236:4,-36.5,-13.5,0,0,-0.178309 -80984,5103:236:3,-36,-13.5,0,0,-0.177616 -80985,5103:235:4,-35.5,-13.5,0,0,-0.176486 -80986,5103:235:3,-35,-13.5,0,0,-0.17551 -80987,5103:134:4,-34.5,-13.5,0,0,-0.173912 -80988,5103:134:3,-34,-13.5,0,0,-0.172046 -80989,5103:133:4,-33.5,-13.5,0,0,-0.170556 -80990,5103:133:3,-33,-13.5,0,0,-0.168568 -80991,5103:132:4,-32.5,-13.5,0,0,-0.166492 -80992,5103:132:3,-32,-13.5,0,0,-0.164649 -80993,5103:131:4,-31.5,-13.5,0,0,-0.162249 -80994,5103:131:3,-31,-13.5,0,0,-0.160109 -80995,5103:130:4,-30.5,-13.5,0,0,-0.158259 -80996,5103:130:3,-30,-13.5,0,0,-0.15637 -80997,5102:239:4,-29.5,-13.5,0,0,-0.154886 -80998,5102:239:3,-29,-13.5,0,0,-0.15348 -80999,5102:238:4,-28.5,-13.5,0,0,-0.151737 -81000,5102:238:3,-28,-13.5,0,0,-0.149672 -81001,5102:237:4,-27.5,-13.5,0,0,-0.147659 -81002,5102:237:3,-27,-13.5,0,0,-0.145165 -81003,5102:236:4,-26.5,-13.5,0,0,-0.140677 -81004,5102:236:3,-26,-13.5,0,0,-0.138462 -81005,5102:235:4,-25.5,-13.5,0,0,-0.137857 -81006,5102:235:3,-25,-13.5,0,0,-0.137538 -81007,5102:134:4,-24.5,-13.5,0,0,-0.136787 -81008,5102:134:3,-24,-13.5,0,0,-0.136149 -81009,5102:133:4,-23.5,-13.5,0,0,-0.13605 -81010,5102:133:3,-23,-13.5,0,0,-0.13605 -81011,5102:132:4,-22.5,-13.5,0,0,-0.13605 -81012,5102:132:3,-22,-13.5,0,0,-0.13605 -81013,5102:131:4,-21.5,-13.5,0,0,-0.13605 -81014,5102:131:3,-21,-13.5,0,0,-0.13605 -81015,5102:130:4,-20.5,-13.5,0,0,-0.13605 -81016,5102:130:3,-20,-13.5,0,0,-0.13605 -81017,5101:239:4,-19.5,-13.5,0,0,-0.13605 -81018,5101:239:3,-19,-13.5,0,0,-0.13605 -81019,5101:238:4,-18.5,-13.5,0,0,-0.13605 -81020,5101:238:3,-18,-13.5,0,0,-0.13605 -81021,5101:237:4,-17.5,-13.5,0,0,-0.13605 -81022,5101:237:3,-17,-13.5,0,0,-0.13605 -81023,5101:236:4,-16.5,-13.5,0,0,-0.13605 -81024,5101:236:3,-16,-13.5,0,0,-0.13605 -81025,5101:235:4,-15.5,-13.5,0,0,-0.13605 -81026,5101:235:3,-15,-13.5,0,0,-0.13605 -81027,5101:134:4,-14.5,-13.5,0,0,-0.13605 -81028,5101:134:3,-14,-13.5,0,0,-0.13605 -81029,5101:133:4,-13.5,-13.5,0,0,-0.13605 -81030,5101:133:3,-13,-13.5,0,0,-0.13605 -81031,5101:132:4,-12.5,-13.5,0,0,-0.13605 -81032,5101:132:3,-12,-13.5,0,0,-0.13605 -81033,5101:131:4,-11.5,-13.5,0,0,-0.13605 -81034,5101:131:3,-11,-13.5,0,0,-0.13605 -81035,5101:130:4,-10.5,-13.5,0,0,-0.13605 -81036,5101:130:3,-10,-13.5,0,0,-0.13605 -81037,5100:239:4,-9.5,-13.5,0,0,-0.13605 -81038,5100:239:3,-9,-13.5,0,0,-0.13605 -81039,5100:238:4,-8.5,-13.5,0,0,-0.13605 -81040,5100:238:3,-8,-13.5,0,0,-0.13605 -81041,5100:237:4,-7.5,-13.5,0,0,-0.13605 -81042,5100:237:3,-7,-13.5,0,0,-0.13605 -81043,5100:236:4,-6.5,-13.5,0,0,-0.13605 -81044,5100:236:3,-6,-13.5,0,0,-0.13605 -81045,5100:235:4,-5.5,-13.5,0,0,-0.13605 -81046,5100:235:3,-5,-13.5,0,0,-0.13605 -81047,5100:134:4,-4.5,-13.5,0,0,-0.13605 -81048,5100:134:3,-4,-13.5,0,0,-0.13605 -81049,5100:133:4,-3.5,-13.5,0,0,-0.13605 -81050,5100:133:3,-3,-13.5,0,0,-0.13605 -81051,5100:132:4,-2.5,-13.5,0,0,-0.13605 -81052,5100:132:3,-2,-13.5,0,0,-0.13605 -81053,5100:131:4,-1.5,-13.5,0,0,-0.13605 -81054,5100:131:3,-1,-13.5,0,0,-0.13605 -81055,5100:130:4,-0.5,-13.5,0,0,-0.13605 -81056,3100:130:4,0,-13.5,0,0,-0.13605 -81057,3100:130:4,0.5,-13.5,0,0,-0.13605 -81058,3100:131:3,1,-13.5,0,0,-0.13605 -81059,3100:131:4,1.5,-13.5,0,0,-0.13605 -81060,3100:132:3,2,-13.5,0,0,-0.13605 -81061,3100:132:4,2.5,-13.5,0,0,-0.13605 -81062,3100:133:3,3,-13.5,0,0,-0.13605 -81063,3100:133:4,3.5,-13.5,0,0,-0.13605 -81064,3100:134:3,4,-13.5,0,0,-0.13605 -81065,3100:134:4,4.5,-13.5,0,0,-0.13605 -81066,3100:235:3,5,-13.5,0,0,-0.13605 -81067,3100:235:4,5.5,-13.5,0,0,-0.13605 -81068,3100:236:3,6,-13.5,0,0,-0.13605 -81069,3100:236:4,6.5,-13.5,0,0,-0.13605 -81070,3100:237:3,7,-13.5,0,0,-0.13605 -81071,3100:237:4,7.5,-13.5,0,0,-0.13605 -81072,3100:238:3,8,-13.5,0,0,-0.13605 -81073,3100:238:4,8.5,-13.5,0,0,-0.13605 -81074,3100:239:3,9,-13.5,0,0,-0.13605 -81075,3100:239:4,9.5,-13.5,0,0,-0.13605 -81076,3101:130:3,10,-13.5,0,0,-0.13605 -81077,3101:130:4,10.5,-13.5,0,0,-0.13605 -81078,3101:131:3,11,-13.5,0,0,-0.13605 -81079,3101:131:4,11.5,-13.5,0,0,-0.13605 -81080,3103:239:4,39.5,-13.5,0,0,-2.75397 -81081,3104:130:3,40,-13.5,0,0,-54.3138 -81082,3104:130:4,40.5,-13.5,0,0,1.26259 -81083,3104:131:3,41,-13.5,0,0,13.5991 -81084,3104:131:4,41.5,-13.5,0,0,2.58348 -81085,3104:132:3,42,-13.5,0,0,1.6604 -81086,3104:132:4,42.5,-13.5,0,0,1.45959 -81087,3104:133:3,43,-13.5,0,0,1.29099 -81088,3104:133:4,43.5,-13.5,0,0,1.16432 -81089,3104:134:3,44,-13.5,0,0,1.08173 -81090,3105:130:3,50,-13.5,0,0,-0.211532 -81091,3105:130:4,50.5,-13.5,0,0,-0.188861 -81092,3105:131:3,51,-13.5,0,0,-0.183831 -81093,3105:131:4,51.5,-13.5,0,0,-0.178805 -81094,3105:132:3,52,-13.5,0,0,-0.175121 -81095,3105:132:4,52.5,-13.5,0,0,-0.172308 -81096,3105:133:3,53,-13.5,0,0,-0.170414 -81097,3105:133:4,53.5,-13.5,0,0,-0.170156 -81098,3105:134:3,54,-13.5,0,0,-0.170438 -81099,3105:134:4,54.5,-13.5,0,0,-0.170485 -81100,3105:235:3,55,-13.5,0,0,-0.171334 -81101,3105:235:4,55.5,-13.5,0,0,-0.171833 -81102,3105:236:3,56,-13.5,0,0,-0.171334 -81103,3105:236:4,56.5,-13.5,0,0,-0.173072 -81104,3105:237:3,57,-13.5,0,0,-0.17437 -81105,3105:237:4,57.5,-13.5,0,0,-0.173576 -81106,3105:238:3,58,-13.5,0,0,-0.173024 -81107,3105:238:4,58.5,-13.5,0,0,-0.172355 -81108,3105:239:3,59,-13.5,0,0,-0.169196 -81109,3105:239:4,59.5,-13.5,0,0,-0.166561 -81110,3106:130:3,60,-13.5,0,0,-0.168174 -81111,3106:130:4,60.5,-13.5,0,0,-0.165647 -81112,3106:131:3,61,-13.5,0,0,-0.164649 -81113,3106:131:4,61.5,-13.5,0,0,-0.163456 -81114,3106:132:3,62,-13.5,0,0,-0.16216 -81115,3106:132:4,62.5,-13.5,0,0,-0.161363 -81116,3106:133:3,63,-13.5,0,0,-0.16101 -81117,3106:133:4,63.5,-13.5,0,0,-0.16068 -81118,3106:134:3,64,-13.5,0,0,-0.160043 -81119,3106:134:4,64.5,-13.5,0,0,-0.159671 -81120,3106:235:3,65,-13.5,0,0,-0.159519 -81121,3106:235:4,65.5,-13.5,0,0,-0.159366 -81122,3106:236:3,66,-13.5,0,0,-0.15904 -81123,3106:236:4,66.5,-13.5,0,0,-0.158735 -81124,3106:237:3,67,-13.5,0,0,-0.158238 -81125,3106:237:4,67.5,-13.5,0,0,-0.157677 -81126,3106:238:3,68,-13.5,0,0,-0.156904 -81127,3106:238:4,68.5,-13.5,0,0,-0.155945 -81128,3106:239:3,69,-13.5,0,0,-0.156221 -81129,3106:239:4,69.5,-13.5,0,0,-0.156733 -81130,3107:130:3,70,-13.5,0,0,-0.156392 -81131,3107:130:4,70.5,-13.5,0,0,-0.156626 -81132,3107:131:3,71,-13.5,0,0,-0.156776 -81133,3107:131:4,71.5,-13.5,0,0,-0.156755 -81134,3107:132:3,72,-13.5,0,0,-0.156862 -81135,3107:132:4,72.5,-13.5,0,0,-0.156626 -81136,3107:133:4,73.5,-13.5,0,0,-0.156477 -81137,3107:134:3,74,-13.5,0,0,-0.156626 -81138,3107:134:4,74.5,-13.5,0,0,-0.156221 -81139,3107:235:3,75,-13.5,0,0,-0.155266 -81140,3107:235:4,75.5,-13.5,0,0,-0.154801 -81141,3107:236:3,76,-13.5,0,0,-0.15535 -81142,3107:236:4,76.5,-13.5,0,0,-0.155732 -81143,3107:237:3,77,-13.5,0,0,-0.154675 -81144,3107:237:4,77.5,-13.5,0,0,-0.150936 -81145,3107:238:3,78,-13.5,0,0,-0.1484 -81146,3107:238:4,78.5,-13.5,0,0,-0.15016 -81147,3107:239:3,79,-13.5,0,0,-0.151264 -81148,3107:239:4,79.5,-13.5,0,0,-0.157183 -81149,3108:130:3,80,-13.5,0,0,-0.1635 -81150,3108:130:4,80.5,-13.5,0,0,-0.16245 -81151,3108:131:3,81,-13.5,0,0,-0.159213 -81152,3108:131:4,81.5,-13.5,0,0,-0.157849 -81153,3108:132:3,82,-13.5,0,0,-0.151923 -81154,3108:132:4,82.5,-13.5,0,0,-0.147939 -81155,3108:133:3,83,-13.5,0,0,-0.146921 -81156,3108:133:4,83.5,-13.5,0,0,-0.155456 -81157,3108:134:3,84,-13.5,0,0,-0.154297 -81158,3108:134:4,84.5,-13.5,0,0,-0.148059 -81159,3108:235:3,85,-13.5,0,0,-0.155287 -81160,3108:235:4,85.5,-13.5,0,0,-0.157484 -81161,3108:236:3,86,-13.5,0,0,-0.153271 -81162,3108:236:4,86.5,-13.5,0,0,-0.155435 -81163,3108:237:3,87,-13.5,0,0,-0.156221 -81164,3108:237:4,87.5,-13.5,0,0,-0.154401 -81165,3108:238:3,88,-13.5,0,0,-0.1484 -81166,3108:238:4,88.5,-13.5,0,0,-0.147618 -81167,3108:239:3,89,-13.5,0,0,-0.147858 -81168,3108:239:4,89.5,-13.5,0,0,-0.145873 -81169,3109:130:3,90,-13.5,0,0,-0.1438 -81170,3109:130:4,90.5,-13.5,0,0,-0.145204 -81171,3109:131:3,91,-13.5,0,0,-0.140582 -81172,3109:131:4,91.5,-13.5,0,0,-0.140092 -81173,3109:132:3,92,-13.5,0,0,-0.143722 -81174,3109:132:4,92.5,-13.5,0,0,-0.145459 -81175,3109:133:3,93,-13.5,0,0,-0.144033 -81176,3109:133:4,93.5,-13.5,0,0,-0.139292 -81177,3109:134:3,94,-13.5,0,0,-0.137571 -81178,3109:134:4,94.5,-13.5,0,0,-0.13605 -81179,3109:235:3,95,-13.5,0,0,-0.13605 -81180,3109:235:4,95.5,-13.5,0,0,-0.1432 -81181,3109:236:3,96,-13.5,0,0,-0.143548 -81182,3109:236:4,96.5,-13.5,0,0,-0.138361 -81183,3109:237:3,97,-13.5,0,0,-0.137773 -81184,3109:237:4,97.5,-13.5,0,0,-0.139258 -81185,3109:238:3,98,-13.5,0,0,-0.13605 -81186,3109:238:4,98.5,-13.5,0,0,-0.13605 -81187,3109:239:3,99,-13.5,0,0,-0.13605 -81188,3109:239:4,99.5,-13.5,0,0,-0.13605 -81189,3110:130:3,100,-13.5,0,0,-0.13605 -81190,3110:130:4,100.5,-13.5,0,0,-0.136679 -81191,3110:131:3,101,-13.5,0,0,-0.139716 -81192,3110:131:4,101.5,-13.5,0,0,-0.139434 -81193,3110:132:3,102,-13.5,0,0,-0.136937 -81194,3110:132:4,102.5,-13.5,0,0,-0.136511 -81195,3110:133:3,103,-13.5,0,0,-0.136136 -81196,3110:133:4,103.5,-13.5,0,0,-0.136182 -81197,3110:134:3,104,-13.5,0,0,-0.140942 -81198,3110:134:4,104.5,-13.5,0,0,-0.144305 -81199,3110:235:3,105,-13.5,0,0,-0.143045 -81200,3110:235:4,105.5,-13.5,0,0,-0.143316 -81201,3110:236:3,106,-13.5,0,0,-0.145617 -81202,3110:236:4,106.5,-13.5,0,0,-0.145557 -81203,3110:237:3,107,-13.5,0,0,-0.151408 -81204,3110:237:4,107.5,-13.5,0,0,-0.157376 -81205,3110:238:3,108,-13.5,0,0,-0.160547 -81206,3110:238:4,108.5,-13.5,0,0,-0.162806 -81207,3110:239:3,109,-13.5,0,0,-0.164491 -81208,3110:239:4,109.5,-13.5,0,0,-0.168359 -81209,3111:130:3,110,-13.5,0,0,-0.170344 -81210,3111:130:4,110.5,-13.5,0,0,-0.172213 -81211,3111:131:3,111,-13.5,0,0,-0.175485 -81212,3111:131:4,111.5,-13.5,0,0,-0.178284 -81213,3111:132:3,112,-13.5,0,0,-0.179078 -81214,3111:132:4,112.5,-13.5,0,0,-0.179702 -81215,3111:133:3,113,-13.5,0,0,-0.184036 -81216,3111:133:4,113.5,-13.5,0,0,-0.190244 -81217,3111:134:3,114,-13.5,0,0,-0.194696 -81218,3111:134:4,114.5,-13.5,0,0,-0.193652 -81219,3111:235:3,115,-13.5,0,0,-0.184835 -81220,3111:235:4,115.5,-13.5,0,0,-0.189551 -81221,3111:236:3,116,-13.5,0,0,-0.19296 -81222,3111:236:4,116.5,-13.5,0,0,-0.231648 -81223,3111:237:3,117,-13.5,0,0,-0.316142 -81224,3111:237:4,117.5,-13.5,0,0,-0.746335 -81225,3111:238:3,118,-13.5,0,0,-0.64814 -81226,3111:238:4,118.5,-13.5,0,0,-0.845121 -81227,3111:239:3,119,-13.5,0,0,-2.12896 -81228,3111:239:4,119.5,-13.5,0,0,-1.01791 -81229,3112:130:3,120,-13.5,0,0,-0.911966 -81230,3112:130:4,120.5,-13.5,0,0,-4.16587 -81231,3112:131:3,121,-13.5,0,0,5.61731 -81232,3112:131:4,121.5,-13.5,0,0,3.18033 -81233,3112:132:3,122,-13.5,0,0,7.27881 -81234,3112:132:4,122.5,-13.5,0,0,1.26176 -81235,3112:133:4,123.5,-13.5,0,0,1.13205 -81236,3113:239:3,139,-13.5,0,0,1.0801 -81237,3113:239:4,139.5,-13.5,0,0,1.07419 -81238,3114:130:3,140,-13.5,0,0,1.08054 -81239,3114:130:4,140.5,-13.5,0,0,1.08836 -81240,3114:131:3,141,-13.5,0,0,1.09375 -81241,3114:236:3,146,-13.5,0,0,-0.365118 -81242,3114:236:4,146.5,-13.5,0,0,-0.19474 -81243,3114:237:3,147,-13.5,0,0,-0.186157 -81244,3114:237:4,147.5,-13.5,0,0,-0.189524 -81245,3114:238:3,148,-13.5,0,0,-0.185015 -81246,3114:238:4,148.5,-13.5,0,0,-0.177394 -81247,3114:239:3,149,-13.5,0,0,-0.18179 -81248,3114:239:4,149.5,-13.5,0,0,-0.184473 -81249,3115:130:3,150,-13.5,0,0,-0.18342 -81250,3115:130:4,150.5,-13.5,0,0,-0.181512 -81251,3115:131:3,151,-13.5,0,0,-0.181841 -81252,3115:131:4,151.5,-13.5,0,0,-0.185196 -81253,3115:132:3,152,-13.5,0,0,-0.184318 -81254,3115:132:4,152.5,-13.5,0,0,-0.180002 -81255,3115:133:3,153,-13.5,0,0,-0.178581 -81256,3115:133:4,153.5,-13.5,0,0,-0.17868 -81257,3115:134:3,154,-13.5,0,0,-0.182222 -81258,3115:134:4,154.5,-13.5,0,0,-0.182884 -81259,3115:235:3,155,-13.5,0,0,-0.18136 -81260,3115:235:4,155.5,-13.5,0,0,-0.180705 -81261,3115:236:3,156,-13.5,0,0,-0.181108 -81262,3115:236:4,156.5,-13.5,0,0,-0.175048 -81263,3115:237:3,157,-13.5,0,0,-0.183472 -81264,3115:237:4,157.5,-13.5,0,0,-0.176853 -81265,3115:238:3,158,-13.5,0,0,-0.172904 -81266,3115:238:4,158.5,-13.5,0,0,-0.174395 -81267,3115:239:3,159,-13.5,0,0,-0.174636 -81268,3115:239:4,159.5,-13.5,0,0,-0.171571 -81269,3116:130:3,160,-13.5,0,0,-0.168035 -81270,3116:130:4,160.5,-13.5,0,0,-0.166699 -81271,3116:131:3,161,-13.5,0,0,-0.168614 -81272,3116:131:4,161.5,-13.5,0,0,-0.167411 -81273,3116:132:3,162,-13.5,0,0,-0.166172 -81274,3116:132:4,162.5,-13.5,0,0,-0.167989 -81275,3116:133:3,163,-13.5,0,0,-0.168823 -81276,3116:133:4,163.5,-13.5,0,0,-0.167919 -81277,3116:134:3,164,-13.5,0,0,-0.165465 -81278,3116:134:4,164.5,-13.5,0,0,-0.165193 -81279,3116:235:3,165,-13.5,0,0,-0.166355 -81280,3116:235:4,165.5,-13.5,0,0,-0.166058 -81281,3116:236:3,166,-13.5,0,0,-0.164921 -81282,3116:236:4,166.5,-13.5,0,0,-0.162918 -81283,3116:237:3,167,-13.5,0,0,-0.164243 -81284,3116:237:4,167.5,-13.5,0,0,-0.161672 -81285,3116:238:3,168,-13.5,0,0,-0.15744 -81286,3116:239:3,169,-13.5,0,0,-0.162272 -81287,3116:239:4,169.5,-13.5,0,0,-0.163769 -81288,3117:130:3,170,-13.5,0,0,-0.164333 -81289,3117:130:4,170.5,-13.5,0,0,-0.16431 -81290,3117:131:3,171,-13.5,0,0,-0.165033 -81291,3117:131:4,171.5,-13.5,0,0,-0.166378 -81292,3117:132:3,172,-13.5,0,0,-0.167342 -81293,3117:132:4,172.5,-13.5,0,0,-0.167642 -81294,3117:133:3,173,-13.5,0,0,-0.167919 -81295,3117:133:4,173.5,-13.5,0,0,-0.168428 -81296,3117:134:3,174,-13.5,0,0,-0.168614 -81297,3117:134:4,174.5,-13.5,0,0,-0.168614 -81298,3117:235:3,175,-13.5,0,0,-0.169033 -81299,3117:235:4,175.5,-13.5,0,0,-0.170391 -81300,3117:236:3,176,-13.5,0,0,-0.171074 -81301,3117:236:4,176.5,-13.5,0,0,-0.17018 -81302,3117:237:3,177,-13.5,0,0,-0.171145 -81303,3117:237:4,177.5,-13.5,0,0,-0.166081 -81304,3117:238:3,178,-13.5,0,0,-0.164491 -81305,3117:238:4,178.5,-13.5,0,0,-0.16829 -81306,3118:130:3,180,-13.5,0,0,-0.157591 -81307,5118:130:1,-180,-13,0,0,-0.166104 -81308,5117:239:2,-179.5,-13,0,0,-0.167965 -81309,5117:239:1,-179,-13,0,0,-0.168614 -81310,5117:238:2,-178.5,-13,0,0,-0.169033 -81311,5117:238:1,-178,-13,0,0,-0.168987 -81312,5117:237:2,-177.5,-13,0,0,-0.168104 -81313,5117:237:1,-177,-13,0,0,-0.1695 -81314,5117:236:2,-176.5,-13,0,0,-0.169406 -81315,5117:236:1,-176,-13,0,0,-0.169173 -81316,5117:235:2,-175.5,-13,0,0,-0.169196 -81317,5117:235:1,-175,-13,0,0,-0.171216 -81318,5117:134:2,-174.5,-13,0,0,-0.174395 -81319,5117:134:1,-174,-13,0,0,-0.177001 -81320,5117:133:2,-173.5,-13,0,0,-0.178879 -81321,5117:133:1,-173,-13,0,0,-0.18063 -81322,5117:132:2,-172.5,-13,0,0,-0.181538 -81323,5117:132:1,-172,-13,0,0,-0.180454 -81324,5117:131:2,-171.5,-13,0,0,-0.179927 -81325,5117:131:1,-171,-13,0,0,-0.18174 -81326,5117:130:2,-170.5,-13,0,0,-0.184447 -81327,5117:130:1,-170,-13,0,0,-0.185093 -81328,5116:239:2,-169.5,-13,0,0,-0.184912 -81329,5116:239:1,-169,-13,0,0,-0.186418 -81330,5116:238:2,-168.5,-13,0,0,-0.186131 -81331,5116:238:1,-168,-13,0,0,-0.184318 -81332,5116:237:2,-167.5,-13,0,0,-0.183548 -81333,5116:237:1,-167,-13,0,0,-0.185533 -81334,5116:236:2,-166.5,-13,0,0,-0.19094 -81335,5116:236:1,-166,-13,0,0,-0.190378 -81336,5116:235:2,-165.5,-13,0,0,-0.190324 -81337,5116:235:1,-165,-13,0,0,-0.191234 -81338,5116:134:2,-164.5,-13,0,0,-0.192773 -81339,5116:134:1,-164,-13,0,0,-0.196938 -81340,5116:133:2,-163.5,-13,0,0,-0.19896 -81341,5116:133:1,-163,-13,0,0,-0.197158 -81342,5116:132:2,-162.5,-13,0,0,-0.197647 -81343,5116:132:1,-162,-13,0,0,-0.208154 -81344,5116:131:2,-161.5,-13,0,0,-0.236285 -81345,5116:131:1,-161,-13,0,0,-0.276372 -81346,5116:130:2,-160.5,-13,0,0,-0.32134 -81347,5116:130:1,-160,-13,0,0,-0.295437 -81348,5115:239:2,-159.5,-13,0,0,-0.250876 -81349,5115:239:1,-159,-13,0,0,-0.269922 -81350,5115:238:2,-158.5,-13,0,0,-0.321869 -81351,5115:238:1,-158,-13,0,0,-0.325569 -81352,5115:237:2,-157.5,-13,0,0,-0.291686 -81353,5115:237:1,-157,-13,0,0,-0.271205 -81354,5115:236:2,-156.5,-13,0,0,-0.269922 -81355,5115:236:1,-156,-13,0,0,-0.286612 -81356,5115:235:2,-155.5,-13,0,0,-0.381585 -81357,5115:235:1,-155,-13,0,0,-0.433973 -81358,5115:134:2,-154.5,-13,0,0,-0.378343 -81359,5115:134:1,-154,-13,0,0,-0.460337 -81360,5115:133:2,-153.5,-13,0,0,-0.57295 -81361,5115:133:1,-153,-13,0,0,-0.532682 -81362,5115:132:2,-152.5,-13,0,0,-0.508252 -81363,5115:132:1,-152,-13,0,0,-0.534688 -81364,5115:131:2,-151.5,-13,0,0,-0.556592 -81365,5115:131:1,-151,-13,0,0,-0.610169 -81366,5115:130:2,-150.5,-13,0,0,-0.658814 -81367,5115:130:1,-150,-13,0,0,-0.72072 -81368,5114:239:2,-149.5,-13,0,0,-0.740005 -81369,5114:239:1,-149,-13,0,0,-0.735784 -81370,5114:238:2,-148.5,-13,0,0,-0.707056 -81371,5114:238:1,-148,-13,0,0,-0.607731 -81372,5114:237:2,-147.5,-13,0,0,-0.495214 -81373,5114:237:1,-147,-13,0,0,-0.459501 -81374,5114:236:2,-146.5,-13,0,0,-0.418952 -81375,5114:236:1,-146,-13,0,0,-0.426365 -81376,5114:235:2,-145.5,-13,0,0,-0.457032 -81377,5114:235:1,-145,-13,0,0,-0.396957 -81378,5114:134:2,-144.5,-13,0,0,-0.39423 -81379,5114:134:1,-144,-13,0,0,-0.378993 -81380,5114:133:2,-143.5,-13,0,0,-0.369454 -81381,5114:133:1,-143,-13,0,0,-0.338695 -81382,5114:132:1,-142,-13,0,0,-0.305573 -81383,5114:131:2,-141.5,-13,0,0,-0.346639 -81384,5114:131:1,-141,-13,0,0,-0.35662 -81385,5114:130:2,-140.5,-13,0,0,-0.350128 -81386,5114:130:1,-140,-13,0,0,-0.336448 -81387,5113:239:2,-139.5,-13,0,0,-0.315124 -81388,5113:239:1,-139,-13,0,0,-0.303118 -81389,5113:238:2,-138.5,-13,0,0,-0.297334 -81390,5113:238:1,-138,-13,0,0,-0.298764 -81391,5113:237:2,-137.5,-13,0,0,-0.297334 -81392,5113:237:1,-137,-13,0,0,-0.287532 -81393,5113:236:2,-136.5,-13,0,0,-0.269509 -81394,5113:236:1,-136,-13,0,0,-0.248184 -81395,5113:235:2,-135.5,-13,0,0,-0.229551 -81396,5113:235:1,-135,-13,0,0,-0.224738 -81397,5113:134:2,-134.5,-13,0,0,-0.238835 -81398,5113:134:1,-134,-13,0,0,-0.246277 -81399,5113:133:2,-133.5,-13,0,0,-0.236649 -81400,5113:133:1,-133,-13,0,0,-0.221468 -81401,5113:132:2,-132.5,-13,0,0,-0.215105 -81402,5113:132:1,-132,-13,0,0,-0.211805 -81403,5113:131:2,-131.5,-13,0,0,-0.206968 -81404,5113:131:1,-131,-13,0,0,-0.207397 -81405,5113:130:2,-130.5,-13,0,0,-0.202943 -81406,5113:130:1,-130,-13,0,0,-0.197115 -81407,5112:239:2,-129.5,-13,0,0,-0.19387 -81408,5112:239:1,-129,-13,0,0,-0.192719 -81409,5112:238:2,-128.5,-13,0,0,-0.192097 -81410,5112:238:1,-128,-13,0,0,-0.1911 -81411,5112:237:2,-127.5,-13,0,0,-0.190564 -81412,5112:237:1,-127,-13,0,0,-0.189924 -81413,5112:236:2,-126.5,-13,0,0,-0.188702 -81414,5112:236:1,-126,-13,0,0,-0.186157 -81415,5112:235:2,-125.5,-13,0,0,-0.183293 -81416,5112:235:1,-125,-13,0,0,-0.181664 -81417,5112:134:2,-124.5,-13,0,0,-0.178556 -81418,5112:134:1,-124,-13,0,0,-0.176657 -81419,5112:133:2,-123.5,-13,0,0,-0.177912 -81420,5112:133:1,-123,-13,0,0,-0.178556 -81421,5112:132:2,-122.5,-13,0,0,-0.17878 -81422,5112:132:1,-122,-13,0,0,-0.17769 -81423,5112:131:2,-121.5,-13,0,0,-0.174418 -81424,5112:131:1,-121,-13,0,0,-0.171193 -81425,5112:130:2,-120.5,-13,0,0,-0.168545 -81426,5112:130:1,-120,-13,0,0,-0.165511 -81427,5111:239:2,-119.5,-13,0,0,-0.163456 -81428,5111:239:1,-119,-13,0,0,-0.161054 -81429,5111:238:2,-118.5,-13,0,0,-0.157785 -81430,5111:238:1,-118,-13,0,0,-0.155414 -81431,5111:237:2,-117.5,-13,0,0,-0.154149 -81432,5111:237:1,-117,-13,0,0,-0.152026 -81433,5111:236:2,-116.5,-13,0,0,-0.149126 -81434,5111:236:1,-116,-13,0,0,-0.146742 -81435,5111:235:2,-115.5,-13,0,0,-0.145636 -81436,5111:235:1,-115,-13,0,0,-0.144754 -81437,5111:134:2,-114.5,-13,0,0,-0.143278 -81438,5111:134:1,-114,-13,0,0,-0.141456 -81439,5111:133:2,-113.5,-13,0,0,-0.139156 -81440,5111:133:1,-113,-13,0,0,-0.136071 -81441,5111:132:2,-112.5,-13,0,0,-0.13605 -81442,5111:132:1,-112,-13,0,0,-0.13605 -81443,5111:131:2,-111.5,-13,0,0,-0.13605 -81444,5111:131:1,-111,-13,0,0,-0.13605 -81445,5111:130:2,-110.5,-13,0,0,-0.13605 -81446,5111:130:1,-110,-13,0,0,-0.13605 -81447,5110:239:2,-109.5,-13,0,0,-0.13605 -81448,5110:239:1,-109,-13,0,0,-0.13605 -81449,5110:238:2,-108.5,-13,0,0,-0.13605 -81450,5110:238:1,-108,-13,0,0,-0.13605 -81451,5110:237:2,-107.5,-13,0,0,-0.13605 -81452,5110:237:1,-107,-13,0,0,-0.13605 -81453,5110:236:2,-106.5,-13,0,0,-0.13605 -81454,5110:236:1,-106,-13,0,0,-0.13605 -81455,5110:235:2,-105.5,-13,0,0,-0.13605 -81456,5110:235:1,-105,-13,0,0,-0.13605 -81457,5110:134:2,-104.5,-13,0,0,-0.13605 -81458,5110:134:1,-104,-13,0,0,-0.13605 -81459,5110:133:2,-103.5,-13,0,0,-0.13605 -81460,5110:133:1,-103,-13,0,0,-0.13605 -81461,5110:132:2,-102.5,-13,0,0,-0.13605 -81462,5110:132:1,-102,-13,0,0,-0.13605 -81463,5110:131:2,-101.5,-13,0,0,-0.13605 -81464,5110:131:1,-101,-13,0,0,-0.13605 -81465,5110:130:2,-100.5,-13,0,0,-0.13605 -81466,5110:130:1,-100,-13,0,0,-0.13605 -81467,5109:239:2,-99.5,-13,0,0,-0.13605 -81468,5109:239:1,-99,-13,0,0,-0.13605 -81469,5109:238:2,-98.5,-13,0,0,-0.13605 -81470,5109:238:1,-98,-13,0,0,-0.13605 -81471,5109:237:2,-97.5,-13,0,0,-0.13605 -81472,5109:237:1,-97,-13,0,0,-0.13605 -81473,5109:236:2,-96.5,-13,0,0,-0.13605 -81474,5109:236:1,-96,-13,0,0,-0.13605 -81475,5109:235:2,-95.5,-13,0,0,-0.13605 -81476,5109:235:1,-95,-13,0,0,-0.13605 -81477,5109:134:2,-94.5,-13,0,0,-0.13605 -81478,5109:134:1,-94,-13,0,0,-0.13605 -81479,5109:133:2,-93.5,-13,0,0,-0.13605 -81480,5109:133:1,-93,-13,0,0,-0.13605 -81481,5109:132:2,-92.5,-13,0,0,-0.13605 -81482,5109:132:1,-92,-13,0,0,-0.13605 -81483,5109:131:2,-91.5,-13,0,0,-0.13605 -81484,5109:131:1,-91,-13,0,0,-0.13605 -81485,5109:130:2,-90.5,-13,0,0,-0.13605 -81486,5109:130:1,-90,-13,0,0,-0.13605 -81487,5108:239:2,-89.5,-13,0,0,-0.13605 -81488,5108:239:1,-89,-13,0,0,-0.13605 -81489,5108:238:2,-88.5,-13,0,0,-0.13605 -81490,5108:238:1,-88,-13,0,0,-0.13605 -81491,5108:237:2,-87.5,-13,0,0,-0.13605 -81492,5108:237:1,-87,-13,0,0,-0.13605 -81493,5108:236:2,-86.5,-13,0,0,-0.13605 -81494,5108:236:1,-86,-13,0,0,-0.13605 -81495,5108:235:2,-85.5,-13,0,0,-0.13605 -81496,5108:235:1,-85,-13,0,0,-0.13605 -81497,5108:134:2,-84.5,-13,0,0,-0.13605 -81498,5108:134:1,-84,-13,0,0,-0.13605 -81499,5108:133:2,-83.5,-13,0,0,-0.13605 -81500,5108:133:1,-83,-13,0,0,-0.13605 -81501,5108:132:2,-82.5,-13,0,0,-0.13605 -81502,5108:132:1,-82,-13,0,0,-0.13605 -81503,5108:131:2,-81.5,-13,0,0,-0.13605 -81504,5108:131:1,-81,-13,0,0,-0.13605 -81505,5108:130:2,-80.5,-13,0,0,-0.13605 -81506,5108:130:1,-80,-13,0,0,-0.13605 -81507,5107:239:2,-79.5,-13,0,0,-0.13605 -81508,5107:239:1,-79,-13,0,0,-0.13605 -81509,5107:238:2,-78.5,-13,0,0,-0.13605 -81510,5107:238:1,-78,-13,0,0,-0.13605 -81511,5107:237:2,-77.5,-13,0,0,-0.13605 -81512,5107:237:1,-77,-13,0,0,-0.13605 -81513,5107:236:2,-76.5,-13,0,0,-0.13605 -81514,5107:236:1,-76,-13,0,0,-0.13605 -81515,5107:235:2,-75.5,-13,0,0,-0.13605 -81516,5107:235:1,-75,-13,0,0,-0.13605 -81517,5107:134:2,-74.5,-13,0,0,-0.13605 -81518,5103:239:1,-39,-13,0,0,-0.146405 -81519,5103:238:2,-38.5,-13,0,0,-0.170862 -81520,5103:238:1,-38,-13,0,0,-0.178135 -81521,5103:237:2,-37.5,-13,0,0,-0.179278 -81522,5103:237:1,-37,-13,0,0,-0.180479 -81523,5103:236:2,-36.5,-13,0,0,-0.178432 -81524,5103:236:1,-36,-13,0,0,-0.177813 -81525,5103:235:2,-35.5,-13,0,0,-0.17651 -81526,5103:235:1,-35,-13,0,0,-0.175363 -81527,5103:134:2,-34.5,-13,0,0,-0.173624 -81528,5103:134:1,-34,-13,0,0,-0.171809 -81529,5103:133:2,-33.5,-13,0,0,-0.170367 -81530,5103:133:1,-33,-13,0,0,-0.168196 -81531,5103:132:2,-32.5,-13,0,0,-0.165989 -81532,5103:132:1,-32,-13,0,0,-0.163882 -81533,5103:131:2,-31.5,-13,0,0,-0.161296 -81534,5103:131:1,-31,-13,0,0,-0.159192 -81535,5103:130:2,-30.5,-13,0,0,-0.157333 -81536,5103:130:1,-30,-13,0,0,-0.155181 -81537,5102:239:2,-29.5,-13,0,0,-0.153417 -81538,5102:239:1,-29,-13,0,0,-0.151841 -81539,5102:238:2,-28.5,-13,0,0,-0.149956 -81540,5102:238:1,-28,-13,0,0,-0.147339 -81541,5102:237:2,-27.5,-13,0,0,-0.145047 -81542,5102:237:1,-27,-13,0,0,-0.142488 -81543,5102:236:2,-26.5,-13,0,0,-0.139224 -81544,5102:236:1,-26,-13,0,0,-0.137371 -81545,5102:235:2,-25.5,-13,0,0,-0.136537 -81546,5102:235:1,-25,-13,0,0,-0.13617 -81547,5102:134:2,-24.5,-13,0,0,-0.13605 -81548,5102:134:1,-24,-13,0,0,-0.13605 -81549,5102:133:2,-23.5,-13,0,0,-0.13605 -81550,5102:133:1,-23,-13,0,0,-0.13605 -81551,5102:132:2,-22.5,-13,0,0,-0.13605 -81552,5102:132:1,-22,-13,0,0,-0.13605 -81553,5102:131:2,-21.5,-13,0,0,-0.13605 -81554,5102:131:1,-21,-13,0,0,-0.13605 -81555,5102:130:2,-20.5,-13,0,0,-0.13605 -81556,5102:130:1,-20,-13,0,0,-0.13605 -81557,5101:239:2,-19.5,-13,0,0,-0.13605 -81558,5101:239:1,-19,-13,0,0,-0.13605 -81559,5101:238:2,-18.5,-13,0,0,-0.13605 -81560,5101:238:1,-18,-13,0,0,-0.13605 -81561,5101:237:2,-17.5,-13,0,0,-0.13605 -81562,5101:237:1,-17,-13,0,0,-0.13605 -81563,5101:236:2,-16.5,-13,0,0,-0.13605 -81564,5101:236:1,-16,-13,0,0,-0.13605 -81565,5101:235:2,-15.5,-13,0,0,-0.13605 -81566,5101:235:1,-15,-13,0,0,-0.13605 -81567,5101:134:2,-14.5,-13,0,0,-0.13605 -81568,5101:134:1,-14,-13,0,0,-0.13605 -81569,5101:133:2,-13.5,-13,0,0,-0.13605 -81570,5101:133:1,-13,-13,0,0,-0.13605 -81571,5101:132:2,-12.5,-13,0,0,-0.13605 -81572,5101:132:1,-12,-13,0,0,-0.13605 -81573,5101:131:2,-11.5,-13,0,0,-0.13605 -81574,5101:131:1,-11,-13,0,0,-0.13605 -81575,5101:130:2,-10.5,-13,0,0,-0.13605 -81576,5101:130:1,-10,-13,0,0,-0.13605 -81577,5100:239:2,-9.5,-13,0,0,-0.13605 -81578,5100:239:1,-9,-13,0,0,-0.13605 -81579,5100:238:2,-8.5,-13,0,0,-0.13605 -81580,5100:238:1,-8,-13,0,0,-0.13605 -81581,5100:237:2,-7.5,-13,0,0,-0.13605 -81582,5100:237:1,-7,-13,0,0,-0.13605 -81583,5100:236:2,-6.5,-13,0,0,-0.13605 -81584,5100:236:1,-6,-13,0,0,-0.13605 -81585,5100:235:2,-5.5,-13,0,0,-0.13605 -81586,5100:235:1,-5,-13,0,0,-0.13605 -81587,5100:134:2,-4.5,-13,0,0,-0.13605 -81588,5100:134:1,-4,-13,0,0,-0.13605 -81589,5100:133:2,-3.5,-13,0,0,-0.13605 -81590,5100:133:1,-3,-13,0,0,-0.13605 -81591,5100:132:2,-2.5,-13,0,0,-0.13605 -81592,5100:132:1,-2,-13,0,0,-0.13605 -81593,5100:131:2,-1.5,-13,0,0,-0.13605 -81594,5100:131:1,-1,-13,0,0,-0.13605 -81595,5100:130:2,-0.5,-13,0,0,-0.13605 -81596,3100:130:2,0,-13,0,0,-0.13605 -81597,3100:130:2,0.5,-13,0,0,-0.13605 -81598,3100:131:1,1,-13,0,0,-0.13605 -81599,3100:131:2,1.5,-13,0,0,-0.13605 -81600,3100:132:1,2,-13,0,0,-0.13605 -81601,3100:132:2,2.5,-13,0,0,-0.13605 -81602,3100:133:1,3,-13,0,0,-0.13605 -81603,3100:133:2,3.5,-13,0,0,-0.13605 -81604,3100:134:1,4,-13,0,0,-0.13605 -81605,3100:134:2,4.5,-13,0,0,-0.13605 -81606,3100:235:1,5,-13,0,0,-0.13605 -81607,3100:235:2,5.5,-13,0,0,-0.13605 -81608,3100:236:1,6,-13,0,0,-0.13605 -81609,3100:236:2,6.5,-13,0,0,-0.13605 -81610,3100:237:1,7,-13,0,0,-0.13605 -81611,3100:237:2,7.5,-13,0,0,-0.13605 -81612,3100:238:1,8,-13,0,0,-0.13605 -81613,3100:238:2,8.5,-13,0,0,-0.13605 -81614,3100:239:1,9,-13,0,0,-0.13605 -81615,3100:239:2,9.5,-13,0,0,-0.13605 -81616,3101:130:1,10,-13,0,0,-0.13605 -81617,3101:130:2,10.5,-13,0,0,-0.13605 -81618,3101:131:1,11,-13,0,0,-0.13605 -81619,3101:131:2,11.5,-13,0,0,-0.13605 -81620,3104:130:1,40,-13,0,0,-2.53137 -81621,3104:130:2,40.5,-13,0,0,2.03361 -81622,3104:131:1,41,-13,0,0,2.37212 -81623,3104:131:2,41.5,-13,0,0,2.08848 -81624,3104:132:1,42,-13,0,0,1.51552 -81625,3104:132:2,42.5,-13,0,0,1.34879 -81626,3104:133:1,43,-13,0,0,1.30541 -81627,3104:133:2,43.5,-13,0,0,1.28409 -81628,3104:134:1,44,-13,0,0,1.19197 -81629,3104:134:2,44.5,-13,0,0,1.16546 -81630,3104:239:2,49.5,-13,0,0,-0.275496 -81631,3105:130:1,50,-13,0,0,-0.190057 -81632,3105:130:2,50.5,-13,0,0,-0.192177 -81633,3105:131:1,51,-13,0,0,-0.187097 -81634,3105:131:2,51.5,-13,0,0,-0.183088 -81635,3105:132:1,52,-13,0,0,-0.18073 -81636,3105:132:2,52.5,-13,0,0,-0.178655 -81637,3105:133:1,53,-13,0,0,-0.175412 -81638,3105:133:2,53.5,-13,0,0,-0.174105 -81639,3105:134:1,54,-13,0,0,-0.174709 -81640,3105:134:2,54.5,-13,0,0,-0.175851 -81641,3105:235:1,55,-13,0,0,-0.176486 -81642,3105:235:2,55.5,-13,0,0,-0.176486 -81643,3105:236:1,56,-13,0,0,-0.176559 -81644,3105:236:2,56.5,-13,0,0,-0.177591 -81645,3105:237:1,57,-13,0,0,-0.17883 -81646,3105:237:2,57.5,-13,0,0,-0.178805 -81647,3105:238:1,58,-13,0,0,-0.177937 -81648,3105:238:2,58.5,-13,0,0,-0.177567 -81649,3105:239:1,59,-13,0,0,-0.174975 -81650,3105:239:2,59.5,-13,0,0,-0.171074 -81651,3106:130:1,60,-13,0,0,-0.172023 -81652,3106:130:2,60.5,-13,0,0,-0.169266 -81653,3106:131:1,61,-13,0,0,-0.168359 -81654,3106:131:2,61.5,-13,0,0,-0.167919 -81655,3106:132:1,62,-13,0,0,-0.166515 -81656,3106:132:2,62.5,-13,0,0,-0.165738 -81657,3106:133:1,63,-13,0,0,-0.165556 -81658,3106:133:2,63.5,-13,0,0,-0.165442 -81659,3106:134:1,64,-13,0,0,-0.164875 -81660,3106:134:2,64.5,-13,0,0,-0.164536 -81661,3106:235:1,65,-13,0,0,-0.164513 -81662,3106:235:2,65.5,-13,0,0,-0.164243 -81663,3106:236:1,66,-13,0,0,-0.164084 -81664,3106:236:2,66.5,-13,0,0,-0.164107 -81665,3106:237:1,67,-13,0,0,-0.163927 -81666,3106:237:2,67.5,-13,0,0,-0.16368 -81667,3106:238:1,68,-13,0,0,-0.16294 -81668,3106:238:2,68.5,-13,0,0,-0.162116 -81669,3106:239:1,69,-13,0,0,-0.161672 -81670,3106:239:2,69.5,-13,0,0,-0.161407 -81671,3107:130:1,70,-13,0,0,-0.16154 -81672,3107:130:2,70.5,-13,0,0,-0.161917 -81673,3107:131:1,71,-13,0,0,-0.162183 -81674,3107:131:2,71.5,-13,0,0,-0.163052 -81675,3107:132:1,72,-13,0,0,-0.163658 -81676,3107:132:2,72.5,-13,0,0,-0.165125 -81677,3107:133:2,73.5,-13,0,0,-0.167573 -81678,3107:134:1,74,-13,0,0,-0.169523 -81679,3107:134:2,74.5,-13,0,0,-0.170556 -81680,3107:235:1,75,-13,0,0,-0.169898 -81681,3107:235:2,75.5,-13,0,0,-0.168894 -81682,3107:236:1,76,-13,0,0,-0.168475 -81683,3107:236:2,76.5,-13,0,0,-0.168243 -81684,3107:237:1,77,-13,0,0,-0.168312 -81685,3107:237:2,77.5,-13,0,0,-0.168707 -81686,3107:238:1,78,-13,0,0,-0.16901 -81687,3107:238:2,78.5,-13,0,0,-0.168266 -81688,3107:239:1,79,-13,0,0,-0.167227 -81689,3107:239:2,79.5,-13,0,0,-0.167642 -81690,3108:130:1,80,-13,0,0,-0.169196 -81691,3108:130:2,80.5,-13,0,0,-0.168359 -81692,3108:131:1,81,-13,0,0,-0.167803 -81693,3108:131:2,81.5,-13,0,0,-0.166859 -81694,3108:132:1,82,-13,0,0,-0.164875 -81695,3108:132:2,82.5,-13,0,0,-0.16185 -81696,3108:133:1,83,-13,0,0,-0.160328 -81697,3108:133:2,83.5,-13,0,0,-0.163343 -81698,3108:134:1,84,-13,0,0,-0.162851 -81699,3108:134:2,84.5,-13,0,0,-0.159344 -81700,3108:235:1,85,-13,0,0,-0.154949 -81701,3108:235:2,85.5,-13,0,0,-0.160833 -81702,3108:236:1,86,-13,0,0,-0.155139 -81703,3108:236:2,86.5,-13,0,0,-0.154381 -81704,3108:237:1,87,-13,0,0,-0.153898 -81705,3108:237:2,87.5,-13,0,0,-0.151511 -81706,3108:238:1,88,-13,0,0,-0.151531 -81707,3108:238:2,88.5,-13,0,0,-0.151944 -81708,3108:239:1,89,-13,0,0,-0.154864 -81709,3108:239:2,89.5,-13,0,0,-0.153856 -81710,3109:130:1,90,-13,0,0,-0.150384 -81711,3109:130:2,90.5,-13,0,0,-0.149469 -81712,3109:131:1,91,-13,0,0,-0.15018 -81713,3109:131:2,91.5,-13,0,0,-0.148984 -81714,3109:132:1,92,-13,0,0,-0.147659 -81715,3109:132:2,92.5,-13,0,0,-0.147499 -81716,3109:133:1,93,-13,0,0,-0.146465 -81717,3109:133:2,93.5,-13,0,0,-0.140867 -81718,3109:134:1,94,-13,0,0,-0.138361 -81719,3109:134:2,94.5,-13,0,0,-0.137204 -81720,3109:235:1,95,-13,0,0,-0.142066 -81721,3109:235:2,95.5,-13,0,0,-0.147899 -81722,3109:236:1,96,-13,0,0,-0.141589 -81723,3109:236:2,96.5,-13,0,0,-0.14045 -81724,3109:237:1,97,-13,0,0,-0.140205 -81725,3109:237:2,97.5,-13,0,0,-0.143104 -81726,3109:238:1,98,-13,0,0,-0.143451 -81727,3109:238:2,98.5,-13,0,0,-0.137154 -81728,3109:239:1,99,-13,0,0,-0.139071 -81729,3109:239:2,99.5,-13,0,0,-0.142296 -81730,3110:130:1,100,-13,0,0,-0.141341 -81731,3110:130:2,100.5,-13,0,0,-0.138986 -81732,3110:131:1,101,-13,0,0,-0.146961 -81733,3110:131:2,101.5,-13,0,0,-0.153126 -81734,3110:132:1,102,-13,0,0,-0.149024 -81735,3110:132:2,102.5,-13,0,0,-0.146307 -81736,3110:133:1,103,-13,0,0,-0.147279 -81737,3110:133:2,103.5,-13,0,0,-0.1511 -81738,3110:134:1,104,-13,0,0,-0.151203 -81739,3110:134:2,104.5,-13,0,0,-0.1511 -81740,3110:235:1,105,-13,0,0,-0.151059 -81741,3110:235:2,105.5,-13,0,0,-0.149632 -81742,3110:236:1,106,-13,0,0,-0.149287 -81743,3110:236:2,106.5,-13,0,0,-0.148903 -81744,3110:237:1,107,-13,0,0,-0.155266 -81745,3110:237:2,107.5,-13,0,0,-0.164943 -81746,3110:238:1,108,-13,0,0,-0.170485 -81747,3110:238:2,108.5,-13,0,0,-0.17032 -81748,3110:239:1,109,-13,0,0,-0.167411 -81749,3110:239:2,109.5,-13,0,0,-0.171429 -81750,3111:130:1,110,-13,0,0,-0.172046 -81751,3111:130:2,110.5,-13,0,0,-0.173936 -81752,3111:131:1,111,-13,0,0,-0.174298 -81753,3111:131:2,111.5,-13,0,0,-0.177419 -81754,3111:132:1,112,-13,0,0,-0.182095 -81755,3111:132:2,112.5,-13,0,0,-0.185404 -81756,3111:133:1,113,-13,0,0,-0.187885 -81757,3111:133:2,113.5,-13,0,0,-0.192475 -81758,3111:134:1,114,-13,0,0,-0.219219 -81759,3111:134:2,114.5,-13,0,0,-0.279438 -81760,3111:235:1,115,-13,0,0,-0.272051 -81761,3111:235:2,115.5,-13,0,0,-0.196011 -81762,3111:236:1,116,-13,0,0,-0.234848 -81763,3111:236:2,116.5,-13,0,0,-0.320812 -81764,3111:237:1,117,-13,0,0,-0.455404 -81765,3111:237:2,117.5,-13,0,0,-1.3062 -81766,3111:238:1,118,-13,0,0,-1.43793 -81767,3111:238:2,118.5,-13,0,0,-1.42461 -81768,3111:239:1,119,-13,0,0,-10.1983 -81769,3111:239:2,119.5,-13,0,0,-10.1983 -81770,3112:130:1,120,-13,0,0,-4.16587 -81771,3112:130:2,120.5,-13,0,0,-10.9011 -81772,3112:131:1,121,-13,0,0,2.19202 -81773,3112:131:2,121.5,-13,0,0,1.90495 -81774,3112:132:1,122,-13,0,0,1.85694 -81775,3112:132:2,122.5,-13,0,0,1.60839 -81776,3112:133:1,123,-13,0,0,1.49352 -81777,3112:133:2,123.5,-13,0,0,1.18165 -81778,3112:134:1,124,-13,0,0,1.11385 -81779,3112:134:2,124.5,-13,0,0,1.08659 -81780,3113:237:2,137.5,-13,0,0,1.07272 -81781,3113:238:1,138,-13,0,0,1.07372 -81782,3113:238:2,138.5,-13,0,0,1.0837 -81783,3113:239:1,139,-13,0,0,1.08951 -81784,3113:239:2,139.5,-13,0,0,1.09427 -81785,3114:130:1,140,-13,0,0,1.10482 -81786,3114:130:2,140.5,-13,0,0,1.14318 -81787,3114:131:1,141,-13,0,0,1.14499 -81788,3114:131:2,141.5,-13,0,0,1.11581 -81789,3114:236:1,146,-13,0,0,-0.201668 -81790,3114:236:2,146.5,-13,0,0,-0.187937 -81791,3114:237:1,147,-13,0,0,-0.1911 -81792,3114:237:2,147.5,-13,0,0,-0.192421 -81793,3114:238:1,148,-13,0,0,-0.190217 -81794,3114:238:2,148.5,-13,0,0,-0.190832 -81795,3114:239:1,149,-13,0,0,-0.191692 -81796,3114:239:2,149.5,-13,0,0,-0.188174 -81797,3115:130:1,150,-13,0,0,-0.188121 -81798,3115:130:2,150.5,-13,0,0,-0.188623 -81799,3115:131:1,151,-13,0,0,-0.185819 -81800,3115:131:2,151.5,-13,0,0,-0.187858 -81801,3115:132:1,152,-13,0,0,-0.191208 -81802,3115:132:2,152.5,-13,0,0,-0.190564 -81803,3115:133:1,153,-13,0,0,-0.188438 -81804,3115:133:2,153.5,-13,0,0,-0.189258 -81805,3115:134:1,154,-13,0,0,-0.188782 -81806,3115:134:2,154.5,-13,0,0,-0.189073 -81807,3115:235:1,155,-13,0,0,-0.185949 -81808,3115:235:2,155.5,-13,0,0,-0.186548 -81809,3115:236:1,156,-13,0,0,-0.185067 -81810,3115:236:2,156.5,-13,0,0,-0.184447 -81811,3115:237:1,157,-13,0,0,-0.183651 -81812,3115:237:2,157.5,-13,0,0,-0.181512 -81813,3115:238:1,158,-13,0,0,-0.183011 -81814,3115:238:2,158.5,-13,0,0,-0.180128 -81815,3115:239:1,159,-13,0,0,-0.176951 -81816,3115:239:2,159.5,-13,0,0,-0.174491 -81817,3116:130:1,160,-13,0,0,-0.174612 -81818,3116:130:2,160.5,-13,0,0,-0.175072 -81819,3116:131:1,161,-13,0,0,-0.173889 -81820,3116:131:2,161.5,-13,0,0,-0.17336 -81821,3116:132:1,162,-13,0,0,-0.173648 -81822,3116:132:2,162.5,-13,0,0,-0.174612 -81823,3116:133:1,163,-13,0,0,-0.173192 -81824,3116:133:2,163.5,-13,0,0,-0.16936 -81825,3116:134:1,164,-13,0,0,-0.166859 -81826,3116:134:2,164.5,-13,0,0,-0.169594 -81827,3116:235:1,165,-13,0,0,-0.17169 -81828,3116:235:2,165.5,-13,0,0,-0.171619 -81829,3116:236:1,166,-13,0,0,-0.17324 -81830,3116:236:2,166.5,-13,0,0,-0.172308 -81831,3116:237:1,167,-13,0,0,-0.166836 -81832,3116:238:1,168,-13,0,0,-0.168312 -81833,3116:238:2,168.5,-13,0,0,-0.169827 -81834,3116:239:1,169,-13,0,0,-0.172308 -81835,3116:239:2,169.5,-13,0,0,-0.174927 -81836,3117:130:1,170,-13,0,0,-0.175729 -81837,3117:130:2,170.5,-13,0,0,-0.175777 -81838,3117:131:1,171,-13,0,0,-0.175997 -81839,3117:131:2,171.5,-13,0,0,-0.176339 -81840,3117:132:1,172,-13,0,0,-0.176193 -81841,3117:132:2,172.5,-13,0,0,-0.175631 -81842,3117:133:1,173,-13,0,0,-0.175729 -81843,3117:133:2,173.5,-13,0,0,-0.176143 -81844,3117:134:1,174,-13,0,0,-0.17568 -81845,3117:134:2,174.5,-13,0,0,-0.175388 -81846,3117:235:1,175,-13,0,0,-0.176266 -81847,3117:235:2,175.5,-13,0,0,-0.177296 -81848,3117:236:1,176,-13,0,0,-0.176094 -81849,3117:236:2,176.5,-13,0,0,-0.174225 -81850,3117:237:1,177,-13,0,0,-0.17483 -81851,3117:237:2,177.5,-13,0,0,-0.173672 -81852,3117:238:1,178,-13,0,0,-0.171785 -81853,3117:238:2,178.5,-13,0,0,-0.171524 -81854,3117:239:1,179,-13,0,0,-0.17025 -81855,3117:239:2,179.5,-13,0,0,-0.168963 -81856,3118:130:1,180,-13,0,0,-0.166104 -81857,5118:120:3,-180,-12.5,0,0,-0.176461 -81858,5117:229:4,-179.5,-12.5,0,0,-0.176412 -81859,5117:229:3,-179,-12.5,0,0,-0.177173 -81860,5117:228:4,-178.5,-12.5,0,0,-0.177888 -81861,5117:228:3,-178,-12.5,0,0,-0.17816 -81862,5117:227:4,-177.5,-12.5,0,0,-0.179128 -81863,5117:227:3,-177,-12.5,0,0,-0.180203 -81864,5117:226:4,-176.5,-12.5,0,0,-0.181639 -81865,5117:226:3,-176,-12.5,0,0,-0.182654 -81866,5117:225:4,-175.5,-12.5,0,0,-0.183548 -81867,5117:225:3,-175,-12.5,0,0,-0.185793 -81868,5117:124:4,-174.5,-12.5,0,0,-0.187964 -81869,5117:124:3,-174,-12.5,0,0,-0.190217 -81870,5117:123:4,-173.5,-12.5,0,0,-0.19215 -81871,5117:123:3,-173,-12.5,0,0,-0.194522 -81872,5117:122:4,-172.5,-12.5,0,0,-0.197026 -81873,5117:122:3,-172,-12.5,0,0,-0.19818 -81874,5117:121:4,-171.5,-12.5,0,0,-0.19896 -81875,5117:121:3,-171,-12.5,0,0,-0.19818 -81876,5117:120:4,-170.5,-12.5,0,0,-0.198136 -81877,5117:120:3,-170,-12.5,0,0,-0.196938 -81878,5116:229:4,-169.5,-12.5,0,0,-0.196938 -81879,5116:229:3,-169,-12.5,0,0,-0.197557 -81880,5116:228:4,-168.5,-12.5,0,0,-0.197203 -81881,5116:228:3,-168,-12.5,0,0,-0.197825 -81882,5116:227:4,-167.5,-12.5,0,0,-0.199119 -81883,5116:227:3,-167,-12.5,0,0,-0.210724 -81884,5116:226:4,-166.5,-12.5,0,0,-0.2381 -81885,5116:226:3,-166,-12.5,0,0,-0.247798 -81886,5116:225:4,-165.5,-12.5,0,0,-0.265317 -81887,5116:225:3,-165,-12.5,0,0,-0.267812 -81888,5116:124:4,-164.5,-12.5,0,0,-0.272482 -81889,5116:124:3,-164,-12.5,0,0,-0.270776 -81890,5116:123:4,-163.5,-12.5,0,0,-0.260795 -81891,5116:123:3,-163,-12.5,0,0,-0.283903 -81892,5116:122:4,-162.5,-12.5,0,0,-0.348387 -81893,5116:122:3,-162,-12.5,0,0,-0.407395 -81894,5116:121:4,-161.5,-12.5,0,0,-0.476491 -81895,5116:121:3,-161,-12.5,0,0,-0.543921 -81896,5116:120:4,-160.5,-12.5,0,0,-0.612584 -81897,5116:120:3,-160,-12.5,0,0,-0.613814 -81898,5115:229:4,-159.5,-12.5,0,0,-0.579698 -81899,5115:229:3,-159,-12.5,0,0,-0.575199 -81900,5115:228:4,-158.5,-12.5,0,0,-0.555516 -81901,5115:228:3,-158,-12.5,0,0,-0.512057 -81902,5115:227:4,-157.5,-12.5,0,0,-0.480868 -81903,5115:227:3,-157,-12.5,0,0,-0.475617 -81904,5115:226:4,-156.5,-12.5,0,0,-0.515901 -81905,5115:226:3,-156,-12.5,0,0,-0.593488 -81906,5115:225:4,-155.5,-12.5,0,0,-0.662869 -81907,5115:225:3,-155,-12.5,0,0,-0.638968 -81908,5115:124:4,-154.5,-12.5,0,0,-0.68091 -81909,5115:124:3,-154,-12.5,0,0,-0.943034 -81910,5115:123:4,-153.5,-12.5,0,0,-0.968247 -81911,5115:123:3,-153,-12.5,0,0,-0.801619 -81912,5115:122:4,-152.5,-12.5,0,0,-0.787837 -81913,5115:122:3,-152,-12.5,0,0,-0.879166 -81914,5115:121:4,-151.5,-12.5,0,0,-0.979344 -81915,5115:121:3,-151,-12.5,0,0,-1.02987 -81916,5115:120:4,-150.5,-12.5,0,0,-1.04217 -81917,5115:120:3,-150,-12.5,0,0,-1.05457 -81918,5114:229:4,-149.5,-12.5,0,0,-1.08005 -81919,5114:229:3,-149,-12.5,0,0,-1.13419 -81920,5114:228:4,-148.5,-12.5,0,0,-1.01392 -81921,5114:228:3,-148,-12.5,0,0,-0.77181 -81922,5114:227:3,-147,-12.5,0,0,-0.54809 -81923,5114:226:4,-146.5,-12.5,0,0,-0.593488 -81924,5114:226:3,-146,-12.5,0,0,-0.549147 -81925,5114:225:4,-145.5,-12.5,0,0,-0.55127 -81926,5114:225:3,-145,-12.5,0,0,-0.536735 -81927,5114:124:4,-144.5,-12.5,0,0,-0.54083 -81928,5114:124:3,-144,-12.5,0,0,-0.539794 -81929,5114:123:4,-143.5,-12.5,0,0,-0.54083 -81930,5114:123:3,-143,-12.5,0,0,-0.52867 -81931,5114:122:4,-142.5,-12.5,0,0,-0.502601 -81932,5114:122:3,-142,-12.5,0,0,-0.500754 -81933,5114:121:4,-141.5,-12.5,0,0,-0.492488 -81934,5114:121:3,-141,-12.5,0,0,-0.483508 -81935,5114:120:4,-140.5,-12.5,0,0,-0.476491 -81936,5114:120:3,-140,-12.5,0,0,-0.471303 -81937,5113:229:4,-139.5,-12.5,0,0,-0.462855 -81938,5113:229:3,-139,-12.5,0,0,-0.448918 -81939,5113:228:4,-138.5,-12.5,0,0,-0.427123 -81940,5113:228:3,-138,-12.5,0,0,-0.418952 -81941,5113:227:4,-137.5,-12.5,0,0,-0.416007 -81942,5113:227:3,-137,-12.5,0,0,-0.396268 -81943,5113:226:4,-136.5,-12.5,0,0,-0.362052 -81944,5113:226:3,-136,-12.5,0,0,-0.330961 -81945,5113:225:4,-135.5,-12.5,0,0,-0.305077 -81946,5113:225:3,-135,-12.5,0,0,-0.307052 -81947,5113:124:4,-134.5,-12.5,0,0,-0.330413 -81948,5113:124:3,-134,-12.5,0,0,-0.330961 -81949,5113:123:4,-133.5,-12.5,0,0,-0.308052 -81950,5113:123:3,-133,-12.5,0,0,-0.278564 -81951,5113:122:4,-132.5,-12.5,0,0,-0.255977 -81952,5113:122:3,-132,-12.5,0,0,-0.24703 -81953,5113:121:4,-131.5,-12.5,0,0,-0.242516 -81954,5113:121:3,-131,-12.5,0,0,-0.229892 -81955,5113:120:4,-130.5,-12.5,0,0,-0.210452 -81956,5113:120:3,-130,-12.5,0,0,-0.199066 -81957,5112:229:4,-129.5,-12.5,0,0,-0.197158 -81958,5112:229:3,-129,-12.5,0,0,-0.196364 -81959,5112:228:4,-128.5,-12.5,0,0,-0.195047 -81960,5112:228:3,-128,-12.5,0,0,-0.193002 -81961,5112:227:4,-127.5,-12.5,0,0,-0.191719 -81962,5112:227:3,-127,-12.5,0,0,-0.190244 -81963,5112:226:4,-126.5,-12.5,0,0,-0.18894 -81964,5112:226:3,-126,-12.5,0,0,-0.188227 -81965,5112:225:4,-125.5,-12.5,0,0,-0.186313 -81966,5112:225:3,-125,-12.5,0,0,-0.183267 -81967,5112:124:4,-124.5,-12.5,0,0,-0.180957 -81968,5112:124:3,-124,-12.5,0,0,-0.179652 -81969,5112:123:4,-123.5,-12.5,0,0,-0.178086 -81970,5112:123:3,-123,-12.5,0,0,-0.177099 -81971,5112:122:4,-122.5,-12.5,0,0,-0.177099 -81972,5112:122:3,-122,-12.5,0,0,-0.176437 -81973,5112:121:4,-121.5,-12.5,0,0,-0.174516 -81974,5112:121:3,-121,-12.5,0,0,-0.171928 -81975,5112:120:4,-120.5,-12.5,0,0,-0.168011 -81976,5112:120:3,-120,-12.5,0,0,-0.163254 -81977,5111:229:4,-119.5,-12.5,0,0,-0.160131 -81978,5111:229:3,-119,-12.5,0,0,-0.158411 -81979,5111:228:4,-118.5,-12.5,0,0,-0.155796 -81980,5111:228:3,-118,-12.5,0,0,-0.153605 -81981,5111:227:4,-117.5,-12.5,0,0,-0.151902 -81982,5111:227:3,-117,-12.5,0,0,-0.149652 -81983,5111:226:4,-116.5,-12.5,0,0,-0.146961 -81984,5111:226:3,-116,-12.5,0,0,-0.145498 -81985,5111:225:4,-115.5,-12.5,0,0,-0.144793 -81986,5111:225:3,-115,-12.5,0,0,-0.143722 -81987,5111:124:4,-114.5,-12.5,0,0,-0.14245 -81988,5111:124:3,-114,-12.5,0,0,-0.139998 -81989,5111:123:4,-113.5,-12.5,0,0,-0.137154 -81990,5111:123:3,-113,-12.5,0,0,-0.13605 -81991,5111:122:4,-112.5,-12.5,0,0,-0.13605 -81992,5111:122:3,-112,-12.5,0,0,-0.13605 -81993,5111:121:4,-111.5,-12.5,0,0,-0.13605 -81994,5111:121:3,-111,-12.5,0,0,-0.13605 -81995,5111:120:4,-110.5,-12.5,0,0,-0.13605 -81996,5111:120:3,-110,-12.5,0,0,-0.13605 -81997,5110:229:4,-109.5,-12.5,0,0,-0.13605 -81998,5110:229:3,-109,-12.5,0,0,-0.13605 -81999,5110:228:4,-108.5,-12.5,0,0,-0.13605 -82000,5110:228:3,-108,-12.5,0,0,-0.13605 -82001,5110:227:4,-107.5,-12.5,0,0,-0.13605 -82002,5110:227:3,-107,-12.5,0,0,-0.13605 -82003,5110:226:4,-106.5,-12.5,0,0,-0.13605 -82004,5110:226:3,-106,-12.5,0,0,-0.13605 -82005,5110:225:4,-105.5,-12.5,0,0,-0.13605 -82006,5110:225:3,-105,-12.5,0,0,-0.13605 -82007,5110:124:4,-104.5,-12.5,0,0,-0.13605 -82008,5110:124:3,-104,-12.5,0,0,-0.13605 -82009,5110:123:4,-103.5,-12.5,0,0,-0.13605 -82010,5110:123:3,-103,-12.5,0,0,-0.13605 -82011,5110:122:4,-102.5,-12.5,0,0,-0.13605 -82012,5110:122:3,-102,-12.5,0,0,-0.13605 -82013,5110:121:4,-101.5,-12.5,0,0,-0.13605 -82014,5110:121:3,-101,-12.5,0,0,-0.13605 -82015,5110:120:4,-100.5,-12.5,0,0,-0.13605 -82016,5110:120:3,-100,-12.5,0,0,-0.13605 -82017,5109:229:4,-99.5,-12.5,0,0,-0.13605 -82018,5109:229:3,-99,-12.5,0,0,-0.13605 -82019,5109:228:4,-98.5,-12.5,0,0,-0.13605 -82020,5109:228:3,-98,-12.5,0,0,-0.13605 -82021,5109:227:4,-97.5,-12.5,0,0,-0.13605 -82022,5109:227:3,-97,-12.5,0,0,-0.13605 -82023,5109:226:4,-96.5,-12.5,0,0,-0.13605 -82024,5109:226:3,-96,-12.5,0,0,-0.13605 -82025,5109:225:4,-95.5,-12.5,0,0,-0.13605 -82026,5109:225:3,-95,-12.5,0,0,-0.13605 -82027,5109:124:4,-94.5,-12.5,0,0,-0.13605 -82028,5109:124:3,-94,-12.5,0,0,-0.13605 -82029,5109:123:4,-93.5,-12.5,0,0,-0.13605 -82030,5109:123:3,-93,-12.5,0,0,-0.13605 -82031,5109:122:4,-92.5,-12.5,0,0,-0.13605 -82032,5109:122:3,-92,-12.5,0,0,-0.13605 -82033,5109:121:4,-91.5,-12.5,0,0,-0.13605 -82034,5109:121:3,-91,-12.5,0,0,-0.13605 -82035,5109:120:4,-90.5,-12.5,0,0,-0.13605 -82036,5109:120:3,-90,-12.5,0,0,-0.13605 -82037,5108:229:4,-89.5,-12.5,0,0,-0.13605 -82038,5108:229:3,-89,-12.5,0,0,-0.13605 -82039,5108:228:4,-88.5,-12.5,0,0,-0.13605 -82040,5108:228:3,-88,-12.5,0,0,-0.13605 -82041,5108:227:4,-87.5,-12.5,0,0,-0.13605 -82042,5108:227:3,-87,-12.5,0,0,-0.13605 -82043,5108:226:4,-86.5,-12.5,0,0,-0.13605 -82044,5108:226:3,-86,-12.5,0,0,-0.13605 -82045,5108:225:4,-85.5,-12.5,0,0,-0.13605 -82046,5108:225:3,-85,-12.5,0,0,-0.13605 -82047,5108:124:4,-84.5,-12.5,0,0,-0.13605 -82048,5108:124:3,-84,-12.5,0,0,-0.13605 -82049,5108:123:4,-83.5,-12.5,0,0,-0.13605 -82050,5108:123:3,-83,-12.5,0,0,-0.13605 -82051,5108:122:4,-82.5,-12.5,0,0,-0.13605 -82052,5108:122:3,-82,-12.5,0,0,-0.13605 -82053,5108:121:4,-81.5,-12.5,0,0,-0.13605 -82054,5108:121:3,-81,-12.5,0,0,-0.13605 -82055,5108:120:4,-80.5,-12.5,0,0,-0.13605 -82056,5108:120:3,-80,-12.5,0,0,-0.13605 -82057,5107:229:4,-79.5,-12.5,0,0,-0.13605 -82058,5107:229:3,-79,-12.5,0,0,-0.13605 -82059,5107:228:4,-78.5,-12.5,0,0,-0.13605 -82060,5107:228:3,-78,-12.5,0,0,-0.13605 -82061,5107:227:4,-77.5,-12.5,0,0,-0.13605 -82062,5107:227:3,-77,-12.5,0,0,-0.13605 -82063,5107:226:4,-76.5,-12.5,0,0,-0.13605 -82064,5107:226:3,-76,-12.5,0,0,-0.13605 -82065,5107:225:4,-75.5,-12.5,0,0,-0.13605 -82066,5103:229:3,-39,-12.5,0,0,-0.167803 -82067,5103:228:4,-38.5,-12.5,0,0,-0.178805 -82068,5103:228:3,-38,-12.5,0,0,-0.179302 -82069,5103:227:4,-37.5,-12.5,0,0,-0.180328 -82070,5103:227:3,-37,-12.5,0,0,-0.181538 -82071,5103:226:4,-36.5,-12.5,0,0,-0.181008 -82072,5103:226:3,-36,-12.5,0,0,-0.179877 -82073,5103:225:4,-35.5,-12.5,0,0,-0.177591 -82074,5103:225:3,-35,-12.5,0,0,-0.176412 -82075,5103:124:4,-34.5,-12.5,0,0,-0.174975 -82076,5103:124:3,-34,-12.5,0,0,-0.173 -82077,5103:123:4,-33.5,-12.5,0,0,-0.171453 -82078,5103:123:3,-33,-12.5,0,0,-0.168963 -82079,5103:122:4,-32.5,-12.5,0,0,-0.166584 -82080,5103:122:3,-32,-12.5,0,0,-0.164604 -82081,5103:121:4,-31.5,-12.5,0,0,-0.162028 -82082,5103:121:3,-31,-12.5,0,0,-0.159628 -82083,5103:120:4,-30.5,-12.5,0,0,-0.15714 -82084,5103:120:3,-30,-12.5,0,0,-0.154317 -82085,5102:229:4,-29.5,-12.5,0,0,-0.151655 -82086,5102:229:3,-29,-12.5,0,0,-0.149328 -82087,5102:228:4,-28.5,-12.5,0,0,-0.147359 -82088,5102:228:3,-28,-12.5,0,0,-0.145498 -82089,5102:227:4,-27.5,-12.5,0,0,-0.143839 -82090,5102:227:3,-27,-12.5,0,0,-0.142258 -82091,5102:226:4,-26.5,-12.5,0,0,-0.14013 -82092,5102:226:3,-26,-12.5,0,0,-0.137873 -82093,5102:225:4,-25.5,-12.5,0,0,-0.136563 -82094,5102:225:3,-25,-12.5,0,0,-0.136141 -82095,5102:124:4,-24.5,-12.5,0,0,-0.13605 -82096,5102:124:3,-24,-12.5,0,0,-0.13605 -82097,5102:123:4,-23.5,-12.5,0,0,-0.13605 -82098,5102:123:3,-23,-12.5,0,0,-0.13605 -82099,5102:122:4,-22.5,-12.5,0,0,-0.13605 -82100,5102:122:3,-22,-12.5,0,0,-0.13605 -82101,5102:121:4,-21.5,-12.5,0,0,-0.13605 -82102,5102:121:3,-21,-12.5,0,0,-0.13605 -82103,5102:120:4,-20.5,-12.5,0,0,-0.13605 -82104,5102:120:3,-20,-12.5,0,0,-0.13605 -82105,5101:229:4,-19.5,-12.5,0,0,-0.13605 -82106,5101:229:3,-19,-12.5,0,0,-0.13605 -82107,5101:228:4,-18.5,-12.5,0,0,-0.13605 -82108,5101:228:3,-18,-12.5,0,0,-0.13605 -82109,5101:227:4,-17.5,-12.5,0,0,-0.13605 -82110,5101:227:3,-17,-12.5,0,0,-0.13605 -82111,5101:226:4,-16.5,-12.5,0,0,-0.13605 -82112,5101:226:3,-16,-12.5,0,0,-0.13605 -82113,5101:225:4,-15.5,-12.5,0,0,-0.13605 -82114,5101:225:3,-15,-12.5,0,0,-0.13605 -82115,5101:124:4,-14.5,-12.5,0,0,-0.13605 -82116,5101:124:3,-14,-12.5,0,0,-0.13605 -82117,5101:123:4,-13.5,-12.5,0,0,-0.13605 -82118,5101:123:3,-13,-12.5,0,0,-0.13605 -82119,5101:122:4,-12.5,-12.5,0,0,-0.13605 -82120,5101:122:3,-12,-12.5,0,0,-0.13605 -82121,5101:121:4,-11.5,-12.5,0,0,-0.13605 -82122,5101:121:3,-11,-12.5,0,0,-0.13605 -82123,5101:120:4,-10.5,-12.5,0,0,-0.13605 -82124,5101:120:3,-10,-12.5,0,0,-0.13605 -82125,5100:229:4,-9.5,-12.5,0,0,-0.13605 -82126,5100:229:3,-9,-12.5,0,0,-0.13605 -82127,5100:228:4,-8.5,-12.5,0,0,-0.13605 -82128,5100:228:3,-8,-12.5,0,0,-0.13605 -82129,5100:227:4,-7.5,-12.5,0,0,-0.13605 -82130,5100:227:3,-7,-12.5,0,0,-0.13605 -82131,5100:226:4,-6.5,-12.5,0,0,-0.13605 -82132,5100:226:3,-6,-12.5,0,0,-0.13605 -82133,5100:225:4,-5.5,-12.5,0,0,-0.13605 -82134,5100:225:3,-5,-12.5,0,0,-0.13605 -82135,5100:124:4,-4.5,-12.5,0,0,-0.13605 -82136,5100:124:3,-4,-12.5,0,0,-0.13605 -82137,5100:123:4,-3.5,-12.5,0,0,-0.13605 -82138,5100:123:3,-3,-12.5,0,0,-0.13605 -82139,5100:122:4,-2.5,-12.5,0,0,-0.13605 -82140,5100:122:3,-2,-12.5,0,0,-0.13605 -82141,5100:121:4,-1.5,-12.5,0,0,-0.13605 -82142,5100:121:3,-1,-12.5,0,0,-0.13605 -82143,5100:120:4,-0.5,-12.5,0,0,-0.13605 -82144,3100:120:4,0,-12.5,0,0,-0.13605 -82145,3100:120:4,0.5,-12.5,0,0,-0.13605 -82146,3100:121:3,1,-12.5,0,0,-0.13605 -82147,3100:121:4,1.5,-12.5,0,0,-0.13605 -82148,3100:122:3,2,-12.5,0,0,-0.13605 -82149,3100:122:4,2.5,-12.5,0,0,-0.13605 -82150,3100:123:3,3,-12.5,0,0,-0.13605 -82151,3100:123:4,3.5,-12.5,0,0,-0.13605 -82152,3100:124:3,4,-12.5,0,0,-0.13605 -82153,3100:124:4,4.5,-12.5,0,0,-0.13605 -82154,3100:225:3,5,-12.5,0,0,-0.13605 -82155,3100:225:4,5.5,-12.5,0,0,-0.13605 -82156,3100:226:3,6,-12.5,0,0,-0.13605 -82157,3100:226:4,6.5,-12.5,0,0,-0.13605 -82158,3100:227:3,7,-12.5,0,0,-0.13605 -82159,3100:227:4,7.5,-12.5,0,0,-0.13605 -82160,3100:228:3,8,-12.5,0,0,-0.13605 -82161,3100:228:4,8.5,-12.5,0,0,-0.13605 -82162,3100:229:3,9,-12.5,0,0,-0.13605 -82163,3100:229:4,9.5,-12.5,0,0,-0.13605 -82164,3101:120:3,10,-12.5,0,0,-0.13605 -82165,3101:120:4,10.5,-12.5,0,0,-0.13605 -82166,3101:121:3,11,-12.5,0,0,-0.13605 -82167,3101:121:4,11.5,-12.5,0,0,-0.13605 -82168,3104:120:4,40.5,-12.5,0,0,5.77162 -82169,3104:121:3,41,-12.5,0,0,1.6199 -82170,3104:121:4,41.5,-12.5,0,0,1.49071 -82171,3104:122:3,42,-12.5,0,0,1.47821 -82172,3104:122:4,42.5,-12.5,0,0,1.43463 -82173,3104:123:3,43,-12.5,0,0,1.33291 -82174,3104:123:4,43.5,-12.5,0,0,1.30575 -82175,3104:124:3,44,-12.5,0,0,1.31711 -82176,3104:124:4,44.5,-12.5,0,0,1.34788 -82177,3104:225:3,45,-12.5,0,0,1.33811 -82178,3104:225:4,45.5,-12.5,0,0,1.29516 -82179,3104:226:3,46,-12.5,0,0,1.21651 -82180,3104:226:4,46.5,-12.5,0,0,1.1718 -82181,3105:120:4,50.5,-12.5,0,0,-0.194696 -82182,3105:121:3,51,-12.5,0,0,-0.18749 -82183,3105:121:4,51.5,-12.5,0,0,-0.185455 -82184,3105:122:3,52,-12.5,0,0,-0.184602 -82185,3105:122:4,52.5,-12.5,0,0,-0.183676 -82186,3105:123:3,53,-12.5,0,0,-0.181538 -82187,3105:123:4,53.5,-12.5,0,0,-0.181259 -82188,3105:124:3,54,-12.5,0,0,-0.182323 -82189,3105:124:4,54.5,-12.5,0,0,-0.183651 -82190,3105:225:3,55,-12.5,0,0,-0.183959 -82191,3105:225:4,55.5,-12.5,0,0,-0.183959 -82192,3105:226:3,56,-12.5,0,0,-0.183702 -82193,3105:226:4,56.5,-12.5,0,0,-0.183343 -82194,3105:227:3,57,-12.5,0,0,-0.183113 -82195,3105:227:4,57.5,-12.5,0,0,-0.182552 -82196,3105:228:3,58,-12.5,0,0,-0.18179 -82197,3105:228:4,58.5,-12.5,0,0,-0.18136 -82198,3105:229:3,59,-12.5,0,0,-0.180429 -82199,3105:229:4,59.5,-12.5,0,0,-0.179029 -82200,3106:120:3,60,-12.5,0,0,-0.178482 -82201,3106:120:4,60.5,-12.5,0,0,-0.177394 -82202,3106:121:3,61,-12.5,0,0,-0.17288 -82203,3106:121:4,61.5,-12.5,0,0,-0.173336 -82204,3106:122:3,62,-12.5,0,0,-0.172785 -82205,3106:122:4,62.5,-12.5,0,0,-0.17124 -82206,3106:123:3,63,-12.5,0,0,-0.170015 -82207,3106:123:4,63.5,-12.5,0,0,-0.169992 -82208,3106:124:3,64,-12.5,0,0,-0.16971 -82209,3106:124:4,64.5,-12.5,0,0,-0.169173 -82210,3106:225:3,65,-12.5,0,0,-0.168916 -82211,3106:225:4,65.5,-12.5,0,0,-0.16887 -82212,3106:226:3,66,-12.5,0,0,-0.169406 -82213,3106:226:4,66.5,-12.5,0,0,-0.169992 -82214,3106:227:3,67,-12.5,0,0,-0.170086 -82215,3106:227:4,67.5,-12.5,0,0,-0.169734 -82216,3106:228:3,68,-12.5,0,0,-0.169033 -82217,3106:228:4,68.5,-12.5,0,0,-0.168127 -82218,3106:229:3,69,-12.5,0,0,-0.167319 -82219,3106:229:4,69.5,-12.5,0,0,-0.166699 -82220,3107:120:3,70,-12.5,0,0,-0.166515 -82221,3107:120:4,70.5,-12.5,0,0,-0.166584 -82222,3107:121:3,71,-12.5,0,0,-0.166721 -82223,3107:121:4,71.5,-12.5,0,0,-0.167573 -82224,3107:122:3,72,-12.5,0,0,-0.169033 -82225,3107:122:4,72.5,-12.5,0,0,-0.17169 -82226,3107:123:4,73.5,-12.5,0,0,-0.174612 -82227,3107:124:3,74,-12.5,0,0,-0.178259 -82228,3107:124:4,74.5,-12.5,0,0,-0.181715 -82229,3107:225:3,75,-12.5,0,0,-0.183574 -82230,3107:225:4,75.5,-12.5,0,0,-0.183395 -82231,3107:226:3,76,-12.5,0,0,-0.181664 -82232,3107:226:4,76.5,-12.5,0,0,-0.179327 -82233,3107:227:3,77,-12.5,0,0,-0.177813 -82234,3107:227:4,77.5,-12.5,0,0,-0.176339 -82235,3107:228:3,78,-12.5,0,0,-0.176241 -82236,3107:228:4,78.5,-12.5,0,0,-0.176657 -82237,3107:229:3,79,-12.5,0,0,-0.17705 -82238,3107:229:4,79.5,-12.5,0,0,-0.177197 -82239,3108:120:3,80,-12.5,0,0,-0.176829 -82240,3108:120:4,80.5,-12.5,0,0,-0.176021 -82241,3108:121:3,81,-12.5,0,0,-0.174418 -82242,3108:121:4,81.5,-12.5,0,0,-0.171975 -82243,3108:122:3,82,-12.5,0,0,-0.16929 -82244,3108:122:4,82.5,-12.5,0,0,-0.167273 -82245,3108:123:3,83,-12.5,0,0,-0.167319 -82246,3108:123:4,83.5,-12.5,0,0,-0.168312 -82247,3108:124:3,84,-12.5,0,0,-0.166744 -82248,3108:124:4,84.5,-12.5,0,0,-0.165579 -82249,3108:225:3,85,-12.5,0,0,-0.165943 -82250,3108:225:4,85.5,-12.5,0,0,-0.163164 -82251,3108:226:3,86,-12.5,0,0,-0.160944 -82252,3108:226:4,86.5,-12.5,0,0,-0.161606 -82253,3108:227:3,87,-12.5,0,0,-0.161717 -82254,3108:227:4,87.5,-12.5,0,0,-0.159235 -82255,3108:228:3,88,-12.5,0,0,-0.158389 -82256,3108:228:4,88.5,-12.5,0,0,-0.15516 -82257,3108:229:3,89,-12.5,0,0,-0.156947 -82258,3108:229:4,89.5,-12.5,0,0,-0.15699 -82259,3109:120:3,90,-12.5,0,0,-0.154213 -82260,3109:120:4,90.5,-12.5,0,0,-0.152896 -82261,3109:121:3,91,-12.5,0,0,-0.152647 -82262,3109:121:4,91.5,-12.5,0,0,-0.153521 -82263,3109:122:3,92,-12.5,0,0,-0.152481 -82264,3109:122:4,92.5,-12.5,0,0,-0.150732 -82265,3109:123:3,93,-12.5,0,0,-0.14953 -82266,3109:123:4,93.5,-12.5,0,0,-0.148782 -82267,3109:124:3,94,-12.5,0,0,-0.146802 -82268,3109:124:4,94.5,-12.5,0,0,-0.1471 -82269,3109:225:3,95,-12.5,0,0,-0.150957 -82270,3109:225:4,95.5,-12.5,0,0,-0.150466 -82271,3109:226:3,96,-12.5,0,0,-0.146089 -82272,3109:226:4,96.5,-12.5,0,0,-0.144539 -82273,3109:227:3,97,-12.5,0,0,-0.145833 -82274,3109:227:4,97.5,-12.5,0,0,-0.14493 -82275,3109:228:3,98,-12.5,0,0,-0.142641 -82276,3109:228:4,98.5,-12.5,0,0,-0.142603 -82277,3109:229:3,99,-12.5,0,0,-0.147259 -82278,3109:229:4,99.5,-12.5,0,0,-0.149652 -82279,3110:120:3,100,-12.5,0,0,-0.152295 -82280,3110:120:4,100.5,-12.5,0,0,-0.157936 -82281,3110:121:3,101,-12.5,0,0,-0.163972 -82282,3110:121:4,101.5,-12.5,0,0,-0.168312 -82283,3110:122:3,102,-12.5,0,0,-0.17207 -82284,3110:122:4,102.5,-12.5,0,0,-0.172237 -82285,3110:123:3,103,-12.5,0,0,-0.175656 -82286,3110:123:4,103.5,-12.5,0,0,-0.177345 -82287,3110:124:3,104,-12.5,0,0,-0.174467 -82288,3110:124:4,104.5,-12.5,0,0,-0.168058 -82289,3110:225:3,105,-12.5,0,0,-0.159563 -82290,3110:225:4,105.5,-12.5,0,0,-0.157312 -82291,3110:226:3,106,-12.5,0,0,-0.158975 -82292,3110:226:4,106.5,-12.5,0,0,-0.158975 -82293,3110:227:3,107,-12.5,0,0,-0.16431 -82294,3110:227:4,107.5,-12.5,0,0,-0.169734 -82295,3110:228:3,108,-12.5,0,0,-0.176314 -82296,3110:228:4,108.5,-12.5,0,0,-0.181411 -82297,3110:229:3,109,-12.5,0,0,-0.176266 -82298,3110:229:4,109.5,-12.5,0,0,-0.185041 -82299,3111:120:3,110,-12.5,0,0,-0.183548 -82300,3111:120:4,110.5,-12.5,0,0,-0.182807 -82301,3111:121:3,111,-12.5,0,0,-0.180781 -82302,3111:121:4,111.5,-12.5,0,0,-0.181411 -82303,3111:122:3,112,-12.5,0,0,-0.190057 -82304,3111:122:4,112.5,-12.5,0,0,-0.215105 -82305,3111:123:3,113,-12.5,0,0,-0.329867 -82306,3111:123:4,113.5,-12.5,0,0,-0.543921 -82307,3111:124:3,114,-12.5,0,0,-0.932435 -82308,3111:124:4,114.5,-12.5,0,0,-1.18234 -82309,3111:225:3,115,-12.5,0,0,-0.698171 -82310,3111:225:4,115.5,-12.5,0,0,-0.415297 -82311,3111:226:3,116,-12.5,0,0,-0.43628 -82312,3111:226:4,116.5,-12.5,0,0,-0.627466 -82313,3111:227:3,117,-12.5,0,0,-0.796031 -82314,3111:227:4,117.5,-12.5,0,0,-4.52385 -82315,3111:228:3,118,-12.5,0,0,9.83283 -82316,3111:228:4,118.5,-12.5,0,0,4.92585 -82317,3111:229:3,119,-12.5,0,0,3.87624 -82318,3111:229:4,119.5,-12.5,0,0,5.3785 -82319,3112:120:3,120,-12.5,0,0,6.49793 -82320,3112:120:4,120.5,-12.5,0,0,5.42473 -82321,3112:121:3,121,-12.5,0,0,2.34123 -82322,3112:121:4,121.5,-12.5,0,0,1.71412 -82323,3112:122:3,122,-12.5,0,0,1.50071 -82324,3112:122:4,122.5,-12.5,0,0,1.35428 -82325,3112:123:3,123,-12.5,0,0,1.29226 -82326,3112:123:4,123.5,-12.5,0,0,1.20381 -82327,3112:124:3,124,-12.5,0,0,1.20951 -82328,3112:124:4,124.5,-12.5,0,0,1.08764 -82329,3113:226:4,136.5,-12.5,0,0,1.06282 -82330,3113:227:3,137,-12.5,0,0,1.07829 -82331,3113:227:4,137.5,-12.5,0,0,1.09675 -82332,3113:228:3,138,-12.5,0,0,1.08877 -82333,3113:228:4,138.5,-12.5,0,0,1.10424 -82334,3113:229:3,139,-12.5,0,0,1.1341 -82335,3113:229:4,139.5,-12.5,0,0,1.16529 -82336,3114:120:3,140,-12.5,0,0,1.19373 -82337,3114:120:4,140.5,-12.5,0,0,1.20506 -82338,3114:121:3,141,-12.5,0,0,1.18533 -82339,3114:121:4,141.5,-12.5,0,0,1.12188 -82340,3114:226:3,146,-12.5,0,0,-0.19778 -82341,3114:226:4,146.5,-12.5,0,0,-0.190031 -82342,3114:227:3,147,-12.5,0,0,-0.192448 -82343,3114:227:4,147.5,-12.5,0,0,-0.196055 -82344,3114:228:3,148,-12.5,0,0,-0.198225 -82345,3114:228:4,148.5,-12.5,0,0,-0.19632 -82346,3114:229:3,149,-12.5,0,0,-0.195484 -82347,3114:229:4,149.5,-12.5,0,0,-0.19707 -82348,3115:120:3,150,-12.5,0,0,-0.196805 -82349,3115:120:4,150.5,-12.5,0,0,-0.192042 -82350,3115:121:3,151,-12.5,0,0,-0.193262 -82351,3115:121:4,151.5,-12.5,0,0,-0.197869 -82352,3115:122:3,152,-12.5,0,0,-0.19818 -82353,3115:122:4,152.5,-12.5,0,0,-0.195309 -82354,3115:123:3,153,-12.5,0,0,-0.19474 -82355,3115:123:4,153.5,-12.5,0,0,-0.196761 -82356,3115:124:3,154,-12.5,0,0,-0.197337 -82357,3115:124:4,154.5,-12.5,0,0,-0.196188 -82358,3115:225:3,155,-12.5,0,0,-0.192881 -82359,3115:225:4,155.5,-12.5,0,0,-0.192097 -82360,3115:226:3,156,-12.5,0,0,-0.192421 -82361,3115:226:4,156.5,-12.5,0,0,-0.192475 -82362,3115:227:3,157,-12.5,0,0,-0.190805 -82363,3115:227:4,157.5,-12.5,0,0,-0.187674 -82364,3115:228:3,158,-12.5,0,0,-0.184524 -82365,3115:228:4,158.5,-12.5,0,0,-0.182909 -82366,3115:229:3,159,-12.5,0,0,-0.182552 -82367,3115:229:4,159.5,-12.5,0,0,-0.182298 -82368,3116:120:3,160,-12.5,0,0,-0.18174 -82369,3116:120:4,160.5,-12.5,0,0,-0.181032 -82370,3116:121:3,161,-12.5,0,0,-0.180378 -82371,3116:121:4,161.5,-12.5,0,0,-0.179852 -82372,3116:122:3,162,-12.5,0,0,-0.179427 -82373,3116:122:4,162.5,-12.5,0,0,-0.178854 -82374,3116:123:3,163,-12.5,0,0,-0.178061 -82375,3116:123:4,163.5,-12.5,0,0,-0.177912 -82376,3116:124:3,164,-12.5,0,0,-0.178284 -82377,3116:124:4,164.5,-12.5,0,0,-0.178432 -82378,3116:225:3,165,-12.5,0,0,-0.17811 -82379,3116:225:4,165.5,-12.5,0,0,-0.178408 -82380,3116:226:3,166,-12.5,0,0,-0.179627 -82381,3116:226:4,166.5,-12.5,0,0,-0.179602 -82382,3116:227:4,167.5,-12.5,0,0,-0.172332 -82383,3116:228:3,168,-12.5,0,0,-0.177937 -82384,3116:228:4,168.5,-12.5,0,0,-0.179827 -82385,3116:229:3,169,-12.5,0,0,-0.182247 -82386,3116:229:4,169.5,-12.5,0,0,-0.184036 -82387,3117:120:3,170,-12.5,0,0,-0.18455 -82388,3117:120:4,170.5,-12.5,0,0,-0.185119 -82389,3117:121:3,171,-12.5,0,0,-0.185689 -82390,3117:121:4,171.5,-12.5,0,0,-0.185481 -82391,3117:122:3,172,-12.5,0,0,-0.184938 -82392,3117:122:4,172.5,-12.5,0,0,-0.184524 -82393,3117:123:3,173,-12.5,0,0,-0.184421 -82394,3117:123:4,173.5,-12.5,0,0,-0.184242 -82395,3117:124:3,174,-12.5,0,0,-0.183139 -82396,3117:124:4,174.5,-12.5,0,0,-0.181816 -82397,3117:225:3,175,-12.5,0,0,-0.181437 -82398,3117:225:4,175.5,-12.5,0,0,-0.181689 -82399,3117:226:3,176,-12.5,0,0,-0.181234 -82400,3117:226:4,176.5,-12.5,0,0,-0.18063 -82401,3117:227:3,177,-12.5,0,0,-0.180303 -82402,3117:227:4,177.5,-12.5,0,0,-0.180429 -82403,3117:228:3,178,-12.5,0,0,-0.180454 -82404,3117:228:4,178.5,-12.5,0,0,-0.178854 -82405,3117:229:3,179,-12.5,0,0,-0.177369 -82406,3117:229:4,179.5,-12.5,0,0,-0.176707 -82407,3118:120:3,180,-12.5,0,0,-0.176461 -82408,5118:120:1,-180,-12,0,0,-0.184886 -82409,5117:229:2,-179.5,-12,0,0,-0.184809 -82410,5117:229:1,-179,-12,0,0,-0.185041 -82411,5117:228:2,-178.5,-12,0,0,-0.185923 -82412,5117:228:1,-178,-12,0,0,-0.186783 -82413,5117:227:2,-177.5,-12,0,0,-0.188253 -82414,5117:227:1,-177,-12,0,0,-0.19019 -82415,5117:226:2,-176.5,-12,0,0,-0.192097 -82416,5117:226:1,-176,-12,0,0,-0.194087 -82417,5117:225:2,-175.5,-12,0,0,-0.196583 -82418,5117:225:1,-175,-12,0,0,-0.205022 -82419,5117:124:2,-174.5,-12,0,0,-0.234138 -82420,5117:124:1,-174,-12,0,0,-0.273334 -82421,5117:123:2,-173.5,-12,0,0,-0.309546 -82422,5117:123:1,-173,-12,0,0,-0.332593 -82423,5117:122:2,-172.5,-12,0,0,-0.329338 -82424,5117:122:1,-172,-12,0,0,-0.295437 -82425,5117:121:2,-171.5,-12,0,0,-0.288904 -82426,5117:121:1,-171,-12,0,0,-0.299247 -82427,5117:120:2,-170.5,-12,0,0,-0.304597 -82428,5117:120:1,-170,-12,0,0,-0.300688 -82429,5116:229:2,-169.5,-12,0,0,-0.311063 -82430,5116:229:1,-169,-12,0,0,-0.324513 -82431,5116:228:2,-168.5,-12,0,0,-0.329867 -82432,5116:228:1,-168,-12,0,0,-0.343768 -82433,5116:227:2,-167.5,-12,0,0,-0.365739 -82434,5116:227:1,-167,-12,0,0,-0.387507 -82435,5116:226:2,-166.5,-12,0,0,-0.410961 -82436,5116:226:1,-166,-12,0,0,-0.429383 -82437,5116:225:2,-165.5,-12,0,0,-0.437843 -82438,5116:225:1,-165,-12,0,0,-0.443323 -82439,5116:124:2,-164.5,-12,0,0,-0.453758 -82440,5116:124:1,-164,-12,0,0,-0.471303 -82441,5116:123:2,-163.5,-12,0,0,-0.521724 -82442,5116:123:1,-163,-12,0,0,-0.607731 -82443,5116:122:2,-162.5,-12,0,0,-0.708665 -82444,5116:122:1,-162,-12,0,0,-0.833119 -82445,5116:121:2,-161.5,-12,0,0,-0.946498 -82446,5116:121:1,-161,-12,0,0,-1.02987 -82447,5116:120:2,-160.5,-12,0,0,-1.19244 -82448,5116:120:1,-160,-12,0,0,-1.31799 -82449,5115:229:2,-159.5,-12,0,0,-1.36025 -82450,5115:229:1,-159,-12,0,0,-1.34191 -82451,5115:228:2,-158.5,-12,0,0,-1.23387 -82452,5115:228:1,-158,-12,0,0,-1.15795 -82453,5115:227:2,-157.5,-12,0,0,-1.19244 -82454,5115:227:1,-157,-12,0,0,-1.28898 -82455,5115:226:2,-156.5,-12,0,0,-1.42461 -82456,5115:226:1,-156,-12,0,0,-1.59213 -82457,5115:225:2,-155.5,-12,0,0,-1.89559 -82458,5115:225:1,-155,-12,0,0,-2.33751 -82459,5115:124:2,-154.5,-12,0,0,-2.75397 -82460,5115:124:1,-154,-12,0,0,-2.41501 -82461,5115:123:2,-153.5,-12,0,0,-2.03014 -82462,5115:123:1,-153,-12,0,0,-1.86401 -82463,5115:122:2,-152.5,-12,0,0,-1.88497 -82464,5115:122:1,-152,-12,0,0,-1.92773 -82465,5115:121:2,-151.5,-12,0,0,-1.81358 -82466,5115:121:1,-151,-12,0,0,-1.67524 -82467,5115:120:2,-150.5,-12,0,0,-1.53797 -82468,5115:120:1,-150,-12,0,0,-1.49371 -82469,5114:229:2,-149.5,-12,0,0,-1.57645 -82470,5114:229:1,-149,-12,0,0,-1.52291 -82471,5114:228:2,-148.5,-12,0,0,-1.30036 -82472,5114:228:1,-148,-12,0,0,-1.13876 -82473,5114:227:2,-147.5,-12,0,0,-0.943034 -82474,5114:227:1,-147,-12,0,0,-0.869702 -82475,5114:226:2,-146.5,-12,0,0,-0.78247 -82476,5114:226:1,-146,-12,0,0,-0.685157 -82477,5114:225:2,-145.5,-12,0,0,-0.662869 -82478,5114:225:1,-145,-12,0,0,-0.611356 -82479,5114:124:2,-144.5,-12,0,0,-0.646813 -82480,5114:124:1,-144,-12,0,0,-0.683766 -82481,5114:123:2,-143.5,-12,0,0,-0.727843 -82482,5114:123:1,-143,-12,0,0,-0.763942 -82483,5114:122:2,-142.5,-12,0,0,-0.787837 -82484,5114:122:1,-142,-12,0,0,-0.787837 -82485,5114:121:2,-141.5,-12,0,0,-0.729692 -82486,5114:121:1,-141,-12,0,0,-0.693809 -82487,5114:120:2,-140.5,-12,0,0,-0.668345 -82488,5114:120:1,-140,-12,0,0,-0.64814 -82489,5113:229:2,-139.5,-12,0,0,-0.64417 -82490,5113:229:1,-139,-12,0,0,-0.635115 -82491,5113:228:2,-138.5,-12,0,0,-0.605343 -82492,5113:228:1,-138,-12,0,0,-0.574073 -82493,5113:227:2,-137.5,-12,0,0,-0.53571 -82494,5113:227:1,-137,-12,0,0,-0.492488 -82495,5113:226:2,-136.5,-12,0,0,-0.465366 -82496,5113:226:1,-136,-12,0,0,-0.457032 -82497,5113:225:2,-135.5,-12,0,0,-0.438628 -82498,5113:225:1,-135,-12,0,0,-0.422626 -82499,5113:124:2,-134.5,-12,0,0,-0.428643 -82500,5113:124:1,-134,-12,0,0,-0.421156 -82501,5113:123:2,-133.5,-12,0,0,-0.394894 -82502,5113:123:1,-133,-12,0,0,-0.362052 -82503,5113:122:2,-132.5,-12,0,0,-0.321869 -82504,5113:122:1,-132,-12,0,0,-0.28166 -82505,5113:121:2,-131.5,-12,0,0,-0.259584 -82506,5113:121:1,-131,-12,0,0,-0.246659 -82507,5113:120:2,-130.5,-12,0,0,-0.237013 -82508,5113:120:1,-130,-12,0,0,-0.222767 -82509,5112:229:2,-129.5,-12,0,0,-0.208154 -82510,5112:229:1,-129,-12,0,0,-0.200139 -82511,5112:228:2,-128.5,-12,0,0,-0.196496 -82512,5112:228:1,-128,-12,0,0,-0.19387 -82513,5112:227:2,-127.5,-12,0,0,-0.192205 -82514,5112:227:1,-127,-12,0,0,-0.19011 -82516,5112:226:1,-126,-12,0,0,-0.186287 -82517,5112:225:2,-125.5,-12,0,0,-0.185171 -82518,5112:225:1,-125,-12,0,0,-0.183241 -82519,5112:124:2,-124.5,-12,0,0,-0.180403 -82520,5112:124:1,-124,-12,0,0,-0.177148 -82521,5112:123:2,-123.5,-12,0,0,-0.175145 -82522,5112:123:1,-123,-12,0,0,-0.174298 -82523,5112:122:2,-122.5,-12,0,0,-0.17336 -82524,5112:122:1,-122,-12,0,0,-0.170956 -82525,5112:121:2,-121.5,-12,0,0,-0.168521 -82526,5112:121:1,-121,-12,0,0,-0.166676 -82527,5112:120:2,-120.5,-12,0,0,-0.163815 -82528,5112:120:1,-120,-12,0,0,-0.160306 -82529,5111:229:2,-119.5,-12,0,0,-0.158303 -82530,5111:229:1,-119,-12,0,0,-0.15637 -82531,5111:228:2,-118.5,-12,0,0,-0.153772 -82532,5111:228:1,-118,-12,0,0,-0.151882 -82533,5111:227:2,-117.5,-12,0,0,-0.150977 -82534,5111:227:1,-117,-12,0,0,-0.149449 -82535,5111:226:2,-116.5,-12,0,0,-0.147419 -82536,5111:226:1,-116,-12,0,0,-0.146148 -82537,5111:225:2,-115.5,-12,0,0,-0.143819 -82538,5111:225:1,-115,-12,0,0,-0.141018 -82539,5111:124:2,-114.5,-12,0,0,-0.13875 -82540,5111:124:1,-114,-12,0,0,-0.136151 -82541,5111:123:2,-113.5,-12,0,0,-0.13605 -82542,5111:123:1,-113,-12,0,0,-0.13605 -82543,5111:122:2,-112.5,-12,0,0,-0.13605 -82544,5111:122:1,-112,-12,0,0,-0.13605 -82545,5111:121:2,-111.5,-12,0,0,-0.13605 -82546,5111:121:1,-111,-12,0,0,-0.13605 -82547,5111:120:2,-110.5,-12,0,0,-0.13605 -82548,5111:120:1,-110,-12,0,0,-0.13605 -82549,5110:229:2,-109.5,-12,0,0,-0.13605 -82550,5110:229:1,-109,-12,0,0,-0.13605 -82551,5110:228:2,-108.5,-12,0,0,-0.13605 -82552,5110:228:1,-108,-12,0,0,-0.13605 -82553,5110:227:2,-107.5,-12,0,0,-0.13605 -82554,5110:227:1,-107,-12,0,0,-0.13605 -82555,5110:226:2,-106.5,-12,0,0,-0.13605 -82556,5110:226:1,-106,-12,0,0,-0.13605 -82557,5110:225:2,-105.5,-12,0,0,-0.13605 -82558,5110:225:1,-105,-12,0,0,-0.13605 -82559,5110:124:2,-104.5,-12,0,0,-0.13605 -82560,5110:124:1,-104,-12,0,0,-0.13605 -82561,5110:123:2,-103.5,-12,0,0,-0.13605 -82562,5110:123:1,-103,-12,0,0,-0.13605 -82563,5110:122:2,-102.5,-12,0,0,-0.13605 -82564,5110:122:1,-102,-12,0,0,-0.13605 -82565,5110:121:2,-101.5,-12,0,0,-0.13605 -82566,5110:121:1,-101,-12,0,0,-0.13605 -82567,5110:120:2,-100.5,-12,0,0,-0.13605 -82568,5110:120:1,-100,-12,0,0,-0.13605 -82569,5109:229:2,-99.5,-12,0,0,-0.13605 -82570,5109:229:1,-99,-12,0,0,-0.13605 -82571,5109:228:2,-98.5,-12,0,0,-0.13605 -82572,5109:228:1,-98,-12,0,0,-0.13605 -82573,5109:227:2,-97.5,-12,0,0,-0.13605 -82574,5109:227:1,-97,-12,0,0,-0.13605 -82575,5109:226:2,-96.5,-12,0,0,-0.13605 -82576,5109:226:1,-96,-12,0,0,-0.13605 -82577,5109:225:2,-95.5,-12,0,0,-0.13605 -82578,5109:225:1,-95,-12,0,0,-0.13605 -82579,5109:124:2,-94.5,-12,0,0,-0.13605 -82580,5109:124:1,-94,-12,0,0,-0.13605 -82581,5109:123:2,-93.5,-12,0,0,-0.13605 -82582,5109:123:1,-93,-12,0,0,-0.13605 -82583,5109:122:2,-92.5,-12,0,0,-0.13605 -82584,5109:122:1,-92,-12,0,0,-0.13605 -82585,5109:121:2,-91.5,-12,0,0,-0.13605 -82586,5109:121:1,-91,-12,0,0,-0.13605 -82587,5109:120:2,-90.5,-12,0,0,-0.13605 -82588,5109:120:1,-90,-12,0,0,-0.13605 -82589,5108:229:2,-89.5,-12,0,0,-0.13605 -82590,5108:229:1,-89,-12,0,0,-0.13605 -82591,5108:228:2,-88.5,-12,0,0,-0.13605 -82592,5108:228:1,-88,-12,0,0,-0.13605 -82593,5108:227:2,-87.5,-12,0,0,-0.13605 -82594,5108:227:1,-87,-12,0,0,-0.13605 -82595,5108:226:2,-86.5,-12,0,0,-0.13605 -82596,5108:226:1,-86,-12,0,0,-0.13605 -82597,5108:225:2,-85.5,-12,0,0,-0.13605 -82598,5108:225:1,-85,-12,0,0,-0.13605 -82599,5108:124:2,-84.5,-12,0,0,-0.13605 -82600,5108:124:1,-84,-12,0,0,-0.13605 -82601,5108:123:2,-83.5,-12,0,0,-0.13605 -82602,5108:123:1,-83,-12,0,0,-0.13605 -82603,5108:122:2,-82.5,-12,0,0,-0.13605 -82604,5108:122:1,-82,-12,0,0,-0.13605 -82605,5108:121:2,-81.5,-12,0,0,-0.13605 -82606,5108:121:1,-81,-12,0,0,-0.13605 -82607,5108:120:2,-80.5,-12,0,0,-0.13605 -82608,5108:120:1,-80,-12,0,0,-0.13605 -82609,5107:229:2,-79.5,-12,0,0,-0.13605 -82610,5107:229:1,-79,-12,0,0,-0.13605 -82611,5107:228:2,-78.5,-12,0,0,-0.13605 -82612,5107:228:1,-78,-12,0,0,-0.13605 -82613,5107:227:2,-77.5,-12,0,0,-0.13605 -82614,5107:227:1,-77,-12,0,0,-0.13605 -82615,5107:226:2,-76.5,-12,0,0,-0.13605 -82616,5107:226:1,-76,-12,0,0,-0.13605 -82617,5103:229:1,-39,-12,0,0,-0.176339 -82618,5103:228:2,-38.5,-12,0,0,-0.179278 -82619,5103:228:1,-38,-12,0,0,-0.182298 -82620,5103:227:2,-37.5,-12,0,0,-0.182731 -82621,5103:227:1,-37,-12,0,0,-0.182019 -82622,5103:226:2,-36.5,-12,0,0,-0.181943 -82623,5103:226:1,-36,-12,0,0,-0.180957 -82624,5103:225:2,-35.5,-12,0,0,-0.17811 -82625,5103:225:1,-35,-12,0,0,-0.177197 -82626,5103:124:2,-34.5,-12,0,0,-0.176314 -82627,5103:124:1,-34,-12,0,0,-0.174322 -82628,5103:123:2,-33.5,-12,0,0,-0.172523 -82629,5103:123:1,-33,-12,0,0,-0.170203 -82630,5103:122:2,-32.5,-12,0,0,-0.167919 -82631,5103:122:1,-32,-12,0,0,-0.166081 -82632,5103:121:2,-31.5,-12,0,0,-0.16341 -82633,5103:121:1,-31,-12,0,0,-0.160856 -82634,5103:120:2,-30.5,-12,0,0,-0.158303 -82635,5103:120:1,-30,-12,0,0,-0.15497 -82636,5102:229:2,-29.5,-12,0,0,-0.152274 -82637,5102:229:1,-29,-12,0,0,-0.149672 -82638,5102:228:2,-28.5,-12,0,0,-0.147419 -82639,5102:228:1,-28,-12,0,0,-0.14605 -82640,5102:227:2,-27.5,-12,0,0,-0.14544 -82641,5102:227:1,-27,-12,0,0,-0.144852 -82642,5102:226:2,-26.5,-12,0,0,-0.142853 -82643,5102:226:1,-26,-12,0,0,-0.139866 -82644,5102:225:2,-25.5,-12,0,0,-0.137974 -82645,5102:225:1,-25,-12,0,0,-0.136853 -82646,5102:124:2,-24.5,-12,0,0,-0.136064 -82647,5102:124:1,-24,-12,0,0,-0.13605 -82648,5102:123:2,-23.5,-12,0,0,-0.13605 -82649,5102:123:1,-23,-12,0,0,-0.13605 -82650,5102:122:2,-22.5,-12,0,0,-0.13605 -82651,5102:122:1,-22,-12,0,0,-0.13605 -82652,5102:121:2,-21.5,-12,0,0,-0.13605 -82653,5102:121:1,-21,-12,0,0,-0.13605 -82654,5102:120:2,-20.5,-12,0,0,-0.13605 -82655,5102:120:1,-20,-12,0,0,-0.13605 -82656,5101:229:2,-19.5,-12,0,0,-0.13605 -82657,5101:229:1,-19,-12,0,0,-0.13605 -82658,5101:228:2,-18.5,-12,0,0,-0.13605 -82659,5101:228:1,-18,-12,0,0,-0.13605 -82660,5101:227:2,-17.5,-12,0,0,-0.13605 -82661,5101:227:1,-17,-12,0,0,-0.13605 -82662,5101:226:2,-16.5,-12,0,0,-0.13605 -82663,5101:226:1,-16,-12,0,0,-0.13605 -82664,5101:225:2,-15.5,-12,0,0,-0.13605 -82665,5101:225:1,-15,-12,0,0,-0.13605 -82666,5101:124:2,-14.5,-12,0,0,-0.13605 -82667,5101:124:1,-14,-12,0,0,-0.13605 -82668,5101:123:2,-13.5,-12,0,0,-0.13605 -82669,5101:123:1,-13,-12,0,0,-0.13605 -82670,5101:122:2,-12.5,-12,0,0,-0.13605 -82671,5101:122:1,-12,-12,0,0,-0.13605 -82672,5101:121:2,-11.5,-12,0,0,-0.13605 -82673,5101:121:1,-11,-12,0,0,-0.13605 -82674,5101:120:2,-10.5,-12,0,0,-0.13605 -82675,5101:120:1,-10,-12,0,0,-0.13605 -82676,5100:229:2,-9.5,-12,0,0,-0.13605 -82677,5100:229:1,-9,-12,0,0,-0.13605 -82678,5100:228:2,-8.5,-12,0,0,-0.13605 -82679,5100:228:1,-8,-12,0,0,-0.13605 -82680,5100:227:2,-7.5,-12,0,0,-0.13605 -82681,5100:227:1,-7,-12,0,0,-0.13605 -82682,5100:226:2,-6.5,-12,0,0,-0.13605 -82683,5100:226:1,-6,-12,0,0,-0.13605 -82684,5100:225:2,-5.5,-12,0,0,-0.13605 -82685,5100:225:1,-5,-12,0,0,-0.13605 -82686,5100:124:2,-4.5,-12,0,0,-0.13605 -82687,5100:124:1,-4,-12,0,0,-0.13605 -82688,5100:123:2,-3.5,-12,0,0,-0.13605 -82689,5100:123:1,-3,-12,0,0,-0.13605 -82690,5100:122:2,-2.5,-12,0,0,-0.13605 -82691,5100:122:1,-2,-12,0,0,-0.13605 -82692,5100:121:2,-1.5,-12,0,0,-0.13605 -82693,5100:121:1,-1,-12,0,0,-0.13605 -82694,5100:120:2,-0.5,-12,0,0,-0.13605 -82695,3100:120:2,0,-12,0,0,-0.13605 -82696,3100:120:2,0.5,-12,0,0,-0.13605 -82697,3100:121:1,1,-12,0,0,-0.13605 -82698,3100:121:2,1.5,-12,0,0,-0.13605 -82699,3100:122:1,2,-12,0,0,-0.13605 -82700,3100:122:2,2.5,-12,0,0,-0.13605 -82701,3100:123:1,3,-12,0,0,-0.13605 -82702,3100:123:2,3.5,-12,0,0,-0.13605 -82703,3100:124:1,4,-12,0,0,-0.13605 -82704,3100:124:2,4.5,-12,0,0,-0.13605 -82705,3100:225:1,5,-12,0,0,-0.13605 -82706,3100:225:2,5.5,-12,0,0,-0.13605 -82707,3100:226:1,6,-12,0,0,-0.13605 -82708,3100:226:2,6.5,-12,0,0,-0.13605 -82709,3100:227:1,7,-12,0,0,-0.13605 -82710,3100:227:2,7.5,-12,0,0,-0.13605 -82711,3100:228:1,8,-12,0,0,-0.13605 -82712,3100:228:2,8.5,-12,0,0,-0.13605 -82713,3100:229:1,9,-12,0,0,-0.13605 -82714,3100:229:2,9.5,-12,0,0,-0.13605 -82715,3101:120:1,10,-12,0,0,-0.13605 -82716,3101:120:2,10.5,-12,0,0,-0.13605 -82717,3101:121:1,11,-12,0,0,-0.13605 -82718,3101:121:2,11.5,-12,0,0,-0.13605 -82719,3101:122:1,12,-12,0,0,-0.13605 -82720,3104:121:1,41,-12,0,0,1.9184 -82721,3104:121:2,41.5,-12,0,0,1.50365 -82722,3104:122:1,42,-12,0,0,1.38766 -82723,3104:122:2,42.5,-12,0,0,1.4125 -82724,3104:123:1,43,-12,0,0,1.36086 -82725,3104:123:2,43.5,-12,0,0,1.39394 -82726,3104:124:1,44,-12,0,0,1.4688 -82727,3104:124:2,44.5,-12,0,0,1.50512 -82728,3104:225:1,45,-12,0,0,1.55852 -82729,3104:225:2,45.5,-12,0,0,1.52777 -82730,3104:226:1,46,-12,0,0,1.42162 -82732,3104:227:1,47,-12,0,0,1.24303 -82733,3105:120:1,50,-12,0,0,-0.191692 -82734,3105:120:2,50.5,-12,0,0,-0.190217 -82735,3105:121:1,51,-12,0,0,-0.188385 -82736,3105:121:2,51.5,-12,0,0,-0.189127 -82737,3105:122:1,52,-12,0,0,-0.188571 -82738,3105:122:2,52.5,-12,0,0,-0.187779 -82739,3105:123:1,53,-12,0,0,-0.186418 -82740,3105:123:2,53.5,-12,0,0,-0.186626 -82741,3105:124:1,54,-12,0,0,-0.187438 -82742,3105:124:2,54.5,-12,0,0,-0.18828 -82743,3105:225:1,55,-12,0,0,-0.188253 -82744,3105:225:2,55.5,-12,0,0,-0.188201 -82745,3105:226:1,56,-12,0,0,-0.188016 -82746,3105:226:2,56.5,-12,0,0,-0.187674 -82747,3105:227:1,57,-12,0,0,-0.187412 -82748,3105:227:2,57.5,-12,0,0,-0.186992 -82749,3105:228:1,58,-12,0,0,-0.186392 -82750,3105:228:2,58.5,-12,0,0,-0.185715 -82751,3105:229:1,59,-12,0,0,-0.184267 -82752,3105:229:2,59.5,-12,0,0,-0.18179 -82753,3106:120:1,60,-12,0,0,-0.178929 -82754,3106:120:2,60.5,-12,0,0,-0.182197 -82755,3106:121:1,61,-12,0,0,-0.177641 -82756,3106:121:2,61.5,-12,0,0,-0.179253 -82757,3106:122:1,62,-12,0,0,-0.179278 -82758,3106:122:2,62.5,-12,0,0,-0.177173 -82759,3106:123:1,63,-12,0,0,-0.175024 -82760,3106:123:2,63.5,-12,0,0,-0.174975 -82761,3106:124:1,64,-12,0,0,-0.175024 -82762,3106:124:2,64.5,-12,0,0,-0.174418 -82763,3106:225:1,65,-12,0,0,-0.174057 -82764,3106:225:2,65.5,-12,0,0,-0.17437 -82765,3106:226:1,66,-12,0,0,-0.175291 -82766,3106:226:2,66.5,-12,0,0,-0.176388 -82767,3106:227:1,67,-12,0,0,-0.177616 -82768,3106:227:2,67.5,-12,0,0,-0.177987 -82769,3106:228:1,68,-12,0,0,-0.17774 -82770,3106:228:2,68.5,-12,0,0,-0.176878 -82771,3106:229:1,69,-12,0,0,-0.175753 -82772,3106:229:2,69.5,-12,0,0,-0.174806 -82773,3107:120:1,70,-12,0,0,-0.17425 -82774,3107:120:2,70.5,-12,0,0,-0.173912 -82775,3107:121:1,71,-12,0,0,-0.17336 -82776,3107:121:2,71.5,-12,0,0,-0.172594 -82777,3107:122:1,72,-12,0,0,-0.172857 -82778,3107:122:2,72.5,-12,0,0,-0.174685 -82779,3107:123:2,73.5,-12,0,0,-0.177419 -82780,3107:124:1,74,-12,0,0,-0.181285 -82781,3107:124:2,74.5,-12,0,0,-0.185715 -82782,3107:225:1,75,-12,0,0,-0.189152 -82783,3107:225:2,75.5,-12,0,0,-0.190779 -82784,3107:226:1,76,-12,0,0,-0.190993 -82785,3107:226:2,76.5,-12,0,0,-0.190564 -82786,3107:227:1,77,-12,0,0,-0.190324 -82787,3107:227:2,77.5,-12,0,0,-0.189418 -82788,3107:228:1,78,-12,0,0,-0.187307 -82789,3107:228:2,78.5,-12,0,0,-0.184835 -82790,3107:229:1,79,-12,0,0,-0.183497 -82791,3107:229:2,79.5,-12,0,0,-0.183088 -82792,3108:120:1,80,-12,0,0,-0.18245 -82793,3108:120:2,80.5,-12,0,0,-0.181259 -82794,3108:121:1,81,-12,0,0,-0.179602 -82795,3108:121:2,81.5,-12,0,0,-0.177591 -82796,3108:122:1,82,-12,0,0,-0.175194 -82797,3108:122:2,82.5,-12,0,0,-0.173889 -82798,3108:123:1,83,-12,0,0,-0.173072 -82799,3108:123:2,83.5,-12,0,0,-0.172332 -82800,3108:124:1,84,-12,0,0,-0.171145 -82801,3108:124:2,84.5,-12,0,0,-0.169875 -82802,3108:225:1,85,-12,0,0,-0.168405 -82803,3108:225:2,85.5,-12,0,0,-0.166974 -82804,3108:226:1,86,-12,0,0,-0.165465 -82805,3108:226:2,86.5,-12,0,0,-0.16395 -82806,3108:227:1,87,-12,0,0,-0.162005 -82807,3108:227:2,87.5,-12,0,0,-0.160657 -82808,3108:228:1,88,-12,0,0,-0.159563 -82809,3108:228:2,88.5,-12,0,0,-0.158584 -82810,3108:229:1,89,-12,0,0,-0.159563 -82811,3108:229:2,89.5,-12,0,0,-0.160152 -82812,3109:120:1,90,-12,0,0,-0.159847 -82813,3109:120:2,90.5,-12,0,0,-0.160262 -82814,3109:121:1,91,-12,0,0,-0.16068 -82815,3109:121:2,91.5,-12,0,0,-0.160856 -82816,3109:122:1,92,-12,0,0,-0.160657 -82817,3109:122:2,92.5,-12,0,0,-0.160175 -82818,3109:123:1,93,-12,0,0,-0.15941 -82819,3109:123:2,93.5,-12,0,0,-0.158801 -82820,3109:124:1,94,-12,0,0,-0.158497 -82821,3109:124:2,94.5,-12,0,0,-0.158606 -82822,3109:225:1,95,-12,0,0,-0.157376 -82823,3109:225:2,95.5,-12,0,0,-0.153229 -82824,3109:226:1,96,-12,0,0,-0.151347 -82825,3109:226:2,96.5,-12,0,0,-0.150262 -82826,3109:227:1,97,-12,0,0,-0.149632 -82827,3109:227:2,97.5,-12,0,0,-0.148581 -82828,3109:228:1,98,-12,0,0,-0.149875 -82829,3109:228:2,98.5,-12,0,0,-0.152792 -82830,3109:229:1,99,-12,0,0,-0.157312 -82831,3109:229:2,99.5,-12,0,0,-0.161495 -82832,3110:120:1,100,-12,0,0,-0.164626 -82833,3110:120:2,100.5,-12,0,0,-0.168243 -82834,3110:121:1,101,-12,0,0,-0.172046 -82835,3110:121:2,101.5,-12,0,0,-0.177197 -82836,3110:122:1,102,-12,0,0,-0.181841 -82837,3110:122:2,102.5,-12,0,0,-0.185404 -82838,3110:123:1,103,-12,0,0,-0.188042 -82839,3110:123:2,103.5,-12,0,0,-0.188517 -82840,3110:124:1,104,-12,0,0,-0.185819 -82841,3110:124:2,104.5,-12,0,0,-0.180579 -82842,3110:225:1,105,-12,0,0,-0.17372 -82843,3110:225:2,105.5,-12,0,0,-0.171406 -82844,3110:226:1,106,-12,0,0,-0.170556 -82845,3110:226:2,106.5,-12,0,0,-0.17312 -82846,3110:227:1,107,-12,0,0,-0.174781 -82847,3110:227:2,107.5,-12,0,0,-0.179302 -82848,3110:228:1,108,-12,0,0,-0.18342 -82849,3110:228:2,108.5,-12,0,0,-0.191316 -82850,3110:229:1,109,-12,0,0,-0.193826 -82851,3110:229:2,109.5,-12,0,0,-0.19544 -82852,3111:120:1,110,-12,0,0,-0.193696 -82853,3111:120:2,110.5,-12,0,0,-0.191665 -82854,3111:121:1,111,-12,0,0,-0.194696 -82855,3111:121:2,111.5,-12,0,0,-0.230244 -82856,3111:122:1,112,-12,0,0,-0.357826 -82857,3111:122:2,112.5,-12,0,0,-0.593488 -82858,3111:123:1,113,-12,0,0,-1.36652 -82859,3111:123:2,113.5,-12,0,0,-12.3098 -82860,3111:124:1,114,-12,0,0,5.42473 -82861,3111:124:2,114.5,-12,0,0,4.48903 -82862,3111:225:1,115,-12,0,0,14.3011 -82863,3111:225:2,115.5,-12,0,0,-2.195 -82864,3111:226:1,116,-12,0,0,-1.55304 -82865,3111:226:2,116.5,-12,0,0,-1.59213 -82866,3111:227:1,117,-12,0,0,-2.38378 -82867,3111:227:2,117.5,-12,0,0,-19.0885 -82868,3111:228:1,118,-12,0,0,6.78705 -82869,3111:228:2,118.5,-12,0,0,2.43738 -82870,3111:229:1,119,-12,0,0,1.85087 -82871,3111:229:2,119.5,-12,0,0,2.23865 -82872,3112:120:1,120,-12,0,0,2.72758 -82873,3112:120:2,120.5,-12,0,0,2.34123 -82874,3112:121:1,121,-12,0,0,2.0541 -82875,3112:121:2,121.5,-12,0,0,1.85694 -82876,3112:122:1,122,-12,0,0,1.61222 -82877,3112:122:2,122.5,-12,0,0,1.41818 -82878,3112:123:1,123,-12,0,0,1.30474 -82879,3112:123:2,123.5,-12,0,0,1.26119 -82880,3112:124:1,124,-12,0,0,1.2538 -82881,3112:124:2,124.5,-12,0,0,1.30106 -82882,3112:225:1,125,-12,0,0,1.1418 -82883,3112:228:2,128.5,-12,0,0,1.12637 -82884,3112:229:1,129,-12,0,0,1.05973 -82885,3112:229:2,129.5,-12,0,0,1.05394 -82886,3113:226:1,136,-12,0,0,1.05671 -82887,3113:226:2,136.5,-12,0,0,1.06339 -82888,3113:227:1,137,-12,0,0,1.07829 -82889,3113:227:2,137.5,-12,0,0,1.10107 -82890,3113:228:1,138,-12,0,0,1.14194 -82891,3113:228:2,138.5,-12,0,0,1.18311 -82892,3113:229:1,139,-12,0,0,1.21124 -82893,3113:229:2,139.5,-12,0,0,1.21651 -82894,3114:120:1,140,-12,0,0,1.23948 -82895,3114:120:2,140.5,-12,0,0,1.25515 -82896,3114:121:1,141,-12,0,0,1.22402 -82897,3114:121:2,141.5,-12,0,0,1.13526 -82898,3114:225:2,145.5,-12,0,0,-0.2649 -82899,3114:226:1,146,-12,0,0,-0.196231 -82900,3114:226:2,146.5,-12,0,0,-0.196583 -82901,3114:227:1,147,-12,0,0,-0.197647 -82902,3114:227:2,147.5,-12,0,0,-0.201139 -82903,3114:228:1,148,-12,0,0,-0.219541 -82904,3114:228:2,148.5,-12,0,0,-0.237733 -82905,3114:229:1,149,-12,0,0,-0.218897 -82906,3114:229:2,149.5,-12,0,0,-0.236649 -82907,3115:120:1,150,-12,0,0,-0.255578 -82908,3115:120:2,150.5,-12,0,0,-0.253615 -82909,3115:121:1,151,-12,0,0,-0.245515 -82910,3115:121:2,151.5,-12,0,0,-0.229892 -82911,3115:122:1,152,-12,0,0,-0.233779 -82912,3115:122:2,152.5,-12,0,0,-0.25322 -82913,3115:123:1,153,-12,0,0,-0.275496 -82914,3115:123:2,153.5,-12,0,0,-0.282109 -82915,3115:124:1,154,-12,0,0,-0.289367 -82916,3115:124:2,154.5,-12,0,0,-0.286168 -82917,3115:225:1,155,-12,0,0,-0.269922 -82918,3115:225:2,155.5,-12,0,0,-0.248184 -82919,3115:226:1,156,-12,0,0,-0.222449 -82920,3115:226:2,156.5,-12,0,0,-0.20257 -82921,3115:227:1,157,-12,0,0,-0.196144 -82922,3115:227:2,157.5,-12,0,0,-0.192421 -82923,3115:228:1,158,-12,0,0,-0.190859 -82924,3115:228:2,158.5,-12,0,0,-0.190004 -82925,3115:229:1,159,-12,0,0,-0.189445 -82926,3115:229:2,159.5,-12,0,0,-0.188808 -82927,3116:120:1,160,-12,0,0,-0.188095 -82928,3116:120:2,160.5,-12,0,0,-0.187307 -82929,3116:121:1,161,-12,0,0,-0.186678 -82930,3116:121:2,161.5,-12,0,0,-0.186261 -82931,3116:122:1,162,-12,0,0,-0.18587 -82932,3116:122:2,162.5,-12,0,0,-0.185585 -82933,3116:123:1,163,-12,0,0,-0.185663 -82934,3116:123:2,163.5,-12,0,0,-0.186157 -82935,3116:124:1,164,-12,0,0,-0.186862 -82936,3116:124:2,164.5,-12,0,0,-0.187464 -82937,3116:225:1,165,-12,0,0,-0.187648 -82938,3116:225:2,165.5,-12,0,0,-0.187464 -82939,3116:226:1,166,-12,0,0,-0.186496 -82940,3116:226:2,166.5,-12,0,0,-0.183805 -82941,3116:227:1,167,-12,0,0,-0.177641 -82942,3116:227:2,167.5,-12,0,0,-0.180781 -82943,3116:228:1,168,-12,0,0,-0.184087 -82944,3116:228:2,168.5,-12,0,0,-0.186731 -82945,3116:229:1,169,-12,0,0,-0.189445 -82946,3116:229:2,169.5,-12,0,0,-0.190913 -82947,3117:120:1,170,-12,0,0,-0.191558 -82948,3117:120:2,170.5,-12,0,0,-0.192259 -82949,3117:121:1,171,-12,0,0,-0.192746 -82950,3117:121:2,171.5,-12,0,0,-0.191799 -82951,3117:122:1,172,-12,0,0,-0.190832 -82952,3117:122:2,172.5,-12,0,0,-0.190779 -82953,3117:123:1,173,-12,0,0,-0.190832 -82954,3117:123:2,173.5,-12,0,0,-0.189897 -82955,3117:124:1,174,-12,0,0,-0.188385 -82956,3117:124:2,174.5,-12,0,0,-0.186809 -82957,3117:225:1,175,-12,0,0,-0.186574 -82958,3117:225:2,175.5,-12,0,0,-0.18587 -82959,3117:226:1,176,-12,0,0,-0.185404 -82960,3117:226:2,176.5,-12,0,0,-0.185378 -82961,3117:227:1,177,-12,0,0,-0.185093 -82962,3117:227:2,177.5,-12,0,0,-0.185689 -82963,3117:228:1,178,-12,0,0,-0.186235 -82964,3117:228:2,178.5,-12,0,0,-0.186183 -82965,3117:229:1,179,-12,0,0,-0.185507 -82966,3117:229:2,179.5,-12,0,0,-0.18486 -82967,3118:120:1,180,-12,0,0,-0.184886 -82968,5118:110:3,-180,-11.5,0,0,-0.194 -82969,5117:219:4,-179.5,-11.5,0,0,-0.194696 -82970,5117:219:3,-179,-11.5,0,0,-0.195968 -82971,5117:218:4,-178.5,-11.5,0,0,-0.198047 -82972,5117:218:3,-178,-11.5,0,0,-0.203498 -82973,5117:217:4,-177.5,-11.5,0,0,-0.219541 -82974,5117:217:3,-177,-11.5,0,0,-0.244388 -82975,5117:216:4,-176.5,-11.5,0,0,-0.268235 -82976,5117:216:3,-176,-11.5,0,0,-0.296391 -82977,5117:215:4,-175.5,-11.5,0,0,-0.34492 -82978,5117:215:3,-175,-11.5,0,0,-0.40811 -82979,5117:114:4,-174.5,-11.5,0,0,-0.483508 -82980,5117:114:3,-174,-11.5,0,0,-0.560894 -82981,5117:113:4,-173.5,-11.5,0,0,-0.596996 -82982,5117:113:3,-173,-11.5,0,0,-0.58652 -82983,5117:112:4,-172.5,-11.5,0,0,-0.520767 -82984,5117:112:3,-172,-11.5,0,0,-0.421156 -82985,5117:111:3,-171,-11.5,0,0,-0.4332 -82986,5117:110:4,-170.5,-11.5,0,0,-0.482617 -82987,5117:110:3,-170,-11.5,0,0,-0.502601 -82988,5116:219:4,-169.5,-11.5,0,0,-0.524698 -82989,5116:219:3,-169,-11.5,0,0,-0.546016 -82990,5116:218:4,-168.5,-11.5,0,0,-0.570748 -82991,5116:218:3,-168,-11.5,0,0,-0.612584 -82992,5116:217:4,-167.5,-11.5,0,0,-0.662869 -82993,5116:217:3,-167,-11.5,0,0,-0.718965 -82994,5116:216:4,-166.5,-11.5,0,0,-0.796031 -82995,5116:216:3,-166,-11.5,0,0,-0.824369 -82996,5116:215:4,-165.5,-11.5,0,0,-0.860292 -82997,5116:215:3,-165,-11.5,0,0,-0.922117 -82998,5116:114:4,-164.5,-11.5,0,0,-1.02582 -82999,5116:114:3,-164,-11.5,0,0,-1.21288 -83000,5116:113:4,-163.5,-11.5,0,0,-1.5157 -83001,5116:113:3,-163,-11.5,0,0,-1.87444 -83002,5116:112:4,-162.5,-11.5,0,0,-2.20871 -83003,5116:112:3,-162,-11.5,0,0,-2.36818 -83004,5116:111:4,-161.5,-11.5,0,0,-2.44745 -83005,5116:111:3,-161,-11.5,0,0,-2.5839 -83006,5116:110:4,-160.5,-11.5,0,0,-2.96716 -83007,5116:110:3,-160,-11.5,0,0,-3.49152 -83008,5115:219:4,-159.5,-11.5,0,0,-4.42854 -83009,5115:219:3,-159,-11.5,0,0,-5.57618 -83010,5115:218:4,-158.5,-11.5,0,0,-6.37632 -83011,5115:218:3,-158,-11.5,0,0,-7.18855 -83012,5115:217:4,-157.5,-11.5,0,0,-9.98073 -83013,5115:217:3,-157,-11.5,0,0,-15.4623 -83014,5115:216:4,-156.5,-11.5,0,0,-20.6761 -83015,5115:216:3,-156,-11.5,0,0,-33.0023 -83016,5115:215:4,-155.5,-11.5,0,0,-116.03 -83017,5115:215:3,-155,-11.5,0,0,-68.8761 -83018,5115:114:4,-154.5,-11.5,0,0,-19.8636 -83019,5115:114:3,-154,-11.5,0,0,-7.93871 -83020,5115:113:4,-153.5,-11.5,0,0,-5.50572 -83021,5115:113:3,-153,-11.5,0,0,-4.47573 -83022,5115:112:4,-152.5,-11.5,0,0,-4.12441 -83023,5115:112:3,-152,-11.5,0,0,-4.24979 -83024,5115:111:4,-151.5,-11.5,0,0,-4.08368 -83025,5115:111:3,-151,-11.5,0,0,-3.7844 -83026,5115:110:4,-150.5,-11.5,0,0,-3.6164 -83027,5115:110:3,-150,-11.5,0,0,-3.15913 -83028,5114:219:4,-149.5,-11.5,0,0,-3.10876 -83029,5114:219:3,-149,-11.5,0,0,-2.89986 -83030,5114:218:4,-148.5,-11.5,0,0,-2.54832 -83031,5114:218:3,-148,-11.5,0,0,-2.38378 -83032,5114:217:4,-147.5,-11.5,0,0,-1.8336 -83033,5114:217:3,-147,-11.5,0,0,-1.26096 -83034,5114:216:4,-146.5,-11.5,0,0,-0.986926 -83035,5114:216:3,-146,-11.5,0,0,-0.833119 -83036,5114:215:4,-145.5,-11.5,0,0,-0.779764 -83037,5114:215:3,-145,-11.5,0,0,-0.724249 -83038,5114:114:4,-144.5,-11.5,0,0,-0.763942 -83039,5114:114:3,-144,-11.5,0,0,-0.824369 -83040,5114:113:4,-143.5,-11.5,0,0,-0.882387 -83041,5114:113:3,-143,-11.5,0,0,-0.892054 -83042,5114:112:4,-142.5,-11.5,0,0,-0.892054 -83043,5114:112:3,-142,-11.5,0,0,-0.885625 -83044,5114:111:4,-141.5,-11.5,0,0,-0.842097 -83045,5114:111:3,-141,-11.5,0,0,-0.787837 -83046,5114:110:4,-140.5,-11.5,0,0,-0.779764 -83047,5114:110:3,-140,-11.5,0,0,-0.752743 -83048,5113:219:4,-139.5,-11.5,0,0,-0.708665 -83049,5113:219:3,-139,-11.5,0,0,-0.662869 -83050,5113:218:4,-138.5,-11.5,0,0,-0.61749 -83051,5113:218:3,-138,-11.5,0,0,-0.595811 -83052,5113:217:4,-137.5,-11.5,0,0,-0.556592 -83053,5113:217:3,-137,-11.5,0,0,-0.530655 -83054,5113:216:4,-136.5,-11.5,0,0,-0.504485 -83055,5113:216:3,-136,-11.5,0,0,-0.473901 -83056,5113:215:4,-135.5,-11.5,0,0,-0.444919 -83057,5113:215:3,-135,-11.5,0,0,-0.403187 -83058,5113:114:4,-134.5,-11.5,0,0,-0.38354 -83059,5113:114:3,-134,-11.5,0,0,-0.396268 -83060,5113:113:4,-133.5,-11.5,0,0,-0.38354 -83061,5113:113:3,-133,-11.5,0,0,-0.335348 -83062,5113:112:4,-132.5,-11.5,0,0,-0.312575 -83063,5113:112:3,-132,-11.5,0,0,-0.297334 -83064,5113:111:4,-131.5,-11.5,0,0,-0.261205 -83065,5113:111:3,-131,-11.5,0,0,-0.231648 -83066,5113:110:4,-130.5,-11.5,0,0,-0.216043 -83067,5113:110:3,-130,-11.5,0,0,-0.207644 -83068,5112:219:4,-129.5,-11.5,0,0,-0.19917 -83069,5112:219:3,-129,-11.5,0,0,-0.196188 -83070,5112:218:4,-128.5,-11.5,0,0,-0.190752 -83071,5112:218:3,-128,-11.5,0,0,-0.188994 -83072,5112:217:4,-127.5,-11.5,0,0,-0.188464 -83073,5112:217:3,-127,-11.5,0,0,-0.187228 -83074,5112:216:4,-126.5,-11.5,0,0,-0.184989 -83075,5112:216:3,-126,-11.5,0,0,-0.181917 -83076,5112:215:4,-125.5,-11.5,0,0,-0.180403 -83077,5112:215:3,-125,-11.5,0,0,-0.179852 -83078,5112:114:4,-124.5,-11.5,0,0,-0.178234 -83079,5112:114:3,-124,-11.5,0,0,-0.175097 -83080,5112:113:4,-123.5,-11.5,0,0,-0.17288 -83081,5112:113:3,-123,-11.5,0,0,-0.171666 -83082,5112:112:4,-122.5,-11.5,0,0,-0.169687 -83083,5112:112:3,-122,-11.5,0,0,-0.166951 -83084,5112:111:4,-121.5,-11.5,0,0,-0.165397 -83085,5112:111:3,-121,-11.5,0,0,-0.16368 -83086,5112:110:4,-120.5,-11.5,0,0,-0.161341 -83087,5112:110:3,-120,-11.5,0,0,-0.159847 -83088,5111:219:4,-119.5,-11.5,0,0,-0.157978 -83089,5111:219:3,-119,-11.5,0,0,-0.156349 -83090,5111:218:4,-118.5,-11.5,0,0,-0.154928 -83091,5111:218:3,-118,-11.5,0,0,-0.153354 -83092,5111:217:4,-117.5,-11.5,0,0,-0.151121 -83093,5111:217:3,-117,-11.5,0,0,-0.148661 -83094,5111:216:4,-116.5,-11.5,0,0,-0.147459 -83095,5111:216:3,-116,-11.5,0,0,-0.145028 -83096,5111:215:4,-115.5,-11.5,0,0,-0.140054 -83097,5111:215:3,-115,-11.5,0,0,-0.137204 -83098,5111:114:4,-114.5,-11.5,0,0,-0.13605 -83099,5111:114:3,-114,-11.5,0,0,-0.13605 -83100,5111:113:4,-113.5,-11.5,0,0,-0.13605 -83101,5111:113:3,-113,-11.5,0,0,-0.13605 -83102,5111:112:4,-112.5,-11.5,0,0,-0.13605 -83103,5111:112:3,-112,-11.5,0,0,-0.13605 -83104,5111:111:4,-111.5,-11.5,0,0,-0.13605 -83105,5111:111:3,-111,-11.5,0,0,-0.13605 -83106,5111:110:4,-110.5,-11.5,0,0,-0.13605 -83107,5111:110:3,-110,-11.5,0,0,-0.13605 -83108,5110:219:4,-109.5,-11.5,0,0,-0.13605 -83109,5110:219:3,-109,-11.5,0,0,-0.13605 -83110,5110:218:4,-108.5,-11.5,0,0,-0.13605 -83111,5110:218:3,-108,-11.5,0,0,-0.13605 -83112,5110:217:4,-107.5,-11.5,0,0,-0.13605 -83113,5110:217:3,-107,-11.5,0,0,-0.13605 -83114,5110:216:4,-106.5,-11.5,0,0,-0.13605 -83115,5110:216:3,-106,-11.5,0,0,-0.13605 -83116,5110:215:4,-105.5,-11.5,0,0,-0.13605 -83117,5110:215:3,-105,-11.5,0,0,-0.13605 -83118,5110:114:4,-104.5,-11.5,0,0,-0.13605 -83119,5110:114:3,-104,-11.5,0,0,-0.13605 -83120,5110:113:4,-103.5,-11.5,0,0,-0.13605 -83121,5110:113:3,-103,-11.5,0,0,-0.13605 -83122,5110:112:4,-102.5,-11.5,0,0,-0.13605 -83123,5110:112:3,-102,-11.5,0,0,-0.13605 -83124,5110:111:4,-101.5,-11.5,0,0,-0.13605 -83125,5110:111:3,-101,-11.5,0,0,-0.13605 -83126,5110:110:4,-100.5,-11.5,0,0,-0.13605 -83127,5110:110:3,-100,-11.5,0,0,-0.13605 -83128,5109:219:4,-99.5,-11.5,0,0,-0.13605 -83129,5109:219:3,-99,-11.5,0,0,-0.13605 -83130,5109:218:4,-98.5,-11.5,0,0,-0.13605 -83131,5109:218:3,-98,-11.5,0,0,-0.13605 -83132,5109:217:4,-97.5,-11.5,0,0,-0.13605 -83133,5109:217:3,-97,-11.5,0,0,-0.13605 -83134,5109:216:4,-96.5,-11.5,0,0,-0.13605 -83135,5109:216:3,-96,-11.5,0,0,-0.13605 -83136,5109:215:4,-95.5,-11.5,0,0,-0.13605 -83137,5109:215:3,-95,-11.5,0,0,-0.13605 -83138,5109:114:4,-94.5,-11.5,0,0,-0.13605 -83139,5109:114:3,-94,-11.5,0,0,-0.13605 -83140,5109:113:4,-93.5,-11.5,0,0,-0.13605 -83141,5109:113:3,-93,-11.5,0,0,-0.13605 -83142,5109:112:4,-92.5,-11.5,0,0,-0.13605 -83143,5109:112:3,-92,-11.5,0,0,-0.13605 -83144,5109:111:4,-91.5,-11.5,0,0,-0.13605 -83145,5109:111:3,-91,-11.5,0,0,-0.13605 -83146,5109:110:4,-90.5,-11.5,0,0,-0.13605 -83147,5109:110:3,-90,-11.5,0,0,-0.13605 -83148,5108:219:4,-89.5,-11.5,0,0,-0.13605 -83149,5108:219:3,-89,-11.5,0,0,-0.13605 -83150,5108:218:4,-88.5,-11.5,0,0,-0.13605 -83151,5108:218:3,-88,-11.5,0,0,-0.13605 -83152,5108:217:4,-87.5,-11.5,0,0,-0.13605 -83153,5108:217:3,-87,-11.5,0,0,-0.13605 -83154,5108:216:4,-86.5,-11.5,0,0,-0.13605 -83155,5108:216:3,-86,-11.5,0,0,-0.13605 -83156,5108:215:4,-85.5,-11.5,0,0,-0.13605 -83157,5108:215:3,-85,-11.5,0,0,-0.13605 -83158,5108:114:4,-84.5,-11.5,0,0,-0.13605 -83159,5108:114:3,-84,-11.5,0,0,-0.13605 -83160,5108:113:4,-83.5,-11.5,0,0,-0.13605 -83161,5108:113:3,-83,-11.5,0,0,-0.13605 -83162,5108:112:4,-82.5,-11.5,0,0,-0.13605 -83163,5108:112:3,-82,-11.5,0,0,-0.13605 -83164,5108:111:4,-81.5,-11.5,0,0,-0.13605 -83165,5108:111:3,-81,-11.5,0,0,-0.13605 -83166,5108:110:4,-80.5,-11.5,0,0,-0.13605 -83167,5108:110:3,-80,-11.5,0,0,-0.13605 -83168,5107:219:4,-79.5,-11.5,0,0,-0.13605 -83169,5107:219:3,-79,-11.5,0,0,-0.13605 -83170,5107:218:4,-78.5,-11.5,0,0,-0.13605 -83171,5107:218:3,-78,-11.5,0,0,-0.13605 -83172,5107:217:4,-77.5,-11.5,0,0,-0.13605 -83173,5107:217:3,-77,-11.5,0,0,-0.13605 -83174,5107:216:4,-76.5,-11.5,0,0,-0.13605 -83175,5103:219:3,-39,-11.5,0,0,-0.170508 -83176,5103:218:4,-38.5,-11.5,0,0,-0.178581 -83177,5103:218:3,-38,-11.5,0,0,-0.179627 -83178,5103:217:4,-37.5,-11.5,0,0,-0.181158 -83179,5103:217:3,-37,-11.5,0,0,-0.180529 -83180,5103:216:4,-36.5,-11.5,0,0,-0.180354 -83181,5103:216:3,-36,-11.5,0,0,-0.179952 -83182,5103:215:4,-35.5,-11.5,0,0,-0.179178 -83183,5103:215:3,-35,-11.5,0,0,-0.178234 -83184,5103:114:4,-34.5,-11.5,0,0,-0.176486 -83185,5103:114:3,-34,-11.5,0,0,-0.174346 -83186,5103:113:4,-33.5,-11.5,0,0,-0.172713 -83187,5103:113:3,-33,-11.5,0,0,-0.170886 -83188,5103:112:4,-32.5,-11.5,0,0,-0.168894 -83189,5103:112:3,-32,-11.5,0,0,-0.167549 -83190,5103:111:4,-31.5,-11.5,0,0,-0.164898 -83191,5103:111:3,-31,-11.5,0,0,-0.162005 -83192,5103:110:4,-30.5,-11.5,0,0,-0.16057 -83193,5103:110:3,-30,-11.5,0,0,-0.158108 -83194,5102:219:4,-29.5,-11.5,0,0,-0.155774 -83195,5102:219:3,-29,-11.5,0,0,-0.153772 -83196,5102:218:4,-28.5,-11.5,0,0,-0.151244 -83197,5102:218:3,-28,-11.5,0,0,-0.149754 -83198,5102:217:4,-27.5,-11.5,0,0,-0.149692 -83199,5102:217:3,-27,-11.5,0,0,-0.148923 -83200,5102:216:4,-26.5,-11.5,0,0,-0.146445 -83201,5102:216:3,-26,-11.5,0,0,-0.142718 -83202,5102:215:4,-25.5,-11.5,0,0,-0.139847 -83203,5102:215:3,-25,-11.5,0,0,-0.138682 -83204,5102:114:4,-24.5,-11.5,0,0,-0.137622 -83205,5102:114:3,-24,-11.5,0,0,-0.136447 -83206,5102:113:4,-23.5,-11.5,0,0,-0.13605 -83207,5102:113:3,-23,-11.5,0,0,-0.13605 -83208,5102:112:4,-22.5,-11.5,0,0,-0.13605 -83209,5102:112:3,-22,-11.5,0,0,-0.13605 -83210,5102:111:4,-21.5,-11.5,0,0,-0.13605 -83211,5102:111:3,-21,-11.5,0,0,-0.13605 -83212,5102:110:4,-20.5,-11.5,0,0,-0.13605 -83213,5102:110:3,-20,-11.5,0,0,-0.13605 -83214,5101:219:4,-19.5,-11.5,0,0,-0.13605 -83215,5101:219:3,-19,-11.5,0,0,-0.13605 -83216,5101:218:4,-18.5,-11.5,0,0,-0.13605 -83217,5101:218:3,-18,-11.5,0,0,-0.13605 -83218,5101:217:4,-17.5,-11.5,0,0,-0.13605 -83219,5101:217:3,-17,-11.5,0,0,-0.13605 -83220,5101:216:4,-16.5,-11.5,0,0,-0.13605 -83221,5101:216:3,-16,-11.5,0,0,-0.13605 -83222,5101:215:4,-15.5,-11.5,0,0,-0.13605 -83223,5101:215:3,-15,-11.5,0,0,-0.13605 -83224,5101:114:4,-14.5,-11.5,0,0,-0.13605 -83225,5101:114:3,-14,-11.5,0,0,-0.13605 -83226,5101:113:4,-13.5,-11.5,0,0,-0.13605 -83227,5101:113:3,-13,-11.5,0,0,-0.13605 -83228,5101:112:4,-12.5,-11.5,0,0,-0.13605 -83229,5101:112:3,-12,-11.5,0,0,-0.13605 -83230,5101:111:4,-11.5,-11.5,0,0,-0.13605 -83231,5101:111:3,-11,-11.5,0,0,-0.13605 -83232,5101:110:4,-10.5,-11.5,0,0,-0.13605 -83233,5101:110:3,-10,-11.5,0,0,-0.13605 -83234,5100:219:4,-9.5,-11.5,0,0,-0.13605 -83235,5100:219:3,-9,-11.5,0,0,-0.13605 -83236,5100:218:4,-8.5,-11.5,0,0,-0.13605 -83237,5100:218:3,-8,-11.5,0,0,-0.13605 -83238,5100:217:4,-7.5,-11.5,0,0,-0.13605 -83239,5100:217:3,-7,-11.5,0,0,-0.13605 -83240,5100:216:4,-6.5,-11.5,0,0,-0.13605 -83241,5100:216:3,-6,-11.5,0,0,-0.13605 -83242,5100:215:4,-5.5,-11.5,0,0,-0.13605 -83243,5100:215:3,-5,-11.5,0,0,-0.13605 -83244,5100:114:4,-4.5,-11.5,0,0,-0.13605 -83245,5100:114:3,-4,-11.5,0,0,-0.13605 -83246,5100:113:4,-3.5,-11.5,0,0,-0.13605 -83247,5100:113:3,-3,-11.5,0,0,-0.13605 -83248,5100:112:4,-2.5,-11.5,0,0,-0.13605 -83249,5100:112:3,-2,-11.5,0,0,-0.13605 -83250,5100:111:4,-1.5,-11.5,0,0,-0.13605 -83251,5100:111:3,-1,-11.5,0,0,-0.13605 -83252,5100:110:4,-0.5,-11.5,0,0,-0.13605 -83253,3100:110:4,0,-11.5,0,0,-0.13605 -83254,3100:110:4,0.5,-11.5,0,0,-0.13605 -83255,3100:111:3,1,-11.5,0,0,-0.13605 -83256,3100:111:4,1.5,-11.5,0,0,-0.13605 -83257,3100:112:3,2,-11.5,0,0,-0.13605 -83258,3100:112:4,2.5,-11.5,0,0,-0.13605 -83259,3100:113:3,3,-11.5,0,0,-0.13605 -83260,3100:113:4,3.5,-11.5,0,0,-0.13605 -83261,3100:114:3,4,-11.5,0,0,-0.13605 -83262,3100:114:4,4.5,-11.5,0,0,-0.13605 -83263,3100:215:3,5,-11.5,0,0,-0.13605 -83264,3100:215:4,5.5,-11.5,0,0,-0.13605 -83265,3100:216:3,6,-11.5,0,0,-0.13605 -83266,3100:216:4,6.5,-11.5,0,0,-0.13605 -83267,3100:217:3,7,-11.5,0,0,-0.13605 -83268,3100:217:4,7.5,-11.5,0,0,-0.13605 -83269,3100:218:3,8,-11.5,0,0,-0.13605 -83270,3100:218:4,8.5,-11.5,0,0,-0.13605 -83271,3100:219:3,9,-11.5,0,0,-0.13605 -83272,3100:219:4,9.5,-11.5,0,0,-0.13605 -83273,3101:110:3,10,-11.5,0,0,-0.13605 -83274,3101:110:4,10.5,-11.5,0,0,-0.13605 -83275,3101:111:3,11,-11.5,0,0,-0.13605 -83276,3101:111:4,11.5,-11.5,0,0,-0.13605 -83277,3101:112:3,12,-11.5,0,0,-0.13605 -83278,3104:110:4,40.5,-11.5,0,0,-2.195 -83279,3104:111:3,41,-11.5,0,0,2.15257 -83280,3104:111:4,41.5,-11.5,0,0,1.75082 -83281,3104:112:3,42,-11.5,0,0,1.61222 -83282,3104:112:4,42.5,-11.5,0,0,1.6103 -83283,3104:113:3,43,-11.5,0,0,1.61408 -83284,3104:113:4,43.5,-11.5,0,0,1.72124 -83285,3104:114:3,44,-11.5,0,0,1.91498 -83286,3104:114:4,44.5,-11.5,0,0,1.73338 -83287,3104:215:3,45,-11.5,0,0,1.514 -83288,3104:215:4,45.5,-11.5,0,0,1.38662 -83289,3104:216:3,46,-11.5,0,0,1.46348 -83290,3104:216:4,46.5,-11.5,0,0,1.80695 -83291,3104:217:3,47,-11.5,0,0,3.65558 -83292,3104:217:4,47.5,-11.5,0,0,-20.6761 -83293,3105:110:3,50,-11.5,0,0,-0.191316 -83294,3105:110:4,50.5,-11.5,0,0,-0.189179 -83295,3105:111:3,51,-11.5,0,0,-0.191719 -83296,3105:111:4,51.5,-11.5,0,0,-0.192205 -83297,3105:112:3,52,-11.5,0,0,-0.19296 -83298,3105:112:4,52.5,-11.5,0,0,-0.19335 -83299,3105:113:3,53,-11.5,0,0,-0.192637 -83300,3105:113:4,53.5,-11.5,0,0,-0.193913 -83301,3105:114:3,54,-11.5,0,0,-0.195968 -83302,3105:114:4,54.5,-11.5,0,0,-0.197469 -83303,3105:215:3,55,-11.5,0,0,-0.19707 -83304,3105:215:4,55.5,-11.5,0,0,-0.195968 -83305,3105:216:3,56,-11.5,0,0,-0.194654 -83306,3105:216:4,56.5,-11.5,0,0,-0.19335 -83307,3105:217:3,57,-11.5,0,0,-0.192692 -83308,3105:217:4,57.5,-11.5,0,0,-0.192259 -83309,3105:218:3,58,-11.5,0,0,-0.191665 -83310,3105:218:4,58.5,-11.5,0,0,-0.191127 -83311,3105:219:3,59,-11.5,0,0,-0.190083 -83312,3105:219:4,59.5,-11.5,0,0,-0.187779 -83313,3106:110:3,60,-11.5,0,0,-0.182349 -83314,3106:110:4,60.5,-11.5,0,0,-0.184216 -83315,3106:111:3,61,-11.5,0,0,-0.183933 -83316,3106:111:4,61.5,-11.5,0,0,-0.185326 -83317,3106:112:3,62,-11.5,0,0,-0.184886 -83318,3106:112:4,62.5,-11.5,0,0,-0.182247 -83319,3106:113:3,63,-11.5,0,0,-0.180002 -83320,3106:113:4,63.5,-11.5,0,0,-0.180328 -83321,3106:114:3,64,-11.5,0,0,-0.180378 -83322,3106:114:4,64.5,-11.5,0,0,-0.180002 -83323,3106:215:3,65,-11.5,0,0,-0.180103 -83324,3106:215:4,65.5,-11.5,0,0,-0.180982 -83325,3106:216:3,66,-11.5,0,0,-0.182222 -83326,3106:216:4,66.5,-11.5,0,0,-0.183856 -83327,3106:217:3,67,-11.5,0,0,-0.185845 -83328,3106:217:4,67.5,-11.5,0,0,-0.187149 -83329,3106:218:3,68,-11.5,0,0,-0.187911 -83330,3106:218:4,68.5,-11.5,0,0,-0.188306 -83331,3106:219:3,69,-11.5,0,0,-0.188042 -83332,3106:219:4,69.5,-11.5,0,0,-0.187149 -83333,3107:110:3,70,-11.5,0,0,-0.185974 -83334,3107:110:4,70.5,-11.5,0,0,-0.184602 -83335,3107:111:3,71,-11.5,0,0,-0.183165 -83336,3107:111:4,71.5,-11.5,0,0,-0.18174 -83337,3107:112:3,72,-11.5,0,0,-0.181008 -83338,3107:112:4,72.5,-11.5,0,0,-0.181715 -83339,3107:113:4,73.5,-11.5,0,0,-0.184318 -83340,3107:114:3,74,-11.5,0,0,-0.187964 -83341,3107:114:4,74.5,-11.5,0,0,-0.191342 -83342,3107:215:3,75,-11.5,0,0,-0.194959 -83343,3107:215:4,75.5,-11.5,0,0,-0.19827 -83344,3107:216:3,76,-11.5,0,0,-0.200632 -83345,3107:216:4,76.5,-11.5,0,0,-0.198856 -83346,3107:217:3,77,-11.5,0,0,-0.197869 -83347,3107:217:4,77.5,-11.5,0,0,-0.197337 -83348,3107:218:3,78,-11.5,0,0,-0.196099 -83349,3107:218:4,78.5,-11.5,0,0,-0.193782 -83350,3107:219:3,79,-11.5,0,0,-0.191289 -83351,3107:219:4,79.5,-11.5,0,0,-0.188755 -83352,3108:110:3,80,-11.5,0,0,-0.186443 -83353,3108:110:4,80.5,-11.5,0,0,-0.184165 -83354,3108:111:3,81,-11.5,0,0,-0.182146 -83355,3108:111:4,81.5,-11.5,0,0,-0.180378 -83356,3108:112:3,82,-11.5,0,0,-0.178482 -83357,3108:112:4,82.5,-11.5,0,0,-0.176829 -83358,3108:113:3,83,-11.5,0,0,-0.175242 -83359,3108:113:4,83.5,-11.5,0,0,-0.173672 -83360,3108:114:3,84,-11.5,0,0,-0.172094 -83361,3108:114:4,84.5,-11.5,0,0,-0.170391 -83362,3108:215:3,85,-11.5,0,0,-0.168661 -83363,3108:215:4,85.5,-11.5,0,0,-0.167043 -83364,3108:216:3,86,-11.5,0,0,-0.165647 -83365,3108:216:4,86.5,-11.5,0,0,-0.164626 -83366,3108:217:3,87,-11.5,0,0,-0.16404 -83367,3108:217:4,87.5,-11.5,0,0,-0.163702 -83368,3108:218:3,88,-11.5,0,0,-0.163433 -83369,3108:218:4,88.5,-11.5,0,0,-0.163433 -83370,3108:219:3,89,-11.5,0,0,-0.163927 -83371,3108:219:4,89.5,-11.5,0,0,-0.164762 -83372,3109:110:3,90,-11.5,0,0,-0.165579 -83373,3109:110:4,90.5,-11.5,0,0,-0.166286 -83374,3109:111:3,91,-11.5,0,0,-0.166813 -83375,3109:111:4,91.5,-11.5,0,0,-0.166997 -83376,3109:112:3,92,-11.5,0,0,-0.166767 -83377,3109:112:4,92.5,-11.5,0,0,-0.166263 -83378,3109:113:3,93,-11.5,0,0,-0.165511 -83379,3109:113:4,93.5,-11.5,0,0,-0.16483 -84035,3114:114:1,144,-11,0,0,-1.8336 -83380,3109:114:3,94,-11.5,0,0,-0.164423 -83381,3109:114:4,94.5,-11.5,0,0,-0.163837 -83382,3109:215:3,95,-11.5,0,0,-0.162028 -83383,3109:215:4,95.5,-11.5,0,0,-0.159671 -83384,3109:216:3,96,-11.5,0,0,-0.157871 -83385,3109:216:4,96.5,-11.5,0,0,-0.155498 -83386,3109:217:3,97,-11.5,0,0,-0.154213 -83387,3109:217:4,97.5,-11.5,0,0,-0.154233 -83388,3109:218:3,98,-11.5,0,0,-0.156349 -83389,3109:218:4,98.5,-11.5,0,0,-0.159475 -83390,3109:219:3,99,-11.5,0,0,-0.162851 -83391,3109:219:4,99.5,-11.5,0,0,-0.165397 -83392,3110:110:3,100,-11.5,0,0,-0.16778 -83393,3110:110:4,100.5,-11.5,0,0,-0.171027 -83394,3110:111:3,101,-11.5,0,0,-0.176193 -83395,3110:111:4,101.5,-11.5,0,0,-0.181664 -83396,3110:112:3,102,-11.5,0,0,-0.1836 -83397,3110:112:4,102.5,-11.5,0,0,-0.184783 -83398,3110:113:3,103,-11.5,0,0,-0.187937 -83399,3110:113:4,103.5,-11.5,0,0,-0.191342 -83400,3110:114:3,104,-11.5,0,0,-0.190967 -83401,3110:114:4,104.5,-11.5,0,0,-0.187123 -83402,3110:215:3,105,-11.5,0,0,-0.181386 -83403,3110:215:4,105.5,-11.5,0,0,-0.178507 -83404,3110:216:3,106,-11.5,0,0,-0.17878 -83405,3110:216:4,106.5,-11.5,0,0,-0.183063 -83406,3110:217:3,107,-11.5,0,0,-0.18987 -83407,3110:217:4,107.5,-11.5,0,0,-0.194173 -83408,3110:218:3,108,-11.5,0,0,-0.226773 -83409,3110:218:4,108.5,-11.5,0,0,-0.375779 -83410,3110:219:3,109,-11.5,0,0,-0.628738 -83411,3110:219:4,109.5,-11.5,0,0,-0.975586 -83412,3111:110:3,110,-11.5,0,0,-1.00997 -83413,3111:110:4,110.5,-11.5,0,0,-1.13419 -83414,3111:111:3,111,-11.5,0,0,-1.44477 -83415,3111:111:4,111.5,-11.5,0,0,-2.33751 -83416,3111:112:3,112,-11.5,0,0,-4.88552 -83417,3111:112:4,112.5,-11.5,0,0,33.825 -83418,3111:113:3,113,-11.5,0,0,4.15628 -83419,3111:113:4,113.5,-11.5,0,0,2.84261 -83420,3111:114:3,114,-11.5,0,0,2.43059 -83421,3111:114:4,114.5,-11.5,0,0,2.31142 -83422,3111:215:3,115,-11.5,0,0,2.50749 -83423,3111:215:4,115.5,-11.5,0,0,3.69321 -83424,3111:216:3,116,-11.5,0,0,5.20333 -83425,3111:216:4,116.5,-11.5,0,0,6.17353 -83426,3111:217:3,117,-11.5,0,0,6.86436 -83427,3111:217:4,117.5,-11.5,0,0,2.77411 -83428,3111:218:3,118,-11.5,0,0,2.28834 -83429,3111:218:4,118.5,-11.5,0,0,1.81264 -83430,3111:219:3,119,-11.5,0,0,1.6065 -83431,3111:219:4,119.5,-11.5,0,0,1.60091 -83432,3112:110:3,120,-11.5,0,0,1.78217 -83433,3112:110:4,120.5,-11.5,0,0,1.7663 -83434,3112:111:3,121,-11.5,0,0,1.67763 -83435,3112:111:4,121.5,-11.5,0,0,1.73578 -83436,3112:112:3,122,-11.5,0,0,1.75082 -83437,3112:112:4,122.5,-11.5,0,0,1.81831 -83438,3112:113:3,123,-11.5,0,0,1.4701 -83439,3112:113:4,123.5,-11.5,0,0,1.30788 -83440,3112:114:3,124,-11.5,0,0,1.26008 -83441,3112:114:4,124.5,-11.5,0,0,1.22034 -83442,3112:215:3,125,-11.5,0,0,1.1991 -83443,3112:215:4,125.5,-11.5,0,0,1.17044 -83444,3112:216:3,126,-11.5,0,0,1.12399 -83445,3112:216:4,126.5,-11.5,0,0,1.07312 -83446,3112:217:3,127,-11.5,0,0,1.07507 -83447,3112:217:4,127.5,-11.5,0,0,1.11914 -83448,3112:218:3,128,-11.5,0,0,1.16127 -83449,3112:218:4,128.5,-11.5,0,0,1.16578 -83450,3112:219:3,129,-11.5,0,0,1.12722 -83451,3112:219:4,129.5,-11.5,0,0,1.07952 -83452,3113:110:3,130,-11.5,0,0,1.05433 -83453,3113:216:4,136.5,-11.5,0,0,1.07737 -83454,3113:217:4,137.5,-11.5,0,0,1.12458 -83455,3113:218:3,138,-11.5,0,0,1.2355 -83456,3113:218:4,138.5,-11.5,0,0,1.42866 -83457,3113:219:3,139,-11.5,0,0,1.44938 -83458,3113:219:4,139.5,-11.5,0,0,1.33897 -83459,3114:110:3,140,-11.5,0,0,1.30697 -83460,3114:110:4,140.5,-11.5,0,0,1.29387 -83461,3114:111:3,141,-11.5,0,0,1.25897 -83462,3114:111:4,141.5,-11.5,0,0,1.15446 -83463,3114:114:3,144,-11.5,0,0,-5.05687 -83464,3114:114:4,144.5,-11.5,0,0,-0.334791 -83465,3114:215:3,145,-11.5,0,0,-0.193219 -83466,3114:215:4,145.5,-11.5,0,0,-0.196188 -83467,3114:216:3,146,-11.5,0,0,-0.198047 -83468,3114:216:4,146.5,-11.5,0,0,-0.19818 -83469,3114:217:3,147,-11.5,0,0,-0.209428 -83470,3114:217:4,147.5,-11.5,0,0,-0.232004 -83471,3114:218:3,148,-11.5,0,0,-0.279884 -83472,3114:218:4,148.5,-11.5,0,0,-0.332593 -83473,3114:219:3,149,-11.5,0,0,-0.343768 -83474,3114:219:4,149.5,-11.5,0,0,-0.364498 -83475,3115:110:3,150,-11.5,0,0,-0.382242 -83476,3115:110:4,150.5,-11.5,0,0,-0.366361 -83477,3115:111:3,151,-11.5,0,0,-0.355436 -83478,3115:111:4,151.5,-11.5,0,0,-0.374514 -83479,3115:112:3,152,-11.5,0,0,-0.39558 -83480,3115:112:4,152.5,-11.5,0,0,-0.421156 -83481,3115:113:3,153,-11.5,0,0,-0.442528 -83482,3115:113:4,153.5,-11.5,0,0,-0.462013 -83483,3115:114:3,154,-11.5,0,0,-0.481728 -83484,3115:114:4,154.5,-11.5,0,0,-0.476491 -83485,3115:215:3,155,-11.5,0,0,-0.45133 -83486,3115:215:4,155.5,-11.5,0,0,-0.416741 -83487,3115:216:3,156,-11.5,0,0,-0.375136 -83488,3115:216:4,156.5,-11.5,0,0,-0.330413 -83489,3115:217:3,157,-11.5,0,0,-0.287071 -83490,3115:217:4,157.5,-11.5,0,0,-0.252431 -83491,3115:218:3,158,-11.5,0,0,-0.23095 -83492,3115:218:4,158.5,-11.5,0,0,-0.214531 -83493,3115:219:3,159,-11.5,0,0,-0.203873 -83494,3115:219:4,159.5,-11.5,0,0,-0.198136 -83495,3116:110:3,160,-11.5,0,0,-0.196144 -83496,3116:110:4,160.5,-11.5,0,0,-0.194566 -83497,3116:111:3,161,-11.5,0,0,-0.193782 -83498,3116:111:4,161.5,-11.5,0,0,-0.193696 -83499,3116:112:3,162,-11.5,0,0,-0.193523 -83500,3116:112:4,162.5,-11.5,0,0,-0.193219 -83501,3116:113:3,163,-11.5,0,0,-0.19335 -83502,3116:113:4,163.5,-11.5,0,0,-0.194 -83503,3116:114:3,164,-11.5,0,0,-0.194915 -83504,3116:114:4,164.5,-11.5,0,0,-0.195923 -83505,3116:215:3,165,-11.5,0,0,-0.196231 -83506,3116:215:4,165.5,-11.5,0,0,-0.196231 -83507,3116:216:3,166,-11.5,0,0,-0.196055 -83508,3116:216:4,166.5,-11.5,0,0,-0.195353 -83509,3116:217:3,167,-11.5,0,0,-0.192917 -83510,3116:217:4,167.5,-11.5,0,0,-0.190458 -83511,3116:218:3,168,-11.5,0,0,-0.186027 -83512,3116:218:4,168.5,-11.5,0,0,-0.195968 -83513,3116:219:3,169,-11.5,0,0,-0.205991 -83514,3116:219:4,169.5,-11.5,0,0,-0.215105 -83515,3117:110:3,170,-11.5,0,0,-0.217305 -83516,3117:110:4,170.5,-11.5,0,0,-0.221795 -83517,3117:111:3,171,-11.5,0,0,-0.228162 -83518,3117:111:4,171.5,-11.5,0,0,-0.228501 -83519,3117:112:3,172,-11.5,0,0,-0.219219 -83520,3117:112:4,172.5,-11.5,0,0,-0.209936 -83521,3117:113:3,173,-11.5,0,0,-0.205796 -83522,3117:113:4,173.5,-11.5,0,0,-0.199309 -83523,3117:114:3,174,-11.5,0,0,-0.196981 -83524,3117:114:4,174.5,-11.5,0,0,-0.195616 -83525,3117:215:3,175,-11.5,0,0,-0.194522 -83526,3117:215:4,175.5,-11.5,0,0,-0.193133 -83527,3117:216:3,176,-11.5,0,0,-0.192502 -83528,3117:216:4,176.5,-11.5,0,0,-0.192097 -83529,3117:217:3,177,-11.5,0,0,-0.191962 -83530,3117:217:4,177.5,-11.5,0,0,-0.192259 -83531,3117:218:3,178,-11.5,0,0,-0.192692 -83532,3117:218:4,178.5,-11.5,0,0,-0.193177 -83533,3117:219:3,179,-11.5,0,0,-0.19335 -83534,3117:219:4,179.5,-11.5,0,0,-0.193392 -83535,3118:110:3,180,-11.5,0,0,-0.194 -83536,5118:110:1,-180,-11,0,0,-0.257169 -83537,5117:219:2,-179.5,-11,0,0,-0.270776 -83538,5117:219:1,-179,-11,0,0,-0.286612 -83539,5117:218:2,-178.5,-11,0,0,-0.306568 -83540,5117:218:1,-178,-11,0,0,-0.330961 -83541,5117:217:2,-177.5,-11,0,0,-0.365739 -83542,5117:217:1,-177,-11,0,0,-0.416007 -83543,5117:216:2,-176.5,-11,0,0,-0.471303 -83544,5117:216:1,-176,-11,0,0,-0.534688 -83545,5117:215:2,-175.5,-11,0,0,-0.642894 -83546,5117:215:1,-175,-11,0,0,-0.810021 -83547,5117:114:2,-174.5,-11,0,0,-1.1021 -83548,5117:114:1,-174,-11,0,0,-1.43114 -83549,5117:113:2,-173.5,-11,0,0,-1.61649 -83550,5117:113:1,-173,-11,0,0,-1.23387 -83551,5117:112:2,-172.5,-11,0,0,-0.801619 -83552,5117:112:1,-172,-11,0,0,-0.666959 -83553,5117:111:2,-171.5,-11,0,0,-0.710385 -83554,5117:111:1,-171,-11,0,0,-0.757103 -83555,5117:110:2,-170.5,-11,0,0,-0.787837 -83556,5117:110:1,-170,-11,0,0,-0.854195 -83557,5116:219:2,-169.5,-11,0,0,-0.971963 -83558,5116:219:1,-169,-11,0,0,-1.12483 -83559,5116:218:2,-168.5,-11,0,0,-1.31208 -83560,5116:218:1,-168,-11,0,0,-1.57645 -83561,5116:217:2,-167.5,-11,0,0,-1.94954 -83562,5116:217:1,-167,-11,0,0,-2.41501 -83563,5116:216:2,-166.5,-11,0,0,-2.83582 -83564,5116:216:1,-166,-11,0,0,-2.92199 -83565,5116:215:2,-165.5,-11,0,0,-3.31756 -83566,5116:215:1,-165,-11,0,0,-4.16587 -83567,5116:114:2,-164.5,-11,0,0,-5.36961 -83568,5116:114:1,-164,-11,0,0,-6.56424 -83569,5116:113:2,-163.5,-11,0,0,-13.7131 -83570,5116:113:1,-163,-11,0,0,-94.5052 -83571,5116:112:2,-162.5,-11,0,0,-150.165 -83572,5116:112:1,-162,-11,0,0,-31.0123 -83573,5116:111:2,-161.5,-11,0,0,-94.5052 -83574,5116:111:1,-161,-11,0,0,18.6505 -83575,5116:110:2,-160.5,-11,0,0,16.4219 -83576,5116:110:1,-160,-11,0,0,94.0931 -83577,5115:219:2,-159.5,-11,0,0,146.38 -83578,5115:219:1,-159,-11,0,0,18.0323 -83579,5115:218:2,-158.5,-11,0,0,11.1801 -83580,5115:218:1,-158,-11,0,0,8.29512 -83581,5115:217:2,-157.5,-11,0,0,6.29856 -83582,5115:217:1,-157,-11,0,0,5.08039 -83583,5115:216:2,-156.5,-11,0,0,4.5816 -83584,5115:216:1,-156,-11,0,0,4.78046 -83585,5115:215:2,-155.5,-11,0,0,5.47185 -83586,5115:215:1,-155,-11,0,0,6.78705 -83587,5115:114:2,-154.5,-11,0,0,11.6346 -83588,5115:114:1,-154,-11,0,0,54.8408 -83589,5115:113:2,-153.5,-11,0,0,-35.3361 -83590,5115:113:1,-153,-11,0,0,-21.5849 -83591,5115:112:2,-152.5,-11,0,0,-19.8636 -83592,5115:112:1,-152,-11,0,0,-22.5753 -83593,5115:111:2,-151.5,-11,0,0,-22.5753 -83594,5115:111:1,-151,-11,0,0,-17.0994 -83595,5115:110:2,-150.5,-11,0,0,-9.7719 -83596,5115:110:1,-150,-11,0,0,-6.56424 -83597,5114:219:2,-149.5,-11,0,0,-4.99972 -83598,5114:219:1,-149,-11,0,0,-4.24979 -83599,5114:218:2,-148.5,-11,0,0,-4.16587 -83600,5114:218:1,-148,-11,0,0,-3.3741 -83601,5114:217:2,-147.5,-11,0,0,-2.36818 -83602,5114:217:1,-147,-11,0,0,-1.84375 -83603,5114:216:2,-146.5,-11,0,0,-1.4654 -83604,5114:216:1,-146,-11,0,0,-1.18737 -83605,5114:215:2,-145.5,-11,0,0,-1.02987 -83606,5114:215:1,-145,-11,0,0,-0.91868 -83607,5114:114:2,-144.5,-11,0,0,-0.836097 -83608,5114:114:1,-144,-11,0,0,-0.804434 -83609,5114:113:2,-143.5,-11,0,0,-0.785105 -83610,5114:113:1,-143,-11,0,0,-0.727843 -83611,5114:112:2,-142.5,-11,0,0,-0.698171 -83612,5114:112:1,-142,-11,0,0,-0.692349 -83613,5114:111:2,-141.5,-11,0,0,-0.713789 -83614,5114:111:1,-141,-11,0,0,-0.698171 -83615,5114:110:2,-140.5,-11,0,0,-0.652104 -83616,5114:110:1,-140,-11,0,0,-0.621233 -83617,5113:219:2,-139.5,-11,0,0,-0.602932 -83618,5113:219:1,-139,-11,0,0,-0.596996 -83619,5113:218:2,-138.5,-11,0,0,-0.544967 -83620,5113:218:1,-138,-11,0,0,-0.521724 -83621,5113:217:2,-137.5,-11,0,0,-0.513022 -83622,5113:217:1,-137,-11,0,0,-0.474744 -83623,5113:216:2,-136.5,-11,0,0,-0.426365 -83624,5113:216:1,-136,-11,0,0,-0.386172 -83625,5113:215:2,-135.5,-11,0,0,-0.3895 -83626,5113:215:1,-135,-11,0,0,-0.364498 -83627,5113:114:2,-134.5,-11,0,0,-0.289832 -83628,5113:114:1,-134,-11,0,0,-0.298764 -83629,5113:113:2,-133.5,-11,0,0,-0.312065 -83630,5113:113:1,-133,-11,0,0,-0.269509 -83631,5113:112:2,-132.5,-11,0,0,-0.253615 -83632,5113:112:1,-132,-11,0,0,-0.250876 -83633,5113:111:2,-131.5,-11,0,0,-0.236285 -83634,5113:111:1,-131,-11,0,0,-0.206573 -83635,5113:110:2,-130.5,-11,0,0,-0.198002 -83636,5113:110:1,-130,-11,0,0,-0.195484 -83637,5112:219:2,-129.5,-11,0,0,-0.1928 -83638,5112:219:1,-129,-11,0,0,-0.188835 -83639,5112:218:2,-128.5,-11,0,0,-0.186496 -83640,5112:218:1,-128,-11,0,0,-0.18486 -83641,5112:217:2,-127.5,-11,0,0,-0.183984 -83642,5112:217:1,-127,-11,0,0,-0.183063 -83643,5112:216:2,-126.5,-11,0,0,-0.180002 -83644,5112:216:1,-126,-11,0,0,-0.17769 -83645,5112:215:2,-125.5,-11,0,0,-0.176805 -83646,5112:215:1,-125,-11,0,0,-0.175704 -83647,5112:114:2,-124.5,-11,0,0,-0.17483 -83648,5112:114:1,-124,-11,0,0,-0.173072 -83649,5112:113:2,-123.5,-11,0,0,-0.170909 -83650,5112:113:1,-123,-11,0,0,-0.16936 -83651,5112:112:2,-122.5,-11,0,0,-0.168405 -83652,5112:112:1,-122,-11,0,0,-0.16592 -83653,5112:111:2,-121.5,-11,0,0,-0.164694 -83654,5112:111:1,-121,-11,0,0,-0.163433 -83655,5112:110:2,-120.5,-11,0,0,-0.162005 -83656,5112:110:1,-120,-11,0,0,-0.16024 -83657,5111:219:2,-119.5,-11,0,0,-0.158519 -83658,5111:219:1,-119,-11,0,0,-0.156712 -83659,5111:218:2,-118.5,-11,0,0,-0.153731 -83660,5111:218:1,-118,-11,0,0,-0.151696 -83661,5111:217:2,-117.5,-11,0,0,-0.149875 -83662,5111:217:1,-117,-11,0,0,-0.146307 -83663,5111:216:2,-116.5,-11,0,0,-0.144149 -83664,5111:216:1,-116,-11,0,0,-0.141284 -83665,5111:215:2,-115.5,-11,0,0,-0.137974 -83666,5111:215:1,-115,-11,0,0,-0.136266 -83667,5111:114:2,-114.5,-11,0,0,-0.13605 -83668,5111:114:1,-114,-11,0,0,-0.13605 -83669,5111:113:2,-113.5,-11,0,0,-0.13605 -83670,5111:113:1,-113,-11,0,0,-0.13605 -83671,5111:112:2,-112.5,-11,0,0,-0.13605 -83672,5111:112:1,-112,-11,0,0,-0.13605 -83673,5111:111:2,-111.5,-11,0,0,-0.13605 -83674,5111:111:1,-111,-11,0,0,-0.13605 -83675,5111:110:2,-110.5,-11,0,0,-0.13605 -83676,5111:110:1,-110,-11,0,0,-0.13605 -83677,5110:219:2,-109.5,-11,0,0,-0.13605 -83678,5110:219:1,-109,-11,0,0,-0.13605 -83679,5110:218:2,-108.5,-11,0,0,-0.13605 -83680,5110:218:1,-108,-11,0,0,-0.13605 -83681,5110:217:2,-107.5,-11,0,0,-0.13605 -83682,5110:217:1,-107,-11,0,0,-0.13605 -83683,5110:216:2,-106.5,-11,0,0,-0.13605 -83684,5110:216:1,-106,-11,0,0,-0.13605 -83685,5110:215:2,-105.5,-11,0,0,-0.13605 -83686,5110:215:1,-105,-11,0,0,-0.13605 -83687,5110:114:2,-104.5,-11,0,0,-0.13605 -83688,5110:114:1,-104,-11,0,0,-0.13605 -83689,5110:113:2,-103.5,-11,0,0,-0.13605 -83690,5110:113:1,-103,-11,0,0,-0.13605 -83691,5110:112:2,-102.5,-11,0,0,-0.13605 -83692,5110:112:1,-102,-11,0,0,-0.13605 -83693,5110:111:2,-101.5,-11,0,0,-0.13605 -83694,5110:111:1,-101,-11,0,0,-0.13605 -83695,5110:110:2,-100.5,-11,0,0,-0.13605 -83696,5110:110:1,-100,-11,0,0,-0.13605 -83697,5109:219:2,-99.5,-11,0,0,-0.13605 -83698,5109:219:1,-99,-11,0,0,-0.13605 -83699,5109:218:2,-98.5,-11,0,0,-0.13605 -83700,5109:218:1,-98,-11,0,0,-0.13605 -83701,5109:217:2,-97.5,-11,0,0,-0.13605 -83702,5109:217:1,-97,-11,0,0,-0.13605 -83703,5109:216:2,-96.5,-11,0,0,-0.13605 -83704,5109:216:1,-96,-11,0,0,-0.13605 -83705,5109:215:2,-95.5,-11,0,0,-0.13605 -83706,5109:215:1,-95,-11,0,0,-0.13605 -83707,5109:114:2,-94.5,-11,0,0,-0.13605 -83708,5109:114:1,-94,-11,0,0,-0.13605 -83709,5109:113:2,-93.5,-11,0,0,-0.13605 -83710,5109:113:1,-93,-11,0,0,-0.13605 -83711,5109:112:2,-92.5,-11,0,0,-0.13605 -83712,5109:112:1,-92,-11,0,0,-0.13605 -83713,5109:111:2,-91.5,-11,0,0,-0.13605 -83714,5109:111:1,-91,-11,0,0,-0.13605 -83715,5109:110:2,-90.5,-11,0,0,-0.13605 -83716,5109:110:1,-90,-11,0,0,-0.13605 -83717,5108:219:2,-89.5,-11,0,0,-0.13605 -83718,5108:219:1,-89,-11,0,0,-0.13605 -83719,5108:218:2,-88.5,-11,0,0,-0.13605 -83720,5108:218:1,-88,-11,0,0,-0.13605 -83721,5108:217:2,-87.5,-11,0,0,-0.13605 -83722,5108:217:1,-87,-11,0,0,-0.13605 -83723,5108:216:2,-86.5,-11,0,0,-0.13605 -83724,5108:216:1,-86,-11,0,0,-0.13605 -83725,5108:215:2,-85.5,-11,0,0,-0.13605 -83726,5108:215:1,-85,-11,0,0,-0.13605 -83727,5108:114:2,-84.5,-11,0,0,-0.13605 -83728,5108:114:1,-84,-11,0,0,-0.13605 -83729,5108:113:2,-83.5,-11,0,0,-0.13605 -83730,5108:113:1,-83,-11,0,0,-0.13605 -83731,5108:112:2,-82.5,-11,0,0,-0.13605 -83732,5108:112:1,-82,-11,0,0,-0.13605 -83733,5108:111:2,-81.5,-11,0,0,-0.13605 -83734,5108:111:1,-81,-11,0,0,-0.13605 -83735,5108:110:2,-80.5,-11,0,0,-0.13605 -83736,5108:110:1,-80,-11,0,0,-0.13605 -83737,5107:219:2,-79.5,-11,0,0,-0.13605 -83738,5107:219:1,-79,-11,0,0,-0.13605 -83739,5107:218:2,-78.5,-11,0,0,-0.13605 -83740,5107:218:1,-78,-11,0,0,-0.13605 -83741,5107:217:2,-77.5,-11,0,0,-0.13605 -83742,5107:217:1,-77,-11,0,0,-0.13605 -83743,5107:216:2,-76.5,-11,0,0,-0.13605 -83744,5103:219:1,-39,-11,0,0,-0.175194 -83745,5103:218:2,-38.5,-11,0,0,-0.172809 -83746,5103:218:1,-38,-11,0,0,-0.186392 -83747,5103:217:2,-37.5,-11,0,0,-0.182909 -83748,5103:217:1,-37,-11,0,0,-0.180303 -83749,5103:216:2,-36.5,-11,0,0,-0.179427 -83750,5103:216:1,-36,-11,0,0,-0.178655 -83751,5103:215:2,-35.5,-11,0,0,-0.177099 -83752,5103:215:1,-35,-11,0,0,-0.177247 -83753,5103:114:2,-34.5,-11,0,0,-0.175242 -83754,5103:114:1,-34,-11,0,0,-0.172809 -83755,5103:113:2,-33.5,-11,0,0,-0.172118 -83756,5103:113:1,-33,-11,0,0,-0.170556 -83757,5103:112:2,-32.5,-11,0,0,-0.168011 -83758,5103:112:1,-32,-11,0,0,-0.167066 -83759,5103:111:2,-31.5,-11,0,0,-0.165465 -83760,5103:111:1,-31,-11,0,0,-0.163164 -83761,5103:110:2,-30.5,-11,0,0,-0.16216 -83762,5103:110:1,-30,-11,0,0,-0.160504 -83763,5102:219:2,-29.5,-11,0,0,-0.159018 -83764,5102:219:1,-29,-11,0,0,-0.15714 -83765,5102:218:2,-28.5,-11,0,0,-0.154254 -83766,5102:218:1,-28,-11,0,0,-0.152585 -83767,5102:217:2,-27.5,-11,0,0,-0.152523 -83768,5102:217:1,-27,-11,0,0,-0.150977 -83769,5102:216:2,-26.5,-11,0,0,-0.148239 -83770,5102:216:1,-26,-11,0,0,-0.145165 -83771,5102:215:2,-25.5,-11,0,0,-0.142066 -83772,5102:215:1,-25,-11,0,0,-0.141075 -83773,5102:114:2,-24.5,-11,0,0,-0.140488 -83774,5102:114:1,-24,-11,0,0,-0.140867 -83775,5102:113:2,-23.5,-11,0,0,-0.139697 -83776,5102:113:1,-23,-11,0,0,-0.13717 -83777,5102:112:2,-22.5,-11,0,0,-0.136304 -83778,5102:112:1,-22,-11,0,0,-0.136084 -83779,5102:111:2,-21.5,-11,0,0,-0.13605 -83780,5102:111:1,-21,-11,0,0,-0.13605 -83781,5102:110:2,-20.5,-11,0,0,-0.13605 -83782,5102:110:1,-20,-11,0,0,-0.13605 -83783,5101:219:2,-19.5,-11,0,0,-0.13605 -83784,5101:219:1,-19,-11,0,0,-0.13605 -83785,5101:218:2,-18.5,-11,0,0,-0.13605 -83786,5101:218:1,-18,-11,0,0,-0.13605 -83787,5101:217:2,-17.5,-11,0,0,-0.13605 -83788,5101:217:1,-17,-11,0,0,-0.13605 -83789,5101:216:2,-16.5,-11,0,0,-0.13605 -83790,5101:216:1,-16,-11,0,0,-0.13605 -83791,5101:215:2,-15.5,-11,0,0,-0.13605 -83792,5101:215:1,-15,-11,0,0,-0.13605 -83793,5101:114:2,-14.5,-11,0,0,-0.13605 -83794,5101:114:1,-14,-11,0,0,-0.13605 -83795,5101:113:2,-13.5,-11,0,0,-0.13605 -83796,5101:113:1,-13,-11,0,0,-0.13605 -83797,5101:112:2,-12.5,-11,0,0,-0.13605 -83798,5101:112:1,-12,-11,0,0,-0.13605 -83799,5101:111:2,-11.5,-11,0,0,-0.13605 -83800,5101:111:1,-11,-11,0,0,-0.13605 -83801,5101:110:2,-10.5,-11,0,0,-0.13605 -83802,5101:110:1,-10,-11,0,0,-0.13605 -83803,5100:219:2,-9.5,-11,0,0,-0.13605 -83804,5100:219:1,-9,-11,0,0,-0.13605 -83805,5100:218:2,-8.5,-11,0,0,-0.13605 -83806,5100:218:1,-8,-11,0,0,-0.13605 -83807,5100:217:2,-7.5,-11,0,0,-0.13605 -83808,5100:217:1,-7,-11,0,0,-0.13605 -83809,5100:216:2,-6.5,-11,0,0,-0.13605 -83810,5100:216:1,-6,-11,0,0,-0.13605 -83811,5100:215:2,-5.5,-11,0,0,-0.13605 -83812,5100:215:1,-5,-11,0,0,-0.13605 -83813,5100:114:2,-4.5,-11,0,0,-0.13605 -83814,5100:114:1,-4,-11,0,0,-0.13605 -83815,5100:113:2,-3.5,-11,0,0,-0.13605 -83816,5100:113:1,-3,-11,0,0,-0.13605 -83817,5100:112:2,-2.5,-11,0,0,-0.13605 -83818,5100:112:1,-2,-11,0,0,-0.13605 -83819,5100:111:2,-1.5,-11,0,0,-0.13605 -83820,5100:111:1,-1,-11,0,0,-0.13605 -83821,5100:110:2,-0.5,-11,0,0,-0.13605 -83822,3100:110:2,0,-11,0,0,-0.13605 -83823,3100:110:2,0.5,-11,0,0,-0.13605 -83824,3100:111:1,1,-11,0,0,-0.13605 -83825,3100:111:2,1.5,-11,0,0,-0.13605 -83826,3100:112:1,2,-11,0,0,-0.13605 -83827,3100:112:2,2.5,-11,0,0,-0.13605 -83828,3100:113:1,3,-11,0,0,-0.13605 -83829,3100:113:2,3.5,-11,0,0,-0.13605 -83830,3100:114:1,4,-11,0,0,-0.13605 -83831,3100:114:2,4.5,-11,0,0,-0.13605 -83832,3100:215:1,5,-11,0,0,-0.13605 -83833,3100:215:2,5.5,-11,0,0,-0.13605 -83834,3100:216:1,6,-11,0,0,-0.13605 -83835,3100:216:2,6.5,-11,0,0,-0.13605 -83836,3100:217:1,7,-11,0,0,-0.13605 -83837,3100:217:2,7.5,-11,0,0,-0.13605 -83838,3100:218:1,8,-11,0,0,-0.13605 -83839,3100:218:2,8.5,-11,0,0,-0.13605 -83840,3100:219:1,9,-11,0,0,-0.13605 -83841,3100:219:2,9.5,-11,0,0,-0.13605 -83842,3101:110:1,10,-11,0,0,-0.138344 -83843,3101:110:2,10.5,-11,0,0,-0.140375 -83844,3101:111:1,11,-11,0,0,-0.136081 -83845,3101:111:2,11.5,-11,0,0,-0.13605 -83846,3101:112:1,12,-11,0,0,-0.13605 -83847,3101:112:2,12.5,-11,0,0,-0.13605 -83848,3104:110:2,40.5,-11,0,0,-1.33582 -83849,3104:111:1,41,-11,0,0,3.24912 -83850,3104:111:2,41.5,-11,0,0,2.8029 -83851,3104:112:1,42,-11,0,0,3.38202 -83852,3104:112:2,42.5,-11,0,0,5.47185 -83853,3104:113:1,43,-11,0,0,6.71386 -83854,3104:113:2,43.5,-11,0,0,5.00119 -83855,3104:114:1,44,-11,0,0,2.65726 -83856,3104:114:2,44.5,-11,0,0,1.77946 -83857,3104:215:1,45,-11,0,0,1.93908 -83858,3104:215:2,45.5,-11,0,0,8.41459 -83859,3104:216:1,46,-11,0,0,-1.81358 -83860,3104:216:2,46.5,-11,0,0,-0.735784 -83861,3104:217:1,47,-11,0,0,-0.575199 -83862,3104:217:2,47.5,-11,0,0,-0.554442 -83863,3104:218:1,48,-11,0,0,-0.715526 -83864,3104:218:2,48.5,-11,0,0,-0.353662 -83865,3105:110:1,50,-11,0,0,-0.19335 -83866,3105:110:2,50.5,-11,0,0,-0.195222 -83867,3105:111:1,51,-11,0,0,-0.194784 -83868,3105:111:2,51.5,-11,0,0,-0.19632 -83869,3105:112:1,52,-11,0,0,-0.197203 -83870,3105:112:2,52.5,-11,0,0,-0.196407 -83871,3105:113:1,53,-11,0,0,-0.194479 -83872,3105:113:2,53.5,-11,0,0,-0.19654 -83873,3105:114:1,54,-11,0,0,-0.203685 -83874,3105:114:2,54.5,-11,0,0,-0.22507 -83875,3105:215:1,55,-11,0,0,-0.24401 -83876,3105:215:2,55.5,-11,0,0,-0.259584 -83877,3105:216:1,56,-11,0,0,-0.265317 -83878,3105:216:2,56.5,-11,0,0,-0.260795 -83879,3105:217:1,57,-11,0,0,-0.248569 -83880,3105:217:2,57.5,-11,0,0,-0.232716 -83881,3105:218:1,58,-11,0,0,-0.215105 -83882,3105:218:2,58.5,-11,0,0,-0.202389 -83883,3105:219:1,59,-11,0,0,-0.197469 -83884,3105:219:2,59.5,-11,0,0,-0.194479 -83885,3106:110:1,60,-11,0,0,-0.191908 -83886,3106:110:2,60.5,-11,0,0,-0.190297 -83887,3106:111:1,61,-11,0,0,-0.191746 -83888,3106:111:2,61.5,-11,0,0,-0.190859 -83889,3106:112:1,62,-11,0,0,-0.187779 -83890,3106:112:2,62.5,-11,0,0,-0.185145 -83891,3106:113:1,63,-11,0,0,-0.184396 -83892,3106:113:2,63.5,-11,0,0,-0.185248 -83893,3106:114:1,64,-11,0,0,-0.185481 -83894,3106:114:2,64.5,-11,0,0,-0.186079 -83895,3106:215:1,65,-11,0,0,-0.187071 -83896,3106:215:2,65.5,-11,0,0,-0.188491 -83897,3106:216:1,66,-11,0,0,-0.190164 -83898,3106:216:2,66.5,-11,0,0,-0.192042 -83899,3106:217:1,67,-11,0,0,-0.194522 -83900,3106:217:2,67.5,-11,0,0,-0.196628 -83901,3106:218:1,68,-11,0,0,-0.198359 -83902,3106:218:2,68.5,-11,0,0,-0.200632 -83903,3106:219:1,69,-11,0,0,-0.202943 -83904,3106:219:2,69.5,-11,0,0,-0.2003 -83905,3107:110:1,70,-11,0,0,-0.197825 -83906,3107:110:2,70.5,-11,0,0,-0.195748 -83907,3107:111:1,71,-11,0,0,-0.194043 -83908,3107:111:2,71.5,-11,0,0,-0.193782 -83909,3107:112:1,72,-11,0,0,-0.195134 -83910,3107:112:2,72.5,-11,0,0,-0.197469 -83911,3107:113:2,73.5,-11,0,0,-0.202205 -83912,3107:114:1,74,-11,0,0,-0.212343 -83913,3107:114:2,74.5,-11,0,0,-0.224407 -83914,3107:215:1,75,-11,0,0,-0.234487 -83915,3107:215:2,75.5,-11,0,0,-0.241779 -83916,3107:216:1,76,-11,0,0,-0.240301 -83917,3107:216:2,76.5,-11,0,0,-0.23342 -83918,3107:217:1,77,-11,0,0,-0.223755 -83919,3107:217:2,77.5,-11,0,0,-0.211805 -83920,3107:218:1,78,-11,0,0,-0.199973 -83921,3107:218:2,78.5,-11,0,0,-0.196672 -83922,3107:219:1,79,-11,0,0,-0.193652 -83923,3107:219:2,79.5,-11,0,0,-0.190993 -83924,3108:110:1,80,-11,0,0,-0.188359 -83925,3108:110:2,80.5,-11,0,0,-0.186 -83926,3108:111:1,81,-11,0,0,-0.183805 -83927,3108:111:2,81.5,-11,0,0,-0.181766 -83928,3108:112:1,82,-11,0,0,-0.179777 -83929,3108:112:2,82.5,-11,0,0,-0.177912 -83930,3108:113:1,83,-11,0,0,-0.176168 -83931,3108:113:2,83.5,-11,0,0,-0.174346 -83932,3108:114:1,84,-11,0,0,-0.172713 -83933,3108:114:2,84.5,-11,0,0,-0.171406 -83934,3108:215:1,85,-11,0,0,-0.170273 -83935,3108:215:2,85.5,-11,0,0,-0.16908 -83936,3108:216:1,86,-11,0,0,-0.168011 -83937,3108:216:2,86.5,-11,0,0,-0.167411 -83938,3108:217:1,87,-11,0,0,-0.167111 -83939,3108:217:2,87.5,-11,0,0,-0.166928 -83940,3108:218:1,88,-11,0,0,-0.166859 -83941,3108:218:2,88.5,-11,0,0,-0.166882 -83942,3108:219:1,89,-11,0,0,-0.16725 -83943,3108:219:2,89.5,-11,0,0,-0.167919 -83944,3109:110:1,90,-11,0,0,-0.16887 -83945,3109:110:2,90.5,-11,0,0,-0.170038 -83946,3109:111:1,91,-11,0,0,-0.171453 -83947,3109:111:2,91.5,-11,0,0,-0.172308 -83948,3109:112:1,92,-11,0,0,-0.171856 -83949,3109:112:2,92.5,-11,0,0,-0.170344 -83950,3109:113:1,93,-11,0,0,-0.168754 -83951,3109:113:2,93.5,-11,0,0,-0.167111 -83952,3109:114:1,94,-11,0,0,-0.165328 -83953,3109:114:2,94.5,-11,0,0,-0.163905 -83954,3109:215:1,95,-11,0,0,-0.162628 -83955,3109:215:2,95.5,-11,0,0,-0.161917 -83956,3109:216:1,96,-11,0,0,-0.161562 -83957,3109:216:2,96.5,-11,0,0,-0.161695 -83958,3109:217:1,97,-11,0,0,-0.161917 -83959,3109:217:2,97.5,-11,0,0,-0.161429 -83960,3109:218:1,98,-11,0,0,-0.160525 -83961,3109:218:2,98.5,-11,0,0,-0.16101 -83962,3109:219:1,99,-11,0,0,-0.163343 -83963,3109:219:2,99.5,-11,0,0,-0.166035 -83964,3110:110:1,100,-11,0,0,-0.169126 -83965,3110:110:2,100.5,-11,0,0,-0.174781 -83966,3110:111:1,101,-11,0,0,-0.179952 -83967,3110:111:2,101.5,-11,0,0,-0.182833 -83968,3110:112:1,102,-11,0,0,-0.18419 -83969,3110:112:2,102.5,-11,0,0,-0.185715 -83970,3110:113:1,103,-11,0,0,-0.188095 -83971,3110:113:2,103.5,-11,0,0,-0.190297 -83972,3110:114:1,104,-11,0,0,-0.191854 -83973,3110:114:2,104.5,-11,0,0,-0.190297 -83974,3110:215:1,105,-11,0,0,-0.18486 -83975,3110:215:2,105.5,-11,0,0,-0.181083 -83976,3110:216:1,106,-11,0,0,-0.181487 -83977,3110:216:2,106.5,-11,0,0,-0.184499 -83978,3110:217:1,107,-11,0,0,-0.192719 -83979,3110:217:2,107.5,-11,0,0,-0.214531 -83980,3110:218:1,108,-11,0,0,-0.296855 -83981,3110:218:2,108.5,-11,0,0,-0.435502 -83982,3110:219:1,109,-11,0,0,-0.632577 -83983,3110:219:2,109.5,-11,0,0,-0.668345 -83984,3111:110:1,110,-11,0,0,-0.752743 -83985,3111:110:2,110.5,-11,0,0,-0.960878 -83986,3111:111:1,111,-11,0,0,-1.47956 -83987,3111:111:2,111.5,-11,0,0,-3.03651 -83988,3111:112:1,112,-11,0,0,-9.38404 -83989,3111:112:2,112.5,-11,0,0,10.3629 -83990,3111:113:1,113,-11,0,0,3.52942 -83991,3111:113:2,113.5,-11,0,0,2.39761 -83992,3111:114:1,114,-11,0,0,2.00571 -83993,3111:114:2,114.5,-11,0,0,1.90831 -83994,3111:215:1,115,-11,0,0,1.8757 -83995,3111:215:2,115.5,-11,0,0,1.87252 -83996,3111:216:1,116,-11,0,0,1.91159 -83997,3111:216:2,116.5,-11,0,0,1.83585 -83998,3111:217:1,117,-11,0,0,1.70939 -83999,3111:217:2,117.5,-11,0,0,1.70011 -84000,3111:218:1,118,-11,0,0,1.64784 -84001,3111:218:2,118.5,-11,0,0,1.62574 -84002,3111:219:1,119,-11,0,0,1.62772 -84003,3111:219:2,119.5,-11,0,0,1.6604 -84004,3112:110:1,120,-11,0,0,1.6978 -84005,3112:110:2,120.5,-11,0,0,1.61601 -84006,3112:111:1,121,-11,0,0,1.52934 -84007,3112:111:2,121.5,-11,0,0,1.50218 -84008,3112:112:1,122,-11,0,0,1.53092 -84009,3112:112:2,122.5,-11,0,0,1.57218 -84010,3112:113:1,123,-11,0,0,1.39287 -84011,3112:113:2,123.5,-11,0,0,1.29581 -84012,3112:114:1,124,-11,0,0,1.24151 -84013,3112:114:2,124.5,-11,0,0,1.20465 -84014,3112:215:1,125,-11,0,0,1.18021 -84015,3112:215:2,125.5,-11,0,0,1.17162 -84016,3112:216:1,126,-11,0,0,1.16644 -84017,3112:216:2,126.5,-11,0,0,1.1597 -84018,3112:217:1,127,-11,0,0,1.1742 -84019,3112:217:2,127.5,-11,0,0,1.17718 -84020,3112:218:1,128,-11,0,0,1.16481 -84021,3112:218:2,128.5,-11,0,0,1.16893 -84022,3112:219:1,129,-11,0,0,1.13749 -84023,3112:219:2,129.5,-11,0,0,1.0993 -84024,3113:110:1,130,-11,0,0,1.05947 -84025,3113:217:1,137,-11,0,0,1.12795 -84026,3113:217:2,137.5,-11,0,0,1.18238 -84027,3113:218:1,138,-11,0,0,1.40038 -84028,3113:218:2,138.5,-11,0,0,2.02146 -84029,3113:219:1,139,-11,0,0,2.02549 -84030,3113:219:2,139.5,-11,0,0,1.70939 -84031,3114:110:1,140,-11,0,0,1.45445 -84032,3114:110:2,140.5,-11,0,0,1.37445 -84033,3114:111:1,141,-11,0,0,1.29163 -84034,3114:111:2,141.5,-11,0,0,1.18626 -84036,3114:114:2,144.5,-11,0,0,-0.214263 -84037,3114:215:1,145,-11,0,0,-0.207644 -84038,3114:215:2,145.5,-11,0,0,-0.215727 -84039,3114:216:1,146,-11,0,0,-0.215727 -84040,3114:216:2,146.5,-11,0,0,-0.209678 -84041,3114:217:1,147,-11,0,0,-0.229551 -84042,3114:217:2,147.5,-11,0,0,-0.257975 -84043,3114:218:1,148,-11,0,0,-0.320812 -84044,3114:218:2,148.5,-11,0,0,-0.405284 -84045,3114:219:1,149,-11,0,0,-0.434748 -84046,3114:219:2,149.5,-11,0,0,-0.437061 -84047,3115:110:1,150,-11,0,0,-0.463673 -84048,3115:110:2,150.5,-11,0,0,-0.570748 -84049,3115:111:1,151,-11,0,0,-0.591141 -84050,3115:111:2,151.5,-11,0,0,-0.527666 -84051,3115:112:1,152,-11,0,0,-0.530655 -84052,3115:112:2,152.5,-11,0,0,-0.566343 -84053,3115:113:1,153,-11,0,0,-0.64549 -84054,3115:113:2,153.5,-11,0,0,-0.740005 -84055,3115:114:1,154,-11,0,0,-0.8273 -84056,3115:114:2,154.5,-11,0,0,-0.885625 -84057,3115:215:1,155,-11,0,0,-0.911966 -84058,3115:215:2,155.5,-11,0,0,-0.807263 -84059,3115:216:1,156,-11,0,0,-0.685157 -84060,3115:216:2,156.5,-11,0,0,-0.577425 -84061,3115:217:1,157,-11,0,0,-0.484402 -84062,3115:217:2,157.5,-11,0,0,-0.430147 -84063,3115:218:1,158,-11,0,0,-0.393547 -84064,3115:218:2,158.5,-11,0,0,-0.366361 -84065,3115:219:1,159,-11,0,0,-0.338695 -84066,3115:219:2,159.5,-11,0,0,-0.311556 -84067,3116:110:1,160,-11,0,0,-0.284798 -84068,3116:110:2,160.5,-11,0,0,-0.26408 -84069,3116:111:1,161,-11,0,0,-0.253615 -84070,3116:111:2,161.5,-11,0,0,-0.252038 -84071,3116:112:1,162,-11,0,0,-0.247798 -84072,3116:112:2,162.5,-11,0,0,-0.245515 -84073,3116:113:1,163,-11,0,0,-0.249719 -84074,3116:113:2,163.5,-11,0,0,-0.256378 -84075,3116:114:1,164,-11,0,0,-0.263251 -84076,3116:114:2,164.5,-11,0,0,-0.269509 -84077,3116:215:1,165,-11,0,0,-0.272482 -84078,3116:215:2,165.5,-11,0,0,-0.277238 -84079,3116:216:1,166,-11,0,0,-0.28345 -84080,3116:216:2,166.5,-11,0,0,-0.287532 -84081,3116:217:1,167,-11,0,0,-0.28345 -84082,3116:217:2,167.5,-11,0,0,-0.270776 -84083,3116:218:1,168,-11,0,0,-0.276372 -84084,3116:218:2,168.5,-11,0,0,-0.308052 -84085,3116:219:1,169,-11,0,0,-0.338131 -84086,3116:219:2,169.5,-11,0,0,-0.350717 -84087,3117:110:1,170,-11,0,0,-0.344343 -84088,3117:110:2,170.5,-11,0,0,-0.330413 -84089,3117:111:1,171,-11,0,0,-0.326106 -84090,3117:111:2,171.5,-11,0,0,-0.328794 -84091,3117:112:1,172,-11,0,0,-0.319776 -84092,3117:112:2,172.5,-11,0,0,-0.301663 -84093,3117:113:1,173,-11,0,0,-0.284357 -84094,3117:113:2,173.5,-11,0,0,-0.264483 -84095,3117:114:1,174,-11,0,0,-0.243267 -84096,3117:114:2,174.5,-11,0,0,-0.233063 -84097,3117:215:1,175,-11,0,0,-0.228501 -84098,3117:215:2,175.5,-11,0,0,-0.227119 -84099,3117:216:1,176,-11,0,0,-0.222122 -84100,3117:216:2,176.5,-11,0,0,-0.213434 -84101,3117:217:1,177,-11,0,0,-0.209936 -84102,3117:217:2,177.5,-11,0,0,-0.212892 -84103,3117:218:1,178,-11,0,0,-0.219219 -84104,3117:218:2,178.5,-11,0,0,-0.226773 -84105,3117:219:1,179,-11,0,0,-0.234487 -84106,3117:219:2,179.5,-11,0,0,-0.245146 -84107,3118:110:1,180,-11,0,0,-0.257169 -84108,5118:100:3,-180,-10.5,0,0,-0.366361 -84109,5117:209:4,-179.5,-10.5,0,0,-0.401082 -84110,5117:209:3,-179,-10.5,0,0,-0.44412 -84111,5117:208:4,-178.5,-10.5,0,0,-0.493376 -84112,5117:208:3,-178,-10.5,0,0,-0.54083 -84113,5117:207:4,-177.5,-10.5,0,0,-0.607731 -84114,5117:207:3,-177,-10.5,0,0,-0.705556 -84115,5117:206:4,-176.5,-10.5,0,0,-0.915262 -84116,5117:206:3,-176,-10.5,0,0,-1.24466 -84117,5117:205:4,-175.5,-10.5,0,0,-1.77489 -84118,5117:205:3,-175,-10.5,0,0,-2.62035 -84119,5117:104:4,-174.5,-10.5,0,0,-3.7844 -84120,5117:104:3,-174,-10.5,0,0,-5.71996 -84121,5117:103:4,-173.5,-10.5,0,0,-6.469 -84122,5117:103:3,-173,-10.5,0,0,-4.42854 -84123,5117:102:4,-172.5,-10.5,0,0,-3.29075 -84124,5117:102:3,-172,-10.5,0,0,-2.75397 -84125,5117:101:4,-171.5,-10.5,0,0,-2.41501 -84126,5117:101:3,-171,-10.5,0,0,-2.23613 -84127,5117:100:4,-170.5,-10.5,0,0,-2.11607 -84128,5117:100:3,-170,-10.5,0,0,-2.00645 -84129,5116:209:4,-169.5,-10.5,0,0,-2.195 -84130,5116:209:3,-169,-10.5,0,0,-2.53137 -84131,5116:208:4,-168.5,-10.5,0,0,-2.89986 -84132,5116:208:3,-168,-10.5,0,0,-4.00437 -84133,5116:207:4,-167.5,-10.5,0,0,-6.37632 -84134,5116:207:3,-167,-10.5,0,0,-21.5849 -84135,5116:206:4,-166.5,-10.5,0,0,10.5552 -84136,5116:206:3,-166,-10.5,0,0,8.17922 -84137,5116:205:4,-165.5,-10.5,0,0,9.06305 -84138,5116:205:3,-165,-10.5,0,0,7.9575 -84139,5116:104:4,-164.5,-10.5,0,0,5.77162 -84140,5116:104:3,-164,-10.5,0,0,5.28863 -84141,5116:103:4,-163.5,-10.5,0,0,5.08039 -84142,5116:103:3,-163,-10.5,0,0,4.61376 -84143,5116:102:4,-162.5,-10.5,0,0,4.61376 -84144,5116:102:3,-162,-10.5,0,0,4.5816 -84145,5116:101:4,-161.5,-10.5,0,0,3.83409 -84146,5116:101:3,-161,-10.5,0,0,3.35151 -84147,5116:100:4,-160.5,-10.5,0,0,3.79238 -84148,5116:100:3,-160,-10.5,0,0,4.96262 -84149,5115:209:4,-159.5,-10.5,0,0,4.51878 -84150,5115:209:3,-159,-10.5,0,0,3.69321 -84151,5115:208:4,-158.5,-10.5,0,0,3.83409 -84152,5115:208:3,-158,-10.5,0,0,4.0578 -84153,5115:207:4,-157.5,-10.5,0,0,3.77192 -84154,5115:207:3,-157,-10.5,0,0,3.38202 -84155,5115:206:4,-156.5,-10.5,0,0,3.19347 -84156,5115:206:3,-156,-10.5,0,0,3.24912 -84157,5115:205:4,-155.5,-10.5,0,0,3.51269 -84158,5115:205:3,-155,-10.5,0,0,4.0578 -84159,5115:104:4,-154.5,-10.5,0,0,5.51842 -84160,5115:104:3,-154,-10.5,0,0,8.534 -84161,5115:103:4,-153.5,-10.5,0,0,13.5991 -84162,5115:103:3,-153,-10.5,0,0,18.6505 -84163,5115:102:4,-152.5,-10.5,0,0,38.6991 -84164,5115:102:3,-152,-10.5,0,0,-60.8518 -84165,5115:101:4,-151.5,-10.5,0,0,-16.5176 -84166,5115:101:3,-151,-10.5,0,0,-9.38404 -84167,5115:100:4,-150.5,-10.5,0,0,-7.18855 -84168,5115:100:3,-150,-10.5,0,0,-5.64612 -84169,5114:209:4,-149.5,-10.5,0,0,-5.50572 -84170,5114:209:3,-149,-10.5,0,0,-5.50572 -84171,5114:208:4,-148.5,-10.5,0,0,-4.29357 -84172,5114:208:3,-148,-10.5,0,0,-3.0841 -84173,5114:207:4,-147.5,-10.5,0,0,-2.27859 -84174,5114:207:3,-147,-10.5,0,0,-1.77489 -84175,5114:206:4,-146.5,-10.5,0,0,-1.52291 -84176,5114:206:3,-146,-10.5,0,0,-1.39184 -84177,5114:205:4,-145.5,-10.5,0,0,-1.17749 -84178,5114:205:3,-145,-10.5,0,0,-1.03395 -84179,5114:104:4,-144.5,-10.5,0,0,-0.957335 -84180,5114:104:3,-144,-10.5,0,0,-0.915262 -84181,5114:103:4,-143.5,-10.5,0,0,-0.857283 -84182,5114:103:3,-143,-10.5,0,0,-0.731661 -84183,5114:102:4,-142.5,-10.5,0,0,-0.630014 -84184,5114:102:3,-142,-10.5,0,0,-0.605343 -84185,5114:101:4,-141.5,-10.5,0,0,-0.61749 -84186,5114:101:3,-141,-10.5,0,0,-0.602932 -84187,5114:100:4,-140.5,-10.5,0,0,-0.553371 -84188,5114:100:3,-140,-10.5,0,0,-0.494294 -84189,5113:209:4,-139.5,-10.5,0,0,-0.469608 -84190,5113:209:3,-139,-10.5,0,0,-0.498889 -84191,5113:208:4,-138.5,-10.5,0,0,-0.478219 -84192,5113:208:3,-138,-10.5,0,0,-0.418213 -84193,5113:207:4,-137.5,-10.5,0,0,-0.406704 -84194,5113:207:3,-137,-10.5,0,0,-0.380296 -84195,5113:206:4,-136.5,-10.5,0,0,-0.315124 -84196,5113:206:3,-136,-10.5,0,0,-0.269922 -84197,5113:205:4,-135.5,-10.5,0,0,-0.275496 -84198,5113:205:3,-135,-10.5,0,0,-0.271621 -84199,5113:104:4,-134.5,-10.5,0,0,-0.234138 -84200,5113:104:3,-134,-10.5,0,0,-0.236649 -84201,5113:103:4,-133.5,-10.5,0,0,-0.245515 -84202,5113:103:3,-133,-10.5,0,0,-0.228501 -84203,5113:102:4,-132.5,-10.5,0,0,-0.213986 -84204,5113:102:3,-132,-10.5,0,0,-0.205606 -84205,5113:101:4,-131.5,-10.5,0,0,-0.196981 -84206,5113:101:3,-131,-10.5,0,0,-0.191719 -84207,5113:100:4,-130.5,-10.5,0,0,-0.190324 -84208,5113:100:3,-130,-10.5,0,0,-0.19102 -84209,5112:209:4,-129.5,-10.5,0,0,-0.188782 -84210,5112:209:3,-129,-10.5,0,0,-0.185637 -84211,5112:208:4,-128.5,-10.5,0,0,-0.183676 -84212,5112:208:3,-128,-10.5,0,0,-0.181158 -84213,5112:207:4,-127.5,-10.5,0,0,-0.179378 -84214,5112:207:3,-127,-10.5,0,0,-0.179927 -84215,5112:206:4,-126.5,-10.5,0,0,-0.179003 -84216,5112:206:3,-126,-10.5,0,0,-0.17705 -84217,5112:205:4,-125.5,-10.5,0,0,-0.175559 -84218,5112:205:3,-125,-10.5,0,0,-0.173936 -84219,5112:104:4,-124.5,-10.5,0,0,-0.172857 -84220,5112:104:3,-124,-10.5,0,0,-0.17207 -84221,5112:103:4,-123.5,-10.5,0,0,-0.170461 -84222,5112:103:3,-123,-10.5,0,0,-0.167757 -84223,5112:102:4,-122.5,-10.5,0,0,-0.166035 -84224,5112:102:3,-122,-10.5,0,0,-0.165328 -84225,5112:101:4,-121.5,-10.5,0,0,-0.163119 -84226,5112:101:3,-121,-10.5,0,0,-0.160921 -84227,5112:100:4,-120.5,-10.5,0,0,-0.159563 -84228,5112:100:3,-120,-10.5,0,0,-0.156968 -84229,5111:209:4,-119.5,-10.5,0,0,-0.154359 -84230,5111:209:3,-119,-10.5,0,0,-0.153209 -84231,5111:208:4,-118.5,-10.5,0,0,-0.150425 -84232,5111:208:3,-118,-10.5,0,0,-0.147858 -84233,5111:207:4,-117.5,-10.5,0,0,-0.145715 -84234,5111:207:3,-117,-10.5,0,0,-0.143007 -84235,5111:206:4,-116.5,-10.5,0,0,-0.141246 -84236,5111:206:3,-116,-10.5,0,0,-0.139071 -84237,5111:205:4,-115.5,-10.5,0,0,-0.137187 -84238,5111:205:3,-115,-10.5,0,0,-0.136221 -84239,5111:104:4,-114.5,-10.5,0,0,-0.13605 -84240,5111:104:3,-114,-10.5,0,0,-0.13605 -84241,5111:103:4,-113.5,-10.5,0,0,-0.13605 -84242,5111:103:3,-113,-10.5,0,0,-0.13605 -84243,5111:102:4,-112.5,-10.5,0,0,-0.13605 -84244,5111:102:3,-112,-10.5,0,0,-0.13605 -84245,5111:101:4,-111.5,-10.5,0,0,-0.13605 -84246,5111:101:3,-111,-10.5,0,0,-0.13605 -84247,5111:100:4,-110.5,-10.5,0,0,-0.13605 -84248,5111:100:3,-110,-10.5,0,0,-0.13605 -84249,5110:209:4,-109.5,-10.5,0,0,-0.13605 -84250,5110:209:3,-109,-10.5,0,0,-0.13605 -84251,5110:208:4,-108.5,-10.5,0,0,-0.13605 -84252,5110:208:3,-108,-10.5,0,0,-0.13605 -84253,5110:207:4,-107.5,-10.5,0,0,-0.13605 -84254,5110:207:3,-107,-10.5,0,0,-0.13605 -84255,5110:206:4,-106.5,-10.5,0,0,-0.13605 -84256,5110:206:3,-106,-10.5,0,0,-0.13605 -84257,5110:205:4,-105.5,-10.5,0,0,-0.13605 -84258,5110:205:3,-105,-10.5,0,0,-0.13605 -84259,5110:104:4,-104.5,-10.5,0,0,-0.13605 -84260,5110:104:3,-104,-10.5,0,0,-0.13605 -84261,5110:103:4,-103.5,-10.5,0,0,-0.13605 -84262,5110:103:3,-103,-10.5,0,0,-0.13605 -84263,5110:102:4,-102.5,-10.5,0,0,-0.13605 -84264,5110:102:3,-102,-10.5,0,0,-0.13605 -84265,5110:101:4,-101.5,-10.5,0,0,-0.13605 -84266,5110:101:3,-101,-10.5,0,0,-0.13605 -84267,5110:100:4,-100.5,-10.5,0,0,-0.13605 -84268,5110:100:3,-100,-10.5,0,0,-0.13605 -84269,5109:209:4,-99.5,-10.5,0,0,-0.13605 -84270,5109:209:3,-99,-10.5,0,0,-0.13605 -84271,5109:208:4,-98.5,-10.5,0,0,-0.13605 -84272,5109:208:3,-98,-10.5,0,0,-0.13605 -84273,5109:207:4,-97.5,-10.5,0,0,-0.13605 -84274,5109:207:3,-97,-10.5,0,0,-0.13605 -84275,5109:206:4,-96.5,-10.5,0,0,-0.13605 -84276,5109:206:3,-96,-10.5,0,0,-0.13605 -84277,5109:205:4,-95.5,-10.5,0,0,-0.13605 -84278,5109:205:3,-95,-10.5,0,0,-0.13605 -84279,5109:104:4,-94.5,-10.5,0,0,-0.13605 -84280,5109:104:3,-94,-10.5,0,0,-0.13605 -84281,5109:103:4,-93.5,-10.5,0,0,-0.13605 -84282,5109:103:3,-93,-10.5,0,0,-0.13605 -84283,5109:102:4,-92.5,-10.5,0,0,-0.13605 -84284,5109:102:3,-92,-10.5,0,0,-0.13605 -84285,5109:101:4,-91.5,-10.5,0,0,-0.13605 -84286,5109:101:3,-91,-10.5,0,0,-0.13605 -84287,5109:100:4,-90.5,-10.5,0,0,-0.13605 -84288,5109:100:3,-90,-10.5,0,0,-0.13605 -84289,5108:209:4,-89.5,-10.5,0,0,-0.13605 -84290,5108:209:3,-89,-10.5,0,0,-0.13605 -84291,5108:208:4,-88.5,-10.5,0,0,-0.13605 -84292,5108:208:3,-88,-10.5,0,0,-0.13605 -84293,5108:207:4,-87.5,-10.5,0,0,-0.13605 -84294,5108:207:3,-87,-10.5,0,0,-0.13605 -84295,5108:206:4,-86.5,-10.5,0,0,-0.13605 -84296,5108:206:3,-86,-10.5,0,0,-0.13605 -84297,5108:205:4,-85.5,-10.5,0,0,-0.13605 -84298,5108:205:3,-85,-10.5,0,0,-0.13605 -84299,5108:104:4,-84.5,-10.5,0,0,-0.13605 -84300,5108:104:3,-84,-10.5,0,0,-0.13605 -84301,5108:103:4,-83.5,-10.5,0,0,-0.13605 -84302,5108:103:3,-83,-10.5,0,0,-0.13605 -84303,5108:102:4,-82.5,-10.5,0,0,-0.13605 -84304,5108:102:3,-82,-10.5,0,0,-0.13605 -84305,5108:101:4,-81.5,-10.5,0,0,-0.13605 -84306,5108:101:3,-81,-10.5,0,0,-0.13605 -84307,5108:100:4,-80.5,-10.5,0,0,-0.13605 -84308,5108:100:3,-80,-10.5,0,0,-0.13605 -84309,5107:209:4,-79.5,-10.5,0,0,-0.13605 -84310,5107:209:3,-79,-10.5,0,0,-0.13605 -84311,5107:208:4,-78.5,-10.5,0,0,-0.13605 -84312,5107:208:3,-78,-10.5,0,0,-0.13605 -84313,5107:207:4,-77.5,-10.5,0,0,-0.13605 -84314,5107:207:3,-77,-10.5,0,0,-0.13605 -84315,5103:208:3,-38,-10.5,0,0,-0.176241 -84316,5103:207:4,-37.5,-10.5,0,0,-0.184964 -84317,5103:207:3,-37,-10.5,0,0,-0.18401 -84318,5103:206:4,-36.5,-10.5,0,0,-0.180705 -84319,5103:206:3,-36,-10.5,0,0,-0.179078 -84320,5103:205:4,-35.5,-10.5,0,0,-0.176657 -84321,5103:205:3,-35,-10.5,0,0,-0.176707 -84322,5103:104:4,-34.5,-10.5,0,0,-0.175826 -84323,5103:104:3,-34,-10.5,0,0,-0.172904 -84324,5103:103:4,-33.5,-10.5,0,0,-0.171216 -84325,5103:103:3,-33,-10.5,0,0,-0.170038 -84326,5103:102:4,-32.5,-10.5,0,0,-0.168521 -84327,5103:102:3,-32,-10.5,0,0,-0.167365 -84328,5103:101:4,-31.5,-10.5,0,0,-0.166309 -84329,5103:101:3,-31,-10.5,0,0,-0.165351 -84330,5103:100:4,-30.5,-10.5,0,0,-0.164468 -84331,5103:100:3,-30,-10.5,0,0,-0.161363 -84332,5102:209:4,-29.5,-10.5,0,0,-0.15989 -84333,5102:209:3,-29,-10.5,0,0,-0.158086 -84334,5102:208:4,-28.5,-10.5,0,0,-0.154844 -84335,5102:208:3,-28,-10.5,0,0,-0.154191 -84336,5102:207:4,-27.5,-10.5,0,0,-0.1535 -84337,5102:207:3,-27,-10.5,0,0,-0.15147 -84338,5102:206:4,-26.5,-10.5,0,0,-0.149024 -84339,5102:206:3,-26,-10.5,0,0,-0.1472 -84340,5102:205:4,-25.5,-10.5,0,0,-0.14452 -84341,5102:205:3,-25,-10.5,0,0,-0.144227 -84342,5102:104:4,-24.5,-10.5,0,0,-0.143258 -84343,5102:104:3,-24,-10.5,0,0,-0.143258 -84344,5102:103:4,-23.5,-10.5,0,0,-0.143084 -84345,5102:103:3,-23,-10.5,0,0,-0.141246 -84346,5102:102:4,-22.5,-10.5,0,0,-0.139678 -84347,5102:102:3,-22,-10.5,0,0,-0.138462 -84348,5102:101:4,-21.5,-10.5,0,0,-0.136953 -84349,5102:101:3,-21,-10.5,0,0,-0.136154 -84350,5102:100:4,-20.5,-10.5,0,0,-0.13605 -84351,5102:100:3,-20,-10.5,0,0,-0.13605 -84352,5101:209:4,-19.5,-10.5,0,0,-0.13605 -84353,5101:209:3,-19,-10.5,0,0,-0.13605 -84354,5101:208:4,-18.5,-10.5,0,0,-0.13605 -84355,5101:208:3,-18,-10.5,0,0,-0.13605 -84356,5101:207:4,-17.5,-10.5,0,0,-0.13605 -84357,5101:207:3,-17,-10.5,0,0,-0.13605 -84358,5101:206:4,-16.5,-10.5,0,0,-0.13605 -84359,5101:206:3,-16,-10.5,0,0,-0.13605 -84360,5101:205:4,-15.5,-10.5,0,0,-0.13605 -84361,5101:205:3,-15,-10.5,0,0,-0.13605 -84362,5101:104:4,-14.5,-10.5,0,0,-0.13605 -84363,5101:104:3,-14,-10.5,0,0,-0.13605 -84364,5101:103:4,-13.5,-10.5,0,0,-0.13605 -84365,5101:103:3,-13,-10.5,0,0,-0.13605 -84366,5101:102:4,-12.5,-10.5,0,0,-0.13605 -84367,5101:102:3,-12,-10.5,0,0,-0.13605 -84368,5101:101:4,-11.5,-10.5,0,0,-0.13605 -84369,5101:101:3,-11,-10.5,0,0,-0.13605 -84370,5101:100:4,-10.5,-10.5,0,0,-0.13605 -84371,5101:100:3,-10,-10.5,0,0,-0.13605 -84372,5100:209:4,-9.5,-10.5,0,0,-0.13605 -84373,5100:209:3,-9,-10.5,0,0,-0.13605 -84374,5100:208:4,-8.5,-10.5,0,0,-0.13605 -84375,5100:208:3,-8,-10.5,0,0,-0.13605 -84376,5100:207:4,-7.5,-10.5,0,0,-0.13605 -84377,5100:207:3,-7,-10.5,0,0,-0.13605 -84378,5100:206:4,-6.5,-10.5,0,0,-0.13605 -84379,5100:206:3,-6,-10.5,0,0,-0.13605 -84380,5100:205:4,-5.5,-10.5,0,0,-0.13605 -84381,5100:205:3,-5,-10.5,0,0,-0.13605 -84382,5100:104:4,-4.5,-10.5,0,0,-0.13605 -84383,5100:104:3,-4,-10.5,0,0,-0.13605 -84384,5100:103:4,-3.5,-10.5,0,0,-0.13605 -84385,5100:103:3,-3,-10.5,0,0,-0.13605 -84386,5100:102:4,-2.5,-10.5,0,0,-0.13605 -84387,5100:102:3,-2,-10.5,0,0,-0.13605 -84388,5100:101:4,-1.5,-10.5,0,0,-0.13605 -84389,5100:101:3,-1,-10.5,0,0,-0.13605 -84390,5100:100:4,-0.5,-10.5,0,0,-0.13605 -84391,3100:100:4,0,-10.5,0,0,-0.13605 -84392,3100:100:4,0.5,-10.5,0,0,-0.13605 -84393,3100:101:3,1,-10.5,0,0,-0.13605 -84394,3100:101:4,1.5,-10.5,0,0,-0.13605 -84395,3100:102:3,2,-10.5,0,0,-0.13605 -84396,3100:102:4,2.5,-10.5,0,0,-0.13605 -84397,3100:103:3,3,-10.5,0,0,-0.13605 -84398,3100:103:4,3.5,-10.5,0,0,-0.13605 -84399,3100:104:3,4,-10.5,0,0,-0.13605 -84400,3100:104:4,4.5,-10.5,0,0,-0.13605 -84401,3100:205:3,5,-10.5,0,0,-0.13605 -84402,3100:205:4,5.5,-10.5,0,0,-0.13605 -84403,3100:206:3,6,-10.5,0,0,-0.13605 -84404,3100:206:4,6.5,-10.5,0,0,-0.13605 -84405,3100:207:3,7,-10.5,0,0,-0.13605 -84406,3100:207:4,7.5,-10.5,0,0,-0.13605 -84407,3100:208:3,8,-10.5,0,0,-0.13605 -84408,3100:208:4,8.5,-10.5,0,0,-0.13605 -84409,3100:209:3,9,-10.5,0,0,-0.13605 -84410,3100:209:4,9.5,-10.5,0,0,-0.140886 -84411,3101:100:3,10,-10.5,0,0,-0.145459 -84412,3101:100:4,10.5,-10.5,0,0,-0.148139 -84413,3101:101:3,11,-10.5,0,0,-0.149024 -84414,3101:101:4,11.5,-10.5,0,0,-0.146109 -84415,3101:102:3,12,-10.5,0,0,-0.139566 -84416,3101:102:4,12.5,-10.5,0,0,-0.13605 -84417,3101:103:3,13,-10.5,0,0,-0.13605 -84418,3104:100:4,40.5,-10.5,0,0,-1.13419 -84419,3104:101:3,41,-10.5,0,0,-26.1207 -84420,3104:101:4,41.5,-10.5,0,0,-13.7131 -84421,3104:102:3,42,-10.5,0,0,-4.67245 -84422,3104:102:4,42.5,-10.5,0,0,-1.99513 -84423,3104:103:3,43,-10.5,0,0,-1.5157 -84424,3104:103:4,43.5,-10.5,0,0,-4.12441 -84425,3104:104:3,44,-10.5,0,0,-2.22214 -84426,3104:104:4,44.5,-10.5,0,0,-2.49701 -84427,3104:205:3,45,-10.5,0,0,-0.964552 -84428,3104:205:4,45.5,-10.5,0,0,-0.446499 -84429,3104:206:3,46,-10.5,0,0,-0.329867 -84430,3104:206:4,46.5,-10.5,0,0,-0.278121 -84431,3104:207:3,47,-10.5,0,0,-0.259584 -84432,3104:207:4,47.5,-10.5,0,0,-0.245895 -84433,3104:208:3,48,-10.5,0,0,-0.224076 -84434,3104:208:4,48.5,-10.5,0,0,-0.183907 -84435,3104:209:4,49.5,-10.5,0,0,-0.192746 -84436,3105:100:3,50,-10.5,0,0,-0.194043 -84437,3105:100:4,50.5,-10.5,0,0,-0.194566 -84438,3105:101:3,51,-10.5,0,0,-0.197958 -84439,3105:101:4,51.5,-10.5,0,0,-0.202205 -84440,3105:102:3,52,-10.5,0,0,-0.205991 -84441,3105:102:4,52.5,-10.5,0,0,-0.201842 -84442,3105:103:3,53,-10.5,0,0,-0.196628 -84443,3105:103:4,53.5,-10.5,0,0,-0.197557 -84444,3105:104:3,54,-10.5,0,0,-0.208658 -84445,3105:104:4,54.5,-10.5,0,0,-0.242153 -84446,3105:205:3,55,-10.5,0,0,-0.273334 -84447,3105:205:4,55.5,-10.5,0,0,-0.297334 -84448,3105:206:3,56,-10.5,0,0,-0.306568 -84449,3105:206:4,56.5,-10.5,0,0,-0.30607 -84450,3105:207:3,57,-10.5,0,0,-0.300217 -84451,3105:207:4,57.5,-10.5,0,0,-0.294027 -84452,3105:208:3,58,-10.5,0,0,-0.288904 -84453,3105:208:4,58.5,-10.5,0,0,-0.278121 -84454,3105:209:3,59,-10.5,0,0,-0.257571 -84455,3105:209:4,59.5,-10.5,0,0,-0.23342 -84456,3106:100:3,60,-10.5,0,0,-0.208658 -84457,3106:100:4,60.5,-10.5,0,0,-0.198404 -84458,3106:101:3,61,-10.5,0,0,-0.19509 -84459,3106:101:4,61.5,-10.5,0,0,-0.192773 -84460,3106:102:3,62,-10.5,0,0,-0.190564 -84461,3106:102:4,62.5,-10.5,0,0,-0.190164 -84462,3106:103:3,63,-10.5,0,0,-0.191558 -84463,3106:103:4,63.5,-10.5,0,0,-0.193436 -84464,3106:104:3,64,-10.5,0,0,-0.195309 -84465,3106:104:4,64.5,-10.5,0,0,-0.198092 -84466,3106:205:3,65,-10.5,0,0,-0.208154 -84467,3106:205:4,65.5,-10.5,0,0,-0.227814 -84468,3106:206:3,66,-10.5,0,0,-0.249331 -84469,3106:206:4,66.5,-10.5,0,0,-0.272914 -84470,3106:207:3,67,-10.5,0,0,-0.292611 -84471,3106:207:4,67.5,-10.5,0,0,-0.304597 -84472,3106:208:3,68,-10.5,0,0,-0.311063 -84473,3106:208:4,68.5,-10.5,0,0,-0.310556 -84474,3106:209:3,69,-10.5,0,0,-0.302152 -84475,3106:209:4,69.5,-10.5,0,0,-0.287532 -84476,3107:100:3,70,-10.5,0,0,-0.270776 -84477,3107:100:4,70.5,-10.5,0,0,-0.259584 -84478,3107:101:3,71,-10.5,0,0,-0.257571 -84479,3107:101:4,71.5,-10.5,0,0,-0.26408 -84480,3107:102:3,72,-10.5,0,0,-0.281211 -84481,3107:102:4,72.5,-10.5,0,0,-0.306568 -84482,3107:103:4,73.5,-10.5,0,0,-0.323979 -84483,3107:104:3,74,-10.5,0,0,-0.318728 -84484,3107:104:4,74.5,-10.5,0,0,-0.300688 -84485,3107:205:3,75,-10.5,0,0,-0.287993 -84486,3107:205:4,75.5,-10.5,0,0,-0.272914 -84487,3107:206:3,76,-10.5,0,0,-0.257571 -84488,3107:206:4,76.5,-10.5,0,0,-0.241779 -84489,3107:207:3,77,-10.5,0,0,-0.22507 -84490,3107:207:4,77.5,-10.5,0,0,-0.208914 -84491,3107:208:3,78,-10.5,0,0,-0.198492 -84492,3107:208:4,78.5,-10.5,0,0,-0.195397 -84493,3107:209:3,79,-10.5,0,0,-0.192448 -84494,3107:209:4,79.5,-10.5,0,0,-0.190217 -84495,3108:100:3,80,-10.5,0,0,-0.188069 -84496,3108:100:4,80.5,-10.5,0,0,-0.185766 -84497,3108:101:3,81,-10.5,0,0,-0.183548 -84498,3108:101:4,81.5,-10.5,0,0,-0.181689 -84499,3108:102:3,82,-10.5,0,0,-0.180152 -84500,3108:102:4,82.5,-10.5,0,0,-0.178705 -84501,3108:103:3,83,-10.5,0,0,-0.177124 -84502,3108:103:4,83.5,-10.5,0,0,-0.175582 -84503,3108:104:3,84,-10.5,0,0,-0.174418 -84504,3108:104:4,84.5,-10.5,0,0,-0.173336 -84505,3108:205:3,85,-10.5,0,0,-0.172094 -84506,3108:205:4,85.5,-10.5,0,0,-0.171145 -84507,3108:206:3,86,-10.5,0,0,-0.170603 -84508,3108:206:4,86.5,-10.5,0,0,-0.170226 -84509,3108:207:3,87,-10.5,0,0,-0.169945 -84510,3108:207:4,87.5,-10.5,0,0,-0.169804 -84511,3108:208:3,88,-10.5,0,0,-0.169734 -84512,3108:208:4,88.5,-10.5,0,0,-0.16964 -84513,3108:209:3,89,-10.5,0,0,-0.169734 -84514,3108:209:4,89.5,-10.5,0,0,-0.170086 -84515,3109:100:3,90,-10.5,0,0,-0.170461 -84516,3109:100:4,90.5,-10.5,0,0,-0.171145 -84517,3109:101:3,91,-10.5,0,0,-0.172665 -84518,3109:101:4,91.5,-10.5,0,0,-0.174612 -84519,3109:102:3,92,-10.5,0,0,-0.176046 -84520,3109:102:4,92.5,-10.5,0,0,-0.176216 -84521,3109:103:3,93,-10.5,0,0,-0.175266 -84522,3109:103:4,93.5,-10.5,0,0,-0.173624 -84523,3109:104:3,94,-10.5,0,0,-0.171358 -84524,3109:104:4,94.5,-10.5,0,0,-0.168847 -84525,3109:205:3,95,-10.5,0,0,-0.166538 -84526,3109:205:4,95.5,-10.5,0,0,-0.164852 -84527,3109:206:3,96,-10.5,0,0,-0.164017 -84528,3109:206:4,96.5,-10.5,0,0,-0.163792 -84529,3109:207:3,97,-10.5,0,0,-0.163568 -84530,3109:207:4,97.5,-10.5,0,0,-0.163254 -84531,3109:208:3,98,-10.5,0,0,-0.163097 -84532,3109:208:4,98.5,-10.5,0,0,-0.164062 -84533,3109:209:3,99,-10.5,0,0,-0.167365 -84534,3109:209:4,99.5,-10.5,0,0,-0.172213 -84535,3110:100:3,100,-10.5,0,0,-0.176559 -84536,3110:100:4,100.5,-10.5,0,0,-0.179827 -84537,3110:101:3,101,-10.5,0,0,-0.182426 -84538,3110:101:4,101.5,-10.5,0,0,-0.184344 -84539,3110:102:3,102,-10.5,0,0,-0.185533 -84540,3110:102:4,102.5,-10.5,0,0,-0.186339 -84541,3110:103:3,103,-10.5,0,0,-0.187123 -84542,3110:103:4,103.5,-10.5,0,0,-0.188121 -84543,3110:104:3,104,-10.5,0,0,-0.190083 -84544,3110:104:4,104.5,-10.5,0,0,-0.190725 -84545,3110:205:3,105,-10.5,0,0,-0.188385 -84546,3110:205:4,105.5,-10.5,0,0,-0.185611 -84547,3110:206:3,106,-10.5,0,0,-0.183574 -84548,3110:206:4,106.5,-10.5,0,0,-0.183626 -84549,3110:207:3,107,-10.5,0,0,-0.185715 -84550,3110:207:4,107.5,-10.5,0,0,-0.198449 -84551,3110:208:3,108,-10.5,0,0,-0.348387 -84552,3110:208:4,108.5,-10.5,0,0,-0.565241 -84553,3110:209:3,109,-10.5,0,0,-0.777073 -84554,3110:209:4,109.5,-10.5,0,0,-0.740005 -84555,3111:100:3,110,-10.5,0,0,-0.717269 -84556,3111:100:4,110.5,-10.5,0,0,-0.939481 -84557,3111:101:3,111,-10.5,0,0,-1.45167 -84558,3111:101:4,111.5,-10.5,0,0,-2.83582 -84559,3111:102:3,112,-10.5,0,0,-29.1935 -84560,3111:102:4,112.5,-10.5,0,0,4.81589 -84561,3111:103:3,113,-10.5,0,0,2.91592 -84562,3111:103:4,113.5,-10.5,0,0,2.27713 -84563,3111:104:3,114,-10.5,0,0,1.97155 -84564,3111:104:4,114.5,-10.5,0,0,1.80412 -84565,3111:205:3,115,-10.5,0,0,1.68649 -84566,3111:205:4,115.5,-10.5,0,0,1.6065 -84567,3111:206:3,116,-10.5,0,0,1.5502 -84568,3111:206:4,116.5,-10.5,0,0,1.53404 -84569,3111:207:3,117,-10.5,0,0,1.52934 -84570,3111:207:4,117.5,-10.5,0,0,1.52465 -84571,3111:208:3,118,-10.5,0,0,1.55684 -84572,3111:208:4,118.5,-10.5,0,0,1.58097 -84573,3111:209:3,119,-10.5,0,0,1.59724 -84574,3111:209:4,119.5,-10.5,0,0,1.60466 -84575,3112:100:3,120,-10.5,0,0,1.57741 -84576,3112:100:4,120.5,-10.5,0,0,1.52621 -84577,3112:101:3,121,-10.5,0,0,1.46746 -84578,3112:101:4,121.5,-10.5,0,0,1.43584 -84579,3112:102:3,122,-10.5,0,0,1.4125 -84580,3112:102:4,122.5,-10.5,0,0,1.33636 -84581,3112:103:3,123,-10.5,0,0,1.28103 -84582,3112:103:4,123.5,-10.5,0,0,1.31313 -84583,3112:104:3,124,-10.5,0,0,1.26599 -84584,3112:104:4,124.5,-10.5,0,0,1.22825 -84585,3112:205:3,125,-10.5,0,0,1.20802 -84586,3112:205:4,125.5,-10.5,0,0,1.19649 -84587,3112:206:3,126,-10.5,0,0,1.17877 -84588,3112:206:4,126.5,-10.5,0,0,1.17231 -84589,3112:207:3,127,-10.5,0,0,1.16001 -84590,3112:207:4,127.5,-10.5,0,0,1.14416 -84591,3112:208:3,128,-10.5,0,0,1.14017 -84592,3112:208:4,128.5,-10.5,0,0,1.14277 -84593,3112:209:3,129,-10.5,0,0,1.13332 -84594,3112:209:4,129.5,-10.5,0,0,1.11289 -84595,3113:100:3,130,-10.5,0,0,1.08804 -84596,3113:100:4,130.5,-10.5,0,0,1.05394 -84597,3113:101:3,131,-10.5,0,0,1.05394 -84598,3113:206:4,136.5,-10.5,0,0,1.10042 -84599,3113:207:4,137.5,-10.5,0,0,1.18701 -84600,3113:208:3,138,-10.5,0,0,1.76886 -84601,3113:208:4,138.5,-10.5,0,0,3.56455 -84602,3113:209:3,139,-10.5,0,0,3.05293 -84603,3113:209:4,139.5,-10.5,0,0,2.0797 -84604,3114:100:3,140,-10.5,0,0,1.64377 -84605,3114:100:4,140.5,-10.5,0,0,1.50954 -84606,3114:101:3,141,-10.5,0,0,1.33378 -84607,3114:101:4,141.5,-10.5,0,0,1.2208 -84608,3114:103:4,143.5,-10.5,0,0,8.534 -84609,3114:104:3,144,-10.5,0,0,-0.943034 -84610,3114:104:4,144.5,-10.5,0,0,-0.19896 -84611,3114:205:3,145,-10.5,0,0,-0.272051 -84612,3114:205:4,145.5,-10.5,0,0,-0.281211 -84613,3114:206:3,146,-10.5,0,0,-0.275496 -84614,3114:206:4,146.5,-10.5,0,0,-0.257571 -84615,3114:207:3,147,-10.5,0,0,-0.248944 -84616,3114:207:4,147.5,-10.5,0,0,-0.255977 -84617,3114:208:3,148,-10.5,0,0,-0.270349 -84618,3114:208:4,148.5,-10.5,0,0,-0.308554 -84619,3114:209:3,149,-10.5,0,0,-0.377695 -84620,3114:209:4,149.5,-10.5,0,0,-0.424878 -84621,3115:100:3,150,-10.5,0,0,-0.411683 -84622,3115:100:4,150.5,-10.5,0,0,-0.516875 -84623,3115:101:3,151,-10.5,0,0,-0.750642 -84624,3115:101:4,151.5,-10.5,0,0,-0.932435 -84625,3115:102:3,152,-10.5,0,0,-0.983124 -84626,3115:102:4,152.5,-10.5,0,0,-1.02191 -84627,3115:103:3,153,-10.5,0,0,-0.964552 -84628,3115:103:4,153.5,-10.5,0,0,-0.986926 -84629,3115:104:3,154,-10.5,0,0,-1.55304 -84630,3115:104:4,154.5,-10.5,0,0,-3.43147 -84631,3115:205:3,155,-10.5,0,0,-5.36961 -84632,3115:205:4,155.5,-10.5,0,0,-4.04367 -84633,3115:206:3,156,-10.5,0,0,-2.67613 -84634,3115:206:4,156.5,-10.5,0,0,-1.81358 -84635,3115:207:3,157,-10.5,0,0,-1.27759 -84636,3115:207:4,157.5,-10.5,0,0,-1.02582 -84637,3115:208:3,158,-10.5,0,0,-0.875962 -84638,3115:208:4,158.5,-10.5,0,0,-0.78247 -84639,3115:209:3,159,-10.5,0,0,-0.705556 -84640,3115:209:4,159.5,-10.5,0,0,-0.630014 -84641,3116:100:3,160,-10.5,0,0,-0.52867 -84642,3116:100:4,160.5,-10.5,0,0,-0.412407 -84643,3116:101:3,161,-10.5,0,0,-0.408825 -84644,3116:101:4,161.5,-10.5,0,0,-0.425609 -84645,3116:102:3,162,-10.5,0,0,-0.427123 -84646,3116:102:4,162.5,-10.5,0,0,-0.421156 -84647,3116:103:3,163,-10.5,0,0,-0.422626 -84648,3116:103:4,163.5,-10.5,0,0,-0.431682 -84649,3116:104:3,164,-10.5,0,0,-0.443323 -84650,3116:104:4,164.5,-10.5,0,0,-0.45133 -84651,3116:205:3,165,-10.5,0,0,-0.457032 -84652,3116:205:4,165.5,-10.5,0,0,-0.460337 -84653,3116:206:3,166,-10.5,0,0,-0.462855 -84654,3116:206:4,166.5,-10.5,0,0,-0.467041 -84655,3116:207:3,167,-10.5,0,0,-0.478219 -84656,3116:207:4,167.5,-10.5,0,0,-0.490663 -84657,3116:208:3,168,-10.5,0,0,-0.5073 -84658,3116:208:4,168.5,-10.5,0,0,-0.534688 -84659,3116:209:3,169,-10.5,0,0,-0.564141 -84660,3116:209:4,169.5,-10.5,0,0,-0.580804 -84661,3117:100:3,170,-10.5,0,0,-0.57856 -84662,3117:100:4,170.5,-10.5,0,0,-0.558721 -84663,3117:101:3,171,-10.5,0,0,-0.533699 -84664,3117:101:4,171.5,-10.5,0,0,-0.509207 -84665,3117:102:3,172,-10.5,0,0,-0.481728 -84666,3117:102:4,172.5,-10.5,0,0,-0.446499 -84667,3117:103:3,173,-10.5,0,0,-0.410961 -84668,3117:103:4,173.5,-10.5,0,0,-0.371348 -84669,3117:104:3,174,-10.5,0,0,-0.337569 -84670,3117:104:4,174.5,-10.5,0,0,-0.321869 -84671,3117:205:3,175,-10.5,0,0,-0.321869 -84672,3117:205:4,175.5,-10.5,0,0,-0.322399 -84673,3117:206:3,176,-10.5,0,0,-0.325569 -84674,3117:206:4,176.5,-10.5,0,0,-0.322399 -84675,3117:207:3,177,-10.5,0,0,-0.311556 -84676,3117:207:4,177.5,-10.5,0,0,-0.306568 -84677,3117:208:3,178,-10.5,0,0,-0.309057 -84678,3117:208:4,178.5,-10.5,0,0,-0.312065 -84679,3117:209:3,179,-10.5,0,0,-0.322914 -84680,3117:209:4,179.5,-10.5,0,0,-0.341496 -84681,3118:100:3,180,-10.5,0,0,-0.366361 -84682,5118:100:1,-180,-10,0,0,-0.53571 -84683,5117:209:2,-179.5,-10,0,0,-0.596996 -84684,5117:209:1,-179,-10,0,0,-0.675289 -84685,5117:208:2,-178.5,-10,0,0,-0.804434 -84686,5117:208:1,-178,-10,0,0,-0.998346 -84687,5117:207:2,-177.5,-10,0,0,-1.24466 -84688,5117:207:1,-177,-10,0,0,-1.64968 -84689,5117:206:2,-176.5,-10,0,0,-2.60202 -84690,5117:206:1,-176,-10,0,0,-5.36961 -84691,5117:205:2,-175.5,-10,0,0,-31.0123 -84692,5117:205:1,-175,-10,0,0,23.4911 -84693,5117:104:2,-174.5,-10,0,0,11.6346 -84694,5117:104:1,-174,-10,0,0,10.0048 -84695,5117:103:2,-173.5,-10,0,0,13.9409 -84696,5117:103:1,-173,-10,0,0,41.7633 -84697,5117:102:2,-172.5,-10,0,0,-23.6587 -84698,5117:102:1,-172,-10,0,0,-12.6365 -84699,5117:101:2,-171.5,-10,0,0,-10.6543 -84700,5117:101:1,-171,-10,0,0,-11.999 -84701,5117:100:2,-170.5,-10,0,0,-16.5176 -84702,5117:100:1,-170,-10,0,0,-23.6587 -84703,5116:209:2,-169.5,-10,0,0,-19.0885 -84704,5116:209:1,-169,-10,0,0,-17.7029 -84705,5116:208:2,-168.5,-10,0,0,-12.6365 -84706,5116:208:1,-168,-10,0,0,-18.3703 -84707,5116:207:2,-167.5,-10,0,0,-355.679 -84708,5116:207:1,-167,-10,0,0,12.6794 -84709,5116:206:2,-166.5,-10,0,0,4.31529 -84710,5116:206:1,-166,-10,0,0,3.52942 -84711,5116:205:2,-165.5,-10,0,0,3.24912 -84712,5116:205:1,-165,-10,0,0,3.19347 -84713,5116:104:2,-164.5,-10,0,0,2.91592 -84714,5116:104:1,-164,-10,0,0,2.79342 -84715,5116:103:2,-163.5,-10,0,0,2.74606 -84716,5116:103:1,-163,-10,0,0,2.61557 -84717,5116:102:2,-162.5,-10,0,0,2.55241 -84718,5116:102:1,-162,-10,0,0,2.44421 -84719,5116:101:2,-161.5,-10,0,0,2.29989 -84720,5116:101:1,-161,-10,0,0,2.20726 -84721,5116:100:2,-160.5,-10,0,0,2.32928 -84722,5116:100:1,-160,-10,0,0,2.70071 -84723,5115:209:2,-159.5,-10,0,0,2.86317 -84724,5115:209:1,-159,-10,0,0,2.53735 -84725,5115:208:2,-158.5,-10,0,0,2.48591 -84726,5115:208:1,-158,-10,0,0,2.62382 -84727,5115:207:2,-157.5,-10,0,0,2.71845 -84728,5115:207:1,-157,-10,0,0,2.66585 -84729,5115:206:2,-156.5,-10,0,0,2.56794 -84730,5115:206:1,-156,-10,0,0,2.5298 -84731,5115:205:2,-155.5,-10,0,0,2.69182 -84732,5115:205:1,-155,-10,0,0,3.38202 -84733,5115:104:2,-154.5,-10,0,0,4.74666 -84734,5115:104:1,-154,-10,0,0,6.49793 -84735,5115:103:2,-153.5,-10,0,0,9.06305 -84736,5115:103:1,-153,-10,0,0,20.7737 -84737,5115:102:2,-152.5,-10,0,0,204.138 -84738,5115:102:1,-152,-10,0,0,-94.5052 -84739,5115:101:2,-151.5,-10,0,0,-17.0994 -84740,5115:101:1,-151,-10,0,0,-8.21955 -84741,5115:100:2,-150.5,-10,0,0,-6.20082 -84742,5115:100:1,-150,-10,0,0,-6.0316 -84743,5114:209:2,-149.5,-10,0,0,-5.64612 -84744,5114:209:1,-149,-10,0,0,-3.92893 -84745,5114:208:2,-148.5,-10,0,0,-2.71427 -84746,5114:208:1,-148,-10,0,0,-2.39955 -84747,5114:207:2,-147.5,-10,0,0,-1.82355 -84748,5114:207:1,-147,-10,0,0,-1.4654 -84749,5114:206:2,-146.5,-10,0,0,-1.17749 -84750,5114:206:1,-146,-10,0,0,-1.23387 -84751,5114:205:2,-145.5,-10,0,0,-1.24466 -84752,5114:205:1,-145,-10,0,0,-0.971963 -84753,5114:104:2,-144.5,-10,0,0,-0.833119 -84754,5114:104:1,-144,-10,0,0,-0.731661 -84755,5114:103:2,-143.5,-10,0,0,-0.696742 -84756,5114:103:1,-143,-10,0,0,-0.595811 -84757,5114:102:2,-142.5,-10,0,0,-0.553371 -84758,5114:102:1,-142,-10,0,0,-0.546016 -84759,5114:101:2,-141.5,-10,0,0,-0.527666 -84760,5114:101:1,-141,-10,0,0,-0.473033 -84761,5114:100:2,-140.5,-10,0,0,-0.429383 -84762,5114:100:1,-140,-10,0,0,-0.424126 -84763,5113:209:2,-139.5,-10,0,0,-0.41967 -84764,5113:209:1,-139,-10,0,0,-0.402483 -84765,5113:208:2,-138.5,-10,0,0,-0.353067 -84766,5113:208:1,-138,-10,0,0,-0.325569 -84767,5113:207:2,-137.5,-10,0,0,-0.3177 -84768,5113:207:1,-137,-10,0,0,-0.300217 -84769,5113:206:2,-136.5,-10,0,0,-0.265317 -84770,5113:206:1,-136,-10,0,0,-0.247798 -84771,5113:205:2,-135.5,-10,0,0,-0.234138 -84772,5113:205:1,-135,-10,0,0,-0.213986 -84773,5113:104:2,-134.5,-10,0,0,-0.205216 -84774,5113:104:1,-134,-10,0,0,-0.200632 -84775,5113:103:2,-133.5,-10,0,0,-0.198646 -84776,5113:103:1,-133,-10,0,0,-0.196849 -84777,5113:102:2,-132.5,-10,0,0,-0.19387 -84778,5113:102:1,-132,-10,0,0,-0.192584 -84779,5113:101:2,-131.5,-10,0,0,-0.191449 -84780,5113:101:1,-131,-10,0,0,-0.187727 -84781,5113:100:2,-130.5,-10,0,0,-0.185611 -84782,5113:100:1,-130,-10,0,0,-0.187937 -84783,5112:209:2,-129.5,-10,0,0,-0.186678 -84784,5112:209:1,-129,-10,0,0,-0.184524 -84785,5112:208:2,-128.5,-10,0,0,-0.181943 -84786,5112:208:1,-128,-10,0,0,-0.179827 -84787,5112:207:2,-127.5,-10,0,0,-0.176314 -84788,5112:207:1,-127,-10,0,0,-0.176021 -84789,5112:206:2,-126.5,-10,0,0,-0.177493 -84790,5112:206:1,-126,-10,0,0,-0.175973 -84791,5112:205:2,-125.5,-10,0,0,-0.171145 -84792,5112:205:1,-125,-10,0,0,-0.16971 -84793,5112:104:2,-124.5,-10,0,0,-0.170109 -84794,5112:104:1,-124,-10,0,0,-0.169804 -84795,5112:103:2,-123.5,-10,0,0,-0.167665 -84796,5112:103:1,-123,-10,0,0,-0.164558 -84797,5112:102:2,-122.5,-10,0,0,-0.161142 -84798,5112:102:1,-122,-10,0,0,-0.158779 -84799,5112:101:2,-121.5,-10,0,0,-0.157462 -84800,5112:101:1,-121,-10,0,0,-0.155945 -84801,5112:100:2,-120.5,-10,0,0,-0.154191 -84802,5112:100:1,-120,-10,0,0,-0.151944 -84803,5111:209:2,-119.5,-10,0,0,-0.150834 -84804,5111:209:1,-119,-10,0,0,-0.150221 -84805,5111:208:2,-118.5,-10,0,0,-0.147759 -84806,5111:208:1,-118,-10,0,0,-0.145557 -84807,5111:207:2,-117.5,-10,0,0,-0.144052 -84808,5111:207:1,-117,-10,0,0,-0.141665 -84809,5111:206:2,-116.5,-10,0,0,-0.139791 -84810,5111:206:1,-116,-10,0,0,-0.138327 -84811,5111:205:2,-115.5,-10,0,0,-0.136221 -84812,5111:205:1,-115,-10,0,0,-0.13605 -84813,5111:104:2,-114.5,-10,0,0,-0.13605 -84814,5111:104:1,-114,-10,0,0,-0.13605 -84815,5111:103:2,-113.5,-10,0,0,-0.13605 -84816,5111:103:1,-113,-10,0,0,-0.13605 -84817,5111:102:2,-112.5,-10,0,0,-0.13605 -84818,5111:102:1,-112,-10,0,0,-0.13605 -84819,5111:101:2,-111.5,-10,0,0,-0.13605 -84820,5111:101:1,-111,-10,0,0,-0.13605 -84821,5111:100:2,-110.5,-10,0,0,-0.13605 -84822,5111:100:1,-110,-10,0,0,-0.13605 -84823,5110:209:2,-109.5,-10,0,0,-0.13605 -84824,5110:209:1,-109,-10,0,0,-0.13605 -84825,5110:208:2,-108.5,-10,0,0,-0.13605 -84826,5110:208:1,-108,-10,0,0,-0.13605 -84827,5110:207:2,-107.5,-10,0,0,-0.13605 -84828,5110:207:1,-107,-10,0,0,-0.13605 -84829,5110:206:2,-106.5,-10,0,0,-0.13605 -84830,5110:206:1,-106,-10,0,0,-0.13605 -84831,5110:205:2,-105.5,-10,0,0,-0.13605 -84832,5110:205:1,-105,-10,0,0,-0.13605 -84833,5110:104:2,-104.5,-10,0,0,-0.13605 -84834,5110:104:1,-104,-10,0,0,-0.13605 -84835,5110:103:2,-103.5,-10,0,0,-0.13605 -84836,5110:103:1,-103,-10,0,0,-0.13605 -84837,5110:102:2,-102.5,-10,0,0,-0.13605 -84838,5110:102:1,-102,-10,0,0,-0.13605 -84839,5110:101:2,-101.5,-10,0,0,-0.13605 -84840,5110:101:1,-101,-10,0,0,-0.13605 -84841,5110:100:2,-100.5,-10,0,0,-0.13605 -84842,5110:100:1,-100,-10,0,0,-0.13605 -84843,5109:209:2,-99.5,-10,0,0,-0.13605 -84844,5109:209:1,-99,-10,0,0,-0.13605 -84845,5109:208:2,-98.5,-10,0,0,-0.13605 -84846,5109:208:1,-98,-10,0,0,-0.13605 -84847,5109:207:2,-97.5,-10,0,0,-0.13605 -84848,5109:207:1,-97,-10,0,0,-0.13605 -84849,5109:206:2,-96.5,-10,0,0,-0.13605 -84850,5109:206:1,-96,-10,0,0,-0.13605 -84851,5109:205:2,-95.5,-10,0,0,-0.13605 -84852,5109:205:1,-95,-10,0,0,-0.13605 -84853,5109:104:2,-94.5,-10,0,0,-0.13605 -84854,5109:104:1,-94,-10,0,0,-0.13605 -84855,5109:103:2,-93.5,-10,0,0,-0.13605 -84856,5109:103:1,-93,-10,0,0,-0.13605 -84857,5109:102:2,-92.5,-10,0,0,-0.13605 -84858,5109:102:1,-92,-10,0,0,-0.13605 -84859,5109:101:2,-91.5,-10,0,0,-0.13605 -84860,5109:101:1,-91,-10,0,0,-0.13605 -84861,5109:100:2,-90.5,-10,0,0,-0.13605 -84862,5109:100:1,-90,-10,0,0,-0.13605 -84863,5108:209:2,-89.5,-10,0,0,-0.13605 -84864,5108:209:1,-89,-10,0,0,-0.13605 -84865,5108:208:2,-88.5,-10,0,0,-0.13605 -84866,5108:208:1,-88,-10,0,0,-0.13605 -84867,5108:207:2,-87.5,-10,0,0,-0.13605 -84868,5108:207:1,-87,-10,0,0,-0.13605 -84869,5108:206:2,-86.5,-10,0,0,-0.13605 -84870,5108:206:1,-86,-10,0,0,-0.13605 -84871,5108:205:2,-85.5,-10,0,0,-0.13605 -84872,5108:205:1,-85,-10,0,0,-0.13605 -84873,5108:104:2,-84.5,-10,0,0,-0.13605 -84874,5108:104:1,-84,-10,0,0,-0.13605 -84875,5108:103:2,-83.5,-10,0,0,-0.13605 -84876,5108:103:1,-83,-10,0,0,-0.13605 -84877,5108:102:2,-82.5,-10,0,0,-0.13605 -84878,5108:102:1,-82,-10,0,0,-0.13605 -84879,5108:101:2,-81.5,-10,0,0,-0.13605 -84880,5108:101:1,-81,-10,0,0,-0.13605 -84881,5108:100:2,-80.5,-10,0,0,-0.13605 -84882,5108:100:1,-80,-10,0,0,-0.13605 -84883,5107:209:2,-79.5,-10,0,0,-0.13605 -84884,5107:209:1,-79,-10,0,0,-0.13605 -84885,5107:208:2,-78.5,-10,0,0,-0.13605 -84886,5107:208:1,-78,-10,0,0,-0.13605 -84887,5107:207:2,-77.5,-10,0,0,-0.13605 -84888,5103:207:2,-37.5,-10,0,0,-0.179652 -84889,5103:207:1,-37,-10,0,0,-0.181058 -84890,5103:206:2,-36.5,-10,0,0,-0.180781 -84891,5103:206:1,-36,-10,0,0,-0.179777 -84892,5103:205:2,-35.5,-10,0,0,-0.177001 -84893,5103:205:1,-35,-10,0,0,-0.177074 -84894,5103:104:2,-34.5,-10,0,0,-0.175437 -84895,5103:104:1,-34,-10,0,0,-0.174177 -84896,5103:103:2,-33.5,-10,0,0,-0.172118 -84897,5103:103:1,-33,-10,0,0,-0.170697 -84898,5103:102:2,-32.5,-10,0,0,-0.169664 -84899,5103:102:1,-32,-10,0,0,-0.168823 -84900,5103:101:2,-31.5,-10,0,0,-0.166515 -84901,5103:101:1,-31,-10,0,0,-0.163815 -84902,5103:100:2,-30.5,-10,0,0,-0.163927 -84903,5103:100:1,-30,-10,0,0,-0.16185 -84904,5102:209:2,-29.5,-10,0,0,-0.159803 -84905,5102:209:1,-29,-10,0,0,-0.157957 -84906,5102:208:2,-28.5,-10,0,0,-0.156327 -84907,5102:208:1,-28,-10,0,0,-0.154549 -84908,5102:207:2,-27.5,-10,0,0,-0.15242 -84909,5102:207:1,-27,-10,0,0,-0.150915 -84910,5102:206:2,-26.5,-10,0,0,-0.149733 -84911,5102:206:1,-26,-10,0,0,-0.14828 -84912,5102:205:2,-25.5,-10,0,0,-0.146465 -84913,5102:205:1,-25,-10,0,0,-0.146346 -84914,5102:104:2,-24.5,-10,0,0,-0.14413 -84915,5102:104:1,-24,-10,0,0,-0.142085 -84916,5102:103:2,-23.5,-10,0,0,-0.141684 -84917,5102:103:1,-23,-10,0,0,-0.141589 -84918,5102:102:2,-22.5,-10,0,0,-0.139088 -84919,5102:102:1,-22,-10,0,0,-0.138176 -84920,5102:101:2,-21.5,-10,0,0,-0.137337 -84921,5102:101:1,-21,-10,0,0,-0.136054 -84922,5102:100:2,-20.5,-10,0,0,-0.13605 -84923,5102:100:1,-20,-10,0,0,-0.13605 -84924,5101:209:2,-19.5,-10,0,0,-0.13605 -84925,5101:209:1,-19,-10,0,0,-0.13605 -84926,5101:208:2,-18.5,-10,0,0,-0.13605 -84927,5101:208:1,-18,-10,0,0,-0.13605 -84928,5101:207:2,-17.5,-10,0,0,-0.13605 -84929,5101:207:1,-17,-10,0,0,-0.13605 -84930,5101:206:2,-16.5,-10,0,0,-0.13605 -84931,5101:206:1,-16,-10,0,0,-0.13605 -84932,5101:205:2,-15.5,-10,0,0,-0.13605 -84933,5101:205:1,-15,-10,0,0,-0.13605 -84934,5101:104:2,-14.5,-10,0,0,-0.13605 -84935,5101:104:1,-14,-10,0,0,-0.13605 -84936,5101:103:2,-13.5,-10,0,0,-0.13605 -84937,5101:103:1,-13,-10,0,0,-0.13605 -84938,5101:102:2,-12.5,-10,0,0,-0.13605 -84939,5101:102:1,-12,-10,0,0,-0.13605 -84940,5101:101:2,-11.5,-10,0,0,-0.13605 -84941,5101:101:1,-11,-10,0,0,-0.13605 -84942,5101:100:2,-10.5,-10,0,0,-0.13605 -84943,5101:100:1,-10,-10,0,0,-0.13605 -84944,5100:209:2,-9.5,-10,0,0,-0.13605 -84945,5100:209:1,-9,-10,0,0,-0.13605 -84946,5100:208:2,-8.5,-10,0,0,-0.13605 -84947,5100:208:1,-8,-10,0,0,-0.13605 -84948,5100:207:2,-7.5,-10,0,0,-0.13605 -84949,5100:207:1,-7,-10,0,0,-0.13605 -84950,5100:206:2,-6.5,-10,0,0,-0.13605 -84951,5100:206:1,-6,-10,0,0,-0.13605 -84952,5100:205:2,-5.5,-10,0,0,-0.13605 -84953,5100:205:1,-5,-10,0,0,-0.13605 -84954,5100:104:2,-4.5,-10,0,0,-0.13605 -84955,5100:104:1,-4,-10,0,0,-0.13605 -84956,5100:103:2,-3.5,-10,0,0,-0.13605 -84957,5100:103:1,-3,-10,0,0,-0.13605 -84958,5100:102:2,-2.5,-10,0,0,-0.13605 -84959,5100:102:1,-2,-10,0,0,-0.13605 -84960,5100:101:2,-1.5,-10,0,0,-0.13605 -84961,5100:101:1,-1,-10,0,0,-0.13605 -84962,5100:100:2,-0.5,-10,0,0,-0.13605 -84963,3100:100:2,0,-10,0,0,-0.13605 -84964,3100:100:2,0.5,-10,0,0,-0.13605 -84965,3100:101:1,1,-10,0,0,-0.13605 -84966,3100:101:2,1.5,-10,0,0,-0.13605 -84967,3100:102:1,2,-10,0,0,-0.13605 -84968,3100:102:2,2.5,-10,0,0,-0.13605 -84969,3100:103:1,3,-10,0,0,-0.13605 -84970,3100:103:2,3.5,-10,0,0,-0.13605 -84971,3100:104:1,4,-10,0,0,-0.13605 -84972,3100:104:2,4.5,-10,0,0,-0.13605 -84973,3100:205:1,5,-10,0,0,-0.13605 -84974,3100:205:2,5.5,-10,0,0,-0.13605 -84975,3100:206:1,6,-10,0,0,-0.13605 -84976,3100:206:2,6.5,-10,0,0,-0.13605 -84977,3100:207:1,7,-10,0,0,-0.13605 -84978,3100:207:2,7.5,-10,0,0,-0.13605 -84979,3100:208:1,8,-10,0,0,-0.13605 -84980,3100:208:2,8.5,-10,0,0,-0.137689 -84981,3100:209:1,9,-10,0,0,-0.144539 -84982,3100:209:2,9.5,-10,0,0,-0.148863 -84983,3101:100:1,10,-10,0,0,-0.153814 -84984,3101:100:2,10.5,-10,0,0,-0.157312 -84985,3101:101:1,11,-10,0,0,-0.161628 -84986,3101:101:2,11.5,-10,0,0,-0.165465 -84987,3101:102:1,12,-10,0,0,-0.16404 -84988,3101:102:2,12.5,-10,0,0,-0.156669 -84989,3101:103:1,13,-10,0,0,-0.138462 -84990,3101:103:2,13.5,-10,0,0,-0.13605 -84991,3104:100:2,40.5,-10,0,0,22.5078 -84992,3104:101:1,41,-10,0,0,-3.01284 -84993,3104:101:2,41.5,-10,0,0,-1.61649 -84994,3104:102:1,42,-10,0,0,-1.09774 -84995,3104:102:2,42.5,-10,0,0,-0.761432 -84996,3104:103:2,43.5,-10,0,0,-1.34191 -84997,3104:104:1,44,-10,0,0,-0.710385 -84998,3104:104:2,44.5,-10,0,0,-0.608949 -84999,3104:205:1,45,-10,0,0,-0.406704 -85000,3104:205:2,45.5,-10,0,0,-0.337569 -85001,3104:206:1,46,-10,0,0,-0.296855 -85002,3104:206:2,46.5,-10,0,0,-0.28166 -85003,3104:207:1,47,-10,0,0,-0.262425 -85004,3104:207:2,47.5,-10,0,0,-0.243267 -85005,3104:208:1,48,-10,0,0,-0.210724 -85006,3104:208:2,48.5,-10,0,0,-0.196407 -85007,3104:209:1,49,-10,0,0,-0.193565 -85008,3104:209:2,49.5,-10,0,0,-0.195528 -85009,3105:100:1,50,-10,0,0,-0.196761 -85010,3105:100:2,50.5,-10,0,0,-0.201314 -85011,3105:101:1,51,-10,0,0,-0.223755 -85012,3105:101:2,51.5,-10,0,0,-0.260399 -85013,3105:102:1,52,-10,0,0,-0.286168 -85014,3105:102:2,52.5,-10,0,0,-0.289367 -85015,3105:103:1,53,-10,0,0,-0.273767 -85016,3105:103:2,53.5,-10,0,0,-0.282998 -85017,3105:104:1,54,-10,0,0,-0.312065 -85018,3105:104:2,54.5,-10,0,0,-0.351881 -85019,3105:205:1,55,-10,0,0,-0.392865 -85020,3105:205:2,55.5,-10,0,0,-0.427882 -85021,3105:206:1,56,-10,0,0,-0.445696 -85022,3105:206:2,56.5,-10,0,0,-0.457032 -85023,3105:207:1,57,-10,0,0,-0.448109 -85024,3105:207:2,57.5,-10,0,0,-0.423375 -85025,3105:208:1,58,-10,0,0,-0.385527 -85026,3105:208:2,58.5,-10,0,0,-0.347221 -85027,3105:209:1,59,-10,0,0,-0.3177 -85028,3105:209:2,59.5,-10,0,0,-0.293554 -85029,3106:100:1,60,-10,0,0,-0.262425 -85030,3106:100:2,60.5,-10,0,0,-0.227466 -85031,3106:101:1,61,-10,0,0,-0.204639 -85032,3106:101:2,61.5,-10,0,0,-0.196628 -85033,3106:102:1,62,-10,0,0,-0.19509 -85034,3106:102:2,62.5,-10,0,0,-0.19654 -85035,3106:103:1,63,-10,0,0,-0.203129 -85036,3106:103:2,63.5,-10,0,0,-0.224738 -85037,3106:104:1,64,-10,0,0,-0.250876 -85038,3106:104:2,64.5,-10,0,0,-0.283903 -85039,3106:205:1,65,-10,0,0,-0.318205 -85040,3106:205:2,65.5,-10,0,0,-0.351881 -85041,3106:206:1,66,-10,0,0,-0.376422 -85042,3106:206:2,66.5,-10,0,0,-0.397647 -85043,3106:207:1,67,-10,0,0,-0.414566 -85044,3106:207:2,67.5,-10,0,0,-0.425609 -85045,3106:208:1,68,-10,0,0,-0.430914 -85046,3106:208:2,68.5,-10,0,0,-0.431682 -85047,3106:209:1,69,-10,0,0,-0.426365 -85048,3106:209:2,69.5,-10,0,0,-0.421156 -85049,3107:100:1,70,-10,0,0,-0.413838 -85050,3107:100:2,70.5,-10,0,0,-0.407395 -85051,3107:101:1,71,-10,0,0,-0.412407 -85052,3107:101:2,71.5,-10,0,0,-0.418952 -85053,3107:102:1,72,-10,0,0,-0.428643 -85054,3107:102:2,72.5,-10,0,0,-0.434748 -85055,3107:103:2,73.5,-10,0,0,-0.421902 -85056,3107:104:1,74,-10,0,0,-0.391527 -85057,3107:104:2,74.5,-10,0,0,-0.361458 -85058,3107:205:1,75,-10,0,0,-0.340944 -85059,3107:205:2,75.5,-10,0,0,-0.3177 -85060,3107:206:1,76,-10,0,0,-0.297815 -85061,3107:206:2,76.5,-10,0,0,-0.273767 -85062,3107:207:1,77,-10,0,0,-0.250485 -85063,3107:207:2,77.5,-10,0,0,-0.229551 -85064,3107:208:1,78,-10,0,0,-0.20841 -85065,3107:208:2,78.5,-10,0,0,-0.197825 -85066,3107:209:1,79,-10,0,0,-0.194654 -85067,3107:209:2,79.5,-10,0,0,-0.192313 -85068,3108:100:1,80,-10,0,0,-0.190484 -85069,3108:100:2,80.5,-10,0,0,-0.188729 -85070,3108:101:1,81,-10,0,0,-0.187202 -85071,3108:101:2,81.5,-10,0,0,-0.185689 -85072,3108:102:1,82,-10,0,0,-0.184062 -85073,3108:102:2,82.5,-10,0,0,-0.182476 -85074,3108:103:1,83,-10,0,0,-0.180882 -85075,3108:103:2,83.5,-10,0,0,-0.179527 -85076,3108:104:1,84,-10,0,0,-0.178333 -85077,3108:104:2,84.5,-10,0,0,-0.177099 -85078,3108:205:1,85,-10,0,0,-0.175973 -85079,3108:205:2,85.5,-10,0,0,-0.175145 -85080,3108:206:1,86,-10,0,0,-0.174516 -85081,3108:206:2,86.5,-10,0,0,-0.174153 -85082,3108:207:1,87,-10,0,0,-0.173985 -85083,3108:207:2,87.5,-10,0,0,-0.173816 -85084,3108:208:1,88,-10,0,0,-0.173479 -85085,3108:208:2,88.5,-10,0,0,-0.172976 -85086,3108:209:1,89,-10,0,0,-0.172403 -85087,3108:209:2,89.5,-10,0,0,-0.172023 -85088,3109:100:1,90,-10,0,0,-0.17188 -85089,3109:100:2,90.5,-10,0,0,-0.17207 -85090,3109:101:1,91,-10,0,0,-0.172929 -85091,3109:101:2,91.5,-10,0,0,-0.174516 -85092,3109:102:1,92,-10,0,0,-0.176266 -85093,3109:102:2,92.5,-10,0,0,-0.177666 -85094,3109:103:1,93,-10,0,0,-0.17816 -85095,3109:103:2,93.5,-10,0,0,-0.178011 -85096,3109:104:1,94,-10,0,0,-0.177099 -85097,3109:104:2,94.5,-10,0,0,-0.175899 -85098,3109:205:1,95,-10,0,0,-0.174709 -85099,3109:205:2,95.5,-10,0,0,-0.173695 -85100,3109:206:1,96,-10,0,0,-0.172785 -85101,3109:206:2,96.5,-10,0,0,-0.17188 -85102,3109:207:1,97,-10,0,0,-0.170909 -85103,3109:207:2,97.5,-10,0,0,-0.170109 -85104,3109:208:1,98,-10,0,0,-0.16971 -85105,3109:208:2,98.5,-10,0,0,-0.170015 -85106,3109:209:1,99,-10,0,0,-0.17124 -85107,3109:209:2,99.5,-10,0,0,-0.173576 -85108,3110:100:1,100,-10,0,0,-0.177197 -85109,3110:100:2,100.5,-10,0,0,-0.181689 -85110,3110:101:1,101,-10,0,0,-0.185196 -85111,3110:101:2,101.5,-10,0,0,-0.18728 -85112,3110:102:1,102,-10,0,0,-0.188385 -85113,3110:102:2,102.5,-10,0,0,-0.188333 -85114,3110:103:1,103,-10,0,0,-0.188729 -85115,3110:103:2,103.5,-10,0,0,-0.189472 -85116,3110:104:1,104,-10,0,0,-0.190993 -85117,3110:104:2,104.5,-10,0,0,-0.192773 -85118,3110:205:1,105,-10,0,0,-0.19387 -85119,3110:205:2,105.5,-10,0,0,-0.192854 -85120,3110:206:1,106,-10,0,0,-0.191396 -85121,3110:206:2,106.5,-10,0,0,-0.190698 -85122,3110:207:1,107,-10,0,0,-0.191369 -85123,3110:207:2,107.5,-10,0,0,-0.198092 -85124,3110:208:1,108,-10,0,0,-0.327709 -85125,3110:208:2,108.5,-10,0,0,-0.612584 -85126,3110:209:1,109,-10,0,0,-0.968247 -85127,3110:209:2,109.5,-10,0,0,-0.957335 -85128,3111:100:1,110,-10,0,0,-0.911966 -85129,3111:100:2,110.5,-10,0,0,-1.27195 -85130,3111:101:1,111,-10,0,0,-1.82355 -85131,3111:101:2,111.5,-10,0,0,-4.04367 -85132,3111:102:1,112,-10,0,0,-1157.87 -85133,3111:102:2,112.5,-10,0,0,6.17353 -85134,3111:103:1,113,-10,0,0,3.51269 -85135,3111:103:2,113.5,-10,0,0,2.55241 -85136,3111:104:1,114,-10,0,0,2.00964 -85137,3111:104:2,114.5,-10,0,0,1.71412 -85138,3111:205:1,115,-10,0,0,1.63967 -85139,3111:205:2,115.5,-10,0,0,1.5653 -85140,3111:206:1,116,-10,0,0,1.52934 -85141,3111:206:2,116.5,-10,0,0,1.52314 -85142,3111:207:1,117,-10,0,0,1.5216 -85143,3111:207:2,117.5,-10,0,0,1.52314 -85144,3111:208:1,118,-10,0,0,1.52621 -85145,3111:208:2,118.5,-10,0,0,1.51852 -85146,3111:209:1,119,-10,0,0,1.53092 -85147,3111:209:2,119.5,-10,0,0,1.57218 -85148,3112:100:1,120,-10,0,0,1.62772 -85149,3112:100:2,120.5,-10,0,0,1.64784 -85150,3112:101:1,121,-10,0,0,1.59724 -85151,3112:101:2,121.5,-10,0,0,1.53404 -85152,3112:102:1,122,-10,0,0,1.38868 -85153,3112:102:2,122.5,-10,0,0,1.29678 -85154,3112:103:1,123,-10,0,0,1.33036 -85155,3112:103:2,123.5,-10,0,0,1.48093 -85156,3112:104:1,124,-10,0,0,1.4205 -85157,3112:104:2,124.5,-10,0,0,1.28564 -85158,3112:205:1,125,-10,0,0,1.25787 -85159,3112:205:2,125.5,-10,0,0,1.19451 -85160,3112:206:1,126,-10,0,0,1.17931 -85161,3112:206:2,126.5,-10,0,0,1.17129 -85162,3112:207:1,127,-10,0,0,1.164 -85163,3112:207:2,127.5,-10,0,0,1.14885 -85164,3112:208:1,128,-10,0,0,1.13869 -85165,3112:208:2,128.5,-10,0,0,1.13461 -85166,3112:209:1,129,-10,0,0,1.11971 -85167,3112:209:2,129.5,-10,0,0,1.10751 -85168,3113:100:1,130,-10,0,0,1.08408 -85169,3113:102:1,132,-10,0,0,1.05394 -85170,3113:102:2,132.5,-10,0,0,1.05394 -85171,3113:103:2,133.5,-10,0,0,1.06076 -85172,3113:104:1,134,-10,0,0,1.07129 -85173,3113:104:2,134.5,-10,0,0,1.08619 -85174,3113:205:1,135,-10,0,0,1.10136 -85175,3113:205:2,135.5,-10,0,0,1.12352 -85176,3113:206:1,136,-10,0,0,1.13092 -85177,3113:206:2,136.5,-10,0,0,1.15163 -85178,3113:207:1,137,-10,0,0,1.17265 -85179,3113:207:2,137.5,-10,0,0,1.26886 -85180,3113:208:1,138,-10,0,0,3.39778 -85181,3113:208:2,138.5,-10,0,0,11.3991 -85182,3113:209:1,139,-10,0,0,5.51842 -85183,3113:209:2,139.5,-10,0,0,2.62382 -85184,3114:100:1,140,-10,0,0,1.88526 -85185,3114:100:2,140.5,-10,0,0,1.65622 -85186,3114:101:1,141,-10,0,0,1.42514 -85187,3114:101:2,141.5,-10,0,0,1.2765 -85188,3114:102:1,142,-10,0,0,1.27412 -85189,3114:103:2,143.5,-10,0,0,-13.7131 -85190,3114:104:1,144,-10,0,0,-0.568523 -85191,3114:104:2,144.5,-10,0,0,-0.220827 -85192,3114:205:1,145,-10,0,0,-0.334236 -85193,3114:205:2,145.5,-10,0,0,-0.384201 -85194,3114:206:1,146,-10,0,0,-0.407395 -85195,3114:206:2,146.5,-10,0,0,-0.392865 -85196,3114:207:1,147,-10,0,0,-0.296391 -85197,3114:207:2,147.5,-10,0,0,-0.261205 -85198,3114:208:1,148,-10,0,0,-0.282109 -85199,3114:208:2,148.5,-10,0,0,-0.313582 -85200,3114:209:1,149,-10,0,0,-0.377068 -85201,3114:209:2,149.5,-10,0,0,-0.432428 -85202,3115:100:1,150,-10,0,0,-0.482617 -85203,3115:100:2,150.5,-10,0,0,-0.77181 -85204,3115:101:1,151,-10,0,0,-1.5157 -85205,3115:101:2,151.5,-10,0,0,-2.15513 -85206,3115:102:1,152,-10,0,0,-3.74949 -85207,3115:102:2,152.5,-10,0,0,-7.93871 -85208,3115:103:1,153,-10,0,0,-3.23664 -85209,3115:103:2,153.5,-10,0,0,-1.08443 -85210,3115:104:1,154,-10,0,0,-1.96078 -85211,3115:104:2,154.5,-10,0,0,21.6052 -85212,3115:205:1,155,-10,0,0,5.9932 -85213,3115:205:2,155.5,-10,0,0,4.01092 -85214,3115:206:1,156,-10,0,0,5.28863 -85215,3115:206:2,156.5,-10,0,0,10.7552 -85216,3115:207:1,157,-10,0,0,69.1201 -85217,3115:207:2,157.5,-10,0,0,-150.165 -85218,3115:208:1,158,-10,0,0,-24.8111 -85219,3115:208:2,158.5,-10,0,0,-10.6543 -85220,3115:209:1,159,-10,0,0,-5.64612 -85221,3115:209:2,159.5,-10,0,0,-2.65712 -85222,3116:100:1,160,-10,0,0,-1.1202 -85223,3116:101:1,161,-10,0,0,-0.649471 -85224,3116:101:2,161.5,-10,0,0,-0.702616 -85225,3116:102:1,162,-10,0,0,-0.683766 -85226,3116:102:2,162.5,-10,0,0,-0.699648 -85227,3116:103:1,163,-10,0,0,-0.722482 -85228,3116:103:2,163.5,-10,0,0,-0.754919 -85229,3116:104:1,164,-10,0,0,-0.801619 -85230,3116:104:2,164.5,-10,0,0,-0.830247 -85231,3116:205:1,165,-10,0,0,-0.833119 -85232,3116:205:2,165.5,-10,0,0,-0.830247 -85233,3116:206:1,166,-10,0,0,-0.807263 -85234,3116:206:2,166.5,-10,0,0,-0.818638 -85235,3116:207:1,167,-10,0,0,-0.892054 -85236,3116:207:2,167.5,-10,0,0,-0.953703 -85237,3116:208:1,168,-10,0,0,-1.02191 -85238,3116:208:2,168.5,-10,0,0,-1.09328 -85239,3116:209:1,169,-10,0,0,-1.12949 -85240,3116:209:2,169.5,-10,0,0,-1.09774 -85241,3117:100:1,170,-10,0,0,-1.02987 -85242,3117:100:2,170.5,-10,0,0,-0.939481 -85243,3117:101:1,171,-10,0,0,-0.842097 -85244,3117:101:2,171.5,-10,0,0,-0.748484 -85245,3117:102:1,172,-10,0,0,-0.679488 -85246,3117:102:2,172.5,-10,0,0,-0.602932 -85247,3117:103:1,173,-10,0,0,-0.531667 -85248,3117:103:2,173.5,-10,0,0,-0.482617 -85249,3117:104:1,174,-10,0,0,-0.452939 -85250,3117:104:2,174.5,-10,0,0,-0.448918 -85251,3117:205:1,175,-10,0,0,-0.459501 -85252,3117:205:2,175.5,-10,0,0,-0.455404 -85253,3117:206:1,176,-10,0,0,-0.452939 -85254,3117:206:2,176.5,-10,0,0,-0.464518 -85255,3117:207:1,177,-10,0,0,-0.476491 -85256,3117:207:2,177.5,-10,0,0,-0.4791 -85257,3117:208:1,178,-10,0,0,-0.473901 -85258,3117:208:2,178.5,-10,0,0,-0.464518 -85259,3117:209:1,179,-10,0,0,-0.473033 -85260,3117:209:2,179.5,-10,0,0,-0.49796 -85261,3118:100:1,180,-10,0,0,-0.53571 -85262,5018:390:3,-180,-9.5,0,0,-0.863412 -85263,5017:499:4,-179.5,-9.5,0,0,-1.00224 -85264,5017:499:3,-179,-9.5,0,0,-1.23387 -85265,5017:498:4,-178.5,-9.5,0,0,-1.65796 -85266,5017:498:3,-178,-9.5,0,0,-2.26457 -85267,5017:497:4,-177.5,-9.5,0,0,-3.34562 -85268,5017:497:3,-177,-9.5,0,0,-6.66212 -85269,5017:496:4,-176.5,-9.5,0,0,-60.8518 -85270,5017:496:3,-176,-9.5,0,0,11.3991 -85271,5017:495:4,-175.5,-9.5,0,0,6.29856 -85272,5017:495:3,-175,-9.5,0,0,5.16119 -85273,5017:394:4,-174.5,-9.5,0,0,4.64544 -85274,5017:394:3,-174,-9.5,0,0,4.54994 -85275,5017:393:4,-173.5,-9.5,0,0,4.67863 -85276,5017:393:3,-173,-9.5,0,0,5.08039 -85277,5017:392:4,-172.5,-9.5,0,0,6.17353 -85278,5017:392:3,-172,-9.5,0,0,8.66099 -85279,5017:391:4,-171.5,-9.5,0,0,10.3629 -85280,5017:391:3,-171,-9.5,0,0,7.85456 -85281,5017:390:4,-170.5,-9.5,0,0,6.05201 -85282,5017:390:3,-170,-9.5,0,0,5.66824 -85283,5016:499:4,-169.5,-9.5,0,0,5.3785 -85284,5016:499:3,-169,-9.5,0,0,4.88857 -85285,5016:498:4,-168.5,-9.5,0,0,4.23446 -85286,5016:498:3,-168,-9.5,0,0,3.92017 -85287,5016:497:4,-167.5,-9.5,0,0,3.8131 -85288,5016:497:3,-167,-9.5,0,0,3.59998 -85289,5016:496:4,-166.5,-9.5,0,0,2.94863 -85290,5016:496:3,-166,-9.5,0,0,2.8029 -85291,5016:495:4,-165.5,-9.5,0,0,2.55241 -85292,5016:495:3,-165,-9.5,0,0,2.41717 -85293,5016:394:4,-164.5,-9.5,0,0,2.23865 -85294,5016:394:3,-164,-9.5,0,0,2.11982 -85295,5016:393:4,-163.5,-9.5,0,0,2.05003 -85296,5016:393:3,-163,-9.5,0,0,1.9865 -85297,5016:392:4,-162.5,-9.5,0,0,1.96058 -85298,5016:392:3,-162,-9.5,0,0,1.90831 -85299,5016:391:4,-161.5,-9.5,0,0,1.86935 -85300,5016:391:3,-161,-9.5,0,0,1.86629 -85301,5016:390:4,-160.5,-9.5,0,0,1.88526 -85302,5016:390:3,-160,-9.5,0,0,2.04171 -85303,5015:499:4,-159.5,-9.5,0,0,2.2495 -85304,5015:499:3,-159,-9.5,0,0,2.27149 -85305,5015:498:4,-158.5,-9.5,0,0,2.16718 -85306,5015:498:3,-158,-9.5,0,0,2.10173 -85307,5015:497:4,-157.5,-9.5,0,0,2.11982 -85308,5015:497:3,-157,-9.5,0,0,2.20209 -85309,5015:496:4,-156.5,-9.5,0,0,2.31142 -85310,5015:496:3,-156,-9.5,0,0,2.48591 -85311,5015:495:4,-155.5,-9.5,0,0,2.88378 -85312,5015:495:3,-155,-9.5,0,0,3.65558 -85313,5015:394:4,-154.5,-9.5,0,0,4.71237 -85314,5015:394:3,-154,-9.5,0,0,5.9932 -85315,5015:393:4,-153.5,-9.5,0,0,7.36886 -85316,5015:393:3,-153,-9.5,0,0,11.6346 -85317,5015:392:4,-152.5,-9.5,0,0,61.0431 -85318,5015:392:3,-152,-9.5,0,0,-38.0195 -85319,5015:391:4,-151.5,-9.5,0,0,-12.3098 -85320,5015:391:3,-151,-9.5,0,0,-6.28608 -85321,5015:390:4,-150.5,-9.5,0,0,-5.05687 -85322,5015:390:3,-150,-9.5,0,0,-5.11707 -85323,5014:499:4,-149.5,-9.5,0,0,-4.57142 -85324,5014:499:3,-149,-9.5,0,0,-3.55346 -85325,5014:498:4,-148.5,-9.5,0,0,-2.12896 -85326,5014:498:3,-148,-9.5,0,0,-1.41127 -85327,5014:497:4,-147.5,-9.5,0,0,-1.35403 -85328,5014:497:3,-147,-9.5,0,0,-1.43793 -85329,5014:496:4,-146.5,-9.5,0,0,-1.05037 -85330,5014:496:3,-146,-9.5,0,0,-0.793342 -85331,5014:495:4,-145.5,-9.5,0,0,-0.875962 -85332,5014:495:3,-145,-9.5,0,0,-0.95009 -85333,5014:394:4,-144.5,-9.5,0,0,-0.727843 -85334,5014:394:3,-144,-9.5,0,0,-0.661499 -85335,5014:393:4,-143.5,-9.5,0,0,-0.593488 -85336,5014:393:3,-143,-9.5,0,0,-0.501662 -85337,5014:392:4,-142.5,-9.5,0,0,-0.485298 -85338,5014:392:3,-142,-9.5,0,0,-0.469608 -85339,5014:391:4,-141.5,-9.5,0,0,-0.450516 -85340,5014:391:3,-141,-9.5,0,0,-0.415297 -85341,5014:390:4,-140.5,-9.5,0,0,-0.379644 -85342,5014:390:3,-140,-9.5,0,0,-0.355436 -85343,5013:499:4,-139.5,-9.5,0,0,-0.327168 -85344,5013:499:3,-139,-9.5,0,0,-0.296855 -85345,5013:498:4,-138.5,-9.5,0,0,-0.28256 -85346,5013:498:3,-138,-9.5,0,0,-0.274637 -85347,5013:497:4,-137.5,-9.5,0,0,-0.264483 -85348,5013:497:3,-137,-9.5,0,0,-0.248184 -85349,5013:496:4,-136.5,-9.5,0,0,-0.234487 -85350,5013:496:3,-136,-9.5,0,0,-0.219541 -85351,5013:495:4,-135.5,-9.5,0,0,-0.202205 -85352,5013:495:3,-135,-9.5,0,0,-0.19738 -85353,5013:394:4,-134.5,-9.5,0,0,-0.195047 -85354,5013:394:3,-134,-9.5,0,0,-0.192313 -85355,5013:393:4,-133.5,-9.5,0,0,-0.191449 -85356,5013:393:3,-133,-9.5,0,0,-0.190779 -85357,5013:392:4,-132.5,-9.5,0,0,-0.188121 -85358,5013:392:3,-132,-9.5,0,0,-0.187018 -85359,5013:391:4,-131.5,-9.5,0,0,-0.187727 -85360,5013:391:3,-131,-9.5,0,0,-0.183728 -85361,5013:390:4,-130.5,-9.5,0,0,-0.181841 -85362,5013:390:3,-130,-9.5,0,0,-0.183139 -85363,5012:499:4,-129.5,-9.5,0,0,-0.183907 -85364,5012:499:3,-129,-9.5,0,0,-0.181816 -85365,5012:498:4,-128.5,-9.5,0,0,-0.178805 -85366,5012:498:3,-128,-9.5,0,0,-0.17774 -85367,5012:497:4,-127.5,-9.5,0,0,-0.175777 -85368,5012:497:3,-127,-9.5,0,0,-0.171928 -85369,5012:496:4,-126.5,-9.5,0,0,-0.171382 -85370,5012:496:3,-126,-9.5,0,0,-0.168058 -85371,5012:495:4,-125.5,-9.5,0,0,-0.166126 -85372,5012:495:3,-125,-9.5,0,0,-0.166561 -85373,5012:394:4,-124.5,-9.5,0,0,-0.166606 -85374,5012:394:3,-124,-9.5,0,0,-0.165147 -85375,5012:393:4,-123.5,-9.5,0,0,-0.162183 -85376,5012:393:3,-123,-9.5,0,0,-0.159453 -85377,5012:392:4,-122.5,-9.5,0,0,-0.157054 -85378,5012:392:3,-122,-9.5,0,0,-0.155393 -85379,5012:391:4,-121.5,-9.5,0,0,-0.153856 -85380,5012:391:3,-121,-9.5,0,0,-0.152316 -85381,5012:390:4,-120.5,-9.5,0,0,-0.150548 -85382,5012:390:3,-120,-9.5,0,0,-0.14844 -85383,5011:499:4,-119.5,-9.5,0,0,-0.147759 -85384,5011:499:3,-119,-9.5,0,0,-0.147339 -85385,5011:498:4,-118.5,-9.5,0,0,-0.14491 -85386,5011:498:3,-118,-9.5,0,0,-0.14199 -85387,5011:497:4,-117.5,-9.5,0,0,-0.140848 -85388,5011:497:3,-117,-9.5,0,0,-0.138868 -85389,5011:496:4,-116.5,-9.5,0,0,-0.136524 -85390,5011:496:3,-116,-9.5,0,0,-0.13605 -85391,5011:495:4,-115.5,-9.5,0,0,-0.13605 -85392,5011:495:3,-115,-9.5,0,0,-0.13605 -85393,5011:394:4,-114.5,-9.5,0,0,-0.13605 -85394,5011:394:3,-114,-9.5,0,0,-0.13605 -85395,5011:393:4,-113.5,-9.5,0,0,-0.13605 -85396,5011:393:3,-113,-9.5,0,0,-0.13605 -85397,5011:392:4,-112.5,-9.5,0,0,-0.13605 -85398,5011:392:3,-112,-9.5,0,0,-0.13605 -85399,5011:391:4,-111.5,-9.5,0,0,-0.13605 -85400,5011:391:3,-111,-9.5,0,0,-0.13605 -85401,5011:390:4,-110.5,-9.5,0,0,-0.13605 -85402,5011:390:3,-110,-9.5,0,0,-0.13605 -85403,5010:499:4,-109.5,-9.5,0,0,-0.13605 -85404,5010:499:3,-109,-9.5,0,0,-0.13605 -85405,5010:498:4,-108.5,-9.5,0,0,-0.13605 -85406,5010:498:3,-108,-9.5,0,0,-0.13605 -85407,5010:497:4,-107.5,-9.5,0,0,-0.13605 -85408,5010:497:3,-107,-9.5,0,0,-0.13605 -85409,5010:496:4,-106.5,-9.5,0,0,-0.13605 -85410,5010:496:3,-106,-9.5,0,0,-0.13605 -85411,5010:495:4,-105.5,-9.5,0,0,-0.13605 -85412,5010:495:3,-105,-9.5,0,0,-0.13605 -85413,5010:394:4,-104.5,-9.5,0,0,-0.13605 -85414,5010:394:3,-104,-9.5,0,0,-0.13605 -85415,5010:393:4,-103.5,-9.5,0,0,-0.13605 -85416,5010:393:3,-103,-9.5,0,0,-0.13605 -85417,5010:392:4,-102.5,-9.5,0,0,-0.13605 -85418,5010:392:3,-102,-9.5,0,0,-0.13605 -85419,5010:391:4,-101.5,-9.5,0,0,-0.13605 -85420,5010:391:3,-101,-9.5,0,0,-0.13605 -85421,5010:390:4,-100.5,-9.5,0,0,-0.13605 -85422,5010:390:3,-100,-9.5,0,0,-0.13605 -85423,5009:499:4,-99.5,-9.5,0,0,-0.13605 -85424,5009:499:3,-99,-9.5,0,0,-0.13605 -85425,5009:498:4,-98.5,-9.5,0,0,-0.13605 -85426,5009:498:3,-98,-9.5,0,0,-0.13605 -85427,5009:497:4,-97.5,-9.5,0,0,-0.13605 -85428,5009:497:3,-97,-9.5,0,0,-0.13605 -85429,5009:496:4,-96.5,-9.5,0,0,-0.13605 -85430,5009:496:3,-96,-9.5,0,0,-0.13605 -85431,5009:495:4,-95.5,-9.5,0,0,-0.13605 -85432,5009:495:3,-95,-9.5,0,0,-0.13605 -85433,5009:394:4,-94.5,-9.5,0,0,-0.13605 -85434,5009:394:3,-94,-9.5,0,0,-0.13605 -85435,5009:393:4,-93.5,-9.5,0,0,-0.13605 -85436,5009:393:3,-93,-9.5,0,0,-0.13605 -85437,5009:392:4,-92.5,-9.5,0,0,-0.13605 -85438,5009:392:3,-92,-9.5,0,0,-0.13605 -85439,5009:391:4,-91.5,-9.5,0,0,-0.13605 -85440,5009:391:3,-91,-9.5,0,0,-0.13605 -85441,5009:390:4,-90.5,-9.5,0,0,-0.13605 -85442,5009:390:3,-90,-9.5,0,0,-0.13605 -85443,5008:499:4,-89.5,-9.5,0,0,-0.13605 -85444,5008:499:3,-89,-9.5,0,0,-0.13605 -85445,5008:498:4,-88.5,-9.5,0,0,-0.13605 -85446,5008:498:3,-88,-9.5,0,0,-0.13605 -85447,5008:497:4,-87.5,-9.5,0,0,-0.13605 -85448,5008:497:3,-87,-9.5,0,0,-0.13605 -85449,5008:496:4,-86.5,-9.5,0,0,-0.13605 -85450,5008:496:3,-86,-9.5,0,0,-0.13605 -85451,5008:495:4,-85.5,-9.5,0,0,-0.13605 -85452,5008:495:3,-85,-9.5,0,0,-0.13605 -85453,5008:394:4,-84.5,-9.5,0,0,-0.13605 -85454,5008:394:3,-84,-9.5,0,0,-0.13605 -85455,5008:393:4,-83.5,-9.5,0,0,-0.13605 -85456,5008:393:3,-83,-9.5,0,0,-0.13605 -85457,5008:392:4,-82.5,-9.5,0,0,-0.13605 -85458,5008:392:3,-82,-9.5,0,0,-0.13605 -85459,5008:391:4,-81.5,-9.5,0,0,-0.13605 -85460,5008:391:3,-81,-9.5,0,0,-0.13605 -85461,5008:390:4,-80.5,-9.5,0,0,-0.13605 -85462,5008:390:3,-80,-9.5,0,0,-0.13605 -85463,5007:499:4,-79.5,-9.5,0,0,-0.13605 -85464,5007:499:3,-79,-9.5,0,0,-0.13605 -85465,5007:498:4,-78.5,-9.5,0,0,-0.13605 -85466,5007:498:3,-78,-9.5,0,0,-0.13605 -85467,5003:497:3,-37,-9.5,0,0,-0.172594 -85468,5003:496:4,-36.5,-9.5,0,0,-0.176903 -85469,5003:496:3,-36,-9.5,0,0,-0.177789 -85470,5003:495:4,-35.5,-9.5,0,0,-0.178929 -85471,5003:495:3,-35,-9.5,0,0,-0.178978 -85472,5003:394:4,-34.5,-9.5,0,0,-0.177394 -85473,5003:394:3,-34,-9.5,0,0,-0.173 -85474,5003:393:4,-33.5,-9.5,0,0,-0.172189 -85475,5003:393:3,-33,-9.5,0,0,-0.169757 -85476,5003:392:4,-32.5,-9.5,0,0,-0.167618 -85477,5003:392:3,-32,-9.5,0,0,-0.167089 -85478,5003:391:4,-31.5,-9.5,0,0,-0.164762 -85479,5003:391:3,-31,-9.5,0,0,-0.162874 -85480,5003:390:4,-30.5,-9.5,0,0,-0.162739 -85481,5003:390:3,-30,-9.5,0,0,-0.16112 -85482,5002:499:4,-29.5,-9.5,0,0,-0.158779 -85483,5002:499:3,-29,-9.5,0,0,-0.157785 -85484,5002:498:4,-28.5,-9.5,0,0,-0.15714 -85485,5002:498:3,-28,-9.5,0,0,-0.155118 -85486,5002:497:4,-27.5,-9.5,0,0,-0.152626 -85487,5002:497:3,-27,-9.5,0,0,-0.150998 -85488,5002:496:4,-26.5,-9.5,0,0,-0.150915 -85489,5002:496:3,-26,-9.5,0,0,-0.149692 -85490,5002:495:4,-25.5,-9.5,0,0,-0.148661 -85491,5002:495:3,-25,-9.5,0,0,-0.147299 -85492,5002:394:4,-24.5,-9.5,0,0,-0.145184 -85493,5002:394:3,-24,-9.5,0,0,-0.1432 -85494,5002:393:4,-23.5,-9.5,0,0,-0.141493 -85495,5002:393:3,-23,-9.5,0,0,-0.139998 -85496,5002:392:4,-22.5,-9.5,0,0,-0.138648 -85497,5002:392:3,-22,-9.5,0,0,-0.137974 -85498,5002:391:4,-21.5,-9.5,0,0,-0.13687 -85499,5002:391:3,-21,-9.5,0,0,-0.136061 -85500,5002:390:4,-20.5,-9.5,0,0,-0.13605 -85501,5002:390:3,-20,-9.5,0,0,-0.13605 -85502,5001:499:4,-19.5,-9.5,0,0,-0.13605 -85503,5001:499:3,-19,-9.5,0,0,-0.13605 -85504,5001:498:4,-18.5,-9.5,0,0,-0.13605 -85505,5001:498:3,-18,-9.5,0,0,-0.13605 -85506,5001:497:4,-17.5,-9.5,0,0,-0.13605 -85507,5001:497:3,-17,-9.5,0,0,-0.13605 -85508,5001:496:4,-16.5,-9.5,0,0,-0.13605 -85509,5001:496:3,-16,-9.5,0,0,-0.13605 -85510,5001:495:4,-15.5,-9.5,0,0,-0.13605 -85511,5001:495:3,-15,-9.5,0,0,-0.13605 -85512,5001:394:4,-14.5,-9.5,0,0,-0.13605 -85513,5001:394:3,-14,-9.5,0,0,-0.13605 -85514,5001:393:4,-13.5,-9.5,0,0,-0.13605 -85515,5001:393:3,-13,-9.5,0,0,-0.13605 -85516,5001:392:4,-12.5,-9.5,0,0,-0.13605 -85517,5001:392:3,-12,-9.5,0,0,-0.13605 -85518,5001:391:4,-11.5,-9.5,0,0,-0.13605 -85519,5001:391:3,-11,-9.5,0,0,-0.13605 -85520,5001:390:4,-10.5,-9.5,0,0,-0.13605 -85521,5001:390:3,-10,-9.5,0,0,-0.13605 -85522,5000:499:4,-9.5,-9.5,0,0,-0.13605 -85523,5000:499:3,-9,-9.5,0,0,-0.13605 -85524,5000:498:4,-8.5,-9.5,0,0,-0.13605 -85525,5000:498:3,-8,-9.5,0,0,-0.13605 -85526,5000:497:4,-7.5,-9.5,0,0,-0.13605 -85527,5000:497:3,-7,-9.5,0,0,-0.13605 -85528,5000:496:4,-6.5,-9.5,0,0,-0.13605 -85529,5000:496:3,-6,-9.5,0,0,-0.13605 -85530,5000:495:4,-5.5,-9.5,0,0,-0.13605 -85531,5000:495:3,-5,-9.5,0,0,-0.13605 -85532,5000:394:4,-4.5,-9.5,0,0,-0.13605 -85533,5000:394:3,-4,-9.5,0,0,-0.13605 -85534,5000:393:4,-3.5,-9.5,0,0,-0.13605 -85535,5000:393:3,-3,-9.5,0,0,-0.13605 -85536,5000:392:4,-2.5,-9.5,0,0,-0.13605 -85537,5000:392:3,-2,-9.5,0,0,-0.13605 -85538,5000:391:4,-1.5,-9.5,0,0,-0.13605 -85539,5000:391:3,-1,-9.5,0,0,-0.13605 -85540,5000:390:4,-0.5,-9.5,0,0,-0.13605 -85541,3000:390:4,0,-9.5,0,0,-0.13605 -85542,3000:390:4,0.5,-9.5,0,0,-0.13605 -85543,3000:391:3,1,-9.5,0,0,-0.13605 -85544,3000:391:4,1.5,-9.5,0,0,-0.13605 -85545,3000:392:3,2,-9.5,0,0,-0.13605 -85546,3000:392:4,2.5,-9.5,0,0,-0.13605 -85547,3000:393:3,3,-9.5,0,0,-0.13605 -85548,3000:393:4,3.5,-9.5,0,0,-0.13605 -85549,3000:394:3,4,-9.5,0,0,-0.13605 -85550,3000:394:4,4.5,-9.5,0,0,-0.13605 -85551,3000:495:3,5,-9.5,0,0,-0.13605 -85552,3000:495:4,5.5,-9.5,0,0,-0.13605 -85553,3000:496:3,6,-9.5,0,0,-0.13605 -85554,3000:496:4,6.5,-9.5,0,0,-0.13605 -85555,3000:497:3,7,-9.5,0,0,-0.13605 -85556,3000:497:4,7.5,-9.5,0,0,-0.136953 -85557,3000:498:3,8,-9.5,0,0,-0.142968 -85558,3000:498:4,8.5,-9.5,0,0,-0.14949 -85559,3000:499:3,9,-9.5,0,0,-0.153877 -85560,3000:499:4,9.5,-9.5,0,0,-0.155965 -85561,3001:390:3,10,-9.5,0,0,-0.161032 -85562,3001:390:4,10.5,-9.5,0,0,-0.165716 -85563,3001:391:3,11,-9.5,0,0,-0.169757 -85564,3001:391:4,11.5,-9.5,0,0,-0.175607 -85565,3001:392:3,12,-9.5,0,0,-0.175826 -85566,3001:392:4,12.5,-9.5,0,0,-0.166355 -85567,3001:393:3,13,-9.5,0,0,-0.151326 -85568,3001:393:4,13.5,-9.5,0,0,-0.136563 -85569,3004:390:4,40.5,-9.5,0,0,18.6505 -85570,3004:391:3,41,-9.5,0,0,-1.78451 -85571,3004:391:4,41.5,-9.5,0,0,-1.22853 -85572,3004:392:3,42,-9.5,0,0,-0.830247 -85573,3004:392:4,42.5,-9.5,0,0,-0.692349 -85574,3004:393:3,43,-9.5,0,0,-0.636409 -85575,3004:393:4,43.5,-9.5,0,0,-0.53571 -85576,3004:394:3,44,-9.5,0,0,-0.489754 -85577,3004:394:4,44.5,-9.5,0,0,-0.440178 -85578,3004:495:3,45,-9.5,0,0,-0.388848 -85579,3004:495:4,45.5,-9.5,0,0,-0.333698 -85580,3004:496:3,46,-9.5,0,0,-0.29075 -85581,3004:496:4,46.5,-9.5,0,0,-0.247798 -85582,3004:497:3,47,-9.5,0,0,-0.233063 -85583,3004:497:4,47.5,-9.5,0,0,-0.232359 -85584,3004:498:3,48,-9.5,0,0,-0.227814 -85585,3004:498:4,48.5,-9.5,0,0,-0.223096 -85586,3004:499:3,49,-9.5,0,0,-0.226092 -85587,3004:499:4,49.5,-9.5,0,0,-0.244388 -85588,3005:390:3,50,-9.5,0,0,-0.276812 -85589,3005:390:4,50.5,-9.5,0,0,-0.318728 -85590,3005:391:3,51,-9.5,0,0,-0.363282 -85591,3005:391:4,51.5,-9.5,0,0,-0.406704 -85592,3005:392:3,52,-9.5,0,0,-0.427882 -85593,3005:392:4,52.5,-9.5,0,0,-0.418952 -85594,3005:393:3,53,-9.5,0,0,-0.410961 -85595,3005:393:4,53.5,-9.5,0,0,-0.437061 -85596,3005:394:3,54,-9.5,0,0,-0.486168 -85597,3005:394:4,54.5,-9.5,0,0,-0.554442 -85598,3005:495:3,55,-9.5,0,0,-0.618734 -85599,3005:495:4,55.5,-9.5,0,0,-0.660175 -85600,3005:496:3,56,-9.5,0,0,-0.660175 -85601,3005:496:4,56.5,-9.5,0,0,-0.633825 -85602,3005:497:3,57,-9.5,0,0,-0.612584 -85603,3005:497:4,57.5,-9.5,0,0,-0.598184 -85604,3005:498:3,58,-9.5,0,0,-0.569634 -85605,3005:498:4,58.5,-9.5,0,0,-0.51396 -85606,3005:499:3,59,-9.5,0,0,-0.442528 -85607,3005:499:4,59.5,-9.5,0,0,-0.386839 -85608,3006:390:3,60,-9.5,0,0,-0.334236 -85609,3006:390:4,60.5,-9.5,0,0,-0.272051 -85610,3006:391:3,61,-9.5,0,0,-0.244388 -85611,3006:391:4,61.5,-9.5,0,0,-0.211805 -85612,3006:392:3,62,-9.5,0,0,-0.19917 -85613,3006:392:4,62.5,-9.5,0,0,-0.211532 -85614,3006:393:3,63,-9.5,0,0,-0.248944 -85615,3006:393:4,63.5,-9.5,0,0,-0.287071 -85616,3006:394:3,64,-9.5,0,0,-0.323446 -85617,3006:394:4,64.5,-9.5,0,0,-0.357826 -85618,3006:495:3,65,-9.5,0,0,-0.380296 -85619,3006:495:4,65.5,-9.5,0,0,-0.40387 -85620,3006:496:3,66,-9.5,0,0,-0.416741 -85621,3006:496:4,66.5,-9.5,0,0,-0.430914 -85622,3006:497:3,67,-9.5,0,0,-0.447303 -85623,3006:497:4,67.5,-9.5,0,0,-0.467041 -85624,3006:498:3,68,-9.5,0,0,-0.487971 -85625,3006:498:4,68.5,-9.5,0,0,-0.514929 -85626,3006:499:3,69,-9.5,0,0,-0.523704 -85627,3006:499:4,69.5,-9.5,0,0,-0.514929 -85628,3007:390:3,70,-9.5,0,0,-0.531667 -85629,3007:390:4,70.5,-9.5,0,0,-0.566343 -85630,3007:391:3,71,-9.5,0,0,-0.594666 -85631,3007:391:4,71.5,-9.5,0,0,-0.626236 -85632,3007:392:3,72,-9.5,0,0,-0.637706 -85633,3007:392:4,72.5,-9.5,0,0,-0.62245 -85634,3007:393:4,73.5,-9.5,0,0,-0.574073 -85635,3007:394:3,74,-9.5,0,0,-0.5073 -85636,3007:394:4,74.5,-9.5,0,0,-0.462855 -85637,3007:495:3,75,-9.5,0,0,-0.434748 -85638,3007:495:4,75.5,-9.5,0,0,-0.415297 -85639,3007:496:3,76,-9.5,0,0,-0.405993 -85640,3007:496:4,76.5,-9.5,0,0,-0.39423 -85641,3007:497:3,77,-9.5,0,0,-0.377695 -85642,3007:497:4,77.5,-9.5,0,0,-0.355436 -85643,3007:498:3,78,-9.5,0,0,-0.328794 -85644,3007:498:4,78.5,-9.5,0,0,-0.298296 -85645,3007:499:3,79,-9.5,0,0,-0.265317 -85646,3007:499:4,79.5,-9.5,0,0,-0.235922 -85647,3008:390:3,80,-9.5,0,0,-0.208914 -85648,3008:390:4,80.5,-9.5,0,0,-0.197248 -85649,3008:391:3,81,-9.5,0,0,-0.193219 -85650,3008:391:4,81.5,-9.5,0,0,-0.190993 -85651,3008:392:3,82,-9.5,0,0,-0.189046 -85652,3008:392:4,82.5,-9.5,0,0,-0.187254 -85653,3008:393:3,83,-9.5,0,0,-0.185533 -85654,3008:393:4,83.5,-9.5,0,0,-0.18437 -85655,3008:394:3,84,-9.5,0,0,-0.183574 -85656,3008:394:4,84.5,-9.5,0,0,-0.182859 -85657,3008:495:3,85,-9.5,0,0,-0.182349 -85658,3008:495:4,85.5,-9.5,0,0,-0.182044 -85659,3008:496:3,86,-9.5,0,0,-0.181588 -85660,3008:496:4,86.5,-9.5,0,0,-0.180805 -85661,3008:497:3,87,-9.5,0,0,-0.179927 -85662,3008:497:4,87.5,-9.5,0,0,-0.179078 -85663,3008:498:3,88,-9.5,0,0,-0.178036 -85664,3008:498:4,88.5,-9.5,0,0,-0.177026 -85665,3008:499:3,89,-9.5,0,0,-0.176168 -85666,3008:499:4,89.5,-9.5,0,0,-0.175315 -85667,3009:390:3,90,-9.5,0,0,-0.174516 -85668,3009:390:4,90.5,-9.5,0,0,-0.174129 -85669,3009:391:3,91,-9.5,0,0,-0.174588 -85670,3009:391:4,91.5,-9.5,0,0,-0.175826 -85671,3009:392:3,92,-9.5,0,0,-0.177444 -85672,3009:392:4,92.5,-9.5,0,0,-0.179078 -85673,3009:393:3,93,-9.5,0,0,-0.180403 -85674,3009:393:4,93.5,-9.5,0,0,-0.181184 -85675,3009:394:3,94,-9.5,0,0,-0.181158 -85676,3009:394:4,94.5,-9.5,0,0,-0.180756 -85677,3009:495:3,95,-9.5,0,0,-0.180529 -85678,3009:495:4,95.5,-9.5,0,0,-0.180479 -85679,3009:496:3,96,-9.5,0,0,-0.180177 -85680,3009:496:4,96.5,-9.5,0,0,-0.179452 -85681,3009:497:3,97,-9.5,0,0,-0.178556 -85682,3009:497:4,97.5,-9.5,0,0,-0.177863 -85683,3009:498:3,98,-9.5,0,0,-0.177419 -85684,3009:498:4,98.5,-9.5,0,0,-0.177026 -85685,3009:499:3,99,-9.5,0,0,-0.176903 -85686,3009:499:4,99.5,-9.5,0,0,-0.177838 -85687,3010:390:3,100,-9.5,0,0,-0.180103 -85688,3010:390:4,100.5,-9.5,0,0,-0.183318 -85689,3010:391:3,101,-9.5,0,0,-0.187202 -85690,3010:391:4,101.5,-9.5,0,0,-0.190538 -85691,3010:392:3,102,-9.5,0,0,-0.19215 -85692,3010:392:4,102.5,-9.5,0,0,-0.192177 -85693,3010:393:3,103,-9.5,0,0,-0.191827 -85694,3010:393:4,103.5,-9.5,0,0,-0.19215 -85695,3010:394:3,104,-9.5,0,0,-0.193609 -85696,3010:394:4,104.5,-9.5,0,0,-0.19707 -85697,3010:495:3,105,-9.5,0,0,-0.211805 -85698,3010:495:4,105.5,-9.5,0,0,-0.241779 -85699,3010:496:3,106,-9.5,0,0,-0.257975 -85700,3010:496:4,106.5,-9.5,0,0,-0.278994 -85701,3010:497:3,107,-9.5,0,0,-0.316142 -85702,3010:497:4,107.5,-9.5,0,0,-0.392865 -85703,3010:498:3,108,-9.5,0,0,-0.541868 -85704,3010:498:4,108.5,-9.5,0,0,-0.810021 -85705,3010:499:3,109,-9.5,0,0,-1.14351 -85706,3010:499:4,109.5,-9.5,0,0,-1.19754 -85707,3011:390:3,110,-9.5,0,0,-1.26652 -85708,3011:390:4,110.5,-9.5,0,0,-1.73753 -85709,3011:391:3,111,-9.5,0,0,-2.53137 -85710,3011:391:4,111.5,-9.5,0,0,-5.05687 -85711,3011:392:3,112,-9.5,0,0,204.138 -85712,3011:392:4,112.5,-9.5,0,0,5.77162 -85713,3011:393:3,113,-9.5,0,0,3.38202 -85714,3011:393:4,113.5,-9.5,0,0,2.60739 -85715,3011:394:3,114,-9.5,0,0,2.25499 -85716,3011:394:4,114.5,-9.5,0,0,1.94621 -85717,3011:495:3,115,-9.5,0,0,1.63366 -85718,3011:495:4,115.5,-9.5,0,0,1.62971 -85719,3011:496:3,116,-9.5,0,0,1.60466 -85720,3011:496:4,116.5,-9.5,0,0,1.59171 -85721,3011:497:3,117,-9.5,0,0,1.61795 -85722,3011:497:4,117.5,-9.5,0,0,1.65411 -85723,3011:498:3,118,-9.5,0,0,1.65827 -85724,3011:498:4,118.5,-9.5,0,0,1.63567 -85725,3011:499:3,119,-9.5,0,0,1.55684 -85726,3011:499:4,119.5,-9.5,0,0,1.5469 -85727,3012:390:3,120,-9.5,0,0,1.59904 -85728,3012:390:4,120.5,-9.5,0,0,1.66677 -85729,3012:391:3,121,-9.5,0,0,1.60466 -85730,3012:391:4,121.5,-9.5,0,0,1.49496 -85731,3012:392:3,122,-9.5,0,0,1.34163 -85732,3012:392:4,122.5,-9.5,0,0,1.29907 -85733,3012:393:3,123,-9.5,0,0,1.35245 -85734,3012:393:4,123.5,-9.5,0,0,1.31012 -85735,3012:394:3,124,-9.5,0,0,1.30306 -85736,3012:394:4,124.5,-9.5,0,0,1.31471 -85737,3012:495:3,125,-9.5,0,0,1.34971 -85738,3012:495:4,125.5,-9.5,0,0,1.30743 -85739,3012:496:3,126,-9.5,0,0,1.28783 -85740,3012:496:4,126.5,-9.5,0,0,1.25925 -85741,3012:497:3,127,-9.5,0,0,1.22309 -85742,3012:497:4,127.5,-9.5,0,0,1.18645 -85743,3012:498:3,128,-9.5,0,0,1.16095 -85744,3012:498:4,128.5,-9.5,0,0,1.13269 -85745,3012:499:3,129,-9.5,0,0,1.11624 -85746,3012:499:4,129.5,-9.5,0,0,1.12422 -85747,3013:390:3,130,-9.5,0,0,1.12375 -85748,3013:390:4,130.5,-9.5,0,0,1.09875 -85749,3013:391:3,131,-9.5,0,0,1.10512 -85750,3013:391:4,131.5,-9.5,0,0,1.10741 -85751,3013:392:3,132,-9.5,0,0,1.11289 -85752,3013:392:4,132.5,-9.5,0,0,1.10781 -85753,3013:393:3,133,-9.5,0,0,1.13042 -85754,3013:393:4,133.5,-9.5,0,0,1.20236 -85755,3013:394:3,134,-9.5,0,0,1.25006 -85756,3013:394:4,134.5,-9.5,0,0,1.28972 -85757,3013:495:3,135,-9.5,0,0,1.36952 -85758,3013:495:4,135.5,-9.5,0,0,1.47821 -85759,3013:496:3,136,-9.5,0,0,1.6218 -85760,3013:496:4,136.5,-9.5,0,0,1.64784 -85761,3013:497:3,137,-9.5,0,0,2.56794 -85762,3013:497:4,137.5,-9.5,0,0,3.71267 -85763,3013:498:3,138,-9.5,0,0,-12.3098 -85764,3013:498:4,138.5,-9.5,0,0,33.825 -85765,3013:499:3,139,-9.5,0,0,7.85456 -85766,3013:499:4,139.5,-9.5,0,0,3.58243 -85767,3014:390:3,140,-9.5,0,0,2.23865 -85768,3014:390:4,140.5,-9.5,0,0,1.71175 -85769,3014:391:3,141,-9.5,0,0,1.46348 -85770,3014:391:4,141.5,-9.5,0,0,1.33897 -85771,3014:392:3,142,-9.5,0,0,1.35991 -85772,3014:393:3,143,-9.5,0,0,7.9575 -85773,3014:393:4,143.5,-9.5,0,0,-1.16268 -85774,3014:394:3,144,-9.5,0,0,-0.313582 -85775,3014:394:4,144.5,-9.5,0,0,-0.257975 -85776,3014:495:3,145,-9.5,0,0,-0.337569 -85777,3014:495:4,145.5,-9.5,0,0,-0.387507 -85778,3014:496:3,146,-9.5,0,0,-0.413111 -85893,5015:497:1,-157,-9,0,0,2.08407 -85779,3014:496:4,146.5,-9.5,0,0,-0.51396 -85780,3014:497:3,147,-9.5,0,0,-0.57295 -85781,3014:497:4,147.5,-9.5,0,0,-0.386172 -85782,3014:498:3,148,-9.5,0,0,-0.282109 -85783,3014:498:4,148.5,-9.5,0,0,-0.236649 -85784,3014:499:3,149,-9.5,0,0,-0.294027 -85785,3014:499:4,149.5,-9.5,0,0,-0.386839 -85786,3015:390:3,150,-9.5,0,0,-0.68091 -85787,3015:390:4,150.5,-9.5,0,0,-1.5157 -85788,3015:391:3,151,-9.5,0,0,-10.6543 -85789,3015:391:4,151.5,-9.5,0,0,-2.81481 -85790,3015:392:3,152,-9.5,0,0,8.41459 -85791,3015:392:4,152.5,-9.5,0,0,6.49793 -85792,3015:393:3,153,-9.5,0,0,7.46134 -85793,3015:393:4,153.5,-9.5,0,0,3.47876 -85794,3015:394:3,154,-9.5,0,0,3.42982 -85795,3015:394:4,154.5,-9.5,0,0,2.64027 -85796,3015:495:3,155,-9.5,0,0,2.16718 -85797,3015:495:4,155.5,-9.5,0,0,1.97155 -85798,3015:496:3,156,-9.5,0,0,2.0018 -85799,3015:496:4,156.5,-9.5,0,0,2.17693 -85800,3015:497:3,157,-9.5,0,0,2.31733 -85801,3015:497:4,157.5,-9.5,0,0,2.47187 -85802,3015:498:3,158,-9.5,0,0,2.76458 -85803,3015:498:4,158.5,-9.5,0,0,3.06518 -85804,3015:499:3,159,-9.5,0,0,3.18033 -85805,3015:499:4,159.5,-9.5,0,0,4.01092 -85806,3016:390:3,160,-9.5,0,0,7.19111 -85807,3016:390:4,160.5,-9.5,0,0,79.6842 -85808,3016:391:3,161,-9.5,0,0,-27.5732 -85809,3016:391:4,161.5,-9.5,0,0,-7.30474 -85810,3016:392:3,162,-9.5,0,0,-1.86401 -85811,3016:392:4,162.5,-9.5,0,0,-1.24466 -85812,3016:393:3,163,-9.5,0,0,-1.58437 -85813,3016:393:4,163.5,-9.5,0,0,-2.00645 -85814,3016:394:3,164,-9.5,0,0,-2.29319 -85815,3016:394:4,164.5,-9.5,0,0,-2.56601 -85816,3016:495:3,165,-9.5,0,0,-2.9895 -85817,3016:495:4,165.5,-9.5,0,0,-3.31756 -85818,3016:496:3,166,-9.5,0,0,-2.33751 -85819,3016:496:4,166.5,-9.5,0,0,-1.40468 -85820,3016:497:3,167,-9.5,0,0,-2.25028 -85821,3016:497:4,167.5,-9.5,0,0,-2.48013 -85822,3016:498:3,168,-9.5,0,0,-2.81481 -85823,3016:498:4,168.5,-9.5,0,0,-3.26349 -85824,3016:499:3,169,-9.5,0,0,-3.6164 -85825,3016:499:4,169.5,-9.5,0,0,-3.40301 -85826,3017:390:3,170,-9.5,0,0,-2.85711 -85827,3017:390:4,170.5,-9.5,0,0,-2.22214 -85828,3017:391:3,171,-9.5,0,0,-1.71042 -85829,3017:391:4,171.5,-9.5,0,0,-1.38539 -85830,3017:392:3,172,-9.5,0,0,-1.17749 -85831,3017:392:4,172.5,-9.5,0,0,-1.02987 -85832,3017:393:3,173,-9.5,0,0,-0.830247 -85833,3017:393:4,173.5,-9.5,0,0,-0.713789 -85834,3017:394:3,174,-9.5,0,0,-0.698171 -85835,3017:394:4,174.5,-9.5,0,0,-0.699648 -85836,3017:495:3,175,-9.5,0,0,-0.682336 -85837,3017:495:4,175.5,-9.5,0,0,-0.661499 -85838,3017:496:3,176,-9.5,0,0,-0.652104 -85839,3017:496:4,176.5,-9.5,0,0,-0.664242 -85840,3017:497:3,177,-9.5,0,0,-0.678113 -85841,3017:497:4,177.5,-9.5,0,0,-0.673884 -85842,3017:498:3,178,-9.5,0,0,-0.668345 -85843,3017:498:4,178.5,-9.5,0,0,-0.666959 -85844,3017:499:3,179,-9.5,0,0,-0.698171 -85845,3017:499:4,179.5,-9.5,0,0,-0.766519 -85846,3018:390:3,180,-9.5,0,0,-0.863412 -85847,5018:390:1,-180,-9,0,0,-1.89559 -85848,5017:499:2,-179.5,-9,0,0,-2.41501 -85849,5017:499:1,-179,-9,0,0,-3.3741 -85850,5017:498:2,-178.5,-9,0,0,-4.94202 -85851,5017:498:1,-178,-9,0,0,-9.57722 -85852,5017:497:2,-177.5,-9,0,0,-1157.87 -85853,5017:497:1,-177,-9,0,0,8.66099 -85854,5017:496:2,-176.5,-9,0,0,4.81589 -85855,5017:496:1,-176,-9,0,0,3.85471 -85856,5017:495:2,-175.5,-9,0,0,3.47876 -85857,5017:495:1,-175,-9,0,0,3.33627 -85858,5017:394:2,-174.5,-9,0,0,3.221 -85859,5017:394:1,-174,-9,0,0,3.15365 -85860,5017:393:2,-173.5,-9,0,0,3.16692 -85861,5017:393:1,-173,-9,0,0,3.14051 -85862,5017:392:2,-172.5,-9,0,0,3.20716 -85863,5017:392:1,-172,-9,0,0,3.41371 -85864,5017:391:2,-171.5,-9,0,0,3.65558 -85865,5017:391:1,-171,-9,0,0,3.63682 -85866,5017:390:2,-170.5,-9,0,0,3.33627 -85867,5017:390:1,-170,-9,0,0,2.99383 -85868,5016:499:2,-169.5,-9,0,0,2.8029 -85869,5016:499:1,-169,-9,0,0,2.65726 -85870,5016:498:2,-168.5,-9,0,0,2.50749 -85871,5016:498:1,-168,-9,0,0,2.47187 -85872,5016:497:2,-167.5,-9,0,0,2.5298 -85873,5016:497:1,-167,-9,0,0,2.54474 -85874,5016:496:2,-166.5,-9,0,0,2.49312 -85875,5016:496:1,-166,-9,0,0,2.45783 -85876,5016:495:2,-165.5,-9,0,0,2.33514 -85877,5016:495:1,-165,-9,0,0,2.18193 -85878,5016:394:2,-164.5,-9,0,0,2.0136 -85879,5016:394:1,-164,-9,0,0,1.92184 -85880,5016:393:2,-163.5,-9,0,0,1.8789 -85881,5016:393:1,-163,-9,0,0,1.86935 -85882,5016:392:2,-162.5,-9,0,0,1.87252 -85883,5016:392:1,-162,-9,0,0,1.86935 -85884,5016:391:2,-161.5,-9,0,0,1.86004 -85885,5016:391:1,-161,-9,0,0,1.84176 -85886,5016:390:2,-160.5,-9,0,0,1.85385 -85887,5016:390:1,-160,-9,0,0,1.85385 -85888,5015:499:2,-159.5,-9,0,0,1.85087 -85889,5015:499:1,-159,-9,0,0,1.87252 -85890,5015:498:2,-158.5,-9,0,0,1.88851 -85891,5015:498:1,-158,-9,0,0,1.9184 -85892,5015:497:2,-157.5,-9,0,0,1.98281 -85894,5015:496:2,-156.5,-9,0,0,2.25499 -85895,5015:496:1,-156,-9,0,0,2.44421 -85896,5015:495:2,-155.5,-9,0,0,2.8029 -85897,5015:495:1,-155,-9,0,0,3.46209 -85898,5015:394:2,-154.5,-9,0,0,4.20802 -85899,5015:394:1,-154,-9,0,0,4.92585 -85900,5015:393:2,-153.5,-9,0,0,6.78705 -85901,5015:393:1,-153,-9,0,0,11.3991 -85902,5015:392:2,-152.5,-9,0,0,79.6842 -85903,5015:392:1,-152,-9,0,0,-14.9822 -85904,5015:391:2,-151.5,-9,0,0,-7.30474 -85905,5015:391:1,-151,-9,0,0,-4.7245 -85906,5015:390:2,-150.5,-9,0,0,-3.0841 -85907,5015:390:1,-150,-9,0,0,-2.81481 -85908,5014:499:2,-149.5,-9,0,0,-2.85711 -85909,5014:499:1,-149,-9,0,0,-2.35276 -85910,5014:498:2,-148.5,-9,0,0,-1.50098 -85911,5014:498:1,-148,-9,0,0,-1.03395 -85912,5014:497:2,-147.5,-9,0,0,-0.869702 -85913,5014:497:1,-147,-9,0,0,-0.793342 -85914,5014:496:2,-146.5,-9,0,0,-0.690938 -85915,5014:496:1,-146,-9,0,0,-0.682336 -85916,5014:495:2,-145.5,-9,0,0,-0.704061 -85917,5014:495:1,-145,-9,0,0,-0.718965 -85918,5014:394:2,-144.5,-9,0,0,-0.619982 -85919,5014:394:1,-144,-9,0,0,-0.576294 -85920,5014:393:2,-143.5,-9,0,0,-0.524698 -85921,5014:393:1,-143,-9,0,0,-0.482617 -85922,5014:392:2,-142.5,-9,0,0,-0.446499 -85923,5014:392:1,-142,-9,0,0,-0.41024 -85924,5014:391:2,-141.5,-9,0,0,-0.388177 -85925,5014:391:1,-141,-9,0,0,-0.358431 -85926,5014:390:2,-140.5,-9,0,0,-0.333698 -85927,5014:390:1,-140,-9,0,0,-0.321869 -85928,5013:499:2,-139.5,-9,0,0,-0.300688 -85929,5013:499:1,-139,-9,0,0,-0.273334 -85930,5013:498:2,-138.5,-9,0,0,-0.247798 -85931,5013:498:1,-138,-9,0,0,-0.228501 -85932,5013:497:2,-137.5,-9,0,0,-0.215105 -85933,5013:497:1,-137,-9,0,0,-0.207899 -85934,5013:496:2,-136.5,-9,0,0,-0.202756 -85935,5013:496:1,-136,-9,0,0,-0.198092 -85936,5013:495:2,-135.5,-9,0,0,-0.194566 -85937,5013:495:1,-135,-9,0,0,-0.191584 -85938,5013:394:2,-134.5,-9,0,0,-0.189631 -85939,5013:394:1,-134,-9,0,0,-0.188042 -85940,5013:393:2,-133.5,-9,0,0,-0.186652 -85941,5013:393:1,-133,-9,0,0,-0.184653 -85942,5013:392:2,-132.5,-9,0,0,-0.183191 -85943,5013:392:1,-132,-9,0,0,-0.183395 -85944,5013:391:2,-131.5,-9,0,0,-0.181613 -85945,5013:391:1,-131,-9,0,0,-0.178631 -85946,5013:390:2,-130.5,-9,0,0,-0.177937 -85947,5013:390:1,-130,-9,0,0,-0.17673 -85948,5012:499:2,-129.5,-9,0,0,-0.174418 -85949,5012:499:1,-129,-9,0,0,-0.172689 -85950,5012:498:2,-128.5,-9,0,0,-0.171928 -85951,5012:498:1,-128,-9,0,0,-0.1715 -85952,5012:497:2,-127.5,-9,0,0,-0.169734 -85953,5012:497:1,-127,-9,0,0,-0.168127 -85954,5012:496:2,-126.5,-9,0,0,-0.166332 -85955,5012:496:1,-126,-9,0,0,-0.163658 -85956,5012:495:2,-125.5,-9,0,0,-0.163007 -85957,5012:495:1,-125,-9,0,0,-0.162227 -85958,5012:394:2,-124.5,-9,0,0,-0.160833 -85959,5012:394:1,-124,-9,0,0,-0.159127 -85960,5012:393:2,-123.5,-9,0,0,-0.157505 -85961,5012:393:1,-123,-9,0,0,-0.155732 -85962,5012:392:2,-122.5,-9,0,0,-0.153856 -85963,5012:392:1,-122,-9,0,0,-0.152192 -85964,5012:391:2,-121.5,-9,0,0,-0.150568 -85965,5012:391:1,-121,-9,0,0,-0.149024 -85966,5012:390:2,-120.5,-9,0,0,-0.147299 -85967,5012:390:1,-120,-9,0,0,-0.145636 -85968,5011:499:2,-119.5,-9,0,0,-0.144325 -85969,5011:499:1,-119,-9,0,0,-0.142545 -85970,5011:498:2,-118.5,-9,0,0,-0.139979 -85971,5011:498:1,-118,-9,0,0,-0.137739 -85972,5011:497:2,-117.5,-9,0,0,-0.136151 -85973,5011:497:1,-117,-9,0,0,-0.13605 -85974,5011:496:2,-116.5,-9,0,0,-0.13605 -85975,5011:496:1,-116,-9,0,0,-0.13605 -85976,5011:495:2,-115.5,-9,0,0,-0.13605 -85977,5011:495:1,-115,-9,0,0,-0.13605 -85978,5011:394:2,-114.5,-9,0,0,-0.13605 -85979,5011:394:1,-114,-9,0,0,-0.13605 -85980,5011:393:2,-113.5,-9,0,0,-0.13605 -85981,5011:393:1,-113,-9,0,0,-0.13605 -85982,5011:392:2,-112.5,-9,0,0,-0.13605 -85983,5011:392:1,-112,-9,0,0,-0.13605 -85984,5011:391:2,-111.5,-9,0,0,-0.13605 -85985,5011:391:1,-111,-9,0,0,-0.13605 -85986,5011:390:2,-110.5,-9,0,0,-0.13605 -85987,5011:390:1,-110,-9,0,0,-0.13605 -85988,5010:499:2,-109.5,-9,0,0,-0.13605 -85989,5010:499:1,-109,-9,0,0,-0.13605 -85990,5010:498:2,-108.5,-9,0,0,-0.13605 -85991,5010:498:1,-108,-9,0,0,-0.13605 -85992,5010:497:2,-107.5,-9,0,0,-0.13605 -85993,5010:497:1,-107,-9,0,0,-0.13605 -85994,5010:496:2,-106.5,-9,0,0,-0.13605 -85995,5010:496:1,-106,-9,0,0,-0.13605 -85996,5010:495:2,-105.5,-9,0,0,-0.13605 -85997,5010:495:1,-105,-9,0,0,-0.13605 -85998,5010:394:2,-104.5,-9,0,0,-0.13605 -85999,5010:394:1,-104,-9,0,0,-0.13605 -86000,5010:393:2,-103.5,-9,0,0,-0.13605 -86001,5010:393:1,-103,-9,0,0,-0.13605 -86002,5010:392:2,-102.5,-9,0,0,-0.13605 -86003,5010:392:1,-102,-9,0,0,-0.13605 -86004,5010:391:2,-101.5,-9,0,0,-0.13605 -86005,5010:391:1,-101,-9,0,0,-0.13605 -86006,5010:390:2,-100.5,-9,0,0,-0.13605 -86007,5010:390:1,-100,-9,0,0,-0.13605 -86008,5009:499:2,-99.5,-9,0,0,-0.13605 -86009,5009:499:1,-99,-9,0,0,-0.13605 -86010,5009:498:2,-98.5,-9,0,0,-0.13605 -86011,5009:498:1,-98,-9,0,0,-0.13605 -86012,5009:497:2,-97.5,-9,0,0,-0.13605 -86013,5009:497:1,-97,-9,0,0,-0.13605 -86014,5009:496:2,-96.5,-9,0,0,-0.13605 -86015,5009:496:1,-96,-9,0,0,-0.13605 -86016,5009:495:2,-95.5,-9,0,0,-0.13605 -86017,5009:495:1,-95,-9,0,0,-0.13605 -86018,5009:394:2,-94.5,-9,0,0,-0.13605 -86019,5009:394:1,-94,-9,0,0,-0.13605 -86020,5009:393:2,-93.5,-9,0,0,-0.13605 -86021,5009:393:1,-93,-9,0,0,-0.13605 -86022,5009:392:2,-92.5,-9,0,0,-0.13605 -86023,5009:392:1,-92,-9,0,0,-0.13605 -86024,5009:391:2,-91.5,-9,0,0,-0.13605 -86025,5009:391:1,-91,-9,0,0,-0.13605 -86026,5009:390:2,-90.5,-9,0,0,-0.13605 -86027,5009:390:1,-90,-9,0,0,-0.13605 -86028,5008:499:2,-89.5,-9,0,0,-0.13605 -86029,5008:499:1,-89,-9,0,0,-0.13605 -86030,5008:498:2,-88.5,-9,0,0,-0.13605 -86031,5008:498:1,-88,-9,0,0,-0.13605 -86032,5008:497:2,-87.5,-9,0,0,-0.13605 -86033,5008:497:1,-87,-9,0,0,-0.13605 -86034,5008:496:2,-86.5,-9,0,0,-0.13605 -86035,5008:496:1,-86,-9,0,0,-0.13605 -86036,5008:495:2,-85.5,-9,0,0,-0.13605 -86037,5008:495:1,-85,-9,0,0,-0.13605 -86038,5008:394:2,-84.5,-9,0,0,-0.13605 -86039,5008:394:1,-84,-9,0,0,-0.13605 -86040,5008:393:2,-83.5,-9,0,0,-0.13605 -86041,5008:393:1,-83,-9,0,0,-0.13605 -86042,5008:392:2,-82.5,-9,0,0,-0.13605 -86043,5008:392:1,-82,-9,0,0,-0.13605 -86044,5008:391:2,-81.5,-9,0,0,-0.13605 -86045,5008:391:1,-81,-9,0,0,-0.13605 -86046,5008:390:2,-80.5,-9,0,0,-0.13605 -86047,5008:390:1,-80,-9,0,0,-0.13605 -86048,5007:499:2,-79.5,-9,0,0,-0.13605 -86049,5007:499:1,-79,-9,0,0,-0.13605 -86050,5007:498:2,-78.5,-9,0,0,-0.13605 -86051,5003:496:1,-36,-9,0,0,-0.177468 -86052,5003:495:2,-35.5,-9,0,0,-0.180203 -86053,5003:495:1,-35,-9,0,0,-0.179577 -86054,5003:394:2,-34.5,-9,0,0,-0.177641 -86055,5003:394:1,-34,-9,0,0,-0.173192 -86056,5003:393:2,-33.5,-9,0,0,-0.171524 -86057,5003:393:1,-33,-9,0,0,-0.16964 -86058,5003:392:2,-32.5,-9,0,0,-0.16785 -86059,5003:392:1,-32,-9,0,0,-0.166195 -86060,5003:391:2,-31.5,-9,0,0,-0.164966 -86061,5003:391:1,-31,-9,0,0,-0.163882 -86062,5003:390:2,-30.5,-9,0,0,-0.162205 -86063,5003:390:1,-30,-9,0,0,-0.15989 -86064,5002:499:2,-29.5,-9,0,0,-0.157936 -86065,5002:499:1,-29,-9,0,0,-0.156755 -86066,5002:498:2,-28.5,-9,0,0,-0.155605 -86067,5002:498:1,-28,-9,0,0,-0.15417 -86068,5002:497:2,-27.5,-9,0,0,-0.152855 -86069,5002:497:1,-27,-9,0,0,-0.151944 -86070,5002:496:2,-26.5,-9,0,0,-0.150568 -86071,5002:496:1,-26,-9,0,0,-0.148883 -86072,5002:495:2,-25.5,-9,0,0,-0.147559 -86073,5002:495:1,-25,-9,0,0,-0.146921 -86074,5002:394:2,-24.5,-9,0,0,-0.14603 -86075,5002:394:1,-24,-9,0,0,-0.143974 -86076,5002:393:2,-23.5,-9,0,0,-0.142661 -86077,5002:393:1,-23,-9,0,0,-0.140829 -86078,5002:392:2,-22.5,-9,0,0,-0.140111 -86079,5002:392:1,-22,-9,0,0,-0.139416 -86080,5002:391:2,-21.5,-9,0,0,-0.137638 -86081,5002:391:1,-21,-9,0,0,-0.136291 -86082,5002:390:2,-20.5,-9,0,0,-0.136421 -86083,5002:390:1,-20,-9,0,0,-0.13605 -86084,5001:499:2,-19.5,-9,0,0,-0.13605 -86085,5001:499:1,-19,-9,0,0,-0.13605 -86086,5001:498:2,-18.5,-9,0,0,-0.13605 -86087,5001:498:1,-18,-9,0,0,-0.13605 -86088,5001:497:2,-17.5,-9,0,0,-0.13605 -86089,5001:497:1,-17,-9,0,0,-0.13605 -86090,5001:496:2,-16.5,-9,0,0,-0.13605 -86091,5001:496:1,-16,-9,0,0,-0.13605 -86092,5001:495:2,-15.5,-9,0,0,-0.13605 -86093,5001:495:1,-15,-9,0,0,-0.13605 -86094,5001:394:2,-14.5,-9,0,0,-0.13605 -86095,5001:394:1,-14,-9,0,0,-0.13605 -86096,5001:393:2,-13.5,-9,0,0,-0.13605 -86097,5001:393:1,-13,-9,0,0,-0.13605 -86098,5001:392:2,-12.5,-9,0,0,-0.13605 -86099,5001:392:1,-12,-9,0,0,-0.13605 -86100,5001:391:2,-11.5,-9,0,0,-0.13605 -86101,5001:391:1,-11,-9,0,0,-0.13605 -86102,5001:390:2,-10.5,-9,0,0,-0.13605 -86103,5001:390:1,-10,-9,0,0,-0.13605 -86104,5000:499:2,-9.5,-9,0,0,-0.13605 -86105,5000:499:1,-9,-9,0,0,-0.13605 -86106,5000:498:2,-8.5,-9,0,0,-0.13605 -86107,5000:498:1,-8,-9,0,0,-0.13605 -86108,5000:497:2,-7.5,-9,0,0,-0.13605 -86109,5000:497:1,-7,-9,0,0,-0.13605 -86110,5000:496:2,-6.5,-9,0,0,-0.13605 -86111,5000:496:1,-6,-9,0,0,-0.13605 -86112,5000:495:2,-5.5,-9,0,0,-0.13605 -86113,5000:495:1,-5,-9,0,0,-0.13605 -86114,5000:394:2,-4.5,-9,0,0,-0.13605 -86115,5000:394:1,-4,-9,0,0,-0.13605 -86116,5000:393:2,-3.5,-9,0,0,-0.13605 -86117,5000:393:1,-3,-9,0,0,-0.13605 -86118,5000:392:2,-2.5,-9,0,0,-0.13605 -86119,5000:392:1,-2,-9,0,0,-0.13605 -86120,5000:391:2,-1.5,-9,0,0,-0.13605 -86121,5000:391:1,-1,-9,0,0,-0.13605 -86122,5000:390:2,-0.5,-9,0,0,-0.13605 -86123,3000:390:2,0,-9,0,0,-0.13605 -86124,3000:390:2,0.5,-9,0,0,-0.13605 -86125,3000:391:1,1,-9,0,0,-0.13605 -86126,3000:391:2,1.5,-9,0,0,-0.13605 -86127,3000:392:1,2,-9,0,0,-0.13605 -86128,3000:392:2,2.5,-9,0,0,-0.13605 -86129,3000:393:1,3,-9,0,0,-0.13605 -86130,3000:393:2,3.5,-9,0,0,-0.13605 -86131,3000:394:1,4,-9,0,0,-0.13605 -86132,3000:394:2,4.5,-9,0,0,-0.13605 -86133,3000:495:1,5,-9,0,0,-0.13605 -86134,3000:495:2,5.5,-9,0,0,-0.13605 -86135,3000:496:1,6,-9,0,0,-0.13605 -86136,3000:496:2,6.5,-9,0,0,-0.137354 -86137,3000:497:1,7,-9,0,0,-0.142988 -86138,3000:497:2,7.5,-9,0,0,-0.1484 -86139,3000:498:1,8,-9,0,0,-0.153313 -86140,3000:498:2,8.5,-9,0,0,-0.158173 -86141,3000:499:1,9,-9,0,0,-0.162272 -86142,3000:499:2,9.5,-9,0,0,-0.165011 -86143,3001:390:1,10,-9,0,0,-0.168777 -86144,3001:390:2,10.5,-9,0,0,-0.17384 -86145,3001:391:1,11,-9,0,0,-0.177987 -86146,3001:391:2,11.5,-9,0,0,-0.181562 -86147,3001:392:1,12,-9,0,0,-0.177764 -86148,3001:392:2,12.5,-9,0,0,-0.166309 -86149,3001:393:1,13,-9,0,0,-0.146902 -86150,3004:390:1,40,-9,0,0,-0.851124 -86151,3004:390:2,40.5,-9,0,0,-4.12441 -86152,3004:391:1,41,-9,0,0,-1.81358 -86153,3004:391:2,41.5,-9,0,0,-1.22853 -86154,3004:392:1,42,-9,0,0,-0.975586 -86155,3004:392:2,42.5,-9,0,0,-0.793342 -86156,3004:393:1,43,-9,0,0,-0.685157 -86157,3004:393:2,43.5,-9,0,0,-0.611356 -86158,3004:394:1,44,-9,0,0,-0.543921 -86159,3004:394:2,44.5,-9,0,0,-0.485298 -86160,3004:495:1,45,-9,0,0,-0.437843 -86161,3004:495:2,45.5,-9,0,0,-0.388177 -86162,3004:496:1,46,-9,0,0,-0.329338 -86163,3004:496:2,46.5,-9,0,0,-0.28345 -86164,3004:497:1,47,-9,0,0,-0.278121 -86165,3004:497:2,47.5,-9,0,0,-0.271621 -86166,3004:498:1,48,-9,0,0,-0.271621 -86167,3004:498:2,48.5,-9,0,0,-0.288455 -86168,3004:499:1,49,-9,0,0,-0.31564 -86169,3004:499:2,49.5,-9,0,0,-0.353067 -86170,3005:390:1,50,-9,0,0,-0.388177 -86171,3005:390:2,50.5,-9,0,0,-0.407395 -86172,3005:391:1,51,-9,0,0,-0.479983 -86173,3005:391:2,51.5,-9,0,0,-0.549147 -86174,3005:392:1,52,-9,0,0,-0.550207 -86175,3005:392:2,52.5,-9,0,0,-0.532682 -86176,3005:393:1,53,-9,0,0,-0.570748 -86177,3005:393:2,53.5,-9,0,0,-0.64417 -86178,3005:394:1,54,-9,0,0,-0.750642 -86179,3005:394:2,54.5,-9,0,0,-0.915262 -86180,3005:495:1,55,-9,0,0,-1.10661 -86181,3005:495:2,55.5,-9,0,0,-1.23387 -86182,3005:496:1,56,-9,0,0,-1.23925 -86183,3005:496:2,56.5,-9,0,0,-1.08884 -86184,3005:497:1,57,-9,0,0,-0.905223 -86185,3005:497:2,57.5,-9,0,0,-0.72072 -86186,3005:498:1,58,-9,0,0,-0.606517 -86187,3005:498:2,58.5,-9,0,0,-0.515901 -86188,3005:499:1,59,-9,0,0,-0.431682 -86189,3005:499:2,59.5,-9,0,0,-0.35424 -86190,3006:390:1,60,-9,0,0,-0.306568 -86191,3006:390:2,60.5,-9,0,0,-0.269083 -86192,3006:391:1,61,-9,0,0,-0.235922 -86193,3006:391:2,61.5,-9,0,0,-0.199066 -86194,3006:392:1,62,-9,0,0,-0.199119 -86195,3006:392:2,62.5,-9,0,0,-0.263251 -86196,3006:393:1,63,-9,0,0,-0.301663 -86197,3006:393:2,63.5,-9,0,0,-0.323446 -86198,3006:394:1,64,-9,0,0,-0.340944 -86199,3006:394:2,64.5,-9,0,0,-0.356036 -86200,3006:495:1,65,-9,0,0,-0.376422 -86201,3006:495:2,65.5,-9,0,0,-0.414566 -86202,3006:496:1,66,-9,0,0,-0.43939 -86203,3006:496:2,66.5,-9,0,0,-0.430914 -86204,3006:497:1,67,-9,0,0,-0.40811 -86205,3006:497:2,67.5,-9,0,0,-0.404576 -86206,3006:498:1,68,-9,0,0,-0.440178 -86207,3006:498:2,68.5,-9,0,0,-0.523704 -86208,3006:499:1,69,-9,0,0,-0.613814 -86209,3006:499:2,69.5,-9,0,0,-0.646813 -86210,3007:390:1,70,-9,0,0,-0.632577 -86211,3007:390:2,70.5,-9,0,0,-0.653446 -86212,3007:391:1,71,-9,0,0,-0.759297 -86213,3007:391:2,71.5,-9,0,0,-0.875962 -86214,3007:392:1,72,-9,0,0,-0.957335 -86215,3007:392:2,72.5,-9,0,0,-0.915262 -86216,3007:393:2,73.5,-9,0,0,-0.807263 -86217,3007:394:1,74,-9,0,0,-0.705556 -86218,3007:394:2,74.5,-9,0,0,-0.653446 -86219,3007:495:1,75,-9,0,0,-0.616286 -86220,3007:495:2,75.5,-9,0,0,-0.593488 -86221,3007:496:1,76,-9,0,0,-0.587679 -86222,3007:496:2,76.5,-9,0,0,-0.581948 -86223,3007:497:1,77,-9,0,0,-0.574073 -86224,3007:497:2,77.5,-9,0,0,-0.560894 -86225,3007:498:1,78,-9,0,0,-0.541868 -86226,3007:498:2,78.5,-9,0,0,-0.51396 -86227,3007:499:1,79,-9,0,0,-0.473033 -86228,3007:499:2,79.5,-9,0,0,-0.418952 -86229,3008:390:1,80,-9,0,0,-0.360236 -86230,3008:390:2,80.5,-9,0,0,-0.309057 -86231,3008:391:1,81,-9,0,0,-0.264483 -86232,3008:391:2,81.5,-9,0,0,-0.223755 -86233,3008:392:1,82,-9,0,0,-0.198449 -86234,3008:392:2,82.5,-9,0,0,-0.192917 -86235,3008:393:1,83,-9,0,0,-0.190057 -86236,3008:393:2,83.5,-9,0,0,-0.188464 -86237,3008:394:1,84,-9,0,0,-0.187832 -86238,3008:394:2,84.5,-9,0,0,-0.187622 -86239,3008:495:1,85,-9,0,0,-0.1877 -86240,3008:495:2,85.5,-9,0,0,-0.18799 -86241,3008:496:1,86,-9,0,0,-0.18799 -86242,3008:496:2,86.5,-9,0,0,-0.187727 -86243,3008:497:1,87,-9,0,0,-0.187176 -86244,3008:497:2,87.5,-9,0,0,-0.186313 -86245,3008:498:1,88,-9,0,0,-0.185015 -86246,3008:498:2,88.5,-9,0,0,-0.183472 -86247,3008:499:1,89,-9,0,0,-0.181943 -86248,3008:499:2,89.5,-9,0,0,-0.18073 -86249,3009:390:1,90,-9,0,0,-0.180103 -86250,3009:390:2,90.5,-9,0,0,-0.180028 -86251,3009:391:1,91,-9,0,0,-0.180604 -86252,3009:391:2,91.5,-9,0,0,-0.181562 -86253,3009:392:1,92,-9,0,0,-0.182654 -86254,3009:392:2,92.5,-9,0,0,-0.183753 -86255,3009:393:1,93,-9,0,0,-0.184705 -86256,3009:393:2,93.5,-9,0,0,-0.185378 -86257,3009:394:1,94,-9,0,0,-0.185819 -86258,3009:394:2,94.5,-9,0,0,-0.185845 -86259,3009:495:1,95,-9,0,0,-0.185637 -86260,3009:495:2,95.5,-9,0,0,-0.185481 -86261,3009:496:1,96,-9,0,0,-0.185145 -86262,3009:496:2,96.5,-9,0,0,-0.184628 -86263,3009:497:1,97,-9,0,0,-0.183856 -86264,3009:497:2,97.5,-9,0,0,-0.182884 -86265,3009:498:1,98,-9,0,0,-0.181993 -86266,3009:498:2,98.5,-9,0,0,-0.181715 -86267,3009:499:1,99,-9,0,0,-0.182527 -86268,3009:499:2,99.5,-9,0,0,-0.183907 -86269,3010:390:1,100,-9,0,0,-0.185689 -86270,3010:390:2,100.5,-9,0,0,-0.187779 -86271,3010:391:1,101,-9,0,0,-0.190591 -86272,3010:391:2,101.5,-9,0,0,-0.194391 -86273,3010:392:1,102,-9,0,0,-0.198699 -86274,3010:392:2,102.5,-9,0,0,-0.210987 -86275,3010:393:1,103,-9,0,0,-0.224407 -86276,3010:393:2,103.5,-9,0,0,-0.230244 -86277,3010:394:1,104,-9,0,0,-0.23342 -86278,3010:394:2,104.5,-9,0,0,-0.242891 -86279,3010:495:1,105,-9,0,0,-0.275059 -86280,3010:495:2,105.5,-9,0,0,-0.354838 -86281,3010:496:1,106,-9,0,0,-0.461174 -86282,3010:496:2,106.5,-9,0,0,-0.54809 -86283,3010:497:1,107,-9,0,0,-0.638968 -86284,3010:497:2,107.5,-9,0,0,-0.727843 -86285,3010:498:1,108,-9,0,0,-0.898653 -86286,3010:498:2,108.5,-9,0,0,-1.09328 -86287,3010:499:1,109,-9,0,0,-1.23925 -86288,3010:499:2,109.5,-9,0,0,-1.30036 -86289,3011:390:1,110,-9,0,0,-1.44477 -86290,3011:390:2,110.5,-9,0,0,-1.88497 -86291,3011:391:1,111,-9,0,0,-2.62035 -86292,3011:391:2,111.5,-9,0,0,-3.74949 -86293,3011:392:1,112,-9,0,0,-6.20082 -86294,3011:392:2,112.5,-9,0,0,-13.7131 -86295,3011:393:1,113,-9,0,0,-29.1935 -86296,3011:393:2,113.5,-9,0,0,79.6842 -86297,3011:394:1,114,-9,0,0,6.64017 -86298,3011:394:2,114.5,-9,0,0,3.39778 -86299,3011:495:1,115,-9,0,0,2.02549 -86300,3011:495:2,115.5,-9,0,0,1.91159 -86301,3011:496:1,116,-9,0,0,1.9865 -86302,3011:496:2,116.5,-9,0,0,2.27149 -86303,3011:497:1,117,-9,0,0,2.50039 -86304,3011:497:2,117.5,-9,0,0,2.60739 -86305,3011:498:1,118,-9,0,0,2.94863 -86306,3011:498:2,118.5,-9,0,0,2.71845 -86307,3011:499:1,119,-9,0,0,2.2281 -86308,3011:499:2,119.5,-9,0,0,2.03759 -86309,3012:390:1,120,-9,0,0,1.90161 -86310,3012:391:2,121.5,-9,0,0,1.70011 -86311,3012:392:1,122,-9,0,0,1.48788 -86312,3012:392:2,122.5,-9,0,0,1.42396 -86313,3012:393:1,123,-9,0,0,1.78488 -86314,3012:393:2,123.5,-9,0,0,1.35991 -86315,3012:495:1,125,-9,0,0,1.40804 -86316,3012:495:2,125.5,-9,0,0,1.47959 -86317,3012:496:1,126,-9,0,0,1.38973 -86318,3012:496:2,126.5,-9,0,0,1.51852 -86319,3012:497:1,127,-9,0,0,1.45829 -86320,3012:497:2,127.5,-9,0,0,1.2844 -86321,3012:498:1,128,-9,0,0,1.21966 -86322,3012:498:2,128.5,-9,0,0,1.18986 -86323,3012:499:1,129,-9,0,0,1.18021 -86324,3012:499:2,129.5,-9,0,0,1.20278 -86325,3013:390:1,130,-9,0,0,1.19471 -86326,3013:390:2,130.5,-9,0,0,1.17316 -86327,3013:391:1,131,-9,0,0,1.16529 -86328,3013:391:2,131.5,-9,0,0,1.1777 -86329,3013:392:1,132,-9,0,0,1.19314 -86330,3013:392:2,132.5,-9,0,0,1.19392 -86331,3013:393:1,133,-9,0,0,1.18385 -86332,3013:393:2,133.5,-9,0,0,1.20011 -86333,3013:394:1,134,-9,0,0,1.24024 -86334,3013:394:2,134.5,-9,0,0,1.28878 -86335,3013:495:1,135,-9,0,0,1.39287 -86336,3013:495:2,135.5,-9,0,0,1.70939 -86337,3013:496:1,136,-9,0,0,2.37212 -86338,3013:496:2,136.5,-9,0,0,3.46209 -86339,3013:497:1,137,-9,0,0,18.0323 -86340,3013:497:2,137.5,-9,0,0,-11.999 -86341,3013:498:1,138,-9,0,0,6.64017 -86342,3013:498:2,138.5,-9,0,0,2.86317 -86343,3013:499:1,139,-9,0,0,2.37847 -86344,3013:499:2,139.5,-9,0,0,2.15741 -86345,3014:390:1,140,-9,0,0,1.89498 -86346,3014:390:2,140.5,-9,0,0,1.68207 -86347,3014:391:1,141,-9,0,0,1.52465 -86348,3014:391:2,141.5,-9,0,0,1.32951 -86349,3014:392:1,142,-9,0,0,1.36854 -86350,3014:393:1,143,-9,0,0,2.19696 -86351,3014:393:2,143.5,-9,0,0,-4.12441 -86352,3014:394:1,144,-9,0,0,-0.679488 -86353,3014:394:2,144.5,-9,0,0,-0.254395 -86354,3014:495:1,145,-9,0,0,-0.3177 -86355,3014:495:2,145.5,-9,0,0,-0.368844 -86356,3014:496:1,146,-9,0,0,-0.387507 -86357,3014:496:2,146.5,-9,0,0,-0.519783 -86358,3014:497:1,147,-9,0,0,-0.842097 -86359,3014:497:2,147.5,-9,0,0,-0.526664 -86360,3014:498:1,148,-9,0,0,-0.199812 -86361,3014:498:2,148.5,-9,0,0,-0.448918 -86362,3015:391:1,151,-9,0,0,-4.24979 -86363,3015:391:2,151.5,-9,0,0,8.41459 -86364,3015:392:1,152,-9,0,0,2.5298 -86365,3015:392:2,152.5,-9,0,0,2.21245 -86366,3015:393:1,153,-9,0,0,1.96058 -86367,3015:393:2,153.5,-9,0,0,1.79036 -86368,3015:394:1,154,-9,0,0,1.69329 -86369,3015:394:2,154.5,-9,0,0,1.65622 -86370,3015:495:1,155,-9,0,0,1.64992 -86371,3015:495:2,155.5,-9,0,0,1.62376 -86372,3015:496:1,156,-9,0,0,1.60278 -86373,3015:496:2,156.5,-9,0,0,1.57564 -86374,3015:497:1,157,-9,0,0,1.55186 -86375,3015:497:2,157.5,-9,0,0,1.54204 -86376,3015:498:1,158,-9,0,0,1.52465 -86377,3015:498:2,158.5,-9,0,0,1.55348 -86378,3015:499:1,159,-9,0,0,1.66894 -86379,3015:499:2,159.5,-9,0,0,1.75847 -86380,3016:390:1,160,-9,0,0,1.92184 -86381,3016:390:2,160.5,-9,0,0,2.32928 -86382,3016:391:1,161,-9,0,0,2.88378 -86383,3016:391:2,161.5,-9,0,0,9.66698 -86384,3016:392:1,162,-9,0,0,-9.7719 -86385,3016:392:2,162.5,-9,0,0,-6.0316 -86386,3016:393:1,163,-9,0,0,-12.3098 -86387,3016:393:2,163.5,-9,0,0,-15.4623 -86388,3016:394:1,164,-9,0,0,-29.1935 -86389,3016:394:2,164.5,-9,0,0,33.825 -86390,3016:495:1,165,-9,0,0,20.0054 -86391,3016:495:2,165.5,-9,0,0,19.314 -86392,3016:496:1,166,-9,0,0,61.0431 -86393,3016:496:2,166.5,-9,0,0,925.558 -86394,3016:497:1,167,-9,0,0,23.4911 -86395,3016:497:2,167.5,-9,0,0,19.314 -86396,3016:498:1,168,-9,0,0,15.0827 -86397,3016:498:2,168.5,-9,0,0,17.4548 -86398,3016:499:1,169,-9,0,0,27.0086 -86399,3016:499:2,169.5,-9,0,0,54.8408 -86400,3017:390:1,170,-9,0,0,-79.6926 -86401,3017:390:2,170.5,-9,0,0,-19.8636 -86402,3017:391:1,171,-9,0,0,-9.19815 -86403,3017:391:2,171.5,-9,0,0,-4.47573 -86404,3017:392:1,172,-9,0,0,-3.23664 -86405,3017:392:2,172.5,-9,0,0,-3.34562 -86406,3017:393:1,173,-9,0,0,-3.7844 -86407,3017:393:2,173.5,-9,0,0,-2.10331 -86408,3017:394:1,174,-9,0,0,-1.45167 -86409,3017:394:2,174.5,-9,0,0,-1.41127 -86410,3017:495:1,175,-9,0,0,-1.37263 -86411,3017:495:2,175.5,-9,0,0,-1.28898 -86412,3017:496:1,176,-9,0,0,-1.19244 -86413,3017:496:2,176.5,-9,0,0,-1.17252 -86414,3017:497:1,177,-9,0,0,-1.15311 -86415,3017:497:2,177.5,-9,0,0,-1.13876 -86416,3017:498:1,178,-9,0,0,-1.16268 -86417,3017:498:2,178.5,-9,0,0,-1.18737 -86418,3017:499:1,179,-9,0,0,-1.24995 -86419,3017:499:2,179.5,-9,0,0,-1.47245 -86420,3018:390:1,180,-9,0,0,-1.89559 -86421,5018:380:3,-180,-8.5,0,0,-60.8518 -86422,5017:489:4,-179.5,-8.5,0,0,14.6812 -86423,5017:489:3,-179,-8.5,0,0,7.75136 -86424,5017:488:4,-178.5,-8.5,0,0,5.47185 -86425,5017:488:3,-178,-8.5,0,0,4.0578 -86426,5017:487:4,-177.5,-8.5,0,0,3.30674 -86427,5017:487:3,-177,-8.5,0,0,2.86317 -86428,5017:486:4,-176.5,-8.5,0,0,2.62382 -86429,5017:486:3,-176,-8.5,0,0,2.60739 -86430,5017:485:4,-175.5,-8.5,0,0,2.62382 -86431,5017:485:3,-175,-8.5,0,0,2.66585 -86432,5017:384:4,-174.5,-8.5,0,0,2.65726 -86433,5017:384:3,-174,-8.5,0,0,2.60739 -86434,5017:383:4,-173.5,-8.5,0,0,2.54474 -86435,5017:383:3,-173,-8.5,0,0,2.46483 -86436,5017:382:4,-172.5,-8.5,0,0,2.45089 -86437,5017:382:3,-172,-8.5,0,0,2.48591 -86438,5017:381:4,-171.5,-8.5,0,0,2.48591 -86439,5017:381:3,-171,-8.5,0,0,2.41717 -86440,5017:380:4,-170.5,-8.5,0,0,2.28834 -86441,5017:380:3,-170,-8.5,0,0,2.20209 -86442,5016:489:4,-169.5,-8.5,0,0,2.17693 -86443,5016:489:3,-169,-8.5,0,0,2.18193 -86444,5016:488:4,-168.5,-8.5,0,0,2.17196 -86445,5016:488:3,-168,-8.5,0,0,2.20726 -86446,5016:487:4,-167.5,-8.5,0,0,2.2228 -86447,5016:487:3,-167,-8.5,0,0,2.19202 -86448,5016:486:4,-166.5,-8.5,0,0,2.15257 -86449,5016:486:3,-166,-8.5,0,0,2.13838 -86450,5016:485:4,-165.5,-8.5,0,0,2.08848 -86451,5016:485:3,-165,-8.5,0,0,1.99416 -86452,5016:384:4,-164.5,-8.5,0,0,1.89498 -86453,5016:384:3,-164,-8.5,0,0,1.84478 -86454,5016:383:4,-163.5,-8.5,0,0,1.86004 -86455,5016:383:3,-163,-8.5,0,0,1.91498 -86456,5016:382:4,-162.5,-8.5,0,0,1.96794 -86457,5016:382:3,-162,-8.5,0,0,1.99032 -86458,5016:381:4,-161.5,-8.5,0,0,2.0018 -86459,5016:381:3,-161,-8.5,0,0,1.99416 -86460,5016:380:4,-160.5,-8.5,0,0,1.95693 -86461,5016:380:3,-160,-8.5,0,0,1.89498 -86462,5015:489:4,-159.5,-8.5,0,0,1.8757 -86463,5015:489:3,-159,-8.5,0,0,1.9184 -86464,5015:488:4,-158.5,-8.5,0,0,2.0018 -86465,5015:488:3,-158,-8.5,0,0,2.10173 -86466,5015:487:4,-157.5,-8.5,0,0,2.19202 -86467,5015:487:3,-157,-8.5,0,0,2.31142 -86468,5015:486:4,-156.5,-8.5,0,0,2.5223 -86469,5015:486:3,-156,-8.5,0,0,2.8029 -86470,5015:485:4,-155.5,-8.5,0,0,3.19347 -86471,5015:485:3,-155,-8.5,0,0,3.9876 -86472,5015:384:4,-154.5,-8.5,0,0,5.66824 -86473,5015:384:3,-154,-8.5,0,0,8.92746 -86474,5015:383:4,-153.5,-8.5,0,0,16.9301 -86475,5015:383:3,-153,-8.5,0,0,337.61 -86476,5015:382:4,-152.5,-8.5,0,0,-14.1166 -86477,5015:382:3,-152,-8.5,0,0,-6.20082 -86478,5015:381:4,-151.5,-8.5,0,0,-3.92893 -86479,5015:381:3,-151,-8.5,0,0,-2.83582 -86480,5015:380:4,-150.5,-8.5,0,0,-2.11607 -86481,5015:380:3,-150,-8.5,0,0,-1.78451 -86482,5014:489:4,-149.5,-8.5,0,0,-1.64122 -86483,5014:489:3,-149,-8.5,0,0,-1.45167 -86484,5014:488:4,-148.5,-8.5,0,0,-1.17252 -86485,5014:488:3,-148,-8.5,0,0,-0.901879 -86486,5014:487:4,-147.5,-8.5,0,0,-0.715526 -86487,5014:487:3,-147,-8.5,0,0,-0.630014 -86488,5014:486:4,-146.5,-8.5,0,0,-0.574073 -86489,5014:486:3,-146,-8.5,0,0,-0.568523 -86490,5014:485:4,-145.5,-8.5,0,0,-0.591141 -86491,5014:485:3,-145,-8.5,0,0,-0.579698 -86492,5014:384:4,-144.5,-8.5,0,0,-0.521724 -86493,5014:384:3,-144,-8.5,0,0,-0.467041 -86494,5014:383:4,-143.5,-8.5,0,0,-0.43628 -86495,5014:383:3,-143,-8.5,0,0,-0.399012 -86496,5014:382:4,-142.5,-8.5,0,0,-0.351881 -86497,5014:382:3,-142,-8.5,0,0,-0.331509 -86498,5014:381:4,-141.5,-8.5,0,0,-0.318205 -86499,5014:381:3,-141,-8.5,0,0,-0.298296 -86500,5014:380:4,-140.5,-8.5,0,0,-0.279884 -86501,5014:380:3,-140,-8.5,0,0,-0.257975 -86502,5013:489:4,-139.5,-8.5,0,0,-0.237013 -86503,5013:489:3,-139,-8.5,0,0,-0.21542 -86504,5013:488:4,-138.5,-8.5,0,0,-0.201314 -86505,5013:488:3,-138,-8.5,0,0,-0.197692 -86506,5013:487:4,-137.5,-8.5,0,0,-0.196188 -86507,5013:487:3,-137,-8.5,0,0,-0.194915 -86508,5013:486:4,-136.5,-8.5,0,0,-0.192828 -86509,5013:486:3,-136,-8.5,0,0,-0.190886 -86510,5013:485:4,-135.5,-8.5,0,0,-0.18865 -86511,5013:485:3,-135,-8.5,0,0,-0.186548 -86512,5013:384:4,-134.5,-8.5,0,0,-0.184757 -86513,5013:384:3,-134,-8.5,0,0,-0.182859 -86514,5013:383:4,-133.5,-8.5,0,0,-0.181108 -86515,5013:383:3,-133,-8.5,0,0,-0.180002 -86516,5013:382:4,-132.5,-8.5,0,0,-0.179078 -86517,5013:382:3,-132,-8.5,0,0,-0.177666 -86518,5013:381:4,-131.5,-8.5,0,0,-0.175973 -86519,5013:381:3,-131,-8.5,0,0,-0.174395 -86520,5013:380:4,-130.5,-8.5,0,0,-0.172737 -86521,5013:380:3,-130,-8.5,0,0,-0.170909 -86522,5012:489:4,-129.5,-8.5,0,0,-0.169103 -86523,5012:489:3,-129,-8.5,0,0,-0.167573 -86524,5012:488:4,-128.5,-8.5,0,0,-0.166286 -86525,5012:488:3,-128,-8.5,0,0,-0.16517 -86526,5012:487:4,-127.5,-8.5,0,0,-0.164062 -86527,5012:487:3,-127,-8.5,0,0,-0.162784 -86528,5012:486:4,-126.5,-8.5,0,0,-0.161253 -86529,5012:486:3,-126,-8.5,0,0,-0.160021 -86530,5012:485:4,-125.5,-8.5,0,0,-0.159018 -86531,5012:485:3,-125,-8.5,0,0,-0.157914 -86532,5012:384:4,-124.5,-8.5,0,0,-0.156819 -86533,5012:384:3,-124,-8.5,0,0,-0.155859 -86534,5012:383:4,-123.5,-8.5,0,0,-0.154886 -86535,5012:383:3,-123,-8.5,0,0,-0.153688 -86536,5012:382:4,-122.5,-8.5,0,0,-0.152253 -86537,5012:382:3,-122,-8.5,0,0,-0.150752 -86538,5012:381:4,-121.5,-8.5,0,0,-0.149186 -86539,5012:381:3,-121,-8.5,0,0,-0.147459 -86540,5012:380:4,-120.5,-8.5,0,0,-0.145518 -86541,5012:380:3,-120,-8.5,0,0,-0.143548 -86542,5011:489:4,-119.5,-8.5,0,0,-0.141741 -86543,5011:489:3,-119,-8.5,0,0,-0.140111 -86544,5011:488:4,-118.5,-8.5,0,0,-0.138563 -86545,5011:488:3,-118,-8.5,0,0,-0.136753 -86546,5011:487:4,-117.5,-8.5,0,0,-0.13605 -86547,5011:487:3,-117,-8.5,0,0,-0.13605 -86548,5011:486:4,-116.5,-8.5,0,0,-0.13605 -86549,5011:486:3,-116,-8.5,0,0,-0.13605 -86550,5011:485:4,-115.5,-8.5,0,0,-0.13605 -86551,5011:485:3,-115,-8.5,0,0,-0.13605 -86552,5011:384:4,-114.5,-8.5,0,0,-0.13605 -86553,5011:384:3,-114,-8.5,0,0,-0.13605 -86554,5011:383:4,-113.5,-8.5,0,0,-0.13605 -86555,5011:383:3,-113,-8.5,0,0,-0.13605 -86556,5011:382:4,-112.5,-8.5,0,0,-0.13605 -86557,5011:382:3,-112,-8.5,0,0,-0.13605 -86558,5011:381:4,-111.5,-8.5,0,0,-0.13605 -86559,5011:381:3,-111,-8.5,0,0,-0.13605 -86560,5011:380:4,-110.5,-8.5,0,0,-0.13605 -86561,5011:380:3,-110,-8.5,0,0,-0.13605 -86562,5010:489:4,-109.5,-8.5,0,0,-0.13605 -86563,5010:489:3,-109,-8.5,0,0,-0.13605 -86564,5010:488:4,-108.5,-8.5,0,0,-0.13605 -86565,5010:488:3,-108,-8.5,0,0,-0.13605 -86566,5010:487:4,-107.5,-8.5,0,0,-0.13605 -86567,5010:487:3,-107,-8.5,0,0,-0.13605 -86568,5010:486:4,-106.5,-8.5,0,0,-0.13605 -86569,5010:486:3,-106,-8.5,0,0,-0.13605 -86570,5010:485:4,-105.5,-8.5,0,0,-0.13605 -86571,5010:485:3,-105,-8.5,0,0,-0.13605 -86572,5010:384:4,-104.5,-8.5,0,0,-0.13605 -86573,5010:384:3,-104,-8.5,0,0,-0.13605 -86574,5010:383:4,-103.5,-8.5,0,0,-0.13605 -86575,5010:383:3,-103,-8.5,0,0,-0.13605 -86576,5010:382:4,-102.5,-8.5,0,0,-0.13605 -86577,5010:382:3,-102,-8.5,0,0,-0.13605 -86578,5010:381:4,-101.5,-8.5,0,0,-0.13605 -86579,5010:381:3,-101,-8.5,0,0,-0.13605 -86580,5010:380:4,-100.5,-8.5,0,0,-0.13605 -86581,5010:380:3,-100,-8.5,0,0,-0.13605 -86582,5009:489:4,-99.5,-8.5,0,0,-0.13605 -86583,5009:489:3,-99,-8.5,0,0,-0.13605 -86584,5009:488:4,-98.5,-8.5,0,0,-0.13605 -86585,5009:488:3,-98,-8.5,0,0,-0.13605 -86586,5009:487:4,-97.5,-8.5,0,0,-0.13605 -86587,5009:487:3,-97,-8.5,0,0,-0.13605 -86588,5009:486:4,-96.5,-8.5,0,0,-0.13605 -86589,5009:486:3,-96,-8.5,0,0,-0.13605 -86590,5009:485:4,-95.5,-8.5,0,0,-0.13605 -86591,5009:485:3,-95,-8.5,0,0,-0.13605 -86592,5009:384:4,-94.5,-8.5,0,0,-0.13605 -86593,5009:384:3,-94,-8.5,0,0,-0.13605 -86594,5009:383:4,-93.5,-8.5,0,0,-0.13605 -86595,5009:383:3,-93,-8.5,0,0,-0.13605 -86596,5009:382:4,-92.5,-8.5,0,0,-0.13605 -86597,5009:382:3,-92,-8.5,0,0,-0.13605 -86598,5009:381:4,-91.5,-8.5,0,0,-0.13605 -86599,5009:381:3,-91,-8.5,0,0,-0.13605 -86600,5009:380:4,-90.5,-8.5,0,0,-0.13605 -86601,5009:380:3,-90,-8.5,0,0,-0.13605 -86602,5008:489:4,-89.5,-8.5,0,0,-0.13605 -86603,5008:489:3,-89,-8.5,0,0,-0.13605 -86604,5008:488:4,-88.5,-8.5,0,0,-0.13605 -86605,5008:488:3,-88,-8.5,0,0,-0.13605 -86606,5008:487:4,-87.5,-8.5,0,0,-0.13605 -86607,5008:487:3,-87,-8.5,0,0,-0.13605 -86608,5008:486:4,-86.5,-8.5,0,0,-0.13605 -86609,5008:486:3,-86,-8.5,0,0,-0.13605 -86610,5008:485:4,-85.5,-8.5,0,0,-0.13605 -86611,5008:485:3,-85,-8.5,0,0,-0.13605 -86612,5008:384:4,-84.5,-8.5,0,0,-0.13605 -86613,5008:384:3,-84,-8.5,0,0,-0.13605 -86614,5008:383:4,-83.5,-8.5,0,0,-0.13605 -86615,5008:383:3,-83,-8.5,0,0,-0.13605 -86616,5008:382:4,-82.5,-8.5,0,0,-0.13605 -86617,5008:382:3,-82,-8.5,0,0,-0.13605 -86618,5008:381:4,-81.5,-8.5,0,0,-0.13605 -86619,5008:381:3,-81,-8.5,0,0,-0.13605 -86620,5008:380:4,-80.5,-8.5,0,0,-0.13605 -86621,5008:380:3,-80,-8.5,0,0,-0.13605 -86622,5007:489:4,-79.5,-8.5,0,0,-0.13605 -86623,5007:489:3,-79,-8.5,0,0,-0.13605 -86624,5007:488:4,-78.5,-8.5,0,0,-0.13605 -86625,5003:485:4,-35.5,-8.5,0,0,-0.185559 -86626,5003:485:3,-35,-8.5,0,0,-0.179228 -86627,5003:384:4,-34.5,-8.5,0,0,-0.175851 -86628,5003:384:3,-34,-8.5,0,0,-0.173503 -86629,5003:383:4,-33.5,-8.5,0,0,-0.171524 -86630,5003:383:3,-33,-8.5,0,0,-0.170109 -86631,5003:382:4,-32.5,-8.5,0,0,-0.168847 -86632,5003:382:3,-32,-8.5,0,0,-0.167411 -86633,5003:381:4,-31.5,-8.5,0,0,-0.16592 -86634,5003:381:3,-31,-8.5,0,0,-0.164084 -86635,5003:380:4,-30.5,-8.5,0,0,-0.161672 -86636,5003:380:3,-30,-8.5,0,0,-0.159432 -86637,5002:489:4,-29.5,-8.5,0,0,-0.157569 -86638,5002:489:3,-29,-8.5,0,0,-0.156306 -86639,5002:488:4,-28.5,-8.5,0,0,-0.155118 -86640,5002:488:3,-28,-8.5,0,0,-0.153647 -86641,5002:487:4,-27.5,-8.5,0,0,-0.15213 -86642,5002:487:3,-27,-8.5,0,0,-0.150691 -86643,5002:486:4,-26.5,-8.5,0,0,-0.149591 -86644,5002:486:3,-26,-8.5,0,0,-0.149004 -86645,5002:485:4,-25.5,-8.5,0,0,-0.147999 -86646,5002:485:3,-25,-8.5,0,0,-0.146644 -86647,5002:384:4,-24.5,-8.5,0,0,-0.144734 -86648,5002:384:3,-24,-8.5,0,0,-0.144033 -86649,5002:383:4,-23.5,-8.5,0,0,-0.143994 -86650,5002:383:3,-23,-8.5,0,0,-0.141798 -86651,5002:382:4,-22.5,-8.5,0,0,-0.140677 -86652,5002:382:3,-22,-8.5,0,0,-0.139491 -86653,5002:381:4,-21.5,-8.5,0,0,-0.138193 -86654,5002:381:3,-21,-8.5,0,0,-0.137337 -86655,5002:380:4,-20.5,-8.5,0,0,-0.136266 -86656,5002:380:3,-20,-8.5,0,0,-0.13605 -86657,5001:489:4,-19.5,-8.5,0,0,-0.13605 -86658,5001:489:3,-19,-8.5,0,0,-0.13605 -86659,5001:488:4,-18.5,-8.5,0,0,-0.13605 -86660,5001:488:3,-18,-8.5,0,0,-0.13605 -86661,5001:487:4,-17.5,-8.5,0,0,-0.13605 -86662,5001:487:3,-17,-8.5,0,0,-0.13605 -86663,5001:486:4,-16.5,-8.5,0,0,-0.13605 -86664,5001:486:3,-16,-8.5,0,0,-0.13605 -86665,5001:485:4,-15.5,-8.5,0,0,-0.13605 -86666,5001:485:3,-15,-8.5,0,0,-0.13605 -86667,5001:384:4,-14.5,-8.5,0,0,-0.13605 -86668,5001:384:3,-14,-8.5,0,0,-0.13605 -86669,5001:383:4,-13.5,-8.5,0,0,-0.13605 -86670,5001:383:3,-13,-8.5,0,0,-0.13605 -86671,5001:382:4,-12.5,-8.5,0,0,-0.13605 -86672,5001:382:3,-12,-8.5,0,0,-0.13605 -86673,5001:381:4,-11.5,-8.5,0,0,-0.13605 -86674,5001:381:3,-11,-8.5,0,0,-0.13605 -86675,5001:380:4,-10.5,-8.5,0,0,-0.13605 -86676,5001:380:3,-10,-8.5,0,0,-0.13605 -86677,5000:489:4,-9.5,-8.5,0,0,-0.13605 -86678,5000:489:3,-9,-8.5,0,0,-0.13605 -86679,5000:488:4,-8.5,-8.5,0,0,-0.13605 -86680,5000:488:3,-8,-8.5,0,0,-0.13605 -86681,5000:487:4,-7.5,-8.5,0,0,-0.13605 -86682,5000:487:3,-7,-8.5,0,0,-0.13605 -86683,5000:486:4,-6.5,-8.5,0,0,-0.13605 -86684,5000:486:3,-6,-8.5,0,0,-0.13605 -86685,5000:485:4,-5.5,-8.5,0,0,-0.13605 -86686,5000:485:3,-5,-8.5,0,0,-0.13605 -86687,5000:384:4,-4.5,-8.5,0,0,-0.13605 -86688,5000:384:3,-4,-8.5,0,0,-0.13605 -86689,5000:383:4,-3.5,-8.5,0,0,-0.13605 -86690,5000:383:3,-3,-8.5,0,0,-0.13605 -86691,5000:382:4,-2.5,-8.5,0,0,-0.13605 -86692,5000:382:3,-2,-8.5,0,0,-0.13605 -86693,5000:381:4,-1.5,-8.5,0,0,-0.13605 -86694,5000:381:3,-1,-8.5,0,0,-0.13605 -86695,5000:380:4,-0.5,-8.5,0,0,-0.13605 -86696,3000:380:4,0,-8.5,0,0,-0.13605 -86697,3000:380:4,0.5,-8.5,0,0,-0.13605 -86698,3000:381:3,1,-8.5,0,0,-0.13605 -86699,3000:381:4,1.5,-8.5,0,0,-0.13605 -86700,3000:382:3,2,-8.5,0,0,-0.13605 -86701,3000:382:4,2.5,-8.5,0,0,-0.13605 -86702,3000:383:3,3,-8.5,0,0,-0.13605 -86703,3000:383:4,3.5,-8.5,0,0,-0.13605 -86704,3000:384:3,4,-8.5,0,0,-0.13605 -86705,3000:384:4,4.5,-8.5,0,0,-0.13605 -86706,3000:485:3,5,-8.5,0,0,-0.13605 -86707,3000:485:4,5.5,-8.5,0,0,-0.137003 -86708,3000:486:3,6,-8.5,0,0,-0.140942 -86709,3000:486:4,6.5,-8.5,0,0,-0.145479 -86710,3000:487:3,7,-8.5,0,0,-0.149956 -86711,3000:487:4,7.5,-8.5,0,0,-0.154801 -86712,3000:488:3,8,-8.5,0,0,-0.159999 -86713,3000:488:4,8.5,-8.5,0,0,-0.165147 -86714,3000:489:3,9,-8.5,0,0,-0.170508 -86715,3000:489:4,9.5,-8.5,0,0,-0.174346 -86716,3001:380:3,10,-8.5,0,0,-0.177419 -86717,3001:380:4,10.5,-8.5,0,0,-0.180403 -86718,3001:381:3,11,-8.5,0,0,-0.182247 -86719,3001:381:4,11.5,-8.5,0,0,-0.180228 -86720,3001:382:3,12,-8.5,0,0,-0.172023 -86721,3001:382:4,12.5,-8.5,0,0,-0.153752 -86722,3003:489:4,39.5,-8.5,0,0,-1.31799 -86723,3004:380:3,40,-8.5,0,0,-3.0841 -86724,3004:380:4,40.5,-8.5,0,0,-1.4654 -86725,3004:381:3,41,-8.5,0,0,-1.7286 -86726,3004:381:4,41.5,-8.5,0,0,-1.65796 -86727,3004:382:3,42,-8.5,0,0,-1.52291 -86728,3004:382:4,42.5,-8.5,0,0,-1.41127 -86729,3004:383:3,43,-8.5,0,0,-1.22853 -86730,3004:383:4,43.5,-8.5,0,0,-0.998346 -86731,3004:384:3,44,-8.5,0,0,-0.796031 -86732,3004:384:4,44.5,-8.5,0,0,-0.661499 -86733,3004:485:3,45,-8.5,0,0,-0.553371 -86734,3004:485:4,45.5,-8.5,0,0,-0.426365 -86735,3004:486:4,46.5,-8.5,0,0,-0.321869 -86736,3004:487:3,47,-8.5,0,0,-0.391527 -86737,3004:487:4,47.5,-8.5,0,0,-0.417476 -86738,3004:488:3,48,-8.5,0,0,-0.431682 -86739,3004:488:4,48.5,-8.5,0,0,-0.476491 -86740,3004:489:3,49,-8.5,0,0,-0.544967 -86741,3004:489:4,49.5,-8.5,0,0,-0.621233 -86742,3005:380:3,50,-8.5,0,0,-0.652104 -86743,3005:380:4,50.5,-8.5,0,0,-0.593488 -86744,3005:381:3,51,-8.5,0,0,-0.492488 -86745,3005:381:4,51.5,-8.5,0,0,-0.689486 -86746,3005:382:3,52,-8.5,0,0,-0.702616 -86747,3005:382:4,52.5,-8.5,0,0,-0.688039 -86748,3005:383:3,53,-8.5,0,0,-0.807263 -86749,3005:383:4,53.5,-8.5,0,0,-1.08443 -86750,3005:384:3,54,-8.5,0,0,-1.4584 -86751,3005:384:4,54.5,-8.5,0,0,-1.82355 -86752,3005:485:3,55,-8.5,0,0,-2.18143 -86753,3005:485:4,55.5,-8.5,0,0,-2.23613 -86754,3005:486:3,56,-8.5,0,0,-2.01824 -86755,3005:486:4,56.5,-8.5,0,0,-1.55304 -86756,3005:487:3,57,-8.5,0,0,-1.08443 -86757,3005:487:4,57.5,-8.5,0,0,-0.759297 -86758,3005:488:3,58,-8.5,0,0,-0.613814 -86759,3005:488:4,58.5,-8.5,0,0,-0.518801 -86760,3005:489:3,59,-8.5,0,0,-0.4332 -86761,3005:489:4,59.5,-8.5,0,0,-0.363899 -86762,3006:380:3,60,-8.5,0,0,-0.30607 -86763,3006:380:4,60.5,-8.5,0,0,-0.280763 -86764,3006:381:3,61,-8.5,0,0,-0.259177 -86765,3006:381:4,61.5,-8.5,0,0,-0.275059 -86766,3006:382:3,62,-8.5,0,0,-0.325032 -86767,3006:382:4,62.5,-8.5,0,0,-0.338131 -86768,3006:383:3,63,-8.5,0,0,-0.336448 -86769,3006:383:4,63.5,-8.5,0,0,-0.335906 -86770,3006:384:3,64,-8.5,0,0,-0.342638 -86771,3006:384:4,64.5,-8.5,0,0,-0.360846 -86772,3006:485:3,65,-8.5,0,0,-0.403187 -86773,3006:485:4,65.5,-8.5,0,0,-0.477367 -86774,3006:486:3,66,-8.5,0,0,-0.550207 -86775,3006:486:4,66.5,-8.5,0,0,-0.590007 -86776,3006:487:3,67,-8.5,0,0,-0.585399 -86777,3006:487:4,67.5,-8.5,0,0,-0.575199 -86778,3006:488:3,68,-8.5,0,0,-0.61749 -86779,3006:488:4,68.5,-8.5,0,0,-0.748484 -86780,3006:489:3,69,-8.5,0,0,-0.932435 -86781,3006:489:4,69.5,-8.5,0,0,-1.00224 -86782,3007:380:3,70,-8.5,0,0,-1.00997 -86783,3007:380:4,70.5,-8.5,0,0,-1.15795 -86784,3007:381:3,71,-8.5,0,0,-1.43114 -86785,3007:381:4,71.5,-8.5,0,0,-1.60018 -86786,3007:382:3,72,-8.5,0,0,-1.69254 -86787,3007:382:4,72.5,-8.5,0,0,-1.59213 -86788,3007:383:4,73.5,-8.5,0,0,-1.45167 -86789,3007:384:3,74,-8.5,0,0,-1.31799 -86790,3007:384:4,74.5,-8.5,0,0,-1.20768 -86791,3007:485:3,75,-8.5,0,0,-1.13876 -86792,3007:485:4,75.5,-8.5,0,0,-1.11116 -86793,3007:486:3,76,-8.5,0,0,-1.09774 -86794,3007:486:4,76.5,-8.5,0,0,-1.01392 -86795,3007:487:3,77,-8.5,0,0,-0.911966 -86796,3007:487:4,77.5,-8.5,0,0,-0.833119 -86797,3007:488:3,78,-8.5,0,0,-0.77181 -86798,3007:488:4,78.5,-8.5,0,0,-0.729692 -86799,3007:489:3,79,-8.5,0,0,-0.704061 -86800,3007:489:4,79.5,-8.5,0,0,-0.666959 -86801,3008:380:3,80,-8.5,0,0,-0.575199 -86802,3008:380:4,80.5,-8.5,0,0,-0.467041 -86803,3008:381:3,81,-8.5,0,0,-0.390174 -86804,3008:381:4,81.5,-8.5,0,0,-0.339242 -86805,3008:382:3,82,-8.5,0,0,-0.280763 -86806,3008:382:4,82.5,-8.5,0,0,-0.2292 -86807,3008:383:3,83,-8.5,0,0,-0.198314 -86808,3008:383:4,83.5,-8.5,0,0,-0.193262 -86809,3008:384:3,84,-8.5,0,0,-0.191208 -86810,3008:384:4,84.5,-8.5,0,0,-0.190591 -86811,3008:485:3,85,-8.5,0,0,-0.190725 -86812,3008:485:4,85.5,-8.5,0,0,-0.191127 -86813,3008:486:3,86,-8.5,0,0,-0.191611 -86814,3008:486:4,86.5,-8.5,0,0,-0.192259 -86815,3008:487:3,87,-8.5,0,0,-0.1928 -86816,3008:487:4,87.5,-8.5,0,0,-0.193046 -86817,3008:488:3,88,-8.5,0,0,-0.193046 -86818,3008:488:4,88.5,-8.5,0,0,-0.192637 -86819,3008:489:3,89,-8.5,0,0,-0.191989 -86820,3008:489:4,89.5,-8.5,0,0,-0.191154 -86821,3009:380:3,90,-8.5,0,0,-0.190297 -86822,3009:380:4,90.5,-8.5,0,0,-0.189604 -86823,3009:381:3,91,-8.5,0,0,-0.189472 -86824,3009:381:4,91.5,-8.5,0,0,-0.189817 -86825,3009:382:3,92,-8.5,0,0,-0.190405 -86826,3009:382:4,92.5,-8.5,0,0,-0.190913 -86827,3009:383:3,93,-8.5,0,0,-0.191316 -86828,3009:383:4,93.5,-8.5,0,0,-0.191746 -86829,3009:384:3,94,-8.5,0,0,-0.192016 -86830,3009:384:4,94.5,-8.5,0,0,-0.192205 -86831,3009:485:3,95,-8.5,0,0,-0.192177 -86832,3009:485:4,95.5,-8.5,0,0,-0.191854 -86833,3009:486:3,96,-8.5,0,0,-0.191234 -86834,3009:486:4,96.5,-8.5,0,0,-0.190591 -86835,3009:487:3,97,-8.5,0,0,-0.190083 -86836,3009:487:4,97.5,-8.5,0,0,-0.189711 -86837,3009:488:3,98,-8.5,0,0,-0.189578 -86838,3009:488:4,98.5,-8.5,0,0,-0.190004 -86839,3009:489:3,99,-8.5,0,0,-0.191289 -86840,3009:489:4,99.5,-8.5,0,0,-0.193306 -86841,3010:380:3,100,-8.5,0,0,-0.196761 -86842,3010:380:4,100.5,-8.5,0,0,-0.201668 -86843,3010:381:3,101,-8.5,0,0,-0.217624 -86844,3010:381:4,101.5,-8.5,0,0,-0.240661 -86845,3010:382:3,102,-8.5,0,0,-0.262838 -86846,3010:382:4,102.5,-8.5,0,0,-0.28256 -86847,3010:383:3,103,-8.5,0,0,-0.295913 -86848,3010:383:4,103.5,-8.5,0,0,-0.312575 -86849,3010:384:3,104,-8.5,0,0,-0.339242 -86850,3010:384:4,104.5,-8.5,0,0,-0.364498 -86851,3010:485:3,105,-8.5,0,0,-0.39085 -86852,3010:485:4,105.5,-8.5,0,0,-0.407395 -86853,3010:486:3,106,-8.5,0,0,-0.414566 -86854,3010:486:4,106.5,-8.5,0,0,-0.448918 -86855,3010:487:3,107,-8.5,0,0,-0.564141 -86856,3010:487:4,107.5,-8.5,0,0,-0.636409 -86857,3010:488:3,108,-8.5,0,0,-0.696742 -86858,3010:488:4,108.5,-8.5,0,0,-0.774395 -86859,3010:489:3,109,-8.5,0,0,-0.8273 -86860,3010:489:4,109.5,-8.5,0,0,-0.905223 -86861,3011:380:3,110,-8.5,0,0,-0.975586 -86862,3011:380:4,110.5,-8.5,0,0,-1.0672 -86863,3011:381:3,111,-8.5,0,0,-1.10661 -86864,3011:381:4,111.5,-8.5,0,0,-1.13876 -86865,3011:382:3,112,-8.5,0,0,-1.15795 -86866,3011:382:4,112.5,-8.5,0,0,-1.23387 -86867,3011:383:3,113,-8.5,0,0,-1.37263 -86868,3011:383:4,113.5,-8.5,0,0,-1.57645 -86869,3011:384:3,114,-8.5,0,0,-1.90598 -86870,3011:384:4,114.5,-8.5,0,0,-3.03651 -86871,3011:485:3,115,-8.5,0,0,-6.96957 -86872,3011:485:4,115.5,-8.5,0,0,31.7976 -86873,3011:486:3,116,-8.5,0,0,10.5552 -86874,3011:486:4,116.5,-8.5,0,0,8.92746 -86875,3011:487:3,117,-8.5,0,0,15.4945 -86876,3011:487:4,117.5,-8.5,0,0,10.3629 -86877,3011:488:3,118,-8.5,0,0,5.47185 -86878,3011:488:4,118.5,-8.5,0,0,2.45783 -86879,3011:489:3,119,-8.5,0,0,1.93908 -86880,3012:380:4,120.5,-8.5,0,0,2.16718 -86881,3012:381:3,121,-8.5,0,0,1.42514 -86882,3012:381:4,121.5,-8.5,0,0,1.29131 -86883,3012:382:3,122,-8.5,0,0,1.30609 -86884,3012:382:4,122.5,-8.5,0,0,1.29744 -86885,3012:383:3,123,-8.5,0,0,1.2783 -86886,3012:383:4,123.5,-8.5,0,0,1.31233 -86887,3012:384:3,124,-8.5,0,0,2.76458 -86888,3012:485:4,125.5,-8.5,0,0,1.50954 -86889,3012:486:3,126,-8.5,0,0,1.27561 -86890,3012:486:4,126.5,-8.5,0,0,1.2783 -86891,3012:487:3,127,-8.5,0,0,1.36371 -86892,3012:487:4,127.5,-8.5,0,0,2.20726 -86893,3012:488:3,128,-8.5,0,0,16.4219 -86894,3012:488:4,128.5,-8.5,0,0,1.33036 -86895,3012:489:3,129,-8.5,0,0,1.25705 -86896,3012:489:4,129.5,-8.5,0,0,1.35896 -86897,3013:380:3,130,-8.5,0,0,1.33119 -86898,3013:380:4,130.5,-8.5,0,0,1.29226 -86899,3013:381:3,131,-8.5,0,0,1.249 -86900,3013:381:4,131.5,-8.5,0,0,1.23039 -86901,3013:382:3,132,-8.5,0,0,1.22402 -86902,3013:382:4,132.5,-8.5,0,0,1.21943 -86903,3013:383:3,133,-8.5,0,0,1.25515 -86904,3013:383:4,133.5,-8.5,0,0,1.35709 -86905,3013:384:3,134,-8.5,0,0,1.52934 -86906,3013:384:4,134.5,-8.5,0,0,1.70703 -86907,3013:485:3,135,-8.5,0,0,1.89498 -86908,3013:485:4,135.5,-8.5,0,0,3.01727 -86909,3013:486:3,136,-8.5,0,0,10.0048 -86910,3013:486:4,136.5,-8.5,0,0,12.6794 -86911,3013:487:3,137,-8.5,0,0,3.58243 -86912,3013:487:4,137.5,-8.5,0,0,2.1479 -86913,3013:488:3,138,-8.5,0,0,1.58097 -86914,3013:488:4,138.5,-8.5,0,0,1.61222 -86915,3013:489:3,139,-8.5,0,0,1.57919 -86916,3013:489:4,139.5,-8.5,0,0,1.59539 -86917,3014:380:3,140,-8.5,0,0,1.4728 -86918,3014:380:4,140.5,-8.5,0,0,1.28348 -86919,3014:381:3,141,-8.5,0,0,1.24024 -86920,3014:381:4,141.5,-8.5,0,0,1.23873 -86921,3014:382:3,142,-8.5,0,0,1.25191 -86922,3014:382:4,142.5,-8.5,0,0,1.36564 -86923,3014:383:3,143,-8.5,0,0,1.58988 -86924,3014:383:4,143.5,-8.5,0,0,1.69101 -86925,3014:384:3,144,-8.5,0,0,10.5552 -86926,3014:384:4,144.5,-8.5,0,0,-0.608949 -86927,3014:485:3,145,-8.5,0,0,-0.361458 -86928,3014:485:4,145.5,-8.5,0,0,-0.410961 -86929,3014:486:3,146,-8.5,0,0,-0.503542 -86930,3014:486:4,146.5,-8.5,0,0,-1.34191 -86931,3014:487:3,147,-8.5,0,0,-1.05457 -86932,3015:380:3,150,-8.5,0,0,-6.0316 -86933,3015:380:4,150.5,-8.5,0,0,4.34331 -86934,3015:381:4,151.5,-8.5,0,0,2.36581 -86935,3015:382:3,152,-8.5,0,0,1.82992 -86936,3015:382:4,152.5,-8.5,0,0,1.70703 -86937,3015:383:3,153,-8.5,0,0,1.67763 -86938,3015:383:4,153.5,-8.5,0,0,1.62376 -86939,3015:384:3,154,-8.5,0,0,1.58097 -86940,3015:384:4,154.5,-8.5,0,0,1.6065 -86941,3015:485:3,155,-8.5,0,0,1.67111 -86942,3015:485:4,155.5,-8.5,0,0,1.76886 -86943,3015:486:3,156,-8.5,0,0,1.74329 -86944,3015:486:4,156.5,-8.5,0,0,1.52777 -86945,3015:487:3,157,-8.5,0,0,1.42162 -86946,3015:487:4,157.5,-8.5,0,0,1.40584 -86947,3015:488:3,158,-8.5,0,0,1.39821 -86948,3015:488:4,158.5,-8.5,0,0,1.34609 -86949,3015:489:3,159,-8.5,0,0,1.36756 -86950,3015:489:4,159.5,-8.5,0,0,1.49785 -86951,3016:381:3,161,-8.5,0,0,2.0541 -86952,3016:382:3,162,-8.5,0,0,3.16692 -86953,3016:382:4,162.5,-8.5,0,0,2.87359 -86954,3016:383:3,163,-8.5,0,0,4.03457 -86955,3016:383:4,163.5,-8.5,0,0,4.51878 -86956,3016:384:3,164,-8.5,0,0,4.18196 -86957,3016:384:4,164.5,-8.5,0,0,4.03457 -86958,3016:485:3,165,-8.5,0,0,3.85471 -86959,3016:485:4,165.5,-8.5,0,0,3.8131 -86960,3016:486:3,166,-8.5,0,0,3.79238 -86961,3016:486:4,166.5,-8.5,0,0,3.59998 -86962,3016:487:3,167,-8.5,0,0,3.41371 -86963,3016:487:4,167.5,-8.5,0,0,3.36692 -86964,3016:488:3,168,-8.5,0,0,3.38202 -86965,3016:488:4,168.5,-8.5,0,0,3.56455 -86966,3016:489:3,169,-8.5,0,0,3.85471 -86967,3016:489:4,169.5,-8.5,0,0,4.15628 -86968,3017:380:3,170,-8.5,0,0,4.48903 -86969,3017:380:4,170.5,-8.5,0,0,4.67863 -86970,3017:381:3,171,-8.5,0,0,4.64544 -86971,3017:381:4,171.5,-8.5,0,0,6.29856 -86972,3017:382:3,172,-8.5,0,0,8.534 -86973,3017:382:4,172.5,-8.5,0,0,6.36419 -86974,3017:383:3,173,-8.5,0,0,3.75233 -86975,3017:383:4,173.5,-8.5,0,0,4.51878 -86976,3017:384:3,174,-8.5,0,0,-41.1373 -86977,3017:384:4,174.5,-8.5,0,0,-5.64612 -86978,3017:485:3,175,-8.5,0,0,-4.94202 -86979,3017:485:4,175.5,-8.5,0,0,-5.36961 -86980,3017:486:3,176,-8.5,0,0,-4.38224 -86981,3017:486:4,176.5,-8.5,0,0,-3.8199 -86982,3017:487:3,177,-8.5,0,0,-3.31756 -86983,3017:487:4,177.5,-8.5,0,0,-2.92199 -86984,3017:488:3,178,-8.5,0,0,-3.23664 -86985,3017:488:4,178.5,-8.5,0,0,-4.29357 -86986,3017:489:3,179,-8.5,0,0,-5.79561 -86987,3017:489:4,179.5,-8.5,0,0,-9.7719 -86988,3018:380:3,180,-8.5,0,0,-60.8518 -86989,5018:380:1,-180,-8,0,0,3.0288 -86990,5017:489:2,-179.5,-8,0,0,2.53735 -86991,5017:489:1,-179,-8,0,0,2.32928 -86992,5017:488:2,-178.5,-8,0,0,2.20209 -86993,5017:488:1,-178,-8,0,0,2.0797 -86994,5017:487:2,-177.5,-8,0,0,1.99803 -86995,5017:487:1,-177,-8,0,0,1.95693 -86996,5017:486:2,-176.5,-8,0,0,1.97904 -86997,5017:486:1,-176,-8,0,0,2.07115 -86998,5017:485:2,-175.5,-8,0,0,2.18193 -86999,5017:485:1,-175,-8,0,0,2.2495 -87000,5017:384:2,-174.5,-8,0,0,2.25499 -87001,5017:384:1,-174,-8,0,0,2.20209 -87002,5017:383:2,-173.5,-8,0,0,2.12911 -87003,5017:383:1,-173,-8,0,0,2.07534 -87004,5017:382:2,-172.5,-8,0,0,2.07534 -87005,5017:382:1,-172,-8,0,0,2.08407 -87006,5017:381:2,-171.5,-8,0,0,2.07115 -87007,5017:381:1,-171,-8,0,0,2.02146 -87008,5017:380:2,-170.5,-8,0,0,1.96794 -87009,5017:380:1,-170,-8,0,0,1.96425 -87010,5016:489:2,-169.5,-8,0,0,2.01758 -87011,5016:489:1,-169,-8,0,0,2.07534 -87012,5016:488:2,-168.5,-8,0,0,2.13366 -87013,5016:488:1,-168,-8,0,0,2.15257 -87014,5016:487:2,-167.5,-8,0,0,2.08407 -87015,5016:487:1,-167,-8,0,0,1.99803 -87016,5016:486:2,-166.5,-8,0,0,1.91159 -87017,5016:486:1,-166,-8,0,0,1.91498 -87018,5016:485:2,-165.5,-8,0,0,1.90495 -87019,5016:485:1,-165,-8,0,0,1.84478 -87020,5016:384:2,-164.5,-8,0,0,1.80979 -87021,5016:384:1,-164,-8,0,0,1.81831 -87022,5016:383:2,-163.5,-8,0,0,1.86004 -87023,5016:383:1,-163,-8,0,0,1.94621 -87024,5016:382:2,-162.5,-8,0,0,2.02954 -87025,5016:382:1,-162,-8,0,0,2.07115 -87026,5016:381:2,-161.5,-8,0,0,2.08848 -87027,5016:381:1,-161,-8,0,0,2.10173 -87028,5016:380:2,-160.5,-8,0,0,2.05003 -87029,5016:380:1,-160,-8,0,0,2.0136 -87030,5015:489:2,-159.5,-8,0,0,2.03361 -87031,5015:489:1,-159,-8,0,0,2.12911 -87032,5015:488:2,-158.5,-8,0,0,2.20726 -87033,5015:488:1,-158,-8,0,0,2.34735 -87034,5015:487:2,-157.5,-8,0,0,2.64873 -87035,5015:487:1,-157,-8,0,0,3.04081 -87036,5015:486:2,-156.5,-8,0,0,3.71267 -87037,5015:486:1,-156,-8,0,0,4.74666 -87038,5015:485:2,-155.5,-8,0,0,7.02487 -87039,5015:485:1,-155,-8,0,0,20.7737 -87040,5015:384:2,-154.5,-8,0,0,-19.8636 -87041,5015:384:1,-154,-8,0,0,-9.01915 -87042,5015:383:2,-153.5,-8,0,0,-6.75968 -87043,5015:383:1,-153,-8,0,0,-5.30386 -87044,5015:382:2,-152.5,-8,0,0,-3.7844 -87045,5015:382:1,-152,-8,0,0,-2.63834 -87046,5015:381:2,-151.5,-8,0,0,-1.86401 -87047,5015:381:1,-151,-8,0,0,-1.41127 -87048,5015:380:2,-150.5,-8,0,0,-1.15795 -87049,5015:380:1,-150,-8,0,0,-0.998346 -87050,5014:489:2,-149.5,-8,0,0,-0.885625 -87051,5014:489:1,-149,-8,0,0,-0.766519 -87052,5014:488:2,-148.5,-8,0,0,-0.660175 -87053,5014:488:1,-148,-8,0,0,-0.57295 -87054,5014:487:2,-147.5,-8,0,0,-0.512057 -87055,5014:487:1,-147,-8,0,0,-0.471303 -87056,5014:486:2,-146.5,-8,0,0,-0.443323 -87057,5014:486:1,-146,-8,0,0,-0.424126 -87058,5014:485:2,-145.5,-8,0,0,-0.408825 -87059,5014:485:1,-145,-8,0,0,-0.388177 -87060,5014:384:2,-144.5,-8,0,0,-0.363899 -87061,5014:384:1,-144,-8,0,0,-0.335348 -87062,5014:383:2,-143.5,-8,0,0,-0.308052 -87063,5014:383:1,-143,-8,0,0,-0.284798 -87064,5014:382:2,-142.5,-8,0,0,-0.266561 -87065,5014:382:1,-142,-8,0,0,-0.252825 -87066,5014:381:2,-141.5,-8,0,0,-0.234848 -87067,5014:381:1,-141,-8,0,0,-0.219854 -87068,5014:380:2,-140.5,-8,0,0,-0.206187 -87069,5014:380:1,-140,-8,0,0,-0.198136 -87070,5013:489:2,-139.5,-8,0,0,-0.196144 -87071,5013:489:1,-139,-8,0,0,-0.19374 -87072,5013:488:2,-138.5,-8,0,0,-0.192205 -87073,5013:488:1,-138,-8,0,0,-0.191208 -87074,5013:487:2,-137.5,-8,0,0,-0.190004 -87075,5013:487:1,-137,-8,0,0,-0.188782 -87076,5013:486:2,-136.5,-8,0,0,-0.187228 -87077,5013:486:1,-136,-8,0,0,-0.185507 -87078,5013:485:2,-135.5,-8,0,0,-0.183728 -87079,5013:485:1,-135,-8,0,0,-0.181816 -87080,5013:384:2,-134.5,-8,0,0,-0.179977 -87081,5013:384:1,-134,-8,0,0,-0.178408 -87082,5013:383:2,-133.5,-8,0,0,-0.177247 -87083,5013:383:1,-133,-8,0,0,-0.176241 -87084,5013:382:2,-132.5,-8,0,0,-0.174975 -87085,5013:382:1,-132,-8,0,0,-0.173624 -87086,5013:381:2,-131.5,-8,0,0,-0.172379 -87087,5013:381:1,-131,-8,0,0,-0.171145 -87088,5013:380:2,-130.5,-8,0,0,-0.169921 -87089,5013:380:1,-130,-8,0,0,-0.168614 -87090,5012:489:2,-129.5,-8,0,0,-0.167181 -87091,5012:489:1,-129,-8,0,0,-0.16592 -87092,5012:488:2,-128.5,-8,0,0,-0.164762 -87093,5012:488:1,-128,-8,0,0,-0.16368 -87094,5012:487:2,-127.5,-8,0,0,-0.162495 -87095,5012:487:1,-127,-8,0,0,-0.161274 -87096,5012:486:2,-126.5,-8,0,0,-0.160043 -87097,5012:486:1,-126,-8,0,0,-0.158844 -87098,5012:485:2,-125.5,-8,0,0,-0.157871 -87099,5012:485:1,-125,-8,0,0,-0.156926 -87100,5012:384:2,-124.5,-8,0,0,-0.155987 -87101,5012:384:1,-124,-8,0,0,-0.154949 -87102,5012:383:2,-123.5,-8,0,0,-0.153772 -87103,5012:383:1,-123,-8,0,0,-0.152564 -87104,5012:382:2,-122.5,-8,0,0,-0.151285 -87105,5012:382:1,-122,-8,0,0,-0.149916 -87106,5012:381:2,-121.5,-8,0,0,-0.1484 -87107,5012:381:1,-121,-8,0,0,-0.146762 -87108,5012:380:2,-120.5,-8,0,0,-0.145028 -87109,5012:380:1,-120,-8,0,0,-0.143296 -87110,5011:489:2,-119.5,-8,0,0,-0.141608 -87111,5011:489:1,-119,-8,0,0,-0.139979 -87112,5011:488:2,-118.5,-8,0,0,-0.138479 -87113,5011:488:1,-118,-8,0,0,-0.13727 -87114,5011:487:2,-117.5,-8,0,0,-0.136266 -87115,5011:487:1,-117,-8,0,0,-0.13605 -87116,5011:486:2,-116.5,-8,0,0,-0.13605 -87117,5011:486:1,-116,-8,0,0,-0.13605 -87118,5011:485:2,-115.5,-8,0,0,-0.13605 -87119,5011:485:1,-115,-8,0,0,-0.13605 -87120,5011:384:2,-114.5,-8,0,0,-0.13605 -87121,5011:384:1,-114,-8,0,0,-0.13605 -87122,5011:383:2,-113.5,-8,0,0,-0.13605 -87123,5011:383:1,-113,-8,0,0,-0.13605 -87124,5011:382:2,-112.5,-8,0,0,-0.13605 -87125,5011:382:1,-112,-8,0,0,-0.13605 -87126,5011:381:2,-111.5,-8,0,0,-0.13605 -87127,5011:381:1,-111,-8,0,0,-0.13605 -87128,5011:380:2,-110.5,-8,0,0,-0.13605 -87129,5011:380:1,-110,-8,0,0,-0.13605 -87130,5010:489:2,-109.5,-8,0,0,-0.13605 -87131,5010:489:1,-109,-8,0,0,-0.13605 -87132,5010:488:2,-108.5,-8,0,0,-0.13605 -87133,5010:488:1,-108,-8,0,0,-0.13605 -87134,5010:487:2,-107.5,-8,0,0,-0.13605 -87135,5010:487:1,-107,-8,0,0,-0.13605 -87136,5010:486:2,-106.5,-8,0,0,-0.13605 -87137,5010:486:1,-106,-8,0,0,-0.13605 -87138,5010:485:2,-105.5,-8,0,0,-0.13605 -87139,5010:485:1,-105,-8,0,0,-0.13605 -87140,5010:384:2,-104.5,-8,0,0,-0.13605 -87141,5010:384:1,-104,-8,0,0,-0.13605 -87142,5010:383:2,-103.5,-8,0,0,-0.13605 -87143,5010:383:1,-103,-8,0,0,-0.13605 -87144,5010:382:2,-102.5,-8,0,0,-0.13605 -87145,5010:382:1,-102,-8,0,0,-0.13605 -87146,5010:381:2,-101.5,-8,0,0,-0.13605 -87147,5010:381:1,-101,-8,0,0,-0.13605 -87148,5010:380:2,-100.5,-8,0,0,-0.13605 -87149,5010:380:1,-100,-8,0,0,-0.13605 -87150,5009:489:2,-99.5,-8,0,0,-0.13605 -87151,5009:489:1,-99,-8,0,0,-0.13605 -87152,5009:488:2,-98.5,-8,0,0,-0.13605 -87153,5009:488:1,-98,-8,0,0,-0.13605 -87154,5009:487:2,-97.5,-8,0,0,-0.13605 -87155,5009:487:1,-97,-8,0,0,-0.13605 -87156,5009:486:2,-96.5,-8,0,0,-0.13605 -87157,5009:486:1,-96,-8,0,0,-0.13605 -87158,5009:485:2,-95.5,-8,0,0,-0.13605 -87159,5009:485:1,-95,-8,0,0,-0.13605 -87160,5009:384:2,-94.5,-8,0,0,-0.13605 -87161,5009:384:1,-94,-8,0,0,-0.13605 -87162,5009:383:2,-93.5,-8,0,0,-0.13605 -87163,5009:383:1,-93,-8,0,0,-0.13605 -87164,5009:382:2,-92.5,-8,0,0,-0.13605 -87165,5009:382:1,-92,-8,0,0,-0.13605 -87166,5009:381:2,-91.5,-8,0,0,-0.13605 -87167,5009:381:1,-91,-8,0,0,-0.13605 -87168,5009:380:2,-90.5,-8,0,0,-0.13605 -87169,5009:380:1,-90,-8,0,0,-0.13605 -87170,5008:489:2,-89.5,-8,0,0,-0.13605 -87171,5008:489:1,-89,-8,0,0,-0.13605 -87172,5008:488:2,-88.5,-8,0,0,-0.13605 -87173,5008:488:1,-88,-8,0,0,-0.13605 -87174,5008:487:2,-87.5,-8,0,0,-0.13605 -87175,5008:487:1,-87,-8,0,0,-0.13605 -87176,5008:486:2,-86.5,-8,0,0,-0.13605 -87177,5008:486:1,-86,-8,0,0,-0.13605 -87178,5008:485:2,-85.5,-8,0,0,-0.13605 -87179,5008:485:1,-85,-8,0,0,-0.13605 -87180,5008:384:2,-84.5,-8,0,0,-0.13605 -87181,5008:384:1,-84,-8,0,0,-0.13605 -87182,5008:383:2,-83.5,-8,0,0,-0.13605 -87183,5008:383:1,-83,-8,0,0,-0.13605 -87184,5008:382:2,-82.5,-8,0,0,-0.13605 -87185,5008:382:1,-82,-8,0,0,-0.13605 -87186,5008:381:2,-81.5,-8,0,0,-0.13605 -87187,5008:381:1,-81,-8,0,0,-0.13605 -87188,5008:380:2,-80.5,-8,0,0,-0.13605 -87189,5008:380:1,-80,-8,0,0,-0.13605 -87190,5007:489:2,-79.5,-8,0,0,-0.13605 -87191,5007:489:1,-79,-8,0,0,-0.13605 -87192,5003:485:1,-35,-8,0,0,-0.180756 -87193,5003:384:2,-34.5,-8,0,0,-0.178086 -87194,5003:384:1,-34,-8,0,0,-0.174177 -87195,5003:383:2,-33.5,-8,0,0,-0.172427 -87196,5003:383:1,-33,-8,0,0,-0.170273 -87197,5003:382:2,-32.5,-8,0,0,-0.168614 -87198,5003:382:1,-32,-8,0,0,-0.167365 -87199,5003:381:2,-31.5,-8,0,0,-0.166104 -87200,5003:381:1,-31,-8,0,0,-0.164423 -87201,5003:380:2,-30.5,-8,0,0,-0.162516 -87202,5003:380:1,-30,-8,0,0,-0.160899 -87203,5002:489:2,-29.5,-8,0,0,-0.159213 -87204,5002:489:1,-29,-8,0,0,-0.157591 -87205,5002:488:2,-28.5,-8,0,0,-0.156072 -87206,5002:488:1,-28,-8,0,0,-0.154297 -87207,5002:487:2,-27.5,-8,0,0,-0.152543 -87208,5002:487:1,-27,-8,0,0,-0.151039 -87209,5002:486:2,-26.5,-8,0,0,-0.149713 -87210,5002:486:1,-26,-8,0,0,-0.148742 -87211,5002:485:2,-25.5,-8,0,0,-0.147759 -87212,5002:485:1,-25,-8,0,0,-0.146386 -87213,5002:384:2,-24.5,-8,0,0,-0.14495 -87214,5002:384:1,-24,-8,0,0,-0.144636 -87215,5002:383:2,-23.5,-8,0,0,-0.144247 -87216,5002:383:1,-23,-8,0,0,-0.143065 -87217,5002:382:2,-22.5,-8,0,0,-0.141837 -87218,5002:382:1,-22,-8,0,0,-0.140582 -87219,5002:381:2,-21.5,-8,0,0,-0.139566 -87220,5002:381:1,-21,-8,0,0,-0.138597 -87221,5002:380:2,-20.5,-8,0,0,-0.137672 -87222,5002:380:1,-20,-8,0,0,-0.13692 -87223,5001:489:2,-19.5,-8,0,0,-0.136395 -87224,5001:489:1,-19,-8,0,0,-0.136144 -87225,5001:488:2,-18.5,-8,0,0,-0.13605 -87226,5001:488:1,-18,-8,0,0,-0.13605 -87227,5001:487:2,-17.5,-8,0,0,-0.13605 -87228,5001:487:1,-17,-8,0,0,-0.13605 -87229,5001:486:2,-16.5,-8,0,0,-0.13605 -87230,5001:486:1,-16,-8,0,0,-0.13605 -87231,5001:485:2,-15.5,-8,0,0,-0.13605 -87232,5001:485:1,-15,-8,0,0,-0.13605 -87233,5001:384:2,-14.5,-8,0,0,-0.13605 -87234,5001:384:1,-14,-8,0,0,-0.13605 -87235,5001:383:2,-13.5,-8,0,0,-0.13605 -87236,5001:383:1,-13,-8,0,0,-0.13605 -87237,5001:382:2,-12.5,-8,0,0,-0.13605 -87238,5001:382:1,-12,-8,0,0,-0.13605 -87239,5001:381:2,-11.5,-8,0,0,-0.13605 -87240,5001:381:1,-11,-8,0,0,-0.13605 -87241,5001:380:2,-10.5,-8,0,0,-0.13605 -87242,5001:380:1,-10,-8,0,0,-0.13605 -87243,5000:489:2,-9.5,-8,0,0,-0.13605 -87244,5000:489:1,-9,-8,0,0,-0.13605 -87245,5000:488:2,-8.5,-8,0,0,-0.13605 -87246,5000:488:1,-8,-8,0,0,-0.13605 -87247,5000:487:2,-7.5,-8,0,0,-0.13605 -87248,5000:487:1,-7,-8,0,0,-0.13605 -87249,5000:486:2,-6.5,-8,0,0,-0.13605 -87250,5000:486:1,-6,-8,0,0,-0.13605 -87251,5000:485:2,-5.5,-8,0,0,-0.13605 -87252,5000:485:1,-5,-8,0,0,-0.13605 -87253,5000:384:2,-4.5,-8,0,0,-0.13605 -87254,5000:384:1,-4,-8,0,0,-0.13605 -87255,5000:383:2,-3.5,-8,0,0,-0.13605 -87256,5000:383:1,-3,-8,0,0,-0.13605 -87257,5000:382:2,-2.5,-8,0,0,-0.13605 -87258,5000:382:1,-2,-8,0,0,-0.13605 -87259,5000:381:2,-1.5,-8,0,0,-0.13605 -87260,5000:381:1,-1,-8,0,0,-0.13605 -87261,5000:380:2,-0.5,-8,0,0,-0.13605 -87262,3000:380:2,0,-8,0,0,-0.13605 -87263,3000:380:2,0.5,-8,0,0,-0.13605 -87264,3000:381:1,1,-8,0,0,-0.13605 -87265,3000:381:2,1.5,-8,0,0,-0.13605 -87266,3000:382:1,2,-8,0,0,-0.13605 -87267,3000:382:2,2.5,-8,0,0,-0.13605 -87268,3000:383:1,3,-8,0,0,-0.13605 -87269,3000:383:2,3.5,-8,0,0,-0.136382 -87270,3000:384:1,4,-8,0,0,-0.137873 -87271,3000:384:2,4.5,-8,0,0,-0.139258 -87272,3000:485:1,5,-8,0,0,-0.141018 -87273,3000:485:2,5.5,-8,0,0,-0.143994 -87274,3000:486:1,6,-8,0,0,-0.148139 -87275,3000:486:2,6.5,-8,0,0,-0.152751 -87276,3000:487:1,7,-8,0,0,-0.157054 -87277,3000:487:2,7.5,-8,0,0,-0.162049 -87278,3000:488:1,8,-8,0,0,-0.167895 -87279,3000:488:2,8.5,-8,0,0,-0.173192 -87280,3000:489:1,9,-8,0,0,-0.178408 -87281,3000:489:2,9.5,-8,0,0,-0.181892 -87282,3001:380:1,10,-8,0,0,-0.182986 -87283,3001:380:2,10.5,-8,0,0,-0.183626 -87284,3001:381:1,11,-8,0,0,-0.182654 -87285,3001:381:2,11.5,-8,0,0,-0.176927 -87286,3001:382:1,12,-8,0,0,-0.16679 -87287,3001:382:2,12.5,-8,0,0,-0.151965 -87288,3001:383:1,13,-8,0,0,-0.13605 -87289,3003:489:2,39.5,-8,0,0,-3.29075 -87290,3004:380:1,40,-8,0,0,-1.54559 -87291,3004:380:2,40.5,-8,0,0,-1.85399 -87292,3004:381:1,41,-8,0,0,-2.41501 -87293,3004:381:2,41.5,-8,0,0,-3.55346 -87294,3004:382:1,42,-8,0,0,-4.38224 -87295,3004:382:2,42.5,-8,0,0,-3.06051 -87296,3004:383:1,43,-8,0,0,-2.36818 -87297,3004:383:2,43.5,-8,0,0,-1.94954 -87298,3004:384:1,44,-8,0,0,-1.59213 -87299,3004:384:2,44.5,-8,0,0,-1.26096 -87300,3004:485:1,45,-8,0,0,-1.00615 -87301,3004:485:2,45.5,-8,0,0,-0.748484 -87302,3004:486:1,46,-8,0,0,-0.627466 -87303,3004:486:2,46.5,-8,0,0,-0.627466 -87304,3004:487:1,47,-8,0,0,-0.656102 -87305,3004:487:2,47.5,-8,0,0,-0.68091 -87306,3004:488:1,48,-8,0,0,-0.735784 -87307,3004:488:2,48.5,-8,0,0,-0.848069 -87308,3004:489:1,49,-8,0,0,-1.00997 -87309,3004:489:2,49.5,-8,0,0,-1.21812 -87310,3005:380:1,50,-8,0,0,-1.22323 -87311,3005:380:2,50.5,-8,0,0,-1.04217 -87312,3005:381:1,51,-8,0,0,-0.975586 -87313,3005:381:2,51.5,-8,0,0,-1.0462 -87314,3005:382:1,52,-8,0,0,-0.939481 -87315,3005:382:2,52.5,-8,0,0,-0.869702 -87316,3005:383:1,53,-8,0,0,-0.983124 -87317,3005:383:2,53.5,-8,0,0,-1.26096 -87318,3005:384:1,54,-8,0,0,-1.74682 -87319,3005:384:2,54.5,-8,0,0,-2.23613 -87320,3005:485:1,55,-8,0,0,-2.56601 -87321,3005:485:2,55.5,-8,0,0,-2.62035 -87322,3005:486:1,56,-8,0,0,-2.36818 -87323,3005:486:2,56.5,-8,0,0,-2.05393 -87324,3005:487:1,57,-8,0,0,-1.73753 -87325,3005:487:2,57.5,-8,0,0,-1.35403 -87326,3005:488:1,58,-8,0,0,-0.964552 -87327,3005:488:2,58.5,-8,0,0,-0.682336 -87328,3005:489:1,59,-8,0,0,-0.517822 -87329,3005:489:2,59.5,-8,0,0,-0.377068 -87330,3006:380:1,60,-8,0,0,-0.213159 -87331,3006:380:2,60.5,-8,0,0,-0.358431 -87332,3006:381:1,61,-8,0,0,-0.382242 -87333,3006:381:2,61.5,-8,0,0,-0.399012 -87334,3006:382:1,62,-8,0,0,-0.414566 -87335,3006:382:2,62.5,-8,0,0,-0.437061 -87336,3006:383:1,63,-8,0,0,-0.456204 -87337,3006:383:2,63.5,-8,0,0,-0.465366 -87338,3006:384:1,64,-8,0,0,-0.478219 -87339,3006:384:2,64.5,-8,0,0,-0.513022 -87340,3006:485:1,65,-8,0,0,-0.568523 -87341,3006:485:2,65.5,-8,0,0,-0.642894 -87342,3006:486:1,66,-8,0,0,-0.704061 -87343,3006:486:2,66.5,-8,0,0,-0.766519 -87344,3006:487:1,67,-8,0,0,-0.892054 -87345,3006:487:2,67.5,-8,0,0,-1.09774 -87346,3006:488:1,68,-8,0,0,-1.39184 -87347,3006:488:2,68.5,-8,0,0,-1.77489 -87348,3006:489:1,69,-8,0,0,-1.94954 -87349,3006:489:2,69.5,-8,0,0,-1.98357 -87350,3007:380:1,70,-8,0,0,-2.33751 -87351,3007:380:2,70.5,-8,0,0,-3.46126 -87352,3007:381:1,71,-8,0,0,-4.33818 -87353,3007:381:2,71.5,-8,0,0,-4.77763 -87354,3007:382:1,72,-8,0,0,-4.83019 -87355,3007:382:2,72.5,-8,0,0,-4.00437 -87356,3007:383:2,73.5,-8,0,0,-3.29075 -87357,3007:384:1,74,-8,0,0,-3.10876 -87358,3007:384:2,74.5,-8,0,0,-2.96716 -87359,3007:485:1,75,-8,0,0,-2.83582 -87360,3007:485:2,75.5,-8,0,0,-3.01284 -87361,3007:486:1,76,-8,0,0,-3.23664 -87362,3007:486:2,76.5,-8,0,0,-2.7742 -87363,3007:487:1,77,-8,0,0,-2.15513 -87364,3007:487:2,77.5,-8,0,0,-1.74682 -87365,3007:488:1,78,-8,0,0,-1.47956 -87366,3007:488:2,78.5,-8,0,0,-1.27195 -87367,3007:489:1,79,-8,0,0,-1.18234 -87368,3007:489:2,79.5,-8,0,0,-1.14351 -87369,3008:380:1,80,-8,0,0,-0.99075 -87370,3008:380:2,80.5,-8,0,0,-0.675289 -87371,3008:381:1,81,-8,0,0,-0.501662 -87372,3008:381:2,81.5,-8,0,0,-0.405284 -87373,3008:382:1,82,-8,0,0,-0.340944 -87374,3008:382:2,82.5,-8,0,0,-0.277238 -87375,3008:383:1,83,-8,0,0,-0.231294 -87376,3008:383:2,83.5,-8,0,0,-0.205022 -87377,3008:384:1,84,-8,0,0,-0.197825 -87378,3008:384:2,84.5,-8,0,0,-0.196496 -87379,3008:485:1,85,-8,0,0,-0.195879 -87380,3008:485:2,85.5,-8,0,0,-0.195835 -87381,3008:486:1,86,-8,0,0,-0.19632 -87382,3008:486:2,86.5,-8,0,0,-0.197292 -87383,3008:487:1,87,-8,0,0,-0.198856 -87384,3008:487:2,87.5,-8,0,0,-0.204833 -87385,3008:488:1,88,-8,0,0,-0.212892 -87386,3008:488:2,88.5,-8,0,0,-0.222449 -87387,3008:489:1,89,-8,0,0,-0.230244 -87388,3008:489:2,89.5,-8,0,0,-0.235922 -87389,3009:380:1,90,-8,0,0,-0.235209 -87390,3009:380:2,90.5,-8,0,0,-0.226437 -87391,3009:381:1,91,-8,0,0,-0.215105 -87392,3009:381:2,91.5,-8,0,0,-0.208154 -87393,3009:382:1,92,-8,0,0,-0.207397 -87394,3009:382:2,92.5,-8,0,0,-0.211805 -87395,3009:383:1,93,-8,0,0,-0.218575 -87396,3009:383:2,93.5,-8,0,0,-0.222122 -87397,3009:384:1,94,-8,0,0,-0.220502 -87398,3009:384:2,94.5,-8,0,0,-0.215105 -87399,3009:485:1,95,-8,0,0,-0.207397 -87400,3009:485:2,95.5,-8,0,0,-0.200799 -87401,3009:486:1,96,-8,0,0,-0.198092 -87402,3009:486:2,96.5,-8,0,0,-0.196938 -87403,3009:487:1,97,-8,0,0,-0.195835 -87404,3009:487:2,97.5,-8,0,0,-0.194654 -87405,3009:488:1,98,-8,0,0,-0.193219 -87406,3009:488:2,98.5,-8,0,0,-0.192556 -87407,3009:489:1,99,-8,0,0,-0.193262 -87408,3009:489:2,99.5,-8,0,0,-0.195968 -87409,3010:380:1,100,-8,0,0,-0.200964 -87410,3010:380:2,100.5,-8,0,0,-0.224738 -87411,3010:381:1,101,-8,0,0,-0.253999 -87412,3010:381:2,101.5,-8,0,0,-0.278121 -87413,3010:382:1,102,-8,0,0,-0.296391 -87414,3010:382:2,102.5,-8,0,0,-0.314609 -87415,3010:383:1,103,-8,0,0,-0.332593 -87416,3010:383:2,103.5,-8,0,0,-0.348387 -87417,3010:384:1,104,-8,0,0,-0.366361 -87418,3010:384:2,104.5,-8,0,0,-0.400405 -87419,3010:485:1,105,-8,0,0,-0.435502 -87420,3010:485:2,105.5,-8,0,0,-0.473033 -87421,3010:486:1,106,-8,0,0,-0.512057 -87422,3010:486:2,106.5,-8,0,0,-0.556592 -87423,3010:487:1,107,-8,0,0,-0.595811 -87424,3010:487:2,107.5,-8,0,0,-0.621233 -87425,3010:488:1,108,-8,0,0,-0.653446 -87426,3010:488:2,108.5,-8,0,0,-0.705556 -87427,3010:489:1,109,-8,0,0,-0.73375 -87428,3010:489:2,109.5,-8,0,0,-0.757103 -87429,3011:380:1,110,-8,0,0,-0.818638 -87430,3011:380:2,110.5,-8,0,0,-0.888782 -87431,3011:381:1,111,-8,0,0,-0.979344 -87432,3011:381:2,111.5,-8,0,0,-1.0462 -87433,3011:382:1,112,-8,0,0,-1.01791 -87434,3011:382:2,112.5,-8,0,0,-1.23387 -87435,3011:383:1,113,-8,0,0,-1.5157 -87436,3011:383:2,113.5,-8,0,0,-1.81358 -87437,3011:384:1,114,-8,0,0,-3.64913 -87438,3011:384:2,114.5,-8,0,0,-5.43688 -87439,3011:485:1,115,-8,0,0,-2.7742 -87440,3011:485:2,115.5,-8,0,0,-4.99972 -87441,3012:383:1,123,-8,0,0,1.2273 -87442,3012:383:2,123.5,-8,0,0,1.20632 -87443,3012:384:1,124,-8,0,0,1.264 -87444,3012:384:2,124.5,-8,0,0,1.26771 -87445,3012:485:1,125,-8,0,0,1.41028 -87446,3012:487:2,127.5,-8,0,0,1.29842 -87447,3012:488:1,128,-8,0,0,1.64583 -87448,3012:488:2,128.5,-8,0,0,1.53564 -87449,3012:489:1,129,-8,0,0,1.36086 -87450,3012:489:2,129.5,-8,0,0,1.26316 -87451,3013:380:1,130,-8,0,0,1.36371 -87452,3013:380:2,130.5,-8,0,0,1.39608 -87453,3013:381:1,131,-8,0,0,1.30541 -87454,3013:381:2,131.5,-8,0,0,1.28503 -87455,3013:382:1,132,-8,0,0,1.2777 -87456,3013:382:2,132.5,-8,0,0,1.28379 -87457,3013:383:1,133,-8,0,0,1.3004 -87458,3013:383:2,133.5,-8,0,0,1.35152 -87459,3013:384:1,134,-8,0,0,1.63366 -87460,3013:384:2,134.5,-8,0,0,3.58243 -87461,3013:485:1,135,-8,0,0,15.4945 -87462,3013:485:2,135.5,-8,0,0,12.3981 -87463,3013:486:1,136,-8,0,0,3.9876 -87464,3013:486:2,136.5,-8,0,0,2.31142 -87465,3013:487:1,137,-8,0,0,2.05003 -87466,3013:487:2,137.5,-8,0,0,1.33723 -87467,3013:488:1,138,-8,0,0,1.21167 -87468,3013:488:2,138.5,-8,0,0,1.22801 -87469,3013:489:1,139,-8,0,0,1.21651 -87470,3013:489:2,139.5,-8,0,0,1.22518 -87471,3014:380:1,140,-8,0,0,1.22968 -87472,3014:380:2,140.5,-8,0,0,1.18701 -87473,3014:384:1,144,-8,0,0,1.26372 -87474,3014:384:2,144.5,-8,0,0,5.11981 -87475,3014:485:1,145,-8,0,0,-1.1483 -87476,3014:485:2,145.5,-8,0,0,-2.15513 -87477,3014:486:1,146,-8,0,0,11.8805 -87478,3014:486:2,146.5,-8,0,0,-5.24151 -87479,3014:489:1,149,-8,0,0,5.24625 -87480,3014:489:2,149.5,-8,0,0,4.18196 -87481,3015:380:1,150,-8,0,0,3.75233 -87482,3015:380:2,150.5,-8,0,0,2.48591 -87483,3015:381:1,151,-8,0,0,2.0541 -87484,3015:381:2,151.5,-8,0,0,1.84782 -87485,3015:382:1,152,-8,0,0,1.66677 -87486,3015:382:2,152.5,-8,0,0,1.50071 -87487,3015:383:1,153,-8,0,0,1.43101 -87488,3015:383:2,153.5,-8,0,0,1.42279 -87489,3015:384:1,154,-8,0,0,1.3506 -87490,3015:384:2,154.5,-8,0,0,1.30743 -87491,3015:485:1,155,-8,0,0,1.29614 -87492,3015:485:2,155.5,-8,0,0,1.29452 -87493,3015:486:1,156,-8,0,0,1.33549 -87494,3015:486:2,156.5,-8,0,0,1.37246 -87495,3015:487:1,157,-8,0,0,1.30372 -87496,3015:487:2,157.5,-8,0,0,1.29131 -87497,3015:488:1,158,-8,0,0,1.28846 -87498,3015:488:2,158.5,-8,0,0,1.28409 -87499,3015:489:1,159,-8,0,0,1.28783 -87500,3015:489:2,159.5,-8,0,0,1.31313 -87501,3016:380:1,160,-8,0,0,1.57394 -87502,3016:380:2,160.5,-8,0,0,1.53724 -87503,3016:381:2,161.5,-8,0,0,1.92518 -87504,3016:382:1,162,-8,0,0,1.79303 -87505,3016:382:2,162.5,-8,0,0,1.96425 -87506,3016:383:1,163,-8,0,0,2.16718 -87507,3016:383:2,163.5,-8,0,0,2.18696 -87508,3016:384:1,164,-8,0,0,2.29989 -87509,3016:384:2,164.5,-8,0,0,2.53735 -87510,3016:485:1,165,-8,0,0,2.72758 -87511,3016:485:2,165.5,-8,0,0,2.84261 -87512,3016:486:1,166,-8,0,0,2.91592 -87513,3016:486:2,166.5,-8,0,0,2.78372 -87514,3016:487:1,167,-8,0,0,2.57556 -87515,3016:487:2,167.5,-8,0,0,2.45783 -87516,3016:488:1,168,-8,0,0,2.41073 -87517,3016:488:2,168.5,-8,0,0,2.45783 -87518,3016:489:1,169,-8,0,0,2.59147 -87519,3016:489:2,169.5,-8,0,0,2.64873 -87520,3017:380:1,170,-8,0,0,2.66585 -87521,3017:380:2,170.5,-8,0,0,2.64873 -87522,3017:381:1,171,-8,0,0,2.63214 -87523,3017:381:2,171.5,-8,0,0,2.67453 -87524,3017:382:1,172,-8,0,0,2.60739 -87525,3017:382:2,172.5,-8,0,0,2.48591 -87526,3017:383:1,173,-8,0,0,2.29989 -87527,3017:383:2,173.5,-8,0,0,2.39112 -87528,3017:384:1,174,-8,0,0,3.11502 -87529,3017:384:2,174.5,-8,0,0,4.31529 -87530,3017:485:1,175,-8,0,0,5.08039 -87531,3017:485:2,175.5,-8,0,0,5.11981 -87532,3017:486:1,176,-8,0,0,5.93563 -87533,3017:486:2,176.5,-8,0,0,6.94361 -87534,3017:487:1,177,-8,0,0,8.17922 -87535,3017:487:2,177.5,-8,0,0,9.06305 -87536,3017:488:1,178,-8,0,0,8.41459 -87537,3017:488:2,178.5,-8,0,0,6.94361 -87538,3017:489:1,179,-8,0,0,5.33314 -87539,3017:489:2,179.5,-8,0,0,4.03457 -87540,3018:380:1,180,-8,0,0,3.0288 -87541,5018:370:3,-180,-7.5,0,0,1.86935 -87542,5017:479:4,-179.5,-7.5,0,0,1.73091 -87543,5017:479:3,-179,-7.5,0,0,1.66894 -87544,5017:478:4,-178.5,-7.5,0,0,1.67763 -87545,5017:478:3,-178,-7.5,0,0,1.70243 -87546,5017:477:4,-177.5,-7.5,0,0,1.71883 -87547,5017:477:3,-177,-7.5,0,0,1.73578 -87548,5017:476:4,-176.5,-7.5,0,0,1.78217 -87549,5017:476:3,-176,-7.5,0,0,1.86316 -87550,5017:475:4,-175.5,-7.5,0,0,1.94621 -87551,5017:475:3,-175,-7.5,0,0,1.99803 -87552,5017:374:4,-174.5,-7.5,0,0,2.00571 -87553,5017:374:3,-174,-7.5,0,0,1.96058 -87554,5017:373:4,-173.5,-7.5,0,0,1.90161 -87555,5017:373:3,-173,-7.5,0,0,1.86629 -87556,5017:372:4,-172.5,-7.5,0,0,1.85694 -87557,5017:372:3,-172,-7.5,0,0,1.87252 -87558,5017:371:4,-171.5,-7.5,0,0,1.8757 -87559,5017:371:3,-171,-7.5,0,0,1.86629 -87560,5017:370:4,-170.5,-7.5,0,0,1.86004 -87561,5017:370:3,-170,-7.5,0,0,1.89498 -87562,5016:479:4,-169.5,-7.5,0,0,1.9498 -87563,5016:479:3,-169,-7.5,0,0,2.0136 -87564,5016:478:4,-168.5,-7.5,0,0,2.05003 -87565,5016:478:3,-168,-7.5,0,0,2.06257 -87566,5016:477:4,-167.5,-7.5,0,0,2.02146 -87567,5016:477:3,-167,-7.5,0,0,1.9533 -87568,5016:476:4,-166.5,-7.5,0,0,1.86316 -87569,5016:476:3,-166,-7.5,0,0,1.84782 -87570,5016:475:4,-165.5,-7.5,0,0,1.84782 -87571,5016:475:3,-165,-7.5,0,0,1.85385 -87572,5016:374:4,-164.5,-7.5,0,0,1.86935 -87573,5016:374:3,-164,-7.5,0,0,1.90161 -87574,5016:373:4,-163.5,-7.5,0,0,1.94621 -87575,5016:373:3,-163,-7.5,0,0,2.01758 -87576,5016:372:4,-162.5,-7.5,0,0,2.11982 -87577,5016:372:3,-162,-7.5,0,0,2.19202 -87578,5016:371:4,-161.5,-7.5,0,0,2.20209 -87579,5016:371:3,-161,-7.5,0,0,2.18193 -87580,5016:370:4,-160.5,-7.5,0,0,2.17196 -87581,5016:370:3,-160,-7.5,0,0,2.2828 -87582,5015:479:4,-159.5,-7.5,0,0,2.41073 -87583,5015:479:3,-159,-7.5,0,0,2.59952 -87584,5015:478:4,-158.5,-7.5,0,0,2.71845 -87585,5015:478:3,-158,-7.5,0,0,2.98228 -87586,5015:477:4,-157.5,-7.5,0,0,3.71267 -87587,5015:477:3,-157,-7.5,0,0,6.05201 -87588,5015:476:4,-156.5,-7.5,0,0,20.7737 -87589,5015:476:3,-156,-7.5,0,0,-12.9803 -87590,5015:475:4,-155.5,-7.5,0,0,-5.24151 -87591,5015:475:3,-155,-7.5,0,0,-3.43147 -87592,5015:374:4,-154.5,-7.5,0,0,-2.7742 -87593,5015:374:3,-154,-7.5,0,0,-2.53137 -87594,5015:373:4,-153.5,-7.5,0,0,-2.07856 -87595,5015:373:3,-153,-7.5,0,0,-1.64968 -87596,5015:372:4,-152.5,-7.5,0,0,-1.29457 -87597,5015:372:3,-152,-7.5,0,0,-1.05457 -87598,5015:371:4,-151.5,-7.5,0,0,-0.879166 -87599,5015:371:3,-151,-7.5,0,0,-0.754919 -87600,5015:370:4,-150.5,-7.5,0,0,-0.689486 -87601,5015:370:3,-150,-7.5,0,0,-0.638968 -87602,5014:479:4,-149.5,-7.5,0,0,-0.584245 -87603,5014:479:3,-149,-7.5,0,0,-0.523704 -87604,5014:478:4,-148.5,-7.5,0,0,-0.46875 -87605,5014:478:3,-148,-7.5,0,0,-0.425609 -87606,5014:477:4,-147.5,-7.5,0,0,-0.396268 -87607,5014:477:3,-147,-7.5,0,0,-0.368844 -87608,5014:476:4,-146.5,-7.5,0,0,-0.339242 -87609,5014:476:3,-146,-7.5,0,0,-0.313086 -87610,5014:475:4,-145.5,-7.5,0,0,-0.287993 -87611,5014:475:3,-145,-7.5,0,0,-0.265317 -87612,5014:374:4,-144.5,-7.5,0,0,-0.247798 -87613,5014:374:3,-144,-7.5,0,0,-0.232004 -87614,5014:373:4,-143.5,-7.5,0,0,-0.219854 -87615,5014:373:3,-143,-7.5,0,0,-0.212343 -87616,5014:372:4,-142.5,-7.5,0,0,-0.204833 -87617,5014:372:3,-142,-7.5,0,0,-0.199066 -87618,5014:371:4,-141.5,-7.5,0,0,-0.197692 -87619,5014:371:3,-141,-7.5,0,0,-0.196011 -87620,5014:370:4,-140.5,-7.5,0,0,-0.19387 -87621,5014:370:3,-140,-7.5,0,0,-0.192124 -87622,5013:479:4,-139.5,-7.5,0,0,-0.191047 -87623,5013:479:3,-139,-7.5,0,0,-0.18995 -87624,5013:478:4,-138.5,-7.5,0,0,-0.188755 -87625,5013:478:3,-138,-7.5,0,0,-0.187543 -87626,5013:477:4,-137.5,-7.5,0,0,-0.186209 -87627,5013:477:3,-137,-7.5,0,0,-0.184757 -87628,5013:476:4,-136.5,-7.5,0,0,-0.183139 -87629,5013:476:3,-136,-7.5,0,0,-0.181487 -87630,5013:475:4,-135.5,-7.5,0,0,-0.179877 -87631,5013:475:3,-135,-7.5,0,0,-0.178358 -87632,5013:374:4,-134.5,-7.5,0,0,-0.176903 -87633,5013:374:3,-134,-7.5,0,0,-0.175656 -87634,5013:373:4,-133.5,-7.5,0,0,-0.174467 -87635,5013:373:3,-133,-7.5,0,0,-0.173312 -87636,5013:372:4,-132.5,-7.5,0,0,-0.172046 -87637,5013:372:3,-132,-7.5,0,0,-0.170956 -87638,5013:371:4,-131.5,-7.5,0,0,-0.170038 -87639,5013:371:3,-131,-7.5,0,0,-0.169243 -87640,5013:370:4,-130.5,-7.5,0,0,-0.168545 -87641,5013:370:3,-130,-7.5,0,0,-0.167688 -87642,5012:479:4,-129.5,-7.5,0,0,-0.166767 -87643,5012:479:3,-129,-7.5,0,0,-0.165693 -87644,5012:478:4,-128.5,-7.5,0,0,-0.164671 -87645,5012:478:3,-128,-7.5,0,0,-0.163702 -87646,5012:477:4,-127.5,-7.5,0,0,-0.162806 -87647,5012:477:3,-127,-7.5,0,0,-0.161783 -87648,5012:476:4,-126.5,-7.5,0,0,-0.160592 -87649,5012:476:3,-126,-7.5,0,0,-0.159257 -87650,5012:475:4,-125.5,-7.5,0,0,-0.157914 -87651,5012:475:3,-125,-7.5,0,0,-0.156584 -87652,5012:374:4,-124.5,-7.5,0,0,-0.15516 -87653,5012:374:3,-124,-7.5,0,0,-0.153688 -87654,5012:373:4,-123.5,-7.5,0,0,-0.152253 -87655,5012:373:3,-123,-7.5,0,0,-0.150834 -87656,5012:372:4,-122.5,-7.5,0,0,-0.149449 -87657,5012:372:3,-122,-7.5,0,0,-0.147919 -87658,5012:371:4,-121.5,-7.5,0,0,-0.146208 -87659,5012:371:3,-121,-7.5,0,0,-0.144402 -87660,5012:370:4,-120.5,-7.5,0,0,-0.142641 -87661,5012:370:3,-120,-7.5,0,0,-0.141018 -87662,5011:479:4,-119.5,-7.5,0,0,-0.139472 -87663,5011:479:3,-119,-7.5,0,0,-0.138159 -87664,5011:478:4,-118.5,-7.5,0,0,-0.137037 -87665,5011:478:3,-118,-7.5,0,0,-0.136243 -87666,5011:477:4,-117.5,-7.5,0,0,-0.13605 -87667,5011:477:3,-117,-7.5,0,0,-0.13605 -87668,5011:476:4,-116.5,-7.5,0,0,-0.13605 -87669,5011:476:3,-116,-7.5,0,0,-0.13605 -87670,5011:475:4,-115.5,-7.5,0,0,-0.13605 -87671,5011:475:3,-115,-7.5,0,0,-0.13605 -87672,5011:374:4,-114.5,-7.5,0,0,-0.13605 -87673,5011:374:3,-114,-7.5,0,0,-0.13605 -87674,5011:373:4,-113.5,-7.5,0,0,-0.13605 -87675,5011:373:3,-113,-7.5,0,0,-0.13605 -87676,5011:372:4,-112.5,-7.5,0,0,-0.13605 -87677,5011:372:3,-112,-7.5,0,0,-0.13605 -87678,5011:371:4,-111.5,-7.5,0,0,-0.13605 -87679,5011:371:3,-111,-7.5,0,0,-0.13605 -87680,5011:370:4,-110.5,-7.5,0,0,-0.13605 -87681,5011:370:3,-110,-7.5,0,0,-0.13605 -87682,5010:479:4,-109.5,-7.5,0,0,-0.13605 -87683,5010:479:3,-109,-7.5,0,0,-0.13605 -87684,5010:478:4,-108.5,-7.5,0,0,-0.13605 -87685,5010:478:3,-108,-7.5,0,0,-0.13605 -87686,5010:477:4,-107.5,-7.5,0,0,-0.13605 -87687,5010:477:3,-107,-7.5,0,0,-0.13605 -87688,5010:476:4,-106.5,-7.5,0,0,-0.13605 -87689,5010:476:3,-106,-7.5,0,0,-0.13605 -87690,5010:475:4,-105.5,-7.5,0,0,-0.13605 -87691,5010:475:3,-105,-7.5,0,0,-0.13605 -87692,5010:374:4,-104.5,-7.5,0,0,-0.13605 -87693,5010:374:3,-104,-7.5,0,0,-0.13605 -87694,5010:373:4,-103.5,-7.5,0,0,-0.13605 -87695,5010:373:3,-103,-7.5,0,0,-0.13605 -87696,5010:372:4,-102.5,-7.5,0,0,-0.13605 -87697,5010:372:3,-102,-7.5,0,0,-0.13605 -87698,5010:371:4,-101.5,-7.5,0,0,-0.13605 -87699,5010:371:3,-101,-7.5,0,0,-0.13605 -87700,5010:370:4,-100.5,-7.5,0,0,-0.13605 -87701,5010:370:3,-100,-7.5,0,0,-0.13605 -87702,5009:479:4,-99.5,-7.5,0,0,-0.13605 -87703,5009:479:3,-99,-7.5,0,0,-0.13605 -87704,5009:478:4,-98.5,-7.5,0,0,-0.13605 -87705,5009:478:3,-98,-7.5,0,0,-0.13605 -87706,5009:477:4,-97.5,-7.5,0,0,-0.13605 -87707,5009:477:3,-97,-7.5,0,0,-0.13605 -87708,5009:476:4,-96.5,-7.5,0,0,-0.13605 -87709,5009:476:3,-96,-7.5,0,0,-0.13605 -87710,5009:475:4,-95.5,-7.5,0,0,-0.13605 -87711,5009:475:3,-95,-7.5,0,0,-0.13605 -87712,5009:374:4,-94.5,-7.5,0,0,-0.13605 -87713,5009:374:3,-94,-7.5,0,0,-0.13605 -87714,5009:373:4,-93.5,-7.5,0,0,-0.13605 -87715,5009:373:3,-93,-7.5,0,0,-0.13605 -87716,5009:372:4,-92.5,-7.5,0,0,-0.13605 -87717,5009:372:3,-92,-7.5,0,0,-0.13605 -87718,5009:371:4,-91.5,-7.5,0,0,-0.13605 -87719,5009:371:3,-91,-7.5,0,0,-0.13605 -87720,5009:370:4,-90.5,-7.5,0,0,-0.13605 -87721,5009:370:3,-90,-7.5,0,0,-0.13605 -87722,5008:479:4,-89.5,-7.5,0,0,-0.13605 -87723,5008:479:3,-89,-7.5,0,0,-0.13605 -87724,5008:478:4,-88.5,-7.5,0,0,-0.13605 -87725,5008:478:3,-88,-7.5,0,0,-0.13605 -87726,5008:477:4,-87.5,-7.5,0,0,-0.13605 -87727,5008:477:3,-87,-7.5,0,0,-0.13605 -87728,5008:476:4,-86.5,-7.5,0,0,-0.13605 -87729,5008:476:3,-86,-7.5,0,0,-0.13605 -87730,5008:475:4,-85.5,-7.5,0,0,-0.13605 -87731,5008:475:3,-85,-7.5,0,0,-0.13605 -87732,5008:374:4,-84.5,-7.5,0,0,-0.13605 -87733,5008:374:3,-84,-7.5,0,0,-0.13605 -87734,5008:373:4,-83.5,-7.5,0,0,-0.13605 -87735,5008:373:3,-83,-7.5,0,0,-0.13605 -87736,5008:372:4,-82.5,-7.5,0,0,-0.13605 -87737,5008:372:3,-82,-7.5,0,0,-0.13605 -87738,5008:371:4,-81.5,-7.5,0,0,-0.13605 -87739,5008:371:3,-81,-7.5,0,0,-0.13605 -87740,5008:370:4,-80.5,-7.5,0,0,-0.13605 -87741,5008:370:3,-80,-7.5,0,0,-0.13605 -87742,5007:479:4,-79.5,-7.5,0,0,-0.13605 -87743,5003:475:3,-35,-7.5,0,0,-0.183472 -87744,5003:374:4,-34.5,-7.5,0,0,-0.177271 -87745,5003:374:3,-34,-7.5,0,0,-0.175121 -87746,5003:373:4,-33.5,-7.5,0,0,-0.17336 -87747,5003:373:3,-33,-7.5,0,0,-0.170791 -87748,5003:372:4,-32.5,-7.5,0,0,-0.168196 -87749,5003:372:3,-32,-7.5,0,0,-0.166332 -87750,5003:371:4,-31.5,-7.5,0,0,-0.165261 -87751,5003:371:3,-31,-7.5,0,0,-0.164355 -87752,5003:370:4,-30.5,-7.5,0,0,-0.163343 -87753,5003:370:3,-30,-7.5,0,0,-0.162049 -87754,5002:479:4,-29.5,-7.5,0,0,-0.160635 -87755,5002:479:3,-29,-7.5,0,0,-0.159192 -87756,5002:478:4,-28.5,-7.5,0,0,-0.157742 -87757,5002:478:3,-28,-7.5,0,0,-0.156434 -87758,5002:477:4,-27.5,-7.5,0,0,-0.155203 -87759,5002:477:3,-27,-7.5,0,0,-0.153919 -87760,5002:476:4,-26.5,-7.5,0,0,-0.152668 -87761,5002:476:3,-26,-7.5,0,0,-0.151779 -87762,5002:475:4,-25.5,-7.5,0,0,-0.150875 -87763,5002:475:3,-25,-7.5,0,0,-0.149328 -87764,5002:374:4,-24.5,-7.5,0,0,-0.147379 -87765,5002:374:3,-24,-7.5,0,0,-0.146168 -87766,5002:373:4,-23.5,-7.5,0,0,-0.145538 -87767,5002:373:3,-23,-7.5,0,0,-0.144754 -87768,5002:372:4,-22.5,-7.5,0,0,-0.143664 -87769,5002:372:3,-22,-7.5,0,0,-0.142911 -87770,5002:371:4,-21.5,-7.5,0,0,-0.142296 -87771,5002:371:3,-21,-7.5,0,0,-0.141493 -87772,5002:370:4,-20.5,-7.5,0,0,-0.140809 -87773,5002:370:3,-20,-7.5,0,0,-0.140337 -87774,5001:479:4,-19.5,-7.5,0,0,-0.139678 -87775,5001:479:3,-19,-7.5,0,0,-0.138902 -87776,5001:478:4,-18.5,-7.5,0,0,-0.138361 -87777,5001:478:3,-18,-7.5,0,0,-0.137907 -87778,5001:477:4,-17.5,-7.5,0,0,-0.137471 -87779,5001:477:3,-17,-7.5,0,0,-0.136804 -87780,5001:476:4,-16.5,-7.5,0,0,-0.136106 -87781,5001:476:3,-16,-7.5,0,0,-0.13605 -87782,5001:475:4,-15.5,-7.5,0,0,-0.13605 -87783,5001:475:3,-15,-7.5,0,0,-0.13605 -87784,5001:374:4,-14.5,-7.5,0,0,-0.13605 -87785,5001:374:3,-14,-7.5,0,0,-0.13605 -87786,5001:373:4,-13.5,-7.5,0,0,-0.13605 -87787,5001:373:3,-13,-7.5,0,0,-0.13605 -87788,5001:372:4,-12.5,-7.5,0,0,-0.13605 -87789,5001:372:3,-12,-7.5,0,0,-0.13605 -87790,5001:371:4,-11.5,-7.5,0,0,-0.13605 -87791,5001:371:3,-11,-7.5,0,0,-0.13605 -87792,5001:370:4,-10.5,-7.5,0,0,-0.13605 -87793,5001:370:3,-10,-7.5,0,0,-0.13605 -87794,5000:479:4,-9.5,-7.5,0,0,-0.13605 -87795,5000:479:3,-9,-7.5,0,0,-0.13605 -87796,5000:478:4,-8.5,-7.5,0,0,-0.13605 -87797,5000:478:3,-8,-7.5,0,0,-0.13605 -87798,5000:477:4,-7.5,-7.5,0,0,-0.13605 -87799,5000:477:3,-7,-7.5,0,0,-0.13605 -87800,5000:476:4,-6.5,-7.5,0,0,-0.13605 -87801,5000:476:3,-6,-7.5,0,0,-0.13605 -87802,5000:475:4,-5.5,-7.5,0,0,-0.13605 -87803,5000:475:3,-5,-7.5,0,0,-0.13605 -87804,5000:374:4,-4.5,-7.5,0,0,-0.13605 -87805,5000:374:3,-4,-7.5,0,0,-0.13605 -87806,5000:373:4,-3.5,-7.5,0,0,-0.13605 -87807,5000:373:3,-3,-7.5,0,0,-0.13605 -87808,5000:372:4,-2.5,-7.5,0,0,-0.13605 -87809,5000:372:3,-2,-7.5,0,0,-0.13605 -87810,5000:371:4,-1.5,-7.5,0,0,-0.13605 -87811,5000:371:3,-1,-7.5,0,0,-0.13605 -87812,5000:370:4,-0.5,-7.5,0,0,-0.13605 -87813,3000:370:4,0,-7.5,0,0,-0.136081 -87814,3000:370:4,0.5,-7.5,0,0,-0.136243 -87815,3000:371:3,1,-7.5,0,0,-0.136243 -87816,3000:371:4,1.5,-7.5,0,0,-0.13633 -87817,3000:372:3,2,-7.5,0,0,-0.136903 -87818,3000:372:4,2.5,-7.5,0,0,-0.13826 -87819,3000:373:3,3,-7.5,0,0,-0.140582 -87820,3000:373:4,3.5,-7.5,0,0,-0.142834 -87821,3000:374:3,4,-7.5,0,0,-0.144636 -87822,3000:374:4,4.5,-7.5,0,0,-0.146425 -87823,3000:475:3,5,-7.5,0,0,-0.14842 -87824,3000:475:4,5.5,-7.5,0,0,-0.151039 -87825,3000:476:3,6,-7.5,0,0,-0.154654 -87826,3000:476:4,6.5,-7.5,0,0,-0.159432 -87827,3000:477:3,7,-7.5,0,0,-0.166286 -87828,3000:477:4,7.5,-7.5,0,0,-0.172665 -87829,3000:478:3,8,-7.5,0,0,-0.177937 -87830,3000:478:4,8.5,-7.5,0,0,-0.181968 -87831,3000:479:3,9,-7.5,0,0,-0.184731 -87832,3000:479:4,9.5,-7.5,0,0,-0.186705 -87833,3001:370:3,10,-7.5,0,0,-0.187071 -87834,3001:370:4,10.5,-7.5,0,0,-0.186443 -87835,3001:371:3,11,-7.5,0,0,-0.183343 -87836,3001:371:4,11.5,-7.5,0,0,-0.177222 -87837,3001:372:3,12,-7.5,0,0,-0.170226 -87838,3001:372:4,12.5,-7.5,0,0,-0.161495 -87839,3004:370:3,40,-7.5,0,0,-2.01824 -87840,3004:370:4,40.5,-7.5,0,0,-3.6164 -87841,3004:371:3,41,-7.5,0,0,-8.52457 -87842,3004:371:4,41.5,-7.5,0,0,-31.0123 -87843,3004:372:3,42,-7.5,0,0,-17.7029 -87844,3004:372:4,42.5,-7.5,0,0,-8.07899 -87845,3004:373:3,43,-7.5,0,0,-6.0316 -87846,3004:373:4,43.5,-7.5,0,0,-5.24151 -87847,3004:374:3,44,-7.5,0,0,-4.67245 -87848,3004:374:4,44.5,-7.5,0,0,-3.6164 -87849,3004:475:3,45,-7.5,0,0,-3.31756 -87850,3004:475:4,45.5,-7.5,0,0,-2.81481 -87851,3004:476:3,46,-7.5,0,0,-2.25028 -87852,3004:476:4,46.5,-7.5,0,0,-2.26457 -87853,3004:477:3,47,-7.5,0,0,-2.36818 -87854,3004:477:4,47.5,-7.5,0,0,-2.44745 -87855,3004:478:3,48,-7.5,0,0,-2.60202 -87856,3004:478:4,48.5,-7.5,0,0,-2.67613 -87857,3004:479:3,49,-7.5,0,0,-2.51409 -87858,3004:479:4,49.5,-7.5,0,0,-2.26457 -87859,3005:370:3,50,-7.5,0,0,-1.93875 -87860,3005:370:4,50.5,-7.5,0,0,-1.69254 -87861,3005:371:3,51,-7.5,0,0,-1.45167 -87862,3005:371:4,51.5,-7.5,0,0,-1.18737 -87863,3005:372:3,52,-7.5,0,0,-1.02191 -87864,3005:372:4,52.5,-7.5,0,0,-1.02191 -87865,3005:373:3,53,-7.5,0,0,-1.47956 -87866,3005:373:4,53.5,-7.5,0,0,-2.09107 -87867,3005:374:3,54,-7.5,0,0,-2.96716 -87868,3005:374:4,54.5,-7.5,0,0,-3.64913 -87869,3005:475:3,55,-7.5,0,0,-4.12441 -87870,3005:475:4,55.5,-7.5,0,0,-4.00437 -87871,3005:476:3,56,-7.5,0,0,-3.74949 -87872,3005:476:4,56.5,-7.5,0,0,-3.34562 -87873,3005:477:3,57,-7.5,0,0,-2.81481 -87874,3005:477:4,57.5,-7.5,0,0,-2.23613 -87875,3005:478:3,58,-7.5,0,0,-1.57645 -87876,3005:478:4,58.5,-7.5,0,0,-1.12949 -87877,3005:479:3,59,-7.5,0,0,-0.790583 -87878,3005:479:4,59.5,-7.5,0,0,-0.628738 -87879,3006:370:3,60,-7.5,0,0,-0.600569 -87880,3006:370:4,60.5,-7.5,0,0,-0.560894 -87881,3006:371:3,61,-7.5,0,0,-0.54809 -87882,3006:371:4,61.5,-7.5,0,0,-0.544967 -87883,3006:372:3,62,-7.5,0,0,-0.559806 -87884,3006:372:4,62.5,-7.5,0,0,-0.600569 -87885,3006:373:3,63,-7.5,0,0,-0.642894 -87886,3006:373:4,63.5,-7.5,0,0,-0.664242 -87887,3006:374:3,64,-7.5,0,0,-0.676699 -87888,3006:374:4,64.5,-7.5,0,0,-0.695274 -87889,3006:475:3,65,-7.5,0,0,-0.727843 -87890,3006:475:4,65.5,-7.5,0,0,-0.830247 -87891,3006:476:3,66,-7.5,0,0,-0.979344 -87892,3006:476:4,66.5,-7.5,0,0,-1.17749 -87893,3006:477:3,67,-7.5,0,0,-1.50831 -87894,3006:477:4,67.5,-7.5,0,0,-1.92773 -87895,3006:478:3,68,-7.5,0,0,-2.39955 -87896,3006:478:4,68.5,-7.5,0,0,-2.87867 -87897,3006:479:3,69,-7.5,0,0,-3.15913 -87898,3006:479:4,69.5,-7.5,0,0,-3.49152 -87899,3007:370:3,70,-7.5,0,0,-5.05687 -87900,3007:370:4,70.5,-7.5,0,0,-10.425 -87901,3007:371:3,71,-7.5,0,0,-9.7719 -87902,3007:371:4,71.5,-7.5,0,0,-7.42451 -87903,3007:372:3,72,-7.5,0,0,-6.66212 -87904,3007:372:4,72.5,-7.5,0,0,-8.21955 -87905,3007:373:4,73.5,-7.5,0,0,-9.01915 -87906,3007:374:3,74,-7.5,0,0,-10.1983 -87907,3007:374:4,74.5,-7.5,0,0,-15.973 -87908,3007:475:3,75,-7.5,0,0,-10.6543 -87909,3007:475:4,75.5,-7.5,0,0,-7.42451 -87910,3007:476:3,76,-7.5,0,0,-5.24151 -87911,3007:476:4,76.5,-7.5,0,0,-3.64913 -87912,3007:477:3,77,-7.5,0,0,-2.92199 -87913,3007:477:4,77.5,-7.5,0,0,-2.73399 -87914,3007:478:3,78,-7.5,0,0,-2.81481 -87915,3007:478:4,78.5,-7.5,0,0,-2.96716 -87916,3007:479:3,79,-7.5,0,0,-3.34562 -87917,3007:479:4,79.5,-7.5,0,0,-2.85711 -87918,3008:370:3,80,-7.5,0,0,-1.6245 -87919,3008:370:4,80.5,-7.5,0,0,-0.821452 -87920,3008:371:3,81,-7.5,0,0,-0.566343 -87921,3008:371:4,81.5,-7.5,0,0,-0.455404 -87922,3008:372:3,82,-7.5,0,0,-0.384201 -87923,3008:372:4,82.5,-7.5,0,0,-0.334791 -87924,3008:373:3,83,-7.5,0,0,-0.300688 -87925,3008:373:4,83.5,-7.5,0,0,-0.278994 -87926,3008:374:3,84,-7.5,0,0,-0.265317 -87927,3008:374:4,84.5,-7.5,0,0,-0.259177 -87928,3008:475:3,85,-7.5,0,0,-0.253999 -87929,3008:475:4,85.5,-7.5,0,0,-0.247798 -87930,3008:476:3,86,-7.5,0,0,-0.247414 -87931,3008:476:4,86.5,-7.5,0,0,-0.251658 -87932,3008:477:3,87,-7.5,0,0,-0.260795 -87933,3008:477:4,87.5,-7.5,0,0,-0.274637 -87934,3008:478:3,88,-7.5,0,0,-0.291686 -87935,3008:478:4,88.5,-7.5,0,0,-0.316142 -87936,3008:479:3,89,-7.5,0,0,-0.337569 -87937,3008:479:4,89.5,-7.5,0,0,-0.353662 -87938,3009:370:3,90,-7.5,0,0,-0.366361 -87939,3009:370:4,90.5,-7.5,0,0,-0.369454 -87940,3009:371:3,91,-7.5,0,0,-0.359627 -87941,3009:371:4,91.5,-7.5,0,0,-0.337569 -87942,3009:372:3,92,-7.5,0,0,-0.314095 -87943,3009:372:4,92.5,-7.5,0,0,-0.299247 -87944,3009:373:3,93,-7.5,0,0,-0.301175 -87945,3009:373:4,93.5,-7.5,0,0,-0.309546 -87946,3009:374:3,94,-7.5,0,0,-0.312575 -87947,3009:374:4,94.5,-7.5,0,0,-0.306568 -87948,3009:475:3,95,-7.5,0,0,-0.292155 -87949,3009:475:4,95.5,-7.5,0,0,-0.274637 -87950,3009:476:3,96,-7.5,0,0,-0.258784 -87951,3009:476:4,96.5,-7.5,0,0,-0.248184 -87952,3009:477:3,97,-7.5,0,0,-0.24401 -87953,3009:477:4,97.5,-7.5,0,0,-0.239561 -87954,3009:478:3,98,-7.5,0,0,-0.233779 -87955,3009:478:4,98.5,-7.5,0,0,-0.227814 -87956,3009:479:3,99,-7.5,0,0,-0.227814 -87957,3009:479:4,99.5,-7.5,0,0,-0.234848 -87958,3010:370:3,100,-7.5,0,0,-0.249719 -87959,3010:370:4,100.5,-7.5,0,0,-0.269083 -87960,3010:371:3,101,-7.5,0,0,-0.292155 -87961,3010:371:4,101.5,-7.5,0,0,-0.316142 -87962,3010:372:3,102,-7.5,0,0,-0.334791 -87963,3010:372:4,102.5,-7.5,0,0,-0.34492 -87964,3010:373:3,103,-7.5,0,0,-0.362666 -87965,3010:373:4,103.5,-7.5,0,0,-0.393547 -87966,3010:374:3,104,-7.5,0,0,-0.445696 -87967,3010:374:4,104.5,-7.5,0,0,-0.517822 -87968,3010:475:3,105,-7.5,0,0,-0.611356 -87969,3010:475:4,105.5,-7.5,0,0,-0.690938 -87970,3010:476:3,106,-7.5,0,0,-0.810021 -87971,3010:476:4,106.5,-7.5,0,0,-1.08005 -87972,3010:477:3,107,-7.5,0,0,-1.13876 -87973,3010:477:4,107.5,-7.5,0,0,-1.89559 -87974,3010:478:3,108,-7.5,0,0,-3.55346 -87975,3010:478:4,108.5,-7.5,0,0,-2.07856 -87976,3010:479:3,109,-7.5,0,0,-2.27859 -87977,3010:479:4,109.5,-7.5,0,0,-2.12896 -88097,5017:476:1,-176,-7,0,0,1.88526 -87978,3011:370:3,110,-7.5,0,0,-1.76564 -87979,3011:475:3,115,-7.5,0,0,1.32366 -87980,3011:475:4,115.5,-7.5,0,0,1.37246 -87981,3011:476:3,116,-7.5,0,0,1.33291 -87982,3011:476:4,116.5,-7.5,0,0,1.27501 -87983,3011:477:3,117,-7.5,0,0,1.30239 -87984,3011:477:4,117.5,-7.5,0,0,1.4688 -87985,3011:478:3,118,-7.5,0,0,1.55684 -87986,3011:478:4,118.5,-7.5,0,0,2.05833 -87987,3011:479:3,119,-7.5,0,0,2.00571 -87988,3011:479:4,119.5,-7.5,0,0,1.72124 -87989,3012:370:3,120,-7.5,0,0,1.25032 -87990,3012:370:4,120.5,-7.5,0,0,1.24952 -87991,3012:371:3,121,-7.5,0,0,1.22992 -87992,3012:371:4,121.5,-7.5,0,0,1.22472 -87993,3012:372:3,122,-7.5,0,0,1.24406 -87994,3012:372:4,122.5,-7.5,0,0,1.24227 -87995,3012:373:3,123,-7.5,0,0,1.27118 -87996,3012:373:4,123.5,-7.5,0,0,1.25925 -87997,3012:374:3,124,-7.5,0,0,1.26972 -87998,3012:374:4,124.5,-7.5,0,0,1.28256 -87999,3012:475:3,125,-7.5,0,0,1.49071 -88000,3012:475:4,125.5,-7.5,0,0,3.61829 -88001,3012:476:4,126.5,-7.5,0,0,1.24151 -88002,3012:477:3,127,-7.5,0,0,1.36756 -88003,3012:477:4,127.5,-7.5,0,0,1.38868 -88004,3012:478:3,128,-7.5,0,0,1.514 -88005,3012:478:4,128.5,-7.5,0,0,1.52934 -88006,3012:479:3,129,-7.5,0,0,1.33464 -88007,3012:479:4,129.5,-7.5,0,0,1.42628 -88008,3013:370:4,130.5,-7.5,0,0,1.29195 -88009,3013:371:3,131,-7.5,0,0,1.37643 -88010,3013:372:3,132,-7.5,0,0,1.3139 -88011,3013:372:4,132.5,-7.5,0,0,1.48929 -88012,3013:373:3,133,-7.5,0,0,1.47959 -88013,3013:373:4,133.5,-7.5,0,0,1.77946 -88014,3013:374:3,134,-7.5,0,0,2.05003 -88015,3013:374:4,134.5,-7.5,0,0,2.54474 -88016,3013:475:3,135,-7.5,0,0,2.84261 -88017,3013:475:4,135.5,-7.5,0,0,2.34735 -88018,3013:476:3,136,-7.5,0,0,2.26034 -88019,3013:476:4,136.5,-7.5,0,0,2.41717 -88020,3013:477:3,137,-7.5,0,0,2.11522 -88021,3013:477:4,137.5,-7.5,0,0,1.23748 -88022,3013:478:3,138,-7.5,0,0,1.14641 -88023,3014:374:4,144.5,-7.5,0,0,1.31313 -88024,3014:475:3,145,-7.5,0,0,-2.87867 -88025,3014:475:4,145.5,-7.5,0,0,-1.61649 -88026,3014:478:4,148.5,-7.5,0,0,4.74666 -88027,3014:479:3,149,-7.5,0,0,3.89806 -88028,3014:479:4,149.5,-7.5,0,0,2.2281 -88029,3015:370:3,150,-7.5,0,0,1.85385 -88030,3015:370:4,150.5,-7.5,0,0,1.82413 -88031,3015:371:3,151,-7.5,0,0,1.70243 -88032,3015:371:4,151.5,-7.5,0,0,1.38454 -88033,3015:372:3,152,-7.5,0,0,1.38454 -88034,3015:372:4,152.5,-7.5,0,0,1.32951 -88035,3015:373:3,153,-7.5,0,0,1.29548 -88036,3015:373:4,153.5,-7.5,0,0,1.2783 -88037,3015:374:3,154,-7.5,0,0,1.2587 -88038,3015:374:4,154.5,-7.5,0,0,1.24795 -88039,3015:475:3,155,-7.5,0,0,1.25406 -88040,3015:475:4,155.5,-7.5,0,0,1.25542 -88041,3015:476:3,156,-7.5,0,0,1.26288 -88042,3015:476:4,156.5,-7.5,0,0,1.2777 -88043,3015:477:3,157,-7.5,0,0,1.27002 -88044,3015:477:4,157.5,-7.5,0,0,1.24227 -88045,3015:478:3,158,-7.5,0,0,1.26092 -88046,3015:478:4,158.5,-7.5,0,0,1.26288 -88047,3015:479:3,159,-7.5,0,0,1.2765 -88048,3016:370:3,160,-7.5,0,0,1.33205 -88049,3016:370:4,160.5,-7.5,0,0,1.36952 -88050,3016:371:3,161,-7.5,0,0,1.49496 -88051,3016:371:4,161.5,-7.5,0,0,1.47144 -88052,3016:372:3,162,-7.5,0,0,1.53092 -88053,3016:372:4,162.5,-7.5,0,0,1.57741 -88054,3016:373:3,163,-7.5,0,0,1.54525 -88055,3016:373:4,163.5,-7.5,0,0,1.55515 -88056,3016:374:3,164,-7.5,0,0,1.66894 -88057,3016:374:4,164.5,-7.5,0,0,1.86935 -88058,3016:475:3,165,-7.5,0,0,2.08407 -88059,3016:475:4,165.5,-7.5,0,0,2.30572 -88060,3016:476:3,166,-7.5,0,0,2.47876 -88061,3016:476:4,166.5,-7.5,0,0,2.43059 -88062,3016:477:3,167,-7.5,0,0,2.2828 -88063,3016:477:4,167.5,-7.5,0,0,2.16718 -88064,3016:478:3,168,-7.5,0,0,2.08407 -88065,3016:478:4,168.5,-7.5,0,0,2.02549 -88066,3016:479:3,169,-7.5,0,0,2.05003 -88067,3016:479:4,169.5,-7.5,0,0,2.0797 -88068,3017:370:3,170,-7.5,0,0,2.04586 -88069,3017:370:4,170.5,-7.5,0,0,2.03361 -88070,3017:371:3,171,-7.5,0,0,2.03361 -88071,3017:371:4,171.5,-7.5,0,0,2.03361 -88072,3017:372:3,172,-7.5,0,0,2.00964 -88073,3017:372:4,172.5,-7.5,0,0,1.97904 -88074,3017:373:3,173,-7.5,0,0,1.9498 -88075,3017:373:4,173.5,-7.5,0,0,1.96058 -88076,3017:374:3,174,-7.5,0,0,2.02954 -88077,3017:374:4,174.5,-7.5,0,0,2.14313 -88078,3017:475:3,175,-7.5,0,0,2.28834 -88079,3017:475:4,175.5,-7.5,0,0,2.45089 -88080,3017:476:3,176,-7.5,0,0,2.64027 -88081,3017:476:4,176.5,-7.5,0,0,2.78372 -88082,3017:477:3,177,-7.5,0,0,2.83278 -88083,3017:477:4,177.5,-7.5,0,0,2.75514 -88084,3017:478:3,178,-7.5,0,0,2.66585 -88085,3017:478:4,178.5,-7.5,0,0,2.57556 -88086,3017:479:3,179,-7.5,0,0,2.36581 -88087,3017:479:4,179.5,-7.5,0,0,2.09724 -88088,3018:370:3,180,-7.5,0,0,1.86935 -88089,5018:370:1,-180,-7,0,0,1.56358 -88090,5017:479:2,-179.5,-7,0,0,1.55852 -88091,5017:479:1,-179,-7,0,0,1.58097 -88092,5017:478:2,-178.5,-7,0,0,1.60466 -88093,5017:478:1,-178,-7,0,0,1.63165 -88094,5017:477:2,-177.5,-7,0,0,1.6733 -88095,5017:477:1,-177,-7,0,0,1.73827 -88096,5017:476:2,-176.5,-7,0,0,1.83884 -88098,5017:475:2,-175.5,-7,0,0,1.92866 -88099,5017:475:1,-175,-7,0,0,1.88526 -88100,5017:374:2,-174.5,-7,0,0,1.87252 -88101,5017:374:1,-174,-7,0,0,1.82992 -88102,5017:373:2,-173.5,-7,0,0,1.78217 -88103,5017:373:1,-173,-7,0,0,1.77685 -88104,5017:372:2,-172.5,-7,0,0,1.77946 -88105,5017:372:1,-172,-7,0,0,1.78488 -88106,5017:371:2,-171.5,-7,0,0,1.79859 -88107,5017:371:1,-171,-7,0,0,1.81543 -88108,5017:370:2,-170.5,-7,0,0,1.86316 -88109,5017:370:1,-170,-7,0,0,1.9498 -88110,5016:479:2,-169.5,-7,0,0,2.02549 -88111,5016:479:1,-169,-7,0,0,2.05003 -88112,5016:478:2,-168.5,-7,0,0,2.0136 -88113,5016:478:1,-168,-7,0,0,1.99803 -88114,5016:477:2,-167.5,-7,0,0,1.97155 -88115,5016:477:1,-167,-7,0,0,1.92518 -88116,5016:476:2,-166.5,-7,0,0,1.86935 -88117,5016:476:1,-166,-7,0,0,1.88203 -88118,5016:475:2,-165.5,-7,0,0,1.92184 -88119,5016:475:1,-165,-7,0,0,1.9865 -88120,5016:374:2,-164.5,-7,0,0,2.07115 -88121,5016:374:1,-164,-7,0,0,2.14313 -88122,5016:373:2,-163.5,-7,0,0,2.18696 -88123,5016:373:1,-163,-7,0,0,2.2659 -88124,5016:372:2,-162.5,-7,0,0,2.41073 -88125,5016:372:1,-162,-7,0,0,2.56014 -88126,5016:371:2,-161.5,-7,0,0,2.77411 -88127,5016:371:1,-161,-7,0,0,3.07755 -88128,5016:370:2,-160.5,-7,0,0,3.51269 -88129,5016:370:1,-160,-7,0,0,4.39975 -88130,5015:479:2,-159.5,-7,0,0,5.82572 -88131,5015:479:1,-159,-7,0,0,8.66099 -88132,5015:478:2,-158.5,-7,0,0,30.0028 -88133,5015:478:1,-158,-7,0,0,-10.6543 -88134,5015:477:2,-157.5,-7,0,0,-4.20681 -88135,5015:477:1,-157,-7,0,0,-2.75397 -88136,5015:476:2,-156.5,-7,0,0,-2.04216 -88137,5015:476:1,-156,-7,0,0,-1.63282 -88138,5015:475:2,-155.5,-7,0,0,-1.39834 -88139,5015:475:1,-155,-7,0,0,-1.23925 -88140,5015:374:2,-154.5,-7,0,0,-1.05457 -88141,5015:374:1,-154,-7,0,0,-0.879166 -88142,5015:373:2,-153.5,-7,0,0,-0.746335 -88143,5015:373:1,-153,-7,0,0,-0.668345 -88144,5015:372:2,-152.5,-7,0,0,-0.600569 -88145,5015:372:1,-152,-7,0,0,-0.542909 -88146,5015:371:2,-151.5,-7,0,0,-0.500754 -88147,5015:371:1,-151,-7,0,0,-0.469608 -88148,5015:370:2,-150.5,-7,0,0,-0.43939 -88149,5015:370:1,-150,-7,0,0,-0.407395 -88150,5014:479:2,-149.5,-7,0,0,-0.371348 -88151,5014:479:1,-149,-7,0,0,-0.339242 -88152,5014:478:2,-148.5,-7,0,0,-0.318205 -88153,5014:478:1,-148,-7,0,0,-0.301663 -88154,5014:477:2,-147.5,-7,0,0,-0.287071 -88155,5014:477:1,-147,-7,0,0,-0.269509 -88156,5014:476:2,-146.5,-7,0,0,-0.250108 -88157,5014:476:1,-146,-7,0,0,-0.229892 -88158,5014:475:2,-145.5,-7,0,0,-0.212617 -88159,5014:475:1,-145,-7,0,0,-0.201139 -88160,5014:374:2,-144.5,-7,0,0,-0.197647 -88161,5014:374:1,-144,-7,0,0,-0.195703 -88162,5014:373:2,-143.5,-7,0,0,-0.193913 -88163,5014:373:1,-143,-7,0,0,-0.192529 -88164,5014:372:2,-142.5,-7,0,0,-0.191665 -88165,5014:372:1,-142,-7,0,0,-0.19094 -88166,5014:371:2,-141.5,-7,0,0,-0.190378 -88167,5014:371:1,-141,-7,0,0,-0.189791 -88168,5014:370:2,-140.5,-7,0,0,-0.189206 -88169,5014:370:1,-140,-7,0,0,-0.188438 -88170,5013:479:2,-139.5,-7,0,0,-0.187412 -88171,5013:479:1,-139,-7,0,0,-0.186235 -88172,5013:478:2,-138.5,-7,0,0,-0.185015 -88173,5013:478:1,-138,-7,0,0,-0.183753 -88174,5013:477:2,-137.5,-7,0,0,-0.182502 -88175,5013:477:1,-137,-7,0,0,-0.181184 -88176,5013:476:2,-136.5,-7,0,0,-0.179852 -88177,5013:476:1,-136,-7,0,0,-0.178531 -88178,5013:475:2,-135.5,-7,0,0,-0.177124 -88179,5013:475:1,-135,-7,0,0,-0.175777 -88180,5013:374:2,-134.5,-7,0,0,-0.174516 -88181,5013:374:1,-134,-7,0,0,-0.17324 -88182,5013:373:2,-133.5,-7,0,0,-0.171975 -88183,5013:373:1,-133,-7,0,0,-0.170814 -88184,5013:372:2,-132.5,-7,0,0,-0.169804 -88185,5013:372:1,-132,-7,0,0,-0.168847 -88186,5013:371:2,-131.5,-7,0,0,-0.168011 -88187,5013:371:1,-131,-7,0,0,-0.167388 -88188,5013:370:2,-130.5,-7,0,0,-0.166905 -88189,5013:370:1,-130,-7,0,0,-0.166446 -88190,5012:479:2,-129.5,-7,0,0,-0.165784 -88191,5012:479:1,-129,-7,0,0,-0.165056 -88192,5012:478:2,-128.5,-7,0,0,-0.16422 -88193,5012:478:1,-128,-7,0,0,-0.163231 -88194,5012:477:2,-127.5,-7,0,0,-0.162272 -88195,5012:477:1,-127,-7,0,0,-0.16123 -88196,5012:476:2,-126.5,-7,0,0,-0.160087 -88197,5012:476:1,-126,-7,0,0,-0.158779 -88198,5012:475:2,-125.5,-7,0,0,-0.15729 -88199,5012:475:1,-125,-7,0,0,-0.155774 -88200,5012:374:2,-124.5,-7,0,0,-0.154317 -88201,5012:374:1,-124,-7,0,0,-0.152772 -88202,5012:373:2,-123.5,-7,0,0,-0.151347 -88203,5012:373:1,-123,-7,0,0,-0.149855 -88204,5012:372:2,-122.5,-7,0,0,-0.148239 -88205,5012:372:1,-122,-7,0,0,-0.146644 -88206,5012:371:2,-121.5,-7,0,0,-0.14495 -88207,5012:371:1,-121,-7,0,0,-0.143027 -88208,5012:370:2,-120.5,-7,0,0,-0.141018 -88209,5012:370:1,-120,-7,0,0,-0.139156 -88210,5011:479:2,-119.5,-7,0,0,-0.137521 -88211,5011:479:1,-119,-7,0,0,-0.136195 -88212,5011:478:2,-118.5,-7,0,0,-0.13605 -88213,5011:478:1,-118,-7,0,0,-0.13605 -88214,5011:477:2,-117.5,-7,0,0,-0.13605 -88215,5011:477:1,-117,-7,0,0,-0.13605 -88216,5011:476:2,-116.5,-7,0,0,-0.13605 -88217,5011:476:1,-116,-7,0,0,-0.13605 -88218,5011:475:2,-115.5,-7,0,0,-0.13605 -88219,5011:475:1,-115,-7,0,0,-0.13605 -88220,5011:374:2,-114.5,-7,0,0,-0.13605 -88221,5011:374:1,-114,-7,0,0,-0.13605 -88222,5011:373:2,-113.5,-7,0,0,-0.13605 -88223,5011:373:1,-113,-7,0,0,-0.13605 -88224,5011:372:2,-112.5,-7,0,0,-0.13605 -88225,5011:372:1,-112,-7,0,0,-0.13605 -88226,5011:371:2,-111.5,-7,0,0,-0.13605 -88227,5011:371:1,-111,-7,0,0,-0.13605 -88228,5011:370:2,-110.5,-7,0,0,-0.13605 -88229,5011:370:1,-110,-7,0,0,-0.13605 -88230,5010:479:2,-109.5,-7,0,0,-0.13605 -88231,5010:479:1,-109,-7,0,0,-0.13605 -88232,5010:478:2,-108.5,-7,0,0,-0.13605 -88233,5010:478:1,-108,-7,0,0,-0.13605 -88234,5010:477:2,-107.5,-7,0,0,-0.13605 -88235,5010:477:1,-107,-7,0,0,-0.13605 -88236,5010:476:2,-106.5,-7,0,0,-0.13605 -88237,5010:476:1,-106,-7,0,0,-0.13605 -88238,5010:475:2,-105.5,-7,0,0,-0.13605 -88239,5010:475:1,-105,-7,0,0,-0.13605 -88240,5010:374:2,-104.5,-7,0,0,-0.13605 -88241,5010:374:1,-104,-7,0,0,-0.13605 -88242,5010:373:2,-103.5,-7,0,0,-0.13605 -88243,5010:373:1,-103,-7,0,0,-0.13605 -88244,5010:372:2,-102.5,-7,0,0,-0.13605 -88245,5010:372:1,-102,-7,0,0,-0.13605 -88246,5010:371:2,-101.5,-7,0,0,-0.13605 -88247,5010:371:1,-101,-7,0,0,-0.13605 -88248,5010:370:2,-100.5,-7,0,0,-0.13605 -88249,5010:370:1,-100,-7,0,0,-0.13605 -88250,5009:479:2,-99.5,-7,0,0,-0.13605 -88251,5009:479:1,-99,-7,0,0,-0.13605 -88252,5009:478:2,-98.5,-7,0,0,-0.13605 -88253,5009:478:1,-98,-7,0,0,-0.13605 -88254,5009:477:2,-97.5,-7,0,0,-0.13605 -88255,5009:477:1,-97,-7,0,0,-0.13605 -88256,5009:476:2,-96.5,-7,0,0,-0.13605 -88257,5009:476:1,-96,-7,0,0,-0.13605 -88258,5009:475:2,-95.5,-7,0,0,-0.13605 -88259,5009:475:1,-95,-7,0,0,-0.13605 -88260,5009:374:2,-94.5,-7,0,0,-0.13605 -88261,5009:374:1,-94,-7,0,0,-0.13605 -88262,5009:373:2,-93.5,-7,0,0,-0.13605 -88263,5009:373:1,-93,-7,0,0,-0.13605 -88264,5009:372:2,-92.5,-7,0,0,-0.13605 -88265,5009:372:1,-92,-7,0,0,-0.13605 -88266,5009:371:2,-91.5,-7,0,0,-0.13605 -88267,5009:371:1,-91,-7,0,0,-0.13605 -88268,5009:370:2,-90.5,-7,0,0,-0.13605 -88269,5009:370:1,-90,-7,0,0,-0.13605 -88270,5008:479:2,-89.5,-7,0,0,-0.13605 -88271,5008:479:1,-89,-7,0,0,-0.13605 -88272,5008:478:2,-88.5,-7,0,0,-0.13605 -88273,5008:478:1,-88,-7,0,0,-0.13605 -88274,5008:477:2,-87.5,-7,0,0,-0.13605 -88275,5008:477:1,-87,-7,0,0,-0.13605 -88276,5008:476:2,-86.5,-7,0,0,-0.13605 -88277,5008:476:1,-86,-7,0,0,-0.13605 -88278,5008:475:2,-85.5,-7,0,0,-0.13605 -88279,5008:475:1,-85,-7,0,0,-0.13605 -88280,5008:374:2,-84.5,-7,0,0,-0.13605 -88281,5008:374:1,-84,-7,0,0,-0.13605 -88282,5008:373:2,-83.5,-7,0,0,-0.13605 -88283,5008:373:1,-83,-7,0,0,-0.13605 -88284,5008:372:2,-82.5,-7,0,0,-0.13605 -88285,5008:372:1,-82,-7,0,0,-0.13605 -88286,5008:371:2,-81.5,-7,0,0,-0.13605 -88287,5008:371:1,-81,-7,0,0,-0.13605 -88288,5008:370:2,-80.5,-7,0,0,-0.13605 -88289,5008:370:1,-80,-7,0,0,-0.13605 -88290,5003:475:1,-35,-7,0,0,-0.180579 -88291,5003:374:2,-34.5,-7,0,0,-0.176388 -88292,5003:374:1,-34,-7,0,0,-0.173624 -88293,5003:373:2,-33.5,-7,0,0,-0.170956 -88294,5003:373:1,-33,-7,0,0,-0.16829 -88295,5003:372:2,-32.5,-7,0,0,-0.165898 -88296,5003:372:1,-32,-7,0,0,-0.164378 -88297,5003:371:2,-31.5,-7,0,0,-0.163254 -88298,5003:371:1,-31,-7,0,0,-0.162294 -88299,5003:370:2,-30.5,-7,0,0,-0.161584 -88300,5003:370:1,-30,-7,0,0,-0.16079 -88301,5002:479:2,-29.5,-7,0,0,-0.160175 -88302,5002:479:1,-29,-7,0,0,-0.159584 -88303,5002:478:2,-28.5,-7,0,0,-0.158779 -88304,5002:478:1,-28,-7,0,0,-0.157914 -88305,5002:477:2,-27.5,-7,0,0,-0.15714 -88306,5002:477:1,-27,-7,0,0,-0.156541 -88307,5002:476:2,-26.5,-7,0,0,-0.15603 -88308,5002:476:1,-26,-7,0,0,-0.155498 -88309,5002:475:2,-25.5,-7,0,0,-0.154654 -88310,5002:475:1,-25,-7,0,0,-0.153292 -88311,5002:374:2,-24.5,-7,0,0,-0.151552 -88312,5002:374:1,-24,-7,0,0,-0.150221 -88313,5002:373:2,-23.5,-7,0,0,-0.149469 -88314,5002:373:1,-23,-7,0,0,-0.148641 -88315,5002:372:2,-22.5,-7,0,0,-0.1472 -88316,5002:372:1,-22,-7,0,0,-0.146644 -88317,5002:371:2,-21.5,-7,0,0,-0.146862 -88318,5002:371:1,-21,-7,0,0,-0.146604 -88319,5002:370:2,-20.5,-7,0,0,-0.145794 -88320,5002:370:1,-20,-7,0,0,-0.144695 -88321,5001:479:2,-19.5,-7,0,0,-0.144558 -88322,5001:479:1,-19,-7,0,0,-0.144558 -88323,5001:478:2,-18.5,-7,0,0,-0.144014 -88324,5001:478:1,-18,-7,0,0,-0.143104 -88325,5001:477:2,-17.5,-7,0,0,-0.1422 -88326,5001:477:1,-17,-7,0,0,-0.141741 -88327,5001:476:2,-16.5,-7,0,0,-0.141684 -88328,5001:476:1,-16,-7,0,0,-0.141075 -88329,5001:475:2,-15.5,-7,0,0,-0.139122 -88330,5001:475:1,-15,-7,0,0,-0.137421 -88331,5001:374:2,-14.5,-7,0,0,-0.136737 -88332,5001:374:1,-14,-7,0,0,-0.136524 -88333,5001:373:2,-13.5,-7,0,0,-0.136369 -88334,5001:373:1,-13,-7,0,0,-0.136317 -88335,5001:372:2,-12.5,-7,0,0,-0.136243 -88336,5001:372:1,-12,-7,0,0,-0.13633 -88337,5001:371:2,-11.5,-7,0,0,-0.136382 -88338,5001:371:1,-11,-7,0,0,-0.136182 -88339,5001:370:2,-10.5,-7,0,0,-0.13605 -88340,5001:370:1,-10,-7,0,0,-0.13605 -88341,5000:479:2,-9.5,-7,0,0,-0.13605 -88342,5000:479:1,-9,-7,0,0,-0.13605 -88343,5000:478:2,-8.5,-7,0,0,-0.13605 -88344,5000:478:1,-8,-7,0,0,-0.13605 -88345,5000:477:2,-7.5,-7,0,0,-0.13605 -88346,5000:477:1,-7,-7,0,0,-0.13605 -88347,5000:476:2,-6.5,-7,0,0,-0.13605 -88348,5000:476:1,-6,-7,0,0,-0.13605 -88349,5000:475:2,-5.5,-7,0,0,-0.13605 -88350,5000:475:1,-5,-7,0,0,-0.13605 -88351,5000:374:2,-4.5,-7,0,0,-0.13605 -88352,5000:374:1,-4,-7,0,0,-0.13605 -88353,5000:373:2,-3.5,-7,0,0,-0.13605 -88354,5000:373:1,-3,-7,0,0,-0.136141 -88355,5000:372:2,-2.5,-7,0,0,-0.138209 -88356,5000:372:1,-2,-7,0,0,-0.14013 -88357,5000:371:2,-1.5,-7,0,0,-0.142028 -88358,5000:371:1,-1,-7,0,0,-0.143839 -88359,5000:370:2,-0.5,-7,0,0,-0.145597 -88360,3000:370:2,0,-7,0,0,-0.147839 -88361,3000:370:2,0.5,-7,0,0,-0.149611 -88362,3000:371:1,1,-7,0,0,-0.150446 -88363,3000:371:2,1.5,-7,0,0,-0.150649 -88364,3000:372:1,2,-7,0,0,-0.150507 -88365,3000:372:2,2.5,-7,0,0,-0.149997 -88366,3000:373:1,3,-7,0,0,-0.150038 -88367,3000:373:2,3.5,-7,0,0,-0.150895 -88368,3000:374:1,4,-7,0,0,-0.153313 -88369,3000:374:2,4.5,-7,0,0,-0.156306 -88370,3000:475:1,5,-7,0,0,-0.158931 -88371,3000:475:2,5.5,-7,0,0,-0.161407 -88372,3000:476:1,6,-7,0,0,-0.16483 -88373,3000:476:2,6.5,-7,0,0,-0.170086 -88374,3000:477:1,7,-7,0,0,-0.177296 -88375,3000:477:2,7.5,-7,0,0,-0.183702 -88376,3000:478:1,8,-7,0,0,-0.18749 -88377,3000:478:2,8.5,-7,0,0,-0.189631 -88378,3000:479:1,9,-7,0,0,-0.190564 -88379,3000:479:2,9.5,-7,0,0,-0.191154 -88380,3001:370:1,10,-7,0,0,-0.189817 -88381,3001:370:2,10.5,-7,0,0,-0.185222 -88382,3001:371:1,11,-7,0,0,-0.179577 -88383,3001:371:2,11.5,-7,0,0,-0.175169 -88384,3001:372:1,12,-7,0,0,-0.17169 -88385,3001:372:2,12.5,-7,0,0,-0.169898 -88386,3003:479:2,39.5,-7,0,0,-0.358431 -88387,3004:370:1,40,-7,0,0,-4.12441 -88388,3004:370:2,40.5,-7,0,0,10.1833 -88389,3004:371:1,41,-7,0,0,5.04044 -88390,3004:371:2,41.5,-7,0,0,3.61829 -88391,3004:372:1,42,-7,0,0,3.3212 -88392,3004:372:2,42.5,-7,0,0,4.13171 -88393,3004:373:1,43,-7,0,0,3.61829 -88394,3004:373:2,43.5,-7,0,0,3.59998 -88395,3004:374:1,44,-7,0,0,4.88857 -88396,3004:374:2,44.5,-7,0,0,7.02487 -88397,3004:475:1,45,-7,0,0,8.17922 -88398,3004:475:2,45.5,-7,0,0,7.75136 -88399,3004:476:1,46,-7,0,0,6.86436 -88400,3004:476:2,46.5,-7,0,0,7.55344 -88401,3004:477:1,47,-7,0,0,11.1801 -88402,3004:477:2,47.5,-7,0,0,20.7737 -88403,3004:478:1,48,-7,0,0,38.6991 -88404,3004:478:2,48.5,-7,0,0,146.38 -88405,3004:479:1,49,-7,0,0,-116.03 -88406,3004:479:2,49.5,-7,0,0,-19.0885 -88407,3005:370:1,50,-7,0,0,-9.38404 -88408,3005:370:2,50.5,-7,0,0,-5.57618 -88409,3005:371:1,51,-7,0,0,-3.43147 -88410,3005:371:2,51.5,-7,0,0,-1.9168 -88411,3005:372:1,52,-7,0,0,-1.29457 -88412,3005:372:2,52.5,-7,0,0,-1.07583 -88413,3005:373:1,53,-7,0,0,-1.15311 -88414,3005:373:2,53.5,-7,0,0,-1.52291 -88415,3005:374:1,54,-7,0,0,-2.16801 -88416,3005:374:2,54.5,-7,0,0,-2.9895 -88417,3005:475:1,55,-7,0,0,-4.04367 -88418,3005:475:2,55.5,-7,0,0,-5.24151 -88419,3005:476:1,56,-7,0,0,-5.95017 -88420,3005:476:2,56.5,-7,0,0,-8.21955 -88421,3005:477:1,57,-7,0,0,-12.9803 -88422,3005:477:2,57.5,-7,0,0,-13.3314 -88423,3005:478:1,58,-7,0,0,-8.68525 -88424,3005:478:2,58.5,-7,0,0,-4.52385 -88425,3005:479:1,59,-7,0,0,-2.41501 -88426,3005:479:2,59.5,-7,0,0,-1.43793 -88427,3006:370:1,60,-7,0,0,-1.22323 -88428,3006:370:2,60.5,-7,0,0,-1.07583 -88429,3006:371:1,61,-7,0,0,-1.0588 -88430,3006:371:2,61.5,-7,0,0,-1.05037 -88431,3006:372:1,62,-7,0,0,-1.05037 -88432,3006:372:2,62.5,-7,0,0,-1.08884 -88433,3006:373:1,63,-7,0,0,-1.12483 -88434,3006:373:2,63.5,-7,0,0,-1.15795 -88435,3006:374:1,64,-7,0,0,-1.15795 -88436,3006:374:2,64.5,-7,0,0,-1.18234 -88437,3006:475:1,65,-7,0,0,-1.22323 -88438,3006:475:2,65.5,-7,0,0,-1.36652 -88439,3006:476:1,66,-7,0,0,-1.60018 -88440,3006:476:2,66.5,-7,0,0,-1.9168 -88441,3006:477:1,67,-7,0,0,-2.09107 -88442,3006:477:2,67.5,-7,0,0,-2.20871 -88443,3006:478:1,68,-7,0,0,-2.25028 -88444,3006:478:2,68.5,-7,0,0,-2.33751 -88445,3006:479:1,69,-7,0,0,-2.41501 -88446,3006:479:2,69.5,-7,0,0,-2.51409 -88447,3007:370:1,70,-7,0,0,-2.62035 -88448,3007:370:2,70.5,-7,0,0,-3.55346 -88449,3007:371:1,71,-7,0,0,-1.39184 -88450,3007:371:2,71.5,-7,0,0,-6.96957 -88451,3007:372:1,72,-7,0,0,-9.38404 -88452,3007:372:2,72.5,-7,0,0,-94.5052 -88453,3007:373:2,73.5,-7,0,0,30.0028 -88454,3007:374:1,74,-7,0,0,14.6812 -88455,3007:374:2,74.5,-7,0,0,12.3981 -88456,3007:475:1,75,-7,0,0,8.79208 -88457,3007:475:2,75.5,-7,0,0,9.357 -88458,3007:476:1,76,-7,0,0,18.0323 -88459,3007:476:2,76.5,-7,0,0,-38.0195 -88460,3007:477:1,77,-7,0,0,-11.999 -88461,3007:477:2,77.5,-7,0,0,-9.01915 -88462,3007:478:1,78,-7,0,0,-6.86312 -88463,3007:478:2,78.5,-7,0,0,-4.77763 -88464,3007:479:1,79,-7,0,0,-3.23664 -88465,3007:479:2,79.5,-7,0,0,-1.90598 -88466,3008:370:1,80,-7,0,0,-1.13419 -88467,3008:370:2,80.5,-7,0,0,-0.812878 -88468,3008:371:1,81,-7,0,0,-0.696742 -88469,3008:371:2,81.5,-7,0,0,-0.64417 -88470,3008:372:1,82,-7,0,0,-0.604136 -88471,3008:372:2,82.5,-7,0,0,-0.579698 -88472,3008:373:1,83,-7,0,0,-0.57856 -88473,3008:373:2,83.5,-7,0,0,-0.563045 -88474,3008:374:1,84,-7,0,0,-0.539794 -88475,3008:374:2,84.5,-7,0,0,-0.525695 -88476,3008:475:1,85,-7,0,0,-0.525695 -88477,3008:475:2,85.5,-7,0,0,-0.5073 -88478,3008:476:1,86,-7,0,0,-0.486168 -88479,3008:476:2,86.5,-7,0,0,-0.484402 -88480,3008:477:1,87,-7,0,0,-0.499821 -88481,3008:477:2,87.5,-7,0,0,-0.524698 -88482,3008:478:1,88,-7,0,0,-0.555516 -88483,3008:478:2,88.5,-7,0,0,-0.58652 -88484,3008:479:1,89,-7,0,0,-0.606517 -88485,3008:479:2,89.5,-7,0,0,-0.62245 -88486,3009:370:1,90,-7,0,0,-0.654793 -88487,3009:370:2,90.5,-7,0,0,-0.664242 -88488,3009:371:1,91,-7,0,0,-0.650766 -88489,3009:371:2,91.5,-7,0,0,-0.626236 -88490,3009:372:1,92,-7,0,0,-0.619982 -88491,3009:372:2,92.5,-7,0,0,-0.611356 -88492,3009:373:1,93,-7,0,0,-0.57856 -88493,3009:373:2,93.5,-7,0,0,-0.537763 -88494,3009:374:1,94,-7,0,0,-0.521724 -88495,3009:374:2,94.5,-7,0,0,-0.524698 -88496,3009:475:1,95,-7,0,0,-0.511095 -88497,3009:475:2,95.5,-7,0,0,-0.478219 -88498,3009:476:1,96,-7,0,0,-0.446499 -88499,3009:476:2,96.5,-7,0,0,-0.420412 -88500,3009:477:1,97,-7,0,0,-0.40387 -88501,3009:477:2,97.5,-7,0,0,-0.403187 -88502,3009:478:1,98,-7,0,0,-0.411683 -88503,3009:478:2,98.5,-7,0,0,-0.424126 -88504,3009:479:1,99,-7,0,0,-0.43628 -88505,3009:479:2,99.5,-7,0,0,-0.44412 -88506,3010:370:1,100,-7,0,0,-0.45458 -88507,3010:370:2,100.5,-7,0,0,-0.475617 -88508,3010:371:1,101,-7,0,0,-0.500754 -88509,3010:371:2,101.5,-7,0,0,-0.521724 -88510,3010:372:1,102,-7,0,0,-0.537763 -88511,3010:372:2,102.5,-7,0,0,-0.539794 -88512,3010:373:1,103,-7,0,0,-0.525695 -88513,3010:373:2,103.5,-7,0,0,-0.546016 -88514,3010:374:1,104,-7,0,0,-0.692349 -88515,3010:374:2,104.5,-7,0,0,-1.12949 -88516,3010:475:1,105,-7,0,0,-2.22214 -88517,3010:475:2,105.5,-7,0,0,-3.71515 -88518,3010:476:1,106,-7,0,0,-1.73753 -88519,3011:374:2,114.5,-7,0,0,1.28564 -88520,3011:475:1,115,-7,0,0,1.2786 -88521,3011:475:2,115.5,-7,0,0,1.30205 -88522,3011:476:1,116,-7,0,0,1.25139 -88523,3011:476:2,116.5,-7,0,0,1.30474 -88524,3011:477:1,117,-7,0,0,1.9498 -88525,3011:477:2,117.5,-7,0,0,2.12445 -88526,3011:478:1,118,-7,0,0,1.79859 -88527,3011:478:2,118.5,-7,0,0,2.0136 -88528,3011:479:1,119,-7,0,0,2.84261 -88529,3011:479:2,119.5,-7,0,0,1.94621 -88530,3012:370:1,120,-7,0,0,1.85385 -88531,3012:370:2,120.5,-7,0,0,1.35152 -88532,3012:371:1,121,-7,0,0,1.29226 -88533,3012:371:2,121.5,-7,0,0,1.27531 -88534,3012:372:1,122,-7,0,0,1.23136 -88535,3012:372:2,122.5,-7,0,0,1.23015 -88536,3012:373:1,123,-7,0,0,1.24612 -88537,3012:373:2,123.5,-7,0,0,1.25032 -88538,3012:374:1,124,-7,0,0,1.23525 -88539,3012:374:2,124.5,-7,0,0,1.24355 -88540,3012:475:1,125,-7,0,0,1.24769 -88541,3012:475:2,125.5,-7,0,0,1.24483 -88542,3012:476:1,126,-7,0,0,1.27501 -88543,3012:476:2,126.5,-7,0,0,1.29354 -88544,3012:477:1,127,-7,0,0,1.32283 -88545,3012:477:2,127.5,-7,0,0,1.33291 -88546,3012:478:1,128,-7,0,0,1.45445 -88547,3012:478:2,128.5,-7,0,0,1.40916 -88548,3012:479:1,129,-7,0,0,1.37744 -88549,3012:479:2,129.5,-7,0,0,1.29548 -88550,3013:370:1,130,-7,0,0,1.28878 -88551,3013:370:2,130.5,-7,0,0,1.30072 -88552,3013:371:1,131,-7,0,0,1.35338 -88553,3013:371:2,131.5,-7,0,0,1.41478 -88554,3013:372:1,132,-7,0,0,1.40147 -88555,3013:372:2,132.5,-7,0,0,1.50656 -88556,3013:373:1,133,-7,0,0,1.66468 -88557,3013:373:2,133.5,-7,0,0,1.83884 -88558,3013:374:1,134,-7,0,0,2.04171 -88559,3013:374:2,134.5,-7,0,0,1.23257 -88560,3013:475:1,135,-7,0,0,1.24691 -88561,3013:475:2,135.5,-7,0,0,1.67543 -88562,3013:476:1,136,-7,0,0,2.03759 -88563,3013:476:2,136.5,-7,0,0,2.31142 -88564,3013:477:1,137,-7,0,0,2.47187 -88565,3013:477:2,137.5,-7,0,0,1.37048 -88566,3013:478:1,138,-7,0,0,1.14727 -88567,3013:478:2,138.5,-7,0,0,1.1247 -88568,3014:477:2,147.5,-7,0,0,10.0048 -88569,3014:478:1,148,-7,0,0,4.26047 -88570,3014:478:2,148.5,-7,0,0,4.71237 -88571,3014:479:1,149,-7,0,0,2.42385 -88572,3014:479:2,149.5,-7,0,0,2.19696 -88573,3015:370:1,150,-7,0,0,2.12445 -88574,3015:370:2,150.5,-7,0,0,2.28834 -88575,3015:371:1,151,-7,0,0,1.79303 -88576,3015:371:2,151.5,-7,0,0,1.47959 -88577,3015:372:1,152,-7,0,0,1.31233 -88578,3015:372:2,152.5,-7,0,0,1.28163 -88579,3015:373:1,153,-7,0,0,1.26316 -88580,3015:373:2,153.5,-7,0,0,1.25218 -88581,3015:374:1,154,-7,0,0,1.24483 -88582,3015:374:2,154.5,-7,0,0,1.23403 -88583,3015:475:1,155,-7,0,0,1.23064 -88584,3015:475:2,155.5,-7,0,0,1.25139 -88585,3015:476:1,156,-7,0,0,1.27031 -88586,3015:476:2,156.5,-7,0,0,1.27353 -88587,3015:477:2,157.5,-7,0,0,1.2765 -88588,3015:478:1,158,-7,0,0,1.28564 -88589,3015:478:2,158.5,-7,0,0,1.29226 -88590,3015:479:1,159,-7,0,0,1.29163 -88591,3015:479:2,159.5,-7,0,0,1.29581 -88592,3016:370:1,160,-7,0,0,1.33464 -88593,3016:370:2,160.5,-7,0,0,1.40474 -88594,3016:371:1,161,-7,0,0,1.38148 -88595,3016:371:2,161.5,-7,0,0,1.34163 -88596,3016:372:1,162,-7,0,0,1.35338 -88597,3016:372:2,162.5,-7,0,0,1.38046 -88598,3016:373:1,163,-7,0,0,1.38662 -88599,3016:373:2,163.5,-7,0,0,1.37643 -88600,3016:374:1,164,-7,0,0,1.41364 -88601,3016:374:2,164.5,-7,0,0,1.50071 -88602,3016:475:1,165,-7,0,0,1.64377 -88603,3016:475:2,165.5,-7,0,0,1.84782 -88604,3016:476:1,166,-7,0,0,1.96058 -88605,3016:476:2,166.5,-7,0,0,1.96058 -88606,3016:477:1,167,-7,0,0,1.91498 -88607,3016:477:2,167.5,-7,0,0,1.86935 -88608,3016:478:1,168,-7,0,0,1.81543 -88609,3016:478:2,168.5,-7,0,0,1.76886 -88610,3016:479:1,169,-7,0,0,1.79859 -88611,3016:479:2,169.5,-7,0,0,1.78217 -88612,3017:370:1,170,-7,0,0,1.76368 -88613,3017:370:2,170.5,-7,0,0,1.75082 -88614,3017:371:1,171,-7,0,0,1.77946 -88615,3017:371:2,171.5,-7,0,0,1.84176 -88616,3017:372:1,172,-7,0,0,1.8789 -88617,3017:372:2,172.5,-7,0,0,1.8789 -88618,3017:373:1,173,-7,0,0,1.84176 -88619,3017:373:2,173.5,-7,0,0,1.80695 -88620,3017:374:1,174,-7,0,0,1.76886 -88621,3017:374:2,174.5,-7,0,0,1.74077 -88622,3017:475:1,175,-7,0,0,1.75847 -88623,3017:475:2,175.5,-7,0,0,1.80412 -88624,3017:476:1,176,-7,0,0,1.86935 -88625,3017:476:2,176.5,-7,0,0,1.92184 -88626,3017:477:1,177,-7,0,0,1.92184 -88627,3017:477:2,177.5,-7,0,0,1.88203 -88628,3017:478:1,178,-7,0,0,1.80979 -88629,3017:478:2,178.5,-7,0,0,1.74077 -88630,3017:479:1,179,-7,0,0,1.6733 -88631,3017:479:2,179.5,-7,0,0,1.6103 -88632,3018:370:1,180,-7,0,0,1.56358 -88633,5018:360:3,-180,-6.5,0,0,1.60839 -88634,5017:469:4,-179.5,-6.5,0,0,1.61222 -88635,5017:469:3,-179,-6.5,0,0,1.63366 -88636,5017:468:4,-178.5,-6.5,0,0,1.64583 -88637,5017:468:3,-178,-6.5,0,0,1.68431 -88638,5017:467:4,-177.5,-6.5,0,0,1.76107 -88639,5017:467:3,-177,-6.5,0,0,1.88203 -88640,5017:466:4,-176.5,-6.5,0,0,1.97155 -88641,5017:466:3,-176,-6.5,0,0,1.99416 -88642,5017:465:4,-175.5,-6.5,0,0,2.09278 -88643,5017:465:3,-175,-6.5,0,0,1.96794 -88644,5017:364:4,-174.5,-6.5,0,0,1.92866 -88645,5017:364:3,-174,-6.5,0,0,1.8757 -88646,5017:363:4,-173.5,-6.5,0,0,1.82121 -88647,5017:363:3,-173,-6.5,0,0,1.80139 -88648,5017:362:4,-172.5,-6.5,0,0,1.79303 -88649,5017:362:3,-172,-6.5,0,0,1.79859 -88650,5017:361:4,-171.5,-6.5,0,0,1.79859 -88651,5017:361:3,-171,-6.5,0,0,1.82121 -88652,5017:360:4,-170.5,-6.5,0,0,1.86316 -88653,5017:360:3,-170,-6.5,0,0,1.93215 -88654,5016:469:4,-169.5,-6.5,0,0,2.00964 -88655,5016:469:3,-169,-6.5,0,0,2.08407 -88656,5016:468:4,-168.5,-6.5,0,0,2.10624 -88657,5016:468:3,-168,-6.5,0,0,2.13366 -88658,5016:467:4,-167.5,-6.5,0,0,2.09724 -88659,5016:467:3,-167,-6.5,0,0,2.04171 -88660,5016:466:4,-166.5,-6.5,0,0,2.0541 -88661,5016:466:3,-166,-6.5,0,0,2.14313 -88662,5016:465:4,-165.5,-6.5,0,0,2.29409 -88663,5016:465:3,-165,-6.5,0,0,2.53735 -88664,5016:364:4,-164.5,-6.5,0,0,2.74606 -88665,5016:364:3,-164,-6.5,0,0,2.88378 -88666,5016:363:4,-163.5,-6.5,0,0,2.99383 -88667,5016:363:3,-163,-6.5,0,0,3.1279 -88668,5016:362:4,-162.5,-6.5,0,0,3.30674 -88669,5016:362:3,-162,-6.5,0,0,3.79238 -88670,5016:361:4,-161.5,-6.5,0,0,5.16119 -88671,5016:361:3,-161,-6.5,0,0,9.357 -88672,5016:360:4,-160.5,-6.5,0,0,54.8408 -88673,5016:360:3,-160,-6.5,0,0,-15.4623 -88674,5015:469:4,-159.5,-6.5,0,0,-6.56424 -88675,5015:469:3,-159,-6.5,0,0,-3.92893 -88676,5015:468:4,-158.5,-6.5,0,0,-2.5839 -88677,5015:468:3,-158,-6.5,0,0,-1.86401 -88678,5015:467:4,-157.5,-6.5,0,0,-1.43114 -88679,5015:467:3,-157,-6.5,0,0,-1.19244 -88680,5015:466:4,-156.5,-6.5,0,0,-1.05457 -88681,5015:466:3,-156,-6.5,0,0,-0.939481 -88682,5015:465:4,-155.5,-6.5,0,0,-0.842097 -88683,5015:465:3,-155,-6.5,0,0,-0.761432 -88684,5015:364:4,-154.5,-6.5,0,0,-0.682336 -88685,5015:364:3,-154,-6.5,0,0,-0.61749 -88686,5015:363:4,-153.5,-6.5,0,0,-0.554442 -88687,5015:363:3,-153,-6.5,0,0,-0.497061 -88688,5015:362:4,-152.5,-6.5,0,0,-0.446499 -88689,5015:362:3,-152,-6.5,0,0,-0.409543 -88690,5015:361:4,-151.5,-6.5,0,0,-0.382242 -88691,5015:361:3,-151,-6.5,0,0,-0.360236 -88692,5015:360:4,-150.5,-6.5,0,0,-0.340375 -88693,5015:360:3,-150,-6.5,0,0,-0.318728 -88694,5014:469:4,-149.5,-6.5,0,0,-0.297334 -88695,5014:469:3,-149,-6.5,0,0,-0.279438 -88696,5014:468:4,-148.5,-6.5,0,0,-0.2649 -88697,5014:468:3,-148,-6.5,0,0,-0.25322 -88698,5014:467:4,-147.5,-6.5,0,0,-0.243267 -88699,5014:467:3,-147,-6.5,0,0,-0.232359 -88700,5014:466:4,-146.5,-6.5,0,0,-0.219854 -88701,5014:466:3,-146,-6.5,0,0,-0.205796 -88702,5014:465:4,-145.5,-6.5,0,0,-0.198404 -88703,5014:465:3,-145,-6.5,0,0,-0.196144 -88704,5014:364:4,-144.5,-6.5,0,0,-0.194087 -88705,5014:364:3,-144,-6.5,0,0,-0.192367 -88706,5014:363:4,-143.5,-6.5,0,0,-0.191154 -88707,5014:363:3,-143,-6.5,0,0,-0.190031 -88708,5014:362:4,-142.5,-6.5,0,0,-0.189073 -88709,5014:362:3,-142,-6.5,0,0,-0.188201 -88710,5014:361:4,-141.5,-6.5,0,0,-0.18728 -88711,5014:361:3,-141,-6.5,0,0,-0.186261 -88712,5014:360:4,-140.5,-6.5,0,0,-0.185196 -88713,5014:360:3,-140,-6.5,0,0,-0.184267 -88714,5013:469:4,-139.5,-6.5,0,0,-0.183446 -88715,5013:469:3,-139,-6.5,0,0,-0.182629 -88716,5013:468:4,-138.5,-6.5,0,0,-0.181664 -88717,5013:468:3,-138,-6.5,0,0,-0.180529 -88718,5013:467:4,-137.5,-6.5,0,0,-0.179378 -88719,5013:467:3,-137,-6.5,0,0,-0.178358 -88720,5013:466:4,-136.5,-6.5,0,0,-0.177468 -88721,5013:466:3,-136,-6.5,0,0,-0.176559 -88722,5013:465:4,-135.5,-6.5,0,0,-0.175559 -88723,5013:465:3,-135,-6.5,0,0,-0.174443 -88724,5013:364:4,-134.5,-6.5,0,0,-0.173264 -88725,5013:364:3,-134,-6.5,0,0,-0.17207 -88726,5013:363:4,-133.5,-6.5,0,0,-0.170838 -88727,5013:363:3,-133,-6.5,0,0,-0.16957 -88728,5013:362:4,-132.5,-6.5,0,0,-0.168382 -88729,5013:362:3,-132,-6.5,0,0,-0.167342 -88730,5013:361:4,-131.5,-6.5,0,0,-0.166446 -88731,5013:361:3,-131,-6.5,0,0,-0.165693 -88732,5013:360:4,-130.5,-6.5,0,0,-0.165147 -88733,5013:360:3,-130,-6.5,0,0,-0.164694 -88734,5012:469:4,-129.5,-6.5,0,0,-0.164107 -88735,5012:469:3,-129,-6.5,0,0,-0.16341 -88736,5012:468:4,-128.5,-6.5,0,0,-0.16265 -88737,5012:468:3,-128,-6.5,0,0,-0.161783 -88738,5012:467:4,-127.5,-6.5,0,0,-0.160921 -88739,5012:467:3,-127,-6.5,0,0,-0.15989 -88740,5012:466:4,-126.5,-6.5,0,0,-0.158757 -88741,5012:466:3,-126,-6.5,0,0,-0.157526 -88742,5012:465:4,-125.5,-6.5,0,0,-0.15603 -88743,5012:465:3,-125,-6.5,0,0,-0.154527 -88744,5012:364:4,-124.5,-6.5,0,0,-0.152896 -88745,5012:364:3,-124,-6.5,0,0,-0.151203 -88746,5012:363:4,-123.5,-6.5,0,0,-0.149713 -88747,5012:363:3,-123,-6.5,0,0,-0.148299 -88748,5012:362:4,-122.5,-6.5,0,0,-0.146782 -88749,5012:362:3,-122,-6.5,0,0,-0.145125 -88750,5012:361:4,-121.5,-6.5,0,0,-0.14349 -88751,5012:361:3,-121,-6.5,0,0,-0.14197 -88752,5012:360:4,-120.5,-6.5,0,0,-0.140488 -88753,5012:360:3,-120,-6.5,0,0,-0.138986 -88754,5011:469:4,-119.5,-6.5,0,0,-0.137622 -88755,5011:469:3,-119,-6.5,0,0,-0.136434 -88756,5011:468:4,-118.5,-6.5,0,0,-0.136051 -88757,5011:468:3,-118,-6.5,0,0,-0.13605 -88758,5011:467:4,-117.5,-6.5,0,0,-0.13605 -88759,5011:467:3,-117,-6.5,0,0,-0.13605 -88760,5011:466:4,-116.5,-6.5,0,0,-0.13605 -88761,5011:466:3,-116,-6.5,0,0,-0.13605 -88762,5011:465:4,-115.5,-6.5,0,0,-0.13605 -88763,5011:465:3,-115,-6.5,0,0,-0.13605 -88764,5011:364:4,-114.5,-6.5,0,0,-0.13605 -88765,5011:364:3,-114,-6.5,0,0,-0.13605 -88766,5011:363:4,-113.5,-6.5,0,0,-0.13605 -88767,5011:363:3,-113,-6.5,0,0,-0.13605 -88768,5011:362:4,-112.5,-6.5,0,0,-0.13605 -88769,5011:362:3,-112,-6.5,0,0,-0.13605 -88770,5011:361:4,-111.5,-6.5,0,0,-0.13605 -88771,5011:361:3,-111,-6.5,0,0,-0.13605 -88772,5011:360:4,-110.5,-6.5,0,0,-0.13605 -88773,5011:360:3,-110,-6.5,0,0,-0.13605 -88774,5010:469:4,-109.5,-6.5,0,0,-0.13605 -88775,5010:469:3,-109,-6.5,0,0,-0.13605 -88776,5010:468:4,-108.5,-6.5,0,0,-0.13605 -88777,5010:468:3,-108,-6.5,0,0,-0.13605 -88778,5010:467:4,-107.5,-6.5,0,0,-0.13605 -88779,5010:467:3,-107,-6.5,0,0,-0.13605 -88780,5010:466:4,-106.5,-6.5,0,0,-0.13605 -88781,5010:466:3,-106,-6.5,0,0,-0.13605 -88782,5010:465:4,-105.5,-6.5,0,0,-0.13605 -88783,5010:465:3,-105,-6.5,0,0,-0.13605 -88784,5010:364:4,-104.5,-6.5,0,0,-0.13605 -88785,5010:364:3,-104,-6.5,0,0,-0.13605 -88786,5010:363:4,-103.5,-6.5,0,0,-0.13605 -88787,5010:363:3,-103,-6.5,0,0,-0.13605 -88788,5010:362:4,-102.5,-6.5,0,0,-0.13605 -88789,5010:362:3,-102,-6.5,0,0,-0.13605 -88790,5010:361:4,-101.5,-6.5,0,0,-0.13605 -88791,5010:361:3,-101,-6.5,0,0,-0.13605 -88792,5010:360:4,-100.5,-6.5,0,0,-0.13605 -88793,5010:360:3,-100,-6.5,0,0,-0.13605 -88794,5009:469:4,-99.5,-6.5,0,0,-0.13605 -88795,5009:469:3,-99,-6.5,0,0,-0.13605 -88796,5009:468:4,-98.5,-6.5,0,0,-0.13605 -88797,5009:468:3,-98,-6.5,0,0,-0.13605 -88798,5009:467:4,-97.5,-6.5,0,0,-0.13605 -88799,5009:467:3,-97,-6.5,0,0,-0.13605 -88800,5009:466:4,-96.5,-6.5,0,0,-0.13605 -88801,5009:466:3,-96,-6.5,0,0,-0.13605 -88802,5009:465:4,-95.5,-6.5,0,0,-0.13605 -88803,5009:465:3,-95,-6.5,0,0,-0.13605 -88804,5009:364:4,-94.5,-6.5,0,0,-0.13605 -88805,5009:364:3,-94,-6.5,0,0,-0.13605 -88806,5009:363:4,-93.5,-6.5,0,0,-0.13605 -88807,5009:363:3,-93,-6.5,0,0,-0.13605 -88808,5009:362:4,-92.5,-6.5,0,0,-0.13605 -88809,5009:362:3,-92,-6.5,0,0,-0.13605 -88810,5009:361:4,-91.5,-6.5,0,0,-0.13605 -88811,5009:361:3,-91,-6.5,0,0,-0.13605 -88812,5009:360:4,-90.5,-6.5,0,0,-0.13605 -88813,5009:360:3,-90,-6.5,0,0,-0.13605 -88814,5008:469:4,-89.5,-6.5,0,0,-0.13605 -88815,5008:469:3,-89,-6.5,0,0,-0.13605 -88816,5008:468:4,-88.5,-6.5,0,0,-0.13605 -88817,5008:468:3,-88,-6.5,0,0,-0.13605 -88818,5008:467:4,-87.5,-6.5,0,0,-0.13605 -88819,5008:467:3,-87,-6.5,0,0,-0.13605 -88820,5008:466:4,-86.5,-6.5,0,0,-0.13605 -88821,5008:466:3,-86,-6.5,0,0,-0.13605 -88822,5008:465:4,-85.5,-6.5,0,0,-0.13605 -88823,5008:465:3,-85,-6.5,0,0,-0.13605 -88824,5008:364:4,-84.5,-6.5,0,0,-0.13605 -88825,5008:364:3,-84,-6.5,0,0,-0.13605 -88826,5008:363:4,-83.5,-6.5,0,0,-0.13605 -88827,5008:363:3,-83,-6.5,0,0,-0.13605 -88828,5008:362:4,-82.5,-6.5,0,0,-0.13605 -88829,5008:362:3,-82,-6.5,0,0,-0.13605 -88830,5008:361:4,-81.5,-6.5,0,0,-0.13605 -88831,5008:361:3,-81,-6.5,0,0,-0.13605 -88832,5003:465:3,-35,-6.5,0,0,-0.175072 -88833,5003:364:4,-34.5,-6.5,0,0,-0.171785 -88834,5003:364:3,-34,-6.5,0,0,-0.167111 -88835,5003:363:4,-33.5,-6.5,0,0,-0.16624 -88836,5003:363:3,-33,-6.5,0,0,-0.165693 -88837,5003:362:4,-32.5,-6.5,0,0,-0.165261 -88838,5003:362:3,-32,-6.5,0,0,-0.165011 -88839,5003:361:4,-31.5,-6.5,0,0,-0.164491 -88840,5003:361:3,-31,-6.5,0,0,-0.16386 -88841,5003:360:4,-30.5,-6.5,0,0,-0.163231 -88842,5003:360:3,-30,-6.5,0,0,-0.162695 -88843,5002:469:4,-29.5,-6.5,0,0,-0.162072 -88844,5002:469:3,-29,-6.5,0,0,-0.161054 -88845,5002:468:4,-28.5,-6.5,0,0,-0.159671 -88846,5002:468:3,-28,-6.5,0,0,-0.158324 -88847,5002:467:4,-27.5,-6.5,0,0,-0.157398 -88848,5002:467:3,-27,-6.5,0,0,-0.156605 -88849,5002:466:4,-26.5,-6.5,0,0,-0.155987 -88850,5002:466:3,-26,-6.5,0,0,-0.155583 -88851,5002:465:4,-25.5,-6.5,0,0,-0.15516 -88852,5002:465:3,-25,-6.5,0,0,-0.154527 -88853,5002:364:4,-24.5,-6.5,0,0,-0.153668 -88854,5002:364:3,-24,-6.5,0,0,-0.153 -88855,5002:363:4,-23.5,-6.5,0,0,-0.152461 -88856,5002:363:3,-23,-6.5,0,0,-0.151614 -88857,5002:362:4,-22.5,-6.5,0,0,-0.150364 -88858,5002:362:3,-22,-6.5,0,0,-0.14949 -88859,5002:361:4,-21.5,-6.5,0,0,-0.14951 -88860,5002:361:3,-21,-6.5,0,0,-0.149206 -88861,5002:360:4,-20.5,-6.5,0,0,-0.148621 -88862,5002:360:3,-20,-6.5,0,0,-0.147958 -88863,5001:469:4,-19.5,-6.5,0,0,-0.147279 -88864,5001:469:3,-19,-6.5,0,0,-0.146941 -88865,5001:468:4,-18.5,-6.5,0,0,-0.146624 -88866,5001:468:3,-18,-6.5,0,0,-0.146168 -88867,5001:467:4,-17.5,-6.5,0,0,-0.145656 -88868,5001:467:3,-17,-6.5,0,0,-0.14495 -88869,5001:466:4,-16.5,-6.5,0,0,-0.145184 -88870,5001:466:3,-16,-6.5,0,0,-0.145892 -88871,5001:465:4,-15.5,-6.5,0,0,-0.145695 -88872,5001:465:3,-15,-6.5,0,0,-0.144636 -88873,5001:364:4,-14.5,-6.5,0,0,-0.143161 -88874,5001:364:3,-14,-6.5,0,0,-0.142143 -88875,5001:363:4,-13.5,-6.5,0,0,-0.14136 -88876,5001:363:3,-13,-6.5,0,0,-0.140829 -88877,5001:362:4,-12.5,-6.5,0,0,-0.140356 -88878,5001:362:3,-12,-6.5,0,0,-0.139735 -88879,5001:361:4,-11.5,-6.5,0,0,-0.139453 -88880,5001:361:3,-11,-6.5,0,0,-0.139105 -88881,5001:360:4,-10.5,-6.5,0,0,-0.138008 -88882,5001:360:3,-10,-6.5,0,0,-0.136279 -88883,5000:469:4,-9.5,-6.5,0,0,-0.13605 -88884,5000:469:3,-9,-6.5,0,0,-0.13605 -88885,5000:468:4,-8.5,-6.5,0,0,-0.13605 -88886,5000:468:3,-8,-6.5,0,0,-0.13605 -88887,5000:467:4,-7.5,-6.5,0,0,-0.13605 -88888,5000:467:3,-7,-6.5,0,0,-0.13605 -88889,5000:466:4,-6.5,-6.5,0,0,-0.136408 -88890,5000:466:3,-6,-6.5,0,0,-0.137337 -88891,5000:465:4,-5.5,-6.5,0,0,-0.138193 -88892,5000:465:3,-5,-6.5,0,0,-0.138783 -88893,5000:364:4,-4.5,-6.5,0,0,-0.138716 -88894,5000:364:3,-4,-6.5,0,0,-0.138479 -88895,5000:363:4,-3.5,-6.5,0,0,-0.139037 -88896,5000:363:3,-3,-6.5,0,0,-0.140923 -88897,5000:362:4,-2.5,-6.5,0,0,-0.143142 -88898,5000:362:3,-2,-6.5,0,0,-0.145008 -88899,5000:361:4,-1.5,-6.5,0,0,-0.146981 -88900,5000:361:3,-1,-6.5,0,0,-0.149004 -88901,5000:360:4,-0.5,-6.5,0,0,-0.150486 -88902,3000:360:4,0,-6.5,0,0,-0.152109 -88903,3000:360:4,0.5,-6.5,0,0,-0.154003 -88904,3000:361:3,1,-6.5,0,0,-0.15552 -88905,3000:361:4,1.5,-6.5,0,0,-0.156648 -88906,3000:362:3,2,-6.5,0,0,-0.157376 -88907,3000:362:4,2.5,-6.5,0,0,-0.157183 -88908,3000:363:3,3,-6.5,0,0,-0.157054 -88909,3000:363:4,3.5,-6.5,0,0,-0.15714 -88910,3000:364:3,4,-6.5,0,0,-0.158931 -88911,3000:364:4,4.5,-6.5,0,0,-0.163119 -88912,3000:465:3,5,-6.5,0,0,-0.166423 -88913,3000:465:4,5.5,-6.5,0,0,-0.16915 -88914,3000:466:3,6,-6.5,0,0,-0.173552 -88915,3000:466:4,6.5,-6.5,0,0,-0.177813 -88916,3000:467:3,7,-6.5,0,0,-0.183215 -88917,3000:467:4,7.5,-6.5,0,0,-0.188385 -88918,3000:468:3,8,-6.5,0,0,-0.190564 -88919,3000:468:4,8.5,-6.5,0,0,-0.191074 -88920,3000:469:3,9,-6.5,0,0,-0.190752 -88921,3000:469:4,9.5,-6.5,0,0,-0.189604 -88922,3001:360:3,10,-6.5,0,0,-0.187569 -88923,3001:360:4,10.5,-6.5,0,0,-0.183882 -88924,3001:361:3,11,-6.5,0,0,-0.173768 -88925,3001:361:4,11.5,-6.5,0,0,-0.148099 -88926,3001:362:3,12,-6.5,0,0,-0.150957 -88927,3003:469:4,39.5,-6.5,0,0,-0.915262 -88928,3004:360:3,40,-6.5,0,0,-6.20082 -88929,3004:360:4,40.5,-6.5,0,0,3.9876 -88930,3004:361:3,41,-6.5,0,0,2.77411 -88931,3004:361:4,41.5,-6.5,0,0,2.11982 -88932,3004:362:3,42,-6.5,0,0,1.92866 -88933,3004:362:4,42.5,-6.5,0,0,1.86004 -88934,3004:363:3,43,-6.5,0,0,1.84478 -88935,3004:363:4,43.5,-6.5,0,0,1.88203 -88936,3004:364:3,44,-6.5,0,0,2.13366 -88937,3004:364:4,44.5,-6.5,0,0,2.59952 -88938,3004:465:3,45,-6.5,0,0,3.221 -88939,3004:465:4,45.5,-6.5,0,0,3.41371 -88940,3004:466:3,46,-6.5,0,0,3.2774 -88941,3004:466:4,46.5,-6.5,0,0,3.56455 -88942,3004:467:3,47,-6.5,0,0,4.0578 -88943,3004:467:4,47.5,-6.5,0,0,5.20333 -88944,3004:468:3,48,-6.5,0,0,7.02487 -88945,3004:468:4,48.5,-6.5,0,0,11.1801 -88946,3004:469:3,49,-6.5,0,0,27.0086 -88947,3004:469:4,49.5,-6.5,0,0,49.6485 -88948,3005:360:3,50,-6.5,0,0,146.38 -88949,3005:360:4,50.5,-6.5,0,0,-20.6761 -88950,3005:361:3,51,-6.5,0,0,-6.11512 -88951,3005:361:4,51.5,-6.5,0,0,-2.00645 -88952,3005:362:3,52,-6.5,0,0,-1.07583 -88953,3005:362:4,52.5,-6.5,0,0,-0.929047 -88954,3005:363:3,53,-6.5,0,0,-0.960878 -88955,3005:363:4,53.5,-6.5,0,0,-1.1483 -88956,3005:364:3,54,-6.5,0,0,-1.32978 -88957,3005:364:4,54.5,-6.5,0,0,-1.61649 -88958,3005:465:3,55,-6.5,0,0,-2.04216 -88959,3005:465:4,55.5,-6.5,0,0,-2.53137 -88960,3005:466:3,56,-6.5,0,0,-1.59213 -88961,3005:466:4,56.5,-6.5,0,0,-4.04367 -88962,3005:467:3,57,-6.5,0,0,-10.1983 -88963,3005:467:4,57.5,-6.5,0,0,79.6842 -88964,3005:468:3,58,-6.5,0,0,36.1333 -88965,3005:468:4,58.5,-6.5,0,0,-116.03 -88966,3005:469:3,59,-6.5,0,0,-9.7719 -88967,3005:469:4,59.5,-6.5,0,0,-3.74949 -88968,3006:360:3,60,-6.5,0,0,-2.54832 -88969,3006:360:4,60.5,-6.5,0,0,-2.26457 -88970,3006:361:3,61,-6.5,0,0,-2.14197 -88971,3006:361:4,61.5,-6.5,0,0,-2.07856 -88972,3006:362:3,62,-6.5,0,0,-1.93875 -88973,3006:362:4,62.5,-6.5,0,0,-1.75619 -88974,3006:363:3,63,-6.5,0,0,-1.58437 -88975,3006:363:4,63.5,-6.5,0,0,-1.57645 -88976,3006:364:3,64,-6.5,0,0,-1.53041 -88977,3006:364:4,64.5,-6.5,0,0,-1.48672 -88978,3006:465:3,65,-6.5,0,0,-1.43114 -88979,3006:465:4,65.5,-6.5,0,0,-1.4654 -88980,3006:466:3,66,-6.5,0,0,-1.61649 -88981,3006:466:4,66.5,-6.5,0,0,-1.81358 -88982,3006:467:3,67,-6.5,0,0,-1.77489 -88983,3006:467:4,67.5,-6.5,0,0,-1.48672 -88984,3006:468:3,68,-6.5,0,0,-1.28327 -88985,3006:468:4,68.5,-6.5,0,0,-1.20768 -88986,3006:469:3,69,-6.5,0,0,-1.29457 -88987,3006:469:4,69.5,-6.5,0,0,-1.5157 -88988,3007:360:3,70,-6.5,0,0,-1.68399 -88989,3007:360:4,70.5,-6.5,0,0,-1.86401 -88990,3007:361:3,71,-6.5,0,0,-1.9168 -88991,3007:361:4,71.5,-6.5,0,0,-2.11607 -88992,3007:362:3,72,-6.5,0,0,-2.94442 -88993,3007:362:4,72.5,-6.5,0,0,-5.05687 -88994,3007:363:4,73.5,-6.5,0,0,-8.36943 -88995,3007:364:3,74,-6.5,0,0,-14.1166 -88996,3007:364:4,74.5,-6.5,0,0,337.61 -88997,3007:465:3,75,-6.5,0,0,36.1333 -88998,3007:465:4,75.5,-6.5,0,0,28.4486 -88999,3007:466:3,76,-6.5,0,0,45.362 -89000,3007:466:4,76.5,-6.5,0,0,-49.0351 -89001,3007:467:3,77,-6.5,0,0,-15.4623 -89002,3007:467:4,77.5,-6.5,0,0,-7.42451 -89003,3007:468:3,78,-6.5,0,0,-4.83019 -89004,3007:468:4,78.5,-6.5,0,0,-3.46126 -89005,3007:469:3,79,-6.5,0,0,-2.51409 -89006,3007:469:4,79.5,-6.5,0,0,-1.84375 -89007,3008:360:3,80,-6.5,0,0,-1.41127 -89008,3008:360:4,80.5,-6.5,0,0,-1.18234 -89009,3008:361:3,81,-6.5,0,0,-1.08443 -89010,3008:361:4,81.5,-6.5,0,0,-1.08884 -89011,3008:362:3,82,-6.5,0,0,-1.11574 -89012,3008:362:4,82.5,-6.5,0,0,-1.14351 -89013,3008:363:3,83,-6.5,0,0,-1.20251 -89014,3008:363:4,83.5,-6.5,0,0,-1.20251 -89015,3008:364:3,84,-6.5,0,0,-1.18737 -89016,3008:364:4,84.5,-6.5,0,0,-1.20768 -89017,3008:465:3,85,-6.5,0,0,-1.16758 -89018,3008:465:4,85.5,-6.5,0,0,-1.08443 -89019,3008:466:3,86,-6.5,0,0,-1.03395 -89020,3008:466:4,86.5,-6.5,0,0,-0.994479 -89021,3008:467:3,87,-6.5,0,0,-1.00224 -89022,3008:467:4,87.5,-6.5,0,0,-1.05037 -89023,3008:468:3,88,-6.5,0,0,-1.12483 -89024,3008:468:4,88.5,-6.5,0,0,-1.12949 -89025,3008:469:3,89,-6.5,0,0,-1.13419 -89026,3008:469:4,89.5,-6.5,0,0,-1.13876 -89027,3009:360:3,90,-6.5,0,0,-1.24466 -89028,3009:360:4,90.5,-6.5,0,0,-1.37899 -89029,3009:361:3,91,-6.5,0,0,-1.41127 -89030,3009:361:4,91.5,-6.5,0,0,-1.29457 -89031,3009:362:3,92,-6.5,0,0,-1.12483 -89032,3009:362:4,92.5,-6.5,0,0,-1.03805 -89033,3009:363:3,93,-6.5,0,0,-0.99075 -89034,3009:363:4,93.5,-6.5,0,0,-0.908585 -89035,3009:364:3,94,-6.5,0,0,-0.818638 -89036,3009:364:4,94.5,-6.5,0,0,-0.740005 -89037,3009:465:3,95,-6.5,0,0,-0.683766 -89038,3009:465:4,95.5,-6.5,0,0,-0.642894 -89039,3009:466:3,96,-6.5,0,0,-0.615049 -89040,3009:466:4,96.5,-6.5,0,0,-0.590007 -89041,3009:467:3,97,-6.5,0,0,-0.566343 -89042,3009:467:4,97.5,-6.5,0,0,-0.559806 -89043,3009:468:3,98,-6.5,0,0,-0.568523 -89044,3009:468:4,98.5,-6.5,0,0,-0.585399 -89045,3009:469:3,99,-6.5,0,0,-0.610169 -89046,3009:469:4,99.5,-6.5,0,0,-0.642894 -89047,3010:360:3,100,-6.5,0,0,-0.688039 -89048,3010:360:4,100.5,-6.5,0,0,-0.717269 -89049,3010:361:3,101,-6.5,0,0,-0.717269 -89050,3010:361:4,101.5,-6.5,0,0,-0.724249 -89051,3010:362:3,102,-6.5,0,0,-0.724249 -89052,3010:362:4,102.5,-6.5,0,0,-0.70113 -89053,3010:363:3,103,-6.5,0,0,-0.638968 -89054,3010:363:4,103.5,-6.5,0,0,-0.690938 -89055,3010:364:3,104,-6.5,0,0,-1.28898 -89056,3010:364:4,104.5,-6.5,0,0,-4.52385 -89057,3010:465:3,105,-6.5,0,0,-33.0023 -89058,3010:465:4,105.5,-6.5,0,0,20.7737 -89059,3010:468:3,108,-6.5,0,0,1.38148 -89060,3010:468:4,108.5,-6.5,0,0,1.38148 -89061,3010:469:3,109,-6.5,0,0,1.63165 -89062,3010:469:4,109.5,-6.5,0,0,1.84176 -89063,3011:360:3,110,-6.5,0,0,1.97155 -89064,3011:360:4,110.5,-6.5,0,0,2.14313 -89065,3011:361:3,111,-6.5,0,0,1.6065 -89066,3011:361:4,111.5,-6.5,0,0,1.49496 -89067,3011:362:3,112,-6.5,0,0,1.36467 -89068,3011:362:4,112.5,-6.5,0,0,1.34788 -89069,3011:363:3,113,-6.5,0,0,1.29258 -89070,3011:363:4,113.5,-6.5,0,0,1.29163 -89071,3011:364:3,114,-6.5,0,0,1.31632 -89072,3011:364:4,114.5,-6.5,0,0,1.39501 -89073,3011:465:3,115,-6.5,0,0,1.38251 -89074,3011:465:4,115.5,-6.5,0,0,1.35152 -89075,3011:466:3,116,-6.5,0,0,1.29195 -89076,3011:466:4,116.5,-6.5,0,0,1.31551 -89077,3011:467:3,117,-6.5,0,0,1.55348 -89078,3011:467:4,117.5,-6.5,0,0,4.31529 -89079,3011:468:3,118,-6.5,0,0,2.23344 -89080,3011:468:4,118.5,-6.5,0,0,1.93215 -89081,3011:469:3,119,-6.5,0,0,5.47185 -89082,3011:469:4,119.5,-6.5,0,0,2.93751 -89083,3012:360:3,120,-6.5,0,0,1.64583 -89084,3012:360:4,120.5,-6.5,0,0,2.88378 -89085,3012:361:3,121,-6.5,0,0,1.55852 -89086,3012:361:4,121.5,-6.5,0,0,1.43702 -89087,3012:362:3,122,-6.5,0,0,1.29842 -89088,3012:362:4,122.5,-6.5,0,0,1.29131 -89089,3012:363:3,123,-6.5,0,0,1.29226 -89090,3012:363:4,123.5,-6.5,0,0,1.27382 -89091,3012:364:3,124,-6.5,0,0,1.25678 -89092,3012:364:4,124.5,-6.5,0,0,1.29067 -89093,3012:465:3,125,-6.5,0,0,1.48371 -89094,3012:465:4,125.5,-6.5,0,0,1.2872 -89095,3012:466:3,126,-6.5,0,0,1.29099 -89096,3012:466:4,126.5,-6.5,0,0,1.30968 -89097,3012:467:3,127,-6.5,0,0,1.33897 -89098,3012:467:4,127.5,-6.5,0,0,1.35896 -89099,3012:468:3,128,-6.5,0,0,1.40147 -89100,3012:468:4,128.5,-6.5,0,0,1.40584 -89101,3012:469:3,129,-6.5,0,0,1.35991 -89102,3012:469:4,129.5,-6.5,0,0,1.31874 -89103,3013:360:3,130,-6.5,0,0,1.29907 -89104,3013:360:4,130.5,-6.5,0,0,1.29516 -89105,3013:361:3,131,-6.5,0,0,1.3139 -89106,3013:361:4,131.5,-6.5,0,0,1.39501 -89107,3013:362:3,132,-6.5,0,0,1.58988 -89108,3013:362:4,132.5,-6.5,0,0,1.66894 -89109,3013:363:3,133,-6.5,0,0,1.55348 -89110,3013:363:4,133.5,-6.5,0,0,1.32615 -89111,3013:364:3,134,-6.5,0,0,1.34971 -89112,3013:465:3,135,-6.5,0,0,1.1586 -89113,3013:465:4,135.5,-6.5,0,0,1.40253 -89114,3013:466:3,136,-6.5,0,0,2.32928 -89115,3013:466:4,136.5,-6.5,0,0,2.9051 -89116,3013:467:3,137,-6.5,0,0,2.30572 -89117,3013:467:4,137.5,-6.5,0,0,1.39929 -89118,3013:468:3,138,-6.5,0,0,1.15845 -89119,3013:468:4,138.5,-6.5,0,0,1.12352 -89120,3014:468:3,148,-6.5,0,0,-1.77489 -89121,3014:468:4,148.5,-6.5,0,0,3.54688 -89122,3014:469:3,149,-6.5,0,0,2.60739 -89123,3014:469:4,149.5,-6.5,0,0,7.9575 -89124,3015:361:3,151,-6.5,0,0,6.05201 -89125,3015:361:4,151.5,-6.5,0,0,1.91498 -89126,3015:362:3,152,-6.5,0,0,1.5469 -89127,3015:362:4,152.5,-6.5,0,0,1.30205 -89128,3015:363:3,153,-6.5,0,0,1.27206 -89129,3015:363:4,153.5,-6.5,0,0,1.24587 -89130,3015:364:3,154,-6.5,0,0,1.26008 -89131,3015:364:4,154.5,-6.5,0,0,1.26288 -89132,3015:465:3,155,-6.5,0,0,1.28471 -89133,3015:466:3,156,-6.5,0,0,1.36952 -89134,3015:466:4,156.5,-6.5,0,0,1.34788 -89135,3015:467:3,157,-6.5,0,0,1.35896 -89136,3015:467:4,157.5,-6.5,0,0,1.33464 -89137,3015:468:3,158,-6.5,0,0,1.33119 -89138,3015:468:4,158.5,-6.5,0,0,1.31874 -89139,3015:469:3,159,-6.5,0,0,1.32283 -89140,3015:469:4,159.5,-6.5,0,0,1.36181 -89141,3016:360:3,160,-6.5,0,0,1.46089 -89142,3016:360:4,160.5,-6.5,0,0,1.78488 -89143,3016:361:3,161,-6.5,0,0,1.94263 -89144,3016:361:4,161.5,-6.5,0,0,1.41478 -89145,3016:362:3,162,-6.5,0,0,1.31711 -89146,3016:362:4,162.5,-6.5,0,0,1.31632 -89147,3016:363:3,163,-6.5,0,0,1.32447 -89148,3016:363:4,163.5,-6.5,0,0,1.33985 -89149,3016:364:3,164,-6.5,0,0,1.40038 -89150,3016:364:4,164.5,-6.5,0,0,1.45317 -89151,3016:465:3,165,-6.5,0,0,1.54204 -89152,3016:465:4,165.5,-6.5,0,0,1.67543 -89153,3016:466:3,166,-6.5,0,0,1.78217 -89154,3016:466:4,166.5,-6.5,0,0,1.81264 -89155,3016:467:3,167,-6.5,0,0,1.79303 -89156,3016:467:4,167.5,-6.5,0,0,1.78217 -89157,3016:468:3,168,-6.5,0,0,1.74827 -89158,3016:468:4,168.5,-6.5,0,0,1.70243 -89159,3016:469:3,169,-6.5,0,0,1.70703 -89160,3016:469:4,169.5,-6.5,0,0,1.73091 -89161,3017:360:3,170,-6.5,0,0,1.73578 -89162,3017:360:4,170.5,-6.5,0,0,1.76368 -89163,3017:361:3,171,-6.5,0,0,1.82706 -89164,3017:361:4,171.5,-6.5,0,0,1.88851 -89165,3017:362:3,172,-6.5,0,0,1.89498 -89166,3017:362:4,172.5,-6.5,0,0,1.85087 -89167,3017:363:3,173,-6.5,0,0,1.77946 -89168,3017:363:4,173.5,-6.5,0,0,1.73578 -89169,3017:364:3,174,-6.5,0,0,1.71412 -89170,3017:364:4,174.5,-6.5,0,0,1.71175 -89171,3017:465:3,175,-6.5,0,0,1.72846 -89172,3017:465:4,175.5,-6.5,0,0,1.75847 -89173,3017:466:3,176,-6.5,0,0,1.78761 -89174,3017:466:4,176.5,-6.5,0,0,1.81831 -89175,3017:467:3,177,-6.5,0,0,1.77418 -89176,3017:467:4,177.5,-6.5,0,0,1.72124 -89177,3017:468:3,178,-6.5,0,0,1.70011 -89178,3017:468:4,178.5,-6.5,0,0,1.66253 -89179,3017:469:3,179,-6.5,0,0,1.62574 -89180,3017:469:4,179.5,-6.5,0,0,1.60278 -89181,3018:360:3,180,-6.5,0,0,1.60839 -89182,5018:360:1,-180,-6,0,0,1.62772 -89183,5017:469:2,-179.5,-6,0,0,1.62772 -89184,5017:469:1,-179,-6,0,0,1.64784 -89185,5017:468:2,-178.5,-6,0,0,1.71644 -89186,5017:468:1,-178,-6,0,0,1.82992 -89187,5017:467:2,-177.5,-6,0,0,1.93566 -89188,5017:467:1,-177,-6,0,0,2.04171 -89189,5017:466:2,-176.5,-6,0,0,2.15741 -89190,5017:466:1,-176,-6,0,0,2.16718 -89191,5017:465:2,-175.5,-6,0,0,2.29989 -89192,5017:465:1,-175,-6,0,0,2.30572 -89193,5017:364:2,-174.5,-6,0,0,2.11065 -89194,5017:364:1,-174,-6,0,0,2.09724 -89195,5017:363:2,-173.5,-6,0,0,1.9865 -89196,5017:363:1,-173,-6,0,0,1.93908 -89197,5017:362:2,-172.5,-6,0,0,1.93566 -89198,5017:362:1,-172,-6,0,0,1.96425 -89199,5017:361:2,-171.5,-6,0,0,2.00571 -89200,5017:361:1,-171,-6,0,0,2.07534 -89201,5017:360:2,-170.5,-6,0,0,2.15257 -89202,5017:360:1,-170,-6,0,0,2.24406 -89203,5016:469:2,-169.5,-6,0,0,2.35974 -89204,5016:469:1,-169,-6,0,0,2.5223 -89205,5016:468:2,-168.5,-6,0,0,2.71845 -89206,5016:468:1,-168,-6,0,0,2.77411 -89207,5016:467:2,-167.5,-6,0,0,2.72758 -89208,5016:467:1,-167,-6,0,0,2.73678 -89209,5016:466:2,-166.5,-6,0,0,3.10228 -89210,5016:466:1,-166,-6,0,0,3.63682 -89211,5016:465:2,-165.5,-6,0,0,4.26047 -89212,5016:465:1,-165,-6,0,0,5.20333 -89213,5016:364:2,-164.5,-6,0,0,6.29856 -89214,5016:364:1,-164,-6,0,0,7.75136 -89215,5016:363:2,-163.5,-6,0,0,9.357 -89216,5016:363:1,-163,-6,0,0,11.8805 -89217,5016:362:2,-162.5,-6,0,0,20.0054 -89218,5016:362:1,-162,-6,0,0,-31.0123 -89219,5016:361:2,-161.5,-6,0,0,-7.54802 -89220,5016:361:1,-161,-6,0,0,-4.20681 -89221,5016:360:2,-160.5,-6,0,0,-2.73399 -89222,5016:360:1,-160,-6,0,0,-1.97212 -89223,5015:469:2,-159.5,-6,0,0,-1.49371 -89224,5015:469:1,-159,-6,0,0,-1.18737 -89225,5015:468:2,-158.5,-6,0,0,-0.983124 -89226,5015:468:1,-158,-6,0,0,-0.842097 -89227,5015:467:2,-157.5,-6,0,0,-0.729692 -89228,5015:467:1,-157,-6,0,0,-0.66562 -89229,5015:466:2,-156.5,-6,0,0,-0.62497 -89230,5015:466:1,-156,-6,0,0,-0.58652 -89231,5015:465:2,-155.5,-6,0,0,-0.54083 -89232,5015:465:1,-155,-6,0,0,-0.505402 -89233,5015:364:2,-154.5,-6,0,0,-0.471303 -89234,5015:364:1,-154,-6,0,0,-0.43628 -89235,5015:363:2,-153.5,-6,0,0,-0.403187 -89236,5015:363:1,-153,-6,0,0,-0.369454 -89237,5015:362:2,-152.5,-6,0,0,-0.341496 -89238,5015:362:1,-152,-6,0,0,-0.318728 -89239,5015:361:2,-151.5,-6,0,0,-0.302152 -89240,5015:361:1,-151,-6,0,0,-0.287532 -89241,5015:360:2,-150.5,-6,0,0,-0.274637 -89242,5015:360:1,-150,-6,0,0,-0.262425 -89243,5014:469:2,-149.5,-6,0,0,-0.248944 -89244,5014:469:1,-149,-6,0,0,-0.233779 -89245,5014:468:2,-148.5,-6,0,0,-0.220502 -89246,5014:468:1,-148,-6,0,0,-0.209428 -89247,5014:467:2,-147.5,-6,0,0,-0.202389 -89248,5014:467:1,-147,-6,0,0,-0.198856 -89249,5014:466:2,-146.5,-6,0,0,-0.197692 -89250,5014:466:1,-146,-6,0,0,-0.196231 -89251,5014:465:2,-145.5,-6,0,0,-0.194217 -89252,5014:465:1,-145,-6,0,0,-0.192286 -89253,5014:364:2,-144.5,-6,0,0,-0.191047 -89254,5014:364:1,-144,-6,0,0,-0.18987 -89255,5014:363:2,-143.5,-6,0,0,-0.188702 -89256,5014:363:1,-143,-6,0,0,-0.187595 -89257,5014:362:2,-142.5,-6,0,0,-0.186365 -89258,5014:362:1,-142,-6,0,0,-0.185015 -89259,5014:361:2,-141.5,-6,0,0,-0.183523 -89260,5014:361:1,-141,-6,0,0,-0.181917 -89261,5014:360:2,-140.5,-6,0,0,-0.180403 -89262,5014:360:1,-140,-6,0,0,-0.179178 -89263,5013:469:2,-139.5,-6,0,0,-0.178135 -89264,5013:469:1,-139,-6,0,0,-0.177247 -89265,5013:468:2,-138.5,-6,0,0,-0.176878 -89266,5013:468:1,-138,-6,0,0,-0.176535 -89267,5013:467:2,-137.5,-6,0,0,-0.175875 -89268,5013:467:1,-137,-6,0,0,-0.175048 -89269,5013:466:2,-136.5,-6,0,0,-0.174346 -89270,5013:466:1,-136,-6,0,0,-0.17372 -89271,5013:465:2,-135.5,-6,0,0,-0.172976 -89272,5013:465:1,-135,-6,0,0,-0.172141 -89273,5013:364:2,-134.5,-6,0,0,-0.171263 -89274,5013:364:1,-134,-6,0,0,-0.17018 -89275,5013:363:2,-133.5,-6,0,0,-0.16901 -89276,5013:363:1,-133,-6,0,0,-0.167757 -89277,5013:362:2,-132.5,-6,0,0,-0.166309 -89278,5013:362:1,-132,-6,0,0,-0.164762 -89279,5013:361:2,-131.5,-6,0,0,-0.163366 -89280,5013:361:1,-131,-6,0,0,-0.162205 -89281,5013:360:2,-130.5,-6,0,0,-0.161429 -89282,5013:360:1,-130,-6,0,0,-0.160833 -89283,5012:469:2,-129.5,-6,0,0,-0.160109 -89284,5012:469:1,-129,-6,0,0,-0.159432 -89285,5012:468:2,-128.5,-6,0,0,-0.158735 -89286,5012:468:1,-128,-6,0,0,-0.157914 -89287,5012:467:2,-127.5,-6,0,0,-0.157033 -89288,5012:467:1,-127,-6,0,0,-0.156008 -89289,5012:466:2,-126.5,-6,0,0,-0.154991 -89290,5012:466:1,-126,-6,0,0,-0.15396 -89291,5012:465:2,-125.5,-6,0,0,-0.152772 -89292,5012:465:1,-125,-6,0,0,-0.151449 -89293,5012:364:2,-124.5,-6,0,0,-0.149977 -89294,5012:364:1,-124,-6,0,0,-0.1485 -89295,5012:363:2,-123.5,-6,0,0,-0.14722 -89296,5012:363:1,-123,-6,0,0,-0.14605 -89297,5012:362:2,-122.5,-6,0,0,-0.144773 -89298,5012:362:1,-122,-6,0,0,-0.143335 -89299,5012:361:2,-121.5,-6,0,0,-0.141952 -89300,5012:361:1,-121,-6,0,0,-0.140791 -89301,5012:360:2,-120.5,-6,0,0,-0.139791 -89302,5012:360:1,-120,-6,0,0,-0.138935 -89303,5011:469:2,-119.5,-6,0,0,-0.138108 -89304,5011:469:1,-119,-6,0,0,-0.137237 -89305,5011:468:2,-118.5,-6,0,0,-0.136421 -89306,5011:468:1,-118,-6,0,0,-0.136084 -89307,5011:467:2,-117.5,-6,0,0,-0.13605 -89308,5011:467:1,-117,-6,0,0,-0.13605 -89309,5011:466:2,-116.5,-6,0,0,-0.13605 -89310,5011:466:1,-116,-6,0,0,-0.13605 -89311,5011:465:2,-115.5,-6,0,0,-0.13605 -89312,5011:465:1,-115,-6,0,0,-0.13605 -89313,5011:364:2,-114.5,-6,0,0,-0.13605 -89314,5011:364:1,-114,-6,0,0,-0.13605 -89315,5011:363:2,-113.5,-6,0,0,-0.13605 -89316,5011:363:1,-113,-6,0,0,-0.13605 -89317,5011:362:2,-112.5,-6,0,0,-0.13605 -89318,5011:362:1,-112,-6,0,0,-0.13605 -89319,5011:361:2,-111.5,-6,0,0,-0.13605 -89320,5011:361:1,-111,-6,0,0,-0.13605 -89321,5011:360:2,-110.5,-6,0,0,-0.13605 -89322,5011:360:1,-110,-6,0,0,-0.13605 -89323,5010:469:2,-109.5,-6,0,0,-0.13605 -89324,5010:469:1,-109,-6,0,0,-0.13605 -89325,5010:468:2,-108.5,-6,0,0,-0.13605 -89326,5010:468:1,-108,-6,0,0,-0.13605 -89327,5010:467:2,-107.5,-6,0,0,-0.13605 -89328,5010:467:1,-107,-6,0,0,-0.13605 -89329,5010:466:2,-106.5,-6,0,0,-0.13605 -89330,5010:466:1,-106,-6,0,0,-0.13605 -89331,5010:465:2,-105.5,-6,0,0,-0.13605 -89332,5010:465:1,-105,-6,0,0,-0.13605 -89333,5010:364:2,-104.5,-6,0,0,-0.13605 -89334,5010:364:1,-104,-6,0,0,-0.13605 -89335,5010:363:2,-103.5,-6,0,0,-0.13605 -89336,5010:363:1,-103,-6,0,0,-0.13605 -89337,5010:362:2,-102.5,-6,0,0,-0.13605 -89338,5010:362:1,-102,-6,0,0,-0.13605 -89339,5010:361:2,-101.5,-6,0,0,-0.13605 -89340,5010:361:1,-101,-6,0,0,-0.13605 -89341,5010:360:2,-100.5,-6,0,0,-0.13605 -89342,5010:360:1,-100,-6,0,0,-0.13605 -89343,5009:469:2,-99.5,-6,0,0,-0.13605 -89344,5009:469:1,-99,-6,0,0,-0.13605 -89345,5009:468:2,-98.5,-6,0,0,-0.13605 -89346,5009:468:1,-98,-6,0,0,-0.13605 -89347,5009:467:2,-97.5,-6,0,0,-0.13605 -89348,5009:467:1,-97,-6,0,0,-0.13605 -89349,5009:466:2,-96.5,-6,0,0,-0.13605 -89350,5009:466:1,-96,-6,0,0,-0.13605 -89351,5009:465:2,-95.5,-6,0,0,-0.13605 -89352,5009:465:1,-95,-6,0,0,-0.13605 -89353,5009:364:2,-94.5,-6,0,0,-0.13605 -89354,5009:364:1,-94,-6,0,0,-0.13605 -89355,5009:363:2,-93.5,-6,0,0,-0.13605 -89356,5009:363:1,-93,-6,0,0,-0.13605 -89357,5009:362:2,-92.5,-6,0,0,-0.13605 -89358,5009:362:1,-92,-6,0,0,-0.13605 -89359,5009:361:2,-91.5,-6,0,0,-0.13605 -89360,5009:361:1,-91,-6,0,0,-0.13605 -89361,5009:360:2,-90.5,-6,0,0,-0.13605 -89362,5009:360:1,-90,-6,0,0,-0.13605 -89363,5008:469:2,-89.5,-6,0,0,-0.13605 -89364,5008:469:1,-89,-6,0,0,-0.13605 -89365,5008:468:2,-88.5,-6,0,0,-0.13605 -89366,5008:468:1,-88,-6,0,0,-0.13605 -89367,5008:467:2,-87.5,-6,0,0,-0.13605 -89368,5008:467:1,-87,-6,0,0,-0.13605 -89369,5008:466:2,-86.5,-6,0,0,-0.13605 -89370,5008:466:1,-86,-6,0,0,-0.13605 -89371,5008:465:2,-85.5,-6,0,0,-0.13605 -89372,5008:465:1,-85,-6,0,0,-0.13605 -89373,5008:364:2,-84.5,-6,0,0,-0.13605 -89374,5008:364:1,-84,-6,0,0,-0.13605 -89375,5008:363:2,-83.5,-6,0,0,-0.13605 -89376,5008:363:1,-83,-6,0,0,-0.13605 -89377,5008:362:2,-82.5,-6,0,0,-0.13605 -89378,5008:362:1,-82,-6,0,0,-0.13605 -89379,5008:361:2,-81.5,-6,0,0,-0.13605 -89380,5008:361:1,-81,-6,0,0,-0.13605 -89381,5003:465:2,-35.5,-6,0,0,-0.181335 -89382,5003:465:1,-35,-6,0,0,-0.171429 -89383,5003:364:2,-34.5,-6,0,0,-0.166446 -89384,5003:364:1,-34,-6,0,0,-0.166744 -89385,5003:363:2,-33.5,-6,0,0,-0.166928 -89386,5003:363:1,-33,-6,0,0,-0.167457 -89387,5003:362:2,-32.5,-6,0,0,-0.167595 -89388,5003:362:1,-32,-6,0,0,-0.167365 -89389,5003:361:2,-31.5,-6,0,0,-0.166721 -89390,5003:361:1,-31,-6,0,0,-0.165966 -89391,5003:360:2,-30.5,-6,0,0,-0.165351 -89392,5003:360:1,-30,-6,0,0,-0.165102 -89393,5002:469:2,-29.5,-6,0,0,-0.164581 -89394,5002:469:1,-29,-6,0,0,-0.16294 -89395,5002:468:2,-28.5,-6,0,0,-0.160723 -89396,5002:468:1,-28,-6,0,0,-0.159148 -89397,5002:467:2,-27.5,-6,0,0,-0.158346 -89398,5002:467:1,-27,-6,0,0,-0.157548 -89399,5002:466:2,-26.5,-6,0,0,-0.156883 -89400,5002:466:1,-26,-6,0,0,-0.156626 -89401,5002:465:2,-25.5,-6,0,0,-0.156498 -89402,5002:465:1,-25,-6,0,0,-0.156327 -89403,5002:364:2,-24.5,-6,0,0,-0.15603 -89404,5002:364:1,-24,-6,0,0,-0.155393 -89405,5002:363:2,-23.5,-6,0,0,-0.154465 -89406,5002:363:1,-23,-6,0,0,-0.153063 -89407,5002:362:2,-22.5,-6,0,0,-0.151923 -89408,5002:362:1,-22,-6,0,0,-0.151203 -89409,5002:361:2,-21.5,-6,0,0,-0.151039 -89410,5002:361:1,-21,-6,0,0,-0.150772 -89411,5002:360:2,-20.5,-6,0,0,-0.150609 -89412,5002:360:1,-20,-6,0,0,-0.150609 -89413,5001:469:2,-19.5,-6,0,0,-0.150711 -89414,5001:469:1,-19,-6,0,0,-0.150998 -89415,5001:468:2,-18.5,-6,0,0,-0.151244 -89416,5001:468:1,-18,-6,0,0,-0.15108 -89417,5001:467:2,-17.5,-6,0,0,-0.150527 -89418,5001:467:1,-17,-6,0,0,-0.149855 -89419,5001:466:2,-16.5,-6,0,0,-0.149733 -89420,5001:466:1,-16,-6,0,0,-0.150099 -89421,5001:465:2,-15.5,-6,0,0,-0.150282 -89422,5001:465:1,-15,-6,0,0,-0.149409 -89423,5001:364:2,-14.5,-6,0,0,-0.148139 -89424,5001:364:1,-14,-6,0,0,-0.146981 -89425,5001:363:2,-13.5,-6,0,0,-0.145813 -89426,5001:363:1,-13,-6,0,0,-0.145008 -89427,5001:362:2,-12.5,-6,0,0,-0.144695 -89428,5001:362:1,-12,-6,0,0,-0.144461 -89429,5001:361:2,-11.5,-6,0,0,-0.14413 -89430,5001:361:1,-11,-6,0,0,-0.143567 -89431,5001:360:2,-10.5,-6,0,0,-0.142468 -89432,5001:360:1,-10,-6,0,0,-0.140488 -89433,5000:469:2,-9.5,-6,0,0,-0.13897 -89434,5000:469:1,-9,-6,0,0,-0.13897 -89435,5000:468:2,-8.5,-6,0,0,-0.139528 -89436,5000:468:1,-8,-6,0,0,-0.140205 -89437,5000:467:2,-7.5,-6,0,0,-0.141322 -89438,5000:467:1,-7,-6,0,0,-0.142661 -89439,5000:466:2,-6.5,-6,0,0,-0.143509 -89440,5000:466:1,-6,-6,0,0,-0.144111 -89441,5000:465:2,-5.5,-6,0,0,-0.14489 -89442,5000:465:1,-5,-6,0,0,-0.145813 -89443,5000:364:2,-4.5,-6,0,0,-0.146524 -89444,5000:364:1,-4,-6,0,0,-0.14716 -89445,5000:363:2,-3.5,-6,0,0,-0.147979 -89446,5000:363:1,-3,-6,0,0,-0.148883 -89447,5000:362:2,-2.5,-6,0,0,-0.150302 -89448,5000:362:1,-2,-6,0,0,-0.152253 -89449,5000:361:2,-1.5,-6,0,0,-0.154506 -89450,5000:361:1,-1,-6,0,0,-0.156733 -89451,5000:360:2,-0.5,-6,0,0,-0.158454 -89452,3000:360:2,0,-6,0,0,-0.159475 -89453,3000:360:2,0.5,-6,0,0,-0.160131 -89454,3000:361:1,1,-6,0,0,-0.160745 -89455,3000:361:2,1.5,-6,0,0,-0.161296 -89456,3000:362:1,2,-6,0,0,-0.161828 -89457,3000:362:2,2.5,-6,0,0,-0.16185 -89458,3000:363:1,3,-6,0,0,-0.162028 -89459,3000:363:2,3.5,-6,0,0,-0.163882 -89460,3000:364:1,4,-6,0,0,-0.166882 -89461,3000:364:2,4.5,-6,0,0,-0.170673 -89462,3000:465:1,5,-6,0,0,-0.173479 -89463,3000:465:2,5.5,-6,0,0,-0.17629 -89464,3000:466:1,6,-6,0,0,-0.179477 -89465,3000:466:2,6.5,-6,0,0,-0.182961 -89466,3000:467:1,7,-6,0,0,-0.186053 -89467,3000:467:2,7.5,-6,0,0,-0.188915 -89468,3000:468:1,8,-6,0,0,-0.190431 -89469,3000:468:2,8.5,-6,0,0,-0.189578 -89470,3000:469:1,9,-6,0,0,-0.187648 -89471,3000:469:2,9.5,-6,0,0,-0.183548 -89472,3001:360:1,10,-6,0,0,-0.175997 -89473,3001:360:2,10.5,-6,0,0,-0.162762 -89474,3001:361:1,11,-6,0,0,-0.142814 -89475,3001:361:2,11.5,-6,0,0,-0.13605 -89476,3003:469:1,39,-6,0,0,-3.8916 -89477,3003:469:2,39.5,-6,0,0,-0.635115 -89478,3004:360:1,40,-6,0,0,24.5323 -89479,3004:360:2,40.5,-6,0,0,3.221 -89480,3004:361:1,41,-6,0,0,2.18696 -89481,3004:361:2,41.5,-6,0,0,1.8789 -89482,3004:362:1,42,-6,0,0,1.76107 -89483,3004:362:2,42.5,-6,0,0,1.5845 -89484,3004:363:1,43,-6,0,0,1.48511 -89485,3004:363:2,43.5,-6,0,0,1.44439 -89486,3004:364:1,44,-6,0,0,1.42628 -89487,3004:364:2,44.5,-6,0,0,1.48232 -89488,3004:465:1,45,-6,0,0,1.59539 -89489,3004:465:2,45.5,-6,0,0,1.72846 -89490,3004:466:1,46,-6,0,0,1.81831 -89491,3004:466:2,46.5,-6,0,0,1.86935 -89492,3004:467:1,47,-6,0,0,1.99416 -89493,3004:467:2,47.5,-6,0,0,2.21245 -89494,3004:468:1,48,-6,0,0,2.57556 -89495,3004:468:2,48.5,-6,0,0,3.08966 -89496,3004:469:1,49,-6,0,0,4.0821 -89497,3004:469:2,49.5,-6,0,0,7.02487 -89498,3005:360:1,50,-6,0,0,15.4945 -89499,3005:360:2,50.5,-6,0,0,49.6485 -89500,3005:361:1,51,-6,0,0,-18.3703 -89501,3005:361:2,51.5,-6,0,0,-3.10876 -89502,3005:362:1,52,-6,0,0,-1.31799 -89503,3005:362:2,52.5,-6,0,0,-0.932435 -89504,3005:363:1,53,-6,0,0,-0.754919 -89505,3005:363:2,53.5,-6,0,0,-0.882387 -89506,3005:364:1,54,-6,0,0,-0.885625 -89507,3005:364:2,54.5,-6,0,0,-0.929047 -89508,3005:465:1,55,-6,0,0,-1.01791 -89509,3005:465:2,55.5,-6,0,0,-1.30036 -89510,3005:466:1,56,-6,0,0,-1.28327 -89511,3005:466:2,56.5,-6,0,0,-1.90598 -89512,3005:467:1,57,-6,0,0,-3.8199 -89513,3005:467:2,57.5,-6,0,0,-11.159 -89514,3005:468:1,58,-6,0,0,114.146 -89515,3005:468:2,58.5,-6,0,0,54.8408 -89516,3005:469:1,59,-6,0,0,49.6485 -89517,3005:469:2,59.5,-6,0,0,-27.5732 -89518,3006:360:1,60,-6,0,0,-9.01915 -89519,3006:360:2,60.5,-6,0,0,-6.66212 -89520,3006:361:1,61,-6,0,0,-4.88552 -89521,3006:361:2,61.5,-6,0,0,-3.8549 -89522,3006:362:1,62,-6,0,0,-3.26349 -89523,3006:362:2,62.5,-6,0,0,-2.56601 -89524,3006:363:1,63,-6,0,0,-2.06618 -89525,3006:363:2,63.5,-6,0,0,-1.77489 -89526,3006:364:1,64,-6,0,0,-1.56858 -89527,3006:364:2,64.5,-6,0,0,-1.40468 -89528,3006:465:1,65,-6,0,0,-1.26652 -89529,3006:465:2,65.5,-6,0,0,-1.17749 -89530,3006:466:1,66,-6,0,0,-1.1202 -89531,3006:466:2,66.5,-6,0,0,-1.09328 -89532,3006:467:1,67,-6,0,0,-1.01791 -89533,3006:467:2,67.5,-6,0,0,-0.879166 -89534,3006:468:1,68,-6,0,0,-0.746335 -89535,3006:468:2,68.5,-6,0,0,-0.696742 -89536,3006:469:1,69,-6,0,0,-0.731661 -89537,3006:469:2,69.5,-6,0,0,-0.888782 -89538,3007:360:1,70,-6,0,0,-1.15311 -89539,3007:360:2,70.5,-6,0,0,-1.24995 -89540,3007:361:1,71,-6,0,0,-1.28898 -89541,3007:361:2,71.5,-6,0,0,-1.39184 -89542,3007:362:1,72,-6,0,0,-1.70144 -89543,3007:362:2,72.5,-6,0,0,-2.25028 -89544,3007:363:2,73.5,-6,0,0,-2.71427 -89545,3007:364:1,74,-6,0,0,-3.15913 -89546,3007:364:2,74.5,-6,0,0,-3.8199 -89547,3007:465:1,75,-6,0,0,-4.12441 -89548,3007:465:2,75.5,-6,0,0,-4.67245 -89549,3007:466:1,76,-6,0,0,-6.0316 -89550,3007:466:2,76.5,-6,0,0,-7.42451 -89551,3007:467:1,77,-6,0,0,-7.93871 -89552,3007:467:2,77.5,-6,0,0,-7.54802 -89553,3007:468:1,78,-6,0,0,-6.96957 -89554,3007:468:2,78.5,-6,0,0,-6.37632 -89555,3007:469:1,79,-6,0,0,-6.11512 -89556,3007:469:2,79.5,-6,0,0,-4.99972 -89557,3008:360:1,80,-6,0,0,-4.38224 -89558,3008:360:2,80.5,-6,0,0,-3.68238 -89559,3008:361:1,81,-6,0,0,-3.43147 -89560,3008:361:2,81.5,-6,0,0,-3.68238 -89561,3008:362:1,82,-6,0,0,-3.8199 -89562,3008:362:2,82.5,-6,0,0,-3.8199 -89563,3008:363:1,83,-6,0,0,-4.08368 -89564,3008:363:2,83.5,-6,0,0,-4.7245 -89565,3008:364:1,84,-6,0,0,-6.28608 -89566,3008:364:2,84.5,-6,0,0,-9.98073 -89567,3008:465:1,85,-6,0,0,-18.3703 -89568,3008:465:2,85.5,-6,0,0,-19.8636 -89569,3008:466:1,86,-6,0,0,-10.1983 -89570,3008:466:2,86.5,-6,0,0,-6.28608 -89571,3008:467:1,87,-6,0,0,-4.88552 -89572,3008:467:2,87.5,-6,0,0,-4.47573 -89573,3008:468:1,88,-6,0,0,-4.57142 -89574,3008:468:2,88.5,-6,0,0,-4.16587 -89575,3008:469:1,89,-6,0,0,-3.71515 -89576,3008:469:2,89.5,-6,0,0,-3.40301 -89577,3009:360:1,90,-6,0,0,-3.18486 -89578,3009:360:2,90.5,-6,0,0,-2.96716 -89579,3009:361:1,91,-6,0,0,-2.85711 -89580,3009:361:2,91.5,-6,0,0,-2.26457 -89581,3009:362:1,92,-6,0,0,-1.89559 -89582,3009:362:2,92.5,-6,0,0,-1.75619 -89583,3009:363:1,93,-6,0,0,-1.6083 -89584,3009:363:2,93.5,-6,0,0,-1.45167 -89585,3009:364:1,94,-6,0,0,-1.25544 -89586,3009:364:2,94.5,-6,0,0,-1.09328 -89587,3009:465:1,95,-6,0,0,-0.960878 -89588,3009:465:2,95.5,-6,0,0,-0.885625 -89589,3009:466:1,96,-6,0,0,-0.815751 -89590,3009:466:2,96.5,-6,0,0,-0.761432 -89591,3009:467:1,97,-6,0,0,-0.735784 -89592,3009:467:2,97.5,-6,0,0,-0.73375 -89593,3009:468:1,98,-6,0,0,-0.750642 -89594,3009:468:2,98.5,-6,0,0,-0.774395 -89595,3009:469:1,99,-6,0,0,-0.801619 -89596,3009:469:2,99.5,-6,0,0,-0.836097 -89597,3010:360:1,100,-6,0,0,-0.866549 -89598,3010:360:2,100.5,-6,0,0,-0.872776 -89599,3010:361:1,101,-6,0,0,-0.854195 -89600,3010:361:2,101.5,-6,0,0,-0.810021 -89601,3010:362:1,102,-6,0,0,-0.777073 -89602,3010:363:1,103,-6,0,0,-0.77181 -89603,3010:363:2,103.5,-6,0,0,-1.75619 -89604,3010:364:1,104,-6,0,0,-19.8636 -89605,3010:466:2,106.5,-6,0,0,1.44071 -89606,3010:467:1,107,-6,0,0,1.90831 -89607,3010:467:2,107.5,-6,0,0,2.88378 -89608,3010:468:1,108,-6,0,0,2.69182 -89609,3010:468:2,108.5,-6,0,0,2.28834 -89610,3010:469:1,109,-6,0,0,2.69182 -89611,3010:469:2,109.5,-6,0,0,3.63682 -89612,3011:360:1,110,-6,0,0,4.01092 -89613,3011:360:2,110.5,-6,0,0,4.28767 -89614,3011:361:1,111,-6,0,0,3.07755 -89615,3011:361:2,111.5,-6,0,0,2.8029 -89616,3011:362:1,112,-6,0,0,2.32928 -89617,3011:362:2,112.5,-6,0,0,2.0018 -89618,3011:363:1,113,-6,0,0,2.00571 -89619,3011:363:2,113.5,-6,0,0,1.92866 -89620,3011:364:1,114,-6,0,0,1.93566 -89621,3011:364:2,114.5,-6,0,0,2.15741 -89622,3011:465:1,115,-6,0,0,1.75082 -89623,3011:465:2,115.5,-6,0,0,1.53404 -89624,3011:466:1,116,-6,0,0,1.42985 -89625,3011:466:2,116.5,-6,0,0,1.40253 -89626,3011:467:1,117,-6,0,0,1.39501 -89627,3011:467:2,117.5,-6,0,0,1.74827 -89628,3011:468:1,118,-6,0,0,-2.69538 -89629,3011:468:2,118.5,-6,0,0,4.74666 -89630,3011:469:1,119,-6,0,0,6.05201 -89631,3011:469:2,119.5,-6,0,0,1.28814 -89632,3012:361:1,121,-6,0,0,1.78761 -89633,3012:361:2,121.5,-6,0,0,1.67985 -89634,3012:362:1,122,-6,0,0,1.34609 -89635,3012:362:2,122.5,-6,0,0,1.30306 -89636,3012:363:2,123.5,-6,0,0,1.30697 -89637,3012:364:1,124,-6,0,0,1.31233 -89638,3012:364:2,124.5,-6,0,0,1.35615 -89639,3012:465:1,125,-6,0,0,1.56697 -89640,3012:465:2,125.5,-6,0,0,1.35245 -89641,3012:466:1,126,-6,0,0,1.29548 -89642,3012:466:2,126.5,-6,0,0,1.31074 -89643,3012:467:1,127,-6,0,0,1.32951 -89644,3012:467:2,127.5,-6,0,0,1.34074 -89645,3012:468:1,128,-6,0,0,1.35804 -89646,3012:468:2,128.5,-6,0,0,1.35896 -89647,3012:469:1,129,-6,0,0,1.34788 -89648,3012:469:2,129.5,-6,0,0,1.34788 -89649,3013:360:1,130,-6,0,0,1.35615 -89650,3013:360:2,130.5,-6,0,0,1.38973 -89651,3013:361:1,131,-6,0,0,1.43342 -89652,3013:361:2,131.5,-6,0,0,1.50656 -89653,3013:362:1,132,-6,0,0,1.5687 -89654,3013:362:2,132.5,-6,0,0,1.52621 -89655,3013:363:1,133,-6,0,0,1.50218 -89656,3013:363:2,133.5,-6,0,0,1.38558 -89657,3013:364:1,134,-6,0,0,1.32366 -89658,3013:364:2,134.5,-6,0,0,1.3139 -89659,3013:465:1,135,-6,0,0,1.25165 -89660,3013:465:2,135.5,-6,0,0,5.9932 -89661,3013:466:1,136,-6,0,0,5.82572 -89662,3013:466:2,136.5,-6,0,0,2.39761 -89663,3013:467:1,137,-6,0,0,1.77685 -89664,3013:467:2,137.5,-6,0,0,1.21606 -89665,3013:468:1,138,-6,0,0,1.14332 -89666,3014:466:2,146.5,-6,0,0,-3.0841 -89667,3014:467:1,147,-6,0,0,19.314 -89668,3014:467:2,147.5,-6,0,0,4.03457 -89669,3014:468:1,148,-6,0,0,2.09724 -89670,3014:468:2,148.5,-6,0,0,1.68649 -89671,3014:469:1,149,-6,0,0,1.74827 -89672,3014:469:2,149.5,-6,0,0,1.65411 -89673,3015:360:1,150,-6,0,0,1.59539 -89674,3015:360:2,150.5,-6,0,0,1.64784 -89675,3015:362:2,152.5,-6,0,0,2.49312 -89676,3015:363:1,153,-6,0,0,1.49071 -89677,3015:363:2,153.5,-6,0,0,1.43342 -89678,3015:364:1,154,-6,0,0,1.29974 -89679,3015:364:2,154.5,-6,0,0,1.33549 -89680,3015:465:2,155.5,-6,0,0,1.47684 -89681,3015:466:1,156,-6,0,0,1.57741 -89682,3015:466:2,156.5,-6,0,0,1.70939 -89683,3015:467:1,157,-6,0,0,1.5502 -89684,3015:467:2,157.5,-6,0,0,1.48651 -89685,3015:468:1,158,-6,0,0,1.42514 -89686,3015:468:2,158.5,-6,0,0,1.37944 -89687,3015:469:1,159,-6,0,0,1.42628 -89688,3015:469:2,159.5,-6,0,0,1.57044 -89689,3016:360:1,160,-6,0,0,1.51249 -89690,3016:360:2,160.5,-6,0,0,1.7663 -89691,3016:361:1,161,-6,0,0,2.11065 -89692,3016:361:2,161.5,-6,0,0,1.67985 -89693,3016:362:1,162,-6,0,0,1.45574 -89694,3016:362:2,162.5,-6,0,0,1.41934 -89695,3016:363:1,163,-6,0,0,1.42162 -89696,3016:363:2,163.5,-6,0,0,1.44439 -89697,3016:364:1,164,-6,0,0,1.4701 -89698,3016:364:2,164.5,-6,0,0,1.49352 -89699,3016:465:1,165,-6,0,0,1.54525 -89700,3016:465:2,165.5,-6,0,0,1.66677 -89701,3016:466:1,166,-6,0,0,1.76368 -89702,3016:466:2,166.5,-6,0,0,1.79859 -89703,3016:467:1,167,-6,0,0,1.78217 -89704,3016:467:2,167.5,-6,0,0,1.73338 -89705,3016:468:1,168,-6,0,0,1.68649 -89706,3016:468:2,168.5,-6,0,0,1.65411 -89707,3016:469:1,169,-6,0,0,1.66677 -89708,3016:469:2,169.5,-6,0,0,1.71883 -89709,3017:360:1,170,-6,0,0,1.79303 -89710,3017:360:2,170.5,-6,0,0,1.83884 -89711,3017:361:1,171,-6,0,0,1.86935 -89712,3017:361:2,171.5,-6,0,0,1.88851 -89713,3017:362:1,172,-6,0,0,1.8789 -89714,3017:362:2,172.5,-6,0,0,1.85694 -89715,3017:363:1,173,-6,0,0,1.84782 -89716,3017:363:2,173.5,-6,0,0,1.83884 -89717,3017:364:1,174,-6,0,0,1.82992 -89718,3017:364:2,174.5,-6,0,0,1.81831 -89719,3017:465:1,175,-6,0,0,1.82121 -89720,3017:465:2,175.5,-6,0,0,1.85087 -89721,3017:466:1,176,-6,0,0,1.85694 -89722,3017:466:2,176.5,-6,0,0,1.82706 -89723,3017:467:1,177,-6,0,0,1.78488 -89724,3017:467:2,177.5,-6,0,0,1.75338 -89725,3017:468:1,178,-6,0,0,1.72124 -89726,3017:468:2,178.5,-6,0,0,1.68874 -89727,3017:469:1,179,-6,0,0,1.65622 -89728,3017:469:2,179.5,-6,0,0,1.63967 -89729,3018:360:1,180,-6,0,0,1.62772 -89730,5018:350:3,-180,-5.5,0,0,1.59171 -89731,5017:459:4,-179.5,-5.5,0,0,1.60091 -89732,5017:459:3,-179,-5.5,0,0,1.6218 -89733,5017:458:4,-178.5,-5.5,0,0,1.6733 -89734,5017:458:3,-178,-5.5,0,0,1.80979 -89735,5017:457:4,-177.5,-5.5,0,0,1.98281 -89736,5017:457:3,-177,-5.5,0,0,2.06257 -89737,5017:456:4,-176.5,-5.5,0,0,2.19202 -89738,5017:456:3,-176,-5.5,0,0,2.38487 -89739,5017:455:4,-175.5,-5.5,0,0,2.59952 -89740,5017:455:3,-175,-5.5,0,0,2.60739 -89741,5017:354:4,-174.5,-5.5,0,0,2.5298 -89742,5017:354:3,-174,-5.5,0,0,2.37212 -89743,5017:353:4,-173.5,-5.5,0,0,2.2659 -89744,5017:353:3,-173,-5.5,0,0,2.25499 -89745,5017:352:4,-172.5,-5.5,0,0,2.24406 -89746,5017:352:3,-172,-5.5,0,0,2.29989 -89747,5017:351:4,-171.5,-5.5,0,0,2.42385 -89748,5017:351:3,-171,-5.5,0,0,2.60739 -89749,5017:350:4,-170.5,-5.5,0,0,2.83278 -89750,5017:350:3,-170,-5.5,0,0,3.06518 -89751,5016:459:4,-169.5,-5.5,0,0,3.30674 -89752,5016:459:3,-169,-5.5,0,0,3.67399 -89753,5016:458:4,-168.5,-5.5,0,0,4.28767 -89754,5016:458:3,-168,-5.5,0,0,4.88857 -89755,5016:457:4,-167.5,-5.5,0,0,5.33314 -89756,5016:457:3,-167,-5.5,0,0,6.36419 -89757,5016:456:4,-166.5,-5.5,0,0,11.8805 -89758,5016:456:3,-166,-5.5,0,0,31.7976 -89759,5016:455:4,-165.5,-5.5,0,0,-79.6926 -89760,5016:455:3,-165,-5.5,0,0,-19.0885 -89761,5016:354:4,-164.5,-5.5,0,0,-12.3098 -89762,5016:354:3,-164,-5.5,0,0,-8.52457 -89763,5016:353:4,-163.5,-5.5,0,0,-6.11512 -89764,5016:353:3,-163,-5.5,0,0,-4.33818 -89765,5016:352:4,-162.5,-5.5,0,0,-3.0841 -89766,5016:352:3,-162,-5.5,0,0,-2.07856 -89767,5016:351:4,-161.5,-5.5,0,0,-1.54559 -89768,5016:351:3,-161,-5.5,0,0,-1.24995 -89769,5016:350:4,-160.5,-5.5,0,0,-1.04217 -89770,5016:350:3,-160,-5.5,0,0,-0.901879 -89771,5015:459:4,-159.5,-5.5,0,0,-0.785105 -89772,5015:459:3,-159,-5.5,0,0,-0.707056 -89773,5015:458:4,-158.5,-5.5,0,0,-0.652104 -89774,5015:458:3,-158,-5.5,0,0,-0.594666 -89775,5015:457:4,-157.5,-5.5,0,0,-0.538793 -89776,5015:457:3,-157,-5.5,0,0,-0.487971 -89777,5015:456:4,-156.5,-5.5,0,0,-0.448109 -89778,5015:456:3,-156,-5.5,0,0,-0.414566 -89779,5015:455:4,-155.5,-5.5,0,0,-0.386839 -89780,5015:455:3,-155,-5.5,0,0,-0.365118 -89781,5015:354:4,-154.5,-5.5,0,0,-0.34492 -89782,5015:354:3,-154,-5.5,0,0,-0.32134 -89783,5015:353:4,-153.5,-5.5,0,0,-0.300688 -89784,5015:353:3,-153,-5.5,0,0,-0.282998 -89785,5015:352:4,-152.5,-5.5,0,0,-0.267812 -89786,5015:352:3,-152,-5.5,0,0,-0.251658 -89787,5015:351:4,-151.5,-5.5,0,0,-0.237733 -89788,5015:351:3,-151,-5.5,0,0,-0.2292 -89789,5015:350:4,-150.5,-5.5,0,0,-0.222122 -89790,5015:350:3,-150,-5.5,0,0,-0.214809 -89791,5014:459:4,-149.5,-5.5,0,0,-0.210194 -89792,5014:459:3,-149,-5.5,0,0,-0.205022 -89793,5014:458:4,-148.5,-5.5,0,0,-0.199234 -89794,5014:458:3,-148,-5.5,0,0,-0.197557 -89795,5014:457:4,-147.5,-5.5,0,0,-0.196099 -89796,5014:457:3,-147,-5.5,0,0,-0.194522 -89797,5014:456:4,-146.5,-5.5,0,0,-0.192917 -89798,5014:456:3,-146,-5.5,0,0,-0.191773 -89799,5014:455:4,-145.5,-5.5,0,0,-0.190431 -89800,5014:455:3,-145,-5.5,0,0,-0.189021 -89801,5014:354:4,-144.5,-5.5,0,0,-0.187753 -89802,5014:354:3,-144,-5.5,0,0,-0.186678 -89803,5014:353:4,-143.5,-5.5,0,0,-0.185611 -89804,5014:353:3,-143,-5.5,0,0,-0.184757 -89805,5014:352:4,-142.5,-5.5,0,0,-0.183933 -89806,5014:352:3,-142,-5.5,0,0,-0.182935 -89807,5014:351:4,-141.5,-5.5,0,0,-0.181664 -89808,5014:351:3,-141,-5.5,0,0,-0.180028 -89809,5014:350:4,-140.5,-5.5,0,0,-0.178457 -89810,5014:350:3,-140,-5.5,0,0,-0.177099 -89811,5013:459:4,-139.5,-5.5,0,0,-0.175777 -89812,5013:459:3,-139,-5.5,0,0,-0.174225 -89813,5013:458:4,-138.5,-5.5,0,0,-0.17288 -89814,5013:458:3,-138,-5.5,0,0,-0.172165 -89815,5013:457:4,-137.5,-5.5,0,0,-0.171595 -89816,5013:457:3,-137,-5.5,0,0,-0.170532 -89817,5013:456:4,-136.5,-5.5,0,0,-0.1695 -89818,5013:456:3,-136,-5.5,0,0,-0.168754 -89819,5013:455:4,-135.5,-5.5,0,0,-0.168011 -89820,5013:455:3,-135,-5.5,0,0,-0.167135 -89821,5013:354:4,-134.5,-5.5,0,0,-0.166081 -89822,5013:354:3,-134,-5.5,0,0,-0.164966 -89823,5013:353:4,-133.5,-5.5,0,0,-0.164175 -89824,5013:353:3,-133,-5.5,0,0,-0.163815 -89825,5013:352:4,-132.5,-5.5,0,0,-0.163119 -89826,5013:352:3,-132,-5.5,0,0,-0.161894 -89827,5013:351:4,-131.5,-5.5,0,0,-0.160613 -89828,5013:351:3,-131,-5.5,0,0,-0.159257 -89829,5013:350:4,-130.5,-5.5,0,0,-0.158108 -89830,5013:350:3,-130,-5.5,0,0,-0.157204 -89831,5012:459:4,-129.5,-5.5,0,0,-0.156072 -89832,5012:459:3,-129,-5.5,0,0,-0.154759 -89833,5012:458:4,-128.5,-5.5,0,0,-0.153647 -89834,5012:458:3,-128,-5.5,0,0,-0.152626 -89835,5012:457:4,-127.5,-5.5,0,0,-0.151552 -89836,5012:457:3,-127,-5.5,0,0,-0.150527 -89837,5012:456:4,-126.5,-5.5,0,0,-0.149571 -89838,5012:456:3,-126,-5.5,0,0,-0.148782 -89839,5012:455:4,-125.5,-5.5,0,0,-0.148099 -89840,5012:455:3,-125,-5.5,0,0,-0.147279 -89841,5012:354:4,-124.5,-5.5,0,0,-0.146247 -89842,5012:354:3,-124,-5.5,0,0,-0.145283 -89843,5012:353:4,-123.5,-5.5,0,0,-0.144402 -89844,5012:353:3,-123,-5.5,0,0,-0.143413 -89845,5012:352:4,-122.5,-5.5,0,0,-0.142334 -89846,5012:352:3,-122,-5.5,0,0,-0.141303 -89847,5012:351:4,-121.5,-5.5,0,0,-0.140412 -89848,5012:351:3,-121,-5.5,0,0,-0.139622 -89849,5012:350:4,-120.5,-5.5,0,0,-0.13897 -89850,5012:350:3,-120,-5.5,0,0,-0.138446 -89851,5011:459:4,-119.5,-5.5,0,0,-0.137941 -89852,5011:459:3,-119,-5.5,0,0,-0.137438 -89853,5011:458:4,-118.5,-5.5,0,0,-0.13692 -89854,5011:458:3,-118,-5.5,0,0,-0.136408 -89855,5011:457:4,-117.5,-5.5,0,0,-0.136119 -89856,5011:457:3,-117,-5.5,0,0,-0.13605 -89857,5011:456:4,-116.5,-5.5,0,0,-0.13605 -89858,5011:456:3,-116,-5.5,0,0,-0.13605 -89859,5011:455:4,-115.5,-5.5,0,0,-0.13605 -89860,5011:455:3,-115,-5.5,0,0,-0.13605 -89861,5011:354:4,-114.5,-5.5,0,0,-0.13605 -89862,5011:354:3,-114,-5.5,0,0,-0.13605 -89863,5011:353:4,-113.5,-5.5,0,0,-0.13605 -89864,5011:353:3,-113,-5.5,0,0,-0.13605 -89865,5011:352:4,-112.5,-5.5,0,0,-0.13605 -89866,5011:352:3,-112,-5.5,0,0,-0.13605 -89867,5011:351:4,-111.5,-5.5,0,0,-0.13605 -89868,5011:351:3,-111,-5.5,0,0,-0.13605 -89869,5011:350:4,-110.5,-5.5,0,0,-0.13605 -89870,5011:350:3,-110,-5.5,0,0,-0.13605 -89871,5010:459:4,-109.5,-5.5,0,0,-0.13605 -89872,5010:459:3,-109,-5.5,0,0,-0.13605 -89873,5010:458:4,-108.5,-5.5,0,0,-0.13605 -89874,5010:458:3,-108,-5.5,0,0,-0.13605 -89875,5010:457:4,-107.5,-5.5,0,0,-0.13605 -89876,5010:457:3,-107,-5.5,0,0,-0.13605 -89877,5010:456:4,-106.5,-5.5,0,0,-0.13605 -89878,5010:456:3,-106,-5.5,0,0,-0.13605 -89879,5010:455:4,-105.5,-5.5,0,0,-0.13605 -89880,5010:455:3,-105,-5.5,0,0,-0.13605 -89881,5010:354:4,-104.5,-5.5,0,0,-0.13605 -89882,5010:354:3,-104,-5.5,0,0,-0.13605 -89883,5010:353:4,-103.5,-5.5,0,0,-0.13605 -89884,5010:353:3,-103,-5.5,0,0,-0.13605 -89885,5010:352:4,-102.5,-5.5,0,0,-0.13605 -89886,5010:352:3,-102,-5.5,0,0,-0.13605 -89887,5010:351:4,-101.5,-5.5,0,0,-0.13605 -89888,5010:351:3,-101,-5.5,0,0,-0.13605 -89889,5010:350:4,-100.5,-5.5,0,0,-0.13605 -89890,5010:350:3,-100,-5.5,0,0,-0.13605 -89891,5009:459:4,-99.5,-5.5,0,0,-0.13605 -89892,5009:459:3,-99,-5.5,0,0,-0.13605 -89893,5009:458:4,-98.5,-5.5,0,0,-0.13605 -89894,5009:458:3,-98,-5.5,0,0,-0.13605 -89895,5009:457:4,-97.5,-5.5,0,0,-0.13605 -89896,5009:457:3,-97,-5.5,0,0,-0.13605 -89897,5009:456:4,-96.5,-5.5,0,0,-0.13605 -89898,5009:456:3,-96,-5.5,0,0,-0.13605 -89899,5009:455:4,-95.5,-5.5,0,0,-0.13605 -89900,5009:455:3,-95,-5.5,0,0,-0.13605 -89901,5009:354:4,-94.5,-5.5,0,0,-0.13605 -89902,5009:354:3,-94,-5.5,0,0,-0.13605 -89903,5009:353:4,-93.5,-5.5,0,0,-0.13605 -89904,5009:353:3,-93,-5.5,0,0,-0.13605 -89905,5009:352:4,-92.5,-5.5,0,0,-0.13605 -89906,5009:352:3,-92,-5.5,0,0,-0.13605 -89907,5009:351:4,-91.5,-5.5,0,0,-0.13605 -89908,5009:351:3,-91,-5.5,0,0,-0.13605 -89909,5009:350:4,-90.5,-5.5,0,0,-0.13605 -89910,5009:350:3,-90,-5.5,0,0,-0.13605 -89911,5008:459:4,-89.5,-5.5,0,0,-0.13605 -89912,5008:459:3,-89,-5.5,0,0,-0.13605 -89913,5008:458:4,-88.5,-5.5,0,0,-0.13605 -89914,5008:458:3,-88,-5.5,0,0,-0.13605 -89915,5008:457:4,-87.5,-5.5,0,0,-0.13605 -89916,5008:457:3,-87,-5.5,0,0,-0.13605 -89917,5008:456:4,-86.5,-5.5,0,0,-0.13605 -89918,5008:456:3,-86,-5.5,0,0,-0.13605 -89919,5008:455:4,-85.5,-5.5,0,0,-0.13605 -89920,5008:455:3,-85,-5.5,0,0,-0.13605 -89921,5008:354:4,-84.5,-5.5,0,0,-0.13605 -89922,5008:354:3,-84,-5.5,0,0,-0.13605 -89923,5008:353:4,-83.5,-5.5,0,0,-0.13605 -89924,5008:353:3,-83,-5.5,0,0,-0.13605 -89925,5008:352:4,-82.5,-5.5,0,0,-0.13605 -89926,5008:352:3,-82,-5.5,0,0,-0.13605 -89927,5008:351:4,-81.5,-5.5,0,0,-0.13605 -89928,5003:457:4,-37.5,-5.5,0,0,-0.19094 -89929,5003:457:3,-37,-5.5,0,0,-0.181867 -89930,5003:456:4,-36.5,-5.5,0,0,-0.171951 -89931,5003:456:3,-36,-5.5,0,0,-0.171761 -89932,5003:455:4,-35.5,-5.5,0,0,-0.17124 -89933,5003:455:3,-35,-5.5,0,0,-0.166652 -89934,5003:354:4,-34.5,-5.5,0,0,-0.16936 -89935,5003:354:3,-34,-5.5,0,0,-0.170132 -89936,5003:353:4,-33.5,-5.5,0,0,-0.170086 -89937,5003:353:3,-33,-5.5,0,0,-0.169875 -89938,5003:352:4,-32.5,-5.5,0,0,-0.16936 -89939,5003:352:3,-32,-5.5,0,0,-0.168614 -89940,5003:351:4,-31.5,-5.5,0,0,-0.167873 -89941,5003:351:3,-31,-5.5,0,0,-0.167158 -89942,5003:350:4,-30.5,-5.5,0,0,-0.166584 -89943,5003:350:3,-30,-5.5,0,0,-0.16624 -89944,5002:459:4,-29.5,-5.5,0,0,-0.16592 -89945,5002:459:3,-29,-5.5,0,0,-0.165442 -89946,5002:458:4,-28.5,-5.5,0,0,-0.164604 -89947,5002:458:3,-28,-5.5,0,0,-0.163075 -89948,5002:457:4,-27.5,-5.5,0,0,-0.161363 -89949,5002:457:3,-27,-5.5,0,0,-0.160021 -89950,5002:456:4,-26.5,-5.5,0,0,-0.159061 -89951,5002:456:3,-26,-5.5,0,0,-0.158476 -89952,5002:455:4,-25.5,-5.5,0,0,-0.158173 -89953,5002:455:3,-25,-5.5,0,0,-0.158022 -89954,5002:354:4,-24.5,-5.5,0,0,-0.15813 -89955,5002:354:3,-24,-5.5,0,0,-0.157978 -89956,5002:353:4,-23.5,-5.5,0,0,-0.157569 -89957,5002:353:3,-23,-5.5,0,0,-0.157183 -89958,5002:352:4,-22.5,-5.5,0,0,-0.156562 -89959,5002:352:3,-22,-5.5,0,0,-0.155541 -89960,5002:351:4,-21.5,-5.5,0,0,-0.155054 -89961,5002:351:3,-21,-5.5,0,0,-0.154738 -89962,5002:350:4,-20.5,-5.5,0,0,-0.154633 -89963,5002:350:3,-20,-5.5,0,0,-0.15457 -89964,5001:459:4,-19.5,-5.5,0,0,-0.154612 -89965,5001:459:3,-19,-5.5,0,0,-0.154486 -89966,5001:458:4,-18.5,-5.5,0,0,-0.154044 -89967,5001:458:3,-18,-5.5,0,0,-0.153647 -89968,5001:457:4,-17.5,-5.5,0,0,-0.153626 -89969,5001:457:3,-17,-5.5,0,0,-0.153814 -89970,5001:456:4,-16.5,-5.5,0,0,-0.154401 -89971,5001:456:3,-16,-5.5,0,0,-0.155498 -89972,5001:455:4,-15.5,-5.5,0,0,-0.156392 -89973,5001:455:3,-15,-5.5,0,0,-0.156306 -89974,5001:354:4,-14.5,-5.5,0,0,-0.155456 -89975,5001:354:3,-14,-5.5,0,0,-0.154191 -89976,5001:353:4,-13.5,-5.5,0,0,-0.153042 -89977,5001:353:3,-13,-5.5,0,0,-0.152523 -89978,5001:352:4,-12.5,-5.5,0,0,-0.152274 -89979,5001:352:3,-12,-5.5,0,0,-0.151841 -89980,5001:351:4,-11.5,-5.5,0,0,-0.151244 -89981,5001:351:3,-11,-5.5,0,0,-0.150752 -89982,5001:350:4,-10.5,-5.5,0,0,-0.150323 -89983,5001:350:3,-10,-5.5,0,0,-0.150282 -89984,5000:459:4,-9.5,-5.5,0,0,-0.151018 -89985,5000:459:3,-9,-5.5,0,0,-0.152212 -89986,5000:458:4,-8.5,-5.5,0,0,-0.153354 -89987,5000:458:3,-8,-5.5,0,0,-0.154191 -89988,5000:457:4,-7.5,-5.5,0,0,-0.154717 -89989,5000:457:3,-7,-5.5,0,0,-0.155012 -89990,5000:456:4,-6.5,-5.5,0,0,-0.155393 -89991,5000:456:3,-6,-5.5,0,0,-0.156327 -89992,5000:455:4,-5.5,-5.5,0,0,-0.157419 -89993,5000:455:3,-5,-5.5,0,0,-0.157936 -89994,5000:354:4,-4.5,-5.5,0,0,-0.158194 -89995,5000:354:3,-4,-5.5,0,0,-0.158497 -89996,5000:353:4,-3.5,-5.5,0,0,-0.15891 -89997,5000:353:3,-3,-5.5,0,0,-0.159977 -89998,5000:352:4,-2.5,-5.5,0,0,-0.161606 -89999,5000:352:3,-2,-5.5,0,0,-0.163433 -90000,5000:351:4,-1.5,-5.5,0,0,-0.165193 -90001,5000:351:3,-1,-5.5,0,0,-0.166699 -90002,5000:350:4,-0.5,-5.5,0,0,-0.166836 -90003,3000:350:4,0,-5.5,0,0,-0.166332 -90004,3000:350:4,0.5,-5.5,0,0,-0.166012 -90005,3000:351:3,1,-5.5,0,0,-0.165989 -90006,3000:351:4,1.5,-5.5,0,0,-0.165875 -90007,3000:352:3,2,-5.5,0,0,-0.166012 -90008,3000:352:4,2.5,-5.5,0,0,-0.166606 -90009,3000:353:3,3,-5.5,0,0,-0.168382 -90010,3000:353:4,3.5,-5.5,0,0,-0.17188 -90011,3000:354:3,4,-5.5,0,0,-0.175388 -90012,3000:354:4,4.5,-5.5,0,0,-0.178581 -90013,3000:455:3,5,-5.5,0,0,-0.180303 -90014,3000:455:4,5.5,-5.5,0,0,-0.181259 -90015,3000:456:3,6,-5.5,0,0,-0.183165 -90016,3000:456:4,6.5,-5.5,0,0,-0.184989 -90017,3000:457:3,7,-5.5,0,0,-0.186887 -90018,3000:457:4,7.5,-5.5,0,0,-0.187832 -90019,3000:458:3,8,-5.5,0,0,-0.187149 -90020,3000:458:4,8.5,-5.5,0,0,-0.184396 -90021,3000:459:3,9,-5.5,0,0,-0.180128 -90022,3000:459:4,9.5,-5.5,0,0,-0.173648 -90023,3001:350:3,10,-5.5,0,0,-0.164243 -90024,3001:350:4,10.5,-5.5,0,0,-0.152896 -90025,3001:351:3,11,-5.5,0,0,-0.14028 -90026,3001:351:4,11.5,-5.5,0,0,-0.13605 -90027,3003:459:3,39,-5.5,0,0,-0.175097 -90028,3003:459:4,39.5,-5.5,0,0,-0.446499 -90029,3004:350:3,40,-5.5,0,0,-3.23664 -90030,3004:350:4,40.5,-5.5,0,0,2.46483 -90031,3004:351:3,41,-5.5,0,0,1.87252 -90032,3004:351:4,41.5,-5.5,0,0,1.75847 -90033,3004:352:3,42,-5.5,0,0,1.84478 -90034,3004:352:4,42.5,-5.5,0,0,1.62574 -90035,3004:353:3,43,-5.5,0,0,1.54525 -90036,3004:353:4,43.5,-5.5,0,0,1.61408 -90037,3004:354:3,44,-5.5,0,0,1.62772 -90038,3004:354:4,44.5,-5.5,0,0,1.54042 -90039,3004:455:3,45,-5.5,0,0,1.42514 -90040,3004:455:4,45.5,-5.5,0,0,1.37346 -90041,3004:456:3,46,-5.5,0,0,1.44439 -90042,3004:456:4,46.5,-5.5,0,0,1.54854 -90043,3004:457:3,47,-5.5,0,0,1.57741 -90044,3004:457:4,47.5,-5.5,0,0,1.62772 -90045,3004:458:3,48,-5.5,0,0,1.76107 -90046,3004:458:4,48.5,-5.5,0,0,1.9498 -90047,3004:459:3,49,-5.5,0,0,2.23344 -90048,3004:459:4,49.5,-5.5,0,0,2.74606 -90049,3005:350:3,50,-5.5,0,0,3.65558 -90050,3005:350:4,50.5,-5.5,0,0,5.33314 -90051,3005:351:3,51,-5.5,0,0,11.6346 -90052,3005:351:4,51.5,-5.5,0,0,-12.3098 -90053,3005:352:3,52,-5.5,0,0,-2.75397 -90054,3005:352:4,52.5,-5.5,0,0,-1.16758 -90055,3005:353:3,53,-5.5,0,0,-0.863412 -90056,3005:353:4,53.5,-5.5,0,0,-0.766519 -90057,3005:354:3,54,-5.5,0,0,-0.705556 -90058,3005:354:4,54.5,-5.5,0,0,-0.729692 -90059,3005:455:3,55,-5.5,0,0,-0.787837 -90060,3005:455:4,55.5,-5.5,0,0,-0.8273 -90061,3005:456:3,56,-5.5,0,0,-0.986926 -90062,3005:456:4,56.5,-5.5,0,0,-0.777073 -90063,3005:457:3,57,-5.5,0,0,-2.25028 -90064,3005:457:4,57.5,-5.5,0,0,-10.1983 -90065,3005:458:3,58,-5.5,0,0,-116.03 -90066,3005:458:4,58.5,-5.5,0,0,30.0028 -90067,3005:459:3,59,-5.5,0,0,-1157.87 -90068,3005:459:4,59.5,-5.5,0,0,925.558 -90069,3006:350:3,60,-5.5,0,0,-33.0023 -90070,3006:350:4,60.5,-5.5,0,0,-12.3098 -90071,3006:351:3,61,-5.5,0,0,-6.28608 -90072,3006:351:4,61.5,-5.5,0,0,-4.38224 -90073,3006:352:3,62,-5.5,0,0,-3.34562 -90074,3006:352:4,62.5,-5.5,0,0,-2.5839 -90075,3006:353:3,63,-5.5,0,0,-1.96078 -90076,3006:353:4,63.5,-5.5,0,0,-1.71947 -90077,3006:354:3,64,-5.5,0,0,-1.50831 -90078,3006:354:4,64.5,-5.5,0,0,-1.27759 -90079,3006:455:3,65,-5.5,0,0,-1.1021 -90080,3006:455:4,65.5,-5.5,0,0,-0.957335 -90081,3006:456:3,66,-5.5,0,0,-0.848069 -90082,3006:456:4,66.5,-5.5,0,0,-0.759297 -90083,3006:457:3,67,-5.5,0,0,-0.699648 -90084,3006:457:4,67.5,-5.5,0,0,-0.654793 -90085,3006:458:3,68,-5.5,0,0,-0.630014 -90086,3006:458:4,68.5,-5.5,0,0,-0.608949 -90087,3006:459:3,69,-5.5,0,0,-0.611356 -90088,3006:459:4,69.5,-5.5,0,0,-0.64417 -90089,3007:350:3,70,-5.5,0,0,-0.699648 -90090,3007:350:4,70.5,-5.5,0,0,-0.798818 -90091,3007:351:3,71,-5.5,0,0,-0.953703 -90092,3007:351:4,71.5,-5.5,0,0,-1.05037 -90093,3007:352:3,72,-5.5,0,0,-1.12483 -90094,3007:352:4,72.5,-5.5,0,0,-1.29457 -90095,3007:353:4,73.5,-5.5,0,0,-1.58437 -90096,3007:354:3,74,-5.5,0,0,-1.81358 -90097,3007:354:4,74.5,-5.5,0,0,-1.76564 -90098,3007:455:3,75,-5.5,0,0,-1.85399 -90099,3007:455:4,75.5,-5.5,0,0,-2.07856 -90100,3007:456:3,76,-5.5,0,0,-2.30795 -90101,3007:456:4,76.5,-5.5,0,0,-2.5839 -90102,3007:457:3,77,-5.5,0,0,-3.01284 -90103,3007:457:4,77.5,-5.5,0,0,-3.71515 -90104,3007:458:3,78,-5.5,0,0,-5.36961 -90105,3007:458:4,78.5,-5.5,0,0,-7.42451 -90106,3007:459:3,79,-5.5,0,0,-9.19815 -90107,3007:459:4,79.5,-5.5,0,0,-9.98073 -90108,3008:350:3,80,-5.5,0,0,-12.3098 -90109,3008:350:4,80.5,-5.5,0,0,-20.6761 -90110,3008:351:3,81,-5.5,0,0,-355.679 -90111,3008:351:4,81.5,-5.5,0,0,24.5323 -90112,3008:352:3,82,-5.5,0,0,12.9743 -90113,3008:352:4,82.5,-5.5,0,0,11.8805 -90114,3008:353:3,83,-5.5,0,0,10.5552 -90115,3008:353:4,83.5,-5.5,0,0,9.06305 -90116,3008:354:3,84,-5.5,0,0,7.46134 -90117,3008:354:4,84.5,-5.5,0,0,6.29856 -90118,3008:455:3,85,-5.5,0,0,5.56737 -90119,3008:455:4,85.5,-5.5,0,0,5.11981 -90120,3008:456:3,86,-5.5,0,0,5.00119 -90121,3008:456:4,86.5,-5.5,0,0,5.51842 -90122,3008:457:3,87,-5.5,0,0,7.55344 -90123,3008:457:4,87.5,-5.5,0,0,13.9409 -90124,3008:458:3,88,-5.5,0,0,45.362 -90125,3008:458:4,88.5,-5.5,0,0,-150.165 -90126,3008:459:3,89,-5.5,0,0,-33.0023 -90127,3008:459:4,89.5,-5.5,0,0,-17.0994 -90128,3009:350:3,90,-5.5,0,0,-11.159 -90129,3009:350:4,90.5,-5.5,0,0,-7.80297 -90130,3009:351:3,91,-5.5,0,0,-4.94202 -90131,3009:351:4,91.5,-5.5,0,0,-3.40301 -90132,3009:352:3,92,-5.5,0,0,-2.85711 -90133,3009:352:4,92.5,-5.5,0,0,-2.69538 -90134,3009:353:3,93,-5.5,0,0,-2.35276 -90135,3009:353:4,93.5,-5.5,0,0,-1.93875 -90136,3009:354:3,94,-5.5,0,0,-1.59213 -90137,3009:354:4,94.5,-5.5,0,0,-1.32978 -90138,3009:455:3,95,-5.5,0,0,-1.17749 -90139,3009:455:4,95.5,-5.5,0,0,-1.09328 -90140,3009:456:3,96,-5.5,0,0,-1.0462 -90141,3009:456:4,96.5,-5.5,0,0,-1.01791 -90142,3009:457:3,97,-5.5,0,0,-0.971963 -90143,3009:457:4,97.5,-5.5,0,0,-0.925572 -90144,3009:458:3,98,-5.5,0,0,-0.882387 -90145,3009:458:4,98.5,-5.5,0,0,-0.851124 -90146,3009:459:3,99,-5.5,0,0,-0.848069 -90147,3009:459:4,99.5,-5.5,0,0,-0.875962 -90148,3010:350:3,100,-5.5,0,0,-0.925572 -90149,3010:350:4,100.5,-5.5,0,0,-1.02191 -90150,3010:351:3,101,-5.5,0,0,-1.14351 -90151,3010:351:4,101.5,-5.5,0,0,-1.47245 -90152,3010:352:3,102,-5.5,0,0,-1.77489 -90153,3010:352:4,102.5,-5.5,0,0,-4.16587 -90154,3010:353:3,103,-5.5,0,0,-7.18855 -90155,3010:353:4,103.5,-5.5,0,0,-4.94202 -90156,3010:456:4,106.5,-5.5,0,0,1.44071 -90157,3010:457:3,107,-5.5,0,0,1.77946 -90158,3010:457:4,107.5,-5.5,0,0,2.27149 -90159,3010:458:3,108,-5.5,0,0,2.36581 -90160,3010:458:4,108.5,-5.5,0,0,2.65726 -90161,3010:459:3,109,-5.5,0,0,3.35151 -90162,3010:459:4,109.5,-5.5,0,0,4.34331 -90163,3011:350:3,110,-5.5,0,0,5.28863 -90164,3011:350:4,110.5,-5.5,0,0,5.66824 -90165,3011:351:3,111,-5.5,0,0,4.67863 -90166,3011:351:4,111.5,-5.5,0,0,3.8131 -90167,3011:352:3,112,-5.5,0,0,3.19347 -90168,3011:352:4,112.5,-5.5,0,0,2.9051 -90169,3011:353:3,113,-5.5,0,0,2.57556 -90170,3011:353:4,113.5,-5.5,0,0,2.44421 -90171,3011:354:3,114,-5.5,0,0,2.21753 -90172,3011:354:4,114.5,-5.5,0,0,1.97155 -90173,3011:455:3,115,-5.5,0,0,1.76368 -90174,3011:455:4,115.5,-5.5,0,0,1.54854 -90175,3011:456:3,116,-5.5,0,0,1.47144 -90176,3011:456:4,116.5,-5.5,0,0,1.36467 -90177,3011:457:3,117,-5.5,0,0,1.42162 -90178,3011:457:4,117.5,-5.5,0,0,1.38662 -90179,3011:458:3,118,-5.5,0,0,3.39778 -90180,3011:458:4,118.5,-5.5,0,0,3.44562 -90181,3011:459:3,119,-5.5,0,0,6.86436 -90182,3011:459:4,119.5,-5.5,0,0,1.34074 -90183,3012:351:3,121,-5.5,0,0,1.73827 -90184,3012:351:4,121.5,-5.5,0,0,1.40916 -90185,3012:353:4,123.5,-5.5,0,0,1.47415 -90186,3012:354:3,124,-5.5,0,0,1.33378 -90187,3012:354:4,124.5,-5.5,0,0,1.37744 -90188,3012:455:3,125,-5.5,0,0,1.35615 -90189,3012:455:4,125.5,-5.5,0,0,1.59171 -90190,3012:456:3,126,-5.5,0,0,1.38662 -90191,3012:456:4,126.5,-5.5,0,0,1.94263 -90192,3012:457:3,127,-5.5,0,0,1.63165 -90193,3012:457:4,127.5,-5.5,0,0,1.30877 -90194,3012:458:3,128,-5.5,0,0,1.36467 -90195,3012:458:4,128.5,-5.5,0,0,1.35522 -90196,3012:459:3,129,-5.5,0,0,1.33985 -90197,3012:459:4,129.5,-5.5,0,0,1.30653 -90198,3013:350:3,130,-5.5,0,0,1.31874 -90199,3013:350:4,130.5,-5.5,0,0,1.37147 -90200,3013:351:3,131,-5.5,0,0,1.44686 -90201,3013:351:4,131.5,-5.5,0,0,1.47959 -90202,3013:352:3,132,-5.5,0,0,2.04586 -90203,3013:352:4,132.5,-5.5,0,0,1.68649 -90204,3013:353:3,133,-5.5,0,0,1.6733 -90205,3013:353:4,133.5,-5.5,0,0,1.5863 -90206,3013:354:3,134,-5.5,0,0,1.42747 -90207,3013:354:4,134.5,-5.5,0,0,1.39287 -90208,3013:455:3,135,-5.5,0,0,3.07755 -90209,3013:455:4,135.5,-5.5,0,0,-0.633825 -90210,3013:456:3,136,-5.5,0,0,-2.94442 -90211,3013:456:4,136.5,-5.5,0,0,-150.165 -90212,3014:456:3,146,-5.5,0,0,-2.01824 -90213,3014:456:4,146.5,-5.5,0,0,3.67399 -90214,3014:457:3,147,-5.5,0,0,3.0288 -90215,3014:457:4,147.5,-5.5,0,0,2.79342 -90216,3014:458:3,148,-5.5,0,0,2.64027 -90217,3014:458:4,148.5,-5.5,0,0,2.37847 -90218,3014:459:3,149,-5.5,0,0,1.89498 -90219,3014:459:4,149.5,-5.5,0,0,1.6377 -90220,3015:350:3,150,-5.5,0,0,1.51552 -90221,3015:350:4,150.5,-5.5,0,0,1.48232 -90222,3015:351:3,151,-5.5,0,0,1.47684 -90223,3015:351:4,151.5,-5.5,0,0,1.47959 -90224,3015:353:3,153,-5.5,0,0,2.03361 -90225,3015:353:4,153.5,-5.5,0,0,1.64992 -90226,3015:354:3,154,-5.5,0,0,1.69551 -90227,3015:354:4,154.5,-5.5,0,0,1.84478 -90228,3015:455:3,155,-5.5,0,0,1.72124 -90229,3015:455:4,155.5,-5.5,0,0,1.68431 -90230,3015:456:3,156,-5.5,0,0,1.83288 -90231,3015:456:4,156.5,-5.5,0,0,2.1479 -90232,3015:457:3,157,-5.5,0,0,1.86004 -90233,3015:457:4,157.5,-5.5,0,0,1.65411 -90234,3015:458:3,158,-5.5,0,0,1.50071 -90235,3015:458:4,158.5,-5.5,0,0,1.52006 -90236,3015:459:3,159,-5.5,0,0,1.67111 -90237,3015:459:4,159.5,-5.5,0,0,1.88851 -90238,3016:350:3,160,-5.5,0,0,1.95693 -90239,3016:350:4,160.5,-5.5,0,0,2.03759 -90240,3016:351:3,161,-5.5,0,0,2.0018 -90241,3016:351:4,161.5,-5.5,0,0,1.87252 -90242,3016:352:3,162,-5.5,0,0,1.72124 -90243,3016:352:4,162.5,-5.5,0,0,1.64992 -90244,3016:353:3,163,-5.5,0,0,1.62971 -90245,3016:353:4,163.5,-5.5,0,0,1.63366 -90246,3016:354:3,164,-5.5,0,0,1.6218 -90247,3016:354:4,164.5,-5.5,0,0,1.60091 -90248,3016:455:3,165,-5.5,0,0,1.6199 -90249,3016:455:4,165.5,-5.5,0,0,1.70469 -90250,3016:456:3,166,-5.5,0,0,1.78488 -90251,3016:456:4,166.5,-5.5,0,0,1.84478 -90252,3016:457:3,167,-5.5,0,0,1.84478 -90253,3016:457:4,167.5,-5.5,0,0,1.76107 -90254,3016:458:3,168,-5.5,0,0,1.6733 -90255,3016:458:4,168.5,-5.5,0,0,1.67543 -90256,3016:459:3,169,-5.5,0,0,1.71412 -90257,3016:459:4,169.5,-5.5,0,0,1.7958 -90258,3017:350:3,170,-5.5,0,0,1.86316 -90259,3017:350:4,170.5,-5.5,0,0,1.90831 -90260,3017:351:3,171,-5.5,0,0,1.92184 -90261,3017:351:4,171.5,-5.5,0,0,1.93566 -90262,3017:352:3,172,-5.5,0,0,2.00571 -90263,3017:352:4,172.5,-5.5,0,0,2.05833 -90264,3017:353:3,173,-5.5,0,0,2.10624 -90265,3017:353:4,173.5,-5.5,0,0,2.11065 -90266,3017:354:3,174,-5.5,0,0,2.05003 -90267,3017:354:4,174.5,-5.5,0,0,1.96425 -90268,3017:455:3,175,-5.5,0,0,1.92518 -90269,3017:455:4,175.5,-5.5,0,0,1.92184 -90270,3017:456:3,176,-5.5,0,0,1.92518 -90271,3017:456:4,176.5,-5.5,0,0,1.92184 -90272,3017:457:3,177,-5.5,0,0,1.88526 -90273,3017:457:4,177.5,-5.5,0,0,1.83288 -90274,3017:458:3,178,-5.5,0,0,1.77946 -90275,3017:458:4,178.5,-5.5,0,0,1.73578 -90276,3017:459:3,179,-5.5,0,0,1.66894 -90277,3017:459:4,179.5,-5.5,0,0,1.60278 -90278,3018:350:3,180,-5.5,0,0,1.59171 -90279,5018:350:1,-180,-5,0,0,1.60839 -90280,5017:459:2,-179.5,-5,0,0,1.65201 -90281,5017:459:1,-179,-5,0,0,1.70243 -90282,5017:458:2,-178.5,-5,0,0,1.76107 -90283,5017:458:1,-178,-5,0,0,1.81264 -90284,5017:457:2,-177.5,-5,0,0,1.86004 -90285,5017:457:1,-177,-5,0,0,1.89828 -90286,5017:456:2,-176.5,-5,0,0,1.92518 -90287,5017:456:1,-176,-5,0,0,1.96794 -90288,5017:455:2,-175.5,-5,0,0,2.07115 -90289,5017:455:1,-175,-5,0,0,2.09278 -90290,5017:354:2,-174.5,-5,0,0,2.0018 -90291,5017:354:1,-174,-5,0,0,1.92184 -90292,5017:353:2,-173.5,-5,0,0,1.96425 -90293,5017:353:1,-173,-5,0,0,2.18193 -90294,5017:352:2,-172.5,-5,0,0,2.39112 -90295,5017:352:1,-172,-5,0,0,2.67453 -90296,5017:351:2,-171.5,-5,0,0,3.0288 -90297,5017:351:1,-171,-5,0,0,3.38202 -90298,5017:350:2,-170.5,-5,0,0,3.89806 -90299,5017:350:1,-170,-5,0,0,4.71237 -90300,5016:459:2,-169.5,-5,0,0,5.51842 -90301,5016:459:1,-169,-5,0,0,6.49793 -90302,5016:458:2,-168.5,-5,0,0,7.75136 -90303,5016:458:1,-168,-5,0,0,9.5117 -90304,5016:457:2,-167.5,-5,0,0,12.9743 -90305,5016:457:1,-167,-5,0,0,27.0086 -90306,5016:456:2,-166.5,-5,0,0,-60.8518 -90307,5016:456:1,-166,-5,0,0,-19.8636 -90308,5016:455:2,-165.5,-5,0,0,-10.425 -90309,5016:455:1,-165,-5,0,0,-6.469 -90310,5016:354:2,-164.5,-5,0,0,-4.47573 -90311,5016:354:1,-164,-5,0,0,-3.29075 -90312,5016:353:2,-163.5,-5,0,0,-2.56601 -90313,5016:353:1,-163,-5,0,0,-2.05393 -90314,5016:352:2,-162.5,-5,0,0,-1.70144 -90315,5016:352:1,-162,-5,0,0,-1.38539 -90316,5016:351:2,-161.5,-5,0,0,-1.11574 -90317,5016:351:1,-161,-5,0,0,-0.929047 -90318,5016:350:2,-160.5,-5,0,0,-0.790583 -90319,5016:350:1,-160,-5,0,0,-0.708665 -90320,5015:459:2,-159.5,-5,0,0,-0.661499 -90321,5015:459:1,-159,-5,0,0,-0.62497 -90322,5015:458:2,-158.5,-5,0,0,-0.588842 -90323,5015:458:1,-158,-5,0,0,-0.552335 -90324,5015:457:2,-157.5,-5,0,0,-0.512057 -90325,5015:457:1,-157,-5,0,0,-0.46875 -90326,5015:456:2,-156.5,-5,0,0,-0.430914 -90327,5015:456:1,-156,-5,0,0,-0.399708 -90328,5015:455:2,-155.5,-5,0,0,-0.373236 -90329,5015:455:1,-155,-5,0,0,-0.356036 -90330,5015:354:2,-154.5,-5,0,0,-0.332593 -90331,5015:354:1,-154,-5,0,0,-0.302642 -90332,5015:353:2,-153.5,-5,0,0,-0.28166 -90333,5015:353:1,-153,-5,0,0,-0.262026 -90334,5015:352:2,-152.5,-5,0,0,-0.243644 -90335,5015:352:1,-152,-5,0,0,-0.229892 -90336,5015:351:2,-151.5,-5,0,0,-0.218575 -90337,5015:351:1,-151,-5,0,0,-0.209678 -90338,5015:350:2,-150.5,-5,0,0,-0.204063 -90339,5015:350:1,-150,-5,0,0,-0.199812 -90340,5014:459:2,-149.5,-5,0,0,-0.198404 -90341,5014:459:1,-149,-5,0,0,-0.197647 -90342,5014:458:2,-148.5,-5,0,0,-0.196894 -90343,5014:458:1,-148,-5,0,0,-0.195968 -90344,5014:457:2,-147.5,-5,0,0,-0.194784 -90345,5014:457:1,-147,-5,0,0,-0.193392 -90346,5014:456:2,-146.5,-5,0,0,-0.192177 -90347,5014:456:1,-146,-5,0,0,-0.190993 -90348,5014:455:2,-145.5,-5,0,0,-0.189631 -90349,5014:455:1,-145,-5,0,0,-0.188412 -90350,5014:354:2,-144.5,-5,0,0,-0.18728 -90351,5014:354:1,-144,-5,0,0,-0.186105 -90352,5014:353:2,-143.5,-5,0,0,-0.184886 -90353,5014:353:1,-143,-5,0,0,-0.183651 -90354,5014:352:2,-142.5,-5,0,0,-0.182374 -90355,5014:352:1,-142,-5,0,0,-0.181184 -90356,5014:351:2,-141.5,-5,0,0,-0.180177 -90357,5014:351:1,-141,-5,0,0,-0.179029 -90358,5014:350:2,-140.5,-5,0,0,-0.177616 -90359,5014:350:1,-140,-5,0,0,-0.176314 -90360,5013:459:2,-139.5,-5,0,0,-0.175315 -90361,5013:459:1,-139,-5,0,0,-0.174322 -90362,5013:458:2,-138.5,-5,0,0,-0.173048 -90363,5013:458:1,-138,-5,0,0,-0.171737 -90364,5013:457:2,-137.5,-5,0,0,-0.170461 -90365,5013:457:1,-137,-5,0,0,-0.169126 -90366,5013:456:2,-136.5,-5,0,0,-0.167711 -90367,5013:456:1,-136,-5,0,0,-0.166332 -90368,5013:455:2,-135.5,-5,0,0,-0.165056 -90369,5013:455:1,-135,-5,0,0,-0.163905 -90370,5013:354:2,-134.5,-5,0,0,-0.162806 -90371,5013:354:1,-134,-5,0,0,-0.161783 -90372,5013:353:2,-133.5,-5,0,0,-0.16079 -90373,5013:353:1,-133,-5,0,0,-0.159999 -90374,5013:352:2,-132.5,-5,0,0,-0.159453 -90375,5013:352:1,-132,-5,0,0,-0.158996 -90376,5013:351:2,-131.5,-5,0,0,-0.158757 -90377,5013:351:1,-131,-5,0,0,-0.158216 -90378,5013:350:2,-130.5,-5,0,0,-0.157054 -90379,5013:350:1,-130,-5,0,0,-0.155945 -90380,5012:459:2,-129.5,-5,0,0,-0.155139 -90381,5012:459:1,-129,-5,0,0,-0.154087 -90382,5012:458:2,-128.5,-5,0,0,-0.152959 -90383,5012:458:1,-128,-5,0,0,-0.151923 -90384,5012:457:2,-127.5,-5,0,0,-0.150957 -90385,5012:457:1,-127,-5,0,0,-0.149997 -90386,5012:456:2,-126.5,-5,0,0,-0.148944 -90387,5012:456:1,-126,-5,0,0,-0.147798 -90388,5012:455:2,-125.5,-5,0,0,-0.146762 -90389,5012:455:1,-125,-5,0,0,-0.145873 -90390,5012:354:2,-124.5,-5,0,0,-0.145067 -90391,5012:354:1,-124,-5,0,0,-0.144227 -90392,5012:353:2,-123.5,-5,0,0,-0.143393 -90393,5012:353:1,-123,-5,0,0,-0.142622 -90394,5012:352:2,-122.5,-5,0,0,-0.141894 -90395,5012:352:1,-122,-5,0,0,-0.141113 -90396,5012:351:2,-121.5,-5,0,0,-0.140375 -90397,5012:351:1,-121,-5,0,0,-0.139791 -90398,5012:350:2,-120.5,-5,0,0,-0.139326 -90399,5012:350:1,-120,-5,0,0,-0.138902 -90400,5011:459:2,-119.5,-5,0,0,-0.138563 -90401,5011:459:1,-119,-5,0,0,-0.138108 -90402,5011:458:2,-118.5,-5,0,0,-0.137705 -90403,5011:458:1,-118,-5,0,0,-0.137087 -90404,5011:457:2,-117.5,-5,0,0,-0.136279 -90405,5011:457:1,-117,-5,0,0,-0.136064 -90406,5011:456:2,-116.5,-5,0,0,-0.13605 -90407,5011:456:1,-116,-5,0,0,-0.13605 -90408,5011:455:2,-115.5,-5,0,0,-0.13605 -90409,5011:455:1,-115,-5,0,0,-0.13605 -90410,5011:354:2,-114.5,-5,0,0,-0.13605 -90411,5011:354:1,-114,-5,0,0,-0.13605 -90412,5011:353:2,-113.5,-5,0,0,-0.13605 -90413,5011:353:1,-113,-5,0,0,-0.13605 -90414,5011:352:2,-112.5,-5,0,0,-0.13605 -90415,5011:352:1,-112,-5,0,0,-0.13605 -90416,5011:351:2,-111.5,-5,0,0,-0.13605 -90417,5011:351:1,-111,-5,0,0,-0.13605 -90418,5011:350:2,-110.5,-5,0,0,-0.13605 -90419,5011:350:1,-110,-5,0,0,-0.13605 -90420,5010:459:2,-109.5,-5,0,0,-0.13605 -90421,5010:459:1,-109,-5,0,0,-0.13605 -90422,5010:458:2,-108.5,-5,0,0,-0.13605 -90423,5010:458:1,-108,-5,0,0,-0.13605 -90424,5010:457:2,-107.5,-5,0,0,-0.13605 -90425,5010:457:1,-107,-5,0,0,-0.13605 -90426,5010:456:2,-106.5,-5,0,0,-0.13605 -90427,5010:456:1,-106,-5,0,0,-0.13605 -90428,5010:455:2,-105.5,-5,0,0,-0.13605 -90429,5010:455:1,-105,-5,0,0,-0.13605 -90430,5010:354:2,-104.5,-5,0,0,-0.13605 -90431,5010:354:1,-104,-5,0,0,-0.13605 -90432,5010:353:2,-103.5,-5,0,0,-0.13605 -90433,5010:353:1,-103,-5,0,0,-0.13605 -90434,5010:352:2,-102.5,-5,0,0,-0.13605 -90435,5010:352:1,-102,-5,0,0,-0.13605 -90436,5010:351:2,-101.5,-5,0,0,-0.13605 -90437,5010:351:1,-101,-5,0,0,-0.13605 -90438,5010:350:2,-100.5,-5,0,0,-0.13605 -90439,5010:350:1,-100,-5,0,0,-0.13605 -90440,5009:459:2,-99.5,-5,0,0,-0.13605 -90441,5009:459:1,-99,-5,0,0,-0.13605 -90442,5009:458:2,-98.5,-5,0,0,-0.13605 -90443,5009:458:1,-98,-5,0,0,-0.13605 -90444,5009:457:2,-97.5,-5,0,0,-0.13605 -90445,5009:457:1,-97,-5,0,0,-0.13605 -90446,5009:456:2,-96.5,-5,0,0,-0.13605 -90447,5009:456:1,-96,-5,0,0,-0.13605 -90448,5009:455:2,-95.5,-5,0,0,-0.13605 -90449,5009:455:1,-95,-5,0,0,-0.13605 -90450,5009:354:2,-94.5,-5,0,0,-0.13605 -90451,5009:354:1,-94,-5,0,0,-0.13605 -90452,5009:353:2,-93.5,-5,0,0,-0.13605 -90453,5009:353:1,-93,-5,0,0,-0.13605 -90454,5009:352:2,-92.5,-5,0,0,-0.13605 -90455,5009:352:1,-92,-5,0,0,-0.13605 -90456,5009:351:2,-91.5,-5,0,0,-0.13605 -90457,5009:351:1,-91,-5,0,0,-0.13605 -90458,5009:350:2,-90.5,-5,0,0,-0.13605 -90459,5009:350:1,-90,-5,0,0,-0.13605 -90460,5008:459:2,-89.5,-5,0,0,-0.13605 -90461,5008:459:1,-89,-5,0,0,-0.13605 -90462,5008:458:2,-88.5,-5,0,0,-0.13605 -90463,5008:458:1,-88,-5,0,0,-0.13605 -90464,5008:457:2,-87.5,-5,0,0,-0.13605 -90465,5008:457:1,-87,-5,0,0,-0.13605 -90466,5008:456:2,-86.5,-5,0,0,-0.13605 -90467,5008:456:1,-86,-5,0,0,-0.13605 -90468,5008:455:2,-85.5,-5,0,0,-0.13605 -90469,5008:455:1,-85,-5,0,0,-0.13605 -90470,5008:354:2,-84.5,-5,0,0,-0.13605 -90471,5008:354:1,-84,-5,0,0,-0.13605 -90472,5008:353:2,-83.5,-5,0,0,-0.13605 -90473,5008:353:1,-83,-5,0,0,-0.13605 -90474,5008:352:2,-82.5,-5,0,0,-0.13605 -90475,5008:352:1,-82,-5,0,0,-0.13605 -90476,5008:351:2,-81.5,-5,0,0,-0.13605 -90477,5008:351:1,-81,-5,0,0,-0.13605 -90478,5003:458:2,-38.5,-5,0,0,-0.186522 -90479,5003:458:1,-38,-5,0,0,-0.176486 -90480,5003:457:2,-37.5,-5,0,0,-0.170015 -90481,5003:457:1,-37,-5,0,0,-0.170156 -90482,5003:456:2,-36.5,-5,0,0,-0.17072 -90483,5003:456:1,-36,-5,0,0,-0.171051 -90484,5003:455:2,-35.5,-5,0,0,-0.171571 -90485,5003:455:1,-35,-5,0,0,-0.171785 -90486,5003:354:2,-34.5,-5,0,0,-0.171571 -90487,5003:354:1,-34,-5,0,0,-0.17124 -90488,5003:353:2,-33.5,-5,0,0,-0.170862 -90489,5003:353:1,-33,-5,0,0,-0.170391 -90490,5003:352:2,-32.5,-5,0,0,-0.169968 -90491,5003:352:1,-32,-5,0,0,-0.169477 -90492,5003:351:2,-31.5,-5,0,0,-0.168916 -90493,5003:351:1,-31,-5,0,0,-0.168243 -90494,5003:350:2,-30.5,-5,0,0,-0.16748 -90495,5003:350:1,-30,-5,0,0,-0.166905 -90496,5002:459:2,-29.5,-5,0,0,-0.166676 -90497,5002:459:1,-29,-5,0,0,-0.166469 -90498,5002:458:2,-28.5,-5,0,0,-0.166263 -90499,5002:458:1,-28,-5,0,0,-0.166058 -90500,5002:457:2,-27.5,-5,0,0,-0.165761 -90501,5002:457:1,-27,-5,0,0,-0.16517 -90502,5002:456:2,-26.5,-5,0,0,-0.164243 -90503,5002:456:1,-26,-5,0,0,-0.163254 -90504,5002:455:2,-25.5,-5,0,0,-0.162406 -90505,5002:455:1,-25,-5,0,0,-0.161717 -90506,5002:354:2,-24.5,-5,0,0,-0.161562 -90507,5002:354:1,-24,-5,0,0,-0.161739 -90508,5002:353:2,-23.5,-5,0,0,-0.162094 -90509,5002:353:1,-23,-5,0,0,-0.162361 -90510,5002:352:2,-22.5,-5,0,0,-0.162205 -90511,5002:352:1,-22,-5,0,0,-0.16185 -90512,5002:351:2,-21.5,-5,0,0,-0.161429 -90513,5002:351:1,-21,-5,0,0,-0.160878 -90514,5002:350:2,-20.5,-5,0,0,-0.160328 -90515,5002:350:1,-20,-5,0,0,-0.159759 -90516,5001:459:2,-19.5,-5,0,0,-0.159127 -90517,5001:459:1,-19,-5,0,0,-0.158519 -90518,5001:458:2,-18.5,-5,0,0,-0.158065 -90519,5001:458:1,-18,-5,0,0,-0.157957 -90520,5001:457:2,-17.5,-5,0,0,-0.158194 -90521,5001:457:1,-17,-5,0,0,-0.158714 -90522,5001:456:2,-16.5,-5,0,0,-0.159432 -90523,5001:456:1,-16,-5,0,0,-0.160197 -90524,5001:455:2,-15.5,-5,0,0,-0.160745 -90525,5001:455:1,-15,-5,0,0,-0.160966 -90526,5001:354:2,-14.5,-5,0,0,-0.160944 -90527,5001:354:1,-14,-5,0,0,-0.161032 -90528,5001:353:2,-13.5,-5,0,0,-0.161208 -90529,5001:353:1,-13,-5,0,0,-0.161429 -90530,5001:352:2,-12.5,-5,0,0,-0.161584 -90531,5001:352:1,-12,-5,0,0,-0.161651 -90532,5001:351:2,-11.5,-5,0,0,-0.161651 -90533,5001:351:1,-11,-5,0,0,-0.161938 -90534,5001:350:2,-10.5,-5,0,0,-0.162561 -90535,5001:350:1,-10,-5,0,0,-0.16341 -90536,5000:459:2,-9.5,-5,0,0,-0.16422 -90537,5000:459:1,-9,-5,0,0,-0.164694 -90538,5000:458:2,-8.5,-5,0,0,-0.16517 -90539,5000:458:1,-8,-5,0,0,-0.165488 -90540,5000:457:2,-7.5,-5,0,0,-0.165693 -90541,5000:457:1,-7,-5,0,0,-0.165807 -90542,5000:456:2,-6.5,-5,0,0,-0.166378 -90543,5000:456:1,-6,-5,0,0,-0.167135 -90544,5000:455:2,-5.5,-5,0,0,-0.167895 -90545,5000:455:1,-5,-5,0,0,-0.168174 -90546,5000:354:2,-4.5,-5,0,0,-0.168475 -90547,5000:354:1,-4,-5,0,0,-0.16887 -90548,5000:353:2,-3.5,-5,0,0,-0.169406 -90549,5000:353:1,-3,-5,0,0,-0.170038 -90550,5000:352:2,-2.5,-5,0,0,-0.170886 -90551,5000:352:1,-2,-5,0,0,-0.171642 -90552,5000:351:2,-1.5,-5,0,0,-0.172023 -90553,5000:351:1,-1,-5,0,0,-0.172023 -90554,5000:350:2,-0.5,-5,0,0,-0.171453 -90555,3000:350:2,0,-5,0,0,-0.17098 -90556,3000:350:2,0.5,-5,0,0,-0.170791 -90557,3000:351:1,1,-5,0,0,-0.171193 -90558,3000:351:2,1.5,-5,0,0,-0.171856 -90559,3000:352:1,2,-5,0,0,-0.173072 -90560,3000:352:2,2.5,-5,0,0,-0.17483 -90561,3000:353:1,3,-5,0,0,-0.177222 -90562,3000:353:2,3.5,-5,0,0,-0.179577 -90563,3000:354:1,4,-5,0,0,-0.181032 -90564,3000:354:2,4.5,-5,0,0,-0.181968 -90565,3000:455:1,5,-5,0,0,-0.183037 -90566,3000:455:2,5.5,-5,0,0,-0.183497 -90567,3000:456:1,6,-5,0,0,-0.184421 -90568,3000:456:2,6.5,-5,0,0,-0.185326 -90569,3000:457:1,7,-5,0,0,-0.185326 -90570,3000:457:2,7.5,-5,0,0,-0.184267 -90571,3000:458:1,8,-5,0,0,-0.181917 -90572,3000:458:2,8.5,-5,0,0,-0.178185 -90573,3000:459:1,9,-5,0,0,-0.172308 -90574,3000:459:2,9.5,-5,0,0,-0.164898 -90575,3001:350:1,10,-5,0,0,-0.158671 -90576,3001:350:2,10.5,-5,0,0,-0.155817 -90577,3001:351:1,11,-5,0,0,-0.15273 -90578,3003:459:2,39.5,-5,0,0,-0.181841 -90579,3004:350:1,40,-5,0,0,-0.544967 -90580,3004:350:2,40.5,-5,0,0,-18.3703 -90581,3004:351:1,41,-5,0,0,7.46134 -90582,3004:351:2,41.5,-5,0,0,2.55241 -90583,3004:352:1,42,-5,0,0,2.06685 -90584,3004:352:2,42.5,-5,0,0,1.90831 -90585,3004:353:1,43,-5,0,0,2.18193 -90586,3004:353:2,43.5,-5,0,0,5.56737 -90587,3004:354:1,44,-5,0,0,10.3629 -90588,3004:354:2,44.5,-5,0,0,4.81589 -90589,3004:455:1,45,-5,0,0,2.89439 -90590,3004:455:2,45.5,-5,0,0,1.86316 -90591,3004:456:1,46,-5,0,0,1.4125 -90592,3004:456:2,46.5,-5,0,0,1.34429 -90593,3004:457:1,47,-5,0,0,1.37643 -90594,3004:457:2,47.5,-5,0,0,1.42514 -90595,3004:458:1,48,-5,0,0,1.50804 -90596,3004:458:2,48.5,-5,0,0,1.60839 -90597,3004:459:1,49,-5,0,0,1.71883 -90598,3004:459:2,49.5,-5,0,0,1.86004 -90599,3005:350:1,50,-5,0,0,2.09278 -90600,3005:350:2,50.5,-5,0,0,2.5298 -90601,3005:351:1,51,-5,0,0,3.58243 -90602,3005:351:2,51.5,-5,0,0,6.11211 -90603,3005:352:1,52,-5,0,0,925.558 -90604,3005:352:2,52.5,-5,0,0,-3.40301 -90605,3005:353:1,53,-5,0,0,-1.68399 -90606,3005:353:2,53.5,-5,0,0,-1.16268 -90607,3005:354:1,54,-5,0,0,-0.908585 -90608,3005:354:2,54.5,-5,0,0,-0.740005 -90609,3005:455:1,55,-5,0,0,-0.774395 -90610,3005:455:2,55.5,-5,0,0,-0.998346 -90611,3005:456:1,56,-5,0,0,-1.1202 -90612,3005:456:2,56.5,-5,0,0,-1.03805 -90613,3005:457:1,57,-5,0,0,-1.56078 -90614,3005:457:2,57.5,-5,0,0,-3.23664 -90615,3005:458:1,58,-5,0,0,-7.30474 -90616,3005:458:2,58.5,-5,0,0,-20.6761 -90617,3005:459:1,59,-5,0,0,-20.6761 -90618,3005:459:2,59.5,-5,0,0,-13.7131 -90619,3006:350:1,60,-5,0,0,-13.7131 -90620,3006:350:2,60.5,-5,0,0,-11.999 -90621,3006:351:1,61,-5,0,0,-6.96957 -90622,3006:351:2,61.5,-5,0,0,-4.12441 -90623,3006:352:1,62,-5,0,0,-2.87867 -90624,3006:352:2,62.5,-5,0,0,-2.18143 -90625,3006:353:1,63,-5,0,0,-1.77489 -90626,3006:353:2,63.5,-5,0,0,-1.56858 -90627,3006:354:1,64,-5,0,0,-1.42461 -90628,3006:354:2,64.5,-5,0,0,-1.23387 -90629,3006:455:1,65,-5,0,0,-1.09328 -90630,3006:455:2,65.5,-5,0,0,-0.964552 -90631,3006:456:1,66,-5,0,0,-0.821452 -90632,3006:456:2,66.5,-5,0,0,-0.72072 -90633,3006:457:1,67,-5,0,0,-0.660175 -90634,3006:457:2,67.5,-5,0,0,-0.618734 -90635,3006:458:1,68,-5,0,0,-0.593488 -90636,3006:458:2,68.5,-5,0,0,-0.576294 -90637,3006:459:1,69,-5,0,0,-0.571831 -90638,3006:459:2,69.5,-5,0,0,-0.580804 -90639,3007:350:1,70,-5,0,0,-0.601731 -90640,3007:350:2,70.5,-5,0,0,-0.633825 -90641,3007:351:1,71,-5,0,0,-0.675289 -90642,3007:351:2,71.5,-5,0,0,-0.727843 -90643,3007:352:1,72,-5,0,0,-0.810021 -90644,3007:352:2,72.5,-5,0,0,-0.91868 -90645,3007:353:2,73.5,-5,0,0,-0.998346 -90646,3007:354:1,74,-5,0,0,-1.05037 -90647,3007:354:2,74.5,-5,0,0,-1.06292 -90648,3007:455:1,75,-5,0,0,-1.08005 -90649,3007:455:2,75.5,-5,0,0,-1.10661 -90650,3007:456:1,76,-5,0,0,-1.18737 -90651,3007:456:2,76.5,-5,0,0,-1.28327 -90652,3007:457:1,77,-5,0,0,-1.31799 -90653,3007:457:2,77.5,-5,0,0,-1.34786 -90654,3007:458:1,78,-5,0,0,-1.36025 -90655,3007:458:2,78.5,-5,0,0,-1.39184 -90656,3007:459:1,79,-5,0,0,-1.49371 -90657,3007:459:2,79.5,-5,0,0,-1.64122 -90658,3008:350:1,80,-5,0,0,-1.88497 -90659,3008:350:2,80.5,-5,0,0,-2.25028 -90660,3008:351:1,81,-5,0,0,-2.81481 -90661,3008:351:2,81.5,-5,0,0,-3.49152 -90662,3008:352:1,82,-5,0,0,-4.24979 -90663,3008:352:2,82.5,-5,0,0,-5.05687 -90664,3008:353:1,83,-5,0,0,-6.86312 -90665,3008:353:2,83.5,-5,0,0,-11.7117 -90666,3008:354:1,84,-5,0,0,-116.03 -90667,3008:354:2,84.5,-5,0,0,18.6505 -90668,3008:455:1,85,-5,0,0,9.357 -90669,3008:455:2,85.5,-5,0,0,6.29856 -90670,3008:456:1,86,-5,0,0,5.04044 -90671,3008:456:2,86.5,-5,0,0,4.78046 -90672,3008:457:1,87,-5,0,0,5.33314 -90673,3008:457:2,87.5,-5,0,0,6.49793 -90674,3008:458:1,88,-5,0,0,8.534 -90675,3008:458:2,88.5,-5,0,0,11.6346 -90676,3008:459:1,89,-5,0,0,13.5991 -90677,3008:459:2,89.5,-5,0,0,22.5078 -90678,3009:350:1,90,-5,0,0,-79.6926 -90679,3009:350:2,90.5,-5,0,0,-13.7131 -90680,3009:351:1,91,-5,0,0,-6.37632 -90681,3009:351:2,91.5,-5,0,0,-4.52385 -90682,3009:352:1,92,-5,0,0,-3.5842 -90683,3009:352:2,92.5,-5,0,0,-3.01284 -90684,3009:353:1,93,-5,0,0,-2.51409 -90685,3009:353:2,93.5,-5,0,0,-2.09107 -90686,3009:354:1,94,-5,0,0,-1.76564 -90687,3009:354:2,94.5,-5,0,0,-1.53041 -90688,3009:455:1,95,-5,0,0,-1.35403 -90689,3009:455:2,95.5,-5,0,0,-1.19754 -90690,3009:456:1,96,-5,0,0,-1.10661 -90691,3009:456:2,96.5,-5,0,0,-1.04217 -90692,3009:457:1,97,-5,0,0,-0.975586 -90693,3009:457:2,97.5,-5,0,0,-0.929047 -90694,3009:458:1,98,-5,0,0,-0.905223 -90695,3009:458:2,98.5,-5,0,0,-0.895345 -90696,3009:459:1,99,-5,0,0,-0.939481 -90697,3009:459:2,99.5,-5,0,0,-1.02987 -90698,3010:350:1,100,-5,0,0,-1.10661 -90699,3010:350:2,100.5,-5,0,0,-1.25544 -90700,3010:351:1,101,-5,0,0,-1.49371 -90701,3010:351:2,101.5,-5,0,0,-3.01284 -90702,3010:352:1,102,-5,0,0,-41.1373 -90703,3010:352:2,102.5,-5,0,0,8.534 -90704,3010:456:2,106.5,-5,0,0,1.3044 -90705,3010:457:1,107,-5,0,0,1.4964 -90706,3010:457:2,107.5,-5,0,0,1.60839 -90707,3010:458:1,108,-5,0,0,1.65411 -90708,3010:458:2,108.5,-5,0,0,1.78488 -90709,3010:459:1,109,-5,0,0,2.87359 -90710,3010:459:2,109.5,-5,0,0,146.38 -90711,3011:350:1,110,-5,0,0,-44.6839 -90712,3011:350:2,110.5,-5,0,0,11.3991 -90713,3011:351:1,111,-5,0,0,5.42473 -90714,3011:351:2,111.5,-5,0,0,3.26296 -90715,3011:352:1,112,-5,0,0,2.37847 -90716,3011:352:2,112.5,-5,0,0,2.10624 -90717,3011:353:1,113,-5,0,0,1.97155 -90718,3011:353:2,113.5,-5,0,0,1.90495 -90719,3011:354:1,114,-5,0,0,1.72124 -90720,3011:354:2,114.5,-5,0,0,1.71175 -90721,3011:455:2,115.5,-5,0,0,1.40038 -90722,3011:456:1,116,-5,0,0,1.30653 -90723,3011:456:2,116.5,-5,0,0,1.28133 -90724,3011:457:1,117,-5,0,0,1.30922 -90725,3011:457:2,117.5,-5,0,0,1.42162 -90726,3011:458:1,118,-5,0,0,1.90831 -90727,3011:458:2,118.5,-5,0,0,2.49312 -90728,3011:459:1,119,-5,0,0,30.0028 -90729,3011:459:2,119.5,-5,0,0,1.82706 -90730,3012:351:1,121,-5,0,0,1.57218 -90731,3012:351:2,121.5,-5,0,0,1.57394 -90732,3012:353:1,123,-5,0,0,1.4728 -90733,3012:353:2,123.5,-5,0,0,1.30007 -90734,3012:354:1,124,-5,0,0,1.34249 -90735,3012:354:2,124.5,-5,0,0,1.32531 -90736,3012:455:1,125,-5,0,0,1.30697 -90737,3012:455:2,125.5,-5,0,0,1.37048 -90738,3012:456:1,126,-5,0,0,1.40692 -90739,3012:456:2,126.5,-5,0,0,2.9051 -90740,3012:457:1,127,-5,0,0,2.0797 -90741,3012:457:2,127.5,-5,0,0,2.16718 -90742,3012:458:1,128,-5,0,0,1.52621 -90743,3012:458:2,128.5,-5,0,0,1.44439 -90744,3012:459:1,129,-5,0,0,1.29646 -90745,3012:459:2,129.5,-5,0,0,1.28286 -90746,3013:350:1,130,-5,0,0,1.29067 -90747,3013:350:2,130.5,-5,0,0,1.31956 -90748,3013:351:1,131,-5,0,0,1.57564 -90749,3013:351:2,131.5,-5,0,0,1.78488 -90750,3013:352:1,132,-5,0,0,1.62376 -90751,3013:352:2,132.5,-5,0,0,1.6199 -90752,3013:353:1,133,-5,0,0,1.66894 -90753,3013:354:1,134,-5,0,0,1.29067 -90754,3013:354:2,134.5,-5,0,0,1.5216 -90755,3014:455:1,145,-5,0,0,-0.787837 -90756,3014:455:2,145.5,-5,0,0,-4.99972 -90757,3014:456:1,146,-5,0,0,3.56455 -90758,3014:456:2,146.5,-5,0,0,4.15628 -90759,3014:457:1,147,-5,0,0,2.82273 -90760,3014:457:2,147.5,-5,0,0,2.50749 -90761,3014:458:1,148,-5,0,0,2.62382 -90762,3014:458:2,148.5,-5,0,0,2.91592 -90763,3014:459:1,149,-5,0,0,2.61557 -90764,3014:459:2,149.5,-5,0,0,2.2495 -90765,3015:350:1,150,-5,0,0,2.03361 -90766,3015:350:2,150.5,-5,0,0,1.78761 -90767,3015:351:1,151,-5,0,0,1.61795 -90768,3015:351:2,151.5,-5,0,0,1.57218 -90769,3015:352:1,152,-5,0,0,1.74827 -90770,3015:352:2,152.5,-5,0,0,1.514 -90771,3015:353:2,153.5,-5,0,0,1.62971 -90772,3015:354:1,154,-5,0,0,2.05833 -90773,3015:354:2,154.5,-5,0,0,2.23344 -90774,3015:455:1,155,-5,0,0,2.19696 -90775,3015:455:2,155.5,-5,0,0,2.17196 -90776,3015:456:1,156,-5,0,0,2.10624 -90777,3015:456:2,156.5,-5,0,0,2.20726 -90778,3015:457:1,157,-5,0,0,2.05003 -90779,3015:457:2,157.5,-5,0,0,1.8789 -90780,3015:458:1,158,-5,0,0,1.80695 -90781,3015:458:2,158.5,-5,0,0,1.80695 -90782,3015:459:1,159,-5,0,0,1.82413 -90783,3015:459:2,159.5,-5,0,0,1.92184 -90784,3016:350:1,160,-5,0,0,1.99803 -90785,3016:350:2,160.5,-5,0,0,1.97904 -90786,3016:351:1,161,-5,0,0,1.95693 -90787,3016:351:2,161.5,-5,0,0,1.96425 -90788,3016:352:1,162,-5,0,0,1.92518 -90789,3016:352:2,162.5,-5,0,0,1.86004 -90790,3016:353:1,163,-5,0,0,1.80695 -90791,3016:353:2,163.5,-5,0,0,1.79303 -90792,3016:354:1,164,-5,0,0,1.79859 -90793,3016:354:2,164.5,-5,0,0,1.78488 -90794,3016:455:1,165,-5,0,0,1.79036 -90795,3016:455:2,165.5,-5,0,0,1.85385 -90796,3016:456:1,166,-5,0,0,1.91498 -90797,3016:456:2,166.5,-5,0,0,1.9533 -90798,3016:457:1,167,-5,0,0,1.97155 -90799,3016:457:2,167.5,-5,0,0,1.94263 -90800,3016:458:1,168,-5,0,0,1.87252 -90801,3016:458:2,168.5,-5,0,0,1.84176 -90802,3016:459:1,169,-5,0,0,1.93215 -90803,3016:459:2,169.5,-5,0,0,2.03361 -90804,3017:350:1,170,-5,0,0,2.10173 -90805,3017:350:2,170.5,-5,0,0,2.14313 -90806,3017:351:1,171,-5,0,0,2.20726 -90807,3017:351:2,171.5,-5,0,0,2.28834 -90808,3017:352:1,172,-5,0,0,2.35974 -90809,3017:352:2,172.5,-5,0,0,2.40415 -90810,3017:353:1,173,-5,0,0,2.37847 -90811,3017:353:2,173.5,-5,0,0,2.35352 -90812,3017:354:1,174,-5,0,0,2.20209 -90813,3017:354:2,174.5,-5,0,0,2.10173 -90814,3017:455:1,175,-5,0,0,2.0797 -90815,3017:455:2,175.5,-5,0,0,2.08848 -90816,3017:456:1,176,-5,0,0,2.12445 -90817,3017:456:2,176.5,-5,0,0,2.10173 -90818,3017:457:1,177,-5,0,0,2.00964 -90819,3017:457:2,177.5,-5,0,0,1.9184 -90820,3017:458:1,178,-5,0,0,1.84478 -90821,3017:458:2,178.5,-5,0,0,1.77685 -90822,3017:459:1,179,-5,0,0,1.70011 -90823,3017:459:2,179.5,-5,0,0,1.63366 -90824,3018:350:1,180,-5,0,0,1.60839 -90825,5018:140:3,-180,-4.5,0,0,1.7663 -90826,5017:249:4,-179.5,-4.5,0,0,1.76886 -90827,5017:249:3,-179,-4.5,0,0,1.79036 -90828,5017:248:4,-178.5,-4.5,0,0,1.84176 -90829,5017:248:3,-178,-4.5,0,0,1.85385 -90830,5017:247:4,-177.5,-4.5,0,0,1.86935 -90831,5017:247:3,-177,-4.5,0,0,1.88851 -90832,5017:246:4,-176.5,-4.5,0,0,1.88203 -90833,5017:246:3,-176,-4.5,0,0,1.85385 -90834,5017:245:4,-175.5,-4.5,0,0,1.84782 -90835,5017:245:3,-175,-4.5,0,0,1.83288 -90836,5017:144:4,-174.5,-4.5,0,0,1.81264 -90837,5017:144:3,-174,-4.5,0,0,1.77946 -90838,5017:143:4,-173.5,-4.5,0,0,1.74329 -90839,5017:143:3,-173,-4.5,0,0,1.74077 -90840,5017:142:4,-172.5,-4.5,0,0,1.86004 -90841,5017:142:3,-172,-4.5,0,0,2.20209 -90842,5017:141:4,-171.5,-4.5,0,0,2.72758 -90843,5017:141:3,-171,-4.5,0,0,3.3212 -90844,5017:140:4,-170.5,-4.5,0,0,4.01092 -90845,5017:140:3,-170,-4.5,0,0,5.04044 -90846,5016:249:4,-169.5,-4.5,0,0,6.11211 -90847,5016:249:3,-169,-4.5,0,0,7.19111 -90848,5016:248:4,-168.5,-4.5,0,0,8.17922 -90849,5016:248:3,-168,-4.5,0,0,9.83283 -90850,5016:247:4,-167.5,-4.5,0,0,15.0827 -90851,5016:247:3,-167,-4.5,0,0,31.7976 -90852,5016:246:4,-166.5,-4.5,0,0,-26.1207 -90853,5016:246:3,-166,-4.5,0,0,-10.1983 -90854,5016:245:4,-165.5,-4.5,0,0,-6.20082 -90855,5016:245:3,-165,-4.5,0,0,-4.52385 -90856,5016:144:4,-164.5,-4.5,0,0,-3.3741 -90857,5016:144:3,-164,-4.5,0,0,-2.49701 -90858,5016:143:4,-163.5,-4.5,0,0,-1.88497 -90859,5016:143:3,-163,-4.5,0,0,-1.52291 -90860,5016:142:4,-162.5,-4.5,0,0,-1.28898 -90861,5016:142:3,-162,-4.5,0,0,-1.11574 -90862,5016:141:4,-161.5,-4.5,0,0,-0.971963 -90863,5016:141:3,-161,-4.5,0,0,-0.848069 -90864,5016:140:4,-160.5,-4.5,0,0,-0.746335 -90865,5016:140:3,-160,-4.5,0,0,-0.679488 -90866,5015:249:4,-159.5,-4.5,0,0,-0.630014 -90867,5015:249:3,-159,-4.5,0,0,-0.592313 -90868,5015:248:4,-158.5,-4.5,0,0,-0.556592 -90869,5015:248:3,-158,-4.5,0,0,-0.521724 -90870,5015:247:4,-157.5,-4.5,0,0,-0.486168 -90871,5015:247:3,-157,-4.5,0,0,-0.452146 -90872,5015:246:4,-156.5,-4.5,0,0,-0.418952 -90873,5015:246:3,-156,-4.5,0,0,-0.388848 -90874,5015:245:4,-155.5,-4.5,0,0,-0.361458 -90875,5015:245:3,-155,-4.5,0,0,-0.339808 -90876,5015:144:4,-154.5,-4.5,0,0,-0.31666 -90877,5015:144:3,-154,-4.5,0,0,-0.294027 -90878,5015:143:4,-153.5,-4.5,0,0,-0.276812 -90879,5015:143:3,-153,-4.5,0,0,-0.262026 -90880,5015:142:4,-152.5,-4.5,0,0,-0.250485 -90881,5015:142:3,-152,-4.5,0,0,-0.242153 -90882,5015:141:4,-151.5,-4.5,0,0,-0.232359 -90883,5015:141:3,-151,-4.5,0,0,-0.219854 -90884,5015:140:4,-150.5,-4.5,0,0,-0.20717 -90885,5015:140:3,-150,-4.5,0,0,-0.199973 -90886,5014:249:4,-149.5,-4.5,0,0,-0.19827 -90887,5014:249:3,-149,-4.5,0,0,-0.197469 -90888,5014:248:4,-148.5,-4.5,0,0,-0.19654 -90889,5014:248:3,-148,-4.5,0,0,-0.195003 -90890,5014:247:4,-147.5,-4.5,0,0,-0.193002 -90891,5014:247:3,-147,-4.5,0,0,-0.191611 -90892,5014:246:4,-146.5,-4.5,0,0,-0.190244 -90893,5014:246:3,-146,-4.5,0,0,-0.188729 -90894,5014:245:4,-145.5,-4.5,0,0,-0.187228 -90895,5014:245:3,-145,-4.5,0,0,-0.186027 -90896,5014:144:4,-144.5,-4.5,0,0,-0.185041 -90897,5014:144:3,-144,-4.5,0,0,-0.184139 -90898,5014:143:4,-143.5,-4.5,0,0,-0.183191 -90899,5014:143:3,-143,-4.5,0,0,-0.182349 -90900,5014:142:4,-142.5,-4.5,0,0,-0.181437 -90901,5014:142:3,-142,-4.5,0,0,-0.180303 -90902,5014:141:4,-141.5,-4.5,0,0,-0.179078 -90903,5014:141:3,-141,-4.5,0,0,-0.177764 -90904,5014:140:4,-140.5,-4.5,0,0,-0.17651 -90905,5014:140:3,-140,-4.5,0,0,-0.175194 -90906,5013:249:4,-139.5,-4.5,0,0,-0.173864 -90907,5013:249:3,-139,-4.5,0,0,-0.172689 -90908,5013:248:4,-138.5,-4.5,0,0,-0.171571 -90909,5013:248:3,-138,-4.5,0,0,-0.170367 -90910,5013:247:4,-137.5,-4.5,0,0,-0.16901 -90911,5013:247:3,-137,-4.5,0,0,-0.167711 -90912,5013:246:4,-136.5,-4.5,0,0,-0.166538 -90913,5013:246:3,-136,-4.5,0,0,-0.16542 -90914,5013:245:4,-135.5,-4.5,0,0,-0.164333 -90915,5013:245:3,-135,-4.5,0,0,-0.163276 -90916,5013:144:4,-134.5,-4.5,0,0,-0.162205 -90917,5013:144:3,-134,-4.5,0,0,-0.16123 -90918,5013:143:4,-133.5,-4.5,0,0,-0.160394 -90919,5013:143:3,-133,-4.5,0,0,-0.159628 -90920,5013:142:4,-132.5,-4.5,0,0,-0.158844 -90921,5013:142:3,-132,-4.5,0,0,-0.157978 -90922,5013:141:4,-131.5,-4.5,0,0,-0.157247 -90923,5013:141:3,-131,-4.5,0,0,-0.15669 -90924,5013:140:4,-130.5,-4.5,0,0,-0.156072 -90925,5013:140:3,-130,-4.5,0,0,-0.155266 -90926,5012:249:4,-129.5,-4.5,0,0,-0.154443 -90927,5012:249:3,-129,-4.5,0,0,-0.153605 -90928,5012:248:4,-128.5,-4.5,0,0,-0.152709 -90929,5012:248:3,-128,-4.5,0,0,-0.15182 -90930,5012:247:4,-127.5,-4.5,0,0,-0.151018 -90931,5012:247:3,-127,-4.5,0,0,-0.150323 -90932,5012:246:4,-126.5,-4.5,0,0,-0.149591 -90933,5012:246:3,-126,-4.5,0,0,-0.148762 -90934,5012:245:4,-125.5,-4.5,0,0,-0.147878 -90935,5012:245:3,-125,-4.5,0,0,-0.146802 -90936,5012:144:4,-124.5,-4.5,0,0,-0.145636 -90937,5012:144:3,-124,-4.5,0,0,-0.14448 -90938,5012:143:4,-123.5,-4.5,0,0,-0.143451 -90939,5012:143:3,-123,-4.5,0,0,-0.142545 -90940,5012:142:4,-122.5,-4.5,0,0,-0.14176 -90941,5012:142:3,-122,-4.5,0,0,-0.141094 -90942,5012:141:4,-121.5,-4.5,0,0,-0.140412 -90943,5012:141:3,-121,-4.5,0,0,-0.139716 -90944,5012:140:4,-120.5,-4.5,0,0,-0.139037 -90945,5012:140:3,-120,-4.5,0,0,-0.138378 -90946,5011:249:4,-119.5,-4.5,0,0,-0.137705 -90947,5011:249:3,-119,-4.5,0,0,-0.137237 -90948,5011:248:4,-118.5,-4.5,0,0,-0.137053 -90949,5011:248:3,-118,-4.5,0,0,-0.13692 -90950,5011:247:4,-117.5,-4.5,0,0,-0.136167 -90951,5011:247:3,-117,-4.5,0,0,-0.13605 -90952,5011:246:4,-116.5,-4.5,0,0,-0.13605 -90953,5011:246:3,-116,-4.5,0,0,-0.13605 -90954,5011:245:4,-115.5,-4.5,0,0,-0.13605 -90955,5011:245:3,-115,-4.5,0,0,-0.13605 -90956,5011:144:4,-114.5,-4.5,0,0,-0.13605 -90957,5011:144:3,-114,-4.5,0,0,-0.13605 -90958,5011:143:4,-113.5,-4.5,0,0,-0.13605 -90959,5011:143:3,-113,-4.5,0,0,-0.13605 -90960,5011:142:4,-112.5,-4.5,0,0,-0.13605 -90961,5011:142:3,-112,-4.5,0,0,-0.13605 -90962,5011:141:4,-111.5,-4.5,0,0,-0.13605 -90963,5011:141:3,-111,-4.5,0,0,-0.13605 -90964,5011:140:4,-110.5,-4.5,0,0,-0.13605 -90965,5011:140:3,-110,-4.5,0,0,-0.13605 -90966,5010:249:4,-109.5,-4.5,0,0,-0.13605 -90967,5010:249:3,-109,-4.5,0,0,-0.13605 -90968,5010:248:4,-108.5,-4.5,0,0,-0.13605 -90969,5010:248:3,-108,-4.5,0,0,-0.13605 -90970,5010:247:4,-107.5,-4.5,0,0,-0.13605 -90971,5010:247:3,-107,-4.5,0,0,-0.13605 -90972,5010:246:4,-106.5,-4.5,0,0,-0.13605 -90973,5010:246:3,-106,-4.5,0,0,-0.13605 -90974,5010:245:4,-105.5,-4.5,0,0,-0.13605 -90975,5010:245:3,-105,-4.5,0,0,-0.13605 -90976,5010:144:4,-104.5,-4.5,0,0,-0.13605 -90977,5010:144:3,-104,-4.5,0,0,-0.13605 -90978,5010:143:4,-103.5,-4.5,0,0,-0.13605 -90979,5010:143:3,-103,-4.5,0,0,-0.13605 -90980,5010:142:4,-102.5,-4.5,0,0,-0.13605 -90981,5010:142:3,-102,-4.5,0,0,-0.13605 -90982,5010:141:4,-101.5,-4.5,0,0,-0.13605 -90983,5010:141:3,-101,-4.5,0,0,-0.13605 -90984,5010:140:4,-100.5,-4.5,0,0,-0.13605 -90985,5010:140:3,-100,-4.5,0,0,-0.13605 -90986,5009:249:4,-99.5,-4.5,0,0,-0.13605 -90987,5009:249:3,-99,-4.5,0,0,-0.13605 -90988,5009:248:4,-98.5,-4.5,0,0,-0.13605 -90989,5009:248:3,-98,-4.5,0,0,-0.13605 -90990,5009:247:4,-97.5,-4.5,0,0,-0.13605 -90991,5009:247:3,-97,-4.5,0,0,-0.13605 -90992,5009:246:4,-96.5,-4.5,0,0,-0.13605 -90993,5009:246:3,-96,-4.5,0,0,-0.13605 -90994,5009:245:4,-95.5,-4.5,0,0,-0.13605 -90995,5009:245:3,-95,-4.5,0,0,-0.13605 -90996,5009:144:4,-94.5,-4.5,0,0,-0.13605 -90997,5009:144:3,-94,-4.5,0,0,-0.13605 -90998,5009:143:4,-93.5,-4.5,0,0,-0.13605 -90999,5009:143:3,-93,-4.5,0,0,-0.13605 -91000,5009:142:4,-92.5,-4.5,0,0,-0.13605 -91001,5009:142:3,-92,-4.5,0,0,-0.13605 -91002,5009:141:4,-91.5,-4.5,0,0,-0.13605 -91003,5009:141:3,-91,-4.5,0,0,-0.13605 -91004,5009:140:4,-90.5,-4.5,0,0,-0.13605 -91005,5009:140:3,-90,-4.5,0,0,-0.13605 -91006,5008:249:4,-89.5,-4.5,0,0,-0.13605 -91007,5008:249:3,-89,-4.5,0,0,-0.13605 -91008,5008:248:4,-88.5,-4.5,0,0,-0.13605 -91009,5008:248:3,-88,-4.5,0,0,-0.13605 -91010,5008:247:4,-87.5,-4.5,0,0,-0.13605 -91011,5008:247:3,-87,-4.5,0,0,-0.13605 -91012,5008:246:4,-86.5,-4.5,0,0,-0.13605 -91013,5008:246:3,-86,-4.5,0,0,-0.13605 -91014,5008:245:4,-85.5,-4.5,0,0,-0.13605 -91015,5008:245:3,-85,-4.5,0,0,-0.13605 -91016,5008:144:4,-84.5,-4.5,0,0,-0.13605 -91017,5008:144:3,-84,-4.5,0,0,-0.13605 -91018,5008:143:4,-83.5,-4.5,0,0,-0.13605 -91019,5008:143:3,-83,-4.5,0,0,-0.13605 -91020,5008:142:4,-82.5,-4.5,0,0,-0.13605 -91021,5008:142:3,-82,-4.5,0,0,-0.13605 -91022,5008:141:4,-81.5,-4.5,0,0,-0.13605 -91023,5008:141:3,-81,-4.5,0,0,-0.13605 -91024,5008:140:4,-80.5,-4.5,0,0,-0.13605 -91025,5008:140:3,-80,-4.5,0,0,-0.138851 -91026,5003:249:4,-39.5,-4.5,0,0,-0.186235 -91027,5003:249:3,-39,-4.5,0,0,-0.177468 -91028,5003:248:4,-38.5,-4.5,0,0,-0.173144 -91029,5003:248:3,-38,-4.5,0,0,-0.172094 -91030,5003:247:4,-37.5,-4.5,0,0,-0.172355 -91031,5003:247:3,-37,-4.5,0,0,-0.172189 -91032,5003:246:4,-36.5,-4.5,0,0,-0.17188 -91033,5003:246:3,-36,-4.5,0,0,-0.171619 -91034,5003:245:4,-35.5,-4.5,0,0,-0.171429 -91035,5003:245:3,-35,-4.5,0,0,-0.17124 -91036,5003:144:4,-34.5,-4.5,0,0,-0.171004 -91037,5003:144:3,-34,-4.5,0,0,-0.17065 -91038,5003:143:4,-33.5,-4.5,0,0,-0.170156 -91039,5003:143:3,-33,-4.5,0,0,-0.169687 -91040,5003:142:4,-32.5,-4.5,0,0,-0.169453 -91041,5003:142:3,-32,-4.5,0,0,-0.169336 -91042,5003:141:4,-31.5,-4.5,0,0,-0.169126 -91043,5003:141:3,-31,-4.5,0,0,-0.168777 -91044,5003:140:4,-30.5,-4.5,0,0,-0.168359 -91045,5003:140:3,-30,-4.5,0,0,-0.167826 -91046,5002:249:4,-29.5,-4.5,0,0,-0.167273 -91047,5002:249:3,-29,-4.5,0,0,-0.166905 -91048,5002:248:4,-28.5,-4.5,0,0,-0.166606 -91049,5002:248:3,-28,-4.5,0,0,-0.166309 -91050,5002:247:4,-27.5,-4.5,0,0,-0.166035 -91051,5002:247:3,-27,-4.5,0,0,-0.165761 -91052,5002:246:4,-26.5,-4.5,0,0,-0.165579 -91053,5002:246:3,-26,-4.5,0,0,-0.165328 -91054,5002:245:4,-25.5,-4.5,0,0,-0.165056 -91055,5002:245:3,-25,-4.5,0,0,-0.164852 -91056,5002:144:4,-24.5,-4.5,0,0,-0.164581 -91057,5002:144:3,-24,-4.5,0,0,-0.16431 -91058,5002:143:4,-23.5,-4.5,0,0,-0.16404 -91059,5002:143:3,-23,-4.5,0,0,-0.163792 -91060,5002:142:4,-22.5,-4.5,0,0,-0.16359 -91061,5002:142:3,-22,-4.5,0,0,-0.163433 -91062,5002:141:4,-21.5,-4.5,0,0,-0.163321 -91063,5002:141:3,-21,-4.5,0,0,-0.163187 -91064,5002:140:4,-20.5,-4.5,0,0,-0.163075 -91065,5002:140:3,-20,-4.5,0,0,-0.162963 -91066,5001:249:4,-19.5,-4.5,0,0,-0.162918 -91067,5001:249:3,-19,-4.5,0,0,-0.163007 -91068,5001:248:4,-18.5,-4.5,0,0,-0.163119 -91069,5001:248:3,-18,-4.5,0,0,-0.163209 -91070,5001:247:4,-17.5,-4.5,0,0,-0.163254 -91071,5001:247:3,-17,-4.5,0,0,-0.163209 -91072,5001:246:4,-16.5,-4.5,0,0,-0.163231 -91073,5001:246:3,-16,-4.5,0,0,-0.163523 -91074,5001:245:4,-15.5,-4.5,0,0,-0.163882 -91075,5001:245:3,-15,-4.5,0,0,-0.164243 -91076,5001:144:4,-14.5,-4.5,0,0,-0.164604 -91077,5001:144:3,-14,-4.5,0,0,-0.165011 -91078,5001:143:4,-13.5,-4.5,0,0,-0.16542 -91079,5001:143:3,-13,-4.5,0,0,-0.165898 -91080,5001:142:4,-12.5,-4.5,0,0,-0.166767 -91081,5001:142:3,-12,-4.5,0,0,-0.16785 -91082,5001:141:4,-11.5,-4.5,0,0,-0.169033 -91083,5001:141:3,-11,-4.5,0,0,-0.170062 -91084,5001:140:4,-10.5,-4.5,0,0,-0.170838 -91085,5001:140:3,-10,-4.5,0,0,-0.171429 -91086,5000:249:4,-9.5,-4.5,0,0,-0.172023 -91087,5000:249:3,-9,-4.5,0,0,-0.172713 -91088,5000:248:4,-8.5,-4.5,0,0,-0.173144 -91089,5000:248:3,-8,-4.5,0,0,-0.17336 -91090,5000:247:4,-7.5,-4.5,0,0,-0.173503 -91091,5000:247:3,-7,-4.5,0,0,-0.173792 -91092,5000:246:4,-6.5,-4.5,0,0,-0.173985 -91093,5000:246:3,-6,-4.5,0,0,-0.174322 -91094,5000:245:4,-5.5,-4.5,0,0,-0.174951 -91095,5000:245:3,-5,-4.5,0,0,-0.175559 -91096,5000:144:4,-4.5,-4.5,0,0,-0.175997 -91097,5000:144:3,-4,-4.5,0,0,-0.176339 -91098,5000:143:4,-3.5,-4.5,0,0,-0.176609 -91099,5000:143:3,-3,-4.5,0,0,-0.17678 -91100,5000:142:4,-2.5,-4.5,0,0,-0.176927 -91101,5000:142:3,-2,-4.5,0,0,-0.177124 -91102,5000:141:4,-1.5,-4.5,0,0,-0.177345 -91103,5000:141:3,-1,-4.5,0,0,-0.177616 -91104,5000:140:4,-0.5,-4.5,0,0,-0.17816 -91105,3000:140:4,0,-4.5,0,0,-0.178755 -91106,3000:140:4,0.5,-4.5,0,0,-0.179502 -91107,3000:141:3,1,-4.5,0,0,-0.180354 -91108,3000:141:4,1.5,-4.5,0,0,-0.181083 -91109,3000:142:3,2,-4.5,0,0,-0.181715 -91110,3000:142:4,2.5,-4.5,0,0,-0.182273 -91111,3000:143:3,3,-4.5,0,0,-0.182909 -91112,3000:143:4,3.5,-4.5,0,0,-0.183395 -91113,3000:144:3,4,-4.5,0,0,-0.183574 -91114,3000:144:4,4.5,-4.5,0,0,-0.18342 -91115,3000:245:3,5,-4.5,0,0,-0.183267 -91116,3000:245:4,5.5,-4.5,0,0,-0.183037 -91117,3000:246:3,6,-4.5,0,0,-0.182705 -91118,3000:246:4,6.5,-4.5,0,0,-0.181689 -91119,3000:247:3,7,-4.5,0,0,-0.179302 -91120,3000:247:4,7.5,-4.5,0,0,-0.176535 -91121,3000:248:3,8,-4.5,0,0,-0.173407 -91122,3000:248:4,8.5,-4.5,0,0,-0.168521 -91123,3000:249:3,9,-4.5,0,0,-0.162028 -91124,3000:249:4,9.5,-4.5,0,0,-0.156776 -91125,3001:140:3,10,-4.5,0,0,-0.138243 -91126,3004:140:3,40,-4.5,0,0,-0.181639 -91127,3004:140:4,40.5,-4.5,0,0,-4.24979 -91128,3004:141:3,41,-4.5,0,0,-209.944 -91129,3004:141:4,41.5,-4.5,0,0,1.86935 -91130,3004:142:3,42,-4.5,0,0,2.10173 -91131,3004:142:4,42.5,-4.5,0,0,2.31142 -91132,3004:143:3,43,-4.5,0,0,12.6794 -91133,3004:143:4,43.5,-4.5,0,0,-1.79421 -91134,3004:144:3,44,-4.5,0,0,-1.47956 -91135,3004:144:4,44.5,-4.5,0,0,-4.83019 -91136,3004:245:3,45,-4.5,0,0,9.06305 -91137,3004:245:4,45.5,-4.5,0,0,5.16119 -91138,3004:246:3,46,-4.5,0,0,2.64027 -91139,3004:246:4,46.5,-4.5,0,0,1.69551 -91140,3004:247:3,47,-4.5,0,0,1.44439 -91141,3004:247:4,47.5,-4.5,0,0,1.38148 -91142,3004:248:3,48,-4.5,0,0,1.36659 -91143,3004:248:4,48.5,-4.5,0,0,1.38766 -91144,3004:249:3,49,-4.5,0,0,1.4728 -91145,3004:249:4,49.5,-4.5,0,0,1.59171 -91146,3005:140:3,50,-4.5,0,0,1.74827 -91147,3005:140:4,50.5,-4.5,0,0,1.9498 -91148,3005:141:3,51,-4.5,0,0,2.26034 -91149,3005:141:4,51.5,-4.5,0,0,2.85284 -91150,3005:142:3,52,-4.5,0,0,4.18196 -91151,3005:142:4,52.5,-4.5,0,0,9.357 -91152,3005:143:3,53,-4.5,0,0,-9.7719 -91153,3005:143:4,53.5,-4.5,0,0,-2.96716 -91154,3005:144:3,54,-4.5,0,0,-1.7286 -91155,3005:144:4,54.5,-4.5,0,0,-1.29457 -91156,3005:245:3,55,-4.5,0,0,-1.0715 -91157,3005:245:4,55.5,-4.5,0,0,-0.946498 -91158,3005:246:3,56,-4.5,0,0,-0.983124 -91159,3005:246:4,56.5,-4.5,0,0,-1.1202 -91160,3005:247:3,57,-4.5,0,0,-1.31208 -91161,3005:247:4,57.5,-4.5,0,0,-1.6083 -91162,3005:248:3,58,-4.5,0,0,-2.18143 -91163,3005:248:4,58.5,-4.5,0,0,-2.94442 -91164,3005:249:3,59,-4.5,0,0,-3.52225 -91165,3005:249:4,59.5,-4.5,0,0,-3.29075 -91166,3006:140:3,60,-4.5,0,0,-3.06051 -91167,3006:140:4,60.5,-4.5,0,0,-2.62035 -91168,3006:141:3,61,-4.5,0,0,-2.35276 -91169,3006:141:4,61.5,-4.5,0,0,-2.11607 -91170,3006:142:3,62,-4.5,0,0,-1.88497 -91171,3006:142:4,62.5,-4.5,0,0,-1.71947 -91172,3006:143:3,63,-4.5,0,0,-1.60018 -91173,3006:143:4,63.5,-4.5,0,0,-1.48672 -91174,3006:144:3,64,-4.5,0,0,-1.34191 -91175,3006:144:4,64.5,-4.5,0,0,-1.15311 -91176,3006:245:3,65,-4.5,0,0,-1.02987 -91177,3006:245:4,65.5,-4.5,0,0,-0.943034 -91178,3006:246:3,66,-4.5,0,0,-0.869702 -91179,3006:246:4,66.5,-4.5,0,0,-0.798818 -91180,3006:247:3,67,-4.5,0,0,-0.735784 -91181,3006:247:4,67.5,-4.5,0,0,-0.698171 -91182,3006:248:3,68,-4.5,0,0,-0.682336 -91183,3006:248:4,68.5,-4.5,0,0,-0.66562 -91184,3006:249:3,69,-4.5,0,0,-0.652104 -91185,3006:249:4,69.5,-4.5,0,0,-0.642894 -91186,3007:140:3,70,-4.5,0,0,-0.635115 -91187,3007:140:4,70.5,-4.5,0,0,-0.640273 -91188,3007:141:3,71,-4.5,0,0,-0.650766 -91189,3007:141:4,71.5,-4.5,0,0,-0.668345 -91190,3007:142:3,72,-4.5,0,0,-0.690938 -91191,3007:142:4,72.5,-4.5,0,0,-0.718965 -91192,3007:143:4,73.5,-4.5,0,0,-0.759297 -91193,3007:144:3,74,-4.5,0,0,-0.824369 -91194,3007:144:4,74.5,-4.5,0,0,-0.869702 -91195,3007:245:3,75,-4.5,0,0,-0.885625 -91196,3007:245:4,75.5,-4.5,0,0,-0.895345 -91197,3007:246:3,76,-4.5,0,0,-0.915262 -91198,3007:246:4,76.5,-4.5,0,0,-0.91868 -91199,3007:247:3,77,-4.5,0,0,-0.885625 -91200,3007:247:4,77.5,-4.5,0,0,-0.857283 -91201,3007:248:3,78,-4.5,0,0,-0.821452 -91202,3007:248:4,78.5,-4.5,0,0,-0.787837 -91203,3007:249:3,79,-4.5,0,0,-0.763942 -91204,3007:249:4,79.5,-4.5,0,0,-0.785105 -91205,3008:140:3,80,-4.5,0,0,-0.830247 -91206,3008:140:4,80.5,-4.5,0,0,-0.898653 -91207,3008:141:3,81,-4.5,0,0,-0.986926 -91208,3008:141:4,81.5,-4.5,0,0,-1.08005 -91209,3008:142:3,82,-4.5,0,0,-1.17252 -91210,3008:142:4,82.5,-4.5,0,0,-1.31208 -91211,3008:143:3,83,-4.5,0,0,-1.52291 -91212,3008:143:4,83.5,-4.5,0,0,-1.90598 -91213,3008:144:3,84,-4.5,0,0,-2.56601 -91214,3008:144:4,84.5,-4.5,0,0,-4.20681 -91215,3008:245:3,85,-4.5,0,0,-8.85178 -91216,3008:245:4,85.5,-4.5,0,0,-209.944 -91217,3008:246:3,86,-4.5,0,0,13.5991 -91218,3008:246:4,86.5,-4.5,0,0,7.27881 -91219,3008:247:3,87,-4.5,0,0,6.17353 -91220,3008:247:4,87.5,-4.5,0,0,6.17353 -91221,3008:248:3,88,-4.5,0,0,6.94361 -91222,3008:248:4,88.5,-4.5,0,0,7.36886 -91223,3008:249:3,89,-4.5,0,0,7.85456 -91224,3008:249:4,89.5,-4.5,0,0,12.3981 -91225,3009:140:3,90,-4.5,0,0,38.6991 -91226,3009:140:4,90.5,-4.5,0,0,-44.6839 -91227,3009:141:3,91,-4.5,0,0,-12.9803 -91228,3009:141:4,91.5,-4.5,0,0,-7.07916 -91229,3009:142:3,92,-4.5,0,0,-4.33818 -91230,3009:142:4,92.5,-4.5,0,0,-3.06051 -91231,3009:143:3,93,-4.5,0,0,-2.48013 -91232,3009:143:4,93.5,-4.5,0,0,-2.00645 -91233,3009:144:3,94,-4.5,0,0,-1.64122 -91234,3009:144:4,94.5,-4.5,0,0,-1.35403 -91235,3009:245:3,95,-4.5,0,0,-1.16268 -91236,3009:245:4,95.5,-4.5,0,0,-1.02582 -91237,3009:246:3,96,-4.5,0,0,-0.95009 -91238,3009:246:4,96.5,-4.5,0,0,-0.929047 -91239,3009:247:3,97,-4.5,0,0,-0.898653 -91240,3009:247:4,97.5,-4.5,0,0,-0.91868 -91241,3009:248:3,98,-4.5,0,0,-0.960878 -91242,3009:248:4,98.5,-4.5,0,0,-1.03395 -91243,3009:249:3,99,-4.5,0,0,-1.11116 -91244,3009:249:4,99.5,-4.5,0,0,-1.28327 -91245,3010:140:3,100,-4.5,0,0,-1.64968 -91246,3010:140:4,100.5,-4.5,0,0,-2.27859 -91247,3010:141:3,101,-4.5,0,0,-2.94442 -91248,3010:141:4,101.5,-4.5,0,0,14.3011 -91249,3010:246:4,106.5,-4.5,0,0,1.42279 -91250,3010:247:3,107,-4.5,0,0,2.21245 -91251,3010:247:4,107.5,-4.5,0,0,1.90161 -91252,3010:248:3,108,-4.5,0,0,1.72602 -91253,3010:248:4,108.5,-4.5,0,0,2.70071 -91254,3010:249:3,109,-4.5,0,0,12.1375 -91255,3010:249:4,109.5,-4.5,0,0,-7.54802 -91256,3011:140:3,110,-4.5,0,0,5.51842 -91257,3011:140:4,110.5,-4.5,0,0,2.13366 -91258,3011:141:3,111,-4.5,0,0,1.99416 -91259,3011:141:4,111.5,-4.5,0,0,1.74329 -91260,3011:142:3,112,-4.5,0,0,1.5687 -91261,3011:143:4,113.5,-4.5,0,0,1.50071 -91262,3011:247:3,117,-4.5,0,0,1.26176 -91263,3011:247:4,117.5,-4.5,0,0,1.33036 -91264,3011:248:3,118,-4.5,0,0,1.24691 -91265,3011:248:4,118.5,-4.5,0,0,-1.39184 -91266,3011:249:3,119,-4.5,0,0,-2.46395 -91267,3012:141:3,121,-4.5,0,0,1.57564 -91268,3012:143:3,123,-4.5,0,0,1.30575 -91269,3012:143:4,123.5,-4.5,0,0,1.29809 -91270,3012:144:3,124,-4.5,0,0,1.31074 -91271,3012:144:4,124.5,-4.5,0,0,1.2894 -91272,3012:245:3,125,-4.5,0,0,1.28225 -91273,3012:245:4,125.5,-4.5,0,0,1.40038 -91274,3012:246:3,126,-4.5,0,0,1.9498 -91275,3012:247:4,127.5,-4.5,0,0,4.28767 -91276,3012:248:3,128,-4.5,0,0,-1.03805 -91277,3013:141:3,131,-4.5,0,0,2.56014 -91278,3013:141:4,131.5,-4.5,0,0,13.9409 -91279,3013:142:3,132,-4.5,0,0,1.75596 -91280,3013:142:4,132.5,-4.5,0,0,1.78761 -91281,3013:245:4,135.5,-4.5,0,0,1.92866 -91282,3014:143:3,143,-4.5,0,0,-0.575199 -91283,3014:143:4,143.5,-4.5,0,0,-0.704061 -91284,3014:144:3,144,-4.5,0,0,-1.00224 -91285,3014:144:4,144.5,-4.5,0,0,-2.27859 -91286,3014:245:3,145,-4.5,0,0,6.78705 -91287,3014:245:4,145.5,-4.5,0,0,7.46134 -91288,3014:246:3,146,-4.5,0,0,7.27881 -91289,3014:246:4,146.5,-4.5,0,0,5.71862 -91290,3014:247:3,147,-4.5,0,0,3.9876 -91291,3014:247:4,147.5,-4.5,0,0,2.94863 -91292,3014:248:3,148,-4.5,0,0,2.27713 -91293,3014:248:4,148.5,-4.5,0,0,2.33514 -91294,3014:249:3,149,-4.5,0,0,2.34123 -91295,3014:249:4,149.5,-4.5,0,0,2.23344 -91296,3015:140:3,150,-4.5,0,0,2.08407 -91297,3015:140:4,150.5,-4.5,0,0,1.8757 -91298,3015:141:3,151,-4.5,0,0,1.73338 -91299,3015:141:4,151.5,-4.5,0,0,1.66253 -91300,3015:142:4,152.5,-4.5,0,0,1.97155 -91301,3015:143:3,153,-4.5,0,0,2.00964 -91302,3015:143:4,153.5,-4.5,0,0,2.23344 -91303,3015:144:3,154,-4.5,0,0,2.34123 -91304,3015:144:4,154.5,-4.5,0,0,2.28834 -91305,3015:245:3,155,-4.5,0,0,2.12911 -91306,3015:245:4,155.5,-4.5,0,0,2.07534 -91307,3015:246:3,156,-4.5,0,0,2.11982 -91308,3015:246:4,156.5,-4.5,0,0,2.16228 -91309,3015:247:3,157,-4.5,0,0,2.23344 -91310,3015:247:4,157.5,-4.5,0,0,2.30572 -91311,3015:248:3,158,-4.5,0,0,2.36581 -91312,3015:248:4,158.5,-4.5,0,0,2.2828 -91313,3015:249:3,159,-4.5,0,0,2.09278 -91314,3015:249:4,159.5,-4.5,0,0,1.99032 -91315,3016:140:3,160,-4.5,0,0,1.96058 -91316,3016:140:4,160.5,-4.5,0,0,1.9865 -91317,3016:141:3,161,-4.5,0,0,2.04586 -91318,3016:141:4,161.5,-4.5,0,0,2.05003 -91319,3016:142:3,162,-4.5,0,0,1.9498 -91320,3016:142:4,162.5,-4.5,0,0,1.90831 -91321,3016:143:3,163,-4.5,0,0,1.89179 -91322,3016:143:4,163.5,-4.5,0,0,1.8789 -91323,3016:144:3,164,-4.5,0,0,1.90495 -91324,3016:144:4,164.5,-4.5,0,0,1.92184 -91325,3016:245:3,165,-4.5,0,0,1.91159 -91326,3016:245:4,165.5,-4.5,0,0,1.92518 -91327,3016:246:3,166,-4.5,0,0,1.9865 -91328,3016:246:4,166.5,-4.5,0,0,2.05833 -91329,3016:247:3,167,-4.5,0,0,2.11522 -91330,3016:247:4,167.5,-4.5,0,0,2.1479 -91331,3016:248:3,168,-4.5,0,0,2.13366 -91332,3016:248:4,168.5,-4.5,0,0,2.12445 -91333,3016:249:3,169,-4.5,0,0,2.23865 -91334,3016:249:4,169.5,-4.5,0,0,2.44421 -91335,3017:140:3,170,-4.5,0,0,2.64027 -91336,3017:140:4,170.5,-4.5,0,0,2.8029 -91337,3017:141:3,171,-4.5,0,0,3.00549 -91338,3017:141:4,171.5,-4.5,0,0,3.04081 -91339,3017:142:3,172,-4.5,0,0,3.04081 -91340,3017:142:4,172.5,-4.5,0,0,3.07755 -91341,3017:143:3,173,-4.5,0,0,2.59952 -91342,3017:143:4,173.5,-4.5,0,0,2.31733 -91343,3017:144:3,174,-4.5,0,0,2.29989 -91344,3017:144:4,174.5,-4.5,0,0,2.40415 -91345,3017:245:3,175,-4.5,0,0,2.49312 -91346,3017:245:4,175.5,-4.5,0,0,2.59147 -91347,3017:246:3,176,-4.5,0,0,2.63214 -91348,3017:246:4,176.5,-4.5,0,0,2.56014 -91349,3017:247:3,177,-4.5,0,0,2.46483 -91350,3017:247:4,177.5,-4.5,0,0,2.2659 -91351,3017:248:3,178,-4.5,0,0,2.07534 -91352,3017:248:4,178.5,-4.5,0,0,1.93908 -91353,3017:249:3,179,-4.5,0,0,1.82413 -91354,3017:249:4,179.5,-4.5,0,0,1.7663 -91355,3018:140:3,180,-4.5,0,0,1.7663 -91356,5018:140:1,-180,-4,0,0,1.89498 -91357,5017:249:2,-179.5,-4,0,0,1.8789 -91358,5017:249:1,-179,-4,0,0,1.88526 -91359,5017:248:2,-178.5,-4,0,0,1.89498 -91360,5017:248:1,-178,-4,0,0,1.89828 -91361,5017:247:2,-177.5,-4,0,0,1.91498 -91362,5017:247:1,-177,-4,0,0,1.93215 -91363,5017:246:2,-176.5,-4,0,0,1.92184 -91364,5017:246:1,-176,-4,0,0,1.8789 -91365,5017:245:2,-175.5,-4,0,0,1.86004 -91366,5017:245:1,-175,-4,0,0,1.79036 -91367,5017:144:2,-174.5,-4,0,0,1.75847 -91368,5017:144:1,-174,-4,0,0,1.73578 -91369,5017:143:2,-173.5,-4,0,0,1.73338 -91370,5017:143:1,-173,-4,0,0,1.78488 -91371,5017:142:2,-172.5,-4,0,0,1.91498 -91372,5017:142:1,-172,-4,0,0,2.02146 -91373,5017:141:2,-171.5,-4,0,0,2.13838 -91374,5017:141:1,-171,-4,0,0,2.42385 -91375,5017:140:2,-170.5,-4,0,0,2.97119 -91376,5017:140:1,-170,-4,0,0,3.75233 -91377,5016:249:2,-169.5,-4,0,0,4.71237 -91378,5016:249:1,-169,-4,0,0,5.9932 -91379,5016:248:2,-168.5,-4,0,0,8.534 -91380,5016:248:1,-168,-4,0,0,16.4219 -91381,5016:247:2,-167.5,-4,0,0,-1157.87 -91382,5016:247:1,-167,-4,0,0,-18.3703 -91383,5016:246:2,-166.5,-4,0,0,-8.07899 -91384,5016:246:1,-166,-4,0,0,-5.57618 -91385,5016:245:2,-165.5,-4,0,0,-4.24979 -91386,5016:245:1,-165,-4,0,0,-3.43147 -91387,5016:144:2,-164.5,-4,0,0,-2.75397 -91388,5016:144:1,-164,-4,0,0,-2.14197 -91389,5016:143:2,-163.5,-4,0,0,-1.64968 -91390,5016:143:1,-163,-4,0,0,-1.34191 -91391,5016:142:2,-162.5,-4,0,0,-1.1202 -91392,5016:142:1,-162,-4,0,0,-0.953703 -91393,5016:141:2,-161.5,-4,0,0,-0.824369 -91394,5016:141:1,-161,-4,0,0,-0.735784 -91395,5016:140:2,-160.5,-4,0,0,-0.688039 -91396,5016:140:1,-160,-4,0,0,-0.650766 -91397,5015:249:2,-159.5,-4,0,0,-0.610169 -91398,5015:249:1,-159,-4,0,0,-0.571831 -91399,5015:248:2,-158.5,-4,0,0,-0.533699 -91400,5015:248:1,-158,-4,0,0,-0.497061 -91401,5015:247:2,-157.5,-4,0,0,-0.461174 -91402,5015:247:1,-157,-4,0,0,-0.427123 -91403,5015:246:2,-156.5,-4,0,0,-0.394894 -91404,5015:246:1,-156,-4,0,0,-0.363899 -91405,5015:245:2,-155.5,-4,0,0,-0.342066 -91406,5015:245:1,-155,-4,0,0,-0.333698 -91407,5015:144:2,-154.5,-4,0,0,-0.314095 -91408,5015:144:1,-154,-4,0,0,-0.290298 -91409,5015:143:2,-153.5,-4,0,0,-0.272482 -91410,5015:143:1,-153,-4,0,0,-0.257169 -91411,5015:142:2,-152.5,-4,0,0,-0.245146 -91412,5015:142:1,-152,-4,0,0,-0.235922 -91413,5015:141:2,-151.5,-4,0,0,-0.222767 -91414,5015:141:1,-151,-4,0,0,-0.207644 -91415,5015:140:2,-150.5,-4,0,0,-0.201668 -91416,5015:140:1,-150,-4,0,0,-0.198404 -91417,5014:249:2,-149.5,-4,0,0,-0.195968 -91418,5014:249:1,-149,-4,0,0,-0.194173 -91419,5014:248:2,-148.5,-4,0,0,-0.192719 -91420,5014:248:1,-148,-4,0,0,-0.191692 -91421,5014:247:2,-147.5,-4,0,0,-0.190591 -91422,5014:247:1,-147,-4,0,0,-0.189258 -91423,5014:246:2,-146.5,-4,0,0,-0.1877 -91424,5014:246:1,-146,-4,0,0,-0.186235 -91425,5014:245:2,-145.5,-4,0,0,-0.184938 -91426,5014:245:1,-145,-4,0,0,-0.183753 -91427,5014:144:2,-144.5,-4,0,0,-0.182603 -91428,5014:144:1,-144,-4,0,0,-0.181386 -91429,5014:143:2,-143.5,-4,0,0,-0.180203 -91430,5014:143:1,-143,-4,0,0,-0.179128 -91431,5014:142:2,-142.5,-4,0,0,-0.178061 -91432,5014:142:1,-142,-4,0,0,-0.176951 -91433,5014:141:2,-141.5,-4,0,0,-0.175704 -91434,5014:141:1,-141,-4,0,0,-0.174443 -91435,5014:140:2,-140.5,-4,0,0,-0.173216 -91436,5014:140:1,-140,-4,0,0,-0.172118 -91437,5013:249:2,-139.5,-4,0,0,-0.171145 -91438,5013:249:1,-139,-4,0,0,-0.170109 -91439,5013:248:2,-138.5,-4,0,0,-0.168963 -91440,5013:248:1,-138,-4,0,0,-0.167757 -91441,5013:247:2,-137.5,-4,0,0,-0.166561 -91442,5013:247:1,-137,-4,0,0,-0.165465 -91443,5013:246:2,-136.5,-4,0,0,-0.164378 -91444,5013:246:1,-136,-4,0,0,-0.163187 -91445,5013:245:2,-135.5,-4,0,0,-0.162072 -91446,5013:245:1,-135,-4,0,0,-0.161186 -91447,5013:144:2,-134.5,-4,0,0,-0.16057 -91448,5013:144:1,-134,-4,0,0,-0.160152 -91449,5013:143:2,-133.5,-4,0,0,-0.159759 -91450,5013:143:1,-133,-4,0,0,-0.159344 -91451,5013:142:2,-132.5,-4,0,0,-0.158822 -91452,5013:142:1,-132,-4,0,0,-0.158108 -91453,5013:141:2,-131.5,-4,0,0,-0.15729 -91454,5013:141:1,-131,-4,0,0,-0.156455 -91455,5013:140:2,-130.5,-4,0,0,-0.155498 -91456,5013:140:1,-130,-4,0,0,-0.154527 -91457,5012:249:2,-129.5,-4,0,0,-0.153626 -91458,5012:249:1,-129,-4,0,0,-0.152772 -91459,5012:248:2,-128.5,-4,0,0,-0.152109 -91460,5012:248:1,-128,-4,0,0,-0.15149 -91461,5012:247:2,-127.5,-4,0,0,-0.150875 -91462,5012:247:1,-127,-4,0,0,-0.150425 -91463,5012:246:2,-126.5,-4,0,0,-0.150038 -91464,5012:246:1,-126,-4,0,0,-0.14951 -91465,5012:245:2,-125.5,-4,0,0,-0.148863 -91466,5012:245:1,-125,-4,0,0,-0.148019 -91467,5012:144:2,-124.5,-4,0,0,-0.14702 -91468,5012:144:1,-124,-4,0,0,-0.145951 -91469,5012:143:2,-123.5,-4,0,0,-0.144871 -91470,5012:143:1,-123,-4,0,0,-0.143819 -91471,5012:142:2,-122.5,-4,0,0,-0.142872 -91472,5012:142:1,-122,-4,0,0,-0.142105 -91473,5012:141:2,-121.5,-4,0,0,-0.141456 -91474,5012:141:1,-121,-4,0,0,-0.140867 -91475,5012:140:2,-120.5,-4,0,0,-0.140375 -91476,5012:140:1,-120,-4,0,0,-0.140073 -91477,5011:249:2,-119.5,-4,0,0,-0.139678 -91478,5011:249:1,-119,-4,0,0,-0.13902 -91479,5011:248:2,-118.5,-4,0,0,-0.138209 -91480,5011:248:1,-118,-4,0,0,-0.137538 -91481,5011:247:2,-117.5,-4,0,0,-0.13702 -91482,5011:247:1,-117,-4,0,0,-0.13655 -91483,5011:246:2,-116.5,-4,0,0,-0.13617 -91484,5011:246:1,-116,-4,0,0,-0.136081 -91485,5011:245:2,-115.5,-4,0,0,-0.13605 -91486,5011:245:1,-115,-4,0,0,-0.13605 -91487,5011:144:2,-114.5,-4,0,0,-0.13605 -91488,5011:144:1,-114,-4,0,0,-0.13605 -91489,5011:143:2,-113.5,-4,0,0,-0.13605 -91490,5011:143:1,-113,-4,0,0,-0.13605 -91491,5011:142:2,-112.5,-4,0,0,-0.13605 -91492,5011:142:1,-112,-4,0,0,-0.13605 -91493,5011:141:2,-111.5,-4,0,0,-0.13605 -91494,5011:141:1,-111,-4,0,0,-0.13605 -91495,5011:140:2,-110.5,-4,0,0,-0.13605 -91496,5011:140:1,-110,-4,0,0,-0.13605 -91497,5010:249:2,-109.5,-4,0,0,-0.13605 -91498,5010:249:1,-109,-4,0,0,-0.13605 -91499,5010:248:2,-108.5,-4,0,0,-0.13605 -91500,5010:248:1,-108,-4,0,0,-0.13605 -91501,5010:247:2,-107.5,-4,0,0,-0.13605 -91502,5010:247:1,-107,-4,0,0,-0.13605 -91503,5010:246:2,-106.5,-4,0,0,-0.13605 -91504,5010:246:1,-106,-4,0,0,-0.13605 -91505,5010:245:2,-105.5,-4,0,0,-0.13605 -91506,5010:245:1,-105,-4,0,0,-0.13605 -91507,5010:144:2,-104.5,-4,0,0,-0.13605 -91508,5010:144:1,-104,-4,0,0,-0.13605 -91509,5010:143:2,-103.5,-4,0,0,-0.13605 -91510,5010:143:1,-103,-4,0,0,-0.13605 -91511,5010:142:2,-102.5,-4,0,0,-0.13605 -91512,5010:142:1,-102,-4,0,0,-0.13605 -91513,5010:141:2,-101.5,-4,0,0,-0.13605 -91514,5010:141:1,-101,-4,0,0,-0.13605 -91515,5010:140:2,-100.5,-4,0,0,-0.13605 -91516,5010:140:1,-100,-4,0,0,-0.13605 -91517,5009:249:2,-99.5,-4,0,0,-0.13605 -91518,5009:249:1,-99,-4,0,0,-0.13605 -91519,5009:248:2,-98.5,-4,0,0,-0.13605 -91520,5009:248:1,-98,-4,0,0,-0.13605 -91521,5009:247:2,-97.5,-4,0,0,-0.13605 -91522,5009:247:1,-97,-4,0,0,-0.13605 -91523,5009:246:2,-96.5,-4,0,0,-0.13605 -91524,5009:246:1,-96,-4,0,0,-0.13605 -91525,5009:245:2,-95.5,-4,0,0,-0.13605 -91526,5009:245:1,-95,-4,0,0,-0.13605 -91527,5009:144:2,-94.5,-4,0,0,-0.13605 -91528,5009:144:1,-94,-4,0,0,-0.13605 -91529,5009:143:2,-93.5,-4,0,0,-0.13605 -91530,5009:143:1,-93,-4,0,0,-0.13605 -91531,5009:142:2,-92.5,-4,0,0,-0.13605 -91532,5009:142:1,-92,-4,0,0,-0.13605 -91533,5009:141:2,-91.5,-4,0,0,-0.13605 -91534,5009:141:1,-91,-4,0,0,-0.13605 -91535,5009:140:2,-90.5,-4,0,0,-0.13605 -91536,5009:140:1,-90,-4,0,0,-0.13605 -91537,5008:249:2,-89.5,-4,0,0,-0.13605 -91538,5008:249:1,-89,-4,0,0,-0.13605 -91539,5008:248:2,-88.5,-4,0,0,-0.13605 -91540,5008:248:1,-88,-4,0,0,-0.13605 -91541,5008:247:2,-87.5,-4,0,0,-0.13605 -91542,5008:247:1,-87,-4,0,0,-0.13605 -91543,5008:246:2,-86.5,-4,0,0,-0.13605 -91544,5008:246:1,-86,-4,0,0,-0.13605 -91545,5008:245:2,-85.5,-4,0,0,-0.13605 -91546,5008:245:1,-85,-4,0,0,-0.13605 -91547,5008:144:2,-84.5,-4,0,0,-0.13605 -91548,5008:144:1,-84,-4,0,0,-0.13605 -91549,5008:143:2,-83.5,-4,0,0,-0.13605 -91550,5008:143:1,-83,-4,0,0,-0.13605 -91551,5008:142:2,-82.5,-4,0,0,-0.13605 -91552,5008:142:1,-82,-4,0,0,-0.13605 -91553,5008:141:2,-81.5,-4,0,0,-0.13605 -91554,5008:141:1,-81,-4,0,0,-0.13605 -91555,5004:144:2,-44.5,-4,0,0,-0.197026 -91556,5004:143:1,-43,-4,0,0,-0.194217 -91557,5004:142:2,-42.5,-4,0,0,-0.188306 -91558,5004:142:1,-42,-4,0,0,-0.182859 -91559,5004:141:2,-41.5,-4,0,0,-0.181234 -91560,5004:141:1,-41,-4,0,0,-0.18063 -91561,5004:140:2,-40.5,-4,0,0,-0.176951 -91562,5004:140:1,-40,-4,0,0,-0.17188 -91563,5003:249:2,-39.5,-4,0,0,-0.170768 -91564,5003:249:1,-39,-4,0,0,-0.173048 -91565,5003:248:2,-38.5,-4,0,0,-0.174298 -91566,5003:248:1,-38,-4,0,0,-0.173264 -91567,5003:247:2,-37.5,-4,0,0,-0.172809 -91568,5003:247:1,-37,-4,0,0,-0.172355 -91569,5003:246:2,-36.5,-4,0,0,-0.172118 -91570,5003:246:1,-36,-4,0,0,-0.171928 -91571,5003:245:2,-35.5,-4,0,0,-0.171619 -91572,5003:245:1,-35,-4,0,0,-0.171193 -91573,5003:144:2,-34.5,-4,0,0,-0.170579 -91574,5003:144:1,-34,-4,0,0,-0.169992 -91575,5003:143:2,-33.5,-4,0,0,-0.1695 -91576,5003:143:1,-33,-4,0,0,-0.16894 -91577,5003:142:2,-32.5,-4,0,0,-0.168243 -91578,5003:142:1,-32,-4,0,0,-0.167757 -91579,5003:141:2,-31.5,-4,0,0,-0.168035 -91580,5003:141:1,-31,-4,0,0,-0.168058 -91581,5003:140:2,-30.5,-4,0,0,-0.167757 -91582,5003:140:1,-30,-4,0,0,-0.167365 -91583,5002:249:2,-29.5,-4,0,0,-0.166997 -91584,5002:249:1,-29,-4,0,0,-0.166561 -91585,5002:248:2,-28.5,-4,0,0,-0.166081 -91586,5002:248:1,-28,-4,0,0,-0.165738 -91587,5002:247:2,-27.5,-4,0,0,-0.165488 -91588,5002:247:1,-27,-4,0,0,-0.165261 -91589,5002:246:2,-26.5,-4,0,0,-0.165056 -91590,5002:246:1,-26,-4,0,0,-0.164852 -91591,5002:245:2,-25.5,-4,0,0,-0.164604 -91592,5002:245:1,-25,-4,0,0,-0.164423 -91593,5002:144:2,-24.5,-4,0,0,-0.164153 -91594,5002:144:1,-24,-4,0,0,-0.163927 -91595,5002:143:2,-23.5,-4,0,0,-0.163725 -91596,5002:143:1,-23,-4,0,0,-0.16359 -91597,5002:142:2,-22.5,-4,0,0,-0.163456 -91598,5002:142:1,-22,-4,0,0,-0.163343 -91599,5002:141:2,-21.5,-4,0,0,-0.163231 -91600,5002:141:1,-21,-4,0,0,-0.163119 -91601,5002:140:2,-20.5,-4,0,0,-0.163097 -91602,5002:140:1,-20,-4,0,0,-0.163097 -91603,5001:249:2,-19.5,-4,0,0,-0.163142 -91604,5001:249:1,-19,-4,0,0,-0.163231 -91605,5001:248:2,-18.5,-4,0,0,-0.163343 -91606,5001:248:1,-18,-4,0,0,-0.163477 -91607,5001:247:2,-17.5,-4,0,0,-0.163747 -91608,5001:247:1,-17,-4,0,0,-0.163905 -91609,5001:246:2,-16.5,-4,0,0,-0.163837 -91610,5001:246:1,-16,-4,0,0,-0.163927 -91611,5001:245:2,-15.5,-4,0,0,-0.164197 -91612,5001:245:1,-15,-4,0,0,-0.164649 -91613,5001:144:2,-14.5,-4,0,0,-0.165397 -91614,5001:144:1,-14,-4,0,0,-0.166012 -91615,5001:143:2,-13.5,-4,0,0,-0.166721 -91616,5001:143:1,-13,-4,0,0,-0.167757 -91617,5001:142:2,-12.5,-4,0,0,-0.168916 -91618,5001:142:1,-12,-4,0,0,-0.169992 -91619,5001:141:2,-11.5,-4,0,0,-0.171121 -91620,5001:141:1,-11,-4,0,0,-0.172332 -91621,5001:140:2,-10.5,-4,0,0,-0.173456 -91622,5001:140:1,-10,-4,0,0,-0.174322 -91623,5000:249:2,-9.5,-4,0,0,-0.174878 -91624,5000:249:1,-9,-4,0,0,-0.17568 -91625,5000:248:2,-8.5,-4,0,0,-0.176559 -91626,5000:248:1,-8,-4,0,0,-0.177321 -91627,5000:247:2,-7.5,-4,0,0,-0.177912 -91628,5000:247:1,-7,-4,0,0,-0.178333 -91629,5000:246:2,-6.5,-4,0,0,-0.17878 -91630,5000:246:1,-6,-4,0,0,-0.179228 -91631,5000:245:2,-5.5,-4,0,0,-0.179577 -91632,5000:245:1,-5,-4,0,0,-0.179877 -91633,5000:144:2,-4.5,-4,0,0,-0.180103 -91634,5000:144:1,-4,-4,0,0,-0.180403 -91635,5000:143:2,-3.5,-4,0,0,-0.180882 -91636,5000:143:1,-3,-4,0,0,-0.181487 -91637,5000:142:2,-2.5,-4,0,0,-0.18212 -91638,5000:142:1,-2,-4,0,0,-0.182782 -91639,5000:141:2,-1.5,-4,0,0,-0.183574 -91640,5000:141:1,-1,-4,0,0,-0.184473 -91641,5000:140:2,-0.5,-4,0,0,-0.185559 -91642,3000:140:2,0,-4,0,0,-0.186131 -91643,3000:140:2,0.5,-4,0,0,-0.186287 -91644,3000:141:1,1,-4,0,0,-0.186313 -91645,3000:141:2,1.5,-4,0,0,-0.186027 -91646,3000:142:1,2,-4,0,0,-0.18587 -91647,3000:142:2,2.5,-4,0,0,-0.185429 -91648,3000:143:1,3,-4,0,0,-0.184809 -91649,3000:143:2,3.5,-4,0,0,-0.184139 -91650,3000:144:1,4,-4,0,0,-0.183088 -91651,3000:144:2,4.5,-4,0,0,-0.181867 -91652,3000:245:1,5,-4,0,0,-0.180579 -91653,3000:245:2,5.5,-4,0,0,-0.179203 -91654,3000:246:1,6,-4,0,0,-0.177394 -91655,3000:246:2,6.5,-4,0,0,-0.174806 -91656,3000:247:1,7,-4,0,0,-0.172141 -91657,3000:247:2,7.5,-4,0,0,-0.169594 -91658,3000:248:1,8,-4,0,0,-0.166309 -91659,3000:248:2,8.5,-4,0,0,-0.160987 -91660,3000:249:1,9,-4,0,0,-0.153898 -91661,3000:249:2,9.5,-4,0,0,-0.151552 -91662,3004:140:2,40.5,-4,0,0,-0.1688 -91663,3004:141:1,41,-4,0,0,-0.181209 -91664,3004:141:2,41.5,-4,0,0,-3.64913 -91665,3004:142:1,42,-4,0,0,2.47187 -91666,3004:142:2,42.5,-4,0,0,2.88378 -91667,3004:143:1,43,-4,0,0,-5.24151 -91668,3004:143:2,43.5,-4,0,0,-0.678113 -91669,3004:144:1,44,-4,0,0,-0.514929 -91670,3004:144:2,44.5,-4,0,0,-0.661499 -91671,3004:245:1,45,-4,0,0,-1.37263 -91672,3004:245:2,45.5,-4,0,0,-2.62035 -91673,3004:246:1,46,-4,0,0,17.4548 -91674,3004:246:2,46.5,-4,0,0,3.44562 -91675,3004:247:1,47,-4,0,0,2.05003 -91676,3004:247:2,47.5,-4,0,0,1.71412 -91677,3004:248:1,48,-4,0,0,1.58988 -91678,3004:248:2,48.5,-4,0,0,1.59904 -91679,3004:249:1,49,-4,0,0,1.75847 -91680,3004:249:2,49.5,-4,0,0,1.94263 -91681,3005:140:1,50,-4,0,0,2.06685 -91682,3005:140:2,50.5,-4,0,0,2.11522 -91683,3005:141:1,51,-4,0,0,2.21245 -91684,3005:141:2,51.5,-4,0,0,2.36581 -91685,3005:142:1,52,-4,0,0,2.60739 -91686,3005:142:2,52.5,-4,0,0,3.221 -91687,3005:143:1,53,-4,0,0,5.71862 -91688,3005:143:2,53.5,-4,0,0,-38.0195 -91689,3005:144:1,54,-4,0,0,-3.8199 -91690,3005:144:2,54.5,-4,0,0,-2.05393 -91691,3005:245:1,55,-4,0,0,-1.6245 -91692,3005:245:2,55.5,-4,0,0,-1.41127 -91693,3005:246:1,56,-4,0,0,-1.16268 -91694,3005:246:2,56.5,-4,0,0,-1.00224 -91695,3005:247:1,57,-4,0,0,-0.895345 -91696,3005:247:2,57.5,-4,0,0,-0.851124 -91697,3005:248:1,58,-4,0,0,-0.860292 -91698,3005:248:2,58.5,-4,0,0,-0.905223 -91699,3005:249:1,59,-4,0,0,-1.02987 -91700,3005:249:2,59.5,-4,0,0,-1.17749 -91701,3006:140:1,60,-4,0,0,-1.26652 -91702,3006:140:2,60.5,-4,0,0,-1.27759 -91703,3006:141:1,61,-4,0,0,-1.18234 -91704,3006:141:2,61.5,-4,0,0,-1.07583 -91705,3006:142:1,62,-4,0,0,-0.968247 -91706,3006:142:2,62.5,-4,0,0,-0.882387 -91707,3006:143:1,63,-4,0,0,-0.8273 -91708,3006:143:2,63.5,-4,0,0,-0.787837 -91709,3006:144:1,64,-4,0,0,-0.787837 -91710,3006:144:2,64.5,-4,0,0,-0.818638 -91711,3006:245:1,65,-4,0,0,-0.845121 -91712,3006:245:2,65.5,-4,0,0,-0.839089 -91713,3006:246:1,66,-4,0,0,-0.798818 -91714,3006:246:2,66.5,-4,0,0,-0.750642 -91715,3006:247:1,67,-4,0,0,-0.725999 -91716,3006:247:2,67.5,-4,0,0,-0.708665 -91717,3006:248:1,68,-4,0,0,-0.695274 -91718,3006:248:2,68.5,-4,0,0,-0.678113 -91719,3006:249:1,69,-4,0,0,-0.66562 -91720,3006:249:2,69.5,-4,0,0,-0.661499 -91721,3007:140:1,70,-4,0,0,-0.661499 -91722,3007:140:2,70.5,-4,0,0,-0.669734 -91723,3007:141:1,71,-4,0,0,-0.686596 -91724,3007:141:2,71.5,-4,0,0,-0.725999 -91725,3007:142:1,72,-4,0,0,-0.779764 -91726,3007:142:2,72.5,-4,0,0,-0.8273 -91727,3007:143:2,73.5,-4,0,0,-0.869702 -91728,3007:144:1,74,-4,0,0,-0.892054 -91729,3007:144:2,74.5,-4,0,0,-0.905223 -91730,3007:245:1,75,-4,0,0,-0.908585 -91731,3007:245:2,75.5,-4,0,0,-0.898653 -91732,3007:246:1,76,-4,0,0,-0.898653 -91733,3007:246:2,76.5,-4,0,0,-0.892054 -91734,3007:247:1,77,-4,0,0,-0.875962 -91735,3007:247:2,77.5,-4,0,0,-0.833119 -91736,3007:248:1,78,-4,0,0,-0.78247 -91737,3007:248:2,78.5,-4,0,0,-0.746335 -91738,3007:249:1,79,-4,0,0,-0.724249 -91739,3007:249:2,79.5,-4,0,0,-0.73375 -91740,3008:140:1,80,-4,0,0,-0.759297 -91741,3008:140:2,80.5,-4,0,0,-0.78247 -91742,3008:141:1,81,-4,0,0,-0.793342 -91743,3008:141:2,81.5,-4,0,0,-0.851124 -91744,3008:142:1,82,-4,0,0,-0.901879 -91745,3008:142:2,82.5,-4,0,0,-1.00615 -91746,3008:143:1,83,-4,0,0,-1.23387 -91747,3008:143:2,83.5,-4,0,0,-1.57645 -91748,3008:144:1,84,-4,0,0,-2.03014 -91749,3008:144:2,84.5,-4,0,0,-2.69538 -91750,3008:245:1,85,-4,0,0,-3.71515 -91751,3008:245:2,85.5,-4,0,0,-5.71996 -91752,3008:246:1,86,-4,0,0,-9.98073 -91753,3008:246:2,86.5,-4,0,0,-24.8111 -91754,3008:247:1,87,-4,0,0,38.6991 -91755,3008:247:2,87.5,-4,0,0,16.9301 -91756,3008:248:1,88,-4,0,0,11.1801 -91757,3008:248:2,88.5,-4,0,0,8.41459 -91758,3008:249:1,89,-4,0,0,7.75136 -91759,3008:249:2,89.5,-4,0,0,13.2838 -91760,3009:140:1,90,-4,0,0,69.1201 -91761,3009:140:2,90.5,-4,0,0,-22.5753 -91762,3009:141:1,91,-4,0,0,-6.469 -91763,3009:141:2,91.5,-4,0,0,-3.34562 -91764,3009:142:1,92,-4,0,0,-2.26457 -91765,3009:142:2,92.5,-4,0,0,-1.88497 -91766,3009:143:1,93,-4,0,0,-1.57645 -91767,3009:143:2,93.5,-4,0,0,-1.32978 -91768,3009:144:1,94,-4,0,0,-1.15795 -91769,3009:144:2,94.5,-4,0,0,-1.00224 -91770,3009:245:1,95,-4,0,0,-0.915262 -91771,3009:245:2,95.5,-4,0,0,-0.830247 -91772,3009:246:1,96,-4,0,0,-0.824369 -91773,3009:246:2,96.5,-4,0,0,-0.857283 -91774,3009:247:1,97,-4,0,0,-0.885625 -91775,3009:247:2,97.5,-4,0,0,-0.953703 -91776,3009:248:1,98,-4,0,0,-1.05037 -91777,3009:248:2,98.5,-4,0,0,-1.1483 -91778,3009:249:1,99,-4,0,0,-1.4584 -91779,3009:249:2,99.5,-4,0,0,-2.62035 -91780,3010:140:1,100,-4,0,0,-8.07899 -91781,3010:140:2,100.5,-4,0,0,-10.9011 -91782,3010:141:1,101,-4,0,0,31.7976 -91783,3010:247:1,107,-4,0,0,2.85284 -91784,3010:247:2,107.5,-4,0,0,3.54688 -91785,3010:248:1,108,-4,0,0,2.20209 -91786,3010:249:1,109,-4,0,0,-14.5436 -91787,3010:249:2,109.5,-4,0,0,-4.83019 -91788,3011:140:1,110,-4,0,0,2.19202 -91789,3011:247:1,117,-4,0,0,1.30968 -91790,3011:247:2,117.5,-4,0,0,1.51249 -91791,3011:248:1,118,-4,0,0,3.00549 -91792,3011:248:2,118.5,-4,0,0,-2.12896 -91793,3011:249:1,119,-4,0,0,-3.52225 -91794,3012:142:2,122.5,-4,0,0,1.37048 -91795,3012:143:1,123,-4,0,0,1.29483 -91796,3012:143:2,123.5,-4,0,0,1.27739 -91797,3012:144:1,124,-4,0,0,1.27002 -91798,3012:144:2,124.5,-4,0,0,1.25515 -91799,3012:245:1,125,-4,0,0,1.2538 -91800,3012:245:2,125.5,-4,0,0,1.24151 -91801,3012:246:1,126,-4,0,0,1.29581 -91802,3012:246:2,126.5,-4,0,0,2.67453 -91803,3012:247:1,127,-4,0,0,-3.31756 -91804,3012:247:2,127.5,-4,0,0,-6.0316 -91805,3012:248:1,128,-4,0,0,-3.92893 -91806,3012:248:2,128.5,-4,0,0,-5.64612 -91807,3012:249:1,129,-4,0,0,-0.975586 -91808,3012:249:2,129.5,-4,0,0,-0.888782 -91809,3013:140:1,130,-4,0,0,-1.33582 -91810,3013:140:2,130.5,-4,0,0,-1.32978 -91811,3013:141:1,131,-4,0,0,-2.35276 -91812,3013:141:2,131.5,-4,0,0,5.16119 -91813,3013:142:1,132,-4,0,0,1.35615 -91814,3013:142:2,132.5,-4,0,0,1.28846 -91815,3013:143:1,133,-4,0,0,1.17095 -91816,3013:245:1,135,-4,0,0,7.02487 -91817,3013:245:2,135.5,-4,0,0,2.42385 -91818,3013:246:1,136,-4,0,0,1.81831 -91819,3013:246:2,136.5,-4,0,0,1.84176 -91820,3014:141:1,141,-4,0,0,-0.61749 -91821,3014:141:2,141.5,-4,0,0,-0.710385 -91822,3014:142:1,142,-4,0,0,-1.54559 -91823,3014:142:2,142.5,-4,0,0,-2.49701 -91824,3014:143:1,143,-4,0,0,-4.29357 -91825,3014:143:2,143.5,-4,0,0,-5.64612 -91826,3014:144:1,144,-4,0,0,-38.0195 -91827,3014:144:2,144.5,-4,0,0,23.4911 -91828,3014:245:1,145,-4,0,0,6.78705 -91829,3014:245:2,145.5,-4,0,0,4.51878 -91830,3014:246:1,146,-4,0,0,3.49563 -91831,3014:246:2,146.5,-4,0,0,2.98228 -91832,3014:247:1,147,-4,0,0,2.64873 -91833,3014:247:2,147.5,-4,0,0,2.50749 -91834,3014:248:1,148,-4,0,0,2.63214 -91835,3014:248:2,148.5,-4,0,0,2.5223 -91836,3014:249:1,149,-4,0,0,2.21753 -91837,3014:249:2,149.5,-4,0,0,1.9865 -91838,3015:140:1,150,-4,0,0,1.86629 -91839,3015:141:1,151,-4,0,0,2.10173 -91840,3015:141:2,151.5,-4,0,0,2.03759 -91841,3015:142:1,152,-4,0,0,2.06685 -91842,3015:142:2,152.5,-4,0,0,2.07115 -91843,3015:143:1,153,-4,0,0,2.17693 -91844,3015:143:2,153.5,-4,0,0,2.31142 -91845,3015:144:1,154,-4,0,0,2.32928 -91846,3015:144:2,154.5,-4,0,0,2.32329 -91847,3015:245:1,155,-4,0,0,2.31142 -91848,3015:245:2,155.5,-4,0,0,2.32928 -91849,3015:246:1,156,-4,0,0,2.16718 -91850,3015:246:2,156.5,-4,0,0,2.10624 -91851,3015:247:1,157,-4,0,0,2.08407 -91852,3015:247:2,157.5,-4,0,0,2.18193 -91853,3015:248:1,158,-4,0,0,2.17196 -91854,3015:248:2,158.5,-4,0,0,2.04586 -91855,3015:249:1,159,-4,0,0,1.97904 -91856,3015:249:2,159.5,-4,0,0,1.92866 -91857,3016:140:1,160,-4,0,0,1.90495 -91858,3016:140:2,160.5,-4,0,0,1.94263 -91859,3016:141:1,161,-4,0,0,1.96425 -91860,3016:141:2,161.5,-4,0,0,1.9533 -91861,3016:142:1,162,-4,0,0,1.89828 -91862,3016:142:2,162.5,-4,0,0,1.87252 -91863,3016:143:1,163,-4,0,0,1.89179 -91864,3016:143:2,163.5,-4,0,0,1.86629 -91865,3016:144:1,164,-4,0,0,1.84176 -91866,3016:144:2,164.5,-4,0,0,1.85385 -91867,3016:245:1,165,-4,0,0,1.86935 -91868,3016:245:2,165.5,-4,0,0,1.8757 -91869,3016:246:1,166,-4,0,0,1.88526 -91870,3016:246:2,166.5,-4,0,0,1.93566 -91871,3016:247:1,167,-4,0,0,2.00571 -91872,3016:247:2,167.5,-4,0,0,2.09278 -91873,3016:248:1,168,-4,0,0,2.23344 -91874,3016:248:2,168.5,-4,0,0,2.32329 -91875,3016:249:1,169,-4,0,0,2.35352 -91876,3016:249:2,169.5,-4,0,0,2.46483 -91877,3017:140:1,170,-4,0,0,2.64873 -91878,3017:140:2,170.5,-4,0,0,2.89439 -91879,3017:141:1,171,-4,0,0,3.20716 -91880,3017:141:2,171.5,-4,0,0,3.29199 -91881,3017:142:1,172,-4,0,0,3.51269 -91882,3017:142:2,172.5,-4,0,0,3.58243 -91883,3017:143:1,173,-4,0,0,3.58243 -91884,3017:143:2,173.5,-4,0,0,3.46209 -91885,3017:144:1,174,-4,0,0,2.81277 -91886,3017:144:2,174.5,-4,0,0,2.69182 -91887,3017:245:1,175,-4,0,0,2.77411 -91888,3017:245:2,175.5,-4,0,0,2.8029 -91889,3017:246:1,176,-4,0,0,2.63214 -91890,3017:246:2,176.5,-4,0,0,2.55241 -91891,3017:247:1,177,-4,0,0,2.45783 -91892,3017:247:2,177.5,-4,0,0,2.37212 -91893,3017:248:1,178,-4,0,0,2.29409 -91894,3017:248:2,178.5,-4,0,0,2.18193 -91895,3017:249:1,179,-4,0,0,2.05003 -91896,3017:249:2,179.5,-4,0,0,1.94621 -91897,3018:140:1,180,-4,0,0,1.89498 -91898,5018:130:3,-180,-3.5,0,0,2.0018 -91899,5017:239:4,-179.5,-3.5,0,0,1.95693 -91900,5017:239:3,-179,-3.5,0,0,1.92866 -91901,5017:238:4,-178.5,-3.5,0,0,1.89828 -91902,5017:238:3,-178,-3.5,0,0,1.88851 -91903,5017:237:4,-177.5,-3.5,0,0,1.88851 -91904,5017:237:3,-177,-3.5,0,0,1.89828 -91905,5017:236:4,-176.5,-3.5,0,0,1.9184 -91906,5017:236:3,-176,-3.5,0,0,1.93908 -91907,5017:235:4,-175.5,-3.5,0,0,1.91159 -91908,5017:235:3,-175,-3.5,0,0,1.8757 -91909,5017:134:4,-174.5,-3.5,0,0,1.86935 -91910,5017:134:3,-174,-3.5,0,0,1.86316 -91911,5017:133:4,-173.5,-3.5,0,0,1.92518 -91912,5017:133:3,-173,-3.5,0,0,2.10173 -91913,5017:132:4,-172.5,-3.5,0,0,2.50749 -91914,5017:132:3,-172,-3.5,0,0,2.82273 -91915,5017:131:4,-171.5,-3.5,0,0,2.89439 -91916,5017:131:3,-171,-3.5,0,0,2.95985 -91917,5017:130:4,-170.5,-3.5,0,0,3.07755 -91918,5017:130:3,-170,-3.5,0,0,3.46209 -91919,5016:239:4,-169.5,-3.5,0,0,4.18196 -91920,5016:239:3,-169,-3.5,0,0,5.56737 -91921,5016:238:4,-168.5,-3.5,0,0,9.5117 -91922,5016:238:3,-168,-3.5,0,0,79.6842 -91923,5016:237:4,-167.5,-3.5,0,0,-10.9011 -91924,5016:237:3,-167,-3.5,0,0,-5.1786 -91925,5016:236:4,-166.5,-3.5,0,0,-3.06051 -91926,5016:236:3,-166,-3.5,0,0,-2.36818 -91927,5016:235:4,-165.5,-3.5,0,0,-1.98357 -91928,5016:235:3,-165,-3.5,0,0,-1.7286 -91929,5016:134:4,-164.5,-3.5,0,0,-1.53797 -91930,5016:134:3,-164,-3.5,0,0,-1.31799 -91931,5016:133:4,-163.5,-3.5,0,0,-1.12949 -91932,5016:133:3,-163,-3.5,0,0,-0.979344 -91933,5016:132:4,-162.5,-3.5,0,0,-0.851124 -91934,5016:132:3,-162,-3.5,0,0,-0.729692 -91935,5016:131:4,-161.5,-3.5,0,0,-0.657456 -91936,5016:131:3,-161,-3.5,0,0,-0.604136 -91937,5016:130:4,-160.5,-3.5,0,0,-0.561951 -91938,5016:130:3,-160,-3.5,0,0,-0.538793 -91939,5015:239:4,-159.5,-3.5,0,0,-0.525695 -91940,5015:239:3,-159,-3.5,0,0,-0.511095 -91941,5015:238:4,-158.5,-3.5,0,0,-0.479983 -91942,5015:238:3,-158,-3.5,0,0,-0.44412 -91943,5015:237:4,-157.5,-3.5,0,0,-0.414566 -91944,5015:237:3,-157,-3.5,0,0,-0.392185 -91945,5015:236:4,-156.5,-3.5,0,0,-0.373874 -91946,5015:236:3,-156,-3.5,0,0,-0.359627 -91947,5015:235:4,-155.5,-3.5,0,0,-0.344343 -91948,5015:235:3,-155,-3.5,0,0,-0.340944 -91949,5015:134:4,-154.5,-3.5,0,0,-0.318205 -91950,5015:134:3,-154,-3.5,0,0,-0.284798 -91951,5015:133:4,-153.5,-3.5,0,0,-0.262026 -91952,5015:133:3,-153,-3.5,0,0,-0.246277 -91953,5015:132:4,-152.5,-3.5,0,0,-0.23095 -91954,5015:132:3,-152,-3.5,0,0,-0.217624 -91955,5015:131:4,-151.5,-3.5,0,0,-0.206383 -91956,5015:131:3,-151,-3.5,0,0,-0.199309 -91957,5015:130:4,-150.5,-3.5,0,0,-0.196849 -91958,5015:130:3,-150,-3.5,0,0,-0.193782 -91959,5014:239:4,-149.5,-3.5,0,0,-0.19215 -91960,5014:239:3,-149,-3.5,0,0,-0.191127 -91961,5014:238:4,-148.5,-3.5,0,0,-0.189977 -91962,5014:238:3,-148,-3.5,0,0,-0.188915 -91963,5014:237:4,-147.5,-3.5,0,0,-0.187832 -91964,5014:237:3,-147,-3.5,0,0,-0.186678 -91965,5014:236:4,-146.5,-3.5,0,0,-0.185455 -91966,5014:236:3,-146,-3.5,0,0,-0.184344 -91967,5014:235:4,-145.5,-3.5,0,0,-0.18342 -91968,5014:235:3,-145,-3.5,0,0,-0.182552 -91969,5014:134:4,-144.5,-3.5,0,0,-0.181487 -91970,5014:134:3,-144,-3.5,0,0,-0.180252 -91971,5014:133:4,-143.5,-3.5,0,0,-0.178854 -91972,5014:133:3,-143,-3.5,0,0,-0.177321 -91973,5014:132:4,-142.5,-3.5,0,0,-0.175802 -91974,5014:132:3,-142,-3.5,0,0,-0.174443 -91975,5014:131:4,-141.5,-3.5,0,0,-0.173168 -91976,5014:131:3,-141,-3.5,0,0,-0.172023 -91977,5014:130:4,-140.5,-3.5,0,0,-0.171004 -91978,5014:130:3,-140,-3.5,0,0,-0.169945 -91979,5013:239:4,-139.5,-3.5,0,0,-0.168987 -91980,5013:239:3,-139,-3.5,0,0,-0.168058 -91981,5013:238:4,-138.5,-3.5,0,0,-0.167158 -91982,5013:238:3,-138,-3.5,0,0,-0.166172 -91983,5013:237:4,-137.5,-3.5,0,0,-0.165125 -91984,5013:237:3,-137,-3.5,0,0,-0.16404 -91985,5013:236:4,-136.5,-3.5,0,0,-0.162985 -91986,5013:236:3,-136,-3.5,0,0,-0.161938 -91987,5013:235:4,-135.5,-3.5,0,0,-0.160899 -91988,5013:235:3,-135,-3.5,0,0,-0.160152 -91989,5013:134:4,-134.5,-3.5,0,0,-0.159563 -91990,5013:134:3,-134,-3.5,0,0,-0.159083 -91991,5013:133:4,-133.5,-3.5,0,0,-0.158692 -91992,5013:133:3,-133,-3.5,0,0,-0.158303 -91993,5013:132:4,-132.5,-3.5,0,0,-0.157828 -91994,5013:132:3,-132,-3.5,0,0,-0.157376 -91995,5013:131:4,-131.5,-3.5,0,0,-0.156883 -91996,5013:131:3,-131,-3.5,0,0,-0.156349 -91997,5013:130:4,-130.5,-3.5,0,0,-0.155817 -91998,5013:130:3,-130,-3.5,0,0,-0.155266 -91999,5012:239:4,-129.5,-3.5,0,0,-0.154738 -92000,5012:239:3,-129,-3.5,0,0,-0.154254 -92001,5012:238:4,-128.5,-3.5,0,0,-0.153668 -92002,5012:238:3,-128,-3.5,0,0,-0.152834 -92003,5012:237:4,-127.5,-3.5,0,0,-0.151944 -92004,5012:237:3,-127,-3.5,0,0,-0.15108 -92005,5012:236:4,-126.5,-3.5,0,0,-0.15018 -92006,5012:236:3,-126,-3.5,0,0,-0.14951 -92007,5012:235:4,-125.5,-3.5,0,0,-0.149024 -92008,5012:235:3,-125,-3.5,0,0,-0.148621 -92009,5012:134:4,-124.5,-3.5,0,0,-0.148159 -92010,5012:134:3,-124,-3.5,0,0,-0.147479 -92011,5012:133:4,-123.5,-3.5,0,0,-0.146564 -92012,5012:133:3,-123,-3.5,0,0,-0.145577 -92013,5012:132:4,-122.5,-3.5,0,0,-0.144676 -92014,5012:132:3,-122,-3.5,0,0,-0.143877 -92015,5012:131:4,-121.5,-3.5,0,0,-0.143278 -92016,5012:131:3,-121,-3.5,0,0,-0.142661 -92017,5012:130:4,-120.5,-3.5,0,0,-0.142105 -92018,5012:130:3,-120,-3.5,0,0,-0.141665 -92019,5011:239:4,-119.5,-3.5,0,0,-0.141265 -92020,5011:239:3,-119,-3.5,0,0,-0.140696 -92021,5011:238:4,-118.5,-3.5,0,0,-0.140054 -92022,5011:238:3,-118,-3.5,0,0,-0.139434 -92023,5011:237:4,-117.5,-3.5,0,0,-0.138817 -92024,5011:237:3,-117,-3.5,0,0,-0.137974 -92025,5011:236:4,-116.5,-3.5,0,0,-0.136953 -92026,5011:236:3,-116,-3.5,0,0,-0.136221 -92027,5011:235:4,-115.5,-3.5,0,0,-0.136066 -92028,5011:235:3,-115,-3.5,0,0,-0.13605 -92029,5011:134:4,-114.5,-3.5,0,0,-0.13605 -92030,5011:134:3,-114,-3.5,0,0,-0.13605 -92031,5011:133:4,-113.5,-3.5,0,0,-0.13605 -92032,5011:133:3,-113,-3.5,0,0,-0.13605 -92033,5011:132:4,-112.5,-3.5,0,0,-0.13605 -92034,5011:132:3,-112,-3.5,0,0,-0.13605 -92035,5011:131:4,-111.5,-3.5,0,0,-0.13605 -92036,5011:131:3,-111,-3.5,0,0,-0.13605 -92037,5011:130:4,-110.5,-3.5,0,0,-0.13605 -92038,5011:130:3,-110,-3.5,0,0,-0.13605 -92039,5010:239:4,-109.5,-3.5,0,0,-0.13605 -92040,5010:239:3,-109,-3.5,0,0,-0.13605 -92041,5010:238:4,-108.5,-3.5,0,0,-0.13605 -92042,5010:238:3,-108,-3.5,0,0,-0.13605 -92043,5010:237:4,-107.5,-3.5,0,0,-0.13605 -92044,5010:237:3,-107,-3.5,0,0,-0.13605 -92045,5010:236:4,-106.5,-3.5,0,0,-0.13605 -92046,5010:236:3,-106,-3.5,0,0,-0.13605 -92047,5010:235:4,-105.5,-3.5,0,0,-0.13605 -92048,5010:235:3,-105,-3.5,0,0,-0.13605 -92049,5010:134:4,-104.5,-3.5,0,0,-0.13605 -92050,5010:134:3,-104,-3.5,0,0,-0.13605 -92051,5010:133:4,-103.5,-3.5,0,0,-0.13605 -92052,5010:133:3,-103,-3.5,0,0,-0.13605 -92053,5010:132:4,-102.5,-3.5,0,0,-0.13605 -92054,5010:132:3,-102,-3.5,0,0,-0.13605 -92055,5010:131:4,-101.5,-3.5,0,0,-0.13605 -92056,5010:131:3,-101,-3.5,0,0,-0.13605 -92057,5010:130:4,-100.5,-3.5,0,0,-0.13605 -92058,5010:130:3,-100,-3.5,0,0,-0.13605 -92059,5009:239:4,-99.5,-3.5,0,0,-0.13605 -92060,5009:239:3,-99,-3.5,0,0,-0.13605 -92061,5009:238:4,-98.5,-3.5,0,0,-0.13605 -92062,5009:238:3,-98,-3.5,0,0,-0.13605 -92063,5009:237:4,-97.5,-3.5,0,0,-0.13605 -92064,5009:237:3,-97,-3.5,0,0,-0.13605 -92065,5009:236:4,-96.5,-3.5,0,0,-0.13605 -92066,5009:236:3,-96,-3.5,0,0,-0.13605 -92067,5009:235:4,-95.5,-3.5,0,0,-0.13605 -92068,5009:235:3,-95,-3.5,0,0,-0.13605 -92069,5009:134:4,-94.5,-3.5,0,0,-0.13605 -92070,5009:134:3,-94,-3.5,0,0,-0.13605 -92071,5009:133:4,-93.5,-3.5,0,0,-0.13605 -92072,5009:133:3,-93,-3.5,0,0,-0.13605 -92073,5009:132:4,-92.5,-3.5,0,0,-0.13605 -92074,5009:132:3,-92,-3.5,0,0,-0.13605 -92075,5009:131:4,-91.5,-3.5,0,0,-0.13605 -92076,5009:131:3,-91,-3.5,0,0,-0.13605 -92077,5009:130:4,-90.5,-3.5,0,0,-0.13605 -92078,5009:130:3,-90,-3.5,0,0,-0.13605 -92079,5008:239:4,-89.5,-3.5,0,0,-0.13605 -92080,5008:239:3,-89,-3.5,0,0,-0.13605 -92081,5008:238:4,-88.5,-3.5,0,0,-0.13605 -92082,5008:238:3,-88,-3.5,0,0,-0.13605 -92083,5008:237:4,-87.5,-3.5,0,0,-0.13605 -92084,5008:237:3,-87,-3.5,0,0,-0.13605 -92085,5008:236:4,-86.5,-3.5,0,0,-0.13605 -92086,5008:236:3,-86,-3.5,0,0,-0.13605 -92087,5008:235:4,-85.5,-3.5,0,0,-0.13605 -92088,5008:235:3,-85,-3.5,0,0,-0.13605 -92089,5008:134:4,-84.5,-3.5,0,0,-0.13605 -92090,5008:134:3,-84,-3.5,0,0,-0.13605 -92091,5008:133:4,-83.5,-3.5,0,0,-0.13605 -92092,5008:133:3,-83,-3.5,0,0,-0.13605 -92093,5008:132:4,-82.5,-3.5,0,0,-0.13605 -92094,5008:132:3,-82,-3.5,0,0,-0.13605 -92095,5008:131:4,-81.5,-3.5,0,0,-0.136106 -92096,5008:131:3,-81,-3.5,0,0,-0.136101 -92097,5004:134:4,-44.5,-3.5,0,0,-0.190405 -92098,5004:134:3,-44,-3.5,0,0,-0.178954 -92099,5004:133:4,-43.5,-3.5,0,0,-0.176021 -92100,5004:133:3,-43,-3.5,0,0,-0.175875 -92101,5004:132:4,-42.5,-3.5,0,0,-0.175973 -92102,5004:132:3,-42,-3.5,0,0,-0.175704 -92103,5004:131:4,-41.5,-3.5,0,0,-0.175048 -92104,5004:131:3,-41,-3.5,0,0,-0.174757 -92105,5004:130:4,-40.5,-3.5,0,0,-0.17483 -92106,5004:130:3,-40,-3.5,0,0,-0.174878 -92107,5003:239:4,-39.5,-3.5,0,0,-0.174709 -92108,5003:239:3,-39,-3.5,0,0,-0.174395 -92109,5003:238:4,-38.5,-3.5,0,0,-0.174153 -92110,5003:238:3,-38,-3.5,0,0,-0.174033 -92111,5003:237:4,-37.5,-3.5,0,0,-0.173792 -92112,5003:237:3,-37,-3.5,0,0,-0.17336 -92113,5003:236:4,-36.5,-3.5,0,0,-0.172904 -92114,5003:236:3,-36,-3.5,0,0,-0.17226 -92115,5003:235:4,-35.5,-3.5,0,0,-0.171595 -92116,5003:235:3,-35,-3.5,0,0,-0.171051 -92117,5003:134:4,-34.5,-3.5,0,0,-0.170367 -92118,5003:134:3,-34,-3.5,0,0,-0.169594 -92119,5003:133:4,-33.5,-3.5,0,0,-0.168916 -92120,5003:133:3,-33,-3.5,0,0,-0.168196 -92121,5003:132:4,-32.5,-3.5,0,0,-0.167434 -92122,5003:132:3,-32,-3.5,0,0,-0.166721 -92123,5003:131:4,-31.5,-3.5,0,0,-0.166423 -92124,5003:131:3,-31,-3.5,0,0,-0.166355 -92125,5003:130:4,-30.5,-3.5,0,0,-0.166309 -92126,5003:130:3,-30,-3.5,0,0,-0.166378 -92127,5002:239:4,-29.5,-3.5,0,0,-0.166401 -92128,5002:239:3,-29,-3.5,0,0,-0.166126 -92129,5002:238:4,-28.5,-3.5,0,0,-0.16542 -92130,5002:238:3,-28,-3.5,0,0,-0.164536 -92131,5002:237:4,-27.5,-3.5,0,0,-0.163545 -92132,5002:237:3,-27,-3.5,0,0,-0.16265 -92133,5002:236:4,-26.5,-3.5,0,0,-0.162183 -92134,5002:236:3,-26,-3.5,0,0,-0.162005 -92135,5002:235:4,-25.5,-3.5,0,0,-0.161828 -92136,5002:235:3,-25,-3.5,0,0,-0.161562 -92137,5002:134:4,-24.5,-3.5,0,0,-0.161296 -92138,5002:134:3,-24,-3.5,0,0,-0.161164 -92139,5002:133:4,-23.5,-3.5,0,0,-0.161076 -92140,5002:133:3,-23,-3.5,0,0,-0.16101 -92141,5002:132:4,-22.5,-3.5,0,0,-0.160944 -92142,5002:132:3,-22,-3.5,0,0,-0.160856 -92143,5002:131:4,-21.5,-3.5,0,0,-0.160635 -92144,5002:131:3,-21,-3.5,0,0,-0.160262 -92145,5002:130:4,-20.5,-3.5,0,0,-0.159955 -92146,5002:130:3,-20,-3.5,0,0,-0.159868 -92147,5001:239:4,-19.5,-3.5,0,0,-0.159912 -92148,5001:239:3,-19,-3.5,0,0,-0.160109 -92149,5001:238:4,-18.5,-3.5,0,0,-0.160482 -92150,5001:238:3,-18,-3.5,0,0,-0.160899 -92151,5001:237:4,-17.5,-3.5,0,0,-0.161208 -92152,5001:237:3,-17,-3.5,0,0,-0.161452 -92153,5001:236:4,-16.5,-3.5,0,0,-0.161695 -92154,5001:236:3,-16,-3.5,0,0,-0.161894 -92155,5001:235:4,-15.5,-3.5,0,0,-0.162116 -92156,5001:235:3,-15,-3.5,0,0,-0.162584 -92157,5001:134:4,-14.5,-3.5,0,0,-0.163366 -92158,5001:134:3,-14,-3.5,0,0,-0.164062 -92159,5001:133:4,-13.5,-3.5,0,0,-0.164966 -92160,5001:133:3,-13,-3.5,0,0,-0.166126 -92161,5001:132:4,-12.5,-3.5,0,0,-0.167296 -92162,5001:132:3,-12,-3.5,0,0,-0.168637 -92163,5001:131:4,-11.5,-3.5,0,0,-0.169968 -92164,5001:131:3,-11,-3.5,0,0,-0.171287 -92165,5001:130:4,-10.5,-3.5,0,0,-0.172618 -92166,5001:130:3,-10,-3.5,0,0,-0.173889 -92167,5000:239:4,-9.5,-3.5,0,0,-0.175072 -92168,5000:239:3,-9,-3.5,0,0,-0.176094 -92169,5000:238:4,-8.5,-3.5,0,0,-0.17678 -92170,5000:238:3,-8,-3.5,0,0,-0.177296 -92171,5000:237:4,-7.5,-3.5,0,0,-0.177764 -92172,5000:237:3,-7,-3.5,0,0,-0.178209 -92173,5000:236:4,-6.5,-3.5,0,0,-0.17883 -92174,5000:236:3,-6,-3.5,0,0,-0.179452 -92175,5000:235:4,-5.5,-3.5,0,0,-0.180177 -92176,5000:235:3,-5,-3.5,0,0,-0.181032 -92177,5000:134:4,-4.5,-3.5,0,0,-0.18212 -92178,5000:134:3,-4,-3.5,0,0,-0.183241 -92179,5000:133:4,-3.5,-3.5,0,0,-0.184036 -92180,5000:133:3,-3,-3.5,0,0,-0.184396 -92181,5000:132:4,-2.5,-3.5,0,0,-0.184705 -92182,5000:132:3,-2,-3.5,0,0,-0.185352 -92183,5000:131:4,-1.5,-3.5,0,0,-0.186157 -92184,5000:131:3,-1,-3.5,0,0,-0.186914 -92185,5000:130:4,-0.5,-3.5,0,0,-0.187727 -92186,3000:130:4,0,-3.5,0,0,-0.18799 -92187,3000:130:4,0.5,-3.5,0,0,-0.1877 -92188,3000:131:3,1,-3.5,0,0,-0.18728 -92189,3000:131:4,1.5,-3.5,0,0,-0.186678 -92190,3000:132:3,2,-3.5,0,0,-0.185897 -92191,3000:132:4,2.5,-3.5,0,0,-0.184938 -92192,3000:133:3,3,-3.5,0,0,-0.183728 -92193,3000:133:4,3.5,-3.5,0,0,-0.182323 -92194,3000:134:3,4,-3.5,0,0,-0.180705 -92195,3000:134:4,4.5,-3.5,0,0,-0.17883 -92196,3000:235:3,5,-3.5,0,0,-0.177124 -92197,3000:235:4,5.5,-3.5,0,0,-0.175437 -92198,3000:236:3,6,-3.5,0,0,-0.173648 -92199,3000:236:4,6.5,-3.5,0,0,-0.171904 -92200,3000:237:3,7,-3.5,0,0,-0.170015 -92201,3000:237:4,7.5,-3.5,0,0,-0.168312 -92202,3000:238:3,8,-3.5,0,0,-0.167227 -92203,3000:238:4,8.5,-3.5,0,0,-0.162985 -92204,3004:131:4,41.5,-3.5,0,0,-0.173144 -92205,3004:132:3,42,-3.5,0,0,-0.211532 -92206,3004:132:4,42.5,-3.5,0,0,-0.418952 -92207,3004:133:3,43,-3.5,0,0,-1.04217 -92208,3004:133:4,43.5,-3.5,0,0,-0.571831 -92209,3004:134:3,44,-3.5,0,0,-0.318205 -92210,3004:134:4,44.5,-3.5,0,0,-0.348387 -92211,3004:235:3,45,-3.5,0,0,-0.440178 -92212,3004:235:4,45.5,-3.5,0,0,-0.536735 -92213,3004:236:3,46,-3.5,0,0,-0.929047 -92214,3004:236:4,46.5,-3.5,0,0,-1.93875 -92215,3004:237:3,47,-3.5,0,0,-4.08368 -92216,3004:237:4,47.5,-3.5,0,0,-4.88552 -92217,3004:238:3,48,-3.5,0,0,-6.469 -92218,3004:238:4,48.5,-3.5,0,0,-33.0023 -92219,3004:239:3,49,-3.5,0,0,10.0048 -92220,3004:239:4,49.5,-3.5,0,0,12.3981 -92221,3005:130:3,50,-3.5,0,0,12.9743 -92222,3005:130:4,50.5,-3.5,0,0,4.45881 -92223,3005:131:3,51,-3.5,0,0,3.05293 -92224,3005:131:4,51.5,-3.5,0,0,2.49312 -92225,3005:132:3,52,-3.5,0,0,2.45783 -92226,3005:132:4,52.5,-3.5,0,0,2.72758 -92227,3005:133:3,53,-3.5,0,0,3.18033 -92228,3005:133:4,53.5,-3.5,0,0,4.26047 -92229,3005:134:3,54,-3.5,0,0,23.4911 -92230,3005:134:4,54.5,-3.5,0,0,-4.47573 -92231,3005:235:3,55,-3.5,0,0,-1.93875 -92232,3005:235:4,55.5,-3.5,0,0,-1.24995 -92233,3005:236:3,56,-3.5,0,0,-1.03395 -92234,3005:236:4,56.5,-3.5,0,0,-0.905223 -92235,3005:237:3,57,-3.5,0,0,-0.757103 -92236,3005:237:4,57.5,-3.5,0,0,-0.70113 -92237,3005:238:3,58,-3.5,0,0,-0.673884 -92238,3005:238:4,58.5,-3.5,0,0,-0.666959 -92239,3005:239:3,59,-3.5,0,0,-0.673884 -92240,3005:239:4,59.5,-3.5,0,0,-0.708665 -92241,3006:130:3,60,-3.5,0,0,-0.750642 -92242,3006:130:4,60.5,-3.5,0,0,-0.766519 -92243,3006:131:3,61,-3.5,0,0,-0.757103 -92244,3006:131:4,61.5,-3.5,0,0,-0.727843 -92245,3006:132:3,62,-3.5,0,0,-0.698171 -92246,3006:132:4,62.5,-3.5,0,0,-0.673884 -92247,3006:133:3,63,-3.5,0,0,-0.658814 -92248,3006:133:4,63.5,-3.5,0,0,-0.640273 -92249,3006:134:3,64,-3.5,0,0,-0.626236 -92250,3006:134:4,64.5,-3.5,0,0,-0.621233 -92251,3006:235:3,65,-3.5,0,0,-0.62497 -92252,3006:235:4,65.5,-3.5,0,0,-0.638968 -92253,3006:236:3,66,-3.5,0,0,-0.664242 -92254,3006:236:4,66.5,-3.5,0,0,-0.688039 -92255,3006:237:3,67,-3.5,0,0,-0.707056 -92256,3006:237:4,67.5,-3.5,0,0,-0.717269 -92257,3006:238:3,68,-3.5,0,0,-0.710385 -92258,3006:238:4,68.5,-3.5,0,0,-0.708665 -92259,3006:239:3,69,-3.5,0,0,-0.717269 -92260,3006:239:4,69.5,-3.5,0,0,-0.72072 -92261,3007:130:3,70,-3.5,0,0,-0.752743 -92262,3007:130:4,70.5,-3.5,0,0,-0.790583 -92263,3007:131:3,71,-3.5,0,0,-0.839089 -92264,3007:131:4,71.5,-3.5,0,0,-0.892054 -92265,3007:132:3,72,-3.5,0,0,-0.943034 -92266,3007:132:4,72.5,-3.5,0,0,-0.998346 -92267,3007:133:4,73.5,-3.5,0,0,-1.07583 -92268,3007:134:3,74,-3.5,0,0,-1.15311 -92269,3007:134:4,74.5,-3.5,0,0,-1.18737 -92270,3007:235:3,75,-3.5,0,0,-1.19244 -92271,3007:235:4,75.5,-3.5,0,0,-1.20251 -92272,3007:236:3,76,-3.5,0,0,-1.18234 -92273,3007:236:4,76.5,-3.5,0,0,-1.12483 -92274,3007:237:3,77,-3.5,0,0,-1.08005 -92275,3007:237:4,77.5,-3.5,0,0,-1.04217 -92276,3007:238:3,78,-3.5,0,0,-0.99075 -92277,3007:238:4,78.5,-3.5,0,0,-0.925572 -92278,3007:239:3,79,-3.5,0,0,-0.845121 -92279,3007:239:4,79.5,-3.5,0,0,-0.785105 -92280,3008:130:3,80,-3.5,0,0,-0.761432 -92281,3008:130:4,80.5,-3.5,0,0,-0.757103 -92282,3008:131:3,81,-3.5,0,0,-0.785105 -92283,3008:131:4,81.5,-3.5,0,0,-0.857283 -92284,3008:132:3,82,-3.5,0,0,-0.851124 -92285,3008:132:4,82.5,-3.5,0,0,-0.905223 -92286,3008:133:3,83,-3.5,0,0,-1.04217 -92287,3008:133:4,83.5,-3.5,0,0,-1.27195 -92288,3008:134:3,84,-3.5,0,0,-1.64122 -92289,3008:134:4,84.5,-3.5,0,0,-2.11607 -92290,3008:235:3,85,-3.5,0,0,-2.7742 -92291,3008:235:4,85.5,-3.5,0,0,-3.8199 -92292,3008:236:3,86,-3.5,0,0,-4.88552 -92293,3008:236:4,86.5,-3.5,0,0,-6.86312 -92294,3008:237:3,87,-3.5,0,0,-15.4623 -92295,3008:237:4,87.5,-3.5,0,0,204.138 -92296,3008:238:3,88,-3.5,0,0,16.9301 -92297,3008:238:4,88.5,-3.5,0,0,10.0048 -92298,3008:239:3,89,-3.5,0,0,11.1801 -92299,3008:239:4,89.5,-3.5,0,0,61.0431 -92300,3009:130:3,90,-3.5,0,0,-14.1166 -92301,3009:130:4,90.5,-3.5,0,0,-7.07916 -92302,3009:131:3,91,-3.5,0,0,-3.92893 -92303,3009:131:4,91.5,-3.5,0,0,-2.53137 -92304,3009:132:3,92,-3.5,0,0,-1.92773 -92305,3009:132:4,92.5,-3.5,0,0,-1.56858 -92306,3009:133:3,93,-3.5,0,0,-1.28898 -92307,3009:133:4,93.5,-3.5,0,0,-1.11116 -92308,3009:134:3,94,-3.5,0,0,-1.00615 -92309,3009:134:4,94.5,-3.5,0,0,-0.922117 -92310,3009:235:3,95,-3.5,0,0,-0.879166 -92311,3009:235:4,95.5,-3.5,0,0,-0.854195 -92312,3009:236:3,96,-3.5,0,0,-0.908585 -92313,3009:236:4,96.5,-3.5,0,0,-1.02191 -92314,3009:237:3,97,-3.5,0,0,-1.07583 -92315,3009:237:4,97.5,-3.5,0,0,-1.15795 -92316,3009:238:3,98,-3.5,0,0,-1.20768 -92317,3009:238:4,98.5,-3.5,0,0,-1.33582 -92318,3009:239:3,99,-3.5,0,0,-1.94954 -92319,3010:130:3,100,-3.5,0,0,-19.0885 -92320,3010:130:4,100.5,-3.5,0,0,8.92746 -92321,3010:235:3,105,-3.5,0,0,1.42514 -92322,3010:235:4,105.5,-3.5,0,0,1.39184 -92323,3010:236:4,106.5,-3.5,0,0,8.92746 -92324,3010:237:3,107,-3.5,0,0,-54.3138 -92325,3010:237:4,107.5,-3.5,0,0,-4.62143 -92326,3010:238:3,108,-3.5,0,0,-3.23664 -92327,3010:238:4,108.5,-3.5,0,0,-2.73399 -92328,3010:239:3,109,-3.5,0,0,-3.40301 -92329,3010:239:4,109.5,-3.5,0,0,3.221 -92330,3011:130:3,110,-3.5,0,0,1.65201 -92331,3011:237:3,117,-3.5,0,0,2.69182 -92332,3011:237:4,117.5,-3.5,0,0,-1.53797 -92333,3011:238:3,118,-3.5,0,0,-0.975586 -92334,3011:238:4,118.5,-3.5,0,0,-1.90598 -92335,3011:239:3,119,-3.5,0,0,-2.83582 -92336,3011:239:4,119.5,-3.5,0,0,-2.27859 -92337,3012:132:4,122.5,-3.5,0,0,1.58812 -92338,3012:133:3,123,-3.5,0,0,1.42985 -92339,3012:133:4,123.5,-3.5,0,0,1.29195 -92340,3012:134:3,124,-3.5,0,0,1.2789 -92341,3012:134:4,124.5,-3.5,0,0,7.27881 -92342,3012:236:4,126.5,-3.5,0,0,1.88203 -92343,3012:237:3,127,-3.5,0,0,2.47876 -92344,3012:237:4,127.5,-3.5,0,0,337.61 -92345,3012:238:3,128,-3.5,0,0,-6.20082 -92346,3012:238:4,128.5,-3.5,0,0,5.71862 -92347,3012:239:3,129,-3.5,0,0,-9.98073 -92348,3012:239:4,129.5,-3.5,0,0,-9.7719 -92349,3013:130:3,130,-3.5,0,0,-0.618734 -92350,3013:131:3,131,-3.5,0,0,1.44686 -92351,3013:131:4,131.5,-3.5,0,0,1.30541 -92352,3013:132:3,132,-3.5,0,0,1.23923 -92353,3013:134:4,134.5,-3.5,0,0,-3.74949 -92354,3013:235:3,135,-3.5,0,0,3.15365 -92355,3013:235:4,135.5,-3.5,0,0,2.56794 -92356,3013:236:3,136,-3.5,0,0,2.21753 -92357,3013:237:3,137,-3.5,0,0,-44.6839 -92358,3013:237:4,137.5,-3.5,0,0,2.82273 -92359,3013:239:3,139,-3.5,0,0,-0.366361 -92360,3013:239:4,139.5,-3.5,0,0,-0.939481 -92361,3014:130:3,140,-3.5,0,0,-1.28327 -92362,3014:130:4,140.5,-3.5,0,0,-1.25544 -92363,3014:131:3,141,-3.5,0,0,-2.22214 -92364,3014:131:4,141.5,-3.5,0,0,-3.43147 -92365,3014:132:3,142,-3.5,0,0,-8.52457 -92366,3014:132:4,142.5,-3.5,0,0,-23.6587 -92367,3014:133:3,143,-3.5,0,0,18.6505 -92368,3014:133:4,143.5,-3.5,0,0,10.0048 -92369,3014:134:3,144,-3.5,0,0,6.23439 -92370,3014:134:4,144.5,-3.5,0,0,4.18196 -92371,3014:235:3,145,-3.5,0,0,3.33627 -92372,3014:235:4,145.5,-3.5,0,0,2.94863 -92373,3014:236:3,146,-3.5,0,0,2.67453 -92374,3014:236:4,146.5,-3.5,0,0,2.43738 -92375,3014:237:3,147,-3.5,0,0,2.29989 -92376,3014:237:4,147.5,-3.5,0,0,1.94621 -92377,3014:238:3,148,-3.5,0,0,2.18696 -92378,3014:238:4,148.5,-3.5,0,0,2.34123 -92379,3014:239:3,149,-3.5,0,0,2.32329 -92380,3014:239:4,149.5,-3.5,0,0,2.10173 -92381,3015:130:3,150,-3.5,0,0,1.95693 -92382,3015:130:4,150.5,-3.5,0,0,1.90161 -92383,3015:131:3,151,-3.5,0,0,1.89179 -92384,3015:131:4,151.5,-3.5,0,0,1.9498 -92385,3015:132:3,152,-3.5,0,0,2.03361 -92386,3015:132:4,152.5,-3.5,0,0,2.04171 -92387,3015:133:3,153,-3.5,0,0,2.01758 -92388,3015:133:4,153.5,-3.5,0,0,2.02549 -92389,3015:134:3,154,-3.5,0,0,2.04586 -92390,3015:134:4,154.5,-3.5,0,0,2.09724 -92391,3015:235:3,155,-3.5,0,0,2.19202 -92392,3015:235:4,155.5,-3.5,0,0,2.31142 -92393,3015:236:3,156,-3.5,0,0,2.37212 -92394,3015:236:4,156.5,-3.5,0,0,2.34123 -92395,3015:237:3,157,-3.5,0,0,2.29409 -92396,3015:237:4,157.5,-3.5,0,0,2.21245 -92397,3015:238:3,158,-3.5,0,0,2.13366 -92398,3015:238:4,158.5,-3.5,0,0,2.0541 -92399,3015:239:3,159,-3.5,0,0,1.98281 -92400,3015:239:4,159.5,-3.5,0,0,1.92184 -92401,3016:130:3,160,-3.5,0,0,1.8789 -92402,3016:130:4,160.5,-3.5,0,0,1.86935 -92403,3016:131:3,161,-3.5,0,0,1.86004 -92404,3016:131:4,161.5,-3.5,0,0,1.85087 -92405,3016:132:3,162,-3.5,0,0,1.84176 -92406,3016:132:4,162.5,-3.5,0,0,1.83884 -92407,3016:133:3,163,-3.5,0,0,1.82706 -92408,3016:133:4,163.5,-3.5,0,0,1.7958 -92409,3016:134:3,164,-3.5,0,0,1.77151 -92410,3016:134:4,164.5,-3.5,0,0,1.76107 -92411,3016:235:3,165,-3.5,0,0,1.74827 -92412,3016:235:4,165.5,-3.5,0,0,1.73827 -92413,3016:236:3,166,-3.5,0,0,1.74329 -92414,3016:236:4,166.5,-3.5,0,0,1.7663 -92415,3016:237:3,167,-3.5,0,0,1.82706 -92416,3016:237:4,167.5,-3.5,0,0,1.88851 -92417,3016:238:3,168,-3.5,0,0,1.94621 -92418,3016:238:4,168.5,-3.5,0,0,2.0018 -92419,3016:239:3,169,-3.5,0,0,2.05833 -92420,3016:239:4,169.5,-3.5,0,0,2.12445 -92421,3017:130:3,170,-3.5,0,0,2.19696 -92422,3017:130:4,170.5,-3.5,0,0,2.30572 -92423,3017:131:3,171,-3.5,0,0,2.48591 -92424,3017:131:4,171.5,-3.5,0,0,2.57556 -92425,3017:132:3,172,-3.5,0,0,2.57556 -92426,3017:132:4,172.5,-3.5,0,0,2.59952 -92427,3017:133:3,173,-3.5,0,0,2.67453 -92428,3017:133:4,173.5,-3.5,0,0,2.683 -92429,3017:134:3,174,-3.5,0,0,2.58348 -92430,3017:134:4,174.5,-3.5,0,0,2.41073 -92431,3017:235:3,175,-3.5,0,0,2.34735 -92432,3017:235:4,175.5,-3.5,0,0,2.27149 -92433,3017:236:3,176,-3.5,0,0,2.2495 -92434,3017:236:4,176.5,-3.5,0,0,2.21753 -92435,3017:237:3,177,-3.5,0,0,2.20209 -92436,3017:237:4,177.5,-3.5,0,0,2.2495 -92437,3017:238:3,178,-3.5,0,0,2.21245 -92438,3017:238:4,178.5,-3.5,0,0,2.14313 -92439,3017:239:3,179,-3.5,0,0,2.06685 -92440,3017:239:4,179.5,-3.5,0,0,2.02549 -92441,3018:130:3,180,-3.5,0,0,2.0018 -92442,5018:130:1,-180,-3,0,0,1.96058 -92443,5017:239:2,-179.5,-3,0,0,1.9498 -92444,5017:239:1,-179,-3,0,0,1.92518 -92445,5017:238:2,-178.5,-3,0,0,1.90831 -92446,5017:238:1,-178,-3,0,0,1.90831 -92447,5017:237:2,-177.5,-3,0,0,1.89828 -92448,5017:237:1,-177,-3,0,0,1.90831 -92449,5017:236:2,-176.5,-3,0,0,1.96425 -92450,5017:236:1,-176,-3,0,0,2.04586 -92451,5017:235:2,-175.5,-3,0,0,2.11065 -92452,5017:235:1,-175,-3,0,0,2.12911 -92453,5017:134:2,-174.5,-3,0,0,2.17693 -92454,5017:134:1,-174,-3,0,0,2.26034 -92455,5017:133:2,-173.5,-3,0,0,2.41717 -92456,5017:133:1,-173,-3,0,0,2.58348 -92457,5017:132:2,-172.5,-3,0,0,2.75514 -92458,5017:132:1,-172,-3,0,0,3.23498 -92459,5017:131:2,-171.5,-3,0,0,3.71267 -92460,5017:131:1,-171,-3,0,0,4.45881 -92461,5017:130:2,-170.5,-3,0,0,5.82572 -92462,5017:130:1,-170,-3,0,0,7.27881 -92463,5016:239:2,-169.5,-3,0,0,7.75136 -92464,5016:239:1,-169,-3,0,0,9.20753 -92465,5016:238:2,-168.5,-3,0,0,21.6052 -92466,5016:238:1,-168,-3,0,0,-13.7131 -92467,5016:237:2,-167.5,-3,0,0,-4.47573 -92468,5016:237:1,-167,-3,0,0,-2.7742 -92469,5016:236:2,-166.5,-3,0,0,-2.01824 -92470,5016:236:1,-166,-3,0,0,-1.71042 -92471,5016:235:2,-165.5,-3,0,0,-1.43114 -92472,5016:235:1,-165,-3,0,0,-1.20251 -92473,5016:134:2,-164.5,-3,0,0,-1.0672 -92474,5016:134:1,-164,-3,0,0,-0.939481 -92475,5016:133:2,-163.5,-3,0,0,-0.815751 -92476,5016:133:1,-163,-3,0,0,-0.717269 -92477,5016:132:2,-162.5,-3,0,0,-0.646813 -92478,5016:132:1,-162,-3,0,0,-0.587679 -92479,5016:131:2,-161.5,-3,0,0,-0.553371 -92480,5016:131:1,-161,-3,0,0,-0.533699 -92481,5016:130:2,-160.5,-3,0,0,-0.508252 -92482,5016:130:1,-160,-3,0,0,-0.489754 -92483,5015:239:2,-159.5,-3,0,0,-0.470441 -92484,5015:239:1,-159,-3,0,0,-0.441759 -92485,5015:238:2,-158.5,-3,0,0,-0.41024 -92486,5015:238:1,-158,-3,0,0,-0.386839 -92487,5015:237:2,-157.5,-3,0,0,-0.36759 -92488,5015:237:1,-157,-3,0,0,-0.348387 -92489,5015:236:2,-156.5,-3,0,0,-0.328251 -92490,5015:236:1,-156,-3,0,0,-0.311063 -92491,5015:235:2,-155.5,-3,0,0,-0.306568 -92492,5015:235:1,-155,-3,0,0,-0.309057 -92493,5015:134:2,-154.5,-3,0,0,-0.312065 -92494,5015:134:1,-154,-3,0,0,-0.259991 -92495,5015:133:2,-153.5,-3,0,0,-0.243644 -92496,5015:133:1,-153,-3,0,0,-0.23342 -92497,5015:132:2,-152.5,-3,0,0,-0.224076 -92498,5015:132:1,-152,-3,0,0,-0.216678 -92499,5015:131:2,-151.5,-3,0,0,-0.20841 -92500,5015:131:1,-151,-3,0,0,-0.199309 -92501,5015:130:2,-150.5,-3,0,0,-0.196364 -92502,5015:130:1,-150,-3,0,0,-0.193392 -92503,5014:239:2,-149.5,-3,0,0,-0.191369 -92504,5014:239:1,-149,-3,0,0,-0.189897 -92505,5014:238:2,-148.5,-3,0,0,-0.188491 -92506,5014:238:1,-148,-3,0,0,-0.187176 -92507,5014:237:2,-147.5,-3,0,0,-0.185715 -92508,5014:237:1,-147,-3,0,0,-0.184318 -92509,5014:236:2,-146.5,-3,0,0,-0.18342 -92510,5014:236:1,-146,-3,0,0,-0.182782 -92511,5014:235:2,-145.5,-3,0,0,-0.182273 -92512,5014:235:1,-145,-3,0,0,-0.181917 -92513,5014:134:2,-144.5,-3,0,0,-0.181411 -92514,5014:134:1,-144,-3,0,0,-0.18063 -92515,5014:133:2,-143.5,-3,0,0,-0.179502 -92516,5014:133:1,-143,-3,0,0,-0.178011 -92517,5014:132:2,-142.5,-3,0,0,-0.176486 -92518,5014:132:1,-142,-3,0,0,-0.175097 -92519,5014:131:2,-141.5,-3,0,0,-0.173912 -92520,5014:131:1,-141,-3,0,0,-0.172761 -92521,5014:130:2,-140.5,-3,0,0,-0.171619 -92522,5014:130:1,-140,-3,0,0,-0.170579 -92523,5013:239:2,-139.5,-3,0,0,-0.169594 -92524,5013:239:1,-139,-3,0,0,-0.168637 -92525,5013:238:2,-138.5,-3,0,0,-0.167826 -92526,5013:238:1,-138,-3,0,0,-0.167135 -92527,5013:237:2,-137.5,-3,0,0,-0.166446 -92528,5013:237:1,-137,-3,0,0,-0.165647 -92529,5013:236:2,-136.5,-3,0,0,-0.1644 -92530,5013:236:1,-136,-3,0,0,-0.162851 -92531,5013:235:2,-135.5,-3,0,0,-0.161473 -92532,5013:235:1,-135,-3,0,0,-0.160482 -92533,5013:134:2,-134.5,-3,0,0,-0.159584 -92534,5013:134:1,-134,-3,0,0,-0.158714 -92535,5013:133:2,-133.5,-3,0,0,-0.157978 -92536,5013:133:1,-133,-3,0,0,-0.157419 -92537,5013:132:2,-132.5,-3,0,0,-0.156904 -92538,5013:132:1,-132,-3,0,0,-0.156434 -92539,5013:131:2,-131.5,-3,0,0,-0.156093 -92540,5013:131:1,-131,-3,0,0,-0.155732 -92541,5013:130:2,-130.5,-3,0,0,-0.155266 -92542,5013:130:1,-130,-3,0,0,-0.15478 -92543,5012:239:2,-129.5,-3,0,0,-0.154506 -92544,5012:239:1,-129,-3,0,0,-0.15417 -92545,5012:238:2,-128.5,-3,0,0,-0.153752 -92546,5012:238:1,-128,-3,0,0,-0.153313 -92547,5012:237:2,-127.5,-3,0,0,-0.152855 -92548,5012:237:1,-127,-3,0,0,-0.152233 -92549,5012:236:2,-126.5,-3,0,0,-0.151531 -92550,5012:236:1,-126,-3,0,0,-0.150629 -92551,5012:235:2,-125.5,-3,0,0,-0.149672 -92552,5012:235:1,-125,-3,0,0,-0.148702 -92553,5012:134:2,-124.5,-3,0,0,-0.147919 -92554,5012:134:1,-124,-3,0,0,-0.147339 -92555,5012:133:2,-123.5,-3,0,0,-0.146941 -92556,5012:133:1,-123,-3,0,0,-0.146485 -92557,5012:132:2,-122.5,-3,0,0,-0.145873 -92558,5012:132:1,-122,-3,0,0,-0.145243 -92559,5012:131:2,-121.5,-3,0,0,-0.144578 -92560,5012:131:1,-121,-3,0,0,-0.143839 -92561,5012:130:2,-120.5,-3,0,0,-0.143239 -92562,5012:130:1,-120,-3,0,0,-0.142584 -92563,5011:239:2,-119.5,-3,0,0,-0.141913 -92564,5011:239:1,-119,-3,0,0,-0.141265 -92565,5011:238:2,-118.5,-3,0,0,-0.140696 -92566,5011:238:1,-118,-3,0,0,-0.140149 -92567,5011:237:2,-117.5,-3,0,0,-0.139566 -92568,5011:237:1,-117,-3,0,0,-0.138885 -92569,5011:236:2,-116.5,-3,0,0,-0.137722 -92570,5011:236:1,-116,-3,0,0,-0.136903 -92571,5011:235:2,-115.5,-3,0,0,-0.136254 -92572,5011:235:1,-115,-3,0,0,-0.136084 -92573,5011:134:2,-114.5,-3,0,0,-0.13605 -92574,5011:134:1,-114,-3,0,0,-0.13605 -92575,5011:133:2,-113.5,-3,0,0,-0.13605 -92576,5011:133:1,-113,-3,0,0,-0.13605 -92577,5011:132:2,-112.5,-3,0,0,-0.13605 -92578,5011:132:1,-112,-3,0,0,-0.13605 -92579,5011:131:2,-111.5,-3,0,0,-0.13605 -92580,5011:131:1,-111,-3,0,0,-0.13605 -92581,5011:130:2,-110.5,-3,0,0,-0.13605 -92582,5011:130:1,-110,-3,0,0,-0.13605 -92583,5010:239:2,-109.5,-3,0,0,-0.13605 -92584,5010:239:1,-109,-3,0,0,-0.13605 -92585,5010:238:2,-108.5,-3,0,0,-0.13605 -92586,5010:238:1,-108,-3,0,0,-0.13605 -92587,5010:237:2,-107.5,-3,0,0,-0.13605 -92588,5010:237:1,-107,-3,0,0,-0.13605 -92589,5010:236:2,-106.5,-3,0,0,-0.13605 -92590,5010:236:1,-106,-3,0,0,-0.13605 -92591,5010:235:2,-105.5,-3,0,0,-0.13605 -92592,5010:235:1,-105,-3,0,0,-0.13605 -92593,5010:134:2,-104.5,-3,0,0,-0.13605 -92594,5010:134:1,-104,-3,0,0,-0.13605 -92595,5010:133:2,-103.5,-3,0,0,-0.13605 -92596,5010:133:1,-103,-3,0,0,-0.13605 -92597,5010:132:2,-102.5,-3,0,0,-0.13605 -92598,5010:132:1,-102,-3,0,0,-0.13605 -92599,5010:131:2,-101.5,-3,0,0,-0.13605 -92600,5010:131:1,-101,-3,0,0,-0.13605 -92601,5010:130:2,-100.5,-3,0,0,-0.13605 -92602,5010:130:1,-100,-3,0,0,-0.13605 -92603,5009:239:2,-99.5,-3,0,0,-0.13605 -92604,5009:239:1,-99,-3,0,0,-0.13605 -92605,5009:238:2,-98.5,-3,0,0,-0.13605 -92606,5009:238:1,-98,-3,0,0,-0.13605 -92607,5009:237:2,-97.5,-3,0,0,-0.13605 -92608,5009:237:1,-97,-3,0,0,-0.13605 -92609,5009:236:2,-96.5,-3,0,0,-0.13605 -92610,5009:236:1,-96,-3,0,0,-0.13605 -92611,5009:235:2,-95.5,-3,0,0,-0.13605 -92612,5009:235:1,-95,-3,0,0,-0.13605 -92613,5009:134:2,-94.5,-3,0,0,-0.13605 -92614,5009:134:1,-94,-3,0,0,-0.13605 -92615,5009:133:2,-93.5,-3,0,0,-0.13605 -92616,5009:133:1,-93,-3,0,0,-0.13605 -92617,5009:132:2,-92.5,-3,0,0,-0.13605 -92618,5009:132:1,-92,-3,0,0,-0.13605 -92619,5009:131:2,-91.5,-3,0,0,-0.13605 -92620,5009:131:1,-91,-3,0,0,-0.13605 -92621,5009:130:2,-90.5,-3,0,0,-0.13605 -92622,5009:130:1,-90,-3,0,0,-0.13605 -92623,5008:239:2,-89.5,-3,0,0,-0.136119 -92624,5008:239:1,-89,-3,0,0,-0.13605 -92625,5008:238:2,-88.5,-3,0,0,-0.13605 -92626,5008:238:1,-88,-3,0,0,-0.13605 -92627,5008:237:2,-87.5,-3,0,0,-0.13605 -92628,5008:237:1,-87,-3,0,0,-0.13605 -92629,5008:236:2,-86.5,-3,0,0,-0.13605 -92630,5008:236:1,-86,-3,0,0,-0.13605 -92631,5008:235:2,-85.5,-3,0,0,-0.13605 -92632,5008:235:1,-85,-3,0,0,-0.13605 -92633,5008:134:2,-84.5,-3,0,0,-0.136254 -92634,5008:134:1,-84,-3,0,0,-0.138008 -92635,5008:133:2,-83.5,-3,0,0,-0.139603 -92636,5008:133:1,-83,-3,0,0,-0.140431 -92637,5008:132:2,-82.5,-3,0,0,-0.13966 -92638,5008:132:1,-82,-3,0,0,-0.140224 -92639,5008:131:2,-81.5,-3,0,0,-0.142123 -92640,5008:131:1,-81,-3,0,0,-0.14349 -92641,5004:238:2,-48.5,-3,0,0,-0.200139 -92642,5004:236:2,-46.5,-3,0,0,-0.196761 -92643,5004:236:1,-46,-3,0,0,-0.194391 -92644,5004:235:2,-45.5,-3,0,0,-0.188174 -92645,5004:235:1,-45,-3,0,0,-0.182986 -92646,5004:134:2,-44.5,-3,0,0,-0.180252 -92647,5004:134:1,-44,-3,0,0,-0.176584 -92648,5004:133:2,-43.5,-3,0,0,-0.178011 -92649,5004:133:1,-43,-3,0,0,-0.178259 -92650,5004:132:2,-42.5,-3,0,0,-0.177912 -92651,5004:132:1,-42,-3,0,0,-0.177641 -92652,5004:131:2,-41.5,-3,0,0,-0.177296 -92653,5004:131:1,-41,-3,0,0,-0.176878 -92654,5004:130:2,-40.5,-3,0,0,-0.175973 -92655,5004:130:1,-40,-3,0,0,-0.175169 -92656,5003:239:2,-39.5,-3,0,0,-0.174806 -92657,5003:239:1,-39,-3,0,0,-0.174733 -92658,5003:238:2,-38.5,-3,0,0,-0.174564 -92659,5003:238:1,-38,-3,0,0,-0.174491 -92660,5003:237:2,-37.5,-3,0,0,-0.17437 -92661,5003:237:1,-37,-3,0,0,-0.17384 -92662,5003:236:2,-36.5,-3,0,0,-0.172904 -92663,5003:236:1,-36,-3,0,0,-0.172094 -92664,5003:235:2,-35.5,-3,0,0,-0.171714 -92665,5003:235:1,-35,-3,0,0,-0.171311 -92666,5003:134:2,-34.5,-3,0,0,-0.170673 -92667,5003:134:1,-34,-3,0,0,-0.169827 -92668,5003:133:2,-33.5,-3,0,0,-0.168637 -92669,5003:133:1,-33,-3,0,0,-0.167618 -92670,5003:132:2,-32.5,-3,0,0,-0.166836 -92671,5003:132:1,-32,-3,0,0,-0.166104 -92672,5003:131:2,-31.5,-3,0,0,-0.165261 -92673,5003:131:1,-31,-3,0,0,-0.164581 -92674,5003:130:2,-30.5,-3,0,0,-0.164062 -92675,5003:130:1,-30,-3,0,0,-0.163545 -92676,5002:239:2,-29.5,-3,0,0,-0.163209 -92677,5002:239:1,-29,-3,0,0,-0.162985 -92678,5002:238:2,-28.5,-3,0,0,-0.162561 -92679,5002:238:1,-28,-3,0,0,-0.161761 -92680,5002:237:2,-27.5,-3,0,0,-0.160921 -92681,5002:237:1,-27,-3,0,0,-0.16024 -92682,5002:236:2,-26.5,-3,0,0,-0.159868 -92683,5002:236:1,-26,-3,0,0,-0.159606 -92684,5002:235:2,-25.5,-3,0,0,-0.159279 -92685,5002:235:1,-25,-3,0,0,-0.158866 -92686,5002:134:2,-24.5,-3,0,0,-0.158389 -92687,5002:134:1,-24,-3,0,0,-0.158108 -92688,5002:133:2,-23.5,-3,0,0,-0.157699 -92689,5002:133:1,-23,-3,0,0,-0.157312 -92690,5002:132:2,-22.5,-3,0,0,-0.15714 -92691,5002:132:1,-22,-3,0,0,-0.157097 -92692,5002:131:2,-21.5,-3,0,0,-0.156947 -92693,5002:131:1,-21,-3,0,0,-0.156605 -92694,5002:130:2,-20.5,-3,0,0,-0.156264 -92695,5002:130:1,-20,-3,0,0,-0.156093 -92696,5001:239:2,-19.5,-3,0,0,-0.156327 -92697,5001:239:1,-19,-3,0,0,-0.156626 -92698,5001:238:2,-18.5,-3,0,0,-0.157033 -92699,5001:238:1,-18,-3,0,0,-0.157591 -92700,5001:237:2,-17.5,-3,0,0,-0.158194 -92701,5001:237:1,-17,-3,0,0,-0.158671 -92702,5001:236:2,-16.5,-3,0,0,-0.159018 -92703,5001:236:1,-16,-3,0,0,-0.159366 -92704,5001:235:2,-15.5,-3,0,0,-0.159803 -92705,5001:235:1,-15,-3,0,0,-0.160416 -92706,5001:134:2,-14.5,-3,0,0,-0.161186 -92707,5001:134:1,-14,-3,0,0,-0.161961 -92708,5001:133:2,-13.5,-3,0,0,-0.162739 -92709,5001:133:1,-13,-3,0,0,-0.163612 -92710,5001:132:2,-12.5,-3,0,0,-0.164536 -92711,5001:132:1,-12,-3,0,0,-0.16567 -92712,5001:131:2,-11.5,-3,0,0,-0.167181 -92713,5001:131:1,-11,-3,0,0,-0.168707 -92714,5001:130:2,-10.5,-3,0,0,-0.170132 -92715,5001:130:1,-10,-3,0,0,-0.171169 -92716,5000:239:2,-9.5,-3,0,0,-0.171833 -92717,5000:239:1,-9,-3,0,0,-0.172403 -92718,5000:238:2,-8.5,-3,0,0,-0.172737 -92719,5000:238:1,-8,-3,0,0,-0.173024 -92720,5000:237:2,-7.5,-3,0,0,-0.173599 -92721,5000:237:1,-7,-3,0,0,-0.174588 -92722,5000:236:2,-6.5,-3,0,0,-0.175607 -92723,5000:236:1,-6,-3,0,0,-0.17673 -92724,5000:235:2,-5.5,-3,0,0,-0.178259 -92725,5000:235:1,-5,-3,0,0,-0.179777 -92726,5000:134:2,-4.5,-3,0,0,-0.180982 -92727,5000:134:1,-4,-3,0,0,-0.182095 -92728,5000:133:2,-3.5,-3,0,0,-0.183037 -92729,5000:133:1,-3,-3,0,0,-0.184062 -92730,5000:132:2,-2.5,-3,0,0,-0.184886 -92731,5000:132:1,-2,-3,0,0,-0.185741 -92732,5000:131:2,-1.5,-3,0,0,-0.186678 -92733,5000:131:1,-1,-3,0,0,-0.187438 -92734,5000:130:2,-0.5,-3,0,0,-0.187805 -92735,3000:130:2,0,-3,0,0,-0.187779 -92736,3000:130:2,0.5,-3,0,0,-0.187412 -92737,3000:131:1,1,-3,0,0,-0.186887 -92738,3000:131:2,1.5,-3,0,0,-0.186131 -92739,3000:132:1,2,-3,0,0,-0.185274 -92740,3000:132:2,2.5,-3,0,0,-0.184242 -92741,3000:133:1,3,-3,0,0,-0.183139 -92742,3000:133:2,3.5,-3,0,0,-0.182044 -92743,3000:134:1,4,-3,0,0,-0.180856 -92744,3000:134:2,4.5,-3,0,0,-0.179527 -92745,3000:235:1,5,-3,0,0,-0.178606 -92746,3000:235:2,5.5,-3,0,0,-0.177987 -92747,3000:236:1,6,-3,0,0,-0.177838 -92748,3000:236:2,6.5,-3,0,0,-0.178209 -92749,3000:237:1,7,-3,0,0,-0.179153 -92750,3000:237:2,7.5,-3,0,0,-0.179952 -92751,3000:238:1,8,-3,0,0,-0.180957 -92752,3000:238:2,8.5,-3,0,0,-0.176266 -92753,3004:132:1,42,-3,0,0,-0.163477 -92754,3004:132:2,42.5,-3,0,0,-0.203873 -92755,3004:133:1,43,-3,0,0,-0.482617 -92756,3004:133:2,43.5,-3,0,0,-0.563045 -92757,3004:134:1,44,-3,0,0,-0.260399 -92758,3004:134:2,44.5,-3,0,0,-0.208658 -92759,3004:235:1,45,-3,0,0,-0.252038 -92760,3004:235:2,45.5,-3,0,0,-0.303118 -92761,3004:236:1,46,-3,0,0,-0.380296 -92762,3004:236:2,46.5,-3,0,0,-0.465366 -92763,3004:237:1,47,-3,0,0,-0.465366 -92764,3004:237:2,47.5,-3,0,0,-0.398319 -92765,3004:238:1,48,-3,0,0,-0.339808 -92766,3004:238:2,48.5,-3,0,0,-0.349541 -92767,3004:239:1,49,-3,0,0,-0.402483 -92768,3004:239:2,49.5,-3,0,0,-0.487971 -92769,3005:130:1,50,-3,0,0,-0.558721 -92770,3005:130:2,50.5,-3,0,0,-1.7286 -92771,3005:131:1,51,-3,0,0,3.87624 -92772,3005:131:2,51.5,-3,0,0,2.37212 -92773,3005:132:1,52,-3,0,0,2.26034 -92774,3005:132:2,52.5,-3,0,0,2.04586 -92775,3005:133:1,53,-3,0,0,2.08848 -92776,3005:133:2,53.5,-3,0,0,2.51487 -92777,3005:134:1,54,-3,0,0,3.26296 -92778,3005:134:2,54.5,-3,0,0,6.56821 -92779,3005:235:1,55,-3,0,0,-7.80297 -92780,3005:235:2,55.5,-3,0,0,-2.81481 -92781,3005:236:1,56,-3,0,0,-2.11607 -92782,3005:236:2,56.5,-3,0,0,-1.99513 -92783,3005:237:1,57,-3,0,0,-1.81358 -92784,3005:237:2,57.5,-3,0,0,-1.6083 -92785,3005:238:1,58,-3,0,0,-1.39834 -92786,3005:238:2,58.5,-3,0,0,-1.15795 -92787,3005:239:1,59,-3,0,0,-0.95009 -92788,3005:239:2,59.5,-3,0,0,-0.821452 -92789,3006:130:1,60,-3,0,0,-0.754919 -92790,3006:130:2,60.5,-3,0,0,-0.727843 -92791,3006:131:1,61,-3,0,0,-0.707056 -92792,3006:131:2,61.5,-3,0,0,-0.70113 -92793,3006:132:1,62,-3,0,0,-0.713789 -92794,3006:132:2,62.5,-3,0,0,-0.731661 -92795,3006:133:1,63,-3,0,0,-0.727843 -92796,3006:133:2,63.5,-3,0,0,-0.70113 -92797,3006:134:1,64,-3,0,0,-0.679488 -92798,3006:134:2,64.5,-3,0,0,-0.668345 -92799,3006:235:1,65,-3,0,0,-0.662869 -92800,3006:235:2,65.5,-3,0,0,-0.668345 -92801,3006:236:1,66,-3,0,0,-0.68091 -92802,3006:236:2,66.5,-3,0,0,-0.698171 -92803,3006:237:1,67,-3,0,0,-0.735784 -92804,3006:237:2,67.5,-3,0,0,-0.798818 -92805,3006:238:1,68,-3,0,0,-0.872776 -92806,3006:238:2,68.5,-3,0,0,-0.946498 -92807,3006:239:1,69,-3,0,0,-1.03395 -92808,3006:239:2,69.5,-3,0,0,-1.15795 -92809,3007:130:1,70,-3,0,0,-1.28898 -92810,3007:130:2,70.5,-3,0,0,-1.39184 -92811,3007:131:1,71,-3,0,0,-1.49371 -92812,3007:131:2,71.5,-3,0,0,-1.56858 -92813,3007:132:1,72,-3,0,0,-1.64122 -92814,3007:132:2,72.5,-3,0,0,-1.71947 -92815,3007:133:2,73.5,-3,0,0,-1.804 -92816,3007:134:1,74,-3,0,0,-1.78451 -92817,3007:134:2,74.5,-3,0,0,-1.71042 -92818,3007:235:1,75,-3,0,0,-1.63282 -92819,3007:235:2,75.5,-3,0,0,-1.58437 -92820,3007:236:1,76,-3,0,0,-1.59213 -92821,3007:236:2,76.5,-3,0,0,-1.59213 -92822,3007:237:1,77,-3,0,0,-1.52291 -92823,3007:237:2,77.5,-3,0,0,-1.39834 -92824,3007:238:1,78,-3,0,0,-1.23925 -92825,3007:238:2,78.5,-3,0,0,-1.12949 -92826,3007:239:1,79,-3,0,0,-1.05457 -92827,3007:239:2,79.5,-3,0,0,-0.983124 -92828,3008:130:1,80,-3,0,0,-0.925572 -92829,3008:130:2,80.5,-3,0,0,-0.879166 -92830,3008:131:1,81,-3,0,0,-0.911966 -92831,3008:131:2,81.5,-3,0,0,-0.960878 -92832,3008:132:1,82,-3,0,0,-0.957335 -92833,3008:132:2,82.5,-3,0,0,-0.943034 -92834,3008:133:1,83,-3,0,0,-0.986926 -92835,3008:133:2,83.5,-3,0,0,-1.1483 -92836,3008:134:1,84,-3,0,0,-1.43793 -92837,3008:134:2,84.5,-3,0,0,-1.99513 -92838,3008:235:1,85,-3,0,0,-2.63834 -92839,3008:235:2,85.5,-3,0,0,-3.74949 -92840,3008:236:1,86,-3,0,0,-4.16587 -92841,3008:236:2,86.5,-3,0,0,-4.83019 -92842,3008:237:1,87,-3,0,0,-7.42451 -92843,3008:237:2,87.5,-3,0,0,-24.8111 -92844,3008:238:1,88,-3,0,0,25.7098 -92845,3008:238:2,88.5,-3,0,0,10.5552 -92846,3008:239:1,89,-3,0,0,10.0048 -92847,3008:239:2,89.5,-3,0,0,36.1333 -92848,3009:130:1,90,-3,0,0,-12.9803 -92849,3009:130:2,90.5,-3,0,0,-6.75968 -92850,3009:131:1,91,-3,0,0,-3.9669 -92851,3009:131:2,91.5,-3,0,0,-2.60202 -92852,3009:132:1,92,-3,0,0,-1.96078 -92853,3009:132:2,92.5,-3,0,0,-1.49371 -92854,3009:133:1,93,-3,0,0,-1.20251 -92855,3009:133:2,93.5,-3,0,0,-1.0462 -92856,3009:134:1,94,-3,0,0,-0.983124 -92857,3009:134:2,94.5,-3,0,0,-0.95009 -92858,3009:235:1,95,-3,0,0,-0.888782 -92859,3009:235:2,95.5,-3,0,0,-0.833119 -92860,3009:236:1,96,-3,0,0,-0.879166 -92861,3009:236:2,96.5,-3,0,0,-1.04217 -92862,3009:237:1,97,-3,0,0,-1.13419 -92863,3009:237:2,97.5,-3,0,0,-1.31799 -92864,3009:238:1,98,-3,0,0,-1.56858 -92865,3009:238:2,98.5,-3,0,0,-1.77489 -92866,3009:239:2,99.5,-3,0,0,-12.9803 -92867,3010:130:1,100,-3,0,0,15.4945 -92868,3010:130:2,100.5,-3,0,0,6.05201 -92869,3010:134:2,104.5,-3,0,0,1.78217 -92870,3010:235:1,105,-3,0,0,1.71412 -92871,3010:235:2,105.5,-3,0,0,2.13838 -92872,3010:236:1,106,-3,0,0,3.29199 -92873,3010:236:2,106.5,-3,0,0,-1.60018 -92874,3010:237:1,107,-3,0,0,-0.925572 -92875,3010:237:2,107.5,-3,0,0,-0.857283 -92876,3010:238:1,108,-3,0,0,-1.03805 -92877,3010:238:2,108.5,-3,0,0,-1.89559 -92878,3010:239:1,109,-3,0,0,9.20753 -92879,3010:239:2,109.5,-3,0,0,1.60278 -92880,3011:237:2,117.5,-3,0,0,-0.796031 -92881,3011:238:1,118,-3,0,0,-0.627466 -92882,3011:238:2,118.5,-3,0,0,-0.66562 -92883,3011:239:1,119,-3,0,0,-0.73375 -92884,3011:239:2,119.5,-3,0,0,-0.631294 -92885,3012:131:1,121,-3,0,0,3.85471 -92886,3012:131:2,121.5,-3,0,0,2.57556 -92887,3012:134:1,124,-3,0,0,3.69321 -92888,3012:134:2,124.5,-3,0,0,1.79036 -92889,3012:235:1,125,-3,0,0,1.59539 -92890,3012:235:2,125.5,-3,0,0,1.45317 -92891,3012:236:1,126,-3,0,0,1.40584 -92892,3012:236:2,126.5,-3,0,0,1.9498 -92893,3012:237:1,127,-3,0,0,1.9498 -92894,3012:237:2,127.5,-3,0,0,2.43059 -92895,3012:238:1,128,-3,0,0,1.39184 -92896,3012:238:2,128.5,-3,0,0,2.2828 -92897,3012:239:1,129,-3,0,0,-68.8761 -92898,3012:239:2,129.5,-3,0,0,-9.38404 -92899,3013:130:1,130,-3,0,0,-7.80297 -92900,3013:130:2,130.5,-3,0,0,-13.3314 -92901,3013:134:2,134.5,-3,0,0,-23.6587 -92902,3013:235:1,135,-3,0,0,3.14051 -92903,3013:235:2,135.5,-3,0,0,2.67453 -92904,3013:236:1,136,-3,0,0,2.64027 -92905,3013:236:2,136.5,-3,0,0,8.29512 -92906,3013:237:1,137,-3,0,0,-22.5753 -92907,3013:237:2,137.5,-3,0,0,-3.15913 -92908,3013:238:1,138,-3,0,0,-2.41501 -92909,3013:238:2,138.5,-3,0,0,-2.87867 -92910,3013:239:1,139,-3,0,0,-2.96716 -92911,3013:239:2,139.5,-3,0,0,-2.32288 -92912,3014:130:1,140,-3,0,0,-3.23664 -92913,3014:130:2,140.5,-3,0,0,-4.94202 -92914,3014:131:1,141,-3,0,0,-8.36943 -92915,3014:131:2,141.5,-3,0,0,-33.0023 -92916,3014:132:1,142,-3,0,0,27.0086 -92917,3014:132:2,142.5,-3,0,0,10.9634 -92918,3014:133:1,143,-3,0,0,7.46134 -92919,3014:133:2,143.5,-3,0,0,5.88096 -92920,3014:134:1,144,-3,0,0,4.5816 -92921,3014:134:2,144.5,-3,0,0,3.49563 -92922,3014:235:1,145,-3,0,0,2.91592 -92923,3014:235:2,145.5,-3,0,0,2.61557 -92924,3014:236:1,146,-3,0,0,2.34735 -92925,3014:236:2,146.5,-3,0,0,2.12911 -92926,3014:237:1,147,-3,0,0,2.0797 -92927,3014:237:2,147.5,-3,0,0,2.02146 -92928,3014:238:1,148,-3,0,0,1.9533 -92929,3014:238:2,148.5,-3,0,0,1.89498 -92930,3014:239:1,149,-3,0,0,1.82992 -92931,3014:239:2,149.5,-3,0,0,1.77418 -92932,3015:130:1,150,-3,0,0,1.74077 -92933,3015:130:2,150.5,-3,0,0,1.73578 -92934,3015:131:1,151,-3,0,0,1.75338 -92935,3015:131:2,151.5,-3,0,0,1.78217 -92936,3015:132:1,152,-3,0,0,1.81831 -92937,3015:132:2,152.5,-3,0,0,1.83585 -92938,3015:133:1,153,-3,0,0,1.85694 -92939,3015:133:2,153.5,-3,0,0,1.86935 -92940,3015:134:1,154,-3,0,0,1.91159 -92941,3015:134:2,154.5,-3,0,0,1.9533 -92942,3015:235:1,155,-3,0,0,2.0018 -92943,3015:235:2,155.5,-3,0,0,2.0541 -92944,3015:236:1,156,-3,0,0,2.12911 -92945,3015:236:2,156.5,-3,0,0,2.20726 -92946,3015:237:1,157,-3,0,0,2.24406 -92947,3015:237:2,157.5,-3,0,0,2.2228 -92948,3015:238:1,158,-3,0,0,2.13366 -92949,3015:238:2,158.5,-3,0,0,2.05833 -92950,3015:239:1,159,-3,0,0,1.97155 -92951,3015:239:2,159.5,-3,0,0,1.89498 -92952,3016:130:1,160,-3,0,0,1.84176 -92953,3016:130:2,160.5,-3,0,0,1.82706 -92954,3016:131:1,161,-3,0,0,1.79859 -92955,3016:131:2,161.5,-3,0,0,1.7958 -92956,3016:132:1,162,-3,0,0,1.7958 -92957,3016:132:2,162.5,-3,0,0,1.77151 -92958,3016:133:1,163,-3,0,0,1.74827 -92959,3016:133:2,163.5,-3,0,0,1.71644 -92960,3016:134:1,164,-3,0,0,1.6978 -92961,3016:134:2,164.5,-3,0,0,1.68874 -92962,3016:235:1,165,-3,0,0,1.6733 -92963,3016:235:2,165.5,-3,0,0,1.65622 -92964,3016:236:1,166,-3,0,0,1.6604 -92965,3016:236:2,166.5,-3,0,0,1.68874 -92966,3016:237:1,167,-3,0,0,1.73091 -92967,3016:237:2,167.5,-3,0,0,1.78217 -92968,3016:238:1,168,-3,0,0,1.82121 -92969,3016:238:2,168.5,-3,0,0,1.85087 -92970,3016:239:1,169,-3,0,0,1.88203 -92971,3016:239:2,169.5,-3,0,0,1.90495 -92972,3017:130:1,170,-3,0,0,1.93566 -92973,3017:130:2,170.5,-3,0,0,1.9865 -92974,3017:131:1,171,-3,0,0,2.07534 -92975,3017:131:2,171.5,-3,0,0,2.11982 -92976,3017:132:1,172,-3,0,0,2.15257 -92977,3017:132:2,172.5,-3,0,0,2.10173 -92978,3017:133:1,173,-3,0,0,2.08407 -92979,3017:133:2,173.5,-3,0,0,2.08407 -92980,3017:134:1,174,-3,0,0,2.05003 -92981,3017:134:2,174.5,-3,0,0,2.03361 -92982,3017:235:1,175,-3,0,0,2.00964 -92983,3017:235:2,175.5,-3,0,0,2.0018 -92984,3017:236:1,176,-3,0,0,1.99803 -92985,3017:236:2,176.5,-3,0,0,1.98281 -92986,3017:237:1,177,-3,0,0,1.98281 -92987,3017:237:2,177.5,-3,0,0,2.00964 -92988,3017:238:1,178,-3,0,0,2.00571 -92989,3017:238:2,178.5,-3,0,0,1.9865 -92990,3017:239:1,179,-3,0,0,1.96425 -92991,3017:239:2,179.5,-3,0,0,1.95693 -92992,3018:130:1,180,-3,0,0,1.96058 -92993,5018:120:3,-180,-2.5,0,0,1.92518 -92994,5017:229:4,-179.5,-2.5,0,0,1.93908 -92995,5017:229:3,-179,-2.5,0,0,1.93908 -92996,5017:228:4,-178.5,-2.5,0,0,1.96058 -92997,5017:228:3,-178,-2.5,0,0,1.99032 -92998,5017:227:4,-177.5,-2.5,0,0,2.02146 -92999,5017:227:3,-177,-2.5,0,0,2.11982 -93000,5017:226:4,-176.5,-2.5,0,0,2.25499 -93001,5017:226:3,-176,-2.5,0,0,2.37212 -93002,5017:225:4,-175.5,-2.5,0,0,2.39761 -93003,5017:225:3,-175,-2.5,0,0,2.51487 -93004,5017:124:4,-174.5,-2.5,0,0,2.61557 -93005,5017:124:3,-174,-2.5,0,0,2.8029 -93006,5017:123:4,-173.5,-2.5,0,0,3.07755 -93007,5017:123:3,-173,-2.5,0,0,3.39778 -93008,5017:122:4,-172.5,-2.5,0,0,3.9419 -93009,5017:122:3,-172,-2.5,0,0,5.20333 -93010,5017:121:4,-171.5,-2.5,0,0,7.19111 -93011,5017:121:3,-171,-2.5,0,0,11.8805 -93012,5017:120:4,-170.5,-2.5,0,0,49.6485 -93013,5017:120:3,-170,-2.5,0,0,-19.8636 -93014,5016:229:4,-169.5,-2.5,0,0,-7.67154 -93015,5016:229:3,-169,-2.5,0,0,-5.11707 -93016,5016:228:4,-168.5,-2.5,0,0,-4.04367 -93017,5016:228:3,-168,-2.5,0,0,-3.13377 -93018,5016:227:4,-167.5,-2.5,0,0,-2.35276 -93019,5016:227:3,-167,-2.5,0,0,-1.90598 -93020,5016:226:4,-166.5,-2.5,0,0,-1.47956 -93021,5016:226:3,-166,-2.5,0,0,-1.34786 -93022,5016:225:4,-165.5,-2.5,0,0,-1.12483 -93023,5016:225:3,-165,-2.5,0,0,-0.851124 -93024,5016:124:4,-164.5,-2.5,0,0,-0.698171 -93025,5016:124:3,-164,-2.5,0,0,-0.635115 -93026,5016:123:4,-163.5,-2.5,0,0,-0.580804 -93027,5016:123:3,-163,-2.5,0,0,-0.531667 -93028,5016:122:4,-162.5,-2.5,0,0,-0.498889 -93029,5016:122:3,-162,-2.5,0,0,-0.477367 -93030,5016:121:4,-161.5,-2.5,0,0,-0.455404 -93031,5016:121:3,-161,-2.5,0,0,-0.448109 -93032,5016:120:4,-160.5,-2.5,0,0,-0.428643 -93033,5016:120:3,-160,-2.5,0,0,-0.408825 -93034,5015:229:4,-159.5,-2.5,0,0,-0.391527 -93035,5015:229:3,-159,-2.5,0,0,-0.362052 -93036,5015:228:4,-158.5,-2.5,0,0,-0.35424 -93037,5015:228:3,-158,-2.5,0,0,-0.345498 -93038,5015:227:4,-157.5,-2.5,0,0,-0.337569 -93039,5015:227:3,-157,-2.5,0,0,-0.326645 -93040,5015:226:4,-156.5,-2.5,0,0,-0.310556 -93041,5015:226:3,-156,-2.5,0,0,-0.302642 -93042,5015:225:4,-155.5,-2.5,0,0,-0.30607 -93043,5015:225:3,-155,-2.5,0,0,-0.311556 -93044,5015:124:4,-154.5,-2.5,0,0,-0.315124 -93045,5015:124:3,-154,-2.5,0,0,-0.270349 -93046,5015:123:4,-153.5,-2.5,0,0,-0.23095 -93047,5015:123:3,-153,-2.5,0,0,-0.217624 -93048,5015:122:4,-152.5,-2.5,0,0,-0.209428 -93049,5015:122:3,-152,-2.5,0,0,-0.202756 -93050,5015:121:4,-151.5,-2.5,0,0,-0.198646 -93051,5015:121:3,-151,-2.5,0,0,-0.19654 -93052,5015:120:4,-150.5,-2.5,0,0,-0.19413 -93053,5015:120:3,-150,-2.5,0,0,-0.192205 -93054,5014:229:4,-149.5,-2.5,0,0,-0.190752 -93055,5014:229:3,-149,-2.5,0,0,-0.189312 -93056,5014:228:4,-148.5,-2.5,0,0,-0.18799 -93057,5014:228:3,-148,-2.5,0,0,-0.186887 -93058,5014:227:4,-147.5,-2.5,0,0,-0.185741 -93059,5014:227:3,-147,-2.5,0,0,-0.184396 -93060,5014:226:4,-146.5,-2.5,0,0,-0.18268 -93061,5014:226:3,-146,-2.5,0,0,-0.181285 -93062,5014:225:4,-145.5,-2.5,0,0,-0.180805 -93063,5014:225:3,-145,-2.5,0,0,-0.180354 -93064,5014:124:4,-144.5,-2.5,0,0,-0.180128 -93065,5014:124:3,-144,-2.5,0,0,-0.179852 -93066,5014:123:4,-143.5,-2.5,0,0,-0.179302 -93067,5014:123:3,-143,-2.5,0,0,-0.178457 -93068,5014:122:4,-142.5,-2.5,0,0,-0.177444 -93069,5014:122:3,-142,-2.5,0,0,-0.176216 -93070,5014:121:4,-141.5,-2.5,0,0,-0.174975 -93071,5014:121:3,-141,-2.5,0,0,-0.17384 -93072,5014:120:4,-140.5,-2.5,0,0,-0.17288 -93073,5014:120:3,-140,-2.5,0,0,-0.17188 -93074,5013:229:4,-139.5,-2.5,0,0,-0.170956 -93075,5013:229:3,-139,-2.5,0,0,-0.170132 -93076,5013:228:4,-138.5,-2.5,0,0,-0.169219 -93077,5013:228:3,-138,-2.5,0,0,-0.16822 -93078,5013:227:4,-137.5,-2.5,0,0,-0.167526 -93079,5013:227:3,-137,-2.5,0,0,-0.167158 -93080,5013:226:4,-136.5,-2.5,0,0,-0.166699 -93081,5013:226:3,-136,-2.5,0,0,-0.166035 -93082,5013:225:4,-135.5,-2.5,0,0,-0.16517 -93083,5013:225:3,-135,-2.5,0,0,-0.16395 -93084,5013:124:4,-134.5,-2.5,0,0,-0.162896 -93085,5013:124:3,-134,-2.5,0,0,-0.161872 -93086,5013:123:4,-133.5,-2.5,0,0,-0.16068 -93087,5013:123:3,-133,-2.5,0,0,-0.159475 -93088,5013:122:4,-132.5,-2.5,0,0,-0.158216 -93089,5013:122:3,-132,-2.5,0,0,-0.157204 -93090,5013:121:4,-131.5,-2.5,0,0,-0.156285 -93091,5013:121:3,-131,-2.5,0,0,-0.15535 -93092,5013:120:4,-130.5,-2.5,0,0,-0.154612 -93093,5013:120:3,-130,-2.5,0,0,-0.154254 -93094,5012:229:4,-129.5,-2.5,0,0,-0.154381 -93095,5012:229:3,-129,-2.5,0,0,-0.154128 -93096,5012:228:4,-128.5,-2.5,0,0,-0.153856 -93097,5012:228:3,-128,-2.5,0,0,-0.153605 -93098,5012:227:4,-127.5,-2.5,0,0,-0.153229 -93099,5012:227:3,-127,-2.5,0,0,-0.15273 -93100,5012:226:4,-126.5,-2.5,0,0,-0.152151 -93101,5012:226:3,-126,-2.5,0,0,-0.15147 -93102,5012:225:4,-125.5,-2.5,0,0,-0.150772 -93103,5012:225:3,-125,-2.5,0,0,-0.150038 -93104,5012:124:4,-124.5,-2.5,0,0,-0.149206 -93105,5012:124:3,-124,-2.5,0,0,-0.14836 -93106,5012:123:4,-123.5,-2.5,0,0,-0.147399 -93107,5012:123:3,-123,-2.5,0,0,-0.146465 -93108,5012:122:4,-122.5,-2.5,0,0,-0.145617 -93109,5012:122:3,-122,-2.5,0,0,-0.144988 -93110,5012:121:4,-121.5,-2.5,0,0,-0.144695 -93111,5012:121:3,-121,-2.5,0,0,-0.144227 -93112,5012:120:4,-120.5,-2.5,0,0,-0.143703 -93113,5012:120:3,-120,-2.5,0,0,-0.143084 -93114,5011:229:4,-119.5,-2.5,0,0,-0.142488 -93115,5011:229:3,-119,-2.5,0,0,-0.141684 -93116,5011:228:4,-118.5,-2.5,0,0,-0.140848 -93117,5011:228:3,-118,-2.5,0,0,-0.139941 -93118,5011:227:4,-117.5,-2.5,0,0,-0.139105 -93119,5011:227:3,-117,-2.5,0,0,-0.138513 -93120,5011:226:4,-116.5,-2.5,0,0,-0.137857 -93121,5011:226:3,-116,-2.5,0,0,-0.137204 -93122,5011:225:4,-115.5,-2.5,0,0,-0.136753 -93123,5011:225:3,-115,-2.5,0,0,-0.136369 -93124,5011:124:4,-114.5,-2.5,0,0,-0.136144 -93125,5011:124:3,-114,-2.5,0,0,-0.136084 -93126,5011:123:4,-113.5,-2.5,0,0,-0.13605 -93127,5011:123:3,-113,-2.5,0,0,-0.13605 -93128,5011:122:4,-112.5,-2.5,0,0,-0.13605 -93129,5011:122:3,-112,-2.5,0,0,-0.13605 -93130,5011:121:4,-111.5,-2.5,0,0,-0.13605 -93131,5011:121:3,-111,-2.5,0,0,-0.13605 -93132,5011:120:4,-110.5,-2.5,0,0,-0.13605 -93133,5011:120:3,-110,-2.5,0,0,-0.13605 -93134,5010:229:4,-109.5,-2.5,0,0,-0.13605 -93135,5010:229:3,-109,-2.5,0,0,-0.13605 -93136,5010:228:4,-108.5,-2.5,0,0,-0.13605 -93137,5010:228:3,-108,-2.5,0,0,-0.13605 -93138,5010:227:4,-107.5,-2.5,0,0,-0.13605 -93139,5010:227:3,-107,-2.5,0,0,-0.13605 -93140,5010:226:4,-106.5,-2.5,0,0,-0.13605 -93141,5010:226:3,-106,-2.5,0,0,-0.13605 -93142,5010:225:4,-105.5,-2.5,0,0,-0.13605 -93143,5010:225:3,-105,-2.5,0,0,-0.13605 -93144,5010:124:4,-104.5,-2.5,0,0,-0.13605 -93145,5010:124:3,-104,-2.5,0,0,-0.13605 -93146,5010:123:4,-103.5,-2.5,0,0,-0.13605 -93147,5010:123:3,-103,-2.5,0,0,-0.13605 -93148,5010:122:4,-102.5,-2.5,0,0,-0.13605 -93149,5010:122:3,-102,-2.5,0,0,-0.13605 -93150,5010:121:4,-101.5,-2.5,0,0,-0.13605 -93151,5010:121:3,-101,-2.5,0,0,-0.13605 -93152,5010:120:4,-100.5,-2.5,0,0,-0.13605 -93153,5010:120:3,-100,-2.5,0,0,-0.13605 -93154,5009:229:4,-99.5,-2.5,0,0,-0.13605 -93155,5009:229:3,-99,-2.5,0,0,-0.13605 -93156,5009:228:4,-98.5,-2.5,0,0,-0.13605 -93157,5009:228:3,-98,-2.5,0,0,-0.13605 -93158,5009:227:4,-97.5,-2.5,0,0,-0.13605 -93159,5009:227:3,-97,-2.5,0,0,-0.13605 -93160,5009:226:4,-96.5,-2.5,0,0,-0.13605 -93161,5009:226:3,-96,-2.5,0,0,-0.13605 -93162,5009:225:4,-95.5,-2.5,0,0,-0.13605 -93163,5009:225:3,-95,-2.5,0,0,-0.13605 -93164,5009:124:4,-94.5,-2.5,0,0,-0.13605 -93165,5009:124:3,-94,-2.5,0,0,-0.13605 -93166,5009:123:4,-93.5,-2.5,0,0,-0.13605 -93167,5009:123:3,-93,-2.5,0,0,-0.13605 -93168,5009:122:4,-92.5,-2.5,0,0,-0.13605 -93169,5009:122:3,-92,-2.5,0,0,-0.13605 -93170,5009:120:4,-90.5,-2.5,0,0,-0.13605 -93171,5009:120:3,-90,-2.5,0,0,-0.13605 -93172,5008:229:4,-89.5,-2.5,0,0,-0.13605 -93173,5008:229:3,-89,-2.5,0,0,-0.136106 -93174,5008:228:4,-88.5,-2.5,0,0,-0.136937 -93175,5008:228:3,-88,-2.5,0,0,-0.138041 -93176,5008:227:4,-87.5,-2.5,0,0,-0.138885 -93177,5008:227:3,-87,-2.5,0,0,-0.140054 -93178,5008:226:4,-86.5,-2.5,0,0,-0.140942 -93179,5008:226:3,-86,-2.5,0,0,-0.141532 -93180,5008:225:4,-85.5,-2.5,0,0,-0.141894 -93181,5008:225:3,-85,-2.5,0,0,-0.1422 -93182,5008:124:4,-84.5,-2.5,0,0,-0.143393 -93183,5008:124:3,-84,-2.5,0,0,-0.145106 -93184,5008:123:4,-83.5,-2.5,0,0,-0.146802 -93185,5008:123:3,-83,-2.5,0,0,-0.147539 -93186,5008:122:4,-82.5,-2.5,0,0,-0.146842 -93187,5008:122:3,-82,-2.5,0,0,-0.146882 -93188,5008:121:4,-81.5,-2.5,0,0,-0.148944 -93189,5008:121:3,-81,-2.5,0,0,-0.151387 -93190,5008:120:4,-80.5,-2.5,0,0,-0.153105 -93191,5004:228:4,-48.5,-2.5,0,0,-0.197735 -93192,5004:228:3,-48,-2.5,0,0,-0.193133 -93193,5004:227:4,-47.5,-2.5,0,0,-0.190805 -93194,5004:227:3,-47,-2.5,0,0,-0.186992 -93195,5004:226:4,-46.5,-2.5,0,0,-0.183831 -93196,5004:226:3,-46,-2.5,0,0,-0.181461 -93197,5004:225:4,-45.5,-2.5,0,0,-0.179752 -93198,5004:225:3,-45,-2.5,0,0,-0.17651 -93199,5004:124:4,-44.5,-2.5,0,0,-0.176143 -93200,5004:124:3,-44,-2.5,0,0,-0.178705 -93201,5004:123:4,-43.5,-2.5,0,0,-0.178457 -93202,5004:123:3,-43,-2.5,0,0,-0.178556 -93203,5004:122:4,-42.5,-2.5,0,0,-0.178531 -93204,5004:122:3,-42,-2.5,0,0,-0.178631 -93205,5004:121:4,-41.5,-2.5,0,0,-0.178556 -93206,5004:121:3,-41,-2.5,0,0,-0.178309 -93207,5004:120:4,-40.5,-2.5,0,0,-0.177888 -93208,5004:120:3,-40,-2.5,0,0,-0.177222 -93209,5003:229:4,-39.5,-2.5,0,0,-0.176339 -93210,5003:229:3,-39,-2.5,0,0,-0.175437 -93211,5003:228:4,-38.5,-2.5,0,0,-0.174733 -93212,5003:228:3,-38,-2.5,0,0,-0.174202 -93213,5003:227:4,-37.5,-2.5,0,0,-0.173889 -93214,5003:227:3,-37,-2.5,0,0,-0.173576 -93215,5003:226:4,-36.5,-2.5,0,0,-0.172689 -93216,5003:226:3,-36,-2.5,0,0,-0.171642 -93217,5003:225:4,-35.5,-2.5,0,0,-0.170697 -93218,5003:225:3,-35,-2.5,0,0,-0.169968 -93219,5003:124:4,-34.5,-2.5,0,0,-0.169266 -93220,5003:124:3,-34,-2.5,0,0,-0.16887 -93221,5003:123:4,-33.5,-2.5,0,0,-0.168312 -93222,5003:123:3,-33,-2.5,0,0,-0.167734 -93223,5003:122:4,-32.5,-2.5,0,0,-0.167111 -93224,5003:122:3,-32,-2.5,0,0,-0.166446 -93225,5003:121:4,-31.5,-2.5,0,0,-0.165442 -93226,5003:121:3,-31,-2.5,0,0,-0.164287 -93227,5003:120:4,-30.5,-2.5,0,0,-0.16303 -93228,5003:120:3,-30,-2.5,0,0,-0.161739 -93229,5002:229:4,-29.5,-2.5,0,0,-0.160944 -93230,5002:229:3,-29,-2.5,0,0,-0.160087 -93231,5002:228:4,-28.5,-2.5,0,0,-0.159388 -93232,5002:228:3,-28,-2.5,0,0,-0.159192 -93233,5002:227:4,-27.5,-2.5,0,0,-0.159127 -93234,5002:227:3,-27,-2.5,0,0,-0.15891 -93235,5002:226:4,-26.5,-2.5,0,0,-0.158628 -93236,5002:226:3,-26,-2.5,0,0,-0.158346 -93237,5002:225:4,-25.5,-2.5,0,0,-0.158108 -93238,5002:225:3,-25,-2.5,0,0,-0.157677 -93239,5002:124:4,-24.5,-2.5,0,0,-0.157011 -93240,5002:124:3,-24,-2.5,0,0,-0.156327 -93241,5002:123:4,-23.5,-2.5,0,0,-0.155753 -93242,5002:123:3,-23,-2.5,0,0,-0.155456 -93243,5002:122:4,-22.5,-2.5,0,0,-0.155435 -93244,5002:122:3,-22,-2.5,0,0,-0.155456 -93245,5002:121:4,-21.5,-2.5,0,0,-0.155838 -93246,5002:121:3,-21,-2.5,0,0,-0.156264 -93247,5002:120:4,-20.5,-2.5,0,0,-0.156584 -93248,5002:120:3,-20,-2.5,0,0,-0.156926 -93249,5001:229:4,-19.5,-2.5,0,0,-0.157226 -93250,5001:229:3,-19,-2.5,0,0,-0.157763 -93251,5001:228:4,-18.5,-2.5,0,0,-0.15854 -93252,5001:228:3,-18,-2.5,0,0,-0.159432 -93253,5001:227:4,-17.5,-2.5,0,0,-0.160131 -93254,5001:227:3,-17,-2.5,0,0,-0.160768 -93255,5001:226:4,-16.5,-2.5,0,0,-0.161296 -93256,5001:226:3,-16,-2.5,0,0,-0.161872 -93257,5001:225:4,-15.5,-2.5,0,0,-0.162472 -93258,5001:225:3,-15,-2.5,0,0,-0.163254 -93259,5001:124:4,-14.5,-2.5,0,0,-0.164243 -93260,5001:124:3,-14,-2.5,0,0,-0.165283 -93261,5001:123:4,-13.5,-2.5,0,0,-0.16624 -93262,5001:123:3,-13,-2.5,0,0,-0.167411 -93263,5001:122:4,-12.5,-2.5,0,0,-0.168707 -93264,5001:122:3,-12,-2.5,0,0,-0.16957 -93265,5001:121:4,-11.5,-2.5,0,0,-0.170461 -93266,5001:121:3,-11,-2.5,0,0,-0.171571 -93267,5001:120:4,-10.5,-2.5,0,0,-0.173024 -93268,5001:120:3,-10,-2.5,0,0,-0.174467 -93269,5000:229:4,-9.5,-2.5,0,0,-0.175559 -93270,5000:229:3,-9,-2.5,0,0,-0.176755 -93271,5000:228:4,-8.5,-2.5,0,0,-0.177987 -93272,5000:228:3,-8,-2.5,0,0,-0.179054 -93273,5000:227:4,-7.5,-2.5,0,0,-0.179877 -93274,5000:227:3,-7,-2.5,0,0,-0.180604 -93275,5000:226:4,-6.5,-2.5,0,0,-0.181411 -93276,5000:226:3,-6,-2.5,0,0,-0.182349 -93277,5000:225:4,-5.5,-2.5,0,0,-0.183395 -93278,5000:225:3,-5,-2.5,0,0,-0.184165 -93279,5000:124:4,-4.5,-2.5,0,0,-0.185171 -93280,5000:124:3,-4,-2.5,0,0,-0.186157 -93281,5000:123:4,-3.5,-2.5,0,0,-0.187149 -93282,5000:123:3,-3,-2.5,0,0,-0.18799 -93283,5000:122:4,-2.5,-2.5,0,0,-0.188596 -93284,5000:122:3,-2,-2.5,0,0,-0.189021 -93285,5000:121:4,-1.5,-2.5,0,0,-0.189524 -93286,5000:121:3,-1,-2.5,0,0,-0.18995 -93287,5000:120:4,-0.5,-2.5,0,0,-0.190591 -93288,3000:120:4,0,-2.5,0,0,-0.190564 -93289,3000:120:4,0.5,-2.5,0,0,-0.19019 -93290,3000:121:3,1,-2.5,0,0,-0.189711 -93291,3000:121:4,1.5,-2.5,0,0,-0.189391 -93292,3000:122:3,2,-2.5,0,0,-0.1891 -93293,3000:122:4,2.5,-2.5,0,0,-0.188861 -93294,3000:123:3,3,-2.5,0,0,-0.188729 -93295,3000:123:4,3.5,-2.5,0,0,-0.188729 -93296,3000:124:3,4,-2.5,0,0,-0.188676 -93297,3000:124:4,4.5,-2.5,0,0,-0.189127 -93298,3000:225:3,5,-2.5,0,0,-0.189977 -93299,3000:225:4,5.5,-2.5,0,0,-0.191746 -93300,3000:226:3,6,-2.5,0,0,-0.194305 -93301,3000:226:4,6.5,-2.5,0,0,-0.196452 -93302,3000:227:3,7,-2.5,0,0,-0.197735 -93303,3000:227:4,7.5,-2.5,0,0,-0.197958 -93304,3000:228:3,8,-2.5,0,0,-0.196144 -93305,3000:228:4,8.5,-2.5,0,0,-0.191531 -93306,3000:229:3,9,-2.5,0,0,-0.192584 -93307,3004:122:4,42.5,-2.5,0,0,-0.159584 -93308,3004:123:3,43,-2.5,0,0,-0.191558 -93309,3004:123:4,43.5,-2.5,0,0,-0.199653 -93310,3004:124:3,44,-2.5,0,0,-0.205991 -93311,3004:124:4,44.5,-2.5,0,0,-0.191719 -93312,3004:225:3,45,-2.5,0,0,-0.19309 -93313,3004:225:4,45.5,-2.5,0,0,-0.195047 -93314,3004:226:3,46,-2.5,0,0,-0.194915 -93315,3004:226:4,46.5,-2.5,0,0,-0.195703 -93316,3004:227:3,47,-2.5,0,0,-0.194872 -93317,3004:227:4,47.5,-2.5,0,0,-0.19387 -93318,3004:228:3,48,-2.5,0,0,-0.193609 -93319,3004:228:4,48.5,-2.5,0,0,-0.196407 -93320,3004:229:3,49,-2.5,0,0,-0.213159 -93321,3004:229:4,49.5,-2.5,0,0,-0.269509 -93322,3005:120:3,50,-2.5,0,0,-0.32134 -93323,3005:120:4,50.5,-2.5,0,0,-0.605343 -93324,3005:121:3,51,-2.5,0,0,-1.93875 -93325,3005:121:4,51.5,-2.5,0,0,9.06305 -93326,3005:122:3,52,-2.5,0,0,2.82273 -93327,3005:122:4,52.5,-2.5,0,0,2.83278 -93328,3005:123:3,53,-2.5,0,0,2.66585 -93329,3005:123:4,53.5,-2.5,0,0,2.45783 -93330,3005:124:3,54,-2.5,0,0,2.45783 -93331,3005:124:4,54.5,-2.5,0,0,2.58348 -93332,3005:225:3,55,-2.5,0,0,2.94863 -93333,3005:225:4,55.5,-2.5,0,0,5.16119 -93334,3005:226:3,56,-2.5,0,0,-150.165 -93335,3005:226:4,56.5,-2.5,0,0,-14.1166 -93336,3005:227:3,57,-2.5,0,0,-11.159 -93337,3005:227:4,57.5,-2.5,0,0,-4.47573 -93338,3005:228:3,58,-2.5,0,0,-2.05393 -93339,3005:228:4,58.5,-2.5,0,0,-1.13419 -93340,3005:229:3,59,-2.5,0,0,-0.815751 -93341,3005:229:4,59.5,-2.5,0,0,-0.724249 -93342,3006:120:3,60,-2.5,0,0,-0.675289 -93343,3006:120:4,60.5,-2.5,0,0,-0.642894 -93344,3006:121:3,61,-2.5,0,0,-0.636409 -93345,3006:121:4,61.5,-2.5,0,0,-0.656102 -93346,3006:122:3,62,-2.5,0,0,-0.676699 -93347,3006:122:4,62.5,-2.5,0,0,-0.685157 -93348,3006:123:3,63,-2.5,0,0,-0.686596 -93349,3006:123:4,63.5,-2.5,0,0,-0.690938 -93350,3006:124:3,64,-2.5,0,0,-0.70113 -93351,3006:124:4,64.5,-2.5,0,0,-0.710385 -93352,3006:225:3,65,-2.5,0,0,-0.713789 -93353,3006:225:4,65.5,-2.5,0,0,-0.72072 -93354,3006:226:3,66,-2.5,0,0,-0.73789 -93355,3006:226:4,66.5,-2.5,0,0,-0.77181 -93356,3006:227:3,67,-2.5,0,0,-0.830247 -93357,3006:227:4,67.5,-2.5,0,0,-0.888782 -93358,3006:228:3,68,-2.5,0,0,-0.946498 -93359,3006:228:4,68.5,-2.5,0,0,-1.01791 -93360,3006:229:3,69,-2.5,0,0,-1.10661 -93361,3006:229:4,69.5,-2.5,0,0,-1.21812 -93362,3007:120:3,70,-2.5,0,0,-1.34786 -93363,3007:120:4,70.5,-2.5,0,0,-1.52291 -93364,3007:121:3,71,-2.5,0,0,-1.79421 -93365,3007:121:4,71.5,-2.5,0,0,-2.11607 -93366,3007:122:3,72,-2.5,0,0,-2.51409 -93367,3007:122:4,72.5,-2.5,0,0,-3.01284 -93368,3007:123:4,73.5,-2.5,0,0,-3.71515 -93369,3007:124:3,74,-2.5,0,0,-3.9669 -93370,3007:124:4,74.5,-2.5,0,0,-3.92893 -93371,3007:225:3,75,-2.5,0,0,-3.34562 -93372,3007:225:4,75.5,-2.5,0,0,-2.67613 -93373,3007:226:3,76,-2.5,0,0,-2.29319 -93374,3007:226:4,76.5,-2.5,0,0,-1.99513 -93375,3007:227:3,77,-2.5,0,0,-1.71947 -93376,3007:227:4,77.5,-2.5,0,0,-1.57645 -93377,3007:228:3,78,-2.5,0,0,-1.47956 -93378,3007:228:4,78.5,-2.5,0,0,-1.34786 -93379,3007:229:3,79,-2.5,0,0,-1.34191 -93380,3007:229:4,79.5,-2.5,0,0,-1.43114 -93381,3008:120:3,80,-2.5,0,0,-1.42461 -93382,3008:120:4,80.5,-2.5,0,0,-1.34786 -93383,3008:121:3,81,-2.5,0,0,-1.28327 -93384,3008:121:4,81.5,-2.5,0,0,-1.21288 -93385,3008:122:3,82,-2.5,0,0,-1.16758 -93386,3008:122:4,82.5,-2.5,0,0,-1.1483 -93387,3008:123:3,83,-2.5,0,0,-1.1202 -93388,3008:123:4,83.5,-2.5,0,0,-1.18234 -93389,3008:124:3,84,-2.5,0,0,-1.36652 -93390,3008:124:4,84.5,-2.5,0,0,-1.60018 -93391,3008:225:3,85,-2.5,0,0,-1.75619 -93392,3008:225:4,85.5,-2.5,0,0,-2.23613 -93393,3008:226:3,86,-2.5,0,0,-3.8549 -93394,3008:226:4,86.5,-2.5,0,0,-3.8916 -93395,3008:227:3,87,-2.5,0,0,-4.12441 -93396,3008:227:4,87.5,-2.5,0,0,-4.67245 -93397,3008:228:3,88,-2.5,0,0,-6.37632 -93398,3008:228:4,88.5,-2.5,0,0,-10.9011 -93399,3008:229:3,89,-2.5,0,0,-1157.87 -93400,3008:229:4,89.5,-2.5,0,0,12.6794 -93401,3009:120:3,90,-2.5,0,0,20.7737 -93402,3009:120:4,90.5,-2.5,0,0,-19.0885 -93403,3009:121:3,91,-2.5,0,0,-7.80297 -93404,3009:121:4,91.5,-2.5,0,0,-4.52385 -93405,3009:122:3,92,-2.5,0,0,-3.23664 -93406,3009:122:4,92.5,-2.5,0,0,-2.71427 -93407,3009:123:3,93,-2.5,0,0,-2.12896 -93408,3009:123:4,93.5,-2.5,0,0,-1.47956 -93409,3009:124:3,94,-2.5,0,0,-1.09328 -93410,3009:124:4,94.5,-2.5,0,0,-0.964552 -93411,3009:225:3,95,-2.5,0,0,-0.779764 -93412,3009:225:4,95.5,-2.5,0,0,-0.725999 -93413,3009:226:3,96,-2.5,0,0,-0.761432 -93414,3009:226:4,96.5,-2.5,0,0,-0.857283 -93415,3009:227:3,97,-2.5,0,0,-1.0462 -93416,3009:227:4,97.5,-2.5,0,0,-1.32978 -93417,3009:228:3,98,-2.5,0,0,-1.66656 -93418,3009:228:4,98.5,-2.5,0,0,-3.06051 -93419,3009:229:3,99,-2.5,0,0,-38.0195 -93420,3009:229:4,99.5,-2.5,0,0,10.3629 -93421,3010:120:3,100,-2.5,0,0,9.66698 -93422,3010:124:3,104,-2.5,0,0,2.17196 -93423,3010:124:4,104.5,-2.5,0,0,4.31529 -93424,3010:225:3,105,-2.5,0,0,31.7976 -93425,3010:225:4,105.5,-2.5,0,0,-1.54559 -93426,3010:226:3,106,-2.5,0,0,-0.685157 -93427,3010:226:4,106.5,-2.5,0,0,-0.619982 -93428,3010:227:3,107,-2.5,0,0,-0.640273 -93429,3010:227:4,107.5,-2.5,0,0,-0.699648 -93430,3010:228:3,108,-2.5,0,0,-1.01791 -93431,3010:228:4,108.5,-2.5,0,0,-2.81481 -93432,3010:229:3,109,-2.5,0,0,2.683 -93433,3011:228:3,118,-2.5,0,0,-0.493376 -93434,3011:228:4,118.5,-2.5,0,0,-0.434748 -93435,3011:229:3,119,-2.5,0,0,-0.476491 -93436,3011:229:4,119.5,-2.5,0,0,-0.491574 -93437,3012:120:3,120,-2.5,0,0,-0.440967 -93438,3012:120:4,120.5,-2.5,0,0,-1.08443 -93439,3012:121:3,121,-2.5,0,0,3.87624 -93440,3012:121:4,121.5,-2.5,0,0,2.20726 -93441,3012:122:3,122,-2.5,0,0,1.82121 -93442,3012:122:4,122.5,-2.5,0,0,1.59904 -93443,3012:123:3,123,-2.5,0,0,1.45193 -93444,3012:123:4,123.5,-2.5,0,0,1.42747 -93445,3012:124:3,124,-2.5,0,0,1.40692 -93446,3012:124:4,124.5,-2.5,0,0,1.36181 -93447,3012:225:3,125,-2.5,0,0,1.36854 -93448,3012:225:4,125.5,-2.5,0,0,1.34697 -93449,3012:226:3,126,-2.5,0,0,1.55186 -93450,3012:226:4,126.5,-2.5,0,0,1.93566 -93451,3012:227:3,127,-2.5,0,0,2.78372 -93452,3012:227:4,127.5,-2.5,0,0,1.57394 -93453,3012:228:4,128.5,-2.5,0,0,2.42385 -93454,3012:229:3,129,-2.5,0,0,-3.5842 -93455,3012:229:4,129.5,-2.5,0,0,-2.38378 -93456,3013:120:3,130,-2.5,0,0,-1.77489 -93457,3013:120:4,130.5,-2.5,0,0,1.92184 -93458,3013:122:3,132,-2.5,0,0,4.03457 -93459,3013:122:4,132.5,-2.5,0,0,6.29856 -93460,3013:123:3,133,-2.5,0,0,2.75514 -93461,3013:123:4,133.5,-2.5,0,0,2.63214 -93462,3013:124:3,134,-2.5,0,0,2.41073 -93463,3013:124:4,134.5,-2.5,0,0,2.04171 -93464,3013:225:3,135,-2.5,0,0,2.44421 -93465,3013:225:4,135.5,-2.5,0,0,2.76458 -93466,3013:226:3,136,-2.5,0,0,3.30674 -93467,3013:226:4,136.5,-2.5,0,0,3.51269 -93468,3013:227:3,137,-2.5,0,0,3.38202 -93469,3013:227:4,137.5,-2.5,0,0,3.9419 -93470,3013:228:3,138,-2.5,0,0,5.33314 -93471,3013:228:4,138.5,-2.5,0,0,8.17922 -93472,3013:229:3,139,-2.5,0,0,13.5991 -93473,3013:229:4,139.5,-2.5,0,0,20.7737 -93474,3014:120:3,140,-2.5,0,0,24.5323 -93475,3014:120:4,140.5,-2.5,0,0,12.3981 -93476,3014:121:3,141,-2.5,0,0,6.56821 -93477,3014:121:4,141.5,-2.5,0,0,5.16119 -93478,3014:122:3,142,-2.5,0,0,4.5816 -93479,3014:122:4,142.5,-2.5,0,0,4.34331 -93480,3014:123:3,143,-2.5,0,0,3.9646 -93481,3014:123:4,143.5,-2.5,0,0,3.61829 -93482,3014:124:3,144,-2.5,0,0,3.33627 -93483,3014:124:4,144.5,-2.5,0,0,3.08966 -93484,3014:225:3,145,-2.5,0,0,2.84261 -93485,3014:225:4,145.5,-2.5,0,0,2.65726 -93486,3014:226:3,146,-2.5,0,0,2.50749 -93487,3014:226:4,146.5,-2.5,0,0,2.47187 -93488,3014:227:3,147,-2.5,0,0,2.44421 -93489,3014:227:4,147.5,-2.5,0,0,2.29989 -93490,3014:228:3,148,-2.5,0,0,2.09278 -93491,3014:228:4,148.5,-2.5,0,0,1.93215 -93492,3014:229:3,149,-2.5,0,0,1.83288 -93493,3014:229:4,149.5,-2.5,0,0,1.77418 -93494,3015:120:3,150,-2.5,0,0,1.75338 -93495,3015:120:4,150.5,-2.5,0,0,1.77685 -93496,3015:121:3,151,-2.5,0,0,1.82121 -93497,3015:121:4,151.5,-2.5,0,0,1.84478 -93498,3015:122:3,152,-2.5,0,0,1.84478 -93499,3015:122:4,152.5,-2.5,0,0,1.83884 -93500,3015:123:3,153,-2.5,0,0,1.82121 -93501,3015:123:4,153.5,-2.5,0,0,1.83884 -93502,3015:124:3,154,-2.5,0,0,1.89179 -93503,3015:124:4,154.5,-2.5,0,0,1.96058 -93504,3015:225:3,155,-2.5,0,0,2.0136 -93505,3015:225:4,155.5,-2.5,0,0,2.02954 -93506,3015:226:3,156,-2.5,0,0,2.03361 -93507,3015:226:4,156.5,-2.5,0,0,2.04586 -93508,3015:227:3,157,-2.5,0,0,2.09724 -93509,3015:227:4,157.5,-2.5,0,0,2.1479 -93510,3015:228:3,158,-2.5,0,0,2.14313 -93511,3015:228:4,158.5,-2.5,0,0,2.10173 -93512,3015:229:3,159,-2.5,0,0,2.04586 -93513,3015:229:4,159.5,-2.5,0,0,1.97904 -93514,3016:120:3,160,-2.5,0,0,1.9184 -93515,3016:120:4,160.5,-2.5,0,0,1.88851 -93516,3016:121:3,161,-2.5,0,0,1.86316 -93517,3016:121:4,161.5,-2.5,0,0,1.83585 -93518,3016:122:3,162,-2.5,0,0,1.80412 -93519,3016:122:4,162.5,-2.5,0,0,1.79036 -93520,3016:123:3,163,-2.5,0,0,1.7663 -93521,3016:123:4,163.5,-2.5,0,0,1.72846 -93522,3016:124:3,164,-2.5,0,0,1.68874 -93523,3016:124:4,164.5,-2.5,0,0,1.66677 -93524,3016:225:3,165,-2.5,0,0,1.64992 -93525,3016:225:4,165.5,-2.5,0,0,1.64377 -93526,3016:226:3,166,-2.5,0,0,1.65827 -93527,3016:226:4,166.5,-2.5,0,0,1.68649 -93528,3016:227:3,167,-2.5,0,0,1.72366 -93529,3016:227:4,167.5,-2.5,0,0,1.75596 -93530,3016:228:3,168,-2.5,0,0,1.78761 -93531,3016:228:4,168.5,-2.5,0,0,1.80139 -93532,3016:229:3,169,-2.5,0,0,1.81831 -93533,3016:229:4,169.5,-2.5,0,0,1.83288 -93534,3017:120:3,170,-2.5,0,0,1.84176 -93535,3017:120:4,170.5,-2.5,0,0,1.85385 -93536,3017:121:3,171,-2.5,0,0,1.88851 -93537,3017:121:4,171.5,-2.5,0,0,1.88203 -93538,3017:122:3,172,-2.5,0,0,1.85694 -93539,3017:122:4,172.5,-2.5,0,0,1.86316 -93540,3017:123:3,173,-2.5,0,0,1.92184 -93541,3017:123:4,173.5,-2.5,0,0,1.96794 -93542,3017:124:3,174,-2.5,0,0,1.98281 -93543,3017:124:4,174.5,-2.5,0,0,1.98281 -93544,3017:225:3,175,-2.5,0,0,1.97904 -93545,3017:225:4,175.5,-2.5,0,0,2.00964 -93546,3017:226:3,176,-2.5,0,0,2.03759 -93547,3017:226:4,176.5,-2.5,0,0,2.05003 -93548,3017:227:3,177,-2.5,0,0,2.02146 -93549,3017:227:4,177.5,-2.5,0,0,1.98281 -93550,3017:228:3,178,-2.5,0,0,1.96425 -93551,3017:228:4,178.5,-2.5,0,0,1.9498 -93552,3017:229:3,179,-2.5,0,0,1.94621 -93553,3017:229:4,179.5,-2.5,0,0,1.92184 -93554,3018:120:3,180,-2.5,0,0,1.92518 -93555,5018:120:1,-180,-2,0,0,1.97155 -93556,5017:229:2,-179.5,-2,0,0,1.99416 -93557,5017:229:1,-179,-2,0,0,2.01758 -93558,5017:228:2,-178.5,-2,0,0,2.04171 -93559,5017:228:1,-178,-2,0,0,2.08848 -93560,5017:227:2,-177.5,-2,0,0,2.17693 -93561,5017:227:1,-177,-2,0,0,2.35974 -93562,5017:226:2,-176.5,-2,0,0,2.59147 -93563,5017:226:1,-176,-2,0,0,2.85284 -93564,5017:225:2,-175.5,-2,0,0,2.89439 -93565,5017:225:1,-175,-2,0,0,2.94863 -93566,5017:124:2,-174.5,-2,0,0,3.1279 -93567,5017:124:1,-174,-2,0,0,3.69321 -93568,5017:123:2,-173.5,-2,0,0,5.04044 -93569,5017:123:1,-173,-2,0,0,7.85456 -93570,5017:122:2,-172.5,-2,0,0,18.6505 -93571,5017:122:1,-172,-2,0,0,-29.1935 -93572,5017:121:2,-171.5,-2,0,0,-8.52457 -93573,5017:121:1,-171,-2,0,0,-5.43688 -93574,5017:120:2,-170.5,-2,0,0,-3.8916 -93575,5017:120:1,-170,-2,0,0,-3.01284 -93576,5016:229:2,-169.5,-2,0,0,-2.41501 -93577,5016:229:1,-169,-2,0,0,-2.12896 -93578,5016:228:2,-168.5,-2,0,0,-1.94954 -93579,5016:228:1,-168,-2,0,0,-1.73753 -93580,5016:227:2,-167.5,-2,0,0,-1.56078 -93581,5016:227:1,-167,-2,0,0,-1.41127 -93582,5016:226:2,-166.5,-2,0,0,-1.15311 -93583,5016:226:1,-166,-2,0,0,-0.983124 -93584,5016:225:2,-165.5,-2,0,0,-0.785105 -93585,5016:225:1,-165,-2,0,0,-0.621233 -93586,5016:124:2,-164.5,-2,0,0,-0.531667 -93587,5016:124:1,-164,-2,0,0,-0.493376 -93588,5016:123:2,-163.5,-2,0,0,-0.467041 -93589,5016:123:1,-163,-2,0,0,-0.450516 -93590,5016:122:2,-162.5,-2,0,0,-0.434748 -93591,5016:122:1,-162,-2,0,0,-0.413111 -93592,5016:121:2,-161.5,-2,0,0,-0.386839 -93593,5016:121:1,-161,-2,0,0,-0.373874 -93594,5016:120:2,-160.5,-2,0,0,-0.373236 -93595,5016:120:1,-160,-2,0,0,-0.360236 -93596,5015:229:2,-159.5,-2,0,0,-0.35424 -93597,5015:229:1,-159,-2,0,0,-0.353067 -93598,5015:228:2,-158.5,-2,0,0,-0.359019 -93599,5015:228:1,-158,-2,0,0,-0.339808 -93600,5015:227:2,-157.5,-2,0,0,-0.311556 -93601,5015:227:1,-157,-2,0,0,-0.295913 -93602,5015:226:2,-156.5,-2,0,0,-0.288455 -93603,5015:226:1,-156,-2,0,0,-0.289367 -93604,5015:225:2,-155.5,-2,0,0,-0.291686 -93605,5015:225:1,-155,-2,0,0,-0.284798 -93606,5015:124:2,-154.5,-2,0,0,-0.28033 -93607,5015:124:1,-154,-2,0,0,-0.272482 -93608,5015:123:2,-153.5,-2,0,0,-0.265317 -93609,5015:123:1,-153,-2,0,0,-0.243644 -93610,5015:122:2,-152.5,-2,0,0,-0.222767 -93611,5015:122:1,-152,-2,0,0,-0.205606 -93612,5015:121:2,-151.5,-2,0,0,-0.197602 -93613,5015:121:1,-151,-2,0,0,-0.194872 -93614,5015:120:2,-150.5,-2,0,0,-0.192854 -93615,5015:120:1,-150,-2,0,0,-0.191262 -93616,5014:229:2,-149.5,-2,0,0,-0.18987 -93617,5014:229:1,-149,-2,0,0,-0.188596 -93618,5014:228:2,-148.5,-2,0,0,-0.187018 -93619,5014:228:1,-148,-2,0,0,-0.185222 -93620,5014:227:2,-147.5,-2,0,0,-0.183548 -93621,5014:227:1,-147,-2,0,0,-0.182833 -93622,5014:226:2,-146.5,-2,0,0,-0.181943 -93623,5014:226:1,-146,-2,0,0,-0.18136 -93624,5014:225:2,-145.5,-2,0,0,-0.180378 -93625,5014:225:1,-145,-2,0,0,-0.179677 -93626,5014:124:2,-144.5,-2,0,0,-0.179253 -93627,5014:124:1,-144,-2,0,0,-0.178333 -93628,5014:123:2,-143.5,-2,0,0,-0.177222 -93629,5014:123:1,-143,-2,0,0,-0.17629 -93630,5014:122:2,-142.5,-2,0,0,-0.175363 -93631,5014:122:1,-142,-2,0,0,-0.174781 -94069,3016:120:1,160,-2,0,0,1.88203 -93632,5014:121:2,-141.5,-2,0,0,-0.174177 -93633,5014:121:1,-141,-2,0,0,-0.173624 -93634,5014:120:2,-140.5,-2,0,0,-0.172689 -93635,5014:120:1,-140,-2,0,0,-0.172023 -93636,5013:229:2,-139.5,-2,0,0,-0.172284 -93637,5013:229:1,-139,-2,0,0,-0.172499 -93638,5013:228:2,-138.5,-2,0,0,-0.172332 -93639,5013:228:1,-138,-2,0,0,-0.171737 -93640,5013:227:2,-137.5,-2,0,0,-0.170744 -93641,5013:227:1,-137,-2,0,0,-0.16936 -93642,5013:226:2,-136.5,-2,0,0,-0.167873 -93643,5013:226:1,-136,-2,0,0,-0.166515 -93644,5013:225:2,-135.5,-2,0,0,-0.165465 -93645,5013:225:1,-135,-2,0,0,-0.164785 -93646,5013:124:2,-134.5,-2,0,0,-0.164084 -93647,5013:124:1,-134,-2,0,0,-0.163702 -93648,5013:123:2,-133.5,-2,0,0,-0.163276 -93649,5013:123:1,-133,-2,0,0,-0.162874 -93650,5013:122:2,-132.5,-2,0,0,-0.162294 -93651,5013:122:1,-132,-2,0,0,-0.161142 -93652,5013:121:2,-131.5,-2,0,0,-0.159453 -93653,5013:121:1,-131,-2,0,0,-0.157312 -93654,5013:120:2,-130.5,-2,0,0,-0.155838 -93655,5013:120:1,-130,-2,0,0,-0.155923 -93656,5012:229:2,-129.5,-2,0,0,-0.15605 -93657,5012:229:1,-129,-2,0,0,-0.15603 -93658,5012:228:2,-128.5,-2,0,0,-0.155796 -93659,5012:228:1,-128,-2,0,0,-0.155372 -93660,5012:227:2,-127.5,-2,0,0,-0.15478 -93661,5012:227:1,-127,-2,0,0,-0.154087 -93662,5012:226:2,-126.5,-2,0,0,-0.153375 -93663,5012:226:1,-126,-2,0,0,-0.153021 -93664,5012:225:2,-125.5,-2,0,0,-0.152834 -93665,5012:225:1,-125,-2,0,0,-0.152523 -93666,5012:124:2,-124.5,-2,0,0,-0.151902 -93667,5012:124:1,-124,-2,0,0,-0.150977 -93668,5012:123:2,-123.5,-2,0,0,-0.149713 -93669,5012:123:1,-123,-2,0,0,-0.14832 -93670,5012:122:2,-122.5,-2,0,0,-0.14712 -93671,5012:122:1,-122,-2,0,0,-0.14605 -93672,5012:121:2,-121.5,-2,0,0,-0.1454 -93673,5012:121:1,-121,-2,0,0,-0.145165 -93674,5012:120:2,-120.5,-2,0,0,-0.144871 -93675,5012:120:1,-120,-2,0,0,-0.144656 -93676,5011:229:2,-119.5,-2,0,0,-0.14448 -93677,5011:229:1,-119,-2,0,0,-0.143974 -93678,5011:228:2,-118.5,-2,0,0,-0.142622 -93679,5011:228:1,-118,-2,0,0,-0.141151 -93680,5011:227:2,-117.5,-2,0,0,-0.140563 -93681,5011:227:1,-117,-2,0,0,-0.140092 -93682,5011:226:2,-116.5,-2,0,0,-0.140054 -93683,5011:226:1,-116,-2,0,0,-0.139922 -93684,5011:225:2,-115.5,-2,0,0,-0.139603 -93685,5011:225:1,-115,-2,0,0,-0.13919 -93686,5011:124:2,-114.5,-2,0,0,-0.13858 -93687,5011:124:1,-114,-2,0,0,-0.138108 -93688,5011:123:2,-113.5,-2,0,0,-0.137924 -93689,5011:123:1,-113,-2,0,0,-0.138025 -93690,5011:122:2,-112.5,-2,0,0,-0.13826 -93691,5011:122:1,-112,-2,0,0,-0.138479 -93692,5011:121:2,-111.5,-2,0,0,-0.138783 -93693,5011:121:1,-111,-2,0,0,-0.139326 -93694,5011:120:2,-110.5,-2,0,0,-0.140111 -93695,5011:120:1,-110,-2,0,0,-0.140867 -93696,5010:229:2,-109.5,-2,0,0,-0.14178 -93697,5010:229:1,-109,-2,0,0,-0.142584 -93698,5010:228:2,-108.5,-2,0,0,-0.142853 -93699,5010:228:1,-108,-2,0,0,-0.142564 -93700,5010:227:2,-107.5,-2,0,0,-0.142392 -93701,5010:227:1,-107,-2,0,0,-0.142564 -93702,5010:226:2,-106.5,-2,0,0,-0.142853 -93703,5010:226:1,-106,-2,0,0,-0.143104 -93704,5010:225:2,-105.5,-2,0,0,-0.143413 -93705,5010:225:1,-105,-2,0,0,-0.143529 -93706,5010:124:2,-104.5,-2,0,0,-0.14347 -93707,5010:124:1,-104,-2,0,0,-0.143355 -93708,5010:123:2,-103.5,-2,0,0,-0.1432 -93709,5010:123:1,-103,-2,0,0,-0.142968 -93710,5010:122:2,-102.5,-2,0,0,-0.142622 -93711,5010:122:1,-102,-2,0,0,-0.14199 -93712,5010:121:2,-101.5,-2,0,0,-0.141056 -93713,5010:121:1,-101,-2,0,0,-0.140111 -93714,5010:120:2,-100.5,-2,0,0,-0.139509 -93715,5010:120:1,-100,-2,0,0,-0.13919 -93716,5009:229:2,-99.5,-2,0,0,-0.139378 -93717,5009:229:1,-99,-2,0,0,-0.139453 -93718,5009:228:2,-98.5,-2,0,0,-0.139359 -93719,5009:228:1,-98,-2,0,0,-0.139678 -93720,5009:227:2,-97.5,-2,0,0,-0.140526 -93721,5009:227:1,-97,-2,0,0,-0.14098 -93722,5009:226:2,-96.5,-2,0,0,-0.140886 -93723,5009:226:1,-96,-2,0,0,-0.140224 -93724,5009:225:2,-95.5,-2,0,0,-0.140886 -93725,5009:225:1,-95,-2,0,0,-0.141818 -93726,5009:124:2,-94.5,-2,0,0,-0.140942 -93727,5009:124:1,-94,-2,0,0,-0.138665 -93728,5009:123:2,-93.5,-2,0,0,-0.136139 -93729,5009:123:1,-93,-2,0,0,-0.13605 -93730,5009:122:2,-92.5,-2,0,0,-0.13605 -93731,5009:122:1,-92,-2,0,0,-0.13605 -93732,5009:121:2,-91.5,-2,0,0,-0.13605 -93733,5009:121:1,-91,-2,0,0,-0.143761 -93734,5009:120:2,-90.5,-2,0,0,-0.145322 -93735,5009:120:1,-90,-2,0,0,-0.146822 -93736,5008:229:2,-89.5,-2,0,0,-0.148099 -93737,5008:229:1,-89,-2,0,0,-0.148883 -93738,5008:228:2,-88.5,-2,0,0,-0.150139 -93739,5008:228:1,-88,-2,0,0,-0.151552 -93740,5008:227:2,-87.5,-2,0,0,-0.152668 -93741,5008:227:1,-87,-2,0,0,-0.153271 -93742,5008:226:2,-86.5,-2,0,0,-0.153731 -93743,5008:226:1,-86,-2,0,0,-0.153626 -93744,5008:225:2,-85.5,-2,0,0,-0.153313 -93745,5008:225:1,-85,-2,0,0,-0.15273 -93746,5008:124:2,-84.5,-2,0,0,-0.152543 -93747,5008:124:1,-84,-2,0,0,-0.153167 -93748,5008:123:2,-83.5,-2,0,0,-0.154275 -93749,5008:123:1,-83,-2,0,0,-0.154401 -93750,5008:122:2,-82.5,-2,0,0,-0.154275 -93751,5008:122:1,-82,-2,0,0,-0.15459 -93752,5008:121:2,-81.5,-2,0,0,-0.156434 -93753,5008:121:1,-81,-2,0,0,-0.158996 -93754,5008:120:2,-80.5,-2,0,0,-0.159781 -93755,5005:120:1,-50,-2,0,0,-0.197557 -93756,5004:229:2,-49.5,-2,0,0,-0.196805 -93757,5004:229:1,-49,-2,0,0,-0.194261 -93758,5004:228:2,-48.5,-2,0,0,-0.191423 -93759,5004:228:1,-48,-2,0,0,-0.190297 -93760,5004:227:2,-47.5,-2,0,0,-0.184757 -93761,5004:227:1,-47,-2,0,0,-0.177863 -93762,5004:226:2,-46.5,-2,0,0,-0.176363 -93763,5004:226:1,-46,-2,0,0,-0.17629 -93764,5004:225:2,-45.5,-2,0,0,-0.178408 -93765,5004:225:1,-45,-2,0,0,-0.179003 -93766,5004:124:2,-44.5,-2,0,0,-0.178507 -93767,5004:124:1,-44,-2,0,0,-0.178655 -93768,5004:123:2,-43.5,-2,0,0,-0.17883 -93769,5004:123:1,-43,-2,0,0,-0.179228 -93770,5004:122:2,-42.5,-2,0,0,-0.179827 -93771,5004:122:1,-42,-2,0,0,-0.180579 -93772,5004:121:2,-41.5,-2,0,0,-0.181487 -93773,5004:121:1,-41,-2,0,0,-0.181715 -93774,5004:120:2,-40.5,-2,0,0,-0.181664 -93775,5004:120:1,-40,-2,0,0,-0.18136 -93776,5003:229:2,-39.5,-2,0,0,-0.180756 -93777,5003:229:1,-39,-2,0,0,-0.179427 -93778,5003:228:2,-38.5,-2,0,0,-0.177567 -93779,5003:228:1,-38,-2,0,0,-0.175656 -93780,5003:227:2,-37.5,-2,0,0,-0.174057 -93781,5003:227:1,-37,-2,0,0,-0.173264 -93782,5003:226:2,-36.5,-2,0,0,-0.172403 -93783,5003:226:1,-36,-2,0,0,-0.171571 -93784,5003:225:2,-35.5,-2,0,0,-0.171121 -93785,5003:225:1,-35,-2,0,0,-0.170438 -93786,5003:124:2,-34.5,-2,0,0,-0.169687 -93787,5003:124:1,-34,-2,0,0,-0.1688 -93788,5003:123:2,-33.5,-2,0,0,-0.168035 -93789,5003:123:1,-33,-2,0,0,-0.167734 -93790,5003:122:2,-32.5,-2,0,0,-0.167803 -93791,5003:122:1,-32,-2,0,0,-0.168127 -93792,5003:121:2,-31.5,-2,0,0,-0.168498 -93793,5003:121:1,-31,-2,0,0,-0.168127 -93794,5003:120:2,-30.5,-2,0,0,-0.166928 -93795,5003:120:1,-30,-2,0,0,-0.165215 -93796,5002:229:2,-29.5,-2,0,0,-0.163298 -93797,5002:229:1,-29,-2,0,0,-0.162383 -93798,5002:228:2,-28.5,-2,0,0,-0.16294 -93799,5002:228:1,-28,-2,0,0,-0.162695 -93800,5002:227:2,-27.5,-2,0,0,-0.162072 -93801,5002:227:1,-27,-2,0,0,-0.161363 -93802,5002:226:2,-26.5,-2,0,0,-0.161186 -93803,5002:226:1,-26,-2,0,0,-0.161518 -93804,5002:225:2,-25.5,-2,0,0,-0.161473 -93805,5002:225:1,-25,-2,0,0,-0.160833 -93806,5002:124:2,-24.5,-2,0,0,-0.159584 -93807,5002:124:1,-24,-2,0,0,-0.159148 -93808,5002:123:2,-23.5,-2,0,0,-0.159628 -93809,5002:123:1,-23,-2,0,0,-0.15989 -93810,5002:122:2,-22.5,-2,0,0,-0.16079 -93811,5002:122:1,-22,-2,0,0,-0.162028 -93812,5002:121:2,-21.5,-2,0,0,-0.16303 -93813,5002:121:1,-21,-2,0,0,-0.164084 -93814,5002:120:2,-20.5,-2,0,0,-0.164875 -93815,5002:120:1,-20,-2,0,0,-0.16592 -93816,5001:229:2,-19.5,-2,0,0,-0.167181 -93817,5001:229:1,-19,-2,0,0,-0.16815 -93818,5001:228:2,-18.5,-2,0,0,-0.16908 -93819,5001:228:1,-18,-2,0,0,-0.169921 -93820,5001:227:2,-17.5,-2,0,0,-0.170862 -93821,5001:227:1,-17,-2,0,0,-0.171571 -93822,5001:226:2,-16.5,-2,0,0,-0.172237 -93823,5001:226:1,-16,-2,0,0,-0.172857 -93824,5001:225:2,-15.5,-2,0,0,-0.173768 -93825,5001:225:1,-15,-2,0,0,-0.175 -93826,5001:124:2,-14.5,-2,0,0,-0.176535 -93827,5001:124:1,-14,-2,0,0,-0.178036 -93828,5001:123:2,-13.5,-2,0,0,-0.179652 -93829,5001:123:1,-13,-2,0,0,-0.18131 -93830,5001:122:2,-12.5,-2,0,0,-0.183011 -93831,5001:122:1,-12,-2,0,0,-0.184576 -93832,5001:121:2,-11.5,-2,0,0,-0.186053 -93833,5001:121:1,-11,-2,0,0,-0.187753 -93834,5001:120:2,-10.5,-2,0,0,-0.189233 -93835,5001:120:1,-10,-2,0,0,-0.190217 -93836,5000:229:2,-9.5,-2,0,0,-0.191047 -93837,5000:229:1,-9,-2,0,0,-0.191881 -93838,5000:228:2,-8.5,-2,0,0,-0.192665 -93839,5000:228:1,-8,-2,0,0,-0.193609 -93840,5000:227:2,-7.5,-2,0,0,-0.194479 -93841,5000:227:1,-7,-2,0,0,-0.195353 -93842,5000:226:2,-6.5,-2,0,0,-0.196275 -93843,5000:226:1,-6,-2,0,0,-0.197292 -93844,5000:225:2,-5.5,-2,0,0,-0.198047 -93845,5000:225:1,-5,-2,0,0,-0.19896 -93846,5000:124:2,-4.5,-2,0,0,-0.202205 -93847,5000:124:1,-4,-2,0,0,-0.207644 -93848,5000:123:2,-3.5,-2,0,0,-0.214263 -93849,5000:123:1,-3,-2,0,0,-0.218264 -93850,5000:122:2,-2.5,-2,0,0,-0.219854 -93851,5000:122:1,-2,-2,0,0,-0.220827 -93852,5000:121:2,-1.5,-2,0,0,-0.222767 -93853,5000:121:1,-1,-2,0,0,-0.227119 -93854,5000:120:2,-0.5,-2,0,0,-0.238467 -93855,3000:120:2,0,-2,0,0,-0.239192 -93856,3000:120:2,0.5,-2,0,0,-0.236285 -93857,3000:121:1,1,-2,0,0,-0.233063 -93858,3000:121:2,1.5,-2,0,0,-0.228162 -93859,3000:122:1,2,-2,0,0,-0.222449 -93860,3000:122:2,2.5,-2,0,0,-0.216986 -93861,3000:123:1,3,-2,0,0,-0.212892 -93862,3000:123:2,3.5,-2,0,0,-0.212617 -93863,3000:124:1,4,-2,0,0,-0.212892 -93864,3000:124:2,4.5,-2,0,0,-0.218264 -93865,3000:225:1,5,-2,0,0,-0.223755 -93866,3000:225:2,5.5,-2,0,0,-0.232004 -93867,3000:226:1,6,-2,0,0,-0.240301 -93868,3000:226:2,6.5,-2,0,0,-0.252431 -93869,3000:227:1,7,-2,0,0,-0.270776 -93870,3000:227:2,7.5,-2,0,0,-0.276812 -93871,3000:228:1,8,-2,0,0,-0.281211 -93872,3000:228:2,8.5,-2,0,0,-0.290298 -93873,3000:229:1,9,-2,0,0,-0.284798 -93874,3004:123:2,43.5,-2,0,0,-0.180906 -93875,3004:124:1,44,-2,0,0,-0.197647 -93876,3004:124:2,44.5,-2,0,0,-0.187149 -93877,3004:225:1,45,-2,0,0,-0.18342 -93878,3004:225:2,45.5,-2,0,0,-0.187385 -93879,3004:226:1,46,-2,0,0,-0.188148 -93880,3004:226:2,46.5,-2,0,0,-0.187149 -93881,3004:227:1,47,-2,0,0,-0.188121 -93882,3004:227:2,47.5,-2,0,0,-0.188915 -93883,3004:228:1,48,-2,0,0,-0.188016 -93884,3004:228:2,48.5,-2,0,0,-0.191316 -93885,3004:229:1,49,-2,0,0,-0.204251 -93886,3004:229:2,49.5,-2,0,0,-0.282109 -93887,3005:120:1,50,-2,0,0,-0.32134 -93888,3005:120:2,50.5,-2,0,0,-0.450516 -93889,3005:121:1,51,-2,0,0,-0.73375 -93890,3005:121:2,51.5,-2,0,0,-2.23613 -93891,3005:122:1,52,-2,0,0,-1.41792 -93892,3005:122:2,52.5,-2,0,0,-0.960878 -93893,3005:123:1,53,-2,0,0,-1.21288 -93894,3005:123:2,53.5,-2,0,0,-2.04216 -93895,3005:124:1,54,-2,0,0,-14.5436 -93896,3005:124:2,54.5,-2,0,0,5.3785 -93897,3005:225:1,55,-2,0,0,2.77411 -93898,3005:225:2,55.5,-2,0,0,2.37212 -93899,3005:226:1,56,-2,0,0,2.48591 -93900,3005:226:2,56.5,-2,0,0,3.2774 -93901,3005:227:1,57,-2,0,0,8.79208 -93902,3005:227:2,57.5,-2,0,0,-3.52225 -93903,3005:228:1,58,-2,0,0,-1.09774 -93904,3005:228:2,58.5,-2,0,0,-0.790583 -93905,3005:229:1,59,-2,0,0,-0.649471 -93906,3005:229:2,59.5,-2,0,0,-0.534688 -93907,3006:120:1,60,-2,0,0,-0.447303 -93908,3006:120:2,60.5,-2,0,0,-0.402483 -93909,3006:121:1,61,-2,0,0,-0.366361 -93910,3006:121:2,61.5,-2,0,0,-0.342638 -93911,3006:122:1,62,-2,0,0,-0.340375 -93912,3006:122:2,62.5,-2,0,0,-0.357826 -93913,3006:123:1,63,-2,0,0,-0.38093 -93914,3006:123:2,63.5,-2,0,0,-0.408825 -93915,3006:124:1,64,-2,0,0,-0.431682 -93916,3006:124:2,64.5,-2,0,0,-0.453758 -93917,3006:225:1,65,-2,0,0,-0.487068 -93918,3006:225:2,65.5,-2,0,0,-0.523704 -93919,3006:226:1,66,-2,0,0,-0.561951 -93920,3006:226:2,66.5,-2,0,0,-0.601731 -93921,3006:227:1,67,-2,0,0,-0.636409 -93922,3006:227:2,67.5,-2,0,0,-0.66562 -93923,3006:228:1,68,-2,0,0,-0.683766 -93924,3006:228:2,68.5,-2,0,0,-0.693809 -93925,3006:229:1,69,-2,0,0,-0.70113 -93926,3006:229:2,69.5,-2,0,0,-0.707056 -93927,3007:120:1,70,-2,0,0,-0.725999 -93928,3007:120:2,70.5,-2,0,0,-0.790583 -93929,3007:121:1,71,-2,0,0,-0.91868 -93930,3007:121:2,71.5,-2,0,0,-1.07583 -93931,3007:122:1,72,-2,0,0,-1.26652 -93932,3007:122:2,72.5,-2,0,0,-1.47245 -93933,3007:123:2,73.5,-2,0,0,-0.742128 -93934,3007:124:1,74,-2,0,0,-1.29457 -93935,3007:124:2,74.5,-2,0,0,-1.74682 -93936,3007:225:1,75,-2,0,0,-2.20871 -93937,3007:225:2,75.5,-2,0,0,-2.46395 -93938,3007:226:1,76,-2,0,0,-2.35276 -93939,3007:226:2,76.5,-2,0,0,-2.23613 -93940,3007:227:1,77,-2,0,0,-2.16801 -93941,3007:227:2,77.5,-2,0,0,-2.01824 -93942,3007:228:1,78,-2,0,0,-1.92773 -93943,3007:228:2,78.5,-2,0,0,-1.74682 -93944,3007:229:1,79,-2,0,0,-1.71947 -93945,3007:229:2,79.5,-2,0,0,-1.66656 -93946,3008:120:1,80,-2,0,0,-1.8336 -93947,3008:120:2,80.5,-2,0,0,-1.98357 -93948,3008:121:1,81,-2,0,0,-2.05393 -93949,3008:121:2,81.5,-2,0,0,-2.12896 -93950,3008:122:1,82,-2,0,0,-2.12896 -93951,3008:122:2,82.5,-2,0,0,-2.10331 -93952,3008:123:1,83,-2,0,0,-2.04216 -93953,3008:123:2,83.5,-2,0,0,-1.98357 -93954,3008:124:1,84,-2,0,0,-2.01824 -93955,3008:124:2,84.5,-2,0,0,-2.10331 -93956,3008:225:1,85,-2,0,0,-2.18143 -93957,3008:225:2,85.5,-2,0,0,-2.23613 -93958,3008:226:1,86,-2,0,0,-2.35276 -93959,3008:226:2,86.5,-2,0,0,-2.69538 -93960,3008:227:1,87,-2,0,0,-3.10876 -93961,3008:227:2,87.5,-2,0,0,-4.16587 -93962,3008:228:1,88,-2,0,0,-3.7844 -93963,3008:228:2,88.5,-2,0,0,-4.29357 -93964,3008:229:1,89,-2,0,0,-5.24151 -93965,3008:229:2,89.5,-2,0,0,-8.52457 -93966,3009:120:1,90,-2,0,0,-26.1207 -93967,3009:120:2,90.5,-2,0,0,25.7098 -93968,3009:121:1,91,-2,0,0,204.138 -93969,3009:121:2,91.5,-2,0,0,-11.159 -93970,3009:122:1,92,-2,0,0,-2.75397 -93971,3009:122:2,92.5,-2,0,0,-1.68399 -93972,3009:123:1,93,-2,0,0,-1.20768 -93973,3009:123:2,93.5,-2,0,0,-0.869702 -93974,3009:124:1,94,-2,0,0,-0.77181 -93975,3009:124:2,94.5,-2,0,0,-0.735784 -93976,3009:225:1,95,-2,0,0,-0.748484 -93977,3009:225:2,95.5,-2,0,0,-0.839089 -93978,3009:226:1,96,-2,0,0,-0.901879 -93979,3009:226:2,96.5,-2,0,0,-1.1202 -93980,3009:227:1,97,-2,0,0,-1.41792 -93981,3009:227:2,97.5,-2,0,0,-2.15513 -93982,3009:228:1,98,-2,0,0,-4.38224 -93983,3009:228:2,98.5,-2,0,0,10.3629 -93984,3009:229:1,99,-2,0,0,3.63682 -93985,3010:124:1,104,-2,0,0,3.16692 -93986,3010:124:2,104.5,-2,0,0,-2.96716 -93987,3010:225:1,105,-2,0,0,-1.08884 -93988,3010:225:2,105.5,-2,0,0,-0.556592 -93989,3010:226:1,106,-2,0,0,-0.412407 -93990,3010:226:2,106.5,-2,0,0,-0.4332 -93991,3010:227:1,107,-2,0,0,-0.553371 -93992,3010:227:2,107.5,-2,0,0,-0.787837 -93993,3010:228:1,108,-2,0,0,-3.06051 -93994,3010:228:2,108.5,-2,0,0,4.51878 -93995,3010:229:1,109,-2,0,0,2.11065 -93996,3011:228:1,118,-2,0,0,-0.298764 -93997,3011:228:2,118.5,-2,0,0,-0.312575 -93998,3011:229:1,119,-2,0,0,-0.346077 -93999,3011:229:2,119.5,-2,0,0,-0.329338 -94000,3012:120:1,120,-2,0,0,-0.396268 -94001,3012:225:1,125,-2,0,0,1.34074 -94002,3012:225:2,125.5,-2,0,0,1.33549 -94003,3012:226:1,126,-2,0,0,2.14313 -94004,3012:226:2,126.5,-2,0,0,5.11981 -94005,3012:227:1,127,-2,0,0,6.64017 -94006,3012:227:2,127.5,-2,0,0,4.78046 -94007,3012:229:1,129,-2,0,0,2.01758 -94008,3012:229:2,129.5,-2,0,0,-35.3361 -94009,3013:120:1,130,-2,0,0,21.6052 -94010,3013:120:2,130.5,-2,0,0,3.89806 -94011,3013:121:1,131,-2,0,0,2.91592 -94012,3013:121:2,131.5,-2,0,0,3.2774 -94013,3013:122:1,132,-2,0,0,3.9876 -94014,3013:122:2,132.5,-2,0,0,4.20802 -94015,3013:123:1,133,-2,0,0,3.56455 -94016,3013:123:2,133.5,-2,0,0,3.24912 -94017,3013:124:1,134,-2,0,0,3.54688 -94018,3013:124:2,134.5,-2,0,0,4.20802 -94019,3013:225:1,135,-2,0,0,5.9932 -94020,3013:225:2,135.5,-2,0,0,114.146 -94021,3013:226:1,136,-2,0,0,-15.973 -94022,3013:226:2,136.5,-2,0,0,-60.8518 -94023,3013:227:1,137,-2,0,0,33.825 -94024,3013:227:2,137.5,-2,0,0,45.362 -94025,3013:228:1,138,-2,0,0,-14.5436 -94026,3013:228:2,138.5,-2,0,0,-7.18855 -94027,3013:229:1,139,-2,0,0,-6.37632 -94028,3013:229:2,139.5,-2,0,0,-6.11512 -94029,3014:120:1,140,-2,0,0,-7.93871 -94030,3014:120:2,140.5,-2,0,0,337.61 -94031,3014:121:1,141,-2,0,0,6.64017 -94032,3014:121:2,141.5,-2,0,0,6.11211 -94033,3014:122:1,142,-2,0,0,6.43133 -94034,3014:122:2,142.5,-2,0,0,6.64017 -94035,3014:123:1,143,-2,0,0,5.66824 -94036,3014:123:2,143.5,-2,0,0,4.45881 -94037,3014:124:1,144,-2,0,0,3.49563 -94038,3014:124:2,144.5,-2,0,0,3.04081 -94039,3014:225:1,145,-2,0,0,2.683 -94040,3014:225:2,145.5,-2,0,0,2.41073 -94041,3014:226:1,146,-2,0,0,2.14313 -94042,3014:226:2,146.5,-2,0,0,1.99032 -94043,3014:227:1,147,-2,0,0,1.89498 -94044,3014:227:2,147.5,-2,0,0,1.8789 -94045,3014:228:1,148,-2,0,0,1.89498 -94046,3014:228:2,148.5,-2,0,0,1.89498 -94047,3014:229:1,149,-2,0,0,1.87252 -94048,3014:229:2,149.5,-2,0,0,1.85087 -94049,3015:120:1,150,-2,0,0,1.85385 -94050,3015:120:2,150.5,-2,0,0,1.84176 -94051,3015:121:1,151,-2,0,0,1.81543 -94052,3015:121:2,151.5,-2,0,0,1.79303 -94053,3015:122:1,152,-2,0,0,1.83585 -94054,3015:122:2,152.5,-2,0,0,1.90161 -94055,3015:123:1,153,-2,0,0,1.96058 -94056,3015:123:2,153.5,-2,0,0,2.07534 -94057,3015:124:1,154,-2,0,0,2.16718 -94058,3015:124:2,154.5,-2,0,0,2.20726 -94059,3015:225:1,155,-2,0,0,2.21245 -94060,3015:225:2,155.5,-2,0,0,2.15257 -94061,3015:226:1,156,-2,0,0,2.11065 -94062,3015:226:2,156.5,-2,0,0,2.09724 -94063,3015:227:1,157,-2,0,0,2.09724 -94064,3015:227:2,157.5,-2,0,0,2.0797 -94065,3015:228:1,158,-2,0,0,2.0541 -94066,3015:228:2,158.5,-2,0,0,2.0136 -94067,3015:229:1,159,-2,0,0,1.96425 -94068,3015:229:2,159.5,-2,0,0,1.91498 -94070,3016:120:2,160.5,-2,0,0,1.8757 -94071,3016:121:1,161,-2,0,0,1.8789 -94072,3016:121:2,161.5,-2,0,0,1.88203 -94073,3016:122:1,162,-2,0,0,1.8789 -94074,3016:122:2,162.5,-2,0,0,1.86316 -94075,3016:123:1,163,-2,0,0,1.82706 -94076,3016:123:2,163.5,-2,0,0,1.79859 -94077,3016:124:1,164,-2,0,0,1.77685 -94078,3016:124:2,164.5,-2,0,0,1.77418 -94079,3016:225:1,165,-2,0,0,1.79036 -94080,3016:225:2,165.5,-2,0,0,1.80979 -94081,3016:226:1,166,-2,0,0,1.82992 -94082,3016:226:2,166.5,-2,0,0,1.83884 -94083,3016:227:1,167,-2,0,0,1.83884 -94084,3016:227:2,167.5,-2,0,0,1.82706 -94085,3016:228:1,168,-2,0,0,1.82121 -94086,3016:228:2,168.5,-2,0,0,1.81831 -94087,3016:229:1,169,-2,0,0,1.82121 -94088,3016:229:2,169.5,-2,0,0,1.7958 -94089,3017:120:1,170,-2,0,0,1.78488 -94090,3017:120:2,170.5,-2,0,0,1.76886 -94091,3017:121:1,171,-2,0,0,1.76886 -94092,3017:121:2,171.5,-2,0,0,1.7663 -94093,3017:122:1,172,-2,0,0,1.77946 -94094,3017:122:2,172.5,-2,0,0,1.80979 -94095,3017:123:1,173,-2,0,0,1.88526 -94096,3017:123:2,173.5,-2,0,0,1.92518 -94097,3017:124:1,174,-2,0,0,1.9498 -94098,3017:124:2,174.5,-2,0,0,1.94263 -94099,3017:225:1,175,-2,0,0,1.93566 -94100,3017:225:2,175.5,-2,0,0,1.94263 -94101,3017:226:1,176,-2,0,0,1.93908 -94102,3017:226:2,176.5,-2,0,0,1.9184 -94103,3017:227:1,177,-2,0,0,1.8789 -94104,3017:227:2,177.5,-2,0,0,1.85385 -94105,3017:228:1,178,-2,0,0,1.86629 -94106,3017:228:2,178.5,-2,0,0,1.88851 -94107,3017:229:1,179,-2,0,0,1.91159 -94108,3017:229:2,179.5,-2,0,0,1.94621 -94109,3018:120:1,180,-2,0,0,1.97155 -94110,5018:110:3,-180,-1.5,0,0,2.08848 -94111,5017:219:4,-179.5,-1.5,0,0,2.12911 -94112,5017:219:3,-179,-1.5,0,0,2.16718 -94113,5017:218:4,-178.5,-1.5,0,0,2.2281 -94114,5017:218:3,-178,-1.5,0,0,2.41073 -94115,5017:217:4,-177.5,-1.5,0,0,2.82273 -94116,5017:217:3,-177,-1.5,0,0,3.26296 -94117,5017:216:4,-176.5,-1.5,0,0,3.56455 -94118,5017:216:3,-176,-1.5,0,0,3.56455 -94119,5017:215:4,-175.5,-1.5,0,0,3.85471 -94120,5017:215:3,-175,-1.5,0,0,4.15628 -94121,5017:114:4,-174.5,-1.5,0,0,4.81589 -94122,5017:114:3,-174,-1.5,0,0,5.66824 -94123,5017:113:4,-173.5,-1.5,0,0,6.49793 -94124,5017:113:3,-173,-1.5,0,0,7.55344 -94125,5017:112:4,-172.5,-1.5,0,0,21.6052 -94126,5017:112:3,-172,-1.5,0,0,-11.159 -94127,5017:111:4,-171.5,-1.5,0,0,-4.77763 -94128,5017:111:3,-171,-1.5,0,0,-3.0841 -94129,5017:110:4,-170.5,-1.5,0,0,-2.15513 -94130,5017:110:3,-170,-1.5,0,0,-1.64968 -94131,5016:219:4,-169.5,-1.5,0,0,-1.31208 -94132,5016:219:3,-169,-1.5,0,0,-1.1483 -94133,5016:218:4,-168.5,-1.5,0,0,-1.09328 -94134,5016:218:3,-168,-1.5,0,0,-1.08005 -94135,5016:217:4,-167.5,-1.5,0,0,-1.15311 -94136,5016:217:3,-167,-1.5,0,0,-1.11574 -94137,5016:216:4,-166.5,-1.5,0,0,-0.839089 -94138,5016:216:3,-166,-1.5,0,0,-0.688039 -94139,5016:215:4,-165.5,-1.5,0,0,-0.579698 -94140,5016:215:3,-165,-1.5,0,0,-0.556592 -94141,5016:114:4,-164.5,-1.5,0,0,-0.550207 -94142,5016:114:3,-164,-1.5,0,0,-0.539794 -94143,5016:113:4,-163.5,-1.5,0,0,-0.563045 -94144,5016:113:3,-163,-1.5,0,0,-0.580804 -94145,5016:112:4,-162.5,-1.5,0,0,-0.587679 -94146,5016:112:3,-162,-1.5,0,0,-0.579698 -94147,5016:111:4,-161.5,-1.5,0,0,-0.531667 -94148,5016:111:3,-161,-1.5,0,0,-0.452146 -94149,5016:110:4,-160.5,-1.5,0,0,-0.404576 -94150,5016:110:3,-160,-1.5,0,0,-0.371983 -94151,5015:219:4,-159.5,-1.5,0,0,-0.360236 -94152,5015:219:3,-159,-1.5,0,0,-0.386172 -94153,5015:218:4,-158.5,-1.5,0,0,-0.40811 -94154,5015:218:3,-158,-1.5,0,0,-0.394894 -94155,5015:217:4,-157.5,-1.5,0,0,-0.375779 -94156,5015:217:3,-157,-1.5,0,0,-0.368844 -94157,5015:216:4,-156.5,-1.5,0,0,-0.366361 -94158,5015:216:3,-156,-1.5,0,0,-0.352473 -94159,5015:215:4,-155.5,-1.5,0,0,-0.345498 -94160,5015:215:3,-155,-1.5,0,0,-0.329338 -94161,5015:114:4,-154.5,-1.5,0,0,-0.308554 -94162,5015:114:3,-154,-1.5,0,0,-0.299731 -94163,5015:113:4,-153.5,-1.5,0,0,-0.28345 -94164,5015:113:3,-153,-1.5,0,0,-0.262425 -94165,5015:112:4,-152.5,-1.5,0,0,-0.238835 -94166,5015:112:3,-152,-1.5,0,0,-0.209678 -94167,5015:111:4,-151.5,-1.5,0,0,-0.19707 -94168,5015:111:3,-151,-1.5,0,0,-0.195923 -94169,5015:110:4,-150.5,-1.5,0,0,-0.195222 -94170,5015:110:3,-150,-1.5,0,0,-0.192529 -94171,5014:219:4,-149.5,-1.5,0,0,-0.19011 -94172,5014:219:3,-149,-1.5,0,0,-0.188464 -94173,5014:218:4,-148.5,-1.5,0,0,-0.187228 -94174,5014:218:3,-148,-1.5,0,0,-0.186496 -94175,5014:217:4,-147.5,-1.5,0,0,-0.184964 -94176,5014:217:3,-147,-1.5,0,0,-0.184242 -94177,5014:216:4,-146.5,-1.5,0,0,-0.183882 -94178,5014:216:3,-146,-1.5,0,0,-0.183959 -94179,5014:215:4,-145.5,-1.5,0,0,-0.183933 -94180,5014:215:3,-145,-1.5,0,0,-0.183523 -94181,5014:114:4,-144.5,-1.5,0,0,-0.183165 -94182,5014:114:3,-144,-1.5,0,0,-0.182502 -94183,5014:113:4,-143.5,-1.5,0,0,-0.181538 -94184,5014:113:3,-143,-1.5,0,0,-0.18073 -94185,5014:112:4,-142.5,-1.5,0,0,-0.18063 -94186,5014:112:3,-142,-1.5,0,0,-0.180655 -94187,5014:111:4,-141.5,-1.5,0,0,-0.180077 -94188,5014:111:3,-141,-1.5,0,0,-0.17868 -94189,5014:110:4,-140.5,-1.5,0,0,-0.177026 -94190,5014:110:3,-140,-1.5,0,0,-0.177222 -94191,5013:219:4,-139.5,-1.5,0,0,-0.177468 -94192,5013:219:3,-139,-1.5,0,0,-0.178086 -94193,5013:218:4,-138.5,-1.5,0,0,-0.179003 -94194,5013:218:3,-138,-1.5,0,0,-0.179402 -94195,5013:217:4,-137.5,-1.5,0,0,-0.177888 -94196,5013:217:3,-137,-1.5,0,0,-0.174806 -94197,5013:216:4,-136.5,-1.5,0,0,-0.173216 -94198,5013:216:3,-136,-1.5,0,0,-0.173144 -94199,5013:215:4,-135.5,-1.5,0,0,-0.171476 -94200,5013:215:3,-135,-1.5,0,0,-0.16915 -94201,5013:114:4,-134.5,-1.5,0,0,-0.168637 -94202,5013:114:3,-134,-1.5,0,0,-0.168614 -94203,5013:113:4,-133.5,-1.5,0,0,-0.168637 -94204,5013:113:3,-133,-1.5,0,0,-0.168545 -94205,5013:112:4,-132.5,-1.5,0,0,-0.16822 -94206,5013:112:3,-132,-1.5,0,0,-0.167665 -94207,5013:111:4,-131.5,-1.5,0,0,-0.166951 -94208,5013:111:3,-131,-1.5,0,0,-0.165898 -94209,5013:110:4,-130.5,-1.5,0,0,-0.164988 -94210,5013:110:3,-130,-1.5,0,0,-0.164446 -94211,5012:219:4,-129.5,-1.5,0,0,-0.16404 -94212,5012:219:3,-129,-1.5,0,0,-0.163523 -94213,5012:218:4,-128.5,-1.5,0,0,-0.163187 -94214,5012:218:3,-128,-1.5,0,0,-0.16265 -94215,5012:217:4,-127.5,-1.5,0,0,-0.161828 -94216,5012:217:3,-127,-1.5,0,0,-0.161651 -94217,5012:216:4,-126.5,-1.5,0,0,-0.162383 -94218,5012:216:3,-126,-1.5,0,0,-0.162806 -94219,5012:215:4,-125.5,-1.5,0,0,-0.162762 -94220,5012:215:3,-125,-1.5,0,0,-0.162584 -94221,5012:114:4,-124.5,-1.5,0,0,-0.162205 -94222,5012:114:3,-124,-1.5,0,0,-0.161495 -94223,5012:113:4,-123.5,-1.5,0,0,-0.160328 -94224,5012:113:3,-123,-1.5,0,0,-0.158519 -94225,5012:112:4,-122.5,-1.5,0,0,-0.156327 -94226,5012:112:3,-122,-1.5,0,0,-0.154003 -94227,5012:111:4,-121.5,-1.5,0,0,-0.152357 -94228,5012:111:3,-121,-1.5,0,0,-0.150568 -94229,5012:110:4,-120.5,-1.5,0,0,-0.149591 -94230,5012:110:3,-120,-1.5,0,0,-0.149186 -94231,5011:219:4,-119.5,-1.5,0,0,-0.149105 -94232,5011:219:3,-119,-1.5,0,0,-0.148621 -94233,5011:218:4,-118.5,-1.5,0,0,-0.148944 -94234,5011:218:3,-118,-1.5,0,0,-0.148843 -94235,5011:217:4,-117.5,-1.5,0,0,-0.149713 -94236,5011:217:3,-117,-1.5,0,0,-0.150302 -94237,5011:216:4,-116.5,-1.5,0,0,-0.150548 -94238,5011:216:3,-116,-1.5,0,0,-0.150221 -94239,5011:215:4,-115.5,-1.5,0,0,-0.149388 -94240,5011:215:3,-115,-1.5,0,0,-0.148179 -94241,5011:114:4,-114.5,-1.5,0,0,-0.147399 -94242,5011:114:3,-114,-1.5,0,0,-0.146981 -94243,5011:113:4,-113.5,-1.5,0,0,-0.146941 -94244,5011:113:3,-113,-1.5,0,0,-0.147041 -94245,5011:112:4,-112.5,-1.5,0,0,-0.147259 -94246,5011:112:3,-112,-1.5,0,0,-0.147759 -94247,5011:111:4,-111.5,-1.5,0,0,-0.14838 -94248,5011:111:3,-111,-1.5,0,0,-0.14949 -94249,5011:110:4,-110.5,-1.5,0,0,-0.150936 -94250,5011:110:3,-110,-1.5,0,0,-0.153042 -94251,5010:219:4,-109.5,-1.5,0,0,-0.154191 -94252,5010:219:3,-109,-1.5,0,0,-0.155118 -94253,5010:218:4,-108.5,-1.5,0,0,-0.155774 -94254,5010:218:3,-108,-1.5,0,0,-0.156285 -94255,5010:217:4,-107.5,-1.5,0,0,-0.156776 -94256,5010:217:3,-107,-1.5,0,0,-0.157354 -94257,5010:216:4,-106.5,-1.5,0,0,-0.157871 -94258,5010:216:3,-106,-1.5,0,0,-0.158194 -94259,5010:215:4,-105.5,-1.5,0,0,-0.158238 -94260,5010:215:3,-105,-1.5,0,0,-0.158086 -94261,5010:114:4,-104.5,-1.5,0,0,-0.157785 -94262,5010:114:3,-104,-1.5,0,0,-0.157376 -94263,5010:113:4,-103.5,-1.5,0,0,-0.156904 -94264,5010:113:3,-103,-1.5,0,0,-0.15637 -94265,5010:112:4,-102.5,-1.5,0,0,-0.155711 -94266,5010:112:3,-102,-1.5,0,0,-0.154949 -94267,5010:111:4,-101.5,-1.5,0,0,-0.154338 -94268,5010:111:3,-101,-1.5,0,0,-0.154443 -94269,5010:110:4,-100.5,-1.5,0,0,-0.155054 -94270,5010:110:3,-100,-1.5,0,0,-0.155626 -94271,5009:219:4,-99.5,-1.5,0,0,-0.155796 -94272,5009:219:3,-99,-1.5,0,0,-0.155945 -94273,5009:218:4,-98.5,-1.5,0,0,-0.156498 -94274,5009:218:3,-98,-1.5,0,0,-0.157204 -94275,5009:217:4,-97.5,-1.5,0,0,-0.157677 -94276,5009:217:3,-97,-1.5,0,0,-0.157785 -94277,5009:216:4,-96.5,-1.5,0,0,-0.157097 -94278,5009:216:3,-96,-1.5,0,0,-0.156519 -94279,5009:215:4,-95.5,-1.5,0,0,-0.157097 -94280,5009:215:3,-95,-1.5,0,0,-0.157269 -94281,5009:114:4,-94.5,-1.5,0,0,-0.156392 -94282,5009:114:3,-94,-1.5,0,0,-0.154654 -94283,5009:113:4,-93.5,-1.5,0,0,-0.153063 -94284,5009:113:3,-93,-1.5,0,0,-0.15213 -94285,5009:112:4,-92.5,-1.5,0,0,-0.151367 -94286,5009:112:3,-92,-1.5,0,0,-0.153126 -94287,5009:111:4,-91.5,-1.5,0,0,-0.156157 -94288,5009:111:3,-91,-1.5,0,0,-0.158411 -94289,5009:110:4,-90.5,-1.5,0,0,-0.159999 -94290,5009:110:3,-90,-1.5,0,0,-0.161274 -94291,5008:219:4,-89.5,-1.5,0,0,-0.162495 -94292,5008:219:3,-89,-1.5,0,0,-0.163702 -94293,5008:218:4,-88.5,-1.5,0,0,-0.164604 -94294,5008:218:3,-88,-1.5,0,0,-0.165397 -94295,5008:217:4,-87.5,-1.5,0,0,-0.165488 -94296,5008:217:3,-87,-1.5,0,0,-0.165011 -94297,5008:216:4,-86.5,-1.5,0,0,-0.164581 -94298,5008:216:3,-86,-1.5,0,0,-0.16386 -94299,5008:215:4,-85.5,-1.5,0,0,-0.16265 -94300,5008:215:3,-85,-1.5,0,0,-0.161452 -94301,5008:114:4,-84.5,-1.5,0,0,-0.160504 -94302,5008:114:3,-84,-1.5,0,0,-0.160328 -94303,5008:113:4,-83.5,-1.5,0,0,-0.16057 -94304,5008:113:3,-83,-1.5,0,0,-0.160394 -94305,5008:112:4,-82.5,-1.5,0,0,-0.159868 -94306,5008:112:3,-82,-1.5,0,0,-0.160087 -94307,5008:111:4,-81.5,-1.5,0,0,-0.16101 -94308,5008:111:3,-81,-1.5,0,0,-0.163568 -94309,5008:110:4,-80.5,-1.5,0,0,-0.164898 -94310,5008:110:3,-80,-1.5,0,0,-0.166997 -94311,5007:219:4,-79.5,-1.5,0,0,-0.168312 -94312,5007:219:3,-79,-1.5,0,0,-0.169851 -94313,5004:219:4,-49.5,-1.5,0,0,-0.19309 -94314,5004:219:3,-49,-1.5,0,0,-0.192448 -94315,5004:218:4,-48.5,-1.5,0,0,-0.186626 -94316,5004:218:3,-48,-1.5,0,0,-0.178705 -94317,5004:217:4,-47.5,-1.5,0,0,-0.176193 -94318,5004:217:3,-47,-1.5,0,0,-0.175534 -94319,5004:216:4,-46.5,-1.5,0,0,-0.178631 -94320,5004:216:3,-46,-1.5,0,0,-0.178185 -94321,5004:215:4,-45.5,-1.5,0,0,-0.178408 -94322,5004:215:3,-45,-1.5,0,0,-0.178879 -94323,5004:114:4,-44.5,-1.5,0,0,-0.179652 -94324,5004:114:3,-44,-1.5,0,0,-0.180504 -94325,5004:113:4,-43.5,-1.5,0,0,-0.180856 -94326,5004:113:3,-43,-1.5,0,0,-0.181461 -94327,5004:112:4,-42.5,-1.5,0,0,-0.182629 -94328,5004:112:3,-42,-1.5,0,0,-0.183984 -94329,5004:111:4,-41.5,-1.5,0,0,-0.184757 -94330,5004:111:3,-41,-1.5,0,0,-0.184783 -94331,5004:110:4,-40.5,-1.5,0,0,-0.183933 -94332,5004:110:3,-40,-1.5,0,0,-0.183011 -94333,5003:219:4,-39.5,-1.5,0,0,-0.181689 -94334,5003:219:3,-39,-1.5,0,0,-0.179902 -94335,5003:218:4,-38.5,-1.5,0,0,-0.178457 -94336,5003:218:3,-38,-1.5,0,0,-0.177173 -94337,5003:217:4,-37.5,-1.5,0,0,-0.175559 -94338,5003:217:3,-37,-1.5,0,0,-0.174636 -94339,5003:216:4,-36.5,-1.5,0,0,-0.174322 -94340,5003:216:3,-36,-1.5,0,0,-0.174105 -94341,5003:215:4,-35.5,-1.5,0,0,-0.17372 -94342,5003:215:3,-35,-1.5,0,0,-0.172953 -94343,5003:114:4,-34.5,-1.5,0,0,-0.172046 -94344,5003:114:3,-34,-1.5,0,0,-0.171595 -94345,5003:113:4,-33.5,-1.5,0,0,-0.171666 -94346,5003:113:3,-33,-1.5,0,0,-0.171975 -94347,5003:112:4,-32.5,-1.5,0,0,-0.172023 -94348,5003:112:3,-32,-1.5,0,0,-0.172094 -94349,5003:111:4,-31.5,-1.5,0,0,-0.17245 -94350,5003:111:3,-31,-1.5,0,0,-0.17312 -94351,5003:110:4,-30.5,-1.5,0,0,-0.173599 -94352,5003:110:3,-30,-1.5,0,0,-0.172713 -94353,5002:219:4,-29.5,-1.5,0,0,-0.17312 -94354,5002:219:3,-29,-1.5,0,0,-0.173744 -94355,5002:218:4,-28.5,-1.5,0,0,-0.173985 -94356,5002:218:3,-28,-1.5,0,0,-0.173672 -94357,5002:217:4,-27.5,-1.5,0,0,-0.173072 -94358,5002:217:3,-27,-1.5,0,0,-0.172618 -94359,5002:216:4,-26.5,-1.5,0,0,-0.172713 -94360,5002:216:3,-26,-1.5,0,0,-0.173168 -94361,5002:215:4,-25.5,-1.5,0,0,-0.173024 -94362,5002:215:3,-25,-1.5,0,0,-0.172141 -94363,5002:114:4,-24.5,-1.5,0,0,-0.171619 -94364,5002:114:3,-24,-1.5,0,0,-0.172094 -94365,5002:113:4,-23.5,-1.5,0,0,-0.172809 -94366,5002:113:3,-23,-1.5,0,0,-0.173336 -94367,5002:112:4,-22.5,-1.5,0,0,-0.173599 -94368,5002:112:3,-22,-1.5,0,0,-0.173864 -94369,5002:111:4,-21.5,-1.5,0,0,-0.174153 -94370,5002:111:3,-21,-1.5,0,0,-0.174927 -94371,5002:110:4,-20.5,-1.5,0,0,-0.176657 -94372,5002:110:3,-20,-1.5,0,0,-0.178086 -94373,5001:219:4,-19.5,-1.5,0,0,-0.179228 -94374,5001:219:3,-19,-1.5,0,0,-0.180932 -94375,5001:218:4,-18.5,-1.5,0,0,-0.182323 -94376,5001:218:3,-18,-1.5,0,0,-0.183139 -94377,5001:217:4,-17.5,-1.5,0,0,-0.183574 -94378,5001:217:3,-17,-1.5,0,0,-0.18401 -94379,5001:216:4,-16.5,-1.5,0,0,-0.184679 -94380,5001:216:3,-16,-1.5,0,0,-0.185766 -94381,5001:215:4,-15.5,-1.5,0,0,-0.186914 -94382,5001:215:3,-15,-1.5,0,0,-0.188201 -94383,5001:114:4,-14.5,-1.5,0,0,-0.189578 -94384,5001:114:3,-14,-1.5,0,0,-0.190993 -94385,5001:113:4,-13.5,-1.5,0,0,-0.192394 -94386,5001:113:3,-13,-1.5,0,0,-0.194348 -94387,5001:112:4,-12.5,-1.5,0,0,-0.196717 -94388,5001:112:3,-12,-1.5,0,0,-0.199234 -94389,5001:111:4,-11.5,-1.5,0,0,-0.209171 -94390,5001:111:3,-11,-1.5,0,0,-0.224407 -94391,5001:110:4,-10.5,-1.5,0,0,-0.241779 -94392,5001:110:3,-10,-1.5,0,0,-0.259584 -94393,5000:219:4,-9.5,-1.5,0,0,-0.278994 -94394,5000:219:3,-9,-1.5,0,0,-0.296855 -94395,5000:218:4,-8.5,-1.5,0,0,-0.314609 -94396,5000:218:3,-8,-1.5,0,0,-0.329867 -94397,5000:217:4,-7.5,-1.5,0,0,-0.341496 -94398,5000:217:3,-7,-1.5,0,0,-0.352473 -94399,5000:216:4,-6.5,-1.5,0,0,-0.360236 -94400,5000:216:3,-6,-1.5,0,0,-0.366965 -94401,5000:215:4,-5.5,-1.5,0,0,-0.371983 -94402,5000:215:3,-5,-1.5,0,0,-0.375136 -94403,5000:114:4,-4.5,-1.5,0,0,-0.378993 -94404,5000:114:3,-4,-1.5,0,0,-0.386839 -94405,5000:113:4,-3.5,-1.5,0,0,-0.396268 -94406,5000:113:3,-3,-1.5,0,0,-0.405284 -94407,5000:112:4,-2.5,-1.5,0,0,-0.412407 -94408,5000:112:3,-2,-1.5,0,0,-0.415297 -94409,5000:111:4,-1.5,-1.5,0,0,-0.415297 -94410,5000:111:3,-1,-1.5,0,0,-0.415297 -94411,5000:110:4,-0.5,-1.5,0,0,-0.430147 -94412,3000:110:4,0,-1.5,0,0,-0.432428 -94413,3000:110:4,0.5,-1.5,0,0,-0.423375 -94414,3000:111:3,1,-1.5,0,0,-0.40811 -94415,3000:111:4,1.5,-1.5,0,0,-0.39558 -94416,3000:112:3,2,-1.5,0,0,-0.379644 -94417,3000:112:4,2.5,-1.5,0,0,-0.363899 -94418,3000:113:3,3,-1.5,0,0,-0.347221 -94419,3000:113:4,3.5,-1.5,0,0,-0.339242 -94420,3000:114:3,4,-1.5,0,0,-0.337569 -94421,3000:114:4,4.5,-1.5,0,0,-0.334236 -94422,3000:215:3,5,-1.5,0,0,-0.334236 -94423,3000:215:4,5.5,-1.5,0,0,-0.337008 -94424,3000:216:3,6,-1.5,0,0,-0.344343 -94425,3000:216:4,6.5,-1.5,0,0,-0.362666 -94426,3000:217:3,7,-1.5,0,0,-0.3895 -94427,3000:217:4,7.5,-1.5,0,0,-0.416741 -94428,3000:218:3,8,-1.5,0,0,-0.438628 -94429,3000:218:4,8.5,-1.5,0,0,-0.424878 -94430,3000:219:3,9,-1.5,0,0,-0.305573 -94431,3004:114:3,44,-1.5,0,0,-0.169687 -94432,3004:114:4,44.5,-1.5,0,0,-0.175826 -94433,3004:215:3,45,-1.5,0,0,-0.183191 -94434,3004:215:4,45.5,-1.5,0,0,-0.189551 -94435,3004:216:3,46,-1.5,0,0,-0.185793 -94436,3004:216:4,46.5,-1.5,0,0,-0.185559 -94437,3004:217:3,47,-1.5,0,0,-0.1866 -94438,3004:217:4,47.5,-1.5,0,0,-0.188571 -94439,3004:218:3,48,-1.5,0,0,-0.189578 -94440,3004:218:4,48.5,-1.5,0,0,-0.193436 -94441,3004:219:3,49,-1.5,0,0,-0.199119 -94442,3004:219:4,49.5,-1.5,0,0,-0.237733 -94443,3005:110:3,50,-1.5,0,0,-0.28256 -94444,3005:110:4,50.5,-1.5,0,0,-0.357222 -94445,3005:111:3,51,-1.5,0,0,-0.501662 -94446,3005:111:4,51.5,-1.5,0,0,-0.615049 -94447,3005:112:3,52,-1.5,0,0,-0.529677 -94448,3005:112:4,52.5,-1.5,0,0,-0.558721 -94449,3005:113:3,53,-1.5,0,0,-1.77489 -94450,3005:113:4,53.5,-1.5,0,0,-1.78451 -94451,3005:114:3,54,-1.5,0,0,-5.24151 -94452,3005:114:4,54.5,-1.5,0,0,-355.679 -94453,3005:215:3,55,-1.5,0,0,41.7633 -94454,3005:215:4,55.5,-1.5,0,0,7.36886 -94455,3005:216:3,56,-1.5,0,0,3.65558 -94456,3005:216:4,56.5,-1.5,0,0,4.03457 -94457,3005:217:3,57,-1.5,0,0,33.825 -94458,3005:217:4,57.5,-1.5,0,0,-2.36818 -94459,3005:218:3,58,-1.5,0,0,-0.815751 -94460,3005:218:4,58.5,-1.5,0,0,-0.519783 -94461,3005:219:3,59,-1.5,0,0,-0.418952 -94462,3005:219:4,59.5,-1.5,0,0,-0.361458 -94463,3006:110:3,60,-1.5,0,0,-0.328251 -94464,3006:110:4,60.5,-1.5,0,0,-0.304103 -94465,3006:111:3,61,-1.5,0,0,-0.285254 -94466,3006:111:4,61.5,-1.5,0,0,-0.267403 -94467,3006:112:3,62,-1.5,0,0,-0.26408 -94468,3006:112:4,62.5,-1.5,0,0,-0.279438 -94469,3006:113:3,63,-1.5,0,0,-0.307551 -94470,3006:113:4,63.5,-1.5,0,0,-0.337569 -94471,3006:114:3,64,-1.5,0,0,-0.366361 -94472,3006:114:4,64.5,-1.5,0,0,-0.399708 -94473,3006:215:3,65,-1.5,0,0,-0.434748 -94474,3006:215:4,65.5,-1.5,0,0,-0.464518 -94475,3006:216:3,66,-1.5,0,0,-0.495214 -94476,3006:216:4,66.5,-1.5,0,0,-0.527666 -94477,3006:217:3,67,-1.5,0,0,-0.570748 -94478,3006:217:4,67.5,-1.5,0,0,-0.611356 -94479,3006:218:3,68,-1.5,0,0,-0.636409 -94480,3006:218:4,68.5,-1.5,0,0,-0.642894 -94481,3006:219:3,69,-1.5,0,0,-0.64417 -94482,3006:219:4,69.5,-1.5,0,0,-0.662869 -94483,3007:110:3,70,-1.5,0,0,-0.707056 -94484,3007:110:4,70.5,-1.5,0,0,-0.78247 -94485,3007:111:3,71,-1.5,0,0,-0.895345 -94486,3007:111:4,71.5,-1.5,0,0,-1.0588 -94487,3007:112:3,72,-1.5,0,0,-1.21288 -94488,3007:112:4,72.5,-1.5,0,0,-1.37263 -94489,3007:113:4,73.5,-1.5,0,0,-1.17749 -94490,3007:114:3,74,-1.5,0,0,-1.0715 -94491,3007:114:4,74.5,-1.5,0,0,-1.18737 -94492,3007:215:3,75,-1.5,0,0,-1.39184 -94493,3007:215:4,75.5,-1.5,0,0,-1.63282 -94494,3007:216:3,76,-1.5,0,0,-1.4654 -94495,3007:216:4,76.5,-1.5,0,0,-1.33582 -94496,3007:217:3,77,-1.5,0,0,-1.35403 -94497,3007:217:4,77.5,-1.5,0,0,-1.38539 -94498,3007:218:3,78,-1.5,0,0,-1.39184 -94499,3007:218:4,78.5,-1.5,0,0,-1.37263 -94500,3007:219:3,79,-1.5,0,0,-1.4654 -94501,3007:219:4,79.5,-1.5,0,0,-1.69254 -94502,3008:110:3,80,-1.5,0,0,-1.86401 -94503,3008:110:4,80.5,-1.5,0,0,-1.96078 -94504,3008:111:3,81,-1.5,0,0,-2.06618 -94505,3008:111:4,81.5,-1.5,0,0,-2.12896 -94506,3008:112:3,82,-1.5,0,0,-2.12896 -94507,3008:112:4,82.5,-1.5,0,0,-2.10331 -94508,3008:113:3,83,-1.5,0,0,-2.15513 -94509,3008:113:4,83.5,-1.5,0,0,-2.14197 -94510,3008:114:3,84,-1.5,0,0,-2.10331 -94511,3008:114:4,84.5,-1.5,0,0,-2.14197 -94512,3008:215:3,85,-1.5,0,0,-2.04216 -94513,3008:215:4,85.5,-1.5,0,0,-2.05393 -94514,3008:216:3,86,-1.5,0,0,-2.38378 -94515,3008:216:4,86.5,-1.5,0,0,-2.94442 -94516,3008:217:3,87,-1.5,0,0,-3.10876 -94517,3008:217:4,87.5,-1.5,0,0,-3.3741 -94518,3008:218:3,88,-1.5,0,0,-2.94442 -94519,3008:218:4,88.5,-1.5,0,0,-3.21017 -94520,3008:219:3,89,-1.5,0,0,-3.29075 -94521,3008:219:4,89.5,-1.5,0,0,-4.20681 -94522,3009:110:3,90,-1.5,0,0,-6.75968 -94523,3009:110:4,90.5,-1.5,0,0,-31.0123 -94524,3009:111:3,91,-1.5,0,0,-10.6543 -94525,3009:111:4,91.5,-1.5,0,0,-8.21955 -94526,3009:112:3,92,-1.5,0,0,-2.30795 -94527,3009:112:4,92.5,-1.5,0,0,-1.16758 -94528,3009:113:3,93,-1.5,0,0,-0.848069 -94529,3009:113:4,93.5,-1.5,0,0,-0.848069 -94530,3009:114:3,94,-1.5,0,0,-0.845121 -94531,3009:114:4,94.5,-1.5,0,0,-0.869702 -94532,3009:215:3,95,-1.5,0,0,-0.943034 -94533,3009:215:4,95.5,-1.5,0,0,-1.0672 -94534,3009:216:3,96,-1.5,0,0,-1.39184 -94535,3009:216:4,96.5,-1.5,0,0,-2.07856 -94536,3009:217:3,97,-1.5,0,0,-2.33751 -94537,3009:218:3,98,-1.5,0,0,-9.7719 -94538,3009:218:4,98.5,-1.5,0,0,13.9409 -94539,3009:219:3,99,-1.5,0,0,9.83283 -94540,3010:113:3,103,-1.5,0,0,2.02954 -94541,3010:113:4,103.5,-1.5,0,0,5.66824 -94542,3010:114:3,104,-1.5,0,0,-1.0672 -94543,3010:114:4,104.5,-1.5,0,0,-0.529677 -94544,3010:215:3,105,-1.5,0,0,-0.378993 -94545,3010:215:4,105.5,-1.5,0,0,-0.304597 -94546,3010:216:3,106,-1.5,0,0,-0.314095 -94547,3010:216:4,106.5,-1.5,0,0,-0.378343 -94548,3010:217:3,107,-1.5,0,0,-0.480868 -94549,3010:217:4,107.5,-1.5,0,0,-0.707056 -94550,3010:218:3,108,-1.5,0,0,-1.69254 -94551,3010:218:4,108.5,-1.5,0,0,-4.62143 -94552,3010:219:3,109,-1.5,0,0,2.51487 -94553,3011:219:3,119,-1.5,0,0,-0.311556 -94554,3011:219:4,119.5,-1.5,0,0,-0.564141 -94555,3012:110:3,120,-1.5,0,0,-0.695274 -94556,3012:110:4,120.5,-1.5,0,0,-0.836097 -94557,3012:111:3,121,-1.5,0,0,-0.490663 -94558,3012:112:3,122,-1.5,0,0,-0.502601 -94559,3012:112:4,122.5,-1.5,0,0,-0.766519 -94560,3012:113:3,123,-1.5,0,0,-1.64968 -94561,3012:113:4,123.5,-1.5,0,0,-2.44745 -94562,3012:114:3,124,-1.5,0,0,-2.51409 -94563,3012:114:4,124.5,-1.5,0,0,-9.38404 -94564,3012:215:4,125.5,-1.5,0,0,3.79238 -94565,3012:216:3,126,-1.5,0,0,17.4548 -94566,3012:216:4,126.5,-1.5,0,0,-6.20082 -94567,3012:217:3,127,-1.5,0,0,-21.5849 -94568,3012:217:4,127.5,-1.5,0,0,-29.1935 -94569,3012:219:3,129,-1.5,0,0,-1.53797 -94570,3012:219:4,129.5,-1.5,0,0,-26.1207 -94571,3013:110:3,130,-1.5,0,0,7.19111 -94572,3013:110:4,130.5,-1.5,0,0,3.15365 -94573,3013:111:3,131,-1.5,0,0,2.70071 -94574,3013:111:4,131.5,-1.5,0,0,3.71267 -94575,3013:112:3,132,-1.5,0,0,5.66824 -94576,3013:112:4,132.5,-1.5,0,0,5.9932 -94577,3013:113:3,133,-1.5,0,0,6.43133 -94578,3013:113:4,133.5,-1.5,0,0,6.78705 -94579,3013:114:3,134,-1.5,0,0,9.83283 -94580,3013:114:4,134.5,-1.5,0,0,-18.3703 -94581,3013:215:3,135,-1.5,0,0,-3.8549 -94582,3013:215:4,135.5,-1.5,0,0,-2.14197 -94583,3013:216:3,136,-1.5,0,0,-1.84375 -94584,3013:216:4,136.5,-1.5,0,0,-1.9168 -94585,3013:217:3,137,-1.5,0,0,-2.27859 -94586,3013:217:4,137.5,-1.5,0,0,-2.36818 -94587,3013:218:3,138,-1.5,0,0,-1.53797 -94588,3013:218:4,138.5,-1.5,0,0,-1.20251 -94589,3013:219:3,139,-1.5,0,0,-1.16758 -94590,3013:219:4,139.5,-1.5,0,0,-1.29457 -94591,3014:110:3,140,-1.5,0,0,-1.64122 -94592,3014:110:4,140.5,-1.5,0,0,-2.65712 -94593,3014:111:3,141,-1.5,0,0,-7.80297 -94594,3014:111:4,141.5,-1.5,0,0,-8.52457 -94595,3014:112:3,142,-1.5,0,0,-6.56424 -94596,3014:112:4,142.5,-1.5,0,0,-20.6761 -94597,3014:113:3,143,-1.5,0,0,11.8805 -94598,3014:113:4,143.5,-1.5,0,0,5.28863 -94599,3014:114:3,144,-1.5,0,0,4.10673 -94600,3014:114:4,144.5,-1.5,0,0,3.83409 -94601,3014:215:3,145,-1.5,0,0,2.97119 -94602,3014:215:4,145.5,-1.5,0,0,2.43738 -94603,3014:216:3,146,-1.5,0,0,2.26034 -94604,3014:216:4,146.5,-1.5,0,0,2.15741 -94605,3014:217:3,147,-1.5,0,0,2.07115 -94606,3014:217:4,147.5,-1.5,0,0,2.00571 -94607,3014:218:3,148,-1.5,0,0,1.93908 -94608,3014:218:4,148.5,-1.5,0,0,1.90161 -94609,3014:219:3,149,-1.5,0,0,1.89828 -94610,3014:219:4,149.5,-1.5,0,0,1.94621 -94611,3015:110:3,150,-1.5,0,0,1.85385 -94612,3015:110:4,150.5,-1.5,0,0,1.81543 -94613,3015:111:3,151,-1.5,0,0,1.77685 -94614,3015:111:4,151.5,-1.5,0,0,1.77946 -94615,3015:112:3,152,-1.5,0,0,1.7958 -94616,3015:112:4,152.5,-1.5,0,0,1.86935 -94617,3015:113:3,153,-1.5,0,0,1.99803 -94618,3015:113:4,153.5,-1.5,0,0,2.18696 -94619,3015:114:3,154,-1.5,0,0,2.39112 -94620,3015:114:4,154.5,-1.5,0,0,2.39761 -94621,3015:215:3,155,-1.5,0,0,2.27149 -94622,3015:215:4,155.5,-1.5,0,0,2.1479 -94623,3015:216:3,156,-1.5,0,0,2.07115 -94624,3015:216:4,156.5,-1.5,0,0,2.0541 -94625,3015:217:3,157,-1.5,0,0,2.07534 -94626,3015:217:4,157.5,-1.5,0,0,2.0797 -94627,3015:218:3,158,-1.5,0,0,2.07115 -94628,3015:218:4,158.5,-1.5,0,0,2.04586 -94629,3015:219:3,159,-1.5,0,0,2.02146 -94630,3015:219:4,159.5,-1.5,0,0,2.0136 -94631,3016:110:3,160,-1.5,0,0,2.0541 -94632,3016:110:4,160.5,-1.5,0,0,2.09278 -94633,3016:111:3,161,-1.5,0,0,2.10173 -94634,3016:111:4,161.5,-1.5,0,0,2.09278 -94635,3016:112:3,162,-1.5,0,0,2.08407 -94636,3016:112:4,162.5,-1.5,0,0,2.05833 -94637,3016:113:3,163,-1.5,0,0,2.02549 -94638,3016:113:4,163.5,-1.5,0,0,2.00964 -94639,3016:114:3,164,-1.5,0,0,1.99032 -94640,3016:114:4,164.5,-1.5,0,0,1.97904 -94641,3016:215:3,165,-1.5,0,0,1.97155 -94642,3016:215:4,165.5,-1.5,0,0,1.96058 -94643,3016:216:3,166,-1.5,0,0,1.93908 -94644,3016:216:4,166.5,-1.5,0,0,1.90831 -94645,3016:217:3,167,-1.5,0,0,1.8757 -94646,3016:217:4,167.5,-1.5,0,0,1.86004 -94647,3016:218:3,168,-1.5,0,0,1.86316 -94648,3016:218:4,168.5,-1.5,0,0,1.88526 -94649,3016:219:3,169,-1.5,0,0,1.88526 -94650,3016:219:4,169.5,-1.5,0,0,1.96794 -94651,3017:110:3,170,-1.5,0,0,1.89179 -94652,3017:110:4,170.5,-1.5,0,0,1.82706 -94653,3017:111:3,171,-1.5,0,0,1.81831 -94654,3017:111:4,171.5,-1.5,0,0,1.79303 -94655,3017:112:3,172,-1.5,0,0,1.78217 -94656,3017:112:4,172.5,-1.5,0,0,1.80695 -94657,3017:113:3,173,-1.5,0,0,1.78761 -94658,3017:113:4,173.5,-1.5,0,0,1.82992 -94659,3017:114:3,174,-1.5,0,0,1.83884 -94660,3017:114:4,174.5,-1.5,0,0,1.85385 -94661,3017:215:3,175,-1.5,0,0,1.87252 -94662,3017:215:4,175.5,-1.5,0,0,1.90161 -94663,3017:216:3,176,-1.5,0,0,1.92184 -94664,3017:216:4,176.5,-1.5,0,0,1.9498 -94665,3017:217:3,177,-1.5,0,0,1.94621 -94666,3017:217:4,177.5,-1.5,0,0,1.94263 -94667,3017:218:3,178,-1.5,0,0,1.94621 -94668,3017:218:4,178.5,-1.5,0,0,1.97904 -94669,3017:219:3,179,-1.5,0,0,2.02146 -94670,3017:219:4,179.5,-1.5,0,0,2.06257 -94671,3018:110:3,180,-1.5,0,0,2.08848 -94672,5018:110:1,-180,-1,0,0,2.37212 -94673,5017:219:2,-179.5,-1,0,0,2.50039 -94674,5017:219:1,-179,-1,0,0,2.71845 -94675,5017:218:2,-178.5,-1,0,0,3.2774 -94676,5017:218:1,-178,-1,0,0,4.01092 -94677,5017:217:2,-177.5,-1,0,0,4.10673 -94678,5017:217:1,-177,-1,0,0,4.03457 -94679,5017:216:2,-176.5,-1,0,0,4.13171 -94680,5017:216:1,-176,-1,0,0,4.39975 -94681,5017:215:2,-175.5,-1,0,0,4.71237 -94682,5017:215:1,-175,-1,0,0,5.16119 -94683,5017:114:2,-174.5,-1,0,0,6.17353 -94684,5017:114:1,-174,-1,0,0,8.17922 -94685,5017:113:2,-173.5,-1,0,0,14.6812 -94686,5017:113:1,-173,-1,0,0,204.138 -94687,5017:112:2,-172.5,-1,0,0,-9.38404 -94688,5017:112:1,-172,-1,0,0,-3.74949 -94689,5017:111:2,-171.5,-1,0,0,-2.33751 -94690,5017:111:1,-171,-1,0,0,-1.76564 -94691,5017:110:2,-170.5,-1,0,0,-1.40468 -94692,5017:110:1,-170,-1,0,0,-1.17749 -94693,5016:219:2,-169.5,-1,0,0,-0.932435 -94694,5016:219:1,-169,-1,0,0,-0.821452 -94695,5016:218:2,-168.5,-1,0,0,-0.892054 -94696,5016:218:1,-168,-1,0,0,-1.0462 -94697,5016:217:2,-167.5,-1,0,0,-1.10661 -94698,5016:217:1,-167,-1,0,0,-1.07583 -94699,5016:216:2,-166.5,-1,0,0,-0.845121 -94700,5016:216:1,-166,-1,0,0,-0.682336 -94701,5016:215:2,-165.5,-1,0,0,-0.537763 -94702,5016:215:1,-165,-1,0,0,-0.525695 -94703,5016:114:2,-164.5,-1,0,0,-0.51396 -94704,5016:114:1,-164,-1,0,0,-0.519783 -94705,5016:113:2,-163.5,-1,0,0,-0.539794 -94706,5016:113:1,-163,-1,0,0,-0.561951 -94707,5016:112:2,-162.5,-1,0,0,-0.57295 -94708,5016:112:1,-162,-1,0,0,-0.583095 -94709,5016:111:2,-161.5,-1,0,0,-0.580804 -94710,5016:111:1,-161,-1,0,0,-0.509207 -94711,5016:110:2,-160.5,-1,0,0,-0.426365 -94712,5016:110:1,-160,-1,0,0,-0.378993 -94713,5015:219:2,-159.5,-1,0,0,-0.361458 -94714,5015:219:1,-159,-1,0,0,-0.368844 -94715,5015:218:2,-158.5,-1,0,0,-0.396268 -94716,5015:218:1,-158,-1,0,0,-0.441759 -94717,5015:217:2,-157.5,-1,0,0,-0.4791 -94718,5015:217:1,-157,-1,0,0,-0.500754 -94719,5015:216:2,-156.5,-1,0,0,-0.503542 -94720,5015:216:1,-156,-1,0,0,-0.509207 -94721,5015:215:2,-155.5,-1,0,0,-0.532682 -94722,5015:215:1,-155,-1,0,0,-0.508252 -94723,5015:114:2,-154.5,-1,0,0,-0.450516 -94724,5015:114:1,-154,-1,0,0,-0.39423 -94725,5015:113:2,-153.5,-1,0,0,-0.343211 -94726,5015:113:1,-153,-1,0,0,-0.298764 -94727,5015:112:2,-152.5,-1,0,0,-0.2649 -94728,5015:112:1,-152,-1,0,0,-0.229892 -94729,5015:111:2,-151.5,-1,0,0,-0.221795 -94730,5015:111:1,-151,-1,0,0,-0.225747 -94731,5015:110:2,-150.5,-1,0,0,-0.222767 -94732,5015:110:1,-150,-1,0,0,-0.206187 -94733,5014:219:2,-149.5,-1,0,0,-0.194872 -94734,5014:219:1,-149,-1,0,0,-0.192016 -94735,5014:218:2,-148.5,-1,0,0,-0.190564 -94736,5014:218:1,-148,-1,0,0,-0.189206 -94737,5014:217:2,-147.5,-1,0,0,-0.189152 -94738,5014:217:1,-147,-1,0,0,-0.188571 -94739,5014:216:2,-146.5,-1,0,0,-0.187595 -94740,5014:216:1,-146,-1,0,0,-0.187412 -94741,5014:215:2,-145.5,-1,0,0,-0.188201 -94742,5014:215:1,-145,-1,0,0,-0.18894 -94743,5014:114:2,-144.5,-1,0,0,-0.189418 -94744,5014:114:1,-144,-1,0,0,-0.189604 -94745,5014:113:2,-143.5,-1,0,0,-0.189152 -94746,5014:113:1,-143,-1,0,0,-0.188438 -94747,5014:112:2,-142.5,-1,0,0,-0.187359 -94748,5014:112:1,-142,-1,0,0,-0.185766 -94749,5014:111:2,-141.5,-1,0,0,-0.183984 -94750,5014:111:1,-141,-1,0,0,-0.183548 -94751,5014:110:2,-140.5,-1,0,0,-0.182247 -94752,5014:110:1,-140,-1,0,0,-0.181639 -94753,5013:219:2,-139.5,-1,0,0,-0.181715 -94754,5013:219:1,-139,-1,0,0,-0.182273 -94755,5013:218:2,-138.5,-1,0,0,-0.183063 -94756,5013:218:1,-138,-1,0,0,-0.183676 -94757,5013:217:2,-137.5,-1,0,0,-0.183959 -94758,5013:217:1,-137,-1,0,0,-0.182171 -94759,5013:216:2,-136.5,-1,0,0,-0.180203 -94760,5013:216:1,-136,-1,0,0,-0.179327 -94761,5013:215:2,-135.5,-1,0,0,-0.17705 -94762,5013:215:1,-135,-1,0,0,-0.17534 -94763,5013:114:2,-134.5,-1,0,0,-0.174274 -94764,5013:114:1,-134,-1,0,0,-0.174878 -94765,5013:113:2,-133.5,-1,0,0,-0.175266 -94766,5013:113:1,-133,-1,0,0,-0.175437 -94767,5013:112:2,-132.5,-1,0,0,-0.175924 -94768,5013:112:1,-132,-1,0,0,-0.177099 -94769,5013:111:2,-131.5,-1,0,0,-0.177937 -94770,5013:111:1,-131,-1,0,0,-0.177641 -94771,5013:110:2,-130.5,-1,0,0,-0.175777 -94772,5013:110:1,-130,-1,0,0,-0.172953 -94773,5012:219:2,-129.5,-1,0,0,-0.171856 -94774,5012:219:1,-129,-1,0,0,-0.170414 -94775,5012:218:2,-128.5,-1,0,0,-0.16887 -94776,5012:218:1,-128,-1,0,0,-0.168058 -94777,5012:217:2,-127.5,-1,0,0,-0.168614 -94778,5012:217:1,-127,-1,0,0,-0.169057 -94779,5012:216:2,-126.5,-1,0,0,-0.168894 -94780,5012:216:1,-126,-1,0,0,-0.167989 -94781,5012:215:2,-125.5,-1,0,0,-0.166469 -94782,5012:215:1,-125,-1,0,0,-0.165647 -94783,5012:114:2,-124.5,-1,0,0,-0.165875 -94784,5012:114:1,-124,-1,0,0,-0.166332 -94785,5012:113:2,-123.5,-1,0,0,-0.166492 -94786,5012:113:1,-123,-1,0,0,-0.16483 -94787,5012:112:2,-122.5,-1,0,0,-0.161938 -94788,5012:112:1,-122,-1,0,0,-0.159301 -94789,5012:111:2,-121.5,-1,0,0,-0.156519 -94790,5012:111:1,-121,-1,0,0,-0.155774 -94791,5012:110:2,-120.5,-1,0,0,-0.155732 -94792,5012:110:1,-120,-1,0,0,-0.154317 -94793,5011:219:2,-119.5,-1,0,0,-0.155965 -94794,5011:219:1,-119,-1,0,0,-0.157763 -94795,5011:218:2,-118.5,-1,0,0,-0.159693 -94796,5011:218:1,-118,-1,0,0,-0.160701 -94797,5011:217:2,-117.5,-1,0,0,-0.16101 -94798,5011:217:1,-117,-1,0,0,-0.161363 -94799,5011:216:2,-116.5,-1,0,0,-0.161341 -94800,5011:216:1,-116,-1,0,0,-0.160592 -94801,5011:215:2,-115.5,-1,0,0,-0.159497 -94802,5011:215:1,-115,-1,0,0,-0.158303 -94803,5011:114:2,-114.5,-1,0,0,-0.157419 -94804,5011:114:1,-114,-1,0,0,-0.157119 -94805,5011:113:2,-113.5,-1,0,0,-0.157591 -94806,5011:113:1,-113,-1,0,0,-0.157763 -94807,5011:112:2,-112.5,-1,0,0,-0.157957 -94808,5011:112:1,-112,-1,0,0,-0.158086 -94809,5011:111:2,-111.5,-1,0,0,-0.158562 -94810,5011:111:1,-111,-1,0,0,-0.160043 -94811,5011:110:2,-110.5,-1,0,0,-0.162072 -94812,5011:110:1,-110,-1,0,0,-0.162851 -94813,5010:219:2,-109.5,-1,0,0,-0.163545 -94814,5010:219:1,-109,-1,0,0,-0.164197 -94815,5010:218:2,-108.5,-1,0,0,-0.164694 -94816,5010:218:1,-108,-1,0,0,-0.165147 -94817,5010:217:2,-107.5,-1,0,0,-0.165533 -94818,5010:217:1,-107,-1,0,0,-0.16592 -94819,5010:216:2,-106.5,-1,0,0,-0.166149 -94820,5010:216:1,-106,-1,0,0,-0.166126 -94821,5010:215:2,-105.5,-1,0,0,-0.166149 -94822,5010:215:1,-105,-1,0,0,-0.166195 -94823,5010:114:2,-104.5,-1,0,0,-0.166104 -94824,5010:114:1,-104,-1,0,0,-0.166012 -94825,5010:113:2,-103.5,-1,0,0,-0.165943 -94826,5010:113:1,-103,-1,0,0,-0.165898 -94827,5010:112:2,-102.5,-1,0,0,-0.165807 -94828,5010:112:1,-102,-1,0,0,-0.165556 -94829,5010:111:2,-101.5,-1,0,0,-0.165283 -94830,5010:111:1,-101,-1,0,0,-0.165306 -94831,5010:110:2,-100.5,-1,0,0,-0.165784 -94832,5010:110:1,-100,-1,0,0,-0.166423 -94833,5009:219:2,-99.5,-1,0,0,-0.167158 -94834,5009:219:1,-99,-1,0,0,-0.167803 -94835,5009:218:2,-98.5,-1,0,0,-0.168174 -94836,5009:218:1,-98,-1,0,0,-0.168452 -94837,5009:217:2,-97.5,-1,0,0,-0.168894 -94838,5009:217:1,-97,-1,0,0,-0.16936 -94839,5009:216:2,-96.5,-1,0,0,-0.169687 -94840,5009:216:1,-96,-1,0,0,-0.170038 -94841,5009:215:2,-95.5,-1,0,0,-0.170414 -94842,5009:215:1,-95,-1,0,0,-0.170367 -94843,5009:114:2,-94.5,-1,0,0,-0.16971 -94844,5009:114:1,-94,-1,0,0,-0.168591 -94845,5009:113:2,-93.5,-1,0,0,-0.166905 -94846,5009:113:1,-93,-1,0,0,-0.165397 -94847,5009:112:2,-92.5,-1,0,0,-0.165465 -94848,5009:112:1,-92,-1,0,0,-0.166515 -94849,5009:111:2,-91.5,-1,0,0,-0.16725 -94850,5009:111:1,-91,-1,0,0,-0.168336 -94851,5009:110:2,-90.5,-1,0,0,-0.169921 -94852,5009:110:1,-90,-1,0,0,-0.171476 -94853,5008:219:2,-89.5,-1,0,0,-0.172713 -94854,5008:219:1,-89,-1,0,0,-0.173576 -94855,5008:218:2,-88.5,-1,0,0,-0.174225 -94856,5008:218:1,-88,-1,0,0,-0.174418 -94857,5008:217:2,-87.5,-1,0,0,-0.174153 -94858,5008:217:1,-87,-1,0,0,-0.17336 -94859,5008:216:2,-86.5,-1,0,0,-0.172165 -94860,5008:216:1,-86,-1,0,0,-0.170579 -94861,5008:215:2,-85.5,-1,0,0,-0.169243 -94862,5008:215:1,-85,-1,0,0,-0.167595 -94863,5008:114:2,-84.5,-1,0,0,-0.166332 -94864,5008:114:1,-84,-1,0,0,-0.165693 -94865,5008:113:2,-83.5,-1,0,0,-0.165442 -94866,5008:113:1,-83,-1,0,0,-0.165147 -94867,5008:112:2,-82.5,-1,0,0,-0.164717 -94868,5008:112:1,-82,-1,0,0,-0.163994 -94869,5008:111:2,-81.5,-1,0,0,-0.164017 -94870,5008:111:1,-81,-1,0,0,-0.165351 -94871,5008:110:2,-80.5,-1,0,0,-0.165716 -94872,5008:110:1,-80,-1,0,0,-0.16829 -94873,5007:219:2,-79.5,-1,0,0,-0.173503 -94874,5007:219:1,-79,-1,0,0,-0.174225 -94875,5005:110:1,-50,-1,0,0,-0.196188 -94876,5004:219:2,-49.5,-1,0,0,-0.196761 -94877,5004:219:1,-49,-1,0,0,-0.188596 -94878,5004:218:2,-48.5,-1,0,0,-0.179852 -94879,5004:218:1,-48,-1,0,0,-0.175145 -94880,5004:217:2,-47.5,-1,0,0,-0.174225 -94881,5004:217:1,-47,-1,0,0,-0.178581 -94882,5004:216:2,-46.5,-1,0,0,-0.178929 -94883,5004:216:1,-46,-1,0,0,-0.180303 -94884,5004:215:2,-45.5,-1,0,0,-0.181715 -94885,5004:215:1,-45,-1,0,0,-0.183472 -94886,5004:114:2,-44.5,-1,0,0,-0.184602 -94887,5004:114:1,-44,-1,0,0,-0.185274 -94888,5004:113:2,-43.5,-1,0,0,-0.185715 -94889,5004:113:1,-43,-1,0,0,-0.186183 -94890,5004:112:2,-42.5,-1,0,0,-0.186652 -94891,5004:112:1,-42,-1,0,0,-0.186705 -94892,5004:111:2,-41.5,-1,0,0,-0.186287 -94893,5004:111:1,-41,-1,0,0,-0.185741 -94894,5004:110:2,-40.5,-1,0,0,-0.185093 -94895,5004:110:1,-40,-1,0,0,-0.18419 -94896,5003:219:2,-39.5,-1,0,0,-0.182961 -94897,5003:219:1,-39,-1,0,0,-0.181335 -94898,5003:218:2,-38.5,-1,0,0,-0.179702 -94899,5003:218:1,-38,-1,0,0,-0.178457 -94900,5003:217:2,-37.5,-1,0,0,-0.177369 -94901,5003:217:1,-37,-1,0,0,-0.176461 -94902,5003:216:2,-36.5,-1,0,0,-0.175997 -94903,5003:216:1,-36,-1,0,0,-0.17568 -94904,5003:215:2,-35.5,-1,0,0,-0.175412 -94905,5003:215:1,-35,-1,0,0,-0.175266 -94906,5003:114:2,-34.5,-1,0,0,-0.175218 -94907,5003:114:1,-34,-1,0,0,-0.175145 -94908,5003:113:2,-33.5,-1,0,0,-0.175121 -94909,5003:113:1,-33,-1,0,0,-0.175121 -94910,5003:112:2,-32.5,-1,0,0,-0.175218 -94911,5003:112:1,-32,-1,0,0,-0.175461 -94912,5003:111:2,-31.5,-1,0,0,-0.175704 -94913,5003:111:1,-31,-1,0,0,-0.175656 -94914,5003:110:2,-30.5,-1,0,0,-0.177001 -94915,5003:110:1,-30,-1,0,0,-0.17816 -94916,5002:219:2,-29.5,-1,0,0,-0.179054 -94917,5002:219:1,-29,-1,0,0,-0.179752 -94918,5002:218:2,-28.5,-1,0,0,-0.180052 -94919,5002:218:1,-28,-1,0,0,-0.179927 -94920,5002:217:2,-27.5,-1,0,0,-0.180028 -94921,5002:217:1,-27,-1,0,0,-0.180579 -94922,5002:216:2,-26.5,-1,0,0,-0.181562 -94923,5002:216:1,-26,-1,0,0,-0.181892 -94924,5002:215:2,-25.5,-1,0,0,-0.181562 -94925,5002:215:1,-25,-1,0,0,-0.181841 -94926,5002:114:2,-24.5,-1,0,0,-0.18212 -94927,5002:114:1,-24,-1,0,0,-0.182476 -94928,5002:113:2,-23.5,-1,0,0,-0.182552 -94929,5002:113:1,-23,-1,0,0,-0.1824 -94930,5002:112:2,-22.5,-1,0,0,-0.182578 -94931,5002:112:1,-22,-1,0,0,-0.182909 -94932,5002:111:2,-21.5,-1,0,0,-0.183626 -94933,5002:111:1,-21,-1,0,0,-0.184396 -94934,5002:110:2,-20.5,-1,0,0,-0.184499 -94935,5002:110:1,-20,-1,0,0,-0.184964 -94936,5001:219:2,-19.5,-1,0,0,-0.185793 -94937,5001:219:1,-19,-1,0,0,-0.18728 -94938,5001:218:2,-18.5,-1,0,0,-0.188596 -94939,5001:218:1,-18,-1,0,0,-0.188967 -94940,5001:217:2,-17.5,-1,0,0,-0.189233 -94941,5001:217:1,-17,-1,0,0,-0.189844 -94942,5001:216:2,-16.5,-1,0,0,-0.190645 -94943,5001:216:1,-16,-1,0,0,-0.191746 -94944,5001:215:2,-15.5,-1,0,0,-0.192881 -94945,5001:215:1,-15,-1,0,0,-0.195134 -94946,5001:114:2,-14.5,-1,0,0,-0.197115 -94947,5001:114:1,-14,-1,0,0,-0.199309 -94948,5001:113:2,-13.5,-1,0,0,-0.209428 -94949,5001:113:1,-13,-1,0,0,-0.228162 -94950,5001:112:2,-12.5,-1,0,0,-0.251266 -94951,5001:112:1,-12,-1,0,0,-0.278121 -94952,5001:111:2,-11.5,-1,0,0,-0.307551 -94953,5001:111:1,-11,-1,0,0,-0.340944 -94954,5001:110:2,-10.5,-1,0,0,-0.378343 -94955,5001:110:1,-10,-1,0,0,-0.416741 -94956,5000:219:2,-9.5,-1,0,0,-0.455404 -94957,5000:219:1,-9,-1,0,0,-0.494294 -94958,5000:218:2,-8.5,-1,0,0,-0.529677 -94959,5000:218:1,-8,-1,0,0,-0.561951 -94960,5000:217:2,-7.5,-1,0,0,-0.593488 -94961,5000:217:1,-7,-1,0,0,-0.627466 -94962,5000:216:2,-6.5,-1,0,0,-0.660175 -94963,5000:216:1,-6,-1,0,0,-0.688039 -94964,5000:215:2,-5.5,-1,0,0,-0.725999 -94965,5000:215:1,-5,-1,0,0,-0.763942 -94966,5000:114:2,-4.5,-1,0,0,-0.790583 -94967,5000:114:1,-4,-1,0,0,-0.801619 -94968,5000:113:2,-3.5,-1,0,0,-0.787837 -94969,5000:113:1,-3,-1,0,0,-0.761432 -94970,5000:112:2,-2.5,-1,0,0,-0.757103 -94971,5000:112:1,-2,-1,0,0,-0.73375 -94972,5000:111:2,-1.5,-1,0,0,-0.699648 -94973,5000:111:1,-1,-1,0,0,-0.68091 -94974,5000:110:2,-0.5,-1,0,0,-0.678113 -94975,3000:110:2,0,-1,0,0,-0.672525 -94976,3000:110:2,0.5,-1,0,0,-0.654793 -94977,3000:111:1,1,-1,0,0,-0.640273 -94978,3000:111:2,1.5,-1,0,0,-0.658814 -94979,3000:112:1,2,-1,0,0,-0.690938 -94980,3000:112:2,2.5,-1,0,0,-0.689486 -94981,3000:113:1,3,-1,0,0,-0.661499 -94982,3000:113:2,3.5,-1,0,0,-0.64417 -94983,3000:114:1,4,-1,0,0,-0.612584 -94984,3000:114:2,4.5,-1,0,0,-0.602932 -94985,3000:215:1,5,-1,0,0,-0.57295 -94986,3000:215:2,5.5,-1,0,0,-0.532682 -94987,3000:216:1,6,-1,0,0,-0.509207 -94988,3000:216:2,6.5,-1,0,0,-0.519783 -94989,3000:217:1,7,-1,0,0,-0.554442 -94990,3000:217:2,7.5,-1,0,0,-0.598184 -94991,3000:218:1,8,-1,0,0,-0.616286 -94992,3000:218:2,8.5,-1,0,0,-0.598184 -94993,3000:219:1,9,-1,0,0,-0.561951 -94994,3000:219:2,9.5,-1,0,0,-0.403187 -94995,3004:215:2,45.5,-1,0,0,-0.169219 -94996,3004:216:1,46,-1,0,0,-0.169875 -94997,3004:216:2,46.5,-1,0,0,-0.181538 -94998,3004:217:1,47,-1,0,0,-0.185974 -94999,3004:217:2,47.5,-1,0,0,-0.189021 -95000,3004:218:1,48,-1,0,0,-0.191584 -95001,3004:218:2,48.5,-1,0,0,-0.196231 -95002,3004:219:1,49,-1,0,0,-0.198136 -95003,3004:219:2,49.5,-1,0,0,-0.210987 -95004,3005:110:1,50,-1,0,0,-0.236285 -95005,3005:110:2,50.5,-1,0,0,-0.275059 -95006,3005:111:1,51,-1,0,0,-0.357826 -95007,3005:111:2,51.5,-1,0,0,-0.376422 -95008,3005:112:1,52,-1,0,0,-0.409543 -95009,3005:112:2,52.5,-1,0,0,-0.729692 -95010,3005:113:1,53,-1,0,0,-1.0462 -95011,3005:113:2,53.5,-1,0,0,-1.39184 -95012,3005:114:1,54,-1,0,0,-1.64122 -95013,3005:114:2,54.5,-1,0,0,-0.957335 -95014,3005:215:1,55,-1,0,0,-0.848069 -95015,3005:215:2,55.5,-1,0,0,-0.895345 -95016,3005:216:1,56,-1,0,0,-1.31208 -95017,3005:216:2,56.5,-1,0,0,-4.52385 -95018,3005:217:1,57,-1,0,0,-4.67245 -95019,3005:217:2,57.5,-1,0,0,-1.6083 -95020,3005:218:1,58,-1,0,0,-0.759297 -95021,3005:218:2,58.5,-1,0,0,-0.516875 -95022,3005:219:1,59,-1,0,0,-0.39423 -95023,3005:219:2,59.5,-1,0,0,-0.327709 -95024,3006:110:1,60,-1,0,0,-0.333145 -95025,3006:110:2,60.5,-1,0,0,-0.364498 -95026,3006:111:1,61,-1,0,0,-0.328794 -95027,3006:111:2,61.5,-1,0,0,-0.292611 -95028,3006:112:1,62,-1,0,0,-0.267403 -95029,3006:112:2,62.5,-1,0,0,-0.269509 -95030,3006:113:1,63,-1,0,0,-0.277238 -95031,3006:113:2,63.5,-1,0,0,-0.287993 -95032,3006:114:1,64,-1,0,0,-0.308052 -95033,3006:114:2,64.5,-1,0,0,-0.328251 -95034,3006:215:1,65,-1,0,0,-0.354838 -95035,3006:215:2,65.5,-1,0,0,-0.402483 -95036,3006:216:1,66,-1,0,0,-0.457032 -95037,3006:216:2,66.5,-1,0,0,-0.513022 -95038,3006:217:1,67,-1,0,0,-0.58652 -95039,3006:217:2,67.5,-1,0,0,-0.672525 -95040,3006:218:1,68,-1,0,0,-0.740005 -95041,3006:218:2,68.5,-1,0,0,-0.836097 -95042,3006:219:1,69,-1,0,0,-0.994479 -95043,3006:219:2,69.5,-1,0,0,-1.23387 -95044,3007:110:1,70,-1,0,0,-1.39834 -95045,3007:110:2,70.5,-1,0,0,-1.5157 -95046,3007:111:1,71,-1,0,0,-1.56078 -95047,3007:111:2,71.5,-1,0,0,-1.48672 -95048,3007:112:1,72,-1,0,0,-1.31208 -95049,3007:112:2,72.5,-1,0,0,-1.37263 -95050,3007:113:2,73.5,-1,0,0,-1.6245 -95051,3007:114:1,74,-1,0,0,-1.41792 -96370,1017:102:4,172.5,0,0,0,2.58348 -95052,3007:114:2,74.5,-1,0,0,-1.71947 -95053,3007:215:1,75,-1,0,0,-1.94954 -95054,3007:215:2,75.5,-1,0,0,-1.92773 -95055,3007:216:1,76,-1,0,0,-1.76564 -95056,3007:216:2,76.5,-1,0,0,-1.77489 -95057,3007:217:1,77,-1,0,0,-1.93875 -95058,3007:217:2,77.5,-1,0,0,-2.10331 -95059,3007:218:1,78,-1,0,0,-2.14197 -95060,3007:218:2,78.5,-1,0,0,-1.82355 -95061,3007:219:1,79,-1,0,0,-1.50098 -95062,3007:219:2,79.5,-1,0,0,-1.47245 -95063,3008:110:1,80,-1,0,0,-1.34786 -95064,3008:110:2,80.5,-1,0,0,-1.23925 -95065,3008:111:1,81,-1,0,0,-1.19244 -95066,3008:111:2,81.5,-1,0,0,-1.20251 -95067,3008:112:1,82,-1,0,0,-1.20768 -95068,3008:112:2,82.5,-1,0,0,-1.30036 -95069,3008:113:1,83,-1,0,0,-1.48672 -95070,3008:113:2,83.5,-1,0,0,-1.66656 -95071,3008:114:1,84,-1,0,0,-1.77489 -95072,3008:114:2,84.5,-1,0,0,-1.89559 -95073,3008:215:1,85,-1,0,0,-2.23613 -95074,3008:215:2,85.5,-1,0,0,-2.39955 -95075,3008:216:1,86,-1,0,0,-2.29319 -95076,3008:216:2,86.5,-1,0,0,-2.29319 -95077,3008:217:1,87,-1,0,0,-2.20871 -95078,3008:217:2,87.5,-1,0,0,-1.97212 -95079,3008:218:1,88,-1,0,0,-1.78451 -95080,3008:218:2,88.5,-1,0,0,-1.87444 -95081,3008:219:1,89,-1,0,0,-1.9168 -95082,3008:219:2,89.5,-1,0,0,-1.98357 -95083,3009:110:1,90,-1,0,0,-2.46395 -95084,3009:110:2,90.5,-1,0,0,-3.0841 -95085,3009:111:1,91,-1,0,0,-2.30795 -95086,3009:111:2,91.5,-1,0,0,-1.74682 -95087,3009:112:1,92,-1,0,0,-1.18234 -95088,3009:112:2,92.5,-1,0,0,-1.21288 -95089,3009:113:1,93,-1,0,0,-1.19754 -95090,3009:113:2,93.5,-1,0,0,-1.09328 -95091,3009:114:1,94,-1,0,0,-1.11116 -95092,3009:114:2,94.5,-1,0,0,-1.26652 -95093,3009:215:1,95,-1,0,0,-1.42461 -95094,3009:215:2,95.5,-1,0,0,-1.93875 -95095,3009:216:1,96,-1,0,0,-3.46126 -95096,3009:216:2,96.5,-1,0,0,-8.21955 -95097,3009:217:1,97,-1,0,0,49.6485 -95098,3009:217:2,97.5,-1,0,0,9.66698 -95099,3009:218:1,98,-1,0,0,5.93563 -95100,3009:218:2,98.5,-1,0,0,13.9409 -95101,3010:112:1,102,-1,0,0,3.18033 -95102,3010:112:2,102.5,-1,0,0,2.56794 -95103,3010:114:2,104.5,-1,0,0,-0.457032 -95104,3010:215:1,105,-1,0,0,-0.2649 -95105,3010:215:2,105.5,-1,0,0,-0.262425 -95106,3010:216:1,106,-1,0,0,-0.309546 -95107,3010:216:2,106.5,-1,0,0,-0.34492 -95108,3010:217:1,107,-1,0,0,-0.357222 -95109,3010:217:2,107.5,-1,0,0,-0.430147 -95110,3010:218:1,108,-1,0,0,-0.590007 -95111,3010:218:2,108.5,-1,0,0,-0.960878 -95112,3010:219:1,109,-1,0,0,5.20333 -95113,3010:219:2,109.5,-1,0,0,2.20209 -95114,3011:110:1,110,-1,0,0,2.09278 -95115,3011:110:2,110.5,-1,0,0,1.92866 -95116,3011:111:1,111,-1,0,0,1.51249 -95117,3011:218:2,118.5,-1,0,0,-0.798818 -95118,3011:219:1,119,-1,0,0,-0.515901 -95119,3011:219:2,119.5,-1,0,0,-0.712058 -95120,3012:110:1,120,-1,0,0,-1.04217 -95121,3012:110:2,120.5,-1,0,0,-1.32377 -95122,3012:111:1,121,-1,0,0,-1.11574 -95123,3012:111:2,121.5,-1,0,0,-1.12483 -95124,3012:112:1,122,-1,0,0,-1.81358 -95125,3012:112:2,122.5,-1,0,0,-2.73399 -95126,3012:113:1,123,-1,0,0,-4.20681 -95127,3012:113:2,123.5,-1,0,0,-10.6543 -95128,3012:114:1,124,-1,0,0,-12.6365 -95129,3012:114:2,124.5,-1,0,0,-5.05687 -95130,3012:215:1,125,-1,0,0,-1.88497 -95131,3012:215:2,125.5,-1,0,0,-2.49701 -95132,3012:216:1,126,-1,0,0,-3.10876 -95133,3012:216:2,126.5,-1,0,0,-3.92893 -95134,3012:217:1,127,-1,0,0,-2.25028 -95135,3012:217:2,127.5,-1,0,0,12.6794 -95136,3012:218:2,128.5,-1,0,0,11.8805 -95137,3012:219:1,129,-1,0,0,4.20802 -95138,3012:219:2,129.5,-1,0,0,-20.6761 -95139,3013:110:1,130,-1,0,0,-6.66212 -95140,3013:110:2,130.5,-1,0,0,-26.1207 -95141,3013:111:1,131,-1,0,0,-14.1166 -95142,3013:111:2,131.5,-1,0,0,-8.52457 -95143,3013:112:1,132,-1,0,0,-7.80297 -95144,3013:112:2,132.5,-1,0,0,-12.6365 -95145,3013:113:1,133,-1,0,0,-8.36943 -95146,3013:113:2,133.5,-1,0,0,-4.52385 -95147,3013:114:1,134,-1,0,0,-3.06051 -95148,3013:114:2,134.5,-1,0,0,-2.44745 -95149,3013:215:1,135,-1,0,0,-2.26457 -95150,3013:215:2,135.5,-1,0,0,-1.93875 -95151,3013:216:1,136,-1,0,0,-2.15513 -95152,3013:216:2,136.5,-1,0,0,-2.23613 -95153,3013:217:1,137,-1,0,0,-2.27859 -95154,3013:217:2,137.5,-1,0,0,-2.12896 -95155,3013:218:1,138,-1,0,0,-1.77489 -95156,3013:218:2,138.5,-1,0,0,-1.65796 -95157,3013:219:1,139,-1,0,0,-1.53041 -95158,3013:219:2,139.5,-1,0,0,-1.53797 -95159,3014:110:1,140,-1,0,0,-1.60018 -95160,3014:110:2,140.5,-1,0,0,-1.86401 -95161,3014:111:1,141,-1,0,0,-2.92199 -95162,3014:111:2,141.5,-1,0,0,-4.38224 -95163,3014:112:1,142,-1,0,0,-9.38404 -95164,3014:112:2,142.5,-1,0,0,79.6842 -95165,3014:113:1,143,-1,0,0,7.36886 -95166,3014:113:2,143.5,-1,0,0,4.03457 -95167,3014:114:1,144,-1,0,0,3.26296 -95168,3014:114:2,144.5,-1,0,0,3.06518 -95169,3014:215:1,145,-1,0,0,2.76458 -95170,3014:215:2,145.5,-1,0,0,2.48591 -95171,3014:216:1,146,-1,0,0,2.34735 -95172,3014:216:2,146.5,-1,0,0,2.23865 -95173,3014:217:1,147,-1,0,0,2.15741 -95174,3014:217:2,147.5,-1,0,0,2.06257 -95175,3014:218:1,148,-1,0,0,1.93566 -95176,3014:218:2,148.5,-1,0,0,1.82992 -95177,3014:219:1,149,-1,0,0,1.79303 -95178,3014:219:2,149.5,-1,0,0,1.75596 -95179,3015:110:1,150,-1,0,0,1.73827 -95180,3015:110:2,150.5,-1,0,0,1.74827 -95181,3015:111:1,151,-1,0,0,1.75596 -95182,3015:111:2,151.5,-1,0,0,1.76107 -95183,3015:112:1,152,-1,0,0,1.80412 -95184,3015:112:2,152.5,-1,0,0,1.89498 -95185,3015:113:1,153,-1,0,0,2.00571 -95186,3015:113:2,153.5,-1,0,0,2.13838 -95187,3015:114:1,154,-1,0,0,2.19202 -95188,3015:114:2,154.5,-1,0,0,2.13838 -95189,3015:215:1,155,-1,0,0,2.07115 -95190,3015:215:2,155.5,-1,0,0,2.03759 -95191,3015:216:1,156,-1,0,0,2.02954 -95192,3015:216:2,156.5,-1,0,0,2.05833 -95193,3015:217:1,157,-1,0,0,2.11065 -95194,3015:217:2,157.5,-1,0,0,2.16228 -95195,3015:218:1,158,-1,0,0,2.21245 -95196,3015:218:2,158.5,-1,0,0,2.23865 -95197,3015:219:1,159,-1,0,0,2.29409 -95198,3015:219:2,159.5,-1,0,0,2.35974 -95199,3016:110:1,160,-1,0,0,2.40415 -95200,3016:110:2,160.5,-1,0,0,2.45089 -95201,3016:111:1,161,-1,0,0,2.50749 -95202,3016:111:2,161.5,-1,0,0,2.51487 -95203,3016:112:1,162,-1,0,0,2.48591 -95204,3016:112:2,162.5,-1,0,0,2.41073 -95205,3016:113:1,163,-1,0,0,2.34123 -95206,3016:113:2,163.5,-1,0,0,2.26034 -95207,3016:114:1,164,-1,0,0,2.19696 -95208,3016:114:2,164.5,-1,0,0,2.16228 -95209,3016:215:1,165,-1,0,0,2.11982 -95210,3016:215:2,165.5,-1,0,0,2.10173 -95211,3016:216:1,166,-1,0,0,2.11522 -95212,3016:216:2,166.5,-1,0,0,2.12911 -95213,3016:217:1,167,-1,0,0,2.10624 -95214,3016:217:2,167.5,-1,0,0,2.06257 -95215,3016:218:1,168,-1,0,0,2.05003 -95216,3016:218:2,168.5,-1,0,0,2.07115 -95217,3016:219:1,169,-1,0,0,2.27149 -95218,3016:219:2,169.5,-1,0,0,1.99803 -95219,3017:110:1,170,-1,0,0,1.9184 -95220,3017:110:2,170.5,-1,0,0,1.91498 -95221,3017:111:1,171,-1,0,0,1.93566 -95222,3017:111:2,171.5,-1,0,0,1.93215 -95223,3017:112:1,172,-1,0,0,1.97904 -95224,3017:112:2,172.5,-1,0,0,1.92184 -95225,3017:113:1,173,-1,0,0,1.90831 -95226,3017:113:2,173.5,-1,0,0,1.88203 -95227,3017:114:1,174,-1,0,0,1.83884 -95228,3017:114:2,174.5,-1,0,0,1.84782 -95229,3017:215:1,175,-1,0,0,1.8789 -95230,3017:215:2,175.5,-1,0,0,2.00964 -95231,3017:216:1,176,-1,0,0,2.10173 -95232,3017:216:2,176.5,-1,0,0,2.15741 -95233,3017:217:1,177,-1,0,0,2.19696 -95234,3017:217:2,177.5,-1,0,0,2.2495 -95235,3017:218:1,178,-1,0,0,2.33514 -95236,3017:218:2,178.5,-1,0,0,2.32329 -95237,3017:219:1,179,-1,0,0,2.27149 -95238,3017:219:2,179.5,-1,0,0,2.31142 -95239,3018:110:1,180,-1,0,0,2.37212 -95240,5018:100:3,-180,-0.5,0,0,3.77192 -95241,5017:209:4,-179.5,-0.5,0,0,4.34331 -95242,5017:209:3,-179,-0.5,0,0,4.61376 -95243,5017:208:4,-178.5,-0.5,0,0,5.08039 -95244,5017:208:3,-178,-0.5,0,0,5.20333 -95245,5017:207:4,-177.5,-0.5,0,0,5.56737 -95246,5017:207:3,-177,-0.5,0,0,6.23439 -95247,5017:206:4,-176.5,-0.5,0,0,7.55344 -95248,5017:206:3,-176,-0.5,0,0,9.83283 -95249,5017:205:4,-175.5,-0.5,0,0,12.1375 -95250,5017:205:3,-175,-0.5,0,0,16.4219 -95251,5017:104:4,-174.5,-0.5,0,0,30.0028 -95252,5017:104:3,-174,-0.5,0,0,-33.0023 -95253,5017:103:4,-173.5,-0.5,0,0,-8.85178 -95254,5017:103:3,-173,-0.5,0,0,-5.30386 -95255,5017:102:4,-172.5,-0.5,0,0,-4.29357 -95256,5017:102:3,-172,-0.5,0,0,-3.43147 -95257,5017:101:4,-171.5,-0.5,0,0,-2.92199 -95258,5017:101:3,-171,-0.5,0,0,-2.35276 -95259,5017:100:4,-170.5,-0.5,0,0,-1.70144 -95260,5017:100:3,-170,-0.5,0,0,-1.20251 -95261,5016:209:4,-169.5,-0.5,0,0,-0.911966 -95262,5016:209:3,-169,-0.5,0,0,-0.812878 -95263,5016:208:4,-168.5,-0.5,0,0,-0.986926 -95264,5016:208:3,-168,-0.5,0,0,-1.28898 -95265,5016:207:4,-167.5,-0.5,0,0,-1.36025 -95266,5016:207:3,-167,-0.5,0,0,-1.27759 -95267,5016:206:4,-166.5,-0.5,0,0,-0.994479 -95268,5016:206:3,-166,-0.5,0,0,-0.718965 -95269,5016:205:4,-165.5,-0.5,0,0,-0.57295 -95270,5016:205:3,-165,-0.5,0,0,-0.480868 -95271,5016:104:4,-164.5,-0.5,0,0,-0.459501 -95272,5016:104:3,-164,-0.5,0,0,-0.461174 -95273,5016:103:4,-163.5,-0.5,0,0,-0.476491 -95274,5016:103:3,-163,-0.5,0,0,-0.484402 -95275,5016:102:4,-162.5,-0.5,0,0,-0.503542 -95276,5016:102:3,-162,-0.5,0,0,-0.541868 -95277,5016:101:4,-161.5,-0.5,0,0,-0.583095 -95278,5016:101:3,-161,-0.5,0,0,-0.523704 -95279,5016:100:4,-160.5,-0.5,0,0,-0.427123 -95280,5016:100:3,-160,-0.5,0,0,-0.372599 -95281,5015:209:4,-159.5,-0.5,0,0,-0.333145 -95282,5015:209:3,-159,-0.5,0,0,-0.333698 -95283,5015:208:4,-158.5,-0.5,0,0,-0.363282 -95284,5015:208:3,-158,-0.5,0,0,-0.424878 -95285,5015:207:4,-157.5,-0.5,0,0,-0.476491 -95286,5015:207:3,-157,-0.5,0,0,-0.518801 -95287,5015:206:4,-156.5,-0.5,0,0,-0.510135 -95288,5015:206:3,-156,-0.5,0,0,-0.503542 -95289,5015:205:4,-155.5,-0.5,0,0,-0.556592 -95290,5015:205:3,-155,-0.5,0,0,-0.527666 -95291,5015:104:4,-154.5,-0.5,0,0,-0.477367 -95292,5015:104:3,-154,-0.5,0,0,-0.44412 -95293,5015:103:4,-153.5,-0.5,0,0,-0.38354 -95294,5015:103:3,-153,-0.5,0,0,-0.324513 -95295,5015:102:4,-152.5,-0.5,0,0,-0.294027 -95296,5015:102:3,-152,-0.5,0,0,-0.269083 -95297,5015:101:4,-151.5,-0.5,0,0,-0.269509 -95298,5015:101:3,-151,-0.5,0,0,-0.272051 -95299,5015:100:4,-150.5,-0.5,0,0,-0.275496 -95300,5015:100:3,-150,-0.5,0,0,-0.270349 -95301,5014:209:4,-149.5,-0.5,0,0,-0.222767 -95302,5014:209:3,-149,-0.5,0,0,-0.198047 -95303,5014:208:4,-148.5,-0.5,0,0,-0.194696 -95304,5014:208:3,-148,-0.5,0,0,-0.195003 -95305,5014:207:4,-147.5,-0.5,0,0,-0.194784 -95306,5014:207:3,-147,-0.5,0,0,-0.193392 -95307,5014:206:4,-146.5,-0.5,0,0,-0.192584 -95308,5014:206:3,-146,-0.5,0,0,-0.19234 -95309,5014:205:4,-145.5,-0.5,0,0,-0.193565 -95310,5014:205:3,-145,-0.5,0,0,-0.19387 -95311,5014:104:4,-144.5,-0.5,0,0,-0.194305 -95312,5014:104:3,-144,-0.5,0,0,-0.194566 -95313,5014:103:4,-143.5,-0.5,0,0,-0.193782 -95314,5014:103:3,-143,-0.5,0,0,-0.192286 -95315,5014:102:4,-142.5,-0.5,0,0,-0.189524 -95316,5014:102:3,-142,-0.5,0,0,-0.186783 -95317,5014:101:4,-141.5,-0.5,0,0,-0.185093 -95318,5014:101:3,-141,-0.5,0,0,-0.18486 -95319,5014:100:4,-140.5,-0.5,0,0,-0.184139 -95320,5014:100:3,-140,-0.5,0,0,-0.183779 -95321,5013:209:4,-139.5,-0.5,0,0,-0.184113 -95322,5013:209:3,-139,-0.5,0,0,-0.18587 -95323,5013:208:4,-138.5,-0.5,0,0,-0.187569 -95324,5013:208:3,-138,-0.5,0,0,-0.188359 -95325,5013:207:4,-137.5,-0.5,0,0,-0.187648 -95326,5013:207:3,-137,-0.5,0,0,-0.187438 -95327,5013:206:4,-136.5,-0.5,0,0,-0.186574 -95328,5013:206:3,-136,-0.5,0,0,-0.184809 -95329,5013:205:4,-135.5,-0.5,0,0,-0.180882 -95330,5013:205:3,-135,-0.5,0,0,-0.178284 -95331,5013:104:4,-134.5,-0.5,0,0,-0.176976 -95332,5013:104:3,-134,-0.5,0,0,-0.178309 -95333,5013:103:4,-133.5,-0.5,0,0,-0.179927 -95334,5013:103:3,-133,-0.5,0,0,-0.181664 -95335,5013:102:4,-132.5,-0.5,0,0,-0.183088 -95336,5013:102:3,-132,-0.5,0,0,-0.182807 -95337,5013:101:4,-131.5,-0.5,0,0,-0.181841 -95338,5013:101:3,-131,-0.5,0,0,-0.180805 -95339,5013:100:4,-130.5,-0.5,0,0,-0.180177 -95340,5013:100:3,-130,-0.5,0,0,-0.179452 -95341,5012:209:4,-129.5,-0.5,0,0,-0.179352 -95342,5012:209:3,-129,-0.5,0,0,-0.179103 -95343,5012:208:4,-128.5,-0.5,0,0,-0.178036 -95344,5012:208:3,-128,-0.5,0,0,-0.17774 -95345,5012:207:4,-127.5,-0.5,0,0,-0.178408 -95346,5012:207:3,-127,-0.5,0,0,-0.17868 -95347,5012:206:4,-126.5,-0.5,0,0,-0.178011 -95348,5012:206:3,-126,-0.5,0,0,-0.176216 -95349,5012:205:4,-125.5,-0.5,0,0,-0.173383 -95350,5012:205:3,-125,-0.5,0,0,-0.170015 -95351,5012:104:4,-124.5,-0.5,0,0,-0.168707 -95352,5012:104:3,-124,-0.5,0,0,-0.167919 -95353,5012:103:4,-123.5,-0.5,0,0,-0.168127 -95354,5012:103:3,-123,-0.5,0,0,-0.167526 -95355,5012:102:4,-122.5,-0.5,0,0,-0.163725 -95356,5012:102:3,-122,-0.5,0,0,-0.162294 -95357,5012:101:4,-121.5,-0.5,0,0,-0.161938 -95358,5012:101:3,-121,-0.5,0,0,-0.160944 -95359,5012:100:4,-120.5,-0.5,0,0,-0.162072 -95360,5012:100:3,-120,-0.5,0,0,-0.164062 -95361,5011:209:4,-119.5,-0.5,0,0,-0.165989 -95362,5011:209:3,-119,-0.5,0,0,-0.166629 -95363,5011:208:4,-118.5,-0.5,0,0,-0.166905 -95364,5011:208:3,-118,-0.5,0,0,-0.167457 -95365,5011:207:4,-117.5,-0.5,0,0,-0.167826 -95366,5011:207:3,-117,-0.5,0,0,-0.168196 -95367,5011:206:4,-116.5,-0.5,0,0,-0.168568 -95368,5011:206:3,-116,-0.5,0,0,-0.168521 -95369,5011:205:4,-115.5,-0.5,0,0,-0.168637 -95370,5011:205:3,-115,-0.5,0,0,-0.168475 -95371,5011:104:4,-114.5,-0.5,0,0,-0.167965 -95372,5011:104:3,-114,-0.5,0,0,-0.167503 -95373,5011:103:4,-113.5,-0.5,0,0,-0.167296 -95374,5011:103:3,-113,-0.5,0,0,-0.167043 -95375,5011:102:4,-112.5,-0.5,0,0,-0.166012 -95376,5011:102:3,-112,-0.5,0,0,-0.164175 -95377,5011:101:4,-111.5,-0.5,0,0,-0.162294 -95378,5011:101:3,-111,-0.5,0,0,-0.16216 -95379,5011:100:4,-110.5,-0.5,0,0,-0.165033 -95380,5011:100:3,-110,-0.5,0,0,-0.167296 -95381,5010:209:4,-109.5,-0.5,0,0,-0.168127 -95382,5010:209:3,-109,-0.5,0,0,-0.16829 -95383,5010:208:4,-108.5,-0.5,0,0,-0.168196 -95384,5010:208:3,-108,-0.5,0,0,-0.168266 -95385,5010:207:4,-107.5,-0.5,0,0,-0.168661 -95386,5010:207:3,-107,-0.5,0,0,-0.16901 -95387,5010:206:4,-106.5,-0.5,0,0,-0.16943 -95388,5010:206:3,-106,-0.5,0,0,-0.169547 -95389,5010:205:4,-105.5,-0.5,0,0,-0.16971 -95390,5010:205:3,-105,-0.5,0,0,-0.169921 -95391,5010:104:4,-104.5,-0.5,0,0,-0.170226 -95392,5010:104:3,-104,-0.5,0,0,-0.170297 -95393,5010:103:4,-103.5,-0.5,0,0,-0.170485 -95394,5010:103:3,-103,-0.5,0,0,-0.170814 -95395,5010:102:4,-102.5,-0.5,0,0,-0.171051 -95396,5010:102:3,-102,-0.5,0,0,-0.171382 -95397,5010:101:4,-101.5,-0.5,0,0,-0.171547 -95398,5010:101:3,-101,-0.5,0,0,-0.17169 -95399,5010:100:4,-100.5,-0.5,0,0,-0.171833 -95400,5010:100:3,-100,-0.5,0,0,-0.17207 -95401,5009:209:4,-99.5,-0.5,0,0,-0.172618 -95402,5009:209:3,-99,-0.5,0,0,-0.173264 -95403,5009:208:4,-98.5,-0.5,0,0,-0.17384 -95404,5009:208:3,-98,-0.5,0,0,-0.174418 -95405,5009:207:4,-97.5,-0.5,0,0,-0.175145 -95406,5009:207:3,-97,-0.5,0,0,-0.175802 -95407,5009:206:4,-96.5,-0.5,0,0,-0.176241 -95408,5009:206:3,-96,-0.5,0,0,-0.17651 -95409,5009:205:4,-95.5,-0.5,0,0,-0.176584 -95410,5009:205:3,-95,-0.5,0,0,-0.176339 -95411,5009:104:4,-94.5,-0.5,0,0,-0.176535 -95412,5009:104:3,-94,-0.5,0,0,-0.176486 -95413,5009:103:4,-93.5,-0.5,0,0,-0.175924 -95414,5009:103:3,-93,-0.5,0,0,-0.17534 -95415,5009:102:4,-92.5,-0.5,0,0,-0.174854 -95416,5009:102:3,-92,-0.5,0,0,-0.174733 -95417,5009:101:4,-91.5,-0.5,0,0,-0.174709 -95418,5009:101:3,-91,-0.5,0,0,-0.175072 -95419,5009:100:4,-90.5,-0.5,0,0,-0.176168 -95420,5009:100:3,-90,-0.5,0,0,-0.177493 -95421,5008:209:4,-89.5,-0.5,0,0,-0.177912 -95422,5008:209:3,-89,-0.5,0,0,-0.178432 -95423,5008:208:4,-88.5,-0.5,0,0,-0.17883 -95424,5008:208:3,-88,-0.5,0,0,-0.179253 -95425,5008:207:4,-87.5,-0.5,0,0,-0.179302 -95426,5008:207:3,-87,-0.5,0,0,-0.178879 -95427,5008:206:4,-86.5,-0.5,0,0,-0.177838 -95428,5008:206:3,-86,-0.5,0,0,-0.176461 -95429,5008:205:4,-85.5,-0.5,0,0,-0.174733 -95430,5008:205:3,-85,-0.5,0,0,-0.173072 -95431,5008:104:4,-84.5,-0.5,0,0,-0.172023 -95432,5008:104:3,-84,-0.5,0,0,-0.171074 -95433,5008:103:4,-83.5,-0.5,0,0,-0.170203 -95434,5008:103:3,-83,-0.5,0,0,-0.16964 -95435,5008:102:4,-82.5,-0.5,0,0,-0.16908 -95436,5008:102:3,-82,-0.5,0,0,-0.168545 -95437,5008:101:4,-81.5,-0.5,0,0,-0.168174 -95438,5008:101:3,-81,-0.5,0,0,-0.167526 -95439,5008:100:4,-80.5,-0.5,0,0,-0.16725 -95440,5008:100:3,-80,-0.5,0,0,-0.166332 -95441,5007:209:4,-79.5,-0.5,0,0,-0.168661 -95442,5007:209:3,-79,-0.5,0,0,-0.17607 -95443,5007:208:4,-78.5,-0.5,0,0,-0.178185 -95444,5007:208:3,-78,-0.5,0,0,-0.181867 -95445,5005:100:4,-50.5,-0.5,0,0,-0.193913 -95446,5005:100:3,-50,-0.5,0,0,-0.210194 -95447,5004:209:4,-49.5,-0.5,0,0,-0.189073 -95448,5004:209:3,-49,-0.5,0,0,-0.182884 -95449,5004:208:4,-48.5,-0.5,0,0,-0.176951 -95450,5004:208:3,-48,-0.5,0,0,-0.17629 -95451,5004:207:4,-47.5,-0.5,0,0,-0.180479 -95452,5004:207:3,-47,-0.5,0,0,-0.18174 -95453,5004:206:4,-46.5,-0.5,0,0,-0.184396 -95454,5004:206:3,-46,-0.5,0,0,-0.187097 -95455,5004:205:4,-45.5,-0.5,0,0,-0.188808 -95456,5004:205:3,-45,-0.5,0,0,-0.189977 -95457,5004:104:4,-44.5,-0.5,0,0,-0.190779 -95458,5004:104:3,-44,-0.5,0,0,-0.190805 -95459,5004:103:4,-43.5,-0.5,0,0,-0.190458 -95460,5004:103:3,-43,-0.5,0,0,-0.19011 -95461,5004:102:4,-42.5,-0.5,0,0,-0.189711 -95462,5004:102:3,-42,-0.5,0,0,-0.188967 -95463,5004:101:4,-41.5,-0.5,0,0,-0.187964 -95464,5004:101:3,-41,-0.5,0,0,-0.18694 -95465,5004:100:4,-40.5,-0.5,0,0,-0.186235 -95466,5004:100:3,-40,-0.5,0,0,-0.185559 -95467,5003:209:4,-39.5,-0.5,0,0,-0.184628 -95468,5003:209:3,-39,-0.5,0,0,-0.183676 -95469,5003:208:4,-38.5,-0.5,0,0,-0.182247 -95470,5003:208:3,-38,-0.5,0,0,-0.180882 -95471,5003:207:4,-37.5,-0.5,0,0,-0.180128 -95472,5003:207:3,-37,-0.5,0,0,-0.179602 -95473,5003:206:4,-36.5,-0.5,0,0,-0.179203 -95474,5003:206:3,-36,-0.5,0,0,-0.178879 -95475,5003:205:4,-35.5,-0.5,0,0,-0.179029 -95476,5003:205:3,-35,-0.5,0,0,-0.179054 -95477,5003:104:4,-34.5,-0.5,0,0,-0.178805 -95478,5003:104:3,-34,-0.5,0,0,-0.17868 -95479,5003:103:4,-33.5,-0.5,0,0,-0.178259 -95480,5003:103:3,-33,-0.5,0,0,-0.177838 -95481,5003:102:4,-32.5,-0.5,0,0,-0.177222 -95482,5003:102:3,-32,-0.5,0,0,-0.176559 -95483,5003:101:4,-31.5,-0.5,0,0,-0.176363 -95484,5003:101:3,-31,-0.5,0,0,-0.177099 -95485,5003:100:4,-30.5,-0.5,0,0,-0.177764 -95486,5003:100:3,-30,-0.5,0,0,-0.179054 -95487,5002:209:4,-29.5,-0.5,0,0,-0.180831 -95488,5002:209:3,-29,-0.5,0,0,-0.181816 -95489,5002:208:4,-28.5,-0.5,0,0,-0.182197 -95490,5002:208:3,-28,-0.5,0,0,-0.182171 -95491,5002:207:4,-27.5,-0.5,0,0,-0.182705 -95492,5002:207:3,-27,-0.5,0,0,-0.183446 -95493,5002:206:4,-26.5,-0.5,0,0,-0.184344 -95494,5002:206:3,-26,-0.5,0,0,-0.185067 -95495,5002:205:4,-25.5,-0.5,0,0,-0.185507 -95496,5002:205:3,-25,-0.5,0,0,-0.185689 -95497,5002:104:4,-24.5,-0.5,0,0,-0.186 -95498,5002:104:3,-24,-0.5,0,0,-0.186365 -95499,5002:103:4,-23.5,-0.5,0,0,-0.186365 -95500,5002:103:3,-23,-0.5,0,0,-0.186522 -95501,5002:102:4,-22.5,-0.5,0,0,-0.18647 -95502,5002:102:3,-22,-0.5,0,0,-0.186731 -95503,5002:101:4,-21.5,-0.5,0,0,-0.187622 -95504,5002:101:3,-21,-0.5,0,0,-0.188095 -95505,5002:100:4,-20.5,-0.5,0,0,-0.188596 -95506,5002:100:3,-20,-0.5,0,0,-0.188623 -95507,5001:209:4,-19.5,-0.5,0,0,-0.188148 -95508,5001:209:3,-19,-0.5,0,0,-0.188755 -95509,5001:208:4,-18.5,-0.5,0,0,-0.19019 -95510,5001:208:3,-18,-0.5,0,0,-0.191369 -95511,5001:207:4,-17.5,-0.5,0,0,-0.192394 -95512,5001:207:3,-17,-0.5,0,0,-0.193392 -95513,5001:206:4,-16.5,-0.5,0,0,-0.194348 -95514,5001:206:3,-16,-0.5,0,0,-0.195484 -95515,5001:205:4,-15.5,-0.5,0,0,-0.195968 -95516,5001:205:3,-15,-0.5,0,0,-0.196894 -95517,5001:104:4,-14.5,-0.5,0,0,-0.199234 -95518,5001:104:3,-14,-0.5,0,0,-0.211805 -95519,5001:103:4,-13.5,-0.5,0,0,-0.232004 -95520,5001:103:3,-13,-0.5,0,0,-0.255977 -95521,5001:102:4,-12.5,-0.5,0,0,-0.282109 -95522,5001:102:3,-12,-0.5,0,0,-0.314609 -95523,5001:101:4,-11.5,-0.5,0,0,-0.352473 -95524,5001:101:3,-11,-0.5,0,0,-0.39558 -95525,5001:100:4,-10.5,-0.5,0,0,-0.441759 -95526,5001:100:3,-10,-0.5,0,0,-0.490663 -95527,5000:209:4,-9.5,-0.5,0,0,-0.53571 -95528,5000:209:3,-9,-0.5,0,0,-0.591141 -95529,5000:208:4,-8.5,-0.5,0,0,-0.64549 -95530,5000:208:3,-8,-0.5,0,0,-0.693809 -95531,5000:207:4,-7.5,-0.5,0,0,-0.774395 -95532,5000:207:3,-7,-0.5,0,0,-0.911966 -95533,5000:206:4,-6.5,-0.5,0,0,-1.0672 -95534,5000:206:3,-6,-0.5,0,0,-1.21812 -95535,5000:205:4,-5.5,-0.5,0,0,-1.39184 -95536,5000:205:3,-5,-0.5,0,0,-1.58437 -95537,5000:104:4,-4.5,-0.5,0,0,-1.81358 -95538,5000:104:3,-4,-0.5,0,0,-2.09107 -95539,5000:103:4,-3.5,-0.5,0,0,-2.44745 -95540,5000:103:3,-3,-0.5,0,0,-3.03651 -95541,5000:102:4,-2.5,-0.5,0,0,-4.04367 -95542,5000:102:3,-2,-0.5,0,0,-5.11707 -95543,5000:101:4,-1.5,-0.5,0,0,-5.64612 -95544,5000:101:3,-1,-0.5,0,0,-5.43688 -95545,5000:100:4,-0.5,-0.5,0,0,-4.88552 -95546,3000:100:4,0,-0.5,0,0,-3.7844 -95547,3000:100:4,0.5,-0.5,0,0,-3.21017 -95548,3000:101:3,1,-0.5,0,0,-2.87867 -95549,3000:101:4,1.5,-0.5,0,0,-2.49701 -95550,3000:102:3,2,-0.5,0,0,-2.32288 -95551,3000:102:4,2.5,-0.5,0,0,-2.53137 -95552,3000:103:3,3,-0.5,0,0,-2.33751 -95553,3000:103:4,3.5,-0.5,0,0,-2.51409 -95554,3000:104:3,4,-0.5,0,0,-2.9895 -95555,3000:104:4,4.5,-0.5,0,0,-3.3741 -95556,3000:205:3,5,-0.5,0,0,-3.13377 -95557,3000:205:4,5.5,-0.5,0,0,-2.03014 -95558,3000:206:3,6,-0.5,0,0,-1.3062 -95559,3000:206:4,6.5,-0.5,0,0,-1.00224 -95560,3000:207:3,7,-0.5,0,0,-0.892054 -95561,3000:207:4,7.5,-0.5,0,0,-0.818638 -95562,3000:208:3,8,-0.5,0,0,-0.656102 -95563,3000:208:4,8.5,-0.5,0,0,-0.707056 -95564,3000:209:3,9,-0.5,0,0,-0.735784 -95565,3000:209:4,9.5,-0.5,0,0,-0.57856 -95566,3004:206:4,46.5,-0.5,0,0,-0.18865 -95567,3004:207:3,47,-0.5,0,0,-0.18749 -95568,3004:207:4,47.5,-0.5,0,0,-0.189498 -95569,3004:208:3,48,-0.5,0,0,-0.191881 -95570,3004:208:4,48.5,-0.5,0,0,-0.19544 -95571,3004:209:3,49,-0.5,0,0,-0.196628 -95572,3004:209:4,49.5,-0.5,0,0,-0.200799 -95573,3005:100:3,50,-0.5,0,0,-0.210452 -95574,3005:100:4,50.5,-0.5,0,0,-0.243644 -95575,3005:101:3,51,-0.5,0,0,-0.305077 -95576,3005:101:4,51.5,-0.5,0,0,-0.310556 -95577,3005:102:3,52,-0.5,0,0,-0.375136 -95578,3005:102:4,52.5,-0.5,0,0,-0.514929 -95579,3005:103:3,53,-0.5,0,0,-0.463673 -95580,3005:103:4,53.5,-0.5,0,0,-0.445696 -95581,3005:104:3,54,-0.5,0,0,-0.405284 -95582,3005:104:4,54.5,-0.5,0,0,-0.379644 -95583,3005:205:3,55,-0.5,0,0,-0.407395 -95584,3005:205:4,55.5,-0.5,0,0,-0.508252 -95585,3005:206:3,56,-0.5,0,0,-0.631294 -95586,3005:206:4,56.5,-0.5,0,0,-0.821452 -95587,3005:207:3,57,-0.5,0,0,-1.34191 -95588,3005:207:4,57.5,-0.5,0,0,-1.15795 -95589,3005:208:3,58,-0.5,0,0,-0.807263 -95590,3005:208:4,58.5,-0.5,0,0,-0.623708 -95591,3005:209:3,59,-0.5,0,0,-0.453758 -95592,3005:209:4,59.5,-0.5,0,0,-0.372599 -95593,3006:100:3,60,-0.5,0,0,-0.369454 -95594,3006:100:4,60.5,-0.5,0,0,-0.349541 -95595,3006:101:3,61,-0.5,0,0,-0.340375 -95596,3006:101:4,61.5,-0.5,0,0,-0.308052 -95597,3006:102:3,62,-0.5,0,0,-0.289832 -95598,3006:102:4,62.5,-0.5,0,0,-0.277679 -95599,3006:103:3,63,-0.5,0,0,-0.259991 -95600,3006:103:4,63.5,-0.5,0,0,-0.264483 -95601,3006:104:3,64,-0.5,0,0,-0.284357 -95602,3006:104:4,64.5,-0.5,0,0,-0.300217 -95603,3006:205:3,65,-0.5,0,0,-0.338695 -95604,3006:205:4,65.5,-0.5,0,0,-0.422626 -95605,3006:206:3,66,-0.5,0,0,-0.510135 -95606,3006:206:4,66.5,-0.5,0,0,-0.569634 -95607,3006:207:3,67,-0.5,0,0,-0.640273 -95608,3006:207:4,67.5,-0.5,0,0,-0.740005 -95609,3006:208:3,68,-0.5,0,0,-0.901879 -95610,3006:208:4,68.5,-0.5,0,0,-1.19754 -95611,3006:209:3,69,-0.5,0,0,-1.56078 -95612,3006:209:4,69.5,-0.5,0,0,-1.96078 -95613,3007:100:3,70,-0.5,0,0,-2.51409 -95614,3007:100:4,70.5,-0.5,0,0,-2.79406 -95615,3007:101:3,71,-0.5,0,0,-2.75397 -95616,3007:101:4,71.5,-0.5,0,0,-2.67613 -95617,3007:102:3,72,-0.5,0,0,-3.15913 -95618,3007:102:4,72.5,-0.5,0,0,-3.13377 -95619,3007:103:4,73.5,-0.5,0,0,-4.33818 -95620,3007:104:3,74,-0.5,0,0,-3.52225 -95621,3007:104:4,74.5,-0.5,0,0,-2.60202 -95622,3007:205:3,75,-0.5,0,0,-2.22214 -95623,3007:205:4,75.5,-0.5,0,0,-1.85399 -95624,3007:206:3,76,-0.5,0,0,-1.53041 -95625,3007:206:4,76.5,-0.5,0,0,-1.30036 -95626,3007:207:3,77,-0.5,0,0,-1.10661 -95627,3007:207:4,77.5,-0.5,0,0,-1.05037 -95628,3007:208:3,78,-0.5,0,0,-0.998346 -95629,3007:208:4,78.5,-0.5,0,0,-0.929047 -95630,3007:209:3,79,-0.5,0,0,-0.898653 -95631,3007:209:4,79.5,-0.5,0,0,-0.911966 -95632,3008:100:3,80,-0.5,0,0,-0.872776 -95633,3008:100:4,80.5,-0.5,0,0,-0.851124 -95634,3008:101:3,81,-0.5,0,0,-0.851124 -95635,3008:101:4,81.5,-0.5,0,0,-0.860292 -95636,3008:102:3,82,-0.5,0,0,-0.898653 -95637,3008:102:4,82.5,-0.5,0,0,-1.05037 -95638,3008:103:3,83,-0.5,0,0,-1.18737 -95639,3008:103:4,83.5,-0.5,0,0,-1.29457 -95640,3008:104:3,84,-0.5,0,0,-1.39184 -95641,3008:104:4,84.5,-0.5,0,0,-1.50098 -95642,3008:205:3,85,-0.5,0,0,-1.71042 -95643,3008:205:4,85.5,-0.5,0,0,-1.8336 -95644,3008:206:3,86,-0.5,0,0,-1.89559 -95645,3008:206:4,86.5,-0.5,0,0,-1.89559 -95646,3008:207:3,87,-0.5,0,0,-2.11607 -95647,3008:207:4,87.5,-0.5,0,0,-2.14197 -95648,3008:208:3,88,-0.5,0,0,-2.44745 -95649,3008:208:4,88.5,-0.5,0,0,-2.26457 -95650,3008:209:3,89,-0.5,0,0,-2.20871 -95651,3008:209:4,89.5,-0.5,0,0,-2.20871 -95652,3009:100:3,90,-0.5,0,0,-2.195 -95653,3009:100:4,90.5,-0.5,0,0,-1.98357 -95654,3009:101:3,91,-0.5,0,0,-1.67524 -95655,3009:101:4,91.5,-0.5,0,0,-1.56078 -95656,3009:102:3,92,-0.5,0,0,-1.60018 -95657,3009:102:4,92.5,-0.5,0,0,-1.71042 -95658,3009:103:3,93,-0.5,0,0,-1.9168 -95659,3009:103:4,93.5,-0.5,0,0,-1.85399 -95660,3009:104:3,94,-0.5,0,0,-1.79421 -95661,3009:104:4,94.5,-0.5,0,0,-2.12896 -95662,3009:205:3,95,-0.5,0,0,-2.96716 -95663,3009:205:4,95.5,-0.5,0,0,-6.0316 -95664,3009:206:3,96,-0.5,0,0,-13.3314 -95665,3009:206:4,96.5,-0.5,0,0,13.2838 -95666,3009:207:3,97,-0.5,0,0,4.96262 -95667,3009:207:4,97.5,-0.5,0,0,2.64873 -95668,3010:100:4,100.5,-0.5,0,0,1.99032 -95669,3010:101:3,101,-0.5,0,0,1.40363 -95670,3010:101:4,101.5,-0.5,0,0,1.4728 -95671,3010:104:3,104,-0.5,0,0,-0.361458 -95672,3010:104:4,104.5,-0.5,0,0,-0.272482 -95673,3010:205:3,105,-0.5,0,0,-0.205216 -95674,3010:205:4,105.5,-0.5,0,0,-0.214809 -95675,3010:206:3,106,-0.5,0,0,-0.265317 -95676,3010:206:4,106.5,-0.5,0,0,-0.223755 -95677,3010:207:3,107,-0.5,0,0,-0.195003 -95678,3010:207:4,107.5,-0.5,0,0,-0.239192 -95679,3010:208:3,108,-0.5,0,0,-0.378343 -95680,3010:208:4,108.5,-0.5,0,0,-0.61749 -95681,3010:209:3,109,-0.5,0,0,-4.12441 -95682,3010:209:4,109.5,-0.5,0,0,-2.07856 -95683,3011:100:3,110,-0.5,0,0,-2.89986 -95684,3011:100:4,110.5,-0.5,0,0,-29.1935 -95685,3011:101:3,111,-0.5,0,0,4.10673 -95686,3011:101:4,111.5,-0.5,0,0,2.05833 -95687,3011:208:4,118.5,-0.5,0,0,-0.476491 -95688,3011:209:3,119,-0.5,0,0,-0.488875 -95689,3011:209:4,119.5,-0.5,0,0,-0.759297 -95690,3012:100:3,120,-0.5,0,0,-1.29457 -95691,3012:100:4,120.5,-0.5,0,0,-1.59213 -95692,3012:101:3,121,-0.5,0,0,-2.25028 -95693,3012:101:4,121.5,-0.5,0,0,-3.49152 -95694,3012:102:3,122,-0.5,0,0,-6.75968 -95695,3012:102:4,122.5,-0.5,0,0,-6.37632 -95696,3012:103:3,123,-0.5,0,0,-4.94202 -95697,3012:103:4,123.5,-0.5,0,0,-6.11512 -95698,3012:104:3,124,-0.5,0,0,-5.87314 -95699,3012:104:4,124.5,-0.5,0,0,-3.92893 -95700,3012:205:3,125,-0.5,0,0,-1.41127 -95701,3012:205:4,125.5,-0.5,0,0,-0.901879 -95702,3012:206:3,126,-0.5,0,0,-1.5157 -95703,3012:206:4,126.5,-0.5,0,0,-2.92199 -95704,3012:207:3,127,-0.5,0,0,7.10821 -95705,3012:207:4,127.5,-0.5,0,0,-8.07899 -95706,3012:208:3,128,-0.5,0,0,-3.3741 -95707,3012:208:4,128.5,-0.5,0,0,-23.6587 -95708,3012:209:3,129,-0.5,0,0,-23.6587 -95709,3012:209:4,129.5,-0.5,0,0,-2.07856 -95710,3013:100:3,130,-0.5,0,0,-2.01824 -95711,3013:100:4,130.5,-0.5,0,0,-2.11607 -95712,3013:101:3,131,-0.5,0,0,-1.29457 -95713,3013:101:4,131.5,-0.5,0,0,-1.10661 -95714,3013:102:3,132,-0.5,0,0,-1.1021 -95715,3013:102:4,132.5,-0.5,0,0,-1.13876 -95716,3013:103:3,133,-0.5,0,0,-1.20251 -95717,3013:103:4,133.5,-0.5,0,0,-1.4654 -95718,3013:104:3,134,-0.5,0,0,-1.69254 -95719,3013:104:4,134.5,-0.5,0,0,-1.84375 -95720,3013:205:3,135,-0.5,0,0,-1.87444 -95721,3013:205:4,135.5,-0.5,0,0,-2.26457 -95722,3013:206:3,136,-0.5,0,0,-2.38378 -95723,3013:206:4,136.5,-0.5,0,0,-2.56601 -95724,3013:207:3,137,-0.5,0,0,-2.71427 -95725,3013:207:4,137.5,-0.5,0,0,-3.34562 -95726,3013:208:3,138,-0.5,0,0,-4.04367 -95727,3013:208:4,138.5,-0.5,0,0,-4.67245 -95728,3013:209:3,139,-0.5,0,0,-5.87314 -95729,3013:209:4,139.5,-0.5,0,0,-7.80297 -95730,3014:100:3,140,-0.5,0,0,-7.80297 -95731,3014:100:4,140.5,-0.5,0,0,-5.50572 -95732,3014:101:3,141,-0.5,0,0,-5.43688 -95733,3014:101:4,141.5,-0.5,0,0,-7.42451 -95734,3014:102:3,142,-0.5,0,0,-12.6365 -95735,3014:102:4,142.5,-0.5,0,0,49.6485 -95736,3014:103:3,143,-0.5,0,0,10.0048 -95737,3014:103:4,143.5,-0.5,0,0,5.20333 -95738,3014:104:3,144,-0.5,0,0,3.44562 -95739,3014:104:4,144.5,-0.5,0,0,2.93751 -95740,3014:205:3,145,-0.5,0,0,2.73678 -95741,3014:205:4,145.5,-0.5,0,0,2.61557 -95742,3014:206:3,146,-0.5,0,0,2.56794 -95743,3014:206:4,146.5,-0.5,0,0,2.42385 -95744,3014:207:3,147,-0.5,0,0,2.19696 -95745,3014:207:4,147.5,-0.5,0,0,1.97155 -95746,3014:208:3,148,-0.5,0,0,1.81831 -95747,3014:208:4,148.5,-0.5,0,0,1.75338 -95748,3014:209:3,149,-0.5,0,0,1.71883 -95749,3014:209:4,149.5,-0.5,0,0,1.6978 -95750,3015:100:3,150,-0.5,0,0,1.73827 -95751,3015:100:4,150.5,-0.5,0,0,1.77151 -95752,3015:101:3,151,-0.5,0,0,1.77418 -95753,3015:101:4,151.5,-0.5,0,0,1.79303 -95754,3015:102:3,152,-0.5,0,0,1.84176 -95755,3015:102:4,152.5,-0.5,0,0,1.93215 -95756,3015:103:3,153,-0.5,0,0,2.03759 -95757,3015:103:4,153.5,-0.5,0,0,2.11522 -95758,3015:104:3,154,-0.5,0,0,2.13366 -95759,3015:104:4,154.5,-0.5,0,0,2.13838 -95760,3015:205:3,155,-0.5,0,0,2.13838 -95761,3015:205:4,155.5,-0.5,0,0,2.12911 -95762,3015:206:3,156,-0.5,0,0,2.13838 -95763,3015:206:4,156.5,-0.5,0,0,2.20726 -95764,3015:207:3,157,-0.5,0,0,2.34735 -95765,3015:207:4,157.5,-0.5,0,0,2.53735 -95766,3015:208:3,158,-0.5,0,0,2.72758 -95767,3015:208:4,158.5,-0.5,0,0,2.86317 -95768,3015:209:3,159,-0.5,0,0,2.99383 -95769,3015:209:4,159.5,-0.5,0,0,3.18033 -95770,3016:100:3,160,-0.5,0,0,3.33627 -95771,3016:100:4,160.5,-0.5,0,0,3.41371 -95772,3016:101:3,161,-0.5,0,0,3.47876 -95773,3016:101:4,161.5,-0.5,0,0,3.49563 -95774,3016:102:3,162,-0.5,0,0,3.30674 -95775,3016:102:4,162.5,-0.5,0,0,3.06518 -95776,3016:103:3,163,-0.5,0,0,2.85284 -95777,3016:103:4,163.5,-0.5,0,0,2.69182 -95778,3016:104:3,164,-0.5,0,0,2.58348 -95779,3016:104:4,164.5,-0.5,0,0,2.5223 -95780,3016:205:3,165,-0.5,0,0,2.51487 -95781,3016:205:4,165.5,-0.5,0,0,2.54474 -95782,3016:206:3,166,-0.5,0,0,2.64027 -95783,3016:206:4,166.5,-0.5,0,0,2.71845 -95784,3016:207:3,167,-0.5,0,0,2.70071 -95785,3016:207:4,167.5,-0.5,0,0,2.65726 -95786,3016:208:3,168,-0.5,0,0,2.56794 -95787,3016:208:4,168.5,-0.5,0,0,2.98228 -95788,3016:209:3,169,-0.5,0,0,2.41073 -95789,3016:209:4,169.5,-0.5,0,0,2.08407 -95790,3017:100:3,170,-0.5,0,0,2.07534 -95791,3017:100:4,170.5,-0.5,0,0,2.11065 -95792,3017:101:3,171,-0.5,0,0,2.12445 -95793,3017:101:4,171.5,-0.5,0,0,2.2281 -95794,3017:102:3,172,-0.5,0,0,2.36581 -95795,3017:102:4,172.5,-0.5,0,0,2.21245 -95796,3017:103:3,173,-0.5,0,0,2.07115 -95797,3017:103:4,173.5,-0.5,0,0,2.0018 -95798,3017:104:3,174,-0.5,0,0,1.99032 -95799,3017:104:4,174.5,-0.5,0,0,1.92184 -95800,3017:205:3,175,-0.5,0,0,1.92866 -95801,3017:205:4,175.5,-0.5,0,0,2.06685 -95802,3017:206:3,176,-0.5,0,0,2.32329 -95803,3017:206:4,176.5,-0.5,0,0,2.59952 -95804,3017:207:3,177,-0.5,0,0,2.75514 -95805,3017:207:4,177.5,-0.5,0,0,3.19347 -95806,3017:208:3,178,-0.5,0,0,3.46209 -95807,3017:208:4,178.5,-0.5,0,0,3.63682 -95808,3017:209:3,179,-0.5,0,0,3.59998 -95809,3017:209:4,179.5,-0.5,0,0,3.47876 -95810,3018:100:3,180,-0.5,0,0,3.77192 -95811,7018:100:3,-180,0,0,0,15.9443 -95812,7017:209:4,-179.5,0,0,0,69.1201 -95813,7017:209:3,-179,0,0,0,-1157.87 -95814,7017:208:4,-178.5,0,0,0,-33.0023 -95815,7017:208:3,-178,0,0,0,-15.973 -95816,7017:207:4,-177.5,0,0,0,-11.429 -95817,7017:207:3,-177,0,0,0,-9.7719 -95818,7017:206:4,-176.5,0,0,0,-8.52457 -95819,7017:206:3,-176,0,0,0,-8.21955 -95820,7017:205:4,-175.5,0,0,0,-8.36943 -95821,7017:205:3,-175,0,0,0,-6.75968 -95822,7017:104:4,-174.5,0,0,0,-4.38224 -95823,7017:104:3,-174,0,0,0,-3.34562 -95824,7017:103:4,-173.5,0,0,0,-2.89986 -95825,7017:103:3,-173,0,0,0,-2.81481 -95826,7017:102:4,-172.5,0,0,0,-2.48013 -95827,7017:102:3,-172,0,0,0,-2.44745 -95828,7017:101:4,-171.5,0,0,0,-2.43114 -95829,7017:101:3,-171,0,0,0,-2.32288 -95830,7017:100:4,-170.5,0,0,0,-1.94954 -95831,7017:100:3,-170,0,0,0,-1.61649 -95832,7016:209:4,-169.5,0,0,0,-1.37899 -95833,7016:209:3,-169,0,0,0,-1.27759 -95834,7016:208:4,-168.5,0,0,0,-1.55304 -95835,7016:208:3,-168,0,0,0,-1.77489 -95836,7016:207:4,-167.5,0,0,0,-1.61649 -95837,7016:207:3,-167,0,0,0,-1.34786 -95838,7016:206:4,-166.5,0,0,0,-0.968247 -95839,7016:206:3,-166,0,0,0,-0.77181 -95840,7016:205:4,-165.5,0,0,0,-0.657456 -95841,7016:205:3,-165,0,0,0,-0.569634 -95842,7016:104:4,-164.5,0,0,0,-0.518801 -95843,7016:104:3,-164,0,0,0,-0.487971 -95844,7016:103:4,-163.5,0,0,0,-0.458693 -95845,7016:103:3,-163,0,0,0,-0.457862 -95846,7016:102:4,-162.5,0,0,0,-0.479983 -95847,7016:102:3,-162,0,0,0,-0.49796 -95848,7016:101:4,-161.5,0,0,0,-0.561951 -95849,7016:101:3,-161,0,0,0,-0.566343 -95850,7016:100:4,-160.5,0,0,0,-0.527666 -95851,7016:100:3,-160,0,0,0,-0.449703 -95852,7015:209:4,-159.5,0,0,0,-0.391527 -95853,7015:209:3,-159,0,0,0,-0.370715 -95854,7015:208:4,-158.5,0,0,0,-0.435502 -95855,7015:208:3,-158,0,0,0,-0.531667 -95856,7015:207:4,-157.5,0,0,0,-0.473033 -95857,7015:207:3,-157,0,0,0,-0.482617 -95858,7015:206:4,-156.5,0,0,0,-0.462013 -95859,7015:206:3,-156,0,0,0,-0.448109 -95860,7015:205:4,-155.5,0,0,0,-0.4791 -95861,7015:205:3,-155,0,0,0,-0.510135 -95862,7015:104:4,-154.5,0,0,0,-0.522713 -95863,7015:104:3,-154,0,0,0,-0.530655 -95864,7015:103:4,-153.5,0,0,0,-0.513022 -95865,7015:103:3,-153,0,0,0,-0.430914 -95866,7015:102:4,-152.5,0,0,0,-0.377068 -95867,7015:102:3,-152,0,0,0,-0.330961 -95868,7015:101:4,-151.5,0,0,0,-0.297334 -95869,7015:101:3,-151,0,0,0,-0.292611 -95870,7015:100:4,-150.5,0,0,0,-0.282998 -95871,7015:100:3,-150,0,0,0,-0.265735 -95872,7014:209:4,-149.5,0,0,0,-0.256378 -95873,7014:209:3,-149,0,0,0,-0.264483 -95874,7014:208:4,-148.5,0,0,0,-0.263251 -95875,7014:208:3,-148,0,0,0,-0.235209 -95876,7014:207:4,-147.5,0,0,0,-0.212892 -95877,7014:207:3,-147,0,0,0,-0.204833 -95878,7014:206:4,-146.5,0,0,0,-0.199653 -95879,7014:206:3,-146,0,0,0,-0.196894 -95880,7014:205:4,-145.5,0,0,0,-0.194435 -95881,7014:205:3,-145,0,0,0,-0.194305 -95882,7014:104:4,-144.5,0,0,0,-0.194522 -95883,7014:104:3,-144,0,0,0,-0.196407 -95884,7014:103:4,-143.5,0,0,0,-0.200964 -95885,7014:103:3,-143,0,0,0,-0.210194 -95886,7014:102:4,-142.5,0,0,0,-0.204445 -95887,7014:102:3,-142,0,0,0,-0.194348 -95888,7014:101:4,-141.5,0,0,0,-0.188412 -95889,7014:101:3,-141,0,0,0,-0.187674 -95890,7014:100:4,-140.5,0,0,0,-0.187964 -95891,7014:100:3,-140,0,0,0,-0.188808 -95892,7013:209:4,-139.5,0,0,0,-0.189021 -95893,7013:209:3,-139,0,0,0,-0.189233 -95894,7013:208:4,-138.5,0,0,0,-0.191289 -95895,7013:208:3,-138,0,0,0,-0.194479 -95896,7013:207:4,-137.5,0,0,0,-0.194348 -95897,7013:207:3,-137,0,0,0,-0.197026 -95898,7013:206:4,-136.5,0,0,0,-0.197692 -95899,7013:206:3,-136,0,0,0,-0.19509 -95900,7013:205:4,-135.5,0,0,0,-0.190859 -95901,7013:205:3,-135,0,0,0,-0.187648 -95902,7013:104:4,-134.5,0,0,0,-0.185766 -95903,7013:104:3,-134,0,0,0,-0.182756 -95904,7013:103:4,-133.5,0,0,0,-0.182909 -95905,7013:103:3,-133,0,0,0,-0.185041 -95906,7013:102:4,-132.5,0,0,0,-0.187674 -95907,7013:102:3,-132,0,0,0,-0.187885 -95908,7013:101:4,-131.5,0,0,0,-0.186209 -95909,7013:101:3,-131,0,0,0,-0.183856 -95910,7013:100:4,-130.5,0,0,0,-0.179552 -95911,7013:100:3,-130,0,0,0,-0.174781 -95912,7012:209:4,-129.5,0,0,0,-0.178705 -95913,7012:209:3,-129,0,0,0,-0.184912 -95914,7012:208:4,-128.5,0,0,0,-0.188359 -95915,7012:208:3,-128,0,0,0,-0.187727 -95916,7012:207:4,-127.5,0,0,0,-0.185352 -95917,7012:207:3,-127,0,0,0,-0.186 -95918,7012:206:4,-126.5,0,0,0,-0.187071 -95919,7012:206:3,-126,0,0,0,-0.186914 -95920,7012:205:4,-125.5,0,0,0,-0.184757 -95921,7012:205:3,-125,0,0,0,-0.179602 -95922,7012:104:4,-124.5,0,0,0,-0.177197 -95923,7012:104:3,-124,0,0,0,-0.176094 -95924,7012:103:4,-123.5,0,0,0,-0.175997 -95925,7012:103:3,-123,0,0,0,-0.175412 -95926,7012:102:4,-122.5,0,0,0,-0.171429 -95927,7012:102:3,-122,0,0,0,-0.165943 -95928,7012:101:4,-121.5,0,0,0,-0.166378 -95929,7012:101:3,-121,0,0,0,-0.166195 -95930,7012:100:4,-120.5,0,0,0,-0.163972 -95931,7012:100:3,-120,0,0,0,-0.167181 -95932,7011:209:4,-119.5,0,0,0,-0.172427 -95933,7011:209:3,-119,0,0,0,-0.175851 -95934,7011:208:4,-118.5,0,0,0,-0.175315 -95935,7011:208:3,-118,0,0,0,-0.173264 -95936,7011:207:4,-117.5,0,0,0,-0.173503 -95937,7011:207:3,-117,0,0,0,-0.173 -95938,7011:206:4,-116.5,0,0,0,-0.173216 -95939,7011:206:3,-116,0,0,0,-0.174491 -95940,7011:205:4,-115.5,0,0,0,-0.175242 -95941,7011:205:3,-115,0,0,0,-0.175704 -95942,7011:104:4,-114.5,0,0,0,-0.175973 -95943,7011:104:3,-114,0,0,0,-0.175315 -95944,7011:103:4,-113.5,0,0,0,-0.174539 -95945,7011:103:3,-113,0,0,0,-0.173599 -95946,7011:102:4,-112.5,0,0,0,-0.172809 -95947,7011:102:3,-112,0,0,0,-0.172308 -95948,7011:101:4,-111.5,0,0,0,-0.17207 -95949,7011:101:3,-111,0,0,0,-0.173168 -95950,7011:100:4,-110.5,0,0,0,-0.174951 -95951,7011:100:3,-110,0,0,0,-0.176046 -95952,7010:209:4,-109.5,0,0,0,-0.176363 -95953,7010:209:3,-109,0,0,0,-0.176119 -95954,7010:208:4,-108.5,0,0,0,-0.175582 -95955,7010:208:3,-108,0,0,0,-0.175194 -95956,7010:207:4,-107.5,0,0,0,-0.175097 -95957,7010:207:3,-107,0,0,0,-0.175121 -95958,7010:206:4,-106.5,0,0,0,-0.175 -95959,7010:206:3,-106,0,0,0,-0.174733 -95960,7010:205:4,-105.5,0,0,0,-0.17425 -95961,7010:205:3,-105,0,0,0,-0.173744 -95962,7010:104:4,-104.5,0,0,0,-0.17336 -95963,7010:104:3,-104,0,0,0,-0.17312 -95964,7010:103:4,-103.5,0,0,0,-0.173048 -95965,7010:103:3,-103,0,0,0,-0.172953 -95966,7010:102:4,-102.5,0,0,0,-0.172976 -95967,7010:102:3,-102,0,0,0,-0.173312 -95968,7010:101:4,-101.5,0,0,0,-0.173792 -95969,7010:101:3,-101,0,0,0,-0.174322 -95970,7010:100:4,-100.5,0,0,0,-0.174781 -95971,7010:100:3,-100,0,0,0,-0.175145 -95972,7009:209:4,-99.5,0,0,0,-0.175559 -95973,7009:209:3,-99,0,0,0,-0.176119 -95974,7009:208:4,-98.5,0,0,0,-0.176682 -95975,7009:208:3,-98,0,0,0,-0.177222 -95976,7009:207:4,-97.5,0,0,0,-0.177888 -95977,7009:207:3,-97,0,0,0,-0.178482 -95978,7009:206:4,-96.5,0,0,0,-0.179103 -95979,7009:206:3,-96,0,0,0,-0.179827 -95980,7009:205:4,-95.5,0,0,0,-0.180203 -95981,7009:205:3,-95,0,0,0,-0.179952 -95982,7009:104:4,-94.5,0,0,0,-0.179402 -95983,7009:104:3,-94,0,0,0,-0.178954 -95984,7009:103:4,-93.5,0,0,0,-0.178482 -95985,7009:103:3,-93,0,0,0,-0.178135 -95986,7009:102:4,-92.5,0,0,0,-0.17811 -95987,7009:102:3,-92,0,0,0,-0.178011 -95988,7009:101:4,-91.5,0,0,0,-0.177987 -95989,7009:101:3,-91,0,0,0,-0.177962 -95990,7009:100:4,-90.5,0,0,0,-0.178507 -95991,7009:100:3,-90,0,0,0,-0.179477 -95992,7008:209:4,-89.5,0,0,0,-0.180278 -95993,7008:209:3,-89,0,0,0,-0.180906 -95994,7008:208:4,-88.5,0,0,0,-0.181538 -95995,7008:208:3,-88,0,0,0,-0.18212 -95996,7008:207:4,-87.5,0,0,0,-0.182527 -95997,7008:207:3,-87,0,0,0,-0.182629 -95998,7008:206:4,-86.5,0,0,0,-0.181917 -95999,7008:206:3,-86,0,0,0,-0.180479 -96000,7008:205:4,-85.5,0,0,0,-0.179054 -96001,7008:205:3,-85,0,0,0,-0.177912 -96002,7008:104:4,-84.5,0,0,0,-0.177394 -96003,7008:104:3,-84,0,0,0,-0.177222 -96004,7008:103:4,-83.5,0,0,0,-0.176461 -96005,7008:103:3,-83,0,0,0,-0.175388 -96006,7008:102:4,-82.5,0,0,0,-0.174443 -96007,7008:102:3,-82,0,0,0,-0.173648 -96008,7008:101:4,-81.5,0,0,0,-0.172976 -96009,7008:101:3,-81,0,0,0,-0.17257 -96010,7008:100:4,-80.5,0,0,0,-0.172833 -96011,7008:100:3,-80,0,0,0,-0.173024 -96012,7007:209:4,-79.5,0,0,0,-0.172118 -96013,7007:209:3,-79,0,0,0,-0.172308 -96014,7007:208:4,-78.5,0,0,0,-0.179627 -96015,7007:208:3,-78,0,0,0,-0.185559 -96016,7007:207:4,-77.5,0,0,0,-0.190164 -96017,7005:101:3,-51,0,0,0,-0.192421 -96018,7005:100:4,-50.5,0,0,0,-0.189152 -96019,7005:100:3,-50,0,0,0,-0.18401 -96020,7004:209:4,-49.5,0,0,0,-0.181158 -96021,7004:209:3,-49,0,0,0,-0.17883 -96022,7004:208:4,-48.5,0,0,0,-0.179852 -96023,7004:208:3,-48,0,0,0,-0.181335 -96024,7004:207:4,-47.5,0,0,0,-0.183191 -96025,7004:207:3,-47,0,0,0,-0.185923 -96026,7004:206:4,-46.5,0,0,0,-0.188121 -96027,7004:206:3,-46,0,0,0,-0.189977 -96028,7004:205:4,-45.5,0,0,0,-0.19094 -96029,7004:205:3,-45,0,0,0,-0.191504 -96030,7004:104:4,-44.5,0,0,0,-0.191827 -96031,7004:104:3,-44,0,0,0,-0.191854 -96032,7004:103:4,-43.5,0,0,0,-0.191665 -96033,7004:103:3,-43,0,0,0,-0.191289 -96034,7004:102:4,-42.5,0,0,0,-0.190538 -96035,7004:102:3,-42,0,0,0,-0.189152 -96036,7004:101:4,-41.5,0,0,0,-0.188148 -96037,7004:101:3,-41,0,0,0,-0.187753 -96038,7004:100:4,-40.5,0,0,0,-0.187727 -96039,7004:100:3,-40,0,0,0,-0.187438 -96040,7003:209:4,-39.5,0,0,0,-0.18728 -96041,7003:209:3,-39,0,0,0,-0.187176 -96042,7003:208:4,-38.5,0,0,0,-0.18647 -96043,7003:208:3,-38,0,0,0,-0.185559 -96044,7003:207:4,-37.5,0,0,0,-0.184396 -96045,7003:207:3,-37,0,0,0,-0.183548 -96046,7003:206:4,-36.5,0,0,0,-0.182502 -96047,7003:206:3,-36,0,0,0,-0.181588 -96048,7003:205:4,-35.5,0,0,0,-0.181259 -96049,7003:205:3,-35,0,0,0,-0.180805 -96050,7003:104:4,-34.5,0,0,0,-0.180655 -96051,7003:104:3,-34,0,0,0,-0.180856 -96052,7003:103:4,-33.5,0,0,0,-0.18068 -96053,7003:103:3,-33,0,0,0,-0.180252 -96054,7003:102:4,-32.5,0,0,0,-0.179952 -96055,7003:102:3,-32,0,0,0,-0.179952 -96056,7003:101:4,-31.5,0,0,0,-0.179952 -96057,7003:101:3,-31,0,0,0,-0.179552 -96058,7003:100:4,-30.5,0,0,0,-0.179477 -96059,7003:100:3,-30,0,0,0,-0.179378 -96060,7002:209:4,-29.5,0,0,0,-0.180705 -96061,7002:209:3,-29,0,0,0,-0.181411 -96062,7002:208:4,-28.5,0,0,0,-0.181943 -96063,7002:208:3,-28,0,0,0,-0.182146 -96064,7002:207:4,-27.5,0,0,0,-0.18245 -96065,7002:207:3,-27,0,0,0,-0.182884 -96066,7002:206:4,-26.5,0,0,0,-0.183395 -96067,7002:206:3,-26,0,0,0,-0.183728 -96068,7002:205:4,-25.5,0,0,0,-0.184344 -96069,7002:205:3,-25,0,0,0,-0.185766 -96070,7002:104:4,-24.5,0,0,0,-0.187123 -96071,7002:104:3,-24,0,0,0,-0.187648 -96072,7002:103:4,-23.5,0,0,0,-0.188095 -96073,7002:103:3,-23,0,0,0,-0.189127 -96074,7002:102:4,-22.5,0,0,0,-0.189924 -96075,7002:102:3,-22,0,0,0,-0.190511 -96076,7002:101:4,-21.5,0,0,0,-0.190752 -96077,7002:101:3,-21,0,0,0,-0.190618 -96078,7002:100:4,-20.5,0,0,0,-0.190297 -96079,7002:100:3,-20,0,0,0,-0.190618 -96080,7001:209:4,-19.5,0,0,0,-0.191934 -96081,7001:209:3,-19,0,0,0,-0.193609 -96082,7001:208:4,-18.5,0,0,0,-0.19474 -96083,7001:208:3,-18,0,0,0,-0.195528 -96084,7001:207:4,-17.5,0,0,0,-0.19654 -96085,7001:207:3,-17,0,0,0,-0.197602 -96086,7001:206:4,-16.5,0,0,0,-0.198856 -96087,7001:206:3,-16,0,0,0,-0.204445 -96088,7001:205:4,-15.5,0,0,0,-0.210452 -96089,7001:205:3,-15,0,0,0,-0.215105 -96090,7001:104:4,-14.5,0,0,0,-0.223096 -96091,7001:104:3,-14,0,0,0,-0.236649 -96092,7001:103:4,-13.5,0,0,0,-0.253999 -96093,7001:103:3,-13,0,0,0,-0.278564 -96094,7001:102:4,-12.5,0,0,0,-0.311063 -96095,7001:102:3,-12,0,0,0,-0.350717 -96096,7001:101:4,-11.5,0,0,0,-0.391527 -96097,7001:101:3,-11,0,0,0,-0.43628 -96098,7001:100:4,-10.5,0,0,0,-0.484402 -96099,7001:100:3,-10,0,0,0,-0.537763 -96100,7000:209:4,-9.5,0,0,0,-0.57856 -96101,7000:209:3,-9,0,0,0,-0.610169 -96102,7000:208:4,-8.5,0,0,0,-0.646813 -96103,7000:208:3,-8,0,0,0,-0.689486 -96104,7000:207:4,-7.5,0,0,0,-0.73375 -96105,7000:207:3,-7,0,0,0,-0.821452 -96106,7000:206:4,-6.5,0,0,0,-0.957335 -96107,7000:206:3,-6,0,0,0,-1.08884 -96108,7000:205:4,-5.5,0,0,0,-1.32377 -96109,7000:205:3,-5,0,0,0,-1.79421 -96110,7000:104:4,-4.5,0,0,0,-2.56601 -96111,7000:104:3,-4,0,0,0,-3.5842 -96112,7000:103:4,-3.5,0,0,0,-5.36961 -96113,7000:103:3,-3,0,0,0,-8.07899 -96114,7000:102:4,-2.5,0,0,0,-13.7131 -96115,7000:102:3,-2,0,0,0,-41.1373 -96116,7000:101:4,-1.5,0,0,0,20.0054 -96117,7000:101:3,-1,0,0,0,5.56737 -96118,7000:100:4,-0.5,0,0,0,3.56455 -96119,1000:100:4,0,0,0,0,4.42906 -96120,1000:100:4,0.5,0,0,0,10.7552 -96121,1000:101:3,1,0,0,0,69.1201 -96122,1000:101:4,1.5,0,0,0,114.146 -96123,1000:102:3,2,0,0,0,20.7737 -96124,1000:102:4,2.5,0,0,0,17.4548 -96125,1000:103:3,3,0,0,0,16.9301 -96126,1000:103:4,3.5,0,0,0,8.79208 -96127,1000:104:3,4,0,0,0,4.81589 -96128,1000:104:4,4.5,0,0,0,3.44562 -96129,1000:205:3,5,0,0,0,4.01092 -96130,1000:205:4,5.5,0,0,0,15.9443 -96131,1000:206:3,6,0,0,0,-4.52385 -96132,1000:206:4,6.5,0,0,0,-1.8336 -96133,1000:207:3,7,0,0,0,-1.32377 -96134,1000:207:4,7.5,0,0,0,-1.13876 -96135,1000:208:3,8,0,0,0,-0.869702 -96136,1000:209:3,9,0,0,0,-0.879166 -96137,1004:207:3,47,0,0,0,-0.188835 -96138,1004:207:4,47.5,0,0,0,-0.189258 -96139,1004:208:3,48,0,0,0,-0.188861 -96140,1004:208:4,48.5,0,0,0,-0.192692 -96141,1004:209:3,49,0,0,0,-0.195222 -96142,1004:209:4,49.5,0,0,0,-0.198646 -96143,1005:100:3,50,0,0,0,-0.205991 -96144,1005:100:4,50.5,0,0,0,-0.240661 -96145,1005:101:3,51,0,0,0,-0.282109 -96146,1005:101:4,51.5,0,0,0,-0.281211 -96147,1005:102:3,52,0,0,0,-0.283903 -96148,1005:102:4,52.5,0,0,0,-0.3177 -96149,1005:103:3,53,0,0,0,-0.298296 -96150,1005:103:4,53.5,0,0,0,-0.281211 -96151,1005:104:3,54,0,0,0,-0.28033 -96152,1005:104:4,54.5,0,0,0,-0.306568 -96153,1005:205:3,55,0,0,0,-0.357222 -96154,1005:205:4,55.5,0,0,0,-0.401782 -96155,1005:206:3,56,0,0,0,-0.512057 -96156,1005:206:4,56.5,0,0,0,-0.623708 -96157,1005:207:3,57,0,0,0,-0.769158 -96158,1005:207:4,57.5,0,0,0,-0.863412 -96159,1005:208:3,58,0,0,0,-0.679488 -96160,1005:208:4,58.5,0,0,0,-0.598184 -96161,1005:209:3,59,0,0,0,-0.497061 -96162,1005:209:4,59.5,0,0,0,-0.417476 -96163,1006:100:3,60,0,0,0,-0.377695 -96164,1006:100:4,60.5,0,0,0,-0.364498 -96165,1006:101:3,61,0,0,0,-0.386172 -96166,1006:101:4,61.5,0,0,0,-0.392865 -96167,1006:102:3,62,0,0,0,-0.369454 -96168,1006:102:4,62.5,0,0,0,-0.338131 -96169,1006:103:3,63,0,0,0,-0.306568 -96170,1006:103:4,63.5,0,0,0,-0.284798 -96171,1006:104:3,64,0,0,0,-0.287071 -96172,1006:104:4,64.5,0,0,0,-0.336448 -96173,1006:205:3,65,0,0,0,-0.431682 -96174,1006:205:4,65.5,0,0,0,-0.537763 -96175,1006:206:3,66,0,0,0,-0.626236 -96176,1006:206:4,66.5,0,0,0,-0.690938 -96177,1006:207:3,67,0,0,0,-0.790583 -96178,1006:207:4,67.5,0,0,0,-0.882387 -96179,1006:208:3,68,0,0,0,-1.0588 -96180,1006:208:4,68.5,0,0,0,-1.56078 -96181,1006:209:3,69,0,0,0,-2.10331 -96182,1006:209:4,69.5,0,0,0,-2.73399 -96183,1007:100:3,70,0,0,0,-3.5842 -96184,1007:100:4,70.5,0,0,0,-3.74949 -96185,1007:101:3,71,0,0,0,-3.21017 -96186,1007:101:4,71.5,0,0,0,-2.56601 -96187,1007:102:3,72,0,0,0,-2.15513 -96188,1007:102:4,72.5,0,0,0,-2.04216 -96189,1007:103:4,73.5,0,0,0,-1.90598 -96190,1007:104:3,74,0,0,0,-1.50831 -96191,1007:104:4,74.5,0,0,0,-1.34191 -96192,1007:205:3,75,0,0,0,-1.13876 -96193,1007:205:4,75.5,0,0,0,-0.994479 -96194,1007:206:3,76,0,0,0,-0.869702 -96195,1007:206:4,76.5,0,0,0,-0.833119 -96196,1007:207:3,77,0,0,0,-0.848069 -96197,1007:207:4,77.5,0,0,0,-0.833119 -96198,1007:208:3,78,0,0,0,-0.790583 -96199,1007:208:4,78.5,0,0,0,-0.763942 -96200,1007:209:3,79,0,0,0,-0.727843 -96201,1007:209:4,79.5,0,0,0,-0.692349 -96202,1008:100:3,80,0,0,0,-0.671127 -96203,1008:100:4,80.5,0,0,0,-0.668345 -96204,1008:101:3,81,0,0,0,-0.676699 -96205,1008:101:4,81.5,0,0,0,-0.718965 -96206,1008:102:3,82,0,0,0,-0.785105 -96207,1008:102:4,82.5,0,0,0,-0.830247 -96208,1008:103:3,83,0,0,0,-0.946498 -96209,1008:103:4,83.5,0,0,0,-1.11574 -96210,1008:104:3,84,0,0,0,-1.41127 -96211,1008:104:4,84.5,0,0,0,-1.77489 -96212,1008:205:3,85,0,0,0,-2.16801 -96213,1008:205:4,85.5,0,0,0,-2.04216 -96214,1008:206:3,86,0,0,0,-1.77489 -96215,1008:206:4,86.5,0,0,0,-1.53797 -96216,1008:207:3,87,0,0,0,-1.41792 -96217,1008:207:4,87.5,0,0,0,-1.32377 -96218,1008:208:3,88,0,0,0,-1.34786 -96219,1008:208:4,88.5,0,0,0,-1.49371 -96220,1008:209:3,89,0,0,0,-1.4654 -96221,1008:209:4,89.5,0,0,0,-1.76564 -96222,1009:100:3,90,0,0,0,-1.63282 -96223,1009:100:4,90.5,0,0,0,-1.26096 -96224,1009:101:3,91,0,0,0,-1.13419 -96225,1009:101:4,91.5,0,0,0,-1.08005 -96226,1009:102:3,92,0,0,0,-1.3062 -96227,1009:102:4,92.5,0,0,0,-1.82355 -96228,1009:103:3,93,0,0,0,-2.53137 -96229,1009:103:4,93.5,0,0,0,-3.03651 -96230,1009:104:3,94,0,0,0,-4.20681 -96231,1009:104:4,94.5,0,0,0,-4.94202 -96232,1009:205:3,95,0,0,0,-7.42451 -96233,1009:205:4,95.5,0,0,0,-35.3361 -96234,1009:206:3,96,0,0,0,18.6505 -96235,1009:206:4,96.5,0,0,0,30.0028 -96236,1009:207:3,97,0,0,0,5.77162 -96237,1009:209:4,99.5,0,0,0,2.60739 -96238,1010:100:3,100,0,0,0,3.36692 -96239,1010:100:4,100.5,0,0,0,2.18193 -96240,1010:101:3,101,0,0,0,1.72846 -96241,1010:104:3,104,0,0,0,-0.198002 -96242,1010:104:4,104.5,0,0,0,-0.204063 -96243,1010:205:3,105,0,0,0,-0.193002 -96244,1010:205:4,105.5,0,0,0,-0.195222 -96245,1010:206:3,106,0,0,0,-0.196805 -96246,1010:206:4,106.5,0,0,0,-0.19215 -96247,1010:207:3,107,0,0,0,-0.186339 -96248,1010:207:4,107.5,0,0,0,-0.192637 -96249,1010:208:3,108,0,0,0,-0.241033 -96250,1010:208:4,108.5,0,0,0,-0.371348 -96251,1010:209:3,109,0,0,0,-0.588842 -96252,1010:209:4,109.5,0,0,0,-1.08884 -96253,1011:100:3,110,0,0,0,-2.09107 -96254,1011:100:4,110.5,0,0,0,-4.33818 -96255,1011:101:3,111,0,0,0,-5.79561 -96256,1011:101:4,111.5,0,0,0,38.6991 -96257,1011:102:3,112,0,0,0,13.5991 -96258,1011:102:4,112.5,0,0,0,5.9932 -96259,1011:103:3,113,0,0,0,3.71267 -96260,1011:103:4,113.5,0,0,0,3.30674 -96261,1011:208:3,118,0,0,0,-1.12483 -96262,1011:208:4,118.5,0,0,0,-0.400405 -96263,1011:209:3,119,0,0,0,-0.384863 -96264,1011:209:4,119.5,0,0,0,-0.605343 -96265,1012:100:3,120,0,0,0,-0.705556 -96266,1012:100:4,120.5,0,0,0,-1.26096 -96267,1012:101:3,121,0,0,0,-1.79421 -96268,1012:101:4,121.5,0,0,0,-2.27859 -96269,1012:102:3,122,0,0,0,-2.75397 -96270,1012:102:4,122.5,0,0,0,-3.64913 -96271,1012:103:3,123,0,0,0,-4.62143 -96272,1012:103:4,123.5,0,0,0,-5.95017 -96273,1012:104:3,124,0,0,0,-5.24151 -96274,1012:104:4,124.5,0,0,0,-4.57142 -96275,1012:205:3,125,0,0,0,-2.9895 -96276,1012:205:4,125.5,0,0,0,-4.67245 -96277,1012:206:3,126,0,0,0,-38.0195 -96278,1012:206:4,126.5,0,0,0,-0.77181 -96279,1012:207:3,127,0,0,0,-1.19244 -96280,1012:207:4,127.5,0,0,0,-0.863412 -96281,1012:208:3,128,0,0,0,-1.84375 -96282,1012:208:4,128.5,0,0,0,-1.97212 -96283,1012:209:3,129,0,0,0,-2.06618 -96284,1012:209:4,129.5,0,0,0,-2.26457 -96285,1013:100:3,130,0,0,0,-2.56601 -96286,1013:100:4,130.5,0,0,0,-2.30795 -96287,1013:101:3,131,0,0,0,-1.4654 -96288,1013:101:4,131.5,0,0,0,-0.915262 -96289,1013:102:3,132,0,0,0,-0.722482 -96290,1013:102:4,132.5,0,0,0,-0.70113 -96291,1013:103:3,133,0,0,0,-0.742128 -96292,1013:103:4,133.5,0,0,0,-0.879166 -96293,1013:104:3,134,0,0,0,-1.13876 -96294,1013:104:4,134.5,0,0,0,-1.52291 -96295,1013:205:3,135,0,0,0,-2.06618 -96296,1013:205:4,135.5,0,0,0,-3.34562 -96297,1013:206:3,136,0,0,0,-6.37632 -96298,1013:206:4,136.5,0,0,0,-27.5732 -96299,1013:207:3,137,0,0,0,7.02487 -96300,1013:207:4,137.5,0,0,0,9.5117 -96301,1013:208:3,138,0,0,0,24.5323 -96302,1013:208:4,138.5,0,0,0,114.146 -96303,1013:209:3,139,0,0,0,337.61 -96304,1013:209:4,139.5,0,0,0,36.1333 -96305,1014:100:3,140,0,0,0,16.9301 -96306,1014:100:4,140.5,0,0,0,16.9301 -96307,1014:101:3,141,0,0,0,36.1333 -96308,1014:101:4,141.5,0,0,0,-209.944 -96309,1014:102:3,142,0,0,0,-94.5052 -96310,1014:102:4,142.5,0,0,0,41.7633 -96311,1014:103:3,143,0,0,0,12.1375 -96312,1014:103:4,143.5,0,0,0,6.78705 -96313,1014:104:3,144,0,0,0,4.37175 -96314,1014:104:4,144.5,0,0,0,3.41371 -96315,1014:205:3,145,0,0,0,3.01727 -96316,1014:205:4,145.5,0,0,0,2.77411 -96317,1014:206:3,146,0,0,0,2.70968 -96318,1014:206:4,146.5,0,0,0,2.56794 -96319,1014:207:3,147,0,0,0,2.27149 -96320,1014:207:4,147.5,0,0,0,2.03361 -96321,1014:208:3,148,0,0,0,1.89179 -96322,1014:208:4,148.5,0,0,0,1.84478 -96323,1014:209:3,149,0,0,0,1.84478 -96324,1014:209:4,149.5,0,0,0,1.82121 -96325,1015:100:3,150,0,0,0,1.82706 -96326,1015:100:4,150.5,0,0,0,1.84782 -96327,1015:101:3,151,0,0,0,1.87252 -96328,1015:101:4,151.5,0,0,0,1.92184 -96329,1015:102:3,152,0,0,0,1.99416 -96330,1015:102:4,152.5,0,0,0,2.08848 -96331,1015:103:3,153,0,0,0,2.19696 -96332,1015:103:4,153.5,0,0,0,2.2828 -96333,1015:104:3,154,0,0,0,2.35352 -96334,1015:104:4,154.5,0,0,0,2.41073 -96335,1015:205:3,155,0,0,0,2.46483 -96336,1015:205:4,155.5,0,0,0,2.50749 -96337,1015:206:3,156,0,0,0,2.56794 -96338,1015:206:4,156.5,0,0,0,2.67453 -96339,1015:207:3,157,0,0,0,2.86317 -96340,1015:207:4,157.5,0,0,0,3.15365 -96341,1015:208:3,158,0,0,0,3.56455 -96342,1015:208:4,158.5,0,0,0,4.10673 -96343,1015:209:3,159,0,0,0,4.48903 -96344,1015:209:4,159.5,0,0,0,4.96262 -96345,1016:100:3,160,0,0,0,5.66824 -96346,1016:100:4,160.5,0,0,0,5.9932 -96347,1016:101:3,161,0,0,0,6.11211 -96348,1016:101:4,161.5,0,0,0,6.05201 -96349,1016:102:3,162,0,0,0,5.00119 -96350,1016:102:4,162.5,0,0,0,4.48903 -96351,1016:103:3,163,0,0,0,4.03457 -96352,1016:103:4,163.5,0,0,0,3.67399 -96353,1016:104:3,164,0,0,0,3.51269 -96354,1016:104:4,164.5,0,0,0,3.41371 -96355,1016:205:3,165,0,0,0,3.46209 -96356,1016:205:4,165.5,0,0,0,3.71267 -96357,1016:206:3,166,0,0,0,4.18196 -96358,1016:206:4,166.5,0,0,0,4.51878 -96359,1016:207:3,167,0,0,0,4.64544 -96360,1016:207:4,167.5,0,0,0,4.48903 -96361,1016:208:3,168,0,0,0,4.37175 -96362,1016:208:4,168.5,0,0,0,4.13171 -96363,1016:209:3,169,0,0,0,2.84261 -96364,1016:209:4,169.5,0,0,0,2.54474 -96365,1017:100:3,170,0,0,0,2.48591 -96366,1017:100:4,170.5,0,0,0,2.50039 -96367,1017:101:3,171,0,0,0,2.51487 -96368,1017:101:4,171.5,0,0,0,2.43059 -96369,1017:102:3,172,0,0,0,2.55241 -96371,1017:103:3,173,0,0,0,2.56794 -96372,1017:103:4,173.5,0,0,0,2.50749 -96373,1017:104:3,174,0,0,0,2.43738 -96374,1017:104:4,174.5,0,0,0,2.20209 -96375,1017:205:3,175,0,0,0,2.09278 -96376,1017:205:4,175.5,0,0,0,2.17693 -96377,1017:206:3,176,0,0,0,2.34123 -96378,1017:206:4,176.5,0,0,0,2.69182 -96379,1017:207:3,177,0,0,0,3.71267 -96380,1017:207:4,177.5,0,0,0,5.82572 -96381,1017:208:3,178,0,0,0,6.05201 -96382,1017:208:4,178.5,0,0,0,5.66824 -96383,1017:209:3,179,0,0,0,7.36886 -96384,1017:209:4,179.5,0,0,0,8.66099 -96385,1018:100:3,180,0,0,0,15.9443 -96386,7018:100:3,-180,0.5,0,0,-6.20082 -96387,7017:209:4,-179.5,0.5,0,0,-3.8549 -96388,7017:209:3,-179,0.5,0,0,-2.51409 -96389,7017:208:4,-178.5,0.5,0,0,-2.03014 -96390,7017:208:3,-178,0.5,0,0,-1.89559 -96391,7017:207:4,-177.5,0.5,0,0,-1.88497 -96392,7017:207:3,-177,0.5,0,0,-1.90598 -96393,7017:206:4,-176.5,0.5,0,0,-1.92773 -96394,7017:206:3,-176,0.5,0,0,-1.96078 -96395,7017:205:4,-175.5,0.5,0,0,-2.00645 -96396,7017:205:3,-175,0.5,0,0,-2.04216 -96397,7017:104:4,-174.5,0.5,0,0,-2.07856 -96398,7017:104:3,-174,0.5,0,0,-1.94954 -96399,7017:103:4,-173.5,0.5,0,0,-1.88497 -96400,7017:103:3,-173,0.5,0,0,-1.48672 -96401,7017:102:4,-172.5,0.5,0,0,-1.3062 -96402,7017:102:3,-172,0.5,0,0,-1.38539 -96403,7017:101:4,-171.5,0.5,0,0,-1.3062 -96404,7017:101:3,-171,0.5,0,0,-1.34786 -96405,7017:100:4,-170.5,0.5,0,0,-1.42461 -96406,7017:100:3,-170,0.5,0,0,-1.32978 -96407,7016:209:4,-169.5,0.5,0,0,-1.23925 -96408,7016:209:3,-169,0.5,0,0,-1.30036 -96409,7016:208:4,-168.5,0.5,0,0,-1.28898 -96410,7016:208:3,-168,0.5,0,0,-1.36652 -96411,7016:207:4,-167.5,0.5,0,0,-1.41127 -96412,7016:207:3,-167,0.5,0,0,-1.41127 -96413,7016:206:4,-166.5,0.5,0,0,-1.16268 -96414,7016:206:3,-166,0.5,0,0,-0.946498 -96415,7016:205:4,-165.5,0.5,0,0,-0.807263 -96416,7016:205:3,-165,0.5,0,0,-0.704061 -96417,7016:104:4,-164.5,0.5,0,0,-0.666959 -96418,7016:104:3,-164,0.5,0,0,-0.637706 -96419,7016:103:4,-163.5,0.5,0,0,-0.61749 -96420,7016:103:3,-163,0.5,0,0,-0.599375 -96421,7016:102:4,-162.5,0.5,0,0,-0.580804 -96422,7016:102:3,-162,0.5,0,0,-0.55127 -96423,7016:101:4,-161.5,0.5,0,0,-0.520767 -96424,7016:101:3,-161,0.5,0,0,-0.505402 -96425,7016:100:4,-160.5,0.5,0,0,-0.552335 -96426,7016:100:3,-160,0.5,0,0,-0.581948 -96427,7015:209:4,-159.5,0.5,0,0,-0.584245 -96428,7015:209:3,-159,0.5,0,0,-0.57856 -96429,7015:208:4,-158.5,0.5,0,0,-0.547068 -96430,7015:208:3,-158,0.5,0,0,-0.549147 -96431,7015:207:4,-157.5,0.5,0,0,-0.524698 -96432,7015:207:3,-157,0.5,0,0,-0.481728 -96433,7015:206:4,-156.5,0.5,0,0,-0.474744 -96434,7015:206:3,-156,0.5,0,0,-0.461174 -96435,7015:205:4,-155.5,0.5,0,0,-0.458693 -96436,7015:205:3,-155,0.5,0,0,-0.471303 -96437,7015:104:4,-154.5,0.5,0,0,-0.4791 -96438,7015:104:3,-154,0.5,0,0,-0.491574 -96439,7015:103:4,-153.5,0.5,0,0,-0.497061 -96440,7015:103:3,-153,0.5,0,0,-0.475617 -96441,7015:102:4,-152.5,0.5,0,0,-0.432428 -96442,7015:102:3,-152,0.5,0,0,-0.399708 -96443,7015:101:4,-151.5,0.5,0,0,-0.365739 -96444,7015:101:3,-151,0.5,0,0,-0.332593 -96445,7015:100:4,-150.5,0.5,0,0,-0.292611 -96446,7015:100:3,-150,0.5,0,0,-0.266561 -96447,7014:209:4,-149.5,0.5,0,0,-0.267403 -96448,7014:209:3,-149,0.5,0,0,-0.293554 -96449,7014:208:4,-148.5,0.5,0,0,-0.325032 -96450,7014:208:3,-148,0.5,0,0,-0.314609 -96451,7014:207:4,-147.5,0.5,0,0,-0.292611 -96452,7014:207:3,-147,0.5,0,0,-0.234487 -96453,7014:206:4,-146.5,0.5,0,0,-0.209936 -96454,7014:206:3,-146,0.5,0,0,-0.199119 -96455,7014:205:4,-145.5,0.5,0,0,-0.194217 -96456,7014:205:3,-145,0.5,0,0,-0.193306 -96457,7014:104:4,-144.5,0.5,0,0,-0.195003 -96458,7014:104:3,-144,0.5,0,0,-0.199066 -96459,7014:103:4,-143.5,0.5,0,0,-0.224076 -96460,7014:103:3,-143,0.5,0,0,-0.259177 -96461,7014:102:4,-142.5,0.5,0,0,-0.275496 -96462,7014:102:3,-142,0.5,0,0,-0.259177 -96463,7014:101:4,-141.5,0.5,0,0,-0.216678 -96464,7014:101:3,-141,0.5,0,0,-0.197203 -96465,7014:100:4,-140.5,0.5,0,0,-0.194959 -96466,7014:100:3,-140,0.5,0,0,-0.22885 -96467,7013:209:4,-139.5,0.5,0,0,-0.269922 -96468,7013:209:3,-139,0.5,0,0,-0.222122 -96469,7013:208:4,-138.5,0.5,0,0,-0.191854 -96470,7013:208:3,-138,0.5,0,0,-0.195222 -96471,7013:207:4,-137.5,0.5,0,0,-0.197337 -96472,7013:207:3,-137,0.5,0,0,-0.200964 -96473,7013:206:4,-136.5,0.5,0,0,-0.207899 -96474,7013:206:3,-136,0.5,0,0,-0.20677 -96475,7013:205:4,-135.5,0.5,0,0,-0.203311 -96476,7013:205:3,-135,0.5,0,0,-0.196144 -96477,7013:104:4,-134.5,0.5,0,0,-0.189551 -96478,7013:104:3,-134,0.5,0,0,-0.187097 -96479,7013:103:4,-133.5,0.5,0,0,-0.189312 -96480,7013:103:3,-133,0.5,0,0,-0.189844 -96481,7013:102:4,-132.5,0.5,0,0,-0.191316 -96482,7013:102:3,-132,0.5,0,0,-0.191449 -96483,7013:101:4,-131.5,0.5,0,0,-0.191477 -96484,7013:101:3,-131,0.5,0,0,-0.189631 -96485,7013:100:4,-130.5,0.5,0,0,-0.186105 -96486,7013:100:3,-130,0.5,0,0,-0.180932 -96487,7012:209:4,-129.5,0.5,0,0,-0.180504 -96488,7012:209:3,-129,0.5,0,0,-0.184087 -96489,7012:208:4,-128.5,0.5,0,0,-0.192556 -96490,7012:208:3,-128,0.5,0,0,-0.196583 -96491,7012:207:4,-127.5,0.5,0,0,-0.195748 -96492,7012:207:3,-127,0.5,0,0,-0.196144 -96493,7012:206:4,-126.5,0.5,0,0,-0.195923 -96494,7012:206:3,-126,0.5,0,0,-0.193219 -96495,7012:205:4,-125.5,0.5,0,0,-0.190511 -96496,7012:205:3,-125,0.5,0,0,-0.188517 -96497,7012:104:4,-124.5,0.5,0,0,-0.188095 -96498,7012:104:3,-124,0.5,0,0,-0.187359 -96499,7012:103:4,-123.5,0.5,0,0,-0.189791 -96500,7012:103:3,-123,0.5,0,0,-0.187779 -96501,7012:102:4,-122.5,0.5,0,0,-0.184216 -96502,7012:102:3,-122,0.5,0,0,-0.17629 -96503,7012:101:4,-121.5,0.5,0,0,-0.176853 -96504,7012:101:3,-121,0.5,0,0,-0.177222 -96505,7012:100:4,-120.5,0.5,0,0,-0.175412 -96506,7012:100:3,-120,0.5,0,0,-0.17868 -96507,7011:209:4,-119.5,0.5,0,0,-0.183113 -96508,7011:209:3,-119,0.5,0,0,-0.185585 -96509,7011:208:4,-118.5,0.5,0,0,-0.188069 -96510,7011:208:3,-118,0.5,0,0,-0.186757 -96511,7011:207:4,-117.5,0.5,0,0,-0.183113 -96512,7011:207:3,-117,0.5,0,0,-0.182578 -96513,7011:206:4,-116.5,0.5,0,0,-0.181867 -96514,7011:206:3,-116,0.5,0,0,-0.18136 -96515,7011:205:4,-115.5,0.5,0,0,-0.18179 -96516,7011:205:3,-115,0.5,0,0,-0.182426 -96517,7011:104:4,-114.5,0.5,0,0,-0.182629 -96518,7011:104:3,-114,0.5,0,0,-0.182629 -96519,7011:103:4,-113.5,0.5,0,0,-0.182859 -96520,7011:103:3,-113,0.5,0,0,-0.183165 -96521,7011:102:4,-112.5,0.5,0,0,-0.183215 -96522,7011:102:3,-112,0.5,0,0,-0.183267 -96523,7011:101:4,-111.5,0.5,0,0,-0.183395 -96524,7011:101:3,-111,0.5,0,0,-0.183574 -96525,7011:100:4,-110.5,0.5,0,0,-0.183676 -96526,7011:100:3,-110,0.5,0,0,-0.183626 -96527,7010:209:4,-109.5,0.5,0,0,-0.183369 -96528,7010:209:3,-109,0.5,0,0,-0.182961 -96529,7010:208:4,-108.5,0.5,0,0,-0.182374 -96530,7010:208:3,-108,0.5,0,0,-0.18179 -96531,7010:207:4,-107.5,0.5,0,0,-0.181285 -96532,7010:207:3,-107,0.5,0,0,-0.180957 -96533,7010:206:4,-106.5,0.5,0,0,-0.18063 -96534,7010:206:3,-106,0.5,0,0,-0.180303 -96535,7010:205:4,-105.5,0.5,0,0,-0.180002 -96536,7010:205:3,-105,0.5,0,0,-0.179552 -96537,7010:104:4,-104.5,0.5,0,0,-0.179029 -96538,7010:104:3,-104,0.5,0,0,-0.178457 -96539,7010:103:4,-103.5,0.5,0,0,-0.177937 -96540,7010:103:3,-103,0.5,0,0,-0.177518 -96541,7010:102:4,-102.5,0.5,0,0,-0.177197 -96542,7010:102:3,-102,0.5,0,0,-0.17705 -96543,7010:101:4,-101.5,0.5,0,0,-0.177222 -96544,7010:101:3,-101,0.5,0,0,-0.177518 -96545,7010:100:4,-100.5,0.5,0,0,-0.177888 -96546,7010:100:3,-100,0.5,0,0,-0.178333 -96547,7009:209:4,-99.5,0.5,0,0,-0.178755 -96548,7009:209:3,-99,0.5,0,0,-0.179203 -96549,7009:208:4,-98.5,0.5,0,0,-0.179677 -96550,7009:208:3,-98,0.5,0,0,-0.180077 -96551,7009:207:4,-97.5,0.5,0,0,-0.180429 -96552,7009:207:3,-97,0.5,0,0,-0.180856 -96553,7009:206:4,-96.5,0.5,0,0,-0.18136 -96554,7009:206:3,-96,0.5,0,0,-0.181664 -96555,7009:205:4,-95.5,0.5,0,0,-0.181867 -96556,7009:205:3,-95,0.5,0,0,-0.181639 -96557,7009:104:4,-94.5,0.5,0,0,-0.181437 -96558,7009:104:3,-94,0.5,0,0,-0.181209 -96559,7009:103:4,-93.5,0.5,0,0,-0.180856 -96560,7009:103:3,-93,0.5,0,0,-0.180655 -96561,7009:102:4,-92.5,0.5,0,0,-0.180504 -96562,7009:102:3,-92,0.5,0,0,-0.180454 -96563,7009:101:4,-91.5,0.5,0,0,-0.180303 -96564,7009:101:3,-91,0.5,0,0,-0.180177 -96565,7009:100:4,-90.5,0.5,0,0,-0.180152 -96566,7009:100:3,-90,0.5,0,0,-0.180429 -96567,7008:209:4,-89.5,0.5,0,0,-0.181234 -96568,7008:209:3,-89,0.5,0,0,-0.1824 -96569,7008:208:4,-88.5,0.5,0,0,-0.183523 -96570,7008:208:3,-88,0.5,0,0,-0.184293 -96571,7008:207:4,-87.5,0.5,0,0,-0.185041 -96572,7008:207:3,-87,0.5,0,0,-0.185845 -96573,7008:206:4,-86.5,0.5,0,0,-0.185637 -96574,7008:206:3,-86,0.5,0,0,-0.184139 -96575,7008:205:4,-85.5,0.5,0,0,-0.183165 -96576,7008:205:3,-85,0.5,0,0,-0.183318 -96577,7008:104:4,-84.5,0.5,0,0,-0.183984 -96578,7008:104:3,-84,0.5,0,0,-0.183779 -96579,7008:103:4,-83.5,0.5,0,0,-0.182654 -96580,7008:103:3,-83,0.5,0,0,-0.181209 -96581,7008:102:4,-82.5,0.5,0,0,-0.180128 -96582,7008:102:3,-82,0.5,0,0,-0.179477 -96583,7008:101:4,-81.5,0.5,0,0,-0.178606 -96584,7008:101:3,-81,0.5,0,0,-0.178358 -96585,7008:100:4,-80.5,0.5,0,0,-0.178556 -96586,7008:100:3,-80,0.5,0,0,-0.179029 -96587,7007:209:4,-79.5,0.5,0,0,-0.179203 -96588,7007:209:3,-79,0.5,0,0,-0.17811 -96589,7007:208:4,-78.5,0.5,0,0,-0.177444 -96590,7007:208:3,-78,0.5,0,0,-0.18212 -96591,7007:207:4,-77.5,0.5,0,0,-0.186157 -96592,7005:101:3,-51,0.5,0,0,-0.186809 -96593,7005:100:4,-50.5,0.5,0,0,-0.184421 -96594,7005:100:3,-50,0.5,0,0,-0.178631 -96595,7004:209:4,-49.5,0.5,0,0,-0.180831 -96596,7004:209:3,-49,0.5,0,0,-0.182323 -96597,7004:208:4,-48.5,0.5,0,0,-0.183702 -96598,7004:208:3,-48,0.5,0,0,-0.185196 -96599,7004:207:4,-47.5,0.5,0,0,-0.185585 -96600,7004:207:3,-47,0.5,0,0,-0.186992 -96601,7004:206:4,-46.5,0.5,0,0,-0.188571 -96602,7004:206:3,-46,0.5,0,0,-0.189472 -96603,7004:205:4,-45.5,0.5,0,0,-0.190564 -96604,7004:205:3,-45,0.5,0,0,-0.191154 -96605,7004:104:4,-44.5,0.5,0,0,-0.191208 -96606,7004:104:3,-44,0.5,0,0,-0.190832 -96607,7004:103:4,-43.5,0.5,0,0,-0.190057 -96608,7004:103:3,-43,0.5,0,0,-0.189206 -96609,7004:102:4,-42.5,0.5,0,0,-0.189684 -96610,7004:102:3,-42,0.5,0,0,-0.189764 -96611,7004:101:4,-41.5,0.5,0,0,-0.189021 -96612,7004:101:3,-41,0.5,0,0,-0.188544 -96613,7004:100:4,-40.5,0.5,0,0,-0.188596 -96614,7004:100:3,-40,0.5,0,0,-0.188729 -96615,7003:209:4,-39.5,0.5,0,0,-0.188808 -96616,7003:209:3,-39,0.5,0,0,-0.188491 -96617,7003:208:4,-38.5,0.5,0,0,-0.188333 -96618,7003:208:3,-38,0.5,0,0,-0.188227 -96619,7003:207:4,-37.5,0.5,0,0,-0.188016 -96620,7003:207:3,-37,0.5,0,0,-0.187359 -96621,7003:206:4,-36.5,0.5,0,0,-0.18694 -96622,7003:206:3,-36,0.5,0,0,-0.186626 -96623,7003:205:4,-35.5,0.5,0,0,-0.185766 -96624,7003:205:3,-35,0.5,0,0,-0.184267 -96625,7003:104:4,-34.5,0.5,0,0,-0.183215 -96626,7003:104:3,-34,0.5,0,0,-0.182961 -96627,7003:103:4,-33.5,0.5,0,0,-0.182578 -96628,7003:103:3,-33,0.5,0,0,-0.181766 -96629,7003:102:4,-32.5,0.5,0,0,-0.181083 -96630,7003:102:3,-32,0.5,0,0,-0.181538 -96631,7003:101:4,-31.5,0.5,0,0,-0.181664 -96632,7003:101:3,-31,0.5,0,0,-0.181234 -96633,7003:100:4,-30.5,0.5,0,0,-0.181234 -96634,7003:100:3,-30,0.5,0,0,-0.181639 -96635,7002:209:4,-29.5,0.5,0,0,-0.183037 -96636,7002:209:3,-29,0.5,0,0,-0.184628 -96637,7002:208:4,-28.5,0.5,0,0,-0.185145 -96638,7002:208:3,-28,0.5,0,0,-0.185119 -96639,7002:207:4,-27.5,0.5,0,0,-0.185507 -96640,7002:207:3,-27,0.5,0,0,-0.185923 -96641,7002:206:4,-26.5,0.5,0,0,-0.186548 -96642,7002:206:3,-26,0.5,0,0,-0.187018 -96643,7002:205:4,-25.5,0.5,0,0,-0.187569 -96644,7002:205:3,-25,0.5,0,0,-0.187964 -96645,7002:104:4,-24.5,0.5,0,0,-0.188755 -96646,7002:104:3,-24,0.5,0,0,-0.189604 -96647,7002:103:4,-23.5,0.5,0,0,-0.189791 -96648,7002:103:3,-23,0.5,0,0,-0.190698 -96649,7002:102:4,-22.5,0.5,0,0,-0.191638 -96650,7002:102:3,-22,0.5,0,0,-0.192259 -96651,7002:101:4,-21.5,0.5,0,0,-0.192854 -96652,7002:101:3,-21,0.5,0,0,-0.193652 -96653,7002:100:4,-20.5,0.5,0,0,-0.194391 -96654,7002:100:3,-20,0.5,0,0,-0.195222 -96655,7001:209:4,-19.5,0.5,0,0,-0.19654 -96656,7001:209:3,-19,0.5,0,0,-0.198699 -96657,7001:208:4,-18.5,0.5,0,0,-0.205991 -96658,7001:208:3,-18,0.5,0,0,-0.214263 -96659,7001:207:4,-17.5,0.5,0,0,-0.219854 -96660,7001:207:3,-17,0.5,0,0,-0.226092 -96661,7001:206:4,-16.5,0.5,0,0,-0.233779 -96662,7001:206:3,-16,0.5,0,0,-0.246277 -96663,7001:205:4,-15.5,0.5,0,0,-0.257169 -96664,7001:205:3,-15,0.5,0,0,-0.260399 -96665,7001:104:4,-14.5,0.5,0,0,-0.2649 -96666,7001:104:3,-14,0.5,0,0,-0.270349 -96667,7001:103:4,-13.5,0.5,0,0,-0.278994 -96668,7001:103:3,-13,0.5,0,0,-0.295913 -96669,7001:102:4,-12.5,0.5,0,0,-0.318205 -96670,7001:102:3,-12,0.5,0,0,-0.349541 -96671,7001:101:4,-11.5,0.5,0,0,-0.3895 -96672,7001:101:3,-11,0.5,0,0,-0.457862 -96673,7001:100:4,-10.5,0.5,0,0,-0.550207 -96674,7001:100:3,-10,0.5,0,0,-0.658814 -96675,7000:209:4,-9.5,0.5,0,0,-0.735784 -96676,7000:209:3,-9,0.5,0,0,-0.815751 -96677,7000:208:4,-8.5,0.5,0,0,-0.879166 -96678,7000:208:3,-8,0.5,0,0,-0.804434 -96679,7000:207:4,-7.5,0.5,0,0,-0.815751 -96680,7000:207:3,-7,0.5,0,0,-0.932435 -96681,7000:206:4,-6.5,0.5,0,0,-1.02191 -96682,7000:206:3,-6,0.5,0,0,-1.21812 -96683,7000:205:4,-5.5,0.5,0,0,-1.61649 -96684,7000:205:3,-5,0.5,0,0,-2.30795 -96685,7000:104:4,-4.5,0.5,0,0,-3.92893 -96686,7000:104:3,-4,0.5,0,0,-10.1983 -96687,7000:103:4,-3.5,0.5,0,0,49.6485 -96688,7000:103:3,-3,0.5,0,0,10.9634 -96689,7000:102:4,-2.5,0.5,0,0,6.36419 -96690,7000:102:3,-2,0.5,0,0,5.04044 -96691,7000:101:4,-1.5,0.5,0,0,3.71267 -96692,7000:101:3,-1,0.5,0,0,3.73237 -96693,7000:100:4,-0.5,0.5,0,0,3.2774 -96694,1000:100:4,0,0.5,0,0,2.77411 -96695,1000:100:4,0.5,0.5,0,0,2.64873 -96696,1000:101:3,1,0.5,0,0,2.44421 -96697,1000:101:4,1.5,0.5,0,0,3.59998 -96698,1000:102:3,2,0.5,0,0,5.42473 -96699,1000:102:4,2.5,0.5,0,0,5.08039 -96700,1000:103:3,3,0.5,0,0,3.39778 -96701,1000:103:4,3.5,0.5,0,0,2.50039 -96702,1000:104:3,4,0.5,0,0,2.37212 -96703,1000:104:4,4.5,0.5,0,0,2.38487 -96704,1000:205:3,5,0.5,0,0,11.6346 -96705,1000:205:4,5.5,0.5,0,0,-68.8761 -96706,1000:206:3,6,0.5,0,0,2.88378 -96707,1000:206:4,6.5,0.5,0,0,14.6812 -96708,1000:207:3,7,0.5,0,0,-14.5436 -96709,1000:207:4,7.5,0.5,0,0,-49.0351 -96710,1000:208:3,8,0.5,0,0,-4.20681 -96711,1000:208:4,8.5,0.5,0,0,-7.18855 -96712,1004:207:4,47.5,0.5,0,0,-0.188121 -96713,1004:208:3,48,0.5,0,0,-0.187727 -96714,1004:208:4,48.5,0.5,0,0,-0.190083 -96715,1004:209:3,49,0.5,0,0,-0.19309 -96716,1004:209:4,49.5,0.5,0,0,-0.198803 -96717,1005:100:3,50,0.5,0,0,-0.203311 -96718,1005:100:4,50.5,0.5,0,0,-0.215727 -96719,1005:101:3,51,0.5,0,0,-0.241779 -96720,1005:101:4,51.5,0.5,0,0,-0.256779 -96721,1005:102:3,52,0.5,0,0,-0.252825 -96722,1005:102:4,52.5,0.5,0,0,-0.250485 -96723,1005:103:3,53,0.5,0,0,-0.253999 -96724,1005:103:4,53.5,0.5,0,0,-0.264483 -96725,1005:104:3,54,0.5,0,0,-0.28345 -96726,1005:104:4,54.5,0.5,0,0,-0.308052 -96727,1005:205:3,55,0.5,0,0,-0.326106 -96728,1005:205:4,55.5,0.5,0,0,-0.374514 -96729,1005:206:3,56,0.5,0,0,-0.478219 -96730,1005:206:4,56.5,0.5,0,0,-0.54809 -96731,1005:207:3,57,0.5,0,0,-0.602932 -96732,1005:207:4,57.5,0.5,0,0,-0.657456 -96733,1005:208:3,58,0.5,0,0,-0.595811 -96734,1005:208:4,58.5,0.5,0,0,-0.53571 -96735,1005:209:3,59,0.5,0,0,-0.490663 -96736,1005:209:4,59.5,0.5,0,0,-0.424126 -96737,1006:100:3,60,0.5,0,0,-0.412407 -96738,1006:100:4,60.5,0.5,0,0,-0.530655 -96739,1006:101:3,61,0.5,0,0,-0.502601 -96740,1006:101:4,61.5,0.5,0,0,-0.484402 -96741,1006:102:3,62,0.5,0,0,-0.440967 -96742,1006:102:4,62.5,0.5,0,0,-0.39423 -96743,1006:103:3,63,0.5,0,0,-0.359627 -96744,1006:103:4,63.5,0.5,0,0,-0.348387 -96745,1006:104:3,64,0.5,0,0,-0.379644 -96746,1006:104:4,64.5,0.5,0,0,-0.46875 -96747,1006:205:3,65,0.5,0,0,-0.561951 -96748,1006:205:4,65.5,0.5,0,0,-0.633825 -96749,1006:206:3,66,0.5,0,0,-0.668345 -96750,1006:206:4,66.5,0.5,0,0,-0.707056 -96751,1006:207:3,67,0.5,0,0,-0.793342 -96752,1006:207:4,67.5,0.5,0,0,-0.922117 -96753,1006:208:3,68,0.5,0,0,-1.23387 -96754,1006:208:4,68.5,0.5,0,0,-1.65796 -96755,1006:209:3,69,0.5,0,0,-1.99513 -96756,1006:209:4,69.5,0.5,0,0,-2.33751 -96757,1007:100:3,70,0.5,0,0,-2.15513 -96758,1007:100:4,70.5,0.5,0,0,-2.09107 -96759,1007:101:3,71,0.5,0,0,-2.01824 -96760,1007:101:4,71.5,0.5,0,0,-1.82355 -96761,1007:102:3,72,0.5,0,0,-1.50098 -96762,1007:102:4,72.5,0.5,0,0,-1.19754 -96763,1007:103:4,73.5,0.5,0,0,-0.898653 -96764,1007:104:3,74,0.5,0,0,-0.839089 -96765,1007:104:4,74.5,0.5,0,0,-0.724249 -96766,1007:205:3,75,0.5,0,0,-0.676699 -96767,1007:205:4,75.5,0.5,0,0,-0.64549 -96768,1007:206:3,76,0.5,0,0,-0.62497 -96769,1007:206:4,76.5,0.5,0,0,-0.621233 -96770,1007:207:3,77,0.5,0,0,-0.621233 -96771,1007:207:4,77.5,0.5,0,0,-0.623708 -96772,1007:208:3,78,0.5,0,0,-0.61749 -96773,1007:208:4,78.5,0.5,0,0,-0.612584 -96774,1007:209:3,79,0.5,0,0,-0.600569 -96775,1007:209:4,79.5,0.5,0,0,-0.599375 -96776,1008:100:3,80,0.5,0,0,-0.580804 -96777,1008:100:4,80.5,0.5,0,0,-0.565241 -96778,1008:101:3,81,0.5,0,0,-0.576294 -96779,1008:101:4,81.5,0.5,0,0,-0.635115 -96780,1008:102:3,82,0.5,0,0,-0.715526 -96781,1008:102:4,82.5,0.5,0,0,-0.769158 -96782,1008:103:3,83,0.5,0,0,-0.863412 -96783,1008:103:4,83.5,0.5,0,0,-1.00615 -96784,1008:104:3,84,0.5,0,0,-1.20768 -96785,1008:104:4,84.5,0.5,0,0,-1.39834 -96786,1008:205:3,85,0.5,0,0,-1.52291 -96787,1008:205:4,85.5,0.5,0,0,-1.37263 -96788,1008:206:3,86,0.5,0,0,-1.23387 -96789,1008:206:4,86.5,0.5,0,0,-1.03395 -96790,1008:207:3,87,0.5,0,0,-0.946498 -96791,1008:207:4,87.5,0.5,0,0,-0.888782 -96792,1008:208:3,88,0.5,0,0,-0.8273 -96793,1008:208:4,88.5,0.5,0,0,-0.998346 -96794,1008:209:3,89,0.5,0,0,-0.915262 -96795,1008:209:4,89.5,0.5,0,0,-0.905223 -96796,1009:100:3,90,0.5,0,0,-0.821452 -96797,1009:100:4,90.5,0.5,0,0,-0.724249 -96798,1009:101:3,91,0.5,0,0,-0.657456 -96799,1009:101:4,91.5,0.5,0,0,-0.668345 -96800,1009:102:3,92,0.5,0,0,-0.774395 -96801,1009:102:4,92.5,0.5,0,0,-1.04217 -96802,1009:103:3,93,0.5,0,0,-1.31799 -96803,1009:103:4,93.5,0.5,0,0,-1.53041 -96804,1009:104:3,94,0.5,0,0,-2.05393 -96805,1009:104:4,94.5,0.5,0,0,-2.43114 -96806,1009:205:3,95,0.5,0,0,-3.7844 -96807,1009:205:4,95.5,0.5,0,0,-8.07899 -96808,1009:206:3,96,0.5,0,0,-19.0885 -96809,1009:209:3,99,0.5,0,0,-6.66212 -96810,1009:209:4,99.5,0.5,0,0,-4.42854 -96811,1010:100:3,100,0.5,0,0,-3.10876 -96812,1010:100:4,100.5,0.5,0,0,-7.80297 -96813,1010:104:3,104,0.5,0,0,-0.198856 -96814,1010:104:4,104.5,0.5,0,0,-0.192746 -96815,1010:205:3,105,0.5,0,0,-0.187937 -96816,1010:205:4,105.5,0.5,0,0,-0.189046 -96817,1010:206:3,106,0.5,0,0,-0.185533 -96818,1010:206:4,106.5,0.5,0,0,-0.18179 -96819,1010:207:3,107,0.5,0,0,-0.183805 -96820,1010:207:4,107.5,0.5,0,0,-0.189711 -96821,1010:208:3,108,0.5,0,0,-0.20257 -96822,1010:208:4,108.5,0.5,0,0,-0.264483 -96823,1010:209:3,109,0.5,0,0,-0.426365 -96824,1010:209:4,109.5,0.5,0,0,-0.601731 -96825,1011:100:3,110,0.5,0,0,-0.689486 -96826,1011:100:4,110.5,0.5,0,0,-0.801619 -96827,1011:101:3,111,0.5,0,0,-1.34786 -96828,1011:101:4,111.5,0.5,0,0,-1.74682 -96829,1011:102:3,112,0.5,0,0,-2.39955 -96830,1011:102:4,112.5,0.5,0,0,-4.88552 -96831,1011:103:3,113,0.5,0,0,-10.6543 -96832,1011:103:4,113.5,0.5,0,0,-10.6543 -96833,1011:104:3,114,0.5,0,0,-7.30474 -96834,1011:208:4,118.5,0.5,0,0,-0.397647 -96835,1011:209:3,119,0.5,0,0,-0.549147 -96836,1011:209:4,119.5,0.5,0,0,-0.232004 -96837,1012:100:3,120,0.5,0,0,-0.469608 -96838,1012:100:4,120.5,0.5,0,0,-0.494294 -96839,1012:101:3,121,0.5,0,0,-0.581948 -96840,1012:101:4,121.5,0.5,0,0,-0.979344 -96841,1012:102:3,122,0.5,0,0,-1.71042 -96842,1012:102:4,122.5,0.5,0,0,-1.98357 -96843,1012:103:3,123,0.5,0,0,-2.14197 -96844,1012:103:4,123.5,0.5,0,0,-2.11607 -96845,1012:104:3,124,0.5,0,0,-1.93875 -96846,1012:104:4,124.5,0.5,0,0,-1.39184 -96847,1012:205:3,125,0.5,0,0,-0.946498 -96848,1012:205:4,125.5,0.5,0,0,-0.662869 -96849,1012:206:3,126,0.5,0,0,-0.452146 -96850,1012:206:4,126.5,0.5,0,0,-0.725999 -96851,1012:207:4,127.5,0.5,0,0,-1.52291 -96852,1012:208:3,128,0.5,0,0,-2.67613 -96853,1012:208:4,128.5,0.5,0,0,-2.89986 -96854,1012:209:3,129,0.5,0,0,-2.96716 -96855,1012:209:4,129.5,0.5,0,0,-3.13377 -96856,1013:100:3,130,0.5,0,0,-3.15913 -96857,1013:100:4,130.5,0.5,0,0,-3.49152 -96858,1013:101:3,131,0.5,0,0,-2.85711 -96859,1013:101:4,131.5,0.5,0,0,-1.88497 -96860,1013:102:3,132,0.5,0,0,-1.33582 -96861,1013:102:4,132.5,0.5,0,0,-1.10661 -96862,1013:103:3,133,0.5,0,0,-1.1202 -96863,1013:103:4,133.5,0.5,0,0,-1.37263 -96864,1013:104:3,134,0.5,0,0,-1.93875 -96865,1013:104:4,134.5,0.5,0,0,-2.69538 -96866,1013:205:3,135,0.5,0,0,-4.33818 -96867,1013:205:4,135.5,0.5,0,0,-19.0885 -96868,1013:206:3,136,0.5,0,0,7.19111 -96869,1013:206:4,136.5,0.5,0,0,4.13171 -96870,1013:207:3,137,0.5,0,0,5.42473 -96871,1013:207:4,137.5,0.5,0,0,10.0048 -96872,1013:208:3,138,0.5,0,0,337.61 -96873,1013:208:4,138.5,0.5,0,0,114.146 -96874,1013:209:3,139,0.5,0,0,28.4486 -96875,1013:209:4,139.5,0.5,0,0,17.4548 -96876,1014:100:3,140,0.5,0,0,12.1375 -96877,1014:100:4,140.5,0.5,0,0,8.66099 -96878,1014:101:3,141,0.5,0,0,8.06673 -96879,1014:101:4,141.5,0.5,0,0,8.534 -96880,1014:102:3,142,0.5,0,0,7.10821 -96881,1014:102:4,142.5,0.5,0,0,5.51842 -96882,1014:103:3,143,0.5,0,0,4.67863 -96883,1014:103:4,143.5,0.5,0,0,4.20802 -96884,1014:104:3,144,0.5,0,0,3.71267 -96885,1014:104:4,144.5,0.5,0,0,3.23498 -96886,1014:205:3,145,0.5,0,0,2.88378 -96887,1014:205:4,145.5,0.5,0,0,2.66585 -96888,1014:206:3,146,0.5,0,0,2.56014 -96889,1014:206:4,146.5,0.5,0,0,2.49312 -96890,1014:207:3,147,0.5,0,0,2.39112 -96891,1014:207:4,147.5,0.5,0,0,2.27149 -96892,1014:208:3,148,0.5,0,0,2.21245 -96893,1014:208:4,148.5,0.5,0,0,2.18696 -96894,1014:209:3,149,0.5,0,0,2.15741 -96895,1014:209:4,149.5,0.5,0,0,2.11065 -96896,1015:100:3,150,0.5,0,0,2.06257 -96897,1015:100:4,150.5,0.5,0,0,2.0541 -96898,1015:101:3,151,0.5,0,0,2.07115 -96899,1015:101:4,151.5,0.5,0,0,2.15741 -96900,1015:102:3,152,0.5,0,0,2.27149 -96901,1015:102:4,152.5,0.5,0,0,2.43059 -96902,1015:103:3,153,0.5,0,0,2.64873 -96903,1015:103:4,153.5,0.5,0,0,2.93751 -96904,1015:104:3,154,0.5,0,0,3.39778 -96905,1015:104:4,154.5,0.5,0,0,3.9646 -96906,1015:205:3,155,0.5,0,0,4.28767 -96907,1015:205:4,155.5,0.5,0,0,4.10673 -96908,1015:206:3,156,0.5,0,0,3.79238 -96909,1015:206:4,156.5,0.5,0,0,3.59998 -96910,1015:207:3,157,0.5,0,0,3.56455 -96911,1015:207:4,157.5,0.5,0,0,3.79238 -96912,1015:208:3,158,0.5,0,0,4.34331 -96913,1015:208:4,158.5,0.5,0,0,5.11981 -96914,1015:209:3,159,0.5,0,0,5.77162 -96915,1015:209:4,159.5,0.5,0,0,6.86436 -96916,1016:100:3,160,0.5,0,0,8.534 -96917,1016:100:4,160.5,0.5,0,0,9.5117 -96918,1016:101:3,161,0.5,0,0,10.9634 -96919,1016:101:4,161.5,0.5,0,0,10.1833 -96920,1016:102:3,162,0.5,0,0,10.7552 -96921,1016:102:4,162.5,0.5,0,0,15.4945 -96922,1016:103:3,163,0.5,0,0,12.9743 -96923,1016:103:4,163.5,0.5,0,0,9.66698 -96924,1016:104:3,164,0.5,0,0,7.55344 -96925,1016:104:4,164.5,0.5,0,0,6.78705 -96926,1016:205:3,165,0.5,0,0,8.41459 -96927,1016:205:4,165.5,0.5,0,0,11.8805 -96928,1016:206:3,166,0.5,0,0,15.0827 -96929,1016:206:4,166.5,0.5,0,0,11.3991 -96930,1016:207:3,167,0.5,0,0,7.85456 -96931,1016:207:4,167.5,0.5,0,0,8.79208 -96932,1016:208:3,168,0.5,0,0,8.92746 -96933,1016:208:4,168.5,0.5,0,0,4.92585 -96934,1016:209:3,169,0.5,0,0,3.85471 -96935,1016:209:4,169.5,0.5,0,0,3.59998 -96936,1017:100:3,170,0.5,0,0,3.51269 -96937,1017:100:4,170.5,0.5,0,0,3.46209 -96938,1017:101:3,171,0.5,0,0,3.2774 -96939,1017:101:4,171.5,0.5,0,0,2.94863 -96940,1017:102:3,172,0.5,0,0,2.84261 -96941,1017:102:4,172.5,0.5,0,0,3.08966 -96942,1017:103:3,173,0.5,0,0,3.26296 -96943,1017:103:4,173.5,0.5,0,0,3.41371 -96944,1017:104:3,174,0.5,0,0,3.85471 -96945,1017:104:4,174.5,0.5,0,0,4.03457 -96946,1017:205:3,175,0.5,0,0,3.26296 -96947,1017:205:4,175.5,0.5,0,0,2.82273 -96948,1017:206:3,176,0.5,0,0,2.78372 -96949,1017:206:4,176.5,0.5,0,0,2.99383 -96950,1017:207:3,177,0.5,0,0,3.46209 -96951,1017:207:4,177.5,0.5,0,0,4.54994 -96952,1017:208:3,178,0.5,0,0,8.17922 -96953,1017:208:4,178.5,0.5,0,0,41.7633 -96954,1017:209:3,179,0.5,0,0,-49.0351 -96955,1017:209:4,179.5,0.5,0,0,-11.7117 -96956,1018:100:3,180,0.5,0,0,-6.20082 -96957,7018:110:1,-180,1,0,0,-5.1786 -96958,7017:219:2,-179.5,1,0,0,-3.8916 -96959,7017:219:1,-179,1,0,0,-3.0841 -96960,7017:218:2,-178.5,1,0,0,-2.48013 -96961,7017:218:1,-178,1,0,0,-2.03014 -96962,7017:217:2,-177.5,1,0,0,-1.71042 -96963,7017:217:1,-177,1,0,0,-1.48672 -96964,7017:216:2,-176.5,1,0,0,-1.34191 -96965,7017:216:1,-176,1,0,0,-1.27195 -96966,7017:215:2,-175.5,1,0,0,-1.28327 -96967,7017:215:1,-175,1,0,0,-1.28327 -96968,7017:114:2,-174.5,1,0,0,-1.27759 -96969,7017:114:1,-174,1,0,0,-1.27759 -96970,7017:113:2,-173.5,1,0,0,-1.29457 -96971,7017:113:1,-173,1,0,0,-1.32377 -96972,7017:112:2,-172.5,1,0,0,-1.16758 -96973,7017:112:1,-172,1,0,0,-0.994479 -96974,7017:111:2,-171.5,1,0,0,-0.929047 -96975,7017:111:1,-171,1,0,0,-0.925572 -96976,7017:110:2,-170.5,1,0,0,-0.860292 -96977,7017:110:1,-170,1,0,0,-0.839089 -96978,7016:219:2,-169.5,1,0,0,-0.869702 -96979,7016:219:1,-169,1,0,0,-0.901879 -96980,7016:218:2,-168.5,1,0,0,-0.888782 -96981,7016:218:1,-168,1,0,0,-0.885625 -96982,7016:217:2,-167.5,1,0,0,-0.905223 -96983,7016:217:1,-167,1,0,0,-0.901879 -96984,7016:216:2,-166.5,1,0,0,-0.860292 -96985,7016:216:1,-166,1,0,0,-0.801619 -96986,7016:215:2,-165.5,1,0,0,-0.796031 -96987,7016:215:1,-165,1,0,0,-0.78247 -96988,7016:114:2,-164.5,1,0,0,-0.763942 -96989,7016:114:1,-164,1,0,0,-0.735784 -96990,7016:113:2,-163.5,1,0,0,-0.725999 -96991,7016:113:1,-163,1,0,0,-0.699648 -96992,7016:112:2,-162.5,1,0,0,-0.676699 -96993,7016:112:1,-162,1,0,0,-0.653446 -96994,7016:111:2,-161.5,1,0,0,-0.621233 -96995,7016:111:1,-161,1,0,0,-0.565241 -96996,7016:110:2,-160.5,1,0,0,-0.52867 -96997,7016:110:1,-160,1,0,0,-0.518801 -96998,7015:219:2,-159.5,1,0,0,-0.54809 -96999,7015:219:1,-159,1,0,0,-0.567415 -97000,7015:218:2,-158.5,1,0,0,-0.567415 -97001,7015:218:1,-158,1,0,0,-0.561951 -97002,7015:217:2,-157.5,1,0,0,-0.55127 -97003,7015:217:1,-157,1,0,0,-0.531667 -97004,7015:216:2,-156.5,1,0,0,-0.5073 -97005,7015:216:1,-156,1,0,0,-0.508252 -97006,7015:215:2,-155.5,1,0,0,-0.524698 -97007,7015:215:1,-155,1,0,0,-0.520767 -97008,7015:114:2,-154.5,1,0,0,-0.508252 -97009,7015:114:1,-154,1,0,0,-0.503542 -97010,7015:113:2,-153.5,1,0,0,-0.500754 -97011,7015:113:1,-153,1,0,0,-0.503542 -97012,7015:112:2,-152.5,1,0,0,-0.489754 -97013,7015:112:1,-152,1,0,0,-0.457862 -97014,7015:111:2,-151.5,1,0,0,-0.424126 -97015,7015:111:1,-151,1,0,0,-0.401082 -97016,7015:110:2,-150.5,1,0,0,-0.388177 -97017,7015:110:1,-150,1,0,0,-0.386172 -97018,7014:219:2,-149.5,1,0,0,-0.39558 -97019,7014:219:1,-149,1,0,0,-0.401082 -97020,7014:218:2,-148.5,1,0,0,-0.400405 -97021,7014:218:1,-148,1,0,0,-0.38093 -97022,7014:217:2,-147.5,1,0,0,-0.365118 -97023,7014:217:1,-147,1,0,0,-0.349541 -97024,7014:216:2,-146.5,1,0,0,-0.326645 -97025,7014:216:1,-146,1,0,0,-0.302642 -97026,7014:215:2,-145.5,1,0,0,-0.282109 -97027,7014:215:1,-145,1,0,0,-0.276372 -97028,7014:114:2,-144.5,1,0,0,-0.286168 -97029,7014:114:1,-144,1,0,0,-0.304103 -97030,7014:113:2,-143.5,1,0,0,-0.318205 -97031,7014:113:1,-143,1,0,0,-0.326106 -97032,7014:112:2,-142.5,1,0,0,-0.323979 -97033,7014:112:1,-142,1,0,0,-0.31718 -97034,7014:111:2,-141.5,1,0,0,-0.30361 -97035,7014:111:1,-141,1,0,0,-0.278994 -97036,7014:110:2,-140.5,1,0,0,-0.271621 -97037,7014:110:1,-140,1,0,0,-0.308052 -97038,7013:219:2,-139.5,1,0,0,-0.30361 -97039,7013:219:1,-139,1,0,0,-0.269083 -97040,7013:218:2,-138.5,1,0,0,-0.265735 -97041,7013:218:1,-138,1,0,0,-0.222122 -97042,7013:217:2,-137.5,1,0,0,-0.212343 -97043,7013:217:1,-137,1,0,0,-0.203311 -97044,7013:216:2,-136.5,1,0,0,-0.201842 -97045,7013:216:1,-136,1,0,0,-0.206383 -97046,7013:215:2,-135.5,1,0,0,-0.20841 -97047,7013:215:1,-135,1,0,0,-0.206383 -97048,7013:114:2,-134.5,1,0,0,-0.218897 -97049,7013:114:1,-134,1,0,0,-0.198314 -97050,7013:113:2,-133.5,1,0,0,-0.194043 -97051,7013:113:1,-133,1,0,0,-0.19296 -97052,7013:112:2,-132.5,1,0,0,-0.193002 -97053,7013:112:1,-132,1,0,0,-0.19778 -97054,7013:111:2,-131.5,1,0,0,-0.203498 -97055,7013:111:1,-131,1,0,0,-0.214531 -97056,7013:110:2,-130.5,1,0,0,-0.218897 -97057,7013:110:1,-130,1,0,0,-0.224076 -97058,7012:219:2,-129.5,1,0,0,-0.21636 -97059,7012:219:1,-129,1,0,0,-0.199013 -97060,7012:218:2,-128.5,1,0,0,-0.212343 -97061,7012:218:1,-128,1,0,0,-0.227814 -97062,7012:217:2,-127.5,1,0,0,-0.227119 -97063,7012:217:1,-127,1,0,0,-0.222122 -97064,7012:216:2,-126.5,1,0,0,-0.212343 -97065,7012:216:1,-126,1,0,0,-0.199309 -97066,7012:215:2,-125.5,1,0,0,-0.195748 -97067,7012:215:1,-125,1,0,0,-0.191342 -97068,7012:114:2,-124.5,1,0,0,-0.19509 -97069,7012:114:1,-124,1,0,0,-0.198909 -97070,7012:113:2,-123.5,1,0,0,-0.205022 -97071,7012:113:1,-123,1,0,0,-0.200632 -97072,7012:112:2,-122.5,1,0,0,-0.192773 -97073,7012:112:1,-122,1,0,0,-0.186678 -97074,7012:111:2,-121.5,1,0,0,-0.183215 -97075,7012:111:1,-121,1,0,0,-0.183293 -97076,7012:110:2,-120.5,1,0,0,-0.185949 -97077,7012:110:1,-120,1,0,0,-0.191127 -97078,7011:219:2,-119.5,1,0,0,-0.193523 -97079,7011:219:1,-119,1,0,0,-0.193913 -97080,7011:218:2,-118.5,1,0,0,-0.191719 -97081,7011:218:1,-118,1,0,0,-0.189977 -97082,7011:217:2,-117.5,1,0,0,-0.189073 -97083,7011:217:1,-117,1,0,0,-0.189127 -97084,7011:216:2,-116.5,1,0,0,-0.189418 -97085,7011:216:1,-116,1,0,0,-0.189365 -97086,7011:215:2,-115.5,1,0,0,-0.189312 -97087,7011:215:1,-115,1,0,0,-0.189312 -97088,7011:114:2,-114.5,1,0,0,-0.189445 -97089,7011:114:1,-114,1,0,0,-0.189445 -97090,7011:113:2,-113.5,1,0,0,-0.189445 -97091,7011:113:1,-113,1,0,0,-0.189631 -97092,7011:112:2,-112.5,1,0,0,-0.190004 -97093,7011:112:1,-112,1,0,0,-0.190244 -97094,7011:111:2,-111.5,1,0,0,-0.190405 -97095,7011:111:1,-111,1,0,0,-0.190591 -97096,7011:110:2,-110.5,1,0,0,-0.190591 -97097,7011:110:1,-110,1,0,0,-0.190271 -97098,7010:219:2,-109.5,1,0,0,-0.189737 -97099,7010:219:1,-109,1,0,0,-0.189046 -97100,7010:218:2,-108.5,1,0,0,-0.188359 -97101,7010:218:1,-108,1,0,0,-0.187674 -97102,7010:217:2,-107.5,1,0,0,-0.186992 -97103,7010:217:1,-107,1,0,0,-0.186339 -97104,7010:216:2,-106.5,1,0,0,-0.185741 -97105,7010:216:1,-106,1,0,0,-0.185196 -97106,7010:215:2,-105.5,1,0,0,-0.184783 -97107,7010:215:1,-105,1,0,0,-0.184242 -97108,7010:114:2,-104.5,1,0,0,-0.183728 -97109,7010:114:1,-104,1,0,0,-0.183241 -97110,7010:113:2,-103.5,1,0,0,-0.182756 -97111,7010:113:1,-103,1,0,0,-0.1824 -97112,7010:112:2,-102.5,1,0,0,-0.18212 -97113,7010:112:1,-102,1,0,0,-0.181841 -97114,7010:111:2,-101.5,1,0,0,-0.181766 -97115,7010:111:1,-101,1,0,0,-0.181841 -97116,7010:110:2,-100.5,1,0,0,-0.181867 -97117,7010:110:1,-100,1,0,0,-0.181943 -97118,7009:219:2,-99.5,1,0,0,-0.182146 -97119,7009:219:1,-99,1,0,0,-0.1824 -97120,7009:218:2,-98.5,1,0,0,-0.182578 -97121,7009:218:1,-98,1,0,0,-0.182629 -97122,7009:217:2,-97.5,1,0,0,-0.182603 -97123,7009:217:1,-97,1,0,0,-0.182654 -97124,7009:216:2,-96.5,1,0,0,-0.182705 -97125,7009:216:1,-96,1,0,0,-0.182884 -97126,7009:215:2,-95.5,1,0,0,-0.183215 -97127,7009:215:1,-95,1,0,0,-0.183626 -97128,7009:114:2,-94.5,1,0,0,-0.183293 -97129,7009:114:1,-94,1,0,0,-0.183191 -97130,7009:113:2,-93.5,1,0,0,-0.183139 -97131,7009:113:1,-93,1,0,0,-0.182884 -97132,7009:112:2,-92.5,1,0,0,-0.182502 -97133,7009:112:1,-92,1,0,0,-0.182197 -97134,7009:111:2,-91.5,1,0,0,-0.181816 -97135,7009:111:1,-91,1,0,0,-0.181613 -97136,7009:110:2,-90.5,1,0,0,-0.181613 -97137,7009:110:1,-90,1,0,0,-0.181892 -97138,7008:219:2,-89.5,1,0,0,-0.182476 -97139,7008:219:1,-89,1,0,0,-0.183318 -97140,7008:218:2,-88.5,1,0,0,-0.184576 -97141,7008:218:1,-88,1,0,0,-0.185507 -97142,7008:217:2,-87.5,1,0,0,-0.186731 -97143,7008:217:1,-87,1,0,0,-0.18865 -97144,7008:216:2,-86.5,1,0,0,-0.189445 -97145,7008:216:1,-86,1,0,0,-0.188755 -97146,7008:215:2,-85.5,1,0,0,-0.190004 -97147,7008:215:1,-85,1,0,0,-0.191962 -97148,7008:114:2,-84.5,1,0,0,-0.193479 -97149,7008:114:1,-84,1,0,0,-0.191638 -97150,7008:113:2,-83.5,1,0,0,-0.189021 -97151,7008:113:1,-83,1,0,0,-0.187307 -97152,7008:112:2,-82.5,1,0,0,-0.187832 -97153,7008:112:1,-82,1,0,0,-0.188201 -97154,7008:111:2,-81.5,1,0,0,-0.188412 -97155,7008:111:1,-81,1,0,0,-0.188676 -97156,7008:110:2,-80.5,1,0,0,-0.188808 -97157,7008:110:1,-80,1,0,0,-0.188174 -97158,7007:219:2,-79.5,1,0,0,-0.18749 -97159,7007:219:1,-79,1,0,0,-0.184344 -97160,7007:218:2,-78.5,1,0,0,-0.18131 -97161,7007:218:1,-78,1,0,0,-0.185507 -97162,7007:217:2,-77.5,1,0,0,-0.192773 -97163,7005:112:1,-52,1,0,0,-0.173576 -97164,7005:111:2,-51.5,1,0,0,-0.174418 -97165,7005:111:1,-51,1,0,0,-0.180354 -97166,7005:110:2,-50.5,1,0,0,-0.179977 -97167,7005:110:1,-50,1,0,0,-0.181335 -97168,7004:219:2,-49.5,1,0,0,-0.184809 -97169,7004:219:1,-49,1,0,0,-0.186131 -97170,7004:218:2,-48.5,1,0,0,-0.185923 -97171,7004:218:1,-48,1,0,0,-0.1853 -97172,7004:217:2,-47.5,1,0,0,-0.184267 -97173,7004:217:1,-47,1,0,0,-0.185119 -97174,7004:216:2,-46.5,1,0,0,-0.186339 -97175,7004:216:1,-46,1,0,0,-0.188544 -97176,7004:215:2,-45.5,1,0,0,-0.19011 -97177,7004:215:1,-45,1,0,0,-0.191262 -97178,7004:114:2,-44.5,1,0,0,-0.191396 -97179,7004:114:1,-44,1,0,0,-0.190671 -97180,7004:113:2,-43.5,1,0,0,-0.189391 -97181,7004:113:1,-43,1,0,0,-0.187438 -97182,7004:112:2,-42.5,1,0,0,-0.185897 -97183,7004:112:1,-42,1,0,0,-0.185637 -97184,7004:111:2,-41.5,1,0,0,-0.186522 -97185,7004:111:1,-41,1,0,0,-0.186862 -97186,7004:110:2,-40.5,1,0,0,-0.187071 -97187,7004:110:1,-40,1,0,0,-0.187202 -97188,7003:219:2,-39.5,1,0,0,-0.187176 -97189,7003:219:1,-39,1,0,0,-0.187569 -97190,7003:218:2,-38.5,1,0,0,-0.187779 -97191,7003:218:1,-38,1,0,0,-0.187359 -97192,7003:217:2,-37.5,1,0,0,-0.186862 -97193,7003:217:1,-37,1,0,0,-0.186418 -97194,7003:216:2,-36.5,1,0,0,-0.186365 -97195,7003:216:1,-36,1,0,0,-0.186027 -97196,7003:215:2,-35.5,1,0,0,-0.185171 -97197,7003:215:1,-35,1,0,0,-0.185015 -97198,7003:114:2,-34.5,1,0,0,-0.185041 -97199,7003:114:1,-34,1,0,0,-0.184989 -97200,7003:113:2,-33.5,1,0,0,-0.184499 -97201,7003:113:1,-33,1,0,0,-0.183959 -97202,7003:112:2,-32.5,1,0,0,-0.183574 -97203,7003:112:1,-32,1,0,0,-0.183523 -97204,7003:111:2,-31.5,1,0,0,-0.183702 -97205,7003:111:1,-31,1,0,0,-0.183805 -97206,7003:110:2,-30.5,1,0,0,-0.183907 -97207,7003:110:1,-30,1,0,0,-0.184165 -97208,7002:219:2,-29.5,1,0,0,-0.184576 -97209,7002:219:1,-29,1,0,0,-0.184886 -97210,7002:218:2,-28.5,1,0,0,-0.185145 -97211,7002:218:1,-28,1,0,0,-0.185689 -97212,7002:217:2,-27.5,1,0,0,-0.186392 -97213,7002:217:1,-27,1,0,0,-0.187045 -97214,7002:216:2,-26.5,1,0,0,-0.187569 -97215,7002:216:1,-26,1,0,0,-0.18799 -97216,7002:215:2,-25.5,1,0,0,-0.18828 -97217,7002:215:1,-25,1,0,0,-0.188676 -97218,7002:114:2,-24.5,1,0,0,-0.189339 -97219,7002:114:1,-24,1,0,0,-0.190004 -97220,7002:113:2,-23.5,1,0,0,-0.190458 -97221,7002:113:1,-23,1,0,0,-0.191154 -97222,7002:112:2,-22.5,1,0,0,-0.192016 -97223,7002:112:1,-22,1,0,0,-0.192828 -97224,7002:111:2,-21.5,1,0,0,-0.193696 -97225,7002:111:1,-21,1,0,0,-0.194828 -97226,7002:110:2,-20.5,1,0,0,-0.196144 -97227,7002:110:1,-20,1,0,0,-0.197735 -97228,7001:219:2,-19.5,1,0,0,-0.200466 -97229,7001:219:1,-19,1,0,0,-0.210452 -97230,7001:218:2,-18.5,1,0,0,-0.229892 -97231,7001:218:1,-18,1,0,0,-0.251266 -97232,7001:217:2,-17.5,1,0,0,-0.265735 -97233,7001:217:1,-17,1,0,0,-0.272051 -97234,7001:216:2,-16.5,1,0,0,-0.279438 -97235,7001:216:1,-16,1,0,0,-0.294027 -97236,7001:215:2,-15.5,1,0,0,-0.30607 -97237,7001:215:1,-15,1,0,0,-0.309546 -97238,7001:114:2,-14.5,1,0,0,-0.31005 -97239,7001:114:1,-14,1,0,0,-0.311556 -97240,7001:113:2,-13.5,1,0,0,-0.320286 -97241,7001:113:1,-13,1,0,0,-0.342066 -97242,7001:112:2,-12.5,1,0,0,-0.363282 -97243,7001:112:1,-12,1,0,0,-0.380296 -97244,7001:111:2,-11.5,1,0,0,-0.425609 -97245,7001:111:1,-11,1,0,0,-0.517822 -97246,7001:110:2,-10.5,1,0,0,-0.652104 -97247,7001:110:1,-10,1,0,0,-0.833119 -97248,7000:219:2,-9.5,1,0,0,-0.526664 -97249,7000:216:1,-6,1,0,0,-1.00224 -97250,7000:215:2,-5.5,1,0,0,-1.28898 -97251,7000:215:1,-5,1,0,0,-1.53041 -97252,7000:114:2,-4.5,1,0,0,-1.98357 -97253,7000:114:1,-4,1,0,0,-2.7742 -97254,7000:113:2,-3.5,1,0,0,-4.57142 -97255,7000:113:1,-3,1,0,0,-8.85178 -97256,7000:111:2,-1.5,1,0,0,-1.4654 -97257,7000:111:1,-1,1,0,0,-2.29319 -97258,7000:110:2,-0.5,1,0,0,4.88857 -97259,1000:110:2,0,1,0,0,3.15365 -97260,1000:110:2,0.5,1,0,0,2.85284 -97261,1000:111:1,1,1,0,0,3.05293 -97262,1000:111:2,1.5,1,0,0,3.30674 -97263,1000:112:1,2,1,0,0,3.47876 -97264,1000:112:2,2.5,1,0,0,3.49563 -97265,1000:113:1,3,1,0,0,2.70071 -97266,1000:113:2,3.5,1,0,0,2.2228 -97267,1000:114:1,4,1,0,0,2.2281 -97268,1000:114:2,4.5,1,0,0,2.07534 -97269,1000:215:1,5,1,0,0,2.84261 -97270,1004:218:2,48.5,1,0,0,-0.185093 -97271,1004:219:1,49,1,0,0,-0.186339 -97272,1004:219:2,49.5,1,0,0,-0.19102 -97273,1005:110:1,50,1,0,0,-0.196849 -97274,1005:110:2,50.5,1,0,0,-0.197115 -97275,1005:111:1,51,1,0,0,-0.19738 -97276,1005:111:2,51.5,1,0,0,-0.196055 -97277,1005:112:1,52,1,0,0,-0.194173 -97278,1005:112:2,52.5,1,0,0,-0.193826 -97279,1005:113:1,53,1,0,0,-0.195748 -97280,1005:113:2,53.5,1,0,0,-0.200466 -97281,1005:114:1,54,1,0,0,-0.229551 -97282,1005:114:2,54.5,1,0,0,-0.272482 -97283,1005:215:1,55,1,0,0,-0.319251 -97284,1005:215:2,55.5,1,0,0,-0.413111 -97285,1005:216:1,56,1,0,0,-0.490663 -97286,1005:216:2,56.5,1,0,0,-0.533699 -97287,1005:217:1,57,1,0,0,-0.57295 -97288,1005:217:2,57.5,1,0,0,-0.610169 -97289,1005:218:1,58,1,0,0,-0.599375 -97290,1005:218:2,58.5,1,0,0,-0.585399 -97291,1005:219:1,59,1,0,0,-0.493376 -97292,1005:219:2,59.5,1,0,0,-0.45458 -97293,1006:110:1,60,1,0,0,-0.605343 -97294,1006:110:2,60.5,1,0,0,-0.702616 -97295,1006:111:1,61,1,0,0,-0.508252 -97296,1006:111:2,61.5,1,0,0,-0.434748 -97297,1006:112:1,62,1,0,0,-0.421156 -97298,1006:112:2,62.5,1,0,0,-0.413838 -97299,1006:113:1,63,1,0,0,-0.407395 -97300,1006:113:2,63.5,1,0,0,-0.427123 -97301,1006:114:1,64,1,0,0,-0.478219 -97302,1006:114:2,64.5,1,0,0,-0.54083 -97303,1006:215:1,65,1,0,0,-0.576294 -97304,1006:215:2,65.5,1,0,0,-0.594666 -97305,1006:216:1,66,1,0,0,-0.605343 -97306,1006:216:2,66.5,1,0,0,-0.666959 -97307,1006:217:1,67,1,0,0,-0.752743 -97308,1006:217:2,67.5,1,0,0,-0.895345 -97309,1006:218:1,68,1,0,0,-1.11574 -97310,1006:218:2,68.5,1,0,0,-1.24466 -97311,1006:219:1,69,1,0,0,-1.25544 -97312,1006:219:2,69.5,1,0,0,-1.39184 -97313,1007:110:1,70,1,0,0,-1.30036 -97314,1007:110:2,70.5,1,0,0,-1.41792 -97315,1007:111:1,71,1,0,0,-1.32978 -97316,1007:111:2,71.5,1,0,0,-1.27195 -97317,1007:112:1,72,1,0,0,-1.15795 -97318,1007:112:2,72.5,1,0,0,-0.905223 -97319,1007:113:2,73.5,1,0,0,-0.742128 -97320,1007:114:1,74,1,0,0,-0.621233 -97321,1007:114:2,74.5,1,0,0,-0.554442 -97322,1007:215:1,75,1,0,0,-0.509207 -97323,1007:215:2,75.5,1,0,0,-0.480868 -97324,1007:216:1,76,1,0,0,-0.462013 -97325,1007:216:2,76.5,1,0,0,-0.461174 -97326,1007:217:1,77,1,0,0,-0.475617 -97327,1007:217:2,77.5,1,0,0,-0.485298 -97328,1007:218:1,78,1,0,0,-0.491574 -97329,1007:218:2,78.5,1,0,0,-0.482617 -97330,1007:219:1,79,1,0,0,-0.497061 -97331,1007:219:2,79.5,1,0,0,-0.491574 -97332,1008:110:1,80,1,0,0,-0.422626 -97333,1008:110:2,80.5,1,0,0,-0.350128 -97334,1008:111:1,81,1,0,0,-0.337569 -97335,1008:111:2,81.5,1,0,0,-0.384863 -97336,1008:112:1,82,1,0,0,-0.415297 -97337,1008:112:2,82.5,1,0,0,-0.580804 -97338,1008:113:1,83,1,0,0,-0.671127 -97339,1008:113:2,83.5,1,0,0,-0.804434 -97340,1008:114:1,84,1,0,0,-0.898653 -97341,1008:114:2,84.5,1,0,0,-0.946498 -97342,1008:215:1,85,1,0,0,-0.892054 -97343,1008:215:2,85.5,1,0,0,-0.830247 -97344,1008:216:1,86,1,0,0,-0.761432 -97345,1008:216:2,86.5,1,0,0,-0.64814 -97346,1008:217:1,87,1,0,0,-0.592313 -97347,1008:217:2,87.5,1,0,0,-0.555516 -97348,1008:218:1,88,1,0,0,-0.546016 -97460,1015:113:1,153,1,0,0,4.26047 -97349,1008:218:2,88.5,1,0,0,-0.570748 -97350,1008:219:1,89,1,0,0,-0.557639 -97351,1008:219:2,89.5,1,0,0,-0.52867 -97352,1009:110:1,90,1,0,0,-0.5073 -97353,1009:110:2,90.5,1,0,0,-0.500754 -97354,1009:111:1,91,1,0,0,-0.487971 -97355,1009:111:2,91.5,1,0,0,-0.531667 -97356,1009:112:1,92,1,0,0,-0.566343 -97357,1009:112:2,92.5,1,0,0,-0.600569 -97358,1009:113:1,93,1,0,0,-0.616286 -97359,1009:113:2,93.5,1,0,0,-0.611356 -97360,1009:114:1,94,1,0,0,-0.735784 -97361,1009:114:2,94.5,1,0,0,-1.09774 -97362,1009:215:1,95,1,0,0,-1.804 -97363,1009:215:2,95.5,1,0,0,-2.39955 -97364,1009:218:2,98.5,1,0,0,-0.705556 -97365,1009:219:1,99,1,0,0,-1.31799 -97366,1009:219:2,99.5,1,0,0,-0.911966 -97367,1010:110:1,100,1,0,0,-0.704061 -97368,1010:110:2,100.5,1,0,0,-1.89559 -97369,1010:114:1,104,1,0,0,-0.194087 -97370,1010:114:2,104.5,1,0,0,-0.187911 -97371,1010:215:1,105,1,0,0,-0.184602 -97372,1010:215:2,105.5,1,0,0,-0.185222 -97373,1010:216:1,106,1,0,0,-0.183574 -97374,1010:216:2,106.5,1,0,0,-0.180655 -97375,1010:217:1,107,1,0,0,-0.182578 -97376,1010:217:2,107.5,1,0,0,-0.186757 -97377,1010:218:1,108,1,0,0,-0.188835 -97378,1010:218:2,108.5,1,0,0,-0.192881 -97379,1010:219:1,109,1,0,0,-0.230597 -97380,1010:219:2,109.5,1,0,0,-0.245895 -97381,1011:110:1,110,1,0,0,-0.277238 -97382,1011:110:2,110.5,1,0,0,-0.370715 -97383,1011:111:1,111,1,0,0,-0.467894 -97384,1011:111:2,111.5,1,0,0,-0.565241 -97385,1011:112:1,112,1,0,0,-0.696742 -97386,1011:112:2,112.5,1,0,0,-0.851124 -97387,1011:113:1,113,1,0,0,-1.28898 -97388,1011:113:2,113.5,1,0,0,-2.14197 -97389,1011:114:1,114,1,0,0,-4.38224 -97390,1011:114:2,114.5,1,0,0,-4.24979 -97391,1011:215:1,115,1,0,0,36.1333 -97392,1011:215:2,115.5,1,0,0,69.1201 -97393,1011:219:2,119.5,1,0,0,-0.457862 -97394,1012:110:1,120,1,0,0,-1.32377 -97395,1012:110:2,120.5,1,0,0,-0.328794 -97396,1012:111:1,121,1,0,0,-0.334791 -97397,1012:111:2,121.5,1,0,0,-0.407395 -97398,1012:112:1,122,1,0,0,-0.480868 -97399,1012:112:2,122.5,1,0,0,-0.615049 -97400,1012:113:1,123,1,0,0,-0.675289 -97401,1012:113:2,123.5,1,0,0,-0.623708 -97402,1012:114:1,124,1,0,0,-0.510135 -97403,1012:114:2,124.5,1,0,0,-0.409543 -97404,1012:215:1,125,1,0,0,-0.258784 -97405,1012:215:2,125.5,1,0,0,-0.225747 -97406,1012:216:1,126,1,0,0,-0.244767 -97407,1012:216:2,126.5,1,0,0,-0.391527 -97408,1012:217:1,127,1,0,0,-0.522713 -97409,1012:217:2,127.5,1,0,0,-0.710385 -97410,1012:218:1,128,1,0,0,-1.55304 -97411,1012:218:2,128.5,1,0,0,-1.93875 -97412,1012:219:1,129,1,0,0,-2.41501 -97413,1012:219:2,129.5,1,0,0,-2.96716 -97414,1013:110:1,130,1,0,0,-3.49152 -97415,1013:110:2,130.5,1,0,0,-3.6164 -97416,1013:111:1,131,1,0,0,-4.20681 -97417,1013:111:2,131.5,1,0,0,-3.49152 -97418,1013:112:1,132,1,0,0,-2.07856 -97419,1013:112:2,132.5,1,0,0,-1.36652 -97420,1013:113:1,133,1,0,0,-1.37899 -97421,1013:113:2,133.5,1,0,0,-1.54559 -97422,1013:114:1,134,1,0,0,-2.04216 -97423,1013:114:2,134.5,1,0,0,-3.29075 -97424,1013:215:1,135,1,0,0,-23.6587 -97425,1013:215:2,135.5,1,0,0,6.64017 -97426,1013:216:1,136,1,0,0,4.37175 -97427,1013:216:2,136.5,1,0,0,5.33314 -97428,1013:217:1,137,1,0,0,6.71386 -97429,1013:217:2,137.5,1,0,0,19.314 -97430,1013:218:1,138,1,0,0,-6.66212 -97431,1013:218:2,138.5,1,0,0,-3.21017 -97432,1013:219:1,139,1,0,0,-8.68525 -97433,1013:219:2,139.5,1,0,0,-35.3361 -97434,1014:110:1,140,1,0,0,-68.8761 -97435,1014:110:2,140.5,1,0,0,-150.165 -97436,1014:111:1,141,1,0,0,337.61 -97437,1014:111:2,141.5,1,0,0,36.1333 -97438,1014:112:1,142,1,0,0,15.9443 -97439,1014:112:2,142.5,1,0,0,10.0048 -97440,1014:113:1,143,1,0,0,6.86436 -97441,1014:113:2,143.5,1,0,0,5.28863 -97442,1014:114:1,144,1,0,0,4.26047 -97443,1014:114:2,144.5,1,0,0,3.52942 -97444,1014:215:1,145,1,0,0,3.14051 -97445,1014:215:2,145.5,1,0,0,2.93751 -97446,1014:216:1,146,1,0,0,2.92683 -97447,1014:216:2,146.5,1,0,0,3.0288 -97448,1014:217:1,147,1,0,0,3.1279 -97449,1014:217:2,147.5,1,0,0,3.221 -97450,1014:218:1,148,1,0,0,3.30674 -97451,1014:218:2,148.5,1,0,0,3.38202 -97452,1014:219:1,149,1,0,0,3.39778 -97453,1014:219:2,149.5,1,0,0,3.23498 -97454,1015:110:1,150,1,0,0,2.99383 -97455,1015:110:2,150.5,1,0,0,2.84261 -97456,1015:111:1,151,1,0,0,2.81277 -97457,1015:111:2,151.5,1,0,0,2.97119 -97458,1015:112:1,152,1,0,0,3.2774 -97459,1015:112:2,152.5,1,0,0,3.63682 -97461,1015:113:2,153.5,1,0,0,6.17353 -97462,1015:114:1,154,1,0,0,17.4548 -97463,1015:114:2,154.5,1,0,0,-1157.87 -97464,1015:215:1,155,1,0,0,-21.5849 -97465,1015:215:2,155.5,1,0,0,-22.5753 -97466,1015:216:1,156,1,0,0,204.138 -97467,1015:216:2,156.5,1,0,0,13.2838 -97468,1015:217:1,157,1,0,0,7.10821 -97469,1015:217:2,157.5,1,0,0,5.88096 -97470,1015:218:1,158,1,0,0,5.77162 -97471,1015:218:2,158.5,1,0,0,6.17353 -97472,1015:219:1,159,1,0,0,7.75136 -97473,1015:219:2,159.5,1,0,0,10.5552 -97474,1016:110:1,160,1,0,0,13.9409 -97475,1016:110:2,160.5,1,0,0,19.314 -97476,1016:111:1,161,1,0,0,33.825 -97477,1016:111:2,161.5,1,0,0,36.1333 -97478,1016:112:1,162,1,0,0,45.362 -97479,1016:112:2,162.5,1,0,0,38.6991 -97480,1016:113:1,163,1,0,0,36.1333 -97481,1016:113:2,163.5,1,0,0,41.7633 -97482,1016:114:1,164,1,0,0,925.558 -97483,1016:114:2,164.5,1,0,0,-27.5732 -97484,1016:215:1,165,1,0,0,-12.9803 -97485,1016:215:2,165.5,1,0,0,-12.9803 -97486,1016:216:1,166,1,0,0,-17.0994 -97487,1016:216:2,166.5,1,0,0,-33.0023 -97488,1016:217:1,167,1,0,0,94.0931 -97489,1016:217:2,167.5,1,0,0,20.0054 -97490,1016:218:1,168,1,0,0,11.3991 -97491,1016:218:2,168.5,1,0,0,8.66099 -97492,1016:219:1,169,1,0,0,8.17922 -97493,1016:219:2,169.5,1,0,0,9.06305 -97494,1017:110:1,170,1,0,0,14.6812 -97495,1017:110:2,170.5,1,0,0,13.2838 -97496,1017:111:1,171,1,0,0,6.94361 -97497,1017:111:2,171.5,1,0,0,4.88857 -97498,1017:112:1,172,1,0,0,3.83409 -97499,1017:112:2,172.5,1,0,0,3.59998 -97500,1017:113:1,173,1,0,0,4.23446 -97501,1017:113:2,173.5,1,0,0,4.78046 -97502,1017:114:1,174,1,0,0,7.85456 -97503,1017:114:2,174.5,1,0,0,337.61 -97504,1017:215:1,175,1,0,0,-209.944 -97505,1017:215:2,175.5,1,0,0,23.4911 -97506,1017:216:1,176,1,0,0,20.7737 -97507,1017:216:2,176.5,1,0,0,204.138 -97508,1017:217:1,177,1,0,0,-17.0994 -97509,1017:217:2,177.5,1,0,0,-9.01915 -97510,1017:218:1,178,1,0,0,-7.30474 -97511,1017:218:2,178.5,1,0,0,-6.96957 -97512,1017:219:1,179,1,0,0,-7.07916 -97513,1017:219:2,179.5,1,0,0,-6.66212 -97514,1018:110:1,180,1,0,0,-5.1786 -97515,7018:110:3,-180,1.5,0,0,-1.9168 -97516,7017:219:4,-179.5,1.5,0,0,-1.79421 -97517,7017:219:3,-179,1.5,0,0,-1.67524 -97518,7017:218:4,-178.5,1.5,0,0,-1.48672 -97519,7017:218:3,-178,1.5,0,0,-1.3062 -97520,7017:217:4,-177.5,1.5,0,0,-1.10661 -97521,7017:217:3,-177,1.5,0,0,-0.979344 -97522,7017:216:4,-176.5,1.5,0,0,-0.892054 -97523,7017:216:3,-176,1.5,0,0,-0.8273 -97524,7017:215:4,-175.5,1.5,0,0,-0.77181 -97525,7017:215:3,-175,1.5,0,0,-0.731661 -97526,7017:114:4,-174.5,1.5,0,0,-0.713789 -97527,7017:114:3,-174,1.5,0,0,-0.713789 -97528,7017:113:4,-173.5,1.5,0,0,-0.724249 -97529,7017:113:3,-173,1.5,0,0,-0.724249 -97530,7017:112:4,-172.5,1.5,0,0,-0.72072 -97531,7017:112:3,-172,1.5,0,0,-0.740005 -97532,7017:111:4,-171.5,1.5,0,0,-0.731661 -97533,7017:111:3,-171,1.5,0,0,-0.705556 -97534,7017:110:4,-170.5,1.5,0,0,-0.682336 -97535,7017:110:3,-170,1.5,0,0,-0.679488 -97536,7016:219:4,-169.5,1.5,0,0,-0.676699 -97537,7016:219:3,-169,1.5,0,0,-0.70113 -97538,7016:218:4,-168.5,1.5,0,0,-0.693809 -97539,7016:218:3,-168,1.5,0,0,-0.653446 -97540,7016:217:4,-167.5,1.5,0,0,-0.623708 -97541,7016:217:3,-167,1.5,0,0,-0.608949 -97542,7016:216:4,-166.5,1.5,0,0,-0.594666 -97543,7016:216:3,-166,1.5,0,0,-0.571831 -97544,7016:215:4,-165.5,1.5,0,0,-0.566343 -97545,7016:215:3,-165,1.5,0,0,-0.574073 -97546,7016:114:4,-164.5,1.5,0,0,-0.593488 -97547,7016:114:3,-164,1.5,0,0,-0.612584 -97548,7016:113:4,-163.5,1.5,0,0,-0.631294 -97549,7016:113:3,-163,1.5,0,0,-0.64814 -97550,7016:112:4,-162.5,1.5,0,0,-0.64814 -97551,7016:112:3,-162,1.5,0,0,-0.64549 -97552,7016:111:4,-161.5,1.5,0,0,-0.635115 -97553,7016:111:3,-161,1.5,0,0,-0.615049 -97554,7016:110:4,-160.5,1.5,0,0,-0.610169 -97555,7016:110:3,-160,1.5,0,0,-0.604136 -97556,7015:219:4,-159.5,1.5,0,0,-0.588842 -97557,7015:219:3,-159,1.5,0,0,-0.580804 -97558,7015:218:4,-158.5,1.5,0,0,-0.579698 -97559,7015:218:3,-158,1.5,0,0,-0.565241 -97560,7015:217:4,-157.5,1.5,0,0,-0.550207 -97561,7015:217:3,-157,1.5,0,0,-0.530655 -97562,7015:216:4,-156.5,1.5,0,0,-0.514929 -97563,7015:216:3,-156,1.5,0,0,-0.501662 -97564,7015:215:4,-155.5,1.5,0,0,-0.499821 -97565,7015:215:3,-155,1.5,0,0,-0.503542 -97566,7015:114:4,-154.5,1.5,0,0,-0.503542 -97567,7015:114:3,-154,1.5,0,0,-0.495214 -97568,7015:113:4,-153.5,1.5,0,0,-0.485298 -97569,7015:113:3,-153,1.5,0,0,-0.477367 -97570,7015:112:4,-152.5,1.5,0,0,-0.475617 -97571,7015:112:3,-152,1.5,0,0,-0.480868 -98003,1014:217:4,147.5,1.5,0,0,12.9743 -97572,7015:111:4,-151.5,1.5,0,0,-0.489754 -97573,7015:111:3,-151,1.5,0,0,-0.501662 -97574,7015:110:4,-150.5,1.5,0,0,-0.512057 -97575,7015:110:3,-150,1.5,0,0,-0.518801 -97576,7014:219:4,-149.5,1.5,0,0,-0.518801 -97577,7014:219:3,-149,1.5,0,0,-0.511095 -97578,7014:218:4,-148.5,1.5,0,0,-0.501662 -97579,7014:218:3,-148,1.5,0,0,-0.490663 -97580,7014:217:4,-147.5,1.5,0,0,-0.474744 -97581,7014:217:3,-147,1.5,0,0,-0.448109 -97582,7014:216:4,-146.5,1.5,0,0,-0.424878 -97583,7014:216:3,-146,1.5,0,0,-0.405284 -97584,7014:215:4,-145.5,1.5,0,0,-0.393547 -97585,7014:215:3,-145,1.5,0,0,-0.386172 -97586,7014:114:4,-144.5,1.5,0,0,-0.384863 -97587,7014:114:3,-144,1.5,0,0,-0.382242 -97588,7014:113:4,-143.5,1.5,0,0,-0.378343 -97589,7014:113:3,-143,1.5,0,0,-0.373874 -97590,7014:112:4,-142.5,1.5,0,0,-0.363282 -97591,7014:112:3,-142,1.5,0,0,-0.349541 -97592,7014:111:4,-141.5,1.5,0,0,-0.334236 -97593,7014:111:3,-141,1.5,0,0,-0.319776 -97594,7014:110:4,-140.5,1.5,0,0,-0.301175 -97595,7014:110:3,-140,1.5,0,0,-0.28166 -97596,7013:219:4,-139.5,1.5,0,0,-0.288455 -97597,7013:219:3,-139,1.5,0,0,-0.29075 -97598,7013:218:4,-138.5,1.5,0,0,-0.292155 -97599,7013:218:3,-138,1.5,0,0,-0.283903 -97600,7013:217:4,-137.5,1.5,0,0,-0.260795 -97601,7013:217:3,-137,1.5,0,0,-0.253999 -97602,7013:216:4,-136.5,1.5,0,0,-0.249331 -97603,7013:216:3,-136,1.5,0,0,-0.250876 -97604,7013:215:4,-135.5,1.5,0,0,-0.253999 -97605,7013:215:3,-135,1.5,0,0,-0.242891 -97606,7013:114:4,-134.5,1.5,0,0,-0.233779 -97607,7013:114:3,-134,1.5,0,0,-0.227814 -97608,7013:113:4,-133.5,1.5,0,0,-0.227119 -97609,7013:113:3,-133,1.5,0,0,-0.223755 -97610,7013:112:4,-132.5,1.5,0,0,-0.21636 -97611,7013:112:3,-132,1.5,0,0,-0.211259 -97612,7013:111:4,-131.5,1.5,0,0,-0.210724 -97613,7013:111:3,-131,1.5,0,0,-0.218575 -97614,7013:110:4,-130.5,1.5,0,0,-0.229892 -97615,7013:110:3,-130,1.5,0,0,-0.237013 -97616,7012:219:4,-129.5,1.5,0,0,-0.238835 -97617,7012:219:3,-129,1.5,0,0,-0.237733 -97618,7012:218:4,-128.5,1.5,0,0,-0.234138 -97619,7012:218:3,-128,1.5,0,0,-0.236285 -97620,7012:217:4,-127.5,1.5,0,0,-0.242516 -97621,7012:217:3,-127,1.5,0,0,-0.242516 -97622,7012:216:4,-126.5,1.5,0,0,-0.238835 -97623,7012:216:3,-126,1.5,0,0,-0.232004 -97624,7012:215:4,-125.5,1.5,0,0,-0.221142 -97625,7012:215:3,-125,1.5,0,0,-0.209428 -97626,7012:114:4,-124.5,1.5,0,0,-0.203129 -97627,7012:114:3,-124,1.5,0,0,-0.205796 -97628,7012:113:4,-123.5,1.5,0,0,-0.21207 -97629,7012:113:3,-123,1.5,0,0,-0.210987 -97630,7012:112:4,-122.5,1.5,0,0,-0.200139 -97631,7012:112:3,-122,1.5,0,0,-0.193392 -97632,7012:111:4,-121.5,1.5,0,0,-0.190805 -97633,7012:111:3,-121,1.5,0,0,-0.191127 -97634,7012:110:4,-120.5,1.5,0,0,-0.192367 -97635,7012:110:3,-120,1.5,0,0,-0.194872 -97636,7011:219:4,-119.5,1.5,0,0,-0.197203 -97637,7011:219:3,-119,1.5,0,0,-0.196938 -97638,7011:218:4,-118.5,1.5,0,0,-0.195659 -97639,7011:218:3,-118,1.5,0,0,-0.193652 -97640,7011:217:4,-117.5,1.5,0,0,-0.193826 -97641,7011:217:3,-117,1.5,0,0,-0.19544 -97642,7011:216:4,-116.5,1.5,0,0,-0.197026 -97643,7011:216:3,-116,1.5,0,0,-0.197958 -97644,7011:215:4,-115.5,1.5,0,0,-0.19818 -97645,7011:215:3,-115,1.5,0,0,-0.197914 -97646,7011:114:4,-114.5,1.5,0,0,-0.197248 -97647,7011:114:3,-114,1.5,0,0,-0.196938 -97648,7011:113:4,-113.5,1.5,0,0,-0.19707 -97649,7011:113:3,-113,1.5,0,0,-0.197115 -97650,7011:112:4,-112.5,1.5,0,0,-0.197292 -97651,7011:112:3,-112,1.5,0,0,-0.197158 -97652,7011:111:4,-111.5,1.5,0,0,-0.196805 -97653,7011:111:3,-111,1.5,0,0,-0.196452 -97654,7011:110:4,-110.5,1.5,0,0,-0.195748 -97655,7011:110:3,-110,1.5,0,0,-0.19474 -97656,7010:219:4,-109.5,1.5,0,0,-0.193652 -97657,7010:219:3,-109,1.5,0,0,-0.192611 -97658,7010:218:4,-108.5,1.5,0,0,-0.191827 -97659,7010:218:3,-108,1.5,0,0,-0.19094 -97660,7010:217:4,-107.5,1.5,0,0,-0.190083 -97661,7010:217:3,-107,1.5,0,0,-0.189418 -97662,7010:216:4,-106.5,1.5,0,0,-0.188729 -97663,7010:216:3,-106,1.5,0,0,-0.187964 -97664,7010:215:4,-105.5,1.5,0,0,-0.187332 -97665,7010:215:3,-105,1.5,0,0,-0.186652 -97666,7010:114:4,-104.5,1.5,0,0,-0.185949 -97667,7010:114:3,-104,1.5,0,0,-0.185455 -97668,7010:113:4,-103.5,1.5,0,0,-0.185093 -97669,7010:113:3,-103,1.5,0,0,-0.184835 -97670,7010:112:4,-102.5,1.5,0,0,-0.184628 -97671,7010:112:3,-102,1.5,0,0,-0.18437 -97672,7010:111:4,-101.5,1.5,0,0,-0.184242 -97673,7010:111:3,-101,1.5,0,0,-0.184113 -97674,7010:110:4,-100.5,1.5,0,0,-0.184062 -97675,7010:110:3,-100,1.5,0,0,-0.184113 -97676,7009:219:4,-99.5,1.5,0,0,-0.184216 -97677,7009:219:3,-99,1.5,0,0,-0.184242 -97678,7009:218:4,-98.5,1.5,0,0,-0.184267 -97679,7009:218:3,-98,1.5,0,0,-0.18419 -97680,7009:217:4,-97.5,1.5,0,0,-0.184216 -97681,7009:217:3,-97,1.5,0,0,-0.183984 -97682,7009:216:4,-96.5,1.5,0,0,-0.183933 -97683,7009:216:3,-96,1.5,0,0,-0.183984 -97684,7009:215:4,-95.5,1.5,0,0,-0.183882 -97685,7009:215:3,-95,1.5,0,0,-0.183831 -97686,7009:114:4,-94.5,1.5,0,0,-0.183959 -97687,7009:114:3,-94,1.5,0,0,-0.184113 -97688,7009:113:4,-93.5,1.5,0,0,-0.184524 -97689,7009:113:3,-93,1.5,0,0,-0.184989 -97690,7009:112:4,-92.5,1.5,0,0,-0.185352 -97691,7009:112:3,-92,1.5,0,0,-0.185352 -97692,7009:111:4,-91.5,1.5,0,0,-0.184886 -97693,7009:111:3,-91,1.5,0,0,-0.18437 -97694,7009:110:4,-90.5,1.5,0,0,-0.183984 -97695,7009:110:3,-90,1.5,0,0,-0.18401 -97696,7008:219:4,-89.5,1.5,0,0,-0.18437 -97697,7008:219:3,-89,1.5,0,0,-0.184757 -97698,7008:218:4,-88.5,1.5,0,0,-0.185481 -97699,7008:218:3,-88,1.5,0,0,-0.186731 -97700,7008:217:4,-87.5,1.5,0,0,-0.188571 -97701,7008:217:3,-87,1.5,0,0,-0.191262 -97702,7008:216:4,-86.5,1.5,0,0,-0.193609 -97703,7008:216:3,-86,1.5,0,0,-0.195134 -97704,7008:215:4,-85.5,1.5,0,0,-0.198594 -97705,7008:215:3,-85,1.5,0,0,-0.210724 -97706,7008:114:4,-84.5,1.5,0,0,-0.214531 -97707,7008:114:3,-84,1.5,0,0,-0.200799 -97708,7008:113:4,-83.5,1.5,0,0,-0.198092 -97709,7008:113:3,-83,1.5,0,0,-0.20149 -97710,7008:112:4,-82.5,1.5,0,0,-0.214263 -97711,7008:112:3,-82,1.5,0,0,-0.223425 -97712,7008:111:4,-81.5,1.5,0,0,-0.228162 -97713,7008:111:3,-81,1.5,0,0,-0.231294 -97714,7008:110:4,-80.5,1.5,0,0,-0.216986 -97715,7008:110:3,-80,1.5,0,0,-0.203685 -97716,7007:219:4,-79.5,1.5,0,0,-0.19738 -97717,7007:219:3,-79,1.5,0,0,-0.190698 -97718,7007:218:4,-78.5,1.5,0,0,-0.187307 -97719,7007:218:3,-78,1.5,0,0,-0.190859 -97720,7007:217:4,-77.5,1.5,0,0,-0.198541 -97721,7005:113:4,-53.5,1.5,0,0,-0.164378 -97722,7005:113:3,-53,1.5,0,0,-0.152855 -97723,7005:112:4,-52.5,1.5,0,0,-0.172094 -97724,7005:112:3,-52,1.5,0,0,-0.175121 -97725,7005:111:4,-51.5,1.5,0,0,-0.178036 -97726,7005:111:3,-51,1.5,0,0,-0.182019 -97727,7005:110:4,-50.5,1.5,0,0,-0.183856 -97728,7005:110:3,-50,1.5,0,0,-0.185637 -97729,7004:219:4,-49.5,1.5,0,0,-0.185715 -97730,7004:219:3,-49,1.5,0,0,-0.184938 -97731,7004:218:4,-48.5,1.5,0,0,-0.183472 -97732,7004:218:3,-48,1.5,0,0,-0.181689 -97733,7004:217:4,-47.5,1.5,0,0,-0.181689 -97734,7004:217:3,-47,1.5,0,0,-0.183959 -97735,7004:216:4,-46.5,1.5,0,0,-0.185145 -97736,7004:216:3,-46,1.5,0,0,-0.186626 -97737,7004:215:4,-45.5,1.5,0,0,-0.188808 -97738,7004:215:3,-45,1.5,0,0,-0.190431 -97739,7004:114:4,-44.5,1.5,0,0,-0.190993 -97740,7004:114:3,-44,1.5,0,0,-0.19019 -97741,7004:113:4,-43.5,1.5,0,0,-0.188095 -97742,7004:113:3,-43,1.5,0,0,-0.185093 -97743,7004:112:4,-42.5,1.5,0,0,-0.182807 -97744,7004:112:3,-42,1.5,0,0,-0.181867 -97745,7004:111:4,-41.5,1.5,0,0,-0.182298 -97746,7004:111:3,-41,1.5,0,0,-0.1836 -97747,7004:110:4,-40.5,1.5,0,0,-0.184809 -97748,7004:110:3,-40,1.5,0,0,-0.185507 -97749,7003:219:4,-39.5,1.5,0,0,-0.18587 -97750,7003:219:3,-39,1.5,0,0,-0.186574 -97751,7003:218:4,-38.5,1.5,0,0,-0.186783 -97752,7003:218:3,-38,1.5,0,0,-0.186339 -97753,7003:217:4,-37.5,1.5,0,0,-0.185326 -97754,7003:217:3,-37,1.5,0,0,-0.184165 -97755,7003:216:4,-36.5,1.5,0,0,-0.183548 -97756,7003:216:3,-36,1.5,0,0,-0.183343 -97757,7003:215:4,-35.5,1.5,0,0,-0.182961 -97758,7003:215:3,-35,1.5,0,0,-0.183063 -97759,7003:114:4,-34.5,1.5,0,0,-0.183831 -97760,7003:114:3,-34,1.5,0,0,-0.183933 -97761,7003:113:4,-33.5,1.5,0,0,-0.183702 -97762,7003:113:3,-33,1.5,0,0,-0.183343 -97763,7003:112:4,-32.5,1.5,0,0,-0.183011 -97764,7003:112:3,-32,1.5,0,0,-0.182629 -97765,7003:111:4,-31.5,1.5,0,0,-0.182222 -97766,7003:111:3,-31,1.5,0,0,-0.181993 -97767,7003:110:4,-30.5,1.5,0,0,-0.182146 -97768,7003:110:3,-30,1.5,0,0,-0.182273 -97769,7002:219:4,-29.5,1.5,0,0,-0.18268 -97770,7002:219:3,-29,1.5,0,0,-0.182782 -97771,7002:218:4,-28.5,1.5,0,0,-0.183063 -97772,7002:218:3,-28,1.5,0,0,-0.184139 -97773,7002:217:4,-27.5,1.5,0,0,-0.185119 -97774,7002:217:3,-27,1.5,0,0,-0.185897 -97775,7002:216:4,-26.5,1.5,0,0,-0.186652 -97776,7002:216:3,-26,1.5,0,0,-0.18728 -97777,7002:215:4,-25.5,1.5,0,0,-0.187674 -97778,7002:215:3,-25,1.5,0,0,-0.188174 -97779,7002:114:4,-24.5,1.5,0,0,-0.188808 -97780,7002:114:3,-24,1.5,0,0,-0.189498 -97781,7002:113:4,-23.5,1.5,0,0,-0.190244 -97782,7002:113:3,-23,1.5,0,0,-0.19102 -97783,7002:112:4,-22.5,1.5,0,0,-0.191908 -97784,7002:112:3,-22,1.5,0,0,-0.192692 -97785,7002:111:4,-21.5,1.5,0,0,-0.193913 -97786,7002:111:3,-21,1.5,0,0,-0.195222 -97787,7002:110:4,-20.5,1.5,0,0,-0.196849 -97788,7002:110:3,-20,1.5,0,0,-0.198909 -97789,7001:219:4,-19.5,1.5,0,0,-0.206968 -97790,7001:219:3,-19,1.5,0,0,-0.221795 -97791,7001:218:4,-18.5,1.5,0,0,-0.240661 -97792,7001:218:3,-18,1.5,0,0,-0.271205 -97793,7001:217:4,-17.5,1.5,0,0,-0.306568 -97794,7001:217:3,-17,1.5,0,0,-0.328251 -97795,7001:216:4,-16.5,1.5,0,0,-0.338131 -97796,7001:216:3,-16,1.5,0,0,-0.358431 -97797,7001:215:4,-15.5,1.5,0,0,-0.3829 -97798,7001:215:3,-15,1.5,0,0,-0.397647 -97799,7001:114:4,-14.5,1.5,0,0,-0.40387 -97800,7001:114:3,-14,1.5,0,0,-0.418213 -97801,7001:113:4,-13.5,1.5,0,0,-0.442528 -97802,7001:113:3,-13,1.5,0,0,-0.476491 -97803,7001:112:4,-12.5,1.5,0,0,-0.4791 -97804,7001:112:3,-12,1.5,0,0,-0.481728 -97805,7001:111:4,-11.5,1.5,0,0,-0.527666 -97806,7001:111:3,-11,1.5,0,0,-0.656102 -97807,7001:110:4,-10.5,1.5,0,0,-0.810021 -97808,1000:110:4,0,1.5,0,0,-1.48672 -97809,1000:110:4,0.5,1.5,0,0,-1.19244 -97810,1000:111:3,1,1.5,0,0,-8.21955 -97811,1000:111:4,1.5,1.5,0,0,49.6485 -97812,1000:112:3,2,1.5,0,0,7.55344 -97813,1000:112:4,2.5,1.5,0,0,3.11502 -97814,1000:113:3,3,1.5,0,0,2.37212 -97815,1000:113:4,3.5,1.5,0,0,2.17693 -97816,1000:114:3,4,1.5,0,0,2.18193 -97817,1000:114:4,4.5,1.5,0,0,2.31733 -97818,1004:219:3,49,1.5,0,0,-0.185015 -97819,1004:219:4,49.5,1.5,0,0,-0.186783 -97820,1005:110:3,50,1.5,0,0,-0.186678 -97821,1005:110:4,50.5,1.5,0,0,-0.188333 -97822,1005:111:3,51,1.5,0,0,-0.188491 -97823,1005:111:4,51.5,1.5,0,0,-0.1891 -97824,1005:112:3,52,1.5,0,0,-0.192529 -97825,1005:112:4,52.5,1.5,0,0,-0.195968 -97826,1005:113:3,53,1.5,0,0,-0.198359 -97827,1005:113:4,53.5,1.5,0,0,-0.211805 -97828,1005:114:3,54,1.5,0,0,-0.246659 -97829,1005:114:4,54.5,1.5,0,0,-0.311556 -97830,1005:215:3,55,1.5,0,0,-0.36759 -97831,1005:215:4,55.5,1.5,0,0,-0.418213 -97832,1005:216:3,56,1.5,0,0,-0.489754 -97833,1005:216:4,56.5,1.5,0,0,-0.554442 -97834,1005:217:3,57,1.5,0,0,-0.554442 -97835,1005:217:4,57.5,1.5,0,0,-0.567415 -97836,1005:218:3,58,1.5,0,0,-0.583095 -97837,1005:218:4,58.5,1.5,0,0,-0.527666 -97838,1005:219:3,59,1.5,0,0,-0.452146 -97839,1005:219:4,59.5,1.5,0,0,-0.5073 -97840,1006:110:3,60,1.5,0,0,-0.717269 -97841,1006:110:4,60.5,1.5,0,0,-0.619982 -97842,1006:111:3,61,1.5,0,0,-0.457032 -97843,1006:111:4,61.5,1.5,0,0,-0.360236 -97844,1006:112:3,62,1.5,0,0,-0.334236 -97845,1006:112:4,62.5,1.5,0,0,-0.344343 -97846,1006:113:3,63,1.5,0,0,-0.369454 -97847,1006:113:4,63.5,1.5,0,0,-0.3895 -97848,1006:114:3,64,1.5,0,0,-0.41967 -97849,1006:114:4,64.5,1.5,0,0,-0.457032 -97850,1006:215:3,65,1.5,0,0,-0.487971 -97851,1006:215:4,65.5,1.5,0,0,-0.513022 -97852,1006:216:3,66,1.5,0,0,-0.557639 -97853,1006:216:4,66.5,1.5,0,0,-0.640273 -97854,1006:217:3,67,1.5,0,0,-0.658814 -97855,1006:217:4,67.5,1.5,0,0,-0.688039 -97856,1006:218:3,68,1.5,0,0,-0.748484 -97857,1006:218:4,68.5,1.5,0,0,-0.757103 -97858,1006:219:3,69,1.5,0,0,-0.879166 -97859,1006:219:4,69.5,1.5,0,0,-0.99075 -97860,1007:110:3,70,1.5,0,0,-1.08443 -97861,1007:110:4,70.5,1.5,0,0,-1.08884 -97862,1007:111:3,71,1.5,0,0,-1.03395 -97863,1007:111:4,71.5,1.5,0,0,-0.994479 -97864,1007:112:3,72,1.5,0,0,-0.901879 -97865,1007:112:4,72.5,1.5,0,0,-0.761432 -97866,1007:113:4,73.5,1.5,0,0,-0.653446 -97867,1007:114:3,74,1.5,0,0,-0.567415 -97868,1007:114:4,74.5,1.5,0,0,-0.483508 -97869,1007:215:3,75,1.5,0,0,-0.43628 -97870,1007:215:4,75.5,1.5,0,0,-0.412407 -97871,1007:216:3,76,1.5,0,0,-0.385527 -97872,1007:216:4,76.5,1.5,0,0,-0.357222 -97873,1007:217:3,77,1.5,0,0,-0.338131 -97874,1007:217:4,77.5,1.5,0,0,-0.333145 -97875,1007:218:3,78,1.5,0,0,-0.345498 -97876,1007:218:4,78.5,1.5,0,0,-0.341496 -97877,1007:219:3,79,1.5,0,0,-0.303118 -97878,1007:219:4,79.5,1.5,0,0,-0.240301 -97879,1008:110:3,80,1.5,0,0,-0.19917 -97880,1008:110:4,80.5,1.5,0,0,-0.19654 -97881,1008:111:3,81,1.5,0,0,-0.193609 -97882,1008:111:4,81.5,1.5,0,0,-0.191449 -97883,1008:112:3,82,1.5,0,0,-0.190324 -97884,1008:112:4,82.5,1.5,0,0,-0.242153 -97885,1008:113:3,83,1.5,0,0,-0.498889 -97886,1008:113:4,83.5,1.5,0,0,-0.561951 -97887,1008:114:3,84,1.5,0,0,-0.585399 -97888,1008:114:4,84.5,1.5,0,0,-0.58652 -97889,1008:215:3,85,1.5,0,0,-0.568523 -97890,1008:215:4,85.5,1.5,0,0,-0.53571 -97891,1008:216:3,86,1.5,0,0,-0.509207 -97892,1008:216:4,86.5,1.5,0,0,-0.488875 -97893,1008:217:3,87,1.5,0,0,-0.470441 -97894,1008:217:4,87.5,1.5,0,0,-0.457032 -97895,1008:218:3,88,1.5,0,0,-0.448918 -97896,1008:218:4,88.5,1.5,0,0,-0.429383 -97897,1008:219:3,89,1.5,0,0,-0.38354 -97898,1008:219:4,89.5,1.5,0,0,-0.361458 -97899,1009:110:3,90,1.5,0,0,-0.34492 -97900,1009:110:4,90.5,1.5,0,0,-0.35662 -97901,1009:111:3,91,1.5,0,0,-0.370084 -97902,1009:111:4,91.5,1.5,0,0,-0.400405 -97903,1009:112:3,92,1.5,0,0,-0.43628 -97904,1009:112:4,92.5,1.5,0,0,-0.478219 -97905,1009:113:3,93,1.5,0,0,-0.472167 -97906,1009:113:4,93.5,1.5,0,0,-0.457032 -97907,1009:114:3,94,1.5,0,0,-0.496136 -97908,1009:114:4,94.5,1.5,0,0,-0.587679 -97909,1009:215:3,95,1.5,0,0,-0.830247 -97910,1009:215:4,95.5,1.5,0,0,-0.830247 -97911,1009:216:3,96,1.5,0,0,-0.566343 -97912,1009:216:4,96.5,1.5,0,0,-0.392185 -97913,1009:217:3,97,1.5,0,0,-0.35424 -97914,1009:217:4,97.5,1.5,0,0,-0.359019 -97915,1009:218:3,98,1.5,0,0,-0.407395 -97916,1009:218:4,98.5,1.5,0,0,-0.544967 -97917,1009:219:3,99,1.5,0,0,-0.626236 -97918,1009:219:4,99.5,1.5,0,0,-0.558721 -97919,1010:110:3,100,1.5,0,0,-0.552335 -97920,1010:110:4,100.5,1.5,0,0,-0.628738 -97921,1010:113:3,103,1.5,0,0,-0.192016 -97922,1010:113:4,103.5,1.5,0,0,-0.19509 -97923,1010:114:3,104,1.5,0,0,-0.188359 -97924,1010:114:4,104.5,1.5,0,0,-0.182986 -97925,1010:215:3,105,1.5,0,0,-0.1824 -97926,1010:215:4,105.5,1.5,0,0,-0.182731 -97927,1010:216:3,106,1.5,0,0,-0.180906 -97928,1010:216:4,106.5,1.5,0,0,-0.177962 -97929,1010:217:3,107,1.5,0,0,-0.174516 -97930,1010:217:4,107.5,1.5,0,0,-0.17245 -97931,1010:218:3,108,1.5,0,0,-0.176903 -97932,1010:218:4,108.5,1.5,0,0,-0.185274 -97933,1010:219:3,109,1.5,0,0,-0.2003 -97934,1010:219:4,109.5,1.5,0,0,-0.222449 -97935,1011:110:3,110,1.5,0,0,-0.216043 -97936,1011:110:4,110.5,1.5,0,0,-0.246659 -97937,1011:111:3,111,1.5,0,0,-0.319251 -97938,1011:111:4,111.5,1.5,0,0,-0.385527 -97939,1011:112:3,112,1.5,0,0,-0.467894 -97940,1011:112:4,112.5,1.5,0,0,-0.533699 -97941,1011:113:3,113,1.5,0,0,-0.58652 -97942,1011:113:4,113.5,1.5,0,0,-0.70113 -97943,1011:114:3,114,1.5,0,0,-0.790583 -97944,1011:114:4,114.5,1.5,0,0,-1.09774 -97945,1011:215:3,115,1.5,0,0,-1.37263 -97946,1011:215:4,115.5,1.5,0,0,-1.32377 -97947,1011:216:3,116,1.5,0,0,-1.64122 -97948,1011:219:3,119,1.5,0,0,-0.532682 -97949,1011:219:4,119.5,1.5,0,0,-0.530655 -97950,1012:110:3,120,1.5,0,0,-0.471303 -97951,1012:110:4,120.5,1.5,0,0,-0.38093 -97952,1012:111:3,121,1.5,0,0,-0.225747 -97953,1012:111:4,121.5,1.5,0,0,-0.199653 -97954,1012:112:3,122,1.5,0,0,-0.322914 -97955,1012:112:4,122.5,1.5,0,0,-0.329867 -97956,1012:113:3,123,1.5,0,0,-0.353662 -97957,1012:113:4,123.5,1.5,0,0,-0.343768 -97958,1012:114:3,124,1.5,0,0,-0.31666 -97959,1012:114:4,124.5,1.5,0,0,-0.275496 -97960,1012:215:3,125,1.5,0,0,-0.19335 -97961,1012:216:3,126,1.5,0,0,-0.30607 -97962,1012:216:4,126.5,1.5,0,0,-0.318728 -97963,1012:217:4,127.5,1.5,0,0,-0.707056 -97964,1012:218:3,128,1.5,0,0,-1.1021 -97965,1012:218:4,128.5,1.5,0,0,-1.32978 -97966,1012:219:3,129,1.5,0,0,-1.8336 -97967,1012:219:4,129.5,1.5,0,0,-2.96716 -97968,1013:110:3,130,1.5,0,0,-2.7742 -97969,1013:110:4,130.5,1.5,0,0,-2.03014 -97970,1013:111:3,131,1.5,0,0,-1.61649 -97971,1013:111:4,131.5,1.5,0,0,-1.5157 -97972,1013:112:3,132,1.5,0,0,-1.28898 -97973,1013:112:4,132.5,1.5,0,0,-1.1202 -97974,1013:113:3,133,1.5,0,0,-1.20251 -97975,1013:113:4,133.5,1.5,0,0,-1.6245 -97976,1013:114:3,134,1.5,0,0,-2.89986 -97977,1013:114:4,134.5,1.5,0,0,-8.85178 -97978,1013:215:3,135,1.5,0,0,45.362 -97979,1013:215:4,135.5,1.5,0,0,25.7098 -97980,1013:216:3,136,1.5,0,0,28.4486 -97981,1013:216:4,136.5,1.5,0,0,10.9634 -97982,1013:217:3,137,1.5,0,0,7.02487 -97983,1013:217:4,137.5,1.5,0,0,8.17922 -97984,1013:218:3,138,1.5,0,0,-27.5732 -97985,1013:218:4,138.5,1.5,0,0,-2.16801 -97986,1013:219:3,139,1.5,0,0,-1.23925 -97987,1013:219:4,139.5,1.5,0,0,-1.71042 -97988,1014:110:3,140,1.5,0,0,-2.96716 -97989,1014:110:4,140.5,1.5,0,0,-3.74949 -97990,1014:111:3,141,1.5,0,0,-4.08368 -97991,1014:111:4,141.5,1.5,0,0,-4.7245 -97992,1014:112:3,142,1.5,0,0,-5.79561 -97993,1014:112:4,142.5,1.5,0,0,-7.93871 -97994,1014:113:3,143,1.5,0,0,-14.1166 -97995,1014:113:4,143.5,1.5,0,0,-35.3361 -97996,1014:114:3,144,1.5,0,0,114.146 -97997,1014:114:4,144.5,1.5,0,0,24.5323 -97998,1014:215:3,145,1.5,0,0,15.0827 -97999,1014:215:4,145.5,1.5,0,0,10.7552 -98000,1014:216:3,146,1.5,0,0,10.1833 -98001,1014:216:4,146.5,1.5,0,0,10.7552 -98002,1014:217:3,147,1.5,0,0,11.1801 -98004,1014:218:3,148,1.5,0,0,16.4219 -98005,1014:218:4,148.5,1.5,0,0,20.7737 -98006,1014:219:3,149,1.5,0,0,21.6052 -98007,1014:219:4,149.5,1.5,0,0,17.4548 -98008,1015:110:3,150,1.5,0,0,10.9634 -98009,1015:110:4,150.5,1.5,0,0,7.27881 -98010,1015:111:3,151,1.5,0,0,5.93563 -98011,1015:111:4,151.5,1.5,0,0,5.9932 -98012,1015:112:3,152,1.5,0,0,7.02487 -98013,1015:112:4,152.5,1.5,0,0,9.357 -98014,1015:113:3,153,1.5,0,0,13.2838 -98015,1015:113:4,153.5,1.5,0,0,16.4219 -98016,1015:114:3,154,1.5,0,0,28.4486 -98017,1015:114:4,154.5,1.5,0,0,-6.96957 -98018,1015:215:3,155,1.5,0,0,-4.47573 -98019,1015:215:4,155.5,1.5,0,0,-4.94202 -98020,1015:216:3,156,1.5,0,0,-6.11512 -98021,1015:216:4,156.5,1.5,0,0,-8.21955 -98022,1015:217:3,157,1.5,0,0,-17.0994 -98023,1015:217:4,157.5,1.5,0,0,337.61 -98024,1015:218:3,158,1.5,0,0,45.362 -98025,1015:218:4,158.5,1.5,0,0,69.1201 -98026,1015:219:3,159,1.5,0,0,114.146 -98027,1015:219:4,159.5,1.5,0,0,-94.5052 -98028,1016:110:3,160,1.5,0,0,-38.0195 -98029,1016:110:4,160.5,1.5,0,0,-26.1207 -98030,1016:111:3,161,1.5,0,0,-31.0123 -98031,1016:111:4,161.5,1.5,0,0,-44.6839 -98032,1016:112:3,162,1.5,0,0,-23.6587 -98033,1016:112:4,162.5,1.5,0,0,-16.5176 -98034,1016:113:3,163,1.5,0,0,-10.6543 -98035,1016:113:4,163.5,1.5,0,0,-7.42451 -98036,1016:114:3,164,1.5,0,0,-5.43688 -98037,1016:114:4,164.5,1.5,0,0,-4.38224 -98038,1016:215:3,165,1.5,0,0,-3.8549 -98039,1016:215:4,165.5,1.5,0,0,-3.7844 -98040,1016:216:3,166,1.5,0,0,-3.92893 -98041,1016:216:4,166.5,1.5,0,0,-4.29357 -98042,1016:217:3,167,1.5,0,0,-5.30386 -98043,1016:217:4,167.5,1.5,0,0,-7.42451 -98044,1016:218:3,168,1.5,0,0,-12.9803 -98045,1016:218:4,168.5,1.5,0,0,-22.5753 -98046,1016:219:3,169,1.5,0,0,-15.4623 -98047,1016:219:4,169.5,1.5,0,0,-2.83582 -98048,1017:110:3,170,1.5,0,0,-2.11607 -98049,1017:110:4,170.5,1.5,0,0,-1.64122 -98050,1017:111:3,171,1.5,0,0,-1.90598 -98051,1017:111:4,171.5,1.5,0,0,-5.50572 -98052,1017:112:3,172,1.5,0,0,14.6812 -98053,1017:112:4,172.5,1.5,0,0,6.86436 -98054,1017:113:3,173,1.5,0,0,5.00119 -98055,1017:113:4,173.5,1.5,0,0,5.20333 -98056,1017:114:3,174,1.5,0,0,9.357 -98057,1017:114:4,174.5,1.5,0,0,-14.5436 -98058,1017:215:3,175,1.5,0,0,-4.16587 -98059,1017:215:4,175.5,1.5,0,0,-3.7844 -98060,1017:216:3,176,1.5,0,0,-3.52225 -98061,1017:216:4,176.5,1.5,0,0,-3.26349 -98062,1017:217:3,177,1.5,0,0,-3.10876 -98063,1017:217:4,177.5,1.5,0,0,-2.94442 -98064,1017:218:3,178,1.5,0,0,-2.73399 -98065,1017:218:4,178.5,1.5,0,0,-2.48013 -98066,1017:219:3,179,1.5,0,0,-2.26457 -98067,1017:219:4,179.5,1.5,0,0,-2.07856 -98068,1018:110:3,180,1.5,0,0,-1.9168 -98069,7018:120:1,-180,2,0,0,-1.08005 -98070,7017:229:2,-179.5,2,0,0,-1.13419 -98071,7017:229:1,-179,2,0,0,-1.13876 -98072,7017:228:2,-178.5,2,0,0,-1.0715 -98073,7017:228:1,-178,2,0,0,-0.957335 -98074,7017:227:2,-177.5,2,0,0,-0.818638 -98075,7017:227:1,-177,2,0,0,-0.690938 -98076,7017:226:2,-176.5,2,0,0,-0.611356 -98077,7017:226:1,-176,2,0,0,-0.558721 -98078,7017:225:2,-175.5,2,0,0,-0.520767 -98079,7017:225:1,-175,2,0,0,-0.500754 -98080,7017:124:2,-174.5,2,0,0,-0.484402 -98081,7017:124:1,-174,2,0,0,-0.474744 -98082,7017:123:2,-173.5,2,0,0,-0.471303 -98083,7017:123:1,-173,2,0,0,-0.475617 -98084,7017:122:2,-172.5,2,0,0,-0.487068 -98085,7017:122:1,-172,2,0,0,-0.492488 -98086,7017:121:2,-171.5,2,0,0,-0.482617 -98087,7017:121:1,-171,2,0,0,-0.490663 -98088,7017:120:2,-170.5,2,0,0,-0.483508 -98089,7017:120:1,-170,2,0,0,-0.4791 -98090,7016:229:2,-169.5,2,0,0,-0.471303 -98091,7016:229:1,-169,2,0,0,-0.445696 -98092,7016:228:2,-168.5,2,0,0,-0.43628 -98093,7016:228:1,-168,2,0,0,-0.437061 -98094,7016:227:2,-167.5,2,0,0,-0.418952 -98095,7016:227:1,-167,2,0,0,-0.401782 -98096,7016:226:2,-166.5,2,0,0,-0.396268 -98097,7016:226:1,-166,2,0,0,-0.394894 -98098,7016:225:2,-165.5,2,0,0,-0.399708 -98099,7016:225:1,-165,2,0,0,-0.405284 -98100,7016:124:2,-164.5,2,0,0,-0.412407 -98101,7016:124:1,-164,2,0,0,-0.430147 -98102,7016:123:2,-163.5,2,0,0,-0.443323 -98103,7016:123:1,-163,2,0,0,-0.438628 -98104,7016:122:2,-162.5,2,0,0,-0.429383 -98105,7016:122:1,-162,2,0,0,-0.432428 -98106,7016:121:2,-161.5,2,0,0,-0.432428 -98107,7016:121:1,-161,2,0,0,-0.430147 -98108,7016:120:2,-160.5,2,0,0,-0.431682 -98109,7016:120:1,-160,2,0,0,-0.435502 -98110,7015:229:2,-159.5,2,0,0,-0.444919 -98111,7015:229:1,-159,2,0,0,-0.456204 -98112,7015:228:2,-158.5,2,0,0,-0.461174 -98113,7015:228:1,-158,2,0,0,-0.460337 -98114,7015:227:2,-157.5,2,0,0,-0.45133 -98115,7015:227:1,-157,2,0,0,-0.441759 -98116,7015:226:2,-156.5,2,0,0,-0.432428 -98117,7015:226:1,-156,2,0,0,-0.417476 -98118,7015:225:2,-155.5,2,0,0,-0.405284 -98119,7015:225:1,-155,2,0,0,-0.402483 -98120,7015:124:2,-154.5,2,0,0,-0.401782 -98121,7015:124:1,-154,2,0,0,-0.399708 -98122,7015:123:2,-153.5,2,0,0,-0.400405 -98123,7015:123:1,-153,2,0,0,-0.405284 -98124,7015:122:2,-152.5,2,0,0,-0.409543 -98125,7015:122:1,-152,2,0,0,-0.41024 -98126,7015:121:2,-151.5,2,0,0,-0.41024 -98127,7015:121:1,-151,2,0,0,-0.405284 -98128,7015:120:2,-150.5,2,0,0,-0.396957 -98129,7015:120:1,-150,2,0,0,-0.387507 -98130,7014:229:2,-149.5,2,0,0,-0.375779 -98131,7014:229:1,-149,2,0,0,-0.362666 -98132,7014:228:2,-148.5,2,0,0,-0.353662 -98133,7014:228:1,-148,2,0,0,-0.348387 -98134,7014:227:2,-147.5,2,0,0,-0.345498 -98135,7014:227:1,-147,2,0,0,-0.344343 -98136,7014:226:2,-146.5,2,0,0,-0.345498 -98137,7014:226:1,-146,2,0,0,-0.347803 -98138,7014:225:2,-145.5,2,0,0,-0.349541 -98139,7014:225:1,-145,2,0,0,-0.349541 -98140,7014:124:2,-144.5,2,0,0,-0.346077 -98141,7014:124:1,-144,2,0,0,-0.340944 -98142,7014:123:2,-143.5,2,0,0,-0.334791 -98143,7014:123:1,-143,2,0,0,-0.330413 -98144,7014:122:2,-142.5,2,0,0,-0.328251 -98145,7014:122:1,-142,2,0,0,-0.325569 -98146,7014:121:2,-141.5,2,0,0,-0.325032 -98147,7014:121:1,-141,2,0,0,-0.323446 -98148,7014:120:2,-140.5,2,0,0,-0.320812 -98149,7014:120:1,-140,2,0,0,-0.316142 -98150,7013:229:2,-139.5,2,0,0,-0.313582 -98151,7013:229:1,-139,2,0,0,-0.312065 -98152,7013:228:2,-138.5,2,0,0,-0.308554 -98153,7013:228:1,-138,2,0,0,-0.297334 -98154,7013:227:2,-137.5,2,0,0,-0.286612 -98155,7013:227:1,-137,2,0,0,-0.281211 -98156,7013:226:2,-136.5,2,0,0,-0.279438 -98157,7013:226:1,-136,2,0,0,-0.272482 -98158,7013:225:2,-135.5,2,0,0,-0.267812 -98159,7013:225:1,-135,2,0,0,-0.262026 -98160,7013:124:2,-134.5,2,0,0,-0.255191 -98161,7013:124:1,-134,2,0,0,-0.246659 -98162,7013:123:2,-133.5,2,0,0,-0.237013 -98163,7013:123:1,-133,2,0,0,-0.22885 -98164,7013:122:2,-132.5,2,0,0,-0.223096 -98165,7013:122:1,-132,2,0,0,-0.221468 -98166,7013:121:2,-131.5,2,0,0,-0.223755 -98167,7013:121:1,-131,2,0,0,-0.227814 -98168,7013:120:2,-130.5,2,0,0,-0.229892 -98169,7013:120:1,-130,2,0,0,-0.229892 -98170,7012:229:2,-129.5,2,0,0,-0.234487 -98171,7012:229:1,-129,2,0,0,-0.238467 -98172,7012:228:2,-128.5,2,0,0,-0.239931 -98173,7012:228:1,-128,2,0,0,-0.237733 -98174,7012:227:2,-127.5,2,0,0,-0.223755 -98175,7012:227:1,-127,2,0,0,-0.212892 -98176,7012:226:2,-126.5,2,0,0,-0.203498 -98177,7012:226:1,-126,2,0,0,-0.201668 -98178,7012:225:2,-125.5,2,0,0,-0.203685 -98179,7012:225:1,-125,2,0,0,-0.210724 -98180,7012:124:2,-124.5,2,0,0,-0.213986 -98181,7012:124:1,-124,2,0,0,-0.210987 -98182,7012:123:2,-123.5,2,0,0,-0.205991 -98183,7012:123:1,-123,2,0,0,-0.201139 -98184,7012:122:2,-122.5,2,0,0,-0.198002 -98185,7012:122:1,-122,2,0,0,-0.196407 -98186,7012:121:2,-121.5,2,0,0,-0.194915 -98187,7012:121:1,-121,2,0,0,-0.193913 -98188,7012:120:2,-120.5,2,0,0,-0.19374 -98189,7012:120:1,-120,2,0,0,-0.19461 -98190,7011:229:2,-119.5,2,0,0,-0.195792 -98191,7011:229:1,-119,2,0,0,-0.196805 -98192,7011:228:2,-118.5,2,0,0,-0.197158 -98193,7011:228:1,-118,2,0,0,-0.197958 -98194,7011:227:2,-117.5,2,0,0,-0.200139 -98195,7011:227:1,-117,2,0,0,-0.204063 -98196,7011:226:2,-116.5,2,0,0,-0.207397 -98197,7011:226:1,-116,2,0,0,-0.208658 -98198,7011:225:2,-115.5,2,0,0,-0.205991 -98199,7011:225:1,-115,2,0,0,-0.203498 -98200,7011:124:2,-114.5,2,0,0,-0.20257 -98201,7011:124:1,-114,2,0,0,-0.202943 -98202,7011:123:2,-113.5,2,0,0,-0.203129 -98203,7011:123:1,-113,2,0,0,-0.203129 -98204,7011:122:2,-112.5,2,0,0,-0.203873 -98205,7011:122:1,-112,2,0,0,-0.20257 -98206,7011:121:2,-111.5,2,0,0,-0.200139 -98207,7011:121:1,-111,2,0,0,-0.198449 -98208,7011:120:2,-110.5,2,0,0,-0.197203 -98209,7011:120:1,-110,2,0,0,-0.195659 -98210,7010:229:2,-109.5,2,0,0,-0.194087 -98211,7010:229:1,-109,2,0,0,-0.192584 -98212,7010:228:2,-108.5,2,0,0,-0.191504 -98213,7010:228:1,-108,2,0,0,-0.190378 -98214,7010:227:2,-107.5,2,0,0,-0.189152 -98215,7010:227:1,-107,2,0,0,-0.188042 -98216,7010:226:2,-106.5,2,0,0,-0.187123 -98217,7010:226:1,-106,2,0,0,-0.186287 -98218,7010:225:2,-105.5,2,0,0,-0.185352 -98219,7010:225:1,-105,2,0,0,-0.184679 -98220,7010:124:2,-104.5,2,0,0,-0.184242 -98221,7010:124:1,-104,2,0,0,-0.183907 -98222,7010:123:2,-103.5,2,0,0,-0.183523 -98223,7010:123:1,-103,2,0,0,-0.183267 -98224,7010:122:2,-102.5,2,0,0,-0.183191 -98225,7010:122:1,-102,2,0,0,-0.183139 -98226,7010:121:2,-101.5,2,0,0,-0.183063 -98227,7010:121:1,-101,2,0,0,-0.183063 -98228,7010:120:2,-100.5,2,0,0,-0.183241 -98229,7010:120:1,-100,2,0,0,-0.183651 -98230,7009:229:2,-99.5,2,0,0,-0.183959 -98231,7009:229:1,-99,2,0,0,-0.184216 -98232,7009:228:2,-98.5,2,0,0,-0.184318 -98233,7009:228:1,-98,2,0,0,-0.184267 -98234,7009:227:2,-97.5,2,0,0,-0.184087 -98235,7009:227:1,-97,2,0,0,-0.183856 -98236,7009:226:2,-96.5,2,0,0,-0.1836 -98237,7009:226:1,-96,2,0,0,-0.183548 -98238,7009:225:2,-95.5,2,0,0,-0.18342 -98239,7009:225:1,-95,2,0,0,-0.183395 -98240,7009:124:2,-94.5,2,0,0,-0.1836 -98241,7009:124:1,-94,2,0,0,-0.18401 -98242,7009:123:2,-93.5,2,0,0,-0.184705 -98243,7009:123:1,-93,2,0,0,-0.185404 -98244,7009:122:2,-92.5,2,0,0,-0.186053 -98245,7009:122:1,-92,2,0,0,-0.186574 -98246,7009:121:2,-91.5,2,0,0,-0.186731 -98247,7009:121:1,-91,2,0,0,-0.186705 -98248,7009:120:2,-90.5,2,0,0,-0.186783 -98249,7009:120:1,-90,2,0,0,-0.187018 -98250,7008:229:2,-89.5,2,0,0,-0.187412 -98251,7008:229:1,-89,2,0,0,-0.18799 -98252,7008:228:2,-88.5,2,0,0,-0.188676 -98253,7008:228:1,-88,2,0,0,-0.189711 -98254,7008:227:2,-87.5,2,0,0,-0.191665 -98255,7008:227:1,-87,2,0,0,-0.195047 -98256,7008:226:2,-86.5,2,0,0,-0.205991 -98257,7008:226:1,-86,2,0,0,-0.234138 -98258,7008:225:2,-85.5,2,0,0,-0.274201 -98259,7008:225:1,-85,2,0,0,-0.31564 -98260,7008:124:2,-84.5,2,0,0,-0.356036 -98261,7008:124:1,-84,2,0,0,-0.385527 -98262,7008:123:2,-83.5,2,0,0,-0.422626 -98263,7008:123:1,-83,2,0,0,-0.422626 -98264,7008:122:2,-82.5,2,0,0,-0.426365 -98265,7008:122:1,-82,2,0,0,-0.410961 -98266,7008:121:2,-81.5,2,0,0,-0.394894 -98267,7008:121:1,-81,2,0,0,-0.418213 -98268,7008:120:2,-80.5,2,0,0,-0.440967 -98269,7008:120:1,-80,2,0,0,-0.334791 -98270,7007:229:2,-79.5,2,0,0,-0.30361 -98271,7007:229:1,-79,2,0,0,-0.250876 -98272,7007:228:2,-78.5,2,0,0,-0.247798 -98273,7007:228:1,-78,2,0,0,-0.295437 -98274,7005:227:2,-57.5,2,0,0,-0.181867 -98275,7005:227:1,-57,2,0,0,-0.165761 -98276,7005:226:2,-56.5,2,0,0,-0.157914 -98277,7005:226:1,-56,2,0,0,-0.156136 -98278,7005:225:2,-55.5,2,0,0,-0.155478 -98279,7005:225:1,-55,2,0,0,-0.156264 -98280,7005:124:2,-54.5,2,0,0,-0.155817 -98281,7005:124:1,-54,2,0,0,-0.159847 -98282,7005:123:2,-53.5,2,0,0,-0.16873 -98283,7005:123:1,-53,2,0,0,-0.174177 -98284,7005:122:2,-52.5,2,0,0,-0.17651 -98285,7005:122:1,-52,2,0,0,-0.18068 -98286,7005:121:2,-51.5,2,0,0,-0.182654 -98287,7005:121:1,-51,2,0,0,-0.183959 -98288,7005:120:2,-50.5,2,0,0,-0.184524 -98289,7005:120:1,-50,2,0,0,-0.184705 -98290,7004:229:2,-49.5,2,0,0,-0.184087 -98291,7004:229:1,-49,2,0,0,-0.182884 -98292,7004:228:2,-48.5,2,0,0,-0.181841 -98293,7004:228:1,-48,2,0,0,-0.181715 -98294,7004:227:2,-47.5,2,0,0,-0.182756 -98295,7004:227:1,-47,2,0,0,-0.182552 -98296,7004:226:2,-46.5,2,0,0,-0.183651 -98297,7004:226:1,-46,2,0,0,-0.184113 -98298,7004:225:2,-45.5,2,0,0,-0.185689 -98299,7004:225:1,-45,2,0,0,-0.187228 -98300,7004:124:2,-44.5,2,0,0,-0.18799 -98301,7004:124:1,-44,2,0,0,-0.187149 -98302,7004:123:2,-43.5,2,0,0,-0.184602 -98303,7004:123:1,-43,2,0,0,-0.181487 -98304,7004:122:2,-42.5,2,0,0,-0.179977 -98305,7004:122:1,-42,2,0,0,-0.179552 -98306,7004:121:2,-41.5,2,0,0,-0.179652 -98307,7004:121:1,-41,2,0,0,-0.180655 -98308,7004:120:2,-40.5,2,0,0,-0.182095 -98309,7004:120:1,-40,2,0,0,-0.183113 -98310,7003:229:2,-39.5,2,0,0,-0.183882 -98311,7003:229:1,-39,2,0,0,-0.184165 -98312,7003:228:2,-38.5,2,0,0,-0.183882 -98313,7003:228:1,-38,2,0,0,-0.182782 -98314,7003:227:2,-37.5,2,0,0,-0.180932 -98315,7003:227:1,-37,2,0,0,-0.179029 -98316,7003:226:2,-36.5,2,0,0,-0.178457 -98317,7003:226:1,-36,2,0,0,-0.178531 -98318,7003:225:2,-35.5,2,0,0,-0.179153 -98319,7003:225:1,-35,2,0,0,-0.179852 -98320,7003:124:2,-34.5,2,0,0,-0.180454 -98321,7003:124:1,-34,2,0,0,-0.180554 -98322,7003:123:2,-33.5,2,0,0,-0.180077 -98323,7003:123:1,-33,2,0,0,-0.179302 -98324,7003:122:2,-32.5,2,0,0,-0.178655 -98325,7003:122:1,-32,2,0,0,-0.178531 -98326,7003:121:2,-31.5,2,0,0,-0.178631 -98327,7003:121:1,-31,2,0,0,-0.178482 -98328,7003:120:2,-30.5,2,0,0,-0.178655 -98329,7003:120:1,-30,2,0,0,-0.178929 -98330,7002:229:2,-29.5,2,0,0,-0.17878 -98331,7002:229:1,-29,2,0,0,-0.17873 -98332,7002:228:2,-28.5,2,0,0,-0.17873 -98333,7002:228:1,-28,2,0,0,-0.179927 -98334,7002:227:2,-27.5,2,0,0,-0.181512 -98335,7002:227:1,-27,2,0,0,-0.182961 -98336,7002:226:2,-26.5,2,0,0,-0.183984 -98337,7002:226:1,-26,2,0,0,-0.184576 -98338,7002:225:2,-25.5,2,0,0,-0.184989 -98339,7002:225:1,-25,2,0,0,-0.185196 -98340,7002:124:2,-24.5,2,0,0,-0.185585 -98341,7002:124:1,-24,2,0,0,-0.186339 -98342,7002:123:2,-23.5,2,0,0,-0.187385 -98343,7002:123:1,-23,2,0,0,-0.188596 -98344,7002:122:2,-22.5,2,0,0,-0.189844 -98345,7002:122:1,-22,2,0,0,-0.191047 -98346,7002:121:2,-21.5,2,0,0,-0.192313 -98347,7002:121:1,-21,2,0,0,-0.194043 -98348,7002:120:2,-20.5,2,0,0,-0.196452 -98349,7002:120:1,-20,2,0,0,-0.199812 -98350,7001:229:2,-19.5,2,0,0,-0.217944 -98351,7001:229:1,-19,2,0,0,-0.247798 -98352,7001:228:2,-18.5,2,0,0,-0.275496 -98353,7001:228:1,-18,2,0,0,-0.30607 -98354,7001:227:2,-17.5,2,0,0,-0.353662 -98355,7001:227:1,-17,2,0,0,-0.407395 -98356,7001:226:2,-16.5,2,0,0,-0.464518 -98357,7001:226:1,-16,2,0,0,-0.523704 -98358,7001:225:2,-15.5,2,0,0,-0.570748 -98359,7001:225:1,-15,2,0,0,-0.567415 -98360,7001:124:2,-14.5,2,0,0,-0.552335 -98361,7001:124:1,-14,2,0,0,-0.637706 -98362,7001:123:2,-13.5,2,0,0,-0.679488 -98363,7001:123:1,-13,2,0,0,-0.676699 -98364,7001:122:2,-12.5,2,0,0,-0.616286 -98365,7001:122:1,-12,2,0,0,-0.611356 -98366,1004:229:1,49,2,0,0,-0.18068 -98367,1004:229:2,49.5,2,0,0,-0.182349 -98368,1005:120:1,50,2,0,0,-0.18647 -98369,1005:120:2,50.5,2,0,0,-0.188994 -98370,1005:121:1,51,2,0,0,-0.191369 -98371,1005:121:2,51.5,2,0,0,-0.194348 -98372,1005:122:1,52,2,0,0,-0.197825 -98373,1005:122:2,52.5,2,0,0,-0.206187 -98374,1005:123:1,53,2,0,0,-0.223425 -98375,1005:123:2,53.5,2,0,0,-0.24401 -98376,1005:124:1,54,2,0,0,-0.262425 -98377,1005:124:2,54.5,2,0,0,-0.277679 -98378,1005:225:1,55,2,0,0,-0.291686 -98379,1005:225:2,55.5,2,0,0,-0.318205 -98380,1005:226:1,56,2,0,0,-0.342066 -98381,1005:226:2,56.5,2,0,0,-0.351289 -98382,1005:227:1,57,2,0,0,-0.378993 -98383,1005:227:2,57.5,2,0,0,-0.421902 -98384,1005:228:1,58,2,0,0,-0.452146 -98385,1005:228:2,58.5,2,0,0,-0.435502 -98386,1005:229:1,59,2,0,0,-0.452939 -98387,1005:229:2,59.5,2,0,0,-0.547068 -98388,1006:120:1,60,2,0,0,-0.537763 -98389,1006:120:2,60.5,2,0,0,-0.455404 -98390,1006:121:1,61,2,0,0,-0.368216 -98391,1006:121:2,61.5,2,0,0,-0.289832 -98392,1006:122:1,62,2,0,0,-0.258379 -98393,1006:122:2,62.5,2,0,0,-0.263251 -98394,1006:123:1,63,2,0,0,-0.282109 -98395,1006:123:2,63.5,2,0,0,-0.310556 -98396,1006:124:1,64,2,0,0,-0.346639 -98397,1006:124:2,64.5,2,0,0,-0.379644 -98398,1006:225:1,65,2,0,0,-0.412407 -98399,1006:225:2,65.5,2,0,0,-0.449703 -98400,1006:226:1,66,2,0,0,-0.5073 -98401,1006:226:2,66.5,2,0,0,-0.530655 -98402,1006:227:1,67,2,0,0,-0.526664 -98403,1006:227:2,67.5,2,0,0,-0.530655 -98404,1006:228:1,68,2,0,0,-0.541868 -98405,1006:228:2,68.5,2,0,0,-0.58652 -98406,1006:229:1,69,2,0,0,-0.637706 -98407,1006:229:2,69.5,2,0,0,-0.685157 -98408,1007:120:1,70,2,0,0,-0.787837 -98409,1007:120:2,70.5,2,0,0,-0.851124 -98410,1007:121:1,71,2,0,0,-0.863412 -98411,1007:121:2,71.5,2,0,0,-0.845121 -98412,1007:122:1,72,2,0,0,-0.787837 -98413,1007:122:2,72.5,2,0,0,-0.705556 -98414,1007:123:2,73.5,2,0,0,-0.596996 -98415,1007:124:1,74,2,0,0,-0.552335 -98416,1007:124:2,74.5,2,0,0,-0.481728 -98417,1007:225:1,75,2,0,0,-0.311063 -98418,1007:225:2,75.5,2,0,0,-0.277679 -98419,1007:226:1,76,2,0,0,-0.279884 -98420,1007:226:2,76.5,2,0,0,-0.279438 -98421,1007:227:1,77,2,0,0,-0.265317 -98422,1007:227:2,77.5,2,0,0,-0.247798 -98423,1007:228:1,78,2,0,0,-0.240301 -98424,1007:228:2,78.5,2,0,0,-0.230244 -98425,1007:229:1,79,2,0,0,-0.216678 -98426,1007:229:2,79.5,2,0,0,-0.228162 -98427,1008:120:1,80,2,0,0,-0.241779 -98428,1008:122:2,82.5,2,0,0,-0.187569 -98429,1008:123:1,83,2,0,0,-0.215727 -98430,1008:123:2,83.5,2,0,0,-0.401782 -98431,1008:124:1,84,2,0,0,-0.426365 -98432,1008:124:2,84.5,2,0,0,-0.434748 -98433,1008:225:1,85,2,0,0,-0.423375 -98434,1008:225:2,85.5,2,0,0,-0.399708 -98435,1008:226:1,86,2,0,0,-0.384201 -98436,1008:226:2,86.5,2,0,0,-0.376422 -98437,1008:227:1,87,2,0,0,-0.35662 -98438,1008:227:2,87.5,2,0,0,-0.330413 -98439,1008:228:1,88,2,0,0,-0.304597 -98440,1008:228:2,88.5,2,0,0,-0.279884 -98441,1008:229:1,89,2,0,0,-0.265735 -98442,1008:229:2,89.5,2,0,0,-0.250108 -98443,1009:120:1,90,2,0,0,-0.232359 -98444,1009:120:2,90.5,2,0,0,-0.234848 -98445,1009:121:1,91,2,0,0,-0.265317 -98446,1009:121:2,91.5,2,0,0,-0.31005 -98447,1009:122:1,92,2,0,0,-0.338695 -98448,1009:122:2,92.5,2,0,0,-0.373874 -98449,1009:123:1,93,2,0,0,-0.388177 -98450,1009:123:2,93.5,2,0,0,-0.363282 -98451,1009:124:1,94,2,0,0,-0.293082 -98452,1009:124:2,94.5,2,0,0,-0.322399 -98453,1009:225:1,95,2,0,0,-0.322914 -98454,1009:225:2,95.5,2,0,0,-0.3177 -98455,1009:226:1,96,2,0,0,-0.321869 -98456,1009:226:2,96.5,2,0,0,-0.324513 -98457,1009:227:1,97,2,0,0,-0.316142 -98458,1009:227:2,97.5,2,0,0,-0.343211 -98459,1009:228:1,98,2,0,0,-0.396957 -98460,1009:228:2,98.5,2,0,0,-0.374514 -98461,1009:229:1,99,2,0,0,-0.371983 -98462,1009:229:2,99.5,2,0,0,-0.483508 -98463,1010:120:1,100,2,0,0,-0.3177 -98464,1010:122:1,102,2,0,0,-0.189737 -98465,1010:122:2,102.5,2,0,0,-0.193956 -98466,1010:123:1,103,2,0,0,-0.194435 -98467,1010:123:2,103.5,2,0,0,-0.191074 -98468,1010:124:1,104,2,0,0,-0.180228 -98469,1010:124:2,104.5,2,0,0,-0.179103 -98470,1010:225:1,105,2,0,0,-0.177666 -98471,1010:225:2,105.5,2,0,0,-0.175777 -98472,1010:226:1,106,2,0,0,-0.173744 -98473,1010:226:2,106.5,2,0,0,-0.171571 -98474,1010:227:1,107,2,0,0,-0.169547 -98475,1010:227:2,107.5,2,0,0,-0.168174 -98476,1010:228:1,108,2,0,0,-0.171027 -98477,1010:228:2,108.5,2,0,0,-0.180655 -98478,1010:229:1,109,2,0,0,-0.190725 -98479,1010:229:2,109.5,2,0,0,-0.204833 -98480,1011:120:1,110,2,0,0,-0.218897 -98481,1011:120:2,110.5,2,0,0,-0.250485 -98482,1011:121:1,111,2,0,0,-0.300688 -98483,1011:121:2,111.5,2,0,0,-0.336448 -98484,1011:122:1,112,2,0,0,-0.339242 -98485,1011:122:2,112.5,2,0,0,-0.366361 -98486,1011:123:1,113,2,0,0,-0.396957 -98487,1011:123:2,113.5,2,0,0,-0.449703 -98488,1011:124:1,114,2,0,0,-0.453758 -98489,1011:124:2,114.5,2,0,0,-0.462855 -98490,1011:225:1,115,2,0,0,-0.49796 -98491,1011:225:2,115.5,2,0,0,-0.542909 -98492,1011:226:1,116,2,0,0,-0.568523 -98493,1011:226:2,116.5,2,0,0,-0.539794 -98494,1011:228:1,118,2,0,0,-0.570748 -98495,1011:228:2,118.5,2,0,0,-0.51396 -98496,1011:229:1,119,2,0,0,-0.437061 -98497,1011:229:2,119.5,2,0,0,-0.418952 -98498,1012:120:1,120,2,0,0,-0.431682 -98499,1012:120:2,120.5,2,0,0,-0.414566 -98500,1012:121:1,121,2,0,0,-0.273334 -98501,1012:121:2,121.5,2,0,0,-0.19654 -98502,1012:122:1,122,2,0,0,-0.220827 -98503,1012:122:2,122.5,2,0,0,-0.25322 -98504,1012:123:1,123,2,0,0,-0.214809 -98505,1012:123:2,123.5,2,0,0,-0.193523 -98506,1012:124:1,124,2,0,0,-0.186287 -98507,1012:226:1,126,2,0,0,-0.323446 -98508,1012:227:1,127,2,0,0,-0.331509 -98509,1012:227:2,127.5,2,0,0,-0.57295 -98510,1012:228:1,128,2,0,0,-0.854195 -98511,1012:228:2,128.5,2,0,0,-1.08443 -98512,1012:229:1,129,2,0,0,-1.28898 -98513,1012:229:2,129.5,2,0,0,-1.54559 -98514,1013:120:1,130,2,0,0,-1.36025 -98515,1013:120:2,130.5,2,0,0,-1.13419 -98516,1013:121:1,131,2,0,0,-0.994479 -98517,1013:121:2,131.5,2,0,0,-1.00997 -98518,1013:122:1,132,2,0,0,-1.08005 -98519,1013:122:2,132.5,2,0,0,-1.22323 -98520,1013:123:1,133,2,0,0,-1.4654 -98521,1013:123:2,133.5,2,0,0,-1.81358 -98522,1013:124:1,134,2,0,0,-2.23613 -98523,1013:124:2,134.5,2,0,0,-2.43114 -98524,1013:225:1,135,2,0,0,-2.85711 -98525,1013:225:2,135.5,2,0,0,-3.31756 -98526,1013:226:1,136,2,0,0,-4.16587 -98527,1013:226:2,136.5,2,0,0,-6.11512 -98528,1013:227:1,137,2,0,0,-11.999 -98529,1013:227:2,137.5,2,0,0,-23.6587 -98530,1013:228:1,138,2,0,0,-8.52457 -98531,1013:228:2,138.5,2,0,0,-2.07856 -98532,1013:229:1,139,2,0,0,-1.03395 -98533,1013:229:2,139.5,2,0,0,-0.779764 -98534,1014:120:1,140,2,0,0,-0.872776 -98535,1014:120:2,140.5,2,0,0,-1.05037 -98536,1014:121:1,141,2,0,0,-1.23387 -98537,1014:121:2,141.5,2,0,0,-1.37899 -98538,1014:122:1,142,2,0,0,-1.49371 -98539,1014:122:2,142.5,2,0,0,-1.61649 -98540,1014:123:1,143,2,0,0,-1.76564 -98541,1014:123:2,143.5,2,0,0,-1.90598 -99186,7016:134:2,-164.5,3,0,0,-0.1994 -98542,1014:124:1,144,2,0,0,-2.04216 -98543,1014:124:2,144.5,2,0,0,-2.09107 -98544,1014:225:1,145,2,0,0,-2.06618 -98545,1014:225:2,145.5,2,0,0,-2.30795 -98546,1014:226:1,146,2,0,0,-2.85711 -98547,1014:226:2,146.5,2,0,0,-3.18486 -98548,1014:227:1,147,2,0,0,-3.74949 -98549,1014:227:2,147.5,2,0,0,-4.24979 -98550,1014:228:1,148,2,0,0,-4.42854 -98551,1014:228:2,148.5,2,0,0,-4.57142 -98552,1014:229:1,149,2,0,0,-4.94202 -98553,1014:229:2,149.5,2,0,0,-5.87314 -98554,1015:120:1,150,2,0,0,-9.57722 -98555,1015:120:2,150.5,2,0,0,-17.7029 -98556,1015:121:1,151,2,0,0,-29.1935 -98557,1015:121:2,151.5,2,0,0,-14.9822 -98558,1015:122:1,152,2,0,0,-7.80297 -98559,1015:122:2,152.5,2,0,0,-5.95017 -98560,1015:123:1,153,2,0,0,-5.1786 -98561,1015:123:2,153.5,2,0,0,-4.99972 -98562,1015:124:1,154,2,0,0,-4.38224 -98563,1015:124:2,154.5,2,0,0,-4.38224 -98564,1015:225:1,155,2,0,0,-4.33818 -98565,1015:225:2,155.5,2,0,0,-4.57142 -98566,1015:226:1,156,2,0,0,-5.11707 -98567,1015:226:2,156.5,2,0,0,-5.43688 -98568,1015:227:1,157,2,0,0,-5.87314 -98569,1015:227:2,157.5,2,0,0,-6.75968 -98570,1015:228:1,158,2,0,0,-5.64612 -98571,1015:228:2,158.5,2,0,0,-1.41792 -98572,1015:229:1,159,2,0,0,-1.28898 -98573,1015:229:2,159.5,2,0,0,-1.76564 -98574,1016:120:1,160,2,0,0,-2.65712 -98575,1016:120:2,160.5,2,0,0,-3.74949 -98576,1016:121:1,161,2,0,0,-4.83019 -98577,1016:121:2,161.5,2,0,0,-4.62143 -98578,1016:122:1,162,2,0,0,-3.52225 -98579,1016:122:2,162.5,2,0,0,-2.75397 -98580,1016:123:1,163,2,0,0,-2.29319 -98581,1016:123:2,163.5,2,0,0,-1.97212 -98582,1016:124:1,164,2,0,0,-1.71042 -98583,1016:124:2,164.5,2,0,0,-1.52291 -98584,1016:225:1,165,2,0,0,-1.41127 -98585,1016:225:2,165.5,2,0,0,-1.36652 -98586,1016:226:1,166,2,0,0,-1.38539 -98587,1016:226:2,166.5,2,0,0,-1.52291 -98588,1016:227:1,167,2,0,0,-1.71947 -98589,1016:227:2,167.5,2,0,0,-1.93875 -98590,1016:228:1,168,2,0,0,-2.12896 -98591,1016:228:2,168.5,2,0,0,-2.12896 -98592,1016:229:1,169,2,0,0,-1.97212 -98593,1016:229:2,169.5,2,0,0,-1.85399 -98594,1017:120:1,170,2,0,0,-1.20768 -98595,1017:120:2,170.5,2,0,0,-0.689486 -98596,1017:121:1,171,2,0,0,-0.935948 -98597,1017:121:2,171.5,2,0,0,-1.16268 -98598,1017:122:1,172,2,0,0,-1.28898 -98599,1017:122:2,172.5,2,0,0,-1.50098 -98600,1017:123:1,173,2,0,0,-2.54832 -98601,1017:123:2,173.5,2,0,0,-5.95017 -98602,1017:124:1,174,2,0,0,-54.3138 -98603,1017:124:2,174.5,2,0,0,31.7976 -98604,1017:225:1,175,2,0,0,114.146 -98605,1017:225:2,175.5,2,0,0,-19.0885 -98606,1017:226:1,176,2,0,0,-8.85178 -98607,1017:226:2,176.5,2,0,0,-5.71996 -98608,1017:227:1,177,2,0,0,-3.8549 -98609,1017:227:2,177.5,2,0,0,-2.46395 -98610,1017:228:1,178,2,0,0,-1.64968 -98611,1017:228:2,178.5,2,0,0,-1.24466 -98612,1017:229:1,179,2,0,0,-1.07583 -98613,1017:229:2,179.5,2,0,0,-1.0462 -98614,1018:120:1,180,2,0,0,-1.08005 -98615,7018:120:3,-180,2.5,0,0,-0.503542 -98616,7017:229:4,-179.5,2.5,0,0,-0.559806 -98617,7017:229:3,-179,2.5,0,0,-0.604136 -98618,7017:228:4,-178.5,2.5,0,0,-0.61749 -98619,7017:228:3,-178,2.5,0,0,-0.588842 -98620,7017:227:4,-177.5,2.5,0,0,-0.532682 -98621,7017:227:3,-177,2.5,0,0,-0.469608 -98622,7017:226:4,-176.5,2.5,0,0,-0.426365 -98623,7017:226:3,-176,2.5,0,0,-0.403187 -98624,7017:225:4,-175.5,2.5,0,0,-0.391527 -98625,7017:225:3,-175,2.5,0,0,-0.378343 -98626,7017:124:4,-174.5,2.5,0,0,-0.360846 -98627,7017:124:3,-174,2.5,0,0,-0.34492 -98628,7017:123:4,-173.5,2.5,0,0,-0.331509 -98629,7017:123:3,-173,2.5,0,0,-0.32134 -98630,7017:122:4,-172.5,2.5,0,0,-0.314609 -98631,7017:122:3,-172,2.5,0,0,-0.314095 -98632,7017:121:4,-171.5,2.5,0,0,-0.330413 -98633,7017:121:3,-171,2.5,0,0,-0.339808 -98634,7017:120:4,-170.5,2.5,0,0,-0.342638 -98635,7017:120:3,-170,2.5,0,0,-0.336448 -98636,7016:229:4,-169.5,2.5,0,0,-0.334236 -98637,7016:229:3,-169,2.5,0,0,-0.333145 -98638,7016:228:4,-168.5,2.5,0,0,-0.3177 -98639,7016:228:3,-168,2.5,0,0,-0.292155 -98640,7016:227:4,-167.5,2.5,0,0,-0.275496 -98641,7016:227:3,-167,2.5,0,0,-0.271621 -98642,7016:226:4,-166.5,2.5,0,0,-0.272051 -98643,7016:226:3,-166,2.5,0,0,-0.275934 -98644,7016:225:4,-165.5,2.5,0,0,-0.279438 -98645,7016:225:3,-165,2.5,0,0,-0.285254 -98646,7016:124:4,-164.5,2.5,0,0,-0.293082 -98647,7016:124:3,-164,2.5,0,0,-0.304103 -98648,7016:123:4,-163.5,2.5,0,0,-0.312575 -98649,7016:123:3,-163,2.5,0,0,-0.311063 -98650,7016:122:4,-162.5,2.5,0,0,-0.315124 -98651,7016:122:3,-162,2.5,0,0,-0.31718 -98652,7016:121:4,-161.5,2.5,0,0,-0.315124 -98653,7016:121:3,-161,2.5,0,0,-0.313086 -98654,7016:120:4,-160.5,2.5,0,0,-0.308052 -98655,7016:120:3,-160,2.5,0,0,-0.300217 -98656,7015:229:4,-159.5,2.5,0,0,-0.294027 -98657,7015:229:3,-159,2.5,0,0,-0.29075 -98658,7015:228:4,-158.5,2.5,0,0,-0.290298 -98659,7015:228:3,-158,2.5,0,0,-0.291217 -98660,7015:227:4,-157.5,2.5,0,0,-0.291686 -98661,7015:227:3,-157,2.5,0,0,-0.291217 -98662,7015:226:4,-156.5,2.5,0,0,-0.29075 -98663,7015:226:3,-156,2.5,0,0,-0.290298 -98664,7015:225:4,-155.5,2.5,0,0,-0.286612 -98665,7015:225:3,-155,2.5,0,0,-0.285254 -98666,7015:124:4,-154.5,2.5,0,0,-0.28345 -98667,7015:124:3,-154,2.5,0,0,-0.287071 -98668,7015:123:4,-153.5,2.5,0,0,-0.293554 -98669,7015:123:3,-153,2.5,0,0,-0.300688 -98670,7015:122:4,-152.5,2.5,0,0,-0.305077 -98671,7015:122:3,-152,2.5,0,0,-0.30361 -98672,7015:121:4,-151.5,2.5,0,0,-0.293554 -98673,7015:121:3,-151,2.5,0,0,-0.276372 -98674,7015:120:4,-150.5,2.5,0,0,-0.257571 -98675,7015:120:3,-150,2.5,0,0,-0.242153 -98676,7014:229:4,-149.5,2.5,0,0,-0.231294 -98677,7014:229:3,-149,2.5,0,0,-0.225403 -98678,7014:228:4,-148.5,2.5,0,0,-0.221468 -98679,7014:228:3,-148,2.5,0,0,-0.220502 -98680,7014:227:4,-147.5,2.5,0,0,-0.221795 -98681,7014:227:3,-147,2.5,0,0,-0.224076 -98682,7014:226:4,-146.5,2.5,0,0,-0.227814 -98683,7014:226:3,-146,2.5,0,0,-0.231294 -98684,7014:225:4,-145.5,2.5,0,0,-0.234138 -98685,7014:225:3,-145,2.5,0,0,-0.233063 -98686,7014:124:4,-144.5,2.5,0,0,-0.22885 -98687,7014:124:3,-144,2.5,0,0,-0.223755 -98688,7014:123:4,-143.5,2.5,0,0,-0.216986 -98689,7014:123:3,-143,2.5,0,0,-0.21207 -98690,7014:122:4,-142.5,2.5,0,0,-0.210194 -98691,7014:122:3,-142,2.5,0,0,-0.209678 -98692,7014:121:4,-141.5,2.5,0,0,-0.208154 -98693,7014:121:3,-141,2.5,0,0,-0.207899 -98694,7014:120:4,-140.5,2.5,0,0,-0.210452 -98695,7014:120:3,-140,2.5,0,0,-0.21636 -98696,7013:229:4,-139.5,2.5,0,0,-0.222122 -98697,7013:229:3,-139,2.5,0,0,-0.227119 -98698,7013:228:4,-138.5,2.5,0,0,-0.233779 -98699,7013:228:3,-138,2.5,0,0,-0.239931 -98700,7013:227:4,-137.5,2.5,0,0,-0.238835 -98701,7013:227:3,-137,2.5,0,0,-0.234848 -98702,7013:226:4,-136.5,2.5,0,0,-0.232359 -98703,7013:226:3,-136,2.5,0,0,-0.233063 -98704,7013:225:4,-135.5,2.5,0,0,-0.234138 -98705,7013:225:3,-135,2.5,0,0,-0.232716 -98706,7013:124:4,-134.5,2.5,0,0,-0.227814 -98707,7013:124:3,-134,2.5,0,0,-0.220502 -98708,7013:123:4,-133.5,2.5,0,0,-0.210452 -98709,7013:123:3,-133,2.5,0,0,-0.204251 -98710,7013:122:4,-132.5,2.5,0,0,-0.199309 -98711,7013:122:3,-132,2.5,0,0,-0.198136 -98712,7013:121:4,-131.5,2.5,0,0,-0.197825 -98713,7013:121:3,-131,2.5,0,0,-0.198225 -98714,7013:120:4,-130.5,2.5,0,0,-0.199013 -98715,7013:120:3,-130,2.5,0,0,-0.202205 -98716,7012:229:4,-129.5,2.5,0,0,-0.206187 -98717,7012:229:3,-129,2.5,0,0,-0.209171 -98718,7012:228:4,-128.5,2.5,0,0,-0.210452 -98719,7012:228:3,-128,2.5,0,0,-0.210194 -98720,7012:227:4,-127.5,2.5,0,0,-0.205796 -98721,7012:227:3,-127,2.5,0,0,-0.200632 -98722,7012:226:4,-126.5,2.5,0,0,-0.198359 -98723,7012:226:3,-126,2.5,0,0,-0.19778 -98724,7012:225:4,-125.5,2.5,0,0,-0.197958 -98725,7012:225:3,-125,2.5,0,0,-0.198803 -98726,7012:124:4,-124.5,2.5,0,0,-0.200799 -98727,7012:124:3,-124,2.5,0,0,-0.200632 -98728,7012:123:4,-123.5,2.5,0,0,-0.199119 -98729,7012:123:3,-123,2.5,0,0,-0.19827 -98730,7012:122:4,-122.5,2.5,0,0,-0.197602 -98731,7012:122:3,-122,2.5,0,0,-0.197469 -98732,7012:121:4,-121.5,2.5,0,0,-0.197292 -98733,7012:121:3,-121,2.5,0,0,-0.197115 -98734,7012:120:4,-120.5,2.5,0,0,-0.196894 -98735,7012:120:3,-120,2.5,0,0,-0.19654 -98736,7011:229:4,-119.5,2.5,0,0,-0.197158 -98737,7011:229:3,-119,2.5,0,0,-0.198002 -98738,7011:228:4,-118.5,2.5,0,0,-0.19896 -98739,7011:228:3,-118,2.5,0,0,-0.20257 -98740,7011:227:4,-117.5,2.5,0,0,-0.204833 -98741,7011:227:3,-117,2.5,0,0,-0.205216 -98742,7011:226:4,-116.5,2.5,0,0,-0.203498 -98743,7011:226:3,-116,2.5,0,0,-0.200799 -98744,7011:225:4,-115.5,2.5,0,0,-0.1994 -98745,7011:225:3,-115,2.5,0,0,-0.198856 -98746,7011:124:4,-114.5,2.5,0,0,-0.198699 -98747,7011:124:3,-114,2.5,0,0,-0.19875 -98748,7011:123:4,-113.5,2.5,0,0,-0.199066 -98749,7011:123:3,-113,2.5,0,0,-0.199309 -98750,7011:122:4,-112.5,2.5,0,0,-0.19875 -98751,7011:122:3,-112,2.5,0,0,-0.197602 -98752,7011:121:4,-111.5,2.5,0,0,-0.196011 -98753,7011:121:3,-111,2.5,0,0,-0.19413 -98754,7011:120:4,-110.5,2.5,0,0,-0.192529 -98755,7011:120:3,-110,2.5,0,0,-0.191477 -98756,7010:229:4,-109.5,2.5,0,0,-0.190431 -98757,7010:229:3,-109,2.5,0,0,-0.189258 -98758,7010:228:4,-108.5,2.5,0,0,-0.188148 -98759,7010:228:3,-108,2.5,0,0,-0.187018 -98760,7010:227:4,-107.5,2.5,0,0,-0.186027 -98761,7010:227:3,-107,2.5,0,0,-0.184964 -98762,7010:226:4,-106.5,2.5,0,0,-0.183933 -98763,7010:226:3,-106,2.5,0,0,-0.18342 -98764,7010:225:4,-105.5,2.5,0,0,-0.183165 -98765,7010:225:3,-105,2.5,0,0,-0.182935 -98766,7010:124:4,-104.5,2.5,0,0,-0.182986 -98767,7010:124:3,-104,2.5,0,0,-0.182859 -98768,7010:123:4,-103.5,2.5,0,0,-0.182603 -98769,7010:123:3,-103,2.5,0,0,-0.182349 -98770,7010:122:4,-102.5,2.5,0,0,-0.182044 -98771,7010:122:3,-102,2.5,0,0,-0.181689 -98772,7010:121:4,-101.5,2.5,0,0,-0.181083 -98773,7010:121:3,-101,2.5,0,0,-0.180429 -98774,7010:120:4,-100.5,2.5,0,0,-0.179702 -98775,7010:120:3,-100,2.5,0,0,-0.179054 -98776,7009:229:4,-99.5,2.5,0,0,-0.179003 -98777,7009:229:3,-99,2.5,0,0,-0.179702 -98778,7009:228:4,-98.5,2.5,0,0,-0.180479 -98779,7009:228:3,-98,2.5,0,0,-0.181133 -98780,7009:227:4,-97.5,2.5,0,0,-0.181715 -98781,7009:227:3,-97,2.5,0,0,-0.181892 -98782,7009:226:4,-96.5,2.5,0,0,-0.181841 -98783,7009:226:3,-96,2.5,0,0,-0.181613 -98784,7009:225:4,-95.5,2.5,0,0,-0.181234 -98785,7009:225:3,-95,2.5,0,0,-0.181032 -98786,7009:124:4,-94.5,2.5,0,0,-0.181184 -98787,7009:124:3,-94,2.5,0,0,-0.181715 -98788,7009:123:4,-93.5,2.5,0,0,-0.18245 -98789,7009:123:3,-93,2.5,0,0,-0.183318 -98790,7009:122:4,-92.5,2.5,0,0,-0.184318 -98791,7009:122:3,-92,2.5,0,0,-0.185378 -98792,7009:121:4,-91.5,2.5,0,0,-0.185689 -98793,7009:121:3,-91,2.5,0,0,-0.185715 -98794,7009:120:4,-90.5,2.5,0,0,-0.185741 -98795,7009:120:3,-90,2.5,0,0,-0.185819 -98796,7008:229:4,-89.5,2.5,0,0,-0.186027 -98797,7008:229:3,-89,2.5,0,0,-0.187071 -98798,7008:228:4,-88.5,2.5,0,0,-0.189206 -98799,7008:228:3,-88,2.5,0,0,-0.191799 -98800,7008:227:4,-87.5,2.5,0,0,-0.194784 -98801,7008:227:3,-87,2.5,0,0,-0.198856 -98802,7008:226:4,-86.5,2.5,0,0,-0.229551 -98803,7008:226:3,-86,2.5,0,0,-0.28256 -98804,7008:225:4,-85.5,2.5,0,0,-0.369454 -98805,7008:225:3,-85,2.5,0,0,-0.449703 -98806,7008:124:4,-84.5,2.5,0,0,-0.525695 -98807,7008:124:3,-84,2.5,0,0,-0.587679 -98808,7008:123:4,-83.5,2.5,0,0,-0.664242 -98809,7008:123:3,-83,2.5,0,0,-0.692349 -98810,7008:122:4,-82.5,2.5,0,0,-0.679488 -98811,7008:122:3,-82,2.5,0,0,-0.446499 -98812,7008:121:4,-81.5,2.5,0,0,-0.54083 -98813,7008:121:3,-81,2.5,0,0,-0.473033 -98814,7008:120:3,-80,2.5,0,0,-0.705556 -98815,7007:229:4,-79.5,2.5,0,0,-0.381585 -98816,7007:229:3,-79,2.5,0,0,-0.363899 -98817,7007:228:4,-78.5,2.5,0,0,-0.420412 -98818,7005:228:4,-58.5,2.5,0,0,-0.179352 -98819,7005:228:3,-58,2.5,0,0,-0.175169 -98820,7005:227:4,-57.5,2.5,0,0,-0.164536 -98821,7005:227:3,-57,2.5,0,0,-0.169594 -98822,7005:226:4,-56.5,2.5,0,0,-0.173192 -98823,7005:226:3,-56,2.5,0,0,-0.173695 -98824,7005:225:4,-55.5,2.5,0,0,-0.173168 -98825,7005:225:3,-55,2.5,0,0,-0.172094 -98826,7005:124:4,-54.5,2.5,0,0,-0.172665 -98827,7005:124:3,-54,2.5,0,0,-0.177567 -98828,7005:123:4,-53.5,2.5,0,0,-0.181437 -98829,7005:123:3,-53,2.5,0,0,-0.183497 -98830,7005:122:4,-52.5,2.5,0,0,-0.183523 -98831,7005:122:3,-52,2.5,0,0,-0.183343 -98832,7005:121:4,-51.5,2.5,0,0,-0.182807 -98833,7005:121:3,-51,2.5,0,0,-0.182833 -98834,7005:120:4,-50.5,2.5,0,0,-0.182909 -98835,7005:120:3,-50,2.5,0,0,-0.182961 -98836,7004:229:4,-49.5,2.5,0,0,-0.182986 -98837,7004:229:3,-49,2.5,0,0,-0.181487 -98838,7004:228:4,-48.5,2.5,0,0,-0.181386 -98839,7004:228:3,-48,2.5,0,0,-0.183267 -98840,7004:227:4,-47.5,2.5,0,0,-0.183088 -98841,7004:227:3,-47,2.5,0,0,-0.182629 -98842,7004:226:4,-46.5,2.5,0,0,-0.183037 -98843,7004:226:3,-46,2.5,0,0,-0.18212 -98844,7004:225:4,-45.5,2.5,0,0,-0.182756 -98845,7004:225:3,-45,2.5,0,0,-0.183626 -98846,7004:124:4,-44.5,2.5,0,0,-0.183805 -98847,7004:124:3,-44,2.5,0,0,-0.182782 -98848,7004:123:4,-43.5,2.5,0,0,-0.180957 -98849,7004:123:3,-43,2.5,0,0,-0.179352 -98850,7004:122:4,-42.5,2.5,0,0,-0.179402 -98851,7004:122:3,-42,2.5,0,0,-0.178879 -98852,7004:121:4,-41.5,2.5,0,0,-0.178606 -98853,7004:121:3,-41,2.5,0,0,-0.178805 -98854,7004:120:4,-40.5,2.5,0,0,-0.179477 -98855,7004:120:3,-40,2.5,0,0,-0.180228 -98856,7003:229:4,-39.5,2.5,0,0,-0.180957 -98857,7003:229:3,-39,2.5,0,0,-0.181259 -98858,7003:228:4,-38.5,2.5,0,0,-0.180831 -98859,7003:228:3,-38,2.5,0,0,-0.179178 -98860,7003:227:4,-37.5,2.5,0,0,-0.176707 -98861,7003:227:3,-37,2.5,0,0,-0.174975 -98862,7003:226:4,-36.5,2.5,0,0,-0.174443 -98863,7003:226:3,-36,2.5,0,0,-0.175363 -98864,7003:225:4,-35.5,2.5,0,0,-0.176584 -98865,7003:225:3,-35,2.5,0,0,-0.176927 -98866,7003:124:4,-34.5,2.5,0,0,-0.176486 -98867,7003:124:3,-34,2.5,0,0,-0.175899 -98868,7003:123:4,-33.5,2.5,0,0,-0.175582 -98869,7003:123:3,-33,2.5,0,0,-0.175097 -98870,7003:122:4,-32.5,2.5,0,0,-0.174443 -98871,7003:122:3,-32,2.5,0,0,-0.174612 -98872,7003:121:4,-31.5,2.5,0,0,-0.175582 -98873,7003:121:3,-31,2.5,0,0,-0.176094 -98874,7003:120:4,-30.5,2.5,0,0,-0.176193 -98875,7003:120:3,-30,2.5,0,0,-0.176535 -98876,7002:229:4,-29.5,2.5,0,0,-0.176682 -98877,7002:229:3,-29,2.5,0,0,-0.176437 -98878,7002:228:4,-28.5,2.5,0,0,-0.17629 -98879,7002:228:3,-28,2.5,0,0,-0.17678 -98880,7002:227:4,-27.5,2.5,0,0,-0.17769 -98881,7002:227:3,-27,2.5,0,0,-0.179652 -98882,7002:226:4,-26.5,2.5,0,0,-0.181386 -98883,7002:226:3,-26,2.5,0,0,-0.182273 -98884,7002:225:4,-25.5,2.5,0,0,-0.181943 -98885,7002:225:3,-25,2.5,0,0,-0.181562 -98886,7002:124:4,-24.5,2.5,0,0,-0.181766 -98887,7002:124:3,-24,2.5,0,0,-0.182654 -98888,7002:123:4,-23.5,2.5,0,0,-0.184267 -98889,7002:123:3,-23,2.5,0,0,-0.186 -98890,7002:122:4,-22.5,2.5,0,0,-0.187622 -98891,7002:122:3,-22,2.5,0,0,-0.189046 -98892,7002:121:4,-21.5,2.5,0,0,-0.190538 -98893,7002:121:3,-21,2.5,0,0,-0.192205 -98894,7002:120:4,-20.5,2.5,0,0,-0.19474 -98895,7002:120:3,-20,2.5,0,0,-0.197869 -98896,7001:229:4,-19.5,2.5,0,0,-0.211805 -98897,7001:229:3,-19,2.5,0,0,-0.249719 -98898,7001:228:4,-18.5,2.5,0,0,-0.293082 -98899,7001:228:3,-18,2.5,0,0,-0.328251 -98900,7001:227:4,-17.5,2.5,0,0,-0.366965 -98901,7001:227:3,-17,2.5,0,0,-0.423375 -98902,7001:226:4,-16.5,2.5,0,0,-0.512057 -98903,7001:226:3,-16,2.5,0,0,-0.619982 -98904,7001:225:4,-15.5,2.5,0,0,-0.702616 -98905,7001:225:3,-15,2.5,0,0,-0.576294 -98906,7001:124:4,-14.5,2.5,0,0,-0.628738 -98907,7001:124:3,-14,2.5,0,0,-1.36652 -98908,7001:123:4,-13.5,2.5,0,0,-2.60202 -98909,7001:123:3,-13,2.5,0,0,-2.38378 -98910,1004:229:4,49.5,2.5,0,0,-0.179302 -98911,1005:120:3,50,2.5,0,0,-0.181158 -98912,1005:120:4,50.5,2.5,0,0,-0.1853 -98913,1005:121:3,51,2.5,0,0,-0.187805 -98914,1005:121:4,51.5,2.5,0,0,-0.188623 -98915,1005:122:3,52,2.5,0,0,-0.189684 -98916,1005:122:4,52.5,2.5,0,0,-0.191746 -98917,1005:123:3,53,2.5,0,0,-0.19632 -98918,1005:123:4,53.5,2.5,0,0,-0.202389 -98919,1005:124:3,54,2.5,0,0,-0.203311 -98920,1005:124:4,54.5,2.5,0,0,-0.201668 -98921,1005:225:3,55,2.5,0,0,-0.199119 -98922,1005:225:4,55.5,2.5,0,0,-0.19778 -98923,1005:226:3,56,2.5,0,0,-0.19707 -98924,1005:226:4,56.5,2.5,0,0,-0.201842 -98925,1005:227:3,57,2.5,0,0,-0.228501 -98926,1005:227:4,57.5,2.5,0,0,-0.266561 -98927,1005:228:3,58,2.5,0,0,-0.316142 -98928,1005:228:4,58.5,2.5,0,0,-0.353067 -98929,1005:229:3,59,2.5,0,0,-0.39085 -98930,1005:229:4,59.5,2.5,0,0,-0.452146 -98931,1006:120:3,60,2.5,0,0,-0.416007 -98932,1006:120:4,60.5,2.5,0,0,-0.360236 -98933,1006:121:3,61,2.5,0,0,-0.309057 -98934,1006:121:4,61.5,2.5,0,0,-0.270349 -98935,1006:122:3,62,2.5,0,0,-0.23342 -98936,1006:122:4,62.5,2.5,0,0,-0.217305 -98937,1006:123:3,63,2.5,0,0,-0.230244 -98938,1006:123:4,63.5,2.5,0,0,-0.260399 -98939,1006:124:3,64,2.5,0,0,-0.294961 -98940,1006:124:4,64.5,2.5,0,0,-0.329867 -98941,1006:225:3,65,2.5,0,0,-0.358431 -98942,1006:225:4,65.5,2.5,0,0,-0.390174 -98943,1006:226:3,66,2.5,0,0,-0.418213 -98944,1006:226:4,66.5,2.5,0,0,-0.424126 -98945,1006:227:3,67,2.5,0,0,-0.434748 -98946,1006:227:4,67.5,2.5,0,0,-0.464518 -98947,1006:228:3,68,2.5,0,0,-0.474744 -98948,1006:228:4,68.5,2.5,0,0,-0.494294 -98949,1006:229:3,69,2.5,0,0,-0.517822 -98950,1006:229:4,69.5,2.5,0,0,-0.575199 -98951,1007:120:3,70,2.5,0,0,-0.64549 -98952,1007:120:4,70.5,2.5,0,0,-0.70113 -98953,1007:121:3,71,2.5,0,0,-0.746335 -98954,1007:121:4,71.5,2.5,0,0,-0.766519 -98955,1007:122:3,72,2.5,0,0,-0.759297 -98956,1007:122:4,72.5,2.5,0,0,-0.62245 -98957,1007:123:4,73.5,2.5,0,0,-0.473901 -98958,1007:124:3,74,2.5,0,0,-0.35424 -98959,1007:124:4,74.5,2.5,0,0,-0.281211 -98960,1007:225:3,75,2.5,0,0,-0.273334 -98961,1007:225:4,75.5,2.5,0,0,-0.262026 -98962,1007:226:3,76,2.5,0,0,-0.251658 -98963,1007:226:4,76.5,2.5,0,0,-0.226092 -98964,1007:227:3,77,2.5,0,0,-0.228162 -98965,1007:227:4,77.5,2.5,0,0,-0.2292 -98966,1007:228:3,78,2.5,0,0,-0.23095 -98967,1007:228:4,78.5,2.5,0,0,-0.230597 -98968,1007:229:3,79,2.5,0,0,-0.242516 -98969,1007:229:4,79.5,2.5,0,0,-0.304103 -98970,1008:120:3,80,2.5,0,0,-0.392865 -98971,1008:122:4,82.5,2.5,0,0,-0.184705 -98972,1008:123:3,83,2.5,0,0,-0.195178 -98973,1008:123:4,83.5,2.5,0,0,-0.30361 -98974,1008:124:3,84,2.5,0,0,-0.309546 -98975,1008:124:4,84.5,2.5,0,0,-0.309546 -98976,1008:225:3,85,2.5,0,0,-0.311063 -98977,1008:225:4,85.5,2.5,0,0,-0.309546 -98978,1008:226:3,86,2.5,0,0,-0.296855 -98979,1008:226:4,86.5,2.5,0,0,-0.287071 -98980,1008:227:3,87,2.5,0,0,-0.267812 -98981,1008:227:4,87.5,2.5,0,0,-0.259584 -98982,1008:228:3,88,2.5,0,0,-0.259991 -98983,1008:228:4,88.5,2.5,0,0,-0.261205 -98984,1008:229:3,89,2.5,0,0,-0.259177 -98985,1008:229:4,89.5,2.5,0,0,-0.252038 -98986,1009:120:3,90,2.5,0,0,-0.233779 -98987,1009:120:4,90.5,2.5,0,0,-0.22507 -98988,1009:121:3,91,2.5,0,0,-0.233063 -98989,1009:121:4,91.5,2.5,0,0,-0.254793 -98990,1009:122:3,92,2.5,0,0,-0.296391 -98991,1009:122:4,92.5,2.5,0,0,-0.333145 -98992,1009:123:3,93,2.5,0,0,-0.333145 -98993,1009:123:4,93.5,2.5,0,0,-0.311063 -98994,1009:124:3,94,2.5,0,0,-0.275934 -98995,1009:124:4,94.5,2.5,0,0,-0.275059 -98996,1009:225:3,95,2.5,0,0,-0.289367 -98997,1009:225:4,95.5,2.5,0,0,-0.28571 -98998,1009:226:3,96,2.5,0,0,-0.292155 -98999,1009:226:4,96.5,2.5,0,0,-0.314095 -99000,1009:227:3,97,2.5,0,0,-0.31666 -99001,1009:227:4,97.5,2.5,0,0,-0.365739 -99002,1009:228:3,98,2.5,0,0,-0.381585 -99003,1009:228:4,98.5,2.5,0,0,-0.371348 -99004,1009:229:3,99,2.5,0,0,-0.357826 -99005,1009:229:4,99.5,2.5,0,0,-0.272914 -99006,1010:121:3,101,2.5,0,0,-0.191316 -99007,1010:121:4,101.5,2.5,0,0,-0.191316 -99008,1010:122:3,102,2.5,0,0,-0.193696 -99009,1010:122:4,102.5,2.5,0,0,-0.192746 -99010,1010:123:3,103,2.5,0,0,-0.193652 -99011,1010:123:4,103.5,2.5,0,0,-0.18987 -99012,1010:124:3,104,2.5,0,0,-0.179552 -99013,1010:124:4,104.5,2.5,0,0,-0.173912 -99014,1010:225:3,105,2.5,0,0,-0.17324 -99015,1010:225:4,105.5,2.5,0,0,-0.171737 -99016,1010:226:3,106,2.5,0,0,-0.170626 -99017,1010:226:4,106.5,2.5,0,0,-0.169196 -99018,1010:227:3,107,2.5,0,0,-0.16778 -99019,1010:227:4,107.5,2.5,0,0,-0.166744 -99020,1010:228:3,108,2.5,0,0,-0.168568 -99021,1010:228:4,108.5,2.5,0,0,-0.174709 -99022,1010:229:3,109,2.5,0,0,-0.186157 -99023,1010:229:4,109.5,2.5,0,0,-0.193609 -99024,1011:120:3,110,2.5,0,0,-0.198646 -99025,1011:120:4,110.5,2.5,0,0,-0.231648 -99026,1011:121:3,111,2.5,0,0,-0.288904 -99027,1011:121:4,111.5,2.5,0,0,-0.328794 -99028,1011:122:3,112,2.5,0,0,-0.323979 -99029,1011:122:4,112.5,2.5,0,0,-0.293082 -99030,1011:123:3,113,2.5,0,0,-0.358431 -99031,1011:123:4,113.5,2.5,0,0,-0.357826 -99032,1011:124:3,114,2.5,0,0,-0.358431 -99033,1011:124:4,114.5,2.5,0,0,-0.360846 -99034,1011:225:3,115,2.5,0,0,-0.394894 -99035,1011:225:4,115.5,2.5,0,0,-0.424878 -99036,1011:226:3,116,2.5,0,0,-0.475617 -99037,1011:226:4,116.5,2.5,0,0,-0.53571 -99038,1011:227:3,117,2.5,0,0,-0.570748 -99039,1011:227:4,117.5,2.5,0,0,-0.518801 -99040,1011:228:3,118,2.5,0,0,-0.541868 -99041,1011:228:4,118.5,2.5,0,0,-0.440178 -99042,1011:229:3,119,2.5,0,0,-0.38093 -99043,1011:229:4,119.5,2.5,0,0,-0.346639 -99044,1012:120:3,120,2.5,0,0,-0.333698 -99045,1012:120:4,120.5,2.5,0,0,-0.344343 -99046,1012:121:3,121,2.5,0,0,-0.341496 -99047,1012:121:4,121.5,2.5,0,0,-0.356036 -99048,1012:122:3,122,2.5,0,0,-0.214531 -99049,1012:123:3,123,2.5,0,0,-0.197602 -99050,1012:123:4,123.5,2.5,0,0,-0.184499 -99051,1012:124:3,124,2.5,0,0,-0.178978 -99052,1012:227:3,127,2.5,0,0,-0.280763 -99053,1012:227:4,127.5,2.5,0,0,-0.429383 -99054,1012:228:3,128,2.5,0,0,-0.635115 -99055,1012:228:4,128.5,2.5,0,0,-0.801619 -99056,1012:229:3,129,2.5,0,0,-0.929047 -99057,1012:229:4,129.5,2.5,0,0,-0.95009 -99058,1013:120:3,130,2.5,0,0,-0.845121 -99059,1013:120:4,130.5,2.5,0,0,-0.785105 -99060,1013:121:3,131,2.5,0,0,-0.796031 -99061,1013:121:4,131.5,2.5,0,0,-0.851124 -99062,1013:122:3,132,2.5,0,0,-0.929047 -99063,1013:122:4,132.5,2.5,0,0,-1.01392 -99064,1013:123:3,133,2.5,0,0,-1.12483 -99065,1013:123:4,133.5,2.5,0,0,-1.22323 -99066,1013:124:3,134,2.5,0,0,-1.24466 -99067,1013:124:4,134.5,2.5,0,0,-1.01791 -99068,1013:225:3,135,2.5,0,0,-1.58437 -99069,1013:225:4,135.5,2.5,0,0,-2.05393 -99070,1013:226:3,136,2.5,0,0,-2.20871 -99071,1013:226:4,136.5,2.5,0,0,-2.23613 -99072,1013:227:3,137,2.5,0,0,-2.49701 -99073,1013:227:4,137.5,2.5,0,0,-3.64913 -99074,1013:228:3,138,2.5,0,0,-3.10876 -99075,1013:228:4,138.5,2.5,0,0,-1.64968 -99076,1013:229:3,139,2.5,0,0,-0.964552 -99077,1013:229:4,139.5,2.5,0,0,-0.698171 -99078,1014:120:3,140,2.5,0,0,-0.710385 -99079,1014:120:4,140.5,2.5,0,0,-0.801619 -99080,1014:121:3,141,2.5,0,0,-0.898653 -99081,1014:121:4,141.5,2.5,0,0,-0.925572 -99082,1014:122:3,142,2.5,0,0,-0.953703 -99083,1014:122:4,142.5,2.5,0,0,-0.964552 -99084,1014:123:3,143,2.5,0,0,-0.968247 -99085,1014:123:4,143.5,2.5,0,0,-0.998346 -99086,1014:124:3,144,2.5,0,0,-1.04217 -99087,1014:124:4,144.5,2.5,0,0,-1.09774 -99088,1014:225:4,145.5,2.5,0,0,-1.05457 -99089,1014:226:3,146,2.5,0,0,-1.37899 -99090,1014:226:4,146.5,2.5,0,0,-1.71042 -99091,1014:227:3,147,2.5,0,0,-2.03014 -99092,1014:227:4,147.5,2.5,0,0,-2.27859 -99093,1014:228:3,148,2.5,0,0,-2.53137 -99094,1014:228:4,148.5,2.5,0,0,-3.13377 -99095,1014:229:3,149,2.5,0,0,-3.7844 -99096,1014:229:4,149.5,2.5,0,0,-5.95017 -99097,1015:120:3,150,2.5,0,0,-6.56424 -99098,1015:120:4,150.5,2.5,0,0,-6.37632 -99099,1015:121:3,151,2.5,0,0,-5.36961 -99100,1015:121:4,151.5,2.5,0,0,-4.83019 -99101,1015:122:4,152.5,2.5,0,0,-4.16587 -99102,1015:123:3,153,2.5,0,0,-4.29357 -99103,1015:123:4,153.5,2.5,0,0,-4.47573 -99104,1015:124:3,154,2.5,0,0,-4.47573 -99105,1015:124:4,154.5,2.5,0,0,-3.8549 -99106,1015:225:3,155,2.5,0,0,-3.13377 -99107,1015:226:3,156,2.5,0,0,-2.96716 -99108,1015:226:4,156.5,2.5,0,0,-3.34562 -99109,1015:227:3,157,2.5,0,0,-3.21017 -99110,1015:227:4,157.5,2.5,0,0,-2.63834 -99111,1015:228:3,158,2.5,0,0,-1.9168 -99112,1015:228:4,158.5,2.5,0,0,-1.26652 -99113,1015:229:3,159,2.5,0,0,-1.0715 -99114,1015:229:4,159.5,2.5,0,0,-1.41127 -99115,1016:120:3,160,2.5,0,0,-1.84375 -99116,1016:120:4,160.5,2.5,0,0,-2.18143 -99117,1016:121:3,161,2.5,0,0,-2.25028 -99118,1016:121:4,161.5,2.5,0,0,-2.01824 -99119,1016:122:3,162,2.5,0,0,-1.61649 -99120,1016:122:4,162.5,2.5,0,0,-1.30036 -99121,1016:123:3,163,2.5,0,0,-1.09328 -99122,1016:123:4,163.5,2.5,0,0,-0.986926 -99123,1016:124:3,164,2.5,0,0,-0.922117 -99124,1016:124:4,164.5,2.5,0,0,-0.879166 -99125,1016:225:3,165,2.5,0,0,-0.836097 -99126,1016:225:4,165.5,2.5,0,0,-0.839089 -99127,1016:226:3,166,2.5,0,0,-0.875962 -99128,1016:226:4,166.5,2.5,0,0,-0.946498 -99129,1016:227:3,167,2.5,0,0,-1.02191 -99130,1016:227:4,167.5,2.5,0,0,-1.05457 -99131,1016:228:3,168,2.5,0,0,-1.03395 -99132,1016:228:4,168.5,2.5,0,0,-0.901879 -99133,1016:229:4,169.5,2.5,0,0,-0.457032 -99134,1017:120:3,170,2.5,0,0,-0.41024 -99135,1017:120:4,170.5,2.5,0,0,-0.405284 -99136,1017:121:3,171,2.5,0,0,-0.593488 -99137,1017:121:4,171.5,2.5,0,0,-0.851124 -99138,1017:122:3,172,2.5,0,0,-0.708665 -99139,1017:122:4,172.5,2.5,0,0,-0.559806 -99140,1017:123:3,173,2.5,0,0,-0.559806 -99141,1017:123:4,173.5,2.5,0,0,-0.675289 -99142,1017:124:3,174,2.5,0,0,-0.986926 -99143,1017:124:4,174.5,2.5,0,0,-1.59213 -99144,1017:225:3,175,2.5,0,0,-2.38378 -99145,1017:225:4,175.5,2.5,0,0,-2.7742 -99146,1017:226:3,176,2.5,0,0,-2.32288 -99147,1017:226:4,176.5,2.5,0,0,-1.60018 -99148,1017:227:3,177,2.5,0,0,-1.03395 -99149,1017:227:4,177.5,2.5,0,0,-0.685157 -99150,1017:228:3,178,2.5,0,0,-0.52867 -99151,1017:228:4,178.5,2.5,0,0,-0.444919 -99152,1017:229:3,179,2.5,0,0,-0.425609 -99153,1017:229:4,179.5,2.5,0,0,-0.453758 -99154,1018:120:3,180,2.5,0,0,-0.503542 -99155,7018:130:1,-180,3,0,0,-0.326106 -99156,7017:239:2,-179.5,3,0,0,-0.368844 -99157,7017:239:1,-179,3,0,0,-0.39423 -99158,7017:238:2,-178.5,3,0,0,-0.390174 -99159,7017:238:1,-178,3,0,0,-0.361458 -99160,7017:237:2,-177.5,3,0,0,-0.332042 -99161,7017:237:1,-177,3,0,0,-0.309057 -99162,7017:236:2,-176.5,3,0,0,-0.296855 -99163,7017:236:1,-176,3,0,0,-0.284798 -99164,7017:235:2,-175.5,3,0,0,-0.271621 -99165,7017:235:1,-175,3,0,0,-0.253999 -99166,7017:134:2,-174.5,3,0,0,-0.234487 -99167,7017:134:1,-174,3,0,0,-0.218264 -99168,7017:133:2,-173.5,3,0,0,-0.210452 -99169,7017:133:1,-173,3,0,0,-0.210987 -99170,7017:132:2,-172.5,3,0,0,-0.213434 -99171,7017:132:1,-172,3,0,0,-0.214263 -99172,7017:131:2,-171.5,3,0,0,-0.232359 -99173,7017:131:1,-171,3,0,0,-0.241779 -99174,7017:130:2,-170.5,3,0,0,-0.22507 -99175,7017:130:1,-170,3,0,0,-0.222767 -99176,7016:239:2,-169.5,3,0,0,-0.215727 -99177,7016:239:1,-169,3,0,0,-0.200799 -99178,7016:238:2,-168.5,3,0,0,-0.196144 -99179,7016:238:1,-168,3,0,0,-0.193956 -99180,7016:237:2,-167.5,3,0,0,-0.192881 -99181,7016:237:1,-167,3,0,0,-0.19309 -99182,7016:236:2,-166.5,3,0,0,-0.194959 -99183,7016:236:1,-166,3,0,0,-0.196583 -99184,7016:235:2,-165.5,3,0,0,-0.198002 -99185,7016:235:1,-165,3,0,0,-0.198803 -99187,7016:134:1,-164,3,0,0,-0.199973 -99188,7016:133:2,-163.5,3,0,0,-0.199973 -99189,7016:133:1,-163,3,0,0,-0.202389 -99190,7016:132:2,-162.5,3,0,0,-0.208154 -99191,7016:132:1,-162,3,0,0,-0.21207 -99192,7016:131:2,-161.5,3,0,0,-0.211805 -99193,7016:131:1,-161,3,0,0,-0.207899 -99194,7016:130:2,-160.5,3,0,0,-0.202023 -99195,7016:130:1,-160,3,0,0,-0.19818 -99196,7015:239:2,-159.5,3,0,0,-0.196981 -99197,7015:239:1,-159,3,0,0,-0.19654 -99198,7015:238:2,-158.5,3,0,0,-0.19654 -99199,7015:238:1,-158,3,0,0,-0.19654 -99200,7015:237:2,-157.5,3,0,0,-0.196583 -99201,7015:237:1,-157,3,0,0,-0.196628 -99202,7015:236:2,-156.5,3,0,0,-0.196452 -99203,7015:236:1,-156,3,0,0,-0.196452 -99204,7015:235:2,-155.5,3,0,0,-0.19632 -99205,7015:235:1,-155,3,0,0,-0.196231 -99206,7015:134:2,-154.5,3,0,0,-0.196583 -99207,7015:134:1,-154,3,0,0,-0.197735 -99208,7015:133:2,-153.5,3,0,0,-0.198646 -99209,7015:133:1,-153,3,0,0,-0.2003 -99210,7015:132:2,-152.5,3,0,0,-0.199973 -99211,7015:132:1,-152,3,0,0,-0.197158 -99212,7015:131:2,-151.5,3,0,0,-0.193392 -99213,7015:131:1,-151,3,0,0,-0.190244 -99214,7015:130:2,-150.5,3,0,0,-0.187595 -99215,7015:130:1,-150,3,0,0,-0.186783 -99216,7014:239:2,-149.5,3,0,0,-0.187674 -99217,7014:239:1,-149,3,0,0,-0.18894 -99218,7014:238:2,-148.5,3,0,0,-0.189711 -99219,7014:238:1,-148,3,0,0,-0.190164 -99220,7014:237:2,-147.5,3,0,0,-0.190351 -99221,7014:237:1,-147,3,0,0,-0.190779 -99222,7014:236:2,-146.5,3,0,0,-0.191504 -99223,7014:236:1,-146,3,0,0,-0.192042 -99224,7014:235:2,-145.5,3,0,0,-0.192313 -99225,7014:235:1,-145,3,0,0,-0.191962 -99226,7014:134:2,-144.5,3,0,0,-0.191127 -99227,7014:134:1,-144,3,0,0,-0.190164 -99228,7014:133:2,-143.5,3,0,0,-0.189365 -99229,7014:133:1,-143,3,0,0,-0.188702 -99230,7014:132:2,-142.5,3,0,0,-0.187858 -99231,7014:132:1,-142,3,0,0,-0.187071 -99232,7014:131:2,-141.5,3,0,0,-0.186287 -99233,7014:131:1,-141,3,0,0,-0.186235 -99234,7014:130:2,-140.5,3,0,0,-0.187228 -99235,7014:130:1,-140,3,0,0,-0.188861 -99236,7013:239:2,-139.5,3,0,0,-0.190752 -99237,7013:239:1,-139,3,0,0,-0.192556 -99238,7013:238:2,-138.5,3,0,0,-0.194261 -99239,7013:238:1,-138,3,0,0,-0.195178 -99240,7013:237:2,-137.5,3,0,0,-0.195003 -99241,7013:237:1,-137,3,0,0,-0.19461 -99242,7013:236:2,-136.5,3,0,0,-0.194391 -99243,7013:236:1,-136,3,0,0,-0.194261 -99244,7013:235:2,-135.5,3,0,0,-0.19387 -99245,7013:235:1,-135,3,0,0,-0.192854 -99246,7013:134:2,-134.5,3,0,0,-0.191854 -99247,7013:134:1,-134,3,0,0,-0.190779 -99248,7013:133:2,-133.5,3,0,0,-0.189631 -99249,7013:133:1,-133,3,0,0,-0.188702 -99250,7013:132:2,-132.5,3,0,0,-0.188121 -99251,7013:132:1,-132,3,0,0,-0.187674 -99252,7013:131:2,-131.5,3,0,0,-0.187307 -99253,7013:131:1,-131,3,0,0,-0.187097 -99254,7013:130:2,-130.5,3,0,0,-0.18799 -99255,7013:130:1,-130,3,0,0,-0.189498 -99256,7012:239:2,-129.5,3,0,0,-0.191181 -99257,7012:239:1,-129,3,0,0,-0.192177 -99258,7012:238:2,-128.5,3,0,0,-0.192773 -99259,7012:238:1,-128,3,0,0,-0.193219 -99260,7012:237:2,-127.5,3,0,0,-0.193046 -99261,7012:237:1,-127,3,0,0,-0.192692 -99262,7012:236:2,-126.5,3,0,0,-0.19234 -99263,7012:236:1,-126,3,0,0,-0.192421 -99264,7012:235:2,-125.5,3,0,0,-0.192881 -99265,7012:235:1,-125,3,0,0,-0.194087 -99266,7012:134:2,-124.5,3,0,0,-0.195397 -99267,7012:134:1,-124,3,0,0,-0.196407 -99268,7012:133:2,-123.5,3,0,0,-0.197026 -99269,7012:133:1,-123,3,0,0,-0.197514 -99270,7012:132:2,-122.5,3,0,0,-0.197914 -99271,7012:132:1,-122,3,0,0,-0.197869 -99272,7012:131:2,-121.5,3,0,0,-0.197469 -99273,7012:131:1,-121,3,0,0,-0.197115 -99274,7012:130:2,-120.5,3,0,0,-0.196981 -99275,7012:130:1,-120,3,0,0,-0.197337 -99276,7011:239:2,-119.5,3,0,0,-0.198359 -99277,7011:239:1,-119,3,0,0,-0.199973 -99278,7011:238:2,-118.5,3,0,0,-0.203685 -99279,7011:238:1,-118,3,0,0,-0.208154 -99280,7011:237:2,-117.5,3,0,0,-0.207644 -99281,7011:237:1,-117,3,0,0,-0.204639 -99282,7011:236:2,-116.5,3,0,0,-0.200466 -99283,7011:236:1,-116,3,0,0,-0.198359 -99284,7011:235:2,-115.5,3,0,0,-0.197469 -99285,7011:235:1,-115,3,0,0,-0.196894 -99286,7011:134:2,-114.5,3,0,0,-0.196672 -99287,7011:134:1,-114,3,0,0,-0.196628 -99288,7011:133:2,-113.5,3,0,0,-0.196805 -99289,7011:133:1,-113,3,0,0,-0.196672 -99290,7011:132:2,-112.5,3,0,0,-0.196011 -99291,7011:132:1,-112,3,0,0,-0.19387 -99292,7011:131:2,-111.5,3,0,0,-0.191692 -99293,7011:131:1,-111,3,0,0,-0.19011 -99294,7011:130:2,-110.5,3,0,0,-0.189073 -99295,7011:130:1,-110,3,0,0,-0.188201 -99296,7010:239:2,-109.5,3,0,0,-0.187385 -99297,7010:239:1,-109,3,0,0,-0.1866 -99298,7010:238:2,-108.5,3,0,0,-0.185222 -99299,7010:238:1,-108,3,0,0,-0.184139 -99300,7010:237:2,-107.5,3,0,0,-0.183472 -99301,7010:237:1,-107,3,0,0,-0.182909 -99302,7010:236:2,-106.5,3,0,0,-0.182654 -99303,7010:236:1,-106,3,0,0,-0.182603 -99304,7010:235:2,-105.5,3,0,0,-0.182782 -99305,7010:235:1,-105,3,0,0,-0.183063 -99306,7010:134:2,-104.5,3,0,0,-0.183063 -99307,7010:134:1,-104,3,0,0,-0.182629 -99308,7010:133:2,-103.5,3,0,0,-0.181816 -99309,7010:133:1,-103,3,0,0,-0.18073 -99310,7010:132:2,-102.5,3,0,0,-0.179054 -99311,7010:132:1,-102,3,0,0,-0.177542 -99312,7010:131:2,-101.5,3,0,0,-0.175242 -99313,7010:131:1,-101,3,0,0,-0.172118 -99314,7010:130:2,-100.5,3,0,0,-0.170132 -99315,7010:130:1,-100,3,0,0,-0.168894 -99316,7009:239:2,-99.5,3,0,0,-0.169126 -99317,7009:239:1,-99,3,0,0,-0.170344 -99318,7009:238:2,-98.5,3,0,0,-0.171524 -99319,7009:238:1,-98,3,0,0,-0.172427 -99320,7009:237:2,-97.5,3,0,0,-0.173432 -99321,7009:237:1,-97,3,0,0,-0.174225 -99322,7009:236:2,-96.5,3,0,0,-0.174757 -99323,7009:236:1,-96,3,0,0,-0.175145 -99324,7009:235:2,-95.5,3,0,0,-0.175729 -99325,7009:235:1,-95,3,0,0,-0.176094 -99326,7009:134:2,-94.5,3,0,0,-0.176805 -99327,7009:134:1,-94,3,0,0,-0.178432 -99328,7009:133:2,-93.5,3,0,0,-0.180177 -99329,7009:133:1,-93,3,0,0,-0.182298 -99330,7009:132:2,-92.5,3,0,0,-0.183011 -99331,7009:132:1,-92,3,0,0,-0.182654 -99332,7009:131:2,-91.5,3,0,0,-0.181816 -99333,7009:131:1,-91,3,0,0,-0.180554 -99334,7009:130:2,-90.5,3,0,0,-0.178457 -99335,7009:130:1,-90,3,0,0,-0.177001 -99336,7008:239:2,-89.5,3,0,0,-0.179302 -99337,7008:239:1,-89,3,0,0,-0.183139 -99338,7008:238:2,-88.5,3,0,0,-0.1877 -99339,7008:238:1,-88,3,0,0,-0.191692 -99340,7008:237:2,-87.5,3,0,0,-0.19544 -99341,7008:237:1,-87,3,0,0,-0.201314 -99342,7008:236:2,-86.5,3,0,0,-0.267403 -99343,7008:236:1,-86,3,0,0,-0.407395 -99344,7008:235:2,-85.5,3,0,0,-0.575199 -99345,7008:235:1,-85,3,0,0,-0.717269 -99346,7008:134:2,-84.5,3,0,0,-0.801619 -99347,7008:134:1,-84,3,0,0,-0.946498 -99348,7008:133:2,-83.5,3,0,0,-0.615049 -99349,7008:133:1,-83,3,0,0,-0.581948 -99350,7008:132:2,-82.5,3,0,0,-0.558721 -99351,7008:130:1,-80,3,0,0,-0.64814 -99352,7007:239:2,-79.5,3,0,0,-0.484402 -99353,7007:239:1,-79,3,0,0,-0.426365 -99354,7007:238:2,-78.5,3,0,0,-0.360846 -99355,7005:239:1,-59,3,0,0,-0.178904 -99356,7005:238:2,-58.5,3,0,0,-0.172761 -99357,7005:238:1,-58,3,0,0,-0.173768 -99358,7005:237:2,-57.5,3,0,0,-0.178185 -99359,7005:237:1,-57,3,0,0,-0.181158 -99360,7005:236:2,-56.5,3,0,0,-0.181993 -99361,7005:236:1,-56,3,0,0,-0.181892 -99362,7005:235:2,-55.5,3,0,0,-0.18174 -99363,7005:235:1,-55,3,0,0,-0.181437 -99364,7005:134:2,-54.5,3,0,0,-0.183497 -99365,7005:134:1,-54,3,0,0,-0.185533 -99366,7005:133:2,-53.5,3,0,0,-0.186418 -99367,7005:133:1,-53,3,0,0,-0.186443 -99368,7005:132:2,-52.5,3,0,0,-0.186209 -99369,7005:132:1,-52,3,0,0,-0.185429 -99370,7005:131:2,-51.5,3,0,0,-0.184473 -99371,7005:131:1,-51,3,0,0,-0.184242 -99372,7005:130:2,-50.5,3,0,0,-0.183113 -99373,7005:130:1,-50,3,0,0,-0.182909 -99374,7004:239:2,-49.5,3,0,0,-0.183037 -99375,7004:239:1,-49,3,0,0,-0.184989 -99376,7004:238:2,-48.5,3,0,0,-0.184344 -99377,7004:238:1,-48,3,0,0,-0.183293 -99378,7004:237:2,-47.5,3,0,0,-0.182756 -99379,7004:237:1,-47,3,0,0,-0.182909 -99380,7004:236:2,-46.5,3,0,0,-0.182807 -99381,7004:236:1,-46,3,0,0,-0.182019 -99382,7004:235:2,-45.5,3,0,0,-0.181613 -99383,7004:235:1,-45,3,0,0,-0.181562 -99384,7004:134:2,-44.5,3,0,0,-0.181386 -99385,7004:134:1,-44,3,0,0,-0.180856 -99386,7004:133:2,-43.5,3,0,0,-0.179902 -99387,7004:133:1,-43,3,0,0,-0.180328 -99388,7004:132:2,-42.5,3,0,0,-0.179577 -99389,7004:132:1,-42,3,0,0,-0.178234 -99390,7004:131:2,-41.5,3,0,0,-0.177369 -99391,7004:131:1,-41,3,0,0,-0.177099 -99392,7004:130:2,-40.5,3,0,0,-0.177321 -99393,7004:130:1,-40,3,0,0,-0.177838 -99394,7003:239:2,-39.5,3,0,0,-0.178259 -99395,7003:239:1,-39,3,0,0,-0.17811 -99396,7003:238:2,-38.5,3,0,0,-0.176903 -99397,7003:238:1,-38,3,0,0,-0.174491 -99398,7003:237:2,-37.5,3,0,0,-0.172547 -99399,7003:237:1,-37,3,0,0,-0.171051 -99400,7003:236:2,-36.5,3,0,0,-0.17065 -99401,7003:236:1,-36,3,0,0,-0.171999 -99402,7003:235:2,-35.5,3,0,0,-0.173407 -99403,7003:235:1,-35,3,0,0,-0.173576 -99404,7003:134:2,-34.5,3,0,0,-0.172379 -99405,7003:134:1,-34,3,0,0,-0.17098 -99406,7003:133:2,-33.5,3,0,0,-0.170838 -99407,7003:133:1,-33,3,0,0,-0.171382 -99408,7003:132:2,-32.5,3,0,0,-0.170485 -99409,7003:132:1,-32,3,0,0,-0.171547 -99410,7003:131:2,-31.5,3,0,0,-0.173576 -99411,7003:131:1,-31,3,0,0,-0.173528 -99412,7003:130:2,-30.5,3,0,0,-0.17324 -99413,7003:130:1,-30,3,0,0,-0.174057 -99414,7002:239:2,-29.5,3,0,0,-0.174467 -99415,7002:239:1,-29,3,0,0,-0.174516 -99416,7002:238:2,-28.5,3,0,0,-0.174225 -99417,7002:238:1,-28,3,0,0,-0.174418 -99418,7002:237:2,-27.5,3,0,0,-0.174491 -99419,7002:237:1,-27,3,0,0,-0.175802 -99420,7002:236:2,-26.5,3,0,0,-0.178309 -99421,7002:236:1,-26,3,0,0,-0.179278 -99422,7002:235:2,-25.5,3,0,0,-0.179078 -99423,7002:235:1,-25,3,0,0,-0.178978 -99424,7002:134:2,-24.5,3,0,0,-0.179178 -99425,7002:134:1,-24,3,0,0,-0.180203 -99426,7002:133:2,-23.5,3,0,0,-0.182298 -99427,7002:133:1,-23,3,0,0,-0.184293 -99428,7002:132:2,-22.5,3,0,0,-0.186105 -99429,7002:132:1,-22,3,0,0,-0.188201 -99430,7002:131:2,-21.5,3,0,0,-0.189737 -99431,7002:131:1,-21,3,0,0,-0.1911 -99432,7002:130:2,-20.5,3,0,0,-0.192828 -99433,7002:130:1,-20,3,0,0,-0.196144 -99434,7001:239:2,-19.5,3,0,0,-0.205991 -99435,7001:239:1,-19,3,0,0,-0.252431 -99436,7001:238:2,-18.5,3,0,0,-0.312065 -99437,7001:238:1,-18,3,0,0,-0.360846 -99438,7001:237:2,-17.5,3,0,0,-0.401082 -99439,7001:237:1,-17,3,0,0,-0.452939 -99440,7001:236:2,-16.5,3,0,0,-0.526664 -99441,7001:236:1,-16,3,0,0,-0.642894 -99442,7001:235:2,-15.5,3,0,0,-0.725999 -99443,7001:235:1,-15,3,0,0,-0.619982 -99444,7001:134:2,-14.5,3,0,0,-0.618734 -99445,7001:134:1,-14,3,0,0,-2.65712 -99446,7001:133:2,-13.5,3,0,0,2.17196 -99447,1005:130:1,50,3,0,0,-0.177912 -99448,1005:130:2,50.5,3,0,0,-0.178556 -99449,1005:131:1,51,3,0,0,-0.179777 -99450,1005:131:2,51.5,3,0,0,-0.178556 -99451,1005:132:1,52,3,0,0,-0.177987 -99452,1005:132:2,52.5,3,0,0,-0.178432 -99453,1005:133:1,53,3,0,0,-0.180152 -99454,1005:133:2,53.5,3,0,0,-0.183395 -99455,1005:134:1,54,3,0,0,-0.189472 -99456,1005:134:2,54.5,3,0,0,-0.19413 -99457,1005:235:1,55,3,0,0,-0.193306 -99458,1005:235:2,55.5,3,0,0,-0.191234 -99459,1005:236:1,56,3,0,0,-0.188571 -99460,1005:236:2,56.5,3,0,0,-0.188174 -99461,1005:237:1,57,3,0,0,-0.191127 -99462,1005:237:2,57.5,3,0,0,-0.196938 -99463,1005:238:1,58,3,0,0,-0.221142 -99464,1005:238:2,58.5,3,0,0,-0.26408 -99465,1005:239:1,59,3,0,0,-0.301663 -99466,1005:239:2,59.5,3,0,0,-0.340944 -99467,1006:130:1,60,3,0,0,-0.328251 -99468,1006:130:2,60.5,3,0,0,-0.283903 -99469,1006:131:1,61,3,0,0,-0.246659 -99470,1006:131:2,61.5,3,0,0,-0.234487 -99471,1006:132:1,62,3,0,0,-0.217624 -99472,1006:132:2,62.5,3,0,0,-0.201314 -99473,1006:133:1,63,3,0,0,-0.19875 -99474,1006:133:2,63.5,3,0,0,-0.210724 -99475,1006:134:1,64,3,0,0,-0.241406 -99476,1006:134:2,64.5,3,0,0,-0.275059 -99477,1006:235:1,65,3,0,0,-0.300688 -99478,1006:235:2,65.5,3,0,0,-0.326106 -99479,1006:236:1,66,3,0,0,-0.345498 -99480,1006:236:2,66.5,3,0,0,-0.35662 -99481,1006:237:1,67,3,0,0,-0.369454 -99482,1006:237:2,67.5,3,0,0,-0.396268 -99483,1006:238:1,68,3,0,0,-0.411683 -99484,1006:238:2,68.5,3,0,0,-0.421902 -99485,1006:239:1,69,3,0,0,-0.440178 -99486,1006:239:2,69.5,3,0,0,-0.482617 -99487,1007:130:1,70,3,0,0,-0.532682 -99488,1007:130:2,70.5,3,0,0,-0.577425 -99489,1007:131:1,71,3,0,0,-0.61749 -99490,1007:131:2,71.5,3,0,0,-0.574073 -99491,1007:132:1,72,3,0,0,-0.457032 -99492,1007:132:2,72.5,3,0,0,-0.373874 -99493,1007:133:2,73.5,3,0,0,-0.335906 -99494,1007:134:1,74,3,0,0,-0.304597 -99495,1007:134:2,74.5,3,0,0,-0.266142 -99496,1007:235:1,75,3,0,0,-0.262026 -99497,1007:235:2,75.5,3,0,0,-0.259991 -99498,1007:236:1,76,3,0,0,-0.264483 -99499,1007:236:2,76.5,3,0,0,-0.253615 -99500,1007:237:1,77,3,0,0,-0.259177 -99501,1007:238:2,78.5,3,0,0,-0.20717 -99502,1007:239:1,79,3,0,0,-0.313086 -99503,1007:239:2,79.5,3,0,0,-0.371348 -99504,1008:130:1,80,3,0,0,-0.243267 -99505,1008:132:1,82,3,0,0,-0.182146 -99506,1008:132:2,82.5,3,0,0,-0.185455 -99507,1008:133:1,83,3,0,0,-0.196144 -99508,1008:133:2,83.5,3,0,0,-0.263665 -99509,1008:134:1,84,3,0,0,-0.241033 -99510,1008:134:2,84.5,3,0,0,-0.235209 -99511,1008:235:1,85,3,0,0,-0.238835 -99512,1008:235:2,85.5,3,0,0,-0.232716 -99513,1008:236:1,86,3,0,0,-0.228501 -99514,1008:236:2,86.5,3,0,0,-0.243267 -99515,1008:237:1,87,3,0,0,-0.252038 -99516,1008:237:2,87.5,3,0,0,-0.254793 -99517,1008:238:1,88,3,0,0,-0.254793 -99518,1008:238:2,88.5,3,0,0,-0.247798 -99519,1008:239:1,89,3,0,0,-0.22885 -99520,1008:239:2,89.5,3,0,0,-0.227119 -99521,1009:130:1,90,3,0,0,-0.231294 -99522,1009:130:2,90.5,3,0,0,-0.232359 -99523,1009:131:1,91,3,0,0,-0.235922 -99524,1009:131:2,91.5,3,0,0,-0.250876 -99525,1009:132:1,92,3,0,0,-0.274637 -99526,1009:132:2,92.5,3,0,0,-0.296391 -99527,1009:133:1,93,3,0,0,-0.295437 -99528,1009:133:2,93.5,3,0,0,-0.266142 -99529,1009:134:1,94,3,0,0,-0.258379 -99530,1009:134:2,94.5,3,0,0,-0.281211 -99531,1009:235:1,95,3,0,0,-0.276812 -99532,1009:235:2,95.5,3,0,0,-0.272051 -99533,1009:236:1,96,3,0,0,-0.287071 -99534,1009:236:2,96.5,3,0,0,-0.305077 -99535,1009:237:1,97,3,0,0,-0.342066 -99536,1009:237:2,97.5,3,0,0,-0.388177 -99537,1009:238:1,98,3,0,0,-0.365739 -99538,1009:238:2,98.5,3,0,0,-0.340375 -99539,1010:131:1,101,3,0,0,-0.194654 -99540,1010:131:2,101.5,3,0,0,-0.194784 -99541,1010:132:1,102,3,0,0,-0.194654 -99542,1010:132:2,102.5,3,0,0,-0.195222 -99543,1010:133:1,103,3,0,0,-0.19094 -99544,1010:133:2,103.5,3,0,0,-0.191423 -99545,1010:134:1,104,3,0,0,-0.18342 -99546,1010:134:2,104.5,3,0,0,-0.175388 -99547,1010:235:1,105,3,0,0,-0.17018 -99548,1010:235:2,105.5,3,0,0,-0.168081 -99549,1010:236:1,106,3,0,0,-0.167319 -99550,1010:236:2,106.5,3,0,0,-0.166515 -99551,1010:237:1,107,3,0,0,-0.16567 -99552,1010:237:2,107.5,3,0,0,-0.165261 -99553,1010:238:1,108,3,0,0,-0.165579 -99554,1010:238:2,108.5,3,0,0,-0.17072 -99555,1010:239:1,109,3,0,0,-0.178507 -99556,1010:239:2,109.5,3,0,0,-0.185637 -99557,1011:130:1,110,3,0,0,-0.19296 -99558,1011:130:2,110.5,3,0,0,-0.205216 -99559,1011:131:1,111,3,0,0,-0.253615 -99560,1011:131:2,111.5,3,0,0,-0.28256 -99561,1011:132:1,112,3,0,0,-0.269509 -99562,1011:132:2,112.5,3,0,0,-0.270349 -99563,1011:133:1,113,3,0,0,-0.295913 -99564,1011:133:2,113.5,3,0,0,-0.319251 -99565,1011:134:1,114,3,0,0,-0.314095 -99566,1011:134:2,114.5,3,0,0,-0.331509 -99567,1011:235:1,115,3,0,0,-0.353067 -99568,1011:235:2,115.5,3,0,0,-0.380296 -99569,1011:236:1,116,3,0,0,-0.416741 -99570,1011:236:2,116.5,3,0,0,-0.415297 -99571,1011:237:1,117,3,0,0,-0.437843 -99572,1011:238:1,118,3,0,0,-0.457032 -99573,1011:238:2,118.5,3,0,0,-0.404576 -99574,1011:239:1,119,3,0,0,-0.373874 -99575,1011:239:2,119.5,3,0,0,-0.342638 -99576,1012:130:1,120,3,0,0,-0.297334 -99577,1012:130:2,120.5,3,0,0,-0.266561 -99578,1012:131:1,121,3,0,0,-0.245146 -99579,1012:131:2,121.5,3,0,0,-0.261205 -99580,1012:132:1,122,3,0,0,-0.274637 -99581,1012:132:2,122.5,3,0,0,-0.1911 -99582,1012:133:1,123,3,0,0,-0.183882 -99583,1012:237:1,127,3,0,0,-0.288904 -99584,1012:237:2,127.5,3,0,0,-0.386839 -99585,1012:238:1,128,3,0,0,-0.533699 -99586,1012:238:2,128.5,3,0,0,-0.623708 -99587,1012:239:1,129,3,0,0,-0.68091 -99588,1012:239:2,129.5,3,0,0,-0.72072 -99589,1013:130:1,130,3,0,0,-0.731661 -99590,1013:130:2,130.5,3,0,0,-0.727843 -99591,1013:131:1,131,3,0,0,-0.717269 -99592,1013:131:2,131.5,3,0,0,-0.705556 -99593,1013:132:1,132,3,0,0,-0.707056 -99594,1013:132:2,132.5,3,0,0,-0.705556 -99595,1013:133:1,133,3,0,0,-0.70113 -99596,1013:133:2,133.5,3,0,0,-0.690938 -99597,1013:134:1,134,3,0,0,-0.693809 -99598,1013:134:2,134.5,3,0,0,-0.715526 -99599,1013:235:1,135,3,0,0,-0.790583 -99600,1013:235:2,135.5,3,0,0,-1.11574 -99601,1013:236:1,136,3,0,0,-1.37899 -99602,1013:236:2,136.5,3,0,0,-1.43793 -99603,1013:237:1,137,3,0,0,-1.71947 -99604,1013:237:2,137.5,3,0,0,-2.11607 -99605,1013:238:1,138,3,0,0,-2.10331 -99606,1013:238:2,138.5,3,0,0,-1.45167 -99607,1013:239:1,139,3,0,0,-0.798818 -99608,1013:239:2,139.5,3,0,0,-0.637706 -99609,1014:130:1,140,3,0,0,-0.657456 -99610,1014:130:2,140.5,3,0,0,-0.689486 -99611,1014:131:1,141,3,0,0,-0.698171 -99612,1014:131:2,141.5,3,0,0,-0.693809 -99613,1014:132:1,142,3,0,0,-0.696742 -99614,1014:132:2,142.5,3,0,0,-0.689486 -99615,1014:133:1,143,3,0,0,-0.690938 -99616,1014:133:2,143.5,3,0,0,-0.704061 -99617,1014:134:1,144,3,0,0,-0.715526 -99618,1014:134:2,144.5,3,0,0,-0.727843 -99619,1014:235:1,145,3,0,0,-0.729692 -99620,1014:235:2,145.5,3,0,0,-0.860292 -99621,1014:236:1,146,3,0,0,-1.08005 -99622,1014:236:2,146.5,3,0,0,-1.34786 -99623,1014:237:1,147,3,0,0,-1.53041 -99624,1014:237:2,147.5,3,0,0,-1.69254 -99625,1014:238:1,148,3,0,0,-1.89559 -99626,1014:238:2,148.5,3,0,0,-2.18143 -99627,1014:239:1,149,3,0,0,-1.49371 -99628,1014:239:2,149.5,3,0,0,-3.43147 -99629,1015:130:1,150,3,0,0,-2.43114 -99630,1015:130:2,150.5,3,0,0,-2.29319 -99631,1015:131:1,151,3,0,0,-2.87867 -99632,1015:131:2,151.5,3,0,0,-2.87867 -99633,1015:132:1,152,3,0,0,-3.15913 -99634,1015:132:2,152.5,3,0,0,-3.5842 -99635,1015:133:1,153,3,0,0,-3.71515 -99636,1015:133:2,153.5,3,0,0,-3.6164 -99637,1015:134:1,154,3,0,0,-3.18486 -99638,1015:134:2,154.5,3,0,0,-2.63834 -99639,1015:235:1,155,3,0,0,-2.18143 -99640,1015:235:2,155.5,3,0,0,-1.77489 -99641,1015:236:1,156,3,0,0,-1.76564 -99642,1015:236:2,156.5,3,0,0,-1.73753 -99643,1015:237:1,157,3,0,0,-1.43114 -99644,1015:237:2,157.5,3,0,0,-1.12483 -99645,1015:238:1,158,3,0,0,-0.979344 -99646,1015:238:2,158.5,3,0,0,-0.953703 -99647,1015:239:1,159,3,0,0,-1.00615 -99648,1015:239:2,159.5,3,0,0,-1.14351 -99649,1016:130:1,160,3,0,0,-1.21812 -99650,1016:130:2,160.5,3,0,0,-1.17749 -99651,1016:131:1,161,3,0,0,-1.02987 -99652,1016:131:2,161.5,3,0,0,-0.872776 -99653,1016:132:1,162,3,0,0,-0.750642 -99654,1016:132:2,162.5,3,0,0,-0.690938 -99655,1016:133:1,163,3,0,0,-0.658814 -99656,1016:133:2,163.5,3,0,0,-0.646813 -99657,1016:134:1,164,3,0,0,-0.637706 -99658,1016:134:2,164.5,3,0,0,-0.626236 -99659,1016:235:1,165,3,0,0,-0.626236 -99660,1016:235:2,165.5,3,0,0,-0.637706 -99661,1016:236:1,166,3,0,0,-0.660175 -99662,1016:236:2,166.5,3,0,0,-0.68091 -99663,1016:237:1,167,3,0,0,-0.695274 -99664,1016:237:2,167.5,3,0,0,-0.699648 -99665,1016:238:1,168,3,0,0,-0.712058 -99666,1016:238:2,168.5,3,0,0,-0.690938 -99667,1016:239:1,169,3,0,0,-0.39558 -99668,1016:239:2,169.5,3,0,0,-0.363282 -99669,1017:130:1,170,3,0,0,-0.391527 -99670,1017:130:2,170.5,3,0,0,-0.420412 -99671,1017:131:1,171,3,0,0,-0.542909 -99672,1017:131:2,171.5,3,0,0,-0.313086 -99673,1017:132:1,172,3,0,0,-0.242516 -99674,1017:132:2,172.5,3,0,0,-0.262838 -99675,1017:133:1,173,3,0,0,-0.304103 -99676,1017:133:2,173.5,3,0,0,-0.374514 -99677,1017:134:1,174,3,0,0,-0.460337 -99678,1017:134:2,174.5,3,0,0,-0.55127 -99679,1017:235:1,175,3,0,0,-0.62497 -99680,1017:235:2,175.5,3,0,0,-0.649471 -99681,1017:236:1,176,3,0,0,-0.616286 -99682,1017:236:2,176.5,3,0,0,-0.53571 -99683,1017:237:1,177,3,0,0,-0.412407 -99684,1017:237:2,177.5,3,0,0,-0.294501 -99685,1017:238:1,178,3,0,0,-0.229551 -99686,1017:238:2,178.5,3,0,0,-0.223425 -99687,1017:239:1,179,3,0,0,-0.24401 -99688,1017:239:2,179.5,3,0,0,-0.282998 -99689,1018:130:1,180,3,0,0,-0.326106 -99690,7018:130:3,-180,3.5,0,0,-0.235571 -99691,7017:239:4,-179.5,3.5,0,0,-0.249331 -99692,7017:239:3,-179,3.5,0,0,-0.249331 -99693,7017:238:4,-178.5,3.5,0,0,-0.239192 -99694,7017:238:3,-178,3.5,0,0,-0.223755 -99695,7017:237:4,-177.5,3.5,0,0,-0.217624 -99696,7017:237:3,-177,3.5,0,0,-0.214531 -99697,7017:236:4,-176.5,3.5,0,0,-0.209936 -99698,7017:236:3,-176,3.5,0,0,-0.201668 -99699,7017:235:4,-175.5,3.5,0,0,-0.197248 -99700,7017:235:3,-175,3.5,0,0,-0.194305 -99701,7017:134:4,-174.5,3.5,0,0,-0.192719 -99702,7017:134:3,-174,3.5,0,0,-0.192313 -99703,7017:133:4,-173.5,3.5,0,0,-0.192313 -99704,7017:133:3,-173,3.5,0,0,-0.193392 -99705,7017:132:4,-172.5,3.5,0,0,-0.194305 -99706,7017:132:3,-172,3.5,0,0,-0.19544 -99707,7017:131:4,-171.5,3.5,0,0,-0.195835 -99708,7017:131:3,-171,3.5,0,0,-0.195222 -99709,7017:130:4,-170.5,3.5,0,0,-0.19387 -99710,7017:130:3,-170,3.5,0,0,-0.192502 -99711,7016:239:4,-169.5,3.5,0,0,-0.190137 -99712,7016:239:3,-169,3.5,0,0,-0.187858 -99713,7016:238:4,-168.5,3.5,0,0,-0.186235 -99714,7016:238:3,-168,3.5,0,0,-0.185326 -99715,7016:237:4,-167.5,3.5,0,0,-0.185274 -99716,7016:237:3,-167,3.5,0,0,-0.185663 -99717,7016:236:4,-166.5,3.5,0,0,-0.186757 -99718,7016:236:3,-166,3.5,0,0,-0.187674 -99719,7016:235:4,-165.5,3.5,0,0,-0.188464 -99720,7016:235:3,-165,3.5,0,0,-0.188915 -99721,7016:134:4,-164.5,3.5,0,0,-0.189206 -99722,7016:134:3,-164,3.5,0,0,-0.189684 -99723,7016:133:4,-163.5,3.5,0,0,-0.190564 -99724,7016:133:3,-163,3.5,0,0,-0.191181 -99725,7016:132:4,-162.5,3.5,0,0,-0.191396 -99726,7016:132:3,-162,3.5,0,0,-0.191047 -99727,7016:131:4,-161.5,3.5,0,0,-0.19019 -99728,7016:131:3,-161,3.5,0,0,-0.189046 -99729,7016:130:4,-160.5,3.5,0,0,-0.187648 -99730,7016:130:3,-160,3.5,0,0,-0.186626 -99731,7015:239:4,-159.5,3.5,0,0,-0.185923 -99732,7015:239:3,-159,3.5,0,0,-0.185559 -99733,7015:238:4,-158.5,3.5,0,0,-0.185819 -99734,7015:238:3,-158,3.5,0,0,-0.18587 -99735,7015:237:4,-157.5,3.5,0,0,-0.185611 -99736,7015:237:3,-157,3.5,0,0,-0.1853 -99737,7015:236:4,-156.5,3.5,0,0,-0.185429 -99738,7015:236:3,-156,3.5,0,0,-0.186313 -99739,7015:235:4,-155.5,3.5,0,0,-0.187307 -99740,7015:235:3,-155,3.5,0,0,-0.187779 -99741,7015:134:4,-154.5,3.5,0,0,-0.188464 -99742,7015:134:3,-154,3.5,0,0,-0.188915 -99743,7015:133:4,-153.5,3.5,0,0,-0.188676 -99744,7015:133:3,-153,3.5,0,0,-0.187622 -99745,7015:132:4,-152.5,3.5,0,0,-0.185689 -99746,7015:132:3,-152,3.5,0,0,-0.182247 -99747,7015:131:4,-151.5,3.5,0,0,-0.178929 -99748,7015:131:3,-151,3.5,0,0,-0.177345 -99749,7015:130:4,-150.5,3.5,0,0,-0.176805 -99750,7015:130:3,-150,3.5,0,0,-0.177493 -99751,7014:239:4,-149.5,3.5,0,0,-0.179029 -99752,7014:239:3,-149,3.5,0,0,-0.180128 -99753,7014:238:4,-148.5,3.5,0,0,-0.180882 -99754,7014:238:3,-148,3.5,0,0,-0.181032 -99755,7014:237:4,-147.5,3.5,0,0,-0.181259 -99756,7014:237:3,-147,3.5,0,0,-0.18174 -99757,7014:236:4,-146.5,3.5,0,0,-0.182247 -99758,7014:236:3,-146,3.5,0,0,-0.182909 -99759,7014:235:4,-145.5,3.5,0,0,-0.182961 -99760,7014:235:3,-145,3.5,0,0,-0.182629 -99761,7014:134:4,-144.5,3.5,0,0,-0.18179 -99762,7014:134:3,-144,3.5,0,0,-0.180529 -99763,7014:133:4,-143.5,3.5,0,0,-0.17873 -99764,7014:133:3,-143,3.5,0,0,-0.175997 -99765,7014:132:4,-142.5,3.5,0,0,-0.173816 -99766,7014:132:3,-142,3.5,0,0,-0.171975 -99767,7014:131:4,-141.5,3.5,0,0,-0.171334 -99768,7014:131:3,-141,3.5,0,0,-0.172189 -99769,7014:130:4,-140.5,3.5,0,0,-0.174951 -99770,7014:130:3,-140,3.5,0,0,-0.178507 -99771,7013:239:4,-139.5,3.5,0,0,-0.181613 -99772,7013:239:3,-139,3.5,0,0,-0.184293 -99773,7013:238:4,-138.5,3.5,0,0,-0.185897 -99774,7013:238:3,-138,3.5,0,0,-0.186261 -99775,7013:237:4,-137.5,3.5,0,0,-0.186157 -99776,7013:237:3,-137,3.5,0,0,-0.185481 -99777,7013:236:4,-136.5,3.5,0,0,-0.184912 -99778,7013:236:3,-136,3.5,0,0,-0.184113 -99779,7013:235:4,-135.5,3.5,0,0,-0.183395 -99780,7013:235:3,-135,3.5,0,0,-0.182731 -99781,7013:134:4,-134.5,3.5,0,0,-0.181841 -99782,7013:134:3,-134,3.5,0,0,-0.181058 -99783,7013:133:4,-133.5,3.5,0,0,-0.180454 -99784,7013:133:3,-133,3.5,0,0,-0.179527 -99785,7013:132:4,-132.5,3.5,0,0,-0.178531 -99786,7013:132:3,-132,3.5,0,0,-0.177764 -99787,7013:131:4,-131.5,3.5,0,0,-0.178185 -99788,7013:131:3,-131,3.5,0,0,-0.179802 -99789,7013:130:4,-130.5,3.5,0,0,-0.181841 -99790,7013:130:3,-130,3.5,0,0,-0.183882 -99791,7012:239:4,-129.5,3.5,0,0,-0.185429 -99792,7012:239:3,-129,3.5,0,0,-0.186313 -99793,7012:238:4,-128.5,3.5,0,0,-0.186522 -99794,7012:238:3,-128,3.5,0,0,-0.185949 -99795,7012:237:4,-127.5,3.5,0,0,-0.185171 -99796,7012:237:3,-127,3.5,0,0,-0.184499 -99797,7012:236:4,-126.5,3.5,0,0,-0.184396 -99798,7012:236:3,-126,3.5,0,0,-0.184757 -99799,7012:235:4,-125.5,3.5,0,0,-0.185819 -99800,7012:235:3,-125,3.5,0,0,-0.187359 -99801,7012:134:4,-124.5,3.5,0,0,-0.189179 -99802,7012:134:3,-124,3.5,0,0,-0.190591 -99803,7012:133:4,-123.5,3.5,0,0,-0.191584 -99804,7012:133:3,-123,3.5,0,0,-0.192286 -99805,7012:132:4,-122.5,3.5,0,0,-0.1928 -99806,7012:132:3,-122,3.5,0,0,-0.193002 -99807,7012:131:4,-121.5,3.5,0,0,-0.192854 -99808,7012:131:3,-121,3.5,0,0,-0.193046 -99809,7012:130:4,-120.5,3.5,0,0,-0.194087 -99810,7012:130:3,-120,3.5,0,0,-0.195659 -99811,7011:239:4,-119.5,3.5,0,0,-0.197337 -99812,7011:239:3,-119,3.5,0,0,-0.198803 -99813,7011:238:4,-118.5,3.5,0,0,-0.200139 -99814,7011:238:3,-118,3.5,0,0,-0.200632 -99815,7011:237:4,-117.5,3.5,0,0,-0.198803 -99816,7011:237:3,-117,3.5,0,0,-0.197425 -99817,7011:236:4,-116.5,3.5,0,0,-0.195748 -99818,7011:236:3,-116,3.5,0,0,-0.194087 -99819,7011:235:4,-115.5,3.5,0,0,-0.192854 -99820,7011:235:3,-115,3.5,0,0,-0.192475 -99821,7011:134:4,-114.5,3.5,0,0,-0.192394 -99822,7011:134:3,-114,3.5,0,0,-0.192367 -99823,7011:133:4,-113.5,3.5,0,0,-0.192475 -99824,7011:133:3,-113,3.5,0,0,-0.192421 -99825,7011:132:4,-112.5,3.5,0,0,-0.191989 -99826,7011:132:3,-112,3.5,0,0,-0.190645 -99827,7011:131:4,-111.5,3.5,0,0,-0.188782 -99828,7011:131:3,-111,3.5,0,0,-0.187332 -99829,7011:130:4,-110.5,3.5,0,0,-0.186574 -99830,7011:130:3,-110,3.5,0,0,-0.186027 -99831,7010:239:4,-109.5,3.5,0,0,-0.185663 -99832,7010:239:3,-109,3.5,0,0,-0.185326 -99833,7010:238:4,-108.5,3.5,0,0,-0.184576 -99834,7010:238:3,-108,3.5,0,0,-0.184062 -99835,7010:237:4,-107.5,3.5,0,0,-0.183626 -99836,7010:237:3,-107,3.5,0,0,-0.183728 -99837,7010:236:4,-106.5,3.5,0,0,-0.184242 -99838,7010:236:3,-106,3.5,0,0,-0.184602 -99839,7010:235:4,-105.5,3.5,0,0,-0.184473 -99840,7010:235:3,-105,3.5,0,0,-0.184062 -99841,7010:134:4,-104.5,3.5,0,0,-0.183446 -99842,7010:134:3,-104,3.5,0,0,-0.182527 -99843,7010:133:4,-103.5,3.5,0,0,-0.181209 -99844,7010:133:3,-103,3.5,0,0,-0.178929 -99845,7010:132:4,-102.5,3.5,0,0,-0.175924 -99846,7010:132:3,-102,3.5,0,0,-0.172355 -99847,7010:131:4,-101.5,3.5,0,0,-0.168894 -99848,7010:131:3,-101,3.5,0,0,-0.166813 -99849,7010:130:4,-100.5,3.5,0,0,-0.165556 -99850,7010:130:3,-100,3.5,0,0,-0.164626 -99851,7009:239:4,-99.5,3.5,0,0,-0.164287 -99852,7009:239:3,-99,3.5,0,0,-0.165125 -99853,7009:238:4,-98.5,3.5,0,0,-0.166469 -99854,7009:238:3,-98,3.5,0,0,-0.16725 -99855,7009:237:4,-97.5,3.5,0,0,-0.168266 -99856,7009:237:3,-97,3.5,0,0,-0.169664 -99857,7009:236:4,-96.5,3.5,0,0,-0.171382 -99858,7009:236:3,-96,3.5,0,0,-0.17324 -99859,7009:235:4,-95.5,3.5,0,0,-0.175097 -99860,7009:235:3,-95,3.5,0,0,-0.176805 -99861,7009:134:4,-94.5,3.5,0,0,-0.17883 -99862,7009:134:3,-94,3.5,0,0,-0.18068 -99863,7009:133:4,-93.5,3.5,0,0,-0.181411 -99864,7009:133:3,-93,3.5,0,0,-0.180655 -99865,7009:132:4,-92.5,3.5,0,0,-0.178309 -99866,7009:132:3,-92,3.5,0,0,-0.174806 -99867,7009:131:4,-91.5,3.5,0,0,-0.171121 -99868,7009:131:3,-91,3.5,0,0,-0.167457 -99869,7009:130:4,-90.5,3.5,0,0,-0.165602 -99870,7009:130:3,-90,3.5,0,0,-0.165852 -99871,7008:239:4,-89.5,3.5,0,0,-0.169734 -99872,7008:239:3,-89,3.5,0,0,-0.177296 -99873,7008:238:4,-88.5,3.5,0,0,-0.184344 -99874,7008:238:3,-88,3.5,0,0,-0.188888 -99875,7008:237:4,-87.5,3.5,0,0,-0.191854 -99876,7008:237:3,-87,3.5,0,0,-0.196981 -99877,7008:236:4,-86.5,3.5,0,0,-0.290298 -99878,7008:236:3,-86,3.5,0,0,-0.498889 -99879,7008:235:4,-85.5,3.5,0,0,-0.685157 -99880,7008:235:3,-85,3.5,0,0,-0.946498 -99881,7008:134:4,-84.5,3.5,0,0,-1.1483 -99882,7008:134:3,-84,3.5,0,0,-1.0715 -99883,7008:132:3,-82,3.5,0,0,-0.695274 -99884,7008:131:4,-81.5,3.5,0,0,-0.268659 -99885,7008:131:3,-81,3.5,0,0,-0.291686 -99886,7007:239:3,-79,3.5,0,0,-0.824369 -99887,7007:237:4,-77.5,3.5,0,0,-0.394894 -99888,7007:237:3,-77,3.5,0,0,-0.446499 -99889,7007:236:4,-76.5,3.5,0,0,-0.402483 -99890,7006:130:4,-60.5,3.5,0,0,-0.174177 -99891,7006:130:3,-60,3.5,0,0,-0.167711 -99892,7005:239:4,-59.5,3.5,0,0,-0.17551 -99893,7005:239:3,-59,3.5,0,0,-0.178432 -99894,7005:238:4,-58.5,3.5,0,0,-0.180203 -99895,7005:238:3,-58,3.5,0,0,-0.181209 -99896,7005:237:4,-57.5,3.5,0,0,-0.184473 -99897,7005:237:3,-57,3.5,0,0,-0.184809 -99898,7005:236:4,-56.5,3.5,0,0,-0.184912 -99899,7005:236:3,-56,3.5,0,0,-0.184938 -99900,7005:235:4,-55.5,3.5,0,0,-0.184396 -99901,7005:235:3,-55,3.5,0,0,-0.182298 -99902,7005:134:4,-54.5,3.5,0,0,-0.182986 -99903,7005:134:3,-54,3.5,0,0,-0.183651 -99904,7005:133:4,-53.5,3.5,0,0,-0.18437 -99905,7005:133:3,-53,3.5,0,0,-0.184602 -99906,7005:132:4,-52.5,3.5,0,0,-0.184989 -99907,7005:132:3,-52,3.5,0,0,-0.183651 -99908,7005:131:4,-51.5,3.5,0,0,-0.183113 -99909,7005:131:3,-51,3.5,0,0,-0.184344 -99910,7005:130:4,-50.5,3.5,0,0,-0.186339 -99911,7005:130:3,-50,3.5,0,0,-0.185949 -99912,7004:239:4,-49.5,3.5,0,0,-0.185481 -99913,7004:239:3,-49,3.5,0,0,-0.184576 -99914,7004:238:4,-48.5,3.5,0,0,-0.183548 -99915,7004:238:3,-48,3.5,0,0,-0.182756 -99916,7004:237:4,-47.5,3.5,0,0,-0.18245 -99917,7004:237:3,-47,3.5,0,0,-0.182323 -99918,7004:236:4,-46.5,3.5,0,0,-0.182247 -99919,7004:236:3,-46,3.5,0,0,-0.181993 -99920,7004:235:4,-45.5,3.5,0,0,-0.181562 -99921,7004:235:3,-45,3.5,0,0,-0.181108 -99922,7004:134:4,-44.5,3.5,0,0,-0.180554 -99923,7004:134:3,-44,3.5,0,0,-0.180152 -99924,7004:133:4,-43.5,3.5,0,0,-0.180052 -99925,7004:133:3,-43,3.5,0,0,-0.179427 -99926,7004:132:4,-42.5,3.5,0,0,-0.178507 -99927,7004:132:3,-42,3.5,0,0,-0.177419 -99928,7004:131:4,-41.5,3.5,0,0,-0.17629 -99929,7004:131:3,-41,3.5,0,0,-0.175607 -99930,7004:130:4,-40.5,3.5,0,0,-0.175218 -99931,7004:130:3,-40,3.5,0,0,-0.175194 -99932,7003:239:4,-39.5,3.5,0,0,-0.175 -99933,7003:239:3,-39,3.5,0,0,-0.174274 -99934,7003:238:4,-38.5,3.5,0,0,-0.172809 -99935,7003:238:3,-38,3.5,0,0,-0.171098 -99936,7003:237:4,-37.5,3.5,0,0,-0.168894 -99937,7003:237:3,-37,3.5,0,0,-0.166951 -99938,7003:236:4,-36.5,3.5,0,0,-0.166836 -99939,7003:236:3,-36,3.5,0,0,-0.16815 -99940,7003:235:4,-35.5,3.5,0,0,-0.169313 -99941,7003:235:3,-35,3.5,0,0,-0.169033 -99942,7003:134:4,-34.5,3.5,0,0,-0.167573 -99943,7003:134:3,-34,3.5,0,0,-0.165943 -99944,7003:133:4,-33.5,3.5,0,0,-0.166721 -99945,7003:133:3,-33,3.5,0,0,-0.167734 -99946,7003:132:4,-32.5,3.5,0,0,-0.167181 -99947,7003:132:3,-32,3.5,0,0,-0.169126 -99948,7003:131:4,-31.5,3.5,0,0,-0.170932 -99949,7003:131:3,-31,3.5,0,0,-0.17018 -99950,7003:130:4,-30.5,3.5,0,0,-0.16929 -99951,7003:130:3,-30,3.5,0,0,-0.170086 -99952,7002:239:4,-29.5,3.5,0,0,-0.171406 -99953,7002:239:3,-29,3.5,0,0,-0.17169 -99954,7002:238:4,-28.5,3.5,0,0,-0.171809 -99955,7002:238:3,-28,3.5,0,0,-0.17226 -99956,7002:237:4,-27.5,3.5,0,0,-0.172403 -99957,7002:237:3,-27,3.5,0,0,-0.172237 -99958,7002:236:4,-26.5,3.5,0,0,-0.173096 -99959,7002:236:3,-26,3.5,0,0,-0.174516 -99960,7002:235:4,-25.5,3.5,0,0,-0.175242 -99961,7002:235:3,-25,3.5,0,0,-0.175631 -99962,7002:134:4,-24.5,3.5,0,0,-0.175997 -99963,7002:134:3,-24,3.5,0,0,-0.176878 -99964,7002:133:4,-23.5,3.5,0,0,-0.178929 -99965,7002:133:3,-23,3.5,0,0,-0.180705 -99966,7002:132:4,-22.5,3.5,0,0,-0.182935 -99967,7002:132:3,-22,3.5,0,0,-0.1866 -99968,7002:131:4,-21.5,3.5,0,0,-0.189498 -99969,7002:131:3,-21,3.5,0,0,-0.191127 -99970,7002:130:4,-20.5,3.5,0,0,-0.192746 -99971,7002:130:3,-20,3.5,0,0,-0.195835 -99972,7001:239:4,-19.5,3.5,0,0,-0.204639 -99973,7001:239:3,-19,3.5,0,0,-0.249719 -99974,7001:238:4,-18.5,3.5,0,0,-0.314095 -99975,7001:238:3,-18,3.5,0,0,-0.379644 -99976,7001:237:4,-17.5,3.5,0,0,-0.423375 -99977,7001:237:3,-17,3.5,0,0,-0.458693 -99978,7001:236:4,-16.5,3.5,0,0,-0.508252 -99979,7001:236:3,-16,3.5,0,0,-0.505402 -99980,7001:235:4,-15.5,3.5,0,0,-0.571831 -99981,7001:235:3,-15,3.5,0,0,-0.485298 -99982,7001:134:4,-14.5,3.5,0,0,-0.630014 -99983,7001:134:3,-14,3.5,0,0,-15.4623 -99984,1005:130:4,50.5,3.5,0,0,-0.176903 -99985,1005:131:3,51,3.5,0,0,-0.174491 -99986,1005:131:4,51.5,3.5,0,0,-0.173072 -99987,1005:132:3,52,3.5,0,0,-0.171833 -99988,1005:132:4,52.5,3.5,0,0,-0.170697 -99989,1005:133:3,53,3.5,0,0,-0.172403 -99990,1005:133:4,53.5,3.5,0,0,-0.172976 -99991,1005:134:3,54,3.5,0,0,-0.176903 -99992,1005:134:4,54.5,3.5,0,0,-0.185067 -99993,1005:235:3,55,3.5,0,0,-0.188174 -99994,1005:235:4,55.5,3.5,0,0,-0.188148 -99995,1005:236:3,56,3.5,0,0,-0.186079 -99996,1005:236:4,56.5,3.5,0,0,-0.183805 -99997,1005:237:3,57,3.5,0,0,-0.184886 -99998,1005:237:4,57.5,3.5,0,0,-0.187964 -99999,1005:238:3,58,3.5,0,0,-0.19207 -100000,1005:238:4,58.5,3.5,0,0,-0.198314 -100001,1005:239:3,59,3.5,0,0,-0.226092 -100002,1005:239:4,59.5,3.5,0,0,-0.262026 -100003,1006:130:3,60,3.5,0,0,-0.265735 -100004,1006:130:4,60.5,3.5,0,0,-0.237013 -100005,1006:131:3,61,3.5,0,0,-0.205991 -100006,1006:131:4,61.5,3.5,0,0,-0.198449 -100007,1006:132:3,62,3.5,0,0,-0.198314 -100008,1006:132:4,62.5,3.5,0,0,-0.197469 -100009,1006:133:3,63,3.5,0,0,-0.195968 -100010,1006:133:4,63.5,3.5,0,0,-0.196452 -100011,1006:134:3,64,3.5,0,0,-0.202205 -100012,1006:134:4,64.5,3.5,0,0,-0.226092 -100013,1006:235:3,65,3.5,0,0,-0.249719 -100014,1006:235:4,65.5,3.5,0,0,-0.2649 -100015,1006:236:3,66,3.5,0,0,-0.276372 -100016,1006:236:4,66.5,3.5,0,0,-0.289367 -100017,1006:237:3,67,3.5,0,0,-0.304597 -100018,1006:237:4,67.5,3.5,0,0,-0.32134 -100019,1006:238:3,68,3.5,0,0,-0.333145 -100020,1006:238:4,68.5,3.5,0,0,-0.349541 -100021,1006:239:3,69,3.5,0,0,-0.375779 -100022,1006:239:4,69.5,3.5,0,0,-0.413838 -100023,1007:130:3,70,3.5,0,0,-0.447303 -100024,1007:130:4,70.5,3.5,0,0,-0.479983 -100025,1007:131:3,71,3.5,0,0,-0.450516 -100026,1007:131:4,71.5,3.5,0,0,-0.413111 -100027,1007:132:3,72,3.5,0,0,-0.384863 -100028,1007:132:4,72.5,3.5,0,0,-0.372599 -100029,1007:133:4,73.5,3.5,0,0,-0.339242 -100030,1007:134:3,74,3.5,0,0,-0.311556 -100031,1007:134:4,74.5,3.5,0,0,-0.287993 -100032,1007:235:3,75,3.5,0,0,-0.283903 -100033,1007:235:4,75.5,3.5,0,0,-0.306568 -100034,1007:236:3,76,3.5,0,0,-0.301663 -100035,1007:236:4,76.5,3.5,0,0,-0.297334 -100036,1007:239:3,79,3.5,0,0,-0.191719 -100037,1007:239:4,79.5,3.5,0,0,-0.197557 -100038,1008:130:3,80,3.5,0,0,-0.194261 -100039,1008:131:4,81.5,3.5,0,0,-0.181437 -100040,1008:132:3,82,3.5,0,0,-0.180052 -100041,1008:132:4,82.5,3.5,0,0,-0.186496 -100042,1008:133:3,83,3.5,0,0,-0.192016 -100043,1008:133:4,83.5,3.5,0,0,-0.214809 -100044,1008:134:3,84,3.5,0,0,-0.213159 -100045,1008:134:4,84.5,3.5,0,0,-0.212892 -100046,1008:235:3,85,3.5,0,0,-0.206968 -100047,1008:235:4,85.5,3.5,0,0,-0.212343 -100048,1008:236:3,86,3.5,0,0,-0.215105 -100049,1008:236:4,86.5,3.5,0,0,-0.215105 -100050,1008:237:3,87,3.5,0,0,-0.218897 -100051,1008:237:4,87.5,3.5,0,0,-0.227466 -100052,1008:238:3,88,3.5,0,0,-0.237013 -100053,1008:238:4,88.5,3.5,0,0,-0.229551 -100054,1008:239:3,89,3.5,0,0,-0.234848 -100055,1008:239:4,89.5,3.5,0,0,-0.226437 -100056,1009:130:3,90,3.5,0,0,-0.2292 -100057,1009:130:4,90.5,3.5,0,0,-0.221795 -100058,1009:131:3,91,3.5,0,0,-0.222122 -100059,1009:131:4,91.5,3.5,0,0,-0.227466 -100060,1009:132:3,92,3.5,0,0,-0.232004 -100061,1009:132:4,92.5,3.5,0,0,-0.225747 -100062,1009:133:3,93,3.5,0,0,-0.237013 -100063,1009:133:4,93.5,3.5,0,0,-0.243267 -100064,1009:134:3,94,3.5,0,0,-0.246277 -100065,1009:134:4,94.5,3.5,0,0,-0.250108 -100066,1009:235:3,95,3.5,0,0,-0.254793 -100067,1009:235:4,95.5,3.5,0,0,-0.272482 -100068,1009:236:3,96,3.5,0,0,-0.287532 -100069,1009:236:4,96.5,3.5,0,0,-0.294501 -100070,1009:237:3,97,3.5,0,0,-0.342066 -100071,1009:237:4,97.5,3.5,0,0,-0.336448 -100072,1009:238:3,98,3.5,0,0,-0.354838 -100073,1009:238:4,98.5,3.5,0,0,-0.328251 -100074,1010:130:4,100.5,3.5,0,0,-0.197647 -100075,1010:131:3,101,3.5,0,0,-0.201139 -100076,1010:131:4,101.5,3.5,0,0,-0.201842 -100077,1010:132:3,102,3.5,0,0,-0.201139 -100078,1010:132:4,102.5,3.5,0,0,-0.194784 -100079,1010:133:3,103,3.5,0,0,-0.189578 -100080,1010:133:4,103.5,3.5,0,0,-0.189657 -100081,1010:134:3,104,3.5,0,0,-0.187858 -100082,1010:134:4,104.5,3.5,0,0,-0.177173 -100083,1010:235:3,105,3.5,0,0,-0.173503 -100084,1010:236:3,106,3.5,0,0,-0.165852 -100085,1010:236:4,106.5,3.5,0,0,-0.164536 -100086,1010:237:3,107,3.5,0,0,-0.162851 -100087,1010:237:4,107.5,3.5,0,0,-0.160878 -100088,1010:238:3,108,3.5,0,0,-0.162896 -100089,1010:238:4,108.5,3.5,0,0,-0.166744 -100090,1010:239:3,109,3.5,0,0,-0.174395 -100091,1010:239:4,109.5,3.5,0,0,-0.183395 -100092,1011:130:3,110,3.5,0,0,-0.187753 -100093,1011:130:4,110.5,3.5,0,0,-0.195968 -100094,1011:131:3,111,3.5,0,0,-0.21371 -100095,1011:131:4,111.5,3.5,0,0,-0.234848 -100096,1011:132:3,112,3.5,0,0,-0.231648 -100097,1011:132:4,112.5,3.5,0,0,-0.249331 -100098,1011:133:3,113,3.5,0,0,-0.263665 -100099,1011:133:4,113.5,3.5,0,0,-0.273334 -100100,1011:134:3,114,3.5,0,0,-0.284798 -100101,1011:134:4,114.5,3.5,0,0,-0.302642 -100102,1011:235:3,115,3.5,0,0,-0.335906 -100103,1011:235:4,115.5,3.5,0,0,-0.368216 -100104,1011:236:3,116,3.5,0,0,-0.391527 -100105,1011:236:4,116.5,3.5,0,0,-0.386839 -100106,1011:237:3,117,3.5,0,0,-0.361458 -100107,1011:237:4,117.5,3.5,0,0,-0.318205 -100108,1011:238:4,118.5,3.5,0,0,-0.36759 -100109,1011:239:3,119,3.5,0,0,-0.331509 -100110,1011:239:4,119.5,3.5,0,0,-0.31564 -100111,1012:130:3,120,3.5,0,0,-0.264483 -100112,1012:130:4,120.5,3.5,0,0,-0.235209 -100113,1012:131:3,121,3.5,0,0,-0.243644 -100114,1012:131:4,121.5,3.5,0,0,-0.213986 -100115,1012:132:3,122,3.5,0,0,-0.2003 -100116,1012:132:4,122.5,3.5,0,0,-0.19413 -100117,1012:133:3,123,3.5,0,0,-0.19778 -100118,1012:133:4,123.5,3.5,0,0,-0.199653 -100119,1012:134:3,124,3.5,0,0,-0.21636 -100120,1012:134:4,124.5,3.5,0,0,-0.197158 -100121,1012:235:3,125,3.5,0,0,-0.187727 -100122,1012:237:3,127,3.5,0,0,-0.246659 -100123,1012:237:4,127.5,3.5,0,0,-0.357826 -100124,1012:238:3,128,3.5,0,0,-0.45133 -100125,1012:238:4,128.5,3.5,0,0,-0.52867 -100126,1012:239:3,129,3.5,0,0,-0.579698 -100127,1012:239:4,129.5,3.5,0,0,-0.610169 -100128,1013:130:3,130,3.5,0,0,-0.610169 -100129,1013:130:4,130.5,3.5,0,0,-0.599375 -100130,1013:131:3,131,3.5,0,0,-0.583095 -100131,1013:131:4,131.5,3.5,0,0,-0.564141 -100132,1013:132:3,132,3.5,0,0,-0.558721 -100133,1013:132:4,132.5,3.5,0,0,-0.553371 -100134,1013:133:3,133,3.5,0,0,-0.553371 -100135,1013:133:4,133.5,3.5,0,0,-0.576294 -100136,1013:134:3,134,3.5,0,0,-0.635115 -100137,1013:134:4,134.5,3.5,0,0,-0.735784 -100138,1013:235:3,135,3.5,0,0,-0.908585 -100139,1013:235:4,135.5,3.5,0,0,-1.03395 -100140,1013:236:3,136,3.5,0,0,-1.00224 -100141,1013:236:4,136.5,3.5,0,0,-0.939481 -100142,1013:237:3,137,3.5,0,0,-1.11574 -100143,1013:237:4,137.5,3.5,0,0,-1.27195 -100144,1013:238:3,138,3.5,0,0,-1.55304 -100145,1013:238:4,138.5,3.5,0,0,-1.25544 -100146,1013:239:3,139,3.5,0,0,-0.712058 -100147,1013:239:4,139.5,3.5,0,0,-0.601731 -100148,1014:130:3,140,3.5,0,0,-0.593488 -100149,1014:130:4,140.5,3.5,0,0,-0.599375 -100150,1014:131:3,141,3.5,0,0,-0.601731 -100151,1014:131:4,141.5,3.5,0,0,-0.596996 -100152,1014:132:3,142,3.5,0,0,-0.592313 -100153,1014:132:4,142.5,3.5,0,0,-0.581948 -100154,1014:133:3,143,3.5,0,0,-0.576294 -100155,1014:133:4,143.5,3.5,0,0,-0.574073 -100156,1014:134:3,144,3.5,0,0,-0.576294 -100157,1014:134:4,144.5,3.5,0,0,-0.607731 -100158,1014:235:3,145,3.5,0,0,-0.669734 -100159,1014:235:4,145.5,3.5,0,0,-0.766519 -100160,1014:236:3,146,3.5,0,0,-0.922117 -100161,1014:236:4,146.5,3.5,0,0,-1.0715 -100162,1014:237:3,147,3.5,0,0,-1.16268 -100163,1014:237:4,147.5,3.5,0,0,-1.32377 -100164,1014:238:3,148,3.5,0,0,-1.41792 -100165,1014:238:4,148.5,3.5,0,0,-1.33582 -100166,1014:239:3,149,3.5,0,0,-1.28898 -100167,1014:239:4,149.5,3.5,0,0,-1.71947 -100168,1015:130:3,150,3.5,0,0,-1.27195 -100169,1015:131:3,151,3.5,0,0,-1.74682 -100170,1015:131:4,151.5,3.5,0,0,-2.26457 -100171,1015:132:3,152,3.5,0,0,-2.46395 -100172,1015:132:4,152.5,3.5,0,0,-2.35276 -100173,1015:133:3,153,3.5,0,0,-2.15513 -100174,1015:133:4,153.5,3.5,0,0,-1.9168 -100175,1015:134:3,154,3.5,0,0,-1.61649 -100176,1015:134:4,154.5,3.5,0,0,-1.34191 -100177,1015:235:3,155,3.5,0,0,-1.17252 -100178,1015:235:4,155.5,3.5,0,0,-1.1202 -100179,1015:236:3,156,3.5,0,0,-1.1021 -100180,1015:236:4,156.5,3.5,0,0,-0.95009 -100181,1015:237:3,157,3.5,0,0,-0.833119 -100182,1015:237:4,157.5,3.5,0,0,-0.793342 -100183,1015:238:3,158,3.5,0,0,-0.790583 -100184,1015:238:4,158.5,3.5,0,0,-0.779764 -100185,1015:239:3,159,3.5,0,0,-0.759297 -100186,1015:239:4,159.5,3.5,0,0,-0.744195 -100187,1016:130:3,160,3.5,0,0,-0.70113 -100188,1016:130:4,160.5,3.5,0,0,-0.654793 -100189,1016:131:3,161,3.5,0,0,-0.613814 -100190,1016:131:4,161.5,3.5,0,0,-0.577425 -100191,1016:132:3,162,3.5,0,0,-0.550207 -100192,1016:132:4,162.5,3.5,0,0,-0.530655 -100193,1016:133:3,163,3.5,0,0,-0.517822 -100194,1016:133:4,163.5,3.5,0,0,-0.513022 -100195,1016:134:3,164,3.5,0,0,-0.511095 -100196,1016:134:4,164.5,3.5,0,0,-0.512057 -100197,1016:235:3,165,3.5,0,0,-0.518801 -100198,1016:235:4,165.5,3.5,0,0,-0.5073 -100199,1016:236:4,166.5,3.5,0,0,-0.458693 -100200,1016:237:3,167,3.5,0,0,-0.518801 -100201,1016:237:4,167.5,3.5,0,0,-0.384201 -100202,1016:238:4,168.5,3.5,0,0,-0.305573 -100203,1016:239:3,169,3.5,0,0,-0.328794 -100204,1016:239:4,169.5,3.5,0,0,-0.319251 -100205,1017:130:3,170,3.5,0,0,-0.246277 -100206,1017:130:4,170.5,3.5,0,0,-0.232716 -100207,1017:131:3,171,3.5,0,0,-0.269509 -100208,1017:131:4,171.5,3.5,0,0,-0.223096 -100209,1017:132:3,172,3.5,0,0,-0.244767 -100210,1017:132:4,172.5,3.5,0,0,-0.259584 -100211,1017:133:3,173,3.5,0,0,-0.279884 -100212,1017:133:4,173.5,3.5,0,0,-0.307551 -100213,1017:134:3,174,3.5,0,0,-0.339242 -100214,1017:134:4,174.5,3.5,0,0,-0.365739 -100215,1017:235:3,175,3.5,0,0,-0.379644 -100216,1017:235:4,175.5,3.5,0,0,-0.375136 -100217,1017:236:3,176,3.5,0,0,-0.332042 -100218,1017:236:4,176.5,3.5,0,0,-0.250485 -100219,1017:237:3,177,3.5,0,0,-0.198856 -100220,1017:237:4,177.5,3.5,0,0,-0.195222 -100221,1017:238:3,178,3.5,0,0,-0.194959 -100222,1017:238:4,178.5,3.5,0,0,-0.196583 -100223,1017:239:3,179,3.5,0,0,-0.199516 -100224,1017:239:4,179.5,3.5,0,0,-0.214531 -100225,1018:130:3,180,3.5,0,0,-0.235571 -100226,7018:140:1,-180,4,0,0,-0.194479 -100227,7017:249:2,-179.5,4,0,0,-0.193956 -100228,7017:249:1,-179,4,0,0,-0.192917 -100229,7017:248:2,-178.5,4,0,0,-0.192421 -100230,7017:248:1,-178,4,0,0,-0.192205 -100231,7017:247:2,-177.5,4,0,0,-0.192637 -100232,7017:247:1,-177,4,0,0,-0.192665 -100233,7017:246:2,-176.5,4,0,0,-0.191989 -100234,7017:246:1,-176,4,0,0,-0.191047 -100235,7017:245:2,-175.5,4,0,0,-0.190031 -100236,7017:245:1,-175,4,0,0,-0.189445 -100237,7017:144:2,-174.5,4,0,0,-0.189365 -100238,7017:144:1,-174,4,0,0,-0.189418 -100239,7017:143:2,-173.5,4,0,0,-0.189604 -100240,7017:143:1,-173,4,0,0,-0.189817 -100241,7017:142:2,-172.5,4,0,0,-0.190057 -100242,7017:142:1,-172,4,0,0,-0.189977 -100243,7017:141:2,-171.5,4,0,0,-0.189445 -100244,7017:141:1,-171,4,0,0,-0.188729 -100245,7017:140:2,-170.5,4,0,0,-0.187176 -100246,7017:140:1,-170,4,0,0,-0.185378 -100247,7016:249:2,-169.5,4,0,0,-0.18342 -100248,7016:249:1,-169,4,0,0,-0.18207 -100249,7016:248:2,-168.5,4,0,0,-0.181158 -100250,7016:248:1,-168,4,0,0,-0.18063 -100251,7016:247:2,-167.5,4,0,0,-0.180429 -100252,7016:247:1,-167,4,0,0,-0.180831 -100253,7016:246:2,-166.5,4,0,0,-0.181993 -100254,7016:246:1,-166,4,0,0,-0.18268 -100255,7016:245:2,-165.5,4,0,0,-0.183318 -100256,7016:245:1,-165,4,0,0,-0.183779 -100257,7016:144:2,-164.5,4,0,0,-0.18437 -100258,7016:144:1,-164,4,0,0,-0.184835 -100259,7016:143:2,-163.5,4,0,0,-0.184628 -100260,7016:143:1,-163,4,0,0,-0.184473 -100261,7016:142:2,-162.5,4,0,0,-0.18419 -100262,7016:142:1,-162,4,0,0,-0.183856 -100263,7016:141:2,-161.5,4,0,0,-0.183446 -100264,7016:141:1,-161,4,0,0,-0.182884 -100265,7016:140:2,-160.5,4,0,0,-0.181588 -100266,7016:140:1,-160,4,0,0,-0.180429 -100267,7015:249:2,-159.5,4,0,0,-0.179103 -100268,7015:249:1,-159,4,0,0,-0.178556 -100269,7015:248:2,-158.5,4,0,0,-0.178383 -100270,7015:248:1,-158,4,0,0,-0.177962 -100271,7015:247:2,-157.5,4,0,0,-0.177247 -100272,7015:247:1,-157,4,0,0,-0.176535 -100273,7015:246:2,-156.5,4,0,0,-0.176632 -100274,7015:246:1,-156,4,0,0,-0.177863 -100275,7015:245:2,-155.5,4,0,0,-0.179777 -100276,7015:245:1,-155,4,0,0,-0.181158 -100277,7015:144:2,-154.5,4,0,0,-0.181943 -100278,7015:144:1,-154,4,0,0,-0.181816 -100279,7015:143:2,-153.5,4,0,0,-0.18073 -100280,7015:143:1,-153,4,0,0,-0.17873 -100281,7015:142:2,-152.5,4,0,0,-0.176314 -100282,7015:142:1,-152,4,0,0,-0.174564 -100283,7015:141:2,-151.5,4,0,0,-0.173528 -100284,7015:141:1,-151,4,0,0,-0.172713 -100285,7015:140:2,-150.5,4,0,0,-0.172665 -100286,7015:140:1,-150,4,0,0,-0.17312 -100287,7014:249:2,-149.5,4,0,0,-0.173456 -100288,7014:249:1,-149,4,0,0,-0.173528 -100289,7014:248:2,-148.5,4,0,0,-0.17324 -100290,7014:248:1,-148,4,0,0,-0.172833 -100291,7014:247:2,-147.5,4,0,0,-0.172833 -100292,7014:247:1,-147,4,0,0,-0.17288 -100293,7014:246:2,-146.5,4,0,0,-0.173456 -100294,7014:246:1,-146,4,0,0,-0.173744 -100295,7014:245:2,-145.5,4,0,0,-0.173961 -100296,7014:245:1,-145,4,0,0,-0.173264 -100297,7014:144:2,-144.5,4,0,0,-0.171714 -100298,7014:144:1,-144,4,0,0,-0.168894 -100299,7014:143:2,-143.5,4,0,0,-0.165328 -100300,7014:143:1,-143,4,0,0,-0.162584 -100301,7014:142:2,-142.5,4,0,0,-0.162138 -100302,7014:142:1,-142,4,0,0,-0.162338 -100303,7014:141:2,-141.5,4,0,0,-0.163612 -100304,7014:141:1,-141,4,0,0,-0.165693 -100305,7014:140:2,-140.5,4,0,0,-0.1688 -100306,7014:140:1,-140,4,0,0,-0.171547 -100307,7013:249:2,-139.5,4,0,0,-0.17372 -100308,7013:249:1,-139,4,0,0,-0.174854 -100309,7013:248:2,-138.5,4,0,0,-0.175802 -100310,7013:248:1,-138,4,0,0,-0.176266 -100311,7013:247:2,-137.5,4,0,0,-0.175973 -100312,7013:247:1,-137,4,0,0,-0.174975 -100313,7013:246:2,-136.5,4,0,0,-0.174129 -100314,7013:246:1,-136,4,0,0,-0.173192 -100315,7013:245:2,-135.5,4,0,0,-0.172953 -100316,7013:245:1,-135,4,0,0,-0.172976 -100317,7013:144:2,-134.5,4,0,0,-0.172904 -100318,7013:144:1,-134,4,0,0,-0.173024 -100319,7013:143:2,-133.5,4,0,0,-0.173024 -100320,7013:143:1,-133,4,0,0,-0.17257 -100321,7013:142:2,-132.5,4,0,0,-0.171833 -100322,7013:142:1,-132,4,0,0,-0.171595 -100323,7013:141:2,-131.5,4,0,0,-0.172332 -100324,7013:141:1,-131,4,0,0,-0.174057 -100325,7013:140:2,-130.5,4,0,0,-0.176657 -100326,7013:140:1,-130,4,0,0,-0.178507 -100327,7012:249:2,-129.5,4,0,0,-0.179178 -100328,7012:249:1,-129,4,0,0,-0.179203 -100329,7012:248:2,-128.5,4,0,0,-0.17873 -100330,7012:248:1,-128,4,0,0,-0.17774 -100331,7012:247:2,-127.5,4,0,0,-0.177099 -100332,7012:247:1,-127,4,0,0,-0.177124 -100333,7012:246:2,-126.5,4,0,0,-0.177666 -100334,7012:246:1,-126,4,0,0,-0.178805 -100335,7012:245:2,-125.5,4,0,0,-0.180252 -100336,7012:245:1,-125,4,0,0,-0.18212 -100337,7012:144:2,-124.5,4,0,0,-0.184113 -100338,7012:144:1,-124,4,0,0,-0.186027 -100339,7012:143:2,-123.5,4,0,0,-0.187438 -100340,7012:143:1,-123,4,0,0,-0.188544 -100341,7012:142:2,-122.5,4,0,0,-0.189152 -100342,7012:142:1,-122,4,0,0,-0.189498 -100343,7012:141:2,-121.5,4,0,0,-0.189791 -100344,7012:141:1,-121,4,0,0,-0.190378 -100345,7012:140:2,-120.5,4,0,0,-0.1911 -100346,7012:140:1,-120,4,0,0,-0.191854 -100347,7011:249:2,-119.5,4,0,0,-0.192556 -100348,7011:249:1,-119,4,0,0,-0.192917 -100349,7011:248:2,-118.5,4,0,0,-0.192828 -100350,7011:248:1,-118,4,0,0,-0.192502 -100351,7011:247:2,-117.5,4,0,0,-0.191934 -100352,7011:247:1,-117,4,0,0,-0.191127 -100353,7011:246:2,-116.5,4,0,0,-0.190271 -100354,7011:246:1,-116,4,0,0,-0.189711 -100355,7011:245:2,-115.5,4,0,0,-0.189152 -100356,7011:245:1,-115,4,0,0,-0.188623 -100357,7011:144:2,-114.5,4,0,0,-0.188201 -100358,7011:144:1,-114,4,0,0,-0.188174 -100359,7011:143:2,-113.5,4,0,0,-0.188412 -100360,7011:143:1,-113,4,0,0,-0.188385 -100361,7011:142:2,-112.5,4,0,0,-0.188201 -100362,7011:142:1,-112,4,0,0,-0.187885 -100363,7011:141:2,-111.5,4,0,0,-0.187045 -100364,7011:141:1,-111,4,0,0,-0.186261 -100365,7011:140:2,-110.5,4,0,0,-0.185793 -100366,7011:140:1,-110,4,0,0,-0.185559 -100367,7010:249:2,-109.5,4,0,0,-0.185533 -100368,7010:249:1,-109,4,0,0,-0.185507 -100369,7010:248:2,-108.5,4,0,0,-0.185455 -100370,7010:248:1,-108,4,0,0,-0.186105 -100371,7010:247:2,-107.5,4,0,0,-0.187622 -100372,7010:247:1,-107,4,0,0,-0.189524 -100373,7010:246:2,-106.5,4,0,0,-0.191127 -100374,7010:246:1,-106,4,0,0,-0.192286 -100375,7010:245:2,-105.5,4,0,0,-0.191746 -100376,7010:245:1,-105,4,0,0,-0.188808 -100377,7010:144:2,-104.5,4,0,0,-0.185015 -100378,7010:144:1,-104,4,0,0,-0.181133 -100379,7010:143:2,-103.5,4,0,0,-0.177888 -100380,7010:143:1,-103,4,0,0,-0.176682 -100381,7010:142:2,-102.5,4,0,0,-0.17551 -100382,7010:142:1,-102,4,0,0,-0.173936 -100383,7010:141:2,-101.5,4,0,0,-0.172929 -100384,7010:141:1,-101,4,0,0,-0.171193 -100385,7010:140:2,-100.5,4,0,0,-0.169219 -100386,7010:140:1,-100,4,0,0,-0.167895 -100387,7009:249:2,-99.5,4,0,0,-0.16785 -100388,7009:249:1,-99,4,0,0,-0.16815 -100389,7009:248:2,-98.5,4,0,0,-0.168545 -100390,7009:248:1,-98,4,0,0,-0.169383 -100391,7009:247:2,-97.5,4,0,0,-0.170391 -100392,7009:247:1,-97,4,0,0,-0.171642 -100393,7009:246:2,-96.5,4,0,0,-0.173 -100394,7009:246:1,-96,4,0,0,-0.174105 -100395,7009:245:2,-95.5,4,0,0,-0.175218 -100396,7009:245:1,-95,4,0,0,-0.176682 -100397,7009:144:2,-94.5,4,0,0,-0.178581 -100398,7009:144:1,-94,4,0,0,-0.179577 -100399,7009:143:2,-93.5,4,0,0,-0.178805 -100400,7009:143:1,-93,4,0,0,-0.177148 -100401,7009:142:2,-92.5,4,0,0,-0.176216 -100402,7009:142:1,-92,4,0,0,-0.176363 -100403,7009:141:2,-91.5,4,0,0,-0.174878 -100404,7009:141:1,-91,4,0,0,-0.172475 -100405,7009:140:2,-90.5,4,0,0,-0.169687 -100406,7009:140:1,-90,4,0,0,-0.167227 -100407,7008:249:2,-89.5,4,0,0,-0.169033 -100408,7008:249:1,-89,4,0,0,-0.174927 -100409,7008:248:2,-88.5,4,0,0,-0.180278 -100410,7008:248:1,-88,4,0,0,-0.184139 -100411,7008:247:2,-87.5,4,0,0,-0.187964 -100412,7008:247:1,-87,4,0,0,-0.195265 -100413,7008:246:2,-86.5,4,0,0,-0.3177 -100414,7008:246:1,-86,4,0,0,-0.635115 -100415,7008:245:2,-85.5,4,0,0,-0.607731 -100416,7008:245:1,-85,4,0,0,-0.588842 -100417,7008:142:2,-82.5,4,0,0,-0.198136 -100418,7008:142:1,-82,4,0,0,-0.196672 -100419,7008:141:2,-81.5,4,0,0,-0.192367 -100420,7008:141:1,-81,4,0,0,-0.1911 -100421,7008:140:2,-80.5,4,0,0,-0.193046 -100422,7008:140:1,-80,4,0,0,-0.201668 -100423,7007:249:2,-79.5,4,0,0,-0.223096 -100424,7007:249:1,-79,4,0,0,-0.219854 -100425,7007:248:2,-78.5,4,0,0,-0.215105 -100426,7007:248:1,-78,4,0,0,-0.238835 -100427,7007:247:2,-77.5,4,0,0,-0.366965 -100428,7007:247:1,-77,4,0,0,-0.448918 -100429,7007:246:2,-76.5,4,0,0,-0.409543 -100430,7007:246:1,-76,4,0,0,-0.314609 -100431,7006:141:1,-61,4,0,0,-0.177394 -100432,7006:140:2,-60.5,4,0,0,-0.172475 -100433,7006:140:1,-60,4,0,0,-0.178135 -100434,7005:249:2,-59.5,4,0,0,-0.181461 -100435,7005:249:1,-59,4,0,0,-0.182273 -100436,7005:248:2,-58.5,4,0,0,-0.183472 -100437,7005:248:1,-58,4,0,0,-0.185326 -100438,7005:247:2,-57.5,4,0,0,-0.186209 -100439,7005:247:1,-57,4,0,0,-0.185923 -100440,7005:246:2,-56.5,4,0,0,-0.185274 -100441,7005:246:1,-56,4,0,0,-0.185559 -100442,7005:245:2,-55.5,4,0,0,-0.186209 -100443,7005:245:1,-55,4,0,0,-0.186105 -100444,7005:144:2,-54.5,4,0,0,-0.184344 -100445,7005:144:1,-54,4,0,0,-0.184139 -100446,7005:143:2,-53.5,4,0,0,-0.184576 -100447,7005:143:1,-53,4,0,0,-0.18437 -100448,7005:142:2,-52.5,4,0,0,-0.183497 -100449,7005:142:1,-52,4,0,0,-0.183728 -100450,7005:141:2,-51.5,4,0,0,-0.184653 -100451,7005:141:1,-51,4,0,0,-0.184989 -100452,7005:140:2,-50.5,4,0,0,-0.184524 -100453,7005:140:1,-50,4,0,0,-0.184602 -100454,7004:249:2,-49.5,4,0,0,-0.184473 -100455,7004:249:1,-49,4,0,0,-0.183831 -100456,7004:248:2,-48.5,4,0,0,-0.182935 -100457,7004:248:1,-48,4,0,0,-0.181993 -100458,7004:247:2,-47.5,4,0,0,-0.18136 -100459,7004:247:1,-47,4,0,0,-0.180655 -100460,7004:246:2,-46.5,4,0,0,-0.180128 -100461,7004:246:1,-46,4,0,0,-0.179477 -100462,7004:245:2,-45.5,4,0,0,-0.17868 -100463,7004:245:1,-45,4,0,0,-0.177962 -100464,7004:144:2,-44.5,4,0,0,-0.177542 -100465,7004:144:1,-44,4,0,0,-0.177542 -100466,7004:143:2,-43.5,4,0,0,-0.177813 -100467,7004:143:1,-43,4,0,0,-0.177444 -100468,7004:142:2,-42.5,4,0,0,-0.176314 -100469,7004:142:1,-42,4,0,0,-0.175048 -100470,7004:141:2,-41.5,4,0,0,-0.173792 -100471,7004:141:1,-41,4,0,0,-0.172953 -100472,7004:140:2,-40.5,4,0,0,-0.172332 -100473,7004:140:1,-40,4,0,0,-0.171761 -100474,7003:249:2,-39.5,4,0,0,-0.171311 -100475,7003:249:1,-39,4,0,0,-0.170603 -100476,7003:248:2,-38.5,4,0,0,-0.169336 -100477,7003:248:1,-38,4,0,0,-0.167388 -100478,7003:247:2,-37.5,4,0,0,-0.164536 -100479,7003:247:1,-37,4,0,0,-0.162739 -100480,7003:246:2,-36.5,4,0,0,-0.163366 -100481,7003:246:1,-36,4,0,0,-0.16431 -100482,7003:245:2,-35.5,4,0,0,-0.164717 -100483,7003:245:1,-35,4,0,0,-0.163545 -100484,7003:144:2,-34.5,4,0,0,-0.161518 -100485,7003:144:1,-34,4,0,0,-0.16154 -100486,7003:143:2,-33.5,4,0,0,-0.163837 -100487,7003:143:1,-33,4,0,0,-0.164649 -100488,7003:142:2,-32.5,4,0,0,-0.163456 -100489,7003:142:1,-32,4,0,0,-0.164898 -100490,7003:141:2,-31.5,4,0,0,-0.166195 -100491,7003:141:1,-31,4,0,0,-0.165033 -100492,7003:140:2,-30.5,4,0,0,-0.16341 -100493,7003:140:1,-30,4,0,0,-0.163433 -100494,7002:249:2,-29.5,4,0,0,-0.164875 -100495,7002:249:1,-29,4,0,0,-0.166263 -100496,7002:248:2,-28.5,4,0,0,-0.167434 -100497,7002:248:1,-28,4,0,0,-0.168637 -100498,7002:247:2,-27.5,4,0,0,-0.1695 -100499,7002:247:1,-27,4,0,0,-0.169243 -100500,7002:246:2,-26.5,4,0,0,-0.16873 -100501,7002:246:1,-26,4,0,0,-0.169336 -100502,7002:245:2,-25.5,4,0,0,-0.170485 -100503,7002:245:1,-25,4,0,0,-0.171074 -100504,7002:144:2,-24.5,4,0,0,-0.171595 -100505,7002:144:1,-24,4,0,0,-0.172833 -100506,7002:143:2,-23.5,4,0,0,-0.175048 -100507,7002:143:1,-23,4,0,0,-0.177197 -100508,7002:142:2,-22.5,4,0,0,-0.18174 -100509,7002:142:1,-22,4,0,0,-0.186053 -100510,7002:141:2,-21.5,4,0,0,-0.188491 -100511,7002:141:1,-21,4,0,0,-0.190004 -100512,7002:140:2,-20.5,4,0,0,-0.191316 -100513,7002:140:1,-20,4,0,0,-0.193133 -100514,7001:249:2,-19.5,4,0,0,-0.198002 -100515,7001:249:1,-19,4,0,0,-0.210194 -100516,7001:248:2,-18.5,4,0,0,-0.248184 -100517,7001:248:1,-18,4,0,0,-0.288904 -100518,7001:247:2,-17.5,4,0,0,-0.318728 -100519,7001:247:1,-17,4,0,0,-0.328251 -100520,7001:246:2,-16.5,4,0,0,-0.333698 -100521,7001:246:1,-16,4,0,0,-0.415297 -100522,7001:245:2,-15.5,4,0,0,-0.429383 -100523,7001:245:1,-15,4,0,0,-0.553371 -100524,7001:144:2,-14.5,4,0,0,-1.35403 -100525,7001:144:1,-14,4,0,0,2.51487 -100526,1005:141:1,51,4,0,0,-0.173599 -100527,1005:141:2,51.5,4,0,0,-0.173168 -100528,1005:142:1,52,4,0,0,-0.172475 -100529,1005:142:2,52.5,4,0,0,-0.171524 -100530,1005:143:1,53,4,0,0,-0.171453 -100531,1005:143:2,53.5,4,0,0,-0.171595 -100532,1005:144:1,54,4,0,0,-0.170086 -100533,1005:144:2,54.5,4,0,0,-0.175048 -100534,1005:245:1,55,4,0,0,-0.177148 -100535,1005:245:2,55.5,4,0,0,-0.180529 -100536,1005:246:1,56,4,0,0,-0.182323 -100537,1005:246:2,56.5,4,0,0,-0.181083 -100538,1005:247:1,57,4,0,0,-0.180177 -100539,1005:247:2,57.5,4,0,0,-0.181032 -100540,1005:248:1,58,4,0,0,-0.18419 -100541,1005:248:2,58.5,4,0,0,-0.188517 -100542,1005:249:1,59,4,0,0,-0.192828 -100543,1005:249:2,59.5,4,0,0,-0.198404 -100544,1006:140:1,60,4,0,0,-0.202943 -100545,1006:140:2,60.5,4,0,0,-0.197958 -100546,1006:141:1,61,4,0,0,-0.194348 -100547,1006:141:2,61.5,4,0,0,-0.192313 -100548,1006:142:1,62,4,0,0,-0.192665 -100549,1006:142:2,62.5,4,0,0,-0.194087 -100550,1006:143:1,63,4,0,0,-0.19413 -100551,1006:143:2,63.5,4,0,0,-0.193565 -100552,1006:144:1,64,4,0,0,-0.195397 -100553,1006:144:2,64.5,4,0,0,-0.19917 -100554,1006:245:1,65,4,0,0,-0.211532 -100555,1006:245:2,65.5,4,0,0,-0.219541 -100556,1006:246:1,66,4,0,0,-0.223425 -100557,1006:246:2,66.5,4,0,0,-0.228501 -100558,1006:247:1,67,4,0,0,-0.236285 -100559,1006:247:2,67.5,4,0,0,-0.250485 -100560,1006:248:1,68,4,0,0,-0.267403 -100561,1006:248:2,68.5,4,0,0,-0.293554 -100562,1006:249:1,69,4,0,0,-0.325569 -100563,1006:249:2,69.5,4,0,0,-0.363282 -100564,1007:140:1,70,4,0,0,-0.392185 -100565,1007:140:2,70.5,4,0,0,-0.418952 -100566,1007:141:1,71,4,0,0,-0.432428 -100567,1007:141:2,71.5,4,0,0,-0.437843 -100568,1007:142:1,72,4,0,0,-0.424126 -100569,1007:142:2,72.5,4,0,0,-0.39085 -100570,1007:143:2,73.5,4,0,0,-0.358431 -100571,1007:144:1,74,4,0,0,-0.329867 -100572,1007:144:2,74.5,4,0,0,-0.31005 -100573,1007:245:1,75,4,0,0,-0.309546 -100574,1007:245:2,75.5,4,0,0,-0.328251 -100575,1007:246:1,76,4,0,0,-0.331509 -100576,1007:246:2,76.5,4,0,0,-0.362666 -100577,1008:140:1,80,4,0,0,-0.18419 -100578,1008:141:1,81,4,0,0,-0.182578 -100579,1008:141:2,81.5,4,0,0,-0.177197 -100580,1008:142:1,82,4,0,0,-0.183676 -100581,1008:142:2,82.5,4,0,0,-0.190271 -100582,1008:143:1,83,4,0,0,-0.194261 -100583,1008:143:2,83.5,4,0,0,-0.197735 -100584,1008:144:1,84,4,0,0,-0.198404 -100585,1008:144:2,84.5,4,0,0,-0.202389 -100586,1008:245:1,85,4,0,0,-0.209171 -100587,1008:245:2,85.5,4,0,0,-0.211532 -100588,1008:246:1,86,4,0,0,-0.216043 -100589,1008:246:2,86.5,4,0,0,-0.222122 -100590,1008:247:1,87,4,0,0,-0.227119 -100591,1008:247:2,87.5,4,0,0,-0.226092 -100592,1008:248:1,88,4,0,0,-0.225747 -100593,1008:248:2,88.5,4,0,0,-0.225403 -100594,1008:249:1,89,4,0,0,-0.226773 -100595,1008:249:2,89.5,4,0,0,-0.227119 -100596,1009:140:1,90,4,0,0,-0.232004 -100597,1009:140:2,90.5,4,0,0,-0.239561 -100598,1009:141:1,91,4,0,0,-0.23095 -100599,1009:141:2,91.5,4,0,0,-0.22885 -100600,1009:142:1,92,4,0,0,-0.218264 -100601,1009:142:2,92.5,4,0,0,-0.216678 -100602,1009:143:1,93,4,0,0,-0.222122 -100603,1009:143:2,93.5,4,0,0,-0.220827 -100604,1009:144:1,94,4,0,0,-0.227466 -100605,1009:144:2,94.5,4,0,0,-0.241779 -100606,1009:245:1,95,4,0,0,-0.250108 -100607,1009:245:2,95.5,4,0,0,-0.261615 -100608,1009:246:1,96,4,0,0,-0.272051 -100609,1009:246:2,96.5,4,0,0,-0.287071 -100610,1009:247:1,97,4,0,0,-0.287532 -100611,1009:247:2,97.5,4,0,0,-0.292611 -100612,1009:248:1,98,4,0,0,-0.340944 -100613,1009:248:2,98.5,4,0,0,-0.327168 -100614,1009:249:2,99.5,4,0,0,-0.204445 -100615,1010:140:1,100,4,0,0,-0.1994 -100616,1010:140:2,100.5,4,0,0,-0.198856 -100617,1010:141:1,101,4,0,0,-0.205022 -100618,1010:141:2,101.5,4,0,0,-0.219219 -100619,1010:142:1,102,4,0,0,-0.19917 -100620,1010:142:2,102.5,4,0,0,-0.192232 -100621,1010:143:1,103,4,0,0,-0.194872 -100622,1010:143:2,103.5,4,0,0,-0.18987 -100623,1010:144:1,104,4,0,0,-0.185119 -100624,1010:144:2,104.5,4,0,0,-0.181234 -100625,1010:245:1,105,4,0,0,-0.177962 -100626,1010:247:1,107,4,0,0,-0.162183 -100627,1010:247:2,107.5,4,0,0,-0.157569 -100628,1010:248:1,108,4,0,0,-0.157011 -100629,1010:248:2,108.5,4,0,0,-0.160856 -100630,1010:249:1,109,4,0,0,-0.167158 -100631,1010:249:2,109.5,4,0,0,-0.176829 -100632,1011:140:1,110,4,0,0,-0.185819 -100633,1011:140:2,110.5,4,0,0,-0.190913 -100634,1011:141:1,111,4,0,0,-0.196628 -100635,1011:141:2,111.5,4,0,0,-0.200632 -100636,1011:142:1,112,4,0,0,-0.19917 -100637,1011:142:2,112.5,4,0,0,-0.197026 -100638,1011:143:1,113,4,0,0,-0.197158 -100639,1011:143:2,113.5,4,0,0,-0.202943 -100640,1011:144:1,114,4,0,0,-0.228501 -100641,1011:144:2,114.5,4,0,0,-0.264483 -100642,1011:245:1,115,4,0,0,-0.311063 -100643,1011:245:2,115.5,4,0,0,-0.333698 -100644,1011:246:1,116,4,0,0,-0.32134 -100645,1011:246:2,116.5,4,0,0,-0.327709 -100646,1011:247:1,117,4,0,0,-0.344343 -100647,1011:247:2,117.5,4,0,0,-0.364498 -100648,1011:248:1,118,4,0,0,-0.309546 -100649,1011:248:2,118.5,4,0,0,-0.322914 -100650,1011:249:2,119.5,4,0,0,-0.28033 -100651,1012:140:1,120,4,0,0,-0.239931 -100652,1012:140:2,120.5,4,0,0,-0.222122 -100653,1012:141:1,121,4,0,0,-0.213434 -100654,1012:141:2,121.5,4,0,0,-0.203685 -100655,1012:142:1,122,4,0,0,-0.198594 -100656,1012:142:2,122.5,4,0,0,-0.19875 -100657,1012:144:1,124,4,0,0,-0.195923 -100658,1012:245:1,125,4,0,0,-0.1836 -100659,1012:245:2,125.5,4,0,0,-0.180103 -100660,1012:246:1,126,4,0,0,-0.191234 -100661,1012:246:2,126.5,4,0,0,-0.198856 -100662,1012:247:1,127,4,0,0,-0.250108 -100663,1012:247:2,127.5,4,0,0,-0.321869 -100664,1012:248:1,128,4,0,0,-0.384201 -100665,1012:248:2,128.5,4,0,0,-0.430147 -100666,1012:249:1,129,4,0,0,-0.460337 -100667,1012:249:2,129.5,4,0,0,-0.480868 -100668,1013:140:1,130,4,0,0,-0.488875 -100669,1013:140:2,130.5,4,0,0,-0.496136 -100670,1013:141:1,131,4,0,0,-0.504485 -100671,1013:141:2,131.5,4,0,0,-0.5073 -100672,1013:142:1,132,4,0,0,-0.517822 -100673,1013:142:2,132.5,4,0,0,-0.53571 -100674,1013:143:1,133,4,0,0,-0.561951 -100675,1013:143:2,133.5,4,0,0,-0.610169 -100676,1013:144:1,134,4,0,0,-0.664242 -100677,1013:144:2,134.5,4,0,0,-0.729692 -100678,1013:245:1,135,4,0,0,-0.845121 -100679,1013:245:2,135.5,4,0,0,-0.898653 -100680,1013:246:1,136,4,0,0,-0.818638 -100681,1013:246:2,136.5,4,0,0,-0.72072 -100682,1013:247:1,137,4,0,0,-0.77181 -100683,1013:247:2,137.5,4,0,0,-0.860292 -100684,1013:248:1,138,4,0,0,-0.818638 -100685,1013:248:2,138.5,4,0,0,-0.672525 -100686,1013:249:1,139,4,0,0,-0.605343 -100687,1013:249:2,139.5,4,0,0,-0.553371 -100688,1014:140:1,140,4,0,0,-0.511095 -100689,1014:140:2,140.5,4,0,0,-0.557639 -100690,1014:141:1,141,4,0,0,-0.556592 -100691,1014:141:2,141.5,4,0,0,-0.547068 -100692,1014:142:1,142,4,0,0,-0.53571 -100693,1014:142:2,142.5,4,0,0,-0.519783 -100694,1014:143:1,143,4,0,0,-0.513022 -100695,1014:143:2,143.5,4,0,0,-0.525695 -100696,1014:144:1,144,4,0,0,-0.552335 -100697,1014:144:2,144.5,4,0,0,-0.587679 -100698,1014:245:1,145,4,0,0,-0.630014 -100699,1014:245:2,145.5,4,0,0,-0.672525 -100700,1014:246:1,146,4,0,0,-0.731661 -100701,1014:246:2,146.5,4,0,0,-0.821452 -100702,1014:247:1,147,4,0,0,-0.901879 -100703,1014:247:2,147.5,4,0,0,-0.953703 -100704,1014:248:1,148,4,0,0,-0.998346 -100705,1014:248:2,148.5,4,0,0,-1.04217 -100706,1014:249:1,149,4,0,0,-1.03805 -100707,1014:249:2,149.5,4,0,0,-0.905223 -100708,1015:140:1,150,4,0,0,-0.839089 -100709,1015:140:2,150.5,4,0,0,-1.05457 -100710,1015:141:1,151,4,0,0,-1.36025 -100711,1015:141:2,151.5,4,0,0,-1.44477 -100712,1015:142:1,152,4,0,0,-1.40468 -100713,1015:142:2,152.5,4,0,0,-1.26652 -100714,1015:143:1,153,4,0,0,-1.12483 -100715,1015:143:2,153.5,4,0,0,-0.986926 -100716,1015:144:1,154,4,0,0,-0.863412 -100717,1015:144:2,154.5,4,0,0,-0.78247 -100718,1015:245:1,155,4,0,0,-0.746335 -100719,1015:245:2,155.5,4,0,0,-0.708665 -100720,1015:246:1,156,4,0,0,-0.671127 -100721,1015:246:2,156.5,4,0,0,-0.658814 -100722,1015:247:1,157,4,0,0,-0.654793 -100723,1015:247:2,157.5,4,0,0,-0.64814 -100724,1015:248:1,158,4,0,0,-0.632577 -100725,1015:248:2,158.5,4,0,0,-0.610169 -100726,1015:249:1,159,4,0,0,-0.587679 -100727,1015:249:2,159.5,4,0,0,-0.561951 -100728,1016:140:1,160,4,0,0,-0.534688 -100729,1016:140:2,160.5,4,0,0,-0.5073 -100730,1016:141:1,161,4,0,0,-0.4791 -100731,1016:141:2,161.5,4,0,0,-0.455404 -100732,1016:142:1,162,4,0,0,-0.435502 -100733,1016:142:2,162.5,4,0,0,-0.41967 -100734,1016:143:1,163,4,0,0,-0.412407 -100735,1016:143:2,163.5,4,0,0,-0.407395 -100736,1016:144:1,164,4,0,0,-0.405284 -100737,1016:144:2,164.5,4,0,0,-0.405284 -100738,1016:245:1,165,4,0,0,-0.401782 -100739,1016:245:2,165.5,4,0,0,-0.376422 -100740,1016:246:1,166,4,0,0,-0.339808 -100741,1016:246:2,166.5,4,0,0,-0.359627 -100742,1016:247:1,167,4,0,0,-0.346639 -100743,1016:247:2,167.5,4,0,0,-0.286168 -100744,1016:248:1,168,4,0,0,-0.263251 -100745,1016:248:2,168.5,4,0,0,-0.269509 -100746,1016:249:1,169,4,0,0,-0.260795 -100747,1016:249:2,169.5,4,0,0,-0.239192 -100748,1017:140:1,170,4,0,0,-0.229551 -100749,1017:140:2,170.5,4,0,0,-0.203311 -100750,1017:141:1,171,4,0,0,-0.218897 -100751,1017:141:2,171.5,4,0,0,-0.220502 -100752,1017:142:1,172,4,0,0,-0.223755 -100753,1017:142:2,172.5,4,0,0,-0.22885 -100754,1017:143:1,173,4,0,0,-0.234487 -100755,1017:143:2,173.5,4,0,0,-0.239192 -100756,1017:144:1,174,4,0,0,-0.240301 -100757,1017:144:2,174.5,4,0,0,-0.234138 -100758,1017:245:1,175,4,0,0,-0.219854 -100759,1017:245:2,175.5,4,0,0,-0.20149 -100760,1017:246:1,176,4,0,0,-0.195222 -100761,1017:246:2,176.5,4,0,0,-0.192124 -100762,1017:247:1,177,4,0,0,-0.19094 -100763,1017:247:2,177.5,4,0,0,-0.190645 -100764,1017:248:1,178,4,0,0,-0.191047 -100765,1017:248:2,178.5,4,0,0,-0.191908 -100766,1017:249:1,179,4,0,0,-0.192828 -100767,1017:249:2,179.5,4,0,0,-0.194043 -100768,1018:140:1,180,4,0,0,-0.194479 -100769,7018:140:3,-180,4.5,0,0,-0.188412 -100770,7017:249:4,-179.5,4.5,0,0,-0.188333 -100771,7017:249:3,-179,4.5,0,0,-0.188201 -100772,7017:248:4,-178.5,4.5,0,0,-0.188174 -100773,7017:248:3,-178,4.5,0,0,-0.188227 -100774,7017:247:4,-177.5,4.5,0,0,-0.18828 -100775,7017:247:3,-177,4.5,0,0,-0.188201 -100776,7017:246:4,-176.5,4.5,0,0,-0.187937 -100777,7017:246:3,-176,4.5,0,0,-0.187438 -100778,7017:245:4,-175.5,4.5,0,0,-0.186731 -100779,7017:245:3,-175,4.5,0,0,-0.185974 -100780,7017:144:4,-174.5,4.5,0,0,-0.185507 -100781,7017:144:3,-174,4.5,0,0,-0.185741 -100782,7017:143:4,-173.5,4.5,0,0,-0.186105 -100783,7017:143:3,-173,4.5,0,0,-0.186365 -100784,7017:142:4,-172.5,4.5,0,0,-0.186287 -100785,7017:142:3,-172,4.5,0,0,-0.185663 -100786,7017:141:4,-171.5,4.5,0,0,-0.184576 -100787,7017:141:3,-171,4.5,0,0,-0.183215 -100788,7017:140:4,-170.5,4.5,0,0,-0.181209 -100789,7017:140:3,-170,4.5,0,0,-0.179502 -100790,7016:249:4,-169.5,4.5,0,0,-0.178259 -100791,7016:249:3,-169,4.5,0,0,-0.177567 -100792,7016:248:4,-168.5,4.5,0,0,-0.177493 -100793,7016:248:3,-168,4.5,0,0,-0.17769 -100794,7016:247:4,-167.5,4.5,0,0,-0.178234 -100795,7016:247:3,-167,4.5,0,0,-0.178978 -100796,7016:246:4,-166.5,4.5,0,0,-0.179602 -100797,7016:246:3,-166,4.5,0,0,-0.179927 -100798,7016:245:4,-165.5,4.5,0,0,-0.180052 -100799,7016:245:3,-165,4.5,0,0,-0.179927 -100800,7016:144:4,-164.5,4.5,0,0,-0.179852 -100801,7016:144:3,-164,4.5,0,0,-0.179502 -100802,7016:143:4,-163.5,4.5,0,0,-0.179029 -100803,7016:143:3,-163,4.5,0,0,-0.17878 -100804,7016:142:4,-162.5,4.5,0,0,-0.178383 -100805,7016:142:3,-162,4.5,0,0,-0.178061 -100806,7016:141:4,-161.5,4.5,0,0,-0.177518 -100807,7016:141:3,-161,4.5,0,0,-0.177173 -100808,7016:140:4,-160.5,4.5,0,0,-0.175924 -100809,7016:140:3,-160,4.5,0,0,-0.174539 -100810,7015:249:4,-159.5,4.5,0,0,-0.173552 -100811,7015:249:3,-159,4.5,0,0,-0.17288 -100812,7015:248:4,-158.5,4.5,0,0,-0.172332 -100813,7015:248:3,-158,4.5,0,0,-0.171951 -100814,7015:247:4,-157.5,4.5,0,0,-0.171619 -100815,7015:247:3,-157,4.5,0,0,-0.171311 -100816,7015:246:4,-156.5,4.5,0,0,-0.171524 -100817,7015:246:3,-156,4.5,0,0,-0.172475 -100818,7015:245:4,-155.5,4.5,0,0,-0.173792 -100819,7015:245:3,-155,4.5,0,0,-0.174975 -100820,7015:144:4,-154.5,4.5,0,0,-0.175704 -100821,7015:144:3,-154,4.5,0,0,-0.175315 -100822,7015:143:4,-153.5,4.5,0,0,-0.174129 -100823,7015:143:3,-153,4.5,0,0,-0.17288 -100824,7015:142:4,-152.5,4.5,0,0,-0.172213 -100825,7015:142:3,-152,4.5,0,0,-0.171476 -100826,7015:141:4,-151.5,4.5,0,0,-0.170932 -100827,7015:141:3,-151,4.5,0,0,-0.170485 -100828,7015:140:4,-150.5,4.5,0,0,-0.169617 -100829,7015:140:3,-150,4.5,0,0,-0.168754 -100830,7014:249:4,-149.5,4.5,0,0,-0.168035 -100831,7014:249:3,-149,4.5,0,0,-0.167711 -100832,7014:248:4,-148.5,4.5,0,0,-0.167089 -100833,7014:248:3,-148,4.5,0,0,-0.166469 -100834,7014:247:4,-147.5,4.5,0,0,-0.166104 -100835,7014:247:3,-147,4.5,0,0,-0.166012 -100836,7014:246:4,-146.5,4.5,0,0,-0.16624 -100837,7014:246:3,-146,4.5,0,0,-0.166332 -100838,7014:245:4,-145.5,4.5,0,0,-0.165716 -100839,7014:245:3,-145,4.5,0,0,-0.164175 -100840,7014:144:4,-144.5,4.5,0,0,-0.162138 -100841,7014:144:3,-144,4.5,0,0,-0.160701 -100842,7014:143:4,-143.5,4.5,0,0,-0.160219 -100843,7014:143:3,-143,4.5,0,0,-0.160175 -100844,7014:142:4,-142.5,4.5,0,0,-0.160328 -100845,7014:142:3,-142,4.5,0,0,-0.160878 -100846,7014:141:4,-141.5,4.5,0,0,-0.162338 -100847,7014:141:3,-141,4.5,0,0,-0.164423 -100848,7014:140:4,-140.5,4.5,0,0,-0.165807 -100849,7014:140:3,-140,4.5,0,0,-0.165898 -100850,7013:249:4,-139.5,4.5,0,0,-0.165215 -100851,7013:249:3,-139,4.5,0,0,-0.16386 -100852,7013:248:4,-138.5,4.5,0,0,-0.162472 -100853,7013:248:3,-138,4.5,0,0,-0.162094 -100854,7013:247:4,-137.5,4.5,0,0,-0.162317 -100855,7013:247:3,-137,4.5,0,0,-0.162516 -100856,7013:246:4,-136.5,4.5,0,0,-0.162874 -100857,7013:246:3,-136,4.5,0,0,-0.163837 -100858,7013:245:4,-135.5,4.5,0,0,-0.165374 -100859,7013:245:3,-135,4.5,0,0,-0.166652 -100860,7013:144:4,-134.5,4.5,0,0,-0.167549 -100861,7013:144:3,-134,4.5,0,0,-0.168405 -100862,7013:143:4,-133.5,4.5,0,0,-0.168684 -100863,7013:143:3,-133,4.5,0,0,-0.167665 -100864,7013:142:4,-132.5,4.5,0,0,-0.166492 -100865,7013:142:3,-132,4.5,0,0,-0.165807 -100866,7013:141:4,-131.5,4.5,0,0,-0.166195 -100867,7013:141:3,-131,4.5,0,0,-0.167873 -100868,7013:140:4,-130.5,4.5,0,0,-0.169804 -100869,7013:140:3,-130,4.5,0,0,-0.171334 -100870,7012:249:4,-129.5,4.5,0,0,-0.172189 -100871,7012:249:3,-129,4.5,0,0,-0.17188 -100872,7012:248:4,-128.5,4.5,0,0,-0.171809 -100873,7012:248:3,-128,4.5,0,0,-0.171809 -100874,7012:247:4,-127.5,4.5,0,0,-0.172118 -100875,7012:247:3,-127,4.5,0,0,-0.172929 -100876,7012:246:4,-126.5,4.5,0,0,-0.173961 -100877,7012:246:3,-126,4.5,0,0,-0.175315 -100878,7012:245:4,-125.5,4.5,0,0,-0.177369 -100879,7012:245:3,-125,4.5,0,0,-0.179502 -100880,7012:144:4,-124.5,4.5,0,0,-0.181335 -100881,7012:144:3,-124,4.5,0,0,-0.182859 -100882,7012:143:4,-123.5,4.5,0,0,-0.183728 -100883,7012:143:3,-123,4.5,0,0,-0.184344 -100884,7012:142:4,-122.5,4.5,0,0,-0.184989 -100885,7012:142:3,-122,4.5,0,0,-0.185766 -100886,7012:141:4,-121.5,4.5,0,0,-0.18647 -100887,7012:141:3,-121,4.5,0,0,-0.187045 -100888,7012:140:4,-120.5,4.5,0,0,-0.187805 -100889,7012:140:3,-120,4.5,0,0,-0.18828 -100890,7011:249:4,-119.5,4.5,0,0,-0.188095 -100891,7011:249:3,-119,4.5,0,0,-0.187595 -100892,7011:248:4,-118.5,4.5,0,0,-0.187359 -100893,7011:248:3,-118,4.5,0,0,-0.187228 -100894,7011:247:4,-117.5,4.5,0,0,-0.186862 -100895,7011:247:3,-117,4.5,0,0,-0.186261 -100896,7011:246:4,-116.5,4.5,0,0,-0.185352 -100897,7011:246:3,-116,4.5,0,0,-0.184757 -100898,7011:245:4,-115.5,4.5,0,0,-0.184499 -100899,7011:245:3,-115,4.5,0,0,-0.184447 -100900,7011:144:4,-114.5,4.5,0,0,-0.184344 -100901,7011:144:3,-114,4.5,0,0,-0.184499 -100902,7011:143:4,-113.5,4.5,0,0,-0.184757 -100903,7011:143:3,-113,4.5,0,0,-0.185196 -100904,7011:142:4,-112.5,4.5,0,0,-0.185611 -100905,7011:142:3,-112,4.5,0,0,-0.185949 -100906,7011:141:4,-111.5,4.5,0,0,-0.185949 -100907,7011:141:3,-111,4.5,0,0,-0.186027 -100908,7011:140:4,-110.5,4.5,0,0,-0.186261 -100909,7011:140:3,-110,4.5,0,0,-0.186522 -100910,7010:249:4,-109.5,4.5,0,0,-0.1866 -100911,7010:249:3,-109,4.5,0,0,-0.186835 -100912,7010:248:4,-108.5,4.5,0,0,-0.187543 -100913,7010:248:3,-108,4.5,0,0,-0.189418 -100914,7010:247:4,-107.5,4.5,0,0,-0.191638 -100915,7010:247:3,-107,4.5,0,0,-0.194261 -100916,7010:246:4,-106.5,4.5,0,0,-0.197914 -100917,7010:246:3,-106,4.5,0,0,-0.205991 -100918,7010:245:4,-105.5,4.5,0,0,-0.223096 -100919,7010:245:3,-105,4.5,0,0,-0.222767 -100920,7010:144:4,-104.5,4.5,0,0,-0.197425 -100921,7010:144:3,-104,4.5,0,0,-0.190538 -100922,7010:143:4,-103.5,4.5,0,0,-0.18419 -100923,7010:143:3,-103,4.5,0,0,-0.178805 -100924,7010:142:4,-102.5,4.5,0,0,-0.177813 -100925,7010:142:3,-102,4.5,0,0,-0.177468 -100926,7010:141:4,-101.5,4.5,0,0,-0.176609 -100927,7010:141:3,-101,4.5,0,0,-0.175582 -100928,7010:140:4,-100.5,4.5,0,0,-0.174564 -100929,7010:140:3,-100,4.5,0,0,-0.173216 -100930,7009:249:4,-99.5,4.5,0,0,-0.171951 -100931,7009:249:3,-99,4.5,0,0,-0.171642 -100932,7009:248:4,-98.5,4.5,0,0,-0.172594 -100933,7009:248:3,-98,4.5,0,0,-0.17288 -100934,7009:247:4,-97.5,4.5,0,0,-0.172976 -100935,7009:247:3,-97,4.5,0,0,-0.173503 -100936,7009:246:4,-96.5,4.5,0,0,-0.173695 -100937,7009:246:3,-96,4.5,0,0,-0.173744 -100938,7009:245:4,-95.5,4.5,0,0,-0.174806 -100939,7009:245:3,-95,4.5,0,0,-0.176878 -100940,7009:144:4,-94.5,4.5,0,0,-0.178358 -100941,7009:144:3,-94,4.5,0,0,-0.178904 -100942,7009:143:4,-93.5,4.5,0,0,-0.178482 -100943,7009:143:3,-93,4.5,0,0,-0.178358 -100944,7009:142:4,-92.5,4.5,0,0,-0.179302 -100945,7009:142:3,-92,4.5,0,0,-0.179677 -100946,7009:141:4,-91.5,4.5,0,0,-0.178061 -100947,7009:141:3,-91,4.5,0,0,-0.176021 -100948,7009:140:4,-90.5,4.5,0,0,-0.174153 -100949,7009:140:3,-90,4.5,0,0,-0.174927 -100950,7008:249:4,-89.5,4.5,0,0,-0.175826 -100951,7008:249:3,-89,4.5,0,0,-0.177222 -100952,7008:248:4,-88.5,4.5,0,0,-0.179253 -100953,7008:248:3,-88,4.5,0,0,-0.182298 -100954,7008:247:4,-87.5,4.5,0,0,-0.187149 -100955,7008:247:3,-87,4.5,0,0,-0.196938 -100956,7008:246:4,-86.5,4.5,0,0,-0.335906 -100957,7008:246:3,-86,4.5,0,0,-0.424126 -100958,7008:143:3,-83,4.5,0,0,-0.192719 -100959,7008:142:4,-82.5,4.5,0,0,-0.189046 -100960,7008:142:3,-82,4.5,0,0,-0.186914 -100961,7008:141:4,-81.5,4.5,0,0,-0.186 -100962,7008:141:3,-81,4.5,0,0,-0.186365 -100963,7008:140:4,-80.5,4.5,0,0,-0.186496 -100964,7008:140:3,-80,4.5,0,0,-0.187071 -100965,7007:249:4,-79.5,4.5,0,0,-0.189472 -100966,7007:249:3,-79,4.5,0,0,-0.192421 -100967,7007:248:4,-78.5,4.5,0,0,-0.196188 -100968,7007:248:3,-78,4.5,0,0,-0.208658 -100969,7007:247:4,-77.5,4.5,0,0,-0.297334 -100970,7007:247:3,-77,4.5,0,0,-0.358431 -100971,7007:246:4,-76.5,4.5,0,0,-0.354838 -100972,7007:246:3,-76,4.5,0,0,-0.277679 -100973,7006:246:3,-66,4.5,0,0,-0.139904 -100974,7006:245:4,-65.5,4.5,0,0,-0.152959 -100975,7006:245:3,-65,4.5,0,0,-0.15147 -100976,7006:144:4,-64.5,4.5,0,0,-0.148521 -100977,7006:144:3,-64,4.5,0,0,-0.165125 -100978,7006:142:4,-62.5,4.5,0,0,-0.178854 -100979,7006:142:3,-62,4.5,0,0,-0.179302 -100980,7006:141:4,-61.5,4.5,0,0,-0.179378 -100981,7006:140:4,-60.5,4.5,0,0,-0.176437 -100982,7006:140:3,-60,4.5,0,0,-0.183063 -100983,7005:249:4,-59.5,4.5,0,0,-0.182756 -100984,7005:249:3,-59,4.5,0,0,-0.183395 -100985,7005:248:4,-58.5,4.5,0,0,-0.184344 -100986,7005:248:3,-58,4.5,0,0,-0.184113 -100987,7005:247:4,-57.5,4.5,0,0,-0.184421 -100988,7005:247:3,-57,4.5,0,0,-0.185222 -100989,7005:246:4,-56.5,4.5,0,0,-0.185455 -100990,7005:246:3,-56,4.5,0,0,-0.185429 -100991,7005:245:4,-55.5,4.5,0,0,-0.185171 -100992,7005:245:3,-55,4.5,0,0,-0.184989 -100993,7005:144:4,-54.5,4.5,0,0,-0.185067 -100994,7005:144:3,-54,4.5,0,0,-0.184396 -100995,7005:143:4,-53.5,4.5,0,0,-0.184036 -100996,7005:143:3,-53,4.5,0,0,-0.183523 -100997,7005:142:4,-52.5,4.5,0,0,-0.18342 -100998,7005:142:3,-52,4.5,0,0,-0.183446 -100999,7005:141:4,-51.5,4.5,0,0,-0.183779 -101000,7005:141:3,-51,4.5,0,0,-0.184113 -101001,7005:140:4,-50.5,4.5,0,0,-0.18401 -101002,7005:140:3,-50,4.5,0,0,-0.183241 -101003,7004:249:4,-49.5,4.5,0,0,-0.18212 -101004,7004:249:3,-49,4.5,0,0,-0.180831 -101005,7004:248:4,-48.5,4.5,0,0,-0.179253 -101006,7004:248:3,-48,4.5,0,0,-0.177099 -101007,7004:247:4,-47.5,4.5,0,0,-0.174491 -101008,7004:247:3,-47,4.5,0,0,-0.173048 -101009,7004:246:4,-46.5,4.5,0,0,-0.173407 -101010,7004:246:3,-46,4.5,0,0,-0.17324 -101011,7004:245:4,-45.5,4.5,0,0,-0.172427 -101012,7004:245:3,-45,4.5,0,0,-0.172118 -101013,7004:144:4,-44.5,4.5,0,0,-0.172547 -101014,7004:144:3,-44,4.5,0,0,-0.173072 -101015,7004:143:4,-43.5,4.5,0,0,-0.173672 -101016,7004:143:3,-43,4.5,0,0,-0.173576 -101017,7004:142:4,-42.5,4.5,0,0,-0.172189 -101018,7004:142:3,-42,4.5,0,0,-0.170203 -101019,7004:141:4,-41.5,4.5,0,0,-0.168545 -101020,7004:141:3,-41,4.5,0,0,-0.167296 -101021,7004:140:4,-40.5,4.5,0,0,-0.166744 -101022,7004:140:3,-40,4.5,0,0,-0.166744 -101023,7003:249:4,-39.5,4.5,0,0,-0.166629 -101024,7003:249:3,-39,4.5,0,0,-0.166012 -101025,7003:248:4,-38.5,4.5,0,0,-0.164558 -101026,7003:248:3,-38,4.5,0,0,-0.162695 -101027,7003:247:4,-37.5,4.5,0,0,-0.160856 -101028,7003:247:3,-37,4.5,0,0,-0.159955 -101029,7003:246:4,-36.5,4.5,0,0,-0.159366 -101030,7003:246:3,-36,4.5,0,0,-0.159192 -101031,7003:245:4,-35.5,4.5,0,0,-0.158779 -101032,7003:245:3,-35,4.5,0,0,-0.157936 -101033,7003:144:4,-34.5,4.5,0,0,-0.157484 -101034,7003:144:3,-34,4.5,0,0,-0.158519 -101035,7003:143:4,-33.5,4.5,0,0,-0.160745 -101036,7003:143:3,-33,4.5,0,0,-0.161429 -101037,7003:142:4,-32.5,4.5,0,0,-0.15917 -101038,7003:142:3,-32,4.5,0,0,-0.158975 -101039,7003:141:4,-31.5,4.5,0,0,-0.159453 -101040,7003:141:3,-31,4.5,0,0,-0.158216 -101041,7003:140:4,-30.5,4.5,0,0,-0.157269 -101042,7003:140:3,-30,4.5,0,0,-0.158108 -101043,7002:249:4,-29.5,4.5,0,0,-0.159759 -101044,7002:249:3,-29,4.5,0,0,-0.161274 -101045,7002:248:4,-28.5,4.5,0,0,-0.162606 -101046,7002:248:3,-28,4.5,0,0,-0.163747 -101047,7002:247:4,-27.5,4.5,0,0,-0.164446 -101048,7002:247:3,-27,4.5,0,0,-0.16431 -101049,7002:246:4,-26.5,4.5,0,0,-0.164558 -101050,7002:246:3,-26,4.5,0,0,-0.165807 -101051,7002:245:4,-25.5,4.5,0,0,-0.166813 -101052,7002:245:3,-25,4.5,0,0,-0.166951 -101053,7002:144:4,-24.5,4.5,0,0,-0.167503 -101054,7002:144:3,-24,4.5,0,0,-0.169383 -101055,7002:143:4,-23.5,4.5,0,0,-0.171833 -101056,7002:143:3,-23,4.5,0,0,-0.175169 -101057,7002:142:4,-22.5,4.5,0,0,-0.178978 -101058,7002:142:3,-22,4.5,0,0,-0.18174 -101059,7002:141:4,-21.5,4.5,0,0,-0.183113 -101060,7002:141:3,-21,4.5,0,0,-0.184783 -101061,7002:140:4,-20.5,4.5,0,0,-0.187176 -101062,7002:140:3,-20,4.5,0,0,-0.190164 -101063,7001:249:4,-19.5,4.5,0,0,-0.191181 -101064,7001:249:3,-19,4.5,0,0,-0.191638 -101065,7001:248:4,-18.5,4.5,0,0,-0.197602 -101066,7001:248:3,-18,4.5,0,0,-0.207899 -101067,7001:247:4,-17.5,4.5,0,0,-0.204251 -101068,7001:247:3,-17,4.5,0,0,-0.244767 -101069,7001:246:4,-16.5,4.5,0,0,-0.328794 -101070,7001:246:3,-16,4.5,0,0,-0.483508 -101071,7001:245:4,-15.5,4.5,0,0,-0.99075 -101072,7001:245:3,-15,4.5,0,0,-1.26096 -101073,1004:144:4,44.5,4.5,0,0,-0.157655 -101074,1005:141:4,51.5,4.5,0,0,-0.169664 -101075,1005:142:3,52,4.5,0,0,-0.17065 -101076,1005:142:4,52.5,4.5,0,0,-0.171004 -101077,1005:143:3,53,4.5,0,0,-0.169851 -101078,1005:143:4,53.5,4.5,0,0,-0.167665 -101079,1005:144:3,54,4.5,0,0,-0.168104 -101080,1005:144:4,54.5,4.5,0,0,-0.169617 -101081,1005:245:3,55,4.5,0,0,-0.170438 -101082,1005:245:4,55.5,4.5,0,0,-0.171833 -101083,1005:246:3,56,4.5,0,0,-0.173383 -101084,1005:246:4,56.5,4.5,0,0,-0.174129 -101085,1005:247:3,57,4.5,0,0,-0.174395 -101086,1005:247:4,57.5,4.5,0,0,-0.17425 -101087,1005:248:3,58,4.5,0,0,-0.175582 -101088,1005:248:4,58.5,4.5,0,0,-0.179402 -101089,1005:249:3,59,4.5,0,0,-0.184783 -101090,1005:249:4,59.5,4.5,0,0,-0.189472 -101091,1006:140:3,60,4.5,0,0,-0.19102 -101092,1006:140:4,60.5,4.5,0,0,-0.190083 -101093,1006:141:3,61,4.5,0,0,-0.188702 -101094,1006:141:4,61.5,4.5,0,0,-0.188544 -101095,1006:142:3,62,4.5,0,0,-0.190297 -101096,1006:142:4,62.5,4.5,0,0,-0.19207 -101097,1006:143:3,63,4.5,0,0,-0.192917 -101098,1006:143:4,63.5,4.5,0,0,-0.192746 -101099,1006:144:3,64,4.5,0,0,-0.193782 -101100,1006:144:4,64.5,4.5,0,0,-0.196275 -101101,1006:245:3,65,4.5,0,0,-0.198449 -101102,1006:245:4,65.5,4.5,0,0,-0.199234 -101103,1006:246:3,66,4.5,0,0,-0.199973 -101104,1006:246:4,66.5,4.5,0,0,-0.199973 -101105,1006:247:3,67,4.5,0,0,-0.200799 -101106,1006:247:4,67.5,4.5,0,0,-0.20677 -101107,1006:248:3,68,4.5,0,0,-0.226092 -101108,1006:248:4,68.5,4.5,0,0,-0.255191 -101109,1006:249:3,69,4.5,0,0,-0.285254 -101110,1006:249:4,69.5,4.5,0,0,-0.318205 -101111,1007:140:3,70,4.5,0,0,-0.35424 -101112,1007:140:4,70.5,4.5,0,0,-0.381585 -101113,1007:141:3,71,4.5,0,0,-0.400405 -101114,1007:141:4,71.5,4.5,0,0,-0.423375 -101115,1007:142:3,72,4.5,0,0,-0.456204 -101116,1007:142:4,72.5,4.5,0,0,-0.458693 -101117,1007:143:4,73.5,4.5,0,0,-0.413111 -101118,1007:144:3,74,4.5,0,0,-0.368216 -101119,1007:144:4,74.5,4.5,0,0,-0.365739 -101120,1007:245:3,75,4.5,0,0,-0.339242 -101121,1007:245:4,75.5,4.5,0,0,-0.358431 -101122,1007:246:3,76,4.5,0,0,-0.401782 -101123,1008:140:4,80.5,4.5,0,0,-0.179602 -101124,1008:141:3,81,4.5,0,0,-0.176094 -101125,1008:141:4,81.5,4.5,0,0,-0.176021 -101126,1008:142:3,82,4.5,0,0,-0.185507 -101127,1008:142:4,82.5,4.5,0,0,-0.190164 -101128,1008:143:3,83,4.5,0,0,-0.190671 -101129,1008:143:4,83.5,4.5,0,0,-0.191854 -101130,1008:144:3,84,4.5,0,0,-0.194173 -101131,1008:144:4,84.5,4.5,0,0,-0.197158 -101132,1008:245:3,85,4.5,0,0,-0.205606 -101133,1008:245:4,85.5,4.5,0,0,-0.211532 -101134,1008:246:3,86,4.5,0,0,-0.21636 -101135,1008:246:4,86.5,4.5,0,0,-0.211259 -101136,1008:247:3,87,4.5,0,0,-0.206968 -101137,1008:247:4,87.5,4.5,0,0,-0.216043 -101138,1008:248:3,88,4.5,0,0,-0.22885 -101139,1008:248:4,88.5,4.5,0,0,-0.227814 -101140,1008:249:3,89,4.5,0,0,-0.218897 -101141,1008:249:4,89.5,4.5,0,0,-0.243267 -101142,1009:140:3,90,4.5,0,0,-0.270776 -101143,1009:140:4,90.5,4.5,0,0,-0.265735 -101144,1009:141:3,91,4.5,0,0,-0.259584 -101145,1009:141:4,91.5,4.5,0,0,-0.22885 -101146,1009:142:3,92,4.5,0,0,-0.225403 -101147,1009:142:4,92.5,4.5,0,0,-0.232004 -101148,1009:143:3,93,4.5,0,0,-0.242516 -101149,1009:143:4,93.5,4.5,0,0,-0.227119 -101150,1009:144:3,94,4.5,0,0,-0.23342 -101151,1009:144:4,94.5,4.5,0,0,-0.243644 -101152,1009:245:3,95,4.5,0,0,-0.244388 -101153,1009:245:4,95.5,4.5,0,0,-0.245515 -101154,1009:246:3,96,4.5,0,0,-0.253999 -101155,1009:246:4,96.5,4.5,0,0,-0.256779 -101156,1009:247:3,97,4.5,0,0,-0.255578 -101157,1009:247:4,97.5,4.5,0,0,-0.272051 -101158,1009:248:3,98,4.5,0,0,-0.273334 -101159,1009:248:4,98.5,4.5,0,0,-0.287993 -101160,1010:140:3,100,4.5,0,0,-0.19215 -101161,1010:140:4,100.5,4.5,0,0,-0.191154 -101162,1010:141:3,101,4.5,0,0,-0.192097 -101163,1010:141:4,101.5,4.5,0,0,-0.198359 -101164,1010:142:3,102,4.5,0,0,-0.199013 -101165,1010:142:4,102.5,4.5,0,0,-0.198225 -101166,1010:143:3,103,4.5,0,0,-0.198092 -101167,1010:143:4,103.5,4.5,0,0,-0.190779 -101168,1010:144:3,104,4.5,0,0,-0.185766 -101169,1010:144:4,104.5,4.5,0,0,-0.181867 -101170,1010:248:3,108,4.5,0,0,-0.155245 -101171,1010:248:4,108.5,4.5,0,0,-0.154759 -101172,1010:249:3,109,4.5,0,0,-0.156477 -101173,1010:249:4,109.5,4.5,0,0,-0.161274 -101174,1011:140:3,110,4.5,0,0,-0.182044 -101175,1011:140:4,110.5,4.5,0,0,-0.185974 -101176,1011:141:3,111,4.5,0,0,-0.190967 -101177,1011:141:4,111.5,4.5,0,0,-0.194261 -101178,1011:142:3,112,4.5,0,0,-0.194261 -101179,1011:142:4,112.5,4.5,0,0,-0.191908 -101180,1011:143:3,113,4.5,0,0,-0.189073 -101181,1011:143:4,113.5,4.5,0,0,-0.189206 -101182,1011:144:3,114,4.5,0,0,-0.195703 -101183,1011:144:4,114.5,4.5,0,0,-0.222122 -101184,1011:245:3,115,4.5,0,0,-0.262425 -101185,1011:245:4,115.5,4.5,0,0,-0.287532 -101186,1011:246:3,116,4.5,0,0,-0.295437 -101187,1011:246:4,116.5,4.5,0,0,-0.309546 -101188,1011:247:3,117,4.5,0,0,-0.297815 -101189,1011:247:4,117.5,4.5,0,0,-0.326645 -101190,1011:248:3,118,4.5,0,0,-0.331509 -101191,1011:248:4,118.5,4.5,0,0,-0.250108 -101192,1011:249:3,119,4.5,0,0,-0.228162 -101193,1012:140:4,120.5,4.5,0,0,-0.226437 -101194,1012:141:3,121,4.5,0,0,-0.213159 -101195,1012:141:4,121.5,4.5,0,0,-0.199309 -101196,1012:142:3,122,4.5,0,0,-0.19461 -101197,1012:142:4,122.5,4.5,0,0,-0.196055 -101198,1012:143:3,123,4.5,0,0,-0.192313 -101199,1012:144:4,124.5,4.5,0,0,-0.275059 -101200,1012:245:4,125.5,4.5,0,0,-0.1891 -101201,1012:246:4,126.5,4.5,0,0,-0.196938 -101202,1012:247:3,127,4.5,0,0,-0.227814 -101203,1012:247:4,127.5,4.5,0,0,-0.284798 -101204,1012:248:3,128,4.5,0,0,-0.330961 -101205,1012:248:4,128.5,4.5,0,0,-0.365118 -101206,1012:249:3,129,4.5,0,0,-0.392185 -101207,1012:249:4,129.5,4.5,0,0,-0.416007 -101208,1013:140:3,130,4.5,0,0,-0.437061 -101209,1013:140:4,130.5,4.5,0,0,-0.457862 -101210,1013:141:3,131,4.5,0,0,-0.478219 -101211,1013:141:4,131.5,4.5,0,0,-0.498889 -101212,1013:142:3,132,4.5,0,0,-0.516875 -101213,1013:142:4,132.5,4.5,0,0,-0.534688 -101214,1013:143:3,133,4.5,0,0,-0.555516 -101215,1013:143:4,133.5,4.5,0,0,-0.594666 -101216,1013:144:3,134,4.5,0,0,-0.64549 -101217,1013:144:4,134.5,4.5,0,0,-0.715526 -101218,1013:245:3,135,4.5,0,0,-0.818638 -101219,1013:245:4,135.5,4.5,0,0,-0.793342 -101220,1013:246:3,136,4.5,0,0,-0.679488 -101221,1013:246:4,136.5,4.5,0,0,-0.593488 -101222,1013:247:3,137,4.5,0,0,-0.580804 -101223,1013:247:4,137.5,4.5,0,0,-0.577425 -101224,1013:248:3,138,4.5,0,0,-0.566343 -101225,1013:248:4,138.5,4.5,0,0,-0.546016 -101226,1013:249:3,139,4.5,0,0,-0.520767 -101227,1013:249:4,139.5,4.5,0,0,-0.492488 -101228,1014:140:3,140,4.5,0,0,-0.467894 -101229,1014:140:4,140.5,4.5,0,0,-0.488875 -101230,1014:141:3,141,4.5,0,0,-0.490663 -101231,1014:141:4,141.5,4.5,0,0,-0.491574 -101232,1014:142:3,142,4.5,0,0,-0.488875 -101233,1014:142:4,142.5,4.5,0,0,-0.487971 -101234,1014:143:3,143,4.5,0,0,-0.489754 -101235,1014:143:4,143.5,4.5,0,0,-0.490663 -101236,1014:144:3,144,4.5,0,0,-0.492488 -101237,1014:144:4,144.5,4.5,0,0,-0.497061 -101238,1014:245:3,145,4.5,0,0,-0.509207 -101239,1014:245:4,145.5,4.5,0,0,-0.534688 -101240,1014:246:3,146,4.5,0,0,-0.568523 -101241,1014:246:4,146.5,4.5,0,0,-0.611356 -101242,1014:247:3,147,4.5,0,0,-0.652104 -101243,1014:247:4,147.5,4.5,0,0,-0.673884 -101244,1014:248:3,148,4.5,0,0,-0.675289 -101245,1014:248:4,148.5,4.5,0,0,-0.66562 -101246,1014:249:3,149,4.5,0,0,-0.658814 -101247,1014:249:4,149.5,4.5,0,0,-0.682336 -101248,1015:140:3,150,4.5,0,0,-0.72072 -101249,1015:140:4,150.5,4.5,0,0,-0.759297 -101250,1015:141:3,151,4.5,0,0,-0.787837 -101251,1015:141:4,151.5,4.5,0,0,-0.790583 -101252,1015:142:3,152,4.5,0,0,-0.766519 -101253,1015:142:4,152.5,4.5,0,0,-0.724249 -101254,1015:143:3,153,4.5,0,0,-0.68091 -101255,1015:143:4,153.5,4.5,0,0,-0.638968 -101256,1015:144:3,154,4.5,0,0,-0.604136 -101257,1015:144:4,154.5,4.5,0,0,-0.583095 -101258,1015:245:3,155,4.5,0,0,-0.570748 -101259,1015:245:4,155.5,4.5,0,0,-0.565241 -101260,1015:246:3,156,4.5,0,0,-0.565241 -101261,1015:246:4,156.5,4.5,0,0,-0.561951 -101262,1015:247:3,157,4.5,0,0,-0.552335 -101263,1015:247:4,157.5,4.5,0,0,-0.539794 -101264,1015:248:3,158,4.5,0,0,-0.520767 -101265,1015:248:4,158.5,4.5,0,0,-0.500754 -101266,1015:249:3,159,4.5,0,0,-0.477367 -101267,1015:249:4,159.5,4.5,0,0,-0.452146 -101268,1016:140:3,160,4.5,0,0,-0.424126 -101269,1016:140:4,160.5,4.5,0,0,-0.39423 -101270,1016:141:3,161,4.5,0,0,-0.366965 -101271,1016:141:4,161.5,4.5,0,0,-0.345498 -101272,1016:142:3,162,4.5,0,0,-0.328251 -101273,1016:142:4,162.5,4.5,0,0,-0.313086 -101274,1016:143:3,163,4.5,0,0,-0.309546 -101275,1016:143:4,163.5,4.5,0,0,-0.313086 -101276,1016:144:3,164,4.5,0,0,-0.31666 -101277,1016:144:4,164.5,4.5,0,0,-0.312065 -101278,1016:245:3,165,4.5,0,0,-0.297815 -101279,1016:245:4,165.5,4.5,0,0,-0.280763 -101280,1016:246:3,166,4.5,0,0,-0.263251 -101281,1016:246:4,166.5,4.5,0,0,-0.239931 -101282,1016:247:3,167,4.5,0,0,-0.220827 -101283,1016:247:4,167.5,4.5,0,0,-0.219854 -101284,1016:248:3,168,4.5,0,0,-0.223425 -101285,1016:248:4,168.5,4.5,0,0,-0.227466 -101286,1016:249:3,169,4.5,0,0,-0.224076 -101287,1016:249:4,169.5,4.5,0,0,-0.205796 -101288,1017:140:3,170,4.5,0,0,-0.202023 -101289,1017:140:4,170.5,4.5,0,0,-0.195353 -101290,1017:141:3,171,4.5,0,0,-0.198092 -101291,1017:141:4,171.5,4.5,0,0,-0.198002 -101292,1017:142:3,172,4.5,0,0,-0.196849 -101293,1017:142:4,172.5,4.5,0,0,-0.195484 -101294,1017:143:3,173,4.5,0,0,-0.194305 -101295,1017:143:4,173.5,4.5,0,0,-0.193219 -101296,1017:144:3,174,4.5,0,0,-0.192394 -101297,1017:144:4,174.5,4.5,0,0,-0.191504 -101298,1017:245:3,175,4.5,0,0,-0.190645 -101299,1017:245:4,175.5,4.5,0,0,-0.189844 -101300,1017:246:3,176,4.5,0,0,-0.189073 -101301,1017:246:4,176.5,4.5,0,0,-0.188438 -101302,1017:247:3,177,4.5,0,0,-0.187964 -101303,1017:247:4,177.5,4.5,0,0,-0.187727 -101304,1017:248:3,178,4.5,0,0,-0.187779 -101305,1017:248:4,178.5,4.5,0,0,-0.18799 -101306,1017:249:3,179,4.5,0,0,-0.18828 -101307,1017:249:4,179.5,4.5,0,0,-0.188438 -101308,1018:140:3,180,4.5,0,0,-0.188412 -101309,7018:350:1,-180,5,0,0,-0.185093 -101310,7017:459:2,-179.5,5,0,0,-0.184989 -101311,7017:459:1,-179,5,0,0,-0.184628 -101312,7017:458:2,-178.5,5,0,0,-0.184036 -101313,7017:458:1,-178,5,0,0,-0.18342 -101314,7017:457:2,-177.5,5,0,0,-0.182961 -101315,7017:457:1,-177,5,0,0,-0.182705 -101316,7017:456:2,-176.5,5,0,0,-0.182527 -101317,7017:456:1,-176,5,0,0,-0.182095 -101318,7017:455:2,-175.5,5,0,0,-0.181715 -101319,7017:455:1,-175,5,0,0,-0.18131 -101320,7017:354:2,-174.5,5,0,0,-0.181008 -101321,7017:354:1,-174,5,0,0,-0.181058 -101322,7017:353:2,-173.5,5,0,0,-0.181083 -101323,7017:353:1,-173,5,0,0,-0.180882 -101324,7017:352:2,-172.5,5,0,0,-0.180479 -101325,7017:352:1,-172,5,0,0,-0.179877 -101326,7017:351:2,-171.5,5,0,0,-0.178929 -101327,7017:351:1,-171,5,0,0,-0.177888 -101328,7017:350:2,-170.5,5,0,0,-0.177001 -101329,7017:350:1,-170,5,0,0,-0.176314 -101330,7016:459:2,-169.5,5,0,0,-0.175753 -101331,7016:459:1,-169,5,0,0,-0.175485 -101332,7016:458:2,-168.5,5,0,0,-0.175534 -101333,7016:458:1,-168,5,0,0,-0.175924 -101334,7016:457:2,-167.5,5,0,0,-0.176437 -101335,7016:457:1,-167,5,0,0,-0.177001 -101336,7016:456:2,-166.5,5,0,0,-0.177296 -101337,7016:456:1,-166,5,0,0,-0.177148 -101338,7016:455:2,-165.5,5,0,0,-0.176755 -101339,7016:455:1,-165,5,0,0,-0.176168 -101340,7016:354:2,-164.5,5,0,0,-0.175315 -101341,7016:354:1,-164,5,0,0,-0.17425 -101342,7016:353:2,-163.5,5,0,0,-0.173168 -101343,7016:353:1,-163,5,0,0,-0.172284 -101344,7016:352:2,-162.5,5,0,0,-0.171429 -101345,7016:352:1,-162,5,0,0,-0.170532 -101346,7016:351:2,-161.5,5,0,0,-0.17032 -101347,7016:351:1,-161,5,0,0,-0.170038 -101348,7016:350:2,-160.5,5,0,0,-0.169617 -101349,7016:350:1,-160,5,0,0,-0.169406 -101350,7015:459:2,-159.5,5,0,0,-0.169126 -101351,7015:459:1,-159,5,0,0,-0.168894 -101352,7015:458:2,-158.5,5,0,0,-0.168428 -101353,7015:458:1,-158,5,0,0,-0.167642 -101354,7015:457:2,-157.5,5,0,0,-0.167158 -101355,7015:457:1,-157,5,0,0,-0.166905 -101356,7015:456:2,-156.5,5,0,0,-0.167066 -101357,7015:456:1,-156,5,0,0,-0.167503 -101358,7015:455:2,-155.5,5,0,0,-0.168428 -101359,7015:455:1,-155,5,0,0,-0.169477 -101360,7015:354:2,-154.5,5,0,0,-0.170297 -101361,7015:354:1,-154,5,0,0,-0.17025 -101362,7015:353:2,-153.5,5,0,0,-0.169804 -101363,7015:353:1,-153,5,0,0,-0.169945 -101364,7015:352:2,-152.5,5,0,0,-0.169781 -101365,7015:352:1,-152,5,0,0,-0.169453 -101366,7015:351:2,-151.5,5,0,0,-0.1688 -101367,7015:351:1,-151,5,0,0,-0.167989 -101368,7015:350:2,-150.5,5,0,0,-0.166928 -101369,7015:350:1,-150,5,0,0,-0.165875 -101370,7014:459:2,-149.5,5,0,0,-0.164739 -101371,7014:459:1,-149,5,0,0,-0.16368 -101372,7014:458:2,-148.5,5,0,0,-0.162918 -101373,7014:458:1,-148,5,0,0,-0.162383 -101374,7014:457:2,-147.5,5,0,0,-0.162072 -101375,7014:457:1,-147,5,0,0,-0.16185 -101376,7014:456:2,-146.5,5,0,0,-0.161208 -101377,7014:456:1,-146,5,0,0,-0.160328 -101378,7014:455:2,-145.5,5,0,0,-0.159453 -101379,7014:455:1,-145,5,0,0,-0.158822 -101380,7014:354:2,-144.5,5,0,0,-0.158454 -101381,7014:354:1,-144,5,0,0,-0.158259 -101382,7014:353:2,-143.5,5,0,0,-0.158108 -101383,7014:353:1,-143,5,0,0,-0.158065 -101384,7014:352:2,-142.5,5,0,0,-0.158086 -101385,7014:352:1,-142,5,0,0,-0.158649 -101386,7014:351:2,-141.5,5,0,0,-0.159563 -101387,7014:351:1,-141,5,0,0,-0.159192 -101388,7014:350:2,-140.5,5,0,0,-0.158108 -101389,7014:350:1,-140,5,0,0,-0.156626 -101390,7013:459:2,-139.5,5,0,0,-0.155372 -101391,7013:459:1,-139,5,0,0,-0.154443 -101392,7013:458:2,-138.5,5,0,0,-0.154024 -101393,7013:458:1,-138,5,0,0,-0.154128 -101394,7013:457:2,-137.5,5,0,0,-0.155223 -101395,7013:457:1,-137,5,0,0,-0.156947 -101396,7013:456:2,-136.5,5,0,0,-0.158259 -101397,7013:456:1,-136,5,0,0,-0.159519 -101398,7013:455:2,-135.5,5,0,0,-0.160811 -101399,7013:455:1,-135,5,0,0,-0.161828 -101400,7013:354:2,-134.5,5,0,0,-0.162874 -101401,7013:354:1,-134,5,0,0,-0.163075 -101402,7013:353:2,-133.5,5,0,0,-0.162227 -101403,7013:353:1,-133,5,0,0,-0.16046 -101404,7013:352:2,-132.5,5,0,0,-0.158519 -101405,7013:352:1,-132,5,0,0,-0.158562 -101406,7013:351:2,-131.5,5,0,0,-0.160065 -101407,7013:351:1,-131,5,0,0,-0.162116 -101408,7013:350:2,-130.5,5,0,0,-0.16422 -101409,7013:350:1,-130,5,0,0,-0.165784 -101410,7012:459:2,-129.5,5,0,0,-0.166721 -101411,7012:459:1,-129,5,0,0,-0.167203 -101412,7012:458:2,-128.5,5,0,0,-0.167296 -101413,7012:458:1,-128,5,0,0,-0.167365 -101414,7012:457:2,-127.5,5,0,0,-0.167665 -101415,7012:457:1,-127,5,0,0,-0.168243 -101416,7012:456:2,-126.5,5,0,0,-0.169617 -101417,7012:456:1,-126,5,0,0,-0.171453 -101418,7012:455:2,-125.5,5,0,0,-0.173312 -101419,7012:455:1,-125,5,0,0,-0.175145 -101420,7012:354:2,-124.5,5,0,0,-0.176584 -101421,7012:354:1,-124,5,0,0,-0.177838 -101422,7012:353:2,-123.5,5,0,0,-0.178854 -101423,7012:353:1,-123,5,0,0,-0.179677 -101424,7012:352:2,-122.5,5,0,0,-0.180429 -101425,7012:352:1,-122,5,0,0,-0.181386 -101426,7012:351:2,-121.5,5,0,0,-0.1824 -101427,7012:351:1,-121,5,0,0,-0.183574 -101428,7012:350:2,-120.5,5,0,0,-0.184165 -101429,7012:350:1,-120,5,0,0,-0.183907 -101430,7011:459:2,-119.5,5,0,0,-0.183574 -101431,7011:459:1,-119,5,0,0,-0.183548 -101432,7011:458:2,-118.5,5,0,0,-0.183191 -101433,7011:458:1,-118,5,0,0,-0.182527 -101434,7011:457:2,-117.5,5,0,0,-0.181917 -101435,7011:457:1,-117,5,0,0,-0.181766 -101436,7011:456:2,-116.5,5,0,0,-0.181715 -101437,7011:456:1,-116,5,0,0,-0.181512 -101438,7011:455:2,-115.5,5,0,0,-0.181335 -101439,7011:455:1,-115,5,0,0,-0.181437 -101440,7011:354:2,-114.5,5,0,0,-0.181968 -101441,7011:354:1,-114,5,0,0,-0.182756 -101442,7011:353:2,-113.5,5,0,0,-0.183369 -101443,7011:353:1,-113,5,0,0,-0.183728 -101444,7011:352:2,-112.5,5,0,0,-0.184293 -101445,7011:352:1,-112,5,0,0,-0.184602 -101446,7011:351:2,-111.5,5,0,0,-0.184886 -101447,7011:351:1,-111,5,0,0,-0.185533 -101448,7011:350:2,-110.5,5,0,0,-0.186209 -101449,7011:350:1,-110,5,0,0,-0.186678 -101450,7010:459:2,-109.5,5,0,0,-0.186914 -101451,7010:459:1,-109,5,0,0,-0.187228 -101452,7010:458:2,-108.5,5,0,0,-0.188438 -101453,7010:458:1,-108,5,0,0,-0.190645 -101454,7010:457:2,-107.5,5,0,0,-0.192719 -101455,7010:457:1,-107,5,0,0,-0.196099 -101456,7010:456:2,-106.5,5,0,0,-0.200799 -101457,7010:456:1,-106,5,0,0,-0.218575 -101458,7010:455:2,-105.5,5,0,0,-0.230244 -101459,7010:455:1,-105,5,0,0,-0.213159 -101460,7010:354:2,-104.5,5,0,0,-0.19875 -101461,7010:354:1,-104,5,0,0,-0.192854 -101462,7010:353:2,-103.5,5,0,0,-0.188888 -101463,7010:353:1,-103,5,0,0,-0.184938 -101464,7010:352:2,-102.5,5,0,0,-0.18212 -101465,7010:352:1,-102,5,0,0,-0.180957 -101466,7010:351:2,-101.5,5,0,0,-0.180529 -101467,7010:351:1,-101,5,0,0,-0.180252 -101468,7010:350:2,-100.5,5,0,0,-0.178904 -101469,7010:350:1,-100,5,0,0,-0.17651 -101470,7009:459:2,-99.5,5,0,0,-0.172737 -101471,7009:459:1,-99,5,0,0,-0.168359 -101472,7009:458:2,-98.5,5,0,0,-0.166584 -101473,7009:458:1,-98,5,0,0,-0.167411 -101474,7009:457:2,-97.5,5,0,0,-0.16901 -101475,7009:457:1,-97,5,0,0,-0.171429 -101476,7009:456:2,-96.5,5,0,0,-0.170673 -101477,7009:456:1,-96,5,0,0,-0.170556 -101478,7009:455:2,-95.5,5,0,0,-0.175315 -101479,7009:455:1,-95,5,0,0,-0.180529 -101480,7009:354:2,-94.5,5,0,0,-0.183293 -101481,7009:354:1,-94,5,0,0,-0.183165 -101482,7009:353:2,-93.5,5,0,0,-0.181816 -101483,7009:353:1,-93,5,0,0,-0.18207 -101484,7009:352:2,-92.5,5,0,0,-0.18455 -101485,7009:352:1,-92,5,0,0,-0.184576 -101486,7009:351:2,-91.5,5,0,0,-0.18063 -101487,7009:351:1,-91,5,0,0,-0.18068 -101488,7009:350:2,-90.5,5,0,0,-0.180429 -101489,7009:350:1,-90,5,0,0,-0.180454 -101490,7008:459:2,-89.5,5,0,0,-0.180604 -101491,7008:459:1,-89,5,0,0,-0.181133 -101492,7008:458:2,-88.5,5,0,0,-0.18268 -101493,7008:458:1,-88,5,0,0,-0.185093 -101494,7008:457:2,-87.5,5,0,0,-0.189258 -101495,7008:457:1,-87,5,0,0,-0.201842 -101496,7008:456:2,-86.5,5,0,0,-0.318205 -101497,7008:456:1,-86,5,0,0,-0.267812 -101498,7008:353:2,-83.5,5,0,0,-0.194305 -101499,7008:353:1,-83,5,0,0,-0.190324 -101500,7008:352:2,-82.5,5,0,0,-0.186392 -101501,7008:352:1,-82,5,0,0,-0.183779 -101502,7008:351:2,-81.5,5,0,0,-0.183651 -101503,7008:351:1,-81,5,0,0,-0.184293 -101504,7008:350:2,-80.5,5,0,0,-0.18419 -101505,7008:350:1,-80,5,0,0,-0.184576 -101506,7007:459:2,-79.5,5,0,0,-0.186731 -101507,7007:459:1,-79,5,0,0,-0.189631 -101508,7007:458:2,-78.5,5,0,0,-0.19335 -101509,7007:458:1,-78,5,0,0,-0.200799 -101510,7007:457:2,-77.5,5,0,0,-0.250876 -101511,7007:457:1,-77,5,0,0,-0.28166 -101512,7007:456:2,-76.5,5,0,0,-0.288455 -101513,7007:456:1,-76,5,0,0,-0.269509 -101514,7007:455:2,-75.5,5,0,0,-0.199653 -101515,7007:455:1,-75,5,0,0,-0.183574 -101516,7007:354:2,-74.5,5,0,0,-0.17774 -101517,7007:351:2,-71.5,5,0,0,-0.188438 -101518,7007:351:1,-71,5,0,0,-0.187307 -101519,7006:458:1,-68,5,0,0,-0.155012 -101520,7006:457:2,-67.5,5,0,0,-0.153375 -101521,7006:457:1,-67,5,0,0,-0.162673 -101522,7006:456:2,-66.5,5,0,0,-0.16517 -101523,7006:456:1,-66,5,0,0,-0.165533 -101524,7006:455:2,-65.5,5,0,0,-0.170367 -101525,7006:455:1,-65,5,0,0,-0.170086 -101526,7006:354:2,-64.5,5,0,0,-0.155054 -101527,7006:354:1,-64,5,0,0,-0.158757 -101528,7006:353:2,-63.5,5,0,0,-0.153605 -101529,7006:353:1,-63,5,0,0,-0.158259 -101530,7006:352:2,-62.5,5,0,0,-0.166721 -101531,7006:352:1,-62,5,0,0,-0.172857 -101532,7006:351:2,-61.5,5,0,0,-0.173624 -101533,7006:351:1,-61,5,0,0,-0.179652 -101534,7006:350:2,-60.5,5,0,0,-0.182349 -101535,7006:350:1,-60,5,0,0,-0.184473 -101536,7005:459:2,-59.5,5,0,0,-0.185196 -101537,7005:459:1,-59,5,0,0,-0.186 -101538,7005:458:2,-58.5,5,0,0,-0.186131 -101539,7005:458:1,-58,5,0,0,-0.185793 -101540,7005:457:2,-57.5,5,0,0,-0.185171 -101541,7005:457:1,-57,5,0,0,-0.18455 -101542,7005:456:2,-56.5,5,0,0,-0.184576 -101543,7005:456:1,-56,5,0,0,-0.185119 -101544,7005:455:2,-55.5,5,0,0,-0.184886 -101545,7005:455:1,-55,5,0,0,-0.184705 -101546,7005:354:2,-54.5,5,0,0,-0.184938 -101547,7005:354:1,-54,5,0,0,-0.184628 -101548,7005:353:2,-53.5,5,0,0,-0.183651 -101549,7005:353:1,-53,5,0,0,-0.182502 -101550,7005:352:2,-52.5,5,0,0,-0.182095 -101551,7005:352:1,-52,5,0,0,-0.182603 -101552,7005:351:2,-51.5,5,0,0,-0.183011 -101553,7005:351:1,-51,5,0,0,-0.182961 -101554,7005:350:2,-50.5,5,0,0,-0.182552 -101555,7005:350:1,-50,5,0,0,-0.181512 -101556,7004:459:2,-49.5,5,0,0,-0.180454 -101557,7004:459:1,-49,5,0,0,-0.179352 -101558,7004:458:2,-48.5,5,0,0,-0.177444 -101559,7004:458:1,-48,5,0,0,-0.173912 -101560,7004:457:2,-47.5,5,0,0,-0.171121 -101561,7004:457:1,-47,5,0,0,-0.170838 -101562,7004:456:2,-46.5,5,0,0,-0.170414 -101563,7004:456:1,-46,5,0,0,-0.169406 -101564,7004:455:2,-45.5,5,0,0,-0.168707 -101565,7004:455:1,-45,5,0,0,-0.168521 -101566,7004:354:2,-44.5,5,0,0,-0.16873 -101567,7004:354:1,-44,5,0,0,-0.16901 -101568,7004:353:2,-43.5,5,0,0,-0.168963 -101569,7004:353:1,-43,5,0,0,-0.16822 -101570,7004:352:2,-42.5,5,0,0,-0.166446 -101571,7004:352:1,-42,5,0,0,-0.163658 -101572,7004:351:2,-41.5,5,0,0,-0.161429 -101573,7004:351:1,-41,5,0,0,-0.16079 -101574,7004:350:2,-40.5,5,0,0,-0.161098 -101575,7004:350:1,-40,5,0,0,-0.161828 -101576,7003:459:2,-39.5,5,0,0,-0.162138 -101577,7003:459:1,-39,5,0,0,-0.161717 -101578,7003:458:2,-38.5,5,0,0,-0.16024 -101579,7003:458:1,-38,5,0,0,-0.158714 -101580,7003:457:2,-37.5,5,0,0,-0.157269 -101581,7003:457:1,-37,5,0,0,-0.15605 -101582,7003:456:2,-36.5,5,0,0,-0.155034 -101583,7003:456:1,-36,5,0,0,-0.154128 -101584,7003:455:2,-35.5,5,0,0,-0.153752 -101585,7003:455:1,-35,5,0,0,-0.153919 -101586,7003:354:2,-34.5,5,0,0,-0.153856 -101587,7003:354:1,-34,5,0,0,-0.154128 -101588,7003:353:2,-33.5,5,0,0,-0.155012 -101589,7003:353:1,-33,5,0,0,-0.156584 -101590,7003:352:2,-32.5,5,0,0,-0.157119 -101591,7003:352:1,-32,5,0,0,-0.155711 -101592,7003:351:2,-31.5,5,0,0,-0.15457 -101593,7003:351:1,-31,5,0,0,-0.153919 -101594,7003:350:2,-30.5,5,0,0,-0.15394 -101595,7003:350:1,-30,5,0,0,-0.154949 -101596,7002:459:2,-29.5,5,0,0,-0.156434 -101597,7002:459:1,-29,5,0,0,-0.157655 -101598,7002:458:2,-28.5,5,0,0,-0.158692 -101599,7002:458:1,-28,5,0,0,-0.159563 -101600,7002:457:2,-27.5,5,0,0,-0.160021 -101601,7002:457:1,-27,5,0,0,-0.160438 -101602,7002:456:2,-26.5,5,0,0,-0.161319 -101603,7002:456:1,-26,5,0,0,-0.162227 -101604,7002:455:2,-25.5,5,0,0,-0.162539 -101605,7002:455:1,-25,5,0,0,-0.162673 -101606,7002:354:2,-24.5,5,0,0,-0.163635 -101607,7002:354:1,-24,5,0,0,-0.165716 -101608,7002:353:2,-23.5,5,0,0,-0.16873 -101609,7002:353:1,-23,5,0,0,-0.171666 -101610,7002:352:2,-22.5,5,0,0,-0.173503 -101611,7002:352:1,-22,5,0,0,-0.173576 -101612,7002:351:2,-21.5,5,0,0,-0.173168 -101613,7002:351:1,-21,5,0,0,-0.175437 -101614,7002:350:2,-20.5,5,0,0,-0.181562 -101615,7002:350:1,-20,5,0,0,-0.186027 -101616,7001:459:2,-19.5,5,0,0,-0.186626 -101617,7001:459:1,-19,5,0,0,-0.186574 -101618,7001:458:2,-18.5,5,0,0,-0.189817 -101619,7001:458:1,-18,5,0,0,-0.190698 -101620,7001:457:2,-17.5,5,0,0,-0.192421 -101621,7001:457:1,-17,5,0,0,-0.253615 -101622,7001:456:2,-16.5,5,0,0,-0.380296 -101623,7001:456:1,-16,5,0,0,-0.619982 -101624,1004:353:2,43.5,5,0,0,-0.156115 -101625,1004:354:1,44,5,0,0,-0.154128 -101626,1004:354:2,44.5,5,0,0,-0.155817 -101627,1004:455:1,45,5,0,0,-0.155732 -101628,1004:455:2,45.5,5,0,0,-0.154949 -101629,1004:456:1,46,5,0,0,-0.153354 -101630,1004:456:2,46.5,5,0,0,-0.150649 -101631,1004:457:1,47,5,0,0,-0.14722 -101632,1004:457:2,47.5,5,0,0,-0.144383 -101633,1005:351:1,51,5,0,0,-0.155541 -101634,1005:351:2,51.5,5,0,0,-0.166172 -101635,1005:352:1,52,5,0,0,-0.16887 -101636,1005:352:2,52.5,5,0,0,-0.168684 -101637,1005:353:1,53,5,0,0,-0.168498 -101638,1005:353:2,53.5,5,0,0,-0.16908 -101639,1005:354:1,54,5,0,0,-0.168591 -101640,1005:354:2,54.5,5,0,0,-0.168684 -101641,1005:455:1,55,5,0,0,-0.1688 -101642,1005:455:2,55.5,5,0,0,-0.169406 -101643,1005:456:1,56,5,0,0,-0.170132 -101644,1005:456:2,56.5,5,0,0,-0.170768 -101645,1005:457:1,57,5,0,0,-0.170791 -101646,1005:457:2,57.5,5,0,0,-0.170579 -101647,1005:458:1,58,5,0,0,-0.171193 -101648,1005:458:2,58.5,5,0,0,-0.173985 -101649,1005:459:1,59,5,0,0,-0.178309 -101650,1005:459:2,59.5,5,0,0,-0.182374 -101651,1006:350:1,60,5,0,0,-0.184139 -101652,1006:350:2,60.5,5,0,0,-0.184447 -101653,1006:351:1,61,5,0,0,-0.184628 -101654,1006:351:2,61.5,5,0,0,-0.185741 -101655,1006:352:1,62,5,0,0,-0.188253 -101656,1006:352:2,62.5,5,0,0,-0.190484 -101657,1006:353:1,63,5,0,0,-0.191908 -101658,1006:353:2,63.5,5,0,0,-0.191611 -101659,1006:354:1,64,5,0,0,-0.192367 -101660,1006:354:2,64.5,5,0,0,-0.194043 -101661,1006:455:1,65,5,0,0,-0.195484 -101662,1006:455:2,65.5,5,0,0,-0.196231 -101663,1006:456:1,66,5,0,0,-0.196364 -101664,1006:456:2,66.5,5,0,0,-0.196452 -101665,1006:457:1,67,5,0,0,-0.197203 -101666,1006:457:2,67.5,5,0,0,-0.198047 -101667,1006:458:1,68,5,0,0,-0.20149 -101668,1006:458:2,68.5,5,0,0,-0.221468 -101669,1006:459:1,69,5,0,0,-0.254793 -101670,1006:459:2,69.5,5,0,0,-0.29075 -101671,1007:350:1,70,5,0,0,-0.322399 -101672,1007:350:2,70.5,5,0,0,-0.350717 -101673,1007:351:1,71,5,0,0,-0.375136 -101674,1007:351:2,71.5,5,0,0,-0.39085 -101675,1007:352:1,72,5,0,0,-0.407395 -101676,1007:352:2,72.5,5,0,0,-0.43939 -101677,1007:353:2,73.5,5,0,0,-0.43628 -101678,1007:354:1,74,5,0,0,-0.41967 -101679,1007:354:2,74.5,5,0,0,-0.437061 -101680,1007:455:1,75,5,0,0,-0.401782 -101681,1007:455:2,75.5,5,0,0,-0.425609 -101682,1007:456:1,76,5,0,0,-0.414566 -101683,1008:350:2,80.5,5,0,0,-0.176021 -101684,1008:351:1,81,5,0,0,-0.17065 -101685,1008:351:2,81.5,5,0,0,-0.173599 -101686,1008:352:1,82,5,0,0,-0.183241 -101687,1008:352:2,82.5,5,0,0,-0.189285 -101688,1008:353:1,83,5,0,0,-0.190618 -101689,1008:353:2,83.5,5,0,0,-0.190591 -101690,1008:354:1,84,5,0,0,-0.188888 -101691,1008:354:2,84.5,5,0,0,-0.192665 -101692,1008:455:1,85,5,0,0,-0.197158 -101693,1008:455:2,85.5,5,0,0,-0.199309 -101694,1008:456:1,86,5,0,0,-0.208154 -101695,1008:456:2,86.5,5,0,0,-0.209936 -101696,1008:457:1,87,5,0,0,-0.217624 -101697,1008:457:2,87.5,5,0,0,-0.234138 -101698,1008:458:1,88,5,0,0,-0.231294 -101699,1008:458:2,88.5,5,0,0,-0.225403 -101700,1008:459:1,89,5,0,0,-0.248944 -101701,1008:459:2,89.5,5,0,0,-0.245146 -101702,1009:350:1,90,5,0,0,-0.245515 -101703,1009:350:2,90.5,5,0,0,-0.239561 -101704,1009:351:1,91,5,0,0,-0.241779 -101705,1009:351:2,91.5,5,0,0,-0.256779 -101706,1009:352:1,92,5,0,0,-0.244388 -101707,1009:352:2,92.5,5,0,0,-0.25322 -101708,1009:353:1,93,5,0,0,-0.262425 -101709,1009:353:2,93.5,5,0,0,-0.240661 -101710,1009:354:1,94,5,0,0,-0.23095 -101711,1009:354:2,94.5,5,0,0,-0.234487 -101712,1009:455:1,95,5,0,0,-0.224738 -101713,1009:455:2,95.5,5,0,0,-0.226092 -101714,1009:456:1,96,5,0,0,-0.235209 -101715,1009:456:2,96.5,5,0,0,-0.24703 -101716,1009:457:1,97,5,0,0,-0.243644 -101717,1009:457:2,97.5,5,0,0,-0.262838 -101718,1009:458:1,98,5,0,0,-0.270776 -101719,1009:458:2,98.5,5,0,0,-0.277238 -101720,1010:350:1,100,5,0,0,-0.192665 -101721,1010:350:2,100.5,5,0,0,-0.194391 -101722,1010:351:1,101,5,0,0,-0.193696 -101723,1010:351:2,101.5,5,0,0,-0.198449 -101724,1010:352:1,102,5,0,0,-0.203685 -101725,1010:352:2,102.5,5,0,0,-0.201139 -101726,1010:353:1,103,5,0,0,-0.191827 -101727,1010:459:1,109,5,0,0,-0.154044 -101728,1010:459:2,109.5,5,0,0,-0.152047 -101729,1011:350:1,110,5,0,0,-0.169898 -101730,1011:350:2,110.5,5,0,0,-0.181133 -101731,1011:351:1,111,5,0,0,-0.186365 -101732,1011:351:2,111.5,5,0,0,-0.189817 -101733,1011:352:1,112,5,0,0,-0.19011 -101734,1011:352:2,112.5,5,0,0,-0.186079 -101735,1011:353:1,113,5,0,0,-0.181335 -101736,1011:353:2,113.5,5,0,0,-0.181285 -101737,1011:354:1,114,5,0,0,-0.187543 -101738,1011:354:2,114.5,5,0,0,-0.196188 -101739,1011:455:1,115,5,0,0,-0.218897 -101740,1011:455:2,115.5,5,0,0,-0.257169 -101741,1011:456:1,116,5,0,0,-0.274201 -101742,1011:456:2,116.5,5,0,0,-0.257169 -101743,1011:457:1,117,5,0,0,-0.238835 -101744,1011:457:2,117.5,5,0,0,-0.235571 -101745,1011:458:1,118,5,0,0,-0.303118 -101746,1011:458:2,118.5,5,0,0,-0.30607 -101747,1011:459:1,119,5,0,0,-0.24401 -101748,1011:459:2,119.5,5,0,0,-0.201139 -101749,1012:350:1,120,5,0,0,-0.202205 -101750,1012:350:2,120.5,5,0,0,-0.195265 -101751,1012:351:1,121,5,0,0,-0.197203 -101752,1012:351:2,121.5,5,0,0,-0.199812 -101753,1012:352:1,122,5,0,0,-0.192773 -101754,1012:353:2,123.5,5,0,0,-0.185119 -101755,1012:354:1,124,5,0,0,-0.196849 -101756,1012:354:2,124.5,5,0,0,-0.235209 -101757,1012:456:1,126,5,0,0,-0.188227 -101758,1012:456:2,126.5,5,0,0,-0.19509 -101759,1012:457:1,127,5,0,0,-0.209936 -101760,1012:457:2,127.5,5,0,0,-0.251266 -101761,1012:458:1,128,5,0,0,-0.287993 -101762,1012:458:2,128.5,5,0,0,-0.320286 -101763,1012:459:1,129,5,0,0,-0.348955 -101764,1012:459:2,129.5,5,0,0,-0.375779 -101765,1013:350:1,130,5,0,0,-0.402483 -101766,1013:350:2,130.5,5,0,0,-0.427123 -101767,1013:351:1,131,5,0,0,-0.448918 -101768,1013:351:2,131.5,5,0,0,-0.467041 -101769,1013:352:1,132,5,0,0,-0.481728 -101770,1013:352:2,132.5,5,0,0,-0.496136 -101771,1013:353:1,133,5,0,0,-0.514929 -101772,1013:353:2,133.5,5,0,0,-0.539794 -101773,1013:354:1,134,5,0,0,-0.58652 -101774,1013:354:2,134.5,5,0,0,-0.640273 -101775,1013:455:1,135,5,0,0,-0.660175 -101776,1013:455:2,135.5,5,0,0,-0.595811 -101777,1013:456:1,136,5,0,0,-0.523704 -101778,1013:456:2,136.5,5,0,0,-0.480868 -101779,1013:457:1,137,5,0,0,-0.480868 -101780,1013:457:2,137.5,5,0,0,-0.476491 -101781,1013:458:1,138,5,0,0,-0.457862 -101782,1013:458:2,138.5,5,0,0,-0.425609 -101783,1013:459:1,139,5,0,0,-0.421156 -101784,1013:459:2,139.5,5,0,0,-0.420412 -101785,1014:350:1,140,5,0,0,-0.418213 -101786,1014:350:2,140.5,5,0,0,-0.415297 -101787,1014:351:1,141,5,0,0,-0.418213 -101788,1014:351:2,141.5,5,0,0,-0.418213 -101789,1014:352:1,142,5,0,0,-0.413111 -101790,1014:352:2,142.5,5,0,0,-0.410961 -101791,1014:353:1,143,5,0,0,-0.406704 -101792,1014:353:2,143.5,5,0,0,-0.405284 -101793,1014:354:1,144,5,0,0,-0.405993 -101794,1014:354:2,144.5,5,0,0,-0.411683 -101795,1014:455:1,145,5,0,0,-0.423375 -101796,1014:455:2,145.5,5,0,0,-0.440178 -101797,1014:456:1,146,5,0,0,-0.457032 -101798,1014:456:2,146.5,5,0,0,-0.475617 -101799,1014:457:1,147,5,0,0,-0.493376 -101800,1014:457:2,147.5,5,0,0,-0.5073 -101801,1014:458:1,148,5,0,0,-0.516875 -101802,1014:458:2,148.5,5,0,0,-0.523704 -101803,1014:459:1,149,5,0,0,-0.52867 -101804,1014:459:2,149.5,5,0,0,-0.537763 -101805,1015:350:1,150,5,0,0,-0.546016 -101806,1015:350:2,150.5,5,0,0,-0.550207 -101807,1015:351:1,151,5,0,0,-0.54809 -101808,1015:351:2,151.5,5,0,0,-0.539794 -101809,1015:352:1,152,5,0,0,-0.524698 -101810,1015:352:2,152.5,5,0,0,-0.506349 -101811,1015:353:1,153,5,0,0,-0.485298 -101812,1015:353:2,153.5,5,0,0,-0.467894 -101813,1015:354:1,154,5,0,0,-0.459501 -101814,1015:354:2,154.5,5,0,0,-0.458693 -101815,1015:455:1,155,5,0,0,-0.462855 -101816,1015:455:2,155.5,5,0,0,-0.467041 -101817,1015:456:1,156,5,0,0,-0.464518 -101818,1015:456:2,156.5,5,0,0,-0.45458 -101819,1015:457:1,157,5,0,0,-0.440967 -101820,1015:457:2,157.5,5,0,0,-0.430914 -101821,1015:458:1,158,5,0,0,-0.41967 -101822,1015:458:2,158.5,5,0,0,-0.404576 -101823,1015:459:1,159,5,0,0,-0.3829 -101824,1015:459:2,159.5,5,0,0,-0.35662 -101825,1016:350:1,160,5,0,0,-0.330413 -101826,1016:350:2,160.5,5,0,0,-0.305573 -101827,1016:351:1,161,5,0,0,-0.284798 -101828,1016:351:2,161.5,5,0,0,-0.26408 -101829,1016:352:1,162,5,0,0,-0.231294 -101830,1016:352:2,162.5,5,0,0,-0.205411 -101831,1016:353:1,163,5,0,0,-0.230597 -101832,1016:353:2,163.5,5,0,0,-0.2381 -101833,1016:354:1,164,5,0,0,-0.240661 -101834,1016:354:2,164.5,5,0,0,-0.236649 -101835,1016:455:1,165,5,0,0,-0.221795 -101836,1016:455:2,165.5,5,0,0,-0.199812 -101837,1016:456:1,166,5,0,0,-0.19818 -101838,1016:456:2,166.5,5,0,0,-0.196805 -101839,1016:457:2,167.5,5,0,0,-0.192232 -101840,1016:458:1,168,5,0,0,-0.191799 -101841,1016:458:2,168.5,5,0,0,-0.194305 -101842,1016:459:1,169,5,0,0,-0.194305 -101843,1016:459:2,169.5,5,0,0,-0.191854 -101844,1017:350:2,170.5,5,0,0,-0.188438 -101845,1017:351:1,171,5,0,0,-0.191665 -101846,1017:351:2,171.5,5,0,0,-0.191908 -101847,1017:352:1,172,5,0,0,-0.191127 -101848,1017:352:2,172.5,5,0,0,-0.190244 -101849,1017:353:1,173,5,0,0,-0.189551 -101850,1017:353:2,173.5,5,0,0,-0.18865 -101851,1017:354:1,174,5,0,0,-0.187832 -101852,1017:354:2,174.5,5,0,0,-0.187254 -101853,1017:455:1,175,5,0,0,-0.187097 -101854,1017:455:2,175.5,5,0,0,-0.187071 -101855,1017:456:1,176,5,0,0,-0.186809 -101856,1017:456:2,176.5,5,0,0,-0.186287 -101857,1017:457:1,177,5,0,0,-0.185611 -101858,1017:457:2,177.5,5,0,0,-0.184912 -101859,1017:458:1,178,5,0,0,-0.184524 -101860,1017:458:2,178.5,5,0,0,-0.184447 -101861,1017:459:1,179,5,0,0,-0.184602 -101862,1017:459:2,179.5,5,0,0,-0.184938 -101863,1018:350:1,180,5,0,0,-0.185093 -101864,7018:350:3,-180,5.5,0,0,-0.180831 -101865,7017:459:4,-179.5,5.5,0,0,-0.18063 -101866,7017:459:3,-179,5.5,0,0,-0.180252 -101867,7017:458:4,-178.5,5.5,0,0,-0.179877 -101868,7017:458:3,-178,5.5,0,0,-0.179602 -101869,7017:457:4,-177.5,5.5,0,0,-0.179327 -101870,7017:457:3,-177,5.5,0,0,-0.179128 -101871,7017:456:4,-176.5,5.5,0,0,-0.179054 -101872,7017:456:3,-176,5.5,0,0,-0.17878 -101873,7017:455:4,-175.5,5.5,0,0,-0.178507 -101874,7017:455:3,-175,5.5,0,0,-0.178358 -101875,7017:354:4,-174.5,5.5,0,0,-0.17816 -101876,7017:354:3,-174,5.5,0,0,-0.178011 -101877,7017:353:4,-173.5,5.5,0,0,-0.177764 -101878,7017:353:3,-173,5.5,0,0,-0.177591 -101879,7017:352:4,-172.5,5.5,0,0,-0.177296 -101880,7017:352:3,-172,5.5,0,0,-0.177001 -101881,7017:351:4,-171.5,5.5,0,0,-0.176609 -101882,7017:351:3,-171,5.5,0,0,-0.176143 -101883,7017:350:4,-170.5,5.5,0,0,-0.175461 -101884,7017:350:3,-170,5.5,0,0,-0.174733 -101885,7016:459:4,-169.5,5.5,0,0,-0.173936 -101886,7016:459:3,-169,5.5,0,0,-0.173672 -101887,7016:458:4,-168.5,5.5,0,0,-0.173744 -101888,7016:458:3,-168,5.5,0,0,-0.174033 -101889,7016:457:4,-167.5,5.5,0,0,-0.174225 -101890,7016:457:3,-167,5.5,0,0,-0.173961 -101891,7016:456:4,-166.5,5.5,0,0,-0.172833 -101892,7016:456:3,-166,5.5,0,0,-0.172141 -101893,7016:455:4,-165.5,5.5,0,0,-0.171429 -101894,7016:455:3,-165,5.5,0,0,-0.170532 -101895,7016:354:4,-164.5,5.5,0,0,-0.169219 -101896,7016:354:3,-164,5.5,0,0,-0.168058 -101897,7016:353:4,-163.5,5.5,0,0,-0.167503 -101898,7016:353:3,-163,5.5,0,0,-0.166974 -101899,7016:352:4,-162.5,5.5,0,0,-0.166538 -101900,7016:352:3,-162,5.5,0,0,-0.166058 -101901,7016:351:4,-161.5,5.5,0,0,-0.165647 -101902,7016:351:3,-161,5.5,0,0,-0.165693 -101903,7016:350:4,-160.5,5.5,0,0,-0.165784 -101904,7016:350:3,-160,5.5,0,0,-0.165966 -101905,7015:459:4,-159.5,5.5,0,0,-0.165898 -101906,7015:459:3,-159,5.5,0,0,-0.165556 -101907,7015:458:4,-158.5,5.5,0,0,-0.164966 -101908,7015:458:3,-158,5.5,0,0,-0.164287 -101909,7015:457:4,-157.5,5.5,0,0,-0.1635 -101910,7015:457:3,-157,5.5,0,0,-0.162784 -101911,7015:456:4,-156.5,5.5,0,0,-0.162495 -101912,7015:456:3,-156,5.5,0,0,-0.162874 -101913,7015:455:4,-155.5,5.5,0,0,-0.163972 -101914,7015:455:3,-155,5.5,0,0,-0.165465 -101915,7015:354:4,-154.5,5.5,0,0,-0.166699 -101916,7015:354:3,-154,5.5,0,0,-0.167158 -101917,7015:353:4,-153.5,5.5,0,0,-0.16725 -101918,7015:353:3,-153,5.5,0,0,-0.167043 -101919,7015:352:4,-152.5,5.5,0,0,-0.166606 -101920,7015:352:3,-152,5.5,0,0,-0.165716 -101921,7015:351:4,-151.5,5.5,0,0,-0.164694 -101922,7015:351:3,-151,5.5,0,0,-0.163905 -101923,7015:350:4,-150.5,5.5,0,0,-0.16341 -101924,7015:350:3,-150,5.5,0,0,-0.16294 -101925,7014:459:4,-149.5,5.5,0,0,-0.162227 -101926,7014:459:3,-149,5.5,0,0,-0.161473 -101927,7014:458:4,-148.5,5.5,0,0,-0.160723 -101928,7014:458:3,-148,5.5,0,0,-0.160043 -101929,7014:457:4,-147.5,5.5,0,0,-0.159301 -101930,7014:457:3,-147,5.5,0,0,-0.158735 -101931,7014:456:4,-146.5,5.5,0,0,-0.158367 -101932,7014:456:3,-146,5.5,0,0,-0.157914 -101933,7014:455:4,-145.5,5.5,0,0,-0.157333 -101934,7014:455:3,-145,5.5,0,0,-0.156584 -101935,7014:354:4,-144.5,5.5,0,0,-0.155605 -101936,7014:354:3,-144,5.5,0,0,-0.154549 -101937,7014:353:4,-143.5,5.5,0,0,-0.153647 -101938,7014:353:3,-143,5.5,0,0,-0.153146 -101939,7014:352:4,-142.5,5.5,0,0,-0.1535 -101940,7014:352:3,-142,5.5,0,0,-0.154338 -101941,7014:351:4,-141.5,5.5,0,0,-0.154928 -101942,7014:351:3,-141,5.5,0,0,-0.15457 -101943,7014:350:4,-140.5,5.5,0,0,-0.153647 -101944,7014:350:3,-140,5.5,0,0,-0.15244 -101945,7013:459:4,-139.5,5.5,0,0,-0.150936 -101946,7013:459:3,-139,5.5,0,0,-0.149794 -101947,7013:458:4,-138.5,5.5,0,0,-0.149672 -101948,7013:458:3,-138,5.5,0,0,-0.150282 -101949,7013:457:4,-137.5,5.5,0,0,-0.151285 -101950,7013:457:3,-137,5.5,0,0,-0.152772 -101951,7013:456:4,-136.5,5.5,0,0,-0.153688 -101952,7013:456:3,-136,5.5,0,0,-0.154024 -101953,7013:455:4,-135.5,5.5,0,0,-0.154213 -101954,7013:455:3,-135,5.5,0,0,-0.154381 -101955,7013:354:4,-134.5,5.5,0,0,-0.154465 -101956,7013:354:3,-134,5.5,0,0,-0.154422 -101957,7013:353:4,-133.5,5.5,0,0,-0.154213 -101958,7013:353:3,-133,5.5,0,0,-0.154696 -101959,7013:352:4,-132.5,5.5,0,0,-0.155774 -101960,7013:352:3,-132,5.5,0,0,-0.157376 -101961,7013:351:4,-131.5,5.5,0,0,-0.159105 -101962,7013:351:3,-131,5.5,0,0,-0.16057 -101963,7013:350:4,-130.5,5.5,0,0,-0.161628 -101964,7013:350:3,-130,5.5,0,0,-0.162116 -101965,7012:459:4,-129.5,5.5,0,0,-0.162183 -101966,7012:459:3,-129,5.5,0,0,-0.161695 -101967,7012:458:4,-128.5,5.5,0,0,-0.161473 -101968,7012:458:3,-128,5.5,0,0,-0.161584 -101969,7012:457:4,-127.5,5.5,0,0,-0.162249 -101970,7012:457:3,-127,5.5,0,0,-0.163882 -101971,7012:456:4,-126.5,5.5,0,0,-0.166309 -101972,7012:456:3,-126,5.5,0,0,-0.168637 -101973,7012:455:4,-125.5,5.5,0,0,-0.170508 -101974,7012:455:3,-125,5.5,0,0,-0.172213 -101975,7012:354:4,-124.5,5.5,0,0,-0.173648 -101976,7012:354:3,-124,5.5,0,0,-0.174588 -101977,7012:353:4,-123.5,5.5,0,0,-0.175266 -101978,7012:353:3,-123,5.5,0,0,-0.175997 -101979,7012:352:4,-122.5,5.5,0,0,-0.177099 -101980,7012:352:3,-122,5.5,0,0,-0.178284 -101981,7012:351:4,-121.5,5.5,0,0,-0.179128 -101982,7012:351:3,-121,5.5,0,0,-0.179577 -101983,7012:350:4,-120.5,5.5,0,0,-0.179702 -101984,7012:350:3,-120,5.5,0,0,-0.179777 -101985,7011:459:4,-119.5,5.5,0,0,-0.179777 -101986,7011:459:3,-119,5.5,0,0,-0.179702 -101987,7011:458:4,-118.5,5.5,0,0,-0.179652 -101988,7011:458:3,-118,5.5,0,0,-0.179552 -101989,7011:457:4,-117.5,5.5,0,0,-0.179378 -101990,7011:457:3,-117,5.5,0,0,-0.179153 -101991,7011:456:4,-116.5,5.5,0,0,-0.179054 -101992,7011:456:3,-116,5.5,0,0,-0.179103 -101993,7011:455:4,-115.5,5.5,0,0,-0.179427 -101994,7011:455:3,-115,5.5,0,0,-0.179852 -101995,7011:354:4,-114.5,5.5,0,0,-0.180504 -101996,7011:354:3,-114,5.5,0,0,-0.18131 -101997,7011:353:4,-113.5,5.5,0,0,-0.182222 -101998,7011:353:3,-113,5.5,0,0,-0.183293 -101999,7011:352:4,-112.5,5.5,0,0,-0.184344 -102000,7011:352:3,-112,5.5,0,0,-0.185248 -102001,7011:351:4,-111.5,5.5,0,0,-0.186027 -102002,7011:351:3,-111,5.5,0,0,-0.186626 -102003,7011:350:4,-110.5,5.5,0,0,-0.186835 -102004,7011:350:3,-110,5.5,0,0,-0.186809 -102005,7010:459:4,-109.5,5.5,0,0,-0.186757 -102006,7010:459:3,-109,5.5,0,0,-0.186887 -102007,7010:458:4,-108.5,5.5,0,0,-0.187937 -102008,7010:458:3,-108,5.5,0,0,-0.190164 -102009,7010:457:4,-107.5,5.5,0,0,-0.192719 -102010,7010:457:3,-107,5.5,0,0,-0.196496 -102011,7010:456:4,-106.5,5.5,0,0,-0.201139 -102012,7010:456:3,-106,5.5,0,0,-0.219219 -102013,7010:455:4,-105.5,5.5,0,0,-0.224407 -102014,7010:455:3,-105,5.5,0,0,-0.202023 -102015,7010:354:4,-104.5,5.5,0,0,-0.196717 -102016,7010:354:3,-104,5.5,0,0,-0.19374 -102017,7010:353:4,-103.5,5.5,0,0,-0.190618 -102018,7010:353:3,-103,5.5,0,0,-0.18865 -102019,7010:352:4,-102.5,5.5,0,0,-0.1877 -102020,7010:352:3,-102,5.5,0,0,-0.186053 -102021,7010:351:4,-101.5,5.5,0,0,-0.18647 -102022,7010:351:3,-101,5.5,0,0,-0.189021 -102023,7010:350:4,-100.5,5.5,0,0,-0.191181 -102024,7010:350:3,-100,5.5,0,0,-0.192124 -102025,7009:459:4,-99.5,5.5,0,0,-0.192692 -102026,7009:459:3,-99,5.5,0,0,-0.185923 -102027,7009:458:4,-98.5,5.5,0,0,-0.172713 -102028,7009:458:3,-98,5.5,0,0,-0.166217 -102029,7009:457:4,-97.5,5.5,0,0,-0.164988 -102030,7009:457:3,-97,5.5,0,0,-0.164943 -102031,7009:456:4,-96.5,5.5,0,0,-0.164785 -102032,7009:456:3,-96,5.5,0,0,-0.168104 -102033,7009:455:4,-95.5,5.5,0,0,-0.175024 -102034,7009:455:3,-95,5.5,0,0,-0.182502 -102035,7009:354:4,-94.5,5.5,0,0,-0.188517 -102036,7009:354:3,-94,5.5,0,0,-0.190993 -102037,7009:353:4,-93.5,5.5,0,0,-0.190031 -102038,7009:353:3,-93,5.5,0,0,-0.188491 -102039,7009:352:4,-92.5,5.5,0,0,-0.188994 -102040,7009:352:3,-92,5.5,0,0,-0.187937 -102041,7009:351:4,-91.5,5.5,0,0,-0.18419 -102042,7009:351:3,-91,5.5,0,0,-0.184242 -102043,7009:350:4,-90.5,5.5,0,0,-0.186313 -102044,7009:350:3,-90,5.5,0,0,-0.189391 -102045,7008:459:4,-89.5,5.5,0,0,-0.191504 -102046,7008:459:3,-89,5.5,0,0,-0.19544 -102047,7008:458:4,-88.5,5.5,0,0,-0.19818 -102048,7008:458:3,-88,5.5,0,0,-0.197602 -102049,7008:457:4,-87.5,5.5,0,0,-0.197647 -102050,7008:457:3,-87,5.5,0,0,-0.228162 -102051,7008:353:4,-83.5,5.5,0,0,-0.189206 -102052,7008:353:3,-83,5.5,0,0,-0.191449 -102053,7008:352:4,-82.5,5.5,0,0,-0.190057 -102054,7008:352:3,-82,5.5,0,0,-0.186287 -102055,7008:351:4,-81.5,5.5,0,0,-0.184653 -102056,7008:351:3,-81,5.5,0,0,-0.18486 -102057,7008:350:4,-80.5,5.5,0,0,-0.185949 -102058,7008:350:3,-80,5.5,0,0,-0.188016 -102059,7007:459:4,-79.5,5.5,0,0,-0.190484 -102060,7007:459:3,-79,5.5,0,0,-0.192917 -102061,7007:458:4,-78.5,5.5,0,0,-0.195748 -102062,7007:458:3,-78,5.5,0,0,-0.197203 -102063,7007:457:4,-77.5,5.5,0,0,-0.198225 -102064,7007:457:3,-77,5.5,0,0,-0.19917 -102065,7007:456:4,-76.5,5.5,0,0,-0.199812 -102066,7007:456:3,-76,5.5,0,0,-0.198136 -102067,7007:455:4,-75.5,5.5,0,0,-0.19654 -102068,7007:455:3,-75,5.5,0,0,-0.190886 -102069,7007:354:4,-74.5,5.5,0,0,-0.1836 -102070,7007:354:3,-74,5.5,0,0,-0.176657 -102071,7007:353:4,-73.5,5.5,0,0,-0.16887 -102072,7007:353:3,-73,5.5,0,0,-0.166629 -102073,7007:352:4,-72.5,5.5,0,0,-0.168498 -102074,7007:351:3,-71,5.5,0,0,-0.179902 -102075,7007:350:4,-70.5,5.5,0,0,-0.160547 -102076,7006:459:4,-69.5,5.5,0,0,-0.162317 -102077,7006:459:3,-69,5.5,0,0,-0.167965 -102078,7006:458:4,-68.5,5.5,0,0,-0.171145 -102079,7006:458:3,-68,5.5,0,0,-0.171476 -102080,7006:457:4,-67.5,5.5,0,0,-0.17607 -102081,7006:457:3,-67,5.5,0,0,-0.183882 -102082,7006:456:4,-66.5,5.5,0,0,-0.18749 -102083,7006:456:3,-66,5.5,0,0,-0.183728 -102084,7006:455:4,-65.5,5.5,0,0,-0.184216 -102085,7006:455:3,-65,5.5,0,0,-0.183241 -102086,7006:354:4,-64.5,5.5,0,0,-0.180177 -102087,7006:354:3,-64,5.5,0,0,-0.17678 -102088,7006:353:4,-63.5,5.5,0,0,-0.178259 -102089,7006:353:3,-63,5.5,0,0,-0.180354 -102090,7006:352:4,-62.5,5.5,0,0,-0.183984 -102091,7006:352:3,-62,5.5,0,0,-0.188888 -102092,7006:351:4,-61.5,5.5,0,0,-0.188888 -102093,7006:351:3,-61,5.5,0,0,-0.187123 -102094,7006:350:4,-60.5,5.5,0,0,-0.186783 -102095,7006:350:3,-60,5.5,0,0,-0.184835 -102096,7005:459:4,-59.5,5.5,0,0,-0.186914 -102097,7005:459:3,-59,5.5,0,0,-0.187385 -102098,7005:458:4,-58.5,5.5,0,0,-0.18728 -102099,7005:458:3,-58,5.5,0,0,-0.186574 -102100,7005:457:4,-57.5,5.5,0,0,-0.185222 -102101,7005:457:3,-57,5.5,0,0,-0.183959 -102102,7005:456:4,-56.5,5.5,0,0,-0.183626 -102103,7005:456:3,-56,5.5,0,0,-0.184113 -102104,7005:455:4,-55.5,5.5,0,0,-0.184318 -102105,7005:455:3,-55,5.5,0,0,-0.184421 -102106,7005:354:4,-54.5,5.5,0,0,-0.184421 -102107,7005:354:3,-54,5.5,0,0,-0.183933 -102108,7005:353:4,-53.5,5.5,0,0,-0.183113 -102109,7005:353:3,-53,5.5,0,0,-0.18245 -102110,7005:352:4,-52.5,5.5,0,0,-0.182197 -102111,7005:352:3,-52,5.5,0,0,-0.182044 -102112,7005:351:4,-51.5,5.5,0,0,-0.181715 -102113,7005:351:3,-51,5.5,0,0,-0.181335 -102114,7005:350:4,-50.5,5.5,0,0,-0.180906 -102115,7005:350:3,-50,5.5,0,0,-0.180228 -102116,7004:459:4,-49.5,5.5,0,0,-0.179352 -102117,7004:459:3,-49,5.5,0,0,-0.17816 -102118,7004:458:4,-48.5,5.5,0,0,-0.176535 -102119,7004:458:3,-48,5.5,0,0,-0.173961 -102120,7004:457:4,-47.5,5.5,0,0,-0.170532 -102121,7004:457:3,-47,5.5,0,0,-0.168754 -102122,7004:456:4,-46.5,5.5,0,0,-0.16822 -102123,7004:456:3,-46,5.5,0,0,-0.167642 -102124,7004:455:4,-45.5,5.5,0,0,-0.16702 -102125,7004:455:3,-45,5.5,0,0,-0.166469 -102126,7004:354:4,-44.5,5.5,0,0,-0.165943 -102127,7004:354:3,-44,5.5,0,0,-0.165328 -102128,7004:353:4,-43.5,5.5,0,0,-0.164153 -102129,7004:353:3,-43,5.5,0,0,-0.162516 -102130,7004:352:4,-42.5,5.5,0,0,-0.16079 -102131,7004:352:3,-42,5.5,0,0,-0.159192 -102132,7004:351:4,-41.5,5.5,0,0,-0.15854 -102133,7004:351:3,-41,5.5,0,0,-0.158194 -102134,7004:350:4,-40.5,5.5,0,0,-0.158022 -102135,7004:350:3,-40,5.5,0,0,-0.158411 -102136,7003:459:4,-39.5,5.5,0,0,-0.158216 -102137,7003:459:3,-39,5.5,0,0,-0.157312 -102138,7003:458:4,-38.5,5.5,0,0,-0.155838 -102139,7003:458:3,-38,5.5,0,0,-0.154297 -102140,7003:457:4,-37.5,5.5,0,0,-0.15273 -102141,7003:457:3,-37,5.5,0,0,-0.15147 -102142,7003:456:4,-36.5,5.5,0,0,-0.150609 -102143,7003:456:3,-36,5.5,0,0,-0.150119 -102144,7003:455:4,-35.5,5.5,0,0,-0.150201 -102145,7003:455:3,-35,5.5,0,0,-0.150588 -102146,7003:354:4,-34.5,5.5,0,0,-0.150568 -102147,7003:354:3,-34,5.5,0,0,-0.150568 -102148,7003:353:4,-33.5,5.5,0,0,-0.150854 -102149,7003:353:3,-33,5.5,0,0,-0.151203 -102150,7003:352:4,-32.5,5.5,0,0,-0.151758 -102151,7003:352:3,-32,5.5,0,0,-0.151758 -102152,7003:351:4,-31.5,5.5,0,0,-0.151408 -102153,7003:351:3,-31,5.5,0,0,-0.151347 -102154,7003:350:4,-30.5,5.5,0,0,-0.151593 -102155,7003:350:3,-30,5.5,0,0,-0.152523 -102156,7002:459:4,-29.5,5.5,0,0,-0.153814 -102157,7002:459:3,-29,5.5,0,0,-0.154928 -102158,7002:458:4,-28.5,5.5,0,0,-0.155647 -102159,7002:458:3,-28,5.5,0,0,-0.155732 -102160,7002:457:4,-27.5,5.5,0,0,-0.155711 -102161,7002:457:3,-27,5.5,0,0,-0.156008 -102162,7002:456:4,-26.5,5.5,0,0,-0.156392 -102163,7002:456:3,-26,5.5,0,0,-0.156968 -102164,7002:455:4,-25.5,5.5,0,0,-0.157333 -102165,7002:455:3,-25,5.5,0,0,-0.157957 -102166,7002:354:4,-24.5,5.5,0,0,-0.15891 -102167,7002:354:3,-24,5.5,0,0,-0.160856 -102168,7002:353:4,-23.5,5.5,0,0,-0.163635 -102169,7002:353:3,-23,5.5,0,0,-0.165283 -102170,7002:352:4,-22.5,5.5,0,0,-0.165283 -102171,7002:352:3,-22,5.5,0,0,-0.165079 -102172,7002:351:4,-21.5,5.5,0,0,-0.165011 -102173,7002:351:3,-21,5.5,0,0,-0.164581 -102174,7002:350:4,-20.5,5.5,0,0,-0.16748 -102175,7002:350:3,-20,5.5,0,0,-0.176388 -102176,7001:459:4,-19.5,5.5,0,0,-0.181512 -102177,7001:459:3,-19,5.5,0,0,-0.180957 -102178,7001:458:4,-18.5,5.5,0,0,-0.180479 -102179,7001:458:3,-18,5.5,0,0,-0.182986 -102180,7001:457:4,-17.5,5.5,0,0,-0.185067 -102181,7001:457:3,-17,5.5,0,0,-0.194261 -102182,7001:456:4,-16.5,5.5,0,0,-0.246659 -102183,1004:353:3,43,5.5,0,0,-0.156327 -102184,1004:353:4,43.5,5.5,0,0,-0.152233 -102185,1004:354:3,44,5.5,0,0,-0.152192 -102186,1004:354:4,44.5,5.5,0,0,-0.152026 -102187,1004:455:3,45,5.5,0,0,-0.151121 -102188,1004:455:4,45.5,5.5,0,0,-0.150018 -102189,1004:456:3,46,5.5,0,0,-0.148742 -102190,1004:456:4,46.5,5.5,0,0,-0.146802 -102191,1004:457:3,47,5.5,0,0,-0.146902 -102192,1004:457:4,47.5,5.5,0,0,-0.145498 -102193,1004:458:3,48,5.5,0,0,-0.142085 -102194,1004:458:4,48.5,5.5,0,0,-0.141227 -102195,1004:459:3,49,5.5,0,0,-0.140621 -102196,1004:459:4,49.5,5.5,0,0,-0.13605 -102197,1005:350:3,50,5.5,0,0,-0.13605 -102198,1005:351:3,51,5.5,0,0,-0.152543 -102199,1005:351:4,51.5,5.5,0,0,-0.166699 -102200,1005:352:3,52,5.5,0,0,-0.168963 -102201,1005:352:4,52.5,5.5,0,0,-0.167411 -102202,1005:353:3,53,5.5,0,0,-0.165807 -102203,1005:353:4,53.5,5.5,0,0,-0.164898 -102204,1005:354:3,54,5.5,0,0,-0.161961 -102205,1005:354:4,54.5,5.5,0,0,-0.162851 -102206,1005:455:3,55,5.5,0,0,-0.167111 -102207,1005:455:4,55.5,5.5,0,0,-0.166676 -102208,1005:456:3,56,5.5,0,0,-0.166309 -102209,1005:456:4,56.5,5.5,0,0,-0.166263 -102210,1005:457:3,57,5.5,0,0,-0.167595 -102211,1005:457:4,57.5,5.5,0,0,-0.16815 -102212,1005:458:3,58,5.5,0,0,-0.1688 -102213,1005:458:4,58.5,5.5,0,0,-0.170273 -102214,1005:459:3,59,5.5,0,0,-0.172857 -102215,1005:459:4,59.5,5.5,0,0,-0.175559 -102216,1006:350:3,60,5.5,0,0,-0.177197 -102217,1006:350:4,60.5,5.5,0,0,-0.178408 -102218,1006:351:3,61,5.5,0,0,-0.179352 -102219,1006:351:4,61.5,5.5,0,0,-0.180831 -102220,1006:352:3,62,5.5,0,0,-0.183369 -102221,1006:352:4,62.5,5.5,0,0,-0.186 -102222,1006:353:3,63,5.5,0,0,-0.1877 -102223,1006:353:4,63.5,5.5,0,0,-0.187964 -102224,1006:354:3,64,5.5,0,0,-0.188755 -102225,1006:354:4,64.5,5.5,0,0,-0.189977 -102226,1006:455:3,65,5.5,0,0,-0.191504 -102227,1006:455:4,65.5,5.5,0,0,-0.192773 -102228,1006:456:3,66,5.5,0,0,-0.194828 -102229,1006:456:4,66.5,5.5,0,0,-0.196628 -102230,1006:457:3,67,5.5,0,0,-0.197557 -102231,1006:457:4,67.5,5.5,0,0,-0.198002 -102232,1006:458:3,68,5.5,0,0,-0.198492 -102233,1006:458:4,68.5,5.5,0,0,-0.204063 -102234,1006:459:3,69,5.5,0,0,-0.230597 -102235,1006:459:4,69.5,5.5,0,0,-0.269509 -102236,1007:350:3,70,5.5,0,0,-0.30361 -102237,1007:350:4,70.5,5.5,0,0,-0.335348 -102238,1007:351:3,71,5.5,0,0,-0.35424 -102239,1007:351:4,71.5,5.5,0,0,-0.360236 -102240,1007:352:3,72,5.5,0,0,-0.384863 -102241,1007:352:4,72.5,5.5,0,0,-0.430147 -102242,1007:353:4,73.5,5.5,0,0,-0.424126 -102243,1007:354:3,74,5.5,0,0,-0.473033 -102244,1007:354:4,74.5,5.5,0,0,-0.497061 -102245,1007:455:3,75,5.5,0,0,-0.517822 -102246,1007:455:4,75.5,5.5,0,0,-0.447303 -102247,1008:350:4,80.5,5.5,0,0,-0.173312 -102248,1008:351:3,81,5.5,0,0,-0.17384 -102249,1008:351:4,81.5,5.5,0,0,-0.17257 -102250,1008:352:3,82,5.5,0,0,-0.178333 -102251,1008:352:4,82.5,5.5,0,0,-0.1877 -102252,1008:353:3,83,5.5,0,0,-0.190083 -102253,1008:353:4,83.5,5.5,0,0,-0.190324 -102254,1008:354:3,84,5.5,0,0,-0.18995 -102255,1008:354:4,84.5,5.5,0,0,-0.19011 -102256,1008:455:3,85,5.5,0,0,-0.193133 -102257,1008:455:4,85.5,5.5,0,0,-0.198541 -102258,1008:456:3,86,5.5,0,0,-0.207644 -102259,1008:456:4,86.5,5.5,0,0,-0.209171 -102260,1008:457:3,87,5.5,0,0,-0.218264 -102261,1008:457:4,87.5,5.5,0,0,-0.23095 -102262,1008:458:3,88,5.5,0,0,-0.224407 -102263,1008:458:4,88.5,5.5,0,0,-0.23095 -102264,1008:459:3,89,5.5,0,0,-0.243644 -102265,1008:459:4,89.5,5.5,0,0,-0.216678 -102266,1009:350:3,90,5.5,0,0,-0.223425 -102267,1009:350:4,90.5,5.5,0,0,-0.213159 -102268,1009:351:3,91,5.5,0,0,-0.243267 -102269,1009:351:4,91.5,5.5,0,0,-0.252825 -102270,1009:352:3,92,5.5,0,0,-0.257571 -102271,1009:352:4,92.5,5.5,0,0,-0.270349 -102272,1009:353:4,93.5,5.5,0,0,-0.273767 -102273,1009:354:3,94,5.5,0,0,-0.250876 -102274,1009:354:4,94.5,5.5,0,0,-0.230244 -102275,1009:455:3,95,5.5,0,0,-0.222122 -102276,1009:455:4,95.5,5.5,0,0,-0.213986 -102277,1009:456:3,96,5.5,0,0,-0.212343 -102278,1009:456:4,96.5,5.5,0,0,-0.239931 -102279,1009:457:3,97,5.5,0,0,-0.231294 -102280,1009:457:4,97.5,5.5,0,0,-0.239192 -102281,1009:458:3,98,5.5,0,0,-0.246659 -102282,1009:458:4,98.5,5.5,0,0,-0.248569 -102283,1010:350:4,100.5,5.5,0,0,-0.187385 -102284,1010:351:3,101,5.5,0,0,-0.196099 -102285,1010:351:4,101.5,5.5,0,0,-0.199066 -102286,1010:352:3,102,5.5,0,0,-0.195659 -102287,1010:352:4,102.5,5.5,0,0,-0.189791 -102288,1010:353:3,103,5.5,0,0,-0.18865 -102289,1010:459:4,109.5,5.5,0,0,-0.150691 -102290,1011:350:3,110,5.5,0,0,-0.153313 -102398,1016:456:3,166,5.5,0,0,-0.1911 -102291,1011:350:4,110.5,5.5,0,0,-0.174539 -102292,1011:351:3,111,5.5,0,0,-0.181968 -102293,1011:351:4,111.5,5.5,0,0,-0.185741 -102294,1011:352:3,112,5.5,0,0,-0.185015 -102295,1011:352:4,112.5,5.5,0,0,-0.174975 -102296,1011:353:3,113,5.5,0,0,-0.169523 -102297,1011:353:4,113.5,5.5,0,0,-0.168104 -102298,1011:354:3,114,5.5,0,0,-0.176363 -102299,1011:354:4,114.5,5.5,0,0,-0.188306 -102300,1011:455:3,115,5.5,0,0,-0.196761 -102301,1011:455:4,115.5,5.5,0,0,-0.233779 -102302,1011:456:3,116,5.5,0,0,-0.255578 -102303,1011:456:4,116.5,5.5,0,0,-0.248184 -102304,1011:457:3,117,5.5,0,0,-0.230597 -102305,1011:457:4,117.5,5.5,0,0,-0.211259 -102306,1011:458:3,118,5.5,0,0,-0.196231 -102307,1011:458:4,118.5,5.5,0,0,-0.276812 -102308,1011:459:3,119,5.5,0,0,-0.254793 -102309,1011:459:4,119.5,5.5,0,0,-0.215105 -102310,1012:350:3,120,5.5,0,0,-0.196894 -102311,1012:351:3,121,5.5,0,0,-0.19827 -102312,1012:351:4,121.5,5.5,0,0,-0.192611 -102313,1012:352:3,122,5.5,0,0,-0.185455 -102314,1012:352:4,122.5,5.5,0,0,-0.183241 -102315,1012:353:3,123,5.5,0,0,-0.179927 -102316,1012:353:4,123.5,5.5,0,0,-0.179952 -102317,1012:354:4,124.5,5.5,0,0,-0.234138 -102318,1012:456:3,126,5.5,0,0,-0.18587 -102319,1012:456:4,126.5,5.5,0,0,-0.194 -102320,1012:457:3,127,5.5,0,0,-0.198699 -102321,1012:457:4,127.5,5.5,0,0,-0.220178 -102322,1012:458:3,128,5.5,0,0,-0.248944 -102323,1012:458:4,128.5,5.5,0,0,-0.278564 -102324,1012:459:3,129,5.5,0,0,-0.305573 -102325,1012:459:4,129.5,5.5,0,0,-0.332593 -102326,1013:350:3,130,5.5,0,0,-0.359627 -102327,1013:350:4,130.5,5.5,0,0,-0.384201 -102328,1013:351:3,131,5.5,0,0,-0.400405 -102329,1013:351:4,131.5,5.5,0,0,-0.41024 -102330,1013:352:3,132,5.5,0,0,-0.413111 -102331,1013:352:4,132.5,5.5,0,0,-0.413838 -102332,1013:353:3,133,5.5,0,0,-0.421156 -102333,1013:353:4,133.5,5.5,0,0,-0.423375 -102334,1013:354:3,134,5.5,0,0,-0.432428 -102335,1013:354:4,134.5,5.5,0,0,-0.449703 -102336,1013:455:3,135,5.5,0,0,-0.455404 -102337,1013:455:4,135.5,5.5,0,0,-0.435502 -102338,1013:456:3,136,5.5,0,0,-0.420412 -102339,1013:456:4,136.5,5.5,0,0,-0.418213 -102340,1013:457:3,137,5.5,0,0,-0.428643 -102341,1013:457:4,137.5,5.5,0,0,-0.428643 -102342,1013:458:3,138,5.5,0,0,-0.40387 -102343,1013:458:4,138.5,5.5,0,0,-0.363282 -102344,1013:459:3,139,5.5,0,0,-0.349541 -102345,1013:459:4,139.5,5.5,0,0,-0.348955 -102346,1014:350:3,140,5.5,0,0,-0.352473 -102347,1014:350:4,140.5,5.5,0,0,-0.350717 -102348,1014:351:3,141,5.5,0,0,-0.348387 -102349,1014:351:4,141.5,5.5,0,0,-0.34492 -102350,1014:352:3,142,5.5,0,0,-0.343211 -102351,1014:352:4,142.5,5.5,0,0,-0.347803 -102352,1014:353:3,143,5.5,0,0,-0.353067 -102353,1014:353:4,143.5,5.5,0,0,-0.356036 -102354,1014:354:3,144,5.5,0,0,-0.361458 -102355,1014:354:4,144.5,5.5,0,0,-0.368216 -102356,1014:455:3,145,5.5,0,0,-0.374514 -102357,1014:455:4,145.5,5.5,0,0,-0.384201 -102358,1014:456:3,146,5.5,0,0,-0.394894 -102359,1014:456:4,146.5,5.5,0,0,-0.40811 -102360,1014:457:3,147,5.5,0,0,-0.421156 -102361,1014:457:4,147.5,5.5,0,0,-0.430914 -102362,1014:458:3,148,5.5,0,0,-0.437061 -102363,1014:458:4,148.5,5.5,0,0,-0.43628 -102364,1014:459:3,149,5.5,0,0,-0.433973 -102365,1014:459:4,149.5,5.5,0,0,-0.429383 -102366,1015:350:3,150,5.5,0,0,-0.421902 -102367,1015:350:4,150.5,5.5,0,0,-0.411683 -102368,1015:351:3,151,5.5,0,0,-0.400405 -102369,1015:351:4,151.5,5.5,0,0,-0.388848 -102370,1015:352:3,152,5.5,0,0,-0.378993 -102371,1015:352:4,152.5,5.5,0,0,-0.368844 -102372,1015:353:3,153,5.5,0,0,-0.362666 -102373,1015:353:4,153.5,5.5,0,0,-0.360236 -102374,1015:354:3,154,5.5,0,0,-0.362052 -102375,1015:354:4,154.5,5.5,0,0,-0.366361 -102376,1015:455:3,155,5.5,0,0,-0.368216 -102377,1015:455:4,155.5,5.5,0,0,-0.364498 -102378,1015:456:3,156,5.5,0,0,-0.354838 -102379,1015:456:4,156.5,5.5,0,0,-0.342638 -102380,1015:457:3,157,5.5,0,0,-0.334236 -102381,1015:457:4,157.5,5.5,0,0,-0.325569 -102382,1015:458:3,158,5.5,0,0,-0.31666 -102383,1015:458:4,158.5,5.5,0,0,-0.305573 -102384,1015:459:3,159,5.5,0,0,-0.293082 -102385,1015:459:4,159.5,5.5,0,0,-0.277238 -102386,1016:350:3,160,5.5,0,0,-0.259584 -102387,1016:350:4,160.5,5.5,0,0,-0.242153 -102388,1016:351:3,161,5.5,0,0,-0.228162 -102389,1016:351:4,161.5,5.5,0,0,-0.216678 -102390,1016:352:3,162,5.5,0,0,-0.206573 -102391,1016:352:4,162.5,5.5,0,0,-0.198594 -102392,1016:353:3,163,5.5,0,0,-0.196981 -102393,1016:353:4,163.5,5.5,0,0,-0.198646 -102394,1016:354:3,164,5.5,0,0,-0.198803 -102395,1016:354:4,164.5,5.5,0,0,-0.19818 -102396,1016:455:3,165,5.5,0,0,-0.196761 -102397,1016:455:4,165.5,5.5,0,0,-0.193262 -102399,1016:456:4,166.5,5.5,0,0,-0.193523 -102400,1016:457:3,167,5.5,0,0,-0.191584 -102401,1016:457:4,167.5,5.5,0,0,-0.190137 -102402,1016:458:3,168,5.5,0,0,-0.189179 -102403,1016:458:4,168.5,5.5,0,0,-0.188596 -102404,1016:459:3,169,5.5,0,0,-0.188121 -102405,1016:459:4,169.5,5.5,0,0,-0.187123 -102406,1017:350:3,170,5.5,0,0,-0.185274 -102407,1017:350:4,170.5,5.5,0,0,-0.185715 -102408,1017:351:3,171,5.5,0,0,-0.186731 -102409,1017:351:4,171.5,5.5,0,0,-0.187045 -102410,1017:352:3,172,5.5,0,0,-0.187202 -102411,1017:352:4,172.5,5.5,0,0,-0.18694 -102412,1017:353:3,173,5.5,0,0,-0.186548 -102413,1017:353:4,173.5,5.5,0,0,-0.186157 -102414,1017:354:3,174,5.5,0,0,-0.185689 -102415,1017:354:4,174.5,5.5,0,0,-0.185196 -102416,1017:455:3,175,5.5,0,0,-0.18486 -102417,1017:455:4,175.5,5.5,0,0,-0.184602 -102418,1017:456:3,176,5.5,0,0,-0.184113 -102419,1017:456:4,176.5,5.5,0,0,-0.183113 -102420,1017:457:3,177,5.5,0,0,-0.18174 -102421,1017:457:4,177.5,5.5,0,0,-0.181108 -102422,1017:458:3,178,5.5,0,0,-0.181083 -102423,1017:458:4,178.5,5.5,0,0,-0.181083 -102424,1017:459:3,179,5.5,0,0,-0.181032 -102425,1017:459:4,179.5,5.5,0,0,-0.180882 -102426,1018:350:3,180,5.5,0,0,-0.180831 -102427,7018:360:1,-180,6,0,0,-0.178408 -102428,7017:469:2,-179.5,6,0,0,-0.178259 -102429,7017:469:1,-179,6,0,0,-0.178011 -102430,7017:468:2,-178.5,6,0,0,-0.177863 -102431,7017:468:1,-178,6,0,0,-0.177863 -102432,7017:467:2,-177.5,6,0,0,-0.178036 -102433,7017:467:1,-177,6,0,0,-0.17811 -102434,7017:466:2,-176.5,6,0,0,-0.178135 -102435,7017:466:1,-176,6,0,0,-0.178011 -102436,7017:465:2,-175.5,6,0,0,-0.177715 -102437,7017:465:1,-175,6,0,0,-0.177247 -102438,7017:364:2,-174.5,6,0,0,-0.176657 -102439,7017:364:1,-174,6,0,0,-0.176046 -102440,7017:363:2,-173.5,6,0,0,-0.175412 -102441,7017:363:1,-173,6,0,0,-0.174854 -102442,7017:362:2,-172.5,6,0,0,-0.174418 -102443,7017:362:1,-172,6,0,0,-0.174033 -102444,7017:361:2,-171.5,6,0,0,-0.173744 -102445,7017:361:1,-171,6,0,0,-0.173312 -102446,7017:360:2,-170.5,6,0,0,-0.172665 -102447,7017:360:1,-170,6,0,0,-0.172023 -102448,7016:469:2,-169.5,6,0,0,-0.171642 -102449,7016:469:1,-169,6,0,0,-0.171619 -102450,7016:468:2,-168.5,6,0,0,-0.171761 -102451,7016:468:1,-168,6,0,0,-0.171453 -102452,7016:467:2,-167.5,6,0,0,-0.170344 -102453,7016:467:1,-167,6,0,0,-0.16887 -102454,7016:466:2,-166.5,6,0,0,-0.166951 -102455,7016:466:1,-166,6,0,0,-0.165966 -102456,7016:465:2,-165.5,6,0,0,-0.165215 -102457,7016:465:1,-165,6,0,0,-0.164513 -102458,7016:364:2,-164.5,6,0,0,-0.163994 -102459,7016:364:1,-164,6,0,0,-0.163747 -102460,7016:363:2,-163.5,6,0,0,-0.163747 -102461,7016:363:1,-163,6,0,0,-0.163882 -102462,7016:362:2,-162.5,6,0,0,-0.163792 -102463,7016:362:1,-162,6,0,0,-0.163433 -102464,7016:361:2,-161.5,6,0,0,-0.163007 -102465,7016:361:1,-161,6,0,0,-0.162606 -102466,7016:360:2,-160.5,6,0,0,-0.162338 -102467,7016:360:1,-160,6,0,0,-0.16216 -102468,7015:469:2,-159.5,6,0,0,-0.161961 -102469,7015:469:1,-159,6,0,0,-0.161628 -102470,7015:468:2,-158.5,6,0,0,-0.161164 -102471,7015:468:1,-158,6,0,0,-0.160504 -102472,7015:467:2,-157.5,6,0,0,-0.159868 -102473,7015:467:1,-157,6,0,0,-0.159453 -102474,7015:466:2,-156.5,6,0,0,-0.159497 -102475,7015:466:1,-156,6,0,0,-0.160087 -102476,7015:465:2,-155.5,6,0,0,-0.161208 -102477,7015:465:1,-155,6,0,0,-0.162739 -102478,7015:364:2,-154.5,6,0,0,-0.16404 -102479,7015:364:1,-154,6,0,0,-0.164739 -102480,7015:363:2,-153.5,6,0,0,-0.164558 -102481,7015:363:1,-153,6,0,0,-0.163276 -102482,7015:362:2,-152.5,6,0,0,-0.161672 -102483,7015:362:1,-152,6,0,0,-0.160109 -102484,7015:361:2,-151.5,6,0,0,-0.158888 -102485,7015:361:1,-151,6,0,0,-0.15904 -102486,7015:360:2,-150.5,6,0,0,-0.159803 -102487,7015:360:1,-150,6,0,0,-0.160416 -102488,7014:469:2,-149.5,6,0,0,-0.160482 -102489,7014:469:1,-149,6,0,0,-0.159934 -102490,7014:468:2,-148.5,6,0,0,-0.159018 -102491,7014:468:1,-148,6,0,0,-0.157871 -102492,7014:467:2,-147.5,6,0,0,-0.15669 -102493,7014:467:1,-147,6,0,0,-0.156072 -102494,7014:466:2,-146.5,6,0,0,-0.155902 -102495,7014:466:1,-146,6,0,0,-0.155414 -102496,7014:465:2,-145.5,6,0,0,-0.154506 -102497,7014:465:1,-145,6,0,0,-0.1535 -102498,7014:364:2,-144.5,6,0,0,-0.152378 -102499,7014:364:1,-144,6,0,0,-0.151387 -102500,7014:363:2,-143.5,6,0,0,-0.150425 -102501,7014:363:1,-143,6,0,0,-0.149895 -102502,7014:362:2,-142.5,6,0,0,-0.149692 -102503,7014:362:1,-142,6,0,0,-0.150364 -102504,7014:361:2,-141.5,6,0,0,-0.151593 -102505,7014:361:1,-141,6,0,0,-0.152543 -102506,7014:360:2,-140.5,6,0,0,-0.152523 -102507,7014:360:1,-140,6,0,0,-0.15182 -102508,7013:469:2,-139.5,6,0,0,-0.150486 -102509,7013:469:1,-139,6,0,0,-0.148079 -102510,7013:468:2,-138.5,6,0,0,-0.14601 -102511,7013:468:1,-138,6,0,0,-0.145617 -102512,7013:467:2,-137.5,6,0,0,-0.14718 -102513,7013:467:1,-137,6,0,0,-0.148742 -102514,7013:466:2,-136.5,6,0,0,-0.149956 -102515,7013:466:1,-136,6,0,0,-0.150588 -102516,7013:465:2,-135.5,6,0,0,-0.150977 -102517,7013:465:1,-135,6,0,0,-0.151326 -102518,7013:364:2,-134.5,6,0,0,-0.151779 -102519,7013:364:1,-134,6,0,0,-0.152399 -102520,7013:363:2,-133.5,6,0,0,-0.153271 -102521,7013:363:1,-133,6,0,0,-0.154465 -102522,7013:362:2,-132.5,6,0,0,-0.155541 -102523,7013:362:1,-132,6,0,0,-0.155647 -102524,7013:361:2,-131.5,6,0,0,-0.154949 -102525,7013:361:1,-131,6,0,0,-0.154044 -102526,7013:360:2,-130.5,6,0,0,-0.153396 -102527,7013:360:1,-130,6,0,0,-0.153333 -102528,7012:469:2,-129.5,6,0,0,-0.153605 -102529,7012:469:1,-129,6,0,0,-0.154003 -102530,7012:468:2,-128.5,6,0,0,-0.155034 -102531,7012:468:1,-128,6,0,0,-0.156733 -102532,7012:467:2,-127.5,6,0,0,-0.159344 -102533,7012:467:1,-127,6,0,0,-0.162361 -102534,7012:466:2,-126.5,6,0,0,-0.165238 -102535,7012:466:1,-126,6,0,0,-0.167665 -102536,7012:465:2,-125.5,6,0,0,-0.16936 -102537,7012:465:1,-125,6,0,0,-0.170414 -102538,7012:364:2,-124.5,6,0,0,-0.171169 -102539,7012:364:1,-124,6,0,0,-0.171928 -102540,7012:363:2,-123.5,6,0,0,-0.172737 -102541,7012:363:1,-123,6,0,0,-0.173624 -102542,7012:362:2,-122.5,6,0,0,-0.174418 -102543,7012:362:1,-122,6,0,0,-0.175145 -102544,7012:361:2,-121.5,6,0,0,-0.175851 -102545,7012:361:1,-121,6,0,0,-0.17651 -102546,7012:360:2,-120.5,6,0,0,-0.176903 -102547,7012:360:1,-120,6,0,0,-0.176976 -102548,7011:469:2,-119.5,6,0,0,-0.176829 -102549,7011:469:1,-119,6,0,0,-0.176461 -102550,7011:468:2,-118.5,6,0,0,-0.175924 -102551,7011:468:1,-118,6,0,0,-0.175607 -102552,7011:467:2,-117.5,6,0,0,-0.175607 -102553,7011:467:1,-117,6,0,0,-0.175729 -102554,7011:466:2,-116.5,6,0,0,-0.175997 -102555,7011:466:1,-116,6,0,0,-0.176412 -102556,7011:465:2,-115.5,6,0,0,-0.177099 -102557,7011:465:1,-115,6,0,0,-0.178234 -102558,7011:364:2,-114.5,6,0,0,-0.179702 -102559,7011:364:1,-114,6,0,0,-0.181158 -102560,7011:363:2,-113.5,6,0,0,-0.182603 -102561,7011:363:1,-113,6,0,0,-0.184062 -102562,7011:362:2,-112.5,6,0,0,-0.185378 -102563,7011:362:1,-112,6,0,0,-0.186183 -102564,7011:361:2,-111.5,6,0,0,-0.186522 -102565,7011:361:1,-111,6,0,0,-0.186705 -102566,7011:360:2,-110.5,6,0,0,-0.186809 -102567,7011:360:1,-110,6,0,0,-0.186992 -102568,7010:469:2,-109.5,6,0,0,-0.187254 -102569,7010:469:1,-109,6,0,0,-0.187805 -102570,7010:468:2,-108.5,6,0,0,-0.188359 -102571,7010:468:1,-108,6,0,0,-0.189391 -102572,7010:467:2,-107.5,6,0,0,-0.191342 -102573,7010:467:1,-107,6,0,0,-0.193609 -102574,7010:466:2,-106.5,6,0,0,-0.19654 -102575,7010:466:1,-106,6,0,0,-0.202756 -102576,7010:465:2,-105.5,6,0,0,-0.219854 -102577,7010:465:1,-105,6,0,0,-0.211532 -102578,7010:364:2,-104.5,6,0,0,-0.198404 -102579,7010:364:1,-104,6,0,0,-0.195265 -102580,7010:363:2,-103.5,6,0,0,-0.191799 -102581,7010:363:1,-103,6,0,0,-0.189897 -102582,7010:362:2,-102.5,6,0,0,-0.190083 -102583,7010:362:1,-102,6,0,0,-0.189391 -102584,7010:361:2,-101.5,6,0,0,-0.192665 -102585,7010:361:1,-101,6,0,0,-0.21371 -102586,7010:360:2,-100.5,6,0,0,-0.250876 -102587,7010:360:1,-100,6,0,0,-0.232359 -102588,7009:469:2,-99.5,6,0,0,-0.198002 -102589,7009:469:1,-99,6,0,0,-0.192097 -102590,7009:468:2,-98.5,6,0,0,-0.19818 -102591,7009:468:1,-98,6,0,0,-0.211532 -102592,7009:467:2,-97.5,6,0,0,-0.189844 -102593,7009:467:1,-97,6,0,0,-0.177173 -102594,7009:466:2,-96.5,6,0,0,-0.168081 -102595,7009:466:1,-96,6,0,0,-0.165807 -102596,7009:465:2,-95.5,6,0,0,-0.167043 -102597,7009:465:1,-95,6,0,0,-0.179203 -102598,7009:364:2,-94.5,6,0,0,-0.190031 -102599,7009:364:1,-94,6,0,0,-0.214809 -102600,7009:363:2,-93.5,6,0,0,-0.217305 -102601,7009:363:1,-93,6,0,0,-0.201314 -102602,7009:362:2,-92.5,6,0,0,-0.205991 -102603,7009:362:1,-92,6,0,0,-0.198541 -102604,7009:361:2,-91.5,6,0,0,-0.194872 -102605,7009:361:1,-91,6,0,0,-0.197557 -102606,7009:360:2,-90.5,6,0,0,-0.272482 -102607,7009:360:1,-90,6,0,0,-0.341496 -102608,7008:469:2,-89.5,6,0,0,-0.31666 -102609,7008:469:1,-89,6,0,0,-0.295437 -102610,7008:468:2,-88.5,6,0,0,-0.259991 -102611,7008:468:1,-88,6,0,0,-0.234848 -102612,7008:467:2,-87.5,6,0,0,-0.196761 -102613,7008:363:2,-83.5,6,0,0,-0.187123 -102614,7008:363:1,-83,6,0,0,-0.187674 -102615,7008:362:2,-82.5,6,0,0,-0.190431 -102616,7008:362:1,-82,6,0,0,-0.190164 -102617,7008:361:2,-81.5,6,0,0,-0.188253 -102618,7008:361:1,-81,6,0,0,-0.189285 -102619,7008:360:2,-80.5,6,0,0,-0.19094 -102620,7008:360:1,-80,6,0,0,-0.192584 -102621,7007:469:2,-79.5,6,0,0,-0.194217 -102622,7007:469:1,-79,6,0,0,-0.194915 -102623,7007:468:2,-78.5,6,0,0,-0.194261 -102624,7007:468:1,-78,6,0,0,-0.192502 -102625,7007:467:2,-77.5,6,0,0,-0.1911 -102626,7007:467:1,-77,6,0,0,-0.189897 -102627,7007:466:2,-76.5,6,0,0,-0.188623 -102628,7007:466:1,-76,6,0,0,-0.187779 -102629,7007:465:2,-75.5,6,0,0,-0.18694 -102630,7007:465:1,-75,6,0,0,-0.185093 -102631,7007:364:2,-74.5,6,0,0,-0.182222 -102632,7007:364:1,-74,6,0,0,-0.18068 -102633,7007:363:2,-73.5,6,0,0,-0.180756 -102634,7007:363:1,-73,6,0,0,-0.179952 -102635,7007:362:2,-72.5,6,0,0,-0.179228 -102636,7007:362:1,-72,6,0,0,-0.171263 -102637,7007:361:2,-71.5,6,0,0,-0.166951 -102638,7007:361:1,-71,6,0,0,-0.165602 -102639,7007:360:2,-70.5,6,0,0,-0.166859 -102640,7006:469:2,-69.5,6,0,0,-0.179752 -102641,7006:469:1,-69,6,0,0,-0.178805 -102642,7006:468:2,-68.5,6,0,0,-0.177419 -102643,7006:468:1,-68,6,0,0,-0.179827 -102644,7006:467:2,-67.5,6,0,0,-0.181083 -102645,7006:467:1,-67,6,0,0,-0.185274 -102646,7006:466:2,-66.5,6,0,0,-0.189631 -102647,7006:466:1,-66,6,0,0,-0.190297 -102648,7006:465:2,-65.5,6,0,0,-0.189977 -102649,7006:465:1,-65,6,0,0,-0.189524 -102650,7006:364:2,-64.5,6,0,0,-0.188464 -102651,7006:364:1,-64,6,0,0,-0.187964 -102652,7006:363:2,-63.5,6,0,0,-0.187674 -102653,7006:363:1,-63,6,0,0,-0.187674 -102654,7006:362:2,-62.5,6,0,0,-0.18749 -102655,7006:362:1,-62,6,0,0,-0.188174 -102656,7006:361:2,-61.5,6,0,0,-0.18865 -102657,7006:361:1,-61,6,0,0,-0.188967 -102658,7006:360:2,-60.5,6,0,0,-0.188702 -102659,7006:360:1,-60,6,0,0,-0.186862 -102660,7005:469:2,-59.5,6,0,0,-0.185611 -102661,7005:469:1,-59,6,0,0,-0.186079 -102662,7005:468:2,-58.5,6,0,0,-0.187097 -102663,7005:468:1,-58,6,0,0,-0.186183 -102664,7005:467:2,-57.5,6,0,0,-0.184912 -102665,7005:467:1,-57,6,0,0,-0.183369 -102666,7005:466:2,-56.5,6,0,0,-0.182019 -102667,7005:466:1,-56,6,0,0,-0.182146 -102668,7005:465:2,-55.5,6,0,0,-0.182527 -102669,7005:465:1,-55,6,0,0,-0.182197 -102670,7005:364:2,-54.5,6,0,0,-0.182146 -102671,7005:364:1,-54,6,0,0,-0.182222 -102672,7005:363:2,-53.5,6,0,0,-0.182247 -102673,7005:363:1,-53,6,0,0,-0.182095 -102674,7005:362:2,-52.5,6,0,0,-0.181386 -102675,7005:362:1,-52,6,0,0,-0.18068 -102676,7005:361:2,-51.5,6,0,0,-0.180152 -102677,7005:361:1,-51,6,0,0,-0.179477 -102678,7005:360:2,-50.5,6,0,0,-0.178581 -102679,7005:360:1,-50,6,0,0,-0.177616 -102680,7004:469:2,-49.5,6,0,0,-0.17651 -102681,7004:469:1,-49,6,0,0,-0.175461 -102682,7004:468:2,-48.5,6,0,0,-0.174177 -102683,7004:468:1,-48,6,0,0,-0.17245 -102684,7004:467:2,-47.5,6,0,0,-0.170203 -102685,7004:467:1,-47,6,0,0,-0.167895 -102686,7004:466:2,-46.5,6,0,0,-0.166882 -102687,7004:466:1,-46,6,0,0,-0.165693 -102688,7004:465:2,-45.5,6,0,0,-0.164898 -102689,7004:465:1,-45,6,0,0,-0.164197 -102690,7004:364:2,-44.5,6,0,0,-0.163792 -102691,7004:364:1,-44,6,0,0,-0.16359 -102692,7004:363:2,-43.5,6,0,0,-0.162361 -102693,7004:363:1,-43,6,0,0,-0.160833 -102694,7004:362:2,-42.5,6,0,0,-0.159366 -102695,7004:362:1,-42,6,0,0,-0.158 -102696,7004:361:2,-41.5,6,0,0,-0.157247 -102697,7004:361:1,-41,6,0,0,-0.156434 -102698,7004:360:2,-40.5,6,0,0,-0.155181 -102699,7004:360:1,-40,6,0,0,-0.154654 -102700,7003:469:2,-39.5,6,0,0,-0.153856 -102701,7003:469:1,-39,6,0,0,-0.152316 -102702,7003:468:2,-38.5,6,0,0,-0.150834 -102703,7003:468:1,-38,6,0,0,-0.14951 -102704,7003:467:2,-37.5,6,0,0,-0.148541 -102705,7003:467:1,-37,6,0,0,-0.148079 -102706,7003:466:2,-36.5,6,0,0,-0.147958 -102707,7003:466:1,-36,6,0,0,-0.147979 -102708,7003:465:2,-35.5,6,0,0,-0.147798 -102709,7003:465:1,-35,6,0,0,-0.147839 -102710,7003:364:2,-34.5,6,0,0,-0.147798 -102711,7003:364:1,-34,6,0,0,-0.147718 -102712,7003:363:2,-33.5,6,0,0,-0.147518 -102713,7003:363:1,-33,6,0,0,-0.14714 -102714,7003:362:2,-32.5,6,0,0,-0.146802 -102715,7003:362:1,-32,6,0,0,-0.147 -102716,7003:361:2,-31.5,6,0,0,-0.147459 -102717,7003:361:1,-31,6,0,0,-0.147899 -102718,7003:360:2,-30.5,6,0,0,-0.148541 -102719,7003:360:1,-30,6,0,0,-0.149632 -102720,7002:469:2,-29.5,6,0,0,-0.150629 -102721,7002:469:1,-29,6,0,0,-0.151244 -102722,7002:468:2,-28.5,6,0,0,-0.151285 -102723,7002:468:1,-28,6,0,0,-0.150568 -102724,7002:467:2,-27.5,6,0,0,-0.149936 -102725,7002:467:1,-27,6,0,0,-0.149429 -102726,7002:466:2,-26.5,6,0,0,-0.149754 -102727,7002:466:1,-26,6,0,0,-0.150814 -102728,7002:465:2,-25.5,6,0,0,-0.15147 -102729,7002:465:1,-25,6,0,0,-0.15242 -102730,7002:364:2,-24.5,6,0,0,-0.153772 -102731,7002:364:1,-24,6,0,0,-0.155902 -102732,7002:363:2,-23.5,6,0,0,-0.156819 -102733,7002:363:1,-23,6,0,0,-0.155605 -102734,7002:362:2,-22.5,6,0,0,-0.154359 -102735,7002:362:1,-22,6,0,0,-0.154108 -102736,7002:361:2,-21.5,6,0,0,-0.154381 -102737,7002:361:1,-21,6,0,0,-0.155097 -102738,7002:360:2,-20.5,6,0,0,-0.156733 -102739,7002:360:1,-20,6,0,0,-0.164243 -102740,7001:469:2,-19.5,6,0,0,-0.173216 -102741,7001:469:1,-19,6,0,0,-0.174612 -102742,7001:468:2,-18.5,6,0,0,-0.172976 -102743,7001:468:1,-18,6,0,0,-0.175875 -102744,7001:467:2,-17.5,6,0,0,-0.174129 -102745,7001:467:1,-17,6,0,0,-0.181841 -102746,1004:363:1,43,6,0,0,-0.154381 -102747,1004:363:2,43.5,6,0,0,-0.159541 -102748,1004:364:2,44.5,6,0,0,-0.151779 -102749,1004:465:1,45,6,0,0,-0.151799 -102750,1004:465:2,45.5,6,0,0,-0.150282 -102751,1004:466:1,46,6,0,0,-0.148461 -102752,1004:466:2,46.5,6,0,0,-0.147319 -102753,1004:467:1,47,6,0,0,-0.145754 -102754,1004:467:2,47.5,6,0,0,-0.145067 -102755,1004:468:1,48,6,0,0,-0.144364 -102756,1004:468:2,48.5,6,0,0,-0.143645 -102757,1004:469:1,49,6,0,0,-0.143161 -102758,1004:469:2,49.5,6,0,0,-0.146504 -102759,1005:360:1,50,6,0,0,-0.14716 -102760,1005:360:2,50.5,6,0,0,-0.153188 -102761,1005:361:1,51,6,0,0,-0.161076 -102762,1005:361:2,51.5,6,0,0,-0.161429 -102763,1005:362:1,52,6,0,0,-0.163972 -102764,1005:362:2,52.5,6,0,0,-0.161938 -102765,1005:363:1,53,6,0,0,-0.160504 -102766,1005:363:2,53.5,6,0,0,-0.159301 -102767,1005:364:1,54,6,0,0,-0.157914 -102768,1005:364:2,54.5,6,0,0,-0.155647 -102769,1005:465:1,55,6,0,0,-0.157011 -102770,1005:465:2,55.5,6,0,0,-0.162049 -102771,1005:466:1,56,6,0,0,-0.162472 -102772,1005:466:2,56.5,6,0,0,-0.162205 -102773,1005:467:1,57,6,0,0,-0.163994 -102774,1005:467:2,57.5,6,0,0,-0.164197 -102775,1005:468:1,58,6,0,0,-0.164062 -102776,1005:468:2,58.5,6,0,0,-0.165215 -102777,1005:469:1,59,6,0,0,-0.167711 -102778,1005:469:2,59.5,6,0,0,-0.169383 -102779,1006:360:1,60,6,0,0,-0.170438 -102780,1006:360:2,60.5,6,0,0,-0.171476 -102781,1006:361:1,61,6,0,0,-0.173768 -102782,1006:361:2,61.5,6,0,0,-0.176437 -102783,1006:362:1,62,6,0,0,-0.178234 -102784,1006:362:2,62.5,6,0,0,-0.179802 -102785,1006:363:1,63,6,0,0,-0.180856 -102786,1006:363:2,63.5,6,0,0,-0.181639 -102787,1006:364:1,64,6,0,0,-0.182629 -102788,1006:364:2,64.5,6,0,0,-0.184421 -102789,1006:465:1,65,6,0,0,-0.187071 -102790,1006:465:2,65.5,6,0,0,-0.189844 -102791,1006:466:1,66,6,0,0,-0.192828 -102792,1006:466:2,66.5,6,0,0,-0.196672 -102793,1006:467:1,67,6,0,0,-0.198646 -102794,1006:467:2,67.5,6,0,0,-0.200466 -102795,1006:468:1,68,6,0,0,-0.200466 -102796,1006:468:2,68.5,6,0,0,-0.202389 -102797,1006:469:1,69,6,0,0,-0.216043 -102798,1006:469:2,69.5,6,0,0,-0.251658 -102799,1007:360:1,70,6,0,0,-0.286168 -102800,1007:360:2,70.5,6,0,0,-0.316142 -102801,1007:361:1,71,6,0,0,-0.335906 -102802,1007:361:2,71.5,6,0,0,-0.344343 -102803,1007:362:1,72,6,0,0,-0.366361 -102804,1007:362:2,72.5,6,0,0,-0.413111 -102805,1007:363:2,73.5,6,0,0,-0.418952 -102806,1007:364:1,74,6,0,0,-0.494294 -102807,1007:364:2,74.5,6,0,0,-0.55127 -102808,1007:465:1,75,6,0,0,-0.496136 -102809,1008:360:2,80.5,6,0,0,-0.170862 -102810,1008:361:1,81,6,0,0,-0.172023 -102811,1008:361:2,81.5,6,0,0,-0.176168 -102812,1008:362:1,82,6,0,0,-0.176632 -102813,1008:362:2,82.5,6,0,0,-0.182095 -102814,1008:363:1,83,6,0,0,-0.187674 -102815,1008:363:2,83.5,6,0,0,-0.189551 -102816,1008:364:1,84,6,0,0,-0.188412 -102817,1008:364:2,84.5,6,0,0,-0.187595 -102818,1008:465:1,85,6,0,0,-0.191208 -102819,1008:465:2,85.5,6,0,0,-0.197115 -102820,1008:466:1,86,6,0,0,-0.202205 -102821,1008:466:2,86.5,6,0,0,-0.20677 -102822,1008:467:1,87,6,0,0,-0.217944 -102823,1008:467:2,87.5,6,0,0,-0.231648 -102824,1008:468:1,88,6,0,0,-0.224407 -102825,1008:468:2,88.5,6,0,0,-0.217305 -102826,1008:469:1,89,6,0,0,-0.216678 -102827,1008:469:2,89.5,6,0,0,-0.223425 -102828,1009:360:1,90,6,0,0,-0.213159 -102829,1009:360:2,90.5,6,0,0,-0.206968 -102830,1009:361:1,91,6,0,0,-0.208658 -102831,1009:361:2,91.5,6,0,0,-0.272051 -102832,1009:362:1,92,6,0,0,-0.285254 -102833,1009:362:2,92.5,6,0,0,-0.284357 -102834,1009:363:2,93.5,6,0,0,-0.242516 -102835,1009:364:1,94,6,0,0,-0.23342 -102836,1009:364:2,94.5,6,0,0,-0.2381 -102837,1009:465:1,95,6,0,0,-0.225747 -102838,1009:465:2,95.5,6,0,0,-0.198404 -102839,1009:466:1,96,6,0,0,-0.199066 -102840,1009:466:2,96.5,6,0,0,-0.229892 -102841,1009:467:1,97,6,0,0,-0.237013 -102842,1009:467:2,97.5,6,0,0,-0.220827 -102843,1009:468:1,98,6,0,0,-0.232716 -102844,1009:468:2,98.5,6,0,0,-0.411683 -102845,1010:360:2,100.5,6,0,0,-0.187595 -102846,1010:361:1,101,6,0,0,-0.185663 -102847,1011:360:1,110,6,0,0,-0.1484 -102848,1011:360:2,110.5,6,0,0,-0.160152 -102849,1011:361:1,111,6,0,0,-0.176903 -102850,1011:361:2,111.5,6,0,0,-0.181234 -102851,1011:362:1,112,6,0,0,-0.175363 -102852,1011:362:2,112.5,6,0,0,-0.169547 -102853,1011:363:1,113,6,0,0,-0.16873 -102854,1011:363:2,113.5,6,0,0,-0.164875 -102855,1011:364:1,114,6,0,0,-0.162985 -102856,1011:364:2,114.5,6,0,0,-0.178854 -102857,1011:465:1,115,6,0,0,-0.190057 -102858,1011:465:2,115.5,6,0,0,-0.199653 -102859,1011:466:1,116,6,0,0,-0.21371 -102860,1011:466:2,116.5,6,0,0,-0.201314 -102861,1011:467:1,117,6,0,0,-0.195309 -102862,1011:467:2,117.5,6,0,0,-0.191773 -102863,1011:468:1,118,6,0,0,-0.190859 -102864,1011:468:2,118.5,6,0,0,-0.201842 -102865,1011:469:1,119,6,0,0,-0.245515 -102866,1011:469:2,119.5,6,0,0,-0.219854 -102867,1012:360:1,120,6,0,0,-0.205606 -102868,1012:360:2,120.5,6,0,0,-0.198136 -102869,1012:361:1,121,6,0,0,-0.192746 -102870,1012:362:1,122,6,0,0,-0.188253 -102871,1012:362:2,122.5,6,0,0,-0.183088 -102872,1012:363:1,123,6,0,0,-0.184139 -102873,1012:363:2,123.5,6,0,0,-0.176878 -102874,1012:364:1,124,6,0,0,-0.171004 -102875,1012:465:1,125,6,0,0,-0.189339 -102876,1012:465:2,125.5,6,0,0,-0.189127 -102877,1012:466:1,126,6,0,0,-0.189817 -102878,1012:466:2,126.5,6,0,0,-0.192016 -102879,1012:467:1,127,6,0,0,-0.195003 -102880,1012:467:2,127.5,6,0,0,-0.198404 -102881,1012:468:1,128,6,0,0,-0.210724 -102882,1012:468:2,128.5,6,0,0,-0.233779 -102883,1012:469:1,129,6,0,0,-0.257571 -102884,1012:469:2,129.5,6,0,0,-0.282998 -102885,1013:360:1,130,6,0,0,-0.31005 -102886,1013:360:2,130.5,6,0,0,-0.332593 -102887,1013:361:1,131,6,0,0,-0.349541 -102888,1013:361:2,131.5,6,0,0,-0.362052 -102889,1013:362:1,132,6,0,0,-0.363899 -102890,1013:362:2,132.5,6,0,0,-0.366965 -102891,1013:363:1,133,6,0,0,-0.371348 -102892,1013:363:2,133.5,6,0,0,-0.368216 -102893,1013:364:1,134,6,0,0,-0.35424 -102894,1013:364:2,134.5,6,0,0,-0.342638 -102895,1013:465:1,135,6,0,0,-0.353662 -102896,1013:465:2,135.5,6,0,0,-0.366361 -102897,1013:466:1,136,6,0,0,-0.369454 -102898,1013:466:2,136.5,6,0,0,-0.363899 -102899,1013:467:1,137,6,0,0,-0.351881 -102900,1013:467:2,137.5,6,0,0,-0.342066 -102901,1013:468:1,138,6,0,0,-0.324513 -102902,1013:468:2,138.5,6,0,0,-0.307551 -102903,1013:469:1,139,6,0,0,-0.302152 -102904,1013:469:2,139.5,6,0,0,-0.301663 -102905,1014:360:1,140,6,0,0,-0.303118 -102906,1014:360:2,140.5,6,0,0,-0.301175 -102907,1014:361:1,141,6,0,0,-0.301663 -102908,1014:361:2,141.5,6,0,0,-0.303118 -102909,1014:362:1,142,6,0,0,-0.305077 -102910,1014:362:2,142.5,6,0,0,-0.312575 -102911,1014:363:1,143,6,0,0,-0.32134 -102912,1014:363:2,143.5,6,0,0,-0.328794 -102913,1014:364:1,144,6,0,0,-0.337008 -102914,1014:364:2,144.5,6,0,0,-0.339242 -102915,1014:465:1,145,6,0,0,-0.337008 -102916,1014:465:2,145.5,6,0,0,-0.343768 -102917,1014:466:1,146,6,0,0,-0.352473 -102918,1014:466:2,146.5,6,0,0,-0.357826 -102919,1014:467:1,147,6,0,0,-0.361458 -102920,1014:467:2,147.5,6,0,0,-0.362666 -102921,1014:468:1,148,6,0,0,-0.362052 -102922,1014:468:2,148.5,6,0,0,-0.357826 -102923,1014:469:1,149,6,0,0,-0.348387 -102924,1014:469:2,149.5,6,0,0,-0.338695 -102925,1015:360:1,150,6,0,0,-0.329338 -102926,1015:360:2,150.5,6,0,0,-0.32134 -102927,1015:361:1,151,6,0,0,-0.314095 -102928,1015:361:2,151.5,6,0,0,-0.306568 -102929,1015:362:1,152,6,0,0,-0.299731 -102930,1015:362:2,152.5,6,0,0,-0.292611 -102931,1015:363:1,153,6,0,0,-0.286612 -102932,1015:363:2,153.5,6,0,0,-0.28345 -102933,1015:364:1,154,6,0,0,-0.281211 -102934,1015:364:2,154.5,6,0,0,-0.279884 -102935,1015:465:1,155,6,0,0,-0.277679 -102936,1015:465:2,155.5,6,0,0,-0.273334 -102937,1015:466:1,156,6,0,0,-0.266142 -102938,1015:466:2,156.5,6,0,0,-0.258784 -102939,1015:467:1,157,6,0,0,-0.252038 -102940,1015:467:2,157.5,6,0,0,-0.246659 -102941,1015:468:1,158,6,0,0,-0.242516 -102942,1015:468:2,158.5,6,0,0,-0.235209 -102943,1015:469:1,159,6,0,0,-0.223755 -102944,1015:469:2,159.5,6,0,0,-0.210724 -102945,1016:360:1,160,6,0,0,-0.202205 -102946,1016:360:2,160.5,6,0,0,-0.198492 -102947,1016:361:1,161,6,0,0,-0.197557 -102948,1016:361:2,161.5,6,0,0,-0.196761 -102949,1016:362:1,162,6,0,0,-0.195572 -102950,1016:362:2,162.5,6,0,0,-0.194 -102951,1016:363:1,163,6,0,0,-0.193306 -102952,1016:363:2,163.5,6,0,0,-0.192313 -102953,1016:364:1,164,6,0,0,-0.191531 -102954,1016:364:2,164.5,6,0,0,-0.190564 -102955,1016:465:1,165,6,0,0,-0.189551 -102956,1016:465:2,165.5,6,0,0,-0.188835 -102957,1016:466:1,166,6,0,0,-0.188517 -102958,1016:466:2,166.5,6,0,0,-0.188201 -102959,1016:467:1,167,6,0,0,-0.187674 -102960,1016:467:2,167.5,6,0,0,-0.186731 -102961,1016:468:1,168,6,0,0,-0.185352 -102962,1016:468:2,168.5,6,0,0,-0.184165 -102963,1016:469:1,169,6,0,0,-0.183191 -102964,1016:469:2,169.5,6,0,0,-0.182552 -102965,1017:360:1,170,6,0,0,-0.18245 -102966,1017:360:2,170.5,6,0,0,-0.182502 -102967,1017:361:1,171,6,0,0,-0.182603 -102968,1017:361:2,171.5,6,0,0,-0.183191 -102969,1017:362:1,172,6,0,0,-0.183676 -102970,1017:362:2,172.5,6,0,0,-0.183651 -102971,1017:363:1,173,6,0,0,-0.183574 -102972,1017:363:2,173.5,6,0,0,-0.183548 -102973,1017:364:1,174,6,0,0,-0.183165 -102974,1017:364:2,174.5,6,0,0,-0.182629 -102975,1017:465:1,175,6,0,0,-0.182349 -102976,1017:465:2,175.5,6,0,0,-0.182044 -102977,1017:466:1,176,6,0,0,-0.181386 -102978,1017:466:2,176.5,6,0,0,-0.180479 -102979,1017:467:1,177,6,0,0,-0.179777 -102980,1017:467:2,177.5,6,0,0,-0.179502 -102981,1017:468:1,178,6,0,0,-0.179402 -102982,1017:468:2,178.5,6,0,0,-0.179078 -102983,1017:469:1,179,6,0,0,-0.17873 -102984,1017:469:2,179.5,6,0,0,-0.178507 -102985,1018:360:1,180,6,0,0,-0.178408 -102986,7018:360:3,-180,6.5,0,0,-0.17534 -102987,7017:469:4,-179.5,6.5,0,0,-0.174927 -102988,7017:469:3,-179,6.5,0,0,-0.174539 -102989,7017:468:4,-178.5,6.5,0,0,-0.17425 -102990,7017:468:3,-178,6.5,0,0,-0.17425 -102991,7017:467:4,-177.5,6.5,0,0,-0.174298 -102992,7017:467:3,-177,6.5,0,0,-0.174539 -102993,7017:466:4,-176.5,6.5,0,0,-0.174781 -102994,7017:466:3,-176,6.5,0,0,-0.17483 -102995,7017:465:4,-175.5,6.5,0,0,-0.174685 -102996,7017:465:3,-175,6.5,0,0,-0.174322 -102997,7017:364:4,-174.5,6.5,0,0,-0.17372 -102998,7017:364:3,-174,6.5,0,0,-0.172642 -102999,7017:363:4,-173.5,6.5,0,0,-0.171429 -103000,7017:363:3,-173,6.5,0,0,-0.170485 -103001,7017:362:4,-172.5,6.5,0,0,-0.169875 -103002,7017:362:3,-172,6.5,0,0,-0.169523 -103003,7017:361:4,-171.5,6.5,0,0,-0.16936 -103004,7017:361:3,-171,6.5,0,0,-0.169219 -103005,7017:360:4,-170.5,6.5,0,0,-0.169196 -103006,7017:360:3,-170,6.5,0,0,-0.169313 -103007,7016:469:4,-169.5,6.5,0,0,-0.169383 -103008,7016:469:3,-169,6.5,0,0,-0.169219 -103009,7016:468:4,-168.5,6.5,0,0,-0.168847 -103010,7016:468:3,-168,6.5,0,0,-0.16785 -103011,7016:467:4,-167.5,6.5,0,0,-0.166721 -103012,7016:467:3,-167,6.5,0,0,-0.16567 -103013,7016:466:4,-166.5,6.5,0,0,-0.164558 -103014,7016:466:3,-166,6.5,0,0,-0.164107 -103015,7016:465:4,-165.5,6.5,0,0,-0.163725 -103016,7016:465:3,-165,6.5,0,0,-0.163321 -103017,7016:364:4,-164.5,6.5,0,0,-0.162985 -103018,7016:364:3,-164,6.5,0,0,-0.162762 -103019,7016:363:4,-163.5,6.5,0,0,-0.162628 -103020,7016:363:3,-163,6.5,0,0,-0.162539 -103021,7016:362:4,-162.5,6.5,0,0,-0.162539 -103022,7016:362:3,-162,6.5,0,0,-0.162539 -103023,7016:361:4,-161.5,6.5,0,0,-0.162361 -103024,7016:361:3,-161,6.5,0,0,-0.162116 -103025,7016:360:4,-160.5,6.5,0,0,-0.161894 -103026,7016:360:3,-160,6.5,0,0,-0.16154 -103027,7015:469:4,-159.5,6.5,0,0,-0.161142 -103028,7015:469:3,-159,6.5,0,0,-0.16068 -103029,7015:468:4,-158.5,6.5,0,0,-0.160152 -103030,7015:468:3,-158,6.5,0,0,-0.159563 -103031,7015:467:4,-157.5,6.5,0,0,-0.158931 -103032,7015:467:3,-157,6.5,0,0,-0.158346 -103033,7015:466:4,-156.5,6.5,0,0,-0.157892 -103034,7015:466:3,-156,6.5,0,0,-0.158086 -103035,7015:465:4,-155.5,6.5,0,0,-0.158584 -103036,7015:465:3,-155,6.5,0,0,-0.159235 -103037,7015:364:4,-154.5,6.5,0,0,-0.159868 -103038,7015:364:3,-154,6.5,0,0,-0.160197 -103039,7015:363:4,-153.5,6.5,0,0,-0.159847 -103040,7015:363:3,-153,6.5,0,0,-0.158931 -103041,7015:362:4,-152.5,6.5,0,0,-0.157828 -103042,7015:362:3,-152,6.5,0,0,-0.156306 -103043,7015:361:4,-151.5,6.5,0,0,-0.155139 -103044,7015:361:3,-151,6.5,0,0,-0.155012 -103045,7015:360:4,-150.5,6.5,0,0,-0.15605 -103046,7015:360:3,-150,6.5,0,0,-0.157763 -103047,7014:469:4,-149.5,6.5,0,0,-0.158931 -103048,7014:469:3,-149,6.5,0,0,-0.158888 -103049,7014:468:4,-148.5,6.5,0,0,-0.157828 -103050,7014:468:3,-148,6.5,0,0,-0.156264 -103051,7014:467:4,-147.5,6.5,0,0,-0.154381 -103052,7014:467:3,-147,6.5,0,0,-0.153146 -103053,7014:466:4,-146.5,6.5,0,0,-0.152938 -103054,7014:466:3,-146,6.5,0,0,-0.152647 -103055,7014:465:4,-145.5,6.5,0,0,-0.151758 -103056,7014:465:3,-145,6.5,0,0,-0.150302 -103057,7014:364:4,-144.5,6.5,0,0,-0.148863 -103058,7014:364:3,-144,6.5,0,0,-0.147858 -103059,7014:363:4,-143.5,6.5,0,0,-0.147419 -103060,7014:363:3,-143,6.5,0,0,-0.146882 -103061,7014:362:4,-142.5,6.5,0,0,-0.146723 -103062,7014:362:3,-142,6.5,0,0,-0.147 -103063,7014:361:4,-141.5,6.5,0,0,-0.147839 -103064,7014:361:3,-141,6.5,0,0,-0.14955 -103065,7014:360:4,-140.5,6.5,0,0,-0.151182 -103066,7014:360:3,-140,6.5,0,0,-0.151593 -103067,7013:469:4,-139.5,6.5,0,0,-0.150629 -103068,7013:469:3,-139,6.5,0,0,-0.14832 -103069,7013:468:4,-138.5,6.5,0,0,-0.145028 -103070,7013:468:3,-138,6.5,0,0,-0.143335 -103071,7013:467:4,-137.5,6.5,0,0,-0.144189 -103072,7013:467:3,-137,6.5,0,0,-0.145715 -103073,7013:466:4,-136.5,6.5,0,0,-0.14714 -103074,7013:466:3,-136,6.5,0,0,-0.147759 -103075,7013:465:4,-135.5,6.5,0,0,-0.147878 -103076,7013:465:3,-135,6.5,0,0,-0.147798 -103077,7013:364:4,-134.5,6.5,0,0,-0.147939 -103078,7013:364:3,-134,6.5,0,0,-0.14842 -103079,7013:363:4,-133.5,6.5,0,0,-0.149388 -103080,7013:363:3,-133,6.5,0,0,-0.150241 -103081,7013:362:4,-132.5,6.5,0,0,-0.150201 -103082,7013:362:3,-132,6.5,0,0,-0.149449 -103083,7013:361:4,-131.5,6.5,0,0,-0.14836 -103084,7013:361:3,-131,6.5,0,0,-0.147419 -103085,7013:360:4,-130.5,6.5,0,0,-0.14714 -103086,7013:360:3,-130,6.5,0,0,-0.147659 -103087,7012:469:4,-129.5,6.5,0,0,-0.148722 -103088,7012:469:3,-129,6.5,0,0,-0.150282 -103089,7012:468:4,-128.5,6.5,0,0,-0.152336 -103090,7012:468:3,-128,6.5,0,0,-0.155139 -103091,7012:467:4,-127.5,6.5,0,0,-0.157978 -103092,7012:467:3,-127,6.5,0,0,-0.160504 -103093,7012:466:4,-126.5,6.5,0,0,-0.162406 -103094,7012:466:3,-126,6.5,0,0,-0.163882 -103095,7012:465:4,-125.5,6.5,0,0,-0.165102 -103096,7012:465:3,-125,6.5,0,0,-0.166172 -103097,7012:364:4,-124.5,6.5,0,0,-0.166905 -103098,7012:364:3,-124,6.5,0,0,-0.167803 -103099,7012:363:4,-123.5,6.5,0,0,-0.168823 -103100,7012:363:3,-123,6.5,0,0,-0.16964 -103101,7012:362:4,-122.5,6.5,0,0,-0.170344 -103102,7012:362:3,-122,6.5,0,0,-0.170886 -103103,7012:361:4,-121.5,6.5,0,0,-0.17124 -103104,7012:361:3,-121,6.5,0,0,-0.171382 -103105,7012:360:4,-120.5,6.5,0,0,-0.17124 -103106,7012:360:3,-120,6.5,0,0,-0.171358 -103107,7011:469:4,-119.5,6.5,0,0,-0.171547 -103108,7011:469:3,-119,6.5,0,0,-0.171714 -103109,7011:468:4,-118.5,6.5,0,0,-0.17207 -103110,7011:468:3,-118,6.5,0,0,-0.172403 -103111,7011:467:4,-117.5,6.5,0,0,-0.172904 -103112,7011:467:3,-117,6.5,0,0,-0.173383 -103113,7011:466:4,-116.5,6.5,0,0,-0.173816 -103114,7011:466:3,-116,6.5,0,0,-0.174588 -103115,7011:465:4,-115.5,6.5,0,0,-0.17568 -103116,7011:465:3,-115,6.5,0,0,-0.177321 -103117,7011:364:4,-114.5,6.5,0,0,-0.179228 -103118,7011:364:3,-114,6.5,0,0,-0.180932 -103119,7011:363:4,-113.5,6.5,0,0,-0.182527 -103120,7011:363:3,-113,6.5,0,0,-0.184062 -103121,7011:362:4,-112.5,6.5,0,0,-0.185326 -103122,7011:362:3,-112,6.5,0,0,-0.186392 -103123,7011:361:4,-111.5,6.5,0,0,-0.187254 -103124,7011:361:3,-111,6.5,0,0,-0.188174 -103125,7011:360:4,-110.5,6.5,0,0,-0.189152 -103126,7011:360:3,-110,6.5,0,0,-0.190004 -103127,7010:469:4,-109.5,6.5,0,0,-0.190484 -103128,7010:469:3,-109,6.5,0,0,-0.190725 -103129,7010:468:4,-108.5,6.5,0,0,-0.190618 -103130,7010:468:3,-108,6.5,0,0,-0.190671 -103131,7010:467:4,-107.5,6.5,0,0,-0.191316 -103132,7010:467:3,-107,6.5,0,0,-0.192529 -103133,7010:466:4,-106.5,6.5,0,0,-0.194479 -103134,7010:466:3,-106,6.5,0,0,-0.198047 -103135,7010:465:4,-105.5,6.5,0,0,-0.222767 -103136,7010:465:3,-105,6.5,0,0,-0.259584 -103137,7010:364:4,-104.5,6.5,0,0,-0.248184 -103138,7010:364:3,-104,6.5,0,0,-0.207397 -103139,7010:363:4,-103.5,6.5,0,0,-0.194217 -103140,7010:363:3,-103,6.5,0,0,-0.190725 -103141,7010:362:4,-102.5,6.5,0,0,-0.189498 -103142,7010:362:3,-102,6.5,0,0,-0.189684 -103143,7010:361:4,-101.5,6.5,0,0,-0.192205 -103144,7010:361:3,-101,6.5,0,0,-0.205216 -103145,7010:360:4,-100.5,6.5,0,0,-0.241406 -103146,7010:360:3,-100,6.5,0,0,-0.247414 -103147,7009:469:4,-99.5,6.5,0,0,-0.223425 -103148,7009:469:3,-99,6.5,0,0,-0.193133 -103149,7009:468:4,-98.5,6.5,0,0,-0.190297 -103150,7009:468:3,-98,6.5,0,0,-0.1928 -103151,7009:467:4,-97.5,6.5,0,0,-0.220178 -103152,7009:467:3,-97,6.5,0,0,-0.216043 -103153,7009:466:4,-96.5,6.5,0,0,-0.187045 -103154,7009:466:3,-96,6.5,0,0,-0.17312 -103155,7009:465:4,-95.5,6.5,0,0,-0.171121 -103156,7009:465:3,-95,6.5,0,0,-0.184964 -103157,7009:364:4,-94.5,6.5,0,0,-0.262838 -103158,7009:364:3,-94,6.5,0,0,-0.330961 -103159,7009:363:4,-93.5,6.5,0,0,-0.333698 -103160,7009:363:3,-93,6.5,0,0,-0.31718 -103161,7009:362:4,-92.5,6.5,0,0,-0.269509 -103162,7009:362:3,-92,6.5,0,0,-0.206573 -103163,7009:361:4,-91.5,6.5,0,0,-0.324513 -103164,7009:361:3,-91,6.5,0,0,-0.550207 -103165,7009:360:4,-90.5,6.5,0,0,-0.682336 -103166,7009:360:3,-90,6.5,0,0,-0.559806 -103167,7008:469:4,-89.5,6.5,0,0,-0.370084 -103168,7008:363:4,-83.5,6.5,0,0,-0.184293 -103169,7008:363:3,-83,6.5,0,0,-0.183267 -103170,7008:362:4,-82.5,6.5,0,0,-0.184783 -103171,7008:362:3,-82,6.5,0,0,-0.190913 -103172,7008:361:4,-81.5,6.5,0,0,-0.191423 -103173,7008:361:3,-81,6.5,0,0,-0.193652 -103174,7008:360:4,-80.5,6.5,0,0,-0.197026 -103175,7008:360:3,-80,6.5,0,0,-0.198909 -103176,7007:469:4,-79.5,6.5,0,0,-0.198699 -103177,7007:469:3,-79,6.5,0,0,-0.196496 -103178,7007:468:4,-78.5,6.5,0,0,-0.194087 -103179,7007:468:3,-78,6.5,0,0,-0.1928 -103180,7007:467:4,-77.5,6.5,0,0,-0.191934 -103181,7007:467:3,-77,6.5,0,0,-0.190511 -103182,7007:466:4,-76.5,6.5,0,0,-0.189258 -103183,7007:466:3,-76,6.5,0,0,-0.188016 -103184,7007:465:4,-75.5,6.5,0,0,-0.188095 -103185,7007:465:3,-75,6.5,0,0,-0.188967 -103186,7007:364:4,-74.5,6.5,0,0,-0.189684 -103187,7007:364:3,-74,6.5,0,0,-0.188782 -103188,7007:363:4,-73.5,6.5,0,0,-0.186678 -103189,7007:363:3,-73,6.5,0,0,-0.184113 -103190,7007:362:4,-72.5,6.5,0,0,-0.181892 -103191,7007:362:3,-72,6.5,0,0,-0.181538 -103192,7007:361:4,-71.5,6.5,0,0,-0.178135 -103193,7007:361:3,-71,6.5,0,0,-0.177124 -103194,7007:360:4,-70.5,6.5,0,0,-0.177148 -103195,7007:360:3,-70,6.5,0,0,-0.181766 -103196,7006:469:4,-69.5,6.5,0,0,-0.183702 -103197,7006:469:3,-69,6.5,0,0,-0.1824 -103198,7006:468:4,-68.5,6.5,0,0,-0.182323 -103199,7006:468:3,-68,6.5,0,0,-0.183343 -103200,7006:467:4,-67.5,6.5,0,0,-0.187648 -103201,7006:467:3,-67,6.5,0,0,-0.188835 -103202,7006:466:4,-66.5,6.5,0,0,-0.190324 -103203,7006:466:3,-66,6.5,0,0,-0.192394 -103204,7006:465:4,-65.5,6.5,0,0,-0.19461 -103205,7006:465:3,-65,6.5,0,0,-0.194391 -103206,7006:364:4,-64.5,6.5,0,0,-0.192828 -103207,7006:364:3,-64,6.5,0,0,-0.191799 -103208,7006:363:4,-63.5,6.5,0,0,-0.191074 -103209,7006:363:3,-63,6.5,0,0,-0.190405 -103210,7006:362:4,-62.5,6.5,0,0,-0.189924 -103211,7006:362:3,-62,6.5,0,0,-0.189524 -103212,7006:361:4,-61.5,6.5,0,0,-0.18865 -103213,7006:361:3,-61,6.5,0,0,-0.186862 -103214,7006:360:4,-60.5,6.5,0,0,-0.186835 -103215,7006:360:3,-60,6.5,0,0,-0.185897 -103216,7005:469:4,-59.5,6.5,0,0,-0.185455 -103217,7005:469:3,-59,6.5,0,0,-0.184524 -103218,7005:468:4,-58.5,6.5,0,0,-0.184344 -103219,7005:468:3,-58,6.5,0,0,-0.182095 -103220,7005:467:4,-57.5,6.5,0,0,-0.181689 -103221,7005:467:3,-57,6.5,0,0,-0.181335 -103222,7005:466:4,-56.5,6.5,0,0,-0.180152 -103223,7005:466:3,-56,6.5,0,0,-0.180028 -103224,7005:465:4,-55.5,6.5,0,0,-0.180128 -103225,7005:465:3,-55,6.5,0,0,-0.179877 -103226,7005:364:4,-54.5,6.5,0,0,-0.179552 -103227,7005:364:3,-54,6.5,0,0,-0.179977 -103228,7005:363:4,-53.5,6.5,0,0,-0.179952 -103229,7005:363:3,-53,6.5,0,0,-0.179302 -103230,7005:362:4,-52.5,6.5,0,0,-0.17769 -103231,7005:362:3,-52,6.5,0,0,-0.17629 -103232,7005:361:4,-51.5,6.5,0,0,-0.175753 -103233,7005:361:3,-51,6.5,0,0,-0.175437 -103234,7005:360:4,-50.5,6.5,0,0,-0.174516 -103235,7005:360:3,-50,6.5,0,0,-0.173264 -103236,7004:469:4,-49.5,6.5,0,0,-0.172284 -103237,7004:469:3,-49,6.5,0,0,-0.171311 -103238,7004:468:4,-48.5,6.5,0,0,-0.170086 -103239,7004:468:3,-48,6.5,0,0,-0.16915 -103240,7004:467:4,-47.5,6.5,0,0,-0.167965 -103241,7004:467:3,-47,6.5,0,0,-0.165852 -103242,7004:466:4,-46.5,6.5,0,0,-0.164717 -103243,7004:466:3,-46,6.5,0,0,-0.163523 -103244,7004:465:4,-45.5,6.5,0,0,-0.16245 -103245,7004:465:3,-45,6.5,0,0,-0.161628 -103246,7004:364:4,-44.5,6.5,0,0,-0.160833 -103247,7004:364:3,-44,6.5,0,0,-0.161032 -103248,7004:363:4,-43.5,6.5,0,0,-0.159912 -103249,7004:363:3,-43,6.5,0,0,-0.158606 -103250,7004:362:4,-42.5,6.5,0,0,-0.157612 -103251,7004:362:3,-42,6.5,0,0,-0.156264 -103252,7004:361:4,-41.5,6.5,0,0,-0.155097 -103253,7004:361:3,-41,6.5,0,0,-0.1535 -103254,7004:360:4,-40.5,6.5,0,0,-0.152026 -104112,7015:479:4,-159.5,7.5,0,0,-0.158 -103255,7004:360:3,-40,6.5,0,0,-0.151182 -103256,7003:469:4,-39.5,6.5,0,0,-0.149977 -103257,7003:469:3,-39,6.5,0,0,-0.148762 -103258,7003:468:4,-38.5,6.5,0,0,-0.148059 -103259,7003:468:3,-38,6.5,0,0,-0.147499 -103260,7003:467:4,-37.5,6.5,0,0,-0.147299 -103261,7003:467:3,-37,6.5,0,0,-0.147299 -103262,7003:466:4,-36.5,6.5,0,0,-0.1471 -103263,7003:466:3,-36,6.5,0,0,-0.146524 -103264,7003:465:4,-35.5,6.5,0,0,-0.145577 -103265,7003:465:3,-35,6.5,0,0,-0.144014 -103266,7003:364:4,-34.5,6.5,0,0,-0.142123 -103267,7003:364:3,-34,6.5,0,0,-0.140999 -103268,7003:363:4,-33.5,6.5,0,0,-0.140545 -103269,7003:363:3,-33,6.5,0,0,-0.140186 -103270,7003:362:4,-32.5,6.5,0,0,-0.14064 -103271,7003:362:3,-32,6.5,0,0,-0.141322 -103272,7003:361:4,-31.5,6.5,0,0,-0.14199 -103273,7003:361:3,-31,6.5,0,0,-0.14268 -103274,7003:360:4,-30.5,6.5,0,0,-0.143877 -103275,7003:360:3,-30,6.5,0,0,-0.145067 -103276,7002:469:4,-29.5,6.5,0,0,-0.145557 -103277,7002:469:3,-29,6.5,0,0,-0.145518 -103278,7002:468:4,-28.5,6.5,0,0,-0.144754 -103279,7002:468:3,-28,6.5,0,0,-0.143161 -103280,7002:467:4,-27.5,6.5,0,0,-0.142507 -103281,7002:467:3,-27,6.5,0,0,-0.143432 -103282,7002:466:4,-26.5,6.5,0,0,-0.144988 -103283,7002:466:3,-26,6.5,0,0,-0.146405 -103284,7002:465:4,-25.5,6.5,0,0,-0.147041 -103285,7002:465:3,-25,6.5,0,0,-0.147499 -103286,7002:364:4,-24.5,6.5,0,0,-0.149146 -103287,7002:364:3,-24,6.5,0,0,-0.150282 -103288,7002:363:4,-23.5,6.5,0,0,-0.147999 -103289,7002:363:3,-23,6.5,0,0,-0.146247 -103290,7002:362:4,-22.5,6.5,0,0,-0.14716 -103291,7002:362:3,-22,6.5,0,0,-0.1484 -103292,7002:361:4,-21.5,6.5,0,0,-0.149348 -103293,7002:361:3,-21,6.5,0,0,-0.150568 -103294,7002:360:4,-20.5,6.5,0,0,-0.153209 -103295,7002:360:3,-20,6.5,0,0,-0.15917 -103296,7001:469:4,-19.5,6.5,0,0,-0.166126 -103297,7001:469:3,-19,6.5,0,0,-0.166699 -103298,7001:468:4,-18.5,6.5,0,0,-0.166081 -103299,7001:468:3,-18,6.5,0,0,-0.170814 -103300,7001:467:4,-17.5,6.5,0,0,-0.165829 -103301,1004:362:4,42.5,6.5,0,0,-0.157161 -103302,1004:363:3,43,6.5,0,0,-0.15516 -103303,1004:466:3,46,6.5,0,0,-0.149105 -103304,1004:466:4,46.5,6.5,0,0,-0.150018 -103305,1004:467:3,47,6.5,0,0,-0.150018 -103306,1004:467:4,47.5,6.5,0,0,-0.148521 -103307,1004:468:3,48,6.5,0,0,-0.1485 -103308,1004:468:4,48.5,6.5,0,0,-0.148742 -103309,1004:469:3,49,6.5,0,0,-0.149773 -103310,1004:469:4,49.5,6.5,0,0,-0.150895 -103311,1005:360:3,50,6.5,0,0,-0.153417 -103312,1005:360:4,50.5,6.5,0,0,-0.157699 -103313,1005:361:3,51,6.5,0,0,-0.15891 -103314,1005:361:4,51.5,6.5,0,0,-0.157161 -103315,1005:362:3,52,6.5,0,0,-0.15917 -103316,1005:362:4,52.5,6.5,0,0,-0.159213 -103317,1005:363:3,53,6.5,0,0,-0.157462 -103318,1005:363:4,53.5,6.5,0,0,-0.15684 -103319,1005:364:3,54,6.5,0,0,-0.153146 -103320,1005:364:4,54.5,6.5,0,0,-0.154759 -103321,1005:465:3,55,6.5,0,0,-0.155753 -103322,1005:465:4,55.5,6.5,0,0,-0.157957 -103323,1005:466:3,56,6.5,0,0,-0.15714 -103324,1005:466:4,56.5,6.5,0,0,-0.157376 -103325,1005:467:3,57,6.5,0,0,-0.15989 -103326,1005:467:4,57.5,6.5,0,0,-0.164175 -103327,1005:468:3,58,6.5,0,0,-0.163994 -103328,1005:468:4,58.5,6.5,0,0,-0.162717 -103329,1005:469:3,59,6.5,0,0,-0.161495 -103330,1005:469:4,59.5,6.5,0,0,-0.163635 -103331,1006:360:3,60,6.5,0,0,-0.165147 -103332,1006:360:4,60.5,6.5,0,0,-0.16517 -103333,1006:361:3,61,6.5,0,0,-0.165602 -103334,1006:361:4,61.5,6.5,0,0,-0.1688 -103335,1006:362:3,62,6.5,0,0,-0.173744 -103336,1006:362:4,62.5,6.5,0,0,-0.175048 -103337,1006:363:3,63,6.5,0,0,-0.174733 -103338,1006:363:4,63.5,6.5,0,0,-0.174854 -103339,1006:364:3,64,6.5,0,0,-0.175997 -103340,1006:364:4,64.5,6.5,0,0,-0.178507 -103341,1006:465:3,65,6.5,0,0,-0.18212 -103342,1006:465:4,65.5,6.5,0,0,-0.185741 -103343,1006:466:3,66,6.5,0,0,-0.189127 -103344,1006:466:4,66.5,6.5,0,0,-0.191692 -103345,1006:467:3,67,6.5,0,0,-0.194 -103346,1006:467:4,67.5,6.5,0,0,-0.197115 -103347,1006:468:3,68,6.5,0,0,-0.201842 -103348,1006:468:4,68.5,6.5,0,0,-0.209936 -103349,1006:469:3,69,6.5,0,0,-0.219854 -103350,1006:469:4,69.5,6.5,0,0,-0.235571 -103351,1007:360:3,70,6.5,0,0,-0.259177 -103352,1007:360:4,70.5,6.5,0,0,-0.286168 -103353,1007:361:3,71,6.5,0,0,-0.313086 -103354,1007:361:4,71.5,6.5,0,0,-0.326645 -103355,1007:362:3,72,6.5,0,0,-0.336448 -103356,1007:362:4,72.5,6.5,0,0,-0.390174 -103357,1007:363:4,73.5,6.5,0,0,-0.424878 -103358,1007:364:3,74,6.5,0,0,-0.480868 -103359,1007:364:4,74.5,6.5,0,0,-0.516875 -103360,1008:361:3,81,6.5,0,0,-0.170344 -103361,1008:361:4,81.5,6.5,0,0,-0.173072 -103362,1008:362:3,82,6.5,0,0,-0.178705 -103363,1008:362:4,82.5,6.5,0,0,-0.180403 -103364,1008:363:3,83,6.5,0,0,-0.1836 -103365,1008:363:4,83.5,6.5,0,0,-0.184628 -103366,1008:364:3,84,6.5,0,0,-0.184783 -103367,1008:364:4,84.5,6.5,0,0,-0.186287 -103368,1008:465:3,85,6.5,0,0,-0.190431 -103369,1008:465:4,85.5,6.5,0,0,-0.195616 -103370,1008:466:3,86,6.5,0,0,-0.199812 -103371,1008:466:4,86.5,6.5,0,0,-0.205991 -103372,1008:467:3,87,6.5,0,0,-0.214531 -103373,1008:467:4,87.5,6.5,0,0,-0.225403 -103374,1008:468:3,88,6.5,0,0,-0.230244 -103375,1008:468:4,88.5,6.5,0,0,-0.237733 -103376,1008:469:3,89,6.5,0,0,-0.242891 -103377,1008:469:4,89.5,6.5,0,0,-0.244388 -103378,1009:360:3,90,6.5,0,0,-0.245895 -103379,1009:360:4,90.5,6.5,0,0,-0.239192 -103380,1009:361:3,91,6.5,0,0,-0.21542 -103381,1009:361:4,91.5,6.5,0,0,-0.294961 -103382,1009:362:3,92,6.5,0,0,-0.308052 -103383,1009:362:4,92.5,6.5,0,0,-0.28571 -103384,1009:363:3,93,6.5,0,0,-0.241779 -103385,1009:363:4,93.5,6.5,0,0,-0.226437 -103386,1009:364:3,94,6.5,0,0,-0.199812 -103387,1009:364:4,94.5,6.5,0,0,-0.208154 -103388,1009:465:3,95,6.5,0,0,-0.210987 -103389,1009:465:4,95.5,6.5,0,0,-0.195397 -103390,1009:466:3,96,6.5,0,0,-0.193696 -103391,1009:466:4,96.5,6.5,0,0,-0.197248 -103392,1009:467:3,97,6.5,0,0,-0.202023 -103393,1009:467:4,97.5,6.5,0,0,-0.201842 -103394,1009:468:3,98,6.5,0,0,-0.199653 -103395,1009:468:4,98.5,6.5,0,0,-0.213159 -103396,1010:360:4,100.5,6.5,0,0,-0.18647 -103397,1010:361:3,101,6.5,0,0,-0.185637 -103398,1011:360:3,110,6.5,0,0,-0.146604 -103399,1011:360:4,110.5,6.5,0,0,-0.152606 -103400,1011:361:3,111,6.5,0,0,-0.166126 -103401,1011:361:4,111.5,6.5,0,0,-0.176193 -103402,1011:362:3,112,6.5,0,0,-0.174539 -103403,1011:362:4,112.5,6.5,0,0,-0.170956 -103404,1011:363:3,113,6.5,0,0,-0.169945 -103405,1011:363:4,113.5,6.5,0,0,-0.16386 -103406,1011:364:3,114,6.5,0,0,-0.161319 -103407,1011:364:4,114.5,6.5,0,0,-0.167989 -103408,1011:465:3,115,6.5,0,0,-0.181993 -103409,1011:465:4,115.5,6.5,0,0,-0.190324 -103410,1011:466:3,116,6.5,0,0,-0.192232 -103411,1011:466:4,116.5,6.5,0,0,-0.189391 -103412,1011:467:3,117,6.5,0,0,-0.185949 -103413,1011:467:4,117.5,6.5,0,0,-0.186079 -103414,1011:468:3,118,6.5,0,0,-0.188253 -103415,1011:468:4,118.5,6.5,0,0,-0.193956 -103416,1011:469:3,119,6.5,0,0,-0.217305 -103417,1011:469:4,119.5,6.5,0,0,-0.200799 -103418,1012:360:3,120,6.5,0,0,-0.192232 -103419,1012:360:4,120.5,6.5,0,0,-0.191638 -103420,1012:362:3,122,6.5,0,0,-0.187018 -103421,1012:362:4,122.5,6.5,0,0,-0.183293 -103422,1012:363:3,123,6.5,0,0,-0.176805 -103423,1012:364:3,124,6.5,0,0,-0.188782 -103424,1012:364:4,124.5,6.5,0,0,-0.188042 -103425,1012:465:3,125,6.5,0,0,-0.18647 -103426,1012:465:4,125.5,6.5,0,0,-0.187648 -103427,1012:466:3,126,6.5,0,0,-0.188835 -103428,1012:466:4,126.5,6.5,0,0,-0.190164 -103429,1012:467:3,127,6.5,0,0,-0.191692 -103430,1012:467:4,127.5,6.5,0,0,-0.193479 -103431,1012:468:3,128,6.5,0,0,-0.196188 -103432,1012:468:4,128.5,6.5,0,0,-0.1994 -103433,1012:469:3,129,6.5,0,0,-0.213434 -103434,1012:469:4,129.5,6.5,0,0,-0.234848 -103435,1013:360:3,130,6.5,0,0,-0.257169 -103436,1013:360:4,130.5,6.5,0,0,-0.275496 -103437,1013:361:3,131,6.5,0,0,-0.292155 -103438,1013:361:4,131.5,6.5,0,0,-0.30607 -103439,1013:362:3,132,6.5,0,0,-0.316142 -103440,1013:362:4,132.5,6.5,0,0,-0.328794 -103441,1013:363:3,133,6.5,0,0,-0.341496 -103442,1013:363:4,133.5,6.5,0,0,-0.348387 -103443,1013:364:3,134,6.5,0,0,-0.338695 -103444,1013:364:4,134.5,6.5,0,0,-0.326106 -103445,1013:465:3,135,6.5,0,0,-0.328794 -103446,1013:465:4,135.5,6.5,0,0,-0.328251 -103447,1013:466:3,136,6.5,0,0,-0.315124 -103448,1013:466:4,136.5,6.5,0,0,-0.293554 -103449,1013:467:3,137,6.5,0,0,-0.275934 -103450,1013:467:4,137.5,6.5,0,0,-0.269509 -103451,1013:468:3,138,6.5,0,0,-0.268235 -103452,1013:468:4,138.5,6.5,0,0,-0.268235 -103453,1013:469:3,139,6.5,0,0,-0.269509 -103454,1013:469:4,139.5,6.5,0,0,-0.272051 -103455,1014:360:3,140,6.5,0,0,-0.275059 -103456,1014:360:4,140.5,6.5,0,0,-0.276372 -103457,1014:361:3,141,6.5,0,0,-0.276372 -103458,1014:361:4,141.5,6.5,0,0,-0.278121 -103459,1014:362:3,142,6.5,0,0,-0.280763 -103460,1014:362:4,142.5,6.5,0,0,-0.286168 -103461,1014:363:3,143,6.5,0,0,-0.292155 -103462,1014:363:4,143.5,6.5,0,0,-0.296855 -103463,1014:364:3,144,6.5,0,0,-0.297815 -103464,1014:364:4,144.5,6.5,0,0,-0.286612 -103465,1014:465:4,145.5,6.5,0,0,-0.287071 -103466,1014:466:3,146,6.5,0,0,-0.301175 -103467,1014:466:4,146.5,6.5,0,0,-0.30607 -103468,1014:467:3,147,6.5,0,0,-0.306568 -103469,1014:467:4,147.5,6.5,0,0,-0.302152 -103470,1014:468:3,148,6.5,0,0,-0.295913 -103471,1014:468:4,148.5,6.5,0,0,-0.288455 -103472,1014:469:3,149,6.5,0,0,-0.279884 -103473,1014:469:4,149.5,6.5,0,0,-0.274637 -103474,1015:360:3,150,6.5,0,0,-0.269922 -103475,1015:360:4,150.5,6.5,0,0,-0.2649 -103476,1015:361:3,151,6.5,0,0,-0.259991 -103477,1015:361:4,151.5,6.5,0,0,-0.255578 -103478,1015:362:3,152,6.5,0,0,-0.250485 -103479,1015:362:4,152.5,6.5,0,0,-0.244767 -103480,1015:363:3,153,6.5,0,0,-0.2381 -103481,1015:363:4,153.5,6.5,0,0,-0.232716 -103482,1015:364:3,154,6.5,0,0,-0.227466 -103483,1015:364:4,154.5,6.5,0,0,-0.222767 -103484,1015:465:3,155,6.5,0,0,-0.217944 -103485,1015:465:4,155.5,6.5,0,0,-0.212892 -103486,1015:466:3,156,6.5,0,0,-0.20717 -103487,1015:466:4,156.5,6.5,0,0,-0.202756 -103488,1015:467:3,157,6.5,0,0,-0.19917 -103489,1015:467:4,157.5,6.5,0,0,-0.198047 -103490,1015:468:3,158,6.5,0,0,-0.197026 -103491,1015:468:4,158.5,6.5,0,0,-0.196011 -103492,1015:469:3,159,6.5,0,0,-0.194959 -103493,1015:469:4,159.5,6.5,0,0,-0.193826 -103494,1016:360:3,160,6.5,0,0,-0.192854 -103495,1016:360:4,160.5,6.5,0,0,-0.192367 -103496,1016:361:3,161,6.5,0,0,-0.191908 -103497,1016:361:4,161.5,6.5,0,0,-0.191558 -103498,1016:362:3,162,6.5,0,0,-0.191127 -103499,1016:362:4,162.5,6.5,0,0,-0.190564 -103500,1016:363:3,163,6.5,0,0,-0.189737 -103501,1016:363:4,163.5,6.5,0,0,-0.188676 -103502,1016:364:3,164,6.5,0,0,-0.1877 -103503,1016:364:4,164.5,6.5,0,0,-0.186887 -103504,1016:465:3,165,6.5,0,0,-0.186079 -103505,1016:465:4,165.5,6.5,0,0,-0.185274 -103506,1016:466:3,166,6.5,0,0,-0.184628 -103507,1016:466:4,166.5,6.5,0,0,-0.184062 -103508,1016:467:3,167,6.5,0,0,-0.183395 -103509,1016:467:4,167.5,6.5,0,0,-0.182629 -103510,1016:468:3,168,6.5,0,0,-0.181841 -103511,1016:468:4,168.5,6.5,0,0,-0.181058 -103512,1016:469:3,169,6.5,0,0,-0.180328 -103513,1016:469:4,169.5,6.5,0,0,-0.179802 -103514,1017:360:3,170,6.5,0,0,-0.179452 -103515,1017:360:4,170.5,6.5,0,0,-0.179078 -103516,1017:361:3,171,6.5,0,0,-0.178904 -103517,1017:361:4,171.5,6.5,0,0,-0.179103 -103518,1017:362:3,172,6.5,0,0,-0.179153 -103519,1017:362:4,172.5,6.5,0,0,-0.179153 -103520,1017:363:3,173,6.5,0,0,-0.179378 -103521,1017:363:4,173.5,6.5,0,0,-0.179702 -103522,1017:364:3,174,6.5,0,0,-0.179852 -103523,1017:364:4,174.5,6.5,0,0,-0.179802 -103524,1017:465:3,175,6.5,0,0,-0.179602 -103525,1017:465:4,175.5,6.5,0,0,-0.179253 -103526,1017:466:3,176,6.5,0,0,-0.178755 -103527,1017:466:4,176.5,6.5,0,0,-0.178358 -103528,1017:467:3,177,6.5,0,0,-0.177888 -103529,1017:467:4,177.5,6.5,0,0,-0.177419 -103530,1017:468:3,178,6.5,0,0,-0.177001 -103531,1017:468:4,178.5,6.5,0,0,-0.176682 -103532,1017:469:3,179,6.5,0,0,-0.176388 -103533,1017:469:4,179.5,6.5,0,0,-0.175924 -103534,1018:360:3,180,6.5,0,0,-0.17534 -103535,7018:370:1,-180,7,0,0,-0.171928 -103536,7017:479:2,-179.5,7,0,0,-0.170956 -103537,7017:479:1,-179,7,0,0,-0.170086 -103538,7017:478:2,-178.5,7,0,0,-0.169406 -103539,7017:478:1,-178,7,0,0,-0.169033 -103540,7017:477:2,-177.5,7,0,0,-0.168916 -103541,7017:477:1,-177,7,0,0,-0.168987 -103542,7017:476:2,-176.5,7,0,0,-0.169336 -103543,7017:476:1,-176,7,0,0,-0.169687 -103544,7017:475:2,-175.5,7,0,0,-0.169992 -103545,7017:475:1,-175,7,0,0,-0.169898 -103546,7017:374:2,-174.5,7,0,0,-0.169243 -103547,7017:374:1,-174,7,0,0,-0.16815 -103548,7017:373:2,-173.5,7,0,0,-0.166836 -103549,7017:373:1,-173,7,0,0,-0.165738 -103550,7017:372:2,-172.5,7,0,0,-0.165261 -103551,7017:372:1,-172,7,0,0,-0.16542 -103552,7017:371:2,-171.5,7,0,0,-0.165943 -103553,7017:371:1,-171,7,0,0,-0.166629 -103554,7017:370:2,-170.5,7,0,0,-0.167043 -103555,7017:370:1,-170,7,0,0,-0.167181 -103556,7016:479:2,-169.5,7,0,0,-0.167158 -103557,7016:479:1,-169,7,0,0,-0.166905 -103558,7016:478:2,-168.5,7,0,0,-0.166446 -103559,7016:478:1,-168,7,0,0,-0.166012 -103560,7016:477:2,-167.5,7,0,0,-0.16567 -103561,7016:477:1,-167,7,0,0,-0.165442 -103562,7016:476:2,-166.5,7,0,0,-0.164943 -103563,7016:476:1,-166,7,0,0,-0.164423 -103564,7016:475:2,-165.5,7,0,0,-0.163837 -103565,7016:475:1,-165,7,0,0,-0.163097 -103566,7016:374:2,-164.5,7,0,0,-0.162383 -103567,7016:374:1,-164,7,0,0,-0.162138 -103568,7016:373:2,-163.5,7,0,0,-0.162028 -103569,7016:373:1,-163,7,0,0,-0.161938 -103570,7016:372:2,-162.5,7,0,0,-0.16185 -103571,7016:372:1,-162,7,0,0,-0.161739 -103572,7016:371:2,-161.5,7,0,0,-0.161319 -103573,7016:371:1,-161,7,0,0,-0.160811 -103574,7016:370:2,-160.5,7,0,0,-0.16068 -103575,7016:370:1,-160,7,0,0,-0.160723 -103576,7015:479:2,-159.5,7,0,0,-0.160482 -103577,7015:479:1,-159,7,0,0,-0.159825 -103578,7015:478:2,-158.5,7,0,0,-0.158996 -103579,7015:478:1,-158,7,0,0,-0.158216 -103580,7015:477:2,-157.5,7,0,0,-0.157526 -103581,7015:477:1,-157,7,0,0,-0.156626 -103582,7015:476:2,-156.5,7,0,0,-0.155605 -103583,7015:476:1,-156,7,0,0,-0.154696 -103584,7015:475:2,-155.5,7,0,0,-0.154128 -103585,7015:475:1,-155,7,0,0,-0.153856 -103586,7015:374:2,-154.5,7,0,0,-0.153668 -103587,7015:374:1,-154,7,0,0,-0.153752 -103588,7015:373:2,-153.5,7,0,0,-0.154044 -103589,7015:373:1,-153,7,0,0,-0.15459 -103590,7015:372:2,-152.5,7,0,0,-0.155139 -103591,7015:372:1,-152,7,0,0,-0.15497 -103592,7015:371:2,-151.5,7,0,0,-0.153898 -103593,7015:371:1,-151,7,0,0,-0.1535 -103594,7015:370:2,-150.5,7,0,0,-0.153688 -103595,7015:370:1,-150,7,0,0,-0.154886 -103596,7014:479:2,-149.5,7,0,0,-0.156477 -103597,7014:479:1,-149,7,0,0,-0.15714 -103598,7014:478:2,-148.5,7,0,0,-0.156434 -103599,7014:478:1,-148,7,0,0,-0.154928 -103600,7014:477:2,-147.5,7,0,0,-0.152938 -103601,7014:477:1,-147,7,0,0,-0.149794 -103602,7014:476:2,-146.5,7,0,0,-0.149754 -103603,7014:476:1,-146,7,0,0,-0.151593 -103604,7014:475:2,-145.5,7,0,0,-0.151449 -103605,7014:475:1,-145,7,0,0,-0.15016 -103606,7014:374:2,-144.5,7,0,0,-0.14848 -103607,7014:374:1,-144,7,0,0,-0.147041 -103608,7014:373:2,-143.5,7,0,0,-0.146425 -103609,7014:373:1,-143,7,0,0,-0.146366 -103610,7014:372:2,-142.5,7,0,0,-0.146544 -103611,7014:372:1,-142,7,0,0,-0.14714 -103612,7014:371:2,-141.5,7,0,0,-0.148038 -103613,7014:371:1,-141,7,0,0,-0.149045 -103614,7014:370:2,-140.5,7,0,0,-0.149936 -103615,7014:370:1,-140,7,0,0,-0.149875 -103616,7013:479:2,-139.5,7,0,0,-0.1484 -103617,7013:479:1,-139,7,0,0,-0.144832 -103618,7013:478:2,-138.5,7,0,0,-0.141436 -103619,7013:478:1,-138,7,0,0,-0.140715 -103620,7013:477:2,-137.5,7,0,0,-0.141665 -103621,7013:477:1,-137,7,0,0,-0.143084 -103622,7013:476:2,-136.5,7,0,0,-0.143606 -103623,7013:476:1,-136,7,0,0,-0.143606 -103624,7013:475:2,-135.5,7,0,0,-0.143278 -103625,7013:475:1,-135,7,0,0,-0.142795 -103626,7013:374:2,-134.5,7,0,0,-0.142468 -103627,7013:374:1,-134,7,0,0,-0.142661 -103628,7013:373:2,-133.5,7,0,0,-0.143258 -103629,7013:373:1,-133,7,0,0,-0.143606 -103630,7013:372:2,-132.5,7,0,0,-0.143374 -103631,7013:372:1,-132,7,0,0,-0.142814 -103632,7013:371:2,-131.5,7,0,0,-0.142238 -103633,7013:371:1,-131,7,0,0,-0.14197 -103634,7013:370:2,-130.5,7,0,0,-0.14243 -103635,7013:370:1,-130,7,0,0,-0.143761 -103636,7012:479:2,-129.5,7,0,0,-0.145361 -103637,7012:479:1,-129,7,0,0,-0.147579 -103638,7012:478:2,-128.5,7,0,0,-0.149916 -103639,7012:478:1,-128,7,0,0,-0.151676 -103640,7012:477:2,-127.5,7,0,0,-0.152896 -103641,7012:477:1,-127,7,0,0,-0.15417 -103642,7012:476:2,-126.5,7,0,0,-0.155774 -103643,7012:476:1,-126,7,0,0,-0.157419 -103644,7012:475:2,-125.5,7,0,0,-0.158931 -103645,7012:475:1,-125,7,0,0,-0.15989 -103646,7012:374:2,-124.5,7,0,0,-0.160504 -103647,7012:374:1,-124,7,0,0,-0.160657 -103648,7012:373:2,-123.5,7,0,0,-0.160921 -103649,7012:373:1,-123,7,0,0,-0.161208 -103650,7012:372:2,-122.5,7,0,0,-0.161407 -103651,7012:372:1,-122,7,0,0,-0.161452 -103652,7012:371:2,-121.5,7,0,0,-0.161695 -103653,7012:371:1,-121,7,0,0,-0.16216 -103654,7012:370:2,-120.5,7,0,0,-0.162784 -103655,7012:370:1,-120,7,0,0,-0.16404 -103656,7011:479:2,-119.5,7,0,0,-0.16567 -103657,7011:479:1,-119,7,0,0,-0.16748 -103658,7011:478:2,-118.5,7,0,0,-0.168684 -103659,7011:478:1,-118,7,0,0,-0.168987 -103660,7011:477:2,-117.5,7,0,0,-0.169453 -103661,7011:477:1,-117,7,0,0,-0.170156 -103662,7011:476:2,-116.5,7,0,0,-0.171145 -103663,7011:476:1,-116,7,0,0,-0.172403 -103664,7011:475:2,-115.5,7,0,0,-0.173912 -103665,7011:475:1,-115,7,0,0,-0.175388 -103666,7011:374:2,-114.5,7,0,0,-0.176535 -103667,7011:374:1,-114,7,0,0,-0.17705 -103668,7011:373:2,-113.5,7,0,0,-0.177271 -103669,7011:373:1,-113,7,0,0,-0.177222 -103670,7011:372:2,-112.5,7,0,0,-0.177124 -103671,7011:372:1,-112,7,0,0,-0.177271 -103672,7011:371:2,-111.5,7,0,0,-0.178061 -103673,7011:371:1,-111,7,0,0,-0.180429 -103674,7011:370:2,-110.5,7,0,0,-0.184216 -103675,7011:370:1,-110,7,0,0,-0.187805 -103676,7010:479:2,-109.5,7,0,0,-0.19094 -103677,7010:479:1,-109,7,0,0,-0.193219 -103678,7010:478:2,-108.5,7,0,0,-0.194828 -103679,7010:478:1,-108,7,0,0,-0.194872 -103680,7010:477:2,-107.5,7,0,0,-0.19474 -103681,7010:477:1,-107,7,0,0,-0.195703 -103682,7010:476:2,-106.5,7,0,0,-0.197914 -103683,7010:476:1,-106,7,0,0,-0.21371 -103684,7010:475:2,-105.5,7,0,0,-0.265317 -103685,7010:475:1,-105,7,0,0,-0.326106 -103686,7010:374:2,-104.5,7,0,0,-0.373236 -103687,7010:374:1,-104,7,0,0,-0.339808 -103688,7010:373:2,-103.5,7,0,0,-0.253615 -103689,7010:373:1,-103,7,0,0,-0.198359 -103690,7010:372:2,-102.5,7,0,0,-0.190591 -103691,7010:372:1,-102,7,0,0,-0.1853 -103692,7010:371:2,-101.5,7,0,0,-0.183702 -103693,7010:371:1,-101,7,0,0,-0.187517 -103694,7010:370:2,-100.5,7,0,0,-0.192016 -103695,7010:370:1,-100,7,0,0,-0.193913 -103696,7009:479:2,-99.5,7,0,0,-0.191881 -103697,7009:479:1,-99,7,0,0,-0.190805 -103698,7009:478:2,-98.5,7,0,0,-0.194 -103699,7009:478:1,-98,7,0,0,-0.233063 -103700,7009:477:2,-97.5,7,0,0,-0.278564 -103701,7009:477:1,-97,7,0,0,-0.194828 -103702,7009:476:2,-96.5,7,0,0,-0.181461 -103703,7009:476:1,-96,7,0,0,-0.16873 -103704,7009:475:2,-95.5,7,0,0,-0.173287 -103705,7009:475:1,-95,7,0,0,-0.194348 -103706,7009:374:2,-94.5,7,0,0,-0.272914 -103707,7009:374:1,-94,7,0,0,-0.350717 -103708,7009:373:2,-93.5,7,0,0,-0.313582 -103709,7009:373:1,-93,7,0,0,-0.266561 -103710,7009:372:2,-92.5,7,0,0,-0.330413 -103711,7009:372:1,-92,7,0,0,-0.590007 -103712,7008:373:1,-83,7,0,0,-0.179128 -103713,7008:372:2,-82.5,7,0,0,-0.181234 -103714,7008:372:1,-82,7,0,0,-0.188464 -103715,7008:371:2,-81.5,7,0,0,-0.192665 -103716,7008:371:1,-81,7,0,0,-0.197337 -103717,7008:370:2,-80.5,7,0,0,-0.202023 -103718,7008:370:1,-80,7,0,0,-0.20717 -103719,7007:479:2,-79.5,7,0,0,-0.204833 -103720,7007:479:1,-79,7,0,0,-0.199119 -103721,7007:478:2,-78.5,7,0,0,-0.19738 -103722,7007:478:1,-78,7,0,0,-0.194784 -103723,7007:477:2,-77.5,7,0,0,-0.191962 -103724,7007:477:1,-77,7,0,0,-0.190725 -103725,7007:476:2,-76.5,7,0,0,-0.190271 -103726,7007:476:1,-76,7,0,0,-0.190859 -103727,7007:475:2,-75.5,7,0,0,-0.19102 -103728,7007:475:1,-75,7,0,0,-0.192016 -103729,7007:374:2,-74.5,7,0,0,-0.193782 -103730,7007:374:1,-74,7,0,0,-0.19387 -103731,7007:373:2,-73.5,7,0,0,-0.1928 -103732,7007:373:1,-73,7,0,0,-0.191746 -103733,7007:372:2,-72.5,7,0,0,-0.190164 -103734,7007:372:1,-72,7,0,0,-0.189021 -103735,7007:371:2,-71.5,7,0,0,-0.188571 -103736,7007:371:1,-71,7,0,0,-0.188174 -103737,7007:370:2,-70.5,7,0,0,-0.187517 -103738,7007:370:1,-70,7,0,0,-0.186705 -103739,7006:479:2,-69.5,7,0,0,-0.185455 -103740,7006:479:1,-69,7,0,0,-0.184938 -103741,7006:478:2,-68.5,7,0,0,-0.186574 -103742,7006:478:1,-68,7,0,0,-0.189339 -103743,7006:477:2,-67.5,7,0,0,-0.190297 -103744,7006:477:1,-67,7,0,0,-0.190859 -103745,7006:476:2,-66.5,7,0,0,-0.192475 -103746,7006:476:1,-66,7,0,0,-0.195659 -103747,7006:475:2,-65.5,7,0,0,-0.196849 -103748,7006:475:1,-65,7,0,0,-0.195572 -103749,7006:374:2,-64.5,7,0,0,-0.193652 -103750,7006:374:1,-64,7,0,0,-0.192556 -103751,7006:373:2,-63.5,7,0,0,-0.191423 -103752,7006:373:1,-63,7,0,0,-0.190351 -103753,7006:372:2,-62.5,7,0,0,-0.189684 -103754,7006:372:1,-62,7,0,0,-0.189179 -103755,7006:371:2,-61.5,7,0,0,-0.188174 -103756,7006:371:1,-61,7,0,0,-0.18647 -103757,7006:370:2,-60.5,7,0,0,-0.185974 -103758,7006:370:1,-60,7,0,0,-0.185507 -103759,7005:479:2,-59.5,7,0,0,-0.184524 -103760,7005:479:1,-59,7,0,0,-0.18419 -103761,7005:478:2,-58.5,7,0,0,-0.183369 -103762,7005:478:1,-58,7,0,0,-0.180856 -103763,7005:477:2,-57.5,7,0,0,-0.179877 -103764,7005:477:1,-57,7,0,0,-0.179029 -103765,7005:476:2,-56.5,7,0,0,-0.178383 -103766,7005:476:1,-56,7,0,0,-0.177616 -103767,7005:475:2,-55.5,7,0,0,-0.177394 -103768,7005:475:1,-55,7,0,0,-0.177789 -103769,7005:374:2,-54.5,7,0,0,-0.177567 -103770,7005:374:1,-54,7,0,0,-0.177493 -103771,7005:373:2,-53.5,7,0,0,-0.177444 -103772,7005:373:1,-53,7,0,0,-0.176805 -103773,7005:372:2,-52.5,7,0,0,-0.174564 -103774,7005:372:1,-52,7,0,0,-0.172165 -103775,7005:371:2,-51.5,7,0,0,-0.170391 -103776,7005:371:1,-51,7,0,0,-0.169336 -103777,7005:370:2,-50.5,7,0,0,-0.168011 -103778,7005:370:1,-50,7,0,0,-0.167573 -103779,7004:479:2,-49.5,7,0,0,-0.16725 -103780,7004:479:1,-49,7,0,0,-0.166126 -103781,7004:478:2,-48.5,7,0,0,-0.164921 -103782,7004:478:1,-48,7,0,0,-0.163343 -103783,7004:477:2,-47.5,7,0,0,-0.161253 -103784,7004:477:1,-47,7,0,0,-0.15904 -103785,7004:476:2,-46.5,7,0,0,-0.158022 -103786,7004:476:1,-46,7,0,0,-0.15669 -103787,7004:475:2,-45.5,7,0,0,-0.156072 -103788,7004:475:1,-45,7,0,0,-0.156605 -103789,7004:374:2,-44.5,7,0,0,-0.157936 -103790,7004:374:1,-44,7,0,0,-0.157699 -103791,7004:373:2,-43.5,7,0,0,-0.155414 -103792,7004:373:1,-43,7,0,0,-0.152523 -103793,7004:372:2,-42.5,7,0,0,-0.151347 -103794,7004:372:1,-42,7,0,0,-0.152751 -103795,7004:371:2,-41.5,7,0,0,-0.15325 -103796,7004:371:1,-41,7,0,0,-0.151758 -103797,7004:370:2,-40.5,7,0,0,-0.15067 -103798,7004:370:1,-40,7,0,0,-0.150038 -103799,7003:479:2,-39.5,7,0,0,-0.149146 -103800,7003:479:1,-39,7,0,0,-0.14842 -103801,7003:478:2,-38.5,7,0,0,-0.147878 -103802,7003:478:1,-38,7,0,0,-0.147399 -103803,7003:477:2,-37.5,7,0,0,-0.14714 -103804,7003:477:1,-37,7,0,0,-0.146802 -103805,7003:476:2,-36.5,7,0,0,-0.145833 -103806,7003:476:1,-36,7,0,0,-0.143722 -103807,7003:475:2,-35.5,7,0,0,-0.140394 -103808,7003:475:1,-35,7,0,0,-0.137924 -103809,7003:374:2,-34.5,7,0,0,-0.13712 -103810,7003:374:1,-34,7,0,0,-0.13687 -103811,7003:373:2,-33.5,7,0,0,-0.136753 -103812,7003:373:1,-33,7,0,0,-0.136886 -103813,7003:372:2,-32.5,7,0,0,-0.137287 -103814,7003:372:1,-32,7,0,0,-0.137722 -103815,7003:371:2,-31.5,7,0,0,-0.138092 -103816,7003:371:1,-31,7,0,0,-0.138513 -103817,7003:370:2,-30.5,7,0,0,-0.139088 -103818,7003:370:1,-30,7,0,0,-0.139829 -103819,7002:479:2,-29.5,7,0,0,-0.139904 -103820,7002:479:1,-29,7,0,0,-0.139207 -103821,7002:478:2,-28.5,7,0,0,-0.138092 -103822,7002:478:1,-28,7,0,0,-0.137037 -103823,7002:477:2,-27.5,7,0,0,-0.13682 -103824,7002:477:1,-27,7,0,0,-0.137789 -103825,7002:476:2,-26.5,7,0,0,-0.139697 -103826,7002:476:1,-26,7,0,0,-0.141493 -103827,7002:475:2,-25.5,7,0,0,-0.142468 -103828,7002:475:1,-25,7,0,0,-0.143065 -103829,7002:374:2,-24.5,7,0,0,-0.144402 -103830,7002:374:1,-24,7,0,0,-0.145165 -103831,7002:373:2,-23.5,7,0,0,-0.143819 -103832,7002:373:1,-23,7,0,0,-0.142853 -103833,7002:372:2,-22.5,7,0,0,-0.143606 -103834,7002:372:1,-22,7,0,0,-0.142911 -103835,7002:371:2,-21.5,7,0,0,-0.1432 -103836,7002:371:1,-21,7,0,0,-0.146346 -103837,7002:370:2,-20.5,7,0,0,-0.150425 -103838,7002:370:1,-20,7,0,0,-0.15497 -103839,7001:479:2,-19.5,7,0,0,-0.158888 -103840,7001:479:1,-19,7,0,0,-0.159148 -103841,7001:478:2,-18.5,7,0,0,-0.159912 -103842,7001:478:1,-18,7,0,0,-0.160547 -103843,7001:477:2,-17.5,7,0,0,-0.153647 -103844,1004:371:2,41.5,7,0,0,-0.162205 -103845,1004:372:1,42,7,0,0,-0.162539 -103846,1004:372:2,42.5,7,0,0,-0.161429 -103847,1004:479:1,49,7,0,0,-0.154213 -103848,1004:479:2,49.5,7,0,0,-0.156797 -103849,1005:370:1,50,7,0,0,-0.156584 -103850,1005:370:2,50.5,7,0,0,-0.158303 -103851,1005:371:1,51,7,0,0,-0.159432 -103852,1005:371:2,51.5,7,0,0,-0.157247 -103853,1005:372:1,52,7,0,0,-0.159563 -103854,1005:372:2,52.5,7,0,0,-0.160592 -103855,1005:373:1,53,7,0,0,-0.158714 -103856,1005:373:2,53.5,7,0,0,-0.158346 -103857,1005:374:1,54,7,0,0,-0.156455 -103858,1005:374:2,54.5,7,0,0,-0.150793 -103859,1005:475:1,55,7,0,0,-0.155647 -103860,1005:475:2,55.5,7,0,0,-0.155456 -103861,1005:476:1,56,7,0,0,-0.15603 -103862,1005:476:2,56.5,7,0,0,-0.156584 -103863,1005:477:1,57,7,0,0,-0.156862 -103864,1005:477:2,57.5,7,0,0,-0.159257 -103865,1005:478:1,58,7,0,0,-0.161164 -103866,1005:478:2,58.5,7,0,0,-0.160966 -103867,1005:479:1,59,7,0,0,-0.15989 -103868,1005:479:2,59.5,7,0,0,-0.159628 -103869,1006:370:1,60,7,0,0,-0.160613 -103870,1006:370:2,60.5,7,0,0,-0.161385 -103871,1006:371:1,61,7,0,0,-0.162183 -103872,1006:371:2,61.5,7,0,0,-0.163007 -103873,1006:372:1,62,7,0,0,-0.166401 -103874,1006:372:2,62.5,7,0,0,-0.171051 -103875,1006:373:1,63,7,0,0,-0.172141 -103876,1006:373:2,63.5,7,0,0,-0.172141 -103877,1006:374:1,64,7,0,0,-0.173456 -103878,1006:374:2,64.5,7,0,0,-0.175729 -103879,1006:475:1,65,7,0,0,-0.179003 -103880,1006:475:2,65.5,7,0,0,-0.182705 -103881,1006:476:1,66,7,0,0,-0.185507 -103882,1006:476:2,66.5,7,0,0,-0.18749 -103883,1006:477:1,67,7,0,0,-0.189073 -103884,1006:477:2,67.5,7,0,0,-0.190511 -103885,1006:478:1,68,7,0,0,-0.191989 -103886,1006:478:2,68.5,7,0,0,-0.19413 -103887,1006:479:1,69,7,0,0,-0.198136 -103888,1006:479:2,69.5,7,0,0,-0.217305 -103889,1007:370:1,70,7,0,0,-0.246277 -103890,1007:370:2,70.5,7,0,0,-0.272051 -103891,1007:371:1,71,7,0,0,-0.288455 -103892,1007:371:2,71.5,7,0,0,-0.306568 -103893,1007:372:1,72,7,0,0,-0.326106 -103894,1007:372:2,72.5,7,0,0,-0.424878 -103895,1007:373:2,73.5,7,0,0,-0.430147 -103896,1007:374:1,74,7,0,0,-0.456204 -103897,1007:374:2,74.5,7,0,0,-0.421156 -103898,1008:370:2,80.5,7,0,0,-0.168382 -103899,1008:371:1,81,7,0,0,-0.169781 -103900,1008:371:2,81.5,7,0,0,-0.172308 -103901,1008:372:1,82,7,0,0,-0.176486 -103902,1008:372:2,82.5,7,0,0,-0.176927 -103903,1008:373:1,83,7,0,0,-0.180103 -103904,1008:373:2,83.5,7,0,0,-0.182476 -103905,1008:374:1,84,7,0,0,-0.184087 -103906,1008:374:2,84.5,7,0,0,-0.186548 -103907,1008:475:1,85,7,0,0,-0.190004 -103908,1008:475:2,85.5,7,0,0,-0.194391 -103909,1008:476:1,86,7,0,0,-0.19738 -103910,1008:476:2,86.5,7,0,0,-0.198803 -103911,1008:477:1,87,7,0,0,-0.2003 -103912,1008:477:2,87.5,7,0,0,-0.200632 -103913,1008:478:1,88,7,0,0,-0.201139 -103914,1008:478:2,88.5,7,0,0,-0.211259 -103915,1008:479:1,89,7,0,0,-0.235209 -103916,1008:479:2,89.5,7,0,0,-0.251658 -103917,1009:370:1,90,7,0,0,-0.258379 -103918,1009:370:2,90.5,7,0,0,-0.251266 -103919,1009:371:1,91,7,0,0,-0.25322 -103920,1009:371:2,91.5,7,0,0,-0.292155 -103921,1009:372:1,92,7,0,0,-0.31005 -103922,1009:372:2,92.5,7,0,0,-0.327709 -103923,1009:373:1,93,7,0,0,-0.278564 -103924,1009:373:2,93.5,7,0,0,-0.198225 -103925,1009:374:1,94,7,0,0,-0.195484 -103926,1009:374:2,94.5,7,0,0,-0.194173 -103927,1009:475:1,95,7,0,0,-0.193262 -103928,1009:475:2,95.5,7,0,0,-0.192124 -103929,1009:476:1,96,7,0,0,-0.195353 -103930,1009:476:2,96.5,7,0,0,-0.198002 -103931,1009:477:1,97,7,0,0,-0.198594 -103932,1009:477:2,97.5,7,0,0,-0.197248 -103933,1009:478:1,98,7,0,0,-0.295437 -103934,1010:479:2,109.5,7,0,0,-0.144695 -103935,1011:370:1,110,7,0,0,-0.147739 -103936,1011:370:2,110.5,7,0,0,-0.153563 -103937,1011:371:1,111,7,0,0,-0.152378 -103938,1011:371:2,111.5,7,0,0,-0.16386 -103939,1011:372:1,112,7,0,0,-0.170226 -103940,1011:372:2,112.5,7,0,0,-0.169477 -103941,1011:373:1,113,7,0,0,-0.163972 -103942,1011:373:2,113.5,7,0,0,-0.157634 -103943,1011:374:1,114,7,0,0,-0.157484 -103944,1011:374:2,114.5,7,0,0,-0.159781 -103945,1011:475:1,115,7,0,0,-0.171287 -103946,1011:475:2,115.5,7,0,0,-0.179677 -103947,1011:476:1,116,7,0,0,-0.181816 -103948,1011:476:2,116.5,7,0,0,-0.179178 -103949,1011:477:1,117,7,0,0,-0.177099 -103950,1011:477:2,117.5,7,0,0,-0.180604 -103951,1011:478:1,118,7,0,0,-0.186705 -103952,1011:478:2,118.5,7,0,0,-0.193002 -103953,1011:479:1,119,7,0,0,-0.202943 -103954,1011:479:2,119.5,7,0,0,-0.199812 -103955,1012:370:1,120,7,0,0,-0.18894 -103956,1012:370:2,120.5,7,0,0,-0.188201 -103957,1012:373:2,123.5,7,0,0,-0.165102 -103958,1012:374:1,124,7,0,0,-0.172904 -103959,1012:374:2,124.5,7,0,0,-0.18063 -103960,1012:475:1,125,7,0,0,-0.185119 -103961,1012:475:2,125.5,7,0,0,-0.185845 -103962,1012:476:1,126,7,0,0,-0.186731 -103963,1012:476:2,126.5,7,0,0,-0.187595 -103964,1012:477:1,127,7,0,0,-0.188676 -103965,1012:477:2,127.5,7,0,0,-0.18987 -103966,1012:478:1,128,7,0,0,-0.191208 -103967,1012:478:2,128.5,7,0,0,-0.192719 -103968,1012:479:1,129,7,0,0,-0.195047 -103969,1012:479:2,129.5,7,0,0,-0.197692 -103970,1013:370:1,130,7,0,0,-0.204063 -103971,1013:370:2,130.5,7,0,0,-0.217944 -103972,1013:371:1,131,7,0,0,-0.237013 -103973,1013:371:2,131.5,7,0,0,-0.255977 -103974,1013:372:1,132,7,0,0,-0.271621 -103975,1013:372:2,132.5,7,0,0,-0.282109 -103976,1013:373:1,133,7,0,0,-0.283903 -103977,1013:373:2,133.5,7,0,0,-0.282109 -103978,1013:374:1,134,7,0,0,-0.268659 -103979,1013:374:2,134.5,7,0,0,-0.262026 -103980,1013:475:1,135,7,0,0,-0.263251 -103981,1013:475:2,135.5,7,0,0,-0.260795 -103982,1013:476:1,136,7,0,0,-0.249331 -103983,1013:476:2,136.5,7,0,0,-0.238835 -103984,1013:477:1,137,7,0,0,-0.235571 -103985,1013:477:2,137.5,7,0,0,-0.235922 -103986,1013:478:1,138,7,0,0,-0.237013 -103987,1013:478:2,138.5,7,0,0,-0.236285 -103988,1013:479:1,139,7,0,0,-0.238467 -103989,1013:479:2,139.5,7,0,0,-0.241406 -103990,1014:370:1,140,7,0,0,-0.242891 -103991,1014:370:2,140.5,7,0,0,-0.24401 -103992,1014:371:1,141,7,0,0,-0.242516 -103993,1014:371:2,141.5,7,0,0,-0.241033 -103994,1014:372:1,142,7,0,0,-0.241406 -103995,1014:372:2,142.5,7,0,0,-0.243644 -103996,1014:373:1,143,7,0,0,-0.24703 -103997,1014:373:2,143.5,7,0,0,-0.250485 -103998,1014:374:1,144,7,0,0,-0.253615 -103999,1014:374:2,144.5,7,0,0,-0.253615 -104000,1014:475:1,145,7,0,0,-0.249719 -104001,1014:475:2,145.5,7,0,0,-0.252825 -104002,1014:476:1,146,7,0,0,-0.254395 -104003,1014:476:2,146.5,7,0,0,-0.255977 -104004,1014:477:1,147,7,0,0,-0.255977 -104005,1014:477:2,147.5,7,0,0,-0.25322 -104006,1014:478:1,148,7,0,0,-0.248944 -104007,1014:478:2,148.5,7,0,0,-0.24401 -104008,1014:479:1,149,7,0,0,-0.240301 -104009,1014:479:2,149.5,7,0,0,-0.237379 -104010,1015:370:1,150,7,0,0,-0.235209 -104011,1015:370:2,150.5,7,0,0,-0.233063 -104012,1015:371:1,151,7,0,0,-0.23095 -104013,1015:371:2,151.5,7,0,0,-0.227814 -104014,1015:372:1,152,7,0,0,-0.223425 -104015,1015:372:2,152.5,7,0,0,-0.218575 -104016,1015:373:1,153,7,0,0,-0.212892 -104017,1015:373:2,153.5,7,0,0,-0.207397 -104018,1015:374:1,154,7,0,0,-0.203498 -104019,1015:374:2,154.5,7,0,0,-0.199812 -104020,1015:475:1,155,7,0,0,-0.198449 -104021,1015:475:2,155.5,7,0,0,-0.197602 -104022,1015:476:1,156,7,0,0,-0.19654 -104023,1015:476:2,156.5,7,0,0,-0.195353 -104024,1015:477:1,157,7,0,0,-0.194087 -104025,1015:477:2,157.5,7,0,0,-0.192828 -104026,1015:478:1,158,7,0,0,-0.192177 -104027,1015:478:2,158.5,7,0,0,-0.191638 -104028,1015:479:1,159,7,0,0,-0.191127 -104029,1015:479:2,159.5,7,0,0,-0.190511 -104030,1016:370:1,160,7,0,0,-0.189977 -104031,1016:370:2,160.5,7,0,0,-0.189524 -104032,1016:371:1,161,7,0,0,-0.189206 -104033,1016:371:2,161.5,7,0,0,-0.188915 -104034,1016:372:1,162,7,0,0,-0.188544 -104035,1016:372:2,162.5,7,0,0,-0.18799 -104036,1016:373:1,163,7,0,0,-0.187202 -104037,1016:373:2,163.5,7,0,0,-0.186261 -104038,1016:374:1,164,7,0,0,-0.185171 -104039,1016:374:2,164.5,7,0,0,-0.184062 -104040,1016:475:1,165,7,0,0,-0.182935 -104041,1016:475:2,165.5,7,0,0,-0.181892 -104042,1016:476:1,166,7,0,0,-0.181133 -104043,1016:476:2,166.5,7,0,0,-0.18063 -104044,1016:477:1,167,7,0,0,-0.180203 -104045,1016:477:2,167.5,7,0,0,-0.179752 -104046,1016:478:1,168,7,0,0,-0.179103 -104047,1016:478:2,168.5,7,0,0,-0.178333 -104048,1016:479:1,169,7,0,0,-0.177616 -104049,1016:479:2,169.5,7,0,0,-0.176903 -104050,1017:370:1,170,7,0,0,-0.176168 -104051,1017:370:2,170.5,7,0,0,-0.175461 -104052,1017:371:1,171,7,0,0,-0.17483 -104053,1017:371:2,171.5,7,0,0,-0.174612 -104054,1017:372:1,172,7,0,0,-0.174709 -104055,1017:372:2,172.5,7,0,0,-0.174975 -104056,1017:373:1,173,7,0,0,-0.175266 -104057,1017:373:2,173.5,7,0,0,-0.175559 -104058,1017:374:1,174,7,0,0,-0.175729 -104059,1017:374:2,174.5,7,0,0,-0.175851 -104060,1017:475:1,175,7,0,0,-0.175729 -104061,1017:475:2,175.5,7,0,0,-0.175534 -104062,1017:476:1,176,7,0,0,-0.175363 -104063,1017:476:2,176.5,7,0,0,-0.175097 -104064,1017:477:1,177,7,0,0,-0.174685 -104065,1017:477:2,177.5,7,0,0,-0.174346 -104066,1017:478:1,178,7,0,0,-0.174105 -104067,1017:478:2,178.5,7,0,0,-0.17384 -104068,1017:479:1,179,7,0,0,-0.173456 -104069,1017:479:2,179.5,7,0,0,-0.172785 -104070,1018:370:1,180,7,0,0,-0.171928 -104071,7018:370:3,-180,7.5,0,0,-0.167526 -104072,7017:479:4,-179.5,7.5,0,0,-0.166423 -104073,7017:479:3,-179,7.5,0,0,-0.165465 -104074,7017:478:4,-178.5,7.5,0,0,-0.164468 -104075,7017:478:3,-178,7.5,0,0,-0.163366 -104076,7017:477:4,-177.5,7.5,0,0,-0.162383 -104077,7017:477:3,-177,7.5,0,0,-0.161983 -104078,7017:476:4,-176.5,7.5,0,0,-0.162338 -104079,7017:476:3,-176,7.5,0,0,-0.162985 -104080,7017:475:4,-175.5,7.5,0,0,-0.163523 -104081,7017:475:3,-175,7.5,0,0,-0.163792 -104082,7017:374:4,-174.5,7.5,0,0,-0.163568 -104083,7017:374:3,-174,7.5,0,0,-0.162851 -104084,7017:373:4,-173.5,7.5,0,0,-0.161938 -104085,7017:373:3,-173,7.5,0,0,-0.161407 -104086,7017:372:4,-172.5,7.5,0,0,-0.16154 -104087,7017:372:3,-172,7.5,0,0,-0.162205 -104088,7017:371:4,-171.5,7.5,0,0,-0.163231 -104089,7017:371:3,-171,7.5,0,0,-0.164197 -104090,7017:370:4,-170.5,7.5,0,0,-0.164807 -104091,7017:370:3,-170,7.5,0,0,-0.1644 -104092,7016:479:4,-169.5,7.5,0,0,-0.163456 -104093,7016:479:3,-169,7.5,0,0,-0.16294 -104094,7016:478:4,-168.5,7.5,0,0,-0.162516 -104095,7016:478:3,-168,7.5,0,0,-0.16245 -104096,7016:477:4,-167.5,7.5,0,0,-0.162406 -104097,7016:477:3,-167,7.5,0,0,-0.162695 -104098,7016:476:4,-166.5,7.5,0,0,-0.163007 -104099,7016:476:3,-166,7.5,0,0,-0.162806 -104100,7016:475:4,-165.5,7.5,0,0,-0.162249 -104101,7016:475:3,-165,7.5,0,0,-0.161562 -104102,7016:374:4,-164.5,7.5,0,0,-0.161186 -104103,7016:374:3,-164,7.5,0,0,-0.161098 -104104,7016:373:4,-163.5,7.5,0,0,-0.16112 -104105,7016:373:3,-163,7.5,0,0,-0.160745 -104106,7016:372:4,-162.5,7.5,0,0,-0.159606 -104107,7016:372:3,-162,7.5,0,0,-0.158022 -104108,7016:371:4,-161.5,7.5,0,0,-0.15669 -104109,7016:371:3,-161,7.5,0,0,-0.156349 -104110,7016:370:4,-160.5,7.5,0,0,-0.157204 -104111,7016:370:3,-160,7.5,0,0,-0.158152 -104113,7015:479:3,-159,7.5,0,0,-0.157011 -104114,7015:478:4,-158.5,7.5,0,0,-0.155838 -104115,7015:478:3,-158,7.5,0,0,-0.155203 -104116,7015:477:4,-157.5,7.5,0,0,-0.154633 -104117,7015:477:3,-157,7.5,0,0,-0.153793 -104118,7015:476:4,-156.5,7.5,0,0,-0.152772 -104119,7015:476:3,-156,7.5,0,0,-0.151902 -104120,7015:475:4,-155.5,7.5,0,0,-0.151387 -104121,7015:475:3,-155,7.5,0,0,-0.150854 -104122,7015:374:4,-154.5,7.5,0,0,-0.150404 -104123,7015:374:3,-154,7.5,0,0,-0.150302 -104124,7015:373:4,-153.5,7.5,0,0,-0.150649 -104125,7015:373:3,-153,7.5,0,0,-0.151367 -104126,7015:372:4,-152.5,7.5,0,0,-0.152295 -104127,7015:372:3,-152,7.5,0,0,-0.152564 -104128,7015:371:4,-151.5,7.5,0,0,-0.152006 -104129,7015:371:3,-151,7.5,0,0,-0.15147 -104130,7015:370:4,-150.5,7.5,0,0,-0.151326 -104131,7015:370:3,-150,7.5,0,0,-0.151923 -104132,7014:479:4,-149.5,7.5,0,0,-0.152585 -104133,7014:479:3,-149,7.5,0,0,-0.152212 -104134,7014:478:4,-148.5,7.5,0,0,-0.150649 -104135,7014:478:3,-148,7.5,0,0,-0.148179 -104136,7014:477:4,-147.5,7.5,0,0,-0.146445 -104137,7014:477:3,-147,7.5,0,0,-0.147359 -104138,7014:476:4,-146.5,7.5,0,0,-0.149267 -104139,7014:476:3,-146,7.5,0,0,-0.150241 -104140,7014:475:4,-145.5,7.5,0,0,-0.150079 -104141,7014:475:3,-145,7.5,0,0,-0.148661 -104142,7014:374:4,-144.5,7.5,0,0,-0.146425 -104143,7014:374:3,-144,7.5,0,0,-0.1454 -104144,7014:373:4,-143.5,7.5,0,0,-0.145853 -104145,7014:373:3,-143,7.5,0,0,-0.146089 -104146,7014:372:4,-142.5,7.5,0,0,-0.146069 -104147,7014:372:3,-142,7.5,0,0,-0.145754 -104148,7014:371:4,-141.5,7.5,0,0,-0.145361 -104149,7014:371:3,-141,7.5,0,0,-0.145106 -104150,7014:370:4,-140.5,7.5,0,0,-0.144266 -104151,7014:370:3,-140,7.5,0,0,-0.141913 -104152,7013:479:4,-139.5,7.5,0,0,-0.139003 -104153,7013:479:3,-139,7.5,0,0,-0.137371 -104154,7013:478:4,-138.5,7.5,0,0,-0.137154 -104155,7013:478:3,-138,7.5,0,0,-0.138058 -104156,7013:477:4,-137.5,7.5,0,0,-0.139491 -104157,7013:477:3,-137,7.5,0,0,-0.140488 -104158,7013:476:4,-136.5,7.5,0,0,-0.139941 -104159,7013:476:3,-136,7.5,0,0,-0.139122 -104160,7013:475:4,-135.5,7.5,0,0,-0.138277 -104161,7013:475:3,-135,7.5,0,0,-0.137689 -104162,7013:374:4,-134.5,7.5,0,0,-0.13727 -104163,7013:374:3,-134,7.5,0,0,-0.137137 -104164,7013:373:4,-133.5,7.5,0,0,-0.13722 -104165,7013:373:3,-133,7.5,0,0,-0.137387 -104166,7013:372:4,-132.5,7.5,0,0,-0.137655 -104167,7013:372:3,-132,7.5,0,0,-0.138092 -104168,7013:371:4,-131.5,7.5,0,0,-0.138412 -104169,7013:371:3,-131,7.5,0,0,-0.138226 -104170,7013:370:4,-130.5,7.5,0,0,-0.138025 -104171,7013:370:3,-130,7.5,0,0,-0.138935 -104172,7012:479:4,-129.5,7.5,0,0,-0.140772 -104173,7012:479:3,-129,7.5,0,0,-0.142834 -104174,7012:478:4,-128.5,7.5,0,0,-0.144208 -104175,7012:478:3,-128,7.5,0,0,-0.144617 -104176,7012:477:4,-127.5,7.5,0,0,-0.144832 -104177,7012:477:3,-127,7.5,0,0,-0.145479 -104178,7012:476:4,-126.5,7.5,0,0,-0.14702 -104179,7012:476:3,-126,7.5,0,0,-0.148682 -104180,7012:475:4,-125.5,7.5,0,0,-0.149956 -104181,7012:475:3,-125,7.5,0,0,-0.150629 -104182,7012:374:4,-124.5,7.5,0,0,-0.150446 -104183,7012:374:3,-124,7.5,0,0,-0.149611 -104184,7012:373:4,-123.5,7.5,0,0,-0.148883 -104185,7012:373:3,-123,7.5,0,0,-0.14844 -104186,7012:372:4,-122.5,7.5,0,0,-0.147979 -104187,7012:372:3,-122,7.5,0,0,-0.148099 -104188,7012:371:4,-121.5,7.5,0,0,-0.149469 -104189,7012:371:3,-121,7.5,0,0,-0.15149 -104190,7012:370:4,-120.5,7.5,0,0,-0.154233 -104191,7012:370:3,-120,7.5,0,0,-0.158433 -104192,7011:479:4,-119.5,7.5,0,0,-0.162918 -104193,7011:479:3,-119,7.5,0,0,-0.164785 -104194,7011:478:4,-118.5,7.5,0,0,-0.164558 -104195,7011:478:3,-118,7.5,0,0,-0.16413 -104196,7011:477:4,-117.5,7.5,0,0,-0.164153 -104197,7011:477:3,-117,7.5,0,0,-0.163815 -104198,7011:476:4,-116.5,7.5,0,0,-0.164062 -104199,7011:476:3,-116,7.5,0,0,-0.164852 -104200,7011:475:4,-115.5,7.5,0,0,-0.16542 -104201,7011:475:3,-115,7.5,0,0,-0.165579 -104202,7011:374:4,-114.5,7.5,0,0,-0.164988 -104203,7011:374:3,-114,7.5,0,0,-0.164107 -104204,7011:373:4,-113.5,7.5,0,0,-0.163568 -104205,7011:373:3,-113,7.5,0,0,-0.164107 -104206,7011:372:4,-112.5,7.5,0,0,-0.165852 -104207,7011:372:3,-112,7.5,0,0,-0.167688 -104208,7011:371:4,-111.5,7.5,0,0,-0.169945 -104209,7011:371:3,-111,7.5,0,0,-0.173168 -104210,7011:370:4,-110.5,7.5,0,0,-0.177419 -104211,7011:370:3,-110,7.5,0,0,-0.181892 -104212,7010:479:4,-109.5,7.5,0,0,-0.186027 -104213,7010:479:3,-109,7.5,0,0,-0.18987 -104214,7010:478:4,-108.5,7.5,0,0,-0.193652 -104215,7010:478:3,-108,7.5,0,0,-0.198856 -104216,7010:477:4,-107.5,7.5,0,0,-0.216043 -104217,7010:477:3,-107,7.5,0,0,-0.241033 -104218,7010:476:4,-106.5,7.5,0,0,-0.259177 -104219,7010:476:3,-106,7.5,0,0,-0.268235 -104220,7010:475:4,-105.5,7.5,0,0,-0.279438 -104221,7010:475:3,-105,7.5,0,0,-0.296391 -104222,7010:374:4,-104.5,7.5,0,0,-0.329338 -104223,7010:374:3,-104,7.5,0,0,-0.40387 -104224,7010:373:4,-103.5,7.5,0,0,-0.491574 -104225,7010:373:3,-103,7.5,0,0,-0.590007 -104226,7010:372:4,-102.5,7.5,0,0,-0.671127 -104227,7010:372:3,-102,7.5,0,0,-0.588842 -104228,7010:371:4,-101.5,7.5,0,0,-0.366361 -104229,7010:371:3,-101,7.5,0,0,-0.199516 -104230,7010:370:4,-100.5,7.5,0,0,-0.190217 -104231,7010:370:3,-100,7.5,0,0,-0.191719 -104232,7009:479:4,-99.5,7.5,0,0,-0.202205 -104233,7009:479:3,-99,7.5,0,0,-0.267403 -104234,7009:478:4,-98.5,7.5,0,0,-0.370084 -104235,7009:478:3,-98,7.5,0,0,-0.348387 -104236,7009:477:4,-97.5,7.5,0,0,-0.203129 -104237,7009:477:3,-97,7.5,0,0,-0.187385 -104238,7009:476:4,-96.5,7.5,0,0,-0.184576 -104239,7009:476:3,-96,7.5,0,0,-0.185404 -104240,7009:475:4,-95.5,7.5,0,0,-0.191504 -104241,7009:475:3,-95,7.5,0,0,-0.211805 -104242,7009:374:4,-94.5,7.5,0,0,-0.253999 -104243,7009:374:3,-94,7.5,0,0,-0.276812 -104244,7009:373:4,-93.5,7.5,0,0,-0.327168 -104245,7009:373:3,-93,7.5,0,0,-0.453758 -104246,7009:372:4,-92.5,7.5,0,0,-0.504485 -104247,7008:373:3,-83,7.5,0,0,-0.176707 -104248,7008:372:4,-82.5,7.5,0,0,-0.176805 -104249,7008:372:3,-82,7.5,0,0,-0.184705 -104250,7008:371:4,-81.5,7.5,0,0,-0.190752 -104251,7008:371:3,-81,7.5,0,0,-0.19509 -104252,7008:370:4,-80.5,7.5,0,0,-0.200632 -104253,7008:370:3,-80,7.5,0,0,-0.206968 -104254,7007:479:4,-79.5,7.5,0,0,-0.208154 -104255,7007:479:3,-79,7.5,0,0,-0.20149 -104256,7007:478:4,-78.5,7.5,0,0,-0.196894 -104257,7007:478:3,-78,7.5,0,0,-0.194654 -104258,7007:477:4,-77.5,7.5,0,0,-0.196717 -104259,7007:477:3,-77,7.5,0,0,-0.2003 -104260,7007:476:4,-76.5,7.5,0,0,-0.211259 -104261,7007:476:3,-76,7.5,0,0,-0.219541 -104262,7007:475:4,-75.5,7.5,0,0,-0.221142 -104263,7007:475:3,-75,7.5,0,0,-0.216678 -104264,7007:374:4,-74.5,7.5,0,0,-0.213434 -104265,7007:374:3,-74,7.5,0,0,-0.205022 -104266,7007:373:4,-73.5,7.5,0,0,-0.197958 -104267,7007:373:3,-73,7.5,0,0,-0.195484 -104268,7007:372:4,-72.5,7.5,0,0,-0.19387 -104269,7007:372:3,-72,7.5,0,0,-0.192637 -104270,7007:371:4,-71.5,7.5,0,0,-0.191799 -104271,7007:371:3,-71,7.5,0,0,-0.191504 -104272,7007:370:4,-70.5,7.5,0,0,-0.191208 -104273,7007:370:3,-70,7.5,0,0,-0.190967 -104274,7006:479:4,-69.5,7.5,0,0,-0.190832 -104275,7006:479:3,-69,7.5,0,0,-0.191449 -104276,7006:478:4,-68.5,7.5,0,0,-0.192611 -104277,7006:478:3,-68,7.5,0,0,-0.194173 -104278,7006:477:4,-67.5,7.5,0,0,-0.19632 -104279,7006:477:3,-67,7.5,0,0,-0.196188 -104280,7006:476:4,-66.5,7.5,0,0,-0.195309 -104281,7006:476:3,-66,7.5,0,0,-0.194305 -104282,7006:475:4,-65.5,7.5,0,0,-0.19374 -104283,7006:475:3,-65,7.5,0,0,-0.19387 -104284,7006:374:4,-64.5,7.5,0,0,-0.19309 -104285,7006:374:3,-64,7.5,0,0,-0.192448 -104286,7006:373:4,-63.5,7.5,0,0,-0.191799 -104287,7006:373:3,-63,7.5,0,0,-0.190805 -104288,7006:372:4,-62.5,7.5,0,0,-0.189551 -104289,7006:372:3,-62,7.5,0,0,-0.188544 -104290,7006:371:4,-61.5,7.5,0,0,-0.186914 -104291,7006:370:4,-60.5,7.5,0,0,-0.183728 -104292,7006:370:3,-60,7.5,0,0,-0.184757 -104293,7005:479:4,-59.5,7.5,0,0,-0.183215 -104294,7005:479:3,-59,7.5,0,0,-0.181487 -104295,7005:478:4,-58.5,7.5,0,0,-0.181209 -104296,7005:478:3,-58,7.5,0,0,-0.180655 -104297,7005:477:4,-57.5,7.5,0,0,-0.179128 -104298,7005:477:3,-57,7.5,0,0,-0.177567 -104299,7005:476:4,-56.5,7.5,0,0,-0.176046 -104300,7005:476:3,-56,7.5,0,0,-0.174951 -104301,7005:475:4,-55.5,7.5,0,0,-0.174903 -104302,7005:475:3,-55,7.5,0,0,-0.174854 -104303,7005:374:4,-54.5,7.5,0,0,-0.17425 -104304,7005:374:3,-54,7.5,0,0,-0.174298 -104305,7005:373:4,-53.5,7.5,0,0,-0.174516 -104306,7005:373:3,-53,7.5,0,0,-0.173792 -104307,7005:372:4,-52.5,7.5,0,0,-0.171547 -104308,7005:372:3,-52,7.5,0,0,-0.16873 -104309,7005:371:4,-51.5,7.5,0,0,-0.166332 -104310,7005:371:3,-51,7.5,0,0,-0.165193 -104311,7005:370:4,-50.5,7.5,0,0,-0.164491 -104312,7005:370:3,-50,7.5,0,0,-0.16303 -104313,7004:479:4,-49.5,7.5,0,0,-0.161054 -104314,7004:479:3,-49,7.5,0,0,-0.159671 -104315,7004:478:4,-48.5,7.5,0,0,-0.158975 -104316,7004:478:3,-48,7.5,0,0,-0.158108 -104317,7004:477:4,-47.5,7.5,0,0,-0.156392 -104318,7004:477:3,-47,7.5,0,0,-0.154844 -104319,7004:476:4,-46.5,7.5,0,0,-0.154612 -104320,7004:476:3,-46,7.5,0,0,-0.154213 -104321,7004:475:4,-45.5,7.5,0,0,-0.153417 -104322,7004:475:3,-45,7.5,0,0,-0.152813 -104323,7004:374:4,-44.5,7.5,0,0,-0.152171 -104324,7004:374:3,-44,7.5,0,0,-0.150018 -104325,7004:373:4,-43.5,7.5,0,0,-0.148119 -104326,7004:373:3,-43,7.5,0,0,-0.147439 -104327,7004:372:4,-42.5,7.5,0,0,-0.148079 -104328,7004:372:3,-42,7.5,0,0,-0.14955 -104329,7004:371:4,-41.5,7.5,0,0,-0.15067 -104330,7004:371:3,-41,7.5,0,0,-0.149814 -104331,7004:370:4,-40.5,7.5,0,0,-0.147598 -104332,7004:370:3,-40,7.5,0,0,-0.14722 -104333,7003:479:4,-39.5,7.5,0,0,-0.147399 -104334,7003:479:3,-39,7.5,0,0,-0.146089 -104335,7003:478:4,-38.5,7.5,0,0,-0.144014 -104336,7003:478:3,-38,7.5,0,0,-0.142641 -104337,7003:477:4,-37.5,7.5,0,0,-0.141665 -104338,7003:477:3,-37,7.5,0,0,-0.141056 -104339,7003:476:4,-36.5,7.5,0,0,-0.140224 -104340,7003:476:3,-36,7.5,0,0,-0.138412 -104341,7003:475:4,-35.5,7.5,0,0,-0.13682 -104342,7003:475:3,-35,7.5,0,0,-0.136211 -104343,7003:374:4,-34.5,7.5,0,0,-0.136131 -104344,7003:374:3,-34,7.5,0,0,-0.13605 -104345,7003:373:4,-33.5,7.5,0,0,-0.13605 -104346,7003:373:3,-33,7.5,0,0,-0.13605 -104347,7003:372:4,-32.5,7.5,0,0,-0.13605 -104348,7003:372:3,-32,7.5,0,0,-0.13605 -104349,7003:371:4,-31.5,7.5,0,0,-0.13605 -104350,7003:371:3,-31,7.5,0,0,-0.13605 -104351,7003:370:4,-30.5,7.5,0,0,-0.136069 -104352,7003:370:3,-30,7.5,0,0,-0.136161 -104353,7002:479:4,-29.5,7.5,0,0,-0.136156 -104354,7002:479:3,-29,7.5,0,0,-0.13605 -104355,7002:478:4,-28.5,7.5,0,0,-0.13605 -104356,7002:478:3,-28,7.5,0,0,-0.13605 -104357,7002:477:4,-27.5,7.5,0,0,-0.13605 -104358,7002:477:3,-27,7.5,0,0,-0.13605 -104359,7002:476:4,-26.5,7.5,0,0,-0.136056 -104360,7002:476:3,-26,7.5,0,0,-0.137003 -104361,7002:475:4,-25.5,7.5,0,0,-0.138631 -104362,7002:475:3,-25,7.5,0,0,-0.13858 -104363,7002:374:4,-24.5,7.5,0,0,-0.136589 -104364,7002:374:3,-24,7.5,0,0,-0.137404 -104365,7002:373:4,-23.5,7.5,0,0,-0.137154 -104366,7002:373:3,-23,7.5,0,0,-0.139434 -104367,7002:372:4,-22.5,7.5,0,0,-0.139979 -104368,7002:372:3,-22,7.5,0,0,-0.13897 -104369,7002:371:4,-21.5,7.5,0,0,-0.138226 -104370,7002:371:3,-21,7.5,0,0,-0.140318 -104371,7002:370:4,-20.5,7.5,0,0,-0.145028 -104372,7002:370:3,-20,7.5,0,0,-0.148984 -104373,7001:479:4,-19.5,7.5,0,0,-0.151182 -104374,7001:479:3,-19,7.5,0,0,-0.152543 -104375,7001:478:4,-18.5,7.5,0,0,-0.154087 -104376,7001:478:3,-18,7.5,0,0,-0.148722 -104377,1004:370:4,40.5,7.5,0,0,-0.175656 -104378,1004:371:3,41,7.5,0,0,-0.167688 -104379,1004:371:4,41.5,7.5,0,0,-0.178086 -104380,1004:372:3,42,7.5,0,0,-0.176609 -104381,1004:372:4,42.5,7.5,0,0,-0.17245 -104382,1005:370:3,50,7.5,0,0,-0.157354 -104383,1005:370:4,50.5,7.5,0,0,-0.155753 -104384,1005:371:3,51,7.5,0,0,-0.155139 -104385,1005:371:4,51.5,7.5,0,0,-0.153835 -104386,1005:372:3,52,7.5,0,0,-0.153877 -104387,1005:372:4,52.5,7.5,0,0,-0.15457 -104388,1005:373:3,53,7.5,0,0,-0.154696 -104389,1005:373:4,53.5,7.5,0,0,-0.154359 -104390,1005:374:3,54,7.5,0,0,-0.152813 -104391,1005:374:4,54.5,7.5,0,0,-0.151244 -104392,1005:475:3,55,7.5,0,0,-0.150629 -104393,1005:475:4,55.5,7.5,0,0,-0.153521 -104394,1005:476:3,56,7.5,0,0,-0.155054 -104395,1005:476:4,56.5,7.5,0,0,-0.153898 -104396,1005:477:3,57,7.5,0,0,-0.153835 -104397,1005:477:4,57.5,7.5,0,0,-0.153668 -104398,1005:478:3,58,7.5,0,0,-0.154191 -104399,1005:478:4,58.5,7.5,0,0,-0.15552 -104400,1005:479:3,59,7.5,0,0,-0.156669 -104401,1005:479:4,59.5,7.5,0,0,-0.157226 -104402,1006:370:3,60,7.5,0,0,-0.159257 -104403,1006:370:4,60.5,7.5,0,0,-0.159868 -104404,1006:371:3,61,7.5,0,0,-0.16046 -104405,1006:371:4,61.5,7.5,0,0,-0.161562 -104406,1006:372:3,62,7.5,0,0,-0.163905 -104407,1006:372:4,62.5,7.5,0,0,-0.167549 -104408,1006:373:3,63,7.5,0,0,-0.1695 -104409,1006:373:4,63.5,7.5,0,0,-0.170932 -104410,1006:374:3,64,7.5,0,0,-0.174274 -104411,1006:374:4,64.5,7.5,0,0,-0.177493 -104412,1006:475:3,65,7.5,0,0,-0.180152 -104413,1006:475:4,65.5,7.5,0,0,-0.182884 -104414,1006:476:3,66,7.5,0,0,-0.185637 -104415,1006:476:4,66.5,7.5,0,0,-0.188835 -104416,1006:477:3,67,7.5,0,0,-0.192205 -104417,1006:477:4,67.5,7.5,0,0,-0.194696 -104418,1006:478:3,68,7.5,0,0,-0.196452 -104419,1006:478:4,68.5,7.5,0,0,-0.19778 -104420,1006:479:3,69,7.5,0,0,-0.198803 -104421,1006:479:4,69.5,7.5,0,0,-0.205991 -104422,1007:370:3,70,7.5,0,0,-0.231294 -104423,1007:370:4,70.5,7.5,0,0,-0.269509 -104424,1007:371:3,71,7.5,0,0,-0.291686 -104425,1007:371:4,71.5,7.5,0,0,-0.31718 -104426,1007:372:3,72,7.5,0,0,-0.39558 -104427,1007:372:4,72.5,7.5,0,0,-0.467894 -104428,1007:373:4,73.5,7.5,0,0,-0.43628 -104429,1007:374:3,74,7.5,0,0,-0.386839 -104430,1008:370:4,80.5,7.5,0,0,-0.165079 -104431,1008:371:3,81,7.5,0,0,-0.168637 -104432,1008:371:4,81.5,7.5,0,0,-0.169921 -104433,1008:372:3,82,7.5,0,0,-0.174153 -104434,1008:372:4,82.5,7.5,0,0,-0.178432 -104435,1008:373:3,83,7.5,0,0,-0.179827 -104436,1008:373:4,83.5,7.5,0,0,-0.181461 -104437,1008:374:3,84,7.5,0,0,-0.18342 -104438,1008:374:4,84.5,7.5,0,0,-0.185637 -104439,1008:475:3,85,7.5,0,0,-0.18865 -104440,1008:475:4,85.5,7.5,0,0,-0.192016 -104441,1008:476:3,86,7.5,0,0,-0.194087 -104442,1008:476:4,86.5,7.5,0,0,-0.195222 -104443,1008:477:3,87,7.5,0,0,-0.196188 -104444,1008:477:4,87.5,7.5,0,0,-0.195659 -104445,1008:478:3,88,7.5,0,0,-0.194872 -104446,1008:478:4,88.5,7.5,0,0,-0.195484 -104447,1008:479:3,89,7.5,0,0,-0.202023 -104448,1008:479:4,89.5,7.5,0,0,-0.228162 -104449,1009:370:3,90,7.5,0,0,-0.251266 -104450,1009:370:4,90.5,7.5,0,0,-0.259991 -104451,1009:371:3,91,7.5,0,0,-0.269083 -104452,1009:371:4,91.5,7.5,0,0,-0.274637 -104453,1009:372:3,92,7.5,0,0,-0.286168 -104454,1009:372:4,92.5,7.5,0,0,-0.265735 -104455,1009:373:3,93,7.5,0,0,-0.198225 -104456,1009:373:4,93.5,7.5,0,0,-0.191773 -104457,1009:374:3,94,7.5,0,0,-0.192448 -104458,1009:374:4,94.5,7.5,0,0,-0.190031 -104459,1009:475:3,95,7.5,0,0,-0.192232 -104460,1009:475:4,95.5,7.5,0,0,-0.193219 -104461,1009:476:3,96,7.5,0,0,-0.193696 -104462,1009:476:4,96.5,7.5,0,0,-0.194566 -104463,1009:477:3,97,7.5,0,0,-0.196407 -104464,1009:477:4,97.5,7.5,0,0,-0.191074 -104465,1009:478:3,98,7.5,0,0,-0.206573 -104466,1010:479:4,109.5,7.5,0,0,-0.142699 -104467,1011:370:3,110,7.5,0,0,-0.14712 -104468,1011:370:4,110.5,7.5,0,0,-0.153898 -104469,1011:371:3,111,7.5,0,0,-0.152772 -104470,1011:371:4,111.5,7.5,0,0,-0.15478 -104471,1011:372:3,112,7.5,0,0,-0.157526 -104472,1011:372:4,112.5,7.5,0,0,-0.15605 -104473,1011:373:3,113,7.5,0,0,-0.157526 -104474,1011:373:4,113.5,7.5,0,0,-0.157526 -104475,1011:374:3,114,7.5,0,0,-0.158411 -104476,1011:374:4,114.5,7.5,0,0,-0.160635 -104477,1011:475:3,115,7.5,0,0,-0.164988 -104478,1011:475:4,115.5,7.5,0,0,-0.169875 -104479,1011:476:3,116,7.5,0,0,-0.171524 -104480,1011:476:4,116.5,7.5,0,0,-0.170062 -104481,1011:477:3,117,7.5,0,0,-0.173456 -104482,1011:477:4,117.5,7.5,0,0,-0.177222 -104483,1011:478:3,118,7.5,0,0,-0.185145 -104484,1011:478:4,118.5,7.5,0,0,-0.192124 -104485,1011:479:3,119,7.5,0,0,-0.202389 -104486,1011:479:4,119.5,7.5,0,0,-0.200139 -104487,1012:370:3,120,7.5,0,0,-0.182859 -104488,1012:372:3,122,7.5,0,0,-0.17072 -104489,1012:372:4,122.5,7.5,0,0,-0.167158 -104490,1012:373:3,123,7.5,0,0,-0.180103 -104491,1012:373:4,123.5,7.5,0,0,-0.183676 -104492,1012:374:3,124,7.5,0,0,-0.184653 -104493,1012:374:4,124.5,7.5,0,0,-0.183574 -104494,1012:475:3,125,7.5,0,0,-0.18212 -104495,1012:475:4,125.5,7.5,0,0,-0.1824 -104496,1012:476:3,126,7.5,0,0,-0.183215 -104497,1012:476:4,126.5,7.5,0,0,-0.184062 -104498,1012:477:3,127,7.5,0,0,-0.184989 -104499,1012:477:4,127.5,7.5,0,0,-0.185974 -104500,1012:478:3,128,7.5,0,0,-0.187018 -104501,1012:478:4,128.5,7.5,0,0,-0.188016 -104502,1012:479:3,129,7.5,0,0,-0.189073 -104503,1012:479:4,129.5,7.5,0,0,-0.190297 -104504,1013:370:3,130,7.5,0,0,-0.191854 -104505,1013:370:4,130.5,7.5,0,0,-0.194522 -104506,1013:371:3,131,7.5,0,0,-0.198047 -104507,1013:371:4,131.5,7.5,0,0,-0.208658 -104508,1013:372:3,132,7.5,0,0,-0.225747 -104509,1013:372:4,132.5,7.5,0,0,-0.229551 -104510,1013:373:3,133,7.5,0,0,-0.217944 -104511,1013:373:4,133.5,7.5,0,0,-0.205022 -104512,1013:374:3,134,7.5,0,0,-0.198594 -104513,1013:374:4,134.5,7.5,0,0,-0.197692 -104514,1013:475:3,135,7.5,0,0,-0.19827 -104515,1013:475:4,135.5,7.5,0,0,-0.200964 -104516,1013:476:3,136,7.5,0,0,-0.202943 -104517,1013:476:4,136.5,7.5,0,0,-0.204063 -104518,1013:477:3,137,7.5,0,0,-0.205022 -104519,1013:477:4,137.5,7.5,0,0,-0.206187 -104520,1013:478:3,138,7.5,0,0,-0.208658 -104521,1013:478:4,138.5,7.5,0,0,-0.210452 -104522,1013:479:3,139,7.5,0,0,-0.211532 -104523,1013:479:4,139.5,7.5,0,0,-0.21207 -104524,1014:370:3,140,7.5,0,0,-0.212617 -104525,1014:370:4,140.5,7.5,0,0,-0.213434 -104526,1014:371:3,141,7.5,0,0,-0.213986 -104527,1014:371:4,141.5,7.5,0,0,-0.213986 -104528,1014:372:3,142,7.5,0,0,-0.215105 -104529,1014:372:4,142.5,7.5,0,0,-0.217944 -104530,1014:373:3,143,7.5,0,0,-0.220502 -104531,1014:373:4,143.5,7.5,0,0,-0.224076 -104532,1014:374:3,144,7.5,0,0,-0.227119 -104533,1014:374:4,144.5,7.5,0,0,-0.229551 -104534,1014:475:3,145,7.5,0,0,-0.227466 -104535,1014:475:4,145.5,7.5,0,0,-0.215727 -104536,1014:476:3,146,7.5,0,0,-0.203311 -104537,1014:476:4,146.5,7.5,0,0,-0.216678 -104538,1014:477:3,147,7.5,0,0,-0.217944 -104539,1014:477:4,147.5,7.5,0,0,-0.217305 -104540,1014:478:3,148,7.5,0,0,-0.216678 -104541,1014:478:4,148.5,7.5,0,0,-0.21542 -104542,1014:479:3,149,7.5,0,0,-0.214531 -104543,1014:479:4,149.5,7.5,0,0,-0.21542 -104544,1015:370:3,150,7.5,0,0,-0.215105 -104545,1015:370:4,150.5,7.5,0,0,-0.213986 -104546,1015:371:3,151,7.5,0,0,-0.21207 -104547,1015:371:4,151.5,7.5,0,0,-0.209171 -104548,1015:372:3,152,7.5,0,0,-0.205796 -104549,1015:372:4,152.5,7.5,0,0,-0.202756 -104550,1015:373:3,153,7.5,0,0,-0.200466 -104551,1015:373:4,153.5,7.5,0,0,-0.198909 -104552,1015:374:3,154,7.5,0,0,-0.197869 -104553,1015:374:4,154.5,7.5,0,0,-0.196894 -104554,1015:475:3,155,7.5,0,0,-0.195968 -104555,1015:475:4,155.5,7.5,0,0,-0.194872 -104556,1015:476:3,156,7.5,0,0,-0.193826 -104557,1015:476:4,156.5,7.5,0,0,-0.192692 -104558,1015:477:3,157,7.5,0,0,-0.191881 -104559,1015:477:4,157.5,7.5,0,0,-0.191154 -104560,1015:478:3,158,7.5,0,0,-0.190511 -104561,1015:478:4,158.5,7.5,0,0,-0.190004 -104562,1015:479:3,159,7.5,0,0,-0.189498 -104563,1015:479:4,159.5,7.5,0,0,-0.188967 -104564,1016:370:3,160,7.5,0,0,-0.188491 -104565,1016:370:4,160.5,7.5,0,0,-0.188016 -104566,1016:371:3,161,7.5,0,0,-0.187569 -104567,1016:371:4,161.5,7.5,0,0,-0.187176 -104568,1016:372:3,162,7.5,0,0,-0.186757 -104569,1016:372:4,162.5,7.5,0,0,-0.186287 -104570,1016:373:3,163,7.5,0,0,-0.185766 -104571,1016:373:4,163.5,7.5,0,0,-0.184989 -104572,1016:374:3,164,7.5,0,0,-0.184062 -104573,1016:374:4,164.5,7.5,0,0,-0.183037 -104574,1016:475:3,165,7.5,0,0,-0.181917 -104575,1016:475:4,165.5,7.5,0,0,-0.180831 -104576,1016:476:3,166,7.5,0,0,-0.179902 -104577,1016:476:4,166.5,7.5,0,0,-0.179153 -104578,1016:477:3,167,7.5,0,0,-0.178556 -104579,1016:477:4,167.5,7.5,0,0,-0.177987 -104580,1016:478:3,168,7.5,0,0,-0.177345 -104581,1016:478:4,168.5,7.5,0,0,-0.176535 -104582,1016:479:3,169,7.5,0,0,-0.17568 -104583,1016:479:4,169.5,7.5,0,0,-0.174854 -104584,1017:370:3,170,7.5,0,0,-0.174033 -104585,1017:370:4,170.5,7.5,0,0,-0.173336 -104586,1017:371:3,171,7.5,0,0,-0.172785 -104587,1017:371:4,171.5,7.5,0,0,-0.172403 -104588,1017:372:3,172,7.5,0,0,-0.172213 -104589,1017:372:4,172.5,7.5,0,0,-0.172165 -104590,1017:373:3,173,7.5,0,0,-0.172237 -104591,1017:373:4,173.5,7.5,0,0,-0.172355 -104592,1017:374:3,174,7.5,0,0,-0.172332 -104593,1017:374:4,174.5,7.5,0,0,-0.172141 -104594,1017:475:3,175,7.5,0,0,-0.171833 -104595,1017:475:4,175.5,7.5,0,0,-0.171453 -104596,1017:476:3,176,7.5,0,0,-0.171051 -104597,1017:476:4,176.5,7.5,0,0,-0.170791 -104598,1017:477:3,177,7.5,0,0,-0.17065 -104599,1017:477:4,177.5,7.5,0,0,-0.170532 -104600,1017:478:3,178,7.5,0,0,-0.170438 -104601,1017:478:4,178.5,7.5,0,0,-0.170226 -104602,1017:479:3,179,7.5,0,0,-0.169781 -104603,1017:479:4,179.5,7.5,0,0,-0.168847 -104604,1018:370:3,180,7.5,0,0,-0.167526 -104605,7018:380:1,-180,8,0,0,-0.165829 -104606,7017:489:2,-179.5,8,0,0,-0.165125 -104607,7017:489:1,-179,8,0,0,-0.164378 -104608,7017:488:2,-178.5,8,0,0,-0.163366 -104609,7017:488:1,-178,8,0,0,-0.162072 -104610,7017:487:2,-177.5,8,0,0,-0.160657 -104611,7017:487:1,-177,8,0,0,-0.15941 -104612,7017:486:2,-176.5,8,0,0,-0.158671 -104613,7017:486:1,-176,8,0,0,-0.158584 -104614,7017:485:2,-175.5,8,0,0,-0.158822 -104615,7017:485:1,-175,8,0,0,-0.15904 -104616,7017:384:2,-174.5,8,0,0,-0.159061 -104617,7017:384:1,-174,8,0,0,-0.159148 -104618,7017:383:2,-173.5,8,0,0,-0.159213 -104619,7017:383:1,-173,8,0,0,-0.159301 -104620,7017:382:2,-172.5,8,0,0,-0.159693 -104621,7017:382:1,-172,8,0,0,-0.160416 -104622,7017:381:2,-171.5,8,0,0,-0.161208 -104623,7017:381:1,-171,8,0,0,-0.161761 -104624,7017:380:2,-170.5,8,0,0,-0.161584 -104625,7017:380:1,-170,8,0,0,-0.160525 -104626,7016:489:2,-169.5,8,0,0,-0.158866 -104627,7016:489:1,-169,8,0,0,-0.15744 -104628,7016:488:2,-168.5,8,0,0,-0.156392 -104629,7016:488:1,-168,8,0,0,-0.156264 -104630,7016:487:2,-167.5,8,0,0,-0.15684 -104631,7016:487:1,-167,8,0,0,-0.157677 -104632,7016:486:2,-166.5,8,0,0,-0.159301 -104633,7016:486:1,-166,8,0,0,-0.159934 -104634,7016:485:2,-165.5,8,0,0,-0.159868 -104635,7016:485:1,-165,8,0,0,-0.159671 -104636,7016:384:2,-164.5,8,0,0,-0.159083 -104637,7016:384:1,-164,8,0,0,-0.157828 -104638,7016:383:2,-163.5,8,0,0,-0.156115 -104639,7016:383:1,-163,8,0,0,-0.154254 -104640,7016:382:2,-162.5,8,0,0,-0.152523 -104641,7016:382:1,-162,8,0,0,-0.15108 -104642,7016:381:2,-161.5,8,0,0,-0.150384 -104643,7016:381:1,-161,8,0,0,-0.150977 -104644,7016:380:2,-160.5,8,0,0,-0.152316 -104645,7016:380:1,-160,8,0,0,-0.153563 -104646,7015:489:2,-159.5,8,0,0,-0.154108 -104647,7015:489:1,-159,8,0,0,-0.154003 -104648,7015:488:2,-158.5,8,0,0,-0.153209 -104649,7015:488:1,-158,8,0,0,-0.152626 -104650,7015:487:2,-157.5,8,0,0,-0.151965 -104651,7015:487:1,-157,8,0,0,-0.151121 -104652,7015:486:2,-156.5,8,0,0,-0.15016 -104653,7015:486:1,-156,8,0,0,-0.149186 -104654,7015:485:2,-155.5,8,0,0,-0.148019 -104655,7015:485:1,-155,8,0,0,-0.147439 -104656,7015:384:2,-154.5,8,0,0,-0.147579 -104657,7015:384:1,-154,8,0,0,-0.148139 -104658,7015:383:2,-153.5,8,0,0,-0.148621 -104659,7015:383:1,-153,8,0,0,-0.148923 -104660,7015:382:2,-152.5,8,0,0,-0.149206 -104661,7015:382:1,-152,8,0,0,-0.148923 -104662,7015:381:2,-151.5,8,0,0,-0.148119 -104663,7015:381:1,-151,8,0,0,-0.147359 -104664,7015:380:2,-150.5,8,0,0,-0.146822 -104665,7015:380:1,-150,8,0,0,-0.146326 -104666,7014:489:2,-149.5,8,0,0,-0.145283 -104667,7014:489:1,-149,8,0,0,-0.143955 -104668,7014:488:2,-148.5,8,0,0,-0.143374 -104669,7014:488:1,-148,8,0,0,-0.144208 -104670,7014:487:2,-147.5,8,0,0,-0.145734 -104671,7014:487:1,-147,8,0,0,-0.146129 -104672,7014:486:2,-146.5,8,0,0,-0.145047 -104673,7014:486:1,-146,8,0,0,-0.143858 -104674,7014:485:2,-145.5,8,0,0,-0.143219 -104675,7014:485:1,-145,8,0,0,-0.143451 -104676,7014:384:2,-144.5,8,0,0,-0.144208 -104677,7014:384:1,-144,8,0,0,-0.144754 -104678,7014:383:2,-143.5,8,0,0,-0.144871 -104679,7014:383:1,-143,8,0,0,-0.144442 -104680,7014:382:2,-142.5,8,0,0,-0.143839 -104681,7014:382:1,-142,8,0,0,-0.142911 -104682,7014:381:2,-141.5,8,0,0,-0.141684 -104683,7014:381:1,-141,8,0,0,-0.140224 -104684,7014:380:2,-140.5,8,0,0,-0.138682 -104685,7014:380:1,-140,8,0,0,-0.13682 -104686,7013:489:2,-139.5,8,0,0,-0.136054 -104687,7013:489:1,-139,8,0,0,-0.13605 -104688,7013:488:2,-138.5,8,0,0,-0.13605 -104689,7013:488:1,-138,8,0,0,-0.136188 -104690,7013:487:2,-137.5,8,0,0,-0.13692 -104691,7013:487:1,-137,8,0,0,-0.136537 -104692,7013:486:2,-136.5,8,0,0,-0.136096 -104693,7013:486:1,-136,8,0,0,-0.13605 -104694,7013:485:2,-135.5,8,0,0,-0.13605 -104695,7013:485:1,-135,8,0,0,-0.13605 -104696,7013:384:2,-134.5,8,0,0,-0.13605 -104697,7013:384:1,-134,8,0,0,-0.13605 -104698,7013:383:2,-133.5,8,0,0,-0.13605 -104699,7013:383:1,-133,8,0,0,-0.13605 -104700,7013:382:2,-132.5,8,0,0,-0.13605 -104701,7013:382:1,-132,8,0,0,-0.13605 -104702,7013:381:2,-131.5,8,0,0,-0.13605 -104703,7013:381:1,-131,8,0,0,-0.13605 -104704,7013:380:2,-130.5,8,0,0,-0.13605 -104705,7013:380:1,-130,8,0,0,-0.13605 -104706,7012:489:2,-129.5,8,0,0,-0.13605 -104707,7012:489:1,-129,8,0,0,-0.13605 -104708,7012:488:2,-128.5,8,0,0,-0.13605 -104709,7012:488:1,-128,8,0,0,-0.13605 -104710,7012:487:2,-127.5,8,0,0,-0.13605 -104711,7012:487:1,-127,8,0,0,-0.13605 -104712,7012:486:2,-126.5,8,0,0,-0.136602 -104713,7012:486:1,-126,8,0,0,-0.137705 -104714,7012:485:2,-125.5,8,0,0,-0.138008 -104715,7012:485:1,-125,8,0,0,-0.138075 -104716,7012:384:2,-124.5,8,0,0,-0.138008 -104717,7012:384:1,-124,8,0,0,-0.137638 -104718,7012:383:2,-123.5,8,0,0,-0.137204 -104719,7012:383:1,-123,8,0,0,-0.137237 -104720,7012:382:2,-122.5,8,0,0,-0.137773 -104721,7012:382:1,-122,8,0,0,-0.139678 -104722,7012:381:2,-121.5,8,0,0,-0.143181 -104723,7012:381:1,-121,8,0,0,-0.147778 -104724,7012:380:2,-120.5,8,0,0,-0.152834 -104725,7012:380:1,-120,8,0,0,-0.156926 -104726,7011:489:2,-119.5,8,0,0,-0.15891 -104727,7011:489:1,-119,8,0,0,-0.158735 -104728,7011:488:2,-118.5,8,0,0,-0.15813 -104729,7011:488:1,-118,8,0,0,-0.158065 -104730,7011:487:2,-117.5,8,0,0,-0.156242 -104731,7011:487:1,-117,8,0,0,-0.153731 -104732,7011:486:2,-116.5,8,0,0,-0.155076 -104733,7011:486:1,-116,8,0,0,-0.157871 -104734,7011:485:2,-115.5,8,0,0,-0.158303 -104735,7011:485:1,-115,8,0,0,-0.157634 -104736,7011:384:2,-114.5,8,0,0,-0.15699 -104737,7011:384:1,-114,8,0,0,-0.156498 -104738,7011:383:2,-113.5,8,0,0,-0.155945 -104739,7011:383:1,-113,8,0,0,-0.1562 -104740,7011:382:2,-112.5,8,0,0,-0.158996 -104741,7011:382:1,-112,8,0,0,-0.163164 -104742,7011:381:2,-111.5,8,0,0,-0.167618 -104743,7011:381:1,-111,8,0,0,-0.172213 -104744,7011:380:2,-110.5,8,0,0,-0.175997 -104745,7011:380:1,-110,8,0,0,-0.179128 -104746,7010:489:2,-109.5,8,0,0,-0.181943 -104747,7010:489:1,-109,8,0,0,-0.184705 -104748,7010:488:2,-108.5,8,0,0,-0.188412 -104749,7010:488:1,-108,8,0,0,-0.192529 -104750,7010:487:2,-107.5,8,0,0,-0.197557 -104751,7010:487:1,-107,8,0,0,-0.198646 -104752,7010:486:2,-106.5,8,0,0,-0.198136 -104753,7010:486:1,-106,8,0,0,-0.218897 -104754,7010:485:2,-105.5,8,0,0,-0.250108 -104755,7010:485:1,-105,8,0,0,-0.259177 -104756,7010:384:2,-104.5,8,0,0,-0.346077 -104757,7010:384:1,-104,8,0,0,-0.750642 -104758,7010:383:2,-103.5,8,0,0,-1.20768 -104759,7010:383:1,-103,8,0,0,-1.53041 -104760,7010:382:2,-102.5,8,0,0,-2.20871 -104761,7010:382:1,-102,8,0,0,-2.96716 -104762,7010:381:2,-101.5,8,0,0,-2.41501 -104763,7010:381:1,-101,8,0,0,-1.56078 -104764,7010:380:2,-100.5,8,0,0,-1.18737 -104765,7010:380:1,-100,8,0,0,-0.994479 -104766,7009:489:2,-99.5,8,0,0,-0.752743 -104767,7009:489:1,-99,8,0,0,-0.473901 -104768,7009:488:2,-98.5,8,0,0,-0.280763 -104769,7009:488:1,-98,8,0,0,-0.201314 -104770,7009:487:2,-97.5,8,0,0,-0.192828 -104771,7009:487:1,-97,8,0,0,-0.191289 -104772,7009:486:2,-96.5,8,0,0,-0.189206 -104773,7009:486:1,-96,8,0,0,-0.189604 -104774,7009:485:2,-95.5,8,0,0,-0.192637 -104775,7009:485:1,-95,8,0,0,-0.196452 -104776,7009:384:2,-94.5,8,0,0,-0.20841 -104777,7009:384:1,-94,8,0,0,-0.252038 -104778,7009:383:2,-93.5,8,0,0,-0.252038 -104779,7008:384:1,-84,8,0,0,-0.178383 -104780,7008:383:2,-83.5,8,0,0,-0.175948 -104781,7008:383:1,-83,8,0,0,-0.173168 -104782,7008:382:2,-82.5,8,0,0,-0.17568 -104783,7008:382:1,-82,8,0,0,-0.180906 -104784,7008:381:2,-81.5,8,0,0,-0.185949 -104785,7008:381:1,-81,8,0,0,-0.191369 -104786,7008:380:2,-80.5,8,0,0,-0.197337 -104787,7008:380:1,-80,8,0,0,-0.200799 -104788,7007:489:2,-79.5,8,0,0,-0.203311 -104789,7007:489:1,-79,8,0,0,-0.200632 -104790,7007:488:2,-78.5,8,0,0,-0.198359 -104791,7007:488:1,-78,8,0,0,-0.197958 -104792,7007:487:2,-77.5,8,0,0,-0.199234 -104793,7007:487:1,-77,8,0,0,-0.202756 -104794,7007:486:2,-76.5,8,0,0,-0.212617 -104795,7007:486:1,-76,8,0,0,-0.21636 -104796,7007:485:2,-75.5,8,0,0,-0.223096 -104797,7007:485:1,-75,8,0,0,-0.23095 -104798,7007:384:2,-74.5,8,0,0,-0.231648 -104799,7007:384:1,-74,8,0,0,-0.219854 -104800,7007:383:2,-73.5,8,0,0,-0.205796 -104801,7007:383:1,-73,8,0,0,-0.197735 -104802,7007:382:2,-72.5,8,0,0,-0.194872 -104803,7007:382:1,-72,8,0,0,-0.19335 -104804,7007:381:2,-71.5,8,0,0,-0.192854 -104805,7007:381:1,-71,8,0,0,-0.192637 -104806,7007:380:2,-70.5,8,0,0,-0.192828 -104807,7007:380:1,-70,8,0,0,-0.193306 -104808,7006:489:2,-69.5,8,0,0,-0.193782 -104809,7006:489:1,-69,8,0,0,-0.194217 -104810,7006:488:2,-68.5,8,0,0,-0.194479 -104811,7006:488:1,-68,8,0,0,-0.194828 -104812,7006:487:2,-67.5,8,0,0,-0.196452 -104813,7006:487:1,-67,8,0,0,-0.195616 -104814,7006:486:2,-66.5,8,0,0,-0.193436 -104815,7006:486:1,-66,8,0,0,-0.192448 -104816,7006:485:2,-65.5,8,0,0,-0.192828 -104817,7006:485:1,-65,8,0,0,-0.193002 -104818,7006:384:2,-64.5,8,0,0,-0.192286 -104819,7006:384:1,-64,8,0,0,-0.191396 -104820,7006:383:2,-63.5,8,0,0,-0.190913 -104821,7006:383:1,-63,8,0,0,-0.19011 -104822,7006:382:2,-62.5,8,0,0,-0.188438 -104823,7006:382:1,-62,8,0,0,-0.186522 -104824,7006:381:2,-61.5,8,0,0,-0.184705 -104825,7006:381:1,-61,8,0,0,-0.182044 -104826,7006:380:2,-60.5,8,0,0,-0.181437 -104827,7006:380:1,-60,8,0,0,-0.183063 -104828,7005:489:2,-59.5,8,0,0,-0.182374 -104829,7005:489:1,-59,8,0,0,-0.180328 -104830,7005:488:2,-58.5,8,0,0,-0.179078 -104831,7005:488:1,-58,8,0,0,-0.178011 -104832,7005:487:2,-57.5,8,0,0,-0.176878 -104833,7005:487:1,-57,8,0,0,-0.175559 -104834,7005:486:2,-56.5,8,0,0,-0.173864 -104835,7005:486:1,-56,8,0,0,-0.172046 -104836,7005:485:2,-55.5,8,0,0,-0.170838 -104837,7005:485:1,-55,8,0,0,-0.170391 -104838,7005:384:2,-54.5,8,0,0,-0.170132 -104839,7005:384:1,-54,8,0,0,-0.17018 -104840,7005:383:2,-53.5,8,0,0,-0.169477 -104841,7005:383:1,-53,8,0,0,-0.16785 -104842,7005:382:2,-52.5,8,0,0,-0.165693 -104843,7005:382:1,-52,8,0,0,-0.163792 -104844,7005:381:2,-51.5,8,0,0,-0.162784 -104845,7005:381:1,-51,8,0,0,-0.16185 -104846,7005:380:2,-50.5,8,0,0,-0.161054 -104847,7005:380:1,-50,8,0,0,-0.159715 -104848,7004:489:2,-49.5,8,0,0,-0.158389 -104849,7004:489:1,-49,8,0,0,-0.157526 -104850,7004:488:2,-48.5,8,0,0,-0.15684 -104851,7004:488:1,-48,8,0,0,-0.155923 -104852,7004:487:2,-47.5,8,0,0,-0.155139 -104853,7004:487:1,-47,8,0,0,-0.154549 -104854,7004:486:2,-46.5,8,0,0,-0.153605 -104855,7004:486:1,-46,8,0,0,-0.153084 -104856,7004:485:2,-45.5,8,0,0,-0.152399 -104857,7004:485:1,-45,8,0,0,-0.151408 -104858,7004:384:2,-44.5,8,0,0,-0.150364 -104859,7004:384:1,-44,8,0,0,-0.149308 -104860,7004:383:2,-43.5,8,0,0,-0.148219 -104861,7004:383:1,-43,8,0,0,-0.14722 -104862,7004:382:2,-42.5,8,0,0,-0.146624 -104863,7004:382:1,-42,8,0,0,-0.146129 -104864,7004:381:2,-41.5,8,0,0,-0.145243 -104865,7004:381:1,-41,8,0,0,-0.144052 -104866,7004:380:2,-40.5,8,0,0,-0.143065 -104867,7004:380:1,-40,8,0,0,-0.142584 -104868,7003:489:2,-39.5,8,0,0,-0.141856 -104869,7003:489:1,-39,8,0,0,-0.140923 -104870,7003:488:2,-38.5,8,0,0,-0.139603 -104871,7003:488:1,-38,8,0,0,-0.138682 -104872,7003:487:2,-37.5,8,0,0,-0.13789 -104873,7003:487:1,-37,8,0,0,-0.137337 -104874,7003:486:2,-36.5,8,0,0,-0.136953 -104875,7003:486:1,-36,8,0,0,-0.13633 -104876,7003:485:2,-35.5,8,0,0,-0.136094 -104877,7003:485:1,-35,8,0,0,-0.13605 -104878,7003:384:2,-34.5,8,0,0,-0.13605 -104879,7003:384:1,-34,8,0,0,-0.13605 -104880,7003:383:2,-33.5,8,0,0,-0.13605 -104881,7003:383:1,-33,8,0,0,-0.13605 -104882,7003:382:2,-32.5,8,0,0,-0.13605 -104883,7003:382:1,-32,8,0,0,-0.13605 -104884,7003:381:2,-31.5,8,0,0,-0.13605 -104885,7003:381:1,-31,8,0,0,-0.13605 -104886,7003:380:2,-30.5,8,0,0,-0.13605 -104887,7003:380:1,-30,8,0,0,-0.13605 -104888,7002:489:2,-29.5,8,0,0,-0.13605 -104889,7002:489:1,-29,8,0,0,-0.13605 -104890,7002:488:2,-28.5,8,0,0,-0.13605 -104891,7002:488:1,-28,8,0,0,-0.13605 -104892,7002:487:2,-27.5,8,0,0,-0.13605 -104893,7002:487:1,-27,8,0,0,-0.13605 -104894,7002:486:2,-26.5,8,0,0,-0.13605 -104895,7002:486:1,-26,8,0,0,-0.13605 -104896,7002:485:2,-25.5,8,0,0,-0.13605 -104897,7002:485:1,-25,8,0,0,-0.13605 -104898,7002:384:2,-24.5,8,0,0,-0.13605 -104899,7002:384:1,-24,8,0,0,-0.13605 -104900,7002:383:2,-23.5,8,0,0,-0.13605 -104901,7002:383:1,-23,8,0,0,-0.13605 -104902,7002:382:2,-22.5,8,0,0,-0.13605 -104903,7002:382:1,-22,8,0,0,-0.13605 -104904,7002:381:2,-21.5,8,0,0,-0.13605 -104905,7002:381:1,-21,8,0,0,-0.13605 -104906,7002:380:2,-20.5,8,0,0,-0.138953 -104907,7002:380:1,-20,8,0,0,-0.142277 -104908,7001:489:2,-19.5,8,0,0,-0.142834 -104909,7001:489:1,-19,8,0,0,-0.144558 -104910,7001:488:2,-18.5,8,0,0,-0.146822 -104911,7001:488:1,-18,8,0,0,-0.143858 -104912,7001:487:2,-17.5,8,0,0,-0.13605 -104913,7001:487:1,-17,8,0,0,-0.13605 -104914,1003:489:2,39.5,8,0,0,-0.178631 -104915,1004:380:1,40,8,0,0,-0.179927 -104916,1004:380:2,40.5,8,0,0,-0.177616 -104917,1004:381:1,41,8,0,0,-0.171311 -104918,1004:381:2,41.5,8,0,0,-0.179652 -104919,1004:382:1,42,8,0,0,-0.184113 -104920,1005:382:1,52,8,0,0,-0.151861 -104921,1005:382:2,52.5,8,0,0,-0.149713 -104922,1005:383:1,53,8,0,0,-0.149632 -104923,1005:383:2,53.5,8,0,0,-0.148199 -104924,1005:384:1,54,8,0,0,-0.147899 -104925,1005:384:2,54.5,8,0,0,-0.148621 -104926,1005:485:1,55,8,0,0,-0.148682 -104927,1005:485:2,55.5,8,0,0,-0.151162 -104928,1005:486:1,56,8,0,0,-0.152917 -104929,1005:486:2,56.5,8,0,0,-0.154108 -104930,1005:487:1,57,8,0,0,-0.152896 -104931,1005:487:2,57.5,8,0,0,-0.152151 -104932,1005:488:1,58,8,0,0,-0.150875 -104933,1005:488:2,58.5,8,0,0,-0.151944 -104934,1005:489:1,59,8,0,0,-0.154108 -104935,1005:489:2,59.5,8,0,0,-0.157333 -104936,1006:380:1,60,8,0,0,-0.15729 -104937,1006:380:2,60.5,8,0,0,-0.157634 -104938,1006:381:1,61,8,0,0,-0.159475 -104939,1006:381:2,61.5,8,0,0,-0.162673 -104940,1006:382:1,62,8,0,0,-0.165465 -104941,1006:382:2,62.5,8,0,0,-0.167089 -104942,1006:383:1,63,8,0,0,-0.169336 -104943,1006:383:2,63.5,8,0,0,-0.17188 -104944,1006:384:1,64,8,0,0,-0.17483 -104945,1006:384:2,64.5,8,0,0,-0.178556 -104946,1006:485:1,65,8,0,0,-0.181285 -104947,1006:485:2,65.5,8,0,0,-0.183139 -104948,1006:486:1,66,8,0,0,-0.185119 -104949,1006:486:2,66.5,8,0,0,-0.18828 -104950,1006:487:1,67,8,0,0,-0.191127 -104951,1006:487:2,67.5,8,0,0,-0.192665 -104952,1006:488:1,68,8,0,0,-0.195134 -104953,1006:488:2,68.5,8,0,0,-0.198002 -104954,1006:489:1,69,8,0,0,-0.200632 -104955,1006:489:2,69.5,8,0,0,-0.202943 -104956,1007:380:1,70,8,0,0,-0.227814 -104957,1007:380:2,70.5,8,0,0,-0.282109 -104958,1007:381:1,71,8,0,0,-0.315124 -104959,1007:381:2,71.5,8,0,0,-0.394894 -104960,1007:382:1,72,8,0,0,-0.492488 -104961,1007:382:2,72.5,8,0,0,-0.469608 -104962,1007:383:2,73.5,8,0,0,-0.357826 -104963,1007:384:1,74,8,0,0,-0.299247 -104964,1008:380:2,80.5,8,0,0,-0.160613 -104965,1008:381:1,81,8,0,0,-0.166263 -104966,1008:381:2,81.5,8,0,0,-0.163545 -104967,1008:382:1,82,8,0,0,-0.167618 -104968,1008:382:2,82.5,8,0,0,-0.170909 -104969,1008:383:1,83,8,0,0,-0.17673 -104970,1008:383:2,83.5,8,0,0,-0.179278 -104971,1008:384:1,84,8,0,0,-0.181032 -104972,1008:384:2,84.5,8,0,0,-0.183113 -104973,1008:485:1,85,8,0,0,-0.185663 -104974,1008:485:2,85.5,8,0,0,-0.188253 -104975,1008:486:1,86,8,0,0,-0.190004 -104976,1008:486:2,86.5,8,0,0,-0.191477 -104977,1008:487:1,87,8,0,0,-0.191962 -104978,1008:487:2,87.5,8,0,0,-0.193046 -104979,1008:488:1,88,8,0,0,-0.19309 -104980,1008:488:2,88.5,8,0,0,-0.193523 -104981,1008:489:1,89,8,0,0,-0.19875 -104982,1008:489:2,89.5,8,0,0,-0.214263 -104983,1009:380:1,90,8,0,0,-0.220502 -104984,1009:380:2,90.5,8,0,0,-0.23095 -104985,1009:381:1,91,8,0,0,-0.265735 -104986,1009:381:2,91.5,8,0,0,-0.292611 -104987,1009:382:1,92,8,0,0,-0.306568 -104988,1009:382:2,92.5,8,0,0,-0.283903 -104989,1009:383:1,93,8,0,0,-0.209171 -104990,1009:383:2,93.5,8,0,0,-0.193133 -104991,1009:384:1,94,8,0,0,-0.194522 -104992,1009:384:2,94.5,8,0,0,-0.190725 -104993,1009:485:1,95,8,0,0,-0.189498 -104994,1009:485:2,95.5,8,0,0,-0.192665 -104995,1009:486:1,96,8,0,0,-0.188333 -104996,1009:486:2,96.5,8,0,0,-0.188967 -104997,1009:487:1,97,8,0,0,-0.1928 -104998,1009:487:2,97.5,8,0,0,-0.191396 -104999,1010:489:1,109,8,0,0,-0.143413 -105000,1010:489:2,109.5,8,0,0,-0.141456 -105001,1011:380:1,110,8,0,0,-0.145165 -105002,1011:380:2,110.5,8,0,0,-0.151531 -105003,1011:381:1,111,8,0,0,-0.154338 -105004,1011:381:2,111.5,8,0,0,-0.155012 -105005,1011:382:1,112,8,0,0,-0.155626 -105006,1011:382:2,112.5,8,0,0,-0.157204 -105007,1011:383:1,113,8,0,0,-0.158975 -105008,1011:383:2,113.5,8,0,0,-0.16046 -105009,1011:384:1,114,8,0,0,-0.162561 -105010,1011:384:2,114.5,8,0,0,-0.162762 -105011,1011:485:1,115,8,0,0,-0.165261 -105012,1011:485:2,115.5,8,0,0,-0.16567 -105013,1011:486:1,116,8,0,0,-0.167989 -105014,1011:486:2,116.5,8,0,0,-0.169664 -105015,1011:487:1,117,8,0,0,-0.172929 -105016,1011:487:2,117.5,8,0,0,-0.177444 -105017,1011:488:1,118,8,0,0,-0.182807 -105018,1011:488:2,118.5,8,0,0,-0.188676 -105019,1011:489:1,119,8,0,0,-0.192719 -105020,1011:489:2,119.5,8,0,0,-0.191234 -105021,1012:380:1,120,8,0,0,-0.175121 -105022,1012:382:1,122,8,0,0,-0.179977 -105023,1012:382:2,122.5,8,0,0,-0.18174 -105024,1012:383:1,123,8,0,0,-0.182095 -105025,1012:383:2,123.5,8,0,0,-0.181083 -105026,1012:384:1,124,8,0,0,-0.179327 -105027,1012:384:2,124.5,8,0,0,-0.178383 -105028,1012:485:1,125,8,0,0,-0.177962 -105029,1012:485:2,125.5,8,0,0,-0.178061 -105030,1012:486:1,126,8,0,0,-0.17873 -105031,1012:486:2,126.5,8,0,0,-0.179802 -105032,1012:487:1,127,8,0,0,-0.180856 -105033,1012:487:2,127.5,8,0,0,-0.181766 -105034,1012:488:1,128,8,0,0,-0.182629 -105035,1012:488:2,128.5,8,0,0,-0.183523 -105036,1012:489:1,129,8,0,0,-0.184421 -105037,1012:489:2,129.5,8,0,0,-0.185326 -105038,1013:380:1,130,8,0,0,-0.1866 -105039,1013:380:2,130.5,8,0,0,-0.188623 -105040,1013:381:1,131,8,0,0,-0.19102 -105041,1013:381:2,131.5,8,0,0,-0.193956 -105042,1013:382:1,132,8,0,0,-0.197647 -105043,1013:382:2,132.5,8,0,0,-0.199309 -105044,1013:383:1,133,8,0,0,-0.198314 -105045,1013:383:2,133.5,8,0,0,-0.195703 -105046,1013:384:1,134,8,0,0,-0.192448 -105047,1013:384:2,134.5,8,0,0,-0.191262 -105048,1013:485:1,135,8,0,0,-0.192016 -105049,1013:485:2,135.5,8,0,0,-0.193523 -105050,1013:486:1,136,8,0,0,-0.194654 -105051,1013:486:2,136.5,8,0,0,-0.195134 -105052,1013:487:1,137,8,0,0,-0.195528 -105053,1013:487:2,137.5,8,0,0,-0.196231 -105054,1013:488:1,138,8,0,0,-0.197158 -105055,1013:488:2,138.5,8,0,0,-0.197914 -105056,1013:489:1,139,8,0,0,-0.198359 -105057,1013:489:2,139.5,8,0,0,-0.198541 -105058,1014:380:1,140,8,0,0,-0.198449 -105059,1014:380:2,140.5,8,0,0,-0.198449 -105060,1014:381:1,141,8,0,0,-0.198404 -105061,1014:381:2,141.5,8,0,0,-0.198359 -105062,1014:382:1,142,8,0,0,-0.198359 -105063,1014:382:2,142.5,8,0,0,-0.198646 -105064,1014:383:1,143,8,0,0,-0.199013 -105065,1014:383:2,143.5,8,0,0,-0.199234 -105066,1014:384:1,144,8,0,0,-0.199812 -105067,1014:384:2,144.5,8,0,0,-0.200632 -105068,1014:485:1,145,8,0,0,-0.20149 -105069,1014:485:2,145.5,8,0,0,-0.199973 -105070,1014:486:1,146,8,0,0,-0.197248 -105071,1014:486:2,146.5,8,0,0,-0.198404 -105072,1014:487:1,147,8,0,0,-0.198803 -105073,1014:487:2,147.5,8,0,0,-0.198314 -105074,1014:488:1,148,8,0,0,-0.198136 -105075,1014:488:2,148.5,8,0,0,-0.198314 -105076,1014:489:1,149,8,0,0,-0.198492 -105077,1014:489:2,149.5,8,0,0,-0.198909 -105078,1015:380:1,150,8,0,0,-0.199309 -105079,1015:380:2,150.5,8,0,0,-0.199812 -105080,1015:381:1,151,8,0,0,-0.200466 -105081,1015:381:2,151.5,8,0,0,-0.200466 -105082,1015:382:1,152,8,0,0,-0.199309 -105083,1015:382:2,152.5,8,0,0,-0.198594 -105084,1015:383:1,153,8,0,0,-0.198002 -105085,1015:383:2,153.5,8,0,0,-0.197248 -105086,1015:384:1,154,8,0,0,-0.19632 -105087,1015:384:2,154.5,8,0,0,-0.195353 -105088,1015:485:1,155,8,0,0,-0.194217 -105089,1015:485:2,155.5,8,0,0,-0.193002 -105090,1015:486:1,156,8,0,0,-0.192394 -105091,1015:486:2,156.5,8,0,0,-0.191827 -105092,1015:487:1,157,8,0,0,-0.191208 -105093,1015:487:2,157.5,8,0,0,-0.190564 -105094,1015:488:1,158,8,0,0,-0.189897 -105095,1015:488:2,158.5,8,0,0,-0.189179 -105096,1015:489:1,159,8,0,0,-0.188517 -105097,1015:489:2,159.5,8,0,0,-0.187753 -105098,1016:380:1,160,8,0,0,-0.187071 -105099,1016:380:2,160.5,8,0,0,-0.186392 -105100,1016:381:1,161,8,0,0,-0.185741 -105101,1016:381:2,161.5,8,0,0,-0.185248 -105102,1016:382:1,162,8,0,0,-0.184912 -105103,1016:382:2,162.5,8,0,0,-0.184757 -105104,1016:383:1,163,8,0,0,-0.184602 -105105,1016:383:2,163.5,8,0,0,-0.184318 -105106,1016:384:1,164,8,0,0,-0.183805 -105107,1016:384:2,164.5,8,0,0,-0.183113 -105108,1016:485:1,165,8,0,0,-0.182222 -105109,1016:485:2,165.5,8,0,0,-0.181259 -105110,1016:486:1,166,8,0,0,-0.180203 -105111,1016:486:2,166.5,8,0,0,-0.179228 -105112,1016:487:1,167,8,0,0,-0.178408 -105113,1016:487:2,167.5,8,0,0,-0.177567 -105114,1016:488:1,168,8,0,0,-0.176559 -105115,1016:488:2,168.5,8,0,0,-0.175559 -105116,1016:489:1,169,8,0,0,-0.174443 -105117,1016:489:2,169.5,8,0,0,-0.17324 -105118,1017:380:1,170,8,0,0,-0.172165 -105119,1017:380:2,170.5,8,0,0,-0.171311 -105120,1017:381:1,171,8,0,0,-0.17072 -105121,1017:381:2,171.5,8,0,0,-0.170391 -105122,1017:382:1,172,8,0,0,-0.17025 -105123,1017:382:2,172.5,8,0,0,-0.170203 -105124,1017:383:1,173,8,0,0,-0.170132 -105125,1017:383:2,173.5,8,0,0,-0.170062 -105126,1017:384:1,174,8,0,0,-0.169781 -105127,1017:384:2,174.5,8,0,0,-0.169313 -105128,1017:485:1,175,8,0,0,-0.168707 -105129,1017:485:2,175.5,8,0,0,-0.168035 -105130,1017:486:1,176,8,0,0,-0.167388 -105131,1017:486:2,176.5,8,0,0,-0.166928 -105132,1017:487:1,177,8,0,0,-0.166676 -105133,1017:487:2,177.5,8,0,0,-0.166699 -105134,1017:488:1,178,8,0,0,-0.166836 -105135,1017:488:2,178.5,8,0,0,-0.166997 -105136,1017:489:1,179,8,0,0,-0.166905 -105137,1017:489:2,179.5,8,0,0,-0.166492 -105138,1018:380:1,180,8,0,0,-0.165829 -105139,7018:380:3,-180,8.5,0,0,-0.165193 -105140,7017:489:4,-179.5,8.5,0,0,-0.165261 -105141,7017:489:3,-179,8.5,0,0,-0.164875 -105142,7017:488:4,-178.5,8.5,0,0,-0.164175 -105143,7017:488:3,-178,8.5,0,0,-0.16303 -105144,7017:487:4,-177.5,8.5,0,0,-0.161672 -105145,7017:487:3,-177,8.5,0,0,-0.160547 -105146,7017:486:4,-176.5,8.5,0,0,-0.159519 -105147,7017:486:3,-176,8.5,0,0,-0.158497 -105148,7017:485:4,-175.5,8.5,0,0,-0.157634 -105149,7017:485:3,-175,8.5,0,0,-0.156904 -105150,7017:384:4,-174.5,8.5,0,0,-0.156392 -105151,7017:384:3,-174,8.5,0,0,-0.156221 -105152,7017:383:4,-173.5,8.5,0,0,-0.156285 -105153,7017:383:3,-173,8.5,0,0,-0.156519 -105154,7017:382:4,-172.5,8.5,0,0,-0.157033 -105155,7017:382:3,-172,8.5,0,0,-0.157849 -105156,7017:381:4,-171.5,8.5,0,0,-0.158692 -105157,7017:381:3,-171,8.5,0,0,-0.15917 -105158,7017:380:4,-170.5,8.5,0,0,-0.158735 -105159,7017:380:3,-170,8.5,0,0,-0.157634 -105160,7016:489:4,-169.5,8.5,0,0,-0.155817 -105161,7016:489:3,-169,8.5,0,0,-0.154044 -105162,7016:488:4,-168.5,8.5,0,0,-0.153167 -105163,7016:488:3,-168,8.5,0,0,-0.153209 -105164,7016:487:4,-167.5,8.5,0,0,-0.153752 -105165,7016:487:3,-167,8.5,0,0,-0.154317 -105166,7016:486:4,-166.5,8.5,0,0,-0.155583 -105167,7016:486:3,-166,8.5,0,0,-0.15637 -105168,7016:485:4,-165.5,8.5,0,0,-0.156562 -105169,7016:485:3,-165,8.5,0,0,-0.155669 -105170,7016:384:4,-164.5,8.5,0,0,-0.154381 -105171,7016:384:3,-164,8.5,0,0,-0.153292 -105172,7016:383:4,-163.5,8.5,0,0,-0.152026 -105173,7016:383:3,-163,8.5,0,0,-0.150548 -105174,7016:382:4,-162.5,8.5,0,0,-0.149246 -105175,7016:382:3,-162,8.5,0,0,-0.148299 -105176,7016:381:4,-161.5,8.5,0,0,-0.147279 -105177,7016:381:3,-161,8.5,0,0,-0.146902 -105178,7016:380:4,-160.5,8.5,0,0,-0.148019 -105179,7016:380:3,-160,8.5,0,0,-0.149308 -105180,7015:489:4,-159.5,8.5,0,0,-0.150404 -105181,7015:489:3,-159,8.5,0,0,-0.151039 -105182,7015:488:4,-158.5,8.5,0,0,-0.150793 -105183,7015:488:3,-158,8.5,0,0,-0.149632 -105184,7015:487:4,-157.5,8.5,0,0,-0.147579 -105185,7015:487:3,-157,8.5,0,0,-0.145283 -105186,7015:486:4,-156.5,8.5,0,0,-0.144266 -105187,7015:486:3,-156,8.5,0,0,-0.145283 -105188,7015:485:4,-155.5,8.5,0,0,-0.146346 -105189,7015:485:3,-155,8.5,0,0,-0.145991 -105190,7015:384:4,-154.5,8.5,0,0,-0.145223 -105191,7015:384:3,-154,8.5,0,0,-0.144636 -105192,7015:383:4,-153.5,8.5,0,0,-0.144852 -105193,7015:383:3,-153,8.5,0,0,-0.145125 -105194,7015:382:4,-152.5,8.5,0,0,-0.145008 -105195,7015:382:3,-152,8.5,0,0,-0.144636 -105196,7015:381:4,-151.5,8.5,0,0,-0.14378 -105197,7015:381:3,-151,8.5,0,0,-0.142641 -105198,7015:380:4,-150.5,8.5,0,0,-0.14197 -105199,7015:380:3,-150,8.5,0,0,-0.141589 -105200,7014:489:4,-149.5,8.5,0,0,-0.14117 -105201,7014:489:3,-149,8.5,0,0,-0.140753 -105202,7014:488:4,-148.5,8.5,0,0,-0.140848 -105203,7014:488:3,-148,8.5,0,0,-0.141646 -105204,7014:487:4,-147.5,8.5,0,0,-0.142372 -105205,7014:487:3,-147,8.5,0,0,-0.141856 -105206,7014:486:4,-146.5,8.5,0,0,-0.140999 -105207,7014:486:3,-146,8.5,0,0,-0.140054 -105208,7014:485:4,-145.5,8.5,0,0,-0.139735 -105209,7014:485:3,-145,8.5,0,0,-0.141189 -105210,7014:384:4,-144.5,8.5,0,0,-0.142507 -105211,7014:384:3,-144,8.5,0,0,-0.141589 -105212,7014:383:4,-143.5,8.5,0,0,-0.137974 -105213,7014:383:3,-143,8.5,0,0,-0.136111 -105214,7014:382:4,-142.5,8.5,0,0,-0.13605 -105215,7014:382:3,-142,8.5,0,0,-0.136706 -105216,7014:381:4,-141.5,8.5,0,0,-0.138311 -105217,7014:381:3,-141,8.5,0,0,-0.13826 -105218,7014:380:4,-140.5,8.5,0,0,-0.136937 -105219,7014:380:3,-140,8.5,0,0,-0.13605 -105220,7013:489:4,-139.5,8.5,0,0,-0.13605 -105221,7013:489:3,-139,8.5,0,0,-0.13605 -105222,7013:488:4,-138.5,8.5,0,0,-0.13605 -105223,7013:488:3,-138,8.5,0,0,-0.13605 -105224,7013:487:4,-137.5,8.5,0,0,-0.13605 -105225,7013:487:3,-137,8.5,0,0,-0.13605 -105226,7013:486:4,-136.5,8.5,0,0,-0.13605 -105227,7013:486:3,-136,8.5,0,0,-0.13605 -105228,7013:485:4,-135.5,8.5,0,0,-0.13605 -105229,7013:485:3,-135,8.5,0,0,-0.13605 -105230,7013:384:4,-134.5,8.5,0,0,-0.13605 -105231,7013:384:3,-134,8.5,0,0,-0.13605 -105232,7013:383:4,-133.5,8.5,0,0,-0.13605 -105233,7013:383:3,-133,8.5,0,0,-0.13605 -105234,7013:382:4,-132.5,8.5,0,0,-0.13605 -105235,7013:382:3,-132,8.5,0,0,-0.13605 -105236,7013:381:4,-131.5,8.5,0,0,-0.13605 -105237,7013:381:3,-131,8.5,0,0,-0.13605 -105238,7013:380:4,-130.5,8.5,0,0,-0.13605 -105239,7013:380:3,-130,8.5,0,0,-0.13605 -105240,7012:489:4,-129.5,8.5,0,0,-0.13605 -105241,7012:489:3,-129,8.5,0,0,-0.13605 -105242,7012:488:4,-128.5,8.5,0,0,-0.13605 -105243,7012:488:3,-128,8.5,0,0,-0.13605 -105244,7012:487:4,-127.5,8.5,0,0,-0.13605 -105245,7012:487:3,-127,8.5,0,0,-0.13605 -105246,7012:486:4,-126.5,8.5,0,0,-0.13605 -105247,7012:486:3,-126,8.5,0,0,-0.13605 -105248,7012:485:4,-125.5,8.5,0,0,-0.13605 -105249,7012:485:3,-125,8.5,0,0,-0.13605 -105250,7012:384:4,-124.5,8.5,0,0,-0.13605 -105251,7012:384:3,-124,8.5,0,0,-0.13605 -105252,7012:383:4,-123.5,8.5,0,0,-0.13605 -105253,7012:383:3,-123,8.5,0,0,-0.13605 -105254,7012:382:4,-122.5,8.5,0,0,-0.13605 -105255,7012:382:3,-122,8.5,0,0,-0.13605 -105256,7012:381:4,-121.5,8.5,0,0,-0.137588 -105257,7012:381:3,-121,8.5,0,0,-0.141818 -105258,7012:380:4,-120.5,8.5,0,0,-0.145263 -105259,7012:380:3,-120,8.5,0,0,-0.14712 -105260,7011:489:4,-119.5,8.5,0,0,-0.147958 -105261,7011:489:3,-119,8.5,0,0,-0.148139 -105262,7011:488:4,-118.5,8.5,0,0,-0.14828 -105263,7011:488:3,-118,8.5,0,0,-0.149004 -105264,7011:487:4,-117.5,8.5,0,0,-0.147518 -105265,7011:487:3,-117,8.5,0,0,-0.144754 -105266,7011:486:4,-116.5,8.5,0,0,-0.145557 -105267,7011:486:3,-116,8.5,0,0,-0.149571 -105268,7011:485:4,-115.5,8.5,0,0,-0.150568 -105269,7011:485:3,-115,8.5,0,0,-0.149449 -105270,7011:384:4,-114.5,8.5,0,0,-0.148601 -105271,7011:384:3,-114,8.5,0,0,-0.148883 -105272,7011:383:4,-113.5,8.5,0,0,-0.149206 -105273,7011:383:3,-113,8.5,0,0,-0.149388 -105274,7011:382:4,-112.5,8.5,0,0,-0.150936 -105275,7011:382:3,-112,8.5,0,0,-0.154612 -105276,7011:381:4,-111.5,8.5,0,0,-0.159344 -105277,7011:381:3,-111,8.5,0,0,-0.163366 -105278,7011:380:4,-110.5,8.5,0,0,-0.167365 -105279,7011:380:3,-110,8.5,0,0,-0.171524 -105280,7010:489:4,-109.5,8.5,0,0,-0.175729 -105281,7010:489:3,-109,8.5,0,0,-0.180554 -105282,7010:488:4,-108.5,8.5,0,0,-0.18486 -105283,7010:488:3,-108,8.5,0,0,-0.187307 -105284,7010:487:4,-107.5,8.5,0,0,-0.188888 -105285,7010:487:3,-107,8.5,0,0,-0.19011 -105286,7010:486:4,-106.5,8.5,0,0,-0.197337 -105287,7010:486:3,-106,8.5,0,0,-0.2649 -105288,7010:485:4,-105.5,8.5,0,0,-0.306568 -105289,7010:485:3,-105,8.5,0,0,-0.332042 -105290,7010:384:4,-104.5,8.5,0,0,-0.564141 -105291,7010:384:3,-104,8.5,0,0,-0.95009 -105292,7010:383:4,-103.5,8.5,0,0,-0.807263 -105293,7010:383:3,-103,8.5,0,0,-0.929047 -105294,7010:382:4,-102.5,8.5,0,0,-1.65796 -105295,7010:382:3,-102,8.5,0,0,-3.92893 -105296,7010:381:4,-101.5,8.5,0,0,-4.88552 -105297,7010:381:3,-101,8.5,0,0,-2.62035 -105298,7010:380:4,-100.5,8.5,0,0,-1.18737 -105299,7010:380:3,-100,8.5,0,0,-0.707056 -105300,7009:489:4,-99.5,8.5,0,0,-0.517822 -105301,7009:489:3,-99,8.5,0,0,-0.379644 -105302,7009:488:4,-98.5,8.5,0,0,-0.277679 -105303,7008:488:4,-88.5,8.5,0,0,-0.190297 -105304,7008:488:3,-88,8.5,0,0,-0.197158 -105305,7008:487:4,-87.5,8.5,0,0,-0.197914 -105306,7008:487:3,-87,8.5,0,0,-0.195353 -105307,7008:486:4,-86.5,8.5,0,0,-0.194261 -105308,7008:486:3,-86,8.5,0,0,-0.192421 -105309,7008:485:4,-85.5,8.5,0,0,-0.191908 -105310,7008:485:3,-85,8.5,0,0,-0.189631 -105311,7008:384:4,-84.5,8.5,0,0,-0.186157 -105312,7008:384:3,-84,8.5,0,0,-0.183343 -105313,7008:383:4,-83.5,8.5,0,0,-0.178011 -105314,7008:383:3,-83,8.5,0,0,-0.173961 -105315,7008:382:4,-82.5,8.5,0,0,-0.184165 -105316,7008:382:3,-82,8.5,0,0,-0.188623 -105317,7008:381:4,-81.5,8.5,0,0,-0.189657 -105318,7008:381:3,-81,8.5,0,0,-0.192637 -105319,7008:380:4,-80.5,8.5,0,0,-0.191908 -105320,7008:380:3,-80,8.5,0,0,-0.197557 -105321,7007:489:4,-79.5,8.5,0,0,-0.199234 -105322,7007:489:3,-79,8.5,0,0,-0.199516 -105323,7007:488:4,-78.5,8.5,0,0,-0.19738 -105324,7007:488:3,-78,8.5,0,0,-0.197647 -105325,7007:487:4,-77.5,8.5,0,0,-0.199309 -105326,7007:487:3,-77,8.5,0,0,-0.20149 -105327,7007:486:4,-76.5,8.5,0,0,-0.206573 -105328,7007:486:3,-76,8.5,0,0,-0.211805 -105329,7007:485:4,-75.5,8.5,0,0,-0.200799 -105330,7007:485:3,-75,8.5,0,0,-0.201314 -105331,7007:384:4,-74.5,8.5,0,0,-0.205216 -105332,7007:384:3,-74,8.5,0,0,-0.209428 -105333,7007:383:4,-73.5,8.5,0,0,-0.210194 -105334,7007:383:3,-73,8.5,0,0,-0.202023 -105335,7007:382:4,-72.5,8.5,0,0,-0.197469 -105336,7007:382:3,-72,8.5,0,0,-0.196144 -105337,7007:381:4,-71.5,8.5,0,0,-0.195265 -105338,7007:381:3,-71,8.5,0,0,-0.195659 -105339,7007:380:4,-70.5,8.5,0,0,-0.19461 -105340,7007:380:3,-70,8.5,0,0,-0.193956 -105341,7006:489:4,-69.5,8.5,0,0,-0.193392 -105342,7006:489:3,-69,8.5,0,0,-0.19309 -105343,7006:488:4,-68.5,8.5,0,0,-0.192719 -105344,7006:488:3,-68,8.5,0,0,-0.191638 -105345,7006:487:4,-67.5,8.5,0,0,-0.19234 -105346,7006:487:3,-67,8.5,0,0,-0.193652 -105347,7006:486:4,-66.5,8.5,0,0,-0.192475 -105348,7006:486:3,-66,8.5,0,0,-0.191773 -105349,7006:485:4,-65.5,8.5,0,0,-0.191396 -105350,7006:485:3,-65,8.5,0,0,-0.191316 -105351,7006:384:4,-64.5,8.5,0,0,-0.190967 -105352,7006:384:3,-64,8.5,0,0,-0.190004 -105353,7006:383:4,-63.5,8.5,0,0,-0.188967 -105354,7006:383:3,-63,8.5,0,0,-0.187832 -105355,7006:382:4,-62.5,8.5,0,0,-0.186339 -105356,7006:382:3,-62,8.5,0,0,-0.184757 -105357,7006:381:3,-61,8.5,0,0,-0.181285 -105358,7006:380:4,-60.5,8.5,0,0,-0.180781 -105359,7006:380:3,-60,8.5,0,0,-0.181562 -105360,7005:489:4,-59.5,8.5,0,0,-0.181715 -105361,7005:489:3,-59,8.5,0,0,-0.180252 -105362,7005:488:4,-58.5,8.5,0,0,-0.178531 -105363,7005:488:3,-58,8.5,0,0,-0.177591 -105364,7005:487:4,-57.5,8.5,0,0,-0.175948 -105365,7005:487:3,-57,8.5,0,0,-0.174612 -105366,7005:486:4,-56.5,8.5,0,0,-0.173336 -105367,7005:486:3,-56,8.5,0,0,-0.171666 -105368,7005:485:4,-55.5,8.5,0,0,-0.17018 -105369,7005:485:3,-55,8.5,0,0,-0.169219 -105370,7005:384:4,-54.5,8.5,0,0,-0.168545 -105371,7005:384:3,-54,8.5,0,0,-0.167273 -105372,7005:383:4,-53.5,8.5,0,0,-0.165397 -105373,7005:383:3,-53,8.5,0,0,-0.163815 -105374,7005:382:4,-52.5,8.5,0,0,-0.162739 -105375,7005:382:3,-52,8.5,0,0,-0.162138 -105376,7005:381:4,-51.5,8.5,0,0,-0.161407 -105377,7005:381:3,-51,8.5,0,0,-0.16068 -105378,7005:380:4,-50.5,8.5,0,0,-0.159781 -105379,7005:380:3,-50,8.5,0,0,-0.158931 -105380,7004:489:4,-49.5,8.5,0,0,-0.158454 -105381,7004:489:3,-49,8.5,0,0,-0.15813 -105382,7004:488:4,-48.5,8.5,0,0,-0.15744 -105383,7004:488:3,-48,8.5,0,0,-0.156264 -105384,7004:487:4,-47.5,8.5,0,0,-0.155329 -105385,7004:487:3,-47,8.5,0,0,-0.153835 -105386,7004:486:4,-46.5,8.5,0,0,-0.15273 -105387,7004:486:3,-46,8.5,0,0,-0.151902 -105388,7004:485:4,-45.5,8.5,0,0,-0.151203 -105389,7004:485:3,-45,8.5,0,0,-0.150404 -105390,7004:384:4,-44.5,8.5,0,0,-0.149429 -105391,7004:384:3,-44,8.5,0,0,-0.14832 -105392,7004:383:4,-43.5,8.5,0,0,-0.147379 -105393,7004:383:3,-43,8.5,0,0,-0.146624 -105394,7004:382:4,-42.5,8.5,0,0,-0.146346 -105395,7004:382:3,-42,8.5,0,0,-0.145853 -105396,7004:381:4,-41.5,8.5,0,0,-0.14448 -105397,7004:381:3,-41,8.5,0,0,-0.142603 -105398,7004:380:4,-40.5,8.5,0,0,-0.14064 -105399,7004:380:3,-40,8.5,0,0,-0.13919 -105400,7003:489:4,-39.5,8.5,0,0,-0.138868 -105401,7003:489:3,-39,8.5,0,0,-0.138885 -105402,7003:488:4,-38.5,8.5,0,0,-0.138648 -105403,7003:488:3,-38,8.5,0,0,-0.13789 -105404,7003:487:4,-37.5,8.5,0,0,-0.136628 -105405,7003:487:3,-37,8.5,0,0,-0.136126 -105406,7003:486:4,-36.5,8.5,0,0,-0.13605 -105407,7003:486:3,-36,8.5,0,0,-0.13605 -105408,7003:485:4,-35.5,8.5,0,0,-0.13605 -105409,7003:485:3,-35,8.5,0,0,-0.13605 -105410,7003:384:4,-34.5,8.5,0,0,-0.13605 -105411,7003:384:3,-34,8.5,0,0,-0.13605 -105412,7003:383:4,-33.5,8.5,0,0,-0.13605 -105413,7003:383:3,-33,8.5,0,0,-0.13605 -105414,7003:382:4,-32.5,8.5,0,0,-0.13605 -105415,7003:382:3,-32,8.5,0,0,-0.13605 -105416,7003:381:4,-31.5,8.5,0,0,-0.13605 -105417,7003:381:3,-31,8.5,0,0,-0.13605 -105418,7003:380:4,-30.5,8.5,0,0,-0.13605 -105419,7003:380:3,-30,8.5,0,0,-0.13605 -105420,7002:489:4,-29.5,8.5,0,0,-0.13605 -105421,7002:489:3,-29,8.5,0,0,-0.13605 -105422,7002:488:4,-28.5,8.5,0,0,-0.13605 -105423,7002:488:3,-28,8.5,0,0,-0.13605 -105424,7002:487:4,-27.5,8.5,0,0,-0.13605 -105425,7002:487:3,-27,8.5,0,0,-0.13605 -105426,7002:486:4,-26.5,8.5,0,0,-0.13605 -105427,7002:486:3,-26,8.5,0,0,-0.13605 -105428,7002:485:4,-25.5,8.5,0,0,-0.13605 -105429,7002:485:3,-25,8.5,0,0,-0.13605 -105430,7002:384:4,-24.5,8.5,0,0,-0.13605 -105431,7002:384:3,-24,8.5,0,0,-0.13605 -105432,7002:383:4,-23.5,8.5,0,0,-0.13605 -105433,7002:383:3,-23,8.5,0,0,-0.13605 -105434,7002:382:4,-22.5,8.5,0,0,-0.13605 -105435,7002:382:3,-22,8.5,0,0,-0.13605 -105436,7002:381:4,-21.5,8.5,0,0,-0.13605 -105437,7002:381:3,-21,8.5,0,0,-0.13605 -105438,7002:380:4,-20.5,8.5,0,0,-0.13605 -105439,7002:380:3,-20,8.5,0,0,-0.136121 -105440,7001:489:4,-19.5,8.5,0,0,-0.136094 -105441,7001:489:3,-19,8.5,0,0,-0.136837 -105442,7001:488:4,-18.5,8.5,0,0,-0.137588 -105443,7001:488:3,-18,8.5,0,0,-0.13605 -105444,7001:487:4,-17.5,8.5,0,0,-0.13605 -105445,7001:487:3,-17,8.5,0,0,-0.13605 -105446,1003:489:3,39,8.5,0,0,-0.332593 -105447,1003:489:4,39.5,8.5,0,0,-0.196099 -105448,1004:380:3,40,8.5,0,0,-0.186313 -105449,1004:380:4,40.5,8.5,0,0,-0.178929 -105450,1004:381:3,41,8.5,0,0,-0.179054 -105451,1004:381:4,41.5,8.5,0,0,-0.191908 -105452,1004:382:3,42,8.5,0,0,-0.190137 -105453,1004:382:4,42.5,8.5,0,0,-0.189817 -105454,1005:382:4,52.5,8.5,0,0,-0.149672 -105455,1005:383:3,53,8.5,0,0,-0.148923 -105456,1005:383:4,53.5,8.5,0,0,-0.148621 -105457,1005:384:3,54,8.5,0,0,-0.148984 -105458,1005:384:4,54.5,8.5,0,0,-0.149227 -105459,1005:485:3,55,8.5,0,0,-0.149632 -105460,1005:485:4,55.5,8.5,0,0,-0.150977 -105461,1005:486:3,56,8.5,0,0,-0.150588 -105462,1005:486:4,56.5,8.5,0,0,-0.150364 -105463,1005:487:3,57,8.5,0,0,-0.150466 -105464,1005:487:4,57.5,8.5,0,0,-0.150629 -105465,1005:488:3,58,8.5,0,0,-0.150711 -105466,1005:488:4,58.5,8.5,0,0,-0.151305 -105467,1005:489:3,59,8.5,0,0,-0.153752 -105468,1005:489:4,59.5,8.5,0,0,-0.154949 -105469,1006:380:3,60,8.5,0,0,-0.15516 -105470,1006:380:4,60.5,8.5,0,0,-0.157505 -105471,1006:381:3,61,8.5,0,0,-0.160878 -105472,1006:381:4,61.5,8.5,0,0,-0.163007 -105473,1006:382:3,62,8.5,0,0,-0.163388 -105474,1006:382:4,62.5,8.5,0,0,-0.165465 -105475,1006:383:3,63,8.5,0,0,-0.167526 -105476,1006:383:4,63.5,8.5,0,0,-0.169992 -105477,1006:384:3,64,8.5,0,0,-0.172689 -105478,1006:384:4,64.5,8.5,0,0,-0.175534 -105479,1006:485:3,65,8.5,0,0,-0.177518 -105480,1006:485:4,65.5,8.5,0,0,-0.178408 -105481,1006:486:3,66,8.5,0,0,-0.179502 -105482,1006:486:4,66.5,8.5,0,0,-0.18131 -105483,1006:487:3,67,8.5,0,0,-0.183446 -105484,1006:487:4,67.5,8.5,0,0,-0.185274 -105485,1006:488:3,68,8.5,0,0,-0.187385 -105486,1006:488:4,68.5,8.5,0,0,-0.190671 -105487,1006:489:3,69,8.5,0,0,-0.195309 -105488,1006:489:4,69.5,8.5,0,0,-0.199973 -105489,1007:380:3,70,8.5,0,0,-0.22885 -105490,1007:380:4,70.5,8.5,0,0,-0.28033 -105491,1007:381:3,71,8.5,0,0,-0.319251 -105492,1007:381:4,71.5,8.5,0,0,-0.376422 -105493,1007:382:3,72,8.5,0,0,-0.434748 -105494,1007:382:4,72.5,8.5,0,0,-0.379644 -105495,1007:383:4,73.5,8.5,0,0,-0.277238 -105496,1008:382:3,82,8.5,0,0,-0.159127 -105497,1008:382:4,82.5,8.5,0,0,-0.160262 -105498,1008:383:3,83,8.5,0,0,-0.162028 -105499,1008:383:4,83.5,8.5,0,0,-0.166515 -105500,1008:384:3,84,8.5,0,0,-0.173695 -105501,1008:384:4,84.5,8.5,0,0,-0.17384 -105502,1008:485:3,85,8.5,0,0,-0.175315 -105503,1008:485:4,85.5,8.5,0,0,-0.17769 -105504,1008:486:3,86,8.5,0,0,-0.180957 -105505,1008:486:4,86.5,8.5,0,0,-0.18455 -105506,1008:487:3,87,8.5,0,0,-0.188174 -105507,1008:487:4,87.5,8.5,0,0,-0.190137 -105508,1008:488:3,88,8.5,0,0,-0.190137 -105509,1008:488:4,88.5,8.5,0,0,-0.1928 -105510,1008:489:3,89,8.5,0,0,-0.195178 -105511,1008:489:4,89.5,8.5,0,0,-0.19374 -105512,1009:380:3,90,8.5,0,0,-0.196849 -105513,1009:380:4,90.5,8.5,0,0,-0.218897 -105514,1009:381:3,91,8.5,0,0,-0.260795 -105515,1009:381:4,91.5,8.5,0,0,-0.296855 -105516,1009:382:3,92,8.5,0,0,-0.31005 -105517,1009:382:4,92.5,8.5,0,0,-0.30607 -105518,1009:383:3,93,8.5,0,0,-0.248944 -105519,1009:383:4,93.5,8.5,0,0,-0.192917 -105520,1009:384:3,94,8.5,0,0,-0.192394 -105521,1009:486:4,96.5,8.5,0,0,-0.188729 -105522,1009:487:3,97,8.5,0,0,-0.186914 -105523,1009:487:4,97.5,8.5,0,0,-0.190378 -105524,1010:488:4,108.5,8.5,0,0,-0.139847 -105525,1010:489:3,109,8.5,0,0,-0.140488 -105526,1010:489:4,109.5,8.5,0,0,-0.140375 -105527,1011:380:3,110,8.5,0,0,-0.143432 -105528,1011:380:4,110.5,8.5,0,0,-0.146782 -105529,1011:381:3,111,8.5,0,0,-0.149611 -105530,1011:381:4,111.5,8.5,0,0,-0.149733 -105531,1011:382:3,112,8.5,0,0,-0.148019 -105532,1011:382:4,112.5,8.5,0,0,-0.149977 -105533,1011:383:3,113,8.5,0,0,-0.15182 -105534,1011:383:4,113.5,8.5,0,0,-0.154191 -105535,1011:384:3,114,8.5,0,0,-0.155796 -105536,1011:384:4,114.5,8.5,0,0,-0.154801 -105537,1011:485:3,115,8.5,0,0,-0.159388 -105538,1011:485:4,115.5,8.5,0,0,-0.158389 -105539,1011:486:3,116,8.5,0,0,-0.158303 -105540,1011:486:4,116.5,8.5,0,0,-0.159453 -105541,1011:487:3,117,8.5,0,0,-0.164017 -105542,1011:487:4,117.5,8.5,0,0,-0.172904 -105543,1011:488:3,118,8.5,0,0,-0.179378 -105544,1011:488:4,118.5,8.5,0,0,-0.1853 -105545,1011:489:3,119,8.5,0,0,-0.188544 -105546,1011:489:4,119.5,8.5,0,0,-0.187149 -105547,1012:380:3,120,8.5,0,0,-0.171951 -105548,1012:380:4,120.5,8.5,0,0,-0.15744 -105549,1012:382:4,122.5,8.5,0,0,-0.180077 -105550,1012:383:3,123,8.5,0,0,-0.180454 -105551,1012:383:4,123.5,8.5,0,0,-0.177369 -105552,1012:384:3,124,8.5,0,0,-0.175097 -105553,1012:384:4,124.5,8.5,0,0,-0.173456 -105554,1012:485:3,125,8.5,0,0,-0.173 -105555,1012:485:4,125.5,8.5,0,0,-0.173192 -105556,1012:486:3,126,8.5,0,0,-0.173624 -105557,1012:486:4,126.5,8.5,0,0,-0.174516 -105558,1012:487:3,127,8.5,0,0,-0.175704 -105559,1012:487:4,127.5,8.5,0,0,-0.176657 -105560,1012:488:3,128,8.5,0,0,-0.177271 -105561,1012:488:4,128.5,8.5,0,0,-0.178036 -105562,1012:489:3,129,8.5,0,0,-0.179054 -105563,1012:489:4,129.5,8.5,0,0,-0.180278 -105564,1013:380:3,130,8.5,0,0,-0.181538 -105565,1013:380:4,130.5,8.5,0,0,-0.183088 -105566,1013:381:3,131,8.5,0,0,-0.185145 -105567,1013:381:4,131.5,8.5,0,0,-0.187517 -105568,1013:382:3,132,8.5,0,0,-0.189817 -105569,1013:382:4,132.5,8.5,0,0,-0.19215 -105570,1013:383:3,133,8.5,0,0,-0.193956 -105571,1013:383:4,133.5,8.5,0,0,-0.194087 -105572,1013:384:3,134,8.5,0,0,-0.19207 -105573,1013:384:4,134.5,8.5,0,0,-0.189551 -105574,1013:485:3,135,8.5,0,0,-0.188306 -105575,1013:485:4,135.5,8.5,0,0,-0.188967 -105576,1013:486:3,136,8.5,0,0,-0.190405 -105577,1013:486:4,136.5,8.5,0,0,-0.191584 -105578,1013:487:3,137,8.5,0,0,-0.19215 -105579,1013:487:4,137.5,8.5,0,0,-0.192421 -105580,1013:488:3,138,8.5,0,0,-0.192828 -105581,1013:488:4,138.5,8.5,0,0,-0.193479 -105582,1013:489:3,139,8.5,0,0,-0.19374 -105583,1013:489:4,139.5,8.5,0,0,-0.193782 -105584,1014:380:3,140,8.5,0,0,-0.193479 -105585,1014:380:4,140.5,8.5,0,0,-0.193177 -105586,1014:381:3,141,8.5,0,0,-0.193002 -105587,1014:381:4,141.5,8.5,0,0,-0.192881 -105588,1014:382:3,142,8.5,0,0,-0.192854 -105589,1014:382:4,142.5,8.5,0,0,-0.192917 -105590,1014:383:3,143,8.5,0,0,-0.193133 -105591,1014:383:4,143.5,8.5,0,0,-0.193306 -105592,1014:384:3,144,8.5,0,0,-0.193523 -105593,1014:384:4,144.5,8.5,0,0,-0.193782 -105594,1014:485:3,145,8.5,0,0,-0.193913 -105595,1014:485:4,145.5,8.5,0,0,-0.19335 -105596,1014:486:3,146,8.5,0,0,-0.192042 -105597,1014:486:4,146.5,8.5,0,0,-0.192205 -105598,1014:487:3,147,8.5,0,0,-0.193956 -105599,1014:487:4,147.5,8.5,0,0,-0.194479 -105600,1014:488:3,148,8.5,0,0,-0.194566 -105601,1014:488:4,148.5,8.5,0,0,-0.194784 -105602,1014:489:3,149,8.5,0,0,-0.19509 -105603,1014:489:4,149.5,8.5,0,0,-0.195309 -105604,1015:380:3,150,8.5,0,0,-0.195397 -105605,1015:380:4,150.5,8.5,0,0,-0.195397 -105606,1015:381:3,151,8.5,0,0,-0.195572 -105607,1015:381:4,151.5,8.5,0,0,-0.196011 -105608,1015:382:3,152,8.5,0,0,-0.196496 -105609,1015:382:4,152.5,8.5,0,0,-0.196717 -105610,1015:383:3,153,8.5,0,0,-0.196894 -105611,1015:383:4,153.5,8.5,0,0,-0.196628 -105612,1015:384:3,154,8.5,0,0,-0.195528 -105613,1015:384:4,154.5,8.5,0,0,-0.194348 -105614,1015:485:3,155,8.5,0,0,-0.193133 -105615,1015:485:4,155.5,8.5,0,0,-0.192286 -105616,1015:486:3,156,8.5,0,0,-0.191531 -105617,1015:486:4,156.5,8.5,0,0,-0.190779 -105618,1015:487:3,157,8.5,0,0,-0.190164 -105619,1015:487:4,157.5,8.5,0,0,-0.189737 -105620,1015:488:3,158,8.5,0,0,-0.189631 -105621,1015:488:4,158.5,8.5,0,0,-0.189365 -105622,1015:489:3,159,8.5,0,0,-0.188702 -105623,1015:489:4,159.5,8.5,0,0,-0.187805 -105624,1016:380:3,160,8.5,0,0,-0.186887 -105625,1016:380:4,160.5,8.5,0,0,-0.185974 -105626,1016:381:3,161,8.5,0,0,-0.185015 -105627,1016:381:4,161.5,8.5,0,0,-0.184062 -105628,1016:382:3,162,8.5,0,0,-0.183267 -105629,1016:382:4,162.5,8.5,0,0,-0.18268 -105630,1016:383:3,163,8.5,0,0,-0.182273 -105631,1016:383:4,163.5,8.5,0,0,-0.181993 -105632,1016:384:3,164,8.5,0,0,-0.181917 -105633,1016:384:4,164.5,8.5,0,0,-0.181892 -105634,1016:485:3,165,8.5,0,0,-0.181715 -105635,1016:485:4,165.5,8.5,0,0,-0.181285 -105636,1016:486:3,166,8.5,0,0,-0.180454 -105637,1016:486:4,166.5,8.5,0,0,-0.179427 -105638,1016:487:3,167,8.5,0,0,-0.178531 -105639,1016:487:4,167.5,8.5,0,0,-0.177271 -105640,1016:488:3,168,8.5,0,0,-0.175875 -105641,1016:488:4,168.5,8.5,0,0,-0.174903 -105642,1016:489:3,169,8.5,0,0,-0.173961 -105643,1016:489:4,169.5,8.5,0,0,-0.172809 -105644,1017:380:3,170,8.5,0,0,-0.171476 -105645,1017:380:4,170.5,8.5,0,0,-0.170391 -105646,1017:381:3,171,8.5,0,0,-0.169664 -105647,1017:381:4,171.5,8.5,0,0,-0.169219 -105648,1017:382:3,172,8.5,0,0,-0.168963 -105649,1017:382:4,172.5,8.5,0,0,-0.168777 -105650,1017:383:3,173,8.5,0,0,-0.168568 -105651,1017:383:4,173.5,8.5,0,0,-0.168359 -105652,1017:384:3,174,8.5,0,0,-0.168035 -105653,1017:384:4,174.5,8.5,0,0,-0.167526 -105654,1017:485:3,175,8.5,0,0,-0.166859 -105655,1017:485:4,175.5,8.5,0,0,-0.166058 -105656,1017:486:3,176,8.5,0,0,-0.165033 -105657,1017:486:4,176.5,8.5,0,0,-0.164017 -105658,1017:487:3,177,8.5,0,0,-0.163298 -105659,1017:487:4,177.5,8.5,0,0,-0.16294 -105660,1017:488:3,178,8.5,0,0,-0.163119 -105661,1017:488:4,178.5,8.5,0,0,-0.163612 -105662,1017:489:3,179,8.5,0,0,-0.164197 -105663,1017:489:4,179.5,8.5,0,0,-0.164739 -105664,1018:380:3,180,8.5,0,0,-0.165193 -105665,7018:390:1,-180,9,0,0,-0.161783 -105666,7017:499:2,-179.5,9,0,0,-0.162272 -105667,7017:499:1,-179,9,0,0,-0.162628 -105668,7017:498:2,-178.5,9,0,0,-0.162406 -105669,7017:498:1,-178,9,0,0,-0.161695 -105670,7017:497:2,-177.5,9,0,0,-0.160878 -105671,7017:497:1,-177,9,0,0,-0.160284 -105672,7017:496:2,-176.5,9,0,0,-0.159825 -105673,7017:496:1,-176,9,0,0,-0.159301 -105674,7017:495:2,-175.5,9,0,0,-0.158367 -105675,7017:495:1,-175,9,0,0,-0.15714 -105676,7017:394:2,-174.5,9,0,0,-0.156136 -105677,7017:394:1,-174,9,0,0,-0.155181 -105678,7017:393:2,-173.5,9,0,0,-0.154549 -105679,7017:393:1,-173,9,0,0,-0.154233 -105680,7017:392:2,-172.5,9,0,0,-0.154465 -105681,7017:392:1,-172,9,0,0,-0.15516 -105682,7017:391:2,-171.5,9,0,0,-0.155838 -105683,7017:391:1,-171,9,0,0,-0.156541 -105684,7017:390:2,-170.5,9,0,0,-0.157011 -105685,7017:390:1,-170,9,0,0,-0.156712 -105686,7016:499:2,-169.5,9,0,0,-0.155605 -105687,7016:499:1,-169,9,0,0,-0.15417 -105688,7016:498:2,-168.5,9,0,0,-0.152917 -105689,7016:498:1,-168,9,0,0,-0.151696 -105690,7016:497:2,-167.5,9,0,0,-0.150793 -105691,7016:497:1,-167,9,0,0,-0.151039 -105692,7016:496:2,-166.5,9,0,0,-0.152502 -105693,7016:496:1,-166,9,0,0,-0.153126 -105694,7016:495:2,-165.5,9,0,0,-0.153375 -105695,7016:495:1,-165,9,0,0,-0.153209 -105696,7016:394:2,-164.5,9,0,0,-0.152709 -105697,7016:394:1,-164,9,0,0,-0.151861 -105698,7016:393:2,-163.5,9,0,0,-0.15067 -105699,7016:393:1,-163,9,0,0,-0.149409 -105700,7016:392:2,-162.5,9,0,0,-0.148259 -105701,7016:392:1,-162,9,0,0,-0.147659 -105702,7016:391:2,-161.5,9,0,0,-0.147878 -105703,7016:391:1,-161,9,0,0,-0.147999 -105704,7016:390:2,-160.5,9,0,0,-0.146742 -105705,7016:390:1,-160,9,0,0,-0.146425 -105706,7015:499:2,-159.5,9,0,0,-0.14722 -105707,7015:499:1,-159,9,0,0,-0.147939 -105708,7015:498:2,-158.5,9,0,0,-0.147698 -105709,7015:498:1,-158,9,0,0,-0.145361 -105710,7015:497:2,-157.5,9,0,0,-0.142354 -105711,7015:497:1,-157,9,0,0,-0.139378 -105712,7015:496:2,-156.5,9,0,0,-0.138041 -105713,7015:496:1,-156,9,0,0,-0.139453 -105714,7015:495:2,-155.5,9,0,0,-0.142911 -105715,7015:495:1,-155,9,0,0,-0.144052 -105716,7015:394:2,-154.5,9,0,0,-0.143045 -105717,7015:394:1,-154,9,0,0,-0.141837 -105718,7015:393:2,-153.5,9,0,0,-0.140582 -105719,7015:393:1,-153,9,0,0,-0.139979 -105720,7015:392:2,-152.5,9,0,0,-0.139866 -105721,7015:392:1,-152,9,0,0,-0.139998 -105722,7015:391:2,-151.5,9,0,0,-0.139603 -105723,7015:391:1,-151,9,0,0,-0.138716 -105724,7015:390:2,-150.5,9,0,0,-0.137823 -105725,7015:390:1,-150,9,0,0,-0.137371 -105726,7014:499:2,-149.5,9,0,0,-0.13702 -105727,7014:499:1,-149,9,0,0,-0.136753 -105728,7014:498:2,-148.5,9,0,0,-0.136937 -105729,7014:498:1,-148,9,0,0,-0.138075 -105730,7014:497:2,-147.5,9,0,0,-0.13919 -105731,7014:497:1,-147,9,0,0,-0.139241 -105732,7014:496:2,-146.5,9,0,0,-0.138953 -105733,7014:496:1,-146,9,0,0,-0.138496 -105734,7014:495:2,-145.5,9,0,0,-0.137571 -105735,7014:495:1,-145,9,0,0,-0.137003 -105736,7014:394:2,-144.5,9,0,0,-0.138513 -105737,7014:394:1,-144,9,0,0,-0.13717 -105738,7014:393:2,-143.5,9,0,0,-0.13605 -105739,7014:393:1,-143,9,0,0,-0.13605 -105740,7014:392:2,-142.5,9,0,0,-0.13605 -105741,7014:392:1,-142,9,0,0,-0.13605 -105742,7014:391:2,-141.5,9,0,0,-0.136937 -105743,7014:391:1,-141,9,0,0,-0.136641 -105744,7014:390:2,-140.5,9,0,0,-0.13605 -105745,7014:390:1,-140,9,0,0,-0.13605 -105746,7013:499:2,-139.5,9,0,0,-0.13605 -105747,7013:499:1,-139,9,0,0,-0.13605 -105748,7013:498:2,-138.5,9,0,0,-0.13605 -105749,7013:498:1,-138,9,0,0,-0.13605 -105750,7013:497:2,-137.5,9,0,0,-0.13605 -105751,7013:497:1,-137,9,0,0,-0.13605 -105752,7013:496:2,-136.5,9,0,0,-0.13605 -105753,7013:496:1,-136,9,0,0,-0.13605 -105754,7013:495:2,-135.5,9,0,0,-0.13605 -105755,7013:495:1,-135,9,0,0,-0.13605 -105756,7013:394:2,-134.5,9,0,0,-0.13605 -105757,7013:394:1,-134,9,0,0,-0.13605 -105758,7013:393:2,-133.5,9,0,0,-0.13605 -105759,7013:393:1,-133,9,0,0,-0.13605 -105760,7013:392:2,-132.5,9,0,0,-0.13605 -105761,7013:392:1,-132,9,0,0,-0.13605 -105762,7013:391:2,-131.5,9,0,0,-0.13605 -105763,7013:391:1,-131,9,0,0,-0.13605 -105764,7013:390:2,-130.5,9,0,0,-0.13605 -105765,7013:390:1,-130,9,0,0,-0.13605 -105766,7012:499:2,-129.5,9,0,0,-0.13605 -105767,7012:499:1,-129,9,0,0,-0.13605 -105768,7012:498:2,-128.5,9,0,0,-0.13605 -105769,7012:498:1,-128,9,0,0,-0.13605 -105770,7012:497:2,-127.5,9,0,0,-0.13605 -105771,7012:497:1,-127,9,0,0,-0.13605 -105772,7012:496:2,-126.5,9,0,0,-0.13605 -105773,7012:496:1,-126,9,0,0,-0.13605 -105774,7012:495:2,-125.5,9,0,0,-0.13605 -105775,7012:495:1,-125,9,0,0,-0.13605 -105776,7012:394:2,-124.5,9,0,0,-0.13605 -105777,7012:394:1,-124,9,0,0,-0.13605 -105778,7012:393:2,-123.5,9,0,0,-0.13605 -105779,7012:393:1,-123,9,0,0,-0.13605 -105780,7012:392:2,-122.5,9,0,0,-0.13605 -105781,7012:392:1,-122,9,0,0,-0.13605 -105782,7012:391:2,-121.5,9,0,0,-0.13605 -105783,7012:391:1,-121,9,0,0,-0.13605 -105784,7012:390:2,-120.5,9,0,0,-0.13605 -105785,7012:390:1,-120,9,0,0,-0.13605 -105786,7011:499:2,-119.5,9,0,0,-0.136211 -105787,7011:499:1,-119,9,0,0,-0.138361 -105788,7011:498:2,-118.5,9,0,0,-0.139326 -105789,7011:498:1,-118,9,0,0,-0.139037 -105790,7011:497:2,-117.5,9,0,0,-0.138378 -105791,7011:497:1,-117,9,0,0,-0.138716 -105792,7011:496:2,-116.5,9,0,0,-0.140167 -105793,7011:496:1,-116,9,0,0,-0.141056 -105794,7011:495:2,-115.5,9,0,0,-0.139641 -105795,7011:495:1,-115,9,0,0,-0.139716 -105796,7011:394:2,-114.5,9,0,0,-0.141189 -105797,7011:394:1,-114,9,0,0,-0.141722 -105798,7011:393:2,-113.5,9,0,0,-0.141322 -105799,7011:393:1,-113,9,0,0,-0.140904 -105800,7011:392:2,-112.5,9,0,0,-0.141398 -105801,7011:392:1,-112,9,0,0,-0.14347 -105802,7011:391:2,-111.5,9,0,0,-0.147718 -105803,7011:391:1,-111,9,0,0,-0.153647 -105804,7011:390:2,-110.5,9,0,0,-0.158584 -105805,7011:390:1,-110,9,0,0,-0.163075 -105806,7010:499:2,-109.5,9,0,0,-0.168823 -105807,7010:499:1,-109,9,0,0,-0.177345 -105808,7010:498:2,-108.5,9,0,0,-0.184886 -105809,7010:498:1,-108,9,0,0,-0.186757 -105810,7010:497:2,-107.5,9,0,0,-0.187412 -105811,7010:497:1,-107,9,0,0,-0.191558 -105812,7010:496:2,-106.5,9,0,0,-0.20841 -105813,7010:496:1,-106,9,0,0,-0.198047 -105814,7010:495:2,-105.5,9,0,0,-0.230597 -105815,7010:495:1,-105,9,0,0,-0.348955 -105816,7010:394:2,-104.5,9,0,0,-0.474744 -105817,7010:394:1,-104,9,0,0,-0.546016 -105818,7010:393:2,-103.5,9,0,0,-0.508252 -105819,7010:393:1,-103,9,0,0,-0.754919 -105820,7010:392:2,-102.5,9,0,0,-1.68399 -105821,7010:392:1,-102,9,0,0,-2.20871 -105822,7010:391:2,-101.5,9,0,0,-1.15795 -105823,7010:391:1,-101,9,0,0,-0.72072 -105824,7010:390:2,-100.5,9,0,0,-0.595811 -105825,7008:498:1,-88,9,0,0,-0.192556 -105826,7008:497:2,-87.5,9,0,0,-0.192584 -105827,7008:497:1,-87,9,0,0,-0.190137 -105828,7008:496:2,-86.5,9,0,0,-0.189233 -105829,7008:496:1,-86,9,0,0,-0.189312 -105830,7008:495:2,-85.5,9,0,0,-0.190244 -105831,7008:495:1,-85,9,0,0,-0.191316 -105832,7008:394:2,-84.5,9,0,0,-0.190967 -105833,7008:394:1,-84,9,0,0,-0.189684 -105834,7008:393:2,-83.5,9,0,0,-0.188782 -105835,7008:393:1,-83,9,0,0,-0.189472 -105836,7008:392:2,-82.5,9,0,0,-0.190324 -105837,7008:392:1,-82,9,0,0,-0.190484 -105838,7008:391:2,-81.5,9,0,0,-0.190004 -105839,7008:391:1,-81,9,0,0,-0.191989 -105840,7008:390:2,-80.5,9,0,0,-0.194305 -105841,7008:390:1,-80,9,0,0,-0.198541 -105842,7007:499:2,-79.5,9,0,0,-0.199119 -105843,7007:499:1,-79,9,0,0,-0.198359 -105844,7007:498:2,-78.5,9,0,0,-0.190484 -105845,7007:498:1,-78,9,0,0,-0.19335 -105846,7007:497:2,-77.5,9,0,0,-0.19461 -105847,7007:497:1,-77,9,0,0,-0.195222 -105848,7007:496:2,-76.5,9,0,0,-0.199516 -105849,7007:496:1,-76,9,0,0,-0.206187 -105850,7007:495:2,-75.5,9,0,0,-0.198136 -105851,7007:495:1,-75,9,0,0,-0.194915 -105852,7007:394:2,-74.5,9,0,0,-0.197203 -105853,7007:394:1,-74,9,0,0,-0.199234 -105854,7007:393:2,-73.5,9,0,0,-0.198225 -105855,7007:393:1,-73,9,0,0,-0.196938 -105856,7007:392:2,-72.5,9,0,0,-0.195968 -105857,7007:392:1,-72,9,0,0,-0.195178 -105858,7007:391:2,-71.5,9,0,0,-0.192881 -105859,7007:391:1,-71,9,0,0,-0.191908 -105860,7007:390:2,-70.5,9,0,0,-0.192177 -105861,7007:390:1,-70,9,0,0,-0.192584 -105862,7006:499:2,-69.5,9,0,0,-0.192611 -105863,7006:499:1,-69,9,0,0,-0.192394 -105864,7006:498:2,-68.5,9,0,0,-0.19215 -105865,7006:498:1,-68,9,0,0,-0.191962 -105866,7006:497:2,-67.5,9,0,0,-0.191074 -105867,7006:497:1,-67,9,0,0,-0.190244 -105868,7006:496:2,-66.5,9,0,0,-0.18995 -105869,7006:496:1,-66,9,0,0,-0.190671 -105870,7006:495:2,-65.5,9,0,0,-0.190431 -105871,7006:495:1,-65,9,0,0,-0.189391 -105872,7006:394:2,-64.5,9,0,0,-0.188571 -105873,7006:394:1,-64,9,0,0,-0.188359 -105874,7006:393:2,-63.5,9,0,0,-0.187464 -105875,7006:393:1,-63,9,0,0,-0.184705 -105876,7006:392:2,-62.5,9,0,0,-0.183215 -105877,7006:392:1,-62,9,0,0,-0.18342 -105878,7006:391:2,-61.5,9,0,0,-0.181209 -105879,7006:391:1,-61,9,0,0,-0.18068 -105880,7006:390:2,-60.5,9,0,0,-0.180354 -105881,7006:390:1,-60,9,0,0,-0.179552 -105882,7005:499:2,-59.5,9,0,0,-0.178655 -105883,7005:499:1,-59,9,0,0,-0.177641 -105884,7005:498:2,-58.5,9,0,0,-0.176412 -105885,7005:498:1,-58,9,0,0,-0.175559 -105886,7005:497:2,-57.5,9,0,0,-0.174878 -105887,7005:497:1,-57,9,0,0,-0.173961 -105888,7005:496:2,-56.5,9,0,0,-0.173072 -105889,7005:496:1,-56,9,0,0,-0.171975 -105890,7005:495:2,-55.5,9,0,0,-0.171027 -105891,7005:495:1,-55,9,0,0,-0.169804 -105892,7005:394:2,-54.5,9,0,0,-0.168614 -105893,7005:394:1,-54,9,0,0,-0.167365 -105894,7005:393:2,-53.5,9,0,0,-0.165829 -105895,7005:393:1,-53,9,0,0,-0.164581 -105896,7005:392:2,-52.5,9,0,0,-0.16359 -105897,7005:392:1,-52,9,0,0,-0.16245 -105898,7005:391:2,-51.5,9,0,0,-0.161452 -105899,7005:391:1,-51,9,0,0,-0.160723 -105900,7005:390:2,-50.5,9,0,0,-0.160219 -105901,7005:390:1,-50,9,0,0,-0.159606 -105902,7004:499:2,-49.5,9,0,0,-0.158454 -105903,7004:499:1,-49,9,0,0,-0.15744 -105904,7004:498:2,-48.5,9,0,0,-0.156434 -105905,7004:498:1,-48,9,0,0,-0.155329 -105906,7004:497:2,-47.5,9,0,0,-0.153982 -105907,7004:497:1,-47,9,0,0,-0.152357 -105908,7004:496:2,-46.5,9,0,0,-0.151429 -105909,7004:496:1,-46,9,0,0,-0.150302 -105910,7004:495:2,-45.5,9,0,0,-0.149469 -105911,7004:495:1,-45,9,0,0,-0.148521 -105912,7004:394:2,-44.5,9,0,0,-0.147479 -105913,7004:394:1,-44,9,0,0,-0.146624 -105914,7004:393:2,-43.5,9,0,0,-0.145557 -105915,7004:393:1,-43,9,0,0,-0.144734 -105916,7004:392:2,-42.5,9,0,0,-0.144383 -105917,7004:392:1,-42,9,0,0,-0.144578 -105918,7004:391:2,-41.5,9,0,0,-0.144208 -105919,7004:391:1,-41,9,0,0,-0.142603 -105920,7004:390:2,-40.5,9,0,0,-0.140242 -105921,7004:390:1,-40,9,0,0,-0.138563 -105922,7003:499:2,-39.5,9,0,0,-0.138058 -105923,7003:499:1,-39,9,0,0,-0.13784 -105924,7003:498:2,-38.5,9,0,0,-0.137455 -105925,7003:498:1,-38,9,0,0,-0.136737 -105926,7003:497:2,-37.5,9,0,0,-0.136056 -105927,7003:497:1,-37,9,0,0,-0.13605 -105928,7003:496:2,-36.5,9,0,0,-0.13605 -105929,7003:496:1,-36,9,0,0,-0.13605 -105930,7003:495:2,-35.5,9,0,0,-0.13605 -105931,7003:495:1,-35,9,0,0,-0.13605 -105932,7003:394:2,-34.5,9,0,0,-0.13605 -105933,7003:394:1,-34,9,0,0,-0.13605 -105934,7003:393:2,-33.5,9,0,0,-0.13605 -105935,7003:393:1,-33,9,0,0,-0.13605 -105936,7003:392:2,-32.5,9,0,0,-0.13605 -105937,7003:392:1,-32,9,0,0,-0.13605 -105938,7003:391:2,-31.5,9,0,0,-0.13605 -105939,7003:391:1,-31,9,0,0,-0.13605 -105940,7003:390:2,-30.5,9,0,0,-0.13605 -105941,7003:390:1,-30,9,0,0,-0.13605 -105942,7002:499:2,-29.5,9,0,0,-0.13605 -105943,7002:499:1,-29,9,0,0,-0.13605 -105944,7002:498:2,-28.5,9,0,0,-0.13605 -105945,7002:498:1,-28,9,0,0,-0.13605 -105946,7002:497:2,-27.5,9,0,0,-0.13605 -105947,7002:497:1,-27,9,0,0,-0.13605 -105948,7002:496:2,-26.5,9,0,0,-0.13605 -105949,7002:496:1,-26,9,0,0,-0.13605 -105950,7002:495:1,-25,9,0,0,-0.13605 -105951,7002:394:2,-24.5,9,0,0,-0.13605 -105952,7002:394:1,-24,9,0,0,-0.13605 -105953,7002:393:2,-23.5,9,0,0,-0.13605 -105954,7002:393:1,-23,9,0,0,-0.13605 -105955,7002:392:2,-22.5,9,0,0,-0.13605 -105956,7002:392:1,-22,9,0,0,-0.13605 -105957,7002:391:2,-21.5,9,0,0,-0.13605 -105958,7002:391:1,-21,9,0,0,-0.13605 -105959,7002:390:2,-20.5,9,0,0,-0.13605 -105960,7002:390:1,-20,9,0,0,-0.13605 -105961,7001:499:2,-19.5,9,0,0,-0.13605 -105962,7001:499:1,-19,9,0,0,-0.13605 -105963,7001:498:2,-18.5,9,0,0,-0.13605 -105964,7001:498:1,-18,9,0,0,-0.13605 -105965,7001:497:2,-17.5,9,0,0,-0.13605 -105966,7001:497:1,-17,9,0,0,-0.13605 -105967,1003:499:1,39,9,0,0,-0.233063 -105968,1003:499:2,39.5,9,0,0,-0.187832 -105969,1004:390:1,40,9,0,0,-0.186522 -105970,1004:390:2,40.5,9,0,0,-0.184628 -105971,1004:391:2,41.5,9,0,0,-0.204833 -105972,1004:392:1,42,9,0,0,-0.21207 -105973,1005:394:1,54,9,0,0,-0.146822 -105974,1005:495:1,55,9,0,0,-0.14603 -105975,1005:495:2,55.5,9,0,0,-0.149571 -105976,1005:496:1,56,9,0,0,-0.150384 -105977,1005:496:2,56.5,9,0,0,-0.148762 -105978,1005:497:1,57,9,0,0,-0.148923 -105979,1005:497:2,57.5,9,0,0,-0.149045 -105980,1005:498:1,58,9,0,0,-0.150282 -105981,1005:498:2,58.5,9,0,0,-0.149449 -105982,1005:499:1,59,9,0,0,-0.148782 -105983,1005:499:2,59.5,9,0,0,-0.149004 -105984,1006:390:1,60,9,0,0,-0.149895 -105985,1006:390:2,60.5,9,0,0,-0.153688 -105986,1006:391:1,61,9,0,0,-0.158152 -105987,1006:391:2,61.5,9,0,0,-0.159235 -105988,1006:392:1,62,9,0,0,-0.158757 -105989,1006:392:2,62.5,9,0,0,-0.159453 -105990,1006:393:1,63,9,0,0,-0.160504 -105991,1006:393:2,63.5,9,0,0,-0.162272 -105992,1006:394:1,64,9,0,0,-0.163545 -105993,1006:394:2,64.5,9,0,0,-0.164558 -105994,1006:495:1,65,9,0,0,-0.165852 -105995,1006:495:2,65.5,9,0,0,-0.16815 -105996,1006:496:1,66,9,0,0,-0.171547 -105997,1006:496:2,66.5,9,0,0,-0.17466 -105998,1006:497:1,67,9,0,0,-0.177173 -105999,1006:497:2,67.5,9,0,0,-0.179352 -106000,1006:498:1,68,9,0,0,-0.18174 -106001,1006:498:2,68.5,9,0,0,-0.185793 -106002,1006:499:1,69,9,0,0,-0.191449 -106003,1006:499:2,69.5,9,0,0,-0.197647 -106004,1007:390:1,70,9,0,0,-0.215105 -106005,1007:390:2,70.5,9,0,0,-0.255977 -106006,1007:391:1,71,9,0,0,-0.295913 -106007,1007:391:2,71.5,9,0,0,-0.341496 -106008,1007:392:1,72,9,0,0,-0.359019 -106009,1007:392:2,72.5,9,0,0,-0.270349 -106010,1007:393:2,73.5,9,0,0,-0.212617 -106011,1008:393:1,83,9,0,0,-0.15941 -106012,1008:393:2,83.5,9,0,0,-0.160043 -106013,1008:394:1,84,9,0,0,-0.168243 -106014,1008:394:2,84.5,9,0,0,-0.169243 -106015,1008:495:1,85,9,0,0,-0.16873 -106016,1008:495:2,85.5,9,0,0,-0.170367 -106017,1008:496:1,86,9,0,0,-0.173336 -106018,1008:496:2,86.5,9,0,0,-0.177271 -106019,1008:497:1,87,9,0,0,-0.181892 -106020,1008:497:2,87.5,9,0,0,-0.185248 -106021,1008:498:1,88,9,0,0,-0.189285 -106022,1008:498:2,88.5,9,0,0,-0.190484 -106023,1008:499:1,89,9,0,0,-0.189711 -106024,1008:499:2,89.5,9,0,0,-0.190324 -106025,1009:390:1,90,9,0,0,-0.191423 -106026,1009:390:2,90.5,9,0,0,-0.19234 -106027,1009:391:1,91,9,0,0,-0.194784 -106028,1009:391:2,91.5,9,0,0,-0.197514 -106029,1009:392:1,92,9,0,0,-0.214809 -106030,1009:392:2,92.5,9,0,0,-0.249331 -106031,1009:393:1,93,9,0,0,-0.201842 -106032,1009:393:2,93.5,9,0,0,-0.188464 -106033,1009:394:1,94,9,0,0,-0.190698 -106034,1009:394:2,94.5,9,0,0,-0.204445 -106035,1009:497:2,97.5,9,0,0,-0.183779 -106036,1010:497:2,107.5,9,0,0,-0.13605 -106037,1010:498:1,108,9,0,0,-0.136537 -106038,1010:498:2,108.5,9,0,0,-0.140224 -106039,1010:499:1,109,9,0,0,-0.138597 -106040,1010:499:2,109.5,9,0,0,-0.137471 -106041,1011:390:1,110,9,0,0,-0.139071 -106042,1011:390:2,110.5,9,0,0,-0.143161 -106043,1011:391:1,111,9,0,0,-0.14544 -106044,1011:391:2,111.5,9,0,0,-0.14702 -106045,1011:392:1,112,9,0,0,-0.146544 -106046,1011:392:2,112.5,9,0,0,-0.145106 -106047,1011:393:1,113,9,0,0,-0.142258 -106048,1011:393:2,113.5,9,0,0,-0.142066 -106049,1011:394:1,114,9,0,0,-0.149692 -106050,1011:394:2,114.5,9,0,0,-0.149348 -106051,1011:495:1,115,9,0,0,-0.149126 -106052,1011:495:2,115.5,9,0,0,-0.149166 -106053,1011:496:1,116,9,0,0,-0.14955 -106054,1011:496:2,116.5,9,0,0,-0.151141 -106055,1011:497:1,117,9,0,0,-0.155287 -106056,1011:497:2,117.5,9,0,0,-0.164446 -106057,1011:498:1,118,9,0,0,-0.172237 -106058,1011:498:2,118.5,9,0,0,-0.179378 -106059,1011:499:1,119,9,0,0,-0.184499 -106060,1011:499:2,119.5,9,0,0,-0.183446 -106061,1012:390:1,120,9,0,0,-0.173287 -106062,1012:390:2,120.5,9,0,0,-0.161651 -106063,1012:393:1,123,9,0,0,-0.180177 -106064,1012:393:2,123.5,9,0,0,-0.175097 -106065,1012:394:1,124,9,0,0,-0.170626 -106066,1012:394:2,124.5,9,0,0,-0.16915 -106067,1012:495:1,125,9,0,0,-0.168661 -106068,1012:495:2,125.5,9,0,0,-0.168359 -106069,1012:496:1,126,9,0,0,-0.168452 -106070,1012:496:2,126.5,9,0,0,-0.169173 -106071,1012:497:1,127,9,0,0,-0.169827 -106072,1012:497:2,127.5,9,0,0,-0.17032 -106073,1012:498:1,128,9,0,0,-0.17072 -106074,1012:498:2,128.5,9,0,0,-0.171429 -106075,1012:499:1,129,9,0,0,-0.172355 -106076,1012:499:2,129.5,9,0,0,-0.173599 -106077,1013:390:1,130,9,0,0,-0.175097 -106078,1013:390:2,130.5,9,0,0,-0.176216 -106079,1013:391:1,131,9,0,0,-0.177937 -106080,1013:391:2,131.5,9,0,0,-0.179827 -106081,1013:392:1,132,9,0,0,-0.181234 -106082,1013:392:2,132.5,9,0,0,-0.183523 -106083,1013:393:1,133,9,0,0,-0.186574 -106084,1013:393:2,133.5,9,0,0,-0.188121 -106085,1013:394:1,134,9,0,0,-0.188333 -106086,1013:394:2,134.5,9,0,0,-0.187885 -106087,1013:495:1,135,9,0,0,-0.187123 -106088,1013:495:2,135.5,9,0,0,-0.186209 -106089,1013:496:1,136,9,0,0,-0.187149 -106090,1013:496:2,136.5,9,0,0,-0.188623 -106091,1013:497:1,137,9,0,0,-0.189472 -106092,1013:497:2,137.5,9,0,0,-0.190004 -106093,1013:498:1,138,9,0,0,-0.190378 -106094,1013:498:2,138.5,9,0,0,-0.190645 -106095,1013:499:1,139,9,0,0,-0.190752 -106096,1013:499:2,139.5,9,0,0,-0.190671 -106097,1014:390:1,140,9,0,0,-0.190324 -106098,1014:390:2,140.5,9,0,0,-0.189897 -106099,1014:391:1,141,9,0,0,-0.189551 -106100,1014:391:2,141.5,9,0,0,-0.189445 -106101,1014:392:1,142,9,0,0,-0.189578 -106102,1014:392:2,142.5,9,0,0,-0.189844 -106103,1014:393:1,143,9,0,0,-0.190164 -106104,1014:393:2,143.5,9,0,0,-0.190511 -106105,1014:394:1,144,9,0,0,-0.190671 -106106,1014:394:2,144.5,9,0,0,-0.190725 -106107,1014:495:1,145,9,0,0,-0.190511 -106108,1014:495:2,145.5,9,0,0,-0.18995 -106109,1014:496:1,146,9,0,0,-0.189339 -106110,1014:496:2,146.5,9,0,0,-0.189524 -106111,1014:497:1,147,9,0,0,-0.190297 -106112,1014:497:2,147.5,9,0,0,-0.190564 -106113,1014:498:1,148,9,0,0,-0.190564 -106114,1014:498:2,148.5,9,0,0,-0.190913 -106115,1014:499:1,149,9,0,0,-0.191342 -106116,1014:499:2,149.5,9,0,0,-0.191638 -106117,1015:390:1,150,9,0,0,-0.191827 -106118,1015:390:2,150.5,9,0,0,-0.191611 -106119,1015:391:1,151,9,0,0,-0.191316 -106120,1015:391:2,151.5,9,0,0,-0.191504 -106121,1015:392:1,152,9,0,0,-0.191638 -106122,1015:392:2,152.5,9,0,0,-0.191638 -106123,1015:393:1,153,9,0,0,-0.192124 -106124,1015:393:2,153.5,9,0,0,-0.192854 -106125,1015:394:1,154,9,0,0,-0.193177 -106126,1015:394:2,154.5,9,0,0,-0.192637 -106127,1015:495:1,155,9,0,0,-0.191989 -106128,1015:495:2,155.5,9,0,0,-0.191316 -106129,1015:496:1,156,9,0,0,-0.190618 -106130,1015:496:2,156.5,9,0,0,-0.189737 -106131,1015:497:1,157,9,0,0,-0.188861 -106132,1015:497:2,157.5,9,0,0,-0.187937 -106133,1015:498:1,158,9,0,0,-0.187595 -106134,1015:498:2,158.5,9,0,0,-0.187595 -106135,1015:499:1,159,9,0,0,-0.187648 -106136,1015:499:2,159.5,9,0,0,-0.187622 -106137,1016:390:1,160,9,0,0,-0.18694 -106138,1016:390:2,160.5,9,0,0,-0.186157 -106139,1016:391:1,161,9,0,0,-0.185326 -106140,1016:391:2,161.5,9,0,0,-0.184318 -106141,1016:392:1,162,9,0,0,-0.183063 -106142,1016:392:2,162.5,9,0,0,-0.181867 -106143,1016:393:1,163,9,0,0,-0.180831 -106144,1016:393:2,163.5,9,0,0,-0.179902 -106145,1016:394:1,164,9,0,0,-0.179352 -106146,1016:394:2,164.5,9,0,0,-0.179153 -106147,1016:495:1,165,9,0,0,-0.179327 -106148,1016:495:2,165.5,9,0,0,-0.179677 -106149,1016:496:1,166,9,0,0,-0.179602 -106150,1016:496:2,166.5,9,0,0,-0.179128 -106151,1016:497:1,167,9,0,0,-0.17873 -106152,1016:497:2,167.5,9,0,0,-0.177715 -106153,1016:498:1,168,9,0,0,-0.176241 -106154,1016:498:2,168.5,9,0,0,-0.175194 -106155,1016:499:1,169,9,0,0,-0.174225 -106156,1016:499:2,169.5,9,0,0,-0.173144 -106157,1017:390:1,170,9,0,0,-0.171928 -106158,1017:390:2,170.5,9,0,0,-0.170673 -106159,1017:391:1,171,9,0,0,-0.169664 -106160,1017:391:2,171.5,9,0,0,-0.16894 -106161,1017:392:1,172,9,0,0,-0.168405 -106162,1017:392:2,172.5,9,0,0,-0.167965 -106163,1017:393:1,173,9,0,0,-0.167642 -106164,1017:393:2,173.5,9,0,0,-0.167365 -106165,1017:394:1,174,9,0,0,-0.167158 -106166,1017:394:2,174.5,9,0,0,-0.166905 -106167,1017:495:1,175,9,0,0,-0.166515 -106168,1017:495:2,175.5,9,0,0,-0.166058 -106169,1017:496:1,176,9,0,0,-0.165397 -106170,1017:496:2,176.5,9,0,0,-0.164378 -106171,1017:497:1,177,9,0,0,-0.163142 -106172,1017:497:2,177.5,9,0,0,-0.162183 -106173,1017:498:1,178,9,0,0,-0.161562 -106174,1017:498:2,178.5,9,0,0,-0.161341 -106175,1017:499:1,179,9,0,0,-0.161363 -106176,1017:499:2,179.5,9,0,0,-0.161452 -106177,1018:390:1,180,9,0,0,-0.161783 -106178,7018:390:3,-180,9.5,0,0,-0.159977 -106179,7017:499:4,-179.5,9.5,0,0,-0.159912 -106180,7017:499:3,-179,9.5,0,0,-0.159781 -106181,7017:498:4,-178.5,9.5,0,0,-0.159541 -106182,7017:498:3,-178,9.5,0,0,-0.158975 -106183,7017:497:4,-177.5,9.5,0,0,-0.157936 -106184,7017:497:3,-177,9.5,0,0,-0.157333 -106185,7017:496:4,-176.5,9.5,0,0,-0.158411 -106186,7017:496:3,-176,9.5,0,0,-0.158735 -106187,7017:495:4,-175.5,9.5,0,0,-0.158152 -106188,7017:495:3,-175,9.5,0,0,-0.15684 -106189,7017:394:4,-174.5,9.5,0,0,-0.155689 -106190,7017:394:3,-174,9.5,0,0,-0.15516 -106191,7017:393:4,-173.5,9.5,0,0,-0.15417 -106192,7017:393:3,-173,9.5,0,0,-0.153584 -106193,7017:392:4,-172.5,9.5,0,0,-0.153229 -106194,7017:392:3,-172,9.5,0,0,-0.153105 -106195,7017:391:4,-171.5,9.5,0,0,-0.153731 -106196,7017:391:3,-171,9.5,0,0,-0.15457 -106197,7017:390:4,-170.5,9.5,0,0,-0.15516 -106198,7017:390:3,-170,9.5,0,0,-0.15588 -106199,7016:499:4,-169.5,9.5,0,0,-0.1562 -106200,7016:499:3,-169,9.5,0,0,-0.155669 -106201,7016:498:4,-168.5,9.5,0,0,-0.154359 -106202,7016:498:3,-168,9.5,0,0,-0.152688 -106203,7016:497:4,-167.5,9.5,0,0,-0.150854 -106204,7016:497:3,-167,9.5,0,0,-0.149936 -106205,7016:496:4,-166.5,9.5,0,0,-0.150425 -106206,7016:496:3,-166,9.5,0,0,-0.150732 -106207,7016:495:4,-165.5,9.5,0,0,-0.150752 -106208,7016:495:3,-165,9.5,0,0,-0.150404 -106209,7016:394:4,-164.5,9.5,0,0,-0.149692 -106210,7016:394:3,-164,9.5,0,0,-0.149065 -106211,7016:393:4,-163.5,9.5,0,0,-0.148641 -106212,7016:393:3,-163,9.5,0,0,-0.148259 -106213,7016:392:4,-162.5,9.5,0,0,-0.147598 -106214,7016:392:3,-162,9.5,0,0,-0.146782 -106215,7016:391:4,-161.5,9.5,0,0,-0.146564 -106216,7016:391:3,-161,9.5,0,0,-0.147081 -106217,7016:390:4,-160.5,9.5,0,0,-0.1472 -106218,7016:390:3,-160,9.5,0,0,-0.146445 -106219,7015:499:4,-159.5,9.5,0,0,-0.14538 -106220,7015:499:3,-159,9.5,0,0,-0.143587 -106221,7015:498:4,-158.5,9.5,0,0,-0.142776 -106222,7015:498:3,-158,9.5,0,0,-0.142814 -106223,7015:497:4,-157.5,9.5,0,0,-0.141303 -106224,7015:497:3,-157,9.5,0,0,-0.13697 -106225,7015:496:4,-156.5,9.5,0,0,-0.136139 -106226,7015:496:3,-156,9.5,0,0,-0.136131 -106227,7015:495:4,-155.5,9.5,0,0,-0.137705 -106228,7015:495:3,-155,9.5,0,0,-0.138176 -106229,7015:394:4,-154.5,9.5,0,0,-0.137455 -106230,7015:394:3,-154,9.5,0,0,-0.136853 -106231,7015:393:4,-153.5,9.5,0,0,-0.136804 -106232,7015:393:3,-153,9.5,0,0,-0.136279 -106233,7015:392:4,-152.5,9.5,0,0,-0.13605 -106234,7015:392:3,-152,9.5,0,0,-0.13605 -106235,7015:391:4,-151.5,9.5,0,0,-0.13605 -106236,7015:391:3,-151,9.5,0,0,-0.13605 -106237,7015:390:4,-150.5,9.5,0,0,-0.13605 -106238,7015:390:3,-150,9.5,0,0,-0.13605 -106239,7014:499:4,-149.5,9.5,0,0,-0.13605 -106240,7014:499:3,-149,9.5,0,0,-0.13605 -106241,7014:498:4,-148.5,9.5,0,0,-0.13605 -106242,7014:498:3,-148,9.5,0,0,-0.13605 -106243,7014:497:4,-147.5,9.5,0,0,-0.13605 -106244,7014:497:3,-147,9.5,0,0,-0.13605 -106245,7014:496:4,-146.5,9.5,0,0,-0.13605 -106246,7014:496:3,-146,9.5,0,0,-0.13605 -106247,7014:495:4,-145.5,9.5,0,0,-0.13605 -106248,7014:495:3,-145,9.5,0,0,-0.13605 -106249,7014:394:4,-144.5,9.5,0,0,-0.136119 -106250,7014:394:3,-144,9.5,0,0,-0.136096 -106251,7014:393:4,-143.5,9.5,0,0,-0.13605 -106252,7014:393:3,-143,9.5,0,0,-0.13605 -106253,7014:392:4,-142.5,9.5,0,0,-0.13605 -106254,7014:392:3,-142,9.5,0,0,-0.13605 -106255,7014:391:4,-141.5,9.5,0,0,-0.13605 -106256,7014:391:3,-141,9.5,0,0,-0.13605 -106257,7014:390:4,-140.5,9.5,0,0,-0.13605 -106258,7014:390:3,-140,9.5,0,0,-0.13605 -106259,7013:499:4,-139.5,9.5,0,0,-0.13605 -106260,7013:499:3,-139,9.5,0,0,-0.13605 -106261,7013:498:4,-138.5,9.5,0,0,-0.13605 -106262,7013:498:3,-138,9.5,0,0,-0.13605 -106263,7013:497:4,-137.5,9.5,0,0,-0.13605 -106264,7013:497:3,-137,9.5,0,0,-0.13605 -106265,7013:496:4,-136.5,9.5,0,0,-0.13605 -106266,7013:496:3,-136,9.5,0,0,-0.13605 -106267,7013:495:4,-135.5,9.5,0,0,-0.13605 -106268,7013:495:3,-135,9.5,0,0,-0.13605 -106269,7013:394:4,-134.5,9.5,0,0,-0.13605 -106270,7013:394:3,-134,9.5,0,0,-0.13605 -106271,7013:393:4,-133.5,9.5,0,0,-0.13605 -106272,7013:393:3,-133,9.5,0,0,-0.13605 -106273,7013:392:4,-132.5,9.5,0,0,-0.13605 -106274,7013:392:3,-132,9.5,0,0,-0.13605 -106275,7013:391:4,-131.5,9.5,0,0,-0.13605 -106276,7013:391:3,-131,9.5,0,0,-0.13605 -106277,7013:390:4,-130.5,9.5,0,0,-0.13605 -106278,7013:390:3,-130,9.5,0,0,-0.13605 -106279,7012:499:4,-129.5,9.5,0,0,-0.13605 -106280,7012:499:3,-129,9.5,0,0,-0.13605 -106281,7012:498:4,-128.5,9.5,0,0,-0.13605 -106282,7012:498:3,-128,9.5,0,0,-0.13605 -106283,7012:497:4,-127.5,9.5,0,0,-0.13605 -106284,7012:497:3,-127,9.5,0,0,-0.13605 -106285,7012:496:4,-126.5,9.5,0,0,-0.13605 -106286,7012:496:3,-126,9.5,0,0,-0.13605 -106287,7012:495:4,-125.5,9.5,0,0,-0.13605 -106288,7012:495:3,-125,9.5,0,0,-0.13605 -106289,7012:394:4,-124.5,9.5,0,0,-0.13605 -106290,7012:394:3,-124,9.5,0,0,-0.13605 -106291,7012:393:4,-123.5,9.5,0,0,-0.13605 -106292,7012:393:3,-123,9.5,0,0,-0.13605 -106293,7012:392:4,-122.5,9.5,0,0,-0.13605 -106294,7012:392:3,-122,9.5,0,0,-0.13605 -106295,7012:391:4,-121.5,9.5,0,0,-0.13605 -106296,7012:391:3,-121,9.5,0,0,-0.13605 -106297,7012:390:4,-120.5,9.5,0,0,-0.13605 -106298,7012:390:3,-120,9.5,0,0,-0.13605 -106299,7011:499:4,-119.5,9.5,0,0,-0.13605 -106300,7011:499:3,-119,9.5,0,0,-0.13605 -106301,7011:498:4,-118.5,9.5,0,0,-0.13605 -106302,7011:498:3,-118,9.5,0,0,-0.13605 -106303,7011:497:4,-117.5,9.5,0,0,-0.13605 -106304,7011:497:3,-117,9.5,0,0,-0.13605 -106305,7011:496:4,-116.5,9.5,0,0,-0.13605 -106306,7011:496:3,-116,9.5,0,0,-0.13605 -106307,7011:495:4,-115.5,9.5,0,0,-0.13605 -106308,7011:495:3,-115,9.5,0,0,-0.13605 -106309,7011:394:4,-114.5,9.5,0,0,-0.13605 -106310,7011:394:3,-114,9.5,0,0,-0.13605 -106311,7011:393:4,-113.5,9.5,0,0,-0.13605 -106312,7011:393:3,-113,9.5,0,0,-0.13605 -106313,7011:392:4,-112.5,9.5,0,0,-0.13605 -106314,7011:392:3,-112,9.5,0,0,-0.136853 -106315,7011:391:4,-111.5,9.5,0,0,-0.140356 -106316,7011:391:3,-111,9.5,0,0,-0.145518 -106317,7011:390:4,-110.5,9.5,0,0,-0.151573 -106318,7011:390:3,-110,9.5,0,0,-0.158714 -106319,7010:499:4,-109.5,9.5,0,0,-0.1688 -106320,7010:499:3,-109,9.5,0,0,-0.179777 -106321,7010:498:4,-108.5,9.5,0,0,-0.187622 -106322,7010:498:3,-108,9.5,0,0,-0.189924 -106323,7010:497:4,-107.5,9.5,0,0,-0.191369 -106324,7010:497:3,-107,9.5,0,0,-0.189897 -106325,7010:496:4,-106.5,9.5,0,0,-0.18437 -106326,7010:496:3,-106,9.5,0,0,-0.180579 -106327,7010:495:4,-105.5,9.5,0,0,-0.183165 -106328,7010:495:3,-105,9.5,0,0,-0.19215 -106329,7010:394:4,-104.5,9.5,0,0,-0.246659 -106330,7010:394:3,-104,9.5,0,0,-0.327168 -106331,7010:393:4,-103.5,9.5,0,0,-0.476491 -106332,7010:393:3,-103,9.5,0,0,-0.679488 -106333,7010:392:4,-102.5,9.5,0,0,-0.671127 -106334,7010:392:3,-102,9.5,0,0,-0.630014 -106335,7008:498:3,-88,9.5,0,0,-0.185222 -106336,7008:497:4,-87.5,9.5,0,0,-0.189977 -106337,7008:497:3,-87,9.5,0,0,-0.189365 -106338,7008:496:4,-86.5,9.5,0,0,-0.190217 -106339,7008:496:3,-86,9.5,0,0,-0.190886 -106340,7008:495:4,-85.5,9.5,0,0,-0.191665 -106341,7008:495:3,-85,9.5,0,0,-0.191827 -106342,7008:394:4,-84.5,9.5,0,0,-0.191881 -106343,7008:394:3,-84,9.5,0,0,-0.192637 -106344,7008:393:4,-83.5,9.5,0,0,-0.19335 -106345,7008:393:3,-83,9.5,0,0,-0.193565 -106346,7008:392:4,-82.5,9.5,0,0,-0.19387 -106347,7008:392:3,-82,9.5,0,0,-0.194435 -106348,7008:391:4,-81.5,9.5,0,0,-0.195616 -106349,7008:391:3,-81,9.5,0,0,-0.197602 -106350,7008:390:4,-80.5,9.5,0,0,-0.19917 -106351,7008:390:3,-80,9.5,0,0,-0.200466 -106352,7007:499:4,-79.5,9.5,0,0,-0.199119 -106353,7007:499:3,-79,9.5,0,0,-0.197958 -106354,7007:498:4,-78.5,9.5,0,0,-0.196496 -106355,7007:498:3,-78,9.5,0,0,-0.19387 -106356,7007:497:4,-77.5,9.5,0,0,-0.186 -106357,7007:497:3,-77,9.5,0,0,-0.188095 -106358,7007:496:4,-76.5,9.5,0,0,-0.190297 -106359,7007:496:3,-76,9.5,0,0,-0.194043 -106360,7007:495:4,-75.5,9.5,0,0,-0.197914 -106361,7007:495:3,-75,9.5,0,0,-0.197115 -106362,7007:394:4,-74.5,9.5,0,0,-0.196231 -106363,7007:394:3,-74,9.5,0,0,-0.192881 -106364,7007:393:4,-73.5,9.5,0,0,-0.191342 -106365,7007:393:3,-73,9.5,0,0,-0.189791 -106366,7007:392:4,-72.5,9.5,0,0,-0.189285 -106367,7007:392:3,-72,9.5,0,0,-0.188333 -106368,7007:391:3,-71,9.5,0,0,-0.186079 -106369,7007:390:4,-70.5,9.5,0,0,-0.188201 -106370,7007:390:3,-70,9.5,0,0,-0.189524 -106371,7006:499:4,-69.5,9.5,0,0,-0.190217 -106372,7006:499:3,-69,9.5,0,0,-0.190405 -106373,7006:498:4,-68.5,9.5,0,0,-0.190618 -106374,7006:498:3,-68,9.5,0,0,-0.190805 -106375,7006:497:4,-67.5,9.5,0,0,-0.189391 -106376,7006:497:3,-67,9.5,0,0,-0.18799 -106377,7006:496:4,-66.5,9.5,0,0,-0.187438 -106378,7006:496:3,-66,9.5,0,0,-0.187202 -106379,7006:495:4,-65.5,9.5,0,0,-0.1877 -106380,7006:495:3,-65,9.5,0,0,-0.187254 -106381,7006:394:4,-64.5,9.5,0,0,-0.184165 -106382,7006:394:3,-64,9.5,0,0,-0.185559 -106383,7006:393:4,-63.5,9.5,0,0,-0.184344 -106384,7006:393:3,-63,9.5,0,0,-0.182502 -106385,7006:392:4,-62.5,9.5,0,0,-0.180278 -106386,7006:392:3,-62,9.5,0,0,-0.181032 -106387,7006:391:4,-61.5,9.5,0,0,-0.179702 -106388,7006:391:3,-61,9.5,0,0,-0.179203 -106389,7006:390:4,-60.5,9.5,0,0,-0.179502 -106390,7006:390:3,-60,9.5,0,0,-0.177641 -106391,7005:499:4,-59.5,9.5,0,0,-0.175899 -106392,7005:499:3,-59,9.5,0,0,-0.173912 -106393,7005:498:4,-58.5,9.5,0,0,-0.173216 -106394,7005:498:3,-58,9.5,0,0,-0.173024 -106395,7005:497:4,-57.5,9.5,0,0,-0.172547 -106396,7005:497:3,-57,9.5,0,0,-0.172379 -106397,7005:496:4,-56.5,9.5,0,0,-0.17245 -106398,7005:496:3,-56,9.5,0,0,-0.172094 -106399,7005:495:4,-55.5,9.5,0,0,-0.170886 -106400,7005:495:3,-55,9.5,0,0,-0.169243 -106401,7005:394:4,-54.5,9.5,0,0,-0.167803 -106402,7005:394:3,-54,9.5,0,0,-0.166744 -106403,7005:393:4,-53.5,9.5,0,0,-0.165898 -106404,7005:393:3,-53,9.5,0,0,-0.165056 -106405,7005:392:4,-52.5,9.5,0,0,-0.16422 -106406,7005:392:3,-52,9.5,0,0,-0.163523 -106407,7005:391:4,-51.5,9.5,0,0,-0.162806 -106408,7005:391:3,-51,9.5,0,0,-0.161783 -106409,7005:390:4,-50.5,9.5,0,0,-0.160833 -106410,7005:390:3,-50,9.5,0,0,-0.159541 -106411,7004:499:4,-49.5,9.5,0,0,-0.157612 -106412,7004:499:3,-49,9.5,0,0,-0.155498 -106413,7004:498:4,-48.5,9.5,0,0,-0.153772 -106414,7004:498:3,-48,9.5,0,0,-0.152543 -106415,7004:497:4,-47.5,9.5,0,0,-0.15147 -106416,7004:497:3,-47,9.5,0,0,-0.150466 -106417,7004:496:4,-46.5,9.5,0,0,-0.149916 -106418,7004:496:3,-46,9.5,0,0,-0.148944 -106419,7004:495:4,-45.5,9.5,0,0,-0.147639 -106420,7004:495:3,-45,9.5,0,0,-0.146723 -106421,7004:394:4,-44.5,9.5,0,0,-0.146188 -106422,7004:394:3,-44,9.5,0,0,-0.145853 -106423,7004:393:4,-43.5,9.5,0,0,-0.1454 -106424,7004:393:3,-43,9.5,0,0,-0.144773 -106425,7004:392:4,-42.5,9.5,0,0,-0.144111 -106426,7004:392:3,-42,9.5,0,0,-0.143374 -106427,7004:391:4,-41.5,9.5,0,0,-0.142507 -106428,7004:391:3,-41,9.5,0,0,-0.141189 -106429,7004:390:4,-40.5,9.5,0,0,-0.13981 -106430,7004:390:3,-40,9.5,0,0,-0.138935 -106431,7003:499:4,-39.5,9.5,0,0,-0.138176 -106432,7003:499:3,-39,9.5,0,0,-0.137404 -106433,7003:498:4,-38.5,9.5,0,0,-0.136692 -106434,7003:498:3,-38,9.5,0,0,-0.136151 -106435,7003:497:4,-37.5,9.5,0,0,-0.13605 -106436,7003:497:3,-37,9.5,0,0,-0.13605 -106437,7003:496:4,-36.5,9.5,0,0,-0.13605 -106438,7003:496:3,-36,9.5,0,0,-0.13605 -106439,7003:495:4,-35.5,9.5,0,0,-0.13605 -106440,7003:495:3,-35,9.5,0,0,-0.13605 -106441,7003:394:4,-34.5,9.5,0,0,-0.13605 -106442,7003:394:3,-34,9.5,0,0,-0.13605 -106443,7003:393:4,-33.5,9.5,0,0,-0.13605 -106444,7003:393:3,-33,9.5,0,0,-0.13605 -106445,7003:392:4,-32.5,9.5,0,0,-0.13605 -106446,7003:392:3,-32,9.5,0,0,-0.13605 -106447,7003:391:4,-31.5,9.5,0,0,-0.13605 -106448,7003:391:3,-31,9.5,0,0,-0.13605 -106449,7003:390:4,-30.5,9.5,0,0,-0.13605 -106450,7003:390:3,-30,9.5,0,0,-0.13605 -106451,7002:499:4,-29.5,9.5,0,0,-0.13605 -106452,7002:499:3,-29,9.5,0,0,-0.13605 -106453,7002:498:4,-28.5,9.5,0,0,-0.13605 -106454,7002:498:3,-28,9.5,0,0,-0.13605 -106455,7002:497:4,-27.5,9.5,0,0,-0.13605 -106456,7002:497:3,-27,9.5,0,0,-0.13605 -106457,7002:496:4,-26.5,9.5,0,0,-0.13605 -106458,7002:496:3,-26,9.5,0,0,-0.13605 -106459,7002:495:4,-25.5,9.5,0,0,-0.13605 -106460,7002:495:3,-25,9.5,0,0,-0.13605 -106461,7002:394:4,-24.5,9.5,0,0,-0.13605 -106462,7002:394:3,-24,9.5,0,0,-0.13605 -106463,7002:393:4,-23.5,9.5,0,0,-0.13605 -106464,7002:393:3,-23,9.5,0,0,-0.13605 -106465,7002:392:4,-22.5,9.5,0,0,-0.13605 -106466,7002:392:3,-22,9.5,0,0,-0.13605 -106467,7002:391:4,-21.5,9.5,0,0,-0.13605 -106468,7002:391:3,-21,9.5,0,0,-0.13605 -106469,7002:390:4,-20.5,9.5,0,0,-0.13605 -106470,7002:390:3,-20,9.5,0,0,-0.13605 -106471,7001:499:4,-19.5,9.5,0,0,-0.13605 -106472,7001:499:3,-19,9.5,0,0,-0.13605 -106473,7001:498:4,-18.5,9.5,0,0,-0.13605 -106474,7001:498:3,-18,9.5,0,0,-0.13605 -106475,7001:497:4,-17.5,9.5,0,0,-0.13605 -106476,7001:497:3,-17,9.5,0,0,-0.13605 -106477,7001:496:4,-16.5,9.5,0,0,-0.13605 -106478,1003:498:4,38.5,9.5,0,0,-0.237733 -106479,1003:499:3,39,9.5,0,0,-0.351881 -106480,1003:499:4,39.5,9.5,0,0,-0.612584 -106481,1004:390:3,40,9.5,0,0,-1.44477 -106482,1004:390:4,40.5,9.5,0,0,-0.626236 -106483,1004:391:3,41,9.5,0,0,-0.590007 -106484,1004:391:4,41.5,9.5,0,0,-0.348955 -106485,1005:495:4,55.5,9.5,0,0,-0.145794 -106486,1005:496:3,56,9.5,0,0,-0.144617 -106487,1005:496:4,56.5,9.5,0,0,-0.14495 -106488,1005:497:3,57,9.5,0,0,-0.146762 -106489,1005:497:4,57.5,9.5,0,0,-0.149754 -106490,1005:498:3,58,9.5,0,0,-0.149875 -106491,1005:498:4,58.5,9.5,0,0,-0.148863 -106492,1005:499:3,59,9.5,0,0,-0.146862 -106493,1005:499:4,59.5,9.5,0,0,-0.145577 -106494,1006:390:3,60,9.5,0,0,-0.145518 -106495,1006:390:4,60.5,9.5,0,0,-0.148863 -106496,1006:391:3,61,9.5,0,0,-0.154065 -106497,1006:391:4,61.5,9.5,0,0,-0.155669 -106498,1006:392:3,62,9.5,0,0,-0.155245 -106499,1006:392:4,62.5,9.5,0,0,-0.155139 -106500,1006:393:3,63,9.5,0,0,-0.155203 -106501,1006:393:4,63.5,9.5,0,0,-0.155647 -106502,1006:394:3,64,9.5,0,0,-0.156733 -106503,1006:394:4,64.5,9.5,0,0,-0.158173 -106504,1006:495:3,65,9.5,0,0,-0.159475 -106505,1006:495:4,65.5,9.5,0,0,-0.162338 -106506,1006:496:3,66,9.5,0,0,-0.168127 -106507,1006:496:4,66.5,9.5,0,0,-0.1715 -106508,1006:497:3,67,9.5,0,0,-0.172833 -106509,1006:497:4,67.5,9.5,0,0,-0.175753 -106510,1006:498:3,68,9.5,0,0,-0.179327 -106511,1006:498:4,68.5,9.5,0,0,-0.183626 -106512,1006:499:3,69,9.5,0,0,-0.190752 -106513,1006:499:4,69.5,9.5,0,0,-0.195353 -106514,1007:390:3,70,9.5,0,0,-0.205411 -106515,1007:390:4,70.5,9.5,0,0,-0.234848 -106516,1007:391:3,71,9.5,0,0,-0.232716 -106517,1007:391:4,71.5,9.5,0,0,-0.246659 -106518,1007:392:3,72,9.5,0,0,-0.235209 -106519,1007:392:4,72.5,9.5,0,0,-0.197514 -106520,1008:394:3,84,9.5,0,0,-0.154991 -106521,1008:394:4,84.5,9.5,0,0,-0.162028 -106522,1008:495:3,85,9.5,0,0,-0.167319 -106523,1008:495:4,85.5,9.5,0,0,-0.16822 -106524,1008:496:3,86,9.5,0,0,-0.172237 -106525,1008:496:4,86.5,9.5,0,0,-0.173912 -106526,1008:497:3,87,9.5,0,0,-0.177493 -106527,1008:497:4,87.5,9.5,0,0,-0.181917 -106528,1008:498:3,88,9.5,0,0,-0.186548 -106529,1008:498:4,88.5,9.5,0,0,-0.187622 -106530,1008:499:3,89,9.5,0,0,-0.185845 -106531,1008:499:4,89.5,9.5,0,0,-0.186079 -106532,1009:390:3,90,9.5,0,0,-0.187149 -106533,1009:390:4,90.5,9.5,0,0,-0.187228 -106534,1009:391:3,91,9.5,0,0,-0.187149 -106535,1009:391:4,91.5,9.5,0,0,-0.187149 -106536,1009:392:3,92,9.5,0,0,-0.187727 -106537,1009:392:4,92.5,9.5,0,0,-0.192394 -106538,1009:393:3,93,9.5,0,0,-0.194872 -106539,1009:393:4,93.5,9.5,0,0,-0.189737 -106540,1009:394:3,94,9.5,0,0,-0.189817 -106541,1009:394:4,94.5,9.5,0,0,-0.194391 -106542,1010:497:3,107,9.5,0,0,-0.13605 -106543,1010:497:4,107.5,9.5,0,0,-0.13605 -106544,1010:498:3,108,9.5,0,0,-0.136408 -106545,1010:498:4,108.5,9.5,0,0,-0.139922 -106546,1010:499:3,109,9.5,0,0,-0.138395 -106547,1010:499:4,109.5,9.5,0,0,-0.136266 -106548,1011:390:3,110,9.5,0,0,-0.13605 -106549,1011:390:4,110.5,9.5,0,0,-0.13605 -106550,1011:391:3,111,9.5,0,0,-0.13712 -106551,1011:391:4,111.5,9.5,0,0,-0.136667 -106552,1011:392:3,112,9.5,0,0,-0.136109 -106553,1011:392:4,112.5,9.5,0,0,-0.13605 -106554,1011:393:3,113,9.5,0,0,-0.13605 -106555,1011:393:4,113.5,9.5,0,0,-0.13605 -106556,1011:394:3,114,9.5,0,0,-0.136099 -106557,1011:394:4,114.5,9.5,0,0,-0.140167 -106558,1011:495:3,115,9.5,0,0,-0.144285 -106559,1011:495:4,115.5,9.5,0,0,-0.14538 -106560,1011:496:3,116,9.5,0,0,-0.146366 -106561,1011:496:4,116.5,9.5,0,0,-0.1472 -106562,1011:497:3,117,9.5,0,0,-0.147999 -106563,1011:497:4,117.5,9.5,0,0,-0.14955 -106564,1011:498:3,118,9.5,0,0,-0.159366 -106565,1011:498:4,118.5,9.5,0,0,-0.166652 -106566,1011:499:3,119,9.5,0,0,-0.174975 -106567,1011:499:4,119.5,9.5,0,0,-0.178333 -106568,1012:390:3,120,9.5,0,0,-0.173192 -106569,1012:390:4,120.5,9.5,0,0,-0.158086 -106570,1012:392:4,122.5,9.5,0,0,-0.176266 -106571,1012:393:3,123,9.5,0,0,-0.17811 -106572,1012:393:4,123.5,9.5,0,0,-0.168684 -106573,1012:394:3,124,9.5,0,0,-0.164153 -106574,1012:394:4,124.5,9.5,0,0,-0.164197 -106575,1012:495:3,125,9.5,0,0,-0.164694 -106576,1012:495:4,125.5,9.5,0,0,-0.164197 -106577,1012:496:3,126,9.5,0,0,-0.163792 -106578,1012:496:4,126.5,9.5,0,0,-0.16368 -106579,1012:497:3,127,9.5,0,0,-0.16368 -106580,1012:497:4,127.5,9.5,0,0,-0.163635 -106581,1012:498:3,128,9.5,0,0,-0.164355 -106582,1012:498:4,128.5,9.5,0,0,-0.165374 -106583,1012:499:3,129,9.5,0,0,-0.166469 -106584,1012:499:4,129.5,9.5,0,0,-0.16785 -106585,1013:390:3,130,9.5,0,0,-0.168963 -106586,1013:390:4,130.5,9.5,0,0,-0.169383 -106587,1013:391:3,131,9.5,0,0,-0.17065 -106588,1013:391:4,131.5,9.5,0,0,-0.172094 -106589,1013:392:3,132,9.5,0,0,-0.173168 -106590,1013:392:4,132.5,9.5,0,0,-0.175704 -106591,1013:393:3,133,9.5,0,0,-0.179253 -106592,1013:393:4,133.5,9.5,0,0,-0.181613 -106593,1013:394:3,134,9.5,0,0,-0.183037 -106594,1013:394:4,134.5,9.5,0,0,-0.183907 -106595,1013:495:3,135,9.5,0,0,-0.182782 -106596,1013:495:4,135.5,9.5,0,0,-0.182197 -106597,1013:496:3,136,9.5,0,0,-0.18342 -106598,1013:496:4,136.5,9.5,0,0,-0.185015 -106599,1013:497:3,137,9.5,0,0,-0.186443 -106600,1013:497:4,137.5,9.5,0,0,-0.187438 -106601,1013:498:3,138,9.5,0,0,-0.188121 -106602,1013:498:4,138.5,9.5,0,0,-0.188095 -106603,1013:499:3,139,9.5,0,0,-0.187885 -106604,1013:499:4,139.5,9.5,0,0,-0.187622 -106605,1014:390:3,140,9.5,0,0,-0.187254 -106606,1014:390:4,140.5,9.5,0,0,-0.186862 -106607,1014:391:3,141,9.5,0,0,-0.18647 -106608,1014:391:4,141.5,9.5,0,0,-0.186183 -106609,1014:392:3,142,9.5,0,0,-0.186079 -106610,1014:392:4,142.5,9.5,0,0,-0.186287 -106611,1014:393:3,143,9.5,0,0,-0.186652 -106612,1014:393:4,143.5,9.5,0,0,-0.187045 -106613,1014:394:3,144,9.5,0,0,-0.187307 -106614,1014:394:4,144.5,9.5,0,0,-0.187359 -106615,1014:495:3,145,9.5,0,0,-0.187176 -106616,1014:495:4,145.5,9.5,0,0,-0.186887 -106617,1014:496:3,146,9.5,0,0,-0.186705 -106618,1014:496:4,146.5,9.5,0,0,-0.186809 -106619,1014:497:3,147,9.5,0,0,-0.187097 -106620,1014:497:4,147.5,9.5,0,0,-0.187307 -106621,1014:498:3,148,9.5,0,0,-0.18728 -106622,1014:498:4,148.5,9.5,0,0,-0.18728 -106623,1014:499:3,149,9.5,0,0,-0.187385 -106624,1014:499:4,149.5,9.5,0,0,-0.187648 -106625,1015:390:3,150,9.5,0,0,-0.187858 -106626,1015:390:4,150.5,9.5,0,0,-0.188174 -106627,1015:391:3,151,9.5,0,0,-0.188253 -106628,1015:391:4,151.5,9.5,0,0,-0.187753 -106629,1015:392:3,152,9.5,0,0,-0.187018 -106630,1015:392:4,152.5,9.5,0,0,-0.18694 -106631,1015:393:3,153,9.5,0,0,-0.187885 -106632,1015:393:4,153.5,9.5,0,0,-0.189152 -106633,1015:394:3,154,9.5,0,0,-0.189924 -106634,1015:394:4,154.5,9.5,0,0,-0.18995 -106635,1015:495:3,155,9.5,0,0,-0.189604 -106636,1015:495:4,155.5,9.5,0,0,-0.189152 -106637,1015:496:3,156,9.5,0,0,-0.188491 -106638,1015:496:4,156.5,9.5,0,0,-0.187543 -106639,1015:497:3,157,9.5,0,0,-0.186757 -106640,1015:497:4,157.5,9.5,0,0,-0.186053 -106641,1015:498:3,158,9.5,0,0,-0.185766 -106642,1015:498:4,158.5,9.5,0,0,-0.185171 -106643,1015:499:3,159,9.5,0,0,-0.184731 -106644,1015:499:4,159.5,9.5,0,0,-0.184576 -106645,1016:390:3,160,9.5,0,0,-0.184267 -106646,1016:390:4,160.5,9.5,0,0,-0.184447 -106647,1016:391:3,161,9.5,0,0,-0.184653 -106648,1016:391:4,161.5,9.5,0,0,-0.184447 -106649,1016:392:3,162,9.5,0,0,-0.183676 -106650,1016:392:4,162.5,9.5,0,0,-0.182273 -106651,1016:393:3,163,9.5,0,0,-0.180756 -106652,1016:393:4,163.5,9.5,0,0,-0.179452 -106653,1016:394:3,164,9.5,0,0,-0.178408 -106654,1016:394:4,164.5,9.5,0,0,-0.177518 -106655,1016:495:3,165,9.5,0,0,-0.177197 -106656,1016:495:4,165.5,9.5,0,0,-0.177616 -106657,1016:496:3,166,9.5,0,0,-0.17811 -106658,1016:496:4,166.5,9.5,0,0,-0.177715 -106659,1016:497:3,167,9.5,0,0,-0.17678 -106660,1016:497:4,167.5,9.5,0,0,-0.175194 -106661,1016:498:3,168,9.5,0,0,-0.174033 -106662,1016:498:4,168.5,9.5,0,0,-0.174202 -106663,1016:499:3,169,9.5,0,0,-0.174709 -106664,1016:499:4,169.5,9.5,0,0,-0.174322 -106665,1017:390:3,170,9.5,0,0,-0.173216 -106666,1017:390:4,170.5,9.5,0,0,-0.171975 -106667,1017:391:3,171,9.5,0,0,-0.170886 -106668,1017:391:4,171.5,9.5,0,0,-0.169968 -106669,1017:392:3,172,9.5,0,0,-0.169313 -106670,1017:392:4,172.5,9.5,0,0,-0.168591 -106671,1017:393:3,173,9.5,0,0,-0.167734 -106672,1017:393:4,173.5,9.5,0,0,-0.167043 -106673,1017:394:3,174,9.5,0,0,-0.166423 -106674,1017:394:4,174.5,9.5,0,0,-0.165943 -106675,1017:495:3,175,9.5,0,0,-0.165488 -106676,1017:495:4,175.5,9.5,0,0,-0.165056 -106677,1017:496:3,176,9.5,0,0,-0.164446 -106678,1017:496:4,176.5,9.5,0,0,-0.16386 -106679,1017:497:3,177,9.5,0,0,-0.163164 -106680,1017:497:4,177.5,9.5,0,0,-0.162361 -106681,1017:498:3,178,9.5,0,0,-0.161584 -106682,1017:498:4,178.5,9.5,0,0,-0.161098 -106683,1017:499:3,179,9.5,0,0,-0.16068 -106684,1017:499:4,179.5,9.5,0,0,-0.160197 -106685,1018:390:3,180,9.5,0,0,-0.159977 -106686,7118:100:1,-180,10,0,0,-0.158152 -106687,7117:209:2,-179.5,10,0,0,-0.157634 -106688,7117:209:1,-179,10,0,0,-0.158367 -106689,7117:208:2,-178.5,10,0,0,-0.158324 -106690,7117:208:1,-178,10,0,0,-0.157462 -106691,7117:207:2,-177.5,10,0,0,-0.155923 -106692,7117:207:1,-177,10,0,0,-0.154003 -106693,7117:206:2,-176.5,10,0,0,-0.154108 -106694,7117:206:1,-176,10,0,0,-0.155753 -106695,7117:205:2,-175.5,10,0,0,-0.155118 -106696,7117:205:1,-175,10,0,0,-0.153668 -106697,7117:104:2,-174.5,10,0,0,-0.151717 -106698,7117:104:1,-174,10,0,0,-0.152481 -106699,7117:103:2,-173.5,10,0,0,-0.152523 -106700,7117:103:1,-173,10,0,0,-0.151039 -106701,7117:102:2,-172.5,10,0,0,-0.151285 -106702,7117:102:1,-172,10,0,0,-0.151799 -106703,7117:101:2,-171.5,10,0,0,-0.151141 -106704,7117:101:1,-171,10,0,0,-0.150957 -106705,7117:100:2,-170.5,10,0,0,-0.15242 -106706,7117:100:1,-170,10,0,0,-0.152959 -106707,7116:209:2,-169.5,10,0,0,-0.153521 -106708,7116:209:1,-169,10,0,0,-0.153709 -106709,7116:208:2,-168.5,10,0,0,-0.153167 -106710,7116:208:1,-168,10,0,0,-0.152151 -106711,7116:207:2,-167.5,10,0,0,-0.151203 -106712,7116:207:1,-167,10,0,0,-0.150691 -106713,7116:206:2,-166.5,10,0,0,-0.14955 -106714,7116:206:1,-166,10,0,0,-0.14844 -106715,7116:205:2,-165.5,10,0,0,-0.147479 -106716,7116:205:1,-165,10,0,0,-0.146683 -106717,7116:104:2,-164.5,10,0,0,-0.146129 -106718,7116:104:1,-164,10,0,0,-0.146089 -106719,7116:103:2,-163.5,10,0,0,-0.146425 -106720,7116:103:1,-163,10,0,0,-0.146683 -106721,7116:102:2,-162.5,10,0,0,-0.146504 -106722,7116:102:1,-162,10,0,0,-0.146069 -106723,7116:101:2,-161.5,10,0,0,-0.145636 -106724,7116:101:1,-161,10,0,0,-0.145597 -106725,7116:100:2,-160.5,10,0,0,-0.146069 -106726,7116:100:1,-160,10,0,0,-0.146742 -106727,7115:209:2,-159.5,10,0,0,-0.147061 -106728,7115:209:1,-159,10,0,0,-0.147598 -106729,7115:208:2,-158.5,10,0,0,-0.148139 -106730,7115:208:1,-158,10,0,0,-0.147559 -106731,7115:207:2,-157.5,10,0,0,-0.145636 -106732,7115:207:1,-157,10,0,0,-0.137924 -106733,7115:206:2,-156.5,10,0,0,-0.13605 -106734,7115:206:1,-156,10,0,0,-0.13605 -106735,7115:205:2,-155.5,10,0,0,-0.13605 -106736,7115:205:1,-155,10,0,0,-0.13605 -106737,7115:104:2,-154.5,10,0,0,-0.13605 -106738,7115:104:1,-154,10,0,0,-0.13605 -106739,7115:103:2,-153.5,10,0,0,-0.13605 -106740,7115:103:1,-153,10,0,0,-0.13605 -106741,7115:102:2,-152.5,10,0,0,-0.13605 -106742,7115:102:1,-152,10,0,0,-0.13605 -106743,7115:101:2,-151.5,10,0,0,-0.13605 -106744,7115:101:1,-151,10,0,0,-0.13605 -106745,7115:100:2,-150.5,10,0,0,-0.13605 -106746,7115:100:1,-150,10,0,0,-0.13605 -106747,7114:209:2,-149.5,10,0,0,-0.13605 -106748,7114:209:1,-149,10,0,0,-0.13605 -106749,7114:208:2,-148.5,10,0,0,-0.13605 -106750,7114:208:1,-148,10,0,0,-0.13605 -106751,7114:207:2,-147.5,10,0,0,-0.13605 -106752,7114:207:1,-147,10,0,0,-0.13605 -106753,7114:206:2,-146.5,10,0,0,-0.13605 -106754,7114:206:1,-146,10,0,0,-0.13605 -106755,7114:205:2,-145.5,10,0,0,-0.13605 -106756,7114:205:1,-145,10,0,0,-0.13605 -106757,7114:104:2,-144.5,10,0,0,-0.13605 -106758,7114:104:1,-144,10,0,0,-0.13605 -106759,7114:103:2,-143.5,10,0,0,-0.13605 -106760,7114:103:1,-143,10,0,0,-0.13605 -106761,7114:102:2,-142.5,10,0,0,-0.13605 -106762,7114:102:1,-142,10,0,0,-0.13605 -106763,7114:101:2,-141.5,10,0,0,-0.13605 -106764,7114:101:1,-141,10,0,0,-0.13605 -106765,7114:100:2,-140.5,10,0,0,-0.13605 -106766,7114:100:1,-140,10,0,0,-0.13605 -106767,7113:209:2,-139.5,10,0,0,-0.13605 -106768,7113:209:1,-139,10,0,0,-0.13605 -106769,7113:208:2,-138.5,10,0,0,-0.13605 -106770,7113:208:1,-138,10,0,0,-0.13605 -106771,7113:207:2,-137.5,10,0,0,-0.13605 -106772,7113:207:1,-137,10,0,0,-0.13605 -106773,7113:206:2,-136.5,10,0,0,-0.13605 -106774,7113:206:1,-136,10,0,0,-0.13605 -106775,7113:205:2,-135.5,10,0,0,-0.13605 -106776,7113:205:1,-135,10,0,0,-0.13605 -106777,7113:104:2,-134.5,10,0,0,-0.13605 -106778,7113:104:1,-134,10,0,0,-0.13605 -106779,7113:103:2,-133.5,10,0,0,-0.13605 -106780,7113:103:1,-133,10,0,0,-0.13605 -106781,7113:102:2,-132.5,10,0,0,-0.13605 -106782,7113:102:1,-132,10,0,0,-0.13605 -106783,7113:101:2,-131.5,10,0,0,-0.13605 -106784,7113:101:1,-131,10,0,0,-0.13605 -106785,7113:100:2,-130.5,10,0,0,-0.13605 -106786,7113:100:1,-130,10,0,0,-0.13605 -106787,7112:209:2,-129.5,10,0,0,-0.13605 -106788,7112:209:1,-129,10,0,0,-0.13605 -106789,7112:208:2,-128.5,10,0,0,-0.13605 -106790,7112:208:1,-128,10,0,0,-0.13605 -106791,7112:207:2,-127.5,10,0,0,-0.13605 -106792,7112:207:1,-127,10,0,0,-0.13605 -106793,7112:206:2,-126.5,10,0,0,-0.13605 -106794,7112:206:1,-126,10,0,0,-0.13605 -106795,7112:205:2,-125.5,10,0,0,-0.13605 -106796,7112:205:1,-125,10,0,0,-0.13605 -106797,7112:104:2,-124.5,10,0,0,-0.13605 -106798,7112:104:1,-124,10,0,0,-0.13605 -106799,7112:103:2,-123.5,10,0,0,-0.13605 -106800,7112:103:1,-123,10,0,0,-0.13605 -106801,7112:102:2,-122.5,10,0,0,-0.13605 -106802,7112:102:1,-122,10,0,0,-0.13605 -106803,7112:101:2,-121.5,10,0,0,-0.13605 -106804,7112:101:1,-121,10,0,0,-0.13605 -106805,7112:100:2,-120.5,10,0,0,-0.13605 -106806,7112:100:1,-120,10,0,0,-0.13605 -106807,7111:209:2,-119.5,10,0,0,-0.13605 -106808,7111:209:1,-119,10,0,0,-0.13605 -106809,7111:208:2,-118.5,10,0,0,-0.13605 -106810,7111:208:1,-118,10,0,0,-0.13605 -106811,7111:207:2,-117.5,10,0,0,-0.13605 -106812,7111:207:1,-117,10,0,0,-0.13605 -106813,7111:206:2,-116.5,10,0,0,-0.13605 -106814,7111:206:1,-116,10,0,0,-0.13605 -106815,7111:205:2,-115.5,10,0,0,-0.13605 -106816,7111:205:1,-115,10,0,0,-0.13605 -106817,7111:104:2,-114.5,10,0,0,-0.13605 -106818,7111:104:1,-114,10,0,0,-0.13605 -106819,7111:103:2,-113.5,10,0,0,-0.13605 -106820,7111:103:1,-113,10,0,0,-0.13605 -106821,7111:102:2,-112.5,10,0,0,-0.13605 -106822,7111:102:1,-112,10,0,0,-0.136119 -106823,7111:101:2,-111.5,10,0,0,-0.139105 -106824,7111:101:1,-111,10,0,0,-0.142526 -106825,7111:100:2,-110.5,10,0,0,-0.147041 -106826,7111:100:1,-110,10,0,0,-0.153105 -106827,7110:209:2,-109.5,10,0,0,-0.160701 -106828,7110:209:1,-109,10,0,0,-0.170297 -106829,7110:208:2,-108.5,10,0,0,-0.179602 -106830,7110:208:1,-108,10,0,0,-0.184165 -106831,7110:207:2,-107.5,10,0,0,-0.183113 -106832,7110:207:1,-107,10,0,0,-0.179752 -106833,7110:206:2,-106.5,10,0,0,-0.175899 -106834,7110:206:1,-106,10,0,0,-0.176535 -106835,7110:205:2,-105.5,10,0,0,-0.181487 -106836,7110:205:1,-105,10,0,0,-0.192881 -106837,7110:104:2,-104.5,10,0,0,-0.2649 -106838,7110:104:1,-104,10,0,0,-0.308554 -106839,7109:104:2,-94.5,10,0,0,-0.157054 -106840,7109:104:1,-94,10,0,0,-0.155859 -106841,7109:103:2,-93.5,10,0,0,-0.155945 -106842,7108:208:1,-88,10,0,0,-0.16624 -106843,7108:207:2,-87.5,10,0,0,-0.187569 -106844,7108:207:1,-87,10,0,0,-0.18894 -106845,7108:206:2,-86.5,10,0,0,-0.191369 -106846,7108:206:1,-86,10,0,0,-0.191881 -106847,7108:205:2,-85.5,10,0,0,-0.19296 -106848,7108:205:1,-85,10,0,0,-0.195047 -106849,7108:104:2,-84.5,10,0,0,-0.196364 -106850,7108:104:1,-84,10,0,0,-0.196099 -106851,7108:103:2,-83.5,10,0,0,-0.19509 -106852,7108:103:1,-83,10,0,0,-0.194348 -106853,7108:102:2,-82.5,10,0,0,-0.194479 -106854,7108:102:1,-82,10,0,0,-0.195047 -106855,7108:101:2,-81.5,10,0,0,-0.195353 -106856,7108:101:1,-81,10,0,0,-0.195222 -106857,7108:100:2,-80.5,10,0,0,-0.194959 -106858,7108:100:1,-80,10,0,0,-0.194479 -106859,7107:209:2,-79.5,10,0,0,-0.193913 -106860,7107:209:1,-79,10,0,0,-0.195353 -106861,7107:208:2,-78.5,10,0,0,-0.195265 -106862,7107:207:1,-77,10,0,0,-0.18987 -106863,7107:206:2,-76.5,10,0,0,-0.189445 -106864,7107:206:1,-76,10,0,0,-0.190004 -106865,7107:205:2,-75.5,10,0,0,-0.195047 -106866,7107:205:1,-75,10,0,0,-0.194348 -106867,7107:104:2,-74.5,10,0,0,-0.186522 -106868,7107:100:1,-70,10,0,0,-0.182833 -106869,7106:208:1,-68,10,0,0,-0.186705 -106870,7106:207:2,-67.5,10,0,0,-0.187622 -106871,7106:205:2,-65.5,10,0,0,-0.180002 -106872,7106:205:1,-65,10,0,0,-0.181083 -106873,7106:104:1,-64,10,0,0,-0.180454 -106874,7106:103:2,-63.5,10,0,0,-0.181715 -106875,7106:103:1,-63,10,0,0,-0.180882 -106876,7106:102:2,-62.5,10,0,0,-0.17873 -106877,7106:102:1,-62,10,0,0,-0.177987 -106878,7106:101:2,-61.5,10,0,0,-0.177148 -106879,7106:101:1,-61,10,0,0,-0.177345 -106880,7106:100:2,-60.5,10,0,0,-0.177271 -106881,7106:100:1,-60,10,0,0,-0.175461 -106882,7105:209:2,-59.5,10,0,0,-0.17384 -106883,7105:209:1,-59,10,0,0,-0.172785 -106884,7105:208:2,-58.5,10,0,0,-0.172046 -106885,7105:208:1,-58,10,0,0,-0.171547 -106886,7105:207:2,-57.5,10,0,0,-0.171406 -106887,7105:207:1,-57,10,0,0,-0.171193 -106888,7105:206:2,-56.5,10,0,0,-0.171216 -106889,7105:206:1,-56,10,0,0,-0.170814 -106890,7105:205:2,-55.5,10,0,0,-0.16936 -106891,7105:205:1,-55,10,0,0,-0.167503 -106892,7105:104:2,-54.5,10,0,0,-0.166378 -106893,7105:104:1,-54,10,0,0,-0.165761 -106894,7105:103:2,-53.5,10,0,0,-0.165102 -106895,7105:103:1,-53,10,0,0,-0.164333 -106896,7105:102:2,-52.5,10,0,0,-0.163276 -106897,7105:102:1,-52,10,0,0,-0.162249 -106898,7105:101:2,-51.5,10,0,0,-0.161142 -106899,7105:101:1,-51,10,0,0,-0.159847 -106900,7105:100:2,-50.5,10,0,0,-0.158996 -106901,7105:100:1,-50,10,0,0,-0.158584 -106902,7104:209:2,-49.5,10,0,0,-0.157785 -106903,7104:209:1,-49,10,0,0,-0.156434 -106904,7104:208:2,-48.5,10,0,0,-0.154949 -106905,7104:208:1,-48,10,0,0,-0.153835 -106906,7104:207:2,-47.5,10,0,0,-0.153188 -106907,7104:207:1,-47,10,0,0,-0.14953 -106908,7104:206:2,-46.5,10,0,0,-0.1485 -106909,7104:206:1,-46,10,0,0,-0.147839 -106910,7104:205:2,-45.5,10,0,0,-0.146882 -106911,7104:205:1,-45,10,0,0,-0.146307 -106912,7104:104:2,-44.5,10,0,0,-0.145873 -106913,7104:104:1,-44,10,0,0,-0.145008 -106914,7104:103:2,-43.5,10,0,0,-0.144344 -106915,7104:103:1,-43,10,0,0,-0.144072 -106916,7104:102:2,-42.5,10,0,0,-0.143664 -106917,7104:102:1,-42,10,0,0,-0.142584 -106918,7104:101:2,-41.5,10,0,0,-0.141703 -106919,7104:101:1,-41,10,0,0,-0.140734 -106920,7104:100:2,-40.5,10,0,0,-0.139622 -106921,7104:100:1,-40,10,0,0,-0.138648 -106922,7103:209:2,-39.5,10,0,0,-0.137739 -106923,7103:209:1,-39,10,0,0,-0.136589 -106924,7103:208:2,-38.5,10,0,0,-0.136176 -106925,7103:208:1,-38,10,0,0,-0.136124 -106926,7103:207:2,-37.5,10,0,0,-0.13605 -106927,7103:207:1,-37,10,0,0,-0.13605 -106928,7103:206:2,-36.5,10,0,0,-0.13605 -106929,7103:206:1,-36,10,0,0,-0.13605 -106930,7103:205:2,-35.5,10,0,0,-0.13605 -106931,7103:205:1,-35,10,0,0,-0.13605 -106932,7103:104:2,-34.5,10,0,0,-0.13605 -106933,7103:104:1,-34,10,0,0,-0.13605 -106934,7103:103:2,-33.5,10,0,0,-0.13605 -106935,7103:103:1,-33,10,0,0,-0.13605 -106936,7103:102:2,-32.5,10,0,0,-0.13605 -106937,7103:102:1,-32,10,0,0,-0.13605 -106938,7103:101:2,-31.5,10,0,0,-0.13605 -106939,7103:101:1,-31,10,0,0,-0.13605 -106940,7103:100:2,-30.5,10,0,0,-0.13605 -106941,7103:100:1,-30,10,0,0,-0.13605 -106942,7102:209:2,-29.5,10,0,0,-0.13605 -106943,7102:209:1,-29,10,0,0,-0.13605 -106944,7102:208:2,-28.5,10,0,0,-0.13605 -106945,7102:208:1,-28,10,0,0,-0.13605 -106946,7102:207:2,-27.5,10,0,0,-0.13605 -106947,7102:207:1,-27,10,0,0,-0.13605 -106948,7102:206:2,-26.5,10,0,0,-0.13605 -106949,7102:206:1,-26,10,0,0,-0.13605 -106950,7102:205:2,-25.5,10,0,0,-0.13605 -106951,7102:205:1,-25,10,0,0,-0.13605 -106952,7102:104:2,-24.5,10,0,0,-0.13605 -106953,7102:104:1,-24,10,0,0,-0.13605 -106954,7102:103:2,-23.5,10,0,0,-0.13605 -106955,7102:103:1,-23,10,0,0,-0.13605 -106956,7102:102:2,-22.5,10,0,0,-0.13605 -106957,7102:102:1,-22,10,0,0,-0.13605 -106958,7102:101:2,-21.5,10,0,0,-0.13605 -106959,7102:101:1,-21,10,0,0,-0.13605 -106960,7102:100:2,-20.5,10,0,0,-0.13605 -106961,7102:100:1,-20,10,0,0,-0.13605 -106962,7101:209:2,-19.5,10,0,0,-0.13605 -106963,7101:209:1,-19,10,0,0,-0.13605 -106964,7101:208:2,-18.5,10,0,0,-0.13605 -106965,7101:208:1,-18,10,0,0,-0.13605 -106966,7101:207:2,-17.5,10,0,0,-0.13605 -106967,7101:207:1,-17,10,0,0,-0.13605 -106968,7101:206:2,-16.5,10,0,0,-0.13605 -106969,1103:208:1,38,10,0,0,-0.214809 -106970,1103:208:2,38.5,10,0,0,-0.278121 -106971,1103:209:1,39,10,0,0,-0.64814 -106972,1103:209:2,39.5,10,0,0,-1.17252 -106973,1104:100:1,40,10,0,0,-2.33751 -106974,1104:100:2,40.5,10,0,0,-0.333698 -106975,1104:101:1,41,10,0,0,-0.234487 -106976,1105:206:2,56.5,10,0,0,-0.143355 -106977,1105:207:1,57,10,0,0,-0.140734 -106978,1105:207:2,57.5,10,0,0,-0.141608 -106979,1105:208:1,58,10,0,0,-0.145675 -106980,1105:208:2,58.5,10,0,0,-0.1472 -106981,1105:209:1,59,10,0,0,-0.14603 -106982,1105:209:2,59.5,10,0,0,-0.14605 -106983,1106:100:1,60,10,0,0,-0.146504 -106984,1106:100:2,60.5,10,0,0,-0.148601 -106985,1106:101:1,61,10,0,0,-0.151511 -106986,1106:101:2,61.5,10,0,0,-0.152959 -106987,1106:102:1,62,10,0,0,-0.153647 -106988,1106:102:2,62.5,10,0,0,-0.153438 -106989,1106:103:1,63,10,0,0,-0.152751 -106990,1106:103:2,63.5,10,0,0,-0.152647 -106991,1106:104:1,64,10,0,0,-0.153647 -106992,1106:104:2,64.5,10,0,0,-0.154991 -106993,1106:205:1,65,10,0,0,-0.156285 -106994,1106:205:2,65.5,10,0,0,-0.157892 -106995,1106:206:1,66,10,0,0,-0.161363 -106996,1106:206:2,66.5,10,0,0,-0.1644 -106997,1106:207:1,67,10,0,0,-0.165442 -106998,1106:207:2,67.5,10,0,0,-0.169406 -106999,1106:208:1,68,10,0,0,-0.178309 -107000,1106:208:2,68.5,10,0,0,-0.185119 -107001,1106:209:1,69,10,0,0,-0.189285 -107002,1106:209:2,69.5,10,0,0,-0.190083 -107003,1107:100:1,70,10,0,0,-0.192124 -107004,1107:100:2,70.5,10,0,0,-0.191316 -107005,1107:101:1,71,10,0,0,-0.187885 -107006,1107:101:2,71.5,10,0,0,-0.192719 -107007,1107:102:1,72,10,0,0,-0.194828 -107008,1107:102:2,72.5,10,0,0,-0.189206 -107009,1108:104:2,84.5,10,0,0,-0.157742 -107010,1108:205:1,85,10,0,0,-0.154864 -107011,1108:205:2,85.5,10,0,0,-0.164943 -107012,1108:206:1,86,10,0,0,-0.163635 -107013,1108:206:2,86.5,10,0,0,-0.169875 -107014,1108:207:1,87,10,0,0,-0.171595 -107015,1108:207:2,87.5,10,0,0,-0.172189 -107016,1108:208:1,88,10,0,0,-0.174225 -107017,1108:208:2,88.5,10,0,0,-0.178358 -107018,1108:209:1,89,10,0,0,-0.181588 -107019,1108:209:2,89.5,10,0,0,-0.181562 -107020,1109:100:1,90,10,0,0,-0.182273 -107021,1109:100:2,90.5,10,0,0,-0.181841 -107022,1109:101:1,91,10,0,0,-0.180655 -107023,1109:101:2,91.5,10,0,0,-0.179253 -107024,1109:102:1,92,10,0,0,-0.183241 -107025,1109:102:2,92.5,10,0,0,-0.190083 -107026,1109:103:1,93,10,0,0,-0.190671 -107027,1109:103:2,93.5,10,0,0,-0.191181 -107028,1109:104:1,94,10,0,0,-0.196981 -107029,1109:104:2,94.5,10,0,0,-0.196628 -107030,1110:206:2,106.5,10,0,0,-0.13605 -107031,1110:207:1,107,10,0,0,-0.13605 -107032,1110:207:2,107.5,10,0,0,-0.13605 -107033,1110:208:1,108,10,0,0,-0.136254 -107034,1110:208:2,108.5,10,0,0,-0.13605 -107035,1110:209:1,109,10,0,0,-0.13605 -107036,1111:100:2,110.5,10,0,0,-0.13605 -107037,1111:101:1,111,10,0,0,-0.13605 -107038,1111:101:2,111.5,10,0,0,-0.13605 -107039,1111:102:1,112,10,0,0,-0.13605 -107040,1111:102:2,112.5,10,0,0,-0.136182 -107041,1111:103:1,113,10,0,0,-0.137655 -107042,1111:103:2,113.5,10,0,0,-0.138648 -107043,1111:104:1,114,10,0,0,-0.138665 -107044,1111:104:2,114.5,10,0,0,-0.138868 -107045,1111:205:1,115,10,0,0,-0.13875 -107046,1111:205:2,115.5,10,0,0,-0.141379 -107047,1111:206:1,116,10,0,0,-0.145008 -107048,1111:206:2,116.5,10,0,0,-0.147798 -107049,1111:207:1,117,10,0,0,-0.147899 -107050,1111:207:2,117.5,10,0,0,-0.145106 -107051,1111:208:1,118,10,0,0,-0.14949 -107052,1111:208:2,118.5,10,0,0,-0.154443 -107053,1111:209:1,119,10,0,0,-0.158065 -107054,1111:209:2,119.5,10,0,0,-0.163366 -107055,1112:100:1,120,10,0,0,-0.165647 -107056,1112:100:2,120.5,10,0,0,-0.159083 -107057,1112:102:1,122,10,0,0,-0.15684 -107058,1112:103:1,123,10,0,0,-0.174564 -107059,1112:103:2,123.5,10,0,0,-0.162673 -107060,1112:104:1,124,10,0,0,-0.150018 -107061,1112:104:2,124.5,10,0,0,-0.154149 -107062,1112:205:1,125,10,0,0,-0.157505 -107063,1112:205:2,125.5,10,0,0,-0.159388 -107064,1112:206:1,126,10,0,0,-0.159781 -107065,1112:206:2,126.5,10,0,0,-0.15941 -107066,1112:207:1,127,10,0,0,-0.158324 -107067,1112:207:2,127.5,10,0,0,-0.157569 -107068,1112:208:1,128,10,0,0,-0.158281 -107069,1112:208:2,128.5,10,0,0,-0.159999 -107070,1112:209:1,129,10,0,0,-0.161717 -107071,1112:209:2,129.5,10,0,0,-0.162673 -107072,1113:100:1,130,10,0,0,-0.163477 -107073,1113:100:2,130.5,10,0,0,-0.164243 -107074,1113:101:1,131,10,0,0,-0.165374 -107075,1113:101:2,131.5,10,0,0,-0.166629 -107076,1113:102:1,132,10,0,0,-0.167826 -107077,1113:102:2,132.5,10,0,0,-0.169851 -107078,1113:103:1,133,10,0,0,-0.17226 -107079,1113:103:2,133.5,10,0,0,-0.175072 -107080,1113:104:1,134,10,0,0,-0.177468 -107081,1113:104:2,134.5,10,0,0,-0.178333 -107082,1113:205:1,135,10,0,0,-0.177419 -107083,1113:205:2,135.5,10,0,0,-0.178086 -107084,1113:206:1,136,10,0,0,-0.179727 -107085,1113:206:2,136.5,10,0,0,-0.181083 -107086,1113:207:1,137,10,0,0,-0.182552 -107087,1113:207:2,137.5,10,0,0,-0.183753 -107088,1113:208:1,138,10,0,0,-0.184835 -107089,1113:208:2,138.5,10,0,0,-0.185222 -107090,1113:209:1,139,10,0,0,-0.185171 -107091,1113:209:2,139.5,10,0,0,-0.184809 -107092,1114:100:1,140,10,0,0,-0.184499 -107093,1114:100:2,140.5,10,0,0,-0.18437 -107094,1114:101:1,141,10,0,0,-0.184242 -107095,1114:101:2,141.5,10,0,0,-0.18401 -107096,1114:102:1,142,10,0,0,-0.183651 -107097,1114:102:2,142.5,10,0,0,-0.183318 -107098,1114:103:1,143,10,0,0,-0.183241 -107099,1114:103:2,143.5,10,0,0,-0.183293 -107100,1114:104:1,144,10,0,0,-0.183497 -107101,1114:104:2,144.5,10,0,0,-0.183369 -107102,1114:205:1,145,10,0,0,-0.183241 -107103,1114:205:2,145.5,10,0,0,-0.183293 -107104,1114:206:1,146,10,0,0,-0.183676 -107105,1114:206:2,146.5,10,0,0,-0.183933 -107106,1114:207:1,147,10,0,0,-0.183676 -107107,1114:207:2,147.5,10,0,0,-0.183702 -107108,1114:208:1,148,10,0,0,-0.183779 -107109,1114:208:2,148.5,10,0,0,-0.183753 -107110,1114:209:1,149,10,0,0,-0.183523 -107111,1114:209:2,149.5,10,0,0,-0.183063 -107112,1115:100:1,150,10,0,0,-0.18268 -107113,1115:100:2,150.5,10,0,0,-0.183446 -107114,1115:101:1,151,10,0,0,-0.184473 -107115,1115:101:2,151.5,10,0,0,-0.184499 -107116,1115:102:1,152,10,0,0,-0.184062 -107117,1115:102:2,152.5,10,0,0,-0.1836 -107118,1115:103:1,153,10,0,0,-0.183523 -107119,1115:103:2,153.5,10,0,0,-0.184267 -107120,1115:104:1,154,10,0,0,-0.185093 -107121,1115:104:2,154.5,10,0,0,-0.184731 -107122,1115:205:1,155,10,0,0,-0.183702 -107123,1115:205:2,155.5,10,0,0,-0.183779 -107124,1115:206:1,156,10,0,0,-0.183933 -107125,1115:206:2,156.5,10,0,0,-0.183523 -107126,1115:207:1,157,10,0,0,-0.183215 -107127,1115:207:2,157.5,10,0,0,-0.182986 -107128,1115:208:1,158,10,0,0,-0.182782 -107129,1115:208:2,158.5,10,0,0,-0.182578 -107130,1115:209:1,159,10,0,0,-0.181892 -107131,1115:209:2,159.5,10,0,0,-0.180882 -107132,1116:100:1,160,10,0,0,-0.18063 -107133,1116:100:2,160.5,10,0,0,-0.181411 -107134,1116:101:1,161,10,0,0,-0.18174 -107135,1116:101:2,161.5,10,0,0,-0.181968 -107136,1116:102:1,162,10,0,0,-0.182044 -107137,1116:102:2,162.5,10,0,0,-0.181335 -107138,1116:103:1,163,10,0,0,-0.180203 -107139,1116:103:2,163.5,10,0,0,-0.178978 -107140,1116:104:1,164,10,0,0,-0.177813 -107141,1116:104:2,164.5,10,0,0,-0.176707 -107142,1116:205:1,165,10,0,0,-0.175218 -107143,1116:205:2,165.5,10,0,0,-0.174806 -107144,1116:206:1,166,10,0,0,-0.175388 -107145,1116:206:2,166.5,10,0,0,-0.175461 -107146,1116:207:1,167,10,0,0,-0.174733 -107147,1116:207:2,167.5,10,0,0,-0.173456 -107148,1116:208:1,168,10,0,0,-0.171833 -107149,1116:208:2,168.5,10,0,0,-0.171785 -107150,1116:209:1,169,10,0,0,-0.172976 -107151,1116:209:2,169.5,10,0,0,-0.173479 -107152,1117:100:1,170,10,0,0,-0.172642 -107153,1117:100:2,170.5,10,0,0,-0.171785 -107154,1117:101:1,171,10,0,0,-0.171216 -107155,1117:101:2,171.5,10,0,0,-0.170391 -107156,1117:102:1,172,10,0,0,-0.169804 -107157,1117:102:2,172.5,10,0,0,-0.169664 -107158,1117:103:1,173,10,0,0,-0.169383 -107159,1117:103:2,173.5,10,0,0,-0.168637 -107160,1117:104:1,174,10,0,0,-0.167711 -107161,1117:104:2,174.5,10,0,0,-0.16679 -107162,1117:205:1,175,10,0,0,-0.16592 -107163,1117:205:2,175.5,10,0,0,-0.165011 -107164,1117:206:1,176,10,0,0,-0.164153 -107165,1117:206:2,176.5,10,0,0,-0.163388 -107166,1117:207:1,177,10,0,0,-0.162695 -107167,1117:207:2,177.5,10,0,0,-0.161983 -107168,1117:208:1,178,10,0,0,-0.161606 -107169,1117:208:2,178.5,10,0,0,-0.161186 -107170,1117:209:1,179,10,0,0,-0.16068 -107171,1117:209:2,179.5,10,0,0,-0.159693 -107172,1118:100:1,180,10,0,0,-0.158152 -107173,7118:100:3,-180,10.5,0,0,-0.157548 -107174,7117:209:4,-179.5,10.5,0,0,-0.156242 -107175,7117:209:3,-179,10.5,0,0,-0.15552 -107176,7117:208:4,-178.5,10.5,0,0,-0.155753 -107177,7117:208:3,-178,10.5,0,0,-0.155054 -107178,7117:207:4,-177.5,10.5,0,0,-0.153229 -107179,7117:207:3,-177,10.5,0,0,-0.151305 -107180,7117:206:4,-176.5,10.5,0,0,-0.150691 -107181,7117:206:3,-176,10.5,0,0,-0.151882 -107182,7117:205:4,-175.5,10.5,0,0,-0.150343 -107183,7117:205:3,-175,10.5,0,0,-0.14832 -107184,7117:104:4,-174.5,10.5,0,0,-0.146287 -107185,7117:104:3,-174,10.5,0,0,-0.145951 -107186,7117:103:4,-173.5,10.5,0,0,-0.147081 -107187,7117:103:3,-173,10.5,0,0,-0.145636 -107188,7117:102:4,-172.5,10.5,0,0,-0.144227 -107189,7117:102:3,-172,10.5,0,0,-0.14493 -107190,7117:101:4,-171.5,10.5,0,0,-0.145047 -107191,7117:101:3,-171,10.5,0,0,-0.144285 -107192,7117:100:4,-170.5,10.5,0,0,-0.144754 -107193,7117:100:3,-170,10.5,0,0,-0.147819 -107194,7116:209:4,-169.5,10.5,0,0,-0.149368 -107195,7116:209:3,-169,10.5,0,0,-0.149065 -107196,7116:208:4,-168.5,10.5,0,0,-0.14836 -107197,7116:208:3,-168,10.5,0,0,-0.148159 -107198,7116:207:4,-167.5,10.5,0,0,-0.14836 -107199,7116:207:3,-167,10.5,0,0,-0.14844 -107200,7116:206:4,-166.5,10.5,0,0,-0.147539 -107201,7116:206:3,-166,10.5,0,0,-0.146069 -107202,7116:205:4,-165.5,10.5,0,0,-0.14347 -107203,7116:205:3,-165,10.5,0,0,-0.139397 -107204,7116:104:4,-164.5,10.5,0,0,-0.13672 -107205,7116:104:3,-164,10.5,0,0,-0.136243 -107206,7116:103:4,-163.5,10.5,0,0,-0.136853 -107207,7116:103:3,-163,10.5,0,0,-0.138041 -107208,7116:102:4,-162.5,10.5,0,0,-0.139309 -107209,7116:102:3,-162,10.5,0,0,-0.140545 -107210,7116:101:4,-161.5,10.5,0,0,-0.141646 -107211,7116:101:3,-161,10.5,0,0,-0.142757 -107212,7116:100:4,-160.5,10.5,0,0,-0.143548 -107213,7116:100:3,-160,10.5,0,0,-0.14413 -107214,7115:209:4,-159.5,10.5,0,0,-0.144695 -107215,7115:209:3,-159,10.5,0,0,-0.145067 -107216,7115:208:4,-158.5,10.5,0,0,-0.145047 -107217,7115:208:3,-158,10.5,0,0,-0.144695 -107218,7115:207:4,-157.5,10.5,0,0,-0.14489 -107219,7115:207:3,-157,10.5,0,0,-0.142009 -107220,7115:206:4,-156.5,10.5,0,0,-0.13605 -107221,7115:206:3,-156,10.5,0,0,-0.13605 -107222,7115:104:4,-154.5,10.5,0,0,-0.13605 -107223,7115:104:3,-154,10.5,0,0,-0.13605 -107224,7115:103:4,-153.5,10.5,0,0,-0.13605 -107225,7115:103:3,-153,10.5,0,0,-0.13605 -107226,7115:102:4,-152.5,10.5,0,0,-0.13605 -107227,7115:102:3,-152,10.5,0,0,-0.13605 -107228,7115:101:4,-151.5,10.5,0,0,-0.13605 -107229,7115:101:3,-151,10.5,0,0,-0.13605 -107230,7115:100:4,-150.5,10.5,0,0,-0.13605 -107231,7115:100:3,-150,10.5,0,0,-0.13605 -107232,7114:209:4,-149.5,10.5,0,0,-0.13605 -107233,7114:209:3,-149,10.5,0,0,-0.13605 -107234,7114:208:4,-148.5,10.5,0,0,-0.13605 -107235,7114:208:3,-148,10.5,0,0,-0.13605 -107236,7114:207:4,-147.5,10.5,0,0,-0.13605 -107237,7114:207:3,-147,10.5,0,0,-0.13605 -107238,7114:206:4,-146.5,10.5,0,0,-0.13605 -107239,7114:206:3,-146,10.5,0,0,-0.13605 -107240,7114:205:4,-145.5,10.5,0,0,-0.13605 -107241,7114:205:3,-145,10.5,0,0,-0.13605 -107242,7114:104:4,-144.5,10.5,0,0,-0.13605 -107243,7114:104:3,-144,10.5,0,0,-0.13605 -107244,7114:103:4,-143.5,10.5,0,0,-0.13605 -107245,7114:103:3,-143,10.5,0,0,-0.13605 -107246,7114:102:4,-142.5,10.5,0,0,-0.13605 -107247,7114:102:3,-142,10.5,0,0,-0.13605 -107248,7114:101:4,-141.5,10.5,0,0,-0.13605 -107249,7114:101:3,-141,10.5,0,0,-0.13605 -107250,7114:100:4,-140.5,10.5,0,0,-0.13605 -107251,7114:100:3,-140,10.5,0,0,-0.13605 -107252,7113:209:4,-139.5,10.5,0,0,-0.13605 -107253,7113:209:3,-139,10.5,0,0,-0.13605 -107254,7113:208:4,-138.5,10.5,0,0,-0.13605 -107255,7113:208:3,-138,10.5,0,0,-0.13605 -107256,7113:207:4,-137.5,10.5,0,0,-0.13605 -107257,7113:207:3,-137,10.5,0,0,-0.13605 -107258,7113:206:4,-136.5,10.5,0,0,-0.13605 -107259,7113:206:3,-136,10.5,0,0,-0.13605 -107260,7113:205:4,-135.5,10.5,0,0,-0.13605 -107261,7113:205:3,-135,10.5,0,0,-0.13605 -107262,7113:104:4,-134.5,10.5,0,0,-0.13605 -107263,7113:104:3,-134,10.5,0,0,-0.13605 -107264,7113:103:4,-133.5,10.5,0,0,-0.13605 -107265,7113:103:3,-133,10.5,0,0,-0.13605 -107266,7113:102:4,-132.5,10.5,0,0,-0.13605 -107267,7113:102:3,-132,10.5,0,0,-0.13605 -107268,7113:101:4,-131.5,10.5,0,0,-0.13605 -107269,7113:101:3,-131,10.5,0,0,-0.13605 -107270,7113:100:4,-130.5,10.5,0,0,-0.13605 -107271,7113:100:3,-130,10.5,0,0,-0.13605 -107272,7112:209:4,-129.5,10.5,0,0,-0.13605 -107273,7112:209:3,-129,10.5,0,0,-0.13605 -107274,7112:208:4,-128.5,10.5,0,0,-0.13605 -107275,7112:208:3,-128,10.5,0,0,-0.13605 -107276,7112:207:4,-127.5,10.5,0,0,-0.13605 -107277,7112:207:3,-127,10.5,0,0,-0.13605 -107278,7112:206:4,-126.5,10.5,0,0,-0.13605 -107279,7112:206:3,-126,10.5,0,0,-0.13605 -107280,7112:205:4,-125.5,10.5,0,0,-0.13605 -107281,7112:205:3,-125,10.5,0,0,-0.13605 -107282,7112:104:4,-124.5,10.5,0,0,-0.13605 -107283,7112:104:3,-124,10.5,0,0,-0.13605 -107284,7112:103:4,-123.5,10.5,0,0,-0.13605 -107285,7112:103:3,-123,10.5,0,0,-0.13605 -107286,7112:102:4,-122.5,10.5,0,0,-0.13605 -107287,7112:102:3,-122,10.5,0,0,-0.13605 -107288,7112:101:4,-121.5,10.5,0,0,-0.13605 -107289,7112:101:3,-121,10.5,0,0,-0.13605 -107290,7112:100:4,-120.5,10.5,0,0,-0.13605 -107291,7112:100:3,-120,10.5,0,0,-0.13605 -107292,7111:209:4,-119.5,10.5,0,0,-0.13605 -107293,7111:209:3,-119,10.5,0,0,-0.13605 -107294,7111:208:4,-118.5,10.5,0,0,-0.13605 -107295,7111:208:3,-118,10.5,0,0,-0.13605 -107296,7111:207:4,-117.5,10.5,0,0,-0.13605 -107297,7111:207:3,-117,10.5,0,0,-0.13605 -107298,7111:206:4,-116.5,10.5,0,0,-0.13605 -107299,7111:206:3,-116,10.5,0,0,-0.13605 -107300,7111:205:4,-115.5,10.5,0,0,-0.13605 -107301,7111:205:3,-115,10.5,0,0,-0.13605 -107302,7111:104:4,-114.5,10.5,0,0,-0.13605 -107303,7111:104:3,-114,10.5,0,0,-0.13605 -107304,7111:103:4,-113.5,10.5,0,0,-0.13605 -107305,7111:103:3,-113,10.5,0,0,-0.13605 -107306,7111:102:4,-112.5,10.5,0,0,-0.13605 -107307,7111:102:3,-112,10.5,0,0,-0.13605 -107308,7111:101:4,-111.5,10.5,0,0,-0.13605 -107309,7111:101:3,-111,10.5,0,0,-0.13605 -107310,7111:100:4,-110.5,10.5,0,0,-0.13605 -107311,7111:100:3,-110,10.5,0,0,-0.136131 -107312,7110:209:4,-109.5,10.5,0,0,-0.138597 -107313,7110:209:3,-109,10.5,0,0,-0.14378 -107314,7110:208:4,-108.5,10.5,0,0,-0.151285 -107315,7110:208:3,-108,10.5,0,0,-0.158346 -107316,7110:207:4,-107.5,10.5,0,0,-0.166515 -107317,7110:207:3,-107,10.5,0,0,-0.169827 -107318,7110:206:4,-106.5,10.5,0,0,-0.17032 -107319,7110:206:3,-106,10.5,0,0,-0.183165 -107320,7110:205:4,-105.5,10.5,0,0,-0.187412 -107321,7109:206:3,-96,10.5,0,0,-0.143548 -107322,7109:205:4,-95.5,10.5,0,0,-0.141627 -107323,7109:205:3,-95,10.5,0,0,-0.143897 -107324,7109:104:4,-94.5,10.5,0,0,-0.148038 -107325,7109:104:3,-94,10.5,0,0,-0.147778 -107326,7109:103:4,-93.5,10.5,0,0,-0.14542 -107327,7109:103:3,-93,10.5,0,0,-0.148863 -107328,7109:102:4,-92.5,10.5,0,0,-0.153584 -107329,7109:102:3,-92,10.5,0,0,-0.15637 -107330,7109:101:4,-91.5,10.5,0,0,-0.155626 -107331,7109:101:3,-91,10.5,0,0,-0.150732 -107332,7108:207:4,-87.5,10.5,0,0,-0.175266 -107333,7108:207:3,-87,10.5,0,0,-0.188464 -107334,7108:206:4,-86.5,10.5,0,0,-0.195309 -107335,7108:206:3,-86,10.5,0,0,-0.193436 -107336,7108:205:4,-85.5,10.5,0,0,-0.191208 -107337,7108:205:3,-85,10.5,0,0,-0.188359 -107338,7108:104:4,-84.5,10.5,0,0,-0.186783 -107339,7108:104:3,-84,10.5,0,0,-0.184989 -107340,7108:103:4,-83.5,10.5,0,0,-0.181259 -107341,7108:103:3,-83,10.5,0,0,-0.177838 -107342,7108:102:4,-82.5,10.5,0,0,-0.176829 -107343,7108:102:3,-82,10.5,0,0,-0.178086 -107344,7108:101:4,-81.5,10.5,0,0,-0.180077 -107345,7108:101:3,-81,10.5,0,0,-0.177567 -107346,7108:100:4,-80.5,10.5,0,0,-0.183497 -107347,7108:100:3,-80,10.5,0,0,-0.185455 -107348,7107:209:4,-79.5,10.5,0,0,-0.185637 -107349,7107:209:3,-79,10.5,0,0,-0.186443 -107350,7107:208:4,-78.5,10.5,0,0,-0.185949 -107351,7107:208:3,-78,10.5,0,0,-0.186835 -107352,7107:207:4,-77.5,10.5,0,0,-0.183984 -107353,7107:207:3,-77,10.5,0,0,-0.188042 -107354,7107:206:4,-76.5,10.5,0,0,-0.189924 -107355,7107:206:3,-76,10.5,0,0,-0.18987 -107356,7107:205:4,-75.5,10.5,0,0,-0.188385 -107357,7107:205:3,-75,10.5,0,0,-0.184964 -107358,7107:104:4,-74.5,10.5,0,0,-0.182171 -107359,7107:104:3,-74,10.5,0,0,-0.185637 -107360,7107:103:4,-73.5,10.5,0,0,-0.182273 -107361,7107:103:3,-73,10.5,0,0,-0.180278 -107362,7106:209:4,-69.5,10.5,0,0,-0.170838 -107363,7106:209:3,-69,10.5,0,0,-0.172403 -107364,7106:208:4,-68.5,10.5,0,0,-0.176853 -107365,7106:208:3,-68,10.5,0,0,-0.179103 -107366,7106:207:4,-67.5,10.5,0,0,-0.182961 -107367,7106:207:3,-67,10.5,0,0,-0.182935 -107368,7106:206:4,-66.5,10.5,0,0,-0.18131 -107369,7106:206:3,-66,10.5,0,0,-0.18068 -107370,7106:205:4,-65.5,10.5,0,0,-0.179852 -107371,7106:205:3,-65,10.5,0,0,-0.178457 -107372,7106:104:4,-64.5,10.5,0,0,-0.179477 -107373,7106:104:3,-64,10.5,0,0,-0.179253 -107374,7106:103:4,-63.5,10.5,0,0,-0.178185 -107375,7106:103:3,-63,10.5,0,0,-0.176363 -107376,7106:102:4,-62.5,10.5,0,0,-0.174757 -107377,7106:102:3,-62,10.5,0,0,-0.173768 -107378,7106:101:4,-61.5,10.5,0,0,-0.173336 -107379,7106:101:3,-61,10.5,0,0,-0.173096 -107380,7106:100:4,-60.5,10.5,0,0,-0.172427 -107381,7106:100:3,-60,10.5,0,0,-0.171714 -107382,7105:209:4,-59.5,10.5,0,0,-0.170814 -107383,7105:209:3,-59,10.5,0,0,-0.170414 -107384,7105:208:4,-58.5,10.5,0,0,-0.170297 -107385,7105:208:3,-58,10.5,0,0,-0.169851 -107386,7105:207:4,-57.5,10.5,0,0,-0.16887 -107387,7105:207:3,-57,10.5,0,0,-0.167457 -107388,7105:206:4,-56.5,10.5,0,0,-0.166149 -107389,7105:206:3,-56,10.5,0,0,-0.165442 -107390,7105:205:4,-55.5,10.5,0,0,-0.16517 -107391,7105:205:3,-55,10.5,0,0,-0.164966 -107392,7105:104:4,-54.5,10.5,0,0,-0.164762 -107393,7105:104:3,-54,10.5,0,0,-0.164017 -107394,7105:103:4,-53.5,10.5,0,0,-0.162851 -107395,7105:103:3,-53,10.5,0,0,-0.161407 -107396,7105:102:4,-52.5,10.5,0,0,-0.160021 -107397,7105:102:3,-52,10.5,0,0,-0.158866 -107398,7105:101:4,-51.5,10.5,0,0,-0.158065 -107399,7105:101:3,-51,10.5,0,0,-0.156862 -107400,7105:100:4,-50.5,10.5,0,0,-0.156157 -107401,7105:100:3,-50,10.5,0,0,-0.155987 -107402,7104:209:4,-49.5,10.5,0,0,-0.155838 -107403,7104:209:3,-49,10.5,0,0,-0.155372 -107404,7104:208:4,-48.5,10.5,0,0,-0.154675 -107405,7104:208:3,-48,10.5,0,0,-0.153856 -107406,7104:207:4,-47.5,10.5,0,0,-0.152647 -107407,7104:207:3,-47,10.5,0,0,-0.149348 -107408,7104:206:4,-46.5,10.5,0,0,-0.147359 -107409,7104:206:3,-46,10.5,0,0,-0.147339 -107410,7104:205:4,-45.5,10.5,0,0,-0.147878 -107411,7104:205:3,-45,10.5,0,0,-0.146902 -107412,7104:104:4,-44.5,10.5,0,0,-0.143955 -107413,7104:104:3,-44,10.5,0,0,-0.141589 -107414,7104:103:4,-43.5,10.5,0,0,-0.140563 -107415,7104:103:3,-43,10.5,0,0,-0.140017 -107416,7104:102:4,-42.5,10.5,0,0,-0.139224 -107417,7104:102:3,-42,10.5,0,0,-0.138546 -107418,7104:101:4,-41.5,10.5,0,0,-0.138446 -107419,7104:101:3,-41,10.5,0,0,-0.138817 -107420,7104:100:4,-40.5,10.5,0,0,-0.138243 -107421,7104:100:3,-40,10.5,0,0,-0.136706 -107422,7103:209:4,-39.5,10.5,0,0,-0.136129 -107423,7103:209:3,-39,10.5,0,0,-0.13605 -107424,7103:208:4,-38.5,10.5,0,0,-0.13605 -107425,7103:208:3,-38,10.5,0,0,-0.13605 -107426,7103:207:4,-37.5,10.5,0,0,-0.13605 -107427,7103:207:3,-37,10.5,0,0,-0.13605 -107428,7103:206:4,-36.5,10.5,0,0,-0.13605 -107429,7103:206:3,-36,10.5,0,0,-0.13605 -107430,7103:205:4,-35.5,10.5,0,0,-0.13605 -107431,7103:205:3,-35,10.5,0,0,-0.13605 -107432,7103:104:4,-34.5,10.5,0,0,-0.13605 -107433,7103:104:3,-34,10.5,0,0,-0.13605 -107434,7103:103:4,-33.5,10.5,0,0,-0.13605 -107435,7103:103:3,-33,10.5,0,0,-0.13605 -107436,7103:102:4,-32.5,10.5,0,0,-0.13605 -107437,7103:102:3,-32,10.5,0,0,-0.13605 -107438,7103:101:4,-31.5,10.5,0,0,-0.13605 -107439,7103:101:3,-31,10.5,0,0,-0.13605 -107440,7103:100:4,-30.5,10.5,0,0,-0.13605 -107441,7103:100:3,-30,10.5,0,0,-0.13605 -107442,7102:209:4,-29.5,10.5,0,0,-0.13605 -107443,7102:209:3,-29,10.5,0,0,-0.13605 -107444,7102:208:4,-28.5,10.5,0,0,-0.13605 -107445,7102:208:3,-28,10.5,0,0,-0.13605 -107446,7102:207:4,-27.5,10.5,0,0,-0.13605 -107447,7102:207:3,-27,10.5,0,0,-0.13605 -107448,7102:206:4,-26.5,10.5,0,0,-0.13605 -107449,7102:206:3,-26,10.5,0,0,-0.13605 -107450,7102:205:4,-25.5,10.5,0,0,-0.13605 -107451,7102:205:3,-25,10.5,0,0,-0.13605 -107452,7102:104:4,-24.5,10.5,0,0,-0.13605 -107453,7102:104:3,-24,10.5,0,0,-0.13605 -107454,7102:103:4,-23.5,10.5,0,0,-0.13605 -107455,7102:103:3,-23,10.5,0,0,-0.13605 -107456,7102:102:4,-22.5,10.5,0,0,-0.13605 -107457,7102:102:3,-22,10.5,0,0,-0.13605 -107458,7102:101:4,-21.5,10.5,0,0,-0.13605 -107459,7102:101:3,-21,10.5,0,0,-0.13605 -107460,7102:100:4,-20.5,10.5,0,0,-0.13605 -107461,7102:100:3,-20,10.5,0,0,-0.13605 -107462,7101:209:4,-19.5,10.5,0,0,-0.13605 -107463,7101:209:3,-19,10.5,0,0,-0.13605 -107464,7101:208:4,-18.5,10.5,0,0,-0.13605 -107465,7101:208:3,-18,10.5,0,0,-0.13605 -107466,7101:207:4,-17.5,10.5,0,0,-0.13605 -107467,7101:207:3,-17,10.5,0,0,-0.13605 -107468,1103:207:4,37.5,10.5,0,0,-0.273334 -107469,1103:208:3,38,10.5,0,0,-0.31718 -107470,1103:208:4,38.5,10.5,0,0,-0.246659 -107471,1103:209:3,39,10.5,0,0,-0.330413 -107472,1103:209:4,39.5,10.5,0,0,-0.77181 -107473,1104:100:3,40,10.5,0,0,-0.362666 -107474,1104:100:4,40.5,10.5,0,0,-0.212617 -107475,1105:208:3,58,10.5,0,0,-0.136395 -107476,1105:208:4,58.5,10.5,0,0,-0.142622 -107477,1105:209:3,59,10.5,0,0,-0.14491 -107478,1105:209:4,59.5,10.5,0,0,-0.146485 -107479,1106:100:3,60,10.5,0,0,-0.146624 -107480,1106:100:4,60.5,10.5,0,0,-0.146168 -107481,1106:101:3,61,10.5,0,0,-0.147579 -107482,1106:101:4,61.5,10.5,0,0,-0.152067 -107483,1106:102:3,62,10.5,0,0,-0.15394 -107484,1106:102:4,62.5,10.5,0,0,-0.151121 -107485,1106:103:3,63,10.5,0,0,-0.14953 -107486,1106:103:4,63.5,10.5,0,0,-0.151737 -107487,1106:104:3,64,10.5,0,0,-0.151593 -107488,1106:104:4,64.5,10.5,0,0,-0.150323 -107489,1106:205:3,65,10.5,0,0,-0.150609 -107490,1106:205:4,65.5,10.5,0,0,-0.152606 -107491,1106:206:3,66,10.5,0,0,-0.154759 -107492,1106:206:4,66.5,10.5,0,0,-0.155838 -107493,1106:207:3,67,10.5,0,0,-0.157763 -107494,1106:207:4,67.5,10.5,0,0,-0.164807 -107495,1106:208:3,68,10.5,0,0,-0.176951 -107496,1106:208:4,68.5,10.5,0,0,-0.18174 -107497,1106:209:3,69,10.5,0,0,-0.180554 -107498,1106:209:4,69.5,10.5,0,0,-0.180228 -107499,1107:100:3,70,10.5,0,0,-0.178631 -107500,1107:100:4,70.5,10.5,0,0,-0.177148 -107501,1107:101:3,71,10.5,0,0,-0.182171 -107502,1107:101:4,71.5,10.5,0,0,-0.186652 -107503,1107:102:3,72,10.5,0,0,-0.186548 -107504,1107:102:4,72.5,10.5,0,0,-0.183497 -107505,1108:205:4,85.5,10.5,0,0,-0.156669 -107506,1108:206:3,86,10.5,0,0,-0.155774 -107507,1108:206:4,86.5,10.5,0,0,-0.15478 -107508,1108:207:3,87,10.5,0,0,-0.156136 -107509,1108:207:4,87.5,10.5,0,0,-0.160966 -107510,1108:208:3,88,10.5,0,0,-0.165261 -107511,1108:208:4,88.5,10.5,0,0,-0.165875 -107512,1108:209:3,89,10.5,0,0,-0.163635 -107513,1108:209:4,89.5,10.5,0,0,-0.1688 -107514,1109:100:3,90,10.5,0,0,-0.17065 -107515,1109:100:4,90.5,10.5,0,0,-0.171311 -107516,1109:101:3,91,10.5,0,0,-0.176094 -107517,1109:101:4,91.5,10.5,0,0,-0.183318 -107518,1109:102:3,92,10.5,0,0,-0.188148 -107519,1109:102:4,92.5,10.5,0,0,-0.192773 -107520,1109:103:3,93,10.5,0,0,-0.214263 -107521,1109:103:4,93.5,10.5,0,0,-0.21636 -107522,1110:206:4,106.5,10.5,0,0,-0.13605 -107523,1110:207:3,107,10.5,0,0,-0.13605 -107524,1110:207:4,107.5,10.5,0,0,-0.13605 -107525,1110:208:3,108,10.5,0,0,-0.13605 -107526,1110:208:4,108.5,10.5,0,0,-0.13605 -107527,1110:209:3,109,10.5,0,0,-0.13605 -107528,1111:101:3,111,10.5,0,0,-0.13605 -107529,1111:101:4,111.5,10.5,0,0,-0.13605 -107530,1111:102:3,112,10.5,0,0,-0.13605 -107531,1111:102:4,112.5,10.5,0,0,-0.13605 -107532,1111:103:3,113,10.5,0,0,-0.13605 -107533,1111:103:4,113.5,10.5,0,0,-0.137521 -107534,1111:104:3,114,10.5,0,0,-0.1388 -107535,1111:104:4,114.5,10.5,0,0,-0.139207 -107536,1111:205:3,115,10.5,0,0,-0.140545 -107537,1111:205:4,115.5,10.5,0,0,-0.142468 -107538,1111:206:3,116,10.5,0,0,-0.144402 -107539,1111:206:4,116.5,10.5,0,0,-0.148461 -107540,1111:207:3,117,10.5,0,0,-0.149855 -107541,1111:207:4,117.5,10.5,0,0,-0.15018 -107542,1111:208:3,118,10.5,0,0,-0.150711 -107543,1111:208:4,118.5,10.5,0,0,-0.150875 -107544,1111:209:3,119,10.5,0,0,-0.151449 -107545,1111:209:4,119.5,10.5,0,0,-0.151944 -107546,1112:100:3,120,10.5,0,0,-0.152151 -107547,1112:100:4,120.5,10.5,0,0,-0.153982 -107548,1112:101:3,121,10.5,0,0,-0.159934 -107549,1112:101:4,121.5,10.5,0,0,-0.168104 -107550,1112:102:3,122,10.5,0,0,-0.165784 -107551,1112:102:4,122.5,10.5,0,0,-0.16046 -107552,1112:103:3,123,10.5,0,0,-0.143994 -107553,1112:103:4,123.5,10.5,0,0,-0.143316 -107554,1112:104:3,124,10.5,0,0,-0.14347 -107555,1112:104:4,124.5,10.5,0,0,-0.145008 -107556,1112:205:3,125,10.5,0,0,-0.147399 -107557,1112:205:4,125.5,10.5,0,0,-0.150814 -107558,1112:206:3,126,10.5,0,0,-0.152585 -107559,1112:206:4,126.5,10.5,0,0,-0.151531 -107560,1112:207:3,127,10.5,0,0,-0.149246 -107561,1112:207:4,127.5,10.5,0,0,-0.147979 -107562,1112:208:3,128,10.5,0,0,-0.149571 -107563,1112:208:4,128.5,10.5,0,0,-0.152688 -107564,1112:209:3,129,10.5,0,0,-0.154149 -107565,1112:209:4,129.5,10.5,0,0,-0.153542 -107566,1113:100:3,130,10.5,0,0,-0.152855 -107567,1113:100:4,130.5,10.5,0,0,-0.15478 -107568,1113:101:3,131,10.5,0,0,-0.157634 -107569,1113:101:4,131.5,10.5,0,0,-0.158888 -107570,1113:102:3,132,10.5,0,0,-0.159934 -107571,1113:102:4,132.5,10.5,0,0,-0.16079 -107572,1113:103:3,133,10.5,0,0,-0.160878 -107573,1113:103:4,133.5,10.5,0,0,-0.161606 -107574,1113:104:3,134,10.5,0,0,-0.163905 -107575,1113:104:4,134.5,10.5,0,0,-0.167411 -107576,1113:205:3,135,10.5,0,0,-0.170344 -107577,1113:205:4,135.5,10.5,0,0,-0.171642 -107578,1113:206:3,136,10.5,0,0,-0.171714 -107579,1113:206:4,136.5,10.5,0,0,-0.172023 -107580,1113:207:3,137,10.5,0,0,-0.173264 -107581,1113:207:4,137.5,10.5,0,0,-0.175097 -107582,1113:208:3,138,10.5,0,0,-0.177567 -107583,1113:208:4,138.5,10.5,0,0,-0.180052 -107584,1113:209:3,139,10.5,0,0,-0.180579 -107585,1113:209:4,139.5,10.5,0,0,-0.180077 -107586,1114:100:3,140,10.5,0,0,-0.180002 -107587,1114:100:4,140.5,10.5,0,0,-0.180354 -107588,1114:101:3,141,10.5,0,0,-0.18068 -107589,1114:101:4,141.5,10.5,0,0,-0.180554 -107590,1114:102:3,142,10.5,0,0,-0.180103 -107591,1114:102:4,142.5,10.5,0,0,-0.179802 -107592,1114:103:3,143,10.5,0,0,-0.180002 -107593,1114:103:4,143.5,10.5,0,0,-0.181058 -107594,1114:104:3,144,10.5,0,0,-0.181512 -107595,1114:104:4,144.5,10.5,0,0,-0.181259 -107596,1114:205:3,145,10.5,0,0,-0.180128 -107597,1114:205:4,145.5,10.5,0,0,-0.178383 -107598,1114:206:3,146,10.5,0,0,-0.17816 -107599,1114:206:4,146.5,10.5,0,0,-0.179852 -107600,1114:207:3,147,10.5,0,0,-0.180454 -107601,1114:207:4,147.5,10.5,0,0,-0.180328 -107602,1114:208:3,148,10.5,0,0,-0.179852 -107603,1114:208:4,148.5,10.5,0,0,-0.179927 -107604,1114:209:3,149,10.5,0,0,-0.180604 -107605,1114:209:4,149.5,10.5,0,0,-0.181259 -107606,1115:100:3,150,10.5,0,0,-0.180152 -107607,1115:100:4,150.5,10.5,0,0,-0.179153 -107608,1115:101:3,151,10.5,0,0,-0.180504 -107609,1115:101:4,151.5,10.5,0,0,-0.181437 -107610,1115:102:3,152,10.5,0,0,-0.180831 -107611,1115:102:4,152.5,10.5,0,0,-0.181285 -107612,1115:103:3,153,10.5,0,0,-0.18073 -107613,1115:103:4,153.5,10.5,0,0,-0.179852 -107614,1115:104:3,154,10.5,0,0,-0.179802 -107615,1115:104:4,154.5,10.5,0,0,-0.180454 -107616,1115:205:3,155,10.5,0,0,-0.180103 -107617,1115:205:4,155.5,10.5,0,0,-0.178805 -107618,1115:206:3,156,10.5,0,0,-0.178086 -107619,1115:206:4,156.5,10.5,0,0,-0.17774 -107620,1115:207:3,157,10.5,0,0,-0.177369 -107621,1115:207:4,157.5,10.5,0,0,-0.176805 -107622,1115:208:3,158,10.5,0,0,-0.176168 -107623,1115:208:4,158.5,10.5,0,0,-0.176119 -107624,1115:209:3,159,10.5,0,0,-0.176388 -107625,1115:209:4,159.5,10.5,0,0,-0.176119 -107626,1116:100:3,160,10.5,0,0,-0.175777 -107627,1116:100:4,160.5,10.5,0,0,-0.175631 -107628,1116:101:3,161,10.5,0,0,-0.17534 -107629,1116:101:4,161.5,10.5,0,0,-0.174903 -107630,1116:102:3,162,10.5,0,0,-0.174685 -107631,1116:102:4,162.5,10.5,0,0,-0.175097 -107632,1116:103:3,163,10.5,0,0,-0.176241 -107633,1116:103:4,163.5,10.5,0,0,-0.176829 -107634,1116:104:3,164,10.5,0,0,-0.176314 -107635,1116:104:4,164.5,10.5,0,0,-0.174951 -107636,1116:205:3,165,10.5,0,0,-0.173048 -107637,1116:205:4,165.5,10.5,0,0,-0.171856 -107638,1116:206:3,166,10.5,0,0,-0.171074 -107639,1116:206:4,166.5,10.5,0,0,-0.170438 -107640,1116:207:3,167,10.5,0,0,-0.170791 -107641,1116:207:4,167.5,10.5,0,0,-0.17124 -107642,1116:208:3,168,10.5,0,0,-0.170673 -107643,1116:208:4,168.5,10.5,0,0,-0.170062 -107644,1116:209:3,169,10.5,0,0,-0.17032 -107645,1116:209:4,169.5,10.5,0,0,-0.170461 -107646,1117:100:3,170,10.5,0,0,-0.169734 -107647,1117:100:4,170.5,10.5,0,0,-0.16815 -107648,1117:101:3,171,10.5,0,0,-0.166951 -107649,1117:101:4,171.5,10.5,0,0,-0.166606 -107650,1117:102:3,172,10.5,0,0,-0.165351 -107651,1117:102:4,172.5,10.5,0,0,-0.163366 -107652,1117:103:3,173,10.5,0,0,-0.16386 -107653,1117:103:4,173.5,10.5,0,0,-0.165807 -107654,1117:104:3,174,10.5,0,0,-0.165829 -107655,1117:104:4,174.5,10.5,0,0,-0.164513 -107656,1117:205:3,175,10.5,0,0,-0.163142 -107657,1117:205:4,175.5,10.5,0,0,-0.162918 -107658,1117:206:3,176,10.5,0,0,-0.163388 -107659,1117:206:4,176.5,10.5,0,0,-0.162628 -107660,1117:207:3,177,10.5,0,0,-0.160328 -107661,1117:207:4,177.5,10.5,0,0,-0.158065 -107662,1117:208:3,178,10.5,0,0,-0.157806 -107663,1117:208:4,178.5,10.5,0,0,-0.158519 -107664,1117:209:3,179,10.5,0,0,-0.15813 -107665,1117:209:4,179.5,10.5,0,0,-0.158735 -107666,1118:100:3,180,10.5,0,0,-0.157548 -107667,7118:110:1,-180,11,0,0,-0.151039 -107668,7117:219:2,-179.5,11,0,0,-0.152709 -107669,7117:219:1,-179,11,0,0,-0.152564 -107670,7117:218:2,-178.5,11,0,0,-0.152461 -107671,7117:218:1,-178,11,0,0,-0.150834 -107672,7117:217:2,-177.5,11,0,0,-0.1484 -107673,7117:217:1,-177,11,0,0,-0.147379 -107674,7117:216:2,-176.5,11,0,0,-0.148099 -107675,7117:216:1,-176,11,0,0,-0.148239 -107676,7117:215:2,-175.5,11,0,0,-0.146188 -107677,7117:215:1,-175,11,0,0,-0.144285 -107678,7117:114:2,-174.5,11,0,0,-0.142757 -107679,7117:114:1,-174,11,0,0,-0.142258 -107680,7117:113:2,-173.5,11,0,0,-0.141627 -107681,7117:113:1,-173,11,0,0,-0.140242 -107682,7117:112:2,-172.5,11,0,0,-0.139071 -107683,7117:112:1,-172,11,0,0,-0.137991 -107684,7117:111:2,-171.5,11,0,0,-0.137154 -107685,7117:111:1,-171,11,0,0,-0.13707 -107686,7117:110:2,-170.5,11,0,0,-0.137991 -107687,7117:110:1,-170,11,0,0,-0.140205 -107688,7116:219:2,-169.5,11,0,0,-0.14245 -107689,7116:219:1,-169,11,0,0,-0.143335 -107690,7116:218:2,-168.5,11,0,0,-0.143161 -107691,7116:218:1,-168,11,0,0,-0.142738 -107692,7116:217:2,-167.5,11,0,0,-0.142718 -107693,7116:217:1,-167,11,0,0,-0.143296 -107694,7116:216:2,-166.5,11,0,0,-0.143722 -107695,7116:216:1,-166,11,0,0,-0.14197 -107696,7116:215:2,-165.5,11,0,0,-0.136615 -107697,7116:215:1,-165,11,0,0,-0.13605 -107698,7116:114:2,-164.5,11,0,0,-0.13605 -107699,7116:114:1,-164,11,0,0,-0.13605 -107700,7116:113:2,-163.5,11,0,0,-0.13605 -107701,7116:113:1,-163,11,0,0,-0.13605 -107702,7116:112:2,-162.5,11,0,0,-0.13605 -107703,7116:112:1,-162,11,0,0,-0.13605 -107704,7116:111:2,-161.5,11,0,0,-0.138193 -107705,7116:111:1,-161,11,0,0,-0.140356 -107706,7116:110:2,-160.5,11,0,0,-0.14098 -107707,7116:110:1,-160,11,0,0,-0.140563 -107708,7115:219:2,-159.5,11,0,0,-0.139491 -107709,7115:219:1,-159,11,0,0,-0.138159 -107710,7115:218:2,-158.5,11,0,0,-0.13682 -107711,7115:218:1,-158,11,0,0,-0.138058 -107712,7115:217:2,-157.5,11,0,0,-0.140923 -107713,7115:217:1,-157,11,0,0,-0.139241 -107714,7115:216:2,-156.5,11,0,0,-0.13605 -107715,7115:216:1,-156,11,0,0,-0.13605 -107716,7115:215:1,-155,11,0,0,-0.13605 -107717,7115:114:2,-154.5,11,0,0,-0.13605 -107718,7115:114:1,-154,11,0,0,-0.13605 -107719,7115:113:2,-153.5,11,0,0,-0.13605 -107720,7115:113:1,-153,11,0,0,-0.13605 -107721,7115:112:2,-152.5,11,0,0,-0.13605 -107722,7115:112:1,-152,11,0,0,-0.13605 -107723,7115:111:2,-151.5,11,0,0,-0.13605 -107724,7115:111:1,-151,11,0,0,-0.13605 -107725,7115:110:2,-150.5,11,0,0,-0.13605 -107726,7115:110:1,-150,11,0,0,-0.13605 -107727,7114:219:2,-149.5,11,0,0,-0.13605 -107728,7114:219:1,-149,11,0,0,-0.13605 -107729,7114:218:2,-148.5,11,0,0,-0.13605 -107730,7114:218:1,-148,11,0,0,-0.13605 -107731,7114:217:2,-147.5,11,0,0,-0.13605 -107732,7114:217:1,-147,11,0,0,-0.13605 -107733,7114:216:2,-146.5,11,0,0,-0.13605 -107734,7114:216:1,-146,11,0,0,-0.13605 -107735,7114:215:2,-145.5,11,0,0,-0.13605 -107736,7114:215:1,-145,11,0,0,-0.13605 -107737,7114:114:2,-144.5,11,0,0,-0.13605 -107738,7114:114:1,-144,11,0,0,-0.13605 -107739,7114:113:2,-143.5,11,0,0,-0.13605 -107740,7114:113:1,-143,11,0,0,-0.13605 -107741,7114:112:2,-142.5,11,0,0,-0.13605 -107742,7114:112:1,-142,11,0,0,-0.13605 -107743,7114:111:2,-141.5,11,0,0,-0.13605 -107744,7114:111:1,-141,11,0,0,-0.13605 -107745,7114:110:2,-140.5,11,0,0,-0.13605 -107746,7114:110:1,-140,11,0,0,-0.13605 -107747,7113:219:2,-139.5,11,0,0,-0.13605 -107748,7113:219:1,-139,11,0,0,-0.13605 -107749,7113:218:2,-138.5,11,0,0,-0.13605 -107750,7113:218:1,-138,11,0,0,-0.13605 -107751,7113:217:2,-137.5,11,0,0,-0.13605 -107752,7113:217:1,-137,11,0,0,-0.13605 -107753,7113:216:2,-136.5,11,0,0,-0.13605 -107754,7113:216:1,-136,11,0,0,-0.13605 -107755,7113:215:2,-135.5,11,0,0,-0.13605 -107756,7113:215:1,-135,11,0,0,-0.13605 -107757,7113:114:2,-134.5,11,0,0,-0.13605 -107758,7113:114:1,-134,11,0,0,-0.13605 -107759,7113:113:2,-133.5,11,0,0,-0.13605 -107760,7113:113:1,-133,11,0,0,-0.13605 -107761,7113:112:2,-132.5,11,0,0,-0.13605 -107762,7113:112:1,-132,11,0,0,-0.13605 -107763,7113:111:2,-131.5,11,0,0,-0.13605 -107764,7113:111:1,-131,11,0,0,-0.13605 -107765,7113:110:2,-130.5,11,0,0,-0.13605 -107766,7113:110:1,-130,11,0,0,-0.13605 -107767,7112:219:2,-129.5,11,0,0,-0.13605 -107768,7112:219:1,-129,11,0,0,-0.13605 -107769,7112:218:2,-128.5,11,0,0,-0.13605 -107770,7112:218:1,-128,11,0,0,-0.13605 -107771,7112:217:2,-127.5,11,0,0,-0.13605 -107772,7112:217:1,-127,11,0,0,-0.13605 -107773,7112:216:2,-126.5,11,0,0,-0.13605 -107774,7112:216:1,-126,11,0,0,-0.13605 -107775,7112:215:2,-125.5,11,0,0,-0.13605 -107776,7112:215:1,-125,11,0,0,-0.13605 -107777,7112:114:2,-124.5,11,0,0,-0.13605 -107778,7112:114:1,-124,11,0,0,-0.13605 -107779,7112:113:2,-123.5,11,0,0,-0.13605 -107780,7112:113:1,-123,11,0,0,-0.13605 -107781,7112:112:2,-122.5,11,0,0,-0.13605 -107782,7112:112:1,-122,11,0,0,-0.13605 -107783,7112:111:2,-121.5,11,0,0,-0.13605 -107784,7112:111:1,-121,11,0,0,-0.13605 -107785,7112:110:2,-120.5,11,0,0,-0.13605 -107786,7112:110:1,-120,11,0,0,-0.13605 -107787,7111:219:2,-119.5,11,0,0,-0.13605 -107788,7111:219:1,-119,11,0,0,-0.13605 -107789,7111:218:2,-118.5,11,0,0,-0.13605 -107790,7111:218:1,-118,11,0,0,-0.13605 -107791,7111:217:2,-117.5,11,0,0,-0.13605 -107792,7111:217:1,-117,11,0,0,-0.13605 -107793,7111:216:2,-116.5,11,0,0,-0.13605 -107794,7111:216:1,-116,11,0,0,-0.13605 -107795,7111:215:2,-115.5,11,0,0,-0.13605 -107796,7111:215:1,-115,11,0,0,-0.13605 -107797,7111:114:2,-114.5,11,0,0,-0.13605 -107798,7111:114:1,-114,11,0,0,-0.13605 -107799,7111:113:2,-113.5,11,0,0,-0.13605 -107800,7111:113:1,-113,11,0,0,-0.13605 -107801,7111:112:2,-112.5,11,0,0,-0.13605 -107802,7111:112:1,-112,11,0,0,-0.13605 -107803,7111:111:2,-111.5,11,0,0,-0.13605 -107804,7111:111:1,-111,11,0,0,-0.13605 -107805,7111:110:2,-110.5,11,0,0,-0.13605 -107806,7111:110:1,-110,11,0,0,-0.13605 -107807,7110:219:2,-109.5,11,0,0,-0.13605 -107808,7110:219:1,-109,11,0,0,-0.13605 -107809,7110:218:2,-108.5,11,0,0,-0.139904 -107810,7110:218:1,-108,11,0,0,-0.152585 -107811,7110:217:2,-107.5,11,0,0,-0.162516 -107812,7110:217:1,-107,11,0,0,-0.160966 -107813,7110:216:2,-106.5,11,0,0,-0.171004 -107814,7110:216:1,-106,11,0,0,-0.177591 -107815,7109:216:2,-96.5,11,0,0,-0.139866 -107816,7109:216:1,-96,11,0,0,-0.138311 -107817,7109:215:2,-95.5,11,0,0,-0.13687 -107818,7109:215:1,-95,11,0,0,-0.138395 -107819,7109:114:2,-94.5,11,0,0,-0.142718 -107820,7109:114:1,-94,11,0,0,-0.142988 -107821,7109:113:2,-93.5,11,0,0,-0.14378 -107822,7109:113:1,-93,11,0,0,-0.144988 -107823,7109:112:2,-92.5,11,0,0,-0.149469 -107824,7109:112:1,-92,11,0,0,-0.151039 -107825,7109:111:2,-91.5,11,0,0,-0.152813 -107826,7109:111:1,-91,11,0,0,-0.146386 -107827,7109:110:2,-90.5,11,0,0,-0.1454 -107828,7108:217:1,-87,11,0,0,-0.187648 -107829,7108:216:2,-86.5,11,0,0,-0.193652 -107830,7108:216:1,-86,11,0,0,-0.187964 -107831,7108:215:2,-85.5,11,0,0,-0.182986 -107832,7108:215:1,-85,11,0,0,-0.179877 -107833,7108:114:2,-84.5,11,0,0,-0.177863 -107834,7108:114:1,-84,11,0,0,-0.175097 -107835,7108:113:2,-83.5,11,0,0,-0.171027 -107836,7108:113:1,-83,11,0,0,-0.170626 -107837,7108:112:2,-82.5,11,0,0,-0.172023 -107838,7108:112:1,-82,11,0,0,-0.17336 -107839,7108:111:2,-81.5,11,0,0,-0.173792 -107840,7108:111:1,-81,11,0,0,-0.173599 -107841,7108:110:2,-80.5,11,0,0,-0.176535 -107842,7108:110:1,-80,11,0,0,-0.178556 -107843,7107:219:2,-79.5,11,0,0,-0.179128 -107844,7107:219:1,-79,11,0,0,-0.180454 -107845,7107:218:2,-78.5,11,0,0,-0.178954 -107846,7107:218:1,-78,11,0,0,-0.174491 -107847,7107:114:1,-74,11,0,0,-0.164785 -107848,7107:113:2,-73.5,11,0,0,-0.179078 -107849,7107:113:1,-73,11,0,0,-0.175924 -107850,7107:112:2,-72.5,11,0,0,-0.174129 -107851,7107:112:1,-72,11,0,0,-0.172379 -107852,7107:111:2,-71.5,11,0,0,-0.16971 -107853,7107:111:1,-71,11,0,0,-0.167388 -107854,7107:110:2,-70.5,11,0,0,-0.16936 -107855,7107:110:1,-70,11,0,0,-0.170391 -107856,7106:219:2,-69.5,11,0,0,-0.171429 -107857,7106:219:1,-69,11,0,0,-0.17425 -107858,7106:218:2,-68.5,11,0,0,-0.17629 -107859,7106:218:1,-68,11,0,0,-0.177912 -107860,7106:217:2,-67.5,11,0,0,-0.179702 -107861,7106:217:1,-67,11,0,0,-0.179627 -107862,7106:216:2,-66.5,11,0,0,-0.178978 -107863,7106:216:1,-66,11,0,0,-0.177912 -107864,7106:215:2,-65.5,11,0,0,-0.177394 -107865,7106:215:1,-65,11,0,0,-0.177567 -107866,7106:114:2,-64.5,11,0,0,-0.178383 -107867,7106:114:1,-64,11,0,0,-0.178086 -107868,7106:113:2,-63.5,11,0,0,-0.177493 -107869,7106:113:1,-63,11,0,0,-0.17607 -107870,7106:112:2,-62.5,11,0,0,-0.173 -107871,7106:112:1,-62,11,0,0,-0.170814 -107872,7106:111:2,-61.5,11,0,0,-0.17124 -107873,7106:111:1,-61,11,0,0,-0.171928 -107874,7106:110:2,-60.5,11,0,0,-0.171145 -107875,7106:110:1,-60,11,0,0,-0.169757 -107876,7105:219:2,-59.5,11,0,0,-0.168591 -107877,7105:219:1,-59,11,0,0,-0.168058 -107878,7105:218:2,-58.5,11,0,0,-0.167803 -107879,7105:218:1,-58,11,0,0,-0.167388 -107880,7105:217:2,-57.5,11,0,0,-0.166469 -107881,7105:217:1,-57,11,0,0,-0.165261 -107882,7105:216:2,-56.5,11,0,0,-0.16413 -107883,7105:216:1,-56,11,0,0,-0.163209 -107884,7105:215:2,-55.5,11,0,0,-0.162695 -107885,7105:215:1,-55,11,0,0,-0.162427 -107886,7105:114:2,-54.5,11,0,0,-0.162673 -107887,7105:114:1,-54,11,0,0,-0.162628 -107888,7105:113:2,-53.5,11,0,0,-0.161164 -107889,7105:113:1,-53,11,0,0,-0.159322 -107890,7105:112:2,-52.5,11,0,0,-0.157376 -107891,7105:112:1,-52,11,0,0,-0.155626 -107892,7105:111:2,-51.5,11,0,0,-0.15396 -107893,7105:111:1,-51,11,0,0,-0.152461 -107894,7105:110:2,-50.5,11,0,0,-0.151203 -107895,7105:110:1,-50,11,0,0,-0.149835 -107896,7104:219:2,-49.5,11,0,0,-0.148581 -107897,7104:219:1,-49,11,0,0,-0.148079 -107898,7104:218:2,-48.5,11,0,0,-0.1484 -107899,7104:218:1,-48,11,0,0,-0.148923 -107900,7104:217:2,-47.5,11,0,0,-0.149308 -107901,7104:217:1,-47,11,0,0,-0.147459 -107902,7104:216:2,-46.5,11,0,0,-0.146109 -107903,7104:216:1,-46,11,0,0,-0.146307 -107904,7104:215:2,-45.5,11,0,0,-0.145774 -107905,7104:215:1,-45,11,0,0,-0.143104 -107906,7104:114:2,-44.5,11,0,0,-0.140829 -107907,7104:114:1,-44,11,0,0,-0.13966 -107908,7104:113:2,-43.5,11,0,0,-0.139207 -107909,7104:113:1,-43,11,0,0,-0.13858 -107910,7104:112:2,-42.5,11,0,0,-0.137739 -107911,7104:112:1,-42,11,0,0,-0.136654 -107912,7104:111:2,-41.5,11,0,0,-0.136291 -107913,7104:111:1,-41,11,0,0,-0.137003 -107914,7104:110:2,-40.5,11,0,0,-0.137337 -107915,7104:110:1,-40,11,0,0,-0.136395 -107916,7103:219:2,-39.5,11,0,0,-0.13605 -107917,7103:219:1,-39,11,0,0,-0.13605 -107918,7103:218:2,-38.5,11,0,0,-0.13605 -107919,7103:218:1,-38,11,0,0,-0.13605 -107920,7103:217:2,-37.5,11,0,0,-0.13605 -107921,7103:217:1,-37,11,0,0,-0.13605 -107922,7103:216:2,-36.5,11,0,0,-0.13605 -107923,7103:216:1,-36,11,0,0,-0.13605 -107924,7103:215:2,-35.5,11,0,0,-0.13605 -107925,7103:215:1,-35,11,0,0,-0.13605 -107926,7103:114:2,-34.5,11,0,0,-0.13605 -107927,7103:114:1,-34,11,0,0,-0.13605 -107928,7103:113:2,-33.5,11,0,0,-0.13605 -107929,7103:113:1,-33,11,0,0,-0.13605 -107930,7103:112:2,-32.5,11,0,0,-0.13605 -107931,7103:112:1,-32,11,0,0,-0.13605 -107932,7103:111:2,-31.5,11,0,0,-0.13605 -107933,7103:111:1,-31,11,0,0,-0.13605 -107934,7103:110:2,-30.5,11,0,0,-0.13605 -107935,7103:110:1,-30,11,0,0,-0.13605 -107936,7102:219:2,-29.5,11,0,0,-0.13605 -107937,7102:219:1,-29,11,0,0,-0.13605 -107938,7102:218:2,-28.5,11,0,0,-0.13605 -107939,7102:218:1,-28,11,0,0,-0.13605 -107940,7102:217:2,-27.5,11,0,0,-0.13605 -107941,7102:217:1,-27,11,0,0,-0.13605 -107942,7102:216:2,-26.5,11,0,0,-0.13605 -107943,7102:216:1,-26,11,0,0,-0.13605 -107944,7102:215:2,-25.5,11,0,0,-0.13605 -107945,7102:215:1,-25,11,0,0,-0.13605 -107946,7102:114:2,-24.5,11,0,0,-0.13605 -107947,7102:114:1,-24,11,0,0,-0.13605 -107948,7102:113:2,-23.5,11,0,0,-0.13605 -107949,7102:113:1,-23,11,0,0,-0.13605 -107950,7102:112:2,-22.5,11,0,0,-0.13605 -107951,7102:112:1,-22,11,0,0,-0.13605 -107952,7102:111:2,-21.5,11,0,0,-0.13605 -107953,7102:111:1,-21,11,0,0,-0.13605 -107954,7102:110:2,-20.5,11,0,0,-0.13605 -107955,7102:110:1,-20,11,0,0,-0.13605 -107956,7101:219:2,-19.5,11,0,0,-0.13605 -107957,7101:219:1,-19,11,0,0,-0.13605 -107958,7101:218:2,-18.5,11,0,0,-0.13605 -107959,7101:218:1,-18,11,0,0,-0.13605 -107960,7101:217:2,-17.5,11,0,0,-0.13605 -107961,7101:217:1,-17,11,0,0,-0.13605 -107962,7101:216:2,-16.5,11,0,0,-0.13605 -107963,1103:217:1,37,11,0,0,-0.19917 -107964,1103:217:2,37.5,11,0,0,-0.252038 -107965,1103:218:1,38,11,0,0,-0.380296 -107966,1103:218:2,38.5,11,0,0,-0.418213 -107967,1103:219:1,39,11,0,0,-0.559806 -107968,1103:219:2,39.5,11,0,0,-0.863412 -107969,1104:110:1,40,11,0,0,-0.379644 -107970,1105:218:1,58,11,0,0,-0.13605 -107971,1105:218:2,58.5,11,0,0,-0.13605 -107972,1105:219:1,59,11,0,0,-0.13605 -107973,1105:219:2,59.5,11,0,0,-0.143703 -107974,1106:110:1,60,11,0,0,-0.146069 -107975,1106:110:2,60.5,11,0,0,-0.145479 -107976,1106:111:1,61,11,0,0,-0.145223 -107977,1106:111:2,61.5,11,0,0,-0.147279 -107978,1106:112:1,62,11,0,0,-0.149085 -107979,1106:112:2,62.5,11,0,0,-0.148139 -107980,1106:113:1,63,11,0,0,-0.147279 -107981,1106:113:2,63.5,11,0,0,-0.148863 -107982,1106:114:1,64,11,0,0,-0.149024 -107983,1106:114:2,64.5,11,0,0,-0.146862 -107984,1106:215:1,65,11,0,0,-0.145341 -107985,1106:215:2,65.5,11,0,0,-0.146862 -107986,1106:216:1,66,11,0,0,-0.149713 -107987,1106:216:2,66.5,11,0,0,-0.152109 -107988,1106:217:1,67,11,0,0,-0.155414 -107989,1106:217:2,67.5,11,0,0,-0.164536 -107990,1106:218:1,68,11,0,0,-0.173912 -107991,1106:218:2,68.5,11,0,0,-0.174781 -107992,1106:219:1,69,11,0,0,-0.174081 -107993,1106:219:2,69.5,11,0,0,-0.173144 -107994,1107:110:1,70,11,0,0,-0.172094 -107995,1107:110:2,70.5,11,0,0,-0.175169 -107996,1107:111:1,71,11,0,0,-0.179852 -107997,1107:111:2,71.5,11,0,0,-0.182044 -107998,1107:112:1,72,11,0,0,-0.184757 -107999,1108:217:1,87,11,0,0,-0.153919 -108000,1108:217:2,87.5,11,0,0,-0.152316 -108001,1108:218:1,88,11,0,0,-0.154422 -108002,1108:218:2,88.5,11,0,0,-0.161518 -108003,1108:219:1,89,11,0,0,-0.165875 -108004,1108:219:2,89.5,11,0,0,-0.172046 -108005,1109:110:1,90,11,0,0,-0.175802 -108006,1109:110:2,90.5,11,0,0,-0.181259 -108007,1109:111:1,91,11,0,0,-0.186496 -108008,1109:111:2,91.5,11,0,0,-0.188915 -108009,1109:112:1,92,11,0,0,-0.197469 -108010,1109:112:2,92.5,11,0,0,-0.195134 -108011,1109:113:1,93,11,0,0,-0.188915 -108012,1110:217:1,107,11,0,0,-0.13605 -108013,1110:217:2,107.5,11,0,0,-0.13605 -108014,1110:218:1,108,11,0,0,-0.13605 -108015,1110:218:2,108.5,11,0,0,-0.13605 -108016,1110:219:1,109,11,0,0,-0.13605 -108017,1110:219:2,109.5,11,0,0,-0.13605 -108018,1111:110:1,110,11,0,0,-0.13605 -108019,1111:111:1,111,11,0,0,-0.13605 -108020,1111:111:2,111.5,11,0,0,-0.13605 -108021,1111:112:1,112,11,0,0,-0.13605 -108022,1111:112:2,112.5,11,0,0,-0.13605 -108023,1111:113:1,113,11,0,0,-0.13605 -108024,1111:113:2,113.5,11,0,0,-0.13605 -108025,1111:114:1,114,11,0,0,-0.13605 -108026,1111:114:2,114.5,11,0,0,-0.136079 -108027,1111:215:1,115,11,0,0,-0.137571 -108028,1111:215:2,115.5,11,0,0,-0.14098 -108029,1111:216:1,116,11,0,0,-0.142795 -108030,1111:216:2,116.5,11,0,0,-0.14601 -108031,1111:217:1,117,11,0,0,-0.14828 -108032,1111:217:2,117.5,11,0,0,-0.149105 -108033,1111:218:1,118,11,0,0,-0.151511 -108034,1111:218:2,118.5,11,0,0,-0.154128 -108035,1111:219:1,119,11,0,0,-0.155902 -108036,1111:219:2,119.5,11,0,0,-0.157936 -108037,1112:110:1,120,11,0,0,-0.159453 -108038,1112:110:2,120.5,11,0,0,-0.159955 -108039,1112:111:1,121,11,0,0,-0.156926 -108040,1112:111:2,121.5,11,0,0,-0.146961 -108041,1112:112:1,122,11,0,0,-0.14245 -108042,1112:112:2,122.5,11,0,0,-0.14157 -108043,1112:113:1,123,11,0,0,-0.140658 -108044,1112:113:2,123.5,11,0,0,-0.139139 -108045,1112:114:1,124,11,0,0,-0.13902 -108046,1112:114:2,124.5,11,0,0,-0.138563 -108047,1112:215:1,125,11,0,0,-0.138294 -108048,1112:215:2,125.5,11,0,0,-0.13732 -108049,1112:216:1,126,11,0,0,-0.13722 -108050,1112:216:2,126.5,11,0,0,-0.138665 -108051,1112:217:1,127,11,0,0,-0.139829 -108052,1112:217:2,127.5,11,0,0,-0.141684 -108053,1112:218:1,128,11,0,0,-0.143413 -108054,1112:218:2,128.5,11,0,0,-0.144169 -108055,1112:219:1,129,11,0,0,-0.144969 -108056,1112:219:2,129.5,11,0,0,-0.145833 -108057,1113:110:1,130,11,0,0,-0.146366 -108058,1113:110:2,130.5,11,0,0,-0.148581 -108059,1113:111:1,131,11,0,0,-0.15242 -108060,1113:111:2,131.5,11,0,0,-0.152938 -108061,1113:112:1,132,11,0,0,-0.153209 -108062,1113:112:2,132.5,11,0,0,-0.154443 -108063,1113:113:1,133,11,0,0,-0.15457 -108064,1113:113:2,133.5,11,0,0,-0.153542 -108065,1113:114:1,134,11,0,0,-0.153438 -108066,1113:114:2,134.5,11,0,0,-0.156626 -108067,1113:215:1,135,11,0,0,-0.16185 -108068,1113:215:2,135.5,11,0,0,-0.16368 -108069,1113:216:1,136,11,0,0,-0.16245 -108070,1113:216:2,136.5,11,0,0,-0.16185 -108071,1113:217:1,137,11,0,0,-0.162739 -108072,1113:217:2,137.5,11,0,0,-0.165807 -108073,1113:218:1,138,11,0,0,-0.171004 -108074,1113:218:2,138.5,11,0,0,-0.175875 -108075,1113:219:1,139,11,0,0,-0.177001 -108076,1113:219:2,139.5,11,0,0,-0.176021 -108077,1114:110:1,140,11,0,0,-0.175924 -108078,1114:110:2,140.5,11,0,0,-0.176241 -108079,1114:111:1,141,11,0,0,-0.17607 -108080,1114:111:2,141.5,11,0,0,-0.175777 -108081,1114:112:1,142,11,0,0,-0.175924 -108082,1114:112:2,142.5,11,0,0,-0.175851 -108083,1114:113:1,143,11,0,0,-0.175875 -108084,1114:113:2,143.5,11,0,0,-0.177444 -108085,1114:114:1,144,11,0,0,-0.179602 -108086,1114:114:2,144.5,11,0,0,-0.180177 -108087,1114:215:1,145,11,0,0,-0.177863 -108088,1114:215:2,145.5,11,0,0,-0.175729 -108089,1114:216:1,146,11,0,0,-0.175412 -108090,1114:216:2,146.5,11,0,0,-0.176951 -108091,1114:217:1,147,11,0,0,-0.178457 -108092,1114:217:2,147.5,11,0,0,-0.178929 -108093,1114:218:1,148,11,0,0,-0.178631 -108094,1114:218:2,148.5,11,0,0,-0.178383 -108095,1114:219:1,149,11,0,0,-0.178655 -108096,1114:219:2,149.5,11,0,0,-0.179402 -108097,1115:110:1,150,11,0,0,-0.178879 -108098,1115:110:2,150.5,11,0,0,-0.177888 -108099,1115:111:1,151,11,0,0,-0.176927 -108100,1115:111:2,151.5,11,0,0,-0.17673 -108101,1115:112:1,152,11,0,0,-0.176461 -108102,1115:112:2,152.5,11,0,0,-0.176657 -108103,1115:113:1,153,11,0,0,-0.176388 -108104,1115:113:2,153.5,11,0,0,-0.176314 -108105,1115:114:1,154,11,0,0,-0.176388 -108106,1115:114:2,154.5,11,0,0,-0.176927 -108107,1115:215:1,155,11,0,0,-0.178185 -108108,1115:215:2,155.5,11,0,0,-0.178309 -108109,1115:216:1,156,11,0,0,-0.177567 -108110,1115:216:2,156.5,11,0,0,-0.17673 -108111,1115:217:1,157,11,0,0,-0.17629 -108112,1115:217:2,157.5,11,0,0,-0.175826 -108113,1115:218:1,158,11,0,0,-0.174975 -108114,1115:218:2,158.5,11,0,0,-0.174202 -108115,1115:219:1,159,11,0,0,-0.173889 -108116,1115:219:2,159.5,11,0,0,-0.173383 -108117,1116:110:1,160,11,0,0,-0.172403 -108118,1116:110:2,160.5,11,0,0,-0.171761 -108119,1116:111:1,161,11,0,0,-0.17169 -108120,1116:111:2,161.5,11,0,0,-0.171999 -108121,1116:112:1,162,11,0,0,-0.172547 -108122,1116:112:2,162.5,11,0,0,-0.172904 -108123,1116:113:1,163,11,0,0,-0.17324 -108124,1116:113:2,163.5,11,0,0,-0.173336 -108125,1116:114:1,164,11,0,0,-0.17169 -108126,1116:114:2,164.5,11,0,0,-0.168545 -108127,1116:215:1,165,11,0,0,-0.166217 -108128,1116:215:2,165.5,11,0,0,-0.166515 -108129,1116:216:1,166,11,0,0,-0.165716 -108130,1116:216:2,166.5,11,0,0,-0.166378 -108131,1116:217:1,167,11,0,0,-0.16822 -108132,1116:217:2,167.5,11,0,0,-0.168707 -108133,1116:218:1,168,11,0,0,-0.168266 -108134,1116:218:2,168.5,11,0,0,-0.167618 -108135,1116:219:1,169,11,0,0,-0.166538 -108136,1116:219:2,169.5,11,0,0,-0.165488 -108137,1117:110:1,170,11,0,0,-0.164852 -108138,1117:110:2,170.5,11,0,0,-0.164491 -108139,1117:111:1,171,11,0,0,-0.16386 -108140,1117:111:2,171.5,11,0,0,-0.162806 -108141,1117:112:1,172,11,0,0,-0.161296 -108142,1117:112:2,172.5,11,0,0,-0.159606 -108143,1117:113:1,173,11,0,0,-0.160592 -108144,1117:113:2,173.5,11,0,0,-0.159934 -108145,1117:114:1,174,11,0,0,-0.157526 -108146,1117:114:2,174.5,11,0,0,-0.156968 -108147,1117:215:1,175,11,0,0,-0.157226 -108148,1117:215:2,175.5,11,0,0,-0.157462 -108149,1117:216:1,176,11,0,0,-0.155923 -108150,1117:216:2,176.5,11,0,0,-0.152336 -108151,1117:217:1,177,11,0,0,-0.151121 -108152,1117:217:2,177.5,11,0,0,-0.152192 -108153,1117:218:1,178,11,0,0,-0.153563 -108154,1117:218:2,178.5,11,0,0,-0.154149 -108155,1117:219:1,179,11,0,0,-0.154149 -108156,1117:219:2,179.5,11,0,0,-0.153063 -108157,1118:110:1,180,11,0,0,-0.151039 -108158,7118:110:3,-180,11.5,0,0,-0.14542 -108159,7117:219:4,-179.5,11.5,0,0,-0.149368 -108160,7117:219:3,-179,11.5,0,0,-0.148661 -108161,7117:218:4,-178.5,11.5,0,0,-0.148199 -108162,7117:218:3,-178,11.5,0,0,-0.145774 -108163,7117:217:4,-177.5,11.5,0,0,-0.143239 -108164,7117:217:3,-177,11.5,0,0,-0.142757 -108165,7117:216:4,-176.5,11.5,0,0,-0.143007 -108166,7117:216:3,-176,11.5,0,0,-0.142296 -108167,7117:215:4,-175.5,11.5,0,0,-0.141398 -108168,7117:215:3,-175,11.5,0,0,-0.14045 -108169,7117:114:4,-174.5,11.5,0,0,-0.139678 -108170,7117:114:3,-174,11.5,0,0,-0.139207 -108171,7117:113:4,-173.5,11.5,0,0,-0.138733 -108172,7117:113:3,-173,11.5,0,0,-0.138008 -108173,7117:112:4,-172.5,11.5,0,0,-0.136787 -108174,7117:112:3,-172,11.5,0,0,-0.136086 -108175,7117:111:4,-171.5,11.5,0,0,-0.13605 -108176,7117:111:3,-171,11.5,0,0,-0.13605 -108177,7117:110:4,-170.5,11.5,0,0,-0.13605 -108178,7117:110:3,-170,11.5,0,0,-0.13605 -108179,7116:219:4,-169.5,11.5,0,0,-0.13605 -108180,7116:219:3,-169,11.5,0,0,-0.13605 -108181,7116:218:4,-168.5,11.5,0,0,-0.13605 -108182,7116:218:3,-168,11.5,0,0,-0.13605 -108183,7116:217:4,-167.5,11.5,0,0,-0.136061 -108184,7116:217:3,-167,11.5,0,0,-0.137371 -108185,7116:216:4,-166.5,11.5,0,0,-0.139003 -108186,7116:216:3,-166,11.5,0,0,-0.13697 -108187,7116:215:4,-165.5,11.5,0,0,-0.13605 -108188,7116:215:3,-165,11.5,0,0,-0.13605 -108189,7116:114:4,-164.5,11.5,0,0,-0.13605 -108190,7116:114:3,-164,11.5,0,0,-0.13605 -108191,7116:113:4,-163.5,11.5,0,0,-0.13605 -108192,7116:113:3,-163,11.5,0,0,-0.13605 -108193,7116:112:4,-162.5,11.5,0,0,-0.13605 -108194,7116:112:3,-162,11.5,0,0,-0.13605 -108195,7116:111:4,-161.5,11.5,0,0,-0.136837 -108196,7116:111:3,-161,11.5,0,0,-0.137924 -108197,7116:110:4,-160.5,11.5,0,0,-0.136161 -108198,7116:110:3,-160,11.5,0,0,-0.13605 -108199,7115:219:4,-159.5,11.5,0,0,-0.13605 -108200,7115:219:3,-159,11.5,0,0,-0.13605 -108201,7115:218:4,-158.5,11.5,0,0,-0.13605 -108202,7115:218:3,-158,11.5,0,0,-0.136654 -108203,7115:217:4,-157.5,11.5,0,0,-0.13605 -108204,7115:217:3,-157,11.5,0,0,-0.13605 -108205,7115:216:3,-156,11.5,0,0,-0.13605 -108206,7115:215:4,-155.5,11.5,0,0,-0.13605 -108207,7115:215:3,-155,11.5,0,0,-0.13605 -108208,7115:114:4,-154.5,11.5,0,0,-0.13605 -108209,7115:114:3,-154,11.5,0,0,-0.13605 -108210,7115:113:4,-153.5,11.5,0,0,-0.13605 -108211,7115:113:3,-153,11.5,0,0,-0.13605 -108212,7115:112:4,-152.5,11.5,0,0,-0.13605 -108213,7115:112:3,-152,11.5,0,0,-0.13605 -108214,7115:111:4,-151.5,11.5,0,0,-0.13605 -108215,7115:111:3,-151,11.5,0,0,-0.13605 -108216,7115:110:4,-150.5,11.5,0,0,-0.13605 -108217,7115:110:3,-150,11.5,0,0,-0.13605 -108218,7114:219:4,-149.5,11.5,0,0,-0.13605 -108219,7114:219:3,-149,11.5,0,0,-0.13605 -108220,7114:218:4,-148.5,11.5,0,0,-0.13605 -108221,7114:218:3,-148,11.5,0,0,-0.13605 -108222,7114:217:4,-147.5,11.5,0,0,-0.13605 -108223,7114:217:3,-147,11.5,0,0,-0.13605 -108224,7114:216:4,-146.5,11.5,0,0,-0.13605 -108225,7114:216:3,-146,11.5,0,0,-0.13605 -108226,7114:215:4,-145.5,11.5,0,0,-0.13605 -108227,7114:215:3,-145,11.5,0,0,-0.13605 -108228,7114:114:4,-144.5,11.5,0,0,-0.13605 -108229,7114:114:3,-144,11.5,0,0,-0.13605 -108230,7114:113:4,-143.5,11.5,0,0,-0.13605 -108231,7114:113:3,-143,11.5,0,0,-0.13605 -108232,7114:112:4,-142.5,11.5,0,0,-0.13605 -108233,7114:112:3,-142,11.5,0,0,-0.13605 -108234,7114:111:4,-141.5,11.5,0,0,-0.13605 -108235,7114:111:3,-141,11.5,0,0,-0.13605 -108236,7114:110:4,-140.5,11.5,0,0,-0.13605 -108237,7114:110:3,-140,11.5,0,0,-0.13605 -108238,7113:219:4,-139.5,11.5,0,0,-0.13605 -108239,7113:219:3,-139,11.5,0,0,-0.13605 -108240,7113:218:4,-138.5,11.5,0,0,-0.13605 -108241,7113:218:3,-138,11.5,0,0,-0.13605 -108242,7113:217:4,-137.5,11.5,0,0,-0.13605 -108243,7113:217:3,-137,11.5,0,0,-0.13605 -108244,7113:216:4,-136.5,11.5,0,0,-0.13605 -108245,7113:216:3,-136,11.5,0,0,-0.13605 -108246,7113:215:4,-135.5,11.5,0,0,-0.13605 -108247,7113:215:3,-135,11.5,0,0,-0.13605 -108248,7113:114:4,-134.5,11.5,0,0,-0.13605 -108249,7113:114:3,-134,11.5,0,0,-0.13605 -108250,7113:113:4,-133.5,11.5,0,0,-0.13605 -108251,7113:113:3,-133,11.5,0,0,-0.13605 -108252,7113:112:4,-132.5,11.5,0,0,-0.13605 -108253,7113:112:3,-132,11.5,0,0,-0.13605 -108254,7113:111:4,-131.5,11.5,0,0,-0.13605 -108255,7113:111:3,-131,11.5,0,0,-0.13605 -108256,7113:110:4,-130.5,11.5,0,0,-0.13605 -108257,7113:110:3,-130,11.5,0,0,-0.13605 -108258,7112:219:4,-129.5,11.5,0,0,-0.13605 -108259,7112:219:3,-129,11.5,0,0,-0.13605 -108260,7112:218:4,-128.5,11.5,0,0,-0.13605 -108261,7112:218:3,-128,11.5,0,0,-0.13605 -108262,7112:217:4,-127.5,11.5,0,0,-0.13605 -108263,7112:217:3,-127,11.5,0,0,-0.13605 -108264,7112:216:4,-126.5,11.5,0,0,-0.13605 -108265,7112:216:3,-126,11.5,0,0,-0.13605 -108266,7112:215:4,-125.5,11.5,0,0,-0.13605 -108267,7112:215:3,-125,11.5,0,0,-0.13605 -108268,7112:114:4,-124.5,11.5,0,0,-0.13605 -108269,7112:114:3,-124,11.5,0,0,-0.13605 -108270,7112:113:4,-123.5,11.5,0,0,-0.13605 -108271,7112:113:3,-123,11.5,0,0,-0.13605 -108272,7112:112:4,-122.5,11.5,0,0,-0.13605 -108273,7112:112:3,-122,11.5,0,0,-0.13605 -108274,7112:111:4,-121.5,11.5,0,0,-0.13605 -108275,7112:111:3,-121,11.5,0,0,-0.13605 -108276,7112:110:4,-120.5,11.5,0,0,-0.13605 -108277,7112:110:3,-120,11.5,0,0,-0.13605 -108278,7111:219:4,-119.5,11.5,0,0,-0.13605 -108279,7111:219:3,-119,11.5,0,0,-0.13605 -108280,7111:218:4,-118.5,11.5,0,0,-0.13605 -108281,7111:218:3,-118,11.5,0,0,-0.13605 -108282,7111:217:4,-117.5,11.5,0,0,-0.13605 -108283,7111:217:3,-117,11.5,0,0,-0.13605 -108284,7111:216:4,-116.5,11.5,0,0,-0.13605 -108285,7111:216:3,-116,11.5,0,0,-0.13605 -108286,7111:215:4,-115.5,11.5,0,0,-0.13605 -108287,7111:215:3,-115,11.5,0,0,-0.13605 -108288,7111:114:4,-114.5,11.5,0,0,-0.13605 -108289,7111:114:3,-114,11.5,0,0,-0.13605 -108290,7111:113:4,-113.5,11.5,0,0,-0.13605 -108291,7111:113:3,-113,11.5,0,0,-0.13605 -108292,7111:112:4,-112.5,11.5,0,0,-0.13605 -108293,7111:112:3,-112,11.5,0,0,-0.13605 -108294,7111:111:4,-111.5,11.5,0,0,-0.13605 -108295,7111:111:3,-111,11.5,0,0,-0.13605 -108296,7111:110:4,-110.5,11.5,0,0,-0.13605 -108297,7111:110:3,-110,11.5,0,0,-0.13605 -108298,7110:219:4,-109.5,11.5,0,0,-0.13605 -108299,7110:219:3,-109,11.5,0,0,-0.137974 -108300,7110:218:4,-108.5,11.5,0,0,-0.14157 -108301,7110:218:3,-108,11.5,0,0,-0.148843 -108302,7110:217:4,-107.5,11.5,0,0,-0.153146 -108303,7110:217:3,-107,11.5,0,0,-0.162227 -108304,7110:216:4,-106.5,11.5,0,0,-0.170132 -108305,7110:216:3,-106,11.5,0,0,-0.171714 -108306,7110:215:4,-105.5,11.5,0,0,-0.16873 -108307,7109:217:3,-97,11.5,0,0,-0.13605 -108308,7109:216:4,-96.5,11.5,0,0,-0.137505 -108309,7109:216:3,-96,11.5,0,0,-0.137588 -108310,7109:215:4,-95.5,11.5,0,0,-0.137873 -108311,7109:215:3,-95,11.5,0,0,-0.139528 -108312,7109:114:4,-94.5,11.5,0,0,-0.140602 -108313,7109:114:3,-94,11.5,0,0,-0.140696 -108314,7109:113:4,-93.5,11.5,0,0,-0.14157 -108315,7109:113:3,-93,11.5,0,0,-0.144383 -108316,7109:112:4,-92.5,11.5,0,0,-0.147279 -108317,7109:112:3,-92,11.5,0,0,-0.149469 -108318,7109:111:4,-91.5,11.5,0,0,-0.149895 -108319,7109:111:3,-91,11.5,0,0,-0.142123 -108320,7109:110:4,-90.5,11.5,0,0,-0.139735 -108321,7108:216:4,-86.5,11.5,0,0,-0.185507 -108322,7108:216:3,-86,11.5,0,0,-0.187202 -108323,7108:215:4,-85.5,11.5,0,0,-0.179253 -108324,7108:215:3,-85,11.5,0,0,-0.172809 -108325,7108:114:4,-84.5,11.5,0,0,-0.170744 -108326,7108:114:3,-84,11.5,0,0,-0.16815 -108327,7108:113:4,-83.5,11.5,0,0,-0.168243 -108328,7108:113:3,-83,11.5,0,0,-0.168916 -108329,7108:112:4,-82.5,11.5,0,0,-0.169945 -108330,7108:112:3,-82,11.5,0,0,-0.17098 -108331,7108:111:4,-81.5,11.5,0,0,-0.172141 -108332,7108:111:3,-81,11.5,0,0,-0.173599 -108333,7108:110:4,-80.5,11.5,0,0,-0.175315 -108334,7108:110:3,-80,11.5,0,0,-0.176486 -108335,7107:219:4,-79.5,11.5,0,0,-0.175242 -108336,7107:219:3,-79,11.5,0,0,-0.173599 -108337,7107:218:4,-78.5,11.5,0,0,-0.166721 -108338,7107:215:4,-75.5,11.5,0,0,-0.166446 -108339,7107:215:3,-75,11.5,0,0,-0.165829 -108340,7107:114:4,-74.5,11.5,0,0,-0.164717 -108341,7107:114:3,-74,11.5,0,0,-0.164378 -108342,7107:113:4,-73.5,11.5,0,0,-0.170956 -108343,7107:113:3,-73,11.5,0,0,-0.16964 -108344,7107:112:4,-72.5,11.5,0,0,-0.16957 -108345,7107:112:3,-72,11.5,0,0,-0.168243 -108346,7107:111:4,-71.5,11.5,0,0,-0.167711 -108347,7107:111:3,-71,11.5,0,0,-0.16887 -108348,7107:110:4,-70.5,11.5,0,0,-0.16929 -108349,7107:110:3,-70,11.5,0,0,-0.168545 -108350,7106:219:4,-69.5,11.5,0,0,-0.168266 -108351,7106:219:3,-69,11.5,0,0,-0.1688 -108352,7106:218:4,-68.5,11.5,0,0,-0.172833 -108353,7106:218:3,-68,11.5,0,0,-0.173695 -108354,7106:217:4,-67.5,11.5,0,0,-0.175218 -108355,7106:217:3,-67,11.5,0,0,-0.176094 -108356,7106:216:4,-66.5,11.5,0,0,-0.175412 -108357,7106:216:3,-66,11.5,0,0,-0.174008 -108358,7106:215:4,-65.5,11.5,0,0,-0.173096 -108359,7106:215:3,-65,11.5,0,0,-0.17288 -108360,7106:114:4,-64.5,11.5,0,0,-0.173216 -108361,7106:114:3,-64,11.5,0,0,-0.17372 -108362,7106:113:4,-63.5,11.5,0,0,-0.174081 -108363,7106:113:3,-63,11.5,0,0,-0.174346 -108364,7106:112:4,-62.5,11.5,0,0,-0.173144 -108365,7106:112:3,-62,11.5,0,0,-0.170344 -108366,7106:111:4,-61.5,11.5,0,0,-0.16887 -108367,7106:111:3,-61,11.5,0,0,-0.1695 -108368,7106:110:4,-60.5,11.5,0,0,-0.169664 -108369,7106:110:3,-60,11.5,0,0,-0.168823 -108370,7105:219:4,-59.5,11.5,0,0,-0.168035 -108371,7105:219:3,-59,11.5,0,0,-0.167296 -108372,7105:218:4,-58.5,11.5,0,0,-0.166629 -108373,7105:218:3,-58,11.5,0,0,-0.165898 -108374,7105:217:4,-57.5,11.5,0,0,-0.16517 -108375,7105:217:3,-57,11.5,0,0,-0.164107 -108376,7105:216:4,-56.5,11.5,0,0,-0.162739 -108377,7105:216:3,-56,11.5,0,0,-0.161806 -108378,7105:215:4,-55.5,11.5,0,0,-0.161341 -108379,7105:215:3,-55,11.5,0,0,-0.160899 -108380,7105:114:4,-54.5,11.5,0,0,-0.160525 -108381,7105:114:3,-54,11.5,0,0,-0.15989 -108382,7105:113:4,-53.5,11.5,0,0,-0.159018 -108383,7105:113:3,-53,11.5,0,0,-0.157892 -108384,7105:112:4,-52.5,11.5,0,0,-0.156349 -108385,7105:112:3,-52,11.5,0,0,-0.154759 -108386,7105:111:4,-51.5,11.5,0,0,-0.153542 -108387,7105:111:3,-51,11.5,0,0,-0.152585 -108388,7105:110:4,-50.5,11.5,0,0,-0.151676 -108389,7105:110:3,-50,11.5,0,0,-0.150548 -108390,7104:219:4,-49.5,11.5,0,0,-0.149004 -108391,7104:219:3,-49,11.5,0,0,-0.14718 -108392,7104:218:4,-48.5,11.5,0,0,-0.145991 -108393,7104:218:3,-48,11.5,0,0,-0.145341 -108394,7104:217:4,-47.5,11.5,0,0,-0.145204 -108395,7104:217:3,-47,11.5,0,0,-0.144988 -108396,7104:216:4,-46.5,11.5,0,0,-0.144734 -108397,7104:216:3,-46,11.5,0,0,-0.144832 -108398,7104:215:4,-45.5,11.5,0,0,-0.143027 -108399,7104:215:3,-45,11.5,0,0,-0.140886 -108400,7104:114:4,-44.5,11.5,0,0,-0.139397 -108401,7104:114:3,-44,11.5,0,0,-0.138479 -108402,7104:113:4,-43.5,11.5,0,0,-0.138699 -108403,7104:113:3,-43,11.5,0,0,-0.138226 -108404,7104:112:4,-42.5,11.5,0,0,-0.136953 -108405,7104:112:3,-42,11.5,0,0,-0.136119 -108406,7104:111:4,-41.5,11.5,0,0,-0.13605 -108407,7104:111:3,-41,11.5,0,0,-0.136064 -108408,7104:110:4,-40.5,11.5,0,0,-0.136119 -108409,7104:110:3,-40,11.5,0,0,-0.13605 -108410,7103:219:4,-39.5,11.5,0,0,-0.13605 -108411,7103:219:3,-39,11.5,0,0,-0.13605 -108412,7103:218:4,-38.5,11.5,0,0,-0.13605 -108413,7103:218:3,-38,11.5,0,0,-0.13605 -108414,7103:217:4,-37.5,11.5,0,0,-0.13605 -108415,7103:217:3,-37,11.5,0,0,-0.13605 -108416,7103:216:4,-36.5,11.5,0,0,-0.13605 -108417,7103:216:3,-36,11.5,0,0,-0.13605 -108418,7103:215:4,-35.5,11.5,0,0,-0.13605 -108419,7103:215:3,-35,11.5,0,0,-0.13605 -108420,7103:114:4,-34.5,11.5,0,0,-0.13605 -108421,7103:114:3,-34,11.5,0,0,-0.13605 -108422,7103:113:4,-33.5,11.5,0,0,-0.13605 -108423,7103:113:3,-33,11.5,0,0,-0.13605 -108424,7103:112:4,-32.5,11.5,0,0,-0.13605 -108425,7103:112:3,-32,11.5,0,0,-0.13605 -108426,7103:111:4,-31.5,11.5,0,0,-0.13605 -108427,7103:111:3,-31,11.5,0,0,-0.13605 -108428,7103:110:4,-30.5,11.5,0,0,-0.13605 -108429,7103:110:3,-30,11.5,0,0,-0.13605 -108430,7102:219:4,-29.5,11.5,0,0,-0.13605 -108431,7102:219:3,-29,11.5,0,0,-0.13605 -108432,7102:218:4,-28.5,11.5,0,0,-0.13605 -108433,7102:218:3,-28,11.5,0,0,-0.13605 -108434,7102:217:4,-27.5,11.5,0,0,-0.13605 -108435,7102:217:3,-27,11.5,0,0,-0.13605 -108436,7102:216:4,-26.5,11.5,0,0,-0.13605 -108437,7102:216:3,-26,11.5,0,0,-0.13605 -108438,7102:215:4,-25.5,11.5,0,0,-0.13605 -108439,7102:215:3,-25,11.5,0,0,-0.13605 -108440,7102:114:4,-24.5,11.5,0,0,-0.13605 -108441,7102:114:3,-24,11.5,0,0,-0.13605 -108442,7102:113:4,-23.5,11.5,0,0,-0.13605 -108443,7102:113:3,-23,11.5,0,0,-0.13605 -108444,7102:112:4,-22.5,11.5,0,0,-0.13605 -108445,7102:112:3,-22,11.5,0,0,-0.13605 -108446,7102:111:4,-21.5,11.5,0,0,-0.13605 -108447,7102:111:3,-21,11.5,0,0,-0.13605 -108448,7102:110:4,-20.5,11.5,0,0,-0.13605 -108449,7102:110:3,-20,11.5,0,0,-0.13605 -108450,7101:219:4,-19.5,11.5,0,0,-0.13605 -108451,7101:219:3,-19,11.5,0,0,-0.13605 -108452,7101:218:4,-18.5,11.5,0,0,-0.13605 -108453,7101:218:3,-18,11.5,0,0,-0.13605 -108454,7101:217:4,-17.5,11.5,0,0,-0.13605 -108455,7101:217:3,-17,11.5,0,0,-0.13605 -108456,1103:217:3,37,11.5,0,0,-0.188517 -108457,1103:217:4,37.5,11.5,0,0,-0.256779 -108458,1103:218:3,38,11.5,0,0,-0.351289 -108459,1103:218:4,38.5,11.5,0,0,-0.520767 -108460,1103:219:3,39,11.5,0,0,-0.761432 -108461,1105:218:4,58.5,11.5,0,0,-0.13605 -108462,1105:219:3,59,11.5,0,0,-0.13605 -108463,1105:219:4,59.5,11.5,0,0,-0.136537 -108464,1106:110:3,60,11.5,0,0,-0.144266 -108465,1106:110:4,60.5,11.5,0,0,-0.145754 -108466,1106:111:3,61,11.5,0,0,-0.145479 -108467,1106:111:4,61.5,11.5,0,0,-0.145263 -108468,1106:112:3,62,11.5,0,0,-0.145951 -108469,1106:112:4,62.5,11.5,0,0,-0.1471 -108470,1106:113:3,63,11.5,0,0,-0.147061 -108471,1106:113:4,63.5,11.5,0,0,-0.14601 -108472,1106:114:3,64,11.5,0,0,-0.1454 -108473,1106:114:4,64.5,11.5,0,0,-0.144383 -108474,1106:215:3,65,11.5,0,0,-0.142181 -108475,1106:215:4,65.5,11.5,0,0,-0.143606 -108476,1106:216:3,66,11.5,0,0,-0.146524 -108477,1106:216:4,66.5,11.5,0,0,-0.149308 -108478,1106:217:3,67,11.5,0,0,-0.153793 -108479,1106:217:4,67.5,11.5,0,0,-0.162094 -108480,1106:218:3,68,11.5,0,0,-0.168916 -108481,1106:218:4,68.5,11.5,0,0,-0.167873 -108482,1106:219:3,69,11.5,0,0,-0.169547 -108483,1106:219:4,69.5,11.5,0,0,-0.169757 -108484,1107:110:3,70,11.5,0,0,-0.169898 -108485,1107:111:3,71,11.5,0,0,-0.166652 -108486,1107:111:4,71.5,11.5,0,0,-0.167573 -108487,1107:112:3,72,11.5,0,0,-0.179402 -108488,1107:112:4,72.5,11.5,0,0,-0.180906 -108489,1108:217:4,87.5,11.5,0,0,-0.145243 -108490,1108:218:3,88,11.5,0,0,-0.142911 -108491,1108:218:4,88.5,11.5,0,0,-0.140488 -108492,1108:219:3,89,11.5,0,0,-0.145145 -108493,1108:219:4,89.5,11.5,0,0,-0.152751 -108494,1109:110:3,90,11.5,0,0,-0.164491 -108495,1109:110:4,90.5,11.5,0,0,-0.151203 -108496,1109:111:3,91,11.5,0,0,-0.142411 -108497,1109:111:4,91.5,11.5,0,0,-0.150404 -108498,1109:112:3,92,11.5,0,0,-0.15729 -108499,1109:112:4,92.5,11.5,0,0,-0.183626 -108500,1110:217:4,107.5,11.5,0,0,-0.13605 -108501,1110:218:3,108,11.5,0,0,-0.13605 -108502,1110:218:4,108.5,11.5,0,0,-0.13605 -108503,1110:219:3,109,11.5,0,0,-0.13605 -108504,1110:219:4,109.5,11.5,0,0,-0.13605 -108505,1111:111:3,111,11.5,0,0,-0.13605 -108506,1111:111:4,111.5,11.5,0,0,-0.13605 -108507,1111:112:3,112,11.5,0,0,-0.13605 -108508,1111:112:4,112.5,11.5,0,0,-0.13605 -108509,1111:113:3,113,11.5,0,0,-0.13605 -108510,1111:113:4,113.5,11.5,0,0,-0.13605 -108511,1111:114:3,114,11.5,0,0,-0.13605 -108512,1111:114:4,114.5,11.5,0,0,-0.13605 -108513,1111:215:3,115,11.5,0,0,-0.13605 -108514,1111:215:4,115.5,11.5,0,0,-0.136159 -108515,1111:216:3,116,11.5,0,0,-0.139434 -108516,1111:216:4,116.5,11.5,0,0,-0.14176 -108517,1111:217:3,117,11.5,0,0,-0.144969 -108518,1111:217:4,117.5,11.5,0,0,-0.146683 -108519,1111:218:3,118,11.5,0,0,-0.147939 -108520,1111:218:4,118.5,11.5,0,0,-0.1471 -108521,1111:219:3,119,11.5,0,0,-0.143316 -108522,1111:219:4,119.5,11.5,0,0,-0.137253 -108523,1112:110:3,120,11.5,0,0,-0.13605 -108524,1112:110:4,120.5,11.5,0,0,-0.13605 -108525,1112:111:3,121,11.5,0,0,-0.136101 -108526,1112:111:4,121.5,11.5,0,0,-0.13605 -108527,1112:112:3,122,11.5,0,0,-0.13605 -108528,1112:112:4,122.5,11.5,0,0,-0.13605 -108529,1112:113:3,123,11.5,0,0,-0.13605 -108530,1112:113:4,123.5,11.5,0,0,-0.13605 -108531,1112:114:3,124,11.5,0,0,-0.13605 -108532,1112:114:4,124.5,11.5,0,0,-0.13605 -108533,1112:215:3,125,11.5,0,0,-0.13605 -108534,1112:215:4,125.5,11.5,0,0,-0.13605 -108535,1112:216:3,126,11.5,0,0,-0.13605 -108536,1112:216:4,126.5,11.5,0,0,-0.13605 -108537,1112:217:3,127,11.5,0,0,-0.13605 -108538,1112:217:4,127.5,11.5,0,0,-0.13605 -108539,1112:218:3,128,11.5,0,0,-0.13605 -108540,1112:218:4,128.5,11.5,0,0,-0.136279 -108541,1112:219:3,129,11.5,0,0,-0.139071 -108542,1112:219:4,129.5,11.5,0,0,-0.141952 -108543,1113:110:3,130,11.5,0,0,-0.142968 -108544,1113:110:4,130.5,11.5,0,0,-0.144169 -108545,1113:111:3,131,11.5,0,0,-0.144442 -108546,1113:111:4,131.5,11.5,0,0,-0.145322 -108547,1113:112:3,132,11.5,0,0,-0.148079 -108548,1113:112:4,132.5,11.5,0,0,-0.150425 -108549,1113:113:3,133,11.5,0,0,-0.150446 -108550,1113:113:4,133.5,11.5,0,0,-0.148843 -108551,1113:114:3,134,11.5,0,0,-0.148259 -108552,1113:114:4,134.5,11.5,0,0,-0.149916 -108553,1113:215:3,135,11.5,0,0,-0.153877 -108554,1113:215:4,135.5,11.5,0,0,-0.156626 -108555,1113:216:3,136,11.5,0,0,-0.158757 -108556,1113:216:4,136.5,11.5,0,0,-0.160482 -108557,1113:217:3,137,11.5,0,0,-0.162227 -108558,1113:217:4,137.5,11.5,0,0,-0.165465 -108559,1113:218:3,138,11.5,0,0,-0.170344 -108560,1113:218:4,138.5,11.5,0,0,-0.173072 -108561,1113:219:3,139,11.5,0,0,-0.171476 -108562,1113:219:4,139.5,11.5,0,0,-0.171145 -108563,1114:110:3,140,11.5,0,0,-0.17188 -108564,1114:110:4,140.5,11.5,0,0,-0.170909 -108565,1114:111:3,141,11.5,0,0,-0.169945 -108566,1114:111:4,141.5,11.5,0,0,-0.170768 -108567,1114:112:3,142,11.5,0,0,-0.171785 -108568,1114:112:4,142.5,11.5,0,0,-0.170344 -108569,1114:113:3,143,11.5,0,0,-0.168823 -108570,1114:113:4,143.5,11.5,0,0,-0.169336 -108571,1114:114:3,144,11.5,0,0,-0.173552 -108572,1114:114:4,144.5,11.5,0,0,-0.176853 -108573,1114:215:3,145,11.5,0,0,-0.176021 -108574,1114:215:4,145.5,11.5,0,0,-0.173816 -108575,1114:216:3,146,11.5,0,0,-0.172355 -108576,1114:216:4,146.5,11.5,0,0,-0.17324 -108577,1114:217:3,147,11.5,0,0,-0.17534 -108578,1114:217:4,147.5,11.5,0,0,-0.176805 -108579,1114:218:3,148,11.5,0,0,-0.176903 -108580,1114:218:4,148.5,11.5,0,0,-0.176143 -108581,1114:219:3,149,11.5,0,0,-0.175997 -108582,1114:219:4,149.5,11.5,0,0,-0.176193 -108583,1115:110:3,150,11.5,0,0,-0.176314 -108584,1115:110:4,150.5,11.5,0,0,-0.175363 -108585,1115:111:3,151,11.5,0,0,-0.173864 -108586,1115:111:4,151.5,11.5,0,0,-0.173407 -108587,1115:112:3,152,11.5,0,0,-0.172499 -108588,1115:112:4,152.5,11.5,0,0,-0.171904 -108589,1115:113:3,153,11.5,0,0,-0.171999 -108590,1115:113:4,153.5,11.5,0,0,-0.173072 -108591,1115:114:3,154,11.5,0,0,-0.17312 -108592,1115:114:4,154.5,11.5,0,0,-0.172475 -108593,1115:215:3,155,11.5,0,0,-0.172023 -108594,1115:215:4,155.5,11.5,0,0,-0.171856 -108595,1115:216:3,156,11.5,0,0,-0.172141 -108596,1115:216:4,156.5,11.5,0,0,-0.172904 -108597,1115:217:3,157,11.5,0,0,-0.173624 -108598,1115:217:4,157.5,11.5,0,0,-0.173287 -108599,1115:218:3,158,11.5,0,0,-0.172308 -108600,1115:218:4,158.5,11.5,0,0,-0.171928 -108601,1115:219:3,159,11.5,0,0,-0.171287 -108602,1115:219:4,159.5,11.5,0,0,-0.169734 -108603,1116:110:3,160,11.5,0,0,-0.168174 -108604,1116:110:4,160.5,11.5,0,0,-0.167203 -108605,1116:111:3,161,11.5,0,0,-0.166263 -108606,1116:111:4,161.5,11.5,0,0,-0.166469 -108607,1116:112:3,162,11.5,0,0,-0.168498 -108608,1116:112:4,162.5,11.5,0,0,-0.169968 -108609,1116:113:3,163,11.5,0,0,-0.170273 -108610,1116:113:4,163.5,11.5,0,0,-0.169757 -108611,1116:114:3,164,11.5,0,0,-0.167895 -108612,1116:114:4,164.5,11.5,0,0,-0.16413 -108613,1116:215:3,165,11.5,0,0,-0.162539 -108614,1116:215:4,165.5,11.5,0,0,-0.163837 -108615,1116:216:3,166,11.5,0,0,-0.16404 -108616,1116:216:4,166.5,11.5,0,0,-0.165011 -108617,1116:217:3,167,11.5,0,0,-0.165761 -108618,1116:217:4,167.5,11.5,0,0,-0.166149 -108619,1116:218:3,168,11.5,0,0,-0.165898 -108620,1116:218:4,168.5,11.5,0,0,-0.16483 -108621,1116:219:3,169,11.5,0,0,-0.163231 -108622,1116:219:4,169.5,11.5,0,0,-0.161274 -108623,1117:110:3,170,11.5,0,0,-0.159955 -108624,1117:110:4,170.5,11.5,0,0,-0.160175 -108625,1117:111:3,171,11.5,0,0,-0.160306 -108626,1117:111:4,171.5,11.5,0,0,-0.159541 -108627,1117:112:3,172,11.5,0,0,-0.158779 -108628,1117:112:4,172.5,11.5,0,0,-0.157354 -108629,1117:113:3,173,11.5,0,0,-0.157226 -108630,1117:113:4,173.5,11.5,0,0,-0.15699 -108631,1117:114:3,174,11.5,0,0,-0.15516 -108632,1117:114:4,174.5,11.5,0,0,-0.153188 -108633,1117:215:3,175,11.5,0,0,-0.150895 -108634,1117:215:4,175.5,11.5,0,0,-0.149085 -108635,1117:216:3,176,11.5,0,0,-0.147739 -108636,1117:216:4,176.5,11.5,0,0,-0.147659 -108637,1117:217:3,177,11.5,0,0,-0.148259 -108638,1117:217:4,177.5,11.5,0,0,-0.148239 -108639,1117:218:3,178,11.5,0,0,-0.147319 -108640,1117:218:4,178.5,11.5,0,0,-0.145971 -108641,1117:219:3,179,11.5,0,0,-0.144754 -108642,1117:219:4,179.5,11.5,0,0,-0.144656 -108643,1118:110:3,180,11.5,0,0,-0.14542 -108644,7118:120:1,-180,12,0,0,-0.142123 -108645,7117:229:2,-179.5,12,0,0,-0.144402 -108646,7117:229:1,-179,12,0,0,-0.143142 -108647,7117:228:2,-178.5,12,0,0,-0.142334 -108648,7117:228:1,-178,12,0,0,-0.141589 -108649,7117:227:2,-177.5,12,0,0,-0.140469 -108650,7117:227:1,-177,12,0,0,-0.13966 -108651,7117:226:2,-176.5,12,0,0,-0.139641 -108652,7117:226:1,-176,12,0,0,-0.138986 -108653,7117:225:2,-175.5,12,0,0,-0.137991 -108654,7117:225:1,-175,12,0,0,-0.137555 -108655,7117:124:2,-174.5,12,0,0,-0.137037 -108656,7117:124:1,-174,12,0,0,-0.136937 -108657,7117:123:2,-173.5,12,0,0,-0.13655 -108658,7117:123:1,-173,12,0,0,-0.136084 -108659,7117:122:2,-172.5,12,0,0,-0.13605 -108660,7117:122:1,-172,12,0,0,-0.13605 -108661,7117:121:2,-171.5,12,0,0,-0.13605 -108662,7117:121:1,-171,12,0,0,-0.13605 -108663,7117:120:2,-170.5,12,0,0,-0.13605 -108664,7117:120:1,-170,12,0,0,-0.13605 -108665,7116:229:2,-169.5,12,0,0,-0.13605 -108666,7116:229:1,-169,12,0,0,-0.13605 -108667,7116:228:2,-168.5,12,0,0,-0.13605 -108668,7116:228:1,-168,12,0,0,-0.13605 -108669,7116:227:2,-167.5,12,0,0,-0.13605 -108670,7116:227:1,-167,12,0,0,-0.13605 -108671,7116:226:2,-166.5,12,0,0,-0.136254 -108672,7116:226:1,-166,12,0,0,-0.13605 -108673,7116:225:2,-165.5,12,0,0,-0.13605 -108674,7116:225:1,-165,12,0,0,-0.13605 -108675,7116:124:2,-164.5,12,0,0,-0.13605 -108676,7116:124:1,-164,12,0,0,-0.13605 -108677,7116:123:2,-163.5,12,0,0,-0.13605 -108678,7116:123:1,-163,12,0,0,-0.13605 -108679,7116:122:2,-162.5,12,0,0,-0.13605 -108680,7116:122:1,-162,12,0,0,-0.13605 -108681,7116:121:2,-161.5,12,0,0,-0.13605 -108682,7116:121:1,-161,12,0,0,-0.13605 -108683,7116:120:2,-160.5,12,0,0,-0.13605 -108684,7116:120:1,-160,12,0,0,-0.13605 -108685,7115:229:2,-159.5,12,0,0,-0.13605 -108686,7115:229:1,-159,12,0,0,-0.13605 -108687,7115:228:2,-158.5,12,0,0,-0.13605 -108688,7115:227:2,-157.5,12,0,0,-0.13605 -108689,7115:227:1,-157,12,0,0,-0.13605 -108690,7115:226:2,-156.5,12,0,0,-0.13605 -108691,7115:226:1,-156,12,0,0,-0.13605 -108692,7115:225:2,-155.5,12,0,0,-0.13605 -108693,7115:225:1,-155,12,0,0,-0.13605 -108694,7115:124:2,-154.5,12,0,0,-0.13605 -108695,7115:124:1,-154,12,0,0,-0.13605 -108696,7115:123:2,-153.5,12,0,0,-0.13605 -108697,7115:123:1,-153,12,0,0,-0.13605 -108698,7115:122:2,-152.5,12,0,0,-0.13605 -108699,7115:122:1,-152,12,0,0,-0.13605 -108700,7115:121:2,-151.5,12,0,0,-0.13605 -108701,7115:121:1,-151,12,0,0,-0.13605 -108702,7115:120:2,-150.5,12,0,0,-0.13605 -108703,7115:120:1,-150,12,0,0,-0.13605 -108704,7114:229:2,-149.5,12,0,0,-0.13605 -108705,7114:229:1,-149,12,0,0,-0.13605 -108706,7114:228:2,-148.5,12,0,0,-0.13605 -108707,7114:228:1,-148,12,0,0,-0.13605 -108708,7114:227:2,-147.5,12,0,0,-0.13605 -108709,7114:227:1,-147,12,0,0,-0.13605 -108710,7114:226:2,-146.5,12,0,0,-0.13605 -108711,7114:226:1,-146,12,0,0,-0.13605 -108712,7114:225:2,-145.5,12,0,0,-0.13605 -108713,7114:225:1,-145,12,0,0,-0.13605 -108714,7114:124:2,-144.5,12,0,0,-0.13605 -108715,7114:124:1,-144,12,0,0,-0.13605 -108716,7114:123:2,-143.5,12,0,0,-0.13605 -108717,7114:123:1,-143,12,0,0,-0.13605 -108718,7114:122:2,-142.5,12,0,0,-0.13605 -108719,7114:122:1,-142,12,0,0,-0.13605 -108720,7114:121:2,-141.5,12,0,0,-0.13605 -108721,7114:121:1,-141,12,0,0,-0.13605 -108722,7114:120:2,-140.5,12,0,0,-0.13605 -108723,7114:120:1,-140,12,0,0,-0.13605 -108724,7113:229:2,-139.5,12,0,0,-0.13605 -108725,7113:229:1,-139,12,0,0,-0.13605 -108726,7113:228:2,-138.5,12,0,0,-0.13605 -108727,7113:228:1,-138,12,0,0,-0.13605 -108728,7113:227:2,-137.5,12,0,0,-0.13605 -108729,7113:227:1,-137,12,0,0,-0.13605 -108730,7113:226:2,-136.5,12,0,0,-0.13605 -108731,7113:226:1,-136,12,0,0,-0.13605 -108732,7113:225:2,-135.5,12,0,0,-0.13605 -108733,7113:225:1,-135,12,0,0,-0.13605 -108734,7113:124:2,-134.5,12,0,0,-0.13605 -108735,7113:124:1,-134,12,0,0,-0.13605 -108736,7113:123:2,-133.5,12,0,0,-0.13605 -108737,7113:123:1,-133,12,0,0,-0.13605 -108738,7113:122:2,-132.5,12,0,0,-0.13605 -108739,7113:122:1,-132,12,0,0,-0.13605 -108740,7113:121:2,-131.5,12,0,0,-0.13605 -108741,7113:121:1,-131,12,0,0,-0.13605 -108742,7113:120:2,-130.5,12,0,0,-0.13605 -108743,7113:120:1,-130,12,0,0,-0.13605 -108744,7112:229:2,-129.5,12,0,0,-0.13605 -108745,7112:229:1,-129,12,0,0,-0.13605 -108746,7112:228:2,-128.5,12,0,0,-0.13605 -108747,7112:228:1,-128,12,0,0,-0.13605 -108748,7112:227:2,-127.5,12,0,0,-0.13605 -108749,7112:227:1,-127,12,0,0,-0.13605 -108750,7112:226:2,-126.5,12,0,0,-0.13605 -108751,7112:226:1,-126,12,0,0,-0.13605 -108752,7112:225:2,-125.5,12,0,0,-0.13605 -108753,7112:225:1,-125,12,0,0,-0.13605 -108754,7112:124:2,-124.5,12,0,0,-0.13605 -108755,7112:124:1,-124,12,0,0,-0.13605 -108756,7112:123:2,-123.5,12,0,0,-0.13605 -108757,7112:123:1,-123,12,0,0,-0.13605 -108758,7112:122:2,-122.5,12,0,0,-0.13605 -108759,7112:122:1,-122,12,0,0,-0.13605 -108760,7112:121:2,-121.5,12,0,0,-0.13605 -108761,7112:121:1,-121,12,0,0,-0.13605 -108762,7112:120:2,-120.5,12,0,0,-0.13605 -108763,7112:120:1,-120,12,0,0,-0.13605 -108764,7111:229:2,-119.5,12,0,0,-0.13605 -108765,7111:229:1,-119,12,0,0,-0.13605 -108766,7111:228:2,-118.5,12,0,0,-0.13605 -108767,7111:228:1,-118,12,0,0,-0.13605 -108768,7111:227:2,-117.5,12,0,0,-0.13605 -108769,7111:227:1,-117,12,0,0,-0.13605 -108770,7111:226:2,-116.5,12,0,0,-0.13605 -108771,7111:226:1,-116,12,0,0,-0.13605 -108772,7111:225:2,-115.5,12,0,0,-0.13605 -108773,7111:225:1,-115,12,0,0,-0.13605 -108774,7111:124:2,-114.5,12,0,0,-0.13605 -108775,7111:124:1,-114,12,0,0,-0.13605 -108776,7111:123:2,-113.5,12,0,0,-0.13605 -108777,7111:123:1,-113,12,0,0,-0.13605 -108778,7111:122:2,-112.5,12,0,0,-0.13605 -108779,7111:122:1,-112,12,0,0,-0.13605 -108780,7111:121:2,-111.5,12,0,0,-0.13605 -108781,7111:121:1,-111,12,0,0,-0.13605 -108782,7111:120:2,-110.5,12,0,0,-0.13605 -108783,7111:120:1,-110,12,0,0,-0.13605 -108784,7110:229:2,-109.5,12,0,0,-0.13605 -108785,7110:229:1,-109,12,0,0,-0.14268 -108786,7110:228:2,-108.5,12,0,0,-0.141703 -108787,7110:228:1,-108,12,0,0,-0.14452 -108788,7110:227:2,-107.5,12,0,0,-0.152917 -108789,7110:227:1,-107,12,0,0,-0.16294 -108790,7110:226:2,-106.5,12,0,0,-0.162918 -108791,7110:226:1,-106,12,0,0,-0.162829 -108792,7110:225:2,-105.5,12,0,0,-0.163075 -108793,7109:227:1,-97,12,0,0,-0.137087 -108794,7109:226:2,-96.5,12,0,0,-0.137773 -108795,7109:226:1,-96,12,0,0,-0.139071 -108796,7109:225:2,-95.5,12,0,0,-0.140111 -108797,7109:225:1,-95,12,0,0,-0.14136 -108798,7109:124:2,-94.5,12,0,0,-0.142795 -108799,7109:124:1,-94,12,0,0,-0.143413 -108800,7109:123:2,-93.5,12,0,0,-0.142564 -108801,7109:123:1,-93,12,0,0,-0.142564 -108802,7109:122:2,-92.5,12,0,0,-0.143219 -108803,7109:122:1,-92,12,0,0,-0.148964 -108804,7109:121:2,-91.5,12,0,0,-0.14842 -108805,7109:121:1,-91,12,0,0,-0.143684 -108806,7109:120:2,-90.5,12,0,0,-0.140999 -108807,7109:120:1,-90,12,0,0,-0.13996 -108808,7108:229:2,-89.5,12,0,0,-0.139378 -108809,7108:229:1,-89,12,0,0,-0.142411 -108810,7108:226:2,-86.5,12,0,0,-0.17883 -108811,7108:226:1,-86,12,0,0,-0.186574 -108812,7108:225:2,-85.5,12,0,0,-0.174975 -108813,7108:225:1,-85,12,0,0,-0.168058 -108814,7108:124:2,-84.5,12,0,0,-0.165374 -108815,7108:124:1,-84,12,0,0,-0.165738 -108816,7108:123:2,-83.5,12,0,0,-0.166515 -108817,7108:122:2,-82.5,12,0,0,-0.166446 -108818,7108:122:1,-82,12,0,0,-0.16725 -108819,7108:121:2,-81.5,12,0,0,-0.167503 -108820,7108:121:1,-81,12,0,0,-0.168196 -108821,7108:120:2,-80.5,12,0,0,-0.17065 -108822,7108:120:1,-80,12,0,0,-0.17025 -108823,7107:229:2,-79.5,12,0,0,-0.152109 -108824,7107:229:1,-79,12,0,0,-0.149652 -108825,7107:226:2,-76.5,12,0,0,-0.163905 -108826,7107:226:1,-76,12,0,0,-0.16542 -108827,7107:225:2,-75.5,12,0,0,-0.161651 -108828,7107:225:1,-75,12,0,0,-0.161098 -108829,7107:124:2,-74.5,12,0,0,-0.167158 -108830,7107:124:1,-74,12,0,0,-0.167089 -108831,7107:123:2,-73.5,12,0,0,-0.167089 -108832,7107:123:1,-73,12,0,0,-0.167457 -108833,7107:122:2,-72.5,12,0,0,-0.166836 -108834,7107:122:1,-72,12,0,0,-0.159781 -108835,7107:121:2,-71.5,12,0,0,-0.161429 -108836,7107:121:1,-71,12,0,0,-0.161098 -108837,7107:120:2,-70.5,12,0,0,-0.162985 -108838,7107:120:1,-70,12,0,0,-0.166721 -108839,7106:229:2,-69.5,12,0,0,-0.166699 -108840,7106:229:1,-69,12,0,0,-0.167181 -108841,7106:228:2,-68.5,12,0,0,-0.167919 -108842,7106:228:1,-68,12,0,0,-0.167665 -108843,7106:227:2,-67.5,12,0,0,-0.169687 -108844,7106:227:1,-67,12,0,0,-0.171761 -108845,7106:226:2,-66.5,12,0,0,-0.17288 -108846,7106:226:1,-66,12,0,0,-0.17257 -108847,7106:225:2,-65.5,12,0,0,-0.170909 -108848,7106:225:1,-65,12,0,0,-0.168987 -108849,7106:124:2,-64.5,12,0,0,-0.168637 -108850,7106:124:1,-64,12,0,0,-0.169336 -108851,7106:123:2,-63.5,12,0,0,-0.170109 -108852,7106:123:1,-63,12,0,0,-0.169757 -108853,7106:122:2,-62.5,12,0,0,-0.168847 -108854,7106:122:1,-62,12,0,0,-0.167734 -108855,7106:121:2,-61.5,12,0,0,-0.167181 -108856,7106:121:1,-61,12,0,0,-0.167573 -108857,7106:120:2,-60.5,12,0,0,-0.168498 -108858,7106:120:1,-60,12,0,0,-0.167965 -108859,7105:229:2,-59.5,12,0,0,-0.167227 -108860,7105:229:1,-59,12,0,0,-0.165647 -108861,7105:228:2,-58.5,12,0,0,-0.163612 -108862,7105:228:1,-58,12,0,0,-0.162539 -108863,7105:227:2,-57.5,12,0,0,-0.162606 -108864,7105:227:1,-57,12,0,0,-0.161894 -108865,7105:226:2,-56.5,12,0,0,-0.160856 -108866,7105:226:1,-56,12,0,0,-0.159628 -108867,7105:225:2,-55.5,12,0,0,-0.158628 -108868,7105:225:1,-55,12,0,0,-0.157763 -108869,7105:124:2,-54.5,12,0,0,-0.156712 -108870,7105:124:1,-54,12,0,0,-0.156392 -108871,7105:123:2,-53.5,12,0,0,-0.155711 -108872,7105:123:1,-53,12,0,0,-0.154738 -108873,7105:122:2,-52.5,12,0,0,-0.153626 -108874,7105:122:1,-52,12,0,0,-0.152855 -108875,7105:121:2,-51.5,12,0,0,-0.152502 -108876,7105:121:1,-51,12,0,0,-0.152212 -108877,7105:120:2,-50.5,12,0,0,-0.151429 -108878,7105:120:1,-50,12,0,0,-0.150038 -108879,7104:229:2,-49.5,12,0,0,-0.148179 -108880,7104:229:1,-49,12,0,0,-0.145853 -108881,7104:228:2,-48.5,12,0,0,-0.1445 -108882,7104:228:1,-48,12,0,0,-0.143994 -108883,7104:227:2,-47.5,12,0,0,-0.143955 -108884,7104:227:1,-47,12,0,0,-0.144052 -108885,7104:226:2,-46.5,12,0,0,-0.143703 -108886,7104:226:1,-46,12,0,0,-0.142507 -108887,7104:225:2,-45.5,12,0,0,-0.140867 -108888,7104:225:1,-45,12,0,0,-0.139772 -108889,7104:124:2,-44.5,12,0,0,-0.138462 -108890,7104:124:1,-44,12,0,0,-0.136804 -108891,7104:123:2,-43.5,12,0,0,-0.13672 -108892,7104:123:1,-43,12,0,0,-0.136804 -108893,7104:122:2,-42.5,12,0,0,-0.136136 -108894,7104:122:1,-42,12,0,0,-0.13605 -108895,7104:121:2,-41.5,12,0,0,-0.13605 -108896,7104:121:1,-41,12,0,0,-0.13605 -108897,7104:120:2,-40.5,12,0,0,-0.13605 -108898,7104:120:1,-40,12,0,0,-0.13605 -108899,7103:229:2,-39.5,12,0,0,-0.13605 -108900,7103:229:1,-39,12,0,0,-0.13605 -108901,7103:228:2,-38.5,12,0,0,-0.13605 -108902,7103:228:1,-38,12,0,0,-0.13605 -108903,7103:227:2,-37.5,12,0,0,-0.13605 -108904,7103:227:1,-37,12,0,0,-0.13605 -108905,7103:226:2,-36.5,12,0,0,-0.13605 -108906,7103:226:1,-36,12,0,0,-0.13605 -108907,7103:225:2,-35.5,12,0,0,-0.13605 -108908,7103:225:1,-35,12,0,0,-0.13605 -108909,7103:124:2,-34.5,12,0,0,-0.13605 -108910,7103:124:1,-34,12,0,0,-0.13605 -108911,7103:123:2,-33.5,12,0,0,-0.13605 -108912,7103:123:1,-33,12,0,0,-0.13605 -108913,7103:122:2,-32.5,12,0,0,-0.13605 -108914,7103:122:1,-32,12,0,0,-0.13605 -108915,7103:121:2,-31.5,12,0,0,-0.13605 -108916,7103:121:1,-31,12,0,0,-0.13605 -108917,7103:120:2,-30.5,12,0,0,-0.13605 -108918,7103:120:1,-30,12,0,0,-0.13605 -108919,7102:229:2,-29.5,12,0,0,-0.13605 -108920,7102:229:1,-29,12,0,0,-0.13605 -108921,7102:228:2,-28.5,12,0,0,-0.13605 -108922,7102:228:1,-28,12,0,0,-0.13605 -108923,7102:227:2,-27.5,12,0,0,-0.13605 -108924,7102:227:1,-27,12,0,0,-0.13605 -108925,7102:226:2,-26.5,12,0,0,-0.13605 -108926,7102:226:1,-26,12,0,0,-0.13605 -108927,7102:225:2,-25.5,12,0,0,-0.13605 -108928,7102:225:1,-25,12,0,0,-0.13605 -108929,7102:124:2,-24.5,12,0,0,-0.13605 -108930,7102:124:1,-24,12,0,0,-0.13605 -108931,7102:123:2,-23.5,12,0,0,-0.13605 -108932,7102:123:1,-23,12,0,0,-0.13605 -108933,7102:122:2,-22.5,12,0,0,-0.13605 -108934,7102:122:1,-22,12,0,0,-0.13605 -108935,7102:121:2,-21.5,12,0,0,-0.13605 -108936,7102:121:1,-21,12,0,0,-0.13605 -108937,7102:120:2,-20.5,12,0,0,-0.13605 -108938,7102:120:1,-20,12,0,0,-0.13605 -108939,7101:229:2,-19.5,12,0,0,-0.13605 -108940,7101:229:1,-19,12,0,0,-0.13605 -108941,7101:228:2,-18.5,12,0,0,-0.13605 -108942,7101:228:1,-18,12,0,0,-0.13605 -108943,7101:227:2,-17.5,12,0,0,-0.13605 -108944,1103:227:1,37,12,0,0,-0.18728 -108945,1103:227:2,37.5,12,0,0,-0.20677 -108946,1103:228:1,38,12,0,0,-0.292611 -108947,1103:228:2,38.5,12,0,0,-0.440967 -108948,1105:229:2,59.5,12,0,0,-0.13605 -108949,1106:120:1,60,12,0,0,-0.139566 -108950,1106:120:2,60.5,12,0,0,-0.14489 -108951,1106:121:1,61,12,0,0,-0.145243 -108952,1106:121:2,61.5,12,0,0,-0.144714 -108953,1106:122:1,62,12,0,0,-0.143142 -108954,1106:122:2,62.5,12,0,0,-0.143761 -108955,1106:123:1,63,12,0,0,-0.144383 -108956,1106:123:2,63.5,12,0,0,-0.140999 -108957,1106:124:1,64,12,0,0,-0.139434 -108958,1106:124:2,64.5,12,0,0,-0.14013 -108959,1106:225:1,65,12,0,0,-0.140167 -108960,1106:225:2,65.5,12,0,0,-0.143161 -108961,1106:226:1,66,12,0,0,-0.146485 -108962,1106:226:2,66.5,12,0,0,-0.151737 -108963,1106:227:1,67,12,0,0,-0.158671 -108964,1106:227:2,67.5,12,0,0,-0.16294 -108965,1106:228:1,68,12,0,0,-0.16422 -108966,1106:228:2,68.5,12,0,0,-0.166882 -108967,1106:229:1,69,12,0,0,-0.167066 -108968,1107:122:1,72,12,0,0,-0.172213 -108969,1108:227:2,87.5,12,0,0,-0.139359 -108970,1108:228:1,88,12,0,0,-0.141684 -108971,1108:228:2,88.5,12,0,0,-0.14136 -108972,1108:229:1,89,12,0,0,-0.143722 -108973,1108:229:2,89.5,12,0,0,-0.142834 -108974,1109:120:1,90,12,0,0,-0.144091 -108975,1109:120:2,90.5,12,0,0,-0.141589 -108976,1109:121:1,91,12,0,0,-0.136121 -108977,1109:121:2,91.5,12,0,0,-0.13605 -108978,1109:122:1,92,12,0,0,-0.161319 -108979,1110:228:2,108.5,12,0,0,-0.13605 -108980,1110:229:1,109,12,0,0,-0.13605 -108981,1110:229:2,109.5,12,0,0,-0.13605 -108982,1111:120:1,110,12,0,0,-0.13605 -108983,1111:122:1,112,12,0,0,-0.13605 -108984,1111:122:2,112.5,12,0,0,-0.13605 -108985,1111:123:1,113,12,0,0,-0.13605 -108986,1111:123:2,113.5,12,0,0,-0.13605 -108987,1111:124:1,114,12,0,0,-0.13605 -108988,1111:124:2,114.5,12,0,0,-0.13605 -108989,1111:225:1,115,12,0,0,-0.13605 -108990,1111:225:2,115.5,12,0,0,-0.13605 -108991,1111:226:1,116,12,0,0,-0.13605 -108992,1111:226:2,116.5,12,0,0,-0.13605 -108993,1111:227:1,117,12,0,0,-0.136421 -108994,1111:227:2,117.5,12,0,0,-0.140602 -108995,1111:228:1,118,12,0,0,-0.142718 -108996,1111:228:2,118.5,12,0,0,-0.140942 -108997,1111:229:1,119,12,0,0,-0.137237 -108998,1111:229:2,119.5,12,0,0,-0.13605 -108999,1112:120:1,120,12,0,0,-0.13605 -109000,1112:120:2,120.5,12,0,0,-0.136069 -109001,1112:121:1,121,12,0,0,-0.13605 -109002,1112:121:2,121.5,12,0,0,-0.13605 -109003,1112:122:1,122,12,0,0,-0.13605 -109004,1112:122:2,122.5,12,0,0,-0.13605 -109005,1112:123:1,123,12,0,0,-0.13605 -109006,1112:123:2,123.5,12,0,0,-0.13605 -109007,1112:124:1,124,12,0,0,-0.13605 -109008,1112:124:2,124.5,12,0,0,-0.13605 -109009,1112:225:1,125,12,0,0,-0.13605 -109010,1112:225:2,125.5,12,0,0,-0.13605 -109011,1112:226:1,126,12,0,0,-0.13605 -109012,1112:226:2,126.5,12,0,0,-0.13605 -109013,1112:227:1,127,12,0,0,-0.13605 -109014,1112:227:2,127.5,12,0,0,-0.13605 -109015,1112:228:1,128,12,0,0,-0.13605 -109016,1112:228:2,128.5,12,0,0,-0.136079 -109017,1112:229:1,129,12,0,0,-0.137253 -109018,1112:229:2,129.5,12,0,0,-0.137974 -109019,1113:120:1,130,12,0,0,-0.137655 -109020,1113:120:2,130.5,12,0,0,-0.137053 -109021,1113:121:1,131,12,0,0,-0.13672 -109022,1113:121:2,131.5,12,0,0,-0.137756 -109023,1113:122:1,132,12,0,0,-0.140375 -109024,1113:122:2,132.5,12,0,0,-0.1432 -109025,1113:123:1,133,12,0,0,-0.145283 -109026,1113:123:2,133.5,12,0,0,-0.145106 -109027,1113:124:1,134,12,0,0,-0.144754 -109028,1113:124:2,134.5,12,0,0,-0.146782 -109029,1113:225:1,135,12,0,0,-0.15016 -109030,1113:225:2,135.5,12,0,0,-0.152502 -109031,1113:226:1,136,12,0,0,-0.155414 -109032,1113:226:2,136.5,12,0,0,-0.15965 -109033,1113:227:1,137,12,0,0,-0.163568 -109034,1113:227:2,137.5,12,0,0,-0.165624 -109035,1113:228:1,138,12,0,0,-0.16413 -109036,1113:228:2,138.5,12,0,0,-0.160856 -109037,1113:229:1,139,12,0,0,-0.16154 -109038,1113:229:2,139.5,12,0,0,-0.165989 -109039,1114:120:1,140,12,0,0,-0.168174 -109040,1114:120:2,140.5,12,0,0,-0.167043 -109041,1114:121:1,141,12,0,0,-0.166195 -109042,1114:121:2,141.5,12,0,0,-0.167066 -109043,1114:122:1,142,12,0,0,-0.167989 -109044,1114:122:2,142.5,12,0,0,-0.166882 -109045,1114:123:1,143,12,0,0,-0.165442 -109046,1114:123:2,143.5,12,0,0,-0.165442 -109047,1114:124:1,144,12,0,0,-0.167411 -109048,1114:124:2,144.5,12,0,0,-0.170603 -109049,1114:225:1,145,12,0,0,-0.171453 -109050,1114:225:2,145.5,12,0,0,-0.171098 -109051,1114:226:1,146,12,0,0,-0.170156 -109052,1114:226:2,146.5,12,0,0,-0.168637 -109053,1114:227:1,147,12,0,0,-0.168405 -109054,1114:227:2,147.5,12,0,0,-0.169406 -109055,1114:228:1,148,12,0,0,-0.170556 -109056,1114:228:2,148.5,12,0,0,-0.171121 -109057,1114:229:1,149,12,0,0,-0.172332 -109058,1114:229:2,149.5,12,0,0,-0.173816 -109059,1115:120:1,150,12,0,0,-0.174081 -109060,1115:120:2,150.5,12,0,0,-0.173312 -109061,1115:121:1,151,12,0,0,-0.171904 -109062,1115:121:2,151.5,12,0,0,-0.171619 -109063,1115:122:1,152,12,0,0,-0.172189 -109064,1115:122:2,152.5,12,0,0,-0.171571 -109065,1115:123:1,153,12,0,0,-0.170485 -109066,1115:123:2,153.5,12,0,0,-0.170838 -109067,1115:124:1,154,12,0,0,-0.171595 -109068,1115:124:2,154.5,12,0,0,-0.17124 -109069,1115:225:1,155,12,0,0,-0.170603 -109070,1115:225:2,155.5,12,0,0,-0.170109 -109071,1115:226:1,156,12,0,0,-0.169594 -109072,1115:226:2,156.5,12,0,0,-0.169477 -109073,1115:227:1,157,12,0,0,-0.169851 -109074,1115:227:2,157.5,12,0,0,-0.169173 -109075,1115:228:1,158,12,0,0,-0.168035 -109076,1115:228:2,158.5,12,0,0,-0.167549 -109077,1115:229:1,159,12,0,0,-0.168428 -109078,1115:229:2,159.5,12,0,0,-0.169103 -109079,1116:120:1,160,12,0,0,-0.167895 -109080,1116:120:2,160.5,12,0,0,-0.166744 -109081,1116:121:1,161,12,0,0,-0.165807 -109082,1116:121:2,161.5,12,0,0,-0.165102 -109083,1116:122:1,162,12,0,0,-0.164513 -109084,1116:122:2,162.5,12,0,0,-0.164287 -109085,1116:123:1,163,12,0,0,-0.165079 -109086,1116:123:2,163.5,12,0,0,-0.166676 -109087,1116:124:1,164,12,0,0,-0.165602 -109088,1116:124:2,164.5,12,0,0,-0.162138 -109089,1116:225:1,165,12,0,0,-0.161473 -109090,1116:225:2,165.5,12,0,0,-0.162383 -109091,1116:226:1,166,12,0,0,-0.162094 -109092,1116:226:2,166.5,12,0,0,-0.161651 -109093,1116:227:1,167,12,0,0,-0.161452 -109094,1116:227:2,167.5,12,0,0,-0.162049 -109095,1116:228:1,168,12,0,0,-0.162049 -109096,1116:228:2,168.5,12,0,0,-0.161806 -109097,1116:229:1,169,12,0,0,-0.161429 -109098,1116:229:2,169.5,12,0,0,-0.159671 -109099,1117:120:1,170,12,0,0,-0.155838 -109100,1117:120:2,170.5,12,0,0,-0.153167 -109101,1117:121:1,171,12,0,0,-0.152461 -109102,1117:121:2,171.5,12,0,0,-0.152938 -109103,1117:122:1,172,12,0,0,-0.154675 -109104,1117:122:2,172.5,12,0,0,-0.155626 -109105,1117:123:1,173,12,0,0,-0.154864 -109106,1117:123:2,173.5,12,0,0,-0.154738 -109107,1117:124:1,174,12,0,0,-0.154003 -109108,1117:124:2,174.5,12,0,0,-0.153167 -109109,1117:225:1,175,12,0,0,-0.151593 -109110,1117:225:2,175.5,12,0,0,-0.149308 -109111,1117:226:1,176,12,0,0,-0.147399 -109112,1117:226:2,176.5,12,0,0,-0.144754 -109113,1117:227:1,177,12,0,0,-0.143161 -109114,1117:227:2,177.5,12,0,0,-0.142315 -109115,1117:228:1,178,12,0,0,-0.14157 -109116,1117:228:2,178.5,12,0,0,-0.141417 -109117,1117:229:1,179,12,0,0,-0.141856 -109118,1117:229:2,179.5,12,0,0,-0.142238 -109119,1118:120:1,180,12,0,0,-0.142123 -109120,7118:120:3,-180,12.5,0,0,-0.136654 -109121,7117:229:4,-179.5,12.5,0,0,-0.139003 -109122,7117:229:3,-179,12.5,0,0,-0.138682 -109123,7117:228:4,-178.5,12.5,0,0,-0.137907 -109124,7117:228:3,-178,12.5,0,0,-0.136787 -109125,7117:227:4,-177.5,12.5,0,0,-0.136279 -109126,7117:227:3,-177,12.5,0,0,-0.136195 -109127,7117:226:4,-176.5,12.5,0,0,-0.136164 -109128,7117:226:3,-176,12.5,0,0,-0.136086 -109129,7117:225:4,-175.5,12.5,0,0,-0.13605 -109130,7117:225:3,-175,12.5,0,0,-0.136056 -109131,7117:124:4,-174.5,12.5,0,0,-0.136086 -109132,7117:124:3,-174,12.5,0,0,-0.13605 -109133,7117:123:4,-173.5,12.5,0,0,-0.13605 -109134,7117:123:3,-173,12.5,0,0,-0.13605 -109135,7117:122:4,-172.5,12.5,0,0,-0.13605 -109136,7117:122:3,-172,12.5,0,0,-0.13605 -109137,7117:121:4,-171.5,12.5,0,0,-0.13605 -109138,7117:121:3,-171,12.5,0,0,-0.13605 -109139,7117:120:4,-170.5,12.5,0,0,-0.13605 -109140,7117:120:3,-170,12.5,0,0,-0.13605 -109141,7116:229:4,-169.5,12.5,0,0,-0.13605 -109142,7116:229:3,-169,12.5,0,0,-0.13605 -109143,7116:228:4,-168.5,12.5,0,0,-0.13605 -109144,7116:228:3,-168,12.5,0,0,-0.13605 -109145,7116:227:4,-167.5,12.5,0,0,-0.13605 -109146,7116:227:3,-167,12.5,0,0,-0.13605 -109147,7116:226:4,-166.5,12.5,0,0,-0.13605 -109148,7116:226:3,-166,12.5,0,0,-0.13605 -109149,7116:225:4,-165.5,12.5,0,0,-0.13605 -109150,7116:225:3,-165,12.5,0,0,-0.13605 -109151,7116:124:4,-164.5,12.5,0,0,-0.13605 -109152,7116:124:3,-164,12.5,0,0,-0.13605 -109153,7116:123:4,-163.5,12.5,0,0,-0.13605 -109154,7116:123:3,-163,12.5,0,0,-0.13605 -109155,7116:122:4,-162.5,12.5,0,0,-0.13605 -109156,7116:122:3,-162,12.5,0,0,-0.13605 -109157,7116:121:4,-161.5,12.5,0,0,-0.13605 -109158,7116:121:3,-161,12.5,0,0,-0.13605 -109159,7116:120:4,-160.5,12.5,0,0,-0.13605 -109160,7116:120:3,-160,12.5,0,0,-0.13605 -109161,7115:229:3,-159,12.5,0,0,-0.13605 -109162,7115:228:4,-158.5,12.5,0,0,-0.13605 -109163,7115:228:3,-158,12.5,0,0,-0.13605 -109164,7115:227:4,-157.5,12.5,0,0,-0.13605 -109165,7115:227:3,-157,12.5,0,0,-0.13605 -109166,7115:226:4,-156.5,12.5,0,0,-0.13605 -109167,7115:226:3,-156,12.5,0,0,-0.13605 -109168,7115:225:4,-155.5,12.5,0,0,-0.13605 -109169,7115:225:3,-155,12.5,0,0,-0.13605 -109170,7115:124:4,-154.5,12.5,0,0,-0.13605 -109171,7115:124:3,-154,12.5,0,0,-0.13605 -109172,7115:123:4,-153.5,12.5,0,0,-0.13605 -109173,7115:123:3,-153,12.5,0,0,-0.13605 -109174,7115:122:4,-152.5,12.5,0,0,-0.13605 -109175,7115:122:3,-152,12.5,0,0,-0.13605 -109176,7115:121:4,-151.5,12.5,0,0,-0.13605 -109177,7115:121:3,-151,12.5,0,0,-0.13605 -109178,7115:120:4,-150.5,12.5,0,0,-0.13605 -109179,7115:120:3,-150,12.5,0,0,-0.13605 -109180,7114:229:4,-149.5,12.5,0,0,-0.13605 -109181,7114:229:3,-149,12.5,0,0,-0.13605 -109182,7114:228:4,-148.5,12.5,0,0,-0.13605 -109183,7114:228:3,-148,12.5,0,0,-0.13605 -109184,7114:227:4,-147.5,12.5,0,0,-0.13605 -109185,7114:227:3,-147,12.5,0,0,-0.13605 -109186,7114:226:4,-146.5,12.5,0,0,-0.13605 -109187,7114:226:3,-146,12.5,0,0,-0.13605 -109188,7114:225:4,-145.5,12.5,0,0,-0.13605 -109189,7114:225:3,-145,12.5,0,0,-0.13605 -109190,7114:124:4,-144.5,12.5,0,0,-0.13605 -109191,7114:124:3,-144,12.5,0,0,-0.13605 -109192,7114:123:4,-143.5,12.5,0,0,-0.13605 -109193,7114:123:3,-143,12.5,0,0,-0.13605 -109194,7114:122:4,-142.5,12.5,0,0,-0.13605 -109195,7114:122:3,-142,12.5,0,0,-0.13605 -109196,7114:121:4,-141.5,12.5,0,0,-0.13605 -109197,7114:121:3,-141,12.5,0,0,-0.13605 -109198,7114:120:4,-140.5,12.5,0,0,-0.13605 -109199,7114:120:3,-140,12.5,0,0,-0.13605 -109200,7113:229:4,-139.5,12.5,0,0,-0.13605 -109201,7113:229:3,-139,12.5,0,0,-0.13605 -109202,7113:228:4,-138.5,12.5,0,0,-0.13605 -109203,7113:228:3,-138,12.5,0,0,-0.13605 -109204,7113:227:4,-137.5,12.5,0,0,-0.13605 -109205,7113:227:3,-137,12.5,0,0,-0.13605 -109206,7113:226:4,-136.5,12.5,0,0,-0.13605 -109207,7113:226:3,-136,12.5,0,0,-0.13605 -109208,7113:225:4,-135.5,12.5,0,0,-0.13605 -109209,7113:225:3,-135,12.5,0,0,-0.13605 -109210,7113:124:4,-134.5,12.5,0,0,-0.13605 -109211,7113:124:3,-134,12.5,0,0,-0.13605 -109212,7113:123:4,-133.5,12.5,0,0,-0.13605 -109213,7113:123:3,-133,12.5,0,0,-0.13605 -109214,7113:122:4,-132.5,12.5,0,0,-0.13605 -109215,7113:122:3,-132,12.5,0,0,-0.13605 -109216,7113:121:4,-131.5,12.5,0,0,-0.13605 -109217,7113:121:3,-131,12.5,0,0,-0.13605 -109218,7113:120:4,-130.5,12.5,0,0,-0.13605 -109219,7113:120:3,-130,12.5,0,0,-0.13605 -109220,7112:229:4,-129.5,12.5,0,0,-0.13605 -109221,7112:229:3,-129,12.5,0,0,-0.13605 -109222,7112:228:4,-128.5,12.5,0,0,-0.13605 -109223,7112:228:3,-128,12.5,0,0,-0.13605 -109224,7112:227:4,-127.5,12.5,0,0,-0.13605 -109225,7112:227:3,-127,12.5,0,0,-0.13605 -109226,7112:226:4,-126.5,12.5,0,0,-0.13605 -109227,7112:226:3,-126,12.5,0,0,-0.13605 -109228,7112:225:4,-125.5,12.5,0,0,-0.13605 -109229,7112:225:3,-125,12.5,0,0,-0.13605 -109230,7112:124:4,-124.5,12.5,0,0,-0.13605 -109231,7112:124:3,-124,12.5,0,0,-0.13605 -109232,7112:123:4,-123.5,12.5,0,0,-0.13605 -109233,7112:123:3,-123,12.5,0,0,-0.13605 -109234,7112:122:4,-122.5,12.5,0,0,-0.13605 -109235,7112:122:3,-122,12.5,0,0,-0.13605 -109236,7112:121:4,-121.5,12.5,0,0,-0.13605 -109237,7112:121:3,-121,12.5,0,0,-0.13605 -109238,7112:120:4,-120.5,12.5,0,0,-0.13605 -109239,7112:120:3,-120,12.5,0,0,-0.13605 -109240,7111:229:4,-119.5,12.5,0,0,-0.13605 -109241,7111:229:3,-119,12.5,0,0,-0.13605 -109242,7111:228:4,-118.5,12.5,0,0,-0.13605 -109243,7111:228:3,-118,12.5,0,0,-0.13605 -109244,7111:227:4,-117.5,12.5,0,0,-0.13605 -109245,7111:227:3,-117,12.5,0,0,-0.13605 -109246,7111:226:4,-116.5,12.5,0,0,-0.13605 -109247,7111:226:3,-116,12.5,0,0,-0.13605 -109248,7111:225:4,-115.5,12.5,0,0,-0.13605 -109249,7111:225:3,-115,12.5,0,0,-0.13605 -109250,7111:124:4,-114.5,12.5,0,0,-0.13605 -109251,7111:124:3,-114,12.5,0,0,-0.13605 -109252,7111:123:4,-113.5,12.5,0,0,-0.13605 -109253,7111:123:3,-113,12.5,0,0,-0.13605 -109254,7111:122:4,-112.5,12.5,0,0,-0.13605 -109255,7111:122:3,-112,12.5,0,0,-0.13605 -109256,7111:121:4,-111.5,12.5,0,0,-0.13605 -109257,7111:121:3,-111,12.5,0,0,-0.13605 -109258,7111:120:4,-110.5,12.5,0,0,-0.13605 -109259,7111:120:3,-110,12.5,0,0,-0.13605 -109260,7110:229:4,-109.5,12.5,0,0,-0.13605 -109261,7110:229:3,-109,12.5,0,0,-0.14491 -109262,7110:228:4,-108.5,12.5,0,0,-0.146782 -109263,7110:228:3,-108,12.5,0,0,-0.149166 -109264,7110:227:4,-107.5,12.5,0,0,-0.154675 -109265,7110:227:3,-107,12.5,0,0,-0.159388 -109266,7110:226:4,-106.5,12.5,0,0,-0.154801 -109267,7110:226:3,-106,12.5,0,0,-0.159322 -109268,7109:227:4,-97.5,12.5,0,0,-0.13605 -109269,7109:227:3,-97,12.5,0,0,-0.136202 -109270,7109:226:4,-96.5,12.5,0,0,-0.13712 -109271,7109:226:3,-96,12.5,0,0,-0.138226 -109272,7109:225:4,-95.5,12.5,0,0,-0.138513 -109273,7109:225:3,-95,12.5,0,0,-0.138902 -109274,7109:124:4,-94.5,12.5,0,0,-0.140318 -109275,7109:124:3,-94,12.5,0,0,-0.142238 -109276,7109:123:4,-93.5,12.5,0,0,-0.143664 -109277,7109:123:3,-93,12.5,0,0,-0.143994 -109278,7109:122:4,-92.5,12.5,0,0,-0.143548 -109279,7109:122:3,-92,12.5,0,0,-0.1445 -109280,7109:121:4,-91.5,12.5,0,0,-0.14448 -109281,7109:121:3,-91,12.5,0,0,-0.143645 -109282,7109:120:4,-90.5,12.5,0,0,-0.14245 -109283,7109:120:3,-90,12.5,0,0,-0.142603 -109284,7108:229:4,-89.5,12.5,0,0,-0.142757 -109285,7108:229:3,-89,12.5,0,0,-0.143509 -109286,7108:228:4,-88.5,12.5,0,0,-0.150364 -109287,7108:228:3,-88,12.5,0,0,-0.15989 -109288,7108:227:4,-87.5,12.5,0,0,-0.168591 -109289,7108:227:3,-87,12.5,0,0,-0.174298 -109290,7108:226:4,-86.5,12.5,0,0,-0.181993 -109291,7108:226:3,-86,12.5,0,0,-0.183215 -109292,7108:225:4,-85.5,12.5,0,0,-0.1688 -109293,7108:225:3,-85,12.5,0,0,-0.164671 -109294,7108:124:4,-84.5,12.5,0,0,-0.148782 -109295,7108:123:4,-83.5,12.5,0,0,-0.136524 -109296,7108:123:3,-83,12.5,0,0,-0.13605 -109297,7108:122:4,-82.5,12.5,0,0,-0.140602 -109298,7108:122:3,-82,12.5,0,0,-0.143974 -109299,7107:228:3,-78,12.5,0,0,-0.149692 -109300,7107:227:4,-77.5,12.5,0,0,-0.159235 -109301,7107:227:3,-77,12.5,0,0,-0.163276 -109302,7107:226:4,-76.5,12.5,0,0,-0.145853 -109303,7107:226:3,-76,12.5,0,0,-0.152171 -109304,7107:225:4,-75.5,12.5,0,0,-0.149571 -109305,7107:225:3,-75,12.5,0,0,-0.156776 -109306,7107:124:4,-74.5,12.5,0,0,-0.16303 -109307,7107:124:3,-74,12.5,0,0,-0.160592 -109308,7107:123:4,-73.5,12.5,0,0,-0.162338 -109309,7107:123:3,-73,12.5,0,0,-0.158346 -109310,7107:122:4,-72.5,12.5,0,0,-0.160811 -109311,7107:122:3,-72,12.5,0,0,-0.160592 -109312,7107:121:4,-71.5,12.5,0,0,-0.159847 -109313,7107:121:3,-71,12.5,0,0,-0.159563 -109314,7107:120:4,-70.5,12.5,0,0,-0.162249 -109315,7107:120:3,-70,12.5,0,0,-0.16386 -109316,7106:229:4,-69.5,12.5,0,0,-0.163837 -109317,7106:229:3,-69,12.5,0,0,-0.163477 -109318,7106:228:4,-68.5,12.5,0,0,-0.16245 -109319,7106:228:3,-68,12.5,0,0,-0.162294 -109320,7106:227:4,-67.5,12.5,0,0,-0.164062 -109321,7106:227:3,-67,12.5,0,0,-0.165624 -109322,7106:226:4,-66.5,12.5,0,0,-0.166126 -109323,7106:226:3,-66,12.5,0,0,-0.165784 -109324,7106:225:4,-65.5,12.5,0,0,-0.164739 -109325,7106:225:3,-65,12.5,0,0,-0.163298 -109326,7106:124:4,-64.5,12.5,0,0,-0.162183 -109327,7106:124:3,-64,12.5,0,0,-0.163052 -109328,7106:123:4,-63.5,12.5,0,0,-0.164694 -109329,7106:123:3,-63,12.5,0,0,-0.165397 -109330,7106:122:4,-62.5,12.5,0,0,-0.164581 -109331,7106:122:3,-62,12.5,0,0,-0.164333 -109332,7106:121:4,-61.5,12.5,0,0,-0.165102 -109333,7106:121:3,-61,12.5,0,0,-0.16542 -109334,7106:120:4,-60.5,12.5,0,0,-0.164988 -109335,7106:120:3,-60,12.5,0,0,-0.163568 -109336,7105:229:4,-59.5,12.5,0,0,-0.161651 -109337,7105:229:3,-59,12.5,0,0,-0.159497 -109338,7105:228:4,-58.5,12.5,0,0,-0.158779 -109339,7105:228:3,-58,12.5,0,0,-0.159955 -109340,7105:227:4,-57.5,12.5,0,0,-0.160482 -109341,7105:227:3,-57,12.5,0,0,-0.159977 -109342,7105:226:4,-56.5,12.5,0,0,-0.15904 -109343,7105:226:3,-56,12.5,0,0,-0.157677 -109344,7105:225:4,-55.5,12.5,0,0,-0.15772 -109345,7105:225:3,-55,12.5,0,0,-0.157376 -109346,7105:124:4,-54.5,12.5,0,0,-0.155902 -109347,7105:124:3,-54,12.5,0,0,-0.154949 -109348,7105:123:4,-53.5,12.5,0,0,-0.154087 -109349,7105:123:3,-53,12.5,0,0,-0.152959 -109350,7105:122:4,-52.5,12.5,0,0,-0.151614 -109351,7105:122:3,-52,12.5,0,0,-0.150915 -109352,7105:121:4,-51.5,12.5,0,0,-0.151367 -109353,7105:121:3,-51,12.5,0,0,-0.151182 -109354,7105:120:4,-50.5,12.5,0,0,-0.149895 -109355,7105:120:3,-50,12.5,0,0,-0.147459 -109356,7104:229:4,-49.5,12.5,0,0,-0.145184 -109357,7104:229:3,-49,12.5,0,0,-0.143936 -109358,7104:228:4,-48.5,12.5,0,0,-0.143065 -109359,7104:228:3,-48,12.5,0,0,-0.14176 -109360,7104:227:4,-47.5,12.5,0,0,-0.141018 -109361,7104:227:3,-47,12.5,0,0,-0.141265 -109362,7104:226:4,-46.5,12.5,0,0,-0.141246 -109363,7104:226:3,-46,12.5,0,0,-0.140488 -109364,7104:225:4,-45.5,12.5,0,0,-0.139309 -109365,7104:225:3,-45,12.5,0,0,-0.138193 -109366,7104:124:4,-44.5,12.5,0,0,-0.136987 -109367,7104:124:3,-44,12.5,0,0,-0.136154 -109368,7104:123:4,-43.5,12.5,0,0,-0.136051 -109369,7104:123:3,-43,12.5,0,0,-0.13605 -109370,7104:122:4,-42.5,12.5,0,0,-0.13605 -109371,7104:122:3,-42,12.5,0,0,-0.13605 -109372,7104:121:4,-41.5,12.5,0,0,-0.13605 -109373,7104:121:3,-41,12.5,0,0,-0.13605 -109374,7104:120:4,-40.5,12.5,0,0,-0.13605 -109375,7104:120:3,-40,12.5,0,0,-0.13605 -109376,7103:229:4,-39.5,12.5,0,0,-0.13605 -109377,7103:229:3,-39,12.5,0,0,-0.13605 -109378,7103:228:4,-38.5,12.5,0,0,-0.13605 -109379,7103:228:3,-38,12.5,0,0,-0.13605 -109380,7103:227:4,-37.5,12.5,0,0,-0.13605 -109381,7103:227:3,-37,12.5,0,0,-0.13605 -109382,7103:226:4,-36.5,12.5,0,0,-0.13605 -109383,7103:226:3,-36,12.5,0,0,-0.13605 -109384,7103:225:4,-35.5,12.5,0,0,-0.13605 -109385,7103:225:3,-35,12.5,0,0,-0.13605 -109386,7103:124:4,-34.5,12.5,0,0,-0.13605 -109387,7103:124:3,-34,12.5,0,0,-0.13605 -109388,7103:123:4,-33.5,12.5,0,0,-0.13605 -109389,7103:123:3,-33,12.5,0,0,-0.13605 -109390,7103:122:4,-32.5,12.5,0,0,-0.13605 -109391,7103:122:3,-32,12.5,0,0,-0.13605 -109392,7103:121:4,-31.5,12.5,0,0,-0.13605 -109393,7103:121:3,-31,12.5,0,0,-0.13605 -109394,7103:120:4,-30.5,12.5,0,0,-0.13605 -109395,7103:120:3,-30,12.5,0,0,-0.13605 -109396,7102:229:4,-29.5,12.5,0,0,-0.13605 -109397,7102:229:3,-29,12.5,0,0,-0.13605 -109398,7102:228:4,-28.5,12.5,0,0,-0.13605 -109399,7102:228:3,-28,12.5,0,0,-0.13605 -109400,7102:227:4,-27.5,12.5,0,0,-0.13605 -109401,7102:227:3,-27,12.5,0,0,-0.13605 -109402,7102:226:4,-26.5,12.5,0,0,-0.13605 -109403,7102:226:3,-26,12.5,0,0,-0.13605 -109404,7102:225:4,-25.5,12.5,0,0,-0.13605 -109405,7102:225:3,-25,12.5,0,0,-0.13605 -109406,7102:124:4,-24.5,12.5,0,0,-0.13605 -109407,7102:124:3,-24,12.5,0,0,-0.13605 -109408,7102:123:4,-23.5,12.5,0,0,-0.13605 -109409,7102:123:3,-23,12.5,0,0,-0.13605 -109410,7102:122:4,-22.5,12.5,0,0,-0.13605 -109411,7102:122:3,-22,12.5,0,0,-0.13605 -109412,7102:121:4,-21.5,12.5,0,0,-0.13605 -109413,7102:121:3,-21,12.5,0,0,-0.13605 -109414,7102:120:4,-20.5,12.5,0,0,-0.13605 -109415,7102:120:3,-20,12.5,0,0,-0.13605 -109416,7101:229:4,-19.5,12.5,0,0,-0.13605 -109417,7101:229:3,-19,12.5,0,0,-0.13605 -109418,7101:228:4,-18.5,12.5,0,0,-0.13605 -109419,7101:228:3,-18,12.5,0,0,-0.13605 -109420,7101:227:4,-17.5,12.5,0,0,-0.13605 -109421,1103:227:3,37,12.5,0,0,-0.190967 -109422,1103:227:4,37.5,12.5,0,0,-0.192773 -109423,1103:228:3,38,12.5,0,0,-0.191665 -109424,1103:228:4,38.5,12.5,0,0,-0.273767 -109425,1106:120:3,60,12.5,0,0,-0.13605 -109426,1106:120:4,60.5,12.5,0,0,-0.139416 -109427,1106:121:3,61,12.5,0,0,-0.142296 -109428,1106:121:4,61.5,12.5,0,0,-0.142296 -109429,1106:122:3,62,12.5,0,0,-0.141474 -109430,1106:122:4,62.5,12.5,0,0,-0.140412 -109431,1106:123:3,63,12.5,0,0,-0.141341 -109432,1106:123:4,63.5,12.5,0,0,-0.137773 -109433,1106:124:3,64,12.5,0,0,-0.136886 -109434,1106:124:4,64.5,12.5,0,0,-0.137404 -109435,1106:225:3,65,12.5,0,0,-0.138885 -109436,1106:225:4,65.5,12.5,0,0,-0.142795 -109437,1106:226:3,66,12.5,0,0,-0.147979 -109438,1106:226:4,66.5,12.5,0,0,-0.153752 -109439,1106:227:3,67,12.5,0,0,-0.157376 -109440,1106:227:4,67.5,12.5,0,0,-0.158649 -109441,1106:228:3,68,12.5,0,0,-0.159977 -109442,1106:228:4,68.5,12.5,0,0,-0.157677 -109443,1109:121:3,91,12.5,0,0,-0.139603 -109444,1109:121:4,91.5,12.5,0,0,-0.138986 -109445,1109:122:3,92,12.5,0,0,-0.145361 -109446,1111:124:3,114,12.5,0,0,-0.13605 -109447,1111:124:4,114.5,12.5,0,0,-0.13605 -109448,1111:225:3,115,12.5,0,0,-0.13605 -109449,1111:225:4,115.5,12.5,0,0,-0.13605 -109450,1111:226:3,116,12.5,0,0,-0.13605 -109451,1111:226:4,116.5,12.5,0,0,-0.13605 -109452,1111:227:3,117,12.5,0,0,-0.13605 -109453,1111:227:4,117.5,12.5,0,0,-0.13605 -109454,1111:228:3,118,12.5,0,0,-0.13605 -109455,1111:228:4,118.5,12.5,0,0,-0.13605 -109456,1111:229:3,119,12.5,0,0,-0.13605 -109457,1111:229:4,119.5,12.5,0,0,-0.13605 -109458,1112:120:3,120,12.5,0,0,-0.13605 -109459,1112:120:4,120.5,12.5,0,0,-0.13605 -109460,1112:121:4,121.5,12.5,0,0,-0.13605 -109461,1112:122:3,122,12.5,0,0,-0.13605 -109462,1112:122:4,122.5,12.5,0,0,-0.13605 -109463,1112:123:3,123,12.5,0,0,-0.13605 -109464,1112:123:4,123.5,12.5,0,0,-0.13605 -109465,1112:124:3,124,12.5,0,0,-0.13605 -109466,1112:124:4,124.5,12.5,0,0,-0.13605 -109467,1112:225:3,125,12.5,0,0,-0.13605 -109468,1112:225:4,125.5,12.5,0,0,-0.13605 -109469,1112:226:3,126,12.5,0,0,-0.13605 -109470,1112:226:4,126.5,12.5,0,0,-0.13605 -109471,1112:227:3,127,12.5,0,0,-0.13605 -109472,1112:227:4,127.5,12.5,0,0,-0.13605 -109473,1112:228:3,128,12.5,0,0,-0.13605 -109474,1112:228:4,128.5,12.5,0,0,-0.13605 -109475,1112:229:3,129,12.5,0,0,-0.13605 -109476,1112:229:4,129.5,12.5,0,0,-0.13605 -109477,1113:120:3,130,12.5,0,0,-0.13605 -109478,1113:120:4,130.5,12.5,0,0,-0.13605 -109479,1113:121:3,131,12.5,0,0,-0.13605 -109480,1113:121:4,131.5,12.5,0,0,-0.13605 -109481,1113:122:3,132,12.5,0,0,-0.13605 -109482,1113:122:4,132.5,12.5,0,0,-0.13732 -109483,1113:123:3,133,12.5,0,0,-0.142105 -109484,1113:123:4,133.5,12.5,0,0,-0.142354 -109485,1113:124:3,134,12.5,0,0,-0.139434 -109486,1113:124:4,134.5,12.5,0,0,-0.137622 -109487,1113:225:3,135,12.5,0,0,-0.139866 -109488,1113:225:4,135.5,12.5,0,0,-0.143877 -109489,1113:226:3,136,12.5,0,0,-0.14842 -109490,1113:226:4,136.5,12.5,0,0,-0.154527 -109491,1113:227:3,137,12.5,0,0,-0.158692 -109492,1113:227:4,137.5,12.5,0,0,-0.159213 -109493,1113:228:3,138,12.5,0,0,-0.156733 -109494,1113:228:4,138.5,12.5,0,0,-0.15459 -109495,1113:229:3,139,12.5,0,0,-0.155626 -109496,1113:229:4,139.5,12.5,0,0,-0.159018 -109497,1114:120:3,140,12.5,0,0,-0.16079 -109498,1114:120:4,140.5,12.5,0,0,-0.160987 -109499,1114:121:3,141,12.5,0,0,-0.161872 -109500,1114:121:4,141.5,12.5,0,0,-0.163882 -109501,1114:122:3,142,12.5,0,0,-0.16483 -109502,1114:122:4,142.5,12.5,0,0,-0.164107 -109503,1114:123:3,143,12.5,0,0,-0.163568 -109504,1114:123:4,143.5,12.5,0,0,-0.163725 -109505,1114:124:3,144,12.5,0,0,-0.165079 -109506,1114:124:4,144.5,12.5,0,0,-0.166355 -109507,1114:225:3,145,12.5,0,0,-0.166561 -109508,1114:225:4,145.5,12.5,0,0,-0.165989 -109509,1114:226:3,146,12.5,0,0,-0.165579 -109510,1114:226:4,146.5,12.5,0,0,-0.165306 -109511,1114:227:3,147,12.5,0,0,-0.164966 -109512,1114:227:4,147.5,12.5,0,0,-0.165624 -109513,1114:228:3,148,12.5,0,0,-0.166859 -109514,1114:228:4,148.5,12.5,0,0,-0.168336 -109515,1114:229:3,149,12.5,0,0,-0.169383 -109516,1114:229:4,149.5,12.5,0,0,-0.169523 -109517,1115:120:3,150,12.5,0,0,-0.168081 -109518,1115:120:4,150.5,12.5,0,0,-0.16624 -109519,1115:121:3,151,12.5,0,0,-0.166515 -109520,1115:121:4,151.5,12.5,0,0,-0.167457 -109521,1115:122:3,152,12.5,0,0,-0.167595 -109522,1115:122:4,152.5,12.5,0,0,-0.166126 -109523,1115:123:3,153,12.5,0,0,-0.165989 -109524,1115:123:4,153.5,12.5,0,0,-0.167135 -109525,1115:124:3,154,12.5,0,0,-0.168637 -109526,1115:124:4,154.5,12.5,0,0,-0.169266 -109527,1115:225:3,155,12.5,0,0,-0.168591 -109528,1115:225:4,155.5,12.5,0,0,-0.167942 -109529,1115:226:3,156,12.5,0,0,-0.168266 -109530,1115:226:4,156.5,12.5,0,0,-0.168498 -109531,1115:227:3,157,12.5,0,0,-0.168382 -109532,1115:227:4,157.5,12.5,0,0,-0.167965 -109533,1115:228:3,158,12.5,0,0,-0.167411 -109534,1115:228:4,158.5,12.5,0,0,-0.16702 -109535,1115:229:3,159,12.5,0,0,-0.166217 -109536,1115:229:4,159.5,12.5,0,0,-0.16592 -109537,1116:120:3,160,12.5,0,0,-0.16624 -109538,1116:120:4,160.5,12.5,0,0,-0.165647 -109539,1116:121:3,161,12.5,0,0,-0.164423 -109540,1116:121:4,161.5,12.5,0,0,-0.163702 -109541,1116:122:3,162,12.5,0,0,-0.163658 -109542,1116:122:4,162.5,12.5,0,0,-0.16341 -109543,1116:123:3,163,12.5,0,0,-0.162539 -109544,1116:123:4,163.5,12.5,0,0,-0.161828 -109545,1116:124:3,164,12.5,0,0,-0.162561 -109546,1116:124:4,164.5,12.5,0,0,-0.161032 -109547,1116:225:3,165,12.5,0,0,-0.159148 -109548,1116:225:4,165.5,12.5,0,0,-0.159803 -109549,1116:226:3,166,12.5,0,0,-0.160087 -109550,1116:226:4,166.5,12.5,0,0,-0.159453 -109551,1116:227:3,167,12.5,0,0,-0.158562 -109552,1116:227:4,167.5,12.5,0,0,-0.157569 -109553,1116:228:3,168,12.5,0,0,-0.155987 -109554,1116:228:4,168.5,12.5,0,0,-0.154696 -109555,1116:229:3,169,12.5,0,0,-0.155583 -109556,1116:229:4,169.5,12.5,0,0,-0.15744 -109557,1117:120:3,170,12.5,0,0,-0.155139 -109558,1117:120:4,170.5,12.5,0,0,-0.150732 -109559,1117:121:3,171,12.5,0,0,-0.148944 -109560,1117:121:4,171.5,12.5,0,0,-0.148299 -109561,1117:122:3,172,12.5,0,0,-0.149916 -109562,1117:122:4,172.5,12.5,0,0,-0.151285 -109563,1117:123:3,173,12.5,0,0,-0.151285 -109564,1117:123:4,173.5,12.5,0,0,-0.150058 -109565,1117:124:3,174,12.5,0,0,-0.146862 -109566,1117:124:4,174.5,12.5,0,0,-0.145341 -109567,1117:225:3,175,12.5,0,0,-0.147659 -109568,1117:225:4,175.5,12.5,0,0,-0.149652 -109569,1117:226:3,176,12.5,0,0,-0.149308 -109570,1117:226:4,176.5,12.5,0,0,-0.14832 -109571,1117:227:3,177,12.5,0,0,-0.145774 -109572,1117:227:4,177.5,12.5,0,0,-0.141894 -109573,1117:228:3,178,12.5,0,0,-0.14028 -109574,1117:228:4,178.5,12.5,0,0,-0.139491 -109575,1117:229:3,179,12.5,0,0,-0.138682 -109576,1117:229:4,179.5,12.5,0,0,-0.137705 -109577,1118:120:3,180,12.5,0,0,-0.136654 -109578,7118:130:1,-180,13,0,0,-0.13722 -109579,7117:239:2,-179.5,13,0,0,-0.136129 -109580,7117:239:1,-179,13,0,0,-0.13605 -109581,7117:238:2,-178.5,13,0,0,-0.13605 -109582,7117:238:1,-178,13,0,0,-0.13605 -109583,7117:237:2,-177.5,13,0,0,-0.13605 -109584,7117:237:1,-177,13,0,0,-0.13605 -109585,7117:236:2,-176.5,13,0,0,-0.13605 -109586,7117:236:1,-176,13,0,0,-0.13605 -109587,7117:235:2,-175.5,13,0,0,-0.13605 -109588,7117:235:1,-175,13,0,0,-0.13605 -109589,7117:134:2,-174.5,13,0,0,-0.13605 -109590,7117:134:1,-174,13,0,0,-0.13605 -109591,7117:133:2,-173.5,13,0,0,-0.13605 -109592,7117:133:1,-173,13,0,0,-0.13605 -109593,7117:132:2,-172.5,13,0,0,-0.13605 -109594,7117:132:1,-172,13,0,0,-0.13605 -109595,7117:131:2,-171.5,13,0,0,-0.13605 -109596,7117:131:1,-171,13,0,0,-0.13605 -109597,7117:130:2,-170.5,13,0,0,-0.13605 -109598,7117:130:1,-170,13,0,0,-0.13605 -109599,7116:239:2,-169.5,13,0,0,-0.13605 -109600,7116:239:1,-169,13,0,0,-0.13605 -109601,7116:238:2,-168.5,13,0,0,-0.13605 -109602,7116:238:1,-168,13,0,0,-0.13605 -109603,7116:237:2,-167.5,13,0,0,-0.13605 -109604,7116:237:1,-167,13,0,0,-0.13605 -109605,7116:236:2,-166.5,13,0,0,-0.13605 -109606,7116:236:1,-166,13,0,0,-0.13605 -109607,7116:235:2,-165.5,13,0,0,-0.13605 -109608,7116:235:1,-165,13,0,0,-0.13605 -109609,7116:134:2,-164.5,13,0,0,-0.13605 -109610,7116:134:1,-164,13,0,0,-0.13605 -109611,7116:133:2,-163.5,13,0,0,-0.13605 -109612,7116:133:1,-163,13,0,0,-0.13605 -109613,7116:132:2,-162.5,13,0,0,-0.13605 -109614,7116:132:1,-162,13,0,0,-0.13605 -109615,7116:131:2,-161.5,13,0,0,-0.13605 -109616,7116:131:1,-161,13,0,0,-0.13605 -109617,7116:130:2,-160.5,13,0,0,-0.13605 -109618,7116:130:1,-160,13,0,0,-0.13605 -109619,7115:239:2,-159.5,13,0,0,-0.13605 -109620,7115:239:1,-159,13,0,0,-0.13605 -109621,7115:238:2,-158.5,13,0,0,-0.13605 -109622,7115:238:1,-158,13,0,0,-0.13605 -109623,7115:237:2,-157.5,13,0,0,-0.13605 -109624,7115:237:1,-157,13,0,0,-0.13605 -109625,7115:236:2,-156.5,13,0,0,-0.13605 -109626,7115:236:1,-156,13,0,0,-0.13605 -109627,7115:235:2,-155.5,13,0,0,-0.13605 -109628,7115:235:1,-155,13,0,0,-0.13605 -109629,7115:134:2,-154.5,13,0,0,-0.13605 -109630,7115:134:1,-154,13,0,0,-0.13605 -109631,7115:133:2,-153.5,13,0,0,-0.13605 -109632,7115:133:1,-153,13,0,0,-0.13605 -109633,7115:132:2,-152.5,13,0,0,-0.13605 -109634,7115:132:1,-152,13,0,0,-0.13605 -109635,7115:131:2,-151.5,13,0,0,-0.13605 -109636,7115:131:1,-151,13,0,0,-0.13605 -109637,7115:130:2,-150.5,13,0,0,-0.13605 -109638,7115:130:1,-150,13,0,0,-0.13605 -109639,7114:239:2,-149.5,13,0,0,-0.13605 -109640,7114:239:1,-149,13,0,0,-0.13605 -109641,7114:238:2,-148.5,13,0,0,-0.13605 -109642,7114:238:1,-148,13,0,0,-0.13605 -109643,7114:237:2,-147.5,13,0,0,-0.13605 -109644,7114:237:1,-147,13,0,0,-0.13605 -109645,7114:236:2,-146.5,13,0,0,-0.13605 -109646,7114:236:1,-146,13,0,0,-0.13605 -109647,7114:235:2,-145.5,13,0,0,-0.13605 -109648,7114:235:1,-145,13,0,0,-0.13605 -109649,7114:134:2,-144.5,13,0,0,-0.13605 -109650,7114:134:1,-144,13,0,0,-0.13605 -109651,7114:133:2,-143.5,13,0,0,-0.13605 -109652,7114:133:1,-143,13,0,0,-0.13605 -109653,7114:132:2,-142.5,13,0,0,-0.13605 -109654,7114:132:1,-142,13,0,0,-0.13605 -109655,7114:131:2,-141.5,13,0,0,-0.13605 -109656,7114:131:1,-141,13,0,0,-0.13605 -109657,7114:130:2,-140.5,13,0,0,-0.13605 -109658,7114:130:1,-140,13,0,0,-0.13605 -109659,7113:239:2,-139.5,13,0,0,-0.13605 -109660,7113:239:1,-139,13,0,0,-0.13605 -109661,7113:238:2,-138.5,13,0,0,-0.13605 -109662,7113:238:1,-138,13,0,0,-0.13605 -109663,7113:237:2,-137.5,13,0,0,-0.13605 -109664,7113:237:1,-137,13,0,0,-0.13605 -109665,7113:236:2,-136.5,13,0,0,-0.13605 -109666,7113:236:1,-136,13,0,0,-0.13605 -109667,7113:235:2,-135.5,13,0,0,-0.13605 -109668,7113:235:1,-135,13,0,0,-0.13605 -109669,7113:134:2,-134.5,13,0,0,-0.13605 -109670,7113:134:1,-134,13,0,0,-0.13605 -109671,7113:133:2,-133.5,13,0,0,-0.13605 -109672,7113:133:1,-133,13,0,0,-0.13605 -109673,7113:132:2,-132.5,13,0,0,-0.13605 -109674,7113:132:1,-132,13,0,0,-0.13605 -109675,7113:131:2,-131.5,13,0,0,-0.13605 -109676,7113:131:1,-131,13,0,0,-0.13605 -109677,7113:130:2,-130.5,13,0,0,-0.13605 -109678,7113:130:1,-130,13,0,0,-0.13605 -109679,7112:239:2,-129.5,13,0,0,-0.13605 -109680,7112:239:1,-129,13,0,0,-0.13605 -109681,7112:238:2,-128.5,13,0,0,-0.13605 -109682,7112:238:1,-128,13,0,0,-0.13605 -109683,7112:237:2,-127.5,13,0,0,-0.13605 -109684,7112:237:1,-127,13,0,0,-0.13605 -109685,7112:236:2,-126.5,13,0,0,-0.13605 -109686,7112:236:1,-126,13,0,0,-0.13605 -109687,7112:235:2,-125.5,13,0,0,-0.13605 -109688,7112:235:1,-125,13,0,0,-0.13605 -109689,7112:134:2,-124.5,13,0,0,-0.13605 -109690,7112:134:1,-124,13,0,0,-0.13605 -109691,7112:133:2,-123.5,13,0,0,-0.13605 -109692,7112:133:1,-123,13,0,0,-0.13605 -109693,7112:132:2,-122.5,13,0,0,-0.13605 -109694,7112:132:1,-122,13,0,0,-0.13605 -109695,7112:131:2,-121.5,13,0,0,-0.13605 -109696,7112:131:1,-121,13,0,0,-0.13605 -109697,7112:130:2,-120.5,13,0,0,-0.13605 -109698,7112:130:1,-120,13,0,0,-0.13605 -109699,7111:239:2,-119.5,13,0,0,-0.13605 -109700,7111:239:1,-119,13,0,0,-0.13605 -109701,7111:238:2,-118.5,13,0,0,-0.13605 -109702,7111:238:1,-118,13,0,0,-0.13605 -109703,7111:237:2,-117.5,13,0,0,-0.13605 -109704,7111:237:1,-117,13,0,0,-0.13605 -109705,7111:236:2,-116.5,13,0,0,-0.13605 -109706,7111:236:1,-116,13,0,0,-0.13605 -109707,7111:235:2,-115.5,13,0,0,-0.13605 -109708,7111:235:1,-115,13,0,0,-0.13605 -109709,7111:134:2,-114.5,13,0,0,-0.13605 -109710,7111:134:1,-114,13,0,0,-0.13605 -109711,7111:133:2,-113.5,13,0,0,-0.13605 -109712,7111:133:1,-113,13,0,0,-0.13605 -109713,7111:132:2,-112.5,13,0,0,-0.13605 -109714,7111:132:1,-112,13,0,0,-0.13605 -109715,7111:131:2,-111.5,13,0,0,-0.13605 -109716,7111:131:1,-111,13,0,0,-0.13605 -109717,7111:130:2,-110.5,13,0,0,-0.13605 -109718,7111:130:1,-110,13,0,0,-0.13605 -109719,7110:239:2,-109.5,13,0,0,-0.13605 -109720,7110:239:1,-109,13,0,0,-0.13605 -109721,7110:238:2,-108.5,13,0,0,-0.136099 -109722,7110:238:1,-108,13,0,0,-0.140602 -109723,7110:237:2,-107.5,13,0,0,-0.14714 -109724,7110:237:1,-107,13,0,0,-0.149733 -109725,7110:236:2,-106.5,13,0,0,-0.148581 -109726,7109:237:2,-97.5,13,0,0,-0.13605 -109727,7109:237:1,-97,13,0,0,-0.13605 -109728,7109:236:2,-96.5,13,0,0,-0.136291 -109729,7109:236:1,-96,13,0,0,-0.136116 -109730,7109:235:2,-95.5,13,0,0,-0.13605 -109731,7109:235:1,-95,13,0,0,-0.137087 -109732,7109:134:2,-94.5,13,0,0,-0.138918 -109733,7109:134:1,-94,13,0,0,-0.139979 -109734,7109:133:2,-93.5,13,0,0,-0.140545 -109735,7109:133:1,-93,13,0,0,-0.14045 -109736,7109:132:2,-92.5,13,0,0,-0.140186 -109737,7109:132:1,-92,13,0,0,-0.140111 -109738,7109:131:2,-91.5,13,0,0,-0.140073 -109739,7109:131:1,-91,13,0,0,-0.139343 -109740,7109:130:2,-90.5,13,0,0,-0.138648 -109741,7109:130:1,-90,13,0,0,-0.138563 -109742,7108:239:2,-89.5,13,0,0,-0.139037 -109743,7108:239:1,-89,13,0,0,-0.141056 -109744,7108:238:2,-88.5,13,0,0,-0.143955 -109745,7108:238:1,-88,13,0,0,-0.150282 -109746,7108:237:2,-87.5,13,0,0,-0.162673 -109747,7108:237:1,-87,13,0,0,-0.177271 -109748,7108:236:2,-86.5,13,0,0,-0.184473 -109749,7108:236:1,-86,13,0,0,-0.169406 -109750,7108:235:2,-85.5,13,0,0,-0.164355 -109751,7108:235:1,-85,13,0,0,-0.162695 -109752,7108:134:2,-84.5,13,0,0,-0.162495 -109753,7108:134:1,-84,13,0,0,-0.162249 -109754,7107:239:2,-79.5,13,0,0,-0.158844 -109755,7107:239:1,-79,13,0,0,-0.157892 -109756,7107:238:2,-78.5,13,0,0,-0.157354 -109757,7107:238:1,-78,13,0,0,-0.13605 -109758,7107:237:2,-77.5,13,0,0,-0.13605 -109759,7107:237:1,-77,13,0,0,-0.13605 -109760,7107:236:2,-76.5,13,0,0,-0.136131 -109761,7107:236:1,-76,13,0,0,-0.144285 -109762,7107:235:2,-75.5,13,0,0,-0.154191 -109763,7107:235:1,-75,13,0,0,-0.153063 -109764,7107:134:2,-74.5,13,0,0,-0.154065 -109765,7107:134:1,-74,13,0,0,-0.152151 -109766,7107:133:2,-73.5,13,0,0,-0.15147 -109767,7107:133:1,-73,13,0,0,-0.154401 -109768,7107:132:2,-72.5,13,0,0,-0.153438 -109769,7107:132:1,-72,13,0,0,-0.156434 -109770,7107:131:2,-71.5,13,0,0,-0.15684 -109771,7107:131:1,-71,13,0,0,-0.158628 -109772,7107:130:2,-70.5,13,0,0,-0.160899 -109773,7107:130:1,-70,13,0,0,-0.161208 -109774,7106:239:2,-69.5,13,0,0,-0.160745 -109775,7106:239:1,-69,13,0,0,-0.159715 -109776,7106:238:2,-68.5,13,0,0,-0.157548 -109777,7106:238:1,-68,13,0,0,-0.156285 -109778,7106:237:2,-67.5,13,0,0,-0.157226 -109779,7106:237:1,-67,13,0,0,-0.157354 -109780,7106:236:2,-66.5,13,0,0,-0.157183 -109781,7106:236:1,-66,13,0,0,-0.157312 -109782,7106:235:2,-65.5,13,0,0,-0.156883 -109783,7106:235:1,-65,13,0,0,-0.155965 -109784,7106:134:2,-64.5,13,0,0,-0.15603 -109785,7106:134:1,-64,13,0,0,-0.15684 -109786,7106:133:2,-63.5,13,0,0,-0.157376 -109787,7106:133:1,-63,13,0,0,-0.157526 -109788,7106:132:2,-62.5,13,0,0,-0.158433 -109789,7106:132:1,-62,13,0,0,-0.160438 -109790,7106:131:2,-61.5,13,0,0,-0.161872 -109791,7106:131:1,-61,13,0,0,-0.161562 -109792,7106:130:2,-60.5,13,0,0,-0.160109 -109793,7106:130:1,-60,13,0,0,-0.158822 -109794,7105:239:2,-59.5,13,0,0,-0.157634 -109795,7105:239:1,-59,13,0,0,-0.156413 -109796,7105:238:2,-58.5,13,0,0,-0.156797 -109797,7105:238:1,-58,13,0,0,-0.158692 -109798,7105:237:2,-57.5,13,0,0,-0.16024 -109799,7105:237:1,-57,13,0,0,-0.160284 -109800,7105:236:2,-56.5,13,0,0,-0.159584 -109801,7105:236:1,-56,13,0,0,-0.158433 -109802,7105:235:2,-55.5,13,0,0,-0.1562 -109803,7105:235:1,-55,13,0,0,-0.154275 -109804,7105:134:2,-54.5,13,0,0,-0.154654 -109805,7105:134:1,-54,13,0,0,-0.154928 -109806,7105:133:2,-53.5,13,0,0,-0.153856 -109807,7105:133:1,-53,13,0,0,-0.151882 -109808,7105:132:2,-52.5,13,0,0,-0.14953 -109809,7105:132:1,-52,13,0,0,-0.148742 -109810,7105:131:2,-51.5,13,0,0,-0.148903 -109811,7105:131:1,-51,13,0,0,-0.147878 -109812,7105:130:2,-50.5,13,0,0,-0.145912 -109813,7105:130:1,-50,13,0,0,-0.142968 -109814,7104:239:2,-49.5,13,0,0,-0.141513 -109815,7104:239:1,-49,13,0,0,-0.141589 -109816,7104:238:2,-48.5,13,0,0,-0.141398 -109817,7104:238:1,-48,13,0,0,-0.140526 -109818,7104:237:2,-47.5,13,0,0,-0.139397 -109819,7104:237:1,-47,13,0,0,-0.137739 -109820,7104:236:2,-46.5,13,0,0,-0.13702 -109821,7104:236:1,-46,13,0,0,-0.136641 -109822,7104:235:2,-45.5,13,0,0,-0.136266 -109823,7104:235:1,-45,13,0,0,-0.136101 -109824,7104:134:2,-44.5,13,0,0,-0.13605 -109825,7104:134:1,-44,13,0,0,-0.13605 -109826,7104:133:2,-43.5,13,0,0,-0.13605 -109827,7104:133:1,-43,13,0,0,-0.13605 -109828,7104:132:2,-42.5,13,0,0,-0.13605 -109829,7104:132:1,-42,13,0,0,-0.13605 -109830,7104:131:2,-41.5,13,0,0,-0.13605 -109831,7104:131:1,-41,13,0,0,-0.13605 -109832,7104:130:2,-40.5,13,0,0,-0.13605 -109833,7104:130:1,-40,13,0,0,-0.13605 -109834,7103:239:2,-39.5,13,0,0,-0.13605 -109835,7103:239:1,-39,13,0,0,-0.13605 -109836,7103:238:2,-38.5,13,0,0,-0.13605 -109837,7103:238:1,-38,13,0,0,-0.13605 -109838,7103:237:2,-37.5,13,0,0,-0.13605 -109839,7103:237:1,-37,13,0,0,-0.13605 -109840,7103:236:2,-36.5,13,0,0,-0.13605 -109841,7103:236:1,-36,13,0,0,-0.13605 -109842,7103:235:2,-35.5,13,0,0,-0.13605 -109843,7103:235:1,-35,13,0,0,-0.13605 -109844,7103:134:2,-34.5,13,0,0,-0.13605 -109845,7103:134:1,-34,13,0,0,-0.13605 -109846,7103:133:2,-33.5,13,0,0,-0.13605 -109847,7103:133:1,-33,13,0,0,-0.13605 -109848,7103:132:2,-32.5,13,0,0,-0.13605 -109849,7103:132:1,-32,13,0,0,-0.13605 -109850,7103:131:2,-31.5,13,0,0,-0.13605 -109851,7103:131:1,-31,13,0,0,-0.13605 -109852,7103:130:2,-30.5,13,0,0,-0.13605 -109853,7103:130:1,-30,13,0,0,-0.13605 -109854,7102:239:2,-29.5,13,0,0,-0.13605 -109855,7102:239:1,-29,13,0,0,-0.13605 -109856,7102:238:2,-28.5,13,0,0,-0.13605 -109857,7102:238:1,-28,13,0,0,-0.13605 -109858,7102:237:2,-27.5,13,0,0,-0.13605 -109859,7102:237:1,-27,13,0,0,-0.13605 -109860,7102:236:2,-26.5,13,0,0,-0.13605 -109861,7102:236:1,-26,13,0,0,-0.13605 -109862,7102:235:2,-25.5,13,0,0,-0.13605 -109863,7102:235:1,-25,13,0,0,-0.13605 -109864,7102:134:2,-24.5,13,0,0,-0.13605 -109865,7102:134:1,-24,13,0,0,-0.13605 -109866,7102:133:2,-23.5,13,0,0,-0.13605 -109867,7102:133:1,-23,13,0,0,-0.13605 -109868,7102:132:2,-22.5,13,0,0,-0.13605 -109869,7102:132:1,-22,13,0,0,-0.13605 -109870,7102:131:2,-21.5,13,0,0,-0.13605 -109871,7102:131:1,-21,13,0,0,-0.13605 -109872,7102:130:2,-20.5,13,0,0,-0.13605 -109873,7102:130:1,-20,13,0,0,-0.13605 -109874,7101:239:2,-19.5,13,0,0,-0.13605 -109875,7101:239:1,-19,13,0,0,-0.13605 -109876,7101:238:2,-18.5,13,0,0,-0.13605 -109877,7101:238:1,-18,13,0,0,-0.13605 -109878,7101:237:2,-17.5,13,0,0,-0.13605 -109879,7101:237:1,-17,13,0,0,-0.13605 -109880,1103:236:1,36,13,0,0,-0.146089 -109881,1103:236:2,36.5,13,0,0,-0.155266 -109882,1103:237:1,37,13,0,0,-0.176559 -109883,1103:237:2,37.5,13,0,0,-0.182578 -109884,1103:238:1,38,13,0,0,-0.183779 -109885,1103:238:2,38.5,13,0,0,-0.197203 -109886,1105:239:2,59.5,13,0,0,-0.13605 -109887,1106:130:1,60,13,0,0,-0.13605 -109888,1106:130:2,60.5,13,0,0,-0.14098 -109889,1106:131:1,61,13,0,0,-0.139416 -109890,1106:131:2,61.5,13,0,0,-0.138193 -109891,1106:132:1,62,13,0,0,-0.13702 -109892,1106:132:2,62.5,13,0,0,-0.136382 -109893,1106:133:1,63,13,0,0,-0.136576 -109894,1106:133:2,63.5,13,0,0,-0.136149 -109895,1106:134:1,64,13,0,0,-0.137237 -109896,1106:134:2,64.5,13,0,0,-0.137722 -109897,1106:235:1,65,13,0,0,-0.13902 -109898,1106:235:2,65.5,13,0,0,-0.142564 -109899,1106:236:1,66,13,0,0,-0.147839 -109900,1106:236:2,66.5,13,0,0,-0.152171 -109901,1106:237:1,67,13,0,0,-0.152772 -109902,1106:237:2,67.5,13,0,0,-0.145892 -109903,1106:238:1,68,13,0,0,-0.140904 -109904,1106:238:2,68.5,13,0,0,-0.13605 -109905,1111:236:2,116.5,13,0,0,-0.13605 -109906,1111:237:1,117,13,0,0,-0.13605 -109907,1111:237:2,117.5,13,0,0,-0.13605 -109908,1111:238:1,118,13,0,0,-0.13605 -109909,1111:238:2,118.5,13,0,0,-0.13605 -109910,1111:239:1,119,13,0,0,-0.13605 -109911,1111:239:2,119.5,13,0,0,-0.13605 -109912,1112:130:1,120,13,0,0,-0.13605 -109913,1112:131:2,121.5,13,0,0,-0.13605 -109914,1112:132:1,122,13,0,0,-0.13605 -109915,1112:132:2,122.5,13,0,0,-0.13605 -109916,1112:133:1,123,13,0,0,-0.13605 -109917,1112:133:2,123.5,13,0,0,-0.13605 -109918,1112:134:1,124,13,0,0,-0.13605 -109919,1112:134:2,124.5,13,0,0,-0.13605 -109920,1112:235:1,125,13,0,0,-0.13605 -109921,1112:235:2,125.5,13,0,0,-0.13605 -109922,1112:236:1,126,13,0,0,-0.13605 -109923,1112:236:2,126.5,13,0,0,-0.13605 -109924,1112:237:1,127,13,0,0,-0.13605 -109925,1112:237:2,127.5,13,0,0,-0.13605 -109926,1112:238:1,128,13,0,0,-0.13605 -109927,1112:238:2,128.5,13,0,0,-0.13605 -109928,1112:239:1,129,13,0,0,-0.13605 -109929,1112:239:2,129.5,13,0,0,-0.13605 -109930,1113:130:1,130,13,0,0,-0.13605 -109931,1113:130:2,130.5,13,0,0,-0.13605 -109932,1113:131:1,131,13,0,0,-0.13605 -109933,1113:131:2,131.5,13,0,0,-0.13605 -109934,1113:132:1,132,13,0,0,-0.13605 -109935,1113:132:2,132.5,13,0,0,-0.136291 -109936,1113:133:1,133,13,0,0,-0.139003 -109937,1113:133:2,133.5,13,0,0,-0.137438 -109938,1113:134:1,134,13,0,0,-0.13605 -109939,1113:134:2,134.5,13,0,0,-0.13605 -109940,1113:235:1,135,13,0,0,-0.13605 -109941,1113:235:2,135.5,13,0,0,-0.137571 -109942,1113:236:1,136,13,0,0,-0.142488 -109943,1113:236:2,136.5,13,0,0,-0.146842 -109944,1113:237:1,137,13,0,0,-0.149449 -109945,1113:237:2,137.5,13,0,0,-0.1484 -109946,1113:238:1,138,13,0,0,-0.146703 -109947,1113:238:2,138.5,13,0,0,-0.148159 -109948,1113:239:1,139,13,0,0,-0.151203 -109949,1113:239:2,139.5,13,0,0,-0.153647 -109950,1114:130:1,140,13,0,0,-0.15325 -109951,1114:130:2,140.5,13,0,0,-0.154128 -109952,1114:131:1,141,13,0,0,-0.15699 -109953,1114:131:2,141.5,13,0,0,-0.159432 -109954,1114:132:1,142,13,0,0,-0.158931 -109955,1114:132:2,142.5,13,0,0,-0.157914 -109956,1114:133:1,143,13,0,0,-0.158866 -109957,1114:133:2,143.5,13,0,0,-0.160284 -109958,1114:134:1,144,13,0,0,-0.160284 -109959,1114:134:2,144.5,13,0,0,-0.159148 -109960,1114:235:1,145,13,0,0,-0.157871 -109961,1114:235:2,145.5,13,0,0,-0.158173 -109962,1114:236:1,146,13,0,0,-0.159301 -109963,1114:236:2,146.5,13,0,0,-0.159388 -109964,1114:237:1,147,13,0,0,-0.159497 -109965,1114:237:2,147.5,13,0,0,-0.160635 -109966,1114:238:1,148,13,0,0,-0.162227 -109967,1114:238:2,148.5,13,0,0,-0.16368 -109968,1114:239:1,149,13,0,0,-0.164197 -109969,1114:239:2,149.5,13,0,0,-0.163994 -109970,1115:130:1,150,13,0,0,-0.163792 -109971,1115:130:2,150.5,13,0,0,-0.163658 -109972,1115:131:1,151,13,0,0,-0.162874 -109973,1115:131:2,151.5,13,0,0,-0.16101 -109974,1115:132:1,152,13,0,0,-0.15891 -109975,1115:132:2,152.5,13,0,0,-0.157462 -109976,1115:133:1,153,13,0,0,-0.157354 -109977,1115:133:2,153.5,13,0,0,-0.157914 -109978,1115:134:1,154,13,0,0,-0.158346 -109979,1115:134:2,154.5,13,0,0,-0.158173 -109980,1115:235:1,155,13,0,0,-0.158216 -109981,1115:235:2,155.5,13,0,0,-0.159083 -109982,1115:236:1,156,13,0,0,-0.160372 -109983,1115:236:2,156.5,13,0,0,-0.161584 -109984,1115:237:1,157,13,0,0,-0.162183 -109985,1115:237:2,157.5,13,0,0,-0.163231 -109986,1115:238:1,158,13,0,0,-0.164265 -109987,1115:238:2,158.5,13,0,0,-0.162695 -109988,1115:239:1,159,13,0,0,-0.161452 -109989,1115:239:2,159.5,13,0,0,-0.162516 -109990,1116:130:1,160,13,0,0,-0.162561 -109991,1116:130:2,160.5,13,0,0,-0.161186 -109992,1116:131:1,161,13,0,0,-0.16035 -109993,1116:131:2,161.5,13,0,0,-0.160944 -109994,1116:132:1,162,13,0,0,-0.16154 -109995,1116:132:2,162.5,13,0,0,-0.16154 -109996,1116:133:1,163,13,0,0,-0.160525 -109997,1116:133:2,163.5,13,0,0,-0.159715 -109998,1116:134:1,164,13,0,0,-0.159803 -109999,1116:134:2,164.5,13,0,0,-0.159127 -110000,1116:235:1,165,13,0,0,-0.157119 -110001,1116:235:2,165.5,13,0,0,-0.156477 -110002,1116:236:1,166,13,0,0,-0.156862 -110003,1116:236:2,166.5,13,0,0,-0.155774 -110004,1116:237:1,167,13,0,0,-0.154317 -110005,1116:237:2,167.5,13,0,0,-0.154907 -110006,1116:238:1,168,13,0,0,-0.152979 -110007,1116:238:2,168.5,13,0,0,-0.150241 -110008,1116:239:1,169,13,0,0,-0.150772 -110009,1116:239:2,169.5,13,0,0,-0.153521 -110010,1117:130:1,170,13,0,0,-0.152295 -110011,1117:130:2,170.5,13,0,0,-0.147041 -110012,1117:131:1,171,13,0,0,-0.144988 -110013,1117:131:2,171.5,13,0,0,-0.146188 -110014,1117:132:1,172,13,0,0,-0.14603 -110015,1117:132:2,172.5,13,0,0,-0.146307 -110016,1117:133:1,173,13,0,0,-0.146089 -110017,1117:133:2,173.5,13,0,0,-0.142795 -110018,1117:134:1,174,13,0,0,-0.139054 -110019,1117:134:2,174.5,13,0,0,-0.139207 -110020,1117:235:1,175,13,0,0,-0.140545 -110021,1117:235:2,175.5,13,0,0,-0.141741 -110022,1117:236:1,176,13,0,0,-0.14197 -110023,1117:236:2,176.5,13,0,0,-0.142545 -110024,1117:237:1,177,13,0,0,-0.1445 -110025,1117:237:2,177.5,13,0,0,-0.144285 -110026,1117:238:1,178,13,0,0,-0.142334 -110027,1117:238:2,178.5,13,0,0,-0.140962 -110028,1117:239:1,179,13,0,0,-0.139866 -110029,1117:239:2,179.5,13,0,0,-0.138699 -110030,1118:130:1,180,13,0,0,-0.13722 -110031,7118:130:3,-180,13.5,0,0,-0.136111 -110032,7117:239:4,-179.5,13.5,0,0,-0.13605 -110033,7117:239:3,-179,13.5,0,0,-0.13605 -110034,7117:238:4,-178.5,13.5,0,0,-0.13605 -110035,7117:238:3,-178,13.5,0,0,-0.13605 -110036,7117:237:4,-177.5,13.5,0,0,-0.13605 -110037,7117:237:3,-177,13.5,0,0,-0.13605 -110038,7117:236:4,-176.5,13.5,0,0,-0.13605 -110039,7117:236:3,-176,13.5,0,0,-0.13605 -110040,7117:235:4,-175.5,13.5,0,0,-0.13605 -110041,7117:235:3,-175,13.5,0,0,-0.13605 -110042,7117:134:4,-174.5,13.5,0,0,-0.13605 -110043,7117:134:3,-174,13.5,0,0,-0.13605 -110044,7117:133:4,-173.5,13.5,0,0,-0.13605 -110045,7117:133:3,-173,13.5,0,0,-0.13605 -110046,7117:132:4,-172.5,13.5,0,0,-0.13605 -110047,7117:132:3,-172,13.5,0,0,-0.13605 -110048,7117:131:4,-171.5,13.5,0,0,-0.13605 -110049,7117:131:3,-171,13.5,0,0,-0.13605 -110050,7117:130:4,-170.5,13.5,0,0,-0.13605 -110051,7117:130:3,-170,13.5,0,0,-0.13605 -110052,7116:239:4,-169.5,13.5,0,0,-0.13605 -110053,7116:239:3,-169,13.5,0,0,-0.13605 -110054,7116:238:4,-168.5,13.5,0,0,-0.13605 -110055,7116:238:3,-168,13.5,0,0,-0.13605 -110056,7116:237:4,-167.5,13.5,0,0,-0.13605 -110057,7116:237:3,-167,13.5,0,0,-0.13605 -110058,7116:236:4,-166.5,13.5,0,0,-0.13605 -110059,7116:236:3,-166,13.5,0,0,-0.13605 -110060,7116:235:4,-165.5,13.5,0,0,-0.13605 -110061,7116:235:3,-165,13.5,0,0,-0.13605 -110062,7116:134:4,-164.5,13.5,0,0,-0.13605 -110063,7116:134:3,-164,13.5,0,0,-0.13605 -110064,7116:133:4,-163.5,13.5,0,0,-0.13605 -110065,7116:133:3,-163,13.5,0,0,-0.13605 -110066,7116:132:4,-162.5,13.5,0,0,-0.13605 -110067,7116:132:3,-162,13.5,0,0,-0.13605 -110068,7116:131:4,-161.5,13.5,0,0,-0.13605 -110069,7116:131:3,-161,13.5,0,0,-0.13605 -110070,7116:130:4,-160.5,13.5,0,0,-0.13605 -110071,7116:130:3,-160,13.5,0,0,-0.13605 -110072,7115:239:4,-159.5,13.5,0,0,-0.13605 -110073,7115:239:3,-159,13.5,0,0,-0.13605 -110074,7115:238:4,-158.5,13.5,0,0,-0.13605 -110075,7115:238:3,-158,13.5,0,0,-0.13605 -110076,7115:237:4,-157.5,13.5,0,0,-0.13605 -110077,7115:237:3,-157,13.5,0,0,-0.13605 -110078,7115:236:4,-156.5,13.5,0,0,-0.13605 -110079,7115:236:3,-156,13.5,0,0,-0.13605 -110080,7115:235:4,-155.5,13.5,0,0,-0.13605 -110081,7115:235:3,-155,13.5,0,0,-0.13605 -110082,7115:134:4,-154.5,13.5,0,0,-0.13605 -110083,7115:134:3,-154,13.5,0,0,-0.13605 -110084,7115:133:4,-153.5,13.5,0,0,-0.13605 -110085,7115:133:3,-153,13.5,0,0,-0.13605 -110086,7115:132:4,-152.5,13.5,0,0,-0.13605 -110087,7115:132:3,-152,13.5,0,0,-0.13605 -110088,7115:131:4,-151.5,13.5,0,0,-0.13605 -110089,7115:131:3,-151,13.5,0,0,-0.13605 -110090,7115:130:4,-150.5,13.5,0,0,-0.13605 -110091,7115:130:3,-150,13.5,0,0,-0.13605 -110092,7114:239:4,-149.5,13.5,0,0,-0.13605 -110093,7114:239:3,-149,13.5,0,0,-0.13605 -110094,7114:238:4,-148.5,13.5,0,0,-0.13605 -110095,7114:238:3,-148,13.5,0,0,-0.13605 -110096,7114:237:4,-147.5,13.5,0,0,-0.13605 -110097,7114:237:3,-147,13.5,0,0,-0.13605 -110098,7114:236:4,-146.5,13.5,0,0,-0.13605 -110099,7114:236:3,-146,13.5,0,0,-0.13605 -110100,7114:235:4,-145.5,13.5,0,0,-0.13605 -110101,7114:235:3,-145,13.5,0,0,-0.13605 -110102,7114:134:4,-144.5,13.5,0,0,-0.13605 -110103,7114:134:3,-144,13.5,0,0,-0.13605 -110104,7114:133:4,-143.5,13.5,0,0,-0.13605 -110105,7114:133:3,-143,13.5,0,0,-0.13605 -110106,7114:132:4,-142.5,13.5,0,0,-0.13605 -110107,7114:132:3,-142,13.5,0,0,-0.13605 -110108,7114:131:4,-141.5,13.5,0,0,-0.13605 -110109,7114:131:3,-141,13.5,0,0,-0.13605 -110110,7114:130:4,-140.5,13.5,0,0,-0.13605 -110111,7114:130:3,-140,13.5,0,0,-0.13605 -110112,7113:239:4,-139.5,13.5,0,0,-0.13605 -110113,7113:239:3,-139,13.5,0,0,-0.13605 -110114,7113:238:4,-138.5,13.5,0,0,-0.13605 -110115,7113:238:3,-138,13.5,0,0,-0.13605 -110116,7113:237:4,-137.5,13.5,0,0,-0.13605 -110117,7113:237:3,-137,13.5,0,0,-0.13605 -110118,7113:236:4,-136.5,13.5,0,0,-0.13605 -110119,7113:236:3,-136,13.5,0,0,-0.13605 -110120,7113:235:4,-135.5,13.5,0,0,-0.13605 -110121,7113:235:3,-135,13.5,0,0,-0.13605 -110122,7113:134:4,-134.5,13.5,0,0,-0.13605 -110123,7113:134:3,-134,13.5,0,0,-0.13605 -110124,7113:133:4,-133.5,13.5,0,0,-0.13605 -110125,7113:133:3,-133,13.5,0,0,-0.13605 -110126,7113:132:4,-132.5,13.5,0,0,-0.13605 -110127,7113:132:3,-132,13.5,0,0,-0.13605 -110128,7113:131:4,-131.5,13.5,0,0,-0.13605 -110129,7113:131:3,-131,13.5,0,0,-0.13605 -110130,7113:130:4,-130.5,13.5,0,0,-0.13605 -110131,7113:130:3,-130,13.5,0,0,-0.13605 -110132,7112:239:4,-129.5,13.5,0,0,-0.13605 -110133,7112:239:3,-129,13.5,0,0,-0.13605 -110134,7112:238:4,-128.5,13.5,0,0,-0.13605 -110135,7112:238:3,-128,13.5,0,0,-0.13605 -110136,7112:237:4,-127.5,13.5,0,0,-0.13605 -110137,7112:237:3,-127,13.5,0,0,-0.13605 -110138,7112:236:4,-126.5,13.5,0,0,-0.13605 -110139,7112:236:3,-126,13.5,0,0,-0.13605 -110140,7112:235:4,-125.5,13.5,0,0,-0.13605 -110141,7112:235:3,-125,13.5,0,0,-0.13605 -110142,7112:134:4,-124.5,13.5,0,0,-0.13605 -110143,7112:134:3,-124,13.5,0,0,-0.13605 -110144,7112:133:4,-123.5,13.5,0,0,-0.13605 -110145,7112:133:3,-123,13.5,0,0,-0.13605 -110146,7112:132:4,-122.5,13.5,0,0,-0.13605 -110147,7112:132:3,-122,13.5,0,0,-0.13605 -110148,7112:131:4,-121.5,13.5,0,0,-0.13605 -110149,7112:131:3,-121,13.5,0,0,-0.13605 -110150,7112:130:4,-120.5,13.5,0,0,-0.13605 -110151,7112:130:3,-120,13.5,0,0,-0.13605 -110152,7111:239:4,-119.5,13.5,0,0,-0.13605 -110153,7111:239:3,-119,13.5,0,0,-0.13605 -110154,7111:238:4,-118.5,13.5,0,0,-0.13605 -110155,7111:238:3,-118,13.5,0,0,-0.13605 -110156,7111:237:4,-117.5,13.5,0,0,-0.13605 -110157,7111:237:3,-117,13.5,0,0,-0.13605 -110158,7111:236:4,-116.5,13.5,0,0,-0.13605 -110159,7111:236:3,-116,13.5,0,0,-0.13605 -110160,7111:235:4,-115.5,13.5,0,0,-0.13605 -110161,7111:235:3,-115,13.5,0,0,-0.13605 -110162,7111:134:4,-114.5,13.5,0,0,-0.13605 -110163,7111:134:3,-114,13.5,0,0,-0.13605 -110164,7111:133:4,-113.5,13.5,0,0,-0.13605 -110165,7111:133:3,-113,13.5,0,0,-0.13605 -110166,7111:132:4,-112.5,13.5,0,0,-0.13605 -110167,7111:132:3,-112,13.5,0,0,-0.13605 -110168,7111:131:4,-111.5,13.5,0,0,-0.13605 -110169,7111:131:3,-111,13.5,0,0,-0.13605 -110170,7111:130:4,-110.5,13.5,0,0,-0.13605 -110171,7110:239:3,-109,13.5,0,0,-0.136061 -110172,7110:238:4,-108.5,13.5,0,0,-0.13605 -110173,7110:238:3,-108,13.5,0,0,-0.13605 -110174,7110:237:4,-107.5,13.5,0,0,-0.14064 -110175,7110:237:3,-107,13.5,0,0,-0.140149 -110176,7109:237:4,-97.5,13.5,0,0,-0.13605 -110177,7109:237:3,-97,13.5,0,0,-0.13605 -110178,7109:236:4,-96.5,13.5,0,0,-0.13605 -110179,7109:236:3,-96,13.5,0,0,-0.13605 -110180,7109:235:4,-95.5,13.5,0,0,-0.13605 -110181,7109:235:3,-95,13.5,0,0,-0.13605 -110182,7109:134:4,-94.5,13.5,0,0,-0.13605 -110183,7109:134:3,-94,13.5,0,0,-0.136356 -110184,7109:133:4,-93.5,13.5,0,0,-0.137756 -110185,7109:133:3,-93,13.5,0,0,-0.137404 -110186,7109:132:4,-92.5,13.5,0,0,-0.136654 -110187,7109:132:3,-92,13.5,0,0,-0.136459 -110188,7109:131:4,-91.5,13.5,0,0,-0.137488 -110189,7109:131:3,-91,13.5,0,0,-0.137722 -110190,7109:130:4,-90.5,13.5,0,0,-0.136937 -110191,7109:130:3,-90,13.5,0,0,-0.136304 -110192,7108:239:4,-89.5,13.5,0,0,-0.136576 -110193,7108:239:3,-89,13.5,0,0,-0.139258 -110194,7108:238:4,-88.5,13.5,0,0,-0.140602 -110195,7108:238:3,-88,13.5,0,0,-0.143916 -110196,7108:237:4,-87.5,13.5,0,0,-0.162963 -110197,7108:237:3,-87,13.5,0,0,-0.181058 -110198,7108:236:4,-86.5,13.5,0,0,-0.178333 -110199,7108:236:3,-86,13.5,0,0,-0.161983 -110200,7108:235:4,-85.5,13.5,0,0,-0.159671 -110201,7108:235:3,-85,13.5,0,0,-0.159825 -110202,7108:134:4,-84.5,13.5,0,0,-0.16245 -110203,7108:134:3,-84,13.5,0,0,-0.161961 -110204,7108:133:4,-83.5,13.5,0,0,-0.156669 -110205,7108:133:3,-83,13.5,0,0,-0.154696 -110206,7108:132:4,-82.5,13.5,0,0,-0.156477 -110207,7108:132:3,-82,13.5,0,0,-0.158411 -110208,7108:131:4,-81.5,13.5,0,0,-0.159541 -110209,7108:131:3,-81,13.5,0,0,-0.161032 -110210,7108:130:4,-80.5,13.5,0,0,-0.15917 -110211,7108:130:3,-80,13.5,0,0,-0.157398 -110212,7107:239:4,-79.5,13.5,0,0,-0.158628 -110213,7107:239:3,-79,13.5,0,0,-0.152151 -110214,7107:238:4,-78.5,13.5,0,0,-0.13605 -110215,7107:238:3,-78,13.5,0,0,-0.13605 -110216,7107:237:4,-77.5,13.5,0,0,-0.136706 -110217,7107:237:3,-77,13.5,0,0,-0.152151 -110218,7107:236:4,-76.5,13.5,0,0,-0.13605 -110219,7107:235:4,-75.5,13.5,0,0,-0.15067 -110220,7107:235:3,-75,13.5,0,0,-0.150752 -110221,7107:134:4,-74.5,13.5,0,0,-0.149024 -110222,7107:134:3,-74,13.5,0,0,-0.147618 -110223,7107:133:4,-73.5,13.5,0,0,-0.14834 -110224,7107:133:3,-73,13.5,0,0,-0.150282 -110225,7107:132:4,-72.5,13.5,0,0,-0.152336 -110226,7107:132:3,-72,13.5,0,0,-0.152709 -110227,7107:131:4,-71.5,13.5,0,0,-0.152606 -110228,7107:131:3,-71,13.5,0,0,-0.152751 -110229,7107:130:4,-70.5,13.5,0,0,-0.152316 -110230,7107:130:3,-70,13.5,0,0,-0.151779 -110231,7106:239:4,-69.5,13.5,0,0,-0.152088 -110232,7106:239:3,-69,13.5,0,0,-0.152399 -110233,7106:238:4,-68.5,13.5,0,0,-0.151717 -110234,7106:238:3,-68,13.5,0,0,-0.150527 -110235,7106:237:4,-67.5,13.5,0,0,-0.150201 -110236,7106:237:3,-67,13.5,0,0,-0.151449 -110237,7106:236:4,-66.5,13.5,0,0,-0.151573 -110238,7106:236:3,-66,13.5,0,0,-0.151429 -110239,7106:235:4,-65.5,13.5,0,0,-0.151326 -110240,7106:235:3,-65,13.5,0,0,-0.150957 -110241,7106:134:4,-64.5,13.5,0,0,-0.150364 -110242,7106:134:3,-64,13.5,0,0,-0.149754 -110243,7106:133:4,-63.5,13.5,0,0,-0.149308 -110244,7106:133:3,-63,13.5,0,0,-0.149287 -110245,7106:132:4,-62.5,13.5,0,0,-0.150343 -110246,7106:132:3,-62,13.5,0,0,-0.152585 -110247,7106:131:4,-61.5,13.5,0,0,-0.154149 -110248,7106:131:3,-61,13.5,0,0,-0.15394 -110249,7106:130:4,-60.5,13.5,0,0,-0.153 -110250,7106:130:3,-60,13.5,0,0,-0.153063 -110251,7105:239:4,-59.5,13.5,0,0,-0.154108 -110252,7105:239:3,-59,13.5,0,0,-0.153731 -110253,7105:238:4,-58.5,13.5,0,0,-0.152938 -110254,7105:238:3,-58,13.5,0,0,-0.154128 -110255,7105:237:4,-57.5,13.5,0,0,-0.156157 -110256,7105:237:3,-57,13.5,0,0,-0.156819 -110257,7105:236:4,-56.5,13.5,0,0,-0.15588 -110258,7105:236:3,-56,13.5,0,0,-0.153042 -110259,7105:235:4,-55.5,13.5,0,0,-0.150425 -110260,7105:235:3,-55,13.5,0,0,-0.150446 -110261,7105:134:4,-54.5,13.5,0,0,-0.151737 -110262,7105:134:3,-54,13.5,0,0,-0.151779 -110263,7105:133:4,-53.5,13.5,0,0,-0.150875 -110264,7105:133:3,-53,13.5,0,0,-0.148119 -110265,7105:132:4,-52.5,13.5,0,0,-0.146148 -110266,7105:132:3,-52,13.5,0,0,-0.146188 -110267,7105:131:4,-51.5,13.5,0,0,-0.144695 -110268,7105:131:3,-51,13.5,0,0,-0.143104 -110269,7105:130:4,-50.5,13.5,0,0,-0.141646 -110270,7105:130:3,-50,13.5,0,0,-0.140054 -110271,7104:239:4,-49.5,13.5,0,0,-0.139139 -110272,7104:239:3,-49,13.5,0,0,-0.138496 -110273,7104:238:4,-48.5,13.5,0,0,-0.137471 -110274,7104:238:3,-48,13.5,0,0,-0.136903 -110275,7104:237:4,-47.5,13.5,0,0,-0.136787 -110276,7104:237:3,-47,13.5,0,0,-0.136144 -110277,7104:236:4,-46.5,13.5,0,0,-0.13605 -110278,7104:236:3,-46,13.5,0,0,-0.13605 -110279,7104:235:4,-45.5,13.5,0,0,-0.13605 -110280,7104:235:3,-45,13.5,0,0,-0.13605 -110281,7104:134:4,-44.5,13.5,0,0,-0.13605 -110282,7104:134:3,-44,13.5,0,0,-0.13605 -110283,7104:133:4,-43.5,13.5,0,0,-0.13605 -110284,7104:133:3,-43,13.5,0,0,-0.13605 -110285,7104:132:4,-42.5,13.5,0,0,-0.13605 -110286,7104:132:3,-42,13.5,0,0,-0.13605 -110287,7104:131:4,-41.5,13.5,0,0,-0.13605 -110288,7104:131:3,-41,13.5,0,0,-0.13605 -110289,7104:130:4,-40.5,13.5,0,0,-0.13605 -110290,7104:130:3,-40,13.5,0,0,-0.13605 -110291,7103:239:4,-39.5,13.5,0,0,-0.13605 -110292,7103:239:3,-39,13.5,0,0,-0.13605 -110293,7103:238:4,-38.5,13.5,0,0,-0.13605 -110294,7103:238:3,-38,13.5,0,0,-0.13605 -110295,7103:237:4,-37.5,13.5,0,0,-0.13605 -110296,7103:237:3,-37,13.5,0,0,-0.13605 -110297,7103:236:4,-36.5,13.5,0,0,-0.13605 -110298,7103:236:3,-36,13.5,0,0,-0.13605 -110299,7103:235:4,-35.5,13.5,0,0,-0.13605 -110300,7103:235:3,-35,13.5,0,0,-0.13605 -110301,7103:134:4,-34.5,13.5,0,0,-0.13605 -110302,7103:134:3,-34,13.5,0,0,-0.13605 -110303,7103:133:4,-33.5,13.5,0,0,-0.13605 -110304,7103:133:3,-33,13.5,0,0,-0.13605 -110305,7103:132:4,-32.5,13.5,0,0,-0.13605 -110306,7103:132:3,-32,13.5,0,0,-0.13605 -110307,7103:131:4,-31.5,13.5,0,0,-0.13605 -110308,7103:131:3,-31,13.5,0,0,-0.13605 -110309,7103:130:4,-30.5,13.5,0,0,-0.13605 -110310,7103:130:3,-30,13.5,0,0,-0.13605 -110311,7102:239:4,-29.5,13.5,0,0,-0.13605 -110312,7102:239:3,-29,13.5,0,0,-0.13605 -110313,7102:238:4,-28.5,13.5,0,0,-0.13605 -110314,7102:238:3,-28,13.5,0,0,-0.13605 -110315,7102:237:4,-27.5,13.5,0,0,-0.13605 -110316,7102:237:3,-27,13.5,0,0,-0.13605 -110317,7102:236:4,-26.5,13.5,0,0,-0.13605 -110318,7102:236:3,-26,13.5,0,0,-0.13605 -110319,7102:235:4,-25.5,13.5,0,0,-0.13605 -110320,7102:235:3,-25,13.5,0,0,-0.13605 -110321,7102:134:4,-24.5,13.5,0,0,-0.13605 -110322,7102:134:3,-24,13.5,0,0,-0.13605 -110323,7102:133:4,-23.5,13.5,0,0,-0.13605 -110324,7102:133:3,-23,13.5,0,0,-0.13605 -110325,7102:132:4,-22.5,13.5,0,0,-0.13605 -110326,7102:132:3,-22,13.5,0,0,-0.13605 -110327,7102:131:4,-21.5,13.5,0,0,-0.13605 -110328,7102:131:3,-21,13.5,0,0,-0.13605 -110329,7102:130:4,-20.5,13.5,0,0,-0.13605 -110330,7102:130:3,-20,13.5,0,0,-0.13605 -110331,7101:239:4,-19.5,13.5,0,0,-0.13605 -110332,7101:239:3,-19,13.5,0,0,-0.13605 -110333,7101:238:4,-18.5,13.5,0,0,-0.13605 -110334,7101:238:3,-18,13.5,0,0,-0.13605 -110335,7101:237:4,-17.5,13.5,0,0,-0.13605 -110336,7101:237:3,-17,13.5,0,0,-0.13605 -110337,7101:236:4,-16.5,13.5,0,0,-0.13605 -110338,1103:235:4,35.5,13.5,0,0,-0.138412 -110339,1103:236:3,36,13.5,0,0,-0.147419 -110340,1103:236:4,36.5,13.5,0,0,-0.1562 -110341,1103:237:3,37,13.5,0,0,-0.166882 -110342,1103:237:4,37.5,13.5,0,0,-0.176388 -110343,1103:238:3,38,13.5,0,0,-0.184628 -110344,1105:238:4,58.5,13.5,0,0,-0.13605 -110345,1105:239:3,59,13.5,0,0,-0.13605 -110346,1105:239:4,59.5,13.5,0,0,-0.13605 -110347,1106:130:3,60,13.5,0,0,-0.140488 -110348,1106:130:4,60.5,13.5,0,0,-0.138918 -110349,1106:131:3,61,13.5,0,0,-0.136804 -110350,1106:131:4,61.5,13.5,0,0,-0.136421 -110351,1106:132:3,62,13.5,0,0,-0.136081 -110352,1106:132:4,62.5,13.5,0,0,-0.136081 -110353,1106:133:3,63,13.5,0,0,-0.136176 -110354,1106:133:4,63.5,13.5,0,0,-0.13702 -110355,1106:134:3,64,13.5,0,0,-0.13687 -110356,1106:134:4,64.5,13.5,0,0,-0.138834 -110357,1106:235:3,65,13.5,0,0,-0.140092 -110358,1106:235:4,65.5,13.5,0,0,-0.143374 -110359,1106:236:3,66,13.5,0,0,-0.147698 -110360,1106:236:4,66.5,13.5,0,0,-0.148903 -110361,1106:237:3,67,13.5,0,0,-0.144656 -110362,1106:237:4,67.5,13.5,0,0,-0.13605 -110363,1106:238:3,68,13.5,0,0,-0.13605 -110364,1111:237:4,117.5,13.5,0,0,-0.13605 -110365,1111:238:3,118,13.5,0,0,-0.13605 -110366,1111:238:4,118.5,13.5,0,0,-0.13605 -110367,1111:239:3,119,13.5,0,0,-0.13605 -110368,1111:239:4,119.5,13.5,0,0,-0.13605 -110369,1112:130:3,120,13.5,0,0,-0.13605 -110370,1112:132:3,122,13.5,0,0,-0.13605 -110371,1112:132:4,122.5,13.5,0,0,-0.13605 -110372,1112:133:3,123,13.5,0,0,-0.13605 -110373,1112:133:4,123.5,13.5,0,0,-0.13605 -110374,1112:134:3,124,13.5,0,0,-0.13605 -110375,1112:134:4,124.5,13.5,0,0,-0.13605 -110376,1112:235:3,125,13.5,0,0,-0.13605 -110377,1112:235:4,125.5,13.5,0,0,-0.13605 -110378,1112:236:3,126,13.5,0,0,-0.13605 -110379,1112:236:4,126.5,13.5,0,0,-0.13605 -110380,1112:237:3,127,13.5,0,0,-0.13605 -110381,1112:237:4,127.5,13.5,0,0,-0.13605 -110382,1112:238:3,128,13.5,0,0,-0.13605 -110383,1112:238:4,128.5,13.5,0,0,-0.13605 -110384,1112:239:3,129,13.5,0,0,-0.13605 -110385,1112:239:4,129.5,13.5,0,0,-0.13605 -110386,1113:130:3,130,13.5,0,0,-0.13605 -110387,1113:130:4,130.5,13.5,0,0,-0.13605 -110388,1113:131:3,131,13.5,0,0,-0.13605 -110389,1113:131:4,131.5,13.5,0,0,-0.13605 -110390,1113:132:3,132,13.5,0,0,-0.13605 -110391,1113:132:4,132.5,13.5,0,0,-0.13605 -110392,1113:133:3,133,13.5,0,0,-0.13605 -110393,1113:133:4,133.5,13.5,0,0,-0.13605 -110394,1113:134:3,134,13.5,0,0,-0.13605 -110395,1113:134:4,134.5,13.5,0,0,-0.13605 -110396,1113:235:3,135,13.5,0,0,-0.13605 -110397,1113:235:4,135.5,13.5,0,0,-0.136141 -110398,1113:236:3,136,13.5,0,0,-0.13789 -110399,1113:236:4,136.5,13.5,0,0,-0.139585 -110400,1113:237:3,137,13.5,0,0,-0.139979 -110401,1113:237:4,137.5,13.5,0,0,-0.140942 -110402,1113:238:3,138,13.5,0,0,-0.143451 -110403,1113:238:4,138.5,13.5,0,0,-0.146504 -110404,1113:239:3,139,13.5,0,0,-0.148944 -110405,1113:239:4,139.5,13.5,0,0,-0.149652 -110406,1114:130:3,140,13.5,0,0,-0.14842 -110407,1114:130:4,140.5,13.5,0,0,-0.146703 -110408,1114:131:3,141,13.5,0,0,-0.145833 -110409,1114:131:4,141.5,13.5,0,0,-0.145853 -110410,1114:132:3,142,13.5,0,0,-0.147061 -110411,1114:132:4,142.5,13.5,0,0,-0.149287 -110412,1114:133:3,143,13.5,0,0,-0.151779 -110413,1114:133:4,143.5,13.5,0,0,-0.153898 -110414,1114:134:3,144,13.5,0,0,-0.154087 -110415,1114:134:4,144.5,13.5,0,0,-0.152855 -110416,1114:235:3,145,13.5,0,0,-0.151429 -110417,1114:235:4,145.5,13.5,0,0,-0.15108 -110418,1114:236:3,146,13.5,0,0,-0.152006 -110419,1114:236:4,146.5,13.5,0,0,-0.153898 -110420,1114:237:3,147,13.5,0,0,-0.156157 -110421,1114:237:4,147.5,13.5,0,0,-0.158389 -110422,1114:238:3,148,13.5,0,0,-0.160065 -110423,1114:238:4,148.5,13.5,0,0,-0.16068 -110424,1114:239:3,149,13.5,0,0,-0.160745 -110425,1114:239:4,149.5,13.5,0,0,-0.16068 -110426,1115:130:3,150,13.5,0,0,-0.159257 -110427,1115:130:4,150.5,13.5,0,0,-0.156968 -110428,1115:131:3,151,13.5,0,0,-0.15497 -110429,1115:131:4,151.5,13.5,0,0,-0.15325 -110430,1115:132:3,152,13.5,0,0,-0.15182 -110431,1115:132:4,152.5,13.5,0,0,-0.150977 -110432,1115:133:3,153,13.5,0,0,-0.150486 -110433,1115:133:4,153.5,13.5,0,0,-0.149997 -110434,1115:134:3,154,13.5,0,0,-0.149246 -110435,1115:134:4,154.5,13.5,0,0,-0.149388 -110436,1115:235:3,155,13.5,0,0,-0.151182 -110437,1115:235:4,155.5,13.5,0,0,-0.154149 -110438,1115:236:3,156,13.5,0,0,-0.15637 -110439,1115:236:4,156.5,13.5,0,0,-0.15729 -110440,1115:237:3,157,13.5,0,0,-0.15744 -110441,1115:237:4,157.5,13.5,0,0,-0.156605 -110442,1115:238:3,158,13.5,0,0,-0.155118 -110443,1115:238:4,158.5,13.5,0,0,-0.154675 -110444,1115:239:3,159,13.5,0,0,-0.15478 -110445,1115:239:4,159.5,13.5,0,0,-0.153209 -110446,1116:130:3,160,13.5,0,0,-0.151861 -110447,1116:130:4,160.5,13.5,0,0,-0.152274 -110448,1116:131:3,161,13.5,0,0,-0.153793 -110449,1116:131:4,161.5,13.5,0,0,-0.155054 -110450,1116:132:3,162,13.5,0,0,-0.155817 -110451,1116:132:4,162.5,13.5,0,0,-0.155498 -110452,1116:133:3,163,13.5,0,0,-0.154928 -110453,1116:133:4,163.5,13.5,0,0,-0.155669 -110454,1116:134:3,164,13.5,0,0,-0.155945 -110455,1116:134:4,164.5,13.5,0,0,-0.154864 -110456,1116:235:3,165,13.5,0,0,-0.153417 -110457,1116:235:4,165.5,13.5,0,0,-0.152813 -110458,1116:236:3,166,13.5,0,0,-0.151264 -110459,1116:236:4,166.5,13.5,0,0,-0.1472 -110460,1116:237:3,167,13.5,0,0,-0.144422 -110461,1116:237:4,167.5,13.5,0,0,-0.148984 -110462,1116:238:3,168,13.5,0,0,-0.150895 -110463,1116:238:4,168.5,13.5,0,0,-0.148661 -110464,1116:239:3,169,13.5,0,0,-0.148461 -110465,1116:239:4,169.5,13.5,0,0,-0.149409 -110466,1117:130:3,170,13.5,0,0,-0.14722 -110467,1117:130:4,170.5,13.5,0,0,-0.142891 -110468,1117:131:3,171,13.5,0,0,-0.140677 -110469,1117:131:4,171.5,13.5,0,0,-0.142411 -110470,1117:132:3,172,13.5,0,0,-0.141341 -110471,1117:132:4,172.5,13.5,0,0,-0.139922 -110472,1117:133:3,173,13.5,0,0,-0.139716 -110473,1117:133:4,173.5,13.5,0,0,-0.137722 -110474,1117:134:3,174,13.5,0,0,-0.136061 -110475,1117:134:4,174.5,13.5,0,0,-0.13605 -110476,1117:235:3,175,13.5,0,0,-0.13605 -110477,1117:235:4,175.5,13.5,0,0,-0.13605 -110478,1117:236:3,176,13.5,0,0,-0.13605 -110479,1117:236:4,176.5,13.5,0,0,-0.13605 -110480,1117:237:3,177,13.5,0,0,-0.13682 -110481,1117:237:4,177.5,13.5,0,0,-0.137571 -110482,1117:238:3,178,13.5,0,0,-0.136096 -110483,1117:238:4,178.5,13.5,0,0,-0.13605 -110484,1117:239:3,179,13.5,0,0,-0.13605 -110485,1117:239:4,179.5,13.5,0,0,-0.13605 -110486,1118:130:3,180,13.5,0,0,-0.136111 -110487,7118:140:1,-180,14,0,0,-0.13605 -110488,7117:249:2,-179.5,14,0,0,-0.13605 -110489,7117:249:1,-179,14,0,0,-0.13605 -110490,7117:248:2,-178.5,14,0,0,-0.13605 -110491,7117:248:1,-178,14,0,0,-0.13605 -110492,7117:247:2,-177.5,14,0,0,-0.13605 -110493,7117:247:1,-177,14,0,0,-0.13605 -110494,7117:246:2,-176.5,14,0,0,-0.13605 -110495,7117:246:1,-176,14,0,0,-0.13605 -110496,7117:245:2,-175.5,14,0,0,-0.13605 -110497,7117:245:1,-175,14,0,0,-0.13605 -110498,7117:144:2,-174.5,14,0,0,-0.13605 -110499,7117:144:1,-174,14,0,0,-0.13605 -110500,7117:143:2,-173.5,14,0,0,-0.13605 -110501,7117:143:1,-173,14,0,0,-0.13605 -110502,7117:142:2,-172.5,14,0,0,-0.13605 -110503,7117:142:1,-172,14,0,0,-0.13605 -110504,7117:141:2,-171.5,14,0,0,-0.13605 -110505,7117:141:1,-171,14,0,0,-0.13605 -110506,7117:140:2,-170.5,14,0,0,-0.13605 -110507,7117:140:1,-170,14,0,0,-0.13605 -110508,7116:249:2,-169.5,14,0,0,-0.13605 -110509,7116:249:1,-169,14,0,0,-0.13605 -110510,7116:248:2,-168.5,14,0,0,-0.13605 -110511,7116:248:1,-168,14,0,0,-0.13605 -110512,7116:247:2,-167.5,14,0,0,-0.13605 -110513,7116:247:1,-167,14,0,0,-0.13605 -110514,7116:246:2,-166.5,14,0,0,-0.13605 -110515,7116:246:1,-166,14,0,0,-0.13605 -110516,7116:245:2,-165.5,14,0,0,-0.13605 -110517,7116:245:1,-165,14,0,0,-0.13605 -110518,7116:144:2,-164.5,14,0,0,-0.13605 -110519,7116:144:1,-164,14,0,0,-0.13605 -110520,7116:143:2,-163.5,14,0,0,-0.13605 -110521,7116:143:1,-163,14,0,0,-0.13605 -110522,7116:142:2,-162.5,14,0,0,-0.13605 -110523,7116:142:1,-162,14,0,0,-0.13605 -110524,7116:141:2,-161.5,14,0,0,-0.13605 -110525,7116:141:1,-161,14,0,0,-0.13605 -110526,7116:140:2,-160.5,14,0,0,-0.13605 -110527,7116:140:1,-160,14,0,0,-0.13605 -110528,7115:249:2,-159.5,14,0,0,-0.13605 -110529,7115:249:1,-159,14,0,0,-0.13605 -110530,7115:248:2,-158.5,14,0,0,-0.13605 -110531,7115:248:1,-158,14,0,0,-0.13605 -110532,7115:247:2,-157.5,14,0,0,-0.13605 -110533,7115:247:1,-157,14,0,0,-0.13605 -110534,7115:246:2,-156.5,14,0,0,-0.13605 -110535,7115:246:1,-156,14,0,0,-0.13605 -110536,7115:245:2,-155.5,14,0,0,-0.13605 -110537,7115:245:1,-155,14,0,0,-0.13605 -110538,7115:144:2,-154.5,14,0,0,-0.13605 -110539,7115:144:1,-154,14,0,0,-0.13605 -110540,7115:143:2,-153.5,14,0,0,-0.13605 -110541,7115:143:1,-153,14,0,0,-0.13605 -110542,7115:142:2,-152.5,14,0,0,-0.13605 -110543,7115:142:1,-152,14,0,0,-0.13605 -110544,7115:141:2,-151.5,14,0,0,-0.13605 -110545,7115:141:1,-151,14,0,0,-0.13605 -110546,7115:140:2,-150.5,14,0,0,-0.13605 -110547,7115:140:1,-150,14,0,0,-0.13605 -110548,7114:249:2,-149.5,14,0,0,-0.13605 -110549,7114:249:1,-149,14,0,0,-0.13605 -110550,7114:248:2,-148.5,14,0,0,-0.13605 -110551,7114:248:1,-148,14,0,0,-0.13605 -110552,7114:247:2,-147.5,14,0,0,-0.13605 -110553,7114:247:1,-147,14,0,0,-0.13605 -110554,7114:246:2,-146.5,14,0,0,-0.13605 -110555,7114:246:1,-146,14,0,0,-0.13605 -110556,7114:245:2,-145.5,14,0,0,-0.13605 -110557,7114:245:1,-145,14,0,0,-0.13605 -110558,7114:144:2,-144.5,14,0,0,-0.13605 -110559,7114:144:1,-144,14,0,0,-0.13605 -110560,7114:143:2,-143.5,14,0,0,-0.13605 -110561,7114:143:1,-143,14,0,0,-0.13605 -110562,7114:142:2,-142.5,14,0,0,-0.13605 -110563,7114:142:1,-142,14,0,0,-0.13605 -110564,7114:141:2,-141.5,14,0,0,-0.13605 -110565,7114:141:1,-141,14,0,0,-0.13605 -110566,7114:140:2,-140.5,14,0,0,-0.13605 -110567,7114:140:1,-140,14,0,0,-0.13605 -110568,7113:249:2,-139.5,14,0,0,-0.13605 -110569,7113:249:1,-139,14,0,0,-0.13605 -110570,7113:248:2,-138.5,14,0,0,-0.13605 -110571,7113:248:1,-138,14,0,0,-0.13605 -110572,7113:247:2,-137.5,14,0,0,-0.13605 -110573,7113:247:1,-137,14,0,0,-0.13605 -110574,7113:246:2,-136.5,14,0,0,-0.13605 -110575,7113:246:1,-136,14,0,0,-0.13605 -110576,7113:245:2,-135.5,14,0,0,-0.13605 -110577,7113:245:1,-135,14,0,0,-0.13605 -110578,7113:144:2,-134.5,14,0,0,-0.13605 -110579,7113:144:1,-134,14,0,0,-0.13605 -110580,7113:143:2,-133.5,14,0,0,-0.13605 -110581,7113:143:1,-133,14,0,0,-0.13605 -110582,7113:142:2,-132.5,14,0,0,-0.13605 -110583,7113:142:1,-132,14,0,0,-0.13605 -110584,7113:141:2,-131.5,14,0,0,-0.13605 -110585,7113:141:1,-131,14,0,0,-0.13605 -110586,7113:140:2,-130.5,14,0,0,-0.13605 -110587,7113:140:1,-130,14,0,0,-0.13605 -110588,7112:249:2,-129.5,14,0,0,-0.13605 -110589,7112:249:1,-129,14,0,0,-0.13605 -110590,7112:248:2,-128.5,14,0,0,-0.13605 -110591,7112:248:1,-128,14,0,0,-0.13605 -110592,7112:247:2,-127.5,14,0,0,-0.13605 -110593,7112:247:1,-127,14,0,0,-0.13605 -110594,7112:246:2,-126.5,14,0,0,-0.13605 -110595,7112:246:1,-126,14,0,0,-0.13605 -110596,7112:245:2,-125.5,14,0,0,-0.13605 -110597,7112:245:1,-125,14,0,0,-0.13605 -110598,7112:144:2,-124.5,14,0,0,-0.13605 -110599,7112:144:1,-124,14,0,0,-0.13605 -110600,7112:143:2,-123.5,14,0,0,-0.13605 -110601,7112:143:1,-123,14,0,0,-0.13605 -110602,7112:142:2,-122.5,14,0,0,-0.13605 -110603,7112:142:1,-122,14,0,0,-0.13605 -110604,7112:141:2,-121.5,14,0,0,-0.13605 -110605,7112:141:1,-121,14,0,0,-0.13605 -110606,7112:140:2,-120.5,14,0,0,-0.13605 -110607,7112:140:1,-120,14,0,0,-0.13605 -110608,7111:249:2,-119.5,14,0,0,-0.13605 -110609,7111:249:1,-119,14,0,0,-0.13605 -110610,7111:248:2,-118.5,14,0,0,-0.13605 -110611,7111:248:1,-118,14,0,0,-0.13605 -110612,7111:247:2,-117.5,14,0,0,-0.13605 -110613,7111:247:1,-117,14,0,0,-0.13605 -110614,7111:246:2,-116.5,14,0,0,-0.13605 -110615,7111:246:1,-116,14,0,0,-0.13605 -110616,7111:245:2,-115.5,14,0,0,-0.13605 -110617,7111:245:1,-115,14,0,0,-0.13605 -110618,7111:144:2,-114.5,14,0,0,-0.13605 -110619,7111:144:1,-114,14,0,0,-0.13605 -110620,7111:143:2,-113.5,14,0,0,-0.13605 -110621,7111:143:1,-113,14,0,0,-0.13605 -110622,7111:142:2,-112.5,14,0,0,-0.13605 -110623,7111:142:1,-112,14,0,0,-0.13605 -110624,7111:141:2,-111.5,14,0,0,-0.13605 -110625,7111:140:1,-110,14,0,0,-0.13605 -110626,7110:249:2,-109.5,14,0,0,-0.13605 -110627,7110:249:1,-109,14,0,0,-0.13605 -110628,7110:248:2,-108.5,14,0,0,-0.13605 -110629,7110:248:1,-108,14,0,0,-0.13605 -110630,7110:247:2,-107.5,14,0,0,-0.13605 -110631,7109:247:2,-97.5,14,0,0,-0.13605 -110632,7109:247:1,-97,14,0,0,-0.13605 -110633,7109:246:2,-96.5,14,0,0,-0.13605 -110634,7109:246:1,-96,14,0,0,-0.13605 -110635,7109:245:2,-95.5,14,0,0,-0.13605 -110636,7109:245:1,-95,14,0,0,-0.13605 -110637,7109:144:2,-94.5,14,0,0,-0.13605 -110638,7109:144:1,-94,14,0,0,-0.13605 -110639,7109:143:2,-93.5,14,0,0,-0.13605 -110640,7109:143:1,-93,14,0,0,-0.13605 -110641,7109:142:2,-92.5,14,0,0,-0.13605 -110642,7109:142:1,-92,14,0,0,-0.13605 -110643,7109:141:2,-91.5,14,0,0,-0.13605 -110644,7109:141:1,-91,14,0,0,-0.13605 -110645,7109:140:2,-90.5,14,0,0,-0.13605 -110646,7109:140:1,-90,14,0,0,-0.13605 -110647,7108:249:2,-89.5,14,0,0,-0.13605 -110648,7108:249:1,-89,14,0,0,-0.13605 -110649,7108:248:2,-88.5,14,0,0,-0.13605 -110650,7108:248:1,-88,14,0,0,-0.145047 -110651,7108:247:2,-87.5,14,0,0,-0.171999 -110652,7108:247:1,-87,14,0,0,-0.180932 -110653,7108:246:2,-86.5,14,0,0,-0.165374 -110654,7108:246:1,-86,14,0,0,-0.161054 -110655,7108:245:2,-85.5,14,0,0,-0.159322 -110656,7108:245:1,-85,14,0,0,-0.162427 -110657,7108:144:2,-84.5,14,0,0,-0.168475 -110658,7108:144:1,-84,14,0,0,-0.14603 -110659,7108:143:2,-83.5,14,0,0,-0.13605 -110660,7108:143:1,-83,14,0,0,-0.13605 -110661,7108:142:2,-82.5,14,0,0,-0.13605 -110662,7108:142:1,-82,14,0,0,-0.13605 -110663,7108:141:2,-81.5,14,0,0,-0.136641 -110664,7108:141:1,-81,14,0,0,-0.141037 -110665,7108:140:2,-80.5,14,0,0,-0.160328 -110666,7108:140:1,-80,14,0,0,-0.161452 -110667,7107:249:2,-79.5,14,0,0,-0.163007 -110668,7107:249:1,-79,14,0,0,-0.13605 -110669,7107:248:2,-78.5,14,0,0,-0.13605 -110670,7107:248:1,-78,14,0,0,-0.13605 -110671,7107:247:2,-77.5,14,0,0,-0.152688 -110672,7107:247:1,-77,14,0,0,-0.13605 -110673,7107:246:2,-76.5,14,0,0,-0.136146 -110674,7107:246:1,-76,14,0,0,-0.14842 -110675,7107:245:2,-75.5,14,0,0,-0.140677 -110676,7107:245:1,-75,14,0,0,-0.149692 -110677,7107:144:2,-74.5,14,0,0,-0.148239 -110678,7107:144:1,-74,14,0,0,-0.145873 -110679,7107:143:2,-73.5,14,0,0,-0.146129 -110680,7107:143:1,-73,14,0,0,-0.144969 -110681,7107:142:2,-72.5,14,0,0,-0.144189 -110682,7107:142:1,-72,14,0,0,-0.143897 -110683,7107:141:2,-71.5,14,0,0,-0.14493 -110684,7107:141:1,-71,14,0,0,-0.147379 -110685,7107:140:2,-70.5,14,0,0,-0.14722 -110686,7107:140:1,-70,14,0,0,-0.144852 -110687,7106:249:2,-69.5,14,0,0,-0.143027 -110688,7106:249:1,-69,14,0,0,-0.143664 -110689,7106:248:2,-68.5,14,0,0,-0.143916 -110690,7106:248:1,-68,14,0,0,-0.144325 -110691,7106:247:2,-67.5,14,0,0,-0.144832 -110692,7106:247:1,-67,14,0,0,-0.144442 -110693,7106:246:2,-66.5,14,0,0,-0.14413 -110694,7106:246:1,-66,14,0,0,-0.143839 -110695,7106:245:2,-65.5,14,0,0,-0.145047 -110696,7106:245:1,-65,14,0,0,-0.145951 -110697,7106:144:2,-64.5,14,0,0,-0.145067 -110698,7106:144:1,-64,14,0,0,-0.144285 -110699,7106:143:2,-63.5,14,0,0,-0.144422 -110700,7106:143:1,-63,14,0,0,-0.144832 -110701,7106:142:2,-62.5,14,0,0,-0.144656 -110702,7106:142:1,-62,14,0,0,-0.143742 -110703,7106:141:2,-61.5,14,0,0,-0.142853 -110704,7106:141:1,-61,14,0,0,-0.142699 -110705,7106:140:2,-60.5,14,0,0,-0.143258 -110706,7106:140:1,-60,14,0,0,-0.143916 -110707,7105:249:2,-59.5,14,0,0,-0.144969 -110708,7105:249:1,-59,14,0,0,-0.146188 -110709,7105:248:2,-58.5,14,0,0,-0.146386 -110710,7105:248:1,-58,14,0,0,-0.145774 -110711,7105:247:2,-57.5,14,0,0,-0.146148 -110712,7105:247:1,-57,14,0,0,-0.147499 -110713,7105:246:2,-56.5,14,0,0,-0.147559 -110714,7105:246:1,-56,14,0,0,-0.146386 -110715,7105:245:2,-55.5,14,0,0,-0.146504 -110716,7105:245:1,-55,14,0,0,-0.14828 -110717,7105:144:2,-54.5,14,0,0,-0.149469 -110718,7105:144:1,-54,14,0,0,-0.148903 -110719,7105:143:2,-53.5,14,0,0,-0.147041 -110720,7105:143:1,-53,14,0,0,-0.144714 -110721,7105:142:2,-52.5,14,0,0,-0.143258 -110722,7105:142:1,-52,14,0,0,-0.142526 -110723,7105:141:2,-51.5,14,0,0,-0.140923 -110724,7105:141:1,-51,14,0,0,-0.139359 -110725,7105:140:2,-50.5,14,0,0,-0.13732 -110726,7105:140:1,-50,14,0,0,-0.136084 -110727,7104:249:2,-49.5,14,0,0,-0.136056 -110728,7104:249:1,-49,14,0,0,-0.13605 -110729,7104:248:2,-48.5,14,0,0,-0.13605 -110730,7104:248:1,-48,14,0,0,-0.13605 -110731,7104:247:2,-47.5,14,0,0,-0.13605 -110732,7104:247:1,-47,14,0,0,-0.13605 -110733,7104:246:2,-46.5,14,0,0,-0.13605 -110734,7104:246:1,-46,14,0,0,-0.13605 -110735,7104:245:2,-45.5,14,0,0,-0.13605 -110736,7104:245:1,-45,14,0,0,-0.13605 -110737,7104:144:2,-44.5,14,0,0,-0.13605 -110738,7104:144:1,-44,14,0,0,-0.13605 -110739,7104:143:2,-43.5,14,0,0,-0.13605 -110740,7104:143:1,-43,14,0,0,-0.13605 -110741,7104:142:2,-42.5,14,0,0,-0.13605 -110742,7104:142:1,-42,14,0,0,-0.13605 -110743,7104:141:2,-41.5,14,0,0,-0.13605 -110744,7104:141:1,-41,14,0,0,-0.13605 -110745,7104:140:2,-40.5,14,0,0,-0.13605 -110746,7104:140:1,-40,14,0,0,-0.13605 -110747,7103:249:2,-39.5,14,0,0,-0.13605 -110748,7103:249:1,-39,14,0,0,-0.13605 -110749,7103:248:2,-38.5,14,0,0,-0.13605 -110750,7103:248:1,-38,14,0,0,-0.13605 -110751,7103:247:2,-37.5,14,0,0,-0.13605 -110752,7103:247:1,-37,14,0,0,-0.13605 -110753,7103:246:2,-36.5,14,0,0,-0.13605 -110754,7103:246:1,-36,14,0,0,-0.13605 -110755,7103:245:2,-35.5,14,0,0,-0.13605 -110756,7103:245:1,-35,14,0,0,-0.13605 -110757,7103:144:2,-34.5,14,0,0,-0.13605 -110758,7103:144:1,-34,14,0,0,-0.13605 -110759,7103:143:2,-33.5,14,0,0,-0.13605 -110760,7103:143:1,-33,14,0,0,-0.13605 -110761,7103:142:2,-32.5,14,0,0,-0.13605 -110762,7103:142:1,-32,14,0,0,-0.13605 -110763,7103:141:2,-31.5,14,0,0,-0.13605 -110764,7103:141:1,-31,14,0,0,-0.13605 -110765,7103:140:2,-30.5,14,0,0,-0.13605 -110766,7103:140:1,-30,14,0,0,-0.13605 -110767,7102:249:2,-29.5,14,0,0,-0.13605 -110768,7102:249:1,-29,14,0,0,-0.13605 -110769,7102:248:2,-28.5,14,0,0,-0.13605 -110770,7102:248:1,-28,14,0,0,-0.13605 -110771,7102:247:2,-27.5,14,0,0,-0.13605 -110772,7102:247:1,-27,14,0,0,-0.13605 -110773,7102:246:2,-26.5,14,0,0,-0.13605 -110774,7102:246:1,-26,14,0,0,-0.13605 -110775,7102:245:2,-25.5,14,0,0,-0.13605 -110776,7102:245:1,-25,14,0,0,-0.13605 -110777,7102:144:2,-24.5,14,0,0,-0.13605 -110778,7102:144:1,-24,14,0,0,-0.13605 -110779,7102:143:2,-23.5,14,0,0,-0.13605 -110780,7102:143:1,-23,14,0,0,-0.13605 -110781,7102:142:2,-22.5,14,0,0,-0.13605 -110782,7102:142:1,-22,14,0,0,-0.13605 -110783,7102:141:2,-21.5,14,0,0,-0.13605 -110784,7102:141:1,-21,14,0,0,-0.13605 -110785,7102:140:2,-20.5,14,0,0,-0.13605 -110786,7102:140:1,-20,14,0,0,-0.13605 -110787,7101:249:2,-19.5,14,0,0,-0.13605 -110788,7101:249:1,-19,14,0,0,-0.13605 -110789,7101:248:2,-18.5,14,0,0,-0.13605 -110790,7101:248:1,-18,14,0,0,-0.13605 -110791,7101:247:2,-17.5,14,0,0,-0.13605 -110792,7101:247:1,-17,14,0,0,-0.13605 -110793,7101:246:2,-16.5,14,0,0,-0.13605 -110794,7101:246:1,-16,14,0,0,-0.13605 -110795,1103:245:2,35.5,14,0,0,-0.138041 -110796,1103:246:1,36,14,0,0,-0.150793 -110797,1103:246:2,36.5,14,0,0,-0.160745 -110798,1103:247:1,37,14,0,0,-0.172379 -110799,1103:247:2,37.5,14,0,0,-0.173479 -110800,1105:142:1,52,14,0,0,-0.13605 -110801,1105:142:2,52.5,14,0,0,-0.13605 -110802,1105:143:1,53,14,0,0,-0.13605 -110803,1105:143:2,53.5,14,0,0,-0.13605 -110804,1105:247:1,57,14,0,0,-0.13605 -110805,1105:247:2,57.5,14,0,0,-0.13605 -110806,1105:248:1,58,14,0,0,-0.13605 -110807,1105:248:2,58.5,14,0,0,-0.13605 -110808,1105:249:1,59,14,0,0,-0.13605 -110809,1105:249:2,59.5,14,0,0,-0.138546 -110810,1106:140:1,60,14,0,0,-0.137722 -110811,1106:140:2,60.5,14,0,0,-0.13605 -110812,1106:141:1,61,14,0,0,-0.13605 -110813,1106:141:2,61.5,14,0,0,-0.13605 -110814,1106:142:1,62,14,0,0,-0.13605 -110815,1106:142:2,62.5,14,0,0,-0.13605 -110816,1106:143:1,63,14,0,0,-0.136395 -110817,1106:143:2,63.5,14,0,0,-0.137304 -110818,1106:144:1,64,14,0,0,-0.139054 -110819,1106:144:2,64.5,14,0,0,-0.14098 -110820,1106:245:1,65,14,0,0,-0.141646 -110821,1106:245:2,65.5,14,0,0,-0.142891 -110822,1106:246:1,66,14,0,0,-0.143587 -110823,1106:246:2,66.5,14,0,0,-0.139941 -110824,1106:247:1,67,14,0,0,-0.13605 -110825,1111:248:2,118.5,14,0,0,-0.13605 -110826,1111:249:1,119,14,0,0,-0.13605 -110827,1111:249:2,119.5,14,0,0,-0.13605 -110828,1112:140:1,120,14,0,0,-0.13605 -110829,1112:140:2,120.5,14,0,0,-0.13605 -110830,1112:142:1,122,14,0,0,-0.13605 -110831,1112:142:2,122.5,14,0,0,-0.13605 -110832,1112:143:1,123,14,0,0,-0.13605 -110833,1112:143:2,123.5,14,0,0,-0.13605 -110834,1112:144:2,124.5,14,0,0,-0.13605 -110835,1112:245:1,125,14,0,0,-0.13605 -110836,1112:245:2,125.5,14,0,0,-0.13605 -110837,1112:246:1,126,14,0,0,-0.13605 -110838,1112:246:2,126.5,14,0,0,-0.13605 -110839,1112:247:1,127,14,0,0,-0.13605 -110840,1112:247:2,127.5,14,0,0,-0.13605 -110841,1112:248:1,128,14,0,0,-0.13605 -110842,1112:248:2,128.5,14,0,0,-0.13605 -110843,1112:249:1,129,14,0,0,-0.13605 -110844,1112:249:2,129.5,14,0,0,-0.13605 -110845,1113:140:1,130,14,0,0,-0.13605 -110846,1113:140:2,130.5,14,0,0,-0.13605 -110847,1113:141:1,131,14,0,0,-0.13605 -110848,1113:141:2,131.5,14,0,0,-0.13605 -110849,1113:142:1,132,14,0,0,-0.13605 -110850,1113:142:2,132.5,14,0,0,-0.13605 -110851,1113:143:1,133,14,0,0,-0.13605 -110852,1113:143:2,133.5,14,0,0,-0.13605 -110853,1113:144:1,134,14,0,0,-0.13605 -110854,1113:144:2,134.5,14,0,0,-0.13605 -110855,1113:245:1,135,14,0,0,-0.13605 -110856,1113:245:2,135.5,14,0,0,-0.13605 -110857,1113:246:1,136,14,0,0,-0.13605 -110858,1113:246:2,136.5,14,0,0,-0.13605 -110859,1113:247:1,137,14,0,0,-0.13605 -110860,1113:247:2,137.5,14,0,0,-0.13605 -110861,1113:248:1,138,14,0,0,-0.13605 -110862,1113:248:2,138.5,14,0,0,-0.13605 -110863,1113:249:1,139,14,0,0,-0.137037 -110864,1113:249:2,139.5,14,0,0,-0.140242 -110865,1114:140:1,140,14,0,0,-0.143606 -110866,1114:140:2,140.5,14,0,0,-0.144442 -110867,1114:141:1,141,14,0,0,-0.141608 -110868,1114:141:2,141.5,14,0,0,-0.139772 -110869,1114:142:1,142,14,0,0,-0.140886 -110870,1114:142:2,142.5,14,0,0,-0.14347 -110871,1114:143:1,143,14,0,0,-0.147041 -110872,1114:143:2,143.5,14,0,0,-0.149713 -110873,1114:144:1,144,14,0,0,-0.150772 -110874,1114:144:2,144.5,14,0,0,-0.149632 -110875,1114:245:1,145,14,0,0,-0.147539 -110876,1114:245:2,145.5,14,0,0,-0.146346 -110877,1114:246:1,146,14,0,0,-0.147299 -110878,1114:246:2,146.5,14,0,0,-0.149956 -110879,1114:247:1,147,14,0,0,-0.152751 -110880,1114:247:2,147.5,14,0,0,-0.154612 -110881,1114:248:1,148,14,0,0,-0.155732 -110882,1114:248:2,148.5,14,0,0,-0.156115 -110883,1114:249:1,149,14,0,0,-0.156519 -110884,1114:249:2,149.5,14,0,0,-0.156157 -110885,1115:140:1,150,14,0,0,-0.154149 -110886,1115:140:2,150.5,14,0,0,-0.151902 -110887,1115:141:1,151,14,0,0,-0.150262 -110888,1115:141:2,151.5,14,0,0,-0.149024 -110889,1115:142:1,152,14,0,0,-0.147698 -110890,1115:142:2,152.5,14,0,0,-0.146307 -110891,1115:143:1,153,14,0,0,-0.14542 -110892,1115:143:2,153.5,14,0,0,-0.145892 -110893,1115:144:1,154,14,0,0,-0.147061 -110894,1115:144:2,154.5,14,0,0,-0.146644 -110895,1115:245:1,155,14,0,0,-0.146109 -110896,1115:245:2,155.5,14,0,0,-0.147618 -110897,1115:246:1,156,14,0,0,-0.150262 -110898,1115:246:2,156.5,14,0,0,-0.151326 -110899,1115:247:1,157,14,0,0,-0.150854 -110900,1115:247:2,157.5,14,0,0,-0.149713 -110901,1115:248:1,158,14,0,0,-0.148661 -110902,1115:248:2,158.5,14,0,0,-0.14844 -110903,1115:249:1,159,14,0,0,-0.148239 -110904,1115:249:2,159.5,14,0,0,-0.147041 -110905,1116:140:1,160,14,0,0,-0.145617 -110906,1116:140:2,160.5,14,0,0,-0.144598 -110907,1116:141:1,161,14,0,0,-0.144988 -110908,1116:141:2,161.5,14,0,0,-0.146485 -110909,1116:142:1,162,14,0,0,-0.147939 -110910,1116:142:2,162.5,14,0,0,-0.148722 -110911,1116:143:1,163,14,0,0,-0.148742 -110912,1116:143:2,163.5,14,0,0,-0.148299 -110913,1116:144:1,164,14,0,0,-0.147539 -110914,1116:144:2,164.5,14,0,0,-0.146782 -110915,1116:245:1,165,14,0,0,-0.146346 -110916,1116:245:2,165.5,14,0,0,-0.147 -110917,1116:246:1,166,14,0,0,-0.147778 -110918,1116:246:2,166.5,14,0,0,-0.145125 -110919,1116:247:1,167,14,0,0,-0.140999 -110920,1116:247:2,167.5,14,0,0,-0.143684 -110921,1116:248:1,168,14,0,0,-0.146882 -110922,1116:248:2,168.5,14,0,0,-0.14712 -110923,1116:249:1,169,14,0,0,-0.146386 -110924,1116:249:2,169.5,14,0,0,-0.144871 -110925,1117:140:1,170,14,0,0,-0.142105 -110926,1117:140:2,170.5,14,0,0,-0.139922 -110927,1117:141:1,171,14,0,0,-0.138935 -110928,1117:141:2,171.5,14,0,0,-0.138513 -110929,1117:142:1,172,14,0,0,-0.136937 -110930,1117:142:2,172.5,14,0,0,-0.136254 -110931,1117:143:1,173,14,0,0,-0.13617 -110932,1117:143:2,173.5,14,0,0,-0.13605 -110933,1117:144:1,174,14,0,0,-0.13605 -110934,1117:144:2,174.5,14,0,0,-0.13605 -110935,1117:245:1,175,14,0,0,-0.13605 -110936,1117:245:2,175.5,14,0,0,-0.13605 -110937,1117:246:1,176,14,0,0,-0.13605 -110938,1117:246:2,176.5,14,0,0,-0.13605 -110939,1117:247:1,177,14,0,0,-0.13605 -110940,1117:247:2,177.5,14,0,0,-0.13605 -110941,1117:248:1,178,14,0,0,-0.13605 -110942,1117:248:2,178.5,14,0,0,-0.13605 -110943,1117:249:1,179,14,0,0,-0.13605 -110944,1117:249:2,179.5,14,0,0,-0.13605 -110945,1118:140:1,180,14,0,0,-0.13605 -110946,7118:140:3,-180,14.5,0,0,-0.13605 -110947,7117:249:4,-179.5,14.5,0,0,-0.13605 -110948,7117:249:3,-179,14.5,0,0,-0.13605 -110949,7117:248:4,-178.5,14.5,0,0,-0.13605 -110950,7117:248:3,-178,14.5,0,0,-0.13605 -110951,7117:247:4,-177.5,14.5,0,0,-0.13605 -110952,7117:247:3,-177,14.5,0,0,-0.13605 -110953,7117:246:4,-176.5,14.5,0,0,-0.13605 -110954,7117:246:3,-176,14.5,0,0,-0.13605 -110955,7117:245:4,-175.5,14.5,0,0,-0.13605 -110956,7117:245:3,-175,14.5,0,0,-0.13605 -110957,7117:144:4,-174.5,14.5,0,0,-0.13605 -110958,7117:144:3,-174,14.5,0,0,-0.13605 -110959,7117:143:4,-173.5,14.5,0,0,-0.13605 -110960,7117:143:3,-173,14.5,0,0,-0.13605 -110961,7117:142:4,-172.5,14.5,0,0,-0.13605 -110962,7117:142:3,-172,14.5,0,0,-0.13605 -110963,7117:141:4,-171.5,14.5,0,0,-0.13605 -110964,7117:141:3,-171,14.5,0,0,-0.13605 -110965,7117:140:4,-170.5,14.5,0,0,-0.13605 -110966,7117:140:3,-170,14.5,0,0,-0.13605 -110967,7116:249:4,-169.5,14.5,0,0,-0.13605 -110968,7116:249:3,-169,14.5,0,0,-0.13605 -110969,7116:248:4,-168.5,14.5,0,0,-0.13605 -110970,7116:248:3,-168,14.5,0,0,-0.13605 -110971,7116:247:4,-167.5,14.5,0,0,-0.13605 -110972,7116:247:3,-167,14.5,0,0,-0.13605 -110973,7116:246:4,-166.5,14.5,0,0,-0.13605 -110974,7116:246:3,-166,14.5,0,0,-0.13605 -110975,7116:245:4,-165.5,14.5,0,0,-0.13605 -110976,7116:245:3,-165,14.5,0,0,-0.13605 -110977,7116:144:4,-164.5,14.5,0,0,-0.13605 -110978,7116:144:3,-164,14.5,0,0,-0.13605 -110979,7116:143:4,-163.5,14.5,0,0,-0.13605 -110980,7116:143:3,-163,14.5,0,0,-0.13605 -110981,7116:142:4,-162.5,14.5,0,0,-0.13605 -110982,7116:142:3,-162,14.5,0,0,-0.13605 -110983,7116:141:4,-161.5,14.5,0,0,-0.13605 -110984,7116:141:3,-161,14.5,0,0,-0.13605 -110985,7116:140:4,-160.5,14.5,0,0,-0.13605 -110986,7116:140:3,-160,14.5,0,0,-0.13605 -110987,7115:249:4,-159.5,14.5,0,0,-0.13605 -110988,7115:249:3,-159,14.5,0,0,-0.13605 -110989,7115:248:4,-158.5,14.5,0,0,-0.13605 -110990,7115:248:3,-158,14.5,0,0,-0.13605 -110991,7115:247:4,-157.5,14.5,0,0,-0.13605 -110992,7115:247:3,-157,14.5,0,0,-0.13605 -110993,7115:246:4,-156.5,14.5,0,0,-0.13605 -110994,7115:246:3,-156,14.5,0,0,-0.13605 -110995,7115:245:4,-155.5,14.5,0,0,-0.13605 -110996,7115:245:3,-155,14.5,0,0,-0.13605 -110997,7115:144:4,-154.5,14.5,0,0,-0.13605 -110998,7115:144:3,-154,14.5,0,0,-0.13605 -110999,7115:143:4,-153.5,14.5,0,0,-0.13605 -111000,7115:143:3,-153,14.5,0,0,-0.13605 -111001,7115:142:4,-152.5,14.5,0,0,-0.13605 -111002,7115:142:3,-152,14.5,0,0,-0.13605 -111003,7115:141:4,-151.5,14.5,0,0,-0.13605 -111004,7115:141:3,-151,14.5,0,0,-0.13605 -111005,7115:140:4,-150.5,14.5,0,0,-0.13605 -111006,7115:140:3,-150,14.5,0,0,-0.13605 -111007,7114:249:4,-149.5,14.5,0,0,-0.13605 -111008,7114:249:3,-149,14.5,0,0,-0.13605 -111009,7114:248:4,-148.5,14.5,0,0,-0.13605 -111010,7114:248:3,-148,14.5,0,0,-0.13605 -111011,7114:247:4,-147.5,14.5,0,0,-0.13605 -111012,7114:247:3,-147,14.5,0,0,-0.13605 -111013,7114:246:4,-146.5,14.5,0,0,-0.13605 -111014,7114:246:3,-146,14.5,0,0,-0.13605 -111015,7114:245:4,-145.5,14.5,0,0,-0.13605 -111016,7114:245:3,-145,14.5,0,0,-0.13605 -111017,7114:144:4,-144.5,14.5,0,0,-0.13605 -111018,7114:144:3,-144,14.5,0,0,-0.13605 -111019,7114:143:4,-143.5,14.5,0,0,-0.13605 -111020,7114:143:3,-143,14.5,0,0,-0.13605 -111021,7114:142:4,-142.5,14.5,0,0,-0.13605 -111022,7114:142:3,-142,14.5,0,0,-0.13605 -111023,7114:141:4,-141.5,14.5,0,0,-0.13605 -111024,7114:141:3,-141,14.5,0,0,-0.13605 -111025,7114:140:4,-140.5,14.5,0,0,-0.13605 -111026,7114:140:3,-140,14.5,0,0,-0.13605 -111027,7113:249:4,-139.5,14.5,0,0,-0.13605 -111028,7113:249:3,-139,14.5,0,0,-0.13605 -111029,7113:248:4,-138.5,14.5,0,0,-0.13605 -111030,7113:248:3,-138,14.5,0,0,-0.13605 -111031,7113:247:4,-137.5,14.5,0,0,-0.13605 -111032,7113:247:3,-137,14.5,0,0,-0.13605 -111033,7113:246:4,-136.5,14.5,0,0,-0.13605 -111034,7113:246:3,-136,14.5,0,0,-0.13605 -111035,7113:245:4,-135.5,14.5,0,0,-0.13605 -111036,7113:245:3,-135,14.5,0,0,-0.13605 -111037,7113:144:4,-134.5,14.5,0,0,-0.13605 -111038,7113:144:3,-134,14.5,0,0,-0.13605 -111039,7113:143:4,-133.5,14.5,0,0,-0.13605 -111040,7113:143:3,-133,14.5,0,0,-0.13605 -111041,7113:142:4,-132.5,14.5,0,0,-0.13605 -111042,7113:142:3,-132,14.5,0,0,-0.13605 -111043,7113:141:4,-131.5,14.5,0,0,-0.13605 -111044,7113:141:3,-131,14.5,0,0,-0.13605 -111045,7113:140:4,-130.5,14.5,0,0,-0.13605 -111046,7113:140:3,-130,14.5,0,0,-0.13605 -111047,7112:249:4,-129.5,14.5,0,0,-0.13605 -111048,7112:249:3,-129,14.5,0,0,-0.13605 -111049,7112:248:4,-128.5,14.5,0,0,-0.13605 -111050,7112:248:3,-128,14.5,0,0,-0.13605 -111051,7112:247:4,-127.5,14.5,0,0,-0.13605 -111052,7112:247:3,-127,14.5,0,0,-0.13605 -111053,7112:246:4,-126.5,14.5,0,0,-0.13605 -111054,7112:246:3,-126,14.5,0,0,-0.13605 -111055,7112:245:4,-125.5,14.5,0,0,-0.13605 -111056,7112:245:3,-125,14.5,0,0,-0.13605 -111057,7112:144:4,-124.5,14.5,0,0,-0.13605 -111058,7112:144:3,-124,14.5,0,0,-0.13605 -111059,7112:143:4,-123.5,14.5,0,0,-0.13605 -111060,7112:143:3,-123,14.5,0,0,-0.13605 -111061,7112:142:4,-122.5,14.5,0,0,-0.13605 -111062,7112:142:3,-122,14.5,0,0,-0.13605 -111063,7112:141:4,-121.5,14.5,0,0,-0.13605 -111064,7112:141:3,-121,14.5,0,0,-0.13605 -111065,7112:140:4,-120.5,14.5,0,0,-0.13605 -111066,7112:140:3,-120,14.5,0,0,-0.13605 -111067,7111:249:4,-119.5,14.5,0,0,-0.13605 -111068,7111:249:3,-119,14.5,0,0,-0.13605 -111069,7111:248:4,-118.5,14.5,0,0,-0.13605 -111070,7111:248:3,-118,14.5,0,0,-0.13605 -111071,7111:247:4,-117.5,14.5,0,0,-0.13605 -111072,7111:247:3,-117,14.5,0,0,-0.13605 -111073,7111:246:4,-116.5,14.5,0,0,-0.13605 -111074,7111:246:3,-116,14.5,0,0,-0.13605 -111075,7111:245:4,-115.5,14.5,0,0,-0.13605 -111076,7111:245:3,-115,14.5,0,0,-0.13605 -111077,7111:144:4,-114.5,14.5,0,0,-0.13605 -111078,7111:144:3,-114,14.5,0,0,-0.13605 -111079,7111:143:4,-113.5,14.5,0,0,-0.13605 -111080,7111:143:3,-113,14.5,0,0,-0.13605 -111081,7111:142:4,-112.5,14.5,0,0,-0.13605 -111082,7111:140:4,-110.5,14.5,0,0,-0.13605 -111083,7111:140:3,-110,14.5,0,0,-0.13605 -111084,7110:249:4,-109.5,14.5,0,0,-0.13605 -111085,7110:249:3,-109,14.5,0,0,-0.13605 -111086,7110:248:4,-108.5,14.5,0,0,-0.13605 -111087,7109:247:4,-97.5,14.5,0,0,-0.13605 -111088,7109:247:3,-97,14.5,0,0,-0.13605 -111089,7109:246:4,-96.5,14.5,0,0,-0.13605 -111090,7109:246:3,-96,14.5,0,0,-0.13605 -111091,7109:245:4,-95.5,14.5,0,0,-0.13605 -111092,7109:245:3,-95,14.5,0,0,-0.13605 -111093,7109:144:4,-94.5,14.5,0,0,-0.13605 -111094,7109:144:3,-94,14.5,0,0,-0.13605 -111095,7109:143:4,-93.5,14.5,0,0,-0.13605 -111096,7109:143:3,-93,14.5,0,0,-0.13605 -111097,7109:142:4,-92.5,14.5,0,0,-0.13605 -111098,7109:142:3,-92,14.5,0,0,-0.13605 -111099,7109:141:4,-91.5,14.5,0,0,-0.13605 -111100,7109:141:3,-91,14.5,0,0,-0.13605 -111101,7109:140:4,-90.5,14.5,0,0,-0.13605 -111102,7109:140:3,-90,14.5,0,0,-0.13605 -111103,7108:249:4,-89.5,14.5,0,0,-0.13605 -111104,7108:249:3,-89,14.5,0,0,-0.13605 -111105,7108:248:4,-88.5,14.5,0,0,-0.13605 -111106,7108:248:3,-88,14.5,0,0,-0.145597 -111107,7108:247:4,-87.5,14.5,0,0,-0.169594 -111108,7108:247:3,-87,14.5,0,0,-0.176951 -111109,7108:246:4,-86.5,14.5,0,0,-0.165261 -111110,7108:246:3,-86,14.5,0,0,-0.160438 -111111,7108:245:4,-85.5,14.5,0,0,-0.162695 -111112,7108:245:3,-85,14.5,0,0,-0.170579 -111113,7108:144:4,-84.5,14.5,0,0,-0.154275 -111114,7108:144:3,-84,14.5,0,0,-0.13605 -111115,7108:143:4,-83.5,14.5,0,0,-0.13605 -111116,7108:143:3,-83,14.5,0,0,-0.13605 -111117,7108:142:4,-82.5,14.5,0,0,-0.13605 -111118,7108:142:3,-82,14.5,0,0,-0.13605 -111119,7108:141:4,-81.5,14.5,0,0,-0.13605 -111120,7108:141:3,-81,14.5,0,0,-0.13605 -111121,7108:140:4,-80.5,14.5,0,0,-0.13605 -111122,7108:140:3,-80,14.5,0,0,-0.142699 -111123,7107:249:4,-79.5,14.5,0,0,-0.157075 -111124,7107:249:3,-79,14.5,0,0,-0.13605 -111125,7107:248:4,-78.5,14.5,0,0,-0.13605 -111126,7107:247:4,-77.5,14.5,0,0,-0.145263 -111127,7107:247:3,-77,14.5,0,0,-0.13605 -111128,7107:246:4,-76.5,14.5,0,0,-0.144189 -111129,7107:246:3,-76,14.5,0,0,-0.147858 -111130,7107:245:4,-75.5,14.5,0,0,-0.147718 -111131,7107:245:3,-75,14.5,0,0,-0.145302 -111132,7107:144:4,-74.5,14.5,0,0,-0.142564 -111133,7107:144:3,-74,14.5,0,0,-0.139547 -111134,7107:143:4,-73.5,14.5,0,0,-0.138142 -111135,7107:143:3,-73,14.5,0,0,-0.141703 -111136,7107:142:4,-72.5,14.5,0,0,-0.142411 -111137,7107:142:3,-72,14.5,0,0,-0.140582 -111138,7107:141:4,-71.5,14.5,0,0,-0.13919 -111139,7107:141:3,-71,14.5,0,0,-0.138597 -111140,7107:140:4,-70.5,14.5,0,0,-0.139359 -111141,7107:140:3,-70,14.5,0,0,-0.138193 -111142,7106:249:4,-69.5,14.5,0,0,-0.136182 -111143,7106:249:3,-69,14.5,0,0,-0.136156 -111144,7106:248:4,-68.5,14.5,0,0,-0.137471 -111145,7106:248:3,-68,14.5,0,0,-0.138817 -111146,7106:247:4,-67.5,14.5,0,0,-0.138935 -111147,7106:247:3,-67,14.5,0,0,-0.138125 -111148,7106:246:4,-66.5,14.5,0,0,-0.137571 -111149,7106:246:3,-66,14.5,0,0,-0.137806 -111150,7106:245:4,-65.5,14.5,0,0,-0.138563 -111151,7106:245:3,-65,14.5,0,0,-0.139998 -111152,7106:144:4,-64.5,14.5,0,0,-0.139753 -111153,7106:144:3,-64,14.5,0,0,-0.138277 -111154,7106:143:4,-63.5,14.5,0,0,-0.137638 -111155,7106:143:3,-63,14.5,0,0,-0.137722 -111156,7106:142:4,-62.5,14.5,0,0,-0.138378 -111157,7106:142:3,-62,14.5,0,0,-0.138885 -111158,7106:141:4,-61.5,14.5,0,0,-0.138648 -111159,7106:141:3,-61,14.5,0,0,-0.138462 -111160,7106:140:4,-60.5,14.5,0,0,-0.137655 -111161,7106:140:3,-60,14.5,0,0,-0.136221 -111162,7105:249:4,-59.5,14.5,0,0,-0.136104 -111163,7105:249:3,-59,14.5,0,0,-0.136291 -111164,7105:248:4,-58.5,14.5,0,0,-0.13702 -111165,7105:248:3,-58,14.5,0,0,-0.137588 -111166,7105:247:4,-57.5,14.5,0,0,-0.138125 -111167,7105:247:3,-57,14.5,0,0,-0.139292 -111168,7105:246:4,-56.5,14.5,0,0,-0.140809 -111169,7105:246:3,-56,14.5,0,0,-0.142488 -111170,7105:245:4,-55.5,14.5,0,0,-0.144402 -111171,7105:245:3,-55,14.5,0,0,-0.146307 -111172,7105:144:4,-54.5,14.5,0,0,-0.146703 -111173,7105:144:3,-54,14.5,0,0,-0.14603 -111174,7105:143:4,-53.5,14.5,0,0,-0.145341 -111175,7105:143:3,-53,14.5,0,0,-0.14413 -111176,7105:142:4,-52.5,14.5,0,0,-0.142354 -111177,7105:142:3,-52,14.5,0,0,-0.140149 -111178,7105:141:4,-51.5,14.5,0,0,-0.137605 -111179,7105:141:3,-51,14.5,0,0,-0.137555 -111180,7105:140:4,-50.5,14.5,0,0,-0.13605 -111181,7105:140:3,-50,14.5,0,0,-0.13605 -111182,7104:249:4,-49.5,14.5,0,0,-0.13605 -111183,7104:249:3,-49,14.5,0,0,-0.13605 -111184,7104:248:4,-48.5,14.5,0,0,-0.13605 -111185,7104:248:3,-48,14.5,0,0,-0.13605 -111186,7104:247:4,-47.5,14.5,0,0,-0.13605 -111187,7104:247:3,-47,14.5,0,0,-0.13605 -111188,7104:246:4,-46.5,14.5,0,0,-0.13605 -111189,7104:246:3,-46,14.5,0,0,-0.13605 -111190,7104:245:4,-45.5,14.5,0,0,-0.13605 -111191,7104:245:3,-45,14.5,0,0,-0.13605 -111192,7104:144:4,-44.5,14.5,0,0,-0.13605 -111193,7104:144:3,-44,14.5,0,0,-0.13605 -111194,7104:143:4,-43.5,14.5,0,0,-0.13605 -111195,7104:143:3,-43,14.5,0,0,-0.13605 -111196,7104:142:4,-42.5,14.5,0,0,-0.13605 -111197,7104:142:3,-42,14.5,0,0,-0.13605 -111198,7104:141:4,-41.5,14.5,0,0,-0.13605 -111199,7104:141:3,-41,14.5,0,0,-0.13605 -111200,7104:140:4,-40.5,14.5,0,0,-0.13605 -111201,7104:140:3,-40,14.5,0,0,-0.13605 -111202,7103:249:4,-39.5,14.5,0,0,-0.13605 -111203,7103:249:3,-39,14.5,0,0,-0.13605 -111204,7103:248:4,-38.5,14.5,0,0,-0.13605 -111205,7103:248:3,-38,14.5,0,0,-0.13605 -111206,7103:247:4,-37.5,14.5,0,0,-0.13605 -111207,7103:247:3,-37,14.5,0,0,-0.13605 -111208,7103:246:4,-36.5,14.5,0,0,-0.13605 -111209,7103:246:3,-36,14.5,0,0,-0.13605 -111210,7103:245:4,-35.5,14.5,0,0,-0.13605 -111211,7103:245:3,-35,14.5,0,0,-0.13605 -111212,7103:144:4,-34.5,14.5,0,0,-0.13605 -111213,7103:144:3,-34,14.5,0,0,-0.13605 -111214,7103:143:4,-33.5,14.5,0,0,-0.13605 -111215,7103:143:3,-33,14.5,0,0,-0.13605 -111216,7103:142:4,-32.5,14.5,0,0,-0.13605 -111217,7103:142:3,-32,14.5,0,0,-0.13605 -111218,7103:141:4,-31.5,14.5,0,0,-0.13605 -111219,7103:141:3,-31,14.5,0,0,-0.13605 -111220,7103:140:4,-30.5,14.5,0,0,-0.13605 -111221,7103:140:3,-30,14.5,0,0,-0.13605 -111222,7102:249:4,-29.5,14.5,0,0,-0.13605 -111223,7102:249:3,-29,14.5,0,0,-0.13605 -111224,7102:248:4,-28.5,14.5,0,0,-0.13605 -111225,7102:248:3,-28,14.5,0,0,-0.13605 -111226,7102:247:4,-27.5,14.5,0,0,-0.13605 -111227,7102:247:3,-27,14.5,0,0,-0.13605 -111228,7102:246:4,-26.5,14.5,0,0,-0.13605 -111229,7102:246:3,-26,14.5,0,0,-0.13605 -111230,7102:245:4,-25.5,14.5,0,0,-0.13605 -111231,7102:245:3,-25,14.5,0,0,-0.13605 -111232,7102:144:4,-24.5,14.5,0,0,-0.13605 -111233,7102:144:3,-24,14.5,0,0,-0.13605 -111234,7102:143:4,-23.5,14.5,0,0,-0.13605 -111235,7102:143:3,-23,14.5,0,0,-0.13605 -111236,7102:142:4,-22.5,14.5,0,0,-0.13605 -111237,7102:142:3,-22,14.5,0,0,-0.13605 -111238,7102:141:4,-21.5,14.5,0,0,-0.13605 -111239,7102:141:3,-21,14.5,0,0,-0.13605 -111240,7102:140:4,-20.5,14.5,0,0,-0.13605 -111241,7102:140:3,-20,14.5,0,0,-0.13605 -111242,7101:249:4,-19.5,14.5,0,0,-0.13605 -111243,7101:249:3,-19,14.5,0,0,-0.13605 -111244,7101:248:4,-18.5,14.5,0,0,-0.13605 -111245,7101:248:3,-18,14.5,0,0,-0.13605 -111246,7101:247:4,-17.5,14.5,0,0,-0.13605 -111247,7101:247:3,-17,14.5,0,0,-0.13605 -111248,7101:246:4,-16.5,14.5,0,0,-0.13605 -111249,7101:246:3,-16,14.5,0,0,-0.13605 -111250,7101:245:4,-15.5,14.5,0,0,-0.13605 -111251,1103:245:3,35,14.5,0,0,-0.13605 -111252,1103:245:4,35.5,14.5,0,0,-0.148722 -111253,1103:246:3,36,14.5,0,0,-0.158346 -111254,1103:246:4,36.5,14.5,0,0,-0.164423 -111255,1105:141:4,51.5,14.5,0,0,-0.13605 -111256,1105:142:3,52,14.5,0,0,-0.13605 -111257,1105:142:4,52.5,14.5,0,0,-0.13605 -111258,1105:143:3,53,14.5,0,0,-0.13605 -111259,1105:143:4,53.5,14.5,0,0,-0.13605 -111260,1105:144:3,54,14.5,0,0,-0.13605 -111261,1105:144:4,54.5,14.5,0,0,-0.13605 -111262,1105:246:4,56.5,14.5,0,0,-0.13605 -111263,1105:247:3,57,14.5,0,0,-0.13605 -111264,1105:247:4,57.5,14.5,0,0,-0.13605 -111265,1105:248:3,58,14.5,0,0,-0.13605 -111266,1105:248:4,58.5,14.5,0,0,-0.13605 -111267,1105:249:3,59,14.5,0,0,-0.136787 -111268,1105:249:4,59.5,14.5,0,0,-0.138513 -111269,1106:140:3,60,14.5,0,0,-0.139453 -111270,1106:140:4,60.5,14.5,0,0,-0.139847 -111271,1106:141:3,61,14.5,0,0,-0.140488 -111272,1106:141:4,61.5,14.5,0,0,-0.141113 -111273,1106:142:3,62,14.5,0,0,-0.141379 -111274,1106:142:4,62.5,14.5,0,0,-0.141303 -111275,1106:143:3,63,14.5,0,0,-0.141132 -111276,1106:143:4,63.5,14.5,0,0,-0.140923 -111277,1106:144:3,64,14.5,0,0,-0.140904 -111278,1106:144:4,64.5,14.5,0,0,-0.141018 -111279,1106:245:3,65,14.5,0,0,-0.142162 -111280,1106:245:4,65.5,14.5,0,0,-0.141589 -111281,1106:246:3,66,14.5,0,0,-0.141208 -111282,1111:249:4,119.5,14.5,0,0,-0.13605 -111283,1112:140:3,120,14.5,0,0,-0.13605 -111284,1112:140:4,120.5,14.5,0,0,-0.13605 -111285,1112:141:3,121,14.5,0,0,-0.13605 -111286,1112:142:4,122.5,14.5,0,0,-0.13605 -111287,1112:143:3,123,14.5,0,0,-0.13605 -111288,1112:143:4,123.5,14.5,0,0,-0.13605 -111289,1112:144:3,124,14.5,0,0,-0.13605 -111290,1112:144:4,124.5,14.5,0,0,-0.13605 -111291,1112:245:3,125,14.5,0,0,-0.13605 -111292,1112:245:4,125.5,14.5,0,0,-0.13605 -111293,1112:246:3,126,14.5,0,0,-0.13605 -111294,1112:246:4,126.5,14.5,0,0,-0.13605 -111295,1112:247:3,127,14.5,0,0,-0.13605 -111296,1112:247:4,127.5,14.5,0,0,-0.13605 -111297,1112:248:3,128,14.5,0,0,-0.13605 -111298,1112:248:4,128.5,14.5,0,0,-0.13605 -111299,1112:249:3,129,14.5,0,0,-0.13605 -111300,1112:249:4,129.5,14.5,0,0,-0.13605 -111301,1113:140:3,130,14.5,0,0,-0.13605 -111302,1113:140:4,130.5,14.5,0,0,-0.13605 -111303,1113:141:3,131,14.5,0,0,-0.13605 -111304,1113:141:4,131.5,14.5,0,0,-0.13605 -111305,1113:142:3,132,14.5,0,0,-0.13605 -111306,1113:142:4,132.5,14.5,0,0,-0.13605 -111307,1113:143:3,133,14.5,0,0,-0.13605 -111308,1113:143:4,133.5,14.5,0,0,-0.13605 -111309,1113:144:3,134,14.5,0,0,-0.13605 -111310,1113:144:4,134.5,14.5,0,0,-0.13605 -111311,1113:245:3,135,14.5,0,0,-0.13605 -111312,1113:245:4,135.5,14.5,0,0,-0.13605 -111313,1113:246:3,136,14.5,0,0,-0.13605 -111314,1113:246:4,136.5,14.5,0,0,-0.13605 -111315,1113:247:3,137,14.5,0,0,-0.13605 -111316,1113:247:4,137.5,14.5,0,0,-0.13605 -111317,1113:248:3,138,14.5,0,0,-0.13605 -111318,1113:248:4,138.5,14.5,0,0,-0.13605 -111319,1113:249:3,139,14.5,0,0,-0.13605 -111320,1113:249:4,139.5,14.5,0,0,-0.13605 -111321,1114:140:3,140,14.5,0,0,-0.13605 -111322,1114:140:4,140.5,14.5,0,0,-0.13633 -111323,1114:141:3,141,14.5,0,0,-0.136136 -111324,1114:141:4,141.5,14.5,0,0,-0.13605 -111325,1114:142:3,142,14.5,0,0,-0.13605 -111326,1114:142:4,142.5,14.5,0,0,-0.136064 -111327,1114:143:3,143,14.5,0,0,-0.13702 -111328,1114:143:4,143.5,14.5,0,0,-0.139491 -111329,1114:144:3,144,14.5,0,0,-0.141627 -111330,1114:144:4,144.5,14.5,0,0,-0.142238 -111331,1114:245:3,145,14.5,0,0,-0.141417 -111332,1114:245:4,145.5,14.5,0,0,-0.140753 -111333,1114:246:3,146,14.5,0,0,-0.14245 -111334,1114:246:4,146.5,14.5,0,0,-0.14542 -111335,1114:247:3,147,14.5,0,0,-0.14848 -111336,1114:247:4,147.5,14.5,0,0,-0.150241 -111337,1114:248:3,148,14.5,0,0,-0.15067 -111338,1114:248:4,148.5,14.5,0,0,-0.150588 -111339,1114:249:3,149,14.5,0,0,-0.150691 -111340,1114:249:4,149.5,14.5,0,0,-0.150364 -111341,1115:140:3,150,14.5,0,0,-0.149388 -111342,1115:140:4,150.5,14.5,0,0,-0.147739 -111343,1115:141:3,151,14.5,0,0,-0.146148 -111344,1115:141:4,151.5,14.5,0,0,-0.145223 -111345,1115:142:3,152,14.5,0,0,-0.144969 -111346,1115:142:4,152.5,14.5,0,0,-0.144014 -111347,1115:143:3,153,14.5,0,0,-0.14199 -111348,1115:143:4,153.5,14.5,0,0,-0.140696 -111349,1115:144:3,154,14.5,0,0,-0.140715 -111350,1115:144:4,154.5,14.5,0,0,-0.142066 -111351,1115:245:3,155,14.5,0,0,-0.142622 -111352,1115:245:4,155.5,14.5,0,0,-0.142545 -111353,1115:246:3,156,14.5,0,0,-0.143161 -111354,1115:246:4,156.5,14.5,0,0,-0.144578 -111355,1115:247:3,157,14.5,0,0,-0.145518 -111356,1115:247:4,157.5,14.5,0,0,-0.145223 -111357,1115:248:3,158,14.5,0,0,-0.14378 -111358,1115:248:4,158.5,14.5,0,0,-0.142699 -111359,1115:249:3,159,14.5,0,0,-0.1422 -111360,1115:249:4,159.5,14.5,0,0,-0.141627 -111361,1116:140:3,160,14.5,0,0,-0.140375 -111362,1116:140:4,160.5,14.5,0,0,-0.138783 -111363,1116:141:3,161,14.5,0,0,-0.137739 -111364,1116:141:4,161.5,14.5,0,0,-0.137421 -111365,1116:142:3,162,14.5,0,0,-0.137571 -111366,1116:142:4,162.5,14.5,0,0,-0.137991 -111367,1116:143:3,163,14.5,0,0,-0.138125 -111368,1116:143:4,163.5,14.5,0,0,-0.13717 -111369,1116:144:3,164,14.5,0,0,-0.136176 -111370,1116:144:4,164.5,14.5,0,0,-0.136109 -111371,1116:245:3,165,14.5,0,0,-0.136692 -111372,1116:245:4,165.5,14.5,0,0,-0.139603 -111373,1116:246:3,166,14.5,0,0,-0.14197 -111374,1116:246:4,166.5,14.5,0,0,-0.140167 -111375,1116:247:3,167,14.5,0,0,-0.13727 -111376,1116:247:4,167.5,14.5,0,0,-0.136156 -111377,1116:248:3,168,14.5,0,0,-0.13605 -111378,1116:248:4,168.5,14.5,0,0,-0.13605 -111379,1116:249:3,169,14.5,0,0,-0.13902 -111380,1116:249:4,169.5,14.5,0,0,-0.142564 -111381,1117:140:3,170,14.5,0,0,-0.139139 -111382,1117:140:4,170.5,14.5,0,0,-0.13732 -111383,1117:141:3,171,14.5,0,0,-0.136615 -111384,1117:141:4,171.5,14.5,0,0,-0.136064 -111385,1117:142:3,172,14.5,0,0,-0.13605 -111386,1117:142:4,172.5,14.5,0,0,-0.13605 -111387,1117:143:3,173,14.5,0,0,-0.13605 -111388,1117:143:4,173.5,14.5,0,0,-0.13605 -111389,1117:144:3,174,14.5,0,0,-0.13605 -111390,1117:144:4,174.5,14.5,0,0,-0.13605 -111391,1117:245:3,175,14.5,0,0,-0.13605 -111392,1117:245:4,175.5,14.5,0,0,-0.13605 -111393,1117:246:3,176,14.5,0,0,-0.13605 -111394,1117:246:4,176.5,14.5,0,0,-0.13605 -111395,1117:247:3,177,14.5,0,0,-0.13605 -111396,1117:247:4,177.5,14.5,0,0,-0.13605 -111397,1117:248:3,178,14.5,0,0,-0.13605 -111398,1117:248:4,178.5,14.5,0,0,-0.13605 -111399,1117:249:3,179,14.5,0,0,-0.13605 -111400,1117:249:4,179.5,14.5,0,0,-0.13605 -111401,1118:140:3,180,14.5,0,0,-0.13605 -111402,7118:350:1,-180,15,0,0,-0.13605 -111403,7117:459:2,-179.5,15,0,0,-0.13605 -111404,7117:459:1,-179,15,0,0,-0.13605 -111405,7117:458:2,-178.5,15,0,0,-0.13605 -111406,7117:458:1,-178,15,0,0,-0.13605 -111407,7117:457:2,-177.5,15,0,0,-0.13605 -111408,7117:457:1,-177,15,0,0,-0.13605 -111409,7117:456:2,-176.5,15,0,0,-0.13605 -111410,7117:456:1,-176,15,0,0,-0.13605 -111411,7117:455:2,-175.5,15,0,0,-0.13605 -111412,7117:455:1,-175,15,0,0,-0.13605 -111413,7117:354:2,-174.5,15,0,0,-0.13605 -111414,7117:354:1,-174,15,0,0,-0.13605 -111415,7117:353:2,-173.5,15,0,0,-0.13605 -111416,7117:353:1,-173,15,0,0,-0.13605 -111417,7117:352:2,-172.5,15,0,0,-0.13605 -111418,7117:352:1,-172,15,0,0,-0.13605 -111419,7117:351:2,-171.5,15,0,0,-0.13605 -111420,7117:351:1,-171,15,0,0,-0.13605 -111421,7117:350:2,-170.5,15,0,0,-0.13605 -111422,7117:350:1,-170,15,0,0,-0.13605 -111423,7116:459:2,-169.5,15,0,0,-0.13605 -111424,7116:459:1,-169,15,0,0,-0.13605 -111425,7116:458:2,-168.5,15,0,0,-0.13605 -111426,7116:458:1,-168,15,0,0,-0.13605 -111427,7116:457:2,-167.5,15,0,0,-0.13605 -111428,7116:457:1,-167,15,0,0,-0.13605 -111429,7116:456:2,-166.5,15,0,0,-0.13605 -111430,7116:456:1,-166,15,0,0,-0.13605 -111431,7116:455:2,-165.5,15,0,0,-0.13605 -111432,7116:455:1,-165,15,0,0,-0.13605 -111433,7116:354:2,-164.5,15,0,0,-0.13605 -111434,7116:354:1,-164,15,0,0,-0.13605 -111435,7116:353:2,-163.5,15,0,0,-0.13605 -111436,7116:353:1,-163,15,0,0,-0.13605 -111437,7116:352:2,-162.5,15,0,0,-0.13605 -111438,7116:352:1,-162,15,0,0,-0.13605 -111439,7116:351:2,-161.5,15,0,0,-0.13605 -111440,7116:351:1,-161,15,0,0,-0.13605 -111441,7116:350:2,-160.5,15,0,0,-0.13605 -111442,7116:350:1,-160,15,0,0,-0.13605 -111443,7115:459:2,-159.5,15,0,0,-0.13605 -111444,7115:459:1,-159,15,0,0,-0.13605 -111445,7115:458:2,-158.5,15,0,0,-0.13605 -111446,7115:458:1,-158,15,0,0,-0.13605 -111447,7115:457:2,-157.5,15,0,0,-0.13605 -111448,7115:457:1,-157,15,0,0,-0.13605 -111449,7115:456:2,-156.5,15,0,0,-0.13605 -111450,7115:456:1,-156,15,0,0,-0.13605 -111451,7115:455:2,-155.5,15,0,0,-0.13605 -111452,7115:455:1,-155,15,0,0,-0.13605 -111453,7115:354:2,-154.5,15,0,0,-0.13605 -111454,7115:354:1,-154,15,0,0,-0.13605 -111455,7115:353:2,-153.5,15,0,0,-0.13605 -111456,7115:353:1,-153,15,0,0,-0.13605 -111457,7115:352:2,-152.5,15,0,0,-0.13605 -111458,7115:352:1,-152,15,0,0,-0.13605 -111459,7115:351:2,-151.5,15,0,0,-0.13605 -111460,7115:351:1,-151,15,0,0,-0.13605 -111461,7115:350:2,-150.5,15,0,0,-0.13605 -111462,7115:350:1,-150,15,0,0,-0.13605 -111463,7114:459:2,-149.5,15,0,0,-0.13605 -111464,7114:459:1,-149,15,0,0,-0.13605 -111465,7114:458:2,-148.5,15,0,0,-0.13605 -111466,7114:458:1,-148,15,0,0,-0.13605 -111467,7114:457:2,-147.5,15,0,0,-0.13605 -111468,7114:457:1,-147,15,0,0,-0.13605 -111469,7114:456:2,-146.5,15,0,0,-0.13605 -111470,7114:456:1,-146,15,0,0,-0.13605 -111471,7114:455:2,-145.5,15,0,0,-0.13605 -111472,7114:455:1,-145,15,0,0,-0.13605 -111473,7114:354:2,-144.5,15,0,0,-0.13605 -111474,7114:354:1,-144,15,0,0,-0.13605 -111475,7114:353:2,-143.5,15,0,0,-0.13605 -111476,7114:353:1,-143,15,0,0,-0.13605 -111477,7114:352:2,-142.5,15,0,0,-0.13605 -111478,7114:352:1,-142,15,0,0,-0.13605 -111479,7114:351:2,-141.5,15,0,0,-0.13605 -111480,7114:351:1,-141,15,0,0,-0.13605 -111481,7114:350:2,-140.5,15,0,0,-0.13605 -111482,7114:350:1,-140,15,0,0,-0.13605 -111483,7113:459:2,-139.5,15,0,0,-0.13605 -111484,7113:459:1,-139,15,0,0,-0.13605 -111485,7113:458:2,-138.5,15,0,0,-0.13605 -111486,7113:458:1,-138,15,0,0,-0.13605 -111487,7113:457:2,-137.5,15,0,0,-0.13605 -111488,7113:457:1,-137,15,0,0,-0.13605 -111489,7113:456:2,-136.5,15,0,0,-0.13605 -111490,7113:456:1,-136,15,0,0,-0.13605 -111491,7113:455:2,-135.5,15,0,0,-0.13605 -111492,7113:455:1,-135,15,0,0,-0.13605 -111493,7113:354:2,-134.5,15,0,0,-0.13605 -111494,7113:354:1,-134,15,0,0,-0.13605 -111495,7113:353:2,-133.5,15,0,0,-0.13605 -111496,7113:353:1,-133,15,0,0,-0.13605 -111497,7113:352:2,-132.5,15,0,0,-0.13605 -111498,7113:352:1,-132,15,0,0,-0.13605 -111499,7113:351:2,-131.5,15,0,0,-0.13605 -111500,7113:351:1,-131,15,0,0,-0.13605 -111501,7113:350:2,-130.5,15,0,0,-0.13605 -111502,7113:350:1,-130,15,0,0,-0.13605 -111503,7112:459:2,-129.5,15,0,0,-0.13605 -111504,7112:459:1,-129,15,0,0,-0.13605 -111505,7112:458:2,-128.5,15,0,0,-0.13605 -111506,7112:458:1,-128,15,0,0,-0.13605 -111507,7112:457:2,-127.5,15,0,0,-0.13605 -111508,7112:457:1,-127,15,0,0,-0.13605 -111509,7112:456:2,-126.5,15,0,0,-0.13605 -111510,7112:456:1,-126,15,0,0,-0.13605 -111511,7112:455:2,-125.5,15,0,0,-0.13605 -111512,7112:455:1,-125,15,0,0,-0.13605 -111513,7112:354:2,-124.5,15,0,0,-0.13605 -111514,7112:354:1,-124,15,0,0,-0.13605 -111515,7112:353:2,-123.5,15,0,0,-0.13605 -111516,7112:353:1,-123,15,0,0,-0.13605 -111517,7112:352:2,-122.5,15,0,0,-0.13605 -111518,7112:352:1,-122,15,0,0,-0.13605 -111519,7112:351:2,-121.5,15,0,0,-0.13605 -111520,7112:351:1,-121,15,0,0,-0.13605 -111521,7112:350:2,-120.5,15,0,0,-0.13605 -111522,7112:350:1,-120,15,0,0,-0.13605 -111523,7111:459:2,-119.5,15,0,0,-0.13605 -111524,7111:459:1,-119,15,0,0,-0.13605 -111525,7111:458:2,-118.5,15,0,0,-0.13605 -111526,7111:458:1,-118,15,0,0,-0.13605 -111527,7111:457:2,-117.5,15,0,0,-0.13605 -111528,7111:457:1,-117,15,0,0,-0.13605 -111529,7111:456:2,-116.5,15,0,0,-0.13605 -111530,7111:456:1,-116,15,0,0,-0.13605 -111531,7111:455:2,-115.5,15,0,0,-0.13605 -111532,7111:455:1,-115,15,0,0,-0.13605 -111533,7111:354:2,-114.5,15,0,0,-0.13605 -111534,7111:354:1,-114,15,0,0,-0.13605 -111535,7111:353:2,-113.5,15,0,0,-0.13605 -111536,7111:353:1,-113,15,0,0,-0.13605 -111537,7111:352:2,-112.5,15,0,0,-0.13605 -111538,7111:351:1,-111,15,0,0,-0.13605 -111539,7111:350:2,-110.5,15,0,0,-0.13605 -111540,7111:350:1,-110,15,0,0,-0.13605 -111541,7110:459:2,-109.5,15,0,0,-0.13605 -111542,7109:457:1,-97,15,0,0,-0.13605 -111543,7109:456:2,-96.5,15,0,0,-0.13605 -111544,7109:456:1,-96,15,0,0,-0.13605 -111545,7109:455:2,-95.5,15,0,0,-0.13605 -111546,7109:455:1,-95,15,0,0,-0.13605 -111547,7109:354:2,-94.5,15,0,0,-0.13605 -111548,7109:354:1,-94,15,0,0,-0.13605 -111549,7109:353:2,-93.5,15,0,0,-0.13605 -111550,7109:353:1,-93,15,0,0,-0.13605 -111551,7109:352:2,-92.5,15,0,0,-0.13605 -111552,7109:352:1,-92,15,0,0,-0.13605 -111553,7109:351:2,-91.5,15,0,0,-0.13605 -111554,7109:351:1,-91,15,0,0,-0.13605 -111555,7109:350:2,-90.5,15,0,0,-0.13605 -111556,7109:350:1,-90,15,0,0,-0.13605 -111557,7108:459:2,-89.5,15,0,0,-0.13605 -111558,7108:459:1,-89,15,0,0,-0.13605 -111559,7108:458:2,-88.5,15,0,0,-0.13605 -111560,7108:458:1,-88,15,0,0,-0.139343 -111561,7108:457:2,-87.5,15,0,0,-0.157183 -111562,7108:457:1,-87,15,0,0,-0.169033 -111563,7108:456:2,-86.5,15,0,0,-0.170579 -111564,7108:456:1,-86,15,0,0,-0.170556 -111565,7108:455:2,-85.5,15,0,0,-0.170814 -111566,7108:455:1,-85,15,0,0,-0.159279 -111567,7108:354:2,-84.5,15,0,0,-0.13605 -111568,7108:354:1,-84,15,0,0,-0.13605 -111569,7108:353:2,-83.5,15,0,0,-0.13605 -111570,7108:353:1,-83,15,0,0,-0.13605 -111571,7108:352:2,-82.5,15,0,0,-0.13605 -111572,7108:352:1,-82,15,0,0,-0.13605 -111573,7108:351:2,-81.5,15,0,0,-0.13605 -111574,7108:350:1,-80,15,0,0,-0.13981 -111575,7107:459:2,-79.5,15,0,0,-0.157033 -111576,7107:459:1,-79,15,0,0,-0.13605 -111577,7107:458:2,-78.5,15,0,0,-0.13605 -111578,7107:458:1,-78,15,0,0,-0.13605 -111579,7107:457:2,-77.5,15,0,0,-0.150384 -111580,7107:457:1,-77,15,0,0,-0.150099 -111581,7107:456:2,-76.5,15,0,0,-0.149469 -111582,7107:456:1,-76,15,0,0,-0.144754 -111583,7107:455:2,-75.5,15,0,0,-0.143819 -111584,7107:455:1,-75,15,0,0,-0.14243 -111585,7107:354:2,-74.5,15,0,0,-0.138429 -111586,7107:354:1,-74,15,0,0,-0.136151 -111587,7107:353:2,-73.5,15,0,0,-0.136094 -111588,7107:353:1,-73,15,0,0,-0.137722 -111589,7107:352:2,-72.5,15,0,0,-0.136837 -111590,7107:352:1,-72,15,0,0,-0.13605 -111591,7107:351:2,-71.5,15,0,0,-0.136051 -111592,7107:351:1,-71,15,0,0,-0.136356 -111593,7107:350:2,-70.5,15,0,0,-0.136202 -111594,7107:350:1,-70,15,0,0,-0.13605 -111595,7106:459:2,-69.5,15,0,0,-0.13605 -111596,7106:459:1,-69,15,0,0,-0.13605 -111597,7106:458:2,-68.5,15,0,0,-0.13605 -111598,7106:458:1,-68,15,0,0,-0.13605 -111599,7106:457:2,-67.5,15,0,0,-0.13605 -111600,7106:457:1,-67,15,0,0,-0.13605 -111601,7106:456:2,-66.5,15,0,0,-0.13605 -111602,7106:456:1,-66,15,0,0,-0.13605 -111603,7106:455:2,-65.5,15,0,0,-0.136076 -111604,7106:455:1,-65,15,0,0,-0.136485 -111605,7106:354:2,-64.5,15,0,0,-0.136151 -111606,7106:354:1,-64,15,0,0,-0.13605 -111607,7106:353:2,-63.5,15,0,0,-0.13605 -111608,7106:353:1,-63,15,0,0,-0.13605 -111609,7106:352:2,-62.5,15,0,0,-0.136159 -111610,7106:352:1,-62,15,0,0,-0.136602 -111611,7106:351:2,-61.5,15,0,0,-0.136156 -111612,7106:351:1,-61,15,0,0,-0.13605 -111613,7106:350:2,-60.5,15,0,0,-0.13605 -111614,7106:350:1,-60,15,0,0,-0.13605 -111615,7105:459:2,-59.5,15,0,0,-0.13605 -111616,7105:459:1,-59,15,0,0,-0.13605 -111617,7105:458:2,-58.5,15,0,0,-0.13605 -111618,7105:458:1,-58,15,0,0,-0.13605 -111619,7105:457:2,-57.5,15,0,0,-0.136987 -111620,7105:457:1,-57,15,0,0,-0.139434 -111621,7105:456:2,-56.5,15,0,0,-0.140658 -111622,7105:456:1,-56,15,0,0,-0.141379 -111623,7105:455:2,-55.5,15,0,0,-0.142105 -111624,7105:455:1,-55,15,0,0,-0.142622 -111625,7105:354:2,-54.5,15,0,0,-0.142392 -111626,7105:354:1,-54,15,0,0,-0.141113 -111627,7105:353:2,-53.5,15,0,0,-0.140337 -111628,7105:353:1,-53,15,0,0,-0.140867 -111629,7105:352:2,-52.5,15,0,0,-0.140582 -111630,7105:352:1,-52,15,0,0,-0.136164 -111631,7105:351:2,-51.5,15,0,0,-0.13605 -111632,7105:351:1,-51,15,0,0,-0.13605 -111633,7105:350:2,-50.5,15,0,0,-0.13605 -111634,7105:350:1,-50,15,0,0,-0.13605 -111635,7104:459:2,-49.5,15,0,0,-0.13605 -111636,7104:459:1,-49,15,0,0,-0.13605 -111637,7104:458:2,-48.5,15,0,0,-0.13605 -111638,7104:458:1,-48,15,0,0,-0.13605 -111639,7104:457:2,-47.5,15,0,0,-0.13605 -111640,7104:457:1,-47,15,0,0,-0.13605 -111641,7104:456:2,-46.5,15,0,0,-0.13605 -111642,7104:456:1,-46,15,0,0,-0.13605 -111643,7104:455:2,-45.5,15,0,0,-0.13605 -111644,7104:455:1,-45,15,0,0,-0.13605 -111645,7104:354:2,-44.5,15,0,0,-0.13605 -111646,7104:354:1,-44,15,0,0,-0.13605 -111647,7104:353:2,-43.5,15,0,0,-0.13605 -111648,7104:353:1,-43,15,0,0,-0.13605 -111649,7104:352:2,-42.5,15,0,0,-0.13605 -111650,7104:352:1,-42,15,0,0,-0.13605 -111651,7104:351:2,-41.5,15,0,0,-0.13605 -111652,7104:351:1,-41,15,0,0,-0.13605 -111653,7104:350:2,-40.5,15,0,0,-0.13605 -111654,7104:350:1,-40,15,0,0,-0.13605 -111655,7103:459:2,-39.5,15,0,0,-0.13605 -111656,7103:459:1,-39,15,0,0,-0.13605 -111657,7103:458:2,-38.5,15,0,0,-0.13605 -111658,7103:458:1,-38,15,0,0,-0.13605 -111659,7103:457:2,-37.5,15,0,0,-0.13605 -111660,7103:457:1,-37,15,0,0,-0.13605 -111661,7103:456:2,-36.5,15,0,0,-0.13605 -111662,7103:456:1,-36,15,0,0,-0.13605 -111663,7103:455:2,-35.5,15,0,0,-0.13605 -111664,7103:455:1,-35,15,0,0,-0.13605 -111665,7103:354:2,-34.5,15,0,0,-0.13605 -111666,7103:354:1,-34,15,0,0,-0.13605 -111667,7103:353:2,-33.5,15,0,0,-0.13605 -111668,7103:353:1,-33,15,0,0,-0.13605 -111669,7103:352:2,-32.5,15,0,0,-0.13605 -111670,7103:352:1,-32,15,0,0,-0.13605 -111671,7103:351:2,-31.5,15,0,0,-0.13605 -111672,7103:351:1,-31,15,0,0,-0.13605 -111673,7103:350:2,-30.5,15,0,0,-0.13605 -111674,7103:350:1,-30,15,0,0,-0.13605 -111675,7102:459:2,-29.5,15,0,0,-0.13605 -111676,7102:459:1,-29,15,0,0,-0.13605 -111677,7102:458:2,-28.5,15,0,0,-0.13605 -111678,7102:458:1,-28,15,0,0,-0.13605 -111679,7102:457:2,-27.5,15,0,0,-0.13605 -111680,7102:457:1,-27,15,0,0,-0.13605 -111681,7102:456:2,-26.5,15,0,0,-0.13605 -111682,7102:456:1,-26,15,0,0,-0.13605 -111683,7102:455:2,-25.5,15,0,0,-0.13605 -111684,7102:455:1,-25,15,0,0,-0.13605 -111685,7102:354:2,-24.5,15,0,0,-0.13605 -111686,7102:354:1,-24,15,0,0,-0.13605 -111687,7102:353:2,-23.5,15,0,0,-0.13605 -111688,7102:353:1,-23,15,0,0,-0.13605 -111689,7102:352:2,-22.5,15,0,0,-0.13605 -111690,7102:352:1,-22,15,0,0,-0.13605 -111691,7102:351:2,-21.5,15,0,0,-0.13605 -111692,7102:351:1,-21,15,0,0,-0.13605 -111693,7102:350:2,-20.5,15,0,0,-0.13605 -111694,7102:350:1,-20,15,0,0,-0.13605 -111695,7101:459:2,-19.5,15,0,0,-0.13605 -111696,7101:459:1,-19,15,0,0,-0.13605 -111697,7101:458:2,-18.5,15,0,0,-0.13605 -111698,7101:458:1,-18,15,0,0,-0.13605 -111699,7101:457:2,-17.5,15,0,0,-0.13605 -111700,7101:457:1,-17,15,0,0,-0.13605 -111701,7101:456:2,-16.5,15,0,0,-0.13605 -111702,7101:456:1,-16,15,0,0,-0.13605 -111703,7101:455:2,-15.5,15,0,0,-0.13605 -111704,7101:455:1,-15,15,0,0,-0.13605 -111705,1103:354:2,34.5,15,0,0,-0.13605 -111706,1103:455:1,35,15,0,0,-0.13605 -111707,1103:455:2,35.5,15,0,0,-0.145853 -111708,1103:456:1,36,15,0,0,-0.153459 -111709,1103:456:2,36.5,15,0,0,-0.13605 -111710,1105:350:2,50.5,15,0,0,-0.13605 -111711,1105:351:2,51.5,15,0,0,-0.13605 -111712,1105:352:1,52,15,0,0,-0.13605 -111713,1105:352:2,52.5,15,0,0,-0.13605 -111714,1105:353:1,53,15,0,0,-0.13605 -111715,1105:353:2,53.5,15,0,0,-0.13605 -111716,1105:354:1,54,15,0,0,-0.13605 -111717,1105:354:2,54.5,15,0,0,-0.13605 -111718,1105:455:1,55,15,0,0,-0.13605 -111719,1105:456:2,56.5,15,0,0,-0.13605 -111720,1105:457:1,57,15,0,0,-0.13605 -111721,1105:457:2,57.5,15,0,0,-0.13605 -111722,1105:458:1,58,15,0,0,-0.13605 -111723,1105:458:2,58.5,15,0,0,-0.13605 -111724,1112:350:1,120,15,0,0,-0.13605 -111725,1112:350:2,120.5,15,0,0,-0.13605 -111726,1112:351:1,121,15,0,0,-0.13605 -111727,1112:351:2,121.5,15,0,0,-0.13605 -111728,1112:352:1,122,15,0,0,-0.13605 -111729,1112:352:2,122.5,15,0,0,-0.13605 -111730,1112:353:1,123,15,0,0,-0.13605 -111731,1112:353:2,123.5,15,0,0,-0.13605 -111732,1112:354:1,124,15,0,0,-0.13605 -111733,1112:354:2,124.5,15,0,0,-0.13605 -111734,1112:455:1,125,15,0,0,-0.13605 -111735,1112:455:2,125.5,15,0,0,-0.13605 -111736,1112:456:1,126,15,0,0,-0.13605 -111737,1112:456:2,126.5,15,0,0,-0.13605 -111738,1112:457:1,127,15,0,0,-0.13605 -111739,1112:457:2,127.5,15,0,0,-0.13605 -111740,1112:458:1,128,15,0,0,-0.13605 -111741,1112:458:2,128.5,15,0,0,-0.13605 -111742,1112:459:1,129,15,0,0,-0.13605 -111743,1112:459:2,129.5,15,0,0,-0.13605 -111744,1113:350:1,130,15,0,0,-0.13605 -111745,1113:350:2,130.5,15,0,0,-0.13605 -111746,1113:351:1,131,15,0,0,-0.13605 -111747,1113:351:2,131.5,15,0,0,-0.13605 -111748,1113:352:1,132,15,0,0,-0.13605 -111749,1113:352:2,132.5,15,0,0,-0.13605 -111750,1113:353:1,133,15,0,0,-0.13605 -111751,1113:353:2,133.5,15,0,0,-0.13605 -111752,1113:354:1,134,15,0,0,-0.13605 -111753,1113:354:2,134.5,15,0,0,-0.13605 -111754,1113:455:1,135,15,0,0,-0.13605 -111755,1113:455:2,135.5,15,0,0,-0.13605 -111756,1113:456:1,136,15,0,0,-0.13605 -111757,1113:456:2,136.5,15,0,0,-0.13605 -111758,1113:457:1,137,15,0,0,-0.13605 -111759,1113:457:2,137.5,15,0,0,-0.13605 -111760,1113:458:1,138,15,0,0,-0.13605 -111761,1113:458:2,138.5,15,0,0,-0.13605 -111762,1113:459:1,139,15,0,0,-0.13605 -111763,1113:459:2,139.5,15,0,0,-0.13605 -111764,1114:350:1,140,15,0,0,-0.13605 -111765,1114:350:2,140.5,15,0,0,-0.13605 -111766,1114:351:1,141,15,0,0,-0.13605 -111767,1114:351:2,141.5,15,0,0,-0.13605 -111768,1114:352:1,142,15,0,0,-0.13605 -111769,1114:352:2,142.5,15,0,0,-0.13605 -111770,1114:353:1,143,15,0,0,-0.13605 -111771,1114:353:2,143.5,15,0,0,-0.13605 -111772,1114:354:1,144,15,0,0,-0.13605 -111773,1114:354:2,144.5,15,0,0,-0.13605 -111774,1114:455:1,145,15,0,0,-0.13605 -111775,1114:455:2,145.5,15,0,0,-0.13605 -111776,1114:456:1,146,15,0,0,-0.136524 -111777,1114:456:2,146.5,15,0,0,-0.139292 -111778,1114:457:1,147,15,0,0,-0.141741 -111779,1114:457:2,147.5,15,0,0,-0.144714 -111780,1114:458:1,148,15,0,0,-0.146129 -111781,1114:458:2,148.5,15,0,0,-0.146069 -111782,1114:459:1,149,15,0,0,-0.145322 -111783,1114:459:2,149.5,15,0,0,-0.144227 -111784,1115:350:1,150,15,0,0,-0.142526 -111785,1115:350:2,150.5,15,0,0,-0.140394 -111786,1115:351:1,151,15,0,0,-0.138429 -111787,1115:351:2,151.5,15,0,0,-0.137521 -111788,1115:352:1,152,15,0,0,-0.137204 -111789,1115:352:2,152.5,15,0,0,-0.138733 -111790,1115:353:1,153,15,0,0,-0.138851 -111791,1115:353:2,153.5,15,0,0,-0.137237 -111792,1115:354:1,154,15,0,0,-0.137588 -111793,1115:354:2,154.5,15,0,0,-0.13707 -111794,1115:455:1,155,15,0,0,-0.137421 -111795,1115:455:2,155.5,15,0,0,-0.138277 -111796,1115:456:1,156,15,0,0,-0.138682 -111797,1115:456:2,156.5,15,0,0,-0.138935 -111798,1115:457:1,157,15,0,0,-0.139326 -111799,1115:457:2,157.5,15,0,0,-0.139491 -111800,1115:458:1,158,15,0,0,-0.13875 -111801,1115:458:2,158.5,15,0,0,-0.13717 -111802,1115:459:1,159,15,0,0,-0.136121 -111803,1115:459:2,159.5,15,0,0,-0.13605 -111804,1116:350:1,160,15,0,0,-0.13605 -111805,1116:350:2,160.5,15,0,0,-0.13605 -111806,1116:351:1,161,15,0,0,-0.13605 -111807,1116:351:2,161.5,15,0,0,-0.13605 -111808,1116:352:1,162,15,0,0,-0.13605 -111809,1116:352:2,162.5,15,0,0,-0.13605 -111810,1116:353:1,163,15,0,0,-0.13605 -111811,1116:353:2,163.5,15,0,0,-0.13605 -111812,1116:354:1,164,15,0,0,-0.13605 -111813,1116:354:2,164.5,15,0,0,-0.13605 -111814,1116:455:1,165,15,0,0,-0.13605 -111815,1116:455:2,165.5,15,0,0,-0.13605 -111816,1116:456:1,166,15,0,0,-0.136679 -111817,1116:456:2,166.5,15,0,0,-0.137873 -111818,1116:457:1,167,15,0,0,-0.13677 -111819,1116:457:2,167.5,15,0,0,-0.136059 -111820,1116:458:1,168,15,0,0,-0.13605 -111821,1116:458:2,168.5,15,0,0,-0.13605 -111822,1116:459:1,169,15,0,0,-0.13605 -111823,1116:459:2,169.5,15,0,0,-0.136139 -111824,1117:350:1,170,15,0,0,-0.13605 -111825,1117:350:2,170.5,15,0,0,-0.13605 -111826,1117:351:1,171,15,0,0,-0.13605 -111827,1117:351:2,171.5,15,0,0,-0.13605 -111828,1117:352:1,172,15,0,0,-0.13605 -111829,1117:352:2,172.5,15,0,0,-0.13605 -111830,1117:353:1,173,15,0,0,-0.13605 -111831,1117:353:2,173.5,15,0,0,-0.13605 -111832,1117:354:1,174,15,0,0,-0.13605 -111833,1117:354:2,174.5,15,0,0,-0.13605 -111834,1117:455:1,175,15,0,0,-0.13605 -111835,1117:455:2,175.5,15,0,0,-0.13605 -111836,1117:456:1,176,15,0,0,-0.13605 -111837,1117:456:2,176.5,15,0,0,-0.13605 -111838,1117:457:1,177,15,0,0,-0.13605 -111839,1117:457:2,177.5,15,0,0,-0.13605 -111840,1117:458:1,178,15,0,0,-0.13605 -111841,1117:458:2,178.5,15,0,0,-0.13605 -111842,1117:459:1,179,15,0,0,-0.13605 -111843,1117:459:2,179.5,15,0,0,-0.13605 -111844,1118:350:1,180,15,0,0,-0.13605 -111845,7118:350:3,-180,15.5,0,0,-0.13605 -111846,7117:459:4,-179.5,15.5,0,0,-0.13605 -111847,7117:459:3,-179,15.5,0,0,-0.13605 -111848,7117:458:4,-178.5,15.5,0,0,-0.13605 -111849,7117:458:3,-178,15.5,0,0,-0.13605 -111850,7117:457:4,-177.5,15.5,0,0,-0.13605 -111851,7117:457:3,-177,15.5,0,0,-0.13605 -111852,7117:456:4,-176.5,15.5,0,0,-0.13605 -111853,7117:456:3,-176,15.5,0,0,-0.13605 -111854,7117:455:4,-175.5,15.5,0,0,-0.13605 -111855,7117:455:3,-175,15.5,0,0,-0.13605 -111856,7117:354:4,-174.5,15.5,0,0,-0.13605 -111857,7117:354:3,-174,15.5,0,0,-0.13605 -111858,7117:353:4,-173.5,15.5,0,0,-0.13605 -111859,7117:353:3,-173,15.5,0,0,-0.13605 -111860,7117:352:4,-172.5,15.5,0,0,-0.13605 -111861,7117:352:3,-172,15.5,0,0,-0.13605 -111862,7117:351:4,-171.5,15.5,0,0,-0.13605 -111863,7117:351:3,-171,15.5,0,0,-0.13605 -111864,7117:350:4,-170.5,15.5,0,0,-0.13605 -111865,7117:350:3,-170,15.5,0,0,-0.13605 -111866,7116:459:4,-169.5,15.5,0,0,-0.13605 -111867,7116:459:3,-169,15.5,0,0,-0.13605 -111868,7116:458:4,-168.5,15.5,0,0,-0.13605 -111869,7116:458:3,-168,15.5,0,0,-0.13605 -111870,7116:457:4,-167.5,15.5,0,0,-0.13605 -111871,7116:457:3,-167,15.5,0,0,-0.13605 -111872,7116:456:4,-166.5,15.5,0,0,-0.13605 -111873,7116:456:3,-166,15.5,0,0,-0.13605 -111874,7116:455:4,-165.5,15.5,0,0,-0.13605 -111875,7116:455:3,-165,15.5,0,0,-0.13605 -111876,7116:354:4,-164.5,15.5,0,0,-0.13605 -111877,7116:354:3,-164,15.5,0,0,-0.13605 -111878,7116:353:4,-163.5,15.5,0,0,-0.13605 -111879,7116:353:3,-163,15.5,0,0,-0.13605 -111880,7116:352:4,-162.5,15.5,0,0,-0.13605 -111881,7116:352:3,-162,15.5,0,0,-0.13605 -111882,7116:351:4,-161.5,15.5,0,0,-0.13605 -111883,7116:351:3,-161,15.5,0,0,-0.13605 -111884,7116:350:4,-160.5,15.5,0,0,-0.13605 -111885,7116:350:3,-160,15.5,0,0,-0.13605 -111886,7115:459:4,-159.5,15.5,0,0,-0.13605 -111887,7115:459:3,-159,15.5,0,0,-0.13605 -111888,7115:458:4,-158.5,15.5,0,0,-0.13605 -111889,7115:458:3,-158,15.5,0,0,-0.13605 -111890,7115:457:4,-157.5,15.5,0,0,-0.13605 -111891,7115:457:3,-157,15.5,0,0,-0.13605 -111892,7115:456:4,-156.5,15.5,0,0,-0.13605 -111893,7115:456:3,-156,15.5,0,0,-0.13605 -111894,7115:455:4,-155.5,15.5,0,0,-0.13605 -111895,7115:455:3,-155,15.5,0,0,-0.13605 -111896,7115:354:4,-154.5,15.5,0,0,-0.13605 -111897,7115:354:3,-154,15.5,0,0,-0.13605 -111898,7115:353:4,-153.5,15.5,0,0,-0.13605 -111899,7115:353:3,-153,15.5,0,0,-0.13605 -111900,7115:352:4,-152.5,15.5,0,0,-0.13605 -111901,7115:352:3,-152,15.5,0,0,-0.13605 -111902,7115:351:4,-151.5,15.5,0,0,-0.13605 -111903,7115:351:3,-151,15.5,0,0,-0.13605 -111904,7115:350:4,-150.5,15.5,0,0,-0.13605 -111905,7115:350:3,-150,15.5,0,0,-0.13605 -111906,7114:459:4,-149.5,15.5,0,0,-0.13605 -111907,7114:459:3,-149,15.5,0,0,-0.13605 -111908,7114:458:4,-148.5,15.5,0,0,-0.13605 -111909,7114:458:3,-148,15.5,0,0,-0.13605 -111910,7114:457:4,-147.5,15.5,0,0,-0.13605 -111911,7114:457:3,-147,15.5,0,0,-0.13605 -111912,7114:456:4,-146.5,15.5,0,0,-0.13605 -111913,7114:456:3,-146,15.5,0,0,-0.13605 -111914,7114:455:4,-145.5,15.5,0,0,-0.13605 -111915,7114:455:3,-145,15.5,0,0,-0.13605 -111916,7114:354:4,-144.5,15.5,0,0,-0.13605 -111917,7114:354:3,-144,15.5,0,0,-0.13605 -111918,7114:353:4,-143.5,15.5,0,0,-0.13605 -111919,7114:353:3,-143,15.5,0,0,-0.13605 -111920,7114:352:4,-142.5,15.5,0,0,-0.13605 -111921,7114:352:3,-142,15.5,0,0,-0.13605 -111922,7114:351:4,-141.5,15.5,0,0,-0.13605 -111923,7114:351:3,-141,15.5,0,0,-0.13605 -111924,7114:350:4,-140.5,15.5,0,0,-0.13605 -111925,7114:350:3,-140,15.5,0,0,-0.13605 -111926,7113:459:4,-139.5,15.5,0,0,-0.13605 -111927,7113:459:3,-139,15.5,0,0,-0.13605 -111928,7113:458:4,-138.5,15.5,0,0,-0.13605 -111929,7113:458:3,-138,15.5,0,0,-0.13605 -111930,7113:457:4,-137.5,15.5,0,0,-0.13605 -111931,7113:457:3,-137,15.5,0,0,-0.13605 -111932,7113:456:4,-136.5,15.5,0,0,-0.13605 -111933,7113:456:3,-136,15.5,0,0,-0.13605 -111934,7113:455:4,-135.5,15.5,0,0,-0.13605 -111935,7113:455:3,-135,15.5,0,0,-0.13605 -111936,7113:354:4,-134.5,15.5,0,0,-0.13605 -111937,7113:354:3,-134,15.5,0,0,-0.13605 -111938,7113:353:4,-133.5,15.5,0,0,-0.13605 -111939,7113:353:3,-133,15.5,0,0,-0.13605 -111940,7113:352:4,-132.5,15.5,0,0,-0.13605 -111941,7113:352:3,-132,15.5,0,0,-0.13605 -111942,7113:351:4,-131.5,15.5,0,0,-0.13605 -111943,7113:351:3,-131,15.5,0,0,-0.13605 -111944,7113:350:4,-130.5,15.5,0,0,-0.13605 -111945,7113:350:3,-130,15.5,0,0,-0.13605 -111946,7112:459:4,-129.5,15.5,0,0,-0.13605 -111947,7112:459:3,-129,15.5,0,0,-0.13605 -111948,7112:458:4,-128.5,15.5,0,0,-0.13605 -111949,7112:458:3,-128,15.5,0,0,-0.13605 -111950,7112:457:4,-127.5,15.5,0,0,-0.13605 -111951,7112:457:3,-127,15.5,0,0,-0.13605 -111952,7112:456:4,-126.5,15.5,0,0,-0.13605 -111953,7112:456:3,-126,15.5,0,0,-0.13605 -111954,7112:455:4,-125.5,15.5,0,0,-0.13605 -111955,7112:455:3,-125,15.5,0,0,-0.13605 -111956,7112:354:4,-124.5,15.5,0,0,-0.13605 -111957,7112:354:3,-124,15.5,0,0,-0.13605 -111958,7112:353:4,-123.5,15.5,0,0,-0.13605 -111959,7112:353:3,-123,15.5,0,0,-0.13605 -111960,7112:352:4,-122.5,15.5,0,0,-0.13605 -111961,7112:352:3,-122,15.5,0,0,-0.13605 -111962,7112:351:4,-121.5,15.5,0,0,-0.13605 -111963,7112:351:3,-121,15.5,0,0,-0.13605 -111964,7112:350:4,-120.5,15.5,0,0,-0.13605 -111965,7112:350:3,-120,15.5,0,0,-0.13605 -111966,7111:459:4,-119.5,15.5,0,0,-0.13605 -111967,7111:459:3,-119,15.5,0,0,-0.13605 -111968,7111:458:4,-118.5,15.5,0,0,-0.13605 -111969,7111:458:3,-118,15.5,0,0,-0.13605 -111970,7111:457:4,-117.5,15.5,0,0,-0.13605 -111971,7111:457:3,-117,15.5,0,0,-0.13605 -111972,7111:456:4,-116.5,15.5,0,0,-0.13605 -111973,7111:456:3,-116,15.5,0,0,-0.13605 -111974,7111:455:4,-115.5,15.5,0,0,-0.13605 -111975,7111:455:3,-115,15.5,0,0,-0.13605 -111976,7111:354:4,-114.5,15.5,0,0,-0.13605 -111977,7111:354:3,-114,15.5,0,0,-0.13605 -111978,7111:353:4,-113.5,15.5,0,0,-0.13605 -111979,7111:353:3,-113,15.5,0,0,-0.13605 -111980,7111:352:4,-112.5,15.5,0,0,-0.13605 -111981,7111:351:3,-111,15.5,0,0,-0.13605 -111982,7111:350:4,-110.5,15.5,0,0,-0.13605 -111983,7111:350:3,-110,15.5,0,0,-0.13605 -111984,7110:459:4,-109.5,15.5,0,0,-0.13605 -111985,7109:457:3,-97,15.5,0,0,-0.13605 -111986,7109:456:4,-96.5,15.5,0,0,-0.13605 -111987,7109:456:3,-96,15.5,0,0,-0.13605 -111988,7109:455:4,-95.5,15.5,0,0,-0.13605 -111989,7109:455:3,-95,15.5,0,0,-0.13605 -111990,7109:354:4,-94.5,15.5,0,0,-0.13605 -111991,7109:354:3,-94,15.5,0,0,-0.13605 -111992,7109:353:4,-93.5,15.5,0,0,-0.13605 -111993,7109:353:3,-93,15.5,0,0,-0.13605 -111994,7109:352:4,-92.5,15.5,0,0,-0.13605 -111995,7109:352:3,-92,15.5,0,0,-0.13605 -111996,7109:351:4,-91.5,15.5,0,0,-0.13605 -111997,7109:351:3,-91,15.5,0,0,-0.13605 -111998,7109:350:4,-90.5,15.5,0,0,-0.13605 -111999,7109:350:3,-90,15.5,0,0,-0.13605 -112000,7108:459:4,-89.5,15.5,0,0,-0.13605 -112001,7108:459:3,-89,15.5,0,0,-0.13605 -112002,7108:458:4,-88.5,15.5,0,0,-0.13605 -112003,7108:458:3,-88,15.5,0,0,-0.13605 -112004,7108:457:4,-87.5,15.5,0,0,-0.13605 -112005,7108:457:3,-87,15.5,0,0,-0.141094 -112006,7108:456:4,-86.5,15.5,0,0,-0.14848 -112007,7108:456:3,-86,15.5,0,0,-0.147419 -112008,7108:455:4,-85.5,15.5,0,0,-0.136602 -112009,7108:455:3,-85,15.5,0,0,-0.13605 -112010,7108:354:4,-84.5,15.5,0,0,-0.13605 -112011,7108:354:3,-84,15.5,0,0,-0.13605 -112012,7108:353:4,-83.5,15.5,0,0,-0.13605 -112013,7108:353:3,-83,15.5,0,0,-0.13605 -112014,7108:352:4,-82.5,15.5,0,0,-0.13605 -112015,7108:352:3,-82,15.5,0,0,-0.13605 -112016,7108:350:3,-80,15.5,0,0,-0.139678 -112017,7107:459:4,-79.5,15.5,0,0,-0.15417 -112018,7107:459:3,-79,15.5,0,0,-0.153668 -112019,7107:458:4,-78.5,15.5,0,0,-0.152668 -112020,7107:458:3,-78,15.5,0,0,-0.151264 -112021,7107:457:4,-77.5,15.5,0,0,-0.13605 -112022,7107:457:3,-77,15.5,0,0,-0.13605 -112023,7107:456:4,-76.5,15.5,0,0,-0.13605 -112024,7107:456:3,-76,15.5,0,0,-0.13605 -112025,7107:455:4,-75.5,15.5,0,0,-0.13605 -112026,7107:455:3,-75,15.5,0,0,-0.13605 -112027,7107:354:4,-74.5,15.5,0,0,-0.13605 -112028,7107:354:3,-74,15.5,0,0,-0.13605 -112029,7107:353:4,-73.5,15.5,0,0,-0.13605 -112030,7107:353:3,-73,15.5,0,0,-0.13605 -112031,7107:352:4,-72.5,15.5,0,0,-0.13605 -112032,7107:352:3,-72,15.5,0,0,-0.13605 -112033,7107:351:4,-71.5,15.5,0,0,-0.13605 -112034,7107:351:3,-71,15.5,0,0,-0.13605 -112035,7107:350:4,-70.5,15.5,0,0,-0.13605 -112036,7107:350:3,-70,15.5,0,0,-0.13605 -112037,7106:459:4,-69.5,15.5,0,0,-0.13605 -112038,7106:459:3,-69,15.5,0,0,-0.13605 -112039,7106:458:4,-68.5,15.5,0,0,-0.13605 -112040,7106:458:3,-68,15.5,0,0,-0.13605 -112041,7106:457:4,-67.5,15.5,0,0,-0.13605 -112042,7106:457:3,-67,15.5,0,0,-0.13605 -112043,7106:456:4,-66.5,15.5,0,0,-0.13605 -112044,7106:456:3,-66,15.5,0,0,-0.13605 -112045,7106:455:4,-65.5,15.5,0,0,-0.13605 -112046,7106:455:3,-65,15.5,0,0,-0.13605 -112047,7106:354:4,-64.5,15.5,0,0,-0.13605 -112048,7106:354:3,-64,15.5,0,0,-0.13605 -112049,7106:353:4,-63.5,15.5,0,0,-0.13605 -112050,7106:353:3,-63,15.5,0,0,-0.13605 -112051,7106:352:4,-62.5,15.5,0,0,-0.13605 -112052,7106:352:3,-62,15.5,0,0,-0.13605 -112053,7106:351:4,-61.5,15.5,0,0,-0.13605 -112054,7106:351:3,-61,15.5,0,0,-0.13605 -112055,7106:350:4,-60.5,15.5,0,0,-0.13605 -112056,7106:350:3,-60,15.5,0,0,-0.13605 -112057,7105:459:4,-59.5,15.5,0,0,-0.13605 -112058,7105:459:3,-59,15.5,0,0,-0.13605 -112059,7105:458:4,-58.5,15.5,0,0,-0.13605 -112060,7105:458:3,-58,15.5,0,0,-0.13605 -112061,7105:457:4,-57.5,15.5,0,0,-0.136101 -112062,7105:457:3,-57,15.5,0,0,-0.13605 -112063,7105:456:4,-56.5,15.5,0,0,-0.13605 -112064,7105:456:3,-56,15.5,0,0,-0.13605 -112065,7105:455:4,-55.5,15.5,0,0,-0.13605 -112066,7105:455:3,-55,15.5,0,0,-0.13605 -112067,7105:354:4,-54.5,15.5,0,0,-0.13605 -112068,7105:354:3,-54,15.5,0,0,-0.13605 -112069,7105:353:4,-53.5,15.5,0,0,-0.13605 -112070,7105:353:3,-53,15.5,0,0,-0.13605 -112071,7105:352:4,-52.5,15.5,0,0,-0.136144 -112072,7105:352:3,-52,15.5,0,0,-0.13605 -112073,7105:351:4,-51.5,15.5,0,0,-0.13605 -112074,7105:351:3,-51,15.5,0,0,-0.13605 -112075,7105:350:4,-50.5,15.5,0,0,-0.13605 -112076,7105:350:3,-50,15.5,0,0,-0.13605 -112077,7104:459:4,-49.5,15.5,0,0,-0.13605 -112078,7104:459:3,-49,15.5,0,0,-0.13605 -112079,7104:458:4,-48.5,15.5,0,0,-0.13605 -112080,7104:458:3,-48,15.5,0,0,-0.13605 -112081,7104:457:4,-47.5,15.5,0,0,-0.13605 -112082,7104:457:3,-47,15.5,0,0,-0.13605 -112083,7104:456:4,-46.5,15.5,0,0,-0.13605 -112084,7104:456:3,-46,15.5,0,0,-0.13605 -112085,7104:455:4,-45.5,15.5,0,0,-0.13605 -112086,7104:455:3,-45,15.5,0,0,-0.13605 -112087,7104:354:4,-44.5,15.5,0,0,-0.13605 -112088,7104:354:3,-44,15.5,0,0,-0.13605 -112089,7104:353:4,-43.5,15.5,0,0,-0.13605 -112090,7104:353:3,-43,15.5,0,0,-0.13605 -112091,7104:352:4,-42.5,15.5,0,0,-0.13605 -112092,7104:352:3,-42,15.5,0,0,-0.13605 -112093,7104:351:4,-41.5,15.5,0,0,-0.13605 -112094,7104:351:3,-41,15.5,0,0,-0.13605 -112095,7104:350:4,-40.5,15.5,0,0,-0.13605 -112096,7104:350:3,-40,15.5,0,0,-0.13605 -112097,7103:459:4,-39.5,15.5,0,0,-0.13605 -112098,7103:459:3,-39,15.5,0,0,-0.13605 -112099,7103:458:4,-38.5,15.5,0,0,-0.13605 -112100,7103:458:3,-38,15.5,0,0,-0.13605 -112101,7103:457:4,-37.5,15.5,0,0,-0.13605 -112102,7103:457:3,-37,15.5,0,0,-0.13605 -112103,7103:456:4,-36.5,15.5,0,0,-0.13605 -112104,7103:456:3,-36,15.5,0,0,-0.13605 -112105,7103:455:4,-35.5,15.5,0,0,-0.13605 -112106,7103:455:3,-35,15.5,0,0,-0.13605 -112107,7103:354:4,-34.5,15.5,0,0,-0.13605 -112108,7103:354:3,-34,15.5,0,0,-0.13605 -112109,7103:353:4,-33.5,15.5,0,0,-0.13605 -112110,7103:353:3,-33,15.5,0,0,-0.13605 -112111,7103:352:4,-32.5,15.5,0,0,-0.13605 -112112,7103:352:3,-32,15.5,0,0,-0.13605 -112113,7103:351:4,-31.5,15.5,0,0,-0.13605 -112114,7103:351:3,-31,15.5,0,0,-0.13605 -112115,7103:350:4,-30.5,15.5,0,0,-0.13605 -112116,7103:350:3,-30,15.5,0,0,-0.13605 -112117,7102:459:4,-29.5,15.5,0,0,-0.13605 -112118,7102:459:3,-29,15.5,0,0,-0.13605 -112119,7102:458:4,-28.5,15.5,0,0,-0.13605 -112120,7102:458:3,-28,15.5,0,0,-0.13605 -112121,7102:457:4,-27.5,15.5,0,0,-0.13605 -112122,7102:457:3,-27,15.5,0,0,-0.13605 -112123,7102:456:4,-26.5,15.5,0,0,-0.13605 -112124,7102:456:3,-26,15.5,0,0,-0.13605 -112125,7102:455:4,-25.5,15.5,0,0,-0.13605 -112126,7102:455:3,-25,15.5,0,0,-0.13605 -112127,7102:354:4,-24.5,15.5,0,0,-0.13605 -112128,7102:354:3,-24,15.5,0,0,-0.13605 -112129,7102:353:4,-23.5,15.5,0,0,-0.13605 -112130,7102:353:3,-23,15.5,0,0,-0.13605 -112131,7102:352:4,-22.5,15.5,0,0,-0.13605 -112132,7102:352:3,-22,15.5,0,0,-0.13605 -112133,7102:351:4,-21.5,15.5,0,0,-0.13605 -112134,7102:351:3,-21,15.5,0,0,-0.13605 -112135,7102:350:4,-20.5,15.5,0,0,-0.13605 -112136,7102:350:3,-20,15.5,0,0,-0.13605 -112137,7101:459:4,-19.5,15.5,0,0,-0.13605 -112138,7101:459:3,-19,15.5,0,0,-0.13605 -112139,7101:458:4,-18.5,15.5,0,0,-0.13605 -112140,7101:458:3,-18,15.5,0,0,-0.13605 -112141,7101:457:4,-17.5,15.5,0,0,-0.13605 -112142,7101:457:3,-17,15.5,0,0,-0.13605 -112143,7101:456:4,-16.5,15.5,0,0,-0.13605 -112144,7101:456:3,-16,15.5,0,0,-0.13605 -112145,7101:455:4,-15.5,15.5,0,0,-0.13605 -112146,7101:455:3,-15,15.5,0,0,-0.13605 -112147,1103:354:3,34,15.5,0,0,-0.13605 -112148,1103:354:4,34.5,15.5,0,0,-0.13605 -112149,1103:455:3,35,15.5,0,0,-0.13605 -112150,1103:455:4,35.5,15.5,0,0,-0.139547 -112151,1103:456:3,36,15.5,0,0,-0.145715 -112152,1105:350:3,50,15.5,0,0,-0.13605 -112153,1105:350:4,50.5,15.5,0,0,-0.13605 -112154,1105:351:3,51,15.5,0,0,-0.13605 -112155,1105:351:4,51.5,15.5,0,0,-0.13605 -112156,1105:352:3,52,15.5,0,0,-0.13605 -112157,1105:352:4,52.5,15.5,0,0,-0.13605 -112158,1105:353:3,53,15.5,0,0,-0.13605 -112159,1105:353:4,53.5,15.5,0,0,-0.13605 -112160,1105:354:3,54,15.5,0,0,-0.13605 -112161,1105:354:4,54.5,15.5,0,0,-0.13605 -112162,1105:455:3,55,15.5,0,0,-0.13605 -112163,1105:455:4,55.5,15.5,0,0,-0.13605 -112164,1105:456:4,56.5,15.5,0,0,-0.13605 -112165,1112:350:3,120,15.5,0,0,-0.13605 -112166,1112:350:4,120.5,15.5,0,0,-0.13605 -112167,1112:351:3,121,15.5,0,0,-0.13605 -112168,1112:351:4,121.5,15.5,0,0,-0.13605 -112169,1112:352:3,122,15.5,0,0,-0.13605 -112170,1112:352:4,122.5,15.5,0,0,-0.13605 -112171,1112:353:3,123,15.5,0,0,-0.13605 -112172,1112:353:4,123.5,15.5,0,0,-0.13605 -112173,1112:354:3,124,15.5,0,0,-0.13605 -112174,1112:354:4,124.5,15.5,0,0,-0.13605 -112175,1112:455:3,125,15.5,0,0,-0.13605 -112176,1112:455:4,125.5,15.5,0,0,-0.13605 -112177,1112:456:3,126,15.5,0,0,-0.13605 -112178,1112:456:4,126.5,15.5,0,0,-0.13605 -112179,1112:457:3,127,15.5,0,0,-0.13605 -112180,1112:457:4,127.5,15.5,0,0,-0.13605 -112181,1112:458:4,128.5,15.5,0,0,-0.13605 -112182,1112:459:3,129,15.5,0,0,-0.13605 -112183,1112:459:4,129.5,15.5,0,0,-0.13605 -112184,1113:350:3,130,15.5,0,0,-0.13605 -112185,1113:350:4,130.5,15.5,0,0,-0.13605 -112186,1113:351:3,131,15.5,0,0,-0.13605 -112187,1113:351:4,131.5,15.5,0,0,-0.13605 -112188,1113:352:3,132,15.5,0,0,-0.13605 -112189,1113:352:4,132.5,15.5,0,0,-0.13605 -112190,1113:353:3,133,15.5,0,0,-0.13605 -112191,1113:353:4,133.5,15.5,0,0,-0.13605 -112192,1113:354:3,134,15.5,0,0,-0.13605 -112193,1113:354:4,134.5,15.5,0,0,-0.13605 -112194,1113:455:3,135,15.5,0,0,-0.13605 -112195,1113:455:4,135.5,15.5,0,0,-0.13605 -112196,1113:456:3,136,15.5,0,0,-0.13605 -112197,1113:456:4,136.5,15.5,0,0,-0.13605 -112198,1113:457:3,137,15.5,0,0,-0.13605 -112199,1113:457:4,137.5,15.5,0,0,-0.13605 -112200,1113:458:3,138,15.5,0,0,-0.13605 -112201,1113:458:4,138.5,15.5,0,0,-0.13605 -112202,1113:459:3,139,15.5,0,0,-0.13605 -112203,1113:459:4,139.5,15.5,0,0,-0.13605 -112204,1114:350:3,140,15.5,0,0,-0.13605 -112205,1114:350:4,140.5,15.5,0,0,-0.13605 -112206,1114:351:3,141,15.5,0,0,-0.13605 -112207,1114:351:4,141.5,15.5,0,0,-0.13605 -112208,1114:352:3,142,15.5,0,0,-0.13605 -112209,1114:352:4,142.5,15.5,0,0,-0.13605 -112210,1114:353:3,143,15.5,0,0,-0.13605 -112211,1114:353:4,143.5,15.5,0,0,-0.13605 -112212,1114:354:3,144,15.5,0,0,-0.13605 -112213,1114:354:4,144.5,15.5,0,0,-0.13605 -112214,1114:455:3,145,15.5,0,0,-0.13605 -112215,1114:455:4,145.5,15.5,0,0,-0.13605 -112216,1114:456:3,146,15.5,0,0,-0.13605 -112217,1114:456:4,146.5,15.5,0,0,-0.13605 -112218,1114:457:3,147,15.5,0,0,-0.13605 -112219,1114:457:4,147.5,15.5,0,0,-0.13605 -112220,1114:458:3,148,15.5,0,0,-0.13605 -112221,1114:458:4,148.5,15.5,0,0,-0.136589 -112222,1114:459:3,149,15.5,0,0,-0.137003 -112223,1114:459:4,149.5,15.5,0,0,-0.136164 -112224,1115:350:3,150,15.5,0,0,-0.13605 -112225,1115:350:4,150.5,15.5,0,0,-0.13605 -112226,1115:351:3,151,15.5,0,0,-0.13605 -112227,1115:351:4,151.5,15.5,0,0,-0.13605 -112228,1115:352:3,152,15.5,0,0,-0.13605 -112229,1115:352:4,152.5,15.5,0,0,-0.13605 -112230,1115:353:3,153,15.5,0,0,-0.13605 -112231,1115:353:4,153.5,15.5,0,0,-0.13605 -112232,1115:354:3,154,15.5,0,0,-0.13605 -112233,1115:354:4,154.5,15.5,0,0,-0.13605 -112234,1115:455:3,155,15.5,0,0,-0.13605 -112235,1115:455:4,155.5,15.5,0,0,-0.13605 -112236,1115:456:3,156,15.5,0,0,-0.13605 -112237,1115:456:4,156.5,15.5,0,0,-0.13605 -112238,1115:457:3,157,15.5,0,0,-0.13605 -112239,1115:457:4,157.5,15.5,0,0,-0.13605 -112240,1115:458:3,158,15.5,0,0,-0.13605 -112241,1115:458:4,158.5,15.5,0,0,-0.13605 -112242,1115:459:3,159,15.5,0,0,-0.13605 -112243,1115:459:4,159.5,15.5,0,0,-0.13605 -112244,1116:350:3,160,15.5,0,0,-0.13605 -112245,1116:350:4,160.5,15.5,0,0,-0.13605 -112246,1116:351:3,161,15.5,0,0,-0.13605 -112247,1116:351:4,161.5,15.5,0,0,-0.13605 -112248,1116:352:3,162,15.5,0,0,-0.13605 -112249,1116:352:4,162.5,15.5,0,0,-0.13605 -112250,1116:353:3,163,15.5,0,0,-0.13605 -112251,1116:353:4,163.5,15.5,0,0,-0.13605 -112252,1116:354:3,164,15.5,0,0,-0.13605 -112253,1116:354:4,164.5,15.5,0,0,-0.13605 -112254,1116:455:3,165,15.5,0,0,-0.13605 -112255,1116:455:4,165.5,15.5,0,0,-0.13605 -112256,1116:456:3,166,15.5,0,0,-0.13605 -112257,1116:456:4,166.5,15.5,0,0,-0.13605 -112258,1116:457:3,167,15.5,0,0,-0.13605 -112259,1116:457:4,167.5,15.5,0,0,-0.13605 -112260,1116:458:3,168,15.5,0,0,-0.13605 -112261,1116:458:4,168.5,15.5,0,0,-0.13605 -112262,1116:459:3,169,15.5,0,0,-0.13605 -112263,1116:459:4,169.5,15.5,0,0,-0.13605 -112264,1117:350:3,170,15.5,0,0,-0.13605 -112265,1117:350:4,170.5,15.5,0,0,-0.13605 -112266,1117:351:3,171,15.5,0,0,-0.13605 -112267,1117:351:4,171.5,15.5,0,0,-0.13605 -112268,1117:352:3,172,15.5,0,0,-0.13605 -112269,1117:352:4,172.5,15.5,0,0,-0.13605 -112270,1117:353:3,173,15.5,0,0,-0.13605 -112271,1117:353:4,173.5,15.5,0,0,-0.13605 -112272,1117:354:3,174,15.5,0,0,-0.13605 -112273,1117:354:4,174.5,15.5,0,0,-0.13605 -112274,1117:455:3,175,15.5,0,0,-0.13605 -112275,1117:455:4,175.5,15.5,0,0,-0.13605 -112276,1117:456:3,176,15.5,0,0,-0.13605 -112277,1117:456:4,176.5,15.5,0,0,-0.13605 -112278,1117:457:3,177,15.5,0,0,-0.13605 -112279,1117:457:4,177.5,15.5,0,0,-0.13605 -112280,1117:458:3,178,15.5,0,0,-0.13605 -112281,1117:458:4,178.5,15.5,0,0,-0.13605 -112282,1117:459:3,179,15.5,0,0,-0.13605 -112283,1117:459:4,179.5,15.5,0,0,-0.13605 -112284,1118:350:3,180,15.5,0,0,-0.13605 -112285,7118:360:1,-180,16,0,0,-0.13605 -112286,7117:469:2,-179.5,16,0,0,-0.13605 -112287,7117:469:1,-179,16,0,0,-0.13605 -112288,7117:468:2,-178.5,16,0,0,-0.13605 -112289,7117:468:1,-178,16,0,0,-0.13605 -112290,7117:467:2,-177.5,16,0,0,-0.13605 -112291,7117:467:1,-177,16,0,0,-0.13605 -112292,7117:466:2,-176.5,16,0,0,-0.13605 -112293,7117:466:1,-176,16,0,0,-0.13605 -112294,7117:465:2,-175.5,16,0,0,-0.13605 -112295,7117:465:1,-175,16,0,0,-0.13605 -112296,7117:364:2,-174.5,16,0,0,-0.13605 -112297,7117:364:1,-174,16,0,0,-0.13605 -112298,7117:363:2,-173.5,16,0,0,-0.13605 -112299,7117:363:1,-173,16,0,0,-0.13605 -112300,7117:362:2,-172.5,16,0,0,-0.13605 -112301,7117:362:1,-172,16,0,0,-0.13605 -112302,7117:361:2,-171.5,16,0,0,-0.13605 -112303,7117:361:1,-171,16,0,0,-0.13605 -112304,7117:360:2,-170.5,16,0,0,-0.13605 -112305,7117:360:1,-170,16,0,0,-0.13605 -112306,7116:469:2,-169.5,16,0,0,-0.13605 -112307,7116:469:1,-169,16,0,0,-0.13605 -112308,7116:468:2,-168.5,16,0,0,-0.13605 -112309,7116:468:1,-168,16,0,0,-0.13605 -112310,7116:467:2,-167.5,16,0,0,-0.13605 -112311,7116:467:1,-167,16,0,0,-0.13605 -112312,7116:466:2,-166.5,16,0,0,-0.13605 -112313,7116:466:1,-166,16,0,0,-0.13605 -112314,7116:465:2,-165.5,16,0,0,-0.13605 -112315,7116:465:1,-165,16,0,0,-0.13605 -112316,7116:364:2,-164.5,16,0,0,-0.13605 -112317,7116:364:1,-164,16,0,0,-0.13605 -112318,7116:363:2,-163.5,16,0,0,-0.13605 -112319,7116:363:1,-163,16,0,0,-0.13605 -112320,7116:362:2,-162.5,16,0,0,-0.13605 -112321,7116:362:1,-162,16,0,0,-0.13605 -112322,7116:361:2,-161.5,16,0,0,-0.13605 -112323,7116:361:1,-161,16,0,0,-0.13605 -112324,7116:360:2,-160.5,16,0,0,-0.13605 -112325,7116:360:1,-160,16,0,0,-0.13605 -112326,7115:469:2,-159.5,16,0,0,-0.13605 -112327,7115:469:1,-159,16,0,0,-0.13605 -112328,7115:468:2,-158.5,16,0,0,-0.13605 -112329,7115:468:1,-158,16,0,0,-0.13605 -112330,7115:467:2,-157.5,16,0,0,-0.13605 -112331,7115:467:1,-157,16,0,0,-0.13605 -112332,7115:466:2,-156.5,16,0,0,-0.13605 -112333,7115:466:1,-156,16,0,0,-0.13605 -112334,7115:465:2,-155.5,16,0,0,-0.13605 -112335,7115:465:1,-155,16,0,0,-0.13605 -112336,7115:364:2,-154.5,16,0,0,-0.13605 -112337,7115:364:1,-154,16,0,0,-0.13605 -112338,7115:363:2,-153.5,16,0,0,-0.13605 -112339,7115:363:1,-153,16,0,0,-0.13605 -112340,7115:362:2,-152.5,16,0,0,-0.13605 -112341,7115:362:1,-152,16,0,0,-0.13605 -112342,7115:361:2,-151.5,16,0,0,-0.13605 -112343,7115:361:1,-151,16,0,0,-0.13605 -112344,7115:360:2,-150.5,16,0,0,-0.13605 -112345,7115:360:1,-150,16,0,0,-0.13605 -112346,7114:469:2,-149.5,16,0,0,-0.13605 -112347,7114:469:1,-149,16,0,0,-0.13605 -112348,7114:468:2,-148.5,16,0,0,-0.13605 -112349,7114:468:1,-148,16,0,0,-0.13605 -112350,7114:467:2,-147.5,16,0,0,-0.13605 -112351,7114:467:1,-147,16,0,0,-0.13605 -112352,7114:466:2,-146.5,16,0,0,-0.13605 -112353,7114:466:1,-146,16,0,0,-0.13605 -112354,7114:465:2,-145.5,16,0,0,-0.13605 -112355,7114:465:1,-145,16,0,0,-0.13605 -112356,7114:364:2,-144.5,16,0,0,-0.13605 -112357,7114:364:1,-144,16,0,0,-0.13605 -112358,7114:363:2,-143.5,16,0,0,-0.13605 -112359,7114:363:1,-143,16,0,0,-0.13605 -112360,7114:362:2,-142.5,16,0,0,-0.13605 -112361,7114:362:1,-142,16,0,0,-0.13605 -112362,7114:361:2,-141.5,16,0,0,-0.13605 -112363,7114:361:1,-141,16,0,0,-0.13605 -112364,7114:360:2,-140.5,16,0,0,-0.13605 -112365,7114:360:1,-140,16,0,0,-0.13605 -112366,7113:469:2,-139.5,16,0,0,-0.13605 -112367,7113:469:1,-139,16,0,0,-0.13605 -112368,7113:468:2,-138.5,16,0,0,-0.13605 -112369,7113:468:1,-138,16,0,0,-0.13605 -112370,7113:467:2,-137.5,16,0,0,-0.13605 -112371,7113:467:1,-137,16,0,0,-0.13605 -112372,7113:466:2,-136.5,16,0,0,-0.13605 -112373,7113:466:1,-136,16,0,0,-0.13605 -112374,7113:465:2,-135.5,16,0,0,-0.13605 -112375,7113:465:1,-135,16,0,0,-0.13605 -112376,7113:364:2,-134.5,16,0,0,-0.13605 -112377,7113:364:1,-134,16,0,0,-0.13605 -112378,7113:363:2,-133.5,16,0,0,-0.13605 -112379,7113:363:1,-133,16,0,0,-0.13605 -112380,7113:362:2,-132.5,16,0,0,-0.13605 -112381,7113:362:1,-132,16,0,0,-0.13605 -112382,7113:361:2,-131.5,16,0,0,-0.13605 -112383,7113:361:1,-131,16,0,0,-0.13605 -112384,7113:360:2,-130.5,16,0,0,-0.13605 -112385,7113:360:1,-130,16,0,0,-0.13605 -112386,7112:469:2,-129.5,16,0,0,-0.13605 -112387,7112:469:1,-129,16,0,0,-0.13605 -112388,7112:468:2,-128.5,16,0,0,-0.13605 -112389,7112:468:1,-128,16,0,0,-0.13605 -112390,7112:467:2,-127.5,16,0,0,-0.13605 -112391,7112:467:1,-127,16,0,0,-0.13605 -112392,7112:466:2,-126.5,16,0,0,-0.13605 -112393,7112:466:1,-126,16,0,0,-0.13605 -112394,7112:465:2,-125.5,16,0,0,-0.13605 -112395,7112:465:1,-125,16,0,0,-0.13605 -112396,7112:364:2,-124.5,16,0,0,-0.13605 -112397,7112:364:1,-124,16,0,0,-0.13605 -112398,7112:363:2,-123.5,16,0,0,-0.13605 -112399,7112:363:1,-123,16,0,0,-0.13605 -112400,7112:362:2,-122.5,16,0,0,-0.13605 -112401,7112:362:1,-122,16,0,0,-0.13605 -112402,7112:361:2,-121.5,16,0,0,-0.13605 -112403,7112:361:1,-121,16,0,0,-0.13605 -112404,7112:360:2,-120.5,16,0,0,-0.13605 -112405,7112:360:1,-120,16,0,0,-0.13605 -112406,7111:469:2,-119.5,16,0,0,-0.13605 -112407,7111:469:1,-119,16,0,0,-0.13605 -112408,7111:468:2,-118.5,16,0,0,-0.13605 -112409,7111:468:1,-118,16,0,0,-0.13605 -112410,7111:467:2,-117.5,16,0,0,-0.13605 -112411,7111:467:1,-117,16,0,0,-0.13605 -112412,7111:466:2,-116.5,16,0,0,-0.13605 -112413,7111:466:1,-116,16,0,0,-0.13605 -112414,7111:465:2,-115.5,16,0,0,-0.13605 -112415,7111:465:1,-115,16,0,0,-0.13605 -112416,7111:364:2,-114.5,16,0,0,-0.13605 -112417,7111:364:1,-114,16,0,0,-0.13605 -112418,7111:361:2,-111.5,16,0,0,-0.13605 -112419,7111:361:1,-111,16,0,0,-0.13605 -112420,7111:360:2,-110.5,16,0,0,-0.13605 -112421,7111:360:1,-110,16,0,0,-0.13605 -112422,7109:467:1,-97,16,0,0,-0.13605 -112423,7109:466:2,-96.5,16,0,0,-0.13605 -112424,7109:466:1,-96,16,0,0,-0.13605 -112425,7109:465:2,-95.5,16,0,0,-0.13605 -112426,7109:465:1,-95,16,0,0,-0.13605 -112427,7109:364:2,-94.5,16,0,0,-0.13605 -112428,7109:364:1,-94,16,0,0,-0.13605 -112429,7109:363:2,-93.5,16,0,0,-0.13605 -112430,7109:363:1,-93,16,0,0,-0.13605 -112431,7109:362:2,-92.5,16,0,0,-0.13605 -112432,7109:362:1,-92,16,0,0,-0.13605 -112433,7109:361:2,-91.5,16,0,0,-0.13605 -112434,7109:361:1,-91,16,0,0,-0.13605 -112435,7109:360:2,-90.5,16,0,0,-0.13605 -112436,7109:360:1,-90,16,0,0,-0.13605 -112437,7108:469:2,-89.5,16,0,0,-0.13605 -112438,7108:469:1,-89,16,0,0,-0.13605 -112439,7108:468:2,-88.5,16,0,0,-0.13605 -112440,7108:468:1,-88,16,0,0,-0.13605 -112441,7108:467:2,-87.5,16,0,0,-0.13605 -112442,7108:467:1,-87,16,0,0,-0.13605 -112443,7108:466:2,-86.5,16,0,0,-0.13605 -112444,7108:466:1,-86,16,0,0,-0.13605 -112445,7108:465:2,-85.5,16,0,0,-0.13605 -112446,7108:465:1,-85,16,0,0,-0.13605 -112447,7108:364:2,-84.5,16,0,0,-0.13605 -112448,7108:364:1,-84,16,0,0,-0.13605 -112449,7108:363:2,-83.5,16,0,0,-0.13605 -112450,7108:363:1,-83,16,0,0,-0.13605 -112451,7108:362:2,-82.5,16,0,0,-0.13605 -112452,7108:360:1,-80,16,0,0,-0.136211 -112453,7107:469:2,-79.5,16,0,0,-0.151141 -112454,7107:469:1,-79,16,0,0,-0.13605 -112455,7107:468:2,-78.5,16,0,0,-0.13605 -112456,7107:468:1,-78,16,0,0,-0.13605 -112457,7107:467:1,-77,16,0,0,-0.139309 -112458,7107:466:2,-76.5,16,0,0,-0.13605 -112459,7107:466:1,-76,16,0,0,-0.13605 -112460,7107:465:2,-75.5,16,0,0,-0.13605 -112461,7107:465:1,-75,16,0,0,-0.13605 -112462,7107:364:2,-74.5,16,0,0,-0.13605 -112463,7107:364:1,-74,16,0,0,-0.13605 -112464,7107:363:2,-73.5,16,0,0,-0.13605 -112465,7107:363:1,-73,16,0,0,-0.13605 -112466,7107:362:2,-72.5,16,0,0,-0.13605 -112467,7107:362:1,-72,16,0,0,-0.13605 -112468,7107:361:2,-71.5,16,0,0,-0.13605 -112469,7107:361:1,-71,16,0,0,-0.13605 -112470,7107:360:2,-70.5,16,0,0,-0.13605 -112471,7107:360:1,-70,16,0,0,-0.13605 -112472,7106:469:2,-69.5,16,0,0,-0.13605 -112473,7106:469:1,-69,16,0,0,-0.13605 -112474,7106:468:2,-68.5,16,0,0,-0.13605 -112475,7106:468:1,-68,16,0,0,-0.13605 -112476,7106:467:2,-67.5,16,0,0,-0.13605 -112477,7106:467:1,-67,16,0,0,-0.13605 -112478,7106:466:2,-66.5,16,0,0,-0.13605 -112479,7106:466:1,-66,16,0,0,-0.13605 -112480,7106:465:2,-65.5,16,0,0,-0.13605 -112481,7106:465:1,-65,16,0,0,-0.13605 -112482,7106:364:2,-64.5,16,0,0,-0.13605 -112483,7106:364:1,-64,16,0,0,-0.13605 -112484,7106:363:2,-63.5,16,0,0,-0.13605 -112485,7106:363:1,-63,16,0,0,-0.13605 -112486,7106:362:2,-62.5,16,0,0,-0.13605 -112487,7106:362:1,-62,16,0,0,-0.13605 -112488,7106:361:2,-61.5,16,0,0,-0.13605 -112489,7106:361:1,-61,16,0,0,-0.13605 -112490,7106:360:2,-60.5,16,0,0,-0.13605 -112491,7106:360:1,-60,16,0,0,-0.13605 -112492,7105:469:2,-59.5,16,0,0,-0.13605 -112493,7105:469:1,-59,16,0,0,-0.13605 -112494,7105:468:2,-58.5,16,0,0,-0.13605 -112495,7105:468:1,-58,16,0,0,-0.13605 -112496,7105:467:2,-57.5,16,0,0,-0.13605 -112497,7105:467:1,-57,16,0,0,-0.13605 -112498,7105:466:2,-56.5,16,0,0,-0.13605 -112499,7105:466:1,-56,16,0,0,-0.13605 -112500,7105:465:2,-55.5,16,0,0,-0.13605 -112501,7105:465:1,-55,16,0,0,-0.13605 -112502,7105:364:2,-54.5,16,0,0,-0.13605 -112503,7105:364:1,-54,16,0,0,-0.13605 -112504,7105:363:2,-53.5,16,0,0,-0.13605 -112505,7105:363:1,-53,16,0,0,-0.13605 -112506,7105:362:2,-52.5,16,0,0,-0.13605 -112507,7105:362:1,-52,16,0,0,-0.13605 -112508,7105:361:2,-51.5,16,0,0,-0.13605 -112509,7105:361:1,-51,16,0,0,-0.13605 -112510,7105:360:2,-50.5,16,0,0,-0.13605 -112511,7105:360:1,-50,16,0,0,-0.13605 -112512,7104:469:2,-49.5,16,0,0,-0.13605 -112513,7104:469:1,-49,16,0,0,-0.13605 -112514,7104:468:2,-48.5,16,0,0,-0.13605 -112515,7104:468:1,-48,16,0,0,-0.13605 -112516,7104:467:2,-47.5,16,0,0,-0.13605 -112517,7104:467:1,-47,16,0,0,-0.13605 -112518,7104:466:2,-46.5,16,0,0,-0.13605 -112519,7104:466:1,-46,16,0,0,-0.13605 -112520,7104:465:2,-45.5,16,0,0,-0.13605 -112521,7104:465:1,-45,16,0,0,-0.13605 -112522,7104:364:2,-44.5,16,0,0,-0.13605 -112523,7104:364:1,-44,16,0,0,-0.13605 -112524,7104:363:2,-43.5,16,0,0,-0.13605 -112525,7104:363:1,-43,16,0,0,-0.13605 -112526,7104:362:2,-42.5,16,0,0,-0.13605 -112527,7104:362:1,-42,16,0,0,-0.13605 -112528,7104:361:2,-41.5,16,0,0,-0.13605 -112529,7104:361:1,-41,16,0,0,-0.13605 -112530,7104:360:2,-40.5,16,0,0,-0.13605 -112531,7104:360:1,-40,16,0,0,-0.13605 -112532,7103:469:2,-39.5,16,0,0,-0.13605 -112533,7103:469:1,-39,16,0,0,-0.13605 -112534,7103:468:2,-38.5,16,0,0,-0.13605 -112535,7103:468:1,-38,16,0,0,-0.13605 -112536,7103:467:2,-37.5,16,0,0,-0.13605 -112537,7103:467:1,-37,16,0,0,-0.13605 -112538,7103:466:2,-36.5,16,0,0,-0.13605 -112539,7103:466:1,-36,16,0,0,-0.13605 -112540,7103:465:2,-35.5,16,0,0,-0.13605 -112541,7103:465:1,-35,16,0,0,-0.13605 -112542,7103:364:2,-34.5,16,0,0,-0.13605 -112543,7103:364:1,-34,16,0,0,-0.13605 -112544,7103:363:2,-33.5,16,0,0,-0.13605 -112545,7103:363:1,-33,16,0,0,-0.13605 -112546,7103:362:2,-32.5,16,0,0,-0.13605 -112547,7103:362:1,-32,16,0,0,-0.13605 -112548,7103:361:2,-31.5,16,0,0,-0.13605 -112549,7103:361:1,-31,16,0,0,-0.13605 -112550,7103:360:2,-30.5,16,0,0,-0.13605 -112551,7103:360:1,-30,16,0,0,-0.13605 -112552,7102:469:2,-29.5,16,0,0,-0.13605 -112553,7102:469:1,-29,16,0,0,-0.13605 -112554,7102:468:2,-28.5,16,0,0,-0.13605 -112555,7102:468:1,-28,16,0,0,-0.13605 -112556,7102:467:2,-27.5,16,0,0,-0.13605 -112557,7102:467:1,-27,16,0,0,-0.13605 -112558,7102:466:2,-26.5,16,0,0,-0.13605 -112559,7102:466:1,-26,16,0,0,-0.13605 -112560,7102:465:2,-25.5,16,0,0,-0.13605 -112561,7102:465:1,-25,16,0,0,-0.13605 -112562,7102:364:2,-24.5,16,0,0,-0.13605 -112563,7102:364:1,-24,16,0,0,-0.13605 -112564,7102:363:2,-23.5,16,0,0,-0.13605 -112565,7102:363:1,-23,16,0,0,-0.13605 -112566,7102:362:2,-22.5,16,0,0,-0.13605 -112567,7102:362:1,-22,16,0,0,-0.13605 -112568,7102:361:2,-21.5,16,0,0,-0.13605 -112569,7102:361:1,-21,16,0,0,-0.13605 -112570,7102:360:2,-20.5,16,0,0,-0.13605 -112571,7102:360:1,-20,16,0,0,-0.13605 -112572,7101:469:2,-19.5,16,0,0,-0.13605 -112573,7101:469:1,-19,16,0,0,-0.13605 -112574,7101:468:2,-18.5,16,0,0,-0.13605 -112575,7101:468:1,-18,16,0,0,-0.13605 -112576,7101:467:2,-17.5,16,0,0,-0.13605 -112577,7101:467:1,-17,16,0,0,-0.13605 -112578,7101:466:2,-16.5,16,0,0,-0.13605 -112579,7101:466:1,-16,16,0,0,-0.13605 -112580,7101:465:2,-15.5,16,0,0,-0.13605 -112581,7101:465:1,-15,16,0,0,-0.13605 -112582,7101:364:2,-14.5,16,0,0,-0.13605 -112583,7101:364:1,-14,16,0,0,-0.13605 -112584,1103:364:1,34,16,0,0,-0.13605 -112585,1103:364:2,34.5,16,0,0,-0.13605 -112586,1103:465:1,35,16,0,0,-0.13605 -112587,1103:465:2,35.5,16,0,0,-0.138125 -112588,1105:360:1,50,16,0,0,-0.13605 -112589,1105:360:2,50.5,16,0,0,-0.13605 -112590,1105:361:1,51,16,0,0,-0.13605 -112591,1105:361:2,51.5,16,0,0,-0.13605 -112592,1105:362:1,52,16,0,0,-0.13605 -112593,1105:362:2,52.5,16,0,0,-0.13605 -112594,1105:363:1,53,16,0,0,-0.13605 -112595,1105:465:2,55.5,16,0,0,-0.13605 -112596,1105:466:1,56,16,0,0,-0.13605 -112597,1105:466:2,56.5,16,0,0,-0.13605 -112598,1112:360:2,120.5,16,0,0,-0.13605 -112599,1112:361:1,121,16,0,0,-0.13605 -112600,1112:361:2,121.5,16,0,0,-0.13605 -112601,1112:362:1,122,16,0,0,-0.13605 -112602,1112:362:2,122.5,16,0,0,-0.13605 -112603,1112:363:1,123,16,0,0,-0.13605 -112604,1112:363:2,123.5,16,0,0,-0.13605 -112605,1112:364:1,124,16,0,0,-0.13605 -112606,1112:364:2,124.5,16,0,0,-0.13605 -112607,1112:465:1,125,16,0,0,-0.13605 -112608,1112:465:2,125.5,16,0,0,-0.13605 -112609,1112:466:1,126,16,0,0,-0.13605 -112610,1112:466:2,126.5,16,0,0,-0.13605 -112611,1112:467:1,127,16,0,0,-0.13605 -112612,1112:467:2,127.5,16,0,0,-0.13605 -112613,1112:468:1,128,16,0,0,-0.13605 -112614,1112:468:2,128.5,16,0,0,-0.13605 -112615,1112:469:1,129,16,0,0,-0.13605 -112616,1112:469:2,129.5,16,0,0,-0.13605 -112617,1113:360:1,130,16,0,0,-0.13605 -112618,1113:360:2,130.5,16,0,0,-0.13605 -112619,1113:361:1,131,16,0,0,-0.13605 -112620,1113:361:2,131.5,16,0,0,-0.13605 -112621,1113:362:1,132,16,0,0,-0.13605 -112622,1113:362:2,132.5,16,0,0,-0.13605 -112623,1113:363:1,133,16,0,0,-0.13605 -112624,1113:363:2,133.5,16,0,0,-0.13605 -112625,1113:364:1,134,16,0,0,-0.13605 -112626,1113:364:2,134.5,16,0,0,-0.13605 -112627,1113:465:1,135,16,0,0,-0.13605 -112628,1113:465:2,135.5,16,0,0,-0.13605 -112629,1113:466:1,136,16,0,0,-0.13605 -112630,1113:466:2,136.5,16,0,0,-0.13605 -112631,1113:467:1,137,16,0,0,-0.13605 -112632,1113:467:2,137.5,16,0,0,-0.13605 -112633,1113:468:1,138,16,0,0,-0.13605 -112634,1113:468:2,138.5,16,0,0,-0.13605 -112635,1113:469:1,139,16,0,0,-0.13605 -112636,1113:469:2,139.5,16,0,0,-0.13605 -112637,1114:360:1,140,16,0,0,-0.13605 -112638,1114:360:2,140.5,16,0,0,-0.13605 -112639,1114:361:1,141,16,0,0,-0.13605 -112640,1114:361:2,141.5,16,0,0,-0.13605 -112641,1114:362:1,142,16,0,0,-0.13605 -112642,1114:362:2,142.5,16,0,0,-0.13605 -112643,1114:363:1,143,16,0,0,-0.13605 -112644,1114:363:2,143.5,16,0,0,-0.13605 -112645,1114:364:1,144,16,0,0,-0.13605 -112646,1114:364:2,144.5,16,0,0,-0.13605 -112647,1114:465:1,145,16,0,0,-0.13605 -112648,1114:465:2,145.5,16,0,0,-0.13605 -112649,1114:466:1,146,16,0,0,-0.13605 -112650,1114:466:2,146.5,16,0,0,-0.13605 -112651,1114:467:1,147,16,0,0,-0.13605 -112652,1114:467:2,147.5,16,0,0,-0.13605 -112653,1114:468:1,148,16,0,0,-0.13605 -112654,1114:468:2,148.5,16,0,0,-0.13605 -112655,1114:469:1,149,16,0,0,-0.13605 -112656,1114:469:2,149.5,16,0,0,-0.13605 -112657,1115:360:1,150,16,0,0,-0.13605 -112658,1115:360:2,150.5,16,0,0,-0.13605 -112659,1115:361:1,151,16,0,0,-0.13605 -112660,1115:361:2,151.5,16,0,0,-0.13605 -112661,1115:362:1,152,16,0,0,-0.13605 -112662,1115:362:2,152.5,16,0,0,-0.13605 -112663,1115:363:1,153,16,0,0,-0.13605 -112664,1115:363:2,153.5,16,0,0,-0.13605 -112665,1115:364:1,154,16,0,0,-0.13605 -112666,1115:364:2,154.5,16,0,0,-0.13605 -112667,1115:465:1,155,16,0,0,-0.13605 -112668,1115:465:2,155.5,16,0,0,-0.13605 -112669,1115:466:1,156,16,0,0,-0.13605 -112670,1115:466:2,156.5,16,0,0,-0.13605 -112671,1115:467:1,157,16,0,0,-0.13605 -112672,1115:467:2,157.5,16,0,0,-0.13605 -112673,1115:468:1,158,16,0,0,-0.13605 -112674,1115:468:2,158.5,16,0,0,-0.13605 -112675,1115:469:1,159,16,0,0,-0.13605 -112676,1115:469:2,159.5,16,0,0,-0.13605 -112677,1116:360:1,160,16,0,0,-0.13605 -112678,1116:360:2,160.5,16,0,0,-0.13605 -112679,1116:361:1,161,16,0,0,-0.13605 -112680,1116:361:2,161.5,16,0,0,-0.13605 -112681,1116:362:1,162,16,0,0,-0.13605 -112682,1116:362:2,162.5,16,0,0,-0.13605 -112683,1116:363:1,163,16,0,0,-0.13605 -112684,1116:363:2,163.5,16,0,0,-0.13605 -112685,1116:364:1,164,16,0,0,-0.13605 -112686,1116:364:2,164.5,16,0,0,-0.13605 -112687,1116:465:1,165,16,0,0,-0.13605 -112688,1116:465:2,165.5,16,0,0,-0.13605 -112689,1116:466:1,166,16,0,0,-0.13605 -112690,1116:466:2,166.5,16,0,0,-0.13605 -112691,1116:467:1,167,16,0,0,-0.13605 -112692,1116:467:2,167.5,16,0,0,-0.13605 -112693,1116:468:1,168,16,0,0,-0.13605 -112694,1116:468:2,168.5,16,0,0,-0.13605 -112695,1116:469:1,169,16,0,0,-0.13605 -112696,1116:469:2,169.5,16,0,0,-0.13605 -112697,1117:360:1,170,16,0,0,-0.13605 -112698,1117:360:2,170.5,16,0,0,-0.13605 -112699,1117:361:1,171,16,0,0,-0.13605 -112700,1117:361:2,171.5,16,0,0,-0.13605 -112701,1117:362:1,172,16,0,0,-0.13605 -112702,1117:362:2,172.5,16,0,0,-0.13605 -112703,1117:363:1,173,16,0,0,-0.13605 -112704,1117:363:2,173.5,16,0,0,-0.13605 -112705,1117:364:1,174,16,0,0,-0.13605 -112706,1117:364:2,174.5,16,0,0,-0.13605 -112707,1117:465:1,175,16,0,0,-0.13605 -112708,1117:465:2,175.5,16,0,0,-0.13605 -112709,1117:466:1,176,16,0,0,-0.13605 -112710,1117:466:2,176.5,16,0,0,-0.13605 -112711,1117:467:1,177,16,0,0,-0.13605 -112712,1117:467:2,177.5,16,0,0,-0.13605 -112713,1117:468:1,178,16,0,0,-0.13605 -112714,1117:468:2,178.5,16,0,0,-0.13605 -112715,1117:469:1,179,16,0,0,-0.13605 -112716,1117:469:2,179.5,16,0,0,-0.13605 -112717,1118:360:1,180,16,0,0,-0.13605 -112718,7118:360:3,-180,16.5,0,0,-0.13605 -112719,7117:469:4,-179.5,16.5,0,0,-0.13605 -112720,7117:469:3,-179,16.5,0,0,-0.13605 -112721,7117:468:4,-178.5,16.5,0,0,-0.13605 -112722,7117:468:3,-178,16.5,0,0,-0.13605 -112723,7117:467:4,-177.5,16.5,0,0,-0.13605 -112724,7117:467:3,-177,16.5,0,0,-0.13605 -112725,7117:466:4,-176.5,16.5,0,0,-0.13605 -112726,7117:466:3,-176,16.5,0,0,-0.13605 -112727,7117:465:4,-175.5,16.5,0,0,-0.13605 -112728,7117:465:3,-175,16.5,0,0,-0.13605 -112729,7117:364:4,-174.5,16.5,0,0,-0.13605 -112730,7117:364:3,-174,16.5,0,0,-0.13605 -112731,7117:363:4,-173.5,16.5,0,0,-0.13605 -112732,7117:363:3,-173,16.5,0,0,-0.13605 -112733,7117:362:4,-172.5,16.5,0,0,-0.13605 -112734,7117:362:3,-172,16.5,0,0,-0.13605 -112735,7117:361:4,-171.5,16.5,0,0,-0.13605 -112736,7117:361:3,-171,16.5,0,0,-0.13605 -112737,7117:360:4,-170.5,16.5,0,0,-0.13605 -112738,7117:360:3,-170,16.5,0,0,-0.13605 -112739,7116:469:4,-169.5,16.5,0,0,-0.13605 -112740,7116:469:3,-169,16.5,0,0,-0.13605 -112741,7116:468:4,-168.5,16.5,0,0,-0.13605 -112742,7116:468:3,-168,16.5,0,0,-0.13605 -112743,7116:467:4,-167.5,16.5,0,0,-0.13605 -112744,7116:467:3,-167,16.5,0,0,-0.13605 -112745,7116:466:4,-166.5,16.5,0,0,-0.13605 -112746,7116:466:3,-166,16.5,0,0,-0.13605 -112747,7116:465:4,-165.5,16.5,0,0,-0.13605 -112748,7116:465:3,-165,16.5,0,0,-0.13605 -112749,7116:364:4,-164.5,16.5,0,0,-0.13605 -112750,7116:364:3,-164,16.5,0,0,-0.13605 -112751,7116:363:4,-163.5,16.5,0,0,-0.13605 -112752,7116:363:3,-163,16.5,0,0,-0.13605 -112753,7116:362:4,-162.5,16.5,0,0,-0.13605 -112754,7116:362:3,-162,16.5,0,0,-0.13605 -112755,7116:361:4,-161.5,16.5,0,0,-0.13605 -112756,7116:361:3,-161,16.5,0,0,-0.13605 -112757,7116:360:4,-160.5,16.5,0,0,-0.13605 -112758,7116:360:3,-160,16.5,0,0,-0.13605 -112759,7115:469:4,-159.5,16.5,0,0,-0.13605 -112760,7115:469:3,-159,16.5,0,0,-0.13605 -112761,7115:468:4,-158.5,16.5,0,0,-0.13605 -112762,7115:468:3,-158,16.5,0,0,-0.13605 -112763,7115:467:4,-157.5,16.5,0,0,-0.13605 -112764,7115:467:3,-157,16.5,0,0,-0.13605 -112765,7115:466:4,-156.5,16.5,0,0,-0.13605 -112766,7115:466:3,-156,16.5,0,0,-0.13605 -112767,7115:465:4,-155.5,16.5,0,0,-0.13605 -112768,7115:465:3,-155,16.5,0,0,-0.13605 -112769,7115:364:4,-154.5,16.5,0,0,-0.13605 -112770,7115:364:3,-154,16.5,0,0,-0.13605 -112771,7115:363:4,-153.5,16.5,0,0,-0.13605 -112772,7115:363:3,-153,16.5,0,0,-0.13605 -112773,7115:362:4,-152.5,16.5,0,0,-0.13605 -112774,7115:362:3,-152,16.5,0,0,-0.13605 -112775,7115:361:4,-151.5,16.5,0,0,-0.13605 -112776,7115:361:3,-151,16.5,0,0,-0.13605 -112777,7115:360:4,-150.5,16.5,0,0,-0.13605 -112778,7115:360:3,-150,16.5,0,0,-0.13605 -112779,7114:469:4,-149.5,16.5,0,0,-0.13605 -112780,7114:469:3,-149,16.5,0,0,-0.13605 -112781,7114:468:4,-148.5,16.5,0,0,-0.13605 -112782,7114:468:3,-148,16.5,0,0,-0.13605 -112783,7114:467:4,-147.5,16.5,0,0,-0.13605 -112784,7114:467:3,-147,16.5,0,0,-0.13605 -112785,7114:466:4,-146.5,16.5,0,0,-0.13605 -112786,7114:466:3,-146,16.5,0,0,-0.13605 -112787,7114:465:4,-145.5,16.5,0,0,-0.13605 -112788,7114:465:3,-145,16.5,0,0,-0.13605 -112789,7114:364:4,-144.5,16.5,0,0,-0.13605 -112790,7114:364:3,-144,16.5,0,0,-0.13605 -112791,7114:363:4,-143.5,16.5,0,0,-0.13605 -112792,7114:363:3,-143,16.5,0,0,-0.13605 -112793,7114:362:4,-142.5,16.5,0,0,-0.13605 -112794,7114:362:3,-142,16.5,0,0,-0.13605 -112795,7114:361:4,-141.5,16.5,0,0,-0.13605 -112796,7114:361:3,-141,16.5,0,0,-0.13605 -112797,7114:360:4,-140.5,16.5,0,0,-0.13605 -112798,7114:360:3,-140,16.5,0,0,-0.13605 -112799,7113:469:4,-139.5,16.5,0,0,-0.13605 -112800,7113:469:3,-139,16.5,0,0,-0.13605 -112801,7113:468:4,-138.5,16.5,0,0,-0.13605 -112802,7113:468:3,-138,16.5,0,0,-0.13605 -112803,7113:467:4,-137.5,16.5,0,0,-0.13605 -112804,7113:467:3,-137,16.5,0,0,-0.13605 -112805,7113:466:4,-136.5,16.5,0,0,-0.13605 -112806,7113:466:3,-136,16.5,0,0,-0.13605 -112807,7113:465:4,-135.5,16.5,0,0,-0.13605 -112808,7113:465:3,-135,16.5,0,0,-0.13605 -112809,7113:364:4,-134.5,16.5,0,0,-0.13605 -112810,7113:364:3,-134,16.5,0,0,-0.13605 -112811,7113:363:4,-133.5,16.5,0,0,-0.13605 -112812,7113:363:3,-133,16.5,0,0,-0.13605 -112813,7113:362:4,-132.5,16.5,0,0,-0.13605 -112814,7113:362:3,-132,16.5,0,0,-0.13605 -112815,7113:361:4,-131.5,16.5,0,0,-0.13605 -112816,7113:361:3,-131,16.5,0,0,-0.13605 -112817,7113:360:4,-130.5,16.5,0,0,-0.13605 -112818,7113:360:3,-130,16.5,0,0,-0.13605 -112819,7112:469:4,-129.5,16.5,0,0,-0.13605 -112820,7112:469:3,-129,16.5,0,0,-0.13605 -112821,7112:468:4,-128.5,16.5,0,0,-0.13605 -112822,7112:468:3,-128,16.5,0,0,-0.13605 -112823,7112:467:4,-127.5,16.5,0,0,-0.13605 -112824,7112:467:3,-127,16.5,0,0,-0.13605 -112825,7112:466:4,-126.5,16.5,0,0,-0.13605 -112826,7112:466:3,-126,16.5,0,0,-0.13605 -112827,7112:465:4,-125.5,16.5,0,0,-0.13605 -112828,7112:465:3,-125,16.5,0,0,-0.13605 -112829,7112:364:4,-124.5,16.5,0,0,-0.13605 -112830,7112:364:3,-124,16.5,0,0,-0.13605 -112831,7112:363:4,-123.5,16.5,0,0,-0.13605 -112832,7112:363:3,-123,16.5,0,0,-0.13605 -112833,7112:362:4,-122.5,16.5,0,0,-0.13605 -112834,7112:362:3,-122,16.5,0,0,-0.13605 -112835,7112:361:4,-121.5,16.5,0,0,-0.13605 -112836,7112:361:3,-121,16.5,0,0,-0.13605 -112837,7112:360:4,-120.5,16.5,0,0,-0.13605 -112838,7112:360:3,-120,16.5,0,0,-0.13605 -112839,7111:469:4,-119.5,16.5,0,0,-0.13605 -112840,7111:469:3,-119,16.5,0,0,-0.13605 -112841,7111:468:4,-118.5,16.5,0,0,-0.13605 -112842,7111:468:3,-118,16.5,0,0,-0.13605 -112843,7111:467:4,-117.5,16.5,0,0,-0.13605 -112844,7111:467:3,-117,16.5,0,0,-0.13605 -112845,7111:466:4,-116.5,16.5,0,0,-0.13605 -112846,7111:466:3,-116,16.5,0,0,-0.13605 -112847,7111:465:4,-115.5,16.5,0,0,-0.13605 -112848,7111:465:3,-115,16.5,0,0,-0.13605 -112849,7111:362:3,-112,16.5,0,0,-0.13605 -112850,7111:361:4,-111.5,16.5,0,0,-0.13605 -112851,7111:361:3,-111,16.5,0,0,-0.13605 -112852,7109:467:3,-97,16.5,0,0,-0.13605 -112853,7109:466:4,-96.5,16.5,0,0,-0.13605 -112854,7109:466:3,-96,16.5,0,0,-0.13605 -112855,7109:465:4,-95.5,16.5,0,0,-0.13605 -112856,7109:465:3,-95,16.5,0,0,-0.13605 -112857,7109:364:4,-94.5,16.5,0,0,-0.13605 -112858,7109:364:3,-94,16.5,0,0,-0.13605 -112859,7109:363:4,-93.5,16.5,0,0,-0.13605 -112860,7109:363:3,-93,16.5,0,0,-0.13605 -112861,7109:362:4,-92.5,16.5,0,0,-0.13605 -112862,7109:362:3,-92,16.5,0,0,-0.13605 -112863,7109:361:4,-91.5,16.5,0,0,-0.13605 -112864,7109:361:3,-91,16.5,0,0,-0.13605 -112865,7109:360:4,-90.5,16.5,0,0,-0.13605 -112866,7109:360:3,-90,16.5,0,0,-0.13605 -112867,7108:469:4,-89.5,16.5,0,0,-0.13605 -112868,7108:469:3,-89,16.5,0,0,-0.13605 -112869,7108:468:4,-88.5,16.5,0,0,-0.13605 -112870,7108:468:3,-88,16.5,0,0,-0.13605 -112871,7108:467:4,-87.5,16.5,0,0,-0.13605 -112872,7108:467:3,-87,16.5,0,0,-0.13605 -112873,7108:466:4,-86.5,16.5,0,0,-0.13605 -112874,7108:466:3,-86,16.5,0,0,-0.13605 -112875,7108:465:4,-85.5,16.5,0,0,-0.13605 -112876,7108:465:3,-85,16.5,0,0,-0.13605 -112877,7108:364:4,-84.5,16.5,0,0,-0.13605 -112878,7108:364:3,-84,16.5,0,0,-0.13605 -112879,7108:363:4,-83.5,16.5,0,0,-0.13605 -112880,7108:363:3,-83,16.5,0,0,-0.13605 -112881,7108:360:3,-80,16.5,0,0,-0.13605 -112882,7107:469:4,-79.5,16.5,0,0,-0.147399 -112883,7107:469:3,-79,16.5,0,0,-0.149348 -112884,7107:468:4,-78.5,16.5,0,0,-0.145873 -112885,7107:468:3,-78,16.5,0,0,-0.144558 -112886,7107:467:4,-77.5,16.5,0,0,-0.143587 -112887,7107:467:3,-77,16.5,0,0,-0.137924 -112888,7107:466:4,-76.5,16.5,0,0,-0.13605 -112889,7107:466:3,-76,16.5,0,0,-0.13605 -112890,7107:465:4,-75.5,16.5,0,0,-0.13605 -112891,7107:465:3,-75,16.5,0,0,-0.13605 -112892,7107:364:4,-74.5,16.5,0,0,-0.13605 -112893,7107:364:3,-74,16.5,0,0,-0.13605 -112894,7107:363:4,-73.5,16.5,0,0,-0.13605 -112895,7107:363:3,-73,16.5,0,0,-0.13605 -112896,7107:362:4,-72.5,16.5,0,0,-0.13605 -112897,7107:362:3,-72,16.5,0,0,-0.13605 -112898,7107:361:4,-71.5,16.5,0,0,-0.13605 -112899,7107:361:3,-71,16.5,0,0,-0.13605 -112900,7107:360:4,-70.5,16.5,0,0,-0.13605 -112901,7107:360:3,-70,16.5,0,0,-0.13605 -112902,7106:469:4,-69.5,16.5,0,0,-0.13605 -112903,7106:469:3,-69,16.5,0,0,-0.13605 -112904,7106:468:4,-68.5,16.5,0,0,-0.13605 -112905,7106:468:3,-68,16.5,0,0,-0.13605 -112906,7106:467:4,-67.5,16.5,0,0,-0.13605 -112907,7106:467:3,-67,16.5,0,0,-0.13605 -112908,7106:466:4,-66.5,16.5,0,0,-0.13605 -112909,7106:466:3,-66,16.5,0,0,-0.13605 -112910,7106:465:4,-65.5,16.5,0,0,-0.13605 -112911,7106:465:3,-65,16.5,0,0,-0.13605 -112912,7106:364:4,-64.5,16.5,0,0,-0.13605 -112913,7106:364:3,-64,16.5,0,0,-0.13605 -112914,7106:363:4,-63.5,16.5,0,0,-0.13605 -112915,7106:363:3,-63,16.5,0,0,-0.13605 -112916,7106:362:4,-62.5,16.5,0,0,-0.13605 -112917,7106:362:3,-62,16.5,0,0,-0.13605 -112918,7106:361:4,-61.5,16.5,0,0,-0.13605 -112919,7106:361:3,-61,16.5,0,0,-0.13605 -112920,7106:360:4,-60.5,16.5,0,0,-0.13605 -112921,7106:360:3,-60,16.5,0,0,-0.13605 -112922,7105:469:4,-59.5,16.5,0,0,-0.13605 -112923,7105:469:3,-59,16.5,0,0,-0.13605 -112924,7105:468:4,-58.5,16.5,0,0,-0.13605 -112925,7105:468:3,-58,16.5,0,0,-0.13605 -112926,7105:467:4,-57.5,16.5,0,0,-0.13605 -112927,7105:467:3,-57,16.5,0,0,-0.13605 -112928,7105:466:4,-56.5,16.5,0,0,-0.13605 -112929,7105:466:3,-56,16.5,0,0,-0.13605 -112930,7105:465:4,-55.5,16.5,0,0,-0.13605 -112931,7105:465:3,-55,16.5,0,0,-0.13605 -112932,7105:364:4,-54.5,16.5,0,0,-0.13605 -112933,7105:364:3,-54,16.5,0,0,-0.13605 -112934,7105:363:4,-53.5,16.5,0,0,-0.13605 -112935,7105:363:3,-53,16.5,0,0,-0.13605 -112936,7105:362:4,-52.5,16.5,0,0,-0.13605 -112937,7105:362:3,-52,16.5,0,0,-0.13605 -112938,7105:361:4,-51.5,16.5,0,0,-0.13605 -112939,7105:361:3,-51,16.5,0,0,-0.13605 -112940,7105:360:4,-50.5,16.5,0,0,-0.13605 -112941,7105:360:3,-50,16.5,0,0,-0.13605 -112942,7104:469:4,-49.5,16.5,0,0,-0.13605 -112943,7104:469:3,-49,16.5,0,0,-0.13605 -112944,7104:468:4,-48.5,16.5,0,0,-0.13605 -112945,7104:468:3,-48,16.5,0,0,-0.13605 -112946,7104:467:4,-47.5,16.5,0,0,-0.13605 -112947,7104:467:3,-47,16.5,0,0,-0.13605 -112948,7104:466:4,-46.5,16.5,0,0,-0.13605 -112949,7104:466:3,-46,16.5,0,0,-0.13605 -112950,7104:465:4,-45.5,16.5,0,0,-0.13605 -112951,7104:465:3,-45,16.5,0,0,-0.13605 -112952,7104:364:4,-44.5,16.5,0,0,-0.13605 -112953,7104:364:3,-44,16.5,0,0,-0.13605 -112954,7104:363:4,-43.5,16.5,0,0,-0.13605 -112955,7104:363:3,-43,16.5,0,0,-0.13605 -112956,7104:362:4,-42.5,16.5,0,0,-0.13605 -112957,7104:362:3,-42,16.5,0,0,-0.13605 -112958,7104:361:4,-41.5,16.5,0,0,-0.13605 -112959,7104:361:3,-41,16.5,0,0,-0.13605 -112960,7104:360:4,-40.5,16.5,0,0,-0.13605 -112961,7104:360:3,-40,16.5,0,0,-0.13605 -112962,7103:469:4,-39.5,16.5,0,0,-0.13605 -112963,7103:469:3,-39,16.5,0,0,-0.13605 -112964,7103:468:4,-38.5,16.5,0,0,-0.13605 -112965,7103:468:3,-38,16.5,0,0,-0.13605 -112966,7103:467:4,-37.5,16.5,0,0,-0.13605 -112967,7103:467:3,-37,16.5,0,0,-0.13605 -112968,7103:466:4,-36.5,16.5,0,0,-0.13605 -112969,7103:466:3,-36,16.5,0,0,-0.13605 -112970,7103:465:4,-35.5,16.5,0,0,-0.13605 -112971,7103:465:3,-35,16.5,0,0,-0.13605 -112972,7103:364:4,-34.5,16.5,0,0,-0.13605 -112973,7103:364:3,-34,16.5,0,0,-0.13605 -112974,7103:363:4,-33.5,16.5,0,0,-0.13605 -112975,7103:363:3,-33,16.5,0,0,-0.13605 -112976,7103:362:4,-32.5,16.5,0,0,-0.13605 -112977,7103:362:3,-32,16.5,0,0,-0.13605 -112978,7103:361:4,-31.5,16.5,0,0,-0.13605 -112979,7103:361:3,-31,16.5,0,0,-0.13605 -112980,7103:360:4,-30.5,16.5,0,0,-0.13605 -112981,7103:360:3,-30,16.5,0,0,-0.13605 -112982,7102:469:4,-29.5,16.5,0,0,-0.13605 -112983,7102:469:3,-29,16.5,0,0,-0.13605 -112984,7102:468:4,-28.5,16.5,0,0,-0.13605 -112985,7102:468:3,-28,16.5,0,0,-0.13605 -112986,7102:467:4,-27.5,16.5,0,0,-0.13605 -112987,7102:467:3,-27,16.5,0,0,-0.13605 -112988,7102:466:4,-26.5,16.5,0,0,-0.13605 -112989,7102:466:3,-26,16.5,0,0,-0.13605 -112990,7102:465:4,-25.5,16.5,0,0,-0.13605 -112991,7102:465:3,-25,16.5,0,0,-0.13605 -112992,7102:364:4,-24.5,16.5,0,0,-0.13605 -112993,7102:364:3,-24,16.5,0,0,-0.13605 -112994,7102:363:4,-23.5,16.5,0,0,-0.13605 -112995,7102:363:3,-23,16.5,0,0,-0.13605 -112996,7102:362:4,-22.5,16.5,0,0,-0.13605 -112997,7102:362:3,-22,16.5,0,0,-0.13605 -112998,7102:361:4,-21.5,16.5,0,0,-0.13605 -112999,7102:361:3,-21,16.5,0,0,-0.13605 -113000,7102:360:4,-20.5,16.5,0,0,-0.13605 -113001,7102:360:3,-20,16.5,0,0,-0.13605 -113002,7101:469:4,-19.5,16.5,0,0,-0.13605 -113003,7101:469:3,-19,16.5,0,0,-0.13605 -113004,7101:468:4,-18.5,16.5,0,0,-0.13605 -113005,7101:468:3,-18,16.5,0,0,-0.13605 -113006,7101:467:4,-17.5,16.5,0,0,-0.13605 -113007,7101:467:3,-17,16.5,0,0,-0.13605 -113008,7101:466:4,-16.5,16.5,0,0,-0.13605 -113009,7101:466:3,-16,16.5,0,0,-0.13605 -113010,7101:465:4,-15.5,16.5,0,0,-0.13605 -113011,7101:465:3,-15,16.5,0,0,-0.13605 -113012,7101:364:4,-14.5,16.5,0,0,-0.13605 -113013,7101:364:3,-14,16.5,0,0,-0.13605 -113014,7101:363:4,-13.5,16.5,0,0,-0.13605 -113015,1103:363:4,33.5,16.5,0,0,-0.13605 -113016,1103:364:3,34,16.5,0,0,-0.13605 -113017,1103:364:4,34.5,16.5,0,0,-0.13605 -113018,1103:465:3,35,16.5,0,0,-0.13605 -113019,1104:469:3,49,16.5,0,0,-0.13605 -113020,1104:469:4,49.5,16.5,0,0,-0.13605 -113021,1105:360:3,50,16.5,0,0,-0.13605 -113022,1105:360:4,50.5,16.5,0,0,-0.13605 -113023,1105:361:3,51,16.5,0,0,-0.13605 -113024,1105:361:4,51.5,16.5,0,0,-0.13605 -113025,1105:362:3,52,16.5,0,0,-0.13605 -113026,1112:361:3,121,16.5,0,0,-0.13605 -113027,1112:361:4,121.5,16.5,0,0,-0.13605 -113028,1112:362:3,122,16.5,0,0,-0.13605 -113029,1112:362:4,122.5,16.5,0,0,-0.13605 -113030,1112:363:3,123,16.5,0,0,-0.13605 -113031,1112:363:4,123.5,16.5,0,0,-0.13605 -113032,1112:364:3,124,16.5,0,0,-0.13605 -113033,1112:364:4,124.5,16.5,0,0,-0.13605 -113034,1112:465:3,125,16.5,0,0,-0.13605 -113035,1112:465:4,125.5,16.5,0,0,-0.13605 -113036,1112:466:3,126,16.5,0,0,-0.13605 -113037,1112:466:4,126.5,16.5,0,0,-0.13605 -113038,1112:467:3,127,16.5,0,0,-0.13605 -113039,1112:467:4,127.5,16.5,0,0,-0.13605 -113040,1112:468:3,128,16.5,0,0,-0.13605 -113041,1112:468:4,128.5,16.5,0,0,-0.13605 -113042,1112:469:3,129,16.5,0,0,-0.13605 -113043,1112:469:4,129.5,16.5,0,0,-0.13605 -113044,1113:360:3,130,16.5,0,0,-0.13605 -113045,1113:360:4,130.5,16.5,0,0,-0.13605 -113046,1113:361:3,131,16.5,0,0,-0.13605 -113047,1113:361:4,131.5,16.5,0,0,-0.13605 -113048,1113:362:3,132,16.5,0,0,-0.13605 -113049,1113:362:4,132.5,16.5,0,0,-0.13605 -113050,1113:363:3,133,16.5,0,0,-0.13605 -113051,1113:363:4,133.5,16.5,0,0,-0.13605 -113052,1113:364:3,134,16.5,0,0,-0.13605 -113053,1113:364:4,134.5,16.5,0,0,-0.13605 -113054,1113:465:3,135,16.5,0,0,-0.13605 -113055,1113:465:4,135.5,16.5,0,0,-0.13605 -113056,1113:466:3,136,16.5,0,0,-0.13605 -113057,1113:466:4,136.5,16.5,0,0,-0.13605 -113058,1113:467:3,137,16.5,0,0,-0.13605 -113059,1113:467:4,137.5,16.5,0,0,-0.13605 -113060,1113:468:3,138,16.5,0,0,-0.13605 -113061,1113:468:4,138.5,16.5,0,0,-0.13605 -113062,1113:469:3,139,16.5,0,0,-0.13605 -113063,1113:469:4,139.5,16.5,0,0,-0.13605 -113064,1114:360:3,140,16.5,0,0,-0.13605 -113065,1114:360:4,140.5,16.5,0,0,-0.13605 -113066,1114:361:3,141,16.5,0,0,-0.13605 -113067,1114:361:4,141.5,16.5,0,0,-0.13605 -113068,1114:362:3,142,16.5,0,0,-0.13605 -113069,1114:362:4,142.5,16.5,0,0,-0.13605 -113070,1114:363:3,143,16.5,0,0,-0.13605 -113071,1114:363:4,143.5,16.5,0,0,-0.13605 -113072,1114:364:3,144,16.5,0,0,-0.13605 -113073,1114:364:4,144.5,16.5,0,0,-0.13605 -113074,1114:465:3,145,16.5,0,0,-0.13605 -113075,1114:465:4,145.5,16.5,0,0,-0.13605 -113076,1114:466:3,146,16.5,0,0,-0.13605 -113077,1114:466:4,146.5,16.5,0,0,-0.13605 -113078,1114:467:3,147,16.5,0,0,-0.13605 -113079,1114:467:4,147.5,16.5,0,0,-0.13605 -113080,1114:468:3,148,16.5,0,0,-0.13605 -113081,1114:468:4,148.5,16.5,0,0,-0.13605 -113082,1114:469:3,149,16.5,0,0,-0.13605 -113083,1114:469:4,149.5,16.5,0,0,-0.13605 -113084,1115:360:3,150,16.5,0,0,-0.13605 -113085,1115:360:4,150.5,16.5,0,0,-0.13605 -113086,1115:361:3,151,16.5,0,0,-0.13605 -113087,1115:361:4,151.5,16.5,0,0,-0.13605 -113088,1115:362:3,152,16.5,0,0,-0.13605 -113089,1115:362:4,152.5,16.5,0,0,-0.13605 -113090,1115:363:3,153,16.5,0,0,-0.13605 -113091,1115:363:4,153.5,16.5,0,0,-0.13605 -113092,1115:364:3,154,16.5,0,0,-0.13605 -113093,1115:364:4,154.5,16.5,0,0,-0.13605 -113094,1115:465:3,155,16.5,0,0,-0.13605 -113095,1115:465:4,155.5,16.5,0,0,-0.13605 -113096,1115:466:3,156,16.5,0,0,-0.13605 -113097,1115:466:4,156.5,16.5,0,0,-0.13605 -113098,1115:467:3,157,16.5,0,0,-0.13605 -113099,1115:467:4,157.5,16.5,0,0,-0.13605 -113100,1115:468:3,158,16.5,0,0,-0.13605 -113101,1115:468:4,158.5,16.5,0,0,-0.13605 -113102,1115:469:3,159,16.5,0,0,-0.13605 -113103,1115:469:4,159.5,16.5,0,0,-0.13605 -113104,1116:360:3,160,16.5,0,0,-0.13605 -113105,1116:360:4,160.5,16.5,0,0,-0.13605 -113106,1116:361:3,161,16.5,0,0,-0.13605 -113107,1116:361:4,161.5,16.5,0,0,-0.13605 -113108,1116:362:3,162,16.5,0,0,-0.13605 -113109,1116:362:4,162.5,16.5,0,0,-0.13605 -113110,1116:363:3,163,16.5,0,0,-0.13605 -113111,1116:363:4,163.5,16.5,0,0,-0.13605 -113112,1116:364:3,164,16.5,0,0,-0.13605 -113113,1116:364:4,164.5,16.5,0,0,-0.13605 -113114,1116:465:3,165,16.5,0,0,-0.13605 -113115,1116:465:4,165.5,16.5,0,0,-0.13605 -113116,1116:466:3,166,16.5,0,0,-0.13605 -113117,1116:466:4,166.5,16.5,0,0,-0.13605 -113118,1116:467:3,167,16.5,0,0,-0.13605 -113119,1116:467:4,167.5,16.5,0,0,-0.13605 -113120,1116:468:3,168,16.5,0,0,-0.13605 -113121,1116:468:4,168.5,16.5,0,0,-0.13605 -113122,1116:469:3,169,16.5,0,0,-0.13605 -113123,1116:469:4,169.5,16.5,0,0,-0.13605 -113124,1117:360:3,170,16.5,0,0,-0.13605 -113125,1117:360:4,170.5,16.5,0,0,-0.13605 -113126,1117:361:3,171,16.5,0,0,-0.13605 -113127,1117:361:4,171.5,16.5,0,0,-0.13605 -113128,1117:362:3,172,16.5,0,0,-0.13605 -113129,1117:362:4,172.5,16.5,0,0,-0.13605 -113130,1117:363:3,173,16.5,0,0,-0.13605 -113131,1117:363:4,173.5,16.5,0,0,-0.13605 -113132,1117:364:3,174,16.5,0,0,-0.13605 -113133,1117:364:4,174.5,16.5,0,0,-0.13605 -113134,1117:465:3,175,16.5,0,0,-0.13605 -113135,1117:465:4,175.5,16.5,0,0,-0.13605 -113136,1117:466:3,176,16.5,0,0,-0.13605 -113137,1117:466:4,176.5,16.5,0,0,-0.13605 -113138,1117:467:3,177,16.5,0,0,-0.13605 -113139,1117:467:4,177.5,16.5,0,0,-0.13605 -113140,1117:468:3,178,16.5,0,0,-0.13605 -113141,1117:468:4,178.5,16.5,0,0,-0.13605 -113142,1117:469:3,179,16.5,0,0,-0.13605 -113143,1117:469:4,179.5,16.5,0,0,-0.13605 -113144,1118:360:3,180,16.5,0,0,-0.13605 -113145,7118:370:1,-180,17,0,0,-0.13605 -113146,7117:479:2,-179.5,17,0,0,-0.13605 -113147,7117:479:1,-179,17,0,0,-0.13605 -113148,7117:478:2,-178.5,17,0,0,-0.13605 -113149,7117:478:1,-178,17,0,0,-0.13605 -113150,7117:477:2,-177.5,17,0,0,-0.13605 -113151,7117:477:1,-177,17,0,0,-0.13605 -113152,7117:476:2,-176.5,17,0,0,-0.13605 -113153,7117:476:1,-176,17,0,0,-0.13605 -113154,7117:475:2,-175.5,17,0,0,-0.13605 -113155,7117:475:1,-175,17,0,0,-0.13605 -113156,7117:374:2,-174.5,17,0,0,-0.13605 -113157,7117:374:1,-174,17,0,0,-0.13605 -113158,7117:373:2,-173.5,17,0,0,-0.13605 -113159,7117:373:1,-173,17,0,0,-0.13605 -113160,7117:372:2,-172.5,17,0,0,-0.13605 -113161,7117:372:1,-172,17,0,0,-0.13605 -113162,7117:371:2,-171.5,17,0,0,-0.13605 -113163,7117:371:1,-171,17,0,0,-0.13605 -113164,7117:370:2,-170.5,17,0,0,-0.13605 -113165,7117:370:1,-170,17,0,0,-0.13605 -113166,7116:479:2,-169.5,17,0,0,-0.13605 -113167,7116:479:1,-169,17,0,0,-0.13605 -113168,7116:478:2,-168.5,17,0,0,-0.13605 -113169,7116:478:1,-168,17,0,0,-0.13605 -113170,7116:477:2,-167.5,17,0,0,-0.13605 -113171,7116:477:1,-167,17,0,0,-0.13605 -113172,7116:476:2,-166.5,17,0,0,-0.13605 -113173,7116:476:1,-166,17,0,0,-0.13605 -113174,7116:475:2,-165.5,17,0,0,-0.13605 -113175,7116:475:1,-165,17,0,0,-0.13605 -113176,7116:374:2,-164.5,17,0,0,-0.13605 -113177,7116:374:1,-164,17,0,0,-0.13605 -113178,7116:373:2,-163.5,17,0,0,-0.13605 -113179,7116:373:1,-163,17,0,0,-0.13605 -113180,7116:372:2,-162.5,17,0,0,-0.13605 -113181,7116:372:1,-162,17,0,0,-0.13605 -113182,7116:371:2,-161.5,17,0,0,-0.13605 -113183,7116:371:1,-161,17,0,0,-0.13605 -113184,7116:370:2,-160.5,17,0,0,-0.13605 -113185,7116:370:1,-160,17,0,0,-0.13605 -113186,7115:479:2,-159.5,17,0,0,-0.13605 -113187,7115:479:1,-159,17,0,0,-0.13605 -113188,7115:478:2,-158.5,17,0,0,-0.13605 -113189,7115:478:1,-158,17,0,0,-0.13605 -113190,7115:477:2,-157.5,17,0,0,-0.13605 -113191,7115:477:1,-157,17,0,0,-0.13605 -113192,7115:476:2,-156.5,17,0,0,-0.13605 -113193,7115:476:1,-156,17,0,0,-0.13605 -113194,7115:475:2,-155.5,17,0,0,-0.13605 -113195,7115:475:1,-155,17,0,0,-0.13605 -113196,7115:374:2,-154.5,17,0,0,-0.13605 -113197,7115:374:1,-154,17,0,0,-0.13605 -113198,7115:373:2,-153.5,17,0,0,-0.13605 -113199,7115:373:1,-153,17,0,0,-0.13605 -113200,7115:372:2,-152.5,17,0,0,-0.13605 -113201,7115:372:1,-152,17,0,0,-0.13605 -113202,7115:371:2,-151.5,17,0,0,-0.13605 -113203,7115:371:1,-151,17,0,0,-0.13605 -113204,7115:370:2,-150.5,17,0,0,-0.13605 -113205,7115:370:1,-150,17,0,0,-0.13605 -113206,7114:479:2,-149.5,17,0,0,-0.13605 -113207,7114:479:1,-149,17,0,0,-0.13605 -113208,7114:478:2,-148.5,17,0,0,-0.13605 -113209,7114:478:1,-148,17,0,0,-0.13605 -113210,7114:477:2,-147.5,17,0,0,-0.13605 -113211,7114:477:1,-147,17,0,0,-0.13605 -113212,7114:476:2,-146.5,17,0,0,-0.13605 -113213,7114:476:1,-146,17,0,0,-0.13605 -113214,7114:475:2,-145.5,17,0,0,-0.13605 -113215,7114:475:1,-145,17,0,0,-0.13605 -113216,7114:374:2,-144.5,17,0,0,-0.13605 -113217,7114:374:1,-144,17,0,0,-0.13605 -113218,7114:373:2,-143.5,17,0,0,-0.13605 -113219,7114:373:1,-143,17,0,0,-0.13605 -113220,7114:372:2,-142.5,17,0,0,-0.13605 -113221,7114:372:1,-142,17,0,0,-0.13605 -113222,7114:371:2,-141.5,17,0,0,-0.13605 -113223,7114:371:1,-141,17,0,0,-0.13605 -113224,7114:370:2,-140.5,17,0,0,-0.13605 -113225,7114:370:1,-140,17,0,0,-0.13605 -113226,7113:479:2,-139.5,17,0,0,-0.13605 -113227,7113:479:1,-139,17,0,0,-0.13605 -113228,7113:478:2,-138.5,17,0,0,-0.13605 -113229,7113:478:1,-138,17,0,0,-0.13605 -113230,7113:477:2,-137.5,17,0,0,-0.13605 -113231,7113:477:1,-137,17,0,0,-0.13605 -113232,7113:476:2,-136.5,17,0,0,-0.13605 -113233,7113:476:1,-136,17,0,0,-0.13605 -113234,7113:475:2,-135.5,17,0,0,-0.13605 -113235,7113:475:1,-135,17,0,0,-0.13605 -113236,7113:374:2,-134.5,17,0,0,-0.13605 -113237,7113:374:1,-134,17,0,0,-0.13605 -113238,7113:373:2,-133.5,17,0,0,-0.13605 -113239,7113:373:1,-133,17,0,0,-0.13605 -113240,7113:372:2,-132.5,17,0,0,-0.13605 -113241,7113:372:1,-132,17,0,0,-0.13605 -113242,7113:371:2,-131.5,17,0,0,-0.13605 -113243,7113:371:1,-131,17,0,0,-0.13605 -113244,7113:370:2,-130.5,17,0,0,-0.13605 -113245,7113:370:1,-130,17,0,0,-0.13605 -113246,7112:479:2,-129.5,17,0,0,-0.13605 -113247,7112:479:1,-129,17,0,0,-0.13605 -113248,7112:478:2,-128.5,17,0,0,-0.13605 -113249,7112:478:1,-128,17,0,0,-0.13605 -113250,7112:477:2,-127.5,17,0,0,-0.13605 -113251,7112:477:1,-127,17,0,0,-0.13605 -113252,7112:476:2,-126.5,17,0,0,-0.13605 -113253,7112:476:1,-126,17,0,0,-0.13605 -113254,7112:475:2,-125.5,17,0,0,-0.13605 -113255,7112:475:1,-125,17,0,0,-0.13605 -113256,7112:374:2,-124.5,17,0,0,-0.13605 -113257,7112:374:1,-124,17,0,0,-0.13605 -113258,7112:373:2,-123.5,17,0,0,-0.13605 -113259,7112:373:1,-123,17,0,0,-0.13605 -113260,7112:372:2,-122.5,17,0,0,-0.13605 -113261,7112:372:1,-122,17,0,0,-0.13605 -113262,7112:371:2,-121.5,17,0,0,-0.13605 -113263,7112:371:1,-121,17,0,0,-0.13605 -113264,7112:370:2,-120.5,17,0,0,-0.13605 -113265,7112:370:1,-120,17,0,0,-0.13605 -113266,7111:479:2,-119.5,17,0,0,-0.13605 -113267,7111:479:1,-119,17,0,0,-0.13605 -113268,7111:478:2,-118.5,17,0,0,-0.13605 -113269,7111:478:1,-118,17,0,0,-0.13605 -113270,7111:477:2,-117.5,17,0,0,-0.13605 -113271,7111:477:1,-117,17,0,0,-0.13605 -113272,7111:476:2,-116.5,17,0,0,-0.13605 -113273,7111:476:1,-116,17,0,0,-0.13605 -113274,7111:475:2,-115.5,17,0,0,-0.13605 -113275,7111:475:1,-115,17,0,0,-0.13605 -113276,7111:374:2,-114.5,17,0,0,-0.13605 -113277,7111:372:2,-112.5,17,0,0,-0.13605 -113278,7111:372:1,-112,17,0,0,-0.13605 -113279,7111:371:2,-111.5,17,0,0,-0.13605 -113280,7109:476:2,-96.5,17,0,0,-0.13605 -113281,7109:476:1,-96,17,0,0,-0.13605 -113282,7109:475:2,-95.5,17,0,0,-0.13605 -113283,7109:475:1,-95,17,0,0,-0.13605 -113284,7109:374:2,-94.5,17,0,0,-0.13605 -113285,7109:374:1,-94,17,0,0,-0.13605 -113286,7109:373:2,-93.5,17,0,0,-0.13605 -113287,7109:373:1,-93,17,0,0,-0.13605 -113288,7109:372:2,-92.5,17,0,0,-0.13605 -113289,7109:372:1,-92,17,0,0,-0.13605 -113290,7109:371:2,-91.5,17,0,0,-0.13605 -113291,7109:371:1,-91,17,0,0,-0.13605 -113292,7109:370:2,-90.5,17,0,0,-0.13605 -113293,7109:370:1,-90,17,0,0,-0.13605 -113294,7108:479:2,-89.5,17,0,0,-0.13605 -113295,7108:479:1,-89,17,0,0,-0.13605 -113296,7108:478:2,-88.5,17,0,0,-0.13605 -113297,7108:478:1,-88,17,0,0,-0.13605 -113298,7108:477:2,-87.5,17,0,0,-0.13605 -113299,7108:477:1,-87,17,0,0,-0.13605 -113300,7108:476:2,-86.5,17,0,0,-0.13605 -113301,7108:476:1,-86,17,0,0,-0.13605 -113302,7108:475:2,-85.5,17,0,0,-0.13605 -113303,7108:475:1,-85,17,0,0,-0.13605 -113304,7108:374:2,-84.5,17,0,0,-0.13605 -113305,7108:374:1,-84,17,0,0,-0.13605 -113306,7108:373:2,-83.5,17,0,0,-0.13605 -113307,7108:373:1,-83,17,0,0,-0.13605 -113308,7108:370:2,-80.5,17,0,0,-0.13605 -113309,7108:370:1,-80,17,0,0,-0.13605 -113310,7107:479:2,-79.5,17,0,0,-0.140526 -113311,7107:479:1,-79,17,0,0,-0.145322 -113312,7107:478:2,-78.5,17,0,0,-0.137505 -113313,7107:478:1,-78,17,0,0,-0.137672 -113314,7107:477:2,-77.5,17,0,0,-0.140356 -113315,7107:477:1,-77,17,0,0,-0.136317 -113316,7107:476:2,-76.5,17,0,0,-0.13605 -113317,7107:476:1,-76,17,0,0,-0.13605 -113318,7107:475:2,-75.5,17,0,0,-0.13605 -113319,7107:475:1,-75,17,0,0,-0.13605 -113320,7107:374:2,-74.5,17,0,0,-0.13605 -113321,7107:374:1,-74,17,0,0,-0.13605 -113322,7107:373:2,-73.5,17,0,0,-0.13605 -113323,7107:373:1,-73,17,0,0,-0.13605 -113324,7107:372:2,-72.5,17,0,0,-0.13605 -113325,7107:372:1,-72,17,0,0,-0.13605 -113326,7107:371:2,-71.5,17,0,0,-0.13605 -113327,7107:371:1,-71,17,0,0,-0.13605 -113328,7107:370:2,-70.5,17,0,0,-0.13605 -113329,7107:370:1,-70,17,0,0,-0.13605 -113330,7106:479:2,-69.5,17,0,0,-0.13605 -113331,7106:479:1,-69,17,0,0,-0.13605 -113332,7106:478:2,-68.5,17,0,0,-0.13605 -113333,7106:478:1,-68,17,0,0,-0.13605 -113334,7106:477:2,-67.5,17,0,0,-0.13605 -113335,7106:477:1,-67,17,0,0,-0.13605 -113336,7106:476:2,-66.5,17,0,0,-0.13605 -113337,7106:476:1,-66,17,0,0,-0.13605 -113338,7106:475:2,-65.5,17,0,0,-0.13605 -113339,7106:475:1,-65,17,0,0,-0.13605 -113340,7106:374:2,-64.5,17,0,0,-0.13605 -113341,7106:374:1,-64,17,0,0,-0.13605 -113342,7106:373:2,-63.5,17,0,0,-0.13605 -113343,7106:373:1,-63,17,0,0,-0.13605 -113344,7106:372:2,-62.5,17,0,0,-0.13605 -113345,7106:372:1,-62,17,0,0,-0.13605 -113346,7106:371:2,-61.5,17,0,0,-0.13605 -113347,7106:371:1,-61,17,0,0,-0.13605 -113348,7106:370:2,-60.5,17,0,0,-0.13605 -113349,7106:370:1,-60,17,0,0,-0.13605 -113350,7105:479:2,-59.5,17,0,0,-0.13605 -113351,7105:479:1,-59,17,0,0,-0.13605 -113352,7105:478:2,-58.5,17,0,0,-0.13605 -113353,7105:478:1,-58,17,0,0,-0.13605 -113354,7105:477:2,-57.5,17,0,0,-0.13605 -113355,7105:477:1,-57,17,0,0,-0.13605 -113356,7105:476:2,-56.5,17,0,0,-0.13605 -113357,7105:476:1,-56,17,0,0,-0.13605 -113358,7105:475:2,-55.5,17,0,0,-0.13605 -113359,7105:475:1,-55,17,0,0,-0.13605 -113360,7105:374:2,-54.5,17,0,0,-0.13605 -113361,7105:374:1,-54,17,0,0,-0.13605 -113362,7105:373:2,-53.5,17,0,0,-0.13605 -113363,7105:373:1,-53,17,0,0,-0.13605 -113364,7105:372:2,-52.5,17,0,0,-0.13605 -113365,7105:372:1,-52,17,0,0,-0.13605 -113366,7105:371:2,-51.5,17,0,0,-0.13605 -113367,7105:371:1,-51,17,0,0,-0.13605 -113368,7105:370:2,-50.5,17,0,0,-0.13605 -113369,7105:370:1,-50,17,0,0,-0.13605 -113370,7104:479:2,-49.5,17,0,0,-0.13605 -113371,7104:479:1,-49,17,0,0,-0.13605 -113372,7104:478:2,-48.5,17,0,0,-0.13605 -113373,7104:478:1,-48,17,0,0,-0.13605 -113374,7104:477:2,-47.5,17,0,0,-0.13605 -113375,7104:477:1,-47,17,0,0,-0.13605 -113376,7104:476:2,-46.5,17,0,0,-0.13605 -113377,7104:476:1,-46,17,0,0,-0.13605 -113378,7104:475:2,-45.5,17,0,0,-0.13605 -113379,7104:475:1,-45,17,0,0,-0.13605 -113380,7104:374:2,-44.5,17,0,0,-0.13605 -113381,7104:374:1,-44,17,0,0,-0.13605 -113382,7104:373:2,-43.5,17,0,0,-0.13605 -113383,7104:373:1,-43,17,0,0,-0.13605 -113384,7104:372:2,-42.5,17,0,0,-0.13605 -113385,7104:372:1,-42,17,0,0,-0.13605 -113386,7104:371:2,-41.5,17,0,0,-0.13605 -113387,7104:371:1,-41,17,0,0,-0.13605 -113388,7104:370:2,-40.5,17,0,0,-0.13605 -113389,7104:370:1,-40,17,0,0,-0.13605 -113390,7103:479:2,-39.5,17,0,0,-0.13605 -113391,7103:479:1,-39,17,0,0,-0.13605 -113392,7103:478:2,-38.5,17,0,0,-0.13605 -113393,7103:478:1,-38,17,0,0,-0.13605 -113394,7103:477:2,-37.5,17,0,0,-0.13605 -113395,7103:477:1,-37,17,0,0,-0.13605 -113396,7103:476:2,-36.5,17,0,0,-0.13605 -113397,7103:476:1,-36,17,0,0,-0.13605 -113398,7103:475:2,-35.5,17,0,0,-0.13605 -113399,7103:475:1,-35,17,0,0,-0.13605 -113400,7103:374:2,-34.5,17,0,0,-0.13605 -113401,7103:374:1,-34,17,0,0,-0.13605 -113402,7103:373:2,-33.5,17,0,0,-0.13605 -113403,7103:373:1,-33,17,0,0,-0.13605 -113404,7103:372:2,-32.5,17,0,0,-0.13605 -113405,7103:372:1,-32,17,0,0,-0.13605 -113406,7103:371:2,-31.5,17,0,0,-0.13605 -113407,7103:371:1,-31,17,0,0,-0.13605 -113408,7103:370:2,-30.5,17,0,0,-0.13605 -113409,7103:370:1,-30,17,0,0,-0.13605 -113410,7102:479:2,-29.5,17,0,0,-0.13605 -113411,7102:479:1,-29,17,0,0,-0.13605 -113412,7102:478:2,-28.5,17,0,0,-0.13605 -113413,7102:478:1,-28,17,0,0,-0.13605 -113414,7102:477:2,-27.5,17,0,0,-0.13605 -113415,7102:477:1,-27,17,0,0,-0.13605 -113416,7102:476:2,-26.5,17,0,0,-0.13605 -113417,7102:476:1,-26,17,0,0,-0.13605 -113418,7102:475:2,-25.5,17,0,0,-0.13605 -113419,7102:475:1,-25,17,0,0,-0.13605 -113420,7102:374:2,-24.5,17,0,0,-0.13605 -113421,7102:374:1,-24,17,0,0,-0.13605 -113422,7102:373:2,-23.5,17,0,0,-0.13605 -113423,7102:373:1,-23,17,0,0,-0.13605 -113424,7102:372:2,-22.5,17,0,0,-0.13605 -113425,7102:372:1,-22,17,0,0,-0.13605 -113426,7102:371:2,-21.5,17,0,0,-0.13605 -113427,7102:371:1,-21,17,0,0,-0.13605 -113428,7102:370:2,-20.5,17,0,0,-0.13605 -113429,7102:370:1,-20,17,0,0,-0.13605 -113430,7101:479:2,-19.5,17,0,0,-0.13605 -113431,7101:479:1,-19,17,0,0,-0.13605 -113432,7101:478:2,-18.5,17,0,0,-0.13605 -113433,7101:478:1,-18,17,0,0,-0.13605 -113434,7101:477:2,-17.5,17,0,0,-0.13605 -113435,7101:476:2,-16.5,17,0,0,-0.13605 -113436,7101:476:1,-16,17,0,0,-0.13605 -113437,7101:475:2,-15.5,17,0,0,-0.13605 -113438,7101:475:1,-15,17,0,0,-0.13605 -113439,7101:374:2,-14.5,17,0,0,-0.13605 -113440,7101:374:1,-14,17,0,0,-0.13605 -113441,7101:373:2,-13.5,17,0,0,-0.13605 -113442,7101:373:1,-13,17,0,0,-0.13605 -113443,7101:372:2,-12.5,17,0,0,-0.13605 -113444,7101:372:1,-12,17,0,0,-0.13605 -113445,1103:373:1,33,17,0,0,-0.13605 -113446,1103:374:2,34.5,17,0,0,-0.13605 -113447,1104:478:2,48.5,17,0,0,-0.13605 -113448,1104:479:1,49,17,0,0,-0.13605 -113449,1104:479:2,49.5,17,0,0,-0.13605 -113450,1105:370:1,50,17,0,0,-0.13605 -113451,1105:370:2,50.5,17,0,0,-0.13605 -113452,1105:371:1,51,17,0,0,-0.13605 -113453,1112:372:1,122,17,0,0,-0.13605 -113454,1112:372:2,122.5,17,0,0,-0.13605 -113455,1112:373:1,123,17,0,0,-0.13605 -113456,1112:373:2,123.5,17,0,0,-0.13605 -113457,1112:374:1,124,17,0,0,-0.13605 -113458,1112:374:2,124.5,17,0,0,-0.13605 -113459,1112:475:1,125,17,0,0,-0.13605 -113460,1112:475:2,125.5,17,0,0,-0.13605 -113461,1112:476:1,126,17,0,0,-0.13605 -113462,1112:476:2,126.5,17,0,0,-0.13605 -113463,1112:477:1,127,17,0,0,-0.13605 -113464,1112:477:2,127.5,17,0,0,-0.13605 -113465,1112:478:1,128,17,0,0,-0.13605 -113466,1112:478:2,128.5,17,0,0,-0.13605 -113467,1112:479:1,129,17,0,0,-0.13605 -113468,1113:370:1,130,17,0,0,-0.13605 -113469,1113:370:2,130.5,17,0,0,-0.13605 -113470,1113:371:1,131,17,0,0,-0.13605 -113471,1113:371:2,131.5,17,0,0,-0.13605 -113472,1113:372:1,132,17,0,0,-0.13605 -113473,1113:372:2,132.5,17,0,0,-0.13605 -113474,1113:373:1,133,17,0,0,-0.13605 -113475,1113:373:2,133.5,17,0,0,-0.13605 -113476,1113:374:1,134,17,0,0,-0.13605 -113477,1113:374:2,134.5,17,0,0,-0.13605 -113478,1113:475:1,135,17,0,0,-0.13605 -113479,1113:475:2,135.5,17,0,0,-0.13605 -113480,1113:476:1,136,17,0,0,-0.13605 -113481,1113:476:2,136.5,17,0,0,-0.13605 -113482,1113:477:1,137,17,0,0,-0.13605 -113483,1113:477:2,137.5,17,0,0,-0.13605 -113484,1113:478:1,138,17,0,0,-0.13605 -113485,1113:478:2,138.5,17,0,0,-0.13605 -113486,1113:479:1,139,17,0,0,-0.13605 -113487,1113:479:2,139.5,17,0,0,-0.13605 -113488,1114:370:1,140,17,0,0,-0.13605 -113489,1114:370:2,140.5,17,0,0,-0.13605 -113490,1114:371:1,141,17,0,0,-0.13605 -113491,1114:371:2,141.5,17,0,0,-0.13605 -113492,1114:372:1,142,17,0,0,-0.13605 -113493,1114:372:2,142.5,17,0,0,-0.13605 -113494,1114:373:1,143,17,0,0,-0.13605 -113495,1114:373:2,143.5,17,0,0,-0.13605 -113496,1114:374:1,144,17,0,0,-0.13605 -113497,1114:374:2,144.5,17,0,0,-0.13605 -113498,1114:475:1,145,17,0,0,-0.13605 -113499,1114:475:2,145.5,17,0,0,-0.13605 -113500,1114:476:1,146,17,0,0,-0.13605 -113501,1114:476:2,146.5,17,0,0,-0.13605 -113502,1114:477:1,147,17,0,0,-0.13605 -113503,1114:477:2,147.5,17,0,0,-0.13605 -113504,1114:478:1,148,17,0,0,-0.13605 -113505,1114:478:2,148.5,17,0,0,-0.13605 -113506,1114:479:1,149,17,0,0,-0.13605 -113507,1114:479:2,149.5,17,0,0,-0.13605 -113508,1115:370:1,150,17,0,0,-0.13605 -113509,1115:370:2,150.5,17,0,0,-0.13605 -113510,1115:371:1,151,17,0,0,-0.13605 -113511,1115:371:2,151.5,17,0,0,-0.13605 -113512,1115:372:1,152,17,0,0,-0.13605 -113513,1115:372:2,152.5,17,0,0,-0.13605 -113514,1115:373:1,153,17,0,0,-0.13605 -113515,1115:373:2,153.5,17,0,0,-0.13605 -113516,1115:374:1,154,17,0,0,-0.13605 -113517,1115:374:2,154.5,17,0,0,-0.13605 -113518,1115:475:1,155,17,0,0,-0.13605 -113519,1115:475:2,155.5,17,0,0,-0.13605 -113520,1115:476:1,156,17,0,0,-0.13605 -113521,1115:476:2,156.5,17,0,0,-0.13605 -113522,1115:477:1,157,17,0,0,-0.13605 -113523,1115:477:2,157.5,17,0,0,-0.13605 -113524,1115:478:1,158,17,0,0,-0.13605 -113525,1115:478:2,158.5,17,0,0,-0.13605 -113526,1115:479:1,159,17,0,0,-0.13605 -113527,1115:479:2,159.5,17,0,0,-0.13605 -113528,1116:370:1,160,17,0,0,-0.13605 -113529,1116:370:2,160.5,17,0,0,-0.13605 -113530,1116:371:1,161,17,0,0,-0.13605 -113531,1116:371:2,161.5,17,0,0,-0.13605 -113532,1116:372:1,162,17,0,0,-0.13605 -113533,1116:372:2,162.5,17,0,0,-0.13605 -113534,1116:373:1,163,17,0,0,-0.13605 -113535,1116:373:2,163.5,17,0,0,-0.13605 -113536,1116:374:1,164,17,0,0,-0.13605 -113537,1116:374:2,164.5,17,0,0,-0.13605 -113538,1116:475:1,165,17,0,0,-0.13605 -113539,1116:475:2,165.5,17,0,0,-0.13605 -113540,1116:476:1,166,17,0,0,-0.13605 -113541,1116:476:2,166.5,17,0,0,-0.13605 -113542,1116:477:1,167,17,0,0,-0.13605 -113543,1116:477:2,167.5,17,0,0,-0.13605 -113544,1116:478:1,168,17,0,0,-0.13605 -113545,1116:478:2,168.5,17,0,0,-0.13605 -113546,1116:479:1,169,17,0,0,-0.13605 -113547,1116:479:2,169.5,17,0,0,-0.13605 -113548,1117:370:1,170,17,0,0,-0.13605 -113549,1117:370:2,170.5,17,0,0,-0.13605 -113550,1117:371:1,171,17,0,0,-0.13605 -113551,1117:371:2,171.5,17,0,0,-0.13605 -113552,1117:372:1,172,17,0,0,-0.13605 -113553,1117:372:2,172.5,17,0,0,-0.13605 -113554,1117:373:1,173,17,0,0,-0.13605 -113555,1117:373:2,173.5,17,0,0,-0.13605 -113556,1117:374:1,174,17,0,0,-0.13605 -113557,1117:374:2,174.5,17,0,0,-0.13605 -113558,1117:475:1,175,17,0,0,-0.13605 -113559,1117:475:2,175.5,17,0,0,-0.13605 -113560,1117:476:1,176,17,0,0,-0.13605 -113561,1117:476:2,176.5,17,0,0,-0.13605 -113562,1117:477:1,177,17,0,0,-0.13605 -113563,1117:477:2,177.5,17,0,0,-0.13605 -113564,1117:478:1,178,17,0,0,-0.13605 -113565,1117:478:2,178.5,17,0,0,-0.13605 -113566,1117:479:1,179,17,0,0,-0.13605 -113567,1117:479:2,179.5,17,0,0,-0.13605 -113568,1118:370:1,180,17,0,0,-0.13605 -113569,7118:370:3,-180,17.5,0,0,-0.13605 -113570,7117:479:4,-179.5,17.5,0,0,-0.13605 -113571,7117:479:3,-179,17.5,0,0,-0.13605 -113572,7117:478:4,-178.5,17.5,0,0,-0.13605 -113573,7117:478:3,-178,17.5,0,0,-0.13605 -113574,7117:477:4,-177.5,17.5,0,0,-0.13605 -113575,7117:477:3,-177,17.5,0,0,-0.13605 -113576,7117:476:4,-176.5,17.5,0,0,-0.13605 -113577,7117:476:3,-176,17.5,0,0,-0.13605 -113578,7117:475:4,-175.5,17.5,0,0,-0.13605 -113579,7117:475:3,-175,17.5,0,0,-0.13605 -113580,7117:374:4,-174.5,17.5,0,0,-0.13605 -113581,7117:374:3,-174,17.5,0,0,-0.13605 -113582,7117:373:4,-173.5,17.5,0,0,-0.13605 -113583,7117:373:3,-173,17.5,0,0,-0.13605 -113584,7117:372:4,-172.5,17.5,0,0,-0.13605 -113585,7117:372:3,-172,17.5,0,0,-0.13605 -113586,7117:371:4,-171.5,17.5,0,0,-0.13605 -113587,7117:371:3,-171,17.5,0,0,-0.13605 -113588,7117:370:4,-170.5,17.5,0,0,-0.13605 -113589,7117:370:3,-170,17.5,0,0,-0.13605 -113590,7116:479:4,-169.5,17.5,0,0,-0.13605 -113591,7116:479:3,-169,17.5,0,0,-0.13605 -113592,7116:478:4,-168.5,17.5,0,0,-0.13605 -113593,7116:478:3,-168,17.5,0,0,-0.13605 -113594,7116:477:4,-167.5,17.5,0,0,-0.13605 -113595,7116:477:3,-167,17.5,0,0,-0.13605 -113596,7116:476:4,-166.5,17.5,0,0,-0.13605 -113597,7116:476:3,-166,17.5,0,0,-0.13605 -113598,7116:475:4,-165.5,17.5,0,0,-0.13605 -113599,7116:475:3,-165,17.5,0,0,-0.13605 -113600,7116:374:4,-164.5,17.5,0,0,-0.13605 -113601,7116:374:3,-164,17.5,0,0,-0.13605 -113602,7116:373:4,-163.5,17.5,0,0,-0.13605 -113603,7116:373:3,-163,17.5,0,0,-0.13605 -113604,7116:372:4,-162.5,17.5,0,0,-0.13605 -113605,7116:372:3,-162,17.5,0,0,-0.13605 -113606,7116:371:4,-161.5,17.5,0,0,-0.13605 -113607,7116:371:3,-161,17.5,0,0,-0.13605 -113608,7116:370:4,-160.5,17.5,0,0,-0.13605 -113609,7116:370:3,-160,17.5,0,0,-0.13605 -113610,7115:479:4,-159.5,17.5,0,0,-0.13605 -113611,7115:479:3,-159,17.5,0,0,-0.13605 -113612,7115:478:4,-158.5,17.5,0,0,-0.13605 -113613,7115:478:3,-158,17.5,0,0,-0.13605 -113614,7115:477:4,-157.5,17.5,0,0,-0.13605 -113615,7115:477:3,-157,17.5,0,0,-0.13605 -113616,7115:476:4,-156.5,17.5,0,0,-0.13605 -113617,7115:476:3,-156,17.5,0,0,-0.13605 -113618,7115:475:4,-155.5,17.5,0,0,-0.13605 -113619,7115:475:3,-155,17.5,0,0,-0.13605 -113620,7115:374:4,-154.5,17.5,0,0,-0.13605 -113621,7115:374:3,-154,17.5,0,0,-0.13605 -113622,7115:373:4,-153.5,17.5,0,0,-0.13605 -113623,7115:373:3,-153,17.5,0,0,-0.13605 -113624,7115:372:4,-152.5,17.5,0,0,-0.13605 -113625,7115:372:3,-152,17.5,0,0,-0.13605 -113626,7115:371:4,-151.5,17.5,0,0,-0.13605 -113627,7115:371:3,-151,17.5,0,0,-0.13605 -113628,7115:370:4,-150.5,17.5,0,0,-0.13605 -113629,7115:370:3,-150,17.5,0,0,-0.13605 -113630,7114:479:4,-149.5,17.5,0,0,-0.13605 -113631,7114:479:3,-149,17.5,0,0,-0.13605 -113632,7114:478:4,-148.5,17.5,0,0,-0.13605 -113633,7114:478:3,-148,17.5,0,0,-0.13605 -113634,7114:477:4,-147.5,17.5,0,0,-0.13605 -113635,7114:477:3,-147,17.5,0,0,-0.13605 -113636,7114:476:4,-146.5,17.5,0,0,-0.13605 -113637,7114:476:3,-146,17.5,0,0,-0.13605 -113638,7114:475:4,-145.5,17.5,0,0,-0.13605 -113639,7114:475:3,-145,17.5,0,0,-0.13605 -113640,7114:374:4,-144.5,17.5,0,0,-0.13605 -113641,7114:374:3,-144,17.5,0,0,-0.13605 -113642,7114:373:4,-143.5,17.5,0,0,-0.13605 -113643,7114:373:3,-143,17.5,0,0,-0.13605 -113644,7114:372:4,-142.5,17.5,0,0,-0.13605 -113645,7114:372:3,-142,17.5,0,0,-0.13605 -113646,7114:371:4,-141.5,17.5,0,0,-0.13605 -113647,7114:371:3,-141,17.5,0,0,-0.13605 -113648,7114:370:4,-140.5,17.5,0,0,-0.13605 -113649,7114:370:3,-140,17.5,0,0,-0.13605 -113650,7113:479:4,-139.5,17.5,0,0,-0.13605 -113651,7113:479:3,-139,17.5,0,0,-0.13605 -113652,7113:478:4,-138.5,17.5,0,0,-0.13605 -113653,7113:478:3,-138,17.5,0,0,-0.13605 -113654,7113:477:4,-137.5,17.5,0,0,-0.13605 -113655,7113:477:3,-137,17.5,0,0,-0.13605 -113656,7113:476:4,-136.5,17.5,0,0,-0.13605 -113657,7113:476:3,-136,17.5,0,0,-0.13605 -113658,7113:475:4,-135.5,17.5,0,0,-0.13605 -113659,7113:475:3,-135,17.5,0,0,-0.13605 -113660,7113:374:4,-134.5,17.5,0,0,-0.13605 -113661,7113:374:3,-134,17.5,0,0,-0.13605 -113662,7113:373:4,-133.5,17.5,0,0,-0.13605 -113663,7113:373:3,-133,17.5,0,0,-0.13605 -113664,7113:372:4,-132.5,17.5,0,0,-0.13605 -113665,7113:372:3,-132,17.5,0,0,-0.13605 -113666,7113:371:4,-131.5,17.5,0,0,-0.13605 -113667,7113:371:3,-131,17.5,0,0,-0.13605 -113668,7113:370:4,-130.5,17.5,0,0,-0.13605 -113669,7113:370:3,-130,17.5,0,0,-0.13605 -113670,7112:479:4,-129.5,17.5,0,0,-0.13605 -113671,7112:479:3,-129,17.5,0,0,-0.13605 -113672,7112:478:4,-128.5,17.5,0,0,-0.13605 -113673,7112:478:3,-128,17.5,0,0,-0.13605 -113674,7112:477:4,-127.5,17.5,0,0,-0.13605 -113675,7112:477:3,-127,17.5,0,0,-0.13605 -113676,7112:476:4,-126.5,17.5,0,0,-0.13605 -113677,7112:476:3,-126,17.5,0,0,-0.13605 -113678,7112:475:4,-125.5,17.5,0,0,-0.13605 -113679,7112:475:3,-125,17.5,0,0,-0.13605 -113680,7112:374:4,-124.5,17.5,0,0,-0.13605 -113681,7112:374:3,-124,17.5,0,0,-0.13605 -113682,7112:373:4,-123.5,17.5,0,0,-0.13605 -113683,7112:373:3,-123,17.5,0,0,-0.13605 -113684,7112:372:4,-122.5,17.5,0,0,-0.13605 -113685,7112:372:3,-122,17.5,0,0,-0.13605 -113686,7112:371:4,-121.5,17.5,0,0,-0.13605 -113687,7112:371:3,-121,17.5,0,0,-0.13605 -113688,7112:370:4,-120.5,17.5,0,0,-0.13605 -113689,7112:370:3,-120,17.5,0,0,-0.13605 -113690,7111:479:4,-119.5,17.5,0,0,-0.13605 -113691,7111:479:3,-119,17.5,0,0,-0.13605 -113692,7111:478:4,-118.5,17.5,0,0,-0.13605 -113693,7111:478:3,-118,17.5,0,0,-0.13605 -113694,7111:477:4,-117.5,17.5,0,0,-0.13605 -113695,7111:477:3,-117,17.5,0,0,-0.13605 -113696,7111:476:4,-116.5,17.5,0,0,-0.13605 -113697,7111:476:3,-116,17.5,0,0,-0.13605 -113698,7111:475:4,-115.5,17.5,0,0,-0.13605 -113699,7111:475:3,-115,17.5,0,0,-0.13605 -113700,7111:374:4,-114.5,17.5,0,0,-0.13605 -113701,7111:373:3,-113,17.5,0,0,-0.13605 -113702,7111:372:4,-112.5,17.5,0,0,-0.13605 -113703,7109:475:3,-95,17.5,0,0,-0.13605 -113704,7109:374:4,-94.5,17.5,0,0,-0.13605 -113705,7109:374:3,-94,17.5,0,0,-0.13605 -113706,7109:373:4,-93.5,17.5,0,0,-0.13605 -113707,7109:373:3,-93,17.5,0,0,-0.13605 -113708,7109:372:4,-92.5,17.5,0,0,-0.13605 -113709,7109:372:3,-92,17.5,0,0,-0.13605 -113710,7109:371:4,-91.5,17.5,0,0,-0.13605 -113711,7109:371:3,-91,17.5,0,0,-0.13605 -113712,7109:370:4,-90.5,17.5,0,0,-0.13605 -113713,7109:370:3,-90,17.5,0,0,-0.13605 -113714,7108:479:4,-89.5,17.5,0,0,-0.13605 -113715,7108:479:3,-89,17.5,0,0,-0.13605 -113716,7108:478:4,-88.5,17.5,0,0,-0.13605 -113717,7108:478:3,-88,17.5,0,0,-0.13605 -113718,7108:477:4,-87.5,17.5,0,0,-0.13605 -113719,7108:477:3,-87,17.5,0,0,-0.13605 -113720,7108:476:4,-86.5,17.5,0,0,-0.13605 -113721,7108:476:3,-86,17.5,0,0,-0.13605 -113722,7108:475:4,-85.5,17.5,0,0,-0.13605 -113723,7108:475:3,-85,17.5,0,0,-0.13605 -113724,7108:374:4,-84.5,17.5,0,0,-0.13605 -113725,7108:374:3,-84,17.5,0,0,-0.13605 -113726,7108:373:4,-83.5,17.5,0,0,-0.13605 -113727,7108:373:3,-83,17.5,0,0,-0.13605 -113728,7108:370:4,-80.5,17.5,0,0,-0.13605 -113729,7108:370:3,-80,17.5,0,0,-0.13605 -113730,7107:479:4,-79.5,17.5,0,0,-0.142661 -113731,7107:479:3,-79,17.5,0,0,-0.140904 -113732,7107:478:4,-78.5,17.5,0,0,-0.13605 -113733,7107:478:3,-78,17.5,0,0,-0.13605 -113734,7107:477:4,-77.5,17.5,0,0,-0.13605 -113735,7107:477:3,-77,17.5,0,0,-0.13605 -113736,7107:476:4,-76.5,17.5,0,0,-0.13605 -113737,7107:476:3,-76,17.5,0,0,-0.13605 -113738,7107:475:4,-75.5,17.5,0,0,-0.13605 -113739,7107:475:3,-75,17.5,0,0,-0.13605 -113740,7107:374:4,-74.5,17.5,0,0,-0.13605 -113741,7107:374:3,-74,17.5,0,0,-0.13605 -113742,7107:373:4,-73.5,17.5,0,0,-0.13605 -113743,7107:373:3,-73,17.5,0,0,-0.13605 -113744,7107:372:4,-72.5,17.5,0,0,-0.13605 -113745,7107:372:3,-72,17.5,0,0,-0.13605 -113746,7107:371:4,-71.5,17.5,0,0,-0.13605 -113747,7107:371:3,-71,17.5,0,0,-0.13605 -113748,7107:370:4,-70.5,17.5,0,0,-0.13605 -113749,7107:370:3,-70,17.5,0,0,-0.13605 -113750,7106:479:4,-69.5,17.5,0,0,-0.13605 -113751,7106:479:3,-69,17.5,0,0,-0.13605 -113752,7106:478:4,-68.5,17.5,0,0,-0.13605 -113753,7106:478:3,-68,17.5,0,0,-0.13605 -113754,7106:477:4,-67.5,17.5,0,0,-0.13605 -113755,7106:477:3,-67,17.5,0,0,-0.13605 -113756,7106:476:4,-66.5,17.5,0,0,-0.13605 -113757,7106:476:3,-66,17.5,0,0,-0.13605 -113758,7106:475:4,-65.5,17.5,0,0,-0.13605 -113759,7106:475:3,-65,17.5,0,0,-0.13605 -113760,7106:374:4,-64.5,17.5,0,0,-0.13605 -113761,7106:374:3,-64,17.5,0,0,-0.13605 -113762,7106:373:4,-63.5,17.5,0,0,-0.13605 -113763,7106:373:3,-63,17.5,0,0,-0.13605 -113764,7106:372:4,-62.5,17.5,0,0,-0.13605 -113765,7106:372:3,-62,17.5,0,0,-0.13605 -113766,7106:371:4,-61.5,17.5,0,0,-0.13605 -113767,7106:371:3,-61,17.5,0,0,-0.13605 -113768,7106:370:4,-60.5,17.5,0,0,-0.13605 -113769,7106:370:3,-60,17.5,0,0,-0.13605 -113770,7105:479:4,-59.5,17.5,0,0,-0.13605 -113771,7105:479:3,-59,17.5,0,0,-0.13605 -113772,7105:478:4,-58.5,17.5,0,0,-0.13605 -113773,7105:478:3,-58,17.5,0,0,-0.13605 -113774,7105:477:4,-57.5,17.5,0,0,-0.13605 -113775,7105:477:3,-57,17.5,0,0,-0.13605 -113776,7105:476:4,-56.5,17.5,0,0,-0.13605 -113777,7105:476:3,-56,17.5,0,0,-0.13605 -113778,7105:475:4,-55.5,17.5,0,0,-0.13605 -113779,7105:475:3,-55,17.5,0,0,-0.13605 -113780,7105:374:4,-54.5,17.5,0,0,-0.13605 -113781,7105:374:3,-54,17.5,0,0,-0.13605 -113782,7105:373:4,-53.5,17.5,0,0,-0.13605 -113783,7105:373:3,-53,17.5,0,0,-0.13605 -113784,7105:372:4,-52.5,17.5,0,0,-0.13605 -113785,7105:372:3,-52,17.5,0,0,-0.13605 -113786,7105:371:4,-51.5,17.5,0,0,-0.13605 -113787,7105:371:3,-51,17.5,0,0,-0.13605 -113788,7105:370:4,-50.5,17.5,0,0,-0.13605 -113789,7105:370:3,-50,17.5,0,0,-0.13605 -113790,7104:479:4,-49.5,17.5,0,0,-0.13605 -113791,7104:479:3,-49,17.5,0,0,-0.13605 -113792,7104:478:4,-48.5,17.5,0,0,-0.13605 -113793,7104:478:3,-48,17.5,0,0,-0.13605 -113794,7104:477:4,-47.5,17.5,0,0,-0.13605 -113795,7104:477:3,-47,17.5,0,0,-0.13605 -113796,7104:476:4,-46.5,17.5,0,0,-0.13605 -113797,7104:476:3,-46,17.5,0,0,-0.13605 -113798,7104:475:4,-45.5,17.5,0,0,-0.13605 -113799,7104:475:3,-45,17.5,0,0,-0.13605 -113800,7104:374:4,-44.5,17.5,0,0,-0.13605 -113801,7104:374:3,-44,17.5,0,0,-0.13605 -113802,7104:373:4,-43.5,17.5,0,0,-0.13605 -113803,7104:373:3,-43,17.5,0,0,-0.13605 -113804,7104:372:4,-42.5,17.5,0,0,-0.13605 -113805,7104:372:3,-42,17.5,0,0,-0.13605 -113806,7104:371:4,-41.5,17.5,0,0,-0.13605 -113807,7104:371:3,-41,17.5,0,0,-0.13605 -113808,7104:370:4,-40.5,17.5,0,0,-0.13605 -113809,7104:370:3,-40,17.5,0,0,-0.13605 -113810,7103:479:4,-39.5,17.5,0,0,-0.13605 -113811,7103:479:3,-39,17.5,0,0,-0.13605 -113812,7103:478:4,-38.5,17.5,0,0,-0.13605 -113813,7103:478:3,-38,17.5,0,0,-0.13605 -113814,7103:477:4,-37.5,17.5,0,0,-0.13605 -113815,7103:477:3,-37,17.5,0,0,-0.13605 -113816,7103:476:4,-36.5,17.5,0,0,-0.13605 -113817,7103:476:3,-36,17.5,0,0,-0.13605 -113818,7103:475:4,-35.5,17.5,0,0,-0.13605 -113819,7103:475:3,-35,17.5,0,0,-0.13605 -113820,7103:374:4,-34.5,17.5,0,0,-0.13605 -113821,7103:374:3,-34,17.5,0,0,-0.13605 -113822,7103:373:4,-33.5,17.5,0,0,-0.13605 -113823,7103:373:3,-33,17.5,0,0,-0.13605 -113824,7103:372:4,-32.5,17.5,0,0,-0.13605 -113825,7103:372:3,-32,17.5,0,0,-0.13605 -113826,7103:371:4,-31.5,17.5,0,0,-0.13605 -113827,7103:371:3,-31,17.5,0,0,-0.13605 -113828,7103:370:4,-30.5,17.5,0,0,-0.13605 -113829,7103:370:3,-30,17.5,0,0,-0.13605 -113830,7102:479:4,-29.5,17.5,0,0,-0.13605 -113831,7102:479:3,-29,17.5,0,0,-0.13605 -113832,7102:478:4,-28.5,17.5,0,0,-0.13605 -113833,7102:478:3,-28,17.5,0,0,-0.13605 -113834,7102:477:4,-27.5,17.5,0,0,-0.13605 -113835,7102:477:3,-27,17.5,0,0,-0.13605 -113836,7102:476:4,-26.5,17.5,0,0,-0.13605 -113837,7102:476:3,-26,17.5,0,0,-0.13605 -113838,7102:475:4,-25.5,17.5,0,0,-0.13605 -113839,7102:475:3,-25,17.5,0,0,-0.13605 -113840,7102:374:4,-24.5,17.5,0,0,-0.13605 -113841,7102:374:3,-24,17.5,0,0,-0.13605 -113842,7102:373:4,-23.5,17.5,0,0,-0.13605 -113843,7102:373:3,-23,17.5,0,0,-0.13605 -113844,7102:372:4,-22.5,17.5,0,0,-0.13605 -113845,7102:372:3,-22,17.5,0,0,-0.13605 -113846,7102:371:4,-21.5,17.5,0,0,-0.13605 -113847,7102:371:3,-21,17.5,0,0,-0.13605 -113848,7102:370:4,-20.5,17.5,0,0,-0.13605 -113849,7102:370:3,-20,17.5,0,0,-0.13605 -113850,7101:479:4,-19.5,17.5,0,0,-0.13605 -113851,7101:479:3,-19,17.5,0,0,-0.13605 -113852,7101:478:4,-18.5,17.5,0,0,-0.13605 -113853,7101:478:3,-18,17.5,0,0,-0.13605 -113854,7101:477:4,-17.5,17.5,0,0,-0.13605 -113855,7101:477:3,-17,17.5,0,0,-0.13605 -113856,7101:476:4,-16.5,17.5,0,0,-0.13605 -113857,7101:476:3,-16,17.5,0,0,-0.13605 -113858,7101:475:4,-15.5,17.5,0,0,-0.13605 -113859,7101:475:3,-15,17.5,0,0,-0.13605 -113860,7101:374:4,-14.5,17.5,0,0,-0.13605 -113861,7101:373:4,-13.5,17.5,0,0,-0.13605 -113862,7101:373:3,-13,17.5,0,0,-0.13605 -113863,7101:372:4,-12.5,17.5,0,0,-0.13605 -113864,7101:372:3,-12,17.5,0,0,-0.13605 -113865,7101:371:4,-11.5,17.5,0,0,-0.13605 -113866,7101:371:3,-11,17.5,0,0,-0.13605 -113867,1103:372:4,32.5,17.5,0,0,-0.13605 -113868,1104:478:4,48.5,17.5,0,0,-0.13605 -113869,1104:479:3,49,17.5,0,0,-0.13605 -113870,1104:479:4,49.5,17.5,0,0,-0.13605 -113871,1105:370:3,50,17.5,0,0,-0.13605 -113872,1105:370:4,50.5,17.5,0,0,-0.13605 -113873,1112:372:3,122,17.5,0,0,-0.13605 -113874,1112:372:4,122.5,17.5,0,0,-0.13605 -113875,1112:373:3,123,17.5,0,0,-0.13605 -113876,1112:373:4,123.5,17.5,0,0,-0.13605 -113877,1112:374:3,124,17.5,0,0,-0.13605 -113878,1112:374:4,124.5,17.5,0,0,-0.13605 -113879,1112:475:3,125,17.5,0,0,-0.13605 -113880,1112:475:4,125.5,17.5,0,0,-0.13605 -113881,1112:476:3,126,17.5,0,0,-0.13605 -113882,1112:476:4,126.5,17.5,0,0,-0.13605 -113883,1112:477:3,127,17.5,0,0,-0.13605 -113884,1112:477:4,127.5,17.5,0,0,-0.13605 -113885,1112:478:3,128,17.5,0,0,-0.13605 -113886,1112:478:4,128.5,17.5,0,0,-0.13605 -113887,1112:479:3,129,17.5,0,0,-0.13605 -113888,1112:479:4,129.5,17.5,0,0,-0.13605 -113889,1113:370:3,130,17.5,0,0,-0.13605 -113890,1113:370:4,130.5,17.5,0,0,-0.13605 -113891,1113:371:3,131,17.5,0,0,-0.13605 -113892,1113:371:4,131.5,17.5,0,0,-0.13605 -113893,1113:372:3,132,17.5,0,0,-0.13605 -113894,1113:372:4,132.5,17.5,0,0,-0.13605 -113895,1113:373:3,133,17.5,0,0,-0.13605 -113896,1113:373:4,133.5,17.5,0,0,-0.13605 -113897,1113:374:3,134,17.5,0,0,-0.13605 -113898,1113:374:4,134.5,17.5,0,0,-0.13605 -113899,1113:475:3,135,17.5,0,0,-0.13605 -113900,1113:475:4,135.5,17.5,0,0,-0.13605 -113901,1113:476:3,136,17.5,0,0,-0.13605 -113902,1113:476:4,136.5,17.5,0,0,-0.13605 -113903,1113:477:3,137,17.5,0,0,-0.13605 -113904,1113:477:4,137.5,17.5,0,0,-0.13605 -113905,1113:478:3,138,17.5,0,0,-0.13605 -113906,1113:478:4,138.5,17.5,0,0,-0.13605 -113907,1113:479:3,139,17.5,0,0,-0.13605 -113908,1113:479:4,139.5,17.5,0,0,-0.13605 -113909,1114:370:3,140,17.5,0,0,-0.13605 -113910,1114:370:4,140.5,17.5,0,0,-0.13605 -113911,1114:371:3,141,17.5,0,0,-0.13605 -113912,1114:371:4,141.5,17.5,0,0,-0.13605 -113913,1114:372:3,142,17.5,0,0,-0.13605 -113914,1114:372:4,142.5,17.5,0,0,-0.13605 -113915,1114:373:3,143,17.5,0,0,-0.13605 -113916,1114:373:4,143.5,17.5,0,0,-0.13605 -113917,1114:374:3,144,17.5,0,0,-0.13605 -113918,1114:374:4,144.5,17.5,0,0,-0.13605 -113919,1114:475:3,145,17.5,0,0,-0.13605 -113920,1114:475:4,145.5,17.5,0,0,-0.13605 -113921,1114:476:3,146,17.5,0,0,-0.13605 -113922,1114:476:4,146.5,17.5,0,0,-0.13605 -113923,1114:477:3,147,17.5,0,0,-0.13605 -113924,1114:477:4,147.5,17.5,0,0,-0.13605 -113925,1114:478:3,148,17.5,0,0,-0.13605 -113926,1114:478:4,148.5,17.5,0,0,-0.13605 -113927,1114:479:3,149,17.5,0,0,-0.13605 -113928,1114:479:4,149.5,17.5,0,0,-0.13605 -113929,1115:370:3,150,17.5,0,0,-0.13605 -113930,1115:370:4,150.5,17.5,0,0,-0.13605 -113931,1115:371:3,151,17.5,0,0,-0.13605 -113932,1115:371:4,151.5,17.5,0,0,-0.13605 -113933,1115:372:3,152,17.5,0,0,-0.13605 -113934,1115:372:4,152.5,17.5,0,0,-0.13605 -113935,1115:373:3,153,17.5,0,0,-0.13605 -113936,1115:373:4,153.5,17.5,0,0,-0.13605 -113937,1115:374:3,154,17.5,0,0,-0.13605 -113938,1115:374:4,154.5,17.5,0,0,-0.13605 -113939,1115:475:3,155,17.5,0,0,-0.13605 -113940,1115:475:4,155.5,17.5,0,0,-0.13605 -113941,1115:476:3,156,17.5,0,0,-0.13605 -113942,1115:476:4,156.5,17.5,0,0,-0.13605 -113943,1115:477:3,157,17.5,0,0,-0.13605 -113944,1115:477:4,157.5,17.5,0,0,-0.13605 -113945,1115:478:3,158,17.5,0,0,-0.13605 -113946,1115:478:4,158.5,17.5,0,0,-0.13605 -113947,1115:479:3,159,17.5,0,0,-0.13605 -113948,1115:479:4,159.5,17.5,0,0,-0.13605 -113949,1116:370:3,160,17.5,0,0,-0.13605 -113950,1116:370:4,160.5,17.5,0,0,-0.13605 -113951,1116:371:3,161,17.5,0,0,-0.13605 -113952,1116:371:4,161.5,17.5,0,0,-0.13605 -113953,1116:372:3,162,17.5,0,0,-0.13605 -113954,1116:372:4,162.5,17.5,0,0,-0.13605 -113955,1116:373:3,163,17.5,0,0,-0.13605 -113956,1116:373:4,163.5,17.5,0,0,-0.13605 -113957,1116:374:3,164,17.5,0,0,-0.13605 -113958,1116:374:4,164.5,17.5,0,0,-0.13605 -113959,1116:475:3,165,17.5,0,0,-0.13605 -113960,1116:475:4,165.5,17.5,0,0,-0.13605 -113961,1116:476:3,166,17.5,0,0,-0.13605 -113962,1116:476:4,166.5,17.5,0,0,-0.13605 -113963,1116:477:3,167,17.5,0,0,-0.13605 -113964,1116:477:4,167.5,17.5,0,0,-0.13605 -113965,1116:478:3,168,17.5,0,0,-0.13605 -113966,1116:478:4,168.5,17.5,0,0,-0.13605 -113967,1116:479:3,169,17.5,0,0,-0.13605 -113968,1116:479:4,169.5,17.5,0,0,-0.13605 -113969,1117:370:3,170,17.5,0,0,-0.13605 -113970,1117:370:4,170.5,17.5,0,0,-0.13605 -113971,1117:371:3,171,17.5,0,0,-0.13605 -113972,1117:371:4,171.5,17.5,0,0,-0.13605 -113973,1117:372:3,172,17.5,0,0,-0.13605 -113974,1117:372:4,172.5,17.5,0,0,-0.13605 -113975,1117:373:3,173,17.5,0,0,-0.13605 -113976,1117:373:4,173.5,17.5,0,0,-0.13605 -113977,1117:374:3,174,17.5,0,0,-0.13605 -113978,1117:374:4,174.5,17.5,0,0,-0.13605 -113979,1117:475:3,175,17.5,0,0,-0.13605 -113980,1117:475:4,175.5,17.5,0,0,-0.13605 -113981,1117:476:3,176,17.5,0,0,-0.13605 -113982,1117:476:4,176.5,17.5,0,0,-0.13605 -113983,1117:477:3,177,17.5,0,0,-0.13605 -113984,1117:477:4,177.5,17.5,0,0,-0.13605 -113985,1117:478:3,178,17.5,0,0,-0.13605 -113986,1117:478:4,178.5,17.5,0,0,-0.13605 -113987,1117:479:3,179,17.5,0,0,-0.13605 -113988,1117:479:4,179.5,17.5,0,0,-0.13605 -113989,1118:370:3,180,17.5,0,0,-0.13605 -113990,7118:380:1,-180,18,0,0,-0.13605 -113991,7117:489:2,-179.5,18,0,0,-0.13605 -113992,7117:489:1,-179,18,0,0,-0.13605 -113993,7117:488:2,-178.5,18,0,0,-0.13605 -113994,7117:488:1,-178,18,0,0,-0.13605 -113995,7117:487:2,-177.5,18,0,0,-0.13605 -113996,7117:487:1,-177,18,0,0,-0.13605 -113997,7117:486:2,-176.5,18,0,0,-0.13605 -113998,7117:486:1,-176,18,0,0,-0.13605 -113999,7117:485:2,-175.5,18,0,0,-0.13605 -114000,7117:485:1,-175,18,0,0,-0.13605 -114001,7117:384:2,-174.5,18,0,0,-0.13605 -114002,7117:384:1,-174,18,0,0,-0.13605 -114003,7117:383:2,-173.5,18,0,0,-0.13605 -114004,7117:383:1,-173,18,0,0,-0.13605 -114005,7117:382:2,-172.5,18,0,0,-0.13605 -114006,7117:382:1,-172,18,0,0,-0.13605 -114007,7117:381:2,-171.5,18,0,0,-0.13605 -114008,7117:381:1,-171,18,0,0,-0.13605 -114009,7117:380:2,-170.5,18,0,0,-0.13605 -114010,7117:380:1,-170,18,0,0,-0.13605 -114011,7116:489:2,-169.5,18,0,0,-0.13605 -114012,7116:489:1,-169,18,0,0,-0.13605 -114013,7116:488:2,-168.5,18,0,0,-0.13605 -114014,7116:488:1,-168,18,0,0,-0.13605 -114015,7116:487:2,-167.5,18,0,0,-0.13605 -114016,7116:487:1,-167,18,0,0,-0.13605 -114017,7116:486:2,-166.5,18,0,0,-0.13605 -114018,7116:486:1,-166,18,0,0,-0.13605 -114019,7116:485:2,-165.5,18,0,0,-0.13605 -114020,7116:485:1,-165,18,0,0,-0.13605 -114021,7116:384:2,-164.5,18,0,0,-0.13605 -114022,7116:384:1,-164,18,0,0,-0.13605 -114023,7116:383:2,-163.5,18,0,0,-0.13605 -114024,7116:383:1,-163,18,0,0,-0.13605 -114025,7116:382:2,-162.5,18,0,0,-0.13605 -114026,7116:382:1,-162,18,0,0,-0.13605 -114027,7116:381:2,-161.5,18,0,0,-0.13605 -114028,7116:381:1,-161,18,0,0,-0.13605 -114029,7116:380:2,-160.5,18,0,0,-0.13605 -114030,7116:380:1,-160,18,0,0,-0.13605 -114031,7115:489:2,-159.5,18,0,0,-0.13605 -114032,7115:489:1,-159,18,0,0,-0.13605 -114033,7115:488:2,-158.5,18,0,0,-0.13605 -114034,7115:488:1,-158,18,0,0,-0.13605 -114035,7115:487:2,-157.5,18,0,0,-0.13605 -114036,7115:487:1,-157,18,0,0,-0.13605 -114037,7115:486:2,-156.5,18,0,0,-0.13605 -114038,7115:486:1,-156,18,0,0,-0.13605 -114039,7115:485:2,-155.5,18,0,0,-0.13605 -114040,7115:485:1,-155,18,0,0,-0.13605 -114041,7115:384:2,-154.5,18,0,0,-0.13605 -114042,7115:384:1,-154,18,0,0,-0.13605 -114043,7115:383:2,-153.5,18,0,0,-0.13605 -114044,7115:383:1,-153,18,0,0,-0.13605 -114045,7115:382:2,-152.5,18,0,0,-0.13605 -114046,7115:382:1,-152,18,0,0,-0.13605 -114047,7115:381:2,-151.5,18,0,0,-0.13605 -114048,7115:381:1,-151,18,0,0,-0.13605 -114049,7115:380:2,-150.5,18,0,0,-0.13605 -114050,7115:380:1,-150,18,0,0,-0.13605 -114051,7114:489:2,-149.5,18,0,0,-0.13605 -114052,7114:489:1,-149,18,0,0,-0.13605 -114053,7114:488:2,-148.5,18,0,0,-0.13605 -114054,7114:488:1,-148,18,0,0,-0.13605 -114055,7114:487:2,-147.5,18,0,0,-0.13605 -114056,7114:487:1,-147,18,0,0,-0.13605 -114057,7114:486:2,-146.5,18,0,0,-0.13605 -114058,7114:486:1,-146,18,0,0,-0.13605 -114059,7114:485:2,-145.5,18,0,0,-0.13605 -114060,7114:485:1,-145,18,0,0,-0.13605 -114061,7114:384:2,-144.5,18,0,0,-0.13605 -114062,7114:384:1,-144,18,0,0,-0.13605 -114063,7114:383:2,-143.5,18,0,0,-0.13605 -114064,7114:383:1,-143,18,0,0,-0.13605 -114065,7114:382:2,-142.5,18,0,0,-0.13605 -114066,7114:382:1,-142,18,0,0,-0.13605 -114067,7114:381:2,-141.5,18,0,0,-0.13605 -114068,7114:381:1,-141,18,0,0,-0.13605 -114069,7114:380:2,-140.5,18,0,0,-0.13605 -114070,7114:380:1,-140,18,0,0,-0.13605 -114071,7113:489:2,-139.5,18,0,0,-0.13605 -114072,7113:489:1,-139,18,0,0,-0.13605 -114073,7113:488:2,-138.5,18,0,0,-0.13605 -114074,7113:488:1,-138,18,0,0,-0.13605 -114075,7113:487:2,-137.5,18,0,0,-0.13605 -114076,7113:487:1,-137,18,0,0,-0.13605 -114077,7113:486:2,-136.5,18,0,0,-0.13605 -114078,7113:486:1,-136,18,0,0,-0.13605 -114079,7113:485:2,-135.5,18,0,0,-0.13605 -114080,7113:485:1,-135,18,0,0,-0.13605 -114081,7113:384:2,-134.5,18,0,0,-0.13605 -114082,7113:384:1,-134,18,0,0,-0.13605 -114083,7113:383:2,-133.5,18,0,0,-0.13605 -114084,7113:383:1,-133,18,0,0,-0.13605 -114085,7113:382:2,-132.5,18,0,0,-0.13605 -114086,7113:382:1,-132,18,0,0,-0.13605 -114087,7113:381:2,-131.5,18,0,0,-0.13605 -114088,7113:381:1,-131,18,0,0,-0.13605 -114089,7113:380:2,-130.5,18,0,0,-0.13605 -114090,7113:380:1,-130,18,0,0,-0.13605 -114091,7112:489:2,-129.5,18,0,0,-0.13605 -114092,7112:489:1,-129,18,0,0,-0.13605 -114093,7112:488:2,-128.5,18,0,0,-0.13605 -114094,7112:488:1,-128,18,0,0,-0.13605 -114095,7112:487:2,-127.5,18,0,0,-0.13605 -114096,7112:487:1,-127,18,0,0,-0.13605 -114097,7112:486:2,-126.5,18,0,0,-0.13605 -114098,7112:486:1,-126,18,0,0,-0.13605 -114099,7112:485:2,-125.5,18,0,0,-0.13605 -114100,7112:485:1,-125,18,0,0,-0.13605 -114101,7112:384:2,-124.5,18,0,0,-0.13605 -114102,7112:384:1,-124,18,0,0,-0.13605 -114103,7112:383:2,-123.5,18,0,0,-0.13605 -114104,7112:383:1,-123,18,0,0,-0.13605 -114105,7112:382:2,-122.5,18,0,0,-0.13605 -114106,7112:382:1,-122,18,0,0,-0.13605 -114107,7112:381:2,-121.5,18,0,0,-0.13605 -114108,7112:381:1,-121,18,0,0,-0.13605 -114109,7112:380:2,-120.5,18,0,0,-0.13605 -114110,7112:380:1,-120,18,0,0,-0.13605 -114111,7111:489:2,-119.5,18,0,0,-0.13605 -114112,7111:489:1,-119,18,0,0,-0.13605 -114113,7111:488:2,-118.5,18,0,0,-0.13605 -114114,7111:488:1,-118,18,0,0,-0.13605 -114115,7111:487:2,-117.5,18,0,0,-0.13605 -114116,7111:487:1,-117,18,0,0,-0.13605 -114117,7111:486:2,-116.5,18,0,0,-0.13605 -114118,7111:486:1,-116,18,0,0,-0.13605 -114119,7111:485:2,-115.5,18,0,0,-0.13605 -114120,7111:383:2,-113.5,18,0,0,-0.13605 -114121,7111:383:1,-113,18,0,0,-0.13605 -114122,7111:382:2,-112.5,18,0,0,-0.13605 -114123,7109:384:2,-94.5,18,0,0,-0.13605 -114124,7109:384:1,-94,18,0,0,-0.13605 -114125,7109:383:2,-93.5,18,0,0,-0.13605 -114126,7109:383:1,-93,18,0,0,-0.13605 -114127,7109:382:2,-92.5,18,0,0,-0.13605 -114128,7109:382:1,-92,18,0,0,-0.13605 -114129,7109:381:2,-91.5,18,0,0,-0.13605 -114130,7108:489:1,-89,18,0,0,-0.13605 -114131,7108:488:2,-88.5,18,0,0,-0.13605 -114132,7108:488:1,-88,18,0,0,-0.13605 -114133,7108:487:2,-87.5,18,0,0,-0.13605 -114134,7108:487:1,-87,18,0,0,-0.13605 -114135,7108:486:2,-86.5,18,0,0,-0.13605 -114136,7108:486:1,-86,18,0,0,-0.13605 -114137,7108:485:2,-85.5,18,0,0,-0.13605 -114138,7108:485:1,-85,18,0,0,-0.13605 -114139,7108:384:2,-84.5,18,0,0,-0.13605 -114140,7108:384:1,-84,18,0,0,-0.13605 -114141,7108:383:2,-83.5,18,0,0,-0.13605 -114142,7108:381:1,-81,18,0,0,-0.13605 -114143,7108:380:2,-80.5,18,0,0,-0.13605 -114144,7108:380:1,-80,18,0,0,-0.13605 -114145,7107:489:2,-79.5,18,0,0,-0.142296 -114146,7107:489:1,-79,18,0,0,-0.13605 -114147,7107:488:2,-78.5,18,0,0,-0.13605 -114148,7107:488:1,-78,18,0,0,-0.13605 -114149,7107:487:2,-77.5,18,0,0,-0.13605 -114150,7107:487:1,-77,18,0,0,-0.13605 -114151,7107:486:2,-76.5,18,0,0,-0.13605 -114152,7107:486:1,-76,18,0,0,-0.13605 -114153,7107:485:2,-75.5,18,0,0,-0.13605 -114154,7107:485:1,-75,18,0,0,-0.13605 -114155,7107:384:2,-74.5,18,0,0,-0.13605 -114156,7107:384:1,-74,18,0,0,-0.13605 -114157,7107:383:2,-73.5,18,0,0,-0.13605 -114158,7107:383:1,-73,18,0,0,-0.13605 -114159,7107:382:2,-72.5,18,0,0,-0.13605 -114160,7107:382:1,-72,18,0,0,-0.13605 -114161,7107:381:2,-71.5,18,0,0,-0.13605 -114162,7107:381:1,-71,18,0,0,-0.13605 -114163,7107:380:2,-70.5,18,0,0,-0.13605 -114164,7107:380:1,-70,18,0,0,-0.13605 -114165,7106:489:2,-69.5,18,0,0,-0.13605 -114166,7106:489:1,-69,18,0,0,-0.13605 -114167,7106:488:2,-68.5,18,0,0,-0.13605 -114168,7106:488:1,-68,18,0,0,-0.13605 -114169,7106:487:2,-67.5,18,0,0,-0.13605 -114170,7106:487:1,-67,18,0,0,-0.13605 -114171,7106:486:2,-66.5,18,0,0,-0.13605 -114172,7106:486:1,-66,18,0,0,-0.13605 -114173,7106:485:2,-65.5,18,0,0,-0.13605 -114174,7106:485:1,-65,18,0,0,-0.13605 -114175,7106:384:2,-64.5,18,0,0,-0.13605 -114176,7106:384:1,-64,18,0,0,-0.13605 -114177,7106:383:2,-63.5,18,0,0,-0.13605 -114178,7106:383:1,-63,18,0,0,-0.13605 -114179,7106:382:2,-62.5,18,0,0,-0.13605 -114180,7106:382:1,-62,18,0,0,-0.13605 -114181,7106:381:2,-61.5,18,0,0,-0.13605 -114182,7106:381:1,-61,18,0,0,-0.13605 -114183,7106:380:2,-60.5,18,0,0,-0.13605 -114184,7106:380:1,-60,18,0,0,-0.13605 -114185,7105:489:2,-59.5,18,0,0,-0.13605 -114186,7105:489:1,-59,18,0,0,-0.13605 -114187,7105:488:2,-58.5,18,0,0,-0.13605 -114188,7105:488:1,-58,18,0,0,-0.13605 -114189,7105:487:2,-57.5,18,0,0,-0.13605 -114190,7105:487:1,-57,18,0,0,-0.13605 -114191,7105:486:2,-56.5,18,0,0,-0.13605 -114192,7105:486:1,-56,18,0,0,-0.13605 -114193,7105:485:2,-55.5,18,0,0,-0.13605 -114194,7105:485:1,-55,18,0,0,-0.13605 -114195,7105:384:2,-54.5,18,0,0,-0.13605 -114196,7105:384:1,-54,18,0,0,-0.13605 -114197,7105:383:2,-53.5,18,0,0,-0.13605 -114198,7105:383:1,-53,18,0,0,-0.13605 -114199,7105:382:2,-52.5,18,0,0,-0.13605 -114200,7105:382:1,-52,18,0,0,-0.13605 -114201,7105:381:2,-51.5,18,0,0,-0.13605 -114202,7105:381:1,-51,18,0,0,-0.13605 -114203,7105:380:2,-50.5,18,0,0,-0.13605 -114204,7105:380:1,-50,18,0,0,-0.13605 -114205,7104:489:2,-49.5,18,0,0,-0.13605 -114206,7104:489:1,-49,18,0,0,-0.13605 -114207,7104:488:2,-48.5,18,0,0,-0.13605 -114208,7104:488:1,-48,18,0,0,-0.13605 -114209,7104:487:2,-47.5,18,0,0,-0.13605 -114210,7104:487:1,-47,18,0,0,-0.13605 -114211,7104:486:2,-46.5,18,0,0,-0.13605 -114212,7104:486:1,-46,18,0,0,-0.13605 -114213,7104:485:2,-45.5,18,0,0,-0.13605 -114214,7104:485:1,-45,18,0,0,-0.13605 -114215,7104:384:2,-44.5,18,0,0,-0.13605 -114216,7104:384:1,-44,18,0,0,-0.13605 -114217,7104:383:2,-43.5,18,0,0,-0.13605 -114218,7104:383:1,-43,18,0,0,-0.13605 -114219,7104:382:2,-42.5,18,0,0,-0.13605 -114220,7104:382:1,-42,18,0,0,-0.13605 -114221,7104:381:2,-41.5,18,0,0,-0.13605 -114222,7104:381:1,-41,18,0,0,-0.13605 -114223,7104:380:2,-40.5,18,0,0,-0.13605 -114224,7104:380:1,-40,18,0,0,-0.13605 -114225,7103:489:2,-39.5,18,0,0,-0.13605 -114226,7103:489:1,-39,18,0,0,-0.13605 -114227,7103:488:2,-38.5,18,0,0,-0.13605 -114228,7103:488:1,-38,18,0,0,-0.13605 -114229,7103:487:2,-37.5,18,0,0,-0.13605 -114230,7103:487:1,-37,18,0,0,-0.13605 -114231,7103:486:2,-36.5,18,0,0,-0.13605 -114232,7103:486:1,-36,18,0,0,-0.13605 -114233,7103:485:2,-35.5,18,0,0,-0.13605 -114234,7103:485:1,-35,18,0,0,-0.13605 -114235,7103:384:2,-34.5,18,0,0,-0.13605 -114236,7103:384:1,-34,18,0,0,-0.13605 -114237,7103:383:2,-33.5,18,0,0,-0.13605 -114238,7103:383:1,-33,18,0,0,-0.13605 -114239,7103:382:2,-32.5,18,0,0,-0.13605 -114240,7103:382:1,-32,18,0,0,-0.13605 -114241,7103:381:2,-31.5,18,0,0,-0.13605 -114242,7103:381:1,-31,18,0,0,-0.13605 -114243,7103:380:2,-30.5,18,0,0,-0.13605 -114244,7103:380:1,-30,18,0,0,-0.13605 -114245,7102:489:2,-29.5,18,0,0,-0.13605 -114246,7102:489:1,-29,18,0,0,-0.13605 -114247,7102:488:2,-28.5,18,0,0,-0.13605 -114248,7102:488:1,-28,18,0,0,-0.13605 -114249,7102:487:2,-27.5,18,0,0,-0.13605 -114250,7102:487:1,-27,18,0,0,-0.13605 -114251,7102:486:2,-26.5,18,0,0,-0.13605 -114252,7102:486:1,-26,18,0,0,-0.13605 -114253,7102:485:2,-25.5,18,0,0,-0.13605 -114254,7102:485:1,-25,18,0,0,-0.13605 -114255,7102:384:2,-24.5,18,0,0,-0.13605 -114256,7102:384:1,-24,18,0,0,-0.13605 -114257,7102:383:2,-23.5,18,0,0,-0.13605 -114258,7102:383:1,-23,18,0,0,-0.13605 -114259,7102:382:2,-22.5,18,0,0,-0.13605 -114260,7102:382:1,-22,18,0,0,-0.13605 -114261,7102:381:2,-21.5,18,0,0,-0.13605 -114262,7102:381:1,-21,18,0,0,-0.13605 -114263,7102:380:2,-20.5,18,0,0,-0.13605 -114264,7102:380:1,-20,18,0,0,-0.13605 -114265,7101:489:2,-19.5,18,0,0,-0.13605 -114266,7101:489:1,-19,18,0,0,-0.13605 -114267,7101:488:2,-18.5,18,0,0,-0.13605 -114268,7101:488:1,-18,18,0,0,-0.13605 -114269,7101:487:2,-17.5,18,0,0,-0.13605 -114270,7101:487:1,-17,18,0,0,-0.13605 -114271,7101:486:2,-16.5,18,0,0,-0.13605 -114272,7101:486:1,-16,18,0,0,-0.13605 -114273,7101:485:2,-15.5,18,0,0,-0.13605 -114274,7101:485:1,-15,18,0,0,-0.13605 -114275,7101:384:2,-14.5,18,0,0,-0.13605 -114276,7101:384:1,-14,18,0,0,-0.13605 -114277,7101:383:2,-13.5,18,0,0,-0.13605 -114278,7101:383:1,-13,18,0,0,-0.13605 -114279,7101:382:2,-12.5,18,0,0,-0.13605 -114280,7101:382:1,-12,18,0,0,-0.13605 -114281,7101:381:2,-11.5,18,0,0,-0.13605 -114282,7101:381:1,-11,18,0,0,-0.13605 -114283,7101:380:2,-10.5,18,0,0,-0.13605 -114284,1104:488:1,48,18,0,0,-0.13605 -114285,1104:488:2,48.5,18,0,0,-0.13605 -114286,1104:489:1,49,18,0,0,-0.13605 -114287,1104:489:2,49.5,18,0,0,-0.13605 -114288,1105:380:1,50,18,0,0,-0.13605 -114289,1112:382:2,122.5,18,0,0,-0.13605 -114290,1112:383:1,123,18,0,0,-0.13605 -114291,1112:383:2,123.5,18,0,0,-0.13605 -114292,1112:384:1,124,18,0,0,-0.13605 -114293,1112:384:2,124.5,18,0,0,-0.13605 -114294,1112:485:1,125,18,0,0,-0.13605 -114295,1112:485:2,125.5,18,0,0,-0.13605 -114296,1112:486:1,126,18,0,0,-0.13605 -114297,1112:486:2,126.5,18,0,0,-0.13605 -114298,1112:487:1,127,18,0,0,-0.13605 -114299,1112:487:2,127.5,18,0,0,-0.13605 -114300,1112:488:1,128,18,0,0,-0.13605 -114301,1112:488:2,128.5,18,0,0,-0.13605 -114302,1112:489:1,129,18,0,0,-0.13605 -114303,1112:489:2,129.5,18,0,0,-0.13605 -114304,1113:380:1,130,18,0,0,-0.13605 -114305,1113:380:2,130.5,18,0,0,-0.13605 -114306,1113:381:1,131,18,0,0,-0.13605 -114307,1113:381:2,131.5,18,0,0,-0.13605 -114308,1113:382:1,132,18,0,0,-0.13605 -114309,1113:382:2,132.5,18,0,0,-0.13605 -114310,1113:383:1,133,18,0,0,-0.13605 -114311,1113:383:2,133.5,18,0,0,-0.13605 -114312,1113:384:1,134,18,0,0,-0.13605 -114313,1113:384:2,134.5,18,0,0,-0.13605 -114314,1113:485:1,135,18,0,0,-0.13605 -114315,1113:485:2,135.5,18,0,0,-0.13605 -114316,1113:486:1,136,18,0,0,-0.13605 -114317,1113:486:2,136.5,18,0,0,-0.13605 -114318,1113:487:1,137,18,0,0,-0.13605 -114319,1113:487:2,137.5,18,0,0,-0.13605 -114320,1113:488:1,138,18,0,0,-0.13605 -114321,1113:488:2,138.5,18,0,0,-0.13605 -114322,1113:489:1,139,18,0,0,-0.13605 -114323,1113:489:2,139.5,18,0,0,-0.13605 -114324,1114:380:1,140,18,0,0,-0.13605 -114325,1114:380:2,140.5,18,0,0,-0.13605 -114326,1114:381:1,141,18,0,0,-0.13605 -114327,1114:381:2,141.5,18,0,0,-0.13605 -114328,1114:382:1,142,18,0,0,-0.13605 -114329,1114:382:2,142.5,18,0,0,-0.13605 -114330,1114:383:1,143,18,0,0,-0.13605 -114331,1114:383:2,143.5,18,0,0,-0.13605 -114332,1114:384:1,144,18,0,0,-0.13605 -114333,1114:384:2,144.5,18,0,0,-0.13605 -114334,1114:485:1,145,18,0,0,-0.13605 -114335,1114:485:2,145.5,18,0,0,-0.13605 -114336,1114:486:1,146,18,0,0,-0.13605 -114337,1114:486:2,146.5,18,0,0,-0.13605 -114338,1114:487:1,147,18,0,0,-0.13605 -114339,1114:487:2,147.5,18,0,0,-0.13605 -114340,1114:488:1,148,18,0,0,-0.13605 -114341,1114:488:2,148.5,18,0,0,-0.13605 -114342,1114:489:1,149,18,0,0,-0.13605 -114343,1114:489:2,149.5,18,0,0,-0.13605 -114344,1115:380:1,150,18,0,0,-0.13605 -114345,1115:380:2,150.5,18,0,0,-0.13605 -114346,1115:381:1,151,18,0,0,-0.13605 -114347,1115:381:2,151.5,18,0,0,-0.13605 -114348,1115:382:1,152,18,0,0,-0.13605 -114349,1115:382:2,152.5,18,0,0,-0.13605 -114350,1115:383:1,153,18,0,0,-0.13605 -114351,1115:383:2,153.5,18,0,0,-0.13605 -114352,1115:384:1,154,18,0,0,-0.13605 -114353,1115:384:2,154.5,18,0,0,-0.13605 -114354,1115:485:1,155,18,0,0,-0.13605 -114355,1115:485:2,155.5,18,0,0,-0.13605 -114356,1115:486:1,156,18,0,0,-0.13605 -114357,1115:486:2,156.5,18,0,0,-0.13605 -114358,1115:487:1,157,18,0,0,-0.13605 -114359,1115:487:2,157.5,18,0,0,-0.13605 -114360,1115:488:1,158,18,0,0,-0.13605 -114361,1115:488:2,158.5,18,0,0,-0.13605 -114362,1115:489:1,159,18,0,0,-0.13605 -114363,1115:489:2,159.5,18,0,0,-0.13605 -114364,1116:380:1,160,18,0,0,-0.13605 -114365,1116:380:2,160.5,18,0,0,-0.13605 -114366,1116:381:1,161,18,0,0,-0.13605 -114367,1116:381:2,161.5,18,0,0,-0.13605 -114368,1116:382:1,162,18,0,0,-0.13605 -114369,1116:382:2,162.5,18,0,0,-0.13605 -114370,1116:383:1,163,18,0,0,-0.13605 -114371,1116:383:2,163.5,18,0,0,-0.13605 -114372,1116:384:1,164,18,0,0,-0.13605 -114373,1116:384:2,164.5,18,0,0,-0.13605 -114374,1116:485:1,165,18,0,0,-0.13605 -114375,1116:485:2,165.5,18,0,0,-0.13605 -114376,1116:486:1,166,18,0,0,-0.13605 -114377,1116:486:2,166.5,18,0,0,-0.13605 -114378,1116:487:1,167,18,0,0,-0.13605 -114379,1116:487:2,167.5,18,0,0,-0.13605 -114380,1116:488:1,168,18,0,0,-0.13605 -114381,1116:488:2,168.5,18,0,0,-0.13605 -114382,1116:489:1,169,18,0,0,-0.13605 -114383,1116:489:2,169.5,18,0,0,-0.13605 -114384,1117:380:1,170,18,0,0,-0.13605 -114385,1117:380:2,170.5,18,0,0,-0.13605 -114386,1117:381:1,171,18,0,0,-0.13605 -114387,1117:381:2,171.5,18,0,0,-0.13605 -114388,1117:382:1,172,18,0,0,-0.13605 -114389,1117:382:2,172.5,18,0,0,-0.13605 -114390,1117:383:1,173,18,0,0,-0.13605 -114391,1117:383:2,173.5,18,0,0,-0.13605 -114392,1117:384:1,174,18,0,0,-0.13605 -114393,1117:384:2,174.5,18,0,0,-0.13605 -114394,1117:485:1,175,18,0,0,-0.13605 -114395,1117:485:2,175.5,18,0,0,-0.13605 -114396,1117:486:1,176,18,0,0,-0.13605 -114397,1117:486:2,176.5,18,0,0,-0.13605 -114398,1117:487:1,177,18,0,0,-0.13605 -114399,1117:487:2,177.5,18,0,0,-0.13605 -114400,1117:488:1,178,18,0,0,-0.13605 -114401,1117:488:2,178.5,18,0,0,-0.13605 -114402,1117:489:1,179,18,0,0,-0.13605 -114403,1117:489:2,179.5,18,0,0,-0.13605 -114404,1118:380:1,180,18,0,0,-0.13605 -114405,7118:380:3,-180,18.5,0,0,-0.13605 -114406,7117:489:4,-179.5,18.5,0,0,-0.13605 -114407,7117:489:3,-179,18.5,0,0,-0.13605 -114408,7117:488:4,-178.5,18.5,0,0,-0.13605 -114409,7117:488:3,-178,18.5,0,0,-0.13605 -114410,7117:487:4,-177.5,18.5,0,0,-0.13605 -114411,7117:487:3,-177,18.5,0,0,-0.13605 -114412,7117:486:4,-176.5,18.5,0,0,-0.13605 -114413,7117:486:3,-176,18.5,0,0,-0.13605 -114414,7117:485:4,-175.5,18.5,0,0,-0.13605 -114415,7117:485:3,-175,18.5,0,0,-0.13605 -114416,7117:384:4,-174.5,18.5,0,0,-0.13605 -114417,7117:384:3,-174,18.5,0,0,-0.13605 -114418,7117:383:4,-173.5,18.5,0,0,-0.13605 -114419,7117:383:3,-173,18.5,0,0,-0.13605 -114420,7117:382:4,-172.5,18.5,0,0,-0.13605 -114421,7117:382:3,-172,18.5,0,0,-0.13605 -114422,7117:381:4,-171.5,18.5,0,0,-0.13605 -114423,7117:381:3,-171,18.5,0,0,-0.13605 -114424,7117:380:4,-170.5,18.5,0,0,-0.13605 -114425,7117:380:3,-170,18.5,0,0,-0.13605 -114426,7116:489:4,-169.5,18.5,0,0,-0.13605 -114427,7116:489:3,-169,18.5,0,0,-0.13605 -114428,7116:488:4,-168.5,18.5,0,0,-0.13605 -114429,7116:488:3,-168,18.5,0,0,-0.13605 -114430,7116:487:4,-167.5,18.5,0,0,-0.13605 -114431,7116:487:3,-167,18.5,0,0,-0.13605 -114432,7116:486:4,-166.5,18.5,0,0,-0.13605 -114433,7116:486:3,-166,18.5,0,0,-0.13605 -114434,7116:485:4,-165.5,18.5,0,0,-0.13605 -114435,7116:485:3,-165,18.5,0,0,-0.13605 -114436,7116:384:4,-164.5,18.5,0,0,-0.13605 -114437,7116:384:3,-164,18.5,0,0,-0.13605 -114438,7116:383:4,-163.5,18.5,0,0,-0.13605 -114439,7116:383:3,-163,18.5,0,0,-0.13605 -114440,7116:382:4,-162.5,18.5,0,0,-0.13605 -114441,7116:382:3,-162,18.5,0,0,-0.13605 -114442,7116:381:4,-161.5,18.5,0,0,-0.13605 -114443,7116:381:3,-161,18.5,0,0,-0.13605 -114444,7116:380:4,-160.5,18.5,0,0,-0.13605 -114445,7116:380:3,-160,18.5,0,0,-0.13605 -114446,7115:489:4,-159.5,18.5,0,0,-0.13605 -114447,7115:489:3,-159,18.5,0,0,-0.13605 -114448,7115:488:4,-158.5,18.5,0,0,-0.13605 -114449,7115:488:3,-158,18.5,0,0,-0.13605 -114450,7115:487:4,-157.5,18.5,0,0,-0.13605 -114451,7115:487:3,-157,18.5,0,0,-0.13605 -114452,7115:486:4,-156.5,18.5,0,0,-0.13605 -114453,7115:486:3,-156,18.5,0,0,-0.13605 -114454,7115:485:4,-155.5,18.5,0,0,-0.13605 -114455,7115:485:3,-155,18.5,0,0,-0.13605 -114456,7115:384:4,-154.5,18.5,0,0,-0.13605 -114457,7115:384:3,-154,18.5,0,0,-0.13605 -114458,7115:383:4,-153.5,18.5,0,0,-0.13605 -114459,7115:383:3,-153,18.5,0,0,-0.13605 -114460,7115:382:4,-152.5,18.5,0,0,-0.13605 -114461,7115:382:3,-152,18.5,0,0,-0.13605 -114462,7115:381:4,-151.5,18.5,0,0,-0.13605 -114463,7115:381:3,-151,18.5,0,0,-0.13605 -114464,7115:380:4,-150.5,18.5,0,0,-0.13605 -114465,7115:380:3,-150,18.5,0,0,-0.13605 -114466,7114:489:4,-149.5,18.5,0,0,-0.13605 -114467,7114:489:3,-149,18.5,0,0,-0.13605 -114468,7114:488:4,-148.5,18.5,0,0,-0.13605 -114469,7114:488:3,-148,18.5,0,0,-0.13605 -114470,7114:487:4,-147.5,18.5,0,0,-0.13605 -114471,7114:487:3,-147,18.5,0,0,-0.13605 -114472,7114:486:4,-146.5,18.5,0,0,-0.13605 -114473,7114:486:3,-146,18.5,0,0,-0.13605 -114474,7114:485:4,-145.5,18.5,0,0,-0.13605 -114475,7114:485:3,-145,18.5,0,0,-0.13605 -114476,7114:384:4,-144.5,18.5,0,0,-0.13605 -114477,7114:384:3,-144,18.5,0,0,-0.13605 -114478,7114:383:4,-143.5,18.5,0,0,-0.13605 -114479,7114:383:3,-143,18.5,0,0,-0.13605 -114480,7114:382:4,-142.5,18.5,0,0,-0.13605 -114481,7114:382:3,-142,18.5,0,0,-0.13605 -114482,7114:381:4,-141.5,18.5,0,0,-0.13605 -114483,7114:381:3,-141,18.5,0,0,-0.13605 -114484,7114:380:4,-140.5,18.5,0,0,-0.13605 -114485,7114:380:3,-140,18.5,0,0,-0.13605 -114486,7113:489:4,-139.5,18.5,0,0,-0.13605 -114487,7113:489:3,-139,18.5,0,0,-0.13605 -114488,7113:488:4,-138.5,18.5,0,0,-0.13605 -114489,7113:488:3,-138,18.5,0,0,-0.13605 -114490,7113:487:4,-137.5,18.5,0,0,-0.13605 -114491,7113:487:3,-137,18.5,0,0,-0.13605 -114492,7113:486:4,-136.5,18.5,0,0,-0.13605 -114493,7113:486:3,-136,18.5,0,0,-0.13605 -114494,7113:485:4,-135.5,18.5,0,0,-0.13605 -114495,7113:485:3,-135,18.5,0,0,-0.13605 -114496,7113:384:4,-134.5,18.5,0,0,-0.13605 -114497,7113:384:3,-134,18.5,0,0,-0.13605 -114498,7113:383:4,-133.5,18.5,0,0,-0.13605 -114499,7113:383:3,-133,18.5,0,0,-0.13605 -114500,7113:382:4,-132.5,18.5,0,0,-0.13605 -114501,7113:382:3,-132,18.5,0,0,-0.13605 -114502,7113:381:4,-131.5,18.5,0,0,-0.13605 -114503,7113:381:3,-131,18.5,0,0,-0.13605 -114504,7113:380:4,-130.5,18.5,0,0,-0.13605 -114505,7113:380:3,-130,18.5,0,0,-0.13605 -114506,7112:489:4,-129.5,18.5,0,0,-0.13605 -114507,7112:489:3,-129,18.5,0,0,-0.13605 -114508,7112:488:4,-128.5,18.5,0,0,-0.13605 -114509,7112:488:3,-128,18.5,0,0,-0.13605 -114510,7112:487:4,-127.5,18.5,0,0,-0.13605 -114511,7112:487:3,-127,18.5,0,0,-0.13605 -114512,7112:486:4,-126.5,18.5,0,0,-0.13605 -114513,7112:486:3,-126,18.5,0,0,-0.13605 -114514,7112:485:4,-125.5,18.5,0,0,-0.13605 -114515,7112:485:3,-125,18.5,0,0,-0.13605 -114516,7112:384:4,-124.5,18.5,0,0,-0.13605 -114517,7112:384:3,-124,18.5,0,0,-0.13605 -114518,7112:383:4,-123.5,18.5,0,0,-0.13605 -114519,7112:383:3,-123,18.5,0,0,-0.13605 -114520,7112:382:4,-122.5,18.5,0,0,-0.13605 -114521,7112:382:3,-122,18.5,0,0,-0.13605 -114522,7112:381:4,-121.5,18.5,0,0,-0.13605 -114523,7112:381:3,-121,18.5,0,0,-0.13605 -114524,7112:380:4,-120.5,18.5,0,0,-0.13605 -114525,7112:380:3,-120,18.5,0,0,-0.13605 -114526,7111:489:4,-119.5,18.5,0,0,-0.13605 -114527,7111:489:3,-119,18.5,0,0,-0.13605 -114528,7111:488:4,-118.5,18.5,0,0,-0.13605 -114529,7111:488:3,-118,18.5,0,0,-0.13605 -114530,7111:487:4,-117.5,18.5,0,0,-0.13605 -114531,7111:487:3,-117,18.5,0,0,-0.13605 -114532,7111:486:4,-116.5,18.5,0,0,-0.13605 -114533,7111:486:3,-116,18.5,0,0,-0.13605 -114534,7111:384:4,-114.5,18.5,0,0,-0.13605 -114535,7111:384:3,-114,18.5,0,0,-0.13605 -114536,7111:383:4,-113.5,18.5,0,0,-0.13605 -114537,7111:383:3,-113,18.5,0,0,-0.13605 -114538,7108:489:4,-89.5,18.5,0,0,-0.13605 -114539,7108:489:3,-89,18.5,0,0,-0.13605 -114540,7108:488:4,-88.5,18.5,0,0,-0.13605 -114541,7108:488:3,-88,18.5,0,0,-0.13605 -114542,7108:487:4,-87.5,18.5,0,0,-0.13605 -114543,7108:487:3,-87,18.5,0,0,-0.13605 -114544,7108:486:4,-86.5,18.5,0,0,-0.13605 -114545,7108:486:3,-86,18.5,0,0,-0.13605 -114546,7108:381:3,-81,18.5,0,0,-0.13605 -114547,7108:380:4,-80.5,18.5,0,0,-0.13605 -114548,7108:380:3,-80,18.5,0,0,-0.13605 -114549,7107:489:4,-79.5,18.5,0,0,-0.140563 -114550,7107:489:3,-79,18.5,0,0,-0.13605 -114551,7107:488:4,-78.5,18.5,0,0,-0.13605 -114552,7107:488:3,-78,18.5,0,0,-0.13605 -114553,7107:487:4,-77.5,18.5,0,0,-0.13605 -114554,7107:487:3,-77,18.5,0,0,-0.13605 -114555,7107:486:4,-76.5,18.5,0,0,-0.13605 -114556,7107:486:3,-76,18.5,0,0,-0.13605 -114557,7107:485:4,-75.5,18.5,0,0,-0.13605 -114558,7107:485:3,-75,18.5,0,0,-0.13605 -114559,7107:384:4,-74.5,18.5,0,0,-0.13605 -114560,7107:384:3,-74,18.5,0,0,-0.13605 -114561,7107:383:4,-73.5,18.5,0,0,-0.13605 -114562,7107:383:3,-73,18.5,0,0,-0.13605 -114563,7107:382:4,-72.5,18.5,0,0,-0.13605 -114564,7107:382:3,-72,18.5,0,0,-0.13605 -114565,7107:381:4,-71.5,18.5,0,0,-0.13605 -114566,7107:381:3,-71,18.5,0,0,-0.13605 -114567,7107:380:4,-70.5,18.5,0,0,-0.13605 -114568,7107:380:3,-70,18.5,0,0,-0.13605 -114569,7106:489:4,-69.5,18.5,0,0,-0.13605 -114570,7106:489:3,-69,18.5,0,0,-0.13605 -114571,7106:488:4,-68.5,18.5,0,0,-0.13605 -114572,7106:488:3,-68,18.5,0,0,-0.13605 -114573,7106:487:4,-67.5,18.5,0,0,-0.13605 -114574,7106:487:3,-67,18.5,0,0,-0.13605 -114575,7106:486:4,-66.5,18.5,0,0,-0.13605 -114576,7106:486:3,-66,18.5,0,0,-0.13605 -114577,7106:485:4,-65.5,18.5,0,0,-0.13605 -114578,7106:485:3,-65,18.5,0,0,-0.13605 -114579,7106:384:4,-64.5,18.5,0,0,-0.13605 -114580,7106:384:3,-64,18.5,0,0,-0.13605 -114581,7106:383:4,-63.5,18.5,0,0,-0.13605 -114582,7106:383:3,-63,18.5,0,0,-0.13605 -114583,7106:382:4,-62.5,18.5,0,0,-0.13605 -114584,7106:382:3,-62,18.5,0,0,-0.13605 -114585,7106:381:4,-61.5,18.5,0,0,-0.13605 -114586,7106:381:3,-61,18.5,0,0,-0.13605 -114587,7106:380:4,-60.5,18.5,0,0,-0.13605 -114588,7106:380:3,-60,18.5,0,0,-0.13605 -114589,7105:489:4,-59.5,18.5,0,0,-0.13605 -114590,7105:489:3,-59,18.5,0,0,-0.13605 -114591,7105:488:4,-58.5,18.5,0,0,-0.13605 -114592,7105:488:3,-58,18.5,0,0,-0.13605 -114593,7105:487:4,-57.5,18.5,0,0,-0.13605 -114594,7105:487:3,-57,18.5,0,0,-0.13605 -114595,7105:486:4,-56.5,18.5,0,0,-0.13605 -114596,7105:486:3,-56,18.5,0,0,-0.13605 -114597,7105:485:4,-55.5,18.5,0,0,-0.13605 -114598,7105:485:3,-55,18.5,0,0,-0.13605 -114599,7105:384:4,-54.5,18.5,0,0,-0.13605 -114600,7105:384:3,-54,18.5,0,0,-0.13605 -114601,7105:383:4,-53.5,18.5,0,0,-0.13605 -114602,7105:383:3,-53,18.5,0,0,-0.13605 -114603,7105:382:4,-52.5,18.5,0,0,-0.13605 -114604,7105:382:3,-52,18.5,0,0,-0.13605 -114605,7105:381:4,-51.5,18.5,0,0,-0.13605 -114606,7105:381:3,-51,18.5,0,0,-0.13605 -114607,7105:380:4,-50.5,18.5,0,0,-0.13605 -114608,7105:380:3,-50,18.5,0,0,-0.13605 -114609,7104:489:4,-49.5,18.5,0,0,-0.13605 -114610,7104:489:3,-49,18.5,0,0,-0.13605 -114611,7104:488:4,-48.5,18.5,0,0,-0.13605 -114612,7104:488:3,-48,18.5,0,0,-0.13605 -114613,7104:487:4,-47.5,18.5,0,0,-0.13605 -114614,7104:487:3,-47,18.5,0,0,-0.13605 -114615,7104:486:4,-46.5,18.5,0,0,-0.13605 -114616,7104:486:3,-46,18.5,0,0,-0.13605 -114617,7104:485:4,-45.5,18.5,0,0,-0.13605 -114618,7104:485:3,-45,18.5,0,0,-0.13605 -114619,7104:384:4,-44.5,18.5,0,0,-0.13605 -114620,7104:384:3,-44,18.5,0,0,-0.13605 -114621,7104:383:4,-43.5,18.5,0,0,-0.13605 -114622,7104:383:3,-43,18.5,0,0,-0.13605 -114623,7104:382:4,-42.5,18.5,0,0,-0.13605 -114624,7104:382:3,-42,18.5,0,0,-0.13605 -114625,7104:381:4,-41.5,18.5,0,0,-0.13605 -114626,7104:381:3,-41,18.5,0,0,-0.13605 -114627,7104:380:4,-40.5,18.5,0,0,-0.13605 -114628,7104:380:3,-40,18.5,0,0,-0.13605 -114629,7103:489:4,-39.5,18.5,0,0,-0.13605 -114630,7103:489:3,-39,18.5,0,0,-0.13605 -114631,7103:488:4,-38.5,18.5,0,0,-0.13605 -114632,7103:488:3,-38,18.5,0,0,-0.13605 -114633,7103:487:4,-37.5,18.5,0,0,-0.13605 -114634,7103:487:3,-37,18.5,0,0,-0.13605 -114635,7103:486:4,-36.5,18.5,0,0,-0.13605 -114636,7103:486:3,-36,18.5,0,0,-0.13605 -114637,7103:485:4,-35.5,18.5,0,0,-0.13605 -114638,7103:485:3,-35,18.5,0,0,-0.13605 -114639,7103:384:4,-34.5,18.5,0,0,-0.13605 -114640,7103:384:3,-34,18.5,0,0,-0.13605 -114641,7103:383:4,-33.5,18.5,0,0,-0.13605 -114642,7103:383:3,-33,18.5,0,0,-0.13605 -114643,7103:382:4,-32.5,18.5,0,0,-0.13605 -114644,7103:382:3,-32,18.5,0,0,-0.13605 -114645,7103:381:4,-31.5,18.5,0,0,-0.13605 -114646,7103:381:3,-31,18.5,0,0,-0.13605 -114647,7103:380:4,-30.5,18.5,0,0,-0.13605 -114648,7103:380:3,-30,18.5,0,0,-0.13605 -114649,7102:489:4,-29.5,18.5,0,0,-0.13605 -114650,7102:489:3,-29,18.5,0,0,-0.13605 -114651,7102:488:4,-28.5,18.5,0,0,-0.13605 -114652,7102:488:3,-28,18.5,0,0,-0.13605 -114653,7102:487:4,-27.5,18.5,0,0,-0.13605 -114654,7102:487:3,-27,18.5,0,0,-0.13605 -114655,7102:486:4,-26.5,18.5,0,0,-0.13605 -114656,7102:486:3,-26,18.5,0,0,-0.13605 -114657,7102:485:4,-25.5,18.5,0,0,-0.13605 -114658,7102:485:3,-25,18.5,0,0,-0.13605 -114659,7102:384:4,-24.5,18.5,0,0,-0.13605 -114660,7102:384:3,-24,18.5,0,0,-0.13605 -114661,7102:383:4,-23.5,18.5,0,0,-0.13605 -114662,7102:383:3,-23,18.5,0,0,-0.13605 -114663,7102:382:4,-22.5,18.5,0,0,-0.13605 -114664,7102:382:3,-22,18.5,0,0,-0.13605 -114665,7102:381:4,-21.5,18.5,0,0,-0.13605 -114666,7102:381:3,-21,18.5,0,0,-0.13605 -114667,7102:380:4,-20.5,18.5,0,0,-0.13605 -114668,7102:380:3,-20,18.5,0,0,-0.13605 -114669,7101:489:4,-19.5,18.5,0,0,-0.13605 -114670,7101:489:3,-19,18.5,0,0,-0.13605 -114671,7101:488:4,-18.5,18.5,0,0,-0.13605 -114672,7101:488:3,-18,18.5,0,0,-0.13605 -114673,7101:487:4,-17.5,18.5,0,0,-0.13605 -114674,7101:487:3,-17,18.5,0,0,-0.13605 -114675,7101:486:4,-16.5,18.5,0,0,-0.13605 -114676,7101:486:3,-16,18.5,0,0,-0.13605 -114677,7101:485:4,-15.5,18.5,0,0,-0.13605 -114678,7101:485:3,-15,18.5,0,0,-0.13605 -114679,7101:384:4,-14.5,18.5,0,0,-0.13605 -114680,7101:384:3,-14,18.5,0,0,-0.13605 -114681,7101:383:4,-13.5,18.5,0,0,-0.13605 -114682,7101:383:3,-13,18.5,0,0,-0.13605 -114683,7101:382:4,-12.5,18.5,0,0,-0.13605 -114684,7101:382:3,-12,18.5,0,0,-0.13605 -114685,7101:381:4,-11.5,18.5,0,0,-0.13605 -114686,7101:381:3,-11,18.5,0,0,-0.13605 -114687,7101:380:4,-10.5,18.5,0,0,-0.13605 -114688,7101:380:3,-10,18.5,0,0,-0.13605 -114689,1104:488:4,48.5,18.5,0,0,-0.13605 -114690,1104:489:3,49,18.5,0,0,-0.13605 -114691,1104:489:4,49.5,18.5,0,0,-0.13605 -114692,1112:382:3,122,18.5,0,0,-0.13605 -114693,1112:382:4,122.5,18.5,0,0,-0.13605 -114694,1112:383:3,123,18.5,0,0,-0.13605 -114695,1112:383:4,123.5,18.5,0,0,-0.13605 -114696,1112:384:3,124,18.5,0,0,-0.13605 -114697,1112:384:4,124.5,18.5,0,0,-0.13605 -114698,1112:485:3,125,18.5,0,0,-0.13605 -114699,1112:485:4,125.5,18.5,0,0,-0.13605 -114700,1112:486:3,126,18.5,0,0,-0.13605 -114701,1112:486:4,126.5,18.5,0,0,-0.13605 -114702,1112:487:3,127,18.5,0,0,-0.13605 -114703,1112:487:4,127.5,18.5,0,0,-0.13605 -114704,1112:488:3,128,18.5,0,0,-0.13605 -114705,1112:488:4,128.5,18.5,0,0,-0.13605 -114706,1112:489:3,129,18.5,0,0,-0.13605 -114707,1112:489:4,129.5,18.5,0,0,-0.13605 -114708,1113:380:3,130,18.5,0,0,-0.13605 -114709,1113:380:4,130.5,18.5,0,0,-0.13605 -114710,1113:381:3,131,18.5,0,0,-0.13605 -114711,1113:381:4,131.5,18.5,0,0,-0.13605 -114712,1113:382:3,132,18.5,0,0,-0.13605 -114713,1113:382:4,132.5,18.5,0,0,-0.13605 -114714,1113:383:3,133,18.5,0,0,-0.13605 -114715,1113:383:4,133.5,18.5,0,0,-0.13605 -114716,1113:384:3,134,18.5,0,0,-0.13605 -114717,1113:384:4,134.5,18.5,0,0,-0.13605 -114718,1113:485:3,135,18.5,0,0,-0.13605 -114719,1113:485:4,135.5,18.5,0,0,-0.13605 -114720,1113:486:3,136,18.5,0,0,-0.13605 -114721,1113:486:4,136.5,18.5,0,0,-0.13605 -114722,1113:487:3,137,18.5,0,0,-0.13605 -114723,1113:487:4,137.5,18.5,0,0,-0.13605 -114724,1113:488:3,138,18.5,0,0,-0.13605 -114725,1113:488:4,138.5,18.5,0,0,-0.13605 -114726,1113:489:3,139,18.5,0,0,-0.13605 -114727,1113:489:4,139.5,18.5,0,0,-0.13605 -114728,1114:380:3,140,18.5,0,0,-0.13605 -114729,1114:380:4,140.5,18.5,0,0,-0.13605 -114730,1114:381:3,141,18.5,0,0,-0.13605 -114731,1114:381:4,141.5,18.5,0,0,-0.13605 -114732,1114:382:3,142,18.5,0,0,-0.13605 -114733,1114:382:4,142.5,18.5,0,0,-0.13605 -114734,1114:383:3,143,18.5,0,0,-0.13605 -114735,1114:383:4,143.5,18.5,0,0,-0.13605 -114736,1114:384:3,144,18.5,0,0,-0.13605 -114737,1114:384:4,144.5,18.5,0,0,-0.13605 -114738,1114:485:3,145,18.5,0,0,-0.13605 -114739,1114:485:4,145.5,18.5,0,0,-0.13605 -114740,1114:486:3,146,18.5,0,0,-0.13605 -114741,1114:486:4,146.5,18.5,0,0,-0.13605 -114742,1114:487:3,147,18.5,0,0,-0.13605 -114743,1114:487:4,147.5,18.5,0,0,-0.13605 -114744,1114:488:3,148,18.5,0,0,-0.13605 -114745,1114:488:4,148.5,18.5,0,0,-0.13605 -114746,1114:489:3,149,18.5,0,0,-0.13605 -114747,1114:489:4,149.5,18.5,0,0,-0.13605 -114748,1115:380:3,150,18.5,0,0,-0.13605 -114749,1115:380:4,150.5,18.5,0,0,-0.13605 -114750,1115:381:3,151,18.5,0,0,-0.13605 -114751,1115:381:4,151.5,18.5,0,0,-0.13605 -114752,1115:382:3,152,18.5,0,0,-0.13605 -114753,1115:382:4,152.5,18.5,0,0,-0.13605 -114754,1115:383:3,153,18.5,0,0,-0.13605 -114755,1115:383:4,153.5,18.5,0,0,-0.13605 -114756,1115:384:3,154,18.5,0,0,-0.13605 -114757,1115:384:4,154.5,18.5,0,0,-0.13605 -114758,1115:485:3,155,18.5,0,0,-0.13605 -114759,1115:485:4,155.5,18.5,0,0,-0.13605 -114760,1115:486:3,156,18.5,0,0,-0.13605 -114761,1115:486:4,156.5,18.5,0,0,-0.13605 -114762,1115:487:3,157,18.5,0,0,-0.13605 -114763,1115:487:4,157.5,18.5,0,0,-0.13605 -114764,1115:488:3,158,18.5,0,0,-0.13605 -114765,1115:488:4,158.5,18.5,0,0,-0.13605 -114766,1115:489:3,159,18.5,0,0,-0.13605 -114767,1115:489:4,159.5,18.5,0,0,-0.13605 -114768,1116:380:3,160,18.5,0,0,-0.13605 -114769,1116:380:4,160.5,18.5,0,0,-0.13605 -114770,1116:381:3,161,18.5,0,0,-0.13605 -114771,1116:381:4,161.5,18.5,0,0,-0.13605 -114772,1116:382:3,162,18.5,0,0,-0.13605 -114773,1116:382:4,162.5,18.5,0,0,-0.13605 -114774,1116:383:3,163,18.5,0,0,-0.13605 -114775,1116:383:4,163.5,18.5,0,0,-0.13605 -114776,1116:384:3,164,18.5,0,0,-0.13605 -114777,1116:384:4,164.5,18.5,0,0,-0.13605 -114778,1116:485:3,165,18.5,0,0,-0.13605 -114779,1116:485:4,165.5,18.5,0,0,-0.13605 -114780,1116:486:3,166,18.5,0,0,-0.13605 -114781,1116:486:4,166.5,18.5,0,0,-0.13605 -114782,1116:487:3,167,18.5,0,0,-0.13605 -114783,1116:487:4,167.5,18.5,0,0,-0.13605 -114784,1116:488:3,168,18.5,0,0,-0.13605 -114785,1116:488:4,168.5,18.5,0,0,-0.13605 -114786,1116:489:3,169,18.5,0,0,-0.13605 -114787,1116:489:4,169.5,18.5,0,0,-0.13605 -114788,1117:380:3,170,18.5,0,0,-0.13605 -114789,1117:380:4,170.5,18.5,0,0,-0.13605 -114790,1117:381:3,171,18.5,0,0,-0.13605 -114791,1117:381:4,171.5,18.5,0,0,-0.13605 -114792,1117:382:3,172,18.5,0,0,-0.13605 -114793,1117:382:4,172.5,18.5,0,0,-0.13605 -114794,1117:383:3,173,18.5,0,0,-0.13605 -114795,1117:383:4,173.5,18.5,0,0,-0.13605 -114796,1117:384:3,174,18.5,0,0,-0.13605 -114797,1117:384:4,174.5,18.5,0,0,-0.13605 -114798,1117:485:3,175,18.5,0,0,-0.13605 -114799,1117:485:4,175.5,18.5,0,0,-0.13605 -114800,1117:486:3,176,18.5,0,0,-0.13605 -114801,1117:486:4,176.5,18.5,0,0,-0.13605 -114802,1117:487:3,177,18.5,0,0,-0.13605 -114803,1117:487:4,177.5,18.5,0,0,-0.13605 -114804,1117:488:3,178,18.5,0,0,-0.13605 -114805,1117:488:4,178.5,18.5,0,0,-0.13605 -114806,1117:489:3,179,18.5,0,0,-0.13605 -114807,1117:489:4,179.5,18.5,0,0,-0.13605 -114808,1118:380:3,180,18.5,0,0,-0.13605 -114809,7118:390:1,-180,19,0,0,-0.13605 -114810,7117:499:2,-179.5,19,0,0,-0.13605 -114811,7117:499:1,-179,19,0,0,-0.13605 -114812,7117:498:2,-178.5,19,0,0,-0.13605 -114813,7117:498:1,-178,19,0,0,-0.13605 -114814,7117:497:2,-177.5,19,0,0,-0.13605 -114815,7117:497:1,-177,19,0,0,-0.13605 -114816,7117:496:2,-176.5,19,0,0,-0.13605 -114817,7117:496:1,-176,19,0,0,-0.13605 -114818,7117:495:2,-175.5,19,0,0,-0.13605 -114819,7117:495:1,-175,19,0,0,-0.13605 -114820,7117:394:2,-174.5,19,0,0,-0.13605 -114821,7117:394:1,-174,19,0,0,-0.13605 -114822,7117:393:2,-173.5,19,0,0,-0.13605 -114823,7117:393:1,-173,19,0,0,-0.13605 -114824,7117:392:2,-172.5,19,0,0,-0.13605 -114825,7117:392:1,-172,19,0,0,-0.13605 -114826,7117:391:2,-171.5,19,0,0,-0.13605 -114827,7117:391:1,-171,19,0,0,-0.13605 -114828,7117:390:2,-170.5,19,0,0,-0.13605 -114829,7117:390:1,-170,19,0,0,-0.13605 -114830,7116:499:2,-169.5,19,0,0,-0.13605 -114831,7116:499:1,-169,19,0,0,-0.13605 -114832,7116:498:2,-168.5,19,0,0,-0.13605 -114833,7116:498:1,-168,19,0,0,-0.13605 -114834,7116:497:2,-167.5,19,0,0,-0.13605 -114835,7116:497:1,-167,19,0,0,-0.13605 -114836,7116:496:2,-166.5,19,0,0,-0.13605 -114837,7116:496:1,-166,19,0,0,-0.13605 -114838,7116:495:2,-165.5,19,0,0,-0.13605 -114839,7116:495:1,-165,19,0,0,-0.13605 -114840,7116:394:2,-164.5,19,0,0,-0.13605 -114841,7116:394:1,-164,19,0,0,-0.13605 -114842,7116:393:2,-163.5,19,0,0,-0.13605 -114843,7116:393:1,-163,19,0,0,-0.13605 -114844,7116:392:2,-162.5,19,0,0,-0.13605 -114845,7116:392:1,-162,19,0,0,-0.13605 -114846,7116:391:2,-161.5,19,0,0,-0.13605 -114847,7116:391:1,-161,19,0,0,-0.13605 -114848,7116:390:2,-160.5,19,0,0,-0.13605 -114849,7116:390:1,-160,19,0,0,-0.13605 -114850,7115:499:2,-159.5,19,0,0,-0.13605 -114851,7115:499:1,-159,19,0,0,-0.13605 -114852,7115:498:2,-158.5,19,0,0,-0.13605 -114853,7115:498:1,-158,19,0,0,-0.13605 -114854,7115:497:2,-157.5,19,0,0,-0.13605 -114855,7115:497:1,-157,19,0,0,-0.13605 -114856,7115:496:2,-156.5,19,0,0,-0.13605 -114857,7115:496:1,-156,19,0,0,-0.13605 -114858,7115:495:2,-155.5,19,0,0,-0.13605 -114859,7115:495:1,-155,19,0,0,-0.13605 -114860,7115:394:2,-154.5,19,0,0,-0.13605 -114861,7115:394:1,-154,19,0,0,-0.13605 -114862,7115:393:2,-153.5,19,0,0,-0.13605 -114863,7115:393:1,-153,19,0,0,-0.13605 -114864,7115:392:2,-152.5,19,0,0,-0.13605 -114865,7115:392:1,-152,19,0,0,-0.13605 -114866,7115:391:2,-151.5,19,0,0,-0.13605 -114867,7115:391:1,-151,19,0,0,-0.13605 -114868,7115:390:2,-150.5,19,0,0,-0.13605 -114869,7115:390:1,-150,19,0,0,-0.13605 -114870,7114:499:2,-149.5,19,0,0,-0.13605 -114871,7114:499:1,-149,19,0,0,-0.13605 -114872,7114:498:2,-148.5,19,0,0,-0.13605 -114873,7114:498:1,-148,19,0,0,-0.13605 -114874,7114:497:2,-147.5,19,0,0,-0.13605 -114875,7114:497:1,-147,19,0,0,-0.13605 -114876,7114:496:2,-146.5,19,0,0,-0.13605 -114877,7114:496:1,-146,19,0,0,-0.13605 -114878,7114:495:2,-145.5,19,0,0,-0.13605 -114879,7114:495:1,-145,19,0,0,-0.13605 -114880,7114:394:2,-144.5,19,0,0,-0.13605 -114881,7114:394:1,-144,19,0,0,-0.13605 -114882,7114:393:2,-143.5,19,0,0,-0.13605 -114883,7114:393:1,-143,19,0,0,-0.13605 -114884,7114:392:2,-142.5,19,0,0,-0.13605 -114885,7114:392:1,-142,19,0,0,-0.13605 -114886,7114:391:2,-141.5,19,0,0,-0.13605 -114887,7114:391:1,-141,19,0,0,-0.13605 -114888,7114:390:2,-140.5,19,0,0,-0.13605 -114889,7114:390:1,-140,19,0,0,-0.13605 -114890,7113:499:2,-139.5,19,0,0,-0.13605 -114891,7113:499:1,-139,19,0,0,-0.13605 -114892,7113:498:2,-138.5,19,0,0,-0.13605 -114893,7113:498:1,-138,19,0,0,-0.13605 -114894,7113:497:2,-137.5,19,0,0,-0.13605 -114895,7113:497:1,-137,19,0,0,-0.13605 -114896,7113:496:2,-136.5,19,0,0,-0.13605 -114897,7113:496:1,-136,19,0,0,-0.13605 -114898,7113:495:2,-135.5,19,0,0,-0.13605 -114899,7113:495:1,-135,19,0,0,-0.13605 -114900,7113:394:2,-134.5,19,0,0,-0.13605 -114901,7113:394:1,-134,19,0,0,-0.13605 -114902,7113:393:2,-133.5,19,0,0,-0.13605 -114903,7113:393:1,-133,19,0,0,-0.13605 -114904,7113:392:2,-132.5,19,0,0,-0.13605 -114905,7113:392:1,-132,19,0,0,-0.13605 -114906,7113:391:2,-131.5,19,0,0,-0.13605 -114907,7113:391:1,-131,19,0,0,-0.13605 -114908,7113:390:2,-130.5,19,0,0,-0.13605 -114909,7113:390:1,-130,19,0,0,-0.13605 -114910,7112:499:2,-129.5,19,0,0,-0.13605 -114911,7112:499:1,-129,19,0,0,-0.13605 -114912,7112:498:2,-128.5,19,0,0,-0.13605 -114913,7112:498:1,-128,19,0,0,-0.13605 -114914,7112:497:2,-127.5,19,0,0,-0.13605 -114915,7112:497:1,-127,19,0,0,-0.13605 -114916,7112:496:2,-126.5,19,0,0,-0.13605 -114917,7112:496:1,-126,19,0,0,-0.13605 -114918,7112:495:2,-125.5,19,0,0,-0.13605 -114919,7112:495:1,-125,19,0,0,-0.13605 -114920,7112:394:2,-124.5,19,0,0,-0.13605 -114921,7112:394:1,-124,19,0,0,-0.13605 -114922,7112:393:2,-123.5,19,0,0,-0.13605 -114923,7112:393:1,-123,19,0,0,-0.13605 -114924,7112:392:2,-122.5,19,0,0,-0.13605 -114925,7112:392:1,-122,19,0,0,-0.13605 -114926,7112:391:2,-121.5,19,0,0,-0.13605 -114927,7112:391:1,-121,19,0,0,-0.13605 -114928,7112:390:2,-120.5,19,0,0,-0.13605 -114929,7112:390:1,-120,19,0,0,-0.13605 -114930,7111:499:2,-119.5,19,0,0,-0.13605 -114931,7111:499:1,-119,19,0,0,-0.13605 -114932,7111:498:2,-118.5,19,0,0,-0.13605 -114933,7111:498:1,-118,19,0,0,-0.13605 -114934,7111:497:2,-117.5,19,0,0,-0.13605 -114935,7111:497:1,-117,19,0,0,-0.13605 -114936,7111:496:2,-116.5,19,0,0,-0.13605 -114937,7111:394:2,-114.5,19,0,0,-0.13605 -114938,7111:394:1,-114,19,0,0,-0.13605 -114939,7111:393:2,-113.5,19,0,0,-0.13605 -114940,7108:391:1,-81,19,0,0,-0.13605 -114941,7108:390:2,-80.5,19,0,0,-0.13605 -114942,7108:390:1,-80,19,0,0,-0.13605 -114943,7107:499:2,-79.5,19,0,0,-0.13605 -114944,7107:499:1,-79,19,0,0,-0.137337 -114945,7107:498:2,-78.5,19,0,0,-0.13605 -114946,7107:498:1,-78,19,0,0,-0.13605 -114947,7107:497:2,-77.5,19,0,0,-0.13605 -114948,7107:497:1,-77,19,0,0,-0.13605 -114949,7107:496:2,-76.5,19,0,0,-0.13605 -114950,7107:496:1,-76,19,0,0,-0.13605 -114951,7107:495:2,-75.5,19,0,0,-0.13605 -114952,7107:495:1,-75,19,0,0,-0.13605 -114953,7107:394:2,-74.5,19,0,0,-0.13605 -114954,7107:394:1,-74,19,0,0,-0.13605 -114955,7107:393:2,-73.5,19,0,0,-0.13605 -114956,7107:393:1,-73,19,0,0,-0.13605 -114957,7107:392:2,-72.5,19,0,0,-0.13605 -114958,7107:392:1,-72,19,0,0,-0.13605 -114959,7107:391:2,-71.5,19,0,0,-0.13605 -114960,7107:391:1,-71,19,0,0,-0.13605 -114961,7107:390:2,-70.5,19,0,0,-0.13605 -114962,7107:390:1,-70,19,0,0,-0.13605 -114963,7106:499:2,-69.5,19,0,0,-0.13605 -114964,7106:499:1,-69,19,0,0,-0.13605 -114965,7106:498:2,-68.5,19,0,0,-0.13605 -114966,7106:498:1,-68,19,0,0,-0.13605 -114967,7106:497:2,-67.5,19,0,0,-0.13605 -114968,7106:497:1,-67,19,0,0,-0.13605 -114969,7106:496:2,-66.5,19,0,0,-0.13605 -114970,7106:496:1,-66,19,0,0,-0.13605 -114971,7106:495:2,-65.5,19,0,0,-0.13605 -114972,7106:495:1,-65,19,0,0,-0.13605 -114973,7106:394:2,-64.5,19,0,0,-0.13605 -114974,7106:394:1,-64,19,0,0,-0.13605 -114975,7106:393:2,-63.5,19,0,0,-0.13605 -114976,7106:393:1,-63,19,0,0,-0.13605 -114977,7106:392:2,-62.5,19,0,0,-0.13605 -114978,7106:392:1,-62,19,0,0,-0.13605 -114979,7106:391:2,-61.5,19,0,0,-0.13605 -114980,7106:391:1,-61,19,0,0,-0.13605 -114981,7106:390:2,-60.5,19,0,0,-0.13605 -114982,7106:390:1,-60,19,0,0,-0.13605 -114983,7105:499:2,-59.5,19,0,0,-0.13605 -114984,7105:499:1,-59,19,0,0,-0.13605 -114985,7105:498:2,-58.5,19,0,0,-0.13605 -114986,7105:498:1,-58,19,0,0,-0.13605 -114987,7105:497:2,-57.5,19,0,0,-0.13605 -114988,7105:497:1,-57,19,0,0,-0.13605 -114989,7105:496:2,-56.5,19,0,0,-0.13605 -114990,7105:496:1,-56,19,0,0,-0.13605 -114991,7105:495:2,-55.5,19,0,0,-0.13605 -114992,7105:495:1,-55,19,0,0,-0.13605 -114993,7105:394:2,-54.5,19,0,0,-0.13605 -114994,7105:394:1,-54,19,0,0,-0.13605 -114995,7105:393:2,-53.5,19,0,0,-0.13605 -114996,7105:393:1,-53,19,0,0,-0.13605 -114997,7105:392:2,-52.5,19,0,0,-0.13605 -114998,7105:392:1,-52,19,0,0,-0.13605 -114999,7105:391:2,-51.5,19,0,0,-0.13605 -115000,7105:391:1,-51,19,0,0,-0.13605 -115001,7105:390:2,-50.5,19,0,0,-0.13605 -115002,7105:390:1,-50,19,0,0,-0.13605 -115003,7104:499:2,-49.5,19,0,0,-0.13605 -115004,7104:499:1,-49,19,0,0,-0.13605 -115005,7104:498:2,-48.5,19,0,0,-0.13605 -115006,7104:498:1,-48,19,0,0,-0.13605 -115007,7104:497:2,-47.5,19,0,0,-0.13605 -115008,7104:497:1,-47,19,0,0,-0.13605 -115009,7104:496:2,-46.5,19,0,0,-0.13605 -115010,7104:496:1,-46,19,0,0,-0.13605 -115011,7104:495:2,-45.5,19,0,0,-0.13605 -115012,7104:495:1,-45,19,0,0,-0.13605 -115013,7104:394:2,-44.5,19,0,0,-0.13605 -115014,7104:394:1,-44,19,0,0,-0.13605 -115015,7104:393:2,-43.5,19,0,0,-0.13605 -115016,7104:393:1,-43,19,0,0,-0.13605 -115017,7104:392:2,-42.5,19,0,0,-0.13605 -115018,7104:392:1,-42,19,0,0,-0.13605 -115019,7104:391:2,-41.5,19,0,0,-0.13605 -115020,7104:391:1,-41,19,0,0,-0.13605 -115021,7104:390:2,-40.5,19,0,0,-0.13605 -115022,7104:390:1,-40,19,0,0,-0.13605 -115023,7103:499:2,-39.5,19,0,0,-0.13605 -115024,7103:499:1,-39,19,0,0,-0.13605 -115025,7103:498:2,-38.5,19,0,0,-0.13605 -115026,7103:498:1,-38,19,0,0,-0.13605 -115027,7103:497:2,-37.5,19,0,0,-0.13605 -115028,7103:497:1,-37,19,0,0,-0.13605 -115029,7103:496:2,-36.5,19,0,0,-0.13605 -115030,7103:496:1,-36,19,0,0,-0.13605 -115031,7103:495:2,-35.5,19,0,0,-0.13605 -115032,7103:495:1,-35,19,0,0,-0.13605 -115033,7103:394:2,-34.5,19,0,0,-0.13605 -115034,7103:394:1,-34,19,0,0,-0.13605 -115035,7103:393:2,-33.5,19,0,0,-0.13605 -115036,7103:393:1,-33,19,0,0,-0.13605 -115037,7103:392:2,-32.5,19,0,0,-0.13605 -115038,7103:392:1,-32,19,0,0,-0.13605 -115039,7103:391:2,-31.5,19,0,0,-0.13605 -115040,7103:391:1,-31,19,0,0,-0.13605 -115041,7103:390:2,-30.5,19,0,0,-0.13605 -115042,7103:390:1,-30,19,0,0,-0.13605 -115043,7102:499:2,-29.5,19,0,0,-0.13605 -115044,7102:499:1,-29,19,0,0,-0.13605 -115045,7102:498:2,-28.5,19,0,0,-0.13605 -115046,7102:498:1,-28,19,0,0,-0.13605 -115047,7102:497:2,-27.5,19,0,0,-0.13605 -115048,7102:497:1,-27,19,0,0,-0.13605 -115049,7102:496:2,-26.5,19,0,0,-0.13605 -115050,7102:496:1,-26,19,0,0,-0.13605 -115051,7102:495:2,-25.5,19,0,0,-0.13605 -115052,7102:495:1,-25,19,0,0,-0.13605 -115053,7102:394:2,-24.5,19,0,0,-0.13605 -115054,7102:394:1,-24,19,0,0,-0.13605 -115055,7102:393:2,-23.5,19,0,0,-0.13605 -115056,7102:393:1,-23,19,0,0,-0.13605 -115057,7102:392:2,-22.5,19,0,0,-0.13605 -115058,7102:392:1,-22,19,0,0,-0.13605 -115059,7102:391:2,-21.5,19,0,0,-0.13605 -115060,7102:391:1,-21,19,0,0,-0.13605 -115061,7102:390:2,-20.5,19,0,0,-0.13605 -115062,7102:390:1,-20,19,0,0,-0.13605 -115063,7101:499:2,-19.5,19,0,0,-0.13605 -115064,7101:499:1,-19,19,0,0,-0.13605 -115065,7101:498:2,-18.5,19,0,0,-0.13605 -115066,7101:498:1,-18,19,0,0,-0.13605 -115067,7101:497:2,-17.5,19,0,0,-0.13605 -115068,7101:497:1,-17,19,0,0,-0.13605 -115069,7101:496:2,-16.5,19,0,0,-0.13605 -115070,7101:496:1,-16,19,0,0,-0.13605 -115071,7101:495:2,-15.5,19,0,0,-0.13605 -115072,7101:495:1,-15,19,0,0,-0.13605 -115073,7101:394:2,-14.5,19,0,0,-0.13605 -115074,7101:394:1,-14,19,0,0,-0.13605 -115075,7101:393:2,-13.5,19,0,0,-0.13605 -115076,7101:393:1,-13,19,0,0,-0.13605 -115077,7101:392:2,-12.5,19,0,0,-0.13605 -115078,7101:392:1,-12,19,0,0,-0.13605 -115079,7101:391:2,-11.5,19,0,0,-0.13605 -115080,7101:391:1,-11,19,0,0,-0.13605 -115081,7101:390:2,-10.5,19,0,0,-0.13605 -115082,1101:497:2,17.5,19,0,0,-0.13605 -115083,1101:498:1,18,19,0,0,-0.13605 -115084,1101:498:2,18.5,19,0,0,-0.13605 -115085,1101:499:1,19,19,0,0,-0.13605 -115086,1101:499:2,19.5,19,0,0,-0.13605 -115087,1102:499:1,29,19,0,0,-0.13605 -115088,1112:392:2,122.5,19,0,0,-0.13605 -115089,1112:393:1,123,19,0,0,-0.13605 -115090,1112:393:2,123.5,19,0,0,-0.13605 -115091,1112:394:1,124,19,0,0,-0.13605 -115092,1112:394:2,124.5,19,0,0,-0.13605 -115093,1112:495:1,125,19,0,0,-0.13605 -115094,1112:495:2,125.5,19,0,0,-0.13605 -115095,1112:496:1,126,19,0,0,-0.13605 -115096,1112:496:2,126.5,19,0,0,-0.13605 -115097,1112:497:1,127,19,0,0,-0.13605 -115098,1112:497:2,127.5,19,0,0,-0.13605 -115099,1112:498:1,128,19,0,0,-0.13605 -115100,1112:498:2,128.5,19,0,0,-0.13605 -115101,1112:499:1,129,19,0,0,-0.13605 -115102,1112:499:2,129.5,19,0,0,-0.13605 -115103,1113:390:1,130,19,0,0,-0.13605 -115104,1113:390:2,130.5,19,0,0,-0.13605 -115105,1113:391:1,131,19,0,0,-0.13605 -115106,1113:391:2,131.5,19,0,0,-0.13605 -115107,1113:392:1,132,19,0,0,-0.13605 -115108,1113:392:2,132.5,19,0,0,-0.13605 -115109,1113:393:1,133,19,0,0,-0.13605 -115110,1113:393:2,133.5,19,0,0,-0.13605 -115111,1113:394:1,134,19,0,0,-0.13605 -115112,1113:394:2,134.5,19,0,0,-0.13605 -115113,1113:495:1,135,19,0,0,-0.13605 -115114,1113:495:2,135.5,19,0,0,-0.13605 -115115,1113:496:1,136,19,0,0,-0.13605 -115116,1113:496:2,136.5,19,0,0,-0.13605 -115117,1113:497:1,137,19,0,0,-0.13605 -115118,1113:497:2,137.5,19,0,0,-0.13605 -115119,1113:498:1,138,19,0,0,-0.13605 -115120,1113:498:2,138.5,19,0,0,-0.13605 -115121,1113:499:1,139,19,0,0,-0.13605 -115122,1113:499:2,139.5,19,0,0,-0.13605 -115123,1114:390:1,140,19,0,0,-0.13605 -115124,1114:390:2,140.5,19,0,0,-0.13605 -115125,1114:391:1,141,19,0,0,-0.13605 -115126,1114:391:2,141.5,19,0,0,-0.13605 -115127,1114:392:1,142,19,0,0,-0.13605 -115128,1114:392:2,142.5,19,0,0,-0.13605 -115129,1114:393:1,143,19,0,0,-0.13605 -115130,1114:393:2,143.5,19,0,0,-0.13605 -115131,1114:394:1,144,19,0,0,-0.13605 -115132,1114:394:2,144.5,19,0,0,-0.13605 -115133,1114:495:1,145,19,0,0,-0.13605 -115134,1114:495:2,145.5,19,0,0,-0.13605 -115135,1114:496:1,146,19,0,0,-0.13605 -115136,1114:496:2,146.5,19,0,0,-0.13605 -115137,1114:497:1,147,19,0,0,-0.13605 -115138,1114:497:2,147.5,19,0,0,-0.13605 -115139,1114:498:1,148,19,0,0,-0.13605 -115140,1114:498:2,148.5,19,0,0,-0.13605 -115141,1114:499:1,149,19,0,0,-0.13605 -115142,1114:499:2,149.5,19,0,0,-0.13605 -115143,1115:390:1,150,19,0,0,-0.13605 -115144,1115:390:2,150.5,19,0,0,-0.13605 -115145,1115:391:1,151,19,0,0,-0.13605 -115146,1115:391:2,151.5,19,0,0,-0.13605 -115147,1115:392:1,152,19,0,0,-0.13605 -115148,1115:392:2,152.5,19,0,0,-0.13605 -115149,1115:393:1,153,19,0,0,-0.13605 -115150,1115:393:2,153.5,19,0,0,-0.13605 -115151,1115:394:1,154,19,0,0,-0.13605 -115152,1115:394:2,154.5,19,0,0,-0.13605 -115153,1115:495:1,155,19,0,0,-0.13605 -115154,1115:495:2,155.5,19,0,0,-0.13605 -115155,1115:496:1,156,19,0,0,-0.13605 -115156,1115:496:2,156.5,19,0,0,-0.13605 -115157,1115:497:1,157,19,0,0,-0.13605 -115158,1115:497:2,157.5,19,0,0,-0.13605 -115159,1115:498:1,158,19,0,0,-0.13605 -115160,1115:498:2,158.5,19,0,0,-0.13605 -115161,1115:499:1,159,19,0,0,-0.13605 -115162,1115:499:2,159.5,19,0,0,-0.13605 -115163,1116:390:1,160,19,0,0,-0.13605 -115164,1116:390:2,160.5,19,0,0,-0.13605 -115165,1116:391:1,161,19,0,0,-0.13605 -115166,1116:391:2,161.5,19,0,0,-0.13605 -115167,1116:392:1,162,19,0,0,-0.13605 -115168,1116:392:2,162.5,19,0,0,-0.13605 -115169,1116:393:1,163,19,0,0,-0.13605 -115170,1116:393:2,163.5,19,0,0,-0.13605 -115171,1116:394:1,164,19,0,0,-0.13605 -115172,1116:394:2,164.5,19,0,0,-0.13605 -115173,1116:495:1,165,19,0,0,-0.13605 -115174,1116:495:2,165.5,19,0,0,-0.13605 -115175,1116:496:1,166,19,0,0,-0.13605 -115176,1116:496:2,166.5,19,0,0,-0.13605 -115177,1116:497:1,167,19,0,0,-0.13605 -115178,1116:497:2,167.5,19,0,0,-0.13605 -115179,1116:498:1,168,19,0,0,-0.13605 -115180,1116:498:2,168.5,19,0,0,-0.13605 -115181,1116:499:1,169,19,0,0,-0.13605 -115182,1116:499:2,169.5,19,0,0,-0.13605 -115183,1117:390:1,170,19,0,0,-0.13605 -115184,1117:390:2,170.5,19,0,0,-0.13605 -115185,1117:391:1,171,19,0,0,-0.13605 -115186,1117:391:2,171.5,19,0,0,-0.13605 -115187,1117:392:1,172,19,0,0,-0.13605 -115188,1117:392:2,172.5,19,0,0,-0.13605 -115189,1117:393:1,173,19,0,0,-0.13605 -115190,1117:393:2,173.5,19,0,0,-0.13605 -115191,1117:394:1,174,19,0,0,-0.13605 -115192,1117:394:2,174.5,19,0,0,-0.13605 -115193,1117:495:1,175,19,0,0,-0.13605 -115194,1117:495:2,175.5,19,0,0,-0.13605 -115195,1117:496:1,176,19,0,0,-0.13605 -115196,1117:496:2,176.5,19,0,0,-0.13605 -115197,1117:497:1,177,19,0,0,-0.13605 -115198,1117:497:2,177.5,19,0,0,-0.13605 -115199,1117:498:1,178,19,0,0,-0.13605 -115200,1117:498:2,178.5,19,0,0,-0.13605 -115201,1117:499:1,179,19,0,0,-0.13605 -115202,1117:499:2,179.5,19,0,0,-0.13605 -115203,1118:390:1,180,19,0,0,-0.13605 -115204,7118:390:3,-180,19.5,0,0,-0.13605 -115205,7117:499:4,-179.5,19.5,0,0,-0.13605 -115206,7117:499:3,-179,19.5,0,0,-0.13605 -115207,7117:498:4,-178.5,19.5,0,0,-0.13605 -115208,7117:498:3,-178,19.5,0,0,-0.13605 -115209,7117:497:4,-177.5,19.5,0,0,-0.13605 -115210,7117:497:3,-177,19.5,0,0,-0.13605 -115211,7117:496:4,-176.5,19.5,0,0,-0.13605 -115212,7117:496:3,-176,19.5,0,0,-0.13605 -115213,7117:495:4,-175.5,19.5,0,0,-0.13605 -115214,7117:495:3,-175,19.5,0,0,-0.13605 -115215,7117:394:4,-174.5,19.5,0,0,-0.13605 -115216,7117:394:3,-174,19.5,0,0,-0.13605 -115217,7117:393:4,-173.5,19.5,0,0,-0.13605 -115218,7117:393:3,-173,19.5,0,0,-0.13605 -115219,7117:392:4,-172.5,19.5,0,0,-0.13605 -115220,7117:392:3,-172,19.5,0,0,-0.13605 -115221,7117:391:4,-171.5,19.5,0,0,-0.13605 -115222,7117:391:3,-171,19.5,0,0,-0.13605 -115223,7117:390:4,-170.5,19.5,0,0,-0.13605 -115224,7117:390:3,-170,19.5,0,0,-0.13605 -115225,7116:499:4,-169.5,19.5,0,0,-0.13605 -115226,7116:499:3,-169,19.5,0,0,-0.13605 -115227,7116:498:4,-168.5,19.5,0,0,-0.13605 -115228,7116:498:3,-168,19.5,0,0,-0.13605 -115229,7116:497:4,-167.5,19.5,0,0,-0.13605 -115230,7116:497:3,-167,19.5,0,0,-0.13605 -115231,7116:496:4,-166.5,19.5,0,0,-0.13605 -115232,7116:496:3,-166,19.5,0,0,-0.13605 -115233,7116:495:4,-165.5,19.5,0,0,-0.13605 -115234,7116:495:3,-165,19.5,0,0,-0.13605 -115235,7116:394:4,-164.5,19.5,0,0,-0.13605 -115236,7116:394:3,-164,19.5,0,0,-0.13605 -115237,7116:393:4,-163.5,19.5,0,0,-0.13605 -115238,7116:393:3,-163,19.5,0,0,-0.13605 -115239,7116:392:4,-162.5,19.5,0,0,-0.13605 -115240,7116:392:3,-162,19.5,0,0,-0.13605 -115241,7116:391:4,-161.5,19.5,0,0,-0.13605 -115242,7116:391:3,-161,19.5,0,0,-0.13605 -115243,7116:390:4,-160.5,19.5,0,0,-0.13605 -115244,7116:390:3,-160,19.5,0,0,-0.13605 -115245,7115:499:4,-159.5,19.5,0,0,-0.13605 -115246,7115:499:3,-159,19.5,0,0,-0.13605 -115247,7115:498:4,-158.5,19.5,0,0,-0.13605 -115248,7115:498:3,-158,19.5,0,0,-0.13605 -115249,7115:497:4,-157.5,19.5,0,0,-0.13605 -115250,7115:497:3,-157,19.5,0,0,-0.13605 -115251,7115:496:4,-156.5,19.5,0,0,-0.13605 -115252,7115:496:3,-156,19.5,0,0,-0.13605 -115253,7115:495:4,-155.5,19.5,0,0,-0.13605 -115254,7115:495:3,-155,19.5,0,0,-0.13605 -115255,7115:394:4,-154.5,19.5,0,0,-0.13605 -115256,7115:394:3,-154,19.5,0,0,-0.13605 -115257,7115:393:4,-153.5,19.5,0,0,-0.13605 -115258,7115:393:3,-153,19.5,0,0,-0.13605 -115259,7115:392:4,-152.5,19.5,0,0,-0.13605 -115260,7115:392:3,-152,19.5,0,0,-0.13605 -115261,7115:391:4,-151.5,19.5,0,0,-0.13605 -115262,7115:391:3,-151,19.5,0,0,-0.13605 -115263,7115:390:4,-150.5,19.5,0,0,-0.13605 -115264,7115:390:3,-150,19.5,0,0,-0.13605 -115265,7114:499:4,-149.5,19.5,0,0,-0.13605 -115266,7114:499:3,-149,19.5,0,0,-0.13605 -115267,7114:498:4,-148.5,19.5,0,0,-0.13605 -115268,7114:498:3,-148,19.5,0,0,-0.13605 -115269,7114:497:4,-147.5,19.5,0,0,-0.13605 -115270,7114:497:3,-147,19.5,0,0,-0.13605 -115271,7114:496:4,-146.5,19.5,0,0,-0.13605 -115272,7114:496:3,-146,19.5,0,0,-0.13605 -115273,7114:495:4,-145.5,19.5,0,0,-0.13605 -115274,7114:495:3,-145,19.5,0,0,-0.13605 -115275,7114:394:4,-144.5,19.5,0,0,-0.13605 -115276,7114:394:3,-144,19.5,0,0,-0.13605 -115277,7114:393:4,-143.5,19.5,0,0,-0.13605 -115278,7114:393:3,-143,19.5,0,0,-0.13605 -115279,7114:392:4,-142.5,19.5,0,0,-0.13605 -115280,7114:392:3,-142,19.5,0,0,-0.13605 -115281,7114:391:4,-141.5,19.5,0,0,-0.13605 -115282,7114:391:3,-141,19.5,0,0,-0.13605 -115283,7114:390:4,-140.5,19.5,0,0,-0.13605 -115284,7114:390:3,-140,19.5,0,0,-0.13605 -115285,7113:499:4,-139.5,19.5,0,0,-0.13605 -115286,7113:499:3,-139,19.5,0,0,-0.13605 -115287,7113:498:4,-138.5,19.5,0,0,-0.13605 -115288,7113:498:3,-138,19.5,0,0,-0.13605 -115289,7113:497:4,-137.5,19.5,0,0,-0.13605 -115290,7113:497:3,-137,19.5,0,0,-0.13605 -115291,7113:496:4,-136.5,19.5,0,0,-0.13605 -115292,7113:496:3,-136,19.5,0,0,-0.13605 -115293,7113:495:4,-135.5,19.5,0,0,-0.13605 -115294,7113:495:3,-135,19.5,0,0,-0.13605 -115295,7113:394:4,-134.5,19.5,0,0,-0.13605 -115296,7113:394:3,-134,19.5,0,0,-0.13605 -115297,7113:393:4,-133.5,19.5,0,0,-0.13605 -115298,7113:393:3,-133,19.5,0,0,-0.13605 -115299,7113:392:4,-132.5,19.5,0,0,-0.13605 -115300,7113:392:3,-132,19.5,0,0,-0.13605 -115301,7113:391:4,-131.5,19.5,0,0,-0.13605 -115302,7113:391:3,-131,19.5,0,0,-0.13605 -115303,7113:390:4,-130.5,19.5,0,0,-0.13605 -115304,7113:390:3,-130,19.5,0,0,-0.13605 -115305,7112:499:4,-129.5,19.5,0,0,-0.13605 -115306,7112:499:3,-129,19.5,0,0,-0.13605 -115307,7112:498:4,-128.5,19.5,0,0,-0.13605 -115308,7112:498:3,-128,19.5,0,0,-0.13605 -115309,7112:497:4,-127.5,19.5,0,0,-0.13605 -115310,7112:497:3,-127,19.5,0,0,-0.13605 -115311,7112:496:4,-126.5,19.5,0,0,-0.13605 -115312,7112:496:3,-126,19.5,0,0,-0.13605 -115313,7112:495:4,-125.5,19.5,0,0,-0.13605 -115314,7112:495:3,-125,19.5,0,0,-0.13605 -115315,7112:394:4,-124.5,19.5,0,0,-0.13605 -115316,7112:394:3,-124,19.5,0,0,-0.13605 -115317,7112:393:4,-123.5,19.5,0,0,-0.13605 -115318,7112:393:3,-123,19.5,0,0,-0.13605 -115319,7112:392:4,-122.5,19.5,0,0,-0.13605 -115320,7112:392:3,-122,19.5,0,0,-0.13605 -115321,7112:391:4,-121.5,19.5,0,0,-0.13605 -115322,7112:391:3,-121,19.5,0,0,-0.13605 -115323,7112:390:4,-120.5,19.5,0,0,-0.13605 -115324,7112:390:3,-120,19.5,0,0,-0.13605 -115325,7111:499:4,-119.5,19.5,0,0,-0.13605 -115326,7111:499:3,-119,19.5,0,0,-0.13605 -115327,7111:498:4,-118.5,19.5,0,0,-0.13605 -115328,7111:498:3,-118,19.5,0,0,-0.13605 -115329,7111:497:4,-117.5,19.5,0,0,-0.13605 -115330,7111:497:3,-117,19.5,0,0,-0.13605 -115331,7111:394:4,-114.5,19.5,0,0,-0.13605 -115332,7108:391:3,-81,19.5,0,0,-0.13605 -115333,7108:390:4,-80.5,19.5,0,0,-0.13605 -115334,7108:390:3,-80,19.5,0,0,-0.13605 -115335,7107:499:4,-79.5,19.5,0,0,-0.13605 -115336,7107:499:3,-79,19.5,0,0,-0.13605 -115337,7107:498:4,-78.5,19.5,0,0,-0.13605 -115338,7107:498:3,-78,19.5,0,0,-0.13605 -115339,7107:497:4,-77.5,19.5,0,0,-0.13605 -115340,7107:497:3,-77,19.5,0,0,-0.13605 -115341,7107:496:4,-76.5,19.5,0,0,-0.13605 -115342,7107:496:3,-76,19.5,0,0,-0.13605 -115343,7107:495:4,-75.5,19.5,0,0,-0.13605 -115344,7107:495:3,-75,19.5,0,0,-0.13605 -115345,7107:394:4,-74.5,19.5,0,0,-0.13605 -115346,7107:394:3,-74,19.5,0,0,-0.13605 -115347,7107:393:4,-73.5,19.5,0,0,-0.13605 -115348,7107:393:3,-73,19.5,0,0,-0.13605 -115349,7107:392:4,-72.5,19.5,0,0,-0.13605 -115350,7107:392:3,-72,19.5,0,0,-0.13605 -115351,7107:391:4,-71.5,19.5,0,0,-0.13605 -115352,7107:391:3,-71,19.5,0,0,-0.13605 -115353,7107:390:4,-70.5,19.5,0,0,-0.13605 -115354,7107:390:3,-70,19.5,0,0,-0.13605 -115355,7106:499:4,-69.5,19.5,0,0,-0.13605 -115356,7106:499:3,-69,19.5,0,0,-0.13605 -115357,7106:498:4,-68.5,19.5,0,0,-0.13605 -115358,7106:498:3,-68,19.5,0,0,-0.13605 -115359,7106:497:4,-67.5,19.5,0,0,-0.13605 -115360,7106:497:3,-67,19.5,0,0,-0.13605 -115361,7106:496:4,-66.5,19.5,0,0,-0.13605 -115362,7106:496:3,-66,19.5,0,0,-0.13605 -115363,7106:495:4,-65.5,19.5,0,0,-0.13605 -115364,7106:495:3,-65,19.5,0,0,-0.13605 -115365,7106:394:4,-64.5,19.5,0,0,-0.13605 -115366,7106:394:3,-64,19.5,0,0,-0.13605 -115367,7106:393:4,-63.5,19.5,0,0,-0.13605 -115368,7106:393:3,-63,19.5,0,0,-0.13605 -115369,7106:392:4,-62.5,19.5,0,0,-0.13605 -115370,7106:392:3,-62,19.5,0,0,-0.13605 -115371,7106:391:4,-61.5,19.5,0,0,-0.13605 -115372,7106:391:3,-61,19.5,0,0,-0.13605 -115373,7106:390:4,-60.5,19.5,0,0,-0.13605 -115374,7106:390:3,-60,19.5,0,0,-0.13605 -115375,7105:499:4,-59.5,19.5,0,0,-0.13605 -115376,7105:499:3,-59,19.5,0,0,-0.13605 -115377,7105:498:4,-58.5,19.5,0,0,-0.13605 -115378,7105:498:3,-58,19.5,0,0,-0.13605 -115379,7105:497:4,-57.5,19.5,0,0,-0.13605 -115380,7105:497:3,-57,19.5,0,0,-0.13605 -115381,7105:496:4,-56.5,19.5,0,0,-0.13605 -115382,7105:496:3,-56,19.5,0,0,-0.13605 -115383,7105:495:4,-55.5,19.5,0,0,-0.13605 -115384,7105:495:3,-55,19.5,0,0,-0.13605 -115385,7105:394:4,-54.5,19.5,0,0,-0.13605 -115386,7105:394:3,-54,19.5,0,0,-0.13605 -115387,7105:393:4,-53.5,19.5,0,0,-0.13605 -115388,7105:393:3,-53,19.5,0,0,-0.13605 -115389,7105:392:4,-52.5,19.5,0,0,-0.13605 -115390,7105:392:3,-52,19.5,0,0,-0.13605 -115391,7105:391:4,-51.5,19.5,0,0,-0.13605 -115392,7105:391:3,-51,19.5,0,0,-0.13605 -115393,7105:390:4,-50.5,19.5,0,0,-0.13605 -115394,7105:390:3,-50,19.5,0,0,-0.13605 -115395,7104:499:4,-49.5,19.5,0,0,-0.13605 -115396,7104:499:3,-49,19.5,0,0,-0.13605 -115397,7104:498:4,-48.5,19.5,0,0,-0.13605 -115398,7104:498:3,-48,19.5,0,0,-0.13605 -115399,7104:497:4,-47.5,19.5,0,0,-0.13605 -115400,7104:497:3,-47,19.5,0,0,-0.13605 -115401,7104:496:4,-46.5,19.5,0,0,-0.13605 -115402,7104:496:3,-46,19.5,0,0,-0.13605 -115403,7104:495:4,-45.5,19.5,0,0,-0.13605 -115404,7104:495:3,-45,19.5,0,0,-0.13605 -115405,7104:394:4,-44.5,19.5,0,0,-0.13605 -115406,7104:394:3,-44,19.5,0,0,-0.13605 -115407,7104:393:4,-43.5,19.5,0,0,-0.13605 -115408,7104:393:3,-43,19.5,0,0,-0.13605 -115409,7104:392:4,-42.5,19.5,0,0,-0.13605 -115410,7104:392:3,-42,19.5,0,0,-0.13605 -115411,7104:391:4,-41.5,19.5,0,0,-0.13605 -115412,7104:391:3,-41,19.5,0,0,-0.13605 -115413,7104:390:4,-40.5,19.5,0,0,-0.13605 -115414,7104:390:3,-40,19.5,0,0,-0.13605 -115415,7103:499:4,-39.5,19.5,0,0,-0.13605 -115416,7103:499:3,-39,19.5,0,0,-0.13605 -115417,7103:498:4,-38.5,19.5,0,0,-0.13605 -115418,7103:498:3,-38,19.5,0,0,-0.13605 -115419,7103:497:4,-37.5,19.5,0,0,-0.13605 -115420,7103:497:3,-37,19.5,0,0,-0.13605 -115421,7103:496:4,-36.5,19.5,0,0,-0.13605 -115422,7103:496:3,-36,19.5,0,0,-0.13605 -115423,7103:495:4,-35.5,19.5,0,0,-0.13605 -115424,7103:495:3,-35,19.5,0,0,-0.13605 -115425,7103:394:4,-34.5,19.5,0,0,-0.13605 -115426,7103:394:3,-34,19.5,0,0,-0.13605 -115427,7103:393:4,-33.5,19.5,0,0,-0.13605 -115428,7103:393:3,-33,19.5,0,0,-0.13605 -115429,7103:392:4,-32.5,19.5,0,0,-0.13605 -115430,7103:392:3,-32,19.5,0,0,-0.13605 -115431,7103:391:4,-31.5,19.5,0,0,-0.13605 -115432,7103:391:3,-31,19.5,0,0,-0.13605 -115433,7103:390:4,-30.5,19.5,0,0,-0.13605 -115434,7103:390:3,-30,19.5,0,0,-0.13605 -115435,7102:499:4,-29.5,19.5,0,0,-0.13605 -115436,7102:499:3,-29,19.5,0,0,-0.13605 -115437,7102:498:4,-28.5,19.5,0,0,-0.13605 -115438,7102:498:3,-28,19.5,0,0,-0.13605 -115439,7102:497:4,-27.5,19.5,0,0,-0.13605 -115440,7102:497:3,-27,19.5,0,0,-0.13605 -115441,7102:496:4,-26.5,19.5,0,0,-0.13605 -115442,7102:496:3,-26,19.5,0,0,-0.13605 -115443,7102:495:4,-25.5,19.5,0,0,-0.13605 -115444,7102:495:3,-25,19.5,0,0,-0.13605 -115445,7102:394:4,-24.5,19.5,0,0,-0.13605 -115446,7102:394:3,-24,19.5,0,0,-0.13605 -115447,7102:393:4,-23.5,19.5,0,0,-0.13605 -115448,7102:393:3,-23,19.5,0,0,-0.13605 -115449,7102:392:4,-22.5,19.5,0,0,-0.13605 -115450,7102:392:3,-22,19.5,0,0,-0.13605 -115451,7102:391:4,-21.5,19.5,0,0,-0.13605 -115452,7102:391:3,-21,19.5,0,0,-0.13605 -115453,7102:390:4,-20.5,19.5,0,0,-0.13605 -115454,7102:390:3,-20,19.5,0,0,-0.13605 -115455,7101:499:4,-19.5,19.5,0,0,-0.13605 -115456,7101:499:3,-19,19.5,0,0,-0.13605 -115457,7101:498:4,-18.5,19.5,0,0,-0.13605 -115458,7101:498:3,-18,19.5,0,0,-0.13605 -115459,7101:497:4,-17.5,19.5,0,0,-0.13605 -115460,7101:497:3,-17,19.5,0,0,-0.13605 -115461,7101:496:4,-16.5,19.5,0,0,-0.13605 -115462,7101:496:3,-16,19.5,0,0,-0.13605 -115463,7101:495:4,-15.5,19.5,0,0,-0.13605 -115464,7101:495:3,-15,19.5,0,0,-0.13605 -115465,7101:394:4,-14.5,19.5,0,0,-0.13605 -115466,7101:394:3,-14,19.5,0,0,-0.13605 -115467,7101:393:4,-13.5,19.5,0,0,-0.13605 -115468,7101:393:3,-13,19.5,0,0,-0.13605 -115469,7101:392:4,-12.5,19.5,0,0,-0.13605 -115470,7101:392:3,-12,19.5,0,0,-0.13605 -115471,7101:391:4,-11.5,19.5,0,0,-0.13605 -115472,7101:391:3,-11,19.5,0,0,-0.13605 -115473,7101:390:4,-10.5,19.5,0,0,-0.13605 -115474,7101:390:3,-10,19.5,0,0,-0.13605 -115475,1101:495:4,15.5,19.5,0,0,-0.13605 -115476,1101:496:3,16,19.5,0,0,-0.13605 -115477,1101:496:4,16.5,19.5,0,0,-0.13605 -115478,1101:497:3,17,19.5,0,0,-0.13605 -115479,1101:497:4,17.5,19.5,0,0,-0.13605 -115480,1101:498:3,18,19.5,0,0,-0.13605 -115481,1101:498:4,18.5,19.5,0,0,-0.13605 -115482,1101:499:3,19,19.5,0,0,-0.13605 -115483,1101:499:4,19.5,19.5,0,0,-0.13605 -115484,1102:496:4,26.5,19.5,0,0,-0.13605 -115485,1102:497:3,27,19.5,0,0,-0.13605 -115486,1102:497:4,27.5,19.5,0,0,-0.13605 -115487,1102:498:3,28,19.5,0,0,-0.13605 -115488,1102:498:4,28.5,19.5,0,0,-0.13605 -115489,1102:499:3,29,19.5,0,0,-0.13605 -115490,1102:499:4,29.5,19.5,0,0,-0.13605 -115491,1103:390:3,30,19.5,0,0,-0.13605 -115492,1103:392:3,32,19.5,0,0,-0.13605 -115493,1103:392:4,32.5,19.5,0,0,-0.13605 -115494,1103:393:3,33,19.5,0,0,-0.13605 -115495,1103:393:4,33.5,19.5,0,0,-0.13605 -115496,1103:394:3,34,19.5,0,0,-0.13605 -115497,1112:392:3,122,19.5,0,0,-0.13605 -115498,1112:392:4,122.5,19.5,0,0,-0.13605 -115499,1112:393:3,123,19.5,0,0,-0.13605 -115500,1112:393:4,123.5,19.5,0,0,-0.13605 -115501,1112:394:3,124,19.5,0,0,-0.13605 -115502,1112:394:4,124.5,19.5,0,0,-0.13605 -115503,1112:495:3,125,19.5,0,0,-0.13605 -115504,1112:495:4,125.5,19.5,0,0,-0.13605 -115505,1112:496:3,126,19.5,0,0,-0.13605 -115506,1112:496:4,126.5,19.5,0,0,-0.13605 -115507,1112:497:3,127,19.5,0,0,-0.13605 -115508,1112:497:4,127.5,19.5,0,0,-0.13605 -115509,1112:498:3,128,19.5,0,0,-0.13605 -115510,1112:498:4,128.5,19.5,0,0,-0.13605 -115511,1112:499:3,129,19.5,0,0,-0.13605 -115512,1112:499:4,129.5,19.5,0,0,-0.13605 -115513,1113:390:3,130,19.5,0,0,-0.13605 -115514,1113:390:4,130.5,19.5,0,0,-0.13605 -115515,1113:392:3,132,19.5,0,0,-0.13605 -115516,1113:392:4,132.5,19.5,0,0,-0.13605 -115517,1113:393:3,133,19.5,0,0,-0.13605 -115518,1113:393:4,133.5,19.5,0,0,-0.13605 -115519,1113:394:3,134,19.5,0,0,-0.13605 -115520,1113:394:4,134.5,19.5,0,0,-0.13605 -115521,1113:495:3,135,19.5,0,0,-0.13605 -115522,1113:495:4,135.5,19.5,0,0,-0.13605 -115523,1113:496:3,136,19.5,0,0,-0.13605 -115524,1113:496:4,136.5,19.5,0,0,-0.13605 -115525,1113:497:3,137,19.5,0,0,-0.13605 -115526,1113:497:4,137.5,19.5,0,0,-0.13605 -115527,1113:498:3,138,19.5,0,0,-0.13605 -115528,1113:498:4,138.5,19.5,0,0,-0.13605 -115529,1113:499:3,139,19.5,0,0,-0.13605 -115530,1113:499:4,139.5,19.5,0,0,-0.13605 -115531,1114:390:3,140,19.5,0,0,-0.13605 -115532,1114:390:4,140.5,19.5,0,0,-0.13605 -115533,1114:391:3,141,19.5,0,0,-0.13605 -115534,1114:391:4,141.5,19.5,0,0,-0.13605 -115535,1114:392:3,142,19.5,0,0,-0.13605 -115536,1114:392:4,142.5,19.5,0,0,-0.13605 -115537,1114:393:3,143,19.5,0,0,-0.13605 -115538,1114:393:4,143.5,19.5,0,0,-0.13605 -115539,1114:394:3,144,19.5,0,0,-0.13605 -115540,1114:394:4,144.5,19.5,0,0,-0.13605 -115541,1114:495:3,145,19.5,0,0,-0.13605 -115542,1114:495:4,145.5,19.5,0,0,-0.13605 -115543,1114:496:3,146,19.5,0,0,-0.13605 -115544,1114:496:4,146.5,19.5,0,0,-0.13605 -115545,1114:497:3,147,19.5,0,0,-0.13605 -115546,1114:497:4,147.5,19.5,0,0,-0.13605 -115547,1114:498:3,148,19.5,0,0,-0.13605 -115548,1114:498:4,148.5,19.5,0,0,-0.13605 -115549,1114:499:3,149,19.5,0,0,-0.13605 -115550,1114:499:4,149.5,19.5,0,0,-0.13605 -115551,1115:390:3,150,19.5,0,0,-0.13605 -115552,1115:390:4,150.5,19.5,0,0,-0.13605 -115553,1115:391:3,151,19.5,0,0,-0.13605 -115554,1115:391:4,151.5,19.5,0,0,-0.13605 -115555,1115:392:3,152,19.5,0,0,-0.13605 -115556,1115:392:4,152.5,19.5,0,0,-0.13605 -115557,1115:393:3,153,19.5,0,0,-0.13605 -115558,1115:393:4,153.5,19.5,0,0,-0.13605 -115559,1115:394:3,154,19.5,0,0,-0.13605 -115560,1115:394:4,154.5,19.5,0,0,-0.13605 -115561,1115:495:3,155,19.5,0,0,-0.13605 -115562,1115:495:4,155.5,19.5,0,0,-0.13605 -115563,1115:496:3,156,19.5,0,0,-0.13605 -115564,1115:496:4,156.5,19.5,0,0,-0.13605 -115565,1115:497:3,157,19.5,0,0,-0.13605 -115566,1115:497:4,157.5,19.5,0,0,-0.13605 -115567,1115:498:3,158,19.5,0,0,-0.13605 -115568,1115:498:4,158.5,19.5,0,0,-0.13605 -115569,1115:499:3,159,19.5,0,0,-0.13605 -115570,1115:499:4,159.5,19.5,0,0,-0.13605 -115571,1116:390:3,160,19.5,0,0,-0.13605 -115572,1116:390:4,160.5,19.5,0,0,-0.13605 -115573,1116:391:3,161,19.5,0,0,-0.13605 -115574,1116:391:4,161.5,19.5,0,0,-0.13605 -115575,1116:392:3,162,19.5,0,0,-0.13605 -115576,1116:392:4,162.5,19.5,0,0,-0.13605 -115577,1116:393:3,163,19.5,0,0,-0.13605 -115578,1116:393:4,163.5,19.5,0,0,-0.13605 -115579,1116:394:3,164,19.5,0,0,-0.13605 -115580,1116:394:4,164.5,19.5,0,0,-0.13605 -115581,1116:495:3,165,19.5,0,0,-0.13605 -115582,1116:495:4,165.5,19.5,0,0,-0.13605 -115583,1116:496:3,166,19.5,0,0,-0.13605 -115584,1116:496:4,166.5,19.5,0,0,-0.13605 -115585,1116:497:3,167,19.5,0,0,-0.13605 -115586,1116:497:4,167.5,19.5,0,0,-0.13605 -115587,1116:498:3,168,19.5,0,0,-0.13605 -115588,1116:498:4,168.5,19.5,0,0,-0.13605 -115589,1116:499:3,169,19.5,0,0,-0.13605 -115590,1116:499:4,169.5,19.5,0,0,-0.13605 -115591,1117:390:3,170,19.5,0,0,-0.13605 -115592,1117:390:4,170.5,19.5,0,0,-0.13605 -115593,1117:391:3,171,19.5,0,0,-0.13605 -115594,1117:391:4,171.5,19.5,0,0,-0.13605 -115595,1117:392:3,172,19.5,0,0,-0.13605 -115596,1117:392:4,172.5,19.5,0,0,-0.13605 -115597,1117:393:3,173,19.5,0,0,-0.13605 -115598,1117:393:4,173.5,19.5,0,0,-0.13605 -115599,1117:394:3,174,19.5,0,0,-0.13605 -115600,1117:394:4,174.5,19.5,0,0,-0.13605 -115601,1117:495:3,175,19.5,0,0,-0.13605 -115602,1117:495:4,175.5,19.5,0,0,-0.13605 -115603,1117:496:3,176,19.5,0,0,-0.13605 -115604,1117:496:4,176.5,19.5,0,0,-0.13605 -115605,1117:497:3,177,19.5,0,0,-0.13605 -115606,1117:497:4,177.5,19.5,0,0,-0.13605 -115607,1117:498:3,178,19.5,0,0,-0.13605 -115608,1117:498:4,178.5,19.5,0,0,-0.13605 -115609,1117:499:3,179,19.5,0,0,-0.13605 -115610,1117:499:4,179.5,19.5,0,0,-0.13605 -115611,1118:390:3,180,19.5,0,0,-0.13605 -115612,7218:100:1,-180,20,0,0,-0.13605 -115613,7217:209:2,-179.5,20,0,0,-0.13605 -115614,7217:209:1,-179,20,0,0,-0.13605 -115615,7217:208:2,-178.5,20,0,0,-0.13605 -115616,7217:208:1,-178,20,0,0,-0.13605 -115617,7217:207:2,-177.5,20,0,0,-0.13605 -115618,7217:207:1,-177,20,0,0,-0.13605 -115619,7217:206:2,-176.5,20,0,0,-0.13605 -115620,7217:206:1,-176,20,0,0,-0.13605 -115621,7217:205:2,-175.5,20,0,0,-0.13605 -115622,7217:205:1,-175,20,0,0,-0.13605 -115623,7217:104:2,-174.5,20,0,0,-0.13605 -115624,7217:104:1,-174,20,0,0,-0.13605 -115625,7217:103:2,-173.5,20,0,0,-0.13605 -115626,7217:103:1,-173,20,0,0,-0.13605 -115627,7217:102:2,-172.5,20,0,0,-0.13605 -115628,7217:102:1,-172,20,0,0,-0.13605 -115629,7217:101:2,-171.5,20,0,0,-0.13605 -115630,7217:101:1,-171,20,0,0,-0.13605 -115631,7217:100:2,-170.5,20,0,0,-0.13605 -115632,7217:100:1,-170,20,0,0,-0.13605 -115633,7216:209:2,-169.5,20,0,0,-0.13605 -115634,7216:209:1,-169,20,0,0,-0.13605 -115635,7216:208:2,-168.5,20,0,0,-0.13605 -115636,7216:208:1,-168,20,0,0,-0.13605 -115637,7216:207:2,-167.5,20,0,0,-0.13605 -115638,7216:207:1,-167,20,0,0,-0.13605 -115639,7216:206:2,-166.5,20,0,0,-0.13605 -115640,7216:206:1,-166,20,0,0,-0.13605 -115641,7216:205:2,-165.5,20,0,0,-0.13605 -115642,7216:205:1,-165,20,0,0,-0.13605 -115643,7216:104:2,-164.5,20,0,0,-0.13605 -115644,7216:104:1,-164,20,0,0,-0.13605 -115645,7216:103:2,-163.5,20,0,0,-0.13605 -115646,7216:103:1,-163,20,0,0,-0.13605 -115647,7216:102:2,-162.5,20,0,0,-0.13605 -115648,7216:102:1,-162,20,0,0,-0.13605 -115649,7216:101:2,-161.5,20,0,0,-0.13605 -115650,7216:101:1,-161,20,0,0,-0.13605 -115651,7216:100:2,-160.5,20,0,0,-0.13605 -115652,7216:100:1,-160,20,0,0,-0.13605 -115653,7215:209:2,-159.5,20,0,0,-0.13605 -115654,7215:209:1,-159,20,0,0,-0.13605 -115655,7215:208:2,-158.5,20,0,0,-0.13605 -115656,7215:208:1,-158,20,0,0,-0.13605 -115657,7215:207:2,-157.5,20,0,0,-0.13605 -115658,7215:207:1,-157,20,0,0,-0.13605 -115659,7215:206:2,-156.5,20,0,0,-0.13605 -115660,7215:206:1,-156,20,0,0,-0.13605 -115661,7215:205:2,-155.5,20,0,0,-0.13605 -115662,7215:205:1,-155,20,0,0,-0.13605 -115663,7215:104:2,-154.5,20,0,0,-0.13605 -115664,7215:104:1,-154,20,0,0,-0.13605 -115665,7215:103:2,-153.5,20,0,0,-0.13605 -115666,7215:103:1,-153,20,0,0,-0.13605 -115667,7215:102:2,-152.5,20,0,0,-0.13605 -115668,7215:102:1,-152,20,0,0,-0.13605 -115669,7215:101:2,-151.5,20,0,0,-0.13605 -115670,7215:101:1,-151,20,0,0,-0.13605 -115671,7215:100:2,-150.5,20,0,0,-0.13605 -115672,7215:100:1,-150,20,0,0,-0.13605 -115673,7214:209:2,-149.5,20,0,0,-0.13605 -115674,7214:209:1,-149,20,0,0,-0.13605 -115675,7214:208:2,-148.5,20,0,0,-0.13605 -115676,7214:208:1,-148,20,0,0,-0.13605 -115677,7214:207:2,-147.5,20,0,0,-0.13605 -115678,7214:207:1,-147,20,0,0,-0.13605 -115679,7214:206:2,-146.5,20,0,0,-0.13605 -115680,7214:206:1,-146,20,0,0,-0.13605 -115681,7214:205:2,-145.5,20,0,0,-0.13605 -115682,7214:205:1,-145,20,0,0,-0.13605 -115683,7214:104:2,-144.5,20,0,0,-0.13605 -115684,7214:104:1,-144,20,0,0,-0.13605 -115685,7214:103:2,-143.5,20,0,0,-0.13605 -115686,7214:103:1,-143,20,0,0,-0.13605 -115687,7214:102:2,-142.5,20,0,0,-0.13605 -115688,7214:102:1,-142,20,0,0,-0.13605 -115689,7214:101:2,-141.5,20,0,0,-0.13605 -115690,7214:101:1,-141,20,0,0,-0.13605 -115691,7214:100:2,-140.5,20,0,0,-0.13605 -115692,7214:100:1,-140,20,0,0,-0.13605 -115693,7213:209:2,-139.5,20,0,0,-0.13605 -115694,7213:209:1,-139,20,0,0,-0.13605 -115695,7213:208:2,-138.5,20,0,0,-0.13605 -115696,7213:208:1,-138,20,0,0,-0.13605 -115697,7213:207:2,-137.5,20,0,0,-0.13605 -115698,7213:207:1,-137,20,0,0,-0.13605 -115699,7213:206:2,-136.5,20,0,0,-0.13605 -115700,7213:206:1,-136,20,0,0,-0.13605 -115701,7213:205:2,-135.5,20,0,0,-0.13605 -115702,7213:205:1,-135,20,0,0,-0.13605 -115703,7213:104:2,-134.5,20,0,0,-0.13605 -115704,7213:104:1,-134,20,0,0,-0.13605 -115705,7213:103:2,-133.5,20,0,0,-0.13605 -115706,7213:103:1,-133,20,0,0,-0.13605 -115707,7213:102:2,-132.5,20,0,0,-0.13605 -115708,7213:102:1,-132,20,0,0,-0.13605 -115709,7213:101:2,-131.5,20,0,0,-0.13605 -115710,7213:101:1,-131,20,0,0,-0.13605 -115711,7213:100:2,-130.5,20,0,0,-0.13605 -115712,7213:100:1,-130,20,0,0,-0.13605 -115713,7212:209:2,-129.5,20,0,0,-0.13605 -115714,7212:209:1,-129,20,0,0,-0.13605 -115715,7212:208:2,-128.5,20,0,0,-0.13605 -115716,7212:208:1,-128,20,0,0,-0.13605 -115717,7212:207:2,-127.5,20,0,0,-0.13605 -115718,7212:207:1,-127,20,0,0,-0.13605 -115719,7212:206:2,-126.5,20,0,0,-0.13605 -115720,7212:206:1,-126,20,0,0,-0.13605 -115721,7212:205:2,-125.5,20,0,0,-0.13605 -115722,7212:205:1,-125,20,0,0,-0.13605 -115723,7212:104:2,-124.5,20,0,0,-0.13605 -115724,7212:104:1,-124,20,0,0,-0.13605 -115725,7212:103:2,-123.5,20,0,0,-0.13605 -115726,7212:103:1,-123,20,0,0,-0.13605 -115727,7212:102:2,-122.5,20,0,0,-0.13605 -115728,7212:102:1,-122,20,0,0,-0.13605 -115729,7212:101:2,-121.5,20,0,0,-0.13605 -115730,7212:101:1,-121,20,0,0,-0.13605 -115731,7212:100:2,-120.5,20,0,0,-0.13605 -115732,7212:100:1,-120,20,0,0,-0.13605 -115733,7211:209:2,-119.5,20,0,0,-0.13605 -115734,7211:209:1,-119,20,0,0,-0.13605 -115735,7211:208:2,-118.5,20,0,0,-0.13605 -115736,7211:208:1,-118,20,0,0,-0.13605 -115737,7211:207:2,-117.5,20,0,0,-0.13605 -115738,7211:207:1,-117,20,0,0,-0.13605 -115739,7208:100:2,-80.5,20,0,0,-0.13605 -115740,7208:100:1,-80,20,0,0,-0.13605 -115741,7207:209:2,-79.5,20,0,0,-0.13605 -115742,7207:209:1,-79,20,0,0,-0.13605 -115743,7207:208:2,-78.5,20,0,0,-0.13605 -115744,7207:208:1,-78,20,0,0,-0.13605 -115745,7207:207:2,-77.5,20,0,0,-0.13605 -115746,7207:207:1,-77,20,0,0,-0.13605 -115747,7207:206:2,-76.5,20,0,0,-0.13605 -115748,7207:206:1,-76,20,0,0,-0.13605 -115749,7207:205:2,-75.5,20,0,0,-0.13605 -115750,7207:205:1,-75,20,0,0,-0.13605 -115751,7207:104:2,-74.5,20,0,0,-0.13605 -115752,7207:104:1,-74,20,0,0,-0.13605 -115753,7207:103:2,-73.5,20,0,0,-0.13605 -115754,7207:103:1,-73,20,0,0,-0.13605 -115755,7207:102:2,-72.5,20,0,0,-0.13605 -115756,7207:102:1,-72,20,0,0,-0.13605 -115757,7207:101:2,-71.5,20,0,0,-0.13605 -115758,7207:101:1,-71,20,0,0,-0.13605 -115759,7207:100:2,-70.5,20,0,0,-0.13605 -115760,7207:100:1,-70,20,0,0,-0.13605 -115761,7206:209:2,-69.5,20,0,0,-0.13605 -115762,7206:209:1,-69,20,0,0,-0.13605 -115763,7206:208:2,-68.5,20,0,0,-0.13605 -115764,7206:208:1,-68,20,0,0,-0.13605 -115765,7206:207:2,-67.5,20,0,0,-0.13605 -115766,7206:207:1,-67,20,0,0,-0.13605 -115767,7206:206:2,-66.5,20,0,0,-0.13605 -115768,7206:206:1,-66,20,0,0,-0.13605 -115769,7206:205:2,-65.5,20,0,0,-0.13605 -115770,7206:205:1,-65,20,0,0,-0.13605 -115771,7206:104:2,-64.5,20,0,0,-0.13605 -115772,7206:104:1,-64,20,0,0,-0.13605 -115773,7206:103:2,-63.5,20,0,0,-0.13605 -115774,7206:103:1,-63,20,0,0,-0.13605 -115775,7206:102:2,-62.5,20,0,0,-0.13605 -115776,7206:102:1,-62,20,0,0,-0.13605 -115777,7206:101:2,-61.5,20,0,0,-0.13605 -115778,7206:101:1,-61,20,0,0,-0.13605 -115779,7206:100:2,-60.5,20,0,0,-0.13605 -115780,7206:100:1,-60,20,0,0,-0.13605 -115781,7205:209:2,-59.5,20,0,0,-0.13605 -115782,7205:209:1,-59,20,0,0,-0.13605 -115783,7205:208:2,-58.5,20,0,0,-0.13605 -115784,7205:208:1,-58,20,0,0,-0.13605 -115785,7205:207:2,-57.5,20,0,0,-0.13605 -115786,7205:207:1,-57,20,0,0,-0.13605 -115787,7205:206:2,-56.5,20,0,0,-0.13605 -115788,7205:206:1,-56,20,0,0,-0.13605 -115789,7205:205:2,-55.5,20,0,0,-0.13605 -115790,7205:205:1,-55,20,0,0,-0.13605 -115791,7205:104:2,-54.5,20,0,0,-0.13605 -115792,7205:104:1,-54,20,0,0,-0.13605 -115793,7205:103:2,-53.5,20,0,0,-0.13605 -115794,7205:103:1,-53,20,0,0,-0.13605 -115795,7205:102:2,-52.5,20,0,0,-0.13605 -115796,7205:102:1,-52,20,0,0,-0.13605 -115797,7205:101:2,-51.5,20,0,0,-0.13605 -115798,7205:101:1,-51,20,0,0,-0.13605 -115799,7205:100:2,-50.5,20,0,0,-0.13605 -115800,7205:100:1,-50,20,0,0,-0.13605 -115801,7204:209:2,-49.5,20,0,0,-0.13605 -115802,7204:209:1,-49,20,0,0,-0.13605 -115803,7204:208:2,-48.5,20,0,0,-0.13605 -115804,7204:208:1,-48,20,0,0,-0.13605 -115805,7204:207:2,-47.5,20,0,0,-0.13605 -115806,7204:207:1,-47,20,0,0,-0.13605 -115807,7204:206:2,-46.5,20,0,0,-0.13605 -115808,7204:206:1,-46,20,0,0,-0.13605 -115809,7204:205:2,-45.5,20,0,0,-0.13605 -115810,7204:205:1,-45,20,0,0,-0.13605 -115811,7204:104:2,-44.5,20,0,0,-0.13605 -115812,7204:104:1,-44,20,0,0,-0.13605 -115813,7204:103:2,-43.5,20,0,0,-0.13605 -115814,7204:103:1,-43,20,0,0,-0.13605 -115815,7204:102:2,-42.5,20,0,0,-0.13605 -115816,7204:102:1,-42,20,0,0,-0.13605 -115817,7204:101:2,-41.5,20,0,0,-0.13605 -115818,7204:101:1,-41,20,0,0,-0.13605 -115819,7204:100:2,-40.5,20,0,0,-0.13605 -115820,7204:100:1,-40,20,0,0,-0.13605 -115821,7203:209:2,-39.5,20,0,0,-0.13605 -115822,7203:209:1,-39,20,0,0,-0.13605 -115823,7203:208:2,-38.5,20,0,0,-0.13605 -115824,7203:208:1,-38,20,0,0,-0.13605 -115825,7203:207:2,-37.5,20,0,0,-0.13605 -115826,7203:207:1,-37,20,0,0,-0.13605 -115827,7203:206:2,-36.5,20,0,0,-0.13605 -115828,7203:206:1,-36,20,0,0,-0.13605 -115829,7203:205:2,-35.5,20,0,0,-0.13605 -115830,7203:205:1,-35,20,0,0,-0.13605 -115831,7203:104:2,-34.5,20,0,0,-0.13605 -115832,7203:104:1,-34,20,0,0,-0.13605 -115833,7203:103:2,-33.5,20,0,0,-0.13605 -115834,7203:103:1,-33,20,0,0,-0.13605 -115835,7203:102:2,-32.5,20,0,0,-0.13605 -115836,7203:102:1,-32,20,0,0,-0.13605 -115837,7203:101:2,-31.5,20,0,0,-0.13605 -115838,7203:101:1,-31,20,0,0,-0.13605 -115839,7203:100:2,-30.5,20,0,0,-0.13605 -115840,7203:100:1,-30,20,0,0,-0.13605 -115841,7202:209:2,-29.5,20,0,0,-0.13605 -115842,7202:209:1,-29,20,0,0,-0.13605 -115843,7202:208:2,-28.5,20,0,0,-0.13605 -115844,7202:208:1,-28,20,0,0,-0.13605 -115845,7202:207:2,-27.5,20,0,0,-0.13605 -115846,7202:207:1,-27,20,0,0,-0.13605 -115847,7202:206:2,-26.5,20,0,0,-0.13605 -115848,7202:206:1,-26,20,0,0,-0.13605 -115849,7202:205:2,-25.5,20,0,0,-0.13605 -115850,7202:205:1,-25,20,0,0,-0.13605 -115851,7202:104:2,-24.5,20,0,0,-0.13605 -115852,7202:104:1,-24,20,0,0,-0.13605 -115853,7202:103:2,-23.5,20,0,0,-0.13605 -115854,7202:103:1,-23,20,0,0,-0.13605 -115855,7202:102:2,-22.5,20,0,0,-0.13605 -115856,7202:102:1,-22,20,0,0,-0.13605 -115857,7202:101:2,-21.5,20,0,0,-0.13605 -115858,7202:101:1,-21,20,0,0,-0.13605 -115859,7202:100:2,-20.5,20,0,0,-0.13605 -115860,7202:100:1,-20,20,0,0,-0.13605 -115861,7201:209:2,-19.5,20,0,0,-0.13605 -115862,7201:209:1,-19,20,0,0,-0.13605 -115863,7201:208:2,-18.5,20,0,0,-0.13605 -115864,7201:208:1,-18,20,0,0,-0.13605 -115865,7201:207:2,-17.5,20,0,0,-0.13605 -115866,7201:207:1,-17,20,0,0,-0.13605 -115867,7201:206:2,-16.5,20,0,0,-0.13605 -115868,7201:206:1,-16,20,0,0,-0.13605 -115869,7201:205:2,-15.5,20,0,0,-0.13605 -115870,7201:205:1,-15,20,0,0,-0.13605 -115871,7201:104:2,-14.5,20,0,0,-0.13605 -115872,7201:104:1,-14,20,0,0,-0.13605 -115873,7201:103:2,-13.5,20,0,0,-0.13605 -115874,7201:103:1,-13,20,0,0,-0.13605 -115875,7201:102:2,-12.5,20,0,0,-0.13605 -115876,7201:102:1,-12,20,0,0,-0.13605 -115877,7201:101:2,-11.5,20,0,0,-0.13605 -115878,7201:101:1,-11,20,0,0,-0.13605 -115879,7201:100:2,-10.5,20,0,0,-0.13605 -115880,7201:100:1,-10,20,0,0,-0.13605 -115881,1201:205:2,15.5,20,0,0,-0.13605 -115882,1201:206:1,16,20,0,0,-0.13605 -115883,1201:206:2,16.5,20,0,0,-0.13605 -115884,1201:207:1,17,20,0,0,-0.13605 -115885,1201:207:2,17.5,20,0,0,-0.13605 -115886,1201:208:1,18,20,0,0,-0.13605 -115887,1201:208:2,18.5,20,0,0,-0.13605 -115888,1201:209:1,19,20,0,0,-0.13605 -115889,1201:209:2,19.5,20,0,0,-0.13605 -115890,1202:104:1,24,20,0,0,-0.13605 -115891,1202:104:2,24.5,20,0,0,-0.13605 -115892,1202:205:1,25,20,0,0,-0.13605 -115893,1202:205:2,25.5,20,0,0,-0.13605 -115894,1202:206:1,26,20,0,0,-0.13605 -115895,1202:206:2,26.5,20,0,0,-0.13605 -115896,1202:207:1,27,20,0,0,-0.13605 -115897,1202:207:2,27.5,20,0,0,-0.13605 -115898,1202:208:1,28,20,0,0,-0.13605 -115899,1202:208:2,28.5,20,0,0,-0.13605 -115900,1202:209:1,29,20,0,0,-0.13605 -115901,1202:209:2,29.5,20,0,0,-0.13605 -115902,1203:100:1,30,20,0,0,-0.13605 -115903,1203:100:2,30.5,20,0,0,-0.13605 -115904,1203:101:1,31,20,0,0,-0.13605 -115905,1203:101:2,31.5,20,0,0,-0.13605 -115906,1203:102:1,32,20,0,0,-0.13605 -115907,1203:102:2,32.5,20,0,0,-0.13605 -115908,1203:103:1,33,20,0,0,-0.13605 -115909,1203:103:2,33.5,20,0,0,-0.13605 -115910,1203:104:1,34,20,0,0,-0.13605 -115911,1212:101:1,121,20,0,0,-0.13605 -115912,1212:102:1,122,20,0,0,-0.12212 -115913,1212:102:2,122.5,20,0,0,-0.127136 -115914,1212:103:1,123,20,0,0,-0.13605 -115915,1212:103:2,123.5,20,0,0,-0.13605 -115916,1212:104:1,124,20,0,0,-0.13605 -115917,1212:104:2,124.5,20,0,0,-0.13605 -115918,1212:205:1,125,20,0,0,-0.13605 -115919,1212:205:2,125.5,20,0,0,-0.13605 -115920,1212:206:1,126,20,0,0,-0.13605 -115921,1212:206:2,126.5,20,0,0,-0.13605 -115922,1212:207:1,127,20,0,0,-0.13605 -115923,1212:207:2,127.5,20,0,0,-0.13605 -115924,1212:208:1,128,20,0,0,-0.13605 -115925,1212:208:2,128.5,20,0,0,-0.13605 -115926,1212:209:1,129,20,0,0,-0.13605 -115927,1212:209:2,129.5,20,0,0,-0.13605 -115928,1213:100:1,130,20,0,0,-0.13605 -115929,1213:100:2,130.5,20,0,0,-0.13605 -115930,1213:102:1,132,20,0,0,-0.13605 -115931,1213:102:2,132.5,20,0,0,-0.13605 -115932,1213:103:1,133,20,0,0,-0.13605 -115933,1213:103:2,133.5,20,0,0,-0.13605 -115934,1213:104:1,134,20,0,0,-0.13605 -115935,1213:104:2,134.5,20,0,0,-0.13605 -115936,1213:205:1,135,20,0,0,-0.13605 -115937,1213:205:2,135.5,20,0,0,-0.13605 -115938,1213:206:1,136,20,0,0,-0.13605 -115939,1213:206:2,136.5,20,0,0,-0.13605 -115940,1213:207:1,137,20,0,0,-0.13605 -115941,1213:207:2,137.5,20,0,0,-0.13605 -115942,1213:208:1,138,20,0,0,-0.13605 -115943,1213:208:2,138.5,20,0,0,-0.13605 -115944,1213:209:1,139,20,0,0,-0.13605 -115945,1213:209:2,139.5,20,0,0,-0.13605 -115946,1214:100:1,140,20,0,0,-0.13605 -115947,1214:100:2,140.5,20,0,0,-0.13605 -115948,1214:101:1,141,20,0,0,-0.13605 -115949,1214:101:2,141.5,20,0,0,-0.13605 -115950,1214:102:1,142,20,0,0,-0.13605 -115951,1214:102:2,142.5,20,0,0,-0.13605 -115952,1214:103:1,143,20,0,0,-0.13605 -115953,1214:103:2,143.5,20,0,0,-0.13605 -115954,1214:104:1,144,20,0,0,-0.13605 -115955,1214:104:2,144.5,20,0,0,-0.13605 -115956,1214:205:1,145,20,0,0,-0.13605 -115957,1214:205:2,145.5,20,0,0,-0.13605 -115958,1214:206:1,146,20,0,0,-0.13605 -115959,1214:206:2,146.5,20,0,0,-0.13605 -115960,1214:207:1,147,20,0,0,-0.13605 -115961,1214:207:2,147.5,20,0,0,-0.13605 -115962,1214:208:1,148,20,0,0,-0.13605 -115963,1214:208:2,148.5,20,0,0,-0.13605 -115964,1214:209:1,149,20,0,0,-0.13605 -115965,1214:209:2,149.5,20,0,0,-0.13605 -115966,1215:100:1,150,20,0,0,-0.13605 -115967,1215:100:2,150.5,20,0,0,-0.13605 -115968,1215:101:1,151,20,0,0,-0.13605 -115969,1215:101:2,151.5,20,0,0,-0.13605 -115970,1215:102:1,152,20,0,0,-0.13605 -115971,1215:102:2,152.5,20,0,0,-0.13605 -115972,1215:103:1,153,20,0,0,-0.13605 -115973,1215:103:2,153.5,20,0,0,-0.13605 -115974,1215:104:1,154,20,0,0,-0.13605 -115975,1215:104:2,154.5,20,0,0,-0.13605 -115976,1215:205:1,155,20,0,0,-0.13605 -115977,1215:205:2,155.5,20,0,0,-0.13605 -115978,1215:206:1,156,20,0,0,-0.13605 -115979,1215:206:2,156.5,20,0,0,-0.13605 -115980,1215:207:1,157,20,0,0,-0.13605 -115981,1215:207:2,157.5,20,0,0,-0.13605 -115982,1215:208:1,158,20,0,0,-0.13605 -115983,1215:208:2,158.5,20,0,0,-0.13605 -115984,1215:209:1,159,20,0,0,-0.13605 -115985,1215:209:2,159.5,20,0,0,-0.13605 -115986,1216:100:1,160,20,0,0,-0.13605 -115987,1216:100:2,160.5,20,0,0,-0.13605 -115988,1216:101:1,161,20,0,0,-0.13605 -115989,1216:101:2,161.5,20,0,0,-0.13605 -115990,1216:102:1,162,20,0,0,-0.13605 -115991,1216:102:2,162.5,20,0,0,-0.13605 -115992,1216:103:1,163,20,0,0,-0.13605 -115993,1216:103:2,163.5,20,0,0,-0.13605 -115994,1216:104:1,164,20,0,0,-0.13605 -115995,1216:104:2,164.5,20,0,0,-0.13605 -115996,1216:205:1,165,20,0,0,-0.13605 -115997,1216:205:2,165.5,20,0,0,-0.13605 -115998,1216:206:1,166,20,0,0,-0.13605 -115999,1216:206:2,166.5,20,0,0,-0.13605 -116000,1216:207:1,167,20,0,0,-0.13605 -116001,1216:207:2,167.5,20,0,0,-0.13605 -116002,1216:208:1,168,20,0,0,-0.13605 -116003,1216:208:2,168.5,20,0,0,-0.13605 -116004,1216:209:1,169,20,0,0,-0.13605 -116005,1216:209:2,169.5,20,0,0,-0.13605 -116006,1217:100:1,170,20,0,0,-0.13605 -116007,1217:100:2,170.5,20,0,0,-0.13605 -116008,1217:101:1,171,20,0,0,-0.13605 -116009,1217:101:2,171.5,20,0,0,-0.13605 -116010,1217:102:1,172,20,0,0,-0.13605 -116011,1217:102:2,172.5,20,0,0,-0.13605 -116012,1217:103:1,173,20,0,0,-0.13605 -116013,1217:103:2,173.5,20,0,0,-0.13605 -116014,1217:104:1,174,20,0,0,-0.13605 -116015,1217:104:2,174.5,20,0,0,-0.13605 -116016,1217:205:1,175,20,0,0,-0.13605 -116017,1217:205:2,175.5,20,0,0,-0.13605 -116018,1217:206:1,176,20,0,0,-0.13605 -116019,1217:206:2,176.5,20,0,0,-0.13605 -116020,1217:207:1,177,20,0,0,-0.13605 -116021,1217:207:2,177.5,20,0,0,-0.13605 -116022,1217:208:1,178,20,0,0,-0.13605 -116023,1217:208:2,178.5,20,0,0,-0.13605 -116024,1217:209:1,179,20,0,0,-0.13605 -116025,1217:209:2,179.5,20,0,0,-0.13605 -116026,1218:100:1,180,20,0,0,-0.13605 -116027,7218:100:3,-180,20.5,0,0,-0.13605 -116028,7217:209:4,-179.5,20.5,0,0,-0.13605 -116029,7217:209:3,-179,20.5,0,0,-0.13605 -116030,7217:208:4,-178.5,20.5,0,0,-0.13605 -116031,7217:208:3,-178,20.5,0,0,-0.13605 -116032,7217:207:4,-177.5,20.5,0,0,-0.13605 -116033,7217:207:3,-177,20.5,0,0,-0.13605 -116034,7217:206:4,-176.5,20.5,0,0,-0.13605 -116035,7217:206:3,-176,20.5,0,0,-0.13605 -116036,7217:205:4,-175.5,20.5,0,0,-0.13605 -116037,7217:205:3,-175,20.5,0,0,-0.13605 -116038,7217:104:4,-174.5,20.5,0,0,-0.13605 -116039,7217:104:3,-174,20.5,0,0,-0.13605 -116040,7217:103:4,-173.5,20.5,0,0,-0.13605 -116041,7217:103:3,-173,20.5,0,0,-0.13605 -116042,7217:102:4,-172.5,20.5,0,0,-0.13605 -116043,7217:102:3,-172,20.5,0,0,-0.13605 -116044,7217:101:4,-171.5,20.5,0,0,-0.13605 -116045,7217:101:3,-171,20.5,0,0,-0.13605 -116046,7217:100:4,-170.5,20.5,0,0,-0.13605 -116047,7217:100:3,-170,20.5,0,0,-0.13605 -116048,7216:209:4,-169.5,20.5,0,0,-0.13605 -116049,7216:209:3,-169,20.5,0,0,-0.13605 -116050,7216:208:4,-168.5,20.5,0,0,-0.13605 -116051,7216:208:3,-168,20.5,0,0,-0.13605 -116052,7216:207:4,-167.5,20.5,0,0,-0.13605 -116053,7216:207:3,-167,20.5,0,0,-0.13605 -116054,7216:206:4,-166.5,20.5,0,0,-0.13605 -116055,7216:206:3,-166,20.5,0,0,-0.13605 -116056,7216:205:4,-165.5,20.5,0,0,-0.13605 -116057,7216:205:3,-165,20.5,0,0,-0.13605 -116058,7216:104:4,-164.5,20.5,0,0,-0.13605 -116059,7216:104:3,-164,20.5,0,0,-0.13605 -116060,7216:103:4,-163.5,20.5,0,0,-0.13605 -116061,7216:103:3,-163,20.5,0,0,-0.13605 -116062,7216:102:4,-162.5,20.5,0,0,-0.13605 -116063,7216:102:3,-162,20.5,0,0,-0.13605 -116064,7216:101:4,-161.5,20.5,0,0,-0.13605 -116065,7216:101:3,-161,20.5,0,0,-0.13605 -116066,7216:100:4,-160.5,20.5,0,0,-0.13605 -116067,7216:100:3,-160,20.5,0,0,-0.13605 -116068,7215:209:4,-159.5,20.5,0,0,-0.13605 -116069,7215:209:3,-159,20.5,0,0,-0.13605 -116070,7215:208:4,-158.5,20.5,0,0,-0.13605 -116071,7215:208:3,-158,20.5,0,0,-0.13605 -116072,7215:207:4,-157.5,20.5,0,0,-0.13605 -116073,7215:207:3,-157,20.5,0,0,-0.13605 -116074,7215:206:4,-156.5,20.5,0,0,-0.13605 -116075,7215:206:3,-156,20.5,0,0,-0.13605 -116076,7215:205:4,-155.5,20.5,0,0,-0.13605 -116077,7215:205:3,-155,20.5,0,0,-0.13605 -116078,7215:104:4,-154.5,20.5,0,0,-0.13605 -116079,7215:104:3,-154,20.5,0,0,-0.13605 -116080,7215:103:4,-153.5,20.5,0,0,-0.13605 -116081,7215:103:3,-153,20.5,0,0,-0.13605 -116082,7215:102:4,-152.5,20.5,0,0,-0.13605 -116083,7215:102:3,-152,20.5,0,0,-0.13605 -116084,7215:101:4,-151.5,20.5,0,0,-0.13605 -116085,7215:101:3,-151,20.5,0,0,-0.13605 -116086,7215:100:4,-150.5,20.5,0,0,-0.13605 -116087,7215:100:3,-150,20.5,0,0,-0.13605 -116088,7214:209:4,-149.5,20.5,0,0,-0.13605 -116089,7214:209:3,-149,20.5,0,0,-0.13605 -116090,7214:208:4,-148.5,20.5,0,0,-0.13605 -116091,7214:208:3,-148,20.5,0,0,-0.13605 -116092,7214:207:4,-147.5,20.5,0,0,-0.13605 -116093,7214:207:3,-147,20.5,0,0,-0.13605 -116094,7214:206:4,-146.5,20.5,0,0,-0.13605 -116095,7214:206:3,-146,20.5,0,0,-0.13605 -116096,7214:205:4,-145.5,20.5,0,0,-0.13605 -116097,7214:205:3,-145,20.5,0,0,-0.13605 -116098,7214:104:4,-144.5,20.5,0,0,-0.13605 -116099,7214:104:3,-144,20.5,0,0,-0.13605 -116100,7214:103:4,-143.5,20.5,0,0,-0.13605 -116101,7214:103:3,-143,20.5,0,0,-0.13605 -116102,7214:102:4,-142.5,20.5,0,0,-0.13605 -116103,7214:102:3,-142,20.5,0,0,-0.13605 -116104,7214:101:4,-141.5,20.5,0,0,-0.13605 -116105,7214:101:3,-141,20.5,0,0,-0.13605 -116106,7214:100:4,-140.5,20.5,0,0,-0.13605 -116107,7214:100:3,-140,20.5,0,0,-0.13605 -116108,7213:209:4,-139.5,20.5,0,0,-0.13605 -116109,7213:209:3,-139,20.5,0,0,-0.13605 -116110,7213:208:4,-138.5,20.5,0,0,-0.13605 -116111,7213:208:3,-138,20.5,0,0,-0.13605 -116112,7213:207:4,-137.5,20.5,0,0,-0.13605 -116113,7213:207:3,-137,20.5,0,0,-0.13605 -116114,7213:206:4,-136.5,20.5,0,0,-0.13605 -116115,7213:206:3,-136,20.5,0,0,-0.13605 -116116,7213:205:4,-135.5,20.5,0,0,-0.13605 -116117,7213:205:3,-135,20.5,0,0,-0.13605 -116118,7213:104:4,-134.5,20.5,0,0,-0.13605 -116119,7213:104:3,-134,20.5,0,0,-0.13605 -116120,7213:103:4,-133.5,20.5,0,0,-0.13605 -116121,7213:103:3,-133,20.5,0,0,-0.13605 -116122,7213:102:4,-132.5,20.5,0,0,-0.13605 -116123,7213:102:3,-132,20.5,0,0,-0.13605 -116124,7213:101:4,-131.5,20.5,0,0,-0.13605 -116125,7213:101:3,-131,20.5,0,0,-0.13605 -116126,7213:100:4,-130.5,20.5,0,0,-0.13605 -116127,7213:100:3,-130,20.5,0,0,-0.13605 -116128,7212:209:4,-129.5,20.5,0,0,-0.13605 -116129,7212:209:3,-129,20.5,0,0,-0.13605 -116130,7212:208:4,-128.5,20.5,0,0,-0.13605 -116131,7212:208:3,-128,20.5,0,0,-0.13605 -116132,7212:207:4,-127.5,20.5,0,0,-0.13605 -116133,7212:207:3,-127,20.5,0,0,-0.13605 -116134,7212:206:4,-126.5,20.5,0,0,-0.13605 -116135,7212:206:3,-126,20.5,0,0,-0.13605 -116136,7212:205:4,-125.5,20.5,0,0,-0.13605 -116137,7212:205:3,-125,20.5,0,0,-0.13605 -116138,7212:104:4,-124.5,20.5,0,0,-0.13605 -116139,7212:104:3,-124,20.5,0,0,-0.13605 -116140,7212:103:4,-123.5,20.5,0,0,-0.13605 -116141,7212:103:3,-123,20.5,0,0,-0.13605 -116142,7212:102:4,-122.5,20.5,0,0,-0.13605 -116143,7212:102:3,-122,20.5,0,0,-0.13605 -116144,7212:101:4,-121.5,20.5,0,0,-0.13605 -116145,7212:101:3,-121,20.5,0,0,-0.13605 -116146,7212:100:4,-120.5,20.5,0,0,-0.13605 -116147,7212:100:3,-120,20.5,0,0,-0.13605 -116148,7211:209:4,-119.5,20.5,0,0,-0.13605 -116149,7211:209:3,-119,20.5,0,0,-0.13605 -116150,7211:208:4,-118.5,20.5,0,0,-0.13605 -116151,7211:208:3,-118,20.5,0,0,-0.13605 -116152,7211:207:4,-117.5,20.5,0,0,-0.13605 -116153,7207:209:4,-79.5,20.5,0,0,-0.13605 -116154,7207:209:3,-79,20.5,0,0,-0.13605 -116155,7207:208:4,-78.5,20.5,0,0,-0.13605 -116156,7207:208:3,-78,20.5,0,0,-0.13605 -116157,7207:207:4,-77.5,20.5,0,0,-0.13605 -116158,7207:207:3,-77,20.5,0,0,-0.13605 -116159,7207:206:4,-76.5,20.5,0,0,-0.13605 -116160,7207:206:3,-76,20.5,0,0,-0.13605 -116161,7207:205:4,-75.5,20.5,0,0,-0.13605 -116162,7207:205:3,-75,20.5,0,0,-0.13605 -116163,7207:104:4,-74.5,20.5,0,0,-0.13605 -116164,7207:104:3,-74,20.5,0,0,-0.13605 -116165,7207:103:4,-73.5,20.5,0,0,-0.13605 -116166,7207:103:3,-73,20.5,0,0,-0.13605 -116167,7207:102:4,-72.5,20.5,0,0,-0.13605 -116168,7207:102:3,-72,20.5,0,0,-0.13605 -116169,7207:101:4,-71.5,20.5,0,0,-0.13605 -116170,7207:101:3,-71,20.5,0,0,-0.13605 -116171,7207:100:4,-70.5,20.5,0,0,-0.13605 -116172,7207:100:3,-70,20.5,0,0,-0.13605 -116173,7206:209:4,-69.5,20.5,0,0,-0.13605 -116174,7206:209:3,-69,20.5,0,0,-0.13605 -116175,7206:208:4,-68.5,20.5,0,0,-0.13605 -116176,7206:208:3,-68,20.5,0,0,-0.13605 -116177,7206:207:4,-67.5,20.5,0,0,-0.13605 -116178,7206:207:3,-67,20.5,0,0,-0.13605 -116179,7206:206:4,-66.5,20.5,0,0,-0.13605 -116180,7206:206:3,-66,20.5,0,0,-0.13605 -116181,7206:205:4,-65.5,20.5,0,0,-0.13605 -116182,7206:205:3,-65,20.5,0,0,-0.13605 -116183,7206:104:4,-64.5,20.5,0,0,-0.13605 -116184,7206:104:3,-64,20.5,0,0,-0.13605 -116185,7206:103:4,-63.5,20.5,0,0,-0.13605 -116186,7206:103:3,-63,20.5,0,0,-0.13605 -116187,7206:102:4,-62.5,20.5,0,0,-0.13605 -116188,7206:102:3,-62,20.5,0,0,-0.13605 -116189,7206:101:4,-61.5,20.5,0,0,-0.13605 -116190,7206:101:3,-61,20.5,0,0,-0.13605 -116191,7206:100:4,-60.5,20.5,0,0,-0.13605 -116192,7206:100:3,-60,20.5,0,0,-0.13605 -116193,7205:209:4,-59.5,20.5,0,0,-0.13605 -116194,7205:209:3,-59,20.5,0,0,-0.13605 -116195,7205:208:4,-58.5,20.5,0,0,-0.13605 -116196,7205:208:3,-58,20.5,0,0,-0.13605 -116197,7205:207:4,-57.5,20.5,0,0,-0.13605 -116198,7205:207:3,-57,20.5,0,0,-0.13605 -116199,7205:206:4,-56.5,20.5,0,0,-0.13605 -116200,7205:206:3,-56,20.5,0,0,-0.13605 -116201,7205:205:4,-55.5,20.5,0,0,-0.13605 -116202,7205:205:3,-55,20.5,0,0,-0.13605 -116203,7205:104:4,-54.5,20.5,0,0,-0.13605 -116204,7205:104:3,-54,20.5,0,0,-0.13605 -116205,7205:103:4,-53.5,20.5,0,0,-0.13605 -116206,7205:103:3,-53,20.5,0,0,-0.13605 -116207,7205:102:4,-52.5,20.5,0,0,-0.13605 -116208,7205:102:3,-52,20.5,0,0,-0.13605 -116209,7205:101:4,-51.5,20.5,0,0,-0.13605 -116210,7205:101:3,-51,20.5,0,0,-0.13605 -116211,7205:100:4,-50.5,20.5,0,0,-0.13605 -116212,7205:100:3,-50,20.5,0,0,-0.13605 -116213,7204:209:4,-49.5,20.5,0,0,-0.13605 -116214,7204:209:3,-49,20.5,0,0,-0.13605 -116215,7204:208:4,-48.5,20.5,0,0,-0.13605 -116216,7204:208:3,-48,20.5,0,0,-0.13605 -116217,7204:207:4,-47.5,20.5,0,0,-0.13605 -116218,7204:207:3,-47,20.5,0,0,-0.13605 -116219,7204:206:4,-46.5,20.5,0,0,-0.13605 -116220,7204:206:3,-46,20.5,0,0,-0.13605 -116221,7204:205:4,-45.5,20.5,0,0,-0.13605 -116222,7204:205:3,-45,20.5,0,0,-0.13605 -116223,7204:104:4,-44.5,20.5,0,0,-0.13605 -116224,7204:104:3,-44,20.5,0,0,-0.13605 -116225,7204:103:4,-43.5,20.5,0,0,-0.13605 -116226,7204:103:3,-43,20.5,0,0,-0.13605 -116227,7204:102:4,-42.5,20.5,0,0,-0.13605 -116228,7204:102:3,-42,20.5,0,0,-0.13605 -116229,7204:101:4,-41.5,20.5,0,0,-0.13605 -116230,7204:101:3,-41,20.5,0,0,-0.13605 -116231,7204:100:4,-40.5,20.5,0,0,-0.13605 -116232,7204:100:3,-40,20.5,0,0,-0.13605 -116233,7203:209:4,-39.5,20.5,0,0,-0.13605 -116234,7203:209:3,-39,20.5,0,0,-0.13605 -116235,7203:208:4,-38.5,20.5,0,0,-0.13605 -116236,7203:208:3,-38,20.5,0,0,-0.13605 -116237,7203:207:4,-37.5,20.5,0,0,-0.13605 -116238,7203:207:3,-37,20.5,0,0,-0.13605 -116239,7203:206:4,-36.5,20.5,0,0,-0.13605 -116240,7203:206:3,-36,20.5,0,0,-0.13605 -116241,7203:205:4,-35.5,20.5,0,0,-0.13605 -116242,7203:205:3,-35,20.5,0,0,-0.13605 -116243,7203:104:4,-34.5,20.5,0,0,-0.13605 -116244,7203:104:3,-34,20.5,0,0,-0.13605 -116245,7203:103:4,-33.5,20.5,0,0,-0.13605 -116246,7203:103:3,-33,20.5,0,0,-0.13605 -116247,7203:102:4,-32.5,20.5,0,0,-0.13605 -116248,7203:102:3,-32,20.5,0,0,-0.13605 -116249,7203:101:4,-31.5,20.5,0,0,-0.13605 -116250,7203:101:3,-31,20.5,0,0,-0.13605 -116251,7203:100:4,-30.5,20.5,0,0,-0.13605 -116252,7203:100:3,-30,20.5,0,0,-0.13605 -116253,7202:209:4,-29.5,20.5,0,0,-0.13605 -116254,7202:209:3,-29,20.5,0,0,-0.13605 -116255,7202:208:4,-28.5,20.5,0,0,-0.13605 -116256,7202:208:3,-28,20.5,0,0,-0.13605 -116257,7202:207:4,-27.5,20.5,0,0,-0.13605 -116258,7202:207:3,-27,20.5,0,0,-0.13605 -116259,7202:206:4,-26.5,20.5,0,0,-0.13605 -116260,7202:206:3,-26,20.5,0,0,-0.13605 -116261,7202:205:4,-25.5,20.5,0,0,-0.13605 -116262,7202:205:3,-25,20.5,0,0,-0.13605 -116263,7202:104:4,-24.5,20.5,0,0,-0.13605 -116264,7202:104:3,-24,20.5,0,0,-0.13605 -116265,7202:103:4,-23.5,20.5,0,0,-0.13605 -116266,7202:103:3,-23,20.5,0,0,-0.13605 -116267,7202:102:4,-22.5,20.5,0,0,-0.13605 -116268,7202:102:3,-22,20.5,0,0,-0.13605 -116269,7202:101:4,-21.5,20.5,0,0,-0.13605 -116270,7202:101:3,-21,20.5,0,0,-0.13605 -116271,7202:100:4,-20.5,20.5,0,0,-0.13605 -116272,7202:100:3,-20,20.5,0,0,-0.13605 -116273,7201:209:4,-19.5,20.5,0,0,-0.13605 -116274,7201:209:3,-19,20.5,0,0,-0.13605 -116275,7201:208:4,-18.5,20.5,0,0,-0.13605 -116276,7201:208:3,-18,20.5,0,0,-0.13605 -116277,7201:207:4,-17.5,20.5,0,0,-0.13605 -116278,7201:207:3,-17,20.5,0,0,-0.13605 -116279,7201:206:4,-16.5,20.5,0,0,-0.13605 -116280,7201:206:3,-16,20.5,0,0,-0.13605 -116281,7201:205:4,-15.5,20.5,0,0,-0.13605 -116282,7201:205:3,-15,20.5,0,0,-0.13605 -116283,7201:104:4,-14.5,20.5,0,0,-0.13605 -116284,7201:104:3,-14,20.5,0,0,-0.13605 -116285,7201:103:4,-13.5,20.5,0,0,-0.13605 -116286,7201:103:3,-13,20.5,0,0,-0.13605 -116287,7201:102:4,-12.5,20.5,0,0,-0.13605 -116288,7201:102:3,-12,20.5,0,0,-0.13605 -116289,7201:101:4,-11.5,20.5,0,0,-0.13605 -116290,7201:101:3,-11,20.5,0,0,-0.13605 -116291,7201:100:4,-10.5,20.5,0,0,-0.13605 -116292,7201:100:3,-10,20.5,0,0,-0.13605 -116293,7200:209:4,-9.5,20.5,0,0,-0.13605 -116294,1201:102:4,12.5,20.5,0,0,-0.13605 -116295,1201:103:4,13.5,20.5,0,0,-0.13605 -116296,1201:104:3,14,20.5,0,0,-0.13605 -116297,1201:104:4,14.5,20.5,0,0,-0.13605 -116298,1201:205:3,15,20.5,0,0,-0.13605 -116299,1201:205:4,15.5,20.5,0,0,-0.13605 -116300,1201:206:3,16,20.5,0,0,-0.13605 -116301,1201:206:4,16.5,20.5,0,0,-0.13605 -116302,1201:207:3,17,20.5,0,0,-0.13605 -116303,1201:207:4,17.5,20.5,0,0,-0.13605 -116304,1201:208:3,18,20.5,0,0,-0.13605 -116305,1201:208:4,18.5,20.5,0,0,-0.13605 -116306,1201:209:3,19,20.5,0,0,-0.13605 -116307,1201:209:4,19.5,20.5,0,0,-0.13605 -116308,1202:100:3,20,20.5,0,0,-0.13605 -116309,1202:100:4,20.5,20.5,0,0,-0.13605 -116310,1202:103:3,23,20.5,0,0,-0.13605 -116311,1202:103:4,23.5,20.5,0,0,-0.13605 -116312,1202:104:3,24,20.5,0,0,-0.13605 -116313,1202:104:4,24.5,20.5,0,0,-0.13605 -116314,1202:205:3,25,20.5,0,0,-0.13605 -116315,1202:205:4,25.5,20.5,0,0,-0.13605 -116316,1202:206:3,26,20.5,0,0,-0.13605 -116317,1202:206:4,26.5,20.5,0,0,-0.13605 -116318,1202:207:3,27,20.5,0,0,-0.13605 -116319,1202:207:4,27.5,20.5,0,0,-0.13605 -116320,1202:208:3,28,20.5,0,0,-0.13605 -116321,1202:208:4,28.5,20.5,0,0,-0.13605 -116322,1202:209:3,29,20.5,0,0,-0.13605 -116323,1202:209:4,29.5,20.5,0,0,-0.13605 -116324,1203:100:3,30,20.5,0,0,-0.13605 -116325,1203:100:4,30.5,20.5,0,0,-0.13605 -116326,1203:101:3,31,20.5,0,0,-0.13605 -116327,1203:101:4,31.5,20.5,0,0,-0.13605 -116328,1203:102:3,32,20.5,0,0,-0.13605 -116329,1203:102:4,32.5,20.5,0,0,-0.13605 -116330,1203:103:3,33,20.5,0,0,-0.13605 -116331,1203:103:4,33.5,20.5,0,0,-0.13605 -116332,1203:104:3,34,20.5,0,0,-0.13605 -116333,1203:104:4,34.5,20.5,0,0,-0.13605 -116334,1212:101:4,121.5,20.5,0,0,-0.106006 -116335,1212:102:3,122,20.5,0,0,-0.100789 -116336,1212:102:4,122.5,20.5,0,0,-0.120497 -116337,1212:103:3,123,20.5,0,0,-0.13605 -116338,1212:103:4,123.5,20.5,0,0,-0.13605 -116339,1212:104:3,124,20.5,0,0,-0.13605 -116340,1212:104:4,124.5,20.5,0,0,-0.13605 -116341,1212:205:3,125,20.5,0,0,-0.13605 -116342,1212:205:4,125.5,20.5,0,0,-0.13605 -116343,1212:206:3,126,20.5,0,0,-0.13605 -116344,1212:206:4,126.5,20.5,0,0,-0.13605 -116345,1212:207:3,127,20.5,0,0,-0.13605 -116346,1212:207:4,127.5,20.5,0,0,-0.13605 -116347,1212:208:3,128,20.5,0,0,-0.13605 -116348,1212:208:4,128.5,20.5,0,0,-0.13605 -116349,1212:209:4,129.5,20.5,0,0,-0.13605 -116350,1213:100:3,130,20.5,0,0,-0.13605 -116351,1213:102:4,132.5,20.5,0,0,-0.13605 -116352,1213:103:4,133.5,20.5,0,0,-0.13605 -116353,1213:104:3,134,20.5,0,0,-0.13605 -116354,1213:104:4,134.5,20.5,0,0,-0.13605 -116355,1213:205:3,135,20.5,0,0,-0.13605 -116356,1213:205:4,135.5,20.5,0,0,-0.13605 -116357,1213:206:3,136,20.5,0,0,-0.13605 -116358,1213:206:4,136.5,20.5,0,0,-0.13605 -116359,1213:207:3,137,20.5,0,0,-0.13605 -116360,1213:207:4,137.5,20.5,0,0,-0.13605 -116361,1213:208:3,138,20.5,0,0,-0.13605 -116362,1213:208:4,138.5,20.5,0,0,-0.13605 -116363,1213:209:3,139,20.5,0,0,-0.13605 -116364,1213:209:4,139.5,20.5,0,0,-0.13605 -116365,1214:100:3,140,20.5,0,0,-0.13605 -116366,1214:100:4,140.5,20.5,0,0,-0.13605 -116367,1214:101:3,141,20.5,0,0,-0.13605 -116368,1214:101:4,141.5,20.5,0,0,-0.13605 -116369,1214:102:3,142,20.5,0,0,-0.13605 -116370,1214:102:4,142.5,20.5,0,0,-0.13605 -116371,1214:103:3,143,20.5,0,0,-0.13605 -116372,1214:103:4,143.5,20.5,0,0,-0.13605 -116373,1214:104:3,144,20.5,0,0,-0.13605 -116374,1214:104:4,144.5,20.5,0,0,-0.13605 -116375,1214:205:3,145,20.5,0,0,-0.13605 -116376,1214:205:4,145.5,20.5,0,0,-0.13605 -116377,1214:206:3,146,20.5,0,0,-0.13605 -116378,1214:206:4,146.5,20.5,0,0,-0.13605 -116379,1214:207:3,147,20.5,0,0,-0.13605 -116380,1214:207:4,147.5,20.5,0,0,-0.13605 -116381,1214:208:3,148,20.5,0,0,-0.13605 -116382,1214:208:4,148.5,20.5,0,0,-0.13605 -116383,1214:209:3,149,20.5,0,0,-0.13605 -116384,1214:209:4,149.5,20.5,0,0,-0.13605 -116385,1215:100:3,150,20.5,0,0,-0.13605 -116386,1215:100:4,150.5,20.5,0,0,-0.13605 -116387,1215:101:3,151,20.5,0,0,-0.13605 -116388,1215:101:4,151.5,20.5,0,0,-0.13605 -116389,1215:102:3,152,20.5,0,0,-0.13605 -116390,1215:102:4,152.5,20.5,0,0,-0.13605 -116391,1215:103:3,153,20.5,0,0,-0.13605 -116392,1215:103:4,153.5,20.5,0,0,-0.13605 -116393,1215:104:3,154,20.5,0,0,-0.13605 -116394,1215:104:4,154.5,20.5,0,0,-0.13605 -116395,1215:205:3,155,20.5,0,0,-0.13605 -116396,1215:205:4,155.5,20.5,0,0,-0.13605 -116397,1215:206:3,156,20.5,0,0,-0.13605 -116398,1215:206:4,156.5,20.5,0,0,-0.13605 -116399,1215:207:3,157,20.5,0,0,-0.13605 -116400,1215:207:4,157.5,20.5,0,0,-0.13605 -116401,1215:208:3,158,20.5,0,0,-0.13605 -116402,1215:208:4,158.5,20.5,0,0,-0.13605 -116403,1215:209:3,159,20.5,0,0,-0.13605 -116404,1215:209:4,159.5,20.5,0,0,-0.13605 -116405,1216:100:3,160,20.5,0,0,-0.13605 -116406,1216:100:4,160.5,20.5,0,0,-0.13605 -116407,1216:101:3,161,20.5,0,0,-0.13605 -116408,1216:101:4,161.5,20.5,0,0,-0.13605 -116409,1216:102:3,162,20.5,0,0,-0.13605 -116410,1216:102:4,162.5,20.5,0,0,-0.13605 -116411,1216:103:3,163,20.5,0,0,-0.13605 -116412,1216:103:4,163.5,20.5,0,0,-0.13605 -116413,1216:104:3,164,20.5,0,0,-0.13605 -116414,1216:104:4,164.5,20.5,0,0,-0.13605 -116415,1216:205:3,165,20.5,0,0,-0.13605 -116416,1216:205:4,165.5,20.5,0,0,-0.13605 -116417,1216:206:3,166,20.5,0,0,-0.13605 -116418,1216:206:4,166.5,20.5,0,0,-0.13605 -116419,1216:207:3,167,20.5,0,0,-0.13605 -116420,1216:207:4,167.5,20.5,0,0,-0.13605 -116421,1216:208:3,168,20.5,0,0,-0.13605 -116422,1216:208:4,168.5,20.5,0,0,-0.13605 -116423,1216:209:3,169,20.5,0,0,-0.13605 -116424,1216:209:4,169.5,20.5,0,0,-0.13605 -116425,1217:100:3,170,20.5,0,0,-0.13605 -116426,1217:100:4,170.5,20.5,0,0,-0.13605 -116427,1217:101:3,171,20.5,0,0,-0.13605 -116428,1217:101:4,171.5,20.5,0,0,-0.13605 -116429,1217:102:3,172,20.5,0,0,-0.13605 -116430,1217:102:4,172.5,20.5,0,0,-0.13605 -116431,1217:103:3,173,20.5,0,0,-0.13605 -116432,1217:103:4,173.5,20.5,0,0,-0.13605 -116433,1217:104:3,174,20.5,0,0,-0.13605 -116434,1217:104:4,174.5,20.5,0,0,-0.13605 -116435,1217:205:3,175,20.5,0,0,-0.13605 -116436,1217:205:4,175.5,20.5,0,0,-0.13605 -116437,1217:206:3,176,20.5,0,0,-0.13605 -116438,1217:206:4,176.5,20.5,0,0,-0.13605 -116439,1217:207:3,177,20.5,0,0,-0.13605 -116440,1217:207:4,177.5,20.5,0,0,-0.13605 -116441,1217:208:3,178,20.5,0,0,-0.13605 -116442,1217:208:4,178.5,20.5,0,0,-0.13605 -116443,1217:209:3,179,20.5,0,0,-0.13605 -116444,1217:209:4,179.5,20.5,0,0,-0.13605 -116445,1218:100:3,180,20.5,0,0,-0.13605 -116446,7218:110:1,-180,21,0,0,-0.13605 -116447,7217:219:2,-179.5,21,0,0,-0.13605 -116448,7217:219:1,-179,21,0,0,-0.13605 -116449,7217:218:2,-178.5,21,0,0,-0.13605 -116450,7217:218:1,-178,21,0,0,-0.13605 -116451,7217:217:2,-177.5,21,0,0,-0.13605 -116452,7217:217:1,-177,21,0,0,-0.13605 -116453,7217:216:2,-176.5,21,0,0,-0.13605 -116454,7217:216:1,-176,21,0,0,-0.13605 -116455,7217:215:2,-175.5,21,0,0,-0.13605 -116456,7217:215:1,-175,21,0,0,-0.13605 -116457,7217:114:2,-174.5,21,0,0,-0.13605 -116458,7217:114:1,-174,21,0,0,-0.13605 -116459,7217:113:2,-173.5,21,0,0,-0.13605 -116460,7217:113:1,-173,21,0,0,-0.13605 -116461,7217:112:2,-172.5,21,0,0,-0.13605 -116462,7217:112:1,-172,21,0,0,-0.13605 -116463,7217:111:2,-171.5,21,0,0,-0.13605 -116464,7217:111:1,-171,21,0,0,-0.13605 -116465,7217:110:2,-170.5,21,0,0,-0.13605 -116466,7217:110:1,-170,21,0,0,-0.13605 -116467,7216:219:2,-169.5,21,0,0,-0.13605 -116468,7216:219:1,-169,21,0,0,-0.13605 -116469,7216:218:2,-168.5,21,0,0,-0.13605 -116470,7216:218:1,-168,21,0,0,-0.13605 -116471,7216:217:2,-167.5,21,0,0,-0.13605 -116472,7216:217:1,-167,21,0,0,-0.13605 -116473,7216:216:2,-166.5,21,0,0,-0.13605 -116474,7216:216:1,-166,21,0,0,-0.13605 -116475,7216:215:2,-165.5,21,0,0,-0.13605 -116476,7216:215:1,-165,21,0,0,-0.13605 -116477,7216:114:2,-164.5,21,0,0,-0.13605 -116478,7216:114:1,-164,21,0,0,-0.13605 -116479,7216:113:2,-163.5,21,0,0,-0.13605 -116480,7216:113:1,-163,21,0,0,-0.13605 -116481,7216:112:2,-162.5,21,0,0,-0.13605 -116482,7216:112:1,-162,21,0,0,-0.13605 -116483,7216:111:2,-161.5,21,0,0,-0.13605 -116484,7216:111:1,-161,21,0,0,-0.13605 -116485,7216:110:2,-160.5,21,0,0,-0.13605 -116486,7216:110:1,-160,21,0,0,-0.13605 -116487,7215:219:2,-159.5,21,0,0,-0.13605 -116488,7215:219:1,-159,21,0,0,-0.13605 -116489,7215:218:2,-158.5,21,0,0,-0.13605 -116490,7215:218:1,-158,21,0,0,-0.13605 -116491,7215:217:2,-157.5,21,0,0,-0.13605 -116492,7215:217:1,-157,21,0,0,-0.13605 -116493,7215:216:2,-156.5,21,0,0,-0.13605 -116494,7215:216:1,-156,21,0,0,-0.13605 -116495,7215:215:2,-155.5,21,0,0,-0.13605 -116496,7215:215:1,-155,21,0,0,-0.13605 -116497,7215:114:2,-154.5,21,0,0,-0.13605 -116498,7215:114:1,-154,21,0,0,-0.13605 -116499,7215:113:2,-153.5,21,0,0,-0.13605 -116500,7215:113:1,-153,21,0,0,-0.13605 -116501,7215:112:2,-152.5,21,0,0,-0.13605 -116502,7215:112:1,-152,21,0,0,-0.13605 -116503,7215:111:2,-151.5,21,0,0,-0.13605 -116504,7215:111:1,-151,21,0,0,-0.13605 -116505,7215:110:2,-150.5,21,0,0,-0.13605 -116506,7215:110:1,-150,21,0,0,-0.13605 -116507,7214:219:2,-149.5,21,0,0,-0.13605 -116508,7214:219:1,-149,21,0,0,-0.13605 -116509,7214:218:2,-148.5,21,0,0,-0.13605 -116510,7214:218:1,-148,21,0,0,-0.13605 -116511,7214:217:2,-147.5,21,0,0,-0.13605 -116512,7214:217:1,-147,21,0,0,-0.13605 -116513,7214:216:2,-146.5,21,0,0,-0.13605 -116514,7214:216:1,-146,21,0,0,-0.13605 -116515,7214:215:2,-145.5,21,0,0,-0.13605 -116516,7214:215:1,-145,21,0,0,-0.13605 -116517,7214:114:2,-144.5,21,0,0,-0.13605 -116518,7214:114:1,-144,21,0,0,-0.13605 -116519,7214:113:2,-143.5,21,0,0,-0.13605 -116520,7214:113:1,-143,21,0,0,-0.13605 -116521,7214:112:2,-142.5,21,0,0,-0.13605 -116522,7214:112:1,-142,21,0,0,-0.13605 -116523,7214:111:2,-141.5,21,0,0,-0.13605 -116524,7214:111:1,-141,21,0,0,-0.13605 -116525,7214:110:2,-140.5,21,0,0,-0.13605 -116526,7214:110:1,-140,21,0,0,-0.13605 -116527,7213:219:2,-139.5,21,0,0,-0.13605 -116528,7213:219:1,-139,21,0,0,-0.13605 -116529,7213:218:2,-138.5,21,0,0,-0.13605 -116530,7213:218:1,-138,21,0,0,-0.13605 -116531,7213:217:2,-137.5,21,0,0,-0.13605 -116532,7213:217:1,-137,21,0,0,-0.13605 -116533,7213:216:2,-136.5,21,0,0,-0.13605 -116534,7213:216:1,-136,21,0,0,-0.13605 -116535,7213:215:2,-135.5,21,0,0,-0.13605 -116536,7213:215:1,-135,21,0,0,-0.13605 -116537,7213:114:2,-134.5,21,0,0,-0.13605 -116538,7213:114:1,-134,21,0,0,-0.13605 -116539,7213:113:2,-133.5,21,0,0,-0.13605 -116540,7213:113:1,-133,21,0,0,-0.13605 -116541,7213:112:2,-132.5,21,0,0,-0.13605 -116542,7213:112:1,-132,21,0,0,-0.13605 -116543,7213:111:2,-131.5,21,0,0,-0.13605 -116544,7213:111:1,-131,21,0,0,-0.13605 -116545,7213:110:2,-130.5,21,0,0,-0.13605 -116546,7213:110:1,-130,21,0,0,-0.13605 -116547,7212:219:2,-129.5,21,0,0,-0.13605 -116548,7212:219:1,-129,21,0,0,-0.13605 -116549,7212:218:2,-128.5,21,0,0,-0.13605 -116550,7212:218:1,-128,21,0,0,-0.13605 -116551,7212:217:2,-127.5,21,0,0,-0.13605 -116552,7212:217:1,-127,21,0,0,-0.13605 -116553,7212:216:2,-126.5,21,0,0,-0.13605 -116554,7212:216:1,-126,21,0,0,-0.13605 -116555,7212:215:2,-125.5,21,0,0,-0.13605 -116556,7212:215:1,-125,21,0,0,-0.13605 -116557,7212:114:2,-124.5,21,0,0,-0.13605 -116558,7212:114:1,-124,21,0,0,-0.13605 -116559,7212:113:2,-123.5,21,0,0,-0.13605 -116560,7212:113:1,-123,21,0,0,-0.13605 -116561,7212:112:2,-122.5,21,0,0,-0.13605 -116562,7212:112:1,-122,21,0,0,-0.13605 -116563,7212:111:2,-121.5,21,0,0,-0.13605 -116564,7212:111:1,-121,21,0,0,-0.13605 -116565,7212:110:2,-120.5,21,0,0,-0.13605 -116566,7212:110:1,-120,21,0,0,-0.13605 -116567,7211:219:2,-119.5,21,0,0,-0.13605 -116568,7211:219:1,-119,21,0,0,-0.13605 -116569,7211:218:2,-118.5,21,0,0,-0.13605 -116570,7211:218:1,-118,21,0,0,-0.13605 -116571,7207:219:1,-79,21,0,0,-0.13605 -116572,7207:218:2,-78.5,21,0,0,-0.13605 -116573,7207:218:1,-78,21,0,0,-0.13605 -116574,7207:217:2,-77.5,21,0,0,-0.13605 -116575,7207:217:1,-77,21,0,0,-0.13605 -116576,7207:216:2,-76.5,21,0,0,-0.13605 -116577,7207:216:1,-76,21,0,0,-0.13605 -116578,7207:215:2,-75.5,21,0,0,-0.13605 -116579,7207:215:1,-75,21,0,0,-0.13605 -116580,7207:114:2,-74.5,21,0,0,-0.13605 -116581,7207:114:1,-74,21,0,0,-0.13605 -116582,7207:113:2,-73.5,21,0,0,-0.13605 -116583,7207:113:1,-73,21,0,0,-0.13605 -116584,7207:112:2,-72.5,21,0,0,-0.13605 -116585,7207:112:1,-72,21,0,0,-0.13605 -116586,7207:111:2,-71.5,21,0,0,-0.13605 -116587,7207:111:1,-71,21,0,0,-0.13605 -116588,7207:110:2,-70.5,21,0,0,-0.13605 -116589,7207:110:1,-70,21,0,0,-0.13605 -116590,7206:219:2,-69.5,21,0,0,-0.13605 -116591,7206:219:1,-69,21,0,0,-0.13605 -116592,7206:218:2,-68.5,21,0,0,-0.13605 -116593,7206:218:1,-68,21,0,0,-0.13605 -116594,7206:217:2,-67.5,21,0,0,-0.13605 -116595,7206:217:1,-67,21,0,0,-0.13605 -116596,7206:216:2,-66.5,21,0,0,-0.13605 -116597,7206:216:1,-66,21,0,0,-0.13605 -116598,7206:215:2,-65.5,21,0,0,-0.13605 -116599,7206:215:1,-65,21,0,0,-0.13605 -116600,7206:114:2,-64.5,21,0,0,-0.13605 -116601,7206:114:1,-64,21,0,0,-0.13605 -116602,7206:113:2,-63.5,21,0,0,-0.13605 -116603,7206:113:1,-63,21,0,0,-0.13605 -116604,7206:112:2,-62.5,21,0,0,-0.13605 -116605,7206:112:1,-62,21,0,0,-0.13605 -116606,7206:111:2,-61.5,21,0,0,-0.13605 -116607,7206:111:1,-61,21,0,0,-0.13605 -116608,7206:110:2,-60.5,21,0,0,-0.13605 -116609,7206:110:1,-60,21,0,0,-0.13605 -116610,7205:219:2,-59.5,21,0,0,-0.13605 -116611,7205:219:1,-59,21,0,0,-0.13605 -116612,7205:218:2,-58.5,21,0,0,-0.13605 -116613,7205:218:1,-58,21,0,0,-0.13605 -116614,7205:217:2,-57.5,21,0,0,-0.13605 -116615,7205:217:1,-57,21,0,0,-0.13605 -116616,7205:216:2,-56.5,21,0,0,-0.13605 -116617,7205:216:1,-56,21,0,0,-0.13605 -116618,7205:215:2,-55.5,21,0,0,-0.13605 -116619,7205:215:1,-55,21,0,0,-0.13605 -116620,7205:114:2,-54.5,21,0,0,-0.13605 -116621,7205:114:1,-54,21,0,0,-0.13605 -116622,7205:113:2,-53.5,21,0,0,-0.13605 -116623,7205:113:1,-53,21,0,0,-0.13605 -116624,7205:112:2,-52.5,21,0,0,-0.13605 -116625,7205:112:1,-52,21,0,0,-0.13605 -116626,7205:111:2,-51.5,21,0,0,-0.13605 -116627,7205:111:1,-51,21,0,0,-0.13605 -116628,7205:110:2,-50.5,21,0,0,-0.13605 -116629,7205:110:1,-50,21,0,0,-0.13605 -116630,7204:219:2,-49.5,21,0,0,-0.13605 -116631,7204:219:1,-49,21,0,0,-0.13605 -116632,7204:218:2,-48.5,21,0,0,-0.13605 -116633,7204:218:1,-48,21,0,0,-0.13605 -116634,7204:217:2,-47.5,21,0,0,-0.13605 -116635,7204:217:1,-47,21,0,0,-0.13605 -116636,7204:216:2,-46.5,21,0,0,-0.13605 -116637,7204:216:1,-46,21,0,0,-0.13605 -116638,7204:215:2,-45.5,21,0,0,-0.13605 -116639,7204:215:1,-45,21,0,0,-0.13605 -116640,7204:114:2,-44.5,21,0,0,-0.13605 -116641,7204:114:1,-44,21,0,0,-0.13605 -116642,7204:113:2,-43.5,21,0,0,-0.13605 -116643,7204:113:1,-43,21,0,0,-0.13605 -116644,7204:112:2,-42.5,21,0,0,-0.13605 -116645,7204:112:1,-42,21,0,0,-0.13605 -116646,7204:111:2,-41.5,21,0,0,-0.13605 -116647,7204:111:1,-41,21,0,0,-0.13605 -116648,7204:110:2,-40.5,21,0,0,-0.13605 -116649,7204:110:1,-40,21,0,0,-0.13605 -116650,7203:219:2,-39.5,21,0,0,-0.13605 -116651,7203:219:1,-39,21,0,0,-0.13605 -116652,7203:218:2,-38.5,21,0,0,-0.13605 -116653,7203:218:1,-38,21,0,0,-0.13605 -116654,7203:217:2,-37.5,21,0,0,-0.13605 -116655,7203:217:1,-37,21,0,0,-0.13605 -116656,7203:216:2,-36.5,21,0,0,-0.13605 -116657,7203:216:1,-36,21,0,0,-0.13605 -116658,7203:215:2,-35.5,21,0,0,-0.13605 -116659,7203:215:1,-35,21,0,0,-0.13605 -116660,7203:114:2,-34.5,21,0,0,-0.13605 -116661,7203:114:1,-34,21,0,0,-0.13605 -116662,7203:113:2,-33.5,21,0,0,-0.13605 -116663,7203:113:1,-33,21,0,0,-0.13605 -116664,7203:112:2,-32.5,21,0,0,-0.13605 -116665,7203:112:1,-32,21,0,0,-0.13605 -116666,7203:111:2,-31.5,21,0,0,-0.13605 -116667,7203:111:1,-31,21,0,0,-0.13605 -116668,7203:110:2,-30.5,21,0,0,-0.13605 -116669,7203:110:1,-30,21,0,0,-0.13605 -116670,7202:219:2,-29.5,21,0,0,-0.13605 -116671,7202:219:1,-29,21,0,0,-0.13605 -116672,7202:218:2,-28.5,21,0,0,-0.13605 -116673,7202:218:1,-28,21,0,0,-0.13605 -116674,7202:217:2,-27.5,21,0,0,-0.13605 -116675,7202:217:1,-27,21,0,0,-0.13605 -116676,7202:216:2,-26.5,21,0,0,-0.13605 -116677,7202:216:1,-26,21,0,0,-0.13605 -116678,7202:215:2,-25.5,21,0,0,-0.13605 -116679,7202:215:1,-25,21,0,0,-0.13605 -116680,7202:114:2,-24.5,21,0,0,-0.13605 -116681,7202:114:1,-24,21,0,0,-0.13605 -116682,7202:113:2,-23.5,21,0,0,-0.13605 -116683,7202:113:1,-23,21,0,0,-0.13605 -116684,7202:112:2,-22.5,21,0,0,-0.13605 -116685,7202:112:1,-22,21,0,0,-0.13605 -116686,7202:111:2,-21.5,21,0,0,-0.13605 -116687,7202:111:1,-21,21,0,0,-0.13605 -116688,7202:110:2,-20.5,21,0,0,-0.13605 -116689,7202:110:1,-20,21,0,0,-0.13605 -116690,7201:219:2,-19.5,21,0,0,-0.13605 -116691,7201:219:1,-19,21,0,0,-0.13605 -116692,7201:218:2,-18.5,21,0,0,-0.13605 -116693,7201:218:1,-18,21,0,0,-0.13605 -116694,7201:217:2,-17.5,21,0,0,-0.13605 -116695,7201:217:1,-17,21,0,0,-0.13605 -116696,7201:216:2,-16.5,21,0,0,-0.13605 -116697,7201:216:1,-16,21,0,0,-0.13605 -116698,7201:215:2,-15.5,21,0,0,-0.13605 -116699,7201:215:1,-15,21,0,0,-0.13605 -116700,7201:114:2,-14.5,21,0,0,-0.13605 -116701,7201:114:1,-14,21,0,0,-0.13605 -116702,7201:113:2,-13.5,21,0,0,-0.13605 -116703,7201:113:1,-13,21,0,0,-0.13605 -116704,7201:112:2,-12.5,21,0,0,-0.13605 -116705,7201:112:1,-12,21,0,0,-0.13605 -116706,7201:111:2,-11.5,21,0,0,-0.13605 -116707,7201:111:1,-11,21,0,0,-0.13605 -116708,7201:110:2,-10.5,21,0,0,-0.13605 -116709,7201:110:1,-10,21,0,0,-0.13605 -116710,7200:219:2,-9.5,21,0,0,-0.13605 -116711,7200:219:1,-9,21,0,0,-0.13605 -116712,7200:218:2,-8.5,21,0,0,-0.13605 -116713,7200:218:1,-8,21,0,0,-0.13605 -116714,1201:111:1,11,21,0,0,-0.13605 -116715,1201:111:2,11.5,21,0,0,-0.13605 -116716,1201:112:1,12,21,0,0,-0.13605 -116717,1201:112:2,12.5,21,0,0,-0.13605 -116718,1201:113:1,13,21,0,0,-0.13605 -116719,1201:113:2,13.5,21,0,0,-0.13605 -116720,1201:114:1,14,21,0,0,-0.13605 -116721,1201:114:2,14.5,21,0,0,-0.13605 -116722,1201:215:1,15,21,0,0,-0.13605 -116723,1201:215:2,15.5,21,0,0,-0.13605 -116724,1201:216:1,16,21,0,0,-0.13605 -116725,1201:216:2,16.5,21,0,0,-0.13605 -116726,1201:217:1,17,21,0,0,-0.13605 -116727,1201:217:2,17.5,21,0,0,-0.13605 -116728,1201:218:1,18,21,0,0,-0.13605 -116729,1201:218:2,18.5,21,0,0,-0.13605 -116730,1201:219:1,19,21,0,0,-0.13605 -116731,1201:219:2,19.5,21,0,0,-0.13605 -116732,1202:110:1,20,21,0,0,-0.13605 -116733,1202:110:2,20.5,21,0,0,-0.13605 -116734,1202:111:1,21,21,0,0,-0.13605 -116735,1202:111:2,21.5,21,0,0,-0.13605 -116736,1202:112:1,22,21,0,0,-0.13605 -116737,1202:112:2,22.5,21,0,0,-0.13605 -116738,1202:113:1,23,21,0,0,-0.13605 -116739,1202:113:2,23.5,21,0,0,-0.13605 -116740,1202:114:1,24,21,0,0,-0.13605 -116741,1202:114:2,24.5,21,0,0,-0.13605 -116742,1202:215:1,25,21,0,0,-0.13605 -116743,1202:215:2,25.5,21,0,0,-0.13605 -116744,1202:216:1,26,21,0,0,-0.13605 -116745,1202:216:2,26.5,21,0,0,-0.13605 -116746,1202:217:1,27,21,0,0,-0.13605 -116747,1202:217:2,27.5,21,0,0,-0.13605 -116748,1202:218:1,28,21,0,0,-0.13605 -116749,1202:218:2,28.5,21,0,0,-0.13605 -116750,1202:219:1,29,21,0,0,-0.13605 -116751,1202:219:2,29.5,21,0,0,-0.13605 -116752,1203:110:1,30,21,0,0,-0.13605 -116753,1203:110:2,30.5,21,0,0,-0.13605 -116754,1203:111:1,31,21,0,0,-0.13605 -116755,1203:111:2,31.5,21,0,0,-0.13605 -116756,1203:112:1,32,21,0,0,-0.13605 -116757,1203:112:2,32.5,21,0,0,-0.13605 -116758,1203:113:1,33,21,0,0,-0.13605 -116759,1203:113:2,33.5,21,0,0,-0.13605 -116760,1203:114:1,34,21,0,0,-0.13605 -116761,1203:114:2,34.5,21,0,0,-0.13605 -116762,1212:111:2,121.5,21,0,0,-0.0951815 -116763,1212:112:1,122,21,0,0,-0.0973258 -116764,1212:112:2,122.5,21,0,0,-0.13605 -116765,1212:113:1,123,21,0,0,-0.13605 -116766,1212:113:2,123.5,21,0,0,-0.13605 -116767,1212:114:1,124,21,0,0,-0.13605 -116768,1212:114:2,124.5,21,0,0,-0.13605 -116769,1212:215:1,125,21,0,0,-0.13605 -116770,1212:215:2,125.5,21,0,0,-0.13605 -116771,1212:216:1,126,21,0,0,-0.13605 -116772,1212:217:2,127.5,21,0,0,-0.13605 -116773,1212:218:1,128,21,0,0,-0.13605 -116774,1212:218:2,128.5,21,0,0,-0.13605 -116775,1212:219:1,129,21,0,0,-0.13605 -116776,1212:219:2,129.5,21,0,0,-0.13605 -116777,1213:110:1,130,21,0,0,-0.13605 -116778,1213:112:2,132.5,21,0,0,-0.13605 -116779,1213:114:1,134,21,0,0,-0.13605 -116780,1213:215:1,135,21,0,0,-0.13605 -116781,1213:215:2,135.5,21,0,0,-0.13605 -116782,1213:216:1,136,21,0,0,-0.13605 -116783,1213:216:2,136.5,21,0,0,-0.13605 -116784,1213:217:1,137,21,0,0,-0.13605 -116785,1213:217:2,137.5,21,0,0,-0.13605 -116786,1213:218:1,138,21,0,0,-0.13605 -116787,1213:218:2,138.5,21,0,0,-0.13605 -116788,1213:219:1,139,21,0,0,-0.13605 -116789,1213:219:2,139.5,21,0,0,-0.13605 -116790,1214:110:1,140,21,0,0,-0.13605 -116791,1214:110:2,140.5,21,0,0,-0.13605 -116792,1214:111:1,141,21,0,0,-0.13605 -116793,1214:111:2,141.5,21,0,0,-0.13605 -116794,1214:112:1,142,21,0,0,-0.13605 -116795,1214:112:2,142.5,21,0,0,-0.13605 -116796,1214:113:1,143,21,0,0,-0.13605 -116797,1214:113:2,143.5,21,0,0,-0.13605 -116798,1214:114:1,144,21,0,0,-0.13605 -116799,1214:114:2,144.5,21,0,0,-0.13605 -116800,1214:215:1,145,21,0,0,-0.13605 -116801,1214:215:2,145.5,21,0,0,-0.13605 -116802,1214:216:1,146,21,0,0,-0.13605 -116803,1214:216:2,146.5,21,0,0,-0.13605 -116804,1214:217:1,147,21,0,0,-0.13605 -116805,1214:217:2,147.5,21,0,0,-0.13605 -116806,1214:218:1,148,21,0,0,-0.13605 -116807,1214:218:2,148.5,21,0,0,-0.13605 -116808,1214:219:1,149,21,0,0,-0.13605 -116809,1214:219:2,149.5,21,0,0,-0.13605 -116810,1215:110:1,150,21,0,0,-0.13605 -116811,1215:110:2,150.5,21,0,0,-0.13605 -116812,1215:111:1,151,21,0,0,-0.13605 -116813,1215:111:2,151.5,21,0,0,-0.13605 -116814,1215:112:1,152,21,0,0,-0.13605 -116815,1215:112:2,152.5,21,0,0,-0.13605 -116816,1215:113:1,153,21,0,0,-0.13605 -116817,1215:113:2,153.5,21,0,0,-0.13605 -116818,1215:114:1,154,21,0,0,-0.13605 -116819,1215:114:2,154.5,21,0,0,-0.13605 -116820,1215:215:1,155,21,0,0,-0.13605 -116821,1215:215:2,155.5,21,0,0,-0.13605 -116822,1215:216:1,156,21,0,0,-0.13605 -116823,1215:216:2,156.5,21,0,0,-0.13605 -116824,1215:217:1,157,21,0,0,-0.13605 -116825,1215:217:2,157.5,21,0,0,-0.13605 -116826,1215:218:1,158,21,0,0,-0.13605 -116827,1215:218:2,158.5,21,0,0,-0.13605 -116828,1215:219:1,159,21,0,0,-0.13605 -116829,1215:219:2,159.5,21,0,0,-0.13605 -116830,1216:110:1,160,21,0,0,-0.13605 -116831,1216:110:2,160.5,21,0,0,-0.13605 -116832,1216:111:1,161,21,0,0,-0.13605 -116833,1216:111:2,161.5,21,0,0,-0.13605 -116834,1216:112:1,162,21,0,0,-0.13605 -116835,1216:112:2,162.5,21,0,0,-0.13605 -116836,1216:113:1,163,21,0,0,-0.13605 -116837,1216:113:2,163.5,21,0,0,-0.13605 -116838,1216:114:1,164,21,0,0,-0.13605 -116839,1216:114:2,164.5,21,0,0,-0.13605 -116840,1216:215:1,165,21,0,0,-0.13605 -116841,1216:215:2,165.5,21,0,0,-0.13605 -116842,1216:216:1,166,21,0,0,-0.13605 -116843,1216:216:2,166.5,21,0,0,-0.13605 -116844,1216:217:1,167,21,0,0,-0.13605 -116845,1216:217:2,167.5,21,0,0,-0.13605 -116846,1216:218:1,168,21,0,0,-0.13605 -116847,1216:218:2,168.5,21,0,0,-0.13605 -116848,1216:219:1,169,21,0,0,-0.13605 -116849,1216:219:2,169.5,21,0,0,-0.13605 -116850,1217:110:1,170,21,0,0,-0.13605 -116851,1217:110:2,170.5,21,0,0,-0.13605 -116852,1217:111:1,171,21,0,0,-0.13605 -116853,1217:111:2,171.5,21,0,0,-0.13605 -116854,1217:112:1,172,21,0,0,-0.13605 -116855,1217:112:2,172.5,21,0,0,-0.13605 -116856,1217:113:1,173,21,0,0,-0.13605 -116857,1217:113:2,173.5,21,0,0,-0.13605 -116858,1217:114:1,174,21,0,0,-0.13605 -116859,1217:114:2,174.5,21,0,0,-0.13605 -116860,1217:215:1,175,21,0,0,-0.13605 -116861,1217:215:2,175.5,21,0,0,-0.13605 -116862,1217:216:1,176,21,0,0,-0.13605 -116863,1217:216:2,176.5,21,0,0,-0.13605 -116864,1217:217:1,177,21,0,0,-0.13605 -116865,1217:217:2,177.5,21,0,0,-0.13605 -116866,1217:218:1,178,21,0,0,-0.13605 -116867,1217:218:2,178.5,21,0,0,-0.13605 -116868,1217:219:1,179,21,0,0,-0.13605 -116869,1217:219:2,179.5,21,0,0,-0.13605 -116870,1218:110:1,180,21,0,0,-0.13605 -116871,7218:110:3,-180,21.5,0,0,-0.13605 -116872,7217:219:4,-179.5,21.5,0,0,-0.13605 -116873,7217:219:3,-179,21.5,0,0,-0.13605 -116874,7217:218:4,-178.5,21.5,0,0,-0.13605 -116875,7217:218:3,-178,21.5,0,0,-0.13605 -116876,7217:217:4,-177.5,21.5,0,0,-0.13605 -116877,7217:217:3,-177,21.5,0,0,-0.13605 -116878,7217:216:4,-176.5,21.5,0,0,-0.13605 -116879,7217:216:3,-176,21.5,0,0,-0.13605 -116880,7217:215:4,-175.5,21.5,0,0,-0.13605 -116881,7217:215:3,-175,21.5,0,0,-0.13605 -116882,7217:114:4,-174.5,21.5,0,0,-0.13605 -116883,7217:114:3,-174,21.5,0,0,-0.13605 -116884,7217:113:4,-173.5,21.5,0,0,-0.13605 -116885,7217:113:3,-173,21.5,0,0,-0.13605 -116886,7217:112:4,-172.5,21.5,0,0,-0.13605 -116887,7217:112:3,-172,21.5,0,0,-0.13605 -116888,7217:111:4,-171.5,21.5,0,0,-0.13605 -116889,7217:111:3,-171,21.5,0,0,-0.13605 -116890,7217:110:4,-170.5,21.5,0,0,-0.13605 -116891,7217:110:3,-170,21.5,0,0,-0.13605 -116892,7216:219:4,-169.5,21.5,0,0,-0.13605 -116893,7216:219:3,-169,21.5,0,0,-0.13605 -116894,7216:218:4,-168.5,21.5,0,0,-0.13605 -116895,7216:218:3,-168,21.5,0,0,-0.13605 -116896,7216:217:4,-167.5,21.5,0,0,-0.13605 -116897,7216:217:3,-167,21.5,0,0,-0.13605 -116898,7216:216:4,-166.5,21.5,0,0,-0.13605 -116899,7216:216:3,-166,21.5,0,0,-0.13605 -116900,7216:215:4,-165.5,21.5,0,0,-0.13605 -116901,7216:215:3,-165,21.5,0,0,-0.13605 -116902,7216:114:4,-164.5,21.5,0,0,-0.13605 -116903,7216:114:3,-164,21.5,0,0,-0.13605 -116904,7216:113:4,-163.5,21.5,0,0,-0.13605 -116905,7216:113:3,-163,21.5,0,0,-0.13605 -116906,7216:112:4,-162.5,21.5,0,0,-0.13605 -116907,7216:112:3,-162,21.5,0,0,-0.13605 -116908,7216:111:4,-161.5,21.5,0,0,-0.13605 -116909,7216:111:3,-161,21.5,0,0,-0.13605 -116910,7216:110:4,-160.5,21.5,0,0,-0.13605 -116911,7216:110:3,-160,21.5,0,0,-0.13605 -116912,7215:219:4,-159.5,21.5,0,0,-0.13605 -116913,7215:219:3,-159,21.5,0,0,-0.13605 -116914,7215:218:4,-158.5,21.5,0,0,-0.13605 -116915,7215:218:3,-158,21.5,0,0,-0.13605 -116916,7215:217:4,-157.5,21.5,0,0,-0.13605 -116917,7215:217:3,-157,21.5,0,0,-0.13605 -116918,7215:216:4,-156.5,21.5,0,0,-0.13605 -116919,7215:216:3,-156,21.5,0,0,-0.13605 -116920,7215:215:4,-155.5,21.5,0,0,-0.13605 -116921,7215:215:3,-155,21.5,0,0,-0.13605 -116922,7215:114:4,-154.5,21.5,0,0,-0.13605 -116923,7215:114:3,-154,21.5,0,0,-0.13605 -116924,7215:113:4,-153.5,21.5,0,0,-0.13605 -116925,7215:113:3,-153,21.5,0,0,-0.13605 -116926,7215:112:4,-152.5,21.5,0,0,-0.13605 -116927,7215:112:3,-152,21.5,0,0,-0.13605 -116928,7215:111:4,-151.5,21.5,0,0,-0.13605 -116929,7215:111:3,-151,21.5,0,0,-0.13605 -116930,7215:110:4,-150.5,21.5,0,0,-0.13605 -116931,7215:110:3,-150,21.5,0,0,-0.13605 -116932,7214:219:4,-149.5,21.5,0,0,-0.13605 -116933,7214:219:3,-149,21.5,0,0,-0.13605 -116934,7214:218:4,-148.5,21.5,0,0,-0.13605 -116935,7214:218:3,-148,21.5,0,0,-0.13605 -116936,7214:217:4,-147.5,21.5,0,0,-0.13605 -116937,7214:217:3,-147,21.5,0,0,-0.13605 -116938,7214:216:4,-146.5,21.5,0,0,-0.13605 -116939,7214:216:3,-146,21.5,0,0,-0.13605 -116940,7214:215:4,-145.5,21.5,0,0,-0.13605 -116941,7214:215:3,-145,21.5,0,0,-0.13605 -116942,7214:114:4,-144.5,21.5,0,0,-0.13605 -116943,7214:114:3,-144,21.5,0,0,-0.13605 -116944,7214:113:4,-143.5,21.5,0,0,-0.13605 -116945,7214:113:3,-143,21.5,0,0,-0.13605 -116946,7214:112:4,-142.5,21.5,0,0,-0.13605 -116947,7214:112:3,-142,21.5,0,0,-0.13605 -116948,7214:111:4,-141.5,21.5,0,0,-0.13605 -116949,7214:111:3,-141,21.5,0,0,-0.13605 -116950,7214:110:4,-140.5,21.5,0,0,-0.13605 -116951,7214:110:3,-140,21.5,0,0,-0.13605 -116952,7213:219:4,-139.5,21.5,0,0,-0.13605 -116953,7213:219:3,-139,21.5,0,0,-0.13605 -116954,7213:218:4,-138.5,21.5,0,0,-0.13605 -116955,7213:218:3,-138,21.5,0,0,-0.13605 -116956,7213:217:4,-137.5,21.5,0,0,-0.13605 -116957,7213:217:3,-137,21.5,0,0,-0.13605 -116958,7213:216:4,-136.5,21.5,0,0,-0.13605 -116959,7213:216:3,-136,21.5,0,0,-0.13605 -116960,7213:215:4,-135.5,21.5,0,0,-0.13605 -116961,7213:215:3,-135,21.5,0,0,-0.13605 -116962,7213:114:4,-134.5,21.5,0,0,-0.13605 -116963,7213:114:3,-134,21.5,0,0,-0.13605 -116964,7213:113:4,-133.5,21.5,0,0,-0.13605 -116965,7213:113:3,-133,21.5,0,0,-0.13605 -116966,7213:112:4,-132.5,21.5,0,0,-0.13605 -116967,7213:112:3,-132,21.5,0,0,-0.13605 -116968,7213:111:4,-131.5,21.5,0,0,-0.13605 -116969,7213:111:3,-131,21.5,0,0,-0.13605 -116970,7213:110:4,-130.5,21.5,0,0,-0.13605 -116971,7213:110:3,-130,21.5,0,0,-0.13605 -116972,7212:219:4,-129.5,21.5,0,0,-0.13605 -116973,7212:219:3,-129,21.5,0,0,-0.13605 -116974,7212:218:4,-128.5,21.5,0,0,-0.13605 -116975,7212:218:3,-128,21.5,0,0,-0.13605 -116976,7212:217:4,-127.5,21.5,0,0,-0.13605 -116977,7212:217:3,-127,21.5,0,0,-0.13605 -116978,7212:216:4,-126.5,21.5,0,0,-0.13605 -116979,7212:216:3,-126,21.5,0,0,-0.13605 -116980,7212:215:4,-125.5,21.5,0,0,-0.13605 -116981,7212:215:3,-125,21.5,0,0,-0.13605 -116982,7212:114:4,-124.5,21.5,0,0,-0.13605 -116983,7212:114:3,-124,21.5,0,0,-0.13605 -116984,7212:113:4,-123.5,21.5,0,0,-0.13605 -116985,7212:113:3,-123,21.5,0,0,-0.13605 -116986,7212:112:4,-122.5,21.5,0,0,-0.13605 -116987,7212:112:3,-122,21.5,0,0,-0.13605 -116988,7212:111:4,-121.5,21.5,0,0,-0.13605 -116989,7212:111:3,-121,21.5,0,0,-0.13605 -116990,7212:110:4,-120.5,21.5,0,0,-0.13605 -116991,7211:219:4,-119.5,21.5,0,0,-0.13605 -116992,7211:219:3,-119,21.5,0,0,-0.13605 -116993,7211:218:4,-118.5,21.5,0,0,-0.13605 -116994,7207:217:4,-77.5,21.5,0,0,-0.13605 -116995,7207:217:3,-77,21.5,0,0,-0.13605 -116996,7207:216:4,-76.5,21.5,0,0,-0.13605 -116997,7207:216:3,-76,21.5,0,0,-0.13605 -116998,7207:215:4,-75.5,21.5,0,0,-0.13605 -116999,7207:215:3,-75,21.5,0,0,-0.13605 -117000,7207:114:4,-74.5,21.5,0,0,-0.13605 -117001,7207:114:3,-74,21.5,0,0,-0.13605 -117002,7207:113:4,-73.5,21.5,0,0,-0.13605 -117003,7207:113:3,-73,21.5,0,0,-0.13605 -117004,7207:112:4,-72.5,21.5,0,0,-0.13605 -117005,7207:112:3,-72,21.5,0,0,-0.13605 -117006,7207:111:4,-71.5,21.5,0,0,-0.13605 -117007,7207:111:3,-71,21.5,0,0,-0.13605 -117008,7207:110:4,-70.5,21.5,0,0,-0.13605 -117009,7207:110:3,-70,21.5,0,0,-0.13605 -117010,7206:219:4,-69.5,21.5,0,0,-0.13605 -117011,7206:219:3,-69,21.5,0,0,-0.13605 -117012,7206:218:4,-68.5,21.5,0,0,-0.13605 -117013,7206:218:3,-68,21.5,0,0,-0.13605 -117014,7206:217:4,-67.5,21.5,0,0,-0.13605 -117015,7206:217:3,-67,21.5,0,0,-0.13605 -117016,7206:216:4,-66.5,21.5,0,0,-0.13605 -117017,7206:216:3,-66,21.5,0,0,-0.13605 -117018,7206:215:4,-65.5,21.5,0,0,-0.13605 -117019,7206:215:3,-65,21.5,0,0,-0.13605 -117020,7206:114:4,-64.5,21.5,0,0,-0.13605 -117021,7206:114:3,-64,21.5,0,0,-0.13605 -117022,7206:113:4,-63.5,21.5,0,0,-0.13605 -117023,7206:113:3,-63,21.5,0,0,-0.13605 -117024,7206:112:4,-62.5,21.5,0,0,-0.13605 -117025,7206:112:3,-62,21.5,0,0,-0.13605 -117026,7206:111:4,-61.5,21.5,0,0,-0.13605 -117027,7206:111:3,-61,21.5,0,0,-0.13605 -117028,7206:110:4,-60.5,21.5,0,0,-0.13605 -117029,7206:110:3,-60,21.5,0,0,-0.13605 -117030,7205:219:4,-59.5,21.5,0,0,-0.13605 -117031,7205:219:3,-59,21.5,0,0,-0.13605 -117032,7205:218:4,-58.5,21.5,0,0,-0.13605 -117033,7205:218:3,-58,21.5,0,0,-0.13605 -117034,7205:217:4,-57.5,21.5,0,0,-0.13605 -117035,7205:217:3,-57,21.5,0,0,-0.13605 -117036,7205:216:4,-56.5,21.5,0,0,-0.13605 -117037,7205:216:3,-56,21.5,0,0,-0.13605 -117038,7205:215:4,-55.5,21.5,0,0,-0.13605 -117039,7205:215:3,-55,21.5,0,0,-0.13605 -117040,7205:114:4,-54.5,21.5,0,0,-0.13605 -117041,7205:114:3,-54,21.5,0,0,-0.13605 -117042,7205:113:4,-53.5,21.5,0,0,-0.13605 -117043,7205:113:3,-53,21.5,0,0,-0.13605 -117044,7205:112:4,-52.5,21.5,0,0,-0.13605 -117045,7205:112:3,-52,21.5,0,0,-0.13605 -117046,7205:111:4,-51.5,21.5,0,0,-0.13605 -117047,7205:111:3,-51,21.5,0,0,-0.13605 -117048,7205:110:4,-50.5,21.5,0,0,-0.13605 -117049,7205:110:3,-50,21.5,0,0,-0.13605 -117050,7204:219:4,-49.5,21.5,0,0,-0.13605 -117051,7204:219:3,-49,21.5,0,0,-0.13605 -117052,7204:218:4,-48.5,21.5,0,0,-0.13605 -117053,7204:218:3,-48,21.5,0,0,-0.13605 -117054,7204:217:4,-47.5,21.5,0,0,-0.13605 -117055,7204:217:3,-47,21.5,0,0,-0.13605 -117056,7204:216:4,-46.5,21.5,0,0,-0.13605 -117057,7204:216:3,-46,21.5,0,0,-0.13605 -117058,7204:215:4,-45.5,21.5,0,0,-0.13605 -117059,7204:215:3,-45,21.5,0,0,-0.13605 -117060,7204:114:4,-44.5,21.5,0,0,-0.13605 -117061,7204:114:3,-44,21.5,0,0,-0.13605 -117062,7204:113:4,-43.5,21.5,0,0,-0.13605 -117063,7204:113:3,-43,21.5,0,0,-0.13605 -117064,7204:112:4,-42.5,21.5,0,0,-0.13605 -117065,7204:112:3,-42,21.5,0,0,-0.13605 -117066,7204:111:4,-41.5,21.5,0,0,-0.13605 -117067,7204:111:3,-41,21.5,0,0,-0.13605 -117068,7204:110:4,-40.5,21.5,0,0,-0.13605 -117069,7204:110:3,-40,21.5,0,0,-0.13605 -117070,7203:219:4,-39.5,21.5,0,0,-0.13605 -117071,7203:219:3,-39,21.5,0,0,-0.13605 -117072,7203:218:4,-38.5,21.5,0,0,-0.13605 -117073,7203:218:3,-38,21.5,0,0,-0.13605 -117074,7203:217:4,-37.5,21.5,0,0,-0.13605 -117075,7203:217:3,-37,21.5,0,0,-0.13605 -117076,7203:216:4,-36.5,21.5,0,0,-0.13605 -117077,7203:216:3,-36,21.5,0,0,-0.13605 -117078,7203:215:4,-35.5,21.5,0,0,-0.13605 -117079,7203:215:3,-35,21.5,0,0,-0.13605 -117080,7203:114:4,-34.5,21.5,0,0,-0.13605 -117081,7203:114:3,-34,21.5,0,0,-0.13605 -117082,7203:113:4,-33.5,21.5,0,0,-0.13605 -117083,7203:113:3,-33,21.5,0,0,-0.13605 -117084,7203:112:4,-32.5,21.5,0,0,-0.13605 -117085,7203:112:3,-32,21.5,0,0,-0.13605 -117086,7203:111:4,-31.5,21.5,0,0,-0.13605 -117087,7203:111:3,-31,21.5,0,0,-0.13605 -117088,7203:110:4,-30.5,21.5,0,0,-0.13605 -117089,7203:110:3,-30,21.5,0,0,-0.13605 -117090,7202:219:4,-29.5,21.5,0,0,-0.13605 -117091,7202:219:3,-29,21.5,0,0,-0.13605 -117092,7202:218:4,-28.5,21.5,0,0,-0.13605 -117093,7202:218:3,-28,21.5,0,0,-0.13605 -117094,7202:217:4,-27.5,21.5,0,0,-0.13605 -117095,7202:217:3,-27,21.5,0,0,-0.13605 -117096,7202:216:4,-26.5,21.5,0,0,-0.13605 -117097,7202:216:3,-26,21.5,0,0,-0.13605 -117098,7202:215:4,-25.5,21.5,0,0,-0.13605 -117099,7202:215:3,-25,21.5,0,0,-0.13605 -117100,7202:114:4,-24.5,21.5,0,0,-0.13605 -117101,7202:114:3,-24,21.5,0,0,-0.13605 -117102,7202:113:4,-23.5,21.5,0,0,-0.13605 -117103,7202:113:3,-23,21.5,0,0,-0.13605 -117104,7202:112:4,-22.5,21.5,0,0,-0.13605 -117105,7202:112:3,-22,21.5,0,0,-0.13605 -117106,7202:111:4,-21.5,21.5,0,0,-0.13605 -117107,7202:111:3,-21,21.5,0,0,-0.13605 -117108,7202:110:4,-20.5,21.5,0,0,-0.13605 -117109,7202:110:3,-20,21.5,0,0,-0.13605 -117110,7201:219:4,-19.5,21.5,0,0,-0.13605 -117111,7201:219:3,-19,21.5,0,0,-0.13605 -117112,7201:218:4,-18.5,21.5,0,0,-0.13605 -117113,7201:218:3,-18,21.5,0,0,-0.13605 -117114,7201:217:4,-17.5,21.5,0,0,-0.13605 -117115,7201:217:3,-17,21.5,0,0,-0.13605 -117116,7201:216:4,-16.5,21.5,0,0,-0.13605 -117117,7201:216:3,-16,21.5,0,0,-0.13605 -117118,7201:215:4,-15.5,21.5,0,0,-0.13605 -117119,7201:215:3,-15,21.5,0,0,-0.13605 -117120,7201:114:4,-14.5,21.5,0,0,-0.13605 -117121,7201:114:3,-14,21.5,0,0,-0.13605 -117122,7201:113:4,-13.5,21.5,0,0,-0.13605 -117123,7201:113:3,-13,21.5,0,0,-0.13605 -117124,7201:112:4,-12.5,21.5,0,0,-0.13605 -117125,7201:112:3,-12,21.5,0,0,-0.13605 -117126,7201:111:4,-11.5,21.5,0,0,-0.13605 -117127,7201:111:3,-11,21.5,0,0,-0.13605 -117128,7201:110:4,-10.5,21.5,0,0,-0.13605 -117129,7201:110:3,-10,21.5,0,0,-0.13605 -117130,7200:219:4,-9.5,21.5,0,0,-0.13605 -117131,7200:219:3,-9,21.5,0,0,-0.13605 -117132,7200:218:4,-8.5,21.5,0,0,-0.13605 -117133,7200:218:3,-8,21.5,0,0,-0.13605 -117134,7200:217:4,-7.5,21.5,0,0,-0.13605 -117135,7200:217:3,-7,21.5,0,0,-0.13605 -117136,1201:110:3,10,21.5,0,0,-0.13605 -117137,1201:110:4,10.5,21.5,0,0,-0.13605 -117138,1201:111:3,11,21.5,0,0,-0.13605 -117139,1201:111:4,11.5,21.5,0,0,-0.13605 -117140,1201:112:3,12,21.5,0,0,-0.13605 -117141,1201:112:4,12.5,21.5,0,0,-0.13605 -117142,1201:113:3,13,21.5,0,0,-0.13605 -117143,1201:113:4,13.5,21.5,0,0,-0.13605 -117144,1201:114:3,14,21.5,0,0,-0.13605 -117145,1201:114:4,14.5,21.5,0,0,-0.13605 -117146,1201:215:3,15,21.5,0,0,-0.13605 -117147,1201:215:4,15.5,21.5,0,0,-0.13605 -117148,1201:216:3,16,21.5,0,0,-0.13605 -117149,1201:216:4,16.5,21.5,0,0,-0.13605 -117150,1201:217:3,17,21.5,0,0,-0.13605 -117151,1201:217:4,17.5,21.5,0,0,-0.13605 -117152,1201:218:3,18,21.5,0,0,-0.13605 -117153,1201:218:4,18.5,21.5,0,0,-0.13605 -117154,1201:219:3,19,21.5,0,0,-0.13605 -117155,1201:219:4,19.5,21.5,0,0,-0.13605 -117156,1202:110:3,20,21.5,0,0,-0.13605 -117157,1202:110:4,20.5,21.5,0,0,-0.13605 -117158,1202:111:3,21,21.5,0,0,-0.13605 -117159,1202:111:4,21.5,21.5,0,0,-0.13605 -117160,1202:112:3,22,21.5,0,0,-0.13605 -117161,1202:112:4,22.5,21.5,0,0,-0.13605 -117162,1202:113:3,23,21.5,0,0,-0.13605 -117163,1202:113:4,23.5,21.5,0,0,-0.13605 -117164,1202:114:3,24,21.5,0,0,-0.13605 -117165,1202:114:4,24.5,21.5,0,0,-0.13605 -117166,1202:215:3,25,21.5,0,0,-0.13605 -117167,1202:215:4,25.5,21.5,0,0,-0.13605 -117168,1202:216:3,26,21.5,0,0,-0.13605 -117169,1202:216:4,26.5,21.5,0,0,-0.13605 -117170,1202:217:3,27,21.5,0,0,-0.13605 -117171,1202:217:4,27.5,21.5,0,0,-0.13605 -117172,1202:218:3,28,21.5,0,0,-0.13605 -117173,1202:218:4,28.5,21.5,0,0,-0.13605 -117174,1202:219:3,29,21.5,0,0,-0.13605 -117175,1202:219:4,29.5,21.5,0,0,-0.13605 -117176,1203:110:3,30,21.5,0,0,-0.13605 -117177,1203:110:4,30.5,21.5,0,0,-0.13605 -117178,1203:111:3,31,21.5,0,0,-0.13605 -117179,1203:111:4,31.5,21.5,0,0,-0.13605 -117180,1203:112:3,32,21.5,0,0,-0.13605 -117181,1203:112:4,32.5,21.5,0,0,-0.13605 -117182,1203:113:3,33,21.5,0,0,-0.13605 -117183,1203:113:4,33.5,21.5,0,0,-0.13605 -117184,1203:114:3,34,21.5,0,0,-0.13605 -117185,1203:114:4,34.5,21.5,0,0,-0.13605 -117186,1203:215:3,35,21.5,0,0,-0.13605 -117187,1212:111:3,121,21.5,0,0,-0.0966915 -117188,1212:111:4,121.5,21.5,0,0,-0.100106 -117189,1212:112:3,122,21.5,0,0,-0.124198 -117190,1212:112:4,122.5,21.5,0,0,-0.13605 -117191,1212:113:3,123,21.5,0,0,-0.13605 -117192,1212:113:4,123.5,21.5,0,0,-0.13605 -117193,1212:114:3,124,21.5,0,0,-0.13605 -117194,1212:114:4,124.5,21.5,0,0,-0.13605 -117195,1212:215:3,125,21.5,0,0,-0.13605 -117196,1212:215:4,125.5,21.5,0,0,-0.13605 -117197,1212:216:3,126,21.5,0,0,-0.13605 -117198,1212:216:4,126.5,21.5,0,0,-0.13605 -117199,1212:217:3,127,21.5,0,0,-0.13605 -117200,1212:217:4,127.5,21.5,0,0,-0.13605 -117201,1212:218:3,128,21.5,0,0,-0.13605 -117202,1212:218:4,128.5,21.5,0,0,-0.13605 -117203,1212:219:3,129,21.5,0,0,-0.13605 -117204,1212:219:4,129.5,21.5,0,0,-0.13605 -117205,1213:110:3,130,21.5,0,0,-0.13605 -117206,1213:110:4,130.5,21.5,0,0,-0.13605 -117207,1213:111:3,131,21.5,0,0,-0.13605 -117208,1213:111:4,131.5,21.5,0,0,-0.13605 -117209,1213:112:3,132,21.5,0,0,-0.13605 -117210,1213:112:4,132.5,21.5,0,0,-0.13605 -117211,1213:113:3,133,21.5,0,0,-0.13605 -117212,1213:113:4,133.5,21.5,0,0,-0.13605 -117213,1213:215:3,135,21.5,0,0,-0.13605 -117214,1213:217:3,137,21.5,0,0,-0.13605 -117215,1213:217:4,137.5,21.5,0,0,-0.13605 -117216,1213:218:3,138,21.5,0,0,-0.13605 -117217,1213:218:4,138.5,21.5,0,0,-0.13605 -117218,1213:219:3,139,21.5,0,0,-0.13605 -117219,1213:219:4,139.5,21.5,0,0,-0.13605 -117220,1214:110:3,140,21.5,0,0,-0.13605 -117221,1214:110:4,140.5,21.5,0,0,-0.13605 -117222,1214:111:3,141,21.5,0,0,-0.13605 -117223,1214:111:4,141.5,21.5,0,0,-0.13605 -117224,1214:112:3,142,21.5,0,0,-0.13605 -117225,1214:112:4,142.5,21.5,0,0,-0.13605 -117226,1214:113:3,143,21.5,0,0,-0.13605 -117227,1214:113:4,143.5,21.5,0,0,-0.13605 -117228,1214:114:3,144,21.5,0,0,-0.13605 -117229,1214:114:4,144.5,21.5,0,0,-0.13605 -117230,1214:215:3,145,21.5,0,0,-0.13605 -117231,1214:215:4,145.5,21.5,0,0,-0.13605 -117232,1214:216:3,146,21.5,0,0,-0.13605 -117233,1214:216:4,146.5,21.5,0,0,-0.13605 -117234,1214:217:3,147,21.5,0,0,-0.13605 -117235,1214:217:4,147.5,21.5,0,0,-0.13605 -117236,1214:218:3,148,21.5,0,0,-0.13605 -117237,1214:218:4,148.5,21.5,0,0,-0.13605 -117238,1214:219:3,149,21.5,0,0,-0.13605 -117239,1214:219:4,149.5,21.5,0,0,-0.13605 -117240,1215:110:3,150,21.5,0,0,-0.13605 -117241,1215:110:4,150.5,21.5,0,0,-0.13605 -117242,1215:111:3,151,21.5,0,0,-0.13605 -117243,1215:111:4,151.5,21.5,0,0,-0.13605 -117244,1215:112:3,152,21.5,0,0,-0.13605 -117245,1215:112:4,152.5,21.5,0,0,-0.13605 -117246,1215:113:3,153,21.5,0,0,-0.13605 -117247,1215:113:4,153.5,21.5,0,0,-0.13605 -117248,1215:114:3,154,21.5,0,0,-0.13605 -117249,1215:114:4,154.5,21.5,0,0,-0.13605 -117250,1215:215:3,155,21.5,0,0,-0.13605 -117251,1215:215:4,155.5,21.5,0,0,-0.13605 -117252,1215:216:3,156,21.5,0,0,-0.13605 -117253,1215:216:4,156.5,21.5,0,0,-0.13605 -117254,1215:217:3,157,21.5,0,0,-0.13605 -117255,1215:217:4,157.5,21.5,0,0,-0.13605 -117256,1215:218:3,158,21.5,0,0,-0.13605 -117257,1215:218:4,158.5,21.5,0,0,-0.13605 -117258,1215:219:3,159,21.5,0,0,-0.13605 -117259,1215:219:4,159.5,21.5,0,0,-0.13605 -117260,1216:110:3,160,21.5,0,0,-0.13605 -117261,1216:110:4,160.5,21.5,0,0,-0.13605 -117262,1216:111:3,161,21.5,0,0,-0.13605 -117263,1216:111:4,161.5,21.5,0,0,-0.13605 -117264,1216:112:3,162,21.5,0,0,-0.13605 -117265,1216:112:4,162.5,21.5,0,0,-0.13605 -117266,1216:113:3,163,21.5,0,0,-0.13605 -117267,1216:113:4,163.5,21.5,0,0,-0.13605 -117268,1216:114:3,164,21.5,0,0,-0.13605 -117269,1216:114:4,164.5,21.5,0,0,-0.13605 -117270,1216:215:3,165,21.5,0,0,-0.13605 -117271,1216:215:4,165.5,21.5,0,0,-0.13605 -117272,1216:216:3,166,21.5,0,0,-0.13605 -117273,1216:216:4,166.5,21.5,0,0,-0.13605 -117274,1216:217:3,167,21.5,0,0,-0.13605 -117275,1216:217:4,167.5,21.5,0,0,-0.13605 -117276,1216:218:3,168,21.5,0,0,-0.13605 -117277,1216:218:4,168.5,21.5,0,0,-0.13605 -117278,1216:219:3,169,21.5,0,0,-0.13605 -117279,1216:219:4,169.5,21.5,0,0,-0.13605 -117280,1217:110:3,170,21.5,0,0,-0.13605 -117281,1217:110:4,170.5,21.5,0,0,-0.13605 -117282,1217:111:3,171,21.5,0,0,-0.13605 -117283,1217:111:4,171.5,21.5,0,0,-0.13605 -117284,1217:112:3,172,21.5,0,0,-0.13605 -117285,1217:112:4,172.5,21.5,0,0,-0.13605 -117286,1217:113:3,173,21.5,0,0,-0.13605 -117287,1217:113:4,173.5,21.5,0,0,-0.13605 -117288,1217:114:3,174,21.5,0,0,-0.13605 -117289,1217:114:4,174.5,21.5,0,0,-0.13605 -117290,1217:215:3,175,21.5,0,0,-0.13605 -117291,1217:215:4,175.5,21.5,0,0,-0.13605 -117292,1217:216:3,176,21.5,0,0,-0.13605 -117293,1217:216:4,176.5,21.5,0,0,-0.13605 -117294,1217:217:3,177,21.5,0,0,-0.13605 -117295,1217:217:4,177.5,21.5,0,0,-0.13605 -117296,1217:218:3,178,21.5,0,0,-0.13605 -117297,1217:218:4,178.5,21.5,0,0,-0.13605 -117298,1217:219:3,179,21.5,0,0,-0.13605 -117299,1217:219:4,179.5,21.5,0,0,-0.13605 -117300,1218:110:3,180,21.5,0,0,-0.13605 -117301,7218:120:1,-180,22,0,0,-0.13605 -117302,7217:229:2,-179.5,22,0,0,-0.13605 -117303,7217:229:1,-179,22,0,0,-0.13605 -117304,7217:228:2,-178.5,22,0,0,-0.13605 -117305,7217:228:1,-178,22,0,0,-0.13605 -117306,7217:227:2,-177.5,22,0,0,-0.13605 -117307,7217:227:1,-177,22,0,0,-0.13605 -117308,7217:226:2,-176.5,22,0,0,-0.13605 -117309,7217:226:1,-176,22,0,0,-0.13605 -117310,7217:225:2,-175.5,22,0,0,-0.13605 -117311,7217:225:1,-175,22,0,0,-0.13605 -117312,7217:124:2,-174.5,22,0,0,-0.13605 -117313,7217:124:1,-174,22,0,0,-0.13605 -117314,7217:123:2,-173.5,22,0,0,-0.13605 -117315,7217:123:1,-173,22,0,0,-0.13605 -117316,7217:122:2,-172.5,22,0,0,-0.13605 -117317,7217:122:1,-172,22,0,0,-0.13605 -117318,7217:121:2,-171.5,22,0,0,-0.13605 -117319,7217:121:1,-171,22,0,0,-0.13605 -117320,7217:120:2,-170.5,22,0,0,-0.13605 -117321,7217:120:1,-170,22,0,0,-0.13605 -117322,7216:229:2,-169.5,22,0,0,-0.13605 -117323,7216:229:1,-169,22,0,0,-0.13605 -117324,7216:228:2,-168.5,22,0,0,-0.13605 -117325,7216:228:1,-168,22,0,0,-0.13605 -117326,7216:227:2,-167.5,22,0,0,-0.13605 -117327,7216:227:1,-167,22,0,0,-0.13605 -117328,7216:226:2,-166.5,22,0,0,-0.13605 -117329,7216:226:1,-166,22,0,0,-0.13605 -117330,7216:225:2,-165.5,22,0,0,-0.13605 -117331,7216:225:1,-165,22,0,0,-0.13605 -117332,7216:124:2,-164.5,22,0,0,-0.13605 -117333,7216:124:1,-164,22,0,0,-0.13605 -117334,7216:123:2,-163.5,22,0,0,-0.13605 -117335,7216:123:1,-163,22,0,0,-0.13605 -117336,7216:122:2,-162.5,22,0,0,-0.13605 -117337,7216:122:1,-162,22,0,0,-0.13605 -117338,7216:121:2,-161.5,22,0,0,-0.13605 -117339,7216:121:1,-161,22,0,0,-0.13605 -117340,7216:120:2,-160.5,22,0,0,-0.13605 -117341,7216:120:1,-160,22,0,0,-0.13605 -117342,7215:229:2,-159.5,22,0,0,-0.13605 -117343,7215:229:1,-159,22,0,0,-0.13605 -117344,7215:228:2,-158.5,22,0,0,-0.13605 -117345,7215:228:1,-158,22,0,0,-0.13605 -117346,7215:227:2,-157.5,22,0,0,-0.13605 -117347,7215:227:1,-157,22,0,0,-0.13605 -117348,7215:226:2,-156.5,22,0,0,-0.13605 -117349,7215:226:1,-156,22,0,0,-0.13605 -117350,7215:225:2,-155.5,22,0,0,-0.13605 -117351,7215:225:1,-155,22,0,0,-0.13605 -117352,7215:124:2,-154.5,22,0,0,-0.13605 -117353,7215:124:1,-154,22,0,0,-0.13605 -117354,7215:123:2,-153.5,22,0,0,-0.13605 -117355,7215:123:1,-153,22,0,0,-0.13605 -117356,7215:122:2,-152.5,22,0,0,-0.13605 -117357,7215:122:1,-152,22,0,0,-0.13605 -117358,7215:121:2,-151.5,22,0,0,-0.13605 -117359,7215:121:1,-151,22,0,0,-0.13605 -117360,7215:120:2,-150.5,22,0,0,-0.13605 -117361,7215:120:1,-150,22,0,0,-0.13605 -117362,7214:229:2,-149.5,22,0,0,-0.13605 -117363,7214:229:1,-149,22,0,0,-0.13605 -117364,7214:228:2,-148.5,22,0,0,-0.13605 -117365,7214:228:1,-148,22,0,0,-0.13605 -117366,7214:227:2,-147.5,22,0,0,-0.13605 -117367,7214:227:1,-147,22,0,0,-0.13605 -117368,7214:226:2,-146.5,22,0,0,-0.13605 -117369,7214:226:1,-146,22,0,0,-0.13605 -117370,7214:225:2,-145.5,22,0,0,-0.13605 -117371,7214:225:1,-145,22,0,0,-0.13605 -117372,7214:124:2,-144.5,22,0,0,-0.13605 -117373,7214:124:1,-144,22,0,0,-0.13605 -117374,7214:123:2,-143.5,22,0,0,-0.13605 -117375,7214:123:1,-143,22,0,0,-0.13605 -117376,7214:122:2,-142.5,22,0,0,-0.13605 -117377,7214:122:1,-142,22,0,0,-0.13605 -117378,7214:121:2,-141.5,22,0,0,-0.13605 -117379,7214:121:1,-141,22,0,0,-0.13605 -117380,7214:120:2,-140.5,22,0,0,-0.13605 -117381,7214:120:1,-140,22,0,0,-0.13605 -117382,7213:229:2,-139.5,22,0,0,-0.13605 -117383,7213:229:1,-139,22,0,0,-0.13605 -117384,7213:228:2,-138.5,22,0,0,-0.13605 -117385,7213:228:1,-138,22,0,0,-0.13605 -117386,7213:227:2,-137.5,22,0,0,-0.13605 -117387,7213:227:1,-137,22,0,0,-0.13605 -117388,7213:226:2,-136.5,22,0,0,-0.13605 -117389,7213:226:1,-136,22,0,0,-0.13605 -117390,7213:225:2,-135.5,22,0,0,-0.13605 -117391,7213:225:1,-135,22,0,0,-0.13605 -117392,7213:124:2,-134.5,22,0,0,-0.13605 -117393,7213:124:1,-134,22,0,0,-0.13605 -117394,7213:123:2,-133.5,22,0,0,-0.13605 -117395,7213:123:1,-133,22,0,0,-0.13605 -117396,7213:122:2,-132.5,22,0,0,-0.13605 -117397,7213:122:1,-132,22,0,0,-0.13605 -117398,7213:121:2,-131.5,22,0,0,-0.13605 -117399,7213:121:1,-131,22,0,0,-0.13605 -117400,7213:120:2,-130.5,22,0,0,-0.13605 -117401,7213:120:1,-130,22,0,0,-0.13605 -117402,7212:229:2,-129.5,22,0,0,-0.13605 -117403,7212:229:1,-129,22,0,0,-0.13605 -117404,7212:228:2,-128.5,22,0,0,-0.13605 -117405,7212:228:1,-128,22,0,0,-0.13605 -117406,7212:227:2,-127.5,22,0,0,-0.13605 -117407,7212:227:1,-127,22,0,0,-0.13605 -117408,7212:226:2,-126.5,22,0,0,-0.13605 -117409,7212:226:1,-126,22,0,0,-0.13605 -117410,7212:225:2,-125.5,22,0,0,-0.13605 -117411,7212:225:1,-125,22,0,0,-0.13605 -117412,7212:124:2,-124.5,22,0,0,-0.13605 -117413,7212:124:1,-124,22,0,0,-0.13605 -117414,7212:123:2,-123.5,22,0,0,-0.13605 -117415,7212:123:1,-123,22,0,0,-0.13605 -117416,7212:122:2,-122.5,22,0,0,-0.13605 -117417,7212:122:1,-122,22,0,0,-0.13605 -117418,7212:121:2,-121.5,22,0,0,-0.13605 -117419,7212:121:1,-121,22,0,0,-0.13605 -117420,7207:227:1,-77,22,0,0,-0.13605 -117421,7207:226:2,-76.5,22,0,0,-0.13605 -117422,7207:226:1,-76,22,0,0,-0.13605 -117423,7207:225:2,-75.5,22,0,0,-0.13605 -117424,7207:225:1,-75,22,0,0,-0.13605 -117425,7207:124:2,-74.5,22,0,0,-0.13605 -117426,7207:124:1,-74,22,0,0,-0.13605 -117427,7207:123:2,-73.5,22,0,0,-0.13605 -117428,7207:123:1,-73,22,0,0,-0.13605 -117429,7207:122:2,-72.5,22,0,0,-0.13605 -117430,7207:122:1,-72,22,0,0,-0.13605 -117431,7207:121:2,-71.5,22,0,0,-0.13605 -117432,7207:121:1,-71,22,0,0,-0.13605 -117433,7207:120:2,-70.5,22,0,0,-0.13605 -117434,7207:120:1,-70,22,0,0,-0.13605 -117435,7206:229:2,-69.5,22,0,0,-0.13605 -117436,7206:229:1,-69,22,0,0,-0.13605 -117437,7206:228:2,-68.5,22,0,0,-0.13605 -117438,7206:228:1,-68,22,0,0,-0.13605 -117439,7206:227:2,-67.5,22,0,0,-0.13605 -117440,7206:227:1,-67,22,0,0,-0.13605 -117441,7206:226:2,-66.5,22,0,0,-0.13605 -117442,7206:226:1,-66,22,0,0,-0.13605 -117443,7206:225:2,-65.5,22,0,0,-0.13605 -117444,7206:225:1,-65,22,0,0,-0.13605 -117445,7206:124:2,-64.5,22,0,0,-0.13605 -117446,7206:124:1,-64,22,0,0,-0.13605 -117447,7206:123:2,-63.5,22,0,0,-0.13605 -117448,7206:123:1,-63,22,0,0,-0.13605 -117449,7206:122:2,-62.5,22,0,0,-0.13605 -117450,7206:122:1,-62,22,0,0,-0.13605 -117451,7206:121:2,-61.5,22,0,0,-0.13605 -117452,7206:121:1,-61,22,0,0,-0.13605 -117453,7206:120:2,-60.5,22,0,0,-0.13605 -117454,7206:120:1,-60,22,0,0,-0.13605 -117455,7205:229:2,-59.5,22,0,0,-0.13605 -117456,7205:229:1,-59,22,0,0,-0.13605 -117457,7205:228:2,-58.5,22,0,0,-0.13605 -117458,7205:228:1,-58,22,0,0,-0.13605 -117459,7205:227:2,-57.5,22,0,0,-0.13605 -117460,7205:227:1,-57,22,0,0,-0.13605 -117461,7205:226:2,-56.5,22,0,0,-0.13605 -117462,7205:226:1,-56,22,0,0,-0.13605 -117463,7205:225:2,-55.5,22,0,0,-0.13605 -117464,7205:225:1,-55,22,0,0,-0.13605 -117465,7205:124:2,-54.5,22,0,0,-0.13605 -117466,7205:124:1,-54,22,0,0,-0.13605 -117467,7205:123:2,-53.5,22,0,0,-0.13605 -117468,7205:123:1,-53,22,0,0,-0.13605 -117469,7205:122:2,-52.5,22,0,0,-0.13605 -117470,7205:122:1,-52,22,0,0,-0.13605 -117471,7205:121:2,-51.5,22,0,0,-0.13605 -117472,7205:121:1,-51,22,0,0,-0.13605 -117473,7205:120:2,-50.5,22,0,0,-0.13605 -117474,7205:120:1,-50,22,0,0,-0.13605 -117475,7204:229:2,-49.5,22,0,0,-0.13605 -117476,7204:229:1,-49,22,0,0,-0.13605 -117477,7204:228:2,-48.5,22,0,0,-0.13605 -117478,7204:228:1,-48,22,0,0,-0.13605 -117479,7204:227:2,-47.5,22,0,0,-0.13605 -117480,7204:227:1,-47,22,0,0,-0.13605 -117481,7204:226:2,-46.5,22,0,0,-0.13605 -117482,7204:226:1,-46,22,0,0,-0.13605 -117483,7204:225:2,-45.5,22,0,0,-0.13605 -117484,7204:225:1,-45,22,0,0,-0.13605 -117485,7204:124:2,-44.5,22,0,0,-0.13605 -117486,7204:124:1,-44,22,0,0,-0.13605 -117487,7204:123:2,-43.5,22,0,0,-0.13605 -117488,7204:123:1,-43,22,0,0,-0.13605 -117489,7204:122:2,-42.5,22,0,0,-0.13605 -117490,7204:122:1,-42,22,0,0,-0.13605 -117491,7204:121:2,-41.5,22,0,0,-0.13605 -117492,7204:121:1,-41,22,0,0,-0.13605 -117493,7204:120:2,-40.5,22,0,0,-0.13605 -117494,7204:120:1,-40,22,0,0,-0.13605 -117495,7203:229:2,-39.5,22,0,0,-0.13605 -117496,7203:229:1,-39,22,0,0,-0.13605 -117497,7203:228:2,-38.5,22,0,0,-0.13605 -117498,7203:228:1,-38,22,0,0,-0.13605 -117499,7203:227:2,-37.5,22,0,0,-0.13605 -117500,7203:227:1,-37,22,0,0,-0.13605 -117501,7203:226:2,-36.5,22,0,0,-0.13605 -117502,7203:226:1,-36,22,0,0,-0.13605 -117503,7203:225:2,-35.5,22,0,0,-0.13605 -117504,7203:225:1,-35,22,0,0,-0.13605 -117505,7203:124:2,-34.5,22,0,0,-0.13605 -117506,7203:124:1,-34,22,0,0,-0.13605 -117507,7203:123:2,-33.5,22,0,0,-0.13605 -117508,7203:123:1,-33,22,0,0,-0.13605 -117509,7203:122:2,-32.5,22,0,0,-0.13605 -117510,7203:122:1,-32,22,0,0,-0.13605 -117511,7203:121:2,-31.5,22,0,0,-0.13605 -117512,7203:121:1,-31,22,0,0,-0.13605 -117513,7203:120:2,-30.5,22,0,0,-0.13605 -117514,7203:120:1,-30,22,0,0,-0.13605 -117515,7202:229:2,-29.5,22,0,0,-0.13605 -117516,7202:229:1,-29,22,0,0,-0.13605 -117517,7202:228:2,-28.5,22,0,0,-0.13605 -117518,7202:228:1,-28,22,0,0,-0.13605 -117519,7202:227:2,-27.5,22,0,0,-0.13605 -117520,7202:227:1,-27,22,0,0,-0.13605 -117521,7202:226:2,-26.5,22,0,0,-0.13605 -117522,7202:226:1,-26,22,0,0,-0.13605 -117523,7202:225:2,-25.5,22,0,0,-0.13605 -117524,7202:225:1,-25,22,0,0,-0.13605 -117525,7202:124:2,-24.5,22,0,0,-0.13605 -117526,7202:124:1,-24,22,0,0,-0.13605 -117527,7202:123:2,-23.5,22,0,0,-0.13605 -117528,7202:123:1,-23,22,0,0,-0.13605 -117529,7202:122:2,-22.5,22,0,0,-0.13605 -117530,7202:122:1,-22,22,0,0,-0.13605 -117531,7202:121:2,-21.5,22,0,0,-0.13605 -117532,7202:121:1,-21,22,0,0,-0.13605 -117533,7202:120:2,-20.5,22,0,0,-0.13605 -117534,7202:120:1,-20,22,0,0,-0.13605 -117535,7201:229:2,-19.5,22,0,0,-0.13605 -117536,7201:229:1,-19,22,0,0,-0.13605 -117537,7201:228:2,-18.5,22,0,0,-0.13605 -117538,7201:228:1,-18,22,0,0,-0.13605 -117539,7201:227:2,-17.5,22,0,0,-0.13605 -117540,7201:227:1,-17,22,0,0,-0.13605 -117541,7201:226:2,-16.5,22,0,0,-0.13605 -117542,7201:226:1,-16,22,0,0,-0.13605 -117543,7201:225:2,-15.5,22,0,0,-0.13605 -117544,7201:225:1,-15,22,0,0,-0.13605 -117545,7201:124:2,-14.5,22,0,0,-0.13605 -117546,7201:124:1,-14,22,0,0,-0.13605 -117547,7201:123:2,-13.5,22,0,0,-0.13605 -117548,7201:123:1,-13,22,0,0,-0.13605 -117549,7201:122:2,-12.5,22,0,0,-0.13605 -117550,7201:122:1,-12,22,0,0,-0.13605 -117551,7201:121:2,-11.5,22,0,0,-0.13605 -117552,7201:121:1,-11,22,0,0,-0.13605 -117553,7201:120:2,-10.5,22,0,0,-0.13605 -117554,7201:120:1,-10,22,0,0,-0.13605 -117555,7200:229:2,-9.5,22,0,0,-0.13605 -117556,7200:229:1,-9,22,0,0,-0.13605 -117557,7200:228:2,-8.5,22,0,0,-0.13605 -117558,7200:228:1,-8,22,0,0,-0.13605 -117559,7200:227:2,-7.5,22,0,0,-0.13605 -117560,7200:227:1,-7,22,0,0,-0.13605 -117561,1201:120:2,10.5,22,0,0,-0.13605 -117562,1201:121:1,11,22,0,0,-0.13605 -117563,1201:121:2,11.5,22,0,0,-0.13605 -117564,1201:122:1,12,22,0,0,-0.13605 -117565,1201:122:2,12.5,22,0,0,-0.13605 -117566,1201:123:1,13,22,0,0,-0.13605 -117567,1201:123:2,13.5,22,0,0,-0.13605 -117568,1201:124:1,14,22,0,0,-0.13605 -117569,1201:124:2,14.5,22,0,0,-0.13605 -117570,1201:225:1,15,22,0,0,-0.13605 -117571,1201:225:2,15.5,22,0,0,-0.13605 -117572,1201:226:1,16,22,0,0,-0.13605 -117573,1201:226:2,16.5,22,0,0,-0.13605 -117574,1201:227:1,17,22,0,0,-0.13605 -117575,1201:227:2,17.5,22,0,0,-0.13605 -117576,1201:228:1,18,22,0,0,-0.13605 -117577,1201:228:2,18.5,22,0,0,-0.13605 -117578,1201:229:1,19,22,0,0,-0.13605 -117579,1201:229:2,19.5,22,0,0,-0.13605 -117580,1202:120:1,20,22,0,0,-0.13605 -117581,1202:120:2,20.5,22,0,0,-0.13605 -117582,1202:121:1,21,22,0,0,-0.13605 -117583,1202:121:2,21.5,22,0,0,-0.13605 -117584,1202:122:1,22,22,0,0,-0.13605 -117585,1202:122:2,22.5,22,0,0,-0.13605 -117586,1202:123:1,23,22,0,0,-0.13605 -117587,1202:123:2,23.5,22,0,0,-0.13605 -117588,1202:124:1,24,22,0,0,-0.13605 -117589,1202:124:2,24.5,22,0,0,-0.13605 -117590,1202:225:1,25,22,0,0,-0.13605 -117591,1202:225:2,25.5,22,0,0,-0.13605 -117592,1202:226:1,26,22,0,0,-0.13605 -117593,1202:226:2,26.5,22,0,0,-0.13605 -117594,1202:227:1,27,22,0,0,-0.13605 -117595,1202:227:2,27.5,22,0,0,-0.13605 -117596,1202:228:1,28,22,0,0,-0.13605 -117597,1202:228:2,28.5,22,0,0,-0.13605 -117598,1202:229:1,29,22,0,0,-0.13605 -117599,1202:229:2,29.5,22,0,0,-0.13605 -117600,1203:120:1,30,22,0,0,-0.13605 -117601,1203:120:2,30.5,22,0,0,-0.13605 -117602,1203:121:1,31,22,0,0,-0.13605 -117603,1203:121:2,31.5,22,0,0,-0.13605 -117604,1203:122:1,32,22,0,0,-0.13605 -117605,1203:122:2,32.5,22,0,0,-0.13605 -117606,1203:123:1,33,22,0,0,-0.13605 -117607,1203:123:2,33.5,22,0,0,-0.13605 -117608,1203:124:1,34,22,0,0,-0.13605 -117609,1203:124:2,34.5,22,0,0,-0.13605 -117610,1203:225:1,35,22,0,0,-0.13605 -117611,1212:120:2,120.5,22,0,0,-0.102322 -117612,1212:121:1,121,22,0,0,-0.110404 -117613,1212:121:2,121.5,22,0,0,-0.123062 -117614,1212:122:1,122,22,0,0,-0.13605 -117615,1212:122:2,122.5,22,0,0,-0.13605 -117616,1212:123:1,123,22,0,0,-0.13605 -117617,1212:123:2,123.5,22,0,0,-0.13605 -117618,1212:124:1,124,22,0,0,-0.13605 -117619,1212:124:2,124.5,22,0,0,-0.13605 -117620,1212:225:1,125,22,0,0,-0.13605 -117621,1212:225:2,125.5,22,0,0,-0.13605 -117622,1212:226:1,126,22,0,0,-0.13605 -117623,1212:226:2,126.5,22,0,0,-0.103829 -117624,1212:227:2,127.5,22,0,0,-0.13605 -117625,1212:228:1,128,22,0,0,-0.135537 -117626,1212:228:2,128.5,22,0,0,-0.13605 -117627,1212:229:1,129,22,0,0,-0.13605 -117628,1212:229:2,129.5,22,0,0,-0.13605 -117629,1213:120:1,130,22,0,0,-0.13605 -117630,1213:120:2,130.5,22,0,0,-0.13605 -117631,1213:121:1,131,22,0,0,-0.13605 -117632,1213:121:2,131.5,22,0,0,-0.13605 -117633,1213:124:2,134.5,22,0,0,-0.13605 -117634,1213:225:1,135,22,0,0,-0.13605 -117635,1213:225:2,135.5,22,0,0,-0.13605 -117636,1213:227:1,137,22,0,0,-0.13605 -117637,1213:227:2,137.5,22,0,0,-0.13605 -117638,1213:229:1,139,22,0,0,-0.13605 -117639,1213:229:2,139.5,22,0,0,-0.13605 -117640,1214:120:1,140,22,0,0,-0.13605 -117641,1214:120:2,140.5,22,0,0,-0.13605 -117642,1214:121:1,141,22,0,0,-0.13605 -117643,1214:121:2,141.5,22,0,0,-0.13605 -117644,1214:122:1,142,22,0,0,-0.13605 -117645,1214:122:2,142.5,22,0,0,-0.13605 -117646,1214:123:1,143,22,0,0,-0.13605 -117647,1214:123:2,143.5,22,0,0,-0.13605 -117648,1214:124:1,144,22,0,0,-0.13605 -117649,1214:124:2,144.5,22,0,0,-0.13605 -117650,1214:225:1,145,22,0,0,-0.13605 -117651,1214:225:2,145.5,22,0,0,-0.13605 -117652,1214:226:1,146,22,0,0,-0.13605 -117653,1214:226:2,146.5,22,0,0,-0.13605 -117654,1214:227:1,147,22,0,0,-0.13605 -117655,1214:227:2,147.5,22,0,0,-0.13605 -117656,1214:228:1,148,22,0,0,-0.13605 -117657,1214:228:2,148.5,22,0,0,-0.13605 -117658,1214:229:1,149,22,0,0,-0.13605 -117659,1214:229:2,149.5,22,0,0,-0.13605 -117660,1215:120:1,150,22,0,0,-0.13605 -117661,1215:120:2,150.5,22,0,0,-0.13605 -117662,1215:121:1,151,22,0,0,-0.13605 -117663,1215:121:2,151.5,22,0,0,-0.13605 -117664,1215:122:1,152,22,0,0,-0.13605 -117665,1215:122:2,152.5,22,0,0,-0.13605 -117666,1215:123:1,153,22,0,0,-0.13605 -117667,1215:123:2,153.5,22,0,0,-0.13605 -117668,1215:124:1,154,22,0,0,-0.13605 -117669,1215:124:2,154.5,22,0,0,-0.13605 -117670,1215:225:1,155,22,0,0,-0.13605 -117671,1215:225:2,155.5,22,0,0,-0.13605 -117672,1215:226:1,156,22,0,0,-0.13605 -117673,1215:226:2,156.5,22,0,0,-0.13605 -117674,1215:227:1,157,22,0,0,-0.13605 -117675,1215:227:2,157.5,22,0,0,-0.13605 -117676,1215:228:1,158,22,0,0,-0.13605 -117677,1215:228:2,158.5,22,0,0,-0.13605 -117678,1215:229:1,159,22,0,0,-0.13605 -117679,1215:229:2,159.5,22,0,0,-0.13605 -117680,1216:120:1,160,22,0,0,-0.13605 -117681,1216:120:2,160.5,22,0,0,-0.13605 -117682,1216:121:1,161,22,0,0,-0.13605 -117683,1216:121:2,161.5,22,0,0,-0.13605 -117684,1216:122:1,162,22,0,0,-0.13605 -117685,1216:122:2,162.5,22,0,0,-0.13605 -117686,1216:123:1,163,22,0,0,-0.13605 -117687,1216:123:2,163.5,22,0,0,-0.13605 -117688,1216:124:1,164,22,0,0,-0.13605 -117689,1216:124:2,164.5,22,0,0,-0.13605 -117690,1216:225:1,165,22,0,0,-0.13605 -117691,1216:225:2,165.5,22,0,0,-0.13605 -117692,1216:226:1,166,22,0,0,-0.13605 -117693,1216:226:2,166.5,22,0,0,-0.13605 -117694,1216:227:1,167,22,0,0,-0.13605 -117695,1216:227:2,167.5,22,0,0,-0.13605 -117696,1216:228:1,168,22,0,0,-0.13605 -117697,1216:228:2,168.5,22,0,0,-0.13605 -117698,1216:229:1,169,22,0,0,-0.13605 -117699,1216:229:2,169.5,22,0,0,-0.13605 -117700,1217:120:1,170,22,0,0,-0.13605 -117701,1217:120:2,170.5,22,0,0,-0.13605 -117702,1217:121:1,171,22,0,0,-0.13605 -117703,1217:121:2,171.5,22,0,0,-0.13605 -117704,1217:122:1,172,22,0,0,-0.13605 -117705,1217:122:2,172.5,22,0,0,-0.13605 -117706,1217:123:1,173,22,0,0,-0.13605 -117707,1217:123:2,173.5,22,0,0,-0.13605 -117708,1217:124:1,174,22,0,0,-0.13605 -117709,1217:124:2,174.5,22,0,0,-0.13605 -117710,1217:225:1,175,22,0,0,-0.13605 -117711,1217:225:2,175.5,22,0,0,-0.13605 -117712,1217:226:1,176,22,0,0,-0.13605 -117713,1217:226:2,176.5,22,0,0,-0.13605 -117714,1217:227:1,177,22,0,0,-0.13605 -117715,1217:227:2,177.5,22,0,0,-0.13605 -117716,1217:228:1,178,22,0,0,-0.13605 -117717,1217:228:2,178.5,22,0,0,-0.13605 -117718,1217:229:1,179,22,0,0,-0.13605 -117719,1217:229:2,179.5,22,0,0,-0.13605 -117720,1218:120:1,180,22,0,0,-0.13605 -117721,7218:120:3,-180,22.5,0,0,-0.13605 -117722,7217:229:4,-179.5,22.5,0,0,-0.13605 -117723,7217:229:3,-179,22.5,0,0,-0.13605 -117724,7217:228:4,-178.5,22.5,0,0,-0.13605 -117725,7217:228:3,-178,22.5,0,0,-0.13605 -117726,7217:227:4,-177.5,22.5,0,0,-0.13605 -117727,7217:227:3,-177,22.5,0,0,-0.13605 -117728,7217:226:4,-176.5,22.5,0,0,-0.13605 -117729,7217:226:3,-176,22.5,0,0,-0.13605 -117730,7217:225:4,-175.5,22.5,0,0,-0.13605 -117731,7217:225:3,-175,22.5,0,0,-0.13605 -117732,7217:124:4,-174.5,22.5,0,0,-0.13605 -117733,7217:124:3,-174,22.5,0,0,-0.13605 -117734,7217:123:4,-173.5,22.5,0,0,-0.13605 -117735,7217:123:3,-173,22.5,0,0,-0.13605 -117736,7217:122:4,-172.5,22.5,0,0,-0.13605 -117737,7217:122:3,-172,22.5,0,0,-0.13605 -117738,7217:121:4,-171.5,22.5,0,0,-0.13605 -117739,7217:121:3,-171,22.5,0,0,-0.13605 -117740,7217:120:4,-170.5,22.5,0,0,-0.13605 -117741,7217:120:3,-170,22.5,0,0,-0.13605 -117742,7216:229:4,-169.5,22.5,0,0,-0.13605 -117743,7216:229:3,-169,22.5,0,0,-0.13605 -117744,7216:228:4,-168.5,22.5,0,0,-0.13605 -117745,7216:228:3,-168,22.5,0,0,-0.13605 -117746,7216:227:4,-167.5,22.5,0,0,-0.13605 -117747,7216:227:3,-167,22.5,0,0,-0.13605 -117748,7216:226:4,-166.5,22.5,0,0,-0.13605 -117749,7216:226:3,-166,22.5,0,0,-0.13605 -117750,7216:225:4,-165.5,22.5,0,0,-0.13605 -117751,7216:225:3,-165,22.5,0,0,-0.13605 -117752,7216:124:4,-164.5,22.5,0,0,-0.13605 -117753,7216:124:3,-164,22.5,0,0,-0.13605 -117754,7216:123:4,-163.5,22.5,0,0,-0.13605 -117755,7216:123:3,-163,22.5,0,0,-0.13605 -117756,7216:122:4,-162.5,22.5,0,0,-0.13605 -117757,7216:122:3,-162,22.5,0,0,-0.13605 -117758,7216:121:4,-161.5,22.5,0,0,-0.13605 -117759,7216:121:3,-161,22.5,0,0,-0.13605 -117760,7216:120:4,-160.5,22.5,0,0,-0.13605 -117761,7216:120:3,-160,22.5,0,0,-0.13605 -117762,7215:229:4,-159.5,22.5,0,0,-0.13605 -117763,7215:229:3,-159,22.5,0,0,-0.13605 -117764,7215:228:4,-158.5,22.5,0,0,-0.13605 -117765,7215:228:3,-158,22.5,0,0,-0.13605 -117766,7215:227:4,-157.5,22.5,0,0,-0.13605 -117767,7215:227:3,-157,22.5,0,0,-0.13605 -117768,7215:226:4,-156.5,22.5,0,0,-0.13605 -117769,7215:226:3,-156,22.5,0,0,-0.13605 -117770,7215:225:4,-155.5,22.5,0,0,-0.13605 -117771,7215:225:3,-155,22.5,0,0,-0.13605 -117772,7215:124:4,-154.5,22.5,0,0,-0.13605 -117773,7215:124:3,-154,22.5,0,0,-0.13605 -117774,7215:123:4,-153.5,22.5,0,0,-0.13605 -117775,7215:123:3,-153,22.5,0,0,-0.13605 -117776,7215:122:4,-152.5,22.5,0,0,-0.13605 -117777,7215:122:3,-152,22.5,0,0,-0.13605 -117778,7215:121:4,-151.5,22.5,0,0,-0.13605 -117779,7215:121:3,-151,22.5,0,0,-0.13605 -117780,7215:120:4,-150.5,22.5,0,0,-0.13605 -117781,7215:120:3,-150,22.5,0,0,-0.13605 -117782,7214:229:4,-149.5,22.5,0,0,-0.13605 -117783,7214:229:3,-149,22.5,0,0,-0.13605 -117784,7214:228:4,-148.5,22.5,0,0,-0.13605 -117785,7214:228:3,-148,22.5,0,0,-0.13605 -117786,7214:227:4,-147.5,22.5,0,0,-0.13605 -117787,7214:227:3,-147,22.5,0,0,-0.13605 -117788,7214:226:4,-146.5,22.5,0,0,-0.13605 -117789,7214:226:3,-146,22.5,0,0,-0.13605 -117790,7214:225:4,-145.5,22.5,0,0,-0.13605 -117791,7214:225:3,-145,22.5,0,0,-0.13605 -117792,7214:124:4,-144.5,22.5,0,0,-0.13605 -117793,7214:124:3,-144,22.5,0,0,-0.13605 -117794,7214:123:4,-143.5,22.5,0,0,-0.13605 -117795,7214:123:3,-143,22.5,0,0,-0.13605 -117796,7214:122:4,-142.5,22.5,0,0,-0.13605 -117797,7214:122:3,-142,22.5,0,0,-0.13605 -117798,7214:121:4,-141.5,22.5,0,0,-0.13605 -117799,7214:121:3,-141,22.5,0,0,-0.13605 -117800,7214:120:4,-140.5,22.5,0,0,-0.13605 -117801,7214:120:3,-140,22.5,0,0,-0.13605 -117802,7213:229:4,-139.5,22.5,0,0,-0.13605 -117803,7213:229:3,-139,22.5,0,0,-0.13605 -117804,7213:228:4,-138.5,22.5,0,0,-0.13605 -117805,7213:228:3,-138,22.5,0,0,-0.13605 -117806,7213:227:4,-137.5,22.5,0,0,-0.13605 -117807,7213:227:3,-137,22.5,0,0,-0.13605 -117808,7213:226:4,-136.5,22.5,0,0,-0.13605 -117809,7213:226:3,-136,22.5,0,0,-0.13605 -117810,7213:225:4,-135.5,22.5,0,0,-0.13605 -117811,7213:225:3,-135,22.5,0,0,-0.13605 -117812,7213:124:4,-134.5,22.5,0,0,-0.13605 -117813,7213:124:3,-134,22.5,0,0,-0.13605 -117814,7213:123:4,-133.5,22.5,0,0,-0.13605 -117815,7213:123:3,-133,22.5,0,0,-0.13605 -117816,7213:122:4,-132.5,22.5,0,0,-0.13605 -117817,7213:122:3,-132,22.5,0,0,-0.13605 -117818,7213:121:4,-131.5,22.5,0,0,-0.13605 -117819,7213:121:3,-131,22.5,0,0,-0.13605 -117820,7213:120:4,-130.5,22.5,0,0,-0.13605 -117821,7213:120:3,-130,22.5,0,0,-0.13605 -117822,7212:229:4,-129.5,22.5,0,0,-0.13605 -117823,7212:229:3,-129,22.5,0,0,-0.13605 -117824,7212:228:4,-128.5,22.5,0,0,-0.13605 -117825,7212:228:3,-128,22.5,0,0,-0.13605 -117826,7212:227:4,-127.5,22.5,0,0,-0.13605 -117827,7212:227:3,-127,22.5,0,0,-0.13605 -117828,7212:226:4,-126.5,22.5,0,0,-0.13605 -117829,7212:226:3,-126,22.5,0,0,-0.13605 -117830,7212:225:4,-125.5,22.5,0,0,-0.13605 -117831,7212:225:3,-125,22.5,0,0,-0.13605 -117832,7212:124:4,-124.5,22.5,0,0,-0.13605 -117833,7212:124:3,-124,22.5,0,0,-0.13605 -117834,7212:123:4,-123.5,22.5,0,0,-0.13605 -117835,7212:123:3,-123,22.5,0,0,-0.13605 -117836,7212:122:4,-122.5,22.5,0,0,-0.13605 -117837,7212:122:3,-122,22.5,0,0,-0.13605 -117838,7212:121:4,-121.5,22.5,0,0,-0.13605 -117839,7212:121:3,-121,22.5,0,0,-0.13605 -117840,7207:225:4,-75.5,22.5,0,0,-0.13605 -117841,7207:225:3,-75,22.5,0,0,-0.13605 -117842,7207:124:4,-74.5,22.5,0,0,-0.13605 -117843,7207:124:3,-74,22.5,0,0,-0.13605 -117844,7207:123:4,-73.5,22.5,0,0,-0.13605 -117845,7207:123:3,-73,22.5,0,0,-0.13605 -117846,7207:122:4,-72.5,22.5,0,0,-0.13605 -117847,7207:122:3,-72,22.5,0,0,-0.13605 -117848,7207:121:4,-71.5,22.5,0,0,-0.13605 -117849,7207:121:3,-71,22.5,0,0,-0.13605 -117850,7207:120:4,-70.5,22.5,0,0,-0.13605 -117851,7207:120:3,-70,22.5,0,0,-0.13605 -117852,7206:229:4,-69.5,22.5,0,0,-0.13605 -117853,7206:229:3,-69,22.5,0,0,-0.13605 -117854,7206:228:4,-68.5,22.5,0,0,-0.13605 -117855,7206:228:3,-68,22.5,0,0,-0.13605 -117856,7206:227:4,-67.5,22.5,0,0,-0.13605 -117857,7206:227:3,-67,22.5,0,0,-0.13605 -117858,7206:226:4,-66.5,22.5,0,0,-0.13605 -117859,7206:226:3,-66,22.5,0,0,-0.13605 -117860,7206:225:4,-65.5,22.5,0,0,-0.13605 -117861,7206:225:3,-65,22.5,0,0,-0.13605 -117862,7206:124:4,-64.5,22.5,0,0,-0.13605 -117863,7206:124:3,-64,22.5,0,0,-0.13605 -117864,7206:123:4,-63.5,22.5,0,0,-0.13605 -117865,7206:123:3,-63,22.5,0,0,-0.13605 -117866,7206:122:4,-62.5,22.5,0,0,-0.13605 -117867,7206:122:3,-62,22.5,0,0,-0.13605 -117868,7206:121:4,-61.5,22.5,0,0,-0.13605 -117869,7206:121:3,-61,22.5,0,0,-0.13605 -117870,7206:120:4,-60.5,22.5,0,0,-0.13605 -117871,7206:120:3,-60,22.5,0,0,-0.13605 -117872,7205:229:4,-59.5,22.5,0,0,-0.13605 -117873,7205:229:3,-59,22.5,0,0,-0.13605 -117874,7205:228:4,-58.5,22.5,0,0,-0.13605 -117875,7205:228:3,-58,22.5,0,0,-0.13605 -117876,7205:227:4,-57.5,22.5,0,0,-0.13605 -117877,7205:227:3,-57,22.5,0,0,-0.13605 -117878,7205:226:4,-56.5,22.5,0,0,-0.13605 -117879,7205:226:3,-56,22.5,0,0,-0.13605 -117880,7205:225:4,-55.5,22.5,0,0,-0.13605 -117881,7205:225:3,-55,22.5,0,0,-0.13605 -117882,7205:124:4,-54.5,22.5,0,0,-0.13605 -117883,7205:124:3,-54,22.5,0,0,-0.13605 -117884,7205:123:4,-53.5,22.5,0,0,-0.13605 -117885,7205:123:3,-53,22.5,0,0,-0.13605 -117886,7205:122:4,-52.5,22.5,0,0,-0.13605 -117887,7205:122:3,-52,22.5,0,0,-0.13605 -117888,7205:121:4,-51.5,22.5,0,0,-0.13605 -117889,7205:121:3,-51,22.5,0,0,-0.13605 -117890,7205:120:4,-50.5,22.5,0,0,-0.13605 -117891,7205:120:3,-50,22.5,0,0,-0.13605 -117892,7204:229:4,-49.5,22.5,0,0,-0.13605 -117893,7204:229:3,-49,22.5,0,0,-0.13605 -117894,7204:228:4,-48.5,22.5,0,0,-0.13605 -117895,7204:228:3,-48,22.5,0,0,-0.13605 -117896,7204:227:4,-47.5,22.5,0,0,-0.13605 -117897,7204:227:3,-47,22.5,0,0,-0.13605 -117898,7204:226:4,-46.5,22.5,0,0,-0.13605 -117899,7204:226:3,-46,22.5,0,0,-0.13605 -117900,7204:225:4,-45.5,22.5,0,0,-0.13605 -117901,7204:225:3,-45,22.5,0,0,-0.13605 -117902,7204:124:4,-44.5,22.5,0,0,-0.13605 -117903,7204:124:3,-44,22.5,0,0,-0.13605 -117904,7204:123:4,-43.5,22.5,0,0,-0.13605 -117905,7204:123:3,-43,22.5,0,0,-0.13605 -117906,7204:122:4,-42.5,22.5,0,0,-0.13605 -117907,7204:122:3,-42,22.5,0,0,-0.13605 -117908,7204:121:4,-41.5,22.5,0,0,-0.13605 -117909,7204:121:3,-41,22.5,0,0,-0.13605 -117910,7204:120:4,-40.5,22.5,0,0,-0.13605 -117911,7204:120:3,-40,22.5,0,0,-0.13605 -117912,7203:229:4,-39.5,22.5,0,0,-0.13605 -117913,7203:229:3,-39,22.5,0,0,-0.13605 -117914,7203:228:4,-38.5,22.5,0,0,-0.13605 -117915,7203:228:3,-38,22.5,0,0,-0.13605 -117916,7203:227:4,-37.5,22.5,0,0,-0.13605 -117917,7203:227:3,-37,22.5,0,0,-0.13605 -117918,7203:226:4,-36.5,22.5,0,0,-0.13605 -117919,7203:226:3,-36,22.5,0,0,-0.13605 -117920,7203:225:4,-35.5,22.5,0,0,-0.13605 -117921,7203:225:3,-35,22.5,0,0,-0.13605 -117922,7203:124:4,-34.5,22.5,0,0,-0.13605 -117923,7203:124:3,-34,22.5,0,0,-0.13605 -117924,7203:123:4,-33.5,22.5,0,0,-0.13605 -117925,7203:123:3,-33,22.5,0,0,-0.13605 -117926,7203:122:4,-32.5,22.5,0,0,-0.13605 -117927,7203:122:3,-32,22.5,0,0,-0.13605 -117928,7203:121:4,-31.5,22.5,0,0,-0.13605 -117929,7203:121:3,-31,22.5,0,0,-0.13605 -117930,7203:120:4,-30.5,22.5,0,0,-0.13605 -117931,7203:120:3,-30,22.5,0,0,-0.13605 -117932,7202:229:4,-29.5,22.5,0,0,-0.13605 -117933,7202:229:3,-29,22.5,0,0,-0.13605 -117934,7202:228:4,-28.5,22.5,0,0,-0.13605 -117935,7202:228:3,-28,22.5,0,0,-0.13605 -117936,7202:227:4,-27.5,22.5,0,0,-0.13605 -117937,7202:227:3,-27,22.5,0,0,-0.13605 -117938,7202:226:4,-26.5,22.5,0,0,-0.13605 -117939,7202:226:3,-26,22.5,0,0,-0.13605 -117940,7202:225:4,-25.5,22.5,0,0,-0.13605 -117941,7202:225:3,-25,22.5,0,0,-0.13605 -117942,7202:124:4,-24.5,22.5,0,0,-0.13605 -117943,7202:124:3,-24,22.5,0,0,-0.13605 -117944,7202:123:4,-23.5,22.5,0,0,-0.13605 -117945,7202:123:3,-23,22.5,0,0,-0.13605 -117946,7202:122:4,-22.5,22.5,0,0,-0.13605 -117947,7202:122:3,-22,22.5,0,0,-0.13605 -117948,7202:121:4,-21.5,22.5,0,0,-0.13605 -117949,7202:121:3,-21,22.5,0,0,-0.13605 -117950,7202:120:4,-20.5,22.5,0,0,-0.13605 -117951,7202:120:3,-20,22.5,0,0,-0.13605 -117952,7201:229:4,-19.5,22.5,0,0,-0.13605 -117953,7201:229:3,-19,22.5,0,0,-0.13605 -117954,7201:228:4,-18.5,22.5,0,0,-0.13605 -117955,7201:228:3,-18,22.5,0,0,-0.13605 -117956,7201:227:4,-17.5,22.5,0,0,-0.13605 -117957,7201:227:3,-17,22.5,0,0,-0.13605 -117958,7201:226:4,-16.5,22.5,0,0,-0.13605 -117959,7201:226:3,-16,22.5,0,0,-0.13605 -117960,7201:225:4,-15.5,22.5,0,0,-0.13605 -117961,7201:225:3,-15,22.5,0,0,-0.13605 -117962,7201:124:4,-14.5,22.5,0,0,-0.13605 -117963,7201:124:3,-14,22.5,0,0,-0.13605 -117964,7201:123:4,-13.5,22.5,0,0,-0.13605 -117965,7201:123:3,-13,22.5,0,0,-0.13605 -117966,7201:122:4,-12.5,22.5,0,0,-0.13605 -117967,7201:122:3,-12,22.5,0,0,-0.13605 -117968,7201:121:4,-11.5,22.5,0,0,-0.13605 -117969,7201:121:3,-11,22.5,0,0,-0.13605 -117970,7201:120:4,-10.5,22.5,0,0,-0.13605 -117971,7201:120:3,-10,22.5,0,0,-0.13605 -117972,7200:229:4,-9.5,22.5,0,0,-0.13605 -117973,7200:229:3,-9,22.5,0,0,-0.13605 -117974,7200:228:4,-8.5,22.5,0,0,-0.13605 -117975,7200:228:3,-8,22.5,0,0,-0.13605 -117976,7200:227:4,-7.5,22.5,0,0,-0.13605 -117977,7200:227:3,-7,22.5,0,0,-0.13605 -117978,7200:226:4,-6.5,22.5,0,0,-0.13605 -117979,7200:225:3,-5,22.5,0,0,-0.13605 -117980,7200:124:4,-4.5,22.5,0,0,-0.13605 -117981,7200:124:3,-4,22.5,0,0,-0.13605 -117982,7200:123:4,-3.5,22.5,0,0,-0.13605 -117983,7200:123:3,-3,22.5,0,0,-0.13605 -117984,7200:122:4,-2.5,22.5,0,0,-0.13605 -117985,7200:122:3,-2,22.5,0,0,-0.13605 -117986,1201:121:3,11,22.5,0,0,-0.13605 -117987,1201:121:4,11.5,22.5,0,0,-0.13605 -117988,1201:122:3,12,22.5,0,0,-0.13605 -117989,1201:122:4,12.5,22.5,0,0,-0.13605 -117990,1201:123:3,13,22.5,0,0,-0.13605 -117991,1201:123:4,13.5,22.5,0,0,-0.13605 -117992,1201:124:3,14,22.5,0,0,-0.13605 -117993,1201:124:4,14.5,22.5,0,0,-0.13605 -117994,1201:225:3,15,22.5,0,0,-0.13605 -117995,1201:225:4,15.5,22.5,0,0,-0.13605 -117996,1201:226:3,16,22.5,0,0,-0.13605 -117997,1201:226:4,16.5,22.5,0,0,-0.13605 -117998,1201:227:3,17,22.5,0,0,-0.13605 -117999,1201:227:4,17.5,22.5,0,0,-0.13605 -118000,1201:228:3,18,22.5,0,0,-0.13605 -118001,1201:228:4,18.5,22.5,0,0,-0.13605 -118002,1201:229:3,19,22.5,0,0,-0.13605 -118003,1201:229:4,19.5,22.5,0,0,-0.13605 -118004,1202:120:3,20,22.5,0,0,-0.13605 -118005,1202:120:4,20.5,22.5,0,0,-0.13605 -118006,1202:121:3,21,22.5,0,0,-0.13605 -118007,1202:121:4,21.5,22.5,0,0,-0.13605 -118008,1202:122:3,22,22.5,0,0,-0.13605 -118009,1202:122:4,22.5,22.5,0,0,-0.13605 -118010,1202:123:3,23,22.5,0,0,-0.13605 -118011,1202:123:4,23.5,22.5,0,0,-0.13605 -118012,1202:124:3,24,22.5,0,0,-0.13605 -118013,1202:225:3,25,22.5,0,0,-0.13605 -118014,1202:225:4,25.5,22.5,0,0,-0.13605 -118015,1202:226:3,26,22.5,0,0,-0.13605 -118016,1202:226:4,26.5,22.5,0,0,-0.13605 -118017,1202:227:3,27,22.5,0,0,-0.13605 -118018,1202:227:4,27.5,22.5,0,0,-0.13605 -118019,1202:228:3,28,22.5,0,0,-0.13605 -118020,1202:228:4,28.5,22.5,0,0,-0.13605 -118021,1202:229:3,29,22.5,0,0,-0.13605 -118022,1202:229:4,29.5,22.5,0,0,-0.13605 -118023,1203:120:3,30,22.5,0,0,-0.13605 -118024,1203:120:4,30.5,22.5,0,0,-0.13605 -118025,1203:121:3,31,22.5,0,0,-0.13605 -118026,1203:121:4,31.5,22.5,0,0,-0.13605 -118027,1203:123:4,33.5,22.5,0,0,-0.13605 -118028,1203:124:3,34,22.5,0,0,-0.13605 -118029,1203:124:4,34.5,22.5,0,0,-0.13605 -118030,1203:225:3,35,22.5,0,0,-0.13605 -118031,1203:225:4,35.5,22.5,0,0,-0.13605 -118032,1212:120:3,120,22.5,0,0,-0.13605 -118033,1212:120:4,120.5,22.5,0,0,-0.115741 -118034,1212:121:3,121,22.5,0,0,-0.117322 -118035,1212:121:4,121.5,22.5,0,0,-0.13605 -118036,1212:122:3,122,22.5,0,0,-0.13605 -118037,1212:122:4,122.5,22.5,0,0,-0.13605 -118038,1212:123:3,123,22.5,0,0,-0.13605 -118039,1212:123:4,123.5,22.5,0,0,-0.13605 -118040,1212:124:3,124,22.5,0,0,-0.13605 -118041,1212:124:4,124.5,22.5,0,0,-0.13605 -118042,1212:225:3,125,22.5,0,0,-0.13605 -118043,1212:225:4,125.5,22.5,0,0,-0.13605 -118044,1212:226:3,126,22.5,0,0,-0.13605 -118045,1212:226:4,126.5,22.5,0,0,-0.0998139 -118046,1212:229:4,129.5,22.5,0,0,-0.13605 -118047,1213:120:3,130,22.5,0,0,-0.13605 -118048,1213:120:4,130.5,22.5,0,0,-0.13605 -118049,1213:121:3,131,22.5,0,0,-0.13605 -118050,1213:121:4,131.5,22.5,0,0,-0.13605 -118051,1213:122:3,132,22.5,0,0,-0.13605 -118052,1213:122:4,132.5,22.5,0,0,-0.13605 -118053,1214:120:3,140,22.5,0,0,-0.13605 -118054,1214:121:3,141,22.5,0,0,-0.13605 -118055,1214:121:4,141.5,22.5,0,0,-0.13605 -118056,1214:122:3,142,22.5,0,0,-0.13605 -118057,1214:122:4,142.5,22.5,0,0,-0.13605 -118058,1214:123:3,143,22.5,0,0,-0.13605 -118059,1214:123:4,143.5,22.5,0,0,-0.13605 -118060,1214:124:3,144,22.5,0,0,-0.13605 -118061,1214:124:4,144.5,22.5,0,0,-0.13605 -118062,1214:225:3,145,22.5,0,0,-0.13605 -118063,1214:225:4,145.5,22.5,0,0,-0.13605 -118064,1214:226:3,146,22.5,0,0,-0.13605 -118065,1214:226:4,146.5,22.5,0,0,-0.13605 -118066,1214:227:3,147,22.5,0,0,-0.13605 -118067,1214:227:4,147.5,22.5,0,0,-0.13605 -118068,1214:228:3,148,22.5,0,0,-0.13605 -118069,1214:228:4,148.5,22.5,0,0,-0.13605 -118070,1214:229:3,149,22.5,0,0,-0.13605 -118071,1214:229:4,149.5,22.5,0,0,-0.13605 -118072,1215:120:3,150,22.5,0,0,-0.13605 -118073,1215:120:4,150.5,22.5,0,0,-0.13605 -118074,1215:121:3,151,22.5,0,0,-0.13605 -118075,1215:121:4,151.5,22.5,0,0,-0.13605 -118076,1215:122:3,152,22.5,0,0,-0.13605 -118077,1215:122:4,152.5,22.5,0,0,-0.13605 -118078,1215:123:3,153,22.5,0,0,-0.13605 -118079,1215:123:4,153.5,22.5,0,0,-0.13605 -118080,1215:124:3,154,22.5,0,0,-0.13605 -118081,1215:124:4,154.5,22.5,0,0,-0.13605 -118082,1215:225:3,155,22.5,0,0,-0.13605 -118083,1215:225:4,155.5,22.5,0,0,-0.13605 -118084,1215:226:3,156,22.5,0,0,-0.13605 -118085,1215:226:4,156.5,22.5,0,0,-0.13605 -118086,1215:227:3,157,22.5,0,0,-0.13605 -118087,1215:227:4,157.5,22.5,0,0,-0.13605 -118088,1215:228:3,158,22.5,0,0,-0.13605 -118089,1215:228:4,158.5,22.5,0,0,-0.13605 -118090,1215:229:3,159,22.5,0,0,-0.13605 -118091,1215:229:4,159.5,22.5,0,0,-0.13605 -118092,1216:120:3,160,22.5,0,0,-0.13605 -118093,1216:120:4,160.5,22.5,0,0,-0.13605 -118094,1216:121:3,161,22.5,0,0,-0.13605 -118095,1216:121:4,161.5,22.5,0,0,-0.13605 -118096,1216:122:3,162,22.5,0,0,-0.13605 -118097,1216:122:4,162.5,22.5,0,0,-0.13605 -118098,1216:123:3,163,22.5,0,0,-0.13605 -118099,1216:123:4,163.5,22.5,0,0,-0.13605 -118100,1216:124:3,164,22.5,0,0,-0.13605 -118101,1216:124:4,164.5,22.5,0,0,-0.13605 -118102,1216:225:3,165,22.5,0,0,-0.13605 -118103,1216:225:4,165.5,22.5,0,0,-0.13605 -118104,1216:226:3,166,22.5,0,0,-0.13605 -118105,1216:226:4,166.5,22.5,0,0,-0.13605 -118106,1216:227:3,167,22.5,0,0,-0.13605 -118107,1216:227:4,167.5,22.5,0,0,-0.13605 -118108,1216:228:3,168,22.5,0,0,-0.13605 -118109,1216:228:4,168.5,22.5,0,0,-0.13605 -118110,1216:229:3,169,22.5,0,0,-0.13605 -118111,1216:229:4,169.5,22.5,0,0,-0.13605 -118112,1217:120:3,170,22.5,0,0,-0.13605 -118113,1217:120:4,170.5,22.5,0,0,-0.13605 -118114,1217:121:3,171,22.5,0,0,-0.13605 -118115,1217:121:4,171.5,22.5,0,0,-0.13605 -118116,1217:122:3,172,22.5,0,0,-0.13605 -118117,1217:122:4,172.5,22.5,0,0,-0.13605 -118118,1217:123:3,173,22.5,0,0,-0.13605 -118119,1217:123:4,173.5,22.5,0,0,-0.13605 -118120,1217:124:3,174,22.5,0,0,-0.13605 -118121,1217:124:4,174.5,22.5,0,0,-0.13605 -118122,1217:225:3,175,22.5,0,0,-0.13605 -118123,1217:225:4,175.5,22.5,0,0,-0.13605 -118124,1217:226:3,176,22.5,0,0,-0.13605 -118125,1217:226:4,176.5,22.5,0,0,-0.13605 -118126,1217:227:3,177,22.5,0,0,-0.13605 -118127,1217:227:4,177.5,22.5,0,0,-0.13605 -118128,1217:228:3,178,22.5,0,0,-0.13605 -118129,1217:228:4,178.5,22.5,0,0,-0.13605 -118130,1217:229:3,179,22.5,0,0,-0.13605 -118131,1217:229:4,179.5,22.5,0,0,-0.13605 -118132,1218:120:3,180,22.5,0,0,-0.13605 -118133,7218:130:1,-180,23,0,0,-0.13605 -118134,7217:239:2,-179.5,23,0,0,-0.13605 -118135,7217:239:1,-179,23,0,0,-0.13605 -118136,7217:238:2,-178.5,23,0,0,-0.13605 -118137,7217:238:1,-178,23,0,0,-0.13605 -118138,7217:237:2,-177.5,23,0,0,-0.13605 -118139,7217:237:1,-177,23,0,0,-0.13605 -118140,7217:236:2,-176.5,23,0,0,-0.13605 -118141,7217:236:1,-176,23,0,0,-0.13605 -118142,7217:235:2,-175.5,23,0,0,-0.13605 -118143,7217:235:1,-175,23,0,0,-0.13605 -118144,7217:134:2,-174.5,23,0,0,-0.13605 -118145,7217:134:1,-174,23,0,0,-0.13605 -118146,7217:133:2,-173.5,23,0,0,-0.13605 -118147,7217:133:1,-173,23,0,0,-0.13605 -118148,7217:132:2,-172.5,23,0,0,-0.13605 -118149,7217:132:1,-172,23,0,0,-0.13605 -118150,7217:131:2,-171.5,23,0,0,-0.13605 -118151,7217:131:1,-171,23,0,0,-0.13605 -118152,7217:130:2,-170.5,23,0,0,-0.13605 -118153,7217:130:1,-170,23,0,0,-0.13605 -118154,7216:239:2,-169.5,23,0,0,-0.13605 -118155,7216:239:1,-169,23,0,0,-0.13605 -118156,7216:238:2,-168.5,23,0,0,-0.13605 -118157,7216:238:1,-168,23,0,0,-0.13605 -118158,7216:237:2,-167.5,23,0,0,-0.13605 -118159,7216:237:1,-167,23,0,0,-0.13605 -118160,7216:236:2,-166.5,23,0,0,-0.13605 -118161,7216:236:1,-166,23,0,0,-0.13605 -118162,7216:235:2,-165.5,23,0,0,-0.13605 -118163,7216:235:1,-165,23,0,0,-0.13605 -118164,7216:134:2,-164.5,23,0,0,-0.13605 -118165,7216:134:1,-164,23,0,0,-0.13605 -118166,7216:133:2,-163.5,23,0,0,-0.13605 -118167,7216:133:1,-163,23,0,0,-0.13605 -118168,7216:132:2,-162.5,23,0,0,-0.13605 -118169,7216:132:1,-162,23,0,0,-0.13605 -118170,7216:131:2,-161.5,23,0,0,-0.13605 -118171,7216:131:1,-161,23,0,0,-0.13605 -118172,7216:130:2,-160.5,23,0,0,-0.13605 -118173,7216:130:1,-160,23,0,0,-0.13605 -118174,7215:239:2,-159.5,23,0,0,-0.13605 -118175,7215:239:1,-159,23,0,0,-0.13605 -118176,7215:238:2,-158.5,23,0,0,-0.13605 -118177,7215:238:1,-158,23,0,0,-0.13605 -118178,7215:237:2,-157.5,23,0,0,-0.13605 -118179,7215:237:1,-157,23,0,0,-0.13605 -118180,7215:236:2,-156.5,23,0,0,-0.13605 -118181,7215:236:1,-156,23,0,0,-0.13605 -118182,7215:235:2,-155.5,23,0,0,-0.13605 -118183,7215:235:1,-155,23,0,0,-0.13605 -118184,7215:134:2,-154.5,23,0,0,-0.13605 -118185,7215:134:1,-154,23,0,0,-0.13605 -118186,7215:133:2,-153.5,23,0,0,-0.13605 -118187,7215:133:1,-153,23,0,0,-0.13605 -118188,7215:132:2,-152.5,23,0,0,-0.13605 -118189,7215:132:1,-152,23,0,0,-0.13605 -118190,7215:131:2,-151.5,23,0,0,-0.13605 -118191,7215:131:1,-151,23,0,0,-0.13605 -118192,7215:130:2,-150.5,23,0,0,-0.13605 -118193,7215:130:1,-150,23,0,0,-0.13605 -118194,7214:239:2,-149.5,23,0,0,-0.13605 -118195,7214:239:1,-149,23,0,0,-0.13605 -118196,7214:238:2,-148.5,23,0,0,-0.13605 -118197,7214:238:1,-148,23,0,0,-0.13605 -118198,7214:237:2,-147.5,23,0,0,-0.13605 -118199,7214:237:1,-147,23,0,0,-0.13605 -118200,7214:236:2,-146.5,23,0,0,-0.13605 -118201,7214:236:1,-146,23,0,0,-0.13605 -118202,7214:235:2,-145.5,23,0,0,-0.13605 -118203,7214:235:1,-145,23,0,0,-0.13605 -118204,7214:134:2,-144.5,23,0,0,-0.13605 -118205,7214:134:1,-144,23,0,0,-0.13605 -118206,7214:133:2,-143.5,23,0,0,-0.13605 -118207,7214:133:1,-143,23,0,0,-0.13605 -118208,7214:132:2,-142.5,23,0,0,-0.13605 -118209,7214:132:1,-142,23,0,0,-0.13605 -118210,7214:131:2,-141.5,23,0,0,-0.13605 -118211,7214:131:1,-141,23,0,0,-0.13605 -118212,7214:130:2,-140.5,23,0,0,-0.13605 -118213,7214:130:1,-140,23,0,0,-0.13605 -118214,7213:239:2,-139.5,23,0,0,-0.13605 -118215,7213:239:1,-139,23,0,0,-0.13605 -118216,7213:238:2,-138.5,23,0,0,-0.13605 -118217,7213:238:1,-138,23,0,0,-0.13605 -118218,7213:237:2,-137.5,23,0,0,-0.13605 -118219,7213:237:1,-137,23,0,0,-0.13605 -118220,7213:236:2,-136.5,23,0,0,-0.13605 -118221,7213:236:1,-136,23,0,0,-0.13605 -118222,7213:235:2,-135.5,23,0,0,-0.13605 -118223,7213:235:1,-135,23,0,0,-0.13605 -118224,7213:134:2,-134.5,23,0,0,-0.13605 -118225,7213:134:1,-134,23,0,0,-0.13605 -118226,7213:133:2,-133.5,23,0,0,-0.13605 -118227,7213:133:1,-133,23,0,0,-0.13605 -118228,7213:132:2,-132.5,23,0,0,-0.13605 -118229,7213:132:1,-132,23,0,0,-0.13605 -118230,7213:131:2,-131.5,23,0,0,-0.13605 -118231,7213:131:1,-131,23,0,0,-0.13605 -118232,7213:130:2,-130.5,23,0,0,-0.13605 -118233,7213:130:1,-130,23,0,0,-0.13605 -118234,7212:239:2,-129.5,23,0,0,-0.13605 -118235,7212:239:1,-129,23,0,0,-0.13605 -118236,7212:238:2,-128.5,23,0,0,-0.13605 -118237,7212:238:1,-128,23,0,0,-0.13605 -118238,7212:237:2,-127.5,23,0,0,-0.13605 -118239,7212:237:1,-127,23,0,0,-0.13605 -118240,7212:236:2,-126.5,23,0,0,-0.13605 -118241,7212:236:1,-126,23,0,0,-0.13605 -118242,7212:235:2,-125.5,23,0,0,-0.13605 -118243,7212:235:1,-125,23,0,0,-0.13605 -118244,7212:134:2,-124.5,23,0,0,-0.13605 -118245,7212:134:1,-124,23,0,0,-0.13605 -118246,7212:133:2,-123.5,23,0,0,-0.13605 -118247,7212:133:1,-123,23,0,0,-0.13605 -118248,7212:132:2,-122.5,23,0,0,-0.13605 -118249,7212:132:1,-122,23,0,0,-0.13605 -118250,7212:131:2,-121.5,23,0,0,-0.13605 -118251,7207:235:1,-75,23,0,0,-0.13605 -118252,7207:134:2,-74.5,23,0,0,-0.13605 -118253,7207:134:1,-74,23,0,0,-0.13605 -118254,7207:133:2,-73.5,23,0,0,-0.13605 -118255,7207:133:1,-73,23,0,0,-0.13605 -118256,7207:132:2,-72.5,23,0,0,-0.13605 -118257,7207:132:1,-72,23,0,0,-0.13605 -118258,7207:131:2,-71.5,23,0,0,-0.13605 -118259,7207:131:1,-71,23,0,0,-0.13605 -118260,7207:130:2,-70.5,23,0,0,-0.13605 -118261,7207:130:1,-70,23,0,0,-0.13605 -118262,7206:239:2,-69.5,23,0,0,-0.13605 -118263,7206:239:1,-69,23,0,0,-0.13605 -118264,7206:238:2,-68.5,23,0,0,-0.13605 -118265,7206:238:1,-68,23,0,0,-0.13605 -118266,7206:237:2,-67.5,23,0,0,-0.13605 -118267,7206:237:1,-67,23,0,0,-0.13605 -118268,7206:236:2,-66.5,23,0,0,-0.13605 -118269,7206:236:1,-66,23,0,0,-0.13605 -118270,7206:235:2,-65.5,23,0,0,-0.13605 -118271,7206:235:1,-65,23,0,0,-0.13605 -118272,7206:134:2,-64.5,23,0,0,-0.13605 -118273,7206:134:1,-64,23,0,0,-0.13605 -118274,7206:133:2,-63.5,23,0,0,-0.13605 -118275,7206:133:1,-63,23,0,0,-0.13605 -118276,7206:132:2,-62.5,23,0,0,-0.13605 -118277,7206:132:1,-62,23,0,0,-0.13605 -118278,7206:131:2,-61.5,23,0,0,-0.13605 -118279,7206:131:1,-61,23,0,0,-0.13605 -118280,7206:130:2,-60.5,23,0,0,-0.13605 -118281,7206:130:1,-60,23,0,0,-0.13605 -118282,7205:239:2,-59.5,23,0,0,-0.13605 -118283,7205:239:1,-59,23,0,0,-0.13605 -118284,7205:238:2,-58.5,23,0,0,-0.13605 -118285,7205:238:1,-58,23,0,0,-0.13605 -118286,7205:237:2,-57.5,23,0,0,-0.13605 -118287,7205:237:1,-57,23,0,0,-0.13605 -118288,7205:236:2,-56.5,23,0,0,-0.13605 -118289,7205:236:1,-56,23,0,0,-0.13605 -118290,7205:235:2,-55.5,23,0,0,-0.13605 -118291,7205:235:1,-55,23,0,0,-0.13605 -118292,7205:134:2,-54.5,23,0,0,-0.13605 -118293,7205:134:1,-54,23,0,0,-0.13605 -118294,7205:133:2,-53.5,23,0,0,-0.13605 -118295,7205:133:1,-53,23,0,0,-0.13605 -118296,7205:132:2,-52.5,23,0,0,-0.13605 -118297,7205:132:1,-52,23,0,0,-0.13605 -118298,7205:131:2,-51.5,23,0,0,-0.13605 -118299,7205:131:1,-51,23,0,0,-0.13605 -118300,7205:130:2,-50.5,23,0,0,-0.13605 -118301,7205:130:1,-50,23,0,0,-0.13605 -118302,7204:239:2,-49.5,23,0,0,-0.13605 -118303,7204:239:1,-49,23,0,0,-0.13605 -118304,7204:238:2,-48.5,23,0,0,-0.13605 -118305,7204:238:1,-48,23,0,0,-0.13605 -118306,7204:237:2,-47.5,23,0,0,-0.13605 -118307,7204:237:1,-47,23,0,0,-0.13605 -118308,7204:236:2,-46.5,23,0,0,-0.13605 -118309,7204:236:1,-46,23,0,0,-0.13605 -118310,7204:235:2,-45.5,23,0,0,-0.13605 -118311,7204:235:1,-45,23,0,0,-0.13605 -118312,7204:134:2,-44.5,23,0,0,-0.13605 -118313,7204:134:1,-44,23,0,0,-0.13605 -118314,7204:133:2,-43.5,23,0,0,-0.13605 -118315,7204:133:1,-43,23,0,0,-0.13605 -118316,7204:132:2,-42.5,23,0,0,-0.13605 -118317,7204:132:1,-42,23,0,0,-0.13605 -118318,7204:131:2,-41.5,23,0,0,-0.13605 -118319,7204:131:1,-41,23,0,0,-0.13605 -118320,7204:130:2,-40.5,23,0,0,-0.13605 -118321,7204:130:1,-40,23,0,0,-0.13605 -118322,7203:239:2,-39.5,23,0,0,-0.13605 -118323,7203:239:1,-39,23,0,0,-0.13605 -118324,7203:238:2,-38.5,23,0,0,-0.13605 -118325,7203:238:1,-38,23,0,0,-0.13605 -118326,7203:237:2,-37.5,23,0,0,-0.13605 -118327,7203:237:1,-37,23,0,0,-0.13605 -118328,7203:236:2,-36.5,23,0,0,-0.13605 -118329,7203:236:1,-36,23,0,0,-0.13605 -118330,7203:235:2,-35.5,23,0,0,-0.13605 -118331,7203:235:1,-35,23,0,0,-0.13605 -118332,7203:134:2,-34.5,23,0,0,-0.13605 -118333,7203:134:1,-34,23,0,0,-0.13605 -118334,7203:133:2,-33.5,23,0,0,-0.13605 -118335,7203:133:1,-33,23,0,0,-0.13605 -118336,7203:132:2,-32.5,23,0,0,-0.13605 -118337,7203:132:1,-32,23,0,0,-0.13605 -118338,7203:131:2,-31.5,23,0,0,-0.13605 -118339,7203:131:1,-31,23,0,0,-0.13605 -118340,7203:130:2,-30.5,23,0,0,-0.13605 -118341,7203:130:1,-30,23,0,0,-0.13605 -118342,7202:239:2,-29.5,23,0,0,-0.13605 -118343,7202:239:1,-29,23,0,0,-0.13605 -118344,7202:238:2,-28.5,23,0,0,-0.13605 -118345,7202:238:1,-28,23,0,0,-0.13605 -118346,7202:237:2,-27.5,23,0,0,-0.13605 -118347,7202:237:1,-27,23,0,0,-0.13605 -118348,7202:236:2,-26.5,23,0,0,-0.13605 -118349,7202:236:1,-26,23,0,0,-0.13605 -118350,7202:235:2,-25.5,23,0,0,-0.13605 -118351,7202:235:1,-25,23,0,0,-0.13605 -118352,7202:134:2,-24.5,23,0,0,-0.13605 -118353,7202:134:1,-24,23,0,0,-0.13605 -118354,7202:133:2,-23.5,23,0,0,-0.13605 -118355,7202:133:1,-23,23,0,0,-0.13605 -118356,7202:132:2,-22.5,23,0,0,-0.13605 -118357,7202:132:1,-22,23,0,0,-0.13605 -118358,7202:131:2,-21.5,23,0,0,-0.13605 -118359,7202:131:1,-21,23,0,0,-0.13605 -118360,7202:130:2,-20.5,23,0,0,-0.13605 -118361,7202:130:1,-20,23,0,0,-0.13605 -118362,7201:239:2,-19.5,23,0,0,-0.13605 -118363,7201:239:1,-19,23,0,0,-0.13605 -118364,7201:238:2,-18.5,23,0,0,-0.13605 -118365,7201:238:1,-18,23,0,0,-0.13605 -118366,7201:237:2,-17.5,23,0,0,-0.13605 -118367,7201:237:1,-17,23,0,0,-0.13605 -118368,7201:236:2,-16.5,23,0,0,-0.13605 -118369,7201:236:1,-16,23,0,0,-0.13605 -118370,7201:235:2,-15.5,23,0,0,-0.13605 -118371,7201:235:1,-15,23,0,0,-0.13605 -118372,7201:134:2,-14.5,23,0,0,-0.13605 -118373,7201:134:1,-14,23,0,0,-0.13605 -118374,7201:133:2,-13.5,23,0,0,-0.13605 -118375,7201:133:1,-13,23,0,0,-0.13605 -118376,7201:132:2,-12.5,23,0,0,-0.13605 -118377,7201:132:1,-12,23,0,0,-0.13605 -118378,7201:131:2,-11.5,23,0,0,-0.13605 -118379,7201:131:1,-11,23,0,0,-0.13605 -118380,7201:130:2,-10.5,23,0,0,-0.13605 -118381,7201:130:1,-10,23,0,0,-0.13605 -118382,7200:239:2,-9.5,23,0,0,-0.13605 -118383,7200:239:1,-9,23,0,0,-0.13605 -118384,7200:238:2,-8.5,23,0,0,-0.13605 -118385,7200:238:1,-8,23,0,0,-0.13605 -118386,7200:237:2,-7.5,23,0,0,-0.13605 -118387,7200:237:1,-7,23,0,0,-0.13605 -118388,7200:236:2,-6.5,23,0,0,-0.13605 -118389,7200:236:1,-6,23,0,0,-0.13605 -118390,7200:235:2,-5.5,23,0,0,-0.13605 -118391,7200:235:1,-5,23,0,0,-0.13605 -118392,7200:134:2,-4.5,23,0,0,-0.13605 -118393,7200:134:1,-4,23,0,0,-0.13605 -118394,7200:133:2,-3.5,23,0,0,-0.13605 -118395,7200:133:1,-3,23,0,0,-0.13605 -118396,7200:132:2,-2.5,23,0,0,-0.13605 -118397,7200:132:1,-2,23,0,0,-0.13605 -118398,7200:131:2,-1.5,23,0,0,-0.13605 -118399,7200:131:1,-1,23,0,0,-0.13605 -118400,7200:130:2,-0.5,23,0,0,-0.13605 -118401,1201:130:2,10.5,23,0,0,-0.13605 -118402,1201:131:1,11,23,0,0,-0.13605 -118403,1201:131:2,11.5,23,0,0,-0.13605 -118404,1201:132:1,12,23,0,0,-0.13605 -118405,1201:132:2,12.5,23,0,0,-0.13605 -118406,1201:133:1,13,23,0,0,-0.13605 -118407,1201:133:2,13.5,23,0,0,-0.13605 -118408,1201:134:1,14,23,0,0,-0.13605 -118409,1201:134:2,14.5,23,0,0,-0.13605 -118410,1201:235:1,15,23,0,0,-0.13605 -118411,1201:235:2,15.5,23,0,0,-0.13605 -118412,1201:236:1,16,23,0,0,-0.13605 -118413,1201:236:2,16.5,23,0,0,-0.13605 -118414,1201:237:1,17,23,0,0,-0.13605 -118415,1201:237:2,17.5,23,0,0,-0.13605 -118416,1201:238:1,18,23,0,0,-0.13605 -118417,1201:238:2,18.5,23,0,0,-0.13605 -118418,1201:239:1,19,23,0,0,-0.13605 -118419,1201:239:2,19.5,23,0,0,-0.13605 -118420,1202:130:1,20,23,0,0,-0.13605 -118421,1202:130:2,20.5,23,0,0,-0.13605 -118422,1202:131:1,21,23,0,0,-0.13605 -118423,1202:131:2,21.5,23,0,0,-0.13605 -118424,1202:132:1,22,23,0,0,-0.13605 -118425,1202:132:2,22.5,23,0,0,-0.13605 -118426,1202:133:1,23,23,0,0,-0.13605 -118427,1202:133:2,23.5,23,0,0,-0.13605 -118428,1202:134:1,24,23,0,0,-0.13605 -118429,1202:134:2,24.5,23,0,0,-0.13605 -118430,1202:235:1,25,23,0,0,-0.13605 -118431,1202:235:2,25.5,23,0,0,-0.13605 -118432,1202:236:1,26,23,0,0,-0.13605 -118433,1202:236:2,26.5,23,0,0,-0.13605 -118434,1202:237:1,27,23,0,0,-0.13605 -118435,1202:237:2,27.5,23,0,0,-0.13605 -118436,1202:238:1,28,23,0,0,-0.13605 -118437,1202:238:2,28.5,23,0,0,-0.13605 -118438,1202:239:1,29,23,0,0,-0.13605 -118439,1202:239:2,29.5,23,0,0,-0.13605 -118440,1203:130:1,30,23,0,0,-0.13605 -118441,1203:130:2,30.5,23,0,0,-0.13605 -118442,1203:131:1,31,23,0,0,-0.13605 -118443,1203:131:2,31.5,23,0,0,-0.13605 -118444,1203:132:1,32,23,0,0,-0.13605 -118445,1203:132:2,32.5,23,0,0,-0.13605 -118446,1203:133:1,33,23,0,0,-0.13605 -118447,1203:134:1,34,23,0,0,-0.13605 -118448,1203:134:2,34.5,23,0,0,-0.13605 -118449,1203:235:1,35,23,0,0,-0.13605 -118450,1203:235:2,35.5,23,0,0,-0.13605 -118451,1212:130:1,120,23,0,0,-0.13605 -118452,1212:130:2,120.5,23,0,0,-0.125065 -118453,1212:131:1,121,23,0,0,-0.0810431 -118454,1212:131:2,121.5,23,0,0,-0.109702 -118455,1212:132:1,122,23,0,0,-0.13605 -118456,1212:132:2,122.5,23,0,0,-0.13605 -118457,1212:133:1,123,23,0,0,-0.13605 -118458,1212:133:2,123.5,23,0,0,-0.13605 -118459,1212:134:1,124,23,0,0,-0.13605 -118460,1212:134:2,124.5,23,0,0,-0.13605 -118461,1212:235:1,125,23,0,0,-0.13605 -118462,1212:235:2,125.5,23,0,0,-0.13605 -118463,1212:236:1,126,23,0,0,-0.13605 -118464,1212:236:2,126.5,23,0,0,-0.131327 -118465,1213:130:1,130,23,0,0,-0.13605 -118466,1213:130:2,130.5,23,0,0,-0.13605 -118467,1213:131:1,131,23,0,0,-0.13605 -118468,1213:131:2,131.5,23,0,0,-0.13605 -118469,1213:132:1,132,23,0,0,-0.13605 -118470,1213:132:2,132.5,23,0,0,-0.13605 -118471,1213:133:1,133,23,0,0,-0.13605 -118472,1213:133:2,133.5,23,0,0,-0.13605 -118473,1213:134:1,134,23,0,0,-0.13605 -118474,1213:134:2,134.5,23,0,0,-0.13605 -118475,1213:235:1,135,23,0,0,-0.13605 -118476,1213:235:2,135.5,23,0,0,-0.13605 -118477,1213:236:1,136,23,0,0,-0.13605 -118478,1214:131:2,141.5,23,0,0,-0.13605 -118479,1214:132:1,142,23,0,0,-0.13605 -118480,1214:132:2,142.5,23,0,0,-0.13605 -118481,1214:133:1,143,23,0,0,-0.13605 -118482,1214:133:2,143.5,23,0,0,-0.13605 -118483,1214:134:1,144,23,0,0,-0.13605 -118484,1214:134:2,144.5,23,0,0,-0.13605 -118485,1214:235:1,145,23,0,0,-0.13605 -118486,1214:235:2,145.5,23,0,0,-0.13605 -118487,1214:236:1,146,23,0,0,-0.13605 -118488,1214:236:2,146.5,23,0,0,-0.13605 -118489,1214:237:1,147,23,0,0,-0.13605 -118490,1214:237:2,147.5,23,0,0,-0.13605 -118491,1214:238:1,148,23,0,0,-0.13605 -118492,1214:238:2,148.5,23,0,0,-0.13605 -118493,1214:239:1,149,23,0,0,-0.13605 -118494,1214:239:2,149.5,23,0,0,-0.13605 -118495,1215:130:1,150,23,0,0,-0.13605 -118496,1215:130:2,150.5,23,0,0,-0.13605 -118497,1215:131:1,151,23,0,0,-0.13605 -118498,1215:131:2,151.5,23,0,0,-0.13605 -118499,1215:132:1,152,23,0,0,-0.13605 -118500,1215:132:2,152.5,23,0,0,-0.13605 -118501,1215:133:1,153,23,0,0,-0.13605 -118502,1215:133:2,153.5,23,0,0,-0.13605 -118503,1215:134:1,154,23,0,0,-0.13605 -118504,1215:134:2,154.5,23,0,0,-0.13605 -118505,1215:235:1,155,23,0,0,-0.13605 -118506,1215:235:2,155.5,23,0,0,-0.13605 -118507,1215:236:1,156,23,0,0,-0.13605 -118508,1215:236:2,156.5,23,0,0,-0.13605 -118509,1215:237:1,157,23,0,0,-0.13605 -118510,1215:237:2,157.5,23,0,0,-0.13605 -118511,1215:238:1,158,23,0,0,-0.13605 -118512,1215:238:2,158.5,23,0,0,-0.13605 -118513,1215:239:1,159,23,0,0,-0.13605 -118514,1215:239:2,159.5,23,0,0,-0.13605 -118515,1216:130:1,160,23,0,0,-0.13605 -118516,1216:130:2,160.5,23,0,0,-0.13605 -118517,1216:131:1,161,23,0,0,-0.13605 -118518,1216:131:2,161.5,23,0,0,-0.13605 -118519,1216:132:1,162,23,0,0,-0.13605 -118520,1216:132:2,162.5,23,0,0,-0.13605 -118521,1216:133:1,163,23,0,0,-0.13605 -118522,1216:133:2,163.5,23,0,0,-0.13605 -118523,1216:134:1,164,23,0,0,-0.13605 -118524,1216:134:2,164.5,23,0,0,-0.13605 -118525,1216:235:1,165,23,0,0,-0.13605 -118526,1216:235:2,165.5,23,0,0,-0.13605 -118527,1216:236:1,166,23,0,0,-0.13605 -118528,1216:236:2,166.5,23,0,0,-0.13605 -118529,1216:237:1,167,23,0,0,-0.13605 -118530,1216:237:2,167.5,23,0,0,-0.13605 -118531,1216:238:1,168,23,0,0,-0.13605 -118532,1216:238:2,168.5,23,0,0,-0.13605 -118533,1216:239:1,169,23,0,0,-0.13605 -118534,1216:239:2,169.5,23,0,0,-0.13605 -118535,1217:130:1,170,23,0,0,-0.13605 -118536,1217:130:2,170.5,23,0,0,-0.13605 -118537,1217:131:1,171,23,0,0,-0.13605 -118538,1217:131:2,171.5,23,0,0,-0.13605 -118539,1217:132:1,172,23,0,0,-0.13605 -118540,1217:132:2,172.5,23,0,0,-0.13605 -118541,1217:133:1,173,23,0,0,-0.13605 -118542,1217:133:2,173.5,23,0,0,-0.13605 -118543,1217:134:1,174,23,0,0,-0.13605 -118544,1217:134:2,174.5,23,0,0,-0.13605 -118545,1217:235:1,175,23,0,0,-0.13605 -118546,1217:235:2,175.5,23,0,0,-0.13605 -118547,1217:236:1,176,23,0,0,-0.13605 -118548,1217:236:2,176.5,23,0,0,-0.13605 -118549,1217:237:1,177,23,0,0,-0.13605 -118550,1217:237:2,177.5,23,0,0,-0.13605 -118551,1217:238:1,178,23,0,0,-0.13605 -118552,1217:238:2,178.5,23,0,0,-0.13605 -118553,1217:239:1,179,23,0,0,-0.13605 -118554,1217:239:2,179.5,23,0,0,-0.13605 -118555,1218:130:1,180,23,0,0,-0.13605 -118556,7218:130:3,-180,23.5,0,0,-0.13605 -118557,7217:239:4,-179.5,23.5,0,0,-0.13605 -118558,7217:239:3,-179,23.5,0,0,-0.13605 -118559,7217:238:4,-178.5,23.5,0,0,-0.13605 -118560,7217:238:3,-178,23.5,0,0,-0.13605 -118561,7217:237:4,-177.5,23.5,0,0,-0.13605 -118562,7217:237:3,-177,23.5,0,0,-0.13605 -118563,7217:236:4,-176.5,23.5,0,0,-0.13605 -118564,7217:236:3,-176,23.5,0,0,-0.13605 -118565,7217:235:4,-175.5,23.5,0,0,-0.13605 -118566,7217:235:3,-175,23.5,0,0,-0.13605 -118567,7217:134:4,-174.5,23.5,0,0,-0.13605 -118568,7217:134:3,-174,23.5,0,0,-0.13605 -118569,7217:133:4,-173.5,23.5,0,0,-0.13605 -118570,7217:133:3,-173,23.5,0,0,-0.13605 -118571,7217:132:4,-172.5,23.5,0,0,-0.13605 -118572,7217:132:3,-172,23.5,0,0,-0.13605 -118573,7217:131:4,-171.5,23.5,0,0,-0.13605 -118574,7217:131:3,-171,23.5,0,0,-0.13605 -118575,7217:130:4,-170.5,23.5,0,0,-0.13605 -118576,7217:130:3,-170,23.5,0,0,-0.13605 -118577,7216:239:4,-169.5,23.5,0,0,-0.13605 -118578,7216:239:3,-169,23.5,0,0,-0.13605 -118579,7216:238:4,-168.5,23.5,0,0,-0.13605 -118580,7216:238:3,-168,23.5,0,0,-0.13605 -118581,7216:237:4,-167.5,23.5,0,0,-0.13605 -118582,7216:237:3,-167,23.5,0,0,-0.13605 -118583,7216:236:4,-166.5,23.5,0,0,-0.13605 -118584,7216:236:3,-166,23.5,0,0,-0.13605 -118585,7216:235:4,-165.5,23.5,0,0,-0.13605 -118586,7216:235:3,-165,23.5,0,0,-0.13605 -118587,7216:134:4,-164.5,23.5,0,0,-0.13605 -118588,7216:134:3,-164,23.5,0,0,-0.13605 -118589,7216:133:4,-163.5,23.5,0,0,-0.13605 -118590,7216:133:3,-163,23.5,0,0,-0.13605 -118591,7216:132:4,-162.5,23.5,0,0,-0.13605 -118592,7216:132:3,-162,23.5,0,0,-0.13605 -118593,7216:131:4,-161.5,23.5,0,0,-0.13605 -118594,7216:131:3,-161,23.5,0,0,-0.13605 -118595,7216:130:4,-160.5,23.5,0,0,-0.13605 -118596,7216:130:3,-160,23.5,0,0,-0.13605 -118597,7215:239:4,-159.5,23.5,0,0,-0.13605 -118598,7215:239:3,-159,23.5,0,0,-0.13605 -118599,7215:238:4,-158.5,23.5,0,0,-0.13605 -118600,7215:238:3,-158,23.5,0,0,-0.13605 -118601,7215:237:4,-157.5,23.5,0,0,-0.13605 -118602,7215:237:3,-157,23.5,0,0,-0.13605 -118603,7215:236:4,-156.5,23.5,0,0,-0.13605 -118604,7215:236:3,-156,23.5,0,0,-0.13605 -118605,7215:235:4,-155.5,23.5,0,0,-0.13605 -118606,7215:235:3,-155,23.5,0,0,-0.13605 -118607,7215:134:4,-154.5,23.5,0,0,-0.13605 -118608,7215:134:3,-154,23.5,0,0,-0.13605 -118609,7215:133:4,-153.5,23.5,0,0,-0.13605 -118610,7215:133:3,-153,23.5,0,0,-0.13605 -118611,7215:132:4,-152.5,23.5,0,0,-0.13605 -118612,7215:132:3,-152,23.5,0,0,-0.13605 -118613,7215:131:4,-151.5,23.5,0,0,-0.13605 -118614,7215:131:3,-151,23.5,0,0,-0.13605 -118615,7215:130:4,-150.5,23.5,0,0,-0.13605 -118616,7215:130:3,-150,23.5,0,0,-0.13605 -118617,7214:239:4,-149.5,23.5,0,0,-0.13605 -118618,7214:239:3,-149,23.5,0,0,-0.13605 -118619,7214:238:4,-148.5,23.5,0,0,-0.13605 -118620,7214:238:3,-148,23.5,0,0,-0.13605 -118621,7214:237:4,-147.5,23.5,0,0,-0.13605 -118622,7214:237:3,-147,23.5,0,0,-0.13605 -118623,7214:236:4,-146.5,23.5,0,0,-0.13605 -118624,7214:236:3,-146,23.5,0,0,-0.13605 -118625,7214:235:4,-145.5,23.5,0,0,-0.13605 -118626,7214:235:3,-145,23.5,0,0,-0.13605 -118627,7214:134:4,-144.5,23.5,0,0,-0.13605 -118628,7214:134:3,-144,23.5,0,0,-0.13605 -118629,7214:133:4,-143.5,23.5,0,0,-0.13605 -118630,7214:133:3,-143,23.5,0,0,-0.13605 -118631,7214:132:4,-142.5,23.5,0,0,-0.13605 -118632,7214:132:3,-142,23.5,0,0,-0.13605 -118633,7214:131:4,-141.5,23.5,0,0,-0.13605 -118634,7214:131:3,-141,23.5,0,0,-0.13605 -118635,7214:130:4,-140.5,23.5,0,0,-0.13605 -118636,7214:130:3,-140,23.5,0,0,-0.13605 -118637,7213:239:4,-139.5,23.5,0,0,-0.13605 -118638,7213:239:3,-139,23.5,0,0,-0.13605 -118639,7213:238:4,-138.5,23.5,0,0,-0.13605 -118640,7213:238:3,-138,23.5,0,0,-0.13605 -118641,7213:237:4,-137.5,23.5,0,0,-0.13605 -118642,7213:237:3,-137,23.5,0,0,-0.13605 -118643,7213:236:4,-136.5,23.5,0,0,-0.13605 -118644,7213:236:3,-136,23.5,0,0,-0.13605 -118645,7213:235:4,-135.5,23.5,0,0,-0.13605 -118646,7213:235:3,-135,23.5,0,0,-0.13605 -118647,7213:134:4,-134.5,23.5,0,0,-0.13605 -118648,7213:134:3,-134,23.5,0,0,-0.13605 -118649,7213:133:4,-133.5,23.5,0,0,-0.13605 -118650,7213:133:3,-133,23.5,0,0,-0.13605 -118651,7213:132:4,-132.5,23.5,0,0,-0.13605 -118652,7213:132:3,-132,23.5,0,0,-0.13605 -118653,7213:131:4,-131.5,23.5,0,0,-0.13605 -118654,7213:131:3,-131,23.5,0,0,-0.13605 -118655,7213:130:4,-130.5,23.5,0,0,-0.13605 -118656,7213:130:3,-130,23.5,0,0,-0.13605 -118657,7212:239:4,-129.5,23.5,0,0,-0.13605 -118658,7212:239:3,-129,23.5,0,0,-0.13605 -118659,7212:238:4,-128.5,23.5,0,0,-0.13605 -118660,7212:238:3,-128,23.5,0,0,-0.13605 -118661,7212:237:4,-127.5,23.5,0,0,-0.13605 -118662,7212:237:3,-127,23.5,0,0,-0.13605 -118663,7212:236:4,-126.5,23.5,0,0,-0.13605 -118664,7212:236:3,-126,23.5,0,0,-0.13605 -118665,7212:235:4,-125.5,23.5,0,0,-0.13605 -118666,7212:235:3,-125,23.5,0,0,-0.13605 -118667,7212:134:4,-124.5,23.5,0,0,-0.13605 -118668,7212:134:3,-124,23.5,0,0,-0.13605 -118669,7212:133:4,-123.5,23.5,0,0,-0.13605 -118670,7212:133:3,-123,23.5,0,0,-0.13605 -118671,7212:132:4,-122.5,23.5,0,0,-0.13605 -118672,7212:132:3,-122,23.5,0,0,-0.13605 -118673,7207:235:4,-75.5,23.5,0,0,-0.13605 -118674,7207:235:3,-75,23.5,0,0,-0.13605 -118675,7207:134:4,-74.5,23.5,0,0,-0.13605 -118676,7207:134:3,-74,23.5,0,0,-0.13605 -118677,7207:133:4,-73.5,23.5,0,0,-0.13605 -118678,7207:133:3,-73,23.5,0,0,-0.13605 -118679,7207:132:4,-72.5,23.5,0,0,-0.13605 -118680,7207:132:3,-72,23.5,0,0,-0.13605 -118681,7207:131:4,-71.5,23.5,0,0,-0.13605 -118682,7207:131:3,-71,23.5,0,0,-0.13605 -118683,7207:130:4,-70.5,23.5,0,0,-0.13605 -118684,7207:130:3,-70,23.5,0,0,-0.13605 -118685,7206:239:4,-69.5,23.5,0,0,-0.13605 -118686,7206:239:3,-69,23.5,0,0,-0.13605 -118687,7206:238:4,-68.5,23.5,0,0,-0.13605 -118688,7206:238:3,-68,23.5,0,0,-0.13605 -118689,7206:237:4,-67.5,23.5,0,0,-0.13605 -118690,7206:237:3,-67,23.5,0,0,-0.13605 -118691,7206:236:4,-66.5,23.5,0,0,-0.13605 -118692,7206:236:3,-66,23.5,0,0,-0.13605 -118693,7206:235:4,-65.5,23.5,0,0,-0.13605 -118694,7206:235:3,-65,23.5,0,0,-0.13605 -118695,7206:134:4,-64.5,23.5,0,0,-0.13605 -118696,7206:134:3,-64,23.5,0,0,-0.13605 -118697,7206:133:4,-63.5,23.5,0,0,-0.13605 -118698,7206:133:3,-63,23.5,0,0,-0.13605 -118699,7206:132:4,-62.5,23.5,0,0,-0.13605 -118700,7206:132:3,-62,23.5,0,0,-0.13605 -118701,7206:131:4,-61.5,23.5,0,0,-0.13605 -118702,7206:131:3,-61,23.5,0,0,-0.13605 -118703,7206:130:4,-60.5,23.5,0,0,-0.13605 -118704,7206:130:3,-60,23.5,0,0,-0.13605 -118705,7205:239:4,-59.5,23.5,0,0,-0.13605 -118706,7205:239:3,-59,23.5,0,0,-0.13605 -118707,7205:238:4,-58.5,23.5,0,0,-0.13605 -118708,7205:238:3,-58,23.5,0,0,-0.13605 -118709,7205:237:4,-57.5,23.5,0,0,-0.13605 -118710,7205:237:3,-57,23.5,0,0,-0.13605 -118711,7205:236:4,-56.5,23.5,0,0,-0.13605 -118712,7205:236:3,-56,23.5,0,0,-0.13605 -118713,7205:235:4,-55.5,23.5,0,0,-0.13605 -118714,7205:235:3,-55,23.5,0,0,-0.13605 -118715,7205:134:4,-54.5,23.5,0,0,-0.13605 -118716,7205:134:3,-54,23.5,0,0,-0.13605 -118717,7205:133:4,-53.5,23.5,0,0,-0.13605 -118718,7205:133:3,-53,23.5,0,0,-0.13605 -118719,7205:132:4,-52.5,23.5,0,0,-0.13605 -118720,7205:132:3,-52,23.5,0,0,-0.13605 -118721,7205:131:4,-51.5,23.5,0,0,-0.13605 -118722,7205:131:3,-51,23.5,0,0,-0.13605 -118723,7205:130:4,-50.5,23.5,0,0,-0.13605 -118724,7205:130:3,-50,23.5,0,0,-0.13605 -118725,7204:239:4,-49.5,23.5,0,0,-0.13605 -118726,7204:239:3,-49,23.5,0,0,-0.13605 -118727,7204:238:4,-48.5,23.5,0,0,-0.13605 -118728,7204:238:3,-48,23.5,0,0,-0.13605 -118729,7204:237:4,-47.5,23.5,0,0,-0.13605 -118730,7204:237:3,-47,23.5,0,0,-0.13605 -118731,7204:236:4,-46.5,23.5,0,0,-0.13605 -118732,7204:236:3,-46,23.5,0,0,-0.13605 -118733,7204:235:4,-45.5,23.5,0,0,-0.13605 -118734,7204:235:3,-45,23.5,0,0,-0.13605 -118735,7204:134:4,-44.5,23.5,0,0,-0.13605 -118736,7204:134:3,-44,23.5,0,0,-0.13605 -118737,7204:133:4,-43.5,23.5,0,0,-0.13605 -118738,7204:133:3,-43,23.5,0,0,-0.13605 -118739,7204:132:4,-42.5,23.5,0,0,-0.13605 -118740,7204:132:3,-42,23.5,0,0,-0.13605 -118741,7204:131:4,-41.5,23.5,0,0,-0.13605 -118742,7204:131:3,-41,23.5,0,0,-0.13605 -118743,7204:130:4,-40.5,23.5,0,0,-0.13605 -118744,7204:130:3,-40,23.5,0,0,-0.13605 -118745,7203:239:4,-39.5,23.5,0,0,-0.13605 -118746,7203:239:3,-39,23.5,0,0,-0.13605 -118747,7203:238:4,-38.5,23.5,0,0,-0.13605 -118748,7203:238:3,-38,23.5,0,0,-0.13605 -118749,7203:237:4,-37.5,23.5,0,0,-0.13605 -118750,7203:237:3,-37,23.5,0,0,-0.13605 -118751,7203:236:4,-36.5,23.5,0,0,-0.13605 -118752,7203:236:3,-36,23.5,0,0,-0.13605 -118753,7203:235:4,-35.5,23.5,0,0,-0.13605 -118754,7203:235:3,-35,23.5,0,0,-0.13605 -118755,7203:134:4,-34.5,23.5,0,0,-0.13605 -118756,7203:134:3,-34,23.5,0,0,-0.13605 -118757,7203:133:4,-33.5,23.5,0,0,-0.13605 -118758,7203:133:3,-33,23.5,0,0,-0.13605 -118759,7203:132:4,-32.5,23.5,0,0,-0.13605 -118760,7203:132:3,-32,23.5,0,0,-0.13605 -118761,7203:131:4,-31.5,23.5,0,0,-0.13605 -118762,7203:131:3,-31,23.5,0,0,-0.13605 -118763,7203:130:4,-30.5,23.5,0,0,-0.13605 -118764,7203:130:3,-30,23.5,0,0,-0.13605 -118765,7202:239:4,-29.5,23.5,0,0,-0.13605 -118766,7202:239:3,-29,23.5,0,0,-0.13605 -118767,7202:238:4,-28.5,23.5,0,0,-0.13605 -118768,7202:238:3,-28,23.5,0,0,-0.13605 -118769,7202:237:4,-27.5,23.5,0,0,-0.13605 -118770,7202:237:3,-27,23.5,0,0,-0.13605 -118771,7202:236:4,-26.5,23.5,0,0,-0.13605 -118772,7202:236:3,-26,23.5,0,0,-0.13605 -118773,7202:235:4,-25.5,23.5,0,0,-0.13605 -118774,7202:235:3,-25,23.5,0,0,-0.13605 -118775,7202:134:4,-24.5,23.5,0,0,-0.13605 -118776,7202:134:3,-24,23.5,0,0,-0.13605 -118777,7202:133:4,-23.5,23.5,0,0,-0.13605 -118778,7202:133:3,-23,23.5,0,0,-0.13605 -118779,7202:132:4,-22.5,23.5,0,0,-0.13605 -118780,7202:132:3,-22,23.5,0,0,-0.13605 -118781,7202:131:4,-21.5,23.5,0,0,-0.13605 -118782,7202:131:3,-21,23.5,0,0,-0.13605 -118783,7202:130:4,-20.5,23.5,0,0,-0.13605 -118784,7202:130:3,-20,23.5,0,0,-0.13605 -118785,7201:239:4,-19.5,23.5,0,0,-0.13605 -118786,7201:239:3,-19,23.5,0,0,-0.13605 -118787,7201:238:4,-18.5,23.5,0,0,-0.13605 -118788,7201:238:3,-18,23.5,0,0,-0.13605 -118789,7201:237:4,-17.5,23.5,0,0,-0.13605 -118790,7201:237:3,-17,23.5,0,0,-0.13605 -118791,7201:236:4,-16.5,23.5,0,0,-0.13605 -118792,7201:236:3,-16,23.5,0,0,-0.13605 -118793,7201:235:4,-15.5,23.5,0,0,-0.13605 -118794,7201:235:3,-15,23.5,0,0,-0.13605 -118795,7201:134:4,-14.5,23.5,0,0,-0.13605 -118796,7201:134:3,-14,23.5,0,0,-0.13605 -118797,7201:133:4,-13.5,23.5,0,0,-0.13605 -118798,7201:133:3,-13,23.5,0,0,-0.13605 -118799,7201:132:4,-12.5,23.5,0,0,-0.13605 -118800,7201:132:3,-12,23.5,0,0,-0.13605 -118801,7201:131:4,-11.5,23.5,0,0,-0.13605 -118802,7201:131:3,-11,23.5,0,0,-0.13605 -118803,7201:130:4,-10.5,23.5,0,0,-0.13605 -118804,7201:130:3,-10,23.5,0,0,-0.13605 -118805,7200:239:4,-9.5,23.5,0,0,-0.13605 -118806,7200:239:3,-9,23.5,0,0,-0.13605 -118807,7200:238:4,-8.5,23.5,0,0,-0.13605 -118808,7200:238:3,-8,23.5,0,0,-0.13605 -118809,7200:237:4,-7.5,23.5,0,0,-0.13605 -118810,7200:237:3,-7,23.5,0,0,-0.13605 -118811,7200:134:4,-4.5,23.5,0,0,-0.13605 -118812,7200:134:3,-4,23.5,0,0,-0.13605 -118813,7200:133:4,-3.5,23.5,0,0,-0.13605 -118814,7200:133:3,-3,23.5,0,0,-0.13605 -118815,7200:132:4,-2.5,23.5,0,0,-0.13605 -118816,7200:132:3,-2,23.5,0,0,-0.13605 -118817,7200:131:4,-1.5,23.5,0,0,-0.13605 -118818,7200:131:3,-1,23.5,0,0,-0.13605 -118819,7200:130:4,-0.5,23.5,0,0,-0.13605 -118820,1200:130:4,0,23.5,0,0,-0.13605 -118821,1200:130:4,0.5,23.5,0,0,-0.13605 -118822,1200:131:3,1,23.5,0,0,-0.13605 -118823,1201:130:4,10.5,23.5,0,0,-0.13605 -118824,1201:131:3,11,23.5,0,0,-0.13605 -118825,1201:131:4,11.5,23.5,0,0,-0.13605 -118826,1201:132:3,12,23.5,0,0,-0.13605 -118827,1201:132:4,12.5,23.5,0,0,-0.13605 -118828,1201:133:3,13,23.5,0,0,-0.13605 -118829,1201:133:4,13.5,23.5,0,0,-0.13605 -118830,1201:134:3,14,23.5,0,0,-0.13605 -118831,1201:134:4,14.5,23.5,0,0,-0.13605 -118832,1201:235:3,15,23.5,0,0,-0.13605 -118833,1201:235:4,15.5,23.5,0,0,-0.13605 -118834,1201:236:3,16,23.5,0,0,-0.13605 -118835,1201:236:4,16.5,23.5,0,0,-0.13605 -118836,1201:237:3,17,23.5,0,0,-0.13605 -118837,1201:237:4,17.5,23.5,0,0,-0.13605 -118838,1201:238:3,18,23.5,0,0,-0.13605 -118839,1201:238:4,18.5,23.5,0,0,-0.13605 -118840,1201:239:3,19,23.5,0,0,-0.13605 -118841,1201:239:4,19.5,23.5,0,0,-0.13605 -118842,1202:130:3,20,23.5,0,0,-0.13605 -118843,1202:130:4,20.5,23.5,0,0,-0.13605 -118844,1202:131:3,21,23.5,0,0,-0.13605 -118845,1202:131:4,21.5,23.5,0,0,-0.13605 -118846,1202:132:3,22,23.5,0,0,-0.13605 -118847,1202:132:4,22.5,23.5,0,0,-0.13605 -118848,1202:133:3,23,23.5,0,0,-0.13605 -118849,1202:133:4,23.5,23.5,0,0,-0.13605 -118850,1202:134:3,24,23.5,0,0,-0.13605 -118851,1202:134:4,24.5,23.5,0,0,-0.13605 -118852,1202:235:3,25,23.5,0,0,-0.13605 -118853,1202:235:4,25.5,23.5,0,0,-0.13605 -118854,1202:236:3,26,23.5,0,0,-0.13605 -118855,1202:236:4,26.5,23.5,0,0,-0.13605 -118856,1202:237:3,27,23.5,0,0,-0.13605 -118857,1202:238:3,28,23.5,0,0,-0.13605 -118858,1202:238:4,28.5,23.5,0,0,-0.13605 -118859,1202:239:3,29,23.5,0,0,-0.13605 -118860,1202:239:4,29.5,23.5,0,0,-0.13605 -118861,1203:130:3,30,23.5,0,0,-0.13605 -118862,1203:130:4,30.5,23.5,0,0,-0.13605 -118863,1203:131:3,31,23.5,0,0,-0.13605 -118864,1203:131:4,31.5,23.5,0,0,-0.13605 -118865,1203:132:3,32,23.5,0,0,-0.13605 -118866,1203:132:4,32.5,23.5,0,0,-0.13605 -118867,1203:133:3,33,23.5,0,0,-0.13605 -118868,1203:133:4,33.5,23.5,0,0,-0.13605 -118869,1203:134:3,34,23.5,0,0,-0.13605 -118870,1203:134:4,34.5,23.5,0,0,-0.13605 -118871,1203:235:3,35,23.5,0,0,-0.13605 -118872,1203:235:4,35.5,23.5,0,0,-0.13605 -118873,1212:130:4,120.5,23.5,0,0,-0.0820367 -118874,1212:131:3,121,23.5,0,0,-0.0798906 -118875,1212:131:4,121.5,23.5,0,0,-0.0705572 -118876,1212:132:3,122,23.5,0,0,-0.0974677 -118877,1212:132:4,122.5,23.5,0,0,-0.13605 -118878,1212:133:3,123,23.5,0,0,-0.13605 -118879,1212:133:4,123.5,23.5,0,0,-0.13605 -118880,1212:134:3,124,23.5,0,0,-0.13605 -118881,1212:134:4,124.5,23.5,0,0,-0.13605 -118882,1212:235:3,125,23.5,0,0,-0.13605 -118883,1212:235:4,125.5,23.5,0,0,-0.13605 -118884,1212:236:3,126,23.5,0,0,-0.13605 -118885,1212:236:4,126.5,23.5,0,0,-0.113371 -118886,1213:130:3,130,23.5,0,0,-0.13605 -118887,1213:130:4,130.5,23.5,0,0,-0.13605 -118888,1213:131:3,131,23.5,0,0,-0.13605 -118889,1213:131:4,131.5,23.5,0,0,-0.13605 -118890,1213:132:3,132,23.5,0,0,-0.13605 -118891,1213:132:4,132.5,23.5,0,0,-0.13605 -118892,1213:133:3,133,23.5,0,0,-0.13605 -118893,1213:133:4,133.5,23.5,0,0,-0.13605 -118894,1213:134:3,134,23.5,0,0,-0.13605 -118895,1213:134:4,134.5,23.5,0,0,-0.13605 -118896,1213:235:3,135,23.5,0,0,-0.13605 -118897,1213:235:4,135.5,23.5,0,0,-0.13605 -118898,1213:236:3,136,23.5,0,0,-0.13605 -118899,1213:236:4,136.5,23.5,0,0,-0.13605 -118900,1214:131:3,141,23.5,0,0,-0.13605 -118901,1214:131:4,141.5,23.5,0,0,-0.13605 -118902,1214:132:3,142,23.5,0,0,-0.13605 -118903,1214:132:4,142.5,23.5,0,0,-0.13605 -118904,1214:133:3,143,23.5,0,0,-0.13605 -118905,1214:133:4,143.5,23.5,0,0,-0.13605 -118906,1214:134:3,144,23.5,0,0,-0.13605 -118907,1214:134:4,144.5,23.5,0,0,-0.13605 -118908,1214:235:3,145,23.5,0,0,-0.13605 -118909,1214:235:4,145.5,23.5,0,0,-0.13605 -118910,1214:236:3,146,23.5,0,0,-0.13605 -118911,1214:236:4,146.5,23.5,0,0,-0.13605 -118912,1214:237:3,147,23.5,0,0,-0.13605 -118913,1214:237:4,147.5,23.5,0,0,-0.13605 -118914,1214:238:3,148,23.5,0,0,-0.13605 -118915,1214:238:4,148.5,23.5,0,0,-0.13605 -118916,1214:239:3,149,23.5,0,0,-0.13605 -118917,1214:239:4,149.5,23.5,0,0,-0.13605 -118918,1215:130:3,150,23.5,0,0,-0.13605 -118919,1215:130:4,150.5,23.5,0,0,-0.13605 -118920,1215:131:3,151,23.5,0,0,-0.13605 -118921,1215:131:4,151.5,23.5,0,0,-0.13605 -118922,1215:132:3,152,23.5,0,0,-0.13605 -118923,1215:132:4,152.5,23.5,0,0,-0.13605 -118924,1215:133:3,153,23.5,0,0,-0.13605 -118925,1215:133:4,153.5,23.5,0,0,-0.13605 -118926,1215:134:3,154,23.5,0,0,-0.13605 -118927,1215:134:4,154.5,23.5,0,0,-0.13605 -118928,1215:235:3,155,23.5,0,0,-0.13605 -118929,1215:235:4,155.5,23.5,0,0,-0.13605 -118930,1215:236:3,156,23.5,0,0,-0.13605 -118931,1215:236:4,156.5,23.5,0,0,-0.13605 -118932,1215:237:3,157,23.5,0,0,-0.13605 -118933,1215:237:4,157.5,23.5,0,0,-0.13605 -118934,1215:238:3,158,23.5,0,0,-0.13605 -118935,1215:238:4,158.5,23.5,0,0,-0.13605 -118936,1215:239:3,159,23.5,0,0,-0.13605 -118937,1215:239:4,159.5,23.5,0,0,-0.13605 -118938,1216:130:3,160,23.5,0,0,-0.13605 -118939,1216:130:4,160.5,23.5,0,0,-0.13605 -118940,1216:131:3,161,23.5,0,0,-0.13605 -118941,1216:131:4,161.5,23.5,0,0,-0.13605 -118942,1216:132:3,162,23.5,0,0,-0.13605 -118943,1216:132:4,162.5,23.5,0,0,-0.13605 -118944,1216:133:3,163,23.5,0,0,-0.13605 -118945,1216:133:4,163.5,23.5,0,0,-0.13605 -118946,1216:134:3,164,23.5,0,0,-0.13605 -118947,1216:134:4,164.5,23.5,0,0,-0.13605 -118948,1216:235:3,165,23.5,0,0,-0.13605 -118949,1216:235:4,165.5,23.5,0,0,-0.13605 -118950,1216:236:3,166,23.5,0,0,-0.13605 -118951,1216:236:4,166.5,23.5,0,0,-0.13605 -118952,1216:237:3,167,23.5,0,0,-0.13605 -118953,1216:237:4,167.5,23.5,0,0,-0.13605 -118954,1216:238:3,168,23.5,0,0,-0.13605 -118955,1216:238:4,168.5,23.5,0,0,-0.13605 -118956,1216:239:3,169,23.5,0,0,-0.13605 -118957,1216:239:4,169.5,23.5,0,0,-0.13605 -118958,1217:130:3,170,23.5,0,0,-0.13605 -118959,1217:130:4,170.5,23.5,0,0,-0.13605 -118960,1217:131:3,171,23.5,0,0,-0.13605 -118961,1217:131:4,171.5,23.5,0,0,-0.13605 -118962,1217:132:3,172,23.5,0,0,-0.13605 -118963,1217:132:4,172.5,23.5,0,0,-0.13605 -118964,1217:133:3,173,23.5,0,0,-0.13605 -118965,1217:133:4,173.5,23.5,0,0,-0.13605 -118966,1217:134:3,174,23.5,0,0,-0.13605 -118967,1217:134:4,174.5,23.5,0,0,-0.13605 -118968,1217:235:3,175,23.5,0,0,-0.13605 -118969,1217:235:4,175.5,23.5,0,0,-0.13605 -118970,1217:236:3,176,23.5,0,0,-0.13605 -118971,1217:236:4,176.5,23.5,0,0,-0.13605 -118972,1217:237:3,177,23.5,0,0,-0.13605 -118973,1217:237:4,177.5,23.5,0,0,-0.13605 -118974,1217:238:3,178,23.5,0,0,-0.13605 -118975,1217:238:4,178.5,23.5,0,0,-0.13605 -118976,1217:239:3,179,23.5,0,0,-0.13605 -118977,1217:239:4,179.5,23.5,0,0,-0.13605 -118978,1218:130:3,180,23.5,0,0,-0.13605 -118979,7218:140:1,-180,24,0,0,-0.13605 -118980,7217:249:2,-179.5,24,0,0,-0.13605 -118981,7217:249:1,-179,24,0,0,-0.13605 -118982,7217:248:2,-178.5,24,0,0,-0.13605 -118983,7217:248:1,-178,24,0,0,-0.13605 -118984,7217:247:2,-177.5,24,0,0,-0.13605 -118985,7217:247:1,-177,24,0,0,-0.13605 -118986,7217:246:2,-176.5,24,0,0,-0.13605 -118987,7217:246:1,-176,24,0,0,-0.13605 -118988,7217:245:2,-175.5,24,0,0,-0.13605 -118989,7217:245:1,-175,24,0,0,-0.13605 -118990,7217:144:2,-174.5,24,0,0,-0.13605 -118991,7217:144:1,-174,24,0,0,-0.13605 -118992,7217:143:2,-173.5,24,0,0,-0.13605 -118993,7217:143:1,-173,24,0,0,-0.13605 -118994,7217:142:2,-172.5,24,0,0,-0.13605 -118995,7217:142:1,-172,24,0,0,-0.13605 -118996,7217:141:2,-171.5,24,0,0,-0.13605 -118997,7217:141:1,-171,24,0,0,-0.13605 -118998,7217:140:2,-170.5,24,0,0,-0.13605 -118999,7217:140:1,-170,24,0,0,-0.13605 -119000,7216:249:2,-169.5,24,0,0,-0.13605 -119001,7216:249:1,-169,24,0,0,-0.13605 -119002,7216:248:2,-168.5,24,0,0,-0.13605 -119003,7216:248:1,-168,24,0,0,-0.13605 -119004,7216:247:2,-167.5,24,0,0,-0.13605 -119005,7216:247:1,-167,24,0,0,-0.13605 -119006,7216:246:2,-166.5,24,0,0,-0.13605 -119007,7216:246:1,-166,24,0,0,-0.13605 -119008,7216:245:2,-165.5,24,0,0,-0.13605 -119009,7216:245:1,-165,24,0,0,-0.13605 -119010,7216:144:2,-164.5,24,0,0,-0.13605 -119011,7216:144:1,-164,24,0,0,-0.13605 -119012,7216:143:2,-163.5,24,0,0,-0.13605 -119013,7216:143:1,-163,24,0,0,-0.13605 -119014,7216:142:2,-162.5,24,0,0,-0.13605 -119015,7216:142:1,-162,24,0,0,-0.13605 -119016,7216:141:2,-161.5,24,0,0,-0.13605 -119017,7216:141:1,-161,24,0,0,-0.13605 -119018,7216:140:2,-160.5,24,0,0,-0.13605 -119019,7216:140:1,-160,24,0,0,-0.13605 -119020,7215:249:2,-159.5,24,0,0,-0.13605 -119021,7215:249:1,-159,24,0,0,-0.13605 -119022,7215:248:2,-158.5,24,0,0,-0.13605 -119023,7215:248:1,-158,24,0,0,-0.13605 -119024,7215:247:2,-157.5,24,0,0,-0.13605 -119025,7215:247:1,-157,24,0,0,-0.13605 -119026,7215:246:2,-156.5,24,0,0,-0.13605 -119027,7215:246:1,-156,24,0,0,-0.13605 -119028,7215:245:2,-155.5,24,0,0,-0.13605 -119029,7215:245:1,-155,24,0,0,-0.13605 -119030,7215:144:2,-154.5,24,0,0,-0.13605 -119031,7215:144:1,-154,24,0,0,-0.13605 -119032,7215:143:2,-153.5,24,0,0,-0.13605 -119033,7215:143:1,-153,24,0,0,-0.13605 -119034,7215:142:2,-152.5,24,0,0,-0.13605 -119035,7215:142:1,-152,24,0,0,-0.13605 -119036,7215:141:2,-151.5,24,0,0,-0.13605 -119037,7215:141:1,-151,24,0,0,-0.13605 -119038,7215:140:2,-150.5,24,0,0,-0.13605 -119039,7215:140:1,-150,24,0,0,-0.13605 -119040,7214:249:2,-149.5,24,0,0,-0.13605 -119041,7214:249:1,-149,24,0,0,-0.13605 -119042,7214:248:2,-148.5,24,0,0,-0.13605 -119043,7214:248:1,-148,24,0,0,-0.13605 -119044,7214:247:2,-147.5,24,0,0,-0.13605 -119045,7214:247:1,-147,24,0,0,-0.13605 -119046,7214:246:2,-146.5,24,0,0,-0.13605 -119047,7214:246:1,-146,24,0,0,-0.13605 -119048,7214:245:2,-145.5,24,0,0,-0.13605 -119049,7214:245:1,-145,24,0,0,-0.13605 -119050,7214:144:2,-144.5,24,0,0,-0.13605 -119051,7214:144:1,-144,24,0,0,-0.13605 -119052,7214:143:2,-143.5,24,0,0,-0.13605 -119053,7214:143:1,-143,24,0,0,-0.13605 -119054,7214:142:2,-142.5,24,0,0,-0.13605 -119055,7214:142:1,-142,24,0,0,-0.13605 -119056,7214:141:2,-141.5,24,0,0,-0.13605 -119057,7214:141:1,-141,24,0,0,-0.13605 -119058,7214:140:2,-140.5,24,0,0,-0.13605 -119059,7214:140:1,-140,24,0,0,-0.13605 -119060,7213:249:2,-139.5,24,0,0,-0.13605 -119061,7213:249:1,-139,24,0,0,-0.13605 -119062,7213:248:2,-138.5,24,0,0,-0.13605 -119063,7213:248:1,-138,24,0,0,-0.13605 -119064,7213:247:2,-137.5,24,0,0,-0.13605 -119065,7213:247:1,-137,24,0,0,-0.13605 -119066,7213:246:2,-136.5,24,0,0,-0.13605 -119067,7213:246:1,-136,24,0,0,-0.13605 -119068,7213:245:2,-135.5,24,0,0,-0.13605 -119069,7213:245:1,-135,24,0,0,-0.13605 -119070,7213:144:2,-134.5,24,0,0,-0.13605 -119071,7213:144:1,-134,24,0,0,-0.13605 -119072,7213:143:2,-133.5,24,0,0,-0.13605 -119073,7213:143:1,-133,24,0,0,-0.13605 -119074,7213:142:2,-132.5,24,0,0,-0.13605 -119075,7213:142:1,-132,24,0,0,-0.13605 -119076,7213:141:2,-131.5,24,0,0,-0.13605 -119077,7213:141:1,-131,24,0,0,-0.13605 -119078,7213:140:2,-130.5,24,0,0,-0.13605 -119079,7213:140:1,-130,24,0,0,-0.13605 -119080,7212:249:2,-129.5,24,0,0,-0.13605 -119081,7212:249:1,-129,24,0,0,-0.13605 -119082,7212:248:2,-128.5,24,0,0,-0.13605 -119083,7212:248:1,-128,24,0,0,-0.13605 -119084,7212:247:2,-127.5,24,0,0,-0.13605 -119085,7212:247:1,-127,24,0,0,-0.13605 -119086,7212:246:2,-126.5,24,0,0,-0.13605 -119087,7212:246:1,-126,24,0,0,-0.13605 -119088,7212:245:2,-125.5,24,0,0,-0.13605 -119089,7212:245:1,-125,24,0,0,-0.13605 -119090,7212:144:2,-124.5,24,0,0,-0.13605 -119091,7212:144:1,-124,24,0,0,-0.13605 -119092,7212:143:2,-123.5,24,0,0,-0.13605 -119093,7212:143:1,-123,24,0,0,-0.13605 -119094,7212:142:2,-122.5,24,0,0,-0.13605 -119095,7212:142:1,-122,24,0,0,-0.13605 -119096,7207:246:1,-76,24,0,0,-0.13605 -119097,7207:245:2,-75.5,24,0,0,-0.13605 -119098,7207:245:1,-75,24,0,0,-0.13605 -119099,7207:144:2,-74.5,24,0,0,-0.13605 -119100,7207:144:1,-74,24,0,0,-0.13605 -119101,7207:143:2,-73.5,24,0,0,-0.13605 -119102,7207:143:1,-73,24,0,0,-0.13605 -119103,7207:142:2,-72.5,24,0,0,-0.13605 -119104,7207:142:1,-72,24,0,0,-0.13605 -119105,7207:141:2,-71.5,24,0,0,-0.13605 -119106,7207:141:1,-71,24,0,0,-0.13605 -119107,7207:140:2,-70.5,24,0,0,-0.13605 -119108,7207:140:1,-70,24,0,0,-0.13605 -119109,7206:249:2,-69.5,24,0,0,-0.13605 -119110,7206:249:1,-69,24,0,0,-0.13605 -119111,7206:248:2,-68.5,24,0,0,-0.13605 -119112,7206:248:1,-68,24,0,0,-0.13605 -119113,7206:247:2,-67.5,24,0,0,-0.13605 -119114,7206:247:1,-67,24,0,0,-0.13605 -119115,7206:246:2,-66.5,24,0,0,-0.13605 -119116,7206:246:1,-66,24,0,0,-0.13605 -119117,7206:245:2,-65.5,24,0,0,-0.13605 -119118,7206:245:1,-65,24,0,0,-0.13605 -119119,7206:144:2,-64.5,24,0,0,-0.13605 -119120,7206:144:1,-64,24,0,0,-0.13605 -119121,7206:143:2,-63.5,24,0,0,-0.13605 -119122,7206:143:1,-63,24,0,0,-0.13605 -119123,7206:142:2,-62.5,24,0,0,-0.13605 -119124,7206:142:1,-62,24,0,0,-0.13605 -119125,7206:141:2,-61.5,24,0,0,-0.13605 -119126,7206:141:1,-61,24,0,0,-0.13605 -119127,7206:140:2,-60.5,24,0,0,-0.13605 -119128,7206:140:1,-60,24,0,0,-0.13605 -119129,7205:249:2,-59.5,24,0,0,-0.13605 -119130,7205:249:1,-59,24,0,0,-0.13605 -119131,7205:248:2,-58.5,24,0,0,-0.13605 -119132,7205:248:1,-58,24,0,0,-0.13605 -119133,7205:247:2,-57.5,24,0,0,-0.13605 -119134,7205:247:1,-57,24,0,0,-0.13605 -119135,7205:246:2,-56.5,24,0,0,-0.13605 -119136,7205:246:1,-56,24,0,0,-0.13605 -119137,7205:245:2,-55.5,24,0,0,-0.13605 -119138,7205:245:1,-55,24,0,0,-0.13605 -119139,7205:144:2,-54.5,24,0,0,-0.13605 -119140,7205:144:1,-54,24,0,0,-0.13605 -119141,7205:143:2,-53.5,24,0,0,-0.13605 -119142,7205:143:1,-53,24,0,0,-0.13605 -119143,7205:142:2,-52.5,24,0,0,-0.13605 -119144,7205:142:1,-52,24,0,0,-0.13605 -119145,7205:141:2,-51.5,24,0,0,-0.13605 -119146,7205:141:1,-51,24,0,0,-0.13605 -119147,7205:140:2,-50.5,24,0,0,-0.13605 -119148,7205:140:1,-50,24,0,0,-0.13605 -119149,7204:249:2,-49.5,24,0,0,-0.13605 -119150,7204:249:1,-49,24,0,0,-0.13605 -119151,7204:248:2,-48.5,24,0,0,-0.13605 -119152,7204:248:1,-48,24,0,0,-0.13605 -119153,7204:247:2,-47.5,24,0,0,-0.13605 -119154,7204:247:1,-47,24,0,0,-0.13605 -119155,7204:246:2,-46.5,24,0,0,-0.13605 -119156,7204:246:1,-46,24,0,0,-0.13605 -119157,7204:245:2,-45.5,24,0,0,-0.13605 -119158,7204:245:1,-45,24,0,0,-0.13605 -119159,7204:144:2,-44.5,24,0,0,-0.13605 -119160,7204:144:1,-44,24,0,0,-0.13605 -119161,7204:143:2,-43.5,24,0,0,-0.13605 -119162,7204:143:1,-43,24,0,0,-0.13605 -119163,7204:142:2,-42.5,24,0,0,-0.13605 -119164,7204:142:1,-42,24,0,0,-0.13605 -119165,7204:141:2,-41.5,24,0,0,-0.13605 -119166,7204:141:1,-41,24,0,0,-0.13605 -119167,7204:140:2,-40.5,24,0,0,-0.13605 -119168,7204:140:1,-40,24,0,0,-0.13605 -119169,7203:249:2,-39.5,24,0,0,-0.13605 -119170,7203:249:1,-39,24,0,0,-0.13605 -119171,7203:248:2,-38.5,24,0,0,-0.13605 -119172,7203:248:1,-38,24,0,0,-0.13605 -119173,7203:247:2,-37.5,24,0,0,-0.13605 -119174,7203:247:1,-37,24,0,0,-0.13605 -119175,7203:246:2,-36.5,24,0,0,-0.13605 -119176,7203:246:1,-36,24,0,0,-0.13605 -119177,7203:245:2,-35.5,24,0,0,-0.13605 -119178,7203:245:1,-35,24,0,0,-0.13605 -119179,7203:144:2,-34.5,24,0,0,-0.13605 -119180,7203:144:1,-34,24,0,0,-0.13605 -119181,7203:143:2,-33.5,24,0,0,-0.13605 -119182,7203:143:1,-33,24,0,0,-0.13605 -119183,7203:142:2,-32.5,24,0,0,-0.13605 -119184,7203:142:1,-32,24,0,0,-0.13605 -119185,7203:141:2,-31.5,24,0,0,-0.13605 -119186,7203:141:1,-31,24,0,0,-0.13605 -119187,7203:140:2,-30.5,24,0,0,-0.13605 -119188,7203:140:1,-30,24,0,0,-0.13605 -119189,7202:249:2,-29.5,24,0,0,-0.13605 -119190,7202:249:1,-29,24,0,0,-0.13605 -119191,7202:248:2,-28.5,24,0,0,-0.13605 -119192,7202:248:1,-28,24,0,0,-0.13605 -119193,7202:247:2,-27.5,24,0,0,-0.13605 -119194,7202:247:1,-27,24,0,0,-0.13605 -119195,7202:246:2,-26.5,24,0,0,-0.13605 -119196,7202:246:1,-26,24,0,0,-0.13605 -119197,7202:245:2,-25.5,24,0,0,-0.13605 -119198,7202:245:1,-25,24,0,0,-0.13605 -119199,7202:144:2,-24.5,24,0,0,-0.13605 -119200,7202:144:1,-24,24,0,0,-0.13605 -119201,7202:143:2,-23.5,24,0,0,-0.13605 -119202,7202:143:1,-23,24,0,0,-0.13605 -119203,7202:142:2,-22.5,24,0,0,-0.13605 -119204,7202:142:1,-22,24,0,0,-0.13605 -119205,7202:141:2,-21.5,24,0,0,-0.13605 -119206,7202:141:1,-21,24,0,0,-0.13605 -119207,7202:140:2,-20.5,24,0,0,-0.13605 -119208,7202:140:1,-20,24,0,0,-0.13605 -119209,7201:249:2,-19.5,24,0,0,-0.13605 -119210,7201:249:1,-19,24,0,0,-0.13605 -119211,7201:248:2,-18.5,24,0,0,-0.13605 -119212,7201:248:1,-18,24,0,0,-0.13605 -119213,7201:247:2,-17.5,24,0,0,-0.13605 -119214,7201:247:1,-17,24,0,0,-0.13605 -119215,7201:246:2,-16.5,24,0,0,-0.13605 -119216,7201:246:1,-16,24,0,0,-0.13605 -119217,7201:245:2,-15.5,24,0,0,-0.13605 -119218,7201:245:1,-15,24,0,0,-0.13605 -119219,7201:144:2,-14.5,24,0,0,-0.13605 -119220,7201:144:1,-14,24,0,0,-0.13605 -119221,7201:143:2,-13.5,24,0,0,-0.13605 -119222,7201:143:1,-13,24,0,0,-0.13605 -119223,7201:142:2,-12.5,24,0,0,-0.13605 -119224,7201:142:1,-12,24,0,0,-0.13605 -119225,7201:141:2,-11.5,24,0,0,-0.13605 -119226,7201:141:1,-11,24,0,0,-0.13605 -119227,7201:140:2,-10.5,24,0,0,-0.13605 -119228,7201:140:1,-10,24,0,0,-0.13605 -119229,7200:249:2,-9.5,24,0,0,-0.13605 -119230,7200:142:1,-2,24,0,0,-0.13605 -119231,7200:141:2,-1.5,24,0,0,-0.13605 -119232,7200:141:1,-1,24,0,0,-0.13605 -119233,7200:140:2,-0.5,24,0,0,-0.13605 -119234,1200:140:2,0,24,0,0,-0.13605 -119235,1200:140:2,0.5,24,0,0,-0.13605 -119236,1200:141:1,1,24,0,0,-0.13605 -119237,1200:141:2,1.5,24,0,0,-0.13605 -119238,1200:142:1,2,24,0,0,-0.13605 -119239,1200:142:2,2.5,24,0,0,-0.13605 -119240,1200:143:1,3,24,0,0,-0.13605 -119241,1200:143:2,3.5,24,0,0,-0.13605 -119242,1200:144:1,4,24,0,0,-0.13605 -119243,1200:144:2,4.5,24,0,0,-0.13605 -119244,1200:245:1,5,24,0,0,-0.13605 -119245,1200:245:2,5.5,24,0,0,-0.13605 -119246,1200:246:2,6.5,24,0,0,-0.13605 -119247,1200:247:2,7.5,24,0,0,-0.13605 -119248,1200:248:1,8,24,0,0,-0.13605 -119249,1201:140:1,10,24,0,0,-0.13605 -119250,1201:141:1,11,24,0,0,-0.13605 -119251,1201:141:2,11.5,24,0,0,-0.13605 -119252,1201:142:1,12,24,0,0,-0.13605 -119253,1201:142:2,12.5,24,0,0,-0.13605 -119254,1201:143:1,13,24,0,0,-0.13605 -119255,1201:143:2,13.5,24,0,0,-0.13605 -119256,1201:144:1,14,24,0,0,-0.13605 -119257,1201:245:1,15,24,0,0,-0.13605 -119258,1201:245:2,15.5,24,0,0,-0.13605 -119259,1201:246:1,16,24,0,0,-0.13605 -119260,1201:246:2,16.5,24,0,0,-0.13605 -119261,1201:247:1,17,24,0,0,-0.13605 -119262,1201:247:2,17.5,24,0,0,-0.13605 -119263,1201:248:1,18,24,0,0,-0.13605 -119264,1201:248:2,18.5,24,0,0,-0.13605 -119265,1201:249:1,19,24,0,0,-0.13605 -119266,1201:249:2,19.5,24,0,0,-0.13605 -119267,1202:140:1,20,24,0,0,-0.13605 -119268,1202:140:2,20.5,24,0,0,-0.13605 -119269,1202:141:1,21,24,0,0,-0.13605 -119270,1202:141:2,21.5,24,0,0,-0.13605 -119271,1202:143:1,23,24,0,0,-0.13605 -119272,1202:143:2,23.5,24,0,0,-0.13605 -119273,1202:144:1,24,24,0,0,-0.13605 -119274,1202:144:2,24.5,24,0,0,-0.13605 -119275,1202:245:1,25,24,0,0,-0.13605 -119276,1202:245:2,25.5,24,0,0,-0.13605 -119277,1202:246:1,26,24,0,0,-0.13605 -119278,1202:246:2,26.5,24,0,0,-0.13605 -119279,1202:247:1,27,24,0,0,-0.13605 -119280,1202:247:2,27.5,24,0,0,-0.13605 -119281,1202:248:1,28,24,0,0,-0.13605 -119282,1202:248:2,28.5,24,0,0,-0.13605 -119283,1203:140:2,30.5,24,0,0,-0.13605 -119284,1203:141:1,31,24,0,0,-0.13605 -119285,1203:141:2,31.5,24,0,0,-0.13605 -119286,1203:144:1,34,24,0,0,-0.13605 -119287,1203:144:2,34.5,24,0,0,-0.13605 -119288,1203:245:1,35,24,0,0,-0.13605 -119289,1212:141:2,121.5,24,0,0,-0.0620416 -119290,1212:142:1,122,24,0,0,-0.0775823 -119291,1212:142:2,122.5,24,0,0,-0.0929534 -119292,1212:143:1,123,24,0,0,-0.110404 -119293,1212:143:2,123.5,24,0,0,-0.13605 -119294,1212:144:1,124,24,0,0,-0.13605 -119295,1212:144:2,124.5,24,0,0,-0.13605 -119296,1212:245:1,125,24,0,0,-0.13605 -119297,1212:245:2,125.5,24,0,0,-0.13605 -119298,1212:246:1,126,24,0,0,-0.120467 -119299,1212:246:2,126.5,24,0,0,-0.0929754 -119300,1213:140:1,130,24,0,0,-0.13605 -119301,1213:140:2,130.5,24,0,0,-0.13605 -119302,1213:141:1,131,24,0,0,-0.13605 -119303,1213:141:2,131.5,24,0,0,-0.13605 -119304,1213:142:1,132,24,0,0,-0.13605 -119305,1213:142:2,132.5,24,0,0,-0.13605 -119306,1213:143:1,133,24,0,0,-0.13605 -119307,1213:143:2,133.5,24,0,0,-0.13605 -119308,1213:144:1,134,24,0,0,-0.13605 -119309,1213:144:2,134.5,24,0,0,-0.13605 -119310,1213:245:1,135,24,0,0,-0.13605 -119311,1213:245:2,135.5,24,0,0,-0.13605 -119312,1213:246:1,136,24,0,0,-0.13605 -119313,1213:246:2,136.5,24,0,0,-0.13605 -119314,1213:247:1,137,24,0,0,-0.13605 -119315,1213:247:2,137.5,24,0,0,-0.13605 -119316,1213:248:1,138,24,0,0,-0.13605 -119317,1214:141:2,141.5,24,0,0,-0.13605 -119318,1214:142:1,142,24,0,0,-0.13605 -119319,1214:142:2,142.5,24,0,0,-0.13605 -119320,1214:143:1,143,24,0,0,-0.13605 -119321,1214:143:2,143.5,24,0,0,-0.13605 -119322,1214:144:1,144,24,0,0,-0.13605 -119323,1214:144:2,144.5,24,0,0,-0.13605 -119324,1214:245:1,145,24,0,0,-0.13605 -119325,1214:245:2,145.5,24,0,0,-0.13605 -119326,1214:246:1,146,24,0,0,-0.13605 -119327,1214:246:2,146.5,24,0,0,-0.13605 -119328,1214:247:1,147,24,0,0,-0.13605 -119329,1214:247:2,147.5,24,0,0,-0.13605 -119330,1214:248:1,148,24,0,0,-0.13605 -119331,1214:248:2,148.5,24,0,0,-0.13605 -119332,1214:249:1,149,24,0,0,-0.13605 -119333,1214:249:2,149.5,24,0,0,-0.13605 -119334,1215:140:1,150,24,0,0,-0.13605 -119335,1215:140:2,150.5,24,0,0,-0.13605 -119336,1215:141:1,151,24,0,0,-0.13605 -119337,1215:141:2,151.5,24,0,0,-0.13605 -119338,1215:142:1,152,24,0,0,-0.13605 -119339,1215:142:2,152.5,24,0,0,-0.13605 -119340,1215:143:1,153,24,0,0,-0.13605 -119341,1215:143:2,153.5,24,0,0,-0.13605 -119342,1215:144:1,154,24,0,0,-0.13605 -119343,1215:144:2,154.5,24,0,0,-0.13605 -119344,1215:245:1,155,24,0,0,-0.13605 -119345,1215:245:2,155.5,24,0,0,-0.13605 -119346,1215:246:1,156,24,0,0,-0.13605 -119347,1215:246:2,156.5,24,0,0,-0.13605 -119348,1215:247:1,157,24,0,0,-0.13605 -119349,1215:247:2,157.5,24,0,0,-0.13605 -119350,1215:248:1,158,24,0,0,-0.13605 -119351,1215:248:2,158.5,24,0,0,-0.13605 -119352,1215:249:1,159,24,0,0,-0.13605 -119353,1215:249:2,159.5,24,0,0,-0.13605 -119354,1216:140:1,160,24,0,0,-0.13605 -119355,1216:140:2,160.5,24,0,0,-0.13605 -119356,1216:141:1,161,24,0,0,-0.13605 -119357,1216:141:2,161.5,24,0,0,-0.13605 -119358,1216:142:1,162,24,0,0,-0.13605 -119359,1216:142:2,162.5,24,0,0,-0.13605 -119360,1216:143:1,163,24,0,0,-0.13605 -119361,1216:143:2,163.5,24,0,0,-0.13605 -119362,1216:144:1,164,24,0,0,-0.13605 -119363,1216:144:2,164.5,24,0,0,-0.13605 -119364,1216:245:1,165,24,0,0,-0.13605 -119365,1216:245:2,165.5,24,0,0,-0.13605 -119366,1216:246:1,166,24,0,0,-0.13605 -119367,1216:246:2,166.5,24,0,0,-0.13605 -119368,1216:247:1,167,24,0,0,-0.13605 -119369,1216:247:2,167.5,24,0,0,-0.13605 -119370,1216:248:1,168,24,0,0,-0.13605 -119371,1216:248:2,168.5,24,0,0,-0.13605 -119372,1216:249:1,169,24,0,0,-0.13605 -119373,1216:249:2,169.5,24,0,0,-0.13605 -119374,1217:140:1,170,24,0,0,-0.13605 -119375,1217:140:2,170.5,24,0,0,-0.13605 -119376,1217:141:1,171,24,0,0,-0.13605 -119377,1217:141:2,171.5,24,0,0,-0.13605 -119378,1217:142:1,172,24,0,0,-0.13605 -119379,1217:142:2,172.5,24,0,0,-0.13605 -119380,1217:143:1,173,24,0,0,-0.13605 -119381,1217:143:2,173.5,24,0,0,-0.13605 -119382,1217:144:1,174,24,0,0,-0.13605 -119383,1217:144:2,174.5,24,0,0,-0.13605 -119384,1217:245:1,175,24,0,0,-0.13605 -119385,1217:245:2,175.5,24,0,0,-0.13605 -119386,1217:246:1,176,24,0,0,-0.13605 -119387,1217:246:2,176.5,24,0,0,-0.13605 -119388,1217:247:1,177,24,0,0,-0.13605 -119389,1217:247:2,177.5,24,0,0,-0.13605 -119390,1217:248:1,178,24,0,0,-0.13605 -119391,1217:248:2,178.5,24,0,0,-0.13605 -119392,1217:249:1,179,24,0,0,-0.13605 -119393,1217:249:2,179.5,24,0,0,-0.13605 -119394,1218:140:1,180,24,0,0,-0.13605 -119395,7218:140:3,-180,24.5,0,0,-0.13605 -119396,7217:249:4,-179.5,24.5,0,0,-0.13605 -119397,7217:249:3,-179,24.5,0,0,-0.13605 -119398,7217:248:4,-178.5,24.5,0,0,-0.13605 -119399,7217:248:3,-178,24.5,0,0,-0.13605 -119400,7217:247:4,-177.5,24.5,0,0,-0.13605 -119401,7217:247:3,-177,24.5,0,0,-0.13605 -119402,7217:246:4,-176.5,24.5,0,0,-0.13605 -119403,7217:246:3,-176,24.5,0,0,-0.13605 -119404,7217:245:4,-175.5,24.5,0,0,-0.13605 -119405,7217:245:3,-175,24.5,0,0,-0.13605 -119406,7217:144:4,-174.5,24.5,0,0,-0.13605 -119407,7217:144:3,-174,24.5,0,0,-0.13605 -119408,7217:143:4,-173.5,24.5,0,0,-0.13605 -119409,7217:143:3,-173,24.5,0,0,-0.13605 -119410,7217:142:4,-172.5,24.5,0,0,-0.13605 -119411,7217:142:3,-172,24.5,0,0,-0.13605 -119412,7217:141:4,-171.5,24.5,0,0,-0.13605 -119413,7217:141:3,-171,24.5,0,0,-0.13605 -119414,7217:140:4,-170.5,24.5,0,0,-0.13605 -119415,7217:140:3,-170,24.5,0,0,-0.13605 -119416,7216:249:4,-169.5,24.5,0,0,-0.13605 -119417,7216:249:3,-169,24.5,0,0,-0.13605 -119418,7216:248:4,-168.5,24.5,0,0,-0.13605 -119419,7216:248:3,-168,24.5,0,0,-0.13605 -119420,7216:247:4,-167.5,24.5,0,0,-0.13605 -119421,7216:247:3,-167,24.5,0,0,-0.13605 -119422,7216:246:4,-166.5,24.5,0,0,-0.13605 -119423,7216:246:3,-166,24.5,0,0,-0.13605 -119424,7216:245:4,-165.5,24.5,0,0,-0.13605 -119425,7216:245:3,-165,24.5,0,0,-0.13605 -119426,7216:144:4,-164.5,24.5,0,0,-0.13605 -119427,7216:144:3,-164,24.5,0,0,-0.13605 -119428,7216:143:4,-163.5,24.5,0,0,-0.13605 -119429,7216:143:3,-163,24.5,0,0,-0.13605 -119430,7216:142:4,-162.5,24.5,0,0,-0.13605 -119431,7216:142:3,-162,24.5,0,0,-0.13605 -119432,7216:141:4,-161.5,24.5,0,0,-0.13605 -119433,7216:141:3,-161,24.5,0,0,-0.13605 -119434,7216:140:4,-160.5,24.5,0,0,-0.13605 -119435,7216:140:3,-160,24.5,0,0,-0.13605 -119436,7215:249:4,-159.5,24.5,0,0,-0.13605 -119437,7215:249:3,-159,24.5,0,0,-0.13605 -119438,7215:248:4,-158.5,24.5,0,0,-0.13605 -119439,7215:248:3,-158,24.5,0,0,-0.13605 -119440,7215:247:4,-157.5,24.5,0,0,-0.13605 -119441,7215:247:3,-157,24.5,0,0,-0.13605 -119442,7215:246:4,-156.5,24.5,0,0,-0.13605 -119443,7215:246:3,-156,24.5,0,0,-0.13605 -119444,7215:245:4,-155.5,24.5,0,0,-0.13605 -119445,7215:245:3,-155,24.5,0,0,-0.13605 -119446,7215:144:4,-154.5,24.5,0,0,-0.13605 -119447,7215:144:3,-154,24.5,0,0,-0.13605 -119448,7215:143:4,-153.5,24.5,0,0,-0.13605 -119449,7215:143:3,-153,24.5,0,0,-0.13605 -119450,7215:142:4,-152.5,24.5,0,0,-0.13605 -119451,7215:142:3,-152,24.5,0,0,-0.13605 -119452,7215:141:4,-151.5,24.5,0,0,-0.13605 -119453,7215:141:3,-151,24.5,0,0,-0.13605 -119454,7215:140:4,-150.5,24.5,0,0,-0.13605 -119455,7215:140:3,-150,24.5,0,0,-0.13605 -119456,7214:249:4,-149.5,24.5,0,0,-0.13605 -119457,7214:249:3,-149,24.5,0,0,-0.13605 -119458,7214:248:4,-148.5,24.5,0,0,-0.13605 -119459,7214:248:3,-148,24.5,0,0,-0.13605 -119460,7214:247:4,-147.5,24.5,0,0,-0.13605 -119461,7214:247:3,-147,24.5,0,0,-0.13605 -119462,7214:246:4,-146.5,24.5,0,0,-0.13605 -119463,7214:246:3,-146,24.5,0,0,-0.13605 -119464,7214:245:4,-145.5,24.5,0,0,-0.13605 -119465,7214:245:3,-145,24.5,0,0,-0.13605 -119466,7214:144:4,-144.5,24.5,0,0,-0.13605 -119467,7214:144:3,-144,24.5,0,0,-0.13605 -119468,7214:143:4,-143.5,24.5,0,0,-0.13605 -119469,7214:143:3,-143,24.5,0,0,-0.13605 -119470,7214:142:4,-142.5,24.5,0,0,-0.13605 -119471,7214:142:3,-142,24.5,0,0,-0.13605 -119472,7214:141:4,-141.5,24.5,0,0,-0.13605 -119473,7214:141:3,-141,24.5,0,0,-0.13605 -119474,7214:140:4,-140.5,24.5,0,0,-0.13605 -119475,7214:140:3,-140,24.5,0,0,-0.13605 -119476,7213:249:4,-139.5,24.5,0,0,-0.13605 -119477,7213:249:3,-139,24.5,0,0,-0.13605 -119478,7213:248:4,-138.5,24.5,0,0,-0.13605 -119479,7213:248:3,-138,24.5,0,0,-0.13605 -119480,7213:247:4,-137.5,24.5,0,0,-0.13605 -119481,7213:247:3,-137,24.5,0,0,-0.13605 -119482,7213:246:4,-136.5,24.5,0,0,-0.13605 -119483,7213:246:3,-136,24.5,0,0,-0.13605 -119484,7213:245:4,-135.5,24.5,0,0,-0.13605 -119485,7213:245:3,-135,24.5,0,0,-0.13605 -119486,7213:144:4,-134.5,24.5,0,0,-0.13605 -119487,7213:144:3,-134,24.5,0,0,-0.13605 -119488,7213:143:4,-133.5,24.5,0,0,-0.13605 -119489,7213:143:3,-133,24.5,0,0,-0.13605 -119490,7213:142:4,-132.5,24.5,0,0,-0.13605 -119491,7213:142:3,-132,24.5,0,0,-0.13605 -119492,7213:141:4,-131.5,24.5,0,0,-0.13605 -119493,7213:141:3,-131,24.5,0,0,-0.13605 -119494,7213:140:4,-130.5,24.5,0,0,-0.13605 -119495,7213:140:3,-130,24.5,0,0,-0.13605 -119496,7212:249:4,-129.5,24.5,0,0,-0.13605 -119497,7212:249:3,-129,24.5,0,0,-0.13605 -119498,7212:248:4,-128.5,24.5,0,0,-0.13605 -119499,7212:248:3,-128,24.5,0,0,-0.13605 -119500,7212:247:4,-127.5,24.5,0,0,-0.13605 -119501,7212:247:3,-127,24.5,0,0,-0.13605 -119502,7212:246:4,-126.5,24.5,0,0,-0.13605 -119503,7212:246:3,-126,24.5,0,0,-0.13605 -119504,7212:245:4,-125.5,24.5,0,0,-0.13605 -119505,7212:245:3,-125,24.5,0,0,-0.13605 -119506,7212:144:4,-124.5,24.5,0,0,-0.13605 -119507,7212:144:3,-124,24.5,0,0,-0.13605 -119508,7212:143:4,-123.5,24.5,0,0,-0.13605 -119509,7212:143:3,-123,24.5,0,0,-0.13605 -119510,7212:142:4,-122.5,24.5,0,0,-0.13605 -119511,7207:246:3,-76,24.5,0,0,-0.13605 -119512,7207:245:4,-75.5,24.5,0,0,-0.13605 -119513,7207:245:3,-75,24.5,0,0,-0.13605 -119514,7207:144:4,-74.5,24.5,0,0,-0.13605 -119515,7207:144:3,-74,24.5,0,0,-0.13605 -119516,7207:143:4,-73.5,24.5,0,0,-0.13605 -119517,7207:143:3,-73,24.5,0,0,-0.13605 -119518,7207:142:4,-72.5,24.5,0,0,-0.13605 -119519,7207:142:3,-72,24.5,0,0,-0.13605 -119520,7207:141:4,-71.5,24.5,0,0,-0.13605 -119521,7207:141:3,-71,24.5,0,0,-0.13605 -119522,7207:140:4,-70.5,24.5,0,0,-0.13605 -119523,7207:140:3,-70,24.5,0,0,-0.13605 -119524,7206:249:4,-69.5,24.5,0,0,-0.13605 -119525,7206:249:3,-69,24.5,0,0,-0.13605 -119526,7206:248:4,-68.5,24.5,0,0,-0.13605 -119527,7206:248:3,-68,24.5,0,0,-0.13605 -119528,7206:247:4,-67.5,24.5,0,0,-0.13605 -119529,7206:247:3,-67,24.5,0,0,-0.13605 -119530,7206:246:4,-66.5,24.5,0,0,-0.13605 -119531,7206:246:3,-66,24.5,0,0,-0.13605 -119532,7206:245:4,-65.5,24.5,0,0,-0.13605 -119533,7206:245:3,-65,24.5,0,0,-0.13605 -119534,7206:144:4,-64.5,24.5,0,0,-0.13605 -119535,7206:144:3,-64,24.5,0,0,-0.13605 -119536,7206:143:4,-63.5,24.5,0,0,-0.13605 -119537,7206:143:3,-63,24.5,0,0,-0.13605 -119538,7206:142:4,-62.5,24.5,0,0,-0.13605 -119539,7206:142:3,-62,24.5,0,0,-0.13605 -119540,7206:141:4,-61.5,24.5,0,0,-0.13605 -119541,7206:141:3,-61,24.5,0,0,-0.13605 -119542,7206:140:4,-60.5,24.5,0,0,-0.13605 -119543,7206:140:3,-60,24.5,0,0,-0.13605 -119544,7205:249:4,-59.5,24.5,0,0,-0.13605 -119545,7205:249:3,-59,24.5,0,0,-0.13605 -119546,7205:248:4,-58.5,24.5,0,0,-0.13605 -119547,7205:248:3,-58,24.5,0,0,-0.13605 -119548,7205:247:4,-57.5,24.5,0,0,-0.13605 -119549,7205:247:3,-57,24.5,0,0,-0.13605 -119550,7205:246:4,-56.5,24.5,0,0,-0.13605 -119551,7205:246:3,-56,24.5,0,0,-0.13605 -119552,7205:245:4,-55.5,24.5,0,0,-0.13605 -119553,7205:245:3,-55,24.5,0,0,-0.13605 -119554,7205:144:4,-54.5,24.5,0,0,-0.13605 -119555,7205:144:3,-54,24.5,0,0,-0.13605 -119556,7205:143:4,-53.5,24.5,0,0,-0.13605 -119557,7205:143:3,-53,24.5,0,0,-0.13605 -119558,7205:142:4,-52.5,24.5,0,0,-0.13605 -119559,7205:142:3,-52,24.5,0,0,-0.13605 -119560,7205:141:4,-51.5,24.5,0,0,-0.13605 -119561,7205:141:3,-51,24.5,0,0,-0.13605 -119562,7205:140:4,-50.5,24.5,0,0,-0.13605 -119563,7205:140:3,-50,24.5,0,0,-0.13605 -119564,7204:249:4,-49.5,24.5,0,0,-0.13605 -119565,7204:249:3,-49,24.5,0,0,-0.13605 -119566,7204:248:4,-48.5,24.5,0,0,-0.13605 -119567,7204:248:3,-48,24.5,0,0,-0.13605 -119568,7204:247:4,-47.5,24.5,0,0,-0.13605 -119569,7204:247:3,-47,24.5,0,0,-0.13605 -119570,7204:246:4,-46.5,24.5,0,0,-0.13605 -119571,7204:246:3,-46,24.5,0,0,-0.13605 -119572,7204:245:4,-45.5,24.5,0,0,-0.13605 -119573,7204:245:3,-45,24.5,0,0,-0.13605 -119574,7204:144:4,-44.5,24.5,0,0,-0.13605 -119575,7204:144:3,-44,24.5,0,0,-0.13605 -119576,7204:143:4,-43.5,24.5,0,0,-0.13605 -119577,7204:143:3,-43,24.5,0,0,-0.13605 -119578,7204:142:4,-42.5,24.5,0,0,-0.13605 -119579,7204:142:3,-42,24.5,0,0,-0.13605 -119580,7204:141:4,-41.5,24.5,0,0,-0.13605 -119581,7204:141:3,-41,24.5,0,0,-0.13605 -119582,7204:140:4,-40.5,24.5,0,0,-0.13605 -119583,7204:140:3,-40,24.5,0,0,-0.13605 -119584,7203:249:4,-39.5,24.5,0,0,-0.13605 -119585,7203:249:3,-39,24.5,0,0,-0.13605 -119586,7203:248:4,-38.5,24.5,0,0,-0.13605 -119587,7203:248:3,-38,24.5,0,0,-0.13605 -119588,7203:247:4,-37.5,24.5,0,0,-0.13605 -119589,7203:247:3,-37,24.5,0,0,-0.13605 -119590,7203:246:4,-36.5,24.5,0,0,-0.13605 -119591,7203:246:3,-36,24.5,0,0,-0.13605 -119592,7203:245:4,-35.5,24.5,0,0,-0.13605 -119593,7203:245:3,-35,24.5,0,0,-0.13605 -119594,7203:144:4,-34.5,24.5,0,0,-0.13605 -119595,7203:144:3,-34,24.5,0,0,-0.13605 -119596,7203:143:4,-33.5,24.5,0,0,-0.13605 -119597,7203:143:3,-33,24.5,0,0,-0.13605 -119598,7203:142:4,-32.5,24.5,0,0,-0.13605 -119599,7203:142:3,-32,24.5,0,0,-0.13605 -119600,7203:141:4,-31.5,24.5,0,0,-0.13605 -119601,7203:141:3,-31,24.5,0,0,-0.13605 -119602,7203:140:4,-30.5,24.5,0,0,-0.13605 -119603,7203:140:3,-30,24.5,0,0,-0.13605 -119604,7202:249:4,-29.5,24.5,0,0,-0.13605 -119605,7202:249:3,-29,24.5,0,0,-0.13605 -119606,7202:248:4,-28.5,24.5,0,0,-0.13605 -119607,7202:248:3,-28,24.5,0,0,-0.13605 -119608,7202:247:4,-27.5,24.5,0,0,-0.13605 -119609,7202:247:3,-27,24.5,0,0,-0.13605 -119610,7202:246:4,-26.5,24.5,0,0,-0.13605 -119611,7202:246:3,-26,24.5,0,0,-0.13605 -119612,7202:245:4,-25.5,24.5,0,0,-0.13605 -119613,7202:245:3,-25,24.5,0,0,-0.13605 -119614,7202:144:4,-24.5,24.5,0,0,-0.13605 -119615,7202:144:3,-24,24.5,0,0,-0.13605 -119616,7202:143:4,-23.5,24.5,0,0,-0.13605 -119617,7202:143:3,-23,24.5,0,0,-0.13605 -119618,7202:142:4,-22.5,24.5,0,0,-0.13605 -119619,7202:142:3,-22,24.5,0,0,-0.13605 -119620,7202:141:4,-21.5,24.5,0,0,-0.13605 -119621,7202:141:3,-21,24.5,0,0,-0.13605 -119622,7202:140:4,-20.5,24.5,0,0,-0.13605 -119623,7202:140:3,-20,24.5,0,0,-0.13605 -119624,7201:249:4,-19.5,24.5,0,0,-0.13605 -119625,7201:249:3,-19,24.5,0,0,-0.13605 -119626,7201:248:4,-18.5,24.5,0,0,-0.13605 -119627,7201:248:3,-18,24.5,0,0,-0.13605 -119628,7201:247:4,-17.5,24.5,0,0,-0.13605 -119629,7201:247:3,-17,24.5,0,0,-0.13605 -119630,7201:246:4,-16.5,24.5,0,0,-0.13605 -119631,7201:246:3,-16,24.5,0,0,-0.13605 -119632,7201:245:4,-15.5,24.5,0,0,-0.13605 -119633,7201:245:3,-15,24.5,0,0,-0.13605 -119634,7201:144:4,-14.5,24.5,0,0,-0.13605 -119635,7201:144:3,-14,24.5,0,0,-0.13605 -119636,7201:143:4,-13.5,24.5,0,0,-0.13605 -119637,7201:143:3,-13,24.5,0,0,-0.13605 -119638,7201:142:4,-12.5,24.5,0,0,-0.13605 -119639,7201:142:3,-12,24.5,0,0,-0.13605 -119640,7201:141:4,-11.5,24.5,0,0,-0.13605 -119641,7201:141:3,-11,24.5,0,0,-0.13605 -119642,7201:140:4,-10.5,24.5,0,0,-0.13605 -119643,7201:140:3,-10,24.5,0,0,-0.13605 -119644,7200:249:4,-9.5,24.5,0,0,-0.13605 -119645,7200:141:3,-1,24.5,0,0,-0.13605 -119646,7200:140:4,-0.5,24.5,0,0,-0.13605 -119647,1200:140:4,0,24.5,0,0,-0.13605 -119648,1200:140:4,0.5,24.5,0,0,-0.13605 -119649,1200:141:3,1,24.5,0,0,-0.13605 -119650,1200:141:4,1.5,24.5,0,0,-0.13605 -119651,1200:142:3,2,24.5,0,0,-0.13605 -119652,1200:142:4,2.5,24.5,0,0,-0.13605 -119653,1200:143:3,3,24.5,0,0,-0.13605 -119654,1200:143:4,3.5,24.5,0,0,-0.13605 -119655,1200:144:3,4,24.5,0,0,-0.13605 -119656,1200:144:4,4.5,24.5,0,0,-0.13605 -119657,1200:245:3,5,24.5,0,0,-0.13605 -119658,1200:245:4,5.5,24.5,0,0,-0.13605 -119659,1200:246:3,6,24.5,0,0,-0.13605 -119660,1200:246:4,6.5,24.5,0,0,-0.13605 -119661,1200:247:3,7,24.5,0,0,-0.13605 -119662,1200:247:4,7.5,24.5,0,0,-0.13605 -119663,1200:248:3,8,24.5,0,0,-0.13605 -119664,1200:248:4,8.5,24.5,0,0,-0.13605 -119665,1200:249:3,9,24.5,0,0,-0.13605 -119666,1200:249:4,9.5,24.5,0,0,-0.13605 -119667,1201:140:3,10,24.5,0,0,-0.13605 -119668,1201:140:4,10.5,24.5,0,0,-0.13605 -119669,1201:141:3,11,24.5,0,0,-0.13605 -119670,1201:141:4,11.5,24.5,0,0,-0.13605 -119671,1201:142:3,12,24.5,0,0,-0.13605 -119672,1201:142:4,12.5,24.5,0,0,-0.13605 -119673,1201:245:3,15,24.5,0,0,-0.13605 -119674,1201:245:4,15.5,24.5,0,0,-0.13605 -119675,1201:246:3,16,24.5,0,0,-0.13605 -119676,1201:246:4,16.5,24.5,0,0,-0.13605 -119677,1201:247:3,17,24.5,0,0,-0.13605 -119678,1201:247:4,17.5,24.5,0,0,-0.13605 -119679,1201:248:3,18,24.5,0,0,-0.13605 -119680,1201:248:4,18.5,24.5,0,0,-0.13605 -119681,1201:249:3,19,24.5,0,0,-0.13605 -119682,1201:249:4,19.5,24.5,0,0,-0.13605 -119683,1202:140:3,20,24.5,0,0,-0.13605 -119684,1202:140:4,20.5,24.5,0,0,-0.13605 -119685,1202:141:3,21,24.5,0,0,-0.13605 -119686,1202:142:4,22.5,24.5,0,0,-0.13605 -119687,1202:143:3,23,24.5,0,0,-0.13605 -119688,1202:143:4,23.5,24.5,0,0,-0.13605 -119689,1202:144:3,24,24.5,0,0,-0.13605 -119690,1202:144:4,24.5,24.5,0,0,-0.13605 -119691,1202:245:4,25.5,24.5,0,0,-0.13605 -119692,1202:246:3,26,24.5,0,0,-0.13605 -119693,1202:246:4,26.5,24.5,0,0,-0.13605 -119694,1203:245:4,35.5,24.5,0,0,-0.13605 -119695,1212:143:3,123,24.5,0,0,-0.0885792 -119696,1212:143:4,123.5,24.5,0,0,-0.13605 -119697,1212:144:3,124,24.5,0,0,-0.13605 -119698,1212:144:4,124.5,24.5,0,0,-0.13605 -119699,1212:245:3,125,24.5,0,0,-0.13605 -119700,1212:245:4,125.5,24.5,0,0,-0.13605 -119701,1212:246:3,126,24.5,0,0,-0.0812175 -119702,1212:246:4,126.5,24.5,0,0,-0.067892 -119703,1212:247:3,127,24.5,0,0,-0.0589524 -119704,1213:140:3,130,24.5,0,0,-0.13605 -119705,1213:140:4,130.5,24.5,0,0,-0.13605 -119706,1213:141:3,131,24.5,0,0,-0.13605 -119707,1213:141:4,131.5,24.5,0,0,-0.13605 -119708,1213:142:3,132,24.5,0,0,-0.13605 -119709,1213:142:4,132.5,24.5,0,0,-0.13605 -119710,1213:143:3,133,24.5,0,0,-0.13605 -119711,1213:143:4,133.5,24.5,0,0,-0.13605 -119712,1213:144:3,134,24.5,0,0,-0.13605 -119713,1213:144:4,134.5,24.5,0,0,-0.13605 -119714,1213:245:3,135,24.5,0,0,-0.13605 -119715,1213:245:4,135.5,24.5,0,0,-0.13605 -119716,1213:246:3,136,24.5,0,0,-0.13605 -119717,1213:246:4,136.5,24.5,0,0,-0.13605 -119718,1213:247:3,137,24.5,0,0,-0.13605 -119719,1213:247:4,137.5,24.5,0,0,-0.13605 -119720,1213:248:3,138,24.5,0,0,-0.13605 -119721,1213:248:4,138.5,24.5,0,0,-0.13605 -119722,1213:249:3,139,24.5,0,0,-0.13605 -119723,1214:141:4,141.5,24.5,0,0,-0.13605 -119724,1214:142:3,142,24.5,0,0,-0.13605 -119725,1214:142:4,142.5,24.5,0,0,-0.13605 -119726,1214:143:3,143,24.5,0,0,-0.13605 -119727,1214:143:4,143.5,24.5,0,0,-0.13605 -119728,1214:144:3,144,24.5,0,0,-0.13605 -119729,1214:144:4,144.5,24.5,0,0,-0.13605 -119730,1214:245:3,145,24.5,0,0,-0.13605 -119731,1214:245:4,145.5,24.5,0,0,-0.13605 -119732,1214:246:3,146,24.5,0,0,-0.13605 -119733,1214:246:4,146.5,24.5,0,0,-0.13605 -119734,1214:247:3,147,24.5,0,0,-0.13605 -119735,1214:247:4,147.5,24.5,0,0,-0.13605 -119736,1214:248:3,148,24.5,0,0,-0.13605 -119737,1214:248:4,148.5,24.5,0,0,-0.13605 -119738,1214:249:3,149,24.5,0,0,-0.13605 -119739,1214:249:4,149.5,24.5,0,0,-0.13605 -119740,1215:140:3,150,24.5,0,0,-0.13605 -119741,1215:140:4,150.5,24.5,0,0,-0.13605 -119742,1215:141:3,151,24.5,0,0,-0.13605 -119743,1215:141:4,151.5,24.5,0,0,-0.13605 -119744,1215:142:3,152,24.5,0,0,-0.13605 -119745,1215:142:4,152.5,24.5,0,0,-0.13605 -119746,1215:143:3,153,24.5,0,0,-0.13605 -119747,1215:143:4,153.5,24.5,0,0,-0.13605 -119748,1215:144:3,154,24.5,0,0,-0.13605 -119749,1215:144:4,154.5,24.5,0,0,-0.13605 -119750,1215:245:3,155,24.5,0,0,-0.13605 -119751,1215:245:4,155.5,24.5,0,0,-0.13605 -119752,1215:246:3,156,24.5,0,0,-0.13605 -119753,1215:246:4,156.5,24.5,0,0,-0.13605 -119754,1215:247:3,157,24.5,0,0,-0.13605 -119755,1215:247:4,157.5,24.5,0,0,-0.13605 -119756,1215:248:3,158,24.5,0,0,-0.13605 -119757,1215:248:4,158.5,24.5,0,0,-0.13605 -119758,1215:249:3,159,24.5,0,0,-0.13605 -119759,1215:249:4,159.5,24.5,0,0,-0.13605 -119760,1216:140:3,160,24.5,0,0,-0.13605 -119761,1216:140:4,160.5,24.5,0,0,-0.13605 -119762,1216:141:3,161,24.5,0,0,-0.13605 -119763,1216:141:4,161.5,24.5,0,0,-0.13605 -119764,1216:142:3,162,24.5,0,0,-0.13605 -119765,1216:142:4,162.5,24.5,0,0,-0.13605 -119766,1216:143:3,163,24.5,0,0,-0.13605 -119767,1216:143:4,163.5,24.5,0,0,-0.13605 -119768,1216:144:3,164,24.5,0,0,-0.13605 -119769,1216:144:4,164.5,24.5,0,0,-0.13605 -119770,1216:245:3,165,24.5,0,0,-0.13605 -119771,1216:245:4,165.5,24.5,0,0,-0.13605 -119772,1216:246:3,166,24.5,0,0,-0.13605 -119773,1216:246:4,166.5,24.5,0,0,-0.13605 -119774,1216:247:3,167,24.5,0,0,-0.13605 -119775,1216:247:4,167.5,24.5,0,0,-0.13605 -119776,1216:248:3,168,24.5,0,0,-0.13605 -119777,1216:248:4,168.5,24.5,0,0,-0.13605 -119778,1216:249:3,169,24.5,0,0,-0.13605 -119779,1216:249:4,169.5,24.5,0,0,-0.13605 -119780,1217:140:3,170,24.5,0,0,-0.13605 -119781,1217:140:4,170.5,24.5,0,0,-0.13605 -119782,1217:141:3,171,24.5,0,0,-0.13605 -119783,1217:141:4,171.5,24.5,0,0,-0.13605 -119784,1217:142:3,172,24.5,0,0,-0.13605 -119785,1217:142:4,172.5,24.5,0,0,-0.13605 -119786,1217:143:3,173,24.5,0,0,-0.13605 -119787,1217:143:4,173.5,24.5,0,0,-0.13605 -119788,1217:144:3,174,24.5,0,0,-0.13605 -119789,1217:144:4,174.5,24.5,0,0,-0.13605 -119790,1217:245:3,175,24.5,0,0,-0.13605 -119791,1217:245:4,175.5,24.5,0,0,-0.13605 -119792,1217:246:3,176,24.5,0,0,-0.13605 -119793,1217:246:4,176.5,24.5,0,0,-0.13605 -119794,1217:247:3,177,24.5,0,0,-0.13605 -119795,1217:247:4,177.5,24.5,0,0,-0.13605 -119796,1217:248:3,178,24.5,0,0,-0.13605 -119797,1217:248:4,178.5,24.5,0,0,-0.13605 -119798,1217:249:3,179,24.5,0,0,-0.13605 -119799,1217:249:4,179.5,24.5,0,0,-0.13605 -119800,1218:140:3,180,24.5,0,0,-0.13605 -119801,7218:350:1,-180,25,0,0,-0.13605 -119802,7217:459:2,-179.5,25,0,0,-0.13605 -119803,7217:459:1,-179,25,0,0,-0.13605 -119804,7217:458:2,-178.5,25,0,0,-0.13605 -119805,7217:458:1,-178,25,0,0,-0.13605 -119806,7217:457:2,-177.5,25,0,0,-0.13605 -119807,7217:457:1,-177,25,0,0,-0.13605 -119808,7217:456:2,-176.5,25,0,0,-0.13605 -119809,7217:456:1,-176,25,0,0,-0.13605 -119810,7217:455:2,-175.5,25,0,0,-0.13605 -119811,7217:455:1,-175,25,0,0,-0.13605 -119812,7217:354:2,-174.5,25,0,0,-0.13605 -119813,7217:354:1,-174,25,0,0,-0.13605 -119814,7217:353:2,-173.5,25,0,0,-0.13605 -119815,7217:353:1,-173,25,0,0,-0.13605 -119816,7217:352:2,-172.5,25,0,0,-0.13605 -119817,7217:352:1,-172,25,0,0,-0.13605 -119818,7217:351:2,-171.5,25,0,0,-0.13605 -119819,7217:351:1,-171,25,0,0,-0.13605 -119820,7217:350:2,-170.5,25,0,0,-0.13605 -119821,7217:350:1,-170,25,0,0,-0.13605 -119822,7216:459:2,-169.5,25,0,0,-0.13605 -119823,7216:459:1,-169,25,0,0,-0.13605 -119824,7216:458:2,-168.5,25,0,0,-0.13605 -119825,7216:458:1,-168,25,0,0,-0.13605 -119826,7216:457:2,-167.5,25,0,0,-0.13605 -119827,7216:457:1,-167,25,0,0,-0.13605 -119828,7216:456:2,-166.5,25,0,0,-0.13605 -119829,7216:456:1,-166,25,0,0,-0.13605 -119830,7216:455:2,-165.5,25,0,0,-0.13605 -119831,7216:455:1,-165,25,0,0,-0.13605 -119832,7216:354:2,-164.5,25,0,0,-0.13605 -119833,7216:354:1,-164,25,0,0,-0.13605 -119834,7216:353:2,-163.5,25,0,0,-0.13605 -119835,7216:353:1,-163,25,0,0,-0.13605 -119836,7216:352:2,-162.5,25,0,0,-0.13605 -119837,7216:352:1,-162,25,0,0,-0.13605 -119838,7216:351:2,-161.5,25,0,0,-0.13605 -119839,7216:351:1,-161,25,0,0,-0.13605 -119840,7216:350:2,-160.5,25,0,0,-0.13605 -119841,7216:350:1,-160,25,0,0,-0.13605 -119842,7215:459:2,-159.5,25,0,0,-0.13605 -119843,7215:459:1,-159,25,0,0,-0.13605 -119844,7215:458:2,-158.5,25,0,0,-0.13605 -119845,7215:458:1,-158,25,0,0,-0.13605 -119846,7215:457:2,-157.5,25,0,0,-0.13605 -119847,7215:457:1,-157,25,0,0,-0.13605 -119848,7215:456:2,-156.5,25,0,0,-0.13605 -119849,7215:456:1,-156,25,0,0,-0.13605 -119850,7215:455:2,-155.5,25,0,0,-0.13605 -119851,7215:455:1,-155,25,0,0,-0.13605 -119852,7215:354:2,-154.5,25,0,0,-0.13605 -119853,7215:354:1,-154,25,0,0,-0.13605 -119854,7215:353:2,-153.5,25,0,0,-0.13605 -119855,7215:353:1,-153,25,0,0,-0.13605 -119856,7215:352:2,-152.5,25,0,0,-0.13605 -119857,7215:352:1,-152,25,0,0,-0.13605 -119858,7215:351:2,-151.5,25,0,0,-0.13605 -119859,7215:351:1,-151,25,0,0,-0.13605 -119860,7215:350:2,-150.5,25,0,0,-0.13605 -119861,7215:350:1,-150,25,0,0,-0.13605 -119862,7214:459:2,-149.5,25,0,0,-0.13605 -119863,7214:459:1,-149,25,0,0,-0.13605 -119864,7214:458:2,-148.5,25,0,0,-0.13605 -119865,7214:458:1,-148,25,0,0,-0.13605 -119866,7214:457:2,-147.5,25,0,0,-0.13605 -119867,7214:457:1,-147,25,0,0,-0.13605 -119868,7214:456:2,-146.5,25,0,0,-0.13605 -119869,7214:456:1,-146,25,0,0,-0.13605 -119870,7214:455:2,-145.5,25,0,0,-0.13605 -119871,7214:455:1,-145,25,0,0,-0.13605 -119872,7214:354:2,-144.5,25,0,0,-0.13605 -119873,7214:354:1,-144,25,0,0,-0.13605 -119874,7214:353:2,-143.5,25,0,0,-0.13605 -119875,7214:353:1,-143,25,0,0,-0.13605 -119876,7214:352:2,-142.5,25,0,0,-0.13605 -119877,7214:352:1,-142,25,0,0,-0.13605 -119878,7214:351:2,-141.5,25,0,0,-0.13605 -119879,7214:351:1,-141,25,0,0,-0.13605 -119880,7214:350:2,-140.5,25,0,0,-0.13605 -119881,7214:350:1,-140,25,0,0,-0.13605 -119882,7213:459:2,-139.5,25,0,0,-0.13605 -119883,7213:459:1,-139,25,0,0,-0.13605 -119884,7213:458:2,-138.5,25,0,0,-0.13605 -119885,7213:458:1,-138,25,0,0,-0.13605 -119886,7213:457:2,-137.5,25,0,0,-0.13605 -119887,7213:457:1,-137,25,0,0,-0.13605 -119888,7213:456:2,-136.5,25,0,0,-0.13605 -119889,7213:456:1,-136,25,0,0,-0.13605 -119890,7213:455:2,-135.5,25,0,0,-0.13605 -119891,7213:455:1,-135,25,0,0,-0.13605 -119892,7213:354:2,-134.5,25,0,0,-0.13605 -119893,7213:354:1,-134,25,0,0,-0.13605 -119894,7213:353:2,-133.5,25,0,0,-0.13605 -119895,7213:353:1,-133,25,0,0,-0.13605 -119896,7213:352:2,-132.5,25,0,0,-0.13605 -119897,7213:352:1,-132,25,0,0,-0.13605 -119898,7213:351:2,-131.5,25,0,0,-0.13605 -119899,7213:351:1,-131,25,0,0,-0.13605 -119900,7213:350:2,-130.5,25,0,0,-0.13605 -119901,7213:350:1,-130,25,0,0,-0.13605 -119902,7212:459:2,-129.5,25,0,0,-0.13605 -119903,7212:459:1,-129,25,0,0,-0.13605 -119904,7212:458:2,-128.5,25,0,0,-0.13605 -119905,7212:458:1,-128,25,0,0,-0.13605 -119906,7212:457:2,-127.5,25,0,0,-0.13605 -119907,7212:457:1,-127,25,0,0,-0.13605 -119908,7212:456:2,-126.5,25,0,0,-0.13605 -119909,7212:456:1,-126,25,0,0,-0.13605 -119910,7212:455:2,-125.5,25,0,0,-0.13605 -119911,7212:455:1,-125,25,0,0,-0.13605 -119912,7212:354:2,-124.5,25,0,0,-0.13605 -119913,7212:354:1,-124,25,0,0,-0.13605 -119914,7212:353:2,-123.5,25,0,0,-0.13605 -119915,7212:353:1,-123,25,0,0,-0.13605 -119916,7207:456:1,-76,25,0,0,-0.13605 -119917,7207:455:1,-75,25,0,0,-0.13605 -119918,7207:354:2,-74.5,25,0,0,-0.13605 -119919,7207:354:1,-74,25,0,0,-0.13605 -119920,7207:353:2,-73.5,25,0,0,-0.13605 -119921,7207:353:1,-73,25,0,0,-0.13605 -119922,7207:352:2,-72.5,25,0,0,-0.13605 -119923,7207:352:1,-72,25,0,0,-0.13605 -119924,7207:351:2,-71.5,25,0,0,-0.13605 -119925,7207:351:1,-71,25,0,0,-0.13605 -119926,7207:350:2,-70.5,25,0,0,-0.13605 -119927,7207:350:1,-70,25,0,0,-0.13605 -119928,7206:459:2,-69.5,25,0,0,-0.13605 -119929,7206:459:1,-69,25,0,0,-0.13605 -119930,7206:458:2,-68.5,25,0,0,-0.13605 -119931,7206:458:1,-68,25,0,0,-0.13605 -119932,7206:457:2,-67.5,25,0,0,-0.13605 -119933,7206:457:1,-67,25,0,0,-0.13605 -119934,7206:456:2,-66.5,25,0,0,-0.13605 -119935,7206:456:1,-66,25,0,0,-0.13605 -119936,7206:455:2,-65.5,25,0,0,-0.13605 -119937,7206:455:1,-65,25,0,0,-0.13605 -119938,7206:354:2,-64.5,25,0,0,-0.13605 -119939,7206:354:1,-64,25,0,0,-0.13605 -119940,7206:353:2,-63.5,25,0,0,-0.13605 -119941,7206:353:1,-63,25,0,0,-0.13605 -119942,7206:352:2,-62.5,25,0,0,-0.13605 -119943,7206:352:1,-62,25,0,0,-0.13605 -119944,7206:351:2,-61.5,25,0,0,-0.13605 -119945,7206:351:1,-61,25,0,0,-0.13605 -119946,7206:350:2,-60.5,25,0,0,-0.13605 -119947,7206:350:1,-60,25,0,0,-0.13605 -119948,7205:459:2,-59.5,25,0,0,-0.13605 -119949,7205:459:1,-59,25,0,0,-0.13605 -119950,7205:458:2,-58.5,25,0,0,-0.13605 -119951,7205:458:1,-58,25,0,0,-0.13605 -119952,7205:457:2,-57.5,25,0,0,-0.13605 -119953,7205:457:1,-57,25,0,0,-0.13605 -119954,7205:456:2,-56.5,25,0,0,-0.13605 -119955,7205:456:1,-56,25,0,0,-0.13605 -119956,7205:455:2,-55.5,25,0,0,-0.13605 -119957,7205:455:1,-55,25,0,0,-0.13605 -119958,7205:354:2,-54.5,25,0,0,-0.13605 -119959,7205:354:1,-54,25,0,0,-0.13605 -119960,7205:353:2,-53.5,25,0,0,-0.13605 -119961,7205:353:1,-53,25,0,0,-0.13605 -119962,7205:352:2,-52.5,25,0,0,-0.13605 -119963,7205:352:1,-52,25,0,0,-0.13605 -119964,7205:351:2,-51.5,25,0,0,-0.13605 -119965,7205:351:1,-51,25,0,0,-0.13605 -119966,7205:350:2,-50.5,25,0,0,-0.13605 -119967,7205:350:1,-50,25,0,0,-0.13605 -119968,7204:459:2,-49.5,25,0,0,-0.13605 -119969,7204:459:1,-49,25,0,0,-0.13605 -119970,7204:458:2,-48.5,25,0,0,-0.13605 -119971,7204:458:1,-48,25,0,0,-0.13605 -119972,7204:457:2,-47.5,25,0,0,-0.13605 -119973,7204:457:1,-47,25,0,0,-0.13605 -119974,7204:456:2,-46.5,25,0,0,-0.13605 -119975,7204:456:1,-46,25,0,0,-0.13605 -119976,7204:455:2,-45.5,25,0,0,-0.13605 -119977,7204:455:1,-45,25,0,0,-0.13605 -119978,7204:354:2,-44.5,25,0,0,-0.13605 -119979,7204:354:1,-44,25,0,0,-0.13605 -119980,7204:353:2,-43.5,25,0,0,-0.13605 -119981,7204:353:1,-43,25,0,0,-0.13605 -119982,7204:352:2,-42.5,25,0,0,-0.13605 -119983,7204:352:1,-42,25,0,0,-0.13605 -119984,7204:351:2,-41.5,25,0,0,-0.13605 -119985,7204:351:1,-41,25,0,0,-0.13605 -119986,7204:350:2,-40.5,25,0,0,-0.13605 -119987,7204:350:1,-40,25,0,0,-0.13605 -119988,7203:459:2,-39.5,25,0,0,-0.13605 -119989,7203:459:1,-39,25,0,0,-0.13605 -119990,7203:458:2,-38.5,25,0,0,-0.13605 -119991,7203:458:1,-38,25,0,0,-0.13605 -119992,7203:457:2,-37.5,25,0,0,-0.13605 -119993,7203:457:1,-37,25,0,0,-0.13605 -119994,7203:456:2,-36.5,25,0,0,-0.13605 -119995,7203:456:1,-36,25,0,0,-0.13605 -119996,7203:455:2,-35.5,25,0,0,-0.13605 -119997,7203:455:1,-35,25,0,0,-0.13605 -119998,7203:354:2,-34.5,25,0,0,-0.13605 -119999,7203:354:1,-34,25,0,0,-0.13605 -120000,7203:353:2,-33.5,25,0,0,-0.13605 -120001,7203:353:1,-33,25,0,0,-0.13605 -120002,7203:352:2,-32.5,25,0,0,-0.13605 -120003,7203:352:1,-32,25,0,0,-0.13605 -120004,7203:351:2,-31.5,25,0,0,-0.13605 -120005,7203:351:1,-31,25,0,0,-0.13605 -120006,7203:350:2,-30.5,25,0,0,-0.13605 -120007,7203:350:1,-30,25,0,0,-0.13605 -120008,7202:459:2,-29.5,25,0,0,-0.13605 -120009,7202:458:1,-28,25,0,0,-0.13605 -120010,7202:457:2,-27.5,25,0,0,-0.13605 -120011,7202:457:1,-27,25,0,0,-0.13605 -120012,7202:456:2,-26.5,25,0,0,-0.13605 -120013,7202:456:1,-26,25,0,0,-0.13605 -120014,7202:455:2,-25.5,25,0,0,-0.13605 -120015,7202:455:1,-25,25,0,0,-0.13605 -120016,7202:354:2,-24.5,25,0,0,-0.13605 -120017,7202:354:1,-24,25,0,0,-0.13605 -120018,7202:353:2,-23.5,25,0,0,-0.13605 -120019,7202:353:1,-23,25,0,0,-0.13605 -120020,7202:352:2,-22.5,25,0,0,-0.13605 -120021,7202:352:1,-22,25,0,0,-0.13605 -120022,7202:351:2,-21.5,25,0,0,-0.13605 -120023,7202:351:1,-21,25,0,0,-0.13605 -120024,7202:350:2,-20.5,25,0,0,-0.13605 -120025,7202:350:1,-20,25,0,0,-0.13605 -120026,7201:459:2,-19.5,25,0,0,-0.13605 -120027,7201:459:1,-19,25,0,0,-0.13605 -120028,7201:458:2,-18.5,25,0,0,-0.13605 -120029,7201:458:1,-18,25,0,0,-0.13605 -120030,7201:457:2,-17.5,25,0,0,-0.13605 -120031,7201:457:1,-17,25,0,0,-0.13605 -120032,7201:456:2,-16.5,25,0,0,-0.13605 -120033,7201:456:1,-16,25,0,0,-0.13605 -120034,7201:455:2,-15.5,25,0,0,-0.13605 -120035,7201:455:1,-15,25,0,0,-0.13605 -120036,7201:354:2,-14.5,25,0,0,-0.13605 -120037,7201:354:1,-14,25,0,0,-0.13605 -120038,7201:353:2,-13.5,25,0,0,-0.13605 -120039,7201:353:1,-13,25,0,0,-0.13605 -120040,7201:352:2,-12.5,25,0,0,-0.13605 -120041,7201:352:1,-12,25,0,0,-0.13605 -120042,7201:351:2,-11.5,25,0,0,-0.13605 -120043,7201:351:1,-11,25,0,0,-0.13605 -120044,7201:350:2,-10.5,25,0,0,-0.13605 -120045,7201:350:1,-10,25,0,0,-0.13605 -120046,7200:459:2,-9.5,25,0,0,-0.13605 -120047,7200:350:2,-0.5,25,0,0,-0.13605 -120048,1200:350:2,0,25,0,0,-0.13605 -120049,1200:350:2,0.5,25,0,0,-0.13605 -120050,1200:351:1,1,25,0,0,-0.13605 -120051,1200:351:2,1.5,25,0,0,-0.13605 -120052,1200:352:1,2,25,0,0,-0.13605 -120053,1200:352:2,2.5,25,0,0,-0.13605 -120054,1200:353:1,3,25,0,0,-0.13605 -120055,1200:353:2,3.5,25,0,0,-0.13605 -120056,1200:354:1,4,25,0,0,-0.13605 -120057,1200:354:2,4.5,25,0,0,-0.13605 -120058,1200:455:1,5,25,0,0,-0.13605 -120059,1200:455:2,5.5,25,0,0,-0.13605 -120060,1200:456:1,6,25,0,0,-0.13605 -120061,1200:456:2,6.5,25,0,0,-0.13605 -120062,1200:457:1,7,25,0,0,-0.13605 -120063,1200:457:2,7.5,25,0,0,-0.13605 -120064,1200:458:1,8,25,0,0,-0.13605 -120065,1200:458:2,8.5,25,0,0,-0.13605 -120066,1200:459:1,9,25,0,0,-0.13605 -120067,1200:459:2,9.5,25,0,0,-0.13605 -120068,1201:350:1,10,25,0,0,-0.13605 -120069,1201:350:2,10.5,25,0,0,-0.13605 -120070,1201:351:1,11,25,0,0,-0.13605 -120071,1201:351:2,11.5,25,0,0,-0.13605 -120072,1201:352:1,12,25,0,0,-0.13605 -120073,1201:455:1,15,25,0,0,-0.13605 -120074,1201:455:2,15.5,25,0,0,-0.13605 -120075,1201:456:1,16,25,0,0,-0.13605 -120076,1201:456:2,16.5,25,0,0,-0.13605 -120077,1201:457:1,17,25,0,0,-0.13605 -120078,1201:457:2,17.5,25,0,0,-0.13605 -120079,1201:458:1,18,25,0,0,-0.13605 -120080,1201:458:2,18.5,25,0,0,-0.13605 -120081,1201:459:1,19,25,0,0,-0.13605 -120082,1201:459:2,19.5,25,0,0,-0.13605 -120083,1202:350:1,20,25,0,0,-0.13605 -120084,1202:350:2,20.5,25,0,0,-0.13605 -120085,1202:353:1,23,25,0,0,-0.13605 -120086,1202:353:2,23.5,25,0,0,-0.13605 -120087,1202:354:1,24,25,0,0,-0.13605 -120088,1202:354:2,24.5,25,0,0,-0.13605 -120089,1202:455:1,25,25,0,0,-0.13605 -120090,1202:455:2,25.5,25,0,0,-0.13605 -120091,1202:456:1,26,25,0,0,-0.13605 -120092,1202:456:2,26.5,25,0,0,-0.13605 -120093,1211:459:2,119.5,25,0,0,-0.0561161 -120094,1212:350:1,120,25,0,0,-0.0549252 -120095,1212:350:2,120.5,25,0,0,-0.0516044 -120096,1212:352:1,122,25,0,0,-0.0745803 -120097,1212:352:2,122.5,25,0,0,-0.0887713 -120098,1212:353:1,123,25,0,0,-0.116687 -120099,1212:353:2,123.5,25,0,0,-0.13605 -120100,1212:354:1,124,25,0,0,-0.13605 -120101,1212:354:2,124.5,25,0,0,-0.13605 -120102,1212:455:1,125,25,0,0,-0.13605 -120103,1212:455:2,125.5,25,0,0,-0.0826472 -120104,1212:456:1,126,25,0,0,-0.0593953 -120105,1212:456:2,126.5,25,0,0,-0.05239 -120106,1212:459:2,129.5,25,0,0,-0.13605 -120107,1213:350:1,130,25,0,0,-0.13605 -120108,1213:350:2,130.5,25,0,0,-0.13605 -120109,1213:351:1,131,25,0,0,-0.13605 -120110,1213:351:2,131.5,25,0,0,-0.13605 -120111,1213:352:1,132,25,0,0,-0.13605 -120112,1213:352:2,132.5,25,0,0,-0.13605 -120113,1213:353:1,133,25,0,0,-0.13605 -120114,1213:353:2,133.5,25,0,0,-0.13605 -120115,1213:354:1,134,25,0,0,-0.13605 -120116,1213:354:2,134.5,25,0,0,-0.13605 -120117,1213:455:1,135,25,0,0,-0.13605 -120118,1213:455:2,135.5,25,0,0,-0.13605 -120119,1213:456:1,136,25,0,0,-0.13605 -120120,1213:456:2,136.5,25,0,0,-0.13605 -120121,1213:457:1,137,25,0,0,-0.13605 -120122,1213:457:2,137.5,25,0,0,-0.13605 -120123,1213:458:1,138,25,0,0,-0.13605 -120124,1213:458:2,138.5,25,0,0,-0.13605 -120125,1213:459:1,139,25,0,0,-0.13605 -120126,1213:459:2,139.5,25,0,0,-0.13605 -120127,1214:351:2,141.5,25,0,0,-0.13605 -120128,1214:352:1,142,25,0,0,-0.13605 -120129,1214:352:2,142.5,25,0,0,-0.13605 -120130,1214:353:1,143,25,0,0,-0.13605 -120131,1214:353:2,143.5,25,0,0,-0.13605 -120132,1214:354:1,144,25,0,0,-0.13605 -120133,1214:354:2,144.5,25,0,0,-0.13605 -120134,1214:455:1,145,25,0,0,-0.13605 -120135,1214:455:2,145.5,25,0,0,-0.13605 -120136,1214:456:1,146,25,0,0,-0.13605 -120137,1214:456:2,146.5,25,0,0,-0.13605 -120138,1214:457:1,147,25,0,0,-0.13605 -120139,1214:457:2,147.5,25,0,0,-0.13605 -120140,1214:458:1,148,25,0,0,-0.13605 -120141,1214:458:2,148.5,25,0,0,-0.13605 -120142,1214:459:1,149,25,0,0,-0.13605 -120143,1214:459:2,149.5,25,0,0,-0.13605 -120144,1215:350:1,150,25,0,0,-0.13605 -120145,1215:350:2,150.5,25,0,0,-0.13605 -120146,1215:351:1,151,25,0,0,-0.13605 -120147,1215:351:2,151.5,25,0,0,-0.13605 -120148,1215:352:1,152,25,0,0,-0.13605 -120149,1215:352:2,152.5,25,0,0,-0.13605 -120150,1215:353:1,153,25,0,0,-0.13605 -120151,1215:353:2,153.5,25,0,0,-0.13605 -120152,1215:354:1,154,25,0,0,-0.13605 -120153,1215:354:2,154.5,25,0,0,-0.13605 -120154,1215:455:1,155,25,0,0,-0.13605 -120155,1215:455:2,155.5,25,0,0,-0.13605 -120156,1215:456:1,156,25,0,0,-0.13605 -120157,1215:456:2,156.5,25,0,0,-0.13605 -120158,1215:457:1,157,25,0,0,-0.13605 -120159,1215:457:2,157.5,25,0,0,-0.13605 -120160,1215:458:1,158,25,0,0,-0.13605 -120161,1215:458:2,158.5,25,0,0,-0.13605 -120162,1215:459:1,159,25,0,0,-0.13605 -120163,1215:459:2,159.5,25,0,0,-0.13605 -120164,1216:350:1,160,25,0,0,-0.13605 -120165,1216:350:2,160.5,25,0,0,-0.13605 -120166,1216:351:1,161,25,0,0,-0.13605 -120167,1216:351:2,161.5,25,0,0,-0.13605 -120168,1216:352:1,162,25,0,0,-0.13605 -120169,1216:352:2,162.5,25,0,0,-0.13605 -120170,1216:353:1,163,25,0,0,-0.13605 -120171,1216:353:2,163.5,25,0,0,-0.13605 -120172,1216:354:1,164,25,0,0,-0.13605 -120173,1216:354:2,164.5,25,0,0,-0.13605 -120174,1216:455:1,165,25,0,0,-0.13605 -120175,1216:455:2,165.5,25,0,0,-0.13605 -120176,1216:456:1,166,25,0,0,-0.13605 -120177,1216:456:2,166.5,25,0,0,-0.13605 -120178,1216:457:1,167,25,0,0,-0.13605 -120179,1216:457:2,167.5,25,0,0,-0.13605 -120180,1216:458:1,168,25,0,0,-0.13605 -120181,1216:458:2,168.5,25,0,0,-0.13605 -120182,1216:459:1,169,25,0,0,-0.13605 -120183,1216:459:2,169.5,25,0,0,-0.13605 -120184,1217:350:1,170,25,0,0,-0.13605 -120185,1217:350:2,170.5,25,0,0,-0.13605 -120186,1217:351:1,171,25,0,0,-0.13605 -120187,1217:351:2,171.5,25,0,0,-0.13605 -120188,1217:352:1,172,25,0,0,-0.13605 -120189,1217:352:2,172.5,25,0,0,-0.13605 -120190,1217:353:1,173,25,0,0,-0.13605 -120191,1217:353:2,173.5,25,0,0,-0.13605 -120192,1217:354:1,174,25,0,0,-0.13605 -120193,1217:354:2,174.5,25,0,0,-0.13605 -120194,1217:455:1,175,25,0,0,-0.13605 -120195,1217:455:2,175.5,25,0,0,-0.13605 -120196,1217:456:1,176,25,0,0,-0.13605 -120197,1217:456:2,176.5,25,0,0,-0.13605 -120198,1217:457:1,177,25,0,0,-0.13605 -120199,1217:457:2,177.5,25,0,0,-0.13605 -120200,1217:458:1,178,25,0,0,-0.13605 -120201,1217:458:2,178.5,25,0,0,-0.13605 -120202,1217:459:1,179,25,0,0,-0.13605 -120203,1217:459:2,179.5,25,0,0,-0.13605 -120204,1218:350:1,180,25,0,0,-0.13605 -120205,7218:350:3,-180,25.5,0,0,-0.13605 -120206,7217:459:4,-179.5,25.5,0,0,-0.13605 -120207,7217:459:3,-179,25.5,0,0,-0.13605 -120208,7217:458:4,-178.5,25.5,0,0,-0.13605 -120209,7217:458:3,-178,25.5,0,0,-0.13605 -120210,7217:457:4,-177.5,25.5,0,0,-0.13605 -120211,7217:457:3,-177,25.5,0,0,-0.13605 -120212,7217:456:4,-176.5,25.5,0,0,-0.13605 -120213,7217:456:3,-176,25.5,0,0,-0.13605 -120214,7217:455:4,-175.5,25.5,0,0,-0.13605 -120215,7217:455:3,-175,25.5,0,0,-0.13605 -120216,7217:354:4,-174.5,25.5,0,0,-0.13605 -120217,7217:354:3,-174,25.5,0,0,-0.13605 -120218,7217:353:4,-173.5,25.5,0,0,-0.13605 -120219,7217:353:3,-173,25.5,0,0,-0.13605 -120220,7217:352:4,-172.5,25.5,0,0,-0.13605 -120221,7217:352:3,-172,25.5,0,0,-0.13605 -120222,7217:351:4,-171.5,25.5,0,0,-0.13605 -120223,7217:351:3,-171,25.5,0,0,-0.13605 -120224,7217:350:4,-170.5,25.5,0,0,-0.13605 -120225,7217:350:3,-170,25.5,0,0,-0.13605 -120226,7216:459:4,-169.5,25.5,0,0,-0.13605 -120227,7216:459:3,-169,25.5,0,0,-0.13605 -120228,7216:458:4,-168.5,25.5,0,0,-0.13605 -120229,7216:458:3,-168,25.5,0,0,-0.13605 -120230,7216:457:4,-167.5,25.5,0,0,-0.13605 -120231,7216:457:3,-167,25.5,0,0,-0.13605 -120232,7216:456:4,-166.5,25.5,0,0,-0.13605 -120233,7216:456:3,-166,25.5,0,0,-0.13605 -120234,7216:455:4,-165.5,25.5,0,0,-0.13605 -120235,7216:455:3,-165,25.5,0,0,-0.13605 -120236,7216:354:4,-164.5,25.5,0,0,-0.13605 -120237,7216:354:3,-164,25.5,0,0,-0.13605 -120238,7216:353:4,-163.5,25.5,0,0,-0.13605 -120239,7216:353:3,-163,25.5,0,0,-0.13605 -120240,7216:352:4,-162.5,25.5,0,0,-0.13605 -120241,7216:352:3,-162,25.5,0,0,-0.13605 -120242,7216:351:4,-161.5,25.5,0,0,-0.13605 -120243,7216:351:3,-161,25.5,0,0,-0.13605 -120244,7216:350:4,-160.5,25.5,0,0,-0.13605 -120245,7216:350:3,-160,25.5,0,0,-0.13605 -120246,7215:459:4,-159.5,25.5,0,0,-0.13605 -120247,7215:459:3,-159,25.5,0,0,-0.13605 -120248,7215:458:4,-158.5,25.5,0,0,-0.13605 -120249,7215:458:3,-158,25.5,0,0,-0.13605 -120250,7215:457:4,-157.5,25.5,0,0,-0.13605 -120251,7215:457:3,-157,25.5,0,0,-0.13605 -120252,7215:456:4,-156.5,25.5,0,0,-0.13605 -120253,7215:456:3,-156,25.5,0,0,-0.13605 -120254,7215:455:4,-155.5,25.5,0,0,-0.13605 -120255,7215:455:3,-155,25.5,0,0,-0.13605 -120256,7215:354:4,-154.5,25.5,0,0,-0.13605 -120257,7215:354:3,-154,25.5,0,0,-0.13605 -120258,7215:353:4,-153.5,25.5,0,0,-0.13605 -120259,7215:353:3,-153,25.5,0,0,-0.13605 -120260,7215:352:4,-152.5,25.5,0,0,-0.13605 -120261,7215:352:3,-152,25.5,0,0,-0.13605 -120262,7215:351:4,-151.5,25.5,0,0,-0.13605 -120263,7215:351:3,-151,25.5,0,0,-0.13605 -120264,7215:350:4,-150.5,25.5,0,0,-0.13605 -120265,7215:350:3,-150,25.5,0,0,-0.13605 -120266,7214:459:4,-149.5,25.5,0,0,-0.13605 -120267,7214:459:3,-149,25.5,0,0,-0.13605 -120268,7214:458:4,-148.5,25.5,0,0,-0.13605 -120269,7214:458:3,-148,25.5,0,0,-0.13605 -120270,7214:457:4,-147.5,25.5,0,0,-0.13605 -120271,7214:457:3,-147,25.5,0,0,-0.13605 -120272,7214:456:4,-146.5,25.5,0,0,-0.13605 -120273,7214:456:3,-146,25.5,0,0,-0.13605 -120274,7214:455:4,-145.5,25.5,0,0,-0.13605 -120275,7214:455:3,-145,25.5,0,0,-0.13605 -120276,7214:354:4,-144.5,25.5,0,0,-0.13605 -120277,7214:354:3,-144,25.5,0,0,-0.13605 -120278,7214:353:4,-143.5,25.5,0,0,-0.13605 -120279,7214:353:3,-143,25.5,0,0,-0.13605 -120280,7214:352:4,-142.5,25.5,0,0,-0.13605 -120281,7214:352:3,-142,25.5,0,0,-0.13605 -120282,7214:351:4,-141.5,25.5,0,0,-0.13605 -120283,7214:351:3,-141,25.5,0,0,-0.13605 -120284,7214:350:4,-140.5,25.5,0,0,-0.13605 -120285,7214:350:3,-140,25.5,0,0,-0.13605 -120286,7213:459:4,-139.5,25.5,0,0,-0.13605 -120287,7213:459:3,-139,25.5,0,0,-0.13605 -120288,7213:458:4,-138.5,25.5,0,0,-0.13605 -120289,7213:458:3,-138,25.5,0,0,-0.13605 -120290,7213:457:4,-137.5,25.5,0,0,-0.13605 -120291,7213:457:3,-137,25.5,0,0,-0.13605 -120292,7213:456:4,-136.5,25.5,0,0,-0.13605 -120293,7213:456:3,-136,25.5,0,0,-0.13605 -120294,7213:455:4,-135.5,25.5,0,0,-0.13605 -120295,7213:455:3,-135,25.5,0,0,-0.13605 -120296,7213:354:4,-134.5,25.5,0,0,-0.13605 -120297,7213:354:3,-134,25.5,0,0,-0.13605 -120298,7213:353:4,-133.5,25.5,0,0,-0.13605 -120299,7213:353:3,-133,25.5,0,0,-0.13605 -120300,7213:352:4,-132.5,25.5,0,0,-0.13605 -120301,7213:352:3,-132,25.5,0,0,-0.13605 -120302,7213:351:4,-131.5,25.5,0,0,-0.13605 -120303,7213:351:3,-131,25.5,0,0,-0.13605 -120304,7213:350:4,-130.5,25.5,0,0,-0.13605 -120305,7213:350:3,-130,25.5,0,0,-0.13605 -120306,7212:459:4,-129.5,25.5,0,0,-0.13605 -120307,7212:459:3,-129,25.5,0,0,-0.13605 -120308,7212:458:4,-128.5,25.5,0,0,-0.13605 -120309,7212:458:3,-128,25.5,0,0,-0.13605 -120310,7212:457:4,-127.5,25.5,0,0,-0.13605 -120311,7212:457:3,-127,25.5,0,0,-0.13605 -120312,7212:456:4,-126.5,25.5,0,0,-0.13605 -120313,7212:456:3,-126,25.5,0,0,-0.13605 -120314,7212:455:4,-125.5,25.5,0,0,-0.13605 -120315,7212:455:3,-125,25.5,0,0,-0.13605 -120316,7212:354:4,-124.5,25.5,0,0,-0.13605 -120317,7212:354:3,-124,25.5,0,0,-0.13605 -120318,7212:353:4,-123.5,25.5,0,0,-0.13605 -120319,7207:354:4,-74.5,25.5,0,0,-0.13605 -120320,7207:354:3,-74,25.5,0,0,-0.13605 -120321,7207:353:4,-73.5,25.5,0,0,-0.13605 -120322,7207:353:3,-73,25.5,0,0,-0.13605 -120323,7207:352:4,-72.5,25.5,0,0,-0.13605 -120324,7207:352:3,-72,25.5,0,0,-0.13605 -120325,7207:351:4,-71.5,25.5,0,0,-0.13605 -120326,7207:351:3,-71,25.5,0,0,-0.13605 -120327,7207:350:4,-70.5,25.5,0,0,-0.13605 -120328,7207:350:3,-70,25.5,0,0,-0.13605 -120329,7206:459:4,-69.5,25.5,0,0,-0.13605 -120330,7206:459:3,-69,25.5,0,0,-0.13605 -120331,7206:458:4,-68.5,25.5,0,0,-0.13605 -120332,7206:458:3,-68,25.5,0,0,-0.13605 -120333,7206:457:4,-67.5,25.5,0,0,-0.13605 -120334,7206:457:3,-67,25.5,0,0,-0.13605 -120335,7206:456:4,-66.5,25.5,0,0,-0.13605 -120336,7206:456:3,-66,25.5,0,0,-0.13605 -120337,7206:455:4,-65.5,25.5,0,0,-0.13605 -120338,7206:455:3,-65,25.5,0,0,-0.13605 -120339,7206:354:4,-64.5,25.5,0,0,-0.13605 -120340,7206:354:3,-64,25.5,0,0,-0.13605 -120341,7206:353:4,-63.5,25.5,0,0,-0.13605 -120342,7206:353:3,-63,25.5,0,0,-0.13605 -120343,7206:352:4,-62.5,25.5,0,0,-0.13605 -120344,7206:352:3,-62,25.5,0,0,-0.13605 -120345,7206:351:4,-61.5,25.5,0,0,-0.13605 -120346,7206:351:3,-61,25.5,0,0,-0.13605 -120347,7206:350:4,-60.5,25.5,0,0,-0.13605 -120348,7206:350:3,-60,25.5,0,0,-0.13605 -120349,7205:459:4,-59.5,25.5,0,0,-0.13605 -120350,7205:459:3,-59,25.5,0,0,-0.13605 -120351,7205:458:4,-58.5,25.5,0,0,-0.13605 -120352,7205:458:3,-58,25.5,0,0,-0.13605 -120353,7205:457:4,-57.5,25.5,0,0,-0.13605 -120354,7205:457:3,-57,25.5,0,0,-0.13605 -120355,7205:456:4,-56.5,25.5,0,0,-0.13605 -120356,7205:456:3,-56,25.5,0,0,-0.13605 -120357,7205:455:4,-55.5,25.5,0,0,-0.13605 -120358,7205:455:3,-55,25.5,0,0,-0.13605 -120359,7205:354:4,-54.5,25.5,0,0,-0.13605 -120360,7205:354:3,-54,25.5,0,0,-0.13605 -120361,7205:353:4,-53.5,25.5,0,0,-0.13605 -120362,7205:353:3,-53,25.5,0,0,-0.13605 -120363,7205:352:4,-52.5,25.5,0,0,-0.13605 -120364,7205:352:3,-52,25.5,0,0,-0.13605 -120365,7205:351:4,-51.5,25.5,0,0,-0.13605 -120366,7205:351:3,-51,25.5,0,0,-0.13605 -120367,7205:350:4,-50.5,25.5,0,0,-0.13605 -120368,7205:350:3,-50,25.5,0,0,-0.13605 -120369,7204:459:4,-49.5,25.5,0,0,-0.13605 -120370,7204:459:3,-49,25.5,0,0,-0.13605 -120371,7204:458:4,-48.5,25.5,0,0,-0.13605 -120372,7204:458:3,-48,25.5,0,0,-0.13605 -120373,7204:457:4,-47.5,25.5,0,0,-0.13605 -120374,7204:457:3,-47,25.5,0,0,-0.13605 -120375,7204:456:4,-46.5,25.5,0,0,-0.13605 -120376,7204:456:3,-46,25.5,0,0,-0.13605 -120377,7204:455:4,-45.5,25.5,0,0,-0.13605 -120378,7204:455:3,-45,25.5,0,0,-0.13605 -120379,7204:354:4,-44.5,25.5,0,0,-0.13605 -120380,7204:354:3,-44,25.5,0,0,-0.13605 -120381,7204:353:4,-43.5,25.5,0,0,-0.13605 -120382,7204:353:3,-43,25.5,0,0,-0.13605 -120383,7204:352:4,-42.5,25.5,0,0,-0.13605 -120384,7204:352:3,-42,25.5,0,0,-0.13605 -120385,7204:351:4,-41.5,25.5,0,0,-0.13605 -120386,7204:351:3,-41,25.5,0,0,-0.13605 -120387,7204:350:4,-40.5,25.5,0,0,-0.13605 -120388,7204:350:3,-40,25.5,0,0,-0.13605 -120389,7203:459:4,-39.5,25.5,0,0,-0.13605 -120390,7203:459:3,-39,25.5,0,0,-0.13605 -120391,7203:458:4,-38.5,25.5,0,0,-0.13605 -120392,7203:458:3,-38,25.5,0,0,-0.13605 -120393,7203:457:4,-37.5,25.5,0,0,-0.13605 -120394,7203:457:3,-37,25.5,0,0,-0.13605 -120395,7203:456:4,-36.5,25.5,0,0,-0.13605 -120396,7203:456:3,-36,25.5,0,0,-0.13605 -120397,7203:455:4,-35.5,25.5,0,0,-0.13605 -120398,7203:455:3,-35,25.5,0,0,-0.13605 -120399,7203:354:4,-34.5,25.5,0,0,-0.13605 -120400,7203:354:3,-34,25.5,0,0,-0.13605 -120401,7203:353:4,-33.5,25.5,0,0,-0.13605 -120402,7203:353:3,-33,25.5,0,0,-0.13605 -120403,7203:352:4,-32.5,25.5,0,0,-0.13605 -120404,7203:352:3,-32,25.5,0,0,-0.13605 -120405,7203:351:4,-31.5,25.5,0,0,-0.13605 -120406,7203:351:3,-31,25.5,0,0,-0.13605 -120407,7203:350:4,-30.5,25.5,0,0,-0.13605 -120408,7203:350:3,-30,25.5,0,0,-0.13605 -120409,7202:459:4,-29.5,25.5,0,0,-0.13605 -120410,7202:459:3,-29,25.5,0,0,-0.13605 -120411,7202:458:4,-28.5,25.5,0,0,-0.13605 -120412,7202:458:3,-28,25.5,0,0,-0.13605 -120413,7202:457:4,-27.5,25.5,0,0,-0.13605 -120414,7202:457:3,-27,25.5,0,0,-0.13605 -120415,7202:456:4,-26.5,25.5,0,0,-0.13605 -120416,7202:456:3,-26,25.5,0,0,-0.13605 -120417,7202:455:4,-25.5,25.5,0,0,-0.13605 -120418,7202:455:3,-25,25.5,0,0,-0.13605 -120419,7202:354:4,-24.5,25.5,0,0,-0.13605 -120420,7202:354:3,-24,25.5,0,0,-0.13605 -120421,7202:353:4,-23.5,25.5,0,0,-0.13605 -120422,7202:353:3,-23,25.5,0,0,-0.13605 -120423,7202:352:4,-22.5,25.5,0,0,-0.13605 -120424,7202:352:3,-22,25.5,0,0,-0.13605 -120425,7202:351:4,-21.5,25.5,0,0,-0.13605 -120426,7202:351:3,-21,25.5,0,0,-0.13605 -120427,7202:350:4,-20.5,25.5,0,0,-0.13605 -120428,7202:350:3,-20,25.5,0,0,-0.13605 -120429,7201:459:4,-19.5,25.5,0,0,-0.13605 -120430,7201:459:3,-19,25.5,0,0,-0.13605 -120431,7201:458:4,-18.5,25.5,0,0,-0.13605 -120432,7201:458:3,-18,25.5,0,0,-0.13605 -120433,7201:457:4,-17.5,25.5,0,0,-0.13605 -120434,7201:457:3,-17,25.5,0,0,-0.13605 -120435,7201:456:4,-16.5,25.5,0,0,-0.13605 -120436,7201:456:3,-16,25.5,0,0,-0.13605 -120437,7201:455:4,-15.5,25.5,0,0,-0.13605 -120438,7201:455:3,-15,25.5,0,0,-0.13605 -120439,7201:354:4,-14.5,25.5,0,0,-0.13605 -120440,7201:354:3,-14,25.5,0,0,-0.13605 -120441,7201:353:4,-13.5,25.5,0,0,-0.13605 -120442,7201:353:3,-13,25.5,0,0,-0.13605 -120443,7201:352:4,-12.5,25.5,0,0,-0.13605 -120444,7201:352:3,-12,25.5,0,0,-0.13605 -120445,7201:351:4,-11.5,25.5,0,0,-0.13605 -120446,7201:351:3,-11,25.5,0,0,-0.13605 -120447,7201:350:4,-10.5,25.5,0,0,-0.13605 -120448,7201:350:3,-10,25.5,0,0,-0.13605 -120449,1200:350:4,0,25.5,0,0,-0.13605 -120450,1200:350:4,0.5,25.5,0,0,-0.13605 -120451,1200:351:3,1,25.5,0,0,-0.13605 -120452,1200:351:4,1.5,25.5,0,0,-0.13605 -120453,1200:352:3,2,25.5,0,0,-0.13605 -120454,1200:352:4,2.5,25.5,0,0,-0.13605 -120455,1200:353:3,3,25.5,0,0,-0.13605 -120456,1200:353:4,3.5,25.5,0,0,-0.13605 -120457,1200:354:3,4,25.5,0,0,-0.13605 -120458,1200:354:4,4.5,25.5,0,0,-0.13605 -120459,1200:455:3,5,25.5,0,0,-0.13605 -120460,1200:455:4,5.5,25.5,0,0,-0.13605 -120461,1200:456:3,6,25.5,0,0,-0.13605 -120462,1200:456:4,6.5,25.5,0,0,-0.13605 -120463,1200:457:3,7,25.5,0,0,-0.13605 -120464,1200:457:4,7.5,25.5,0,0,-0.13605 -120465,1200:458:3,8,25.5,0,0,-0.13605 -120466,1200:458:4,8.5,25.5,0,0,-0.13605 -120467,1200:459:3,9,25.5,0,0,-0.13605 -120468,1200:459:4,9.5,25.5,0,0,-0.13605 -120469,1201:350:3,10,25.5,0,0,-0.13605 -120470,1201:350:4,10.5,25.5,0,0,-0.13605 -120471,1201:351:3,11,25.5,0,0,-0.13605 -120472,1201:351:4,11.5,25.5,0,0,-0.13605 -120473,1201:352:3,12,25.5,0,0,-0.13605 -120474,1201:352:4,12.5,25.5,0,0,-0.13605 -120475,1201:353:3,13,25.5,0,0,-0.13605 -120476,1201:353:4,13.5,25.5,0,0,-0.13605 -120477,1201:354:3,14,25.5,0,0,-0.13605 -120478,1201:354:4,14.5,25.5,0,0,-0.13605 -120479,1201:455:3,15,25.5,0,0,-0.13605 -120480,1201:456:4,16.5,25.5,0,0,-0.13605 -120481,1201:457:3,17,25.5,0,0,-0.13605 -120482,1201:457:4,17.5,25.5,0,0,-0.13605 -120483,1201:458:3,18,25.5,0,0,-0.13605 -120484,1201:458:4,18.5,25.5,0,0,-0.13605 -120485,1201:459:3,19,25.5,0,0,-0.13605 -120486,1201:459:4,19.5,25.5,0,0,-0.13605 -120487,1202:350:4,20.5,25.5,0,0,-0.13605 -120488,1202:354:3,24,25.5,0,0,-0.13605 -120489,1202:354:4,24.5,25.5,0,0,-0.13605 -120490,1202:455:3,25,25.5,0,0,-0.13605 -120491,1202:455:4,25.5,25.5,0,0,-0.13605 -120492,1202:456:3,26,25.5,0,0,-0.13605 -120493,1211:459:4,119.5,25.5,0,0,-0.062027 -120494,1212:350:3,120,25.5,0,0,-0.0671117 -120495,1212:350:4,120.5,25.5,0,0,-0.0686008 -120496,1212:351:3,121,25.5,0,0,-0.0702574 -120497,1212:351:4,121.5,25.5,0,0,-0.104822 -120498,1212:352:3,122,25.5,0,0,-0.13605 -120499,1212:352:4,122.5,25.5,0,0,-0.13605 -120500,1212:353:3,123,25.5,0,0,-0.13605 -120501,1212:353:4,123.5,25.5,0,0,-0.13605 -120502,1212:354:3,124,25.5,0,0,-0.13605 -120503,1212:354:4,124.5,25.5,0,0,-0.13605 -120504,1212:455:3,125,25.5,0,0,-0.110783 -120505,1212:459:3,129,25.5,0,0,-0.13605 -120506,1212:459:4,129.5,25.5,0,0,-0.13605 -120507,1213:350:3,130,25.5,0,0,-0.13605 -120508,1213:350:4,130.5,25.5,0,0,-0.13605 -120509,1213:351:3,131,25.5,0,0,-0.13605 -120510,1213:351:4,131.5,25.5,0,0,-0.13605 -120511,1213:352:3,132,25.5,0,0,-0.13605 -120512,1213:352:4,132.5,25.5,0,0,-0.13605 -120513,1213:353:3,133,25.5,0,0,-0.13605 -120514,1213:353:4,133.5,25.5,0,0,-0.13605 -120515,1213:354:3,134,25.5,0,0,-0.13605 -120516,1213:354:4,134.5,25.5,0,0,-0.13605 -120517,1213:455:3,135,25.5,0,0,-0.13605 -120518,1213:455:4,135.5,25.5,0,0,-0.13605 -120519,1213:456:3,136,25.5,0,0,-0.13605 -120520,1213:456:4,136.5,25.5,0,0,-0.13605 -120521,1213:457:3,137,25.5,0,0,-0.13605 -120522,1213:457:4,137.5,25.5,0,0,-0.13605 -120523,1213:458:3,138,25.5,0,0,-0.13605 -120524,1213:458:4,138.5,25.5,0,0,-0.13605 -120525,1213:459:3,139,25.5,0,0,-0.13605 -120526,1213:459:4,139.5,25.5,0,0,-0.13605 -120527,1214:350:3,140,25.5,0,0,-0.13605 -120528,1214:352:3,142,25.5,0,0,-0.13605 -120529,1214:352:4,142.5,25.5,0,0,-0.13605 -120530,1214:353:3,143,25.5,0,0,-0.13605 -120531,1214:353:4,143.5,25.5,0,0,-0.13605 -120532,1214:354:3,144,25.5,0,0,-0.13605 -120533,1214:354:4,144.5,25.5,0,0,-0.13605 -120534,1214:455:3,145,25.5,0,0,-0.13605 -120535,1214:455:4,145.5,25.5,0,0,-0.13605 -120536,1214:456:3,146,25.5,0,0,-0.13605 -120537,1214:456:4,146.5,25.5,0,0,-0.13605 -120538,1214:457:3,147,25.5,0,0,-0.13605 -120539,1214:457:4,147.5,25.5,0,0,-0.13605 -120540,1214:458:3,148,25.5,0,0,-0.13605 -120541,1214:458:4,148.5,25.5,0,0,-0.13605 -120542,1214:459:3,149,25.5,0,0,-0.13605 -120543,1214:459:4,149.5,25.5,0,0,-0.13605 -120544,1215:350:3,150,25.5,0,0,-0.13605 -120545,1215:350:4,150.5,25.5,0,0,-0.13605 -120546,1215:351:3,151,25.5,0,0,-0.13605 -120547,1215:351:4,151.5,25.5,0,0,-0.13605 -120548,1215:352:3,152,25.5,0,0,-0.13605 -120549,1215:352:4,152.5,25.5,0,0,-0.13605 -120550,1215:353:3,153,25.5,0,0,-0.13605 -120551,1215:353:4,153.5,25.5,0,0,-0.13605 -120552,1215:354:3,154,25.5,0,0,-0.13605 -120553,1215:354:4,154.5,25.5,0,0,-0.13605 -120554,1215:455:3,155,25.5,0,0,-0.13605 -120555,1215:455:4,155.5,25.5,0,0,-0.13605 -120556,1215:456:3,156,25.5,0,0,-0.13605 -120557,1215:456:4,156.5,25.5,0,0,-0.13605 -120558,1215:457:3,157,25.5,0,0,-0.13605 -120559,1215:457:4,157.5,25.5,0,0,-0.13605 -120560,1215:458:3,158,25.5,0,0,-0.13605 -120561,1215:458:4,158.5,25.5,0,0,-0.13605 -120562,1215:459:3,159,25.5,0,0,-0.13605 -120563,1215:459:4,159.5,25.5,0,0,-0.13605 -120564,1216:350:3,160,25.5,0,0,-0.13605 -120565,1216:350:4,160.5,25.5,0,0,-0.13605 -120566,1216:351:3,161,25.5,0,0,-0.13605 -120567,1216:351:4,161.5,25.5,0,0,-0.13605 -120568,1216:352:3,162,25.5,0,0,-0.13605 -120569,1216:352:4,162.5,25.5,0,0,-0.13605 -120570,1216:353:3,163,25.5,0,0,-0.13605 -120571,1216:353:4,163.5,25.5,0,0,-0.13605 -120572,1216:354:3,164,25.5,0,0,-0.13605 -120573,1216:354:4,164.5,25.5,0,0,-0.13605 -120574,1216:455:3,165,25.5,0,0,-0.13605 -120575,1216:455:4,165.5,25.5,0,0,-0.13605 -120576,1216:456:3,166,25.5,0,0,-0.13605 -120577,1216:456:4,166.5,25.5,0,0,-0.13605 -120578,1216:457:3,167,25.5,0,0,-0.13605 -120579,1216:457:4,167.5,25.5,0,0,-0.13605 -120580,1216:458:3,168,25.5,0,0,-0.13605 -120581,1216:458:4,168.5,25.5,0,0,-0.13605 -120582,1216:459:3,169,25.5,0,0,-0.13605 -120583,1216:459:4,169.5,25.5,0,0,-0.13605 -120584,1217:350:3,170,25.5,0,0,-0.13605 -120585,1217:350:4,170.5,25.5,0,0,-0.13605 -120586,1217:351:3,171,25.5,0,0,-0.13605 -120587,1217:351:4,171.5,25.5,0,0,-0.13605 -120588,1217:352:3,172,25.5,0,0,-0.13605 -120589,1217:352:4,172.5,25.5,0,0,-0.13605 -120590,1217:353:3,173,25.5,0,0,-0.13605 -120591,1217:353:4,173.5,25.5,0,0,-0.13605 -120592,1217:354:3,174,25.5,0,0,-0.13605 -120593,1217:354:4,174.5,25.5,0,0,-0.13605 -120594,1217:455:3,175,25.5,0,0,-0.13605 -120595,1217:455:4,175.5,25.5,0,0,-0.13605 -120596,1217:456:3,176,25.5,0,0,-0.13605 -120597,1217:456:4,176.5,25.5,0,0,-0.13605 -120598,1217:457:3,177,25.5,0,0,-0.13605 -120599,1217:457:4,177.5,25.5,0,0,-0.13605 -120600,1217:458:3,178,25.5,0,0,-0.13605 -120601,1217:458:4,178.5,25.5,0,0,-0.13605 -120602,1217:459:3,179,25.5,0,0,-0.13605 -120603,1217:459:4,179.5,25.5,0,0,-0.13605 -120604,1218:350:3,180,25.5,0,0,-0.13605 -120605,7218:360:1,-180,26,0,0,-0.13605 -120606,7217:469:2,-179.5,26,0,0,-0.13605 -120607,7217:469:1,-179,26,0,0,-0.13605 -120608,7217:468:2,-178.5,26,0,0,-0.13605 -120609,7217:468:1,-178,26,0,0,-0.13605 -120610,7217:467:2,-177.5,26,0,0,-0.13605 -120611,7217:467:1,-177,26,0,0,-0.13605 -120612,7217:466:2,-176.5,26,0,0,-0.13605 -120613,7217:466:1,-176,26,0,0,-0.13605 -120614,7217:465:2,-175.5,26,0,0,-0.134689 -120615,7217:465:1,-175,26,0,0,-0.132282 -120616,7217:364:2,-174.5,26,0,0,-0.129794 -120617,7217:364:1,-174,26,0,0,-0.127262 -120618,7217:363:2,-173.5,26,0,0,-0.128121 -120619,7217:363:1,-173,26,0,0,-0.133915 -120620,7217:362:2,-172.5,26,0,0,-0.13605 -120621,7217:362:1,-172,26,0,0,-0.13605 -120622,7217:361:2,-171.5,26,0,0,-0.13415 -120623,7217:361:1,-171,26,0,0,-0.130249 -120624,7217:360:2,-170.5,26,0,0,-0.128345 -120625,7217:360:1,-170,26,0,0,-0.135096 -120626,7216:469:2,-169.5,26,0,0,-0.13605 -120627,7216:469:1,-169,26,0,0,-0.13605 -120628,7216:468:2,-168.5,26,0,0,-0.13605 -120629,7216:468:1,-168,26,0,0,-0.13605 -120630,7216:467:2,-167.5,26,0,0,-0.13605 -120631,7216:467:1,-167,26,0,0,-0.13605 -120632,7216:466:2,-166.5,26,0,0,-0.134588 -120633,7216:466:1,-166,26,0,0,-0.134791 -120634,7216:465:2,-165.5,26,0,0,-0.135923 -120635,7216:465:1,-165,26,0,0,-0.135967 -120636,7216:364:2,-164.5,26,0,0,-0.13594 -120637,7216:364:1,-164,26,0,0,-0.136049 -120638,7216:363:2,-163.5,26,0,0,-0.13605 -120639,7216:363:1,-163,26,0,0,-0.13605 -120640,7216:362:2,-162.5,26,0,0,-0.13605 -120641,7216:362:1,-162,26,0,0,-0.13605 -120642,7216:361:2,-161.5,26,0,0,-0.13605 -120643,7216:361:1,-161,26,0,0,-0.13605 -120644,7216:360:2,-160.5,26,0,0,-0.13605 -120645,7216:360:1,-160,26,0,0,-0.13605 -120646,7215:469:2,-159.5,26,0,0,-0.13605 -120647,7215:469:1,-159,26,0,0,-0.13605 -120648,7215:468:2,-158.5,26,0,0,-0.13605 -120649,7215:468:1,-158,26,0,0,-0.13605 -120650,7215:467:2,-157.5,26,0,0,-0.13605 -120651,7215:467:1,-157,26,0,0,-0.13605 -120652,7215:466:2,-156.5,26,0,0,-0.13605 -120653,7215:466:1,-156,26,0,0,-0.13605 -120654,7215:465:2,-155.5,26,0,0,-0.13605 -120655,7215:465:1,-155,26,0,0,-0.13605 -120656,7215:364:2,-154.5,26,0,0,-0.13605 -120657,7215:364:1,-154,26,0,0,-0.13605 -120658,7215:363:2,-153.5,26,0,0,-0.13605 -120659,7215:363:1,-153,26,0,0,-0.13605 -120660,7215:362:2,-152.5,26,0,0,-0.13605 -120661,7215:362:1,-152,26,0,0,-0.13605 -120662,7215:361:2,-151.5,26,0,0,-0.13605 -120663,7215:361:1,-151,26,0,0,-0.13605 -120664,7215:360:2,-150.5,26,0,0,-0.13605 -120665,7215:360:1,-150,26,0,0,-0.13605 -120666,7214:469:2,-149.5,26,0,0,-0.13605 -120667,7214:469:1,-149,26,0,0,-0.13605 -120668,7214:468:2,-148.5,26,0,0,-0.13605 -120669,7214:468:1,-148,26,0,0,-0.13605 -120670,7214:467:2,-147.5,26,0,0,-0.13605 -120671,7214:467:1,-147,26,0,0,-0.13605 -120672,7214:466:2,-146.5,26,0,0,-0.13605 -120673,7214:466:1,-146,26,0,0,-0.13605 -120674,7214:465:2,-145.5,26,0,0,-0.13605 -120675,7214:465:1,-145,26,0,0,-0.13605 -120676,7214:364:2,-144.5,26,0,0,-0.13605 -120677,7214:364:1,-144,26,0,0,-0.13605 -120678,7214:363:2,-143.5,26,0,0,-0.13605 -120679,7214:363:1,-143,26,0,0,-0.13605 -120680,7214:362:2,-142.5,26,0,0,-0.13605 -120681,7214:362:1,-142,26,0,0,-0.13605 -120682,7214:361:2,-141.5,26,0,0,-0.13605 -120683,7214:361:1,-141,26,0,0,-0.13605 -120684,7214:360:2,-140.5,26,0,0,-0.13605 -120685,7214:360:1,-140,26,0,0,-0.13605 -120686,7213:469:2,-139.5,26,0,0,-0.13605 -120687,7213:469:1,-139,26,0,0,-0.13605 -120688,7213:468:2,-138.5,26,0,0,-0.13605 -120689,7213:468:1,-138,26,0,0,-0.13605 -120690,7213:467:2,-137.5,26,0,0,-0.13605 -120691,7213:467:1,-137,26,0,0,-0.13605 -120692,7213:466:2,-136.5,26,0,0,-0.13605 -120693,7213:466:1,-136,26,0,0,-0.13605 -120694,7213:465:2,-135.5,26,0,0,-0.13605 -120695,7213:465:1,-135,26,0,0,-0.13605 -120696,7213:364:2,-134.5,26,0,0,-0.13605 -120697,7213:364:1,-134,26,0,0,-0.13605 -120698,7213:363:2,-133.5,26,0,0,-0.13605 -120699,7213:363:1,-133,26,0,0,-0.13605 -120700,7213:362:2,-132.5,26,0,0,-0.13605 -120701,7213:362:1,-132,26,0,0,-0.13605 -120702,7213:361:2,-131.5,26,0,0,-0.13605 -120703,7213:361:1,-131,26,0,0,-0.13605 -120704,7213:360:2,-130.5,26,0,0,-0.13605 -120705,7213:360:1,-130,26,0,0,-0.13605 -120706,7212:469:2,-129.5,26,0,0,-0.13605 -120707,7212:469:1,-129,26,0,0,-0.13605 -120708,7212:468:2,-128.5,26,0,0,-0.13605 -120709,7212:468:1,-128,26,0,0,-0.13605 -120710,7212:467:2,-127.5,26,0,0,-0.13605 -120711,7212:467:1,-127,26,0,0,-0.13605 -120712,7212:466:2,-126.5,26,0,0,-0.13605 -120713,7212:466:1,-126,26,0,0,-0.13605 -120714,7212:465:2,-125.5,26,0,0,-0.13605 -120715,7212:465:1,-125,26,0,0,-0.13605 -120716,7212:364:2,-124.5,26,0,0,-0.13605 -120717,7212:364:1,-124,26,0,0,-0.13605 -120718,7207:465:1,-75,26,0,0,-0.13605 -120719,7207:364:2,-74.5,26,0,0,-0.13605 -120720,7207:364:1,-74,26,0,0,-0.13605 -120721,7207:363:2,-73.5,26,0,0,-0.13605 -120722,7207:363:1,-73,26,0,0,-0.13605 -120723,7207:362:2,-72.5,26,0,0,-0.13605 -120724,7207:362:1,-72,26,0,0,-0.13605 -120725,7207:361:2,-71.5,26,0,0,-0.13605 -120726,7207:361:1,-71,26,0,0,-0.13605 -120727,7207:360:2,-70.5,26,0,0,-0.13605 -120728,7207:360:1,-70,26,0,0,-0.13605 -120729,7206:469:2,-69.5,26,0,0,-0.13605 -120730,7206:469:1,-69,26,0,0,-0.13605 -120731,7206:468:2,-68.5,26,0,0,-0.13605 -120732,7206:468:1,-68,26,0,0,-0.13605 -120733,7206:467:2,-67.5,26,0,0,-0.13605 -120734,7206:467:1,-67,26,0,0,-0.13605 -120735,7206:466:2,-66.5,26,0,0,-0.13605 -120736,7206:466:1,-66,26,0,0,-0.13605 -120737,7206:465:2,-65.5,26,0,0,-0.13605 -120738,7206:465:1,-65,26,0,0,-0.13605 -120739,7206:364:2,-64.5,26,0,0,-0.13605 -120740,7206:364:1,-64,26,0,0,-0.13605 -120741,7206:363:2,-63.5,26,0,0,-0.13605 -120742,7206:363:1,-63,26,0,0,-0.13605 -120743,7206:362:2,-62.5,26,0,0,-0.13605 -120744,7206:362:1,-62,26,0,0,-0.13605 -120745,7206:361:2,-61.5,26,0,0,-0.13605 -120746,7206:361:1,-61,26,0,0,-0.13605 -120747,7206:360:2,-60.5,26,0,0,-0.13605 -120748,7206:360:1,-60,26,0,0,-0.13605 -120749,7205:469:2,-59.5,26,0,0,-0.13605 -120750,7205:469:1,-59,26,0,0,-0.13605 -120751,7205:468:2,-58.5,26,0,0,-0.13605 -120752,7205:468:1,-58,26,0,0,-0.13605 -120753,7205:467:2,-57.5,26,0,0,-0.13605 -120754,7205:467:1,-57,26,0,0,-0.13605 -120755,7205:466:2,-56.5,26,0,0,-0.13605 -120756,7205:466:1,-56,26,0,0,-0.13605 -120757,7205:465:2,-55.5,26,0,0,-0.13605 -120758,7205:465:1,-55,26,0,0,-0.13605 -120759,7205:364:2,-54.5,26,0,0,-0.13605 -120760,7205:364:1,-54,26,0,0,-0.13605 -120761,7205:363:2,-53.5,26,0,0,-0.13605 -120762,7205:363:1,-53,26,0,0,-0.13605 -120763,7205:362:2,-52.5,26,0,0,-0.13605 -120764,7205:362:1,-52,26,0,0,-0.13605 -120765,7205:361:2,-51.5,26,0,0,-0.13605 -120766,7205:361:1,-51,26,0,0,-0.13605 -120767,7205:360:2,-50.5,26,0,0,-0.13605 -120768,7205:360:1,-50,26,0,0,-0.13605 -120769,7204:469:2,-49.5,26,0,0,-0.13605 -120770,7204:469:1,-49,26,0,0,-0.13605 -120771,7204:468:2,-48.5,26,0,0,-0.13605 -120772,7204:468:1,-48,26,0,0,-0.13605 -120773,7204:467:2,-47.5,26,0,0,-0.13605 -120774,7204:467:1,-47,26,0,0,-0.13605 -120775,7204:466:2,-46.5,26,0,0,-0.13605 -120776,7204:466:1,-46,26,0,0,-0.13605 -120777,7204:465:2,-45.5,26,0,0,-0.13605 -120778,7204:465:1,-45,26,0,0,-0.13605 -120779,7204:364:2,-44.5,26,0,0,-0.13605 -120780,7204:364:1,-44,26,0,0,-0.13605 -120781,7204:363:2,-43.5,26,0,0,-0.13605 -120782,7204:363:1,-43,26,0,0,-0.13605 -120783,7204:362:2,-42.5,26,0,0,-0.13605 -120784,7204:362:1,-42,26,0,0,-0.13605 -120785,7204:361:2,-41.5,26,0,0,-0.13605 -120786,7204:361:1,-41,26,0,0,-0.13605 -120787,7204:360:2,-40.5,26,0,0,-0.13605 -120788,7204:360:1,-40,26,0,0,-0.13605 -120789,7203:469:2,-39.5,26,0,0,-0.13605 -120790,7203:469:1,-39,26,0,0,-0.13605 -120791,7203:468:2,-38.5,26,0,0,-0.13605 -120792,7203:468:1,-38,26,0,0,-0.13605 -120793,7203:467:2,-37.5,26,0,0,-0.13605 -120794,7203:467:1,-37,26,0,0,-0.13605 -120795,7203:466:2,-36.5,26,0,0,-0.13605 -120796,7203:466:1,-36,26,0,0,-0.13605 -120797,7203:465:2,-35.5,26,0,0,-0.13605 -120798,7203:465:1,-35,26,0,0,-0.13605 -120799,7203:364:2,-34.5,26,0,0,-0.13605 -120800,7203:364:1,-34,26,0,0,-0.13605 -120801,7203:363:2,-33.5,26,0,0,-0.13605 -120802,7203:363:1,-33,26,0,0,-0.13605 -120803,7203:362:2,-32.5,26,0,0,-0.13605 -120804,7203:362:1,-32,26,0,0,-0.13605 -120805,7203:361:2,-31.5,26,0,0,-0.13605 -120806,7203:361:1,-31,26,0,0,-0.13605 -120807,7203:360:2,-30.5,26,0,0,-0.13605 -120808,7203:360:1,-30,26,0,0,-0.13605 -120809,7202:469:2,-29.5,26,0,0,-0.13605 -120810,7202:469:1,-29,26,0,0,-0.13605 -120811,7202:468:2,-28.5,26,0,0,-0.13605 -120812,7202:468:1,-28,26,0,0,-0.13605 -120813,7202:467:2,-27.5,26,0,0,-0.13605 -120814,7202:467:1,-27,26,0,0,-0.13605 -120815,7202:466:2,-26.5,26,0,0,-0.13605 -120816,7202:466:1,-26,26,0,0,-0.13605 -120817,7202:465:2,-25.5,26,0,0,-0.13605 -120818,7202:465:1,-25,26,0,0,-0.13605 -120819,7202:364:2,-24.5,26,0,0,-0.13605 -120820,7202:364:1,-24,26,0,0,-0.13605 -120821,7202:363:2,-23.5,26,0,0,-0.13605 -120822,7202:363:1,-23,26,0,0,-0.13605 -120823,7202:362:2,-22.5,26,0,0,-0.13605 -120824,7202:362:1,-22,26,0,0,-0.13605 -120825,7202:361:2,-21.5,26,0,0,-0.13605 -120826,7202:361:1,-21,26,0,0,-0.13605 -120827,7202:360:2,-20.5,26,0,0,-0.13605 -120828,7202:360:1,-20,26,0,0,-0.13605 -120829,7201:469:2,-19.5,26,0,0,-0.13605 -120830,7201:469:1,-19,26,0,0,-0.13605 -120831,7201:468:2,-18.5,26,0,0,-0.13605 -120832,7201:468:1,-18,26,0,0,-0.13605 -120833,7201:467:2,-17.5,26,0,0,-0.13605 -120834,7201:467:1,-17,26,0,0,-0.13605 -120835,7201:466:2,-16.5,26,0,0,-0.13605 -120836,7201:466:1,-16,26,0,0,-0.13605 -120837,7201:465:2,-15.5,26,0,0,-0.13605 -120838,7201:465:1,-15,26,0,0,-0.13605 -120839,7201:364:2,-14.5,26,0,0,-0.13605 -120840,7201:364:1,-14,26,0,0,-0.13605 -120841,7201:363:2,-13.5,26,0,0,-0.13605 -120842,7201:363:1,-13,26,0,0,-0.13605 -120843,7201:362:2,-12.5,26,0,0,-0.13605 -120844,7201:362:1,-12,26,0,0,-0.13605 -120845,7201:361:2,-11.5,26,0,0,-0.13605 -120846,7201:361:1,-11,26,0,0,-0.13605 -120847,7201:360:2,-10.5,26,0,0,-0.13605 -120848,7201:360:1,-10,26,0,0,-0.13605 -120849,7200:469:2,-9.5,26,0,0,-0.13605 -120850,7200:360:2,-0.5,26,0,0,-0.13605 -120851,1200:360:2,0,26,0,0,-0.13605 -120852,1200:360:2,0.5,26,0,0,-0.13605 -120853,1200:361:1,1,26,0,0,-0.13605 -120854,1200:361:2,1.5,26,0,0,-0.13605 -120855,1200:362:1,2,26,0,0,-0.13605 -120856,1200:363:1,3,26,0,0,-0.13605 -120857,1200:363:2,3.5,26,0,0,-0.13605 -120858,1200:364:1,4,26,0,0,-0.13605 -120859,1200:364:2,4.5,26,0,0,-0.13605 -120860,1200:465:1,5,26,0,0,-0.13605 -120861,1200:465:2,5.5,26,0,0,-0.13605 -120862,1200:466:1,6,26,0,0,-0.13605 -120863,1200:466:2,6.5,26,0,0,-0.13605 -120864,1200:467:1,7,26,0,0,-0.13605 -120865,1200:467:2,7.5,26,0,0,-0.13605 -120866,1200:469:2,9.5,26,0,0,-0.13605 -120867,1201:360:1,10,26,0,0,-0.13605 -120868,1201:360:2,10.5,26,0,0,-0.13605 -120869,1201:361:1,11,26,0,0,-0.13605 -120870,1201:361:2,11.5,26,0,0,-0.13605 -120871,1201:362:1,12,26,0,0,-0.13605 -120872,1201:362:2,12.5,26,0,0,-0.13605 -120873,1201:363:1,13,26,0,0,-0.13605 -120874,1201:363:2,13.5,26,0,0,-0.13605 -120875,1201:364:1,14,26,0,0,-0.13605 -120876,1201:364:2,14.5,26,0,0,-0.13605 -120877,1201:465:1,15,26,0,0,-0.13605 -120878,1201:465:2,15.5,26,0,0,-0.13605 -120879,1201:467:1,17,26,0,0,-0.13605 -120880,1201:467:2,17.5,26,0,0,-0.13605 -120881,1201:468:1,18,26,0,0,-0.13605 -120882,1201:468:2,18.5,26,0,0,-0.13605 -120883,1201:469:1,19,26,0,0,-0.13605 -120884,1201:469:2,19.5,26,0,0,-0.13605 -120885,1202:360:1,20,26,0,0,-0.13605 -120886,1202:363:2,23.5,26,0,0,-0.13605 -120887,1202:364:1,24,26,0,0,-0.13605 -120888,1202:364:2,24.5,26,0,0,-0.13605 -120889,1202:465:1,25,26,0,0,-0.13605 -120890,1202:465:2,25.5,26,0,0,-0.13605 -120891,1202:466:1,26,26,0,0,-0.13605 -120892,1211:468:2,118.5,26,0,0,-0.0488204 -120893,1211:469:1,119,26,0,0,-0.052683 -120894,1211:469:2,119.5,26,0,0,-0.067668 -120895,1212:360:1,120,26,0,0,-0.0853014 -120896,1212:360:2,120.5,26,0,0,-0.104566 -120897,1212:361:1,121,26,0,0,-0.122788 -120898,1212:361:2,121.5,26,0,0,-0.131392 -120899,1212:362:1,122,26,0,0,-0.13605 -120900,1212:362:2,122.5,26,0,0,-0.13605 -120901,1212:363:1,123,26,0,0,-0.13605 -120902,1212:363:2,123.5,26,0,0,-0.13605 -120903,1212:364:1,124,26,0,0,-0.13591 -120904,1212:364:2,124.5,26,0,0,-0.121336 -120905,1212:465:1,125,26,0,0,-0.0907591 -120906,1212:465:2,125.5,26,0,0,-0.0501048 -120907,1212:468:2,128.5,26,0,0,-0.13605 -120908,1212:469:1,129,26,0,0,-0.13605 -120909,1212:469:2,129.5,26,0,0,-0.13605 -120910,1213:360:1,130,26,0,0,-0.13605 -120911,1213:360:2,130.5,26,0,0,-0.13605 -120912,1213:361:1,131,26,0,0,-0.13605 -120913,1213:361:2,131.5,26,0,0,-0.13605 -120914,1213:362:1,132,26,0,0,-0.13605 -120915,1213:362:2,132.5,26,0,0,-0.13605 -120916,1213:363:1,133,26,0,0,-0.13605 -120917,1213:363:2,133.5,26,0,0,-0.13605 -120918,1213:364:1,134,26,0,0,-0.13605 -120919,1213:364:2,134.5,26,0,0,-0.13605 -120920,1213:465:1,135,26,0,0,-0.13605 -120921,1213:465:2,135.5,26,0,0,-0.13605 -120922,1213:466:1,136,26,0,0,-0.13605 -120923,1213:466:2,136.5,26,0,0,-0.13605 -120924,1213:467:1,137,26,0,0,-0.13605 -120925,1213:467:2,137.5,26,0,0,-0.13605 -120926,1213:468:1,138,26,0,0,-0.13605 -120927,1213:468:2,138.5,26,0,0,-0.13605 -120928,1213:469:1,139,26,0,0,-0.13605 -120929,1213:469:2,139.5,26,0,0,-0.13605 -120930,1214:360:1,140,26,0,0,-0.13605 -120931,1214:362:2,142.5,26,0,0,-0.13605 -120932,1214:363:1,143,26,0,0,-0.13605 -120933,1214:363:2,143.5,26,0,0,-0.13605 -120934,1214:364:1,144,26,0,0,-0.13605 -120935,1214:364:2,144.5,26,0,0,-0.13605 -120936,1214:465:1,145,26,0,0,-0.13605 -120937,1214:465:2,145.5,26,0,0,-0.13605 -120938,1214:466:1,146,26,0,0,-0.13605 -120939,1214:466:2,146.5,26,0,0,-0.13605 -120940,1214:467:1,147,26,0,0,-0.13605 -120941,1214:467:2,147.5,26,0,0,-0.13605 -120942,1214:468:1,148,26,0,0,-0.13605 -120943,1214:468:2,148.5,26,0,0,-0.13605 -120944,1214:469:1,149,26,0,0,-0.13605 -120945,1214:469:2,149.5,26,0,0,-0.13605 -120946,1215:360:1,150,26,0,0,-0.13605 -120947,1215:360:2,150.5,26,0,0,-0.13605 -120948,1215:361:1,151,26,0,0,-0.13605 -120949,1215:361:2,151.5,26,0,0,-0.13605 -120950,1215:362:1,152,26,0,0,-0.13605 -120951,1215:362:2,152.5,26,0,0,-0.13605 -120952,1215:363:1,153,26,0,0,-0.13605 -120953,1215:363:2,153.5,26,0,0,-0.13605 -120954,1215:364:1,154,26,0,0,-0.13605 -120955,1215:364:2,154.5,26,0,0,-0.13605 -120956,1215:465:1,155,26,0,0,-0.13605 -120957,1215:465:2,155.5,26,0,0,-0.13605 -120958,1215:466:1,156,26,0,0,-0.13605 -120959,1215:466:2,156.5,26,0,0,-0.13605 -120960,1215:467:1,157,26,0,0,-0.13605 -120961,1215:467:2,157.5,26,0,0,-0.13605 -120962,1215:468:1,158,26,0,0,-0.13605 -120963,1215:468:2,158.5,26,0,0,-0.13605 -120964,1215:469:1,159,26,0,0,-0.13605 -120965,1215:469:2,159.5,26,0,0,-0.13605 -120966,1216:360:1,160,26,0,0,-0.13605 -120967,1216:360:2,160.5,26,0,0,-0.13605 -120968,1216:361:1,161,26,0,0,-0.13605 -120969,1216:361:2,161.5,26,0,0,-0.13605 -120970,1216:362:1,162,26,0,0,-0.13605 -120971,1216:362:2,162.5,26,0,0,-0.13605 -120972,1216:363:1,163,26,0,0,-0.13605 -120973,1216:363:2,163.5,26,0,0,-0.13605 -120974,1216:364:1,164,26,0,0,-0.13605 -120975,1216:364:2,164.5,26,0,0,-0.13605 -120976,1216:465:1,165,26,0,0,-0.13605 -120977,1216:465:2,165.5,26,0,0,-0.13605 -120978,1216:466:1,166,26,0,0,-0.13605 -120979,1216:466:2,166.5,26,0,0,-0.13605 -120980,1216:467:1,167,26,0,0,-0.13605 -120981,1216:467:2,167.5,26,0,0,-0.13605 -120982,1216:468:1,168,26,0,0,-0.13605 -120983,1216:468:2,168.5,26,0,0,-0.13605 -120984,1216:469:1,169,26,0,0,-0.13605 -120985,1216:469:2,169.5,26,0,0,-0.13605 -120986,1217:360:1,170,26,0,0,-0.13605 -120987,1217:360:2,170.5,26,0,0,-0.13605 -120988,1217:361:1,171,26,0,0,-0.13605 -120989,1217:361:2,171.5,26,0,0,-0.13605 -120990,1217:362:1,172,26,0,0,-0.13605 -120991,1217:362:2,172.5,26,0,0,-0.13605 -120992,1217:363:1,173,26,0,0,-0.13605 -120993,1217:363:2,173.5,26,0,0,-0.13605 -120994,1217:364:1,174,26,0,0,-0.13605 -120995,1217:364:2,174.5,26,0,0,-0.13605 -120996,1217:465:1,175,26,0,0,-0.13605 -120997,1217:465:2,175.5,26,0,0,-0.13605 -120998,1217:466:1,176,26,0,0,-0.13605 -120999,1217:466:2,176.5,26,0,0,-0.13605 -121000,1217:467:1,177,26,0,0,-0.13605 -121001,1217:467:2,177.5,26,0,0,-0.13605 -121002,1217:468:1,178,26,0,0,-0.13605 -121003,1217:468:2,178.5,26,0,0,-0.13605 -121004,1217:469:1,179,26,0,0,-0.13605 -121005,1217:469:2,179.5,26,0,0,-0.13605 -121006,1218:360:1,180,26,0,0,-0.13605 -121007,7218:360:3,-180,26.5,0,0,-0.13605 -121008,7217:469:4,-179.5,26.5,0,0,-0.13605 -121009,7217:469:3,-179,26.5,0,0,-0.131556 -121010,7217:468:4,-178.5,26.5,0,0,-0.128633 -121011,7217:468:3,-178,26.5,0,0,-0.132183 -121012,7217:467:4,-177.5,26.5,0,0,-0.130803 -121013,7217:467:3,-177,26.5,0,0,-0.125283 -121014,7217:466:4,-176.5,26.5,0,0,-0.125532 -121015,7217:466:3,-176,26.5,0,0,-0.128089 -121016,7217:465:4,-175.5,26.5,0,0,-0.125594 -121017,7217:465:3,-175,26.5,0,0,-0.123001 -121018,7217:364:4,-174.5,26.5,0,0,-0.120915 -121019,7217:364:3,-174,26.5,0,0,-0.116774 -121020,7217:363:4,-173.5,26.5,0,0,-0.113791 -121021,7217:363:3,-173,26.5,0,0,-0.114072 -121022,7217:362:4,-172.5,26.5,0,0,-0.116084 -121023,7217:362:3,-172,26.5,0,0,-0.116917 -121024,7217:361:4,-171.5,26.5,0,0,-0.11617 -121025,7217:361:3,-171,26.5,0,0,-0.112677 -121026,7217:360:4,-170.5,26.5,0,0,-0.110702 -121027,7217:360:3,-170,26.5,0,0,-0.116831 -121028,7216:469:4,-169.5,26.5,0,0,-0.125376 -121029,7216:469:3,-169,26.5,0,0,-0.128859 -121030,7216:468:4,-168.5,26.5,0,0,-0.12597 -121031,7216:468:3,-168,26.5,0,0,-0.119724 -121032,7216:467:4,-167.5,26.5,0,0,-0.114352 -121033,7216:467:3,-167,26.5,0,0,-0.111411 -121034,7216:466:4,-166.5,26.5,0,0,-0.111685 -121035,7216:466:3,-166,26.5,0,0,-0.114522 -121036,7216:465:4,-165.5,26.5,0,0,-0.118722 -121037,7216:465:3,-165,26.5,0,0,-0.12011 -121038,7216:364:4,-164.5,26.5,0,0,-0.120527 -121039,7216:364:3,-164,26.5,0,0,-0.12212 -121040,7216:363:4,-163.5,26.5,0,0,-0.127167 -121041,7216:363:3,-163,26.5,0,0,-0.134419 -121042,7216:362:4,-162.5,26.5,0,0,-0.13605 -121043,7216:362:3,-162,26.5,0,0,-0.13605 -121044,7216:361:4,-161.5,26.5,0,0,-0.13605 -121045,7216:361:3,-161,26.5,0,0,-0.13605 -121046,7216:360:4,-160.5,26.5,0,0,-0.13605 -121047,7216:360:3,-160,26.5,0,0,-0.13605 -121048,7215:469:4,-159.5,26.5,0,0,-0.13605 -121049,7215:469:3,-159,26.5,0,0,-0.13605 -121050,7215:468:4,-158.5,26.5,0,0,-0.13605 -121051,7215:468:3,-158,26.5,0,0,-0.13605 -121052,7215:467:4,-157.5,26.5,0,0,-0.13605 -121053,7215:467:3,-157,26.5,0,0,-0.13605 -121054,7215:466:4,-156.5,26.5,0,0,-0.13605 -121055,7215:466:3,-156,26.5,0,0,-0.13605 -121056,7215:465:4,-155.5,26.5,0,0,-0.13605 -121057,7215:465:3,-155,26.5,0,0,-0.13605 -121058,7215:364:4,-154.5,26.5,0,0,-0.13605 -121059,7215:364:3,-154,26.5,0,0,-0.13605 -121060,7215:363:4,-153.5,26.5,0,0,-0.13605 -121061,7215:363:3,-153,26.5,0,0,-0.13605 -121062,7215:362:4,-152.5,26.5,0,0,-0.13605 -121063,7215:362:3,-152,26.5,0,0,-0.13605 -121064,7215:361:4,-151.5,26.5,0,0,-0.13605 -121065,7215:361:3,-151,26.5,0,0,-0.13605 -121066,7215:360:4,-150.5,26.5,0,0,-0.13605 -121067,7215:360:3,-150,26.5,0,0,-0.13605 -121068,7214:469:4,-149.5,26.5,0,0,-0.13605 -121069,7214:469:3,-149,26.5,0,0,-0.13605 -121070,7214:468:4,-148.5,26.5,0,0,-0.13605 -121071,7214:468:3,-148,26.5,0,0,-0.13605 -121072,7214:467:4,-147.5,26.5,0,0,-0.13605 -121073,7214:467:3,-147,26.5,0,0,-0.13605 -121074,7214:466:4,-146.5,26.5,0,0,-0.13605 -121075,7214:466:3,-146,26.5,0,0,-0.13605 -121076,7214:465:4,-145.5,26.5,0,0,-0.13605 -121077,7214:465:3,-145,26.5,0,0,-0.13605 -121078,7214:364:4,-144.5,26.5,0,0,-0.13605 -121079,7214:364:3,-144,26.5,0,0,-0.13605 -121080,7214:363:4,-143.5,26.5,0,0,-0.13605 -121081,7214:363:3,-143,26.5,0,0,-0.13605 -121082,7214:362:4,-142.5,26.5,0,0,-0.13605 -121083,7214:362:3,-142,26.5,0,0,-0.13605 -121084,7214:361:4,-141.5,26.5,0,0,-0.13605 -121085,7214:361:3,-141,26.5,0,0,-0.13605 -121086,7214:360:4,-140.5,26.5,0,0,-0.13605 -121087,7214:360:3,-140,26.5,0,0,-0.13605 -121088,7213:469:4,-139.5,26.5,0,0,-0.13605 -121089,7213:469:3,-139,26.5,0,0,-0.13605 -121090,7213:468:4,-138.5,26.5,0,0,-0.13605 -121091,7213:468:3,-138,26.5,0,0,-0.13605 -121092,7213:467:4,-137.5,26.5,0,0,-0.13605 -121093,7213:467:3,-137,26.5,0,0,-0.13605 -121094,7213:466:4,-136.5,26.5,0,0,-0.13605 -121095,7213:466:3,-136,26.5,0,0,-0.13605 -121096,7213:465:4,-135.5,26.5,0,0,-0.13605 -121097,7213:465:3,-135,26.5,0,0,-0.13605 -121098,7213:364:4,-134.5,26.5,0,0,-0.13605 -121099,7213:364:3,-134,26.5,0,0,-0.13605 -121100,7213:363:4,-133.5,26.5,0,0,-0.13605 -121101,7213:363:3,-133,26.5,0,0,-0.13605 -121102,7213:362:4,-132.5,26.5,0,0,-0.13605 -121103,7213:362:3,-132,26.5,0,0,-0.13605 -121104,7213:361:4,-131.5,26.5,0,0,-0.13605 -121105,7213:361:3,-131,26.5,0,0,-0.13605 -121106,7213:360:4,-130.5,26.5,0,0,-0.13605 -121107,7213:360:3,-130,26.5,0,0,-0.13605 -121108,7212:469:4,-129.5,26.5,0,0,-0.13605 -121109,7212:469:3,-129,26.5,0,0,-0.13605 -121110,7212:468:4,-128.5,26.5,0,0,-0.13605 -121111,7212:468:3,-128,26.5,0,0,-0.13605 -121112,7212:467:4,-127.5,26.5,0,0,-0.13605 -121113,7212:467:3,-127,26.5,0,0,-0.13605 -121114,7212:466:4,-126.5,26.5,0,0,-0.13605 -121115,7212:466:3,-126,26.5,0,0,-0.13605 -121116,7212:465:4,-125.5,26.5,0,0,-0.13605 -121117,7212:465:3,-125,26.5,0,0,-0.13605 -121118,7212:364:4,-124.5,26.5,0,0,-0.13605 -121119,7212:364:3,-124,26.5,0,0,-0.13605 -121120,7207:364:3,-74,26.5,0,0,-0.13605 -121121,7207:363:4,-73.5,26.5,0,0,-0.13605 -121122,7207:363:3,-73,26.5,0,0,-0.13605 -121123,7207:362:4,-72.5,26.5,0,0,-0.13605 -121124,7207:362:3,-72,26.5,0,0,-0.13605 -121125,7207:361:4,-71.5,26.5,0,0,-0.13605 -121126,7207:361:3,-71,26.5,0,0,-0.13605 -121127,7207:360:4,-70.5,26.5,0,0,-0.13605 -121128,7207:360:3,-70,26.5,0,0,-0.13605 -121129,7206:469:4,-69.5,26.5,0,0,-0.13605 -121130,7206:469:3,-69,26.5,0,0,-0.13605 -121131,7206:468:4,-68.5,26.5,0,0,-0.13605 -121132,7206:468:3,-68,26.5,0,0,-0.13605 -121133,7206:467:4,-67.5,26.5,0,0,-0.13605 -121134,7206:467:3,-67,26.5,0,0,-0.13605 -121135,7206:466:4,-66.5,26.5,0,0,-0.13605 -121136,7206:466:3,-66,26.5,0,0,-0.13605 -121137,7206:465:4,-65.5,26.5,0,0,-0.13605 -121138,7206:465:3,-65,26.5,0,0,-0.13605 -121139,7206:364:4,-64.5,26.5,0,0,-0.13605 -121140,7206:364:3,-64,26.5,0,0,-0.13605 -121141,7206:363:4,-63.5,26.5,0,0,-0.13605 -121142,7206:363:3,-63,26.5,0,0,-0.13605 -121143,7206:362:4,-62.5,26.5,0,0,-0.13605 -121144,7206:362:3,-62,26.5,0,0,-0.13605 -121145,7206:361:4,-61.5,26.5,0,0,-0.13605 -121146,7206:361:3,-61,26.5,0,0,-0.13605 -121147,7206:360:4,-60.5,26.5,0,0,-0.13605 -121148,7206:360:3,-60,26.5,0,0,-0.13605 -121149,7205:469:4,-59.5,26.5,0,0,-0.13605 -121150,7205:469:3,-59,26.5,0,0,-0.13605 -121151,7205:468:4,-58.5,26.5,0,0,-0.13605 -121152,7205:468:3,-58,26.5,0,0,-0.13605 -121153,7205:467:4,-57.5,26.5,0,0,-0.13605 -121154,7205:467:3,-57,26.5,0,0,-0.13605 -121155,7205:466:4,-56.5,26.5,0,0,-0.13605 -121156,7205:466:3,-56,26.5,0,0,-0.13605 -121157,7205:465:4,-55.5,26.5,0,0,-0.13605 -121158,7205:465:3,-55,26.5,0,0,-0.13605 -121159,7205:364:4,-54.5,26.5,0,0,-0.13605 -121160,7205:364:3,-54,26.5,0,0,-0.13605 -121161,7205:363:4,-53.5,26.5,0,0,-0.13605 -121162,7205:363:3,-53,26.5,0,0,-0.13605 -121163,7205:362:4,-52.5,26.5,0,0,-0.13605 -121164,7205:362:3,-52,26.5,0,0,-0.13605 -121165,7205:361:4,-51.5,26.5,0,0,-0.13605 -121166,7205:361:3,-51,26.5,0,0,-0.13605 -121167,7205:360:4,-50.5,26.5,0,0,-0.13605 -121168,7205:360:3,-50,26.5,0,0,-0.13605 -121169,7204:469:4,-49.5,26.5,0,0,-0.13605 -121170,7204:469:3,-49,26.5,0,0,-0.13605 -121171,7204:468:4,-48.5,26.5,0,0,-0.13605 -121172,7204:468:3,-48,26.5,0,0,-0.13605 -121173,7204:467:4,-47.5,26.5,0,0,-0.13605 -121174,7204:467:3,-47,26.5,0,0,-0.13605 -121175,7204:466:4,-46.5,26.5,0,0,-0.13605 -121176,7204:466:3,-46,26.5,0,0,-0.13605 -121177,7204:465:4,-45.5,26.5,0,0,-0.13605 -121178,7204:465:3,-45,26.5,0,0,-0.13605 -121179,7204:364:4,-44.5,26.5,0,0,-0.13605 -121180,7204:364:3,-44,26.5,0,0,-0.13605 -121181,7204:363:4,-43.5,26.5,0,0,-0.13605 -121182,7204:363:3,-43,26.5,0,0,-0.13605 -121183,7204:362:4,-42.5,26.5,0,0,-0.13605 -121184,7204:362:3,-42,26.5,0,0,-0.13605 -121185,7204:361:4,-41.5,26.5,0,0,-0.13605 -121186,7204:361:3,-41,26.5,0,0,-0.13605 -121187,7204:360:4,-40.5,26.5,0,0,-0.13605 -121188,7204:360:3,-40,26.5,0,0,-0.13605 -121189,7203:469:4,-39.5,26.5,0,0,-0.13605 -121190,7203:469:3,-39,26.5,0,0,-0.13605 -121191,7203:468:4,-38.5,26.5,0,0,-0.13605 -121192,7203:468:3,-38,26.5,0,0,-0.13605 -121193,7203:467:4,-37.5,26.5,0,0,-0.13605 -121194,7203:467:3,-37,26.5,0,0,-0.13605 -121195,7203:466:4,-36.5,26.5,0,0,-0.13605 -121196,7203:466:3,-36,26.5,0,0,-0.13605 -121197,7203:465:4,-35.5,26.5,0,0,-0.13605 -121198,7203:465:3,-35,26.5,0,0,-0.13605 -121199,7203:364:4,-34.5,26.5,0,0,-0.13605 -121200,7203:364:3,-34,26.5,0,0,-0.13605 -121201,7203:363:4,-33.5,26.5,0,0,-0.13605 -121202,7203:363:3,-33,26.5,0,0,-0.13605 -121203,7203:362:4,-32.5,26.5,0,0,-0.13605 -121204,7203:362:3,-32,26.5,0,0,-0.13605 -121205,7203:361:4,-31.5,26.5,0,0,-0.13605 -121206,7203:361:3,-31,26.5,0,0,-0.13605 -121207,7203:360:4,-30.5,26.5,0,0,-0.13605 -121208,7203:360:3,-30,26.5,0,0,-0.13605 -121209,7202:469:4,-29.5,26.5,0,0,-0.13605 -121210,7202:469:3,-29,26.5,0,0,-0.13605 -121211,7202:468:4,-28.5,26.5,0,0,-0.13605 -121212,7202:468:3,-28,26.5,0,0,-0.13605 -121213,7202:467:4,-27.5,26.5,0,0,-0.13605 -121214,7202:467:3,-27,26.5,0,0,-0.13605 -121215,7202:466:4,-26.5,26.5,0,0,-0.13605 -121216,7202:466:3,-26,26.5,0,0,-0.13605 -121217,7202:465:4,-25.5,26.5,0,0,-0.13605 -121218,7202:465:3,-25,26.5,0,0,-0.13605 -121219,7202:364:4,-24.5,26.5,0,0,-0.13605 -121220,7202:364:3,-24,26.5,0,0,-0.13605 -121221,7202:363:4,-23.5,26.5,0,0,-0.13605 -121222,7202:363:3,-23,26.5,0,0,-0.13605 -121223,7202:362:4,-22.5,26.5,0,0,-0.13605 -121224,7202:362:3,-22,26.5,0,0,-0.13605 -121225,7202:361:4,-21.5,26.5,0,0,-0.13605 -121226,7202:361:3,-21,26.5,0,0,-0.13605 -121227,7202:360:4,-20.5,26.5,0,0,-0.13605 -121228,7202:360:3,-20,26.5,0,0,-0.13605 -121229,7201:469:4,-19.5,26.5,0,0,-0.13605 -121230,7201:469:3,-19,26.5,0,0,-0.13605 -121231,7201:468:4,-18.5,26.5,0,0,-0.13605 -121232,7201:468:3,-18,26.5,0,0,-0.13605 -121233,7201:467:4,-17.5,26.5,0,0,-0.13605 -121234,7201:467:3,-17,26.5,0,0,-0.13605 -121235,7201:466:4,-16.5,26.5,0,0,-0.13605 -121236,7201:466:3,-16,26.5,0,0,-0.13605 -121237,7201:465:4,-15.5,26.5,0,0,-0.13605 -121238,7201:465:3,-15,26.5,0,0,-0.13605 -121239,7201:364:4,-14.5,26.5,0,0,-0.13605 -121240,7201:364:3,-14,26.5,0,0,-0.13605 -121241,7201:363:4,-13.5,26.5,0,0,-0.13605 -121242,7201:363:3,-13,26.5,0,0,-0.13605 -121243,7201:362:4,-12.5,26.5,0,0,-0.13605 -121244,7201:362:3,-12,26.5,0,0,-0.13605 -121245,7201:361:4,-11.5,26.5,0,0,-0.13605 -121246,7201:361:3,-11,26.5,0,0,-0.13605 -121247,7201:360:4,-10.5,26.5,0,0,-0.13605 -121248,7201:360:3,-10,26.5,0,0,-0.13605 -121249,7200:469:4,-9.5,26.5,0,0,-0.13605 -121250,1200:360:4,0,26.5,0,0,-0.13605 -121251,1200:360:4,0.5,26.5,0,0,-0.13605 -121252,1200:361:3,1,26.5,0,0,-0.13605 -121253,1200:361:4,1.5,26.5,0,0,-0.13605 -121254,1200:362:3,2,26.5,0,0,-0.13605 -121255,1200:363:3,3,26.5,0,0,-0.13605 -121256,1200:363:4,3.5,26.5,0,0,-0.13605 -121257,1200:364:3,4,26.5,0,0,-0.13605 -121258,1200:364:4,4.5,26.5,0,0,-0.13605 -121259,1200:465:3,5,26.5,0,0,-0.13605 -121260,1200:465:4,5.5,26.5,0,0,-0.13605 -121261,1200:466:3,6,26.5,0,0,-0.13605 -121262,1200:466:4,6.5,26.5,0,0,-0.13605 -121263,1200:467:3,7,26.5,0,0,-0.13605 -121264,1200:467:4,7.5,26.5,0,0,-0.13605 -121265,1200:469:4,9.5,26.5,0,0,-0.13605 -121266,1201:360:3,10,26.5,0,0,-0.13605 -121267,1201:360:4,10.5,26.5,0,0,-0.13605 -121268,1201:361:3,11,26.5,0,0,-0.13605 -121269,1201:361:4,11.5,26.5,0,0,-0.13605 -121270,1201:362:3,12,26.5,0,0,-0.13605 -121271,1201:362:4,12.5,26.5,0,0,-0.13605 -121272,1201:363:3,13,26.5,0,0,-0.13605 -121273,1201:363:4,13.5,26.5,0,0,-0.13605 -121274,1201:364:3,14,26.5,0,0,-0.13605 -121275,1201:364:4,14.5,26.5,0,0,-0.13605 -121276,1201:465:3,15,26.5,0,0,-0.13605 -121277,1201:467:3,17,26.5,0,0,-0.13605 -121278,1201:467:4,17.5,26.5,0,0,-0.13605 -121279,1201:468:3,18,26.5,0,0,-0.13605 -121280,1201:468:4,18.5,26.5,0,0,-0.13605 -121281,1201:469:3,19,26.5,0,0,-0.13605 -121282,1201:469:4,19.5,26.5,0,0,-0.13605 -121283,1202:362:4,22.5,26.5,0,0,-0.13605 -121284,1202:363:3,23,26.5,0,0,-0.13605 -121285,1202:363:4,23.5,26.5,0,0,-0.13605 -121286,1202:364:3,24,26.5,0,0,-0.13605 -121287,1202:364:4,24.5,26.5,0,0,-0.13605 -121288,1202:465:3,25,26.5,0,0,-0.13605 -121289,1202:466:3,26,26.5,0,0,-0.13605 -121290,1211:468:4,118.5,26.5,0,0,-0.0499539 -121291,1211:469:3,119,26.5,0,0,-0.0538106 -121292,1211:469:4,119.5,26.5,0,0,-0.0587734 -121293,1212:360:3,120,26.5,0,0,-0.0700089 -121294,1212:360:4,120.5,26.5,0,0,-0.0888136 -121295,1212:361:3,121,26.5,0,0,-0.0950895 -121296,1212:361:4,121.5,26.5,0,0,-0.0716509 -121297,1212:362:3,122,26.5,0,0,-0.0474935 -121298,1212:363:3,123,26.5,0,0,-0.101454 -121299,1212:363:4,123.5,26.5,0,0,-0.0812951 -121300,1212:364:3,124,26.5,0,0,-0.102197 -121301,1212:364:4,124.5,26.5,0,0,-0.083402 -121302,1212:465:3,125,26.5,0,0,-0.0592427 -121303,1212:465:4,125.5,26.5,0,0,-0.0427078 -121304,1212:468:3,128,26.5,0,0,-0.134487 -121305,1212:468:4,128.5,26.5,0,0,-0.13605 -121306,1212:469:3,129,26.5,0,0,-0.13605 -121307,1212:469:4,129.5,26.5,0,0,-0.13605 -121308,1213:360:3,130,26.5,0,0,-0.13605 -121309,1213:360:4,130.5,26.5,0,0,-0.13605 -121310,1213:361:3,131,26.5,0,0,-0.13605 -121311,1213:361:4,131.5,26.5,0,0,-0.13605 -121312,1213:362:3,132,26.5,0,0,-0.13605 -121313,1213:362:4,132.5,26.5,0,0,-0.13605 -121314,1213:363:3,133,26.5,0,0,-0.13605 -121315,1213:363:4,133.5,26.5,0,0,-0.13605 -121316,1213:364:3,134,26.5,0,0,-0.13605 -121317,1213:364:4,134.5,26.5,0,0,-0.13605 -121318,1213:465:3,135,26.5,0,0,-0.13605 -121319,1213:465:4,135.5,26.5,0,0,-0.13605 -121320,1213:466:3,136,26.5,0,0,-0.13605 -121321,1213:466:4,136.5,26.5,0,0,-0.13605 -121322,1213:467:3,137,26.5,0,0,-0.13605 -121323,1213:467:4,137.5,26.5,0,0,-0.13605 -121324,1213:468:3,138,26.5,0,0,-0.13605 -121325,1213:468:4,138.5,26.5,0,0,-0.13605 -121326,1213:469:3,139,26.5,0,0,-0.13605 -121327,1213:469:4,139.5,26.5,0,0,-0.13605 -121328,1214:360:3,140,26.5,0,0,-0.13605 -121329,1214:362:4,142.5,26.5,0,0,-0.13605 -121330,1214:363:3,143,26.5,0,0,-0.13605 -121331,1214:363:4,143.5,26.5,0,0,-0.13605 -121332,1214:364:3,144,26.5,0,0,-0.13605 -121333,1214:364:4,144.5,26.5,0,0,-0.13605 -121334,1214:465:3,145,26.5,0,0,-0.13605 -121335,1214:465:4,145.5,26.5,0,0,-0.13605 -121336,1214:466:3,146,26.5,0,0,-0.13605 -121337,1214:466:4,146.5,26.5,0,0,-0.13605 -121338,1214:467:3,147,26.5,0,0,-0.13605 -121339,1214:467:4,147.5,26.5,0,0,-0.13605 -121340,1214:468:3,148,26.5,0,0,-0.13605 -121341,1214:468:4,148.5,26.5,0,0,-0.13605 -121342,1214:469:3,149,26.5,0,0,-0.13605 -121343,1214:469:4,149.5,26.5,0,0,-0.13605 -121344,1215:360:3,150,26.5,0,0,-0.13605 -121345,1215:360:4,150.5,26.5,0,0,-0.13605 -121346,1215:361:3,151,26.5,0,0,-0.13605 -121347,1215:361:4,151.5,26.5,0,0,-0.13605 -121348,1215:362:3,152,26.5,0,0,-0.13605 -121349,1215:362:4,152.5,26.5,0,0,-0.13605 -121350,1215:363:3,153,26.5,0,0,-0.13605 -121351,1215:363:4,153.5,26.5,0,0,-0.13605 -121352,1215:364:3,154,26.5,0,0,-0.13605 -121353,1215:364:4,154.5,26.5,0,0,-0.13605 -121354,1215:465:3,155,26.5,0,0,-0.13605 -121355,1215:465:4,155.5,26.5,0,0,-0.13605 -121356,1215:466:3,156,26.5,0,0,-0.13605 -121357,1215:466:4,156.5,26.5,0,0,-0.13605 -121358,1215:467:3,157,26.5,0,0,-0.13605 -121359,1215:467:4,157.5,26.5,0,0,-0.13605 -121360,1215:468:3,158,26.5,0,0,-0.13605 -121361,1215:468:4,158.5,26.5,0,0,-0.13605 -121362,1215:469:3,159,26.5,0,0,-0.13605 -121363,1215:469:4,159.5,26.5,0,0,-0.13605 -121364,1216:360:3,160,26.5,0,0,-0.13605 -121365,1216:360:4,160.5,26.5,0,0,-0.13605 -121366,1216:361:3,161,26.5,0,0,-0.13605 -121367,1216:361:4,161.5,26.5,0,0,-0.13605 -121368,1216:362:3,162,26.5,0,0,-0.13605 -121369,1216:362:4,162.5,26.5,0,0,-0.13605 -121370,1216:363:3,163,26.5,0,0,-0.13605 -121371,1216:363:4,163.5,26.5,0,0,-0.13605 -121372,1216:364:3,164,26.5,0,0,-0.13605 -121373,1216:364:4,164.5,26.5,0,0,-0.13605 -121374,1216:465:3,165,26.5,0,0,-0.13605 -121375,1216:465:4,165.5,26.5,0,0,-0.13605 -121376,1216:466:3,166,26.5,0,0,-0.13605 -121377,1216:466:4,166.5,26.5,0,0,-0.13605 -121378,1216:467:3,167,26.5,0,0,-0.13605 -121379,1216:467:4,167.5,26.5,0,0,-0.13605 -121380,1216:468:3,168,26.5,0,0,-0.13605 -121381,1216:468:4,168.5,26.5,0,0,-0.13605 -121382,1216:469:3,169,26.5,0,0,-0.13605 -121383,1216:469:4,169.5,26.5,0,0,-0.13605 -121384,1217:360:3,170,26.5,0,0,-0.13605 -121385,1217:360:4,170.5,26.5,0,0,-0.13605 -121386,1217:361:3,171,26.5,0,0,-0.13605 -121387,1217:361:4,171.5,26.5,0,0,-0.13605 -121388,1217:362:3,172,26.5,0,0,-0.13605 -121389,1217:362:4,172.5,26.5,0,0,-0.13605 -121390,1217:363:3,173,26.5,0,0,-0.13605 -121391,1217:363:4,173.5,26.5,0,0,-0.13605 -121392,1217:364:3,174,26.5,0,0,-0.13605 -121393,1217:364:4,174.5,26.5,0,0,-0.13605 -121394,1217:465:3,175,26.5,0,0,-0.13605 -121395,1217:465:4,175.5,26.5,0,0,-0.13605 -121396,1217:466:3,176,26.5,0,0,-0.13605 -121397,1217:466:4,176.5,26.5,0,0,-0.13605 -121398,1217:467:3,177,26.5,0,0,-0.13605 -121399,1217:467:4,177.5,26.5,0,0,-0.13605 -121400,1217:468:3,178,26.5,0,0,-0.135972 -121401,1217:468:4,178.5,26.5,0,0,-0.13605 -121402,1217:469:3,179,26.5,0,0,-0.13605 -121403,1217:469:4,179.5,26.5,0,0,-0.13605 -121404,1218:360:3,180,26.5,0,0,-0.13605 -121405,7218:370:1,-180,27,0,0,-0.124136 -121406,7217:479:2,-179.5,27,0,0,-0.119104 -121407,7217:479:1,-179,27,0,0,-0.113484 -121408,7217:478:2,-178.5,27,0,0,-0.112069 -121409,7217:478:1,-178,27,0,0,-0.113456 -121410,7217:477:2,-177.5,27,0,0,-0.110621 -121411,7217:477:1,-177,27,0,0,-0.106943 -121412,7217:476:2,-176.5,27,0,0,-0.107731 -121413,7217:476:1,-176,27,0,0,-0.109486 -121414,7217:475:2,-175.5,27,0,0,-0.107731 -121415,7217:475:1,-175,27,0,0,-0.10731 -121416,7217:374:2,-174.5,27,0,0,-0.109138 -121417,7217:374:1,-174,27,0,0,-0.105825 -121418,7217:373:2,-173.5,27,0,0,-0.100839 -121419,7217:373:1,-173,27,0,0,-0.100471 -121420,7217:372:2,-172.5,27,0,0,-0.102048 -121421,7217:372:1,-172,27,0,0,-0.103123 -121422,7217:371:2,-171.5,27,0,0,-0.102671 -121423,7217:371:1,-171,27,0,0,-0.100544 -121424,7217:370:2,-170.5,27,0,0,-0.0998872 -121425,7217:370:1,-170,27,0,0,-0.103374 -121426,7216:479:2,-169.5,27,0,0,-0.106734 -121427,7216:479:1,-169,27,0,0,-0.106006 -121428,7216:478:2,-168.5,27,0,0,-0.102372 -121429,7216:478:1,-168,27,0,0,-0.0993547 -121430,7216:477:2,-167.5,27,0,0,-0.0986811 -121431,7216:477:1,-167,27,0,0,-0.0997902 -121432,7216:476:2,-166.5,27,0,0,-0.103855 -121433,7216:476:1,-166,27,0,0,-0.107179 -121434,7216:475:2,-165.5,27,0,0,-0.109675 -121435,7216:475:1,-165,27,0,0,-0.110729 -121436,7216:374:2,-164.5,27,0,0,-0.111438 -121437,7216:374:1,-164,27,0,0,-0.113679 -121438,7216:373:2,-163.5,27,0,0,-0.117991 -121439,7216:373:1,-163,27,0,0,-0.122696 -121440,7216:372:2,-162.5,27,0,0,-0.126096 -121441,7216:372:1,-162,27,0,0,-0.12758 -121442,7216:371:2,-161.5,27,0,0,-0.127136 -121443,7216:371:1,-161,27,0,0,-0.125376 -121444,7216:370:2,-160.5,27,0,0,-0.124106 -121445,7216:370:1,-160,27,0,0,-0.123337 -121446,7215:479:2,-159.5,27,0,0,-0.122514 -121447,7215:479:1,-159,27,0,0,-0.122575 -121448,7215:478:2,-158.5,27,0,0,-0.124229 -121449,7215:478:1,-158,27,0,0,-0.12723 -121450,7215:477:2,-157.5,27,0,0,-0.131623 -121451,7215:477:1,-157,27,0,0,-0.135333 -121452,7215:476:2,-156.5,27,0,0,-0.135883 -121453,7215:476:1,-156,27,0,0,-0.135915 -121454,7215:475:2,-155.5,27,0,0,-0.13605 -121455,7215:475:1,-155,27,0,0,-0.13605 -121456,7215:374:2,-154.5,27,0,0,-0.13605 -121457,7215:374:1,-154,27,0,0,-0.13605 -121458,7215:373:2,-153.5,27,0,0,-0.13605 -121459,7215:373:1,-153,27,0,0,-0.13605 -121460,7215:372:2,-152.5,27,0,0,-0.13605 -121461,7215:372:1,-152,27,0,0,-0.13605 -121462,7215:371:2,-151.5,27,0,0,-0.13605 -121463,7215:371:1,-151,27,0,0,-0.13605 -121464,7215:370:2,-150.5,27,0,0,-0.13605 -121465,7215:370:1,-150,27,0,0,-0.13605 -121466,7214:479:2,-149.5,27,0,0,-0.13605 -121467,7214:479:1,-149,27,0,0,-0.13605 -121468,7214:478:2,-148.5,27,0,0,-0.13605 -121469,7214:478:1,-148,27,0,0,-0.13605 -121470,7214:477:2,-147.5,27,0,0,-0.13605 -121471,7214:477:1,-147,27,0,0,-0.13605 -121472,7214:476:2,-146.5,27,0,0,-0.13605 -121473,7214:476:1,-146,27,0,0,-0.13605 -121474,7214:475:2,-145.5,27,0,0,-0.13605 -121475,7214:475:1,-145,27,0,0,-0.13605 -121476,7214:374:2,-144.5,27,0,0,-0.13605 -121477,7214:374:1,-144,27,0,0,-0.13605 -121478,7214:373:2,-143.5,27,0,0,-0.13605 -121479,7214:373:1,-143,27,0,0,-0.13605 -121480,7214:372:2,-142.5,27,0,0,-0.13605 -121481,7214:372:1,-142,27,0,0,-0.13605 -121482,7214:371:2,-141.5,27,0,0,-0.13605 -121483,7214:371:1,-141,27,0,0,-0.13605 -121484,7214:370:2,-140.5,27,0,0,-0.13605 -121485,7214:370:1,-140,27,0,0,-0.13605 -121486,7213:479:2,-139.5,27,0,0,-0.13605 -121487,7213:479:1,-139,27,0,0,-0.13605 -121488,7213:478:2,-138.5,27,0,0,-0.13605 -121489,7213:478:1,-138,27,0,0,-0.13605 -121490,7213:477:2,-137.5,27,0,0,-0.13605 -121491,7213:477:1,-137,27,0,0,-0.13605 -121492,7213:476:2,-136.5,27,0,0,-0.13605 -121493,7213:476:1,-136,27,0,0,-0.13605 -121494,7213:475:2,-135.5,27,0,0,-0.13605 -121495,7213:475:1,-135,27,0,0,-0.13605 -121496,7213:374:2,-134.5,27,0,0,-0.13605 -121497,7213:374:1,-134,27,0,0,-0.13605 -121498,7213:373:2,-133.5,27,0,0,-0.13605 -121499,7213:373:1,-133,27,0,0,-0.13605 -121500,7213:372:2,-132.5,27,0,0,-0.13605 -121501,7213:372:1,-132,27,0,0,-0.13605 -121502,7213:371:2,-131.5,27,0,0,-0.13605 -121503,7213:371:1,-131,27,0,0,-0.13605 -121504,7213:370:2,-130.5,27,0,0,-0.13605 -121505,7213:370:1,-130,27,0,0,-0.13605 -121506,7212:479:2,-129.5,27,0,0,-0.13605 -121507,7212:479:1,-129,27,0,0,-0.13605 -121508,7212:478:2,-128.5,27,0,0,-0.13605 -121509,7212:478:1,-128,27,0,0,-0.13605 -121510,7212:477:2,-127.5,27,0,0,-0.13605 -121511,7212:477:1,-127,27,0,0,-0.13605 -121512,7212:476:2,-126.5,27,0,0,-0.13605 -121513,7212:476:1,-126,27,0,0,-0.13605 -121514,7212:475:2,-125.5,27,0,0,-0.13605 -121515,7212:475:1,-125,27,0,0,-0.13605 -121516,7212:374:2,-124.5,27,0,0,-0.13605 -121517,7212:374:1,-124,27,0,0,-0.13603 -121518,7207:373:2,-73.5,27,0,0,-0.13605 -121519,7207:373:1,-73,27,0,0,-0.13605 -121520,7207:372:2,-72.5,27,0,0,-0.13605 -121521,7207:372:1,-72,27,0,0,-0.13605 -121522,7207:371:2,-71.5,27,0,0,-0.13605 -121523,7207:371:1,-71,27,0,0,-0.13605 -121524,7207:370:2,-70.5,27,0,0,-0.13605 -121525,7207:370:1,-70,27,0,0,-0.13605 -121526,7206:479:2,-69.5,27,0,0,-0.13605 -121527,7206:479:1,-69,27,0,0,-0.13605 -121528,7206:478:2,-68.5,27,0,0,-0.13605 -121529,7206:478:1,-68,27,0,0,-0.13605 -121530,7206:477:2,-67.5,27,0,0,-0.13605 -121531,7206:477:1,-67,27,0,0,-0.13605 -121532,7206:476:2,-66.5,27,0,0,-0.13605 -121533,7206:476:1,-66,27,0,0,-0.13605 -121534,7206:475:2,-65.5,27,0,0,-0.13605 -121535,7206:475:1,-65,27,0,0,-0.13605 -121536,7206:374:2,-64.5,27,0,0,-0.13605 -121537,7206:374:1,-64,27,0,0,-0.13605 -121538,7206:373:2,-63.5,27,0,0,-0.13605 -121539,7206:373:1,-63,27,0,0,-0.13605 -121540,7206:372:2,-62.5,27,0,0,-0.13605 -121541,7206:372:1,-62,27,0,0,-0.13605 -121542,7206:371:2,-61.5,27,0,0,-0.13605 -121543,7206:371:1,-61,27,0,0,-0.13605 -121544,7206:370:2,-60.5,27,0,0,-0.13605 -121545,7206:370:1,-60,27,0,0,-0.13605 -121546,7205:479:2,-59.5,27,0,0,-0.13605 -121547,7205:479:1,-59,27,0,0,-0.13605 -121548,7205:478:2,-58.5,27,0,0,-0.13605 -121549,7205:478:1,-58,27,0,0,-0.13605 -121550,7205:477:2,-57.5,27,0,0,-0.13605 -121551,7205:477:1,-57,27,0,0,-0.13605 -121552,7205:476:2,-56.5,27,0,0,-0.13605 -121553,7205:476:1,-56,27,0,0,-0.13605 -121554,7205:475:2,-55.5,27,0,0,-0.13605 -121555,7205:475:1,-55,27,0,0,-0.13605 -121556,7205:374:2,-54.5,27,0,0,-0.13605 -121557,7205:374:1,-54,27,0,0,-0.13605 -121558,7205:373:2,-53.5,27,0,0,-0.13605 -121559,7205:373:1,-53,27,0,0,-0.13605 -121560,7205:372:2,-52.5,27,0,0,-0.13605 -121561,7205:372:1,-52,27,0,0,-0.13605 -121562,7205:371:2,-51.5,27,0,0,-0.13605 -121563,7205:371:1,-51,27,0,0,-0.13605 -121564,7205:370:2,-50.5,27,0,0,-0.13605 -121565,7205:370:1,-50,27,0,0,-0.13605 -121566,7204:479:2,-49.5,27,0,0,-0.13605 -121567,7204:479:1,-49,27,0,0,-0.13605 -121568,7204:478:2,-48.5,27,0,0,-0.13605 -121569,7204:478:1,-48,27,0,0,-0.13605 -121570,7204:477:2,-47.5,27,0,0,-0.13605 -121571,7204:477:1,-47,27,0,0,-0.13605 -121572,7204:476:2,-46.5,27,0,0,-0.13605 -121573,7204:476:1,-46,27,0,0,-0.13605 -121574,7204:475:2,-45.5,27,0,0,-0.13605 -121575,7204:475:1,-45,27,0,0,-0.13605 -121576,7204:374:2,-44.5,27,0,0,-0.13605 -121577,7204:374:1,-44,27,0,0,-0.13605 -121578,7204:373:2,-43.5,27,0,0,-0.13605 -121579,7204:373:1,-43,27,0,0,-0.13605 -121580,7204:372:2,-42.5,27,0,0,-0.13605 -121581,7204:372:1,-42,27,0,0,-0.13605 -121582,7204:371:2,-41.5,27,0,0,-0.13605 -121583,7204:371:1,-41,27,0,0,-0.13605 -121584,7204:370:2,-40.5,27,0,0,-0.13605 -121585,7204:370:1,-40,27,0,0,-0.13605 -121586,7203:479:2,-39.5,27,0,0,-0.13605 -121587,7203:479:1,-39,27,0,0,-0.13605 -121588,7203:478:2,-38.5,27,0,0,-0.13605 -121589,7203:478:1,-38,27,0,0,-0.13605 -121590,7203:477:2,-37.5,27,0,0,-0.13605 -121591,7203:477:1,-37,27,0,0,-0.13605 -121592,7203:476:2,-36.5,27,0,0,-0.13605 -121593,7203:476:1,-36,27,0,0,-0.13605 -121594,7203:475:2,-35.5,27,0,0,-0.13605 -121595,7203:475:1,-35,27,0,0,-0.13605 -121596,7203:374:2,-34.5,27,0,0,-0.13605 -121597,7203:374:1,-34,27,0,0,-0.13605 -121598,7203:373:2,-33.5,27,0,0,-0.13605 -121599,7203:373:1,-33,27,0,0,-0.13605 -121600,7203:372:2,-32.5,27,0,0,-0.13605 -121601,7203:372:1,-32,27,0,0,-0.13605 -121602,7203:371:2,-31.5,27,0,0,-0.13605 -121603,7203:371:1,-31,27,0,0,-0.13605 -121604,7203:370:2,-30.5,27,0,0,-0.13605 -121605,7203:370:1,-30,27,0,0,-0.13605 -121606,7202:479:2,-29.5,27,0,0,-0.13605 -121607,7202:479:1,-29,27,0,0,-0.13605 -121608,7202:478:2,-28.5,27,0,0,-0.13605 -121609,7202:478:1,-28,27,0,0,-0.13605 -121610,7202:477:2,-27.5,27,0,0,-0.13605 -121611,7202:477:1,-27,27,0,0,-0.13605 -121612,7202:476:2,-26.5,27,0,0,-0.13605 -121613,7202:476:1,-26,27,0,0,-0.13605 -121614,7202:475:2,-25.5,27,0,0,-0.13605 -121615,7202:475:1,-25,27,0,0,-0.13605 -121616,7202:374:2,-24.5,27,0,0,-0.13605 -121617,7202:374:1,-24,27,0,0,-0.13605 -121618,7202:373:2,-23.5,27,0,0,-0.13605 -121619,7202:373:1,-23,27,0,0,-0.13605 -121620,7202:372:2,-22.5,27,0,0,-0.13605 -121621,7202:372:1,-22,27,0,0,-0.13605 -121622,7202:371:2,-21.5,27,0,0,-0.13605 -121623,7202:371:1,-21,27,0,0,-0.13605 -121624,7202:370:2,-20.5,27,0,0,-0.13605 -121625,7202:370:1,-20,27,0,0,-0.13605 -121626,7201:479:2,-19.5,27,0,0,-0.13605 -121627,7201:479:1,-19,27,0,0,-0.13605 -121628,7201:478:2,-18.5,27,0,0,-0.13605 -121629,7201:478:1,-18,27,0,0,-0.13605 -121630,7201:477:2,-17.5,27,0,0,-0.13605 -121631,7201:477:1,-17,27,0,0,-0.13605 -121632,7201:476:2,-16.5,27,0,0,-0.13605 -121633,7201:476:1,-16,27,0,0,-0.13605 -121634,7201:475:2,-15.5,27,0,0,-0.13605 -121635,7201:475:1,-15,27,0,0,-0.13605 -121636,7201:374:2,-14.5,27,0,0,-0.13605 -121637,7201:374:1,-14,27,0,0,-0.13605 -121638,7201:373:2,-13.5,27,0,0,-0.13605 -121639,7201:373:1,-13,27,0,0,-0.13605 -121640,7201:372:2,-12.5,27,0,0,-0.13605 -121641,7201:372:1,-12,27,0,0,-0.13605 -121642,7201:371:2,-11.5,27,0,0,-0.13605 -121643,7201:371:1,-11,27,0,0,-0.13605 -121644,7201:370:2,-10.5,27,0,0,-0.13605 -121645,7201:370:1,-10,27,0,0,-0.13605 -121646,7200:479:2,-9.5,27,0,0,-0.13605 -121647,1200:370:2,0.5,27,0,0,-0.13605 -121648,1200:371:1,1,27,0,0,-0.13605 -121649,1200:371:2,1.5,27,0,0,-0.13605 -121650,1200:372:1,2,27,0,0,-0.13605 -121651,1200:372:2,2.5,27,0,0,-0.13605 -121652,1200:373:1,3,27,0,0,-0.13605 -121653,1200:373:2,3.5,27,0,0,-0.13605 -121654,1200:374:1,4,27,0,0,-0.13605 -121655,1200:374:2,4.5,27,0,0,-0.13605 -121656,1200:475:1,5,27,0,0,-0.13605 -121657,1200:475:2,5.5,27,0,0,-0.13605 -121658,1200:476:1,6,27,0,0,-0.13605 -121659,1200:476:2,6.5,27,0,0,-0.13605 -121660,1200:477:1,7,27,0,0,-0.13605 -121661,1200:477:2,7.5,27,0,0,-0.13605 -121662,1200:479:2,9.5,27,0,0,-0.13605 -121663,1201:370:1,10,27,0,0,-0.13605 -121664,1201:370:2,10.5,27,0,0,-0.13605 -121665,1201:371:1,11,27,0,0,-0.13605 -121666,1201:371:2,11.5,27,0,0,-0.13605 -121667,1201:372:1,12,27,0,0,-0.13605 -121668,1201:372:2,12.5,27,0,0,-0.13605 -121669,1201:373:1,13,27,0,0,-0.13605 -121670,1201:373:2,13.5,27,0,0,-0.13605 -121671,1201:374:1,14,27,0,0,-0.13605 -121672,1201:374:2,14.5,27,0,0,-0.13605 -121673,1201:475:1,15,27,0,0,-0.13605 -121674,1201:476:2,16.5,27,0,0,-0.13605 -121675,1201:477:1,17,27,0,0,-0.13605 -121676,1201:477:2,17.5,27,0,0,-0.13605 -121677,1201:478:1,18,27,0,0,-0.13605 -121678,1201:478:2,18.5,27,0,0,-0.13605 -121679,1201:479:1,19,27,0,0,-0.13605 -121680,1202:372:2,22.5,27,0,0,-0.13605 -121681,1202:373:1,23,27,0,0,-0.13605 -121682,1202:373:2,23.5,27,0,0,-0.13605 -121683,1202:374:1,24,27,0,0,-0.13605 -121684,1202:374:2,24.5,27,0,0,-0.13605 -121685,1202:475:1,25,27,0,0,-0.13605 -121686,1202:475:2,25.5,27,0,0,-0.13605 -121687,1212:370:1,120,27,0,0,-0.0547334 -121688,1212:370:2,120.5,27,0,0,-0.0694652 -121689,1212:371:1,121,27,0,0,-0.068213 -121690,1212:371:2,121.5,27,0,0,-0.0614475 -121691,1212:372:1,122,27,0,0,-0.0475374 -121692,1212:374:1,124,27,0,0,-0.0564975 -121693,1212:374:2,124.5,27,0,0,-0.0496768 -121694,1212:475:1,125,27,0,0,-0.0405899 -121695,1212:478:2,128.5,27,0,0,-0.13605 -121696,1212:479:1,129,27,0,0,-0.13605 -121697,1212:479:2,129.5,27,0,0,-0.13605 -121698,1213:370:1,130,27,0,0,-0.13605 -121699,1213:370:2,130.5,27,0,0,-0.13605 -121700,1213:371:1,131,27,0,0,-0.13605 -121701,1213:371:2,131.5,27,0,0,-0.13605 -121702,1213:372:1,132,27,0,0,-0.13605 -121703,1213:372:2,132.5,27,0,0,-0.13605 -121704,1213:373:1,133,27,0,0,-0.13605 -121705,1213:373:2,133.5,27,0,0,-0.13605 -121706,1213:374:1,134,27,0,0,-0.13605 -121707,1213:374:2,134.5,27,0,0,-0.13605 -121708,1213:475:1,135,27,0,0,-0.13605 -121709,1213:475:2,135.5,27,0,0,-0.13605 -121710,1213:476:1,136,27,0,0,-0.13288 -121711,1213:476:2,136.5,27,0,0,-0.13605 -121712,1213:477:1,137,27,0,0,-0.13605 -121713,1213:477:2,137.5,27,0,0,-0.13605 -121714,1213:478:1,138,27,0,0,-0.13605 -121715,1213:478:2,138.5,27,0,0,-0.13605 -121716,1213:479:1,139,27,0,0,-0.13605 -121717,1213:479:2,139.5,27,0,0,-0.13605 -121718,1214:370:1,140,27,0,0,-0.13605 -121719,1214:370:2,140.5,27,0,0,-0.13605 -121720,1214:372:2,142.5,27,0,0,-0.13605 -121721,1214:373:1,143,27,0,0,-0.13605 -121722,1214:373:2,143.5,27,0,0,-0.13605 -121723,1214:374:1,144,27,0,0,-0.13605 -121724,1214:374:2,144.5,27,0,0,-0.13605 -121725,1214:475:1,145,27,0,0,-0.13605 -121726,1214:475:2,145.5,27,0,0,-0.13605 -121727,1214:476:1,146,27,0,0,-0.13605 -121728,1214:476:2,146.5,27,0,0,-0.13605 -121729,1214:477:1,147,27,0,0,-0.13605 -121730,1214:477:2,147.5,27,0,0,-0.13605 -121731,1214:478:1,148,27,0,0,-0.13605 -121732,1214:478:2,148.5,27,0,0,-0.13605 -121733,1214:479:1,149,27,0,0,-0.13605 -121734,1214:479:2,149.5,27,0,0,-0.13605 -121735,1215:370:1,150,27,0,0,-0.13605 -121736,1215:370:2,150.5,27,0,0,-0.13605 -121737,1215:371:1,151,27,0,0,-0.13605 -121738,1215:371:2,151.5,27,0,0,-0.13605 -121739,1215:372:1,152,27,0,0,-0.13605 -121740,1215:372:2,152.5,27,0,0,-0.13605 -121741,1215:373:1,153,27,0,0,-0.13605 -121742,1215:373:2,153.5,27,0,0,-0.13605 -121743,1215:374:1,154,27,0,0,-0.13605 -121744,1215:374:2,154.5,27,0,0,-0.13605 -121745,1215:475:1,155,27,0,0,-0.13605 -121746,1215:475:2,155.5,27,0,0,-0.13605 -121747,1215:476:1,156,27,0,0,-0.13605 -121748,1215:476:2,156.5,27,0,0,-0.13605 -121749,1215:477:1,157,27,0,0,-0.13605 -121750,1215:477:2,157.5,27,0,0,-0.13605 -121751,1215:478:1,158,27,0,0,-0.13605 -121752,1215:478:2,158.5,27,0,0,-0.13605 -121753,1215:479:1,159,27,0,0,-0.13605 -121754,1215:479:2,159.5,27,0,0,-0.13605 -121755,1216:370:1,160,27,0,0,-0.13605 -121756,1216:370:2,160.5,27,0,0,-0.13605 -121757,1216:371:1,161,27,0,0,-0.13605 -121758,1216:371:2,161.5,27,0,0,-0.13605 -121759,1216:372:1,162,27,0,0,-0.13605 -121760,1216:372:2,162.5,27,0,0,-0.13605 -121761,1216:373:1,163,27,0,0,-0.13605 -121762,1216:373:2,163.5,27,0,0,-0.13605 -121763,1216:374:1,164,27,0,0,-0.13605 -121764,1216:374:2,164.5,27,0,0,-0.13605 -121765,1216:475:1,165,27,0,0,-0.13605 -121766,1216:475:2,165.5,27,0,0,-0.13605 -121767,1216:476:1,166,27,0,0,-0.13605 -121768,1216:476:2,166.5,27,0,0,-0.13605 -121769,1216:477:1,167,27,0,0,-0.13605 -121770,1216:477:2,167.5,27,0,0,-0.13605 -121771,1216:478:1,168,27,0,0,-0.13605 -121772,1216:478:2,168.5,27,0,0,-0.13605 -121773,1216:479:1,169,27,0,0,-0.13605 -121774,1216:479:2,169.5,27,0,0,-0.13605 -121775,1217:370:1,170,27,0,0,-0.13605 -121776,1217:370:2,170.5,27,0,0,-0.13605 -121777,1217:371:1,171,27,0,0,-0.13605 -121778,1217:371:2,171.5,27,0,0,-0.13605 -121779,1217:372:1,172,27,0,0,-0.13605 -121780,1217:372:2,172.5,27,0,0,-0.13605 -121781,1217:373:1,173,27,0,0,-0.13605 -121782,1217:373:2,173.5,27,0,0,-0.13605 -121783,1217:374:1,174,27,0,0,-0.127994 -121784,1217:374:2,174.5,27,0,0,-0.117438 -121785,1217:475:1,175,27,0,0,-0.115371 -121786,1217:475:2,175.5,27,0,0,-0.120408 -121787,1217:476:1,176,27,0,0,-0.135298 -121788,1217:476:2,176.5,27,0,0,-0.13605 -121789,1217:477:1,177,27,0,0,-0.13605 -121790,1217:477:2,177.5,27,0,0,-0.135163 -121791,1217:478:1,178,27,0,0,-0.122727 -121792,1217:478:2,178.5,27,0,0,-0.127675 -121793,1217:479:1,179,27,0,0,-0.130216 -121794,1217:479:2,179.5,27,0,0,-0.128089 -121795,1218:370:1,180,27,0,0,-0.124136 -121796,7218:370:3,-180,27.5,0,0,-0.102197 -121797,7217:479:4,-179.5,27.5,0,0,-0.100154 -121798,7217:479:3,-179,27.5,0,0,-0.0992582 -121799,7217:478:4,-178.5,27.5,0,0,-0.0999109 -121800,7217:478:3,-178,27.5,0,0,-0.100057 -121801,7217:477:4,-177.5,27.5,0,0,-0.0970669 -121802,7217:477:3,-177,27.5,0,0,-0.0938327 -121803,7217:476:4,-176.5,27.5,0,0,-0.091044 -121804,7217:476:3,-176,27.5,0,0,-0.0888136 -121805,7217:475:4,-175.5,27.5,0,0,-0.0884091 -121806,7217:475:3,-175,27.5,0,0,-0.0906504 -121807,7217:374:4,-174.5,27.5,0,0,-0.0929754 -121808,7217:374:3,-174,27.5,0,0,-0.0916833 -121809,7217:373:4,-173.5,27.5,0,0,-0.0898457 -121810,7217:373:3,-173,27.5,0,0,-0.0904972 -121811,7217:372:4,-172.5,27.5,0,0,-0.0923936 -121812,7217:372:3,-172,27.5,0,0,-0.0933358 -121813,7217:371:4,-171.5,27.5,0,0,-0.0923045 -121814,7217:371:3,-171,27.5,0,0,-0.0913963 -121815,7217:370:4,-170.5,27.5,0,0,-0.0923269 -121816,7217:370:3,-170,27.5,0,0,-0.0944243 -121817,7216:479:4,-169.5,27.5,0,0,-0.0951583 -121818,7216:479:3,-169,27.5,0,0,-0.0936294 -121819,7216:478:4,-168.5,27.5,0,0,-0.0916166 -121820,7216:478:3,-168,27.5,0,0,-0.0905412 -121821,7216:477:4,-167.5,27.5,0,0,-0.0908032 -121822,7216:477:3,-167,27.5,0,0,-0.0922603 -121823,7216:476:4,-166.5,27.5,0,0,-0.0964102 -121824,7216:476:3,-166,27.5,0,0,-0.0990892 -121825,7216:475:4,-165.5,27.5,0,0,-0.100887 -121826,7216:475:3,-165,27.5,0,0,-0.102322 -121827,7216:374:4,-164.5,27.5,0,0,-0.104235 -121828,7216:374:3,-164,27.5,0,0,-0.106421 -121829,7216:373:4,-163.5,27.5,0,0,-0.108658 -121830,7216:373:3,-163,27.5,0,0,-0.110621 -121831,7216:372:4,-162.5,27.5,0,0,-0.111548 -121832,7216:372:3,-162,27.5,0,0,-0.111192 -121833,7216:371:4,-161.5,27.5,0,0,-0.110025 -121834,7216:371:3,-161,27.5,0,0,-0.109005 -121835,7216:370:4,-160.5,27.5,0,0,-0.108978 -121836,7216:370:3,-160,27.5,0,0,-0.109299 -121837,7215:479:4,-159.5,27.5,0,0,-0.10981 -121838,7215:479:3,-159,27.5,0,0,-0.112401 -121839,7215:478:4,-158.5,27.5,0,0,-0.116802 -121840,7215:478:3,-158,27.5,0,0,-0.121607 -121841,7215:477:4,-157.5,27.5,0,0,-0.126064 -121842,7215:477:3,-157,27.5,0,0,-0.128313 -121843,7215:476:4,-156.5,27.5,0,0,-0.126504 -121844,7215:476:3,-156,27.5,0,0,-0.126409 -121845,7215:475:4,-155.5,27.5,0,0,-0.131294 -121846,7215:475:3,-155,27.5,0,0,-0.135932 -121847,7215:374:4,-154.5,27.5,0,0,-0.136027 -121848,7215:374:3,-154,27.5,0,0,-0.135298 -121849,7215:373:4,-153.5,27.5,0,0,-0.133814 -121850,7215:373:3,-153,27.5,0,0,-0.135899 -121851,7215:372:4,-152.5,27.5,0,0,-0.13605 -121852,7215:372:3,-152,27.5,0,0,-0.13605 -121853,7215:371:4,-151.5,27.5,0,0,-0.13605 -121854,7215:371:3,-151,27.5,0,0,-0.13605 -121855,7215:370:4,-150.5,27.5,0,0,-0.13605 -121856,7215:370:3,-150,27.5,0,0,-0.13605 -121857,7214:479:4,-149.5,27.5,0,0,-0.13605 -121858,7214:479:3,-149,27.5,0,0,-0.13605 -121859,7214:478:4,-148.5,27.5,0,0,-0.13605 -121860,7214:478:3,-148,27.5,0,0,-0.13605 -121861,7214:477:4,-147.5,27.5,0,0,-0.13605 -121862,7214:477:3,-147,27.5,0,0,-0.13605 -121863,7214:476:4,-146.5,27.5,0,0,-0.13605 -121864,7214:476:3,-146,27.5,0,0,-0.13605 -121865,7214:475:4,-145.5,27.5,0,0,-0.13605 -121866,7214:475:3,-145,27.5,0,0,-0.13605 -121867,7214:374:4,-144.5,27.5,0,0,-0.13605 -121868,7214:374:3,-144,27.5,0,0,-0.13605 -121869,7214:373:4,-143.5,27.5,0,0,-0.13605 -121870,7214:373:3,-143,27.5,0,0,-0.13605 -121871,7214:372:4,-142.5,27.5,0,0,-0.13605 -121872,7214:372:3,-142,27.5,0,0,-0.13605 -121873,7214:371:4,-141.5,27.5,0,0,-0.13605 -121874,7214:371:3,-141,27.5,0,0,-0.13605 -121875,7214:370:4,-140.5,27.5,0,0,-0.13605 -121876,7214:370:3,-140,27.5,0,0,-0.13605 -121877,7213:479:4,-139.5,27.5,0,0,-0.13605 -121878,7213:479:3,-139,27.5,0,0,-0.13605 -121879,7213:478:4,-138.5,27.5,0,0,-0.13605 -121880,7213:478:3,-138,27.5,0,0,-0.13605 -121881,7213:477:4,-137.5,27.5,0,0,-0.13605 -121882,7213:477:3,-137,27.5,0,0,-0.13605 -121883,7213:476:4,-136.5,27.5,0,0,-0.13605 -121884,7213:476:3,-136,27.5,0,0,-0.13605 -121885,7213:475:4,-135.5,27.5,0,0,-0.13605 -121886,7213:475:3,-135,27.5,0,0,-0.13605 -121887,7213:374:4,-134.5,27.5,0,0,-0.13605 -121888,7213:374:3,-134,27.5,0,0,-0.13605 -121889,7213:373:4,-133.5,27.5,0,0,-0.13605 -121890,7213:373:3,-133,27.5,0,0,-0.13605 -121891,7213:372:4,-132.5,27.5,0,0,-0.13605 -121892,7213:372:3,-132,27.5,0,0,-0.13605 -121893,7213:371:4,-131.5,27.5,0,0,-0.13605 -121894,7213:371:3,-131,27.5,0,0,-0.13605 -121895,7213:370:4,-130.5,27.5,0,0,-0.13605 -121896,7213:370:3,-130,27.5,0,0,-0.13605 -121897,7212:479:4,-129.5,27.5,0,0,-0.13605 -121898,7212:479:3,-129,27.5,0,0,-0.13605 -121899,7212:478:4,-128.5,27.5,0,0,-0.13605 -121900,7212:478:3,-128,27.5,0,0,-0.13605 -121901,7212:477:4,-127.5,27.5,0,0,-0.13605 -121902,7212:477:3,-127,27.5,0,0,-0.13605 -121903,7212:476:4,-126.5,27.5,0,0,-0.13605 -121904,7212:476:3,-126,27.5,0,0,-0.13605 -121905,7212:475:4,-125.5,27.5,0,0,-0.13605 -121906,7212:475:3,-125,27.5,0,0,-0.13605 -121907,7212:374:4,-124.5,27.5,0,0,-0.135333 -121908,7207:372:4,-72.5,27.5,0,0,-0.13605 -121909,7207:372:3,-72,27.5,0,0,-0.13605 -121910,7207:371:4,-71.5,27.5,0,0,-0.13605 -121911,7207:371:3,-71,27.5,0,0,-0.13605 -121912,7207:370:4,-70.5,27.5,0,0,-0.13605 -121913,7207:370:3,-70,27.5,0,0,-0.122849 -121914,7206:479:4,-69.5,27.5,0,0,-0.0960609 -121915,7206:479:3,-69,27.5,0,0,-0.114917 -121916,7206:478:4,-68.5,27.5,0,0,-0.13605 -121917,7206:478:3,-68,27.5,0,0,-0.13605 -121918,7206:477:4,-67.5,27.5,0,0,-0.13605 -121919,7206:477:3,-67,27.5,0,0,-0.13605 -121920,7206:476:4,-66.5,27.5,0,0,-0.13605 -121921,7206:476:3,-66,27.5,0,0,-0.13605 -121922,7206:475:4,-65.5,27.5,0,0,-0.13605 -121923,7206:475:3,-65,27.5,0,0,-0.13605 -121924,7206:374:4,-64.5,27.5,0,0,-0.13605 -121925,7206:374:3,-64,27.5,0,0,-0.13605 -121926,7206:373:4,-63.5,27.5,0,0,-0.13605 -121927,7206:373:3,-63,27.5,0,0,-0.13605 -121928,7206:372:4,-62.5,27.5,0,0,-0.13605 -121929,7206:372:3,-62,27.5,0,0,-0.13605 -121930,7206:371:4,-61.5,27.5,0,0,-0.13605 -121931,7206:371:3,-61,27.5,0,0,-0.13605 -121932,7206:370:4,-60.5,27.5,0,0,-0.13605 -121933,7206:370:3,-60,27.5,0,0,-0.13605 -121934,7205:479:4,-59.5,27.5,0,0,-0.13605 -121935,7205:479:3,-59,27.5,0,0,-0.13605 -121936,7205:478:4,-58.5,27.5,0,0,-0.13605 -121937,7205:478:3,-58,27.5,0,0,-0.13605 -121938,7205:477:4,-57.5,27.5,0,0,-0.13605 -121939,7205:477:3,-57,27.5,0,0,-0.13605 -121940,7205:476:4,-56.5,27.5,0,0,-0.13605 -121941,7205:476:3,-56,27.5,0,0,-0.13605 -121942,7205:475:4,-55.5,27.5,0,0,-0.13605 -121943,7205:475:3,-55,27.5,0,0,-0.13605 -121944,7205:374:4,-54.5,27.5,0,0,-0.13605 -121945,7205:374:3,-54,27.5,0,0,-0.13605 -121946,7205:373:4,-53.5,27.5,0,0,-0.13605 -121947,7205:373:3,-53,27.5,0,0,-0.13605 -121948,7205:372:4,-52.5,27.5,0,0,-0.13605 -121949,7205:372:3,-52,27.5,0,0,-0.13605 -121950,7205:371:4,-51.5,27.5,0,0,-0.13605 -121951,7205:371:3,-51,27.5,0,0,-0.13605 -121952,7205:370:4,-50.5,27.5,0,0,-0.13605 -121953,7205:370:3,-50,27.5,0,0,-0.13605 -121954,7204:479:4,-49.5,27.5,0,0,-0.13605 -121955,7204:479:3,-49,27.5,0,0,-0.13605 -121956,7204:478:4,-48.5,27.5,0,0,-0.13605 -121957,7204:478:3,-48,27.5,0,0,-0.13605 -121958,7204:477:4,-47.5,27.5,0,0,-0.13605 -121959,7204:477:3,-47,27.5,0,0,-0.13605 -121960,7204:476:4,-46.5,27.5,0,0,-0.13605 -121961,7204:476:3,-46,27.5,0,0,-0.13605 -121962,7204:475:4,-45.5,27.5,0,0,-0.13605 -121963,7204:475:3,-45,27.5,0,0,-0.13605 -121964,7204:374:4,-44.5,27.5,0,0,-0.13605 -121965,7204:374:3,-44,27.5,0,0,-0.13605 -121966,7204:373:4,-43.5,27.5,0,0,-0.13605 -121967,7204:373:3,-43,27.5,0,0,-0.13605 -121968,7204:372:4,-42.5,27.5,0,0,-0.13605 -121969,7204:372:3,-42,27.5,0,0,-0.13605 -121970,7204:371:4,-41.5,27.5,0,0,-0.13605 -121971,7204:371:3,-41,27.5,0,0,-0.13605 -121972,7204:370:4,-40.5,27.5,0,0,-0.13605 -121973,7204:370:3,-40,27.5,0,0,-0.13605 -121974,7203:479:4,-39.5,27.5,0,0,-0.13605 -121975,7203:479:3,-39,27.5,0,0,-0.13605 -121976,7203:478:4,-38.5,27.5,0,0,-0.13605 -121977,7203:478:3,-38,27.5,0,0,-0.13605 -121978,7203:477:4,-37.5,27.5,0,0,-0.13605 -121979,7203:477:3,-37,27.5,0,0,-0.13605 -121980,7203:476:4,-36.5,27.5,0,0,-0.13605 -121981,7203:476:3,-36,27.5,0,0,-0.13605 -121982,7203:475:4,-35.5,27.5,0,0,-0.13605 -121983,7203:475:3,-35,27.5,0,0,-0.13605 -121984,7203:374:4,-34.5,27.5,0,0,-0.13605 -121985,7203:374:3,-34,27.5,0,0,-0.13605 -121986,7203:373:4,-33.5,27.5,0,0,-0.13605 -121987,7203:373:3,-33,27.5,0,0,-0.13605 -121988,7203:372:4,-32.5,27.5,0,0,-0.13605 -121989,7203:372:3,-32,27.5,0,0,-0.13605 -121990,7203:371:4,-31.5,27.5,0,0,-0.13605 -121991,7203:371:3,-31,27.5,0,0,-0.13605 -121992,7203:370:4,-30.5,27.5,0,0,-0.13605 -121993,7203:370:3,-30,27.5,0,0,-0.13605 -121994,7202:479:4,-29.5,27.5,0,0,-0.13605 -121995,7202:479:3,-29,27.5,0,0,-0.13605 -121996,7202:478:4,-28.5,27.5,0,0,-0.13605 -121997,7202:478:3,-28,27.5,0,0,-0.13605 -121998,7202:477:4,-27.5,27.5,0,0,-0.13605 -121999,7202:477:3,-27,27.5,0,0,-0.13605 -122000,7202:476:4,-26.5,27.5,0,0,-0.13605 -122001,7202:476:3,-26,27.5,0,0,-0.13605 -122002,7202:475:4,-25.5,27.5,0,0,-0.13605 -122003,7202:475:3,-25,27.5,0,0,-0.13605 -122004,7202:374:4,-24.5,27.5,0,0,-0.13605 -122005,7202:374:3,-24,27.5,0,0,-0.13605 -122006,7202:373:4,-23.5,27.5,0,0,-0.13605 -122007,7202:373:3,-23,27.5,0,0,-0.13605 -122008,7202:372:4,-22.5,27.5,0,0,-0.13605 -122009,7202:372:3,-22,27.5,0,0,-0.13605 -122010,7202:371:4,-21.5,27.5,0,0,-0.13605 -122011,7202:371:3,-21,27.5,0,0,-0.13605 -122012,7202:370:4,-20.5,27.5,0,0,-0.13605 -122013,7202:370:3,-20,27.5,0,0,-0.13605 -122014,7201:479:4,-19.5,27.5,0,0,-0.13605 -122015,7201:479:3,-19,27.5,0,0,-0.13605 -122016,7201:478:4,-18.5,27.5,0,0,-0.13605 -122017,7201:478:3,-18,27.5,0,0,-0.13605 -122018,7201:477:4,-17.5,27.5,0,0,-0.13605 -122019,7201:477:3,-17,27.5,0,0,-0.13605 -122020,7201:476:4,-16.5,27.5,0,0,-0.13605 -122021,7201:476:3,-16,27.5,0,0,-0.13605 -122022,7201:475:4,-15.5,27.5,0,0,-0.13605 -122023,7201:475:3,-15,27.5,0,0,-0.13605 -122024,7201:374:4,-14.5,27.5,0,0,-0.13605 -122025,7201:374:3,-14,27.5,0,0,-0.13605 -122026,7201:373:4,-13.5,27.5,0,0,-0.13605 -122027,7201:373:3,-13,27.5,0,0,-0.13605 -122028,7201:372:4,-12.5,27.5,0,0,-0.13605 -122029,7201:372:3,-12,27.5,0,0,-0.13605 -122030,7201:371:4,-11.5,27.5,0,0,-0.13605 -122031,7201:371:3,-11,27.5,0,0,-0.13605 -122032,7201:370:4,-10.5,27.5,0,0,-0.13605 -122033,7201:370:3,-10,27.5,0,0,-0.13605 -122034,7200:479:4,-9.5,27.5,0,0,-0.13605 -122035,1200:371:3,1,27.5,0,0,-0.13605 -122036,1200:371:4,1.5,27.5,0,0,-0.13605 -122037,1200:372:3,2,27.5,0,0,-0.13605 -122038,1200:372:4,2.5,27.5,0,0,-0.13605 -122039,1200:373:3,3,27.5,0,0,-0.13605 -122040,1200:373:4,3.5,27.5,0,0,-0.13605 -122041,1200:374:3,4,27.5,0,0,-0.13605 -122042,1200:374:4,4.5,27.5,0,0,-0.13605 -122043,1200:475:3,5,27.5,0,0,-0.13605 -122044,1200:475:4,5.5,27.5,0,0,-0.13605 -122045,1200:476:3,6,27.5,0,0,-0.13605 -122046,1200:476:4,6.5,27.5,0,0,-0.13605 -122047,1200:477:3,7,27.5,0,0,-0.13605 -122048,1200:477:4,7.5,27.5,0,0,-0.13605 -122049,1200:479:4,9.5,27.5,0,0,-0.13605 -122050,1201:370:3,10,27.5,0,0,-0.13605 -122051,1201:370:4,10.5,27.5,0,0,-0.13605 -122052,1201:371:3,11,27.5,0,0,-0.13605 -122053,1201:371:4,11.5,27.5,0,0,-0.13605 -122054,1201:372:3,12,27.5,0,0,-0.13605 -122055,1201:372:4,12.5,27.5,0,0,-0.13605 -122056,1201:373:3,13,27.5,0,0,-0.13605 -122057,1201:373:4,13.5,27.5,0,0,-0.13605 -122058,1201:374:3,14,27.5,0,0,-0.13605 -122059,1201:478:3,18,27.5,0,0,-0.13605 -122060,1201:478:4,18.5,27.5,0,0,-0.13605 -122061,1202:372:3,22,27.5,0,0,-0.13605 -122062,1202:372:4,22.5,27.5,0,0,-0.13605 -122063,1202:373:3,23,27.5,0,0,-0.13605 -122064,1202:373:4,23.5,27.5,0,0,-0.13605 -122065,1202:374:3,24,27.5,0,0,-0.13605 -122066,1202:374:4,24.5,27.5,0,0,-0.13605 -122067,1202:475:3,25,27.5,0,0,-0.13605 -122068,1202:475:4,25.5,27.5,0,0,-0.13605 -122069,1212:371:3,121,27.5,0,0,-0.0475596 -122070,1212:371:4,121.5,27.5,0,0,-0.0428456 -122071,1212:372:3,122,27.5,0,0,-0.0389188 -122072,1212:372:4,122.5,27.5,0,0,-0.0353157 -122073,1213:370:3,130,27.5,0,0,-0.13605 -122074,1213:370:4,130.5,27.5,0,0,-0.13605 -122075,1213:371:3,131,27.5,0,0,-0.13605 -122076,1213:371:4,131.5,27.5,0,0,-0.13605 -122077,1213:372:3,132,27.5,0,0,-0.13605 -122078,1213:372:4,132.5,27.5,0,0,-0.13605 -122079,1213:373:3,133,27.5,0,0,-0.13605 -122080,1213:373:4,133.5,27.5,0,0,-0.13605 -122081,1213:374:3,134,27.5,0,0,-0.13605 -122082,1213:374:4,134.5,27.5,0,0,-0.13605 -122083,1213:475:3,135,27.5,0,0,-0.136024 -122084,1213:475:4,135.5,27.5,0,0,-0.135163 -122085,1213:476:3,136,27.5,0,0,-0.123184 -122086,1213:476:4,136.5,27.5,0,0,-0.13605 -122087,1213:477:3,137,27.5,0,0,-0.13605 -122088,1213:477:4,137.5,27.5,0,0,-0.13605 -122089,1213:478:3,138,27.5,0,0,-0.13605 -122090,1213:478:4,138.5,27.5,0,0,-0.13605 -122091,1213:479:3,139,27.5,0,0,-0.13605 -122092,1213:479:4,139.5,27.5,0,0,-0.13605 -122093,1214:370:3,140,27.5,0,0,-0.13605 -122094,1214:370:4,140.5,27.5,0,0,-0.13605 -122095,1214:372:3,142,27.5,0,0,-0.13605 -122096,1214:372:4,142.5,27.5,0,0,-0.13605 -122097,1214:373:3,143,27.5,0,0,-0.13605 -122098,1214:373:4,143.5,27.5,0,0,-0.13605 -122099,1214:374:3,144,27.5,0,0,-0.13605 -122100,1214:374:4,144.5,27.5,0,0,-0.13605 -122101,1214:475:3,145,27.5,0,0,-0.13605 -122102,1214:475:4,145.5,27.5,0,0,-0.13605 -122103,1214:476:3,146,27.5,0,0,-0.13605 -122104,1214:476:4,146.5,27.5,0,0,-0.13605 -122105,1214:477:3,147,27.5,0,0,-0.13605 -122106,1214:477:4,147.5,27.5,0,0,-0.13605 -122107,1214:478:3,148,27.5,0,0,-0.13605 -122108,1214:478:4,148.5,27.5,0,0,-0.13605 -122109,1214:479:3,149,27.5,0,0,-0.13605 -122110,1214:479:4,149.5,27.5,0,0,-0.13605 -122111,1215:370:3,150,27.5,0,0,-0.13605 -122112,1215:370:4,150.5,27.5,0,0,-0.13605 -122113,1215:371:3,151,27.5,0,0,-0.13605 -122114,1215:371:4,151.5,27.5,0,0,-0.13605 -122115,1215:372:3,152,27.5,0,0,-0.13605 -122116,1215:372:4,152.5,27.5,0,0,-0.13605 -122117,1215:373:3,153,27.5,0,0,-0.13605 -122118,1215:373:4,153.5,27.5,0,0,-0.13605 -122119,1215:374:3,154,27.5,0,0,-0.13605 -122120,1215:374:4,154.5,27.5,0,0,-0.13605 -122121,1215:475:3,155,27.5,0,0,-0.13605 -122122,1215:475:4,155.5,27.5,0,0,-0.13605 -122123,1215:476:3,156,27.5,0,0,-0.13605 -122124,1215:476:4,156.5,27.5,0,0,-0.13605 -122125,1215:477:3,157,27.5,0,0,-0.13605 -122126,1215:477:4,157.5,27.5,0,0,-0.13605 -122127,1215:478:3,158,27.5,0,0,-0.13605 -122128,1215:478:4,158.5,27.5,0,0,-0.13605 -122129,1215:479:3,159,27.5,0,0,-0.13605 -122130,1215:479:4,159.5,27.5,0,0,-0.13605 -122131,1216:370:3,160,27.5,0,0,-0.13605 -122132,1216:370:4,160.5,27.5,0,0,-0.13605 -122133,1216:371:3,161,27.5,0,0,-0.13605 -122134,1216:371:4,161.5,27.5,0,0,-0.13605 -122135,1216:372:3,162,27.5,0,0,-0.13605 -122136,1216:372:4,162.5,27.5,0,0,-0.13605 -122137,1216:373:3,163,27.5,0,0,-0.13605 -122138,1216:373:4,163.5,27.5,0,0,-0.13605 -122139,1216:374:3,164,27.5,0,0,-0.13605 -122140,1216:374:4,164.5,27.5,0,0,-0.13605 -122141,1216:475:3,165,27.5,0,0,-0.13605 -122142,1216:475:4,165.5,27.5,0,0,-0.13605 -122143,1216:476:3,166,27.5,0,0,-0.13605 -122144,1216:476:4,166.5,27.5,0,0,-0.13605 -122145,1216:477:3,167,27.5,0,0,-0.13605 -122146,1216:477:4,167.5,27.5,0,0,-0.134892 -122147,1216:478:3,168,27.5,0,0,-0.114634 -122148,1216:478:4,168.5,27.5,0,0,-0.111904 -122149,1216:479:3,169,27.5,0,0,-0.118165 -122150,1216:479:4,169.5,27.5,0,0,-0.13605 -122151,1217:370:3,170,27.5,0,0,-0.13605 -122152,1217:370:4,170.5,27.5,0,0,-0.13605 -122153,1217:371:3,171,27.5,0,0,-0.13605 -122154,1217:371:4,171.5,27.5,0,0,-0.132085 -122155,1217:372:3,172,27.5,0,0,-0.123337 -122156,1217:372:4,172.5,27.5,0,0,-0.12011 -122157,1217:373:3,173,27.5,0,0,-0.118048 -122158,1217:373:4,173.5,27.5,0,0,-0.113567 -122159,1217:374:3,174,27.5,0,0,-0.107389 -122160,1217:374:4,174.5,27.5,0,0,-0.105258 -122161,1217:475:3,175,27.5,0,0,-0.10585 -122162,1217:475:4,175.5,27.5,0,0,-0.113987 -122163,1217:476:3,176,27.5,0,0,-0.126001 -122164,1217:476:4,176.5,27.5,0,0,-0.132979 -122165,1217:477:3,177,27.5,0,0,-0.128537 -122166,1217:477:4,177.5,27.5,0,0,-0.120258 -122167,1217:478:3,178,27.5,0,0,-0.112401 -122168,1217:478:4,178.5,27.5,0,0,-0.110539 -122169,1217:479:3,179,27.5,0,0,-0.110106 -122170,1217:479:4,179.5,27.5,0,0,-0.10585 -122171,1218:370:3,180,27.5,0,0,-0.102197 -122172,7218:380:1,-180,28,0,0,-0.0870387 -122173,7217:489:2,-179.5,28,0,0,-0.0854858 -122174,7217:489:1,-179,28,0,0,-0.0845887 -122175,7217:488:2,-178.5,28,0,0,-0.0843867 -122176,7217:488:1,-178,28,0,0,-0.0846091 -122177,7217:487:2,-177.5,28,0,0,-0.0842855 -122178,7217:487:1,-177,28,0,0,-0.0832225 -122179,7217:486:2,-176.5,28,0,0,-0.0810041 -122180,7217:486:1,-176,28,0,0,-0.0782505 -122181,7217:485:2,-175.5,28,0,0,-0.0776009 -122182,7217:485:1,-175,28,0,0,-0.0787746 -122183,7217:384:2,-174.5,28,0,0,-0.0802153 -122184,7217:384:1,-174,28,0,0,-0.081198 -122185,7217:383:2,-173.5,28,0,0,-0.0813924 -122186,7217:383:1,-173,28,0,0,-0.0807148 -122187,7217:382:2,-172.5,28,0,0,-0.0798336 -122188,7217:382:1,-172,28,0,0,-0.0793019 -122189,7217:381:2,-171.5,28,0,0,-0.0795106 -122190,7217:381:1,-171,28,0,0,-0.080869 -122191,7217:380:2,-170.5,28,0,0,-0.082687 -122192,7217:380:1,-170,28,0,0,-0.0837623 -122193,7216:489:2,-169.5,28,0,0,-0.0837825 -122194,7216:489:1,-169,28,0,0,-0.0832225 -122195,7216:488:2,-168.5,28,0,0,-0.0824105 -122196,7216:488:1,-168,28,0,0,-0.0816457 -122197,7216:487:2,-167.5,28,0,0,-0.081412 -122198,7216:487:1,-167,28,0,0,-0.0823708 -122199,7216:486:2,-166.5,28,0,0,-0.0858973 -122200,7216:486:1,-166,28,0,0,-0.0879213 -122201,7216:485:2,-165.5,28,0,0,-0.0892851 -122202,7216:485:1,-165,28,0,0,-0.0906717 -122203,7216:384:2,-164.5,28,0,0,-0.0921713 -122204,7216:384:1,-164,28,0,0,-0.092461 -122205,7216:383:2,-163.5,28,0,0,-0.0917056 -122206,7216:383:1,-163,28,0,0,-0.0906504 -122207,7216:382:2,-162.5,28,0,0,-0.0901056 -122208,7216:382:1,-162,28,0,0,-0.0904101 -122209,7216:381:2,-161.5,28,0,0,-0.091949 -122210,7216:381:1,-161,28,0,0,-0.0945386 -122211,7216:380:2,-160.5,28,0,0,-0.0972085 -122212,7216:380:1,-160,28,0,0,-0.100544 -122213,7215:489:2,-159.5,28,0,0,-0.104847 -122214,7215:489:1,-159,28,0,0,-0.109112 -122215,7215:488:2,-158.5,28,0,0,-0.111849 -122216,7215:488:1,-158,28,0,0,-0.112871 -122217,7215:487:2,-157.5,28,0,0,-0.112345 -122218,7215:487:1,-157,28,0,0,-0.109675 -122219,7215:486:2,-156.5,28,0,0,-0.107652 -122220,7215:486:1,-156,28,0,0,-0.10989 -122221,7215:485:2,-155.5,28,0,0,-0.114719 -122222,7215:485:1,-155,28,0,0,-0.116745 -122223,7215:384:2,-154.5,28,0,0,-0.114578 -122224,7215:384:1,-154,28,0,0,-0.112622 -122225,7215:383:2,-153.5,28,0,0,-0.114409 -122226,7215:383:1,-153,28,0,0,-0.119133 -122227,7215:382:2,-152.5,28,0,0,-0.124198 -122228,7215:382:1,-152,28,0,0,-0.127167 -122229,7215:381:2,-151.5,28,0,0,-0.127962 -122230,7215:381:1,-151,28,0,0,-0.12793 -122231,7215:380:2,-150.5,28,0,0,-0.129503 -122232,7215:380:1,-150,28,0,0,-0.133279 -122233,7214:489:2,-149.5,28,0,0,-0.136005 -122234,7214:489:1,-149,28,0,0,-0.13605 -122235,7214:488:2,-148.5,28,0,0,-0.13605 -122236,7214:488:1,-148,28,0,0,-0.13605 -122237,7214:487:2,-147.5,28,0,0,-0.13605 -122238,7214:487:1,-147,28,0,0,-0.13605 -122239,7214:486:2,-146.5,28,0,0,-0.13605 -122240,7214:486:1,-146,28,0,0,-0.13605 -122241,7214:485:2,-145.5,28,0,0,-0.13605 -122242,7214:485:1,-145,28,0,0,-0.13605 -122243,7214:384:2,-144.5,28,0,0,-0.13605 -122244,7214:384:1,-144,28,0,0,-0.13605 -122245,7214:383:2,-143.5,28,0,0,-0.13605 -122246,7214:383:1,-143,28,0,0,-0.13605 -122247,7214:382:2,-142.5,28,0,0,-0.13605 -122248,7214:382:1,-142,28,0,0,-0.13605 -122249,7214:381:2,-141.5,28,0,0,-0.13605 -122250,7214:381:1,-141,28,0,0,-0.13605 -122251,7214:380:2,-140.5,28,0,0,-0.13605 -122252,7214:380:1,-140,28,0,0,-0.13605 -122253,7213:489:2,-139.5,28,0,0,-0.13605 -122254,7213:489:1,-139,28,0,0,-0.13605 -122255,7213:488:2,-138.5,28,0,0,-0.13605 -122256,7213:488:1,-138,28,0,0,-0.13605 -122257,7213:487:2,-137.5,28,0,0,-0.13605 -122258,7213:487:1,-137,28,0,0,-0.13605 -122259,7213:486:2,-136.5,28,0,0,-0.13605 -122260,7213:486:1,-136,28,0,0,-0.13605 -122261,7213:485:2,-135.5,28,0,0,-0.13605 -122262,7213:485:1,-135,28,0,0,-0.13605 -122263,7213:384:2,-134.5,28,0,0,-0.13605 -122264,7213:384:1,-134,28,0,0,-0.13605 -122265,7213:383:2,-133.5,28,0,0,-0.13605 -122266,7213:383:1,-133,28,0,0,-0.13605 -122267,7213:382:2,-132.5,28,0,0,-0.13605 -122268,7213:382:1,-132,28,0,0,-0.13605 -122269,7213:381:2,-131.5,28,0,0,-0.13605 -122270,7213:381:1,-131,28,0,0,-0.13605 -122271,7213:380:2,-130.5,28,0,0,-0.13605 -122272,7213:380:1,-130,28,0,0,-0.13605 -122273,7212:489:2,-129.5,28,0,0,-0.13605 -122274,7212:489:1,-129,28,0,0,-0.13605 -122275,7212:488:2,-128.5,28,0,0,-0.13605 -122276,7212:488:1,-128,28,0,0,-0.13605 -122277,7212:487:2,-127.5,28,0,0,-0.13605 -122278,7212:487:1,-127,28,0,0,-0.13605 -122279,7212:486:2,-126.5,28,0,0,-0.13605 -122280,7212:486:1,-126,28,0,0,-0.13605 -122281,7212:485:2,-125.5,28,0,0,-0.13605 -122282,7212:485:1,-125,28,0,0,-0.13605 -122283,7212:384:2,-124.5,28,0,0,-0.13588 -122284,7207:380:2,-70.5,28,0,0,-0.076866 -122285,7207:380:1,-70,28,0,0,-0.0665919 -122286,7206:489:2,-69.5,28,0,0,-0.0862894 -122287,7206:489:1,-69,28,0,0,-0.103374 -122288,7206:488:2,-68.5,28,0,0,-0.129147 -122289,7206:488:1,-68,28,0,0,-0.13605 -122290,7206:487:2,-67.5,28,0,0,-0.13605 -122291,7206:487:1,-67,28,0,0,-0.13605 -122292,7206:486:2,-66.5,28,0,0,-0.13605 -122293,7206:486:1,-66,28,0,0,-0.13605 -122294,7206:485:2,-65.5,28,0,0,-0.13605 -122295,7206:485:1,-65,28,0,0,-0.13605 -122296,7206:384:2,-64.5,28,0,0,-0.13605 -122297,7206:384:1,-64,28,0,0,-0.13605 -122298,7206:383:2,-63.5,28,0,0,-0.13605 -122299,7206:383:1,-63,28,0,0,-0.13605 -122300,7206:382:2,-62.5,28,0,0,-0.13605 -122301,7206:382:1,-62,28,0,0,-0.13605 -122302,7206:381:2,-61.5,28,0,0,-0.13605 -122303,7206:381:1,-61,28,0,0,-0.13605 -122304,7206:380:2,-60.5,28,0,0,-0.13605 -122305,7206:380:1,-60,28,0,0,-0.13605 -122306,7205:489:2,-59.5,28,0,0,-0.13605 -122307,7205:489:1,-59,28,0,0,-0.13605 -122308,7205:488:2,-58.5,28,0,0,-0.13605 -122309,7205:488:1,-58,28,0,0,-0.13605 -122310,7205:487:2,-57.5,28,0,0,-0.13605 -122311,7205:487:1,-57,28,0,0,-0.13605 -122312,7205:486:2,-56.5,28,0,0,-0.13605 -122313,7205:486:1,-56,28,0,0,-0.13605 -122314,7205:485:2,-55.5,28,0,0,-0.13605 -122315,7205:485:1,-55,28,0,0,-0.13605 -122316,7205:384:2,-54.5,28,0,0,-0.13605 -122317,7205:384:1,-54,28,0,0,-0.13605 -122318,7205:383:2,-53.5,28,0,0,-0.13077 -122319,7205:383:1,-53,28,0,0,-0.10133 -122320,7205:382:2,-52.5,28,0,0,-0.101257 -122321,7205:382:1,-52,28,0,0,-0.100081 -122322,7205:381:2,-51.5,28,0,0,-0.103198 -122323,7205:381:1,-51,28,0,0,-0.13605 -122324,7205:380:2,-50.5,28,0,0,-0.13605 -122325,7205:380:1,-50,28,0,0,-0.13605 -122326,7204:489:2,-49.5,28,0,0,-0.13605 -122327,7204:489:1,-49,28,0,0,-0.13605 -122328,7204:488:2,-48.5,28,0,0,-0.13605 -122329,7204:488:1,-48,28,0,0,-0.13605 -122330,7204:487:2,-47.5,28,0,0,-0.13605 -122331,7204:487:1,-47,28,0,0,-0.13605 -122332,7204:486:2,-46.5,28,0,0,-0.13605 -122333,7204:486:1,-46,28,0,0,-0.13605 -122334,7204:485:2,-45.5,28,0,0,-0.13605 -122335,7204:485:1,-45,28,0,0,-0.13605 -122336,7204:384:2,-44.5,28,0,0,-0.13605 -122337,7204:384:1,-44,28,0,0,-0.13605 -122338,7204:383:2,-43.5,28,0,0,-0.13605 -122339,7204:383:1,-43,28,0,0,-0.13605 -122340,7204:382:2,-42.5,28,0,0,-0.13605 -122341,7204:382:1,-42,28,0,0,-0.13605 -122342,7204:381:2,-41.5,28,0,0,-0.13605 -122343,7204:381:1,-41,28,0,0,-0.13605 -122344,7204:380:2,-40.5,28,0,0,-0.13605 -122345,7204:380:1,-40,28,0,0,-0.13605 -122346,7203:489:2,-39.5,28,0,0,-0.13605 -122347,7203:489:1,-39,28,0,0,-0.13605 -122348,7203:488:2,-38.5,28,0,0,-0.13605 -122349,7203:488:1,-38,28,0,0,-0.13605 -122350,7203:487:2,-37.5,28,0,0,-0.13605 -122351,7203:487:1,-37,28,0,0,-0.13605 -122352,7203:486:2,-36.5,28,0,0,-0.13605 -122353,7203:486:1,-36,28,0,0,-0.13605 -122354,7203:485:2,-35.5,28,0,0,-0.13605 -122355,7203:485:1,-35,28,0,0,-0.13605 -122356,7203:384:2,-34.5,28,0,0,-0.13605 -122357,7203:384:1,-34,28,0,0,-0.13605 -122358,7203:383:2,-33.5,28,0,0,-0.13605 -122359,7203:383:1,-33,28,0,0,-0.13605 -122360,7203:382:2,-32.5,28,0,0,-0.13605 -122361,7203:382:1,-32,28,0,0,-0.13605 -122362,7203:381:2,-31.5,28,0,0,-0.13605 -122363,7203:381:1,-31,28,0,0,-0.13605 -122364,7203:380:2,-30.5,28,0,0,-0.13605 -122365,7203:380:1,-30,28,0,0,-0.13605 -122366,7202:489:2,-29.5,28,0,0,-0.13605 -122367,7202:489:1,-29,28,0,0,-0.13605 -122368,7202:488:2,-28.5,28,0,0,-0.13605 -122369,7202:488:1,-28,28,0,0,-0.13605 -122370,7202:487:2,-27.5,28,0,0,-0.13605 -122371,7202:487:1,-27,28,0,0,-0.13605 -122372,7202:486:2,-26.5,28,0,0,-0.13605 -122373,7202:486:1,-26,28,0,0,-0.13605 -122374,7202:485:2,-25.5,28,0,0,-0.13605 -122375,7202:485:1,-25,28,0,0,-0.13605 -122376,7202:384:2,-24.5,28,0,0,-0.13605 -122377,7202:384:1,-24,28,0,0,-0.13605 -122378,7202:383:2,-23.5,28,0,0,-0.13605 -122379,7202:383:1,-23,28,0,0,-0.13605 -122380,7202:382:2,-22.5,28,0,0,-0.13605 -122381,7202:382:1,-22,28,0,0,-0.13605 -122382,7202:381:2,-21.5,28,0,0,-0.13605 -122383,7202:381:1,-21,28,0,0,-0.13605 -122384,7202:380:2,-20.5,28,0,0,-0.13605 -122385,7202:380:1,-20,28,0,0,-0.13605 -122386,7201:489:2,-19.5,28,0,0,-0.13605 -122387,7201:489:1,-19,28,0,0,-0.13605 -122388,7201:488:2,-18.5,28,0,0,-0.13605 -122389,7201:488:1,-18,28,0,0,-0.13605 -122390,7201:487:2,-17.5,28,0,0,-0.13605 -122391,7201:487:1,-17,28,0,0,-0.13605 -122392,7201:486:2,-16.5,28,0,0,-0.13605 -122393,7201:486:1,-16,28,0,0,-0.13605 -122394,7201:485:2,-15.5,28,0,0,-0.13605 -122395,7201:485:1,-15,28,0,0,-0.13605 -122396,7201:384:2,-14.5,28,0,0,-0.13605 -122397,7201:384:1,-14,28,0,0,-0.13605 -122398,7201:383:2,-13.5,28,0,0,-0.13605 -122399,7201:383:1,-13,28,0,0,-0.13605 -122400,7201:382:2,-12.5,28,0,0,-0.13605 -122401,7201:382:1,-12,28,0,0,-0.13605 -122402,7201:381:2,-11.5,28,0,0,-0.13605 -122403,7201:381:1,-11,28,0,0,-0.13605 -122404,7201:380:2,-10.5,28,0,0,-0.13605 -122405,7201:380:1,-10,28,0,0,-0.13605 -122406,7200:489:2,-9.5,28,0,0,-0.13605 -122407,1200:382:2,2.5,28,0,0,-0.13605 -122408,1200:383:1,3,28,0,0,-0.13605 -122409,1200:383:2,3.5,28,0,0,-0.13605 -122410,1200:384:1,4,28,0,0,-0.13605 -122411,1200:384:2,4.5,28,0,0,-0.13605 -122412,1200:485:1,5,28,0,0,-0.13605 -122413,1200:485:2,5.5,28,0,0,-0.13605 -122414,1200:486:1,6,28,0,0,-0.13605 -122415,1200:486:2,6.5,28,0,0,-0.13605 -122416,1200:487:1,7,28,0,0,-0.13605 -122417,1200:487:2,7.5,28,0,0,-0.13605 -122418,1200:488:1,8,28,0,0,-0.13605 -122419,1200:488:2,8.5,28,0,0,-0.13605 -122420,1200:489:1,9,28,0,0,-0.13605 -122421,1200:489:2,9.5,28,0,0,-0.13605 -122422,1201:380:1,10,28,0,0,-0.13605 -122423,1201:380:2,10.5,28,0,0,-0.13605 -122424,1201:381:1,11,28,0,0,-0.13605 -122425,1201:381:2,11.5,28,0,0,-0.13605 -122426,1201:382:1,12,28,0,0,-0.13605 -122427,1201:486:2,16.5,28,0,0,-0.13605 -122428,1201:487:1,17,28,0,0,-0.13605 -122429,1201:487:2,17.5,28,0,0,-0.13605 -122430,1201:488:1,18,28,0,0,-0.13605 -122431,1201:488:2,18.5,28,0,0,-0.13605 -122432,1202:384:1,24,28,0,0,-0.13605 -122433,1202:384:2,24.5,28,0,0,-0.13605 -122434,1202:485:1,25,28,0,0,-0.13605 -122435,1202:487:1,27,28,0,0,-0.13605 -122436,1202:487:2,27.5,28,0,0,-0.13605 -122437,1202:488:1,28,28,0,0,-0.13605 -122438,1212:382:1,122,28,0,0,-0.0343049 -122439,1212:382:2,122.5,28,0,0,-0.033993 -122440,1213:380:2,130.5,28,0,0,-0.13605 -122441,1213:381:1,131,28,0,0,-0.108154 -122442,1213:381:2,131.5,28,0,0,-0.126315 -122443,1213:382:1,132,28,0,0,-0.13605 -122444,1213:382:2,132.5,28,0,0,-0.13605 -122445,1213:383:1,133,28,0,0,-0.116113 -122446,1213:383:2,133.5,28,0,0,-0.113511 -122447,1213:384:1,134,28,0,0,-0.13605 -122448,1213:384:2,134.5,28,0,0,-0.13605 -122449,1213:485:1,135,28,0,0,-0.13405 -122450,1213:485:2,135.5,28,0,0,-0.11326 -122451,1213:486:1,136,28,0,0,-0.113567 -122452,1213:486:2,136.5,28,0,0,-0.13605 -122453,1213:487:1,137,28,0,0,-0.13605 -122454,1213:487:2,137.5,28,0,0,-0.13605 -122455,1213:488:1,138,28,0,0,-0.13605 -122456,1213:488:2,138.5,28,0,0,-0.13605 -122457,1213:489:1,139,28,0,0,-0.135061 -122458,1213:489:2,139.5,28,0,0,-0.111849 -122459,1214:380:1,140,28,0,0,-0.135964 -122460,1214:380:2,140.5,28,0,0,-0.13605 -122461,1214:381:2,141.5,28,0,0,-0.13605 -122462,1214:382:1,142,28,0,0,-0.13605 -122463,1214:382:2,142.5,28,0,0,-0.13605 -122464,1214:383:1,143,28,0,0,-0.13605 -122465,1214:383:2,143.5,28,0,0,-0.122029 -122466,1214:384:1,144,28,0,0,-0.0737008 -122467,1214:384:2,144.5,28,0,0,-0.0954582 -122468,1214:485:1,145,28,0,0,-0.13605 -122469,1214:485:2,145.5,28,0,0,-0.13605 -122470,1214:486:1,146,28,0,0,-0.13605 -122471,1214:486:2,146.5,28,0,0,-0.13605 -122472,1214:487:1,147,28,0,0,-0.13605 -122473,1214:487:2,147.5,28,0,0,-0.13605 -122474,1214:488:1,148,28,0,0,-0.13605 -122475,1214:488:2,148.5,28,0,0,-0.13605 -122476,1214:489:1,149,28,0,0,-0.13605 -122477,1214:489:2,149.5,28,0,0,-0.13605 -122478,1215:380:1,150,28,0,0,-0.13605 -122479,1215:380:2,150.5,28,0,0,-0.13605 -122480,1215:381:1,151,28,0,0,-0.13605 -122481,1215:381:2,151.5,28,0,0,-0.13605 -122482,1215:382:1,152,28,0,0,-0.133781 -122483,1215:382:2,152.5,28,0,0,-0.127326 -122484,1215:383:1,153,28,0,0,-0.13605 -122485,1215:383:2,153.5,28,0,0,-0.13605 -122486,1215:384:1,154,28,0,0,-0.13605 -122487,1215:384:2,154.5,28,0,0,-0.13605 -122488,1215:485:1,155,28,0,0,-0.13605 -122489,1215:485:2,155.5,28,0,0,-0.13605 -122490,1215:486:1,156,28,0,0,-0.13605 -122491,1215:486:2,156.5,28,0,0,-0.13605 -122492,1215:487:1,157,28,0,0,-0.13605 -122493,1215:487:2,157.5,28,0,0,-0.13605 -122494,1215:488:1,158,28,0,0,-0.13605 -122495,1215:488:2,158.5,28,0,0,-0.13605 -122496,1215:489:1,159,28,0,0,-0.13605 -122497,1215:489:2,159.5,28,0,0,-0.13605 -122498,1216:380:1,160,28,0,0,-0.13605 -122499,1216:380:2,160.5,28,0,0,-0.13605 -122500,1216:381:1,161,28,0,0,-0.121969 -122501,1216:381:2,161.5,28,0,0,-0.108472 -122502,1216:382:1,162,28,0,0,-0.110566 -122503,1216:382:2,162.5,28,0,0,-0.124972 -122504,1216:383:1,163,28,0,0,-0.13605 -122505,1216:383:2,163.5,28,0,0,-0.13605 -122506,1216:384:1,164,28,0,0,-0.125283 -122507,1216:384:2,164.5,28,0,0,-0.127866 -122508,1216:485:1,165,28,0,0,-0.13605 -122509,1216:485:2,165.5,28,0,0,-0.13605 -122510,1216:486:1,166,28,0,0,-0.13605 -122511,1216:486:2,166.5,28,0,0,-0.13605 -122512,1216:487:1,167,28,0,0,-0.132349 -122513,1216:487:2,167.5,28,0,0,-0.123215 -122514,1216:488:1,168,28,0,0,-0.117004 -122515,1216:488:2,168.5,28,0,0,-0.112843 -122516,1216:489:1,169,28,0,0,-0.10585 -122517,1216:489:2,169.5,28,0,0,-0.104337 -122518,1217:380:1,170,28,0,0,-0.110593 -122519,1217:380:2,170.5,28,0,0,-0.11741 -122520,1217:381:1,171,28,0,0,-0.129891 -122521,1217:381:2,171.5,28,0,0,-0.120796 -122522,1217:382:1,172,28,0,0,-0.0907812 -122523,1217:382:2,172.5,28,0,0,-0.0812371 -122524,1217:383:1,173,28,0,0,-0.0844879 -122525,1217:383:2,173.5,28,0,0,-0.0903012 -122526,1217:384:1,174,28,0,0,-0.0946762 -122527,1217:384:2,174.5,28,0,0,-0.0967852 -122528,1217:485:1,175,28,0,0,-0.0934033 -122529,1217:485:2,175.5,28,0,0,-0.0894144 -122530,1217:486:1,176,28,0,0,-0.0876471 -122531,1217:486:2,176.5,28,0,0,-0.0871223 -122532,1217:487:1,177,28,0,0,-0.0877313 -122533,1217:487:2,177.5,28,0,0,-0.0907158 -122534,1217:488:1,178,28,0,0,-0.0945617 -122535,1217:488:2,178.5,28,0,0,-0.0957357 -122536,1217:489:1,179,28,0,0,-0.0942419 -122537,1217:489:2,179.5,28,0,0,-0.0902361 -122538,1218:380:1,180,28,0,0,-0.0870387 -122539,7218:380:3,-180,28.5,0,0,-0.0812756 -122540,7217:489:4,-179.5,28.5,0,0,-0.0794915 -122541,7217:489:3,-179,28.5,0,0,-0.0768108 -122542,7217:488:4,-178.5,28.5,0,0,-0.0745803 -122543,7217:488:3,-178,28.5,0,0,-0.074086 -122544,7217:487:4,-177.5,28.5,0,0,-0.0750602 -122545,7217:487:3,-177,28.5,0,0,-0.0759934 -122546,7217:486:4,-176.5,28.5,0,0,-0.0758668 -122547,7217:486:3,-176,28.5,0,0,-0.0740334 -122548,7217:485:4,-175.5,28.5,0,0,-0.0722819 -122549,7217:485:3,-175,28.5,0,0,-0.072179 -122550,7217:384:4,-174.5,28.5,0,0,-0.0729874 -122551,7217:384:3,-174,28.5,0,0,-0.0735084 -122552,7217:383:4,-173.5,28.5,0,0,-0.0730566 -122553,7217:383:3,-173,28.5,0,0,-0.0717359 -122554,7217:382:4,-172.5,28.5,0,0,-0.0710264 -122555,7217:382:3,-172,28.5,0,0,-0.0716338 -122556,7217:381:4,-171.5,28.5,0,0,-0.0727802 -122557,7217:381:3,-171,28.5,0,0,-0.0735606 -122558,7217:380:4,-170.5,28.5,0,0,-0.0739456 -122559,7217:380:3,-170,28.5,0,0,-0.0741214 -122560,7216:489:4,-169.5,28.5,0,0,-0.0744567 -122561,7216:489:3,-169,28.5,0,0,-0.0748109 -122562,7216:488:4,-168.5,28.5,0,0,-0.0748288 -122563,7216:488:3,-168,28.5,0,0,-0.074864 -122564,7216:487:4,-167.5,28.5,0,0,-0.0755253 -122565,7216:487:3,-167,28.5,0,0,-0.0768839 -122566,7216:486:4,-166.5,28.5,0,0,-0.0793966 -122567,7216:486:3,-166,28.5,0,0,-0.080676 -122568,7216:485:4,-165.5,28.5,0,0,-0.0820169 -122569,7216:485:3,-165,28.5,0,0,-0.083502 -122570,7216:384:4,-164.5,28.5,0,0,-0.0847515 -122571,7216:384:3,-164,28.5,0,0,-0.0847106 -122572,7216:383:4,-163.5,28.5,0,0,-0.082984 -122573,7216:383:3,-163,28.5,0,0,-0.0809268 -122574,7216:382:4,-162.5,28.5,0,0,-0.0804453 -122575,7216:382:3,-162,28.5,0,0,-0.0819978 -122576,7216:381:4,-161.5,28.5,0,0,-0.0848936 -122577,7216:381:3,-161,28.5,0,0,-0.0883027 -122578,7216:380:4,-160.5,28.5,0,0,-0.091352 -122579,7216:380:3,-160,28.5,0,0,-0.0948595 -122580,7215:489:4,-159.5,28.5,0,0,-0.0990657 -122581,7215:489:3,-159,28.5,0,0,-0.101949 -122582,7215:488:4,-158.5,28.5,0,0,-0.102223 -122583,7215:488:3,-158,28.5,0,0,-0.100814 -122584,7215:487:4,-157.5,28.5,0,0,-0.0990415 -122585,7215:487:3,-157,28.5,0,0,-0.0974677 -122586,7215:486:4,-156.5,28.5,0,0,-0.0976807 -122587,7215:486:3,-156,28.5,0,0,-0.100667 -122588,7215:485:4,-155.5,28.5,0,0,-0.10388 -122589,7215:485:3,-155,28.5,0,0,-0.103627 -122590,7215:384:4,-154.5,28.5,0,0,-0.102172 -122591,7215:384:3,-154,28.5,0,0,-0.104668 -122592,7215:383:4,-153.5,28.5,0,0,-0.10981 -122593,7215:383:3,-153,28.5,0,0,-0.113651 -122594,7215:382:4,-152.5,28.5,0,0,-0.114747 -122595,7215:382:3,-152,28.5,0,0,-0.114776 -122596,7215:381:4,-151.5,28.5,0,0,-0.115941 -122597,7215:381:3,-151,28.5,0,0,-0.11837 -122598,7215:380:4,-150.5,28.5,0,0,-0.120706 -122599,7215:380:3,-150,28.5,0,0,-0.121065 -122600,7214:489:4,-149.5,28.5,0,0,-0.120646 -122601,7214:489:3,-149,28.5,0,0,-0.122453 -122602,7214:488:4,-148.5,28.5,0,0,-0.126096 -122603,7214:488:3,-148,28.5,0,0,-0.128762 -122604,7214:487:4,-147.5,28.5,0,0,-0.12947 -122605,7214:487:3,-147,28.5,0,0,-0.130151 -122606,7214:486:4,-146.5,28.5,0,0,-0.134016 -122607,7214:486:3,-146,28.5,0,0,-0.13605 -122608,7214:485:4,-145.5,28.5,0,0,-0.13605 -122609,7214:485:3,-145,28.5,0,0,-0.13605 -122610,7214:384:4,-144.5,28.5,0,0,-0.13605 -122611,7214:384:3,-144,28.5,0,0,-0.13605 -122612,7214:383:4,-143.5,28.5,0,0,-0.13605 -122613,7214:383:3,-143,28.5,0,0,-0.13605 -122614,7214:382:4,-142.5,28.5,0,0,-0.13605 -122615,7214:382:3,-142,28.5,0,0,-0.13605 -122616,7214:381:4,-141.5,28.5,0,0,-0.13605 -122617,7214:381:3,-141,28.5,0,0,-0.13605 -122618,7214:380:4,-140.5,28.5,0,0,-0.13605 -122619,7214:380:3,-140,28.5,0,0,-0.13605 -122620,7213:489:4,-139.5,28.5,0,0,-0.13605 -122621,7213:489:3,-139,28.5,0,0,-0.13605 -122622,7213:488:4,-138.5,28.5,0,0,-0.13605 -122623,7213:488:3,-138,28.5,0,0,-0.13605 -122624,7213:487:4,-137.5,28.5,0,0,-0.13605 -122625,7213:487:3,-137,28.5,0,0,-0.13605 -122626,7213:486:4,-136.5,28.5,0,0,-0.13605 -122627,7213:486:3,-136,28.5,0,0,-0.13605 -122628,7213:485:4,-135.5,28.5,0,0,-0.13605 -122629,7213:485:3,-135,28.5,0,0,-0.13605 -122630,7213:384:4,-134.5,28.5,0,0,-0.13605 -122631,7213:384:3,-134,28.5,0,0,-0.13605 -122632,7213:383:4,-133.5,28.5,0,0,-0.13605 -122633,7213:383:3,-133,28.5,0,0,-0.13605 -122634,7213:382:4,-132.5,28.5,0,0,-0.13605 -122635,7213:382:3,-132,28.5,0,0,-0.13605 -122636,7213:381:4,-131.5,28.5,0,0,-0.13605 -122637,7213:381:3,-131,28.5,0,0,-0.13605 -122638,7213:380:4,-130.5,28.5,0,0,-0.13605 -122639,7213:380:3,-130,28.5,0,0,-0.13605 -122640,7212:489:4,-129.5,28.5,0,0,-0.13605 -122641,7212:489:3,-129,28.5,0,0,-0.13605 -122642,7212:488:4,-128.5,28.5,0,0,-0.13605 -122643,7212:488:3,-128,28.5,0,0,-0.13605 -122644,7212:487:4,-127.5,28.5,0,0,-0.13605 -122645,7212:487:3,-127,28.5,0,0,-0.13605 -122646,7212:486:4,-126.5,28.5,0,0,-0.13605 -122647,7212:486:3,-126,28.5,0,0,-0.13605 -122648,7212:485:4,-125.5,28.5,0,0,-0.13605 -122649,7212:485:3,-125,28.5,0,0,-0.13605 -122650,7212:384:4,-124.5,28.5,0,0,-0.128377 -122651,7207:380:3,-70,28.5,0,0,-0.0741214 -122652,7206:489:4,-69.5,28.5,0,0,-0.0859797 -122653,7206:489:3,-69,28.5,0,0,-0.0875629 -122654,7206:488:4,-68.5,28.5,0,0,-0.0996689 -122655,7206:488:3,-68,28.5,0,0,-0.119547 -122656,7206:487:4,-67.5,28.5,0,0,-0.119133 -122657,7206:487:3,-67,28.5,0,0,-0.119932 -122658,7206:486:4,-66.5,28.5,0,0,-0.121125 -122659,7206:486:3,-66,28.5,0,0,-0.128154 -122660,7206:485:4,-65.5,28.5,0,0,-0.13605 -122661,7206:485:3,-65,28.5,0,0,-0.13594 -122662,7206:384:4,-64.5,28.5,0,0,-0.135978 -122663,7206:384:3,-64,28.5,0,0,-0.13605 -122664,7206:383:4,-63.5,28.5,0,0,-0.13605 -122665,7206:383:3,-63,28.5,0,0,-0.130313 -122666,7206:382:4,-62.5,28.5,0,0,-0.119428 -122667,7206:382:3,-62,28.5,0,0,-0.12014 -122668,7206:381:4,-61.5,28.5,0,0,-0.123644 -122669,7206:381:3,-61,28.5,0,0,-0.13215 -122670,7206:380:4,-60.5,28.5,0,0,-0.13605 -122671,7206:380:3,-60,28.5,0,0,-0.13605 -122672,7205:489:4,-59.5,28.5,0,0,-0.13605 -122673,7205:489:3,-59,28.5,0,0,-0.126535 -122674,7205:488:4,-58.5,28.5,0,0,-0.13605 -122675,7205:488:3,-58,28.5,0,0,-0.13605 -122676,7205:487:4,-57.5,28.5,0,0,-0.13605 -122677,7205:487:3,-57,28.5,0,0,-0.13605 -122678,7205:486:4,-56.5,28.5,0,0,-0.13605 -122679,7205:486:3,-56,28.5,0,0,-0.13605 -122680,7205:485:4,-55.5,28.5,0,0,-0.13605 -122681,7205:485:3,-55,28.5,0,0,-0.13605 -122682,7205:384:4,-54.5,28.5,0,0,-0.13605 -122683,7205:384:3,-54,28.5,0,0,-0.13605 -122684,7205:383:4,-53.5,28.5,0,0,-0.0817434 -122685,7205:383:3,-53,28.5,0,0,-0.0794342 -122686,7205:382:4,-52.5,28.5,0,0,-0.0970669 -122687,7205:382:3,-52,28.5,0,0,-0.119339 -122688,7205:381:4,-51.5,28.5,0,0,-0.13605 -122689,7205:381:3,-51,28.5,0,0,-0.135956 -122690,7205:380:4,-50.5,28.5,0,0,-0.106786 -122691,7205:380:3,-50,28.5,0,0,-0.0784933 -122692,7204:489:4,-49.5,28.5,0,0,-0.13605 -122693,7204:489:3,-49,28.5,0,0,-0.13605 -122694,7204:488:4,-48.5,28.5,0,0,-0.13605 -122695,7204:488:3,-48,28.5,0,0,-0.13605 -122696,7204:487:4,-47.5,28.5,0,0,-0.13605 -122697,7204:487:3,-47,28.5,0,0,-0.13605 -122698,7204:486:4,-46.5,28.5,0,0,-0.13605 -122699,7204:486:3,-46,28.5,0,0,-0.13605 -122700,7204:485:4,-45.5,28.5,0,0,-0.13605 -122701,7204:485:3,-45,28.5,0,0,-0.129245 -122702,7204:384:4,-44.5,28.5,0,0,-0.13605 -122703,7204:384:3,-44,28.5,0,0,-0.13605 -122704,7204:383:4,-43.5,28.5,0,0,-0.13605 -122705,7204:383:3,-43,28.5,0,0,-0.13605 -122706,7204:382:4,-42.5,28.5,0,0,-0.13605 -122707,7204:382:3,-42,28.5,0,0,-0.13605 -122708,7204:381:4,-41.5,28.5,0,0,-0.13605 -122709,7204:381:3,-41,28.5,0,0,-0.13605 -122710,7204:380:4,-40.5,28.5,0,0,-0.13605 -122711,7204:380:3,-40,28.5,0,0,-0.13605 -122712,7203:489:4,-39.5,28.5,0,0,-0.13605 -122713,7203:489:3,-39,28.5,0,0,-0.13605 -122714,7203:488:4,-38.5,28.5,0,0,-0.13605 -122715,7203:488:3,-38,28.5,0,0,-0.13605 -122716,7203:487:4,-37.5,28.5,0,0,-0.13605 -122717,7203:487:3,-37,28.5,0,0,-0.13605 -122718,7203:486:4,-36.5,28.5,0,0,-0.13605 -122719,7203:486:3,-36,28.5,0,0,-0.13605 -122720,7203:485:4,-35.5,28.5,0,0,-0.13605 -122721,7203:485:3,-35,28.5,0,0,-0.13605 -122722,7203:384:4,-34.5,28.5,0,0,-0.13605 -122723,7203:384:3,-34,28.5,0,0,-0.13605 -122724,7203:383:4,-33.5,28.5,0,0,-0.13605 -122725,7203:383:3,-33,28.5,0,0,-0.13605 -122726,7203:382:4,-32.5,28.5,0,0,-0.13605 -122727,7203:382:3,-32,28.5,0,0,-0.13605 -122728,7203:381:4,-31.5,28.5,0,0,-0.13605 -122729,7203:381:3,-31,28.5,0,0,-0.13605 -122730,7203:380:4,-30.5,28.5,0,0,-0.13605 -122731,7203:380:3,-30,28.5,0,0,-0.13605 -122732,7202:489:4,-29.5,28.5,0,0,-0.13605 -122733,7202:489:3,-29,28.5,0,0,-0.13605 -122734,7202:488:4,-28.5,28.5,0,0,-0.13605 -122735,7202:488:3,-28,28.5,0,0,-0.13605 -122736,7202:487:4,-27.5,28.5,0,0,-0.13605 -122737,7202:487:3,-27,28.5,0,0,-0.13605 -122738,7202:486:4,-26.5,28.5,0,0,-0.13605 -122739,7202:486:3,-26,28.5,0,0,-0.13605 -122740,7202:485:4,-25.5,28.5,0,0,-0.13605 -122741,7202:485:3,-25,28.5,0,0,-0.13605 -122742,7202:384:4,-24.5,28.5,0,0,-0.13605 -122743,7202:384:3,-24,28.5,0,0,-0.13605 -122744,7202:383:4,-23.5,28.5,0,0,-0.13605 -122745,7202:383:3,-23,28.5,0,0,-0.13605 -122746,7202:382:4,-22.5,28.5,0,0,-0.13605 -122747,7202:382:3,-22,28.5,0,0,-0.13605 -122748,7202:381:4,-21.5,28.5,0,0,-0.13605 -122749,7202:381:3,-21,28.5,0,0,-0.13605 -122750,7202:380:4,-20.5,28.5,0,0,-0.13605 -122751,7202:380:3,-20,28.5,0,0,-0.13605 -122752,7201:489:4,-19.5,28.5,0,0,-0.13605 -122753,7201:489:3,-19,28.5,0,0,-0.13605 -122754,7201:488:4,-18.5,28.5,0,0,-0.13605 -122755,7201:488:3,-18,28.5,0,0,-0.13605 -122756,7201:487:4,-17.5,28.5,0,0,-0.13605 -122757,7201:487:3,-17,28.5,0,0,-0.13605 -122758,7201:486:4,-16.5,28.5,0,0,-0.13605 -122759,7201:486:3,-16,28.5,0,0,-0.13605 -122760,7201:485:4,-15.5,28.5,0,0,-0.13605 -122761,7201:485:3,-15,28.5,0,0,-0.13605 -122762,7201:384:4,-14.5,28.5,0,0,-0.13605 -122763,7201:384:3,-14,28.5,0,0,-0.13605 -122764,7201:383:4,-13.5,28.5,0,0,-0.13605 -122765,7201:383:3,-13,28.5,0,0,-0.13605 -122766,7201:382:4,-12.5,28.5,0,0,-0.13605 -122767,7201:382:3,-12,28.5,0,0,-0.13605 -122768,7201:381:4,-11.5,28.5,0,0,-0.13605 -122769,7201:381:3,-11,28.5,0,0,-0.13605 -122770,7201:380:4,-10.5,28.5,0,0,-0.13605 -122771,7201:380:3,-10,28.5,0,0,-0.13605 -122772,1200:383:3,3,28.5,0,0,-0.13605 -122773,1200:383:4,3.5,28.5,0,0,-0.13605 -122774,1200:384:3,4,28.5,0,0,-0.13605 -122775,1200:384:4,4.5,28.5,0,0,-0.13605 -122776,1200:485:3,5,28.5,0,0,-0.13605 -122777,1200:485:4,5.5,28.5,0,0,-0.13605 -122778,1200:486:3,6,28.5,0,0,-0.13605 -122779,1200:486:4,6.5,28.5,0,0,-0.13605 -122780,1200:487:3,7,28.5,0,0,-0.13605 -122781,1200:487:4,7.5,28.5,0,0,-0.13605 -122782,1200:488:3,8,28.5,0,0,-0.13605 -122783,1200:489:3,9,28.5,0,0,-0.13605 -122784,1200:489:4,9.5,28.5,0,0,-0.13605 -122785,1201:380:3,10,28.5,0,0,-0.13605 -122786,1201:380:4,10.5,28.5,0,0,-0.13605 -122787,1201:381:3,11,28.5,0,0,-0.13605 -122788,1201:485:4,15.5,28.5,0,0,-0.13605 -122789,1201:486:3,16,28.5,0,0,-0.13605 -122790,1201:486:4,16.5,28.5,0,0,-0.13605 -122791,1201:487:3,17,28.5,0,0,-0.13605 -122792,1201:487:4,17.5,28.5,0,0,-0.13605 -122793,1201:488:3,18,28.5,0,0,-0.13605 -122794,1201:488:4,18.5,28.5,0,0,-0.13605 -122795,1202:488:3,28,28.5,0,0,-0.13605 -122796,1213:380:4,130.5,28.5,0,0,-0.0995958 -122797,1213:381:3,131,28.5,0,0,-0.100789 -122798,1213:381:4,131.5,28.5,0,0,-0.0878156 -122799,1213:382:3,132,28.5,0,0,-0.0743327 -122800,1213:382:4,132.5,28.5,0,0,-0.056405 -122801,1213:383:3,133,28.5,0,0,-0.0563922 -122802,1213:383:4,133.5,28.5,0,0,-0.0900188 -122803,1213:384:3,134,28.5,0,0,-0.101825 -122804,1213:384:4,134.5,28.5,0,0,-0.0891992 -122805,1213:485:3,135,28.5,0,0,-0.0740158 -122806,1213:485:4,135.5,28.5,0,0,-0.082253 -122807,1213:486:3,136,28.5,0,0,-0.0884941 -122808,1213:486:4,136.5,28.5,0,0,-0.100814 -122809,1213:487:3,137,28.5,0,0,-0.100814 -122810,1213:487:4,137.5,28.5,0,0,-0.132349 -122811,1213:488:3,138,28.5,0,0,-0.13605 -122812,1213:488:4,138.5,28.5,0,0,-0.13605 -122813,1213:489:3,139,28.5,0,0,-0.130379 -122814,1213:489:4,139.5,28.5,0,0,-0.0980843 -122815,1214:380:3,140,28.5,0,0,-0.114493 -122816,1214:380:4,140.5,28.5,0,0,-0.103501 -122817,1214:381:4,141.5,28.5,0,0,-0.13605 -122818,1214:382:3,142,28.5,0,0,-0.13605 -122819,1214:382:4,142.5,28.5,0,0,-0.13605 -122820,1214:383:3,143,28.5,0,0,-0.124724 -122821,1214:384:3,144,28.5,0,0,-0.0387051 -122822,1214:384:4,144.5,28.5,0,0,-0.0445894 -122823,1214:485:3,145,28.5,0,0,-0.0759753 -122824,1214:485:4,145.5,28.5,0,0,-0.10781 -122825,1214:486:3,146,28.5,0,0,-0.123154 -122826,1214:486:4,146.5,28.5,0,0,-0.0951351 -122827,1214:487:3,147,28.5,0,0,-0.0703076 -122828,1214:487:4,147.5,28.5,0,0,-0.0733692 -122829,1214:488:3,148,28.5,0,0,-0.0881752 -122830,1214:488:4,148.5,28.5,0,0,-0.13605 -122831,1214:489:3,149,28.5,0,0,-0.13605 -122832,1214:489:4,149.5,28.5,0,0,-0.13605 -122833,1215:380:3,150,28.5,0,0,-0.13605 -122834,1215:380:4,150.5,28.5,0,0,-0.13605 -122835,1215:381:3,151,28.5,0,0,-0.13605 -122836,1215:381:4,151.5,28.5,0,0,-0.101429 -122837,1215:382:3,152,28.5,0,0,-0.056537 -122838,1215:382:4,152.5,28.5,0,0,-0.0532251 -122839,1215:383:3,153,28.5,0,0,-0.0631733 -122840,1215:383:4,153.5,28.5,0,0,-0.0898457 -122841,1215:384:3,154,28.5,0,0,-0.119251 -122842,1215:384:4,154.5,28.5,0,0,-0.135964 -122843,1215:485:3,155,28.5,0,0,-0.13605 -122844,1215:485:4,155.5,28.5,0,0,-0.13605 -122845,1215:486:3,156,28.5,0,0,-0.12889 -122846,1215:486:4,156.5,28.5,0,0,-0.112954 -122847,1215:487:3,157,28.5,0,0,-0.0982275 -122848,1215:487:4,157.5,28.5,0,0,-0.0945617 -122849,1215:488:3,158,28.5,0,0,-0.107863 -122850,1215:488:4,158.5,28.5,0,0,-0.13605 -122851,1215:489:3,159,28.5,0,0,-0.13605 -122852,1215:489:4,159.5,28.5,0,0,-0.13605 -122853,1216:380:3,160,28.5,0,0,-0.13605 -122854,1216:380:4,160.5,28.5,0,0,-0.128249 -122855,1216:381:3,161,28.5,0,0,-0.100937 -122856,1216:381:4,161.5,28.5,0,0,-0.108791 -122857,1216:382:3,162,28.5,0,0,-0.116027 -122858,1216:382:4,162.5,28.5,0,0,-0.125252 -122859,1216:383:3,163,28.5,0,0,-0.129632 -122860,1216:383:4,163.5,28.5,0,0,-0.106969 -122861,1216:384:3,164,28.5,0,0,-0.10731 -122862,1216:384:4,164.5,28.5,0,0,-0.124507 -122863,1216:485:3,165,28.5,0,0,-0.131229 -122864,1216:485:4,165.5,28.5,0,0,-0.133949 -122865,1216:486:3,166,28.5,0,0,-0.131458 -122866,1216:486:4,166.5,28.5,0,0,-0.121938 -122867,1216:487:3,167,28.5,0,0,-0.108818 -122868,1216:487:4,167.5,28.5,0,0,-0.097279 -122869,1216:488:3,168,28.5,0,0,-0.0939012 -122870,1216:488:4,168.5,28.5,0,0,-0.0977994 -122871,1216:489:3,169,28.5,0,0,-0.0961305 -122872,1216:489:4,169.5,28.5,0,0,-0.0887498 -122873,1217:380:3,170,28.5,0,0,-0.0917718 -122874,1217:380:4,170.5,28.5,0,0,-0.0966915 -122875,1217:381:3,171,28.5,0,0,-0.10731 -122876,1217:381:4,171.5,28.5,0,0,-0.0940149 -122877,1217:382:3,172,28.5,0,0,-0.0762287 -122878,1217:382:4,172.5,28.5,0,0,-0.0715495 -122879,1217:383:3,173,28.5,0,0,-0.0725216 -122880,1217:383:4,173.5,28.5,0,0,-0.0754355 -122881,1217:384:3,174,28.5,0,0,-0.0790375 -122882,1217:384:4,174.5,28.5,0,0,-0.0839633 -122883,1217:485:3,175,28.5,0,0,-0.0877738 -122884,1217:485:4,175.5,28.5,0,0,-0.0862275 -122885,1217:486:3,176,28.5,0,0,-0.0823119 -122886,1217:486:4,176.5,28.5,0,0,-0.0784933 -122887,1217:487:3,177,28.5,0,0,-0.0756151 -122888,1217:487:4,177.5,28.5,0,0,-0.076138 -122889,1217:488:3,178,28.5,0,0,-0.0797953 -122890,1217:488:4,178.5,28.5,0,0,-0.0828254 -122891,1217:489:3,179,28.5,0,0,-0.0835423 -122892,1217:489:4,179.5,28.5,0,0,-0.0825092 -122893,1218:380:3,180,28.5,0,0,-0.0812756 -122894,7218:390:1,-180,29,0,0,-0.0742273 -122895,7217:499:2,-179.5,29,0,0,-0.0745981 -122896,7217:499:1,-179,29,0,0,-0.0727454 -122897,7217:498:2,-178.5,29,0,0,-0.0700089 -122898,7217:498:1,-178,29,0,0,-0.0681973 -122899,7217:497:2,-177.5,29,0,0,-0.0680844 -122900,7217:497:1,-177,29,0,0,-0.0690233 -122901,7217:496:2,-176.5,29,0,0,-0.0696623 -122902,7217:496:1,-176,29,0,0,-0.0693335 -122903,7217:495:2,-175.5,29,0,0,-0.0681168 -122904,7217:495:1,-175,29,0,0,-0.066828 -122905,7217:394:2,-174.5,29,0,0,-0.0663572 -122906,7217:394:1,-174,29,0,0,-0.0664976 -122907,7217:393:2,-173.5,29,0,0,-0.0662476 -122908,7217:393:1,-173,29,0,0,-0.0651495 -122909,7217:392:2,-172.5,29,0,0,-0.064448 -122910,7217:392:1,-172,29,0,0,-0.0648895 -122911,7217:391:2,-171.5,29,0,0,-0.0660141 -122912,7217:391:1,-171,29,0,0,-0.0670172 -122913,7217:390:2,-170.5,29,0,0,-0.0677002 -122914,7217:390:1,-170,29,0,0,-0.067828 -122915,7216:499:2,-169.5,29,0,0,-0.0673973 -122916,7216:499:1,-169,29,0,0,-0.0671117 -122917,7216:498:2,-168.5,29,0,0,-0.0673023 -122918,7216:498:1,-168,29,0,0,-0.0680202 -122919,7216:497:2,-167.5,29,0,0,-0.0691374 -122920,7216:497:1,-167,29,0,0,-0.0703243 -122921,7216:496:2,-166.5,29,0,0,-0.0720935 -122922,7216:496:1,-166,29,0,0,-0.0737707 -122923,7216:495:2,-165.5,29,0,0,-0.0762287 -122924,7216:495:1,-165,29,0,0,-0.077953 -122925,7216:394:2,-164.5,29,0,0,-0.078046 -122926,7216:394:1,-164,29,0,0,-0.0766648 -122927,7216:393:2,-163.5,29,0,0,-0.0745274 -122928,7216:393:1,-163,29,0,0,-0.0731608 -122929,7216:392:2,-162.5,29,0,0,-0.0731433 -122930,7216:392:1,-162,29,0,0,-0.0740511 -122931,7216:391:2,-161.5,29,0,0,-0.0752029 -122932,7216:391:1,-161,29,0,0,-0.0769023 -122933,7216:390:2,-160.5,29,0,0,-0.0795106 -122934,7216:390:1,-160,29,0,0,-0.0829246 -122935,7215:499:2,-159.5,29,0,0,-0.0871223 -122936,7215:499:1,-159,29,0,0,-0.0895004 -122937,7215:498:2,-158.5,29,0,0,-0.0893067 -122938,7215:498:1,-158,29,0,0,-0.0885792 -122939,7215:497:2,-157.5,29,0,0,-0.0887928 -122940,7215:497:1,-157,29,0,0,-0.0896083 -122941,7215:496:2,-156.5,29,0,0,-0.0911103 -122942,7215:496:1,-156,29,0,0,-0.0933131 -122943,7215:495:2,-155.5,29,0,0,-0.0947678 -122944,7215:495:1,-155,29,0,0,-0.094379 -122945,7215:394:2,-154.5,29,0,0,-0.0964808 -122946,7215:394:1,-154,29,0,0,-0.102696 -122947,7215:393:2,-153.5,29,0,0,-0.10624 -122948,7215:393:1,-153,29,0,0,-0.103905 -122949,7215:392:2,-152.5,29,0,0,-0.101133 -122950,7215:392:1,-152,29,0,0,-0.102422 -122951,7215:391:2,-151.5,29,0,0,-0.106708 -122952,7215:391:1,-151,29,0,0,-0.109165 -122953,7215:390:2,-150.5,29,0,0,-0.107415 -122954,7215:390:1,-150,29,0,0,-0.104311 -122955,7214:499:2,-149.5,29,0,0,-0.103728 -122956,7214:499:1,-149,29,0,0,-0.106813 -122957,7214:498:2,-148.5,29,0,0,-0.112871 -122958,7214:498:1,-148,29,0,0,-0.117991 -122959,7214:497:2,-147.5,29,0,0,-0.11931 -122960,7214:497:1,-147,29,0,0,-0.119694 -122961,7214:496:2,-146.5,29,0,0,-0.123368 -122962,7214:496:1,-146,29,0,0,-0.12918 -122963,7214:495:2,-145.5,29,0,0,-0.13288 -122964,7214:495:1,-145,29,0,0,-0.132947 -122965,7214:394:2,-144.5,29,0,0,-0.133013 -122966,7214:394:1,-144,29,0,0,-0.134285 -122967,7214:393:2,-143.5,29,0,0,-0.13405 -122968,7214:393:1,-143,29,0,0,-0.13182 -122969,7214:392:2,-142.5,29,0,0,-0.129924 -122970,7214:392:1,-142,29,0,0,-0.130313 -122971,7214:391:2,-141.5,29,0,0,-0.132947 -122972,7214:391:1,-141,29,0,0,-0.135932 -122973,7214:390:2,-140.5,29,0,0,-0.13605 -122974,7214:390:1,-140,29,0,0,-0.13605 -122975,7213:499:2,-139.5,29,0,0,-0.13605 -122976,7213:499:1,-139,29,0,0,-0.13605 -122977,7213:498:2,-138.5,29,0,0,-0.13605 -122978,7213:498:1,-138,29,0,0,-0.13605 -122979,7213:497:2,-137.5,29,0,0,-0.13605 -122980,7213:497:1,-137,29,0,0,-0.13605 -122981,7213:496:2,-136.5,29,0,0,-0.13605 -122982,7213:496:1,-136,29,0,0,-0.13605 -122983,7213:495:2,-135.5,29,0,0,-0.13605 -122984,7213:495:1,-135,29,0,0,-0.13605 -122985,7213:394:2,-134.5,29,0,0,-0.13605 -122986,7213:394:1,-134,29,0,0,-0.13605 -122987,7213:393:2,-133.5,29,0,0,-0.13605 -122988,7213:393:1,-133,29,0,0,-0.13605 -122989,7213:392:2,-132.5,29,0,0,-0.13605 -122990,7213:392:1,-132,29,0,0,-0.13605 -122991,7213:391:2,-131.5,29,0,0,-0.13605 -122992,7213:391:1,-131,29,0,0,-0.13605 -122993,7213:390:2,-130.5,29,0,0,-0.13605 -122994,7213:390:1,-130,29,0,0,-0.13605 -122995,7212:499:2,-129.5,29,0,0,-0.13605 -122996,7212:499:1,-129,29,0,0,-0.13605 -122997,7212:498:2,-128.5,29,0,0,-0.13605 -122998,7212:498:1,-128,29,0,0,-0.13605 -122999,7212:497:2,-127.5,29,0,0,-0.13605 -123000,7212:497:1,-127,29,0,0,-0.13605 -123001,7212:496:2,-126.5,29,0,0,-0.13605 -123002,7212:496:1,-126,29,0,0,-0.13605 -123003,7212:495:2,-125.5,29,0,0,-0.13605 -123004,7212:495:1,-125,29,0,0,-0.135027 -123005,7212:394:2,-124.5,29,0,0,-0.118927 -123006,7207:390:2,-70.5,29,0,0,-0.0605188 -123007,7207:390:1,-70,29,0,0,-0.0820953 -123008,7206:499:2,-69.5,29,0,0,-0.0813924 -123009,7206:499:1,-69,29,0,0,-0.0820762 -123010,7206:498:2,-68.5,29,0,0,-0.0888782 -123011,7206:498:1,-68,29,0,0,-0.0908907 -123012,7206:497:2,-67.5,29,0,0,-0.0883241 -123013,7206:497:1,-67,29,0,0,-0.0884091 -123014,7206:496:2,-66.5,29,0,0,-0.0941968 -123015,7206:496:1,-66,29,0,0,-0.102796 -123016,7206:495:2,-65.5,29,0,0,-0.104058 -123017,7206:495:1,-65,29,0,0,-0.10388 -123018,7206:394:2,-64.5,29,0,0,-0.0884091 -123019,7206:394:1,-64,29,0,0,-0.0809268 -123020,7206:393:2,-63.5,29,0,0,-0.079321 -123021,7206:393:1,-63,29,0,0,-0.0837219 -123022,7206:392:2,-62.5,29,0,0,-0.0921265 -123023,7206:392:1,-62,29,0,0,-0.104184 -123024,7206:391:2,-61.5,29,0,0,-0.106317 -123025,7206:391:1,-61,29,0,0,-0.098801 -123026,7206:390:2,-60.5,29,0,0,-0.0899977 -123027,7206:390:1,-60,29,0,0,-0.0841243 -123028,7205:499:2,-59.5,29,0,0,-0.0894571 -123029,7205:499:1,-59,29,0,0,-0.0998383 -123030,7205:498:2,-58.5,29,0,0,-0.13605 -123031,7205:498:1,-58,29,0,0,-0.13605 -123032,7205:497:2,-57.5,29,0,0,-0.13605 -123033,7205:497:1,-57,29,0,0,-0.13605 -123034,7205:496:2,-56.5,29,0,0,-0.13605 -123035,7205:496:1,-56,29,0,0,-0.13605 -123036,7205:495:2,-55.5,29,0,0,-0.13605 -123037,7205:495:1,-55,29,0,0,-0.13605 -123038,7205:394:2,-54.5,29,0,0,-0.127136 -123039,7205:394:1,-54,29,0,0,-0.0697116 -123040,7205:393:2,-53.5,29,0,0,-0.0588969 -123041,7205:393:1,-53,29,0,0,-0.0784562 -123042,7205:392:2,-52.5,29,0,0,-0.081412 -123043,7205:392:1,-52,29,0,0,-0.0738931 -123044,7205:391:2,-51.5,29,0,0,-0.0622312 -123045,7205:391:1,-51,29,0,0,-0.0531632 -123046,7205:390:2,-50.5,29,0,0,-0.0458743 -123047,7205:390:1,-50,29,0,0,-0.0304266 -123048,7204:499:2,-49.5,29,0,0,-0.021184 -123049,7204:499:1,-49,29,0,0,-0.0213809 -123050,7204:498:2,-48.5,29,0,0,-0.0792829 -123051,7204:498:1,-48,29,0,0,-0.13605 -123052,7204:497:2,-47.5,29,0,0,-0.13605 -123053,7204:497:1,-47,29,0,0,-0.13605 -123054,7204:496:2,-46.5,29,0,0,-0.13605 -123055,7204:496:1,-46,29,0,0,-0.13605 -123056,7204:495:2,-45.5,29,0,0,-0.13605 -123057,7204:495:1,-45,29,0,0,-0.124106 -123058,7204:394:2,-44.5,29,0,0,-0.13605 -123059,7204:394:1,-44,29,0,0,-0.13605 -123060,7204:393:2,-43.5,29,0,0,-0.13605 -123061,7204:393:1,-43,29,0,0,-0.13605 -123062,7204:392:2,-42.5,29,0,0,-0.13605 -123063,7204:392:1,-42,29,0,0,-0.13605 -123064,7204:391:2,-41.5,29,0,0,-0.13605 -123065,7204:391:1,-41,29,0,0,-0.13605 -123066,7204:390:2,-40.5,29,0,0,-0.13605 -123067,7204:390:1,-40,29,0,0,-0.13605 -123068,7203:499:2,-39.5,29,0,0,-0.13605 -123069,7203:499:1,-39,29,0,0,-0.13605 -123070,7203:498:2,-38.5,29,0,0,-0.13605 -123071,7203:498:1,-38,29,0,0,-0.13605 -123072,7203:497:2,-37.5,29,0,0,-0.13605 -123073,7203:497:1,-37,29,0,0,-0.13605 -123074,7203:496:2,-36.5,29,0,0,-0.13605 -123075,7203:496:1,-36,29,0,0,-0.13605 -123076,7203:495:2,-35.5,29,0,0,-0.13605 -123077,7203:495:1,-35,29,0,0,-0.13605 -123078,7203:394:2,-34.5,29,0,0,-0.13605 -123079,7203:394:1,-34,29,0,0,-0.13605 -123080,7203:393:2,-33.5,29,0,0,-0.13605 -123081,7203:393:1,-33,29,0,0,-0.13605 -123082,7203:392:2,-32.5,29,0,0,-0.13605 -123083,7203:392:1,-32,29,0,0,-0.13605 -123084,7203:391:2,-31.5,29,0,0,-0.13605 -123085,7203:391:1,-31,29,0,0,-0.13605 -123086,7203:390:2,-30.5,29,0,0,-0.13605 -123087,7203:390:1,-30,29,0,0,-0.13605 -123088,7202:499:2,-29.5,29,0,0,-0.13605 -123089,7202:499:1,-29,29,0,0,-0.13605 -123090,7202:498:2,-28.5,29,0,0,-0.13605 -123091,7202:498:1,-28,29,0,0,-0.13605 -123092,7202:497:2,-27.5,29,0,0,-0.13605 -123093,7202:497:1,-27,29,0,0,-0.13605 -123094,7202:496:2,-26.5,29,0,0,-0.13605 -123095,7202:496:1,-26,29,0,0,-0.13605 -123096,7202:495:2,-25.5,29,0,0,-0.13605 -123097,7202:495:1,-25,29,0,0,-0.13605 -123098,7202:394:2,-24.5,29,0,0,-0.13605 -123099,7202:394:1,-24,29,0,0,-0.13605 -123100,7202:393:2,-23.5,29,0,0,-0.13605 -123101,7202:393:1,-23,29,0,0,-0.13605 -123102,7202:392:2,-22.5,29,0,0,-0.13605 -123103,7202:392:1,-22,29,0,0,-0.13605 -123104,7202:391:2,-21.5,29,0,0,-0.13605 -123105,7202:391:1,-21,29,0,0,-0.13605 -123106,7202:390:2,-20.5,29,0,0,-0.13605 -123107,7202:390:1,-20,29,0,0,-0.13605 -123108,7201:499:2,-19.5,29,0,0,-0.13605 -123109,7201:499:1,-19,29,0,0,-0.13605 -123110,7201:498:2,-18.5,29,0,0,-0.13605 -123111,7201:498:1,-18,29,0,0,-0.13605 -123112,7201:497:2,-17.5,29,0,0,-0.13605 -123113,7201:497:1,-17,29,0,0,-0.13605 -123114,7201:496:2,-16.5,29,0,0,-0.13605 -123115,7201:496:1,-16,29,0,0,-0.13605 -123116,7201:495:2,-15.5,29,0,0,-0.13605 -123117,7201:495:1,-15,29,0,0,-0.13605 -123118,7201:394:2,-14.5,29,0,0,-0.13605 -123119,7201:394:1,-14,29,0,0,-0.13605 -123120,7201:393:2,-13.5,29,0,0,-0.13605 -123121,7201:393:1,-13,29,0,0,-0.13605 -123122,7201:392:2,-12.5,29,0,0,-0.13605 -123123,7201:392:1,-12,29,0,0,-0.13605 -123124,7201:391:2,-11.5,29,0,0,-0.13605 -123125,7201:391:1,-11,29,0,0,-0.13605 -123126,7201:390:2,-10.5,29,0,0,-0.13605 -123127,7201:390:1,-10,29,0,0,-0.13605 -123128,1200:392:2,2.5,29,0,0,-0.13605 -123129,1200:393:1,3,29,0,0,-0.13605 -123130,1200:393:2,3.5,29,0,0,-0.13605 -123131,1200:394:1,4,29,0,0,-0.13605 -123132,1200:394:2,4.5,29,0,0,-0.13605 -123133,1200:495:1,5,29,0,0,-0.13605 -123134,1200:495:2,5.5,29,0,0,-0.13605 -123135,1200:496:1,6,29,0,0,-0.13605 -123136,1200:496:2,6.5,29,0,0,-0.13605 -123137,1200:497:1,7,29,0,0,-0.13605 -123138,1200:497:2,7.5,29,0,0,-0.13605 -123139,1200:498:1,8,29,0,0,-0.13605 -123140,1200:499:1,9,29,0,0,-0.13605 -123141,1200:499:2,9.5,29,0,0,-0.13605 -123142,1201:390:1,10,29,0,0,-0.13605 -123143,1201:390:2,10.5,29,0,0,-0.13605 -123144,1201:394:1,14,29,0,0,-0.13605 -123145,1201:394:2,14.5,29,0,0,-0.13605 -123146,1201:495:1,15,29,0,0,-0.13605 -123147,1201:495:2,15.5,29,0,0,-0.13605 -123148,1201:496:1,16,29,0,0,-0.13605 -123149,1201:496:2,16.5,29,0,0,-0.13605 -123150,1201:497:1,17,29,0,0,-0.13605 -123151,1201:497:2,17.5,29,0,0,-0.13605 -123152,1201:498:1,18,29,0,0,-0.13605 -123153,1202:497:2,27.5,29,0,0,-0.13605 -123154,1202:498:1,28,29,0,0,-0.13605 -123155,1202:498:2,28.5,29,0,0,-0.13605 -123156,1202:499:1,29,29,0,0,-0.13605 -123157,1202:499:2,29.5,29,0,0,-0.13605 -123158,1203:390:1,30,29,0,0,-0.13605 -123159,1203:390:2,30.5,29,0,0,-0.13605 -123160,1203:497:2,37.5,29,0,0,-0.13605 -123161,1203:498:1,38,29,0,0,-0.13605 -123162,1213:391:1,131,29,0,0,-0.0613039 -123163,1213:391:2,131.5,29,0,0,-0.0501865 -123164,1213:392:1,132,29,0,0,-0.0442818 -123165,1213:392:2,132.5,29,0,0,-0.046601 -123166,1213:393:1,133,29,0,0,-0.0496768 -123167,1213:393:2,133.5,29,0,0,-0.0513176 -123168,1213:394:1,134,29,0,0,-0.0507602 -123169,1213:394:2,134.5,29,0,0,-0.0517484 -123170,1213:495:1,135,29,0,0,-0.0558161 -123171,1213:495:2,135.5,29,0,0,-0.0572142 -123172,1213:496:1,136,29,0,0,-0.0618673 -123173,1213:496:2,136.5,29,0,0,-0.0653642 -123174,1213:497:1,137,29,0,0,-0.0585949 -123175,1213:497:2,137.5,29,0,0,-0.0774167 -123176,1213:498:1,138,29,0,0,-0.0920377 -123177,1213:498:2,138.5,29,0,0,-0.0987052 -123178,1213:499:1,139,29,0,0,-0.108951 -123179,1213:499:2,139.5,29,0,0,-0.0914845 -123180,1214:390:1,140,29,0,0,-0.0958057 -123181,1214:390:2,140.5,29,0,0,-0.0836021 -123182,1214:495:1,145,29,0,0,-0.0311914 -123183,1214:495:2,145.5,29,0,0,-0.0269677 -123184,1214:496:1,146,29,0,0,-0.0282973 -123185,1214:496:2,146.5,29,0,0,-0.0391249 -123186,1214:497:1,147,29,0,0,-0.0635604 -123187,1214:497:2,147.5,29,0,0,-0.0875841 -123188,1214:498:1,148,29,0,0,-0.0856913 -123189,1214:498:2,148.5,29,0,0,-0.13605 -123190,1214:499:1,149,29,0,0,-0.13605 -123191,1214:499:2,149.5,29,0,0,-0.13605 -123192,1215:390:1,150,29,0,0,-0.13605 -123193,1215:390:2,150.5,29,0,0,-0.13605 -123194,1215:391:1,151,29,0,0,-0.13605 -123195,1215:391:2,151.5,29,0,0,-0.0529782 -123196,1215:392:1,152,29,0,0,-0.0360669 -123197,1215:392:2,152.5,29,0,0,-0.0381933 -123198,1215:393:1,153,29,0,0,-0.0477579 -123199,1215:393:2,153.5,29,0,0,-0.0566559 -123200,1215:394:1,154,29,0,0,-0.0620705 -123201,1215:394:2,154.5,29,0,0,-0.0657967 -123202,1215:495:1,155,29,0,0,-0.0689418 -123203,1215:495:2,155.5,29,0,0,-0.0713127 -123204,1215:496:1,156,29,0,0,-0.0722302 -123205,1215:496:2,156.5,29,0,0,-0.0697116 -123206,1215:497:1,157,29,0,0,-0.0679884 -123207,1215:497:2,157.5,29,0,0,-0.0700751 -123208,1215:498:1,158,29,0,0,-0.0773246 -123209,1215:498:2,158.5,29,0,0,-0.0929534 -123210,1215:499:1,159,29,0,0,-0.109031 -123211,1215:499:2,159.5,29,0,0,-0.112511 -123212,1216:390:1,160,29,0,0,-0.102547 -123213,1216:390:2,160.5,29,0,0,-0.0891135 -123214,1216:391:1,161,29,0,0,-0.0937199 -123215,1216:391:2,161.5,29,0,0,-0.119487 -123216,1216:392:1,162,29,0,0,-0.117351 -123217,1216:392:2,162.5,29,0,0,-0.100106 -123218,1216:393:1,163,29,0,0,-0.0836822 -123219,1216:393:2,163.5,29,0,0,-0.084346 -123220,1216:394:1,164,29,0,0,-0.090454 -123221,1216:394:2,164.5,29,0,0,-0.0962009 -123222,1216:495:1,165,29,0,0,-0.0963404 -123223,1216:495:2,165.5,29,0,0,-0.0845689 -123224,1216:496:1,166,29,0,0,-0.0713972 -123225,1216:496:2,166.5,29,0,0,-0.0686493 -123226,1216:497:1,167,29,0,0,-0.0664823 -123227,1216:497:2,167.5,29,0,0,-0.0640703 -123228,1216:498:1,168,29,0,0,-0.0645545 -123229,1216:498:2,168.5,29,0,0,-0.06958 -123230,1216:499:1,169,29,0,0,-0.0737355 -123231,1216:499:2,169.5,29,0,0,-0.0703741 -123232,1217:390:1,170,29,0,0,-0.0698434 -123233,1217:390:2,170.5,29,0,0,-0.0799861 -123234,1217:391:1,171,29,0,0,-0.091352 -123235,1217:391:2,171.5,29,0,0,-0.0894571 -123236,1217:392:1,172,29,0,0,-0.0797192 -123237,1217:392:2,172.5,29,0,0,-0.0744033 -123238,1217:393:1,173,29,0,0,-0.0691867 -123239,1217:393:2,173.5,29,0,0,-0.0635007 -123240,1217:394:1,174,29,0,0,-0.0601513 -123241,1217:394:2,174.5,29,0,0,-0.0619688 -123242,1217:495:1,175,29,0,0,-0.0697941 -123243,1217:495:2,175.5,29,0,0,-0.0785121 -123244,1217:496:1,176,29,0,0,-0.0810041 -123245,1217:496:2,176.5,29,0,0,-0.0779898 -123246,1217:497:1,177,29,0,0,-0.0721107 -123247,1217:497:2,177.5,29,0,0,-0.0676524 -123248,1217:498:1,178,29,0,0,-0.0673023 -123249,1217:498:2,178.5,29,0,0,-0.0690398 -123250,1217:499:1,179,29,0,0,-0.0709254 -123251,1217:499:2,179.5,29,0,0,-0.072625 -123252,1218:390:1,180,29,0,0,-0.0742273 -123253,7218:390:3,-180,29.5,0,0,-0.0629067 -123254,7217:499:4,-179.5,29.5,0,0,-0.0643874 -123255,7217:499:3,-179,29.5,0,0,-0.0652413 -123256,7217:498:4,-178.5,29.5,0,0,-0.0648434 -123257,7217:498:3,-178,29.5,0,0,-0.0637398 -123258,7217:497:4,-177.5,29.5,0,0,-0.0628184 -123259,7217:497:3,-177,29.5,0,0,-0.0628774 -123260,7217:496:4,-176.5,29.5,0,0,-0.0635303 -123261,7217:496:3,-176,29.5,0,0,-0.0639197 -123262,7217:495:4,-175.5,29.5,0,0,-0.0636649 -123263,7217:495:3,-175,29.5,0,0,-0.0630105 -123264,7217:394:4,-174.5,29.5,0,0,-0.0621875 -123265,7217:394:3,-174,29.5,0,0,-0.0614475 -123266,7217:393:4,-173.5,29.5,0,0,-0.0610029 -123267,7217:393:3,-173,29.5,0,0,-0.0603913 -123268,7217:392:4,-172.5,29.5,0,0,-0.0595903 -123269,7217:392:3,-172,29.5,0,0,-0.0591041 -123270,7217:391:4,-171.5,29.5,0,0,-0.0592563 -123271,7217:391:3,-171,29.5,0,0,-0.0602778 -123272,7217:390:4,-170.5,29.5,0,0,-0.0615342 -123273,7217:390:3,-170,29.5,0,0,-0.0622312 -123274,7216:499:4,-169.5,29.5,0,0,-0.0617801 -123275,7216:499:3,-169,29.5,0,0,-0.0610457 -123276,7216:498:4,-168.5,29.5,0,0,-0.0608882 -123277,7216:498:3,-168,29.5,0,0,-0.0611891 -123278,7216:497:4,-167.5,29.5,0,0,-0.061232 -123279,7216:497:3,-167,29.5,0,0,-0.0609885 -123280,7216:496:4,-166.5,29.5,0,0,-0.0623333 -123281,7216:496:3,-166,29.5,0,0,-0.0653952 -123282,7216:495:4,-165.5,29.5,0,0,-0.0696789 -123283,7216:495:3,-165,29.5,0,0,-0.0718547 -123284,7216:394:4,-164.5,29.5,0,0,-0.0704071 -123285,7216:394:3,-164,29.5,0,0,-0.0675566 -123286,7216:393:4,-163.5,29.5,0,0,-0.0656112 -123287,7216:393:3,-163,29.5,0,0,-0.0655956 -123288,7216:392:4,-162.5,29.5,0,0,-0.0666235 -123289,7216:392:3,-162,29.5,0,0,-0.0675566 -123290,7216:391:4,-161.5,29.5,0,0,-0.0677319 -123291,7216:391:3,-161,29.5,0,0,-0.0685361 -123292,7216:390:4,-160.5,29.5,0,0,-0.0711439 -123293,7216:390:3,-160,29.5,0,0,-0.0752383 -123294,7215:499:4,-159.5,29.5,0,0,-0.0798522 -123295,7215:499:3,-159,29.5,0,0,-0.0808307 -123296,7215:498:4,-158.5,29.5,0,0,-0.0783063 -123297,7215:498:3,-158,29.5,0,0,-0.0780273 -123298,7215:497:4,-157.5,29.5,0,0,-0.0809268 -123299,7215:497:3,-157,29.5,0,0,-0.0838425 -123300,7215:496:4,-156.5,29.5,0,0,-0.085077 -123301,7215:496:3,-156,29.5,0,0,-0.0855478 -123302,7215:495:4,-155.5,29.5,0,0,-0.0863723 -123303,7215:495:3,-155,29.5,0,0,-0.0876258 -123304,7215:394:4,-154.5,29.5,0,0,-0.0913963 -123305,7215:394:3,-154,29.5,0,0,-0.0965272 -123306,7215:393:4,-153.5,29.5,0,0,-0.0969026 -123307,7215:393:3,-153,29.5,0,0,-0.092796 -123308,7215:392:4,-152.5,29.5,0,0,-0.0906717 -123309,7215:392:3,-152,29.5,0,0,-0.093992 -123310,7215:391:4,-151.5,29.5,0,0,-0.0977755 -123311,7215:391:3,-151,29.5,0,0,-0.0950663 -123312,7215:390:4,-150.5,29.5,0,0,-0.0908907 -123313,7215:390:3,-150,29.5,0,0,-0.091176 -123314,7214:499:4,-149.5,29.5,0,0,-0.0954814 -123315,7214:499:3,-149,29.5,0,0,-0.101602 -123316,7214:498:4,-148.5,29.5,0,0,-0.107546 -123317,7214:498:3,-148,29.5,0,0,-0.110485 -123318,7214:497:4,-147.5,29.5,0,0,-0.110674 -123319,7214:497:3,-147,29.5,0,0,-0.111411 -123320,7214:496:4,-146.5,29.5,0,0,-0.114606 -123321,7214:496:3,-146,29.5,0,0,-0.119163 -123322,7214:495:4,-145.5,29.5,0,0,-0.121877 -123323,7214:495:3,-145,29.5,0,0,-0.121969 -123324,7214:394:4,-144.5,29.5,0,0,-0.121456 -123325,7214:394:3,-144,29.5,0,0,-0.121245 -123326,7214:393:4,-143.5,29.5,0,0,-0.121426 -123327,7214:393:3,-143,29.5,0,0,-0.121426 -123328,7214:392:4,-142.5,29.5,0,0,-0.120796 -123329,7214:392:3,-142,29.5,0,0,-0.119428 -123330,7214:391:4,-141.5,29.5,0,0,-0.119133 -123331,7214:391:3,-141,29.5,0,0,-0.122423 -123332,7214:390:4,-140.5,29.5,0,0,-0.126819 -123333,7214:390:3,-140,29.5,0,0,-0.129535 -123334,7213:499:4,-139.5,29.5,0,0,-0.130574 -123335,7213:499:3,-139,29.5,0,0,-0.132913 -123336,7213:498:4,-138.5,29.5,0,0,-0.13605 -123337,7213:498:3,-138,29.5,0,0,-0.13605 -123338,7213:497:4,-137.5,29.5,0,0,-0.13605 -123339,7213:497:3,-137,29.5,0,0,-0.13605 -123340,7213:496:4,-136.5,29.5,0,0,-0.13605 -123341,7213:496:3,-136,29.5,0,0,-0.13605 -123342,7213:495:4,-135.5,29.5,0,0,-0.13605 -123343,7213:495:3,-135,29.5,0,0,-0.13605 -123344,7213:394:4,-134.5,29.5,0,0,-0.13605 -123345,7213:394:3,-134,29.5,0,0,-0.13605 -123346,7213:393:4,-133.5,29.5,0,0,-0.13605 -123347,7213:393:3,-133,29.5,0,0,-0.13605 -123348,7213:392:4,-132.5,29.5,0,0,-0.13605 -123349,7213:392:3,-132,29.5,0,0,-0.13605 -123350,7213:391:4,-131.5,29.5,0,0,-0.13605 -123351,7213:391:3,-131,29.5,0,0,-0.13605 -123352,7213:390:4,-130.5,29.5,0,0,-0.13605 -123353,7213:390:3,-130,29.5,0,0,-0.13605 -123354,7212:499:4,-129.5,29.5,0,0,-0.13605 -123355,7212:499:3,-129,29.5,0,0,-0.13605 -123356,7212:498:4,-128.5,29.5,0,0,-0.131229 -123357,7212:498:3,-128,29.5,0,0,-0.133146 -123358,7212:497:4,-127.5,29.5,0,0,-0.13603 -123359,7212:497:3,-127,29.5,0,0,-0.13605 -123360,7212:496:4,-126.5,29.5,0,0,-0.13605 -123361,7212:496:3,-126,29.5,0,0,-0.13605 -123362,7212:495:4,-125.5,29.5,0,0,-0.134285 -123363,7212:495:3,-125,29.5,0,0,-0.12389 -123364,7207:390:3,-70,29.5,0,0,-0.0792074 -123365,7206:499:4,-69.5,29.5,0,0,-0.0749889 -123366,7206:499:3,-69,29.5,0,0,-0.075597 -123367,7206:498:4,-68.5,29.5,0,0,-0.0773611 -123368,7206:498:3,-68,29.5,0,0,-0.0787557 -123369,7206:497:4,-67.5,29.5,0,0,-0.0756327 -123370,7206:497:3,-67,29.5,0,0,-0.0793776 -123371,7206:496:4,-66.5,29.5,0,0,-0.0821745 -123372,7206:496:3,-66,29.5,0,0,-0.0844675 -123373,7206:495:4,-65.5,29.5,0,0,-0.077269 -123374,7206:495:3,-65,29.5,0,0,-0.0803305 -123375,7206:394:4,-64.5,29.5,0,0,-0.0790755 -123376,7206:394:3,-64,29.5,0,0,-0.0767924 -123377,7206:393:4,-63.5,29.5,0,0,-0.0692027 -123378,7206:393:3,-63,29.5,0,0,-0.0711943 -123379,7206:392:4,-62.5,29.5,0,0,-0.0806378 -123380,7206:392:3,-62,29.5,0,0,-0.0761016 -123381,7206:391:4,-61.5,29.5,0,0,-0.0731084 -123382,7206:391:3,-61,29.5,0,0,-0.0689582 -123383,7206:390:4,-60.5,29.5,0,0,-0.0730915 -123384,7206:390:3,-60,29.5,0,0,-0.0662476 -123385,7205:499:4,-59.5,29.5,0,0,-0.0634111 -123386,7205:499:3,-59,29.5,0,0,-0.0610601 -123387,7205:498:4,-58.5,29.5,0,0,-0.0607316 -123388,7205:498:3,-58,29.5,0,0,-0.0698767 -123389,7205:497:4,-57.5,29.5,0,0,-0.0839431 -123390,7205:497:3,-57,29.5,0,0,-0.0945847 -123391,7205:496:4,-56.5,29.5,0,0,-0.118839 -123392,7205:496:3,-56,29.5,0,0,-0.13605 -123393,7205:495:4,-55.5,29.5,0,0,-0.13605 -123394,7205:495:3,-55,29.5,0,0,-0.126567 -123395,7205:394:4,-54.5,29.5,0,0,-0.0667492 -123396,7205:394:3,-54,29.5,0,0,-0.0482808 -123397,7205:393:4,-53.5,29.5,0,0,-0.051246 -123398,7205:393:3,-53,29.5,0,0,-0.0619835 -123399,7205:392:4,-52.5,29.5,0,0,-0.0570009 -123400,7205:392:3,-52,29.5,0,0,-0.0508311 -123401,7205:391:4,-51.5,29.5,0,0,-0.0460016 -123402,7205:391:3,-51,29.5,0,0,-0.0421703 -123403,7205:390:4,-50.5,29.5,0,0,-0.0393862 -123404,7205:390:3,-50,29.5,0,0,-0.0325573 -123405,7204:499:4,-49.5,29.5,0,0,-0.0223937 -123406,7204:499:3,-49,29.5,0,0,-0.0198655 -123407,7204:498:4,-48.5,29.5,0,0,-0.0195855 -123408,7204:498:3,-48,29.5,0,0,-0.13605 -123409,7204:497:4,-47.5,29.5,0,0,-0.13605 -123410,7204:497:3,-47,29.5,0,0,-0.13605 -123411,7204:496:4,-46.5,29.5,0,0,-0.13605 -123412,7204:496:3,-46,29.5,0,0,-0.13605 -123413,7204:495:4,-45.5,29.5,0,0,-0.13605 -123414,7204:495:3,-45,29.5,0,0,-0.13605 -123415,7204:394:4,-44.5,29.5,0,0,-0.13605 -123416,7204:394:3,-44,29.5,0,0,-0.13605 -123417,7204:393:4,-43.5,29.5,0,0,-0.13605 -123418,7204:393:3,-43,29.5,0,0,-0.13605 -123419,7204:392:4,-42.5,29.5,0,0,-0.13605 -123420,7204:392:3,-42,29.5,0,0,-0.13605 -123421,7204:391:4,-41.5,29.5,0,0,-0.13605 -123422,7204:391:3,-41,29.5,0,0,-0.13605 -123423,7204:390:4,-40.5,29.5,0,0,-0.13605 -123424,7204:390:3,-40,29.5,0,0,-0.13605 -123425,7203:499:4,-39.5,29.5,0,0,-0.13605 -123426,7203:499:3,-39,29.5,0,0,-0.13605 -123427,7203:498:4,-38.5,29.5,0,0,-0.13605 -123428,7203:498:3,-38,29.5,0,0,-0.13605 -123429,7203:497:4,-37.5,29.5,0,0,-0.13605 -123430,7203:497:3,-37,29.5,0,0,-0.13605 -123431,7203:496:4,-36.5,29.5,0,0,-0.13605 -123432,7203:496:3,-36,29.5,0,0,-0.13605 -123433,7203:495:4,-35.5,29.5,0,0,-0.13605 -123434,7203:495:3,-35,29.5,0,0,-0.13605 -123435,7203:394:4,-34.5,29.5,0,0,-0.13605 -123436,7203:394:3,-34,29.5,0,0,-0.13605 -123437,7203:393:4,-33.5,29.5,0,0,-0.13605 -123438,7203:393:3,-33,29.5,0,0,-0.13605 -123439,7203:392:4,-32.5,29.5,0,0,-0.13605 -123440,7203:392:3,-32,29.5,0,0,-0.13605 -123441,7203:391:4,-31.5,29.5,0,0,-0.13605 -123442,7203:391:3,-31,29.5,0,0,-0.13605 -123443,7203:390:4,-30.5,29.5,0,0,-0.13605 -123444,7203:390:3,-30,29.5,0,0,-0.13605 -123445,7202:499:4,-29.5,29.5,0,0,-0.13605 -123446,7202:499:3,-29,29.5,0,0,-0.13605 -123447,7202:498:4,-28.5,29.5,0,0,-0.13605 -123448,7202:498:3,-28,29.5,0,0,-0.13605 -123449,7202:497:4,-27.5,29.5,0,0,-0.13605 -123450,7202:497:3,-27,29.5,0,0,-0.13605 -123451,7202:496:4,-26.5,29.5,0,0,-0.13605 -123452,7202:496:3,-26,29.5,0,0,-0.13605 -123453,7202:495:4,-25.5,29.5,0,0,-0.13605 -123454,7202:495:3,-25,29.5,0,0,-0.13605 -123455,7202:394:4,-24.5,29.5,0,0,-0.13605 -123456,7202:394:3,-24,29.5,0,0,-0.13605 -123457,7202:393:4,-23.5,29.5,0,0,-0.13605 -123458,7202:393:3,-23,29.5,0,0,-0.13605 -123459,7202:392:4,-22.5,29.5,0,0,-0.13605 -123460,7202:392:3,-22,29.5,0,0,-0.13605 -123461,7202:391:4,-21.5,29.5,0,0,-0.13605 -123462,7202:391:3,-21,29.5,0,0,-0.13605 -123463,7202:390:4,-20.5,29.5,0,0,-0.13605 -123464,7202:390:3,-20,29.5,0,0,-0.13605 -123465,7201:499:4,-19.5,29.5,0,0,-0.13605 -123466,7201:499:3,-19,29.5,0,0,-0.13605 -123467,7201:498:4,-18.5,29.5,0,0,-0.13605 -123468,7201:498:3,-18,29.5,0,0,-0.13605 -123469,7201:497:4,-17.5,29.5,0,0,-0.13605 -123470,7201:497:3,-17,29.5,0,0,-0.13605 -123471,7201:496:4,-16.5,29.5,0,0,-0.13605 -123472,7201:496:3,-16,29.5,0,0,-0.13605 -123473,7201:495:4,-15.5,29.5,0,0,-0.13605 -123474,7201:495:3,-15,29.5,0,0,-0.13605 -123475,7201:394:4,-14.5,29.5,0,0,-0.13605 -123476,7201:394:3,-14,29.5,0,0,-0.13605 -123477,7201:393:4,-13.5,29.5,0,0,-0.13605 -123478,7201:393:3,-13,29.5,0,0,-0.13605 -123479,7201:392:4,-12.5,29.5,0,0,-0.13605 -123480,7201:392:3,-12,29.5,0,0,-0.13605 -123481,7201:391:4,-11.5,29.5,0,0,-0.13605 -123482,7201:391:3,-11,29.5,0,0,-0.13605 -123483,7201:390:4,-10.5,29.5,0,0,-0.13605 -123484,7201:390:3,-10,29.5,0,0,-0.13605 -123485,7200:499:4,-9.5,29.5,0,0,-0.13605 -123486,7200:499:3,-9,29.5,0,0,-0.13605 -123487,7200:497:4,-7.5,29.5,0,0,-0.13605 -123488,7200:497:3,-7,29.5,0,0,-0.13605 -123489,7200:496:4,-6.5,29.5,0,0,-0.13605 -123490,7200:496:3,-6,29.5,0,0,-0.13605 -123491,7200:495:4,-5.5,29.5,0,0,-0.13605 -123492,7200:495:3,-5,29.5,0,0,-0.13605 -123493,7200:394:4,-4.5,29.5,0,0,-0.13605 -123494,7200:394:3,-4,29.5,0,0,-0.13605 -123495,7200:393:4,-3.5,29.5,0,0,-0.13605 -123496,7200:393:3,-3,29.5,0,0,-0.13605 -123497,7200:392:4,-2.5,29.5,0,0,-0.13605 -123498,1200:393:3,3,29.5,0,0,-0.13605 -123499,1200:393:4,3.5,29.5,0,0,-0.13605 -123500,1200:394:3,4,29.5,0,0,-0.13605 -123501,1200:394:4,4.5,29.5,0,0,-0.13605 -123502,1200:496:3,6,29.5,0,0,-0.13605 -123503,1200:496:4,6.5,29.5,0,0,-0.13605 -123504,1200:497:3,7,29.5,0,0,-0.13605 -123505,1200:497:4,7.5,29.5,0,0,-0.13605 -123506,1200:498:3,8,29.5,0,0,-0.13605 -123507,1200:498:4,8.5,29.5,0,0,-0.13605 -123508,1200:499:3,9,29.5,0,0,-0.13605 -123509,1200:499:4,9.5,29.5,0,0,-0.13605 -123510,1201:393:4,13.5,29.5,0,0,-0.13605 -123511,1201:394:3,14,29.5,0,0,-0.13605 -123512,1201:394:4,14.5,29.5,0,0,-0.13605 -123513,1201:495:3,15,29.5,0,0,-0.13605 -123514,1201:495:4,15.5,29.5,0,0,-0.13605 -123515,1201:496:3,16,29.5,0,0,-0.13605 -123516,1201:496:4,16.5,29.5,0,0,-0.13605 -123517,1201:497:3,17,29.5,0,0,-0.13605 -123518,1201:497:4,17.5,29.5,0,0,-0.13605 -123519,1202:497:4,27.5,29.5,0,0,-0.13605 -123520,1202:498:3,28,29.5,0,0,-0.13605 -123521,1202:498:4,28.5,29.5,0,0,-0.13605 -123522,1202:499:3,29,29.5,0,0,-0.13605 -123523,1202:499:4,29.5,29.5,0,0,-0.13605 -123524,1203:390:3,30,29.5,0,0,-0.13605 -123525,1203:390:4,30.5,29.5,0,0,-0.13605 -123526,1203:391:3,31,29.5,0,0,-0.13605 -123527,1203:391:4,31.5,29.5,0,0,-0.13605 -123528,1203:495:4,35.5,29.5,0,0,-0.13605 -123529,1203:496:3,36,29.5,0,0,-0.13605 -123530,1203:496:4,36.5,29.5,0,0,-0.13605 -123531,1203:497:3,37,29.5,0,0,-0.13605 -123532,1203:497:4,37.5,29.5,0,0,-0.13605 -123533,1203:498:3,38,29.5,0,0,-0.13605 -123534,1203:498:4,38.5,29.5,0,0,-0.13605 -123535,1203:499:3,39,29.5,0,0,-0.13605 -123536,1203:499:4,39.5,29.5,0,0,-0.13605 -123537,1204:390:3,40,29.5,0,0,-0.13605 -123538,1213:392:4,132.5,29.5,0,0,-0.0397317 -123539,1213:393:3,133,29.5,0,0,-0.0402369 -123540,1213:393:4,133.5,29.5,0,0,-0.0401631 -123541,1213:495:3,135,29.5,0,0,-0.0425018 -123542,1213:495:4,135.5,29.5,0,0,-0.0426388 -123543,1213:496:3,136,29.5,0,0,-0.0435627 -123544,1213:496:4,136.5,29.5,0,0,-0.0435928 -123545,1213:497:3,137,29.5,0,0,-0.0503381 -123546,1213:497:4,137.5,29.5,0,0,-0.0789812 -123547,1213:498:3,138,29.5,0,0,-0.0887283 -123548,1213:498:4,138.5,29.5,0,0,-0.0921265 -123549,1213:499:3,139,29.5,0,0,-0.108154 -123550,1213:499:4,139.5,29.5,0,0,-0.0878794 -123551,1214:390:3,140,29.5,0,0,-0.08188 -123552,1214:390:4,140.5,29.5,0,0,-0.0812951 -123553,1214:391:3,141,29.5,0,0,-0.0744211 -123554,1214:391:4,141.5,29.5,0,0,-0.0640703 -123555,1214:392:3,142,29.5,0,0,-0.050373 -123556,1214:496:3,146,29.5,0,0,-0.0228692 -123557,1214:496:4,146.5,29.5,0,0,-0.0253319 -123558,1214:497:3,147,29.5,0,0,-0.0241011 -123559,1214:497:4,147.5,29.5,0,0,-0.0232708 -123560,1214:498:3,148,29.5,0,0,-0.0368856 -123561,1214:498:4,148.5,29.5,0,0,-0.127484 -123562,1214:499:3,149,29.5,0,0,-0.13605 -123563,1214:499:4,149.5,29.5,0,0,-0.13605 -123564,1215:390:3,150,29.5,0,0,-0.13605 -123565,1215:390:4,150.5,29.5,0,0,-0.120288 -123566,1215:391:3,151,29.5,0,0,-0.0556728 -123567,1215:391:4,151.5,29.5,0,0,-0.027356 -123568,1215:392:3,152,29.5,0,0,-0.0303091 -123569,1215:392:4,152.5,29.5,0,0,-0.0349621 -123570,1215:393:3,153,29.5,0,0,-0.0381759 -123571,1215:393:4,153.5,29.5,0,0,-0.0403667 -123572,1215:394:3,154,29.5,0,0,-0.0427965 -123573,1215:394:4,154.5,29.5,0,0,-0.0496191 -123574,1215:495:3,155,29.5,0,0,-0.0640855 -123575,1215:495:4,155.5,29.5,0,0,-0.0638299 -123576,1215:496:3,156,29.5,0,0,-0.0609314 -123577,1215:496:4,156.5,29.5,0,0,-0.0642213 -123578,1215:497:3,157,29.5,0,0,-0.0657811 -123579,1215:497:4,157.5,29.5,0,0,-0.068682 -123580,1215:498:3,158,29.5,0,0,-0.0732646 -123581,1215:498:4,158.5,29.5,0,0,-0.0758128 -123582,1215:499:3,159,29.5,0,0,-0.0723331 -123583,1215:499:4,159.5,29.5,0,0,-0.0656574 -123584,1216:390:3,160,29.5,0,0,-0.0673338 -123585,1216:390:4,160.5,29.5,0,0,-0.0781948 -123586,1216:391:3,161,29.5,0,0,-0.101306 -123587,1216:391:4,161.5,29.5,0,0,-0.108978 -123588,1216:392:3,162,29.5,0,0,-0.0887498 -123589,1216:392:4,162.5,29.5,0,0,-0.0794533 -123590,1216:393:3,163,29.5,0,0,-0.0759571 -123591,1216:393:4,163.5,29.5,0,0,-0.0747578 -123592,1216:394:3,164,29.5,0,0,-0.0740334 -123593,1216:394:4,164.5,29.5,0,0,-0.07428 -123594,1216:495:3,165,29.5,0,0,-0.074971 -123595,1216:495:4,165.5,29.5,0,0,-0.0733516 -123596,1216:496:3,166,29.5,0,0,-0.0703406 -123597,1216:496:4,166.5,29.5,0,0,-0.0640703 -123598,1216:497:3,167,29.5,0,0,-0.055894 -123599,1216:497:4,167.5,29.5,0,0,-0.0551562 -123600,1216:498:3,168,29.5,0,0,-0.0584033 -123601,1216:498:4,168.5,29.5,0,0,-0.0634411 -123602,1216:499:3,169,29.5,0,0,-0.0651187 -123603,1216:499:4,169.5,29.5,0,0,-0.0581442 -123604,1217:390:3,170,29.5,0,0,-0.0547334 -123605,1217:390:4,170.5,29.5,0,0,-0.0598139 -123606,1217:391:3,171,29.5,0,0,-0.0738578 -123607,1217:391:4,171.5,29.5,0,0,-0.0849141 -123608,1217:392:3,172,29.5,0,0,-0.0845077 -123609,1217:392:4,172.5,29.5,0,0,-0.0799284 -123610,1217:393:3,173,29.5,0,0,-0.0719914 -123611,1217:393:4,173.5,29.5,0,0,-0.0604336 -123612,1217:394:3,174,29.5,0,0,-0.052671 -123613,1217:394:4,174.5,29.5,0,0,-0.0524875 -123614,1217:495:3,175,29.5,0,0,-0.0569875 -123615,1217:495:4,175.5,29.5,0,0,-0.0635905 -123616,1217:496:3,176,29.5,0,0,-0.0677163 -123617,1217:496:4,176.5,29.5,0,0,-0.0678603 -123618,1217:497:3,177,29.5,0,0,-0.0657504 -123619,1217:497:4,177.5,29.5,0,0,-0.0624504 -123620,1217:498:3,178,29.5,0,0,-0.060618 -123621,1217:498:4,178.5,29.5,0,0,-0.0608599 -123622,1217:499:3,179,29.5,0,0,-0.061419 -123623,1217:499:4,179.5,29.5,0,0,-0.0619107 -123624,1218:390:3,180,29.5,0,0,-0.0629067 -123625,7318:100:1,-180,30,0,0,-0.0518568 -123626,7317:209:2,-179.5,30,0,0,-0.0515086 -123627,7317:209:1,-179,30,0,0,-0.0530026 -123628,7317:208:2,-178.5,30,0,0,-0.0555173 -123629,7317:208:1,-178,30,0,0,-0.0573882 -123630,7317:207:2,-177.5,30,0,0,-0.0576705 -123631,7317:207:1,-177,30,0,0,-0.0572142 -123632,7317:206:2,-176.5,30,0,0,-0.0573882 -123633,7317:206:1,-176,30,0,0,-0.0581986 -123634,7317:205:2,-175.5,30,0,0,-0.0588145 -123635,7317:205:1,-175,30,0,0,-0.0587595 -123636,7317:104:2,-174.5,30,0,0,-0.058063 -123637,7317:104:1,-174,30,0,0,-0.0571608 -123638,7317:103:2,-173.5,30,0,0,-0.0564709 -123639,7317:103:1,-173,30,0,0,-0.0559725 -123640,7317:102:2,-172.5,30,0,0,-0.0554009 -123641,7317:102:1,-172,30,0,0,-0.0547334 -123642,7317:101:2,-171.5,30,0,0,-0.053999 -123643,7317:101:1,-171,30,0,0,-0.0540743 -123644,7317:100:2,-170.5,30,0,0,-0.0546443 -123645,7317:100:1,-170,30,0,0,-0.0552462 -123646,7316:209:2,-169.5,30,0,0,-0.0554269 -123647,7316:209:1,-169,30,0,0,-0.0554009 -123648,7316:208:2,-168.5,30,0,0,-0.0555952 -123649,7316:208:1,-168,30,0,0,-0.0560379 -123650,7316:207:2,-167.5,30,0,0,-0.056077 -123651,7316:207:1,-167,30,0,0,-0.0555952 -123652,7316:206:2,-166.5,30,0,0,-0.0559988 -123653,7316:206:1,-166,30,0,0,-0.058417 -123654,7316:205:2,-165.5,30,0,0,-0.0626122 -123655,7316:205:1,-165,30,0,0,-0.0655339 -123656,7316:104:2,-164.5,30,0,0,-0.0651187 -123657,7316:104:1,-164,30,0,0,-0.0630842 -123658,7316:103:2,-163.5,30,0,0,-0.0614766 -123659,7316:103:1,-163,30,0,0,-0.0610457 -123660,7316:102:2,-162.5,30,0,0,-0.0615488 -123661,7316:102:1,-162,30,0,0,-0.0621292 -123662,7316:101:2,-161.5,30,0,0,-0.0621145 -123663,7316:101:1,-161,30,0,0,-0.0635755 -123664,7316:100:2,-160.5,30,0,0,-0.0674133 -123665,7316:100:1,-160,30,0,0,-0.0723331 -123666,7315:209:2,-159.5,30,0,0,-0.0760834 -123667,7315:209:1,-159,30,0,0,-0.0740334 -123668,7315:208:2,-158.5,30,0,0,-0.0696457 -123669,7315:208:1,-158,30,0,0,-0.0692521 -123670,7315:207:2,-157.5,30,0,0,-0.0737178 -123671,7315:207:1,-157,30,0,0,-0.0781948 -123672,7315:206:2,-156.5,30,0,0,-0.0789249 -123673,7315:206:1,-156,30,0,0,-0.077953 -123674,7315:205:2,-155.5,30,0,0,-0.0784373 -123675,7315:205:1,-155,30,0,0,-0.0801003 -123676,7315:104:2,-154.5,30,0,0,-0.0822723 -123677,7315:104:1,-154,30,0,0,-0.084104 -123678,7315:103:2,-153.5,30,0,0,-0.0832426 -123679,7315:103:1,-153,30,0,0,-0.0807724 -123680,7315:102:2,-152.5,30,0,0,-0.0809852 -123681,7315:102:1,-152,30,0,0,-0.085036 -123682,7315:101:2,-151.5,30,0,0,-0.0874365 -123683,7315:101:1,-151,30,0,0,-0.084407 -123684,7315:100:2,-150.5,30,0,0,-0.0835819 -123685,7315:100:1,-150,30,0,0,-0.087416 -123686,7314:209:2,-149.5,30,0,0,-0.0940829 -123687,7314:209:1,-149,30,0,0,-0.099717 -123688,7314:208:2,-148.5,30,0,0,-0.101874 -123689,7314:208:1,-148,30,0,0,-0.101676 -123690,7314:207:2,-147.5,30,0,0,-0.102297 -123691,7314:207:1,-147,30,0,0,-0.104082 -123692,7314:206:2,-146.5,30,0,0,-0.106551 -123693,7314:206:1,-146,30,0,0,-0.109406 -123694,7314:205:2,-145.5,30,0,0,-0.111685 -123695,7314:205:1,-145,30,0,0,-0.112982 -123696,7314:104:2,-144.5,30,0,0,-0.113371 -123697,7314:104:1,-144,30,0,0,-0.111821 -123698,7314:103:2,-143.5,30,0,0,-0.109917 -123699,7314:103:1,-143,30,0,0,-0.109944 -123700,7314:102:2,-142.5,30,0,0,-0.111028 -123701,7314:102:1,-142,30,0,0,-0.110593 -123702,7314:101:2,-141.5,30,0,0,-0.109755 -123703,7314:101:1,-141,30,0,0,-0.112649 -123704,7314:100:2,-140.5,30,0,0,-0.117758 -123705,7314:100:1,-140,30,0,0,-0.121576 -123706,7313:209:2,-139.5,30,0,0,-0.122696 -123707,7313:209:1,-139,30,0,0,-0.124661 -123708,7313:208:2,-138.5,30,0,0,-0.135877 -123709,7313:208:1,-138,30,0,0,-0.13605 -123710,7313:207:2,-137.5,30,0,0,-0.13605 -123711,7313:207:1,-137,30,0,0,-0.13605 -123712,7313:206:2,-136.5,30,0,0,-0.13605 -123713,7313:206:1,-136,30,0,0,-0.13605 -123714,7313:205:2,-135.5,30,0,0,-0.13605 -123715,7313:205:1,-135,30,0,0,-0.13605 -123716,7313:104:2,-134.5,30,0,0,-0.13605 -123717,7313:104:1,-134,30,0,0,-0.13605 -123718,7313:103:2,-133.5,30,0,0,-0.13605 -123719,7313:103:1,-133,30,0,0,-0.13605 -123720,7313:102:2,-132.5,30,0,0,-0.13605 -123721,7313:102:1,-132,30,0,0,-0.13605 -123722,7313:101:2,-131.5,30,0,0,-0.13605 -123723,7313:101:1,-131,30,0,0,-0.13605 -123724,7313:100:2,-130.5,30,0,0,-0.13605 -123725,7313:100:1,-130,30,0,0,-0.13605 -123726,7312:209:2,-129.5,30,0,0,-0.13605 -123727,7312:209:1,-129,30,0,0,-0.131952 -123728,7312:208:2,-128.5,30,0,0,-0.127294 -123729,7312:208:1,-128,30,0,0,-0.135932 -123730,7312:207:2,-127.5,30,0,0,-0.13605 -123731,7312:207:1,-127,30,0,0,-0.13605 -123732,7312:206:2,-126.5,30,0,0,-0.135537 -123733,7312:206:1,-126,30,0,0,-0.12389 -123734,7312:205:2,-125.5,30,0,0,-0.117729 -123735,7312:205:1,-125,30,0,0,-0.118195 -123736,7306:209:2,-69.5,30,0,0,-0.0717188 -123737,7306:209:1,-69,30,0,0,-0.0692846 -123738,7306:208:2,-68.5,30,0,0,-0.0664666 -123739,7306:208:1,-68,30,0,0,-0.0676043 -123740,7306:207:2,-67.5,30,0,0,-0.0678759 -123741,7306:207:1,-67,30,0,0,-0.0685035 -123742,7306:206:2,-66.5,30,0,0,-0.0742977 -123743,7306:206:1,-66,30,0,0,-0.0766832 -123744,7306:205:2,-65.5,30,0,0,-0.0564183 -123745,7306:104:2,-64.5,30,0,0,-0.0707076 -123746,7306:104:1,-64,30,0,0,-0.0697775 -123747,7306:103:2,-63.5,30,0,0,-0.0672543 -123748,7306:103:1,-63,30,0,0,-0.0618381 -123749,7306:102:2,-62.5,30,0,0,-0.0607316 -123750,7306:102:1,-62,30,0,0,-0.0570542 -123751,7306:101:2,-61.5,30,0,0,-0.0587457 -123752,7306:101:1,-61,30,0,0,-0.0617076 -123753,7306:100:2,-60.5,30,0,0,-0.0577919 -123754,7306:100:1,-60,30,0,0,-0.0577651 -123755,7305:209:2,-59.5,30,0,0,-0.052451 -123756,7305:209:1,-59,30,0,0,-0.0498501 -123757,7305:208:2,-58.5,30,0,0,-0.0419764 -123758,7305:208:1,-58,30,0,0,-0.0369194 -123759,7305:207:2,-57.5,30,0,0,-0.0349621 -123760,7305:207:1,-57,30,0,0,-0.0361249 -123761,7305:206:2,-56.5,30,0,0,-0.0432324 -123762,7305:206:1,-56,30,0,0,-0.0666547 -123763,7305:205:2,-55.5,30,0,0,-0.0719399 -123764,7305:205:1,-55,30,0,0,-0.0560638 -123765,7305:104:2,-54.5,30,0,0,-0.0407394 -123766,7305:104:1,-54,30,0,0,-0.038334 -123767,7305:103:2,-53.5,30,0,0,-0.0444662 -123768,7305:103:1,-53,30,0,0,-0.0474713 -123769,7305:102:2,-52.5,30,0,0,-0.0438448 -123770,7305:102:1,-52,30,0,0,-0.0415058 -123771,7305:101:2,-51.5,30,0,0,-0.0392509 -123772,7305:101:1,-51,30,0,0,-0.0348583 -123773,7305:100:2,-50.5,30,0,0,-0.0324387 -123774,7305:100:1,-50,30,0,0,-0.0300892 -123775,7304:209:2,-49.5,30,0,0,-0.0265006 -123776,7304:209:1,-49,30,0,0,-0.0196296 -123777,7304:208:2,-48.5,30,0,0,-0.0209369 -123778,7304:208:1,-48,30,0,0,-0.0304613 -123779,7304:207:2,-47.5,30,0,0,-0.0776195 -123780,7304:207:1,-47,30,0,0,-0.13605 -123781,7304:206:2,-46.5,30,0,0,-0.13605 -123782,7304:206:1,-46,30,0,0,-0.13605 -123783,7304:205:2,-45.5,30,0,0,-0.13605 -123784,7304:205:1,-45,30,0,0,-0.0774167 -123785,7304:104:2,-44.5,30,0,0,-0.114325 -123786,7304:104:1,-44,30,0,0,-0.13605 -123787,7304:103:2,-43.5,30,0,0,-0.13605 -123788,7304:103:1,-43,30,0,0,-0.13605 -123789,7304:102:2,-42.5,30,0,0,-0.13605 -123790,7304:102:1,-42,30,0,0,-0.13605 -123791,7304:101:2,-41.5,30,0,0,-0.13605 -123792,7304:101:1,-41,30,0,0,-0.13605 -123793,7304:100:2,-40.5,30,0,0,-0.13605 -123794,7304:100:1,-40,30,0,0,-0.134723 -123795,7303:209:2,-39.5,30,0,0,-0.13605 -123796,7303:209:1,-39,30,0,0,-0.13605 -123797,7303:208:2,-38.5,30,0,0,-0.13605 -123798,7303:208:1,-38,30,0,0,-0.13605 -123799,7303:207:2,-37.5,30,0,0,-0.13605 -123800,7303:207:1,-37,30,0,0,-0.13605 -123801,7303:206:2,-36.5,30,0,0,-0.13605 -123802,7303:206:1,-36,30,0,0,-0.13605 -123803,7303:205:2,-35.5,30,0,0,-0.13605 -123804,7303:205:1,-35,30,0,0,-0.13605 -123805,7303:104:2,-34.5,30,0,0,-0.13605 -123806,7303:104:1,-34,30,0,0,-0.13605 -123807,7303:103:2,-33.5,30,0,0,-0.13605 -123808,7303:103:1,-33,30,0,0,-0.13605 -123809,7303:102:2,-32.5,30,0,0,-0.13605 -123810,7303:102:1,-32,30,0,0,-0.13605 -123811,7303:101:2,-31.5,30,0,0,-0.13605 -123812,7303:101:1,-31,30,0,0,-0.13605 -123813,7303:100:2,-30.5,30,0,0,-0.13605 -123814,7303:100:1,-30,30,0,0,-0.13605 -123815,7302:209:2,-29.5,30,0,0,-0.13605 -123816,7302:209:1,-29,30,0,0,-0.13605 -123817,7302:208:2,-28.5,30,0,0,-0.13605 -123818,7302:208:1,-28,30,0,0,-0.13605 -123819,7302:207:2,-27.5,30,0,0,-0.13605 -123820,7302:207:1,-27,30,0,0,-0.13605 -123821,7302:206:2,-26.5,30,0,0,-0.13605 -123822,7302:206:1,-26,30,0,0,-0.13605 -123823,7302:205:2,-25.5,30,0,0,-0.13605 -123824,7302:205:1,-25,30,0,0,-0.13605 -123825,7302:104:2,-24.5,30,0,0,-0.13605 -123826,7302:104:1,-24,30,0,0,-0.13605 -123827,7302:103:2,-23.5,30,0,0,-0.13605 -123828,7302:103:1,-23,30,0,0,-0.13605 -123829,7302:102:2,-22.5,30,0,0,-0.13605 -123830,7302:102:1,-22,30,0,0,-0.13605 -123831,7302:101:2,-21.5,30,0,0,-0.13605 -123832,7302:101:1,-21,30,0,0,-0.13605 -123833,7302:100:2,-20.5,30,0,0,-0.13605 -123834,7302:100:1,-20,30,0,0,-0.13605 -123835,7301:209:2,-19.5,30,0,0,-0.13605 -123836,7301:209:1,-19,30,0,0,-0.13605 -123837,7301:208:2,-18.5,30,0,0,-0.13605 -123838,7301:208:1,-18,30,0,0,-0.13605 -123839,7301:207:2,-17.5,30,0,0,-0.13605 -123840,7301:207:1,-17,30,0,0,-0.13605 -123841,7301:206:2,-16.5,30,0,0,-0.13605 -123842,7301:206:1,-16,30,0,0,-0.13605 -123843,7301:205:2,-15.5,30,0,0,-0.13605 -123844,7301:205:1,-15,30,0,0,-0.13605 -123845,7301:104:2,-14.5,30,0,0,-0.13605 -123846,7301:104:1,-14,30,0,0,-0.13605 -123847,7301:103:2,-13.5,30,0,0,-0.13605 -123848,7301:103:1,-13,30,0,0,-0.13605 -123849,7301:102:2,-12.5,30,0,0,-0.13605 -123850,7301:102:1,-12,30,0,0,-0.13605 -123851,7301:101:2,-11.5,30,0,0,-0.13605 -123852,7301:101:1,-11,30,0,0,-0.13605 -123853,7301:100:2,-10.5,30,0,0,-0.13605 -123854,7301:100:1,-10,30,0,0,-0.13605 -123855,7300:209:2,-9.5,30,0,0,-0.13605 -123856,7300:209:1,-9,30,0,0,-0.13605 -123857,7300:208:2,-8.5,30,0,0,-0.13605 -123858,7300:208:1,-8,30,0,0,-0.13605 -123859,7300:207:2,-7.5,30,0,0,-0.13605 -123860,7300:207:1,-7,30,0,0,-0.13605 -123861,7300:206:2,-6.5,30,0,0,-0.13605 -123862,7300:206:1,-6,30,0,0,-0.13605 -123863,7300:205:2,-5.5,30,0,0,-0.13605 -123864,7300:205:1,-5,30,0,0,-0.13605 -123865,7300:104:2,-4.5,30,0,0,-0.13605 -123866,7300:104:1,-4,30,0,0,-0.13605 -123867,7300:103:2,-3.5,30,0,0,-0.13605 -123868,7300:103:1,-3,30,0,0,-0.13605 -123869,7300:102:2,-2.5,30,0,0,-0.13605 -123870,1300:206:2,6.5,30,0,0,-0.13605 -123871,1300:207:1,7,30,0,0,-0.13605 -123872,1300:207:2,7.5,30,0,0,-0.13605 -123873,1300:208:1,8,30,0,0,-0.13605 -123874,1300:208:2,8.5,30,0,0,-0.13605 -123875,1300:209:1,9,30,0,0,-0.13605 -123876,1300:209:2,9.5,30,0,0,-0.13605 -123877,1301:103:1,13,30,0,0,-0.13605 -123878,1301:103:2,13.5,30,0,0,-0.13605 -123879,1301:104:1,14,30,0,0,-0.13605 -123880,1301:104:2,14.5,30,0,0,-0.13605 -123881,1301:205:1,15,30,0,0,-0.13605 -123882,1301:205:2,15.5,30,0,0,-0.13605 -123883,1301:206:1,16,30,0,0,-0.13605 -123884,1301:206:2,16.5,30,0,0,-0.13605 -123885,1302:207:1,27,30,0,0,-0.13605 -123886,1302:207:2,27.5,30,0,0,-0.13605 -123887,1302:208:1,28,30,0,0,-0.13605 -123888,1302:208:2,28.5,30,0,0,-0.13605 -123889,1302:209:1,29,30,0,0,-0.13605 -123890,1302:209:2,29.5,30,0,0,-0.13605 -123891,1303:100:1,30,30,0,0,-0.13605 -123892,1303:100:2,30.5,30,0,0,-0.13605 -123893,1303:101:1,31,30,0,0,-0.13605 -123894,1303:101:2,31.5,30,0,0,-0.13605 -123895,1303:102:1,32,30,0,0,-0.13605 -123896,1303:102:2,32.5,30,0,0,-0.13605 -123897,1303:103:1,33,30,0,0,-0.13605 -123898,1303:103:2,33.5,30,0,0,-0.13605 -123899,1303:104:1,34,30,0,0,-0.13605 -123900,1303:104:2,34.5,30,0,0,-0.13605 -123901,1303:205:1,35,30,0,0,-0.13605 -123902,1303:205:2,35.5,30,0,0,-0.13605 -123903,1303:206:1,36,30,0,0,-0.13605 -123904,1303:206:2,36.5,30,0,0,-0.13605 -123905,1303:207:1,37,30,0,0,-0.13605 -123906,1303:207:2,37.5,30,0,0,-0.13605 -123907,1303:208:1,38,30,0,0,-0.13605 -123908,1303:208:2,38.5,30,0,0,-0.13605 -123909,1303:209:1,39,30,0,0,-0.13605 -123910,1303:209:2,39.5,30,0,0,-0.13605 -123911,1304:100:1,40,30,0,0,-0.13605 -123912,1304:100:2,40.5,30,0,0,-0.13605 -123913,1313:102:2,132.5,30,0,0,-0.0196209 -123914,1313:206:1,136,30,0,0,-0.0402 -123915,1313:206:2,136.5,30,0,0,-0.0415823 -123916,1313:207:1,137,30,0,0,-0.0493666 -123917,1313:207:2,137.5,30,0,0,-0.0763189 -123918,1313:208:1,138,30,0,0,-0.0856091 -123919,1313:208:2,138.5,30,0,0,-0.0935163 -123920,1313:209:1,139,30,0,0,-0.103374 -123921,1313:209:2,139.5,30,0,0,-0.06935 -123922,1314:100:1,140,30,0,0,-0.0682617 -123923,1314:100:2,140.5,30,0,0,-0.071753 -123924,1314:101:1,141,30,0,0,-0.0662166 -123925,1314:101:2,141.5,30,0,0,-0.0662476 -123926,1314:102:1,142,30,0,0,-0.0649505 -123927,1314:206:1,146,30,0,0,-0.0331722 -123928,1314:207:1,147,30,0,0,-0.0282846 -123929,1314:207:2,147.5,30,0,0,-0.0251717 -123930,1314:208:1,148,30,0,0,-0.0245191 -123931,1314:208:2,148.5,30,0,0,-0.0264646 -123932,1314:209:1,149,30,0,0,-0.0259124 -123933,1314:209:2,149.5,30,0,0,-0.0265608 -123934,1315:100:1,150,30,0,0,-0.0254353 -123935,1315:100:2,150.5,30,0,0,-0.0234663 -123936,1315:101:1,151,30,0,0,-0.0237224 -123937,1315:101:2,151.5,30,0,0,-0.0254583 -123938,1315:102:1,152,30,0,0,-0.0281051 -123939,1315:102:2,152.5,30,0,0,-0.0311773 -123940,1315:103:1,153,30,0,0,-0.031163 -123941,1315:103:2,153.5,30,0,0,-0.0294191 -123942,1315:104:1,154,30,0,0,-0.0280541 -123943,1315:104:2,154.5,30,0,0,-0.0274119 -123944,1315:205:1,155,30,0,0,-0.0301097 -123945,1315:205:2,155.5,30,0,0,-0.0412108 -123946,1315:206:1,156,30,0,0,-0.0554399 -123947,1315:206:2,156.5,30,0,0,-0.0598139 -123948,1315:207:1,157,30,0,0,-0.0552462 -123949,1315:207:2,157.5,30,0,0,-0.050784 -123950,1315:208:1,158,30,0,0,-0.0483925 -123951,1315:208:2,158.5,30,0,0,-0.0467737 -123952,1315:209:1,159,30,0,0,-0.0448993 -123953,1315:209:2,159.5,30,0,0,-0.0434623 -123954,1316:100:1,160,30,0,0,-0.0518568 -123955,1316:100:2,160.5,30,0,0,-0.0797761 -123956,1316:101:1,161,30,0,0,-0.100325 -123957,1316:101:2,161.5,30,0,0,-0.0977994 -123958,1316:102:1,162,30,0,0,-0.081256 -123959,1316:102:2,162.5,30,0,0,-0.0757947 -123960,1316:103:1,163,30,0,0,-0.0737878 -123961,1316:103:2,163.5,30,0,0,-0.0715495 -123962,1316:104:1,164,30,0,0,-0.0659051 -123963,1316:104:2,164.5,30,0,0,-0.061693 -123964,1316:205:1,165,30,0,0,-0.0618815 -123965,1316:205:2,165.5,30,0,0,-0.0629658 -123966,1316:206:1,166,30,0,0,-0.0605755 -123967,1316:206:2,166.5,30,0,0,-0.0538358 -123968,1316:207:1,167,30,0,0,-0.0532997 -123969,1316:207:2,167.5,30,0,0,-0.0555173 -123970,1316:208:1,168,30,0,0,-0.0584717 -123971,1316:208:2,168.5,30,0,0,-0.061232 -123972,1316:209:1,169,30,0,0,-0.0556471 -123973,1316:209:2,169.5,30,0,0,-0.0498963 -123974,1317:100:1,170,30,0,0,-0.046709 -123975,1317:100:2,170.5,30,0,0,-0.047143 -123976,1317:101:1,171,30,0,0,-0.0517965 -123977,1317:101:2,171.5,30,0,0,-0.0622018 -123978,1317:102:1,172,30,0,0,-0.070191 -123979,1317:102:2,172.5,30,0,0,-0.069695 -123980,1317:103:1,173,30,0,0,-0.0616643 -123981,1317:103:2,173.5,30,0,0,-0.0497228 -123982,1317:104:1,174,30,0,0,-0.0450136 -123983,1317:104:2,174.5,30,0,0,-0.0467955 -123984,1317:205:1,175,30,0,0,-0.0511509 -123985,1317:205:2,175.5,30,0,0,-0.0548101 -123986,1317:206:1,176,30,0,0,-0.0562866 -123987,1317:206:2,176.5,30,0,0,-0.0566559 -123988,1317:207:1,177,30,0,0,-0.0563789 -123989,1317:207:2,177.5,30,0,0,-0.0549764 -123990,1317:208:1,178,30,0,0,-0.0541878 -123991,1317:208:2,178.5,30,0,0,-0.0547462 -123992,1317:209:1,179,30,0,0,-0.0548612 -123993,1317:209:2,179.5,30,0,0,-0.0534859 -123994,1318:100:1,180,30,0,0,-0.0518568 -123995,7318:100:3,-180,30.5,0,0,-0.0454734 -123996,7317:209:4,-179.5,30.5,0,0,-0.04419 -123997,7317:209:3,-179,30.5,0,0,-0.0451279 -123998,7317:208:4,-178.5,30.5,0,0,-0.0478799 -123999,7317:208:3,-178,30.5,0,0,-0.0507602 -124000,7317:207:4,-177.5,30.5,0,0,-0.0519411 -124001,7317:207:3,-177,30.5,0,0,-0.0515685 -124002,7317:206:4,-176.5,30.5,0,0,-0.0512696 -124003,7317:206:3,-176,30.5,0,0,-0.0520864 -124004,7317:205:4,-175.5,30.5,0,0,-0.0537105 -124005,7317:205:3,-175,30.5,0,0,-0.0543777 -124006,7317:104:4,-174.5,30.5,0,0,-0.0533243 -124007,7317:104:3,-174,30.5,0,0,-0.051881 -124008,7317:103:4,-173.5,30.5,0,0,-0.051258 -124009,7317:103:3,-173,30.5,0,0,-0.0513769 -124010,7317:102:4,-172.5,30.5,0,0,-0.0514966 -124011,7317:102:3,-172,30.5,0,0,-0.0512936 -124012,7317:101:4,-171.5,30.5,0,0,-0.050408 -124013,7317:101:3,-171,30.5,0,0,-0.0496423 -124014,7317:100:4,-170.5,30.5,0,0,-0.0493324 -124015,7317:100:3,-170,30.5,0,0,-0.0493897 -124016,7316:209:4,-169.5,30.5,0,0,-0.0497112 -124017,7316:209:3,-169,30.5,0,0,-0.0503263 -124018,7316:208:4,-168.5,30.5,0,0,-0.0511984 -124019,7316:208:3,-168,30.5,0,0,-0.0522682 -124020,7316:207:4,-167.5,30.5,0,0,-0.0528797 -124021,7316:207:3,-167,30.5,0,0,-0.0527567 -124022,7316:206:4,-166.5,30.5,0,0,-0.0531013 -124023,7316:206:3,-166,30.5,0,0,-0.0542888 -124024,7316:205:4,-165.5,30.5,0,0,-0.0561949 -124025,7316:205:3,-165,30.5,0,0,-0.0581849 -124026,7316:104:4,-164.5,30.5,0,0,-0.0592702 -124027,7316:104:3,-164,30.5,0,0,-0.0592009 -124028,7316:103:4,-163.5,30.5,0,0,-0.0585397 -124029,7316:103:3,-163,30.5,0,0,-0.0581173 -124030,7316:102:4,-162.5,30.5,0,0,-0.058253 -124031,7316:102:3,-162,30.5,0,0,-0.0584988 -124032,7316:101:4,-161.5,30.5,0,0,-0.0585126 -124033,7316:101:3,-161,30.5,0,0,-0.0593257 -124034,7316:100:4,-160.5,30.5,0,0,-0.0624361 -124035,7316:100:3,-160,30.5,0,0,-0.0669854 -124036,7315:209:4,-159.5,30.5,0,0,-0.0692027 -124037,7315:209:3,-159,30.5,0,0,-0.0663415 -124038,7315:208:4,-158.5,30.5,0,0,-0.0621875 -124039,7315:208:3,-158,30.5,0,0,-0.0616065 -124040,7315:207:4,-157.5,30.5,0,0,-0.0660607 -124041,7315:207:3,-157,30.5,0,0,-0.0718547 -124042,7315:206:4,-156.5,30.5,0,0,-0.0734909 -124043,7315:206:3,-156,30.5,0,0,-0.0714648 -124044,7315:205:4,-155.5,30.5,0,0,-0.0692681 -124045,7315:205:3,-155,30.5,0,0,-0.068682 -124046,7315:104:4,-154.5,30.5,0,0,-0.06935 -124047,7315:104:3,-154,30.5,0,0,-0.0698767 -124048,7315:103:4,-153.5,30.5,0,0,-0.0697609 -124049,7315:103:3,-153,30.5,0,0,-0.0694977 -124050,7315:102:4,-152.5,30.5,0,0,-0.0713462 -124051,7315:102:3,-152,30.5,0,0,-0.0760293 -124052,7315:101:4,-151.5,30.5,0,0,-0.0794342 -124053,7315:101:3,-151,30.5,0,0,-0.0794157 -124054,7315:100:4,-150.5,30.5,0,0,-0.0792644 -124055,7315:100:3,-150,30.5,0,0,-0.0808885 -124056,7314:209:4,-149.5,30.5,0,0,-0.0856091 -124057,7314:209:3,-149,30.5,0,0,-0.090432 -124058,7314:208:4,-148.5,30.5,0,0,-0.0923269 -124059,7314:208:3,-148,30.5,0,0,-0.0927065 -124060,7314:207:4,-147.5,30.5,0,0,-0.0944933 -124061,7314:207:3,-147,30.5,0,0,-0.0962706 -124062,7314:206:4,-146.5,30.5,0,0,-0.0976569 -124063,7314:206:3,-146,30.5,0,0,-0.0990892 -124064,7314:205:4,-145.5,30.5,0,0,-0.100471 -124065,7314:205:3,-145,30.5,0,0,-0.102346 -124066,7314:104:4,-144.5,30.5,0,0,-0.104439 -124067,7314:104:3,-144,30.5,0,0,-0.10449 -124068,7314:103:4,-143.5,30.5,0,0,-0.101974 -124069,7314:103:3,-143,30.5,0,0,-0.100276 -124070,7314:102:4,-142.5,30.5,0,0,-0.10101 -124071,7314:102:3,-142,30.5,0,0,-0.101999 -124072,7314:101:4,-141.5,30.5,0,0,-0.102822 -124073,7314:101:3,-141,30.5,0,0,-0.106656 -124074,7314:100:4,-140.5,30.5,0,0,-0.111465 -124075,7314:100:3,-140,30.5,0,0,-0.114465 -124076,7313:209:4,-139.5,30.5,0,0,-0.114776 -124077,7313:209:3,-139,30.5,0,0,-0.114832 -124078,7313:208:4,-138.5,30.5,0,0,-0.121005 -124079,7313:208:3,-138,30.5,0,0,-0.130607 -124080,7313:207:4,-137.5,30.5,0,0,-0.130346 -124081,7313:207:3,-137,30.5,0,0,-0.130021 -124082,7313:206:4,-136.5,30.5,0,0,-0.135298 -124083,7313:206:3,-136,30.5,0,0,-0.134892 -124084,7313:205:4,-135.5,30.5,0,0,-0.134521 -124085,7313:205:3,-135,30.5,0,0,-0.13605 -124086,7313:104:4,-134.5,30.5,0,0,-0.13605 -124087,7313:104:3,-134,30.5,0,0,-0.13605 -124088,7313:103:4,-133.5,30.5,0,0,-0.13605 -124089,7313:103:3,-133,30.5,0,0,-0.135888 -124090,7313:102:4,-132.5,30.5,0,0,-0.134184 -124091,7313:102:3,-132,30.5,0,0,-0.135163 -124092,7313:101:4,-131.5,30.5,0,0,-0.135945 -124093,7313:101:3,-131,30.5,0,0,-0.135951 -124094,7313:100:4,-130.5,30.5,0,0,-0.135883 -124095,7313:100:3,-130,30.5,0,0,-0.134825 -124096,7312:209:4,-129.5,30.5,0,0,-0.132018 -124097,7312:209:3,-129,30.5,0,0,-0.125719 -124098,7312:208:4,-128.5,30.5,0,0,-0.12494 -124099,7312:208:3,-128,30.5,0,0,-0.133647 -124100,7312:207:4,-127.5,30.5,0,0,-0.13605 -124101,7312:207:3,-127,30.5,0,0,-0.133546 -124102,7312:206:4,-126.5,30.5,0,0,-0.12777 -124103,7312:206:3,-126,30.5,0,0,-0.121005 -124104,7312:205:4,-125.5,30.5,0,0,-0.114211 -124105,7312:205:3,-125,30.5,0,0,-0.117526 -124106,7306:208:4,-68.5,30.5,0,0,-0.0510322 -124107,7306:208:3,-68,30.5,0,0,-0.0553753 -124108,7306:207:4,-67.5,30.5,0,0,-0.0624947 -124109,7306:207:3,-67,30.5,0,0,-0.064161 -124110,7306:206:4,-66.5,30.5,0,0,-0.067668 -124111,7306:206:3,-66,30.5,0,0,-0.0712622 -124112,7306:103:4,-63.5,30.5,0,0,-0.0620999 -124113,7306:103:3,-63,30.5,0,0,-0.0569477 -124114,7306:102:4,-62.5,30.5,0,0,-0.0531511 -124115,7306:102:3,-62,30.5,0,0,-0.0493439 -124116,7306:101:4,-61.5,30.5,0,0,-0.046076 -124117,7306:101:3,-61,30.5,0,0,-0.0452113 -124118,7306:100:4,-60.5,30.5,0,0,-0.0450136 -124119,7306:100:3,-60,30.5,0,0,-0.0457577 -124120,7305:209:4,-59.5,30.5,0,0,-0.0460975 -124121,7305:209:3,-59,30.5,0,0,-0.0460656 -124122,7305:208:4,-58.5,30.5,0,0,-0.0402093 -124123,7305:208:3,-58,30.5,0,0,-0.0374905 -124124,7305:207:4,-57.5,30.5,0,0,-0.0338766 -124125,7305:207:3,-57,30.5,0,0,-0.0299662 -124126,7305:206:4,-56.5,30.5,0,0,-0.0287577 -124127,7305:206:3,-56,30.5,0,0,-0.0306771 -124128,7305:205:4,-55.5,30.5,0,0,-0.0312127 -124129,7305:205:3,-55,30.5,0,0,-0.0288232 -124130,7305:104:4,-54.5,30.5,0,0,-0.0312555 -124131,7305:104:3,-54,30.5,0,0,-0.0356975 -124132,7305:103:4,-53.5,30.5,0,0,-0.0362409 -124133,7305:103:3,-53,30.5,0,0,-0.0341564 -124134,7305:102:4,-52.5,30.5,0,0,-0.0329686 -124135,7305:102:3,-52,30.5,0,0,-0.0333774 -124136,7305:101:4,-51.5,30.5,0,0,-0.0329385 -124137,7305:101:3,-51,30.5,0,0,-0.0290666 -124138,7305:100:4,-50.5,30.5,0,0,-0.0252231 -124139,7305:100:3,-50,30.5,0,0,-0.0241337 -124140,7304:209:4,-49.5,30.5,0,0,-0.0221373 -124141,7304:209:3,-49,30.5,0,0,-0.0190291 -124142,7304:208:4,-48.5,30.5,0,0,-0.0195943 -124143,7304:208:3,-48,30.5,0,0,-0.0582942 -124144,7304:207:4,-47.5,30.5,0,0,-0.0614475 -124145,7304:207:3,-47,30.5,0,0,-0.0731433 -124146,7304:206:4,-46.5,30.5,0,0,-0.0827063 -124147,7304:206:3,-46,30.5,0,0,-0.0760475 -124148,7304:205:4,-45.5,30.5,0,0,-0.0735435 -124149,7304:205:3,-45,30.5,0,0,-0.0715661 -124150,7304:104:4,-44.5,30.5,0,0,-0.13605 -124151,7304:104:3,-44,30.5,0,0,-0.13605 -124152,7304:103:4,-43.5,30.5,0,0,-0.131952 -124153,7304:103:3,-43,30.5,0,0,-0.133882 -124154,7304:102:4,-42.5,30.5,0,0,-0.13605 -124155,7304:102:3,-42,30.5,0,0,-0.13605 -124156,7304:101:4,-41.5,30.5,0,0,-0.13605 -124157,7304:101:3,-41,30.5,0,0,-0.112455 -124158,7304:100:4,-40.5,30.5,0,0,-0.107284 -124159,7304:100:3,-40,30.5,0,0,-0.107205 -124160,7303:209:4,-39.5,30.5,0,0,-0.118078 -124161,7303:209:3,-39,30.5,0,0,-0.12947 -124162,7303:208:4,-38.5,30.5,0,0,-0.13605 -124163,7303:208:3,-38,30.5,0,0,-0.13605 -124164,7303:207:4,-37.5,30.5,0,0,-0.13605 -124165,7303:207:3,-37,30.5,0,0,-0.13605 -124166,7303:206:4,-36.5,30.5,0,0,-0.13605 -124167,7303:206:3,-36,30.5,0,0,-0.13605 -124168,7303:205:4,-35.5,30.5,0,0,-0.13605 -124169,7303:205:3,-35,30.5,0,0,-0.13605 -124170,7303:104:4,-34.5,30.5,0,0,-0.13605 -124171,7303:104:3,-34,30.5,0,0,-0.13605 -124172,7303:103:4,-33.5,30.5,0,0,-0.13605 -124173,7303:103:3,-33,30.5,0,0,-0.13605 -124174,7303:102:4,-32.5,30.5,0,0,-0.13605 -124175,7303:102:3,-32,30.5,0,0,-0.13605 -124176,7303:101:4,-31.5,30.5,0,0,-0.13605 -124177,7303:101:3,-31,30.5,0,0,-0.13605 -124178,7303:100:4,-30.5,30.5,0,0,-0.13605 -124179,7303:100:3,-30,30.5,0,0,-0.13605 -124180,7302:209:4,-29.5,30.5,0,0,-0.13605 -124181,7302:209:3,-29,30.5,0,0,-0.13605 -124182,7302:208:4,-28.5,30.5,0,0,-0.13605 -124183,7302:208:3,-28,30.5,0,0,-0.13605 -124184,7302:207:4,-27.5,30.5,0,0,-0.13605 -124185,7302:207:3,-27,30.5,0,0,-0.13605 -124186,7302:206:4,-26.5,30.5,0,0,-0.13605 -124187,7302:206:3,-26,30.5,0,0,-0.13605 -124188,7302:205:4,-25.5,30.5,0,0,-0.13605 -124189,7302:205:3,-25,30.5,0,0,-0.13605 -124190,7302:104:4,-24.5,30.5,0,0,-0.13605 -124191,7302:104:3,-24,30.5,0,0,-0.13605 -124192,7302:103:4,-23.5,30.5,0,0,-0.13605 -124193,7302:103:3,-23,30.5,0,0,-0.13605 -124194,7302:102:4,-22.5,30.5,0,0,-0.13605 -124195,7302:102:3,-22,30.5,0,0,-0.13605 -124196,7302:101:4,-21.5,30.5,0,0,-0.13605 -124197,7302:101:3,-21,30.5,0,0,-0.13605 -124198,7302:100:4,-20.5,30.5,0,0,-0.13605 -124199,7302:100:3,-20,30.5,0,0,-0.13605 -124200,7301:209:4,-19.5,30.5,0,0,-0.13605 -124201,7301:209:3,-19,30.5,0,0,-0.13605 -124202,7301:208:4,-18.5,30.5,0,0,-0.13605 -124203,7301:208:3,-18,30.5,0,0,-0.13605 -124204,7301:207:4,-17.5,30.5,0,0,-0.13605 -124205,7301:207:3,-17,30.5,0,0,-0.13605 -124206,7301:206:4,-16.5,30.5,0,0,-0.13605 -124207,7301:206:3,-16,30.5,0,0,-0.13605 -124208,7301:205:4,-15.5,30.5,0,0,-0.13605 -124209,7301:205:3,-15,30.5,0,0,-0.13605 -124210,7301:104:4,-14.5,30.5,0,0,-0.13605 -124211,7301:104:3,-14,30.5,0,0,-0.13605 -124212,7301:103:4,-13.5,30.5,0,0,-0.13605 -124213,7301:103:3,-13,30.5,0,0,-0.13605 -124214,7301:102:4,-12.5,30.5,0,0,-0.13605 -124215,7301:102:3,-12,30.5,0,0,-0.13605 -124216,7301:101:4,-11.5,30.5,0,0,-0.13605 -124217,7301:101:3,-11,30.5,0,0,-0.13605 -124218,7301:100:4,-10.5,30.5,0,0,-0.13605 -124219,7301:100:3,-10,30.5,0,0,-0.13605 -124220,7300:209:4,-9.5,30.5,0,0,-0.13605 -124221,7300:209:3,-9,30.5,0,0,-0.13605 -124222,7300:208:4,-8.5,30.5,0,0,-0.13605 -124223,7300:208:3,-8,30.5,0,0,-0.13605 -124224,7300:207:4,-7.5,30.5,0,0,-0.13605 -124225,7300:207:3,-7,30.5,0,0,-0.13605 -124226,7300:206:4,-6.5,30.5,0,0,-0.13605 -124227,7300:206:3,-6,30.5,0,0,-0.13605 -124228,7300:205:4,-5.5,30.5,0,0,-0.13605 -124229,7300:205:3,-5,30.5,0,0,-0.13605 -124230,7300:104:4,-4.5,30.5,0,0,-0.13605 -124231,7300:104:3,-4,30.5,0,0,-0.13605 -124232,7300:103:4,-3.5,30.5,0,0,-0.13605 -124233,7300:103:3,-3,30.5,0,0,-0.13605 -124234,7300:102:4,-2.5,30.5,0,0,-0.13605 -124235,7300:102:3,-2,30.5,0,0,-0.13605 -124236,1300:207:4,7.5,30.5,0,0,-0.13605 -124237,1300:208:3,8,30.5,0,0,-0.13605 -124238,1300:208:4,8.5,30.5,0,0,-0.13605 -124239,1300:209:3,9,30.5,0,0,-0.13605 -124240,1301:102:4,12.5,30.5,0,0,-0.13605 -124241,1301:103:3,13,30.5,0,0,-0.13605 -124242,1301:103:4,13.5,30.5,0,0,-0.13605 -124243,1301:104:3,14,30.5,0,0,-0.13605 -124244,1301:104:4,14.5,30.5,0,0,-0.13605 -124245,1301:205:3,15,30.5,0,0,-0.13605 -124246,1302:207:4,27.5,30.5,0,0,-0.13605 -124247,1302:208:3,28,30.5,0,0,-0.13605 -124248,1302:208:4,28.5,30.5,0,0,-0.13605 -124249,1302:209:3,29,30.5,0,0,-0.13605 -124250,1302:209:4,29.5,30.5,0,0,-0.13605 -124251,1303:100:3,30,30.5,0,0,-0.13605 -124252,1303:100:4,30.5,30.5,0,0,-0.13605 -124253,1303:101:3,31,30.5,0,0,-0.13605 -124254,1303:101:4,31.5,30.5,0,0,-0.13605 -124255,1303:102:3,32,30.5,0,0,-0.13605 -124256,1303:102:4,32.5,30.5,0,0,-0.13605 -124257,1303:103:3,33,30.5,0,0,-0.13605 -124258,1303:103:4,33.5,30.5,0,0,-0.13605 -124259,1303:104:3,34,30.5,0,0,-0.13605 -124260,1303:104:4,34.5,30.5,0,0,-0.13605 -124261,1303:205:3,35,30.5,0,0,-0.13605 -124262,1303:205:4,35.5,30.5,0,0,-0.13605 -124263,1303:206:3,36,30.5,0,0,-0.13605 -124264,1303:206:4,36.5,30.5,0,0,-0.13605 -124265,1303:207:3,37,30.5,0,0,-0.13605 -124266,1303:207:4,37.5,30.5,0,0,-0.13605 -124267,1303:208:3,38,30.5,0,0,-0.13605 -124268,1303:208:4,38.5,30.5,0,0,-0.13605 -124269,1303:209:3,39,30.5,0,0,-0.13605 -124270,1303:209:4,39.5,30.5,0,0,-0.13605 -124271,1304:100:3,40,30.5,0,0,-0.13605 -124272,1304:100:4,40.5,30.5,0,0,-0.13605 -124273,1304:101:3,41,30.5,0,0,-0.13605 -124274,1313:206:4,136.5,30.5,0,0,-0.0387317 -124275,1313:207:3,137,30.5,0,0,-0.0404875 -124276,1313:207:4,137.5,30.5,0,0,-0.0488546 -124277,1313:208:3,138,30.5,0,0,-0.0754891 -124278,1313:208:4,138.5,30.5,0,0,-0.0907378 -124279,1313:209:3,139,30.5,0,0,-0.0650117 -124280,1313:209:4,139.5,30.5,0,0,-0.0579678 -124281,1314:100:3,140,30.5,0,0,-0.0610457 -124282,1314:100:4,140.5,30.5,0,0,-0.0571209 -124283,1314:101:3,141,30.5,0,0,-0.0562606 -124284,1314:101:4,141.5,30.5,0,0,-0.0603628 -124285,1314:102:3,142,30.5,0,0,-0.0647062 -124286,1314:104:4,144.5,30.5,0,0,-0.0214533 -124287,1314:205:3,145,30.5,0,0,-0.0165899 -124288,1314:205:4,145.5,30.5,0,0,-0.0164452 -124289,1314:206:3,146,30.5,0,0,-0.0173563 -124290,1314:206:4,146.5,30.5,0,0,-0.0198969 -124291,1314:207:3,147,30.5,0,0,-0.0206416 -124292,1314:207:4,147.5,30.5,0,0,-0.0212367 -124293,1314:208:3,148,30.5,0,0,-0.0283553 -124294,1314:208:4,148.5,30.5,0,0,-0.0281756 -124295,1314:209:3,149,30.5,0,0,-0.0263568 -124296,1314:209:4,149.5,30.5,0,0,-0.0247871 -124297,1315:100:3,150,30.5,0,0,-0.0233445 -124298,1315:100:4,150.5,30.5,0,0,-0.0230666 -124299,1315:101:3,151,30.5,0,0,-0.0228848 -124300,1315:101:4,151.5,30.5,0,0,-0.0231501 -124301,1315:102:3,152,30.5,0,0,-0.0248938 -124302,1315:102:4,152.5,30.5,0,0,-0.0278953 -124303,1315:103:3,153,30.5,0,0,-0.0306351 -124304,1315:103:4,153.5,30.5,0,0,-0.0297487 -124305,1315:104:3,154,30.5,0,0,-0.0289808 -124306,1315:104:4,154.5,30.5,0,0,-0.0266998 -124307,1315:205:3,155,30.5,0,0,-0.0240628 -124308,1315:205:4,155.5,30.5,0,0,-0.0249052 -124309,1315:206:3,156,30.5,0,0,-0.0366162 -124310,1315:206:4,156.5,30.5,0,0,-0.0546062 -124311,1315:207:3,157,30.5,0,0,-0.0521104 -124312,1315:207:4,157.5,30.5,0,0,-0.0505722 -124313,1315:208:3,158,30.5,0,0,-0.0473508 -124314,1315:208:4,158.5,30.5,0,0,-0.0401538 -124315,1315:209:3,159,30.5,0,0,-0.0342344 -124316,1315:209:4,159.5,30.5,0,0,-0.0313912 -124317,1316:100:3,160,30.5,0,0,-0.0325129 -124318,1316:100:4,160.5,30.5,0,0,-0.0377926 -124319,1316:101:3,161,30.5,0,0,-0.0788308 -124320,1316:101:4,161.5,30.5,0,0,-0.0963404 -124321,1316:102:3,162,30.5,0,0,-0.079321 -124322,1316:102:4,162.5,30.5,0,0,-0.0742445 -124323,1316:103:3,163,30.5,0,0,-0.0764098 -124324,1316:103:4,163.5,30.5,0,0,-0.0721962 -124325,1316:104:3,164,30.5,0,0,-0.0559725 -124326,1316:104:4,164.5,30.5,0,0,-0.0464503 -124327,1316:205:3,165,30.5,0,0,-0.0480242 -124328,1316:205:4,165.5,30.5,0,0,-0.052634 -124329,1316:206:3,166,30.5,0,0,-0.0538607 -124330,1316:206:4,166.5,30.5,0,0,-0.0499193 -124331,1316:207:3,167,30.5,0,0,-0.0479686 -124332,1316:207:4,167.5,30.5,0,0,-0.0514966 -124333,1316:208:3,168,30.5,0,0,-0.0573616 -124334,1316:208:4,168.5,30.5,0,0,-0.0580762 -124335,1316:209:3,169,30.5,0,0,-0.054327 -124336,1316:209:4,169.5,30.5,0,0,-0.0482583 -124337,1317:100:3,170,30.5,0,0,-0.0434724 -124338,1317:100:4,170.5,30.5,0,0,-0.0428854 -124339,1317:101:3,171,30.5,0,0,-0.0457367 -124340,1317:101:4,171.5,30.5,0,0,-0.050163 -124341,1317:102:3,172,30.5,0,0,-0.0547462 -124342,1317:102:4,172.5,30.5,0,0,-0.0540493 -124343,1317:103:3,173,30.5,0,0,-0.0457051 -124344,1317:103:4,173.5,30.5,0,0,-0.0410027 -124345,1317:104:3,174,30.5,0,0,-0.0414866 -124346,1317:104:4,174.5,30.5,0,0,-0.0443433 -124347,1317:205:3,175,30.5,0,0,-0.0473508 -124348,1317:205:4,175.5,30.5,0,0,-0.0490474 -124349,1317:206:3,176,30.5,0,0,-0.0500353 -124350,1317:206:4,176.5,30.5,0,0,-0.050502 -124351,1317:207:3,177,30.5,0,0,-0.0489566 -124352,1317:207:4,177.5,30.5,0,0,-0.0469798 -124353,1317:208:3,178,30.5,0,0,-0.0468603 -124354,1317:208:4,178.5,30.5,0,0,-0.0483364 -124355,1317:209:3,179,30.5,0,0,-0.049241 -124356,1317:209:4,179.5,30.5,0,0,-0.0479354 -124357,1318:100:3,180,30.5,0,0,-0.0454734 -124358,7318:110:1,-180,31,0,0,-0.0408614 -124359,7317:219:2,-179.5,31,0,0,-0.0404594 -124360,7317:219:1,-179,31,0,0,-0.0419378 -124361,7317:218:2,-178.5,31,0,0,-0.0444662 -124362,7317:218:1,-178,31,0,0,-0.0464828 -124363,7317:217:2,-177.5,31,0,0,-0.0466981 -124364,7317:217:1,-177,31,0,0,-0.0456732 -124365,7317:216:2,-176.5,31,0,0,-0.0452952 -124366,7317:216:1,-176,31,0,0,-0.046515 -124367,7317:215:2,-175.5,31,0,0,-0.0488318 -124368,7317:215:1,-175,31,0,0,-0.0500353 -124369,7317:114:2,-174.5,31,0,0,-0.04873 -124370,7317:114:1,-174,31,0,0,-0.0466873 -124371,7317:113:2,-173.5,31,0,0,-0.0456626 -124372,7317:113:1,-173,31,0,0,-0.0462682 -124373,7317:112:2,-172.5,31,0,0,-0.0474385 -124374,7317:112:1,-172,31,0,0,-0.0480575 -124375,7317:111:2,-171.5,31,0,0,-0.0475925 -124376,7317:111:1,-171,31,0,0,-0.0465471 -124377,7317:110:2,-170.5,31,0,0,-0.0459592 -124378,7317:110:1,-170,31,0,0,-0.0461616 -124379,7316:219:2,-169.5,31,0,0,-0.0468497 -124380,7316:219:1,-169,31,0,0,-0.0475374 -124381,7316:218:2,-168.5,31,0,0,-0.0483925 -124382,7316:218:1,-168,31,0,0,-0.0494012 -124383,7316:217:2,-167.5,31,0,0,-0.0499889 -124384,7316:217:1,-167,31,0,0,-0.0500934 -124385,7316:216:2,-166.5,31,0,0,-0.0505489 -124386,7316:216:1,-166,31,0,0,-0.0509613 -124387,7316:215:2,-165.5,31,0,0,-0.0513769 -124388,7316:215:1,-165,31,0,0,-0.0520137 -124389,7316:114:2,-164.5,31,0,0,-0.0529906 -124390,7316:114:1,-164,31,0,0,-0.0539737 -124391,7316:113:2,-163.5,31,0,0,-0.0546187 -124392,7316:113:1,-163,31,0,0,-0.0550661 -124393,7316:112:2,-162.5,31,0,0,-0.0555304 -124394,7316:112:1,-162,31,0,0,-0.0559071 -124395,7316:111:2,-161.5,31,0,0,-0.0558813 -124396,7316:111:1,-161,31,0,0,-0.0557379 -124397,7316:110:2,-160.5,31,0,0,-0.0561689 -124398,7316:110:1,-160,31,0,0,-0.0578327 -124399,7315:219:2,-159.5,31,0,0,-0.0589524 -124400,7315:219:1,-159,31,0,0,-0.0574955 -124401,7315:218:2,-158.5,31,0,0,-0.0559203 -124402,7315:218:1,-158,31,0,0,-0.0560115 -124403,7315:217:2,-157.5,31,0,0,-0.0587734 -124404,7315:217:1,-157,31,0,0,-0.0635007 -124405,7315:216:2,-156.5,31,0,0,-0.0663572 -124406,7315:216:1,-156,31,0,0,-0.0655956 -124407,7315:215:2,-155.5,31,0,0,-0.0629807 -124408,7315:215:1,-155,31,0,0,-0.0608599 -124409,7315:114:2,-154.5,31,0,0,-0.0602498 -124410,7315:114:1,-154,31,0,0,-0.0605755 -124411,7315:113:2,-153.5,31,0,0,-0.061275 -124412,7315:113:1,-153,31,0,0,-0.0620705 -124413,7315:112:2,-152.5,31,0,0,-0.0639652 -124414,7315:112:1,-152,31,0,0,-0.0679722 -124415,7315:111:2,-151.5,31,0,0,-0.0723159 -124416,7315:111:1,-151,31,0,0,-0.0744567 -124417,7315:110:2,-150.5,31,0,0,-0.0747399 -124418,7315:110:1,-150,31,0,0,-0.0741918 -124419,7314:219:2,-149.5,31,0,0,-0.0750776 -124420,7314:219:1,-149,31,0,0,-0.0782505 -124421,7314:218:2,-148.5,31,0,0,-0.0816653 -124422,7314:218:1,-148,31,0,0,-0.0841846 -124423,7314:217:2,-147.5,31,0,0,-0.0865801 -124424,7314:217:1,-147,31,0,0,-0.0881331 -124425,7314:216:2,-146.5,31,0,0,-0.0889853 -124426,7314:216:1,-146,31,0,0,-0.0893927 -124427,7314:215:2,-145.5,31,0,0,-0.0886215 -124428,7314:215:1,-145,31,0,0,-0.0889206 -124429,7314:114:2,-144.5,31,0,0,-0.0918603 -124430,7314:114:1,-144,31,0,0,-0.0955047 -124431,7314:113:2,-143.5,31,0,0,-0.0961305 -124432,7314:113:1,-143,31,0,0,-0.0943331 -124433,7314:112:2,-142.5,31,0,0,-0.0932004 -124434,7314:112:1,-142,31,0,0,-0.0947909 -124435,7314:111:2,-141.5,31,0,0,-0.0982748 -124436,7314:111:1,-141,31,0,0,-0.104133 -124437,7314:110:2,-140.5,31,0,0,-0.107731 -124438,7314:110:1,-140,31,0,0,-0.106058 -124439,7313:219:2,-139.5,31,0,0,-0.103198 -124440,7313:219:1,-139,31,0,0,-0.103677 -124441,7313:218:2,-138.5,31,0,0,-0.108233 -124442,7313:218:1,-138,31,0,0,-0.115855 -124443,7313:217:2,-137.5,31,0,0,-0.119163 -124444,7313:217:1,-137,31,0,0,-0.119784 -124445,7313:216:2,-136.5,31,0,0,-0.124816 -124446,7313:216:1,-136,31,0,0,-0.128442 -124447,7313:215:2,-135.5,31,0,0,-0.128249 -124448,7313:215:1,-135,31,0,0,-0.128762 -124449,7313:114:2,-134.5,31,0,0,-0.130249 -124450,7313:114:1,-134,31,0,0,-0.129406 -124451,7313:113:2,-133.5,31,0,0,-0.127294 -124452,7313:113:1,-133,31,0,0,-0.125626 -124453,7313:112:2,-132.5,31,0,0,-0.125345 -124454,7313:112:1,-132,31,0,0,-0.128185 -124455,7313:111:2,-131.5,31,0,0,-0.131294 -124456,7313:111:1,-131,31,0,0,-0.130868 -124457,7313:110:2,-130.5,31,0,0,-0.128377 -124458,7313:110:1,-130,31,0,0,-0.12663 -124459,7312:219:2,-129.5,31,0,0,-0.124353 -124460,7312:219:1,-129,31,0,0,-0.120646 -124461,7312:218:2,-128.5,31,0,0,-0.12294 -124462,7312:218:1,-128,31,0,0,-0.128026 -124463,7312:217:2,-127.5,31,0,0,-0.130021 -124464,7312:217:1,-127,31,0,0,-0.126819 -124465,7312:216:2,-126.5,31,0,0,-0.123552 -124466,7312:216:1,-126,31,0,0,-0.123644 -124467,7312:215:2,-125.5,31,0,0,-0.116027 -124468,7312:215:1,-125,31,0,0,-0.115627 -124469,7312:114:2,-124.5,31,0,0,-0.10989 -124470,7306:216:2,-66.5,31,0,0,-0.055699 -124471,7306:216:1,-66,31,0,0,-0.0675245 -124472,7306:215:2,-65.5,31,0,0,-0.0638748 -124473,7306:112:1,-62,31,0,0,-0.0437037 -124474,7306:111:2,-61.5,31,0,0,-0.0459909 -124475,7306:111:1,-61,31,0,0,-0.0427667 -124476,7306:110:2,-60.5,31,0,0,-0.0388474 -124477,7306:110:1,-60,31,0,0,-0.0372337 -124478,7305:219:2,-59.5,31,0,0,-0.0361744 -124479,7305:219:1,-59,31,0,0,-0.0363988 -124480,7305:218:2,-58.5,31,0,0,-0.0340084 -124481,7305:218:1,-58,31,0,0,-0.0312911 -124482,7305:217:2,-57.5,31,0,0,-0.0298845 -124483,7305:217:1,-57,31,0,0,-0.0280287 -124484,7305:216:2,-56.5,31,0,0,-0.0272568 -124485,7305:216:1,-56,31,0,0,-0.0258773 -124486,7305:215:2,-55.5,31,0,0,-0.0225104 -124487,7305:215:1,-55,31,0,0,-0.0221223 -124488,7305:114:2,-54.5,31,0,0,-0.0263687 -124489,7305:114:1,-54,31,0,0,-0.0270226 -124490,7305:113:2,-53.5,31,0,0,-0.0284974 -124491,7305:113:1,-53,31,0,0,-0.0261959 -124492,7305:112:2,-52.5,31,0,0,-0.0233287 -124493,7305:112:1,-52,31,0,0,-0.0263209 -124494,7305:111:2,-51.5,31,0,0,-0.0283103 -124495,7305:111:1,-51,31,0,0,-0.0265367 -124496,7305:110:2,-50.5,31,0,0,-0.0241666 -124497,7305:110:1,-50,31,0,0,-0.0230352 -124498,7304:219:2,-49.5,31,0,0,-0.0209701 -124499,7304:219:1,-49,31,0,0,-0.0203046 -124500,7304:218:2,-48.5,31,0,0,-0.0180164 -124501,7304:218:1,-48,31,0,0,-0.0202406 -124502,7304:217:2,-47.5,31,0,0,-0.0541628 -124503,7304:217:1,-47,31,0,0,-0.0657967 -124504,7304:216:2,-46.5,31,0,0,-0.0654413 -124505,7304:216:1,-46,31,0,0,-0.0675245 -124506,7304:215:2,-45.5,31,0,0,-0.0862484 -124507,7304:215:1,-45,31,0,0,-0.109513 -124508,7304:114:2,-44.5,31,0,0,-0.13605 -124509,7304:114:1,-44,31,0,0,-0.135981 -124510,7304:113:2,-43.5,31,0,0,-0.127009 -124511,7304:113:1,-43,31,0,0,-0.130901 -124512,7304:112:2,-42.5,31,0,0,-0.135604 -124513,7304:112:1,-42,31,0,0,-0.131294 -124514,7304:111:2,-41.5,31,0,0,-0.128698 -124515,7304:111:1,-41,31,0,0,-0.127104 -124516,7304:110:2,-40.5,31,0,0,-0.112401 -124517,7304:110:1,-40,31,0,0,-0.102147 -124518,7303:219:2,-39.5,31,0,0,-0.112097 -124519,7303:219:1,-39,31,0,0,-0.13605 -124520,7303:218:2,-38.5,31,0,0,-0.13605 -124521,7303:218:1,-38,31,0,0,-0.13605 -124522,7303:217:2,-37.5,31,0,0,-0.13605 -124523,7303:217:1,-37,31,0,0,-0.13605 -124524,7303:216:2,-36.5,31,0,0,-0.13605 -124525,7303:216:1,-36,31,0,0,-0.13605 -124526,7303:215:2,-35.5,31,0,0,-0.13605 -124527,7303:215:1,-35,31,0,0,-0.13605 -124528,7303:114:2,-34.5,31,0,0,-0.13605 -124529,7303:114:1,-34,31,0,0,-0.13605 -124530,7303:113:2,-33.5,31,0,0,-0.13605 -124531,7303:113:1,-33,31,0,0,-0.13605 -124532,7303:112:2,-32.5,31,0,0,-0.134083 -124533,7303:112:1,-32,31,0,0,-0.13605 -124534,7303:111:2,-31.5,31,0,0,-0.13605 -124535,7303:111:1,-31,31,0,0,-0.13605 -124536,7303:110:2,-30.5,31,0,0,-0.13605 -124537,7303:110:1,-30,31,0,0,-0.13605 -124538,7302:219:2,-29.5,31,0,0,-0.13605 -124539,7302:219:1,-29,31,0,0,-0.13605 -124540,7302:218:2,-28.5,31,0,0,-0.13605 -124541,7302:218:1,-28,31,0,0,-0.13605 -124542,7302:217:2,-27.5,31,0,0,-0.13605 -124543,7302:217:1,-27,31,0,0,-0.13605 -124544,7302:216:2,-26.5,31,0,0,-0.13605 -124545,7302:216:1,-26,31,0,0,-0.13605 -124546,7302:215:2,-25.5,31,0,0,-0.13605 -124547,7302:215:1,-25,31,0,0,-0.13605 -124548,7302:114:2,-24.5,31,0,0,-0.13605 -124549,7302:114:1,-24,31,0,0,-0.13605 -124550,7302:113:2,-23.5,31,0,0,-0.13605 -124551,7302:113:1,-23,31,0,0,-0.13605 -124552,7302:112:2,-22.5,31,0,0,-0.13605 -124553,7302:112:1,-22,31,0,0,-0.13605 -124554,7302:111:2,-21.5,31,0,0,-0.13605 -124555,7302:111:1,-21,31,0,0,-0.13605 -124556,7302:110:2,-20.5,31,0,0,-0.13605 -124557,7302:110:1,-20,31,0,0,-0.13605 -124558,7301:219:2,-19.5,31,0,0,-0.13605 -124559,7301:219:1,-19,31,0,0,-0.13605 -124560,7301:218:2,-18.5,31,0,0,-0.13605 -124561,7301:218:1,-18,31,0,0,-0.13605 -124562,7301:217:2,-17.5,31,0,0,-0.13605 -124563,7301:217:1,-17,31,0,0,-0.13605 -124564,7301:216:2,-16.5,31,0,0,-0.13605 -124565,7301:216:1,-16,31,0,0,-0.13605 -124566,7301:215:2,-15.5,31,0,0,-0.13605 -124567,7301:215:1,-15,31,0,0,-0.13605 -124568,7301:114:2,-14.5,31,0,0,-0.13605 -124569,7301:114:1,-14,31,0,0,-0.13605 -124570,7301:113:2,-13.5,31,0,0,-0.13605 -124571,7301:113:1,-13,31,0,0,-0.13605 -124572,7301:112:2,-12.5,31,0,0,-0.13605 -124573,7301:112:1,-12,31,0,0,-0.13605 -124574,7301:111:2,-11.5,31,0,0,-0.13605 -124575,7301:111:1,-11,31,0,0,-0.13605 -124576,7301:110:2,-10.5,31,0,0,-0.13605 -124577,7301:110:1,-10,31,0,0,-0.13605 -124578,7300:219:2,-9.5,31,0,0,-0.13605 -124579,7300:219:1,-9,31,0,0,-0.13605 -124580,7300:218:2,-8.5,31,0,0,-0.13605 -124581,7300:218:1,-8,31,0,0,-0.13605 -124582,7300:217:2,-7.5,31,0,0,-0.13605 -124583,7300:217:1,-7,31,0,0,-0.13605 -124584,7300:216:2,-6.5,31,0,0,-0.13605 -124585,7300:216:1,-6,31,0,0,-0.13605 -124586,7300:215:2,-5.5,31,0,0,-0.13605 -124587,7300:215:1,-5,31,0,0,-0.13605 -124588,7300:114:2,-4.5,31,0,0,-0.13605 -124589,7300:114:1,-4,31,0,0,-0.13605 -124590,7300:113:2,-3.5,31,0,0,-0.13605 -124591,7300:113:1,-3,31,0,0,-0.13605 -124592,7300:112:2,-2.5,31,0,0,-0.13605 -124593,7300:112:1,-2,31,0,0,-0.13605 -124594,1301:111:2,11.5,31,0,0,-0.13605 -124595,1301:112:1,12,31,0,0,-0.13605 -124596,1301:112:2,12.5,31,0,0,-0.13605 -124597,1301:113:1,13,31,0,0,-0.13605 -124598,1301:113:2,13.5,31,0,0,-0.13605 -124599,1301:114:1,14,31,0,0,-0.13605 -124600,1302:217:2,27.5,31,0,0,-0.13605 -124601,1302:218:1,28,31,0,0,-0.13605 -124602,1302:218:2,28.5,31,0,0,-0.13605 -124603,1302:219:1,29,31,0,0,-0.13605 -124604,1302:219:2,29.5,31,0,0,-0.13605 -124605,1303:110:1,30,31,0,0,-0.13605 -124606,1303:110:2,30.5,31,0,0,-0.13605 -124607,1303:111:1,31,31,0,0,-0.13605 -124608,1303:111:2,31.5,31,0,0,-0.13605 -124609,1303:112:1,32,31,0,0,-0.13605 -124610,1303:112:2,32.5,31,0,0,-0.13605 -124611,1303:113:1,33,31,0,0,-0.13605 -124612,1303:113:2,33.5,31,0,0,-0.13605 -124613,1303:114:1,34,31,0,0,-0.13605 -124614,1303:114:2,34.5,31,0,0,-0.13605 -124615,1303:215:1,35,31,0,0,-0.13605 -124616,1303:215:2,35.5,31,0,0,-0.13605 -124617,1303:216:1,36,31,0,0,-0.13605 -124618,1303:216:2,36.5,31,0,0,-0.13605 -124619,1303:217:1,37,31,0,0,-0.13605 -124620,1303:217:2,37.5,31,0,0,-0.13605 -124621,1303:218:1,38,31,0,0,-0.13605 -124622,1303:218:2,38.5,31,0,0,-0.13605 -124623,1303:219:1,39,31,0,0,-0.13605 -124624,1303:219:2,39.5,31,0,0,-0.13605 -124625,1304:110:1,40,31,0,0,-0.13605 -124626,1304:110:2,40.5,31,0,0,-0.13605 -124627,1313:217:2,137.5,31,0,0,-0.0376285 -124628,1313:218:1,138,31,0,0,-0.0439056 -124629,1313:218:2,138.5,31,0,0,-0.0498846 -124630,1313:219:1,139,31,0,0,-0.0524022 -124631,1313:219:2,139.5,31,0,0,-0.0529782 -124632,1314:110:1,140,31,0,0,-0.0519532 -124633,1314:110:2,140.5,31,0,0,-0.0497461 -124634,1314:111:1,141,31,0,0,-0.0495156 -124635,1314:111:2,141.5,31,0,0,-0.0539235 -124636,1314:112:1,142,31,0,0,-0.0606748 -124637,1314:112:2,142.5,31,0,0,-0.053648 -124638,1314:114:1,144,31,0,0,-0.019089 -124639,1314:114:2,144.5,31,0,0,-0.0159901 -124640,1314:215:1,145,31,0,0,-0.0139115 -124641,1314:215:2,145.5,31,0,0,-0.0160981 -124642,1314:216:1,146,31,0,0,-0.023297 -124643,1314:216:2,146.5,31,0,0,-0.0237762 -124644,1314:217:1,147,31,0,0,-0.0215407 -124645,1314:217:2,147.5,31,0,0,-0.0215601 -124646,1314:218:1,148,31,0,0,-0.0221623 -124647,1314:219:1,149,31,0,0,-0.0295599 -124648,1314:219:2,149.5,31,0,0,-0.0279968 -124649,1315:110:1,150,31,0,0,-0.0257719 -124650,1315:110:2,150.5,31,0,0,-0.0234716 -124651,1315:111:1,151,31,0,0,-0.0223937 -124652,1315:111:2,151.5,31,0,0,-0.0219778 -124653,1315:112:1,152,31,0,0,-0.0230613 -124654,1315:112:2,152.5,31,0,0,-0.0243092 -124655,1315:113:1,153,31,0,0,-0.0277248 -124656,1315:113:2,153.5,31,0,0,-0.0304335 -124657,1315:114:1,154,31,0,0,-0.0305794 -124658,1315:114:2,154.5,31,0,0,-0.0289808 -124659,1315:215:1,155,31,0,0,-0.0241502 -124660,1315:215:2,155.5,31,0,0,-0.0233604 -124661,1315:216:1,156,31,0,0,-0.0243147 -124662,1315:216:2,156.5,31,0,0,-0.0326094 -124663,1315:217:1,157,31,0,0,-0.0414292 -124664,1315:217:2,157.5,31,0,0,-0.0389905 -124665,1315:218:1,158,31,0,0,-0.0299389 -124666,1315:218:2,158.5,31,0,0,-0.0258948 -124667,1315:219:1,159,31,0,0,-0.0256961 -124668,1315:219:2,159.5,31,0,0,-0.0263209 -124669,1316:110:1,160,31,0,0,-0.0268577 -124670,1316:110:2,160.5,31,0,0,-0.0278258 -124671,1316:111:1,161,31,0,0,-0.030489 -124672,1316:111:2,161.5,31,0,0,-0.0620999 -124673,1316:112:1,162,31,0,0,-0.0869762 -124674,1316:112:2,162.5,31,0,0,-0.0816457 -124675,1316:113:1,163,31,0,0,-0.0784373 -124676,1316:113:2,163.5,31,0,0,-0.0681811 -124677,1316:114:1,164,31,0,0,-0.0475704 -124678,1316:114:2,164.5,31,0,0,-0.0381583 -124679,1316:215:1,165,31,0,0,-0.0412296 -124680,1316:215:2,165.5,31,0,0,-0.0483703 -124681,1316:216:1,166,31,0,0,-0.0513769 -124682,1316:216:2,166.5,31,0,0,-0.0493209 -124683,1316:217:1,167,31,0,0,-0.0446205 -124684,1316:217:2,167.5,31,0,0,-0.0394769 -124685,1316:218:1,168,31,0,0,-0.0387496 -124686,1316:218:2,168.5,31,0,0,-0.0437942 -124687,1316:219:1,169,31,0,0,-0.0487752 -124688,1316:219:2,169.5,31,0,0,-0.0456732 -124689,1317:110:1,170,31,0,0,-0.04122 -124690,1317:110:2,170.5,31,0,0,-0.0398505 -124691,1317:111:1,171,31,0,0,-0.0421994 -124692,1317:111:2,171.5,31,0,0,-0.0454734 -124693,1317:112:1,172,31,0,0,-0.0467305 -124694,1317:112:2,172.5,31,0,0,-0.0436431 -124695,1317:113:1,173,31,0,0,-0.0395403 -124696,1317:113:2,173.5,31,0,0,-0.0379142 -124697,1317:114:1,174,31,0,0,-0.0391158 -124698,1317:114:2,174.5,31,0,0,-0.0415151 -124699,1317:215:1,175,31,0,0,-0.0430734 -124700,1317:215:2,175.5,31,0,0,-0.0434724 -124701,1317:216:1,176,31,0,0,-0.0437338 -124702,1317:216:2,176.5,31,0,0,-0.0437338 -124703,1317:217:1,177,31,0,0,-0.0424919 -124704,1317:217:2,177.5,31,0,0,-0.0411443 -124705,1317:218:1,178,31,0,0,-0.0412487 -124706,1317:218:2,178.5,31,0,0,-0.0425212 -124707,1317:219:1,179,31,0,0,-0.0433823 -124708,1317:219:2,179.5,31,0,0,-0.0425212 -124709,1318:110:1,180,31,0,0,-0.0408614 -124710,7318:110:3,-180,31.5,0,0,-0.0380186 -124711,7317:219:4,-179.5,31.5,0,0,-0.0384926 -124712,7317:219:3,-179,31.5,0,0,-0.0402093 -124713,7317:218:4,-178.5,31.5,0,0,-0.0421312 -124714,7317:218:3,-178,31.5,0,0,-0.042905 -124715,7317:217:4,-177.5,31.5,0,0,-0.0416492 -124716,7317:217:3,-177,31.5,0,0,-0.0396677 -124717,7317:216:4,-176.5,31.5,0,0,-0.0392688 -124718,7317:216:3,-176,31.5,0,0,-0.040899 -124719,7317:215:4,-175.5,31.5,0,0,-0.0435827 -124720,7317:215:3,-175,31.5,0,0,-0.0454837 -124721,7317:114:4,-174.5,31.5,0,0,-0.0451594 -124722,7317:114:3,-174,31.5,0,0,-0.0435324 -124723,7317:113:4,-173.5,31.5,0,0,-0.0426193 -124724,7317:113:3,-173,31.5,0,0,-0.0434223 -124725,7317:112:4,-172.5,31.5,0,0,-0.0446306 -124726,7317:112:3,-172,31.5,0,0,-0.0449202 -124727,7317:111:4,-171.5,31.5,0,0,-0.0440272 -124728,7317:111:3,-171,31.5,0,0,-0.0433722 -124729,7317:110:4,-170.5,31.5,0,0,-0.0437037 -124730,7317:110:3,-170,31.5,0,0,-0.0444969 -124731,7316:219:4,-169.5,31.5,0,0,-0.0449616 -124732,7316:219:3,-169,31.5,0,0,-0.0450031 -124733,7316:218:4,-168.5,31.5,0,0,-0.0455048 -124734,7316:218:3,-168,31.5,0,0,-0.0464933 -124735,7316:217:4,-167.5,31.5,0,0,-0.0472413 -124736,7316:217:3,-167,31.5,0,0,-0.0475704 -124737,7316:216:4,-166.5,31.5,0,0,-0.0477137 -124738,7316:216:3,-166,31.5,0,0,-0.0476144 -124739,7316:215:4,-165.5,31.5,0,0,-0.0476036 -124740,7316:215:3,-165,31.5,0,0,-0.0480799 -124741,7316:114:4,-164.5,31.5,0,0,-0.0491269 -124742,7316:114:3,-164,31.5,0,0,-0.0503966 -124743,7316:113:4,-163.5,31.5,0,0,-0.0514845 -124744,7316:113:3,-163,31.5,0,0,-0.0522441 -124745,7316:112:4,-162.5,31.5,0,0,-0.0526954 -124746,7316:112:3,-162,31.5,0,0,-0.0529906 -124747,7316:111:4,-161.5,31.5,0,0,-0.0528797 -124748,7316:111:3,-161,31.5,0,0,-0.0524632 -124749,7316:110:4,-160.5,31.5,0,0,-0.0522074 -124750,7316:110:3,-160,31.5,0,0,-0.0524387 -124751,7315:219:4,-159.5,31.5,0,0,-0.0528426 -124752,7315:219:3,-159,31.5,0,0,-0.0528058 -124753,7315:218:4,-158.5,31.5,0,0,-0.0525609 -124754,7315:218:3,-158,31.5,0,0,-0.05272 -124755,7315:217:4,-157.5,31.5,0,0,-0.0536106 -124756,7315:217:3,-157,31.5,0,0,-0.0552077 -124757,7315:216:4,-156.5,31.5,0,0,-0.0563922 -124758,7315:216:3,-156,31.5,0,0,-0.0559988 -124759,7315:215:4,-155.5,31.5,0,0,-0.0547209 -124760,7315:215:3,-155,31.5,0,0,-0.0541124 -124761,7315:114:4,-154.5,31.5,0,0,-0.0546187 -124762,7315:114:3,-154,31.5,0,0,-0.0557899 -124763,7315:113:4,-153.5,31.5,0,0,-0.0571075 -124764,7315:113:3,-153,31.5,0,0,-0.0582942 -124765,7315:112:4,-152.5,31.5,0,0,-0.0598139 -124766,7315:112:3,-152,31.5,0,0,-0.0624947 -124767,7315:111:4,-151.5,31.5,0,0,-0.0660763 -124768,7315:111:3,-151,31.5,0,0,-0.0688768 -124769,7315:110:4,-150.5,31.5,0,0,-0.0699095 -124770,7315:110:3,-150,31.5,0,0,-0.0694652 -124771,7314:219:4,-149.5,31.5,0,0,-0.0693011 -124772,7314:219:3,-149,31.5,0,0,-0.0712787 -124773,7314:218:4,-148.5,31.5,0,0,-0.0742095 -124774,7314:218:3,-148,31.5,0,0,-0.0766465 -124775,7314:217:4,-147.5,31.5,0,0,-0.0787746 -124776,7314:217:3,-147,31.5,0,0,-0.0807724 -124777,7314:216:4,-146.5,31.5,0,0,-0.0822332 -124778,7314:216:3,-146,31.5,0,0,-0.0826671 -124779,7314:215:4,-145.5,31.5,0,0,-0.081101 -124780,7314:215:3,-145,31.5,0,0,-0.0795482 -124781,7314:114:4,-144.5,31.5,0,0,-0.0815481 -124782,7314:114:3,-144,31.5,0,0,-0.0869342 -124783,7314:113:4,-143.5,31.5,0,0,-0.0908253 -124784,7314:113:3,-143,31.5,0,0,-0.0899322 -124785,7314:112:4,-142.5,31.5,0,0,-0.087206 -124786,7314:112:3,-142,31.5,0,0,-0.0885363 -124787,7314:111:4,-141.5,31.5,0,0,-0.0936743 -124788,7314:111:3,-141,31.5,0,0,-0.100423 -124789,7314:110:4,-140.5,31.5,0,0,-0.102073 -124790,7314:110:3,-140,31.5,0,0,-0.0965743 -124791,7313:219:4,-139.5,31.5,0,0,-0.091949 -124792,7313:219:3,-139,31.5,0,0,-0.0929082 -124793,7313:218:4,-138.5,31.5,0,0,-0.0982508 -124794,7313:218:3,-138,31.5,0,0,-0.104745 -124795,7313:217:4,-137.5,31.5,0,0,-0.107757 -124796,7313:217:3,-137,31.5,0,0,-0.108445 -124797,7313:216:4,-136.5,31.5,0,0,-0.113456 -124798,7313:216:3,-136,31.5,0,0,-0.121426 -124799,7313:215:4,-135.5,31.5,0,0,-0.124353 -124800,7313:215:3,-135,31.5,0,0,-0.123062 -124801,7313:114:4,-134.5,31.5,0,0,-0.120199 -124802,7313:114:3,-134,31.5,0,0,-0.118253 -124803,7313:113:4,-133.5,31.5,0,0,-0.117845 -124804,7313:113:3,-133,31.5,0,0,-0.118898 -124805,7313:112:4,-132.5,31.5,0,0,-0.120318 -124806,7313:112:3,-132,31.5,0,0,-0.124198 -124807,7313:111:4,-131.5,31.5,0,0,-0.127453 -124808,7313:111:3,-131,31.5,0,0,-0.125751 -124809,7313:110:4,-130.5,31.5,0,0,-0.12291 -124810,7313:110:3,-130,31.5,0,0,-0.121185 -124811,7312:219:4,-129.5,31.5,0,0,-0.119104 -124812,7312:219:3,-129,31.5,0,0,-0.116428 -124813,7312:218:4,-128.5,31.5,0,0,-0.118224 -124814,7312:218:3,-128,31.5,0,0,-0.120021 -124815,7312:217:4,-127.5,31.5,0,0,-0.11663 -124816,7312:217:3,-127,31.5,0,0,-0.112538 -124817,7312:216:4,-126.5,31.5,0,0,-0.110702 -124818,7312:216:3,-126,31.5,0,0,-0.117642 -124819,7312:215:4,-125.5,31.5,0,0,-0.115513 -124820,7312:215:3,-125,31.5,0,0,-0.112124 -124821,7312:114:4,-124.5,31.5,0,0,-0.106995 -124822,7306:215:4,-65.5,31.5,0,0,-0.0572142 -124823,7306:215:3,-65,31.5,0,0,-0.051401 -124824,7306:114:4,-64.5,31.5,0,0,-0.0393501 -124825,7306:110:4,-60.5,31.5,0,0,-0.0364989 -124826,7306:110:3,-60,31.5,0,0,-0.0346834 -124827,7305:219:4,-59.5,31.5,0,0,-0.032071 -124828,7305:219:3,-59,31.5,0,0,-0.0309932 -124829,7305:218:4,-58.5,31.5,0,0,-0.0294659 -124830,7305:218:3,-58,31.5,0,0,-0.0275116 -124831,7305:217:4,-57.5,31.5,0,0,-0.0268942 -124832,7305:217:3,-57,31.5,0,0,-0.0254008 -124833,7305:216:4,-56.5,31.5,0,0,-0.0251147 -124834,7305:216:3,-56,31.5,0,0,-0.0240086 -124835,7305:215:4,-55.5,31.5,0,0,-0.0244914 -124836,7305:215:3,-55,31.5,0,0,-0.0217017 -124837,7305:114:4,-54.5,31.5,0,0,-0.0212462 -124838,7305:114:3,-54,31.5,0,0,-0.0202132 -124839,7305:113:4,-53.5,31.5,0,0,-0.0174934 -124840,7305:113:3,-53,31.5,0,0,-0.0198252 -124841,7305:112:4,-52.5,31.5,0,0,-0.0193139 -124842,7305:112:3,-52,31.5,0,0,-0.0233974 -124843,7305:111:4,-51.5,31.5,0,0,-0.0247982 -124844,7305:111:3,-51,31.5,0,0,-0.0256728 -124845,7305:110:4,-50.5,31.5,0,0,-0.0234397 -124846,7305:110:3,-50,31.5,0,0,-0.0220077 -124847,7304:219:4,-49.5,31.5,0,0,-0.0226583 -124848,7304:219:3,-49,31.5,0,0,-0.0229936 -124849,7304:218:4,-48.5,31.5,0,0,-0.0214049 -124850,7304:218:3,-48,31.5,0,0,-0.0167622 -124851,7304:217:4,-47.5,31.5,0,0,-0.0176039 -124852,7304:217:3,-47,31.5,0,0,-0.038528 -124853,7304:216:4,-46.5,31.5,0,0,-0.051139 -124854,7304:216:3,-46,31.5,0,0,-0.0448891 -124855,7304:215:4,-45.5,31.5,0,0,-0.059884 -124856,7304:215:3,-45,31.5,0,0,-0.0785869 -124857,7304:114:4,-44.5,31.5,0,0,-0.116601 -124858,7304:114:3,-44,31.5,0,0,-0.135915 -124859,7304:113:4,-43.5,31.5,0,0,-0.133848 -124860,7304:113:3,-43,31.5,0,0,-0.128057 -124861,7304:112:4,-42.5,31.5,0,0,-0.130313 -124862,7304:112:3,-42,31.5,0,0,-0.130216 -124863,7304:111:4,-41.5,31.5,0,0,-0.129988 -124864,7304:111:3,-41,31.5,0,0,-0.115542 -124865,7304:110:4,-40.5,31.5,0,0,-0.104847 -124866,7304:110:3,-40,31.5,0,0,-0.106136 -124867,7303:219:4,-39.5,31.5,0,0,-0.120527 -124868,7303:219:3,-39,31.5,0,0,-0.13605 -124869,7303:218:4,-38.5,31.5,0,0,-0.13605 -124870,7303:218:3,-38,31.5,0,0,-0.13605 -124871,7303:217:4,-37.5,31.5,0,0,-0.13605 -124872,7303:217:3,-37,31.5,0,0,-0.13605 -124873,7303:216:4,-36.5,31.5,0,0,-0.13605 -124874,7303:216:3,-36,31.5,0,0,-0.13605 -124875,7303:215:4,-35.5,31.5,0,0,-0.13605 -124876,7303:215:3,-35,31.5,0,0,-0.13605 -124877,7303:114:4,-34.5,31.5,0,0,-0.13605 -124878,7303:114:3,-34,31.5,0,0,-0.13605 -124879,7303:113:4,-33.5,31.5,0,0,-0.13605 -124880,7303:113:3,-33,31.5,0,0,-0.130901 -124881,7303:112:4,-32.5,31.5,0,0,-0.108339 -124882,7303:112:3,-32,31.5,0,0,-0.13605 -124883,7303:111:4,-31.5,31.5,0,0,-0.13605 -124884,7303:111:3,-31,31.5,0,0,-0.13605 -124885,7303:110:4,-30.5,31.5,0,0,-0.13605 -124886,7303:110:3,-30,31.5,0,0,-0.13605 -124887,7302:219:4,-29.5,31.5,0,0,-0.13605 -124888,7302:219:3,-29,31.5,0,0,-0.13605 -124889,7302:218:4,-28.5,31.5,0,0,-0.13605 -124890,7302:218:3,-28,31.5,0,0,-0.13605 -124891,7302:217:4,-27.5,31.5,0,0,-0.13605 -124892,7302:217:3,-27,31.5,0,0,-0.13605 -124893,7302:216:4,-26.5,31.5,0,0,-0.13605 -124894,7302:216:3,-26,31.5,0,0,-0.13605 -124895,7302:215:4,-25.5,31.5,0,0,-0.13605 -124896,7302:215:3,-25,31.5,0,0,-0.13605 -124897,7302:114:4,-24.5,31.5,0,0,-0.13605 -124898,7302:114:3,-24,31.5,0,0,-0.13605 -124899,7302:113:4,-23.5,31.5,0,0,-0.13605 -124900,7302:113:3,-23,31.5,0,0,-0.13605 -124901,7302:112:4,-22.5,31.5,0,0,-0.13605 -124902,7302:112:3,-22,31.5,0,0,-0.13605 -124903,7302:111:4,-21.5,31.5,0,0,-0.13605 -124904,7302:111:3,-21,31.5,0,0,-0.13605 -124905,7302:110:4,-20.5,31.5,0,0,-0.13605 -124906,7302:110:3,-20,31.5,0,0,-0.13605 -124907,7301:219:4,-19.5,31.5,0,0,-0.13605 -124908,7301:219:3,-19,31.5,0,0,-0.13605 -124909,7301:218:4,-18.5,31.5,0,0,-0.13605 -124910,7301:218:3,-18,31.5,0,0,-0.13605 -124911,7301:217:4,-17.5,31.5,0,0,-0.13605 -124912,7301:217:3,-17,31.5,0,0,-0.13605 -124913,7301:216:4,-16.5,31.5,0,0,-0.13605 -124914,7301:216:3,-16,31.5,0,0,-0.13605 -124915,7301:215:4,-15.5,31.5,0,0,-0.13605 -124916,7301:215:3,-15,31.5,0,0,-0.13605 -124917,7301:114:4,-14.5,31.5,0,0,-0.13605 -124918,7301:114:3,-14,31.5,0,0,-0.13605 -124919,7301:113:4,-13.5,31.5,0,0,-0.13605 -124920,7301:113:3,-13,31.5,0,0,-0.13605 -124921,7301:112:4,-12.5,31.5,0,0,-0.13605 -124922,7301:112:3,-12,31.5,0,0,-0.13605 -124923,7301:111:4,-11.5,31.5,0,0,-0.13605 -124924,7301:111:3,-11,31.5,0,0,-0.13605 -124925,7301:110:4,-10.5,31.5,0,0,-0.13605 -124926,7301:110:3,-10,31.5,0,0,-0.13605 -124927,7300:219:4,-9.5,31.5,0,0,-0.13605 -124928,7300:219:3,-9,31.5,0,0,-0.13605 -124929,7300:218:4,-8.5,31.5,0,0,-0.13605 -124930,7300:218:3,-8,31.5,0,0,-0.13605 -124931,7300:217:4,-7.5,31.5,0,0,-0.13605 -124932,7300:217:3,-7,31.5,0,0,-0.13605 -124933,7300:216:4,-6.5,31.5,0,0,-0.13605 -124934,7300:216:3,-6,31.5,0,0,-0.13605 -124935,7300:215:4,-5.5,31.5,0,0,-0.13605 -124936,7300:215:3,-5,31.5,0,0,-0.13605 -124937,7300:114:4,-4.5,31.5,0,0,-0.13605 -124938,7300:114:3,-4,31.5,0,0,-0.13605 -124939,7300:113:4,-3.5,31.5,0,0,-0.13605 -124940,7300:113:3,-3,31.5,0,0,-0.13605 -124941,7300:112:4,-2.5,31.5,0,0,-0.13605 -124942,7300:112:3,-2,31.5,0,0,-0.134386 -124943,1301:111:4,11.5,31.5,0,0,-0.13605 -124944,1301:112:3,12,31.5,0,0,-0.13605 -124945,1301:112:4,12.5,31.5,0,0,-0.13605 -124946,1301:113:3,13,31.5,0,0,-0.13605 -124947,1301:113:4,13.5,31.5,0,0,-0.13605 -124948,1302:218:3,28,31.5,0,0,-0.13605 -124949,1302:218:4,28.5,31.5,0,0,-0.13605 -124950,1302:219:3,29,31.5,0,0,-0.13605 -124951,1302:219:4,29.5,31.5,0,0,-0.13605 -124952,1303:110:3,30,31.5,0,0,-0.13605 -124953,1303:110:4,30.5,31.5,0,0,-0.13605 -124954,1303:111:3,31,31.5,0,0,-0.13605 -124955,1303:111:4,31.5,31.5,0,0,-0.13605 -124956,1303:112:3,32,31.5,0,0,-0.13605 -124957,1303:112:4,32.5,31.5,0,0,-0.13605 -124958,1303:113:3,33,31.5,0,0,-0.13605 -124959,1303:113:4,33.5,31.5,0,0,-0.13605 -124960,1303:114:3,34,31.5,0,0,-0.13605 -124961,1303:114:4,34.5,31.5,0,0,-0.13605 -124962,1303:215:3,35,31.5,0,0,-0.13605 -124963,1303:215:4,35.5,31.5,0,0,-0.13605 -124964,1303:216:3,36,31.5,0,0,-0.13605 -124965,1303:216:4,36.5,31.5,0,0,-0.13605 -124966,1303:217:3,37,31.5,0,0,-0.13605 -124967,1303:217:4,37.5,31.5,0,0,-0.13605 -124968,1303:218:3,38,31.5,0,0,-0.13605 -124969,1303:218:4,38.5,31.5,0,0,-0.13605 -124970,1303:219:3,39,31.5,0,0,-0.13605 -124971,1303:219:4,39.5,31.5,0,0,-0.13605 -124972,1304:110:3,40,31.5,0,0,-0.13605 -124973,1304:110:4,40.5,31.5,0,0,-0.13605 -124974,1313:218:3,138,31.5,0,0,-0.0338301 -124975,1313:218:4,138.5,31.5,0,0,-0.0344622 -124976,1313:219:3,139,31.5,0,0,-0.0406366 -124977,1313:219:4,139.5,31.5,0,0,-0.0440883 -124978,1314:110:3,140,31.5,0,0,-0.046172 -124979,1314:110:4,140.5,31.5,0,0,-0.0472633 -124980,1314:111:3,141,31.5,0,0,-0.0470452 -124981,1314:111:4,141.5,31.5,0,0,-0.0525363 -124982,1314:112:3,142,31.5,0,0,-0.055764 -124983,1314:112:4,142.5,31.5,0,0,-0.0483255 -124984,1314:113:4,143.5,31.5,0,0,-0.0170854 -124985,1314:114:3,144,31.5,0,0,-0.0157762 -124986,1314:114:4,144.5,31.5,0,0,-0.0140053 -124987,1314:215:3,145,31.5,0,0,-0.0134279 -124988,1314:215:4,145.5,31.5,0,0,-0.0171392 -124989,1314:216:3,146,31.5,0,0,-0.0248826 -124990,1314:216:4,146.5,31.5,0,0,-0.0260007 -124991,1314:217:3,147,31.5,0,0,-0.0264526 -124992,1314:217:4,147.5,31.5,0,0,-0.0262912 -124993,1314:218:3,148,31.5,0,0,-0.0246862 -124994,1314:218:4,148.5,31.5,0,0,-0.0241174 -124995,1314:219:3,149,31.5,0,0,-0.0252173 -124996,1314:219:4,149.5,31.5,0,0,-0.0263867 -124997,1315:110:3,150,31.5,0,0,-0.0271888 -124998,1315:111:3,151,31.5,0,0,-0.0245636 -124999,1315:111:4,151.5,31.5,0,0,-0.0229624 -125000,1315:112:3,152,31.5,0,0,-0.0210079 -125001,1315:112:4,152.5,31.5,0,0,-0.0227507 -125002,1315:113:3,153,31.5,0,0,-0.0242597 -125003,1315:113:4,153.5,31.5,0,0,-0.0272444 -125004,1315:114:3,154,31.5,0,0,-0.0295195 -125005,1315:114:4,154.5,31.5,0,0,-0.0301784 -125006,1315:215:3,155,31.5,0,0,-0.0269798 -125007,1315:215:4,155.5,31.5,0,0,-0.0222626 -125008,1315:216:3,156,31.5,0,0,-0.0238894 -125009,1315:216:4,156.5,31.5,0,0,-0.0248883 -125010,1315:217:3,157,31.5,0,0,-0.0257544 -125011,1315:217:4,157.5,31.5,0,0,-0.0243092 -125012,1315:218:3,158,31.5,0,0,-0.0248207 -125013,1315:218:4,158.5,31.5,0,0,-0.0261959 -125014,1315:219:3,159,31.5,0,0,-0.0259653 -125015,1315:219:4,159.5,31.5,0,0,-0.0252688 -125016,1316:110:3,160,31.5,0,0,-0.0249446 -125017,1316:110:4,160.5,31.5,0,0,-0.0259948 -125018,1316:111:3,161,31.5,0,0,-0.0272939 -125019,1316:111:4,161.5,31.5,0,0,-0.0300481 -125020,1316:112:3,162,31.5,0,0,-0.042083 -125021,1316:112:4,162.5,31.5,0,0,-0.0531262 -125022,1316:113:3,163,31.5,0,0,-0.0530892 -125023,1316:113:4,163.5,31.5,0,0,-0.0439158 -125024,1316:114:3,164,31.5,0,0,-0.034954 -125025,1316:114:4,164.5,31.5,0,0,-0.0322617 -125026,1316:215:3,165,31.5,0,0,-0.0360422 -125027,1316:215:4,165.5,31.5,0,0,-0.0441595 -125028,1316:216:3,166,31.5,0,0,-0.0480687 -125029,1316:216:4,166.5,31.5,0,0,-0.0456626 -125030,1316:217:3,167,31.5,0,0,-0.0376975 -125031,1316:217:4,167.5,31.5,0,0,-0.0305516 -125032,1316:218:3,168,31.5,0,0,-0.029199 -125033,1316:218:4,168.5,31.5,0,0,-0.0312057 -125034,1316:219:3,169,31.5,0,0,-0.0359022 -125035,1316:219:4,169.5,31.5,0,0,-0.0387672 -125036,1317:110:3,170,31.5,0,0,-0.0380447 -125037,1317:110:4,170.5,31.5,0,0,-0.0369362 -125038,1317:111:3,171,31.5,0,0,-0.036759 -125039,1317:111:4,171.5,31.5,0,0,-0.0376456 -125040,1317:112:3,172,31.5,0,0,-0.0377321 -125041,1317:112:4,172.5,31.5,0,0,-0.0362989 -125042,1317:113:3,173,31.5,0,0,-0.0346754 -125043,1317:113:4,173.5,31.5,0,0,-0.0342972 -125044,1317:114:3,174,31.5,0,0,-0.0354939 -125045,1317:114:4,174.5,31.5,0,0,-0.0367844 -125046,1317:215:3,175,31.5,0,0,-0.0369194 -125047,1317:215:4,175.5,31.5,0,0,-0.0362574 -125048,1317:216:3,176,31.5,0,0,-0.0359105 -125049,1317:216:4,176.5,31.5,0,0,-0.0363822 -125050,1317:217:3,177,31.5,0,0,-0.0368942 -125051,1317:217:4,177.5,31.5,0,0,-0.0368856 -125052,1317:218:3,178,31.5,0,0,-0.0372678 -125053,1317:218:4,178.5,31.5,0,0,-0.0380447 -125054,1317:219:3,179,31.5,0,0,-0.0386517 -125055,1317:219:4,179.5,31.5,0,0,-0.0385102 -125056,1318:110:3,180,31.5,0,0,-0.0380186 -125057,7318:120:1,-180,32,0,0,-0.0357546 -125058,7317:229:2,-179.5,32,0,0,-0.0362078 -125059,7317:229:1,-179,32,0,0,-0.0375509 -125060,7317:228:2,-178.5,32,0,0,-0.0390441 -125061,7317:228:1,-178,32,0,0,-0.0391789 -125062,7317:227:2,-177.5,32,0,0,-0.0374476 -125063,7317:227:1,-177,32,0,0,-0.0357301 -125064,7317:226:2,-176.5,32,0,0,-0.0355021 -125065,7317:226:1,-176,32,0,0,-0.0368856 -125066,7317:225:2,-175.5,32,0,0,-0.0391789 -125067,7317:225:1,-175,32,0,0,-0.0411351 -125068,7317:124:2,-174.5,32,0,0,-0.0416685 -125069,7317:124:1,-174,32,0,0,-0.0410214 -125070,7317:123:2,-173.5,32,0,0,-0.0405899 -125071,7317:123:1,-173,32,0,0,-0.0414292 -125072,7317:122:2,-172.5,32,0,0,-0.0421312 -125073,7317:122:1,-172,32,0,0,-0.0415726 -125074,7317:121:2,-171.5,32,0,0,-0.0406926 -125075,7317:121:1,-171,32,0,0,-0.0405153 -125076,7317:120:2,-170.5,32,0,0,-0.0414199 -125077,7317:120:1,-170,32,0,0,-0.0423649 -125078,7316:229:2,-169.5,32,0,0,-0.0424039 -125079,7316:229:1,-169,32,0,0,-0.0420635 -125080,7316:228:2,-168.5,32,0,0,-0.0424528 -125081,7316:228:1,-168,32,0,0,-0.0436431 -125082,7316:227:2,-167.5,32,0,0,-0.0446205 -125083,7316:227:1,-167,32,0,0,-0.0448061 -125084,7316:226:2,-166.5,32,0,0,-0.0445483 -125085,7316:226:1,-166,32,0,0,-0.0445072 -125086,7316:225:2,-165.5,32,0,0,-0.0446205 -125087,7316:225:1,-165,32,0,0,-0.0451594 -125088,7316:124:2,-164.5,32,0,0,-0.0461186 -125089,7316:124:1,-164,32,0,0,-0.0471976 -125090,7316:123:2,-163.5,32,0,0,-0.048169 -125091,7316:123:1,-163,32,0,0,-0.0487752 -125092,7316:122:2,-162.5,32,0,0,-0.0490589 -125093,7316:122:1,-162,32,0,0,-0.0493209 -125094,7316:121:2,-161.5,32,0,0,-0.0494698 -125095,7316:121:1,-161,32,0,0,-0.0493781 -125096,7316:120:2,-160.5,32,0,0,-0.049036 -125097,7316:120:1,-160,32,0,0,-0.0490474 -125098,7315:229:2,-159.5,32,0,0,-0.0494698 -125099,7315:229:1,-159,32,0,0,-0.0499539 -125100,7315:228:2,-158.5,32,0,0,-0.0500934 -125101,7315:228:1,-158,32,0,0,-0.0499773 -125102,7315:227:2,-157.5,32,0,0,-0.0499426 -125103,7315:227:1,-157,32,0,0,-0.0500119 -125104,7315:226:2,-156.5,32,0,0,-0.0500583 -125105,7315:226:1,-156,32,0,0,-0.0499656 -125106,7315:225:2,-155.5,32,0,0,-0.0502797 -125107,7315:225:1,-155,32,0,0,-0.051234 -125108,7315:124:2,-154.5,32,0,0,-0.0524997 -125109,7315:124:1,-154,32,0,0,-0.053798 -125110,7315:123:2,-153.5,32,0,0,-0.0549764 -125111,7315:123:1,-153,32,0,0,-0.055894 -125112,7315:122:2,-152.5,32,0,0,-0.0569611 -125113,7315:122:1,-152,32,0,0,-0.0588557 -125114,7315:121:2,-151.5,32,0,0,-0.061693 -125115,7315:121:1,-151,32,0,0,-0.0642817 -125116,7315:120:2,-150.5,32,0,0,-0.0655495 -125117,7315:120:1,-150,32,0,0,-0.0655801 -125118,7314:229:2,-149.5,32,0,0,-0.065673 -125119,7314:229:1,-149,32,0,0,-0.0673973 -125120,7314:228:2,-148.5,32,0,0,-0.069695 -125121,7314:228:1,-148,32,0,0,-0.0714478 -125122,7314:227:2,-147.5,32,0,0,-0.0730222 -125123,7314:227:1,-147,32,0,0,-0.0749178 -125124,7314:226:2,-146.5,32,0,0,-0.0767561 -125125,7314:226:1,-146,32,0,0,-0.0775085 -125126,7314:225:2,-145.5,32,0,0,-0.0762464 -125127,7314:225:1,-145,32,0,0,-0.0744033 -125128,7314:124:2,-144.5,32,0,0,-0.0757046 -125129,7314:124:1,-144,32,0,0,-0.081704 -125130,7314:123:2,-143.5,32,0,0,-0.0869342 -125131,7314:123:1,-143,32,0,0,-0.086414 -125132,7314:122:2,-142.5,32,0,0,-0.0825284 -125133,7314:122:1,-142,32,0,0,-0.0816064 -125134,7314:121:2,-141.5,32,0,0,-0.0863932 -125135,7314:121:1,-141,32,0,0,-0.0936971 -125136,7314:120:2,-140.5,32,0,0,-0.0963169 -125137,7314:120:1,-140,32,0,0,-0.0910882 -125138,7313:229:2,-139.5,32,0,0,-0.0867255 -125139,7313:229:1,-139,32,0,0,-0.0881118 -125140,7313:228:2,-138.5,32,0,0,-0.0925277 -125141,7313:228:1,-138,32,0,0,-0.0968317 -125142,7313:227:2,-137.5,32,0,0,-0.0978465 -125143,7313:227:1,-137,32,0,0,-0.0983229 -125144,7313:226:2,-136.5,32,0,0,-0.103073 -125145,7313:226:1,-136,32,0,0,-0.112455 -125146,7313:225:2,-135.5,32,0,0,-0.118898 -125147,7313:225:1,-135,32,0,0,-0.119016 -125148,7313:124:2,-134.5,32,0,0,-0.115286 -125149,7313:124:1,-134,32,0,0,-0.111795 -125150,7313:123:2,-133.5,32,0,0,-0.111301 -125151,7313:123:1,-133,32,0,0,-0.113847 -125152,7313:122:2,-132.5,32,0,0,-0.116428 -125153,7313:122:1,-132,32,0,0,-0.120021 -125154,7313:121:2,-131.5,32,0,0,-0.123337 -125155,7313:121:1,-131,32,0,0,-0.122423 -125156,7313:120:2,-130.5,32,0,0,-0.119991 -125157,7313:120:1,-130,32,0,0,-0.118604 -125158,7312:229:2,-129.5,32,0,0,-0.116975 -125159,7312:229:1,-129,32,0,0,-0.113149 -125160,7312:228:2,-128.5,32,0,0,-0.111411 -125161,7312:228:1,-128,32,0,0,-0.11424 -125162,7312:227:2,-127.5,32,0,0,-0.113847 -125163,7312:227:1,-127,32,0,0,-0.106682 -125164,7312:226:2,-126.5,32,0,0,-0.104082 -125165,7312:226:1,-126,32,0,0,-0.109998 -125166,7312:225:2,-125.5,32,0,0,-0.113791 -125167,7312:225:1,-125,32,0,0,-0.109594 -125168,7312:124:2,-124.5,32,0,0,-0.104643 -125169,7306:122:2,-62.5,32,0,0,-0.0220973 -125170,7306:122:1,-62,32,0,0,-0.0223533 -125171,7306:121:2,-61.5,32,0,0,-0.0260774 -125172,7306:121:1,-61,32,0,0,-0.0270105 -125173,7305:229:1,-59,32,0,0,-0.0287316 -125174,7305:228:2,-58.5,32,0,0,-0.0271087 -125175,7305:228:1,-58,32,0,0,-0.0261662 -125176,7305:227:2,-57.5,32,0,0,-0.0257893 -125177,7305:227:1,-57,32,0,0,-0.025206 -125178,7305:226:2,-56.5,32,0,0,-0.0250126 -125179,7305:226:1,-56,32,0,0,-0.0244748 -125180,7305:225:2,-55.5,32,0,0,-0.0224139 -125181,7305:225:1,-55,32,0,0,-0.0211077 -125182,7305:124:2,-54.5,32,0,0,-0.0199597 -125183,7305:124:1,-54,32,0,0,-0.0188499 -125184,7305:123:2,-53.5,32,0,0,-0.016815 -125185,7305:123:1,-53,32,0,0,-0.0160404 -125186,7305:122:2,-52.5,32,0,0,-0.0154573 -125187,7305:122:1,-52,32,0,0,-0.0170509 -125188,7305:121:2,-51.5,32,0,0,-0.020268 -125189,7305:121:1,-51,32,0,0,-0.0208803 -125190,7305:120:2,-50.5,32,0,0,-0.0202452 -125191,7305:120:1,-50,32,0,0,-0.0185094 -125192,7304:229:2,-49.5,32,0,0,-0.0203091 -125193,7304:229:1,-49,32,0,0,-0.0203091 -125194,7304:228:2,-48.5,32,0,0,-0.0192401 -125195,7304:228:1,-48,32,0,0,-0.0171508 -125196,7304:227:2,-47.5,32,0,0,-0.0160981 -125197,7304:227:1,-47,32,0,0,-0.018999 -125198,7304:226:2,-46.5,32,0,0,-0.0337531 -125199,7304:226:1,-46,32,0,0,-0.0385722 -125200,7304:225:2,-45.5,32,0,0,-0.0400522 -125201,7304:225:1,-45,32,0,0,-0.0385987 -125202,7304:124:2,-44.5,32,0,0,-0.0348184 -125203,7304:124:1,-44,32,0,0,-0.0381759 -125204,7304:123:2,-43.5,32,0,0,-0.0480354 -125205,7304:123:1,-43,32,0,0,-0.06518 -125206,7304:122:2,-42.5,32,0,0,-0.0930878 -125207,7304:122:1,-42,32,0,0,-0.118165 -125208,7304:121:2,-41.5,32,0,0,-0.124879 -125209,7304:121:1,-41,32,0,0,-0.114776 -125210,7304:120:2,-40.5,32,0,0,-0.0945386 -125211,7304:120:1,-40,32,0,0,-0.104235 -125212,7303:229:2,-39.5,32,0,0,-0.1154 -125213,7303:229:1,-39,32,0,0,-0.13605 -125214,7303:228:2,-38.5,32,0,0,-0.13605 -125215,7303:228:1,-38,32,0,0,-0.13605 -125216,7303:227:2,-37.5,32,0,0,-0.13605 -125217,7303:227:1,-37,32,0,0,-0.13605 -125218,7303:226:2,-36.5,32,0,0,-0.13605 -125219,7303:226:1,-36,32,0,0,-0.13605 -125220,7303:225:2,-35.5,32,0,0,-0.13605 -125221,7303:225:1,-35,32,0,0,-0.13605 -125222,7303:124:2,-34.5,32,0,0,-0.13605 -125223,7303:124:1,-34,32,0,0,-0.13605 -125224,7303:123:2,-33.5,32,0,0,-0.130379 -125225,7303:123:1,-33,32,0,0,-0.125408 -125226,7303:122:2,-32.5,32,0,0,-0.111137 -125227,7303:122:1,-32,32,0,0,-0.116946 -125228,7303:121:2,-31.5,32,0,0,-0.13605 -125229,7303:121:1,-31,32,0,0,-0.13605 -125230,7303:120:2,-30.5,32,0,0,-0.13605 -125231,7303:120:1,-30,32,0,0,-0.13605 -125232,7302:229:2,-29.5,32,0,0,-0.13605 -125233,7302:229:1,-29,32,0,0,-0.13605 -125234,7302:228:2,-28.5,32,0,0,-0.13605 -125235,7302:228:1,-28,32,0,0,-0.13605 -125236,7302:227:2,-27.5,32,0,0,-0.13605 -125237,7302:227:1,-27,32,0,0,-0.13605 -125238,7302:226:2,-26.5,32,0,0,-0.13605 -125239,7302:226:1,-26,32,0,0,-0.13605 -125240,7302:225:2,-25.5,32,0,0,-0.13605 -125241,7302:225:1,-25,32,0,0,-0.13605 -125242,7302:124:2,-24.5,32,0,0,-0.13605 -125243,7302:124:1,-24,32,0,0,-0.13605 -125244,7302:123:2,-23.5,32,0,0,-0.13605 -125245,7302:123:1,-23,32,0,0,-0.13605 -125246,7302:122:2,-22.5,32,0,0,-0.13605 -125247,7302:122:1,-22,32,0,0,-0.13605 -125248,7302:121:2,-21.5,32,0,0,-0.13605 -125249,7302:121:1,-21,32,0,0,-0.13605 -125250,7302:120:2,-20.5,32,0,0,-0.13605 -125251,7302:120:1,-20,32,0,0,-0.13605 -125252,7301:229:2,-19.5,32,0,0,-0.13605 -125253,7301:229:1,-19,32,0,0,-0.13605 -125254,7301:228:2,-18.5,32,0,0,-0.13605 -125255,7301:228:1,-18,32,0,0,-0.13605 -125256,7301:227:2,-17.5,32,0,0,-0.13605 -125257,7301:227:1,-17,32,0,0,-0.13605 -125258,7301:226:2,-16.5,32,0,0,-0.13605 -125259,7301:226:1,-16,32,0,0,-0.13605 -125260,7301:225:2,-15.5,32,0,0,-0.13605 -125261,7301:225:1,-15,32,0,0,-0.13605 -125262,7301:124:2,-14.5,32,0,0,-0.13605 -125263,7301:124:1,-14,32,0,0,-0.13605 -125264,7301:123:2,-13.5,32,0,0,-0.13605 -125265,7301:123:1,-13,32,0,0,-0.13605 -125266,7301:122:2,-12.5,32,0,0,-0.13605 -125267,7301:122:1,-12,32,0,0,-0.13605 -125268,7301:121:2,-11.5,32,0,0,-0.13605 -125269,7301:121:1,-11,32,0,0,-0.13605 -125270,7301:120:2,-10.5,32,0,0,-0.13605 -125271,7301:120:1,-10,32,0,0,-0.13605 -125272,7300:229:2,-9.5,32,0,0,-0.13605 -125273,7300:229:1,-9,32,0,0,-0.13605 -125274,7300:228:2,-8.5,32,0,0,-0.13605 -125275,7300:228:1,-8,32,0,0,-0.13605 -125276,7300:227:2,-7.5,32,0,0,-0.13605 -125277,7300:227:1,-7,32,0,0,-0.13605 -125278,7300:226:2,-6.5,32,0,0,-0.13605 -125279,7300:226:1,-6,32,0,0,-0.13605 -125280,7300:225:2,-5.5,32,0,0,-0.13605 -125281,7300:225:1,-5,32,0,0,-0.13605 -125282,7300:124:2,-4.5,32,0,0,-0.13605 -125283,7300:124:1,-4,32,0,0,-0.13605 -125284,7300:123:2,-3.5,32,0,0,-0.13605 -125285,7300:123:1,-3,32,0,0,-0.13605 -125286,7300:122:2,-2.5,32,0,0,-0.13605 -125287,7300:122:1,-2,32,0,0,-0.107389 -125288,1301:121:2,11.5,32,0,0,-0.13605 -125289,1301:122:1,12,32,0,0,-0.13605 -125290,1301:122:2,12.5,32,0,0,-0.13605 -125291,1301:123:2,13.5,32,0,0,-0.13605 -125292,1302:228:1,28,32,0,0,-0.13605 -125293,1302:228:2,28.5,32,0,0,-0.13605 -125294,1302:229:1,29,32,0,0,-0.13605 -125295,1302:229:2,29.5,32,0,0,-0.13605 -125296,1303:120:1,30,32,0,0,-0.13605 -125297,1303:120:2,30.5,32,0,0,-0.13605 -125298,1303:121:1,31,32,0,0,-0.13605 -125299,1303:121:2,31.5,32,0,0,-0.13605 -125300,1303:122:1,32,32,0,0,-0.13605 -125301,1303:122:2,32.5,32,0,0,-0.13605 -125302,1303:123:1,33,32,0,0,-0.13605 -125303,1303:123:2,33.5,32,0,0,-0.13605 -125304,1303:124:1,34,32,0,0,-0.13605 -125305,1303:124:2,34.5,32,0,0,-0.135972 -125306,1303:225:1,35,32,0,0,-0.13594 -125307,1303:225:2,35.5,32,0,0,-0.13605 -125308,1303:226:1,36,32,0,0,-0.13605 -125309,1303:226:2,36.5,32,0,0,-0.13605 -125310,1303:227:1,37,32,0,0,-0.13605 -125311,1303:227:2,37.5,32,0,0,-0.13605 -125312,1303:228:1,38,32,0,0,-0.13605 -125313,1303:228:2,38.5,32,0,0,-0.13605 -125314,1303:229:1,39,32,0,0,-0.13605 -125315,1313:228:2,138.5,32,0,0,-0.0246975 -125316,1313:229:1,139,32,0,0,-0.0316642 -125317,1313:229:2,139.5,32,0,0,-0.0389458 -125318,1314:120:1,140,32,0,0,-0.0396585 -125319,1314:120:2,140.5,32,0,0,-0.0412962 -125320,1314:121:1,141,32,0,0,-0.0435125 -125321,1314:121:2,141.5,32,0,0,-0.0475925 -125322,1314:122:1,142,32,0,0,-0.0497 -125323,1314:122:2,142.5,32,0,0,-0.0462789 -125324,1314:123:1,143,32,0,0,-0.0176237 -125325,1314:123:2,143.5,32,0,0,-0.017201 -125326,1314:124:1,144,32,0,0,-0.0143131 -125327,1314:124:2,144.5,32,0,0,-0.0136981 -125328,1314:225:1,145,32,0,0,-0.0128687 -125329,1314:225:2,145.5,32,0,0,-0.0156773 -125330,1314:226:1,146,32,0,0,-0.0222174 -125331,1314:226:2,146.5,32,0,0,-0.023873 -125332,1314:227:1,147,32,0,0,-0.0246249 -125333,1314:227:2,147.5,32,0,0,-0.0263209 -125334,1314:228:1,148,32,0,0,-0.0265066 -125335,1314:228:2,148.5,32,0,0,-0.0260243 -125336,1314:229:1,149,32,0,0,-0.0260302 -125337,1314:229:2,149.5,32,0,0,-0.0257252 -125338,1315:120:1,150,32,0,0,-0.0259712 -125339,1315:120:2,150.5,32,0,0,-0.0272382 -125340,1315:121:1,151,32,0,0,-0.0276682 -125341,1315:121:2,151.5,32,0,0,-0.0255393 -125342,1315:122:1,152,32,0,0,-0.0229314 -125343,1315:122:2,152.5,32,0,0,-0.0201359 -125344,1315:123:1,153,32,0,0,-0.0201269 -125345,1315:123:2,153.5,32,0,0,-0.0209464 -125346,1315:124:1,154,32,0,0,-0.023334 -125347,1315:124:2,154.5,32,0,0,-0.0263687 -125348,1315:225:1,155,32,0,0,-0.0274492 -125349,1315:225:2,155.5,32,0,0,-0.0236956 -125350,1315:226:1,156,32,0,0,-0.0214872 -125351,1315:226:2,156.5,32,0,0,-0.0212845 -125352,1315:227:1,157,32,0,0,-0.0217017 -125353,1315:227:2,157.5,32,0,0,-0.0231186 -125354,1315:228:1,158,32,0,0,-0.0254066 -125355,1315:228:2,158.5,32,0,0,-0.0262792 -125356,1315:229:1,159,32,0,0,-0.0260479 -125357,1315:229:2,159.5,32,0,0,-0.0254181 -125358,1316:120:1,160,32,0,0,-0.0242378 -125359,1316:120:2,160.5,32,0,0,-0.0231554 -125360,1316:121:1,161,32,0,0,-0.0227867 -125361,1316:121:2,161.5,32,0,0,-0.0238569 -125362,1316:122:1,162,32,0,0,-0.026597 -125363,1316:122:2,162.5,32,0,0,-0.0299321 -125364,1316:123:1,163,32,0,0,-0.0315705 -125365,1316:123:2,163.5,32,0,0,-0.029973 -125366,1316:124:1,164,32,0,0,-0.0294726 -125367,1316:124:2,164.5,32,0,0,-0.0305864 -125368,1316:225:1,165,32,0,0,-0.0324387 -125369,1316:225:2,165.5,32,0,0,-0.0378967 -125370,1316:226:1,166,32,0,0,-0.0405711 -125371,1316:226:2,166.5,32,0,0,-0.0373706 -125372,1316:227:1,167,32,0,0,-0.028478 -125373,1316:227:2,167.5,32,0,0,-0.0259595 -125374,1316:228:1,168,32,0,0,-0.0264407 -125375,1316:228:2,168.5,32,0,0,-0.0275992 -125376,1316:229:1,169,32,0,0,-0.0302059 -125377,1316:229:2,169.5,32,0,0,-0.032931 -125378,1317:120:1,170,32,0,0,-0.0335762 -125379,1317:120:2,170.5,32,0,0,-0.0332254 -125380,1317:121:1,171,32,0,0,-0.0324536 -125381,1317:121:2,171.5,32,0,0,-0.0316857 -125382,1317:122:1,172,32,0,0,-0.0309437 -125383,1317:122:2,172.5,32,0,0,-0.0302539 -125384,1317:123:1,173,32,0,0,-0.0301166 -125385,1317:123:2,173.5,32,0,0,-0.0306911 -125386,1317:124:1,174,32,0,0,-0.0319178 -125387,1317:124:2,174.5,32,0,0,-0.0329911 -125388,1317:225:1,175,32,0,0,-0.0330816 -125389,1317:225:2,175.5,32,0,0,-0.0324832 -125390,1317:226:1,176,32,0,0,-0.0322763 -125391,1317:226:2,176.5,32,0,0,-0.0329009 -125392,1317:227:1,177,32,0,0,-0.033699 -125393,1317:227:2,177.5,32,0,0,-0.0342972 -125394,1317:228:1,178,32,0,0,-0.0349221 -125395,1317:228:2,178.5,32,0,0,-0.0353641 -125396,1317:229:1,179,32,0,0,-0.0357057 -125397,1317:229:2,179.5,32,0,0,-0.0358366 -125398,1318:120:1,180,32,0,0,-0.0357546 -125399,7318:120:3,-180,32.5,0,0,-0.0327437 -125400,7317:229:4,-179.5,32.5,0,0,-0.0332938 -125401,7317:229:3,-179,32.5,0,0,-0.0343442 -125402,7317:228:4,-178.5,32.5,0,0,-0.0357137 -125403,7317:228:3,-178,32.5,0,0,-0.0361827 -125404,7317:227:4,-177.5,32.5,0,0,-0.0351625 -125405,7317:227:3,-177,32.5,0,0,-0.0338457 -125406,7317:226:4,-176.5,32.5,0,0,-0.0334615 -125407,7317:226:3,-176,32.5,0,0,-0.0342894 -125408,7317:225:4,-175.5,32.5,0,0,-0.0356484 -125409,7317:225:3,-175,32.5,0,0,-0.0366077 -125410,7317:124:4,-174.5,32.5,0,0,-0.0369533 -125411,7317:124:3,-174,32.5,0,0,-0.0372423 -125412,7317:123:4,-173.5,32.5,0,0,-0.0378273 -125413,7317:123:3,-173,32.5,0,0,-0.0386962 -125414,7317:122:4,-172.5,32.5,0,0,-0.0392328 -125415,7317:122:3,-172,32.5,0,0,-0.0389368 -125416,7317:121:4,-171.5,32.5,0,0,-0.0382988 -125417,7317:121:3,-171,32.5,0,0,-0.037923 -125418,7317:120:4,-170.5,32.5,0,0,-0.0381671 -125419,7317:120:3,-170,32.5,0,0,-0.0386341 -125420,7316:229:4,-169.5,32.5,0,0,-0.0387317 -125421,7316:229:3,-169,32.5,0,0,-0.038714 -125422,7316:228:4,-168.5,32.5,0,0,-0.0392961 -125423,7316:228:3,-168,32.5,0,0,-0.0407677 -125424,7316:227:4,-167.5,32.5,0,0,-0.0420635 -125425,7316:227:3,-167,32.5,0,0,-0.0421605 -125426,7316:226:4,-166.5,32.5,0,0,-0.0419667 -125427,7316:226:3,-166,32.5,0,0,-0.0421605 -125428,7316:225:4,-165.5,32.5,0,0,-0.0422964 -125429,7316:225:3,-165,32.5,0,0,-0.0425505 -125430,7316:124:4,-164.5,32.5,0,0,-0.0429841 -125431,7316:124:3,-164,32.5,0,0,-0.0435827 -125432,7316:123:4,-163.5,32.5,0,0,-0.0444049 -125433,7316:123:3,-163,32.5,0,0,-0.0451696 -125434,7316:122:4,-162.5,32.5,0,0,-0.0459485 -125435,7316:122:3,-162,32.5,0,0,-0.046709 -125436,7316:121:4,-161.5,32.5,0,0,-0.047143 -125437,7316:121:3,-161,32.5,0,0,-0.0468388 -125438,7316:120:4,-160.5,32.5,0,0,-0.0460016 -125439,7316:120:3,-160,32.5,0,0,-0.045853 -125440,7315:229:4,-159.5,32.5,0,0,-0.0464828 -125441,7315:229:3,-159,32.5,0,0,-0.0475156 -125442,7315:228:4,-158.5,32.5,0,0,-0.0478575 -125443,7315:228:3,-158,32.5,0,0,-0.0469689 -125444,7315:227:4,-157.5,32.5,0,0,-0.0460124 -125445,7315:227:3,-157,32.5,0,0,-0.0459806 -125446,7315:226:4,-156.5,32.5,0,0,-0.0467955 -125447,7315:226:3,-156,32.5,0,0,-0.0480687 -125448,7315:225:4,-155.5,32.5,0,0,-0.0495504 -125449,7315:225:3,-155,32.5,0,0,-0.0509494 -125450,7315:124:4,-154.5,32.5,0,0,-0.0521955 -125451,7315:124:3,-154,32.5,0,0,-0.0531756 -125452,7315:123:4,-153.5,32.5,0,0,-0.0539611 -125453,7315:123:3,-153,32.5,0,0,-0.0545554 -125454,7315:122:4,-152.5,32.5,0,0,-0.0553879 -125455,7315:122:3,-152,32.5,0,0,-0.0568415 -125456,7315:121:4,-151.5,32.5,0,0,-0.0588695 -125457,7315:121:3,-151,32.5,0,0,-0.0607742 -125458,7315:120:4,-150.5,32.5,0,0,-0.0618673 -125459,7315:120:3,-150,32.5,0,0,-0.0622602 -125460,7314:229:4,-149.5,32.5,0,0,-0.0629514 -125461,7314:229:3,-149,32.5,0,0,-0.0647824 -125462,7314:228:4,-148.5,32.5,0,0,-0.0664666 -125463,7314:228:3,-148,32.5,0,0,-0.0676203 -125464,7314:227:4,-147.5,32.5,0,0,-0.0689582 -125465,7314:227:3,-147,32.5,0,0,-0.0705404 -125466,7314:226:4,-146.5,32.5,0,0,-0.0717188 -125467,7314:226:3,-146,32.5,0,0,-0.071821 -125468,7314:225:4,-145.5,32.5,0,0,-0.0708415 -125469,7314:225:3,-145,32.5,0,0,-0.0699261 -125470,7314:124:4,-144.5,32.5,0,0,-0.0712282 -125471,7314:124:3,-144,32.5,0,0,-0.0762105 -125472,7314:123:4,-143.5,32.5,0,0,-0.0810431 -125473,7314:123:3,-143,32.5,0,0,-0.0808496 -125474,7314:122:4,-142.5,32.5,0,0,-0.0772325 -125475,7314:122:3,-142,32.5,0,0,-0.075831 -125476,7314:121:4,-141.5,32.5,0,0,-0.0786241 -125477,7314:121:3,-141,32.5,0,0,-0.0851175 -125478,7314:120:4,-140.5,32.5,0,0,-0.0889206 -125479,7314:120:3,-140,32.5,0,0,-0.0858558 -125480,7313:229:4,-139.5,32.5,0,0,-0.0833022 -125481,7313:229:3,-139,32.5,0,0,-0.0853426 -125482,7313:228:4,-138.5,32.5,0,0,-0.0889206 -125483,7313:228:3,-138,32.5,0,0,-0.0910005 -125484,7313:227:4,-137.5,32.5,0,0,-0.0911103 -125485,7313:227:3,-137,32.5,0,0,-0.0923718 -125486,7313:226:4,-136.5,32.5,0,0,-0.0968317 -125487,7313:226:3,-136,32.5,0,0,-0.104108 -125488,7313:225:4,-135.5,32.5,0,0,-0.11016 -125489,7313:225:3,-135,32.5,0,0,-0.110674 -125490,7313:124:4,-134.5,32.5,0,0,-0.107363 -125491,7313:124:3,-134,32.5,0,0,-0.104873 -125492,7313:123:4,-133.5,32.5,0,0,-0.105206 -125493,7313:123:3,-133,32.5,0,0,-0.108313 -125494,7313:122:4,-132.5,32.5,0,0,-0.111438 -125495,7313:122:3,-132,32.5,0,0,-0.114099 -125496,7313:121:4,-131.5,32.5,0,0,-0.116572 -125497,7313:121:3,-131,32.5,0,0,-0.115855 -125498,7313:120:4,-130.5,32.5,0,0,-0.113428 -125499,7313:120:3,-130,32.5,0,0,-0.113205 -125500,7312:229:4,-129.5,32.5,0,0,-0.113623 -125501,7312:229:3,-129,32.5,0,0,-0.109567 -125502,7312:228:4,-128.5,32.5,0,0,-0.105593 -125503,7312:228:3,-128,32.5,0,0,-0.105027 -125504,7312:227:4,-127.5,32.5,0,0,-0.0983942 -125505,7312:227:3,-127,32.5,0,0,-0.0952736 -125506,7312:226:4,-126.5,32.5,0,0,-0.0963169 -125507,7312:226:3,-126,32.5,0,0,-0.103778 -125508,7312:225:4,-125.5,32.5,0,0,-0.109971 -125509,7312:225:3,-125,32.5,0,0,-0.108978 -125510,7312:124:4,-124.5,32.5,0,0,-0.102048 -125511,7306:123:4,-63.5,32.5,0,0,-0.0221874 -125512,7306:121:4,-61.5,32.5,0,0,-0.0342344 -125513,7306:121:3,-61,32.5,0,0,-0.0337992 -125514,7305:229:4,-59.5,32.5,0,0,-0.0336682 -125515,7305:229:3,-59,32.5,0,0,-0.0253491 -125516,7305:228:4,-58.5,32.5,0,0,-0.0243642 -125517,7305:228:3,-58,32.5,0,0,-0.0256554 -125518,7305:227:4,-57.5,32.5,0,0,-0.0265669 -125519,7305:227:3,-57,32.5,0,0,-0.0259948 -125520,7305:226:4,-56.5,32.5,0,0,-0.0251147 -125521,7305:226:3,-56,32.5,0,0,-0.0231395 -125522,7305:225:4,-55.5,32.5,0,0,-0.0217458 -125523,7305:225:3,-55,32.5,0,0,-0.0206788 -125524,7305:124:4,-54.5,32.5,0,0,-0.0198252 -125525,7305:124:3,-54,32.5,0,0,-0.0183147 -125526,7305:123:4,-53.5,32.5,0,0,-0.0187484 -125527,7305:122:4,-52.5,32.5,0,0,-0.0150265 -125528,7305:122:3,-52,32.5,0,0,-0.0149124 -125529,7305:121:4,-51.5,32.5,0,0,-0.0159614 -125530,7305:121:3,-51,32.5,0,0,-0.0165639 -125531,7305:120:4,-50.5,32.5,0,0,-0.0166833 -125532,7305:120:3,-50,32.5,0,0,-0.0163641 -125533,7304:229:4,-49.5,32.5,0,0,-0.0175485 -125534,7304:229:3,-49,32.5,0,0,-0.0176673 -125535,7304:228:4,-48.5,32.5,0,0,-0.0170969 -125536,7304:228:3,-48,32.5,0,0,-0.0161452 -125537,7304:227:4,-47.5,32.5,0,0,-0.0155792 -125538,7304:227:3,-47,32.5,0,0,-0.0186978 -125539,7304:226:4,-46.5,32.5,0,0,-0.0246472 -125540,7304:226:3,-46,32.5,0,0,-0.0315272 -125541,7304:225:4,-45.5,32.5,0,0,-0.0314843 -125542,7304:225:3,-45,32.5,0,0,-0.0296407 -125543,7304:124:4,-44.5,32.5,0,0,-0.0285882 -125544,7304:124:3,-44,32.5,0,0,-0.0274243 -125545,7304:123:4,-43.5,32.5,0,0,-0.0291725 -125546,7304:123:3,-43,32.5,0,0,-0.0460335 -125547,7304:122:4,-42.5,32.5,0,0,-0.0494124 -125548,7304:122:3,-42,32.5,0,0,-0.0611458 -125549,7304:121:4,-41.5,32.5,0,0,-0.0820367 -125550,7304:121:3,-41,32.5,0,0,-0.08935 -125551,7304:120:4,-40.5,32.5,0,0,-0.0834819 -125552,7304:120:3,-40,32.5,0,0,-0.0969492 -125553,7303:229:4,-39.5,32.5,0,0,-0.0994755 -125554,7303:229:3,-39,32.5,0,0,-0.0932004 -125555,7303:228:4,-38.5,32.5,0,0,-0.0836223 -125556,7303:228:3,-38,32.5,0,0,-0.084064 -125557,7303:227:4,-37.5,32.5,0,0,-0.113344 -125558,7303:227:3,-37,32.5,0,0,-0.122818 -125559,7303:226:4,-36.5,32.5,0,0,-0.102247 -125560,7303:226:3,-36,32.5,0,0,-0.0902799 -125561,7303:225:4,-35.5,32.5,0,0,-0.109112 -125562,7303:225:3,-35,32.5,0,0,-0.13605 -125563,7303:124:4,-34.5,32.5,0,0,-0.13605 -125564,7303:124:3,-34,32.5,0,0,-0.13605 -125565,7303:123:4,-33.5,32.5,0,0,-0.126915 -125566,7303:123:3,-33,32.5,0,0,-0.118137 -125567,7303:122:4,-32.5,32.5,0,0,-0.102721 -125568,7303:122:3,-32,32.5,0,0,-0.115884 -125569,7303:121:4,-31.5,32.5,0,0,-0.124229 -125570,7303:121:3,-31,32.5,0,0,-0.13605 -125571,7303:120:4,-30.5,32.5,0,0,-0.13605 -125572,7303:120:3,-30,32.5,0,0,-0.13605 -125573,7302:229:4,-29.5,32.5,0,0,-0.13605 -125574,7302:229:3,-29,32.5,0,0,-0.13605 -125575,7302:228:4,-28.5,32.5,0,0,-0.13605 -125576,7302:228:3,-28,32.5,0,0,-0.13605 -125577,7302:227:4,-27.5,32.5,0,0,-0.13605 -125578,7302:227:3,-27,32.5,0,0,-0.13605 -125579,7302:226:4,-26.5,32.5,0,0,-0.13605 -125580,7302:226:3,-26,32.5,0,0,-0.13605 -125581,7302:225:4,-25.5,32.5,0,0,-0.13605 -125582,7302:225:3,-25,32.5,0,0,-0.13605 -125583,7302:124:4,-24.5,32.5,0,0,-0.13605 -125584,7302:124:3,-24,32.5,0,0,-0.13605 -125585,7302:123:4,-23.5,32.5,0,0,-0.13605 -125586,7302:123:3,-23,32.5,0,0,-0.13605 -125587,7302:122:4,-22.5,32.5,0,0,-0.13605 -125588,7302:122:3,-22,32.5,0,0,-0.13605 -125589,7302:121:4,-21.5,32.5,0,0,-0.13605 -125590,7302:121:3,-21,32.5,0,0,-0.13605 -125591,7302:120:4,-20.5,32.5,0,0,-0.13605 -125592,7302:120:3,-20,32.5,0,0,-0.13605 -125593,7301:229:4,-19.5,32.5,0,0,-0.13605 -125594,7301:229:3,-19,32.5,0,0,-0.13605 -125595,7301:228:4,-18.5,32.5,0,0,-0.13605 -125596,7301:228:3,-18,32.5,0,0,-0.13605 -125597,7301:227:4,-17.5,32.5,0,0,-0.13605 -125598,7301:227:3,-17,32.5,0,0,-0.13605 -125599,7301:226:4,-16.5,32.5,0,0,-0.13605 -125600,7301:226:3,-16,32.5,0,0,-0.13605 -125601,7301:225:4,-15.5,32.5,0,0,-0.13605 -125602,7301:225:3,-15,32.5,0,0,-0.13605 -125603,7301:124:4,-14.5,32.5,0,0,-0.13605 -125604,7301:124:3,-14,32.5,0,0,-0.13605 -125605,7301:123:4,-13.5,32.5,0,0,-0.13605 -125606,7301:123:3,-13,32.5,0,0,-0.13605 -125607,7301:122:4,-12.5,32.5,0,0,-0.13605 -125608,7301:122:3,-12,32.5,0,0,-0.13605 -125609,7301:121:4,-11.5,32.5,0,0,-0.13605 -125610,7301:121:3,-11,32.5,0,0,-0.13605 -125611,7301:120:4,-10.5,32.5,0,0,-0.13605 -125612,7301:120:3,-10,32.5,0,0,-0.13605 -125613,7300:229:4,-9.5,32.5,0,0,-0.13605 -125614,7300:229:3,-9,32.5,0,0,-0.13605 -125615,7300:228:4,-8.5,32.5,0,0,-0.13605 -125616,7300:228:3,-8,32.5,0,0,-0.13605 -125617,7300:227:4,-7.5,32.5,0,0,-0.13605 -125618,7300:227:3,-7,32.5,0,0,-0.13605 -125619,7300:226:4,-6.5,32.5,0,0,-0.13605 -125620,7300:226:3,-6,32.5,0,0,-0.13605 -125621,7300:225:4,-5.5,32.5,0,0,-0.13605 -125622,7300:225:3,-5,32.5,0,0,-0.13605 -125623,7300:124:4,-4.5,32.5,0,0,-0.13605 -125624,7300:124:3,-4,32.5,0,0,-0.13605 -125625,7300:123:4,-3.5,32.5,0,0,-0.13605 -125626,7300:123:3,-3,32.5,0,0,-0.13605 -125627,1301:122:4,12.5,32.5,0,0,-0.13605 -125628,1302:228:3,28,32.5,0,0,-0.13605 -125629,1302:228:4,28.5,32.5,0,0,-0.13605 -125630,1302:229:3,29,32.5,0,0,-0.13605 -125631,1302:229:4,29.5,32.5,0,0,-0.13605 -125632,1303:120:3,30,32.5,0,0,-0.13605 -125633,1303:120:4,30.5,32.5,0,0,-0.13605 -125634,1303:121:3,31,32.5,0,0,-0.13605 -125635,1303:121:4,31.5,32.5,0,0,-0.13605 -125636,1303:122:3,32,32.5,0,0,-0.13605 -125637,1303:122:4,32.5,32.5,0,0,-0.13605 -125638,1303:123:3,33,32.5,0,0,-0.13605 -125639,1303:123:4,33.5,32.5,0,0,-0.13605 -125640,1303:124:3,34,32.5,0,0,-0.13605 -125641,1303:124:4,34.5,32.5,0,0,-0.13605 -125642,1303:225:3,35,32.5,0,0,-0.13605 -125643,1303:225:4,35.5,32.5,0,0,-0.13605 -125644,1303:226:3,36,32.5,0,0,-0.13605 -125645,1303:226:4,36.5,32.5,0,0,-0.13605 -125646,1303:227:3,37,32.5,0,0,-0.13605 -125647,1303:227:4,37.5,32.5,0,0,-0.13605 -125648,1303:228:3,38,32.5,0,0,-0.13605 -125649,1303:228:4,38.5,32.5,0,0,-0.13605 -125650,1313:229:3,139,32.5,0,0,-0.0236795 -125651,1313:229:4,139.5,32.5,0,0,-0.032811 -125652,1314:120:3,140,32.5,0,0,-0.0374049 -125653,1314:120:4,140.5,32.5,0,0,-0.0406926 -125654,1314:121:3,141,32.5,0,0,-0.0417643 -125655,1314:121:4,141.5,32.5,0,0,-0.0442818 -125656,1314:122:3,142,32.5,0,0,-0.0442513 -125657,1314:122:4,142.5,32.5,0,0,-0.0415248 -125658,1314:123:4,143.5,32.5,0,0,-0.0160873 -125659,1314:124:3,144,32.5,0,0,-0.0152746 -125660,1314:225:3,145,32.5,0,0,-0.0126631 -125661,1314:225:4,145.5,32.5,0,0,-0.0153502 -125662,1314:226:3,146,32.5,0,0,-0.0181017 -125663,1314:226:4,146.5,32.5,0,0,-0.0217165 -125664,1314:227:3,147,32.5,0,0,-0.0212318 -125665,1314:227:4,147.5,32.5,0,0,-0.0212605 -125666,1314:228:3,148,32.5,0,0,-0.0233445 -125667,1314:228:4,148.5,32.5,0,0,-0.0238029 -125668,1314:229:3,149,32.5,0,0,-0.0225511 -125669,1314:229:4,149.5,32.5,0,0,-0.0208052 -125670,1315:120:3,150,32.5,0,0,-0.0207395 -125671,1315:120:4,150.5,32.5,0,0,-0.0229417 -125672,1315:121:3,151,32.5,0,0,-0.0248883 -125673,1315:121:4,151.5,32.5,0,0,-0.0253549 -125674,1315:122:3,152,32.5,0,0,-0.0233709 -125675,1315:122:4,152.5,32.5,0,0,-0.0203137 -125676,1315:123:3,153,32.5,0,0,-0.019785 -125677,1315:123:4,153.5,32.5,0,0,-0.0197316 -125678,1315:124:3,154,32.5,0,0,-0.0207957 -125679,1315:124:4,154.5,32.5,0,0,-0.0214243 -125680,1315:225:3,155,32.5,0,0,-0.0222425 -125681,1315:225:4,155.5,32.5,0,0,-0.0233234 -125682,1315:226:3,156,32.5,0,0,-0.022602 -125683,1315:226:4,156.5,32.5,0,0,-0.0215942 -125684,1315:227:3,157,32.5,0,0,-0.0203826 -125685,1315:227:4,157.5,32.5,0,0,-0.0204147 -125686,1315:228:3,158,32.5,0,0,-0.0217017 -125687,1315:228:4,158.5,32.5,0,0,-0.0227045 -125688,1315:229:3,159,32.5,0,0,-0.0230405 -125689,1315:229:4,159.5,32.5,0,0,-0.0229365 -125690,1316:120:3,160,32.5,0,0,-0.022597 -125691,1316:120:4,160.5,32.5,0,0,-0.0221773 -125692,1316:121:3,161,32.5,0,0,-0.021968 -125693,1316:121:4,161.5,32.5,0,0,-0.0222123 -125694,1316:122:3,162,32.5,0,0,-0.0236152 -125695,1316:122:4,162.5,32.5,0,0,-0.0273001 -125696,1316:123:3,163,32.5,0,0,-0.0275303 -125697,1316:123:4,163.5,32.5,0,0,-0.0257193 -125698,1316:124:3,164,32.5,0,0,-0.0255161 -125699,1316:124:4,164.5,32.5,0,0,-0.0263091 -125700,1316:225:3,165,32.5,0,0,-0.0283425 -125701,1316:225:4,165.5,32.5,0,0,-0.0306142 -125702,1316:226:3,166,32.5,0,0,-0.0304682 -125703,1316:226:4,166.5,32.5,0,0,-0.0261484 -125704,1316:227:3,167,32.5,0,0,-0.0250182 -125705,1316:227:4,167.5,32.5,0,0,-0.0255103 -125706,1316:228:3,168,32.5,0,0,-0.0264346 -125707,1316:228:4,168.5,32.5,0,0,-0.0270903 -125708,1316:229:3,169,32.5,0,0,-0.0282911 -125709,1316:229:4,169.5,32.5,0,0,-0.0295732 -125710,1317:120:3,170,32.5,0,0,-0.0298573 -125711,1317:120:4,170.5,32.5,0,0,-0.0295062 -125712,1317:121:3,171,32.5,0,0,-0.028882 -125713,1317:121:4,171.5,32.5,0,0,-0.0286011 -125714,1317:122:3,172,32.5,0,0,-0.0285363 -125715,1317:122:4,172.5,32.5,0,0,-0.0290138 -125716,1317:123:3,173,32.5,0,0,-0.0296946 -125717,1317:123:4,173.5,32.5,0,0,-0.0302539 -125718,1317:124:3,174,32.5,0,0,-0.0308945 -125719,1317:124:4,174.5,32.5,0,0,-0.0312696 -125720,1317:225:3,175,32.5,0,0,-0.0304266 -125721,1317:225:4,175.5,32.5,0,0,-0.0298777 -125722,1317:226:3,176,32.5,0,0,-0.030817 -125723,1317:226:4,176.5,32.5,0,0,-0.0320489 -125724,1317:227:3,177,32.5,0,0,-0.0328858 -125725,1317:227:4,177.5,32.5,0,0,-0.0334079 -125726,1317:228:3,178,32.5,0,0,-0.0333242 -125727,1317:228:4,178.5,32.5,0,0,-0.032654 -125728,1317:229:3,179,32.5,0,0,-0.0322689 -125729,1317:229:4,179.5,32.5,0,0,-0.0323945 -125730,1318:120:3,180,32.5,0,0,-0.0327437 -125731,7318:130:1,-180,33,0,0,-0.0304543 -125732,7317:239:2,-179.5,33,0,0,-0.031163 -125733,7317:239:1,-179,33,0,0,-0.0319469 -125734,7317:238:2,-178.5,33,0,0,-0.0328035 -125735,7317:238:1,-178,33,0,0,-0.0332405 -125736,7317:237:2,-177.5,33,0,0,-0.0327959 -125737,7317:237:1,-177,33,0,0,-0.0319614 -125738,7317:236:2,-176.5,33,0,0,-0.0316065 -125739,7317:236:1,-176,33,0,0,-0.0317363 -125740,7317:235:2,-175.5,33,0,0,-0.0317219 -125741,7317:235:1,-175,33,0,0,-0.0314626 -125742,7317:134:2,-174.5,33,0,0,-0.0315632 -125743,7317:134:1,-174,33,0,0,-0.0324907 -125744,7317:133:2,-173.5,33,0,0,-0.0340162 -125745,7317:133:1,-173,33,0,0,-0.0352834 -125746,7317:132:2,-172.5,33,0,0,-0.0359022 -125747,7317:132:1,-172,33,0,0,-0.0360175 -125748,7317:131:2,-171.5,33,0,0,-0.0360009 -125749,7317:131:1,-171,33,0,0,-0.0360339 -125750,7317:130:2,-170.5,33,0,0,-0.0362326 -125751,7317:130:1,-170,33,0,0,-0.0364405 -125752,7316:239:2,-169.5,33,0,0,-0.0363822 -125753,7316:239:1,-169,33,0,0,-0.0363322 -125754,7316:238:2,-168.5,33,0,0,-0.0367505 -125755,7316:238:1,-168,33,0,0,-0.037923 -125756,7316:237:2,-167.5,33,0,0,-0.0393049 -125757,7316:237:1,-167,33,0,0,-0.0398505 -125758,7316:236:2,-166.5,33,0,0,-0.0400247 -125759,7316:236:1,-166,33,0,0,-0.0403667 -125760,7316:235:2,-165.5,33,0,0,-0.04045 -125761,7316:235:1,-165,33,0,0,-0.0403944 -125762,7316:134:2,-164.5,33,0,0,-0.0403851 -125763,7316:134:1,-164,33,0,0,-0.0407488 -125764,7316:133:2,-163.5,33,0,0,-0.0416492 -125765,7316:133:1,-163,33,0,0,-0.042895 -125766,7316:132:2,-162.5,33,0,0,-0.0440983 -125767,7316:132:1,-162,33,0,0,-0.044703 -125768,7316:131:2,-161.5,33,0,0,-0.0444662 -125769,7316:131:1,-161,33,0,0,-0.0431628 -125770,7316:130:2,-160.5,33,0,0,-0.0420345 -125771,7316:130:1,-160,33,0,0,-0.0423452 -125772,7315:239:2,-159.5,33,0,0,-0.0435125 -125773,7315:239:1,-159,33,0,0,-0.0452219 -125774,7315:238:2,-158.5,33,0,0,-0.045779 -125775,7315:238:1,-158,33,0,0,-0.044569 -125776,7315:237:2,-157.5,33,0,0,-0.0433423 -125777,7315:237:1,-157,33,0,0,-0.0437237 -125778,7315:236:2,-156.5,33,0,0,-0.0456205 -125779,7315:236:1,-156,33,0,0,-0.0476918 -125780,7315:235:2,-155.5,33,0,0,-0.0491499 -125781,7315:235:1,-155,33,0,0,-0.0502213 -125782,7315:134:2,-154.5,33,0,0,-0.0511629 -125783,7315:134:1,-154,33,0,0,-0.0522318 -125784,7315:133:2,-153.5,33,0,0,-0.0528549 -125785,7315:133:1,-153,33,0,0,-0.052732 -125786,7315:132:2,-152.5,33,0,0,-0.0534612 -125787,7315:132:1,-152,33,0,0,-0.0551303 -125788,7315:131:2,-151.5,33,0,0,-0.0568545 -125789,7315:131:1,-151,33,0,0,-0.0581173 -125790,7315:130:2,-150.5,33,0,0,-0.0588969 -125791,7315:130:1,-150,33,0,0,-0.059618 -125792,7314:239:2,-149.5,33,0,0,-0.0608882 -125793,7314:239:1,-149,33,0,0,-0.06248 -125794,7314:238:2,-148.5,33,0,0,-0.0631584 -125795,7314:238:1,-148,33,0,0,-0.0634411 -125796,7314:237:2,-147.5,33,0,0,-0.0640405 -125797,7314:237:1,-147,33,0,0,-0.0647215 -125798,7314:236:2,-146.5,33,0,0,-0.0651341 -125799,7314:236:1,-146,33,0,0,-0.0653642 -125800,7314:235:2,-145.5,33,0,0,-0.0656886 -125801,7314:235:1,-145,33,0,0,-0.0663415 -125802,7314:134:2,-144.5,33,0,0,-0.0677641 -125803,7314:134:1,-144,33,0,0,-0.0703076 -125804,7314:133:2,-143.5,33,0,0,-0.0726424 -125805,7314:133:1,-143,33,0,0,-0.0723331 -125806,7314:132:2,-142.5,33,0,0,-0.0710936 -125807,7314:132:1,-142,33,0,0,-0.0717867 -125808,7314:131:2,-141.5,33,0,0,-0.0743327 -125809,7314:131:1,-141,33,0,0,-0.0786618 -125810,7314:130:2,-140.5,33,0,0,-0.0817821 -125811,7314:130:1,-140,33,0,0,-0.0810236 -125812,7313:239:2,-139.5,33,0,0,-0.0807342 -125813,7313:239:1,-139,33,0,0,-0.0832024 -125814,7313:238:2,-138.5,33,0,0,-0.0856913 -125815,7313:238:1,-138,33,0,0,-0.0863932 -125816,7313:237:2,-137.5,33,0,0,-0.0866632 -125817,7313:237:1,-137,33,0,0,-0.0889853 -125818,7313:236:2,-136.5,33,0,0,-0.0936294 -125819,7313:236:1,-136,33,0,0,-0.0983942 -125820,7313:235:2,-135.5,33,0,0,-0.100741 -125821,7313:235:1,-135,33,0,0,-0.0989688 -125822,7313:134:2,-134.5,33,0,0,-0.0964102 -125823,7313:134:1,-134,33,0,0,-0.0969729 -125824,7313:133:2,-133.5,33,0,0,-0.0998628 -125825,7313:133:1,-133,33,0,0,-0.103274 -125826,7313:132:2,-132.5,33,0,0,-0.105954 -125827,7313:132:1,-132,33,0,0,-0.108127 -125828,7313:131:2,-131.5,33,0,0,-0.109917 -125829,7313:131:1,-131,33,0,0,-0.109272 -125830,7313:130:2,-130.5,33,0,0,-0.107258 -125831,7313:130:1,-130,33,0,0,-0.107652 -125832,7312:239:2,-129.5,33,0,0,-0.109299 -125833,7312:239:1,-129,33,0,0,-0.105541 -125834,7312:238:2,-128.5,33,0,0,-0.101059 -125835,7312:238:1,-128,33,0,0,-0.0983942 -125836,7312:237:2,-127.5,33,0,0,-0.0967143 -125837,7312:237:1,-127,33,0,0,-0.0957824 -125838,7312:236:2,-126.5,33,0,0,-0.0982508 -125839,7312:236:1,-126,33,0,0,-0.103602 -125840,7312:235:2,-125.5,33,0,0,-0.10549 -125841,7312:235:1,-125,33,0,0,-0.105104 -125842,7312:134:2,-124.5,33,0,0,-0.0963169 -125843,7306:134:1,-64,33,0,0,-0.0235246 -125844,7306:133:1,-63,33,0,0,-0.0304266 -125845,7306:132:2,-62.5,33,0,0,-0.0371229 -125846,7306:132:1,-62,33,0,0,-0.0391158 -125847,7306:131:2,-61.5,33,0,0,-0.0373448 -125848,7306:131:1,-61,33,0,0,-0.0345568 -125849,7306:130:2,-60.5,33,0,0,-0.037758 -125850,7305:239:2,-59.5,33,0,0,-0.0309297 -125851,7305:239:1,-59,33,0,0,-0.0237977 -125852,7305:238:2,-58.5,33,0,0,-0.0244306 -125853,7305:238:1,-58,33,0,0,-0.0250239 -125854,7305:237:2,-57.5,33,0,0,-0.0258889 -125855,7305:237:1,-57,33,0,0,-0.0252116 -125856,7305:236:2,-56.5,33,0,0,-0.0248095 -125857,7305:236:1,-56,33,0,0,-0.0233656 -125858,7305:235:2,-55.5,33,0,0,-0.0221373 -125859,7305:235:1,-55,33,0,0,-0.0237385 -125860,7305:134:2,-54.5,33,0,0,-0.0196474 -125861,7305:134:1,-54,33,0,0,-0.021141 -125862,7305:133:2,-53.5,33,0,0,-0.022921 -125863,7305:132:1,-52,33,0,0,-0.0136614 -125864,7305:131:2,-51.5,33,0,0,-0.0141885 -125865,7305:131:1,-51,33,0,0,-0.0145069 -125866,7305:130:2,-50.5,33,0,0,-0.0150772 -125867,7305:130:1,-50,33,0,0,-0.0154956 -125868,7304:239:2,-49.5,33,0,0,-0.0159471 -125869,7304:239:1,-49,33,0,0,-0.0158649 -125870,7304:238:2,-48.5,33,0,0,-0.0153364 -125871,7304:238:1,-48,33,0,0,-0.0151756 -125872,7304:237:2,-47.5,33,0,0,-0.0155442 -125873,7304:237:1,-47,33,0,0,-0.0182406 -125874,7304:236:2,-46.5,33,0,0,-0.0215115 -125875,7304:236:1,-46,33,0,0,-0.0252688 -125876,7304:235:2,-45.5,33,0,0,-0.0278573 -125877,7304:235:1,-45,33,0,0,-0.0277563 -125878,7304:134:2,-44.5,33,0,0,-0.0273745 -125879,7304:134:1,-44,33,0,0,-0.0266392 -125880,7304:133:2,-43.5,33,0,0,-0.0269309 -125881,7304:133:1,-43,33,0,0,-0.0419667 -125882,7304:132:2,-42.5,33,0,0,-0.0575764 -125883,7304:132:1,-42,33,0,0,-0.0607316 -125884,7304:131:2,-41.5,33,0,0,-0.0669381 -125885,7304:131:1,-41,33,0,0,-0.0721618 -125886,7304:130:2,-40.5,33,0,0,-0.0777488 -125887,7304:130:1,-40,33,0,0,-0.0987052 -125888,7303:239:2,-39.5,33,0,0,-0.106578 -125889,7303:239:1,-39,33,0,0,-0.103627 -125890,7303:238:2,-38.5,33,0,0,-0.0918603 -125891,7303:238:1,-38,33,0,0,-0.0738407 -125892,7303:237:2,-37.5,33,0,0,-0.0709925 -125893,7303:237:1,-37,33,0,0,-0.0815284 -125894,7303:236:2,-36.5,33,0,0,-0.0910882 -125895,7303:236:1,-36,33,0,0,-0.0885155 -125896,7303:235:2,-35.5,33,0,0,-0.089954 -125897,7303:235:1,-35,33,0,0,-0.101059 -125898,7303:134:2,-34.5,33,0,0,-0.107731 -125899,7303:134:1,-34,33,0,0,-0.10624 -125900,7303:133:2,-33.5,33,0,0,-0.103627 -125901,7303:133:1,-33,33,0,0,-0.0982508 -125902,7303:132:2,-32.5,33,0,0,-0.0988252 -125903,7303:132:1,-32,33,0,0,-0.127262 -125904,7303:131:2,-31.5,33,0,0,-0.131985 -125905,7303:131:1,-31,33,0,0,-0.127834 -125906,7303:130:2,-30.5,33,0,0,-0.135401 -125907,7303:130:1,-30,33,0,0,-0.13605 -125908,7302:239:2,-29.5,33,0,0,-0.13605 -125909,7302:239:1,-29,33,0,0,-0.13605 -125910,7302:238:2,-28.5,33,0,0,-0.13605 -125911,7302:238:1,-28,33,0,0,-0.13605 -125912,7302:237:2,-27.5,33,0,0,-0.13605 -125913,7302:237:1,-27,33,0,0,-0.13605 -125914,7302:236:2,-26.5,33,0,0,-0.13605 -125915,7302:236:1,-26,33,0,0,-0.13605 -125916,7302:235:2,-25.5,33,0,0,-0.13605 -125917,7302:235:1,-25,33,0,0,-0.13605 -125918,7302:134:2,-24.5,33,0,0,-0.13605 -125919,7302:134:1,-24,33,0,0,-0.13605 -125920,7302:133:2,-23.5,33,0,0,-0.13605 -125921,7302:133:1,-23,33,0,0,-0.13605 -125922,7302:132:2,-22.5,33,0,0,-0.13605 -125923,7302:132:1,-22,33,0,0,-0.13605 -125924,7302:131:2,-21.5,33,0,0,-0.13605 -125925,7302:131:1,-21,33,0,0,-0.13605 -125926,7302:130:2,-20.5,33,0,0,-0.13605 -125927,7302:130:1,-20,33,0,0,-0.13605 -125928,7301:239:2,-19.5,33,0,0,-0.13605 -125929,7301:239:1,-19,33,0,0,-0.13605 -125930,7301:238:2,-18.5,33,0,0,-0.13605 -125931,7301:238:1,-18,33,0,0,-0.13605 -125932,7301:237:2,-17.5,33,0,0,-0.13605 -125933,7301:237:1,-17,33,0,0,-0.13605 -125934,7301:236:2,-16.5,33,0,0,-0.13605 -125935,7301:236:1,-16,33,0,0,-0.13605 -125936,7301:235:2,-15.5,33,0,0,-0.13605 -125937,7301:235:1,-15,33,0,0,-0.13605 -125938,7301:134:2,-14.5,33,0,0,-0.13605 -125939,7301:134:1,-14,33,0,0,-0.13605 -125940,7301:133:2,-13.5,33,0,0,-0.13605 -125941,7301:133:1,-13,33,0,0,-0.13605 -125942,7301:132:2,-12.5,33,0,0,-0.13605 -125943,7301:132:1,-12,33,0,0,-0.13605 -125944,7301:131:2,-11.5,33,0,0,-0.13605 -125945,7301:131:1,-11,33,0,0,-0.13605 -125946,7301:130:2,-10.5,33,0,0,-0.13605 -125947,7301:130:1,-10,33,0,0,-0.13605 -125948,7300:239:2,-9.5,33,0,0,-0.13605 -125949,7300:239:1,-9,33,0,0,-0.13605 -125950,7300:238:2,-8.5,33,0,0,-0.13605 -125951,7300:238:1,-8,33,0,0,-0.13605 -125952,7300:237:2,-7.5,33,0,0,-0.13605 -125953,7300:237:1,-7,33,0,0,-0.13605 -125954,7300:236:2,-6.5,33,0,0,-0.13605 -125955,7300:236:1,-6,33,0,0,-0.13605 -125956,7300:235:2,-5.5,33,0,0,-0.13605 -125957,7300:235:1,-5,33,0,0,-0.13605 -125958,7300:134:2,-4.5,33,0,0,-0.13605 -125959,7300:134:1,-4,33,0,0,-0.13605 -125960,7300:133:2,-3.5,33,0,0,-0.128537 -125961,1302:238:2,28.5,33,0,0,-0.13605 -125962,1302:239:1,29,33,0,0,-0.13605 -125963,1302:239:2,29.5,33,0,0,-0.13605 -125964,1303:130:1,30,33,0,0,-0.13605 -125965,1303:130:2,30.5,33,0,0,-0.13605 -125966,1303:131:1,31,33,0,0,-0.13605 -125967,1303:131:2,31.5,33,0,0,-0.13605 -125968,1303:132:1,32,33,0,0,-0.13605 -125969,1303:133:1,33,33,0,0,-0.13605 -125970,1303:133:2,33.5,33,0,0,-0.13605 -125971,1303:134:1,34,33,0,0,-0.13605 -125972,1303:134:2,34.5,33,0,0,-0.13605 -125973,1303:235:1,35,33,0,0,-0.13605 -125974,1303:235:2,35.5,33,0,0,-0.13605 -125975,1303:236:1,36,33,0,0,-0.13605 -125976,1303:236:2,36.5,33,0,0,-0.13605 -125977,1303:237:1,37,33,0,0,-0.13605 -125978,1303:237:2,37.5,33,0,0,-0.13605 -125979,1303:238:1,38,33,0,0,-0.13605 -125980,1313:239:2,139.5,33,0,0,-0.0253549 -125981,1314:130:1,140,33,0,0,-0.0269554 -125982,1314:130:2,140.5,33,0,0,-0.0368012 -125983,1314:131:1,141,33,0,0,-0.0361744 -125984,1314:131:2,141.5,33,0,0,-0.0408708 -125985,1314:132:1,142,33,0,0,-0.0391608 -125986,1314:132:2,142.5,33,0,0,-0.0385544 -125987,1314:134:2,144.5,33,0,0,-0.0150299 -125988,1314:235:1,145,33,0,0,-0.0126744 -125989,1314:235:2,145.5,33,0,0,-0.0151824 -125990,1314:236:1,146,33,0,0,-0.0164933 -125991,1314:236:2,146.5,33,0,0,-0.0167246 -125992,1314:237:1,147,33,0,0,-0.0174345 -125993,1314:237:2,147.5,33,0,0,-0.0182365 -125994,1314:238:1,148,33,0,0,-0.019089 -125995,1314:238:2,148.5,33,0,0,-0.0196164 -125996,1314:239:1,149,33,0,0,-0.0193968 -125997,1314:239:2,149.5,33,0,0,-0.0190762 -125998,1315:130:1,150,33,0,0,-0.0192228 -125999,1315:130:2,150.5,33,0,0,-0.0200273 -126000,1315:131:1,151,33,0,0,-0.0210315 -126001,1315:131:2,151.5,33,0,0,-0.0212414 -126002,1315:132:1,152,33,0,0,-0.0209133 -126003,1315:132:2,152.5,33,0,0,-0.0207301 -126004,1315:133:1,153,33,0,0,-0.0197717 -126005,1315:133:2,153.5,33,0,0,-0.0188881 -126006,1315:134:1,154,33,0,0,-0.0193313 -126007,1315:134:2,154.5,33,0,0,-0.0214825 -126008,1315:235:1,155,33,0,0,-0.0221072 -126009,1315:235:2,155.5,33,0,0,-0.0213809 -126010,1315:236:1,156,33,0,0,-0.0208427 -126011,1315:236:2,156.5,33,0,0,-0.0209133 -126012,1315:237:1,157,33,0,0,-0.0204655 -126013,1315:237:2,157.5,33,0,0,-0.0196209 -126014,1315:238:1,158,33,0,0,-0.0206322 -126015,1315:238:2,158.5,33,0,0,-0.0219977 -126016,1315:239:1,159,33,0,0,-0.0220923 -126017,1315:239:2,159.5,33,0,0,-0.0220175 -126018,1316:130:1,160,33,0,0,-0.021958 -126019,1316:130:2,160.5,33,0,0,-0.0218394 -126020,1316:131:1,161,33,0,0,-0.0216381 -126021,1316:131:2,161.5,33,0,0,-0.0216772 -126022,1316:132:1,162,33,0,0,-0.0226583 -126023,1316:132:2,162.5,33,0,0,-0.0263151 -126024,1316:133:1,163,33,0,0,-0.0252517 -126025,1316:133:2,163.5,33,0,0,-0.0250239 -126026,1316:134:1,164,33,0,0,-0.0250523 -126027,1316:134:2,164.5,33,0,0,-0.0246918 -126028,1316:235:1,165,33,0,0,-0.0235087 -126029,1316:235:2,165.5,33,0,0,-0.0230716 -126030,1316:236:1,166,33,0,0,-0.0233181 -126031,1316:236:2,166.5,33,0,0,-0.023873 -126032,1316:237:1,167,33,0,0,-0.0248263 -126033,1316:237:2,167.5,33,0,0,-0.0248095 -126034,1316:238:1,168,33,0,0,-0.0262912 -126035,1316:238:2,168.5,33,0,0,-0.0269492 -126036,1316:239:1,169,33,0,0,-0.0273497 -126037,1316:239:2,169.5,33,0,0,-0.0276431 -126038,1317:130:1,170,33,0,0,-0.027618 -126039,1317:130:2,170.5,33,0,0,-0.0276243 -126040,1317:131:1,171,33,0,0,-0.027618 -126041,1317:131:2,171.5,33,0,0,-0.0275303 -126042,1317:132:1,172,33,0,0,-0.02775 -126043,1317:132:2,172.5,33,0,0,-0.0282846 -126044,1317:133:1,173,33,0,0,-0.0286923 -126045,1317:133:2,173.5,33,0,0,-0.028869 -126046,1317:134:1,174,33,0,0,-0.0287772 -126047,1317:134:2,174.5,33,0,0,-0.0283103 -126048,1317:235:1,175,33,0,0,-0.0280796 -126049,1317:235:2,175.5,33,0,0,-0.0284263 -126050,1317:236:1,176,33,0,0,-0.0295127 -126051,1317:236:2,176.5,33,0,0,-0.0308522 -126052,1317:237:1,177,33,0,0,-0.0314698 -126053,1317:237:2,177.5,33,0,0,-0.0313482 -126054,1317:238:1,178,33,0,0,-0.030482 -126055,1317:238:2,178.5,33,0,0,-0.0294927 -126056,1317:239:1,179,33,0,0,-0.0292854 -126057,1317:239:2,179.5,33,0,0,-0.0297487 -126058,1318:130:1,180,33,0,0,-0.0304543 -126059,7318:130:3,-180,33.5,0,0,-0.0294256 -126060,7317:239:4,-179.5,33.5,0,0,-0.0296946 -126061,7317:239:3,-179,33.5,0,0,-0.0298912 -126062,7317:238:4,-178.5,33.5,0,0,-0.0300276 -126063,7317:238:3,-178,33.5,0,0,-0.0301097 -126064,7317:237:4,-177.5,33.5,0,0,-0.0300208 -126065,7317:237:3,-177,33.5,0,0,-0.0298097 -126066,7317:236:4,-176.5,33.5,0,0,-0.0296812 -126067,7317:236:3,-176,33.5,0,0,-0.0296137 -126068,7317:235:4,-175.5,33.5,0,0,-0.0294391 -126069,7317:235:3,-175,33.5,0,0,-0.0293721 -126070,7317:134:4,-174.5,33.5,0,0,-0.0296542 -126071,7317:134:3,-174,33.5,0,0,-0.030247 -126072,7317:133:4,-173.5,33.5,0,0,-0.0312057 -126073,7317:133:3,-173,33.5,0,0,-0.0320563 -126074,7317:132:4,-172.5,33.5,0,0,-0.0325425 -126075,7317:132:3,-172,33.5,0,0,-0.0328259 -126076,7317:131:4,-171.5,33.5,0,0,-0.0332178 -126077,7317:131:3,-171,33.5,0,0,-0.0338148 -126078,7317:130:4,-170.5,33.5,0,0,-0.0345094 -126079,7317:130:3,-170,33.5,0,0,-0.035018 -126080,7316:239:4,-169.5,33.5,0,0,-0.035026 -126081,7316:239:3,-169,33.5,0,0,-0.034914 -126082,7316:238:4,-168.5,33.5,0,0,-0.0351063 -126083,7316:238:3,-168,33.5,0,0,-0.0358531 -126084,7316:237:4,-167.5,33.5,0,0,-0.0368771 -126085,7316:237:3,-167,33.5,0,0,-0.0375422 -126086,7316:236:4,-166.5,33.5,0,0,-0.0379838 -126087,7316:236:3,-166,33.5,0,0,-0.0383866 -126088,7316:235:4,-165.5,33.5,0,0,-0.0386163 -126089,7316:235:3,-165,33.5,0,0,-0.038723 -126090,7316:134:4,-164.5,33.5,0,0,-0.038714 -126091,7316:134:3,-164,33.5,0,0,-0.0386696 -126092,7316:133:4,-163.5,33.5,0,0,-0.0389725 -126093,7316:133:3,-163,33.5,0,0,-0.0399513 -126094,7316:132:4,-162.5,33.5,0,0,-0.0410309 -126095,7316:132:3,-162,33.5,0,0,-0.0412108 -126096,7316:131:4,-161.5,33.5,0,0,-0.0402646 -126097,7316:131:3,-161,33.5,0,0,-0.0387941 -126098,7316:130:4,-160.5,33.5,0,0,-0.0389278 -126099,7316:130:3,-160,33.5,0,0,-0.0399787 -126100,7315:239:4,-159.5,33.5,0,0,-0.0412391 -126101,7315:239:3,-159,33.5,0,0,-0.0426979 -126102,7315:238:4,-158.5,33.5,0,0,-0.0429841 -126103,7315:238:3,-158,33.5,0,0,-0.041774 -126104,7315:237:4,-157.5,33.5,0,0,-0.0411255 -126105,7315:237:3,-157,33.5,0,0,-0.042083 -126106,7315:236:4,-156.5,33.5,0,0,-0.0440983 -126107,7315:236:3,-156,33.5,0,0,-0.0457051 -126108,7315:235:4,-155.5,33.5,0,0,-0.0466119 -126109,7315:235:3,-155,33.5,0,0,-0.0475704 -126110,7315:134:4,-154.5,33.5,0,0,-0.0487076 -126111,7315:134:3,-154,33.5,0,0,-0.050502 -126112,7315:133:4,-153.5,33.5,0,0,-0.0509613 -126113,7315:133:3,-153,33.5,0,0,-0.0502448 -126114,7315:132:4,-152.5,33.5,0,0,-0.0513769 -126115,7315:132:3,-152,33.5,0,0,-0.0535733 -126116,7315:131:4,-151.5,33.5,0,0,-0.0550919 -126117,7315:131:3,-151,33.5,0,0,-0.0559334 -126118,7315:130:4,-150.5,33.5,0,0,-0.0566559 -126119,7315:130:3,-150,33.5,0,0,-0.0575493 -126120,7314:239:4,-149.5,33.5,0,0,-0.0586908 -126121,7314:239:3,-149,33.5,0,0,-0.0595763 -126122,7314:238:4,-148.5,33.5,0,0,-0.0597302 -126123,7314:238:3,-148,33.5,0,0,-0.0594789 -126124,7314:237:4,-147.5,33.5,0,0,-0.0593677 -126125,7314:237:3,-147,33.5,0,0,-0.0594509 -126126,7314:236:4,-146.5,33.5,0,0,-0.059884 -126127,7314:236:3,-146,33.5,0,0,-0.0608743 -126128,7314:235:4,-145.5,33.5,0,0,-0.0624214 -126129,7314:235:3,-145,33.5,0,0,-0.0640552 -126130,7314:134:4,-144.5,33.5,0,0,-0.0652877 -126131,7314:134:3,-144,33.5,0,0,-0.0663415 -126132,7314:133:4,-143.5,33.5,0,0,-0.0670331 -126133,7314:133:3,-143,33.5,0,0,-0.0676203 -126134,7314:132:4,-142.5,33.5,0,0,-0.069105 -126135,7314:132:3,-142,33.5,0,0,-0.0708921 -126136,7314:131:4,-141.5,33.5,0,0,-0.0729874 -126137,7314:131:3,-141,33.5,0,0,-0.0755072 -126138,7314:130:4,-140.5,33.5,0,0,-0.0772875 -126139,7314:130:3,-140,33.5,0,0,-0.0776748 -126140,7313:239:4,-139.5,33.5,0,0,-0.0786996 -126141,7313:239:3,-139,33.5,0,0,-0.08114 -126142,7313:238:4,-138.5,33.5,0,0,-0.0824105 -126143,7313:238:3,-138,33.5,0,0,-0.0819386 -126144,7313:237:4,-137.5,33.5,0,0,-0.0817624 -126145,7313:237:3,-137,33.5,0,0,-0.0834617 -126146,7313:236:4,-136.5,33.5,0,0,-0.0870387 -126147,7313:236:3,-136,33.5,0,0,-0.0896301 -126148,7313:235:4,-135.5,33.5,0,0,-0.0889853 -126149,7313:235:3,-135,33.5,0,0,-0.0875417 -126150,7313:134:4,-134.5,33.5,0,0,-0.0885792 -126151,7313:134:3,-134,33.5,0,0,-0.0924385 -126152,7313:133:4,-133.5,33.5,0,0,-0.0968553 -126153,7313:133:3,-133,33.5,0,0,-0.0994755 -126154,7313:132:4,-132.5,33.5,0,0,-0.100033 -126155,7313:132:3,-132,33.5,0,0,-0.101207 -126156,7313:131:4,-131.5,33.5,0,0,-0.103223 -126157,7313:131:3,-131,33.5,0,0,-0.103602 -126158,7313:130:4,-130.5,33.5,0,0,-0.102123 -126159,7313:130:3,-130,33.5,0,0,-0.103148 -126160,7312:239:4,-129.5,33.5,0,0,-0.105773 -126161,7312:239:3,-129,33.5,0,0,-0.103804 -126162,7312:238:4,-128.5,33.5,0,0,-0.100447 -126163,7312:238:3,-128,33.5,0,0,-0.0984898 -126164,7312:237:4,-127.5,33.5,0,0,-0.0974677 -126165,7312:237:3,-127,33.5,0,0,-0.0955739 -126166,7312:236:4,-126.5,33.5,0,0,-0.0956664 -126167,7312:236:3,-126,33.5,0,0,-0.0987293 -126168,7312:235:4,-125.5,33.5,0,0,-0.0990657 -126169,7312:235:3,-125,33.5,0,0,-0.0969492 -126170,7312:134:4,-124.5,33.5,0,0,-0.0873948 -126171,7306:134:3,-64,33.5,0,0,-0.0233867 -126172,7306:133:4,-63.5,33.5,0,0,-0.0296812 -126173,7306:133:3,-63,33.5,0,0,-0.0342502 -126174,7306:132:4,-62.5,33.5,0,0,-0.0333319 -126175,7306:132:3,-62,33.5,0,0,-0.0319761 -126176,7306:131:4,-61.5,33.5,0,0,-0.0256263 -126177,7306:131:3,-61,33.5,0,0,-0.0212654 -126178,7306:130:4,-60.5,33.5,0,0,-0.0235034 -126179,7306:130:3,-60,33.5,0,0,-0.0248713 -126180,7305:239:4,-59.5,33.5,0,0,-0.0241721 -126181,7305:239:3,-59,33.5,0,0,-0.020623 -126182,7305:238:4,-58.5,33.5,0,0,-0.0230561 -126183,7305:238:3,-58,33.5,0,0,-0.0236902 -126184,7305:237:4,-57.5,33.5,0,0,-0.0238946 -126185,7305:237:3,-57,33.5,0,0,-0.0238785 -126186,7305:236:4,-56.5,33.5,0,0,-0.0242542 -126187,7305:236:3,-56,33.5,0,0,-0.023626 -126188,7305:235:4,-55.5,33.5,0,0,-0.0238515 -126189,7305:132:4,-52.5,33.5,0,0,-0.0142682 -126190,7305:132:3,-52,33.5,0,0,-0.0131954 -126191,7305:131:4,-51.5,33.5,0,0,-0.0130223 -126192,7305:131:3,-51,33.5,0,0,-0.0143388 -126193,7305:130:4,-50.5,33.5,0,0,-0.0148191 -126194,7305:130:3,-50,33.5,0,0,-0.0147131 -126195,7304:239:4,-49.5,33.5,0,0,-0.0142395 -126196,7304:239:3,-49,33.5,0,0,-0.0143323 -126197,7304:238:4,-48.5,33.5,0,0,-0.015003 -126198,7304:238:3,-48,33.5,0,0,-0.01608 -126199,7304:237:4,-47.5,33.5,0,0,-0.0171238 -126200,7304:237:3,-47,33.5,0,0,-0.018356 -126201,7304:236:4,-46.5,33.5,0,0,-0.0197672 -126202,7304:236:3,-46,33.5,0,0,-0.0214631 -126203,7304:235:4,-45.5,33.5,0,0,-0.0241829 -126204,7304:235:3,-45,33.5,0,0,-0.0258361 -126205,7304:134:4,-44.5,33.5,0,0,-0.0259888 -126206,7304:134:3,-44,33.5,0,0,-0.0245525 -126207,7304:133:4,-43.5,33.5,0,0,-0.0274119 -126208,7304:133:3,-43,33.5,0,0,-0.0341407 -126209,7304:132:4,-42.5,33.5,0,0,-0.0543904 -126210,7304:132:3,-42,33.5,0,0,-0.0531881 -126211,7304:131:4,-41.5,33.5,0,0,-0.0581442 -126212,7304:131:3,-41,33.5,0,0,-0.0662009 -126213,7304:130:4,-40.5,33.5,0,0,-0.0647824 -126214,7304:130:3,-40,33.5,0,0,-0.0801581 -126215,7303:239:4,-39.5,33.5,0,0,-0.0939241 -126216,7303:239:3,-39,33.5,0,0,-0.0913963 -126217,7303:238:4,-38.5,33.5,0,0,-0.0823509 -126218,7303:238:3,-38,33.5,0,0,-0.06518 -126219,7303:237:4,-37.5,33.5,0,0,-0.0658275 -126220,7303:237:3,-37,33.5,0,0,-0.0734563 -126221,7303:236:4,-36.5,33.5,0,0,-0.0849346 -126222,7303:236:3,-36,33.5,0,0,-0.0820169 -126223,7303:235:4,-35.5,33.5,0,0,-0.0812371 -126224,7303:235:3,-35,33.5,0,0,-0.0832827 -126225,7303:134:4,-34.5,33.5,0,0,-0.0871434 -126226,7303:134:3,-34,33.5,0,0,-0.0917495 -126227,7303:133:4,-33.5,33.5,0,0,-0.0990892 -126228,7303:133:3,-33,33.5,0,0,-0.0918827 -126229,7303:132:4,-32.5,33.5,0,0,-0.101553 -126230,7303:132:3,-32,33.5,0,0,-0.125159 -126231,7303:131:4,-31.5,33.5,0,0,-0.13597 -126232,7303:131:3,-31,33.5,0,0,-0.13605 -126233,7303:130:4,-30.5,33.5,0,0,-0.13605 -126234,7303:130:3,-30,33.5,0,0,-0.13605 -126235,7302:239:4,-29.5,33.5,0,0,-0.13605 -126236,7302:239:3,-29,33.5,0,0,-0.13605 -126237,7302:238:4,-28.5,33.5,0,0,-0.13605 -126238,7302:238:3,-28,33.5,0,0,-0.13605 -126239,7302:237:4,-27.5,33.5,0,0,-0.13605 -126240,7302:237:3,-27,33.5,0,0,-0.13605 -126241,7302:236:4,-26.5,33.5,0,0,-0.13605 -126242,7302:236:3,-26,33.5,0,0,-0.13605 -126243,7302:235:4,-25.5,33.5,0,0,-0.13605 -126244,7302:235:3,-25,33.5,0,0,-0.13605 -126245,7302:134:4,-24.5,33.5,0,0,-0.13605 -126246,7302:134:3,-24,33.5,0,0,-0.13605 -126247,7302:133:4,-23.5,33.5,0,0,-0.13605 -126248,7302:133:3,-23,33.5,0,0,-0.13605 -126249,7302:132:4,-22.5,33.5,0,0,-0.13605 -126250,7302:132:3,-22,33.5,0,0,-0.13605 -126251,7302:131:4,-21.5,33.5,0,0,-0.13605 -126252,7302:131:3,-21,33.5,0,0,-0.13605 -126253,7302:130:4,-20.5,33.5,0,0,-0.13605 -126254,7302:130:3,-20,33.5,0,0,-0.13605 -126255,7301:239:4,-19.5,33.5,0,0,-0.13605 -126256,7301:239:3,-19,33.5,0,0,-0.13605 -126257,7301:238:4,-18.5,33.5,0,0,-0.13605 -126258,7301:238:3,-18,33.5,0,0,-0.13605 -126259,7301:237:4,-17.5,33.5,0,0,-0.13605 -126260,7301:237:3,-17,33.5,0,0,-0.13605 -126261,7301:236:4,-16.5,33.5,0,0,-0.13605 -126262,7301:236:3,-16,33.5,0,0,-0.13605 -126263,7301:235:4,-15.5,33.5,0,0,-0.13605 -126264,7301:235:3,-15,33.5,0,0,-0.13605 -126265,7301:134:4,-14.5,33.5,0,0,-0.13605 -126266,7301:134:3,-14,33.5,0,0,-0.13605 -126267,7301:133:4,-13.5,33.5,0,0,-0.13605 -126268,7301:133:3,-13,33.5,0,0,-0.13605 -126269,7301:132:4,-12.5,33.5,0,0,-0.13605 -126270,7301:132:3,-12,33.5,0,0,-0.13605 -126271,7301:131:4,-11.5,33.5,0,0,-0.13605 -126272,7301:131:3,-11,33.5,0,0,-0.13605 -126273,7301:130:4,-10.5,33.5,0,0,-0.13605 -126274,7301:130:3,-10,33.5,0,0,-0.13605 -126275,7300:239:4,-9.5,33.5,0,0,-0.13605 -126276,7300:239:3,-9,33.5,0,0,-0.13605 -126277,7300:238:4,-8.5,33.5,0,0,-0.13605 -126278,7300:238:3,-8,33.5,0,0,-0.13605 -126279,7300:237:4,-7.5,33.5,0,0,-0.13605 -126280,7300:237:3,-7,33.5,0,0,-0.13605 -126281,7300:236:4,-6.5,33.5,0,0,-0.13605 -126282,7300:236:3,-6,33.5,0,0,-0.13605 -126283,7300:235:4,-5.5,33.5,0,0,-0.13605 -126284,7300:235:3,-5,33.5,0,0,-0.131721 -126285,7300:134:4,-4.5,33.5,0,0,-0.136013 -126286,1302:238:4,28.5,33.5,0,0,-0.13605 -126287,1302:239:3,29,33.5,0,0,-0.13605 -126288,1302:239:4,29.5,33.5,0,0,-0.13605 -126289,1303:130:3,30,33.5,0,0,-0.13605 -126290,1303:130:4,30.5,33.5,0,0,-0.13605 -126291,1303:131:3,31,33.5,0,0,-0.13605 -126292,1303:131:4,31.5,33.5,0,0,-0.13605 -126293,1303:132:3,32,33.5,0,0,-0.13605 -126294,1303:133:4,33.5,33.5,0,0,-0.13605 -126295,1303:134:3,34,33.5,0,0,-0.13605 -126296,1303:134:4,34.5,33.5,0,0,-0.13605 -126297,1303:235:3,35,33.5,0,0,-0.13605 -126298,1303:235:4,35.5,33.5,0,0,-0.13605 -126299,1303:236:3,36,33.5,0,0,-0.13605 -126300,1303:236:4,36.5,33.5,0,0,-0.13605 -126301,1303:237:3,37,33.5,0,0,-0.13605 -126302,1314:130:3,140,33.5,0,0,-0.0199237 -126303,1314:130:4,140.5,33.5,0,0,-0.022485 -126304,1314:131:3,141,33.5,0,0,-0.0186936 -126305,1314:131:4,141.5,33.5,0,0,-0.0330063 -126306,1314:132:3,142,33.5,0,0,-0.0294323 -126307,1314:132:4,142.5,33.5,0,0,-0.0349301 -126308,1314:133:3,143,33.5,0,0,-0.0301097 -126309,1314:134:4,144.5,33.5,0,0,-0.0125868 -126310,1314:235:3,145,33.5,0,0,-0.0121579 -126311,1314:235:4,145.5,33.5,0,0,-0.0135335 -126312,1314:236:3,146,33.5,0,0,-0.0136064 -126313,1314:236:4,146.5,33.5,0,0,-0.0141885 -126314,1314:237:3,147,33.5,0,0,-0.017411 -126315,1314:237:4,147.5,33.5,0,0,-0.0183435 -126316,1314:238:3,148,33.5,0,0,-0.0185302 -126317,1314:238:4,148.5,33.5,0,0,-0.0184263 -126318,1314:239:3,149,33.5,0,0,-0.0182982 -126319,1314:239:4,149.5,33.5,0,0,-0.0185136 -126320,1315:130:3,150,33.5,0,0,-0.0191666 -126321,1315:130:4,150.5,33.5,0,0,-0.0199822 -126322,1315:131:3,151,33.5,0,0,-0.0205256 -126323,1315:131:4,151.5,33.5,0,0,-0.020424 -126324,1315:132:3,152,33.5,0,0,-0.0200408 -126325,1315:132:4,152.5,33.5,0,0,-0.0192705 -126326,1315:133:3,153,33.5,0,0,-0.0184886 -126327,1315:133:4,153.5,33.5,0,0,-0.0183518 -126328,1315:134:3,154,33.5,0,0,-0.0185427 -126329,1315:134:4,154.5,33.5,0,0,-0.0180935 -126330,1315:235:3,155,33.5,0,0,-0.0175919 -126331,1315:235:4,155.5,33.5,0,0,-0.0170317 -126332,1315:236:3,156,33.5,0,0,-0.0176753 -126333,1315:236:4,156.5,33.5,0,0,-0.0194317 -126334,1315:237:3,157,33.5,0,0,-0.0203412 -126335,1315:237:4,157.5,33.5,0,0,-0.0204515 -126336,1315:238:3,158,33.5,0,0,-0.0210886 -126337,1315:238:4,158.5,33.5,0,0,-0.0217409 -126338,1315:239:3,159,33.5,0,0,-0.0215796 -126339,1315:239:4,159.5,33.5,0,0,-0.0214243 -126340,1316:130:3,160,33.5,0,0,-0.0213183 -126341,1316:130:4,160.5,33.5,0,0,-0.0212462 -126342,1316:131:3,161,33.5,0,0,-0.021227 -126343,1316:131:4,161.5,33.5,0,0,-0.0212845 -126344,1316:132:3,162,33.5,0,0,-0.0220127 -126345,1316:132:4,162.5,33.5,0,0,-0.025075 -126346,1316:133:3,163,33.5,0,0,-0.0253032 -126347,1316:133:4,163.5,33.5,0,0,-0.0248995 -126348,1316:134:3,164,33.5,0,0,-0.0250408 -126349,1316:134:4,164.5,33.5,0,0,-0.024832 -126350,1316:235:3,165,33.5,0,0,-0.0229365 -126351,1316:235:4,165.5,33.5,0,0,-0.0222074 -126352,1316:236:3,166,33.5,0,0,-0.0225409 -126353,1316:236:4,166.5,33.5,0,0,-0.0237278 -126354,1316:237:3,167,33.5,0,0,-0.0244914 -126355,1316:237:4,167.5,33.5,0,0,-0.0237923 -126356,1316:238:3,168,33.5,0,0,-0.0243477 -126357,1316:238:4,168.5,33.5,0,0,-0.0261425 -126358,1316:239:3,169,33.5,0,0,-0.0267118 -126359,1316:239:4,169.5,33.5,0,0,-0.0268821 -126360,1317:130:3,170,33.5,0,0,-0.0268334 -126361,1317:130:4,170.5,33.5,0,0,-0.0266392 -126362,1317:131:3,171,33.5,0,0,-0.0265489 -126363,1317:131:4,171.5,33.5,0,0,-0.0265608 -126364,1317:132:3,172,33.5,0,0,-0.0266937 -126365,1317:132:4,172.5,33.5,0,0,-0.0269004 -126366,1317:133:3,173,33.5,0,0,-0.0270534 -126367,1317:133:4,173.5,33.5,0,0,-0.0270043 -126368,1317:134:3,174,33.5,0,0,-0.0266392 -126369,1317:134:4,174.5,33.5,0,0,-0.0262434 -126370,1317:235:3,175,33.5,0,0,-0.0263329 -126371,1317:235:4,175.5,33.5,0,0,-0.0268455 -126372,1317:236:3,176,33.5,0,0,-0.0273435 -126373,1317:236:4,176.5,33.5,0,0,-0.0277311 -126374,1317:237:3,177,33.5,0,0,-0.0279778 -126375,1317:237:4,177.5,33.5,0,0,-0.0279778 -126376,1317:238:3,178,33.5,0,0,-0.0277879 -126377,1317:238:4,178.5,33.5,0,0,-0.0278511 -126378,1317:239:3,179,33.5,0,0,-0.0283682 -126379,1317:239:4,179.5,33.5,0,0,-0.0289874 -126380,1318:130:3,180,33.5,0,0,-0.0294256 -126381,7318:140:1,-180,34,0,0,-0.0282911 -126382,7317:249:2,-179.5,34,0,0,-0.0281883 -126383,7317:249:1,-179,34,0,0,-0.0280541 -126384,7317:248:2,-178.5,34,0,0,-0.0279588 -126385,7317:248:1,-178,34,0,0,-0.0279842 -126386,7317:247:2,-177.5,34,0,0,-0.0280989 -126387,7317:247:1,-177,34,0,0,-0.0282589 -126388,7317:246:2,-176.5,34,0,0,-0.0284263 -126389,7317:246:1,-176,34,0,0,-0.0285948 -126390,7317:245:2,-175.5,34,0,0,-0.02881 -126391,7317:245:1,-175,34,0,0,-0.029199 -126392,7317:144:2,-174.5,34,0,0,-0.0296744 -126393,7317:144:1,-174,34,0,0,-0.0300481 -126394,7317:143:2,-173.5,34,0,0,-0.0303919 -126395,7317:143:1,-173,34,0,0,-0.0306142 -126396,7317:142:2,-172.5,34,0,0,-0.0306841 -126397,7317:142:1,-172,34,0,0,-0.0307121 -126398,7317:141:2,-171.5,34,0,0,-0.0310001 -126399,7317:141:1,-171,34,0,0,-0.0317074 -126400,7317:140:2,-170.5,34,0,0,-0.0326838 -126401,7317:140:1,-170,34,0,0,-0.0335378 -126402,7316:249:2,-169.5,34,0,0,-0.0337917 -126403,7316:249:1,-169,34,0,0,-0.0337068 -126404,7316:248:2,-168.5,34,0,0,-0.0336223 -126405,7316:248:1,-168,34,0,0,-0.0339231 -126406,7316:247:2,-167.5,34,0,0,-0.0345332 -126407,7316:247:1,-167,34,0,0,-0.035026 -126408,7316:246:2,-166.5,34,0,0,-0.0355832 -126409,7316:246:1,-166,34,0,0,-0.0361249 -126410,7316:245:2,-165.5,34,0,0,-0.0365407 -126411,7316:245:1,-165,34,0,0,-0.0369024 -126412,7316:144:2,-164.5,34,0,0,-0.0371486 -126413,7316:144:1,-164,34,0,0,-0.0371143 -126414,7316:143:2,-163.5,34,0,0,-0.0369533 -126415,7316:143:1,-163,34,0,0,-0.0371486 -126416,7316:142:2,-162.5,34,0,0,-0.0377493 -126417,7316:142:1,-162,34,0,0,-0.0380098 -126418,7316:141:2,-161.5,34,0,0,-0.0374219 -126419,7316:141:1,-161,34,0,0,-0.0365576 -126420,7316:140:2,-160.5,34,0,0,-0.0374822 -126421,7316:140:1,-160,34,0,0,-0.0384837 -126422,7315:249:2,-159.5,34,0,0,-0.03908 -126423,7315:249:1,-159,34,0,0,-0.0394498 -126424,7315:248:2,-158.5,34,0,0,-0.0390441 -126425,7315:248:1,-158,34,0,0,-0.038528 -126426,7315:247:2,-157.5,34,0,0,-0.0388028 -126427,7315:247:1,-157,34,0,0,-0.0398872 -126428,7315:246:2,-156.5,34,0,0,-0.0412108 -126429,7315:246:1,-156,34,0,0,-0.0419378 -126430,7315:245:2,-155.5,34,0,0,-0.0422575 -126431,7315:245:1,-155,34,0,0,-0.0433524 -126432,7315:144:2,-154.5,34,0,0,-0.0450968 -126433,7315:144:1,-154,34,0,0,-0.0474935 -126434,7315:143:2,-153.5,34,0,0,-0.0486962 -126435,7315:143:1,-153,34,0,0,-0.0483142 -126436,7315:142:2,-152.5,34,0,0,-0.0494929 -126437,7315:142:1,-152,34,0,0,-0.0518446 -126438,7315:141:2,-151.5,34,0,0,-0.0528549 -126439,7315:141:1,-151,34,0,0,-0.0530644 -126440,7315:140:2,-150.5,34,0,0,-0.0537479 -126441,7315:140:1,-150,34,0,0,-0.0547462 -126442,7314:249:2,-149.5,34,0,0,-0.0557768 -126443,7314:249:1,-149,34,0,0,-0.0566031 -126444,7314:248:2,-148.5,34,0,0,-0.0570009 -126445,7314:248:1,-148,34,0,0,-0.0567751 -126446,7314:247:2,-147.5,34,0,0,-0.056051 -126447,7314:247:1,-147,34,0,0,-0.0556471 -126448,7314:246:2,-146.5,34,0,0,-0.0562081 -126449,7314:246:1,-146,34,0,0,-0.0579678 -126450,7314:245:2,-145.5,34,0,0,-0.0607173 -126451,7314:245:1,-145,34,0,0,-0.0625826 -126452,7314:144:2,-144.5,34,0,0,-0.0630105 -126453,7314:144:1,-144,34,0,0,-0.0634707 -126454,7314:143:2,-143.5,34,0,0,-0.0648285 -126455,7314:143:1,-143,34,0,0,-0.066765 -126456,7314:142:2,-142.5,34,0,0,-0.0679722 -126457,7314:142:1,-142,34,0,0,-0.0689254 -126458,7314:141:2,-141.5,34,0,0,-0.0708415 -126459,7314:141:1,-141,34,0,0,-0.0727802 -126460,7314:140:2,-140.5,34,0,0,-0.0739986 -126461,7314:140:1,-140,34,0,0,-0.0748288 -126462,7313:249:2,-139.5,34,0,0,-0.0763372 -126463,7313:249:1,-139,34,0,0,-0.0781203 -126464,7313:248:2,-138.5,34,0,0,-0.0786058 -126465,7313:248:1,-138,34,0,0,-0.0777861 -126466,7313:247:2,-137.5,34,0,0,-0.0769755 -126467,7313:247:1,-137,34,0,0,-0.0771036 -126468,7313:246:2,-136.5,34,0,0,-0.0787368 -126469,7313:246:1,-136,34,0,0,-0.0803305 -126470,7313:245:2,-135.5,34,0,0,-0.0807724 -126471,7313:245:1,-135,34,0,0,-0.0816457 -126472,7313:144:2,-134.5,34,0,0,-0.0847106 -126473,7313:144:1,-134,34,0,0,-0.0896301 -126474,7313:143:2,-133.5,34,0,0,-0.0933578 -126475,7313:143:1,-133,34,0,0,-0.0937421 -126476,7313:142:2,-132.5,34,0,0,-0.0926621 -126477,7313:142:1,-132,34,0,0,-0.0938105 -126478,7313:141:2,-131.5,34,0,0,-0.097161 -126479,7313:141:1,-131,34,0,0,-0.0984183 -126480,7313:140:2,-130.5,34,0,0,-0.0960609 -126481,7313:140:1,-130,34,0,0,-0.0976099 -126482,7312:249:2,-129.5,34,0,0,-0.101825 -126483,7312:249:1,-129,34,0,0,-0.102346 -126484,7312:248:2,-128.5,34,0,0,-0.100447 -126485,7312:248:1,-128,34,0,0,-0.0982508 -126486,7312:247:2,-127.5,34,0,0,-0.0957824 -126487,7312:247:1,-127,34,0,0,-0.0936515 -126488,7312:246:2,-126.5,34,0,0,-0.0929082 -126489,7312:246:1,-126,34,0,0,-0.0935163 -126490,7312:245:2,-125.5,34,0,0,-0.0946762 -126491,7312:245:1,-125,34,0,0,-0.0892851 -126492,7312:144:2,-124.5,34,0,0,-0.0764281 -126493,7306:144:1,-64,34,0,0,-0.0233129 -126494,7306:143:2,-63.5,34,0,0,-0.0242761 -126495,7306:143:1,-63,34,0,0,-0.030316 -126496,7306:142:2,-62.5,34,0,0,-0.0249391 -126497,7306:142:1,-62,34,0,0,-0.0244306 -126498,7306:141:2,-61.5,34,0,0,-0.0253779 -126499,7306:141:1,-61,34,0,0,-0.0242378 -126500,7306:140:2,-60.5,34,0,0,-0.0228641 -126501,7306:140:1,-60,34,0,0,-0.0229781 -126502,7305:249:2,-59.5,34,0,0,-0.0216626 -126503,7305:249:1,-59,34,0,0,-0.0199508 -126504,7305:142:2,-52.5,34,0,0,-0.0131954 -126505,7305:142:1,-52,34,0,0,-0.0119852 -126506,7305:141:2,-51.5,34,0,0,-0.0125587 -126507,7305:141:1,-51,34,0,0,-0.0136798 -126508,7305:140:2,-50.5,34,0,0,-0.0140651 -126509,7305:140:1,-50,34,0,0,-0.0143999 -126510,7304:249:2,-49.5,34,0,0,-0.0138091 -126511,7304:249:1,-49,34,0,0,-0.0162981 -126512,7304:248:2,-48.5,34,0,0,-0.0188117 -126513,7304:248:1,-48,34,0,0,-0.0204931 -126514,7304:247:2,-47.5,34,0,0,-0.0213663 -126515,7304:247:1,-47,34,0,0,-0.0220374 -126516,7304:246:2,-46.5,34,0,0,-0.0221823 -126517,7304:246:1,-46,34,0,0,-0.0217851 -126518,7304:245:2,-45.5,34,0,0,-0.0217704 -126519,7304:245:1,-45,34,0,0,-0.0229832 -126520,7304:144:2,-44.5,34,0,0,-0.0233762 -126521,7304:144:1,-44,34,0,0,-0.0245026 -126522,7304:143:2,-43.5,34,0,0,-0.0321662 -126523,7304:143:1,-43,34,0,0,-0.0376456 -126524,7304:142:2,-42.5,34,0,0,-0.0509967 -126525,7304:142:1,-42,34,0,0,-0.0546187 -126526,7304:141:2,-41.5,34,0,0,-0.0570009 -126527,7304:141:1,-41,34,0,0,-0.0690069 -126528,7304:140:2,-40.5,34,0,0,-0.0677002 -126529,7304:140:1,-40,34,0,0,-0.0679884 -126530,7303:249:2,-39.5,34,0,0,-0.0755609 -126531,7303:249:1,-39,34,0,0,-0.0802153 -126532,7303:248:2,-38.5,34,0,0,-0.066828 -126533,7303:248:1,-38,34,0,0,-0.0603913 -126534,7303:247:2,-37.5,34,0,0,-0.0670804 -126535,7303:247:1,-37,34,0,0,-0.0767016 -126536,7303:246:2,-36.5,34,0,0,-0.083662 -126537,7303:246:1,-36,34,0,0,-0.0828054 -126538,7303:245:2,-35.5,34,0,0,-0.0827263 -126539,7303:245:1,-35,34,0,0,-0.0778975 -126540,7303:144:2,-34.5,34,0,0,-0.0819583 -126541,7303:144:1,-34,34,0,0,-0.0876683 -126542,7303:143:2,-33.5,34,0,0,-0.0897592 -126543,7303:143:1,-33,34,0,0,-0.0887498 -126544,7303:142:2,-32.5,34,0,0,-0.101974 -126545,7303:142:1,-32,34,0,0,-0.116313 -126546,7303:141:2,-31.5,34,0,0,-0.125845 -126547,7303:141:1,-31,34,0,0,-0.130444 -126548,7303:140:2,-30.5,34,0,0,-0.131327 -126549,7303:140:1,-30,34,0,0,-0.133013 -126550,7302:249:2,-29.5,34,0,0,-0.13605 -126551,7302:249:1,-29,34,0,0,-0.13605 -126552,7302:248:2,-28.5,34,0,0,-0.13605 -126553,7302:248:1,-28,34,0,0,-0.13605 -126554,7302:247:2,-27.5,34,0,0,-0.13605 -126555,7302:247:1,-27,34,0,0,-0.13605 -126556,7302:246:2,-26.5,34,0,0,-0.13605 -126557,7302:246:1,-26,34,0,0,-0.13605 -126558,7302:245:2,-25.5,34,0,0,-0.13605 -126559,7302:245:1,-25,34,0,0,-0.13605 -126560,7302:144:2,-24.5,34,0,0,-0.13605 -126561,7302:144:1,-24,34,0,0,-0.13605 -126562,7302:143:2,-23.5,34,0,0,-0.13605 -126563,7302:143:1,-23,34,0,0,-0.13605 -126564,7302:142:2,-22.5,34,0,0,-0.13605 -126565,7302:142:1,-22,34,0,0,-0.13605 -126566,7302:141:2,-21.5,34,0,0,-0.13605 -126567,7302:141:1,-21,34,0,0,-0.13605 -126568,7302:140:2,-20.5,34,0,0,-0.13605 -126569,7302:140:1,-20,34,0,0,-0.13605 -126570,7301:249:2,-19.5,34,0,0,-0.13605 -126571,7301:249:1,-19,34,0,0,-0.13605 -126572,7301:248:2,-18.5,34,0,0,-0.13605 -126573,7301:248:1,-18,34,0,0,-0.13605 -126574,7301:247:2,-17.5,34,0,0,-0.13605 -126575,7301:247:1,-17,34,0,0,-0.13605 -126576,7301:246:2,-16.5,34,0,0,-0.13605 -126577,7301:246:1,-16,34,0,0,-0.13605 -126578,7301:245:2,-15.5,34,0,0,-0.13605 -126579,7301:245:1,-15,34,0,0,-0.13605 -126580,7301:144:2,-14.5,34,0,0,-0.13605 -126581,7301:144:1,-14,34,0,0,-0.13605 -126582,7301:143:2,-13.5,34,0,0,-0.13605 -126583,7301:143:1,-13,34,0,0,-0.13605 -126584,7301:142:2,-12.5,34,0,0,-0.13605 -126585,7301:142:1,-12,34,0,0,-0.13605 -126586,7301:141:2,-11.5,34,0,0,-0.13605 -126587,7301:141:1,-11,34,0,0,-0.13605 -126588,7301:140:2,-10.5,34,0,0,-0.13605 -126589,7301:140:1,-10,34,0,0,-0.13605 -126590,7300:249:2,-9.5,34,0,0,-0.13605 -126591,7300:249:1,-9,34,0,0,-0.13605 -126592,7300:248:2,-8.5,34,0,0,-0.13605 -126593,7300:248:1,-8,34,0,0,-0.13605 -126594,7300:247:2,-7.5,34,0,0,-0.13605 -126595,7300:247:1,-7,34,0,0,-0.13605 -126596,7300:246:2,-6.5,34,0,0,-0.13605 -126597,7300:246:1,-6,34,0,0,-0.13605 -126598,7300:245:2,-5.5,34,0,0,-0.111959 -126599,1302:248:2,28.5,34,0,0,-0.125626 -126600,1302:249:1,29,34,0,0,-0.13605 -126601,1302:249:2,29.5,34,0,0,-0.13605 -126602,1303:140:1,30,34,0,0,-0.13605 -126603,1303:140:2,30.5,34,0,0,-0.13605 -126604,1303:141:1,31,34,0,0,-0.13605 -126605,1303:141:2,31.5,34,0,0,-0.13605 -126606,1303:144:2,34.5,34,0,0,-0.13605 -126607,1303:245:1,35,34,0,0,-0.13605 -126608,1303:245:2,35.5,34,0,0,-0.13605 -126609,1303:246:1,36,34,0,0,-0.13605 -126610,1314:140:2,140.5,34,0,0,-0.0171893 -126611,1314:141:1,141,34,0,0,-0.0138835 -126612,1314:141:2,141.5,34,0,0,-0.0269004 -126613,1314:142:1,142,34,0,0,-0.0183024 -126614,1314:142:2,142.5,34,0,0,-0.0239055 -126615,1314:143:1,143,34,0,0,-0.0207301 -126616,1314:144:1,144,34,0,0,-0.0122479 -126617,1314:144:2,144.5,34,0,0,-0.011728 -126618,1314:245:1,145,34,0,0,-0.0118148 -126619,1314:245:2,145.5,34,0,0,-0.0116757 -126620,1314:246:1,146,34,0,0,-0.0110266 -126621,1314:246:2,146.5,34,0,0,-0.0117517 -126622,1314:247:1,147,34,0,0,-0.0142906 -126623,1314:247:2,147.5,34,0,0,-0.0169325 -126624,1314:248:1,148,34,0,0,-0.0170662 -126625,1314:248:2,148.5,34,0,0,-0.0173407 -126626,1314:249:1,149,34,0,0,-0.0177629 -126627,1314:249:2,149.5,34,0,0,-0.0183972 -126628,1315:140:1,150,34,0,0,-0.0191795 -126629,1315:140:2,150.5,34,0,0,-0.0196474 -126630,1315:141:1,151,34,0,0,-0.0196076 -126631,1315:141:2,151.5,34,0,0,-0.0193226 -126632,1315:142:1,152,34,0,0,-0.0186936 -126633,1315:142:2,152.5,34,0,0,-0.0178832 -126634,1315:143:1,153,34,0,0,-0.017743 -126635,1315:143:2,153.5,34,0,0,-0.018171 -126636,1315:144:1,154,34,0,0,-0.0182776 -126637,1315:144:2,154.5,34,0,0,-0.0175406 -126638,1315:245:1,155,34,0,0,-0.0168339 -126639,1315:245:2,155.5,34,0,0,-0.0166571 -126640,1315:246:1,156,34,0,0,-0.0168112 -126641,1315:246:2,156.5,34,0,0,-0.0181588 -126642,1315:247:1,157,34,0,0,-0.0211077 -126643,1315:247:2,157.5,34,0,0,-0.0222275 -126644,1315:248:1,158,34,0,0,-0.021968 -126645,1315:248:2,158.5,34,0,0,-0.0216137 -126646,1315:249:1,159,34,0,0,-0.0212797 -126647,1315:249:2,159.5,34,0,0,-0.0210506 -126648,1316:140:1,160,34,0,0,-0.0208239 -126649,1316:140:2,160.5,34,0,0,-0.0208615 -126650,1316:141:1,161,34,0,0,-0.0210221 -126651,1316:141:2,161.5,34,0,0,-0.0211745 -126652,1316:142:1,162,34,0,0,-0.0219382 -126653,1316:142:2,162.5,34,0,0,-0.0238245 -126654,1316:143:1,163,34,0,0,-0.0254066 -126655,1316:143:2,163.5,34,0,0,-0.0253146 -126656,1316:144:1,164,34,0,0,-0.0251374 -126657,1316:144:2,164.5,34,0,0,-0.0234609 -126658,1316:245:1,165,34,0,0,-0.0218098 -126659,1316:245:2,165.5,34,0,0,-0.0216626 -126660,1316:246:1,166,34,0,0,-0.0220973 -126661,1316:246:2,166.5,34,0,0,-0.0230197 -126662,1316:247:1,167,34,0,0,-0.0239001 -126663,1316:247:2,167.5,34,0,0,-0.0235194 -126664,1316:248:1,168,34,0,0,-0.0229884 -126665,1316:248:2,168.5,34,0,0,-0.0238785 -126666,1316:249:1,169,34,0,0,-0.0255334 -126667,1316:249:2,169.5,34,0,0,-0.0260243 -126668,1317:140:1,170,34,0,0,-0.0258948 -126669,1317:140:2,170.5,34,0,0,-0.0257135 -126670,1317:141:1,171,34,0,0,-0.0256961 -126671,1317:141:2,171.5,34,0,0,-0.0257427 -126672,1317:142:1,172,34,0,0,-0.0257019 -126673,1317:142:2,172.5,34,0,0,-0.0255973 -126674,1317:143:1,173,34,0,0,-0.0255682 -126675,1317:143:2,173.5,34,0,0,-0.0254642 -126676,1317:144:1,174,34,0,0,-0.0251945 -126677,1317:144:2,174.5,34,0,0,-0.0251091 -126678,1317:245:1,175,34,0,0,-0.0252116 -126679,1317:245:2,175.5,34,0,0,-0.0254123 -126680,1317:246:1,176,34,0,0,-0.0257601 -126681,1317:246:2,176.5,34,0,0,-0.0261544 -126682,1317:247:1,177,34,0,0,-0.0263867 -126683,1317:247:2,177.5,34,0,0,-0.0265246 -126684,1317:248:1,178,34,0,0,-0.0267968 -126685,1317:248:2,178.5,34,0,0,-0.0273435 -126686,1317:249:1,179,34,0,0,-0.0279271 -126687,1317:249:2,179.5,34,0,0,-0.0282268 -126688,1318:140:1,180,34,0,0,-0.0282911 -126689,7318:140:3,-180,34.5,0,0,-0.027356 -126690,7317:249:4,-179.5,34.5,0,0,-0.0272629 -126691,7317:249:3,-179,34.5,0,0,-0.0271888 -126692,7317:248:4,-178.5,34.5,0,0,-0.0272072 -126693,7317:248:3,-178,34.5,0,0,-0.0273374 -126694,7317:247:4,-177.5,34.5,0,0,-0.0276306 -126695,7317:247:3,-177,34.5,0,0,-0.0279271 -126696,7317:246:4,-176.5,34.5,0,0,-0.0281244 -126697,7317:246:3,-176,34.5,0,0,-0.0283682 -126698,7317:245:4,-175.5,34.5,0,0,-0.0287577 -126699,7317:245:3,-175,34.5,0,0,-0.0292655 -126700,7317:144:4,-174.5,34.5,0,0,-0.0296002 -126701,7317:144:3,-174,34.5,0,0,-0.0296878 -126702,7317:143:4,-173.5,34.5,0,0,-0.0296407 -126703,7317:143:3,-173,34.5,0,0,-0.0296069 -126704,7317:142:4,-172.5,34.5,0,0,-0.029533 -126705,7317:142:3,-172,34.5,0,0,-0.0295263 -126706,7317:141:4,-171.5,34.5,0,0,-0.0297421 -126707,7317:141:3,-171,34.5,0,0,-0.0302195 -126708,7317:140:4,-170.5,34.5,0,0,-0.030979 -126709,7317:140:3,-170,34.5,0,0,-0.0318888 -126710,7316:249:4,-169.5,34.5,0,0,-0.0324609 -126711,7316:249:3,-169,34.5,0,0,-0.0325573 -126712,7316:248:4,-168.5,34.5,0,0,-0.0322763 -126713,7316:248:3,-168,34.5,0,0,-0.0320344 -126714,7316:247:4,-167.5,34.5,0,0,-0.0322101 -126715,7316:247:3,-167,34.5,0,0,-0.03255 -126716,7316:246:4,-166.5,34.5,0,0,-0.0331572 -126717,7316:246:3,-166,34.5,0,0,-0.0339075 -126718,7316:245:4,-165.5,34.5,0,0,-0.0346754 -126719,7316:245:3,-165,34.5,0,0,-0.0352994 -126720,7316:144:4,-164.5,34.5,0,0,-0.0357137 -126721,7316:144:3,-164,34.5,0,0,-0.0355264 -126722,7316:143:4,-163.5,34.5,0,0,-0.0349782 -126723,7316:143:3,-163,34.5,0,0,-0.0347468 -126724,7316:142:4,-162.5,34.5,0,0,-0.0351144 -126725,7316:142:3,-162,34.5,0,0,-0.0356076 -126726,7316:141:4,-161.5,34.5,0,0,-0.0357546 -126727,7316:141:3,-161,34.5,0,0,-0.0350982 -126728,7316:140:4,-160.5,34.5,0,0,-0.0355264 -126729,7316:140:3,-160,34.5,0,0,-0.0364405 -126730,7315:249:4,-159.5,34.5,0,0,-0.0364072 -126731,7315:249:3,-159,34.5,0,0,-0.036158 -126732,7315:248:4,-158.5,34.5,0,0,-0.0359268 -126733,7315:248:3,-158,34.5,0,0,-0.0358038 -126734,7315:247:4,-157.5,34.5,0,0,-0.035968 -126735,7315:247:3,-157,34.5,0,0,-0.0365911 -126736,7315:246:4,-156.5,34.5,0,0,-0.0374133 -126737,7315:246:3,-156,34.5,0,0,-0.0379665 -126738,7315:245:4,-155.5,34.5,0,0,-0.0382286 -126739,7315:245:3,-155,34.5,0,0,-0.0389458 -126740,7315:144:4,-154.5,34.5,0,0,-0.0404781 -126741,7315:144:3,-154,34.5,0,0,-0.0426095 -126742,7315:143:4,-153.5,34.5,0,0,-0.0448165 -126743,7315:143:3,-153,34.5,0,0,-0.0457577 -126744,7315:142:4,-152.5,34.5,0,0,-0.0463646 -126745,7315:142:3,-152,34.5,0,0,-0.0482024 -126746,7315:141:4,-151.5,34.5,0,0,-0.0494929 -126747,7315:141:3,-151,34.5,0,0,-0.0497345 -126748,7315:140:4,-150.5,34.5,0,0,-0.0510087 -126749,7315:140:3,-150,34.5,0,0,-0.0524141 -126750,7314:249:4,-149.5,34.5,0,0,-0.0534114 -126751,7314:249:3,-149,34.5,0,0,-0.0544411 -126752,7314:248:4,-148.5,34.5,0,0,-0.054823 -126753,7314:248:3,-148,34.5,0,0,-0.0539108 -126754,7314:247:4,-147.5,34.5,0,0,-0.0527077 -126755,7314:247:3,-147,34.5,0,0,-0.0516644 -126756,7314:246:4,-146.5,34.5,0,0,-0.0514367 -126757,7314:246:3,-146,34.5,0,0,-0.0531262 -126758,7314:245:4,-145.5,34.5,0,0,-0.0574824 -126759,7314:245:3,-145,34.5,0,0,-0.0603913 -126760,7314:144:4,-144.5,34.5,0,0,-0.0598699 -126761,7314:144:3,-144,34.5,0,0,-0.0594649 -126762,7314:143:4,-143.5,34.5,0,0,-0.0606461 -126763,7314:143:3,-143,34.5,0,0,-0.0628328 -126764,7314:142:4,-142.5,34.5,0,0,-0.0639349 -126765,7314:142:3,-142,34.5,0,0,-0.0645392 -126766,7314:141:4,-141.5,34.5,0,0,-0.0661072 -126767,7314:141:3,-141,34.5,0,0,-0.0679082 -126768,7314:140:4,-140.5,34.5,0,0,-0.0695143 -126769,7314:140:3,-140,34.5,0,0,-0.0707913 -126770,7313:249:4,-139.5,34.5,0,0,-0.0718547 -126771,7313:249:3,-139,34.5,0,0,-0.0725904 -126772,7313:248:4,-138.5,34.5,0,0,-0.0726424 -126773,7313:248:3,-138,34.5,0,0,-0.0723159 -126774,7313:247:4,-137.5,34.5,0,0,-0.0719399 -126775,7313:247:3,-137,34.5,0,0,-0.0719914 -126776,7313:246:4,-136.5,34.5,0,0,-0.0732477 -126777,7313:246:3,-136,34.5,0,0,-0.074864 -126778,7313:245:4,-135.5,34.5,0,0,-0.0761198 -126779,7313:245:3,-135,34.5,0,0,-0.0779898 -126780,7313:144:4,-134.5,34.5,0,0,-0.0812951 -126781,7313:144:3,-134,34.5,0,0,-0.0853832 -126782,7313:143:4,-133.5,34.5,0,0,-0.0878369 -126783,7313:143:3,-133,34.5,0,0,-0.0876683 -126784,7313:142:4,-132.5,34.5,0,0,-0.0869966 -126785,7313:142:3,-132,34.5,0,0,-0.0894571 -126786,7313:141:4,-131.5,34.5,0,0,-0.0937421 -126787,7313:141:3,-131,34.5,0,0,-0.0929308 -126788,7313:140:4,-130.5,34.5,0,0,-0.0891567 -126789,7313:140:3,-130,34.5,0,0,-0.0907158 -126790,7312:249:4,-129.5,34.5,0,0,-0.0948364 -126791,7312:249:3,-129,34.5,0,0,-0.0963404 -126792,7312:248:4,-128.5,34.5,0,0,-0.0954349 -126793,7312:248:3,-128,34.5,0,0,-0.09406 -126794,7312:247:4,-127.5,34.5,0,0,-0.092998 -126795,7312:247:3,-127,34.5,0,0,-0.0914845 -126796,7312:246:4,-126.5,34.5,0,0,-0.0909128 -126797,7312:246:3,-126,34.5,0,0,-0.0913742 -126798,7312:245:4,-125.5,34.5,0,0,-0.0923718 -126799,7312:245:3,-125,34.5,0,0,-0.0828054 -126800,7306:144:3,-64,34.5,0,0,-0.0221874 -126801,7306:143:4,-63.5,34.5,0,0,-0.0204009 -126802,7306:143:3,-63,34.5,0,0,-0.0199733 -126803,7306:142:4,-62.5,34.5,0,0,-0.0198924 -126804,7306:142:3,-62,34.5,0,0,-0.0203596 -126805,7306:141:4,-61.5,34.5,0,0,-0.0214678 -126806,7306:141:3,-61,34.5,0,0,-0.0204884 -126807,7306:140:4,-60.5,34.5,0,0,-0.0195767 -126808,7306:140:3,-60,34.5,0,0,-0.0199462 -126809,7305:249:4,-59.5,34.5,0,0,-0.020195 -126810,7305:249:3,-59,34.5,0,0,-0.0192401 -126811,7305:248:4,-58.5,34.5,0,0,-0.0183353 -126812,7305:248:3,-58,34.5,0,0,-0.01646 -126813,7305:143:3,-53,34.5,0,0,-0.0110241 -126814,7305:142:4,-52.5,34.5,0,0,-0.012082 -126815,7305:142:3,-52,34.5,0,0,-0.0115048 -126816,7305:141:4,-51.5,34.5,0,0,-0.0124384 -126817,7305:141:3,-51,34.5,0,0,-0.0131453 -126818,7305:140:4,-50.5,34.5,0,0,-0.0134519 -126819,7305:140:3,-50,34.5,0,0,-0.0138897 -126820,7304:249:4,-49.5,34.5,0,0,-0.0163716 -126821,7304:249:3,-49,34.5,0,0,-0.0199957 -126822,7304:248:4,-48.5,34.5,0,0,-0.0215991 -126823,7304:248:3,-48,34.5,0,0,-0.0223786 -126824,7304:247:4,-47.5,34.5,0,0,-0.0232919 -126825,7304:247:3,-47,34.5,0,0,-0.0277184 -126826,7304:246:4,-46.5,34.5,0,0,-0.0283553 -126827,7304:246:3,-46,34.5,0,0,-0.0270043 -126828,7304:245:4,-45.5,34.5,0,0,-0.0246472 -126829,7304:245:3,-45,34.5,0,0,-0.0238894 -126830,7304:144:4,-44.5,34.5,0,0,-0.0250523 -126831,7304:144:3,-44,34.5,0,0,-0.0308451 -126832,7304:143:4,-43.5,34.5,0,0,-0.0364907 -126833,7304:143:3,-43,34.5,0,0,-0.0446926 -126834,7304:142:4,-42.5,34.5,0,0,-0.0558292 -126835,7304:142:3,-42,34.5,0,0,-0.0548612 -126836,7304:141:4,-41.5,34.5,0,0,-0.0531756 -126837,7304:141:3,-41,34.5,0,0,-0.0614335 -126838,7304:140:4,-40.5,34.5,0,0,-0.0714478 -126839,7304:140:3,-40,34.5,0,0,-0.069695 -126840,7303:249:4,-39.5,34.5,0,0,-0.0756508 -126841,7303:249:3,-39,34.5,0,0,-0.0695468 -126842,7303:248:4,-38.5,34.5,0,0,-0.0568281 -126843,7303:248:3,-38,34.5,0,0,-0.0590902 -126844,7303:247:4,-37.5,34.5,0,0,-0.06589 -126845,7303:247:3,-37,34.5,0,0,-0.0701748 -126846,7303:246:4,-36.5,34.5,0,0,-0.0677802 -126847,7303:246:3,-36,34.5,0,0,-0.0660607 -126848,7303:245:4,-35.5,34.5,0,0,-0.0683261 -126849,7303:245:3,-35,34.5,0,0,-0.0717867 -126850,7303:144:4,-34.5,34.5,0,0,-0.0789812 -126851,7303:144:3,-34,34.5,0,0,-0.0810236 -126852,7303:143:4,-33.5,34.5,0,0,-0.0851381 -126853,7303:143:3,-33,34.5,0,0,-0.0893067 -126854,7303:142:4,-32.5,34.5,0,0,-0.096879 -126855,7303:142:3,-32,34.5,0,0,-0.104108 -126856,7303:141:4,-31.5,34.5,0,0,-0.119812 -126857,7303:141:3,-31,34.5,0,0,-0.135948 -126858,7303:140:4,-30.5,34.5,0,0,-0.135604 -126859,7303:140:3,-30,34.5,0,0,-0.13605 -126860,7302:249:4,-29.5,34.5,0,0,-0.13605 -126861,7302:249:3,-29,34.5,0,0,-0.13605 -126862,7302:248:4,-28.5,34.5,0,0,-0.13605 -126863,7302:248:3,-28,34.5,0,0,-0.13605 -126864,7302:247:4,-27.5,34.5,0,0,-0.13605 -126865,7302:247:3,-27,34.5,0,0,-0.13605 -126866,7302:246:4,-26.5,34.5,0,0,-0.13605 -126867,7302:246:3,-26,34.5,0,0,-0.13605 -126868,7302:245:4,-25.5,34.5,0,0,-0.13605 -126869,7302:245:3,-25,34.5,0,0,-0.13605 -126870,7302:144:4,-24.5,34.5,0,0,-0.13605 -126871,7302:144:3,-24,34.5,0,0,-0.13605 -126872,7302:143:4,-23.5,34.5,0,0,-0.13605 -126873,7302:143:3,-23,34.5,0,0,-0.13605 -126874,7302:142:4,-22.5,34.5,0,0,-0.13605 -126875,7302:142:3,-22,34.5,0,0,-0.13605 -126876,7302:141:4,-21.5,34.5,0,0,-0.13605 -126877,7302:141:3,-21,34.5,0,0,-0.13605 -126878,7302:140:4,-20.5,34.5,0,0,-0.13605 -126879,7302:140:3,-20,34.5,0,0,-0.13605 -126880,7301:249:4,-19.5,34.5,0,0,-0.13605 -126881,7301:249:3,-19,34.5,0,0,-0.13605 -126882,7301:248:4,-18.5,34.5,0,0,-0.13605 -126883,7301:248:3,-18,34.5,0,0,-0.13605 -126884,7301:247:4,-17.5,34.5,0,0,-0.13605 -126885,7301:247:3,-17,34.5,0,0,-0.13605 -126886,7301:246:4,-16.5,34.5,0,0,-0.13605 -126887,7301:246:3,-16,34.5,0,0,-0.13605 -126888,7301:245:4,-15.5,34.5,0,0,-0.13605 -126889,7301:245:3,-15,34.5,0,0,-0.13605 -126890,7301:144:4,-14.5,34.5,0,0,-0.13605 -126891,7301:144:3,-14,34.5,0,0,-0.13605 -126892,7301:143:4,-13.5,34.5,0,0,-0.13605 -126893,7301:143:3,-13,34.5,0,0,-0.136041 -126894,7301:142:4,-12.5,34.5,0,0,-0.134218 -126895,7301:142:3,-12,34.5,0,0,-0.134554 -126896,7301:141:4,-11.5,34.5,0,0,-0.135537 -126897,7301:141:3,-11,34.5,0,0,-0.134554 -126898,7301:140:4,-10.5,34.5,0,0,-0.135896 -126899,7301:140:3,-10,34.5,0,0,-0.136005 -126900,7300:249:4,-9.5,34.5,0,0,-0.13605 -126901,7300:249:3,-9,34.5,0,0,-0.13605 -126902,7300:248:4,-8.5,34.5,0,0,-0.13605 -126903,7300:248:3,-8,34.5,0,0,-0.13605 -126904,7300:247:4,-7.5,34.5,0,0,-0.13605 -126905,7300:247:3,-7,34.5,0,0,-0.13605 -126906,7300:246:4,-6.5,34.5,0,0,-0.13605 -126907,7300:246:3,-6,34.5,0,0,-0.13605 -126908,7300:245:4,-5.5,34.5,0,0,-0.13605 -126909,7300:245:3,-5,34.5,0,0,-0.13605 -126910,7300:144:3,-4,34.5,0,0,-0.104209 -126911,7300:143:4,-3.5,34.5,0,0,-0.103223 -126912,7300:143:3,-3,34.5,0,0,-0.0846902 -126913,1302:249:3,29,34.5,0,0,-0.125096 -126914,1302:249:4,29.5,34.5,0,0,-0.13605 -126915,1303:140:3,30,34.5,0,0,-0.13605 -126916,1303:140:4,30.5,34.5,0,0,-0.13605 -126917,1303:141:3,31,34.5,0,0,-0.13605 -126918,1303:141:4,31.5,34.5,0,0,-0.13605 -126919,1314:141:3,141,34.5,0,0,-0.0123857 -126920,1314:141:4,141.5,34.5,0,0,-0.0111206 -126921,1314:142:3,142,34.5,0,0,-0.0147263 -126922,1314:142:4,142.5,34.5,0,0,-0.0123663 -126923,1314:143:3,143,34.5,0,0,-0.0157267 -126924,1314:144:3,144,34.5,0,0,-0.0118599 -126925,1314:144:4,144.5,34.5,0,0,-0.0107182 -126926,1314:245:3,145,34.5,0,0,-0.0117412 -126927,1314:245:4,145.5,34.5,0,0,-0.0111704 -126928,1314:246:3,146,34.5,0,0,-0.0097678 -126929,1314:246:4,146.5,34.5,0,0,-0.010711 -126930,1314:247:3,147,34.5,0,0,-0.013225 -126931,1314:247:4,147.5,34.5,0,0,-0.0147528 -126932,1314:248:3,148,34.5,0,0,-0.0155721 -126933,1314:248:4,148.5,34.5,0,0,-0.0162981 -126934,1314:249:3,149,34.5,0,0,-0.0168112 -126935,1314:249:4,149.5,34.5,0,0,-0.0172979 -126936,1315:140:3,150,34.5,0,0,-0.0179597 -126937,1315:140:4,150.5,34.5,0,0,-0.0183477 -126938,1315:141:3,151,34.5,0,0,-0.0181956 -126939,1315:141:4,151.5,34.5,0,0,-0.0176356 -126940,1315:142:3,152,34.5,0,0,-0.0170701 -126941,1315:142:4,152.5,34.5,0,0,-0.0169401 -126942,1315:143:3,153,34.5,0,0,-0.0172785 -126943,1315:143:4,153.5,34.5,0,0,-0.0180205 -126944,1315:144:3,154,34.5,0,0,-0.0180854 -126945,1315:144:4,154.5,34.5,0,0,-0.017329 -126946,1315:245:3,155,34.5,0,0,-0.0169477 -126947,1315:245:4,155.5,34.5,0,0,-0.0167509 -126948,1315:246:3,156,34.5,0,0,-0.0165936 -126949,1315:246:4,156.5,34.5,0,0,-0.0167886 -126950,1315:247:3,157,34.5,0,0,-0.0176713 -126951,1315:247:4,157.5,34.5,0,0,-0.0200996 -126952,1315:248:3,158,34.5,0,0,-0.021497 -126953,1315:248:4,158.5,34.5,0,0,-0.0214678 -126954,1315:249:3,159,34.5,0,0,-0.0211315 -126955,1315:249:4,159.5,34.5,0,0,-0.0208756 -126956,1316:140:3,160,34.5,0,0,-0.0206089 -126957,1316:140:4,160.5,34.5,0,0,-0.0206416 -126958,1316:141:3,161,34.5,0,0,-0.0209228 -126959,1316:141:4,161.5,34.5,0,0,-0.0211171 -126960,1316:142:3,162,34.5,0,0,-0.0215309 -126961,1316:142:4,162.5,34.5,0,0,-0.0221823 -126962,1316:143:3,163,34.5,0,0,-0.0229469 -126963,1316:143:4,163.5,34.5,0,0,-0.0228485 -126964,1316:144:3,164,34.5,0,0,-0.0219134 -126965,1316:144:4,164.5,34.5,0,0,-0.0212797 -126966,1316:245:3,165,34.5,0,0,-0.0213663 -126967,1316:245:4,165.5,34.5,0,0,-0.0216332 -126968,1316:246:3,166,34.5,0,0,-0.0219432 -126969,1316:246:4,166.5,34.5,0,0,-0.022313 -126970,1316:247:3,167,34.5,0,0,-0.0226788 -126971,1316:247:4,167.5,34.5,0,0,-0.0226276 -126972,1316:248:3,168,34.5,0,0,-0.0227661 -126973,1316:248:4,168.5,34.5,0,0,-0.0234982 -126974,1316:249:3,169,34.5,0,0,-0.0245413 -126975,1316:249:4,169.5,34.5,0,0,-0.0250296 -126976,1317:140:3,170,34.5,0,0,-0.0250807 -126977,1317:140:4,170.5,34.5,0,0,-0.0249503 -126978,1317:141:3,171,34.5,0,0,-0.024759 -126979,1317:141:4,171.5,34.5,0,0,-0.0246695 -126980,1317:142:3,172,34.5,0,0,-0.0246137 -126981,1317:142:4,172.5,34.5,0,0,-0.0246472 -126982,1317:143:3,173,34.5,0,0,-0.0247366 -126983,1317:143:4,173.5,34.5,0,0,-0.0248263 -126984,1317:144:3,174,34.5,0,0,-0.0248995 -126985,1317:144:4,174.5,34.5,0,0,-0.024956 -126986,1317:245:3,175,34.5,0,0,-0.0250126 -126987,1317:245:4,175.5,34.5,0,0,-0.0251489 -126988,1317:246:3,176,34.5,0,0,-0.0253779 -126989,1317:246:4,176.5,34.5,0,0,-0.0255624 -126990,1317:247:3,177,34.5,0,0,-0.0256843 -126991,1317:247:4,177.5,34.5,0,0,-0.0258832 -126992,1317:248:3,178,34.5,0,0,-0.0262852 -126993,1317:248:4,178.5,34.5,0,0,-0.026815 -126994,1317:249:3,179,34.5,0,0,-0.0271703 -126995,1317:249:4,179.5,34.5,0,0,-0.0273187 -126996,1318:140:3,180,34.5,0,0,-0.027356 -126997,7318:350:1,-180,35,0,0,-0.0266514 -126998,7317:459:2,-179.5,35,0,0,-0.0267059 -126999,7317:459:1,-179,35,0,0,-0.0267846 -127000,7317:458:2,-178.5,35,0,0,-0.0269981 -127001,7317:458:1,-178,35,0,0,-0.0272197 -127002,7317:457:2,-177.5,35,0,0,-0.0273994 -127003,7317:457:1,-177,35,0,0,-0.0275179 -127004,7317:456:2,-176.5,35,0,0,-0.0276367 -127005,7317:456:1,-176,35,0,0,-0.0278764 -127006,7317:455:2,-175.5,35,0,0,-0.0282203 -127007,7317:455:1,-175,35,0,0,-0.0285817 -127008,7317:354:2,-174.5,35,0,0,-0.0287904 -127009,7317:354:1,-174,35,0,0,-0.0287707 -127010,7317:353:2,-173.5,35,0,0,-0.0287772 -127011,7317:353:1,-173,35,0,0,-0.0289215 -127012,7317:352:2,-172.5,35,0,0,-0.0289675 -127013,7317:352:1,-172,35,0,0,-0.0291128 -127014,7317:351:2,-171.5,35,0,0,-0.0294994 -127015,7317:351:1,-171,35,0,0,-0.0298777 -127016,7317:350:2,-170.5,35,0,0,-0.0302128 -127017,7317:350:1,-170,35,0,0,-0.0306562 -127018,7316:459:2,-169.5,35,0,0,-0.0310709 -127019,7316:459:1,-169,35,0,0,-0.0313196 -127020,7316:458:2,-168.5,35,0,0,-0.0312342 -127021,7316:458:1,-168,35,0,0,-0.0308241 -127022,7316:457:2,-167.5,35,0,0,-0.0306351 -127023,7316:457:1,-167,35,0,0,-0.0307961 -127024,7316:456:2,-166.5,35,0,0,-0.0313053 -127025,7316:456:1,-166,35,0,0,-0.0321295 -127026,7316:455:2,-165.5,35,0,0,-0.033142 -127027,7316:455:1,-165,35,0,0,-0.0340006 -127028,7316:354:2,-164.5,35,0,0,-0.0344464 -127029,7316:354:1,-164,35,0,0,-0.0340941 -127030,7316:353:2,-163.5,35,0,0,-0.0331875 -127031,7316:353:1,-163,35,0,0,-0.0324758 -127032,7316:352:2,-162.5,35,0,0,-0.0325872 -127033,7316:352:1,-162,35,0,0,-0.033059 -127034,7316:351:2,-161.5,35,0,0,-0.0334843 -127035,7316:351:1,-161,35,0,0,-0.0334843 -127036,7316:350:2,-160.5,35,0,0,-0.033699 -127037,7316:350:1,-160,35,0,0,-0.0345252 -127038,7315:459:2,-159.5,35,0,0,-0.0346913 -127039,7315:459:1,-159,35,0,0,-0.0343835 -127040,7315:458:2,-158.5,35,0,0,-0.0341095 -127041,7315:458:1,-158,35,0,0,-0.0338612 -127042,7315:457:2,-157.5,35,0,0,-0.0337145 -127043,7315:457:1,-157,35,0,0,-0.0338766 -127044,7315:456:2,-156.5,35,0,0,-0.034407 -127045,7315:456:1,-156,35,0,0,-0.0350021 -127046,7315:455:2,-155.5,35,0,0,-0.03551 -127047,7315:455:1,-155,35,0,0,-0.0359188 -127048,7315:354:2,-154.5,35,0,0,-0.0363571 -127049,7315:354:1,-154,35,0,0,-0.0371741 -127050,7315:353:2,-153.5,35,0,0,-0.0385898 -127051,7315:353:1,-153,35,0,0,-0.0403758 -127052,7315:352:2,-152.5,35,0,0,-0.0419764 -127053,7315:352:1,-152,35,0,0,-0.0436229 -127054,7315:351:2,-151.5,35,0,0,-0.0455154 -127055,7315:351:1,-151,35,0,0,-0.046655 -127056,7315:350:2,-150.5,35,0,0,-0.0484038 -127057,7315:350:1,-150,35,0,0,-0.0498268 -127058,7314:459:2,-149.5,35,0,0,-0.0502213 -127059,7314:459:1,-149,35,0,0,-0.0508193 -127060,7314:458:2,-148.5,35,0,0,-0.0516765 -127061,7314:458:1,-148,35,0,0,-0.0516644 -127062,7314:457:2,-147.5,35,0,0,-0.0507602 -127063,7314:457:1,-147,35,0,0,-0.0492181 -127064,7314:456:2,-146.5,35,0,0,-0.0475045 -127065,7314:456:1,-146,35,0,0,-0.0467305 -127066,7314:455:2,-145.5,35,0,0,-0.0488318 -127067,7314:455:1,-145,35,0,0,-0.0545426 -127068,7314:354:2,-144.5,35,0,0,-0.057081 -127069,7314:354:1,-144,35,0,0,-0.0558813 -127070,7314:353:2,-143.5,35,0,0,-0.0547591 -127071,7314:353:1,-143,35,0,0,-0.0554009 -127072,7314:352:2,-142.5,35,0,0,-0.0579273 -127073,7314:352:1,-142,35,0,0,-0.0597438 -127074,7314:351:2,-141.5,35,0,0,-0.0606037 -127075,7314:351:1,-141,35,0,0,-0.0614621 -127076,7314:350:2,-140.5,35,0,0,-0.0629956 -127077,7314:350:1,-140,35,0,0,-0.0648285 -127078,7313:459:2,-139.5,35,0,0,-0.0656418 -127079,7313:459:1,-139,35,0,0,-0.0657348 -127080,7313:458:2,-138.5,35,0,0,-0.0662633 -127081,7313:458:1,-138,35,0,0,-0.066954 -127082,7313:457:2,-137.5,35,0,0,-0.0673973 -127083,7313:457:1,-137,35,0,0,-0.0683099 -127084,7313:456:2,-136.5,35,0,0,-0.0698767 -127085,7313:456:1,-136,35,0,0,-0.0713297 -127086,7313:455:2,-135.5,35,0,0,-0.0730915 -127087,7313:455:1,-135,35,0,0,-0.0757766 -127088,7313:354:2,-134.5,35,0,0,-0.0792454 -127089,7313:354:1,-134,35,0,0,-0.0822332 -127090,7313:353:2,-133.5,35,0,0,-0.0831629 -127091,7313:353:1,-133,35,0,0,-0.0826671 -127092,7313:352:2,-132.5,35,0,0,-0.0835221 -127093,7313:352:1,-132,35,0,0,-0.0872271 -127094,7313:351:2,-131.5,35,0,0,-0.0908687 -127095,7313:351:1,-131,35,0,0,-0.087795 -127096,7313:350:2,-130.5,35,0,0,-0.0839228 -127097,7313:350:1,-130,35,0,0,-0.0843867 -127098,7312:459:2,-129.5,35,0,0,-0.0863723 -127099,7312:459:1,-129,35,0,0,-0.086352 -127100,7312:458:2,-128.5,35,0,0,-0.0863932 -127101,7312:458:1,-128,35,0,0,-0.0880485 -127102,7312:457:2,-127.5,35,0,0,-0.0905412 -127103,7312:457:1,-127,35,0,0,-0.0899759 -127104,7312:456:2,-126.5,35,0,0,-0.0887928 -127105,7312:456:1,-126,35,0,0,-0.0896512 -127106,7312:455:2,-125.5,35,0,0,-0.0901056 -127107,7312:455:1,-125,35,0,0,-0.0841642 -127108,7306:458:2,-68.5,35,0,0,-0.0216724 -127109,7306:458:1,-68,35,0,0,-0.0198879 -127110,7306:353:1,-63,35,0,0,-0.0179356 -127111,7306:352:2,-62.5,35,0,0,-0.0192921 -127112,7306:352:1,-62,35,0,0,-0.0200499 -127113,7306:351:2,-61.5,35,0,0,-0.0186851 -127114,7306:351:1,-61,35,0,0,-0.0174227 -127115,7306:350:2,-60.5,35,0,0,-0.0167735 -127116,7306:350:1,-60,35,0,0,-0.0169935 -127117,7305:459:2,-59.5,35,0,0,-0.0183229 -127118,7305:459:1,-59,35,0,0,-0.0191838 -127119,7305:458:2,-58.5,35,0,0,-0.0183849 -127120,7305:458:1,-58,35,0,0,-0.0172126 -127121,7305:352:2,-52.5,35,0,0,-0.0110735 -127122,7305:352:1,-52,35,0,0,-0.0116236 -127123,7305:351:2,-51.5,35,0,0,-0.0149493 -127124,7305:351:1,-51,35,0,0,-0.0164157 -127125,7305:350:2,-50.5,35,0,0,-0.0164563 -127126,7305:350:1,-50,35,0,0,-0.0168528 -127127,7304:459:2,-49.5,35,0,0,-0.0183932 -127128,7304:459:1,-49,35,0,0,-0.0203459 -127129,7304:458:2,-48.5,35,0,0,-0.0218838 -127130,7304:458:1,-48,35,0,0,-0.0226174 -127131,7304:457:2,-47.5,35,0,0,-0.0233656 -127132,7304:457:1,-47,35,0,0,-0.0298505 -127133,7304:456:2,-46.5,35,0,0,-0.0330288 -127134,7304:456:1,-46,35,0,0,-0.0322763 -127135,7304:455:2,-45.5,35,0,0,-0.0306911 -127136,7304:455:1,-45,35,0,0,-0.0316569 -127137,7304:354:2,-44.5,35,0,0,-0.0374735 -127138,7304:354:1,-44,35,0,0,-0.0409556 -127139,7304:353:2,-43.5,35,0,0,-0.0402183 -127140,7304:353:1,-43,35,0,0,-0.050784 -127141,7304:352:2,-42.5,35,0,0,-0.0570009 -127142,7304:352:1,-42,35,0,0,-0.0574689 -127143,7304:351:2,-41.5,35,0,0,-0.0548741 -127144,7304:351:1,-41,35,0,0,-0.0491499 -127145,7304:350:2,-40.5,35,0,0,-0.0627447 -127146,7304:350:1,-40,35,0,0,-0.0734212 -127147,7303:459:2,-39.5,35,0,0,-0.0751315 -127148,7303:459:1,-39,35,0,0,-0.0535482 -127149,7303:458:2,-38.5,35,0,0,-0.0575899 -127150,7303:458:1,-38,35,0,0,-0.0610313 -127151,7303:457:2,-37.5,35,0,0,-0.0630697 -127152,7303:457:1,-37,35,0,0,-0.0640703 -127153,7303:456:2,-36.5,35,0,0,-0.0653182 -127154,7303:456:1,-36,35,0,0,-0.0679243 -127155,7303:455:2,-35.5,35,0,0,-0.071668 -127156,7303:455:1,-35,35,0,0,-0.0782317 -127157,7303:354:2,-34.5,35,0,0,-0.0776567 -127158,7303:354:1,-34,35,0,0,-0.0769755 -127159,7303:353:2,-33.5,35,0,0,-0.0780641 -127160,7303:353:1,-33,35,0,0,-0.0756508 -127161,7303:352:2,-32.5,35,0,0,-0.0755609 -127162,7303:352:1,-32,35,0,0,-0.0753459 -127163,7303:351:2,-31.5,35,0,0,-0.0822723 -127164,7303:351:1,-31,35,0,0,-0.134083 -127165,7303:350:2,-30.5,35,0,0,-0.13605 -127166,7303:350:1,-30,35,0,0,-0.13605 -127167,7302:459:2,-29.5,35,0,0,-0.13605 -127168,7302:459:1,-29,35,0,0,-0.13605 -127169,7302:458:2,-28.5,35,0,0,-0.13605 -127170,7302:458:1,-28,35,0,0,-0.13605 -127171,7302:457:2,-27.5,35,0,0,-0.13605 -127172,7302:457:1,-27,35,0,0,-0.13605 -127173,7302:456:2,-26.5,35,0,0,-0.13605 -127174,7302:456:1,-26,35,0,0,-0.13605 -127175,7302:455:2,-25.5,35,0,0,-0.13605 -127176,7302:455:1,-25,35,0,0,-0.128473 -127177,7302:354:2,-24.5,35,0,0,-0.134386 -127178,7302:354:1,-24,35,0,0,-0.13605 -127179,7302:353:2,-23.5,35,0,0,-0.13605 -127180,7302:353:1,-23,35,0,0,-0.13605 -127181,7302:352:2,-22.5,35,0,0,-0.13605 -127182,7302:352:1,-22,35,0,0,-0.13605 -127183,7302:351:2,-21.5,35,0,0,-0.13605 -127184,7302:351:1,-21,35,0,0,-0.13605 -127185,7302:350:2,-20.5,35,0,0,-0.13605 -127186,7302:350:1,-20,35,0,0,-0.13605 -127187,7301:459:2,-19.5,35,0,0,-0.13605 -127188,7301:459:1,-19,35,0,0,-0.13605 -127189,7301:458:2,-18.5,35,0,0,-0.13605 -127190,7301:458:1,-18,35,0,0,-0.13605 -127191,7301:457:2,-17.5,35,0,0,-0.13605 -127192,7301:457:1,-17,35,0,0,-0.13605 -127193,7301:456:2,-16.5,35,0,0,-0.13605 -127194,7301:456:1,-16,35,0,0,-0.13605 -127195,7301:455:2,-15.5,35,0,0,-0.13605 -127196,7301:455:1,-15,35,0,0,-0.13605 -127197,7301:354:2,-14.5,35,0,0,-0.13605 -127198,7301:354:1,-14,35,0,0,-0.13605 -127199,7301:353:2,-13.5,35,0,0,-0.13605 -127200,7301:353:1,-13,35,0,0,-0.13605 -127201,7301:352:2,-12.5,35,0,0,-0.132217 -127202,7301:352:1,-12,35,0,0,-0.128762 -127203,7301:351:2,-11.5,35,0,0,-0.129956 -127204,7301:351:1,-11,35,0,0,-0.129794 -127205,7301:350:2,-10.5,35,0,0,-0.130249 -127206,7301:350:1,-10,35,0,0,-0.129309 -127207,7300:459:2,-9.5,35,0,0,-0.129891 -127208,7300:459:1,-9,35,0,0,-0.130737 -127209,7300:458:2,-8.5,35,0,0,-0.131952 -127210,7300:458:1,-8,35,0,0,-0.135231 -127211,7300:457:2,-7.5,35,0,0,-0.133046 -127212,7300:457:1,-7,35,0,0,-0.135231 -127213,7300:456:2,-6.5,35,0,0,-0.13605 -127214,7300:456:1,-6,35,0,0,-0.13605 -127215,7300:455:2,-5.5,35,0,0,-0.13605 -127216,7300:455:1,-5,35,0,0,-0.13605 -127217,7300:354:2,-4.5,35,0,0,-0.13605 -127218,7300:354:1,-4,35,0,0,-0.13358 -127219,7300:353:2,-3.5,35,0,0,-0.112705 -127220,7300:353:1,-3,35,0,0,-0.0785121 -127221,1302:459:2,29.5,35,0,0,-0.13605 -127222,1303:350:1,30,35,0,0,-0.135027 -127223,1303:350:2,30.5,35,0,0,-0.13415 -127224,1303:351:1,31,35,0,0,-0.13605 -127225,1303:351:2,31.5,35,0,0,-0.135926 -127226,1303:352:1,32,35,0,0,-0.12294 -127227,1314:352:1,142,35,0,0,-0.00909497 -127228,1314:352:2,142.5,35,0,0,-0.0108192 -127229,1314:353:1,143,35,0,0,-0.0123276 -127230,1314:354:2,144.5,35,0,0,-0.00984438 -127231,1314:455:1,145,35,0,0,-0.00948227 -127232,1314:455:2,145.5,35,0,0,-0.00982904 -127233,1314:456:1,146,35,0,0,-0.00912752 -127234,1314:456:2,146.5,35,0,0,-0.0106229 -127235,1314:457:1,147,35,0,0,-0.0128601 -127236,1314:457:2,147.5,35,0,0,-0.0141631 -127237,1314:458:1,148,35,0,0,-0.0151824 -127238,1314:458:2,148.5,35,0,0,-0.0156739 -127239,1314:459:1,149,35,0,0,-0.0160044 -127240,1314:459:2,149.5,35,0,0,-0.0157904 -127241,1315:350:1,150,35,0,0,-0.0157479 -127242,1315:350:2,150.5,35,0,0,-0.0161924 -127243,1315:351:1,151,35,0,0,-0.0167735 -127244,1315:351:2,151.5,35,0,0,-0.0169401 -127245,1315:352:1,152,35,0,0,-0.0168377 -127246,1315:352:2,152.5,35,0,0,-0.0170317 -127247,1315:353:1,153,35,0,0,-0.0173407 -127248,1315:353:2,153.5,35,0,0,-0.0177309 -127249,1315:354:1,154,35,0,0,-0.0181343 -127250,1315:354:2,154.5,35,0,0,-0.0179073 -127251,1315:455:1,155,35,0,0,-0.0173485 -127252,1315:455:2,155.5,35,0,0,-0.0166609 -127253,1315:456:1,156,35,0,0,-0.0166683 -127254,1315:456:2,156.5,35,0,0,-0.0163495 -127255,1315:457:1,157,35,0,0,-0.0167021 -127256,1315:457:2,157.5,35,0,0,-0.0167622 -127257,1315:458:1,158,35,0,0,-0.0187358 -127258,1315:458:2,158.5,35,0,0,-0.0202634 -127259,1315:459:1,159,35,0,0,-0.0207817 -127260,1315:459:2,159.5,35,0,0,-0.0206835 -127261,1316:350:1,160,35,0,0,-0.0205765 -127262,1316:350:2,160.5,35,0,0,-0.0203366 -127263,1316:351:1,161,35,0,0,-0.02047 -127264,1316:351:2,161.5,35,0,0,-0.020791 -127265,1316:352:1,162,35,0,0,-0.0209464 -127266,1316:352:2,162.5,35,0,0,-0.02106 -127267,1316:353:1,163,35,0,0,-0.0212079 -127268,1316:353:2,163.5,35,0,0,-0.0213183 -127269,1316:354:1,164,35,0,0,-0.0213809 -127270,1316:354:2,164.5,35,0,0,-0.0213761 -127271,1316:455:1,165,35,0,0,-0.0214002 -127272,1316:455:2,165.5,35,0,0,-0.0215407 -127273,1316:456:1,166,35,0,0,-0.021795 -127274,1316:456:2,166.5,35,0,0,-0.0220225 -127275,1316:457:1,167,35,0,0,-0.0222024 -127276,1316:457:2,167.5,35,0,0,-0.0226583 -127277,1316:458:1,168,35,0,0,-0.0237439 -127278,1316:458:2,168.5,35,0,0,-0.0242433 -127279,1316:459:1,169,35,0,0,-0.0242706 -127280,1316:459:2,169.5,35,0,0,-0.0243918 -127281,1317:350:1,170,35,0,0,-0.0244085 -127282,1317:350:2,170.5,35,0,0,-0.0243257 -127283,1317:351:1,171,35,0,0,-0.0242981 -127284,1317:351:2,171.5,35,0,0,-0.0243147 -127285,1317:352:1,172,35,0,0,-0.0244637 -127286,1317:352:2,172.5,35,0,0,-0.0247086 -127287,1317:353:1,173,35,0,0,-0.0248545 -127288,1317:353:2,173.5,35,0,0,-0.0248883 -127289,1317:354:1,174,35,0,0,-0.024877 -127290,1317:354:2,174.5,35,0,0,-0.0248995 -127291,1317:455:1,175,35,0,0,-0.0249617 -127292,1317:455:2,175.5,35,0,0,-0.0250523 -127293,1317:456:1,176,35,0,0,-0.0251604 -127294,1317:456:2,176.5,35,0,0,-0.0252803 -127295,1317:457:1,177,35,0,0,-0.02547 -127296,1317:457:2,177.5,35,0,0,-0.0257076 -127297,1317:458:1,178,35,0,0,-0.0259653 -127298,1317:458:2,178.5,35,0,0,-0.0261959 -127299,1317:459:1,179,35,0,0,-0.0263687 -127300,1317:459:2,179.5,35,0,0,-0.0265006 -127301,1318:350:1,180,35,0,0,-0.0266514 -127302,7318:350:3,-180,35.5,0,0,-0.026591 -127303,7317:459:4,-179.5,35.5,0,0,-0.0267787 -127304,7317:459:3,-179,35.5,0,0,-0.0269615 -127305,7317:458:4,-178.5,35.5,0,0,-0.0270595 -127306,7317:458:3,-178,35.5,0,0,-0.0271271 -127307,7317:457:4,-177.5,35.5,0,0,-0.0272072 -127308,7317:457:3,-177,35.5,0,0,-0.0272939 -127309,7317:456:4,-176.5,35.5,0,0,-0.0273933 -127310,7317:456:3,-176,35.5,0,0,-0.0275492 -127311,7317:455:4,-175.5,35.5,0,0,-0.0277815 -127312,7317:455:3,-175,35.5,0,0,-0.0279778 -127313,7317:354:4,-174.5,35.5,0,0,-0.0281244 -127314,7317:354:3,-174,35.5,0,0,-0.0282012 -127315,7317:353:4,-173.5,35.5,0,0,-0.028394 -127316,7317:353:3,-173,35.5,0,0,-0.0285557 -127317,7317:352:4,-172.5,35.5,0,0,-0.0286011 -127318,7317:352:3,-172,35.5,0,0,-0.0288953 -127319,7317:351:4,-171.5,35.5,0,0,-0.0292389 -127320,7317:351:3,-171,35.5,0,0,-0.0293056 -127321,7317:350:4,-170.5,35.5,0,0,-0.0293188 -127322,7317:350:3,-170,35.5,0,0,-0.0294123 -127323,7316:459:4,-169.5,35.5,0,0,-0.0296069 -127324,7316:459:3,-169,35.5,0,0,-0.0297962 -127325,7316:458:4,-168.5,35.5,0,0,-0.029898 -127326,7316:458:3,-168,35.5,0,0,-0.0298165 -127327,7316:457:4,-167.5,35.5,0,0,-0.0297082 -127328,7316:457:3,-167,35.5,0,0,-0.0298437 -127329,7316:456:4,-166.5,35.5,0,0,-0.0303299 -127330,7316:456:3,-166,35.5,0,0,-0.0309508 -127331,7316:455:4,-165.5,35.5,0,0,-0.0317871 -127332,7316:455:3,-165,35.5,0,0,-0.0325872 -127333,7316:354:4,-164.5,35.5,0,0,-0.0329911 -127334,7316:354:3,-164,35.5,0,0,-0.0327063 -127335,7316:353:4,-163.5,35.5,0,0,-0.0319105 -127336,7316:353:3,-163,35.5,0,0,-0.0311204 -127337,7316:352:4,-162.5,35.5,0,0,-0.0309861 -127338,7316:352:3,-162,35.5,0,0,-0.0311914 -127339,7316:351:4,-161.5,35.5,0,0,-0.0312411 -127340,7316:351:3,-161,35.5,0,0,-0.0312483 -127341,7316:350:4,-160.5,35.5,0,0,-0.0317652 -127342,7316:350:3,-160,35.5,0,0,-0.03255 -127343,7315:459:4,-159.5,35.5,0,0,-0.0329459 -127344,7315:459:3,-159,35.5,0,0,-0.0328634 -127345,7315:458:4,-158.5,35.5,0,0,-0.032654 -127346,7315:458:3,-158,35.5,0,0,-0.0324313 -127347,7315:457:4,-157.5,35.5,0,0,-0.0323058 -127348,7315:457:3,-157,35.5,0,0,-0.0325203 -127349,7315:456:4,-156.5,35.5,0,0,-0.0330212 -127350,7315:456:3,-156,35.5,0,0,-0.0335684 -127351,7315:455:4,-155.5,35.5,0,0,-0.0340473 -127352,7315:455:3,-155,35.5,0,0,-0.0342344 -127353,7315:354:4,-154.5,35.5,0,0,-0.0341486 -127354,7315:354:3,-154,35.5,0,0,-0.0341252 -127355,7315:353:4,-153.5,35.5,0,0,-0.0345173 -127356,7315:353:3,-153,35.5,0,0,-0.0354533 -127357,7315:352:4,-152.5,35.5,0,0,-0.0369194 -127358,7315:352:3,-152,35.5,0,0,-0.0387672 -127359,7315:351:4,-151.5,35.5,0,0,-0.0408522 -127360,7315:351:3,-151,35.5,0,0,-0.0427078 -127361,7315:350:4,-150.5,35.5,0,0,-0.0442719 -127362,7315:350:3,-150,35.5,0,0,-0.0457051 -127363,7314:459:4,-149.5,35.5,0,0,-0.0462254 -127364,7314:459:3,-149,35.5,0,0,-0.0460335 -127365,7314:458:4,-148.5,35.5,0,0,-0.0459699 -127366,7314:458:3,-148,35.5,0,0,-0.0465041 -127367,7314:457:4,-147.5,35.5,0,0,-0.0471539 -127368,7314:457:3,-147,35.5,0,0,-0.0470994 -127369,7314:456:4,-146.5,35.5,0,0,-0.0458637 -127370,7314:456:3,-146,35.5,0,0,-0.0442307 -127371,7314:455:4,-145.5,35.5,0,0,-0.0436029 -127372,7314:455:3,-145,35.5,0,0,-0.0451279 -127373,7314:354:4,-144.5,35.5,0,0,-0.0501399 -127374,7314:354:3,-144,35.5,0,0,-0.0532501 -127375,7314:353:4,-143.5,35.5,0,0,-0.0526954 -127376,7314:353:3,-143,35.5,0,0,-0.0514966 -127377,7314:352:4,-142.5,35.5,0,0,-0.0521226 -127378,7314:352:3,-142,35.5,0,0,-0.0543777 -127379,7314:351:4,-141.5,35.5,0,0,-0.055751 -127380,7314:351:3,-141,35.5,0,0,-0.0560902 -127381,7314:350:4,-140.5,35.5,0,0,-0.0569209 -127382,7314:350:3,-140,35.5,0,0,-0.0587318 -127383,7313:459:4,-139.5,35.5,0,0,-0.059828 -127384,7313:459:3,-139,35.5,0,0,-0.0603063 -127385,7313:458:4,-138.5,35.5,0,0,-0.0617513 -127386,7313:458:3,-138,35.5,0,0,-0.0633815 -127387,7313:457:4,-137.5,35.5,0,0,-0.0645086 -127388,7313:457:3,-137,35.5,0,0,-0.0656418 -127389,7313:456:4,-136.5,35.5,0,0,-0.0667804 -127390,7313:456:3,-136,35.5,0,0,-0.0684552 -127391,7313:455:4,-135.5,35.5,0,0,-0.0713462 -127392,7313:455:3,-135,35.5,0,0,-0.0750063 -127393,7313:354:4,-134.5,35.5,0,0,-0.0779343 -127394,7313:354:3,-134,35.5,0,0,-0.0785492 -127395,7313:353:4,-133.5,35.5,0,0,-0.0787746 -127396,7313:353:3,-133,35.5,0,0,-0.0807918 -127397,7313:352:4,-132.5,35.5,0,0,-0.0827263 -127398,7313:352:3,-132,35.5,0,0,-0.085712 -127399,7313:351:4,-131.5,35.5,0,0,-0.0881545 -127400,7313:351:3,-131,35.5,0,0,-0.0847714 -127401,7313:350:4,-130.5,35.5,0,0,-0.0804072 -127402,7313:350:3,-130,35.5,0,0,-0.0789622 -127403,7312:459:4,-129.5,35.5,0,0,-0.079321 -127404,7312:459:3,-129,35.5,0,0,-0.0798522 -127405,7312:458:4,-128.5,35.5,0,0,-0.0832225 -127406,7312:458:3,-128,35.5,0,0,-0.0855678 -127407,7312:457:4,-127.5,35.5,0,0,-0.0862686 -127408,7312:457:3,-127,35.5,0,0,-0.0867051 -127409,7312:456:4,-126.5,35.5,0,0,-0.0853426 -127410,7312:456:3,-126,35.5,0,0,-0.0876471 -127411,7312:455:4,-125.5,35.5,0,0,-0.0874577 -127412,7312:455:3,-125,35.5,0,0,-0.076174 -127413,7306:458:3,-68,35.5,0,0,-0.0209558 -127414,7306:457:4,-67.5,35.5,0,0,-0.0197139 -127415,7306:457:3,-67,35.5,0,0,-0.0187273 -127416,7306:353:4,-63.5,35.5,0,0,-0.0181221 -127417,7306:353:3,-63,35.5,0,0,-0.0176197 -127418,7306:352:4,-62.5,35.5,0,0,-0.0195063 -127419,7306:352:3,-62,35.5,0,0,-0.0193313 -127420,7306:350:4,-60.5,35.5,0,0,-0.0167961 -127421,7306:350:3,-60,35.5,0,0,-0.0161018 -127422,7305:459:4,-59.5,35.5,0,0,-0.0170393 -127423,7305:459:3,-59,35.5,0,0,-0.0169591 -127424,7305:458:4,-58.5,35.5,0,0,-0.0170393 -127425,7305:458:3,-58,35.5,0,0,-0.0173837 -127426,7305:457:4,-57.5,35.5,0,0,-0.0160404 -127427,7305:455:3,-55,35.5,0,0,-0.0105261 -127428,7305:354:4,-54.5,35.5,0,0,-0.0108968 -127429,7305:354:3,-54,35.5,0,0,-0.011148 -127430,7305:353:4,-53.5,35.5,0,0,-0.0108168 -127431,7305:353:3,-53,35.5,0,0,-0.0112909 -127432,7305:352:4,-52.5,35.5,0,0,-0.0108096 -127433,7305:352:3,-52,35.5,0,0,-0.0120389 -127434,7305:351:4,-51.5,35.5,0,0,-0.0144517 -127435,7305:351:3,-51,35.5,0,0,-0.0160044 -127436,7305:350:4,-50.5,35.5,0,0,-0.0168188 -127437,7305:350:3,-50,35.5,0,0,-0.017458 -127438,7304:459:4,-49.5,35.5,0,0,-0.0183353 -127439,7304:459:3,-49,35.5,0,0,-0.0203503 -127440,7304:458:4,-48.5,35.5,0,0,-0.0218394 -127441,7304:458:3,-48,35.5,0,0,-0.0227919 -127442,7304:457:4,-47.5,35.5,0,0,-0.0233234 -127443,7304:457:3,-47,35.5,0,0,-0.0326913 -127444,7304:456:4,-46.5,35.5,0,0,-0.0369024 -127445,7304:456:3,-46,35.5,0,0,-0.0372337 -127446,7304:455:4,-45.5,35.5,0,0,-0.0377754 -127447,7304:455:3,-45,35.5,0,0,-0.0382021 -127448,7304:354:4,-44.5,35.5,0,0,-0.0380013 -127449,7304:354:3,-44,35.5,0,0,-0.0390622 -127450,7304:353:4,-43.5,35.5,0,0,-0.0405805 -127451,7304:353:3,-43,35.5,0,0,-0.0456311 -127452,7304:352:4,-42.5,35.5,0,0,-0.050373 -127453,7304:352:3,-42,35.5,0,0,-0.0509967 -127454,7304:351:4,-41.5,35.5,0,0,-0.0510322 -127455,7304:351:3,-41,35.5,0,0,-0.04873 -127456,7304:350:4,-40.5,35.5,0,0,-0.0446102 -127457,7304:350:3,-40,35.5,0,0,-0.0604617 -127458,7303:459:4,-39.5,35.5,0,0,-0.0605755 -127459,7303:459:3,-39,35.5,0,0,-0.0509494 -127460,7303:458:4,-38.5,35.5,0,0,-0.0550661 -127461,7303:458:3,-38,35.5,0,0,-0.060377 -127462,7303:457:4,-37.5,35.5,0,0,-0.0604193 -127463,7303:457:3,-37,35.5,0,0,-0.0599542 -127464,7303:456:4,-36.5,35.5,0,0,-0.0589798 -127465,7303:456:3,-36,35.5,0,0,-0.058063 -127466,7303:455:4,-35.5,35.5,0,0,-0.0641007 -127467,7303:455:3,-35,35.5,0,0,-0.0750955 -127468,7303:354:4,-34.5,35.5,0,0,-0.0767924 -127469,7303:354:3,-34,35.5,0,0,-0.072453 -127470,7303:353:4,-33.5,35.5,0,0,-0.0730048 -127471,7303:353:3,-33,35.5,0,0,-0.075831 -127472,7303:352:4,-32.5,35.5,0,0,-0.0765008 -127473,7303:352:3,-32,35.5,0,0,-0.0737878 -127474,7303:351:4,-31.5,35.5,0,0,-0.0643269 -127475,7303:351:3,-31,35.5,0,0,-0.0802153 -127476,7303:350:4,-30.5,35.5,0,0,-0.13605 -127477,7303:350:3,-30,35.5,0,0,-0.13605 -127478,7302:459:4,-29.5,35.5,0,0,-0.13605 -127479,7302:459:3,-29,35.5,0,0,-0.13605 -127480,7302:458:4,-28.5,35.5,0,0,-0.13605 -127481,7302:458:3,-28,35.5,0,0,-0.13605 -127482,7302:457:4,-27.5,35.5,0,0,-0.13605 -127483,7302:457:3,-27,35.5,0,0,-0.13605 -127484,7302:456:4,-26.5,35.5,0,0,-0.13605 -127485,7302:456:3,-26,35.5,0,0,-0.13605 -127486,7302:455:4,-25.5,35.5,0,0,-0.131919 -127487,7302:455:3,-25,35.5,0,0,-0.115741 -127488,7302:354:4,-24.5,35.5,0,0,-0.13605 -127489,7302:354:3,-24,35.5,0,0,-0.13605 -127490,7302:353:4,-23.5,35.5,0,0,-0.13605 -127491,7302:353:3,-23,35.5,0,0,-0.132349 -127492,7302:352:4,-22.5,35.5,0,0,-0.121636 -127493,7302:352:3,-22,35.5,0,0,-0.118692 -127494,7302:351:4,-21.5,35.5,0,0,-0.120946 -127495,7302:351:3,-21,35.5,0,0,-0.125751 -127496,7302:350:4,-20.5,35.5,0,0,-0.135951 -127497,7302:350:3,-20,35.5,0,0,-0.13605 -127498,7301:459:4,-19.5,35.5,0,0,-0.13605 -127499,7301:459:3,-19,35.5,0,0,-0.13605 -127500,7301:458:4,-18.5,35.5,0,0,-0.13605 -127501,7301:458:3,-18,35.5,0,0,-0.13605 -127502,7301:457:4,-17.5,35.5,0,0,-0.13605 -127503,7301:457:3,-17,35.5,0,0,-0.13605 -127504,7301:456:4,-16.5,35.5,0,0,-0.13605 -127505,7301:456:3,-16,35.5,0,0,-0.13605 -127506,7301:455:4,-15.5,35.5,0,0,-0.13605 -127507,7301:455:3,-15,35.5,0,0,-0.13605 -127508,7301:354:4,-14.5,35.5,0,0,-0.13605 -127509,7301:354:3,-14,35.5,0,0,-0.13605 -127510,7301:353:4,-13.5,35.5,0,0,-0.13605 -127511,7301:353:3,-13,35.5,0,0,-0.135401 -127512,7301:352:4,-12.5,35.5,0,0,-0.129535 -127513,7301:352:3,-12,35.5,0,0,-0.124476 -127514,7301:351:4,-11.5,35.5,0,0,-0.124013 -127515,7301:351:3,-11,35.5,0,0,-0.124383 -127516,7301:350:4,-10.5,35.5,0,0,-0.124816 -127517,7301:350:3,-10,35.5,0,0,-0.125003 -127518,7300:459:4,-9.5,35.5,0,0,-0.12491 -127519,7300:459:3,-9,35.5,0,0,-0.122301 -127520,7300:458:4,-8.5,35.5,0,0,-0.12522 -127521,7300:458:3,-8,35.5,0,0,-0.127167 -127522,7300:457:4,-7.5,35.5,0,0,-0.116313 -127523,7300:457:3,-7,35.5,0,0,-0.117293 -127524,7300:456:4,-6.5,35.5,0,0,-0.117554 -127525,7300:456:3,-6,35.5,0,0,-0.121877 -127526,7300:455:4,-5.5,35.5,0,0,-0.126441 -127527,7300:455:3,-5,35.5,0,0,-0.125252 -127528,7300:354:4,-4.5,35.5,0,0,-0.13358 -127529,7300:354:3,-4,35.5,0,0,-0.134588 -127530,7300:353:4,-3.5,35.5,0,0,-0.122484 -127531,7300:352:4,-2.5,35.5,0,0,-0.104668 -127532,7300:352:3,-2,35.5,0,0,-0.108951 -127533,7300:351:4,-1.5,35.5,0,0,-0.0998872 -127534,1302:459:4,29.5,35.5,0,0,-0.122453 -127535,1303:350:3,30,35.5,0,0,-0.115229 -127536,1314:352:3,142,35.5,0,0,-0.00849351 -127537,1314:352:4,142.5,35.5,0,0,-0.00931253 -127538,1314:353:3,143,35.5,0,0,-0.00828599 -127539,1314:456:3,146,35.5,0,0,-0.0087062 -127540,1314:456:4,146.5,35.5,0,0,-0.0107158 -127541,1314:457:3,147,35.5,0,0,-0.0120551 -127542,1314:457:4,147.5,35.5,0,0,-0.013225 -127543,1314:458:3,148,35.5,0,0,-0.0145329 -127544,1314:458:4,148.5,35.5,0,0,-0.0150839 -127545,1314:459:3,149,35.5,0,0,-0.0152097 -127546,1314:459:4,149.5,35.5,0,0,-0.0151178 -127547,1315:350:3,150,35.5,0,0,-0.0151348 -127548,1315:350:4,150.5,35.5,0,0,-0.0153364 -127549,1315:351:3,151,35.5,0,0,-0.0160297 -127550,1315:351:4,151.5,35.5,0,0,-0.0166459 -127551,1315:352:3,152,35.5,0,0,-0.0167133 -127552,1315:352:4,152.5,35.5,0,0,-0.0169668 -127553,1315:353:3,153,35.5,0,0,-0.0173681 -127554,1315:353:4,153.5,35.5,0,0,-0.0179881 -127555,1315:354:3,154,35.5,0,0,-0.0183105 -127556,1315:354:4,154.5,35.5,0,0,-0.0181302 -127557,1315:455:3,155,35.5,0,0,-0.0176792 -127558,1315:455:4,155.5,35.5,0,0,-0.0173525 -127559,1315:456:3,156,35.5,0,0,-0.016497 -127560,1315:456:4,156.5,35.5,0,0,-0.0159973 -127561,1315:457:3,157,35.5,0,0,-0.0165229 -127562,1315:457:4,157.5,35.5,0,0,-0.0166683 -127563,1315:458:3,158,35.5,0,0,-0.016575 -127564,1315:458:4,158.5,35.5,0,0,-0.0172629 -127565,1315:459:3,159,35.5,0,0,-0.0196695 -127566,1315:459:4,159.5,35.5,0,0,-0.0207161 -127567,1316:350:3,160,35.5,0,0,-0.0206508 -127568,1316:350:4,160.5,35.5,0,0,-0.0204378 -127569,1316:351:3,161,35.5,0,0,-0.020195 -127570,1316:351:4,161.5,35.5,0,0,-0.0202497 -127571,1316:352:3,162,35.5,0,0,-0.0207348 -127572,1316:352:4,162.5,35.5,0,0,-0.0211936 -127573,1316:353:3,163,35.5,0,0,-0.0216235 -127574,1316:353:4,163.5,35.5,0,0,-0.0218886 -127575,1316:354:3,164,35.5,0,0,-0.0219184 -127576,1316:354:4,164.5,35.5,0,0,-0.0218443 -127577,1316:455:3,165,35.5,0,0,-0.0217508 -127578,1316:455:4,165.5,35.5,0,0,-0.021692 -127579,1316:456:3,166,35.5,0,0,-0.0217605 -127580,1316:456:4,166.5,35.5,0,0,-0.0220325 -127581,1316:457:3,167,35.5,0,0,-0.0226072 -127582,1316:457:4,167.5,35.5,0,0,-0.023562 -127583,1316:458:3,168,35.5,0,0,-0.0236741 -127584,1316:458:4,168.5,35.5,0,0,-0.0232129 -127585,1316:459:3,169,35.5,0,0,-0.0231083 -127586,1316:459:4,169.5,35.5,0,0,-0.0232602 -127587,1317:350:3,170,35.5,0,0,-0.0234875 -127588,1317:350:4,170.5,35.5,0,0,-0.02361 -127589,1317:351:3,171,35.5,0,0,-0.0237545 -127590,1317:351:4,171.5,35.5,0,0,-0.0240086 -127591,1317:352:3,172,35.5,0,0,-0.0241721 -127592,1317:352:4,172.5,35.5,0,0,-0.0245636 -127593,1317:353:3,173,35.5,0,0,-0.0248995 -127594,1317:353:4,173.5,35.5,0,0,-0.0249955 -127595,1317:354:3,174,35.5,0,0,-0.0250069 -127596,1317:354:4,174.5,35.5,0,0,-0.0250692 -127597,1317:455:3,175,35.5,0,0,-0.0251261 -127598,1317:455:4,175.5,35.5,0,0,-0.0251832 -127599,1317:456:3,176,35.5,0,0,-0.0252803 -127600,1317:456:4,176.5,35.5,0,0,-0.0254411 -127601,1317:457:3,177,35.5,0,0,-0.0256378 -127602,1317:457:4,177.5,35.5,0,0,-0.025807 -127603,1317:458:3,178,35.5,0,0,-0.0259772 -127604,1317:458:4,178.5,35.5,0,0,-0.0261484 -127605,1317:459:3,179,35.5,0,0,-0.0263209 -127606,1317:459:4,179.5,35.5,0,0,-0.0264586 -127607,1318:350:3,180,35.5,0,0,-0.026591 -127608,7318:360:1,-180,36,0,0,-0.0267059 -127609,7317:469:2,-179.5,36,0,0,-0.0268516 -127610,7317:469:1,-179,36,0,0,-0.0269554 -127611,7317:468:2,-178.5,36,0,0,-0.0271333 -127612,7317:468:1,-178,36,0,0,-0.0273435 -127613,7317:467:2,-177.5,36,0,0,-0.0275303 -127614,7317:467:1,-177,36,0,0,-0.0276431 -127615,7317:466:2,-176.5,36,0,0,-0.0277375 -127616,7317:466:1,-176,36,0,0,-0.0278195 -127617,7317:465:2,-175.5,36,0,0,-0.0278764 -127618,7317:465:1,-175,36,0,0,-0.0279397 -127619,7317:364:2,-174.5,36,0,0,-0.0280096 -127620,7317:364:1,-174,36,0,0,-0.0281051 -127621,7317:363:2,-173.5,36,0,0,-0.0282589 -127622,7317:363:1,-173,36,0,0,-0.0283295 -127623,7317:362:2,-172.5,36,0,0,-0.028381 -127624,7317:362:1,-172,36,0,0,-0.0284909 -127625,7317:361:2,-171.5,36,0,0,-0.0285363 -127626,7317:361:1,-171,36,0,0,-0.0284068 -127627,7317:360:2,-170.5,36,0,0,-0.0283168 -127628,7317:360:1,-170,36,0,0,-0.0283682 -127629,7316:469:2,-169.5,36,0,0,-0.0285623 -127630,7316:469:1,-169,36,0,0,-0.0287968 -127631,7316:468:2,-168.5,36,0,0,-0.0290005 -127632,7316:468:1,-168,36,0,0,-0.0290997 -127633,7316:467:2,-167.5,36,0,0,-0.0291858 -127634,7316:467:1,-167,36,0,0,-0.0294056 -127635,7316:466:2,-166.5,36,0,0,-0.0297826 -127636,7316:466:1,-166,36,0,0,-0.0300892 -127637,7316:465:2,-165.5,36,0,0,-0.03051 -127638,7316:465:1,-165,36,0,0,-0.0309579 -127639,7316:364:2,-164.5,36,0,0,-0.031227 -127640,7316:364:1,-164,36,0,0,-0.0310851 -127641,7316:363:2,-163.5,36,0,0,-0.0306283 -127642,7316:363:1,-163,36,0,0,-0.0301028 -127643,7316:362:2,-162.5,36,0,0,-0.0298368 -127644,7316:362:1,-162,36,0,0,-0.029864 -127645,7316:361:2,-161.5,36,0,0,-0.0298368 -127646,7316:361:1,-161,36,0,0,-0.0298845 -127647,7316:360:2,-160.5,36,0,0,-0.0301989 -127648,7316:360:1,-160,36,0,0,-0.0305794 -127649,7315:469:2,-159.5,36,0,0,-0.0308451 -127650,7315:469:1,-159,36,0,0,-0.0310426 -127651,7315:468:2,-158.5,36,0,0,-0.0311986 -127652,7315:468:1,-158,36,0,0,-0.0312839 -127653,7315:467:2,-157.5,36,0,0,-0.0314268 -127654,7315:467:1,-157,36,0,0,-0.0317363 -127655,7315:466:2,-156.5,36,0,0,-0.0321003 -127656,7315:466:1,-156,36,0,0,-0.0324609 -127657,7315:465:2,-155.5,36,0,0,-0.0327437 -127658,7315:465:1,-155,36,0,0,-0.0326988 -127659,7315:364:2,-154.5,36,0,0,-0.0324907 -127660,7315:364:1,-154,36,0,0,-0.0325351 -127661,7315:363:2,-153.5,36,0,0,-0.0329158 -127662,7315:363:1,-153,36,0,0,-0.0335149 -127663,7315:362:2,-152.5,36,0,0,-0.0343286 -127664,7315:362:1,-152,36,0,0,-0.035437 -127665,7315:361:2,-151.5,36,0,0,-0.0367844 -127666,7315:361:1,-151,36,0,0,-0.0380884 -127667,7315:360:2,-150.5,36,0,0,-0.0391339 -127668,7315:360:1,-150,36,0,0,-0.039814 -127669,7314:469:2,-149.5,36,0,0,-0.0400983 -127670,7314:469:1,-149,36,0,0,-0.0402183 -127671,7314:468:2,-148.5,36,0,0,-0.040562 -127672,7314:468:1,-148,36,0,0,-0.0412867 -127673,7314:467:2,-147.5,36,0,0,-0.042112 -127674,7314:467:1,-147,36,0,0,-0.0427667 -127675,7314:466:2,-146.5,36,0,0,-0.0427273 -127676,7314:466:1,-146,36,0,0,-0.0419764 -127677,7314:465:2,-145.5,36,0,0,-0.041774 -127678,7314:465:1,-145,36,0,0,-0.0423842 -127679,7314:364:2,-144.5,36,0,0,-0.0439867 -127680,7314:364:1,-144,36,0,0,-0.047285 -127681,7314:363:2,-143.5,36,0,0,-0.0489791 -127682,7314:363:1,-143,36,0,0,-0.048877 -127683,7314:362:2,-142.5,36,0,0,-0.0491954 -127684,7314:362:1,-142,36,0,0,-0.0506191 -127685,7314:361:2,-141.5,36,0,0,-0.0519171 -127686,7314:361:1,-141,36,0,0,-0.0519171 -127687,7314:360:2,-140.5,36,0,0,-0.0523777 -127688,7314:360:1,-140,36,0,0,-0.054226 -127689,7313:469:2,-139.5,36,0,0,-0.0559071 -127690,7313:469:1,-139,36,0,0,-0.0570009 -127691,7313:468:2,-138.5,36,0,0,-0.0587318 -127692,7313:468:1,-138,36,0,0,-0.0606323 -127693,7313:467:2,-137.5,36,0,0,-0.06194 -127694,7313:467:1,-137,36,0,0,-0.0627595 -127695,7313:466:2,-136.5,36,0,0,-0.0636352 -127696,7313:466:1,-136,36,0,0,-0.0653642 -127697,7313:465:2,-135.5,36,0,0,-0.0684389 -127698,7313:465:1,-135,36,0,0,-0.0719228 -127699,7313:364:2,-134.5,36,0,0,-0.0739284 -127700,7313:364:1,-134,36,0,0,-0.0748109 -127701,7313:363:2,-133.5,36,0,0,-0.0783997 -127702,7313:363:1,-133,36,0,0,-0.0815873 -127703,7313:362:2,-132.5,36,0,0,-0.0835618 -127704,7313:362:1,-132,36,0,0,-0.0851998 -127705,7313:361:2,-131.5,36,0,0,-0.0856298 -127706,7313:361:1,-131,36,0,0,-0.0803879 -127707,7313:360:2,-130.5,36,0,0,-0.0766103 -127708,7313:360:1,-130,36,0,0,-0.0763738 -127709,7312:469:2,-129.5,36,0,0,-0.077269 -127710,7312:469:1,-129,36,0,0,-0.0786429 -127711,7312:468:2,-128.5,36,0,0,-0.0817821 -127712,7312:468:1,-128,36,0,0,-0.0791889 -127713,7312:467:2,-127.5,36,0,0,-0.0793966 -127714,7312:467:1,-127,36,0,0,-0.0824303 -127715,7312:466:2,-126.5,36,0,0,-0.0845077 -127716,7312:466:1,-126,36,0,0,-0.085036 -127717,7312:465:2,-125.5,36,0,0,-0.0803492 -127718,7306:466:2,-66.5,36,0,0,-0.0194931 -127719,7306:466:1,-66,36,0,0,-0.0181262 -127720,7306:465:2,-65.5,36,0,0,-0.0174816 -127721,7306:465:1,-65,36,0,0,-0.0176713 -127722,7306:364:2,-64.5,36,0,0,-0.0182612 -127723,7306:364:1,-64,36,0,0,-0.0182037 -127724,7306:363:2,-63.5,36,0,0,-0.0175013 -127725,7306:363:1,-63,36,0,0,-0.0187062 -127726,7306:361:2,-61.5,36,0,0,-0.0171893 -127727,7306:361:1,-61,36,0,0,-0.0172396 -127728,7306:360:2,-60.5,36,0,0,-0.0166645 -127729,7306:360:1,-60,36,0,0,-0.0151858 -127730,7305:469:2,-59.5,36,0,0,-0.0150434 -127731,7305:469:1,-59,36,0,0,-0.0145459 -127732,7305:468:2,-58.5,36,0,0,-0.0147594 -127733,7305:468:1,-58,36,0,0,-0.0161887 -127734,7305:467:2,-57.5,36,0,0,-0.0156633 -127735,7305:467:1,-57,36,0,0,-0.0160476 -127736,7305:465:1,-55,36,0,0,-0.0110094 -127737,7305:364:2,-54.5,36,0,0,-0.0101613 -127738,7305:364:1,-54,36,0,0,-0.00963577 -127739,7305:363:2,-53.5,36,0,0,-0.00995927 -127740,7305:363:1,-53,36,0,0,-0.010296 -127741,7305:362:2,-52.5,36,0,0,-0.0117543 -127742,7305:362:1,-52,36,0,0,-0.0147958 -127743,7305:361:2,-51.5,36,0,0,-0.0158507 -127744,7305:361:1,-51,36,0,0,-0.0160512 -127745,7305:360:2,-50.5,36,0,0,-0.0166871 -127746,7305:360:1,-50,36,0,0,-0.0175565 -127747,7304:469:2,-49.5,36,0,0,-0.019158 -127748,7304:469:1,-49,36,0,0,-0.0210506 -127749,7304:468:2,-48.5,36,0,0,-0.0219928 -127750,7304:468:1,-48,36,0,0,-0.0230039 -127751,7304:467:2,-47.5,36,0,0,-0.0238084 -127752,7304:467:1,-47,36,0,0,-0.0293387 -127753,7304:466:2,-46.5,36,0,0,-0.0363655 -127754,7304:466:1,-46,36,0,0,-0.0367253 -127755,7304:465:2,-45.5,36,0,0,-0.0368096 -127756,7304:465:1,-45,36,0,0,-0.0375079 -127757,7304:364:2,-44.5,36,0,0,-0.0373963 -127758,7304:364:1,-44,36,0,0,-0.0362409 -127759,7304:363:2,-43.5,36,0,0,-0.0351144 -127760,7304:363:1,-43,36,0,0,-0.0369533 -127761,7304:362:2,-42.5,36,0,0,-0.0418798 -127762,7304:362:1,-42,36,0,0,-0.0469039 -127763,7304:361:2,-41.5,36,0,0,-0.0487979 -127764,7304:361:1,-41,36,0,0,-0.0414962 -127765,7304:360:2,-40.5,36,0,0,-0.0392688 -127766,7304:360:1,-40,36,0,0,-0.0472413 -127767,7303:469:2,-39.5,36,0,0,-0.0518329 -127768,7303:469:1,-39,36,0,0,-0.0485834 -127769,7303:468:2,-38.5,36,0,0,-0.0435827 -127770,7303:468:1,-38,36,0,0,-0.0490589 -127771,7303:467:2,-37.5,36,0,0,-0.0588557 -127772,7303:467:1,-37,36,0,0,-0.0601792 -127773,7303:466:2,-36.5,36,0,0,-0.0595346 -127774,7303:466:1,-36,36,0,0,-0.0547462 -127775,7303:465:2,-35.5,36,0,0,-0.0507369 -127776,7303:465:1,-35,36,0,0,-0.0503028 -127777,7303:364:2,-34.5,36,0,0,-0.0508549 -127778,7303:364:1,-34,36,0,0,-0.0490589 -127779,7303:363:2,-33.5,36,0,0,-0.0469689 -127780,7303:363:1,-33,36,0,0,-0.049769 -127781,7303:362:2,-32.5,36,0,0,-0.0542005 -127782,7303:362:1,-32,36,0,0,-0.0553753 -127783,7303:361:2,-31.5,36,0,0,-0.0531262 -127784,7303:361:1,-31,36,0,0,-0.0802539 -127785,7303:360:2,-30.5,36,0,0,-0.13605 -127786,7303:360:1,-30,36,0,0,-0.13605 -127787,7302:469:2,-29.5,36,0,0,-0.119784 -127788,7302:469:1,-29,36,0,0,-0.100471 -127789,7302:468:2,-28.5,36,0,0,-0.108684 -127790,7302:468:1,-28,36,0,0,-0.13605 -127791,7302:467:2,-27.5,36,0,0,-0.13605 -127792,7302:467:1,-27,36,0,0,-0.13605 -127793,7302:466:2,-26.5,36,0,0,-0.13605 -127794,7302:466:1,-26,36,0,0,-0.13182 -127795,7302:465:2,-25.5,36,0,0,-0.10981 -127796,7302:465:1,-25,36,0,0,-0.102997 -127797,7302:364:2,-24.5,36,0,0,-0.109621 -127798,7302:364:1,-24,36,0,0,-0.127643 -127799,7302:363:2,-23.5,36,0,0,-0.121426 -127800,7302:363:1,-23,36,0,0,-0.110187 -127801,7302:362:2,-22.5,36,0,0,-0.109245 -127802,7302:362:1,-22,36,0,0,-0.109085 -127803,7302:361:2,-21.5,36,0,0,-0.11016 -127804,7302:361:1,-21,36,0,0,-0.117642 -127805,7302:360:2,-20.5,36,0,0,-0.135027 -127806,7302:360:1,-20,36,0,0,-0.13605 -127807,7301:469:2,-19.5,36,0,0,-0.13605 -127808,7301:469:1,-19,36,0,0,-0.13605 -127809,7301:468:2,-18.5,36,0,0,-0.13605 -127810,7301:468:1,-18,36,0,0,-0.13605 -127811,7301:467:2,-17.5,36,0,0,-0.13605 -127812,7301:467:1,-17,36,0,0,-0.13605 -127813,7301:466:2,-16.5,36,0,0,-0.13605 -127814,7301:466:1,-16,36,0,0,-0.13605 -127815,7301:465:2,-15.5,36,0,0,-0.13605 -127816,7301:465:1,-15,36,0,0,-0.13605 -127817,7301:364:2,-14.5,36,0,0,-0.13605 -127818,7301:364:1,-14,36,0,0,-0.13605 -127819,7301:363:2,-13.5,36,0,0,-0.13605 -127820,7301:363:1,-13,36,0,0,-0.134858 -127821,7301:362:2,-12.5,36,0,0,-0.12777 -127822,7301:362:1,-12,36,0,0,-0.122301 -127823,7301:361:2,-11.5,36,0,0,-0.119428 -127824,7301:361:1,-11,36,0,0,-0.116342 -127825,7301:360:2,-10.5,36,0,0,-0.11577 -127826,7301:360:1,-10,36,0,0,-0.117293 -127827,7300:469:2,-9.5,36,0,0,-0.117786 -127828,7300:469:1,-9,36,0,0,-0.119665 -127829,7300:468:2,-8.5,36,0,0,-0.119163 -127830,7300:468:1,-8,36,0,0,-0.121155 -127831,7300:467:2,-7.5,36,0,0,-0.118809 -127832,7300:467:1,-7,36,0,0,-0.108021 -127833,7300:466:2,-6.5,36,0,0,-0.0955273 -127834,7300:465:2,-5.5,36,0,0,-0.107048 -127835,7300:364:2,-4.5,36,0,0,-0.116659 -127836,7300:364:1,-4,36,0,0,-0.114719 -127837,7300:363:2,-3.5,36,0,0,-0.119961 -127838,7300:363:1,-3,36,0,0,-0.122605 -127839,7300:362:2,-2.5,36,0,0,-0.123215 -127840,7300:362:1,-2,36,0,0,-0.123307 -127841,7300:361:2,-1.5,36,0,0,-0.121516 -127842,7300:361:1,-1,36,0,0,-0.104745 -127843,7300:360:2,-0.5,36,0,0,-0.0928412 -127844,1314:362:2,142.5,36,0,0,-0.0086097 -127845,1314:363:1,143,36,0,0,-0.00767492 -127846,1314:363:2,143.5,36,0,0,-0.0101138 -127847,1314:465:2,145.5,36,0,0,-0.00759504 -127848,1314:466:1,146,36,0,0,-0.00889451 -127849,1314:466:2,146.5,36,0,0,-0.0105473 -127850,1314:467:1,147,36,0,0,-0.0114816 -127851,1314:467:2,147.5,36,0,0,-0.0125082 -127852,1314:468:1,148,36,0,0,-0.0137473 -127853,1314:468:2,148.5,36,0,0,-0.0144226 -127854,1314:469:1,149,36,0,0,-0.0148324 -127855,1314:469:2,149.5,36,0,0,-0.0154434 -127856,1315:360:1,150,36,0,0,-0.0157691 -127857,1315:360:2,150.5,36,0,0,-0.0157197 -127858,1315:361:1,151,36,0,0,-0.0158081 -127859,1315:361:2,151.5,36,0,0,-0.0163641 -127860,1315:362:1,152,36,0,0,-0.0166123 -127861,1315:362:2,152.5,36,0,0,-0.0169439 -127862,1315:363:1,153,36,0,0,-0.0172785 -127863,1315:363:2,153.5,36,0,0,-0.017855 -127864,1315:364:1,154,36,0,0,-0.0181302 -127865,1315:364:2,154.5,36,0,0,-0.0180447 -127866,1315:465:1,155,36,0,0,-0.017839 -127867,1315:465:2,155.5,36,0,0,-0.0177829 -127868,1315:466:1,156,36,0,0,-0.0168831 -127869,1315:466:2,156.5,36,0,0,-0.0167585 -127870,1315:467:2,157.5,36,0,0,-0.0147131 -127871,1315:468:1,158,36,0,0,-0.0169364 -127872,1315:468:2,158.5,36,0,0,-0.0167772 -127873,1315:469:1,159,36,0,0,-0.0163532 -127874,1315:469:2,159.5,36,0,0,-0.0182941 -127875,1316:360:1,160,36,0,0,-0.0207301 -127876,1316:360:2,160.5,36,0,0,-0.0205718 -127877,1316:361:1,161,36,0,0,-0.0202863 -127878,1316:361:2,161.5,36,0,0,-0.0199508 -127879,1316:362:1,162,36,0,0,-0.0198969 -127880,1316:362:2,162.5,36,0,0,-0.0203137 -127881,1316:363:1,163,36,0,0,-0.0211219 -127882,1316:363:2,163.5,36,0,0,-0.0219036 -127883,1316:364:1,164,36,0,0,-0.0223079 -127884,1316:364:2,164.5,36,0,0,-0.0223633 -127885,1316:465:1,165,36,0,0,-0.0223028 -127886,1316:465:2,165.5,36,0,0,-0.0222425 -127887,1316:466:1,166,36,0,0,-0.0223937 -127888,1316:466:2,166.5,36,0,0,-0.0228435 -127889,1316:467:1,167,36,0,0,-0.023334 -127890,1316:467:2,167.5,36,0,0,-0.0233023 -127891,1316:468:1,168,36,0,0,-0.0229365 -127892,1316:468:2,168.5,36,0,0,-0.0228383 -127893,1316:469:1,169,36,0,0,-0.0228848 -127894,1316:469:2,169.5,36,0,0,-0.0228537 -127895,1317:360:1,170,36,0,0,-0.022797 -127896,1317:360:2,170.5,36,0,0,-0.0227713 -127897,1317:361:1,171,36,0,0,-0.0230039 -127898,1317:361:2,171.5,36,0,0,-0.0234716 -127899,1317:362:1,172,36,0,0,-0.0237599 -127900,1317:362:2,172.5,36,0,0,-0.0240139 -127901,1317:363:1,173,36,0,0,-0.0243532 -127902,1317:363:2,173.5,36,0,0,-0.0247309 -127903,1317:364:1,174,36,0,0,-0.0247814 -127904,1317:364:2,174.5,36,0,0,-0.0248095 -127905,1317:465:1,175,36,0,0,-0.0249164 -127906,1317:465:2,175.5,36,0,0,-0.0251147 -127907,1317:466:1,176,36,0,0,-0.0253375 -127908,1317:466:2,176.5,36,0,0,-0.0255451 -127909,1317:467:1,177,36,0,0,-0.0257076 -127910,1317:467:2,177.5,36,0,0,-0.0258479 -127911,1317:468:1,178,36,0,0,-0.0259888 -127912,1317:468:2,178.5,36,0,0,-0.0261722 -127913,1317:469:1,179,36,0,0,-0.0263508 -127914,1317:469:2,179.5,36,0,0,-0.0265367 -127915,1318:360:1,180,36,0,0,-0.0267059 -127916,7318:360:3,-180,36.5,0,0,-0.0261128 -127917,7317:469:4,-179.5,36.5,0,0,-0.0261011 -127918,7317:469:3,-179,36.5,0,0,-0.0258713 -127919,7317:468:4,-178.5,36.5,0,0,-0.0257368 -127920,7317:468:3,-178,36.5,0,0,-0.0262434 -127921,7317:467:4,-177.5,36.5,0,0,-0.0262256 -127922,7317:467:3,-177,36.5,0,0,-0.0262138 -127923,7317:466:4,-176.5,36.5,0,0,-0.0267787 -127924,7317:466:3,-176,36.5,0,0,-0.0272135 -127925,7317:465:4,-175.5,36.5,0,0,-0.0274929 -127926,7317:465:3,-175,36.5,0,0,-0.0275992 -127927,7317:364:4,-174.5,36.5,0,0,-0.0276557 -127928,7317:364:3,-174,36.5,0,0,-0.0276872 -127929,7317:363:4,-173.5,36.5,0,0,-0.0277123 -127930,7317:363:3,-173,36.5,0,0,-0.0277123 -127931,7317:362:4,-172.5,36.5,0,0,-0.02775 -127932,7317:362:3,-172,36.5,0,0,-0.0278195 -127933,7317:361:4,-171.5,36.5,0,0,-0.0278258 -127934,7317:361:3,-171,36.5,0,0,-0.0278131 -127935,7317:360:4,-170.5,36.5,0,0,-0.0278258 -127936,7317:360:3,-170,36.5,0,0,-0.0278953 -127937,7316:469:4,-169.5,36.5,0,0,-0.0280415 -127938,7316:469:3,-169,36.5,0,0,-0.0282268 -127939,7316:468:4,-168.5,36.5,0,0,-0.0283875 -127940,7316:468:3,-168,36.5,0,0,-0.0285233 -127941,7316:467:4,-167.5,36.5,0,0,-0.0287118 -127942,7316:467:3,-167,36.5,0,0,-0.0288232 -127943,7316:466:4,-166.5,36.5,0,0,-0.0286402 -127944,7316:466:3,-166,36.5,0,0,-0.0286142 -127945,7316:465:4,-165.5,36.5,0,0,-0.0286989 -127946,7316:465:3,-165,36.5,0,0,-0.0287838 -127947,7316:364:4,-164.5,36.5,0,0,-0.0287772 -127948,7316:364:3,-164,36.5,0,0,-0.0287445 -127949,7316:363:4,-163.5,36.5,0,0,-0.0288034 -127950,7316:363:3,-163,36.5,0,0,-0.0288886 -127951,7316:362:4,-162.5,36.5,0,0,-0.0289085 -127952,7316:362:3,-162,36.5,0,0,-0.0289282 -127953,7316:361:4,-161.5,36.5,0,0,-0.0289478 -127954,7316:361:3,-161,36.5,0,0,-0.0290071 -127955,7316:360:4,-160.5,36.5,0,0,-0.0291195 -127956,7316:360:3,-160,36.5,0,0,-0.0291925 -127957,7315:469:4,-159.5,36.5,0,0,-0.0292854 -127958,7315:469:3,-159,36.5,0,0,-0.0294859 -127959,7315:468:4,-158.5,36.5,0,0,-0.0297894 -127960,7315:468:3,-158,36.5,0,0,-0.030144 -127961,7315:467:4,-157.5,36.5,0,0,-0.0304128 -127962,7315:467:3,-157,36.5,0,0,-0.0304405 -127963,7315:466:4,-156.5,36.5,0,0,-0.0304128 -127964,7315:466:3,-156,36.5,0,0,-0.0305586 -127965,7315:465:4,-155.5,36.5,0,0,-0.0307259 -127966,7315:465:3,-155,36.5,0,0,-0.0307751 -127967,7315:364:4,-154.5,36.5,0,0,-0.0309932 -127968,7315:364:3,-154,36.5,0,0,-0.031556 -127969,7315:363:4,-153.5,36.5,0,0,-0.0322175 -127970,7315:363:3,-153,36.5,0,0,-0.0328709 -127971,7315:362:4,-152.5,36.5,0,0,-0.0334995 -127972,7315:362:3,-152,36.5,0,0,-0.0340784 -127973,7315:361:4,-151.5,36.5,0,0,-0.0346597 -127974,7315:361:3,-151,36.5,0,0,-0.035219 -127975,7315:360:4,-150.5,36.5,0,0,-0.0357384 -127976,7315:360:3,-150,36.5,0,0,-0.0362409 -127977,7314:469:4,-149.5,36.5,0,0,-0.0367423 -127978,7314:469:3,-149,36.5,0,0,-0.0372167 -127979,7314:468:4,-148.5,36.5,0,0,-0.0376714 -127980,7314:468:3,-148,36.5,0,0,-0.038246 -127981,7314:467:4,-147.5,36.5,0,0,-0.0389905 -127982,7314:467:3,-147,36.5,0,0,-0.0396496 -127983,7314:466:4,-146.5,36.5,0,0,-0.0400065 -127984,7314:466:3,-146,36.5,0,0,-0.0403387 -127985,7314:465:4,-145.5,36.5,0,0,-0.0409461 -127986,7314:465:3,-145,36.5,0,0,-0.0417162 -127987,7314:364:4,-144.5,36.5,0,0,-0.0426292 -127988,7314:364:3,-144,36.5,0,0,-0.0437538 -127989,7314:363:4,-143.5,36.5,0,0,-0.0448993 -127990,7314:363:3,-143,36.5,0,0,-0.0454942 -127991,7314:362:4,-142.5,36.5,0,0,-0.0459167 -127992,7314:362:3,-142,36.5,0,0,-0.0470668 -127993,7314:361:4,-141.5,36.5,0,0,-0.0484713 -127994,7314:361:3,-141,36.5,0,0,-0.0489791 -127995,7314:360:4,-140.5,36.5,0,0,-0.0496768 -127996,7314:360:3,-140,36.5,0,0,-0.051413 -127997,7313:469:4,-139.5,36.5,0,0,-0.0533618 -127998,7313:469:3,-139,36.5,0,0,-0.0550277 -127999,7313:468:4,-138.5,36.5,0,0,-0.0568812 -128000,7313:468:3,-138,36.5,0,0,-0.0583075 -128001,7313:467:4,-137.5,36.5,0,0,-0.0591316 -128002,7313:467:3,-137,36.5,0,0,-0.0600945 -128003,7313:466:4,-136.5,36.5,0,0,-0.061592 -128004,7313:466:3,-136,36.5,0,0,-0.0634561 -128005,7313:465:4,-135.5,36.5,0,0,-0.0656574 -128006,7313:465:3,-135,36.5,0,0,-0.0679082 -128007,7313:364:4,-134.5,36.5,0,0,-0.0696789 -128008,7313:364:3,-134,36.5,0,0,-0.0718381 -128009,7313:363:4,-133.5,36.5,0,0,-0.0761198 -128010,7313:363:3,-133,36.5,0,0,-0.0782881 -128011,7313:362:4,-132.5,36.5,0,0,-0.0794533 -128012,7313:362:3,-132,36.5,0,0,-0.0801003 -128013,7313:361:4,-131.5,36.5,0,0,-0.0769023 -128014,7313:361:3,-131,36.5,0,0,-0.0742095 -128015,7313:360:4,-130.5,36.5,0,0,-0.0753098 -128016,7313:360:3,-130,36.5,0,0,-0.0767378 -128017,7312:469:4,-129.5,36.5,0,0,-0.0775271 -128018,7312:469:3,-129,36.5,0,0,-0.0783063 -128019,7312:468:4,-128.5,36.5,0,0,-0.0781573 -128020,7312:468:3,-128,36.5,0,0,-0.0763555 -128021,7312:467:4,-127.5,36.5,0,0,-0.0789622 -128022,7312:467:3,-127,36.5,0,0,-0.0817434 -128023,7312:466:4,-126.5,36.5,0,0,-0.0818603 -128024,7312:466:3,-126,36.5,0,0,-0.0819386 -128025,7312:465:4,-125.5,36.5,0,0,-0.0814702 -128026,7312:465:3,-125,36.5,0,0,-0.0808113 -128027,7312:363:4,-123.5,36.5,0,0,-0.0657037 -128028,7306:465:4,-65.5,36.5,0,0,-0.0179476 -128029,7306:465:3,-65,36.5,0,0,-0.017855 -128030,7306:364:4,-64.5,36.5,0,0,-0.017715 -128031,7306:364:3,-64,36.5,0,0,-0.0177271 -128032,7306:363:4,-63.5,36.5,0,0,-0.0180772 -128033,7306:363:3,-63,36.5,0,0,-0.0180529 -128034,7306:362:4,-62.5,36.5,0,0,-0.0179395 -128035,7306:362:3,-62,36.5,0,0,-0.0177789 -128036,7306:361:4,-61.5,36.5,0,0,-0.0178832 -128037,7305:468:4,-58.5,36.5,0,0,-0.0116419 -128038,7305:468:3,-58,36.5,0,0,-0.012483 -128039,7305:467:4,-57.5,36.5,0,0,-0.0120308 -128040,7305:467:3,-57,36.5,0,0,-0.0129525 -128041,7305:466:4,-56.5,36.5,0,0,-0.0143838 -128042,7305:465:3,-55,36.5,0,0,-0.00980491 -128043,7305:364:4,-54.5,36.5,0,0,-0.00931875 -128044,7305:364:3,-54,36.5,0,0,-0.00912752 -128045,7305:363:4,-53.5,36.5,0,0,-0.0117622 -128046,7305:363:3,-53,36.5,0,0,-0.0142299 -128047,7305:362:4,-52.5,36.5,0,0,-0.0142459 -128048,7305:362:3,-52,36.5,0,0,-0.0148257 -128049,7305:361:4,-51.5,36.5,0,0,-0.0154019 -128050,7305:361:3,-51,36.5,0,0,-0.0155095 -128051,7305:360:4,-50.5,36.5,0,0,-0.0159185 -128052,7305:360:3,-50,36.5,0,0,-0.0170012 -128053,7304:469:4,-49.5,36.5,0,0,-0.0180529 -128054,7304:469:3,-49,36.5,0,0,-0.0198834 -128055,7304:468:4,-48.5,36.5,0,0,-0.0212942 -128056,7304:468:3,-48,36.5,0,0,-0.0229676 -128057,7304:467:4,-47.5,36.5,0,0,-0.0249672 -128058,7304:467:3,-47,36.5,0,0,-0.0262672 -128059,7304:466:4,-46.5,36.5,0,0,-0.0284974 -128060,7304:466:3,-46,36.5,0,0,-0.031163 -128061,7304:465:4,-45.5,36.5,0,0,-0.0308522 -128062,7304:465:3,-45,36.5,0,0,-0.0357629 -128063,7304:364:4,-44.5,36.5,0,0,-0.0384573 -128064,7304:364:3,-44,36.5,0,0,-0.038334 -128065,7304:363:4,-43.5,36.5,0,0,-0.0330364 -128066,7304:363:3,-43,36.5,0,0,-0.0324462 -128067,7304:362:4,-42.5,36.5,0,0,-0.0389368 -128068,7304:362:3,-42,36.5,0,0,-0.0383074 -128069,7304:361:4,-41.5,36.5,0,0,-0.0336298 -128070,7304:361:3,-41,36.5,0,0,-0.031693 -128071,7304:360:4,-40.5,36.5,0,0,-0.0319105 -128072,7304:360:3,-40,36.5,0,0,-0.033059 -128073,7303:469:4,-39.5,36.5,0,0,-0.0345964 -128074,7303:469:3,-39,36.5,0,0,-0.0349221 -128075,7303:468:4,-38.5,36.5,0,0,-0.0353157 -128076,7303:468:3,-38,36.5,0,0,-0.0365407 -128077,7303:467:4,-37.5,36.5,0,0,-0.041477 -128078,7303:467:3,-37,36.5,0,0,-0.0443024 -128079,7303:466:4,-36.5,36.5,0,0,-0.0402369 -128080,7303:466:3,-36,36.5,0,0,-0.0372337 -128081,7303:465:4,-35.5,36.5,0,0,-0.0365826 -128082,7303:465:3,-35,36.5,0,0,-0.0365073 -128083,7303:364:4,-34.5,36.5,0,0,-0.0383251 -128084,7303:364:3,-34,36.5,0,0,-0.040965 -128085,7303:363:4,-33.5,36.5,0,0,-0.0414103 -128086,7303:363:3,-33,36.5,0,0,-0.0556859 -128087,7303:362:4,-32.5,36.5,0,0,-0.0594369 -128088,7303:362:3,-32,36.5,0,0,-0.0601087 -128089,7303:361:4,-31.5,36.5,0,0,-0.0624652 -128090,7303:361:3,-31,36.5,0,0,-0.109326 -128091,7303:360:4,-30.5,36.5,0,0,-0.135983 -128092,7303:360:3,-30,36.5,0,0,-0.111932 -128093,7302:469:4,-29.5,36.5,0,0,-0.107153 -128094,7302:469:3,-29,36.5,0,0,-0.091949 -128095,7302:468:4,-28.5,36.5,0,0,-0.0813924 -128096,7302:468:3,-28,36.5,0,0,-0.0876471 -128097,7302:467:4,-27.5,36.5,0,0,-0.0973495 -128098,7302:467:3,-27,36.5,0,0,-0.104032 -128099,7302:466:4,-26.5,36.5,0,0,-0.10518 -128100,7302:466:3,-26,36.5,0,0,-0.0991377 -128101,7302:465:4,-25.5,36.5,0,0,-0.0984423 -128102,7302:465:3,-25,36.5,0,0,-0.101578 -128103,7302:364:4,-24.5,36.5,0,0,-0.103475 -128104,7302:364:3,-24,36.5,0,0,-0.106006 -128105,7302:363:4,-23.5,36.5,0,0,-0.104822 -128106,7302:363:3,-23,36.5,0,0,-0.107363 -128107,7302:362:4,-22.5,36.5,0,0,-0.114437 -128108,7302:362:3,-22,36.5,0,0,-0.12215 -128109,7302:361:4,-21.5,36.5,0,0,-0.13605 -128110,7302:361:3,-21,36.5,0,0,-0.13605 -128111,7302:360:4,-20.5,36.5,0,0,-0.13605 -128112,7302:360:3,-20,36.5,0,0,-0.13605 -128113,7301:469:4,-19.5,36.5,0,0,-0.13605 -128114,7301:469:3,-19,36.5,0,0,-0.13605 -128115,7301:468:4,-18.5,36.5,0,0,-0.13605 -128116,7301:468:3,-18,36.5,0,0,-0.13605 -128117,7301:467:4,-17.5,36.5,0,0,-0.13605 -128118,7301:467:3,-17,36.5,0,0,-0.13605 -128119,7301:466:4,-16.5,36.5,0,0,-0.13605 -128120,7301:466:3,-16,36.5,0,0,-0.13605 -128121,7301:465:4,-15.5,36.5,0,0,-0.127167 -128122,7301:465:3,-15,36.5,0,0,-0.122818 -128123,7301:364:4,-14.5,36.5,0,0,-0.127453 -128124,7301:364:3,-14,36.5,0,0,-0.136024 -128125,7301:363:4,-13.5,36.5,0,0,-0.135902 -128126,7301:363:3,-13,36.5,0,0,-0.129116 -128127,7301:362:4,-12.5,36.5,0,0,-0.121395 -128128,7301:362:3,-12,36.5,0,0,-0.116659 -128129,7301:361:4,-11.5,36.5,0,0,-0.111329 -128130,7301:361:3,-11,36.5,0,0,-0.107231 -128131,7301:360:4,-10.5,36.5,0,0,-0.107494 -128132,7301:360:3,-10,36.5,0,0,-0.108978 -128133,7300:469:4,-9.5,36.5,0,0,-0.110376 -128134,7300:469:3,-9,36.5,0,0,-0.112345 -128135,7300:468:4,-8.5,36.5,0,0,-0.112042 -128136,7300:468:3,-8,36.5,0,0,-0.111192 -128137,7300:467:4,-7.5,36.5,0,0,-0.112179 -128138,7300:467:3,-7,36.5,0,0,-0.110783 -128139,7300:466:4,-6.5,36.5,0,0,-0.107573 -128140,7300:466:3,-6,36.5,0,0,-0.0958057 -128141,7300:362:4,-2.5,36.5,0,0,-0.0825682 -128142,7300:362:3,-2,36.5,0,0,-0.086124 -128143,7300:361:4,-1.5,36.5,0,0,-0.0958284 -128144,7300:361:3,-1,36.5,0,0,-0.100081 -128145,7300:360:4,-0.5,36.5,0,0,-0.105954 -128146,1314:362:4,142.5,36.5,0,0,-0.00777988 -128147,1314:363:3,143,36.5,0,0,-0.00732766 -128148,1314:363:4,143.5,36.5,0,0,-0.00833787 -128149,1314:465:4,145.5,36.5,0,0,-0.00747597 -128150,1314:466:3,146,36.5,0,0,-0.00885491 -128151,1314:466:4,146.5,36.5,0,0,-0.010386 -128152,1314:467:3,147,36.5,0,0,-0.0112405 -128153,1314:467:4,147.5,36.5,0,0,-0.0122918 -128154,1314:468:3,148,36.5,0,0,-0.0132962 -128155,1314:468:4,148.5,36.5,0,0,-0.0139208 -128156,1314:469:3,149,36.5,0,0,-0.0146539 -128157,1314:469:4,149.5,36.5,0,0,-0.0158081 -128158,1315:360:3,150,36.5,0,0,-0.0163716 -128159,1315:360:4,150.5,36.5,0,0,-0.0164674 -128160,1315:361:3,151,36.5,0,0,-0.0163238 -128161,1315:361:4,151.5,36.5,0,0,-0.0162543 -128162,1315:362:3,152,36.5,0,0,-0.0165118 -128163,1315:362:4,152.5,36.5,0,0,-0.016868 -128164,1315:363:3,153,36.5,0,0,-0.0171431 -128165,1315:363:4,153.5,36.5,0,0,-0.0173641 -128166,1315:364:3,154,36.5,0,0,-0.0174189 -128167,1315:364:4,154.5,36.5,0,0,-0.0171817 -128168,1315:465:3,155,36.5,0,0,-0.0171315 -128169,1315:465:4,155.5,36.5,0,0,-0.0171932 -128170,1315:466:3,156,36.5,0,0,-0.0170012 -128171,1315:466:4,156.5,36.5,0,0,-0.0172126 -128172,1315:467:3,157,36.5,0,0,-0.0170165 -128173,1315:467:4,157.5,36.5,0,0,-0.0160152 -128174,1315:468:4,158.5,36.5,0,0,-0.0162251 -128175,1315:469:3,159,36.5,0,0,-0.0165378 -128176,1315:469:4,159.5,36.5,0,0,-0.0160693 -128177,1316:360:3,160,36.5,0,0,-0.0174267 -128178,1316:360:4,160.5,36.5,0,0,-0.0202588 -128179,1316:361:3,161,36.5,0,0,-0.0205069 -128180,1316:361:4,161.5,36.5,0,0,-0.0203183 -128181,1316:362:3,162,36.5,0,0,-0.0198074 -128182,1316:362:4,162.5,36.5,0,0,-0.0193139 -128183,1316:363:3,163,36.5,0,0,-0.0196032 -128184,1316:363:4,163.5,36.5,0,0,-0.0207864 -128185,1316:364:3,164,36.5,0,0,-0.0217262 -128186,1316:364:4,164.5,36.5,0,0,-0.0222776 -128187,1316:465:3,165,36.5,0,0,-0.0225816 -128188,1316:465:4,165.5,36.5,0,0,-0.0227713 -128189,1316:466:3,166,36.5,0,0,-0.0228898 -128190,1316:466:4,166.5,36.5,0,0,-0.022895 -128191,1316:467:3,167,36.5,0,0,-0.0226737 -128192,1316:467:4,167.5,36.5,0,0,-0.0222475 -128193,1316:468:3,168,36.5,0,0,-0.0218936 -128194,1316:468:4,168.5,36.5,0,0,-0.0219134 -128195,1316:469:3,169,36.5,0,0,-0.0221373 -128196,1316:469:4,169.5,36.5,0,0,-0.0224342 -128197,1317:360:3,170,36.5,0,0,-0.0226072 -128198,1317:360:4,170.5,36.5,0,0,-0.0225562 -128199,1317:361:3,171,36.5,0,0,-0.0226379 -128200,1317:361:4,171.5,36.5,0,0,-0.0227713 -128201,1317:362:3,172,36.5,0,0,-0.0229884 -128202,1317:362:4,172.5,36.5,0,0,-0.0231448 -128203,1317:363:3,173,36.5,0,0,-0.0230561 -128204,1317:363:4,173.5,36.5,0,0,-0.0232077 -128205,1317:364:3,174,36.5,0,0,-0.0234769 -128206,1317:364:4,174.5,36.5,0,0,-0.0236581 -128207,1317:465:3,175,36.5,0,0,-0.0237545 -128208,1317:465:4,175.5,36.5,0,0,-0.0239543 -128209,1317:466:3,176,36.5,0,0,-0.0241502 -128210,1317:466:4,176.5,36.5,0,0,-0.0242048 -128211,1317:467:3,177,36.5,0,0,-0.0242597 -128212,1317:467:4,177.5,36.5,0,0,-0.0242706 -128213,1317:468:3,178,36.5,0,0,-0.0243312 -128214,1317:468:4,178.5,36.5,0,0,-0.0247309 -128215,1317:469:3,179,36.5,0,0,-0.024877 -128216,1317:469:4,179.5,36.5,0,0,-0.0257076 -128217,1318:360:3,180,36.5,0,0,-0.0261128 -128218,7318:370:1,-180,37,0,0,-0.024052 -128219,7317:479:2,-179.5,37,0,0,-0.0247871 -128220,7317:479:1,-179,37,0,0,-0.0251832 -128221,7317:478:2,-178.5,37,0,0,-0.0258889 -128222,7317:478:1,-178,37,0,0,-0.0258595 -128223,7317:477:2,-177.5,37,0,0,-0.0258773 -128224,7317:477:1,-177,37,0,0,-0.0258832 -128225,7317:476:2,-176.5,37,0,0,-0.0254181 -128226,7317:476:1,-176,37,0,0,-0.0258713 -128227,7317:475:2,-175.5,37,0,0,-0.0263687 -128228,7317:475:1,-175,37,0,0,-0.0265367 -128229,7317:374:2,-174.5,37,0,0,-0.0266756 -128230,7317:374:1,-174,37,0,0,-0.0268029 -128231,7317:373:2,-173.5,37,0,0,-0.0271025 -128232,7317:373:1,-173,37,0,0,-0.0273933 -128233,7317:372:2,-172.5,37,0,0,-0.0274431 -128234,7317:372:1,-172,37,0,0,-0.0274554 -128235,7317:371:2,-171.5,37,0,0,-0.0274929 -128236,7317:371:1,-171,37,0,0,-0.0274804 -128237,7317:370:2,-170.5,37,0,0,-0.0275116 -128238,7317:370:1,-170,37,0,0,-0.0275992 -128239,7316:479:2,-169.5,37,0,0,-0.0276996 -128240,7316:479:1,-169,37,0,0,-0.0278131 -128241,7316:478:2,-168.5,37,0,0,-0.0279335 -128242,7316:478:1,-168,37,0,0,-0.0280415 -128243,7316:477:2,-167.5,37,0,0,-0.028182 -128244,7316:477:1,-167,37,0,0,-0.0283425 -128245,7316:476:2,-166.5,37,0,0,-0.0282973 -128246,7316:476:1,-166,37,0,0,-0.0281691 -128247,7316:475:2,-165.5,37,0,0,-0.0280351 -128248,7316:475:1,-165,37,0,0,-0.02787 -128249,7316:374:2,-164.5,37,0,0,-0.0278067 -128250,7316:374:1,-164,37,0,0,-0.0279904 -128251,7316:373:2,-163.5,37,0,0,-0.0282395 -128252,7316:373:1,-163,37,0,0,-0.0283875 -128253,7316:372:2,-162.5,37,0,0,-0.0283553 -128254,7316:372:1,-162,37,0,0,-0.0282589 -128255,7316:371:2,-161.5,37,0,0,-0.0282203 -128256,7316:371:1,-161,37,0,0,-0.028323 -128257,7316:370:2,-160.5,37,0,0,-0.0285233 -128258,7316:370:1,-160,37,0,0,-0.0285752 -128259,7315:479:2,-159.5,37,0,0,-0.0284457 -128260,7315:479:1,-159,37,0,0,-0.028323 -128261,7315:478:2,-158.5,37,0,0,-0.0284198 -128262,7315:478:1,-158,37,0,0,-0.0287643 -128263,7315:477:2,-157.5,37,0,0,-0.0291063 -128264,7315:477:1,-157,37,0,0,-0.0292521 -128265,7315:476:2,-156.5,37,0,0,-0.0292989 -128266,7315:476:1,-156,37,0,0,-0.0294794 -128267,7315:475:2,-155.5,37,0,0,-0.0296608 -128268,7315:475:1,-155,37,0,0,-0.0298302 -128269,7315:374:2,-154.5,37,0,0,-0.0301784 -128270,7315:374:1,-154,37,0,0,-0.0309015 -128271,7315:373:2,-153.5,37,0,0,-0.0316785 -128272,7315:373:1,-153,37,0,0,-0.0324092 -128273,7315:372:2,-152.5,37,0,0,-0.0331346 -128274,7315:372:1,-152,37,0,0,-0.0339307 -128275,7315:371:2,-151.5,37,0,0,-0.0348583 -128276,7315:371:1,-151,37,0,0,-0.0357873 -128277,7315:370:2,-150.5,37,0,0,-0.0363988 -128278,7315:370:1,-150,37,0,0,-0.036633 -128279,7314:479:2,-149.5,37,0,0,-0.0368434 -128280,7314:479:1,-149,37,0,0,-0.0374649 -128281,7314:478:2,-148.5,37,0,0,-0.0380362 -128282,7314:478:1,-148,37,0,0,-0.038378 -128283,7314:477:2,-147.5,37,0,0,-0.0387585 -128284,7314:477:1,-147,37,0,0,-0.0391699 -128285,7314:476:2,-146.5,37,0,0,-0.0396041 -128286,7314:476:1,-146,37,0,0,-0.0400801 -128287,7314:475:2,-145.5,37,0,0,-0.0405432 -128288,7314:475:1,-145,37,0,0,-0.04105 -128289,7314:374:2,-144.5,37,0,0,-0.0415344 -128290,7314:374:1,-144,37,0,0,-0.0421703 -128291,7314:373:2,-143.5,37,0,0,-0.0430237 -128292,7314:373:1,-143,37,0,0,-0.0438954 -128293,7314:372:2,-142.5,37,0,0,-0.0448269 -128294,7314:372:1,-142,37,0,0,-0.0459592 -128295,7314:371:2,-141.5,37,0,0,-0.0471539 -128296,7314:371:1,-141,37,0,0,-0.048102 -128297,7314:370:2,-140.5,37,0,0,-0.0495963 -128298,7314:370:1,-140,37,0,0,-0.0515207 -128299,7313:479:2,-139.5,37,0,0,-0.0532501 -128300,7313:479:1,-139,37,0,0,-0.0549635 -128301,7313:478:2,-138.5,37,0,0,-0.0564975 -128302,7313:478:1,-138,37,0,0,-0.057081 -128303,7313:477:2,-137.5,37,0,0,-0.0577919 -128304,7313:477:1,-137,37,0,0,-0.0595763 -128305,7313:476:2,-136.5,37,0,0,-0.0621434 -128306,7313:476:1,-136,37,0,0,-0.0645693 -128307,7313:475:2,-135.5,37,0,0,-0.0664666 -128308,7313:475:1,-135,37,0,0,-0.0676841 -128309,7313:374:2,-134.5,37,0,0,-0.0685845 -128310,7313:374:1,-134,37,0,0,-0.0701581 -128311,7313:373:2,-133.5,37,0,0,-0.0735435 -128312,7313:373:1,-133,37,0,0,-0.075759 -128313,7313:372:2,-132.5,37,0,0,-0.0758668 -128314,7313:372:1,-132,37,0,0,-0.0748461 -128315,7313:371:2,-131.5,37,0,0,-0.0729356 -128316,7313:371:1,-131,37,0,0,-0.0736656 -128317,7313:370:2,-130.5,37,0,0,-0.0753278 -128318,7313:370:1,-130,37,0,0,-0.0753098 -128319,7312:479:2,-129.5,37,0,0,-0.0745446 -128320,7312:479:1,-129,37,0,0,-0.0744389 -128321,7312:478:2,-128.5,37,0,0,-0.0745981 -128322,7312:478:1,-128,37,0,0,-0.0769023 -128323,7312:477:2,-127.5,37,0,0,-0.0797192 -128324,7312:477:1,-127,37,0,0,-0.0802726 -128325,7312:476:2,-126.5,37,0,0,-0.0777488 -128326,7312:476:1,-126,37,0,0,-0.0788681 -128327,7312:373:2,-123.5,37,0,0,-0.0637549 -128328,7305:477:2,-57.5,37,0,0,-0.0111979 -128329,7305:477:1,-57,37,0,0,-0.0106562 -128330,7305:476:2,-56.5,37,0,0,-0.0101613 -128331,7305:476:1,-56,37,0,0,-0.0112858 -128332,7305:374:2,-54.5,37,0,0,-0.00907674 -128333,7305:374:1,-54,37,0,0,-0.00870229 -128334,7305:373:2,-53.5,37,0,0,-0.00998154 -128335,7305:373:1,-53,37,0,0,-0.011778 -128336,7305:372:2,-52.5,37,0,0,-0.0129264 -128337,7305:372:1,-52,37,0,0,-0.014125 -128338,7305:371:2,-51.5,37,0,0,-0.0147098 -128339,7305:371:1,-51,37,0,0,-0.0150064 -128340,7305:370:2,-50.5,37,0,0,-0.015395 -128341,7305:370:1,-50,37,0,0,-0.0159077 -128342,7304:479:2,-49.5,37,0,0,-0.0164785 -128343,7304:479:1,-49,37,0,0,-0.0196032 -128344,7304:478:2,-48.5,37,0,0,-0.0219828 -128345,7304:478:1,-48,37,0,0,-0.0251374 -128346,7304:477:2,-47.5,37,0,0,-0.0272629 -128347,7304:477:1,-47,37,0,0,-0.0312983 -128348,7304:476:2,-46.5,37,0,0,-0.0332861 -128349,7304:476:1,-46,37,0,0,-0.0331799 -128350,7304:475:2,-45.5,37,0,0,-0.0336223 -128351,7304:475:1,-45,37,0,0,-0.0346041 -128352,7304:374:2,-44.5,37,0,0,-0.0357956 -128353,7304:374:1,-44,37,0,0,-0.0326169 -128354,7304:373:2,-43.5,37,0,0,-0.0300619 -128355,7304:373:1,-43,37,0,0,-0.0301851 -128356,7304:372:2,-42.5,37,0,0,-0.0338534 -128357,7304:372:1,-42,37,0,0,-0.0320929 -128358,7304:371:2,-41.5,37,0,0,-0.0294591 -128359,7304:371:1,-41,37,0,0,-0.0293188 -128360,7304:370:2,-40.5,37,0,0,-0.0304198 -128361,7304:370:1,-40,37,0,0,-0.0314198 -128362,7303:479:2,-39.5,37,0,0,-0.0318741 -128363,7303:479:1,-39,37,0,0,-0.0322249 -128364,7303:478:2,-38.5,37,0,0,-0.0347311 -128365,7303:478:1,-38,37,0,0,-0.0371486 -128366,7303:477:2,-37.5,37,0,0,-0.0379402 -128367,7303:477:1,-37,37,0,0,-0.036249 -128368,7303:476:2,-36.5,37,0,0,-0.0332785 -128369,7303:476:1,-36,37,0,0,-0.0319614 -128370,7303:475:2,-35.5,37,0,0,-0.031434 -128371,7303:475:1,-35,37,0,0,-0.031078 -128372,7303:374:2,-34.5,37,0,0,-0.0318305 -128373,7303:374:1,-34,37,0,0,-0.0342894 -128374,7303:373:2,-33.5,37,0,0,-0.0430337 -128375,7303:373:1,-33,37,0,0,-0.0634561 -128376,7303:372:2,-32.5,37,0,0,-0.0638148 -128377,7303:372:1,-32,37,0,0,-0.0607742 -128378,7303:371:2,-31.5,37,0,0,-0.0657655 -128379,7303:371:1,-31,37,0,0,-0.0987293 -128380,7303:370:2,-30.5,37,0,0,-0.124229 -128381,7303:370:1,-30,37,0,0,-0.118956 -128382,7302:479:2,-29.5,37,0,0,-0.125564 -128383,7302:479:1,-29,37,0,0,-0.120706 -128384,7302:478:2,-28.5,37,0,0,-0.0939691 -128385,7302:478:1,-28,37,0,0,-0.0789438 -128386,7302:477:2,-27.5,37,0,0,-0.0806378 -128387,7302:477:1,-27,37,0,0,-0.0852609 -128388,7302:476:2,-26.5,37,0,0,-0.0867884 -128389,7302:476:1,-26,37,0,0,-0.0838027 -128390,7302:475:2,-25.5,37,0,0,-0.0883027 -128391,7302:475:1,-25,37,0,0,-0.0904759 -128392,7302:374:2,-24.5,37,0,0,-0.08188 -128393,7302:374:1,-24,37,0,0,-0.0829046 -128394,7302:373:2,-23.5,37,0,0,-0.0957123 -128395,7302:373:1,-23,37,0,0,-0.0954116 -128396,7302:372:2,-22.5,37,0,0,-0.111301 -128397,7302:372:1,-22,37,0,0,-0.125939 -128398,7302:371:2,-21.5,37,0,0,-0.135775 -128399,7302:371:1,-21,37,0,0,-0.13605 -128400,7302:370:2,-20.5,37,0,0,-0.13605 -128401,7302:370:1,-20,37,0,0,-0.13605 -128402,7301:479:2,-19.5,37,0,0,-0.13605 -128403,7301:479:1,-19,37,0,0,-0.13605 -128404,7301:478:2,-18.5,37,0,0,-0.13605 -128405,7301:478:1,-18,37,0,0,-0.13605 -128406,7301:477:2,-17.5,37,0,0,-0.134858 -128407,7301:477:1,-17,37,0,0,-0.134251 -128408,7301:476:2,-16.5,37,0,0,-0.13605 -128409,7301:476:1,-16,37,0,0,-0.13605 -128410,7301:475:2,-15.5,37,0,0,-0.119724 -128411,7301:475:1,-15,37,0,0,-0.115342 -128412,7301:374:2,-14.5,37,0,0,-0.118048 -128413,7301:374:1,-14,37,0,0,-0.127421 -128414,7301:373:2,-13.5,37,0,0,-0.13368 -128415,7301:373:1,-13,37,0,0,-0.122727 -128416,7301:372:2,-12.5,37,0,0,-0.114522 -128417,7301:372:1,-12,37,0,0,-0.110376 -128418,7301:371:2,-11.5,37,0,0,-0.10175 -128419,7300:479:2,-9.5,37,0,0,-0.0999598 -128420,7300:479:1,-9,37,0,0,-0.106291 -128421,7300:478:2,-8.5,37,0,0,-0.106786 -128422,7300:478:1,-8,37,0,0,-0.106578 -128423,7300:477:2,-7.5,37,0,0,-0.110647 -128424,7300:477:1,-7,37,0,0,-0.106786 -128425,7300:476:2,-6.5,37,0,0,-0.0983942 -128426,7300:476:1,-6,37,0,0,-0.0889422 -128427,7300:475:2,-5.5,37,0,0,-0.0826671 -128428,7300:475:1,-5,37,0,0,-0.0702411 -128429,7300:374:2,-4.5,37,0,0,-0.061693 -128430,7300:370:2,-0.5,37,0,0,-0.0964573 -128431,1300:370:2,0,37,0,0,-0.0998383 -128432,1314:372:2,142.5,37,0,0,-0.00858671 -128433,1314:373:1,143,37,0,0,-0.00751936 -128434,1314:373:2,143.5,37,0,0,-0.00740803 -128435,1314:475:2,145.5,37,0,0,-0.00722404 -128436,1314:476:1,146,37,0,0,-0.00915402 -128437,1314:476:2,146.5,37,0,0,-0.0102823 -128438,1314:477:1,147,37,0,0,-0.0112279 -128439,1314:477:2,147.5,37,0,0,-0.0123139 -128440,1314:478:1,148,37,0,0,-0.0132279 -128441,1314:478:2,148.5,37,0,0,-0.0138091 -128442,1314:479:1,149,37,0,0,-0.0145133 -128443,1314:479:2,149.5,37,0,0,-0.0155582 -128444,1315:370:1,150,37,0,0,-0.0162397 -128445,1315:370:2,150.5,37,0,0,-0.0165675 -128446,1315:371:1,151,37,0,0,-0.0165936 -128447,1315:371:2,151.5,37,0,0,-0.016497 -128448,1315:372:1,152,37,0,0,-0.0165936 -128449,1315:372:2,152.5,37,0,0,-0.0167735 -128450,1315:373:1,153,37,0,0,-0.0170279 -128451,1315:373:2,153.5,37,0,0,-0.0172165 -128452,1315:374:1,154,37,0,0,-0.0172165 -128453,1315:374:2,154.5,37,0,0,-0.0171739 -128454,1315:475:1,155,37,0,0,-0.0171624 -128455,1315:475:2,155.5,37,0,0,-0.017228 -128456,1315:476:1,156,37,0,0,-0.0174777 -128457,1315:476:2,156.5,37,0,0,-0.0173758 -128458,1315:477:1,157,37,0,0,-0.0171817 -128459,1315:477:2,157.5,37,0,0,-0.01639 -128460,1315:479:2,159.5,37,0,0,-0.0161597 -128461,1316:370:1,160,37,0,0,-0.0159077 -128462,1316:370:2,160.5,37,0,0,-0.0173369 -128463,1316:371:1,161,37,0,0,-0.0181547 -128464,1316:371:2,161.5,37,0,0,-0.0190675 -128465,1316:372:1,162,37,0,0,-0.0193705 -128466,1316:372:2,162.5,37,0,0,-0.0192662 -128467,1316:373:1,163,37,0,0,-0.0191537 -128468,1316:373:2,163.5,37,0,0,-0.0202634 -128469,1316:374:1,164,37,0,0,-0.0211171 -128470,1316:374:2,164.5,37,0,0,-0.0214921 -128471,1316:475:1,165,37,0,0,-0.0218245 -128472,1316:475:2,165.5,37,0,0,-0.0220175 -128473,1316:476:1,166,37,0,0,-0.0220424 -128474,1316:476:2,166.5,37,0,0,-0.0219184 -128475,1316:477:1,167,37,0,0,-0.0217116 -128476,1316:477:2,167.5,37,0,0,-0.0214921 -128477,1316:478:1,168,37,0,0,-0.021275 -128478,1316:478:2,168.5,37,0,0,-0.0213422 -128479,1316:479:1,169,37,0,0,-0.0217605 -128480,1316:479:2,169.5,37,0,0,-0.0221623 -128481,1317:370:1,170,37,0,0,-0.0223735 -128482,1317:370:2,170.5,37,0,0,-0.0224698 -128483,1317:371:1,171,37,0,0,-0.0225562 -128484,1317:371:2,171.5,37,0,0,-0.0224901 -128485,1317:372:1,172,37,0,0,-0.0224901 -128486,1317:372:2,172.5,37,0,0,-0.0220724 -128487,1317:373:1,173,37,0,0,-0.0212174 -128488,1317:373:2,173.5,37,0,0,-0.0210696 -128489,1317:374:1,174,37,0,0,-0.0211219 -128490,1317:374:2,174.5,37,0,0,-0.0216576 -128491,1317:475:1,175,37,0,0,-0.0220973 -128492,1317:475:2,175.5,37,0,0,-0.0226072 -128493,1317:476:1,176,37,0,0,-0.0232286 -128494,1317:476:2,176.5,37,0,0,-0.02361 -128495,1317:477:1,177,37,0,0,-0.0235513 -128496,1317:477:2,177.5,37,0,0,-0.0233181 -128497,1317:478:1,178,37,0,0,-0.0231972 -128498,1317:478:2,178.5,37,0,0,-0.0237439 -128499,1317:479:1,179,37,0,0,-0.0241447 -128500,1317:479:2,179.5,37,0,0,-0.0238623 -128501,1318:370:1,180,37,0,0,-0.024052 -128502,7318:370:3,-180,37.5,0,0,-0.0232445 -128503,7317:479:4,-179.5,37.5,0,0,-0.0234132 -128504,7317:479:3,-179,37.5,0,0,-0.0238569 -128505,7317:478:4,-178.5,37.5,0,0,-0.0243642 -128506,7317:478:3,-178,37.5,0,0,-0.024832 -128507,7317:477:4,-177.5,37.5,0,0,-0.0252974 -128508,7317:477:3,-177,37.5,0,0,-0.0256902 -128509,7317:476:4,-176.5,37.5,0,0,-0.0259772 -128510,7317:476:3,-176,37.5,0,0,-0.0261604 -128511,7317:475:4,-175.5,37.5,0,0,-0.0263031 -128512,7317:475:3,-175,37.5,0,0,-0.0262614 -128513,7317:374:4,-174.5,37.5,0,0,-0.0261425 -128514,7317:374:3,-174,37.5,0,0,-0.0262494 -128515,7317:373:4,-173.5,37.5,0,0,-0.0263747 -128516,7317:372:4,-172.5,37.5,0,0,-0.0270779 -128517,7317:372:3,-172,37.5,0,0,-0.0274056 -128518,7317:371:4,-171.5,37.5,0,0,-0.0273933 -128519,7317:371:3,-171,37.5,0,0,-0.0273871 -128520,7317:370:4,-170.5,37.5,0,0,-0.0273871 -128521,7317:370:3,-170,37.5,0,0,-0.0273994 -128522,7316:479:4,-169.5,37.5,0,0,-0.0274554 -128523,7316:479:3,-169,37.5,0,0,-0.0275366 -128524,7316:478:4,-168.5,37.5,0,0,-0.0276557 -128525,7316:478:3,-168,37.5,0,0,-0.0278067 -128526,7316:477:4,-167.5,37.5,0,0,-0.0279271 -128527,7316:477:3,-167,37.5,0,0,-0.0280032 -128528,7316:476:4,-166.5,37.5,0,0,-0.028067 -128529,7316:476:3,-166,37.5,0,0,-0.0280541 -128530,7316:475:4,-165.5,37.5,0,0,-0.0279271 -128531,7316:475:3,-165,37.5,0,0,-0.0277123 -128532,7316:374:4,-164.5,37.5,0,0,-0.0275179 -128533,7316:374:3,-164,37.5,0,0,-0.0275179 -128534,7316:373:4,-163.5,37.5,0,0,-0.0275553 -128535,7316:373:3,-163,37.5,0,0,-0.0275179 -128536,7316:372:4,-162.5,37.5,0,0,-0.0273808 -128537,7316:372:3,-162,37.5,0,0,-0.0273126 -128538,7316:371:4,-161.5,37.5,0,0,-0.0273435 -128539,7316:371:3,-161,37.5,0,0,-0.0275053 -128540,7316:370:4,-160.5,37.5,0,0,-0.0277438 -128541,7316:370:3,-160,37.5,0,0,-0.0278511 -128542,7315:479:4,-159.5,37.5,0,0,-0.0277123 -128543,7315:479:3,-159,37.5,0,0,-0.027468 -128544,7315:478:4,-158.5,37.5,0,0,-0.0273435 -128545,7315:478:3,-158,37.5,0,0,-0.0274368 -128546,7315:477:4,-157.5,37.5,0,0,-0.0276808 -128547,7315:477:3,-157,37.5,0,0,-0.0279842 -128548,7315:476:4,-156.5,37.5,0,0,-0.0283168 -128549,7315:476:3,-156,37.5,0,0,-0.0286142 -128550,7315:475:4,-155.5,37.5,0,0,-0.0287707 -128551,7315:475:3,-155,37.5,0,0,-0.0289611 -128552,7315:374:4,-154.5,37.5,0,0,-0.0294994 -128553,7315:374:3,-154,37.5,0,0,-0.0302678 -128554,7315:373:4,-153.5,37.5,0,0,-0.0309226 -128555,7315:373:3,-153,37.5,0,0,-0.0315272 -128556,7315:372:4,-152.5,37.5,0,0,-0.0321882 -128557,7315:372:3,-152,37.5,0,0,-0.0331194 -128558,7315:371:4,-151.5,37.5,0,0,-0.0343835 -128559,7315:371:3,-151,37.5,0,0,-0.0355589 -128560,7315:370:4,-150.5,37.5,0,0,-0.0359351 -128561,7315:370:3,-150,37.5,0,0,-0.0357301 -128562,7314:479:4,-149.5,37.5,0,0,-0.0359022 -128563,7314:479:3,-149,37.5,0,0,-0.0368942 -128564,7314:478:4,-148.5,37.5,0,0,-0.0379054 -128565,7314:478:3,-148,37.5,0,0,-0.0384573 -128566,7314:477:4,-147.5,37.5,0,0,-0.038714 -128567,7314:477:3,-147,37.5,0,0,-0.0389368 -128568,7314:476:4,-146.5,37.5,0,0,-0.039188 -128569,7314:476:3,-146,37.5,0,0,-0.0394677 -128570,7314:475:4,-145.5,37.5,0,0,-0.0397317 -128571,7314:475:3,-145,37.5,0,0,-0.0398961 -128572,7314:374:4,-144.5,37.5,0,0,-0.0400708 -128573,7314:374:3,-144,37.5,0,0,-0.0408238 -128574,7314:373:4,-143.5,37.5,0,0,-0.0424821 -128575,7314:373:3,-143,37.5,0,0,-0.0442921 -128576,7314:372:4,-142.5,37.5,0,0,-0.0455154 -128577,7314:372:3,-142,37.5,0,0,-0.0462682 -128578,7314:371:4,-141.5,37.5,0,0,-0.0469579 -128579,7314:371:3,-141,37.5,0,0,-0.0482249 -128580,7314:370:4,-140.5,37.5,0,0,-0.0502914 -128581,7314:370:3,-140,37.5,0,0,-0.0523168 -128582,7313:479:4,-139.5,37.5,0,0,-0.0538607 -128583,7313:479:3,-139,37.5,0,0,-0.0549764 -128584,7313:478:4,-138.5,37.5,0,0,-0.0552592 -128585,7313:478:3,-138,37.5,0,0,-0.0554656 -128586,7313:477:4,-137.5,37.5,0,0,-0.0569477 -128587,7313:477:3,-137,37.5,0,0,-0.0594925 -128588,7313:476:4,-136.5,37.5,0,0,-0.0623776 -128589,7313:476:3,-136,37.5,0,0,-0.0646305 -128590,7313:475:4,-135.5,37.5,0,0,-0.0657967 -128591,7313:475:3,-135,37.5,0,0,-0.0658275 -128592,7313:374:4,-134.5,37.5,0,0,-0.0666077 -128593,7313:374:3,-134,37.5,0,0,-0.0687954 -128594,7313:373:4,-133.5,37.5,0,0,-0.0719742 -128595,7313:373:3,-133,37.5,0,0,-0.074086 -128596,7313:372:4,-132.5,37.5,0,0,-0.0732477 -128597,7313:372:3,-132,37.5,0,0,-0.0719061 -128598,7313:371:4,-131.5,37.5,0,0,-0.0718038 -128599,7313:371:3,-131,37.5,0,0,-0.0733867 -128600,7313:370:4,-130.5,37.5,0,0,-0.074864 -128601,7313:370:3,-130,37.5,0,0,-0.0748109 -128602,7312:479:4,-129.5,37.5,0,0,-0.074174 -128603,7312:479:3,-129,37.5,0,0,-0.0742622 -128604,7312:478:4,-128.5,37.5,0,0,-0.0757046 -128605,7312:478:3,-128,37.5,0,0,-0.0781016 -128606,7312:477:4,-127.5,37.5,0,0,-0.0731783 -128607,7312:477:3,-127,37.5,0,0,-0.0612176 -128608,7312:374:4,-124.5,37.5,0,0,-0.0641458 -128609,7312:374:3,-124,37.5,0,0,-0.0629067 -128610,7305:475:4,-55.5,37.5,0,0,-0.00851624 -128611,7305:475:3,-55,37.5,0,0,-0.00848594 -128612,7305:374:4,-54.5,37.5,0,0,-0.00855233 -128613,7305:374:3,-54,37.5,0,0,-0.00839378 -128614,7305:373:4,-53.5,37.5,0,0,-0.00942116 -128615,7305:373:3,-53,37.5,0,0,-0.0120496 -128616,7305:372:4,-52.5,37.5,0,0,-0.0133708 -128617,7305:372:3,-52,37.5,0,0,-0.0143388 -128618,7305:371:4,-51.5,37.5,0,0,-0.014723 -128619,7305:371:3,-51,37.5,0,0,-0.0149191 -128620,7305:370:4,-50.5,37.5,0,0,-0.0152678 -128621,7305:370:3,-50,37.5,0,0,-0.0153124 -128622,7304:479:4,-49.5,37.5,0,0,-0.0181221 -128623,7304:479:3,-49,37.5,0,0,-0.021604 -128624,7304:478:4,-48.5,37.5,0,0,-0.0241611 -128625,7304:478:3,-48,37.5,0,0,-0.02787 -128626,7304:477:4,-47.5,37.5,0,0,-0.0291791 -128627,7304:477:3,-47,37.5,0,0,-0.0326765 -128628,7304:476:4,-46.5,37.5,0,0,-0.0325797 -128629,7304:476:3,-46,37.5,0,0,-0.0314053 -128630,7304:475:4,-45.5,37.5,0,0,-0.030768 -128631,7304:475:3,-45,37.5,0,0,-0.0321148 -128632,7304:374:4,-44.5,37.5,0,0,-0.0322986 -128633,7304:374:3,-44,37.5,0,0,-0.0303367 -128634,7304:373:4,-43.5,37.5,0,0,-0.0293923 -128635,7304:373:3,-43,37.5,0,0,-0.0305586 -128636,7304:372:4,-42.5,37.5,0,0,-0.0316424 -128637,7304:372:3,-42,37.5,0,0,-0.0302815 -128638,7304:371:4,-41.5,37.5,0,0,-0.0282268 -128639,7304:371:3,-41,37.5,0,0,-0.0283875 -128640,7304:370:4,-40.5,37.5,0,0,-0.0296205 -128641,7304:370:3,-40,37.5,0,0,-0.0300139 -128642,7303:479:4,-39.5,37.5,0,0,-0.0296542 -128643,7303:479:3,-39,37.5,0,0,-0.0292789 -128644,7303:478:4,-38.5,37.5,0,0,-0.0296946 -128645,7303:478:3,-38,37.5,0,0,-0.0314554 -128646,7303:477:4,-37.5,37.5,0,0,-0.0328934 -128647,7303:477:3,-37,37.5,0,0,-0.0312768 -128648,7303:476:4,-36.5,37.5,0,0,-0.0293721 -128649,7303:476:3,-36,37.5,0,0,-0.0297826 -128650,7303:475:4,-35.5,37.5,0,0,-0.0305864 -128651,7303:475:3,-35,37.5,0,0,-0.031434 -128652,7303:374:4,-34.5,37.5,0,0,-0.0321662 -128653,7303:374:3,-34,37.5,0,0,-0.0333393 -128654,7303:373:4,-33.5,37.5,0,0,-0.0363655 -128655,7303:373:3,-33,37.5,0,0,-0.0520137 -128656,7303:372:4,-32.5,37.5,0,0,-0.0658587 -128657,7303:372:3,-32,37.5,0,0,-0.0670013 -128658,7303:371:4,-31.5,37.5,0,0,-0.0629514 -128659,7303:371:3,-31,37.5,0,0,-0.0661695 -128660,7303:370:4,-30.5,37.5,0,0,-0.0811595 -128661,7303:370:3,-30,37.5,0,0,-0.100544 -128662,7302:479:4,-29.5,37.5,0,0,-0.118048 -128663,7302:479:3,-29,37.5,0,0,-0.119812 -128664,7302:478:4,-28.5,37.5,0,0,-0.109219 -128665,7302:478:3,-28,37.5,0,0,-0.0891776 -128666,7302:477:4,-27.5,37.5,0,0,-0.0805415 -128667,7302:477:3,-27,37.5,0,0,-0.0820953 -128668,7302:476:4,-26.5,37.5,0,0,-0.0786241 -128669,7302:476:3,-26,37.5,0,0,-0.0807724 -128670,7302:475:4,-25.5,37.5,0,0,-0.0847106 -128671,7302:475:3,-25,37.5,0,0,-0.083502 -128672,7302:374:4,-24.5,37.5,0,0,-0.0827063 -128673,7302:374:3,-24,37.5,0,0,-0.0893067 -128674,7302:373:4,-23.5,37.5,0,0,-0.0933806 -128675,7302:373:3,-23,37.5,0,0,-0.0939691 -128676,7302:372:4,-22.5,37.5,0,0,-0.094128 -128677,7302:372:3,-22,37.5,0,0,-0.0965743 -128678,7302:371:4,-21.5,37.5,0,0,-0.100081 -128679,7302:371:3,-21,37.5,0,0,-0.101084 -128680,7302:370:4,-20.5,37.5,0,0,-0.101676 -128681,7302:370:3,-20,37.5,0,0,-0.102422 -128682,7301:479:4,-19.5,37.5,0,0,-0.102872 -128683,7301:479:3,-19,37.5,0,0,-0.102098 -128684,7301:478:4,-18.5,37.5,0,0,-0.0999843 -128685,7301:478:3,-18,37.5,0,0,-0.100203 -128686,7301:477:4,-17.5,37.5,0,0,-0.105464 -128687,7301:477:3,-17,37.5,0,0,-0.11741 -128688,7301:476:4,-16.5,37.5,0,0,-0.136002 -128689,7301:476:3,-16,37.5,0,0,-0.135956 -128690,7301:475:4,-15.5,37.5,0,0,-0.121485 -128691,7301:475:3,-15,37.5,0,0,-0.114211 -128692,7301:374:4,-14.5,37.5,0,0,-0.114127 -128693,7301:374:3,-14,37.5,0,0,-0.115798 -128694,7301:373:4,-13.5,37.5,0,0,-0.118458 -128695,7301:373:3,-13,37.5,0,0,-0.112511 -128696,7301:372:4,-12.5,37.5,0,0,-0.109326 -128697,7301:372:3,-12,37.5,0,0,-0.107731 -128698,7301:371:4,-11.5,37.5,0,0,-0.0975861 -128699,7300:478:4,-8.5,37.5,0,0,-0.0889422 -128700,7300:478:3,-8,37.5,0,0,-0.0906284 -128701,7300:477:4,-7.5,37.5,0,0,-0.10676 -128702,7300:477:3,-7,37.5,0,0,-0.105284 -128703,7300:370:4,-0.5,37.5,0,0,-0.0732821 -128704,1300:370:4,0,37.5,0,0,-0.0977285 -128705,1300:370:4,0.5,37.5,0,0,-0.0962237 -128706,1300:371:3,1,37.5,0,0,-0.085712 -128707,1314:373:3,143,37.5,0,0,-0.00819424 -128708,1314:373:4,143.5,37.5,0,0,-0.00738828 -128709,1314:475:4,145.5,37.5,0,0,-0.00738005 -128710,1314:476:3,146,37.5,0,0,-0.00890838 -128711,1314:476:4,146.5,37.5,0,0,-0.0103583 -128712,1314:477:3,147,37.5,0,0,-0.011647 -128713,1314:477:4,147.5,37.5,0,0,-0.0125054 -128714,1314:478:3,148,37.5,0,0,-0.0131924 -128715,1314:478:4,148.5,37.5,0,0,-0.0137135 -128716,1314:479:3,149,37.5,0,0,-0.0143259 -128717,1314:479:4,149.5,37.5,0,0,-0.0151247 -128718,1315:370:3,150,37.5,0,0,-0.0156985 -128719,1315:370:4,150.5,37.5,0,0,-0.0162178 -128720,1315:371:3,151,37.5,0,0,-0.0166309 -128721,1315:371:4,151.5,37.5,0,0,-0.0167999 -128722,1315:372:3,152,37.5,0,0,-0.0168528 -128723,1315:372:4,152.5,37.5,0,0,-0.0169212 -128724,1315:373:3,153,37.5,0,0,-0.0170892 -128725,1315:373:4,153.5,37.5,0,0,-0.0172863 -128726,1315:374:3,154,37.5,0,0,-0.0173758 -128727,1315:374:4,154.5,37.5,0,0,-0.017458 -128728,1315:475:3,155,37.5,0,0,-0.0175446 -128729,1315:475:4,155.5,37.5,0,0,-0.0176079 -128730,1315:476:3,156,37.5,0,0,-0.017839 -128731,1315:476:4,156.5,37.5,0,0,-0.0180123 -128732,1315:477:3,157,37.5,0,0,-0.0178029 -128733,1315:477:4,157.5,37.5,0,0,-0.0153089 -128734,1316:370:3,160,37.5,0,0,-0.0158187 -128735,1316:370:4,160.5,37.5,0,0,-0.0156318 -128736,1316:371:3,161,37.5,0,0,-0.0159793 -128737,1316:371:4,161.5,37.5,0,0,-0.0167735 -128738,1316:372:3,162,37.5,0,0,-0.0180651 -128739,1316:372:4,162.5,37.5,0,0,-0.0187147 -128740,1316:373:3,163,37.5,0,0,-0.0192098 -128741,1316:373:4,163.5,37.5,0,0,-0.0198431 -128742,1316:374:3,164,37.5,0,0,-0.0205301 -128743,1316:374:4,164.5,37.5,0,0,-0.0204562 -128744,1316:475:3,165,37.5,0,0,-0.0206275 -128745,1316:475:4,165.5,37.5,0,0,-0.0208192 -128746,1316:476:3,166,37.5,0,0,-0.0207675 -128747,1316:476:4,166.5,37.5,0,0,-0.0205858 -128748,1316:477:3,167,37.5,0,0,-0.0204931 -128749,1316:477:4,167.5,37.5,0,0,-0.0205301 -128750,1316:478:3,168,37.5,0,0,-0.0205811 -128751,1316:478:4,168.5,37.5,0,0,-0.0208851 -128752,1316:479:3,169,37.5,0,0,-0.0215894 -128753,1316:479:4,169.5,37.5,0,0,-0.0221272 -128754,1317:370:3,170,37.5,0,0,-0.022313 -128755,1317:370:4,170.5,37.5,0,0,-0.0223028 -128756,1317:371:3,171,37.5,0,0,-0.0219234 -128757,1317:371:4,171.5,37.5,0,0,-0.0214825 -128758,1317:372:3,172,37.5,0,0,-0.0212894 -128759,1317:372:4,172.5,37.5,0,0,-0.020838 -128760,1317:373:3,173,37.5,0,0,-0.0201586 -128761,1317:373:4,173.5,37.5,0,0,-0.0177789 -128762,1317:374:3,174,37.5,0,0,-0.0179234 -128763,1317:374:4,174.5,37.5,0,0,-0.0201269 -128764,1317:475:3,175,37.5,0,0,-0.0203687 -128765,1317:475:4,175.5,37.5,0,0,-0.0202863 -128766,1317:476:3,176,37.5,0,0,-0.0207161 -128767,1317:476:4,176.5,37.5,0,0,-0.0211506 -128768,1317:477:3,177,37.5,0,0,-0.0217409 -128769,1317:477:4,177.5,37.5,0,0,-0.0221022 -128770,1317:478:3,178,37.5,0,0,-0.0220973 -128771,1317:478:4,178.5,37.5,0,0,-0.0223786 -128772,1317:479:3,179,37.5,0,0,-0.0229729 -128773,1317:479:4,179.5,37.5,0,0,-0.0232549 -128774,1318:370:3,180,37.5,0,0,-0.0232445 -128775,7318:380:1,-180,38,0,0,-0.0230613 -128776,7317:489:2,-179.5,38,0,0,-0.0233816 -128777,7317:489:1,-179,38,0,0,-0.0238946 -128778,7317:488:2,-178.5,38,0,0,-0.024558 -128779,7317:488:1,-178,38,0,0,-0.0249729 -128780,7317:487:2,-177.5,38,0,0,-0.0251604 -128781,7317:487:1,-177,38,0,0,-0.0251945 -128782,7317:486:2,-176.5,38,0,0,-0.0252517 -128783,7317:486:1,-176,38,0,0,-0.025493 -128784,7317:485:2,-175.5,38,0,0,-0.0256088 -128785,7317:485:1,-175,38,0,0,-0.0257778 -128786,7317:384:2,-174.5,38,0,0,-0.0259831 -128787,7317:384:1,-174,38,0,0,-0.0259712 -128788,7317:383:2,-173.5,38,0,0,-0.0259477 -128789,7317:383:1,-173,38,0,0,-0.0261011 -128790,7317:382:2,-172.5,38,0,0,-0.0267725 -128791,7317:382:1,-172,38,0,0,-0.0272568 -128792,7317:381:2,-171.5,38,0,0,-0.0274182 -128793,7317:381:1,-171,38,0,0,-0.0274492 -128794,7317:380:2,-170.5,38,0,0,-0.0272754 -128795,7317:380:1,-170,38,0,0,-0.0272444 -128796,7316:489:2,-169.5,38,0,0,-0.0271765 -128797,7316:489:1,-169,38,0,0,-0.0273126 -128798,7316:488:2,-168.5,38,0,0,-0.0273435 -128799,7316:488:1,-168,38,0,0,-0.0273871 -128800,7316:487:2,-167.5,38,0,0,-0.0275429 -128801,7316:487:1,-167,38,0,0,-0.0277438 -128802,7316:486:2,-166.5,38,0,0,-0.0279335 -128803,7316:486:1,-166,38,0,0,-0.0279397 -128804,7316:485:2,-165.5,38,0,0,-0.0278384 -128805,7316:485:1,-165,38,0,0,-0.0276933 -128806,7316:384:2,-164.5,38,0,0,-0.0275429 -128807,7316:384:1,-164,38,0,0,-0.0274243 -128808,7316:383:2,-163.5,38,0,0,-0.0273683 -128809,7316:383:1,-163,38,0,0,-0.0272754 -128810,7316:382:2,-162.5,38,0,0,-0.0271641 -128811,7316:382:1,-162,38,0,0,-0.0271457 -128812,7316:381:2,-161.5,38,0,0,-0.0271395 -128813,7316:381:1,-161,38,0,0,-0.0269677 -128814,7316:380:2,-160.5,38,0,0,-0.0267846 -128815,7316:380:1,-160,38,0,0,-0.0267603 -128816,7315:489:2,-159.5,38,0,0,-0.0266756 -128817,7315:489:1,-159,38,0,0,-0.0266273 -128818,7315:488:2,-158.5,38,0,0,-0.0266453 -128819,7315:488:1,-158,38,0,0,-0.0266695 -128820,7315:487:2,-157.5,38,0,0,-0.0268091 -128821,7315:487:1,-157,38,0,0,-0.0270903 -128822,7315:486:2,-156.5,38,0,0,-0.0274743 -128823,7315:486:1,-156,38,0,0,-0.027832 -128824,7315:485:2,-155.5,38,0,0,-0.0281051 -128825,7315:485:1,-155,38,0,0,-0.0286794 -128826,7315:384:2,-154.5,38,0,0,-0.0297353 -128827,7315:384:1,-154,38,0,0,-0.0305168 -128828,7315:383:2,-153.5,38,0,0,-0.0309155 -128829,7315:383:1,-153,38,0,0,-0.0312057 -128830,7315:382:2,-152.5,38,0,0,-0.0316065 -128831,7315:382:1,-152,38,0,0,-0.0322249 -128832,7315:381:2,-151.5,38,0,0,-0.0329686 -128833,7315:381:1,-151,38,0,0,-0.0338301 -128834,7315:380:2,-150.5,38,0,0,-0.0345332 -128835,7315:380:1,-150,38,0,0,-0.0348425 -128836,7314:489:2,-149.5,38,0,0,-0.0350422 -128837,7314:489:1,-149,38,0,0,-0.0356975 -128838,7314:488:2,-148.5,38,0,0,-0.0367505 -128839,7314:488:1,-148,38,0,0,-0.0374649 -128840,7314:487:2,-147.5,38,0,0,-0.0376024 -128841,7314:487:1,-147,38,0,0,-0.037594 -128842,7314:486:2,-146.5,38,0,0,-0.0377926 -128843,7314:486:1,-146,38,0,0,-0.0382021 -128844,7314:485:2,-145.5,38,0,0,-0.038528 -128845,7314:485:1,-145,38,0,0,-0.0386607 -128846,7314:384:2,-144.5,38,0,0,-0.0389368 -128847,7314:384:1,-144,38,0,0,-0.0398229 -128848,7314:383:2,-143.5,38,0,0,-0.0419475 -128849,7314:383:1,-143,38,0,0,-0.0442513 -128850,7314:382:2,-142.5,38,0,0,-0.0449512 -128851,7314:382:1,-142,38,0,0,-0.0447134 -128852,7314:381:2,-141.5,38,0,0,-0.0452011 -128853,7314:381:1,-141,38,0,0,-0.0474385 -128854,7314:380:2,-140.5,38,0,0,-0.050373 -128855,7314:380:1,-140,38,0,0,-0.052512 -128856,7313:489:2,-139.5,38,0,0,-0.0533493 -128857,7313:489:1,-139,38,0,0,-0.0533118 -128858,7313:488:2,-138.5,38,0,0,-0.0531138 -128859,7313:488:1,-138,38,0,0,-0.0544028 -128860,7313:487:2,-137.5,38,0,0,-0.0566164 -128861,7313:487:1,-137,38,0,0,-0.0585397 -128862,7313:486:2,-136.5,38,0,0,-0.0600666 -128863,7313:486:1,-136,38,0,0,-0.0615197 -128864,7313:485:2,-135.5,38,0,0,-0.0625095 -128865,7313:485:1,-135,38,0,0,-0.0633965 -128866,7313:384:2,-134.5,38,0,0,-0.0659985 -128867,7313:384:1,-134,38,0,0,-0.0686493 -128868,7313:383:2,-133.5,38,0,0,-0.0714648 -128869,7313:383:1,-133,38,0,0,-0.0729531 -128870,7313:382:2,-132.5,38,0,0,-0.0722986 -128871,7313:382:1,-132,38,0,0,-0.0713462 -128872,7313:381:2,-131.5,38,0,0,-0.0705572 -128873,7313:381:1,-131,38,0,0,-0.0714307 -128874,7313:380:2,-130.5,38,0,0,-0.0735606 -128875,7313:380:1,-130,38,0,0,-0.0739456 -128876,7312:489:2,-129.5,38,0,0,-0.0736656 -128877,7312:489:1,-129,38,0,0,-0.0745803 -128878,7312:488:2,-128.5,38,0,0,-0.0759934 -128879,7312:488:1,-128,38,0,0,-0.0670963 -128880,7312:485:2,-125.5,38,0,0,-0.056405 -128881,7312:485:1,-125,38,0,0,-0.0571743 -128882,7305:384:2,-54.5,38,0,0,-0.00793385 -128883,7305:384:1,-54,38,0,0,-0.00825103 -128884,7305:383:2,-53.5,38,0,0,-0.00931044 -128885,7305:383:1,-53,38,0,0,-0.0111629 -128886,7305:382:2,-52.5,38,0,0,-0.0131041 -128887,7305:382:1,-52,38,0,0,-0.0142395 -128888,7305:381:2,-51.5,38,0,0,-0.0141631 -128889,7305:381:1,-51,38,0,0,-0.0137874 -128890,7305:380:2,-50.5,38,0,0,-0.0140367 -128891,7305:380:1,-50,38,0,0,-0.0169212 -128892,7304:489:2,-49.5,38,0,0,-0.0210506 -128893,7304:489:1,-49,38,0,0,-0.0227404 -128894,7304:488:2,-48.5,38,0,0,-0.0266273 -128895,7304:488:1,-48,38,0,0,-0.0292655 -128896,7304:487:2,-47.5,38,0,0,-0.0298165 -128897,7304:487:1,-47,38,0,0,-0.0322395 -128898,7304:486:2,-46.5,38,0,0,-0.0320855 -128899,7304:486:1,-46,38,0,0,-0.0304335 -128900,7304:485:2,-45.5,38,0,0,-0.0287577 -128901,7304:485:1,-45,38,0,0,-0.0289808 -128902,7304:384:2,-44.5,38,0,0,-0.0282268 -128903,7304:384:1,-44,38,0,0,-0.0275429 -128904,7304:383:2,-43.5,38,0,0,-0.0278004 -128905,7304:383:1,-43,38,0,0,-0.0294859 -128906,7304:382:2,-42.5,38,0,0,-0.03051 -128907,7304:382:1,-42,38,0,0,-0.0283295 -128908,7304:381:2,-41.5,38,0,0,-0.026597 -128909,7304:381:1,-41,38,0,0,-0.0271457 -128910,7304:380:2,-40.5,38,0,0,-0.0286468 -128911,7304:380:1,-40,38,0,0,-0.0288953 -128912,7303:489:2,-39.5,38,0,0,-0.0279904 -128913,7303:489:1,-39,38,0,0,-0.0275429 -128914,7303:488:2,-38.5,38,0,0,-0.0280989 -128915,7303:488:1,-38,38,0,0,-0.0286534 -128916,7303:487:2,-37.5,38,0,0,-0.0275242 -128917,7303:487:1,-37,38,0,0,-0.0281244 -128918,7303:486:2,-36.5,38,0,0,-0.0319834 -128919,7303:486:1,-36,38,0,0,-0.0337531 -128920,7303:485:2,-35.5,38,0,0,-0.0343521 -128921,7303:485:1,-35,38,0,0,-0.0343363 -128922,7303:384:2,-34.5,38,0,0,-0.0346041 -128923,7303:384:1,-34,38,0,0,-0.034636 -128924,7303:383:2,-33.5,38,0,0,-0.0351787 -128925,7303:383:1,-33,38,0,0,-0.0377147 -128926,7303:382:2,-32.5,38,0,0,-0.0428655 -128927,7303:382:1,-32,38,0,0,-0.0564975 -128928,7303:381:2,-31.5,38,0,0,-0.0534612 -128929,7303:381:1,-31,38,0,0,-0.0697609 -128930,7303:380:2,-30.5,38,0,0,-0.0779343 -128931,7303:380:1,-30,38,0,0,-0.080676 -128932,7302:489:2,-29.5,38,0,0,-0.0867051 -128933,7302:489:1,-29,38,0,0,-0.0899977 -128934,7302:488:2,-28.5,38,0,0,-0.0847106 -128935,7302:488:1,-28,38,0,0,-0.0818215 -128936,7302:487:2,-27.5,38,0,0,-0.0800239 -128937,7302:487:1,-27,38,0,0,-0.0774905 -128938,7302:486:2,-26.5,38,0,0,-0.0698107 -128939,7302:486:1,-26,38,0,0,-0.0698601 -128940,7302:485:2,-25.5,38,0,0,-0.0799669 -128941,7302:485:1,-25,38,0,0,-0.0875629 -128942,7302:384:2,-24.5,38,0,0,-0.0868297 -128943,7302:384:1,-24,38,0,0,-0.076174 -128944,7302:383:2,-23.5,38,0,0,-0.0775457 -128945,7302:383:1,-23,38,0,0,-0.0891776 -128946,7302:382:2,-22.5,38,0,0,-0.0908687 -128947,7302:382:1,-22,38,0,0,-0.109836 -128948,7302:381:2,-21.5,38,0,0,-0.115827 -128949,7302:381:1,-21,38,0,0,-0.1071 -128950,7302:380:2,-20.5,38,0,0,-0.101874 -128951,7302:380:1,-20,38,0,0,-0.102496 -128952,7301:489:2,-19.5,38,0,0,-0.101232 -128953,7301:489:1,-19,38,0,0,-0.0987535 -128954,7301:488:2,-18.5,38,0,0,-0.0995478 -128955,7301:488:1,-18,38,0,0,-0.103073 -128956,7301:487:2,-17.5,38,0,0,-0.10946 -128957,7301:487:1,-17,38,0,0,-0.118428 -128958,7301:486:2,-16.5,38,0,0,-0.132979 -128959,7301:486:1,-16,38,0,0,-0.135937 -128960,7301:485:2,-15.5,38,0,0,-0.122362 -128961,7301:485:1,-15,38,0,0,-0.114352 -128962,7301:384:2,-14.5,38,0,0,-0.1152 -128963,7301:384:1,-14,38,0,0,-0.115031 -128964,7301:383:2,-13.5,38,0,0,-0.110947 -128965,7301:383:1,-13,38,0,0,-0.109058 -128966,7301:382:2,-12.5,38,0,0,-0.10731 -128967,7301:382:1,-12,38,0,0,-0.10676 -128968,7301:381:2,-11.5,38,0,0,-0.105438 -128969,7301:381:1,-11,38,0,0,-0.0967143 -128970,7300:487:2,-7.5,38,0,0,-0.0922154 -128971,7300:487:1,-7,38,0,0,-0.105361 -128972,7300:486:2,-6.5,38,0,0,-0.0975861 -128973,7300:486:1,-6,38,0,0,-0.0712452 -128974,1300:380:2,0,38,0,0,-0.0888991 -128975,1300:380:2,0.5,38,0,0,-0.0997658 -128976,1300:381:1,1,38,0,0,-0.092729 -128977,1300:381:2,1.5,38,0,0,-0.0807342 -128978,1314:383:1,143,38,0,0,-0.00644639 -128979,1314:383:2,143.5,38,0,0,-0.00601174 -128980,1314:485:2,145.5,38,0,0,-0.00742122 -128981,1314:486:1,146,38,0,0,-0.00867907 -128982,1314:486:2,146.5,38,0,0,-0.00993265 -128983,1314:487:1,147,38,0,0,-0.0117937 -128984,1314:487:2,147.5,38,0,0,-0.0125811 -128985,1314:488:1,148,38,0,0,-0.0130544 -128986,1314:488:2,148.5,38,0,0,-0.0135184 -128987,1314:489:1,149,38,0,0,-0.0139552 -128988,1314:489:2,149.5,38,0,0,-0.0143935 -128989,1315:380:1,150,38,0,0,-0.0147859 -128990,1315:380:2,150.5,38,0,0,-0.0153124 -128991,1315:381:1,151,38,0,0,-0.0158934 -128992,1315:381:2,151.5,38,0,0,-0.0164157 -128993,1315:382:1,152,38,0,0,-0.0168226 -128994,1315:382:2,152.5,38,0,0,-0.0170777 -128995,1315:383:1,153,38,0,0,-0.0172358 -128996,1315:383:2,153.5,38,0,0,-0.0174032 -128997,1315:384:1,154,38,0,0,-0.0175131 -128998,1315:384:2,154.5,38,0,0,-0.0176079 -128999,1315:485:1,155,38,0,0,-0.0178229 -129000,1315:485:2,155.5,38,0,0,-0.0179638 -129001,1315:486:1,156,38,0,0,-0.0181915 -129002,1315:486:2,156.5,38,0,0,-0.0184429 -129003,1315:487:1,157,38,0,0,-0.0173719 -129004,1316:380:1,160,38,0,0,-0.0157939 -129005,1316:380:2,160.5,38,0,0,-0.0155095 -129006,1316:381:1,161,38,0,0,-0.0150738 -129007,1316:381:2,161.5,38,0,0,-0.0150806 -129008,1316:382:1,162,38,0,0,-0.0167246 -129009,1316:382:2,162.5,38,0,0,-0.0191709 -129010,1316:383:1,163,38,0,0,-0.0196518 -129011,1316:383:2,163.5,38,0,0,-0.0197717 -129012,1316:384:1,164,38,0,0,-0.0199417 -129013,1316:384:2,164.5,38,0,0,-0.0196961 -129014,1316:485:1,165,38,0,0,-0.0199597 -129015,1316:485:2,165.5,38,0,0,-0.0201586 -129016,1316:486:1,166,38,0,0,-0.0203412 -129017,1316:486:2,166.5,38,0,0,-0.0205162 -129018,1316:487:1,167,38,0,0,-0.0206835 -129019,1316:487:2,167.5,38,0,0,-0.0208803 -129020,1316:488:1,168,38,0,0,-0.0210791 -129021,1316:488:2,168.5,38,0,0,-0.0214243 -129022,1316:489:1,169,38,0,0,-0.0218541 -129023,1316:489:2,169.5,38,0,0,-0.0220575 -129024,1317:380:1,170,38,0,0,-0.0219878 -129025,1317:380:2,170.5,38,0,0,-0.0213905 -129026,1317:381:1,171,38,0,0,-0.02047 -129027,1317:381:2,171.5,38,0,0,-0.0197494 -129028,1317:382:1,172,38,0,0,-0.0193444 -129029,1317:382:2,172.5,38,0,0,-0.0192098 -129030,1317:383:1,173,38,0,0,-0.0193531 -129031,1317:383:2,173.5,38,0,0,-0.0193531 -129032,1317:384:1,174,38,0,0,-0.0195503 -129033,1317:384:2,174.5,38,0,0,-0.0195459 -129034,1317:485:1,175,38,0,0,-0.0195724 -129035,1317:485:2,175.5,38,0,0,-0.0198029 -129036,1317:486:1,176,38,0,0,-0.0202497 -129037,1317:486:2,176.5,38,0,0,-0.0206975 -129038,1317:487:1,177,38,0,0,-0.0210506 -129039,1317:487:2,177.5,38,0,0,-0.0215067 -129040,1317:488:1,178,38,0,0,-0.0218394 -129041,1317:488:2,178.5,38,0,0,-0.0221672 -129042,1317:489:1,179,38,0,0,-0.0225154 -129043,1317:489:2,179.5,38,0,0,-0.0228073 -129044,1318:380:1,180,38,0,0,-0.0230613 -129045,7318:380:3,-180,38.5,0,0,-0.0231657 -129046,7317:489:4,-179.5,38.5,0,0,-0.0233867 -129047,7317:489:3,-179,38.5,0,0,-0.0236795 -129048,7317:488:4,-178.5,38.5,0,0,-0.0239326 -129049,7317:488:3,-178,38.5,0,0,-0.0236152 -129050,7317:487:4,-177.5,38.5,0,0,-0.0227455 -129051,7317:487:3,-177,38.5,0,0,-0.0221072 -129052,7317:486:4,-176.5,38.5,0,0,-0.0218788 -129053,7317:486:3,-176,38.5,0,0,-0.0218936 -129054,7317:485:4,-175.5,38.5,0,0,-0.0220774 -129055,7317:485:3,-175,38.5,0,0,-0.0226276 -129056,7317:384:4,-174.5,38.5,0,0,-0.0234504 -129057,7317:384:3,-174,38.5,0,0,-0.0240194 -129058,7317:383:4,-173.5,38.5,0,0,-0.0244139 -129059,7317:383:3,-173,38.5,0,0,-0.0246975 -129060,7317:382:4,-172.5,38.5,0,0,-0.0250692 -129061,7317:382:3,-172,38.5,0,0,-0.0257193 -129062,7317:381:4,-171.5,38.5,0,0,-0.0260774 -129063,7317:381:3,-171,38.5,0,0,-0.0271579 -129064,7317:380:4,-170.5,38.5,0,0,-0.0272754 -129065,7317:380:3,-170,38.5,0,0,-0.0273435 -129066,7316:489:4,-169.5,38.5,0,0,-0.0268883 -129067,7316:489:3,-169,38.5,0,0,-0.0255393 -129068,7316:488:4,-168.5,38.5,0,0,-0.0272816 -129069,7316:488:3,-168,38.5,0,0,-0.0274056 -129070,7316:487:4,-167.5,38.5,0,0,-0.0274243 -129071,7316:487:3,-167,38.5,0,0,-0.0273497 -129072,7316:486:4,-166.5,38.5,0,0,-0.0273311 -129073,7316:486:3,-166,38.5,0,0,-0.0273933 -129074,7316:485:4,-165.5,38.5,0,0,-0.0274431 -129075,7316:485:3,-165,38.5,0,0,-0.0274431 -129076,7316:384:4,-164.5,38.5,0,0,-0.0274617 -129077,7316:384:3,-164,38.5,0,0,-0.0274743 -129078,7316:383:4,-163.5,38.5,0,0,-0.0274866 -129079,7316:383:3,-163,38.5,0,0,-0.0274929 -129080,7316:382:4,-162.5,38.5,0,0,-0.0274617 -129081,7316:382:3,-162,38.5,0,0,-0.0274056 -129082,7316:381:4,-161.5,38.5,0,0,-0.0274119 -129083,7316:381:3,-161,38.5,0,0,-0.0273126 -129084,7316:380:4,-160.5,38.5,0,0,-0.0267725 -129085,7316:380:3,-160,38.5,0,0,-0.0263329 -129086,7315:489:4,-159.5,38.5,0,0,-0.0261248 -129087,7315:489:3,-159,38.5,0,0,-0.026036 -129088,7315:488:4,-158.5,38.5,0,0,-0.0261071 -129089,7315:488:3,-158,38.5,0,0,-0.0262912 -129090,7315:487:4,-157.5,38.5,0,0,-0.0266573 -129091,7315:487:3,-157,38.5,0,0,-0.0269615 -129092,7315:486:4,-156.5,38.5,0,0,-0.0272197 -129093,7315:486:3,-156,38.5,0,0,-0.0275303 -129094,7315:485:4,-155.5,38.5,0,0,-0.0279904 -129095,7315:485:3,-155,38.5,0,0,-0.0289545 -129096,7315:384:4,-154.5,38.5,0,0,-0.0300823 -129097,7315:384:3,-154,38.5,0,0,-0.0305446 -129098,7315:383:4,-153.5,38.5,0,0,-0.0310072 -129099,7315:383:3,-153,38.5,0,0,-0.0315345 -129100,7315:382:4,-152.5,38.5,0,0,-0.0318741 -129101,7315:382:3,-152,38.5,0,0,-0.0321222 -129102,7315:381:4,-151.5,38.5,0,0,-0.0325129 -129103,7315:381:3,-151,38.5,0,0,-0.0330968 -129104,7315:380:4,-150.5,38.5,0,0,-0.0337068 -129105,7315:380:3,-150,38.5,0,0,-0.0342268 -129106,7314:489:4,-149.5,38.5,0,0,-0.0345332 -129107,7314:489:3,-149,38.5,0,0,-0.0348425 -129108,7314:488:4,-148.5,38.5,0,0,-0.0353238 -129109,7314:488:3,-148,38.5,0,0,-0.0356892 -129110,7314:487:4,-147.5,38.5,0,0,-0.0357384 -129111,7314:487:3,-147,38.5,0,0,-0.0358449 -129112,7314:486:4,-146.5,38.5,0,0,-0.0362574 -129113,7314:486:3,-146,38.5,0,0,-0.0368264 -129114,7314:485:4,-145.5,38.5,0,0,-0.0373534 -129115,7314:485:3,-145,38.5,0,0,-0.0378535 -129116,7314:384:4,-144.5,38.5,0,0,-0.0384926 -129117,7314:384:3,-144,38.5,0,0,-0.0391968 -129118,7314:383:4,-143.5,38.5,0,0,-0.0404129 -129119,7314:383:3,-143,38.5,0,0,-0.0420732 -129120,7314:382:4,-142.5,38.5,0,0,-0.0427373 -129121,7314:382:3,-142,38.5,0,0,-0.0426781 -129122,7314:381:4,-141.5,38.5,0,0,-0.0429841 -129123,7314:381:3,-141,38.5,0,0,-0.0449721 -129124,7314:380:4,-140.5,38.5,0,0,-0.0483142 -129125,7314:380:3,-140,38.5,0,0,-0.0505603 -129126,7313:489:4,-139.5,38.5,0,0,-0.0509021 -129127,7313:489:3,-139,38.5,0,0,-0.0506191 -129128,7313:488:4,-138.5,38.5,0,0,-0.050678 -129129,7313:488:3,-138,38.5,0,0,-0.0522682 -129130,7313:487:4,-137.5,38.5,0,0,-0.054087 -129131,7313:487:3,-137,38.5,0,0,-0.054479 -129132,7313:486:4,-136.5,38.5,0,0,-0.0550919 -129133,7313:486:3,-136,38.5,0,0,-0.0566293 -129134,7313:485:4,-135.5,38.5,0,0,-0.0586769 -129135,7313:485:3,-135,38.5,0,0,-0.0614045 -129136,7313:384:4,-134.5,38.5,0,0,-0.0661229 -129137,7313:384:3,-134,38.5,0,0,-0.0692192 -129138,7313:383:4,-133.5,38.5,0,0,-0.0707745 -129139,7313:383:3,-133,38.5,0,0,-0.0703076 -129140,7313:382:4,-132.5,38.5,0,0,-0.0694812 -129141,7313:382:3,-132,38.5,0,0,-0.0695308 -129142,7313:381:4,-131.5,38.5,0,0,-0.0692027 -129143,7313:381:3,-131,38.5,0,0,-0.0692846 -129144,7313:380:4,-130.5,38.5,0,0,-0.0704406 -129145,7313:380:3,-130,38.5,0,0,-0.0722474 -129146,7312:489:4,-129.5,38.5,0,0,-0.073648 -129147,7312:489:3,-129,38.5,0,0,-0.0707244 -129148,7312:486:3,-126,38.5,0,0,-0.053648 -129149,7305:384:4,-54.5,38.5,0,0,-0.00737018 -129150,7305:384:3,-54,38.5,0,0,-0.00817782 -129151,7305:383:4,-53.5,38.5,0,0,-0.00893423 -129152,7305:383:3,-53,38.5,0,0,-0.0101455 -129153,7305:382:4,-52.5,38.5,0,0,-0.0113999 -129154,7305:382:3,-52,38.5,0,0,-0.0127798 -129155,7305:381:4,-51.5,38.5,0,0,-0.0132694 -129156,7305:381:3,-51,38.5,0,0,-0.0131306 -129157,7305:380:4,-50.5,38.5,0,0,-0.0154643 -129158,7305:380:3,-50,38.5,0,0,-0.0204285 -129159,7304:489:4,-49.5,38.5,0,0,-0.0228331 -129160,7304:489:3,-49,38.5,0,0,-0.0238138 -129161,7304:488:4,-48.5,38.5,0,0,-0.028118 -129162,7304:488:3,-48,38.5,0,0,-0.0304128 -129163,7304:487:4,-47.5,38.5,0,0,-0.0305516 -129164,7304:487:3,-47,38.5,0,0,-0.0312127 -129165,7304:486:4,-46.5,38.5,0,0,-0.0304405 -129166,7304:486:3,-46,38.5,0,0,-0.0268883 -129167,7304:485:4,-45.5,38.5,0,0,-0.0263568 -129168,7304:485:3,-45,38.5,0,0,-0.0266453 -129169,7304:384:4,-44.5,38.5,0,0,-0.0274119 -129170,7304:384:3,-44,38.5,0,0,-0.02815 -129171,7304:383:4,-43.5,38.5,0,0,-0.0286011 -129172,7304:383:3,-43,38.5,0,0,-0.0286468 -129173,7304:382:4,-42.5,38.5,0,0,-0.0271703 -129174,7304:382:3,-42,38.5,0,0,-0.0261959 -129175,7304:381:4,-41.5,38.5,0,0,-0.0253835 -129176,7304:381:3,-41,38.5,0,0,-0.0255682 -129177,7304:380:4,-40.5,38.5,0,0,-0.026297 -129178,7304:380:3,-40,38.5,0,0,-0.0269248 -129179,7303:489:4,-39.5,38.5,0,0,-0.0269554 -129180,7303:489:3,-39,38.5,0,0,-0.0272876 -129181,7303:488:4,-38.5,38.5,0,0,-0.0276494 -129182,7303:488:3,-38,38.5,0,0,-0.0267664 -129183,7303:487:4,-37.5,38.5,0,0,-0.0268455 -129184,7303:487:3,-37,38.5,0,0,-0.0317798 -129185,7303:486:4,-36.5,38.5,0,0,-0.0345332 -129186,7303:486:3,-36,38.5,0,0,-0.034994 -129187,7303:485:4,-35.5,38.5,0,0,-0.0353399 -129188,7303:485:3,-35,38.5,0,0,-0.0357137 -129189,7303:384:4,-34.5,38.5,0,0,-0.0360669 -129190,7303:384:3,-34,38.5,0,0,-0.036566 -129191,7303:383:4,-33.5,38.5,0,0,-0.0409837 -129192,7303:383:3,-33,38.5,0,0,-0.0455575 -129193,7303:382:4,-32.5,38.5,0,0,-0.0470233 -129194,7303:382:3,-32,38.5,0,0,-0.0497 -129195,7303:381:4,-31.5,38.5,0,0,-0.0508549 -129196,7303:381:3,-31,38.5,0,0,-0.0817434 -129197,7303:380:4,-30.5,38.5,0,0,-0.0879846 -129198,7303:380:3,-30,38.5,0,0,-0.0870598 -129199,7302:489:4,-29.5,38.5,0,0,-0.0797192 -129200,7302:489:3,-29,38.5,0,0,-0.0755072 -129201,7302:488:4,-28.5,38.5,0,0,-0.0733867 -129202,7302:488:3,-28,38.5,0,0,-0.0745446 -129203,7302:487:4,-27.5,38.5,0,0,-0.0765736 -129204,7302:487:3,-27,38.5,0,0,-0.0710597 -129205,7302:486:4,-26.5,38.5,0,0,-0.0703243 -129206,7302:486:3,-26,38.5,0,0,-0.0699756 -129207,7302:485:4,-25.5,38.5,0,0,-0.0677802 -129208,7302:485:3,-25,38.5,0,0,-0.0674608 -129209,7302:384:4,-24.5,38.5,0,0,-0.0703741 -129210,7302:384:3,-24,38.5,0,0,-0.0692681 -129211,7302:383:4,-23.5,38.5,0,0,-0.0738407 -129212,7302:383:3,-23,38.5,0,0,-0.0800053 -129213,7302:382:4,-22.5,38.5,0,0,-0.0894144 -129214,7302:382:3,-22,38.5,0,0,-0.117265 -129215,7302:381:4,-21.5,38.5,0,0,-0.124167 -129216,7302:381:3,-21,38.5,0,0,-0.121636 -129217,7302:380:4,-20.5,38.5,0,0,-0.119932 -129218,7302:380:3,-20,38.5,0,0,-0.119754 -129219,7301:489:4,-19.5,38.5,0,0,-0.11802 -129220,7301:489:3,-19,38.5,0,0,-0.112732 -129221,7301:488:4,-18.5,38.5,0,0,-0.105309 -129222,7301:488:3,-18,38.5,0,0,-0.108898 -129223,7301:487:4,-17.5,38.5,0,0,-0.113903 -129224,7301:487:3,-17,38.5,0,0,-0.118869 -129225,7301:486:4,-16.5,38.5,0,0,-0.125876 -129226,7301:486:3,-16,38.5,0,0,-0.136024 -129227,7301:485:4,-15.5,38.5,0,0,-0.128442 -129228,7301:485:3,-15,38.5,0,0,-0.120915 -129229,7301:384:4,-14.5,38.5,0,0,-0.11738 -129230,7301:384:3,-14,38.5,0,0,-0.119222 -129231,7301:383:4,-13.5,38.5,0,0,-0.116486 -129232,7301:383:3,-13,38.5,0,0,-0.111028 -129233,7301:382:4,-12.5,38.5,0,0,-0.107153 -129234,7301:382:3,-12,38.5,0,0,-0.10585 -129235,7301:381:4,-11.5,38.5,0,0,-0.0984423 -129236,7301:381:3,-11,38.5,0,0,-0.0786429 -129237,7300:487:4,-7.5,38.5,0,0,-0.0789622 -129238,7300:487:3,-7,38.5,0,0,-0.101578 -129239,7300:486:4,-6.5,38.5,0,0,-0.0911982 -129240,1300:380:4,0,38.5,0,0,-0.0830434 -129241,1300:380:4,0.5,38.5,0,0,-0.0975861 -129242,1300:381:3,1,38.5,0,0,-0.0966207 -129243,1300:381:4,1.5,38.5,0,0,-0.0861657 -129244,1300:382:3,2,38.5,0,0,-0.0750063 -129245,1314:383:4,143.5,38.5,0,0,-0.00595719 -129246,1314:485:4,145.5,38.5,0,0,-0.00716959 -129247,1314:486:3,146,38.5,0,0,-0.00817966 -129248,1314:486:4,146.5,38.5,0,0,-0.0096789 -129249,1314:487:3,147,38.5,0,0,-0.0119051 -129250,1314:487:4,147.5,38.5,0,0,-0.0127113 -129251,1314:488:3,148,38.5,0,0,-0.0129235 -129252,1314:488:4,148.5,38.5,0,0,-0.0131688 -129253,1314:489:3,149,38.5,0,0,-0.0135274 -129254,1314:489:4,149.5,38.5,0,0,-0.0140336 -129255,1315:380:3,150,38.5,0,0,-0.0147395 -129256,1315:380:4,150.5,38.5,0,0,-0.0155338 -129257,1315:381:3,151,38.5,0,0,-0.0161343 -129258,1315:381:4,151.5,38.5,0,0,-0.0165712 -129259,1315:382:3,152,38.5,0,0,-0.0169707 -129260,1315:382:4,152.5,38.5,0,0,-0.0172396 -129261,1315:383:3,153,38.5,0,0,-0.0174189 -129262,1315:383:4,153.5,38.5,0,0,-0.0175919 -129263,1315:384:3,154,38.5,0,0,-0.0176673 -129264,1315:384:4,154.5,38.5,0,0,-0.0177549 -129265,1315:485:3,155,38.5,0,0,-0.0179032 -129266,1315:485:4,155.5,38.5,0,0,-0.0180813 -129267,1315:486:3,156,38.5,0,0,-0.0182982 -129268,1315:486:4,156.5,38.5,0,0,-0.0183972 -129269,1315:487:3,157,38.5,0,0,-0.0169782 -129270,1316:381:4,161.5,38.5,0,0,-0.0147727 -129271,1316:382:3,162,38.5,0,0,-0.0155234 -129272,1316:382:4,162.5,38.5,0,0,-0.0172901 -129273,1316:383:3,163,38.5,0,0,-0.0193924 -129274,1316:383:4,163.5,38.5,0,0,-0.0198924 -129275,1316:384:3,164,38.5,0,0,-0.0197139 -129276,1316:384:4,164.5,38.5,0,0,-0.0192098 -129277,1316:485:3,165,38.5,0,0,-0.0190247 -129278,1316:485:4,165.5,38.5,0,0,-0.0191365 -129279,1316:486:3,166,38.5,0,0,-0.0193749 -129280,1316:486:4,166.5,38.5,0,0,-0.0197807 -129281,1316:487:3,167,38.5,0,0,-0.0202497 -129282,1316:487:4,167.5,38.5,0,0,-0.020763 -129283,1316:488:3,168,38.5,0,0,-0.0211791 -129284,1316:488:4,168.5,38.5,0,0,-0.0214825 -129285,1316:489:3,169,38.5,0,0,-0.0216724 -129286,1316:489:4,169.5,38.5,0,0,-0.0216186 -129287,1317:380:3,170,38.5,0,0,-0.0209369 -129288,1317:380:4,170.5,38.5,0,0,-0.0200002 -129289,1317:381:3,171,38.5,0,0,-0.0196296 -129290,1317:381:4,171.5,38.5,0,0,-0.0195724 -129291,1317:382:3,172,38.5,0,0,-0.0193619 -129292,1317:382:4,172.5,38.5,0,0,-0.0190161 -129293,1317:383:3,173,38.5,0,0,-0.0188372 -129294,1317:383:4,173.5,38.5,0,0,-0.0188797 -129295,1317:384:3,174,38.5,0,0,-0.0191234 -129296,1317:384:4,174.5,38.5,0,0,-0.0195459 -129297,1317:485:3,175,38.5,0,0,-0.0201269 -129298,1317:485:4,175.5,38.5,0,0,-0.0206928 -129299,1317:486:3,176,38.5,0,0,-0.0210838 -129300,1317:486:4,176.5,38.5,0,0,-0.0213327 -129301,1317:487:3,177,38.5,0,0,-0.0215601 -129302,1317:487:4,177.5,38.5,0,0,-0.0216137 -129303,1317:488:3,178,38.5,0,0,-0.0217655 -129304,1317:488:4,178.5,38.5,0,0,-0.022328 -129305,1317:489:3,179,38.5,0,0,-0.0227455 -129306,1317:489:4,179.5,38.5,0,0,-0.0229624 -129307,1318:380:3,180,38.5,0,0,-0.0231657 -129308,7318:390:1,-180,39,0,0,-0.0228176 -129309,7317:499:2,-179.5,39,0,0,-0.0227815 -129310,7317:499:1,-179,39,0,0,-0.0224393 -129311,7317:498:2,-178.5,39,0,0,-0.0217605 -129312,7317:498:1,-178,39,0,0,-0.0210506 -129313,7317:497:2,-177.5,39,0,0,-0.0208662 -129314,7317:497:1,-177,39,0,0,-0.0209605 -129315,7317:496:2,-176.5,39,0,0,-0.0210696 -129316,7317:496:1,-176,39,0,0,-0.0211362 -129317,7317:495:2,-175.5,39,0,0,-0.0212031 -129318,7317:495:1,-175,39,0,0,-0.0214098 -129319,7317:394:2,-174.5,39,0,0,-0.0218245 -129320,7317:394:1,-174,39,0,0,-0.0222878 -129321,7317:393:2,-173.5,39,0,0,-0.0228228 -129322,7317:393:1,-173,39,0,0,-0.0235194 -129323,7317:392:2,-172.5,39,0,0,-0.0244748 -129324,7317:392:1,-172,39,0,0,-0.0249955 -129325,7317:391:2,-171.5,39,0,0,-0.0252688 -129326,7317:391:1,-171,39,0,0,-0.0257835 -129327,7317:390:2,-170.5,39,0,0,-0.0262792 -129328,7317:390:1,-170,39,0,0,-0.0265849 -129329,7316:499:2,-169.5,39,0,0,-0.0271395 -129330,7316:499:1,-169,39,0,0,-0.0271519 -129331,7316:498:2,-168.5,39,0,0,-0.0272382 -129332,7316:497:2,-167.5,39,0,0,-0.0255047 -129333,7316:497:1,-167,39,0,0,-0.0272939 -129334,7316:496:2,-166.5,39,0,0,-0.0273126 -129335,7316:496:1,-166,39,0,0,-0.0273497 -129336,7316:495:2,-165.5,39,0,0,-0.0273808 -129337,7316:495:1,-165,39,0,0,-0.0273745 -129338,7316:394:2,-164.5,39,0,0,-0.0273435 -129339,7316:394:1,-164,39,0,0,-0.0272691 -129340,7316:393:2,-163.5,39,0,0,-0.0272135 -129341,7316:393:1,-163,39,0,0,-0.0271888 -129342,7316:392:2,-162.5,39,0,0,-0.0272012 -129343,7316:392:1,-162,39,0,0,-0.0272506 -129344,7316:391:2,-161.5,39,0,0,-0.0272691 -129345,7316:391:1,-161,39,0,0,-0.0272816 -129346,7316:390:2,-160.5,39,0,0,-0.0270657 -129347,7316:390:1,-160,39,0,0,-0.0265187 -129348,7315:499:2,-159.5,39,0,0,-0.0260598 -129349,7315:499:1,-159,39,0,0,-0.0258304 -129350,7315:498:2,-158.5,39,0,0,-0.0258948 -129351,7315:498:1,-158,39,0,0,-0.0263747 -129352,7315:497:2,-157.5,39,0,0,-0.0270412 -129353,7315:497:1,-157,39,0,0,-0.0274431 -129354,7315:496:2,-156.5,39,0,0,-0.0276933 -129355,7315:496:1,-156,39,0,0,-0.0279842 -129356,7315:495:2,-155.5,39,0,0,-0.0284005 -129357,7315:495:1,-155,39,0,0,-0.0291526 -129358,7315:394:2,-154.5,39,0,0,-0.0297285 -129359,7315:394:1,-154,39,0,0,-0.0295263 -129360,7315:393:2,-153.5,39,0,0,-0.0294927 -129361,7315:393:1,-153,39,0,0,-0.030192 -129362,7315:392:2,-152.5,39,0,0,-0.0308803 -129363,7315:392:1,-152,39,0,0,-0.0309861 -129364,7315:391:2,-151.5,39,0,0,-0.0315777 -129365,7315:391:1,-151,39,0,0,-0.0326467 -129366,7315:390:2,-150.5,39,0,0,-0.0333393 -129367,7315:390:1,-150,39,0,0,-0.0337684 -129368,7314:499:2,-149.5,39,0,0,-0.0339153 -129369,7314:499:1,-149,39,0,0,-0.0339307 -129370,7314:498:2,-148.5,39,0,0,-0.0339852 -129371,7314:498:1,-148,39,0,0,-0.0340395 -129372,7314:497:2,-147.5,39,0,0,-0.0341564 -129373,7314:497:1,-147,39,0,0,-0.0346597 -129374,7314:496:2,-146.5,39,0,0,-0.0356322 -129375,7314:496:1,-146,39,0,0,-0.0366412 -129376,7314:495:2,-145.5,39,0,0,-0.0374476 -129377,7314:495:1,-145,39,0,0,-0.0382372 -129378,7314:394:2,-144.5,39,0,0,-0.0389548 -129379,7314:394:1,-144,39,0,0,-0.0394224 -129380,7314:393:2,-143.5,39,0,0,-0.0398779 -129381,7314:393:1,-143,39,0,0,-0.0404594 -129382,7314:392:2,-142.5,39,0,0,-0.040899 -129383,7314:392:1,-142,39,0,0,-0.0413246 -129384,7314:391:2,-141.5,39,0,0,-0.0418798 -129385,7314:391:1,-141,39,0,0,-0.042895 -129386,7314:390:2,-140.5,39,0,0,-0.0449097 -129387,7314:390:1,-140,39,0,0,-0.046515 -129388,7313:499:2,-139.5,39,0,0,-0.0467846 -129389,7313:499:1,-139,39,0,0,-0.0466659 -129390,7313:498:2,-138.5,39,0,0,-0.0475925 -129391,7313:498:1,-138,39,0,0,-0.0494239 -129392,7313:497:2,-137.5,39,0,0,-0.0512104 -129393,7313:497:1,-137,39,0,0,-0.0510087 -129394,7313:496:2,-136.5,39,0,0,-0.0511865 -129395,7313:496:1,-136,39,0,0,-0.0524264 -129396,7313:495:2,-135.5,39,0,0,-0.0543016 -129397,7313:495:1,-135,39,0,0,-0.0566293 -129398,7313:394:2,-134.5,39,0,0,-0.060264 -129399,7313:394:1,-134,39,0,0,-0.0644179 -129400,7313:393:2,-133.5,39,0,0,-0.0663257 -129401,7313:393:1,-133,39,0,0,-0.0651341 -129402,7313:392:2,-132.5,39,0,0,-0.0648434 -129403,7313:392:1,-132,39,0,0,-0.0657192 -129404,7313:391:2,-131.5,39,0,0,-0.0661695 -129405,7313:391:1,-131,39,0,0,-0.0686172 -129406,7313:390:2,-130.5,39,0,0,-0.0718038 -129407,7313:390:1,-130,39,0,0,-0.0726592 -129408,7312:499:2,-129.5,39,0,0,-0.0721618 -129409,7305:394:1,-54,39,0,0,-0.0078775 -129410,7305:393:2,-53.5,39,0,0,-0.00911939 -129411,7305:393:1,-53,39,0,0,-0.010892 -129412,7305:392:2,-52.5,39,0,0,-0.0118811 -129413,7305:392:1,-52,39,0,0,-0.0125756 -129414,7305:391:2,-51.5,39,0,0,-0.0128687 -129415,7305:391:1,-51,39,0,0,-0.0137412 -129416,7305:390:2,-50.5,39,0,0,-0.0184345 -129417,7305:390:1,-50,39,0,0,-0.0224493 -129418,7304:499:2,-49.5,39,0,0,-0.0232602 -129419,7304:499:1,-49,39,0,0,-0.0254527 -129420,7304:498:2,-48.5,39,0,0,-0.0275303 -129421,7304:498:1,-48,39,0,0,-0.0287838 -129422,7304:497:2,-47.5,39,0,0,-0.028869 -129423,7304:497:1,-47,39,0,0,-0.0275616 -129424,7304:496:2,-46.5,39,0,0,-0.0253605 -129425,7304:496:1,-46,39,0,0,-0.0246025 -129426,7304:495:2,-45.5,39,0,0,-0.0250408 -129427,7304:495:1,-45,39,0,0,-0.0261128 -129428,7304:394:2,-44.5,39,0,0,-0.0280796 -129429,7304:394:1,-44,39,0,0,-0.0283295 -129430,7304:393:2,-43.5,39,0,0,-0.027706 -129431,7304:393:1,-43,39,0,0,-0.0259948 -129432,7304:392:2,-42.5,39,0,0,-0.0243642 -129433,7304:392:1,-42,39,0,0,-0.0245858 -129434,7304:391:2,-41.5,39,0,0,-0.0250296 -129435,7304:391:1,-41,39,0,0,-0.0248658 -129436,7304:390:2,-40.5,39,0,0,-0.0259242 -129437,7304:390:1,-40,39,0,0,-0.0263269 -129438,7303:499:2,-39.5,39,0,0,-0.0264107 -129439,7303:499:1,-39,39,0,0,-0.0265006 -129440,7303:498:2,-38.5,39,0,0,-0.0262019 -129441,7303:498:1,-38,39,0,0,-0.0261781 -129442,7303:497:2,-37.5,39,0,0,-0.0268698 -129443,7303:497:1,-37,39,0,0,-0.0309508 -129444,7303:496:2,-36.5,39,0,0,-0.033993 -129445,7303:496:1,-36,39,0,0,-0.0342502 -129446,7303:495:2,-35.5,39,0,0,-0.0350581 -129447,7303:495:1,-35,39,0,0,-0.0355264 -129448,7303:394:2,-34.5,39,0,0,-0.0363238 -129449,7303:394:1,-34,39,0,0,-0.0377493 -129450,7303:393:2,-33.5,39,0,0,-0.0383603 -129451,7303:393:1,-33,39,0,0,-0.0394677 -129452,7303:392:2,-32.5,39,0,0,-0.042248 -129453,7303:392:1,-32,39,0,0,-0.0485162 -129454,7303:391:2,-31.5,39,0,0,-0.048013 -129455,7303:391:1,-31,39,0,0,-0.0605045 -129456,7303:390:2,-30.5,39,0,0,-0.0771036 -129457,7303:390:1,-30,39,0,0,-0.0757227 -129458,7302:499:2,-29.5,39,0,0,-0.0626561 -129459,7302:499:1,-29,39,0,0,-0.0668751 -129460,7302:498:2,-28.5,39,0,0,-0.0709756 -129461,7302:498:1,-28,39,0,0,-0.0740158 -129462,7302:497:2,-27.5,39,0,0,-0.0730915 -129463,7302:497:1,-27,39,0,0,-0.0715831 -129464,7302:496:2,-26.5,39,0,0,-0.0703573 -129465,7302:496:1,-26,39,0,0,-0.0672543 -129466,7302:495:2,-25.5,39,0,0,-0.0661852 -129467,7302:495:1,-25,39,0,0,-0.0658431 -129468,7302:394:2,-24.5,39,0,0,-0.0659364 -129469,7302:394:1,-24,39,0,0,-0.0679399 -129470,7302:393:2,-23.5,39,0,0,-0.0772325 -129471,7302:393:1,-23,39,0,0,-0.082253 -129472,7302:392:2,-22.5,39,0,0,-0.0867255 -129473,7302:392:1,-22,39,0,0,-0.100961 -129474,7302:391:2,-21.5,39,0,0,-0.110052 -129475,7302:391:1,-21,39,0,0,-0.122423 -129476,7302:390:2,-20.5,39,0,0,-0.123736 -129477,7302:390:1,-20,39,0,0,-0.124353 -129478,7301:499:2,-19.5,39,0,0,-0.12346 -129479,7301:499:1,-19,39,0,0,-0.119576 -129480,7301:498:2,-18.5,39,0,0,-0.11597 -129481,7301:498:1,-18,39,0,0,-0.11424 -129482,7301:497:2,-17.5,39,0,0,-0.115513 -129483,7301:497:1,-17,39,0,0,-0.117816 -129484,7301:496:2,-16.5,39,0,0,-0.120408 -129485,7301:496:1,-16,39,0,0,-0.13308 -129486,7301:495:2,-15.5,39,0,0,-0.134218 -129487,7301:495:1,-15,39,0,0,-0.129956 -129488,7301:394:2,-14.5,39,0,0,-0.126409 -129489,7301:394:1,-14,39,0,0,-0.124353 -129490,7301:393:2,-13.5,39,0,0,-0.121245 -129491,7301:393:1,-13,39,0,0,-0.11577 -129492,7301:392:2,-12.5,39,0,0,-0.109944 -129493,7301:392:1,-12,39,0,0,-0.104006 -129494,7301:391:2,-11.5,39,0,0,-0.0873526 -129495,7300:497:2,-7.5,39,0,0,-0.092282 -129496,7300:497:1,-7,39,0,0,-0.101257 -129497,7300:496:2,-6.5,39,0,0,-0.0890062 -129498,7300:495:2,-5.5,39,0,0,-0.0605188 -129499,7300:391:2,-1.5,39,0,0,-0.047307 -129500,7300:390:2,-0.5,39,0,0,-0.0635303 -129501,1300:390:2,0,39,0,0,-0.0767016 -129502,1300:390:2,0.5,39,0,0,-0.0938327 -129503,1300:391:1,1,39,0,0,-0.0938327 -129504,1300:391:2,1.5,39,0,0,-0.0852609 -129505,1300:392:1,2,39,0,0,-0.0795482 -129506,1314:393:2,143.5,39,0,0,-0.00593871 -129507,1314:495:2,145.5,39,0,0,-0.00700249 -129508,1314:496:1,146,39,0,0,-0.00805129 -129509,1314:496:2,146.5,39,0,0,-0.00973301 -129510,1314:497:1,147,39,0,0,-0.0124468 -129511,1314:497:2,147.5,39,0,0,-0.0130514 -129512,1314:498:1,148,39,0,0,-0.013219 -129513,1314:498:2,148.5,39,0,0,-0.0133708 -129514,1314:499:1,149,39,0,0,-0.0135942 -129515,1314:499:2,149.5,39,0,0,-0.0142842 -129516,1315:390:1,150,39,0,0,-0.0151995 -129517,1315:390:2,150.5,39,0,0,-0.0159685 -129518,1315:391:1,151,39,0,0,-0.0165415 -129519,1315:391:2,151.5,39,0,0,-0.0169325 -129520,1315:392:1,152,39,0,0,-0.0172745 -129521,1315:392:2,152.5,39,0,0,-0.017517 -129522,1315:393:1,153,39,0,0,-0.0176633 -129523,1315:393:2,153.5,39,0,0,-0.0177469 -129524,1315:394:1,154,39,0,0,-0.0177669 -129525,1315:394:2,154.5,39,0,0,-0.0177909 -129526,1315:495:1,155,39,0,0,-0.017851 -129527,1315:495:2,155.5,39,0,0,-0.0179799 -129528,1315:496:1,156,39,0,0,-0.018212 -129529,1315:496:2,156.5,39,0,0,-0.0182859 -129530,1315:497:1,157,39,0,0,-0.0165974 -129531,1316:391:1,161,39,0,0,-0.0142778 -129532,1316:391:2,161.5,39,0,0,-0.0145818 -129533,1316:392:1,162,39,0,0,-0.0142842 -129534,1316:392:2,162.5,39,0,0,-0.0149694 -129535,1316:393:1,163,39,0,0,-0.0159721 -129536,1316:393:2,163.5,39,0,0,-0.0176039 -129537,1316:394:1,164,39,0,0,-0.0185178 -129538,1316:394:2,164.5,39,0,0,-0.0187358 -129539,1316:495:1,165,39,0,0,-0.0181221 -129540,1316:495:2,165.5,39,0,0,-0.0176792 -129541,1316:496:1,166,39,0,0,-0.0179073 -129542,1316:496:2,166.5,39,0,0,-0.0189008 -129543,1316:497:1,167,39,0,0,-0.0198029 -129544,1316:497:2,167.5,39,0,0,-0.0199103 -129545,1316:498:1,168,39,0,0,-0.0200907 -129546,1316:498:2,168.5,39,0,0,-0.0205486 -129547,1316:499:1,169,39,0,0,-0.0210553 -129548,1316:499:2,169.5,39,0,0,-0.0210031 -129549,1317:390:1,170,39,0,0,-0.0200635 -129550,1317:390:2,170.5,39,0,0,-0.0196695 -129551,1317:391:1,171,39,0,0,-0.0198431 -129552,1317:391:2,171.5,39,0,0,-0.0200093 -129553,1317:392:1,172,39,0,0,-0.0198924 -129554,1317:392:2,172.5,39,0,0,-0.0192357 -129555,1317:393:1,173,39,0,0,-0.0190805 -129556,1317:393:2,173.5,39,0,0,-0.0195107 -129557,1317:394:1,174,39,0,0,-0.0201269 -129558,1317:394:2,174.5,39,0,0,-0.0205116 -129559,1317:495:1,175,39,0,0,-0.0207535 -129560,1317:495:2,175.5,39,0,0,-0.0209321 -129561,1317:496:1,176,39,0,0,-0.0211219 -129562,1317:496:2,176.5,39,0,0,-0.0212702 -129563,1317:497:1,177,39,0,0,-0.021227 -129564,1317:497:2,177.5,39,0,0,-0.0210506 -129565,1317:498:1,178,39,0,0,-0.0212414 -129566,1317:498:2,178.5,39,0,0,-0.0219481 -129567,1317:499:1,179,39,0,0,-0.0226327 -129568,1317:499:2,179.5,39,0,0,-0.0228125 -129569,1318:390:1,180,39,0,0,-0.0228176 -129570,7318:390:3,-180,39.5,0,0,-0.0222224 -129571,7317:499:4,-179.5,39.5,0,0,-0.0220923 -129572,7317:499:3,-179,39.5,0,0,-0.0216479 -129573,7317:498:4,-178.5,39.5,0,0,-0.0209275 -129574,7317:498:3,-178,39.5,0,0,-0.0204839 -129575,7317:497:4,-177.5,39.5,0,0,-0.0205024 -129576,7317:497:3,-177,39.5,0,0,-0.0207255 -129577,7317:496:4,-176.5,39.5,0,0,-0.0209087 -129578,7317:496:3,-176,39.5,0,0,-0.0210269 -129579,7317:495:4,-175.5,39.5,0,0,-0.0210933 -129580,7317:495:3,-175,39.5,0,0,-0.0211267 -129581,7317:394:4,-174.5,39.5,0,0,-0.0212462 -129582,7317:394:3,-174,39.5,0,0,-0.0218788 -129583,7317:393:4,-173.5,39.5,0,0,-0.0232602 -129584,7317:393:3,-173,39.5,0,0,-0.0244858 -129585,7317:392:4,-172.5,39.5,0,0,-0.0246193 -129586,7317:392:3,-172,39.5,0,0,-0.0245525 -129587,7317:391:4,-171.5,39.5,0,0,-0.0248039 -129588,7317:391:3,-171,39.5,0,0,-0.0251432 -129589,7317:390:4,-170.5,39.5,0,0,-0.0254816 -129590,7317:390:3,-170,39.5,0,0,-0.0259242 -129591,7316:499:4,-169.5,39.5,0,0,-0.0266332 -129592,7316:499:3,-169,39.5,0,0,-0.026986 -129593,7316:498:4,-168.5,39.5,0,0,-0.0271888 -129594,7316:498:3,-168,39.5,0,0,-0.0271519 -129595,7316:497:4,-167.5,39.5,0,0,-0.0273126 -129596,7316:497:3,-167,39.5,0,0,-0.0265307 -129597,7316:496:4,-166.5,39.5,0,0,-0.0269248 -129598,7316:496:3,-166,39.5,0,0,-0.0267422 -129599,7316:495:4,-165.5,39.5,0,0,-0.0268334 -129600,7316:495:3,-165,39.5,0,0,-0.0268211 -129601,7316:394:4,-164.5,39.5,0,0,-0.0273311 -129602,7316:394:3,-164,39.5,0,0,-0.0277438 -129603,7316:393:4,-163.5,39.5,0,0,-0.0276367 -129604,7316:393:3,-163,39.5,0,0,-0.0274056 -129605,7316:392:4,-162.5,39.5,0,0,-0.0271703 -129606,7316:392:3,-162,39.5,0,0,-0.0270412 -129607,7316:391:4,-161.5,39.5,0,0,-0.0269677 -129608,7316:391:3,-161,39.5,0,0,-0.0269004 -129609,7316:390:4,-160.5,39.5,0,0,-0.0268455 -129610,7316:390:3,-160,39.5,0,0,-0.0266273 -129611,7315:499:4,-159.5,39.5,0,0,-0.0263031 -129612,7315:499:3,-159,39.5,0,0,-0.0259536 -129613,7315:498:4,-158.5,39.5,0,0,-0.0258479 -129614,7315:498:3,-158,39.5,0,0,-0.0261307 -129615,7315:497:4,-157.5,39.5,0,0,-0.0267544 -129616,7315:497:3,-157,39.5,0,0,-0.0272816 -129617,7315:496:4,-156.5,39.5,0,0,-0.0274866 -129618,7315:496:3,-156,39.5,0,0,-0.0275805 -129619,7315:495:4,-155.5,39.5,0,0,-0.0279207 -129620,7315:495:3,-155,39.5,0,0,-0.0285817 -129621,7315:394:4,-154.5,39.5,0,0,-0.0290269 -129622,7315:394:3,-154,39.5,0,0,-0.0287511 -129623,7315:393:4,-153.5,39.5,0,0,-0.028246 -129624,7315:393:3,-153,39.5,0,0,-0.02815 -129625,7315:392:4,-152.5,39.5,0,0,-0.0286402 -129626,7315:392:3,-152,39.5,0,0,-0.0294323 -129627,7315:391:4,-151.5,39.5,0,0,-0.0302678 -129628,7315:391:3,-151,39.5,0,0,-0.0317581 -129629,7315:390:4,-150.5,39.5,0,0,-0.0326467 -129630,7315:390:3,-150,39.5,0,0,-0.0329835 -129631,7314:499:4,-149.5,39.5,0,0,-0.0330816 -129632,7314:499:3,-149,39.5,0,0,-0.0330364 -129633,7314:498:4,-148.5,39.5,0,0,-0.0328035 -129634,7314:498:3,-148,39.5,0,0,-0.0325797 -129635,7314:497:4,-147.5,39.5,0,0,-0.0325129 -129636,7314:497:3,-147,39.5,0,0,-0.0329535 -129637,7314:496:4,-146.5,39.5,0,0,-0.0345725 -129638,7314:496:3,-146,39.5,0,0,-0.0369194 -129639,7314:495:4,-145.5,39.5,0,0,-0.0380447 -129640,7314:495:3,-145,39.5,0,0,-0.0385366 -129641,7314:394:4,-144.5,39.5,0,0,-0.0389278 -129642,7314:394:3,-144,39.5,0,0,-0.039188 -129643,7314:393:4,-143.5,39.5,0,0,-0.0394044 -129644,7314:393:3,-143,39.5,0,0,-0.0400155 -129645,7314:392:4,-142.5,39.5,0,0,-0.041097 -129646,7314:392:3,-142,39.5,0,0,-0.0422091 -129647,7314:391:4,-141.5,39.5,0,0,-0.0426095 -129648,7314:391:3,-141,39.5,0,0,-0.0428655 -129649,7314:390:4,-140.5,39.5,0,0,-0.0435526 -129650,7314:390:3,-140,39.5,0,0,-0.0443842 -129651,7313:499:4,-139.5,39.5,0,0,-0.0450968 -129652,7313:499:3,-139,39.5,0,0,-0.0457155 -129653,7313:498:4,-138.5,39.5,0,0,-0.0459806 -129654,7313:498:3,-138,39.5,0,0,-0.0472196 -129655,7313:497:4,-137.5,39.5,0,0,-0.0491154 -129656,7313:497:3,-137,39.5,0,0,-0.0493781 -129657,7313:496:4,-136.5,39.5,0,0,-0.0491954 -129658,7313:496:3,-136,39.5,0,0,-0.0504434 -129659,7313:495:4,-135.5,39.5,0,0,-0.052634 -129660,7313:495:3,-135,39.5,0,0,-0.0546187 -129661,7313:394:4,-134.5,39.5,0,0,-0.0556601 -129662,7313:394:3,-134,39.5,0,0,-0.0572008 -129663,7313:393:4,-133.5,39.5,0,0,-0.0596738 -129664,7313:393:3,-133,39.5,0,0,-0.060292 -129665,7313:392:4,-132.5,39.5,0,0,-0.0617513 -129666,7313:392:3,-132,39.5,0,0,-0.0638597 -129667,7313:391:4,-131.5,39.5,0,0,-0.0642513 -129668,7313:391:3,-131,39.5,0,0,-0.0671277 -129669,7313:390:4,-130.5,39.5,0,0,-0.0716173 -129670,7313:390:3,-130,39.5,0,0,-0.0683099 -129671,7312:499:4,-129.5,39.5,0,0,-0.06631 -129672,7312:499:3,-129,39.5,0,0,-0.0623333 -129673,7312:498:4,-128.5,39.5,0,0,-0.0665761 -129674,7307:499:3,-79,39.5,0,0,-0.00850293 -129675,7307:498:4,-78.5,39.5,0,0,-0.00854286 -129676,7305:394:3,-54,39.5,0,0,-0.00755793 -129677,7305:393:4,-53.5,39.5,0,0,-0.00953528 -129678,7305:393:3,-53,39.5,0,0,-0.010209 -129679,7305:392:4,-52.5,39.5,0,0,-0.00996151 -129680,7305:392:3,-52,39.5,0,0,-0.0105261 -129681,7305:391:4,-51.5,39.5,0,0,-0.0118466 -129682,7305:391:3,-51,39.5,0,0,-0.0150434 -129683,7305:390:4,-50.5,39.5,0,0,-0.0202817 -129684,7305:390:3,-50,39.5,0,0,-0.0231657 -129685,7304:499:4,-49.5,39.5,0,0,-0.0232919 -129686,7304:499:3,-49,39.5,0,0,-0.0237814 -129687,7304:498:4,-48.5,39.5,0,0,-0.0235353 -129688,7304:498:3,-48,39.5,0,0,-0.0236956 -129689,7304:497:4,-47.5,39.5,0,0,-0.0238299 -129690,7304:497:3,-47,39.5,0,0,-0.0241282 -129691,7304:496:4,-46.5,39.5,0,0,-0.0245802 -129692,7304:496:3,-46,39.5,0,0,-0.0249052 -129693,7304:495:4,-45.5,39.5,0,0,-0.0253375 -129694,7304:495:3,-45,39.5,0,0,-0.0261899 -129695,7304:394:4,-44.5,39.5,0,0,-0.0266695 -129696,7304:394:3,-44,39.5,0,0,-0.0257193 -129697,7304:393:4,-43.5,39.5,0,0,-0.0246639 -129698,7304:393:3,-43,39.5,0,0,-0.0234132 -129699,7304:392:4,-42.5,39.5,0,0,-0.0231972 -129700,7304:392:3,-42,39.5,0,0,-0.0235993 -129701,7304:391:4,-41.5,39.5,0,0,-0.0244085 -129702,7304:391:3,-41,39.5,0,0,-0.0242159 -129703,7304:390:4,-40.5,39.5,0,0,-0.0248826 -129704,7304:390:3,-40,39.5,0,0,-0.0251432 -129705,7303:499:4,-39.5,39.5,0,0,-0.0248039 -129706,7303:499:3,-39,39.5,0,0,-0.0252231 -129707,7303:498:4,-38.5,39.5,0,0,-0.0264107 -129708,7303:498:3,-38,39.5,0,0,-0.0277879 -129709,7303:497:4,-37.5,39.5,0,0,-0.0288232 -129710,7303:497:3,-37,39.5,0,0,-0.0293589 -129711,7303:496:4,-36.5,39.5,0,0,-0.030007 -129712,7303:496:3,-36,39.5,0,0,-0.0315417 -129713,7303:495:4,-35.5,39.5,0,0,-0.0340941 -129714,7303:495:3,-35,39.5,0,0,-0.0347708 -129715,7303:394:4,-34.5,39.5,0,0,-0.0348184 -129716,7303:394:3,-34,39.5,0,0,-0.0361911 -129717,7303:393:4,-33.5,39.5,0,0,-0.0393412 -129718,7303:393:3,-33,39.5,0,0,-0.0428754 -129719,7303:392:4,-32.5,39.5,0,0,-0.0476807 -129720,7303:392:3,-32,39.5,0,0,-0.0517245 -129721,7303:391:4,-31.5,39.5,0,0,-0.0531756 -129722,7303:391:3,-31,39.5,0,0,-0.0561161 -129723,7303:390:4,-30.5,39.5,0,0,-0.0597161 -129724,7303:390:3,-30,39.5,0,0,-0.0536106 -129725,7302:499:4,-29.5,39.5,0,0,-0.0537479 -129726,7302:499:3,-29,39.5,0,0,-0.0618093 -129727,7302:498:4,-28.5,39.5,0,0,-0.0653797 -129728,7302:498:3,-28,39.5,0,0,-0.0680687 -129729,7302:497:4,-27.5,39.5,0,0,-0.0711943 -129730,7302:497:3,-27,39.5,0,0,-0.0707076 -129731,7302:496:4,-26.5,39.5,0,0,-0.0671436 -129732,7302:496:3,-26,39.5,0,0,-0.0690398 -129733,7302:495:4,-25.5,39.5,0,0,-0.0710094 -129734,7302:495:3,-25,39.5,0,0,-0.0720424 -129735,7302:394:4,-24.5,39.5,0,0,-0.0718381 -129736,7302:394:3,-24,39.5,0,0,-0.0691867 -129737,7302:393:4,-23.5,39.5,0,0,-0.0701414 -129738,7302:393:3,-23,39.5,0,0,-0.0737178 -129739,7302:392:4,-22.5,39.5,0,0,-0.0752743 -129740,7302:392:3,-22,39.5,0,0,-0.0743149 -129741,7302:391:4,-21.5,39.5,0,0,-0.076138 -129742,7302:391:3,-21,39.5,0,0,-0.0982748 -129743,7302:390:4,-20.5,39.5,0,0,-0.119428 -129744,7302:390:3,-20,39.5,0,0,-0.121155 -129745,7301:499:4,-19.5,39.5,0,0,-0.125907 -129746,7301:499:3,-19,39.5,0,0,-0.126819 -129747,7301:498:4,-18.5,39.5,0,0,-0.126096 -129748,7301:498:3,-18,39.5,0,0,-0.124476 -129749,7301:497:4,-17.5,39.5,0,0,-0.124136 -129750,7301:497:3,-17,39.5,0,0,-0.124229 -129751,7301:496:4,-16.5,39.5,0,0,-0.125719 -129752,7301:496:3,-16,39.5,0,0,-0.13215 -129753,7301:495:4,-15.5,39.5,0,0,-0.133112 -129754,7301:495:3,-15,39.5,0,0,-0.132085 -129755,7301:394:4,-14.5,39.5,0,0,-0.130183 -129756,7301:394:3,-14,39.5,0,0,-0.128313 -129757,7301:393:4,-13.5,39.5,0,0,-0.127389 -129758,7301:393:3,-13,39.5,0,0,-0.124167 -129759,7301:392:4,-12.5,39.5,0,0,-0.116256 -129760,7301:392:3,-12,39.5,0,0,-0.105593 -129761,7301:391:4,-11.5,39.5,0,0,-0.0837023 -129762,7300:497:4,-7.5,39.5,0,0,-0.0893927 -129763,7300:497:3,-7,39.5,0,0,-0.0998872 -129764,7300:496:4,-6.5,39.5,0,0,-0.086414 -129765,7300:496:3,-6,39.5,0,0,-0.0808885 -129766,7300:495:4,-5.5,39.5,0,0,-0.0718381 -129767,7300:495:3,-5,39.5,0,0,-0.0556471 -129768,7300:391:4,-1.5,39.5,0,0,-0.0584579 -129769,7300:391:3,-1,39.5,0,0,-0.0588284 -129770,7300:390:4,-0.5,39.5,0,0,-0.0638899 -129771,1300:390:4,0,39.5,0,0,-0.0707576 -129772,1300:390:4,0.5,39.5,0,0,-0.0821547 -129773,1300:391:3,1,39.5,0,0,-0.0884727 -129774,1300:391:4,1.5,39.5,0,0,-0.086601 -129775,1300:392:3,2,39.5,0,0,-0.0842855 -129776,1300:392:4,2.5,39.5,0,0,-0.0673178 -129777,1314:394:3,144,39.5,0,0,-0.00596515 -129778,1314:495:4,145.5,39.5,0,0,-0.00800481 -129779,1314:496:3,146,39.5,0,0,-0.00806027 -129780,1314:496:4,146.5,39.5,0,0,-0.0100845 -129781,1314:497:3,147,39.5,0,0,-0.0129932 -129782,1314:497:4,147.5,39.5,0,0,-0.0134279 -129783,1314:498:3,148,39.5,0,0,-0.0136828 -129784,1314:498:4,148.5,39.5,0,0,-0.013899 -129785,1314:499:3,149,39.5,0,0,-0.0140493 -129786,1314:499:4,149.5,39.5,0,0,-0.0145459 -129787,1315:390:3,150,39.5,0,0,-0.0152062 -129788,1315:390:4,150.5,39.5,0,0,-0.0160188 -129789,1315:391:3,151,39.5,0,0,-0.0166609 -129790,1315:391:4,151.5,39.5,0,0,-0.0170126 -129791,1315:392:3,152,39.5,0,0,-0.0172706 -129792,1315:392:4,152.5,39.5,0,0,-0.0174502 -129793,1315:393:3,153,39.5,0,0,-0.0175603 -129794,1315:393:4,153.5,39.5,0,0,-0.0175643 -129795,1315:394:3,154,39.5,0,0,-0.0175643 -129796,1315:394:4,154.5,39.5,0,0,-0.0176118 -129797,1315:495:3,155,39.5,0,0,-0.0176713 -129798,1315:495:4,155.5,39.5,0,0,-0.0177111 -129799,1315:496:3,156,39.5,0,0,-0.0179718 -129800,1315:496:4,156.5,39.5,0,0,-0.017517 -129801,1315:497:3,157,39.5,0,0,-0.0156458 -129802,1316:392:3,162,39.5,0,0,-0.0144419 -129803,1316:392:4,162.5,39.5,0,0,-0.0139489 -129804,1316:393:3,163,39.5,0,0,-0.0137504 -129805,1316:393:4,163.5,39.5,0,0,-0.0139865 -129806,1316:394:3,164,39.5,0,0,-0.0164748 -129807,1316:394:4,164.5,39.5,0,0,-0.0176792 -129808,1316:495:3,165,39.5,0,0,-0.0176197 -129809,1316:495:4,165.5,39.5,0,0,-0.017847 -129810,1316:496:3,166,39.5,0,0,-0.0183849 -129811,1316:496:4,166.5,39.5,0,0,-0.0187991 -129812,1316:497:3,167,39.5,0,0,-0.0175683 -129813,1316:497:4,167.5,39.5,0,0,-0.0154956 -129814,1316:498:3,168,39.5,0,0,-0.0167735 -129815,1316:499:3,169,39.5,0,0,-0.0204839 -129816,1316:499:4,169.5,39.5,0,0,-0.0206881 -129817,1317:390:3,170,39.5,0,0,-0.0199283 -129818,1317:390:4,170.5,39.5,0,0,-0.0196474 -129819,1317:391:3,171,39.5,0,0,-0.0193836 -129820,1317:391:4,171.5,39.5,0,0,-0.0195679 -129821,1317:392:3,172,39.5,0,0,-0.0198164 -129822,1317:392:4,172.5,39.5,0,0,-0.0193226 -129823,1317:393:3,173,39.5,0,0,-0.0194843 -129824,1317:393:4,173.5,39.5,0,0,-0.0200002 -129825,1317:394:3,174,39.5,0,0,-0.020332 -129826,1317:394:4,174.5,39.5,0,0,-0.0204285 -129827,1317:495:3,175,39.5,0,0,-0.0204193 -129828,1317:495:4,175.5,39.5,0,0,-0.0204562 -129829,1317:496:3,176,39.5,0,0,-0.0206602 -129830,1317:496:4,176.5,39.5,0,0,-0.020852 -129831,1317:497:3,177,39.5,0,0,-0.0209039 -129832,1317:497:4,177.5,39.5,0,0,-0.020838 -129833,1317:498:3,178,39.5,0,0,-0.0207395 -129834,1317:498:4,178.5,39.5,0,0,-0.0209747 -129835,1317:499:3,179,39.5,0,0,-0.0216626 -129836,1317:499:4,179.5,39.5,0,0,-0.0221823 -129837,1318:390:3,180,39.5,0,0,-0.0222224 -129838,7418:100:1,-180,40,0,0,-0.0213856 -129839,7417:209:2,-179.5,40,0,0,-0.0216284 -129840,7417:209:1,-179,40,0,0,-0.0215213 -129841,7417:208:2,-178.5,40,0,0,-0.021251 -129842,7417:208:1,-178,40,0,0,-0.0209794 -129843,7417:207:2,-177.5,40,0,0,-0.0208052 -129844,7417:207:1,-177,40,0,0,-0.020763 -129845,7417:206:2,-176.5,40,0,0,-0.0207535 -129846,7417:206:1,-176,40,0,0,-0.0208332 -129847,7417:205:2,-175.5,40,0,0,-0.020951 -129848,7417:205:1,-175,40,0,0,-0.0210079 -129849,7417:104:2,-174.5,40,0,0,-0.0211697 -129850,7417:104:1,-174,40,0,0,-0.0221022 -129851,7417:103:2,-173.5,40,0,0,-0.0235833 -129852,7417:103:1,-173,40,0,0,-0.0242981 -129853,7417:102:2,-172.5,40,0,0,-0.0241556 -129854,7417:102:1,-172,40,0,0,-0.0240738 -129855,7417:101:2,-171.5,40,0,0,-0.0245636 -129856,7417:101:1,-171,40,0,0,-0.0249955 -129857,7417:100:2,-170.5,40,0,0,-0.0252116 -129858,7417:100:1,-170,40,0,0,-0.0257835 -129859,7416:209:2,-169.5,40,0,0,-0.0265127 -129860,7416:209:1,-169,40,0,0,-0.0269554 -129861,7416:208:2,-168.5,40,0,0,-0.0274866 -129862,7416:208:1,-168,40,0,0,-0.0276682 -129863,7416:207:2,-167.5,40,0,0,-0.0274866 -129864,7416:207:1,-167,40,0,0,-0.0273933 -129865,7416:206:2,-166.5,40,0,0,-0.0249617 -129866,7416:206:1,-166,40,0,0,-0.023392 -129867,7416:205:2,-165.5,40,0,0,-0.0231657 -129868,7416:205:1,-165,40,0,0,-0.0252803 -129869,7416:104:2,-164.5,40,0,0,-0.0242323 -129870,7416:104:1,-164,40,0,0,-0.0243367 -129871,7416:103:2,-163.5,40,0,0,-0.0257193 -129872,7416:103:1,-163,40,0,0,-0.0282332 -129873,7416:102:2,-162.5,40,0,0,-0.0282654 -129874,7416:102:1,-162,40,0,0,-0.0282012 -129875,7416:101:2,-161.5,40,0,0,-0.0280032 -129876,7416:101:1,-161,40,0,0,-0.0276933 -129877,7416:100:2,-160.5,40,0,0,-0.0272259 -129878,7416:100:1,-160,40,0,0,-0.0267907 -129879,7415:209:2,-159.5,40,0,0,-0.0265547 -129880,7415:209:1,-159,40,0,0,-0.0263448 -129881,7415:208:2,-158.5,40,0,0,-0.0261188 -129882,7415:208:1,-158,40,0,0,-0.0258713 -129883,7415:207:2,-157.5,40,0,0,-0.0258538 -129884,7415:207:1,-157,40,0,0,-0.0262792 -129885,7415:206:2,-156.5,40,0,0,-0.0266876 -129886,7415:206:1,-156,40,0,0,-0.0266876 -129887,7415:205:2,-155.5,40,0,0,-0.0265547 -129888,7415:205:1,-155,40,0,0,-0.0267118 -129889,7415:104:2,-154.5,40,0,0,-0.0272754 -129890,7415:104:1,-154,40,0,0,-0.0277184 -129891,7415:103:2,-153.5,40,0,0,-0.0275866 -129892,7415:103:1,-153,40,0,0,-0.0272754 -129893,7415:102:2,-152.5,40,0,0,-0.0270657 -129894,7415:102:1,-152,40,0,0,-0.0273933 -129895,7415:101:2,-151.5,40,0,0,-0.0283747 -129896,7415:101:1,-151,40,0,0,-0.0297285 -129897,7415:100:2,-150.5,40,0,0,-0.0310072 -129898,7415:100:1,-150,40,0,0,-0.0314843 -129899,7414:209:2,-149.5,40,0,0,-0.0317003 -129900,7414:209:1,-149,40,0,0,-0.0319979 -129901,7414:208:2,-148.5,40,0,0,-0.0320563 -129902,7414:208:1,-148,40,0,0,-0.0318378 -129903,7414:207:2,-147.5,40,0,0,-0.0315705 -129904,7414:207:1,-147,40,0,0,-0.0316857 -129905,7414:206:2,-146.5,40,0,0,-0.0328858 -129906,7414:206:1,-146,40,0,0,-0.0360009 -129907,7414:205:2,-145.5,40,0,0,-0.0373361 -129908,7414:205:1,-145,40,0,0,-0.0371143 -129909,7414:104:2,-144.5,40,0,0,-0.0371229 -129910,7414:104:1,-144,40,0,0,-0.0373448 -129911,7414:103:2,-143.5,40,0,0,-0.0379577 -129912,7414:103:1,-143,40,0,0,-0.0397863 -129913,7414:102:2,-142.5,40,0,0,-0.0420924 -129914,7414:102:1,-142,40,0,0,-0.0435928 -129915,7414:101:2,-141.5,40,0,0,-0.0442307 -129916,7414:101:1,-141,40,0,0,-0.0450657 -129917,7414:100:2,-140.5,40,0,0,-0.0459592 -129918,7414:100:1,-140,40,0,0,-0.0465471 -129919,7413:209:2,-139.5,40,0,0,-0.0468712 -129920,7413:209:1,-139,40,0,0,-0.0470342 -129921,7413:208:2,-138.5,40,0,0,-0.0469039 -129922,7413:208:1,-138,40,0,0,-0.0467631 -129923,7413:207:2,-137.5,40,0,0,-0.0474935 -129924,7413:207:1,-137,40,0,0,-0.0480242 -129925,7413:206:2,-136.5,40,0,0,-0.048359 -129926,7413:206:1,-136,40,0,0,-0.0504902 -129927,7413:205:2,-135.5,40,0,0,-0.0554786 -129928,7413:205:1,-135,40,0,0,-0.0581716 -129929,7413:104:2,-134.5,40,0,0,-0.0579409 -129930,7413:104:1,-134,40,0,0,-0.0566426 -129931,7413:103:2,-133.5,40,0,0,-0.0572142 -129932,7413:103:1,-133,40,0,0,-0.0593537 -129933,7413:102:2,-132.5,40,0,0,-0.0621728 -129934,7413:102:1,-132,40,0,0,-0.0630105 -129935,7413:101:2,-131.5,40,0,0,-0.0630842 -129936,7413:101:1,-131,40,0,0,-0.0645846 -129937,7413:100:2,-130.5,40,0,0,-0.0687305 -129938,7413:100:1,-130,40,0,0,-0.0694652 -129939,7412:209:2,-129.5,40,0,0,-0.0659364 -129940,7412:209:1,-129,40,0,0,-0.0601371 -129941,7407:209:1,-79,40,0,0,-0.00836018 -129942,7407:208:2,-78.5,40,0,0,-0.00819056 -129943,7407:208:1,-78,40,0,0,-0.00833045 -129944,7407:207:2,-77.5,40,0,0,-0.00856764 -129945,7405:205:1,-55,40,0,0,-0.00724339 -129946,7405:104:2,-54.5,40,0,0,-0.00721119 -129947,7405:104:1,-54,40,0,0,-0.00759844 -129948,7405:103:2,-53.5,40,0,0,-0.00890044 -129949,7405:103:1,-53,40,0,0,-0.00889845 -129950,7405:102:2,-52.5,40,0,0,-0.00924629 -129951,7405:102:1,-52,40,0,0,-0.0102228 -129952,7405:101:2,-51.5,40,0,0,-0.0128658 -129953,7405:101:1,-51,40,0,0,-0.0174385 -129954,7405:100:2,-50.5,40,0,0,-0.0219382 -129955,7405:100:1,-50,40,0,0,-0.0234716 -129956,7404:209:2,-49.5,40,0,0,-0.023192 -129957,7404:209:1,-49,40,0,0,-0.0231554 -129958,7404:208:2,-48.5,40,0,0,-0.0230716 -129959,7404:208:1,-48,40,0,0,-0.0230247 -129960,7404:207:2,-47.5,40,0,0,-0.0230978 -129961,7404:207:1,-47,40,0,0,-0.023445 -129962,7404:206:2,-46.5,40,0,0,-0.0235833 -129963,7404:206:1,-46,40,0,0,-0.0230405 -129964,7404:205:2,-45.5,40,0,0,-0.022328 -129965,7404:205:1,-45,40,0,0,-0.0222727 -129966,7404:104:2,-44.5,40,0,0,-0.0227096 -129967,7404:104:1,-44,40,0,0,-0.0227919 -129968,7404:103:2,-43.5,40,0,0,-0.0228692 -129969,7404:103:1,-43,40,0,0,-0.0226276 -129970,7404:102:2,-42.5,40,0,0,-0.0233393 -129971,7404:102:1,-42,40,0,0,-0.023911 -129972,7404:101:2,-41.5,40,0,0,-0.0240574 -129973,7404:101:1,-41,40,0,0,-0.0237923 -129974,7404:100:2,-40.5,40,0,0,-0.0242103 -129975,7404:100:1,-40,40,0,0,-0.0244194 -129976,7403:209:2,-39.5,40,0,0,-0.0242981 -129977,7403:209:1,-39,40,0,0,-0.0255393 -129978,7403:208:2,-38.5,40,0,0,-0.0276933 -129979,7403:208:1,-38,40,0,0,-0.0289611 -129980,7403:207:2,-37.5,40,0,0,-0.0297216 -129981,7403:207:1,-37,40,0,0,-0.0305724 -129982,7403:206:2,-36.5,40,0,0,-0.0305794 -129983,7403:206:1,-36,40,0,0,-0.0314843 -129984,7403:205:2,-35.5,40,0,0,-0.0331951 -129985,7403:205:1,-35,40,0,0,-0.0337992 -129986,7403:104:2,-34.5,40,0,0,-0.0338844 -129987,7403:104:1,-34,40,0,0,-0.0339075 -129988,7403:103:2,-33.5,40,0,0,-0.0339153 -129989,7403:103:1,-33,40,0,0,-0.0354127 -129990,7403:102:2,-32.5,40,0,0,-0.0397498 -129991,7403:102:1,-32,40,0,0,-0.0441595 -129992,7403:101:2,-31.5,40,0,0,-0.0473291 -129993,7403:101:1,-31,40,0,0,-0.0497573 -129994,7403:100:2,-30.5,40,0,0,-0.0498035 -129995,7403:100:1,-30,40,0,0,-0.0465902 -129996,7402:209:2,-29.5,40,0,0,-0.0448787 -129997,7402:209:1,-29,40,0,0,-0.0451696 -129998,7402:208:2,-28.5,40,0,0,-0.046817 -129999,7402:208:1,-28,40,0,0,-0.0492982 -130000,7402:207:2,-27.5,40,0,0,-0.0615633 -130001,7402:207:1,-27,40,0,0,-0.0666863 -130002,7402:206:2,-26.5,40,0,0,-0.0658587 -130003,7402:206:1,-26,40,0,0,-0.067191 -130004,7402:205:2,-25.5,40,0,0,-0.0690886 -130005,7402:205:1,-25,40,0,0,-0.0771221 -130006,7402:104:2,-24.5,40,0,0,-0.0819386 -130007,7402:104:1,-24,40,0,0,-0.0802346 -130008,7402:103:2,-23.5,40,0,0,-0.0763372 -130009,7402:103:1,-23,40,0,0,-0.0729182 -130010,7402:102:2,-22.5,40,0,0,-0.0715661 -130011,7402:102:1,-22,40,0,0,-0.0736656 -130012,7402:101:2,-21.5,40,0,0,-0.0754355 -130013,7402:101:1,-21,40,0,0,-0.0948364 -130014,7402:100:2,-20.5,40,0,0,-0.116802 -130015,7402:100:1,-20,40,0,0,-0.117816 -130016,7401:209:2,-19.5,40,0,0,-0.123829 -130017,7401:209:1,-19,40,0,0,-0.125907 -130018,7401:208:2,-18.5,40,0,0,-0.127866 -130019,7401:208:1,-18,40,0,0,-0.128794 -130020,7401:207:2,-17.5,40,0,0,-0.129051 -130021,7401:207:1,-17,40,0,0,-0.129503 -130022,7401:206:2,-16.5,40,0,0,-0.130672 -130023,7401:206:1,-16,40,0,0,-0.131294 -130024,7401:205:2,-15.5,40,0,0,-0.130281 -130025,7401:205:1,-15,40,0,0,-0.124445 -130026,7401:104:2,-14.5,40,0,0,-0.120766 -130027,7401:104:1,-14,40,0,0,-0.122666 -130028,7401:103:2,-13.5,40,0,0,-0.124661 -130029,7401:103:1,-13,40,0,0,-0.124353 -130030,7401:102:2,-12.5,40,0,0,-0.12389 -130031,7401:102:1,-12,40,0,0,-0.114804 -130032,7401:101:2,-11.5,40,0,0,-0.101528 -130033,7401:101:1,-11,40,0,0,-0.0969966 -130034,7401:100:2,-10.5,40,0,0,-0.0884513 -130035,7400:207:1,-7,40,0,0,-0.0987293 -130036,7400:206:2,-6.5,40,0,0,-0.0712452 -130037,7400:206:1,-6,40,0,0,-0.066954 -130038,7400:205:2,-5.5,40,0,0,-0.0625682 -130039,7400:102:1,-2,40,0,0,-0.0738054 -130040,7400:101:2,-1.5,40,0,0,-0.0762287 -130041,7400:101:1,-1,40,0,0,-0.0728318 -130042,7400:100:2,-0.5,40,0,0,-0.0694486 -130043,1400:100:2,0,40,0,0,-0.0702077 -130044,1400:100:2,0.5,40,0,0,-0.0698767 -130045,1400:101:1,1,40,0,0,-0.0730222 -130046,1400:101:2,1.5,40,0,0,-0.076138 -130047,1400:102:1,2,40,0,0,-0.0834819 -130048,1400:102:2,2.5,40,0,0,-0.0820564 -130049,1400:103:1,3,40,0,0,-0.0647215 -130050,1400:103:2,3.5,40,0,0,-0.0572677 -130051,1414:103:2,143.5,40,0,0,-0.00606676 -130052,1414:104:1,144,40,0,0,-0.00621418 -130053,1414:104:2,144.5,40,0,0,-0.00595985 -130054,1414:205:1,145,40,0,0,-0.005877 -130055,1414:205:2,145.5,40,0,0,-0.00816871 -130056,1414:206:1,146,40,0,0,-0.00806746 -130057,1414:206:2,146.5,40,0,0,-0.0103351 -130058,1414:207:1,147,40,0,0,-0.0133708 -130059,1414:207:2,147.5,40,0,0,-0.0137381 -130060,1414:208:1,148,40,0,0,-0.0141536 -130061,1414:208:2,148.5,40,0,0,-0.0145296 -130062,1414:209:1,149,40,0,0,-0.0147859 -130063,1414:209:2,149.5,40,0,0,-0.0151518 -130064,1415:100:1,150,40,0,0,-0.0158259 -130065,1415:100:2,150.5,40,0,0,-0.01639 -130066,1415:101:1,151,40,0,0,-0.0165675 -130067,1415:101:2,151.5,40,0,0,-0.0166384 -130068,1415:102:1,152,40,0,0,-0.0166908 -130069,1415:102:2,152.5,40,0,0,-0.0165601 -130070,1415:103:1,153,40,0,0,-0.0163422 -130071,1415:103:2,153.5,40,0,0,-0.0163385 -130072,1415:104:1,154,40,0,0,-0.0164896 -130073,1415:104:2,154.5,40,0,0,-0.0167999 -130074,1415:205:1,155,40,0,0,-0.0171392 -130075,1415:205:2,155.5,40,0,0,-0.0172745 -130076,1415:206:1,156,40,0,0,-0.0174856 -130077,1415:206:2,156.5,40,0,0,-0.0169173 -130078,1415:207:1,157,40,0,0,-0.012347 -130079,1416:103:2,163.5,40,0,0,-0.0135942 -130080,1416:104:1,164,40,0,0,-0.0142427 -130081,1416:104:2,164.5,40,0,0,-0.0160476 -130082,1416:205:1,165,40,0,0,-0.0175406 -130083,1416:205:2,165.5,40,0,0,-0.0178871 -130084,1416:206:1,166,40,0,0,-0.0178832 -130085,1416:206:2,166.5,40,0,0,-0.0178189 -130086,1416:207:2,167.5,40,0,0,-0.0125503 -130087,1416:208:1,168,40,0,0,-0.0183395 -130088,1416:208:2,168.5,40,0,0,-0.0188924 -130089,1416:209:1,169,40,0,0,-0.0195414 -130090,1416:209:2,169.5,40,0,0,-0.0203963 -130091,1417:100:1,170,40,0,0,-0.0199553 -130092,1417:100:2,170.5,40,0,0,-0.0194492 -130093,1417:101:1,171,40,0,0,-0.019102 -130094,1417:101:2,171.5,40,0,0,-0.019388 -130095,1417:102:1,172,40,0,0,-0.0197449 -130096,1417:102:2,172.5,40,0,0,-0.0196341 -130097,1417:103:1,173,40,0,0,-0.0195855 -130098,1417:103:2,173.5,40,0,0,-0.0197051 -130099,1417:104:1,174,40,0,0,-0.0198074 -130100,1417:104:2,174.5,40,0,0,-0.019861 -130101,1417:205:1,175,40,0,0,-0.0197406 -130102,1417:205:2,175.5,40,0,0,-0.0195724 -130103,1417:206:1,176,40,0,0,-0.0198879 -130104,1417:206:2,176.5,40,0,0,-0.0200726 -130105,1417:207:1,177,40,0,0,-0.0201496 -130106,1417:207:2,177.5,40,0,0,-0.0201405 -130107,1417:208:1,178,40,0,0,-0.0199192 -130108,1417:208:2,178.5,40,0,0,-0.0196695 -130109,1417:209:1,179,40,0,0,-0.0198521 -130110,1417:209:2,179.5,40,0,0,-0.0206555 -130111,1418:100:1,180,40,0,0,-0.0213856 -130112,7418:100:3,-180,40.5,0,0,-0.0196872 -130113,7417:209:4,-179.5,40.5,0,0,-0.0199058 -130114,7417:209:3,-179,40.5,0,0,-0.0197762 -130115,7417:208:4,-178.5,40.5,0,0,-0.0196872 -130116,7417:208:3,-178,40.5,0,0,-0.0198297 -130117,7417:207:4,-177.5,40.5,0,0,-0.0200408 -130118,7417:207:3,-177,40.5,0,0,-0.0201996 -130119,7417:206:4,-176.5,40.5,0,0,-0.0203733 -130120,7417:206:3,-176,40.5,0,0,-0.0206183 -130121,7417:205:4,-175.5,40.5,0,0,-0.0207582 -130122,7417:205:3,-175,40.5,0,0,-0.0208239 -130123,7417:104:4,-174.5,40.5,0,0,-0.02106 -130124,7417:104:3,-174,40.5,0,0,-0.0218886 -130125,7417:103:4,-173.5,40.5,0,0,-0.0232919 -130126,7417:103:3,-173,40.5,0,0,-0.0240139 -130127,7417:102:4,-172.5,40.5,0,0,-0.0243753 -130128,7417:102:3,-172,40.5,0,0,-0.0253261 -130129,7417:101:4,-171.5,40.5,0,0,-0.0257076 -130130,7417:101:3,-171,40.5,0,0,-0.0256728 -130131,7417:100:4,-170.5,40.5,0,0,-0.0259948 -130132,7417:100:3,-170,40.5,0,0,-0.0265788 -130133,7416:209:4,-169.5,40.5,0,0,-0.0271149 -130134,7416:209:3,-169,40.5,0,0,-0.027889 -130135,7416:208:4,-168.5,40.5,0,0,-0.0281756 -130136,7416:208:3,-168,40.5,0,0,-0.0275616 -130137,7416:207:4,-167.5,40.5,0,0,-0.0273871 -130138,7416:207:3,-167,40.5,0,0,-0.0274866 -130139,7416:206:4,-166.5,40.5,0,0,-0.0253893 -130140,7416:104:4,-164.5,40.5,0,0,-0.018572 -130141,7416:104:3,-164,40.5,0,0,-0.0206694 -130142,7416:103:4,-163.5,40.5,0,0,-0.0222324 -130143,7416:103:3,-163,40.5,0,0,-0.0256728 -130144,7416:102:4,-162.5,40.5,0,0,-0.0269922 -130145,7416:102:3,-162,40.5,0,0,-0.0274492 -130146,7416:101:4,-161.5,40.5,0,0,-0.0272939 -130147,7416:101:3,-161,40.5,0,0,-0.0276872 -130148,7416:100:4,-160.5,40.5,0,0,-0.029093 -130149,7416:100:3,-160,40.5,0,0,-0.0288494 -130150,7415:209:4,-159.5,40.5,0,0,-0.027832 -130151,7415:209:3,-159,40.5,0,0,-0.0269127 -130152,7415:208:4,-158.5,40.5,0,0,-0.0262196 -130153,7415:208:3,-158,40.5,0,0,-0.0257835 -130154,7415:207:4,-157.5,40.5,0,0,-0.0255914 -130155,7415:207:3,-157,40.5,0,0,-0.0255914 -130156,7415:206:4,-156.5,40.5,0,0,-0.0257719 -130157,7415:206:3,-156,40.5,0,0,-0.0259477 -130158,7415:205:4,-155.5,40.5,0,0,-0.0259653 -130159,7415:205:3,-155,40.5,0,0,-0.0259359 -130160,7415:104:4,-154.5,40.5,0,0,-0.0261188 -130161,7415:104:3,-154,40.5,0,0,-0.0266392 -130162,7415:103:4,-153.5,40.5,0,0,-0.0269127 -130163,7415:103:3,-153,40.5,0,0,-0.0267059 -130164,7415:102:4,-152.5,40.5,0,0,-0.0264286 -130165,7415:102:3,-152,40.5,0,0,-0.0263269 -130166,7415:101:4,-151.5,40.5,0,0,-0.0265307 -130167,7415:101:3,-151,40.5,0,0,-0.0273064 -130168,7415:100:4,-150.5,40.5,0,0,-0.0284587 -130169,7415:100:3,-150,40.5,0,0,-0.0293387 -130170,7414:209:4,-149.5,40.5,0,0,-0.0296137 -130171,7414:209:3,-149,40.5,0,0,-0.0297758 -130172,7414:208:4,-148.5,40.5,0,0,-0.0302195 -130173,7414:208:3,-148,40.5,0,0,-0.0305864 -130174,7414:207:4,-147.5,40.5,0,0,-0.0306142 -130175,7414:207:3,-147,40.5,0,0,-0.0310566 -130176,7414:206:4,-146.5,40.5,0,0,-0.0319032 -130177,7414:206:3,-146,40.5,0,0,-0.0339463 -130178,7414:205:4,-145.5,40.5,0,0,-0.035894 -130179,7414:205:3,-145,40.5,0,0,-0.0355671 -130180,7414:104:4,-144.5,40.5,0,0,-0.0348344 -130181,7414:104:3,-144,40.5,0,0,-0.0348104 -130182,7414:103:4,-143.5,40.5,0,0,-0.0356076 -130183,7414:103:3,-143,40.5,0,0,-0.0381233 -130184,7414:102:4,-142.5,40.5,0,0,-0.0415916 -130185,7414:102:3,-142,40.5,0,0,-0.0437942 -130186,7414:101:4,-141.5,40.5,0,0,-0.0450447 -130187,7414:101:3,-141,40.5,0,0,-0.045832 -130188,7414:100:4,-140.5,40.5,0,0,-0.0467631 -130189,7414:100:3,-140,40.5,0,0,-0.0475156 -130190,7413:209:4,-139.5,40.5,0,0,-0.0476807 -130191,7413:209:3,-139,40.5,0,0,-0.0474167 -130192,7413:208:4,-138.5,40.5,0,0,-0.0472086 -130193,7413:208:3,-138,40.5,0,0,-0.0472086 -130194,7413:207:4,-137.5,40.5,0,0,-0.0477029 -130195,7413:207:3,-137,40.5,0,0,-0.0484486 -130196,7413:206:4,-136.5,40.5,0,0,-0.04907 -130197,7413:206:3,-136,40.5,0,0,-0.0513413 -130198,7413:205:4,-135.5,40.5,0,0,-0.0573747 -130199,7413:205:3,-135,40.5,0,0,-0.058335 -130200,7413:104:4,-134.5,40.5,0,0,-0.0580356 -130201,7413:104:3,-134,40.5,0,0,-0.0572677 -130202,7413:103:4,-133.5,40.5,0,0,-0.0588418 -130203,7413:103:3,-133,40.5,0,0,-0.0615633 -130204,7413:102:4,-132.5,40.5,0,0,-0.062671 -130205,7413:102:3,-132,40.5,0,0,-0.063129 -130206,7413:101:4,-131.5,40.5,0,0,-0.0627887 -130207,7413:101:3,-131,40.5,0,0,-0.0646305 -130208,7413:100:4,-130.5,40.5,0,0,-0.0663882 -130209,7413:100:3,-130,40.5,0,0,-0.0664197 -130210,7412:209:4,-129.5,40.5,0,0,-0.0640552 -130211,7407:209:4,-79.5,40.5,0,0,-0.00814692 -130212,7407:209:3,-79,40.5,0,0,-0.00807827 -130213,7407:208:4,-78.5,40.5,0,0,-0.00822348 -130214,7407:208:3,-78,40.5,0,0,-0.0082971 -130215,7407:207:4,-77.5,40.5,0,0,-0.00821069 -130216,7407:207:3,-77,40.5,0,0,-0.00844818 -130217,7405:206:3,-56,40.5,0,0,-0.0067366 -130218,7405:205:4,-55.5,40.5,0,0,-0.0067501 -130219,7405:205:3,-55,40.5,0,0,-0.00689427 -130220,7405:104:4,-54.5,40.5,0,0,-0.00720317 -130221,7405:104:3,-54,40.5,0,0,-0.00765955 -130222,7405:103:4,-53.5,40.5,0,0,-0.00824918 -130223,7405:103:3,-53,40.5,0,0,-0.00848594 -130224,7405:102:4,-52.5,40.5,0,0,-0.00922775 -130225,7405:102:3,-52,40.5,0,0,-0.0108652 -130226,7405:101:4,-51.5,40.5,0,0,-0.0138742 -130227,7405:101:3,-51,40.5,0,0,-0.0182735 -130228,7405:100:4,-50.5,40.5,0,0,-0.0217361 -130229,7405:100:3,-50,40.5,0,0,-0.0235034 -130230,7404:209:4,-49.5,40.5,0,0,-0.0232235 -130231,7404:209:3,-49,40.5,0,0,-0.0230039 -130232,7404:208:4,-48.5,40.5,0,0,-0.0228383 -130233,7404:208:3,-48,40.5,0,0,-0.0227661 -130234,7404:207:4,-47.5,40.5,0,0,-0.0229521 -130235,7404:207:3,-47,40.5,0,0,-0.0229521 -130236,7404:206:4,-46.5,40.5,0,0,-0.0230769 -130237,7404:206:3,-46,40.5,0,0,-0.022323 -130238,7404:205:4,-45.5,40.5,0,0,-0.0216284 -130239,7404:205:3,-45,40.5,0,0,-0.0221072 -130240,7404:104:4,-44.5,40.5,0,0,-0.0223786 -130241,7404:104:3,-44,40.5,0,0,-0.0225053 -130242,7404:103:4,-43.5,40.5,0,0,-0.0227455 -130243,7404:103:3,-43,40.5,0,0,-0.0223886 -130244,7404:102:4,-42.5,40.5,0,0,-0.0221773 -130245,7404:102:3,-42,40.5,0,0,-0.02303 -130246,7404:101:4,-41.5,40.5,0,0,-0.0232813 -130247,7404:101:3,-41,40.5,0,0,-0.0233234 -130248,7404:100:4,-40.5,40.5,0,0,-0.0234027 -130249,7404:100:3,-40,40.5,0,0,-0.0234716 -130250,7403:209:4,-39.5,40.5,0,0,-0.0237708 -130251,7403:209:3,-39,40.5,0,0,-0.0248883 -130252,7403:208:4,-38.5,40.5,0,0,-0.0271579 -130253,7403:208:3,-38,40.5,0,0,-0.028323 -130254,7403:207:4,-37.5,40.5,0,0,-0.0284068 -130255,7403:207:3,-37,40.5,0,0,-0.0303919 -130256,7403:206:4,-36.5,40.5,0,0,-0.0317146 -130257,7403:206:3,-36,40.5,0,0,-0.0323206 -130258,7403:205:4,-35.5,40.5,0,0,-0.0326988 -130259,7403:205:3,-35,40.5,0,0,-0.0323647 -130260,7403:104:4,-34.5,40.5,0,0,-0.0322175 -130261,7403:104:3,-34,40.5,0,0,-0.0324683 -130262,7403:103:4,-33.5,40.5,0,0,-0.0318161 -130263,7403:103:3,-33,40.5,0,0,-0.0309861 -130264,7403:102:4,-32.5,40.5,0,0,-0.0317944 -130265,7403:102:3,-32,40.5,0,0,-0.0355021 -130266,7403:101:4,-31.5,40.5,0,0,-0.0405526 -130267,7403:101:3,-31,40.5,0,0,-0.0450552 -130268,7403:100:4,-30.5,40.5,0,0,-0.0459592 -130269,7403:100:3,-30,40.5,0,0,-0.0444969 -130270,7402:209:4,-29.5,40.5,0,0,-0.0439563 -130271,7402:209:3,-29,40.5,0,0,-0.0442208 -130272,7402:208:4,-28.5,40.5,0,0,-0.0514487 -130273,7402:208:3,-28,40.5,0,0,-0.0521955 -130274,7402:207:4,-27.5,40.5,0,0,-0.0537357 -130275,7402:207:3,-27,40.5,0,0,-0.0585949 -130276,7402:206:4,-26.5,40.5,0,0,-0.0587868 -130277,7402:206:3,-26,40.5,0,0,-0.0644179 -130278,7402:205:4,-25.5,40.5,0,0,-0.0708583 -130279,7402:205:3,-25,40.5,0,0,-0.0814898 -130280,7402:104:4,-24.5,40.5,0,0,-0.0833423 -130281,7402:104:3,-24,40.5,0,0,-0.0802919 -130282,7402:103:4,-23.5,40.5,0,0,-0.0784373 -130283,7402:103:3,-23,40.5,0,0,-0.0798906 -130284,7402:102:4,-22.5,40.5,0,0,-0.0787179 -130285,7402:102:3,-22,40.5,0,0,-0.0778788 -130286,7402:101:4,-21.5,40.5,0,0,-0.0892425 -130287,7402:101:3,-21,40.5,0,0,-0.115286 -130288,7402:100:4,-20.5,40.5,0,0,-0.117786 -130289,7402:100:3,-20,40.5,0,0,-0.116802 -130290,7401:209:4,-19.5,40.5,0,0,-0.11686 -130291,7401:209:3,-19,40.5,0,0,-0.119605 -130292,7401:208:4,-18.5,40.5,0,0,-0.125096 -130293,7401:208:3,-18,40.5,0,0,-0.121697 -130294,7401:207:4,-17.5,40.5,0,0,-0.123921 -130295,7401:207:3,-17,40.5,0,0,-0.128922 -130296,7401:206:4,-16.5,40.5,0,0,-0.126315 -130297,7401:206:3,-16,40.5,0,0,-0.121035 -130298,7401:205:4,-15.5,40.5,0,0,-0.112649 -130299,7401:205:3,-15,40.5,0,0,-0.109326 -130300,7401:104:4,-14.5,40.5,0,0,-0.11767 -130301,7401:104:3,-14,40.5,0,0,-0.126001 -130302,7401:103:4,-13.5,40.5,0,0,-0.126158 -130303,7401:103:3,-13,40.5,0,0,-0.125719 -130304,7401:102:4,-12.5,40.5,0,0,-0.12494 -130305,7401:102:3,-12,40.5,0,0,-0.118956 -130306,7401:101:4,-11.5,40.5,0,0,-0.107863 -130307,7401:101:3,-11,40.5,0,0,-0.0992097 -130308,7401:100:4,-10.5,40.5,0,0,-0.0901056 -130309,7400:207:4,-7.5,40.5,0,0,-0.0964102 -130310,7400:206:3,-6,40.5,0,0,-0.0592842 -130311,7400:102:4,-2.5,40.5,0,0,-0.0778047 -130312,7400:102:3,-2,40.5,0,0,-0.0826273 -130313,7400:101:4,-1.5,40.5,0,0,-0.0805608 -130314,7400:101:3,-1,40.5,0,0,-0.0748288 -130315,7400:100:4,-0.5,40.5,0,0,-0.0699428 -130316,1400:100:4,0,40.5,0,0,-0.0705073 -130317,1400:100:4,0.5,40.5,0,0,-0.0716851 -130318,1400:101:3,1,40.5,0,0,-0.0721279 -130319,1400:101:4,1.5,40.5,0,0,-0.0773246 -130320,1400:102:3,2,40.5,0,0,-0.079321 -130321,1400:102:4,2.5,40.5,0,0,-0.0821745 -130322,1400:103:3,3,40.5,0,0,-0.0823317 -130323,1400:103:4,3.5,40.5,0,0,-0.0777674 -130324,1400:104:3,4,40.5,0,0,-0.0709756 -130325,1400:104:4,4.5,40.5,0,0,-0.059021 -130326,1400:205:4,5.5,40.5,0,0,-0.0464933 -130327,1414:100:4,140.5,40.5,0,0,-0.00586263 -130328,1414:103:3,143,40.5,0,0,-0.00638081 -130329,1414:103:4,143.5,40.5,0,0,-0.00681197 -130330,1414:104:3,144,40.5,0,0,-0.007095 -130331,1414:104:4,144.5,40.5,0,0,-0.00693271 -130332,1414:205:4,145.5,40.5,0,0,-0.00791796 -130333,1414:206:3,146,40.5,0,0,-0.00781113 -130334,1414:206:4,146.5,40.5,0,0,-0.00982684 -130335,1414:207:3,147,40.5,0,0,-0.0134098 -130336,1414:207:4,147.5,40.5,0,0,-0.0139928 -130337,1414:208:3,148,40.5,0,0,-0.0143323 -130338,1414:208:4,148.5,40.5,0,0,-0.014766 -130339,1414:209:3,149,40.5,0,0,-0.0151314 -130340,1414:209:4,149.5,40.5,0,0,-0.0154956 -130341,1415:100:3,150,40.5,0,0,-0.0158329 -130342,1415:100:4,150.5,40.5,0,0,-0.0158437 -130343,1415:101:3,151,40.5,0,0,-0.0156563 -130344,1415:101:4,151.5,40.5,0,0,-0.0152097 -130345,1415:102:3,152,40.5,0,0,-0.014776 -130346,1415:102:4,152.5,40.5,0,0,-0.0147363 -130347,1415:103:3,153,40.5,0,0,-0.0147 -130348,1415:103:4,153.5,40.5,0,0,-0.0148224 -130349,1415:104:3,154,40.5,0,0,-0.0150704 -130350,1415:104:4,154.5,40.5,0,0,-0.0156844 -130351,1415:205:3,155,40.5,0,0,-0.0163495 -130352,1415:205:4,155.5,40.5,0,0,-0.016815 -130353,1415:206:3,156,40.5,0,0,-0.0171392 -130354,1415:206:4,156.5,40.5,0,0,-0.0165639 -130355,1415:207:3,157,40.5,0,0,-0.0118228 -130356,1416:103:3,163,40.5,0,0,-0.0127255 -130357,1416:103:4,163.5,40.5,0,0,-0.013473 -130358,1416:104:3,164,40.5,0,0,-0.0139271 -130359,1416:104:4,164.5,40.5,0,0,-0.0144548 -130360,1416:205:3,165,40.5,0,0,-0.0151518 -130361,1416:205:4,165.5,40.5,0,0,-0.016138 -130362,1416:206:3,166,40.5,0,0,-0.0165564 -130363,1416:206:4,166.5,40.5,0,0,-0.0162543 -130364,1416:207:3,167,40.5,0,0,-0.0165601 -130365,1416:207:4,167.5,40.5,0,0,-0.0169896 -130366,1416:208:3,168,40.5,0,0,-0.0167772 -130367,1416:208:4,168.5,40.5,0,0,-0.016963 -130368,1416:209:3,169,40.5,0,0,-0.0182201 -130369,1416:209:4,169.5,40.5,0,0,-0.0199508 -130370,1417:100:3,170,40.5,0,0,-0.0198655 -130371,1417:100:4,170.5,40.5,0,0,-0.0188245 -130372,1417:101:3,171,40.5,0,0,-0.0187822 -130373,1417:101:4,171.5,40.5,0,0,-0.0192098 -130374,1417:102:3,172,40.5,0,0,-0.0195151 -130375,1417:102:4,172.5,40.5,0,0,-0.0195767 -130376,1417:103:3,173,40.5,0,0,-0.0194404 -130377,1417:103:4,173.5,40.5,0,0,-0.0192574 -130378,1417:104:3,174,40.5,0,0,-0.0192445 -130379,1417:104:4,174.5,40.5,0,0,-0.0194273 -130380,1417:205:3,175,40.5,0,0,-0.0194668 -130381,1417:205:4,175.5,40.5,0,0,-0.0188076 -130382,1417:206:3,176,40.5,0,0,-0.0184637 -130383,1417:206:4,176.5,40.5,0,0,-0.0184969 -130384,1417:207:3,177,40.5,0,0,-0.0185052 -130385,1417:207:4,177.5,40.5,0,0,-0.0184927 -130386,1417:208:3,178,40.5,0,0,-0.0184553 -130387,1417:208:4,178.5,40.5,0,0,-0.0184221 -130388,1417:209:3,179,40.5,0,0,-0.0184304 -130389,1417:209:4,179.5,40.5,0,0,-0.0189264 -130390,1418:100:3,180,40.5,0,0,-0.0196872 -130391,7418:110:1,-180,41,0,0,-0.0188584 -130392,7417:219:2,-179.5,41,0,0,-0.0192228 -130393,7417:219:1,-179,41,0,0,-0.0194623 -130394,7417:218:2,-178.5,41,0,0,-0.0197361 -130395,7417:218:1,-178,41,0,0,-0.0199913 -130396,7417:217:2,-177.5,41,0,0,-0.0201586 -130397,7417:217:1,-177,41,0,0,-0.0202725 -130398,7417:216:2,-176.5,41,0,0,-0.0203687 -130399,7417:216:1,-176,41,0,0,-0.0204056 -130400,7417:215:2,-175.5,41,0,0,-0.0204331 -130401,7417:215:1,-175,41,0,0,-0.020623 -130402,7417:114:2,-174.5,41,0,0,-0.02116 -130403,7417:114:1,-174,41,0,0,-0.0224747 -130404,7417:113:2,-173.5,41,0,0,-0.0238299 -130405,7417:113:1,-173,41,0,0,-0.0245357 -130406,7417:112:2,-172.5,41,0,0,-0.0254872 -130407,7417:112:1,-172,41,0,0,-0.0263568 -130408,7417:111:2,-171.5,41,0,0,-0.0267846 -130409,7417:111:1,-171,41,0,0,-0.0270226 -130410,7417:110:2,-170.5,41,0,0,-0.0272444 -130411,7417:110:1,-170,41,0,0,-0.0273933 -130412,7416:219:2,-169.5,41,0,0,-0.0270965 -130413,7416:219:1,-169,41,0,0,-0.0259831 -130414,7416:218:2,-168.5,41,0,0,-0.0244194 -130415,7416:218:1,-168,41,0,0,-0.0242323 -130416,7416:217:2,-167.5,41,0,0,-0.0256495 -130417,7416:217:1,-167,41,0,0,-0.0269554 -130418,7416:216:2,-166.5,41,0,0,-0.0259653 -130419,7416:216:1,-166,41,0,0,-0.0253663 -130420,7416:215:2,-165.5,41,0,0,-0.0239976 -130421,7416:215:1,-165,41,0,0,-0.0214291 -130422,7416:113:2,-163.5,41,0,0,-0.0142875 -130423,7416:113:1,-163,41,0,0,-0.0209842 -130424,7416:112:2,-162.5,41,0,0,-0.0230561 -130425,7416:112:1,-162,41,0,0,-0.0233181 -130426,7416:111:2,-161.5,41,0,0,-0.0213663 -130427,7416:111:1,-161,41,0,0,-0.021692 -130428,7416:110:2,-160.5,41,0,0,-0.0263568 -130429,7416:110:1,-160,41,0,0,-0.0284974 -130430,7415:219:2,-159.5,41,0,0,-0.0298573 -130431,7415:219:1,-159,41,0,0,-0.0298505 -130432,7415:218:2,-158.5,41,0,0,-0.0289742 -130433,7415:218:1,-158,41,0,0,-0.0282395 -130434,7415:217:2,-157.5,41,0,0,-0.0273871 -130435,7415:217:1,-157,41,0,0,-0.0266029 -130436,7415:216:2,-156.5,41,0,0,-0.0259183 -130437,7415:216:1,-156,41,0,0,-0.0256378 -130438,7415:215:2,-155.5,41,0,0,-0.0256554 -130439,7415:215:1,-155,41,0,0,-0.0257019 -130440,7415:114:2,-154.5,41,0,0,-0.0259301 -130441,7415:114:1,-154,41,0,0,-0.0262732 -130442,7415:113:2,-153.5,41,0,0,-0.0261544 -130443,7415:113:1,-153,41,0,0,-0.0258304 -130444,7415:112:2,-152.5,41,0,0,-0.0257835 -130445,7415:112:1,-152,41,0,0,-0.0259242 -130446,7415:111:2,-151.5,41,0,0,-0.0260598 -130447,7415:111:1,-151,41,0,0,-0.0261899 -130448,7415:110:2,-150.5,41,0,0,-0.026736 -130449,7415:110:1,-150,41,0,0,-0.0275116 -130450,7414:219:2,-149.5,41,0,0,-0.027889 -130451,7414:219:1,-149,41,0,0,-0.0281947 -130452,7414:218:2,-148.5,41,0,0,-0.0286011 -130453,7414:218:1,-148,41,0,0,-0.0292322 -130454,7414:217:2,-147.5,41,0,0,-0.0302678 -130455,7414:217:1,-147,41,0,0,-0.031513 -130456,7414:216:2,-146.5,41,0,0,-0.0321076 -130457,7414:216:1,-146,41,0,0,-0.0325054 -130458,7414:215:2,-145.5,41,0,0,-0.0337684 -130459,7414:215:1,-145,41,0,0,-0.0343442 -130460,7414:114:2,-144.5,41,0,0,-0.0340941 -130461,7414:114:1,-144,41,0,0,-0.0348583 -130462,7414:113:2,-143.5,41,0,0,-0.0350581 -130463,7414:113:1,-143,41,0,0,-0.0357301 -130464,7414:112:2,-142.5,41,0,0,-0.0387672 -130465,7414:112:1,-142,41,0,0,-0.041774 -130466,7414:111:2,-141.5,41,0,0,-0.0433924 -130467,7414:111:1,-141,41,0,0,-0.044641 -130468,7414:110:2,-140.5,41,0,0,-0.0466333 -130469,7414:110:1,-140,41,0,0,-0.047891 -130470,7413:219:2,-139.5,41,0,0,-0.0486849 -130471,7413:219:1,-139,41,0,0,-0.0491499 -130472,7413:218:2,-138.5,41,0,0,-0.049873 -130473,7413:218:1,-138,41,0,0,-0.0506898 -130474,7413:217:2,-137.5,41,0,0,-0.0509967 -130475,7413:217:1,-137,41,0,0,-0.0506428 -130476,7413:216:2,-136.5,41,0,0,-0.0503028 -130477,7413:216:1,-136,41,0,0,-0.0528673 -130478,7413:215:2,-135.5,41,0,0,-0.0574689 -130479,7413:215:1,-135,41,0,0,-0.058362 -130480,7413:114:2,-134.5,41,0,0,-0.0593537 -130481,7413:114:1,-134,41,0,0,-0.0597998 -130482,7413:113:2,-133.5,41,0,0,-0.0614475 -130483,7413:113:1,-133,41,0,0,-0.0622896 -130484,7413:112:2,-132.5,41,0,0,-0.0620999 -130485,7413:112:1,-132,41,0,0,-0.0637851 -130486,7413:111:2,-131.5,41,0,0,-0.0644179 -130487,7413:111:1,-131,41,0,0,-0.0660293 -130488,7413:110:2,-130.5,41,0,0,-0.0661386 -130489,7413:110:1,-130,41,0,0,-0.0642665 -130490,7408:110:1,-80,41,0,0,-0.00785472 -130491,7407:219:2,-79.5,41,0,0,-0.00790737 -130492,7407:219:1,-79,41,0,0,-0.00790737 -130493,7407:218:2,-78.5,41,0,0,-0.00865973 -130494,7407:218:1,-78,41,0,0,-0.00847649 -130495,7407:217:2,-77.5,41,0,0,-0.00809085 -130496,7405:215:2,-55.5,41,0,0,-0.00642635 -130497,7405:215:1,-55,41,0,0,-0.00683017 -130498,7405:114:2,-54.5,41,0,0,-0.00766299 -130499,7405:114:1,-54,41,0,0,-0.00841813 -130500,7405:113:2,-53.5,41,0,0,-0.00826574 -130501,7405:113:1,-53,41,0,0,-0.00885889 -130502,7405:112:2,-52.5,41,0,0,-0.0103722 -130503,7405:112:1,-52,41,0,0,-0.012886 -130504,7405:111:2,-51.5,41,0,0,-0.016412 -130505,7405:111:1,-51,41,0,0,-0.0210031 -130506,7405:110:2,-50.5,41,0,0,-0.0228848 -130507,7405:110:1,-50,41,0,0,-0.0236527 -130508,7404:219:2,-49.5,41,0,0,-0.0233604 -130509,7404:219:1,-49,41,0,0,-0.0232866 -130510,7404:218:2,-48.5,41,0,0,-0.0230666 -130511,7404:218:1,-48,41,0,0,-0.0229469 -130512,7404:217:2,-47.5,41,0,0,-0.0229989 -130513,7404:217:1,-47,41,0,0,-0.0226276 -130514,7404:216:2,-46.5,41,0,0,-0.0224342 -130515,7404:216:1,-46,41,0,0,-0.021227 -130516,7404:215:2,-45.5,41,0,0,-0.0210933 -130517,7404:215:1,-45,41,0,0,-0.0211506 -130518,7404:114:2,-44.5,41,0,0,-0.0213519 -130519,7404:114:1,-44,41,0,0,-0.0218048 -130520,7404:113:2,-43.5,41,0,0,-0.0218443 -130521,7404:113:1,-43,41,0,0,-0.0216137 -130522,7404:112:2,-42.5,41,0,0,-0.0214921 -130523,7404:112:1,-42,41,0,0,-0.0218443 -130524,7404:111:2,-41.5,41,0,0,-0.0226072 -130525,7404:111:1,-41,41,0,0,-0.0226993 -130526,7404:110:2,-40.5,41,0,0,-0.022328 -130527,7404:110:1,-40,41,0,0,-0.022323 -130528,7403:219:2,-39.5,41,0,0,-0.0228228 -130529,7403:219:1,-39,41,0,0,-0.0233181 -130530,7403:218:2,-38.5,41,0,0,-0.0235246 -130531,7403:218:1,-38,41,0,0,-0.0250296 -130532,7403:217:2,-37.5,41,0,0,-0.0266876 -130533,7403:217:1,-37,41,0,0,-0.0266514 -130534,7403:216:2,-36.5,41,0,0,-0.0283038 -130535,7403:216:1,-36,41,0,0,-0.0310001 -130536,7403:215:2,-35.5,41,0,0,-0.0316208 -130537,7403:215:1,-35,41,0,0,-0.030979 -130538,7403:114:2,-34.5,41,0,0,-0.0300412 -130539,7403:114:1,-34,41,0,0,-0.0301576 -130540,7403:113:2,-33.5,41,0,0,-0.0300345 -130541,7403:113:1,-33,41,0,0,-0.0302195 -130542,7403:112:2,-32.5,41,0,0,-0.0307121 -130543,7403:112:1,-32,41,0,0,-0.0323132 -130544,7403:111:2,-31.5,41,0,0,-0.0372337 -130545,7403:111:1,-31,41,0,0,-0.0428555 -130546,7403:110:2,-30.5,41,0,0,-0.0446306 -130547,7403:110:1,-30,41,0,0,-0.0442818 -130548,7402:219:2,-29.5,41,0,0,-0.0438145 -130549,7402:219:1,-29,41,0,0,-0.0433323 -130550,7402:218:2,-28.5,41,0,0,-0.0504434 -130551,7402:218:1,-28,41,0,0,-0.0565503 -130552,7402:217:2,-27.5,41,0,0,-0.0567751 -130553,7402:217:1,-27,41,0,0,-0.0578596 -130554,7402:216:2,-26.5,41,0,0,-0.0575091 -130555,7402:216:1,-26,41,0,0,-0.0623628 -130556,7402:215:2,-25.5,41,0,0,-0.0717188 -130557,7402:215:1,-25,41,0,0,-0.0812756 -130558,7402:114:2,-24.5,41,0,0,-0.0862484 -130559,7402:114:1,-24,41,0,0,-0.0852197 -130560,7402:113:2,-23.5,41,0,0,-0.0808307 -130561,7402:113:1,-23,41,0,0,-0.0820953 -130562,7402:112:2,-22.5,41,0,0,-0.0823906 -130563,7402:112:1,-22,41,0,0,-0.0824303 -130564,7402:111:2,-21.5,41,0,0,-0.102048 -130565,7402:111:1,-21,41,0,0,-0.117961 -130566,7402:110:2,-20.5,41,0,0,-0.114325 -130567,7402:110:1,-20,41,0,0,-0.111795 -130568,7401:219:2,-19.5,41,0,0,-0.110892 -130569,7401:219:1,-19,41,0,0,-0.10989 -130570,7401:218:2,-18.5,41,0,0,-0.110865 -130571,7401:218:1,-18,41,0,0,-0.104566 -130572,7401:217:2,-17.5,41,0,0,-0.0973733 -130573,7401:217:1,-17,41,0,0,-0.100398 -130574,7401:216:2,-16.5,41,0,0,-0.10598 -130575,7401:216:1,-16,41,0,0,-0.110947 -130576,7401:215:2,-15.5,41,0,0,-0.108791 -130577,7401:215:1,-15,41,0,0,-0.104847 -130578,7401:114:2,-14.5,41,0,0,-0.114804 -130579,7401:114:1,-14,41,0,0,-0.125845 -130580,7401:113:2,-13.5,41,0,0,-0.124879 -130581,7401:113:1,-13,41,0,0,-0.123675 -130582,7401:112:2,-12.5,41,0,0,-0.121727 -130583,7401:112:1,-12,41,0,0,-0.118722 -130584,7401:111:2,-11.5,41,0,0,-0.115115 -130585,7401:111:1,-11,41,0,0,-0.104975 -130586,7401:110:2,-10.5,41,0,0,-0.0984657 -130587,7401:110:1,-10,41,0,0,-0.092998 -130588,7400:219:2,-9.5,41,0,0,-0.086414 -130589,7400:219:1,-9,41,0,0,-0.0862686 -130590,7400:218:2,-8.5,41,0,0,-0.0946531 -130591,7400:218:1,-8,41,0,0,-0.095968 -130592,7400:217:2,-7.5,41,0,0,-0.0847714 -130593,7400:217:1,-7,41,0,0,-0.0810041 -130594,7400:113:2,-3.5,41,0,0,-0.0787557 -130595,7400:113:1,-3,41,0,0,-0.0816653 -130596,7400:112:2,-2.5,41,0,0,-0.0820169 -130597,7400:112:1,-2,41,0,0,-0.0833423 -130598,7400:111:2,-1.5,41,0,0,-0.0794342 -130599,7400:111:1,-1,41,0,0,-0.0637101 -130600,7400:110:2,-0.5,41,0,0,-0.0589524 -130601,1400:110:2,0,41,0,0,-0.0575361 -130602,1400:110:2,0.5,41,0,0,-0.0627002 -130603,1400:111:1,1,41,0,0,-0.0691703 -130604,1400:111:2,1.5,41,0,0,-0.0764098 -130605,1400:112:1,2,41,0,0,-0.0805802 -130606,1400:112:2,2.5,41,0,0,-0.0828647 -130607,1400:113:1,3,41,0,0,-0.0835819 -130608,1400:113:2,3.5,41,0,0,-0.0829246 -130609,1400:114:1,4,41,0,0,-0.0813924 -130610,1400:114:2,4.5,41,0,0,-0.0769939 -130611,1400:215:1,5,41,0,0,-0.0723159 -130612,1400:215:2,5.5,41,0,0,-0.053798 -130613,1400:216:1,6,41,0,0,-0.0458106 -130614,1414:110:1,140,41,0,0,-0.00619212 -130615,1414:110:2,140.5,41,0,0,-0.00587047 -130616,1414:111:1,141,41,0,0,-0.00588873 -130617,1414:112:1,142,41,0,0,-0.00611552 -130618,1414:113:1,143,41,0,0,-0.0069281 -130619,1414:113:2,143.5,41,0,0,-0.00736693 -130620,1414:114:1,144,41,0,0,-0.00747597 -130621,1414:114:2,144.5,41,0,0,-0.00745599 -130622,1414:215:1,145,41,0,0,-0.00757983 -130623,1414:215:2,145.5,41,0,0,-0.00798877 -130624,1414:216:1,146,41,0,0,-0.00770062 -130625,1414:216:2,146.5,41,0,0,-0.00944427 -130626,1414:217:1,147,41,0,0,-0.0129729 -130627,1414:217:2,147.5,41,0,0,-0.0139584 -130628,1414:218:1,148,41,0,0,-0.0141758 -130629,1414:218:2,148.5,41,0,0,-0.0142013 -130630,1414:219:1,149,41,0,0,-0.0141567 -130631,1414:219:2,149.5,41,0,0,-0.0146374 -130632,1415:110:1,150,41,0,0,-0.0148491 -130633,1415:110:2,150.5,41,0,0,-0.0146441 -130634,1415:111:1,151,41,0,0,-0.0144484 -130635,1415:111:2,151.5,41,0,0,-0.0138835 -130636,1415:112:1,152,41,0,0,-0.0133799 -130637,1415:112:2,152.5,41,0,0,-0.0133888 -130638,1415:113:1,153,41,0,0,-0.0134881 -130639,1415:113:2,153.5,41,0,0,-0.0136981 -130640,1415:114:1,154,41,0,0,-0.0139427 -130641,1415:114:2,154.5,41,0,0,-0.0147628 -130642,1415:215:1,155,41,0,0,-0.0156458 -130643,1415:215:2,155.5,41,0,0,-0.0163348 -130644,1415:216:1,156,41,0,0,-0.0167961 -130645,1415:216:2,156.5,41,0,0,-0.0158864 -130646,1415:217:1,157,41,0,0,-0.0117859 -130647,1416:113:2,163.5,41,0,0,-0.0131866 -130648,1416:114:1,164,41,0,0,-0.0129178 -130649,1416:114:2,164.5,41,0,0,-0.0127028 -130650,1416:215:1,165,41,0,0,-0.014387 -130651,1416:215:2,165.5,41,0,0,-0.0143259 -130652,1416:216:1,166,41,0,0,-0.0154538 -130653,1416:216:2,166.5,41,0,0,-0.0155442 -130654,1416:217:1,167,41,0,0,-0.0160693 -130655,1416:217:2,167.5,41,0,0,-0.016549 -130656,1416:218:1,168,41,0,0,-0.0166795 -130657,1416:218:2,168.5,41,0,0,-0.0169935 -130658,1416:219:1,169,41,0,0,-0.0184097 -130659,1416:219:2,169.5,41,0,0,-0.0198431 -130660,1417:110:1,170,41,0,0,-0.019158 -130661,1417:110:2,170.5,41,0,0,-0.017521 -130662,1417:111:1,171,41,0,0,-0.0163788 -130663,1417:111:2,171.5,41,0,0,-0.0167509 -130664,1417:112:1,172,41,0,0,-0.0184511 -130665,1417:112:2,172.5,41,0,0,-0.0190076 -130666,1417:113:1,173,41,0,0,-0.0189562 -130667,1417:113:2,173.5,41,0,0,-0.0188838 -130668,1417:114:1,174,41,0,0,-0.0189734 -130669,1417:114:2,174.5,41,0,0,-0.0192748 -130670,1417:215:1,175,41,0,0,-0.0192618 -130671,1417:215:2,175.5,41,0,0,-0.0185803 -130672,1417:216:1,176,41,0,0,-0.0182529 -130673,1417:216:2,176.5,41,0,0,-0.0181751 -130674,1417:217:1,177,41,0,0,-0.0181099 -130675,1417:217:2,177.5,41,0,0,-0.0180326 -130676,1417:218:1,178,41,0,0,-0.0179799 -130677,1417:218:2,178.5,41,0,0,-0.0179638 -130678,1417:219:1,179,41,0,0,-0.0179679 -130679,1417:219:2,179.5,41,0,0,-0.0182899 -130680,1418:110:1,180,41,0,0,-0.0188584 -130681,7418:110:3,-180,41.5,0,0,-0.0194712 -130682,7417:219:4,-179.5,41.5,0,0,-0.0196076 -130683,7417:219:3,-179,41.5,0,0,-0.0195635 -130684,7417:218:4,-178.5,41.5,0,0,-0.019612 -130685,7417:218:3,-178,41.5,0,0,-0.0198342 -130686,7417:217:4,-177.5,41.5,0,0,-0.0201042 -130687,7417:217:3,-177,41.5,0,0,-0.0202497 -130688,7417:216:4,-176.5,41.5,0,0,-0.020186 -130689,7417:216:3,-176,41.5,0,0,-0.0201496 -130690,7417:215:4,-175.5,41.5,0,0,-0.0203872 -130691,7417:215:3,-175,41.5,0,0,-0.0210553 -130692,7417:114:4,-174.5,41.5,0,0,-0.0224698 -130693,7417:114:3,-174,41.5,0,0,-0.0237868 -130694,7417:113:4,-173.5,41.5,0,0,-0.0243092 -130695,7417:113:3,-173,41.5,0,0,-0.0245413 -130696,7417:112:4,-172.5,41.5,0,0,-0.0245914 -130697,7417:112:3,-172,41.5,0,0,-0.0242323 -130698,7417:111:4,-171.5,41.5,0,0,-0.0234556 -130699,7417:111:3,-171,41.5,0,0,-0.0224951 -130700,7417:110:4,-170.5,41.5,0,0,-0.0244139 -130701,7417:110:3,-170,41.5,0,0,-0.0251887 -130702,7416:219:4,-169.5,41.5,0,0,-0.0237116 -130703,7416:219:3,-169,41.5,0,0,-0.0223835 -130704,7416:218:4,-168.5,41.5,0,0,-0.0223786 -130705,7416:218:3,-168,41.5,0,0,-0.0233656 -130706,7416:217:4,-167.5,41.5,0,0,-0.0245191 -130707,7416:217:3,-167,41.5,0,0,-0.0255509 -130708,7416:216:4,-166.5,41.5,0,0,-0.0259536 -130709,7416:216:3,-166,41.5,0,0,-0.0257368 -130710,7416:215:4,-165.5,41.5,0,0,-0.0247982 -130711,7416:215:3,-165,41.5,0,0,-0.0223735 -130712,7416:114:4,-164.5,41.5,0,0,-0.0199283 -130713,7416:112:4,-162.5,41.5,0,0,-0.0159578 -130714,7416:112:3,-162,41.5,0,0,-0.0192445 -130715,7416:111:4,-161.5,41.5,0,0,-0.0205671 -130716,7416:111:3,-161,41.5,0,0,-0.0249277 -130717,7416:110:4,-160.5,41.5,0,0,-0.0278573 -130718,7416:110:3,-160,41.5,0,0,-0.0281947 -130719,7415:219:4,-159.5,41.5,0,0,-0.0288166 -130720,7415:219:3,-159,41.5,0,0,-0.0293656 -130721,7415:218:4,-158.5,41.5,0,0,-0.0300959 -130722,7415:218:3,-158,41.5,0,0,-0.0300412 -130723,7415:217:4,-157.5,41.5,0,0,-0.0295667 -130724,7415:217:3,-157,41.5,0,0,-0.0289611 -130725,7415:216:4,-156.5,41.5,0,0,-0.0284522 -130726,7415:216:3,-156,41.5,0,0,-0.0269922 -130727,7415:215:4,-155.5,41.5,0,0,-0.0257893 -130728,7415:215:3,-155,41.5,0,0,-0.0256495 -130729,7415:114:4,-154.5,41.5,0,0,-0.0257952 -130730,7415:114:3,-154,41.5,0,0,-0.025766 -130731,7415:113:4,-153.5,41.5,0,0,-0.0255451 -130732,7415:113:3,-153,41.5,0,0,-0.0254297 -130733,7415:112:4,-152.5,41.5,0,0,-0.0255334 -130734,7415:112:3,-152,41.5,0,0,-0.0258186 -130735,7415:111:4,-151.5,41.5,0,0,-0.0261662 -130736,7415:111:3,-151,41.5,0,0,-0.0262852 -130737,7415:110:4,-150.5,41.5,0,0,-0.0264826 -130738,7415:110:3,-150,41.5,0,0,-0.0273808 -130739,7414:219:4,-149.5,41.5,0,0,-0.0291128 -130740,7414:219:3,-149,41.5,0,0,-0.0299252 -130741,7414:218:4,-148.5,41.5,0,0,-0.0301371 -130742,7414:218:3,-148,41.5,0,0,-0.0304682 -130743,7414:217:4,-147.5,41.5,0,0,-0.031078 -130744,7414:217:3,-147,41.5,0,0,-0.0316496 -130745,7414:216:4,-146.5,41.5,0,0,-0.0322837 -130746,7414:216:3,-146,41.5,0,0,-0.0325945 -130747,7414:215:4,-145.5,41.5,0,0,-0.0329234 -130748,7414:215:3,-145,41.5,0,0,-0.033561 -130749,7414:114:4,-144.5,41.5,0,0,-0.0360835 -130750,7414:114:3,-144,41.5,0,0,-0.0371315 -130751,7414:113:4,-143.5,41.5,0,0,-0.0364823 -130752,7414:113:3,-143,41.5,0,0,-0.0357873 -130753,7414:112:4,-142.5,41.5,0,0,-0.0362242 -130754,7414:112:3,-142,41.5,0,0,-0.0383514 -130755,7414:111:4,-141.5,41.5,0,0,-0.0407863 -130756,7414:111:3,-141,41.5,0,0,-0.0429644 -130757,7414:110:4,-140.5,41.5,0,0,-0.0452636 -130758,7414:110:3,-140,41.5,0,0,-0.0459167 -130759,7413:219:4,-139.5,41.5,0,0,-0.046893 -130760,7413:219:3,-139,41.5,0,0,-0.048247 -130761,7413:218:4,-138.5,41.5,0,0,-0.0498268 -130762,7413:218:3,-138,41.5,0,0,-0.0516285 -130763,7413:217:4,-137.5,41.5,0,0,-0.0523654 -130764,7413:217:3,-137,41.5,0,0,-0.0517844 -130765,7413:216:4,-136.5,41.5,0,0,-0.0509729 -130766,7413:216:3,-136,41.5,0,0,-0.0528673 -130767,7413:215:4,-135.5,41.5,0,0,-0.055764 -130768,7413:215:3,-135,41.5,0,0,-0.0574283 -130769,7413:114:4,-134.5,41.5,0,0,-0.060264 -130770,7413:114:3,-134,41.5,0,0,-0.0613324 -130771,7413:113:3,-133,41.5,0,0,-0.0571343 -130772,7413:112:4,-132.5,41.5,0,0,-0.0617513 -130773,7413:112:3,-132,41.5,0,0,-0.0637398 -130774,7413:111:4,-131.5,41.5,0,0,-0.0650574 -130775,7413:111:3,-131,41.5,0,0,-0.0646152 -130776,7413:110:4,-130.5,41.5,0,0,-0.0621728 -130777,7413:110:3,-130,41.5,0,0,-0.0625682 -130778,7408:110:3,-80,41.5,0,0,-0.00784422 -130779,7407:219:4,-79.5,41.5,0,0,-0.00778855 -130780,7407:219:3,-79,41.5,0,0,-0.00804774 -130781,7407:218:4,-78.5,41.5,0,0,-0.00865013 -130782,7407:218:3,-78,41.5,0,0,-0.00848594 -130783,7407:217:4,-77.5,41.5,0,0,-0.00810891 -130784,7405:216:4,-56.5,41.5,0,0,-0.00620592 -130785,7405:216:3,-56,41.5,0,0,-0.00653879 -130786,7405:215:4,-55.5,41.5,0,0,-0.00681498 -130787,7405:215:3,-55,41.5,0,0,-0.00728701 -130788,7405:114:4,-54.5,41.5,0,0,-0.00795329 -130789,7405:114:3,-54,41.5,0,0,-0.00944427 -130790,7405:113:4,-53.5,41.5,0,0,-0.0111829 -130791,7405:113:3,-53,41.5,0,0,-0.0137227 -130792,7405:112:4,-52.5,41.5,0,0,-0.0167961 -130793,7405:112:3,-52,41.5,0,0,-0.0209133 -130794,7405:111:4,-51.5,41.5,0,0,-0.0239814 -130795,7405:111:3,-51,41.5,0,0,-0.0234982 -130796,7405:110:4,-50.5,41.5,0,0,-0.0232602 -130797,7405:110:3,-50,41.5,0,0,-0.0223886 -130798,7404:219:4,-49.5,41.5,0,0,-0.0225359 -130799,7404:219:3,-49,41.5,0,0,-0.023171 -130800,7404:218:4,-48.5,41.5,0,0,-0.0232708 -130801,7404:218:3,-48,41.5,0,0,-0.0231083 -130802,7404:217:4,-47.5,41.5,0,0,-0.0223079 -130803,7404:217:3,-47,41.5,0,0,-0.0219184 -130804,7404:216:4,-46.5,41.5,0,0,-0.0213183 -130805,7404:216:3,-46,41.5,0,0,-0.0207535 -130806,7404:215:4,-45.5,41.5,0,0,-0.0206322 -130807,7404:215:3,-45,41.5,0,0,-0.0205626 -130808,7404:114:4,-44.5,41.5,0,0,-0.0205209 -130809,7404:114:3,-44,41.5,0,0,-0.0206275 -130810,7404:113:4,-43.5,41.5,0,0,-0.0205671 -130811,7404:113:3,-43,41.5,0,0,-0.0206741 -130812,7404:112:4,-42.5,41.5,0,0,-0.0210173 -130813,7404:112:3,-42,41.5,0,0,-0.0214098 -130814,7404:111:4,-41.5,41.5,0,0,-0.0220325 -130815,7404:111:3,-41,41.5,0,0,-0.0223028 -130816,7404:110:4,-40.5,41.5,0,0,-0.0219828 -130817,7404:110:3,-40,41.5,0,0,-0.0217508 -130818,7403:219:4,-39.5,41.5,0,0,-0.0221672 -130819,7403:219:3,-39,41.5,0,0,-0.0228848 -130820,7403:218:4,-38.5,41.5,0,0,-0.023873 -130821,7403:218:3,-38,41.5,0,0,-0.0245802 -130822,7403:217:4,-37.5,41.5,0,0,-0.0253088 -130823,7403:217:3,-37,41.5,0,0,-0.0255103 -130824,7403:216:4,-36.5,41.5,0,0,-0.0255334 -130825,7403:216:3,-36,41.5,0,0,-0.0266212 -130826,7403:215:4,-35.5,41.5,0,0,-0.0288886 -130827,7403:215:3,-35,41.5,0,0,-0.0296069 -130828,7403:114:4,-34.5,41.5,0,0,-0.0286663 -130829,7403:114:3,-34,41.5,0,0,-0.0288428 -130830,7403:113:4,-33.5,41.5,0,0,-0.0295263 -130831,7403:113:3,-33,41.5,0,0,-0.0304198 -130832,7403:112:4,-32.5,41.5,0,0,-0.0312127 -130833,7403:112:3,-32,41.5,0,0,-0.0319032 -130834,7403:111:4,-31.5,41.5,0,0,-0.033561 -130835,7403:111:3,-31,41.5,0,0,-0.0361413 -130836,7403:110:4,-30.5,41.5,0,0,-0.0377234 -130837,7403:110:3,-30,41.5,0,0,-0.0395586 -130838,7402:219:4,-29.5,41.5,0,0,-0.0421605 -130839,7402:219:3,-29,41.5,0,0,-0.0418412 -130840,7402:218:4,-28.5,41.5,0,0,-0.0410877 -130841,7402:218:3,-28,41.5,0,0,-0.0438349 -130842,7402:217:4,-27.5,41.5,0,0,-0.0453578 -130843,7402:217:3,-27,41.5,0,0,-0.0464074 -130844,7402:216:4,-26.5,41.5,0,0,-0.0504548 -130845,7402:216:3,-26,41.5,0,0,-0.0579 -130846,7402:215:4,-25.5,41.5,0,0,-0.0633516 -130847,7402:215:3,-25,41.5,0,0,-0.0661695 -130848,7402:114:4,-24.5,41.5,0,0,-0.0676524 -130849,7402:114:3,-24,41.5,0,0,-0.0783439 -130850,7402:113:4,-23.5,41.5,0,0,-0.0791889 -130851,7402:113:3,-23,41.5,0,0,-0.0745095 -130852,7402:112:4,-22.5,41.5,0,0,-0.084346 -130853,7402:112:3,-22,41.5,0,0,-0.0845077 -130854,7402:111:4,-21.5,41.5,0,0,-0.105053 -130855,7402:111:3,-21,41.5,0,0,-0.114945 -130856,7402:110:4,-20.5,41.5,0,0,-0.113735 -130857,7402:110:3,-20,41.5,0,0,-0.113233 -130858,7401:219:4,-19.5,41.5,0,0,-0.112871 -130859,7401:219:3,-19,41.5,0,0,-0.109567 -130860,7401:218:4,-18.5,41.5,0,0,-0.107179 -130861,7401:218:3,-18,41.5,0,0,-0.105722 -130862,7401:217:4,-17.5,41.5,0,0,-0.100008 -130863,7401:217:3,-17,41.5,0,0,-0.0903231 -130864,7401:216:4,-16.5,41.5,0,0,-0.0906064 -130865,7401:216:3,-16,41.5,0,0,-0.0953426 -130866,7401:215:4,-15.5,41.5,0,0,-0.0991134 -130867,7401:215:3,-15,41.5,0,0,-0.0998383 -130868,7401:114:4,-14.5,41.5,0,0,-0.103274 -130869,7401:114:3,-14,41.5,0,0,-0.118487 -130870,7401:113:4,-13.5,41.5,0,0,-0.124136 -130871,7401:113:3,-13,41.5,0,0,-0.12209 -130872,7401:112:4,-12.5,41.5,0,0,-0.120527 -130873,7401:112:3,-12,41.5,0,0,-0.118575 -130874,7401:111:4,-11.5,41.5,0,0,-0.114127 -130875,7401:111:3,-11,41.5,0,0,-0.107837 -130876,7401:110:4,-10.5,41.5,0,0,-0.100252 -130877,7401:110:3,-10,41.5,0,0,-0.100349 -130878,7400:219:4,-9.5,41.5,0,0,-0.0978465 -130879,7400:219:3,-9,41.5,0,0,-0.0862484 -130880,7400:218:4,-8.5,41.5,0,0,-0.0751849 -130881,7400:114:3,-4,41.5,0,0,-0.0731608 -130882,7400:113:4,-3.5,41.5,0,0,-0.0816064 -130883,7400:113:3,-3,41.5,0,0,-0.0820169 -130884,7400:112:4,-2.5,41.5,0,0,-0.081256 -130885,7400:112:3,-2,41.5,0,0,-0.081431 -130886,7400:111:4,-1.5,41.5,0,0,-0.0781016 -130887,7400:111:3,-1,41.5,0,0,-0.0692681 -130888,7400:110:4,-0.5,41.5,0,0,-0.0638148 -130889,1400:110:4,0,41.5,0,0,-0.0606748 -130890,1400:110:4,0.5,41.5,0,0,-0.0611173 -130891,1400:111:3,1,41.5,0,0,-0.0671596 -130892,1400:111:4,1.5,41.5,0,0,-0.0754891 -130893,1400:112:3,2,41.5,0,0,-0.0806954 -130894,1400:112:4,2.5,41.5,0,0,-0.0820564 -130895,1400:113:3,3,41.5,0,0,-0.0834819 -130896,1400:113:4,3.5,41.5,0,0,-0.082253 -130897,1400:114:3,4,41.5,0,0,-0.0795864 -130898,1400:114:4,4.5,41.5,0,0,-0.0702741 -130899,1400:215:3,5,41.5,0,0,-0.056908 -130900,1400:215:4,5.5,41.5,0,0,-0.0472086 -130901,1400:218:3,8,41.5,0,0,-0.0397498 -130902,1414:110:3,140,41.5,0,0,-0.00602244 -130903,1414:110:4,140.5,41.5,0,0,-0.00594927 -130904,1414:111:3,141,41.5,0,0,-0.00638648 -130905,1414:111:4,141.5,41.5,0,0,-0.00818694 -130906,1414:112:3,142,41.5,0,0,-0.00834899 -130907,1414:112:4,142.5,41.5,0,0,-0.00908891 -130908,1414:113:3,143,41.5,0,0,-0.00912137 -130909,1414:113:4,143.5,41.5,0,0,-0.008218 -130910,1414:114:3,144,41.5,0,0,-0.00787049 -130911,1414:114:4,144.5,41.5,0,0,-0.0078933 -130912,1414:215:3,145,41.5,0,0,-0.00785996 -130913,1414:215:4,145.5,41.5,0,0,-0.00779893 -130914,1414:216:3,146,41.5,0,0,-0.00766127 -130915,1414:216:4,146.5,41.5,0,0,-0.00918259 -130916,1414:217:3,147,41.5,0,0,-0.0119638 -130917,1414:217:4,147.5,41.5,0,0,-0.0123139 -130918,1414:218:3,148,41.5,0,0,-0.0121633 -130919,1414:218:4,148.5,41.5,0,0,-0.0120093 -130920,1414:219:3,149,41.5,0,0,-0.0116914 -130921,1414:219:4,149.5,41.5,0,0,-0.0120955 -130922,1415:110:3,150,41.5,0,0,-0.0132516 -130923,1415:110:4,150.5,41.5,0,0,-0.0131836 -130924,1415:111:3,151,41.5,0,0,-0.0129932 -130925,1415:111:4,151.5,41.5,0,0,-0.0128399 -130926,1415:112:3,152,41.5,0,0,-0.0127826 -130927,1415:112:4,152.5,41.5,0,0,-0.0127741 -130928,1415:113:3,153,41.5,0,0,-0.0128744 -130929,1415:113:4,153.5,41.5,0,0,-0.0131718 -130930,1415:114:3,154,41.5,0,0,-0.01364 -130931,1415:114:4,154.5,41.5,0,0,-0.0142714 -130932,1415:215:3,155,41.5,0,0,-0.0150839 -130933,1415:215:4,155.5,41.5,0,0,-0.0159685 -130934,1415:216:3,156,41.5,0,0,-0.0163788 -130935,1415:216:4,156.5,41.5,0,0,-0.0152199 -130936,1415:217:3,157,41.5,0,0,-0.0106063 -130937,1415:217:4,157.5,41.5,0,0,-0.00772982 -130938,1416:114:4,164.5,41.5,0,0,-0.0111604 -130939,1416:215:3,165,41.5,0,0,-0.0137997 -130940,1416:215:4,165.5,41.5,0,0,-0.0143548 -130941,1416:216:3,166,41.5,0,0,-0.0142045 -130942,1416:216:4,166.5,41.5,0,0,-0.0155373 -130943,1416:217:3,167,41.5,0,0,-0.0168339 -130944,1416:217:4,167.5,41.5,0,0,-0.0168226 -130945,1416:218:3,168,41.5,0,0,-0.0167961 -130946,1416:218:4,168.5,41.5,0,0,-0.0174267 -130947,1416:219:3,169,41.5,0,0,-0.0187991 -130948,1416:219:4,169.5,41.5,0,0,-0.0197051 -130949,1417:110:3,170,41.5,0,0,-0.0187991 -130950,1417:110:4,170.5,41.5,0,0,-0.0169668 -130951,1417:111:3,171,41.5,0,0,-0.016127 -130952,1417:111:4,171.5,41.5,0,0,-0.0161852 -130953,1417:112:3,172,41.5,0,0,-0.0165564 -130954,1417:112:4,172.5,41.5,0,0,-0.017867 -130955,1417:113:3,173,41.5,0,0,-0.0186305 -130956,1417:113:4,173.5,41.5,0,0,-0.0188711 -130957,1417:114:3,174,41.5,0,0,-0.0190504 -130958,1417:114:4,174.5,41.5,0,0,-0.0191882 -130959,1417:215:3,175,41.5,0,0,-0.0191321 -130960,1417:215:4,175.5,41.5,0,0,-0.0187695 -130961,1417:216:3,176,41.5,0,0,-0.0182242 -130962,1417:216:4,176.5,41.5,0,0,-0.0180082 -130963,1417:217:3,177,41.5,0,0,-0.0177988 -130964,1417:217:4,177.5,41.5,0,0,-0.0176673 -130965,1417:218:3,178,41.5,0,0,-0.0176079 -130966,1417:218:4,178.5,41.5,0,0,-0.0176594 -130967,1417:219:3,179,41.5,0,0,-0.0179436 -130968,1417:219:4,179.5,41.5,0,0,-0.0186851 -130969,1418:110:3,180,41.5,0,0,-0.0194712 -130970,7418:120:1,-180,42,0,0,-0.0192228 -130971,7417:229:2,-179.5,42,0,0,-0.0190291 -130972,7417:229:1,-179,42,0,0,-0.0190977 -130973,7417:228:2,-178.5,42,0,0,-0.0193924 -130974,7417:228:1,-178,42,0,0,-0.0198119 -130975,7417:227:2,-177.5,42,0,0,-0.020195 -130976,7417:227:1,-177,42,0,0,-0.0203872 -130977,7417:226:2,-176.5,42,0,0,-0.02047 -130978,7417:226:1,-176,42,0,0,-0.0208708 -130979,7417:225:2,-175.5,42,0,0,-0.0217165 -130980,7417:225:1,-175,42,0,0,-0.022725 -130981,7417:124:2,-174.5,42,0,0,-0.022921 -130982,7417:124:1,-174,42,0,0,-0.0214872 -130983,7417:123:2,-173.5,42,0,0,-0.0208052 -130984,7417:123:1,-173,42,0,0,-0.021227 -130985,7417:122:2,-172.5,42,0,0,-0.0212797 -130986,7417:122:1,-172,42,0,0,-0.0207114 -130987,7417:121:2,-171.5,42,0,0,-0.0202132 -130988,7417:121:1,-171,42,0,0,-0.0194668 -130989,7417:120:2,-170.5,42,0,0,-0.0195811 -130990,7417:120:1,-170,42,0,0,-0.0202178 -130991,7416:229:2,-169.5,42,0,0,-0.0209369 -130992,7416:229:1,-169,42,0,0,-0.0214533 -130993,7416:228:2,-168.5,42,0,0,-0.0222676 -130994,7416:228:1,-168,42,0,0,-0.0235779 -130995,7416:227:2,-167.5,42,0,0,-0.0249221 -130996,7416:227:1,-167,42,0,0,-0.0256146 -130997,7416:226:2,-166.5,42,0,0,-0.0256902 -130998,7416:226:1,-166,42,0,0,-0.0252116 -130999,7416:225:2,-165.5,42,0,0,-0.0241885 -131000,7416:225:1,-165,42,0,0,-0.0226685 -131001,7416:124:2,-164.5,42,0,0,-0.0206694 -131002,7416:124:1,-164,42,0,0,-0.0183683 -131003,7416:123:2,-163.5,42,0,0,-0.0161199 -131004,7416:122:2,-162.5,42,0,0,-0.0114714 -131005,7416:121:1,-161,42,0,0,-0.0261722 -131006,7416:120:2,-160.5,42,0,0,-0.0277184 -131007,7416:120:1,-160,42,0,0,-0.0285298 -131008,7415:229:2,-159.5,42,0,0,-0.0287772 -131009,7415:229:1,-159,42,0,0,-0.0289149 -131010,7415:228:2,-158.5,42,0,0,-0.0293789 -131011,7415:228:1,-158,42,0,0,-0.0306841 -131012,7415:227:2,-157.5,42,0,0,-0.0309579 -131013,7415:227:1,-157,42,0,0,-0.0298302 -131014,7415:226:2,-156.5,42,0,0,-0.0292521 -131015,7415:226:1,-156,42,0,0,-0.028882 -131016,7415:225:2,-155.5,42,0,0,-0.0283682 -131017,7415:225:1,-155,42,0,0,-0.0269554 -131018,7415:124:2,-154.5,42,0,0,-0.0261307 -131019,7415:124:1,-154,42,0,0,-0.0260066 -131020,7415:123:2,-153.5,42,0,0,-0.0256669 -131021,7415:123:1,-153,42,0,0,-0.0253835 -131022,7415:122:2,-152.5,42,0,0,-0.0253032 -131023,7415:122:1,-152,42,0,0,-0.025632 -131024,7415:121:2,-151.5,42,0,0,-0.0261307 -131025,7415:121:1,-151,42,0,0,-0.0264286 -131026,7415:120:2,-150.5,42,0,0,-0.0270288 -131027,7415:120:1,-150,42,0,0,-0.0289019 -131028,7414:229:2,-149.5,42,0,0,-0.0299389 -131029,7414:229:1,-149,42,0,0,-0.0301235 -131030,7414:228:2,-148.5,42,0,0,-0.0304682 -131031,7414:228:1,-148,42,0,0,-0.0308451 -131032,7414:227:2,-147.5,42,0,0,-0.0313767 -131033,7414:227:1,-147,42,0,0,-0.0321222 -131034,7414:226:2,-146.5,42,0,0,-0.0326913 -131035,7414:226:1,-146,42,0,0,-0.0329085 -131036,7414:225:2,-145.5,42,0,0,-0.0340862 -131037,7414:225:1,-145,42,0,0,-0.0374562 -131038,7414:124:2,-144.5,42,0,0,-0.0385987 -131039,7414:124:1,-144,42,0,0,-0.0387051 -131040,7414:123:2,-143.5,42,0,0,-0.038466 -131041,7414:123:1,-143,42,0,0,-0.0378013 -131042,7414:122:2,-142.5,42,0,0,-0.0369533 -131043,7414:122:1,-142,42,0,0,-0.0370975 -131044,7414:121:2,-141.5,42,0,0,-0.0388831 -131045,7414:121:1,-141,42,0,0,-0.0414007 -131046,7414:120:2,-140.5,42,0,0,-0.0439563 -131047,7414:120:1,-140,42,0,0,-0.0441697 -131048,7413:229:2,-139.5,42,0,0,-0.043744 -131049,7413:229:1,-139,42,0,0,-0.0441595 -131050,7413:228:2,-138.5,42,0,0,-0.0466441 -131051,7413:228:1,-138,42,0,0,-0.0505135 -131052,7413:227:2,-137.5,42,0,0,-0.0523777 -131053,7413:227:1,-137,42,0,0,-0.0532006 -131054,7413:226:2,-136.5,42,0,0,-0.0538986 -131055,7413:226:1,-136,42,0,0,-0.0533368 -131056,7413:225:2,-135.5,42,0,0,-0.0545298 -131057,7413:225:1,-135,42,0,0,-0.0579951 -131058,7413:124:2,-134.5,42,0,0,-0.0606461 -131059,7413:123:1,-133,42,0,0,-0.0533739 -131060,7413:122:2,-132.5,42,0,0,-0.0594925 -131061,7413:122:1,-132,42,0,0,-0.0629514 -131062,7413:121:2,-131.5,42,0,0,-0.0640405 -131063,7413:121:1,-131,42,0,0,-0.0607034 -131064,7407:229:1,-79,42,0,0,-0.00807827 -131065,7407:228:2,-78.5,42,0,0,-0.00860589 -131066,7407:228:1,-78,42,0,0,-0.00801907 -131067,7407:227:2,-77.5,42,0,0,-0.00804593 -131068,7405:228:1,-58,42,0,0,-0.00584314 -131069,7405:227:2,-57.5,42,0,0,-0.00598907 -131070,7405:227:1,-57,42,0,0,-0.00646795 -131071,7405:226:2,-56.5,42,0,0,-0.0066933 -131072,7405:226:1,-56,42,0,0,-0.00715048 -131073,7405:225:2,-55.5,42,0,0,-0.0076886 -131074,7405:225:1,-55,42,0,0,-0.00752606 -131075,7405:124:2,-54.5,42,0,0,-0.0115589 -131076,7405:124:1,-54,42,0,0,-0.0179073 -131077,7405:123:2,-53.5,42,0,0,-0.0241502 -131078,7405:123:1,-53,42,0,0,-0.0246249 -131079,7405:122:2,-52.5,42,0,0,-0.0236634 -131080,7405:122:1,-52,42,0,0,-0.0226532 -131081,7405:121:2,-51.5,42,0,0,-0.0223633 -131082,7405:121:1,-51,42,0,0,-0.0222827 -131083,7405:120:2,-50.5,42,0,0,-0.0213905 -131084,7405:120:1,-50,42,0,0,-0.0207864 -131085,7404:229:2,-49.5,42,0,0,-0.0208992 -131086,7404:229:1,-49,42,0,0,-0.0222727 -131087,7404:228:2,-48.5,42,0,0,-0.0228435 -131088,7404:228:1,-48,42,0,0,-0.0223684 -131089,7404:227:2,-47.5,42,0,0,-0.0219036 -131090,7404:227:1,-47,42,0,0,-0.0215019 -131091,7404:226:2,-46.5,42,0,0,-0.0209701 -131092,7404:226:1,-46,42,0,0,-0.0206555 -131093,7404:225:2,-45.5,42,0,0,-0.0205162 -131094,7404:225:1,-45,42,0,0,-0.0204562 -131095,7404:124:2,-44.5,42,0,0,-0.0203872 -131096,7404:124:1,-44,42,0,0,-0.0203 -131097,7404:123:2,-43.5,42,0,0,-0.0202634 -131098,7404:123:1,-43,42,0,0,-0.0205162 -131099,7404:122:2,-42.5,42,0,0,-0.0208332 -131100,7404:122:1,-42,42,0,0,-0.0210838 -131101,7404:121:2,-41.5,42,0,0,-0.021184 -131102,7404:121:1,-41,42,0,0,-0.0212174 -131103,7404:120:2,-40.5,42,0,0,-0.0212797 -131104,7404:120:1,-40,42,0,0,-0.0213278 -131105,7403:229:2,-39.5,42,0,0,-0.0213761 -131106,7403:229:1,-39,42,0,0,-0.0218788 -131107,7403:228:2,-38.5,42,0,0,-0.0230925 -131108,7403:228:1,-38,42,0,0,-0.0244194 -131109,7403:227:2,-37.5,42,0,0,-0.0247366 -131110,7403:227:1,-37,42,0,0,-0.0248883 -131111,7403:226:2,-36.5,42,0,0,-0.0255103 -131112,7403:226:1,-36,42,0,0,-0.0263031 -131113,7403:225:2,-35.5,42,0,0,-0.0273622 -131114,7403:225:1,-35,42,0,0,-0.0276872 -131115,7403:124:2,-34.5,42,0,0,-0.0280477 -131116,7403:124:1,-34,42,0,0,-0.0303852 -131117,7403:123:2,-33.5,42,0,0,-0.0313482 -131118,7403:123:1,-33,42,0,0,-0.0315992 -131119,7403:122:2,-32.5,42,0,0,-0.0323796 -131120,7403:122:1,-32,42,0,0,-0.033347 -131121,7403:121:2,-31.5,42,0,0,-0.0333012 -131122,7403:121:1,-31,42,0,0,-0.0340084 -131123,7403:120:2,-30.5,42,0,0,-0.0356975 -131124,7403:120:1,-30,42,0,0,-0.0359105 -131125,7402:229:2,-29.5,42,0,0,-0.036928 -131126,7402:229:1,-29,42,0,0,-0.0382021 -131127,7402:228:2,-28.5,42,0,0,-0.0385987 -131128,7402:228:1,-28,42,0,0,-0.03908 -131129,7402:227:2,-27.5,42,0,0,-0.0402923 -131130,7402:227:1,-27,42,0,0,-0.041774 -131131,7402:226:2,-26.5,42,0,0,-0.0423452 -131132,7402:226:1,-26,42,0,0,-0.044333 -131133,7402:225:2,-25.5,42,0,0,-0.0469798 -131134,7402:225:1,-25,42,0,0,-0.0485725 -131135,7402:124:2,-24.5,42,0,0,-0.0513533 -131136,7402:124:1,-24,42,0,0,-0.0581036 -131137,7402:123:2,-23.5,42,0,0,-0.0646453 -131138,7402:123:1,-23,42,0,0,-0.0631733 -131139,7402:122:2,-22.5,42,0,0,-0.0813924 -131140,7402:122:1,-22,42,0,0,-0.0861657 -131141,7402:121:2,-21.5,42,0,0,-0.103299 -131142,7402:121:1,-21,42,0,0,-0.113037 -131143,7402:120:2,-20.5,42,0,0,-0.112289 -131144,7402:120:1,-20,42,0,0,-0.11152 -131145,7401:229:2,-19.5,42,0,0,-0.104899 -131146,7401:229:1,-19,42,0,0,-0.100863 -131147,7401:228:2,-18.5,42,0,0,-0.103804 -131148,7401:228:1,-18,42,0,0,-0.102997 -131149,7401:227:2,-17.5,42,0,0,-0.0932457 -131150,7401:227:1,-17,42,0,0,-0.0892641 -131151,7401:226:2,-16.5,42,0,0,-0.0856298 -131152,7401:226:1,-16,42,0,0,-0.0854245 -131153,7401:225:2,-15.5,42,0,0,-0.0894144 -131154,7401:225:1,-15,42,0,0,-0.100447 -131155,7401:124:2,-14.5,42,0,0,-0.103753 -131156,7401:124:1,-14,42,0,0,-0.108021 -131157,7401:123:2,-13.5,42,0,0,-0.114325 -131158,7401:123:1,-13,42,0,0,-0.119104 -131159,7401:122:2,-12.5,42,0,0,-0.119932 -131160,7401:122:1,-12,42,0,0,-0.119487 -131161,7401:121:2,-11.5,42,0,0,-0.115031 -131162,7401:121:1,-11,42,0,0,-0.108127 -131163,7401:120:2,-10.5,42,0,0,-0.102048 -131164,7401:120:1,-10,42,0,0,-0.0982035 -131165,7400:229:2,-9.5,42,0,0,-0.0910226 -131166,7400:229:1,-9,42,0,0,-0.0782693 -131167,7400:228:2,-8.5,42,0,0,-0.068844 -131168,7400:228:1,-8,42,0,0,-0.064161 -131169,7400:225:1,-5,42,0,0,-0.0713127 -131170,7400:124:2,-4.5,42,0,0,-0.0753639 -131171,7400:124:1,-4,42,0,0,-0.0773246 -131172,7400:123:2,-3.5,42,0,0,-0.0769755 -131173,7400:123:1,-3,42,0,0,-0.0779898 -131174,7400:122:2,-2.5,42,0,0,-0.0784744 -131175,7400:122:1,-2,42,0,0,-0.0774905 -131176,7400:121:2,-1.5,42,0,0,-0.0769207 -131177,7400:121:1,-1,42,0,0,-0.077214 -131178,7400:120:2,-0.5,42,0,0,-0.0752743 -131179,1400:120:2,0,42,0,0,-0.0694652 -131180,1400:120:2,0.5,42,0,0,-0.0648285 -131181,1400:121:1,1,42,0,0,-0.0637247 -131182,1400:121:2,1.5,42,0,0,-0.0665134 -131183,1400:122:1,2,42,0,0,-0.0703573 -131184,1400:122:2,2.5,42,0,0,-0.0737355 -131185,1400:123:1,3,42,0,0,-0.0810431 -131186,1400:123:2,3.5,42,0,0,-0.0805802 -131187,1400:124:1,4,42,0,0,-0.0746333 -131188,1400:124:2,4.5,42,0,0,-0.0634111 -131189,1400:225:1,5,42,0,0,-0.0493666 -131190,1400:227:1,7,42,0,0,-0.036158 -131191,1400:227:2,7.5,42,0,0,-0.0354857 -131192,1400:228:1,8,42,0,0,-0.0368096 -131193,1400:228:2,8.5,42,0,0,-0.0383603 -131194,1400:229:1,9,42,0,0,-0.040646 -131195,1401:120:2,10.5,42,0,0,-0.0333012 -131196,1401:121:1,11,42,0,0,-0.0338534 -131197,1413:229:1,139,42,0,0,-0.00597313 -131198,1413:229:2,139.5,42,0,0,-0.00595719 -131199,1414:120:1,140,42,0,0,-0.00612777 -131200,1414:120:2,140.5,42,0,0,-0.00670822 -131201,1414:121:2,141.5,42,0,0,-0.00879985 -131202,1414:122:1,142,42,0,0,-0.00936669 -131203,1414:122:2,142.5,42,0,0,-0.00878024 -131204,1414:123:1,143,42,0,0,-0.00797814 -131205,1414:123:2,143.5,42,0,0,-0.00705249 -131206,1414:124:1,144,42,0,0,-0.00699469 -131207,1414:124:2,144.5,42,0,0,-0.00715524 -131208,1414:225:1,145,42,0,0,-0.00730162 -131209,1414:225:2,145.5,42,0,0,-0.00772635 -131210,1414:226:1,146,42,0,0,-0.00864243 -131211,1414:226:2,146.5,42,0,0,-0.00956942 -131212,1414:227:1,147,42,0,0,-0.0106158 -131213,1414:227:2,147.5,42,0,0,-0.010735 -131214,1414:228:1,148,42,0,0,-0.0106467 -131215,1414:228:2,148.5,42,0,0,-0.0111281 -131216,1414:229:1,149,42,0,0,-0.011311 -131217,1414:229:2,149.5,42,0,0,-0.0116132 -131218,1415:120:1,150,42,0,0,-0.0122974 -131219,1415:120:2,150.5,42,0,0,-0.012419 -131220,1415:121:1,151,42,0,0,-0.0121797 -131221,1415:121:2,151.5,42,0,0,-0.0117018 -131222,1415:122:1,152,42,0,0,-0.0117859 -131223,1415:122:2,152.5,42,0,0,-0.0123552 -131224,1415:123:1,153,42,0,0,-0.0124524 -131225,1415:123:2,153.5,42,0,0,-0.0126772 -131226,1415:124:1,154,42,0,0,-0.0131806 -131227,1415:124:2,154.5,42,0,0,-0.0138493 -131228,1415:225:1,155,42,0,0,-0.0144906 -131229,1415:225:2,155.5,42,0,0,-0.0152541 -131230,1415:226:1,156,42,0,0,-0.0158187 -131231,1415:226:2,156.5,42,0,0,-0.0145199 -131232,1415:227:1,157,42,0,0,-0.0103698 -131233,1415:227:2,157.5,42,0,0,-0.00780068 -131234,1416:124:2,164.5,42,0,0,-0.0109285 -131235,1416:225:1,165,42,0,0,-0.0139427 -131236,1416:225:2,165.5,42,0,0,-0.0148158 -131237,1416:226:1,166,42,0,0,-0.0151415 -131238,1416:226:2,166.5,42,0,0,-0.0161778 -131239,1416:227:1,167,42,0,0,-0.0167923 -131240,1416:227:2,167.5,42,0,0,-0.0174502 -131241,1416:228:1,168,42,0,0,-0.0171546 -131242,1416:228:2,168.5,42,0,0,-0.017294 -131243,1416:229:1,169,42,0,0,-0.0185928 -131244,1416:229:2,169.5,42,0,0,-0.0195327 -131245,1417:120:1,170,42,0,0,-0.0190762 -131246,1417:120:2,170.5,42,0,0,-0.0176396 -131247,1417:121:1,171,42,0,0,-0.0165974 -131248,1417:121:2,171.5,42,0,0,-0.0160368 -131249,1417:122:1,172,42,0,0,-0.0161162 -131250,1417:122:2,172.5,42,0,0,-0.016575 -131251,1417:123:1,173,42,0,0,-0.0172358 -131252,1417:123:2,173.5,42,0,0,-0.0178189 -131253,1417:124:1,174,42,0,0,-0.0181221 -131254,1417:124:2,174.5,42,0,0,-0.0182201 -131255,1417:225:1,175,42,0,0,-0.0181669 -131256,1417:225:2,175.5,42,0,0,-0.0177709 -131257,1417:226:1,176,42,0,0,-0.0175881 -131258,1417:226:2,176.5,42,0,0,-0.0175446 -131259,1417:227:1,177,42,0,0,-0.0174306 -131260,1417:227:2,177.5,42,0,0,-0.0173914 -131261,1417:228:1,178,42,0,0,-0.0174385 -131262,1417:228:2,178.5,42,0,0,-0.0176237 -131263,1417:229:1,179,42,0,0,-0.0181629 -131264,1417:229:2,179.5,42,0,0,-0.018999 -131265,1418:120:1,180,42,0,0,-0.0192228 -131266,7418:120:3,-180,42.5,0,0,-0.0191365 -131267,7417:229:4,-179.5,42.5,0,0,-0.018999 -131268,7417:229:3,-179,42.5,0,0,-0.0188669 -131269,7417:228:4,-178.5,42.5,0,0,-0.0187653 -131270,7417:228:3,-178,42.5,0,0,-0.0189648 -131271,7417:227:4,-177.5,42.5,0,0,-0.0196829 -131272,7417:227:3,-177,42.5,0,0,-0.0205718 -131273,7417:226:4,-176.5,42.5,0,0,-0.0210981 -131274,7417:226:3,-176,42.5,0,0,-0.0215213 -131275,7417:225:4,-175.5,42.5,0,0,-0.0220077 -131276,7417:225:3,-175,42.5,0,0,-0.0218541 -131277,7417:124:4,-174.5,42.5,0,0,-0.0205626 -131278,7417:124:3,-174,42.5,0,0,-0.0193226 -131279,7417:123:4,-173.5,42.5,0,0,-0.0190332 -131280,7417:123:3,-173,42.5,0,0,-0.0191753 -131281,7417:122:4,-172.5,42.5,0,0,-0.0191795 -131282,7417:122:3,-172,42.5,0,0,-0.0185845 -131283,7417:121:4,-171.5,42.5,0,0,-0.0177031 -131284,7417:121:3,-171,42.5,0,0,-0.0177709 -131285,7417:120:4,-170.5,42.5,0,0,-0.018597 -131286,7417:120:3,-170,42.5,0,0,-0.0193661 -131287,7416:229:4,-169.5,42.5,0,0,-0.0202543 -131288,7416:229:3,-169,42.5,0,0,-0.0208756 -131289,7416:228:4,-168.5,42.5,0,0,-0.0217213 -131290,7416:228:3,-168,42.5,0,0,-0.0226941 -131291,7416:227:4,-167.5,42.5,0,0,-0.023276 -131292,7416:227:3,-167,42.5,0,0,-0.0232866 -131293,7416:226:4,-166.5,42.5,0,0,-0.0229572 -131294,7416:226:3,-166,42.5,0,0,-0.0225409 -131295,7416:225:4,-165.5,42.5,0,0,-0.0221423 -131296,7416:225:3,-165,42.5,0,0,-0.0215699 -131297,7416:124:4,-164.5,42.5,0,0,-0.0205209 -131298,7416:124:3,-164,42.5,0,0,-0.0194712 -131299,7416:123:4,-163.5,42.5,0,0,-0.0185761 -131300,7416:123:3,-163,42.5,0,0,-0.016549 -131301,7416:122:4,-162.5,42.5,0,0,-0.0143548 -131302,7416:120:3,-160,42.5,0,0,-0.0270167 -131303,7415:229:4,-159.5,42.5,0,0,-0.0291459 -131304,7415:229:3,-159,42.5,0,0,-0.0294591 -131305,7415:228:4,-158.5,42.5,0,0,-0.0295127 -131306,7415:228:3,-158,42.5,0,0,-0.0288232 -131307,7415:227:4,-157.5,42.5,0,0,-0.0285948 -131308,7415:227:3,-157,42.5,0,0,-0.0316065 -131309,7415:226:4,-156.5,42.5,0,0,-0.0306004 -131310,7415:226:3,-156,42.5,0,0,-0.0297623 -131311,7415:225:4,-155.5,42.5,0,0,-0.0283875 -131312,7415:225:3,-155,42.5,0,0,-0.0280925 -131313,7415:124:4,-154.5,42.5,0,0,-0.0273808 -131314,7415:124:3,-154,42.5,0,0,-0.0268698 -131315,7415:123:4,-153.5,42.5,0,0,-0.0264046 -131316,7415:123:3,-153,42.5,0,0,-0.0258304 -131317,7415:122:4,-152.5,42.5,0,0,-0.0255103 -131318,7415:122:3,-152,42.5,0,0,-0.0259183 -131319,7415:121:4,-151.5,42.5,0,0,-0.0262912 -131320,7415:121:3,-151,42.5,0,0,-0.0266212 -131321,7415:120:4,-150.5,42.5,0,0,-0.0275929 -131322,7415:120:3,-150,42.5,0,0,-0.0293322 -131323,7414:229:4,-149.5,42.5,0,0,-0.0297623 -131324,7414:229:3,-149,42.5,0,0,-0.0301028 -131325,7414:228:4,-148.5,42.5,0,0,-0.0308383 -131326,7414:228:3,-148,42.5,0,0,-0.0316642 -131327,7414:227:4,-147.5,42.5,0,0,-0.0326317 -131328,7414:227:3,-147,42.5,0,0,-0.0332102 -131329,7414:226:4,-146.5,42.5,0,0,-0.0333319 -131330,7414:226:3,-146,42.5,0,0,-0.0343442 -131331,7414:225:4,-145.5,42.5,0,0,-0.0369447 -131332,7414:225:3,-145,42.5,0,0,-0.0383251 -131333,7414:124:4,-144.5,42.5,0,0,-0.0384749 -131334,7414:124:3,-144,42.5,0,0,-0.0387051 -131335,7414:123:4,-143.5,42.5,0,0,-0.0390173 -131336,7414:123:3,-143,42.5,0,0,-0.0391789 -131337,7414:122:4,-142.5,42.5,0,0,-0.0387317 -131338,7414:122:3,-142,42.5,0,0,-0.0380799 -131339,7414:121:4,-141.5,42.5,0,0,-0.0385013 -131340,7414:121:3,-141,42.5,0,0,-0.039988 -131341,7414:120:4,-140.5,42.5,0,0,-0.0419378 -131342,7414:120:3,-140,42.5,0,0,-0.042905 -131343,7413:229:4,-139.5,42.5,0,0,-0.042895 -131344,7413:229:3,-139,42.5,0,0,-0.0427373 -131345,7413:228:4,-138.5,42.5,0,0,-0.0437037 -131346,7413:228:3,-138,42.5,0,0,-0.0468712 -131347,7413:227:4,-137.5,42.5,0,0,-0.0497461 -131348,7413:227:3,-137,42.5,0,0,-0.0504548 -131349,7413:226:4,-136.5,42.5,0,0,-0.0537857 -131350,7413:226:3,-136,42.5,0,0,-0.0554526 -131351,7413:225:4,-135.5,42.5,0,0,-0.0565764 -131352,7413:225:3,-135,42.5,0,0,-0.0595346 -131353,7413:123:4,-133.5,42.5,0,0,-0.0392509 -131354,7413:123:3,-133,42.5,0,0,-0.0492525 -131355,7413:122:4,-132.5,42.5,0,0,-0.0578596 -131356,7413:122:3,-132,42.5,0,0,-0.0486398 -131357,7413:121:4,-131.5,42.5,0,0,-0.0435729 -131358,7413:121:3,-131,42.5,0,0,-0.0343207 -131359,7408:120:3,-80,42.5,0,0,-0.00707922 -131360,7407:229:4,-79.5,42.5,0,0,-0.00758488 -131361,7407:229:3,-79,42.5,0,0,-0.00855425 -131362,7407:228:4,-78.5,42.5,0,0,-0.00893223 -131363,7407:228:3,-78,42.5,0,0,-0.00836951 -131364,7407:227:4,-77.5,42.5,0,0,-0.00801019 -131365,7405:228:3,-58,42.5,0,0,-0.00579142 -131366,7405:227:4,-57.5,42.5,0,0,-0.00624465 -131367,7405:227:3,-57,42.5,0,0,-0.00707768 -131368,7405:226:4,-56.5,42.5,0,0,-0.00728216 -131369,7405:226:3,-56,42.5,0,0,-0.00719837 -131370,7405:225:4,-55.5,42.5,0,0,-0.00728053 -131371,7405:225:3,-55,42.5,0,0,-0.013034 -131372,7405:124:4,-54.5,42.5,0,0,-0.0207488 -131373,7405:124:3,-54,42.5,0,0,-0.0246249 -131374,7405:123:4,-53.5,42.5,0,0,-0.0238192 -131375,7405:123:3,-53,42.5,0,0,-0.0217605 -131376,7405:122:4,-52.5,42.5,0,0,-0.0218344 -131377,7405:122:3,-52,42.5,0,0,-0.0214291 -131378,7405:121:4,-51.5,42.5,0,0,-0.0210031 -131379,7405:121:3,-51,42.5,0,0,-0.0210363 -131380,7405:120:4,-50.5,42.5,0,0,-0.0210363 -131381,7405:120:3,-50,42.5,0,0,-0.0208897 -131382,7404:229:4,-49.5,42.5,0,0,-0.0207675 -131383,7404:229:3,-49,42.5,0,0,-0.020791 -131384,7404:228:4,-48.5,42.5,0,0,-0.0214921 -131385,7404:228:3,-48,42.5,0,0,-0.0219432 -131386,7404:227:4,-47.5,42.5,0,0,-0.0218098 -131387,7404:227:3,-47,42.5,0,0,-0.0216089 -131388,7404:226:4,-46.5,42.5,0,0,-0.021141 -131389,7404:226:3,-46,42.5,0,0,-0.0205811 -131390,7404:225:4,-45.5,42.5,0,0,-0.0203229 -131391,7404:225:3,-45,42.5,0,0,-0.0202497 -131392,7404:124:4,-44.5,42.5,0,0,-0.0202406 -131393,7404:124:3,-44,42.5,0,0,-0.0201586 -131394,7404:123:4,-43.5,42.5,0,0,-0.020145 -131395,7404:123:3,-43,42.5,0,0,-0.0205301 -131396,7404:122:4,-42.5,42.5,0,0,-0.0206369 -131397,7404:122:3,-42,42.5,0,0,-0.0207864 -131398,7404:121:4,-41.5,42.5,0,0,-0.0209984 -131399,7404:121:3,-41,42.5,0,0,-0.0209701 -131400,7404:120:4,-40.5,42.5,0,0,-0.0208615 -131401,7404:120:3,-40,42.5,0,0,-0.0209228 -131402,7403:229:4,-39.5,42.5,0,0,-0.0209653 -131403,7403:229:3,-39,42.5,0,0,-0.0210838 -131404,7403:228:4,-38.5,42.5,0,0,-0.0214291 -131405,7403:228:3,-38,42.5,0,0,-0.0220923 -131406,7403:227:4,-37.5,42.5,0,0,-0.0229521 -131407,7403:227:3,-37,42.5,0,0,-0.023562 -131408,7403:226:4,-36.5,42.5,0,0,-0.0243532 -131409,7403:226:3,-36,42.5,0,0,-0.0244804 -131410,7403:225:4,-35.5,42.5,0,0,-0.025263 -131411,7403:225:3,-35,42.5,0,0,-0.0258595 -131412,7403:124:4,-34.5,42.5,0,0,-0.0275679 -131413,7403:124:3,-34,42.5,0,0,-0.0315487 -131414,7403:123:4,-33.5,42.5,0,0,-0.0345332 -131415,7403:123:3,-33,42.5,0,0,-0.0362159 -131416,7403:122:4,-32.5,42.5,0,0,-0.0414199 -131417,7403:122:3,-32,42.5,0,0,-0.0457367 -131418,7403:121:4,-31.5,42.5,0,0,-0.0456311 -131419,7403:121:3,-31,42.5,0,0,-0.0433622 -131420,7403:120:4,-30.5,42.5,0,0,-0.0395769 -131421,7403:120:3,-30,42.5,0,0,-0.0369362 -131422,7402:229:4,-29.5,42.5,0,0,-0.0372678 -131423,7402:229:3,-29,42.5,0,0,-0.0377408 -131424,7402:228:4,-28.5,42.5,0,0,-0.0379926 -131425,7402:228:3,-28,42.5,0,0,-0.0381498 -131426,7402:227:4,-27.5,42.5,0,0,-0.039686 -131427,7402:227:3,-27,42.5,0,0,-0.0410687 -131428,7402:226:4,-26.5,42.5,0,0,-0.0429545 -131429,7402:226:3,-26,42.5,0,0,-0.0440375 -131430,7402:225:4,-25.5,42.5,0,0,-0.0446306 -131431,7402:225:3,-25,42.5,0,0,-0.0464933 -131432,7402:124:4,-24.5,42.5,0,0,-0.0507959 -131433,7402:124:3,-24,42.5,0,0,-0.0559988 -131434,7402:123:4,-23.5,42.5,0,0,-0.0553363 -131435,7402:123:3,-23,42.5,0,0,-0.0574419 -131436,7402:122:4,-22.5,42.5,0,0,-0.0583212 -131437,7402:122:3,-22,42.5,0,0,-0.08826 -131438,7402:121:4,-21.5,42.5,0,0,-0.102172 -131439,7402:121:3,-21,42.5,0,0,-0.10954 -131440,7402:120:4,-20.5,42.5,0,0,-0.107441 -131441,7402:120:3,-20,42.5,0,0,-0.103855 -131442,7401:229:4,-19.5,42.5,0,0,-0.102297 -131443,7401:229:3,-19,42.5,0,0,-0.100325 -131444,7401:228:4,-18.5,42.5,0,0,-0.101355 -131445,7401:228:3,-18,42.5,0,0,-0.0982275 -131446,7401:227:4,-17.5,42.5,0,0,-0.0954116 -131447,7401:227:3,-17,42.5,0,0,-0.0914401 -131448,7401:226:4,-16.5,42.5,0,0,-0.0868507 -131449,7401:226:3,-16,42.5,0,0,-0.0819583 -131450,7401:225:4,-15.5,42.5,0,0,-0.0808496 -131451,7401:225:3,-15,42.5,0,0,-0.0882393 -131452,7401:124:4,-14.5,42.5,0,0,-0.102397 -131453,7401:124:3,-14,42.5,0,0,-0.108898 -131454,7401:123:4,-13.5,42.5,0,0,-0.109863 -131455,7401:123:3,-13,42.5,0,0,-0.112042 -131456,7401:122:4,-12.5,42.5,0,0,-0.114072 -131457,7401:122:3,-12,42.5,0,0,-0.1164 -131458,7401:121:4,-11.5,42.5,0,0,-0.111492 -131459,7401:121:3,-11,42.5,0,0,-0.102872 -131460,7401:120:4,-10.5,42.5,0,0,-0.0997414 -131461,7401:120:3,-10,42.5,0,0,-0.0873737 -131462,7400:229:4,-9.5,42.5,0,0,-0.0916611 -131463,7400:229:3,-9,42.5,0,0,-0.0871223 -131464,7400:228:4,-8.5,42.5,0,0,-0.0768839 -131465,7400:225:3,-5,42.5,0,0,-0.0681811 -131466,7400:124:4,-4.5,42.5,0,0,-0.074616 -131467,7400:124:3,-4,42.5,0,0,-0.0757046 -131468,7400:123:4,-3.5,42.5,0,0,-0.0768108 -131469,7400:123:3,-3,42.5,0,0,-0.0775642 -131470,7400:122:4,-2.5,42.5,0,0,-0.0783627 -131471,7400:122:3,-2,42.5,0,0,-0.0780273 -131472,7400:121:4,-1.5,42.5,0,0,-0.0771591 -131473,7400:121:3,-1,42.5,0,0,-0.0773611 -131474,7400:120:4,-0.5,42.5,0,0,-0.0768839 -131475,1400:120:4,0,42.5,0,0,-0.0760834 -131476,1400:120:4,0.5,42.5,0,0,-0.0734042 -131477,1400:121:3,1,42.5,0,0,-0.0701581 -131478,1400:121:4,1.5,42.5,0,0,-0.0680687 -131479,1400:122:3,2,42.5,0,0,-0.0695965 -131480,1400:122:4,2.5,42.5,0,0,-0.0773982 -131481,1400:123:3,3,42.5,0,0,-0.0810236 -131482,1400:123:4,3.5,42.5,0,0,-0.0771955 -131483,1400:124:3,4,42.5,0,0,-0.0661695 -131484,1400:124:4,4.5,42.5,0,0,-0.0539488 -131485,1400:225:3,5,42.5,0,0,-0.0428555 -131486,1400:227:4,7.5,42.5,0,0,-0.0363904 -131487,1400:228:3,8,42.5,0,0,-0.033492 -131488,1400:229:3,9,42.5,0,0,-0.0410592 -131489,1400:229:4,9.5,42.5,0,0,-0.0450758 -131490,1401:120:3,10,42.5,0,0,-0.04418 -131491,1401:120:4,10.5,42.5,0,0,-0.0417934 -131492,1401:121:3,11,42.5,0,0,-0.0405338 -131493,1401:121:4,11.5,42.5,0,0,-0.0484264 -131494,1401:122:3,12,42.5,0,0,-0.049241 -131495,1401:122:4,12.5,42.5,0,0,-0.0440272 -131496,1413:229:3,139,42.5,0,0,-0.00602244 -131497,1413:229:4,139.5,42.5,0,0,-0.00658403 -131498,1414:120:3,140,42.5,0,0,-0.00718236 -131499,1414:120:4,140.5,42.5,0,0,-0.00804058 -131500,1414:121:3,141,42.5,0,0,-0.00898818 -131501,1414:121:4,141.5,42.5,0,0,-0.00936669 -131502,1414:122:3,142,42.5,0,0,-0.00918259 -131503,1414:122:4,142.5,42.5,0,0,-0.00881944 -131504,1414:123:3,143,42.5,0,0,-0.0078775 -131505,1414:123:4,143.5,42.5,0,0,-0.00701338 -131506,1414:124:3,144,42.5,0,0,-0.00699626 -131507,1414:124:4,144.5,42.5,0,0,-0.00723852 -131508,1414:225:3,145,42.5,0,0,-0.00754787 -131509,1414:225:4,145.5,42.5,0,0,-0.00786525 -131510,1414:226:3,146,42.5,0,0,-0.00856001 -131511,1414:226:4,146.5,42.5,0,0,-0.00919904 -131512,1414:227:3,147,42.5,0,0,-0.00958004 -131513,1414:227:4,147.5,42.5,0,0,-0.00986417 -131514,1414:228:3,148,42.5,0,0,-0.0101659 -131515,1414:228:4,148.5,42.5,0,0,-0.010711 -131516,1414:229:3,149,42.5,0,0,-0.0108338 -131517,1414:229:4,149.5,42.5,0,0,-0.010824 -131518,1415:120:3,150,42.5,0,0,-0.0109995 -131519,1415:120:4,150.5,42.5,0,0,-0.0110958 -131520,1415:121:3,151,42.5,0,0,-0.0108871 -131521,1415:121:4,151.5,42.5,0,0,-0.0107903 -131522,1415:122:3,152,42.5,0,0,-0.0110488 -131523,1415:122:4,152.5,42.5,0,0,-0.0116627 -131524,1415:123:3,153,42.5,0,0,-0.0120174 -131525,1415:123:4,153.5,42.5,0,0,-0.0123139 -131526,1415:124:3,154,42.5,0,0,-0.0125756 -131527,1415:124:4,154.5,42.5,0,0,-0.0132072 -131528,1415:225:3,155,42.5,0,0,-0.0136522 -131529,1415:225:4,155.5,42.5,0,0,-0.0143806 -131530,1415:226:3,156,42.5,0,0,-0.0149862 -131531,1415:226:4,156.5,42.5,0,0,-0.0141441 -131532,1415:227:3,157,42.5,0,0,-0.0123608 -131533,1415:227:4,157.5,42.5,0,0,-0.01015 -131534,1415:228:3,158,42.5,0,0,-0.0071728 -131535,1415:228:4,158.5,42.5,0,0,-0.00602779 -131536,1416:124:4,164.5,42.5,0,0,-0.0100038 -131537,1416:225:3,165,42.5,0,0,-0.0135395 -131538,1416:225:4,165.5,42.5,0,0,-0.0145362 -131539,1416:226:3,166,42.5,0,0,-0.0151178 -131540,1416:226:4,166.5,42.5,0,0,-0.0149727 -131541,1416:227:3,167,42.5,0,0,-0.0157479 -131542,1416:227:4,167.5,42.5,0,0,-0.0172048 -131543,1416:228:3,168,42.5,0,0,-0.0180002 -131544,1416:228:4,168.5,42.5,0,0,-0.0182448 -131545,1416:229:3,169,42.5,0,0,-0.0189435 -131546,1416:229:4,169.5,42.5,0,0,-0.0191968 -131547,1417:120:3,170,42.5,0,0,-0.0184927 -131548,1417:120:4,170.5,42.5,0,0,-0.0169744 -131549,1417:121:3,171,42.5,0,0,-0.0159901 -131550,1417:121:4,171.5,42.5,0,0,-0.0161924 -131551,1417:122:3,172,42.5,0,0,-0.0165156 -131552,1417:122:4,172.5,42.5,0,0,-0.0169707 -131553,1417:123:3,173,42.5,0,0,-0.0173563 -131554,1417:123:4,173.5,42.5,0,0,-0.0174659 -131555,1417:124:3,174,42.5,0,0,-0.0174502 -131556,1417:124:4,174.5,42.5,0,0,-0.0174502 -131557,1417:225:3,175,42.5,0,0,-0.017462 -131558,1417:225:4,175.5,42.5,0,0,-0.0175288 -131559,1417:226:3,176,42.5,0,0,-0.0176316 -131560,1417:226:4,176.5,42.5,0,0,-0.0177749 -131561,1417:227:3,177,42.5,0,0,-0.0179073 -131562,1417:227:4,177.5,42.5,0,0,-0.0180123 -131563,1417:228:3,178,42.5,0,0,-0.0180651 -131564,1417:228:4,178.5,42.5,0,0,-0.0181343 -131565,1417:229:3,179,42.5,0,0,-0.0185594 -131566,1417:229:4,179.5,42.5,0,0,-0.0191234 -131567,1418:120:3,180,42.5,0,0,-0.0191365 -131568,7418:130:1,-180,43,0,0,-0.0191926 -131569,7417:239:2,-179.5,43,0,0,-0.0190934 -131570,7417:239:1,-179,43,0,0,-0.0188967 -131571,7417:238:2,-178.5,43,0,0,-0.0185094 -131572,7417:238:1,-178,43,0,0,-0.0183932 -131573,7417:237:2,-177.5,43,0,0,-0.0190332 -131574,7417:237:1,-177,43,0,0,-0.0200815 -131575,7417:236:2,-176.5,43,0,0,-0.0208145 -131576,7417:236:1,-176,43,0,0,-0.0210648 -131577,7417:235:2,-175.5,43,0,0,-0.0210411 -131578,7417:235:1,-175,43,0,0,-0.0202497 -131579,7417:134:2,-174.5,43,0,0,-0.0189734 -131580,7417:134:1,-174,43,0,0,-0.0182941 -131581,7417:133:2,-173.5,43,0,0,-0.0182571 -131582,7417:133:1,-173,43,0,0,-0.0182529 -131583,7417:132:2,-172.5,43,0,0,-0.017735 -131584,7417:132:1,-172,43,0,0,-0.0165081 -131585,7417:131:2,-171.5,43,0,0,-0.0155862 -131586,7417:131:1,-171,43,0,0,-0.0160585 -131587,7417:130:2,-170.5,43,0,0,-0.0176673 -131588,7417:130:1,-170,43,0,0,-0.0180082 -131589,7416:239:2,-169.5,43,0,0,-0.0182735 -131590,7416:239:1,-169,43,0,0,-0.0186726 -131591,7416:238:2,-168.5,43,0,0,-0.0189947 -131592,7416:238:1,-168,43,0,0,-0.0191882 -131593,7416:237:2,-167.5,43,0,0,-0.0191753 -131594,7416:237:1,-167,43,0,0,-0.0189222 -131595,7416:236:2,-166.5,43,0,0,-0.0187779 -131596,7416:236:1,-166,43,0,0,-0.0185678 -131597,7416:235:2,-165.5,43,0,0,-0.0182653 -131598,7416:235:1,-165,43,0,0,-0.0177509 -131599,7416:134:2,-164.5,43,0,0,-0.0174659 -131600,7416:134:1,-164,43,0,0,-0.0177869 -131601,7416:133:2,-163.5,43,0,0,-0.0181343 -131602,7416:133:1,-163,43,0,0,-0.0181425 -131603,7416:132:2,-162.5,43,0,0,-0.0157691 -131604,7416:132:1,-162,43,0,0,-0.0137535 -131605,7416:130:1,-160,43,0,0,-0.0245469 -131606,7415:239:2,-159.5,43,0,0,-0.0278384 -131607,7415:239:1,-159,43,0,0,-0.0289215 -131608,7415:238:2,-158.5,43,0,0,-0.0301646 -131609,7415:238:1,-158,43,0,0,-0.0277879 -131610,7415:237:2,-157.5,43,0,0,-0.0252688 -131611,7415:237:1,-157,43,0,0,-0.0275242 -131612,7415:236:2,-156.5,43,0,0,-0.0309297 -131613,7415:236:1,-156,43,0,0,-0.0321441 -131614,7415:235:2,-155.5,43,0,0,-0.0316281 -131615,7415:235:1,-155,43,0,0,-0.0287707 -131616,7415:134:2,-154.5,43,0,0,-0.0271025 -131617,7415:134:1,-154,43,0,0,-0.0264226 -131618,7415:133:2,-153.5,43,0,0,-0.0261188 -131619,7415:133:1,-153,43,0,0,-0.0257368 -131620,7415:132:2,-152.5,43,0,0,-0.0259301 -131621,7415:132:1,-152,43,0,0,-0.0265127 -131622,7415:131:2,-151.5,43,0,0,-0.0266273 -131623,7415:131:1,-151,43,0,0,-0.0269615 -131624,7415:130:2,-150.5,43,0,0,-0.0279842 -131625,7415:130:1,-150,43,0,0,-0.0294256 -131626,7414:239:2,-149.5,43,0,0,-0.0296878 -131627,7414:239:1,-149,43,0,0,-0.0298029 -131628,7414:238:2,-148.5,43,0,0,-0.0304128 -131629,7414:238:1,-148,43,0,0,-0.0312983 -131630,7414:237:2,-147.5,43,0,0,-0.0326988 -131631,7414:237:1,-147,43,0,0,-0.0336915 -131632,7414:236:2,-146.5,43,0,0,-0.0341876 -131633,7414:236:1,-146,43,0,0,-0.035429 -131634,7414:235:2,-145.5,43,0,0,-0.0369194 -131635,7414:235:1,-145,43,0,0,-0.0373448 -131636,7414:134:2,-144.5,43,0,0,-0.0372594 -131637,7414:134:1,-144,43,0,0,-0.0373448 -131638,7414:133:2,-143.5,43,0,0,-0.0378535 -131639,7414:133:1,-143,43,0,0,-0.0385013 -131640,7414:132:2,-142.5,43,0,0,-0.0390622 -131641,7414:132:1,-142,43,0,0,-0.0393774 -131642,7414:131:2,-141.5,43,0,0,-0.0394677 -131643,7414:131:1,-141,43,0,0,-0.0397863 -131644,7414:130:2,-140.5,43,0,0,-0.0402646 -131645,7414:130:1,-140,43,0,0,-0.0407394 -131646,7413:239:2,-139.5,43,0,0,-0.0413055 -131647,7413:239:1,-139,43,0,0,-0.042688 -131648,7413:238:2,-138.5,43,0,0,-0.0451279 -131649,7413:238:1,-138,43,0,0,-0.0463217 -131650,7413:237:2,-137.5,43,0,0,-0.047769 -131651,7413:237:1,-137,43,0,0,-0.0486849 -131652,7413:236:2,-136.5,43,0,0,-0.0532127 -131653,7413:236:1,-136,43,0,0,-0.0568946 -131654,7413:235:2,-135.5,43,0,0,-0.0584579 -131655,7413:133:2,-133.5,43,0,0,-0.0306492 -131656,7413:133:1,-133,43,0,0,-0.0453789 -131657,7413:132:2,-132.5,43,0,0,-0.0542383 -131658,7408:130:1,-80,43,0,0,-0.00694355 -131659,7407:239:2,-79.5,43,0,0,-0.00781113 -131660,7407:239:1,-79,43,0,0,-0.00862699 -131661,7407:238:2,-78.5,43,0,0,-0.00854472 -131662,7407:238:1,-78,43,0,0,-0.00809085 -131663,7407:237:2,-77.5,43,0,0,-0.00780068 -131664,7405:238:2,-58.5,43,0,0,-0.00574912 -131665,7405:238:1,-58,43,0,0,-0.00616601 -131666,7405:237:2,-57.5,43,0,0,-0.00662811 -131667,7405:237:1,-57,43,0,0,-0.00704938 -131668,7405:236:2,-56.5,43,0,0,-0.00782329 -131669,7405:236:1,-56,43,0,0,-0.00857143 -131670,7405:235:2,-55.5,43,0,0,-0.01141 -131671,7405:235:1,-55,43,0,0,-0.0164674 -131672,7405:134:2,-54.5,43,0,0,-0.0240956 -131673,7405:134:1,-54,43,0,0,-0.0246416 -131674,7405:133:2,-53.5,43,0,0,-0.0233445 -131675,7405:133:1,-53,43,0,0,-0.0214147 -131676,7405:132:2,-52.5,43,0,0,-0.02116 -131677,7405:132:1,-52,43,0,0,-0.0203733 -131678,7405:131:2,-51.5,43,0,0,-0.0198655 -131679,7405:131:1,-51,43,0,0,-0.0200138 -131680,7405:130:2,-50.5,43,0,0,-0.0202314 -131681,7405:130:1,-50,43,0,0,-0.0203963 -131682,7404:239:2,-49.5,43,0,0,-0.0205486 -131683,7404:239:1,-49,43,0,0,-0.0204931 -131684,7404:238:2,-48.5,43,0,0,-0.0201678 -131685,7404:238:1,-48,43,0,0,-0.0204562 -131686,7404:237:2,-47.5,43,0,0,-0.0207208 -131687,7404:237:1,-47,43,0,0,-0.0206741 -131688,7404:236:2,-46.5,43,0,0,-0.0201586 -131689,7404:236:1,-46,43,0,0,-0.0202224 -131690,7404:235:2,-45.5,43,0,0,-0.0203183 -131691,7404:235:1,-45,43,0,0,-0.020145 -131692,7404:134:2,-44.5,43,0,0,-0.0200861 -131693,7404:134:1,-44,43,0,0,-0.0202314 -131694,7404:133:2,-43.5,43,0,0,-0.020424 -131695,7404:133:1,-43,43,0,0,-0.0207395 -131696,7404:132:2,-42.5,43,0,0,-0.021275 -131697,7404:132:1,-42,43,0,0,-0.0215067 -131698,7404:131:2,-41.5,43,0,0,-0.0217312 -131699,7404:131:1,-41,43,0,0,-0.0216137 -131700,7404:130:2,-40.5,43,0,0,-0.0208332 -131701,7404:130:1,-40,43,0,0,-0.0205626 -131702,7403:239:2,-39.5,43,0,0,-0.0206835 -131703,7403:239:1,-39,43,0,0,-0.0209747 -131704,7403:238:2,-38.5,43,0,0,-0.0214921 -131705,7403:238:1,-38,43,0,0,-0.0222123 -131706,7403:237:2,-37.5,43,0,0,-0.0227507 -131707,7403:237:1,-37,43,0,0,-0.0231344 -131708,7403:236:2,-36.5,43,0,0,-0.023626 -131709,7403:236:1,-36,43,0,0,-0.0233287 -131710,7403:235:2,-35.5,43,0,0,-0.0235726 -131711,7403:235:1,-35,43,0,0,-0.024436 -131712,7403:134:2,-34.5,43,0,0,-0.0263151 -131713,7403:134:1,-34,43,0,0,-0.0300959 -131714,7403:133:2,-33.5,43,0,0,-0.0337453 -131715,7403:133:1,-33,43,0,0,-0.0371569 -131716,7403:132:2,-32.5,43,0,0,-0.042248 -131717,7403:132:1,-32,43,0,0,-0.047913 -131718,7403:131:2,-31.5,43,0,0,-0.0493324 -131719,7403:131:1,-31,43,0,0,-0.0477579 -131720,7403:130:2,-30.5,43,0,0,-0.0448269 -131721,7403:130:1,-30,43,0,0,-0.0413723 -131722,7402:239:2,-29.5,43,0,0,-0.039988 -131723,7402:239:1,-29,43,0,0,-0.0397317 -131724,7402:238:2,-28.5,43,0,0,-0.0393412 -131725,7402:238:1,-28,43,0,0,-0.0385898 -131726,7402:237:2,-27.5,43,0,0,-0.0383866 -131727,7402:237:1,-27,43,0,0,-0.0402739 -131728,7402:236:2,-26.5,43,0,0,-0.0443739 -131729,7402:236:1,-26,43,0,0,-0.0456839 -131730,7402:235:2,-25.5,43,0,0,-0.0464612 -131731,7402:235:1,-25,43,0,0,-0.0484713 -131732,7402:134:2,-24.5,43,0,0,-0.0512936 -131733,7402:134:1,-24,43,0,0,-0.0530892 -131734,7402:133:2,-23.5,43,0,0,-0.0568415 -131735,7402:133:1,-23,43,0,0,-0.0599962 -131736,7402:132:2,-22.5,43,0,0,-0.0607173 -131737,7402:132:1,-22,43,0,0,-0.0613614 -131738,7402:131:2,-21.5,43,0,0,-0.0882814 -131739,7402:131:1,-21,43,0,0,-0.107048 -131740,7402:130:2,-20.5,43,0,0,-0.106864 -131741,7402:130:1,-20,43,0,0,-0.104924 -131742,7401:239:2,-19.5,43,0,0,-0.102048 -131743,7401:239:1,-19,43,0,0,-0.100789 -131744,7401:238:2,-18.5,43,0,0,-0.100252 -131745,7401:238:1,-18,43,0,0,-0.0997902 -131746,7401:237:2,-17.5,43,0,0,-0.0969026 -131747,7401:237:1,-17,43,0,0,-0.0932231 -131748,7401:236:2,-16.5,43,0,0,-0.0887498 -131749,7401:236:1,-16,43,0,0,-0.0823119 -131750,7401:235:2,-15.5,43,0,0,-0.0791129 -131751,7401:235:1,-15,43,0,0,-0.0841846 -131752,7401:134:2,-14.5,43,0,0,-0.101651 -131753,7401:134:1,-14,43,0,0,-0.109272 -131754,7401:133:2,-13.5,43,0,0,-0.109165 -131755,7401:133:1,-13,43,0,0,-0.110106 -131756,7401:132:2,-12.5,43,0,0,-0.111465 -131757,7401:132:1,-12,43,0,0,-0.111274 -131758,7401:131:2,-11.5,43,0,0,-0.105929 -131759,7401:131:1,-11,43,0,0,-0.100325 -131760,7401:130:2,-10.5,43,0,0,-0.0963169 -131761,7401:130:1,-10,43,0,0,-0.083004 -131762,7400:239:2,-9.5,43,0,0,-0.0809657 -131763,7400:239:1,-9,43,0,0,-0.0828453 -131764,7400:134:2,-4.5,43,0,0,-0.0763372 -131765,7400:134:1,-4,43,0,0,-0.076174 -131766,7400:133:2,-3.5,43,0,0,-0.0758849 -131767,7400:133:1,-3,43,0,0,-0.0761016 -131768,7400:132:2,-2.5,43,0,0,-0.0771036 -131769,7400:132:1,-2,43,0,0,-0.0779343 -131770,7400:131:2,-1.5,43,0,0,-0.0763012 -131771,7400:131:1,-1,43,0,0,-0.0753098 -131772,7400:130:2,-0.5,43,0,0,-0.0737707 -131773,1400:130:2,0,43,0,0,-0.0725904 -131774,1400:130:2,0.5,43,0,0,-0.0697282 -131775,1400:131:1,1,43,0,0,-0.0707244 -131776,1400:131:2,1.5,43,0,0,-0.0712113 -131777,1400:132:1,2,43,0,0,-0.0702077 -131778,1400:132:2,2.5,43,0,0,-0.0763555 -131779,1400:133:1,3,43,0,0,-0.0785869 -131780,1400:133:2,3.5,43,0,0,-0.074386 -131781,1400:134:1,4,43,0,0,-0.0657192 -131782,1400:134:2,4.5,43,0,0,-0.0497345 -131783,1400:237:2,7.5,43,0,0,-0.0343207 -131784,1400:239:1,9,43,0,0,-0.0392419 -131785,1400:239:2,9.5,43,0,0,-0.0471759 -131786,1401:130:1,10,43,0,0,-0.0542132 -131787,1401:130:2,10.5,43,0,0,-0.0552462 -131788,1401:131:1,11,43,0,0,-0.0499656 -131789,1401:131:2,11.5,43,0,0,-0.0600246 -131790,1401:132:1,12,43,0,0,-0.063695 -131791,1401:132:2,12.5,43,0,0,-0.0556859 -131792,1401:133:1,13,43,0,0,-0.0443227 -131793,1414:130:2,140.5,43,0,0,-0.00755459 -131794,1414:131:1,141,43,0,0,-0.00814509 -131795,1414:131:2,141.5,43,0,0,-0.00863855 -131796,1414:132:1,142,43,0,0,-0.00899822 -131797,1414:132:2,142.5,43,0,0,-0.00893818 -131798,1414:133:1,143,43,0,0,-0.00827125 -131799,1414:133:2,143.5,43,0,0,-0.00758153 -131800,1414:134:1,144,43,0,0,-0.00724497 -131801,1414:134:2,144.5,43,0,0,-0.00722566 -131802,1414:235:1,145,43,0,0,-0.00729999 -131803,1414:235:2,145.5,43,0,0,-0.00751262 -131804,1414:236:1,146,43,0,0,-0.00802087 -131805,1414:236:2,146.5,43,0,0,-0.00853142 -131806,1414:237:1,147,43,0,0,-0.00905453 -131807,1414:237:2,147.5,43,0,0,-0.00938967 -131808,1414:238:1,148,43,0,0,-0.00966375 -131809,1414:238:2,148.5,43,0,0,-0.0100016 -131810,1414:239:1,149,43,0,0,-0.0101206 -131811,1414:239:2,149.5,43,0,0,-0.0100576 -131812,1415:130:1,150,43,0,0,-0.0100755 -131813,1415:130:2,150.5,43,0,0,-0.0103306 -131814,1415:131:1,151,43,0,0,-0.0105355 -131815,1415:131:2,151.5,43,0,0,-0.0108338 -131816,1415:132:1,152,43,0,0,-0.0112858 -131817,1415:132:2,152.5,43,0,0,-0.0115485 -131818,1415:133:1,153,43,0,0,-0.0118997 -131819,1415:133:2,153.5,43,0,0,-0.0120443 -131820,1415:134:1,154,43,0,0,-0.0119237 -131821,1415:134:2,154.5,43,0,0,-0.0121607 -131822,1415:235:1,155,43,0,0,-0.0123968 -131823,1415:235:2,155.5,43,0,0,-0.012737 -131824,1415:236:1,156,43,0,0,-0.0132992 -131825,1415:236:2,156.5,43,0,0,-0.0131866 -131826,1415:237:1,157,43,0,0,-0.0127998 -131827,1415:237:2,157.5,43,0,0,-0.011474 -131828,1415:238:1,158,43,0,0,-0.00962502 -131829,1415:238:2,158.5,43,0,0,-0.00833413 -131830,1416:134:2,164.5,43,0,0,-0.0072595 -131831,1416:235:1,165,43,0,0,-0.0128228 -131832,1416:235:2,165.5,43,0,0,-0.0136004 -131833,1416:236:1,166,43,0,0,-0.0139552 -131834,1416:236:2,166.5,43,0,0,-0.0137412 -131835,1416:237:1,167,43,0,0,-0.0140367 -131836,1416:237:2,167.5,43,0,0,-0.0148058 -131837,1416:238:1,168,43,0,0,-0.0157161 -131838,1416:238:2,168.5,43,0,0,-0.0161887 -131839,1416:239:1,169,43,0,0,-0.0162543 -131840,1416:239:2,169.5,43,0,0,-0.0163422 -131841,1417:130:1,170,43,0,0,-0.0162689 -131842,1417:130:2,170.5,43,0,0,-0.0159721 -131843,1417:131:1,171,43,0,0,-0.0161887 -131844,1417:131:2,171.5,43,0,0,-0.0166123 -131845,1417:132:1,172,43,0,0,-0.0168567 -131846,1417:132:2,172.5,43,0,0,-0.0169668 -131847,1417:133:1,173,43,0,0,-0.0168339 -131848,1417:133:2,173.5,43,0,0,-0.0167848 -131849,1417:134:1,174,43,0,0,-0.016887 -131850,1417:134:2,174.5,43,0,0,-0.0170738 -131851,1417:235:1,175,43,0,0,-0.0171162 -131852,1417:235:2,175.5,43,0,0,-0.0171123 -131853,1417:236:1,176,43,0,0,-0.0175406 -131854,1417:236:2,176.5,43,0,0,-0.0180043 -131855,1417:237:1,177,43,0,0,-0.0183105 -131856,1417:237:2,177.5,43,0,0,-0.0185385 -131857,1417:238:1,178,43,0,0,-0.0186851 -131858,1417:238:2,178.5,43,0,0,-0.0187991 -131859,1417:239:1,179,43,0,0,-0.0189819 -131860,1417:239:2,179.5,43,0,0,-0.0191968 -131861,1418:130:1,180,43,0,0,-0.0191926 -131862,7418:130:3,-180,43.5,0,0,-0.0190762 -131863,7417:239:4,-179.5,43.5,0,0,-0.0191106 -131864,7417:239:3,-179,43.5,0,0,-0.0188415 -131865,7417:238:4,-178.5,43.5,0,0,-0.0189776 -131866,7417:238:3,-178,43.5,0,0,-0.0194756 -131867,7417:237:4,-177.5,43.5,0,0,-0.0197316 -131868,7417:237:3,-177,43.5,0,0,-0.0198655 -131869,7417:236:4,-176.5,43.5,0,0,-0.0196562 -131870,7417:236:3,-176,43.5,0,0,-0.0195724 -131871,7417:235:4,-175.5,43.5,0,0,-0.0194712 -131872,7417:235:3,-175,43.5,0,0,-0.0185552 -131873,7417:134:4,-174.5,43.5,0,0,-0.0176276 -131874,7417:134:3,-174,43.5,0,0,-0.0173876 -131875,7417:133:4,-173.5,43.5,0,0,-0.0174306 -131876,7417:133:3,-173,43.5,0,0,-0.0171893 -131877,7417:132:4,-172.5,43.5,0,0,-0.0164157 -131878,7417:132:3,-172,43.5,0,0,-0.0152438 -131879,7417:131:4,-171.5,43.5,0,0,-0.0147859 -131880,7417:131:3,-171,43.5,0,0,-0.0155268 -131881,7417:130:4,-170.5,43.5,0,0,-0.0166123 -131882,7417:130:3,-170,43.5,0,0,-0.0165267 -131883,7416:239:4,-169.5,43.5,0,0,-0.016401 -131884,7416:239:3,-169,43.5,0,0,-0.0163274 -131885,7416:238:4,-168.5,43.5,0,0,-0.0162689 -131886,7416:238:3,-168,43.5,0,0,-0.016127 -131887,7416:237:4,-167.5,43.5,0,0,-0.0159937 -131888,7416:237:3,-167,43.5,0,0,-0.0158649 -131889,7416:236:4,-166.5,43.5,0,0,-0.0159685 -131890,7416:236:3,-166,43.5,0,0,-0.0158151 -131891,7416:235:4,-165.5,43.5,0,0,-0.0154261 -131892,7416:235:3,-165,43.5,0,0,-0.0155617 -131893,7416:134:4,-164.5,43.5,0,0,-0.0163128 -131894,7416:134:3,-164,43.5,0,0,-0.0173876 -131895,7416:133:4,-163.5,43.5,0,0,-0.0179638 -131896,7416:133:3,-163,43.5,0,0,-0.0182982 -131897,7416:132:4,-162.5,43.5,0,0,-0.0181343 -131898,7416:132:3,-162,43.5,0,0,-0.0153329 -131899,7416:131:4,-161.5,43.5,0,0,-0.0132783 -131900,7416:131:3,-161,43.5,0,0,-0.0105261 -131901,7415:239:3,-159,43.5,0,0,-0.0281691 -131902,7415:238:4,-158.5,43.5,0,0,-0.0308522 -131903,7415:238:3,-158,43.5,0,0,-0.0289348 -131904,7415:237:4,-157.5,43.5,0,0,-0.0228435 -131905,7415:237:3,-157,43.5,0,0,-0.0170203 -131906,7415:236:4,-156.5,43.5,0,0,-0.0205811 -131907,7415:236:3,-156,43.5,0,0,-0.026591 -131908,7415:235:4,-155.5,43.5,0,0,-0.0314626 -131909,7415:235:3,-155,43.5,0,0,-0.0330514 -131910,7415:134:4,-154.5,43.5,0,0,-0.0319761 -131911,7415:134:3,-154,43.5,0,0,-0.0274119 -131912,7415:133:4,-153.5,43.5,0,0,-0.0268821 -131913,7415:133:3,-153,43.5,0,0,-0.0267664 -131914,7415:132:4,-152.5,43.5,0,0,-0.0270226 -131915,7415:132:3,-152,43.5,0,0,-0.0272012 -131916,7415:131:4,-151.5,43.5,0,0,-0.0273871 -131917,7415:131:3,-151,43.5,0,0,-0.0279271 -131918,7415:130:4,-150.5,43.5,0,0,-0.0289149 -131919,7415:130:3,-150,43.5,0,0,-0.0296137 -131920,7414:239:4,-149.5,43.5,0,0,-0.0296542 -131921,7414:239:3,-149,43.5,0,0,-0.0296271 -131922,7414:238:4,-148.5,43.5,0,0,-0.0296339 -131923,7414:238:3,-148,43.5,0,0,-0.0299117 -131924,7414:237:4,-147.5,43.5,0,0,-0.0310283 -131925,7414:237:3,-147,43.5,0,0,-0.0328858 -131926,7414:236:4,-146.5,43.5,0,0,-0.0343442 -131927,7414:236:3,-146,43.5,0,0,-0.0351544 -131928,7414:235:4,-145.5,43.5,0,0,-0.0357711 -131929,7414:235:3,-145,43.5,0,0,-0.0356322 -131930,7414:134:4,-144.5,43.5,0,0,-0.0348982 -131931,7414:134:3,-144,43.5,0,0,-0.0346041 -131932,7414:133:4,-143.5,43.5,0,0,-0.0353238 -131933,7414:133:3,-143,43.5,0,0,-0.0367505 -131934,7414:132:4,-142.5,43.5,0,0,-0.0375079 -131935,7414:132:3,-142,43.5,0,0,-0.0380274 -131936,7414:131:4,-141.5,43.5,0,0,-0.0388564 -131937,7414:131:3,-141,43.5,0,0,-0.0396132 -131938,7414:130:4,-140.5,43.5,0,0,-0.0406646 -131939,7414:130:3,-140,43.5,0,0,-0.0411917 -131940,7413:239:4,-139.5,43.5,0,0,-0.0421217 -131941,7413:239:3,-139,43.5,0,0,-0.0452324 -131942,7413:238:4,-138.5,43.5,0,0,-0.0466119 -131943,7413:238:3,-138,43.5,0,0,-0.0475596 -131944,7413:237:4,-137.5,43.5,0,0,-0.0485725 -131945,7413:237:3,-137,43.5,0,0,-0.0498613 -131946,7413:236:4,-136.5,43.5,0,0,-0.0531138 -131947,7413:236:3,-136,43.5,0,0,-0.0556728 -131948,7413:235:4,-135.5,43.5,0,0,-0.0577379 -131949,7413:235:3,-135,43.5,0,0,-0.0563263 -131950,7413:134:4,-134.5,43.5,0,0,-0.0539611 -131951,7413:134:3,-134,43.5,0,0,-0.0470887 -131952,7413:133:4,-133.5,43.5,0,0,-0.0329686 -131953,7413:133:3,-133,43.5,0,0,-0.0441085 -131954,7413:132:4,-132.5,43.5,0,0,-0.0436229 -131955,7408:130:3,-80,43.5,0,0,-0.00679377 -131956,7407:239:4,-79.5,43.5,0,0,-0.00764422 -131957,7407:239:3,-79,43.5,0,0,-0.00851056 -131958,7407:238:4,-78.5,43.5,0,0,-0.00840875 -131959,7407:238:3,-78,43.5,0,0,-0.00821253 -131960,7407:237:4,-77.5,43.5,0,0,-0.00771434 -131961,7405:239:3,-59,43.5,0,0,-0.00576188 -131962,7405:238:4,-58.5,43.5,0,0,-0.00590053 -131963,7405:238:3,-58,43.5,0,0,-0.00639359 -131964,7405:237:4,-57.5,43.5,0,0,-0.00662811 -131965,7405:237:3,-57,43.5,0,0,-0.00666505 -131966,7405:236:4,-56.5,43.5,0,0,-0.00696366 -131967,7405:236:3,-56,43.5,0,0,-0.00933747 -131968,7405:235:4,-55.5,43.5,0,0,-0.016247 -131969,7405:235:3,-55,43.5,0,0,-0.0220623 -131970,7405:134:4,-54.5,43.5,0,0,-0.0255393 -131971,7405:134:3,-54,43.5,0,0,-0.024508 -131972,7405:133:4,-53.5,43.5,0,0,-0.0237599 -131973,7405:133:3,-53,43.5,0,0,-0.0214727 -131974,7405:132:4,-52.5,43.5,0,0,-0.0205116 -131975,7405:132:3,-52,43.5,0,0,-0.0197316 -131976,7405:131:4,-51.5,43.5,0,0,-0.0194581 -131977,7405:131:3,-51,43.5,0,0,-0.0197494 -131978,7405:130:4,-50.5,43.5,0,0,-0.0198969 -131979,7405:130:3,-50,43.5,0,0,-0.0201586 -131980,7404:239:4,-49.5,43.5,0,0,-0.0200996 -131981,7404:239:3,-49,43.5,0,0,-0.0197228 -131982,7404:238:4,-48.5,43.5,0,0,-0.0194799 -131983,7404:238:3,-48,43.5,0,0,-0.0197895 -131984,7404:237:4,-47.5,43.5,0,0,-0.020154 -131985,7404:237:3,-47,43.5,0,0,-0.0201269 -131986,7404:236:4,-46.5,43.5,0,0,-0.0204147 -131987,7404:236:3,-46,43.5,0,0,-0.020777 -131988,7404:235:4,-45.5,43.5,0,0,-0.0214776 -131989,7404:235:3,-45,43.5,0,0,-0.0216235 -131990,7404:134:4,-44.5,43.5,0,0,-0.0225919 -131991,7404:134:3,-44,43.5,0,0,-0.0250296 -131992,7404:133:4,-43.5,43.5,0,0,-0.0260124 -131993,7404:133:3,-43,43.5,0,0,-0.0259772 -131994,7404:132:4,-42.5,43.5,0,0,-0.0252803 -131995,7404:132:3,-42,43.5,0,0,-0.0246975 -131996,7404:131:4,-41.5,43.5,0,0,-0.0239922 -131997,7404:131:3,-41,43.5,0,0,-0.0231554 -131998,7404:130:4,-40.5,43.5,0,0,-0.0221373 -131999,7404:130:3,-40,43.5,0,0,-0.0212894 -132000,7403:239:4,-39.5,43.5,0,0,-0.0209747 -132001,7403:239:3,-39,43.5,0,0,-0.0209321 -132002,7403:238:4,-38.5,43.5,0,0,-0.0211458 -132003,7403:238:3,-38,43.5,0,0,-0.0218739 -132004,7403:237:4,-37.5,43.5,0,0,-0.0227919 -132005,7403:237:3,-37,43.5,0,0,-0.0231763 -132006,7403:236:4,-36.5,43.5,0,0,-0.0230247 -132007,7403:236:3,-36,43.5,0,0,-0.0232549 -132008,7403:235:4,-35.5,43.5,0,0,-0.0238515 -132009,7403:235:3,-35,43.5,0,0,-0.0248658 -132010,7403:134:4,-34.5,43.5,0,0,-0.0269371 -132011,7403:134:3,-34,43.5,0,0,-0.028725 -132012,7403:133:4,-33.5,43.5,0,0,-0.0301576 -132013,7403:133:3,-33,43.5,0,0,-0.0343207 -132014,7403:132:4,-32.5,43.5,0,0,-0.0407958 -132015,7403:132:3,-32,43.5,0,0,-0.0474274 -132016,7403:131:4,-31.5,43.5,0,0,-0.051258 -132017,7403:131:3,-31,43.5,0,0,-0.0512936 -132018,7403:130:4,-30.5,43.5,0,0,-0.051234 -132019,7403:130:3,-30,43.5,0,0,-0.0493439 -132020,7402:239:4,-29.5,43.5,0,0,-0.0464074 -132021,7402:239:3,-29,43.5,0,0,-0.0433323 -132022,7402:238:4,-28.5,43.5,0,0,-0.0421508 -132023,7402:238:3,-28,43.5,0,0,-0.0416012 -132024,7402:237:4,-27.5,43.5,0,0,-0.039287 -132025,7402:237:3,-27,43.5,0,0,-0.0387762 -132026,7402:236:4,-26.5,43.5,0,0,-0.0412771 -132027,7402:236:3,-26,43.5,0,0,-0.0429345 -132028,7402:235:4,-25.5,43.5,0,0,-0.0455154 -132029,7402:235:3,-25,43.5,0,0,-0.0486061 -132030,7402:134:4,-24.5,43.5,0,0,-0.0518446 -132031,7402:134:3,-24,43.5,0,0,-0.0546952 -132032,7402:133:4,-23.5,43.5,0,0,-0.0562738 -132033,7402:133:3,-23,43.5,0,0,-0.0592982 -132034,7402:132:4,-22.5,43.5,0,0,-0.0591181 -132035,7402:132:3,-22,43.5,0,0,-0.0601371 -132036,7402:131:4,-21.5,43.5,0,0,-0.0758128 -132037,7402:131:3,-21,43.5,0,0,-0.0954814 -132038,7402:130:4,-20.5,43.5,0,0,-0.102073 -132039,7402:130:3,-20,43.5,0,0,-0.103097 -132040,7401:239:4,-19.5,43.5,0,0,-0.100057 -132041,7401:239:3,-19,43.5,0,0,-0.0996689 -132042,7401:238:4,-18.5,43.5,0,0,-0.0975153 -132043,7401:238:3,-18,43.5,0,0,-0.0979414 -132044,7401:237:4,-17.5,43.5,0,0,-0.0975153 -132045,7401:237:3,-17,43.5,0,0,-0.0942419 -132046,7401:236:4,-16.5,43.5,0,0,-0.0884091 -132047,7401:236:3,-16,43.5,0,0,-0.0841642 -132048,7401:235:4,-15.5,43.5,0,0,-0.0833222 -132049,7401:235:3,-15,43.5,0,0,-0.0861859 -132050,7401:134:4,-14.5,43.5,0,0,-0.0979893 -132051,7401:134:3,-14,43.5,0,0,-0.107231 -132052,7401:133:4,-13.5,43.5,0,0,-0.107494 -132053,7401:133:3,-13,43.5,0,0,-0.106162 -132054,7401:132:4,-12.5,43.5,0,0,-0.106162 -132055,7401:132:3,-12,43.5,0,0,-0.10637 -132056,7401:131:4,-11.5,43.5,0,0,-0.102446 -132057,7401:131:3,-11,43.5,0,0,-0.0971847 -132058,7401:130:4,-10.5,43.5,0,0,-0.0924828 -132059,7401:130:3,-10,43.5,0,0,-0.0815481 -132060,7400:239:4,-9.5,43.5,0,0,-0.0710766 -132061,7400:239:3,-9,43.5,0,0,-0.0796623 -132062,7400:238:4,-8.5,43.5,0,0,-0.0824893 -132063,7400:134:4,-4.5,43.5,0,0,-0.0757947 -132064,7400:134:3,-4,43.5,0,0,-0.0767016 -132065,7400:133:4,-3.5,43.5,0,0,-0.0748819 -132066,7400:133:3,-3,43.5,0,0,-0.0744917 -132067,7400:132:4,-2.5,43.5,0,0,-0.0735435 -132068,7400:132:3,-2,43.5,0,0,-0.0734738 -132069,7400:131:4,-1.5,43.5,0,0,-0.0733171 -132070,7400:131:3,-1,43.5,0,0,-0.0722819 -132071,7400:130:4,-0.5,43.5,0,0,-0.0697116 -132072,1400:130:4,0,43.5,0,0,-0.068682 -132073,1400:130:4,0.5,43.5,0,0,-0.0661072 -132074,1400:131:3,1,43.5,0,0,-0.066828 -132075,1400:131:4,1.5,43.5,0,0,-0.0703076 -132076,1400:132:3,2,43.5,0,0,-0.0709756 -132077,1400:132:4,2.5,43.5,0,0,-0.0742273 -132078,1400:133:3,3,43.5,0,0,-0.0754175 -132079,1400:133:4,3.5,43.5,0,0,-0.0727286 -132080,1400:134:3,4,43.5,0,0,-0.0611891 -132081,1400:134:4,4.5,43.5,0,0,-0.0499773 -132082,1400:237:3,7,43.5,0,0,-0.0340395 -132083,1400:237:4,7.5,43.5,0,0,-0.0344858 -132084,1401:130:4,10.5,43.5,0,0,-0.0554786 -132085,1401:131:3,11,43.5,0,0,-0.0581849 -132086,1401:131:4,11.5,43.5,0,0,-0.0632032 -132087,1401:132:3,12,43.5,0,0,-0.0665761 -132088,1401:132:4,12.5,43.5,0,0,-0.0582397 -132089,1401:133:3,13,43.5,0,0,-0.0469255 -132090,1401:133:4,13.5,43.5,0,0,-0.0448993 -132091,1401:235:3,15,43.5,0,0,-0.0585264 -132092,1401:235:4,15.5,43.5,0,0,-0.0618961 -132093,1414:131:4,141.5,43.5,0,0,-0.0070212 -132094,1414:132:3,142,43.5,0,0,-0.00789507 -132095,1414:132:4,142.5,43.5,0,0,-0.00891832 -132096,1414:133:3,143,43.5,0,0,-0.0086907 -132097,1414:133:4,143.5,43.5,0,0,-0.00821432 -132098,1414:134:3,144,43.5,0,0,-0.00778337 -132099,1414:134:4,144.5,43.5,0,0,-0.00752437 -132100,1414:235:3,145,43.5,0,0,-0.00759504 -132101,1414:235:4,145.5,43.5,0,0,-0.00785472 -132102,1414:236:3,146,43.5,0,0,-0.00813602 -132103,1414:236:4,146.5,43.5,0,0,-0.0083583 -132104,1414:237:3,147,43.5,0,0,-0.00862124 -132105,1414:237:4,147.5,43.5,0,0,-0.00893818 -132106,1414:238:3,148,43.5,0,0,-0.00914785 -132107,1414:238:4,148.5,43.5,0,0,-0.009495 -132108,1414:239:3,149,43.5,0,0,-0.0096487 -132109,1414:239:4,149.5,43.5,0,0,-0.00972864 -132110,1415:130:3,150,43.5,0,0,-0.00996816 -132111,1415:130:4,150.5,43.5,0,0,-0.0102228 -132112,1415:131:3,151,43.5,0,0,-0.0104069 -132113,1415:131:4,151.5,43.5,0,0,-0.0106728 -132114,1415:132:3,152,43.5,0,0,-0.0110513 -132115,1415:132:4,152.5,43.5,0,0,-0.0115202 -132116,1415:133:3,153,43.5,0,0,-0.0116784 -132117,1415:133:4,153.5,43.5,0,0,-0.0115305 -132118,1415:134:3,154,43.5,0,0,-0.0113186 -132119,1415:134:4,154.5,43.5,0,0,-0.0112204 -132120,1415:235:3,155,43.5,0,0,-0.0111256 -132121,1415:235:4,155.5,43.5,0,0,-0.0110513 -132122,1415:236:3,156,43.5,0,0,-0.0109873 -132123,1415:236:4,156.5,43.5,0,0,-0.0108313 -132124,1415:237:3,157,43.5,0,0,-0.0109041 -132125,1415:237:4,157.5,43.5,0,0,-0.0108434 -132126,1415:238:3,158,43.5,0,0,-0.0102228 -132127,1415:238:4,158.5,43.5,0,0,-0.00911939 -132128,1415:239:3,159,43.5,0,0,-0.00799415 -132129,1415:239:4,159.5,43.5,0,0,-0.00755459 -132130,1416:130:3,160,43.5,0,0,-0.00700558 -132131,1416:134:3,164,43.5,0,0,-0.00728538 -132132,1416:134:4,164.5,43.5,0,0,-0.0101455 -132133,1416:235:3,165,43.5,0,0,-0.0118255 -132134,1416:235:4,165.5,43.5,0,0,-0.0127798 -132135,1416:236:3,166,43.5,0,0,-0.0134459 -132136,1416:236:4,166.5,43.5,0,0,-0.0138214 -132137,1416:237:3,167,43.5,0,0,-0.0140619 -132138,1416:237:4,167.5,43.5,0,0,-0.0140367 -132139,1416:238:3,168,43.5,0,0,-0.0140242 -132140,1416:238:4,168.5,43.5,0,0,-0.0144484 -132141,1416:239:3,169,43.5,0,0,-0.015003 -132142,1416:239:4,169.5,43.5,0,0,-0.015499 -132143,1417:130:3,170,43.5,0,0,-0.0157975 -132144,1417:130:4,170.5,43.5,0,0,-0.0159865 -132145,1417:131:3,171,43.5,0,0,-0.0162069 -132146,1417:131:4,171.5,43.5,0,0,-0.0160404 -132147,1417:132:3,172,43.5,0,0,-0.01639 -132148,1417:132:4,172.5,43.5,0,0,-0.0165415 -132149,1417:133:3,173,43.5,0,0,-0.0162835 -132150,1417:133:4,173.5,43.5,0,0,-0.0161452 -132151,1417:134:3,174,43.5,0,0,-0.0162288 -132152,1417:134:4,174.5,43.5,0,0,-0.0164047 -132153,1417:235:3,175,43.5,0,0,-0.0163863 -132154,1417:235:4,175.5,43.5,0,0,-0.0160117 -132155,1417:236:3,176,43.5,0,0,-0.015897 -132156,1417:236:4,176.5,43.5,0,0,-0.0169401 -132157,1417:237:3,177,43.5,0,0,-0.0177988 -132158,1417:237:4,177.5,43.5,0,0,-0.0180854 -132159,1417:238:3,178,43.5,0,0,-0.0180244 -132160,1417:238:4,178.5,43.5,0,0,-0.0179436 -132161,1417:239:3,179,43.5,0,0,-0.0183312 -132162,1417:239:4,179.5,43.5,0,0,-0.0188203 -132163,1418:130:3,180,43.5,0,0,-0.0190762 -132164,7418:140:1,-180,44,0,0,-0.0185136 -132165,7417:249:2,-179.5,44,0,0,-0.018816 -132166,7417:249:1,-179,44,0,0,-0.0187653 -132167,7417:248:2,-178.5,44,0,0,-0.0185511 -132168,7417:248:1,-178,44,0,0,-0.018061 -132169,7417:247:2,-177.5,44,0,0,-0.017719 -132170,7417:247:1,-177,44,0,0,-0.0176554 -132171,7417:246:2,-176.5,44,0,0,-0.0176157 -132172,7417:246:1,-176,44,0,0,-0.017992 -132173,7417:245:2,-175.5,44,0,0,-0.0176872 -132174,7417:245:1,-175,44,0,0,-0.0167133 -132175,7417:144:2,-174.5,44,0,0,-0.0163422 -132176,7417:144:1,-174,44,0,0,-0.0162762 -132177,7417:143:2,-173.5,44,0,0,-0.0160656 -132178,7417:143:1,-173,44,0,0,-0.0154226 -132179,7417:142:2,-172.5,44,0,0,-0.0145622 -132180,7417:142:1,-172,44,0,0,-0.013924 -132181,7417:141:2,-171.5,44,0,0,-0.0140367 -132182,7417:141:1,-171,44,0,0,-0.0147165 -132183,7417:140:2,-170.5,44,0,0,-0.0149225 -132184,7417:140:1,-170,44,0,0,-0.0147198 -132185,7416:249:2,-169.5,44,0,0,-0.0144679 -132186,7416:249:1,-169,44,0,0,-0.0143227 -132187,7416:248:2,-168.5,44,0,0,-0.0144711 -132188,7416:248:1,-168,44,0,0,-0.0144743 -132189,7416:247:2,-167.5,44,0,0,-0.014358 -132190,7416:247:1,-167,44,0,0,-0.0143227 -132191,7416:246:2,-166.5,44,0,0,-0.0144614 -132192,7416:246:1,-166,44,0,0,-0.0144809 -132193,7416:245:2,-165.5,44,0,0,-0.0151552 -132194,7416:245:1,-165,44,0,0,-0.0162799 -132195,7416:144:2,-164.5,44,0,0,-0.0171354 -132196,7416:144:1,-164,44,0,0,-0.0178711 -132197,7416:143:2,-163.5,44,0,0,-0.0183147 -132198,7416:143:1,-163,44,0,0,-0.0185218 -132199,7416:142:2,-162.5,44,0,0,-0.0181915 -132200,7416:142:1,-162,44,0,0,-0.0170393 -132201,7416:141:2,-161.5,44,0,0,-0.0146736 -132202,7416:141:1,-161,44,0,0,-0.0109212 -132203,7415:248:2,-158.5,44,0,0,-0.0305238 -132204,7415:248:1,-158,44,0,0,-0.0297758 -132205,7415:247:2,-157.5,44,0,0,-0.0261722 -132206,7415:246:1,-156,44,0,0,-0.0260598 -132207,7415:245:2,-155.5,44,0,0,-0.0292389 -132208,7415:245:1,-155,44,0,0,-0.0316857 -132209,7415:144:2,-154.5,44,0,0,-0.0325872 -132210,7415:144:1,-154,44,0,0,-0.0325573 -132211,7415:143:2,-153.5,44,0,0,-0.0280541 -132212,7415:143:1,-153,44,0,0,-0.0279143 -132213,7415:142:2,-152.5,44,0,0,-0.0279588 -132214,7415:142:1,-152,44,0,0,-0.0283682 -132215,7415:141:2,-151.5,44,0,0,-0.0287643 -132216,7415:141:1,-151,44,0,0,-0.0290138 -132217,7415:140:2,-150.5,44,0,0,-0.029093 -132218,7415:140:1,-150,44,0,0,-0.0292921 -132219,7414:249:2,-149.5,44,0,0,-0.0295732 -132220,7414:249:1,-149,44,0,0,-0.0297082 -132221,7414:248:2,-148.5,44,0,0,-0.0297216 -132222,7414:248:1,-148,44,0,0,-0.0297285 -132223,7414:247:2,-147.5,44,0,0,-0.0298912 -132224,7414:247:1,-147,44,0,0,-0.0307539 -132225,7414:246:2,-146.5,44,0,0,-0.0323352 -132226,7414:246:1,-146,44,0,0,-0.033807 -132227,7414:245:2,-145.5,44,0,0,-0.0338688 -132228,7414:245:1,-145,44,0,0,-0.032931 -132229,7414:144:2,-144.5,44,0,0,-0.0326094 -132230,7414:144:1,-144,44,0,0,-0.0327437 -132231,7414:143:2,-143.5,44,0,0,-0.0333012 -132232,7414:143:1,-143,44,0,0,-0.0346754 -132233,7414:142:2,-142.5,44,0,0,-0.0359434 -132234,7414:142:1,-142,44,0,0,-0.0368096 -132235,7414:141:2,-141.5,44,0,0,-0.037568 -132236,7414:141:1,-141,44,0,0,-0.0384043 -132237,7414:140:2,-140.5,44,0,0,-0.0403109 -132238,7414:140:1,-140,44,0,0,-0.0419667 -132239,7413:249:2,-139.5,44,0,0,-0.0435526 -132240,7413:249:1,-139,44,0,0,-0.0451073 -132241,7413:248:2,-138.5,44,0,0,-0.0445279 -132242,7413:248:1,-138,44,0,0,-0.0449202 -132243,7413:247:2,-137.5,44,0,0,-0.0480463 -132244,7413:247:1,-137,44,0,0,-0.0517726 -132245,7413:246:2,-136.5,44,0,0,-0.0542132 -132246,7413:246:1,-136,44,0,0,-0.0534612 -132247,7413:245:2,-135.5,44,0,0,-0.0514608 -132248,7413:245:1,-135,44,0,0,-0.0476696 -132249,7413:144:2,-134.5,44,0,0,-0.0484038 -132250,7413:144:1,-134,44,0,0,-0.0451279 -132251,7413:143:2,-133.5,44,0,0,-0.0483477 -132252,7413:143:1,-133,44,0,0,-0.0408052 -132253,7413:142:2,-132.5,44,0,0,-0.0307751 -132254,7408:140:1,-80,44,0,0,-0.00687744 -132255,7407:249:2,-79.5,44,0,0,-0.00790033 -132256,7407:249:1,-79,44,0,0,-0.00821432 -132257,7407:248:2,-78.5,44,0,0,-0.0083583 -132258,7407:248:1,-78,44,0,0,-0.0081651 -132259,7407:247:2,-77.5,44,0,0,-0.00779724 -132260,7405:249:1,-59,44,0,0,-0.00577471 -132261,7405:248:2,-58.5,44,0,0,-0.00589137 -132262,7405:248:1,-58,44,0,0,-0.00642779 -132263,7405:247:2,-57.5,44,0,0,-0.00659427 -132264,7405:247:1,-57,44,0,0,-0.00651558 -132265,7405:246:2,-56.5,44,0,0,-0.00779724 -132266,7405:246:1,-56,44,0,0,-0.0131394 -132267,7405:245:2,-55.5,44,0,0,-0.0199867 -132268,7405:245:1,-55,44,0,0,-0.0252859 -132269,7405:144:2,-54.5,44,0,0,-0.025632 -132270,7405:144:1,-54,44,0,0,-0.0239001 -132271,7405:143:2,-53.5,44,0,0,-0.023171 -132272,7405:143:1,-53,44,0,0,-0.0211791 -132273,7405:142:2,-52.5,44,0,0,-0.020145 -132274,7405:142:1,-52,44,0,0,-0.0197094 -132275,7405:141:2,-51.5,44,0,0,-0.019158 -132276,7405:141:1,-51,44,0,0,-0.0191192 -132277,7405:140:2,-50.5,44,0,0,-0.0192965 -132278,7405:140:1,-50,44,0,0,-0.0193053 -132279,7404:249:2,-49.5,44,0,0,-0.0192574 -132280,7404:249:1,-49,44,0,0,-0.0191753 -132281,7404:248:2,-48.5,44,0,0,-0.0192488 -132282,7404:248:1,-48,44,0,0,-0.0196784 -132283,7404:247:2,-47.5,44,0,0,-0.0198342 -132284,7404:247:1,-47,44,0,0,-0.0205209 -132285,7404:246:2,-46.5,44,0,0,-0.021184 -132286,7404:246:1,-46,44,0,0,-0.021434 -132287,7404:245:2,-45.5,44,0,0,-0.0223886 -132288,7404:245:1,-45,44,0,0,-0.0235141 -132289,7404:144:2,-44.5,44,0,0,-0.0248658 -132290,7404:144:1,-44,44,0,0,-0.0271395 -132291,7404:143:2,-43.5,44,0,0,-0.0285429 -132292,7404:143:1,-43,44,0,0,-0.0295127 -132293,7404:142:2,-42.5,44,0,0,-0.0296002 -132294,7404:142:1,-42,44,0,0,-0.0285429 -132295,7404:141:2,-41.5,44,0,0,-0.0267907 -132296,7404:141:1,-41,44,0,0,-0.0254816 -132297,7404:140:2,-40.5,44,0,0,-0.0245247 -132298,7404:140:1,-40,44,0,0,-0.02361 -132299,7403:249:2,-39.5,44,0,0,-0.0226941 -132300,7403:249:1,-39,44,0,0,-0.0219234 -132301,7403:248:2,-38.5,44,0,0,-0.0214147 -132302,7403:248:1,-38,44,0,0,-0.0213663 -132303,7403:247:2,-37.5,44,0,0,-0.0217803 -132304,7403:247:1,-37,44,0,0,-0.0222324 -132305,7403:246:2,-36.5,44,0,0,-0.0228073 -132306,7403:246:1,-36,44,0,0,-0.0237224 -132307,7403:245:2,-35.5,44,0,0,-0.0242323 -132308,7403:245:1,-35,44,0,0,-0.0250126 -132309,7403:144:2,-34.5,44,0,0,-0.0263867 -132310,7403:144:1,-34,44,0,0,-0.0275805 -132311,7403:143:2,-33.5,44,0,0,-0.0291393 -132312,7403:143:1,-33,44,0,0,-0.030496 -132313,7403:142:2,-32.5,44,0,0,-0.0369618 -132314,7403:142:1,-32,44,0,0,-0.0461616 -132315,7403:141:2,-31.5,44,0,0,-0.0512696 -132316,7403:141:1,-31,44,0,0,-0.0524997 -132317,7403:140:2,-30.5,44,0,0,-0.0530768 -132318,7403:140:1,-30,44,0,0,-0.0516402 -132319,7402:249:2,-29.5,44,0,0,-0.0486175 -132320,7402:249:1,-29,44,0,0,-0.0464074 -132321,7402:248:2,-28.5,44,0,0,-0.0458106 -132322,7402:248:1,-28,44,0,0,-0.0451178 -132323,7402:247:2,-27.5,44,0,0,-0.0434923 -132324,7402:247:1,-27,44,0,0,-0.0409932 -132325,7402:246:2,-26.5,44,0,0,-0.0397682 -132326,7402:246:1,-26,44,0,0,-0.0401076 -132327,7402:245:2,-25.5,44,0,0,-0.0417643 -132328,7402:245:1,-25,44,0,0,-0.0427078 -132329,7402:144:2,-24.5,44,0,0,-0.0427273 -132330,7402:144:1,-24,44,0,0,-0.0442616 -132331,7402:143:2,-23.5,44,0,0,-0.0475045 -132332,7402:143:1,-23,44,0,0,-0.0507487 -132333,7402:142:2,-22.5,44,0,0,-0.0524752 -132334,7402:142:1,-22,44,0,0,-0.0520982 -132335,7402:141:2,-21.5,44,0,0,-0.0574824 -132336,7402:141:1,-21,44,0,0,-0.07934 -132337,7402:140:2,-20.5,44,0,0,-0.0939241 -132338,7402:140:1,-20,44,0,0,-0.101257 -132339,7401:249:2,-19.5,44,0,0,-0.103576 -132340,7401:249:1,-19,44,0,0,-0.103374 -132341,7401:248:2,-18.5,44,0,0,-0.100471 -132342,7401:248:1,-18,44,0,0,-0.0963874 -132343,7401:247:2,-17.5,44,0,0,-0.0955047 -132344,7401:247:1,-17,44,0,0,-0.092416 -132345,7401:246:2,-16.5,44,0,0,-0.0866632 -132346,7401:246:1,-16,44,0,0,-0.0864761 -132347,7401:245:2,-15.5,44,0,0,-0.0894788 -132348,7401:245:1,-15,44,0,0,-0.0922379 -132349,7401:144:2,-14.5,44,0,0,-0.096879 -132350,7401:144:1,-14,44,0,0,-0.101974 -132351,7401:143:2,-13.5,44,0,0,-0.104209 -132352,7401:143:1,-13,44,0,0,-0.104643 -132353,7401:142:2,-12.5,44,0,0,-0.104261 -132354,7401:142:1,-12,44,0,0,-0.10345 -132355,7401:141:2,-11.5,44,0,0,-0.102098 -132356,7401:141:1,-11,44,0,0,-0.0989454 -132357,7401:140:2,-10.5,44,0,0,-0.0945386 -132358,7401:140:1,-10,44,0,0,-0.0855478 -132359,7400:249:2,-9.5,44,0,0,-0.0773611 -132360,7400:248:2,-8.5,44,0,0,-0.0859382 -132361,7400:248:1,-8,44,0,0,-0.0787368 -132362,7400:246:2,-6.5,44,0,0,-0.0614911 -132363,7400:246:1,-6,44,0,0,-0.0721962 -132364,7400:245:2,-5.5,44,0,0,-0.07428 -132365,7400:245:1,-5,44,0,0,-0.0762829 -132366,7400:144:2,-4.5,44,0,0,-0.0764647 -132367,7400:144:1,-4,44,0,0,-0.0752563 -132368,7400:143:2,-3.5,44,0,0,-0.0748461 -132369,7400:143:1,-3,44,0,0,-0.0737531 -132370,7400:142:2,-2.5,44,0,0,-0.0726424 -132371,7400:142:1,-2,44,0,0,-0.0694652 -132372,7400:141:2,-1.5,44,0,0,-0.0684227 -132373,7400:141:1,-1,44,0,0,-0.06958 -132374,7400:140:2,-0.5,44,0,0,-0.0673338 -132375,1400:140:2,0,44,0,0,-0.0659051 -132376,1400:140:2,0.5,44,0,0,-0.0656574 -132377,1400:141:1,1,44,0,0,-0.06631 -132378,1400:141:2,1.5,44,0,0,-0.0692521 -132379,1400:142:1,2,44,0,0,-0.0704406 -132380,1400:142:2,2.5,44,0,0,-0.0718547 -132381,1400:143:1,3,44,0,0,-0.0703908 -132382,1400:143:2,3.5,44,0,0,-0.0703406 -132383,1400:144:1,4,44,0,0,-0.0605612 -132384,1400:247:1,7,44,0,0,-0.0385544 -132385,1400:247:2,7.5,44,0,0,-0.0327959 -132386,1400:248:1,8,44,0,0,-0.0334002 -132387,1401:140:2,10.5,44,0,0,-0.0527567 -132388,1401:141:1,11,44,0,0,-0.0594093 -132389,1401:141:2,11.5,44,0,0,-0.0619688 -132390,1401:142:1,12,44,0,0,-0.063114 -132391,1401:142:2,12.5,44,0,0,-0.0571209 -132392,1401:143:1,13,44,0,0,-0.0553753 -132393,1401:143:2,13.5,44,0,0,-0.0559462 -132394,1401:144:1,14,44,0,0,-0.0553237 -132395,1401:144:2,14.5,44,0,0,-0.0585264 -132396,1401:245:1,15,44,0,0,-0.0604478 -132397,1401:245:2,15.5,44,0,0,-0.0629807 -132398,1414:142:2,142.5,44,0,0,-0.00773155 -132399,1414:143:1,143,44,0,0,-0.00877827 -132400,1414:143:2,143.5,44,0,0,-0.00891632 -132401,1414:144:1,144,44,0,0,-0.00866167 -132402,1414:144:2,144.5,44,0,0,-0.00801373 -132403,1414:245:1,145,44,0,0,-0.00754116 -132404,1414:245:2,145.5,44,0,0,-0.00756466 -132405,1414:246:1,146,44,0,0,-0.00772294 -132406,1414:246:2,146.5,44,0,0,-0.00793558 -132407,1414:247:1,147,44,0,0,-0.00815418 -132408,1414:247:2,147.5,44,0,0,-0.00863661 -132409,1414:248:1,148,44,0,0,-0.00904443 -132410,1414:248:2,148.5,44,0,0,-0.00928141 -132411,1414:249:1,149,44,0,0,-0.00935414 -132412,1414:249:2,149.5,44,0,0,-0.00947802 -132413,1415:140:1,150,44,0,0,-0.00963577 -132414,1415:140:2,150.5,44,0,0,-0.00971567 -132415,1415:141:1,151,44,0,0,-0.00980712 -132416,1415:141:2,151.5,44,0,0,-0.00992819 -132417,1415:142:1,152,44,0,0,-0.01015 -132418,1415:142:2,152.5,44,0,0,-0.0105685 -132419,1415:143:1,153,44,0,0,-0.0109187 -132420,1415:143:2,153.5,44,0,0,-0.0110537 -132421,1415:144:1,154,44,0,0,-0.0110883 -132422,1415:144:2,154.5,44,0,0,-0.0110586 -132423,1415:245:1,155,44,0,0,-0.0109897 -132424,1415:245:2,155.5,44,0,0,-0.0108338 -132425,1415:246:1,156,44,0,0,-0.0105308 -132426,1415:246:2,156.5,44,0,0,-0.0101568 -132427,1415:247:1,157,44,0,0,-0.00989061 -132428,1415:247:2,157.5,44,0,0,-0.00969182 -132429,1415:248:1,158,44,0,0,-0.00950554 -132430,1415:248:2,158.5,44,0,0,-0.00922982 -132431,1415:249:1,159,44,0,0,-0.00899014 -132432,1415:249:2,159.5,44,0,0,-0.00890838 -132433,1416:140:1,160,44,0,0,-0.00851241 -132434,1416:140:2,160.5,44,0,0,-0.00825653 -132435,1416:141:1,161,44,0,0,-0.00774359 -132436,1416:144:2,164.5,44,0,0,-0.0068317 -132437,1416:245:1,165,44,0,0,-0.00660162 -132438,1416:245:2,165.5,44,0,0,-0.010512 -132439,1416:246:1,166,44,0,0,-0.0118175 -132440,1416:246:2,166.5,44,0,0,-0.0130252 -132441,1416:247:1,167,44,0,0,-0.0131394 -132442,1416:247:2,167.5,44,0,0,-0.0130954 -132443,1416:248:1,168,44,0,0,-0.0129293 -132444,1416:248:2,168.5,44,0,0,-0.0132546 -132445,1416:249:1,169,44,0,0,-0.0144581 -132446,1416:249:2,169.5,44,0,0,-0.0150704 -132447,1417:140:1,170,44,0,0,-0.0152233 -132448,1417:140:2,170.5,44,0,0,-0.014839 -132449,1417:141:1,171,44,0,0,-0.0138555 -132450,1417:141:2,171.5,44,0,0,-0.0135456 -132451,1417:142:1,172,44,0,0,-0.0140935 -132452,1417:142:2,172.5,44,0,0,-0.0153021 -132453,1417:143:1,173,44,0,0,-0.0159185 -132454,1417:143:2,173.5,44,0,0,-0.0159578 -132455,1417:144:1,174,44,0,0,-0.01589 -132456,1417:144:2,174.5,44,0,0,-0.0159973 -132457,1417:245:1,175,44,0,0,-0.0160945 -132458,1417:245:2,175.5,44,0,0,-0.0156458 -132459,1417:246:1,176,44,0,0,-0.0149493 -132460,1417:246:2,176.5,44,0,0,-0.0155442 -132461,1417:247:1,177,44,0,0,-0.0167283 -132462,1417:247:2,177.5,44,0,0,-0.0170854 -132463,1417:248:1,178,44,0,0,-0.0168188 -132464,1417:248:2,178.5,44,0,0,-0.0164452 -132465,1417:249:1,179,44,0,0,-0.0166533 -132466,1417:249:2,179.5,44,0,0,-0.0175288 -132467,1418:140:1,180,44,0,0,-0.0185136 -132468,7418:140:3,-180,44.5,0,0,-0.0183807 -132469,7417:249:4,-179.5,44.5,0,0,-0.0183683 -132470,7417:249:3,-179,44.5,0,0,-0.0177749 -132471,7417:248:4,-178.5,44.5,0,0,-0.0172165 -132472,7417:248:3,-178,44.5,0,0,-0.0162835 -132473,7417:247:4,-177.5,44.5,0,0,-0.0152335 -132474,7417:247:3,-177,44.5,0,0,-0.015145 -132475,7417:246:4,-176.5,44.5,0,0,-0.0155582 -132476,7417:246:3,-176,44.5,0,0,-0.015965 -132477,7417:245:4,-175.5,44.5,0,0,-0.0155373 -132478,7417:245:3,-175,44.5,0,0,-0.0150131 -132479,7417:144:4,-174.5,44.5,0,0,-0.0148457 -132480,7417:144:3,-174,44.5,0,0,-0.0145851 -132481,7417:143:4,-173.5,44.5,0,0,-0.0142554 -132482,7417:143:3,-173,44.5,0,0,-0.0138028 -132483,7417:142:4,-172.5,44.5,0,0,-0.013323 -132484,7417:142:3,-172,44.5,0,0,-0.0131041 -132485,7417:141:4,-171.5,44.5,0,0,-0.0131866 -132486,7417:141:3,-171,44.5,0,0,-0.0131688 -132487,7417:140:4,-170.5,44.5,0,0,-0.0131718 -132488,7417:140:3,-170,44.5,0,0,-0.0130924 -132489,7416:249:4,-169.5,44.5,0,0,-0.0130164 -132490,7416:249:3,-169,44.5,0,0,-0.0130895 -132491,7416:248:4,-168.5,44.5,0,0,-0.0132042 -132492,7416:248:3,-168,44.5,0,0,-0.0131012 -132493,7416:247:4,-167.5,44.5,0,0,-0.0129786 -132494,7416:247:3,-167,44.5,0,0,-0.0130019 -132495,7416:246:4,-166.5,44.5,0,0,-0.0130748 -132496,7416:246:3,-166,44.5,0,0,-0.013341 -132497,7416:245:4,-165.5,44.5,0,0,-0.0135638 -132498,7416:245:3,-165,44.5,0,0,-0.0135274 -132499,7416:144:4,-164.5,44.5,0,0,-0.0145557 -132500,7416:144:3,-164,44.5,0,0,-0.0151552 -132501,7416:143:4,-163.5,44.5,0,0,-0.0137166 -132502,7416:143:3,-163,44.5,0,0,-0.0151858 -132503,7416:142:4,-162.5,44.5,0,0,-0.0159937 -132504,7416:142:3,-162,44.5,0,0,-0.0149727 -132505,7416:141:4,-161.5,44.5,0,0,-0.0135365 -132506,7416:141:3,-161,44.5,0,0,-0.0121443 -132507,7416:140:4,-160.5,44.5,0,0,-0.00973732 -132508,7415:248:3,-158,44.5,0,0,-0.0305934 -132509,7415:247:4,-157.5,44.5,0,0,-0.0257427 -132510,7415:245:4,-155.5,44.5,0,0,-0.0268698 -132511,7415:245:3,-155,44.5,0,0,-0.0293322 -132512,7415:144:4,-154.5,44.5,0,0,-0.0304543 -132513,7415:144:3,-154,44.5,0,0,-0.034628 -132514,7415:143:4,-153.5,44.5,0,0,-0.0324092 -132515,7415:143:3,-153,44.5,0,0,-0.0283618 -132516,7415:142:4,-152.5,44.5,0,0,-0.0284005 -132517,7415:142:3,-152,44.5,0,0,-0.0286858 -132518,7415:141:4,-151.5,44.5,0,0,-0.0287838 -132519,7415:141:3,-151,44.5,0,0,-0.0289215 -132520,7415:140:4,-150.5,44.5,0,0,-0.0293255 -132521,7415:140:3,-150,44.5,0,0,-0.0296878 -132522,7414:249:4,-149.5,44.5,0,0,-0.029898 -132523,7414:249:3,-149,44.5,0,0,-0.0300481 -132524,7414:248:4,-148.5,44.5,0,0,-0.0300823 -132525,7414:248:3,-148,44.5,0,0,-0.0300481 -132526,7414:247:4,-147.5,44.5,0,0,-0.0301715 -132527,7414:247:3,-147,44.5,0,0,-0.0306283 -132528,7414:246:4,-146.5,44.5,0,0,-0.0313624 -132529,7414:246:3,-146,44.5,0,0,-0.0319614 -132530,7414:245:4,-145.5,44.5,0,0,-0.0319761 -132531,7414:245:3,-145,44.5,0,0,-0.0324313 -132532,7414:144:4,-144.5,44.5,0,0,-0.0328334 -132533,7414:144:3,-144,44.5,0,0,-0.0328483 -132534,7414:143:4,-143.5,44.5,0,0,-0.0335378 -132535,7414:143:3,-143,44.5,0,0,-0.0353399 -132536,7414:142:4,-142.5,44.5,0,0,-0.0375249 -132537,7414:142:3,-142,44.5,0,0,-0.0385809 -132538,7414:141:4,-141.5,44.5,0,0,-0.0385013 -132539,7414:141:3,-141,44.5,0,0,-0.0382198 -132540,7414:140:4,-140.5,44.5,0,0,-0.0393774 -132541,7414:140:3,-140,44.5,0,0,-0.0415916 -132542,7413:249:4,-139.5,44.5,0,0,-0.0431331 -132543,7413:249:3,-139,44.5,0,0,-0.0437538 -132544,7413:248:4,-138.5,44.5,0,0,-0.0433024 -132545,7413:248:3,-138,44.5,0,0,-0.0428359 -132546,7413:247:4,-137.5,44.5,0,0,-0.0446721 -132547,7413:247:3,-137,44.5,0,0,-0.0508549 -132548,7413:246:4,-136.5,44.5,0,0,-0.0512936 -132549,7413:246:3,-136,44.5,0,0,-0.0493439 -132550,7413:245:4,-135.5,44.5,0,0,-0.0485049 -132551,7413:144:3,-134,44.5,0,0,-0.0425113 -132552,7413:143:4,-133.5,44.5,0,0,-0.041928 -132553,7413:143:3,-133,44.5,0,0,-0.0402 -132554,7408:140:3,-80,44.5,0,0,-0.00690654 -132555,7407:249:4,-79.5,44.5,0,0,-0.00764936 -132556,7407:249:3,-79,44.5,0,0,-0.00811795 -132557,7407:248:4,-78.5,44.5,0,0,-0.00831003 -132558,7407:248:3,-78,44.5,0,0,-0.00806746 -132559,7407:247:4,-77.5,44.5,0,0,-0.00809629 -132560,7407:247:3,-77,44.5,0,0,-0.00814875 -132561,7407:246:4,-76.5,44.5,0,0,-0.00800127 -132562,7407:246:3,-76,44.5,0,0,-0.00820522 -132563,7407:245:4,-75.5,44.5,0,0,-0.00820154 -132564,7405:249:3,-59,44.5,0,0,-0.00583403 -132565,7405:248:4,-58.5,44.5,0,0,-0.00618662 -132566,7405:248:3,-58,44.5,0,0,-0.00647226 -132567,7405:247:4,-57.5,44.5,0,0,-0.00655625 -132568,7405:247:3,-57,44.5,0,0,-0.00647226 -132569,7405:246:4,-56.5,44.5,0,0,-0.00879004 -132570,7405:246:3,-56,44.5,0,0,-0.0178993 -132571,7405:245:4,-55.5,44.5,0,0,-0.0251147 -132572,7405:245:3,-55,44.5,0,0,-0.0264526 -132573,7405:144:4,-54.5,44.5,0,0,-0.0248095 -132574,7405:144:3,-54,44.5,0,0,-0.02303 -132575,7405:143:4,-53.5,44.5,0,0,-0.0220724 -132576,7405:143:3,-53,44.5,0,0,-0.0208192 -132577,7405:142:4,-52.5,44.5,0,0,-0.020077 -132578,7405:142:3,-52,44.5,0,0,-0.0191968 -132579,7405:141:4,-51.5,44.5,0,0,-0.018681 -132580,7405:141:3,-51,44.5,0,0,-0.0187526 -132581,7405:140:4,-50.5,44.5,0,0,-0.0188797 -132582,7405:140:3,-50,44.5,0,0,-0.0189222 -132583,7404:249:4,-49.5,44.5,0,0,-0.0189435 -132584,7404:249:3,-49,44.5,0,0,-0.0189947 -132585,7404:248:4,-48.5,44.5,0,0,-0.0191926 -132586,7404:248:3,-48,44.5,0,0,-0.0196784 -132587,7404:247:4,-47.5,44.5,0,0,-0.0209605 -132588,7404:247:3,-47,44.5,0,0,-0.0229572 -132589,7404:246:4,-46.5,44.5,0,0,-0.0232866 -132590,7404:246:3,-46,44.5,0,0,-0.0229936 -132591,7404:245:4,-45.5,44.5,0,0,-0.023103 -132592,7404:245:3,-45,44.5,0,0,-0.0245748 -132593,7404:144:4,-44.5,44.5,0,0,-0.0263209 -132594,7404:144:3,-44,44.5,0,0,-0.0279079 -132595,7404:143:4,-43.5,44.5,0,0,-0.0296946 -132596,7404:143:3,-43,44.5,0,0,-0.0321148 -132597,7404:142:4,-42.5,44.5,0,0,-0.0352672 -132598,7404:142:3,-42,44.5,0,0,-0.035894 -132599,7404:141:4,-41.5,44.5,0,0,-0.0344937 -132600,7404:141:3,-41,44.5,0,0,-0.0309015 -132601,7404:140:4,-40.5,44.5,0,0,-0.0263508 -132602,7404:140:3,-40,44.5,0,0,-0.0243477 -132603,7403:249:4,-39.5,44.5,0,0,-0.0237923 -132604,7403:249:3,-39,44.5,0,0,-0.0232655 -132605,7403:248:4,-38.5,44.5,0,0,-0.0225256 -132606,7403:248:3,-38,44.5,0,0,-0.0218838 -132607,7403:247:4,-37.5,44.5,0,0,-0.0219728 -132608,7403:247:3,-37,44.5,0,0,-0.0221373 -132609,7403:246:4,-36.5,44.5,0,0,-0.0227045 -132610,7403:246:3,-36,44.5,0,0,-0.0240466 -132611,7403:245:4,-35.5,44.5,0,0,-0.0250069 -132612,7403:245:3,-35,44.5,0,0,-0.0254872 -132613,7403:144:4,-34.5,44.5,0,0,-0.0264107 -132614,7403:144:3,-34,44.5,0,0,-0.028323 -132615,7403:143:4,-33.5,44.5,0,0,-0.0310001 -132616,7403:143:3,-33,44.5,0,0,-0.0331951 -132617,7403:142:4,-32.5,44.5,0,0,-0.033676 -132618,7403:142:3,-32,44.5,0,0,-0.0416972 -132619,7403:141:4,-31.5,44.5,0,0,-0.0492752 -132620,7403:141:3,-31,44.5,0,0,-0.0523535 -132621,7403:140:4,-30.5,44.5,0,0,-0.054327 -132622,7403:140:3,-30,44.5,0,0,-0.0556859 -132623,7402:249:4,-29.5,44.5,0,0,-0.0538607 -132624,7402:249:3,-29,44.5,0,0,-0.0522196 -132625,7402:248:4,-28.5,44.5,0,0,-0.0486625 -132626,7402:248:3,-28,44.5,0,0,-0.0454942 -132627,7402:247:4,-27.5,44.5,0,0,-0.0433524 -132628,7402:247:3,-27,44.5,0,0,-0.0418412 -132629,7402:246:4,-26.5,44.5,0,0,-0.0406926 -132630,7402:246:3,-26,44.5,0,0,-0.0402646 -132631,7402:245:4,-25.5,44.5,0,0,-0.0406646 -132632,7402:245:3,-25,44.5,0,0,-0.0416972 -132633,7402:144:4,-24.5,44.5,0,0,-0.0418992 -132634,7402:144:3,-24,44.5,0,0,-0.0423259 -132635,7402:143:4,-23.5,44.5,0,0,-0.0459378 -132636,7402:143:3,-23,44.5,0,0,-0.0533618 -132637,7402:142:4,-22.5,44.5,0,0,-0.0588006 -132638,7402:142:3,-22,44.5,0,0,-0.0628184 -132639,7402:141:4,-21.5,44.5,0,0,-0.0700256 -132640,7402:141:3,-21,44.5,0,0,-0.0754536 -132641,7402:140:4,-20.5,44.5,0,0,-0.0823317 -132642,7402:140:3,-20,44.5,0,0,-0.0876053 -132643,7401:249:4,-19.5,44.5,0,0,-0.093426 -132644,7401:249:3,-19,44.5,0,0,-0.101207 -132645,7401:248:4,-18.5,44.5,0,0,-0.104464 -132646,7401:248:3,-18,44.5,0,0,-0.102796 -132647,7401:247:4,-17.5,44.5,0,0,-0.100961 -132648,7401:247:3,-17,44.5,0,0,-0.0979653 -132649,7401:246:4,-16.5,44.5,0,0,-0.0903669 -132650,7401:246:3,-16,44.5,0,0,-0.088643 -132651,7401:245:4,-15.5,44.5,0,0,-0.0900625 -132652,7401:245:3,-15,44.5,0,0,-0.0912861 -132653,7401:144:4,-14.5,44.5,0,0,-0.0908687 -132654,7401:144:3,-14,44.5,0,0,-0.0953891 -132655,7401:143:4,-13.5,44.5,0,0,-0.0987535 -132656,7401:143:3,-13,44.5,0,0,-0.100912 -132657,7401:142:4,-12.5,44.5,0,0,-0.101874 -132658,7401:142:3,-12,44.5,0,0,-0.101775 -132659,7401:141:4,-11.5,44.5,0,0,-0.10133 -132660,7401:141:3,-11,44.5,0,0,-0.100691 -132661,7401:140:4,-10.5,44.5,0,0,-0.0995478 -132662,7401:140:3,-10,44.5,0,0,-0.0934935 -132663,7400:249:4,-9.5,44.5,0,0,-0.0918827 -132664,7400:249:3,-9,44.5,0,0,-0.0869762 -132665,7400:248:4,-8.5,44.5,0,0,-0.0868507 -132666,7400:248:3,-8,44.5,0,0,-0.081101 -132667,7400:246:3,-6,44.5,0,0,-0.0776567 -132668,7400:245:4,-5.5,44.5,0,0,-0.075831 -132669,7400:245:3,-5,44.5,0,0,-0.0766287 -132670,7400:144:4,-4.5,44.5,0,0,-0.0745803 -132671,7400:144:3,-4,44.5,0,0,-0.0710597 -132672,7400:143:4,-3.5,44.5,0,0,-0.0681006 -132673,7400:143:3,-3,44.5,0,0,-0.0666705 -132674,7400:142:4,-2.5,44.5,0,0,-0.0685361 -132675,7400:142:3,-2,44.5,0,0,-0.0684389 -132676,7400:141:4,-1.5,44.5,0,0,-0.0657348 -132677,7400:141:3,-1,44.5,0,0,-0.0649505 -132678,7400:140:4,-0.5,44.5,0,0,-0.0652109 -132679,1400:140:4,0,44.5,0,0,-0.0664666 -132680,1400:140:4,0.5,44.5,0,0,-0.0682779 -132681,1400:141:3,1,44.5,0,0,-0.0696789 -132682,1400:141:4,1.5,44.5,0,0,-0.0703908 -132683,1400:142:3,2,44.5,0,0,-0.0712113 -132684,1400:142:4,2.5,44.5,0,0,-0.0712957 -132685,1400:143:3,3,44.5,0,0,-0.0720763 -132686,1400:143:4,3.5,44.5,0,0,-0.0713462 -132687,1400:144:3,4,44.5,0,0,-0.0681006 -132688,1400:144:4,4.5,44.5,0,0,-0.0527444 -132689,1400:246:4,6.5,44.5,0,0,-0.0363571 -132690,1400:247:3,7,44.5,0,0,-0.0392779 -132691,1400:247:4,7.5,44.5,0,0,-0.0397682 -132692,1400:248:3,8,44.5,0,0,-0.0398413 -132693,1400:248:4,8.5,44.5,0,0,-0.0370721 -132694,1401:141:3,11,44.5,0,0,-0.0485498 -132695,1401:141:4,11.5,44.5,0,0,-0.0477248 -132696,1401:142:3,12,44.5,0,0,-0.0511745 -132697,1401:142:4,12.5,44.5,0,0,-0.0505253 -132698,1401:143:3,13,44.5,0,0,-0.0454103 -132699,1401:143:4,13.5,44.5,0,0,-0.04907 -132700,1401:144:3,14,44.5,0,0,-0.0555173 -132701,1401:144:4,14.5,44.5,0,0,-0.054327 -132702,1401:245:3,15,44.5,0,0,-0.0566426 -132703,1401:245:4,15.5,44.5,0,0,-0.0620705 -132704,1401:246:3,16,44.5,0,0,-0.0560247 -132705,1401:246:4,16.5,44.5,0,0,-0.0405153 -132706,1414:143:4,143.5,44.5,0,0,-0.00723533 -132707,1414:144:3,144,44.5,0,0,-0.00874311 -132708,1414:144:4,144.5,44.5,0,0,-0.00932496 -132709,1414:245:3,145,44.5,0,0,-0.00883716 -132710,1414:245:4,145.5,44.5,0,0,-0.0079056 -132711,1414:246:3,146,44.5,0,0,-0.00780593 -132712,1414:246:4,146.5,44.5,0,0,-0.00788274 -132713,1414:247:3,147,44.5,0,0,-0.00789153 -132714,1414:247:4,147.5,44.5,0,0,-0.00802087 -132715,1414:248:3,148,44.5,0,0,-0.0083583 -132716,1414:248:4,148.5,44.5,0,0,-0.00859823 -132717,1414:249:3,149,44.5,0,0,-0.00877242 -132718,1414:249:4,149.5,44.5,0,0,-0.00886878 -132719,1415:140:3,150,44.5,0,0,-0.00890244 -132720,1415:140:4,150.5,44.5,0,0,-0.00892627 -132721,1415:141:3,151,44.5,0,0,-0.0090022 -132722,1415:141:4,151.5,44.5,0,0,-0.00907878 -132723,1415:142:3,152,44.5,0,0,-0.0092216 -132724,1415:142:4,152.5,44.5,0,0,-0.00961434 -132725,1415:143:3,153,44.5,0,0,-0.010319 -132726,1415:143:4,153.5,44.5,0,0,-0.0109676 -132727,1415:144:3,154,44.5,0,0,-0.0110611 -132728,1415:144:4,154.5,44.5,0,0,-0.0103838 -132729,1415:245:3,155,44.5,0,0,-0.00989283 -132730,1415:245:4,155.5,44.5,0,0,-0.0095715 -132731,1415:246:3,156,44.5,0,0,-0.00986639 -132732,1415:246:4,156.5,44.5,0,0,-0.00956727 -132733,1415:247:3,157,44.5,0,0,-0.00914991 -132734,1415:247:4,157.5,44.5,0,0,-0.0093479 -132735,1415:248:3,158,44.5,0,0,-0.00920517 -132736,1415:248:4,158.5,44.5,0,0,-0.0088826 -132737,1415:249:3,159,44.5,0,0,-0.00850293 -132738,1415:249:4,159.5,44.5,0,0,-0.00852574 -132739,1416:140:3,160,44.5,0,0,-0.00854855 -132740,1416:140:4,160.5,44.5,0,0,-0.00840315 -132741,1416:141:3,161,44.5,0,0,-0.00798704 -132742,1416:141:4,161.5,44.5,0,0,-0.00816144 -132743,1416:245:3,165,44.5,0,0,-0.00655483 -132744,1416:245:4,165.5,44.5,0,0,-0.00842563 -132745,1416:246:3,166,44.5,0,0,-0.00939388 -132746,1416:246:4,166.5,44.5,0,0,-0.0111979 -132747,1416:247:3,167,44.5,0,0,-0.0114509 -132748,1416:247:4,167.5,44.5,0,0,-0.0118784 -132749,1416:248:3,168,44.5,0,0,-0.0125334 -132750,1416:248:4,168.5,44.5,0,0,-0.0129468 -132751,1416:249:3,169,44.5,0,0,-0.0137813 -132752,1416:249:4,169.5,44.5,0,0,-0.0140966 -132753,1417:140:3,170,44.5,0,0,-0.0137197 -132754,1417:140:4,170.5,44.5,0,0,-0.0128832 -132755,1417:141:3,171,44.5,0,0,-0.0120443 -132756,1417:141:4,171.5,44.5,0,0,-0.0128687 -132757,1417:142:3,172,44.5,0,0,-0.0135032 -132758,1417:142:4,172.5,44.5,0,0,-0.0139959 -132759,1417:143:3,173,44.5,0,0,-0.0143999 -132760,1417:143:4,173.5,44.5,0,0,-0.0147561 -132761,1417:144:3,174,44.5,0,0,-0.0152541 -132762,1417:144:4,174.5,44.5,0,0,-0.015702 -132763,1417:245:3,175,44.5,0,0,-0.0156668 -132764,1417:245:4,175.5,44.5,0,0,-0.0151247 -132765,1417:246:3,176,44.5,0,0,-0.0145003 -132766,1417:246:4,176.5,44.5,0,0,-0.014909 -132767,1417:247:3,177,44.5,0,0,-0.0156949 -132768,1417:247:4,177.5,44.5,0,0,-0.0161887 -132769,1417:248:3,178,44.5,0,0,-0.0161778 -132770,1417:248:4,178.5,44.5,0,0,-0.0161705 -132771,1417:249:3,179,44.5,0,0,-0.0166384 -132772,1417:249:4,179.5,44.5,0,0,-0.0175368 -132773,1418:140:3,180,44.5,0,0,-0.0183807 -132774,7418:350:1,-180,45,0,0,-0.0172629 -132775,7417:459:2,-179.5,45,0,0,-0.0160441 -132776,7417:459:1,-179,45,0,0,-0.015762 -132777,7417:458:2,-178.5,45,0,0,-0.0157726 -132778,7417:458:1,-178,45,0,0,-0.0149058 -132779,7417:457:2,-177.5,45,0,0,-0.0133051 -132780,7417:457:1,-177,45,0,0,-0.012817 -132781,7417:456:2,-176.5,45,0,0,-0.012886 -132782,7417:456:1,-176,45,0,0,-0.0131836 -132783,7417:455:2,-175.5,45,0,0,-0.0131659 -132784,7417:455:1,-175,45,0,0,-0.0129845 -132785,7417:354:2,-174.5,45,0,0,-0.0127085 -132786,7417:354:1,-174,45,0,0,-0.0126404 -132787,7417:353:2,-173.5,45,0,0,-0.0126037 -132788,7417:353:1,-173,45,0,0,-0.012525 -132789,7417:352:2,-172.5,45,0,0,-0.0123386 -132790,7417:352:1,-172,45,0,0,-0.0121416 -132791,7417:351:2,-171.5,45,0,0,-0.0119477 -132792,7417:351:1,-171,45,0,0,-0.0117097 -132793,7417:350:2,-170.5,45,0,0,-0.0116003 -132794,7417:350:1,-170,45,0,0,-0.0112405 -132795,7416:459:2,-169.5,45,0,0,-0.0108482 -132796,7416:459:1,-169,45,0,0,-0.0101954 -132797,7416:458:2,-168.5,45,0,0,-0.0100172 -132798,7416:458:1,-168,45,0,0,-0.00985095 -132799,7416:457:2,-167.5,45,0,0,-0.0091397 -132800,7416:457:1,-167,45,0,0,-0.00944215 -132801,7416:456:2,-166.5,45,0,0,-0.00990827 -132802,7416:456:1,-166,45,0,0,-0.00980271 -132803,7416:455:2,-165.5,45,0,0,-0.0092587 -132804,7416:455:1,-165,45,0,0,-0.00791619 -132805,7416:354:2,-164.5,45,0,0,-0.00712349 -132806,7416:353:2,-163.5,45,0,0,-0.00626132 -132807,7416:353:1,-163,45,0,0,-0.00741462 -132808,7416:352:2,-162.5,45,0,0,-0.00788628 -132809,7416:352:1,-162,45,0,0,-0.00715524 -132810,7416:351:2,-161.5,45,0,0,-0.00659284 -132811,7416:351:1,-161,45,0,0,-0.0081306 -132812,7416:350:2,-160.5,45,0,0,-0.00761876 -132813,7415:457:2,-157.5,45,0,0,-0.0293989 -132814,7415:457:1,-157,45,0,0,-0.0313338 -132815,7415:456:2,-156.5,45,0,0,-0.0278195 -132816,7415:455:1,-155,45,0,0,-0.0276745 -132817,7415:354:2,-154.5,45,0,0,-0.029898 -132818,7415:354:1,-154,45,0,0,-0.0326913 -132819,7415:353:2,-153.5,45,0,0,-0.0349062 -132820,7415:353:1,-153,45,0,0,-0.0351063 -132821,7415:352:2,-152.5,45,0,0,-0.0310283 -132822,7415:352:1,-152,45,0,0,-0.0301715 -132823,7415:351:2,-151.5,45,0,0,-0.0307191 -132824,7415:351:1,-151,45,0,0,-0.0311063 -132825,7415:350:2,-150.5,45,0,0,-0.0310354 -132826,7415:350:1,-150,45,0,0,-0.0307961 -132827,7414:459:2,-149.5,45,0,0,-0.0305864 -132828,7414:459:1,-149,45,0,0,-0.0305516 -132829,7414:458:2,-148.5,45,0,0,-0.0306072 -132830,7414:458:1,-148,45,0,0,-0.0308874 -132831,7414:457:2,-147.5,45,0,0,-0.0313482 -132832,7414:457:1,-147,45,0,0,-0.0316496 -132833,7414:456:2,-146.5,45,0,0,-0.0317798 -132834,7414:456:1,-146,45,0,0,-0.0317581 -132835,7414:455:2,-145.5,45,0,0,-0.0322543 -132836,7414:455:1,-145,45,0,0,-0.0332254 -132837,7414:354:2,-144.5,45,0,0,-0.033561 -132838,7414:354:1,-144,45,0,0,-0.0354776 -132839,7414:353:2,-143.5,45,0,0,-0.0382723 -132840,7414:353:1,-143,45,0,0,-0.0398413 -132841,7414:352:2,-142.5,45,0,0,-0.0404966 -132842,7414:352:1,-142,45,0,0,-0.0401907 -132843,7414:351:2,-141.5,45,0,0,-0.0393774 -132844,7414:351:1,-141,45,0,0,-0.0388118 -132845,7414:350:2,-140.5,45,0,0,-0.0386252 -132846,7414:350:1,-140,45,0,0,-0.0395586 -132847,7413:459:2,-139.5,45,0,0,-0.0407394 -132848,7413:459:1,-139,45,0,0,-0.0414199 -132849,7413:458:2,-138.5,45,0,0,-0.0422186 -132850,7413:458:1,-138,45,0,0,-0.0444869 -132851,7413:457:2,-137.5,45,0,0,-0.0491954 -132852,7413:457:1,-137,45,0,0,-0.0508549 -132853,7413:456:2,-136.5,45,0,0,-0.0493209 -132854,7413:354:1,-134,45,0,0,-0.037923 -132855,7408:350:1,-80,45,0,0,-0.00681498 -132856,7407:459:2,-79.5,45,0,0,-0.00778337 -132857,7407:459:1,-79,45,0,0,-0.00845381 -132858,7407:458:2,-78.5,45,0,0,-0.00828419 -132859,7407:458:1,-78,45,0,0,-0.00862699 -132860,7407:457:2,-77.5,45,0,0,-0.0088846 -132861,7407:457:1,-77,45,0,0,-0.00904443 -132862,7407:456:2,-76.5,45,0,0,-0.00871782 -132863,7407:456:1,-76,45,0,0,-0.00879985 -132864,7407:455:2,-75.5,45,0,0,-0.00864625 -132865,7407:455:1,-75,45,0,0,-0.00873342 -132866,7407:354:2,-74.5,45,0,0,-0.0085925 -132867,7405:458:2,-58.5,45,0,0,-0.00628226 -132868,7405:458:1,-58,45,0,0,-0.00657086 -132869,7405:457:2,-57.5,45,0,0,-0.00643206 -132870,7405:457:1,-57,45,0,0,-0.00756296 -132871,7405:456:2,-56.5,45,0,0,-0.0116158 -132872,7405:456:1,-56,45,0,0,-0.0240411 -132873,7405:455:2,-55.5,45,0,0,-0.0275805 -132874,7405:455:1,-55,45,0,0,-0.0268455 -132875,7405:354:2,-54.5,45,0,0,-0.0239814 -132876,7405:354:1,-54,45,0,0,-0.0218838 -132877,7405:353:2,-53.5,45,0,0,-0.0211745 -132878,7405:353:1,-53,45,0,0,-0.0199687 -132879,7405:352:2,-52.5,45,0,0,-0.0189307 -132880,7405:352:1,-52,45,0,0,-0.01866 -132881,7405:351:2,-51.5,45,0,0,-0.0187991 -132882,7405:351:1,-51,45,0,0,-0.0189307 -132883,7405:350:2,-50.5,45,0,0,-0.0192098 -132884,7405:350:1,-50,45,0,0,-0.01959 -132885,7404:459:2,-49.5,45,0,0,-0.0200907 -132886,7404:459:1,-49,45,0,0,-0.020623 -132887,7404:458:2,-48.5,45,0,0,-0.0211745 -132888,7404:458:1,-48,45,0,0,-0.0210506 -132889,7404:457:2,-47.5,45,0,0,-0.0207255 -132890,7404:457:1,-47,45,0,0,-0.0225562 -132891,7404:456:2,-46.5,45,0,0,-0.023408 -132892,7404:456:1,-46,45,0,0,-0.0248488 -132893,7404:455:2,-45.5,45,0,0,-0.0254583 -132894,7404:455:1,-45,45,0,0,-0.0275492 -132895,7404:354:2,-44.5,45,0,0,-0.0337375 -132896,7404:354:1,-44,45,0,0,-0.0359268 -132897,7404:353:2,-43.5,45,0,0,-0.0350901 -132898,7404:353:1,-43,45,0,0,-0.0340941 -132899,7404:352:2,-42.5,45,0,0,-0.032841 -132900,7404:352:1,-42,45,0,0,-0.0309437 -132901,7404:351:2,-41.5,45,0,0,-0.0316496 -132902,7404:351:1,-41,45,0,0,-0.034986 -132903,7404:350:2,-40.5,45,0,0,-0.0388921 -132904,7404:350:1,-40,45,0,0,-0.0333623 -132905,7403:459:2,-39.5,45,0,0,-0.0266514 -132906,7403:459:1,-39,45,0,0,-0.0242267 -132907,7403:458:2,-38.5,45,0,0,-0.0232602 -132908,7403:458:1,-38,45,0,0,-0.0232813 -132909,7403:457:2,-37.5,45,0,0,-0.0234982 -132910,7403:457:1,-37,45,0,0,-0.0234821 -132911,7403:456:2,-36.5,45,0,0,-0.0230092 -132912,7403:456:1,-36,45,0,0,-0.0233445 -132913,7403:455:2,-35.5,45,0,0,-0.0238894 -132914,7403:455:1,-35,45,0,0,-0.0241774 -132915,7403:354:2,-34.5,45,0,0,-0.0248601 -132916,7403:354:1,-34,45,0,0,-0.0257601 -132917,7403:353:2,-33.5,45,0,0,-0.0263091 -132918,7403:353:1,-33,45,0,0,-0.0320197 -132919,7403:352:2,-32.5,45,0,0,-0.0346834 -132920,7403:352:1,-32,45,0,0,-0.0380274 -132921,7403:351:2,-31.5,45,0,0,-0.0442719 -132922,7403:351:1,-31,45,0,0,-0.0492069 -132923,7403:350:2,-30.5,45,0,0,-0.0532501 -132924,7403:350:1,-30,45,0,0,-0.0572008 -132925,7402:459:2,-29.5,45,0,0,-0.0593118 -132926,7402:459:1,-29,45,0,0,-0.0593953 -132927,7402:458:2,-28.5,45,0,0,-0.0548866 -132928,7402:458:1,-28,45,0,0,-0.0509021 -132929,7402:457:2,-27.5,45,0,0,-0.0483364 -132930,7402:457:1,-27,45,0,0,-0.045832 -132931,7402:456:2,-26.5,45,0,0,-0.0442208 -132932,7402:456:1,-26,45,0,0,-0.0438247 -132933,7402:455:2,-25.5,45,0,0,-0.0441595 -132934,7402:455:1,-25,45,0,0,-0.0429445 -132935,7402:354:2,-24.5,45,0,0,-0.0413151 -132936,7402:354:1,-24,45,0,0,-0.0412391 -132937,7402:353:2,-23.5,45,0,0,-0.041774 -132938,7402:353:1,-23,45,0,0,-0.0482358 -132939,7402:352:2,-22.5,45,0,0,-0.0545678 -132940,7402:352:1,-22,45,0,0,-0.0535855 -132941,7402:351:2,-21.5,45,0,0,-0.0508311 -132942,7402:351:1,-21,45,0,0,-0.0494698 -132943,7402:350:2,-20.5,45,0,0,-0.0488318 -132944,7402:350:1,-20,45,0,0,-0.058417 -132945,7401:459:2,-19.5,45,0,0,-0.0724876 -132946,7401:459:1,-19,45,0,0,-0.072625 -132947,7401:458:2,-18.5,45,0,0,-0.0748109 -132948,7401:458:1,-18,45,0,0,-0.0762829 -132949,7401:457:2,-17.5,45,0,0,-0.078906 -132950,7401:457:1,-17,45,0,0,-0.0877101 -132951,7401:456:2,-16.5,45,0,0,-0.0957123 -132952,7401:456:1,-16,45,0,0,-0.0957357 -132953,7401:455:2,-15.5,45,0,0,-0.0885363 -132954,7401:455:1,-15,45,0,0,-0.0833819 -132955,7401:354:2,-14.5,45,0,0,-0.081101 -132956,7401:354:1,-14,45,0,0,-0.0806954 -132957,7401:353:2,-13.5,45,0,0,-0.084407 -132958,7401:353:1,-13,45,0,0,-0.0938784 -132959,7401:352:2,-12.5,45,0,0,-0.0991619 -132960,7401:352:1,-12,45,0,0,-0.0974915 -132961,7401:351:2,-11.5,45,0,0,-0.0970432 -132962,7401:351:1,-11,45,0,0,-0.0971143 -132963,7401:350:2,-10.5,45,0,0,-0.0969256 -132964,7401:350:1,-10,45,0,0,-0.0971373 -132965,7400:459:2,-9.5,45,0,0,-0.0948595 -132966,7400:459:1,-9,45,0,0,-0.0868297 -132967,7400:458:2,-8.5,45,0,0,-0.0861657 -132968,7400:458:1,-8,45,0,0,-0.0843059 -132969,7400:457:2,-7.5,45,0,0,-0.0834422 -132970,7400:457:1,-7,45,0,0,-0.0854858 -132971,7400:456:1,-6,45,0,0,-0.0687954 -132972,7400:455:2,-5.5,45,0,0,-0.077251 -132973,7400:455:1,-5,45,0,0,-0.0731433 -132974,7400:354:2,-4.5,45,0,0,-0.06958 -132975,7400:354:1,-4,45,0,0,-0.0681973 -132976,7400:353:2,-3.5,45,0,0,-0.0646152 -132977,7400:353:1,-3,45,0,0,-0.0650574 -132978,7400:352:2,-2.5,45,0,0,-0.0664666 -132979,7400:352:1,-2,45,0,0,-0.0667492 -132980,7400:351:2,-1.5,45,0,0,-0.0658275 -132981,7400:351:1,-1,45,0,0,-0.0659985 -132982,7400:350:2,-0.5,45,0,0,-0.0669223 -132983,1400:350:2,0,45,0,0,-0.066045 -132984,1400:350:2,0.5,45,0,0,-0.0670804 -132985,1400:351:1,1,45,0,0,-0.0641458 -132986,1400:351:2,1.5,45,0,0,-0.0647368 -132987,1400:352:1,2,45,0,0,-0.0669854 -132988,1400:352:2,2.5,45,0,0,-0.0642513 -132989,1400:353:1,3,45,0,0,-0.0617222 -132990,1400:353:2,3.5,45,0,0,-0.058718 -132991,1400:354:1,4,45,0,0,-0.0582667 -132992,1400:354:2,4.5,45,0,0,-0.0641007 -132993,1400:455:1,5,45,0,0,-0.0597302 -132994,1400:455:2,5.5,45,0,0,-0.0549123 -132995,1400:456:2,6.5,45,0,0,-0.0358038 -132996,1400:457:1,7,45,0,0,-0.0370125 -132997,1400:457:2,7.5,45,0,0,-0.0398321 -132998,1401:352:2,12.5,45,0,0,-0.0436631 -132999,1401:353:1,13,45,0,0,-0.0403851 -133000,1401:353:2,13.5,45,0,0,-0.0442105 -133001,1401:354:1,14,45,0,0,-0.0485948 -133002,1401:354:2,14.5,45,0,0,-0.049036 -133003,1401:455:1,15,45,0,0,-0.053999 -133004,1401:455:2,15.5,45,0,0,-0.0582805 -133005,1401:456:1,16,45,0,0,-0.055764 -133006,1401:456:2,16.5,45,0,0,-0.0488093 -133007,1414:455:1,145,45,0,0,-0.00867907 -133008,1414:455:2,145.5,45,0,0,-0.00965948 -133009,1414:456:1,146,45,0,0,-0.00996816 -133010,1414:456:2,146.5,45,0,0,-0.00979397 -133011,1414:457:1,147,45,0,0,-0.00910513 -133012,1414:457:2,147.5,45,0,0,-0.0084614 -133013,1414:458:1,148,45,0,0,-0.00836393 -133014,1414:458:2,148.5,45,0,0,-0.00852383 -133015,1414:459:1,149,45,0,0,-0.008851 -133016,1414:459:2,149.5,45,0,0,-0.00937504 -133017,1415:350:1,150,45,0,0,-0.00981153 -133018,1415:350:2,150.5,45,0,0,-0.0102891 -133019,1415:351:1,151,45,0,0,-0.0106372 -133020,1415:351:2,151.5,45,0,0,-0.010875 -133021,1415:352:1,152,45,0,0,-0.0110735 -133022,1415:352:2,152.5,45,0,0,-0.0106538 -133023,1415:353:1,153,45,0,0,-0.0111082 -133024,1415:353:2,153.5,45,0,0,-0.00985095 -133025,1415:354:1,154,45,0,0,-0.00797993 -133026,1415:354:2,154.5,45,0,0,-0.00647656 -133027,1415:458:1,158,45,0,0,-0.00643922 -133028,1415:458:2,158.5,45,0,0,-0.00777639 -133029,1415:459:1,159,45,0,0,-0.00791264 -133030,1415:459:2,159.5,45,0,0,-0.00759168 -133031,1416:350:1,160,45,0,0,-0.00762891 -133032,1416:350:2,160.5,45,0,0,-0.00760521 -133033,1416:351:1,161,45,0,0,-0.00773323 -133034,1416:351:2,161.5,45,0,0,-0.00751431 -133035,1416:352:1,162,45,0,0,-0.00768348 -133036,1416:352:2,162.5,45,0,0,-0.00781288 -133037,1416:455:1,165,45,0,0,-0.00559782 -133038,1416:455:2,165.5,45,0,0,-0.00586005 -133039,1416:456:1,166,45,0,0,-0.00689581 -133040,1416:456:2,166.5,45,0,0,-0.00807827 -133041,1416:457:1,167,45,0,0,-0.0103838 -133042,1416:458:1,168,45,0,0,-0.0098356 -133043,1416:458:2,168.5,45,0,0,-0.0108555 -133044,1416:459:1,169,45,0,0,-0.0113464 -133045,1416:459:2,169.5,45,0,0,-0.0111728 -133046,1417:350:1,170,45,0,0,-0.0108024 -133047,1417:350:2,170.5,45,0,0,-0.0103052 -133048,1417:351:1,171,45,0,0,-0.0087568 -133049,1417:351:2,171.5,45,0,0,-0.0102067 -133050,1417:352:1,172,45,0,0,-0.0120523 -133051,1417:352:2,172.5,45,0,0,-0.0131453 -133052,1417:353:1,173,45,0,0,-0.0141156 -133053,1417:353:2,173.5,45,0,0,-0.0146407 -133054,1417:354:1,174,45,0,0,-0.0147693 -133055,1417:354:2,174.5,45,0,0,-0.0146309 -133056,1417:455:1,175,45,0,0,-0.0142682 -133057,1417:455:2,175.5,45,0,0,-0.0140556 -133058,1417:456:1,176,45,0,0,-0.0143484 -133059,1417:456:2,176.5,45,0,0,-0.0146342 -133060,1417:457:1,177,45,0,0,-0.0149425 -133061,1417:457:2,177.5,45,0,0,-0.0153743 -133062,1417:458:1,178,45,0,0,-0.0157656 -133063,1417:458:2,178.5,45,0,0,-0.0162835 -133064,1417:459:1,179,45,0,0,-0.0169668 -133065,1417:459:2,179.5,45,0,0,-0.0175013 -133066,1418:350:1,180,45,0,0,-0.0172629 -133067,7418:350:3,-180,45.5,0,0,-0.0163201 -133068,7417:459:4,-179.5,45.5,0,0,-0.0156492 -133069,7417:459:3,-179,45.5,0,0,-0.0150975 -133070,7417:458:4,-178.5,45.5,0,0,-0.0143741 -133071,7417:458:3,-178,45.5,0,0,-0.01316 -133072,7417:457:4,-177.5,45.5,0,0,-0.0120469 -133073,7417:457:3,-177,45.5,0,0,-0.0113439 -133074,7417:456:4,-176.5,45.5,0,0,-0.0112606 -133075,7417:456:3,-176,45.5,0,0,-0.0116055 -133076,7417:455:4,-175.5,45.5,0,0,-0.0117543 -133077,7417:455:3,-175,45.5,0,0,-0.011778 -133078,7417:354:4,-174.5,45.5,0,0,-0.0117727 -133079,7417:354:3,-174,45.5,0,0,-0.0119423 -133080,7417:353:4,-173.5,45.5,0,0,-0.0119237 -133081,7417:353:3,-173,45.5,0,0,-0.011749 -133082,7417:352:4,-172.5,45.5,0,0,-0.0114765 -133083,7417:352:3,-172,45.5,0,0,-0.0112379 -133084,7417:351:4,-171.5,45.5,0,0,-0.0108507 -133085,7417:351:3,-171,45.5,0,0,-0.010241 -133086,7417:350:4,-170.5,45.5,0,0,-0.0092319 -133087,7417:350:3,-170,45.5,0,0,-0.00810527 -133088,7416:459:4,-169.5,45.5,0,0,-0.00715048 -133089,7416:459:3,-169,45.5,0,0,-0.00655625 -133090,7416:458:4,-168.5,45.5,0,0,-0.00652137 -133091,7416:458:3,-168,45.5,0,0,-0.00687436 -133092,7416:457:4,-167.5,45.5,0,0,-0.00656213 -133093,7416:457:3,-167,45.5,0,0,-0.00666953 -133094,7416:456:4,-166.5,45.5,0,0,-0.00738171 -133095,7416:456:3,-166,45.5,0,0,-0.00710764 -133096,7416:455:4,-165.5,45.5,0,0,-0.00676965 -133097,7416:455:3,-165,45.5,0,0,-0.00643922 -133098,7416:350:4,-160.5,45.5,0,0,-0.0069035 -133099,7415:457:3,-157,45.5,0,0,-0.0299389 -133100,7415:456:4,-156.5,45.5,0,0,-0.0322543 -133101,7415:455:3,-155,45.5,0,0,-0.0291725 -133102,7415:354:4,-154.5,45.5,0,0,-0.0311134 -133103,7415:354:3,-154,45.5,0,0,-0.0316642 -133104,7415:353:4,-153.5,45.5,0,0,-0.0345804 -133105,7415:353:3,-153,45.5,0,0,-0.0366077 -133106,7415:352:4,-152.5,45.5,0,0,-0.0356484 -133107,7415:352:3,-152,45.5,0,0,-0.0341719 -133108,7415:351:4,-151.5,45.5,0,0,-0.0331118 -133109,7415:351:3,-151,45.5,0,0,-0.0330514 -133110,7415:350:4,-150.5,45.5,0,0,-0.033127 -133111,7415:350:3,-150,45.5,0,0,-0.0329835 -133112,7414:459:4,-149.5,45.5,0,0,-0.0324387 -133113,7414:459:3,-149,45.5,0,0,-0.0317871 -133114,7414:458:4,-148.5,45.5,0,0,-0.0314412 -133115,7414:458:3,-148,45.5,0,0,-0.031556 -133116,7414:457:4,-147.5,45.5,0,0,-0.0318015 -133117,7414:457:3,-147,45.5,0,0,-0.0319178 -133118,7414:456:4,-146.5,45.5,0,0,-0.0319323 -133119,7414:456:3,-146,45.5,0,0,-0.0317944 -133120,7414:455:4,-145.5,45.5,0,0,-0.0324166 -133121,7414:455:3,-145,45.5,0,0,-0.0339541 -133122,7414:354:4,-144.5,45.5,0,0,-0.0355671 -133123,7414:354:3,-144,45.5,0,0,-0.0378707 -133124,7414:353:4,-143.5,45.5,0,0,-0.0390263 -133125,7414:353:3,-143,45.5,0,0,-0.0401445 -133126,7414:352:4,-142.5,45.5,0,0,-0.041097 -133127,7414:352:3,-142,45.5,0,0,-0.0414484 -133128,7414:351:4,-141.5,45.5,0,0,-0.0404966 -133129,7414:351:3,-141,45.5,0,0,-0.039314 -133130,7414:350:4,-140.5,45.5,0,0,-0.0388387 -133131,7414:350:3,-140,45.5,0,0,-0.0392961 -133132,7413:459:4,-139.5,45.5,0,0,-0.0404038 -133133,7413:459:3,-139,45.5,0,0,-0.042015 -133134,7413:458:4,-138.5,45.5,0,0,-0.044241 -133135,7413:458:3,-138,45.5,0,0,-0.0480463 -133136,7413:457:4,-137.5,45.5,0,0,-0.0503499 -133137,7413:457:3,-137,45.5,0,0,-0.0482249 -133138,7413:456:4,-136.5,45.5,0,0,-0.0491269 -133139,7413:456:3,-136,45.5,0,0,-0.0348743 -133140,7408:352:3,-82,45.5,0,0,-0.00658403 -133141,7408:351:4,-81.5,45.5,0,0,-0.0066399 -133142,7408:351:3,-81,45.5,0,0,-0.00673061 -133143,7408:350:4,-80.5,45.5,0,0,-0.00694817 -133144,7408:350:3,-80,45.5,0,0,-0.00769717 -133145,7407:459:4,-79.5,45.5,0,0,-0.00828233 -133146,7407:459:3,-79,45.5,0,0,-0.00848779 -133147,7407:458:4,-78.5,45.5,0,0,-0.0086193 -133148,7407:458:3,-78,45.5,0,0,-0.00849351 -133149,7407:457:4,-77.5,45.5,0,0,-0.00879004 -133150,7407:457:3,-77,45.5,0,0,-0.00844628 -133151,7407:456:3,-76,45.5,0,0,-0.0088628 -133152,7407:455:4,-75.5,45.5,0,0,-0.00855809 -133153,7407:455:3,-75,45.5,0,0,-0.00857143 -133154,7407:354:4,-74.5,45.5,0,0,-0.00886088 -133155,7407:354:3,-74,45.5,0,0,-0.00875877 -133156,7405:459:3,-59,45.5,0,0,-0.00609787 -133157,7405:458:4,-58.5,45.5,0,0,-0.00631585 -133158,7405:458:3,-58,45.5,0,0,-0.00643494 -133159,7405:457:4,-57.5,45.5,0,0,-0.00640497 -133160,7405:457:3,-57,45.5,0,0,-0.00725629 -133161,7405:456:4,-56.5,45.5,0,0,-0.0115821 -133162,7405:456:3,-56,45.5,0,0,-0.0248095 -133163,7405:455:4,-55.5,45.5,0,0,-0.0276682 -133164,7405:455:3,-55,45.5,0,0,-0.0268942 -133165,7405:354:4,-54.5,45.5,0,0,-0.0232235 -133166,7405:354:3,-54,45.5,0,0,-0.0211125 -133167,7405:353:4,-53.5,45.5,0,0,-0.0204839 -133168,7405:353:3,-53,45.5,0,0,-0.0193924 -133169,7405:352:4,-52.5,45.5,0,0,-0.0187484 -133170,7405:352:3,-52,45.5,0,0,-0.0189392 -133171,7405:351:4,-51.5,45.5,0,0,-0.0192315 -133172,7405:351:3,-51,45.5,0,0,-0.0194361 -133173,7405:350:4,-50.5,45.5,0,0,-0.019794 -133174,7405:350:3,-50,45.5,0,0,-0.0201904 -133175,7404:459:4,-49.5,45.5,0,0,-0.0204608 -133176,7404:459:3,-49,45.5,0,0,-0.0206183 -133177,7404:458:4,-48.5,45.5,0,0,-0.0205626 -133178,7404:458:3,-48,45.5,0,0,-0.020145 -133179,7404:457:4,-47.5,45.5,0,0,-0.0201178 -133180,7404:457:3,-47,45.5,0,0,-0.0241502 -133181,7404:456:4,-46.5,45.5,0,0,-0.0266151 -133182,7404:456:3,-46,45.5,0,0,-0.0270965 -133183,7404:455:4,-45.5,45.5,0,0,-0.0289282 -133184,7404:455:3,-45,45.5,0,0,-0.0331649 -133185,7404:354:4,-44.5,45.5,0,0,-0.0344307 -133186,7404:354:3,-44,45.5,0,0,-0.0291725 -133187,7404:353:4,-43.5,45.5,0,0,-0.0246806 -133188,7404:353:3,-43,45.5,0,0,-0.0216235 -133189,7404:352:4,-42.5,45.5,0,0,-0.0207114 -133190,7404:351:4,-41.5,45.5,0,0,-0.0219977 -133191,7404:351:3,-41,45.5,0,0,-0.0238839 -133192,7404:350:4,-40.5,45.5,0,0,-0.0299389 -133193,7404:350:3,-40,45.5,0,0,-0.0393049 -133194,7403:459:4,-39.5,45.5,0,0,-0.0339075 -133195,7403:459:3,-39,45.5,0,0,-0.0281436 -133196,7403:458:4,-38.5,45.5,0,0,-0.0243421 -133197,7403:458:3,-38,45.5,0,0,-0.0230666 -133198,7403:457:4,-37.5,45.5,0,0,-0.0233974 -133199,7403:457:3,-37,45.5,0,0,-0.0232813 -133200,7403:456:4,-36.5,45.5,0,0,-0.0230666 -133201,7403:456:3,-36,45.5,0,0,-0.02303 -133202,7403:455:4,-35.5,45.5,0,0,-0.0230457 -133203,7403:455:3,-35,45.5,0,0,-0.0231501 -133204,7403:354:4,-34.5,45.5,0,0,-0.0234185 -133205,7403:354:3,-34,45.5,0,0,-0.0240793 -133206,7403:353:4,-33.5,45.5,0,0,-0.0246639 -133207,7403:353:3,-33,45.5,0,0,-0.0254642 -133208,7403:352:4,-32.5,45.5,0,0,-0.0290666 -133209,7403:352:3,-32,45.5,0,0,-0.0314412 -133210,7403:351:4,-31.5,45.5,0,0,-0.0347468 -133211,7403:351:3,-31,45.5,0,0,-0.0433323 -133212,7403:350:4,-30.5,45.5,0,0,-0.0508549 -133213,7403:350:3,-30,45.5,0,0,-0.0554786 -133214,7402:459:4,-29.5,45.5,0,0,-0.0597161 -133215,7402:459:3,-29,45.5,0,0,-0.0649351 -133216,7402:458:4,-28.5,45.5,0,0,-0.0661543 -133217,7402:458:3,-28,45.5,0,0,-0.0620563 -133218,7402:457:4,-27.5,45.5,0,0,-0.0558419 -133219,7402:457:3,-27,45.5,0,0,-0.0503028 -133220,7402:456:4,-26.5,45.5,0,0,-0.0459699 -133221,7402:456:3,-26,45.5,0,0,-0.0456945 -133222,7402:455:4,-25.5,45.5,0,0,-0.0464399 -133223,7402:455:3,-25,45.5,0,0,-0.0458743 -133224,7402:354:4,-24.5,45.5,0,0,-0.0449306 -133225,7402:354:3,-24,45.5,0,0,-0.0443636 -133226,7402:353:4,-23.5,45.5,0,0,-0.0434324 -133227,7402:353:3,-23,45.5,0,0,-0.0443127 -133228,7402:352:4,-22.5,45.5,0,0,-0.0471104 -133229,7402:352:3,-22,45.5,0,0,-0.0472306 -133230,7402:351:4,-21.5,45.5,0,0,-0.0475925 -133231,7402:351:3,-21,45.5,0,0,-0.0566293 -133232,7402:350:4,-20.5,45.5,0,0,-0.0586221 -133233,7402:350:3,-20,45.5,0,0,-0.0568678 -133234,7401:459:4,-19.5,45.5,0,0,-0.060917 -133235,7401:459:3,-19,45.5,0,0,-0.0672863 -133236,7401:458:4,-18.5,45.5,0,0,-0.0708251 -133237,7401:458:3,-18,45.5,0,0,-0.071821 -133238,7401:457:4,-17.5,45.5,0,0,-0.0694812 -133239,7401:457:3,-17,45.5,0,0,-0.0755253 -133240,7401:456:4,-16.5,45.5,0,0,-0.091044 -133241,7401:456:3,-16,45.5,0,0,-0.0939012 -133242,7401:455:4,-15.5,45.5,0,0,-0.0853426 -133243,7401:455:3,-15,45.5,0,0,-0.0817237 -133244,7401:354:4,-14.5,45.5,0,0,-0.0810626 -133245,7401:354:3,-14,45.5,0,0,-0.0808885 -133246,7401:353:4,-13.5,45.5,0,0,-0.0820564 -133247,7401:353:3,-13,45.5,0,0,-0.0879426 -133248,7401:352:4,-12.5,45.5,0,0,-0.0932677 -133249,7401:352:3,-12,45.5,0,0,-0.089954 -133250,7401:351:4,-11.5,45.5,0,0,-0.0910661 -133251,7401:351:3,-11,45.5,0,0,-0.0927516 -133252,7401:350:4,-10.5,45.5,0,0,-0.0912639 -133253,7401:350:3,-10,45.5,0,0,-0.0896301 -133254,7400:459:4,-9.5,45.5,0,0,-0.0936067 -133255,7400:459:3,-9,45.5,0,0,-0.092282 -133256,7400:458:4,-8.5,45.5,0,0,-0.0903012 -133257,7400:458:3,-8,45.5,0,0,-0.0873737 -133258,7400:457:4,-7.5,45.5,0,0,-0.0868087 -133259,7400:457:3,-7,45.5,0,0,-0.0876471 -133260,7400:456:4,-6.5,45.5,0,0,-0.0824694 -133261,7400:456:3,-6,45.5,0,0,-0.077269 -133262,7400:455:4,-5.5,45.5,0,0,-0.079605 -133263,7400:455:3,-5,45.5,0,0,-0.0725736 -133264,7400:354:4,-4.5,45.5,0,0,-0.0676841 -133265,7400:354:3,-4,45.5,0,0,-0.0647062 -133266,7400:353:4,-3.5,45.5,0,0,-0.0635158 -133267,7400:353:3,-3,45.5,0,0,-0.0637101 -133268,7400:352:4,-2.5,45.5,0,0,-0.0652263 -133269,7400:352:3,-2,45.5,0,0,-0.0649808 -133270,7400:351:4,-1.5,45.5,0,0,-0.0651341 -133271,7400:351:3,-1,45.5,0,0,-0.0656418 -133272,7400:350:4,-0.5,45.5,0,0,-0.0653952 -133273,1400:350:4,0,45.5,0,0,-0.0673498 -133274,1400:350:4,0.5,45.5,0,0,-0.0657192 -133275,1400:351:3,1,45.5,0,0,-0.0647368 -133276,1400:351:4,1.5,45.5,0,0,-0.0665292 -133277,1400:354:3,4,45.5,0,0,-0.054479 -133278,1400:354:4,4.5,45.5,0,0,-0.0544663 -133279,1400:455:3,5,45.5,0,0,-0.0495044 -133280,1400:455:4,5.5,45.5,0,0,-0.048877 -133281,1400:456:3,6,45.5,0,0,-0.0471323 -133282,1400:456:4,6.5,45.5,0,0,-0.0427866 -133283,1400:457:3,7,45.5,0,0,-0.0350661 -133284,1401:352:4,12.5,45.5,0,0,-0.0461827 -133285,1401:353:3,13,45.5,0,0,-0.0436533 -133286,1401:353:4,13.5,45.5,0,0,-0.0386875 -133287,1401:354:3,14,45.5,0,0,-0.0448787 -133288,1401:354:4,14.5,45.5,0,0,-0.046515 -133289,1401:455:3,15,45.5,0,0,-0.0498963 -133290,1401:455:4,15.5,45.5,0,0,-0.050584 -133291,1401:456:3,16,45.5,0,0,-0.0447134 -133292,1414:456:3,146,45.5,0,0,-0.00709659 -133293,1414:456:4,146.5,45.5,0,0,-0.00953314 -133294,1414:457:3,147,45.5,0,0,-0.0101319 -133295,1414:457:4,147.5,45.5,0,0,-0.00990388 -133296,1414:458:3,148,45.5,0,0,-0.0100016 -133297,1414:458:4,148.5,45.5,0,0,-0.0100038 -133298,1414:459:3,149,45.5,0,0,-0.00980491 -133299,1414:459:4,149.5,45.5,0,0,-0.00899014 -133300,1415:350:3,150,45.5,0,0,-0.00892427 -133301,1415:350:4,150.5,45.5,0,0,-0.00926279 -133302,1415:351:4,151.5,45.5,0,0,-0.00814326 -133303,1415:352:4,152.5,45.5,0,0,-0.00685148 -133304,1415:353:3,153,45.5,0,0,-0.00901225 -133305,1415:353:4,153.5,45.5,0,0,-0.00834899 -133306,1415:457:3,157,45.5,0,0,-0.00604257 -133307,1415:457:4,157.5,45.5,0,0,-0.00658108 -133308,1415:458:3,158,45.5,0,0,-0.00744774 -133309,1415:458:4,158.5,45.5,0,0,-0.00752938 -133310,1415:459:3,159,45.5,0,0,-0.00769377 -133311,1415:459:4,159.5,45.5,0,0,-0.00726596 -133312,1416:350:3,160,45.5,0,0,-0.00705877 -133313,1416:350:4,160.5,45.5,0,0,-0.00701181 -133314,1416:351:3,161,45.5,0,0,-0.00716005 -133315,1416:351:4,161.5,45.5,0,0,-0.00668286 -133316,1416:352:3,162,45.5,0,0,-0.00642495 -133317,1416:352:4,162.5,45.5,0,0,-0.00639928 -133318,1416:353:3,163,45.5,0,0,-0.0066237 -133319,1416:353:4,163.5,45.5,0,0,-0.00749595 -133320,1416:458:4,168.5,45.5,0,0,-0.00820885 -133321,1416:459:3,169,45.5,0,0,-0.00847078 -133322,1416:459:4,169.5,45.5,0,0,-0.00907272 -133323,1417:350:3,170,45.5,0,0,-0.00857335 -133324,1417:351:4,171.5,45.5,0,0,-0.00870229 -133325,1417:352:3,172,45.5,0,0,-0.0107542 -133326,1417:352:4,172.5,45.5,0,0,-0.0119745 -133327,1417:353:3,173,45.5,0,0,-0.0120227 -133328,1417:353:4,173.5,45.5,0,0,-0.0121307 -133329,1417:354:3,174,45.5,0,0,-0.0123635 -133330,1417:354:4,174.5,45.5,0,0,-0.0126971 -133331,1417:455:3,175,45.5,0,0,-0.0130865 -133332,1417:455:4,175.5,45.5,0,0,-0.0135214 -133333,1417:456:3,176,45.5,0,0,-0.0137936 -133334,1417:456:4,176.5,45.5,0,0,-0.0136645 -133335,1417:457:3,177,45.5,0,0,-0.0138742 -133336,1417:457:4,177.5,45.5,0,0,-0.0146047 -133337,1417:458:3,178,45.5,0,0,-0.0153571 -133338,1417:458:4,178.5,45.5,0,0,-0.015983 -133339,1417:459:3,179,45.5,0,0,-0.0164083 -133340,1417:459:4,179.5,45.5,0,0,-0.0165639 -133341,1418:350:3,180,45.5,0,0,-0.0163201 -133342,7418:360:1,-180,46,0,0,-0.0151415 -133343,7417:469:2,-179.5,46,0,0,-0.0149559 -133344,7417:469:1,-179,46,0,0,-0.014572 -133345,7417:468:2,-178.5,46,0,0,-0.0135153 -133346,7417:468:1,-178,46,0,0,-0.0122206 -133347,7417:467:2,-177.5,46,0,0,-0.0111206 -133348,7417:467:1,-177,46,0,0,-0.0104255 -133349,7417:466:2,-176.5,46,0,0,-0.0103652 -133350,7417:466:1,-176,46,0,0,-0.0106395 -133351,7417:465:2,-175.5,46,0,0,-0.0106087 -133352,7417:465:1,-175,46,0,0,-0.0106395 -133353,7417:364:2,-174.5,46,0,0,-0.0100239 -133354,7417:364:1,-174,46,0,0,-0.0108144 -133355,7417:363:2,-173.5,46,0,0,-0.0110291 -133356,7417:363:1,-173,46,0,0,-0.0108386 -133357,7417:362:2,-172.5,46,0,0,-0.0102273 -133358,7417:362:1,-172,46,0,0,-0.00961218 -133359,7417:361:2,-171.5,46,0,0,-0.00896016 -133360,7417:361:1,-171,46,0,0,-0.00786872 -133361,7417:360:2,-170.5,46,0,0,-0.00700558 -133362,7417:360:1,-170,46,0,0,-0.00645642 -133363,7416:469:2,-169.5,46,0,0,-0.00606137 -133364,7416:467:2,-167.5,46,0,0,-0.00611552 -133365,7416:467:1,-167,46,0,0,-0.00620314 -133366,7416:466:2,-166.5,46,0,0,-0.00635812 -133367,7416:466:1,-166,46,0,0,-0.00639785 -133368,7416:465:2,-165.5,46,0,0,-0.00632147 -133369,7416:465:1,-165,46,0,0,-0.00635389 -133370,7415:466:2,-156.5,46,0,0,-0.0273374 -133371,7415:466:1,-156,46,0,0,-0.0308522 -133372,7415:465:2,-155.5,46,0,0,-0.0285688 -133373,7415:465:1,-155,46,0,0,-0.0338457 -133374,7415:364:2,-154.5,46,0,0,-0.0329911 -133375,7415:364:1,-154,46,0,0,-0.0346437 -133376,7415:363:2,-153.5,46,0,0,-0.0365576 -133377,7415:363:1,-153,46,0,0,-0.0375079 -133378,7415:362:2,-152.5,46,0,0,-0.0368686 -133379,7415:362:1,-152,46,0,0,-0.0371741 -133380,7415:361:2,-151.5,46,0,0,-0.0365911 -133381,7415:361:1,-151,46,0,0,-0.0358366 -133382,7415:360:2,-150.5,46,0,0,-0.0354533 -133383,7415:360:1,-150,46,0,0,-0.0352108 -133384,7414:469:2,-149.5,46,0,0,-0.0348663 -133385,7414:469:1,-149,46,0,0,-0.0345173 -133386,7414:468:2,-148.5,46,0,0,-0.0339307 -133387,7414:468:1,-148,46,0,0,-0.0329234 -133388,7414:467:2,-147.5,46,0,0,-0.0323058 -133389,7414:467:1,-147,46,0,0,-0.0321514 -133390,7414:466:2,-146.5,46,0,0,-0.0320563 -133391,7414:466:1,-146,46,0,0,-0.0318234 -133392,7414:465:2,-145.5,46,0,0,-0.0320197 -133393,7414:465:1,-145,46,0,0,-0.0340084 -133394,7414:364:2,-144.5,46,0,0,-0.0360258 -133395,7414:364:1,-144,46,0,0,-0.0376801 -133396,7414:363:2,-143.5,46,0,0,-0.0384132 -133397,7414:363:1,-143,46,0,0,-0.039188 -133398,7414:362:2,-142.5,46,0,0,-0.0403203 -133399,7414:362:1,-142,46,0,0,-0.0415823 -133400,7414:361:2,-141.5,46,0,0,-0.0417259 -133401,7414:361:1,-141,46,0,0,-0.0407303 -133402,7414:360:2,-140.5,46,0,0,-0.0401631 -133403,7414:360:1,-140,46,0,0,-0.0410877 -133404,7413:469:2,-139.5,46,0,0,-0.0429545 -133405,7413:469:1,-139,46,0,0,-0.0454523 -133406,7413:468:2,-138.5,46,0,0,-0.0472633 -133407,7413:468:1,-138,46,0,0,-0.0439969 -133408,7413:467:2,-137.5,46,0,0,-0.0418318 -133409,7413:467:1,-137,46,0,0,-0.0402183 -133410,7413:466:2,-136.5,46,0,0,-0.0420732 -133411,7408:363:1,-83,46,0,0,-0.00663549 -133412,7408:362:2,-82.5,46,0,0,-0.0070698 -133413,7408:362:1,-82,46,0,0,-0.00742783 -133414,7408:361:2,-81.5,46,0,0,-0.0076852 -133415,7408:361:1,-81,46,0,0,-0.0077643 -133416,7408:360:2,-80.5,46,0,0,-0.00792324 -133417,7408:360:1,-80,46,0,0,-0.00822902 -133418,7407:469:2,-79.5,46,0,0,-0.00833232 -133419,7407:469:1,-79,46,0,0,-0.00846324 -133420,7407:468:2,-78.5,46,0,0,-0.00860203 -133421,7407:468:1,-78,46,0,0,-0.00839002 -133422,7407:467:2,-77.5,46,0,0,-0.00864819 -133423,7407:467:1,-77,46,0,0,-0.00853334 -133424,7407:465:2,-75.5,46,0,0,-0.00798877 -133425,7407:465:1,-75,46,0,0,-0.00696673 -133426,7407:364:2,-74.5,46,0,0,-0.00752938 -133427,7407:364:1,-74,46,0,0,-0.0086559 -133428,7405:469:1,-59,46,0,0,-0.00608432 -133429,7405:468:2,-58.5,46,0,0,-0.00633977 -133430,7405:468:1,-58,46,0,0,-0.00633555 -133431,7405:467:2,-57.5,46,0,0,-0.0064192 -133432,7405:467:1,-57,46,0,0,-0.00685148 -133433,7405:466:2,-56.5,46,0,0,-0.012207 -133434,7405:466:1,-56,46,0,0,-0.0270841 -133435,7405:465:2,-55.5,46,0,0,-0.0280989 -133436,7405:465:1,-55,46,0,0,-0.0262732 -133437,7405:364:2,-54.5,46,0,0,-0.0236581 -133438,7405:364:1,-54,46,0,0,-0.0206089 -133439,7405:363:2,-53.5,46,0,0,-0.0203091 -133440,7405:363:1,-53,46,0,0,-0.0196518 -133441,7405:362:2,-52.5,46,0,0,-0.0188372 -133442,7405:362:1,-52,46,0,0,-0.0187062 -133443,7405:361:2,-51.5,46,0,0,-0.0188838 -133444,7405:361:1,-51,46,0,0,-0.0192921 -133445,7405:360:2,-50.5,46,0,0,-0.0194317 -133446,7405:360:1,-50,46,0,0,-0.0192098 -133447,7404:469:2,-49.5,46,0,0,-0.0193313 -133448,7404:469:1,-49,46,0,0,-0.0194536 -133449,7404:468:2,-48.5,46,0,0,-0.0195414 -133450,7404:468:1,-48,46,0,0,-0.0214389 -133451,7404:467:2,-47.5,46,0,0,-0.0227455 -133452,7404:467:1,-47,46,0,0,-0.0276682 -133453,7404:466:2,-46.5,46,0,0,-0.0291791 -133454,7404:466:1,-46,46,0,0,-0.03255 -133455,7404:465:2,-45.5,46,0,0,-0.0338766 -133456,7404:465:1,-45,46,0,0,-0.0326392 -133457,7404:364:2,-44.5,46,0,0,-0.0299117 -133458,7404:364:1,-44,46,0,0,-0.0257952 -133459,7404:363:2,-43.5,46,0,0,-0.0210743 -133460,7404:361:1,-41,46,0,0,-0.023642 -133461,7404:360:2,-40.5,46,0,0,-0.0282076 -133462,7404:360:1,-40,46,0,0,-0.0361002 -133463,7403:469:2,-39.5,46,0,0,-0.0387941 -133464,7403:469:1,-39,46,0,0,-0.0319541 -133465,7403:468:2,-38.5,46,0,0,-0.0278067 -133466,7403:468:1,-38,46,0,0,-0.0236956 -133467,7403:467:2,-37.5,46,0,0,-0.0226226 -133468,7403:467:1,-37,46,0,0,-0.0225766 -133469,7403:466:2,-36.5,46,0,0,-0.022546 -133470,7403:466:1,-36,46,0,0,-0.0225715 -133471,7403:465:2,-35.5,46,0,0,-0.0228125 -133472,7403:465:1,-35,46,0,0,-0.0232235 -133473,7403:364:2,-34.5,46,0,0,-0.0236956 -133474,7403:364:1,-34,46,0,0,-0.0242872 -133475,7403:363:2,-33.5,46,0,0,-0.0253261 -133476,7403:363:1,-33,46,0,0,-0.0275116 -133477,7403:362:2,-32.5,46,0,0,-0.0302264 -133478,7403:362:1,-32,46,0,0,-0.0332708 -133479,7403:361:2,-31.5,46,0,0,-0.03596 -133480,7403:361:1,-31,46,0,0,-0.0381848 -133481,7403:360:2,-30.5,46,0,0,-0.0440477 -133482,7403:360:1,-30,46,0,0,-0.0518207 -133483,7402:469:2,-29.5,46,0,0,-0.0569875 -133484,7402:469:1,-29,46,0,0,-0.0627298 -133485,7402:468:2,-28.5,46,0,0,-0.0674769 -133486,7402:468:1,-28,46,0,0,-0.0679399 -133487,7402:467:2,-27.5,46,0,0,-0.0678119 -133488,7402:467:1,-27,46,0,0,-0.063995 -133489,7402:466:2,-26.5,46,0,0,-0.0586359 -133490,7402:466:1,-26,46,0,0,-0.0571608 -133491,7402:465:2,-25.5,46,0,0,-0.0584579 -133492,7402:465:1,-25,46,0,0,-0.0574955 -133493,7402:364:2,-24.5,46,0,0,-0.0547591 -133494,7402:364:1,-24,46,0,0,-0.0525486 -133495,7402:363:2,-23.5,46,0,0,-0.0516523 -133496,7402:363:1,-23,46,0,0,-0.0511984 -133497,7402:362:2,-22.5,46,0,0,-0.0520015 -133498,7402:362:1,-22,46,0,0,-0.0554916 -133499,7402:361:2,-21.5,46,0,0,-0.062671 -133500,7402:361:1,-21,46,0,0,-0.0654107 -133501,7402:360:2,-20.5,46,0,0,-0.0652263 -133502,7402:360:1,-20,46,0,0,-0.0654568 -133503,7401:469:2,-19.5,46,0,0,-0.0674133 -133504,7401:469:1,-19,46,0,0,-0.068844 -133505,7401:468:2,-18.5,46,0,0,-0.0699594 -133506,7401:468:1,-18,46,0,0,-0.0746333 -133507,7401:467:2,-17.5,46,0,0,-0.0713127 -133508,7401:467:1,-17,46,0,0,-0.072453 -133509,7401:466:2,-16.5,46,0,0,-0.0860414 -133510,7401:466:1,-16,46,0,0,-0.0933806 -133511,7401:465:2,-15.5,46,0,0,-0.0875417 -133512,7401:465:1,-15,46,0,0,-0.082944 -133513,7401:364:2,-14.5,46,0,0,-0.081626 -133514,7401:364:1,-14,46,0,0,-0.0812371 -133515,7401:363:2,-13.5,46,0,0,-0.0794342 -133516,7401:363:1,-13,46,0,0,-0.0799861 -133517,7401:362:2,-12.5,46,0,0,-0.083883 -133518,7401:362:1,-12,46,0,0,-0.0867051 -133519,7401:361:2,-11.5,46,0,0,-0.0837219 -133520,7401:361:1,-11,46,0,0,-0.0852815 -133521,7401:360:2,-10.5,46,0,0,-0.0867255 -133522,7401:360:1,-10,46,0,0,-0.081431 -133523,7400:469:2,-9.5,46,0,0,-0.081198 -133524,7400:469:1,-9,46,0,0,-0.0815873 -133525,7400:468:2,-8.5,46,0,0,-0.0844675 -133526,7400:468:1,-8,46,0,0,-0.0885363 -133527,7400:467:2,-7.5,46,0,0,-0.085959 -133528,7400:467:1,-7,46,0,0,-0.0859174 -133529,7400:466:2,-6.5,46,0,0,-0.0837023 -133530,7400:466:1,-6,46,0,0,-0.082964 -133531,7400:465:2,-5.5,46,0,0,-0.0789249 -133532,7400:465:1,-5,46,0,0,-0.0721962 -133533,7400:364:2,-4.5,46,0,0,-0.0686172 -133534,7400:364:1,-4,46,0,0,-0.0665608 -133535,7400:363:2,-3.5,46,0,0,-0.0653642 -133536,7400:363:1,-3,46,0,0,-0.0658123 -133537,7400:362:2,-2.5,46,0,0,-0.0663415 -133538,7400:362:1,-2,46,0,0,-0.0662633 -133539,7400:361:2,-1.5,46,0,0,-0.0644027 -133540,7400:361:1,-1,46,0,0,-0.0641761 -133541,7400:360:2,-0.5,46,0,0,-0.06395 -133542,1400:360:2,0,46,0,0,-0.0672543 -133543,1400:360:2,0.5,46,0,0,-0.066404 -133544,1400:361:1,1,46,0,0,-0.0664197 -133545,1400:364:2,4.5,46,0,0,-0.0525728 -133546,1400:465:1,5,46,0,0,-0.0501282 -133547,1400:465:2,5.5,46,0,0,-0.0473398 -133548,1400:466:1,6,46,0,0,-0.0484264 -133549,1400:466:2,6.5,46,0,0,-0.037706 -133550,1401:362:1,12,46,0,0,-0.0363904 -133551,1401:362:2,12.5,46,0,0,-0.0449306 -133552,1401:363:1,13,46,0,0,-0.0423063 -133553,1401:363:2,13.5,46,0,0,-0.037568 -133554,1401:364:1,14,46,0,0,-0.0442921 -133555,1401:364:2,14.5,46,0,0,-0.0455996 -133556,1401:465:1,15,46,0,0,-0.0482136 -133557,1401:465:2,15.5,46,0,0,-0.0483703 -133558,1401:466:1,16,46,0,0,-0.0357466 -133559,1414:466:2,146.5,46,0,0,-0.00603986 -133560,1414:467:1,147,46,0,0,-0.00675313 -133561,1414:467:2,147.5,46,0,0,-0.0067441 -133562,1414:468:1,148,46,0,0,-0.0069281 -133563,1415:468:1,158,46,0,0,-0.00631307 -133564,1415:468:2,158.5,46,0,0,-0.00662073 -133565,1415:469:1,159,46,0,0,-0.00714888 -133566,1415:469:2,159.5,46,0,0,-0.00746262 -133567,1416:360:1,160,46,0,0,-0.00710605 -133568,1416:360:2,160.5,46,0,0,-0.00675313 -133569,1416:361:1,161,46,0,0,-0.00646221 -133570,1416:361:2,161.5,46,0,0,-0.00623356 -133571,1416:362:1,162,46,0,0,-0.00615097 -133572,1416:362:2,162.5,46,0,0,-0.0061455 -133573,1416:363:1,163,46,0,0,-0.00613184 -133574,1416:363:2,163.5,46,0,0,-0.00621144 -133575,1416:364:1,164,46,0,0,-0.006253 -133576,1416:364:2,164.5,46,0,0,-0.00606273 -133577,1417:362:2,172.5,46,0,0,-0.0067501 -133578,1417:363:1,173,46,0,0,-0.00903841 -133579,1417:363:2,173.5,46,0,0,-0.0111904 -133580,1417:364:1,174,46,0,0,-0.0116003 -133581,1417:364:2,174.5,46,0,0,-0.0120685 -133582,1417:465:1,175,46,0,0,-0.0124524 -133583,1417:465:2,175.5,46,0,0,-0.012737 -133584,1417:466:1,176,46,0,0,-0.012886 -133585,1417:466:2,176.5,46,0,0,-0.0131365 -133586,1417:467:1,177,46,0,0,-0.0137381 -133587,1417:467:2,177.5,46,0,0,-0.0146507 -133588,1417:468:1,178,46,0,0,-0.0152883 -133589,1417:468:2,178.5,46,0,0,-0.0152164 -133590,1417:469:1,179,46,0,0,-0.0148424 -133591,1417:469:2,179.5,46,0,0,-0.0147561 -133592,1418:360:1,180,46,0,0,-0.0151415 -133593,7418:360:3,-180,46.5,0,0,-0.0139459 -133594,7417:469:4,-179.5,46.5,0,0,-0.0142938 -133595,7417:469:3,-179,46.5,0,0,-0.0137658 -133596,7417:468:4,-178.5,46.5,0,0,-0.0125981 -133597,7417:468:3,-178,46.5,0,0,-0.0113591 -133598,7417:467:4,-177.5,46.5,0,0,-0.0102868 -133599,7417:467:3,-177,46.5,0,0,-0.00982463 -133600,7417:466:4,-176.5,46.5,0,0,-0.00962502 -133601,7417:466:3,-176,46.5,0,0,-0.00956942 -133602,7417:465:4,-175.5,46.5,0,0,-0.00940015 -133603,7417:465:3,-175,46.5,0,0,-0.00943798 -133604,7417:364:4,-174.5,46.5,0,0,-0.00927105 -133605,7417:364:3,-174,46.5,0,0,-0.00919904 -133606,7417:363:4,-173.5,46.5,0,0,-0.00982242 -133607,7417:363:3,-173,46.5,0,0,-0.00936459 -133608,7417:362:4,-172.5,46.5,0,0,-0.00882539 -133609,7417:362:3,-172,46.5,0,0,-0.00845007 -133610,7417:361:4,-171.5,46.5,0,0,-0.00772635 -133611,7417:361:3,-171,46.5,0,0,-0.00681345 -133612,7417:360:4,-170.5,46.5,0,0,-0.00642207 -133613,7417:360:3,-170,46.5,0,0,-0.006253 -133614,7416:469:4,-169.5,46.5,0,0,-0.0060884 -133615,7416:469:3,-169,46.5,0,0,-0.00609245 -133616,7416:468:4,-168.5,46.5,0,0,-0.00609787 -133617,7416:468:3,-168,46.5,0,0,-0.00611282 -133618,7416:467:4,-167.5,46.5,0,0,-0.00622109 -133619,7416:465:4,-165.5,46.5,0,0,-0.00692194 -133620,7415:467:4,-157.5,46.5,0,0,-0.00800481 -133621,7415:467:3,-157,46.5,0,0,-0.0121552 -133622,7415:466:4,-156.5,46.5,0,0,-0.0242542 -133623,7415:466:3,-156,46.5,0,0,-0.032931 -133624,7415:465:4,-155.5,46.5,0,0,-0.0320052 -133625,7415:465:3,-155,46.5,0,0,-0.036424 -133626,7415:364:4,-154.5,46.5,0,0,-0.0365492 -133627,7415:364:3,-154,46.5,0,0,-0.0377839 -133628,7415:363:4,-153.5,46.5,0,0,-0.038528 -133629,7415:363:3,-153,46.5,0,0,-0.0385366 -133630,7415:362:4,-152.5,46.5,0,0,-0.0374049 -133631,7415:362:3,-152,46.5,0,0,-0.0380447 -133632,7415:361:4,-151.5,46.5,0,0,-0.0365241 -133633,7415:361:3,-151,46.5,0,0,-0.0354046 -133634,7415:360:4,-150.5,46.5,0,0,-0.0341564 -133635,7415:360:3,-150,46.5,0,0,-0.0331118 -133636,7414:469:4,-149.5,46.5,0,0,-0.032654 -133637,7414:469:3,-149,46.5,0,0,-0.0326615 -133638,7414:468:4,-148.5,46.5,0,0,-0.0329686 -133639,7414:468:3,-148,46.5,0,0,-0.0334461 -133640,7414:467:4,-147.5,46.5,0,0,-0.0333012 -133641,7414:467:3,-147,46.5,0,0,-0.0327063 -133642,7414:466:4,-146.5,46.5,0,0,-0.0324017 -133643,7414:466:3,-146,46.5,0,0,-0.0320271 -133644,7414:465:4,-145.5,46.5,0,0,-0.0316208 -133645,7414:465:3,-145,46.5,0,0,-0.0326317 -133646,7414:364:4,-144.5,46.5,0,0,-0.034914 -133647,7414:364:3,-144,46.5,0,0,-0.0366162 -133648,7414:363:4,-143.5,46.5,0,0,-0.0376975 -133649,7414:363:3,-143,46.5,0,0,-0.038466 -133650,7414:362:4,-142.5,46.5,0,0,-0.0402739 -133651,7414:362:3,-142,46.5,0,0,-0.042141 -133652,7414:361:4,-141.5,46.5,0,0,-0.0428161 -133653,7414:361:3,-141,46.5,0,0,-0.0432726 -133654,7414:360:4,-140.5,46.5,0,0,-0.0436029 -133655,7414:360:3,-140,46.5,0,0,-0.0441492 -133656,7413:469:4,-139.5,46.5,0,0,-0.0451696 -133657,7413:469:3,-139,46.5,0,0,-0.0456626 -133658,7413:468:4,-138.5,46.5,0,0,-0.0387941 -133659,7413:467:4,-137.5,46.5,0,0,-0.0402183 -133660,7413:466:4,-136.5,46.5,0,0,-0.0412962 -133661,7408:363:4,-83.5,46.5,0,0,-0.00659284 -133662,7408:363:3,-83,46.5,0,0,-0.00710923 -133663,7408:362:4,-82.5,46.5,0,0,-0.00767492 -133664,7408:362:3,-82,46.5,0,0,-0.00794265 -133665,7408:361:4,-81.5,46.5,0,0,-0.00807464 -133666,7408:361:3,-81,46.5,0,0,-0.0081306 -133667,7408:360:4,-80.5,46.5,0,0,-0.00821432 -133668,7408:360:3,-80,46.5,0,0,-0.00831003 -133669,7407:469:4,-79.5,46.5,0,0,-0.00834717 -133670,7407:469:3,-79,46.5,0,0,-0.00847078 -133671,7407:468:4,-78.5,46.5,0,0,-0.00851241 -133672,7407:468:3,-78,46.5,0,0,-0.00835461 -133673,7407:467:4,-77.5,46.5,0,0,-0.00845007 -133674,7407:467:3,-77,46.5,0,0,-0.0073293 -133675,7407:466:4,-76.5,46.5,0,0,-0.00754951 -133676,7407:466:3,-76,46.5,0,0,-0.00779374 -133677,7407:465:4,-75.5,46.5,0,0,-0.00701963 -133678,7407:465:3,-75,46.5,0,0,-0.00659427 -133679,7407:364:4,-74.5,46.5,0,0,-0.00736858 -133680,7407:364:3,-74,46.5,0,0,-0.00873533 -133681,7407:363:4,-73.5,46.5,0,0,-0.00850865 -133682,7405:469:3,-59,46.5,0,0,-0.0061237 -133683,7405:468:4,-58.5,46.5,0,0,-0.0062725 -133684,7405:468:3,-58,46.5,0,0,-0.00633276 -133685,7405:467:4,-57.5,46.5,0,0,-0.00637086 -133686,7405:467:3,-57,46.5,0,0,-0.00667397 -133687,7405:466:4,-56.5,46.5,0,0,-0.0117307 -133688,7405:466:3,-56,46.5,0,0,-0.0277123 -133689,7405:465:4,-55.5,46.5,0,0,-0.0285363 -133690,7405:465:3,-55,46.5,0,0,-0.0265608 -133691,7405:364:4,-54.5,46.5,0,0,-0.0243037 -133692,7405:364:3,-54,46.5,0,0,-0.023626 -133693,7405:363:4,-53.5,46.5,0,0,-0.0233974 -133694,7405:363:3,-53,46.5,0,0,-0.0228021 -133695,7405:362:4,-52.5,46.5,0,0,-0.0214921 -133696,7405:362:3,-52,46.5,0,0,-0.019643 -133697,7405:361:4,-51.5,46.5,0,0,-0.0188499 -133698,7405:361:3,-51,46.5,0,0,-0.0187653 -133699,7405:360:4,-50.5,46.5,0,0,-0.0188372 -133700,7405:360:3,-50,46.5,0,0,-0.0193793 -133701,7404:469:4,-49.5,46.5,0,0,-0.0219234 -133702,7404:469:3,-49,46.5,0,0,-0.0214195 -133703,7404:468:4,-48.5,46.5,0,0,-0.0238353 -133704,7404:468:3,-48,46.5,0,0,-0.0261544 -133705,7404:467:4,-47.5,46.5,0,0,-0.0270288 -133706,7404:467:3,-47,46.5,0,0,-0.0318741 -133707,7404:466:4,-46.5,46.5,0,0,-0.032931 -133708,7404:466:3,-46,46.5,0,0,-0.030489 -133709,7404:465:4,-45.5,46.5,0,0,-0.0250239 -133710,7404:465:3,-45,46.5,0,0,-0.0222676 -133711,7404:364:4,-44.5,46.5,0,0,-0.0241774 -133712,7404:364:3,-44,46.5,0,0,-0.0219778 -133713,7404:363:4,-43.5,46.5,0,0,-0.0129235 -133714,7404:360:4,-40.5,46.5,0,0,-0.0236314 -133715,7404:360:3,-40,46.5,0,0,-0.0310566 -133716,7403:469:4,-39.5,46.5,0,0,-0.0381759 -133717,7403:469:3,-39,46.5,0,0,-0.0366833 -133718,7403:468:4,-38.5,46.5,0,0,-0.0323796 -133719,7403:468:3,-38,46.5,0,0,-0.0278067 -133720,7403:467:4,-37.5,46.5,0,0,-0.0240901 -133721,7403:467:3,-37,46.5,0,0,-0.0227919 -133722,7403:466:4,-36.5,46.5,0,0,-0.0223584 -133723,7403:466:3,-36,46.5,0,0,-0.0223735 -133724,7403:465:4,-35.5,46.5,0,0,-0.0226583 -133725,7403:465:3,-35,46.5,0,0,-0.0230247 -133726,7403:364:4,-34.5,46.5,0,0,-0.0233551 -133727,7403:364:3,-34,46.5,0,0,-0.0236688 -133728,7403:363:4,-33.5,46.5,0,0,-0.024052 -133729,7403:363:3,-33,46.5,0,0,-0.0253146 -133730,7403:362:4,-32.5,46.5,0,0,-0.0275179 -133731,7403:362:3,-32,46.5,0,0,-0.0272135 -133732,7403:361:4,-31.5,46.5,0,0,-0.0291858 -133733,7403:361:3,-31,46.5,0,0,-0.0364072 -133734,7403:360:4,-30.5,46.5,0,0,-0.042141 -133735,7403:360:3,-30,46.5,0,0,-0.0464182 -133736,7402:469:4,-29.5,46.5,0,0,-0.0521833 -133737,7402:469:3,-29,46.5,0,0,-0.0579951 -133738,7402:468:4,-28.5,46.5,0,0,-0.0639652 -133739,7402:468:3,-28,46.5,0,0,-0.0670485 -133740,7402:467:4,-27.5,46.5,0,0,-0.0681006 -133741,7402:467:3,-27,46.5,0,0,-0.0688604 -133742,7402:466:4,-26.5,46.5,0,0,-0.0673658 -133743,7402:466:3,-26,46.5,0,0,-0.0643874 -133744,7402:465:4,-25.5,46.5,0,0,-0.0629514 -133745,7402:465:3,-25,46.5,0,0,-0.0623043 -133746,7402:364:4,-24.5,46.5,0,0,-0.0609314 -133747,7402:364:3,-24,46.5,0,0,-0.0577515 -133748,7402:363:4,-23.5,46.5,0,0,-0.0541628 -133749,7402:363:3,-23,46.5,0,0,-0.0536106 -133750,7402:362:4,-22.5,46.5,0,0,-0.0538986 -133751,7402:362:3,-22,46.5,0,0,-0.0551562 -133752,7402:361:4,-21.5,46.5,0,0,-0.058253 -133753,7402:361:3,-21,46.5,0,0,-0.0611747 -133754,7402:360:4,-20.5,46.5,0,0,-0.0622018 -133755,7402:360:3,-20,46.5,0,0,-0.0615633 -133756,7401:469:4,-19.5,46.5,0,0,-0.0622312 -133757,7401:469:3,-19,46.5,0,0,-0.065042 -133758,7401:468:4,-18.5,46.5,0,0,-0.0698933 -133759,7401:468:3,-18,46.5,0,0,-0.0755072 -133760,7401:467:4,-17.5,46.5,0,0,-0.0752209 -133761,7401:467:3,-17,46.5,0,0,-0.0728492 -133762,7401:466:4,-16.5,46.5,0,0,-0.080676 -133763,7401:466:3,-16,46.5,0,0,-0.091176 -133764,7401:465:4,-15.5,46.5,0,0,-0.0905631 -133765,7401:465:3,-15,46.5,0,0,-0.0875 -133766,7401:364:4,-14.5,46.5,0,0,-0.085036 -133767,7401:364:3,-14,46.5,0,0,-0.0823509 -133768,7401:363:4,-13.5,46.5,0,0,-0.0804646 -133769,7401:363:3,-13,46.5,0,0,-0.0780829 -133770,7401:362:4,-12.5,46.5,0,0,-0.0769392 -133771,7401:362:3,-12,46.5,0,0,-0.0711609 -133772,7401:361:4,-11.5,46.5,0,0,-0.0745274 -133773,7401:361:3,-11,46.5,0,0,-0.0799476 -133774,7401:360:4,-10.5,46.5,0,0,-0.0793776 -133775,7401:360:3,-10,46.5,0,0,-0.0654878 -133776,7400:469:4,-9.5,46.5,0,0,-0.0570273 -133777,7400:469:3,-9,46.5,0,0,-0.0676524 -133778,7400:468:4,-8.5,46.5,0,0,-0.0659207 -133779,7400:468:3,-8,46.5,0,0,-0.0671755 -133780,7400:467:4,-7.5,46.5,0,0,-0.0838425 -133781,7400:467:3,-7,46.5,0,0,-0.0862686 -133782,7400:466:4,-6.5,46.5,0,0,-0.086083 -133783,7400:466:3,-6,46.5,0,0,-0.0807342 -133784,7400:465:4,-5.5,46.5,0,0,-0.0722302 -133785,7400:364:4,-4.5,46.5,0,0,-0.06958 -133786,7400:364:3,-4,46.5,0,0,-0.0683906 -133787,7400:363:4,-3.5,46.5,0,0,-0.0670963 -133788,7400:363:3,-3,46.5,0,0,-0.0660607 -133789,7400:362:4,-2.5,46.5,0,0,-0.0655645 -133790,7400:362:3,-2,46.5,0,0,-0.0662166 -133791,7400:361:4,-1.5,46.5,0,0,-0.0659828 -133792,7400:361:3,-1,46.5,0,0,-0.0629658 -133793,7400:360:4,-0.5,46.5,0,0,-0.0653797 -133794,1400:360:4,0,46.5,0,0,-0.0666077 -133795,1400:360:4,0.5,46.5,0,0,-0.0656418 -133796,1400:361:4,1.5,46.5,0,0,-0.0275992 -133797,1400:465:3,5,46.5,0,0,-0.0484713 -133798,1400:465:4,5.5,46.5,0,0,-0.0484038 -133799,1400:466:3,6,46.5,0,0,-0.0458637 -133800,1401:361:4,11.5,46.5,0,0,-0.0327437 -133801,1401:362:3,12,46.5,0,0,-0.0408614 -133802,1401:362:4,12.5,46.5,0,0,-0.0448373 -133803,1401:364:3,14,46.5,0,0,-0.045779 -133804,1401:364:4,14.5,46.5,0,0,-0.0467631 -133805,1401:465:3,15,46.5,0,0,-0.0487752 -133806,1401:465:4,15.5,46.5,0,0,-0.0476366 -133807,1415:469:3,159,46.5,0,0,-0.00614142 -133808,1415:469:4,159.5,46.5,0,0,-0.00681951 -133809,1416:360:3,160,46.5,0,0,-0.00721761 -133810,1416:360:4,160.5,46.5,0,0,-0.00714252 -133811,1416:361:3,161,46.5,0,0,-0.00693582 -133812,1416:361:4,161.5,46.5,0,0,-0.00667098 -133813,1416:362:3,162,46.5,0,0,-0.00632288 -133814,1416:363:4,163.5,46.5,0,0,-0.00621696 -133815,1416:364:3,164,46.5,0,0,-0.00627387 -133816,1416:364:4,164.5,46.5,0,0,-0.0062004 -133817,1416:465:3,165,46.5,0,0,-0.00624325 -133818,1416:465:4,165.5,46.5,0,0,-0.00617153 -133819,1417:363:4,173.5,46.5,0,0,-0.00655919 -133820,1417:364:3,174,46.5,0,0,-0.00875096 -133821,1417:364:4,174.5,46.5,0,0,-0.00981153 -133822,1417:465:3,175,46.5,0,0,-0.0116236 -133823,1417:465:4,175.5,46.5,0,0,-0.0123552 -133824,1417:466:3,176,46.5,0,0,-0.0128803 -133825,1417:466:4,176.5,46.5,0,0,-0.0134579 -133826,1417:467:3,177,46.5,0,0,-0.0139552 -133827,1417:467:4,177.5,46.5,0,0,-0.0142842 -133828,1417:468:3,178,46.5,0,0,-0.0138959 -133829,1417:468:4,178.5,46.5,0,0,-0.0131453 -133830,1417:469:3,179,46.5,0,0,-0.0130223 -133831,1417:469:4,179.5,46.5,0,0,-0.0130954 -133832,1418:360:3,180,46.5,0,0,-0.0139459 -133833,7418:370:1,-180,47,0,0,-0.0130514 -133834,7417:479:2,-179.5,47,0,0,-0.01347 -133835,7417:479:1,-179,47,0,0,-0.0126432 -133836,7417:478:2,-178.5,47,0,0,-0.0116029 -133837,7417:478:1,-178,47,0,0,-0.0105097 -133838,7417:477:2,-177.5,47,0,0,-0.00969182 -133839,7417:477:1,-177,47,0,0,-0.00937504 -133840,7417:476:2,-176.5,47,0,0,-0.00903036 -133841,7417:476:1,-176,47,0,0,-0.00870816 -133842,7417:475:2,-175.5,47,0,0,-0.00852574 -133843,7417:475:1,-175,47,0,0,-0.00843876 -133844,7417:374:2,-174.5,47,0,0,-0.0082971 -133845,7417:374:1,-174,47,0,0,-0.00843503 -133846,7417:373:2,-173.5,47,0,0,-0.00848594 -133847,7417:373:1,-173,47,0,0,-0.00816327 -133848,7417:372:2,-172.5,47,0,0,-0.00789153 -133849,7417:372:1,-172,47,0,0,-0.00760521 -133850,7417:371:2,-171.5,47,0,0,-0.00688356 -133851,7417:371:1,-171,47,0,0,-0.00640923 -133852,7417:370:2,-170.5,47,0,0,-0.00616601 -133853,7417:370:1,-170,47,0,0,-0.00613322 -133854,7416:479:2,-169.5,47,0,0,-0.00611008 -133855,7416:479:1,-169,47,0,0,-0.00615234 -133856,7416:478:2,-168.5,47,0,0,-0.00615919 -133857,7416:478:1,-168,47,0,0,-0.00617702 -133858,7415:477:1,-157,47,0,0,-0.0147561 -133859,7415:476:2,-156.5,47,0,0,-0.021604 -133860,7415:476:1,-156,47,0,0,-0.0233604 -133861,7415:374:2,-154.5,47,0,0,-0.0359763 -133862,7415:374:1,-154,47,0,0,-0.0385455 -133863,7415:373:2,-153.5,47,0,0,-0.0388744 -133864,7415:373:1,-153,47,0,0,-0.0376888 -133865,7415:372:2,-152.5,47,0,0,-0.0376888 -133866,7415:372:1,-152,47,0,0,-0.0388028 -133867,7415:371:2,-151.5,47,0,0,-0.0372337 -133868,7415:371:1,-151,47,0,0,-0.0346676 -133869,7415:370:2,-150.5,47,0,0,-0.0329835 -133870,7415:370:1,-150,47,0,0,-0.0318305 -133871,7414:479:2,-149.5,47,0,0,-0.0312839 -133872,7414:479:1,-149,47,0,0,-0.0309226 -133873,7414:478:2,-148.5,47,0,0,-0.0311204 -133874,7414:478:1,-148,47,0,0,-0.0320344 -133875,7414:477:2,-147.5,47,0,0,-0.0329835 -133876,7414:477:1,-147,47,0,0,-0.0329911 -133877,7414:476:2,-146.5,47,0,0,-0.0324092 -133878,7414:476:1,-146,47,0,0,-0.0318524 -133879,7414:475:2,-145.5,47,0,0,-0.031513 -133880,7414:475:1,-145,47,0,0,-0.0315847 -133881,7414:374:2,-144.5,47,0,0,-0.0332178 -133882,7414:374:1,-144,47,0,0,-0.035219 -133883,7414:373:2,-143.5,47,0,0,-0.0367505 -133884,7414:373:1,-143,47,0,0,-0.0384485 -133885,7414:372:2,-142.5,47,0,0,-0.0422284 -133886,7414:372:1,-142,47,0,0,-0.0434724 -133887,7414:371:2,-141.5,47,0,0,-0.0436631 -133888,7414:371:1,-141,47,0,0,-0.0442513 -133889,7414:370:2,-140.5,47,0,0,-0.0452847 -133890,7414:370:1,-140,47,0,0,-0.0452011 -133891,7413:479:2,-139.5,47,0,0,-0.0437538 -133892,7413:477:2,-137.5,47,0,0,-0.0394315 -133893,7408:374:1,-84,47,0,0,-0.00653732 -133894,7408:373:2,-83.5,47,0,0,-0.00722247 -133895,7408:373:1,-83,47,0,0,-0.00769032 -133896,7408:372:2,-82.5,47,0,0,-0.00791619 -133897,7408:372:1,-82,47,0,0,-0.00804413 -133898,7408:371:2,-81.5,47,0,0,-0.00808903 -133899,7408:371:1,-81,47,0,0,-0.00813602 -133900,7408:370:2,-80.5,47,0,0,-0.00818149 -133901,7408:370:1,-80,47,0,0,-0.00825653 -133902,7407:479:2,-79.5,47,0,0,-0.00831376 -133903,7407:479:1,-79,47,0,0,-0.00832858 -133904,7407:478:2,-78.5,47,0,0,-0.00839002 -133905,7407:478:1,-78,47,0,0,-0.00832303 -133906,7407:477:2,-77.5,47,0,0,-0.0084916 -133907,7407:477:1,-77,47,0,0,-0.00804058 -133908,7407:476:2,-76.5,47,0,0,-0.00819608 -133909,7407:476:1,-76,47,0,0,-0.00819608 -133910,7407:475:2,-75.5,47,0,0,-0.0065446 -133911,7407:475:1,-75,47,0,0,-0.00642351 -133912,7407:374:2,-74.5,47,0,0,-0.00730326 -133913,7407:374:1,-74,47,0,0,-0.00896413 -133914,7407:373:2,-73.5,47,0,0,-0.00884311 -133915,7406:374:2,-64.5,47,0,0,-0.00597576 -133916,7406:374:1,-64,47,0,0,-0.00606137 -133917,7406:373:2,-63.5,47,0,0,-0.00631868 -133918,7406:373:1,-63,47,0,0,-0.00637086 -133919,7405:479:2,-59.5,47,0,0,-0.00608432 -133920,7405:479:1,-59,47,0,0,-0.00614413 -133921,7405:478:2,-58.5,47,0,0,-0.0062725 -133922,7405:478:1,-58,47,0,0,-0.00631307 -133923,7405:477:2,-57.5,47,0,0,-0.00638081 -133924,7405:477:1,-57,47,0,0,-0.00661045 -133925,7405:476:2,-56.5,47,0,0,-0.0144484 -133926,7405:476:1,-56,47,0,0,-0.0282781 -133927,7405:475:2,-55.5,47,0,0,-0.029093 -133928,7405:475:1,-55,47,0,0,-0.0275616 -133929,7405:374:2,-54.5,47,0,0,-0.0244085 -133930,7405:374:1,-54,47,0,0,-0.0223028 -133931,7405:373:2,-53.5,47,0,0,-0.0218295 -133932,7405:373:1,-53,47,0,0,-0.0214195 -133933,7405:372:2,-52.5,47,0,0,-0.0210791 -133934,7405:372:1,-52,47,0,0,-0.0202543 -133935,7405:371:2,-51.5,47,0,0,-0.0193619 -133936,7405:371:1,-51,47,0,0,-0.0188456 -133937,7405:370:2,-50.5,47,0,0,-0.0189734 -133938,7405:370:1,-50,47,0,0,-0.0235993 -133939,7404:479:2,-49.5,47,0,0,-0.0246583 -133940,7404:479:1,-49,47,0,0,-0.0230405 -133941,7404:478:2,-48.5,47,0,0,-0.0269615 -133942,7404:478:1,-48,47,0,0,-0.0293989 -133943,7404:477:2,-47.5,47,0,0,-0.031163 -133944,7404:477:1,-47,47,0,0,-0.0322469 -133945,7404:476:2,-46.5,47,0,0,-0.0299389 -133946,7404:476:1,-46,47,0,0,-0.0256611 -133947,7404:374:1,-44,47,0,0,-0.00973732 -133948,7404:370:2,-40.5,47,0,0,-0.0187653 -133949,7404:370:1,-40,47,0,0,-0.024832 -133950,7403:479:2,-39.5,47,0,0,-0.030055 -133951,7403:479:1,-39,47,0,0,-0.0410877 -133952,7403:478:2,-38.5,47,0,0,-0.0363073 -133953,7403:478:1,-38,47,0,0,-0.0343128 -133954,7403:477:2,-37.5,47,0,0,-0.0300003 -133955,7403:477:1,-37,47,0,0,-0.0261662 -133956,7403:476:2,-36.5,47,0,0,-0.0238462 -133957,7403:476:1,-36,47,0,0,-0.0228435 -133958,7403:475:2,-35.5,47,0,0,-0.0226685 -133959,7403:475:1,-35,47,0,0,-0.0229365 -133960,7403:374:2,-34.5,47,0,0,-0.0233234 -133961,7403:374:1,-34,47,0,0,-0.023642 -133962,7403:373:2,-33.5,47,0,0,-0.0239597 -133963,7403:373:1,-33,47,0,0,-0.0246025 -133964,7403:372:2,-32.5,47,0,0,-0.025842 -133965,7403:372:1,-32,47,0,0,-0.0273497 -133966,7403:371:2,-31.5,47,0,0,-0.0282268 -133967,7403:371:1,-31,47,0,0,-0.0308803 -133968,7403:370:2,-30.5,47,0,0,-0.0365742 -133969,7403:370:1,-30,47,0,0,-0.0425801 -133970,7402:479:2,-29.5,47,0,0,-0.0486285 -133971,7402:479:1,-29,47,0,0,-0.0531881 -133972,7402:478:2,-28.5,47,0,0,-0.0581442 -133973,7402:478:1,-28,47,0,0,-0.0636051 -133974,7402:477:2,-27.5,47,0,0,-0.0666547 -133975,7402:477:1,-27,47,0,0,-0.0697775 -133976,7402:476:2,-26.5,47,0,0,-0.0708583 -133977,7402:476:1,-26,47,0,0,-0.0697609 -133978,7402:475:2,-25.5,47,0,0,-0.0658743 -133979,7402:475:1,-25,47,0,0,-0.0627739 -133980,7402:374:2,-24.5,47,0,0,-0.0605894 -133981,7402:374:1,-24,47,0,0,-0.0588695 -133982,7402:373:2,-23.5,47,0,0,-0.0577919 -133983,7402:373:1,-23,47,0,0,-0.057684 -133984,7402:372:2,-22.5,47,0,0,-0.0577919 -133985,7402:372:1,-22,47,0,0,-0.0574419 -133986,7402:371:2,-21.5,47,0,0,-0.0577919 -133987,7402:371:1,-21,47,0,0,-0.0587046 -133988,7402:370:2,-20.5,47,0,0,-0.0591455 -133989,7402:370:1,-20,47,0,0,-0.0598699 -133990,7401:479:2,-19.5,47,0,0,-0.0626561 -133991,7401:479:1,-19,47,0,0,-0.0631439 -133992,7401:478:2,-18.5,47,0,0,-0.0623776 -133993,7401:478:1,-18,47,0,0,-0.06518 -133994,7401:477:2,-17.5,47,0,0,-0.0765192 -133995,7401:477:1,-17,47,0,0,-0.0771955 -133996,7401:476:2,-16.5,47,0,0,-0.081412 -133997,7401:476:1,-16,47,0,0,-0.0897592 -133998,7401:475:2,-15.5,47,0,0,-0.0899977 -133999,7401:475:1,-15,47,0,0,-0.0891992 -134000,7401:374:2,-14.5,47,0,0,-0.087416 -134001,7401:374:1,-14,47,0,0,-0.0854651 -134002,7401:373:2,-13.5,47,0,0,-0.0851586 -134003,7401:373:1,-13,47,0,0,-0.0843867 -134004,7401:372:2,-12.5,47,0,0,-0.0812371 -134005,7401:372:1,-12,47,0,0,-0.0734909 -134006,7401:371:2,-11.5,47,0,0,-0.0738407 -134007,7401:371:1,-11,47,0,0,-0.0782881 -134008,7401:370:2,-10.5,47,0,0,-0.0710094 -134009,7401:370:1,-10,47,0,0,-0.0529906 -134010,7400:479:2,-9.5,47,0,0,-0.0509967 -134011,7400:479:1,-9,47,0,0,-0.0514728 -134012,7400:478:2,-8.5,47,0,0,-0.0561949 -134013,7400:478:1,-8,47,0,0,-0.0566426 -134014,7400:477:2,-7.5,47,0,0,-0.0581036 -134015,7400:477:1,-7,47,0,0,-0.0752923 -134016,7400:476:2,-6.5,47,0,0,-0.0848731 -134017,7400:476:1,-6,47,0,0,-0.0806954 -134018,7400:475:2,-5.5,47,0,0,-0.0729182 -134019,7400:374:2,-4.5,47,0,0,-0.0709423 -134020,7400:374:1,-4,47,0,0,-0.0709592 -134021,7400:373:2,-3.5,47,0,0,-0.0691209 -134022,7400:373:1,-3,47,0,0,-0.0672543 -134023,7400:372:2,-2.5,47,0,0,-0.0654568 -134024,7400:372:1,-2,47,0,0,-0.0662947 -134025,7400:371:2,-1.5,47,0,0,-0.0654257 -134026,7400:371:1,-1,47,0,0,-0.0619253 -134027,7400:370:2,-0.5,47,0,0,-0.0629067 -134028,1400:370:2,0,47,0,0,-0.0654107 -134029,1400:370:2,0.5,47,0,0,-0.0490131 -134030,1400:475:2,5.5,47,0,0,-0.0409366 -134031,1401:371:2,11.5,47,0,0,-0.0321734 -134032,1401:372:1,12,47,0,0,-0.0441697 -134033,1401:372:2,12.5,47,0,0,-0.0452534 -134034,1401:373:2,13.5,47,0,0,-0.0357629 -134035,1401:374:1,14,47,0,0,-0.0439461 -134036,1401:374:2,14.5,47,0,0,-0.047285 -134037,1401:475:1,15,47,0,0,-0.0496652 -134038,1401:475:2,15.5,47,0,0,-0.0457897 -134039,1415:479:2,159.5,47,0,0,-0.00598375 -134040,1416:370:1,160,47,0,0,-0.00647511 -134041,1416:370:2,160.5,47,0,0,-0.00665172 -134042,1416:371:1,161,47,0,0,-0.00670221 -134043,1416:371:2,161.5,47,0,0,-0.00646795 -134044,1416:372:1,162,47,0,0,-0.00623216 -134045,1416:374:2,164.5,47,0,0,-0.00594661 -134046,1416:475:1,165,47,0,0,-0.00631585 -134047,1417:374:2,174.5,47,0,0,-0.0061264 -134048,1417:475:1,175,47,0,0,-0.00759334 -134049,1417:475:2,175.5,47,0,0,-0.0096401 -134050,1417:476:1,176,47,0,0,-0.0114075 -134051,1417:476:2,176.5,47,0,0,-0.0124998 -134052,1417:477:1,177,47,0,0,-0.0124886 -134053,1417:477:2,177.5,47,0,0,-0.0122644 -134054,1417:478:1,178,47,0,0,-0.0121933 -134055,1417:478:2,178.5,47,0,0,-0.011243 -134056,1417:479:1,179,47,0,0,-0.0116627 -134057,1417:479:2,179.5,47,0,0,-0.0121443 -134058,1418:370:1,180,47,0,0,-0.0130514 -134059,7418:370:3,-180,47.5,0,0,-0.0118678 -134060,7417:479:4,-179.5,47.5,0,0,-0.0121118 -134061,7417:479:3,-179,47.5,0,0,-0.0113287 -134062,7417:478:4,-178.5,47.5,0,0,-0.0104116 -134063,7417:478:3,-178,47.5,0,0,-0.0096401 -134064,7417:477:4,-177.5,47.5,0,0,-0.00924013 -134065,7417:477:3,-177,47.5,0,0,-0.00903841 -134066,7417:476:4,-176.5,47.5,0,0,-0.00876461 -134067,7417:476:3,-176,47.5,0,0,-0.0083453 -134068,7417:475:4,-175.5,47.5,0,0,-0.00804413 -134069,7417:475:3,-175,47.5,0,0,-0.00775565 -134070,7417:374:4,-174.5,47.5,0,0,-0.00764256 -134071,7417:374:3,-174,47.5,0,0,-0.00758153 -134072,7417:373:4,-173.5,47.5,0,0,-0.00743116 -134073,7417:373:3,-173,47.5,0,0,-0.00711082 -134074,7417:372:4,-172.5,47.5,0,0,-0.00689736 -134075,7417:372:3,-172,47.5,0,0,-0.0065301 -134076,7417:371:4,-171.5,47.5,0,0,-0.00631726 -134077,7417:371:3,-171,47.5,0,0,-0.00613596 -134078,7417:370:4,-170.5,47.5,0,0,-0.00604122 -134079,7417:370:3,-170,47.5,0,0,-0.00608973 -134080,7416:479:4,-169.5,47.5,0,0,-0.00614142 -134081,7416:479:3,-169,47.5,0,0,-0.0061949 -134082,7416:478:4,-168.5,47.5,0,0,-0.00620865 -134083,7415:476:4,-156.5,47.5,0,0,-0.0133799 -134084,7415:476:3,-156,47.5,0,0,-0.0169325 -134085,7415:374:3,-154,47.5,0,0,-0.0382198 -134086,7415:373:4,-153.5,47.5,0,0,-0.0397041 -134087,7415:373:3,-153,47.5,0,0,-0.0392419 -134088,7415:372:4,-152.5,47.5,0,0,-0.0393501 -134089,7415:372:3,-152,47.5,0,0,-0.0397225 -134090,7415:371:4,-151.5,47.5,0,0,-0.03908 -134091,7415:371:3,-151,47.5,0,0,-0.037191 -134092,7415:370:4,-150.5,47.5,0,0,-0.03505 -134093,7415:370:3,-150,47.5,0,0,-0.0327884 -134094,7414:479:4,-149.5,47.5,0,0,-0.0318088 -134095,7414:479:3,-149,47.5,0,0,-0.0313554 -134096,7414:478:4,-148.5,47.5,0,0,-0.0313196 -134097,7414:478:3,-148,47.5,0,0,-0.0318741 -134098,7414:477:4,-147.5,47.5,0,0,-0.0323647 -134099,7414:477:3,-147,47.5,0,0,-0.0320271 -134100,7414:476:4,-146.5,47.5,0,0,-0.0312626 -134101,7414:476:3,-146,47.5,0,0,-0.031092 -134102,7414:475:4,-145.5,47.5,0,0,-0.0310709 -134103,7414:475:3,-145,47.5,0,0,-0.0313912 -134104,7414:374:4,-144.5,47.5,0,0,-0.0327437 -134105,7414:374:3,-144,47.5,0,0,-0.0346041 -134106,7414:373:4,-143.5,47.5,0,0,-0.0364405 -134107,7414:373:3,-143,47.5,0,0,-0.039942 -134108,7414:372:4,-142.5,47.5,0,0,-0.0440272 -134109,7414:372:3,-142,47.5,0,0,-0.0444662 -134110,7414:371:4,-141.5,47.5,0,0,-0.0445998 -134111,7414:371:3,-141,47.5,0,0,-0.0452113 -134112,7414:370:4,-140.5,47.5,0,0,-0.0453684 -134113,7414:370:3,-140,47.5,0,0,-0.0445483 -134114,7413:479:4,-139.5,47.5,0,0,-0.03714 -134115,7413:477:4,-137.5,47.5,0,0,-0.0386785 -134116,7413:477:3,-137,47.5,0,0,-0.0377493 -134117,7408:475:3,-85,47.5,0,0,-0.00631726 -134118,7408:374:4,-84.5,47.5,0,0,-0.00664581 -134119,7408:374:3,-84,47.5,0,0,-0.00730812 -134120,7408:373:4,-83.5,47.5,0,0,-0.00767664 -134121,7408:373:3,-83,47.5,0,0,-0.00781809 -134122,7408:372:4,-82.5,47.5,0,0,-0.00794265 -134123,7408:372:3,-82,47.5,0,0,-0.0080066 -134124,7408:371:4,-81.5,47.5,0,0,-0.00799948 -134125,7408:371:3,-81,47.5,0,0,-0.00803517 -134126,7408:370:4,-80.5,47.5,0,0,-0.00809085 -134127,7408:370:3,-80,47.5,0,0,-0.00817782 -134128,7407:479:4,-79.5,47.5,0,0,-0.00823635 -134129,7407:479:3,-79,47.5,0,0,-0.00825288 -134130,7407:478:4,-78.5,47.5,0,0,-0.00821616 -134131,7407:478:3,-78,47.5,0,0,-0.00808546 -134132,7407:477:4,-77.5,47.5,0,0,-0.0083453 -134133,7407:477:3,-77,47.5,0,0,-0.00853142 -134134,7407:476:4,-76.5,47.5,0,0,-0.00819056 -134135,7407:476:3,-76,47.5,0,0,-0.00743116 -134136,7407:475:4,-75.5,47.5,0,0,-0.00639073 -134137,7407:475:3,-75,47.5,0,0,-0.00640497 -134138,7407:374:4,-74.5,47.5,0,0,-0.00735383 -134139,7407:374:3,-74,47.5,0,0,-0.0090424 -134140,7407:373:4,-73.5,47.5,0,0,-0.00872173 -134141,7406:374:4,-64.5,47.5,0,0,-0.00596912 -134142,7406:374:3,-64,47.5,0,0,-0.00601978 -134143,7406:373:4,-63.5,47.5,0,0,-0.00620865 -134144,7406:373:3,-63,47.5,0,0,-0.00628925 -134145,7406:372:4,-62.5,47.5,0,0,-0.00632571 -134146,7406:372:3,-62,47.5,0,0,-0.00639216 -134147,7405:479:4,-59.5,47.5,0,0,-0.00611282 -134148,7405:479:3,-59,47.5,0,0,-0.00616191 -134149,7405:478:4,-58.5,47.5,0,0,-0.0062391 -134150,7405:478:3,-58,47.5,0,0,-0.00629903 -134151,7405:477:4,-57.5,47.5,0,0,-0.0064021 -134152,7405:477:3,-57,47.5,0,0,-0.00713777 -134153,7405:476:4,-56.5,47.5,0,0,-0.0187441 -134154,7405:476:3,-56,47.5,0,0,-0.0290599 -134155,7405:475:4,-55.5,47.5,0,0,-0.0295599 -134156,7405:475:3,-55,47.5,0,0,-0.0285817 -134157,7405:374:4,-54.5,47.5,0,0,-0.0257835 -134158,7405:374:3,-54,47.5,0,0,-0.0222928 -134159,7405:373:4,-53.5,47.5,0,0,-0.0220275 -134160,7405:373:3,-53,47.5,0,0,-0.0232339 -134161,7405:372:4,-52.5,47.5,0,0,-0.0231292 -134162,7405:372:3,-52,47.5,0,0,-0.0215894 -134163,7405:371:4,-51.5,47.5,0,0,-0.0216968 -134164,7405:371:3,-51,47.5,0,0,-0.0210221 -134165,7405:370:4,-50.5,47.5,0,0,-0.0227867 -134166,7405:370:3,-50,47.5,0,0,-0.0264766 -134167,7404:479:4,-49.5,47.5,0,0,-0.0266634 -134168,7404:479:3,-49,47.5,0,0,-0.027889 -134169,7404:478:4,-48.5,47.5,0,0,-0.0297826 -134170,7404:478:3,-48,47.5,0,0,-0.031513 -134171,7404:477:4,-47.5,47.5,0,0,-0.0324907 -134172,7404:477:3,-47,47.5,0,0,-0.031592 -134173,7404:476:4,-46.5,47.5,0,0,-0.0265489 -134174,7404:476:3,-46,47.5,0,0,-0.0216529 -134175,7404:370:3,-40,47.5,0,0,-0.0182818 -134176,7403:479:4,-39.5,47.5,0,0,-0.0224596 -134177,7403:479:3,-39,47.5,0,0,-0.0335455 -134178,7403:478:4,-38.5,47.5,0,0,-0.041544 -134179,7403:478:3,-38,47.5,0,0,-0.0391518 -134180,7403:477:4,-37.5,47.5,0,0,-0.037923 -134181,7403:477:3,-37,47.5,0,0,-0.0344384 -134182,7403:476:4,-36.5,47.5,0,0,-0.0288232 -134183,7403:476:3,-36,47.5,0,0,-0.0254872 -134184,7403:475:4,-35.5,47.5,0,0,-0.0238946 -134185,7403:475:3,-35,47.5,0,0,-0.0231501 -134186,7403:374:4,-34.5,47.5,0,0,-0.0235141 -134187,7403:374:3,-34,47.5,0,0,-0.0241011 -134188,7403:373:4,-33.5,47.5,0,0,-0.0246975 -134189,7403:373:3,-33,47.5,0,0,-0.0249898 -134190,7403:372:4,-32.5,47.5,0,0,-0.0261248 -134191,7403:372:3,-32,47.5,0,0,-0.0275429 -134192,7403:371:4,-31.5,47.5,0,0,-0.0280287 -134193,7403:371:3,-31,47.5,0,0,-0.0288166 -134194,7403:370:4,-30.5,47.5,0,0,-0.0315487 -134195,7403:370:3,-30,47.5,0,0,-0.0355264 -134196,7402:479:4,-29.5,47.5,0,0,-0.0405711 -134197,7402:479:3,-29,47.5,0,0,-0.0491954 -134198,7402:478:4,-28.5,47.5,0,0,-0.0545426 -134199,7402:478:3,-28,47.5,0,0,-0.0591181 -134200,7402:477:4,-27.5,47.5,0,0,-0.0634111 -134201,7402:477:3,-27,47.5,0,0,-0.0671277 -134202,7402:476:4,-26.5,47.5,0,0,-0.0709085 -134203,7402:476:3,-26,47.5,0,0,-0.0715495 -134204,7402:475:4,-25.5,47.5,0,0,-0.0725216 -134205,7402:475:3,-25,47.5,0,0,-0.0722819 -134206,7402:374:4,-24.5,47.5,0,0,-0.0705073 -134207,7402:374:3,-24,47.5,0,0,-0.0689582 -134208,7402:373:4,-23.5,47.5,0,0,-0.067668 -134209,7402:373:3,-23,47.5,0,0,-0.0673498 -134210,7402:372:4,-22.5,47.5,0,0,-0.0675405 -134211,7402:372:3,-22,47.5,0,0,-0.0666388 -134212,7402:371:4,-21.5,47.5,0,0,-0.0646913 -134213,7402:371:3,-21,47.5,0,0,-0.0643874 -134214,7402:370:4,-20.5,47.5,0,0,-0.0654723 -134215,7402:370:3,-20,47.5,0,0,-0.06518 -134216,7401:479:4,-19.5,47.5,0,0,-0.0648741 -134217,7401:479:3,-19,47.5,0,0,-0.0641007 -134218,7401:478:4,-18.5,47.5,0,0,-0.0646453 -134219,7401:478:3,-18,47.5,0,0,-0.0662476 -134220,7401:477:4,-17.5,47.5,0,0,-0.0742273 -134221,7401:477:3,-17,47.5,0,0,-0.0824893 -134222,7401:476:4,-16.5,47.5,0,0,-0.0878794 -134223,7401:476:3,-16,47.5,0,0,-0.0895866 -134224,7401:475:4,-15.5,47.5,0,0,-0.0879 -134225,7401:475:3,-15,47.5,0,0,-0.0869342 -134226,7401:374:4,-14.5,47.5,0,0,-0.0874577 -134227,7401:374:3,-14,47.5,0,0,-0.0866842 -134228,7401:373:4,-13.5,47.5,0,0,-0.0857528 -134229,7401:373:3,-13,47.5,0,0,-0.084975 -134230,7401:372:4,-12.5,47.5,0,0,-0.0730391 -134231,7401:372:3,-12,47.5,0,0,-0.0710264 -134232,7401:371:4,-11.5,47.5,0,0,-0.0702411 -134233,7401:371:3,-11,47.5,0,0,-0.0664508 -134234,7401:370:4,-10.5,47.5,0,0,-0.0593537 -134235,7401:370:3,-10,47.5,0,0,-0.0552977 -134236,7400:479:4,-9.5,47.5,0,0,-0.051056 -134237,7400:479:3,-9,47.5,0,0,-0.0489223 -134238,7400:478:4,-8.5,47.5,0,0,-0.0479686 -134239,7400:478:3,-8,47.5,0,0,-0.0543521 -134240,7400:477:4,-7.5,47.5,0,0,-0.0600383 -134241,7400:477:3,-7,47.5,0,0,-0.0635158 -134242,7400:476:4,-6.5,47.5,0,0,-0.0740511 -134243,7400:476:3,-6,47.5,0,0,-0.080753 -134244,7400:475:4,-5.5,47.5,0,0,-0.08114 -134245,7400:475:3,-5,47.5,0,0,-0.0784562 -134246,7400:374:4,-4.5,47.5,0,0,-0.0770857 -134247,7400:374:3,-4,47.5,0,0,-0.0744567 -134248,7400:373:4,-3.5,47.5,0,0,-0.0706907 -134249,7400:373:3,-3,47.5,0,0,-0.0680687 -134250,7400:372:4,-2.5,47.5,0,0,-0.0670485 -134251,7400:372:3,-2,47.5,0,0,-0.0678119 -134252,7400:371:4,-1.5,47.5,0,0,-0.0693175 -134253,7400:371:3,-1,47.5,0,0,-0.0611891 -134254,7400:370:4,-0.5,47.5,0,0,-0.0647824 -134255,1400:370:4,0,47.5,0,0,-0.0612176 -134256,1401:371:4,11.5,47.5,0,0,-0.0317146 -134257,1401:372:3,12,47.5,0,0,-0.0431628 -134258,1401:372:4,12.5,47.5,0,0,-0.0448061 -134259,1401:373:3,13,47.5,0,0,-0.0430834 -134260,1401:373:4,13.5,47.5,0,0,-0.0376285 -134261,1401:374:3,14,47.5,0,0,-0.0443842 -134262,1401:374:4,14.5,47.5,0,0,-0.046893 -134263,1401:475:3,15,47.5,0,0,-0.0494582 -134264,1401:475:4,15.5,47.5,0,0,-0.0453578 -134265,1401:478:3,18,47.5,0,0,-0.0380274 -134266,1416:475:3,165,47.5,0,0,-0.00639073 -134267,1416:475:4,165.5,47.5,0,0,-0.00666361 -134268,1417:475:4,175.5,47.5,0,0,-0.00581464 -134269,1417:476:3,176,47.5,0,0,-0.00633697 -134270,1417:476:4,176.5,47.5,0,0,-0.00763233 -134271,1417:477:3,177,47.5,0,0,-0.00780243 -134272,1417:477:4,177.5,47.5,0,0,-0.00741628 -134273,1417:478:3,178,47.5,0,0,-0.00738005 -134274,1417:478:4,178.5,47.5,0,0,-0.00781809 -134275,1417:479:3,179,47.5,0,0,-0.0107087 -134276,1417:479:4,179.5,47.5,0,0,-0.0111256 -134277,1418:370:3,180,47.5,0,0,-0.0118678 -134278,7418:380:1,-180,48,0,0,-0.0104629 -134279,7417:489:2,-179.5,48,0,0,-0.0106181 -134280,7417:489:1,-179,48,0,0,-0.00995263 -134281,7417:488:2,-178.5,48,0,0,-0.00937715 -134282,7417:488:1,-178,48,0,0,-0.0090022 -134283,7417:487:2,-177.5,48,0,0,-0.00878418 -134284,7417:487:1,-177,48,0,0,-0.00858099 -134285,7417:486:2,-176.5,48,0,0,-0.00838443 -134286,7417:486:1,-176,48,0,0,-0.0080084 -134287,7417:485:2,-175.5,48,0,0,-0.00769889 -134288,7417:485:1,-175,48,0,0,-0.00722404 -134289,7417:384:2,-174.5,48,0,0,-0.00682257 -134290,7417:384:1,-174,48,0,0,-0.00646795 -134291,7417:383:2,-173.5,48,0,0,-0.00631024 -134292,7417:383:1,-173,48,0,0,-0.00621144 -134293,7417:382:2,-172.5,48,0,0,-0.00610735 -134294,7417:382:1,-172,48,0,0,-0.0060965 -134295,7417:381:2,-171.5,48,0,0,-0.00605599 -134296,7417:381:1,-171,48,0,0,-0.0059944 -134297,7417:380:2,-170.5,48,0,0,-0.00597313 -134298,7417:380:1,-170,48,0,0,-0.00604925 -134299,7416:489:2,-169.5,48,0,0,-0.00614688 -134300,7416:489:1,-169,48,0,0,-0.00621005 -134301,7415:486:2,-156.5,48,0,0,-0.0113439 -134302,7415:486:1,-156,48,0,0,-0.0134248 -134303,7415:383:2,-153.5,48,0,0,-0.0370042 -134304,7415:383:1,-153,48,0,0,-0.0397225 -134305,7415:382:2,-152.5,48,0,0,-0.0406087 -134306,7415:382:1,-152,48,0,0,-0.0411065 -134307,7415:381:2,-151.5,48,0,0,-0.0412012 -134308,7415:381:1,-151,48,0,0,-0.0416395 -134309,7415:380:2,-150.5,48,0,0,-0.0421798 -134310,7415:380:1,-150,48,0,0,-0.0391789 -134311,7414:489:2,-149.5,48,0,0,-0.0360918 -134312,7414:489:1,-149,48,0,0,-0.0334079 -134313,7414:488:2,-148.5,48,0,0,-0.0318595 -134314,7414:488:1,-148,48,0,0,-0.0312983 -134315,7414:487:2,-147.5,48,0,0,-0.0310001 -134316,7414:487:1,-147,48,0,0,-0.0308732 -134317,7414:486:2,-146.5,48,0,0,-0.031227 -134318,7414:486:1,-146,48,0,0,-0.0317508 -134319,7414:485:2,-145.5,48,0,0,-0.0324979 -134320,7414:485:1,-145,48,0,0,-0.0338225 -134321,7414:384:2,-144.5,48,0,0,-0.0355589 -134322,7414:384:1,-144,48,0,0,-0.0379054 -134323,7414:383:2,-143.5,48,0,0,-0.0418607 -134324,7414:383:1,-143,48,0,0,-0.0448477 -134325,7414:382:2,-142.5,48,0,0,-0.0451801 -134326,7414:382:1,-142,48,0,0,-0.0451801 -134327,7414:381:2,-141.5,48,0,0,-0.0450758 -134328,7414:381:1,-141,48,0,0,-0.0448683 -134329,7414:380:2,-140.5,48,0,0,-0.0434623 -134330,7413:487:1,-137,48,0,0,-0.0347708 -134331,7408:485:1,-85,48,0,0,-0.00645642 -134332,7408:384:2,-84.5,48,0,0,-0.00716005 -134333,7408:384:1,-84,48,0,0,-0.00758323 -134334,7408:383:2,-83.5,48,0,0,-0.00775913 -134335,7408:383:1,-83,48,0,0,-0.00780068 -134336,7408:382:2,-82.5,48,0,0,-0.00789507 -134337,7408:382:1,-82,48,0,0,-0.00794799 -134338,7408:381:2,-81.5,48,0,0,-0.00791092 -134339,7408:381:1,-81,48,0,0,-0.00791969 -134340,7408:380:2,-80.5,48,0,0,-0.00796568 -134341,7408:380:1,-80,48,0,0,-0.0080531 -134342,7407:489:2,-79.5,48,0,0,-0.00814509 -134343,7407:489:1,-79,48,0,0,-0.008218 -134344,7407:488:2,-78.5,48,0,0,-0.00809806 -134345,7407:488:1,-78,48,0,0,-0.00818511 -134346,7407:487:2,-77.5,48,0,0,-0.00825103 -134347,7407:487:1,-77,48,0,0,-0.00855809 -134348,7407:486:2,-76.5,48,0,0,-0.00817782 -134349,7407:486:1,-76,48,0,0,-0.00667547 -134350,7407:485:2,-75.5,48,0,0,-0.00631585 -134351,7407:485:1,-75,48,0,0,-0.00633839 -134352,7407:384:2,-74.5,48,0,0,-0.00721119 -134353,7407:384:1,-74,48,0,0,-0.00909095 -134354,7407:383:2,-73.5,48,0,0,-0.0085963 -134355,7406:485:1,-65,48,0,0,-0.00601574 -134356,7406:384:2,-64.5,48,0,0,-0.00604925 -134357,7406:384:1,-64,48,0,0,-0.00611282 -134358,7406:383:2,-63.5,48,0,0,-0.00602779 -134359,7406:383:1,-63,48,0,0,-0.00613322 -134360,7406:382:2,-62.5,48,0,0,-0.00622249 -134361,7406:382:1,-62,48,0,0,-0.00621418 -134362,7406:381:2,-61.5,48,0,0,-0.0063652 -134363,7406:380:1,-60,48,0,0,-0.0059506 -134364,7405:489:2,-59.5,48,0,0,-0.00617425 -134365,7405:489:1,-59,48,0,0,-0.0062004 -134366,7405:488:2,-58.5,48,0,0,-0.00618524 -134367,7405:488:1,-58,48,0,0,-0.00619624 -134368,7405:487:2,-57.5,48,0,0,-0.0064021 -134369,7405:487:1,-57,48,0,0,-0.00938341 -134370,7405:486:2,-56.5,48,0,0,-0.0268516 -134371,7405:486:1,-56,48,0,0,-0.0295599 -134372,7405:485:2,-55.5,48,0,0,-0.0298165 -134373,7405:485:1,-55,48,0,0,-0.0298708 -134374,7405:384:2,-54.5,48,0,0,-0.028869 -134375,7405:384:1,-54,48,0,0,-0.0271149 -134376,7405:383:2,-53.5,48,0,0,-0.02353 -134377,7405:383:1,-53,48,0,0,-0.0223584 -134378,7405:382:2,-52.5,48,0,0,-0.0248152 -134379,7405:382:1,-52,48,0,0,-0.0250296 -134380,7405:381:2,-51.5,48,0,0,-0.0241064 -134381,7405:381:1,-51,48,0,0,-0.0249164 -134382,7405:380:2,-50.5,48,0,0,-0.0246303 -134383,7405:380:1,-50,48,0,0,-0.0257835 -134384,7404:489:2,-49.5,48,0,0,-0.0281691 -134385,7404:489:1,-49,48,0,0,-0.0289545 -134386,7404:488:2,-48.5,48,0,0,-0.0306771 -134387,7404:488:1,-48,48,0,0,-0.0317798 -134388,7404:487:2,-47.5,48,0,0,-0.0314985 -134389,7404:487:1,-47,48,0,0,-0.0262732 -134390,7404:486:2,-46.5,48,0,0,-0.0232339 -134391,7404:380:1,-40,48,0,0,-0.0156176 -134392,7403:489:2,-39.5,48,0,0,-0.0212605 -134393,7403:489:1,-39,48,0,0,-0.029093 -134394,7403:488:2,-38.5,48,0,0,-0.0366162 -134395,7403:488:1,-38,48,0,0,-0.0414007 -134396,7403:487:2,-37.5,48,0,0,-0.0402646 -134397,7403:487:1,-37,48,0,0,-0.0402923 -134398,7403:486:2,-36.5,48,0,0,-0.0381583 -134399,7403:486:1,-36,48,0,0,-0.0347151 -134400,7403:485:2,-35.5,48,0,0,-0.0316857 -134401,7403:485:1,-35,48,0,0,-0.0270226 -134402,7403:384:2,-34.5,48,0,0,-0.0248207 -134403,7403:384:1,-34,48,0,0,-0.0262196 -134404,7403:383:2,-33.5,48,0,0,-0.0296744 -134405,7403:383:1,-33,48,0,0,-0.0293121 -134406,7403:382:2,-32.5,48,0,0,-0.0262256 -134407,7403:382:1,-32,48,0,0,-0.0259477 -134408,7403:381:2,-31.5,48,0,0,-0.0266453 -134409,7403:381:1,-31,48,0,0,-0.0269248 -134410,7403:380:2,-30.5,48,0,0,-0.0284392 -134411,7403:380:1,-30,48,0,0,-0.0325573 -134412,7402:489:2,-29.5,48,0,0,-0.037021 -134413,7402:489:1,-29,48,0,0,-0.0450968 -134414,7402:488:2,-28.5,48,0,0,-0.0536106 -134415,7402:488:1,-28,48,0,0,-0.0571608 -134416,7402:487:2,-27.5,48,0,0,-0.0610313 -134417,7402:487:1,-27,48,0,0,-0.0645999 -134418,7402:486:2,-26.5,48,0,0,-0.0686008 -134419,7402:486:1,-26,48,0,0,-0.0705241 -134420,7402:485:2,-25.5,48,0,0,-0.0696789 -134421,7402:485:1,-25,48,0,0,-0.0710936 -134422,7402:384:2,-24.5,48,0,0,-0.0727454 -134423,7402:384:1,-24,48,0,0,-0.0734042 -134424,7402:383:2,-23.5,48,0,0,-0.0736832 -134425,7402:383:1,-23,48,0,0,-0.0739456 -134426,7402:382:2,-22.5,48,0,0,-0.0742445 -134427,7402:382:1,-22,48,0,0,-0.0745274 -134428,7402:381:2,-21.5,48,0,0,-0.0741214 -134429,7402:381:1,-21,48,0,0,-0.0728834 -134430,7402:380:2,-20.5,48,0,0,-0.0731084 -134431,7402:380:1,-20,48,0,0,-0.0738578 -134432,7401:489:2,-19.5,48,0,0,-0.0732127 -134433,7401:489:1,-19,48,0,0,-0.0706076 -134434,7401:488:2,-18.5,48,0,0,-0.0687141 -134435,7401:488:1,-18,48,0,0,-0.0694812 -134436,7401:487:2,-17.5,48,0,0,-0.0757947 -134437,7401:487:1,-17,48,0,0,-0.0830434 -134438,7401:486:2,-16.5,48,0,0,-0.0861657 -134439,7401:486:1,-16,48,0,0,-0.086414 -134440,7401:485:2,-15.5,48,0,0,-0.0846902 -134441,7401:485:1,-15,48,0,0,-0.0822723 -134442,7401:384:2,-14.5,48,0,0,-0.0810431 -134443,7401:384:1,-14,48,0,0,-0.0805415 -134444,7401:383:2,-13.5,48,0,0,-0.0780086 -134445,7401:383:1,-13,48,0,0,-0.0732996 -134446,7401:382:2,-12.5,48,0,0,-0.0683424 -134447,7401:382:1,-12,48,0,0,-0.06518 -134448,7401:381:2,-11.5,48,0,0,-0.0587457 -134449,7401:381:1,-11,48,0,0,-0.0542637 -134450,7401:380:2,-10.5,48,0,0,-0.0500817 -134451,7401:380:1,-10,48,0,0,-0.0511865 -134452,7400:489:2,-9.5,48,0,0,-0.0506428 -134453,7400:489:1,-9,48,0,0,-0.04907 -134454,7400:488:2,-8.5,48,0,0,-0.0469579 -134455,7400:488:1,-8,48,0,0,-0.0461082 -134456,7400:487:2,-7.5,48,0,0,-0.0510915 -134457,7400:487:1,-7,48,0,0,-0.0605469 -134458,7400:486:2,-6.5,48,0,0,-0.0613324 -134459,7400:486:1,-6,48,0,0,-0.0699428 -134460,7400:485:2,-5.5,48,0,0,-0.0803879 -134461,7400:485:1,-5,48,0,0,-0.0795482 -134462,7400:384:2,-4.5,48,0,0,-0.0776934 -134463,7400:384:1,-4,48,0,0,-0.0763372 -134464,7400:383:2,-3.5,48,0,0,-0.0734042 -134465,7400:383:1,-3,48,0,0,-0.071668 -134466,7400:382:2,-2.5,48,0,0,-0.0725904 -134467,7400:382:1,-2,48,0,0,-0.0733516 -134468,7400:381:2,-1.5,48,0,0,-0.0628477 -134469,7400:381:1,-1,48,0,0,-0.0619107 -134470,7400:380:2,-0.5,48,0,0,-0.0627298 -134471,1401:381:2,11.5,48,0,0,-0.029199 -134472,1401:382:1,12,48,0,0,-0.0383866 -134473,1401:382:2,12.5,48,0,0,-0.045316 -134474,1401:383:1,13,48,0,0,-0.0445072 -134475,1401:383:2,13.5,48,0,0,-0.0438247 -134476,1401:384:1,14,48,0,0,-0.0458743 -134477,1401:384:2,14.5,48,0,0,-0.0483142 -134478,1401:485:1,15,48,0,0,-0.0495272 -134479,1401:485:2,15.5,48,0,0,-0.0457474 -134480,1401:486:1,16,48,0,0,-0.0311843 -134481,1401:486:2,16.5,48,0,0,-0.0279335 -134482,1401:487:1,17,48,0,0,-0.032602 -134483,1401:487:2,17.5,48,0,0,-0.0379838 -134484,1401:488:1,18,48,0,0,-0.0417837 -134485,1416:485:2,165.5,48,0,0,-0.00666505 -134486,1416:486:1,166,48,0,0,-0.00684233 -134487,1417:489:1,179,48,0,0,-0.00803877 -134488,1417:489:2,179.5,48,0,0,-0.010184 -134489,1418:380:1,180,48,0,0,-0.0104629 -134490,7418:380:3,-180,48.5,0,0,-0.00955445 -134491,7417:489:4,-179.5,48.5,0,0,-0.00950554 -134492,7417:489:3,-179,48.5,0,0,-0.00901624 -134493,7417:488:4,-178.5,48.5,0,0,-0.00870425 -134494,7417:488:3,-178,48.5,0,0,-0.00848594 -134495,7417:487:4,-177.5,48.5,0,0,-0.00830082 -134496,7417:487:3,-177,48.5,0,0,-0.00809266 -134497,7417:486:4,-176.5,48.5,0,0,-0.00786172 -134498,7417:486:3,-176,48.5,0,0,-0.00769544 -134499,7417:485:4,-175.5,48.5,0,0,-0.00742949 -134500,7417:485:3,-175,48.5,0,0,-0.00681044 -134501,7417:384:4,-174.5,48.5,0,0,-0.00636662 -134502,7417:384:3,-174,48.5,0,0,-0.00611552 -134503,7417:383:4,-173.5,48.5,0,0,-0.0059506 -134504,7417:383:3,-173,48.5,0,0,-0.00585091 -134505,7417:382:4,-172.5,48.5,0,0,-0.00582755 -134506,7417:382:3,-172,48.5,0,0,-0.00585874 -134507,7417:381:4,-171.5,48.5,0,0,-0.00586263 -134508,7417:381:3,-171,48.5,0,0,-0.00586526 -134509,7417:380:4,-170.5,48.5,0,0,-0.00590974 -134510,7417:380:3,-170,48.5,0,0,-0.00599704 -134511,7416:489:4,-169.5,48.5,0,0,-0.00609245 -134512,7416:489:3,-169,48.5,0,0,-0.00619074 -134513,7415:486:3,-156,48.5,0,0,-0.00895419 -134514,7415:382:4,-152.5,48.5,0,0,-0.0309015 -134515,7415:381:4,-151.5,48.5,0,0,-0.0408614 -134516,7415:381:3,-151,48.5,0,0,-0.0409461 -134517,7415:380:4,-150.5,48.5,0,0,-0.0414962 -134518,7415:380:3,-150,48.5,0,0,-0.0434122 -134519,7414:489:4,-149.5,48.5,0,0,-0.0417162 -134520,7414:489:3,-149,48.5,0,0,-0.0399787 -134521,7414:488:4,-148.5,48.5,0,0,-0.0372764 -134522,7414:488:3,-148,48.5,0,0,-0.0354046 -134523,7414:487:4,-147.5,48.5,0,0,-0.0343442 -134524,7414:487:3,-147,48.5,0,0,-0.0344384 -134525,7414:486:4,-146.5,48.5,0,0,-0.0353076 -134526,7414:486:3,-146,48.5,0,0,-0.0367253 -134527,7414:485:4,-145.5,48.5,0,0,-0.0386431 -134528,7414:485:3,-145,48.5,0,0,-0.0411255 -134529,7414:384:4,-144.5,48.5,0,0,-0.0427965 -134530,7414:384:3,-144,48.5,0,0,-0.0438247 -134531,7414:383:4,-143.5,48.5,0,0,-0.0447234 -134532,7414:383:3,-143,48.5,0,0,-0.0451279 -134533,7414:382:4,-142.5,48.5,0,0,-0.0448578 -134534,7414:382:3,-142,48.5,0,0,-0.0444662 -134535,7414:381:4,-141.5,48.5,0,0,-0.0442105 -134536,7414:381:3,-141,48.5,0,0,-0.041928 -134537,7414:380:4,-140.5,48.5,0,0,-0.0399605 -134538,7414:380:3,-140,48.5,0,0,-0.0391158 -134539,7408:485:4,-85.5,48.5,0,0,-0.00635109 -134540,7408:485:3,-85,48.5,0,0,-0.00688048 -134541,7408:384:4,-84.5,48.5,0,0,-0.00751431 -134542,7408:384:3,-84,48.5,0,0,-0.00771948 -134543,7408:383:4,-83.5,48.5,0,0,-0.00778681 -134544,7408:383:3,-83,48.5,0,0,-0.00776087 -134545,7408:382:4,-82.5,48.5,0,0,-0.00784075 -134546,7408:382:3,-82,48.5,0,0,-0.00791969 -134547,7408:381:4,-81.5,48.5,0,0,-0.0078775 -134548,7408:381:3,-81,48.5,0,0,-0.00791969 -134549,7408:380:4,-80.5,48.5,0,0,-0.00800307 -134550,7408:380:3,-80,48.5,0,0,-0.00804413 -134551,7407:489:4,-79.5,48.5,0,0,-0.00812336 -134552,7407:489:3,-79,48.5,0,0,-0.00819424 -134553,7407:488:4,-78.5,48.5,0,0,-0.00809266 -134554,7407:488:3,-78,48.5,0,0,-0.00822532 -134555,7407:487:4,-77.5,48.5,0,0,-0.00829524 -134556,7407:487:3,-77,48.5,0,0,-0.0084557 -134557,7407:486:4,-76.5,48.5,0,0,-0.0084557 -134558,7407:486:3,-76,48.5,0,0,-0.00741795 -134559,7407:485:4,-75.5,48.5,0,0,-0.00765446 -134560,7407:485:3,-75,48.5,0,0,-0.0071712 -134561,7407:384:4,-74.5,48.5,0,0,-0.00732606 -134562,7407:384:3,-74,48.5,0,0,-0.00874311 -134563,7406:485:3,-65,48.5,0,0,-0.00592684 -134564,7406:384:4,-64.5,48.5,0,0,-0.00614821 -134565,7406:384:3,-64,48.5,0,0,-0.00616191 -134566,7406:383:4,-63.5,48.5,0,0,-0.00617015 -134567,7406:383:3,-63,48.5,0,0,-0.0062405 -134568,7406:382:4,-62.5,48.5,0,0,-0.00635674 -134569,7406:382:3,-62,48.5,0,0,-0.00633555 -134570,7406:381:4,-61.5,48.5,0,0,-0.0061949 -134571,7406:381:3,-61,48.5,0,0,-0.00640641 -134572,7406:380:3,-60,48.5,0,0,-0.00619351 -134573,7405:489:4,-59.5,48.5,0,0,-0.0061455 -134574,7405:489:3,-59,48.5,0,0,-0.00617425 -134575,7405:488:4,-58.5,48.5,0,0,-0.00618524 -134576,7405:488:3,-58,48.5,0,0,-0.00633413 -134577,7405:487:4,-57.5,48.5,0,0,-0.00654607 -134578,7405:487:3,-57,48.5,0,0,-0.0112204 -134579,7405:486:4,-56.5,48.5,0,0,-0.0273871 -134580,7405:486:3,-56,48.5,0,0,-0.0297082 -134581,7405:485:4,-55.5,48.5,0,0,-0.0297555 -134582,7405:485:3,-55,48.5,0,0,-0.0300823 -134583,7405:384:4,-54.5,48.5,0,0,-0.0299117 -134584,7405:384:3,-54,48.5,0,0,-0.0292921 -134585,7405:383:4,-53.5,48.5,0,0,-0.0284133 -134586,7405:383:3,-53,48.5,0,0,-0.0271703 -134587,7405:382:4,-52.5,48.5,0,0,-0.0282395 -134588,7405:382:3,-52,48.5,0,0,-0.0280606 -134589,7405:381:4,-51.5,48.5,0,0,-0.0272568 -134590,7405:381:3,-51,48.5,0,0,-0.0274243 -134591,7405:380:4,-50.5,48.5,0,0,-0.0264286 -134592,7405:380:3,-50,48.5,0,0,-0.0252917 -134593,7404:489:4,-49.5,48.5,0,0,-0.0288953 -134594,7404:489:3,-49,48.5,0,0,-0.0308451 -134595,7404:488:4,-48.5,48.5,0,0,-0.0314268 -134596,7404:488:3,-48,48.5,0,0,-0.0319032 -134597,7404:487:4,-47.5,48.5,0,0,-0.0313053 -134598,7404:487:3,-47,48.5,0,0,-0.0274368 -134599,7404:486:4,-46.5,48.5,0,0,-0.0194581 -134600,7404:380:3,-40,48.5,0,0,-0.0145753 -134601,7403:489:4,-39.5,48.5,0,0,-0.0182612 -134602,7403:489:3,-39,48.5,0,0,-0.0219778 -134603,7403:488:4,-38.5,48.5,0,0,-0.0285557 -134604,7403:488:3,-38,48.5,0,0,-0.0422869 -134605,7403:487:4,-37.5,48.5,0,0,-0.0419378 -134606,7403:487:3,-37,48.5,0,0,-0.0416875 -134607,7403:486:4,-36.5,48.5,0,0,-0.0418704 -134608,7403:486:3,-36,48.5,0,0,-0.0418798 -134609,7403:485:4,-35.5,48.5,0,0,-0.0414962 -134610,7403:485:3,-35,48.5,0,0,-0.0402093 -134611,7403:384:4,-34.5,48.5,0,0,-0.0375422 -134612,7403:384:3,-34,48.5,0,0,-0.0364655 -134613,7403:383:4,-33.5,48.5,0,0,-0.0361413 -134614,7403:383:3,-33,48.5,0,0,-0.0348743 -134615,7403:382:4,-32.5,48.5,0,0,-0.0329009 -134616,7403:382:3,-32,48.5,0,0,-0.0311346 -134617,7403:381:4,-31.5,48.5,0,0,-0.0309015 -134618,7403:381:3,-31,48.5,0,0,-0.029973 -134619,7403:380:4,-30.5,48.5,0,0,-0.0293721 -134620,7403:380:3,-30,48.5,0,0,-0.0338844 -134621,7402:489:4,-29.5,48.5,0,0,-0.0400983 -134622,7402:489:3,-29,48.5,0,0,-0.0477248 -134623,7402:488:4,-28.5,48.5,0,0,-0.0535607 -134624,7402:488:3,-28,48.5,0,0,-0.0567221 -134625,7402:487:4,-27.5,48.5,0,0,-0.0615488 -134626,7402:487:3,-27,48.5,0,0,-0.0655801 -134627,7402:486:4,-26.5,48.5,0,0,-0.06935 -134628,7402:486:3,-26,48.5,0,0,-0.0695143 -134629,7402:485:4,-25.5,48.5,0,0,-0.0662318 -134630,7402:485:3,-25,48.5,0,0,-0.0657192 -134631,7402:384:4,-24.5,48.5,0,0,-0.0679399 -134632,7402:384:3,-24,48.5,0,0,-0.0702741 -134633,7402:383:4,-23.5,48.5,0,0,-0.0703573 -134634,7402:383:3,-23,48.5,0,0,-0.0708251 -134635,7402:382:4,-22.5,48.5,0,0,-0.0710433 -134636,7402:382:3,-22,48.5,0,0,-0.0712282 -134637,7402:381:4,-21.5,48.5,0,0,-0.0733341 -134638,7402:381:3,-21,48.5,0,0,-0.0750422 -134639,7402:380:4,-20.5,48.5,0,0,-0.0759213 -134640,7402:380:3,-20,48.5,0,0,-0.0765736 -134641,7401:489:4,-19.5,48.5,0,0,-0.0773796 -134642,7401:489:3,-19,48.5,0,0,-0.0785121 -134643,7401:488:4,-18.5,48.5,0,0,-0.0781948 -134644,7401:488:3,-18,48.5,0,0,-0.0773796 -134645,7401:487:4,-17.5,48.5,0,0,-0.0784562 -134646,7401:487:3,-17,48.5,0,0,-0.081412 -134647,7401:486:4,-16.5,48.5,0,0,-0.0843059 -134648,7401:486:3,-16,48.5,0,0,-0.0803492 -134649,7401:485:4,-15.5,48.5,0,0,-0.0777674 -134650,7401:485:3,-15,48.5,0,0,-0.0737707 -134651,7401:384:4,-14.5,48.5,0,0,-0.072453 -134652,7401:384:3,-14,48.5,0,0,-0.0635158 -134653,7401:383:4,-13.5,48.5,0,0,-0.053886 -134654,7401:383:3,-13,48.5,0,0,-0.0500934 -134655,7401:382:4,-12.5,48.5,0,0,-0.0558161 -134656,7401:382:3,-12,48.5,0,0,-0.0621875 -134657,7401:381:4,-11.5,48.5,0,0,-0.0568545 -134658,7401:381:3,-11,48.5,0,0,-0.0512816 -134659,7401:380:4,-10.5,48.5,0,0,-0.0486849 -134660,7401:380:3,-10,48.5,0,0,-0.049036 -134661,7400:489:4,-9.5,48.5,0,0,-0.0483703 -134662,7400:489:3,-9,48.5,0,0,-0.0487752 -134663,7400:488:4,-8.5,48.5,0,0,-0.0476255 -134664,7400:488:3,-8,48.5,0,0,-0.0442818 -134665,7400:487:4,-7.5,48.5,0,0,-0.0428061 -134666,7400:487:3,-7,48.5,0,0,-0.0494239 -134667,7400:486:4,-6.5,48.5,0,0,-0.0512104 -134668,7400:486:3,-6,48.5,0,0,-0.0567221 -134669,7400:485:4,-5.5,48.5,0,0,-0.0739632 -134670,7400:485:3,-5,48.5,0,0,-0.0779898 -134671,7400:384:4,-4.5,48.5,0,0,-0.0775271 -134672,7400:384:3,-4,48.5,0,0,-0.0763012 -134673,7400:383:4,-3.5,48.5,0,0,-0.0752209 -134674,7400:383:3,-3,48.5,0,0,-0.0747751 -134675,7400:382:4,-2.5,48.5,0,0,-0.0724362 -134676,7400:382:3,-2,48.5,0,0,-0.0679243 -134677,7400:381:4,-1.5,48.5,0,0,-0.0612176 -134678,7400:381:3,-1,48.5,0,0,-0.0634857 -134679,7400:380:4,-0.5,48.5,0,0,-0.054479 -134680,1401:382:3,12,48.5,0,0,-0.0282781 -134681,1401:382:4,12.5,48.5,0,0,-0.0419667 -134682,1401:383:3,13,48.5,0,0,-0.0453054 -134683,1401:383:4,13.5,48.5,0,0,-0.0463109 -134684,1401:384:3,14,48.5,0,0,-0.0468712 -134685,1401:384:4,14.5,48.5,0,0,-0.048169 -134686,1401:485:3,15,48.5,0,0,-0.0467522 -134687,1401:485:4,15.5,48.5,0,0,-0.0302264 -134688,1401:486:4,16.5,48.5,0,0,-0.027662 -134689,1401:487:3,17,48.5,0,0,-0.0326467 -134690,1401:487:4,17.5,48.5,0,0,-0.0371827 -134691,1401:488:3,18,48.5,0,0,-0.0379402 -134692,1417:488:4,178.5,48.5,0,0,-0.00573125 -134693,1417:489:3,179,48.5,0,0,-0.00675313 -134694,1417:489:4,179.5,48.5,0,0,-0.0094401 -134695,1418:380:3,180,48.5,0,0,-0.00955445 -134696,7418:390:1,-180,49,0,0,-0.00886088 -134697,7417:499:2,-179.5,49,0,0,-0.00899822 -134698,7417:499:1,-179,49,0,0,-0.00880769 -134699,7417:498:2,-178.5,49,0,0,-0.00859823 -134700,7417:498:1,-178,49,0,0,-0.00838072 -134701,7417:497:2,-177.5,49,0,0,-0.00812877 -134702,7417:497:1,-177,49,0,0,-0.00772809 -134703,7417:496:2,-176.5,49,0,0,-0.00749926 -134704,7417:496:1,-176,49,0,0,-0.00728379 -134705,7417:495:2,-175.5,49,0,0,-0.00693271 -134706,7417:495:1,-175,49,0,0,-0.00655919 -134707,7417:394:2,-174.5,49,0,0,-0.00628366 -134708,7417:394:1,-174,49,0,0,-0.00607891 -134709,7417:393:2,-173.5,49,0,0,-0.0057236 -134710,7417:393:1,-173,49,0,0,-0.00567171 -134711,7417:392:2,-172.5,49,0,0,-0.00568053 -134712,7417:392:1,-172,49,0,0,-0.00571472 -134713,7417:391:2,-171.5,49,0,0,-0.00574144 -134714,7417:391:1,-171,49,0,0,-0.00577985 -134715,7417:390:2,-170.5,49,0,0,-0.00584833 -134716,7417:390:1,-170,49,0,0,-0.00593605 -134717,7416:499:2,-169.5,49,0,0,-0.00601439 -134718,7416:499:1,-169,49,0,0,-0.00613184 -134719,7416:498:2,-168.5,49,0,0,-0.00627808 -134720,7415:496:1,-156,49,0,0,-0.00832671 -134721,7415:495:2,-155.5,49,0,0,-0.00878418 -134722,7415:392:2,-152.5,49,0,0,-0.0279335 -134723,7415:392:1,-152,49,0,0,-0.0317581 -134724,7415:391:2,-151.5,49,0,0,-0.0397406 -134725,7415:391:1,-151,49,0,0,-0.0395403 -134726,7415:390:2,-150.5,49,0,0,-0.0400615 -134727,7415:390:1,-150,49,0,0,-0.0419572 -134728,7414:499:2,-149.5,49,0,0,-0.0435324 -134729,7414:499:1,-149,49,0,0,-0.0421022 -134730,7414:498:2,-148.5,49,0,0,-0.0431528 -134731,7414:498:1,-148,49,0,0,-0.0421217 -134732,7414:497:2,-147.5,49,0,0,-0.0410027 -134733,7414:497:1,-147,49,0,0,-0.0407958 -134734,7414:496:2,-146.5,49,0,0,-0.0416588 -134735,7414:496:1,-146,49,0,0,-0.0422186 -134736,7414:495:2,-145.5,49,0,0,-0.042443 -134737,7414:495:1,-145,49,0,0,-0.0436732 -134738,7414:394:2,-144.5,49,0,0,-0.0442513 -134739,7414:394:1,-144,49,0,0,-0.0447855 -134740,7414:393:2,-143.5,49,0,0,-0.0448165 -134741,7414:393:1,-143,49,0,0,-0.0447546 -134742,7414:392:2,-142.5,49,0,0,-0.0431728 -134743,7408:496:1,-86,49,0,0,-0.00637371 -134744,7408:495:2,-85.5,49,0,0,-0.00678474 -134745,7408:495:1,-85,49,0,0,-0.0073293 -134746,7408:394:2,-84.5,49,0,0,-0.00764256 -134747,7408:394:1,-84,49,0,0,-0.00774012 -134748,7408:393:2,-83.5,49,0,0,-0.00775049 -134749,7408:393:1,-83,49,0,0,-0.00770921 -134750,7408:392:2,-82.5,49,0,0,-0.0077643 -134751,7408:392:1,-82,49,0,0,-0.00789679 -134752,7408:391:2,-81.5,49,0,0,-0.00786696 -134753,7408:391:1,-81,49,0,0,-0.00786348 -134754,7408:390:2,-80.5,49,0,0,-0.00804233 -134755,7408:390:1,-80,49,0,0,-0.00813784 -134756,7407:499:2,-79.5,49,0,0,-0.00817966 -134757,7407:499:1,-79,49,0,0,-0.00818327 -134758,7407:498:2,-78.5,49,0,0,-0.00800127 -134759,7407:498:1,-78,49,0,0,-0.00808365 -134760,7407:497:2,-77.5,49,0,0,-0.00819056 -134761,7407:497:1,-77,49,0,0,-0.00829338 -134762,7407:496:2,-76.5,49,0,0,-0.00842374 -134763,7407:496:1,-76,49,0,0,-0.00836763 -134764,7407:495:2,-75.5,49,0,0,-0.00848779 -134765,7407:495:1,-75,49,0,0,-0.00823814 -134766,7407:394:2,-74.5,49,0,0,-0.0076886 -134767,7406:495:1,-65,49,0,0,-0.00587178 -134768,7406:394:2,-64.5,49,0,0,-0.00612095 -134769,7406:394:1,-64,49,0,0,-0.00622802 -134770,7406:393:2,-63.5,49,0,0,-0.00627527 -134771,7406:393:1,-63,49,0,0,-0.00640641 -134772,7406:392:2,-62.5,49,0,0,-0.00641637 -134773,7406:392:1,-62,49,0,0,-0.006549 -134774,7406:391:2,-61.5,49,0,0,-0.00633977 -134775,7406:391:1,-61,49,0,0,-0.00656355 -134776,7406:390:2,-60.5,49,0,0,-0.00638224 -134777,7406:390:1,-60,49,0,0,-0.00633697 -134778,7405:499:2,-59.5,49,0,0,-0.0061006 -134779,7405:499:1,-59,49,0,0,-0.00624884 -134780,7405:498:2,-58.5,49,0,0,-0.00658108 -134781,7405:498:1,-58,49,0,0,-0.00650546 -134782,7405:497:2,-57.5,49,0,0,-0.00672162 -134783,7405:497:1,-57,49,0,0,-0.0134851 -134784,7405:496:2,-56.5,49,0,0,-0.0254469 -134785,7405:496:1,-56,49,0,0,-0.0287643 -134786,7405:495:2,-55.5,49,0,0,-0.030192 -134787,7405:495:1,-55,49,0,0,-0.0301509 -134788,7405:394:2,-54.5,49,0,0,-0.0301784 -134789,7405:394:1,-54,49,0,0,-0.0299117 -134790,7405:393:2,-53.5,49,0,0,-0.0297826 -134791,7405:393:1,-53,49,0,0,-0.0297826 -134792,7405:392:2,-52.5,49,0,0,-0.0299662 -134793,7405:392:1,-52,49,0,0,-0.0301302 -134794,7405:391:2,-51.5,49,0,0,-0.0299186 -134795,7405:391:1,-51,49,0,0,-0.0298234 -134796,7405:390:2,-50.5,49,0,0,-0.0299866 -134797,7405:390:1,-50,49,0,0,-0.0304613 -134798,7404:499:2,-49.5,49,0,0,-0.0311559 -134799,7404:499:1,-49,49,0,0,-0.0315058 -134800,7404:498:2,-48.5,49,0,0,-0.0316065 -134801,7404:498:1,-48,49,0,0,-0.0315847 -134802,7404:497:2,-47.5,49,0,0,-0.0310992 -134803,7404:497:1,-47,49,0,0,-0.0261071 -134804,7403:499:1,-39,49,0,0,-0.0144355 -134805,7403:498:2,-38.5,49,0,0,-0.0188669 -134806,7403:498:1,-38,49,0,0,-0.0428359 -134807,7403:497:2,-37.5,49,0,0,-0.0430437 -134808,7403:497:1,-37,49,0,0,-0.0433423 -134809,7403:496:2,-36.5,49,0,0,-0.0435226 -134810,7403:496:1,-36,49,0,0,-0.043764 -134811,7403:495:2,-35.5,49,0,0,-0.0437338 -134812,7403:495:1,-35,49,0,0,-0.0433924 -134813,7403:394:2,-34.5,49,0,0,-0.0427965 -134814,7403:394:1,-34,49,0,0,-0.0425702 -134815,7403:393:2,-33.5,49,0,0,-0.0426979 -134816,7403:393:1,-33,49,0,0,-0.0420732 -134817,7403:392:2,-32.5,49,0,0,-0.0383514 -134818,7403:392:1,-32,49,0,0,-0.0350422 -134819,7403:391:2,-31.5,49,0,0,-0.0339852 -134820,7403:391:1,-31,49,0,0,-0.0326242 -134821,7403:390:2,-30.5,49,0,0,-0.031592 -134822,7403:390:1,-30,49,0,0,-0.035575 -134823,7402:499:2,-29.5,49,0,0,-0.0454942 -134824,7402:499:1,-29,49,0,0,-0.0502914 -134825,7402:498:2,-28.5,49,0,0,-0.0531262 -134826,7402:498:1,-28,49,0,0,-0.0570407 -134827,7402:497:2,-27.5,49,0,0,-0.0628477 -134828,7402:497:1,-27,49,0,0,-0.0685198 -134829,7402:496:2,-26.5,49,0,0,-0.0678441 -134830,7402:496:1,-26,49,0,0,-0.0636799 -134831,7402:495:2,-25.5,49,0,0,-0.0623333 -134832,7402:495:1,-25,49,0,0,-0.0605612 -134833,7402:394:2,-24.5,49,0,0,-0.0587868 -134834,7402:394:1,-24,49,0,0,-0.0601087 -134835,7402:393:2,-23.5,49,0,0,-0.0608312 -134836,7402:393:1,-23,49,0,0,-0.061419 -134837,7402:392:2,-22.5,49,0,0,-0.0579409 -134838,7402:392:1,-22,49,0,0,-0.0536354 -134839,7402:391:2,-21.5,49,0,0,-0.0529409 -134840,7402:390:1,-20,49,0,0,-0.0554916 -134841,7401:499:2,-19.5,49,0,0,-0.0547081 -134842,7401:499:1,-19,49,0,0,-0.0650883 -134843,7401:498:2,-18.5,49,0,0,-0.0652722 -134844,7401:498:1,-18,49,0,0,-0.0765375 -134845,7401:497:2,-17.5,49,0,0,-0.0806954 -134846,7401:497:1,-17,49,0,0,-0.0820367 -134847,7401:496:2,-16.5,49,0,0,-0.0816653 -134848,7401:496:1,-16,49,0,0,-0.0789438 -134849,7401:495:2,-15.5,49,0,0,-0.0765008 -134850,7401:495:1,-15,49,0,0,-0.0435024 -134851,7401:394:2,-14.5,49,0,0,-0.0420635 -134852,7401:394:1,-14,49,0,0,-0.0458106 -134853,7401:393:2,-13.5,49,0,0,-0.0468064 -134854,7401:393:1,-13,49,0,0,-0.0477471 -134855,7401:392:2,-12.5,49,0,0,-0.0505253 -134856,7401:392:1,-12,49,0,0,-0.0533864 -134857,7401:391:2,-11.5,49,0,0,-0.0557121 -134858,7401:391:1,-11,49,0,0,-0.0543143 -134859,7401:390:2,-10.5,49,0,0,-0.0510441 -134860,7401:390:1,-10,49,0,0,-0.0472196 -134861,7400:499:2,-9.5,49,0,0,-0.0439764 -134862,7400:499:1,-9,49,0,0,-0.0426979 -134863,7400:498:2,-8.5,49,0,0,-0.0416395 -134864,7400:498:1,-8,49,0,0,-0.0400615 -134865,7400:497:2,-7.5,49,0,0,-0.0402276 -134866,7400:497:1,-7,49,0,0,-0.0445587 -134867,7400:496:2,-6.5,49,0,0,-0.056908 -134868,7400:496:1,-6,49,0,0,-0.0619107 -134869,7400:495:2,-5.5,49,0,0,-0.0674608 -134870,7400:495:1,-5,49,0,0,-0.0702411 -134871,7400:394:2,-4.5,49,0,0,-0.0728666 -134872,7400:394:1,-4,49,0,0,-0.0738054 -134873,7400:393:2,-3.5,49,0,0,-0.073074 -134874,7400:393:1,-3,49,0,0,-0.0684389 -134875,7400:392:2,-2.5,49,0,0,-0.063337 -134876,7400:392:1,-2,49,0,0,-0.0641154 -134877,7400:391:2,-1.5,49,0,0,-0.0669381 -134878,7400:391:1,-1,49,0,0,-0.0652109 -134879,7400:390:2,-0.5,49,0,0,-0.0486175 -134880,1401:392:1,12,49,0,0,-0.0214485 -134881,1401:392:2,12.5,49,0,0,-0.0282973 -134882,1401:393:1,13,49,0,0,-0.0406272 -134883,1401:393:2,13.5,49,0,0,-0.0474713 -134884,1401:394:1,14,49,0,0,-0.0478025 -134885,1401:394:2,14.5,49,0,0,-0.0485271 -134886,1401:495:1,15,49,0,0,-0.046655 -134887,1401:495:2,15.5,49,0,0,-0.036633 -134888,1401:497:1,17,49,0,0,-0.0286728 -134889,1401:497:2,17.5,49,0,0,-0.0265729 -134890,1401:498:1,18,49,0,0,-0.0259066 -134891,1417:498:1,178,49,0,0,-0.00575677 -134892,1417:498:2,178.5,49,0,0,-0.00570458 -134893,1417:499:1,179,49,0,0,-0.00659284 -134894,1417:499:2,179.5,49,0,0,-0.00806926 -134895,1418:390:1,180,49,0,0,-0.00886088 -134896,7418:390:3,-180,49.5,0,0,-0.00756805 -134897,7417:499:4,-179.5,49.5,0,0,-0.00818878 -134898,7417:499:3,-179,49.5,0,0,-0.00845197 -134899,7417:498:4,-178.5,49.5,0,0,-0.00845381 -134900,7417:498:3,-178,49.5,0,0,-0.008336 -134901,7417:497:4,-177.5,49.5,0,0,-0.00810351 -134902,7417:497:3,-177,49.5,0,0,-0.00767153 -134903,7417:496:4,-176.5,49.5,0,0,-0.00722085 -134904,7417:496:3,-176,49.5,0,0,-0.00683318 -134905,7417:495:4,-175.5,49.5,0,0,-0.00661485 -134906,7417:495:3,-175,49.5,0,0,-0.00622523 -134907,7417:394:4,-174.5,49.5,0,0,-0.00596515 -134908,7417:393:4,-173.5,49.5,0,0,-0.00562526 -134909,7417:391:4,-171.5,49.5,0,0,-0.00566541 -134910,7417:391:3,-171,49.5,0,0,-0.00572232 -134911,7417:390:4,-170.5,49.5,0,0,-0.00577855 -134912,7417:390:3,-170,49.5,0,0,-0.00583665 -134913,7416:499:4,-169.5,49.5,0,0,-0.00588091 -134914,7416:499:3,-169,49.5,0,0,-0.00598241 -134915,7416:498:4,-168.5,49.5,0,0,-0.00617425 -134916,7415:495:4,-155.5,49.5,0,0,-0.00842563 -134917,7415:495:3,-155,49.5,0,0,-0.00797104 -134918,7415:393:3,-153,49.5,0,0,-0.0286142 -134919,7415:392:4,-152.5,49.5,0,0,-0.0291459 -134920,7415:392:3,-152,49.5,0,0,-0.0313124 -134921,7415:391:4,-151.5,49.5,0,0,-0.0346597 -134922,7415:391:3,-151,49.5,0,0,-0.0322469 -134923,7415:390:4,-150.5,49.5,0,0,-0.0287707 -134924,7415:390:3,-150,49.5,0,0,-0.030761 -134925,7414:499:4,-149.5,49.5,0,0,-0.0318741 -134926,7414:498:3,-148,49.5,0,0,-0.0416299 -134927,7414:497:4,-147.5,49.5,0,0,-0.0412487 -134928,7414:497:3,-147,49.5,0,0,-0.0424821 -134929,7414:496:4,-146.5,49.5,0,0,-0.0418318 -134930,7414:496:3,-146,49.5,0,0,-0.042355 -134931,7414:495:4,-145.5,49.5,0,0,-0.0433924 -134932,7414:495:3,-145,49.5,0,0,-0.04419 -134933,7414:394:4,-144.5,49.5,0,0,-0.0439056 -134934,7414:394:3,-144,49.5,0,0,-0.043764 -134935,7408:497:3,-87,49.5,0,0,-0.00628925 -134936,7408:496:4,-86.5,49.5,0,0,-0.006504 -134937,7408:496:3,-86,49.5,0,0,-0.00683778 -134938,7408:495:4,-85.5,49.5,0,0,-0.00732766 -134939,7408:495:3,-85,49.5,0,0,-0.00750762 -134940,7408:394:4,-84.5,49.5,0,0,-0.00760857 -134941,7408:394:3,-84,49.5,0,0,-0.00766809 -134942,7408:393:4,-83.5,49.5,0,0,-0.00766637 -134943,7408:393:3,-83,49.5,0,0,-0.00762725 -134944,7408:392:4,-82.5,49.5,0,0,-0.00766127 -134945,7408:392:3,-82,49.5,0,0,-0.00783026 -134946,7408:391:4,-81.5,49.5,0,0,-0.00787049 -134947,7408:391:3,-81,49.5,0,0,-0.00780938 -134948,7408:390:4,-80.5,49.5,0,0,-0.00794978 -134949,7408:390:3,-80,49.5,0,0,-0.00807289 -134950,7407:499:4,-79.5,49.5,0,0,-0.00812336 -134951,7407:499:3,-79,49.5,0,0,-0.00812877 -134952,7407:498:4,-78.5,49.5,0,0,-0.00801907 -134953,7407:498:3,-78,49.5,0,0,-0.00794265 -134954,7407:497:4,-77.5,49.5,0,0,-0.00805129 -134955,7407:497:3,-77,49.5,0,0,-0.00823814 -134956,7407:496:4,-76.5,49.5,0,0,-0.00832116 -134957,7407:496:3,-76,49.5,0,0,-0.00827682 -134958,7407:495:4,-75.5,49.5,0,0,-0.00831562 -134959,7407:495:3,-75,49.5,0,0,-0.00799589 -134960,7407:394:4,-74.5,49.5,0,0,-0.00700715 -134961,7406:394:4,-64.5,49.5,0,0,-0.00611415 -134962,7406:394:3,-64,49.5,0,0,-0.00627668 -134963,7406:393:3,-63,49.5,0,0,-0.00634403 -134964,7406:392:4,-62.5,49.5,0,0,-0.00626553 -134965,7406:392:3,-62,49.5,0,0,-0.00632147 -134966,7406:391:4,-61.5,49.5,0,0,-0.00638648 -134967,7406:391:3,-61,49.5,0,0,-0.00637652 -134968,7406:390:4,-60.5,49.5,0,0,-0.00617425 -134969,7406:390:3,-60,49.5,0,0,-0.00606812 -134970,7405:499:4,-59.5,49.5,0,0,-0.00618113 -134971,7405:499:3,-59,49.5,0,0,-0.00647081 -134972,7405:498:4,-58.5,49.5,0,0,-0.00701653 -134973,7405:498:3,-58,49.5,0,0,-0.00783724 -134974,7405:497:4,-57.5,49.5,0,0,-0.00894019 -134975,7405:497:3,-57,49.5,0,0,-0.0170816 -134976,7405:496:4,-56.5,49.5,0,0,-0.0218541 -134977,7405:496:3,-56,49.5,0,0,-0.0229624 -134978,7405:495:4,-55.5,49.5,0,0,-0.0302539 -134979,7405:495:3,-55,49.5,0,0,-0.0304198 -134980,7405:394:4,-54.5,49.5,0,0,-0.0306562 -134981,7405:394:3,-54,49.5,0,0,-0.0305238 -134982,7405:393:4,-53.5,49.5,0,0,-0.030316 -134983,7405:393:3,-53,49.5,0,0,-0.0302264 -134984,7405:392:4,-52.5,49.5,0,0,-0.0302815 -134985,7405:392:3,-52,49.5,0,0,-0.030496 -134986,7405:391:4,-51.5,49.5,0,0,-0.0305656 -134987,7405:391:3,-51,49.5,0,0,-0.0308312 -134988,7405:390:4,-50.5,49.5,0,0,-0.0309932 -134989,7405:390:3,-50,49.5,0,0,-0.0309366 -134990,7404:499:4,-49.5,49.5,0,0,-0.031341 -134991,7404:499:3,-49,49.5,0,0,-0.03152 -134992,7404:498:4,-48.5,49.5,0,0,-0.0312555 -134993,7404:498:3,-48,49.5,0,0,-0.0303506 -134994,7404:497:4,-47.5,49.5,0,0,-0.0279397 -134995,7404:497:3,-47,49.5,0,0,-0.0250182 -134996,7403:498:4,-38.5,49.5,0,0,-0.0135669 -134997,7403:498:3,-38,49.5,0,0,-0.0167848 -134998,7403:497:4,-37.5,49.5,0,0,-0.037362 -134999,7403:497:3,-37,49.5,0,0,-0.0343442 -135000,7403:496:4,-36.5,49.5,0,0,-0.0331649 -135001,7403:496:3,-36,49.5,0,0,-0.0329835 -135002,7403:495:4,-35.5,49.5,0,0,-0.0433524 -135003,7403:495:3,-35,49.5,0,0,-0.0432625 -135004,7403:394:4,-34.5,49.5,0,0,-0.0455363 -135005,7403:394:3,-34,49.5,0,0,-0.0455257 -135006,7403:393:4,-33.5,49.5,0,0,-0.0453371 -135007,7403:393:3,-33,49.5,0,0,-0.045589 -135008,7403:392:4,-32.5,49.5,0,0,-0.0455681 -135009,7403:392:3,-32,49.5,0,0,-0.0450863 -135010,7403:391:4,-31.5,49.5,0,0,-0.0431131 -135011,7403:391:3,-31,49.5,0,0,-0.0413055 -135012,7403:390:4,-30.5,49.5,0,0,-0.0407677 -135013,7403:390:3,-30,49.5,0,0,-0.043613 -135014,7402:499:4,-29.5,49.5,0,0,-0.0491725 -135015,7402:499:3,-29,49.5,0,0,-0.0535981 -135016,7402:498:4,-28.5,49.5,0,0,-0.0554916 -135017,7402:498:3,-28,49.5,0,0,-0.0601371 -135018,7402:497:4,-27.5,49.5,0,0,-0.0671117 -135019,7402:497:3,-27,49.5,0,0,-0.0666388 -135020,7402:496:4,-26.5,49.5,0,0,-0.0608173 -135021,7402:496:3,-26,49.5,0,0,-0.0561689 -135022,7402:495:4,-25.5,49.5,0,0,-0.0562738 -135023,7402:495:3,-25,49.5,0,0,-0.0572677 -135024,7402:394:4,-24.5,49.5,0,0,-0.0550148 -135025,7402:394:3,-24,49.5,0,0,-0.0513176 -135026,7401:498:4,-18.5,49.5,0,0,-0.0343521 -135027,7401:498:3,-18,49.5,0,0,-0.0572677 -135028,7401:497:4,-17.5,49.5,0,0,-0.0516402 -135029,7401:497:3,-17,49.5,0,0,-0.046601 -135030,7401:496:4,-16.5,49.5,0,0,-0.0781385 -135031,7401:496:3,-16,49.5,0,0,-0.072453 -135032,7401:495:4,-15.5,49.5,0,0,-0.0585264 -135033,7401:495:3,-15,49.5,0,0,-0.0343676 -135034,7401:394:4,-14.5,49.5,0,0,-0.0322912 -135035,7401:394:3,-14,49.5,0,0,-0.0292989 -135036,7401:393:4,-13.5,49.5,0,0,-0.032961 -135037,7401:393:3,-13,49.5,0,0,-0.0325797 -135038,7401:392:4,-12.5,49.5,0,0,-0.0354127 -135039,7401:392:3,-12,49.5,0,0,-0.0316714 -135040,7401:391:4,-11.5,49.5,0,0,-0.0327362 -135041,7401:391:3,-11,49.5,0,0,-0.030705 -135042,7401:390:4,-10.5,49.5,0,0,-0.0274243 -135043,7401:390:3,-10,49.5,0,0,-0.0304475 -135044,7400:499:4,-9.5,49.5,0,0,-0.0348264 -135045,7400:499:3,-9,49.5,0,0,-0.0371315 -135046,7400:498:4,-8.5,49.5,0,0,-0.0366412 -135047,7400:498:3,-8,49.5,0,0,-0.037949 -135048,7400:497:4,-7.5,49.5,0,0,-0.0417452 -135049,7400:497:3,-7,49.5,0,0,-0.045885 -135050,7400:496:4,-6.5,49.5,0,0,-0.047143 -135051,7400:496:3,-6,49.5,0,0,-0.0519654 -135052,7400:495:4,-5.5,49.5,0,0,-0.0541124 -135053,7400:495:3,-5,49.5,0,0,-0.0573616 -135054,7400:394:4,-4.5,49.5,0,0,-0.0615197 -135055,7400:394:3,-4,49.5,0,0,-0.0663882 -135056,7400:393:4,-3.5,49.5,0,0,-0.0694486 -135057,7400:393:3,-3,49.5,0,0,-0.0690886 -135058,7400:392:4,-2.5,49.5,0,0,-0.0659828 -135059,7400:392:3,-2,49.5,0,0,-0.0665292 -135060,7400:391:4,-1.5,49.5,0,0,-0.0689746 -135061,7400:391:3,-1,49.5,0,0,-0.0681973 -135062,7400:390:4,-0.5,49.5,0,0,-0.052634 -135063,1401:392:4,12.5,49.5,0,0,-0.0258127 -135064,1401:393:3,13,49.5,0,0,-0.0340473 -135065,1401:393:4,13.5,49.5,0,0,-0.041774 -135066,1401:394:3,14,49.5,0,0,-0.0472743 -135067,1401:394:4,14.5,49.5,0,0,-0.0494239 -135068,1401:495:3,15,49.5,0,0,-0.0476696 -135069,1401:495:4,15.5,49.5,0,0,-0.030489 -135070,1401:496:4,16.5,49.5,0,0,-0.0170969 -135071,1417:498:3,178,49.5,0,0,-0.00571724 -135072,1417:498:4,178.5,49.5,0,0,-0.00575423 -135073,1417:499:3,179,49.5,0,0,-0.00632571 -135074,1417:499:4,179.5,49.5,0,0,-0.00696054 -135075,1418:390:3,180,49.5,0,0,-0.00756805 -135076,7518:100:1,-180,50,0,0,-0.00690964 -135077,7517:209:2,-179.5,50,0,0,-0.00736203 -135078,7517:209:1,-179,50,0,0,-0.0076732 -135079,7517:208:2,-178.5,50,0,0,-0.00781809 -135080,7517:208:1,-178,50,0,0,-0.00781633 -135081,7517:207:2,-177.5,50,0,0,-0.00781458 -135082,7517:207:1,-177,50,0,0,-0.00765446 -135083,7517:206:2,-176.5,50,0,0,-0.00739651 -135084,7517:206:1,-176,50,0,0,-0.00701496 -135085,7517:205:2,-175.5,50,0,0,-0.0067501 -135086,7517:205:1,-175,50,0,0,-0.00664437 -135087,7517:104:2,-174.5,50,0,0,-0.00591367 -135088,7517:104:1,-174,50,0,0,-0.005716 -135089,7517:103:2,-173.5,50,0,0,-0.00574526 -135090,7517:103:1,-173,50,0,0,-0.00570075 -135091,7517:102:2,-172.5,50,0,0,-0.00565156 -135092,7517:102:1,-172,50,0,0,-0.00565033 -135093,7517:101:2,-171.5,50,0,0,-0.00566918 -135094,7517:101:1,-171,50,0,0,-0.00568936 -135095,7517:100:2,-170.5,50,0,0,-0.00571724 -135096,7517:100:1,-170,50,0,0,-0.00575294 -135097,7516:209:2,-169.5,50,0,0,-0.00579012 -135098,7516:209:1,-169,50,0,0,-0.00589925 -135099,7516:208:2,-168.5,50,0,0,-0.00608704 -135100,7516:207:1,-167,50,0,0,-0.0063243 -135101,7515:102:1,-152,50,0,0,-0.0246025 -135102,7508:207:2,-87.5,50,0,0,-0.00637228 -135103,7508:207:1,-87,50,0,0,-0.00675161 -135104,7508:206:2,-86.5,50,0,0,-0.00708711 -135105,7508:206:1,-86,50,0,0,-0.00741628 -135106,7508:205:2,-85.5,50,0,0,-0.00758998 -135107,7508:205:1,-85,50,0,0,-0.00756466 -135108,7508:104:2,-84.5,50,0,0,-0.00752437 -135109,7508:104:1,-84,50,0,0,-0.00755459 -135110,7508:103:2,-83.5,50,0,0,-0.00755962 -135111,7508:103:1,-83,50,0,0,-0.00754787 -135112,7508:102:2,-82.5,50,0,0,-0.00759844 -135113,7508:102:1,-82,50,0,0,-0.00774012 -135114,7508:101:2,-81.5,50,0,0,-0.00783378 -135115,7508:101:1,-81,50,0,0,-0.00778162 -135116,7508:100:2,-80.5,50,0,0,-0.00789507 -135117,7508:100:1,-80,50,0,0,-0.00801553 -135118,7507:209:2,-79.5,50,0,0,-0.00809266 -135119,7507:209:1,-79,50,0,0,-0.00817238 -135120,7507:208:2,-78.5,50,0,0,-0.00824184 -135121,7507:208:1,-78,50,0,0,-0.0081997 -135122,7507:207:2,-77.5,50,0,0,-0.00807108 -135123,7507:207:1,-77,50,0,0,-0.00818511 -135124,7507:206:2,-76.5,50,0,0,-0.00832303 -135125,7507:206:1,-76,50,0,0,-0.00819424 -135126,7507:205:2,-75.5,50,0,0,-0.00826574 -135127,7507:205:1,-75,50,0,0,-0.00785126 -135128,7507:104:2,-74.5,50,0,0,-0.00703528 -135129,7507:104:1,-74,50,0,0,-0.00618251 -135130,7506:104:2,-64.5,50,0,0,-0.00618385 -135131,7506:104:1,-64,50,0,0,-0.00624189 -135132,7506:103:2,-63.5,50,0,0,-0.00614413 -135133,7506:103:1,-63,50,0,0,-0.0061949 -135134,7506:102:2,-62.5,50,0,0,-0.00611958 -135135,7506:102:1,-62,50,0,0,-0.00610735 -135136,7506:101:2,-61.5,50,0,0,-0.00610872 -135137,7506:101:1,-61,50,0,0,-0.00602378 -135138,7506:100:2,-60.5,50,0,0,-0.00607891 -135139,7506:100:1,-60,50,0,0,-0.00608704 -135140,7505:209:2,-59.5,50,0,0,-0.0060965 -135141,7505:209:1,-59,50,0,0,-0.00661485 -135142,7505:208:2,-58.5,50,0,0,-0.00725141 -135143,7505:208:1,-58,50,0,0,-0.0115253 -135144,7505:207:2,-57.5,50,0,0,-0.0145655 -135145,7505:207:1,-57,50,0,0,-0.0170816 -135146,7505:206:2,-56.5,50,0,0,-0.0185302 -135147,7505:206:1,-56,50,0,0,-0.017827 -135148,7505:205:2,-55.5,50,0,0,-0.0273808 -135149,7505:205:1,-55,50,0,0,-0.0307191 -135150,7505:104:2,-54.5,50,0,0,-0.0310001 -135151,7505:104:1,-54,50,0,0,-0.0310283 -135152,7505:103:2,-53.5,50,0,0,-0.0309084 -135153,7505:103:1,-53,50,0,0,-0.0306911 -135154,7505:102:2,-52.5,50,0,0,-0.0305446 -135155,7505:102:1,-52,50,0,0,-0.0306421 -135156,7505:101:2,-51.5,50,0,0,-0.030768 -135157,7505:101:1,-51,50,0,0,-0.0309719 -135158,7505:100:2,-50.5,50,0,0,-0.0313554 -135159,7505:100:1,-50,50,0,0,-0.0314268 -135160,7504:209:2,-49.5,50,0,0,-0.0314626 -135161,7504:209:1,-49,50,0,0,-0.0313338 -135162,7504:208:2,-48.5,50,0,0,-0.0304613 -135163,7504:208:1,-48,50,0,0,-0.0277184 -135164,7504:207:2,-47.5,50,0,0,-0.0254181 -135165,7503:208:1,-38,50,0,0,-0.0152849 -135166,7503:207:2,-37.5,50,0,0,-0.028465 -135167,7503:207:1,-37,50,0,0,-0.0244582 -135168,7503:206:2,-36.5,50,0,0,-0.0240303 -135169,7503:206:1,-36,50,0,0,-0.0255914 -135170,7503:205:2,-35.5,50,0,0,-0.0274305 -135171,7503:205:1,-35,50,0,0,-0.0428161 -135172,7503:104:2,-34.5,50,0,0,-0.0418412 -135173,7503:104:1,-34,50,0,0,-0.0431528 -135174,7503:103:2,-33.5,50,0,0,-0.0469689 -135175,7503:103:1,-33,50,0,0,-0.0482583 -135176,7503:102:2,-32.5,50,0,0,-0.0489566 -135177,7503:102:1,-32,50,0,0,-0.0496884 -135178,7503:101:2,-31.5,50,0,0,-0.050163 -135179,7503:101:1,-31,50,0,0,-0.0498151 -135180,7503:100:2,-30.5,50,0,0,-0.0488656 -135181,7503:100:1,-30,50,0,0,-0.0495272 -135182,7502:209:2,-29.5,50,0,0,-0.0535607 -135183,7502:209:1,-29,50,0,0,-0.0545806 -135184,7502:208:2,-28.5,50,0,0,-0.0551049 -135185,7502:208:1,-28,50,0,0,-0.0634561 -135186,7502:207:2,-27.5,50,0,0,-0.06631 -135187,7502:207:1,-27,50,0,0,-0.0623333 -135188,7502:206:2,-26.5,50,0,0,-0.054823 -135189,7502:206:1,-26,50,0,0,-0.0511984 -135190,7502:205:2,-25.5,50,0,0,-0.0519411 -135191,7502:205:1,-25,50,0,0,-0.0526217 -135192,7502:104:2,-24.5,50,0,0,-0.0513176 -135193,7502:104:1,-24,50,0,0,-0.0444969 -135194,7502:103:2,-23.5,50,0,0,-0.0345725 -135195,7501:207:2,-17.5,50,0,0,-0.0191278 -135196,7501:207:1,-17,50,0,0,-0.0208427 -135197,7501:206:2,-16.5,50,0,0,-0.0199148 -135198,7501:206:1,-16,50,0,0,-0.0415916 -135199,7501:205:2,-15.5,50,0,0,-0.0561689 -135200,7501:205:1,-15,50,0,0,-0.0461401 -135201,7501:104:2,-14.5,50,0,0,-0.0259183 -135202,7501:104:1,-14,50,0,0,-0.0169821 -135203,7501:103:2,-13.5,50,0,0,-0.0181669 -135204,7501:103:1,-13,50,0,0,-0.0202771 -135205,7501:102:2,-12.5,50,0,0,-0.0215747 -135206,7501:102:1,-12,50,0,0,-0.0203917 -135207,7501:101:2,-11.5,50,0,0,-0.0202954 -135208,7501:101:1,-11,50,0,0,-0.0207348 -135209,7501:100:2,-10.5,50,0,0,-0.0244139 -135210,7501:100:1,-10,50,0,0,-0.0294056 -135211,7500:209:2,-9.5,50,0,0,-0.0317363 -135212,7500:209:1,-9,50,0,0,-0.0334995 -135213,7500:208:2,-8.5,50,0,0,-0.0357956 -135214,7500:208:1,-8,50,0,0,-0.0383866 -135215,7500:207:2,-7.5,50,0,0,-0.0480242 -135216,7500:207:1,-7,50,0,0,-0.0529409 -135217,7500:206:2,-6.5,50,0,0,-0.0527691 -135218,7500:206:1,-6,50,0,0,-0.0574955 -135219,7500:205:2,-5.5,50,0,0,-0.0581849 -135220,7500:205:1,-5,50,0,0,-0.0604336 -135221,7500:104:2,-4.5,50,0,0,-0.0618673 -135222,7500:104:1,-4,50,0,0,-0.063129 -135223,7500:103:2,-3.5,50,0,0,-0.0644632 -135224,7500:103:1,-3,50,0,0,-0.0656886 -135225,7500:102:2,-2.5,50,0,0,-0.066404 -135226,7500:102:1,-2,50,0,0,-0.0677641 -135227,7500:101:2,-1.5,50,0,0,-0.0697448 -135228,7500:101:1,-1,50,0,0,-0.06958 -135229,7500:100:2,-0.5,50,0,0,-0.0563263 -135230,1501:102:1,12,50,0,0,-0.0357546 -135231,1501:102:2,12.5,50,0,0,-0.0362822 -135232,1501:103:1,13,50,0,0,-0.0346993 -135233,1501:103:2,13.5,50,0,0,-0.0312983 -135234,1501:104:1,14,50,0,0,-0.0391789 -135235,1501:104:2,14.5,50,0,0,-0.044641 -135236,1501:205:1,15,50,0,0,-0.0464503 -135237,1501:205:2,15.5,50,0,0,-0.0441595 -135238,1501:206:1,16,50,0,0,-0.0357057 -135239,1517:207:1,177,50,0,0,-0.00643778 -135240,1517:207:2,177.5,50,0,0,-0.00621696 -135241,1517:208:1,178,50,0,0,-0.00592945 -135242,1517:208:2,178.5,50,0,0,-0.00571344 -135243,1517:209:1,179,50,0,0,-0.00596782 -135244,1517:209:2,179.5,50,0,0,-0.00644355 -135245,1518:100:1,180,50,0,0,-0.00690964 -135246,7518:100:3,-180,50.5,0,0,-0.00622388 -135247,7517:209:4,-179.5,50.5,0,0,-0.00645357 -135248,7517:209:3,-179,50.5,0,0,-0.0066547 -135249,7517:208:4,-178.5,50.5,0,0,-0.00679682 -135250,7517:208:3,-178,50.5,0,0,-0.00668286 -135251,7517:207:4,-177.5,50.5,0,0,-0.00660162 -135252,7517:207:3,-177,50.5,0,0,-0.00630604 -135253,7517:206:4,-176.5,50.5,0,0,-0.00600775 -135254,7517:205:3,-175,50.5,0,0,-0.00601574 -135255,7517:104:4,-174.5,50.5,0,0,-0.00630463 -135256,7517:104:3,-174,50.5,0,0,-0.00624745 -135257,7517:103:4,-173.5,50.5,0,0,-0.00614821 -135258,7517:103:3,-173,50.5,0,0,-0.00597045 -135259,7517:102:4,-172.5,50.5,0,0,-0.00581981 -135260,7517:102:3,-172,50.5,0,0,-0.00575165 -135261,7517:101:4,-171.5,50.5,0,0,-0.00571092 -135262,7517:101:3,-171,50.5,0,0,-0.00568812 -135263,7517:100:4,-170.5,50.5,0,0,-0.00569824 -135264,7517:100:3,-170,50.5,0,0,-0.005716 -135265,7516:209:4,-169.5,50.5,0,0,-0.00574398 -135266,7516:209:3,-169,50.5,0,0,-0.00582368 -135267,7516:208:4,-168.5,50.5,0,0,-0.00591632 -135268,7516:208:3,-168,50.5,0,0,-0.00601843 -135269,7516:207:4,-167.5,50.5,0,0,-0.00602513 -135270,7516:207:3,-167,50.5,0,0,-0.00603986 -135271,7508:209:4,-89.5,50.5,0,0,-0.0065446 -135272,7508:209:3,-89,50.5,0,0,-0.00642495 -135273,7508:208:4,-88.5,50.5,0,0,-0.00636382 -135274,7508:208:3,-88,50.5,0,0,-0.00636662 -135275,7508:207:4,-87.5,50.5,0,0,-0.00659723 -135276,7508:207:3,-87,50.5,0,0,-0.00724659 -135277,7508:206:4,-86.5,50.5,0,0,-0.00741956 -135278,7508:206:3,-86,50.5,0,0,-0.00749595 -135279,7508:205:4,-85.5,50.5,0,0,-0.00738828 -135280,7508:205:3,-85,50.5,0,0,-0.00737675 -135281,7508:104:4,-84.5,50.5,0,0,-0.00737349 -135282,7508:104:3,-84,50.5,0,0,-0.00740637 -135283,7508:103:4,-83.5,50.5,0,0,-0.00744935 -135284,7508:103:3,-83,50.5,0,0,-0.00749259 -135285,7508:102:4,-82.5,50.5,0,0,-0.00757139 -135286,7508:102:3,-82,50.5,0,0,-0.00764593 -135287,7508:101:4,-81.5,50.5,0,0,-0.00770921 -135288,7508:101:3,-81,50.5,0,0,-0.00774359 -135289,7508:100:4,-80.5,50.5,0,0,-0.00785296 -135290,7508:100:3,-80,50.5,0,0,-0.00792679 -135291,7507:209:4,-79.5,50.5,0,0,-0.00797814 -135292,7507:209:3,-79,50.5,0,0,-0.00798704 -135293,7507:208:4,-78.5,50.5,0,0,-0.00808546 -135294,7507:208:3,-78,50.5,0,0,-0.008218 -135295,7507:207:4,-77.5,50.5,0,0,-0.00816688 -135296,7507:207:3,-77,50.5,0,0,-0.00817782 -135297,7507:206:4,-76.5,50.5,0,0,-0.00794443 -135298,7507:206:3,-76,50.5,0,0,-0.00751768 -135299,7507:205:4,-75.5,50.5,0,0,-0.00820522 -135300,7507:205:3,-75,50.5,0,0,-0.00789679 -135301,7507:104:4,-74.5,50.5,0,0,-0.00770402 -135302,7507:104:3,-74,50.5,0,0,-0.00658108 -135303,7507:103:4,-73.5,50.5,0,0,-0.00636382 -135304,7506:104:3,-64,50.5,0,0,-0.0062697 -135305,7506:103:4,-63.5,50.5,0,0,-0.00601843 -135306,7506:103:3,-63,50.5,0,0,-0.0060372 -135307,7506:102:4,-62.5,50.5,0,0,-0.00604925 -135308,7506:102:3,-62,50.5,0,0,-0.00607215 -135309,7506:101:4,-61.5,50.5,0,0,-0.00603986 -135310,7506:101:3,-61,50.5,0,0,-0.0060104 -135311,7506:100:4,-60.5,50.5,0,0,-0.00600371 -135312,7505:209:4,-59.5,50.5,0,0,-0.00608973 -135313,7505:209:3,-59,50.5,0,0,-0.00607215 -135314,7505:208:4,-58.5,50.5,0,0,-0.00634682 -135315,7505:208:3,-58,50.5,0,0,-0.00689427 -135316,7505:207:4,-57.5,50.5,0,0,-0.00700249 -135317,7505:207:3,-57,50.5,0,0,-0.00816688 -135318,7505:206:4,-56.5,50.5,0,0,-0.00989505 -135319,7505:206:3,-56,50.5,0,0,-0.0136859 -135320,7505:205:4,-55.5,50.5,0,0,-0.0230666 -135321,7505:205:3,-55,50.5,0,0,-0.0296542 -135322,7505:104:4,-54.5,50.5,0,0,-0.0306283 -135323,7505:104:3,-54,50.5,0,0,-0.030761 -135324,7505:103:4,-53.5,50.5,0,0,-0.0310992 -135325,7505:103:3,-53,50.5,0,0,-0.0311559 -135326,7505:102:4,-52.5,50.5,0,0,-0.0308102 -135327,7505:102:3,-52,50.5,0,0,-0.030733 -135328,7505:101:4,-51.5,50.5,0,0,-0.0308102 -135329,7505:101:3,-51,50.5,0,0,-0.0311063 -135330,7505:100:4,-50.5,50.5,0,0,-0.0313124 -135331,7505:100:3,-50,50.5,0,0,-0.0312127 -135332,7504:209:4,-49.5,50.5,0,0,-0.0310214 -135333,7504:209:3,-49,50.5,0,0,-0.0305516 -135334,7504:208:4,-48.5,50.5,0,0,-0.0297285 -135335,7504:208:3,-48,50.5,0,0,-0.0275616 -135336,7504:207:4,-47.5,50.5,0,0,-0.0245748 -135337,7503:208:3,-38,50.5,0,0,-0.0109946 -135338,7503:207:4,-37.5,50.5,0,0,-0.0143773 -135339,7503:207:3,-37,50.5,0,0,-0.0205256 -135340,7503:206:4,-36.5,50.5,0,0,-0.0291526 -135341,7503:206:3,-36,50.5,0,0,-0.030663 -135342,7503:205:4,-35.5,50.5,0,0,-0.036349 -135343,7503:205:3,-35,50.5,0,0,-0.0395314 -135344,7503:104:4,-34.5,50.5,0,0,-0.0396769 -135345,7503:104:3,-34,50.5,0,0,-0.0380972 -135346,7503:103:4,-33.5,50.5,0,0,-0.039942 -135347,7503:103:3,-33,50.5,0,0,-0.0457367 -135348,7503:102:4,-32.5,50.5,0,0,-0.0485162 -135349,7503:102:3,-32,50.5,0,0,-0.0504666 -135350,7503:101:4,-31.5,50.5,0,0,-0.0517484 -135351,7503:101:3,-31,50.5,0,0,-0.052451 -135352,7503:100:4,-30.5,50.5,0,0,-0.0532747 -135353,7503:100:3,-30,50.5,0,0,-0.0539864 -135354,7502:209:4,-29.5,50.5,0,0,-0.0555173 -135355,7502:209:3,-29,50.5,0,0,-0.0554786 -135356,7502:208:4,-28.5,50.5,0,0,-0.0568678 -135357,7502:208:3,-28,50.5,0,0,-0.0639197 -135358,7502:207:4,-27.5,50.5,0,0,-0.0626561 -135359,7502:207:3,-27,50.5,0,0,-0.0541124 -135360,7502:206:4,-26.5,50.5,0,0,-0.0478467 -135361,7502:206:3,-26,50.5,0,0,-0.0479686 -135362,7502:205:4,-25.5,50.5,0,0,-0.0480463 -135363,7502:205:3,-25,50.5,0,0,-0.0491384 -135364,7501:207:3,-17,50.5,0,0,-0.0173018 -135365,7501:206:4,-16.5,50.5,0,0,-0.017458 -135366,7501:206:3,-16,50.5,0,0,-0.0155862 -135367,7501:205:4,-15.5,50.5,0,0,-0.0150165 -135368,7501:205:3,-15,50.5,0,0,-0.0149593 -135369,7501:104:4,-14.5,50.5,0,0,-0.0152917 -135370,7501:104:3,-14,50.5,0,0,-0.0159185 -135371,7501:103:4,-13.5,50.5,0,0,-0.0162726 -135372,7501:103:3,-13,50.5,0,0,-0.0166946 -135373,7501:102:4,-12.5,50.5,0,0,-0.0172396 -135374,7501:102:3,-12,50.5,0,0,-0.0178149 -135375,7501:101:4,-11.5,50.5,0,0,-0.019089 -135376,7501:101:3,-11,50.5,0,0,-0.022684 -135377,7501:100:4,-10.5,50.5,0,0,-0.0259888 -135378,7501:100:3,-10,50.5,0,0,-0.0262852 -135379,7500:209:4,-9.5,50.5,0,0,-0.0269981 -135380,7500:209:3,-9,50.5,0,0,-0.0304543 -135381,7500:208:4,-8.5,50.5,0,0,-0.0350021 -135382,7500:208:3,-8,50.5,0,0,-0.0366497 -135383,7500:207:4,-7.5,50.5,0,0,-0.0435324 -135384,7500:207:3,-7,50.5,0,0,-0.0512104 -135385,7500:206:4,-6.5,50.5,0,0,-0.051056 -135386,7500:206:3,-6,50.5,0,0,-0.0491839 -135387,7500:205:4,-5.5,50.5,0,0,-0.0515565 -135388,7500:205:3,-5,50.5,0,0,-0.0537231 -135389,7500:104:4,-4.5,50.5,0,0,-0.0561033 -135390,7500:104:3,-4,50.5,0,0,-0.0592009 -135391,7500:103:4,-3.5,50.5,0,0,-0.0608312 -135392,7500:103:3,-3,50.5,0,0,-0.0617947 -135393,7500:102:4,-2.5,50.5,0,0,-0.0628919 -135394,7500:102:3,-2,50.5,0,0,-0.0645999 -135395,7500:101:4,-1.5,50.5,0,0,-0.0689418 -135396,7500:101:3,-1,50.5,0,0,-0.0691538 -135397,7500:100:4,-0.5,50.5,0,0,-0.06589 -135398,1500:100:4,0,50.5,0,0,-0.0475156 -135399,1501:100:4,10.5,50.5,0,0,-0.0275429 -135400,1501:101:3,11,50.5,0,0,-0.0285298 -135401,1501:101:4,11.5,50.5,0,0,-0.0289412 -135402,1501:102:3,12,50.5,0,0,-0.0288494 -135403,1501:103:3,13,50.5,0,0,-0.0190118 -135404,1501:103:4,13.5,50.5,0,0,-0.0196651 -135405,1501:104:3,14,50.5,0,0,-0.0225562 -135406,1501:104:4,14.5,50.5,0,0,-0.0264947 -135407,1501:205:3,15,50.5,0,0,-0.0311843 -135408,1501:205:4,15.5,50.5,0,0,-0.0399328 -135409,1501:206:3,16,50.5,0,0,-0.0449512 -135410,1501:206:4,16.5,50.5,0,0,-0.0415726 -135411,1517:208:3,178,50.5,0,0,-0.00565911 -135412,1517:208:4,178.5,50.5,0,0,-0.00572869 -135413,1517:209:3,179,50.5,0,0,-0.00588223 -135414,1517:209:4,179.5,50.5,0,0,-0.00610329 -135415,1518:100:3,180,50.5,0,0,-0.00622388 -135416,7518:110:1,-180,51,0,0,-0.00576959 -135417,7517:219:2,-179.5,51,0,0,-0.00579916 -135418,7517:219:1,-179,51,0,0,-0.0059506 -135419,7517:218:2,-178.5,51,0,0,-0.00579012 -135420,7517:218:1,-178,51,0,0,-0.00578628 -135421,7517:215:2,-175.5,51,0,0,-0.00557797 -135422,7517:215:1,-175,51,0,0,-0.00566288 -135423,7517:114:2,-174.5,51,0,0,-0.00590842 -135424,7517:114:1,-174,51,0,0,-0.00606812 -135425,7517:113:2,-173.5,51,0,0,-0.00608432 -135426,7517:113:1,-173,51,0,0,-0.00606408 -135427,7517:112:2,-172.5,51,0,0,-0.00595852 -135428,7517:112:1,-172,51,0,0,-0.00587178 -135429,7517:111:2,-171.5,51,0,0,-0.00577726 -135430,7517:111:1,-171,51,0,0,-0.0057198 -135431,7517:110:2,-170.5,51,0,0,-0.00570202 -135432,7517:110:1,-170,51,0,0,-0.00569951 -135433,7516:219:2,-169.5,51,0,0,-0.00568812 -135434,7516:219:1,-169,51,0,0,-0.00568685 -135435,7516:218:2,-168.5,51,0,0,-0.00572741 -135436,7516:218:1,-168,51,0,0,-0.00580558 -135437,7516:217:2,-167.5,51,0,0,-0.00587959 -135438,7516:217:1,-167,51,0,0,-0.00592286 -135439,7516:216:2,-166.5,51,0,0,-0.00599041 -135440,7516:216:1,-166,51,0,0,-0.00602109 -135441,7508:219:2,-89.5,51,0,0,-0.00647081 -135442,7508:219:1,-89,51,0,0,-0.00657086 -135443,7508:218:2,-88.5,51,0,0,-0.00664139 -135444,7508:218:1,-88,51,0,0,-0.00667841 -135445,7508:217:2,-87.5,51,0,0,-0.00698226 -135446,7508:217:1,-87,51,0,0,-0.00722566 -135447,7508:216:2,-86.5,51,0,0,-0.00710923 -135448,7508:216:1,-86,51,0,0,-0.00719999 -135449,7508:215:2,-85.5,51,0,0,-0.00719515 -135450,7508:215:1,-85,51,0,0,-0.0072369 -135451,7508:114:2,-84.5,51,0,0,-0.00726921 -135452,7508:114:1,-84,51,0,0,-0.00734235 -135453,7508:113:2,-83.5,51,0,0,-0.00742783 -135454,7508:113:1,-83,51,0,0,-0.00750931 -135455,7508:112:2,-82.5,51,0,0,-0.00758998 -135456,7508:112:1,-82,51,0,0,-0.00763233 -135457,7508:111:2,-81.5,51,0,0,-0.00765274 -135458,7508:111:1,-81,51,0,0,-0.00770402 -135459,7508:110:2,-80.5,51,0,0,-0.00776778 -135460,7508:110:1,-80,51,0,0,-0.00774701 -135461,7507:219:2,-79.5,51,0,0,-0.00781809 -135462,7507:219:1,-79,51,0,0,-0.00783553 -135463,7507:218:2,-78.5,51,0,0,-0.00783899 -135464,7507:218:1,-78,51,0,0,-0.00801373 -135465,7507:217:2,-77.5,51,0,0,-0.00815418 -135466,7507:217:1,-77,51,0,0,-0.00814875 -135467,7507:216:2,-76.5,51,0,0,-0.00779199 -135468,7507:216:1,-76,51,0,0,-0.00676965 -135469,7507:215:2,-75.5,51,0,0,-0.0069807 -135470,7507:215:1,-75,51,0,0,-0.00772121 -135471,7507:114:2,-74.5,51,0,0,-0.00779374 -135472,7507:114:1,-74,51,0,0,-0.00774533 -135473,7507:113:2,-73.5,51,0,0,-0.00747597 -135474,7507:113:1,-73,51,0,0,-0.00655483 -135475,7507:112:2,-72.5,51,0,0,-0.00601174 -135476,7506:215:2,-65.5,51,0,0,-0.00621283 -135477,7506:215:1,-65,51,0,0,-0.0062725 -135478,7506:114:2,-64.5,51,0,0,-0.00616329 -135479,7506:114:1,-64,51,0,0,-0.00603315 -135480,7506:113:2,-63.5,51,0,0,-0.00598639 -135481,7506:113:1,-63,51,0,0,-0.00602109 -135482,7506:112:2,-62.5,51,0,0,-0.00603986 -135483,7506:112:1,-62,51,0,0,-0.00600905 -135484,7506:111:2,-61.5,51,0,0,-0.0060318 -135485,7506:111:1,-61,51,0,0,-0.00605463 -135486,7506:110:2,-60.5,51,0,0,-0.00615506 -135487,7506:110:1,-60,51,0,0,-0.00619624 -135488,7505:219:2,-59.5,51,0,0,-0.00600107 -135489,7505:219:1,-59,51,0,0,-0.00599972 -135490,7505:218:2,-58.5,51,0,0,-0.006083 -135491,7505:218:1,-58,51,0,0,-0.0062004 -135492,7505:217:2,-57.5,51,0,0,-0.00617564 -135493,7505:217:1,-57,51,0,0,-0.00671865 -135494,7505:216:2,-56.5,51,0,0,-0.00749091 -135495,7505:216:1,-56,51,0,0,-0.0123386 -135496,7505:215:2,-55.5,51,0,0,-0.0172824 -135497,7505:215:1,-55,51,0,0,-0.0215115 -135498,7505:114:2,-54.5,51,0,0,-0.0299593 -135499,7505:114:1,-54,51,0,0,-0.029864 -135500,7505:113:2,-53.5,51,0,0,-0.0297082 -135501,7505:113:1,-53,51,0,0,-0.0309437 -135502,7505:112:2,-52.5,51,0,0,-0.0312768 -135503,7505:112:1,-52,51,0,0,-0.0311063 -135504,7505:111:2,-51.5,51,0,0,-0.0311559 -135505,7505:111:1,-51,51,0,0,-0.0312768 -135506,7505:110:2,-50.5,51,0,0,-0.031341 -135507,7505:110:1,-50,51,0,0,-0.0313124 -135508,7504:219:2,-49.5,51,0,0,-0.0310143 -135509,7504:219:1,-49,51,0,0,-0.0298234 -135510,7504:218:2,-48.5,51,0,0,-0.02775 -135511,7504:218:1,-48,51,0,0,-0.0228796 -135512,7504:217:2,-47.5,51,0,0,-0.0221973 -135513,7503:217:2,-37.5,51,0,0,-0.0113186 -135514,7503:217:1,-37,51,0,0,-0.0144906 -135515,7503:216:2,-36.5,51,0,0,-0.0256843 -135516,7503:216:1,-36,51,0,0,-0.0358531 -135517,7503:215:2,-35.5,51,0,0,-0.0370889 -135518,7503:215:1,-35,51,0,0,-0.0317292 -135519,7503:114:2,-34.5,51,0,0,-0.0351465 -135520,7503:114:1,-34,51,0,0,-0.0321956 -135521,7503:113:2,-33.5,51,0,0,-0.0291658 -135522,7503:113:1,-33,51,0,0,-0.0319469 -135523,7503:112:2,-32.5,51,0,0,-0.0373448 -135524,7503:112:1,-32,51,0,0,-0.0470452 -135525,7503:111:2,-31.5,51,0,0,-0.0515444 -135526,7503:111:1,-31,51,0,0,-0.0528058 -135527,7503:110:2,-30.5,51,0,0,-0.05239 -135528,7503:110:1,-30,51,0,0,-0.0526098 -135529,7502:219:2,-29.5,51,0,0,-0.0547209 -135530,7502:219:1,-29,51,0,0,-0.0563131 -135531,7502:218:2,-28.5,51,0,0,-0.0567221 -135532,7502:218:1,-28,51,0,0,-0.0605894 -135533,7502:217:2,-27.5,51,0,0,-0.060746 -135534,7502:217:1,-27,51,0,0,-0.0503028 -135535,7502:216:2,-26.5,51,0,0,-0.0448269 -135536,7502:216:1,-26,51,0,0,-0.0427472 -135537,7502:215:2,-25.5,51,0,0,-0.0385633 -135538,7502:215:1,-25,51,0,0,-0.0322763 -135539,7502:114:2,-24.5,51,0,0,-0.0273994 -135540,7502:114:1,-24,51,0,0,-0.0191062 -135541,7502:113:2,-23.5,51,0,0,-0.0125896 -135542,7501:216:2,-16.5,51,0,0,-0.0176396 -135543,7501:216:1,-16,51,0,0,-0.0169401 -135544,7501:215:2,-15.5,51,0,0,-0.0149795 -135545,7501:215:1,-15,51,0,0,-0.0140777 -135546,7501:114:2,-14.5,51,0,0,-0.0143162 -135547,7501:114:1,-14,51,0,0,-0.0149325 -135548,7501:113:2,-13.5,51,0,0,-0.01639 -135549,7501:113:1,-13,51,0,0,-0.0171893 -135550,7501:112:2,-12.5,51,0,0,-0.0176157 -135551,7501:112:1,-12,51,0,0,-0.0186683 -135552,7501:111:2,-11.5,51,0,0,-0.0216675 -135553,7501:111:1,-11,51,0,0,-0.0275116 -135554,7501:110:2,-10.5,51,0,0,-0.0306283 -135555,7501:110:1,-10,51,0,0,-0.0301166 -135556,7500:219:2,-9.5,51,0,0,-0.0313196 -135557,7500:219:1,-9,51,0,0,-0.0340551 -135558,7500:218:2,-8.5,51,0,0,-0.0358121 -135559,7500:218:1,-8,51,0,0,-0.0363571 -135560,7500:217:2,-7.5,51,0,0,-0.0401445 -135561,7500:217:1,-7,51,0,0,-0.0447134 -135562,7500:216:2,-6.5,51,0,0,-0.0475485 -135563,7500:216:1,-6,51,0,0,-0.0489677 -135564,7500:215:2,-5.5,51,0,0,-0.0508665 -135565,7500:215:1,-5,51,0,0,-0.0495504 -135566,7500:114:2,-4.5,51,0,0,-0.0500236 -135567,7500:114:1,-4,51,0,0,-0.0526954 -135568,7500:113:2,-3.5,51,0,0,-0.0603063 -135569,7500:113:1,-3,51,0,0,-0.0611458 -135570,7500:112:2,-2.5,51,0,0,-0.0602498 -135571,7500:112:1,-2,51,0,0,-0.0627887 -135572,7500:111:2,-1.5,51,0,0,-0.0668121 -135573,7500:111:1,-1,51,0,0,-0.0685682 -135574,7500:110:2,-0.5,51,0,0,-0.0688768 -135575,1500:110:2,0,51,0,0,-0.0656574 -135576,1500:110:2,0.5,51,0,0,-0.0583487 -135577,1501:110:1,10,51,0,0,-0.0292789 -135578,1501:110:2,10.5,51,0,0,-0.0326913 -135579,1501:111:1,11,51,0,0,-0.0324609 -135580,1501:111:2,11.5,51,0,0,-0.0357466 -135581,1501:112:1,12,51,0,0,-0.0339541 -135582,1501:112:2,12.5,51,0,0,-0.0285363 -135583,1501:113:1,13,51,0,0,-0.018935 -135584,1501:113:2,13.5,51,0,0,-0.0170471 -135585,1501:114:1,14,51,0,0,-0.017411 -135586,1501:114:2,14.5,51,0,0,-0.0188542 -135587,1501:215:1,15,51,0,0,-0.0205116 -135588,1501:216:1,16,51,0,0,-0.0286011 -135589,1501:216:2,16.5,51,0,0,-0.0390622 -135590,1501:217:1,17,51,0,0,-0.0409274 -135591,1517:219:1,179,51,0,0,-0.00586394 -135592,1517:219:2,179.5,51,0,0,-0.00587828 -135593,1518:110:1,180,51,0,0,-0.00576959 -135594,7517:219:4,-179.5,51.5,0,0,-0.00555325 -135595,7517:219:3,-179,51.5,0,0,-0.00559782 -135596,7517:218:4,-178.5,51.5,0,0,-0.00556558 -135597,7517:215:3,-175,51.5,0,0,-0.00565156 -135598,7517:114:4,-174.5,51.5,0,0,-0.00583403 -135599,7517:114:3,-174,51.5,0,0,-0.00596252 -135600,7517:113:4,-173.5,51.5,0,0,-0.00600905 -135601,7517:113:3,-173,51.5,0,0,-0.0060064 -135602,7517:112:4,-172.5,51.5,0,0,-0.00596515 -135603,7517:112:3,-172,51.5,0,0,-0.00588873 -135604,7517:111:4,-171.5,51.5,0,0,-0.00579657 -135605,7517:111:3,-171,51.5,0,0,-0.005716 -135606,7517:110:4,-170.5,51.5,0,0,-0.00564405 -135607,7516:218:4,-168.5,51.5,0,0,-0.00582368 -135608,7516:218:3,-168,51.5,0,0,-0.00582111 -135609,7516:217:4,-167.5,51.5,0,0,-0.00585091 -135610,7516:217:3,-167,51.5,0,0,-0.00587047 -135611,7516:216:4,-166.5,51.5,0,0,-0.00594399 -135612,7516:216:3,-166,51.5,0,0,-0.00598107 -135613,7508:219:4,-89.5,51.5,0,0,-0.0064192 -135614,7508:219:3,-89,51.5,0,0,-0.0065446 -135615,7508:218:4,-88.5,51.5,0,0,-0.00686517 -135616,7508:218:3,-88,51.5,0,0,-0.00684995 -135617,7508:217:4,-87.5,51.5,0,0,-0.0068241 -135618,7508:217:3,-87,51.5,0,0,-0.00688968 -135619,7508:216:4,-86.5,51.5,0,0,-0.00694043 -135620,7508:216:3,-86,51.5,0,0,-0.00698535 -135621,7508:215:4,-85.5,51.5,0,0,-0.00708081 -135622,7508:215:3,-85,51.5,0,0,-0.00719515 -135623,7508:114:4,-84.5,51.5,0,0,-0.00726921 -135624,7508:114:3,-84,51.5,0,0,-0.00737184 -135625,7508:113:4,-83.5,51.5,0,0,-0.00746597 -135626,7508:113:3,-83,51.5,0,0,-0.00755459 -135627,7508:112:4,-82.5,51.5,0,0,-0.00762383 -135628,7508:112:3,-82,51.5,0,0,-0.00764084 -135629,7508:111:4,-81.5,51.5,0,0,-0.00764084 -135630,7508:111:3,-81,51.5,0,0,-0.00765955 -135631,7508:110:4,-80.5,51.5,0,0,-0.00765102 -135632,7508:110:3,-80,51.5,0,0,-0.00759504 -135633,7507:219:4,-79.5,51.5,0,0,-0.00767836 -135634,7507:219:3,-79,51.5,0,0,-0.00769889 -135635,7507:218:4,-78.5,51.5,0,0,-0.00762212 -135636,7507:218:3,-78,51.5,0,0,-0.00769204 -135637,7507:217:4,-77.5,51.5,0,0,-0.00790211 -135638,7507:217:3,-77,51.5,0,0,-0.00795859 -135639,7507:216:4,-76.5,51.5,0,0,-0.00782329 -135640,7507:216:3,-76,51.5,0,0,-0.00736203 -135641,7507:215:4,-75.5,51.5,0,0,-0.00707292 -135642,7507:215:3,-75,51.5,0,0,-0.00704312 -135643,7507:114:4,-74.5,51.5,0,0,-0.00762212 -135644,7507:114:3,-74,51.5,0,0,-0.00796395 -135645,7507:113:4,-73.5,51.5,0,0,-0.00787926 -135646,7507:113:3,-73,51.5,0,0,-0.00701963 -135647,7507:112:4,-72.5,51.5,0,0,-0.00604523 -135648,7506:216:3,-66,51.5,0,0,-0.00597576 -135649,7506:215:4,-65.5,51.5,0,0,-0.00626272 -135650,7506:215:3,-65,51.5,0,0,-0.00604257 -135651,7506:114:4,-64.5,51.5,0,0,-0.00614413 -135652,7506:114:3,-64,51.5,0,0,-0.00604523 -135653,7506:113:4,-63.5,51.5,0,0,-0.00602644 -135654,7506:113:3,-63,51.5,0,0,-0.00602644 -135655,7506:112:4,-62.5,51.5,0,0,-0.0060345 -135656,7506:112:3,-62,51.5,0,0,-0.00593605 -135657,7506:110:4,-60.5,51.5,0,0,-0.00591632 -135658,7506:110:3,-60,51.5,0,0,-0.00611958 -135659,7505:219:4,-59.5,51.5,0,0,-0.00589793 -135660,7505:218:4,-58.5,51.5,0,0,-0.00581464 -135661,7505:218:3,-58,51.5,0,0,-0.00590185 -135662,7505:217:4,-57.5,51.5,0,0,-0.00590449 -135663,7505:217:3,-57,51.5,0,0,-0.00595589 -135664,7505:216:4,-56.5,51.5,0,0,-0.00592286 -135665,7505:216:3,-56,51.5,0,0,-0.00712508 -135666,7505:215:4,-55.5,51.5,0,0,-0.0102342 -135667,7505:215:3,-55,51.5,0,0,-0.0108482 -135668,7505:114:4,-54.5,51.5,0,0,-0.0193139 -135669,7505:114:3,-54,51.5,0,0,-0.0286663 -135670,7505:113:4,-53.5,51.5,0,0,-0.0275616 -135671,7505:113:3,-53,51.5,0,0,-0.0287707 -135672,7505:112:4,-52.5,51.5,0,0,-0.0310143 -135673,7505:112:3,-52,51.5,0,0,-0.0312411 -135674,7505:111:4,-51.5,51.5,0,0,-0.0313912 -135675,7505:111:3,-51,51.5,0,0,-0.0314554 -135676,7505:110:4,-50.5,51.5,0,0,-0.0315777 -135677,7505:110:3,-50,51.5,0,0,-0.0316065 -135678,7504:219:4,-49.5,51.5,0,0,-0.030789 -135679,7504:219:3,-49,51.5,0,0,-0.0292389 -135680,7504:218:4,-48.5,51.5,0,0,-0.0280415 -135681,7504:218:3,-48,51.5,0,0,-0.021958 -135682,7504:217:4,-47.5,51.5,0,0,-0.0182161 -135683,7503:217:3,-37,51.5,0,0,-0.00893423 -135684,7503:216:4,-36.5,51.5,0,0,-0.0111231 -135685,7503:216:3,-36,51.5,0,0,-0.013329 -135686,7503:215:4,-35.5,51.5,0,0,-0.0164047 -135687,7503:215:3,-35,51.5,0,0,-0.0105614 -135688,7503:114:4,-34.5,51.5,0,0,-0.0117254 -135689,7503:114:3,-34,51.5,0,0,-0.0131365 -135690,7503:113:4,-33.5,51.5,0,0,-0.0210458 -135691,7503:113:3,-33,51.5,0,0,-0.0175919 -135692,7503:112:4,-32.5,51.5,0,0,-0.0131836 -135693,7503:112:3,-32,51.5,0,0,-0.0158294 -135694,7503:111:4,-31.5,51.5,0,0,-0.0206788 -135695,7503:111:3,-31,51.5,0,0,-0.0267907 -135696,7503:110:4,-30.5,51.5,0,0,-0.0272321 -135697,7503:110:3,-30,51.5,0,0,-0.0248658 -135698,7502:219:4,-29.5,51.5,0,0,-0.0213568 -135699,7502:219:3,-29,51.5,0,0,-0.0251717 -135700,7502:218:4,-28.5,51.5,0,0,-0.0481132 -135701,7502:218:3,-28,51.5,0,0,-0.0595206 -135702,7502:217:4,-27.5,51.5,0,0,-0.0604051 -135703,7502:217:3,-27,51.5,0,0,-0.0543394 -135704,7502:216:4,-26.5,51.5,0,0,-0.0468712 -135705,7502:216:3,-26,51.5,0,0,-0.0432924 -135706,7502:215:4,-25.5,51.5,0,0,-0.0314126 -135707,7502:215:3,-25,51.5,0,0,-0.0229936 -135708,7502:112:4,-22.5,51.5,0,0,-0.0172165 -135709,7502:112:3,-22,51.5,0,0,-0.0171008 -135710,7501:216:4,-16.5,51.5,0,0,-0.0169973 -135711,7501:216:3,-16,51.5,0,0,-0.0157373 -135712,7501:215:4,-15.5,51.5,0,0,-0.0141029 -135713,7501:215:3,-15,51.5,0,0,-0.0137566 -135714,7501:114:4,-14.5,51.5,0,0,-0.014233 -135715,7501:114:3,-14,51.5,0,0,-0.0152541 -135716,7501:113:4,-13.5,51.5,0,0,-0.0163238 -135717,7501:113:3,-13,51.5,0,0,-0.0162288 -135718,7501:112:4,-12.5,51.5,0,0,-0.0157302 -135719,7501:112:3,-12,51.5,0,0,-0.0165192 -135720,7501:111:4,-11.5,51.5,0,0,-0.018572 -135721,7501:111:3,-11,51.5,0,0,-0.0250069 -135722,7501:110:4,-10.5,51.5,0,0,-0.0316857 -135723,7501:110:3,-10,51.5,0,0,-0.0319323 -135724,7500:219:4,-9.5,51.5,0,0,-0.0327736 -135725,7500:219:3,-9,51.5,0,0,-0.0340395 -135726,7500:218:4,-8.5,51.5,0,0,-0.0347151 -135727,7500:218:3,-8,51.5,0,0,-0.0347628 -135728,7500:217:4,-7.5,51.5,0,0,-0.0387851 -135729,7500:217:3,-7,51.5,0,0,-0.0441393 -135730,7500:216:4,-6.5,51.5,0,0,-0.0460975 -135731,7500:216:3,-6,51.5,0,0,-0.0475485 -135732,7500:215:4,-5.5,51.5,0,0,-0.0484264 -135733,7500:215:3,-5,51.5,0,0,-0.0483925 -135734,7500:114:4,-4.5,51.5,0,0,-0.0485725 -135735,7500:114:3,-4,51.5,0,0,-0.0482249 -135736,7500:113:4,-3.5,51.5,0,0,-0.0476366 -135737,7500:113:3,-3,51.5,0,0,-0.050163 -135738,7500:112:4,-2.5,51.5,0,0,-0.0522318 -135739,7500:112:3,-2,51.5,0,0,-0.0515923 -135740,7500:111:4,-1.5,51.5,0,0,-0.0589107 -135741,7500:111:3,-1,51.5,0,0,-0.0679082 -135742,7500:110:4,-0.5,51.5,0,0,-0.0678759 -135743,1500:110:4,0,51.5,0,0,-0.0681168 -135744,1500:110:4,0.5,51.5,0,0,-0.0664823 -135745,1500:111:3,1,51.5,0,0,-0.0504316 -135746,1500:219:4,9.5,51.5,0,0,-0.026986 -135747,1501:110:3,10,51.5,0,0,-0.0331041 -135748,1501:110:4,10.5,51.5,0,0,-0.0335916 -135749,1501:111:3,11,51.5,0,0,-0.0340862 -135750,1501:111:4,11.5,51.5,0,0,-0.0354209 -135751,1501:112:3,12,51.5,0,0,-0.0357793 -135752,1501:112:4,12.5,51.5,0,0,-0.0335839 -135753,1501:113:3,13,51.5,0,0,-0.0236152 -135754,1501:217:3,17,51.5,0,0,-0.0329234 -135755,1501:217:4,17.5,51.5,0,0,-0.0433524 -135756,1501:218:3,18,51.5,0,0,-0.0399787 -135757,1501:218:4,18.5,51.5,0,0,-0.0322837 -135758,1517:219:4,179.5,51.5,0,0,-0.00577855 -135759,7517:124:2,-174.5,52,0,0,-0.00569318 -135760,7517:124:1,-174,52,0,0,-0.00574783 -135761,7517:123:2,-173.5,52,0,0,-0.00586526 -135762,7517:123:1,-173,52,0,0,-0.00593078 -135763,7517:122:2,-172.5,52,0,0,-0.00594661 -135764,7517:122:1,-172,52,0,0,-0.00590449 -135765,7517:121:2,-171.5,52,0,0,-0.005767 -135766,7517:121:1,-171,52,0,0,-0.00567294 -135767,7516:226:2,-166.5,52,0,0,-0.00596382 -135768,7508:229:2,-89.5,52,0,0,-0.00639073 -135769,7508:229:1,-89,52,0,0,-0.00660605 -135770,7508:228:2,-88.5,52,0,0,-0.00689118 -135771,7508:228:1,-88,52,0,0,-0.00696673 -135772,7508:227:2,-87.5,52,0,0,-0.00699469 -135773,7508:227:1,-87,52,0,0,-0.00699469 -135774,7508:226:2,-86.5,52,0,0,-0.00695435 -135775,7508:226:1,-86,52,0,0,-0.00698226 -135776,7508:225:2,-85.5,52,0,0,-0.0071045 -135777,7508:225:1,-85,52,0,0,-0.00722247 -135778,7508:124:2,-84.5,52,0,0,-0.00729999 -135779,7508:124:1,-84,52,0,0,-0.00738336 -135780,7508:123:2,-83.5,52,0,0,-0.00741795 -135781,7508:123:1,-83,52,0,0,-0.00742289 -135782,7508:122:2,-82.5,52,0,0,-0.00751262 -135783,7508:122:1,-82,52,0,0,-0.00760521 -135784,7508:121:2,-81.5,52,0,0,-0.00759844 -135785,7508:121:1,-81,52,0,0,-0.00755793 -135786,7508:120:2,-80.5,52,0,0,-0.00753276 -135787,7508:120:1,-80,52,0,0,-0.00749259 -135788,7507:229:2,-79.5,52,0,0,-0.00754787 -135789,7507:229:1,-79,52,0,0,-0.00755962 -135790,7507:228:2,-78.5,52,0,0,-0.00742122 -135791,7507:228:1,-78,52,0,0,-0.00734889 -135792,7507:227:2,-77.5,52,0,0,-0.00758488 -135793,7507:227:1,-77,52,0,0,-0.00761705 -135794,7507:226:2,-76.5,52,0,0,-0.00751262 -135795,7507:226:1,-76,52,0,0,-0.00744607 -135796,7507:225:2,-75.5,52,0,0,-0.0073114 -135797,7507:225:1,-75,52,0,0,-0.00716321 -135798,7507:124:2,-74.5,52,0,0,-0.00739154 -135799,7507:124:1,-74,52,0,0,-0.00791264 -135800,7507:123:2,-73.5,52,0,0,-0.00795859 -135801,7507:123:1,-73,52,0,0,-0.00778506 -135802,7507:122:2,-72.5,52,0,0,-0.00629625 -135803,7506:225:2,-65.5,52,0,0,-0.00631448 -135804,7506:225:1,-65,52,0,0,-0.00613596 -135805,7506:124:2,-64.5,52,0,0,-0.00616877 -135806,7506:124:1,-64,52,0,0,-0.00612502 -135807,7506:123:2,-63.5,52,0,0,-0.0060587 -135808,7506:123:1,-63,52,0,0,-0.00603315 -135809,7506:120:2,-60.5,52,0,0,-0.0064078 -135810,7506:120:1,-60,52,0,0,-0.00625716 -135811,7505:229:2,-59.5,52,0,0,-0.00581851 -135812,7505:229:1,-59,52,0,0,-0.00566918 -135813,7505:228:2,-58.5,52,0,0,-0.00587306 -135814,7505:228:1,-58,52,0,0,-0.00589661 -135815,7505:227:2,-57.5,52,0,0,-0.00596649 -135816,7505:227:1,-57,52,0,0,-0.00586263 -135817,7505:226:2,-56.5,52,0,0,-0.00585611 -135818,7505:226:1,-56,52,0,0,-0.00594266 -135819,7505:225:2,-55.5,52,0,0,-0.00695898 -135820,7505:225:1,-55,52,0,0,-0.0074643 -135821,7505:124:2,-54.5,52,0,0,-0.0099704 -135822,7505:124:1,-54,52,0,0,-0.0182859 -135823,7505:123:2,-53.5,52,0,0,-0.0208004 -135824,7505:123:1,-53,52,0,0,-0.0251147 -135825,7505:122:2,-52.5,52,0,0,-0.0285557 -135826,7505:122:1,-52,52,0,0,-0.0300685 -135827,7505:121:2,-51.5,52,0,0,-0.0305516 -135828,7505:121:1,-51,52,0,0,-0.030705 -135829,7505:120:2,-50.5,52,0,0,-0.0306351 -135830,7505:120:1,-50,52,0,0,-0.0305794 -135831,7504:229:2,-49.5,52,0,0,-0.0291858 -135832,7504:229:1,-49,52,0,0,-0.0271641 -135833,7504:228:2,-48.5,52,0,0,-0.0222524 -135834,7504:228:1,-48,52,0,0,-0.0210933 -135835,7504:227:2,-47.5,52,0,0,-0.0193313 -135836,7503:124:1,-34,52,0,0,-0.00849536 -135837,7503:123:2,-33.5,52,0,0,-0.0101003 -135838,7503:123:1,-33,52,0,0,-0.0108507 -135839,7503:122:2,-32.5,52,0,0,-0.0108289 -135840,7503:122:1,-32,52,0,0,-0.0121388 -135841,7503:121:2,-31.5,52,0,0,-0.0120119 -135842,7503:121:1,-31,52,0,0,-0.0121416 -135843,7503:120:2,-30.5,52,0,0,-0.0108047 -135844,7503:120:1,-30,52,0,0,-0.0112481 -135845,7502:229:2,-29.5,52,0,0,-0.00890438 -135846,7502:229:1,-29,52,0,0,-0.00783378 -135847,7502:228:2,-28.5,52,0,0,-0.00763742 -135848,7502:228:1,-28,52,0,0,-0.00795329 -135849,7502:227:2,-27.5,52,0,0,-0.00862124 -135850,7502:227:1,-27,52,0,0,-0.0146441 -135851,7502:226:2,-26.5,52,0,0,-0.0355589 -135852,7502:226:1,-26,52,0,0,-0.0403016 -135853,7502:225:2,-25.5,52,0,0,-0.030489 -135854,7502:225:1,-25,52,0,0,-0.0243697 -135855,7502:124:2,-24.5,52,0,0,-0.023297 -135856,7502:124:1,-24,52,0,0,-0.0236795 -135857,7502:123:1,-23,52,0,0,-0.0160693 -135858,7502:122:2,-22.5,52,0,0,-0.0207722 -135859,7502:122:1,-22,52,0,0,-0.0182612 -135860,7502:121:2,-21.5,52,0,0,-0.0188584 -135861,7501:227:2,-17.5,52,0,0,-0.0171778 -135862,7501:227:1,-17,52,0,0,-0.0167434 -135863,7501:226:2,-16.5,52,0,0,-0.0159006 -135864,7501:226:1,-16,52,0,0,-0.0152541 -135865,7501:225:2,-15.5,52,0,0,-0.0140683 -135866,7501:225:1,-15,52,0,0,-0.0138122 -135867,7501:124:2,-14.5,52,0,0,-0.0145133 -135868,7501:124:1,-14,52,0,0,-0.0157904 -135869,7501:123:2,-13.5,52,0,0,-0.0156176 -135870,7501:123:1,-13,52,0,0,-0.0153916 -135871,7501:122:2,-12.5,52,0,0,-0.0150165 -135872,7501:122:1,-12,52,0,0,-0.0157868 -135873,7501:121:2,-11.5,52,0,0,-0.0174699 -135874,7501:121:1,-11,52,0,0,-0.0198208 -135875,7501:120:2,-10.5,52,0,0,-0.0283553 -135876,7501:120:1,-10,52,0,0,-0.0327884 -135877,7500:229:2,-9.5,52,0,0,-0.0338534 -135878,7500:229:1,-9,52,0,0,-0.0356975 -135879,7500:228:2,-8.5,52,0,0,-0.0376456 -135880,7500:228:1,-8,52,0,0,-0.0383428 -135881,7500:227:2,-7.5,52,0,0,-0.0384573 -135882,7500:227:1,-7,52,0,0,-0.0406366 -135883,7500:226:2,-6.5,52,0,0,-0.0425212 -135884,7500:226:1,-6,52,0,0,-0.0439158 -135885,7500:225:2,-5.5,52,0,0,-0.0445483 -135886,7500:225:1,-5,52,0,0,-0.0449306 -135887,7500:124:2,-4.5,52,0,0,-0.045906 -135888,7500:124:1,-4,52,0,0,-0.0461508 -135889,7500:123:2,-3.5,52,0,0,-0.0454837 -135890,7500:123:1,-3,52,0,0,-0.0447855 -135891,7500:122:2,-2.5,52,0,0,-0.0438852 -135892,7500:122:1,-2,52,0,0,-0.0422575 -135893,7500:121:2,-1.5,52,0,0,-0.0499539 -135894,7500:121:1,-1,52,0,0,-0.0659364 -135895,7500:120:2,-0.5,52,0,0,-0.0662009 -135896,1500:120:2,0,52,0,0,-0.0657811 -135897,1500:120:2,0.5,52,0,0,-0.0664976 -135898,1500:121:1,1,52,0,0,-0.0561949 -135899,1500:121:2,1.5,52,0,0,-0.0435928 -135900,1500:122:1,2,52,0,0,-0.0366751 -135901,1500:229:2,9.5,52,0,0,-0.0330968 -135902,1501:120:1,10,52,0,0,-0.03551 -135903,1501:120:2,10.5,52,0,0,-0.0326467 -135904,1501:121:1,11,52,0,0,-0.0336607 -135905,1501:121:2,11.5,52,0,0,-0.0352027 -135906,1501:122:1,12,52,0,0,-0.0355425 -135907,1501:122:2,12.5,52,0,0,-0.0324536 -135908,1501:123:1,13,52,0,0,-0.0219382 -135909,1501:227:2,17.5,52,0,0,-0.0236581 -135910,1501:228:1,18,52,0,0,-0.0372764 -135911,1501:228:2,18.5,52,0,0,-0.0379142 -135912,1501:229:1,19,52,0,0,-0.035624 -135913,1501:229:2,19.5,52,0,0,-0.0309648 -135914,1517:229:1,179,52,0,0,-0.00580688 -135915,7517:124:3,-174,52.5,0,0,-0.00570709 -135916,7517:123:4,-173.5,52.5,0,0,-0.00577088 -135917,7517:123:3,-173,52.5,0,0,-0.00586132 -135918,7517:122:4,-172.5,52.5,0,0,-0.00585611 -135919,7508:229:4,-89.5,52.5,0,0,-0.00639073 -135920,7508:229:3,-89,52.5,0,0,-0.00672312 -135921,7508:228:4,-88.5,52.5,0,0,-0.00682558 -135922,7508:228:3,-88,52.5,0,0,-0.00693271 -135923,7508:227:4,-87.5,52.5,0,0,-0.00698691 -135924,7508:227:3,-87,52.5,0,0,-0.00701181 -135925,7508:226:4,-86.5,52.5,0,0,-0.00704622 -135926,7508:226:3,-86,52.5,0,0,-0.00708552 -135927,7508:225:4,-85.5,52.5,0,0,-0.00716798 -135928,7508:225:3,-85,52.5,0,0,-0.00727405 -135929,7508:124:4,-84.5,52.5,0,0,-0.007344 -135930,7508:124:3,-84,52.5,0,0,-0.00735873 -135931,7508:123:4,-83.5,52.5,0,0,-0.00737349 -135932,7508:123:3,-83,52.5,0,0,-0.00738993 -135933,7508:122:4,-82.5,52.5,0,0,-0.00736038 -135934,7508:122:3,-82,52.5,0,0,-0.00739486 -135935,7508:121:4,-81.5,52.5,0,0,-0.00745933 -135936,7508:121:3,-81,52.5,0,0,-0.00745437 -135937,7508:120:4,-80.5,52.5,0,0,-0.00742289 -135938,7508:120:3,-80,52.5,0,0,-0.00740803 -135939,7507:229:4,-79.5,52.5,0,0,-0.00742455 -135940,7507:229:3,-79,52.5,0,0,-0.00741628 -135941,7507:228:4,-78.5,52.5,0,0,-0.00728864 -135942,7507:228:3,-78,52.5,0,0,-0.0071808 -135943,7507:227:4,-77.5,52.5,0,0,-0.00728864 -135944,7507:227:3,-77,52.5,0,0,-0.00742783 -135945,7507:226:4,-76.5,52.5,0,0,-0.00727242 -135946,7507:226:3,-76,52.5,0,0,-0.0072064 -135947,7507:225:4,-75.5,52.5,0,0,-0.00714252 -135948,7507:225:3,-75,52.5,0,0,-0.00706352 -135949,7507:124:4,-74.5,52.5,0,0,-0.007095 -135950,7507:124:3,-74,52.5,0,0,-0.00757479 -135951,7507:123:4,-73.5,52.5,0,0,-0.00774875 -135952,7506:226:3,-66,52.5,0,0,-0.00642351 -135953,7506:225:4,-65.5,52.5,0,0,-0.00624325 -135954,7506:225:3,-65,52.5,0,0,-0.00608027 -135955,7506:124:4,-64.5,52.5,0,0,-0.00617425 -135956,7506:124:3,-64,52.5,0,0,-0.00609245 -135957,7506:123:4,-63.5,52.5,0,0,-0.00592945 -135958,7506:121:3,-61,52.5,0,0,-0.00651991 -135959,7506:120:4,-60.5,52.5,0,0,-0.00588873 -135960,7506:120:3,-60,52.5,0,0,-0.00567171 -135961,7505:228:4,-58.5,52.5,0,0,-0.00567045 -135962,7505:228:3,-58,52.5,0,0,-0.00576188 -135963,7505:227:4,-57.5,52.5,0,0,-0.0059176 -135964,7505:227:3,-57,52.5,0,0,-0.00586005 -135965,7505:226:4,-56.5,52.5,0,0,-0.00582498 -135966,7505:226:3,-56,52.5,0,0,-0.0058159 -135967,7505:225:4,-55.5,52.5,0,0,-0.00603049 -135968,7505:225:3,-55,52.5,0,0,-0.00611826 -135969,7505:124:4,-54.5,52.5,0,0,-0.00638081 -135970,7505:124:3,-54,52.5,0,0,-0.00813242 -135971,7505:123:4,-53.5,52.5,0,0,-0.0132813 -135972,7505:123:3,-53,52.5,0,0,-0.0202087 -135973,7505:122:4,-52.5,52.5,0,0,-0.0259948 -135974,7505:122:3,-52,52.5,0,0,-0.0269554 -135975,7505:121:4,-51.5,52.5,0,0,-0.0273745 -135976,7505:121:3,-51,52.5,0,0,-0.0271333 -135977,7505:120:4,-50.5,52.5,0,0,-0.0269004 -135978,7505:120:3,-50,52.5,0,0,-0.030192 -135979,7504:229:4,-49.5,52.5,0,0,-0.0291459 -135980,7504:229:3,-49,52.5,0,0,-0.0264526 -135981,7504:228:4,-48.5,52.5,0,0,-0.0202178 -135982,7504:228:3,-48,52.5,0,0,-0.017855 -135983,7504:227:4,-47.5,52.5,0,0,-0.0168037 -135984,7503:122:4,-32.5,52.5,0,0,-0.00797283 -135985,7503:122:3,-32,52.5,0,0,-0.0088727 -135986,7503:121:4,-31.5,52.5,0,0,-0.0101048 -135987,7503:121:3,-31,52.5,0,0,-0.0108701 -135988,7503:120:4,-30.5,52.5,0,0,-0.010175 -135989,7503:120:3,-30,52.5,0,0,-0.00933747 -135990,7502:229:4,-29.5,52.5,0,0,-0.00861743 -135991,7502:229:3,-29,52.5,0,0,-0.00840875 -135992,7502:228:4,-28.5,52.5,0,0,-0.00808903 -135993,7502:228:3,-28,52.5,0,0,-0.00705566 -135994,7502:227:4,-27.5,52.5,0,0,-0.00644495 -135995,7502:227:3,-27,52.5,0,0,-0.00632713 -135996,7502:226:4,-26.5,52.5,0,0,-0.00712508 -135997,7502:226:3,-26,52.5,0,0,-0.0109017 -135998,7502:225:4,-25.5,52.5,0,0,-0.0286597 -135999,7502:225:3,-25,52.5,0,0,-0.0312839 -136000,7502:124:4,-24.5,52.5,0,0,-0.0278953 -136001,7502:124:3,-24,52.5,0,0,-0.0213954 -136002,7502:123:4,-23.5,52.5,0,0,-0.0214485 -136003,7502:123:3,-23,52.5,0,0,-0.0245469 -136004,7502:122:4,-22.5,52.5,0,0,-0.0245413 -136005,7502:122:3,-22,52.5,0,0,-0.0212797 -136006,7502:121:4,-21.5,52.5,0,0,-0.0223633 -136007,7502:121:3,-21,52.5,0,0,-0.020777 -136008,7502:120:4,-20.5,52.5,0,0,-0.018999 -136009,7502:120:3,-20,52.5,0,0,-0.0186055 -136010,7501:229:4,-19.5,52.5,0,0,-0.0180367 -136011,7501:228:4,-18.5,52.5,0,0,-0.0157549 -136012,7501:228:3,-18,52.5,0,0,-0.0164859 -136013,7501:227:4,-17.5,52.5,0,0,-0.0164342 -136014,7501:227:3,-17,52.5,0,0,-0.0161852 -136015,7501:226:4,-16.5,52.5,0,0,-0.0156809 -136016,7501:226:3,-16,52.5,0,0,-0.0151111 -136017,7501:225:4,-15.5,52.5,0,0,-0.0143516 -136018,7501:225:3,-15,52.5,0,0,-0.013689 -136019,7501:124:4,-14.5,52.5,0,0,-0.0139396 -136020,7501:124:3,-14,52.5,0,0,-0.0143066 -136021,7501:123:4,-13.5,52.5,0,0,-0.0142554 -136022,7501:123:3,-13,52.5,0,0,-0.0144064 -136023,7501:122:4,-12.5,52.5,0,0,-0.0152097 -136024,7501:122:3,-12,52.5,0,0,-0.0168414 -136025,7501:121:4,-11.5,52.5,0,0,-0.0183477 -136026,7501:121:3,-11,52.5,0,0,-0.0197717 -136027,7501:120:4,-10.5,52.5,0,0,-0.0243532 -136028,7501:120:3,-10,52.5,0,0,-0.0296744 -136029,7500:229:4,-9.5,52.5,0,0,-0.0322469 -136030,7500:229:3,-9,52.5,0,0,-0.0348026 -136031,7500:228:4,-8.5,52.5,0,0,-0.0368856 -136032,7500:228:3,-8,52.5,0,0,-0.03908 -136033,7500:227:4,-7.5,52.5,0,0,-0.040646 -136034,7500:227:3,-7,52.5,0,0,-0.0416109 -136035,7500:226:4,-6.5,52.5,0,0,-0.0417452 -136036,7500:226:3,-6,52.5,0,0,-0.0404688 -136037,7500:225:4,-5.5,52.5,0,0,-0.0388297 -136038,7500:225:3,-5,52.5,0,0,-0.0396041 -136039,7500:124:4,-4.5,52.5,0,0,-0.0412675 -136040,7500:124:3,-4,52.5,0,0,-0.0413342 -136041,7500:123:4,-3.5,52.5,0,0,-0.0399238 -136042,7500:123:3,-3,52.5,0,0,-0.0391518 -136043,7500:122:4,-2.5,52.5,0,0,-0.0397771 -136044,7500:122:3,-2,52.5,0,0,-0.0430634 -136045,7500:121:4,-1.5,52.5,0,0,-0.0581442 -136046,7500:121:3,-1,52.5,0,0,-0.0655184 -136047,7500:120:4,-0.5,52.5,0,0,-0.060618 -136048,1500:120:4,0,52.5,0,0,-0.0611029 -136049,1500:120:4,0.5,52.5,0,0,-0.0634261 -136050,1500:121:3,1,52.5,0,0,-0.0619253 -136051,1500:121:4,1.5,52.5,0,0,-0.056908 -136052,1500:122:3,2,52.5,0,0,-0.0532127 -136053,1500:229:4,9.5,52.5,0,0,-0.0339463 -136054,1501:120:3,10,52.5,0,0,-0.0348902 -136055,1501:120:4,10.5,52.5,0,0,-0.0342031 -136056,1501:121:3,11,52.5,0,0,-0.0336837 -136057,1501:121:4,11.5,52.5,0,0,-0.0351787 -136058,1501:122:3,12,52.5,0,0,-0.0330364 -136059,1501:122:4,12.5,52.5,0,0,-0.0284974 -136060,1501:228:3,18,52.5,0,0,-0.0210933 -136061,1501:228:4,18.5,52.5,0,0,-0.0311204 -136062,1501:229:3,19,52.5,0,0,-0.0323871 -136063,1501:229:4,19.5,52.5,0,0,-0.0251091 -136064,7517:237:2,-177.5,53,0,0,-0.00586005 -136065,7517:237:1,-177,53,0,0,-0.00587569 -136066,7517:133:2,-173.5,53,0,0,-0.0057198 -136067,7517:133:1,-173,53,0,0,-0.00581981 -136068,7517:132:2,-172.5,53,0,0,-0.00581464 -136069,7517:132:1,-172,53,0,0,-0.00565033 -136070,7517:131:2,-171.5,53,0,0,-0.00564279 -136071,7508:239:2,-89.5,53,0,0,-0.00639928 -136072,7508:239:1,-89,53,0,0,-0.00668735 -136073,7508:238:2,-88.5,53,0,0,-0.00668585 -136074,7508:238:1,-88,53,0,0,-0.00682711 -136075,7508:237:2,-87.5,53,0,0,-0.00694043 -136076,7508:237:1,-87,53,0,0,-0.00699778 -136077,7508:236:2,-86.5,53,0,0,-0.00709818 -136078,7508:236:1,-86,53,0,0,-0.00715208 -136079,7508:235:2,-85.5,53,0,0,-0.00722404 -136080,7508:235:1,-85,53,0,0,-0.00727732 -136081,7508:134:2,-84.5,53,0,0,-0.00726433 -136082,7508:134:1,-84,53,0,0,-0.00724339 -136083,7508:133:2,-83.5,53,0,0,-0.00726112 -136084,7508:133:1,-83,53,0,0,-0.0073049 -136085,7508:132:2,-82.5,53,0,0,-0.00729513 -136086,7508:132:1,-82,53,0,0,-0.0072595 -136087,7508:131:2,-81.5,53,0,0,-0.00726596 -136088,7508:131:1,-81,53,0,0,-0.00731304 -136089,7508:130:2,-80.5,53,0,0,-0.0073293 -136090,7508:130:1,-80,53,0,0,-0.00730812 -136091,7507:239:2,-79.5,53,0,0,-0.00725141 -136092,7507:239:1,-79,53,0,0,-0.00722889 -136093,7507:238:2,-78.5,53,0,0,-0.00714888 -136094,7507:238:1,-78,53,0,0,-0.00705877 -136095,7507:237:2,-77.5,53,0,0,-0.00706822 -136096,7507:237:1,-77,53,0,0,-0.00727242 -136097,7507:236:2,-76.5,53,0,0,-0.00725629 -136098,7507:236:1,-76,53,0,0,-0.00708711 -136099,7507:235:2,-75.5,53,0,0,-0.00692655 -136100,7507:235:1,-75,53,0,0,-0.00692965 -136101,7507:134:2,-74.5,53,0,0,-0.00699626 -136102,7507:134:1,-74,53,0,0,-0.0072789 -136103,7507:133:2,-73.5,53,0,0,-0.00741462 -136104,7507:133:1,-73,53,0,0,-0.0072064 -136105,7507:132:2,-72.5,53,0,0,-0.00696829 -136106,7507:132:1,-72,53,0,0,-0.00612914 -136107,7506:236:2,-66.5,53,0,0,-0.00634261 -136108,7506:236:1,-66,53,0,0,-0.00627808 -136109,7506:235:2,-65.5,53,0,0,-0.00616601 -136110,7506:235:1,-65,53,0,0,-0.00606812 -136111,7506:134:2,-64.5,53,0,0,-0.00613596 -136112,7506:133:2,-63.5,53,0,0,-0.00564907 -136113,7506:131:1,-61,53,0,0,-0.00618524 -136114,7505:238:1,-58,53,0,0,-0.00563526 -136115,7505:237:2,-57.5,53,0,0,-0.0059519 -136116,7505:237:1,-57,53,0,0,-0.00585353 -136117,7505:236:2,-56.5,53,0,0,-0.00580042 -136118,7505:236:1,-56,53,0,0,-0.00579657 -136119,7505:235:2,-55.5,53,0,0,-0.00582111 -136120,7505:235:1,-55,53,0,0,-0.00588482 -136121,7505:134:2,-54.5,53,0,0,-0.00596912 -136122,7505:134:1,-54,53,0,0,-0.00621144 -136123,7505:133:2,-53.5,53,0,0,-0.0066237 -136124,7505:133:1,-53,53,0,0,-0.00804774 -136125,7505:132:2,-52.5,53,0,0,-0.0174856 -136126,7505:132:1,-52,53,0,0,-0.0269615 -136127,7505:131:2,-51.5,53,0,0,-0.0278764 -136128,7505:131:1,-51,53,0,0,-0.0276117 -136129,7505:130:2,-50.5,53,0,0,-0.0278131 -136130,7505:130:1,-50,53,0,0,-0.0296878 -136131,7504:239:2,-49.5,53,0,0,-0.0298234 -136132,7504:239:1,-49,53,0,0,-0.0251546 -136133,7504:238:2,-48.5,53,0,0,-0.0173993 -136134,7504:238:1,-48,53,0,0,-0.0160512 -136135,7504:237:2,-47.5,53,0,0,-0.0153606 -136136,7503:132:1,-32,53,0,0,-0.00655483 -136137,7503:131:2,-31.5,53,0,0,-0.00662222 -136138,7503:131:1,-31,53,0,0,-0.00695123 -136139,7503:130:2,-30.5,53,0,0,-0.00882731 -136140,7503:130:1,-30,53,0,0,-0.00864049 -136141,7502:239:2,-29.5,53,0,0,-0.00802447 -136142,7502:239:1,-29,53,0,0,-0.00725467 -136143,7502:238:2,-28.5,53,0,0,-0.00705724 -136144,7502:238:1,-28,53,0,0,-0.00661485 -136145,7502:237:2,-27.5,53,0,0,-0.00622802 -136146,7502:237:1,-27,53,0,0,-0.00627527 -136147,7502:236:2,-26.5,53,0,0,-0.00652429 -136148,7502:236:1,-26,53,0,0,-0.00724177 -136149,7502:235:2,-25.5,53,0,0,-0.0113897 -136150,7502:235:1,-25,53,0,0,-0.0180205 -136151,7502:134:2,-24.5,53,0,0,-0.0233445 -136152,7502:134:1,-24,53,0,0,-0.0252574 -136153,7502:133:2,-23.5,53,0,0,-0.0265547 -136154,7502:133:1,-23,53,0,0,-0.0261011 -136155,7502:132:2,-22.5,53,0,0,-0.0247927 -136156,7502:132:1,-22,53,0,0,-0.0203 -136157,7502:131:2,-21.5,53,0,0,-0.0164379 -136158,7502:131:1,-21,53,0,0,-0.0163018 -136159,7502:130:2,-20.5,53,0,0,-0.0192531 -136160,7502:130:1,-20,53,0,0,-0.0196253 -136161,7501:239:2,-19.5,53,0,0,-0.0183229 -136162,7501:239:1,-19,53,0,0,-0.0178993 -136163,7501:238:2,-18.5,53,0,0,-0.0168377 -136164,7501:238:1,-18,53,0,0,-0.0166123 -136165,7501:237:2,-17.5,53,0,0,-0.0163825 -136166,7501:237:1,-17,53,0,0,-0.0160441 -136167,7501:236:2,-16.5,53,0,0,-0.0152883 -136168,7501:236:1,-16,53,0,0,-0.0136461 -136169,7501:235:2,-15.5,53,0,0,-0.0128976 -136170,7501:235:1,-15,53,0,0,-0.0122042 -136171,7501:134:2,-14.5,53,0,0,-0.013034 -136172,7501:134:1,-14,53,0,0,-0.0140525 -136173,7501:133:2,-13.5,53,0,0,-0.0139802 -136174,7501:133:1,-13,53,0,0,-0.0142235 -136175,7501:132:2,-12.5,53,0,0,-0.015897 -136176,7501:132:1,-12,53,0,0,-0.0180772 -136177,7501:131:2,-11.5,53,0,0,-0.0193661 -136178,7501:131:1,-11,53,0,0,-0.0204101 -136179,7501:130:2,-10.5,53,0,0,-0.0236206 -136180,7501:130:1,-10,53,0,0,-0.0280096 -136181,7500:239:2,-9.5,53,0,0,-0.0314198 -136182,7500:239:1,-9,53,0,0,-0.0336068 -136183,7500:238:2,-8.5,53,0,0,-0.0345409 -136184,7500:238:1,-8,53,0,0,-0.036349 -136185,7500:237:2,-7.5,53,0,0,-0.0380711 -136186,7500:237:1,-7,53,0,0,-0.0380623 -136187,7500:236:2,-6.5,53,0,0,-0.0340627 -136188,7500:236:1,-6,53,0,0,-0.0313554 -136189,7500:235:2,-5.5,53,0,0,-0.0329459 -136190,7500:235:1,-5,53,0,0,-0.0358449 -136191,7500:134:2,-4.5,53,0,0,-0.0374735 -136192,7500:134:1,-4,53,0,0,-0.0370721 -136193,7500:133:2,-3.5,53,0,0,-0.0378535 -136194,7500:133:1,-3,53,0,0,-0.0411729 -136195,7500:132:2,-2.5,53,0,0,-0.0435024 -136196,7500:132:1,-2,53,0,0,-0.0491839 -136197,7500:131:2,-1.5,53,0,0,-0.0641458 -136198,7500:131:1,-1,53,0,0,-0.0596602 -136199,7500:130:2,-0.5,53,0,0,-0.057603 -136200,1500:130:2,0,53,0,0,-0.0591594 -136201,1500:130:2,0.5,53,0,0,-0.0609741 -136202,1500:131:1,1,53,0,0,-0.0634411 -136203,1500:131:2,1.5,53,0,0,-0.0636352 -136204,1500:132:1,2,53,0,0,-0.0613759 -136205,1500:239:2,9.5,53,0,0,-0.0313053 -136206,1501:130:1,10,53,0,0,-0.0324092 -136207,1501:130:2,10.5,53,0,0,-0.0333319 -136208,1501:131:1,11,53,0,0,-0.0342657 -136209,1501:131:2,11.5,53,0,0,-0.0334995 -136210,1501:132:1,12,53,0,0,-0.0285363 -136211,1501:239:1,19,53,0,0,-0.0239867 -136212,1501:239:2,19.5,53,0,0,-0.024759 -136213,1502:130:1,20,53,0,0,-0.0249334 -136214,1502:130:2,20.5,53,0,0,-0.0218147 -136215,7517:237:4,-177.5,53.5,0,0,-0.005767 -136216,7517:235:3,-175,53.5,0,0,-0.00572741 -136217,7517:134:4,-174.5,53.5,0,0,-0.00572741 -136218,7517:134:3,-174,53.5,0,0,-0.00577213 -136219,7517:133:4,-173.5,53.5,0,0,-0.00581851 -136220,7517:133:3,-173,53.5,0,0,-0.00577342 -136221,7517:132:4,-172.5,53.5,0,0,-0.00575165 -136222,7517:132:3,-172,53.5,0,0,-0.00569824 -136223,7517:131:4,-171.5,53.5,0,0,-0.00567421 -136224,7517:131:3,-171,53.5,0,0,-0.00565785 -136225,7508:239:4,-89.5,53.5,0,0,-0.00628366 -136226,7508:239:3,-89,53.5,0,0,-0.00656355 -136227,7508:238:4,-88.5,53.5,0,0,-0.00680286 -136228,7508:238:3,-88,53.5,0,0,-0.00690654 -136229,7508:237:4,-87.5,53.5,0,0,-0.00693426 -136230,7508:237:3,-87,53.5,0,0,-0.00696673 -136231,7508:236:4,-86.5,53.5,0,0,-0.00704938 -136232,7508:236:3,-86,53.5,0,0,-0.00714092 -136233,7508:235:4,-85.5,53.5,0,0,-0.00719837 -136234,7508:235:3,-85,53.5,0,0,-0.00714252 -136235,7508:134:4,-84.5,53.5,0,0,-0.007095 -136236,7508:134:3,-84,53.5,0,0,-0.00712029 -136237,7508:133:4,-83.5,53.5,0,0,-0.00715524 -136238,7508:133:3,-83,53.5,0,0,-0.00719676 -136239,7508:132:4,-82.5,53.5,0,0,-0.00718397 -136240,7508:132:3,-82,53.5,0,0,-0.00714252 -136241,7508:131:4,-81.5,53.5,0,0,-0.00715845 -136242,7508:131:3,-81,53.5,0,0,-0.00721599 -136243,7508:130:4,-80.5,53.5,0,0,-0.00724984 -136244,7508:130:3,-80,53.5,0,0,-0.00719676 -136245,7507:239:4,-79.5,53.5,0,0,-0.00709659 -136246,7507:239:3,-79,53.5,0,0,-0.00705249 -136247,7507:238:4,-78.5,53.5,0,0,-0.00701963 -136248,7507:238:3,-78,53.5,0,0,-0.0069281 -136249,7507:237:4,-77.5,53.5,0,0,-0.00686214 -136250,7507:237:3,-77,53.5,0,0,-0.00688968 -136251,7507:236:4,-76.5,53.5,0,0,-0.00699469 -136252,7507:236:3,-76,53.5,0,0,-0.00705724 -136253,7507:235:4,-75.5,53.5,0,0,-0.00694199 -136254,7507:235:3,-75,53.5,0,0,-0.00686979 -136255,7507:134:4,-74.5,53.5,0,0,-0.00706664 -136256,7507:134:3,-74,53.5,0,0,-0.00721599 -136257,7507:133:4,-73.5,53.5,0,0,-0.00738828 -136258,7507:133:3,-73,53.5,0,0,-0.00726596 -136259,7507:132:4,-72.5,53.5,0,0,-0.00714572 -136260,7507:132:3,-72,53.5,0,0,-0.0067441 -136261,7506:237:3,-67,53.5,0,0,-0.00627387 -136262,7506:236:4,-66.5,53.5,0,0,-0.00627668 -136263,7506:236:3,-66,53.5,0,0,-0.00613729 -136264,7506:235:4,-65.5,53.5,0,0,-0.00612502 -136265,7506:235:3,-65,53.5,0,0,-0.00616329 -136266,7506:134:4,-64.5,53.5,0,0,-0.00641493 -136267,7506:131:4,-61.5,53.5,0,0,-0.00590449 -136268,7506:131:3,-61,53.5,0,0,-0.00562526 -136269,7505:238:3,-58,53.5,0,0,-0.00564405 -136270,7505:237:4,-57.5,53.5,0,0,-0.00595985 -136271,7505:237:3,-57,53.5,0,0,-0.00586263 -136272,7505:236:4,-56.5,53.5,0,0,-0.00579787 -136273,7505:236:3,-56,53.5,0,0,-0.00579012 -136274,7505:235:4,-55.5,53.5,0,0,-0.00579916 -136275,7505:235:3,-55,53.5,0,0,-0.00582111 -136276,7505:134:4,-54.5,53.5,0,0,-0.00585874 -136277,7505:134:3,-54,53.5,0,0,-0.00587828 -136278,7505:133:4,-53.5,53.5,0,0,-0.00593605 -136279,7505:133:3,-53,53.5,0,0,-0.00614275 -136280,7505:132:4,-52.5,53.5,0,0,-0.00749595 -136281,7505:132:3,-52,53.5,0,0,-0.0203137 -136282,7505:131:4,-51.5,53.5,0,0,-0.024194 -136283,7505:131:3,-51,53.5,0,0,-0.0283295 -136284,7505:130:4,-50.5,53.5,0,0,-0.0285948 -136285,7505:130:3,-50,53.5,0,0,-0.0301715 -136286,7504:239:4,-49.5,53.5,0,0,-0.0297623 -136287,7504:239:3,-49,53.5,0,0,-0.0241611 -136288,7504:238:4,-48.5,53.5,0,0,-0.0193139 -136289,7504:238:3,-48,53.5,0,0,-0.0148291 -136290,7504:237:4,-47.5,53.5,0,0,-0.0126574 -136291,7503:131:4,-31.5,53.5,0,0,-0.00601439 -136292,7503:131:3,-31,53.5,0,0,-0.00619624 -136293,7503:130:4,-30.5,53.5,0,0,-0.0067501 -136294,7503:130:3,-30,53.5,0,0,-0.00649245 -136295,7502:239:4,-29.5,53.5,0,0,-0.00633134 -136296,7502:239:3,-29,53.5,0,0,-0.00612914 -136297,7502:238:4,-28.5,53.5,0,0,-0.00586653 -136298,7502:238:3,-28,53.5,0,0,-0.00587569 -136299,7502:237:4,-27.5,53.5,0,0,-0.00586394 -136300,7502:237:3,-27,53.5,0,0,-0.00590709 -136301,7502:236:4,-26.5,53.5,0,0,-0.00588223 -136302,7502:236:3,-26,53.5,0,0,-0.00584053 -136303,7502:235:4,-25.5,53.5,0,0,-0.00599171 -136304,7502:235:3,-25,53.5,0,0,-0.00707292 -136305,7502:134:4,-24.5,53.5,0,0,-0.00915807 -136306,7502:134:3,-24,53.5,0,0,-0.01141 -136307,7502:133:4,-23.5,53.5,0,0,-0.0130895 -136308,7502:133:3,-23,53.5,0,0,-0.0147594 -136309,7502:132:4,-22.5,53.5,0,0,-0.0166795 -136310,7502:132:3,-22,53.5,0,0,-0.0168452 -136311,7502:131:4,-21.5,53.5,0,0,-0.0141441 -136312,7502:131:3,-21,53.5,0,0,-0.0134038 -136313,7502:130:4,-20.5,53.5,0,0,-0.0147528 -136314,7502:130:3,-20,53.5,0,0,-0.0153329 -136315,7501:239:4,-19.5,53.5,0,0,-0.0144517 -136316,7501:239:3,-19,53.5,0,0,-0.0156563 -136317,7501:238:4,-18.5,53.5,0,0,-0.0173056 -136318,7501:238:3,-18,53.5,0,0,-0.0160656 -136319,7501:237:4,-17.5,53.5,0,0,-0.0150434 -136320,7501:237:3,-17,53.5,0,0,-0.01347 -136321,7501:236:4,-16.5,53.5,0,0,-0.0115848 -136322,7501:236:3,-16,53.5,0,0,-0.0116601 -136323,7501:235:4,-15.5,53.5,0,0,-0.0118944 -136324,7501:235:3,-15,53.5,0,0,-0.0123525 -136325,7501:134:4,-14.5,53.5,0,0,-0.0131159 -136326,7501:134:3,-14,53.5,0,0,-0.0133649 -136327,7501:133:4,-13.5,53.5,0,0,-0.0146507 -136328,7501:133:3,-13,53.5,0,0,-0.016156 -136329,7501:132:4,-12.5,53.5,0,0,-0.0170701 -136330,7501:132:3,-12,53.5,0,0,-0.0182325 -136331,7501:131:4,-11.5,53.5,0,0,-0.0197584 -136332,7501:131:3,-11,53.5,0,0,-0.0210031 -136333,7501:130:4,-10.5,53.5,0,0,-0.0230978 -136334,7501:130:3,-10,53.5,0,0,-0.0267118 -136335,7500:239:4,-9.5,53.5,0,0,-0.0304266 -136336,7500:239:3,-9,53.5,0,0,-0.0314843 -136337,7500:238:4,-8.5,53.5,0,0,-0.0309226 -136338,7500:238:3,-8,53.5,0,0,-0.0319905 -136339,7500:237:4,-7.5,53.5,0,0,-0.0330364 -136340,7500:237:3,-7,53.5,0,0,-0.0316785 -136341,7500:236:4,-6.5,53.5,0,0,-0.030144 -136342,7500:236:3,-6,53.5,0,0,-0.0301989 -136343,7500:235:4,-5.5,53.5,0,0,-0.0318305 -136344,7500:235:3,-5,53.5,0,0,-0.0345489 -136345,7500:134:4,-4.5,53.5,0,0,-0.0347391 -136346,7500:134:3,-4,53.5,0,0,-0.0355182 -136347,7500:133:4,-3.5,53.5,0,0,-0.0392328 -136348,7500:133:3,-3,53.5,0,0,-0.0430934 -136349,7500:132:4,-2.5,53.5,0,0,-0.046558 -136350,7500:132:3,-2,53.5,0,0,-0.0555043 -136351,7500:131:4,-1.5,53.5,0,0,-0.0645846 -136352,7500:131:3,-1,53.5,0,0,-0.0608599 -136353,7500:130:4,-0.5,53.5,0,0,-0.0571474 -136354,1500:130:4,0,53.5,0,0,-0.0572946 -136355,1500:130:4,0.5,53.5,0,0,-0.0599401 -136356,1500:131:3,1,53.5,0,0,-0.0632476 -136357,1500:131:4,1.5,53.5,0,0,-0.0638597 -136358,1500:132:3,2,53.5,0,0,-0.0594369 -136359,1500:239:4,9.5,53.5,0,0,-0.0236848 -136360,1501:130:3,10,53.5,0,0,-0.0320784 -136361,1501:130:4,10.5,53.5,0,0,-0.0336375 -136362,1501:131:3,11,53.5,0,0,-0.0320855 -136363,1501:131:4,11.5,53.5,0,0,-0.025206 -136364,7517:248:1,-178,54,0,0,-0.00572232 -136365,7517:247:2,-177.5,54,0,0,-0.00573254 -136366,7517:247:1,-177,54,0,0,-0.00575677 -136367,7517:246:2,-176.5,54,0,0,-0.00577213 -136368,7517:246:1,-176,54,0,0,-0.00578757 -136369,7517:245:2,-175.5,54,0,0,-0.00579142 -136370,7517:245:1,-175,54,0,0,-0.00580432 -136371,7517:144:2,-174.5,54,0,0,-0.00581334 -136372,7517:144:1,-174,54,0,0,-0.00582111 -136373,7517:143:2,-173.5,54,0,0,-0.00582885 -136374,7517:143:1,-173,54,0,0,-0.00579397 -136375,7517:142:2,-172.5,54,0,0,-0.00574912 -136376,7517:142:1,-172,54,0,0,-0.00573125 -136377,7517:141:2,-171.5,54,0,0,-0.0056919 -136378,7517:141:1,-171,54,0,0,-0.00569318 -136379,7517:140:2,-170.5,54,0,0,-0.00569696 -136380,7517:140:1,-170,54,0,0,-0.0056818 -136381,7516:249:2,-169.5,54,0,0,-0.00567675 -136382,7516:249:1,-169,54,0,0,-0.00567294 -136383,7516:248:2,-168.5,54,0,0,-0.00568053 -136384,7516:248:1,-168,54,0,0,-0.00568558 -136385,7516:247:2,-167.5,54,0,0,-0.00567803 -136386,7509:141:1,-91,54,0,0,-0.00597844 -136387,7509:140:2,-90.5,54,0,0,-0.00602378 -136388,7509:140:1,-90,54,0,0,-0.00599041 -136389,7508:249:2,-89.5,54,0,0,-0.00643067 -136390,7508:249:1,-89,54,0,0,-0.00703528 -136391,7508:248:2,-88.5,54,0,0,-0.00688048 -136392,7508:248:1,-88,54,0,0,-0.00684841 -136393,7508:247:2,-87.5,54,0,0,-0.00688505 -136394,7508:247:1,-87,54,0,0,-0.0069281 -136395,7508:246:2,-86.5,54,0,0,-0.00698691 -136396,7508:246:1,-86,54,0,0,-0.00703996 -136397,7508:245:2,-85.5,54,0,0,-0.00706035 -136398,7508:245:1,-85,54,0,0,-0.00701029 -136399,7508:144:2,-84.5,54,0,0,-0.00700715 -136400,7508:144:1,-84,54,0,0,-0.00707451 -136401,7508:143:2,-83.5,54,0,0,-0.00708552 -136402,7508:143:1,-83,54,0,0,-0.00704154 -136403,7508:142:2,-82.5,54,0,0,-0.00700092 -136404,7508:142:1,-82,54,0,0,-0.00697606 -136405,7508:141:2,-81.5,54,0,0,-0.00699778 -136406,7508:141:1,-81,54,0,0,-0.00706352 -136407,7508:140:2,-80.5,54,0,0,-0.00710923 -136408,7508:140:1,-80,54,0,0,-0.00707768 -136409,7507:249:2,-79.5,54,0,0,-0.00698535 -136410,7507:249:1,-79,54,0,0,-0.00692194 -136411,7507:248:2,-78.5,54,0,0,-0.00689118 -136412,7507:248:1,-78,54,0,0,-0.00683017 -136413,7507:247:2,-77.5,54,0,0,-0.00672764 -136414,7507:247:1,-77,54,0,0,-0.00665028 -136415,7507:246:2,-76.5,54,0,0,-0.00661193 -136416,7507:246:1,-76,54,0,0,-0.00663842 -136417,7507:245:2,-75.5,54,0,0,-0.00672614 -136418,7507:245:1,-75,54,0,0,-0.00668141 -136419,7507:144:2,-74.5,54,0,0,-0.00675914 -136420,7507:144:1,-74,54,0,0,-0.00659427 -136421,7507:143:1,-73,54,0,0,-0.00678322 -136422,7507:142:2,-72.5,54,0,0,-0.00694661 -136423,7507:142:1,-72,54,0,0,-0.00693116 -136424,7506:249:1,-69,54,0,0,-0.006253 -136425,7506:248:2,-68.5,54,0,0,-0.00634261 -136426,7506:248:1,-68,54,0,0,-0.00632992 -136427,7506:247:2,-67.5,54,0,0,-0.00614413 -136428,7506:247:1,-67,54,0,0,-0.00642923 -136429,7506:246:2,-66.5,54,0,0,-0.00611689 -136430,7506:246:1,-66,54,0,0,-0.00605734 -136431,7506:245:2,-65.5,54,0,0,-0.00614275 -136432,7506:245:1,-65,54,0,0,-0.00630604 -136433,7505:248:1,-58,54,0,0,-0.00577601 -136434,7505:247:2,-57.5,54,0,0,-0.0060345 -136435,7505:247:1,-57,54,0,0,-0.00596119 -136436,7505:246:2,-56.5,54,0,0,-0.00586916 -136437,7505:246:1,-56,54,0,0,-0.00584183 -136438,7505:245:2,-55.5,54,0,0,-0.00583016 -136439,7505:245:1,-55,54,0,0,-0.00580948 -136440,7505:144:2,-54.5,54,0,0,-0.00579527 -136441,7505:144:1,-54,54,0,0,-0.00584053 -136442,7505:143:2,-53.5,54,0,0,-0.00583016 -136443,7505:143:1,-53,54,0,0,-0.00581464 -136444,7505:142:2,-52.5,54,0,0,-0.00594532 -136445,7505:142:1,-52,54,0,0,-0.00733094 -136446,7505:141:2,-51.5,54,0,0,-0.016423 -136447,7505:141:1,-51,54,0,0,-0.0236634 -136448,7505:140:2,-50.5,54,0,0,-0.0266453 -136449,7505:140:1,-50,54,0,0,-0.028381 -136450,7504:249:2,-49.5,54,0,0,-0.0275616 -136451,7504:249:1,-49,54,0,0,-0.0224088 -136452,7504:248:2,-48.5,54,0,0,-0.0174463 -136453,7504:248:1,-48,54,0,0,-0.0132843 -136454,7504:247:2,-47.5,54,0,0,-0.0115279 -136455,7503:141:1,-31,54,0,0,-0.00584441 -136456,7503:140:2,-30.5,54,0,0,-0.00596252 -136457,7503:140:1,-30,54,0,0,-0.00593738 -136458,7502:249:2,-29.5,54,0,0,-0.00581074 -136459,7502:249:1,-29,54,0,0,-0.00579142 -136460,7502:248:2,-28.5,54,0,0,-0.00575165 -136461,7502:248:1,-28,54,0,0,-0.00572232 -136462,7502:247:2,-27.5,54,0,0,-0.00571724 -136463,7502:247:1,-27,54,0,0,-0.00570075 -136464,7502:246:2,-26.5,54,0,0,-0.00570202 -136465,7502:246:1,-26,54,0,0,-0.005716 -136466,7502:245:2,-25.5,54,0,0,-0.0057033 -136467,7502:245:1,-25,54,0,0,-0.00572997 -136468,7502:144:2,-24.5,54,0,0,-0.00582755 -136469,7502:144:1,-24,54,0,0,-0.00667692 -136470,7502:143:2,-23.5,54,0,0,-0.00784598 -136471,7502:143:1,-23,54,0,0,-0.00790737 -136472,7502:142:2,-22.5,54,0,0,-0.00894816 -136473,7502:142:1,-22,54,0,0,-0.00993705 -136474,7502:141:2,-21.5,54,0,0,-0.010545 -136475,7502:141:1,-21,54,0,0,-0.0116211 -136476,7502:140:2,-20.5,54,0,0,-0.0108531 -136477,7502:140:1,-20,54,0,0,-0.00970701 -136478,7501:249:2,-19.5,54,0,0,-0.0108798 -136479,7501:249:1,-19,54,0,0,-0.0107686 -136480,7501:248:2,-18.5,54,0,0,-0.0099704 -136481,7501:248:1,-18,54,0,0,-0.0103467 -136482,7501:247:2,-17.5,54,0,0,-0.0107614 -136483,7501:247:1,-17,54,0,0,-0.011647 -136484,7501:246:2,-16.5,54,0,0,-0.0121524 -136485,7501:246:1,-16,54,0,0,-0.0122535 -136486,7501:245:2,-15.5,54,0,0,-0.0125756 -136487,7501:245:1,-15,54,0,0,-0.0132102 -136488,7501:144:2,-14.5,54,0,0,-0.0137844 -136489,7501:144:1,-14,54,0,0,-0.0145525 -136490,7501:143:2,-13.5,54,0,0,-0.0153881 -136491,7501:143:1,-13,54,0,0,-0.0161162 -136492,7501:142:2,-12.5,54,0,0,-0.0169744 -136493,7501:142:1,-12,54,0,0,-0.0180691 -136494,7501:141:2,-11.5,54,0,0,-0.0195987 -136495,7501:141:1,-11,54,0,0,-0.0214825 -136496,7501:140:2,-10.5,54,0,0,-0.0241885 -136497,7501:140:1,-10,54,0,0,-0.0274929 -136498,7500:249:2,-9.5,54,0,0,-0.0296407 -136499,7500:249:1,-9,54,0,0,-0.0296069 -136500,7500:248:2,-8.5,54,0,0,-0.0290732 -136501,7500:248:1,-8,54,0,0,-0.0288953 -136502,7500:247:2,-7.5,54,0,0,-0.0294659 -136503,7500:247:1,-7,54,0,0,-0.0300481 -136504,7500:246:2,-6.5,54,0,0,-0.030503 -136505,7500:246:1,-6,54,0,0,-0.0321808 -136506,7500:245:2,-5.5,54,0,0,-0.0326392 -136507,7500:245:1,-5,54,0,0,-0.0326392 -136508,7500:144:2,-4.5,54,0,0,-0.0361413 -136509,7500:144:1,-4,54,0,0,-0.039486 -136510,7500:143:2,-3.5,54,0,0,-0.0421994 -136511,7500:143:1,-3,54,0,0,-0.0454734 -136512,7500:142:2,-2.5,54,0,0,-0.0497228 -136513,7500:142:1,-2,54,0,0,-0.0593677 -136514,7500:141:2,-1.5,54,0,0,-0.0601934 -136515,7500:141:1,-1,54,0,0,-0.0548741 -136516,7500:140:2,-0.5,54,0,0,-0.0534236 -136517,1500:140:2,0,54,0,0,-0.0537731 -136518,1500:140:2,0.5,54,0,0,-0.0542132 -136519,1500:141:1,1,54,0,0,-0.0613184 -136520,1500:141:2,1.5,54,0,0,-0.0618381 -136521,1500:142:1,2,54,0,0,-0.0544156 -136522,1500:142:2,2.5,54,0,0,-0.0301784 -136523,1501:140:1,10,54,0,0,-0.0208097 -136524,1501:140:2,10.5,54,0,0,-0.029864 -136525,1501:141:1,11,54,0,0,-0.0223179 -136526,1501:141:2,11.5,54,0,0,-0.0184138 -136527,7517:249:4,-179.5,54.5,0,0,-0.00574526 -136528,7517:249:3,-179,54.5,0,0,-0.00575294 -136529,7517:248:4,-178.5,54.5,0,0,-0.00575423 -136530,7517:248:3,-178,54.5,0,0,-0.00577213 -136531,7517:247:4,-177.5,54.5,0,0,-0.00578757 -136532,7517:247:3,-177,54.5,0,0,-0.00578243 -136533,7517:246:4,-176.5,54.5,0,0,-0.00578114 -136534,7517:246:3,-176,54.5,0,0,-0.00579272 -136535,7517:245:4,-175.5,54.5,0,0,-0.00580558 -136536,7517:245:3,-175,54.5,0,0,-0.00581981 -136537,7517:144:4,-174.5,54.5,0,0,-0.00584441 -136538,7517:144:3,-174,54.5,0,0,-0.00585091 -136539,7517:143:4,-173.5,54.5,0,0,-0.00584183 -136540,7517:143:3,-173,54.5,0,0,-0.00582368 -136541,7517:142:4,-172.5,54.5,0,0,-0.00579142 -136542,7517:142:3,-172,54.5,0,0,-0.00579272 -136543,7517:141:4,-171.5,54.5,0,0,-0.00574655 -136544,7517:141:3,-171,54.5,0,0,-0.00572997 -136545,7517:140:4,-170.5,54.5,0,0,-0.00574398 -136546,7517:140:3,-170,54.5,0,0,-0.00571092 -136547,7516:249:4,-169.5,54.5,0,0,-0.00565911 -136548,7516:249:3,-169,54.5,0,0,-0.0056403 -136549,7516:248:4,-168.5,54.5,0,0,-0.00562026 -136550,7516:248:3,-168,54.5,0,0,-0.00562526 -136551,7509:141:3,-91,54.5,0,0,-0.00608027 -136552,7509:140:4,-90.5,54.5,0,0,-0.00659575 -136553,7509:140:3,-90,54.5,0,0,-0.00662222 -136554,7508:249:4,-89.5,54.5,0,0,-0.00698848 -136555,7508:249:3,-89,54.5,0,0,-0.00705566 -136556,7508:248:4,-88.5,54.5,0,0,-0.00678322 -136557,7508:248:3,-88,54.5,0,0,-0.00677719 -136558,7508:247:4,-87.5,54.5,0,0,-0.00683624 -136559,7508:247:3,-87,54.5,0,0,-0.00686825 -136560,7508:246:4,-86.5,54.5,0,0,-0.00688356 -136561,7508:246:3,-86,54.5,0,0,-0.00692039 -136562,7508:245:4,-85.5,54.5,0,0,-0.00695591 -136563,7508:245:3,-85,54.5,0,0,-0.00696054 -136564,7508:144:4,-84.5,54.5,0,0,-0.00698535 -136565,7508:144:3,-84,54.5,0,0,-0.00703996 -136566,7508:143:4,-83.5,54.5,0,0,-0.00702435 -136567,7508:143:3,-83,54.5,0,0,-0.00695898 -136568,7508:142:4,-82.5,54.5,0,0,-0.00688356 -136569,7508:142:3,-82,54.5,0,0,-0.00684688 -136570,7508:141:4,-81.5,54.5,0,0,-0.00686061 -136571,7508:141:3,-81,54.5,0,0,-0.00692039 -136572,7508:140:4,-80.5,54.5,0,0,-0.00698226 -136573,7508:140:3,-80,54.5,0,0,-0.0069621 -136574,7507:249:4,-79.5,54.5,0,0,-0.00689272 -136575,7507:249:3,-79,54.5,0,0,-0.00683926 -136576,7507:248:4,-78.5,54.5,0,0,-0.0068165 -136577,7507:248:3,-78,54.5,0,0,-0.00678018 -136578,7507:247:4,-77.5,54.5,0,0,-0.00668435 -136579,7507:247:3,-77,54.5,0,0,-0.00658256 -136580,7507:246:4,-76.5,54.5,0,0,-0.00654318 -136581,7507:246:3,-76,54.5,0,0,-0.00655336 -136582,7507:245:4,-75.5,54.5,0,0,-0.00657671 -136583,7507:245:3,-75,54.5,0,0,-0.00659575 -136584,7507:144:4,-74.5,54.5,0,0,-0.00661781 -136585,7507:144:3,-74,54.5,0,0,-0.00645787 -136586,7507:142:4,-72.5,54.5,0,0,-0.00647946 -136587,7507:142:3,-72,54.5,0,0,-0.00682711 -136588,7507:141:4,-71.5,54.5,0,0,-0.00665028 -136589,7507:140:3,-70,54.5,0,0,-0.00628366 -136590,7506:249:4,-69.5,54.5,0,0,-0.00620865 -136591,7506:249:3,-69,54.5,0,0,-0.00626132 -136592,7506:248:4,-68.5,54.5,0,0,-0.00632992 -136593,7506:248:3,-68,54.5,0,0,-0.00633839 -136594,7506:247:4,-67.5,54.5,0,0,-0.00640923 -136595,7506:247:3,-67,54.5,0,0,-0.00622109 -136596,7506:246:4,-66.5,54.5,0,0,-0.00597442 -136597,7506:246:3,-66,54.5,0,0,-0.00607623 -136598,7506:245:4,-65.5,54.5,0,0,-0.00620731 -136599,7506:245:3,-65,54.5,0,0,-0.00604122 -136600,7506:144:4,-64.5,54.5,0,0,-0.00559536 -136601,7505:248:3,-58,54.5,0,0,-0.00595456 -136602,7505:247:4,-57.5,54.5,0,0,-0.0061237 -136603,7505:247:3,-57,54.5,0,0,-0.00611689 -136604,7505:246:3,-56,54.5,0,0,-0.00573506 -136605,7505:245:4,-55.5,54.5,0,0,-0.00589401 -136606,7505:245:3,-55,54.5,0,0,-0.00585484 -136607,7505:144:4,-54.5,54.5,0,0,-0.00581204 -136608,7505:144:3,-54,54.5,0,0,-0.0058496 -136609,7505:143:4,-53.5,54.5,0,0,-0.00582885 -136610,7505:143:3,-53,54.5,0,0,-0.00581981 -136611,7505:142:4,-52.5,54.5,0,0,-0.00590053 -136612,7505:142:3,-52,54.5,0,0,-0.00654607 -136613,7505:141:4,-51.5,54.5,0,0,-0.00858292 -136614,7505:141:3,-51,54.5,0,0,-0.0159292 -136615,7505:140:4,-50.5,54.5,0,0,-0.0198655 -136616,7505:140:3,-50,54.5,0,0,-0.0287118 -136617,7504:249:4,-49.5,54.5,0,0,-0.0251945 -136618,7504:249:3,-49,54.5,0,0,-0.0215699 -136619,7504:248:4,-48.5,54.5,0,0,-0.0190204 -136620,7504:248:3,-48,54.5,0,0,-0.0169516 -136621,7504:247:4,-47.5,54.5,0,0,-0.0153399 -136622,7502:248:3,-28,54.5,0,0,-0.0057198 -136623,7502:247:4,-27.5,54.5,0,0,-0.00573763 -136624,7502:247:3,-27,54.5,0,0,-0.00572488 -136625,7502:246:4,-26.5,54.5,0,0,-0.00571216 -136626,7502:246:3,-26,54.5,0,0,-0.00570965 -136627,7502:245:4,-25.5,54.5,0,0,-0.0057033 -136628,7502:245:3,-25,54.5,0,0,-0.00569569 -136629,7502:144:4,-24.5,54.5,0,0,-0.00575677 -136630,7502:144:3,-24,54.5,0,0,-0.00590577 -136631,7502:143:4,-23.5,54.5,0,0,-0.00626132 -136632,7502:143:3,-23,54.5,0,0,-0.00687744 -136633,7502:142:4,-22.5,54.5,0,0,-0.00741956 -136634,7502:142:3,-22,54.5,0,0,-0.00757813 -136635,7502:141:4,-21.5,54.5,0,0,-0.00804233 -136636,7502:141:3,-21,54.5,0,0,-0.00874311 -136637,7502:140:4,-20.5,54.5,0,0,-0.00886878 -136638,7502:140:3,-20,54.5,0,0,-0.0087568 -136639,7501:249:4,-19.5,54.5,0,0,-0.00916218 -136640,7501:249:3,-19,54.5,0,0,-0.00955022 -136641,7501:248:4,-18.5,54.5,0,0,-0.00972434 -136642,7501:248:3,-18,54.5,0,0,-0.010159 -136643,7501:247:4,-17.5,54.5,0,0,-0.0109848 -136644,7501:247:3,-17,54.5,0,0,-0.011897 -136645,7501:246:4,-16.5,54.5,0,0,-0.0123056 -136646,7501:246:3,-16,54.5,0,0,-0.0124691 -136647,7501:245:4,-15.5,54.5,0,0,-0.0128572 -136648,7501:245:3,-15,54.5,0,0,-0.0134942 -136649,7501:144:4,-14.5,54.5,0,0,-0.0142267 -136650,7501:144:3,-14,54.5,0,0,-0.0147628 -136651,7501:143:4,-13.5,54.5,0,0,-0.0152815 -136652,7501:143:3,-13,54.5,0,0,-0.0160332 -136653,7501:142:4,-12.5,54.5,0,0,-0.0170088 -136654,7501:142:3,-12,54.5,0,0,-0.0180002 -136655,7501:141:4,-11.5,54.5,0,0,-0.0195459 -136656,7501:141:3,-11,54.5,0,0,-0.0211506 -136657,7501:140:4,-10.5,54.5,0,0,-0.0227404 -136658,7501:140:3,-10,54.5,0,0,-0.0248826 -136659,7500:249:4,-9.5,54.5,0,0,-0.0266332 -136660,7500:249:3,-9,54.5,0,0,-0.0273808 -136661,7500:248:4,-8.5,54.5,0,0,-0.0278511 -136662,7500:248:3,-8,54.5,0,0,-0.0279842 -136663,7500:247:4,-7.5,54.5,0,0,-0.0280096 -136664,7500:247:3,-7,54.5,0,0,-0.0288494 -136665,7500:246:4,-6.5,54.5,0,0,-0.0310283 -136666,7500:246:3,-6,54.5,0,0,-0.0347628 -136667,7500:245:4,-5.5,54.5,0,0,-0.0363073 -136668,7500:245:3,-5,54.5,0,0,-0.0372251 -136669,7500:144:4,-4.5,54.5,0,0,-0.0414292 -136670,7500:144:3,-4,54.5,0,0,-0.0422091 -136671,7500:143:4,-3.5,54.5,0,0,-0.0430537 -136672,7500:143:3,-3,54.5,0,0,-0.045853 -136673,7500:142:4,-2.5,54.5,0,0,-0.0495504 -136674,7500:142:3,-2,54.5,0,0,-0.0576166 -136675,7500:141:4,-1.5,54.5,0,0,-0.0599821 -136676,7500:141:3,-1,54.5,0,0,-0.0532997 -136677,7500:140:4,-0.5,54.5,0,0,-0.0533739 -136678,1500:140:4,0,54.5,0,0,-0.0555561 -136679,1500:140:4,0.5,54.5,0,0,-0.0568415 -136680,1500:141:3,1,54.5,0,0,-0.0598139 -136681,1500:141:4,1.5,54.5,0,0,-0.0613614 -136682,1500:142:3,2,54.5,0,0,-0.0498846 -136683,1500:142:4,2.5,54.5,0,0,-0.0253605 -136684,1501:140:4,10.5,54.5,0,0,-0.0197895 -136685,1501:141:3,11,54.5,0,0,-0.0204746 -136686,1501:141:4,11.5,54.5,0,0,-0.0181058 -136687,7518:350:1,-180,55,0,0,-0.00578628 -136688,7517:459:2,-179.5,55,0,0,-0.00578243 -136689,7517:459:1,-179,55,0,0,-0.00577601 -136690,7517:458:2,-178.5,55,0,0,-0.00577471 -136691,7517:458:1,-178,55,0,0,-0.00577088 -136692,7517:457:2,-177.5,55,0,0,-0.00575037 -136693,7517:457:1,-177,55,0,0,-0.00576059 -136694,7517:456:2,-176.5,55,0,0,-0.00579397 -136695,7517:456:1,-176,55,0,0,-0.00584053 -136696,7517:455:2,-175.5,55,0,0,-0.00587959 -136697,7517:455:1,-175,55,0,0,-0.00590577 -136698,7517:354:2,-174.5,55,0,0,-0.00590709 -136699,7517:354:1,-174,55,0,0,-0.00589925 -136700,7517:353:2,-173.5,55,0,0,-0.00586526 -136701,7517:353:1,-173,55,0,0,-0.00585222 -136702,7517:352:2,-172.5,55,0,0,-0.0058496 -136703,7517:352:1,-172,55,0,0,-0.00584703 -136704,7517:351:2,-171.5,55,0,0,-0.00578369 -136705,7517:351:1,-171,55,0,0,-0.00577601 -136706,7517:350:2,-170.5,55,0,0,-0.00574526 -136707,7517:350:1,-170,55,0,0,-0.00568685 -136708,7509:351:1,-91,55,0,0,-0.00611958 -136709,7509:350:2,-90.5,55,0,0,-0.00667098 -136710,7509:350:1,-90,55,0,0,-0.00698226 -136711,7508:459:2,-89.5,55,0,0,-0.00712349 -136712,7508:459:1,-89,55,0,0,-0.00700558 -136713,7508:458:2,-88.5,55,0,0,-0.0067291 -136714,7508:458:1,-88,55,0,0,-0.00672162 -136715,7508:457:2,-87.5,55,0,0,-0.00676662 -136716,7508:457:1,-87,55,0,0,-0.00678926 -136717,7508:456:2,-86.5,55,0,0,-0.00682864 -136718,7508:456:1,-86,55,0,0,-0.00687436 -136719,7508:455:2,-85.5,55,0,0,-0.00691579 -136720,7508:455:1,-85,55,0,0,-0.00694505 -136721,7508:354:2,-84.5,55,0,0,-0.00696517 -136722,7508:354:1,-84,55,0,0,-0.00696985 -136723,7508:353:2,-83.5,55,0,0,-0.00693582 -136724,7508:353:1,-83,55,0,0,-0.00689736 -136725,7508:352:2,-82.5,55,0,0,-0.00682711 -136726,7508:352:1,-82,55,0,0,-0.00675914 -136727,7508:351:2,-81.5,55,0,0,-0.00673061 -136728,7508:351:1,-81,55,0,0,-0.00675459 -136729,7508:350:2,-80.5,55,0,0,-0.00681044 -136730,7508:350:1,-80,55,0,0,-0.00682558 -136731,7507:459:2,-79.5,55,0,0,-0.00678773 -136732,7507:459:1,-79,55,0,0,-0.00675914 -136733,7507:458:2,-78.5,55,0,0,-0.0067501 -136734,7507:458:1,-78,55,0,0,-0.00669775 -136735,7507:457:2,-77.5,55,0,0,-0.00660749 -136736,7507:457:1,-77,55,0,0,-0.00651558 -136737,7507:456:2,-76.5,55,0,0,-0.00646936 -136738,7507:456:1,-76,55,0,0,-0.00646221 -136739,7507:455:2,-75.5,55,0,0,-0.00646795 -136740,7507:455:1,-75,55,0,0,-0.00648809 -136741,7507:354:2,-74.5,55,0,0,-0.00650687 -136742,7507:354:1,-74,55,0,0,-0.00650979 -136743,7507:353:2,-73.5,55,0,0,-0.00651558 -136744,7507:352:1,-72,55,0,0,-0.00661337 -136745,7507:351:2,-71.5,55,0,0,-0.00668885 -136746,7507:351:1,-71,55,0,0,-0.00655919 -136747,7507:350:2,-70.5,55,0,0,-0.00632992 -136748,7507:350:1,-70,55,0,0,-0.00615644 -136749,7506:459:2,-69.5,55,0,0,-0.00617015 -136750,7506:459:1,-69,55,0,0,-0.00624884 -136751,7506:458:2,-68.5,55,0,0,-0.00620731 -136752,7506:458:1,-68,55,0,0,-0.0061237 -136753,7506:457:2,-67.5,55,0,0,-0.0060965 -136754,7506:457:1,-67,55,0,0,-0.00600241 -136755,7506:456:2,-66.5,55,0,0,-0.00605061 -136756,7506:456:1,-66,55,0,0,-0.00612777 -136757,7506:455:2,-65.5,55,0,0,-0.00621557 -136758,7506:455:1,-65,55,0,0,-0.00561527 -136759,7505:458:2,-58.5,55,0,0,-0.00595719 -136760,7505:458:1,-58,55,0,0,-0.00613459 -136761,7505:457:2,-57.5,55,0,0,-0.00618113 -136762,7505:455:2,-55.5,55,0,0,-0.0056818 -136763,7505:455:1,-55,55,0,0,-0.00567803 -136764,7505:354:2,-54.5,55,0,0,-0.005877 -136765,7505:354:1,-54,55,0,0,-0.00582498 -136766,7505:353:2,-53.5,55,0,0,-0.00579142 -136767,7505:353:1,-53,55,0,0,-0.00583273 -136768,7505:352:2,-52.5,55,0,0,-0.0059519 -136769,7505:352:1,-52,55,0,0,-0.00668141 -136770,7505:351:2,-51.5,55,0,0,-0.00827682 -136771,7505:351:1,-51,55,0,0,-0.0106276 -136772,7505:350:2,-50.5,55,0,0,-0.00769204 -136773,7505:350:1,-50,55,0,0,-0.0215503 -136774,7504:459:2,-49.5,55,0,0,-0.0275053 -136775,7504:459:1,-49,55,0,0,-0.0217262 -136776,7504:458:2,-48.5,55,0,0,-0.0160981 -136777,7504:458:1,-48,55,0,0,-0.013326 -136778,7504:457:2,-47.5,55,0,0,-0.0133111 -136779,7502:456:1,-26,55,0,0,-0.00568685 -136780,7502:455:2,-25.5,55,0,0,-0.00569951 -136781,7502:455:1,-25,55,0,0,-0.0056843 -136782,7502:354:2,-24.5,55,0,0,-0.00568307 -136783,7502:354:1,-24,55,0,0,-0.00572741 -136784,7502:353:2,-23.5,55,0,0,-0.00578243 -136785,7502:353:1,-23,55,0,0,-0.00580688 -136786,7502:352:2,-22.5,55,0,0,-0.0058835 -136787,7502:352:1,-22,55,0,0,-0.0060318 -136788,7502:351:2,-21.5,55,0,0,-0.00629203 -136789,7502:351:1,-21,55,0,0,-0.00664879 -136790,7502:350:2,-20.5,55,0,0,-0.00732114 -136791,7502:350:1,-20,55,0,0,-0.00795507 -136792,7501:459:2,-19.5,55,0,0,-0.00869455 -136793,7501:459:1,-19,55,0,0,-0.0103237 -136794,7501:458:2,-18.5,55,0,0,-0.0109725 -136795,7501:458:1,-18,55,0,0,-0.0110982 -136796,7501:457:2,-17.5,55,0,0,-0.0113668 -136797,7501:457:1,-17,55,0,0,-0.0120201 -136798,7501:456:2,-16.5,55,0,0,-0.0124942 -136799,7501:456:1,-16,55,0,0,-0.0127626 -136800,7501:455:2,-15.5,55,0,0,-0.0130778 -136801,7501:455:1,-15,55,0,0,-0.0135395 -136802,7501:354:2,-14.5,55,0,0,-0.0139709 -136803,7501:354:1,-14,55,0,0,-0.014281 -136804,7501:353:2,-13.5,55,0,0,-0.0148025 -136805,7501:353:1,-13,55,0,0,-0.015762 -136806,7501:352:2,-12.5,55,0,0,-0.0169173 -136807,7501:352:1,-12,55,0,0,-0.017723 -136808,7501:351:2,-11.5,55,0,0,-0.0185552 -136809,7501:351:1,-11,55,0,0,-0.020424 -136810,7501:350:2,-10.5,55,0,0,-0.0223482 -136811,7501:350:1,-10,55,0,0,-0.0237923 -136812,7500:459:2,-9.5,55,0,0,-0.0247982 -136813,7500:459:1,-9,55,0,0,-0.0254758 -136814,7500:458:2,-8.5,55,0,0,-0.0261781 -136815,7500:458:1,-8,55,0,0,-0.0267483 -136816,7500:457:2,-7.5,55,0,0,-0.0273001 -136817,7500:457:1,-7,55,0,0,-0.0285168 -136818,7500:456:2,-6.5,55,0,0,-0.0308593 -136819,7500:456:1,-6,55,0,0,-0.0324092 -136820,7500:455:2,-5.5,55,0,0,-0.0326913 -136821,7500:455:1,-5,55,0,0,-0.0386517 -136822,7500:354:2,-4.5,55,0,0,-0.0419764 -136823,7500:354:1,-4,55,0,0,-0.041928 -136824,7500:353:2,-3.5,55,0,0,-0.04259 -136825,7500:353:1,-3,55,0,0,-0.0445383 -136826,7500:352:2,-2.5,55,0,0,-0.0480463 -136827,7500:352:1,-2,55,0,0,-0.0536354 -136828,7500:351:2,-1.5,55,0,0,-0.0578459 -136829,7500:351:1,-1,55,0,0,-0.0526464 -136830,7500:350:2,-0.5,55,0,0,-0.0516765 -136831,1500:350:2,0,55,0,0,-0.0511984 -136832,1500:350:2,0.5,55,0,0,-0.047991 -136833,1500:351:1,1,55,0,0,-0.0537857 -136834,1500:351:2,1.5,55,0,0,-0.0605894 -136835,1500:352:1,2,55,0,0,-0.057603 -136836,1500:352:2,2.5,55,0,0,-0.0244085 -136837,1501:350:2,10.5,55,0,0,-0.0251034 -136838,1501:351:1,11,55,0,0,-0.0261604 -136839,1501:351:2,11.5,55,0,0,-0.023297 -136840,1517:350:2,170.5,55,0,0,-0.00646361 -136841,1517:351:1,171,55,0,0,-0.00646506 -136842,1517:459:2,179.5,55,0,0,-0.00578498 -136843,1518:350:1,180,55,0,0,-0.00578628 -136844,7518:350:3,-180,55.5,0,0,-0.00578243 -136845,7517:459:4,-179.5,55.5,0,0,-0.00576575 -136846,7517:459:3,-179,55.5,0,0,-0.00575423 -136847,7517:458:4,-178.5,55.5,0,0,-0.00573888 -136848,7517:458:3,-178,55.5,0,0,-0.00572997 -136849,7517:457:4,-177.5,55.5,0,0,-0.00576317 -136850,7517:457:3,-177,55.5,0,0,-0.00582237 -136851,7517:456:4,-176.5,55.5,0,0,-0.00589137 -136852,7517:456:3,-176,55.5,0,0,-0.00594794 -136853,7517:455:4,-175.5,55.5,0,0,-0.00598375 -136854,7517:455:3,-175,55.5,0,0,-0.00597844 -136855,7517:354:4,-174.5,55.5,0,0,-0.00594794 -136856,7517:354:3,-174,55.5,0,0,-0.00590709 -136857,7517:353:4,-173.5,55.5,0,0,-0.00588614 -136858,7517:353:3,-173,55.5,0,0,-0.00587306 -136859,7517:352:4,-172.5,55.5,0,0,-0.00582628 -136860,7517:352:3,-172,55.5,0,0,-0.0057198 -136861,7517:351:4,-171.5,55.5,0,0,-0.00570581 -136862,7517:351:3,-171,55.5,0,0,-0.00566165 -136863,7509:351:3,-91,55.5,0,0,-0.00609518 -136864,7509:350:4,-90.5,55.5,0,0,-0.00666062 -136865,7509:350:3,-90,55.5,0,0,-0.00693271 -136866,7508:459:4,-89.5,55.5,0,0,-0.0070478 -136867,7508:459:3,-89,55.5,0,0,-0.00690809 -136868,7508:458:4,-88.5,55.5,0,0,-0.0066948 -136869,7508:458:3,-88,55.5,0,0,-0.00668435 -136870,7508:457:4,-87.5,55.5,0,0,-0.00670822 -136871,7508:457:3,-87,55.5,0,0,-0.00674259 -136872,7508:456:4,-86.5,55.5,0,0,-0.00678322 -136873,7508:456:3,-86,55.5,0,0,-0.00683318 -136874,7508:455:4,-85.5,55.5,0,0,-0.00689736 -136875,7508:455:3,-85,55.5,0,0,-0.00692655 -136876,7508:354:4,-84.5,55.5,0,0,-0.00691269 -136877,7508:354:3,-84,55.5,0,0,-0.00684079 -136878,7508:353:4,-83.5,55.5,0,0,-0.00678474 -136879,7508:353:3,-83,55.5,0,0,-0.00677871 -136880,7508:352:4,-82.5,55.5,0,0,-0.00675313 -136881,7508:352:3,-82,55.5,0,0,-0.00670822 -136882,7508:351:4,-81.5,55.5,0,0,-0.00666361 -136883,7508:351:3,-81,55.5,0,0,-0.0066547 -136884,7508:350:4,-80.5,55.5,0,0,-0.00667841 -136885,7508:350:3,-80,55.5,0,0,-0.00670371 -136886,7507:459:4,-79.5,55.5,0,0,-0.00670371 -136887,7507:459:3,-79,55.5,0,0,-0.00670371 -136888,7507:458:4,-78.5,55.5,0,0,-0.00667991 -136889,7507:458:3,-78,55.5,0,0,-0.00660605 -136890,7507:457:4,-77.5,55.5,0,0,-0.00651991 -136891,7507:457:3,-77,55.5,0,0,-0.0064335 -136892,7507:456:4,-76.5,55.5,0,0,-0.00635812 -136893,7507:456:3,-76,55.5,0,0,-0.00631585 -136894,7507:455:4,-75.5,55.5,0,0,-0.00629203 -136895,7507:455:3,-75,55.5,0,0,-0.00628226 -136896,7507:354:4,-74.5,55.5,0,0,-0.00633134 -136897,7507:354:3,-74,55.5,0,0,-0.00639785 -136898,7507:353:4,-73.5,55.5,0,0,-0.0064192 -136899,7507:353:3,-73,55.5,0,0,-0.00641781 -136900,7507:352:4,-72.5,55.5,0,0,-0.0062544 -136901,7507:352:3,-72,55.5,0,0,-0.00639498 -136902,7507:351:4,-71.5,55.5,0,0,-0.0066903 -136903,7507:351:3,-71,55.5,0,0,-0.00668141 -136904,7507:350:4,-70.5,55.5,0,0,-0.00624605 -136905,7507:350:3,-70,55.5,0,0,-0.0061237 -136906,7506:459:4,-69.5,55.5,0,0,-0.00605196 -136907,7506:459:3,-69,55.5,0,0,-0.0061455 -136908,7506:458:4,-68.5,55.5,0,0,-0.00608568 -136909,7506:458:3,-68,55.5,0,0,-0.00592945 -136910,7506:457:4,-67.5,55.5,0,0,-0.00597179 -136911,7506:457:3,-67,55.5,0,0,-0.00604388 -136912,7506:456:4,-66.5,55.5,0,0,-0.00610602 -136913,7506:456:3,-66,55.5,0,0,-0.00613459 -136914,7506:455:4,-65.5,55.5,0,0,-0.00574783 -136915,7506:455:3,-65,55.5,0,0,-0.00555201 -136916,7505:458:4,-58.5,55.5,0,0,-0.00610192 -136917,7505:458:3,-58,55.5,0,0,-0.00616053 -136918,7505:457:4,-57.5,55.5,0,0,-0.00616467 -136919,7505:354:3,-54,55.5,0,0,-0.00584183 -136920,7505:353:4,-53.5,55.5,0,0,-0.00579272 -136921,7505:353:3,-53,55.5,0,0,-0.00580042 -136922,7505:352:4,-52.5,55.5,0,0,-0.00580818 -136923,7505:352:3,-52,55.5,0,0,-0.00577726 -136924,7505:351:4,-51.5,55.5,0,0,-0.00584441 -136925,7505:351:3,-51,55.5,0,0,-0.00627808 -136926,7505:350:4,-50.5,55.5,0,0,-0.00630463 -136927,7505:350:3,-50,55.5,0,0,-0.00838819 -136928,7504:459:4,-49.5,55.5,0,0,-0.0209369 -136929,7504:459:3,-49,55.5,0,0,-0.0216137 -136930,7504:458:4,-48.5,55.5,0,0,-0.0145655 -136931,7504:458:3,-48,55.5,0,0,-0.0104139 -136932,7504:457:4,-47.5,55.5,0,0,-0.00941065 -136933,7502:455:4,-25.5,55.5,0,0,-0.00568936 -136934,7502:455:3,-25,55.5,0,0,-0.00570965 -136935,7502:354:4,-24.5,55.5,0,0,-0.0056919 -136936,7502:354:3,-24,55.5,0,0,-0.00568685 -136937,7502:353:4,-23.5,55.5,0,0,-0.00569063 -136938,7502:353:3,-23,55.5,0,0,-0.00570581 -136939,7502:352:4,-22.5,55.5,0,0,-0.00573125 -136940,7502:352:3,-22,55.5,0,0,-0.00573378 -136941,7502:351:4,-21.5,55.5,0,0,-0.00583665 -136942,7502:351:3,-21,55.5,0,0,-0.00658256 -136943,7502:350:4,-20.5,55.5,0,0,-0.00794978 -136944,7502:350:3,-20,55.5,0,0,-0.00919697 -136945,7501:459:4,-19.5,55.5,0,0,-0.0101386 -136946,7501:459:3,-19,55.5,0,0,-0.0109212 -136947,7501:458:4,-18.5,55.5,0,0,-0.0112029 -136948,7501:458:3,-18,55.5,0,0,-0.0112883 -136949,7501:457:4,-17.5,55.5,0,0,-0.0114355 -136950,7501:457:3,-17,55.5,0,0,-0.0118944 -136951,7501:456:4,-16.5,55.5,0,0,-0.0123635 -136952,7501:456:3,-16,55.5,0,0,-0.0127455 -136953,7501:455:4,-15.5,55.5,0,0,-0.0132397 -136954,7501:455:3,-15,55.5,0,0,-0.0136277 -136955,7501:354:4,-14.5,55.5,0,0,-0.0139865 -136956,7501:354:3,-14,55.5,0,0,-0.0144743 -136957,7501:353:4,-13.5,55.5,0,0,-0.015145 -136958,7501:353:3,-13,55.5,0,0,-0.016138 -136959,7501:352:4,-12.5,55.5,0,0,-0.0173369 -136960,7501:352:3,-12,55.5,0,0,-0.0180367 -136961,7501:351:4,-11.5,55.5,0,0,-0.0183972 -136962,7501:351:3,-11,55.5,0,0,-0.0193269 -136963,7501:350:4,-10.5,55.5,0,0,-0.0210221 -136964,7501:350:3,-10,55.5,0,0,-0.0226379 -136965,7500:459:4,-9.5,55.5,0,0,-0.0238678 -136966,7500:459:3,-9,55.5,0,0,-0.0248095 -136967,7500:458:4,-8.5,55.5,0,0,-0.0254353 -136968,7500:458:3,-8,55.5,0,0,-0.0259772 -136969,7500:457:4,-7.5,55.5,0,0,-0.0266998 -136970,7500:457:3,-7,55.5,0,0,-0.0280096 -136971,7500:456:4,-6.5,55.5,0,0,-0.0290468 -136972,7500:456:3,-6,55.5,0,0,-0.0291725 -136973,7500:455:4,-5.5,55.5,0,0,-0.0323796 -136974,7500:455:3,-5,55.5,0,0,-0.0376888 -136975,7500:354:4,-4.5,55.5,0,0,-0.0410027 -136976,7500:354:3,-4,55.5,0,0,-0.0407863 -136977,7500:353:4,-3.5,55.5,0,0,-0.0412867 -136978,7500:353:3,-3,55.5,0,0,-0.0432227 -136979,7500:352:4,-2.5,55.5,0,0,-0.0466333 -136980,7500:352:3,-2,55.5,0,0,-0.0514728 -136981,7500:351:4,-1.5,55.5,0,0,-0.0554786 -136982,7500:351:3,-1,55.5,0,0,-0.054087 -136983,7500:350:4,-0.5,55.5,0,0,-0.0525363 -136984,1500:350:4,0,55.5,0,0,-0.0512936 -136985,1500:350:4,0.5,55.5,0,0,-0.0500817 -136986,1500:351:3,1,55.5,0,0,-0.0484822 -136987,1500:351:4,1.5,55.5,0,0,-0.0590763 -136988,1500:352:3,2,55.5,0,0,-0.0561557 -136989,1500:352:4,2.5,55.5,0,0,-0.0270534 -136990,1501:350:4,10.5,55.5,0,0,-0.0252173 -136991,1501:351:3,11,55.5,0,0,-0.0301851 -136992,1501:351:4,11.5,55.5,0,0,-0.0264646 -136993,1501:352:3,12,55.5,0,0,-0.0205024 -136994,1517:350:3,170,55.5,0,0,-0.00635954 -136995,1517:350:4,170.5,55.5,0,0,-0.00636947 -136996,1517:351:3,171,55.5,0,0,-0.00638362 -136997,1517:458:3,178,55.5,0,0,-0.00583273 -136998,1517:458:4,178.5,55.5,0,0,-0.00583403 -136999,1517:459:3,179,55.5,0,0,-0.00582498 -137000,1517:459:4,179.5,55.5,0,0,-0.00580432 -137001,1518:350:3,180,55.5,0,0,-0.00578243 -137002,7518:360:1,-180,56,0,0,-0.00575294 -137003,7517:469:2,-179.5,56,0,0,-0.00574273 -137004,7517:469:1,-179,56,0,0,-0.00573635 -137005,7517:468:2,-178.5,56,0,0,-0.00573888 -137006,7517:468:1,-178,56,0,0,-0.00577342 -137007,7517:467:2,-177.5,56,0,0,-0.00583403 -137008,7517:467:1,-177,56,0,0,-0.00589793 -137009,7517:466:2,-176.5,56,0,0,-0.00596912 -137010,7517:466:1,-176,56,0,0,-0.00601574 -137011,7517:465:2,-175.5,56,0,0,-0.00602378 -137012,7517:465:1,-175,56,0,0,-0.00599972 -137013,7517:364:2,-174.5,56,0,0,-0.00595985 -137014,7517:364:1,-174,56,0,0,-0.00590842 -137015,7517:363:2,-173.5,56,0,0,-0.00587828 -137016,7517:363:1,-173,56,0,0,-0.00582628 -137017,7517:362:2,-172.5,56,0,0,-0.00570581 -137018,7509:360:2,-90.5,56,0,0,-0.0065446 -137019,7509:360:1,-90,56,0,0,-0.00679078 -137020,7508:469:2,-89.5,56,0,0,-0.00687128 -137021,7508:469:1,-89,56,0,0,-0.0067501 -137022,7508:468:2,-88.5,56,0,0,-0.00666361 -137023,7508:468:1,-88,56,0,0,-0.00665028 -137024,7508:467:2,-87.5,56,0,0,-0.0066473 -137025,7508:467:1,-87,56,0,0,-0.00668585 -137026,7508:466:2,-86.5,56,0,0,-0.00673962 -137027,7508:466:1,-86,56,0,0,-0.00679078 -137028,7508:465:2,-85.5,56,0,0,-0.00685758 -137029,7508:465:1,-85,56,0,0,-0.00689886 -137030,7508:364:2,-84.5,56,0,0,-0.00684079 -137031,7508:364:1,-84,56,0,0,-0.00672162 -137032,7508:363:2,-83.5,56,0,0,-0.00666505 -137033,7508:363:1,-83,56,0,0,-0.0066473 -137034,7508:362:2,-82.5,56,0,0,-0.00665619 -137035,7508:362:1,-82,56,0,0,-0.00665028 -137036,7508:361:2,-81.5,56,0,0,-0.00662518 -137037,7508:361:1,-81,56,0,0,-0.00661633 -137038,7508:360:2,-80.5,56,0,0,-0.0066237 -137039,7508:360:1,-80,56,0,0,-0.00663697 -137040,7507:469:2,-79.5,56,0,0,-0.00664437 -137041,7507:469:1,-79,56,0,0,-0.00664437 -137042,7507:468:2,-78.5,56,0,0,-0.00660458 -137043,7507:468:1,-78,56,0,0,-0.00652137 -137044,7507:467:2,-77.5,56,0,0,-0.0064121 -137045,7507:467:1,-77,56,0,0,-0.00629484 -137046,7507:466:2,-76.5,56,0,0,-0.00596782 -137047,7507:466:1,-76,56,0,0,-0.00594 -137048,7507:465:2,-75.5,56,0,0,-0.00608568 -137049,7507:465:1,-75,56,0,0,-0.00619212 -137050,7507:364:2,-74.5,56,0,0,-0.00613051 -137051,7507:364:1,-74,56,0,0,-0.00606948 -137052,7507:363:2,-73.5,56,0,0,-0.00605196 -137053,7507:363:1,-73,56,0,0,-0.006083 -137054,7507:362:2,-72.5,56,0,0,-0.00624605 -137055,7507:362:1,-72,56,0,0,-0.0064121 -137056,7507:361:2,-71.5,56,0,0,-0.00656502 -137057,7507:361:1,-71,56,0,0,-0.00626829 -137058,7506:469:2,-69.5,56,0,0,-0.00635389 -137059,7506:468:2,-68.5,56,0,0,-0.00605463 -137060,7506:468:1,-68,56,0,0,-0.00602644 -137061,7506:467:2,-67.5,56,0,0,-0.00603986 -137062,7506:467:1,-67,56,0,0,-0.00608568 -137063,7506:466:2,-66.5,56,0,0,-0.00615781 -137064,7506:466:1,-66,56,0,0,-0.00575294 -137065,7506:465:2,-65.5,56,0,0,-0.00554953 -137066,7505:468:2,-58.5,56,0,0,-0.00612914 -137067,7505:468:1,-58,56,0,0,-0.0062004 -137068,7505:467:2,-57.5,56,0,0,-0.00627527 -137069,7505:363:1,-53,56,0,0,-0.00578369 -137070,7505:362:2,-52.5,56,0,0,-0.00581074 -137071,7505:362:1,-52,56,0,0,-0.00582368 -137072,7505:361:2,-51.5,56,0,0,-0.00576829 -137073,7505:361:1,-51,56,0,0,-0.00582498 -137074,7505:360:2,-50.5,56,0,0,-0.00601174 -137075,7505:360:1,-50,56,0,0,-0.00879201 -137076,7504:469:2,-49.5,56,0,0,-0.0167434 -137077,7504:469:1,-49,56,0,0,-0.0202634 -137078,7504:468:2,-48.5,56,0,0,-0.0158543 -137079,7504:468:1,-48,56,0,0,-0.0113363 -137080,7504:467:2,-47.5,56,0,0,-0.00908891 -137081,7504:467:1,-47,56,0,0,-0.00764765 -137082,7504:466:2,-46.5,56,0,0,-0.00572232 -137083,7502:364:1,-24,56,0,0,-0.00574912 -137084,7502:363:2,-23.5,56,0,0,-0.00572488 -137085,7502:363:1,-23,56,0,0,-0.00571472 -137086,7502:362:2,-22.5,56,0,0,-0.00568685 -137087,7502:362:1,-22,56,0,0,-0.00571472 -137088,7502:361:2,-21.5,56,0,0,-0.00579012 -137089,7502:361:1,-21,56,0,0,-0.0060064 -137090,7502:360:2,-20.5,56,0,0,-0.00679682 -137091,7502:360:1,-20,56,0,0,-0.00893818 -137092,7501:469:2,-19.5,56,0,0,-0.010519 -137093,7501:469:1,-19,56,0,0,-0.0108168 -137094,7501:468:2,-18.5,56,0,0,-0.0112255 -137095,7501:468:1,-18,56,0,0,-0.0115202 -137096,7501:467:2,-17.5,56,0,0,-0.0115099 -137097,7501:467:1,-17,56,0,0,-0.0115202 -137098,7501:466:2,-16.5,56,0,0,-0.0116549 -137099,7501:466:1,-16,56,0,0,-0.0119932 -137100,7501:465:2,-15.5,56,0,0,-0.0127998 -137101,7501:465:1,-15,56,0,0,-0.0133858 -137102,7501:364:2,-14.5,56,0,0,-0.0137381 -137103,7501:364:1,-14,56,0,0,-0.0142235 -137104,7501:363:2,-13.5,56,0,0,-0.0146703 -137105,7501:363:1,-13,56,0,0,-0.0160981 -137106,7501:362:2,-12.5,56,0,0,-0.0179275 -137107,7501:362:1,-12,56,0,0,-0.0183229 -137108,7501:361:2,-11.5,56,0,0,-0.0188415 -137109,7501:361:1,-11,56,0,0,-0.0197316 -137110,7501:360:2,-10.5,56,0,0,-0.0210031 -137111,7501:360:1,-10,56,0,0,-0.0223684 -137112,7500:469:2,-9.5,56,0,0,-0.0235513 -137113,7500:469:1,-9,56,0,0,-0.0241774 -137114,7500:468:2,-8.5,56,0,0,-0.0241229 -137115,7500:468:1,-8,56,0,0,-0.0239163 -137116,7500:467:2,-7.5,56,0,0,-0.0244415 -137117,7500:467:1,-7,56,0,0,-0.0261604 -137118,7500:466:2,-6.5,56,0,0,-0.0274119 -137119,7500:466:1,-6,56,0,0,-0.0277248 -137120,7500:465:2,-5.5,56,0,0,-0.0299117 -137121,7500:465:1,-5,56,0,0,-0.032424 -137122,7500:364:2,-4.5,56,0,0,-0.0340395 -137123,7500:364:1,-4,56,0,0,-0.0362574 -137124,7500:363:2,-3.5,56,0,0,-0.0409179 -137125,7500:363:1,-3,56,0,0,-0.044129 -137126,7500:362:2,-2.5,56,0,0,-0.0457155 -137127,7500:362:1,-2,56,0,0,-0.0498613 -137128,7500:361:2,-1.5,56,0,0,-0.0539611 -137129,7500:361:1,-1,56,0,0,-0.0543143 -137130,7500:360:2,-0.5,56,0,0,-0.0500583 -137131,1500:360:2,0,56,0,0,-0.051234 -137132,1500:360:2,0.5,56,0,0,-0.0527691 -137133,1500:361:1,1,56,0,0,-0.0525728 -137134,1500:361:2,1.5,56,0,0,-0.0589937 -137135,1500:362:1,2,56,0,0,-0.0435827 -137136,1500:362:2,2.5,56,0,0,-0.0261307 -137137,1501:360:1,10,56,0,0,-0.0207022 -137138,1501:360:2,10.5,56,0,0,-0.0292057 -137139,1501:361:1,11,56,0,0,-0.0305446 -137140,1501:361:2,11.5,56,0,0,-0.0284005 -137141,1501:362:1,12,56,0,0,-0.021227 -137142,1516:364:2,164.5,56,0,0,-0.00627387 -137143,1516:465:1,165,56,0,0,-0.00622523 -137144,1516:467:1,167,56,0,0,-0.00606408 -137145,1516:467:2,167.5,56,0,0,-0.00604794 -137146,1516:468:1,168,56,0,0,-0.00602779 -137147,1516:468:2,168.5,56,0,0,-0.0059944 -137148,1516:469:1,169,56,0,0,-0.00597576 -137149,1517:360:2,170.5,56,0,0,-0.00621005 -137150,1517:466:2,176.5,56,0,0,-0.0058496 -137151,1517:467:1,177,56,0,0,-0.00584703 -137152,1517:467:2,177.5,56,0,0,-0.00585222 -137153,1517:468:1,178,56,0,0,-0.00584441 -137154,1517:468:2,178.5,56,0,0,-0.00582628 -137155,1517:469:1,179,56,0,0,-0.00579142 -137156,1517:469:2,179.5,56,0,0,-0.00576188 -137157,1518:360:1,180,56,0,0,-0.00575294 -137158,7518:360:3,-180,56.5,0,0,-0.00576575 -137159,7517:469:4,-179.5,56.5,0,0,-0.00577471 -137160,7517:469:3,-179,56.5,0,0,-0.00577342 -137161,7517:468:4,-178.5,56.5,0,0,-0.00580948 -137162,7517:468:3,-178,56.5,0,0,-0.00586132 -137163,7517:467:4,-177.5,56.5,0,0,-0.00590577 -137164,7517:467:3,-177,56.5,0,0,-0.00594794 -137165,7517:466:4,-176.5,56.5,0,0,-0.00600107 -137166,7517:466:3,-176,56.5,0,0,-0.00603049 -137167,7517:465:4,-175.5,56.5,0,0,-0.00605463 -137168,7517:465:3,-175,56.5,0,0,-0.00603986 -137169,7517:364:4,-174.5,56.5,0,0,-0.0059944 -137170,7517:364:3,-174,56.5,0,0,-0.00593472 -137171,7517:363:4,-173.5,56.5,0,0,-0.005877 -137172,7517:363:3,-173,56.5,0,0,-0.00580432 -137173,7517:362:4,-172.5,56.5,0,0,-0.00569569 -137174,7509:360:4,-90.5,56.5,0,0,-0.00620453 -137175,7509:360:3,-90,56.5,0,0,-0.00659871 -137176,7508:469:4,-89.5,56.5,0,0,-0.00671865 -137177,7508:469:3,-89,56.5,0,0,-0.00659871 -137178,7508:468:4,-88.5,56.5,0,0,-0.00658403 -137179,7508:468:3,-88,56.5,0,0,-0.00662222 -137180,7508:467:4,-87.5,56.5,0,0,-0.00659284 -137181,7508:467:3,-87,56.5,0,0,-0.00662518 -137182,7508:466:4,-86.5,56.5,0,0,-0.00669625 -137183,7508:466:3,-86,56.5,0,0,-0.0067441 -137184,7508:465:4,-85.5,56.5,0,0,-0.00681498 -137185,7508:465:3,-85,56.5,0,0,-0.00685297 -137186,7508:364:4,-84.5,56.5,0,0,-0.00674259 -137187,7508:364:3,-84,56.5,0,0,-0.00663697 -137188,7508:363:4,-83.5,56.5,0,0,-0.00657965 -137189,7508:363:3,-83,56.5,0,0,-0.00656797 -137190,7508:362:4,-82.5,56.5,0,0,-0.00658989 -137191,7508:362:3,-82,56.5,0,0,-0.00660458 -137192,7508:361:4,-81.5,56.5,0,0,-0.00660605 -137193,7508:361:3,-81,56.5,0,0,-0.00659427 -137194,7508:360:4,-80.5,56.5,0,0,-0.00659137 -137195,7508:360:3,-80,56.5,0,0,-0.00659427 -137196,7507:469:4,-79.5,56.5,0,0,-0.00659137 -137197,7507:469:3,-79,56.5,0,0,-0.00658551 -137198,7507:468:4,-78.5,56.5,0,0,-0.006549 -137199,7507:468:3,-78,56.5,0,0,-0.00646795 -137200,7507:467:4,-77.5,56.5,0,0,-0.00628366 -137201,7507:467:3,-77,56.5,0,0,-0.00592551 -137202,7507:364:3,-74,56.5,0,0,-0.0060965 -137203,7507:363:4,-73.5,56.5,0,0,-0.00604122 -137204,7507:363:3,-73,56.5,0,0,-0.0061006 -137205,7507:362:4,-72.5,56.5,0,0,-0.00609109 -137206,7507:362:3,-72,56.5,0,0,-0.0061949 -137207,7507:361:4,-71.5,56.5,0,0,-0.00628085 -137208,7507:361:3,-71,56.5,0,0,-0.00612232 -137209,7507:360:4,-70.5,56.5,0,0,-0.0060372 -137210,7507:360:3,-70,56.5,0,0,-0.00610466 -137211,7506:469:4,-69.5,56.5,0,0,-0.00613184 -137212,7506:469:3,-69,56.5,0,0,-0.00610192 -137213,7506:468:4,-68.5,56.5,0,0,-0.00606948 -137214,7506:468:3,-68,56.5,0,0,-0.00611415 -137215,7506:467:4,-67.5,56.5,0,0,-0.00601978 -137216,7506:467:3,-67,56.5,0,0,-0.00576446 -137217,7506:466:4,-66.5,56.5,0,0,-0.00560781 -137218,7506:465:4,-65.5,56.5,0,0,-0.00551024 -137219,7505:468:3,-58,56.5,0,0,-0.00613322 -137220,7505:363:3,-53,56.5,0,0,-0.00580688 -137221,7505:362:4,-52.5,56.5,0,0,-0.00579657 -137222,7505:362:3,-52,56.5,0,0,-0.00580172 -137223,7505:361:4,-51.5,56.5,0,0,-0.00577471 -137224,7505:361:3,-51,56.5,0,0,-0.00607487 -137225,7505:360:4,-50.5,56.5,0,0,-0.00716643 -137226,7505:360:3,-50,56.5,0,0,-0.011076 -137227,7504:469:4,-49.5,56.5,0,0,-0.0148656 -137228,7504:469:3,-49,56.5,0,0,-0.0184886 -137229,7504:468:4,-48.5,56.5,0,0,-0.0160656 -137230,7504:468:3,-48,56.5,0,0,-0.0124747 -137231,7504:467:4,-47.5,56.5,0,0,-0.0114611 -137232,7504:467:3,-47,56.5,0,0,-0.0151858 -137233,7504:466:4,-46.5,56.5,0,0,-0.0073784 -137234,7504:466:3,-46,56.5,0,0,-0.00615372 -137235,7502:363:3,-23,56.5,0,0,-0.00570581 -137236,7502:362:4,-22.5,56.5,0,0,-0.00569951 -137237,7502:362:3,-22,56.5,0,0,-0.00571472 -137238,7502:361:4,-21.5,56.5,0,0,-0.00575165 -137239,7502:361:3,-21,56.5,0,0,-0.00579527 -137240,7502:360:4,-20.5,56.5,0,0,-0.00601174 -137241,7502:360:3,-20,56.5,0,0,-0.00698691 -137242,7501:469:4,-19.5,56.5,0,0,-0.00924013 -137243,7501:469:3,-19,56.5,0,0,-0.00999045 -137244,7501:468:4,-18.5,56.5,0,0,-0.0106253 -137245,7501:468:3,-18,56.5,0,0,-0.0113009 -137246,7501:467:4,-17.5,56.5,0,0,-0.0118492 -137247,7501:467:3,-17,56.5,0,0,-0.0120012 -137248,7501:466:4,-16.5,56.5,0,0,-0.0120982 -137249,7501:466:3,-16,56.5,0,0,-0.0125334 -137250,7501:465:4,-15.5,56.5,0,0,-0.0129583 -137251,7501:465:3,-15,56.5,0,0,-0.0131688 -137252,7501:364:4,-14.5,56.5,0,0,-0.0132843 -137253,7501:364:3,-14,56.5,0,0,-0.0132783 -137254,7501:363:4,-13.5,56.5,0,0,-0.0136828 -137255,7501:363:3,-13,56.5,0,0,-0.0156844 -137256,7501:362:4,-12.5,56.5,0,0,-0.0184844 -137257,7501:362:3,-12,56.5,0,0,-0.0185136 -137258,7501:361:4,-11.5,56.5,0,0,-0.0189605 -137259,7501:361:3,-11,56.5,0,0,-0.0199642 -137260,7501:360:4,-10.5,56.5,0,0,-0.0210079 -137261,7501:360:3,-10,56.5,0,0,-0.0219086 -137262,7500:469:4,-9.5,56.5,0,0,-0.0223331 -137263,7500:469:3,-9,56.5,0,0,-0.0222928 -137264,7500:468:4,-8.5,56.5,0,0,-0.0221173 -137265,7500:468:3,-8,56.5,0,0,-0.0220575 -137266,7500:467:4,-7.5,56.5,0,0,-0.0222727 -137267,7500:467:3,-7,56.5,0,0,-0.0228435 -137268,7500:466:4,-6.5,56.5,0,0,-0.0237923 -137269,7500:466:3,-6,56.5,0,0,-0.0249503 -137270,7500:465:4,-5.5,56.5,0,0,-0.0257019 -137271,7500:465:3,-5,56.5,0,0,-0.0261425 -137272,7500:364:4,-4.5,56.5,0,0,-0.0268273 -137273,7500:364:3,-4,56.5,0,0,-0.0291063 -137274,7500:363:4,-3.5,56.5,0,0,-0.0379314 -137275,7500:363:3,-3,56.5,0,0,-0.0465041 -137276,7500:362:4,-2.5,56.5,0,0,-0.0479242 -137277,7500:362:3,-2,56.5,0,0,-0.0509021 -137278,7500:361:4,-1.5,56.5,0,0,-0.0530399 -137279,7500:361:3,-1,56.5,0,0,-0.0536857 -137280,7500:360:4,-0.5,56.5,0,0,-0.0502679 -137281,1500:360:4,0,56.5,0,0,-0.0532997 -137282,1500:360:4,0.5,56.5,0,0,-0.0536605 -137283,1500:361:3,1,56.5,0,0,-0.0538607 -137284,1500:361:4,1.5,56.5,0,0,-0.0569209 -137285,1500:362:3,2,56.5,0,0,-0.0571075 -137286,1500:362:4,2.5,56.5,0,0,-0.03074 -137287,1501:360:3,10,56.5,0,0,-0.0163532 -137288,1501:360:4,10.5,56.5,0,0,-0.0264226 -137289,1501:361:3,11,56.5,0,0,-0.0292722 -137290,1501:361:4,11.5,56.5,0,0,-0.0290005 -137291,1501:362:3,12,56.5,0,0,-0.0201178 -137292,1516:364:3,164,56.5,0,0,-0.00623216 -137293,1516:364:4,164.5,56.5,0,0,-0.00622388 -137294,1516:465:3,165,56.5,0,0,-0.00619351 -137295,1516:465:4,165.5,56.5,0,0,-0.00615919 -137296,1516:466:3,166,56.5,0,0,-0.00613051 -137297,1516:466:4,166.5,56.5,0,0,-0.00610872 -137298,1516:467:3,167,56.5,0,0,-0.0060884 -137299,1516:467:4,167.5,56.5,0,0,-0.00606812 -137300,1516:468:3,168,56.5,0,0,-0.00604659 -137301,1516:468:4,168.5,56.5,0,0,-0.00602779 -137302,1516:469:3,169,56.5,0,0,-0.0060064 -137303,1516:469:4,169.5,56.5,0,0,-0.00598773 -137304,1517:360:3,170,56.5,0,0,-0.00596782 -137305,1517:360:4,170.5,56.5,0,0,-0.00596515 -137306,1517:361:3,171,56.5,0,0,-0.00595985 -137307,1517:362:3,172,56.5,0,0,-0.00593211 -137308,1517:362:4,172.5,56.5,0,0,-0.00591892 -137309,1517:363:3,173,56.5,0,0,-0.00590709 -137310,1517:363:4,173.5,56.5,0,0,-0.00590053 -137311,1517:364:3,174,56.5,0,0,-0.00589005 -137312,1517:364:4,174.5,56.5,0,0,-0.00587959 -137313,1517:465:3,175,56.5,0,0,-0.00587437 -137314,1517:465:4,175.5,56.5,0,0,-0.00586784 -137315,1517:466:3,176,56.5,0,0,-0.00586653 -137316,1517:466:4,176.5,56.5,0,0,-0.00586526 -137317,1517:467:3,177,56.5,0,0,-0.00585874 -137318,1517:467:4,177.5,56.5,0,0,-0.00583273 -137319,1517:468:3,178,56.5,0,0,-0.00579397 -137320,1517:468:4,178.5,56.5,0,0,-0.00576959 -137321,1517:469:3,179,56.5,0,0,-0.00575294 -137322,1517:469:4,179.5,56.5,0,0,-0.00575806 -137323,1518:360:3,180,56.5,0,0,-0.00576575 -137324,7518:370:1,-180,57,0,0,-0.0058496 -137325,7517:479:2,-179.5,57,0,0,-0.00584572 -137326,7517:479:1,-179,57,0,0,-0.00583403 -137327,7517:478:2,-178.5,57,0,0,-0.00588091 -137328,7517:478:1,-178,57,0,0,-0.00592025 -137329,7517:477:2,-177.5,57,0,0,-0.00593343 -137330,7517:477:1,-177,57,0,0,-0.00594794 -137331,7517:476:2,-176.5,57,0,0,-0.00595456 -137332,7517:476:1,-176,57,0,0,-0.00598241 -137333,7517:475:2,-175.5,57,0,0,-0.0060372 -137334,7517:475:1,-175,57,0,0,-0.00606005 -137335,7517:374:2,-174.5,57,0,0,-0.00602109 -137336,7517:374:1,-174,57,0,0,-0.00593211 -137337,7517:373:2,-173.5,57,0,0,-0.005877 -137338,7517:373:1,-173,57,0,0,-0.00579657 -137339,7517:372:2,-172.5,57,0,0,-0.005716 -137340,7517:372:1,-172,57,0,0,-0.00567045 -137341,7517:371:2,-171.5,57,0,0,-0.00563025 -137342,7517:371:1,-171,57,0,0,-0.00560656 -137343,7509:370:1,-90,57,0,0,-0.00627668 -137344,7508:479:2,-89.5,57,0,0,-0.00655483 -137345,7508:479:1,-89,57,0,0,-0.00660605 -137346,7508:478:2,-88.5,57,0,0,-0.00651266 -137347,7508:478:1,-88,57,0,0,-0.00650979 -137348,7508:477:2,-87.5,57,0,0,-0.00653879 -137349,7508:477:1,-87,57,0,0,-0.00658551 -137350,7508:476:2,-86.5,57,0,0,-0.00664288 -137351,7508:476:1,-86,57,0,0,-0.00670521 -137352,7508:475:2,-85.5,57,0,0,-0.00677719 -137353,7508:475:1,-85,57,0,0,-0.00675313 -137354,7508:374:2,-84.5,57,0,0,-0.00664879 -137355,7508:374:1,-84,57,0,0,-0.00657086 -137356,7508:373:2,-83.5,57,0,0,-0.00652283 -137357,7508:373:1,-83,57,0,0,-0.00651412 -137358,7508:372:2,-82.5,57,0,0,-0.0065301 -137359,7508:372:1,-82,57,0,0,-0.00657086 -137360,7508:371:2,-81.5,57,0,0,-0.00658108 -137361,7508:371:1,-81,57,0,0,-0.00656355 -137362,7508:370:2,-80.5,57,0,0,-0.00655189 -137363,7508:370:1,-80,57,0,0,-0.0065446 -137364,7507:479:2,-79.5,57,0,0,-0.00653152 -137365,7507:479:1,-79,57,0,0,-0.00651558 -137366,7507:478:2,-78.5,57,0,0,-0.00649245 -137367,7507:478:1,-78,57,0,0,-0.00645213 -137368,7507:477:2,-77.5,57,0,0,-0.00632288 -137369,7507:477:1,-77,57,0,0,-0.00614142 -137370,7507:476:2,-76.5,57,0,0,-0.00584572 -137371,7507:374:2,-74.5,57,0,0,-0.00610872 -137372,7507:374:1,-74,57,0,0,-0.00607891 -137373,7507:373:2,-73.5,57,0,0,-0.00602914 -137374,7507:373:1,-73,57,0,0,-0.00607623 -137375,7507:372:2,-72.5,57,0,0,-0.00602513 -137376,7507:372:1,-72,57,0,0,-0.00596382 -137377,7507:371:2,-71.5,57,0,0,-0.00603315 -137378,7507:371:1,-71,57,0,0,-0.00594794 -137379,7507:370:2,-70.5,57,0,0,-0.00598107 -137380,7507:370:1,-70,57,0,0,-0.00604257 -137381,7506:479:2,-69.5,57,0,0,-0.00596252 -137382,7506:479:1,-69,57,0,0,-0.00598639 -137383,7506:478:2,-68.5,57,0,0,-0.00596252 -137384,7505:478:1,-58,57,0,0,-0.00573378 -137385,7505:374:1,-54,57,0,0,-0.00578369 -137386,7505:373:2,-53.5,57,0,0,-0.0058172 -137387,7505:373:1,-53,57,0,0,-0.00580042 -137388,7505:372:2,-52.5,57,0,0,-0.00577342 -137389,7505:372:1,-52,57,0,0,-0.00576188 -137390,7505:371:2,-51.5,57,0,0,-0.00574016 -137391,7505:371:1,-51,57,0,0,-0.00583146 -137392,7505:370:2,-50.5,57,0,0,-0.00612232 -137393,7505:370:1,-50,57,0,0,-0.00622802 -137394,7504:479:2,-49.5,57,0,0,-0.00609787 -137395,7504:479:1,-49,57,0,0,-0.00829524 -137396,7504:478:2,-48.5,57,0,0,-0.0136095 -137397,7504:478:1,-48,57,0,0,-0.0149929 -137398,7504:477:2,-47.5,57,0,0,-0.0152438 -137399,7504:477:1,-47,57,0,0,-0.0151824 -137400,7504:476:2,-46.5,57,0,0,-0.0141599 -137401,7504:476:1,-46,57,0,0,-0.0134338 -137402,7504:475:2,-45.5,57,0,0,-0.0103398 -137403,7504:475:1,-45,57,0,0,-0.0113718 -137404,7504:374:2,-44.5,57,0,0,-0.0120093 -137405,7502:475:2,-25.5,57,0,0,-0.00599171 -137406,7502:475:1,-25,57,0,0,-0.00599972 -137407,7502:373:1,-23,57,0,0,-0.00570965 -137408,7502:372:2,-22.5,57,0,0,-0.00568053 -137409,7502:372:1,-22,57,0,0,-0.00570965 -137410,7502:371:2,-21.5,57,0,0,-0.005716 -137411,7502:371:1,-21,57,0,0,-0.00577985 -137412,7502:370:2,-20.5,57,0,0,-0.00586526 -137413,7502:370:1,-20,57,0,0,-0.00598907 -137414,7501:479:2,-19.5,57,0,0,-0.0064121 -137415,7501:479:1,-19,57,0,0,-0.00696985 -137416,7501:478:2,-18.5,57,0,0,-0.0074444 -137417,7501:478:1,-18,57,0,0,-0.00914785 -137418,7501:477:2,-17.5,57,0,0,-0.0108725 -137419,7501:477:1,-17,57,0,0,-0.0117543 -137420,7501:476:2,-16.5,57,0,0,-0.0122672 -137421,7501:476:1,-16,57,0,0,-0.0124886 -137422,7501:475:2,-15.5,57,0,0,-0.0125727 -137423,7501:475:1,-15,57,0,0,-0.0127056 -137424,7501:374:2,-14.5,57,0,0,-0.0126858 -137425,7501:374:1,-14,57,0,0,-0.0124775 -137426,7501:373:2,-13.5,57,0,0,-0.0127626 -137427,7501:373:1,-13,57,0,0,-0.014198 -137428,7501:372:2,-12.5,57,0,0,-0.0174934 -137429,7501:372:1,-12,57,0,0,-0.0193575 -137430,7501:371:2,-11.5,57,0,0,-0.019794 -137431,7501:371:1,-11,57,0,0,-0.020268 -137432,7501:370:2,-10.5,57,0,0,-0.0205765 -137433,7501:370:1,-10,57,0,0,-0.0209984 -137434,7500:479:2,-9.5,57,0,0,-0.0215699 -137435,7500:479:1,-9,57,0,0,-0.022328 -137436,7500:478:2,-8.5,57,0,0,-0.0229521 -137437,7500:478:1,-8,57,0,0,-0.0230352 -137438,7500:477:2,-7.5,57,0,0,-0.023192 -137439,7500:477:1,-7,57,0,0,-0.0237653 -137440,7500:476:2,-6.5,57,0,0,-0.0241064 -137441,7500:476:1,-6,57,0,0,-0.0237814 -137442,7500:475:2,-5.5,57,0,0,-0.0237064 -137443,7500:475:1,-5,57,0,0,-0.0239922 -137444,7500:374:2,-4.5,57,0,0,-0.0246249 -137445,7500:374:1,-4,57,0,0,-0.0265849 -137446,7500:373:2,-3.5,57,0,0,-0.0322617 -137447,7500:373:1,-3,57,0,0,-0.0447442 -137448,7500:372:2,-2.5,57,0,0,-0.0480463 -137449,7500:372:1,-2,57,0,0,-0.050843 -137450,7500:371:2,-1.5,57,0,0,-0.0518689 -137451,7500:371:1,-1,57,0,0,-0.0521471 -137452,7500:370:2,-0.5,57,0,0,-0.0500817 -137453,1500:370:2,0,57,0,0,-0.0520982 -137454,1500:370:2,0.5,57,0,0,-0.0525851 -137455,1500:371:1,1,57,0,0,-0.0517124 -137456,1500:371:2,1.5,57,0,0,-0.0519411 -137457,1500:372:1,2,57,0,0,-0.0551049 -137458,1500:372:2,2.5,57,0,0,-0.0466227 -137459,1501:370:1,10,57,0,0,-0.0138276 -137460,1501:370:2,10.5,57,0,0,-0.0235459 -137461,1501:371:1,11,57,0,0,-0.0268455 -137462,1501:371:2,11.5,57,0,0,-0.0208615 -137463,1501:372:1,12,57,0,0,-0.0169439 -137464,1516:374:2,164.5,57,0,0,-0.00621283 -137465,1516:475:1,165,57,0,0,-0.0062004 -137466,1516:475:2,165.5,57,0,0,-0.00617702 -137467,1516:476:1,166,57,0,0,-0.00615506 -137468,1516:476:2,166.5,57,0,0,-0.00613184 -137469,1516:477:1,167,57,0,0,-0.00611282 -137470,1516:477:2,167.5,57,0,0,-0.00609109 -137471,1516:478:1,168,57,0,0,-0.00606544 -137472,1516:478:2,168.5,57,0,0,-0.00603851 -137473,1516:479:1,169,57,0,0,-0.00601709 -137474,1516:479:2,169.5,57,0,0,-0.00600506 -137475,1517:370:1,170,57,0,0,-0.00599305 -137476,1517:370:2,170.5,57,0,0,-0.00597974 -137477,1517:371:1,171,57,0,0,-0.00596515 -137478,1517:371:2,171.5,57,0,0,-0.00594927 -137479,1517:372:1,172,57,0,0,-0.00593343 -137480,1517:372:2,172.5,57,0,0,-0.00592286 -137481,1517:373:1,173,57,0,0,-0.00591106 -137482,1517:373:2,173.5,57,0,0,-0.00589925 -137483,1517:374:1,174,57,0,0,-0.00588873 -137484,1517:374:2,174.5,57,0,0,-0.00587959 -137485,1517:475:1,175,57,0,0,-0.00587178 -137486,1517:475:2,175.5,57,0,0,-0.00586263 -137487,1517:476:1,176,57,0,0,-0.00585222 -137488,1517:476:2,176.5,57,0,0,-0.00585353 -137489,1517:477:1,177,57,0,0,-0.00585091 -137490,1517:477:2,177.5,57,0,0,-0.00581464 -137491,1517:478:1,178,57,0,0,-0.00576575 -137492,1517:478:2,178.5,57,0,0,-0.00574912 -137493,1517:479:1,179,57,0,0,-0.00577471 -137494,1517:479:2,179.5,57,0,0,-0.00582498 -137495,1518:370:1,180,57,0,0,-0.0058496 -137496,7518:370:3,-180,57.5,0,0,-0.00588482 -137497,7517:479:4,-179.5,57.5,0,0,-0.00586263 -137498,7517:479:3,-179,57.5,0,0,-0.00585091 -137499,7517:478:4,-178.5,57.5,0,0,-0.00586526 -137500,7517:478:3,-178,57.5,0,0,-0.00583665 -137501,7517:477:4,-177.5,57.5,0,0,-0.00576575 -137502,7517:477:3,-177,57.5,0,0,-0.00572488 -137503,7517:476:4,-176.5,57.5,0,0,-0.0057033 -137504,7517:476:3,-176,57.5,0,0,-0.00571472 -137505,7517:475:4,-175.5,57.5,0,0,-0.00570837 -137506,7517:475:3,-175,57.5,0,0,-0.0057033 -137507,7517:374:4,-174.5,57.5,0,0,-0.00580302 -137508,7517:374:3,-174,57.5,0,0,-0.00597844 -137509,7517:373:4,-173.5,57.5,0,0,-0.00597179 -137510,7517:373:3,-173,57.5,0,0,-0.00587959 -137511,7517:372:4,-172.5,57.5,0,0,-0.00579272 -137512,7517:372:3,-172,57.5,0,0,-0.00572741 -137513,7517:371:4,-171.5,57.5,0,0,-0.00565658 -137514,7517:371:3,-171,57.5,0,0,-0.00561527 -137515,7517:370:4,-170.5,57.5,0,0,-0.0055941 -137516,7509:370:3,-90,57.5,0,0,-0.00587306 -137517,7508:479:4,-89.5,57.5,0,0,-0.00611552 -137518,7508:479:3,-89,57.5,0,0,-0.00643922 -137519,7508:478:4,-88.5,57.5,0,0,-0.0066547 -137520,7508:478:3,-88,57.5,0,0,-0.00655336 -137521,7508:477:4,-87.5,57.5,0,0,-0.00653732 -137522,7508:477:3,-87,57.5,0,0,-0.00648092 -137523,7508:476:4,-86.5,57.5,0,0,-0.00655625 -137524,7508:476:3,-86,57.5,0,0,-0.00660749 -137525,7508:475:4,-85.5,57.5,0,0,-0.00664437 -137526,7508:475:3,-85,57.5,0,0,-0.00660458 -137527,7508:374:4,-84.5,57.5,0,0,-0.00652717 -137528,7508:374:3,-84,57.5,0,0,-0.00647801 -137529,7508:373:4,-83.5,57.5,0,0,-0.00648377 -137530,7508:373:3,-83,57.5,0,0,-0.00649531 -137531,7508:372:4,-82.5,57.5,0,0,-0.00649099 -137532,7508:372:3,-82,57.5,0,0,-0.00652717 -137533,7508:371:4,-81.5,57.5,0,0,-0.00654607 -137534,7508:371:3,-81,57.5,0,0,-0.00652571 -137535,7508:370:4,-80.5,57.5,0,0,-0.006504 -137536,7508:370:3,-80,57.5,0,0,-0.00648092 -137537,7507:479:4,-79.5,57.5,0,0,-0.00645787 -137538,7507:479:3,-79,57.5,0,0,-0.00644495 -137539,7507:478:4,-78.5,57.5,0,0,-0.00643206 -137540,7507:478:3,-78,57.5,0,0,-0.00640354 -137541,7507:477:4,-77.5,57.5,0,0,-0.00634118 -137542,7507:477:3,-77,57.5,0,0,-0.0062405 -137543,7507:476:4,-76.5,57.5,0,0,-0.00616053 -137544,7507:476:3,-76,57.5,0,0,-0.00616877 -137545,7507:475:4,-75.5,57.5,0,0,-0.00615234 -137546,7507:475:3,-75,57.5,0,0,-0.00613867 -137547,7507:374:4,-74.5,57.5,0,0,-0.00610602 -137548,7507:374:3,-74,57.5,0,0,-0.00605332 -137549,7507:373:4,-73.5,57.5,0,0,-0.00601309 -137550,7507:371:4,-71.5,57.5,0,0,-0.00600371 -137551,7507:371:3,-71,57.5,0,0,-0.00601709 -137552,7507:370:4,-70.5,57.5,0,0,-0.00599041 -137553,7507:370:3,-70,57.5,0,0,-0.00602378 -137554,7506:479:4,-69.5,57.5,0,0,-0.00607623 -137555,7505:374:4,-54.5,57.5,0,0,-0.00577088 -137556,7505:374:3,-54,57.5,0,0,-0.0058496 -137557,7505:373:4,-53.5,57.5,0,0,-0.00579527 -137558,7505:373:3,-53,57.5,0,0,-0.00574144 -137559,7505:372:4,-52.5,57.5,0,0,-0.0057198 -137560,7505:372:3,-52,57.5,0,0,-0.00571472 -137561,7505:371:4,-51.5,57.5,0,0,-0.00573763 -137562,7505:371:3,-51,57.5,0,0,-0.00574144 -137563,7505:370:4,-50.5,57.5,0,0,-0.00574273 -137564,7505:370:3,-50,57.5,0,0,-0.00582111 -137565,7504:479:4,-49.5,57.5,0,0,-0.00606273 -137566,7504:479:3,-49,57.5,0,0,-0.00707768 -137567,7504:478:4,-48.5,57.5,0,0,-0.0111829 -137568,7504:478:3,-48,57.5,0,0,-0.0140556 -137569,7504:477:4,-47.5,57.5,0,0,-0.0136614 -137570,7504:477:3,-47,57.5,0,0,-0.0136951 -137571,7504:476:4,-46.5,57.5,0,0,-0.0123166 -137572,7504:476:3,-46,57.5,0,0,-0.0120416 -137573,7504:475:4,-45.5,57.5,0,0,-0.0123029 -137574,7504:475:3,-45,57.5,0,0,-0.0120146 -137575,7504:374:4,-44.5,57.5,0,0,-0.0120201 -137576,7504:374:3,-44,57.5,0,0,-0.0122452 -137577,7502:475:4,-25.5,57.5,0,0,-0.00615234 -137578,7502:475:3,-25,57.5,0,0,-0.00619351 -137579,7502:373:3,-23,57.5,0,0,-0.00569824 -137580,7502:372:4,-22.5,57.5,0,0,-0.0056818 -137581,7502:372:3,-22,57.5,0,0,-0.00570581 -137582,7502:371:4,-21.5,57.5,0,0,-0.00573125 -137583,7502:371:3,-21,57.5,0,0,-0.00574526 -137584,7502:370:4,-20.5,57.5,0,0,-0.00597974 -137585,7502:370:3,-20,57.5,0,0,-0.00649245 -137586,7501:479:4,-19.5,57.5,0,0,-0.006549 -137587,7501:479:3,-19,57.5,0,0,-0.006549 -137588,7501:478:4,-18.5,57.5,0,0,-0.00688814 -137589,7501:478:3,-18,57.5,0,0,-0.00806208 -137590,7501:477:4,-17.5,57.5,0,0,-0.00977432 -137591,7501:477:3,-17,57.5,0,0,-0.0104209 -137592,7501:476:4,-16.5,57.5,0,0,-0.0111181 -137593,7501:476:3,-16,57.5,0,0,-0.0116081 -137594,7501:475:4,-15.5,57.5,0,0,-0.0118997 -137595,7501:475:3,-15,57.5,0,0,-0.0120416 -137596,7501:374:4,-14.5,57.5,0,0,-0.011929 -137597,7501:374:3,-14,57.5,0,0,-0.0118731 -137598,7501:373:4,-13.5,57.5,0,0,-0.0122015 -137599,7501:373:3,-13,57.5,0,0,-0.013576 -137600,7501:372:4,-12.5,57.5,0,0,-0.015506 -137601,7501:372:3,-12,57.5,0,0,-0.0169477 -137602,7501:371:4,-11.5,57.5,0,0,-0.0182448 -137603,7501:371:3,-11,57.5,0,0,-0.0199508 -137604,7501:370:4,-10.5,57.5,0,0,-0.021227 -137605,7501:370:3,-10,57.5,0,0,-0.0220175 -137606,7500:479:4,-9.5,57.5,0,0,-0.0230874 -137607,7500:479:3,-9,57.5,0,0,-0.024497 -137608,7500:478:4,-8.5,57.5,0,0,-0.0247703 -137609,7500:478:3,-8,57.5,0,0,-0.0243312 -137610,7500:477:4,-7.5,57.5,0,0,-0.0246918 -137611,7500:477:3,-7,57.5,0,0,-0.025766 -137612,7500:476:4,-6.5,57.5,0,0,-0.0250864 -137613,7500:476:3,-6,57.5,0,0,-0.0237385 -137614,7500:475:4,-5.5,57.5,0,0,-0.0232708 -137615,7500:475:3,-5,57.5,0,0,-0.0233498 -137616,7500:374:4,-4.5,57.5,0,0,-0.0250977 -137617,7500:374:3,-4,57.5,0,0,-0.0314698 -137618,7500:373:4,-3.5,57.5,0,0,-0.0364823 -137619,7500:373:3,-3,57.5,0,0,-0.0418607 -137620,7500:372:4,-2.5,57.5,0,0,-0.0453265 -137621,7500:372:3,-2,57.5,0,0,-0.047296 -137622,7500:371:4,-1.5,57.5,0,0,-0.0482695 -137623,7500:371:3,-1,57.5,0,0,-0.0492752 -137624,7500:370:4,-0.5,57.5,0,0,-0.0497112 -137625,1500:370:4,0,57.5,0,0,-0.0513653 -137626,1500:370:4,0.5,57.5,0,0,-0.0517363 -137627,1500:371:3,1,57.5,0,0,-0.052524 -137628,1500:371:4,1.5,57.5,0,0,-0.0487528 -137629,1500:372:3,2,57.5,0,0,-0.048719 -137630,1500:372:4,2.5,57.5,0,0,-0.0456626 -137631,1501:370:3,10,57.5,0,0,-0.0130544 -137632,1501:370:4,10.5,57.5,0,0,-0.0159077 -137633,1501:371:3,11,57.5,0,0,-0.0160188 -137634,1501:371:4,11.5,57.5,0,0,-0.0151926 -137635,1501:372:3,12,57.5,0,0,-0.0134248 -137636,1516:374:3,164,57.5,0,0,-0.00624745 -137637,1516:374:4,164.5,57.5,0,0,-0.00623635 -137638,1516:475:3,165,57.5,0,0,-0.00621283 -137639,1516:475:4,165.5,57.5,0,0,-0.00618524 -137640,1516:476:3,166,57.5,0,0,-0.00616191 -137641,1516:476:4,166.5,57.5,0,0,-0.00614142 -137642,1516:477:3,167,57.5,0,0,-0.00611415 -137643,1516:477:4,167.5,57.5,0,0,-0.00608432 -137644,1516:478:3,168,57.5,0,0,-0.00604925 -137645,1516:478:4,168.5,57.5,0,0,-0.00601174 -137646,1516:479:3,169,57.5,0,0,-0.0059771 -137647,1516:479:4,169.5,57.5,0,0,-0.00595456 -137648,1517:370:3,170,57.5,0,0,-0.00594794 -137649,1517:370:4,170.5,57.5,0,0,-0.00594794 -137650,1517:371:3,171,57.5,0,0,-0.00593605 -137651,1517:371:4,171.5,57.5,0,0,-0.00591632 -137652,1517:372:3,172,57.5,0,0,-0.00589925 -137653,1517:372:4,172.5,57.5,0,0,-0.00589005 -137654,1517:373:3,173,57.5,0,0,-0.0058835 -137655,1517:373:4,173.5,57.5,0,0,-0.00587828 -137656,1517:374:3,174,57.5,0,0,-0.00587178 -137657,1517:374:4,174.5,57.5,0,0,-0.00586005 -137658,1517:475:3,175,57.5,0,0,-0.00584183 -137659,1517:475:4,175.5,57.5,0,0,-0.00582498 -137660,1517:476:3,176,57.5,0,0,-0.00581074 -137661,1517:476:4,176.5,57.5,0,0,-0.00579916 -137662,1517:477:3,177,57.5,0,0,-0.00578498 -137663,1517:477:4,177.5,57.5,0,0,-0.00576317 -137664,1517:478:3,178,57.5,0,0,-0.00572488 -137665,1517:478:4,178.5,57.5,0,0,-0.00572232 -137666,1517:479:3,179,57.5,0,0,-0.00575294 -137667,1517:479:4,179.5,57.5,0,0,-0.00583534 -137668,1518:370:3,180,57.5,0,0,-0.00588482 -137669,7518:380:1,-180,58,0,0,-0.00583403 -137670,7517:489:2,-179.5,58,0,0,-0.00587828 -137671,7517:489:1,-179,58,0,0,-0.00581851 -137672,7517:488:2,-178.5,58,0,0,-0.00579012 -137673,7517:488:1,-178,58,0,0,-0.00576959 -137674,7517:487:2,-177.5,58,0,0,-0.00572616 -137675,7517:487:1,-177,58,0,0,-0.00567926 -137676,7517:486:2,-176.5,58,0,0,-0.00564654 -137677,7517:486:1,-176,58,0,0,-0.00564781 -137678,7517:485:2,-175.5,58,0,0,-0.00567675 -137679,7517:485:1,-175,58,0,0,-0.00573125 -137680,7517:384:2,-174.5,58,0,0,-0.00578883 -137681,7517:384:1,-174,58,0,0,-0.00585353 -137682,7517:383:2,-173.5,58,0,0,-0.00593078 -137683,7517:383:1,-173,58,0,0,-0.00590974 -137684,7517:382:2,-172.5,58,0,0,-0.00584833 -137685,7517:382:1,-172,58,0,0,-0.00577213 -137686,7517:381:2,-171.5,58,0,0,-0.0056818 -137687,7517:381:1,-171,58,0,0,-0.00563904 -137688,7508:489:2,-89.5,58,0,0,-0.00574526 -137689,7508:489:1,-89,58,0,0,-0.00596912 -137690,7508:488:2,-88.5,58,0,0,-0.00636947 -137691,7508:488:1,-88,58,0,0,-0.0066399 -137692,7508:487:2,-87.5,58,0,0,-0.00659427 -137693,7508:487:1,-87,58,0,0,-0.00641781 -137694,7508:486:2,-86.5,58,0,0,-0.00635674 -137695,7508:486:1,-86,58,0,0,-0.00648092 -137696,7508:485:2,-85.5,58,0,0,-0.00651845 -137697,7508:485:1,-85,58,0,0,-0.00648232 -137698,7508:384:2,-84.5,58,0,0,-0.00639785 -137699,7508:384:1,-84,58,0,0,-0.00642207 -137700,7508:383:2,-83.5,58,0,0,-0.00650109 -137701,7508:383:1,-83,58,0,0,-0.00649099 -137702,7508:382:2,-82.5,58,0,0,-0.00646651 -137703,7508:382:1,-82,58,0,0,-0.00649531 -137704,7508:381:2,-81.5,58,0,0,-0.00649677 -137705,7508:381:1,-81,58,0,0,-0.00646506 -137706,7508:380:2,-80.5,58,0,0,-0.00643206 -137707,7508:380:1,-80,58,0,0,-0.00639641 -137708,7507:489:2,-79.5,58,0,0,-0.00636097 -137709,7507:489:1,-79,58,0,0,-0.00634545 -137710,7507:488:2,-78.5,58,0,0,-0.00634825 -137711,7507:488:1,-78,58,0,0,-0.00630463 -137712,7507:487:2,-77.5,58,0,0,-0.00620175 -137713,7507:487:1,-77,58,0,0,-0.00603315 -137714,7507:486:2,-76.5,58,0,0,-0.0060965 -137715,7507:486:1,-76,58,0,0,-0.006083 -137716,7507:485:2,-75.5,58,0,0,-0.00602109 -137717,7507:485:1,-75,58,0,0,-0.00607351 -137718,7507:384:2,-74.5,58,0,0,-0.00601574 -137719,7507:384:1,-74,58,0,0,-0.00583922 -137720,7507:381:2,-71.5,58,0,0,-0.00610735 -137721,7507:381:1,-71,58,0,0,-0.00593211 -137722,7507:380:2,-70.5,58,0,0,-0.00587437 -137723,7507:380:1,-70,58,0,0,-0.00589005 -137724,7506:489:2,-69.5,58,0,0,-0.00592419 -137725,7506:489:1,-69,58,0,0,-0.00595456 -137726,7506:485:2,-65.5,58,0,0,-0.00588223 -137727,7506:485:1,-65,58,0,0,-0.0058835 -137728,7506:384:2,-64.5,58,0,0,-0.00587959 -137729,7506:384:1,-64,58,0,0,-0.00587178 -137730,7505:384:2,-54.5,58,0,0,-0.00581334 -137731,7505:384:1,-54,58,0,0,-0.00580042 -137732,7505:383:2,-53.5,58,0,0,-0.00575677 -137733,7505:383:1,-53,58,0,0,-0.00571344 -137734,7505:382:2,-52.5,58,0,0,-0.00569445 -137735,7505:382:1,-52,58,0,0,-0.00569569 -137736,7505:381:2,-51.5,58,0,0,-0.00572616 -137737,7505:381:1,-51,58,0,0,-0.00574783 -137738,7505:380:2,-50.5,58,0,0,-0.00570458 -137739,7505:380:1,-50,58,0,0,-0.00569445 -137740,7504:489:2,-49.5,58,0,0,-0.00576317 -137741,7504:489:1,-49,58,0,0,-0.00608027 -137742,7504:488:2,-48.5,58,0,0,-0.0074444 -137743,7504:488:1,-48,58,0,0,-0.00800307 -137744,7504:487:2,-47.5,58,0,0,-0.00704469 -137745,7504:487:1,-47,58,0,0,-0.00822902 -137746,7504:486:2,-46.5,58,0,0,-0.00982463 -137747,7504:384:1,-44,58,0,0,-0.0121036 -137748,7502:383:1,-23,58,0,0,-0.00569318 -137749,7502:382:2,-22.5,58,0,0,-0.00567926 -137750,7502:382:1,-22,58,0,0,-0.00570709 -137751,7502:381:2,-21.5,58,0,0,-0.00573506 -137752,7502:381:1,-21,58,0,0,-0.00580818 -137753,7502:380:2,-20.5,58,0,0,-0.00595985 -137754,7502:380:1,-20,58,0,0,-0.00646221 -137755,7501:489:2,-19.5,58,0,0,-0.00744607 -137756,7501:489:1,-19,58,0,0,-0.00801194 -137757,7501:488:2,-18.5,58,0,0,-0.00844255 -137758,7501:488:1,-18,58,0,0,-0.00899418 -137759,7501:487:2,-17.5,58,0,0,-0.00933747 -137760,7501:487:1,-17,58,0,0,-0.00942533 -137761,7501:486:2,-16.5,58,0,0,-0.00984002 -137762,7501:486:1,-16,58,0,0,-0.0103444 -137763,7501:485:2,-15.5,58,0,0,-0.0108047 -137764,7501:485:1,-15,58,0,0,-0.0113668 -137765,7501:384:2,-14.5,58,0,0,-0.0114893 -137766,7501:384:1,-14,58,0,0,-0.0114202 -137767,7501:383:2,-13.5,58,0,0,-0.0114381 -137768,7501:383:1,-13,58,0,0,-0.0120658 -137769,7501:382:2,-12.5,58,0,0,-0.0137104 -137770,7501:382:1,-12,58,0,0,-0.01544 -137771,7501:381:2,-11.5,58,0,0,-0.0177749 -137772,7501:381:1,-11,58,0,0,-0.0192791 -137773,7501:380:2,-10.5,58,0,0,-0.0203412 -137774,7501:380:1,-10,58,0,0,-0.0219828 -137775,7500:489:2,-9.5,58,0,0,-0.0247253 -137776,7500:489:1,-9,58,0,0,-0.0260951 -137777,7500:488:2,-8.5,58,0,0,-0.0258304 -137778,7500:488:1,-8,58,0,0,-0.0264826 -137779,7500:487:2,-7.5,58,0,0,-0.0273745 -137780,7500:487:1,-7,58,0,0,-0.0273808 -137781,7500:486:2,-6.5,58,0,0,-0.0253951 -137782,7500:486:1,-6,58,0,0,-0.025206 -137783,7500:485:2,-5.5,58,0,0,-0.0250523 -137784,7500:485:1,-5,58,0,0,-0.0245303 -137785,7500:384:2,-4.5,58,0,0,-0.0282781 -137786,7500:384:1,-4,58,0,0,-0.0346754 -137787,7500:383:2,-3.5,58,0,0,-0.0380884 -137788,7500:383:1,-3,58,0,0,-0.038723 -137789,7500:382:2,-2.5,58,0,0,-0.038714 -137790,7500:382:1,-2,58,0,0,-0.0405805 -137791,7500:381:2,-1.5,58,0,0,-0.0439665 -137792,7500:381:1,-1,58,0,0,-0.0472413 -137793,7500:380:2,-0.5,58,0,0,-0.0495156 -137794,1500:380:2,0,58,0,0,-0.0496536 -137795,1500:380:2,0.5,58,0,0,-0.05007 -137796,1500:381:1,1,58,0,0,-0.0515207 -137797,1500:382:1,2,58,0,0,-0.0447546 -137798,1500:382:2,2.5,58,0,0,-0.0421217 -137799,1516:383:1,163,58,0,0,-0.00630746 -137800,1516:383:2,163.5,58,0,0,-0.00628366 -137801,1516:384:1,164,58,0,0,-0.0062544 -137802,1516:384:2,164.5,58,0,0,-0.00622109 -137803,1516:485:1,165,58,0,0,-0.00619351 -137804,1516:485:2,165.5,58,0,0,-0.00617425 -137805,1516:486:1,166,58,0,0,-0.00615234 -137806,1516:486:2,166.5,58,0,0,-0.00612777 -137807,1516:487:1,167,58,0,0,-0.0060965 -137808,1516:487:2,167.5,58,0,0,-0.00606137 -137809,1516:488:1,168,58,0,0,-0.00602914 -137810,1516:488:2,168.5,58,0,0,-0.00599704 -137811,1516:489:1,169,58,0,0,-0.00596515 -137812,1516:489:2,169.5,58,0,0,-0.00593738 -137813,1517:380:1,170,58,0,0,-0.00591632 -137814,1517:380:2,170.5,58,0,0,-0.00590317 -137815,1517:381:1,171,58,0,0,-0.00589269 -137816,1517:381:2,171.5,58,0,0,-0.0058835 -137817,1517:382:1,172,58,0,0,-0.00587437 -137818,1517:382:2,172.5,58,0,0,-0.00586784 -137819,1517:383:1,173,58,0,0,-0.00586526 -137820,1517:383:2,173.5,58,0,0,-0.00586132 -137821,1517:384:1,174,58,0,0,-0.00585222 -137822,1517:384:2,174.5,58,0,0,-0.00583534 -137823,1517:485:1,175,58,0,0,-0.00581981 -137824,1517:485:2,175.5,58,0,0,-0.00580948 -137825,1517:486:1,176,58,0,0,-0.00579527 -137826,1517:489:1,179,58,0,0,-0.005716 -137827,1517:489:2,179.5,58,0,0,-0.00574273 -137828,1518:380:1,180,58,0,0,-0.00583403 -137829,7518:380:3,-180,58.5,0,0,-0.005767 -137830,7517:489:4,-179.5,58.5,0,0,-0.00586394 -137831,7517:489:3,-179,58.5,0,0,-0.00582498 -137832,7517:488:4,-178.5,58.5,0,0,-0.00579916 -137833,7517:488:3,-178,58.5,0,0,-0.00577471 -137834,7517:487:4,-177.5,58.5,0,0,-0.00575934 -137835,7517:487:3,-177,58.5,0,0,-0.00573635 -137836,7517:486:4,-176.5,58.5,0,0,-0.00570075 -137837,7517:486:3,-176,58.5,0,0,-0.0056818 -137838,7517:485:4,-175.5,58.5,0,0,-0.00568558 -137839,7517:485:3,-175,58.5,0,0,-0.00572997 -137840,7517:384:4,-174.5,58.5,0,0,-0.00581204 -137841,7517:384:3,-174,58.5,0,0,-0.00588091 -137842,7517:383:4,-173.5,58.5,0,0,-0.00590974 -137843,7517:383:3,-173,58.5,0,0,-0.00586132 -137844,7517:382:4,-172.5,58.5,0,0,-0.00586005 -137845,7517:382:3,-172,58.5,0,0,-0.00585742 -137846,7517:381:4,-171.5,58.5,0,0,-0.00575294 -137847,7517:381:3,-171,58.5,0,0,-0.00567548 -137848,7517:380:4,-170.5,58.5,0,0,-0.00564405 -137849,7508:488:4,-88.5,58.5,0,0,-0.00584053 -137850,7508:488:3,-88,58.5,0,0,-0.00618801 -137851,7508:487:4,-87.5,58.5,0,0,-0.00650546 -137852,7508:487:3,-87,58.5,0,0,-0.00659723 -137853,7508:486:4,-86.5,58.5,0,0,-0.00639641 -137854,7508:486:3,-86,58.5,0,0,-0.00632713 -137855,7508:485:4,-85.5,58.5,0,0,-0.00633697 -137856,7508:485:3,-85,58.5,0,0,-0.00637086 -137857,7508:384:4,-84.5,58.5,0,0,-0.00643067 -137858,7508:384:3,-84,58.5,0,0,-0.00655189 -137859,7508:383:4,-83.5,58.5,0,0,-0.00656939 -137860,7508:383:3,-83,58.5,0,0,-0.00648377 -137861,7508:382:4,-82.5,58.5,0,0,-0.00642779 -137862,7508:382:3,-82,58.5,0,0,-0.00644067 -137863,7508:381:4,-81.5,58.5,0,0,-0.00643494 -137864,7508:381:3,-81,58.5,0,0,-0.00641493 -137865,7508:380:4,-80.5,58.5,0,0,-0.00638224 -137866,7508:380:3,-80,58.5,0,0,-0.00635389 -137867,7507:489:4,-79.5,58.5,0,0,-0.00632009 -137868,7507:489:3,-79,58.5,0,0,-0.00628085 -137869,7507:488:4,-78.5,58.5,0,0,-0.00624745 -137870,7507:488:3,-78,58.5,0,0,-0.00615919 -137871,7507:487:4,-77.5,58.5,0,0,-0.00586653 -137872,7507:486:3,-76,58.5,0,0,-0.00571344 -137873,7507:485:4,-75.5,58.5,0,0,-0.00577985 -137874,7507:485:3,-75,58.5,0,0,-0.00580302 -137875,7507:384:4,-74.5,58.5,0,0,-0.00577726 -137876,7507:384:3,-74,58.5,0,0,-0.0056818 -137877,7507:382:4,-72.5,58.5,0,0,-0.00573254 -137878,7507:382:3,-72,58.5,0,0,-0.00591892 -137879,7507:381:4,-71.5,58.5,0,0,-0.00586784 -137880,7507:381:3,-71,58.5,0,0,-0.00579657 -137881,7507:380:4,-70.5,58.5,0,0,-0.00579787 -137882,7507:380:3,-70,58.5,0,0,-0.00580302 -137883,7506:489:4,-69.5,58.5,0,0,-0.00580688 -137884,7506:489:3,-69,58.5,0,0,-0.00577855 -137885,7506:488:4,-68.5,58.5,0,0,-0.00577088 -137886,7506:488:3,-68,58.5,0,0,-0.00577985 -137887,7506:486:4,-66.5,58.5,0,0,-0.00586132 -137888,7506:486:3,-66,58.5,0,0,-0.00586784 -137889,7506:485:4,-65.5,58.5,0,0,-0.00587178 -137890,7506:485:3,-65,58.5,0,0,-0.00587569 -137891,7506:384:4,-64.5,58.5,0,0,-0.00587828 -137892,7505:384:4,-54.5,58.5,0,0,-0.00582628 -137893,7505:384:3,-54,58.5,0,0,-0.00576188 -137894,7505:383:4,-53.5,58.5,0,0,-0.005716 -137895,7505:383:3,-53,58.5,0,0,-0.00571852 -137896,7505:382:4,-52.5,58.5,0,0,-0.00568936 -137897,7505:382:3,-52,58.5,0,0,-0.00570075 -137898,7505:381:4,-51.5,58.5,0,0,-0.005716 -137899,7505:381:3,-51,58.5,0,0,-0.00570075 -137900,7505:380:4,-50.5,58.5,0,0,-0.0057033 -137901,7505:380:3,-50,58.5,0,0,-0.00570075 -137902,7504:489:4,-49.5,58.5,0,0,-0.00568307 -137903,7504:489:3,-49,58.5,0,0,-0.0057033 -137904,7504:488:4,-48.5,58.5,0,0,-0.00593343 -137905,7504:488:3,-48,58.5,0,0,-0.006083 -137906,7504:487:4,-47.5,58.5,0,0,-0.00610192 -137907,7504:487:3,-47,58.5,0,0,-0.00810709 -137908,7504:486:4,-46.5,58.5,0,0,-0.00880967 -137909,7504:384:4,-44.5,58.5,0,0,-0.0121199 -137910,7504:384:3,-44,58.5,0,0,-0.0119584 -137911,7502:383:4,-23.5,58.5,0,0,-0.00571852 -137912,7502:383:3,-23,58.5,0,0,-0.00571092 -137913,7502:382:4,-22.5,58.5,0,0,-0.00567294 -137914,7502:382:3,-22,58.5,0,0,-0.0056843 -137915,7502:381:4,-21.5,58.5,0,0,-0.00570581 -137916,7502:381:3,-21,58.5,0,0,-0.00578369 -137917,7502:380:4,-20.5,58.5,0,0,-0.00587569 -137918,7502:380:3,-20,58.5,0,0,-0.00611689 -137919,7501:489:4,-19.5,58.5,0,0,-0.0070306 -137920,7501:489:3,-19,58.5,0,0,-0.00805847 -137921,7501:488:4,-18.5,58.5,0,0,-0.00834156 -137922,7501:488:3,-18,58.5,0,0,-0.00852951 -137923,7501:487:4,-17.5,58.5,0,0,-0.00867712 -137924,7501:487:3,-17,58.5,0,0,-0.00884504 -137925,7501:486:4,-16.5,58.5,0,0,-0.0091011 -137926,7501:486:3,-16,58.5,0,0,-0.00939388 -137927,7501:485:4,-15.5,58.5,0,0,-0.00964226 -137928,7501:485:3,-15,58.5,0,0,-0.0100643 -137929,7501:384:4,-14.5,58.5,0,0,-0.0103444 -137930,7501:384:3,-14,58.5,0,0,-0.0108217 -137931,7501:383:4,-13.5,58.5,0,0,-0.0109897 -137932,7501:383:3,-13,58.5,0,0,-0.0108313 -137933,7501:382:4,-12.5,58.5,0,0,-0.0110685 -137934,7501:382:3,-12,58.5,0,0,-0.0117885 -137935,7501:381:4,-11.5,58.5,0,0,-0.0141758 -137936,7501:381:3,-11,58.5,0,0,-0.0185469 -137937,7501:380:4,-10.5,58.5,0,0,-0.0223684 -137938,7501:380:3,-10,58.5,0,0,-0.025206 -137939,7500:489:4,-9.5,58.5,0,0,-0.0272444 -137940,7500:489:3,-9,58.5,0,0,-0.0282268 -137941,7500:488:4,-8.5,58.5,0,0,-0.0288558 -137942,7500:488:3,-8,58.5,0,0,-0.0293789 -137943,7500:487:4,-7.5,58.5,0,0,-0.0291261 -137944,7500:487:3,-7,58.5,0,0,-0.028118 -137945,7500:486:4,-6.5,58.5,0,0,-0.0267664 -137946,7500:486:3,-6,58.5,0,0,-0.0264465 -137947,7500:485:4,-5.5,58.5,0,0,-0.0272135 -137948,7500:485:3,-5,58.5,0,0,-0.0281883 -137949,7500:384:4,-4.5,58.5,0,0,-0.0308803 -137950,7500:384:3,-4,58.5,0,0,-0.034954 -137951,7500:383:4,-3.5,58.5,0,0,-0.0356648 -137952,7500:383:3,-3,58.5,0,0,-0.0349221 -137953,7500:382:4,-2.5,58.5,0,0,-0.0350661 -137954,7500:382:3,-2,58.5,0,0,-0.0382811 -137955,7500:381:4,-1.5,58.5,0,0,-0.04045 -137956,7500:381:3,-1,58.5,0,0,-0.0422284 -137957,7500:380:4,-0.5,58.5,0,0,-0.0460656 -137958,1500:380:4,0,58.5,0,0,-0.0486398 -137959,1500:380:4,0.5,58.5,0,0,-0.0490929 -137960,1500:381:3,1,58.5,0,0,-0.0502679 -137961,1500:381:4,1.5,58.5,0,0,-0.0514845 -137962,1500:382:3,2,58.5,0,0,-0.0464612 -137963,1500:382:4,2.5,58.5,0,0,-0.0368349 -137964,1515:489:4,159.5,58.5,0,0,-0.0065446 -137965,1516:380:3,160,58.5,0,0,-0.00648668 -137966,1516:380:4,160.5,58.5,0,0,-0.00643922 -137967,1516:381:3,161,58.5,0,0,-0.00639928 -137968,1516:381:4,161.5,58.5,0,0,-0.00636239 -137969,1516:382:3,162,58.5,0,0,-0.0063285 -137970,1516:382:4,162.5,58.5,0,0,-0.00629762 -137971,1516:383:3,163,58.5,0,0,-0.0062725 -137972,1516:383:4,163.5,58.5,0,0,-0.00624745 -137973,1516:384:3,164,58.5,0,0,-0.00622523 -137974,1516:384:4,164.5,58.5,0,0,-0.00620175 -137975,1516:485:3,165,58.5,0,0,-0.00618251 -137976,1516:485:4,165.5,58.5,0,0,-0.00616191 -137977,1516:486:3,166,58.5,0,0,-0.00614004 -137978,1516:486:4,166.5,58.5,0,0,-0.00611282 -137979,1516:487:3,167,58.5,0,0,-0.006083 -137980,1516:487:4,167.5,58.5,0,0,-0.00605332 -137981,1516:488:3,168,58.5,0,0,-0.00602378 -137982,1516:488:4,168.5,58.5,0,0,-0.00599574 -137983,1516:489:3,169,58.5,0,0,-0.00597045 -137984,1516:489:4,169.5,58.5,0,0,-0.0059506 -137985,1517:380:3,170,58.5,0,0,-0.00593605 -137986,1517:380:4,170.5,58.5,0,0,-0.00592157 -137987,1517:381:3,171,58.5,0,0,-0.00590185 -137988,1517:381:4,171.5,58.5,0,0,-0.00588091 -137989,1517:382:3,172,58.5,0,0,-0.00586005 -137990,1517:382:4,172.5,58.5,0,0,-0.00584703 -137991,1517:383:3,173,58.5,0,0,-0.00584053 -137992,1517:383:4,173.5,58.5,0,0,-0.00583665 -137993,1517:384:3,174,58.5,0,0,-0.00583016 -137994,1517:384:4,174.5,58.5,0,0,-0.00582368 -137995,1517:485:3,175,58.5,0,0,-0.00581464 -137996,1517:485:4,175.5,58.5,0,0,-0.00580818 -137997,1517:486:3,176,58.5,0,0,-0.00580302 -137998,1517:486:4,176.5,58.5,0,0,-0.00579012 -137999,1517:487:3,177,58.5,0,0,-0.00577855 -138000,1517:489:3,179,58.5,0,0,-0.00574016 -138001,1517:489:4,179.5,58.5,0,0,-0.00574144 -138002,1518:380:3,180,58.5,0,0,-0.005767 -138003,7518:390:1,-180,59,0,0,-0.00577088 -138004,7517:499:2,-179.5,59,0,0,-0.00584314 -138005,7517:499:1,-179,59,0,0,-0.00584314 -138006,7517:498:2,-178.5,59,0,0,-0.00581981 -138007,7517:498:1,-178,59,0,0,-0.00579657 -138008,7517:497:2,-177.5,59,0,0,-0.00578628 -138009,7517:497:1,-177,59,0,0,-0.00577855 -138010,7517:496:2,-176.5,59,0,0,-0.00575677 -138011,7517:496:1,-176,59,0,0,-0.00573378 -138012,7517:495:2,-175.5,59,0,0,-0.00573125 -138013,7517:495:1,-175,59,0,0,-0.00580432 -138014,7517:394:2,-174.5,59,0,0,-0.00584703 -138015,7517:394:1,-174,59,0,0,-0.00586005 -138016,7517:393:2,-173.5,59,0,0,-0.00581981 -138017,7517:393:1,-173,59,0,0,-0.00576188 -138018,7517:392:2,-172.5,59,0,0,-0.00574655 -138019,7517:392:1,-172,59,0,0,-0.00578243 -138020,7517:391:2,-171.5,59,0,0,-0.00582628 -138021,7517:391:1,-171,59,0,0,-0.00577985 -138022,7517:390:2,-170.5,59,0,0,-0.00570965 -138023,7517:390:1,-170,59,0,0,-0.00567294 -138024,7508:498:1,-88,59,0,0,-0.00572108 -138025,7508:497:2,-87.5,59,0,0,-0.00593472 -138026,7508:497:1,-87,59,0,0,-0.0062197 -138027,7508:496:2,-86.5,59,0,0,-0.00637652 -138028,7508:496:1,-86,59,0,0,-0.00655919 -138029,7508:495:2,-85.5,59,0,0,-0.00665028 -138030,7508:495:1,-85,59,0,0,-0.00666062 -138031,7508:394:2,-84.5,59,0,0,-0.00666804 -138032,7508:394:1,-84,59,0,0,-0.00663549 -138033,7508:393:2,-83.5,59,0,0,-0.00655625 -138034,7508:393:1,-83,59,0,0,-0.00647226 -138035,7508:392:2,-82.5,59,0,0,-0.00640067 -138036,7508:392:1,-82,59,0,0,-0.00639073 -138037,7508:391:2,-81.5,59,0,0,-0.00637938 -138038,7508:391:1,-81,59,0,0,-0.00637086 -138039,7508:390:2,-80.5,59,0,0,-0.00634545 -138040,7508:390:1,-80,59,0,0,-0.00631726 -138041,7507:499:2,-79.5,59,0,0,-0.00627668 -138042,7507:499:1,-79,59,0,0,-0.00617564 -138043,7507:498:2,-78.5,59,0,0,-0.00607215 -138044,7507:498:1,-78,59,0,0,-0.00596515 -138045,7507:497:2,-77.5,59,0,0,-0.00580948 -138046,7507:394:2,-74.5,59,0,0,-0.00564907 -138047,7507:392:1,-72,59,0,0,-0.00594661 -138048,7507:391:2,-71.5,59,0,0,-0.00585353 -138049,7507:391:1,-71,59,0,0,-0.00575806 -138050,7507:390:2,-70.5,59,0,0,-0.00575165 -138051,7507:390:1,-70,59,0,0,-0.00577471 -138052,7506:499:2,-69.5,59,0,0,-0.00577601 -138053,7506:499:1,-69,59,0,0,-0.00576188 -138054,7506:498:2,-68.5,59,0,0,-0.00574912 -138055,7506:498:1,-68,59,0,0,-0.00576446 -138056,7506:497:2,-67.5,59,0,0,-0.00579916 -138057,7506:497:1,-67,59,0,0,-0.00581204 -138058,7506:496:2,-66.5,59,0,0,-0.0058172 -138059,7506:496:1,-66,59,0,0,-0.00582368 -138060,7506:495:2,-65.5,59,0,0,-0.00582755 -138061,7506:495:1,-65,59,0,0,-0.00583922 -138062,7506:394:2,-64.5,59,0,0,-0.00586916 -138063,7506:394:1,-64,59,0,0,-0.00590709 -138064,7506:393:2,-63.5,59,0,0,-0.00594 -138065,7506:393:1,-63,59,0,0,-0.0059771 -138066,7505:495:2,-55.5,59,0,0,-0.00576188 -138067,7505:495:1,-55,59,0,0,-0.00586653 -138068,7505:394:2,-54.5,59,0,0,-0.00580948 -138069,7505:394:1,-54,59,0,0,-0.00576317 -138070,7505:393:2,-53.5,59,0,0,-0.0057198 -138071,7505:393:1,-53,59,0,0,-0.00570965 -138072,7505:392:2,-52.5,59,0,0,-0.00570458 -138073,7505:392:1,-52,59,0,0,-0.005716 -138074,7505:391:2,-51.5,59,0,0,-0.00573125 -138075,7505:391:1,-51,59,0,0,-0.0057236 -138076,7505:390:2,-50.5,59,0,0,-0.005716 -138077,7505:390:1,-50,59,0,0,-0.00571092 -138078,7504:499:2,-49.5,59,0,0,-0.00569445 -138079,7504:499:1,-49,59,0,0,-0.00567294 -138080,7504:498:2,-48.5,59,0,0,-0.00570837 -138081,7504:498:1,-48,59,0,0,-0.00579397 -138082,7504:497:2,-47.5,59,0,0,-0.0059519 -138083,7504:497:1,-47,59,0,0,-0.0070698 -138084,7504:496:2,-46.5,59,0,0,-0.00785649 -138085,7504:496:1,-46,59,0,0,-0.00758323 -138086,7504:495:1,-45,59,0,0,-0.0122425 -138087,7504:394:2,-44.5,59,0,0,-0.0122179 -138088,7504:393:2,-43.5,59,0,0,-0.00912951 -138089,7502:394:1,-24,59,0,0,-0.00572488 -138090,7502:393:2,-23.5,59,0,0,-0.00568685 -138091,7502:393:1,-23,59,0,0,-0.00567421 -138092,7502:392:2,-22.5,59,0,0,-0.00566668 -138093,7502:392:1,-22,59,0,0,-0.00567803 -138094,7502:391:2,-21.5,59,0,0,-0.00570075 -138095,7502:391:1,-21,59,0,0,-0.00574273 -138096,7502:390:2,-20.5,59,0,0,-0.00588223 -138097,7502:390:1,-20,59,0,0,-0.00606273 -138098,7501:499:2,-19.5,59,0,0,-0.00652137 -138099,7501:499:1,-19,59,0,0,-0.00735383 -138100,7501:498:2,-18.5,59,0,0,-0.00813242 -138101,7501:498:1,-18,59,0,0,-0.00839567 -138102,7501:497:2,-17.5,59,0,0,-0.00840126 -138103,7501:497:1,-17,59,0,0,-0.00880374 -138104,7501:496:2,-16.5,59,0,0,-0.00894421 -138105,7501:496:1,-16,59,0,0,-0.0090424 -138106,7501:495:2,-15.5,59,0,0,-0.00916012 -138107,7501:495:1,-15,59,0,0,-0.00933957 -138108,7501:394:2,-14.5,59,0,0,-0.0096401 -138109,7501:394:1,-14,59,0,0,-0.00999045 -138110,7501:393:2,-13.5,59,0,0,-0.0102914 -138111,7501:393:1,-13,59,0,0,-0.0103306 -138112,7501:392:2,-12.5,59,0,0,-0.010319 -138113,7501:392:1,-12,59,0,0,-0.010519 -138114,7501:391:2,-11.5,59,0,0,-0.0114945 -138115,7501:391:1,-11,59,0,0,-0.0132694 -138116,7501:390:2,-10.5,59,0,0,-0.0158329 -138117,7501:390:1,-10,59,0,0,-0.0192965 -138118,7500:499:2,-9.5,59,0,0,-0.0233287 -138119,7500:499:1,-9,59,0,0,-0.0271703 -138120,7500:498:2,-8.5,59,0,0,-0.0292521 -138121,7500:498:1,-8,59,0,0,-0.0298505 -138122,7500:497:2,-7.5,59,0,0,-0.0294391 -138123,7500:497:1,-7,59,0,0,-0.0287838 -138124,7500:496:2,-6.5,59,0,0,-0.028246 -138125,7500:496:1,-6,59,0,0,-0.0281116 -138126,7500:495:2,-5.5,59,0,0,-0.0281436 -138127,7500:495:1,-5,59,0,0,-0.0286534 -138128,7500:394:2,-4.5,59,0,0,-0.0304266 -138129,7500:394:1,-4,59,0,0,-0.0330212 -138130,7500:393:2,-3.5,59,0,0,-0.0339153 -138131,7500:393:1,-3,59,0,0,-0.0341329 -138132,7500:392:2,-2.5,59,0,0,-0.0367423 -138133,7500:392:1,-2,59,0,0,-0.0394498 -138134,7500:391:2,-1.5,59,0,0,-0.039486 -138135,7500:391:1,-1,59,0,0,-0.0398961 -138136,7500:390:2,-0.5,59,0,0,-0.0425604 -138137,1500:390:2,0,59,0,0,-0.0456311 -138138,1500:390:2,0.5,59,0,0,-0.047318 -138139,1500:391:1,1,59,0,0,-0.0479574 -138140,1500:391:2,1.5,59,0,0,-0.0500583 -138141,1515:498:2,158.5,59,0,0,-0.00650979 -138142,1515:499:1,159,59,0,0,-0.00652571 -138143,1515:499:2,159.5,59,0,0,-0.00650687 -138144,1516:390:1,160,59,0,0,-0.00647081 -138145,1516:390:2,160.5,59,0,0,-0.00642923 -138146,1516:391:1,161,59,0,0,-0.00638791 -138147,1516:391:2,161.5,59,0,0,-0.00633697 -138148,1516:392:1,162,59,0,0,-0.00629903 -138149,1516:392:2,162.5,59,0,0,-0.0062725 -138150,1516:393:1,163,59,0,0,-0.006253 -138151,1516:393:2,163.5,59,0,0,-0.00623356 -138152,1516:394:1,164,59,0,0,-0.00621696 -138153,1516:394:2,164.5,59,0,0,-0.00619902 -138154,1516:495:1,165,59,0,0,-0.00618113 -138155,1516:495:2,165.5,59,0,0,-0.00616053 -138156,1516:496:1,166,59,0,0,-0.00613596 -138157,1516:496:2,166.5,59,0,0,-0.00610735 -138158,1516:497:1,167,59,0,0,-0.00607891 -138159,1516:497:2,167.5,59,0,0,-0.00605196 -138160,1516:498:1,168,59,0,0,-0.00602644 -138161,1516:498:2,168.5,59,0,0,-0.00600241 -138162,1516:499:1,169,59,0,0,-0.00598375 -138163,1516:499:2,169.5,59,0,0,-0.00596782 -138164,1517:390:1,170,59,0,0,-0.00595456 -138165,1517:390:2,170.5,59,0,0,-0.00593871 -138166,1517:391:1,171,59,0,0,-0.00591499 -138167,1517:391:2,171.5,59,0,0,-0.0058835 -138168,1517:392:1,172,59,0,0,-0.00585353 -138169,1517:392:2,172.5,59,0,0,-0.00583534 -138170,1517:393:1,173,59,0,0,-0.00582498 -138171,1517:393:2,173.5,59,0,0,-0.00581981 -138172,1517:394:1,174,59,0,0,-0.0058159 -138173,1517:394:2,174.5,59,0,0,-0.00581204 -138174,1517:495:1,175,59,0,0,-0.00580948 -138175,1517:495:2,175.5,59,0,0,-0.00580688 -138176,1517:496:1,176,59,0,0,-0.00580432 -138177,1517:496:2,176.5,59,0,0,-0.00580042 -138178,1517:497:1,177,59,0,0,-0.00579397 -138179,1517:497:2,177.5,59,0,0,-0.00578628 -138180,1517:498:1,178,59,0,0,-0.00577601 -138181,1517:498:2,178.5,59,0,0,-0.005767 -138182,1517:499:1,179,59,0,0,-0.00576059 -138183,1517:499:2,179.5,59,0,0,-0.00575934 -138184,1518:390:1,180,59,0,0,-0.00577088 -138185,7518:390:3,-180,59.5,0,0,-0.00580302 -138186,7517:499:4,-179.5,59.5,0,0,-0.00579397 -138187,7517:499:3,-179,59.5,0,0,-0.00580302 -138188,7517:498:4,-178.5,59.5,0,0,-0.00579657 -138189,7517:498:3,-178,59.5,0,0,-0.00579787 -138190,7517:497:4,-177.5,59.5,0,0,-0.00580302 -138191,7517:497:3,-177,59.5,0,0,-0.00580818 -138192,7517:496:4,-176.5,59.5,0,0,-0.00579527 -138193,7517:496:3,-176,59.5,0,0,-0.00576446 -138194,7517:495:4,-175.5,59.5,0,0,-0.00574655 -138195,7517:495:3,-175,59.5,0,0,-0.00577342 -138196,7517:394:4,-174.5,59.5,0,0,-0.00582498 -138197,7517:394:3,-174,59.5,0,0,-0.00583016 -138198,7517:393:4,-173.5,59.5,0,0,-0.00578243 -138199,7517:393:3,-173,59.5,0,0,-0.00574273 -138200,7517:392:4,-172.5,59.5,0,0,-0.00572488 -138201,7517:392:3,-172,59.5,0,0,-0.00571852 -138202,7517:391:4,-171.5,59.5,0,0,-0.00575806 -138203,7517:391:3,-171,59.5,0,0,-0.00579397 -138204,7517:390:4,-170.5,59.5,0,0,-0.00580172 -138205,7517:390:3,-170,59.5,0,0,-0.00579397 -138206,7516:499:4,-169.5,59.5,0,0,-0.00573378 -138207,7508:497:3,-87,59.5,0,0,-0.00564279 -138208,7508:496:4,-86.5,59.5,0,0,-0.005716 -138209,7508:496:3,-86,59.5,0,0,-0.00588482 -138210,7508:495:4,-85.5,59.5,0,0,-0.00618662 -138211,7508:495:3,-85,59.5,0,0,-0.00640354 -138212,7508:394:4,-84.5,59.5,0,0,-0.00652283 -138213,7508:394:3,-84,59.5,0,0,-0.00654172 -138214,7508:393:4,-83.5,59.5,0,0,-0.00651991 -138215,7508:393:3,-83,59.5,0,0,-0.00653152 -138216,7508:392:4,-82.5,59.5,0,0,-0.00647946 -138217,7508:392:3,-82,59.5,0,0,-0.00640923 -138218,7508:391:4,-81.5,59.5,0,0,-0.00637086 -138219,7508:391:3,-81,59.5,0,0,-0.00634967 -138220,7508:390:4,-80.5,59.5,0,0,-0.00632147 -138221,7508:390:3,-80,59.5,0,0,-0.00627808 -138222,7507:499:4,-79.5,59.5,0,0,-0.00619902 -138223,7507:499:3,-79,59.5,0,0,-0.00598107 -138224,7507:498:4,-78.5,59.5,0,0,-0.00579787 -138225,7507:498:3,-78,59.5,0,0,-0.00573635 -138226,7507:497:4,-77.5,59.5,0,0,-0.00567294 -138227,7507:497:3,-77,59.5,0,0,-0.00561402 -138228,7507:392:3,-72,59.5,0,0,-0.00596649 -138229,7507:391:4,-71.5,59.5,0,0,-0.00593871 -138230,7507:391:3,-71,59.5,0,0,-0.00581851 -138231,7507:390:4,-70.5,59.5,0,0,-0.0057236 -138232,7507:390:3,-70,59.5,0,0,-0.00574655 -138233,7506:499:4,-69.5,59.5,0,0,-0.00575806 -138234,7506:499:3,-69,59.5,0,0,-0.00574273 -138235,7506:498:4,-68.5,59.5,0,0,-0.00573254 -138236,7506:498:3,-68,59.5,0,0,-0.00572869 -138237,7506:497:4,-67.5,59.5,0,0,-0.00573506 -138238,7506:497:3,-67,59.5,0,0,-0.00573888 -138239,7506:496:4,-66.5,59.5,0,0,-0.00574144 -138240,7506:496:3,-66,59.5,0,0,-0.00575037 -138241,7506:495:4,-65.5,59.5,0,0,-0.00576059 -138242,7506:495:3,-65,59.5,0,0,-0.00577471 -138243,7506:394:4,-64.5,59.5,0,0,-0.00579787 -138244,7506:394:3,-64,59.5,0,0,-0.00582628 -138245,7506:393:4,-63.5,59.5,0,0,-0.00586916 -138246,7506:393:3,-63,59.5,0,0,-0.00592419 -138247,7506:392:4,-62.5,59.5,0,0,-0.00598509 -138248,7506:392:3,-62,59.5,0,0,-0.00605599 -138249,7506:391:4,-61.5,59.5,0,0,-0.00607215 -138250,7505:495:4,-55.5,59.5,0,0,-0.00590577 -138251,7505:495:3,-55,59.5,0,0,-0.00593078 -138252,7505:394:4,-54.5,59.5,0,0,-0.00590053 -138253,7505:394:3,-54,59.5,0,0,-0.00579916 -138254,7505:393:4,-53.5,59.5,0,0,-0.00574526 -138255,7505:393:3,-53,59.5,0,0,-0.00572741 -138256,7505:392:4,-52.5,59.5,0,0,-0.00572741 -138257,7505:392:3,-52,59.5,0,0,-0.0057198 -138258,7505:391:4,-51.5,59.5,0,0,-0.005716 -138259,7505:391:3,-51,59.5,0,0,-0.00571216 -138260,7505:390:4,-50.5,59.5,0,0,-0.00570458 -138261,7505:390:3,-50,59.5,0,0,-0.00570965 -138262,7504:499:4,-49.5,59.5,0,0,-0.00569951 -138263,7504:499:3,-49,59.5,0,0,-0.00568558 -138264,7504:498:4,-48.5,59.5,0,0,-0.00569445 -138265,7504:498:3,-48,59.5,0,0,-0.0057236 -138266,7504:497:4,-47.5,59.5,0,0,-0.00579012 -138267,7504:497:3,-47,59.5,0,0,-0.0061455 -138268,7504:496:4,-46.5,59.5,0,0,-0.00703838 -138269,7504:496:3,-46,59.5,0,0,-0.00651125 -138270,7504:495:4,-45.5,59.5,0,0,-0.00939177 -138271,7504:393:4,-43.5,59.5,0,0,-0.00911939 -138272,7502:393:4,-23.5,59.5,0,0,-0.00568053 -138273,7502:393:3,-23,59.5,0,0,-0.00567548 -138274,7502:392:4,-22.5,59.5,0,0,-0.00565658 -138275,7502:392:3,-22,59.5,0,0,-0.00566288 -138276,7502:391:4,-21.5,59.5,0,0,-0.00567171 -138277,7502:391:3,-21,59.5,0,0,-0.00570075 -138278,7502:390:4,-20.5,59.5,0,0,-0.00573888 -138279,7502:390:3,-20,59.5,0,0,-0.00582498 -138280,7501:499:4,-19.5,59.5,0,0,-0.00595985 -138281,7501:499:3,-19,59.5,0,0,-0.00622388 -138282,7501:498:4,-18.5,59.5,0,0,-0.00649531 -138283,7501:498:3,-18,59.5,0,0,-0.00675611 -138284,7501:497:4,-17.5,59.5,0,0,-0.00696517 -138285,7501:497:3,-17,59.5,0,0,-0.00730326 -138286,7501:496:4,-16.5,59.5,0,0,-0.00762725 -138287,7501:496:3,-16,59.5,0,0,-0.00794799 -138288,7501:495:4,-15.5,59.5,0,0,-0.00844628 -138289,7501:495:3,-15,59.5,0,0,-0.00895218 -138290,7501:394:4,-14.5,59.5,0,0,-0.00928766 -138291,7501:394:3,-14,59.5,0,0,-0.009495 -138292,7501:393:4,-13.5,59.5,0,0,-0.00962292 -138293,7501:393:3,-13,59.5,0,0,-0.00971567 -138294,7501:392:4,-12.5,59.5,0,0,-0.0097569 -138295,7501:392:3,-12,59.5,0,0,-0.00985759 -138296,7501:391:4,-11.5,59.5,0,0,-0.0100665 -138297,7501:391:3,-11,59.5,0,0,-0.0103537 -138298,7501:390:4,-10.5,59.5,0,0,-0.0112179 -138299,7501:390:3,-10,59.5,0,0,-0.0140651 -138300,7500:499:4,-9.5,59.5,0,0,-0.0193968 -138301,7500:499:3,-9,59.5,0,0,-0.0239326 -138302,7500:498:4,-8.5,59.5,0,0,-0.027035 -138303,7500:498:3,-8,59.5,0,0,-0.029199 -138304,7500:497:4,-7.5,59.5,0,0,-0.0302195 -138305,7500:497:3,-7,59.5,0,0,-0.0300754 -138306,7500:496:4,-6.5,59.5,0,0,-0.030323 -138307,7500:496:3,-6,59.5,0,0,-0.0309861 -138308,7500:495:4,-5.5,59.5,0,0,-0.0314913 -138309,7500:495:3,-5,59.5,0,0,-0.0318305 -138310,7500:394:4,-4.5,59.5,0,0,-0.0322689 -138311,7500:394:3,-4,59.5,0,0,-0.0322763 -138312,7500:393:4,-3.5,59.5,0,0,-0.032203 -138313,7500:393:3,-3,59.5,0,0,-0.03462 -138314,7500:392:4,-2.5,59.5,0,0,-0.0365241 -138315,7500:392:3,-2,59.5,0,0,-0.0381233 -138316,7500:391:4,-1.5,59.5,0,0,-0.0378967 -138317,7500:391:3,-1,59.5,0,0,-0.0378795 -138318,7500:390:4,-0.5,59.5,0,0,-0.0396952 -138319,1500:390:4,0,59.5,0,0,-0.0426979 -138320,1500:390:4,0.5,59.5,0,0,-0.0437037 -138321,1500:391:3,1,59.5,0,0,-0.0460335 -138322,1500:391:4,1.5,59.5,0,0,-0.049002 -138323,1500:392:4,2.5,59.5,0,0,-0.0462042 -138324,1500:393:3,3,59.5,0,0,-0.0311418 -138325,1515:498:3,158,59.5,0,0,-0.00645642 -138326,1515:498:4,158.5,59.5,0,0,-0.00645642 -138327,1515:499:3,159,59.5,0,0,-0.00645502 -138328,1515:499:4,159.5,59.5,0,0,-0.00643922 -138329,1516:390:3,160,59.5,0,0,-0.0064121 -138330,1516:390:4,160.5,59.5,0,0,-0.00638081 -138331,1516:391:3,161,59.5,0,0,-0.00634967 -138332,1516:391:4,161.5,59.5,0,0,-0.00631585 -138333,1516:392:3,162,59.5,0,0,-0.00628644 -138334,1516:392:4,162.5,59.5,0,0,-0.00626553 -138335,1516:393:3,163,59.5,0,0,-0.0062502 -138336,1516:393:4,163.5,59.5,0,0,-0.00623495 -138337,1516:394:3,164,59.5,0,0,-0.0062197 -138338,1516:394:4,164.5,59.5,0,0,-0.0062004 -138339,1516:495:3,165,59.5,0,0,-0.00617974 -138340,1516:495:4,165.5,59.5,0,0,-0.00615644 -138341,1516:496:3,166,59.5,0,0,-0.00612914 -138342,1516:496:4,166.5,59.5,0,0,-0.0061006 -138343,1516:497:3,167,59.5,0,0,-0.00607351 -138344,1516:497:4,167.5,59.5,0,0,-0.00604659 -138345,1516:498:3,168,59.5,0,0,-0.00602378 -138346,1516:498:4,168.5,59.5,0,0,-0.00599972 -138347,1516:499:3,169,59.5,0,0,-0.00597974 -138348,1516:499:4,169.5,59.5,0,0,-0.00596382 -138349,1517:390:3,170,59.5,0,0,-0.0059519 -138350,1517:390:4,170.5,59.5,0,0,-0.00593738 -138351,1517:391:3,171,59.5,0,0,-0.00591367 -138352,1517:391:4,171.5,59.5,0,0,-0.00588482 -138353,1517:392:3,172,59.5,0,0,-0.00585611 -138354,1517:392:4,172.5,59.5,0,0,-0.00583534 -138355,1517:393:3,173,59.5,0,0,-0.00582368 -138356,1517:393:4,173.5,59.5,0,0,-0.00581464 -138357,1517:394:3,174,59.5,0,0,-0.00580948 -138358,1517:394:4,174.5,59.5,0,0,-0.00580558 -138359,1517:495:3,175,59.5,0,0,-0.00580558 -138360,1517:495:4,175.5,59.5,0,0,-0.00580432 -138361,1517:496:3,176,59.5,0,0,-0.00580042 -138362,1517:496:4,176.5,59.5,0,0,-0.00579657 -138363,1517:497:3,177,59.5,0,0,-0.00579272 -138364,1517:497:4,177.5,59.5,0,0,-0.00578757 -138365,1517:498:3,178,59.5,0,0,-0.00578243 -138366,1517:498:4,178.5,59.5,0,0,-0.00577726 -138367,1517:499:3,179,59.5,0,0,-0.00576829 -138368,1517:499:4,179.5,59.5,0,0,-0.00576317 -138369,1518:390:3,180,59.5,0,0,-0.00580302 -138370,7618:100:1,-180,60,0,0,-0.00582755 -138371,7617:209:2,-179.5,60,0,0,-0.00580818 -138372,7617:209:1,-179,60,0,0,-0.00579657 -138373,7617:208:2,-178.5,60,0,0,-0.00579916 -138374,7617:208:1,-178,60,0,0,-0.00580688 -138375,7617:207:2,-177.5,60,0,0,-0.0058159 -138376,7617:207:1,-177,60,0,0,-0.00582368 -138377,7617:206:2,-176.5,60,0,0,-0.00581464 -138378,7617:206:1,-176,60,0,0,-0.00578498 -138379,7617:205:2,-175.5,60,0,0,-0.00576317 -138380,7617:205:1,-175,60,0,0,-0.00577471 -138381,7617:104:2,-174.5,60,0,0,-0.00579527 -138382,7617:104:1,-174,60,0,0,-0.00581074 -138383,7617:103:2,-173.5,60,0,0,-0.00577726 -138384,7617:103:1,-173,60,0,0,-0.00573125 -138385,7617:102:2,-172.5,60,0,0,-0.00570837 -138386,7617:102:1,-172,60,0,0,-0.00571092 -138387,7617:101:2,-171.5,60,0,0,-0.0057198 -138388,7617:101:1,-171,60,0,0,-0.00573506 -138389,7617:100:2,-170.5,60,0,0,-0.00575165 -138390,7617:100:1,-170,60,0,0,-0.005767 -138391,7616:209:2,-169.5,60,0,0,-0.00577985 -138392,7616:209:1,-169,60,0,0,-0.00576188 -138393,7616:208:2,-168.5,60,0,0,-0.00569063 -138394,7608:207:1,-87,60,0,0,-0.00557426 -138395,7608:206:2,-86.5,60,0,0,-0.00557426 -138396,7608:206:1,-86,60,0,0,-0.00559782 -138397,7608:205:2,-85.5,60,0,0,-0.00568053 -138398,7608:205:1,-85,60,0,0,-0.00581464 -138399,7608:104:2,-84.5,60,0,0,-0.00598107 -138400,7608:104:1,-84,60,0,0,-0.00611415 -138401,7608:103:2,-83.5,60,0,0,-0.00610329 -138402,7608:103:1,-83,60,0,0,-0.0062725 -138403,7608:102:2,-82.5,60,0,0,-0.00651991 -138404,7608:102:1,-82,60,0,0,-0.00653732 -138405,7608:101:2,-81.5,60,0,0,-0.00646506 -138406,7608:101:1,-81,60,0,0,-0.00641781 -138407,7608:100:2,-80.5,60,0,0,-0.00637652 -138408,7608:100:1,-80,60,0,0,-0.00632713 -138409,7607:209:2,-79.5,60,0,0,-0.00624465 -138410,7607:209:1,-79,60,0,0,-0.0060587 -138411,7607:208:2,-78.5,60,0,0,-0.00579397 -138412,7607:102:2,-72.5,60,0,0,-0.00597844 -138413,7607:102:1,-72,60,0,0,-0.0059519 -138414,7607:101:2,-71.5,60,0,0,-0.0059176 -138415,7607:101:1,-71,60,0,0,-0.00583922 -138416,7607:100:2,-70.5,60,0,0,-0.00576059 -138417,7607:100:1,-70,60,0,0,-0.00572108 -138418,7606:209:2,-69.5,60,0,0,-0.00572488 -138419,7606:209:1,-69,60,0,0,-0.00571852 -138420,7606:208:2,-68.5,60,0,0,-0.005716 -138421,7606:208:1,-68,60,0,0,-0.00571724 -138422,7606:207:2,-67.5,60,0,0,-0.00571344 -138423,7606:207:1,-67,60,0,0,-0.00571472 -138424,7606:206:2,-66.5,60,0,0,-0.00571472 -138425,7606:206:1,-66,60,0,0,-0.00571216 -138426,7606:205:2,-65.5,60,0,0,-0.005716 -138427,7606:205:1,-65,60,0,0,-0.00572741 -138428,7606:104:2,-64.5,60,0,0,-0.00574783 -138429,7606:104:1,-64,60,0,0,-0.00578243 -138430,7606:103:2,-63.5,60,0,0,-0.00582368 -138431,7606:103:1,-63,60,0,0,-0.00586394 -138432,7606:102:2,-62.5,60,0,0,-0.00592025 -138433,7606:102:1,-62,60,0,0,-0.00597576 -138434,7606:101:2,-61.5,60,0,0,-0.00601174 -138435,7606:101:1,-61,60,0,0,-0.00603585 -138436,7605:206:1,-56,60,0,0,-0.00597844 -138437,7605:205:2,-55.5,60,0,0,-0.0059944 -138438,7605:205:1,-55,60,0,0,-0.00595985 -138439,7605:104:2,-54.5,60,0,0,-0.00584833 -138440,7605:104:1,-54,60,0,0,-0.00578757 -138441,7605:103:2,-53.5,60,0,0,-0.00576446 -138442,7605:103:1,-53,60,0,0,-0.00574398 -138443,7605:102:2,-52.5,60,0,0,-0.00572232 -138444,7605:102:1,-52,60,0,0,-0.0057236 -138445,7605:101:2,-51.5,60,0,0,-0.00571344 -138446,7605:101:1,-51,60,0,0,-0.00569824 -138447,7605:100:2,-50.5,60,0,0,-0.00569696 -138448,7605:100:1,-50,60,0,0,-0.00569696 -138449,7604:209:2,-49.5,60,0,0,-0.00568936 -138450,7604:209:1,-49,60,0,0,-0.0056919 -138451,7604:208:2,-48.5,60,0,0,-0.00570202 -138452,7604:208:1,-48,60,0,0,-0.00570837 -138453,7604:207:2,-47.5,60,0,0,-0.00574526 -138454,7604:207:1,-47,60,0,0,-0.00579272 -138455,7604:206:2,-46.5,60,0,0,-0.00586263 -138456,7604:206:1,-46,60,0,0,-0.00598509 -138457,7604:205:2,-45.5,60,0,0,-0.00606005 -138458,7604:205:1,-45,60,0,0,-0.00680134 -138459,7604:104:2,-44.5,60,0,0,-0.00747597 -138460,7604:104:1,-44,60,0,0,-0.00897615 -138461,7602:103:2,-23.5,60,0,0,-0.00571472 -138462,7602:103:1,-23,60,0,0,-0.0056843 -138463,7602:102:2,-22.5,60,0,0,-0.00564654 -138464,7602:102:1,-22,60,0,0,-0.00564153 -138465,7602:101:2,-21.5,60,0,0,-0.00565409 -138466,7602:101:1,-21,60,0,0,-0.00567926 -138467,7602:100:2,-20.5,60,0,0,-0.00571344 -138468,7602:100:1,-20,60,0,0,-0.00575294 -138469,7601:209:2,-19.5,60,0,0,-0.00577342 -138470,7601:209:1,-19,60,0,0,-0.00580042 -138471,7601:208:2,-18.5,60,0,0,-0.00587047 -138472,7601:208:1,-18,60,0,0,-0.00596252 -138473,7601:207:2,-17.5,60,0,0,-0.00613867 -138474,7601:207:1,-17,60,0,0,-0.00638648 -138475,7601:206:2,-16.5,60,0,0,-0.00666361 -138476,7601:206:1,-16,60,0,0,-0.00700558 -138477,7601:205:2,-15.5,60,0,0,-0.00754449 -138478,7601:205:1,-15,60,0,0,-0.00852 -138479,7601:104:2,-14.5,60,0,0,-0.00936248 -138480,7601:104:1,-14,60,0,0,-0.00968536 -138481,7601:103:2,-13.5,60,0,0,-0.00967672 -138482,7601:103:1,-13,60,0,0,-0.00963367 -138483,7601:102:2,-12.5,60,0,0,-0.00956727 -138484,7601:102:1,-12,60,0,0,-0.00953528 -138485,7601:101:2,-11.5,60,0,0,-0.00957796 -138486,7601:101:1,-11,60,0,0,-0.00974389 -138487,7601:100:2,-10.5,60,0,0,-0.0101025 -138488,7601:100:1,-10,60,0,0,-0.0114997 -138489,7600:209:2,-9.5,60,0,0,-0.015702 -138490,7600:209:1,-9,60,0,0,-0.0192921 -138491,7600:208:2,-8.5,60,0,0,-0.0212991 -138492,7600:208:1,-8,60,0,0,-0.0239163 -138493,7600:207:2,-7.5,60,0,0,-0.0274992 -138494,7600:207:1,-7,60,0,0,-0.0297894 -138495,7600:206:2,-6.5,60,0,0,-0.0305308 -138496,7600:206:1,-6,60,0,0,-0.0306283 -138497,7600:205:2,-5.5,60,0,0,-0.0305724 -138498,7600:205:1,-5,60,0,0,-0.0303782 -138499,7600:104:2,-4.5,60,0,0,-0.0300412 -138500,7600:104:1,-4,60,0,0,-0.029898 -138501,7600:103:2,-3.5,60,0,0,-0.0316857 -138502,7600:103:1,-3,60,0,0,-0.0359022 -138503,7600:102:2,-2.5,60,0,0,-0.0363988 -138504,7600:102:1,-2,60,0,0,-0.037191 -138505,7600:101:2,-1.5,60,0,0,-0.0373963 -138506,7600:101:1,-1,60,0,0,-0.0372509 -138507,7600:100:2,-0.5,60,0,0,-0.0396041 -138508,1600:100:2,0,60,0,0,-0.0434623 -138509,1600:100:2,0.5,60,0,0,-0.0432525 -138510,1600:101:1,1,60,0,0,-0.0440272 -138511,1600:101:2,1.5,60,0,0,-0.0467631 -138512,1600:102:1,2,60,0,0,-0.048303 -138513,1600:102:2,2.5,60,0,0,-0.0454523 -138514,1615:208:2,158.5,60,0,0,-0.00642923 -138515,1615:209:1,159,60,0,0,-0.00640067 -138516,1615:209:2,159.5,60,0,0,-0.00637652 -138517,1616:100:1,160,60,0,0,-0.00634825 -138518,1616:100:2,160.5,60,0,0,-0.00632147 -138519,1616:101:1,161,60,0,0,-0.00630326 -138520,1616:101:2,161.5,60,0,0,-0.00629066 -138521,1616:102:1,162,60,0,0,-0.00627944 -138522,1616:102:2,162.5,60,0,0,-0.00626693 -138523,1616:103:1,163,60,0,0,-0.0062516 -138524,1616:103:2,163.5,60,0,0,-0.00623216 -138525,1616:104:1,164,60,0,0,-0.00621418 -138526,1616:104:2,164.5,60,0,0,-0.00619351 -138527,1616:205:1,165,60,0,0,-0.00617153 -138528,1616:205:2,165.5,60,0,0,-0.0061455 -138529,1616:206:1,166,60,0,0,-0.00611552 -138530,1616:206:2,166.5,60,0,0,-0.006083 -138531,1616:207:1,167,60,0,0,-0.00605196 -138532,1616:207:2,167.5,60,0,0,-0.00602244 -138533,1616:208:1,168,60,0,0,-0.0059944 -138534,1616:208:2,168.5,60,0,0,-0.00596912 -138535,1616:209:1,169,60,0,0,-0.00594532 -138536,1616:209:2,169.5,60,0,0,-0.00593211 -138537,1617:100:1,170,60,0,0,-0.00592945 -138538,1617:100:2,170.5,60,0,0,-0.00592684 -138539,1617:101:1,171,60,0,0,-0.00591367 -138540,1617:101:2,171.5,60,0,0,-0.00589137 -138541,1617:102:1,172,60,0,0,-0.00586653 -138542,1617:102:2,172.5,60,0,0,-0.00584703 -138543,1617:103:1,173,60,0,0,-0.00582885 -138544,1617:103:2,173.5,60,0,0,-0.00581464 -138545,1617:104:1,174,60,0,0,-0.00580558 -138546,1617:104:2,174.5,60,0,0,-0.00580432 -138547,1617:205:1,175,60,0,0,-0.00580818 -138548,1617:205:2,175.5,60,0,0,-0.00580432 -138549,1617:206:1,176,60,0,0,-0.00579397 -138550,1617:206:2,176.5,60,0,0,-0.00578498 -138551,1617:207:1,177,60,0,0,-0.00578114 -138552,1617:207:2,177.5,60,0,0,-0.00577726 -138553,1617:208:1,178,60,0,0,-0.00576959 -138554,1617:208:2,178.5,60,0,0,-0.00575423 -138555,1617:209:1,179,60,0,0,-0.00575423 -138556,1617:209:2,179.5,60,0,0,-0.00580688 -138557,1618:100:1,180,60,0,0,-0.00582755 -138558,7618:100:3,-180,60.5,0,0,-0.0058172 -138559,7617:209:4,-179.5,60.5,0,0,-0.00580558 -138560,7617:209:3,-179,60.5,0,0,-0.00580818 -138561,7617:208:4,-178.5,60.5,0,0,-0.00581334 -138562,7617:208:3,-178,60.5,0,0,-0.00579657 -138563,7617:207:4,-177.5,60.5,0,0,-0.00580042 -138564,7617:207:3,-177,60.5,0,0,-0.0058172 -138565,7617:206:4,-176.5,60.5,0,0,-0.00583146 -138566,7617:206:3,-176,60.5,0,0,-0.00580172 -138567,7617:205:4,-175.5,60.5,0,0,-0.00578114 -138568,7617:205:3,-175,60.5,0,0,-0.00577088 -138569,7617:104:4,-174.5,60.5,0,0,-0.00577601 -138570,7617:104:3,-174,60.5,0,0,-0.00577471 -138571,7617:103:4,-173.5,60.5,0,0,-0.00575548 -138572,7617:103:3,-173,60.5,0,0,-0.00572488 -138573,7617:102:4,-172.5,60.5,0,0,-0.0056919 -138574,7617:102:3,-172,60.5,0,0,-0.00568685 -138575,7617:101:4,-171.5,60.5,0,0,-0.00570075 -138576,7617:101:3,-171,60.5,0,0,-0.00573888 -138577,7617:100:4,-170.5,60.5,0,0,-0.00578243 -138578,7617:100:3,-170,60.5,0,0,-0.00580948 -138579,7616:209:4,-169.5,60.5,0,0,-0.00581851 -138580,7616:209:3,-169,60.5,0,0,-0.00579916 -138581,7616:208:4,-168.5,60.5,0,0,-0.00578243 -138582,7616:208:3,-168,60.5,0,0,-0.00574398 -138583,7608:205:4,-85.5,60.5,0,0,-0.00557177 -138584,7608:205:3,-85,60.5,0,0,-0.00559661 -138585,7608:104:4,-84.5,60.5,0,0,-0.00559782 -138586,7608:104:3,-84,60.5,0,0,-0.00566414 -138587,7608:103:4,-83.5,60.5,0,0,-0.0056919 -138588,7608:103:3,-83,60.5,0,0,-0.00578498 -138589,7608:102:4,-82.5,60.5,0,0,-0.00596649 -138590,7608:102:3,-82,60.5,0,0,-0.00644639 -138591,7608:101:4,-81.5,60.5,0,0,-0.00653591 -138592,7608:101:3,-81,60.5,0,0,-0.00651991 -138593,7608:100:4,-80.5,60.5,0,0,-0.00647226 -138594,7608:100:3,-80,60.5,0,0,-0.0064135 -138595,7607:209:4,-79.5,60.5,0,0,-0.00634682 -138596,7607:209:3,-79,60.5,0,0,-0.00626553 -138597,7607:208:4,-78.5,60.5,0,0,-0.00613051 -138598,7607:208:3,-78,60.5,0,0,-0.00594927 -138599,7607:207:4,-77.5,60.5,0,0,-0.00577088 -138600,7607:207:3,-77,60.5,0,0,-0.00568307 -138601,7607:102:4,-72.5,60.5,0,0,-0.00596649 -138602,7607:102:3,-72,60.5,0,0,-0.00594794 -138603,7607:101:4,-71.5,60.5,0,0,-0.00588873 -138604,7607:101:3,-71,60.5,0,0,-0.00584053 -138605,7607:100:4,-70.5,60.5,0,0,-0.00580558 -138606,7607:100:3,-70,60.5,0,0,-0.00579142 -138607,7606:209:4,-69.5,60.5,0,0,-0.00575934 -138608,7606:209:3,-69,60.5,0,0,-0.00572741 -138609,7606:208:4,-68.5,60.5,0,0,-0.00571344 -138610,7606:208:3,-68,60.5,0,0,-0.0057198 -138611,7606:207:4,-67.5,60.5,0,0,-0.00573378 -138612,7606:207:3,-67,60.5,0,0,-0.00574398 -138613,7606:206:4,-66.5,60.5,0,0,-0.00574144 -138614,7606:206:3,-66,60.5,0,0,-0.00572108 -138615,7606:205:4,-65.5,60.5,0,0,-0.00571092 -138616,7606:205:3,-65,60.5,0,0,-0.00571724 -138617,7606:104:4,-64.5,60.5,0,0,-0.00575548 -138618,7606:104:3,-64,60.5,0,0,-0.00581074 -138619,7606:103:4,-63.5,60.5,0,0,-0.00585484 -138620,7606:103:3,-63,60.5,0,0,-0.00588482 -138621,7606:102:4,-62.5,60.5,0,0,-0.00590842 -138622,7606:102:3,-62,60.5,0,0,-0.00593343 -138623,7606:101:4,-61.5,60.5,0,0,-0.00598375 -138624,7606:101:3,-61,60.5,0,0,-0.00602644 -138625,7605:205:4,-55.5,60.5,0,0,-0.00577088 -138626,7605:205:3,-55,60.5,0,0,-0.00587178 -138627,7605:104:4,-54.5,60.5,0,0,-0.00579012 -138628,7605:104:3,-54,60.5,0,0,-0.00580432 -138629,7605:103:4,-53.5,60.5,0,0,-0.00576575 -138630,7605:103:3,-53,60.5,0,0,-0.00573506 -138631,7605:102:4,-52.5,60.5,0,0,-0.005716 -138632,7605:102:3,-52,60.5,0,0,-0.00570709 -138633,7605:101:4,-51.5,60.5,0,0,-0.00571472 -138634,7605:101:3,-51,60.5,0,0,-0.00570075 -138635,7605:100:4,-50.5,60.5,0,0,-0.0056843 -138636,7605:100:3,-50,60.5,0,0,-0.00569445 -138637,7604:209:4,-49.5,60.5,0,0,-0.00569318 -138638,7604:209:3,-49,60.5,0,0,-0.00567803 -138639,7604:208:4,-48.5,60.5,0,0,-0.0056818 -138640,7604:208:3,-48,60.5,0,0,-0.00578628 -138641,7604:207:4,-47.5,60.5,0,0,-0.00598241 -138642,7604:207:3,-47,60.5,0,0,-0.00643494 -138643,7604:206:4,-46.5,60.5,0,0,-0.00678926 -138644,7604:206:3,-46,60.5,0,0,-0.00711082 -138645,7604:205:4,-45.5,60.5,0,0,-0.00755793 -138646,7604:205:3,-45,60.5,0,0,-0.00827682 -138647,7604:104:4,-44.5,60.5,0,0,-0.00876461 -138648,7604:104:3,-44,60.5,0,0,-0.00954379 -138649,7602:103:3,-23,60.5,0,0,-0.00567548 -138650,7602:102:4,-22.5,60.5,0,0,-0.00564907 -138651,7602:102:3,-22,60.5,0,0,-0.00564532 -138652,7602:101:4,-21.5,60.5,0,0,-0.00564654 -138653,7602:101:3,-21,60.5,0,0,-0.00566541 -138654,7602:100:4,-20.5,60.5,0,0,-0.0057033 -138655,7602:100:3,-20,60.5,0,0,-0.00574398 -138656,7601:209:4,-19.5,60.5,0,0,-0.00578883 -138657,7601:209:3,-19,60.5,0,0,-0.00585353 -138658,7601:208:4,-18.5,60.5,0,0,-0.00597442 -138659,7601:208:3,-18,60.5,0,0,-0.00613459 -138660,7601:207:4,-17.5,60.5,0,0,-0.0064192 -138661,7601:207:3,-17,60.5,0,0,-0.00680587 -138662,7601:206:4,-16.5,60.5,0,0,-0.00718719 -138663,7601:206:3,-16,60.5,0,0,-0.00751936 -138664,7601:205:4,-15.5,60.5,0,0,-0.00791264 -138665,7601:205:3,-15,60.5,0,0,-0.00867134 -138666,7601:104:4,-14.5,60.5,0,0,-0.00927522 -138667,7601:104:3,-14,60.5,0,0,-0.00951616 -138668,7601:103:4,-13.5,60.5,0,0,-0.00936038 -138669,7601:103:3,-13,60.5,0,0,-0.00917853 -138670,7601:102:4,-12.5,60.5,0,0,-0.00910717 -138671,7601:102:3,-12,60.5,0,0,-0.00917241 -138672,7601:101:4,-11.5,60.5,0,0,-0.00930633 -138673,7601:101:3,-11,60.5,0,0,-0.00946113 -138674,7601:100:4,-10.5,60.5,0,0,-0.0096789 -138675,7601:100:3,-10,60.5,0,0,-0.0103907 -138676,7600:209:4,-9.5,60.5,0,0,-0.0137844 -138677,7600:209:3,-9,60.5,0,0,-0.019102 -138678,7600:208:4,-8.5,60.5,0,0,-0.0224444 -138679,7600:208:3,-8,60.5,0,0,-0.0233867 -138680,7600:207:4,-7.5,60.5,0,0,-0.0235939 -138681,7600:207:3,-7,60.5,0,0,-0.0258304 -138682,7600:206:4,-6.5,60.5,0,0,-0.0282012 -138683,7600:206:3,-6,60.5,0,0,-0.0288494 -138684,7600:205:4,-5.5,60.5,0,0,-0.0289611 -138685,7600:205:3,-5,60.5,0,0,-0.0289545 -138686,7600:104:4,-4.5,60.5,0,0,-0.0288886 -138687,7600:104:3,-4,60.5,0,0,-0.029898 -138688,7600:103:4,-3.5,60.5,0,0,-0.0319834 -138689,7600:103:3,-3,60.5,0,0,-0.0350101 -138690,7600:102:4,-2.5,60.5,0,0,-0.03436 -138691,7600:102:3,-2,60.5,0,0,-0.0331875 -138692,7600:101:4,-1.5,60.5,0,0,-0.0336146 -138693,7600:101:3,-1,60.5,0,0,-0.0353722 -138694,7600:100:4,-0.5,60.5,0,0,-0.0405153 -138695,1600:100:4,0,60.5,0,0,-0.04418 -138696,1600:100:4,0.5,60.5,0,0,-0.044017 -138697,1600:101:3,1,60.5,0,0,-0.0437742 -138698,1600:101:4,1.5,60.5,0,0,-0.0469798 -138699,1600:102:3,2,60.5,0,0,-0.0474606 -138700,1600:102:4,2.5,60.5,0,0,-0.0467305 -138701,1601:209:4,19.5,60.5,0,0,-0.00791619 -138702,1602:100:3,20,60.5,0,0,-0.00797104 -138703,1602:100:4,20.5,60.5,0,0,-0.00797283 -138704,1602:101:3,21,60.5,0,0,-0.00805847 -138705,1602:101:4,21.5,60.5,0,0,-0.00837138 -138706,1602:102:3,22,60.5,0,0,-0.00880572 -138707,1615:101:4,151.5,60.5,0,0,-0.0066948 -138708,1615:206:4,156.5,60.5,0,0,-0.00647081 -138709,1615:207:3,157,60.5,0,0,-0.00645068 -138710,1615:207:4,157.5,60.5,0,0,-0.00642495 -138711,1615:208:3,158,60.5,0,0,-0.00639498 -138712,1615:208:4,158.5,60.5,0,0,-0.00637086 -138713,1615:209:3,159,60.5,0,0,-0.00635109 -138714,1615:209:4,159.5,60.5,0,0,-0.00633555 -138715,1616:100:3,160,60.5,0,0,-0.00632147 -138716,1616:100:4,160.5,60.5,0,0,-0.00631165 -138717,1616:101:3,161,60.5,0,0,-0.00630463 -138718,1616:101:4,161.5,60.5,0,0,-0.00629625 -138719,1616:102:3,162,60.5,0,0,-0.00628925 -138720,1616:102:4,162.5,60.5,0,0,-0.00627527 -138721,1616:103:3,163,60.5,0,0,-0.006253 -138722,1616:103:4,163.5,60.5,0,0,-0.00622663 -138723,1616:104:3,164,60.5,0,0,-0.0062004 -138724,1616:104:4,164.5,60.5,0,0,-0.00617015 -138725,1616:205:3,165,60.5,0,0,-0.00614004 -138726,1616:205:4,165.5,60.5,0,0,-0.00611008 -138727,1616:206:3,166,60.5,0,0,-0.00607759 -138728,1616:206:4,166.5,60.5,0,0,-0.00603986 -138729,1616:207:3,167,60.5,0,0,-0.00599972 -138730,1616:207:4,167.5,60.5,0,0,-0.00596782 -138731,1616:208:3,168,60.5,0,0,-0.00594 -138732,1616:208:4,168.5,60.5,0,0,-0.00591892 -138733,1616:209:3,169,60.5,0,0,-0.00590317 -138734,1616:209:4,169.5,60.5,0,0,-0.00589661 -138735,1617:100:3,170,60.5,0,0,-0.00589401 -138736,1617:100:4,170.5,60.5,0,0,-0.00589137 -138737,1617:101:3,171,60.5,0,0,-0.00588614 -138738,1617:101:4,171.5,60.5,0,0,-0.00587569 -138739,1617:102:3,172,60.5,0,0,-0.00586263 -138740,1617:102:4,172.5,60.5,0,0,-0.00584833 -138741,1617:103:3,173,60.5,0,0,-0.00583146 -138742,1617:103:4,173.5,60.5,0,0,-0.00581464 -138743,1617:104:3,174,60.5,0,0,-0.00580302 -138744,1617:104:4,174.5,60.5,0,0,-0.00579272 -138745,1617:205:3,175,60.5,0,0,-0.00578114 -138746,1617:205:4,175.5,60.5,0,0,-0.00577088 -138747,1617:206:3,176,60.5,0,0,-0.00575806 -138748,1617:206:4,176.5,60.5,0,0,-0.00574783 -138749,1617:207:3,177,60.5,0,0,-0.00574273 -138750,1617:207:4,177.5,60.5,0,0,-0.00574016 -138751,1617:208:3,178,60.5,0,0,-0.00573763 -138752,1617:208:4,178.5,60.5,0,0,-0.00573763 -138753,1617:209:3,179,60.5,0,0,-0.00574912 -138754,1617:209:4,179.5,60.5,0,0,-0.00578114 -138755,1618:100:3,180,60.5,0,0,-0.0058172 -138756,7618:110:1,-180,61,0,0,-0.00578883 -138757,7617:219:2,-179.5,61,0,0,-0.00580948 -138758,7617:219:1,-179,61,0,0,-0.00581851 -138759,7617:218:2,-178.5,61,0,0,-0.00582368 -138760,7617:218:1,-178,61,0,0,-0.00580432 -138761,7617:217:2,-177.5,61,0,0,-0.00578628 -138762,7617:217:1,-177,61,0,0,-0.00580302 -138763,7617:216:2,-176.5,61,0,0,-0.00583795 -138764,7617:216:1,-176,61,0,0,-0.00582885 -138765,7617:215:2,-175.5,61,0,0,-0.00579916 -138766,7617:215:1,-175,61,0,0,-0.00578498 -138767,7617:114:2,-174.5,61,0,0,-0.00577471 -138768,7617:114:1,-174,61,0,0,-0.00576575 -138769,7617:113:2,-173.5,61,0,0,-0.00575165 -138770,7617:113:1,-173,61,0,0,-0.00572869 -138771,7617:112:2,-172.5,61,0,0,-0.00569318 -138772,7617:112:1,-172,61,0,0,-0.00567803 -138773,7617:111:2,-171.5,61,0,0,-0.00566918 -138774,7617:111:1,-171,61,0,0,-0.00570581 -138775,7617:110:2,-170.5,61,0,0,-0.00578757 -138776,7617:110:1,-170,61,0,0,-0.00584703 -138777,7616:219:2,-169.5,61,0,0,-0.00587306 -138778,7616:219:1,-169,61,0,0,-0.00586784 -138779,7616:218:2,-168.5,61,0,0,-0.00584703 -138780,7616:218:1,-168,61,0,0,-0.00585353 -138781,7616:217:1,-167,61,0,0,-0.00567926 -138782,7616:216:1,-166,61,0,0,-0.00568307 -138783,7616:113:2,-163.5,61,0,0,-0.00585091 -138784,7608:114:2,-84.5,61,0,0,-0.00554584 -138785,7608:112:1,-82,61,0,0,-0.00590842 -138786,7608:111:2,-81.5,61,0,0,-0.00612777 -138787,7608:111:1,-81,61,0,0,-0.00625856 -138788,7608:110:2,-80.5,61,0,0,-0.00623495 -138789,7608:110:1,-80,61,0,0,-0.0061237 -138790,7607:219:2,-79.5,61,0,0,-0.00617702 -138791,7607:219:1,-79,61,0,0,-0.00617702 -138792,7607:218:2,-78.5,61,0,0,-0.00620314 -138793,7607:218:1,-78,61,0,0,-0.00625996 -138794,7607:217:2,-77.5,61,0,0,-0.00609518 -138795,7607:217:1,-77,61,0,0,-0.00587047 -138796,7607:216:2,-76.5,61,0,0,-0.00575165 -138797,7607:113:1,-73,61,0,0,-0.00590709 -138798,7607:112:2,-72.5,61,0,0,-0.00593211 -138799,7607:112:1,-72,61,0,0,-0.0059176 -138800,7607:111:2,-71.5,61,0,0,-0.00587959 -138801,7607:111:1,-71,61,0,0,-0.00584703 -138802,7607:110:2,-70.5,61,0,0,-0.00583534 -138803,7607:110:1,-70,61,0,0,-0.00582368 -138804,7606:219:2,-69.5,61,0,0,-0.00580432 -138805,7606:219:1,-69,61,0,0,-0.00578243 -138806,7606:218:2,-68.5,61,0,0,-0.00575548 -138807,7606:218:1,-68,61,0,0,-0.00574398 -138808,7606:217:2,-67.5,61,0,0,-0.00575037 -138809,7606:217:1,-67,61,0,0,-0.005767 -138810,7606:216:2,-66.5,61,0,0,-0.00577342 -138811,7606:216:1,-66,61,0,0,-0.00575294 -138812,7606:215:2,-65.5,61,0,0,-0.00571472 -138813,7606:215:1,-65,61,0,0,-0.00570837 -138814,7606:112:2,-62.5,61,0,0,-0.00586263 -138815,7606:111:1,-61,61,0,0,-0.00602109 -138816,7606:110:2,-60.5,61,0,0,-0.00604523 -138817,7605:114:2,-54.5,61,0,0,-0.00585874 -138818,7605:114:1,-54,61,0,0,-0.00578498 -138819,7605:113:2,-53.5,61,0,0,-0.00574912 -138820,7605:113:1,-53,61,0,0,-0.00572108 -138821,7605:112:2,-52.5,61,0,0,-0.00569951 -138822,7605:112:1,-52,61,0,0,-0.0056843 -138823,7605:111:2,-51.5,61,0,0,-0.00568685 -138824,7605:111:1,-51,61,0,0,-0.00570965 -138825,7605:110:2,-50.5,61,0,0,-0.00568685 -138826,7605:110:1,-50,61,0,0,-0.00568307 -138827,7604:219:2,-49.5,61,0,0,-0.00569951 -138828,7604:219:1,-49,61,0,0,-0.00569318 -138829,7604:218:2,-48.5,61,0,0,-0.00571472 -138830,7604:218:1,-48,61,0,0,-0.00593738 -138831,7604:217:2,-47.5,61,0,0,-0.00630326 -138832,7604:217:1,-47,61,0,0,-0.0066399 -138833,7604:216:2,-46.5,61,0,0,-0.00696673 -138834,7604:216:1,-46,61,0,0,-0.00754951 -138835,7604:215:2,-45.5,61,0,0,-0.0078933 -138836,7602:112:2,-22.5,61,0,0,-0.00565658 -138837,7602:112:1,-22,61,0,0,-0.00565535 -138838,7602:111:2,-21.5,61,0,0,-0.00563652 -138839,7602:111:1,-21,61,0,0,-0.00565409 -138840,7602:110:2,-20.5,61,0,0,-0.0056919 -138841,7602:110:1,-20,61,0,0,-0.00573635 -138842,7601:219:2,-19.5,61,0,0,-0.00577985 -138843,7601:219:1,-19,61,0,0,-0.00584833 -138844,7601:218:2,-18.5,61,0,0,-0.00600107 -138845,7601:218:1,-18,61,0,0,-0.00621835 -138846,7601:217:2,-17.5,61,0,0,-0.00660014 -138847,7601:217:1,-17,61,0,0,-0.00721761 -138848,7601:216:2,-16.5,61,0,0,-0.00803697 -138849,7601:216:1,-16,61,0,0,-0.00839378 -138850,7601:215:2,-15.5,61,0,0,-0.00871592 -138851,7601:215:1,-15,61,0,0,-0.00898415 -138852,7601:114:2,-14.5,61,0,0,-0.00924422 -138853,7601:114:1,-14,61,0,0,-0.00937294 -138854,7601:113:2,-13.5,61,0,0,-0.00924837 -138855,7601:113:1,-13,61,0,0,-0.00914175 -138856,7601:112:2,-12.5,61,0,0,-0.00907272 -138857,7601:112:1,-12,61,0,0,-0.00902028 -138858,7601:111:2,-11.5,61,0,0,-0.0090424 -138859,7601:111:1,-11,61,0,0,-0.00912342 -138860,7601:110:2,-10.5,61,0,0,-0.00927105 -138861,7601:110:1,-10,61,0,0,-0.00951829 -138862,7600:219:2,-9.5,61,0,0,-0.0109017 -138863,7600:219:1,-9,61,0,0,-0.0165861 -138864,7600:218:2,-8.5,61,0,0,-0.023626 -138865,7600:218:1,-8,61,0,0,-0.0251945 -138866,7600:217:2,-7.5,61,0,0,-0.0247871 -138867,7600:217:1,-7,61,0,0,-0.0248433 -138868,7600:216:2,-6.5,61,0,0,-0.027356 -138869,7600:216:1,-6,61,0,0,-0.0292255 -138870,7600:215:2,-5.5,61,0,0,-0.0295195 -138871,7600:215:1,-5,61,0,0,-0.0299049 -138872,7600:114:2,-4.5,61,0,0,-0.0297962 -138873,7600:114:1,-4,61,0,0,-0.0311346 -138874,7600:113:2,-3.5,61,0,0,-0.0332025 -138875,7600:113:1,-3,61,0,0,-0.0330666 -138876,7600:112:2,-2.5,61,0,0,-0.0312768 -138877,7600:112:1,-2,61,0,0,-0.0318524 -138878,7600:111:2,-1.5,61,0,0,-0.0343676 -138879,7600:111:1,-1,61,0,0,-0.0371741 -138880,7600:110:2,-0.5,61,0,0,-0.0433222 -138881,1600:110:2,0,61,0,0,-0.0455681 -138882,1600:110:2,0.5,61,0,0,-0.0454103 -138883,1600:111:1,1,61,0,0,-0.0457261 -138884,1600:111:2,1.5,61,0,0,-0.0474935 -138885,1600:112:1,2,61,0,0,-0.0483364 -138886,1600:112:2,2.5,61,0,0,-0.0464074 -138887,1600:113:1,3,61,0,0,-0.0291791 -138888,1601:218:2,18.5,61,0,0,-0.00835274 -138889,1601:219:1,19,61,0,0,-0.00903238 -138890,1601:219:2,19.5,61,0,0,-0.00865013 -138891,1602:110:1,20,61,0,0,-0.00937294 -138892,1602:110:2,20.5,61,0,0,-0.00789153 -138893,1602:111:2,21.5,61,0,0,-0.00775565 -138894,1602:112:1,22,61,0,0,-0.00799948 -138895,1615:110:1,150,61,0,0,-0.00658698 -138896,1615:110:2,150.5,61,0,0,-0.00657818 -138897,1615:111:1,151,61,0,0,-0.00656355 -138898,1615:111:2,151.5,61,0,0,-0.00655483 -138899,1615:112:1,152,61,0,0,-0.00655043 -138900,1615:216:1,156,61,0,0,-0.00648092 -138901,1615:216:2,156.5,61,0,0,-0.00646795 -138902,1615:217:1,157,61,0,0,-0.00644211 -138903,1615:217:2,157.5,61,0,0,-0.0064135 -138904,1615:218:1,158,61,0,0,-0.00638648 -138905,1615:218:2,158.5,61,0,0,-0.00636097 -138906,1615:219:1,159,61,0,0,-0.00634261 -138907,1615:219:2,159.5,61,0,0,-0.00633276 -138908,1616:110:1,160,61,0,0,-0.0063243 -138909,1616:110:2,160.5,61,0,0,-0.00631726 -138910,1616:111:1,161,61,0,0,-0.00631024 -138911,1616:111:2,161.5,61,0,0,-0.00629903 -138912,1616:112:1,162,61,0,0,-0.00628366 -138913,1616:112:2,162.5,61,0,0,-0.0062725 -138914,1616:113:1,163,61,0,0,-0.0062544 -138915,1616:113:2,163.5,61,0,0,-0.00620865 -138916,1616:114:1,164,61,0,0,-0.00616467 -138917,1616:114:2,164.5,61,0,0,-0.00612232 -138918,1616:215:1,165,61,0,0,-0.00607759 -138919,1616:215:2,165.5,61,0,0,-0.0060318 -138920,1616:216:1,166,61,0,0,-0.00599041 -138921,1616:216:2,166.5,61,0,0,-0.0059506 -138922,1616:217:1,167,61,0,0,-0.0059176 -138923,1616:217:2,167.5,61,0,0,-0.00589401 -138924,1616:218:1,168,61,0,0,-0.00588091 -138925,1616:218:2,168.5,61,0,0,-0.00586653 -138926,1616:219:1,169,61,0,0,-0.00585611 -138927,1616:219:2,169.5,61,0,0,-0.0058496 -138928,1617:110:1,170,61,0,0,-0.00584441 -138929,1617:110:2,170.5,61,0,0,-0.00584183 -138930,1617:111:1,171,61,0,0,-0.00583795 -138931,1617:111:2,171.5,61,0,0,-0.00583273 -138932,1617:112:1,172,61,0,0,-0.00582498 -138933,1617:112:2,172.5,61,0,0,-0.0058172 -138934,1617:113:1,173,61,0,0,-0.00580432 -138935,1617:113:2,173.5,61,0,0,-0.00579527 -138936,1617:114:1,174,61,0,0,-0.00578498 -138937,1617:114:2,174.5,61,0,0,-0.00577213 -138938,1617:215:1,175,61,0,0,-0.00576059 -138939,1617:215:2,175.5,61,0,0,-0.00575037 -138940,1617:216:1,176,61,0,0,-0.00574144 -138941,1617:216:2,176.5,61,0,0,-0.00572869 -138942,1617:217:1,177,61,0,0,-0.00571724 -138943,1617:217:2,177.5,61,0,0,-0.00570709 -138944,1617:218:1,178,61,0,0,-0.00570458 -138945,1617:218:2,178.5,61,0,0,-0.00571216 -138946,1617:219:1,179,61,0,0,-0.00573125 -138947,1617:219:2,179.5,61,0,0,-0.00575677 -138948,1618:110:1,180,61,0,0,-0.00578883 -138949,7618:110:3,-180,61.5,0,0,-0.00577985 -138950,7617:219:4,-179.5,61.5,0,0,-0.00579527 -138951,7617:219:3,-179,61.5,0,0,-0.00577985 -138952,7617:218:4,-178.5,61.5,0,0,-0.00576446 -138953,7617:218:3,-178,61.5,0,0,-0.00575806 -138954,7617:217:4,-177.5,61.5,0,0,-0.00576317 -138955,7617:217:3,-177,61.5,0,0,-0.00580558 -138956,7617:216:4,-176.5,61.5,0,0,-0.00584314 -138957,7617:216:3,-176,61.5,0,0,-0.00583534 -138958,7617:215:4,-175.5,61.5,0,0,-0.0058172 -138959,7617:215:3,-175,61.5,0,0,-0.00581204 -138960,7617:114:4,-174.5,61.5,0,0,-0.00581464 -138961,7617:114:3,-174,61.5,0,0,-0.00580688 -138962,7617:113:4,-173.5,61.5,0,0,-0.00578369 -138963,7617:113:3,-173,61.5,0,0,-0.00576446 -138964,7617:112:4,-172.5,61.5,0,0,-0.00573635 -138965,7617:112:3,-172,61.5,0,0,-0.005716 -138966,7617:111:4,-171.5,61.5,0,0,-0.00570458 -138967,7617:111:3,-171,61.5,0,0,-0.00571472 -138968,7617:110:4,-170.5,61.5,0,0,-0.00576446 -138969,7617:110:3,-170,61.5,0,0,-0.00581981 -138970,7616:219:4,-169.5,61.5,0,0,-0.005877 -138971,7616:219:3,-169,61.5,0,0,-0.00590577 -138972,7616:218:4,-168.5,61.5,0,0,-0.00588614 -138973,7616:218:3,-168,61.5,0,0,-0.00587569 -138974,7616:217:4,-167.5,61.5,0,0,-0.00583665 -138975,7616:217:3,-167,61.5,0,0,-0.00580432 -138976,7616:216:4,-166.5,61.5,0,0,-0.005767 -138977,7616:216:3,-166,61.5,0,0,-0.00576317 -138978,7616:215:4,-165.5,61.5,0,0,-0.00572616 -138979,7616:215:3,-165,61.5,0,0,-0.0056818 -138980,7616:114:4,-164.5,61.5,0,0,-0.00567803 -138981,7616:114:3,-164,61.5,0,0,-0.00568558 -138982,7616:113:4,-163.5,61.5,0,0,-0.00569824 -138983,7616:113:3,-163,61.5,0,0,-0.00569951 -138984,7616:112:4,-162.5,61.5,0,0,-0.00569318 -138985,7608:112:3,-82,61.5,0,0,-0.00566288 -138986,7608:111:4,-81.5,61.5,0,0,-0.00565282 -138987,7608:111:3,-81,61.5,0,0,-0.00567548 -138988,7608:110:4,-80.5,61.5,0,0,-0.00572741 -138989,7608:110:3,-80,61.5,0,0,-0.00569063 -138990,7607:218:3,-78,61.5,0,0,-0.00584833 -138991,7607:217:4,-77.5,61.5,0,0,-0.00592945 -138992,7607:217:3,-77,61.5,0,0,-0.00597179 -138993,7607:216:4,-76.5,61.5,0,0,-0.00586005 -138994,7607:216:3,-76,61.5,0,0,-0.00573254 -138995,7607:113:3,-73,61.5,0,0,-0.00591106 -138996,7607:112:4,-72.5,61.5,0,0,-0.00592945 -138997,7607:112:3,-72,61.5,0,0,-0.00575037 -138998,7607:111:4,-71.5,61.5,0,0,-0.00583534 -138999,7607:111:3,-71,61.5,0,0,-0.00583922 -139000,7607:110:4,-70.5,61.5,0,0,-0.00584441 -139001,7607:110:3,-70,61.5,0,0,-0.00582237 -139002,7606:219:4,-69.5,61.5,0,0,-0.00579916 -139003,7606:219:3,-69,61.5,0,0,-0.00578243 -139004,7606:218:4,-68.5,61.5,0,0,-0.005767 -139005,7606:218:3,-68,61.5,0,0,-0.00575294 -139006,7606:217:4,-67.5,61.5,0,0,-0.00575294 -139007,7606:217:3,-67,61.5,0,0,-0.00577213 -139008,7606:216:4,-66.5,61.5,0,0,-0.00579012 -139009,7606:216:3,-66,61.5,0,0,-0.00578498 -139010,7606:215:4,-65.5,61.5,0,0,-0.00573378 -139011,7606:215:3,-65,61.5,0,0,-0.00570075 -139012,7606:114:4,-64.5,61.5,0,0,-0.00569318 -139013,7606:112:3,-62,61.5,0,0,-0.00581981 -139014,7606:111:4,-61.5,61.5,0,0,-0.0058496 -139015,7606:111:3,-61,61.5,0,0,-0.00588745 -139016,7605:114:3,-54,61.5,0,0,-0.00576188 -139017,7605:113:4,-53.5,61.5,0,0,-0.00575548 -139018,7605:113:3,-53,61.5,0,0,-0.00571852 -139019,7605:112:4,-52.5,61.5,0,0,-0.00568558 -139020,7605:112:3,-52,61.5,0,0,-0.00566918 -139021,7605:111:4,-51.5,61.5,0,0,-0.00567675 -139022,7605:111:3,-51,61.5,0,0,-0.00571092 -139023,7605:110:4,-50.5,61.5,0,0,-0.00570965 -139024,7605:110:3,-50,61.5,0,0,-0.00569569 -139025,7604:219:4,-49.5,61.5,0,0,-0.00568936 -139026,7604:219:3,-49,61.5,0,0,-0.00569696 -139027,7604:218:4,-48.5,61.5,0,0,-0.00579142 -139028,7604:218:3,-48,61.5,0,0,-0.00584833 -139029,7604:217:4,-47.5,61.5,0,0,-0.00602644 -139030,7604:217:3,-47,61.5,0,0,-0.00636662 -139031,7604:216:4,-46.5,61.5,0,0,-0.00663252 -139032,7604:216:3,-46,61.5,0,0,-0.00709659 -139033,7604:215:4,-45.5,61.5,0,0,-0.00755623 -139034,7604:215:3,-45,61.5,0,0,-0.00769032 -139035,7602:112:4,-22.5,61.5,0,0,-0.00570075 -139036,7602:112:3,-22,61.5,0,0,-0.00565409 -139037,7602:111:4,-21.5,61.5,0,0,-0.00563778 -139038,7602:111:3,-21,61.5,0,0,-0.00563652 -139039,7602:110:4,-20.5,61.5,0,0,-0.00566165 -139040,7602:110:3,-20,61.5,0,0,-0.00570965 -139041,7601:219:4,-19.5,61.5,0,0,-0.00579916 -139042,7601:219:3,-19,61.5,0,0,-0.00593472 -139043,7601:218:4,-18.5,61.5,0,0,-0.00609787 -139044,7601:218:3,-18,61.5,0,0,-0.0063285 -139045,7601:217:4,-17.5,61.5,0,0,-0.00692349 -139046,7601:217:3,-17,61.5,0,0,-0.00705724 -139047,7601:216:4,-16.5,61.5,0,0,-0.00802802 -139048,7601:216:3,-16,61.5,0,0,-0.00830263 -139049,7601:215:4,-15.5,61.5,0,0,-0.00815235 -139050,7601:215:3,-15,61.5,0,0,-0.00831003 -139051,7601:114:4,-14.5,61.5,0,0,-0.0087004 -139052,7601:114:3,-14,61.5,0,0,-0.00897615 -139053,7601:113:4,-13.5,61.5,0,0,-0.00906865 -139054,7601:113:3,-13,61.5,0,0,-0.0090525 -139055,7601:112:4,-12.5,61.5,0,0,-0.00899014 -139056,7601:112:3,-12,61.5,0,0,-0.00899418 -139057,7601:111:4,-11.5,61.5,0,0,-0.00906261 -139058,7601:111:3,-11,61.5,0,0,-0.00909095 -139059,7601:110:4,-10.5,61.5,0,0,-0.00912342 -139060,7601:110:3,-10,61.5,0,0,-0.00922775 -139061,7600:219:4,-9.5,61.5,0,0,-0.00969182 -139062,7600:219:3,-9,61.5,0,0,-0.0116315 -139063,7600:218:4,-8.5,61.5,0,0,-0.0186348 -139064,7600:218:3,-8,61.5,0,0,-0.0213327 -139065,7600:217:4,-7.5,61.5,0,0,-0.0268942 -139066,7600:217:3,-7,61.5,0,0,-0.0275053 -139067,7600:216:4,-6.5,61.5,0,0,-0.0286534 -139068,7600:216:3,-6,61.5,0,0,-0.0279397 -139069,7600:215:4,-5.5,61.5,0,0,-0.0277184 -139070,7600:215:3,-5,61.5,0,0,-0.0299389 -139071,7600:114:4,-4.5,61.5,0,0,-0.0304543 -139072,7600:114:3,-4,61.5,0,0,-0.0306562 -139073,7600:113:4,-3.5,61.5,0,0,-0.0319834 -139074,7600:113:3,-3,61.5,0,0,-0.0317003 -139075,7600:112:4,-2.5,61.5,0,0,-0.0310283 -139076,7600:112:3,-2,61.5,0,0,-0.0315058 -139077,7600:111:4,-1.5,61.5,0,0,-0.0347708 -139078,7600:111:3,-1,61.5,0,0,-0.0385191 -139079,7600:110:4,-0.5,61.5,0,0,-0.0438247 -139080,1600:110:4,0,61.5,0,0,-0.0456945 -139081,1600:110:4,0.5,61.5,0,0,-0.0463325 -139082,1600:111:3,1,61.5,0,0,-0.0475045 -139083,1600:111:4,1.5,61.5,0,0,-0.0485948 -139084,1600:112:3,2,61.5,0,0,-0.048877 -139085,1600:112:4,2.5,61.5,0,0,-0.0465797 -139086,1600:113:3,3,61.5,0,0,-0.0390441 -139087,1600:113:4,3.5,61.5,0,0,-0.0375249 -139088,1601:218:3,18,61.5,0,0,-0.00890244 -139089,1601:218:4,18.5,61.5,0,0,-0.00951829 -139090,1601:219:3,19,61.5,0,0,-0.0100016 -139091,1601:219:4,19.5,61.5,0,0,-0.0105284 -139092,1602:110:3,20,61.5,0,0,-0.0106991 -139093,1614:216:3,146,61.5,0,0,-0.00676662 -139094,1614:216:4,146.5,61.5,0,0,-0.00674108 -139095,1614:217:3,147,61.5,0,0,-0.00672312 -139096,1614:218:4,148.5,61.5,0,0,-0.00664139 -139097,1614:219:3,149,61.5,0,0,-0.00660162 -139098,1614:219:4,149.5,61.5,0,0,-0.00655919 -139099,1615:110:3,150,61.5,0,0,-0.00651266 -139100,1615:110:4,150.5,61.5,0,0,-0.00647371 -139101,1615:111:3,151,61.5,0,0,-0.00644784 -139102,1615:111:4,151.5,61.5,0,0,-0.00643638 -139103,1615:112:3,152,61.5,0,0,-0.00643778 -139104,1615:113:3,153,61.5,0,0,-0.00648232 -139105,1615:114:4,154.5,61.5,0,0,-0.00653879 -139106,1615:215:3,155,61.5,0,0,-0.00654172 -139107,1615:215:4,155.5,61.5,0,0,-0.00653152 -139108,1615:216:3,156,61.5,0,0,-0.00650979 -139109,1615:216:4,156.5,61.5,0,0,-0.00648668 -139110,1615:217:3,157,61.5,0,0,-0.00646361 -139111,1615:217:4,157.5,61.5,0,0,-0.00643494 -139112,1615:218:3,158,61.5,0,0,-0.00640354 -139113,1615:218:4,158.5,61.5,0,0,-0.00637514 -139114,1615:219:3,159,61.5,0,0,-0.00635531 -139115,1615:219:4,159.5,61.5,0,0,-0.00633977 -139116,1616:110:3,160,61.5,0,0,-0.0063243 -139117,1616:110:4,160.5,61.5,0,0,-0.00630604 -139118,1616:111:3,161,61.5,0,0,-0.00629203 -139119,1616:111:4,161.5,61.5,0,0,-0.00628226 -139120,1616:112:3,162,61.5,0,0,-0.00625996 -139121,1616:112:4,162.5,61.5,0,0,-0.00623356 -139122,1616:113:3,163,61.5,0,0,-0.00620731 -139123,1616:113:4,163.5,61.5,0,0,-0.00616329 -139124,1616:114:3,164,61.5,0,0,-0.00609923 -139125,1616:114:4,164.5,61.5,0,0,-0.00603315 -139126,1616:215:3,165,61.5,0,0,-0.00597844 -139127,1616:215:4,165.5,61.5,0,0,-0.00593871 -139128,1616:216:3,166,61.5,0,0,-0.00590974 -139129,1616:216:4,166.5,61.5,0,0,-0.00588745 -139130,1616:217:3,167,61.5,0,0,-0.00586784 -139131,1616:217:4,167.5,61.5,0,0,-0.00585484 -139132,1616:218:3,168,61.5,0,0,-0.00584441 -139133,1616:218:4,168.5,61.5,0,0,-0.00583403 -139134,1616:219:3,169,61.5,0,0,-0.00582628 -139135,1616:219:4,169.5,61.5,0,0,-0.00581981 -139136,1617:110:3,170,61.5,0,0,-0.00581464 -139137,1617:110:4,170.5,61.5,0,0,-0.00580818 -139138,1617:111:3,171,61.5,0,0,-0.00580172 -139139,1617:111:4,171.5,61.5,0,0,-0.00579657 -139140,1617:112:3,172,61.5,0,0,-0.00579142 -139141,1617:112:4,172.5,61.5,0,0,-0.00578628 -139142,1617:113:3,173,61.5,0,0,-0.00577985 -139143,1617:113:4,173.5,61.5,0,0,-0.00577342 -139144,1617:114:3,174,61.5,0,0,-0.005767 -139145,1617:114:4,174.5,61.5,0,0,-0.00576059 -139146,1617:215:3,175,61.5,0,0,-0.00575294 -139147,1617:215:4,175.5,61.5,0,0,-0.00574783 -139148,1617:216:3,176,61.5,0,0,-0.00574144 -139149,1617:216:4,176.5,61.5,0,0,-0.00573378 -139150,1617:217:3,177,61.5,0,0,-0.0057236 -139151,1617:217:4,177.5,61.5,0,0,-0.00570709 -139152,1617:218:3,178,61.5,0,0,-0.00569445 -139153,1617:218:4,178.5,61.5,0,0,-0.00570075 -139154,1617:219:3,179,61.5,0,0,-0.00571852 -139155,1617:219:4,179.5,61.5,0,0,-0.00574398 -139156,1618:110:3,180,61.5,0,0,-0.00577985 -139157,7618:120:1,-180,62,0,0,-0.00575294 -139158,7617:229:2,-179.5,62,0,0,-0.00576188 -139159,7617:229:1,-179,62,0,0,-0.00573763 -139160,7617:228:2,-178.5,62,0,0,-0.0057198 -139161,7617:228:1,-178,62,0,0,-0.00573506 -139162,7617:227:2,-177.5,62,0,0,-0.00576446 -139163,7617:227:1,-177,62,0,0,-0.00580432 -139164,7617:226:2,-176.5,62,0,0,-0.00582885 -139165,7617:226:1,-176,62,0,0,-0.00584314 -139166,7617:225:2,-175.5,62,0,0,-0.00582755 -139167,7617:225:1,-175,62,0,0,-0.00581464 -139168,7617:124:2,-174.5,62,0,0,-0.00583534 -139169,7617:124:1,-174,62,0,0,-0.005877 -139170,7617:123:2,-173.5,62,0,0,-0.00588873 -139171,7617:123:1,-173,62,0,0,-0.00588482 -139172,7617:122:2,-172.5,62,0,0,-0.00585091 -139173,7617:122:1,-172,62,0,0,-0.00580948 -139174,7617:121:2,-171.5,62,0,0,-0.00579142 -139175,7617:121:1,-171,62,0,0,-0.00578628 -139176,7617:120:2,-170.5,62,0,0,-0.00579272 -139177,7617:120:1,-170,62,0,0,-0.00581204 -139178,7616:229:2,-169.5,62,0,0,-0.00584183 -139179,7616:229:1,-169,62,0,0,-0.00584183 -139180,7616:228:2,-168.5,62,0,0,-0.00582111 -139181,7616:228:1,-168,62,0,0,-0.00579916 -139182,7616:227:2,-167.5,62,0,0,-0.00580432 -139183,7616:227:1,-167,62,0,0,-0.00581464 -139184,7616:226:2,-166.5,62,0,0,-0.00585742 -139185,7616:226:1,-166,62,0,0,-0.00585742 -139186,7616:225:2,-165.5,62,0,0,-0.00582628 -139187,7616:225:1,-165,62,0,0,-0.00579916 -139188,7616:124:2,-164.5,62,0,0,-0.00578114 -139189,7616:124:1,-164,62,0,0,-0.00577213 -139190,7616:123:2,-163.5,62,0,0,-0.00576575 -139191,7616:123:1,-163,62,0,0,-0.00577471 -139192,7616:122:2,-162.5,62,0,0,-0.00578757 -139193,7616:122:1,-162,62,0,0,-0.00579142 -139194,7616:121:2,-161.5,62,0,0,-0.00577342 -139195,7616:121:1,-161,62,0,0,-0.00579916 -139196,7616:120:2,-160.5,62,0,0,-0.00579657 -139197,7616:120:1,-160,62,0,0,-0.00576317 -139198,7615:229:2,-159.5,62,0,0,-0.00576959 -139199,7615:229:1,-159,62,0,0,-0.00581204 -139200,7607:226:2,-76.5,62,0,0,-0.00572616 -139201,7607:226:1,-76,62,0,0,-0.00574655 -139202,7607:225:2,-75.5,62,0,0,-0.00573254 -139203,7607:123:2,-73.5,62,0,0,-0.00572232 -139204,7607:123:1,-73,62,0,0,-0.00593472 -139205,7607:122:2,-72.5,62,0,0,-0.0059944 -139206,7607:121:2,-71.5,62,0,0,-0.00582755 -139207,7607:121:1,-71,62,0,0,-0.00577726 -139208,7607:120:2,-70.5,62,0,0,-0.00585353 -139209,7607:120:1,-70,62,0,0,-0.00583403 -139210,7606:229:2,-69.5,62,0,0,-0.00580558 -139211,7606:229:1,-69,62,0,0,-0.00578114 -139212,7606:228:2,-68.5,62,0,0,-0.00577601 -139213,7606:228:1,-68,62,0,0,-0.00576317 -139214,7606:227:2,-67.5,62,0,0,-0.00575037 -139215,7606:227:1,-67,62,0,0,-0.00576575 -139216,7606:226:2,-66.5,62,0,0,-0.00578369 -139217,7606:226:1,-66,62,0,0,-0.00578628 -139218,7606:225:2,-65.5,62,0,0,-0.005767 -139219,7606:225:1,-65,62,0,0,-0.00571344 -139220,7606:124:2,-64.5,62,0,0,-0.00571216 -139221,7606:124:1,-64,62,0,0,-0.00572869 -139222,7606:122:1,-62,62,0,0,-0.00572869 -139223,7605:124:1,-54,62,0,0,-0.00576059 -139224,7605:123:2,-53.5,62,0,0,-0.00576446 -139225,7605:123:1,-53,62,0,0,-0.00572869 -139226,7605:122:2,-52.5,62,0,0,-0.00569445 -139227,7605:122:1,-52,62,0,0,-0.00567675 -139228,7605:121:2,-51.5,62,0,0,-0.0056818 -139229,7605:121:1,-51,62,0,0,-0.0057033 -139230,7605:120:2,-50.5,62,0,0,-0.00572869 -139231,7605:120:1,-50,62,0,0,-0.00572741 -139232,7604:229:2,-49.5,62,0,0,-0.00572997 -139233,7604:229:1,-49,62,0,0,-0.00570202 -139234,7604:228:2,-48.5,62,0,0,-0.0057033 -139235,7604:228:1,-48,62,0,0,-0.00587178 -139236,7604:227:2,-47.5,62,0,0,-0.00606005 -139237,7604:227:1,-47,62,0,0,-0.00629203 -139238,7604:226:2,-46.5,62,0,0,-0.00651266 -139239,7604:226:1,-46,62,0,0,-0.00662811 -139240,7604:225:2,-45.5,62,0,0,-0.00656066 -139241,7604:225:1,-45,62,0,0,-0.00722247 -139242,7604:124:2,-44.5,62,0,0,-0.00723209 -139243,7602:121:2,-21.5,62,0,0,-0.00566288 -139244,7602:121:1,-21,62,0,0,-0.0056403 -139245,7602:120:2,-20.5,62,0,0,-0.00564279 -139246,7602:120:1,-20,62,0,0,-0.00567045 -139247,7601:229:2,-19.5,62,0,0,-0.00572488 -139248,7601:229:1,-19,62,0,0,-0.00586394 -139249,7601:228:2,-18.5,62,0,0,-0.00615919 -139250,7601:228:1,-18,62,0,0,-0.00656213 -139251,7601:227:2,-17.5,62,0,0,-0.00714252 -139252,7601:227:1,-17,62,0,0,-0.0073049 -139253,7601:226:2,-16.5,62,0,0,-0.00732766 -139254,7601:226:1,-16,62,0,0,-0.00758488 -139255,7601:225:2,-15.5,62,0,0,-0.00760521 -139256,7601:225:1,-15,62,0,0,-0.00778337 -139257,7601:124:2,-14.5,62,0,0,-0.00794799 -139258,7601:124:1,-14,62,0,0,-0.00810527 -139259,7601:123:2,-13.5,62,0,0,-0.0083193 -139260,7601:123:1,-13,62,0,0,-0.00860203 -139261,7601:122:2,-12.5,62,0,0,-0.0088569 -139262,7601:122:1,-12,62,0,0,-0.0090525 -139263,7601:121:2,-11.5,62,0,0,-0.00912547 -139264,7601:121:1,-11,62,0,0,-0.00915807 -139265,7601:120:2,-10.5,62,0,0,-0.00919697 -139266,7601:120:1,-10,62,0,0,-0.00927939 -139267,7600:229:2,-9.5,62,0,0,-0.00952892 -139268,7600:229:1,-9,62,0,0,-0.0102662 -139269,7600:228:2,-8.5,62,0,0,-0.0127255 -139270,7600:228:1,-8,62,0,0,-0.0161852 -139271,7600:227:2,-7.5,62,0,0,-0.0186558 -139272,7600:227:1,-7,62,0,0,-0.0229676 -139273,7600:226:2,-6.5,62,0,0,-0.0225816 -139274,7600:226:1,-6,62,0,0,-0.0249391 -139275,7600:225:2,-5.5,62,0,0,-0.0293989 -139276,7600:225:1,-5,62,0,0,-0.031513 -139277,7600:124:2,-4.5,62,0,0,-0.0304475 -139278,7600:124:1,-4,62,0,0,-0.0302884 -139279,7600:123:2,-3.5,62,0,0,-0.0306351 -139280,7600:123:1,-3,62,0,0,-0.0308031 -139281,7600:122:2,-2.5,62,0,0,-0.031163 -139282,7600:122:1,-2,62,0,0,-0.0352268 -139283,7600:121:2,-1.5,62,0,0,-0.037285 -139284,7600:121:1,-1,62,0,0,-0.039759 -139285,7600:120:2,-0.5,62,0,0,-0.0434122 -139286,1600:120:2,0,62,0,0,-0.0464828 -139287,1600:120:2,0.5,62,0,0,-0.048102 -139288,1600:121:1,1,62,0,0,-0.0487979 -139289,1600:121:2,1.5,62,0,0,-0.0487865 -139290,1600:122:1,2,62,0,0,-0.0466659 -139291,1600:122:2,2.5,62,0,0,-0.046601 -139292,1600:123:1,3,62,0,0,-0.0481244 -139293,1600:123:2,3.5,62,0,0,-0.045885 -139294,1600:124:1,4,62,0,0,-0.0469255 -139295,1601:226:1,16,62,0,0,-0.0097482 -139296,1601:226:2,16.5,62,0,0,-0.0104185 -139297,1601:227:1,17,62,0,0,-0.0115331 -139298,1601:227:2,17.5,62,0,0,-0.0112304 -139299,1601:228:1,18,62,0,0,-0.0103768 -139300,1601:228:2,18.5,62,0,0,-0.0102273 -139301,1601:229:1,19,62,0,0,-0.0103675 -139302,1601:229:2,19.5,62,0,0,-0.0110167 -139303,1602:120:1,20,62,0,0,-0.011913 -139304,1602:120:2,20.5,62,0,0,-0.0124245 -139305,1602:121:1,21,62,0,0,-0.0120227 -139306,1602:121:2,21.5,62,0,0,-0.0114151 -139307,1614:226:1,146,62,0,0,-0.00676515 -139308,1614:226:2,146.5,62,0,0,-0.00674859 -139309,1614:227:1,147,62,0,0,-0.00671865 -139310,1614:227:2,147.5,62,0,0,-0.00667841 -139311,1614:228:2,148.5,62,0,0,-0.00662811 -139312,1614:229:1,149,62,0,0,-0.00657818 -139313,1614:229:2,149.5,62,0,0,-0.00651266 -139314,1615:120:1,150,62,0,0,-0.00645787 -139315,1615:120:2,150.5,62,0,0,-0.00642779 -139316,1615:121:1,151,62,0,0,-0.00640067 -139317,1615:121:2,151.5,62,0,0,-0.00638362 -139318,1615:122:1,152,62,0,0,-0.00638224 -139319,1615:122:2,152.5,62,0,0,-0.00639216 -139320,1615:123:1,153,62,0,0,-0.0064078 -139321,1615:123:2,153.5,62,0,0,-0.00644067 -139322,1615:124:1,154,62,0,0,-0.00648954 -139323,1615:124:2,154.5,62,0,0,-0.00652864 -139324,1615:225:2,155.5,62,0,0,-0.00649963 -139325,1615:226:1,156,62,0,0,-0.00648668 -139326,1615:226:2,156.5,62,0,0,-0.00647511 -139327,1615:227:1,157,62,0,0,-0.00645787 -139328,1615:227:2,157.5,62,0,0,-0.00643638 -139329,1615:228:1,158,62,0,0,-0.00641067 -139330,1615:228:2,158.5,62,0,0,-0.00638648 -139331,1615:229:1,159,62,0,0,-0.00636382 -139332,1615:229:2,159.5,62,0,0,-0.00633697 -139333,1616:120:1,160,62,0,0,-0.00629625 -139334,1616:120:2,160.5,62,0,0,-0.00625716 -139335,1616:121:1,161,62,0,0,-0.00623635 -139336,1616:121:2,161.5,62,0,0,-0.00622663 -139337,1616:122:1,162,62,0,0,-0.00620865 -139338,1616:122:2,162.5,62,0,0,-0.00616739 -139339,1616:123:1,163,62,0,0,-0.00611415 -139340,1616:123:2,163.5,62,0,0,-0.00606408 -139341,1616:124:1,164,62,0,0,-0.00601439 -139342,1616:124:2,164.5,62,0,0,-0.00597045 -139343,1616:225:1,165,62,0,0,-0.00593738 -139344,1616:225:2,165.5,62,0,0,-0.00591234 -139345,1616:226:1,166,62,0,0,-0.00588614 -139346,1616:226:2,166.5,62,0,0,-0.00586394 -139347,1616:227:1,167,62,0,0,-0.00584703 -139348,1616:227:2,167.5,62,0,0,-0.00583403 -139349,1616:228:1,168,62,0,0,-0.00581981 -139350,1616:228:2,168.5,62,0,0,-0.00580818 -139351,1616:229:1,169,62,0,0,-0.00580042 -139352,1616:229:2,169.5,62,0,0,-0.00579272 -139353,1617:120:1,170,62,0,0,-0.00578628 -139354,1617:120:2,170.5,62,0,0,-0.00578243 -139355,1617:121:1,171,62,0,0,-0.00577726 -139356,1617:121:2,171.5,62,0,0,-0.00577342 -139357,1617:122:1,172,62,0,0,-0.00577088 -139358,1617:122:2,172.5,62,0,0,-0.00576829 -139359,1617:123:1,173,62,0,0,-0.00576575 -139360,1617:123:2,173.5,62,0,0,-0.00576188 -139361,1617:124:1,174,62,0,0,-0.00575934 -139362,1617:124:2,174.5,62,0,0,-0.00575677 -139363,1617:225:1,175,62,0,0,-0.00575294 -139364,1617:225:2,175.5,62,0,0,-0.00575037 -139365,1617:226:1,176,62,0,0,-0.00574526 -139366,1617:226:2,176.5,62,0,0,-0.00574398 -139367,1617:227:1,177,62,0,0,-0.00573763 -139368,1617:227:2,177.5,62,0,0,-0.00572616 -139369,1617:228:1,178,62,0,0,-0.00570581 -139370,1617:228:2,178.5,62,0,0,-0.00569318 -139371,1617:229:1,179,62,0,0,-0.00569824 -139372,1617:229:2,179.5,62,0,0,-0.0057198 -139373,1618:120:1,180,62,0,0,-0.00575294 -139374,7618:120:3,-180,62.5,0,0,-0.00569569 -139375,7617:229:4,-179.5,62.5,0,0,-0.00570709 -139376,7617:229:3,-179,62.5,0,0,-0.00571216 -139377,7617:228:4,-178.5,62.5,0,0,-0.00571216 -139378,7617:228:3,-178,62.5,0,0,-0.00574526 -139379,7617:227:4,-177.5,62.5,0,0,-0.00578883 -139380,7617:227:3,-177,62.5,0,0,-0.00581851 -139381,7617:226:4,-176.5,62.5,0,0,-0.00584833 -139382,7617:226:3,-176,62.5,0,0,-0.00586526 -139383,7617:225:4,-175.5,62.5,0,0,-0.00587959 -139384,7617:225:3,-175,62.5,0,0,-0.00587959 -139385,7617:124:4,-174.5,62.5,0,0,-0.00586394 -139386,7617:124:3,-174,62.5,0,0,-0.00583534 -139387,7617:123:4,-173.5,62.5,0,0,-0.00582368 -139388,7617:123:3,-173,62.5,0,0,-0.00581981 -139389,7617:122:4,-172.5,62.5,0,0,-0.00584314 -139390,7617:122:3,-172,62.5,0,0,-0.00585091 -139391,7617:121:4,-171.5,62.5,0,0,-0.00585353 -139392,7617:121:3,-171,62.5,0,0,-0.00584833 -139393,7617:120:4,-170.5,62.5,0,0,-0.00584703 -139394,7617:120:3,-170,62.5,0,0,-0.0058496 -139395,7616:229:4,-169.5,62.5,0,0,-0.00583795 -139396,7616:229:3,-169,62.5,0,0,-0.00582498 -139397,7616:228:4,-168.5,62.5,0,0,-0.00581204 -139398,7616:228:3,-168,62.5,0,0,-0.00579527 -139399,7616:227:4,-167.5,62.5,0,0,-0.00577855 -139400,7616:227:3,-167,62.5,0,0,-0.00577985 -139401,7616:226:4,-166.5,62.5,0,0,-0.00579142 -139402,7616:226:3,-166,62.5,0,0,-0.00579916 -139403,7616:225:4,-165.5,62.5,0,0,-0.00580558 -139404,7616:225:3,-165,62.5,0,0,-0.0058172 -139405,7616:124:4,-164.5,62.5,0,0,-0.00582628 -139406,7616:124:3,-164,62.5,0,0,-0.00583534 -139407,7616:123:4,-163.5,62.5,0,0,-0.00583146 -139408,7616:123:3,-163,62.5,0,0,-0.00582755 -139409,7616:122:4,-162.5,62.5,0,0,-0.00583273 -139410,7616:122:3,-162,62.5,0,0,-0.00585742 -139411,7616:121:4,-161.5,62.5,0,0,-0.00588482 -139412,7616:121:3,-161,62.5,0,0,-0.00590053 -139413,7616:120:4,-160.5,62.5,0,0,-0.00590577 -139414,7616:120:3,-160,62.5,0,0,-0.00591367 -139415,7615:229:4,-159.5,62.5,0,0,-0.00592025 -139416,7615:229:3,-159,62.5,0,0,-0.00591367 -139417,7615:228:4,-158.5,62.5,0,0,-0.0059506 -139418,7615:228:3,-158,62.5,0,0,-0.00597179 -139419,7607:225:4,-75.5,62.5,0,0,-0.00570837 -139420,7607:225:3,-75,62.5,0,0,-0.00574655 -139421,7607:124:4,-74.5,62.5,0,0,-0.00580558 -139422,7607:123:3,-73,62.5,0,0,-0.00590842 -139423,7607:122:4,-72.5,62.5,0,0,-0.00605599 -139424,7607:122:3,-72,62.5,0,0,-0.0056403 -139425,7606:228:3,-68,62.5,0,0,-0.00575037 -139426,7606:227:4,-67.5,62.5,0,0,-0.00577213 -139427,7606:227:3,-67,62.5,0,0,-0.005767 -139428,7606:226:4,-66.5,62.5,0,0,-0.00577088 -139429,7606:226:3,-66,62.5,0,0,-0.00577213 -139430,7606:225:4,-65.5,62.5,0,0,-0.00572108 -139431,7606:225:3,-65,62.5,0,0,-0.00569569 -139432,7606:124:4,-64.5,62.5,0,0,-0.00571852 -139433,7606:124:3,-64,62.5,0,0,-0.00577213 -139434,7606:123:4,-63.5,62.5,0,0,-0.00583534 -139435,7606:123:3,-63,62.5,0,0,-0.00582368 -139436,7606:122:4,-62.5,62.5,0,0,-0.00578114 -139437,7606:122:3,-62,62.5,0,0,-0.00574016 -139438,7606:121:4,-61.5,62.5,0,0,-0.00570458 -139439,7605:124:3,-54,62.5,0,0,-0.00576188 -139440,7605:123:4,-53.5,62.5,0,0,-0.00575423 -139441,7605:123:3,-53,62.5,0,0,-0.0057236 -139442,7605:122:4,-52.5,62.5,0,0,-0.00569951 -139443,7605:122:3,-52,62.5,0,0,-0.00568053 -139444,7605:121:4,-51.5,62.5,0,0,-0.00567803 -139445,7605:121:3,-51,62.5,0,0,-0.00568936 -139446,7605:120:4,-50.5,62.5,0,0,-0.00570709 -139447,7605:120:3,-50,62.5,0,0,-0.00571216 -139448,7604:229:4,-49.5,62.5,0,0,-0.00571344 -139449,7604:229:3,-49,62.5,0,0,-0.00570458 -139450,7604:228:4,-48.5,62.5,0,0,-0.00567421 -139451,7604:228:3,-48,62.5,0,0,-0.00568685 -139452,7604:227:4,-47.5,62.5,0,0,-0.00587047 -139453,7604:227:3,-47,62.5,0,0,-0.00623356 -139454,7604:226:4,-46.5,62.5,0,0,-0.00635389 -139455,7604:226:3,-46,62.5,0,0,-0.00630746 -139456,7604:225:4,-45.5,62.5,0,0,-0.00619902 -139457,7604:225:3,-45,62.5,0,0,-0.00607623 -139458,7604:124:4,-44.5,62.5,0,0,-0.00639641 -139459,7604:124:3,-44,62.5,0,0,-0.00563778 -139460,7604:123:4,-43.5,62.5,0,0,-0.00551147 -139461,7602:122:4,-22.5,62.5,0,0,-0.00576317 -139462,7602:122:3,-22,62.5,0,0,-0.00572997 -139463,7602:121:3,-21,62.5,0,0,-0.00563025 -139464,7602:120:4,-20.5,62.5,0,0,-0.00563277 -139465,7602:120:3,-20,62.5,0,0,-0.00564532 -139466,7601:229:4,-19.5,62.5,0,0,-0.00565409 -139467,7601:229:3,-19,62.5,0,0,-0.00565535 -139468,7601:228:4,-18.5,62.5,0,0,-0.0058496 -139469,7601:228:3,-18,62.5,0,0,-0.00626272 -139470,7601:227:4,-17.5,62.5,0,0,-0.00698226 -139471,7601:227:3,-17,62.5,0,0,-0.00809629 -139472,7601:226:4,-16.5,62.5,0,0,-0.00783026 -139473,7601:226:3,-16,62.5,0,0,-0.00729677 -139474,7601:225:4,-15.5,62.5,0,0,-0.00740476 -139475,7601:225:3,-15,62.5,0,0,-0.00764593 -139476,7601:124:4,-14.5,62.5,0,0,-0.00791619 -139477,7601:124:3,-14,62.5,0,0,-0.00814326 -139478,7601:123:4,-13.5,62.5,0,0,-0.00824918 -139479,7601:123:3,-13,62.5,0,0,-0.00834343 -139480,7601:122:4,-12.5,62.5,0,0,-0.00852 -139481,7601:122:3,-12,62.5,0,0,-0.00872369 -139482,7601:121:4,-11.5,62.5,0,0,-0.00888061 -139483,7601:121:3,-11,62.5,0,0,-0.00901023 -139484,7601:120:4,-10.5,62.5,0,0,-0.00911126 -139485,7601:120:3,-10,62.5,0,0,-0.00923397 -139486,7600:229:4,-9.5,62.5,0,0,-0.00947802 -139487,7600:229:3,-9,62.5,0,0,-0.0107326 -139488,7600:228:4,-8.5,62.5,0,0,-0.0171546 -139489,7600:228:3,-8,62.5,0,0,-0.0201178 -139490,7600:227:4,-7.5,62.5,0,0,-0.0242433 -139491,7600:227:3,-7,62.5,0,0,-0.0266998 -139492,7600:226:4,-6.5,62.5,0,0,-0.0265608 -139493,7600:226:3,-6,62.5,0,0,-0.0271519 -139494,7600:225:4,-5.5,62.5,0,0,-0.031693 -139495,7600:225:3,-5,62.5,0,0,-0.0343049 -139496,7600:124:4,-4.5,62.5,0,0,-0.0356566 -139497,7600:124:3,-4,62.5,0,0,-0.0353641 -139498,7600:123:4,-3.5,62.5,0,0,-0.034211 -139499,7600:123:3,-3,62.5,0,0,-0.0354046 -139500,7600:122:4,-2.5,62.5,0,0,-0.0394224 -139501,7600:122:3,-2,62.5,0,0,-0.0398505 -139502,7600:121:4,-1.5,62.5,0,0,-0.0415151 -139503,7600:121:3,-1,62.5,0,0,-0.0454314 -139504,7600:120:4,-0.5,62.5,0,0,-0.0475264 -139505,1600:120:4,0,62.5,0,0,-0.0478575 -139506,1600:120:4,0.5,62.5,0,0,-0.048247 -139507,1600:121:3,1,62.5,0,0,-0.0487528 -139508,1600:121:4,1.5,62.5,0,0,-0.0488998 -139509,1600:122:3,2,62.5,0,0,-0.0479019 -139510,1600:122:4,2.5,62.5,0,0,-0.045779 -139511,1600:123:3,3,62.5,0,0,-0.0449721 -139512,1600:123:4,3.5,62.5,0,0,-0.0458 -139513,1600:124:3,4,62.5,0,0,-0.0461935 -139514,1601:228:4,18.5,62.5,0,0,-0.0120874 -139515,1601:229:3,19,62.5,0,0,-0.0128716 -139516,1601:229:4,19.5,62.5,0,0,-0.0133649 -139517,1602:120:3,20,62.5,0,0,-0.0124718 -139518,1602:120:4,20.5,62.5,0,0,-0.0126772 -139519,1602:121:3,21,62.5,0,0,-0.0130837 -139520,1602:121:4,21.5,62.5,0,0,-0.0128601 -139521,1602:122:3,22,62.5,0,0,-0.0125587 -139522,1602:122:4,22.5,62.5,0,0,-0.00896217 -139523,1614:226:4,146.5,62.5,0,0,-0.00682711 -139524,1614:227:3,147,62.5,0,0,-0.00681803 -139525,1614:227:4,147.5,62.5,0,0,-0.00677117 -139526,1614:228:3,148,62.5,0,0,-0.00666804 -139527,1614:228:4,148.5,62.5,0,0,-0.00661193 -139528,1614:229:3,149,62.5,0,0,-0.00658108 -139529,1614:229:4,149.5,62.5,0,0,-0.00656066 -139530,1615:120:3,150,62.5,0,0,-0.00654318 -139531,1615:120:4,150.5,62.5,0,0,-0.00649822 -139532,1615:121:3,151,62.5,0,0,-0.0064335 -139533,1615:121:4,151.5,62.5,0,0,-0.00638791 -139534,1615:122:3,152,62.5,0,0,-0.00637228 -139535,1615:122:4,152.5,62.5,0,0,-0.00637514 -139536,1615:123:3,153,62.5,0,0,-0.00640497 -139537,1615:123:4,153.5,62.5,0,0,-0.00645502 -139538,1615:124:3,154,62.5,0,0,-0.00646795 -139539,1615:225:4,155.5,62.5,0,0,-0.00645502 -139540,1615:226:3,156,62.5,0,0,-0.00645931 -139541,1615:226:4,156.5,62.5,0,0,-0.00645931 -139542,1615:227:3,157,62.5,0,0,-0.00644928 -139543,1615:227:4,157.5,62.5,0,0,-0.00642635 -139544,1615:228:3,158,62.5,0,0,-0.00640067 -139545,1615:228:4,158.5,62.5,0,0,-0.00637371 -139546,1615:229:3,159,62.5,0,0,-0.00633697 -139547,1615:229:4,159.5,62.5,0,0,-0.00626829 -139548,1616:120:3,160,62.5,0,0,-0.00619902 -139549,1616:120:4,160.5,62.5,0,0,-0.00616467 -139550,1616:121:3,161,62.5,0,0,-0.00613596 -139551,1616:121:4,161.5,62.5,0,0,-0.00611282 -139552,1616:122:3,162,62.5,0,0,-0.0060884 -139553,1616:122:4,162.5,62.5,0,0,-0.00606005 -139554,1616:123:3,163,62.5,0,0,-0.00603049 -139555,1616:123:4,163.5,62.5,0,0,-0.00599574 -139556,1616:124:3,164,62.5,0,0,-0.00596382 -139557,1616:124:4,164.5,62.5,0,0,-0.00593078 -139558,1616:225:3,165,62.5,0,0,-0.00589793 -139559,1616:225:4,165.5,62.5,0,0,-0.00586784 -139560,1616:226:3,166,62.5,0,0,-0.00584441 -139561,1616:226:4,166.5,62.5,0,0,-0.00582498 -139562,1616:227:3,167,62.5,0,0,-0.00580818 -139563,1616:227:4,167.5,62.5,0,0,-0.00579527 -139564,1616:228:3,168,62.5,0,0,-0.00578498 -139565,1616:228:4,168.5,62.5,0,0,-0.00577471 -139566,1616:229:3,169,62.5,0,0,-0.005767 -139567,1616:229:4,169.5,62.5,0,0,-0.00576317 -139568,1617:120:3,170,62.5,0,0,-0.00575806 -139569,1617:120:4,170.5,62.5,0,0,-0.00575423 -139570,1617:121:3,171,62.5,0,0,-0.00575294 -139571,1617:121:4,171.5,62.5,0,0,-0.00575423 -139572,1617:122:3,172,62.5,0,0,-0.00575677 -139573,1617:122:4,172.5,62.5,0,0,-0.00575934 -139574,1617:123:3,173,62.5,0,0,-0.00575806 -139575,1617:123:4,173.5,62.5,0,0,-0.00575548 -139576,1617:124:3,174,62.5,0,0,-0.00575165 -139577,1617:124:4,174.5,62.5,0,0,-0.00574783 -139578,1617:225:3,175,62.5,0,0,-0.00574398 -139579,1617:225:4,175.5,62.5,0,0,-0.00574144 -139580,1617:226:3,176,62.5,0,0,-0.00573888 -139581,1617:226:4,176.5,62.5,0,0,-0.00573635 -139582,1617:227:3,177,62.5,0,0,-0.00573635 -139583,1617:227:4,177.5,62.5,0,0,-0.00573378 -139584,1617:228:3,178,62.5,0,0,-0.0057236 -139585,1617:228:4,178.5,62.5,0,0,-0.00570965 -139586,1617:229:3,179,62.5,0,0,-0.00569951 -139587,1617:229:4,179.5,62.5,0,0,-0.00569445 -139588,1618:120:3,180,62.5,0,0,-0.00569569 -139589,7618:130:1,-180,63,0,0,-0.0057033 -139590,7617:239:2,-179.5,63,0,0,-0.00569696 -139591,7617:239:1,-179,63,0,0,-0.00569318 -139592,7617:238:2,-178.5,63,0,0,-0.00569951 -139593,7617:238:1,-178,63,0,0,-0.00573254 -139594,7617:237:2,-177.5,63,0,0,-0.00579012 -139595,7617:237:1,-177,63,0,0,-0.00584833 -139596,7617:236:2,-176.5,63,0,0,-0.00587437 -139597,7617:236:1,-176,63,0,0,-0.00587828 -139598,7617:235:2,-175.5,63,0,0,-0.00587569 -139599,7617:235:1,-175,63,0,0,-0.00586132 -139600,7617:134:2,-174.5,63,0,0,-0.00584572 -139601,7617:134:1,-174,63,0,0,-0.00583534 -139602,7617:133:2,-173.5,63,0,0,-0.00584441 -139603,7617:133:1,-173,63,0,0,-0.00586653 -139604,7617:132:2,-172.5,63,0,0,-0.00589005 -139605,7617:132:1,-172,63,0,0,-0.00589005 -139606,7617:131:2,-171.5,63,0,0,-0.005877 -139607,7617:131:1,-171,63,0,0,-0.00584833 -139608,7617:130:2,-170.5,63,0,0,-0.00582755 -139609,7617:130:1,-170,63,0,0,-0.00582628 -139610,7616:239:2,-169.5,63,0,0,-0.00583146 -139611,7616:239:1,-169,63,0,0,-0.00581334 -139612,7616:238:2,-168.5,63,0,0,-0.00579142 -139613,7616:238:1,-168,63,0,0,-0.00577213 -139614,7616:237:2,-167.5,63,0,0,-0.00577088 -139615,7616:237:1,-167,63,0,0,-0.00577213 -139616,7616:236:2,-166.5,63,0,0,-0.00577471 -139617,7616:236:1,-166,63,0,0,-0.00579657 -139618,7616:235:2,-165.5,63,0,0,-0.00582755 -139619,7616:235:1,-165,63,0,0,-0.00584833 -139620,7616:134:2,-164.5,63,0,0,-0.00584053 -139621,7616:134:1,-164,63,0,0,-0.00582755 -139622,7616:133:2,-163.5,63,0,0,-0.00584441 -139623,7616:133:1,-163,63,0,0,-0.00585742 -139624,7616:132:2,-162.5,63,0,0,-0.00586653 -139625,7616:132:1,-162,63,0,0,-0.00587178 -139626,7616:131:2,-161.5,63,0,0,-0.005877 -139627,7616:131:1,-161,63,0,0,-0.00587828 -139628,7616:130:2,-160.5,63,0,0,-0.00587437 -139629,7616:130:1,-160,63,0,0,-0.00586916 -139630,7615:239:2,-159.5,63,0,0,-0.00586394 -139631,7615:239:1,-159,63,0,0,-0.00586394 -139632,7615:238:2,-158.5,63,0,0,-0.00586916 -139633,7615:238:1,-158,63,0,0,-0.00586526 -139634,7615:237:2,-157.5,63,0,0,-0.00587306 -139635,7615:237:1,-157,63,0,0,-0.00587437 -139636,7615:236:2,-156.5,63,0,0,-0.005877 -139637,7615:236:1,-156,63,0,0,-0.00587959 -139638,7615:235:2,-155.5,63,0,0,-0.0058835 -139639,7615:235:1,-155,63,0,0,-0.00589793 -139640,7615:134:2,-154.5,63,0,0,-0.00590842 -139641,7615:133:2,-153.5,63,0,0,-0.00598107 -139642,7615:133:1,-153,63,0,0,-0.00604523 -139643,7615:132:2,-152.5,63,0,0,-0.00604257 -139644,7607:133:2,-73.5,63,0,0,-0.00582755 -139645,7607:133:1,-73,63,0,0,-0.00598773 -139646,7606:237:1,-67,63,0,0,-0.00576059 -139647,7606:236:2,-66.5,63,0,0,-0.00576317 -139648,7606:236:1,-66,63,0,0,-0.00577471 -139649,7606:235:2,-65.5,63,0,0,-0.00572741 -139650,7606:235:1,-65,63,0,0,-0.00568812 -139651,7606:134:2,-64.5,63,0,0,-0.00566791 -139652,7606:134:1,-64,63,0,0,-0.00568812 -139653,7606:133:2,-63.5,63,0,0,-0.00573378 -139654,7606:133:1,-63,63,0,0,-0.00576059 -139655,7606:132:2,-62.5,63,0,0,-0.0057198 -139656,7606:132:1,-62,63,0,0,-0.0056818 -139657,7606:131:2,-61.5,63,0,0,-0.00578628 -139658,7606:131:1,-61,63,0,0,-0.00584053 -139659,7605:134:2,-54.5,63,0,0,-0.00580688 -139660,7605:134:1,-54,63,0,0,-0.00575806 -139661,7605:133:2,-53.5,63,0,0,-0.00571472 -139662,7605:133:1,-53,63,0,0,-0.00567548 -139663,7605:132:2,-52.5,63,0,0,-0.00565033 -139664,7605:132:1,-52,63,0,0,-0.00564405 -139665,7605:131:2,-51.5,63,0,0,-0.00565785 -139666,7605:131:1,-51,63,0,0,-0.00567294 -139667,7605:130:2,-50.5,63,0,0,-0.00569445 -139668,7605:130:1,-50,63,0,0,-0.00570075 -139669,7604:239:2,-49.5,63,0,0,-0.00569824 -139670,7604:239:1,-49,63,0,0,-0.00566918 -139671,7604:238:2,-48.5,63,0,0,-0.00565156 -139672,7604:238:1,-48,63,0,0,-0.0056818 -139673,7604:237:2,-47.5,63,0,0,-0.00580432 -139674,7604:237:1,-47,63,0,0,-0.00606948 -139675,7604:236:2,-46.5,63,0,0,-0.00615781 -139676,7604:236:1,-46,63,0,0,-0.00619763 -139677,7604:235:2,-45.5,63,0,0,-0.0060884 -139678,7604:235:1,-45,63,0,0,-0.0060372 -139679,7604:134:2,-44.5,63,0,0,-0.00609923 -139680,7604:134:1,-44,63,0,0,-0.00582628 -139681,7604:133:2,-43.5,63,0,0,-0.00550046 -139682,7602:132:1,-22,63,0,0,-0.00567045 -139683,7602:131:2,-21.5,63,0,0,-0.00564907 -139684,7602:131:1,-21,63,0,0,-0.00566038 -139685,7602:130:2,-20.5,63,0,0,-0.00567675 -139686,7602:130:1,-20,63,0,0,-0.00567803 -139687,7601:239:2,-19.5,63,0,0,-0.00565409 -139688,7601:239:1,-19,63,0,0,-0.00563025 -139689,7601:238:2,-18.5,63,0,0,-0.00566038 -139690,7601:238:1,-18,63,0,0,-0.00583403 -139691,7601:237:2,-17.5,63,0,0,-0.00622388 -139692,7601:237:1,-17,63,0,0,-0.00742622 -139693,7601:236:2,-16.5,63,0,0,-0.00881159 -139694,7601:236:1,-16,63,0,0,-0.00910513 -139695,7601:235:2,-15.5,63,0,0,-0.00821985 -139696,7601:235:1,-15,63,0,0,-0.00788274 -139697,7601:134:2,-14.5,63,0,0,-0.00792146 -139698,7601:134:1,-14,63,0,0,-0.00815235 -139699,7601:133:2,-13.5,63,0,0,-0.0084576 -139700,7601:133:1,-13,63,0,0,-0.00866939 -139701,7601:132:2,-12.5,63,0,0,-0.00881357 -139702,7601:132:1,-12,63,0,0,-0.00901023 -139703,7601:131:2,-11.5,63,0,0,-0.00925662 -139704,7601:131:1,-11,63,0,0,-0.00941065 -139705,7601:130:2,-10.5,63,0,0,-0.00935624 -139706,7601:130:1,-10,63,0,0,-0.00930215 -139707,7600:239:2,-9.5,63,0,0,-0.00951195 -139708,7600:239:1,-9,63,0,0,-0.0106657 -139709,7600:238:2,-8.5,63,0,0,-0.014021 -139710,7600:238:1,-8,63,0,0,-0.0185845 -139711,7600:237:2,-7.5,63,0,0,-0.0260066 -139712,7600:237:1,-7,63,0,0,-0.0284133 -139713,7600:236:2,-6.5,63,0,0,-0.0291459 -139714,7600:236:1,-6,63,0,0,-0.030698 -139715,7600:235:2,-5.5,63,0,0,-0.0305724 -139716,7600:235:1,-5,63,0,0,-0.032071 -139717,7600:134:2,-4.5,63,0,0,-0.0350823 -139718,7600:134:1,-4,63,0,0,-0.0372764 -139719,7600:133:2,-3.5,63,0,0,-0.037862 -139720,7600:133:1,-3,63,0,0,-0.0403573 -139721,7600:132:2,-2.5,63,0,0,-0.0420732 -139722,7600:132:1,-2,63,0,0,-0.043613 -139723,7600:131:2,-1.5,63,0,0,-0.0452011 -139724,7600:131:1,-1,63,0,0,-0.0462574 -139725,7600:130:2,-0.5,63,0,0,-0.0461827 -139726,1600:130:2,0,63,0,0,-0.0449825 -139727,1600:130:2,0.5,63,0,0,-0.0442818 -139728,1600:131:1,1,63,0,0,-0.0443739 -139729,1600:131:2,1.5,63,0,0,-0.044641 -139730,1600:132:1,2,63,0,0,-0.0435827 -139731,1600:132:2,2.5,63,0,0,-0.0415344 -139732,1600:133:1,3,63,0,0,-0.0401352 -139733,1600:133:2,3.5,63,0,0,-0.0395586 -139734,1600:134:1,4,63,0,0,-0.045779 -139735,1600:134:2,4.5,63,0,0,-0.0447338 -139736,1600:235:1,5,63,0,0,-0.0384396 -139737,1602:130:1,20,63,0,0,-0.013467 -139738,1602:130:2,20.5,63,0,0,-0.0130398 -139739,1602:131:1,21,63,0,0,-0.0128428 -139740,1614:237:1,147,63,0,0,-0.0068759 -139741,1614:237:2,147.5,63,0,0,-0.00683471 -139742,1614:238:1,148,63,0,0,-0.0067441 -139743,1614:238:2,148.5,63,0,0,-0.00665028 -139744,1614:239:1,149,63,0,0,-0.00658551 -139745,1614:239:2,149.5,63,0,0,-0.00654172 -139746,1615:130:1,150,63,0,0,-0.00650687 -139747,1615:130:2,150.5,63,0,0,-0.00646795 -139748,1615:131:1,151,63,0,0,-0.0064192 -139749,1615:131:2,151.5,63,0,0,-0.00638791 -139750,1615:132:1,152,63,0,0,-0.00637652 -139751,1615:132:2,152.5,63,0,0,-0.00637652 -139752,1615:133:1,153,63,0,0,-0.00638791 -139753,1615:133:2,153.5,63,0,0,-0.00641493 -139754,1615:134:1,154,63,0,0,-0.00643638 -139755,1615:235:1,155,63,0,0,-0.0064192 -139756,1615:235:2,155.5,63,0,0,-0.00642351 -139757,1615:236:1,156,63,0,0,-0.00642779 -139758,1615:236:2,156.5,63,0,0,-0.00642923 -139759,1615:237:1,157,63,0,0,-0.0064121 -139760,1615:237:2,157.5,63,0,0,-0.00635389 -139761,1615:238:1,158,63,0,0,-0.00632147 -139762,1615:238:2,158.5,63,0,0,-0.00631024 -139763,1616:130:2,160.5,63,0,0,-0.00615644 -139764,1616:131:1,161,63,0,0,-0.00612777 -139765,1616:131:2,161.5,63,0,0,-0.00607759 -139766,1616:132:1,162,63,0,0,-0.00602779 -139767,1616:132:2,162.5,63,0,0,-0.00598907 -139768,1616:133:1,163,63,0,0,-0.00596252 -139769,1616:133:2,163.5,63,0,0,-0.00594 -139770,1616:134:1,164,63,0,0,-0.0059176 -139771,1616:134:2,164.5,63,0,0,-0.00589529 -139772,1616:235:1,165,63,0,0,-0.00587047 -139773,1616:235:2,165.5,63,0,0,-0.00584703 -139774,1616:236:1,166,63,0,0,-0.00582628 -139775,1616:236:2,166.5,63,0,0,-0.00580948 -139776,1616:237:1,167,63,0,0,-0.00579142 -139777,1616:237:2,167.5,63,0,0,-0.00577726 -139778,1616:238:1,168,63,0,0,-0.00576188 -139779,1616:238:2,168.5,63,0,0,-0.00574912 -139780,1616:239:1,169,63,0,0,-0.00573763 -139781,1616:239:2,169.5,63,0,0,-0.00573254 -139782,1617:130:1,170,63,0,0,-0.00572869 -139783,1617:130:2,170.5,63,0,0,-0.00572616 -139784,1617:131:1,171,63,0,0,-0.00572741 -139785,1617:131:2,171.5,63,0,0,-0.00573506 -139786,1617:132:1,172,63,0,0,-0.00574144 -139787,1617:132:2,172.5,63,0,0,-0.00574526 -139788,1617:133:1,173,63,0,0,-0.00574398 -139789,1617:133:2,173.5,63,0,0,-0.00574144 -139790,1617:134:1,174,63,0,0,-0.00573763 -139791,1617:134:2,174.5,63,0,0,-0.00573506 -139792,1617:235:1,175,63,0,0,-0.00573125 -139793,1617:235:2,175.5,63,0,0,-0.00572869 -139794,1617:236:1,176,63,0,0,-0.00572869 -139795,1617:236:2,176.5,63,0,0,-0.00572741 -139796,1617:237:1,177,63,0,0,-0.00572741 -139797,1617:237:2,177.5,63,0,0,-0.00572869 -139798,1617:238:1,178,63,0,0,-0.00572741 -139799,1617:238:2,178.5,63,0,0,-0.0057236 -139800,1617:239:1,179,63,0,0,-0.00571724 -139801,1617:239:2,179.5,63,0,0,-0.00570965 -139802,1618:130:1,180,63,0,0,-0.0057033 -139803,7618:130:3,-180,63.5,0,0,-0.00571344 -139804,7617:239:4,-179.5,63.5,0,0,-0.00570581 -139805,7617:239:3,-179,63.5,0,0,-0.00569569 -139806,7617:238:4,-178.5,63.5,0,0,-0.00569318 -139807,7617:238:3,-178,63.5,0,0,-0.00571344 -139808,7617:237:4,-177.5,63.5,0,0,-0.00577342 -139809,7617:237:3,-177,63.5,0,0,-0.00583665 -139810,7617:236:4,-176.5,63.5,0,0,-0.00585091 -139811,7617:236:3,-176,63.5,0,0,-0.00584572 -139812,7617:235:4,-175.5,63.5,0,0,-0.00584314 -139813,7617:235:3,-175,63.5,0,0,-0.00584441 -139814,7617:134:4,-174.5,63.5,0,0,-0.00584703 -139815,7617:134:3,-174,63.5,0,0,-0.00583795 -139816,7617:133:4,-173.5,63.5,0,0,-0.00585222 -139817,7617:133:3,-173,63.5,0,0,-0.00586784 -139818,7617:132:4,-172.5,63.5,0,0,-0.00585353 -139819,7617:132:3,-172,63.5,0,0,-0.00584053 -139820,7617:131:4,-171.5,63.5,0,0,-0.00584441 -139821,7617:131:3,-171,63.5,0,0,-0.0058159 -139822,7617:130:4,-170.5,63.5,0,0,-0.00578498 -139823,7617:130:3,-170,63.5,0,0,-0.00577601 -139824,7616:239:4,-169.5,63.5,0,0,-0.00577342 -139825,7616:239:3,-169,63.5,0,0,-0.00575294 -139826,7616:238:4,-168.5,63.5,0,0,-0.00574016 -139827,7616:238:3,-168,63.5,0,0,-0.00575037 -139828,7616:237:4,-167.5,63.5,0,0,-0.00576317 -139829,7616:237:3,-167,63.5,0,0,-0.00576575 -139830,7616:236:4,-166.5,63.5,0,0,-0.00576188 -139831,7616:236:3,-166,63.5,0,0,-0.00577601 -139832,7616:235:4,-165.5,63.5,0,0,-0.00579272 -139833,7616:235:3,-165,63.5,0,0,-0.00581204 -139834,7616:134:4,-164.5,63.5,0,0,-0.00580432 -139835,7616:134:3,-164,63.5,0,0,-0.00578369 -139836,7616:133:4,-163.5,63.5,0,0,-0.00578628 -139837,7616:133:3,-163,63.5,0,0,-0.00579142 -139838,7616:132:4,-162.5,63.5,0,0,-0.00579397 -139839,7616:132:3,-162,63.5,0,0,-0.00580432 -139840,7616:131:4,-161.5,63.5,0,0,-0.00582885 -139841,7616:131:3,-161,63.5,0,0,-0.00584833 -139842,7616:130:4,-160.5,63.5,0,0,-0.00585611 -139843,7616:130:3,-160,63.5,0,0,-0.00585353 -139844,7615:239:4,-159.5,63.5,0,0,-0.00584053 -139845,7615:239:3,-159,63.5,0,0,-0.00582628 -139846,7615:238:4,-158.5,63.5,0,0,-0.00581464 -139847,7615:238:3,-158,63.5,0,0,-0.00580302 -139848,7615:237:4,-157.5,63.5,0,0,-0.00580172 -139849,7615:237:3,-157,63.5,0,0,-0.00580302 -139850,7615:236:4,-156.5,63.5,0,0,-0.0058159 -139851,7615:236:3,-156,63.5,0,0,-0.00583273 -139852,7615:235:4,-155.5,63.5,0,0,-0.00585742 -139853,7615:235:3,-155,63.5,0,0,-0.00587959 -139854,7615:134:4,-154.5,63.5,0,0,-0.00589661 -139855,7615:134:3,-154,63.5,0,0,-0.00589661 -139856,7615:133:4,-153.5,63.5,0,0,-0.00590577 -139857,7615:133:3,-153,63.5,0,0,-0.00592286 -139858,7615:132:4,-152.5,63.5,0,0,-0.00598907 -139859,7615:132:3,-152,63.5,0,0,-0.00616053 -139860,7615:131:4,-151.5,63.5,0,0,-0.00636947 -139861,7615:131:3,-151,63.5,0,0,-0.00650979 -139862,7607:133:4,-73.5,63.5,0,0,-0.00583665 -139863,7607:133:3,-73,63.5,0,0,-0.00597179 -139864,7607:132:4,-72.5,63.5,0,0,-0.00573763 -139865,7606:237:3,-67,63.5,0,0,-0.00574783 -139866,7606:236:4,-66.5,63.5,0,0,-0.00575423 -139867,7606:236:3,-66,63.5,0,0,-0.005767 -139868,7606:235:4,-65.5,63.5,0,0,-0.00578757 -139869,7606:235:3,-65,63.5,0,0,-0.0057236 -139870,7606:134:4,-64.5,63.5,0,0,-0.00571344 -139871,7606:134:3,-64,63.5,0,0,-0.00568307 -139872,7606:133:4,-63.5,63.5,0,0,-0.0056843 -139873,7606:133:3,-63,63.5,0,0,-0.00570965 -139874,7606:132:4,-62.5,63.5,0,0,-0.00570581 -139875,7605:235:3,-55,63.5,0,0,-0.00577726 -139876,7605:134:4,-54.5,63.5,0,0,-0.00574912 -139877,7605:134:3,-54,63.5,0,0,-0.00572488 -139878,7605:133:4,-53.5,63.5,0,0,-0.00568558 -139879,7605:133:3,-53,63.5,0,0,-0.00565409 -139880,7605:132:4,-52.5,63.5,0,0,-0.0056403 -139881,7605:132:3,-52,63.5,0,0,-0.00564405 -139882,7605:131:4,-51.5,63.5,0,0,-0.00563778 -139883,7605:131:3,-51,63.5,0,0,-0.00566165 -139884,7605:130:4,-50.5,63.5,0,0,-0.0056818 -139885,7605:130:3,-50,63.5,0,0,-0.00569445 -139886,7604:239:4,-49.5,63.5,0,0,-0.0056843 -139887,7604:239:3,-49,63.5,0,0,-0.00565785 -139888,7604:238:4,-48.5,63.5,0,0,-0.00565033 -139889,7604:238:3,-48,63.5,0,0,-0.00565535 -139890,7604:237:4,-47.5,63.5,0,0,-0.00572741 -139891,7604:237:3,-47,63.5,0,0,-0.00583403 -139892,7604:236:4,-46.5,63.5,0,0,-0.00586653 -139893,7604:236:3,-46,63.5,0,0,-0.00590842 -139894,7604:235:4,-45.5,63.5,0,0,-0.0059771 -139895,7604:235:3,-45,63.5,0,0,-0.00605734 -139896,7604:134:4,-44.5,63.5,0,0,-0.00606812 -139897,7604:134:3,-44,63.5,0,0,-0.00600107 -139898,7604:133:4,-43.5,63.5,0,0,-0.00556807 -139899,7602:132:4,-22.5,63.5,0,0,-0.00574655 -139900,7602:132:3,-22,63.5,0,0,-0.00571344 -139901,7602:131:4,-21.5,63.5,0,0,-0.00569318 -139902,7602:131:3,-21,63.5,0,0,-0.00569696 -139903,7602:130:4,-20.5,63.5,0,0,-0.0057033 -139904,7602:130:3,-20,63.5,0,0,-0.00567421 -139905,7601:239:4,-19.5,63.5,0,0,-0.00563652 -139906,7601:239:3,-19,63.5,0,0,-0.00562404 -139907,7601:238:4,-18.5,63.5,0,0,-0.00563404 -139908,7601:238:3,-18,63.5,0,0,-0.00567548 -139909,7601:237:4,-17.5,63.5,0,0,-0.00583016 -139910,7601:237:3,-17,63.5,0,0,-0.00631868 -139911,7601:236:4,-16.5,63.5,0,0,-0.00791619 -139912,7601:236:3,-16,63.5,0,0,-0.0100016 -139913,7601:235:4,-15.5,63.5,0,0,-0.00953528 -139914,7601:235:3,-15,63.5,0,0,-0.00875096 -139915,7601:134:4,-14.5,63.5,0,0,-0.00840126 -139916,7601:134:3,-14,63.5,0,0,-0.00817054 -139917,7601:133:4,-13.5,63.5,0,0,-0.00849917 -139918,7601:133:3,-13,63.5,0,0,-0.00946538 -139919,7601:132:4,-12.5,63.5,0,0,-0.0106419 -139920,7601:132:3,-12,63.5,0,0,-0.0113034 -139921,7601:131:4,-11.5,63.5,0,0,-0.0115589 -139922,7601:131:3,-11,63.5,0,0,-0.0112606 -139923,7601:130:4,-10.5,63.5,0,0,-0.0105945 -139924,7601:130:3,-10,63.5,0,0,-0.0100486 -139925,7600:239:4,-9.5,63.5,0,0,-0.00990827 -139926,7600:239:3,-9,63.5,0,0,-0.0114202 -139927,7600:238:4,-8.5,63.5,0,0,-0.0151212 -139928,7600:238:3,-8,63.5,0,0,-0.0213327 -139929,7600:237:4,-7.5,63.5,0,0,-0.0241721 -139930,7600:237:3,-7,63.5,0,0,-0.0274305 -139931,7600:236:4,-6.5,63.5,0,0,-0.0289412 -139932,7600:236:3,-6,63.5,0,0,-0.0297894 -139933,7600:235:4,-5.5,63.5,0,0,-0.0298368 -139934,7600:235:3,-5,63.5,0,0,-0.0296069 -139935,7600:134:4,-4.5,63.5,0,0,-0.0299593 -139936,7600:134:3,-4,63.5,0,0,-0.0381148 -139937,7600:133:4,-3.5,63.5,0,0,-0.0407208 -139938,7600:133:3,-3,63.5,0,0,-0.0421703 -139939,7600:132:4,-2.5,63.5,0,0,-0.0430337 -139940,7600:132:3,-2,63.5,0,0,-0.0438145 -139941,7600:131:4,-1.5,63.5,0,0,-0.0435627 -139942,7600:131:3,-1,63.5,0,0,-0.0436029 -139943,7600:130:4,-0.5,63.5,0,0,-0.0429149 -139944,1600:130:4,0,63.5,0,0,-0.0412296 -139945,1600:130:4,0.5,63.5,0,0,-0.03908 -139946,1600:131:3,1,63.5,0,0,-0.0365995 -139947,1600:131:4,1.5,63.5,0,0,-0.0354939 -139948,1600:132:3,2,63.5,0,0,-0.0339695 -139949,1600:132:4,2.5,63.5,0,0,-0.032976 -139950,1600:133:3,3,63.5,0,0,-0.0337684 -139951,1600:133:4,3.5,63.5,0,0,-0.0353641 -139952,1600:134:3,4,63.5,0,0,-0.039314 -139953,1600:134:4,4.5,63.5,0,0,-0.0439969 -139954,1600:235:3,5,63.5,0,0,-0.0386163 -139955,1600:236:3,6,63.5,0,0,-0.0338534 -139956,1602:130:4,20.5,63.5,0,0,-0.0125981 -139957,1602:131:3,21,63.5,0,0,-0.012737 -139958,1614:237:4,147.5,63.5,0,0,-0.00682864 -139959,1614:238:3,148,63.5,0,0,-0.00674561 -139960,1614:238:4,148.5,63.5,0,0,-0.00660458 -139961,1614:239:3,149,63.5,0,0,-0.00649963 -139962,1614:239:4,149.5,63.5,0,0,-0.00645787 -139963,1615:130:3,150,63.5,0,0,-0.00644784 -139964,1615:130:4,150.5,63.5,0,0,-0.00644495 -139965,1615:131:3,151,63.5,0,0,-0.0064192 -139966,1615:131:4,151.5,63.5,0,0,-0.00638224 -139967,1615:132:3,152,63.5,0,0,-0.00636662 -139968,1615:132:4,152.5,63.5,0,0,-0.00635954 -139969,1615:133:3,153,63.5,0,0,-0.00636097 -139970,1615:133:4,153.5,63.5,0,0,-0.00636805 -139971,1615:134:3,154,63.5,0,0,-0.00638081 -139972,1615:134:4,154.5,63.5,0,0,-0.00638505 -139973,1615:235:3,155,63.5,0,0,-0.00638648 -139974,1615:235:4,155.5,63.5,0,0,-0.00638791 -139975,1615:236:3,156,63.5,0,0,-0.00639073 -139976,1615:236:4,156.5,63.5,0,0,-0.00638791 -139977,1615:237:3,157,63.5,0,0,-0.00636947 -139978,1615:237:4,157.5,63.5,0,0,-0.0062544 -139979,1615:238:3,158,63.5,0,0,-0.00622388 -139980,1616:130:3,160,63.5,0,0,-0.00617015 -139981,1616:130:4,160.5,63.5,0,0,-0.00615781 -139982,1616:131:3,161,63.5,0,0,-0.00610192 -139983,1616:131:4,161.5,63.5,0,0,-0.00603585 -139984,1616:132:3,162,63.5,0,0,-0.0059771 -139985,1616:132:4,162.5,63.5,0,0,-0.00593605 -139986,1616:133:3,163,63.5,0,0,-0.00590842 -139987,1616:133:4,163.5,63.5,0,0,-0.00589137 -139988,1616:134:3,164,63.5,0,0,-0.00587569 -139989,1616:134:4,164.5,63.5,0,0,-0.00585874 -139990,1616:235:3,165,63.5,0,0,-0.00584053 -139991,1616:235:4,165.5,63.5,0,0,-0.00582111 -139992,1616:236:3,166,63.5,0,0,-0.00579916 -139993,1616:236:4,166.5,63.5,0,0,-0.00577601 -139994,1616:237:3,167,63.5,0,0,-0.00575294 -139995,1616:237:4,167.5,63.5,0,0,-0.00573125 -139996,1616:238:3,168,63.5,0,0,-0.00571344 -139997,1616:238:4,168.5,63.5,0,0,-0.00569951 -139998,1616:239:3,169,63.5,0,0,-0.0056919 -139999,1616:239:4,169.5,63.5,0,0,-0.0056919 -140000,1617:130:3,170,63.5,0,0,-0.00569445 -140001,1617:130:4,170.5,63.5,0,0,-0.00569824 -140002,1617:131:3,171,63.5,0,0,-0.00570458 -140003,1617:131:4,171.5,63.5,0,0,-0.00571344 -140004,1617:132:3,172,63.5,0,0,-0.00571852 -140005,1617:132:4,172.5,63.5,0,0,-0.00572108 -140006,1617:133:3,173,63.5,0,0,-0.00572232 -140007,1617:133:4,173.5,63.5,0,0,-0.0057236 -140008,1617:134:3,174,63.5,0,0,-0.00572232 -140009,1617:134:4,174.5,63.5,0,0,-0.00572108 -140010,1617:235:3,175,63.5,0,0,-0.00571852 -140011,1617:235:4,175.5,63.5,0,0,-0.00571852 -140012,1617:236:3,176,63.5,0,0,-0.00572108 -140013,1617:236:4,176.5,63.5,0,0,-0.0057236 -140014,1617:237:3,177,63.5,0,0,-0.00572616 -140015,1617:237:4,177.5,63.5,0,0,-0.00572741 -140016,1617:238:3,178,63.5,0,0,-0.00572741 -140017,1617:238:4,178.5,63.5,0,0,-0.00572616 -140018,1617:239:3,179,63.5,0,0,-0.0057236 -140019,1617:239:4,179.5,63.5,0,0,-0.0057198 -140020,1618:130:3,180,63.5,0,0,-0.00571344 -140021,7618:140:1,-180,64,0,0,-0.00570965 -140022,7617:249:2,-179.5,64,0,0,-0.00570458 -140023,7617:249:1,-179,64,0,0,-0.00569696 -140024,7617:248:2,-178.5,64,0,0,-0.0056919 -140025,7617:248:1,-178,64,0,0,-0.00570075 -140026,7617:247:2,-177.5,64,0,0,-0.00573506 -140027,7617:247:1,-177,64,0,0,-0.00576188 -140028,7617:246:2,-176.5,64,0,0,-0.00574783 -140029,7617:246:1,-176,64,0,0,-0.00572741 -140030,7617:245:2,-175.5,64,0,0,-0.00572488 -140031,7617:245:1,-175,64,0,0,-0.00576059 -140032,7617:144:2,-174.5,64,0,0,-0.00580558 -140033,7617:144:1,-174,64,0,0,-0.00582885 -140034,7617:143:2,-173.5,64,0,0,-0.00584053 -140035,7617:143:1,-173,64,0,0,-0.00584703 -140036,7617:142:2,-172.5,64,0,0,-0.00582885 -140037,7617:142:1,-172,64,0,0,-0.00580558 -140038,7617:141:2,-171.5,64,0,0,-0.00579272 -140039,7617:141:1,-171,64,0,0,-0.00576059 -140040,7617:140:2,-170.5,64,0,0,-0.00573635 -140041,7617:140:1,-170,64,0,0,-0.00573506 -140042,7616:249:2,-169.5,64,0,0,-0.00573506 -140043,7616:249:1,-169,64,0,0,-0.00573763 -140044,7616:248:2,-168.5,64,0,0,-0.00573888 -140045,7616:248:1,-168,64,0,0,-0.00574526 -140046,7616:247:2,-167.5,64,0,0,-0.00575165 -140047,7616:247:1,-167,64,0,0,-0.00574912 -140048,7616:246:2,-166.5,64,0,0,-0.00574398 -140049,7616:246:1,-166,64,0,0,-0.00575165 -140050,7616:245:2,-165.5,64,0,0,-0.00575548 -140051,7616:245:1,-165,64,0,0,-0.00576188 -140052,7616:144:2,-164.5,64,0,0,-0.00576059 -140053,7616:144:1,-164,64,0,0,-0.00575165 -140054,7616:143:2,-163.5,64,0,0,-0.00575423 -140055,7616:143:1,-163,64,0,0,-0.00576446 -140056,7616:142:2,-162.5,64,0,0,-0.00576829 -140057,7616:142:1,-162,64,0,0,-0.00577088 -140058,7616:141:2,-161.5,64,0,0,-0.00577471 -140059,7616:141:1,-161,64,0,0,-0.00579657 -140060,7616:140:2,-160.5,64,0,0,-0.00580948 -140061,7616:140:1,-160,64,0,0,-0.0058159 -140062,7615:249:2,-159.5,64,0,0,-0.0058172 -140063,7615:249:1,-159,64,0,0,-0.00581204 -140064,7615:248:2,-158.5,64,0,0,-0.00579787 -140065,7615:248:1,-158,64,0,0,-0.00578243 -140066,7615:247:2,-157.5,64,0,0,-0.00577213 -140067,7615:247:1,-157,64,0,0,-0.00576317 -140068,7615:246:2,-156.5,64,0,0,-0.00575423 -140069,7615:246:1,-156,64,0,0,-0.00574655 -140070,7615:245:2,-155.5,64,0,0,-0.00575037 -140071,7615:245:1,-155,64,0,0,-0.00576188 -140072,7615:144:2,-154.5,64,0,0,-0.00579916 -140073,7615:144:1,-154,64,0,0,-0.0058496 -140074,7615:143:2,-153.5,64,0,0,-0.00587828 -140075,7615:143:1,-153,64,0,0,-0.00588614 -140076,7615:142:2,-152.5,64,0,0,-0.0059506 -140077,7615:142:1,-152,64,0,0,-0.00608568 -140078,7606:247:1,-67,64,0,0,-0.0056919 -140079,7606:246:2,-66.5,64,0,0,-0.0057033 -140080,7606:246:1,-66,64,0,0,-0.00572108 -140081,7606:245:2,-65.5,64,0,0,-0.00574526 -140082,7606:245:1,-65,64,0,0,-0.00578114 -140083,7606:144:2,-64.5,64,0,0,-0.00578757 -140084,7606:144:1,-64,64,0,0,-0.00572488 -140085,7606:142:1,-62,64,0,0,-0.00572869 -140086,7606:141:2,-61.5,64,0,0,-0.00573506 -140087,7605:245:1,-55,64,0,0,-0.00575165 -140088,7605:144:2,-54.5,64,0,0,-0.00574526 -140089,7605:144:1,-54,64,0,0,-0.00571344 -140090,7605:143:2,-53.5,64,0,0,-0.00567294 -140091,7605:143:1,-53,64,0,0,-0.00565282 -140092,7605:142:2,-52.5,64,0,0,-0.00563277 -140093,7605:142:1,-52,64,0,0,-0.00562651 -140094,7605:141:2,-51.5,64,0,0,-0.00563025 -140095,7605:141:1,-51,64,0,0,-0.00565785 -140096,7605:140:2,-50.5,64,0,0,-0.00568307 -140097,7605:140:1,-50,64,0,0,-0.00569063 -140098,7604:249:2,-49.5,64,0,0,-0.00568812 -140099,7604:249:1,-49,64,0,0,-0.00566791 -140100,7604:248:2,-48.5,64,0,0,-0.00565535 -140101,7604:248:1,-48,64,0,0,-0.00564532 -140102,7604:247:2,-47.5,64,0,0,-0.00567675 -140103,7604:247:1,-47,64,0,0,-0.00574783 -140104,7604:246:2,-46.5,64,0,0,-0.005767 -140105,7604:246:1,-46,64,0,0,-0.005767 -140106,7604:245:2,-45.5,64,0,0,-0.00577855 -140107,7604:245:1,-45,64,0,0,-0.00588091 -140108,7604:144:2,-44.5,64,0,0,-0.00594661 -140109,7604:144:1,-44,64,0,0,-0.00593605 -140110,7604:143:2,-43.5,64,0,0,-0.00566918 -140111,7602:143:1,-23,64,0,0,-0.00573888 -140112,7602:142:2,-22.5,64,0,0,-0.00575548 -140113,7602:141:2,-21.5,64,0,0,-0.00569951 -140114,7602:141:1,-21,64,0,0,-0.00568053 -140115,7602:140:2,-20.5,64,0,0,-0.00566288 -140116,7602:140:1,-20,64,0,0,-0.00564907 -140117,7601:249:2,-19.5,64,0,0,-0.00562404 -140118,7601:249:1,-19,64,0,0,-0.00562026 -140119,7601:248:2,-18.5,64,0,0,-0.00563025 -140120,7601:248:1,-18,64,0,0,-0.00563904 -140121,7601:247:2,-17.5,64,0,0,-0.00566165 -140122,7601:247:1,-17,64,0,0,-0.00573125 -140123,7601:246:2,-16.5,64,0,0,-0.0060318 -140124,7601:246:1,-16,64,0,0,-0.00765617 -140125,7601:245:2,-15.5,64,0,0,-0.0113541 -140126,7601:245:1,-15,64,0,0,-0.0104139 -140127,7601:144:2,-14.5,64,0,0,-0.00949287 -140128,7601:144:1,-14,64,0,0,-0.00881752 -140129,7601:143:2,-13.5,64,0,0,-0.00929386 -140130,7601:143:1,-13,64,0,0,-0.0112808 -140131,7601:142:2,-12.5,64,0,0,-0.0118334 -140132,7601:142:1,-12,64,0,0,-0.0118997 -140133,7601:141:2,-11.5,64,0,0,-0.0119985 -140134,7601:141:1,-11,64,0,0,-0.0118705 -140135,7601:140:2,-10.5,64,0,0,-0.0117543 -140136,7601:140:1,-10,64,0,0,-0.0112631 -140137,7600:249:2,-9.5,64,0,0,-0.0112154 -140138,7600:249:1,-9,64,0,0,-0.0144193 -140139,7600:248:2,-8.5,64,0,0,-0.0198164 -140140,7600:248:1,-8,64,0,0,-0.0208192 -140141,7600:247:2,-7.5,64,0,0,-0.0209558 -140142,7600:247:1,-7,64,0,0,-0.024436 -140143,7600:246:2,-6.5,64,0,0,-0.027468 -140144,7600:246:1,-6,64,0,0,-0.0286077 -140145,7600:245:2,-5.5,64,0,0,-0.0286728 -140146,7600:245:1,-5,64,0,0,-0.028323 -140147,7600:144:2,-4.5,64,0,0,-0.028246 -140148,7600:144:1,-4,64,0,0,-0.0340706 -140149,7600:143:2,-3.5,64,0,0,-0.0405711 -140150,7600:143:1,-3,64,0,0,-0.0422186 -140151,7600:142:2,-2.5,64,0,0,-0.0419572 -140152,7600:142:1,-2,64,0,0,-0.0357711 -140153,7600:141:2,-1.5,64,0,0,-0.034994 -140154,7600:141:1,-1,64,0,0,-0.0372594 -140155,7600:140:2,-0.5,64,0,0,-0.0394677 -140156,1600:140:2,0,64,0,0,-0.039759 -140157,1600:140:2,0.5,64,0,0,-0.0393049 -140158,1600:141:1,1,64,0,0,-0.0394044 -140159,1600:141:2,1.5,64,0,0,-0.0384749 -140160,1600:142:1,2,64,0,0,-0.0356404 -140161,1600:142:2,2.5,64,0,0,-0.035437 -140162,1600:143:1,3,64,0,0,-0.0372423 -140163,1600:143:2,3.5,64,0,0,-0.0386875 -140164,1600:144:1,4,64,0,0,-0.0401538 -140165,1600:144:2,4.5,64,0,0,-0.0423842 -140166,1600:245:1,5,64,0,0,-0.0442921 -140167,1600:245:2,5.5,64,0,0,-0.0438448 -140168,1600:246:1,6,64,0,0,-0.0431331 -140169,1600:246:2,6.5,64,0,0,-0.0394677 -140170,1600:249:2,9.5,64,0,0,-0.0369533 -140171,1601:140:1,10,64,0,0,-0.0358283 -140172,1602:140:2,20.5,64,0,0,-0.0119798 -140173,1602:141:1,21,64,0,0,-0.0119611 -140174,1614:247:2,147.5,64,0,0,-0.00673061 -140175,1614:248:1,148,64,0,0,-0.00666211 -140176,1614:248:2,148.5,64,0,0,-0.00652429 -140177,1614:249:1,149,64,0,0,-0.00640497 -140178,1614:249:2,149.5,64,0,0,-0.00633839 -140179,1615:140:1,150,64,0,0,-0.0063652 -140180,1615:140:2,150.5,64,0,0,-0.00640923 -140181,1615:141:1,151,64,0,0,-0.00642351 -140182,1615:141:2,151.5,64,0,0,-0.00638224 -140183,1615:142:1,152,64,0,0,-0.00633697 -140184,1615:142:2,152.5,64,0,0,-0.00631165 -140185,1615:143:1,153,64,0,0,-0.00630326 -140186,1615:143:2,153.5,64,0,0,-0.00630604 -140187,1615:144:2,154.5,64,0,0,-0.00635531 -140188,1615:247:2,157.5,64,0,0,-0.00615372 -140189,1615:248:1,158,64,0,0,-0.00613322 -140190,1615:249:1,159,64,0,0,-0.00609787 -140191,1615:249:2,159.5,64,0,0,-0.00609382 -140192,1616:140:1,160,64,0,0,-0.00608568 -140193,1616:140:2,160.5,64,0,0,-0.00606948 -140194,1616:141:1,161,64,0,0,-0.00603986 -140195,1616:141:2,161.5,64,0,0,-0.00599574 -140196,1616:142:1,162,64,0,0,-0.00594661 -140197,1616:142:2,162.5,64,0,0,-0.00589529 -140198,1616:143:1,163,64,0,0,-0.00585874 -140199,1616:143:2,163.5,64,0,0,-0.00583795 -140200,1616:144:1,164,64,0,0,-0.00582237 -140201,1616:144:2,164.5,64,0,0,-0.00580948 -140202,1616:245:1,165,64,0,0,-0.00579397 -140203,1616:245:2,165.5,64,0,0,-0.00577471 -140204,1616:246:1,166,64,0,0,-0.00574912 -140205,1616:246:2,166.5,64,0,0,-0.00572616 -140206,1616:247:1,167,64,0,0,-0.00570581 -140207,1616:247:2,167.5,64,0,0,-0.00568936 -140208,1616:248:1,168,64,0,0,-0.00567421 -140209,1616:248:2,168.5,64,0,0,-0.00566541 -140210,1616:249:1,169,64,0,0,-0.00566668 -140211,1616:249:2,169.5,64,0,0,-0.00567294 -140212,1617:140:1,170,64,0,0,-0.00568053 -140213,1617:140:2,170.5,64,0,0,-0.00568558 -140214,1617:141:1,171,64,0,0,-0.00568936 -140215,1617:141:2,171.5,64,0,0,-0.00569318 -140216,1617:142:1,172,64,0,0,-0.00569696 -140217,1617:142:2,172.5,64,0,0,-0.00570075 -140218,1617:143:1,173,64,0,0,-0.00570581 -140219,1617:143:2,173.5,64,0,0,-0.00570965 -140220,1617:144:1,174,64,0,0,-0.00571092 -140221,1617:144:2,174.5,64,0,0,-0.00571216 -140222,1617:245:1,175,64,0,0,-0.00571472 -140223,1617:245:2,175.5,64,0,0,-0.0057198 -140224,1617:246:1,176,64,0,0,-0.0057236 -140225,1617:246:2,176.5,64,0,0,-0.00572488 -140226,1617:247:1,177,64,0,0,-0.00572616 -140227,1617:247:2,177.5,64,0,0,-0.00572616 -140228,1617:248:1,178,64,0,0,-0.00572488 -140229,1617:248:2,178.5,64,0,0,-0.00572232 -140230,1617:249:1,179,64,0,0,-0.00571852 -140231,1617:249:2,179.5,64,0,0,-0.00571472 -140232,1618:140:1,180,64,0,0,-0.00570965 -140233,7618:140:3,-180,64.5,0,0,-0.00570075 -140234,7617:249:4,-179.5,64.5,0,0,-0.00569824 -140235,7617:249:3,-179,64.5,0,0,-0.0056919 -140236,7617:248:4,-178.5,64.5,0,0,-0.00568685 -140237,7617:248:3,-178,64.5,0,0,-0.00568936 -140238,7617:247:4,-177.5,64.5,0,0,-0.00569951 -140239,7617:247:3,-177,64.5,0,0,-0.0057033 -140240,7617:246:4,-176.5,64.5,0,0,-0.00569445 -140241,7617:246:3,-176,64.5,0,0,-0.00568558 -140242,7617:245:4,-175.5,64.5,0,0,-0.00569063 -140243,7617:245:3,-175,64.5,0,0,-0.00572741 -140244,7617:144:4,-174.5,64.5,0,0,-0.00579012 -140245,7617:144:3,-174,64.5,0,0,-0.00580302 -140246,7617:143:4,-173.5,64.5,0,0,-0.00580688 -140247,7617:143:3,-173,64.5,0,0,-0.00579787 -140248,7617:142:4,-172.5,64.5,0,0,-0.00578498 -140249,7617:142:3,-172,64.5,0,0,-0.00576446 -140250,7617:141:4,-171.5,64.5,0,0,-0.00574783 -140251,7617:141:3,-171,64.5,0,0,-0.0057236 -140252,7617:140:4,-170.5,64.5,0,0,-0.00571472 -140253,7617:140:3,-170,64.5,0,0,-0.0057236 -140254,7616:249:4,-169.5,64.5,0,0,-0.00573378 -140255,7616:249:3,-169,64.5,0,0,-0.00574526 -140256,7616:248:4,-168.5,64.5,0,0,-0.00575294 -140257,7616:248:3,-168,64.5,0,0,-0.00575548 -140258,7616:247:4,-167.5,64.5,0,0,-0.00574783 -140259,7616:247:3,-167,64.5,0,0,-0.00573763 -140260,7616:246:4,-166.5,64.5,0,0,-0.00573635 -140261,7616:246:3,-166,64.5,0,0,-0.00574016 -140262,7616:245:4,-165.5,64.5,0,0,-0.00574144 -140263,7616:245:3,-165,64.5,0,0,-0.00574273 -140264,7616:144:4,-164.5,64.5,0,0,-0.00574783 -140265,7616:144:3,-164,64.5,0,0,-0.00575037 -140266,7616:143:4,-163.5,64.5,0,0,-0.00575806 -140267,7616:143:3,-163,64.5,0,0,-0.00576059 -140268,7616:142:4,-162.5,64.5,0,0,-0.00576317 -140269,7616:142:3,-162,64.5,0,0,-0.00576575 -140270,7616:141:4,-161.5,64.5,0,0,-0.00575806 -140271,7616:141:3,-161,64.5,0,0,-0.00576188 -140272,7616:140:4,-160.5,64.5,0,0,-0.00577213 -140273,7616:140:3,-160,64.5,0,0,-0.00578114 -140274,7615:249:4,-159.5,64.5,0,0,-0.00578498 -140275,7615:249:3,-159,64.5,0,0,-0.00577985 -140276,7615:248:4,-158.5,64.5,0,0,-0.00576446 -140277,7615:248:3,-158,64.5,0,0,-0.00574655 -140278,7615:247:4,-157.5,64.5,0,0,-0.00573125 -140279,7615:247:3,-157,64.5,0,0,-0.00572232 -140280,7615:246:4,-156.5,64.5,0,0,-0.00572232 -140281,7615:246:3,-156,64.5,0,0,-0.0057236 -140282,7615:245:4,-155.5,64.5,0,0,-0.00572869 -140283,7615:245:3,-155,64.5,0,0,-0.00572997 -140284,7615:144:4,-154.5,64.5,0,0,-0.00578757 -140285,7615:144:3,-154,64.5,0,0,-0.00584053 -140286,7615:143:4,-153.5,64.5,0,0,-0.00585874 -140287,7615:143:3,-153,64.5,0,0,-0.00586784 -140288,7615:142:4,-152.5,64.5,0,0,-0.00591106 -140289,7615:142:3,-152,64.5,0,0,-0.00599972 -140290,7615:141:4,-151.5,64.5,0,0,-0.00604659 -140291,7606:246:4,-66.5,64.5,0,0,-0.00565156 -140292,7606:245:3,-65,64.5,0,0,-0.00571092 -140293,7606:144:4,-64.5,64.5,0,0,-0.00573763 -140294,7606:144:3,-64,64.5,0,0,-0.00574912 -140295,7606:143:4,-63.5,64.5,0,0,-0.00573378 -140296,7606:143:3,-63,64.5,0,0,-0.00572108 -140297,7606:142:4,-62.5,64.5,0,0,-0.00571472 -140298,7606:141:4,-61.5,64.5,0,0,-0.00573635 -140299,7605:144:4,-54.5,64.5,0,0,-0.00574783 -140300,7605:144:3,-54,64.5,0,0,-0.00570965 -140301,7605:143:4,-53.5,64.5,0,0,-0.00567045 -140302,7605:143:3,-53,64.5,0,0,-0.00565156 -140303,7605:142:4,-52.5,64.5,0,0,-0.00565409 -140304,7605:142:3,-52,64.5,0,0,-0.00568307 -140305,7605:141:4,-51.5,64.5,0,0,-0.00568558 -140306,7605:141:3,-51,64.5,0,0,-0.00568812 -140307,7605:140:4,-50.5,64.5,0,0,-0.00568685 -140308,7605:140:3,-50,64.5,0,0,-0.0056843 -140309,7604:249:4,-49.5,64.5,0,0,-0.00568307 -140310,7604:249:3,-49,64.5,0,0,-0.00567421 -140311,7604:248:4,-48.5,64.5,0,0,-0.00566541 -140312,7604:248:3,-48,64.5,0,0,-0.00564405 -140313,7604:247:4,-47.5,64.5,0,0,-0.00564279 -140314,7604:247:3,-47,64.5,0,0,-0.00566414 -140315,7604:246:4,-46.5,64.5,0,0,-0.00567294 -140316,7604:246:3,-46,64.5,0,0,-0.00568307 -140317,7604:245:4,-45.5,64.5,0,0,-0.00569824 -140318,7604:245:3,-45,64.5,0,0,-0.00570837 -140319,7604:144:4,-44.5,64.5,0,0,-0.00574526 -140320,7604:144:3,-44,64.5,0,0,-0.00584833 -140321,7604:143:4,-43.5,64.5,0,0,-0.00578883 -140322,7604:143:3,-43,64.5,0,0,-0.00554584 -140323,7602:143:4,-23.5,64.5,0,0,-0.00567803 -140324,7602:143:3,-23,64.5,0,0,-0.00569951 -140325,7602:142:4,-22.5,64.5,0,0,-0.00577601 -140326,7602:142:3,-22,64.5,0,0,-0.00570837 -140327,7602:141:4,-21.5,64.5,0,0,-0.0057033 -140328,7602:141:3,-21,64.5,0,0,-0.0056818 -140329,7602:140:4,-20.5,64.5,0,0,-0.00566414 -140330,7602:140:3,-20,64.5,0,0,-0.00563778 -140331,7601:249:4,-19.5,64.5,0,0,-0.00562278 -140332,7601:249:3,-19,64.5,0,0,-0.00562026 -140333,7601:248:4,-18.5,64.5,0,0,-0.00562278 -140334,7601:248:3,-18,64.5,0,0,-0.00562903 -140335,7601:247:4,-17.5,64.5,0,0,-0.00564279 -140336,7601:247:3,-17,64.5,0,0,-0.00566414 -140337,7601:246:4,-16.5,64.5,0,0,-0.00576317 -140338,7601:246:3,-16,64.5,0,0,-0.00616053 -140339,7601:245:4,-15.5,64.5,0,0,-0.00812877 -140340,7601:245:3,-15,64.5,0,0,-0.0126122 -140341,7601:144:4,-14.5,64.5,0,0,-0.0115977 -140342,7601:144:3,-14,64.5,0,0,-0.0108701 -140343,7601:143:4,-13.5,64.5,0,0,-0.0112682 -140344,7601:143:3,-13,64.5,0,0,-0.0113464 -140345,7601:142:4,-12.5,64.5,0,0,-0.011433 -140346,7601:142:3,-12,64.5,0,0,-0.0117912 -140347,7601:141:4,-11.5,64.5,0,0,-0.0119664 -140348,7601:141:3,-11,64.5,0,0,-0.0119316 -140349,7601:140:4,-10.5,64.5,0,0,-0.0124079 -140350,7601:140:3,-10,64.5,0,0,-0.0127455 -140351,7600:249:4,-9.5,64.5,0,0,-0.0134429 -140352,7600:249:3,-9,64.5,0,0,-0.0167886 -140353,7600:248:4,-8.5,64.5,0,0,-0.0197762 -140354,7600:248:3,-8,64.5,0,0,-0.0197449 -140355,7600:247:4,-7.5,64.5,0,0,-0.0200002 -140356,7600:247:3,-7,64.5,0,0,-0.0217704 -140357,7600:246:4,-6.5,64.5,0,0,-0.0257952 -140358,7600:246:3,-6,64.5,0,0,-0.0276494 -140359,7600:245:4,-5.5,64.5,0,0,-0.0288756 -140360,7600:245:3,-5,64.5,0,0,-0.0299186 -140361,7600:144:4,-4.5,64.5,0,0,-0.0291063 -140362,7600:144:3,-4,64.5,0,0,-0.0326169 -140363,7600:143:4,-3.5,64.5,0,0,-0.0385191 -140364,7600:143:3,-3,64.5,0,0,-0.0396677 -140365,7600:142:4,-2.5,64.5,0,0,-0.0325722 -140366,7600:142:3,-2,64.5,0,0,-0.0293455 -140367,7600:141:4,-1.5,64.5,0,0,-0.0280861 -140368,7600:141:3,-1,64.5,0,0,-0.0254066 -140369,7600:140:4,-0.5,64.5,0,0,-0.0259418 -140370,1600:140:4,0,64.5,0,0,-0.0270779 -140371,1600:140:4,0.5,64.5,0,0,-0.0281691 -140372,1600:141:3,1,64.5,0,0,-0.0309579 -140373,1600:141:4,1.5,64.5,0,0,-0.03436 -140374,1600:142:3,2,64.5,0,0,-0.037021 -140375,1600:142:4,2.5,64.5,0,0,-0.0349701 -140376,1600:143:3,3,64.5,0,0,-0.0342423 -140377,1600:143:4,3.5,64.5,0,0,-0.0330816 -140378,1600:144:3,4,64.5,0,0,-0.033699 -140379,1600:144:4,4.5,64.5,0,0,-0.037923 -140380,1600:245:3,5,64.5,0,0,-0.0402093 -140381,1600:245:4,5.5,64.5,0,0,-0.0414484 -140382,1600:246:3,6,64.5,0,0,-0.0425311 -140383,1600:246:4,6.5,64.5,0,0,-0.0430237 -140384,1600:247:3,7,64.5,0,0,-0.042355 -140385,1600:247:4,7.5,64.5,0,0,-0.0412583 -140386,1600:248:3,8,64.5,0,0,-0.0403387 -140387,1600:249:4,9.5,64.5,0,0,-0.0382723 -140388,1601:140:3,10,64.5,0,0,-0.0364989 -140389,1601:140:4,10.5,64.5,0,0,-0.0335226 -140390,1601:141:4,11.5,64.5,0,0,-0.0338766 -140391,1601:142:3,12,64.5,0,0,-0.032976 -140392,1602:140:4,20.5,64.5,0,0,-0.0115641 -140393,1602:141:3,21,64.5,0,0,-0.0116211 -140394,1614:247:4,147.5,64.5,0,0,-0.00662662 -140395,1614:248:3,148,64.5,0,0,-0.006504 -140396,1614:248:4,148.5,64.5,0,0,-0.00642351 -140397,1614:249:3,149,64.5,0,0,-0.00631585 -140398,1614:249:4,149.5,64.5,0,0,-0.00623635 -140399,1615:140:3,150,64.5,0,0,-0.00623635 -140400,1615:140:4,150.5,64.5,0,0,-0.00630463 -140401,1615:141:3,151,64.5,0,0,-0.00636382 -140402,1615:141:4,151.5,64.5,0,0,-0.00636097 -140403,1615:142:3,152,64.5,0,0,-0.00631726 -140404,1615:142:4,152.5,64.5,0,0,-0.00628784 -140405,1615:143:3,153,64.5,0,0,-0.00627808 -140406,1615:143:4,153.5,64.5,0,0,-0.00628925 -140407,1615:248:3,158,64.5,0,0,-0.00604122 -140408,1615:248:4,158.5,64.5,0,0,-0.0060345 -140409,1615:249:3,159,64.5,0,0,-0.00602779 -140410,1615:249:4,159.5,64.5,0,0,-0.00603049 -140411,1616:140:3,160,64.5,0,0,-0.00602779 -140412,1616:140:4,160.5,64.5,0,0,-0.00601174 -140413,1616:141:3,161,64.5,0,0,-0.00598107 -140414,1616:141:4,161.5,64.5,0,0,-0.00593871 -140415,1616:142:3,162,64.5,0,0,-0.00589793 -140416,1616:142:4,162.5,64.5,0,0,-0.00586005 -140417,1616:143:3,163,64.5,0,0,-0.00582755 -140418,1616:143:4,163.5,64.5,0,0,-0.00580172 -140419,1616:144:3,164,64.5,0,0,-0.00578369 -140420,1616:144:4,164.5,64.5,0,0,-0.00577601 -140421,1616:245:3,165,64.5,0,0,-0.00575677 -140422,1616:245:4,165.5,64.5,0,0,-0.00572741 -140423,1616:246:3,166,64.5,0,0,-0.00570581 -140424,1616:246:4,166.5,64.5,0,0,-0.00568685 -140425,1616:247:3,167,64.5,0,0,-0.00566918 -140426,1616:247:4,167.5,64.5,0,0,-0.00565535 -140427,1616:248:3,168,64.5,0,0,-0.00564907 -140428,1616:248:4,168.5,64.5,0,0,-0.00565282 -140429,1616:249:3,169,64.5,0,0,-0.00565911 -140430,1616:249:4,169.5,64.5,0,0,-0.00566541 -140431,1617:140:3,170,64.5,0,0,-0.00567171 -140432,1617:140:4,170.5,64.5,0,0,-0.00567548 -140433,1617:141:3,171,64.5,0,0,-0.00568053 -140434,1617:141:4,171.5,64.5,0,0,-0.0056843 -140435,1617:142:3,172,64.5,0,0,-0.00569063 -140436,1617:142:4,172.5,64.5,0,0,-0.00569824 -140437,1617:143:3,173,64.5,0,0,-0.0057033 -140438,1617:143:4,173.5,64.5,0,0,-0.00570709 -140439,1617:144:3,174,64.5,0,0,-0.00571092 -140440,1617:144:4,174.5,64.5,0,0,-0.00571472 -140441,1617:245:3,175,64.5,0,0,-0.00571852 -140442,1617:245:4,175.5,64.5,0,0,-0.00572232 -140443,1617:246:3,176,64.5,0,0,-0.0057236 -140444,1617:246:4,176.5,64.5,0,0,-0.00572488 -140445,1617:247:3,177,64.5,0,0,-0.00572488 -140446,1617:247:4,177.5,64.5,0,0,-0.00572232 -140447,1617:248:3,178,64.5,0,0,-0.00571852 -140448,1617:248:4,178.5,64.5,0,0,-0.00571344 -140449,1617:249:3,179,64.5,0,0,-0.00570965 -140450,1617:249:4,179.5,64.5,0,0,-0.00570458 -140451,1618:140:3,180,64.5,0,0,-0.00570075 -140452,7618:350:1,-180,65,0,0,-0.00569696 -140453,7617:459:2,-179.5,65,0,0,-0.00569318 -140454,7617:459:1,-179,65,0,0,-0.00569063 -140455,7617:458:2,-178.5,65,0,0,-0.00568558 -140456,7617:458:1,-178,65,0,0,-0.00568053 -140457,7617:457:2,-177.5,65,0,0,-0.00568053 -140458,7617:457:1,-177,65,0,0,-0.00568053 -140459,7617:456:2,-176.5,65,0,0,-0.00567803 -140460,7617:456:1,-176,65,0,0,-0.00567803 -140461,7617:455:2,-175.5,65,0,0,-0.0056919 -140462,7617:455:1,-175,65,0,0,-0.00573635 -140463,7617:354:2,-174.5,65,0,0,-0.00577985 -140464,7617:354:1,-174,65,0,0,-0.00577601 -140465,7617:353:2,-173.5,65,0,0,-0.00577213 -140466,7617:353:1,-173,65,0,0,-0.00577088 -140467,7617:352:2,-172.5,65,0,0,-0.00575934 -140468,7617:352:1,-172,65,0,0,-0.00574144 -140469,7617:351:2,-171.5,65,0,0,-0.00572741 -140470,7617:351:1,-171,65,0,0,-0.00571344 -140471,7617:350:2,-170.5,65,0,0,-0.00571472 -140472,7617:350:1,-170,65,0,0,-0.00572741 -140473,7616:459:2,-169.5,65,0,0,-0.00574016 -140474,7616:459:1,-169,65,0,0,-0.00575806 -140475,7616:458:2,-168.5,65,0,0,-0.00575548 -140476,7616:458:1,-168,65,0,0,-0.00576446 -140477,7616:457:2,-167.5,65,0,0,-0.00575294 -140478,7616:457:1,-167,65,0,0,-0.00574144 -140479,7616:456:2,-166.5,65,0,0,-0.00574398 -140480,7616:456:1,-166,65,0,0,-0.00574783 -140481,7616:455:2,-165.5,65,0,0,-0.00575037 -140482,7616:455:1,-165,65,0,0,-0.00575423 -140483,7616:354:2,-164.5,65,0,0,-0.00575677 -140484,7616:354:1,-164,65,0,0,-0.00576446 -140485,7616:353:2,-163.5,65,0,0,-0.005767 -140486,7616:353:1,-163,65,0,0,-0.005767 -140487,7616:352:2,-162.5,65,0,0,-0.00577342 -140488,7616:352:1,-162,65,0,0,-0.00577342 -140489,7616:351:2,-161.5,65,0,0,-0.00576188 -140490,7616:351:1,-161,65,0,0,-0.00575548 -140491,7616:350:2,-160.5,65,0,0,-0.00575677 -140492,7616:350:1,-160,65,0,0,-0.00576446 -140493,7615:459:2,-159.5,65,0,0,-0.005767 -140494,7615:459:1,-159,65,0,0,-0.00575548 -140495,7615:458:2,-158.5,65,0,0,-0.00573888 -140496,7615:458:1,-158,65,0,0,-0.0057236 -140497,7615:457:2,-157.5,65,0,0,-0.00571216 -140498,7615:457:1,-157,65,0,0,-0.0057033 -140499,7615:456:2,-156.5,65,0,0,-0.00569951 -140500,7615:456:1,-156,65,0,0,-0.00570075 -140501,7615:455:2,-155.5,65,0,0,-0.00570965 -140502,7615:455:1,-155,65,0,0,-0.00572108 -140503,7615:354:2,-154.5,65,0,0,-0.00574016 -140504,7615:354:1,-154,65,0,0,-0.00579397 -140505,7615:353:2,-153.5,65,0,0,-0.00582237 -140506,7615:353:1,-153,65,0,0,-0.00583403 -140507,7615:352:2,-152.5,65,0,0,-0.00585091 -140508,7615:352:1,-152,65,0,0,-0.0059176 -140509,7615:351:2,-151.5,65,0,0,-0.00602914 -140510,7615:350:2,-150.5,65,0,0,-0.00640641 -140511,7606:354:2,-64.5,65,0,0,-0.00574398 -140512,7606:354:1,-64,65,0,0,-0.00576575 -140513,7606:353:2,-63.5,65,0,0,-0.00573254 -140514,7606:352:2,-62.5,65,0,0,-0.0056843 -140515,7606:351:2,-61.5,65,0,0,-0.00588614 -140516,7606:351:1,-61,65,0,0,-0.00577726 -140517,7605:456:1,-56,65,0,0,-0.00576059 -140518,7605:455:2,-55.5,65,0,0,-0.00578369 -140519,7605:455:1,-55,65,0,0,-0.00577342 -140520,7605:354:2,-54.5,65,0,0,-0.00575548 -140521,7605:354:1,-54,65,0,0,-0.00571724 -140522,7605:353:2,-53.5,65,0,0,-0.00567294 -140523,7605:353:1,-53,65,0,0,-0.00563904 -140524,7605:352:2,-52.5,65,0,0,-0.00565033 -140525,7605:352:1,-52,65,0,0,-0.00566541 -140526,7605:351:2,-51.5,65,0,0,-0.00567045 -140527,7605:351:1,-51,65,0,0,-0.00567926 -140528,7605:350:2,-50.5,65,0,0,-0.00568812 -140529,7605:350:1,-50,65,0,0,-0.00568685 -140530,7604:459:2,-49.5,65,0,0,-0.00568307 -140531,7604:459:1,-49,65,0,0,-0.00567675 -140532,7604:458:2,-48.5,65,0,0,-0.00566038 -140533,7604:458:1,-48,65,0,0,-0.0056403 -140534,7604:457:2,-47.5,65,0,0,-0.00563652 -140535,7604:457:1,-47,65,0,0,-0.00563904 -140536,7604:456:2,-46.5,65,0,0,-0.00564907 -140537,7604:456:1,-46,65,0,0,-0.00566791 -140538,7604:455:2,-45.5,65,0,0,-0.0056843 -140539,7604:455:1,-45,65,0,0,-0.00569569 -140540,7604:354:2,-44.5,65,0,0,-0.00570837 -140541,7604:354:1,-44,65,0,0,-0.00577471 -140542,7604:353:2,-43.5,65,0,0,-0.00578883 -140543,7604:353:1,-43,65,0,0,-0.00555325 -140544,7602:351:2,-21.5,65,0,0,-0.00568558 -140545,7602:351:1,-21,65,0,0,-0.00567421 -140546,7602:350:2,-20.5,65,0,0,-0.00565658 -140547,7602:350:1,-20,65,0,0,-0.00563526 -140548,7601:459:2,-19.5,65,0,0,-0.00562526 -140549,7601:459:1,-19,65,0,0,-0.00562278 -140550,7601:458:2,-18.5,65,0,0,-0.00562526 -140551,7601:458:1,-18,65,0,0,-0.00562651 -140552,7601:457:2,-17.5,65,0,0,-0.00563404 -140553,7601:457:1,-17,65,0,0,-0.00564654 -140554,7601:456:2,-16.5,65,0,0,-0.0056919 -140555,7601:456:1,-16,65,0,0,-0.00582885 -140556,7601:455:2,-15.5,65,0,0,-0.00656939 -140557,7601:455:1,-15,65,0,0,-0.0107422 -140558,7601:354:2,-14.5,65,0,0,-0.0141314 -140559,7601:354:1,-14,65,0,0,-0.0143162 -140560,7601:353:2,-13.5,65,0,0,-0.0132546 -140561,7601:353:1,-13,65,0,0,-0.0128314 -140562,7601:352:2,-12.5,65,0,0,-0.0123221 -140563,7601:352:1,-12,65,0,0,-0.0121145 -140564,7601:351:2,-11.5,65,0,0,-0.0122946 -140565,7601:351:1,-11,65,0,0,-0.0128514 -140566,7601:350:2,-10.5,65,0,0,-0.0143967 -140567,7601:350:1,-10,65,0,0,-0.01608 -140568,7600:459:2,-9.5,65,0,0,-0.0176039 -140569,7600:459:1,-9,65,0,0,-0.0187441 -140570,7600:458:2,-8.5,65,0,0,-0.0195283 -140571,7600:458:1,-8,65,0,0,-0.020838 -140572,7600:457:2,-7.5,65,0,0,-0.0234027 -140573,7600:457:1,-7,65,0,0,-0.0240956 -140574,7600:456:2,-6.5,65,0,0,-0.0289019 -140575,7600:456:1,-6,65,0,0,-0.0300754 -140576,7600:455:2,-5.5,65,0,0,-0.031556 -140577,7600:455:1,-5,65,0,0,-0.0320418 -140578,7600:354:2,-4.5,65,0,0,-0.0326765 -140579,7600:354:1,-4,65,0,0,-0.0351544 -140580,7600:353:2,-3.5,65,0,0,-0.0364655 -140581,7600:353:1,-3,65,0,0,-0.0345725 -140582,7600:352:2,-2.5,65,0,0,-0.0275492 -140583,7600:352:1,-2,65,0,0,-0.0249164 -140584,7600:351:2,-1.5,65,0,0,-0.0246806 -140585,7600:351:1,-1,65,0,0,-0.0243037 -140586,7600:350:2,-0.5,65,0,0,-0.0224698 -140587,1600:350:2,0,65,0,0,-0.0213905 -140588,1600:350:2,0.5,65,0,0,-0.021434 -140589,1600:351:1,1,65,0,0,-0.0249052 -140590,1600:351:2,1.5,65,0,0,-0.0283103 -140591,1600:352:1,2,65,0,0,-0.0303299 -140592,1600:352:2,2.5,65,0,0,-0.0337608 -140593,1600:353:1,3,65,0,0,-0.033653 -140594,1600:353:2,3.5,65,0,0,-0.0317003 -140595,1600:354:1,4,65,0,0,-0.0314626 -140596,1600:354:2,4.5,65,0,0,-0.0368096 -140597,1600:455:1,5,65,0,0,-0.0379314 -140598,1600:455:2,5.5,65,0,0,-0.0366077 -140599,1600:456:1,6,65,0,0,-0.037362 -140600,1600:456:2,6.5,65,0,0,-0.0389993 -140601,1600:457:1,7,65,0,0,-0.0361496 -140602,1600:457:2,7.5,65,0,0,-0.0344543 -140603,1600:458:1,8,65,0,0,-0.0363406 -140604,1600:458:2,8.5,65,0,0,-0.0388831 -140605,1600:459:1,9,65,0,0,-0.0391608 -140606,1600:459:2,9.5,65,0,0,-0.0349062 -140607,1601:350:1,10,65,0,0,-0.0365407 -140608,1601:350:2,10.5,65,0,0,-0.03596 -140609,1601:351:1,11,65,0,0,-0.035026 -140610,1601:351:2,11.5,65,0,0,-0.0338379 -140611,1601:352:1,12,65,0,0,-0.0334766 -140612,1601:352:2,12.5,65,0,0,-0.032424 -140613,1601:353:1,13,65,0,0,-0.030768 -140614,1602:350:1,20,65,0,0,-0.012101 -140615,1602:350:2,20.5,65,0,0,-0.0109603 -140616,1602:351:1,21,65,0,0,-0.0101659 -140617,1614:354:2,144.5,65,0,0,-0.00661633 -140618,1614:456:2,146.5,65,0,0,-0.00668141 -140619,1614:457:1,147,65,0,0,-0.00656797 -140620,1614:457:2,147.5,65,0,0,-0.00640641 -140621,1614:458:1,148,65,0,0,-0.00629903 -140622,1614:458:2,148.5,65,0,0,-0.00624605 -140623,1614:459:1,149,65,0,0,-0.00618662 -140624,1614:459:2,149.5,65,0,0,-0.00614959 -140625,1615:350:1,150,65,0,0,-0.00613051 -140626,1615:350:2,150.5,65,0,0,-0.00618251 -140627,1615:351:1,151,65,0,0,-0.00626693 -140628,1615:351:2,151.5,65,0,0,-0.00630746 -140629,1615:352:1,152,65,0,0,-0.00629903 -140630,1615:352:2,152.5,65,0,0,-0.00628366 -140631,1615:353:1,153,65,0,0,-0.0062697 -140632,1615:353:2,153.5,65,0,0,-0.0062377 -140633,1615:457:1,157,65,0,0,-0.00605332 -140634,1615:457:2,157.5,65,0,0,-0.00603986 -140635,1615:458:1,158,65,0,0,-0.00601843 -140636,1615:458:2,158.5,65,0,0,-0.00600107 -140637,1615:459:1,159,65,0,0,-0.00599041 -140638,1615:459:2,159.5,65,0,0,-0.00596782 -140639,1616:350:1,160,65,0,0,-0.00593738 -140640,1616:350:2,160.5,65,0,0,-0.00590974 -140641,1616:351:1,161,65,0,0,-0.00588223 -140642,1616:351:2,161.5,65,0,0,-0.00585484 -140643,1616:352:1,162,65,0,0,-0.00582755 -140644,1616:352:2,162.5,65,0,0,-0.00580432 -140645,1616:353:1,163,65,0,0,-0.00578243 -140646,1616:353:2,163.5,65,0,0,-0.00576317 -140647,1616:354:1,164,65,0,0,-0.00574016 -140648,1616:354:2,164.5,65,0,0,-0.00571344 -140649,1616:455:1,165,65,0,0,-0.00570075 -140650,1616:455:2,165.5,65,0,0,-0.00568558 -140651,1616:456:1,166,65,0,0,-0.00566668 -140652,1616:456:2,166.5,65,0,0,-0.00565033 -140653,1616:457:1,167,65,0,0,-0.00564279 -140654,1616:457:2,167.5,65,0,0,-0.00564153 -140655,1616:458:1,168,65,0,0,-0.00564654 -140656,1616:458:2,168.5,65,0,0,-0.00565282 -140657,1616:459:1,169,65,0,0,-0.00565785 -140658,1616:459:2,169.5,65,0,0,-0.00566414 -140659,1617:350:1,170,65,0,0,-0.00567045 -140660,1617:350:2,170.5,65,0,0,-0.00567675 -140661,1617:351:1,171,65,0,0,-0.0056818 -140662,1617:351:2,171.5,65,0,0,-0.00568812 -140663,1617:352:1,172,65,0,0,-0.00569445 -140664,1617:352:2,172.5,65,0,0,-0.00569951 -140665,1617:353:1,173,65,0,0,-0.00570458 -140666,1617:353:2,173.5,65,0,0,-0.00571092 -140667,1617:354:1,174,65,0,0,-0.005716 -140668,1617:354:2,174.5,65,0,0,-0.0057198 -140669,1617:455:1,175,65,0,0,-0.00572108 -140670,1617:455:2,175.5,65,0,0,-0.00572232 -140671,1617:456:1,176,65,0,0,-0.00572108 -140672,1617:456:2,176.5,65,0,0,-0.00572108 -140673,1617:457:1,177,65,0,0,-0.00572232 -140674,1617:457:2,177.5,65,0,0,-0.0057198 -140675,1617:458:1,178,65,0,0,-0.00571472 -140676,1617:458:2,178.5,65,0,0,-0.00571092 -140677,1617:459:1,179,65,0,0,-0.00570837 -140678,1617:459:2,179.5,65,0,0,-0.0057033 -140679,1618:350:1,180,65,0,0,-0.00569696 -140680,7618:350:3,-180,65.5,0,0,-0.00569951 -140681,7617:459:4,-179.5,65.5,0,0,-0.0056919 -140682,7617:459:3,-179,65.5,0,0,-0.00568812 -140683,7617:458:4,-178.5,65.5,0,0,-0.00568307 -140684,7617:458:3,-178,65.5,0,0,-0.00568053 -140685,7617:457:4,-177.5,65.5,0,0,-0.00567926 -140686,7617:457:3,-177,65.5,0,0,-0.00567926 -140687,7617:456:4,-176.5,65.5,0,0,-0.00567926 -140688,7617:456:3,-176,65.5,0,0,-0.00568053 -140689,7617:455:4,-175.5,65.5,0,0,-0.00569569 -140690,7617:455:3,-175,65.5,0,0,-0.00573378 -140691,7617:354:4,-174.5,65.5,0,0,-0.00575294 -140692,7617:354:3,-174,65.5,0,0,-0.00574655 -140693,7617:353:4,-173.5,65.5,0,0,-0.00574144 -140694,7617:353:3,-173,65.5,0,0,-0.00574016 -140695,7617:352:4,-172.5,65.5,0,0,-0.00573125 -140696,7617:352:3,-172,65.5,0,0,-0.00572741 -140697,7617:351:4,-171.5,65.5,0,0,-0.00572108 -140698,7617:351:3,-171,65.5,0,0,-0.0057198 -140699,7617:350:4,-170.5,65.5,0,0,-0.00573378 -140700,7617:350:3,-170,65.5,0,0,-0.00574526 -140701,7616:459:4,-169.5,65.5,0,0,-0.00575423 -140702,7616:459:3,-169,65.5,0,0,-0.00574783 -140703,7616:458:4,-168.5,65.5,0,0,-0.00574783 -140704,7616:458:3,-168,65.5,0,0,-0.00575548 -140705,7616:457:4,-167.5,65.5,0,0,-0.00576317 -140706,7616:457:3,-167,65.5,0,0,-0.00576317 -140707,7616:456:4,-166.5,65.5,0,0,-0.00576829 -140708,7616:456:3,-166,65.5,0,0,-0.00577342 -140709,7616:455:4,-165.5,65.5,0,0,-0.00577726 -140710,7616:455:3,-165,65.5,0,0,-0.00577855 -140711,7616:354:4,-164.5,65.5,0,0,-0.00577985 -140712,7616:354:3,-164,65.5,0,0,-0.00578114 -140713,7616:353:4,-163.5,65.5,0,0,-0.00578498 -140714,7616:353:3,-163,65.5,0,0,-0.00578628 -140715,7616:352:4,-162.5,65.5,0,0,-0.00578757 -140716,7616:352:3,-162,65.5,0,0,-0.00578114 -140717,7616:351:4,-161.5,65.5,0,0,-0.00576959 -140718,7616:351:3,-161,65.5,0,0,-0.00575677 -140719,7616:350:4,-160.5,65.5,0,0,-0.00575165 -140720,7616:350:3,-160,65.5,0,0,-0.00575165 -140721,7615:459:4,-159.5,65.5,0,0,-0.00574912 -140722,7615:459:3,-159,65.5,0,0,-0.00573888 -140723,7615:458:4,-158.5,65.5,0,0,-0.00572616 -140724,7615:458:3,-158,65.5,0,0,-0.005716 -140725,7615:457:4,-157.5,65.5,0,0,-0.00570709 -140726,7615:457:3,-157,65.5,0,0,-0.00570075 -140727,7615:456:4,-156.5,65.5,0,0,-0.00569569 -140728,7615:456:3,-156,65.5,0,0,-0.0056919 -140729,7615:455:4,-155.5,65.5,0,0,-0.00569445 -140730,7615:455:3,-155,65.5,0,0,-0.00570581 -140731,7615:354:4,-154.5,65.5,0,0,-0.00572232 -140732,7615:354:3,-154,65.5,0,0,-0.00573888 -140733,7615:353:4,-153.5,65.5,0,0,-0.00577985 -140734,7615:353:3,-153,65.5,0,0,-0.00579272 -140735,7615:352:4,-152.5,65.5,0,0,-0.00579787 -140736,7615:352:3,-152,65.5,0,0,-0.00580818 -140737,7615:351:4,-151.5,65.5,0,0,-0.00585742 -140738,7615:351:3,-151,65.5,0,0,-0.00597576 -140739,7615:350:4,-150.5,65.5,0,0,-0.00609245 -140740,7607:352:3,-72,65.5,0,0,-0.00596515 -140741,7607:351:4,-71.5,65.5,0,0,-0.00593211 -140742,7606:455:3,-65,65.5,0,0,-0.00571344 -140743,7606:354:4,-64.5,65.5,0,0,-0.00575165 -140744,7606:354:3,-64,65.5,0,0,-0.00583665 -140745,7606:353:4,-63.5,65.5,0,0,-0.00579397 -140746,7606:353:3,-63,65.5,0,0,-0.00573635 -140747,7606:351:3,-61,65.5,0,0,-0.00562777 -140748,7605:456:3,-56,65.5,0,0,-0.00585742 -140749,7605:455:4,-55.5,65.5,0,0,-0.00582755 -140750,7605:455:3,-55,65.5,0,0,-0.00580558 -140751,7605:354:4,-54.5,65.5,0,0,-0.00575423 -140752,7605:354:3,-54,65.5,0,0,-0.00571724 -140753,7605:353:4,-53.5,65.5,0,0,-0.00566918 -140754,7605:353:3,-53,65.5,0,0,-0.00563652 -140755,7605:352:4,-52.5,65.5,0,0,-0.00563652 -140756,7605:352:3,-52,65.5,0,0,-0.00565033 -140757,7605:351:4,-51.5,65.5,0,0,-0.00565282 -140758,7605:351:3,-51,65.5,0,0,-0.00565911 -140759,7605:350:4,-50.5,65.5,0,0,-0.00567045 -140760,7605:350:3,-50,65.5,0,0,-0.00567803 -140761,7604:459:4,-49.5,65.5,0,0,-0.0056818 -140762,7604:459:3,-49,65.5,0,0,-0.00566918 -140763,7604:458:4,-48.5,65.5,0,0,-0.00564907 -140764,7604:458:3,-48,65.5,0,0,-0.00563904 -140765,7604:457:4,-47.5,65.5,0,0,-0.00563277 -140766,7604:457:3,-47,65.5,0,0,-0.00563904 -140767,7604:456:4,-46.5,65.5,0,0,-0.00566541 -140768,7604:456:3,-46,65.5,0,0,-0.0056919 -140769,7604:455:4,-45.5,65.5,0,0,-0.00570581 -140770,7604:455:3,-45,65.5,0,0,-0.00571852 -140771,7604:354:4,-44.5,65.5,0,0,-0.00572869 -140772,7604:354:3,-44,65.5,0,0,-0.00575294 -140773,7604:353:4,-43.5,65.5,0,0,-0.00579397 -140774,7604:353:3,-43,65.5,0,0,-0.00575677 -140775,7602:352:4,-22.5,65.5,0,0,-0.00576959 -140776,7602:352:3,-22,65.5,0,0,-0.00573125 -140777,7602:351:4,-21.5,65.5,0,0,-0.00571216 -140778,7602:351:3,-21,65.5,0,0,-0.00569696 -140779,7602:350:4,-20.5,65.5,0,0,-0.00565658 -140780,7602:350:3,-20,65.5,0,0,-0.00562903 -140781,7601:459:4,-19.5,65.5,0,0,-0.00562404 -140782,7601:459:3,-19,65.5,0,0,-0.00562278 -140783,7601:458:4,-18.5,65.5,0,0,-0.00562026 -140784,7601:458:3,-18,65.5,0,0,-0.005619 -140785,7601:457:4,-17.5,65.5,0,0,-0.00562278 -140786,7601:457:3,-17,65.5,0,0,-0.00563277 -140787,7601:456:4,-16.5,65.5,0,0,-0.00565535 -140788,7601:456:3,-16,65.5,0,0,-0.00573506 -140789,7601:455:4,-15.5,65.5,0,0,-0.0059944 -140790,7601:455:3,-15,65.5,0,0,-0.00729999 -140791,7601:354:4,-14.5,65.5,0,0,-0.0111679 -140792,7601:354:3,-14,65.5,0,0,-0.0146211 -140793,7601:353:4,-13.5,65.5,0,0,-0.0149627 -140794,7601:353:3,-13,65.5,0,0,-0.0140683 -140795,7601:352:4,-12.5,65.5,0,0,-0.0128658 -140796,7601:352:3,-12,65.5,0,0,-0.0126122 -140797,7601:351:4,-11.5,65.5,0,0,-0.0133559 -140798,7601:351:3,-11,65.5,0,0,-0.0144776 -140799,7601:350:4,-10.5,65.5,0,0,-0.0159149 -140800,7601:350:3,-10,65.5,0,0,-0.0167923 -140801,7600:459:4,-9.5,65.5,0,0,-0.0176912 -140802,7600:459:3,-9,65.5,0,0,-0.020332 -140803,7600:458:4,-8.5,65.5,0,0,-0.023733 -140804,7600:458:3,-8,65.5,0,0,-0.0237599 -140805,7600:457:4,-7.5,65.5,0,0,-0.0250012 -140806,7600:457:3,-7,65.5,0,0,-0.0269431 -140807,7600:456:4,-6.5,65.5,0,0,-0.0302678 -140808,7600:456:3,-6,65.5,0,0,-0.0313624 -140809,7600:455:4,-5.5,65.5,0,0,-0.0327063 -140810,7600:455:3,-5,65.5,0,0,-0.0327286 -140811,7600:354:4,-4.5,65.5,0,0,-0.0332178 -140812,7600:354:3,-4,65.5,0,0,-0.0334156 -140813,7600:353:4,-3.5,65.5,0,0,-0.029864 -140814,7600:353:3,-3,65.5,0,0,-0.0222827 -140815,7600:352:4,-2.5,65.5,0,0,-0.0203779 -140816,7600:352:3,-2,65.5,0,0,-0.0181425 -140817,7600:351:4,-1.5,65.5,0,0,-0.0200273 -140818,7600:351:3,-1,65.5,0,0,-0.0223988 -140819,7600:350:4,-0.5,65.5,0,0,-0.021953 -140820,1600:350:4,0,65.5,0,0,-0.0215067 -140821,1600:350:4,0.5,65.5,0,0,-0.0212654 -140822,1600:351:3,1,65.5,0,0,-0.0216968 -140823,1600:351:4,1.5,65.5,0,0,-0.0252402 -140824,1600:352:3,2,65.5,0,0,-0.0274554 -140825,1600:352:4,2.5,65.5,0,0,-0.0285168 -140826,1600:353:3,3,65.5,0,0,-0.0315992 -140827,1600:353:4,3.5,65.5,0,0,-0.032602 -140828,1600:354:3,4,65.5,0,0,-0.0312911 -140829,1600:354:4,4.5,65.5,0,0,-0.0303575 -140830,1600:455:3,5,65.5,0,0,-0.0304198 -140831,1600:455:4,5.5,65.5,0,0,-0.029199 -140832,1600:456:3,6,65.5,0,0,-0.0316353 -140833,1600:456:4,6.5,65.5,0,0,-0.0359929 -140834,1600:457:3,7,65.5,0,0,-0.0318595 -140835,1600:457:4,7.5,65.5,0,0,-0.0332254 -140836,1600:458:3,8,65.5,0,0,-0.0363571 -140837,1600:458:4,8.5,65.5,0,0,-0.0355182 -140838,1600:459:3,9,65.5,0,0,-0.0311063 -140839,1600:459:4,9.5,65.5,0,0,-0.0314913 -140840,1601:350:3,10,65.5,0,0,-0.0319905 -140841,1601:350:4,10.5,65.5,0,0,-0.0292588 -140842,1601:351:3,11,65.5,0,0,-0.0295732 -140843,1601:351:4,11.5,65.5,0,0,-0.0299186 -140844,1601:352:3,12,65.5,0,0,-0.0302403 -140845,1601:352:4,12.5,65.5,0,0,-0.0292921 -140846,1601:353:3,13,65.5,0,0,-0.0284845 -140847,1601:353:4,13.5,65.5,0,0,-0.0286077 -140848,1601:354:3,14,65.5,0,0,-0.0290071 -140849,1601:354:4,14.5,65.5,0,0,-0.0287707 -140850,1601:455:3,15,65.5,0,0,-0.0272072 -140851,1601:455:4,15.5,65.5,0,0,-0.0247198 -140852,1601:456:3,16,65.5,0,0,-0.0223079 -140853,1601:456:4,16.5,65.5,0,0,-0.0191537 -140854,1601:457:3,17,65.5,0,0,-0.0175959 -140855,1601:459:3,19,65.5,0,0,-0.0151247 -140856,1601:459:4,19.5,65.5,0,0,-0.0127941 -140857,1602:350:3,20,65.5,0,0,-0.0119664 -140858,1602:350:4,20.5,65.5,0,0,-0.00996151 -140859,1602:351:3,21,65.5,0,0,-0.00898213 -140860,1602:351:4,21.5,65.5,0,0,-0.00829524 -140861,1602:352:3,22,65.5,0,0,-0.00780763 -140862,1614:353:4,143.5,65.5,0,0,-0.00649677 -140863,1614:354:3,144,65.5,0,0,-0.00661193 -140864,1614:354:4,144.5,65.5,0,0,-0.00669925 -140865,1614:455:3,145,65.5,0,0,-0.00672614 -140866,1614:456:3,146,65.5,0,0,-0.00669925 -140867,1614:456:4,146.5,65.5,0,0,-0.00661485 -140868,1614:457:3,147,65.5,0,0,-0.00648377 -140869,1614:457:4,147.5,65.5,0,0,-0.00638791 -140870,1614:458:3,148,65.5,0,0,-0.00631585 -140871,1614:458:4,148.5,65.5,0,0,-0.00623635 -140872,1614:459:3,149,65.5,0,0,-0.00616053 -140873,1614:459:4,149.5,65.5,0,0,-0.00609382 -140874,1615:350:3,150,65.5,0,0,-0.00604523 -140875,1615:350:4,150.5,65.5,0,0,-0.00607083 -140876,1615:351:3,151,65.5,0,0,-0.00615644 -140877,1615:351:4,151.5,65.5,0,0,-0.0062391 -140878,1615:352:3,152,65.5,0,0,-0.0062711 -140879,1615:352:4,152.5,65.5,0,0,-0.00628226 -140880,1615:353:3,153,65.5,0,0,-0.00627668 -140881,1615:353:4,153.5,65.5,0,0,-0.00621144 -140882,1615:354:3,154,65.5,0,0,-0.00618801 -140883,1615:455:4,155.5,65.5,0,0,-0.00605599 -140884,1615:456:3,156,65.5,0,0,-0.00606408 -140885,1615:456:4,156.5,65.5,0,0,-0.00607623 -140886,1615:457:3,157,65.5,0,0,-0.00605332 -140887,1615:457:4,157.5,65.5,0,0,-0.00601709 -140888,1615:458:3,158,65.5,0,0,-0.00598375 -140889,1615:458:4,158.5,65.5,0,0,-0.00596252 -140890,1615:459:3,159,65.5,0,0,-0.00594532 -140891,1615:459:4,159.5,65.5,0,0,-0.00591892 -140892,1616:350:3,160,65.5,0,0,-0.00588873 -140893,1616:350:4,160.5,65.5,0,0,-0.00586132 -140894,1616:351:3,161,65.5,0,0,-0.00583534 -140895,1616:351:4,161.5,65.5,0,0,-0.00581204 -140896,1616:352:3,162,65.5,0,0,-0.00578369 -140897,1616:352:4,162.5,65.5,0,0,-0.00575806 -140898,1616:353:3,163,65.5,0,0,-0.00573378 -140899,1616:353:4,163.5,65.5,0,0,-0.00571344 -140900,1616:354:3,164,65.5,0,0,-0.00570075 -140901,1616:354:4,164.5,65.5,0,0,-0.0056843 -140902,1616:455:3,165,65.5,0,0,-0.00566541 -140903,1616:455:4,165.5,65.5,0,0,-0.00565156 -140904,1616:456:3,166,65.5,0,0,-0.00564279 -140905,1616:456:4,166.5,65.5,0,0,-0.0056403 -140906,1616:457:3,167,65.5,0,0,-0.00564279 -140907,1616:457:4,167.5,65.5,0,0,-0.00564907 -140908,1616:458:3,168,65.5,0,0,-0.00565535 -140909,1616:458:4,168.5,65.5,0,0,-0.00566038 -140910,1616:459:3,169,65.5,0,0,-0.00566541 -140911,1616:459:4,169.5,65.5,0,0,-0.00567045 -140912,1617:350:3,170,65.5,0,0,-0.00567421 -140913,1617:350:4,170.5,65.5,0,0,-0.00568053 -140914,1617:351:3,171,65.5,0,0,-0.0056843 -140915,1617:351:4,171.5,65.5,0,0,-0.00569063 -140916,1617:352:3,172,65.5,0,0,-0.00569569 -140917,1617:352:4,172.5,65.5,0,0,-0.00570202 -140918,1617:353:3,173,65.5,0,0,-0.00570837 -140919,1617:353:4,173.5,65.5,0,0,-0.00571344 -140920,1617:354:3,174,65.5,0,0,-0.00571724 -140921,1617:354:4,174.5,65.5,0,0,-0.00571852 -140922,1617:455:3,175,65.5,0,0,-0.00571852 -140923,1617:455:4,175.5,65.5,0,0,-0.00571724 -140924,1617:456:3,176,65.5,0,0,-0.00571724 -140925,1617:456:4,176.5,65.5,0,0,-0.00571724 -140926,1617:457:3,177,65.5,0,0,-0.00571724 -140927,1617:457:4,177.5,65.5,0,0,-0.00571472 -140928,1617:458:3,178,65.5,0,0,-0.00571344 -140929,1617:458:4,178.5,65.5,0,0,-0.00571216 -140930,1617:459:3,179,65.5,0,0,-0.00571092 -140931,1617:459:4,179.5,65.5,0,0,-0.00570709 -140932,1618:350:3,180,65.5,0,0,-0.00569951 -140933,7618:360:1,-180,66,0,0,-0.00570709 -140934,7617:469:2,-179.5,66,0,0,-0.00570075 -140935,7617:469:1,-179,66,0,0,-0.00569569 -140936,7617:468:2,-178.5,66,0,0,-0.00569318 -140937,7617:468:1,-178,66,0,0,-0.00568936 -140938,7617:467:2,-177.5,66,0,0,-0.00568812 -140939,7617:467:1,-177,66,0,0,-0.00568685 -140940,7617:466:2,-176.5,66,0,0,-0.00568558 -140941,7617:466:1,-176,66,0,0,-0.00568558 -140942,7617:465:2,-175.5,66,0,0,-0.00569696 -140943,7617:465:1,-175,66,0,0,-0.005716 -140944,7617:364:2,-174.5,66,0,0,-0.00572616 -140945,7617:364:1,-174,66,0,0,-0.00572869 -140946,7617:363:2,-173.5,66,0,0,-0.00573378 -140947,7617:363:1,-173,66,0,0,-0.00573506 -140948,7617:362:2,-172.5,66,0,0,-0.00573506 -140949,7617:362:1,-172,66,0,0,-0.00573254 -140950,7617:361:2,-171.5,66,0,0,-0.00572869 -140951,7617:361:1,-171,66,0,0,-0.00573763 -140952,7617:360:2,-170.5,66,0,0,-0.00574783 -140953,7617:360:1,-170,66,0,0,-0.00575294 -140954,7616:469:2,-169.5,66,0,0,-0.00575037 -140955,7616:469:1,-169,66,0,0,-0.00575294 -140956,7616:468:2,-168.5,66,0,0,-0.00576446 -140957,7616:468:1,-168,66,0,0,-0.00577601 -140958,7616:467:2,-167.5,66,0,0,-0.00578628 -140959,7616:467:1,-167,66,0,0,-0.00578628 -140960,7616:466:2,-166.5,66,0,0,-0.00579012 -140961,7616:466:1,-166,66,0,0,-0.00578628 -140962,7616:465:2,-165.5,66,0,0,-0.00578757 -140963,7616:465:1,-165,66,0,0,-0.00578883 -140964,7616:364:2,-164.5,66,0,0,-0.00579397 -140965,7616:364:1,-164,66,0,0,-0.00580172 -140966,7616:363:2,-163.5,66,0,0,-0.00580818 -140967,7616:363:1,-163,66,0,0,-0.00581074 -140968,7616:362:2,-162.5,66,0,0,-0.00580688 -140969,7616:362:1,-162,66,0,0,-0.00579916 -140970,7616:361:2,-161.5,66,0,0,-0.00578498 -140971,7616:361:1,-161,66,0,0,-0.00576959 -140972,7616:360:2,-160.5,66,0,0,-0.00575548 -140973,7616:360:1,-160,66,0,0,-0.00574526 -140974,7615:469:2,-159.5,66,0,0,-0.00573763 -140975,7615:469:1,-159,66,0,0,-0.00572997 -140976,7615:468:2,-158.5,66,0,0,-0.00572232 -140977,7615:468:1,-158,66,0,0,-0.00571344 -140978,7615:467:2,-157.5,66,0,0,-0.00570581 -140979,7615:467:1,-157,66,0,0,-0.00570075 -140980,7615:466:2,-156.5,66,0,0,-0.00569696 -140981,7615:466:1,-156,66,0,0,-0.00569318 -140982,7615:465:2,-155.5,66,0,0,-0.00568812 -140983,7615:465:1,-155,66,0,0,-0.00569318 -140984,7615:364:2,-154.5,66,0,0,-0.00570202 -140985,7615:364:1,-154,66,0,0,-0.00570709 -140986,7615:363:2,-153.5,66,0,0,-0.00573635 -140987,7615:363:1,-153,66,0,0,-0.00576059 -140988,7615:362:2,-152.5,66,0,0,-0.00577342 -140989,7615:362:1,-152,66,0,0,-0.00577088 -140990,7615:361:2,-151.5,66,0,0,-0.00580302 -140991,7615:361:1,-151,66,0,0,-0.00586263 -140992,7615:360:2,-150.5,66,0,0,-0.0059176 -140993,7615:360:1,-150,66,0,0,-0.00588223 -140994,7607:362:1,-72,66,0,0,-0.00598375 -140995,7607:361:2,-71.5,66,0,0,-0.00596649 -140996,7607:361:1,-71,66,0,0,-0.00592945 -140997,7607:360:1,-70,66,0,0,-0.00590185 -140998,7606:469:2,-69.5,66,0,0,-0.00594794 -140999,7606:364:2,-64.5,66,0,0,-0.00581981 -141000,7606:364:1,-64,66,0,0,-0.00586916 -141001,7606:363:1,-63,66,0,0,-0.00567294 -141002,7605:465:2,-55.5,66,0,0,-0.00584572 -141003,7605:465:1,-55,66,0,0,-0.00580042 -141004,7605:364:2,-54.5,66,0,0,-0.00575037 -141005,7605:364:1,-54,66,0,0,-0.0057198 -141006,7605:363:2,-53.5,66,0,0,-0.00567803 -141007,7605:363:1,-53,66,0,0,-0.00564532 -141008,7605:362:2,-52.5,66,0,0,-0.00563404 -141009,7605:362:1,-52,66,0,0,-0.00564405 -141010,7605:361:2,-51.5,66,0,0,-0.00565658 -141011,7605:361:1,-51,66,0,0,-0.00565282 -141012,7605:360:2,-50.5,66,0,0,-0.00565282 -141013,7605:360:1,-50,66,0,0,-0.00565535 -141014,7604:469:2,-49.5,66,0,0,-0.00565658 -141015,7604:469:1,-49,66,0,0,-0.00565535 -141016,7604:468:2,-48.5,66,0,0,-0.00565156 -141017,7604:468:1,-48,66,0,0,-0.0056403 -141018,7604:467:2,-47.5,66,0,0,-0.00563277 -141019,7604:467:1,-47,66,0,0,-0.00565282 -141020,7604:466:2,-46.5,66,0,0,-0.00569569 -141021,7604:466:1,-46,66,0,0,-0.00573888 -141022,7604:465:2,-45.5,66,0,0,-0.00573254 -141023,7604:465:1,-45,66,0,0,-0.00571852 -141024,7604:364:2,-44.5,66,0,0,-0.00574398 -141025,7604:364:1,-44,66,0,0,-0.00576959 -141026,7604:363:2,-43.5,66,0,0,-0.00580948 -141027,7604:363:1,-43,66,0,0,-0.00584183 -141028,7602:362:2,-22.5,66,0,0,-0.00577213 -141029,7602:362:1,-22,66,0,0,-0.00575165 -141030,7602:361:2,-21.5,66,0,0,-0.00569063 -141031,7602:361:1,-21,66,0,0,-0.00565911 -141032,7602:360:2,-20.5,66,0,0,-0.00563404 -141033,7602:360:1,-20,66,0,0,-0.00562278 -141034,7601:469:2,-19.5,66,0,0,-0.00562026 -141035,7601:469:1,-19,66,0,0,-0.00561778 -141036,7601:468:2,-18.5,66,0,0,-0.00561527 -141037,7601:468:1,-18,66,0,0,-0.00561653 -141038,7601:467:2,-17.5,66,0,0,-0.00562278 -141039,7601:467:1,-17,66,0,0,-0.00562777 -141040,7601:466:2,-16.5,66,0,0,-0.00565033 -141041,7601:466:1,-16,66,0,0,-0.00577213 -141042,7601:465:2,-15.5,66,0,0,-0.00604794 -141043,7601:465:1,-15,66,0,0,-0.00756132 -141044,7601:364:2,-14.5,66,0,0,-0.013476 -141045,7601:364:1,-14,66,0,0,-0.0155129 -141046,7601:363:2,-13.5,66,0,0,-0.0155827 -141047,7601:363:1,-13,66,0,0,-0.0147 -141048,7601:362:2,-12.5,66,0,0,-0.0135093 -141049,7601:362:1,-12,66,0,0,-0.0137043 -141050,7601:361:2,-11.5,66,0,0,-0.0145426 -141051,7601:361:1,-11,66,0,0,-0.0156247 -141052,7601:360:2,-10.5,66,0,0,-0.0165378 -141053,7601:360:1,-10,66,0,0,-0.0173018 -141054,7600:469:2,-9.5,66,0,0,-0.0212031 -141055,7600:469:1,-9,66,0,0,-0.0238353 -141056,7600:468:2,-8.5,66,0,0,-0.0252746 -141057,7600:468:1,-8,66,0,0,-0.0265127 -141058,7600:467:2,-7.5,66,0,0,-0.0269431 -141059,7600:467:1,-7,66,0,0,-0.02775 -141060,7600:466:2,-6.5,66,0,0,-0.0291925 -141061,7600:466:1,-6,66,0,0,-0.030733 -141062,7600:465:2,-5.5,66,0,0,-0.0326169 -141063,7600:465:1,-5,66,0,0,-0.0317219 -141064,7600:364:2,-4.5,66,0,0,-0.0284909 -141065,7600:364:1,-4,66,0,0,-0.0248039 -141066,7600:363:2,-3.5,66,0,0,-0.0207864 -141067,7600:363:1,-3,66,0,0,-0.0213471 -141068,7600:362:2,-2.5,66,0,0,-0.0195283 -141069,7600:362:1,-2,66,0,0,-0.0152506 -141070,7600:361:2,-1.5,66,0,0,-0.0182161 -141071,7600:361:1,-1,66,0,0,-0.0207161 -141072,7600:360:2,-0.5,66,0,0,-0.0216479 -141073,1600:360:2,0,66,0,0,-0.0218689 -141074,1600:360:2,0.5,66,0,0,-0.0221623 -141075,1600:361:1,1,66,0,0,-0.0216576 -141076,1600:361:2,1.5,66,0,0,-0.0223179 -141077,1600:362:1,2,66,0,0,-0.0244471 -141078,1600:362:2,2.5,66,0,0,-0.0270474 -141079,1600:363:1,3,66,0,0,-0.0300823 -141080,1600:363:2,3.5,66,0,0,-0.0311559 -141081,1600:364:1,4,66,0,0,-0.0298029 -141082,1600:364:2,4.5,66,0,0,-0.028323 -141083,1600:465:1,5,66,0,0,-0.0279524 -141084,1600:465:2,5.5,66,0,0,-0.0278826 -141085,1600:466:1,6,66,0,0,-0.0312911 -141086,1600:466:2,6.5,66,0,0,-0.0324979 -141087,1600:467:1,7,66,0,0,-0.0290666 -141088,1600:467:2,7.5,66,0,0,-0.0289941 -141089,1600:468:1,8,66,0,0,-0.0333319 -141090,1600:468:2,8.5,66,0,0,-0.0346041 -141091,1600:469:1,9,66,0,0,-0.0335149 -141092,1600:469:2,9.5,66,0,0,-0.02958 -141093,1601:360:1,10,66,0,0,-0.0281627 -141094,1601:360:2,10.5,66,0,0,-0.0256031 -141095,1601:361:1,11,66,0,0,-0.0262434 -141096,1601:361:2,11.5,66,0,0,-0.0262792 -141097,1601:362:1,12,66,0,0,-0.0255568 -141098,1601:362:2,12.5,66,0,0,-0.0237599 -141099,1601:363:1,13,66,0,0,-0.0219086 -141100,1601:363:2,13.5,66,0,0,-0.0215991 -141101,1601:364:1,14,66,0,0,-0.0219332 -141102,1601:364:2,14.5,66,0,0,-0.0218541 -141103,1601:465:1,15,66,0,0,-0.0238894 -141104,1601:465:2,15.5,66,0,0,-0.0248826 -141105,1601:466:1,16,66,0,0,-0.0240738 -141106,1601:466:2,16.5,66,0,0,-0.0219234 -141107,1601:467:1,17,66,0,0,-0.0208097 -141108,1601:467:2,17.5,66,0,0,-0.0187905 -141109,1601:468:1,18,66,0,0,-0.0165044 -141110,1601:468:2,18.5,66,0,0,-0.0149761 -141111,1601:469:1,19,66,0,0,-0.0155827 -141112,1601:469:2,19.5,66,0,0,-0.0147198 -141113,1602:360:1,20,66,0,0,-0.0111206 -141114,1602:360:2,20.5,66,0,0,-0.0090082 -141115,1602:361:1,21,66,0,0,-0.00799415 -141116,1602:361:2,21.5,66,0,0,-0.00754618 -141117,1602:362:1,22,66,0,0,-0.00713142 -141118,1614:363:1,143,66,0,0,-0.00623495 -141119,1614:363:2,143.5,66,0,0,-0.00637652 -141120,1614:364:1,144,66,0,0,-0.00648809 -141121,1614:364:2,144.5,66,0,0,-0.00661633 -141122,1614:465:1,145,66,0,0,-0.0066473 -141123,1614:465:2,145.5,66,0,0,-0.00661045 -141124,1614:466:1,146,66,0,0,-0.006549 -141125,1614:466:2,146.5,66,0,0,-0.00648668 -141126,1614:467:1,147,66,0,0,-0.00643494 -141127,1614:467:2,147.5,66,0,0,-0.00637371 -141128,1614:468:1,148,66,0,0,-0.00630326 -141129,1614:468:2,148.5,66,0,0,-0.00625576 -141130,1614:469:1,149,66,0,0,-0.0062004 -141131,1614:469:2,149.5,66,0,0,-0.00612777 -141132,1615:360:1,150,66,0,0,-0.00604388 -141133,1615:360:2,150.5,66,0,0,-0.0059944 -141134,1615:361:1,151,66,0,0,-0.00601978 -141135,1615:361:2,151.5,66,0,0,-0.00607759 -141136,1615:362:1,152,66,0,0,-0.00613051 -141137,1615:362:2,152.5,66,0,0,-0.00621005 -141138,1615:363:1,153,66,0,0,-0.0062544 -141139,1615:363:2,153.5,66,0,0,-0.0062516 -141140,1615:364:1,154,66,0,0,-0.00622663 -141141,1615:364:2,154.5,66,0,0,-0.0061949 -141142,1615:465:1,155,66,0,0,-0.00616601 -141143,1615:465:2,155.5,66,0,0,-0.00614142 -141144,1615:466:1,156,66,0,0,-0.00611552 -141145,1615:466:2,156.5,66,0,0,-0.00608163 -141146,1615:467:1,157,66,0,0,-0.00602644 -141147,1615:467:2,157.5,66,0,0,-0.00597045 -141148,1615:468:1,158,66,0,0,-0.00593078 -141149,1615:468:2,158.5,66,0,0,-0.00589793 -141150,1615:469:1,159,66,0,0,-0.00587306 -141151,1615:469:2,159.5,66,0,0,-0.0058496 -141152,1616:360:1,160,66,0,0,-0.00582368 -141153,1616:360:2,160.5,66,0,0,-0.00579787 -141154,1616:361:1,161,66,0,0,-0.00576829 -141155,1616:361:2,161.5,66,0,0,-0.00574273 -141156,1616:362:1,162,66,0,0,-0.00571724 -141157,1616:362:2,162.5,66,0,0,-0.00569696 -141158,1616:363:1,163,66,0,0,-0.0056843 -141159,1616:363:2,163.5,66,0,0,-0.00567421 -141160,1616:364:1,164,66,0,0,-0.00566541 -141161,1616:364:2,164.5,66,0,0,-0.00565785 -141162,1616:465:1,165,66,0,0,-0.00565033 -141163,1616:465:2,165.5,66,0,0,-0.00564279 -141164,1616:466:1,166,66,0,0,-0.0056403 -141165,1616:466:2,166.5,66,0,0,-0.0056403 -141166,1616:467:1,167,66,0,0,-0.00564907 -141167,1616:467:2,167.5,66,0,0,-0.00565785 -141168,1616:468:1,168,66,0,0,-0.00566414 -141169,1616:468:2,168.5,66,0,0,-0.00566668 -141170,1616:469:1,169,66,0,0,-0.00567045 -141171,1616:469:2,169.5,66,0,0,-0.00567294 -141172,1617:360:1,170,66,0,0,-0.00567548 -141173,1617:360:2,170.5,66,0,0,-0.00567926 -141174,1617:361:1,171,66,0,0,-0.00568558 -141175,1617:361:2,171.5,66,0,0,-0.00569063 -141176,1617:362:1,172,66,0,0,-0.00569696 -141177,1617:362:2,172.5,66,0,0,-0.0057033 -141178,1617:363:1,173,66,0,0,-0.00570837 -141179,1617:363:2,173.5,66,0,0,-0.00571344 -141180,1617:364:1,174,66,0,0,-0.005716 -141181,1617:364:2,174.5,66,0,0,-0.00571472 -141182,1617:465:1,175,66,0,0,-0.00571216 -141183,1617:465:2,175.5,66,0,0,-0.00571092 -141184,1617:466:1,176,66,0,0,-0.00571216 -141185,1617:466:2,176.5,66,0,0,-0.00571216 -141186,1617:467:1,177,66,0,0,-0.00571216 -141187,1617:467:2,177.5,66,0,0,-0.00571092 -141188,1617:468:1,178,66,0,0,-0.00571216 -141189,1617:468:2,178.5,66,0,0,-0.00571344 -141190,1617:469:1,179,66,0,0,-0.00571472 -141191,1617:469:2,179.5,66,0,0,-0.00571344 -141192,1618:360:1,180,66,0,0,-0.00570709 -141193,7618:360:3,-180,66.5,0,0,-0.00571472 -141194,7617:469:4,-179.5,66.5,0,0,-0.00571216 -141195,7617:469:3,-179,66.5,0,0,-0.00570837 -141196,7617:468:4,-178.5,66.5,0,0,-0.00570581 -141197,7617:468:3,-178,66.5,0,0,-0.00570202 -141198,7617:467:4,-177.5,66.5,0,0,-0.00569696 -141199,7617:467:3,-177,66.5,0,0,-0.00569318 -141200,7617:466:4,-176.5,66.5,0,0,-0.0056919 -141201,7617:466:3,-176,66.5,0,0,-0.00569318 -141202,7617:465:4,-175.5,66.5,0,0,-0.00569696 -141203,7617:465:3,-175,66.5,0,0,-0.00569951 -141204,7617:364:4,-174.5,66.5,0,0,-0.00570837 -141205,7617:364:3,-174,66.5,0,0,-0.00572616 -141206,7617:363:4,-173.5,66.5,0,0,-0.00573506 -141207,7617:363:3,-173,66.5,0,0,-0.00574144 -141208,7617:362:4,-172.5,66.5,0,0,-0.00574655 -141209,7617:362:3,-172,66.5,0,0,-0.00574526 -141210,7617:361:4,-171.5,66.5,0,0,-0.00573888 -141211,7617:361:3,-171,66.5,0,0,-0.00574398 -141212,7617:360:4,-170.5,66.5,0,0,-0.00575037 -141213,7617:360:3,-170,66.5,0,0,-0.00575677 -141214,7616:469:4,-169.5,66.5,0,0,-0.00575677 -141215,7616:469:3,-169,66.5,0,0,-0.00576446 -141216,7616:468:4,-168.5,66.5,0,0,-0.00577088 -141217,7616:468:3,-168,66.5,0,0,-0.00577601 -141218,7616:467:4,-167.5,66.5,0,0,-0.00578369 -141219,7616:467:3,-167,66.5,0,0,-0.00578883 -141220,7616:466:4,-166.5,66.5,0,0,-0.00578243 -141221,7616:466:3,-166,66.5,0,0,-0.00577855 -141222,7616:465:4,-165.5,66.5,0,0,-0.00577855 -141223,7616:465:3,-165,66.5,0,0,-0.00578243 -141224,7616:364:4,-164.5,66.5,0,0,-0.00578883 -141225,7616:364:3,-164,66.5,0,0,-0.00579657 -141226,7616:363:4,-163.5,66.5,0,0,-0.00580558 -141227,7616:363:3,-163,66.5,0,0,-0.00581334 -141228,7616:362:4,-162.5,66.5,0,0,-0.0058159 -141229,7616:362:3,-162,66.5,0,0,-0.00581204 -141230,7616:361:4,-161.5,66.5,0,0,-0.00580172 -141231,7616:361:3,-161,66.5,0,0,-0.00578498 -141232,7616:360:4,-160.5,66.5,0,0,-0.005767 -141233,7616:360:3,-160,66.5,0,0,-0.00575165 -141234,7615:469:4,-159.5,66.5,0,0,-0.00574016 -141235,7615:469:3,-159,66.5,0,0,-0.00572869 -141236,7615:468:4,-158.5,66.5,0,0,-0.0057198 -141237,7615:468:3,-158,66.5,0,0,-0.00571216 -141238,7615:467:4,-157.5,66.5,0,0,-0.00570581 -141239,7615:467:3,-157,66.5,0,0,-0.00570202 -141240,7615:466:4,-156.5,66.5,0,0,-0.00569951 -141241,7615:466:3,-156,66.5,0,0,-0.00569696 -141242,7615:465:4,-155.5,66.5,0,0,-0.00569569 -141243,7615:465:3,-155,66.5,0,0,-0.00569063 -141244,7615:364:4,-154.5,66.5,0,0,-0.00568812 -141245,7615:364:3,-154,66.5,0,0,-0.00569569 -141246,7615:363:4,-153.5,66.5,0,0,-0.00569569 -141247,7615:363:3,-153,66.5,0,0,-0.00571852 -141248,7615:362:4,-152.5,66.5,0,0,-0.00574016 -141249,7615:362:3,-152,66.5,0,0,-0.00574912 -141250,7615:361:4,-151.5,66.5,0,0,-0.00574912 -141251,7615:361:3,-151,66.5,0,0,-0.00576575 -141252,7615:360:4,-150.5,66.5,0,0,-0.00579787 -141253,7615:360:3,-150,66.5,0,0,-0.00574783 -141254,7607:362:3,-72,66.5,0,0,-0.00593472 -141255,7607:361:4,-71.5,66.5,0,0,-0.00596252 -141256,7607:361:3,-71,66.5,0,0,-0.00589005 -141257,7607:360:4,-70.5,66.5,0,0,-0.00585222 -141258,7607:360:3,-70,66.5,0,0,-0.00586916 -141259,7606:469:4,-69.5,66.5,0,0,-0.00590577 -141260,7606:469:3,-69,66.5,0,0,-0.00590449 -141261,7606:468:4,-68.5,66.5,0,0,-0.00594794 -141262,7606:468:3,-68,66.5,0,0,-0.0059506 -141263,7606:467:4,-67.5,66.5,0,0,-0.00585091 -141264,7606:465:3,-65,66.5,0,0,-0.00580688 -141265,7606:364:4,-64.5,66.5,0,0,-0.00595985 -141266,7605:465:4,-55.5,66.5,0,0,-0.00575934 -141267,7605:465:3,-55,66.5,0,0,-0.00578369 -141268,7605:364:4,-54.5,66.5,0,0,-0.00575934 -141269,7605:364:3,-54,66.5,0,0,-0.00573888 -141270,7605:363:4,-53.5,66.5,0,0,-0.00571724 -141271,7605:363:3,-53,66.5,0,0,-0.0056919 -141272,7605:362:4,-52.5,66.5,0,0,-0.00566791 -141273,7605:362:3,-52,66.5,0,0,-0.00564532 -141274,7605:361:4,-51.5,66.5,0,0,-0.00565033 -141275,7605:361:3,-51,66.5,0,0,-0.00567045 -141276,7605:360:4,-50.5,66.5,0,0,-0.00565409 -141277,7605:360:3,-50,66.5,0,0,-0.00564781 -141278,7604:469:4,-49.5,66.5,0,0,-0.00564654 -141279,7604:469:3,-49,66.5,0,0,-0.00564532 -141280,7604:468:4,-48.5,66.5,0,0,-0.00564405 -141281,7604:468:3,-48,66.5,0,0,-0.0056403 -141282,7604:467:4,-47.5,66.5,0,0,-0.00563904 -141283,7604:467:3,-47,66.5,0,0,-0.0056818 -141284,7604:466:4,-46.5,66.5,0,0,-0.00573635 -141285,7604:466:3,-46,66.5,0,0,-0.00579142 -141286,7604:465:4,-45.5,66.5,0,0,-0.00579397 -141287,7604:465:3,-45,66.5,0,0,-0.00574398 -141288,7604:364:4,-44.5,66.5,0,0,-0.00575037 -141289,7604:364:3,-44,66.5,0,0,-0.00578883 -141290,7604:363:4,-43.5,66.5,0,0,-0.00582111 -141291,7604:363:3,-43,66.5,0,0,-0.00586005 -141292,7602:363:3,-23,66.5,0,0,-0.00582237 -141293,7602:362:4,-22.5,66.5,0,0,-0.00579527 -141294,7602:362:3,-22,66.5,0,0,-0.00572616 -141295,7602:361:4,-21.5,66.5,0,0,-0.00570965 -141296,7602:361:3,-21,66.5,0,0,-0.00567045 -141297,7602:360:4,-20.5,66.5,0,0,-0.00563277 -141298,7602:360:3,-20,66.5,0,0,-0.00562278 -141299,7601:469:4,-19.5,66.5,0,0,-0.00562026 -141300,7601:469:3,-19,66.5,0,0,-0.00561778 -141301,7601:468:4,-18.5,66.5,0,0,-0.00562026 -141302,7601:468:3,-18,66.5,0,0,-0.00562278 -141303,7601:467:4,-17.5,66.5,0,0,-0.00562651 -141304,7601:467:3,-17,66.5,0,0,-0.00563151 -141305,7601:466:4,-16.5,66.5,0,0,-0.00566165 -141306,7601:466:3,-16,66.5,0,0,-0.00579916 -141307,7601:465:4,-15.5,66.5,0,0,-0.0061237 -141308,7601:465:3,-15,66.5,0,0,-0.0100845 -141309,7601:364:4,-14.5,66.5,0,0,-0.0168339 -141310,7601:364:3,-14,66.5,0,0,-0.0164896 -141311,7601:363:4,-13.5,66.5,0,0,-0.0162288 -141312,7601:363:3,-13,66.5,0,0,-0.0156879 -141313,7601:362:4,-12.5,66.5,0,0,-0.0140242 -141314,7601:362:3,-12,66.5,0,0,-0.0143003 -141315,7601:361:4,-11.5,66.5,0,0,-0.0166384 -141316,7601:361:3,-11,66.5,0,0,-0.0166721 -141317,7601:360:4,-10.5,66.5,0,0,-0.0200228 -141318,7601:360:3,-10,66.5,0,0,-0.0232655 -141319,7600:469:4,-9.5,66.5,0,0,-0.0235513 -141320,7600:469:3,-9,66.5,0,0,-0.0238678 -141321,7600:468:4,-8.5,66.5,0,0,-0.0256495 -141322,7600:468:3,-8,66.5,0,0,-0.0275429 -141323,7600:467:4,-7.5,66.5,0,0,-0.0270719 -141324,7600:467:3,-7,66.5,0,0,-0.0270965 -141325,7600:466:4,-6.5,66.5,0,0,-0.0289085 -141326,7600:466:3,-6,66.5,0,0,-0.0295127 -141327,7600:465:4,-5.5,66.5,0,0,-0.0261307 -141328,7600:465:3,-5,66.5,0,0,-0.0261011 -141329,7600:364:4,-4.5,66.5,0,0,-0.0243532 -141330,7600:364:3,-4,66.5,0,0,-0.0187905 -141331,7600:363:4,-3.5,66.5,0,0,-0.0156318 -141332,7600:363:3,-3,66.5,0,0,-0.0133529 -141333,7600:362:4,-2.5,66.5,0,0,-0.0132102 -141334,7600:362:3,-2,66.5,0,0,-0.0125054 -141335,7600:361:4,-1.5,66.5,0,0,-0.0130544 -141336,7600:361:3,-1,66.5,0,0,-0.0177949 -141337,7600:360:4,-0.5,66.5,0,0,-0.0175959 -141338,1600:360:4,0,66.5,0,0,-0.0201132 -141339,1600:360:4,0.5,66.5,0,0,-0.0222123 -141340,1600:361:3,1,66.5,0,0,-0.0226123 -141341,1600:361:4,1.5,66.5,0,0,-0.0215699 -141342,1600:362:3,2,66.5,0,0,-0.0221573 -141343,1600:362:4,2.5,66.5,0,0,-0.024759 -141344,1600:363:3,3,66.5,0,0,-0.0297623 -141345,1600:363:4,3.5,66.5,0,0,-0.0301509 -141346,1600:364:3,4,66.5,0,0,-0.0288232 -141347,1600:364:4,4.5,66.5,0,0,-0.0273374 -141348,1600:465:3,5,66.5,0,0,-0.0279271 -141349,1600:465:4,5.5,66.5,0,0,-0.0283747 -141350,1600:466:3,6,66.5,0,0,-0.0307751 -141351,1600:466:4,6.5,66.5,0,0,-0.0295062 -141352,1600:467:3,7,66.5,0,0,-0.0265729 -141353,1600:467:4,7.5,66.5,0,0,-0.0284326 -141354,1600:468:3,8,66.5,0,0,-0.0298029 -141355,1600:468:4,8.5,66.5,0,0,-0.0303919 -141356,1600:469:3,9,66.5,0,0,-0.0301302 -141357,1600:469:4,9.5,66.5,0,0,-0.0264586 -141358,1601:360:3,10,66.5,0,0,-0.0226226 -141359,1601:360:4,10.5,66.5,0,0,-0.0204056 -141360,1601:361:3,11,66.5,0,0,-0.0201132 -141361,1601:361:4,11.5,66.5,0,0,-0.0201405 -141362,1601:362:3,12,66.5,0,0,-0.0211029 -141363,1601:362:4,12.5,66.5,0,0,-0.0214776 -141364,1601:363:3,13,66.5,0,0,-0.021687 -141365,1601:363:4,13.5,66.5,0,0,-0.0207488 -141366,1601:364:3,14,66.5,0,0,-0.0195414 -141367,1601:364:4,14.5,66.5,0,0,-0.0188584 -141368,1601:465:3,15,66.5,0,0,-0.0195063 -141369,1601:465:4,15.5,66.5,0,0,-0.0222676 -141370,1601:466:3,16,66.5,0,0,-0.0230874 -141371,1601:466:4,16.5,66.5,0,0,-0.0207255 -141372,1601:467:3,17,66.5,0,0,-0.0187188 -141373,1601:467:4,17.5,66.5,0,0,-0.0158294 -141374,1601:468:3,18,66.5,0,0,-0.0146112 -141375,1601:468:4,18.5,66.5,0,0,-0.0132397 -141376,1601:469:3,19,66.5,0,0,-0.0115124 -141377,1601:469:4,19.5,66.5,0,0,-0.00925454 -141378,1602:360:3,20,66.5,0,0,-0.00778855 -141379,1614:363:3,143,66.5,0,0,-0.00609923 -141380,1614:363:4,143.5,66.5,0,0,-0.00612502 -141381,1614:364:3,144,66.5,0,0,-0.00616329 -141382,1614:364:4,144.5,66.5,0,0,-0.00634682 -141383,1614:465:3,145,66.5,0,0,-0.00645931 -141384,1614:465:4,145.5,66.5,0,0,-0.00645642 -141385,1614:466:3,146,66.5,0,0,-0.0064192 -141386,1614:466:4,146.5,66.5,0,0,-0.00639641 -141387,1614:467:3,147,66.5,0,0,-0.00636097 -141388,1614:467:4,147.5,66.5,0,0,-0.0062544 -141389,1614:468:3,148,66.5,0,0,-0.00618801 -141390,1614:468:4,148.5,66.5,0,0,-0.00618662 -141391,1614:469:3,149,66.5,0,0,-0.00618524 -141392,1614:469:4,149.5,66.5,0,0,-0.00616191 -141393,1615:360:3,150,66.5,0,0,-0.00610192 -141394,1615:360:4,150.5,66.5,0,0,-0.00604794 -141395,1615:361:3,151,66.5,0,0,-0.00599838 -141396,1615:361:4,151.5,66.5,0,0,-0.00598241 -141397,1615:362:3,152,66.5,0,0,-0.00597045 -141398,1615:362:4,152.5,66.5,0,0,-0.0060104 -141399,1615:363:3,153,66.5,0,0,-0.00612502 -141400,1615:363:4,153.5,66.5,0,0,-0.00619074 -141401,1615:364:3,154,66.5,0,0,-0.0062004 -141402,1615:364:4,154.5,66.5,0,0,-0.00617974 -141403,1615:465:3,155,66.5,0,0,-0.00614413 -141404,1615:465:4,155.5,66.5,0,0,-0.00610192 -141405,1615:466:3,156,66.5,0,0,-0.00605332 -141406,1615:466:4,156.5,66.5,0,0,-0.00599704 -141407,1615:467:3,157,66.5,0,0,-0.00594 -141408,1615:467:4,157.5,66.5,0,0,-0.00589401 -141409,1615:468:3,158,66.5,0,0,-0.00585611 -141410,1615:468:4,158.5,66.5,0,0,-0.00582111 -141411,1615:469:3,159,66.5,0,0,-0.00578883 -141412,1615:469:4,159.5,66.5,0,0,-0.00576317 -141413,1616:360:3,160,66.5,0,0,-0.00574273 -141414,1616:360:4,160.5,66.5,0,0,-0.0057236 -141415,1616:361:3,161,66.5,0,0,-0.00570581 -141416,1616:361:4,161.5,66.5,0,0,-0.00568936 -141417,1616:362:3,162,66.5,0,0,-0.00567803 -141418,1616:362:4,162.5,66.5,0,0,-0.00566791 -141419,1616:363:3,163,66.5,0,0,-0.00566165 -141420,1616:363:4,163.5,66.5,0,0,-0.00565911 -141421,1616:364:3,164,66.5,0,0,-0.00565535 -141422,1616:364:4,164.5,66.5,0,0,-0.00565033 -141423,1616:465:3,165,66.5,0,0,-0.00564405 -141424,1616:465:4,165.5,66.5,0,0,-0.0056403 -141425,1616:466:3,166,66.5,0,0,-0.00563904 -141426,1616:466:4,166.5,66.5,0,0,-0.00564654 -141427,1616:467:3,167,66.5,0,0,-0.00565911 -141428,1616:467:4,167.5,66.5,0,0,-0.00566668 -141429,1616:468:3,168,66.5,0,0,-0.00566918 -141430,1616:468:4,168.5,66.5,0,0,-0.00567171 -141431,1616:469:3,169,66.5,0,0,-0.00567421 -141432,1616:469:4,169.5,66.5,0,0,-0.00567548 -141433,1617:360:3,170,66.5,0,0,-0.00567803 -141434,1617:360:4,170.5,66.5,0,0,-0.00568053 -141435,1617:361:3,171,66.5,0,0,-0.00568685 -141436,1617:361:4,171.5,66.5,0,0,-0.0056919 -141437,1617:362:3,172,66.5,0,0,-0.00569951 -141438,1617:362:4,172.5,66.5,0,0,-0.0057033 -141439,1617:363:3,173,66.5,0,0,-0.00570709 -141440,1617:363:4,173.5,66.5,0,0,-0.00571092 -141441,1617:364:3,174,66.5,0,0,-0.00571092 -141442,1617:364:4,174.5,66.5,0,0,-0.00571092 -141443,1617:465:3,175,66.5,0,0,-0.00570837 -141444,1617:465:4,175.5,66.5,0,0,-0.00570709 -141445,1617:466:3,176,66.5,0,0,-0.00570709 -141446,1617:466:4,176.5,66.5,0,0,-0.00570709 -141447,1617:467:3,177,66.5,0,0,-0.00570837 -141448,1617:467:4,177.5,66.5,0,0,-0.00570837 -141449,1617:468:3,178,66.5,0,0,-0.00570965 -141450,1617:468:4,178.5,66.5,0,0,-0.00571344 -141451,1617:469:3,179,66.5,0,0,-0.005716 -141452,1617:469:4,179.5,66.5,0,0,-0.00571724 -141453,1618:360:3,180,66.5,0,0,-0.00571472 -141454,7618:370:1,-180,67,0,0,-0.00571724 -141455,7617:479:2,-179.5,67,0,0,-0.00571724 -141456,7617:479:1,-179,67,0,0,-0.005716 -141457,7617:478:2,-178.5,67,0,0,-0.00571344 -141458,7617:478:1,-178,67,0,0,-0.00570965 -141459,7617:477:2,-177.5,67,0,0,-0.00570458 -141460,7617:477:1,-177,67,0,0,-0.00570075 -141461,7617:476:2,-176.5,67,0,0,-0.00570075 -141462,7617:476:1,-176,67,0,0,-0.00570202 -141463,7617:475:2,-175.5,67,0,0,-0.00570458 -141464,7617:475:1,-175,67,0,0,-0.00569951 -141465,7617:374:2,-174.5,67,0,0,-0.00570709 -141466,7617:374:1,-174,67,0,0,-0.00572616 -141467,7617:373:2,-173.5,67,0,0,-0.00573888 -141468,7617:373:1,-173,67,0,0,-0.00574655 -141469,7617:372:2,-172.5,67,0,0,-0.00575037 -141470,7617:372:1,-172,67,0,0,-0.00574912 -141471,7617:371:2,-171.5,67,0,0,-0.00574912 -141472,7617:371:1,-171,67,0,0,-0.00575037 -141473,7617:370:2,-170.5,67,0,0,-0.00575806 -141474,7617:370:1,-170,67,0,0,-0.00576446 -141475,7616:479:2,-169.5,67,0,0,-0.00576317 -141476,7616:479:1,-169,67,0,0,-0.00576575 -141477,7616:478:2,-168.5,67,0,0,-0.00576317 -141478,7616:478:1,-168,67,0,0,-0.00576446 -141479,7616:477:2,-167.5,67,0,0,-0.00576575 -141480,7616:477:1,-167,67,0,0,-0.00576575 -141481,7616:476:2,-166.5,67,0,0,-0.00576317 -141482,7616:476:1,-166,67,0,0,-0.00576188 -141483,7616:475:2,-165.5,67,0,0,-0.00576059 -141484,7616:475:1,-165,67,0,0,-0.00576317 -141485,7616:374:2,-164.5,67,0,0,-0.00576829 -141486,7616:374:1,-164,67,0,0,-0.00577855 -141487,7616:373:2,-163.5,67,0,0,-0.00579012 -141488,7616:373:1,-163,67,0,0,-0.00580042 -141489,7616:372:2,-162.5,67,0,0,-0.00580948 -141490,7616:372:1,-162,67,0,0,-0.00581074 -141491,7616:371:2,-161.5,67,0,0,-0.00580432 -141492,7616:371:1,-161,67,0,0,-0.00579142 -141493,7616:370:2,-160.5,67,0,0,-0.00577342 -141494,7616:370:1,-160,67,0,0,-0.00575806 -141495,7615:479:2,-159.5,67,0,0,-0.00574273 -141496,7615:479:1,-159,67,0,0,-0.00573125 -141497,7615:478:2,-158.5,67,0,0,-0.00572108 -141498,7615:478:1,-158,67,0,0,-0.00571344 -141499,7615:477:2,-157.5,67,0,0,-0.00570965 -141500,7615:477:1,-157,67,0,0,-0.00570581 -141501,7615:476:2,-156.5,67,0,0,-0.00570202 -141502,7615:476:1,-156,67,0,0,-0.00569824 -141503,7615:475:2,-155.5,67,0,0,-0.00569569 -141504,7615:475:1,-155,67,0,0,-0.00569569 -141505,7615:374:2,-154.5,67,0,0,-0.00569824 -141506,7615:374:1,-154,67,0,0,-0.00569445 -141507,7615:373:2,-153.5,67,0,0,-0.00569824 -141508,7615:373:1,-153,67,0,0,-0.0056919 -141509,7615:372:2,-152.5,67,0,0,-0.00571092 -141510,7615:372:1,-152,67,0,0,-0.00572997 -141511,7615:371:2,-151.5,67,0,0,-0.00573635 -141512,7615:371:1,-151,67,0,0,-0.00572997 -141513,7615:370:2,-150.5,67,0,0,-0.00570965 -141514,7615:370:1,-150,67,0,0,-0.00565911 -141515,7614:478:2,-148.5,67,0,0,-0.00578114 -141516,7607:371:2,-71.5,67,0,0,-0.00585874 -141517,7607:370:2,-70.5,67,0,0,-0.00583665 -141518,7607:370:1,-70,67,0,0,-0.00584183 -141519,7606:479:2,-69.5,67,0,0,-0.00587569 -141520,7606:479:1,-69,67,0,0,-0.00586394 -141521,7606:478:2,-68.5,67,0,0,-0.00587047 -141522,7606:478:1,-68,67,0,0,-0.00590709 -141523,7606:477:2,-67.5,67,0,0,-0.00595456 -141524,7606:475:1,-65,67,0,0,-0.0059506 -141525,7605:475:2,-55.5,67,0,0,-0.00581074 -141526,7605:475:1,-55,67,0,0,-0.00578369 -141527,7605:374:2,-54.5,67,0,0,-0.00576575 -141528,7605:374:1,-54,67,0,0,-0.00575423 -141529,7605:373:2,-53.5,67,0,0,-0.00574398 -141530,7605:373:1,-53,67,0,0,-0.00572108 -141531,7605:372:2,-52.5,67,0,0,-0.00569445 -141532,7605:372:1,-52,67,0,0,-0.00565409 -141533,7605:371:2,-51.5,67,0,0,-0.00564532 -141534,7605:371:1,-51,67,0,0,-0.00565282 -141535,7605:370:2,-50.5,67,0,0,-0.00564532 -141536,7605:370:1,-50,67,0,0,-0.00564279 -141537,7604:479:2,-49.5,67,0,0,-0.00564532 -141538,7604:479:1,-49,67,0,0,-0.0056403 -141539,7604:478:2,-48.5,67,0,0,-0.00563404 -141540,7604:478:1,-48,67,0,0,-0.00562526 -141541,7604:477:2,-47.5,67,0,0,-0.00563904 -141542,7604:477:1,-47,67,0,0,-0.00570837 -141543,7604:476:2,-46.5,67,0,0,-0.00575677 -141544,7604:476:1,-46,67,0,0,-0.00579527 -141545,7604:475:2,-45.5,67,0,0,-0.00579397 -141546,7604:475:1,-45,67,0,0,-0.00577471 -141547,7604:374:2,-44.5,67,0,0,-0.00579527 -141548,7604:374:1,-44,67,0,0,-0.00583146 -141549,7604:373:2,-43.5,67,0,0,-0.00586263 -141550,7604:373:1,-43,67,0,0,-0.00566038 -141551,7602:373:1,-23,67,0,0,-0.00583403 -141552,7602:372:2,-22.5,67,0,0,-0.00578757 -141553,7602:371:2,-21.5,67,0,0,-0.00573888 -141554,7602:371:1,-21,67,0,0,-0.00568558 -141555,7602:370:2,-20.5,67,0,0,-0.00564279 -141556,7602:370:1,-20,67,0,0,-0.00563526 -141557,7601:479:2,-19.5,67,0,0,-0.00563025 -141558,7601:479:1,-19,67,0,0,-0.00562651 -141559,7601:478:2,-18.5,67,0,0,-0.00562777 -141560,7601:478:1,-18,67,0,0,-0.00562903 -141561,7601:477:2,-17.5,67,0,0,-0.00562903 -141562,7601:477:1,-17,67,0,0,-0.00562526 -141563,7601:476:2,-16.5,67,0,0,-0.00565911 -141564,7601:476:1,-16,67,0,0,-0.00583922 -141565,7601:475:2,-15.5,67,0,0,-0.00628085 -141566,7601:475:1,-15,67,0,0,-0.0116757 -141567,7601:374:2,-14.5,67,0,0,-0.0175406 -141568,7601:374:1,-14,67,0,0,-0.0165008 -141569,7601:373:2,-13.5,67,0,0,-0.0159793 -141570,7601:373:1,-13,67,0,0,-0.0154538 -141571,7601:372:2,-12.5,67,0,0,-0.0175999 -141572,7601:372:1,-12,67,0,0,-0.020195 -141573,7601:371:2,-11.5,67,0,0,-0.0209275 -141574,7601:371:1,-11,67,0,0,-0.0221923 -141575,7601:370:2,-10.5,67,0,0,-0.0233287 -141576,7601:370:1,-10,67,0,0,-0.0244692 -141577,7600:479:2,-9.5,67,0,0,-0.0245191 -141578,7600:479:1,-9,67,0,0,-0.0254872 -141579,7600:478:2,-8.5,67,0,0,-0.0270167 -141580,7600:478:1,-8,67,0,0,-0.0273187 -141581,7600:477:2,-7.5,67,0,0,-0.0274992 -141582,7600:477:1,-7,67,0,0,-0.0277184 -141583,7600:476:2,-6.5,67,0,0,-0.0276745 -141584,7600:476:1,-6,67,0,0,-0.0257601 -141585,7600:475:2,-5.5,67,0,0,-0.022648 -141586,7600:475:1,-5,67,0,0,-0.0227919 -141587,7600:374:2,-4.5,67,0,0,-0.0216186 -141588,7600:374:1,-4,67,0,0,-0.017329 -141589,7600:373:2,-3.5,67,0,0,-0.0144646 -141590,7600:373:1,-3,67,0,0,-0.0125868 -141591,7600:372:2,-2.5,67,0,0,-0.0105214 -141592,7600:372:1,-2,67,0,0,-0.0103029 -141593,7600:371:2,-1.5,67,0,0,-0.010184 -141594,7600:371:1,-1,67,0,0,-0.0132516 -141595,7600:370:2,-0.5,67,0,0,-0.0171932 -141596,1600:370:2,0,67,0,0,-0.0196341 -141597,1600:370:2,0.5,67,0,0,-0.0213086 -141598,1600:371:1,1,67,0,0,-0.0227352 -141599,1600:371:2,1.5,67,0,0,-0.0239381 -141600,1600:372:1,2,67,0,0,-0.0238138 -141601,1600:372:2,2.5,67,0,0,-0.025522 -141602,1600:373:1,3,67,0,0,-0.0282973 -141603,1600:373:2,3.5,67,0,0,-0.0288166 -141604,1600:374:1,4,67,0,0,-0.0283618 -141605,1600:374:2,4.5,67,0,0,-0.0276055 -141606,1600:475:1,5,67,0,0,-0.0270412 -141607,1600:475:2,5.5,67,0,0,-0.0251091 -141608,1600:476:1,6,67,0,0,-0.0228279 -141609,1600:476:2,6.5,67,0,0,-0.0229055 -141610,1600:477:1,7,67,0,0,-0.0239976 -141611,1600:477:2,7.5,67,0,0,-0.0260538 -141612,1600:478:1,8,67,0,0,-0.0259712 -141613,1600:478:2,8.5,67,0,0,-0.0258361 -141614,1600:479:1,9,67,0,0,-0.0250977 -141615,1600:479:2,9.5,67,0,0,-0.0237868 -141616,1601:370:1,10,67,0,0,-0.022921 -141617,1601:370:2,10.5,67,0,0,-0.0215262 -141618,1601:371:1,11,67,0,0,-0.0200499 -141619,1601:371:2,11.5,67,0,0,-0.0194317 -141620,1601:372:1,12,67,0,0,-0.0192791 -141621,1601:372:2,12.5,67,0,0,-0.0192315 -141622,1601:373:1,13,67,0,0,-0.0192879 -141623,1601:373:2,13.5,67,0,0,-0.019559 -141624,1601:374:1,14,67,0,0,-0.0191062 -141625,1601:374:2,14.5,67,0,0,-0.018597 -141626,1601:475:1,15,67,0,0,-0.0187779 -141627,1601:475:2,15.5,67,0,0,-0.0199283 -141628,1601:476:1,16,67,0,0,-0.0210791 -141629,1601:476:2,16.5,67,0,0,-0.018816 -141630,1601:477:1,17,67,0,0,-0.0168945 -141631,1601:477:2,17.5,67,0,0,-0.0131276 -141632,1601:478:1,18,67,0,0,-0.0117045 -141633,1601:478:2,18.5,67,0,0,-0.0108604 -141634,1601:479:1,19,67,0,0,-0.00965514 -141635,1601:479:2,19.5,67,0,0,-0.00763742 -141636,1614:372:2,142.5,67,0,0,-0.00606408 -141637,1614:373:1,143,67,0,0,-0.0060587 -141638,1614:373:2,143.5,67,0,0,-0.00604794 -141639,1614:374:1,144,67,0,0,-0.00604523 -141640,1614:374:2,144.5,67,0,0,-0.00607351 -141641,1614:475:1,145,67,0,0,-0.00610872 -141642,1614:475:2,145.5,67,0,0,-0.00612914 -141643,1614:476:1,146,67,0,0,-0.00613596 -141644,1614:476:2,146.5,67,0,0,-0.00613051 -141645,1614:477:1,147,67,0,0,-0.00609787 -141646,1614:477:2,147.5,67,0,0,-0.00598107 -141647,1614:478:1,148,67,0,0,-0.00594532 -141648,1614:478:2,148.5,67,0,0,-0.00596649 -141649,1614:479:1,149,67,0,0,-0.00602378 -141650,1614:479:2,149.5,67,0,0,-0.00604257 -141651,1615:370:1,150,67,0,0,-0.00601174 -141652,1615:370:2,150.5,67,0,0,-0.00597974 -141653,1615:371:1,151,67,0,0,-0.00594399 -141654,1615:371:2,151.5,67,0,0,-0.00593078 -141655,1615:372:1,152,67,0,0,-0.00591499 -141656,1615:372:2,152.5,67,0,0,-0.00590577 -141657,1615:373:1,153,67,0,0,-0.00590185 -141658,1615:373:2,153.5,67,0,0,-0.00593871 -141659,1615:374:1,154,67,0,0,-0.00599704 -141660,1615:374:2,154.5,67,0,0,-0.00600506 -141661,1615:475:1,155,67,0,0,-0.00599574 -141662,1615:475:2,155.5,67,0,0,-0.00595985 -141663,1615:476:1,156,67,0,0,-0.00591234 -141664,1615:476:2,156.5,67,0,0,-0.00586526 -141665,1615:477:1,157,67,0,0,-0.00582755 -141666,1615:477:2,157.5,67,0,0,-0.00579787 -141667,1615:478:1,158,67,0,0,-0.00577471 -141668,1615:478:2,158.5,67,0,0,-0.00575165 -141669,1615:479:1,159,67,0,0,-0.00572869 -141670,1615:479:2,159.5,67,0,0,-0.00570965 -141671,1616:370:1,160,67,0,0,-0.00569445 -141672,1616:370:2,160.5,67,0,0,-0.0056818 -141673,1616:371:1,161,67,0,0,-0.00567171 -141674,1616:371:2,161.5,67,0,0,-0.00566038 -141675,1616:372:1,162,67,0,0,-0.00565156 -141676,1616:372:2,162.5,67,0,0,-0.00564781 -141677,1616:373:1,163,67,0,0,-0.00564907 -141678,1616:373:2,163.5,67,0,0,-0.00565033 -141679,1616:374:1,164,67,0,0,-0.00564781 -141680,1616:374:2,164.5,67,0,0,-0.00564279 -141681,1616:475:1,165,67,0,0,-0.00563778 -141682,1616:475:2,165.5,67,0,0,-0.00563652 -141683,1616:476:1,166,67,0,0,-0.00563904 -141684,1616:476:2,166.5,67,0,0,-0.00565156 -141685,1616:477:1,167,67,0,0,-0.00566414 -141686,1616:477:2,167.5,67,0,0,-0.00567171 -141687,1616:478:1,168,67,0,0,-0.00567548 -141688,1616:478:2,168.5,67,0,0,-0.00567926 -141689,1616:479:1,169,67,0,0,-0.00568053 -141690,1616:479:2,169.5,67,0,0,-0.00568053 -141691,1617:370:1,170,67,0,0,-0.00568053 -141692,1617:370:2,170.5,67,0,0,-0.00568307 -141693,1617:371:1,171,67,0,0,-0.00568812 -141694,1617:371:2,171.5,67,0,0,-0.00569318 -141695,1617:372:1,172,67,0,0,-0.00569951 -141696,1617:372:2,172.5,67,0,0,-0.00570458 -141697,1617:373:1,173,67,0,0,-0.00570837 -141698,1617:373:2,173.5,67,0,0,-0.00570837 -141699,1617:374:1,174,67,0,0,-0.00570965 -141700,1617:374:2,174.5,67,0,0,-0.00570709 -141701,1617:475:1,175,67,0,0,-0.00570458 -141702,1617:475:2,175.5,67,0,0,-0.0057033 -141703,1617:476:1,176,67,0,0,-0.0057033 -141704,1617:476:2,176.5,67,0,0,-0.00570458 -141705,1617:477:1,177,67,0,0,-0.00570458 -141706,1617:477:2,177.5,67,0,0,-0.00570581 -141707,1617:478:1,178,67,0,0,-0.00570837 -141708,1617:478:2,178.5,67,0,0,-0.00571216 -141709,1617:479:1,179,67,0,0,-0.00571472 -141710,1617:479:2,179.5,67,0,0,-0.00571724 -141711,1618:370:1,180,67,0,0,-0.00571724 -141712,7618:370:3,-180,67.5,0,0,-0.00571724 -141713,7617:479:4,-179.5,67.5,0,0,-0.00571852 -141714,7617:479:3,-179,67.5,0,0,-0.00571852 -141715,7617:478:4,-178.5,67.5,0,0,-0.00571852 -141716,7617:478:3,-178,67.5,0,0,-0.00571724 -141717,7617:477:4,-177.5,67.5,0,0,-0.00571472 -141718,7617:477:3,-177,67.5,0,0,-0.00571216 -141719,7617:476:4,-176.5,67.5,0,0,-0.00570837 -141720,7617:476:3,-176,67.5,0,0,-0.00570837 -141721,7617:475:4,-175.5,67.5,0,0,-0.00571216 -141722,7617:475:3,-175,67.5,0,0,-0.00571216 -141723,7617:374:4,-174.5,67.5,0,0,-0.00571852 -141724,7617:374:3,-174,67.5,0,0,-0.00573254 -141725,7617:373:4,-173.5,67.5,0,0,-0.00574273 -141726,7617:373:3,-173,67.5,0,0,-0.00575037 -141727,7617:372:4,-172.5,67.5,0,0,-0.00575548 -141728,7617:372:3,-172,67.5,0,0,-0.00575677 -141729,7617:371:4,-171.5,67.5,0,0,-0.00575677 -141730,7617:371:3,-171,67.5,0,0,-0.00575934 -141731,7617:370:4,-170.5,67.5,0,0,-0.00576317 -141732,7617:370:3,-170,67.5,0,0,-0.00576829 -141733,7616:479:4,-169.5,67.5,0,0,-0.00576829 -141734,7616:479:3,-169,67.5,0,0,-0.00576446 -141735,7616:478:4,-168.5,67.5,0,0,-0.00576059 -141736,7616:478:3,-168,67.5,0,0,-0.00575677 -141737,7616:477:4,-167.5,67.5,0,0,-0.00575548 -141738,7616:477:3,-167,67.5,0,0,-0.00575294 -141739,7616:476:4,-166.5,67.5,0,0,-0.00574912 -141740,7616:476:3,-166,67.5,0,0,-0.00574783 -141741,7616:475:4,-165.5,67.5,0,0,-0.00574655 -141742,7616:475:3,-165,67.5,0,0,-0.00574783 -141743,7616:374:4,-164.5,67.5,0,0,-0.00575294 -141744,7616:374:3,-164,67.5,0,0,-0.00576188 -141745,7616:373:4,-163.5,67.5,0,0,-0.00577213 -141746,7616:373:3,-163,67.5,0,0,-0.00578498 -141747,7616:372:4,-162.5,67.5,0,0,-0.00579397 -141748,7616:372:3,-162,67.5,0,0,-0.00579787 -141749,7616:371:4,-161.5,67.5,0,0,-0.00579397 -141750,7616:371:3,-161,67.5,0,0,-0.00578369 -141751,7616:370:4,-160.5,67.5,0,0,-0.00577088 -141752,7616:370:3,-160,67.5,0,0,-0.00575806 -141753,7615:479:4,-159.5,67.5,0,0,-0.00574783 -141754,7615:479:3,-159,67.5,0,0,-0.00573763 -141755,7615:478:4,-158.5,67.5,0,0,-0.00572997 -141756,7615:478:3,-158,67.5,0,0,-0.0057236 -141757,7615:477:4,-157.5,67.5,0,0,-0.00571852 -141758,7615:477:3,-157,67.5,0,0,-0.005716 -141759,7615:476:4,-156.5,67.5,0,0,-0.00571344 -141760,7615:476:3,-156,67.5,0,0,-0.00570837 -141761,7615:475:4,-155.5,67.5,0,0,-0.00570075 -141762,7615:475:3,-155,67.5,0,0,-0.00569569 -141763,7615:374:4,-154.5,67.5,0,0,-0.00569569 -141764,7615:374:3,-154,67.5,0,0,-0.00570075 -141765,7615:373:4,-153.5,67.5,0,0,-0.00569824 -141766,7615:373:3,-153,67.5,0,0,-0.00569824 -141767,7615:372:4,-152.5,67.5,0,0,-0.0056843 -141768,7615:372:3,-152,67.5,0,0,-0.00570458 -141769,7615:371:4,-151.5,67.5,0,0,-0.00572108 -141770,7615:371:3,-151,67.5,0,0,-0.00570709 -141771,7615:370:4,-150.5,67.5,0,0,-0.00566791 -141772,7615:370:3,-150,67.5,0,0,-0.00561653 -141773,7614:479:4,-149.5,67.5,0,0,-0.00556932 -141774,7614:478:4,-148.5,67.5,0,0,-0.0056818 -141775,7614:478:3,-148,67.5,0,0,-0.00573506 -141776,7607:370:3,-70,67.5,0,0,-0.0058159 -141777,7606:479:4,-69.5,67.5,0,0,-0.00584314 -141778,7606:479:3,-69,67.5,0,0,-0.00584572 -141779,7606:478:4,-68.5,67.5,0,0,-0.00584833 -141780,7606:478:3,-68,67.5,0,0,-0.00586784 -141781,7606:477:4,-67.5,67.5,0,0,-0.00589529 -141782,7606:477:3,-67,67.5,0,0,-0.00590842 -141783,7606:476:4,-66.5,67.5,0,0,-0.00592419 -141784,7606:476:3,-66,67.5,0,0,-0.00594532 -141785,7606:475:4,-65.5,67.5,0,0,-0.00596782 -141786,7605:475:4,-55.5,67.5,0,0,-0.00586394 -141787,7605:475:3,-55,67.5,0,0,-0.00573635 -141788,7605:374:4,-54.5,67.5,0,0,-0.00572997 -141789,7605:374:3,-54,67.5,0,0,-0.00573763 -141790,7605:373:4,-53.5,67.5,0,0,-0.00574273 -141791,7605:373:3,-53,67.5,0,0,-0.00572741 -141792,7605:372:4,-52.5,67.5,0,0,-0.00569824 -141793,7605:372:3,-52,67.5,0,0,-0.00565658 -141794,7605:371:4,-51.5,67.5,0,0,-0.00564153 -141795,7605:371:3,-51,67.5,0,0,-0.00563778 -141796,7605:370:4,-50.5,67.5,0,0,-0.00563652 -141797,7605:370:3,-50,67.5,0,0,-0.00562777 -141798,7604:479:4,-49.5,67.5,0,0,-0.00562777 -141799,7604:479:3,-49,67.5,0,0,-0.00562777 -141800,7604:478:4,-48.5,67.5,0,0,-0.00563652 -141801,7604:478:3,-48,67.5,0,0,-0.00565535 -141802,7604:477:4,-47.5,67.5,0,0,-0.00569063 -141803,7604:477:3,-47,67.5,0,0,-0.00573254 -141804,7604:476:4,-46.5,67.5,0,0,-0.00573635 -141805,7604:476:3,-46,67.5,0,0,-0.00574912 -141806,7604:475:4,-45.5,67.5,0,0,-0.00576959 -141807,7604:475:3,-45,67.5,0,0,-0.00579657 -141808,7604:374:4,-44.5,67.5,0,0,-0.00584053 -141809,7604:374:3,-44,67.5,0,0,-0.0058835 -141810,7604:373:4,-43.5,67.5,0,0,-0.00560158 -141811,7602:372:4,-22.5,67.5,0,0,-0.00573506 -141812,7602:372:3,-22,67.5,0,0,-0.00573254 -141813,7602:371:4,-21.5,67.5,0,0,-0.0057198 -141814,7602:371:3,-21,67.5,0,0,-0.00569318 -141815,7602:370:4,-20.5,67.5,0,0,-0.00565535 -141816,7602:370:3,-20,67.5,0,0,-0.00564781 -141817,7601:479:4,-19.5,67.5,0,0,-0.0056403 -141818,7601:479:3,-19,67.5,0,0,-0.00563652 -141819,7601:478:4,-18.5,67.5,0,0,-0.00563526 -141820,7601:478:3,-18,67.5,0,0,-0.00563404 -141821,7601:477:4,-17.5,67.5,0,0,-0.00563151 -141822,7601:477:3,-17,67.5,0,0,-0.00562777 -141823,7601:476:4,-16.5,67.5,0,0,-0.00563025 -141824,7601:476:3,-16,67.5,0,0,-0.00572616 -141825,7601:475:4,-15.5,67.5,0,0,-0.00653591 -141826,7601:475:3,-15,67.5,0,0,-0.011515 -141827,7601:374:4,-14.5,67.5,0,0,-0.01836 -141828,7601:374:3,-14,67.5,0,0,-0.018057 -141829,7601:373:4,-13.5,67.5,0,0,-0.0182859 -141830,7601:373:3,-13,67.5,0,0,-0.0190977 -141831,7601:372:4,-12.5,67.5,0,0,-0.0198521 -141832,7601:372:3,-12,67.5,0,0,-0.0209558 -141833,7601:371:4,-11.5,67.5,0,0,-0.0224545 -141834,7601:371:3,-11,67.5,0,0,-0.0231816 -141835,7601:370:4,-10.5,67.5,0,0,-0.0243092 -141836,7601:370:3,-10,67.5,0,0,-0.0249898 -141837,7600:479:4,-9.5,67.5,0,0,-0.0256786 -141838,7600:479:3,-9,67.5,0,0,-0.0259301 -141839,7600:478:4,-8.5,67.5,0,0,-0.0242981 -141840,7600:478:3,-8,67.5,0,0,-0.0223684 -141841,7600:477:4,-7.5,67.5,0,0,-0.0220774 -141842,7600:477:3,-7,67.5,0,0,-0.0196253 -141843,7600:476:4,-6.5,67.5,0,0,-0.0192055 -141844,7600:476:3,-6,67.5,0,0,-0.0161452 -141845,7600:475:4,-5.5,67.5,0,0,-0.0146507 -141846,7600:475:3,-5,67.5,0,0,-0.0193531 -141847,7600:374:4,-4.5,67.5,0,0,-0.0199103 -141848,7600:374:3,-4,67.5,0,0,-0.018057 -141849,7600:373:4,-3.5,67.5,0,0,-0.0131836 -141850,7600:373:3,-3,67.5,0,0,-0.0102182 -141851,7600:372:4,-2.5,67.5,0,0,-0.0093813 -141852,7600:372:3,-2,67.5,0,0,-0.00919697 -141853,7600:371:4,-1.5,67.5,0,0,-0.00953314 -141854,7600:371:3,-1,67.5,0,0,-0.0124134 -141855,7600:370:4,-0.5,67.5,0,0,-0.0168112 -141856,1600:370:4,0,67.5,0,0,-0.0190419 -141857,1600:370:4,0.5,67.5,0,0,-0.0205301 -141858,1600:371:3,1,67.5,0,0,-0.021604 -141859,1600:371:4,1.5,67.5,0,0,-0.022725 -141860,1600:372:3,2,67.5,0,0,-0.0248207 -141861,1600:372:4,2.5,67.5,0,0,-0.0261722 -141862,1600:373:3,3,67.5,0,0,-0.0269065 -141863,1600:373:4,3.5,67.5,0,0,-0.0258595 -141864,1600:374:3,4,67.5,0,0,-0.0254123 -141865,1600:374:4,4.5,67.5,0,0,-0.026724 -141866,1600:475:3,5,67.5,0,0,-0.0266876 -141867,1600:475:4,5.5,67.5,0,0,-0.0247646 -141868,1600:476:3,6,67.5,0,0,-0.0214195 -141869,1600:476:4,6.5,67.5,0,0,-0.0205301 -141870,1600:477:3,7,67.5,0,0,-0.0212558 -141871,1600:477:4,7.5,67.5,0,0,-0.0227198 -141872,1600:478:3,8,67.5,0,0,-0.0228589 -141873,1600:478:4,8.5,67.5,0,0,-0.0219977 -141874,1600:479:3,9,67.5,0,0,-0.0182325 -141875,1600:479:4,9.5,67.5,0,0,-0.0161234 -141876,1601:370:3,10,67.5,0,0,-0.0171662 -141877,1601:370:4,10.5,67.5,0,0,-0.0177749 -141878,1601:371:3,11,67.5,0,0,-0.0183849 -141879,1601:371:4,11.5,67.5,0,0,-0.0186432 -141880,1601:372:3,12,67.5,0,0,-0.0190547 -141881,1601:372:4,12.5,67.5,0,0,-0.0190847 -141882,1601:373:3,13,67.5,0,0,-0.018935 -141883,1601:373:4,13.5,67.5,0,0,-0.0186348 -141884,1601:374:3,14,67.5,0,0,-0.0184221 -141885,1601:374:4,14.5,67.5,0,0,-0.0184719 -141886,1601:475:3,15,67.5,0,0,-0.0190076 -141887,1601:475:4,15.5,67.5,0,0,-0.020186 -141888,1601:476:3,16,67.5,0,0,-0.0201996 -141889,1601:476:4,16.5,67.5,0,0,-0.0179638 -141890,1601:477:3,17,67.5,0,0,-0.0152986 -141891,1601:477:4,17.5,67.5,0,0,-0.010649 -141892,1601:478:3,18,67.5,0,0,-0.00874121 -141893,1602:371:3,21,67.5,0,0,-0.00585874 -141894,1602:371:4,21.5,67.5,0,0,-0.00615919 -141895,1602:372:3,22,67.5,0,0,-0.00629484 -141896,1602:372:4,22.5,67.5,0,0,-0.00586653 -141897,1614:372:3,142,67.5,0,0,-0.00606005 -141898,1614:372:4,142.5,67.5,0,0,-0.00604257 -141899,1614:373:3,143,67.5,0,0,-0.00601709 -141900,1614:373:4,143.5,67.5,0,0,-0.00599305 -141901,1614:374:3,144,67.5,0,0,-0.00597576 -141902,1614:374:4,144.5,67.5,0,0,-0.00597045 -141903,1614:475:3,145,67.5,0,0,-0.00594661 -141904,1614:475:4,145.5,67.5,0,0,-0.00590842 -141905,1614:476:3,146,67.5,0,0,-0.00589005 -141906,1614:476:4,146.5,67.5,0,0,-0.00586263 -141907,1614:477:3,147,67.5,0,0,-0.00582755 -141908,1614:477:4,147.5,67.5,0,0,-0.00583665 -141909,1614:478:3,148,67.5,0,0,-0.00585484 -141910,1614:478:4,148.5,67.5,0,0,-0.00582368 -141911,1614:479:3,149,67.5,0,0,-0.0058172 -141912,1614:479:4,149.5,67.5,0,0,-0.00582628 -141913,1615:370:3,150,67.5,0,0,-0.00581334 -141914,1615:370:4,150.5,67.5,0,0,-0.00578883 -141915,1615:371:3,151,67.5,0,0,-0.00577601 -141916,1615:371:4,151.5,67.5,0,0,-0.00578114 -141917,1615:372:3,152,67.5,0,0,-0.00579397 -141918,1615:372:4,152.5,67.5,0,0,-0.0058159 -141919,1615:373:3,153,67.5,0,0,-0.00583016 -141920,1615:373:4,153.5,67.5,0,0,-0.00583146 -141921,1615:374:3,154,67.5,0,0,-0.00582498 -141922,1615:374:4,154.5,67.5,0,0,-0.0058159 -141923,1615:475:3,155,67.5,0,0,-0.00580818 -141924,1615:475:4,155.5,67.5,0,0,-0.00579916 -141925,1615:476:3,156,67.5,0,0,-0.00578498 -141926,1615:476:4,156.5,67.5,0,0,-0.00577088 -141927,1615:477:3,157,67.5,0,0,-0.00575677 -141928,1615:477:4,157.5,67.5,0,0,-0.00574144 -141929,1615:478:3,158,67.5,0,0,-0.00572741 -141930,1615:478:4,158.5,67.5,0,0,-0.00571092 -141931,1615:479:3,159,67.5,0,0,-0.00569569 -141932,1615:479:4,159.5,67.5,0,0,-0.00568307 -141933,1616:370:3,160,67.5,0,0,-0.00566918 -141934,1616:370:4,160.5,67.5,0,0,-0.00565785 -141935,1616:371:3,161,67.5,0,0,-0.00564654 -141936,1616:371:4,161.5,67.5,0,0,-0.00563526 -141937,1616:372:3,162,67.5,0,0,-0.00563151 -141938,1616:372:4,162.5,67.5,0,0,-0.00563404 -141939,1616:373:3,163,67.5,0,0,-0.00563778 -141940,1616:373:4,163.5,67.5,0,0,-0.0056403 -141941,1616:374:3,164,67.5,0,0,-0.0056403 -141942,1616:374:4,164.5,67.5,0,0,-0.00563652 -141943,1616:475:3,165,67.5,0,0,-0.00563277 -141944,1616:475:4,165.5,67.5,0,0,-0.00563277 -141945,1616:476:3,166,67.5,0,0,-0.00563778 -141946,1616:476:4,166.5,67.5,0,0,-0.00565033 -141947,1616:477:3,167,67.5,0,0,-0.00566414 -141948,1616:477:4,167.5,67.5,0,0,-0.00567294 -141949,1616:478:3,168,67.5,0,0,-0.00567926 -141950,1616:478:4,168.5,67.5,0,0,-0.00568307 -141951,1616:479:3,169,67.5,0,0,-0.0056843 -141952,1616:479:4,169.5,67.5,0,0,-0.00568307 -141953,1617:370:3,170,67.5,0,0,-0.0056843 -141954,1617:370:4,170.5,67.5,0,0,-0.00568685 -141955,1617:371:3,171,67.5,0,0,-0.00569318 -141956,1617:371:4,171.5,67.5,0,0,-0.00569951 -141957,1617:372:3,172,67.5,0,0,-0.00570202 -141958,1617:372:4,172.5,67.5,0,0,-0.00570581 -141959,1617:373:3,173,67.5,0,0,-0.00570709 -141960,1617:373:4,173.5,67.5,0,0,-0.00570709 -141961,1617:374:3,174,67.5,0,0,-0.00570581 -141962,1617:374:4,174.5,67.5,0,0,-0.00570458 -141963,1617:475:3,175,67.5,0,0,-0.0057033 -141964,1617:475:4,175.5,67.5,0,0,-0.0057033 -141965,1617:476:3,176,67.5,0,0,-0.00570202 -141966,1617:476:4,176.5,67.5,0,0,-0.0057033 -141967,1617:477:3,177,67.5,0,0,-0.0057033 -141968,1617:477:4,177.5,67.5,0,0,-0.00570458 -141969,1617:478:3,178,67.5,0,0,-0.00570709 -141970,1617:478:4,178.5,67.5,0,0,-0.00571092 -141971,1617:479:3,179,67.5,0,0,-0.00571344 -141972,1617:479:4,179.5,67.5,0,0,-0.005716 -141973,1618:370:3,180,67.5,0,0,-0.00571724 -141974,7618:380:1,-180,68,0,0,-0.00571724 -141975,7617:489:2,-179.5,68,0,0,-0.00571852 -141976,7617:489:1,-179,68,0,0,-0.0057198 -141977,7617:488:2,-178.5,68,0,0,-0.00572108 -141978,7617:488:1,-178,68,0,0,-0.00572108 -141979,7617:487:2,-177.5,68,0,0,-0.00572232 -141980,7617:487:1,-177,68,0,0,-0.00572108 -141981,7617:486:2,-176.5,68,0,0,-0.0057198 -141982,7617:486:1,-176,68,0,0,-0.005716 -141983,7617:485:2,-175.5,68,0,0,-0.005716 -141984,7617:485:1,-175,68,0,0,-0.00571852 -141985,7617:384:2,-174.5,68,0,0,-0.00572741 -141986,7617:384:1,-174,68,0,0,-0.00574016 -141987,7617:383:2,-173.5,68,0,0,-0.00575165 -141988,7617:383:1,-173,68,0,0,-0.00576059 -141989,7617:382:2,-172.5,68,0,0,-0.00576446 -141990,7617:382:1,-172,68,0,0,-0.00576317 -141991,7617:381:2,-171.5,68,0,0,-0.00576446 -141992,7617:381:1,-171,68,0,0,-0.00576829 -141993,7617:380:2,-170.5,68,0,0,-0.00577213 -141994,7617:380:1,-170,68,0,0,-0.00577342 -141995,7616:489:2,-169.5,68,0,0,-0.00577088 -141996,7616:489:1,-169,68,0,0,-0.005767 -141997,7616:488:2,-168.5,68,0,0,-0.00575806 -141998,7616:488:1,-168,68,0,0,-0.00574912 -141999,7616:487:2,-167.5,68,0,0,-0.00574655 -142000,7616:487:1,-167,68,0,0,-0.00574526 -142001,7616:486:2,-166.5,68,0,0,-0.00574273 -142002,7616:486:1,-166,68,0,0,-0.00574273 -142003,7616:485:2,-165.5,68,0,0,-0.00574144 -142004,7616:485:1,-165,68,0,0,-0.00574144 -142005,7616:384:2,-164.5,68,0,0,-0.00574398 -142006,7616:384:1,-164,68,0,0,-0.00574783 -142007,7616:383:2,-163.5,68,0,0,-0.00575423 -142008,7616:383:1,-163,68,0,0,-0.00576188 -142009,7616:382:2,-162.5,68,0,0,-0.00576959 -142010,7616:382:1,-162,68,0,0,-0.00577088 -142011,7616:381:2,-161.5,68,0,0,-0.005767 -142012,7616:381:1,-161,68,0,0,-0.00576188 -142013,7616:380:2,-160.5,68,0,0,-0.00575677 -142014,7616:380:1,-160,68,0,0,-0.00575165 -142015,7615:489:2,-159.5,68,0,0,-0.00574655 -142016,7615:489:1,-159,68,0,0,-0.00574273 -142017,7615:488:2,-158.5,68,0,0,-0.00573763 -142018,7615:488:1,-158,68,0,0,-0.00573378 -142019,7615:487:2,-157.5,68,0,0,-0.00573254 -142020,7615:487:1,-157,68,0,0,-0.00573254 -142021,7615:486:2,-156.5,68,0,0,-0.00573125 -142022,7615:486:1,-156,68,0,0,-0.00572741 -142023,7615:485:2,-155.5,68,0,0,-0.00571724 -142024,7615:485:1,-155,68,0,0,-0.00570458 -142025,7615:384:2,-154.5,68,0,0,-0.00569445 -142026,7615:384:1,-154,68,0,0,-0.00569318 -142027,7615:383:2,-153.5,68,0,0,-0.00570202 -142028,7615:383:1,-153,68,0,0,-0.00570581 -142029,7615:382:2,-152.5,68,0,0,-0.00569824 -142030,7615:382:1,-152,68,0,0,-0.0056818 -142031,7615:381:2,-151.5,68,0,0,-0.00569696 -142032,7615:381:1,-151,68,0,0,-0.00569445 -142033,7615:380:2,-150.5,68,0,0,-0.00565911 -142034,7615:380:1,-150,68,0,0,-0.00561778 -142035,7614:489:2,-149.5,68,0,0,-0.00558664 -142036,7614:489:1,-149,68,0,0,-0.00556064 -142037,7614:488:2,-148.5,68,0,0,-0.00561527 -142038,7606:489:2,-69.5,68,0,0,-0.00583273 -142039,7606:489:1,-69,68,0,0,-0.00583016 -142040,7606:488:2,-68.5,68,0,0,-0.00583273 -142041,7606:488:1,-68,68,0,0,-0.00584703 -142042,7606:487:2,-67.5,68,0,0,-0.00586916 -142043,7606:487:1,-67,68,0,0,-0.00588745 -142044,7606:486:2,-66.5,68,0,0,-0.00590317 -142045,7606:486:1,-66,68,0,0,-0.00590709 -142046,7605:487:2,-57.5,68,0,0,-0.00579272 -142047,7605:487:1,-57,68,0,0,-0.00580432 -142048,7605:486:2,-56.5,68,0,0,-0.00582885 -142049,7605:384:2,-54.5,68,0,0,-0.00574144 -142050,7605:384:1,-54,68,0,0,-0.00572232 -142051,7605:383:2,-53.5,68,0,0,-0.0057236 -142052,7605:383:1,-53,68,0,0,-0.00571216 -142053,7605:382:2,-52.5,68,0,0,-0.0056843 -142054,7605:382:1,-52,68,0,0,-0.00564405 -142055,7605:381:2,-51.5,68,0,0,-0.00563652 -142056,7605:381:1,-51,68,0,0,-0.00562903 -142057,7605:380:2,-50.5,68,0,0,-0.00562526 -142058,7605:380:1,-50,68,0,0,-0.00562278 -142059,7604:489:2,-49.5,68,0,0,-0.00563277 -142060,7604:489:1,-49,68,0,0,-0.00564532 -142061,7604:488:2,-48.5,68,0,0,-0.00566165 -142062,7604:488:1,-48,68,0,0,-0.00568812 -142063,7604:487:2,-47.5,68,0,0,-0.00571344 -142064,7604:487:1,-47,68,0,0,-0.00571092 -142065,7604:486:2,-46.5,68,0,0,-0.005767 -142066,7604:486:1,-46,68,0,0,-0.00583273 -142067,7604:485:2,-45.5,68,0,0,-0.00587178 -142068,7604:485:1,-45,68,0,0,-0.0058496 -142069,7604:384:2,-44.5,68,0,0,-0.00595589 -142070,7602:382:2,-22.5,68,0,0,-0.00568812 -142071,7602:382:1,-22,68,0,0,-0.00570581 -142072,7602:381:2,-21.5,68,0,0,-0.00571724 -142073,7602:381:1,-21,68,0,0,-0.00569951 -142074,7602:380:2,-20.5,68,0,0,-0.00567421 -142075,7602:380:1,-20,68,0,0,-0.00566038 -142076,7601:489:2,-19.5,68,0,0,-0.00564405 -142077,7601:489:1,-19,68,0,0,-0.00563904 -142078,7601:488:2,-18.5,68,0,0,-0.00563778 -142079,7601:488:1,-18,68,0,0,-0.00563652 -142080,7601:487:2,-17.5,68,0,0,-0.00563277 -142081,7601:487:1,-17,68,0,0,-0.00562152 -142082,7601:486:2,-16.5,68,0,0,-0.00562026 -142083,7601:486:1,-16,68,0,0,-0.00578114 -142084,7601:485:2,-15.5,68,0,0,-0.00655336 -142085,7601:485:1,-15,68,0,0,-0.00994816 -142086,7601:384:2,-14.5,68,0,0,-0.0171739 -142087,7601:384:1,-14,68,0,0,-0.0190291 -142088,7601:383:2,-13.5,68,0,0,-0.0202725 -142089,7601:383:1,-13,68,0,0,-0.0209984 -142090,7601:382:2,-12.5,68,0,0,-0.0218788 -142091,7601:382:1,-12,68,0,0,-0.0223735 -142092,7601:381:2,-11.5,68,0,0,-0.0234132 -142093,7601:381:1,-11,68,0,0,-0.0241666 -142094,7601:380:2,-10.5,68,0,0,-0.0245413 -142095,7601:380:1,-10,68,0,0,-0.0239976 -142096,7600:489:2,-9.5,68,0,0,-0.0222324 -142097,7600:489:1,-9,68,0,0,-0.0211888 -142098,7600:488:2,-8.5,68,0,0,-0.0191407 -142099,7600:488:1,-8,68,0,0,-0.0179961 -142100,7600:485:2,-5.5,68,0,0,-0.0110167 -142101,7600:485:1,-5,68,0,0,-0.012147 -142102,7600:384:2,-4.5,68,0,0,-0.0149493 -142103,7600:384:1,-4,68,0,0,-0.016026 -142104,7600:383:2,-3.5,68,0,0,-0.0152506 -142105,7600:383:1,-3,68,0,0,-0.0121145 -142106,7600:382:2,-2.5,68,0,0,-0.00985538 -142107,7600:382:1,-2,68,0,0,-0.00918259 -142108,7600:381:2,-1.5,68,0,0,-0.00964653 -142109,7600:381:1,-1,68,0,0,-0.0120496 -142110,7600:380:2,-0.5,68,0,0,-0.0155303 -142111,1600:380:2,0,68,0,0,-0.0175801 -142112,1600:380:2,0.5,68,0,0,-0.0196607 -142113,1600:381:1,1,68,0,0,-0.020791 -142114,1600:381:2,1.5,68,0,0,-0.0209369 -142115,1600:382:1,2,68,0,0,-0.0235566 -142116,1600:382:2,2.5,68,0,0,-0.025263 -142117,1600:383:1,3,68,0,0,-0.0252746 -142118,1600:383:2,3.5,68,0,0,-0.0240901 -142119,1600:384:1,4,68,0,0,-0.0227507 -142120,1600:384:2,4.5,68,0,0,-0.0237116 -142121,1600:485:1,5,68,0,0,-0.0254989 -142122,1600:485:2,5.5,68,0,0,-0.0245413 -142123,1600:486:1,6,68,0,0,-0.0217704 -142124,1600:486:2,6.5,68,0,0,-0.0198879 -142125,1600:487:1,7,68,0,0,-0.0192791 -142126,1600:487:2,7.5,68,0,0,-0.0186851 -142127,1600:488:1,8,68,0,0,-0.0187991 -142128,1600:488:2,8.5,68,0,0,-0.0173135 -142129,1600:489:1,9,68,0,0,-0.0155582 -142130,1600:489:2,9.5,68,0,0,-0.0141377 -142131,1601:380:1,10,68,0,0,-0.0135608 -142132,1601:380:2,10.5,68,0,0,-0.0136522 -142133,1601:381:1,11,68,0,0,-0.0139146 -142134,1601:381:2,11.5,68,0,0,-0.0143677 -142135,1601:382:1,12,68,0,0,-0.0161126 -142136,1601:382:2,12.5,68,0,0,-0.0180651 -142137,1601:383:1,13,68,0,0,-0.0180529 -142138,1601:383:2,13.5,68,0,0,-0.0171893 -142139,1601:384:1,14,68,0,0,-0.0169516 -142140,1601:384:2,14.5,68,0,0,-0.0173369 -142141,1601:485:1,15,68,0,0,-0.0176991 -142142,1601:485:2,15.5,68,0,0,-0.0181139 -142143,1601:486:1,16,68,0,0,-0.0181669 -142144,1601:486:2,16.5,68,0,0,-0.014909 -142145,1601:487:1,17,68,0,0,-0.0122342 -142146,1601:487:2,17.5,68,0,0,-0.0104768 -142147,1601:488:1,18,68,0,0,-0.0100172 -142148,1601:488:2,18.5,68,0,0,-0.00901225 -142149,1602:381:1,21,68,0,0,-0.0060064 -142150,1602:381:2,21.5,68,0,0,-0.00703685 -142151,1602:382:1,22,68,0,0,-0.00724177 -142152,1602:382:2,22.5,68,0,0,-0.00617287 -142153,1614:381:1,141,68,0,0,-0.00610329 -142154,1614:381:2,141.5,68,0,0,-0.00608432 -142155,1614:382:1,142,68,0,0,-0.00606544 -142156,1614:382:2,142.5,68,0,0,-0.00604388 -142157,1614:383:1,143,68,0,0,-0.00600775 -142158,1614:383:2,143.5,68,0,0,-0.00596119 -142159,1614:384:1,144,68,0,0,-0.00591234 -142160,1614:384:2,144.5,68,0,0,-0.00586263 -142161,1614:485:1,145,68,0,0,-0.00580688 -142162,1614:485:2,145.5,68,0,0,-0.00576829 -142163,1614:486:1,146,68,0,0,-0.005767 -142164,1614:486:2,146.5,68,0,0,-0.00577471 -142165,1614:487:1,147,68,0,0,-0.00576959 -142166,1614:487:2,147.5,68,0,0,-0.00576446 -142167,1614:488:1,148,68,0,0,-0.00575548 -142168,1614:488:2,148.5,68,0,0,-0.00575806 -142169,1614:489:1,149,68,0,0,-0.00575548 -142170,1614:489:2,149.5,68,0,0,-0.00576059 -142171,1615:380:1,150,68,0,0,-0.00576188 -142172,1615:380:2,150.5,68,0,0,-0.00576059 -142173,1615:381:1,151,68,0,0,-0.00575806 -142174,1615:381:2,151.5,68,0,0,-0.00575037 -142175,1615:382:1,152,68,0,0,-0.00573888 -142176,1615:382:2,152.5,68,0,0,-0.00572997 -142177,1615:383:1,153,68,0,0,-0.00572488 -142178,1615:383:2,153.5,68,0,0,-0.00572108 -142179,1615:384:1,154,68,0,0,-0.00571724 -142180,1615:384:2,154.5,68,0,0,-0.005716 -142181,1615:485:1,155,68,0,0,-0.00571344 -142182,1615:485:2,155.5,68,0,0,-0.00570837 -142183,1615:486:1,156,68,0,0,-0.00570202 -142184,1615:486:2,156.5,68,0,0,-0.00569569 -142185,1615:487:1,157,68,0,0,-0.0056919 -142186,1615:487:2,157.5,68,0,0,-0.00568558 -142187,1615:488:1,158,68,0,0,-0.00568053 -142188,1615:488:2,158.5,68,0,0,-0.00566791 -142189,1615:489:1,159,68,0,0,-0.00565658 -142190,1615:489:2,159.5,68,0,0,-0.00564907 -142191,1616:380:1,160,68,0,0,-0.00563778 -142192,1616:380:2,160.5,68,0,0,-0.00563025 -142193,1616:381:1,161,68,0,0,-0.00562404 -142194,1616:381:2,161.5,68,0,0,-0.00562026 -142195,1616:382:1,162,68,0,0,-0.00562152 -142196,1616:382:2,162.5,68,0,0,-0.00562651 -142197,1616:383:1,163,68,0,0,-0.00563151 -142198,1616:383:2,163.5,68,0,0,-0.00563404 -142199,1616:384:1,164,68,0,0,-0.00563526 -142200,1616:384:2,164.5,68,0,0,-0.00563277 -142201,1616:485:1,165,68,0,0,-0.00563151 -142202,1616:485:2,165.5,68,0,0,-0.00563151 -142203,1616:486:1,166,68,0,0,-0.00563652 -142204,1616:486:2,166.5,68,0,0,-0.00564907 -142205,1616:487:1,167,68,0,0,-0.00566288 -142206,1616:487:2,167.5,68,0,0,-0.00567421 -142207,1616:488:1,168,68,0,0,-0.00568053 -142208,1616:488:2,168.5,68,0,0,-0.00568307 -142209,1616:489:1,169,68,0,0,-0.0056843 -142210,1616:489:2,169.5,68,0,0,-0.0056843 -142211,1617:380:1,170,68,0,0,-0.00568685 -142212,1617:380:2,170.5,68,0,0,-0.00569063 -142213,1617:381:1,171,68,0,0,-0.00569569 -142214,1617:381:2,171.5,68,0,0,-0.00570075 -142215,1617:382:1,172,68,0,0,-0.0057033 -142216,1617:382:2,172.5,68,0,0,-0.00570581 -142217,1617:383:1,173,68,0,0,-0.00570709 -142218,1617:383:2,173.5,68,0,0,-0.00570709 -142219,1617:384:1,174,68,0,0,-0.00570581 -142220,1617:384:2,174.5,68,0,0,-0.00570458 -142221,1617:485:1,175,68,0,0,-0.0057033 -142222,1617:485:2,175.5,68,0,0,-0.0057033 -142223,1617:486:1,176,68,0,0,-0.0057033 -142224,1617:486:2,176.5,68,0,0,-0.0057033 -142225,1617:487:1,177,68,0,0,-0.0057033 -142226,1617:487:2,177.5,68,0,0,-0.00570581 -142227,1617:488:1,178,68,0,0,-0.00570837 -142228,1617:488:2,178.5,68,0,0,-0.00571092 -142229,1617:489:1,179,68,0,0,-0.00571472 -142230,1617:489:2,179.5,68,0,0,-0.005716 -142231,1618:380:1,180,68,0,0,-0.00571724 -142232,7618:380:3,-180,68.5,0,0,-0.0057198 -142233,7617:489:4,-179.5,68.5,0,0,-0.0057198 -142234,7617:489:3,-179,68.5,0,0,-0.00572108 -142235,7617:488:4,-178.5,68.5,0,0,-0.00572232 -142236,7617:488:3,-178,68.5,0,0,-0.0057236 -142237,7617:487:4,-177.5,68.5,0,0,-0.00572488 -142238,7617:487:3,-177,68.5,0,0,-0.00572741 -142239,7617:486:4,-176.5,68.5,0,0,-0.00572869 -142240,7617:486:3,-176,68.5,0,0,-0.00572741 -142241,7617:485:4,-175.5,68.5,0,0,-0.00572488 -142242,7617:485:3,-175,68.5,0,0,-0.0057236 -142243,7617:384:4,-174.5,68.5,0,0,-0.00572997 -142244,7617:384:3,-174,68.5,0,0,-0.00574273 -142245,7617:383:4,-173.5,68.5,0,0,-0.00575548 -142246,7617:383:3,-173,68.5,0,0,-0.00576446 -142247,7617:382:4,-172.5,68.5,0,0,-0.00576829 -142248,7617:382:3,-172,68.5,0,0,-0.00576829 -142249,7617:381:4,-171.5,68.5,0,0,-0.00576959 -142250,7617:381:3,-171,68.5,0,0,-0.00576959 -142251,7617:380:4,-170.5,68.5,0,0,-0.00576829 -142252,7617:380:3,-170,68.5,0,0,-0.00576829 -142253,7616:489:4,-169.5,68.5,0,0,-0.00576575 -142254,7616:489:3,-169,68.5,0,0,-0.00576059 -142255,7616:488:4,-168.5,68.5,0,0,-0.00575294 -142256,7616:488:3,-168,68.5,0,0,-0.00574655 -142257,7616:487:4,-167.5,68.5,0,0,-0.00574526 -142258,7616:487:3,-167,68.5,0,0,-0.00574398 -142259,7616:486:4,-166.5,68.5,0,0,-0.00574144 -142260,7616:486:3,-166,68.5,0,0,-0.00574144 -142261,7616:485:4,-165.5,68.5,0,0,-0.00574144 -142262,7616:485:3,-165,68.5,0,0,-0.00574016 -142263,7616:384:4,-164.5,68.5,0,0,-0.00574016 -142264,7616:384:3,-164,68.5,0,0,-0.00573888 -142265,7616:383:4,-163.5,68.5,0,0,-0.00573888 -142266,7616:383:3,-163,68.5,0,0,-0.00574016 -142267,7616:382:4,-162.5,68.5,0,0,-0.00574144 -142268,7616:382:3,-162,68.5,0,0,-0.00574016 -142269,7616:381:4,-161.5,68.5,0,0,-0.00574016 -142270,7616:381:3,-161,68.5,0,0,-0.00574016 -142271,7616:380:4,-160.5,68.5,0,0,-0.00574144 -142272,7616:380:3,-160,68.5,0,0,-0.00574273 -142273,7615:489:4,-159.5,68.5,0,0,-0.00574398 -142274,7615:489:3,-159,68.5,0,0,-0.00574398 -142275,7615:488:4,-158.5,68.5,0,0,-0.00574398 -142276,7615:488:3,-158,68.5,0,0,-0.00574526 -142277,7615:487:4,-157.5,68.5,0,0,-0.00574526 -142278,7615:487:3,-157,68.5,0,0,-0.00574783 -142279,7615:486:4,-156.5,68.5,0,0,-0.00574655 -142280,7615:486:3,-156,68.5,0,0,-0.00574144 -142281,7615:485:4,-155.5,68.5,0,0,-0.00573125 -142282,7615:485:3,-155,68.5,0,0,-0.00571472 -142283,7615:384:4,-154.5,68.5,0,0,-0.00569824 -142284,7615:384:3,-154,68.5,0,0,-0.00568936 -142285,7615:383:4,-153.5,68.5,0,0,-0.00570075 -142286,7615:383:3,-153,68.5,0,0,-0.00571724 -142287,7615:382:4,-152.5,68.5,0,0,-0.00570965 -142288,7615:382:3,-152,68.5,0,0,-0.00568936 -142289,7615:381:4,-151.5,68.5,0,0,-0.00567675 -142290,7615:381:3,-151,68.5,0,0,-0.00568685 -142291,7615:380:4,-150.5,68.5,0,0,-0.00569318 -142292,7615:380:3,-150,68.5,0,0,-0.0056919 -142293,7614:489:4,-149.5,68.5,0,0,-0.00567171 -142294,7614:489:3,-149,68.5,0,0,-0.00559285 -142295,7614:486:4,-146.5,68.5,0,0,-0.00575677 -142296,7614:486:3,-146,68.5,0,0,-0.00575294 -142297,7614:485:4,-145.5,68.5,0,0,-0.00563778 -142298,7607:382:3,-72,68.5,0,0,-0.00598375 -142299,7607:381:4,-71.5,68.5,0,0,-0.00601843 -142300,7606:489:4,-69.5,68.5,0,0,-0.00583273 -142301,7606:489:3,-69,68.5,0,0,-0.00583665 -142302,7606:488:4,-68.5,68.5,0,0,-0.00582368 -142303,7606:488:3,-68,68.5,0,0,-0.00582237 -142304,7606:487:4,-67.5,68.5,0,0,-0.00583534 -142305,7606:487:3,-67,68.5,0,0,-0.00586132 -142306,7606:486:3,-66,68.5,0,0,-0.00585484 -142307,7605:488:3,-58,68.5,0,0,-0.00580302 -142308,7605:487:4,-57.5,68.5,0,0,-0.00579916 -142309,7605:384:4,-54.5,68.5,0,0,-0.00575806 -142310,7605:384:3,-54,68.5,0,0,-0.00571852 -142311,7605:383:4,-53.5,68.5,0,0,-0.00569445 -142312,7605:383:3,-53,68.5,0,0,-0.00567675 -142313,7605:382:4,-52.5,68.5,0,0,-0.00563904 -142314,7605:382:3,-52,68.5,0,0,-0.00562651 -142315,7605:381:4,-51.5,68.5,0,0,-0.0056403 -142316,7605:381:3,-51,68.5,0,0,-0.00563904 -142317,7605:380:4,-50.5,68.5,0,0,-0.00562152 -142318,7605:380:3,-50,68.5,0,0,-0.00562404 -142319,7604:489:4,-49.5,68.5,0,0,-0.00563778 -142320,7604:489:3,-49,68.5,0,0,-0.00565535 -142321,7604:488:4,-48.5,68.5,0,0,-0.00567171 -142322,7604:488:3,-48,68.5,0,0,-0.00569318 -142323,7604:487:4,-47.5,68.5,0,0,-0.00571344 -142324,7604:487:3,-47,68.5,0,0,-0.00572616 -142325,7604:486:4,-46.5,68.5,0,0,-0.00585484 -142326,7602:381:4,-21.5,68.5,0,0,-0.00570837 -142327,7602:381:3,-21,68.5,0,0,-0.00569951 -142328,7602:380:4,-20.5,68.5,0,0,-0.00568307 -142329,7602:380:3,-20,68.5,0,0,-0.00565785 -142330,7601:489:4,-19.5,68.5,0,0,-0.00564532 -142331,7601:489:3,-19,68.5,0,0,-0.00564279 -142332,7601:488:4,-18.5,68.5,0,0,-0.00564405 -142333,7601:488:3,-18,68.5,0,0,-0.00564532 -142334,7601:487:4,-17.5,68.5,0,0,-0.00563778 -142335,7601:487:3,-17,68.5,0,0,-0.00562278 -142336,7601:486:4,-16.5,68.5,0,0,-0.00562903 -142337,7601:486:3,-16,68.5,0,0,-0.00587306 -142338,7601:485:4,-15.5,68.5,0,0,-0.00688356 -142339,7601:485:3,-15,68.5,0,0,-0.00889252 -142340,7601:384:4,-14.5,68.5,0,0,-0.00918878 -142341,7601:384:3,-14,68.5,0,0,-0.0107422 -142342,7601:383:4,-13.5,68.5,0,0,-0.0118572 -142343,7601:383:3,-13,68.5,0,0,-0.0125671 -142344,7601:382:4,-12.5,68.5,0,0,-0.0136828 -142345,7601:382:3,-12,68.5,0,0,-0.0180732 -142346,7601:381:4,-11.5,68.5,0,0,-0.0206975 -142347,7601:381:3,-11,68.5,0,0,-0.0229624 -142348,7601:380:4,-10.5,68.5,0,0,-0.0226327 -142349,7601:380:3,-10,68.5,0,0,-0.0208662 -142350,7600:489:4,-9.5,68.5,0,0,-0.0184886 -142351,7600:489:3,-9,68.5,0,0,-0.0167848 -142352,7600:488:4,-8.5,68.5,0,0,-0.0156773 -142353,7600:487:4,-7.5,68.5,0,0,-0.0130807 -142354,7600:486:3,-6,68.5,0,0,-0.00840503 -142355,7600:485:4,-5.5,68.5,0,0,-0.00921338 -142356,7600:485:3,-5,68.5,0,0,-0.0097113 -142357,7600:384:4,-4.5,68.5,0,0,-0.00985538 -142358,7600:384:3,-4,68.5,0,0,-0.00947802 -142359,7600:383:4,-3.5,68.5,0,0,-0.0132516 -142360,7600:383:3,-3,68.5,0,0,-0.0118334 -142361,7600:382:4,-2.5,68.5,0,0,-0.00957796 -142362,7600:382:3,-2,68.5,0,0,-0.00857528 -142363,7600:381:4,-1.5,68.5,0,0,-0.00894019 -142364,7600:381:3,-1,68.5,0,0,-0.0113161 -142365,7600:380:4,-0.5,68.5,0,0,-0.0140179 -142366,1600:380:4,0,68.5,0,0,-0.0171932 -142367,1600:380:4,0.5,68.5,0,0,-0.0194843 -142368,1600:381:3,1,68.5,0,0,-0.0200182 -142369,1600:381:4,1.5,68.5,0,0,-0.0205256 -142370,1600:382:3,2,68.5,0,0,-0.0224444 -142371,1600:382:4,2.5,68.5,0,0,-0.0240356 -142372,1600:383:3,3,68.5,0,0,-0.0220175 -142373,1600:383:4,3.5,68.5,0,0,-0.0189392 -142374,1600:384:3,4,68.5,0,0,-0.0183765 -142375,1600:384:4,4.5,68.5,0,0,-0.0197717 -142376,1600:485:3,5,68.5,0,0,-0.0229781 -142377,1600:485:4,5.5,68.5,0,0,-0.0239055 -142378,1600:486:3,6,68.5,0,0,-0.0223937 -142379,1600:486:4,6.5,68.5,0,0,-0.0209321 -142380,1600:487:3,7,68.5,0,0,-0.0196872 -142381,1600:487:4,7.5,68.5,0,0,-0.0181262 -142382,1600:488:3,8,68.5,0,0,-0.017329 -142383,1600:488:4,8.5,68.5,0,0,-0.0167547 -142384,1600:489:3,9,68.5,0,0,-0.0159865 -142385,1600:489:4,9.5,68.5,0,0,-0.0144258 -142386,1601:380:3,10,68.5,0,0,-0.0131276 -142387,1601:380:4,10.5,68.5,0,0,-0.0132309 -142388,1601:381:3,11,68.5,0,0,-0.0136614 -142389,1601:381:4,11.5,68.5,0,0,-0.0140053 -142390,1601:382:3,12,68.5,0,0,-0.0159185 -142391,1601:382:4,12.5,68.5,0,0,-0.0179356 -142392,1601:383:3,13,68.5,0,0,-0.0167171 -142393,1601:383:4,13.5,68.5,0,0,-0.0151756 -142394,1601:384:3,14,68.5,0,0,-0.0145003 -142395,1601:384:4,14.5,68.5,0,0,-0.0145133 -142396,1601:485:3,15,68.5,0,0,-0.0154226 -142397,1601:485:4,15.5,68.5,0,0,-0.0170126 -142398,1601:486:3,16,68.5,0,0,-0.0172785 -142399,1601:486:4,16.5,68.5,0,0,-0.0158045 -142400,1601:487:3,17,68.5,0,0,-0.0137412 -142401,1601:487:4,17.5,68.5,0,0,-0.0110586 -142402,1601:488:3,18,68.5,0,0,-0.0114586 -142403,1601:488:4,18.5,68.5,0,0,-0.010611 -142404,1601:489:3,19,68.5,0,0,-0.00950347 -142405,1601:489:4,19.5,68.5,0,0,-0.00849351 -142406,1602:380:3,20,68.5,0,0,-0.00902833 -142407,1602:380:4,20.5,68.5,0,0,-0.00860016 -142408,1602:381:3,21,68.5,0,0,-0.00852951 -142409,1602:381:4,21.5,68.5,0,0,-0.00889645 -142410,1614:380:4,140.5,68.5,0,0,-0.00617153 -142411,1614:381:3,141,68.5,0,0,-0.0061264 -142412,1614:381:4,141.5,68.5,0,0,-0.00609245 -142413,1614:382:3,142,68.5,0,0,-0.00610872 -142414,1614:382:4,142.5,68.5,0,0,-0.00611415 -142415,1614:383:3,143,68.5,0,0,-0.00601174 -142416,1614:383:4,143.5,68.5,0,0,-0.00594399 -142417,1614:384:3,144,68.5,0,0,-0.00587569 -142418,1614:384:4,144.5,68.5,0,0,-0.00580688 -142419,1614:485:3,145,68.5,0,0,-0.00576317 -142420,1614:485:4,145.5,68.5,0,0,-0.00576575 -142421,1614:486:3,146,68.5,0,0,-0.00578369 -142422,1614:486:4,146.5,68.5,0,0,-0.00580302 -142423,1614:487:3,147,68.5,0,0,-0.00579657 -142424,1614:487:4,147.5,68.5,0,0,-0.00580302 -142425,1614:488:3,148,68.5,0,0,-0.00581204 -142426,1614:488:4,148.5,68.5,0,0,-0.00581334 -142427,1614:489:3,149,68.5,0,0,-0.00580818 -142428,1614:489:4,149.5,68.5,0,0,-0.00579527 -142429,1615:380:3,150,68.5,0,0,-0.00578498 -142430,1615:380:4,150.5,68.5,0,0,-0.00577855 -142431,1615:381:3,151,68.5,0,0,-0.00577342 -142432,1615:381:4,151.5,68.5,0,0,-0.00576959 -142433,1615:382:3,152,68.5,0,0,-0.00576317 -142434,1615:382:4,152.5,68.5,0,0,-0.00575548 -142435,1615:383:3,153,68.5,0,0,-0.00574655 -142436,1615:383:4,153.5,68.5,0,0,-0.00574144 -142437,1615:384:3,154,68.5,0,0,-0.00573506 -142438,1615:384:4,154.5,68.5,0,0,-0.00572741 -142439,1615:485:3,155,68.5,0,0,-0.00571852 -142440,1615:485:4,155.5,68.5,0,0,-0.00570837 -142441,1615:486:3,156,68.5,0,0,-0.00569569 -142442,1615:486:4,156.5,68.5,0,0,-0.00568307 -142443,1615:487:3,157,68.5,0,0,-0.00567045 -142444,1615:487:4,157.5,68.5,0,0,-0.00565911 -142445,1615:488:3,158,68.5,0,0,-0.00564532 -142446,1615:488:4,158.5,68.5,0,0,-0.00563277 -142447,1615:489:3,159,68.5,0,0,-0.00562651 -142448,1615:489:4,159.5,68.5,0,0,-0.005619 -142449,1616:380:3,160,68.5,0,0,-0.00561154 -142450,1616:380:4,160.5,68.5,0,0,-0.00560903 -142451,1616:381:3,161,68.5,0,0,-0.00560903 -142452,1616:381:4,161.5,68.5,0,0,-0.0056128 -142453,1616:382:3,162,68.5,0,0,-0.00561778 -142454,1616:382:4,162.5,68.5,0,0,-0.00562404 -142455,1616:383:3,163,68.5,0,0,-0.00562777 -142456,1616:383:4,163.5,68.5,0,0,-0.00562903 -142457,1616:384:3,164,68.5,0,0,-0.00563025 -142458,1616:384:4,164.5,68.5,0,0,-0.00563151 -142459,1616:485:3,165,68.5,0,0,-0.00563404 -142460,1616:485:4,165.5,68.5,0,0,-0.00563526 -142461,1616:486:3,166,68.5,0,0,-0.00564279 -142462,1616:486:4,166.5,68.5,0,0,-0.00565658 -142463,1616:487:3,167,68.5,0,0,-0.00567045 -142464,1616:487:4,167.5,68.5,0,0,-0.00567803 -142465,1616:488:3,168,68.5,0,0,-0.00568053 -142466,1616:488:4,168.5,68.5,0,0,-0.00568053 -142467,1616:489:3,169,68.5,0,0,-0.0056818 -142468,1616:489:4,169.5,68.5,0,0,-0.00568307 -142469,1617:380:3,170,68.5,0,0,-0.00568558 -142470,1617:380:4,170.5,68.5,0,0,-0.00568812 -142471,1617:381:3,171,68.5,0,0,-0.0056919 -142472,1617:381:4,171.5,68.5,0,0,-0.00569696 -142473,1617:382:3,172,68.5,0,0,-0.00570075 -142474,1617:382:4,172.5,68.5,0,0,-0.0057033 -142475,1617:383:3,173,68.5,0,0,-0.00570458 -142476,1617:383:4,173.5,68.5,0,0,-0.00570458 -142477,1617:384:3,174,68.5,0,0,-0.0057033 -142478,1617:384:4,174.5,68.5,0,0,-0.0057033 -142479,1617:485:3,175,68.5,0,0,-0.0057033 -142480,1617:485:4,175.5,68.5,0,0,-0.0057033 -142481,1617:486:3,176,68.5,0,0,-0.0057033 -142482,1617:486:4,176.5,68.5,0,0,-0.00570458 -142483,1617:487:3,177,68.5,0,0,-0.00570709 -142484,1617:487:4,177.5,68.5,0,0,-0.00570965 -142485,1617:488:3,178,68.5,0,0,-0.00571344 -142486,1617:488:4,178.5,68.5,0,0,-0.00571472 -142487,1617:489:3,179,68.5,0,0,-0.00571724 -142488,1617:489:4,179.5,68.5,0,0,-0.00571852 -142489,1618:380:3,180,68.5,0,0,-0.0057198 -142490,7618:390:1,-180,69,0,0,-0.00572488 -142491,7617:499:2,-179.5,69,0,0,-0.00572488 -142492,7617:499:1,-179,69,0,0,-0.00572616 -142493,7617:498:2,-178.5,69,0,0,-0.00572616 -142494,7617:498:1,-178,69,0,0,-0.00572616 -142495,7617:497:2,-177.5,69,0,0,-0.00572741 -142496,7617:497:1,-177,69,0,0,-0.00573125 -142497,7617:496:2,-176.5,69,0,0,-0.00573506 -142498,7617:496:1,-176,69,0,0,-0.00573635 -142499,7617:495:2,-175.5,69,0,0,-0.00573506 -142500,7617:495:1,-175,69,0,0,-0.00573125 -142501,7617:394:2,-174.5,69,0,0,-0.00573378 -142502,7617:394:1,-174,69,0,0,-0.00574273 -142503,7617:393:2,-173.5,69,0,0,-0.00575423 -142504,7617:393:1,-173,69,0,0,-0.00576446 -142505,7617:392:2,-172.5,69,0,0,-0.005767 -142506,7617:392:1,-172,69,0,0,-0.005767 -142507,7617:391:2,-171.5,69,0,0,-0.00576446 -142508,7617:391:1,-171,69,0,0,-0.00576188 -142509,7617:390:2,-170.5,69,0,0,-0.00575806 -142510,7617:390:1,-170,69,0,0,-0.00575294 -142511,7616:499:2,-169.5,69,0,0,-0.00574783 -142512,7616:499:1,-169,69,0,0,-0.00574273 -142513,7616:498:2,-168.5,69,0,0,-0.00573888 -142514,7616:498:1,-168,69,0,0,-0.00573888 -142515,7616:497:2,-167.5,69,0,0,-0.00574144 -142516,7616:497:1,-167,69,0,0,-0.00574398 -142517,7616:496:2,-166.5,69,0,0,-0.00574398 -142518,7616:496:1,-166,69,0,0,-0.00574273 -142519,7616:495:2,-165.5,69,0,0,-0.00574144 -142520,7616:495:1,-165,69,0,0,-0.00574144 -142521,7616:394:2,-164.5,69,0,0,-0.00573888 -142522,7616:394:1,-164,69,0,0,-0.00573635 -142523,7616:393:2,-163.5,69,0,0,-0.00573254 -142524,7616:393:1,-163,69,0,0,-0.00572869 -142525,7616:392:2,-162.5,69,0,0,-0.00572488 -142526,7616:392:1,-162,69,0,0,-0.0057236 -142527,7616:391:2,-161.5,69,0,0,-0.00572488 -142528,7616:391:1,-161,69,0,0,-0.00572869 -142529,7616:390:2,-160.5,69,0,0,-0.00573254 -142530,7616:390:1,-160,69,0,0,-0.00573506 -142531,7615:499:2,-159.5,69,0,0,-0.00573506 -142532,7615:499:1,-159,69,0,0,-0.00573635 -142533,7615:498:2,-158.5,69,0,0,-0.00574016 -142534,7615:498:1,-158,69,0,0,-0.00574398 -142535,7615:497:2,-157.5,69,0,0,-0.00574912 -142536,7615:497:1,-157,69,0,0,-0.00575165 -142537,7615:496:2,-156.5,69,0,0,-0.00575037 -142538,7615:496:1,-156,69,0,0,-0.00574526 -142539,7615:495:2,-155.5,69,0,0,-0.00573506 -142540,7615:495:1,-155,69,0,0,-0.00572232 -142541,7615:394:2,-154.5,69,0,0,-0.0057033 -142542,7615:394:1,-154,69,0,0,-0.00569318 -142543,7615:393:2,-153.5,69,0,0,-0.0057033 -142544,7615:393:1,-153,69,0,0,-0.0057236 -142545,7615:392:2,-152.5,69,0,0,-0.00573125 -142546,7615:392:1,-152,69,0,0,-0.00571724 -142547,7615:391:2,-151.5,69,0,0,-0.00569824 -142548,7615:391:1,-151,69,0,0,-0.00569318 -142549,7615:390:2,-150.5,69,0,0,-0.00571216 -142550,7615:390:1,-150,69,0,0,-0.00572488 -142551,7614:499:2,-149.5,69,0,0,-0.00572869 -142552,7614:499:1,-149,69,0,0,-0.00572108 -142553,7614:498:2,-148.5,69,0,0,-0.00573378 -142554,7614:498:1,-148,69,0,0,-0.00573635 -142555,7614:497:2,-147.5,69,0,0,-0.00575934 -142556,7614:497:1,-147,69,0,0,-0.00574144 -142557,7614:496:2,-146.5,69,0,0,-0.00575423 -142558,7614:496:1,-146,69,0,0,-0.00570458 -142559,7607:391:1,-71,69,0,0,-0.00593472 -142560,7607:390:2,-70.5,69,0,0,-0.00590053 -142561,7607:390:1,-70,69,0,0,-0.00588091 -142562,7606:499:2,-69.5,69,0,0,-0.00584053 -142563,7606:499:1,-69,69,0,0,-0.00584183 -142564,7606:498:2,-68.5,69,0,0,-0.00581981 -142565,7606:498:1,-68,69,0,0,-0.00580172 -142566,7606:497:2,-67.5,69,0,0,-0.00580558 -142567,7606:497:1,-67,69,0,0,-0.00582755 -142568,7606:496:2,-66.5,69,0,0,-0.00578369 -142569,7605:497:1,-57,69,0,0,-0.00580172 -142570,7605:394:2,-54.5,69,0,0,-0.00575677 -142571,7605:394:1,-54,69,0,0,-0.0056818 -142572,7605:393:2,-53.5,69,0,0,-0.00563526 -142573,7605:393:1,-53,69,0,0,-0.00561778 -142574,7605:392:2,-52.5,69,0,0,-0.00563526 -142575,7605:392:1,-52,69,0,0,-0.00566791 -142576,7605:391:2,-51.5,69,0,0,-0.00569318 -142577,7605:391:1,-51,69,0,0,-0.00567926 -142578,7605:390:2,-50.5,69,0,0,-0.00566288 -142579,7605:390:1,-50,69,0,0,-0.00565409 -142580,7604:499:2,-49.5,69,0,0,-0.00566038 -142581,7604:499:1,-49,69,0,0,-0.00567421 -142582,7604:498:2,-48.5,69,0,0,-0.00567294 -142583,7604:498:1,-48,69,0,0,-0.0056919 -142584,7604:497:2,-47.5,69,0,0,-0.00571472 -142585,7604:497:1,-47,69,0,0,-0.00574655 -142586,7604:496:2,-46.5,69,0,0,-0.00580172 -142587,7602:391:2,-21.5,69,0,0,-0.0057033 -142588,7602:391:1,-21,69,0,0,-0.0056919 -142589,7602:390:2,-20.5,69,0,0,-0.00567421 -142590,7602:390:1,-20,69,0,0,-0.00565658 -142591,7601:499:2,-19.5,69,0,0,-0.00564781 -142592,7601:499:1,-19,69,0,0,-0.00564654 -142593,7601:498:2,-18.5,69,0,0,-0.00564781 -142594,7601:498:1,-18,69,0,0,-0.00565033 -142595,7601:497:2,-17.5,69,0,0,-0.00564654 -142596,7601:497:1,-17,69,0,0,-0.00562777 -142597,7601:496:2,-16.5,69,0,0,-0.0056128 -142598,7601:496:1,-16,69,0,0,-0.00594661 -142599,7601:495:2,-15.5,69,0,0,-0.00850108 -142600,7601:495:1,-15,69,0,0,-0.013225 -142601,7601:394:2,-14.5,69,0,0,-0.0141093 -142602,7601:394:1,-14,69,0,0,-0.0125587 -142603,7601:393:2,-13.5,69,0,0,-0.0135335 -142604,7601:393:1,-13,69,0,0,-0.0156563 -142605,7601:392:2,-12.5,69,0,0,-0.0158685 -142606,7601:392:1,-12,69,0,0,-0.018118 -142607,7601:391:2,-11.5,69,0,0,-0.0216089 -142608,7601:391:1,-11,69,0,0,-0.0200996 -142609,7601:390:2,-10.5,69,0,0,-0.0176396 -142610,7600:499:2,-9.5,69,0,0,-0.013326 -142611,7600:496:1,-6,69,0,0,-0.0080066 -142612,7600:495:2,-5.5,69,0,0,-0.00796746 -142613,7600:495:1,-5,69,0,0,-0.00763233 -142614,7600:394:2,-4.5,69,0,0,-0.00731304 -142615,7600:394:1,-4,69,0,0,-0.00754618 -142616,7600:393:2,-3.5,69,0,0,-0.0108144 -142617,7600:393:1,-3,69,0,0,-0.0101908 -142618,7600:392:2,-2.5,69,0,0,-0.00797456 -142619,7600:392:1,-2,69,0,0,-0.00737514 -142620,7600:391:2,-1.5,69,0,0,-0.00882731 -142621,7600:391:1,-1,69,0,0,-0.0139709 -142622,7600:390:2,-0.5,69,0,0,-0.0162726 -142623,1600:390:2,0,69,0,0,-0.0169744 -142624,1600:390:2,0.5,69,0,0,-0.0191622 -142625,1600:391:1,1,69,0,0,-0.0197895 -142626,1600:391:2,1.5,69,0,0,-0.0211983 -142627,1600:392:1,2,69,0,0,-0.0226788 -142628,1600:392:2,2.5,69,0,0,-0.0217851 -142629,1600:393:1,3,69,0,0,-0.018999 -142630,1600:393:2,3.5,69,0,0,-0.0155268 -142631,1600:394:1,4,69,0,0,-0.0158792 -142632,1600:394:2,4.5,69,0,0,-0.0199283 -142633,1600:495:1,5,69,0,0,-0.0217361 -142634,1600:495:2,5.5,69,0,0,-0.0222024 -142635,1600:496:1,6,69,0,0,-0.0195063 -142636,1600:496:2,6.5,69,0,0,-0.0153468 -142637,1600:497:1,7,69,0,0,-0.0156107 -142638,1600:497:2,7.5,69,0,0,-0.0163604 -142639,1600:498:1,8,69,0,0,-0.0163458 -142640,1600:498:2,8.5,69,0,0,-0.0155477 -142641,1600:499:1,9,69,0,0,-0.0139552 -142642,1600:499:2,9.5,69,0,0,-0.0130048 -142643,1601:390:1,10,69,0,0,-0.0123774 -142644,1601:390:2,10.5,69,0,0,-0.0128457 -142645,1601:391:1,11,69,0,0,-0.0141061 -142646,1601:391:2,11.5,69,0,0,-0.0148224 -142647,1601:392:1,12,69,0,0,-0.0161852 -142648,1601:392:2,12.5,69,0,0,-0.0176753 -142649,1601:393:1,13,69,0,0,-0.0172513 -142650,1601:393:2,13.5,69,0,0,-0.0159149 -142651,1601:394:1,14,69,0,0,-0.0145036 -142652,1601:394:2,14.5,69,0,0,-0.0139928 -142653,1601:495:1,15,69,0,0,-0.0142045 -142654,1601:495:2,15.5,69,0,0,-0.0152952 -142655,1601:496:1,16,69,0,0,-0.015506 -142656,1601:496:2,16.5,69,0,0,-0.0152609 -142657,1601:497:1,17,69,0,0,-0.0149292 -142658,1601:497:2,17.5,69,0,0,-0.0137197 -142659,1601:498:1,18,69,0,0,-0.0121987 -142660,1601:498:2,18.5,69,0,0,-0.0118784 -142661,1601:499:1,19,69,0,0,-0.0120119 -142662,1601:499:2,19.5,69,0,0,-0.0105355 -142663,1602:390:1,20,69,0,0,-0.0103306 -142664,1602:390:2,20.5,69,0,0,-0.0101931 -142665,1602:391:1,21,69,0,0,-0.0097352 -142666,1602:391:2,21.5,69,0,0,-0.00815418 -142667,1614:390:2,140.5,69,0,0,-0.00637086 -142668,1614:391:1,141,69,0,0,-0.00630746 -142669,1614:392:1,142,69,0,0,-0.00623081 -142670,1614:392:2,142.5,69,0,0,-0.00610872 -142671,1614:393:1,143,69,0,0,-0.00595323 -142672,1614:393:2,143.5,69,0,0,-0.00583146 -142673,1614:394:1,144,69,0,0,-0.00579272 -142674,1614:394:2,144.5,69,0,0,-0.00577471 -142675,1614:495:1,145,69,0,0,-0.00576575 -142676,1614:495:2,145.5,69,0,0,-0.00577601 -142677,1614:496:1,146,69,0,0,-0.00579142 -142678,1614:496:2,146.5,69,0,0,-0.0058159 -142679,1614:497:1,147,69,0,0,-0.00583016 -142680,1614:497:2,147.5,69,0,0,-0.00583795 -142681,1614:498:1,148,69,0,0,-0.00584572 -142682,1614:498:2,148.5,69,0,0,-0.00583534 -142683,1614:499:1,149,69,0,0,-0.00580818 -142684,1614:499:2,149.5,69,0,0,-0.00577601 -142685,1615:390:1,150,69,0,0,-0.00574783 -142686,1615:390:2,150.5,69,0,0,-0.00572997 -142687,1615:391:1,151,69,0,0,-0.00571472 -142688,1615:391:2,151.5,69,0,0,-0.005716 -142689,1615:392:1,152,69,0,0,-0.00572232 -142690,1615:392:2,152.5,69,0,0,-0.00572741 -142691,1615:393:1,153,69,0,0,-0.00572741 -142692,1615:393:2,153.5,69,0,0,-0.0057236 -142693,1615:394:1,154,69,0,0,-0.00572232 -142694,1615:394:2,154.5,69,0,0,-0.00571472 -142695,1615:495:1,155,69,0,0,-0.00570202 -142696,1615:495:2,155.5,69,0,0,-0.0056843 -142697,1615:496:1,156,69,0,0,-0.00566791 -142698,1615:496:2,156.5,69,0,0,-0.00565658 -142699,1615:497:1,157,69,0,0,-0.00564907 -142700,1615:497:2,157.5,69,0,0,-0.00564279 -142701,1615:498:1,158,69,0,0,-0.00563025 -142702,1615:498:2,158.5,69,0,0,-0.00561653 -142703,1615:499:1,159,69,0,0,-0.00560903 -142704,1615:499:2,159.5,69,0,0,-0.00560656 -142705,1616:390:1,160,69,0,0,-0.0056028 -142706,1616:390:2,160.5,69,0,0,-0.0056028 -142707,1616:391:1,161,69,0,0,-0.00560531 -142708,1616:391:2,161.5,69,0,0,-0.00561029 -142709,1616:392:1,162,69,0,0,-0.00561527 -142710,1616:392:2,162.5,69,0,0,-0.00562026 -142711,1616:393:1,163,69,0,0,-0.00562404 -142712,1616:393:2,163.5,69,0,0,-0.00562651 -142713,1616:394:1,164,69,0,0,-0.00563404 -142714,1616:394:2,164.5,69,0,0,-0.0056403 -142715,1616:495:1,165,69,0,0,-0.00564532 -142716,1616:495:2,165.5,69,0,0,-0.00564907 -142717,1616:496:1,166,69,0,0,-0.00565911 -142718,1616:496:2,166.5,69,0,0,-0.00567045 -142719,1616:497:1,167,69,0,0,-0.00567675 -142720,1616:497:2,167.5,69,0,0,-0.00567926 -142721,1616:498:1,168,69,0,0,-0.00568053 -142722,1616:498:2,168.5,69,0,0,-0.00568053 -142723,1616:499:1,169,69,0,0,-0.0056818 -142724,1616:499:2,169.5,69,0,0,-0.0056843 -142725,1617:390:1,170,69,0,0,-0.00568558 -142726,1617:390:2,170.5,69,0,0,-0.00568685 -142727,1617:391:1,171,69,0,0,-0.00568936 -142728,1617:391:2,171.5,69,0,0,-0.00569318 -142729,1617:392:1,172,69,0,0,-0.00569696 -142730,1617:392:2,172.5,69,0,0,-0.00570075 -142731,1617:393:1,173,69,0,0,-0.00570202 -142732,1617:393:2,173.5,69,0,0,-0.00570075 -142733,1617:394:1,174,69,0,0,-0.00570075 -142734,1617:394:2,174.5,69,0,0,-0.00570075 -142735,1617:495:1,175,69,0,0,-0.00570202 -142736,1617:495:2,175.5,69,0,0,-0.0057033 -142737,1617:496:1,176,69,0,0,-0.00570581 -142738,1617:496:2,176.5,69,0,0,-0.00570837 -142739,1617:497:1,177,69,0,0,-0.00571092 -142740,1617:497:2,177.5,69,0,0,-0.005716 -142741,1617:498:1,178,69,0,0,-0.0057198 -142742,1617:498:2,178.5,69,0,0,-0.00572108 -142743,1617:499:1,179,69,0,0,-0.00572232 -142744,1617:499:2,179.5,69,0,0,-0.0057236 -142745,1618:390:1,180,69,0,0,-0.00572488 -142746,7618:390:3,-180,69.5,0,0,-0.00573125 -142747,7617:499:4,-179.5,69.5,0,0,-0.00573254 -142748,7617:499:3,-179,69.5,0,0,-0.00573125 -142749,7617:498:4,-178.5,69.5,0,0,-0.00573125 -142750,7617:498:3,-178,69.5,0,0,-0.00573125 -142751,7617:497:4,-177.5,69.5,0,0,-0.00573506 -142752,7617:497:3,-177,69.5,0,0,-0.00574016 -142753,7617:496:4,-176.5,69.5,0,0,-0.00574273 -142754,7617:496:3,-176,69.5,0,0,-0.00574398 -142755,7617:495:4,-175.5,69.5,0,0,-0.00574273 -142756,7617:495:3,-175,69.5,0,0,-0.00573888 -142757,7617:394:4,-174.5,69.5,0,0,-0.00573888 -142758,7617:394:3,-174,69.5,0,0,-0.00574526 -142759,7617:393:4,-173.5,69.5,0,0,-0.00575423 -142760,7617:393:3,-173,69.5,0,0,-0.00576317 -142761,7617:392:4,-172.5,69.5,0,0,-0.00576317 -142762,7617:392:3,-172,69.5,0,0,-0.00576059 -142763,7617:391:4,-171.5,69.5,0,0,-0.00575677 -142764,7617:391:3,-171,69.5,0,0,-0.00575423 -142765,7617:390:4,-170.5,69.5,0,0,-0.00575165 -142766,7617:390:3,-170,69.5,0,0,-0.00574783 -142767,7616:499:4,-169.5,69.5,0,0,-0.00574273 -142768,7616:499:3,-169,69.5,0,0,-0.00573888 -142769,7616:498:4,-168.5,69.5,0,0,-0.00573506 -142770,7616:498:3,-168,69.5,0,0,-0.00573254 -142771,7616:497:4,-167.5,69.5,0,0,-0.00573506 -142772,7616:497:3,-167,69.5,0,0,-0.00574016 -142773,7616:496:4,-166.5,69.5,0,0,-0.00574526 -142774,7616:496:3,-166,69.5,0,0,-0.00574526 -142775,7616:495:4,-165.5,69.5,0,0,-0.00574273 -142776,7616:495:3,-165,69.5,0,0,-0.00574273 -142777,7616:394:4,-164.5,69.5,0,0,-0.00574016 -142778,7616:394:3,-164,69.5,0,0,-0.00573763 -142779,7616:393:4,-163.5,69.5,0,0,-0.00573125 -142780,7616:393:3,-163,69.5,0,0,-0.00572488 -142781,7616:392:4,-162.5,69.5,0,0,-0.0057198 -142782,7616:392:3,-162,69.5,0,0,-0.00571852 -142783,7616:391:4,-161.5,69.5,0,0,-0.00571852 -142784,7616:391:3,-161,69.5,0,0,-0.0057198 -142785,7616:390:4,-160.5,69.5,0,0,-0.00572108 -142786,7616:390:3,-160,69.5,0,0,-0.00572108 -142787,7615:499:4,-159.5,69.5,0,0,-0.0057198 -142788,7615:499:3,-159,69.5,0,0,-0.0057198 -142789,7615:498:4,-158.5,69.5,0,0,-0.0057236 -142790,7615:498:3,-158,69.5,0,0,-0.00572997 -142791,7615:497:4,-157.5,69.5,0,0,-0.00573763 -142792,7615:497:3,-157,69.5,0,0,-0.00574273 -142793,7615:496:4,-156.5,69.5,0,0,-0.00574144 -142794,7615:496:3,-156,69.5,0,0,-0.00573635 -142795,7615:495:4,-155.5,69.5,0,0,-0.00572997 -142796,7615:495:3,-155,69.5,0,0,-0.00572108 -142797,7615:394:4,-154.5,69.5,0,0,-0.00570965 -142798,7615:394:3,-154,69.5,0,0,-0.00569824 -142799,7615:393:4,-153.5,69.5,0,0,-0.00569951 -142800,7615:393:3,-153,69.5,0,0,-0.00571472 -142801,7615:392:4,-152.5,69.5,0,0,-0.00572997 -142802,7615:392:3,-152,69.5,0,0,-0.00574144 -142803,7615:391:4,-151.5,69.5,0,0,-0.00573888 -142804,7615:391:3,-151,69.5,0,0,-0.00573506 -142805,7615:390:4,-150.5,69.5,0,0,-0.00573378 -142806,7615:390:3,-150,69.5,0,0,-0.00573635 -142807,7614:499:4,-149.5,69.5,0,0,-0.00573763 -142808,7614:499:3,-149,69.5,0,0,-0.00574783 -142809,7614:498:4,-148.5,69.5,0,0,-0.00575548 -142810,7614:498:3,-148,69.5,0,0,-0.00575423 -142811,7614:497:4,-147.5,69.5,0,0,-0.00574144 -142812,7614:497:3,-147,69.5,0,0,-0.00574783 -142813,7614:496:4,-146.5,69.5,0,0,-0.00571724 -142814,7614:496:3,-146,69.5,0,0,-0.00560033 -142815,7614:394:4,-144.5,69.5,0,0,-0.00569951 -142816,7607:390:3,-70,69.5,0,0,-0.00590577 -142817,7606:499:4,-69.5,69.5,0,0,-0.00587047 -142818,7606:499:3,-69,69.5,0,0,-0.00583016 -142819,7606:498:4,-68.5,69.5,0,0,-0.00580818 -142820,7606:498:3,-68,69.5,0,0,-0.00580042 -142821,7606:497:4,-67.5,69.5,0,0,-0.00579787 -142822,7606:497:3,-67,69.5,0,0,-0.00581074 -142823,7606:392:4,-62.5,69.5,0,0,-0.00584572 -142824,7605:495:3,-55,69.5,0,0,-0.00573888 -142825,7605:394:4,-54.5,69.5,0,0,-0.0056919 -142826,7605:394:3,-54,69.5,0,0,-0.00563277 -142827,7605:393:4,-53.5,69.5,0,0,-0.005619 -142828,7605:393:3,-53,69.5,0,0,-0.00560903 -142829,7605:392:4,-52.5,69.5,0,0,-0.00561527 -142830,7605:392:3,-52,69.5,0,0,-0.00563151 -142831,7605:391:4,-51.5,69.5,0,0,-0.00562526 -142832,7605:391:3,-51,69.5,0,0,-0.00560903 -142833,7605:390:4,-50.5,69.5,0,0,-0.00560656 -142834,7605:390:3,-50,69.5,0,0,-0.00560781 -142835,7604:499:4,-49.5,69.5,0,0,-0.0056128 -142836,7604:499:3,-49,69.5,0,0,-0.00562152 -142837,7604:498:4,-48.5,69.5,0,0,-0.00563652 -142838,7604:498:3,-48,69.5,0,0,-0.00565033 -142839,7604:497:4,-47.5,69.5,0,0,-0.00568812 -142840,7604:497:3,-47,69.5,0,0,-0.00576575 -142841,7604:496:4,-46.5,69.5,0,0,-0.00585091 -142842,7604:496:3,-46,69.5,0,0,-0.00598907 -142843,7602:392:3,-22,69.5,0,0,-0.00566414 -142844,7602:391:4,-21.5,69.5,0,0,-0.00565156 -142845,7602:391:3,-21,69.5,0,0,-0.00565785 -142846,7602:390:4,-20.5,69.5,0,0,-0.00566165 -142847,7602:390:3,-20,69.5,0,0,-0.00565911 -142848,7601:499:4,-19.5,69.5,0,0,-0.00565409 -142849,7601:499:3,-19,69.5,0,0,-0.00565033 -142850,7601:498:4,-18.5,69.5,0,0,-0.00565156 -142851,7601:498:3,-18,69.5,0,0,-0.00565409 -142852,7601:497:4,-17.5,69.5,0,0,-0.00565156 -142853,7601:497:3,-17,69.5,0,0,-0.00562026 -142854,7601:496:4,-16.5,69.5,0,0,-0.00562651 -142855,7601:496:3,-16,69.5,0,0,-0.00600241 -142856,7601:495:4,-15.5,69.5,0,0,-0.00866556 -142857,7601:495:3,-15,69.5,0,0,-0.0146934 -142858,7601:394:4,-14.5,69.5,0,0,-0.016026 -142859,7601:394:3,-14,69.5,0,0,-0.0164748 -142860,7601:393:4,-13.5,69.5,0,0,-0.016549 -142861,7601:393:3,-13,69.5,0,0,-0.0166759 -142862,7601:392:4,-12.5,69.5,0,0,-0.0173641 -142863,7601:392:3,-12,69.5,0,0,-0.020195 -142864,7601:391:4,-11.5,69.5,0,0,-0.0178349 -142865,7601:391:3,-11,69.5,0,0,-0.0154054 -142866,7601:390:4,-10.5,69.5,0,0,-0.0147992 -142867,7600:496:3,-6,69.5,0,0,-0.00765274 -142868,7600:495:4,-5.5,69.5,0,0,-0.00733582 -142869,7600:393:4,-3.5,69.5,0,0,-0.00977652 -142870,7600:393:3,-3,69.5,0,0,-0.0095865 -142871,7600:392:4,-2.5,69.5,0,0,-0.00890438 -142872,7600:392:3,-2,69.5,0,0,-0.00862317 -142873,7600:391:4,-1.5,69.5,0,0,-0.00827125 -142874,7600:391:3,-1,69.5,0,0,-0.00986854 -142875,7600:390:4,-0.5,69.5,0,0,-0.0120443 -142876,1600:390:4,0,69.5,0,0,-0.0170126 -142877,1600:390:4,0.5,69.5,0,0,-0.0194712 -142878,1600:391:3,1,69.5,0,0,-0.0206462 -142879,1600:391:4,1.5,69.5,0,0,-0.0224393 -142880,1600:392:3,2,69.5,0,0,-0.021958 -142881,1600:392:4,2.5,69.5,0,0,-0.0206602 -142882,1600:393:3,3,69.5,0,0,-0.017843 -142883,1600:393:4,3.5,69.5,0,0,-0.0139084 -142884,1600:394:3,4,69.5,0,0,-0.0149425 -142885,1600:394:4,4.5,69.5,0,0,-0.0178952 -142886,1600:495:3,5,69.5,0,0,-0.0201315 -142887,1600:495:4,5.5,69.5,0,0,-0.0186851 -142888,1600:496:3,6,69.5,0,0,-0.0168452 -142889,1600:496:4,6.5,69.5,0,0,-0.0156844 -142890,1600:497:3,7,69.5,0,0,-0.013225 -142891,1600:497:4,7.5,69.5,0,0,-0.0129961 -142892,1600:498:3,8,69.5,0,0,-0.012938 -142893,1600:498:4,8.5,69.5,0,0,-0.0121118 -142894,1600:499:3,9,69.5,0,0,-0.0116185 -142895,1600:499:4,9.5,69.5,0,0,-0.0118625 -142896,1601:390:3,10,69.5,0,0,-0.0122864 -142897,1601:390:4,10.5,69.5,0,0,-0.0135912 -142898,1601:391:3,11,69.5,0,0,-0.0148058 -142899,1601:391:4,11.5,69.5,0,0,-0.0155513 -142900,1601:392:3,12,69.5,0,0,-0.0163385 -142901,1601:392:4,12.5,69.5,0,0,-0.0170585 -142902,1601:393:3,13,69.5,0,0,-0.0171856 -142903,1601:393:4,13.5,69.5,0,0,-0.0170585 -142904,1601:394:3,14,69.5,0,0,-0.0163385 -142905,1601:394:4,14.5,69.5,0,0,-0.0154677 -142906,1601:495:3,15,69.5,0,0,-0.0148124 -142907,1601:495:4,15.5,69.5,0,0,-0.014484 -142908,1601:496:3,16,69.5,0,0,-0.0141662 -142909,1601:496:4,16.5,69.5,0,0,-0.0139552 -142910,1601:497:3,17,69.5,0,0,-0.0139084 -142911,1601:497:4,17.5,69.5,0,0,-0.0127455 -142912,1601:498:3,18,69.5,0,0,-0.0111305 -142913,1601:498:4,18.5,69.5,0,0,-0.011076 -142914,1601:499:3,19,69.5,0,0,-0.0110636 -142915,1601:499:4,19.5,69.5,0,0,-0.0105803 -142916,1602:390:3,20,69.5,0,0,-0.0102914 -142917,1602:390:4,20.5,69.5,0,0,-0.00998154 -142918,1602:391:3,21,69.5,0,0,-0.0086868 -142919,1602:391:4,21.5,69.5,0,0,-0.00745766 -142920,1613:498:3,138,69.5,0,0,-0.00703838 -142921,1613:498:4,138.5,69.5,0,0,-0.00701338 -142922,1613:499:3,139,69.5,0,0,-0.00692965 -142923,1613:499:4,139.5,69.5,0,0,-0.00679982 -142924,1614:390:3,140,69.5,0,0,-0.00672614 -142925,1614:390:4,140.5,69.5,0,0,-0.00665619 -142926,1614:391:3,141,69.5,0,0,-0.00652571 -142927,1614:391:4,141.5,69.5,0,0,-0.00645502 -142928,1614:394:3,144,69.5,0,0,-0.00577213 -142929,1614:394:4,144.5,69.5,0,0,-0.00578498 -142930,1614:495:3,145,69.5,0,0,-0.00578757 -142931,1614:495:4,145.5,69.5,0,0,-0.00579657 -142932,1614:496:3,146,69.5,0,0,-0.00580302 -142933,1614:496:4,146.5,69.5,0,0,-0.00582111 -142934,1614:497:3,147,69.5,0,0,-0.00584053 -142935,1614:497:4,147.5,69.5,0,0,-0.00585091 -142936,1614:498:3,148,69.5,0,0,-0.00586132 -142937,1614:498:4,148.5,69.5,0,0,-0.00583016 -142938,1614:499:3,149,69.5,0,0,-0.00579012 -142939,1614:499:4,149.5,69.5,0,0,-0.00574016 -142940,1615:390:3,150,69.5,0,0,-0.00570709 -142941,1615:390:4,150.5,69.5,0,0,-0.0056818 -142942,1615:391:3,151,69.5,0,0,-0.00566918 -142943,1615:391:4,151.5,69.5,0,0,-0.00566038 -142944,1615:392:3,152,69.5,0,0,-0.00566038 -142945,1615:392:4,152.5,69.5,0,0,-0.00566288 -142946,1615:393:3,153,69.5,0,0,-0.00566791 -142947,1615:393:4,153.5,69.5,0,0,-0.00567045 -142948,1615:394:3,154,69.5,0,0,-0.00566668 -142949,1615:394:4,154.5,69.5,0,0,-0.00565535 -142950,1615:495:3,155,69.5,0,0,-0.00564153 -142951,1615:495:4,155.5,69.5,0,0,-0.00562777 -142952,1615:496:3,156,69.5,0,0,-0.00562152 -142953,1615:496:4,156.5,69.5,0,0,-0.00561778 -142954,1615:497:3,157,69.5,0,0,-0.00561653 -142955,1615:497:4,157.5,69.5,0,0,-0.00561527 -142956,1615:498:3,158,69.5,0,0,-0.00561029 -142957,1615:498:4,158.5,69.5,0,0,-0.00560656 -142958,1615:499:3,159,69.5,0,0,-0.00560405 -142959,1615:499:4,159.5,69.5,0,0,-0.00560405 -142960,1616:390:3,160,69.5,0,0,-0.0056028 -142961,1616:390:4,160.5,69.5,0,0,-0.00560405 -142962,1616:391:3,161,69.5,0,0,-0.00561029 -142963,1616:391:4,161.5,69.5,0,0,-0.00561653 -142964,1616:392:3,162,69.5,0,0,-0.00562152 -142965,1616:392:4,162.5,69.5,0,0,-0.00562404 -142966,1616:393:3,163,69.5,0,0,-0.00562651 -142967,1616:393:4,163.5,69.5,0,0,-0.00563778 -142968,1616:394:3,164,69.5,0,0,-0.00565156 -142969,1616:394:4,164.5,69.5,0,0,-0.00565785 -142970,1616:495:3,165,69.5,0,0,-0.00566288 -142971,1616:495:4,165.5,69.5,0,0,-0.00566791 -142972,1616:496:3,166,69.5,0,0,-0.00567171 -142973,1616:496:4,166.5,69.5,0,0,-0.00567675 -142974,1616:497:3,167,69.5,0,0,-0.00567803 -142975,1616:497:4,167.5,69.5,0,0,-0.00567926 -142976,1616:498:3,168,69.5,0,0,-0.00568053 -142977,1616:498:4,168.5,69.5,0,0,-0.00568053 -142978,1616:499:3,169,69.5,0,0,-0.00568307 -142979,1616:499:4,169.5,69.5,0,0,-0.0056843 -142980,1617:390:3,170,69.5,0,0,-0.00568685 -142981,1617:390:4,170.5,69.5,0,0,-0.00568936 -142982,1617:391:3,171,69.5,0,0,-0.00569063 -142983,1617:391:4,171.5,69.5,0,0,-0.00569318 -142984,1617:392:3,172,69.5,0,0,-0.00569696 -142985,1617:392:4,172.5,69.5,0,0,-0.00569824 -142986,1617:393:3,173,69.5,0,0,-0.00569824 -142987,1617:393:4,173.5,69.5,0,0,-0.00569824 -142988,1617:394:3,174,69.5,0,0,-0.00569824 -142989,1617:394:4,174.5,69.5,0,0,-0.00569951 -142990,1617:495:3,175,69.5,0,0,-0.00570202 -142991,1617:495:4,175.5,69.5,0,0,-0.00570458 -142992,1617:496:3,176,69.5,0,0,-0.00570709 -142993,1617:496:4,176.5,69.5,0,0,-0.00571092 -142994,1617:497:3,177,69.5,0,0,-0.00571472 -142995,1617:497:4,177.5,69.5,0,0,-0.00571724 -142996,1617:498:3,178,69.5,0,0,-0.0057198 -142997,1617:498:4,178.5,69.5,0,0,-0.00572108 -142998,1617:499:3,179,69.5,0,0,-0.00572488 -142999,1617:499:4,179.5,69.5,0,0,-0.00572869 -143000,1618:390:3,180,69.5,0,0,-0.00573125 -143001,7718:100:1,-180,70,0,0,-0.00573378 -143002,7717:209:2,-179.5,70,0,0,-0.00573378 -143003,7717:209:1,-179,70,0,0,-0.00573378 -143004,7717:208:2,-178.5,70,0,0,-0.00573506 -143005,7717:208:1,-178,70,0,0,-0.00573635 -143006,7717:207:2,-177.5,70,0,0,-0.00573888 -143007,7717:207:1,-177,70,0,0,-0.00574273 -143008,7717:206:2,-176.5,70,0,0,-0.00574526 -143009,7717:206:1,-176,70,0,0,-0.00574526 -143010,7717:205:2,-175.5,70,0,0,-0.00574655 -143011,7717:205:1,-175,70,0,0,-0.00574526 -143012,7717:104:2,-174.5,70,0,0,-0.00574655 -143013,7717:104:1,-174,70,0,0,-0.00574912 -143014,7717:103:2,-173.5,70,0,0,-0.00575548 -143015,7717:103:1,-173,70,0,0,-0.00575806 -143016,7717:102:2,-172.5,70,0,0,-0.00575806 -143017,7717:102:1,-172,70,0,0,-0.00575294 -143018,7717:101:2,-171.5,70,0,0,-0.00575037 -143019,7717:101:1,-171,70,0,0,-0.00574655 -143020,7717:100:2,-170.5,70,0,0,-0.00574398 -143021,7717:100:1,-170,70,0,0,-0.00574398 -143022,7716:209:2,-169.5,70,0,0,-0.00574144 -143023,7716:209:1,-169,70,0,0,-0.00574016 -143024,7716:208:2,-168.5,70,0,0,-0.00573763 -143025,7716:208:1,-168,70,0,0,-0.00573378 -143026,7716:207:2,-167.5,70,0,0,-0.00573378 -143027,7716:207:1,-167,70,0,0,-0.00573888 -143028,7716:206:2,-166.5,70,0,0,-0.00574398 -143029,7716:206:1,-166,70,0,0,-0.00574526 -143030,7716:205:2,-165.5,70,0,0,-0.00574398 -143031,7716:205:1,-165,70,0,0,-0.00574144 -143032,7716:104:2,-164.5,70,0,0,-0.00574016 -143033,7716:104:1,-164,70,0,0,-0.00573763 -143034,7716:103:2,-163.5,70,0,0,-0.00573125 -143035,7716:103:1,-163,70,0,0,-0.0057236 -143036,7716:102:2,-162.5,70,0,0,-0.00571852 -143037,7716:102:1,-162,70,0,0,-0.00571852 -143038,7716:101:2,-161.5,70,0,0,-0.0057198 -143039,7716:101:1,-161,70,0,0,-0.0057198 -143040,7716:100:2,-160.5,70,0,0,-0.00571852 -143041,7716:100:1,-160,70,0,0,-0.00571724 -143042,7715:209:2,-159.5,70,0,0,-0.005716 -143043,7715:209:1,-159,70,0,0,-0.005716 -143044,7715:208:2,-158.5,70,0,0,-0.00571724 -143045,7715:208:1,-158,70,0,0,-0.00571852 -143046,7715:207:2,-157.5,70,0,0,-0.0057236 -143047,7715:207:1,-157,70,0,0,-0.00572869 -143048,7715:206:2,-156.5,70,0,0,-0.00572997 -143049,7715:206:1,-156,70,0,0,-0.00572997 -143050,7715:205:2,-155.5,70,0,0,-0.00572616 -143051,7715:205:1,-155,70,0,0,-0.0057198 -143052,7715:104:2,-154.5,70,0,0,-0.00571092 -143053,7715:104:1,-154,70,0,0,-0.00570202 -143054,7715:103:2,-153.5,70,0,0,-0.00569824 -143055,7715:103:1,-153,70,0,0,-0.00570709 -143056,7715:102:2,-152.5,70,0,0,-0.00571852 -143057,7715:102:1,-152,70,0,0,-0.00572741 -143058,7715:101:2,-151.5,70,0,0,-0.00573888 -143059,7715:101:1,-151,70,0,0,-0.00575037 -143060,7715:100:2,-150.5,70,0,0,-0.00575423 -143061,7715:100:1,-150,70,0,0,-0.00575806 -143062,7714:209:2,-149.5,70,0,0,-0.00576059 -143063,7714:209:1,-149,70,0,0,-0.00575934 -143064,7714:208:2,-148.5,70,0,0,-0.00575423 -143065,7714:208:1,-148,70,0,0,-0.00575423 -143066,7714:207:2,-147.5,70,0,0,-0.00574526 -143067,7714:207:1,-147,70,0,0,-0.00574655 -143068,7714:206:2,-146.5,70,0,0,-0.00577985 -143069,7714:206:1,-146,70,0,0,-0.00577213 -143070,7714:205:2,-145.5,70,0,0,-0.00576575 -143071,7714:205:1,-145,70,0,0,-0.00577985 -143072,7714:104:2,-144.5,70,0,0,-0.00578757 -143073,7707:100:1,-70,70,0,0,-0.00580818 -143074,7706:209:2,-69.5,70,0,0,-0.00584703 -143075,7706:209:1,-69,70,0,0,-0.00582498 -143076,7706:208:2,-68.5,70,0,0,-0.00580558 -143077,7706:208:1,-68,70,0,0,-0.00580042 -143078,7706:207:2,-67.5,70,0,0,-0.00579272 -143079,7706:207:1,-67,70,0,0,-0.00579657 -143080,7706:205:1,-65,70,0,0,-0.00571852 -143081,7706:102:1,-62,70,0,0,-0.00589529 -143082,7705:206:1,-56,70,0,0,-0.00578498 -143083,7705:205:2,-55.5,70,0,0,-0.00577726 -143084,7705:205:1,-55,70,0,0,-0.0057236 -143085,7705:104:2,-54.5,70,0,0,-0.00566918 -143086,7705:104:1,-54,70,0,0,-0.00565785 -143087,7705:103:2,-53.5,70,0,0,-0.00564907 -143088,7705:103:1,-53,70,0,0,-0.00563652 -143089,7705:102:2,-52.5,70,0,0,-0.00562404 -143090,7705:102:1,-52,70,0,0,-0.00562152 -143091,7705:101:2,-51.5,70,0,0,-0.00561778 -143092,7705:101:1,-51,70,0,0,-0.005619 -143093,7705:100:2,-50.5,70,0,0,-0.00562526 -143094,7705:100:1,-50,70,0,0,-0.00563404 -143095,7704:209:2,-49.5,70,0,0,-0.00564405 -143096,7704:209:1,-49,70,0,0,-0.00564907 -143097,7704:208:2,-48.5,70,0,0,-0.00564781 -143098,7704:208:1,-48,70,0,0,-0.00564153 -143099,7704:207:2,-47.5,70,0,0,-0.00563526 -143100,7704:207:1,-47,70,0,0,-0.00574655 -143101,7704:206:2,-46.5,70,0,0,-0.00583665 -143102,7704:206:1,-46,70,0,0,-0.00594266 -143103,7702:100:2,-20.5,70,0,0,-0.00563652 -143104,7702:100:1,-20,70,0,0,-0.00564654 -143105,7701:209:2,-19.5,70,0,0,-0.00564654 -143106,7701:209:1,-19,70,0,0,-0.00564781 -143107,7701:208:2,-18.5,70,0,0,-0.00565535 -143108,7701:208:1,-18,70,0,0,-0.00565911 -143109,7701:207:2,-17.5,70,0,0,-0.00564907 -143110,7701:207:1,-17,70,0,0,-0.00560656 -143111,7701:206:2,-16.5,70,0,0,-0.00567803 -143112,7701:206:1,-16,70,0,0,-0.00649386 -143113,7701:205:2,-15.5,70,0,0,-0.010241 -143114,7701:205:1,-15,70,0,0,-0.0158543 -143115,7701:104:2,-14.5,70,0,0,-0.0170662 -143116,7701:104:1,-14,70,0,0,-0.0174345 -143117,7701:103:2,-13.5,70,0,0,-0.0180123 -143118,7701:103:1,-13,70,0,0,-0.0186683 -143119,7701:102:2,-12.5,70,0,0,-0.0193401 -143120,7701:102:1,-12,70,0,0,-0.0198119 -143121,7701:101:2,-11.5,70,0,0,-0.0173446 -143122,7700:206:2,-6.5,70,0,0,-0.00671268 -143123,7700:104:1,-4,70,0,0,-0.00618662 -143124,7700:103:2,-3.5,70,0,0,-0.00672764 -143125,7700:103:1,-3,70,0,0,-0.00719358 -143126,7700:102:2,-2.5,70,0,0,-0.00720317 -143127,7700:102:1,-2,70,0,0,-0.0074031 -143128,7700:101:2,-1.5,70,0,0,-0.00794978 -143129,7700:101:1,-1,70,0,0,-0.0146507 -143130,7700:100:2,-0.5,70,0,0,-0.0173914 -143131,1700:100:2,0,70,0,0,-0.0179154 -143132,1700:100:2,0.5,70,0,0,-0.017843 -143133,1700:101:1,1,70,0,0,-0.0199013 -143134,1700:101:2,1.5,70,0,0,-0.0221773 -143135,1700:102:1,2,70,0,0,-0.0214098 -143136,1700:102:2,2.5,70,0,0,-0.0190118 -143137,1700:103:1,3,70,0,0,-0.0144548 -143138,1700:103:2,3.5,70,0,0,-0.0120551 -143139,1700:104:1,4,70,0,0,-0.0123001 -143140,1700:104:2,4.5,70,0,0,-0.0137227 -143141,1700:205:1,5,70,0,0,-0.0162835 -143142,1700:205:2,5.5,70,0,0,-0.0136552 -143143,1700:206:1,6,70,0,0,-0.0123111 -143144,1700:206:2,6.5,70,0,0,-0.0117517 -143145,1700:207:1,7,70,0,0,-0.0110537 -143146,1700:207:2,7.5,70,0,0,-0.0108192 -143147,1700:208:1,8,70,0,0,-0.0106253 -143148,1700:208:2,8.5,70,0,0,-0.0109017 -143149,1700:209:1,9,70,0,0,-0.0117254 -143150,1700:209:2,9.5,70,0,0,-0.0125981 -143151,1701:100:1,10,70,0,0,-0.0132397 -143152,1701:100:2,10.5,70,0,0,-0.0144128 -143153,1701:101:1,11,70,0,0,-0.0153847 -143154,1701:101:2,11.5,70,0,0,-0.0158649 -143155,1701:102:1,12,70,0,0,-0.0163641 -143156,1701:102:2,12.5,70,0,0,-0.0166983 -143157,1701:103:1,13,70,0,0,-0.0160585 -143158,1701:103:2,13.5,70,0,0,-0.0154331 -143159,1701:104:1,14,70,0,0,-0.0143227 -143160,1701:104:2,14.5,70,0,0,-0.014859 -143161,1701:205:1,15,70,0,0,-0.0152199 -143162,1701:205:2,15.5,70,0,0,-0.0146243 -143163,1701:206:1,16,70,0,0,-0.0140367 -143164,1701:206:2,16.5,70,0,0,-0.0137813 -143165,1701:207:1,17,70,0,0,-0.0136126 -143166,1701:207:2,17.5,70,0,0,-0.0115176 -143167,1701:208:1,18,70,0,0,-0.0101093 -143168,1701:208:2,18.5,70,0,0,-0.00866362 -143169,1702:100:2,20.5,70,0,0,-0.00788103 -143170,1702:101:1,21,70,0,0,-0.00862317 -143171,1702:101:2,21.5,70,0,0,-0.00744935 -143172,1714:205:1,145,70,0,0,-0.00582111 -143173,1714:205:2,145.5,70,0,0,-0.00583016 -143174,1714:206:1,146,70,0,0,-0.00583795 -143175,1714:206:2,146.5,70,0,0,-0.00586005 -143176,1714:207:1,147,70,0,0,-0.00587178 -143177,1714:207:2,147.5,70,0,0,-0.00586132 -143178,1714:208:1,148,70,0,0,-0.00583922 -143179,1714:208:2,148.5,70,0,0,-0.00578883 -143180,1714:209:1,149,70,0,0,-0.00574016 -143181,1714:209:2,149.5,70,0,0,-0.0056919 -143182,1715:100:1,150,70,0,0,-0.00566288 -143183,1715:100:2,150.5,70,0,0,-0.00565409 -143184,1715:101:1,151,70,0,0,-0.00564405 -143185,1715:101:2,151.5,70,0,0,-0.00562903 -143186,1715:102:1,152,70,0,0,-0.00562278 -143187,1715:102:2,152.5,70,0,0,-0.00562152 -143188,1715:103:1,153,70,0,0,-0.00562278 -143189,1715:103:2,153.5,70,0,0,-0.00562404 -143190,1715:104:1,154,70,0,0,-0.00562278 -143191,1715:104:2,154.5,70,0,0,-0.00561402 -143192,1715:205:1,155,70,0,0,-0.00560781 -143193,1715:205:2,155.5,70,0,0,-0.00560405 -143194,1715:206:1,156,70,0,0,-0.00560033 -143195,1715:206:2,156.5,70,0,0,-0.00560033 -143196,1715:207:1,157,70,0,0,-0.00560033 -143197,1715:207:2,157.5,70,0,0,-0.0056028 -143198,1715:208:1,158,70,0,0,-0.00560405 -143199,1715:208:2,158.5,70,0,0,-0.00560531 -143200,1715:209:1,159,70,0,0,-0.00560781 -143201,1715:209:2,159.5,70,0,0,-0.00561029 -143202,1716:100:1,160,70,0,0,-0.00561029 -143203,1716:100:2,160.5,70,0,0,-0.00561778 -143204,1716:101:1,161,70,0,0,-0.00563151 -143205,1716:101:2,161.5,70,0,0,-0.00563904 -143206,1716:102:1,162,70,0,0,-0.00563904 -143207,1716:102:2,162.5,70,0,0,-0.00564153 -143208,1716:103:1,163,70,0,0,-0.00565033 -143209,1716:103:2,163.5,70,0,0,-0.00566038 -143210,1716:104:1,164,70,0,0,-0.00566918 -143211,1716:104:2,164.5,70,0,0,-0.00567294 -143212,1716:205:1,165,70,0,0,-0.00567421 -143213,1716:205:2,165.5,70,0,0,-0.00567421 -143214,1716:206:1,166,70,0,0,-0.00567548 -143215,1716:206:2,166.5,70,0,0,-0.00567675 -143216,1716:207:1,167,70,0,0,-0.00567803 -143217,1716:207:2,167.5,70,0,0,-0.00567803 -143218,1716:208:1,168,70,0,0,-0.00567803 -143219,1716:208:2,168.5,70,0,0,-0.00567803 -143220,1716:209:1,169,70,0,0,-0.00567926 -143221,1716:209:2,169.5,70,0,0,-0.00568307 -143222,1717:100:1,170,70,0,0,-0.00568558 -143223,1717:100:2,170.5,70,0,0,-0.00568936 -143224,1717:101:1,171,70,0,0,-0.00569063 -143225,1717:101:2,171.5,70,0,0,-0.00569445 -143226,1717:102:1,172,70,0,0,-0.00569696 -143227,1717:102:2,172.5,70,0,0,-0.00569696 -143228,1717:103:1,173,70,0,0,-0.00569696 -143229,1717:103:2,173.5,70,0,0,-0.00569696 -143230,1717:104:1,174,70,0,0,-0.00569824 -143231,1717:104:2,174.5,70,0,0,-0.00569951 -143232,1717:205:1,175,70,0,0,-0.00570202 -143233,1717:205:2,175.5,70,0,0,-0.00570458 -143234,1717:206:1,176,70,0,0,-0.00570709 -143235,1717:206:2,176.5,70,0,0,-0.00570837 -143236,1717:207:1,177,70,0,0,-0.00571092 -143237,1717:207:2,177.5,70,0,0,-0.00571216 -143238,1717:208:1,178,70,0,0,-0.00571472 -143239,1717:208:2,178.5,70,0,0,-0.00572108 -143240,1717:209:1,179,70,0,0,-0.00572741 -143241,1717:209:2,179.5,70,0,0,-0.00573125 -143242,1718:100:1,180,70,0,0,-0.00573378 -143243,7718:100:3,-180,70.5,0,0,-0.00573378 -143244,7717:209:4,-179.5,70.5,0,0,-0.00573378 -143245,7717:209:3,-179,70.5,0,0,-0.00573506 -143246,7717:208:4,-178.5,70.5,0,0,-0.00573635 -143247,7717:208:3,-178,70.5,0,0,-0.00573763 -143248,7717:207:4,-177.5,70.5,0,0,-0.00573888 -143249,7717:207:3,-177,70.5,0,0,-0.00573888 -143250,7717:206:4,-176.5,70.5,0,0,-0.00574016 -143251,7717:206:3,-176,70.5,0,0,-0.00574398 -143252,7717:205:4,-175.5,70.5,0,0,-0.00574526 -143253,7717:205:3,-175,70.5,0,0,-0.00574655 -143254,7717:104:4,-174.5,70.5,0,0,-0.00574912 -143255,7717:104:3,-174,70.5,0,0,-0.00575165 -143256,7717:103:4,-173.5,70.5,0,0,-0.00575165 -143257,7717:103:3,-173,70.5,0,0,-0.00575037 -143258,7717:102:4,-172.5,70.5,0,0,-0.00574655 -143259,7717:102:3,-172,70.5,0,0,-0.00574016 -143260,7717:101:4,-171.5,70.5,0,0,-0.00573635 -143261,7717:101:3,-171,70.5,0,0,-0.00573506 -143262,7717:100:4,-170.5,70.5,0,0,-0.00573888 -143263,7717:100:3,-170,70.5,0,0,-0.00574273 -143264,7716:209:4,-169.5,70.5,0,0,-0.00574526 -143265,7716:209:3,-169,70.5,0,0,-0.00574526 -143266,7716:208:4,-168.5,70.5,0,0,-0.00574273 -143267,7716:208:3,-168,70.5,0,0,-0.00573763 -143268,7716:207:4,-167.5,70.5,0,0,-0.00573506 -143269,7716:207:3,-167,70.5,0,0,-0.00573635 -143270,7716:206:4,-166.5,70.5,0,0,-0.00574144 -143271,7716:206:3,-166,70.5,0,0,-0.00574273 -143272,7716:205:4,-165.5,70.5,0,0,-0.00574273 -143273,7716:205:3,-165,70.5,0,0,-0.00574016 -143274,7716:104:4,-164.5,70.5,0,0,-0.00573763 -143275,7716:104:3,-164,70.5,0,0,-0.00573378 -143276,7716:103:4,-163.5,70.5,0,0,-0.00572869 -143277,7716:103:3,-163,70.5,0,0,-0.00572232 -143278,7716:102:4,-162.5,70.5,0,0,-0.00571724 -143279,7716:102:3,-162,70.5,0,0,-0.00571724 -143280,7716:101:4,-161.5,70.5,0,0,-0.00571852 -143281,7716:101:3,-161,70.5,0,0,-0.00571852 -143282,7716:100:4,-160.5,70.5,0,0,-0.00571724 -143283,7716:100:3,-160,70.5,0,0,-0.005716 -143284,7715:209:4,-159.5,70.5,0,0,-0.00571472 -143285,7715:209:3,-159,70.5,0,0,-0.00571472 -143286,7715:208:4,-158.5,70.5,0,0,-0.00571472 -143287,7715:208:3,-158,70.5,0,0,-0.005716 -143288,7715:207:4,-157.5,70.5,0,0,-0.00571852 -143289,7715:207:3,-157,70.5,0,0,-0.00572108 -143290,7715:206:4,-156.5,70.5,0,0,-0.00572488 -143291,7715:206:3,-156,70.5,0,0,-0.00572616 -143292,7715:205:4,-155.5,70.5,0,0,-0.00572488 -143293,7715:205:3,-155,70.5,0,0,-0.00572108 -143294,7715:104:4,-154.5,70.5,0,0,-0.00571344 -143295,7715:104:3,-154,70.5,0,0,-0.0057033 -143296,7715:103:4,-153.5,70.5,0,0,-0.00569569 -143297,7715:103:3,-153,70.5,0,0,-0.00569951 -143298,7715:102:4,-152.5,70.5,0,0,-0.00571092 -143299,7715:102:3,-152,70.5,0,0,-0.00572616 -143300,7715:101:4,-151.5,70.5,0,0,-0.00572869 -143301,7715:101:3,-151,70.5,0,0,-0.00573378 -143302,7715:100:4,-150.5,70.5,0,0,-0.00574912 -143303,7715:100:3,-150,70.5,0,0,-0.00575806 -143304,7714:209:4,-149.5,70.5,0,0,-0.00576059 -143305,7714:209:3,-149,70.5,0,0,-0.00576317 -143306,7714:208:4,-148.5,70.5,0,0,-0.00576188 -143307,7714:208:3,-148,70.5,0,0,-0.00575548 -143308,7714:207:4,-147.5,70.5,0,0,-0.00574783 -143309,7714:207:3,-147,70.5,0,0,-0.00575037 -143310,7714:206:4,-146.5,70.5,0,0,-0.00575548 -143311,7714:206:3,-146,70.5,0,0,-0.00576959 -143312,7714:205:4,-145.5,70.5,0,0,-0.00578114 -143313,7714:205:3,-145,70.5,0,0,-0.00581334 -143314,7707:208:3,-78,70.5,0,0,-0.00758658 -143315,7707:100:3,-70,70.5,0,0,-0.00582368 -143316,7706:209:4,-69.5,70.5,0,0,-0.00584183 -143317,7706:209:3,-69,70.5,0,0,-0.00582498 -143318,7706:208:4,-68.5,70.5,0,0,-0.00581074 -143319,7706:208:3,-68,70.5,0,0,-0.00579397 -143320,7706:207:4,-67.5,70.5,0,0,-0.00578757 -143321,7706:207:3,-67,70.5,0,0,-0.00578498 -143322,7706:206:4,-66.5,70.5,0,0,-0.00579272 -143323,7706:205:3,-65,70.5,0,0,-0.00577855 -143324,7706:101:4,-61.5,70.5,0,0,-0.00585874 -143325,7706:101:3,-61,70.5,0,0,-0.00585222 -143326,7705:206:4,-56.5,70.5,0,0,-0.00579787 -143327,7705:206:3,-56,70.5,0,0,-0.00578369 -143328,7705:205:4,-55.5,70.5,0,0,-0.00573763 -143329,7705:205:3,-55,70.5,0,0,-0.0056919 -143330,7705:104:4,-54.5,70.5,0,0,-0.00568812 -143331,7705:104:3,-54,70.5,0,0,-0.00570202 -143332,7705:103:4,-53.5,70.5,0,0,-0.00570837 -143333,7705:103:3,-53,70.5,0,0,-0.005716 -143334,7705:102:4,-52.5,70.5,0,0,-0.00569318 -143335,7705:102:3,-52,70.5,0,0,-0.00567045 -143336,7705:101:4,-51.5,70.5,0,0,-0.00566038 -143337,7705:101:3,-51,70.5,0,0,-0.00565785 -143338,7705:100:4,-50.5,70.5,0,0,-0.00566038 -143339,7705:100:3,-50,70.5,0,0,-0.00566791 -143340,7704:209:4,-49.5,70.5,0,0,-0.00567171 -143341,7704:209:3,-49,70.5,0,0,-0.00566541 -143342,7704:208:4,-48.5,70.5,0,0,-0.00565535 -143343,7704:208:3,-48,70.5,0,0,-0.00563778 -143344,7704:207:4,-47.5,70.5,0,0,-0.00562526 -143345,7704:207:3,-47,70.5,0,0,-0.00564405 -143346,7704:206:4,-46.5,70.5,0,0,-0.00576829 -143347,7704:205:3,-45,70.5,0,0,-0.00601709 -143348,7702:100:4,-20.5,70.5,0,0,-0.00561402 -143349,7702:100:3,-20,70.5,0,0,-0.00563904 -143350,7701:209:4,-19.5,70.5,0,0,-0.00564654 -143351,7701:209:3,-19,70.5,0,0,-0.00565785 -143352,7701:208:4,-18.5,70.5,0,0,-0.00566165 -143353,7701:208:3,-18,70.5,0,0,-0.00565658 -143354,7701:207:4,-17.5,70.5,0,0,-0.00562404 -143355,7701:207:3,-17,70.5,0,0,-0.00559536 -143356,7701:206:4,-16.5,70.5,0,0,-0.00573763 -143357,7701:206:3,-16,70.5,0,0,-0.00628226 -143358,7701:205:4,-15.5,70.5,0,0,-0.00847268 -143359,7701:205:3,-15,70.5,0,0,-0.0149392 -143360,7701:104:4,-14.5,70.5,0,0,-0.0165304 -143361,7701:104:3,-14,70.5,0,0,-0.0170279 -143362,7701:103:4,-13.5,70.5,0,0,-0.0174385 -143363,7701:103:3,-13,70.5,0,0,-0.0176237 -143364,7701:102:4,-12.5,70.5,0,0,-0.0181058 -143365,7701:102:3,-12,70.5,0,0,-0.0187526 -143366,7701:101:4,-11.5,70.5,0,0,-0.0165601 -143367,7701:101:3,-11,70.5,0,0,-0.0097417 -143368,7700:206:3,-6,70.5,0,0,-0.00559164 -143369,7700:205:4,-5.5,70.5,0,0,-0.00560781 -143370,7700:205:3,-5,70.5,0,0,-0.00579916 -143371,7700:104:4,-4.5,70.5,0,0,-0.00594532 -143372,7700:104:3,-4,70.5,0,0,-0.00606005 -143373,7700:103:4,-3.5,70.5,0,0,-0.00599574 -143374,7700:103:3,-3,70.5,0,0,-0.00586005 -143375,7700:102:4,-2.5,70.5,0,0,-0.00668885 -143376,7700:102:3,-2,70.5,0,0,-0.0113566 -143377,7700:101:4,-1.5,70.5,0,0,-0.0155408 -143378,7700:101:3,-1,70.5,0,0,-0.0152952 -143379,7700:100:4,-0.5,70.5,0,0,-0.0157833 -143380,1700:100:4,0,70.5,0,0,-0.0161307 -143381,1700:100:4,0.5,70.5,0,0,-0.0159793 -143382,1700:101:3,1,70.5,0,0,-0.0171893 -143383,1700:101:4,1.5,70.5,0,0,-0.0197895 -143384,1700:102:3,2,70.5,0,0,-0.0194361 -143385,1700:102:4,2.5,70.5,0,0,-0.016236 -143386,1700:103:3,3,70.5,0,0,-0.0127569 -143387,1700:103:4,3.5,70.5,0,0,-0.0117806 -143388,1700:104:3,4,70.5,0,0,-0.011474 -143389,1700:104:4,4.5,70.5,0,0,-0.011002 -143390,1700:205:3,5,70.5,0,0,-0.0106467 -143391,1700:205:4,5.5,70.5,0,0,-0.0100912 -143392,1700:206:3,6,70.5,0,0,-0.00954808 -143393,1700:206:4,6.5,70.5,0,0,-0.00973951 -143394,1700:207:3,7,70.5,0,0,-0.00973083 -143395,1700:207:4,7.5,70.5,0,0,-0.00991934 -143396,1700:208:3,8,70.5,0,0,-0.0103629 -143397,1700:208:4,8.5,70.5,0,0,-0.010841 -143398,1700:209:3,9,70.5,0,0,-0.0111032 -143399,1700:209:4,9.5,70.5,0,0,-0.0113313 -143400,1701:100:3,10,70.5,0,0,-0.0124914 -143401,1701:100:4,10.5,70.5,0,0,-0.0142554 -143402,1701:101:3,11,70.5,0,0,-0.0150671 -143403,1701:101:4,11.5,70.5,0,0,-0.0151688 -143404,1701:102:3,12,70.5,0,0,-0.0156458 -143405,1701:102:4,12.5,70.5,0,0,-0.0164415 -143406,1701:103:3,13,70.5,0,0,-0.0154608 -143407,1701:103:4,13.5,70.5,0,0,-0.0132902 -143408,1701:104:3,14,70.5,0,0,-0.0123608 -143409,1701:104:4,14.5,70.5,0,0,-0.0127085 -143410,1701:205:3,15,70.5,0,0,-0.0138679 -143411,1701:205:4,15.5,70.5,0,0,-0.0145622 -143412,1701:206:3,16,70.5,0,0,-0.0144711 -143413,1701:206:4,16.5,70.5,0,0,-0.0138246 -143414,1701:207:3,17,70.5,0,0,-0.0127056 -143415,1701:207:4,17.5,70.5,0,0,-0.0106276 -143416,1701:208:3,18,70.5,0,0,-0.00976348 -143417,1701:208:4,18.5,70.5,0,0,-0.00844818 -143418,1702:100:4,20.5,70.5,0,0,-0.00789679 -143419,1702:101:3,21,70.5,0,0,-0.00829338 -143420,1702:101:4,21.5,70.5,0,0,-0.00663549 -143421,1714:205:3,145,70.5,0,0,-0.0058159 -143422,1714:205:4,145.5,70.5,0,0,-0.00585353 -143423,1714:206:3,146,70.5,0,0,-0.005877 -143424,1714:206:4,146.5,70.5,0,0,-0.00589269 -143425,1714:207:3,147,70.5,0,0,-0.00587178 -143426,1714:207:4,147.5,70.5,0,0,-0.00584183 -143427,1714:208:3,148,70.5,0,0,-0.00578114 -143428,1714:208:4,148.5,70.5,0,0,-0.00571092 -143429,1714:209:3,149,70.5,0,0,-0.00565535 -143430,1714:209:4,149.5,70.5,0,0,-0.00562651 -143431,1715:100:3,150,70.5,0,0,-0.00563025 -143432,1715:100:4,150.5,70.5,0,0,-0.00563904 -143433,1715:101:3,151,70.5,0,0,-0.00562777 -143434,1715:101:4,151.5,70.5,0,0,-0.00561029 -143435,1715:102:3,152,70.5,0,0,-0.00560405 -143436,1715:102:4,152.5,70.5,0,0,-0.00560405 -143437,1715:103:3,153,70.5,0,0,-0.00560656 -143438,1715:103:4,153.5,70.5,0,0,-0.00560781 -143439,1715:104:3,154,70.5,0,0,-0.0056028 -143440,1715:104:4,154.5,70.5,0,0,-0.00559908 -143441,1715:205:3,155,70.5,0,0,-0.00559661 -143442,1715:205:4,155.5,70.5,0,0,-0.0055941 -143443,1715:206:3,156,70.5,0,0,-0.00559285 -143444,1715:206:4,156.5,70.5,0,0,-0.00559164 -143445,1715:207:3,157,70.5,0,0,-0.00559164 -143446,1715:207:4,157.5,70.5,0,0,-0.00559661 -143447,1715:208:3,158,70.5,0,0,-0.0056028 -143448,1715:208:4,158.5,70.5,0,0,-0.00560781 -143449,1715:209:3,159,70.5,0,0,-0.00561402 -143450,1715:209:4,159.5,70.5,0,0,-0.00562278 -143451,1716:100:3,160,70.5,0,0,-0.00563404 -143452,1716:100:4,160.5,70.5,0,0,-0.00564781 -143453,1716:101:3,161,70.5,0,0,-0.00565658 -143454,1716:101:4,161.5,70.5,0,0,-0.00566165 -143455,1716:102:3,162,70.5,0,0,-0.00566288 -143456,1716:102:4,162.5,70.5,0,0,-0.00566668 -143457,1716:103:3,163,70.5,0,0,-0.00567045 -143458,1716:103:4,163.5,70.5,0,0,-0.00567421 -143459,1716:104:3,164,70.5,0,0,-0.00567548 -143460,1716:104:4,164.5,70.5,0,0,-0.00567675 -143461,1716:205:3,165,70.5,0,0,-0.00567675 -143462,1716:205:4,165.5,70.5,0,0,-0.00567675 -143463,1716:206:3,166,70.5,0,0,-0.00567803 -143464,1716:206:4,166.5,70.5,0,0,-0.00567803 -143465,1716:207:3,167,70.5,0,0,-0.00567803 -143466,1716:207:4,167.5,70.5,0,0,-0.00567803 -143467,1716:208:3,168,70.5,0,0,-0.00567675 -143468,1716:208:4,168.5,70.5,0,0,-0.00567675 -143469,1716:209:3,169,70.5,0,0,-0.00567803 -143470,1716:209:4,169.5,70.5,0,0,-0.00568053 -143471,1717:100:3,170,70.5,0,0,-0.0056843 -143472,1717:100:4,170.5,70.5,0,0,-0.00568812 -143473,1717:101:3,171,70.5,0,0,-0.00569063 -143474,1717:101:4,171.5,70.5,0,0,-0.00569318 -143475,1717:102:3,172,70.5,0,0,-0.00569445 -143476,1717:102:4,172.5,70.5,0,0,-0.00569569 -143477,1717:103:3,173,70.5,0,0,-0.00569569 -143478,1717:103:4,173.5,70.5,0,0,-0.00569569 -143479,1717:104:3,174,70.5,0,0,-0.00569696 -143480,1717:104:4,174.5,70.5,0,0,-0.00569951 -143481,1717:205:3,175,70.5,0,0,-0.00570075 -143482,1717:205:4,175.5,70.5,0,0,-0.00570075 -143483,1717:206:3,176,70.5,0,0,-0.00570202 -143484,1717:206:4,176.5,70.5,0,0,-0.0057033 -143485,1717:207:3,177,70.5,0,0,-0.00570581 -143486,1717:207:4,177.5,70.5,0,0,-0.00570709 -143487,1717:208:3,178,70.5,0,0,-0.00571092 -143488,1717:208:4,178.5,70.5,0,0,-0.00571852 -143489,1717:209:3,179,70.5,0,0,-0.00572741 -143490,1717:209:4,179.5,70.5,0,0,-0.00573254 -143491,1718:100:3,180,70.5,0,0,-0.00573378 -143492,7718:110:1,-180,71,0,0,-0.00573635 -143493,7717:219:2,-179.5,71,0,0,-0.00573888 -143494,7717:219:1,-179,71,0,0,-0.00574016 -143495,7717:218:2,-178.5,71,0,0,-0.00573888 -143496,7717:218:1,-178,71,0,0,-0.00573763 -143497,7717:217:2,-177.5,71,0,0,-0.00573763 -143498,7717:217:1,-177,71,0,0,-0.00573763 -143499,7717:216:2,-176.5,71,0,0,-0.00574144 -143500,7717:216:1,-176,71,0,0,-0.00574526 -143501,7717:215:2,-175.5,71,0,0,-0.00574783 -143502,7717:215:1,-175,71,0,0,-0.00574783 -143503,7717:114:2,-174.5,71,0,0,-0.00574912 -143504,7717:114:1,-174,71,0,0,-0.00574912 -143505,7717:113:2,-173.5,71,0,0,-0.00574655 -143506,7717:113:1,-173,71,0,0,-0.00574273 -143507,7717:112:2,-172.5,71,0,0,-0.00573888 -143508,7717:112:1,-172,71,0,0,-0.00573378 -143509,7717:111:2,-171.5,71,0,0,-0.00573378 -143510,7717:111:1,-171,71,0,0,-0.00573888 -143511,7717:110:2,-170.5,71,0,0,-0.00574783 -143512,7717:110:1,-170,71,0,0,-0.00575423 -143513,7716:219:2,-169.5,71,0,0,-0.00575548 -143514,7716:219:1,-169,71,0,0,-0.00575294 -143515,7716:218:2,-168.5,71,0,0,-0.00574783 -143516,7716:218:1,-168,71,0,0,-0.00574016 -143517,7716:217:2,-167.5,71,0,0,-0.00573635 -143518,7716:217:1,-167,71,0,0,-0.00573506 -143519,7716:216:2,-166.5,71,0,0,-0.00573888 -143520,7716:216:1,-166,71,0,0,-0.00574016 -143521,7716:215:2,-165.5,71,0,0,-0.00574144 -143522,7716:215:1,-165,71,0,0,-0.00574016 -143523,7716:114:2,-164.5,71,0,0,-0.00573635 -143524,7716:114:1,-164,71,0,0,-0.00573125 -143525,7716:113:2,-163.5,71,0,0,-0.00572741 -143526,7716:113:1,-163,71,0,0,-0.00572232 -143527,7716:112:2,-162.5,71,0,0,-0.0057198 -143528,7716:112:1,-162,71,0,0,-0.0057198 -143529,7716:111:2,-161.5,71,0,0,-0.00571852 -143530,7716:111:1,-161,71,0,0,-0.00571724 -143531,7716:110:2,-160.5,71,0,0,-0.00571472 -143532,7716:110:1,-160,71,0,0,-0.00571344 -143533,7715:219:2,-159.5,71,0,0,-0.00571344 -143534,7715:219:1,-159,71,0,0,-0.00571344 -143535,7715:218:2,-158.5,71,0,0,-0.00571344 -143536,7715:218:1,-158,71,0,0,-0.005716 -143537,7715:217:2,-157.5,71,0,0,-0.00572108 -143538,7715:217:1,-157,71,0,0,-0.0057236 -143539,7715:216:2,-156.5,71,0,0,-0.00572741 -143540,7715:216:1,-156,71,0,0,-0.00573254 -143541,7715:215:2,-155.5,71,0,0,-0.00573378 -143542,7715:215:1,-155,71,0,0,-0.00572616 -143543,7715:114:2,-154.5,71,0,0,-0.00570965 -143544,7715:114:1,-154,71,0,0,-0.00569824 -143545,7715:113:2,-153.5,71,0,0,-0.00570458 -143546,7715:113:1,-153,71,0,0,-0.00569824 -143547,7715:112:2,-152.5,71,0,0,-0.00564532 -143548,7715:112:1,-152,71,0,0,-0.00562526 -143549,7715:111:2,-151.5,71,0,0,-0.00564153 -143550,7715:111:1,-151,71,0,0,-0.00567675 -143551,7715:110:2,-150.5,71,0,0,-0.00572869 -143552,7715:110:1,-150,71,0,0,-0.00573763 -143553,7714:219:2,-149.5,71,0,0,-0.00574783 -143554,7714:219:1,-149,71,0,0,-0.00575677 -143555,7714:218:2,-148.5,71,0,0,-0.00576446 -143556,7714:218:1,-148,71,0,0,-0.00576188 -143557,7714:217:2,-147.5,71,0,0,-0.00575165 -143558,7714:217:1,-147,71,0,0,-0.00574526 -143559,7714:216:2,-146.5,71,0,0,-0.00576188 -143560,7714:216:1,-146,71,0,0,-0.00576317 -143561,7714:215:2,-145.5,71,0,0,-0.00576317 -143562,7714:215:1,-145,71,0,0,-0.00576575 -143563,7714:114:2,-144.5,71,0,0,-0.00579272 -143564,7714:114:1,-144,71,0,0,-0.00583922 -143565,7707:218:2,-78.5,71,0,0,-0.00757983 -143566,7707:218:1,-78,71,0,0,-0.00755459 -143567,7707:217:2,-77.5,71,0,0,-0.00750431 -143568,7707:217:1,-77,71,0,0,-0.00742289 -143569,7707:216:2,-76.5,71,0,0,-0.00733582 -143570,7707:216:1,-76,71,0,0,-0.00727405 -143571,7707:215:2,-75.5,71,0,0,-0.00722727 -143572,7707:215:1,-75,71,0,0,-0.00715364 -143573,7707:114:2,-74.5,71,0,0,-0.00704622 -143574,7707:114:1,-74,71,0,0,-0.00700249 -143575,7707:110:2,-70.5,71,0,0,-0.00580302 -143576,7707:110:1,-70,71,0,0,-0.00582368 -143577,7706:219:2,-69.5,71,0,0,-0.00584572 -143578,7706:218:2,-68.5,71,0,0,-0.00583403 -143579,7706:218:1,-68,71,0,0,-0.00580688 -143580,7706:217:2,-67.5,71,0,0,-0.00578883 -143581,7706:217:1,-67,71,0,0,-0.00577985 -143582,7706:216:2,-66.5,71,0,0,-0.00577342 -143583,7706:216:1,-66,71,0,0,-0.00577601 -143584,7706:215:2,-65.5,71,0,0,-0.00577601 -143585,7706:110:2,-60.5,71,0,0,-0.00578883 -143586,7706:110:1,-60,71,0,0,-0.00580688 -143587,7705:219:2,-59.5,71,0,0,-0.00580042 -143588,7705:219:1,-59,71,0,0,-0.00579657 -143589,7705:218:2,-58.5,71,0,0,-0.00579272 -143590,7705:218:1,-58,71,0,0,-0.00579012 -143591,7705:217:2,-57.5,71,0,0,-0.00579916 -143592,7705:217:1,-57,71,0,0,-0.00580432 -143593,7705:216:2,-56.5,71,0,0,-0.00580172 -143594,7705:216:1,-56,71,0,0,-0.00577855 -143595,7705:215:2,-55.5,71,0,0,-0.005716 -143596,7705:215:1,-55,71,0,0,-0.00570075 -143597,7705:112:1,-52,71,0,0,-0.00582237 -143598,7705:111:2,-51.5,71,0,0,-0.00580818 -143599,7705:111:1,-51,71,0,0,-0.00575548 -143600,7705:110:2,-50.5,71,0,0,-0.00570581 -143601,7705:110:1,-50,71,0,0,-0.00570965 -143602,7704:219:2,-49.5,71,0,0,-0.00572108 -143603,7704:219:1,-49,71,0,0,-0.00568307 -143604,7704:218:2,-48.5,71,0,0,-0.00566918 -143605,7704:218:1,-48,71,0,0,-0.00565282 -143606,7704:217:2,-47.5,71,0,0,-0.00562777 -143607,7704:217:1,-47,71,0,0,-0.00569445 -143608,7704:216:2,-46.5,71,0,0,-0.00575934 -143609,7704:216:1,-46,71,0,0,-0.00586132 -143610,7704:215:2,-45.5,71,0,0,-0.00586005 -143611,7704:215:1,-45,71,0,0,-0.00583795 -143612,7702:113:1,-23,71,0,0,-0.00571092 -143613,7702:112:2,-22.5,71,0,0,-0.00571092 -143614,7702:112:1,-22,71,0,0,-0.00569569 -143615,7702:110:2,-20.5,71,0,0,-0.00565409 -143616,7702:110:1,-20,71,0,0,-0.00565658 -143617,7701:219:2,-19.5,71,0,0,-0.00566288 -143618,7701:219:1,-19,71,0,0,-0.00566541 -143619,7701:218:2,-18.5,71,0,0,-0.00565658 -143620,7701:218:1,-18,71,0,0,-0.00563151 -143621,7701:217:2,-17.5,71,0,0,-0.00559039 -143622,7701:217:1,-17,71,0,0,-0.00567294 -143623,7701:216:2,-16.5,71,0,0,-0.00586784 -143624,7701:216:1,-16,71,0,0,-0.00615506 -143625,7701:215:2,-15.5,71,0,0,-0.00655772 -143626,7701:215:1,-15,71,0,0,-0.0068241 -143627,7701:114:2,-14.5,71,0,0,-0.00685148 -143628,7701:114:1,-14,71,0,0,-0.00668286 -143629,7701:113:2,-13.5,71,0,0,-0.00691734 -143630,7701:113:1,-13,71,0,0,-0.00783202 -143631,7701:112:2,-12.5,71,0,0,-0.00894816 -143632,7701:112:1,-12,71,0,0,-0.015762 -143633,7701:111:2,-11.5,71,0,0,-0.0172824 -143634,7701:111:1,-11,71,0,0,-0.0139552 -143635,7701:110:2,-10.5,71,0,0,-0.0109334 -143636,7701:110:1,-10,71,0,0,-0.0117254 -143637,7700:217:1,-7,71,0,0,-0.00570202 -143638,7700:216:2,-6.5,71,0,0,-0.00567675 -143639,7700:216:1,-6,71,0,0,-0.0056843 -143640,7700:215:2,-5.5,71,0,0,-0.00568558 -143641,7700:215:1,-5,71,0,0,-0.00567294 -143642,7700:114:2,-4.5,71,0,0,-0.00566668 -143643,7700:114:1,-4,71,0,0,-0.00569318 -143644,7700:113:2,-3.5,71,0,0,-0.00570581 -143645,7700:113:1,-3,71,0,0,-0.00570075 -143646,7700:112:2,-2.5,71,0,0,-0.00579916 -143647,7700:112:1,-2,71,0,0,-0.0065446 -143648,7700:111:2,-1.5,71,0,0,-0.0118917 -143649,7700:111:1,-1,71,0,0,-0.0113617 -143650,7700:110:2,-0.5,71,0,0,-0.0101659 -143651,1700:110:2,0,71,0,0,-0.00886088 -143652,1700:110:2,0.5,71,0,0,-0.00813425 -143653,1700:111:1,1,71,0,0,-0.0109212 -143654,1700:111:2,1.5,71,0,0,-0.0163018 -143655,1700:112:1,2,71,0,0,-0.0170012 -143656,1700:112:2,2.5,71,0,0,-0.0160476 -143657,1700:113:1,3,71,0,0,-0.014899 -143658,1700:113:2,3.5,71,0,0,-0.0137844 -143659,1700:114:1,4,71,0,0,-0.0130895 -143660,1700:114:2,4.5,71,0,0,-0.012166 -143661,1700:215:1,5,71,0,0,-0.0108652 -143662,1700:215:2,5.5,71,0,0,-0.00971567 -143663,1700:216:1,6,71,0,0,-0.00949073 -143664,1700:216:2,6.5,71,0,0,-0.00996151 -143665,1700:217:1,7,71,0,0,-0.0103537 -143666,1700:217:2,7.5,71,0,0,-0.0100845 -143667,1700:218:1,8,71,0,0,-0.010552 -143668,1700:218:2,8.5,71,0,0,-0.0111679 -143669,1700:219:1,9,71,0,0,-0.0111007 -143670,1700:219:2,9.5,71,0,0,-0.0108096 -143671,1701:110:1,10,71,0,0,-0.0114279 -143672,1701:110:2,10.5,71,0,0,-0.0128141 -143673,1701:111:1,11,71,0,0,-0.0135669 -143674,1701:111:2,11.5,71,0,0,-0.0139053 -143675,1701:112:1,12,71,0,0,-0.0147693 -143676,1701:112:2,12.5,71,0,0,-0.0158507 -143677,1701:113:1,13,71,0,0,-0.0159542 -143678,1701:113:2,13.5,71,0,0,-0.014358 -143679,1701:114:1,14,71,0,0,-0.0113439 -143680,1701:114:2,14.5,71,0,0,-0.0113999 -143681,1701:215:1,15,71,0,0,-0.0128141 -143682,1701:215:2,15.5,71,0,0,-0.0135032 -143683,1701:216:1,16,71,0,0,-0.013871 -143684,1701:216:2,16.5,71,0,0,-0.0136277 -143685,1701:217:1,17,71,0,0,-0.0119316 -143686,1701:217:2,17.5,71,0,0,-0.010559 -143687,1701:218:1,18,71,0,0,-0.0101863 -143688,1701:218:2,18.5,71,0,0,-0.0094886 -143689,1701:219:1,19,71,0,0,-0.00857143 -143690,1701:219:2,19.5,71,0,0,-0.00802627 -143691,1702:110:1,20,71,0,0,-0.00797104 -143692,1702:110:2,20.5,71,0,0,-0.00788103 -143693,1702:111:1,21,71,0,0,-0.00677567 -143694,1702:111:2,21.5,71,0,0,-0.00596515 -143695,1714:215:2,145.5,71,0,0,-0.00587569 -143696,1714:216:1,146,71,0,0,-0.00590449 -143697,1714:216:2,146.5,71,0,0,-0.00589925 -143698,1714:217:1,147,71,0,0,-0.00585611 -143699,1714:217:2,147.5,71,0,0,-0.00580302 -143700,1714:218:1,148,71,0,0,-0.00574526 -143701,1714:218:2,148.5,71,0,0,-0.00567045 -143702,1714:219:1,149,71,0,0,-0.00557922 -143703,1714:219:2,149.5,71,0,0,-0.00558789 -143704,1715:110:1,150,71,0,0,-0.005619 -143705,1715:110:2,150.5,71,0,0,-0.00562777 -143706,1715:111:1,151,71,0,0,-0.0056128 -143707,1715:111:2,151.5,71,0,0,-0.00559782 -143708,1715:112:1,152,71,0,0,-0.00559164 -143709,1715:112:2,152.5,71,0,0,-0.00559164 -143710,1715:113:1,153,71,0,0,-0.00559285 -143711,1715:113:2,153.5,71,0,0,-0.00559285 -143712,1715:114:1,154,71,0,0,-0.00559285 -143713,1715:114:2,154.5,71,0,0,-0.00559039 -143714,1715:215:1,155,71,0,0,-0.00558789 -143715,1715:215:2,155.5,71,0,0,-0.00558789 -143716,1715:216:1,156,71,0,0,-0.00558789 -143717,1715:216:2,156.5,71,0,0,-0.00559039 -143718,1715:217:1,157,71,0,0,-0.00559285 -143719,1715:217:2,157.5,71,0,0,-0.00559661 -143720,1715:218:1,158,71,0,0,-0.00560405 -143721,1715:218:2,158.5,71,0,0,-0.0056128 -143722,1715:219:1,159,71,0,0,-0.00562404 -143723,1715:219:2,159.5,71,0,0,-0.00563526 -143724,1716:110:1,160,71,0,0,-0.00564907 -143725,1716:110:2,160.5,71,0,0,-0.00566038 -143726,1716:111:1,161,71,0,0,-0.00566918 -143727,1716:111:2,161.5,71,0,0,-0.00567294 -143728,1716:112:1,162,71,0,0,-0.00567548 -143729,1716:112:2,162.5,71,0,0,-0.00567675 -143730,1716:113:1,163,71,0,0,-0.00567803 -143731,1716:113:2,163.5,71,0,0,-0.00567803 -143732,1716:114:1,164,71,0,0,-0.00567803 -143733,1716:114:2,164.5,71,0,0,-0.00567803 -143734,1716:215:1,165,71,0,0,-0.00567803 -143735,1716:215:2,165.5,71,0,0,-0.00567803 -143736,1716:216:1,166,71,0,0,-0.00567803 -143737,1716:216:2,166.5,71,0,0,-0.00567926 -143738,1716:217:1,167,71,0,0,-0.00567926 -143739,1716:217:2,167.5,71,0,0,-0.00567803 -143740,1716:218:1,168,71,0,0,-0.00567803 -143741,1716:218:2,168.5,71,0,0,-0.00567803 -143742,1716:219:1,169,71,0,0,-0.00567926 -143743,1716:219:2,169.5,71,0,0,-0.00568053 -143744,1717:110:1,170,71,0,0,-0.00568307 -143745,1717:110:2,170.5,71,0,0,-0.00568558 -143746,1717:111:1,171,71,0,0,-0.00568812 -143747,1717:111:2,171.5,71,0,0,-0.00569063 -143748,1717:112:1,172,71,0,0,-0.0056919 -143749,1717:112:2,172.5,71,0,0,-0.00569318 -143750,1717:113:1,173,71,0,0,-0.00569445 -143751,1717:113:2,173.5,71,0,0,-0.00569445 -143752,1717:114:1,174,71,0,0,-0.00569569 -143753,1717:114:2,174.5,71,0,0,-0.00569696 -143754,1717:215:1,175,71,0,0,-0.00569696 -143755,1717:215:2,175.5,71,0,0,-0.00569824 -143756,1717:216:1,176,71,0,0,-0.00569824 -143757,1717:216:2,176.5,71,0,0,-0.00569951 -143758,1717:217:1,177,71,0,0,-0.00570075 -143759,1717:217:2,177.5,71,0,0,-0.00570075 -143760,1717:218:1,178,71,0,0,-0.00570458 -143761,1717:218:2,178.5,71,0,0,-0.00571092 -143762,1717:219:1,179,71,0,0,-0.00572108 -143763,1717:219:2,179.5,71,0,0,-0.00573125 -143764,1718:110:1,180,71,0,0,-0.00573635 -143765,7718:110:3,-180,71.5,0,0,-0.00572997 -143766,7717:219:4,-179.5,71.5,0,0,-0.00573506 -143767,7717:219:3,-179,71.5,0,0,-0.00573888 -143768,7717:218:4,-178.5,71.5,0,0,-0.00573888 -143769,7717:218:3,-178,71.5,0,0,-0.00573763 -143770,7717:217:4,-177.5,71.5,0,0,-0.00573888 -143771,7717:217:3,-177,71.5,0,0,-0.00574016 -143772,7717:216:4,-176.5,71.5,0,0,-0.00574273 -143773,7717:216:3,-176,71.5,0,0,-0.00574526 -143774,7717:215:4,-175.5,71.5,0,0,-0.00574526 -143775,7717:215:3,-175,71.5,0,0,-0.00574655 -143776,7717:114:4,-174.5,71.5,0,0,-0.00574655 -143777,7717:114:3,-174,71.5,0,0,-0.00574655 -143778,7717:113:4,-173.5,71.5,0,0,-0.00574526 -143779,7717:113:3,-173,71.5,0,0,-0.00574273 -143780,7717:112:4,-172.5,71.5,0,0,-0.00574016 -143781,7717:112:3,-172,71.5,0,0,-0.00573888 -143782,7717:111:4,-171.5,71.5,0,0,-0.00574016 -143783,7717:111:3,-171,71.5,0,0,-0.00574398 -143784,7717:110:4,-170.5,71.5,0,0,-0.00574912 -143785,7717:110:3,-170,71.5,0,0,-0.00575037 -143786,7716:219:4,-169.5,71.5,0,0,-0.00575165 -143787,7716:219:3,-169,71.5,0,0,-0.00575423 -143788,7716:218:4,-168.5,71.5,0,0,-0.00575294 -143789,7716:218:3,-168,71.5,0,0,-0.00574655 -143790,7716:217:4,-167.5,71.5,0,0,-0.00573888 -143791,7716:217:3,-167,71.5,0,0,-0.00573635 -143792,7716:216:4,-166.5,71.5,0,0,-0.00573635 -143793,7716:216:3,-166,71.5,0,0,-0.00573888 -143794,7716:215:4,-165.5,71.5,0,0,-0.00574144 -143795,7716:215:3,-165,71.5,0,0,-0.00574016 -143796,7716:114:4,-164.5,71.5,0,0,-0.00573506 -143797,7716:114:3,-164,71.5,0,0,-0.00573125 -143798,7716:113:4,-163.5,71.5,0,0,-0.00572741 -143799,7716:113:3,-163,71.5,0,0,-0.0057236 -143800,7716:112:4,-162.5,71.5,0,0,-0.0057198 -143801,7716:112:3,-162,71.5,0,0,-0.00571852 -143802,7716:111:4,-161.5,71.5,0,0,-0.00571724 -143803,7716:111:3,-161,71.5,0,0,-0.00571472 -143804,7716:110:4,-160.5,71.5,0,0,-0.00571216 -143805,7716:110:3,-160,71.5,0,0,-0.00571216 -143806,7715:219:4,-159.5,71.5,0,0,-0.00571216 -143807,7715:219:3,-159,71.5,0,0,-0.00571344 -143808,7715:218:4,-158.5,71.5,0,0,-0.005716 -143809,7715:218:3,-158,71.5,0,0,-0.0057236 -143810,7715:217:4,-157.5,71.5,0,0,-0.00573125 -143811,7715:217:3,-157,71.5,0,0,-0.00573763 -143812,7715:216:4,-156.5,71.5,0,0,-0.00574273 -143813,7715:216:3,-156,71.5,0,0,-0.00574273 -143814,7715:215:4,-155.5,71.5,0,0,-0.00573254 -143815,7715:215:3,-155,71.5,0,0,-0.00571724 -143816,7715:114:4,-154.5,71.5,0,0,-0.00570202 -143817,7715:114:3,-154,71.5,0,0,-0.005716 -143818,7715:113:4,-153.5,71.5,0,0,-0.00572869 -143819,7715:113:3,-153,71.5,0,0,-0.00564279 -143820,7715:112:4,-152.5,71.5,0,0,-0.00559661 -143821,7715:112:3,-152,71.5,0,0,-0.00557426 -143822,7714:219:4,-149.5,71.5,0,0,-0.00575677 -143823,7714:219:3,-149,71.5,0,0,-0.00577985 -143824,7714:218:4,-148.5,71.5,0,0,-0.00580818 -143825,7714:217:4,-147.5,71.5,0,0,-0.00575037 -143826,7714:217:3,-147,71.5,0,0,-0.00574144 -143827,7714:216:4,-146.5,71.5,0,0,-0.00574526 -143828,7714:216:3,-146,71.5,0,0,-0.00574526 -143829,7714:215:4,-145.5,71.5,0,0,-0.00575806 -143830,7714:215:3,-145,71.5,0,0,-0.00575423 -143831,7714:114:4,-144.5,71.5,0,0,-0.00576059 -143832,7714:114:3,-144,71.5,0,0,-0.00577342 -143833,7714:113:4,-143.5,71.5,0,0,-0.00579012 -143834,7714:113:3,-143,71.5,0,0,-0.00581204 -143835,7714:112:4,-142.5,71.5,0,0,-0.00584441 -143836,7714:112:3,-142,71.5,0,0,-0.00586526 -143837,7707:216:4,-76.5,71.5,0,0,-0.00713777 -143838,7707:216:3,-76,71.5,0,0,-0.00713937 -143839,7707:215:4,-75.5,71.5,0,0,-0.00708398 -143840,7707:215:3,-75,71.5,0,0,-0.00700715 -143841,7707:114:4,-74.5,71.5,0,0,-0.00690195 -143842,7707:114:3,-74,71.5,0,0,-0.00683926 -143843,7707:113:4,-73.5,71.5,0,0,-0.00655483 -143844,7707:113:3,-73,71.5,0,0,-0.00637371 -143845,7706:218:3,-68,71.5,0,0,-0.00581204 -143846,7706:217:4,-67.5,71.5,0,0,-0.00579916 -143847,7706:217:3,-67,71.5,0,0,-0.00577855 -143848,7706:216:4,-66.5,71.5,0,0,-0.00576829 -143849,7706:216:3,-66,71.5,0,0,-0.00576446 -143850,7706:215:4,-65.5,71.5,0,0,-0.005767 -143851,7706:215:3,-65,71.5,0,0,-0.00576829 -143852,7705:217:4,-57.5,71.5,0,0,-0.00581464 -143853,7705:217:3,-57,71.5,0,0,-0.00580432 -143854,7705:216:4,-56.5,71.5,0,0,-0.00579142 -143855,7705:216:3,-56,71.5,0,0,-0.00573378 -143856,7705:215:4,-55.5,71.5,0,0,-0.00568685 -143857,7705:215:3,-55,71.5,0,0,-0.0056818 -143858,7705:111:4,-51.5,71.5,0,0,-0.00582368 -143859,7705:110:3,-50,71.5,0,0,-0.00582368 -143860,7704:219:4,-49.5,71.5,0,0,-0.00577471 -143861,7704:219:3,-49,71.5,0,0,-0.00570837 -143862,7704:218:4,-48.5,71.5,0,0,-0.00568307 -143863,7704:218:3,-48,71.5,0,0,-0.00567803 -143864,7704:217:4,-47.5,71.5,0,0,-0.00566668 -143865,7704:217:3,-47,71.5,0,0,-0.00564654 -143866,7704:216:4,-46.5,71.5,0,0,-0.00565658 -143867,7704:216:3,-46,71.5,0,0,-0.00566038 -143868,7704:215:4,-45.5,71.5,0,0,-0.00567548 -143869,7704:215:3,-45,71.5,0,0,-0.00581204 -143870,7704:110:4,-40.5,71.5,0,0,-0.00569318 -143871,7702:215:3,-25,71.5,0,0,-0.00567171 -143872,7702:114:4,-24.5,71.5,0,0,-0.00567548 -143873,7702:114:3,-24,71.5,0,0,-0.0056843 -143874,7702:113:4,-23.5,71.5,0,0,-0.00568936 -143875,7702:113:3,-23,71.5,0,0,-0.00568053 -143876,7702:112:4,-22.5,71.5,0,0,-0.00567421 -143877,7702:112:3,-22,71.5,0,0,-0.00566541 -143878,7702:111:4,-21.5,71.5,0,0,-0.00566165 -143879,7702:111:3,-21,71.5,0,0,-0.00566165 -143880,7702:110:4,-20.5,71.5,0,0,-0.00566165 -143881,7702:110:3,-20,71.5,0,0,-0.00566541 -143882,7701:219:4,-19.5,71.5,0,0,-0.00566918 -143883,7701:219:3,-19,71.5,0,0,-0.00565785 -143884,7701:218:4,-18.5,71.5,0,0,-0.00563526 -143885,7701:218:3,-18,71.5,0,0,-0.00561154 -143886,7701:217:4,-17.5,71.5,0,0,-0.00559164 -143887,7701:217:3,-17,71.5,0,0,-0.00557177 -143888,7701:216:4,-16.5,71.5,0,0,-0.00566541 -143889,7701:216:3,-16,71.5,0,0,-0.00595456 -143890,7701:215:4,-15.5,71.5,0,0,-0.00611282 -143891,7701:215:3,-15,71.5,0,0,-0.00614821 -143892,7701:114:4,-14.5,71.5,0,0,-0.00600241 -143893,7701:114:3,-14,71.5,0,0,-0.00599041 -143894,7701:113:4,-13.5,71.5,0,0,-0.00730649 -143895,7701:113:3,-13,71.5,0,0,-0.00990827 -143896,7701:112:4,-12.5,71.5,0,0,-0.0110439 -143897,7701:112:3,-12,71.5,0,0,-0.0115408 -143898,7701:111:4,-11.5,71.5,0,0,-0.0162106 -143899,7701:111:3,-11,71.5,0,0,-0.0159328 -143900,7701:110:4,-10.5,71.5,0,0,-0.0139928 -143901,7701:110:3,-10,71.5,0,0,-0.00936669 -143902,7700:219:4,-9.5,71.5,0,0,-0.00771948 -143903,7700:216:3,-6,71.5,0,0,-0.00570202 -143904,7700:215:4,-5.5,71.5,0,0,-0.00568936 -143905,7700:215:3,-5,71.5,0,0,-0.00568812 -143906,7700:114:4,-4.5,71.5,0,0,-0.00573506 -143907,7700:114:3,-4,71.5,0,0,-0.00583016 -143908,7700:113:4,-3.5,71.5,0,0,-0.00590842 -143909,7700:113:3,-3,71.5,0,0,-0.0059944 -143910,7700:112:4,-2.5,71.5,0,0,-0.0069281 -143911,7700:112:3,-2,71.5,0,0,-0.0101432 -143912,7700:111:4,-1.5,71.5,0,0,-0.0117228 -143913,7700:111:3,-1,71.5,0,0,-0.00983339 -143914,7700:110:4,-0.5,71.5,0,0,-0.0086675 -143915,1700:110:4,0,71.5,0,0,-0.00812877 -143916,1700:110:4,0.5,71.5,0,0,-0.00733423 -143917,1700:111:3,1,71.5,0,0,-0.0077747 -143918,1700:111:4,1.5,71.5,0,0,-0.0118281 -143919,1700:112:3,2,71.5,0,0,-0.0148324 -143920,1700:112:4,2.5,71.5,0,0,-0.0155303 -143921,1700:113:3,3,71.5,0,0,-0.0149024 -143922,1700:113:4,3.5,71.5,0,0,-0.0143548 -143923,1700:114:3,4,71.5,0,0,-0.0136859 -143924,1700:114:4,4.5,71.5,0,0,-0.0130573 -143925,1700:215:3,5,71.5,0,0,-0.0116288 -143926,1700:215:4,5.5,71.5,0,0,-0.0109066 -143927,1700:216:3,6,71.5,0,0,-0.0105473 -143928,1700:216:4,6.5,71.5,0,0,-0.0105897 -143929,1700:217:3,7,71.5,0,0,-0.0108895 -143930,1700:217:4,7.5,71.5,0,0,-0.0107087 -143931,1700:218:3,8,71.5,0,0,-0.0110389 -143932,1700:218:4,8.5,71.5,0,0,-0.0114457 -143933,1700:219:3,9,71.5,0,0,-0.011138 -143934,1700:219:4,9.5,71.5,0,0,-0.0112053 -143935,1701:110:3,10,71.5,0,0,-0.0117254 -143936,1701:110:4,10.5,71.5,0,0,-0.0124412 -143937,1701:111:3,11,71.5,0,0,-0.0135426 -143938,1701:111:4,11.5,71.5,0,0,-0.0146243 -143939,1701:112:3,12,71.5,0,0,-0.0154434 -143940,1701:112:4,12.5,71.5,0,0,-0.0158437 -143941,1701:113:3,13,71.5,0,0,-0.0156703 -143942,1701:113:4,13.5,71.5,0,0,-0.0143999 -143943,1701:114:3,14,71.5,0,0,-0.0119611 -143944,1701:114:4,14.5,71.5,0,0,-0.0116809 -143945,1701:215:3,15,71.5,0,0,-0.0123304 -143946,1701:215:4,15.5,71.5,0,0,-0.0127284 -143947,1701:216:3,16,71.5,0,0,-0.0130252 -143948,1701:216:4,16.5,71.5,0,0,-0.0128256 -143949,1701:217:3,17,71.5,0,0,-0.0119718 -143950,1701:217:4,17.5,71.5,0,0,-0.0113287 -143951,1701:218:3,18,71.5,0,0,-0.0107686 -143952,1701:218:4,18.5,71.5,0,0,-0.0102319 -143953,1701:219:3,19,71.5,0,0,-0.00935624 -143954,1701:219:4,19.5,71.5,0,0,-0.00854664 -143955,1702:110:3,20,71.5,0,0,-0.00811795 -143956,1702:110:4,20.5,71.5,0,0,-0.00717597 -143957,1702:111:3,21,71.5,0,0,-0.00622941 -143958,1702:111:4,21.5,71.5,0,0,-0.00598375 -143959,1714:215:3,145,71.5,0,0,-0.00588091 -143960,1714:215:4,145.5,71.5,0,0,-0.00590577 -143961,1714:216:3,146,71.5,0,0,-0.00591106 -143962,1714:216:4,146.5,71.5,0,0,-0.00588745 -143963,1714:217:3,147,71.5,0,0,-0.00584833 -143964,1714:217:4,147.5,71.5,0,0,-0.00580688 -143965,1714:218:3,148,71.5,0,0,-0.00575806 -143966,1714:218:4,148.5,71.5,0,0,-0.00566541 -143967,1714:219:3,149,71.5,0,0,-0.00554832 -143968,1714:219:4,149.5,71.5,0,0,-0.0055557 -143969,1715:110:3,150,71.5,0,0,-0.00560158 -143970,1715:110:4,150.5,71.5,0,0,-0.00561778 -143971,1715:111:3,151,71.5,0,0,-0.00560656 -143972,1715:111:4,151.5,71.5,0,0,-0.00559039 -143973,1715:112:3,152,71.5,0,0,-0.00557922 -143974,1715:112:4,152.5,71.5,0,0,-0.00557426 -143975,1715:113:3,153,71.5,0,0,-0.00557302 -143976,1715:113:4,153.5,71.5,0,0,-0.00557551 -143977,1715:114:3,154,71.5,0,0,-0.00558168 -143978,1715:114:4,154.5,71.5,0,0,-0.00558418 -143979,1715:215:3,155,71.5,0,0,-0.00558543 -143980,1715:215:4,155.5,71.5,0,0,-0.00559039 -143981,1715:216:3,156,71.5,0,0,-0.00559661 -143982,1715:216:4,156.5,71.5,0,0,-0.00560405 -143983,1715:217:3,157,71.5,0,0,-0.00560781 -143984,1715:217:4,157.5,71.5,0,0,-0.00561029 -143985,1715:218:3,158,71.5,0,0,-0.00561402 -143986,1715:218:4,158.5,71.5,0,0,-0.00562026 -143987,1715:219:3,159,71.5,0,0,-0.00562903 -143988,1715:219:4,159.5,71.5,0,0,-0.00563652 -143989,1716:110:3,160,71.5,0,0,-0.00564781 -143990,1716:110:4,160.5,71.5,0,0,-0.00565658 -143991,1716:111:3,161,71.5,0,0,-0.00566414 -143992,1716:111:4,161.5,71.5,0,0,-0.00566918 -143993,1716:112:3,162,71.5,0,0,-0.00567421 -143994,1716:112:4,162.5,71.5,0,0,-0.00567803 -143995,1716:113:3,163,71.5,0,0,-0.00567926 -143996,1716:113:4,163.5,71.5,0,0,-0.00567926 -143997,1716:114:3,164,71.5,0,0,-0.00567926 -143998,1716:114:4,164.5,71.5,0,0,-0.00567926 -143999,1716:215:3,165,71.5,0,0,-0.00567926 -144000,1716:215:4,165.5,71.5,0,0,-0.00567803 -144001,1716:216:3,166,71.5,0,0,-0.00567803 -144002,1716:216:4,166.5,71.5,0,0,-0.00567803 -144003,1716:217:3,167,71.5,0,0,-0.00567803 -144004,1716:217:4,167.5,71.5,0,0,-0.00567803 -144005,1716:218:3,168,71.5,0,0,-0.00567803 -144006,1716:218:4,168.5,71.5,0,0,-0.00567803 -144007,1716:219:3,169,71.5,0,0,-0.00567926 -144008,1716:219:4,169.5,71.5,0,0,-0.00568053 -144009,1717:110:3,170,71.5,0,0,-0.0056818 -144010,1717:110:4,170.5,71.5,0,0,-0.0056843 -144011,1717:111:3,171,71.5,0,0,-0.00568685 -144012,1717:111:4,171.5,71.5,0,0,-0.00568936 -144013,1717:112:3,172,71.5,0,0,-0.0056919 -144014,1717:112:4,172.5,71.5,0,0,-0.0056919 -144015,1717:113:3,173,71.5,0,0,-0.00569318 -144016,1717:113:4,173.5,71.5,0,0,-0.00569318 -144017,1717:114:3,174,71.5,0,0,-0.00569445 -144018,1717:114:4,174.5,71.5,0,0,-0.00569569 -144019,1717:215:3,175,71.5,0,0,-0.00569696 -144020,1717:215:4,175.5,71.5,0,0,-0.00569696 -144021,1717:216:3,176,71.5,0,0,-0.00569696 -144022,1717:216:4,176.5,71.5,0,0,-0.00569696 -144023,1717:217:3,177,71.5,0,0,-0.00569569 -144024,1717:217:4,177.5,71.5,0,0,-0.00569569 -144025,1717:218:3,178,71.5,0,0,-0.00569824 -144026,1717:218:4,178.5,71.5,0,0,-0.00570202 -144027,1717:219:3,179,71.5,0,0,-0.00571092 -144028,1717:219:4,179.5,71.5,0,0,-0.00572108 -144029,1718:110:3,180,71.5,0,0,-0.00572997 -144030,7718:120:1,-180,72,0,0,-0.00571852 -144031,7717:229:2,-179.5,72,0,0,-0.00572741 -144032,7717:229:1,-179,72,0,0,-0.00573254 -144033,7717:228:2,-178.5,72,0,0,-0.00573254 -144034,7717:228:1,-178,72,0,0,-0.00573378 -144035,7717:227:2,-177.5,72,0,0,-0.00573635 -144036,7717:227:1,-177,72,0,0,-0.00574016 -144037,7717:226:2,-176.5,72,0,0,-0.00574144 -144038,7717:226:1,-176,72,0,0,-0.00574144 -144039,7717:225:2,-175.5,72,0,0,-0.00574016 -144040,7717:225:1,-175,72,0,0,-0.00574144 -144041,7717:124:2,-174.5,72,0,0,-0.00574273 -144042,7717:124:1,-174,72,0,0,-0.00574398 -144043,7717:123:2,-173.5,72,0,0,-0.00574398 -144044,7717:123:1,-173,72,0,0,-0.00574398 -144045,7717:122:2,-172.5,72,0,0,-0.00574273 -144046,7717:122:1,-172,72,0,0,-0.00574273 -144047,7717:121:2,-171.5,72,0,0,-0.00574398 -144048,7717:121:1,-171,72,0,0,-0.00574655 -144049,7717:120:2,-170.5,72,0,0,-0.00574655 -144050,7717:120:1,-170,72,0,0,-0.00574526 -144051,7716:229:2,-169.5,72,0,0,-0.00574398 -144052,7716:229:1,-169,72,0,0,-0.00574655 -144053,7716:228:2,-168.5,72,0,0,-0.00575037 -144054,7716:228:1,-168,72,0,0,-0.00575037 -144055,7716:227:2,-167.5,72,0,0,-0.00574398 -144056,7716:227:1,-167,72,0,0,-0.00574016 -144057,7716:226:2,-166.5,72,0,0,-0.00573763 -144058,7716:226:1,-166,72,0,0,-0.00573888 -144059,7716:225:2,-165.5,72,0,0,-0.00574016 -144060,7716:225:1,-165,72,0,0,-0.00573888 -144061,7716:124:2,-164.5,72,0,0,-0.00573378 -144062,7716:124:1,-164,72,0,0,-0.00572741 -144063,7716:123:2,-163.5,72,0,0,-0.00572232 -144064,7716:123:1,-163,72,0,0,-0.00571852 -144065,7716:122:2,-162.5,72,0,0,-0.00571724 -144066,7716:122:1,-162,72,0,0,-0.00571472 -144067,7716:121:2,-161.5,72,0,0,-0.00571344 -144068,7716:121:1,-161,72,0,0,-0.00571092 -144069,7716:120:2,-160.5,72,0,0,-0.00570965 -144070,7716:120:1,-160,72,0,0,-0.00571092 -144071,7715:229:2,-159.5,72,0,0,-0.00571216 -144072,7715:229:1,-159,72,0,0,-0.00571724 -144073,7715:228:2,-158.5,72,0,0,-0.00572488 -144074,7715:228:1,-158,72,0,0,-0.00573635 -144075,7715:227:2,-157.5,72,0,0,-0.00574526 -144076,7715:227:1,-157,72,0,0,-0.00575037 -144077,7715:226:2,-156.5,72,0,0,-0.00574783 -144078,7715:226:1,-156,72,0,0,-0.00573378 -144079,7715:225:2,-155.5,72,0,0,-0.00571344 -144080,7715:225:1,-155,72,0,0,-0.00569951 -144081,7715:124:2,-154.5,72,0,0,-0.00569569 -144082,7715:124:1,-154,72,0,0,-0.00572488 -144083,7715:123:2,-153.5,72,0,0,-0.00566918 -144084,7715:123:1,-153,72,0,0,-0.00558543 -144085,7715:122:2,-152.5,72,0,0,-0.0055446 -144086,7714:227:2,-147.5,72,0,0,-0.00574912 -144087,7714:227:1,-147,72,0,0,-0.00574655 -144088,7714:226:2,-146.5,72,0,0,-0.00573635 -144089,7714:226:1,-146,72,0,0,-0.00573635 -144090,7714:225:2,-145.5,72,0,0,-0.00576188 -144091,7714:225:1,-145,72,0,0,-0.00576446 -144092,7714:124:2,-144.5,72,0,0,-0.00575677 -144093,7714:124:1,-144,72,0,0,-0.00575294 -144094,7714:123:2,-143.5,72,0,0,-0.00574783 -144095,7714:123:1,-143,72,0,0,-0.00574655 -144096,7714:122:2,-142.5,72,0,0,-0.00575934 -144097,7714:122:1,-142,72,0,0,-0.00578757 -144098,7714:121:2,-141.5,72,0,0,-0.00582628 -144099,7707:226:2,-76.5,72,0,0,-0.00705724 -144100,7707:226:1,-76,72,0,0,-0.00704312 -144101,7707:225:2,-75.5,72,0,0,-0.0069004 -144102,7707:225:1,-75,72,0,0,-0.00680439 -144103,7707:124:1,-74,72,0,0,-0.00649822 -144104,7707:123:2,-73.5,72,0,0,-0.00645931 -144105,7707:123:1,-73,72,0,0,-0.00637795 -144106,7707:122:2,-72.5,72,0,0,-0.00628226 -144107,7707:122:1,-72,72,0,0,-0.00620592 -144108,7706:228:1,-68,72,0,0,-0.0058159 -144109,7706:227:2,-67.5,72,0,0,-0.00581334 -144110,7706:227:1,-67,72,0,0,-0.00579527 -144111,7706:226:2,-66.5,72,0,0,-0.00578369 -144112,7706:226:1,-66,72,0,0,-0.00577726 -144113,7706:225:2,-65.5,72,0,0,-0.00577601 -144114,7706:225:1,-65,72,0,0,-0.00577088 -144115,7706:124:2,-64.5,72,0,0,-0.00576446 -144116,7706:124:1,-64,72,0,0,-0.00576188 -144117,7706:123:2,-63.5,72,0,0,-0.00575037 -144118,7705:227:2,-57.5,72,0,0,-0.00580558 -144119,7705:227:1,-57,72,0,0,-0.00579916 -144120,7705:226:2,-56.5,72,0,0,-0.00577985 -144121,7705:226:1,-56,72,0,0,-0.00573254 -144122,7705:121:2,-51.5,72,0,0,-0.00580302 -144123,7705:121:1,-51,72,0,0,-0.00580432 -144124,7704:228:1,-48,72,0,0,-0.00570075 -144125,7704:227:2,-47.5,72,0,0,-0.00568936 -144126,7704:227:1,-47,72,0,0,-0.00567421 -144127,7704:226:2,-46.5,72,0,0,-0.00567171 -144128,7704:226:1,-46,72,0,0,-0.00567171 -144129,7704:225:2,-45.5,72,0,0,-0.00567171 -144130,7704:225:1,-45,72,0,0,-0.0056843 -144131,7704:124:2,-44.5,72,0,0,-0.00573378 -144132,7704:123:1,-43,72,0,0,-0.0056919 -144133,7704:122:2,-42.5,72,0,0,-0.00568936 -144134,7704:122:1,-42,72,0,0,-0.00567548 -144135,7704:121:2,-41.5,72,0,0,-0.00568053 -144136,7704:121:1,-41,72,0,0,-0.00567171 -144137,7704:120:2,-40.5,72,0,0,-0.00566668 -144138,7704:120:1,-40,72,0,0,-0.00566791 -144139,7703:229:2,-39.5,72,0,0,-0.00568685 -144140,7702:123:1,-23,72,0,0,-0.00568053 -144141,7702:122:2,-22.5,72,0,0,-0.00567548 -144142,7702:122:1,-22,72,0,0,-0.00567171 -144143,7702:121:2,-21.5,72,0,0,-0.00566918 -144144,7702:121:1,-21,72,0,0,-0.00566791 -144145,7702:120:2,-20.5,72,0,0,-0.00566791 -144146,7702:120:1,-20,72,0,0,-0.00566791 -144147,7701:229:2,-19.5,72,0,0,-0.00566165 -144148,7701:229:1,-19,72,0,0,-0.00563277 -144149,7701:228:2,-18.5,72,0,0,-0.00559661 -144150,7701:228:1,-18,72,0,0,-0.00557672 -144151,7701:227:2,-17.5,72,0,0,-0.00556313 -144152,7701:227:1,-17,72,0,0,-0.00554832 -144153,7701:226:2,-16.5,72,0,0,-0.0055434 -144154,7701:226:1,-16,72,0,0,-0.00555694 -144155,7701:225:2,-15.5,72,0,0,-0.00564153 -144156,7701:225:1,-15,72,0,0,-0.00568307 -144157,7701:124:2,-14.5,72,0,0,-0.00568307 -144158,7701:124:1,-14,72,0,0,-0.00592551 -144159,7701:123:2,-13.5,72,0,0,-0.0070306 -144160,7701:123:1,-13,72,0,0,-0.00900018 -144161,7701:122:2,-12.5,72,0,0,-0.0108847 -144162,7701:122:1,-12,72,0,0,-0.0134519 -144163,7701:121:2,-11.5,72,0,0,-0.0155268 -144164,7701:121:1,-11,72,0,0,-0.0160585 -144165,7701:120:2,-10.5,72,0,0,-0.0152131 -144166,7701:120:1,-10,72,0,0,-0.0103006 -144167,7700:229:2,-9.5,72,0,0,-0.0068317 -144168,7700:229:1,-9,72,0,0,-0.006253 -144169,7700:228:2,-8.5,72,0,0,-0.00728864 -144170,7700:226:1,-6,72,0,0,-0.00579012 -144171,7700:225:2,-5.5,72,0,0,-0.00582885 -144172,7700:225:1,-5,72,0,0,-0.00577088 -144173,7700:124:2,-4.5,72,0,0,-0.00575423 -144174,7700:124:1,-4,72,0,0,-0.0058159 -144175,7700:123:2,-3.5,72,0,0,-0.00592945 -144176,7700:123:1,-3,72,0,0,-0.00611415 -144177,7700:122:2,-2.5,72,0,0,-0.00745599 -144178,7700:122:1,-2,72,0,0,-0.00940642 -144179,7700:121:2,-1.5,72,0,0,-0.00762047 -144180,7700:121:1,-1,72,0,0,-0.00677268 -144181,7700:120:2,-0.5,72,0,0,-0.0066547 -144182,1700:120:2,0,72,0,0,-0.00724497 -144183,1700:120:2,0.5,72,0,0,-0.00723371 -144184,1700:121:1,1,72,0,0,-0.00695123 -144185,1700:121:2,1.5,72,0,0,-0.00694505 -144186,1700:122:1,2,72,0,0,-0.00856572 -144187,1700:122:2,2.5,72,0,0,-0.0123691 -144188,1700:123:1,3,72,0,0,-0.0139709 -144189,1700:123:2,3.5,72,0,0,-0.0140713 -144190,1700:124:1,4,72,0,0,-0.0122617 -144191,1700:124:2,4.5,72,0,0,-0.0123746 -144192,1700:225:1,5,72,0,0,-0.0121769 -144193,1700:225:2,5.5,72,0,0,-0.0118017 -144194,1700:226:1,6,72,0,0,-0.011433 -144195,1700:226:2,6.5,72,0,0,-0.0111728 -144196,1700:227:1,7,72,0,0,-0.0110537 -144197,1700:227:2,7.5,72,0,0,-0.0113668 -144198,1700:228:1,8,72,0,0,-0.0122425 -144199,1700:228:2,8.5,72,0,0,-0.0122864 -144200,1700:229:1,9,72,0,0,-0.0122699 -144201,1700:229:2,9.5,72,0,0,-0.0126545 -144202,1701:120:1,10,72,0,0,-0.0127683 -144203,1701:120:2,10.5,72,0,0,-0.0127998 -144204,1701:121:1,11,72,0,0,-0.013225 -144205,1701:121:2,11.5,72,0,0,-0.0140777 -144206,1701:122:1,12,72,0,0,-0.0152815 -144207,1701:122:2,12.5,72,0,0,-0.0154816 -144208,1701:123:1,13,72,0,0,-0.0146507 -144209,1701:123:2,13.5,72,0,0,-0.012967 -144210,1701:124:1,14,72,0,0,-0.0117622 -144211,1701:124:2,14.5,72,0,0,-0.0117333 -144212,1701:225:1,15,72,0,0,-0.0117595 -144213,1701:225:2,15.5,72,0,0,-0.0105685 -144214,1701:226:1,16,72,0,0,-0.00981587 -144215,1701:226:2,16.5,72,0,0,-0.00936459 -144216,1701:227:1,17,72,0,0,-0.00962502 -144217,1701:227:2,17.5,72,0,0,-0.00971779 -144218,1701:228:1,18,72,0,0,-0.00985538 -144219,1701:228:2,18.5,72,0,0,-0.00984659 -144220,1701:229:1,19,72,0,0,-0.00904647 -144221,1701:229:2,19.5,72,0,0,-0.00804954 -144222,1702:120:1,20,72,0,0,-0.00747759 -144223,1702:120:2,20.5,72,0,0,-0.0067606 -144224,1702:121:1,21,72,0,0,-0.0063285 -144225,1702:122:2,22.5,72,0,0,-0.00670822 -144226,1702:123:1,23,72,0,0,-0.0067953 -144227,1714:123:2,143.5,72,0,0,-0.00578757 -144228,1714:124:1,144,72,0,0,-0.00582755 -144229,1714:124:2,144.5,72,0,0,-0.00587828 -144230,1714:225:1,145,72,0,0,-0.00590577 -144231,1714:225:2,145.5,72,0,0,-0.00589529 -144232,1714:226:1,146,72,0,0,-0.00586784 -144233,1714:226:2,146.5,72,0,0,-0.00583534 -144234,1714:227:1,147,72,0,0,-0.00579916 -144235,1714:227:2,147.5,72,0,0,-0.00574144 -144236,1714:228:1,148,72,0,0,-0.00565033 -144237,1714:228:2,148.5,72,0,0,-0.00557551 -144238,1714:229:1,149,72,0,0,-0.00553724 -144239,1714:229:2,149.5,72,0,0,-0.00552985 -144240,1715:120:1,150,72,0,0,-0.00558047 -144241,1715:120:2,150.5,72,0,0,-0.00560158 -144242,1715:121:1,151,72,0,0,-0.0055941 -144243,1715:121:2,151.5,72,0,0,-0.00557922 -144244,1715:122:1,152,72,0,0,-0.00556558 -144245,1715:122:2,152.5,72,0,0,-0.00555694 -144246,1715:123:1,153,72,0,0,-0.00555325 -144247,1715:123:2,153.5,72,0,0,-0.0055557 -144248,1715:124:1,154,72,0,0,-0.00556682 -144249,1715:124:2,154.5,72,0,0,-0.00557426 -144250,1715:225:1,155,72,0,0,-0.00558168 -144251,1715:225:2,155.5,72,0,0,-0.00559164 -144252,1715:226:1,156,72,0,0,-0.00560158 -144253,1715:226:2,156.5,72,0,0,-0.00560903 -144254,1715:227:1,157,72,0,0,-0.00561527 -144255,1715:227:2,157.5,72,0,0,-0.00562026 -144256,1715:228:1,158,72,0,0,-0.00562404 -144257,1715:228:2,158.5,72,0,0,-0.00562526 -144258,1715:229:1,159,72,0,0,-0.00562777 -144259,1715:229:2,159.5,72,0,0,-0.00563404 -144260,1716:120:1,160,72,0,0,-0.00564153 -144261,1716:120:2,160.5,72,0,0,-0.00564907 -144262,1716:121:1,161,72,0,0,-0.00565658 -144263,1716:121:2,161.5,72,0,0,-0.00566288 -144264,1716:122:1,162,72,0,0,-0.00567045 -144265,1716:122:2,162.5,72,0,0,-0.00567548 -144266,1716:123:1,163,72,0,0,-0.00567803 -144267,1716:123:2,163.5,72,0,0,-0.00567803 -144268,1716:124:1,164,72,0,0,-0.00567803 -144269,1716:124:2,164.5,72,0,0,-0.00567675 -144270,1716:225:1,165,72,0,0,-0.00567675 -144271,1716:225:2,165.5,72,0,0,-0.00567548 -144272,1716:226:1,166,72,0,0,-0.00567548 -144273,1716:226:2,166.5,72,0,0,-0.00567548 -144274,1716:227:1,167,72,0,0,-0.00567548 -144275,1716:227:2,167.5,72,0,0,-0.00567548 -144276,1716:228:1,168,72,0,0,-0.00567548 -144277,1716:228:2,168.5,72,0,0,-0.00567675 -144278,1716:229:1,169,72,0,0,-0.00567926 -144279,1716:229:2,169.5,72,0,0,-0.00568053 -144280,1717:120:1,170,72,0,0,-0.00568307 -144281,1717:120:2,170.5,72,0,0,-0.0056843 -144282,1717:121:1,171,72,0,0,-0.00568812 -144283,1717:121:2,171.5,72,0,0,-0.00568936 -144284,1717:122:1,172,72,0,0,-0.00569063 -144285,1717:122:2,172.5,72,0,0,-0.00569063 -144286,1717:123:1,173,72,0,0,-0.0056919 -144287,1717:123:2,173.5,72,0,0,-0.0056919 -144288,1717:124:1,174,72,0,0,-0.00569318 -144289,1717:124:2,174.5,72,0,0,-0.00569318 -144290,1717:225:1,175,72,0,0,-0.00569445 -144291,1717:225:2,175.5,72,0,0,-0.00569445 -144292,1717:226:1,176,72,0,0,-0.00569445 -144293,1717:226:2,176.5,72,0,0,-0.00569318 -144294,1717:227:1,177,72,0,0,-0.0056919 -144295,1717:227:2,177.5,72,0,0,-0.0056919 -144296,1717:228:1,178,72,0,0,-0.00569445 -144297,1717:228:2,178.5,72,0,0,-0.00569824 -144298,1717:229:1,179,72,0,0,-0.0057033 -144299,1717:229:2,179.5,72,0,0,-0.00570965 -144300,1718:120:1,180,72,0,0,-0.00571852 -144301,7718:120:3,-180,72.5,0,0,-0.00571344 -144302,7717:229:4,-179.5,72.5,0,0,-0.00572108 -144303,7717:229:3,-179,72.5,0,0,-0.00572616 -144304,7717:228:4,-178.5,72.5,0,0,-0.00572616 -144305,7717:228:3,-178,72.5,0,0,-0.00572616 -144306,7717:227:4,-177.5,72.5,0,0,-0.00572997 -144307,7717:227:3,-177,72.5,0,0,-0.00573506 -144308,7717:226:4,-176.5,72.5,0,0,-0.00573888 -144309,7717:226:3,-176,72.5,0,0,-0.00574144 -144310,7717:225:4,-175.5,72.5,0,0,-0.00574144 -144311,7717:225:3,-175,72.5,0,0,-0.00574016 -144312,7717:124:4,-174.5,72.5,0,0,-0.00574016 -144313,7717:124:3,-174,72.5,0,0,-0.00574144 -144314,7717:123:4,-173.5,72.5,0,0,-0.00574273 -144315,7717:123:3,-173,72.5,0,0,-0.00574273 -144316,7717:122:4,-172.5,72.5,0,0,-0.00574398 -144317,7717:122:3,-172,72.5,0,0,-0.00574398 -144318,7717:121:4,-171.5,72.5,0,0,-0.00574526 -144319,7717:121:3,-171,72.5,0,0,-0.00574655 -144320,7717:120:4,-170.5,72.5,0,0,-0.00574655 -144321,7717:120:3,-170,72.5,0,0,-0.00574526 -144322,7716:229:4,-169.5,72.5,0,0,-0.00574526 -144323,7716:229:3,-169,72.5,0,0,-0.00574783 -144324,7716:228:4,-168.5,72.5,0,0,-0.00575037 -144325,7716:228:3,-168,72.5,0,0,-0.00574912 -144326,7716:227:4,-167.5,72.5,0,0,-0.00574526 -144327,7716:227:3,-167,72.5,0,0,-0.00574144 -144328,7716:226:4,-166.5,72.5,0,0,-0.00574016 -144329,7716:226:3,-166,72.5,0,0,-0.00574144 -144330,7716:225:4,-165.5,72.5,0,0,-0.00574144 -144331,7716:225:3,-165,72.5,0,0,-0.00573763 -144332,7716:124:4,-164.5,72.5,0,0,-0.00573125 -144333,7716:124:3,-164,72.5,0,0,-0.00572616 -144334,7716:123:4,-163.5,72.5,0,0,-0.00572108 -144335,7716:123:3,-163,72.5,0,0,-0.0057198 -144336,7716:122:4,-162.5,72.5,0,0,-0.00571724 -144337,7716:122:3,-162,72.5,0,0,-0.00571344 -144338,7716:121:4,-161.5,72.5,0,0,-0.00570965 -144339,7716:121:3,-161,72.5,0,0,-0.00570837 -144340,7716:120:4,-160.5,72.5,0,0,-0.00570837 -144341,7716:120:3,-160,72.5,0,0,-0.00570837 -144342,7715:229:4,-159.5,72.5,0,0,-0.00571092 -144343,7715:229:3,-159,72.5,0,0,-0.0057198 -144344,7715:228:4,-158.5,72.5,0,0,-0.00573125 -144345,7715:228:3,-158,72.5,0,0,-0.00574144 -144346,7715:227:4,-157.5,72.5,0,0,-0.00574783 -144347,7715:227:3,-157,72.5,0,0,-0.00574912 -144348,7715:226:4,-156.5,72.5,0,0,-0.00574144 -144349,7715:226:3,-156,72.5,0,0,-0.00572488 -144350,7715:225:4,-155.5,72.5,0,0,-0.00570202 -144351,7715:225:3,-155,72.5,0,0,-0.00567548 -144352,7715:124:4,-154.5,72.5,0,0,-0.00566288 -144353,7715:124:3,-154,72.5,0,0,-0.00563526 -144354,7715:123:4,-153.5,72.5,0,0,-0.00558418 -144355,7714:227:4,-147.5,72.5,0,0,-0.00574398 -144356,7714:227:3,-147,72.5,0,0,-0.00576188 -144357,7714:226:4,-146.5,72.5,0,0,-0.00574273 -144358,7714:226:3,-146,72.5,0,0,-0.00572616 -144359,7714:225:4,-145.5,72.5,0,0,-0.00574398 -144360,7714:225:3,-145,72.5,0,0,-0.00575934 -144361,7714:124:4,-144.5,72.5,0,0,-0.00576317 -144362,7714:124:3,-144,72.5,0,0,-0.00576317 -144363,7714:123:4,-143.5,72.5,0,0,-0.00576446 -144364,7714:123:3,-143,72.5,0,0,-0.00575677 -144365,7714:122:4,-142.5,72.5,0,0,-0.00573763 -144366,7714:122:3,-142,72.5,0,0,-0.00574398 -144367,7714:121:4,-141.5,72.5,0,0,-0.00576188 -144368,7714:121:3,-141,72.5,0,0,-0.00577985 -144369,7714:120:4,-140.5,72.5,0,0,-0.00579916 -144370,7714:120:3,-140,72.5,0,0,-0.00582885 -144371,7707:226:4,-76.5,72.5,0,0,-0.00692349 -144372,7707:124:3,-74,72.5,0,0,-0.00634825 -144373,7707:123:4,-73.5,72.5,0,0,-0.00632009 -144374,7707:122:4,-72.5,72.5,0,0,-0.00622941 -144375,7706:227:3,-67,72.5,0,0,-0.00579787 -144376,7706:226:4,-66.5,72.5,0,0,-0.00579657 -144377,7706:226:3,-66,72.5,0,0,-0.00579142 -144378,7706:225:4,-65.5,72.5,0,0,-0.00578883 -144379,7706:225:3,-65,72.5,0,0,-0.00578628 -144380,7706:124:4,-64.5,72.5,0,0,-0.00578757 -144381,7706:124:3,-64,72.5,0,0,-0.00579012 -144382,7706:123:4,-63.5,72.5,0,0,-0.00579142 -144383,7706:123:3,-63,72.5,0,0,-0.00579272 -144384,7706:122:4,-62.5,72.5,0,0,-0.00579657 -144385,7706:122:3,-62,72.5,0,0,-0.00580042 -144386,7706:121:4,-61.5,72.5,0,0,-0.00581464 -144387,7706:121:3,-61,72.5,0,0,-0.00583016 -144388,7705:229:3,-59,72.5,0,0,-0.00582498 -144389,7705:228:4,-58.5,72.5,0,0,-0.0058172 -144390,7705:228:3,-58,72.5,0,0,-0.00581074 -144391,7705:227:4,-57.5,72.5,0,0,-0.00579657 -144392,7705:227:3,-57,72.5,0,0,-0.00578883 -144393,7705:226:4,-56.5,72.5,0,0,-0.00578498 -144394,7705:122:4,-52.5,72.5,0,0,-0.00581981 -144395,7705:122:3,-52,72.5,0,0,-0.00580172 -144396,7705:121:4,-51.5,72.5,0,0,-0.00577985 -144397,7705:121:3,-51,72.5,0,0,-0.00579142 -144398,7705:120:4,-50.5,72.5,0,0,-0.00583922 -144399,7704:228:3,-48,72.5,0,0,-0.00571344 -144400,7704:227:3,-47,72.5,0,0,-0.00569824 -144401,7704:226:4,-46.5,72.5,0,0,-0.00569318 -144402,7704:225:4,-45.5,72.5,0,0,-0.00569063 -144403,7704:225:3,-45,72.5,0,0,-0.0056843 -144404,7704:124:4,-44.5,72.5,0,0,-0.00567803 -144405,7704:124:3,-44,72.5,0,0,-0.00567294 -144406,7704:123:4,-43.5,72.5,0,0,-0.00567421 -144407,7704:123:3,-43,72.5,0,0,-0.00566918 -144408,7704:122:4,-42.5,72.5,0,0,-0.00566165 -144409,7704:122:3,-42,72.5,0,0,-0.00566414 -144410,7704:121:4,-41.5,72.5,0,0,-0.00566414 -144411,7704:121:3,-41,72.5,0,0,-0.00566165 -144412,7704:120:4,-40.5,72.5,0,0,-0.00566165 -144413,7704:120:3,-40,72.5,0,0,-0.00566414 -144414,7703:229:4,-39.5,72.5,0,0,-0.00566414 -144415,7703:120:4,-30.5,72.5,0,0,-0.00566668 -144416,7702:124:3,-24,72.5,0,0,-0.00567803 -144417,7702:123:4,-23.5,72.5,0,0,-0.00567548 -144418,7702:123:3,-23,72.5,0,0,-0.00567421 -144419,7702:122:4,-22.5,72.5,0,0,-0.00567171 -144420,7702:122:3,-22,72.5,0,0,-0.00566918 -144421,7702:121:4,-21.5,72.5,0,0,-0.00566918 -144422,7702:121:3,-21,72.5,0,0,-0.00566541 -144423,7702:120:4,-20.5,72.5,0,0,-0.00566165 -144424,7702:120:3,-20,72.5,0,0,-0.00565911 -144425,7701:229:4,-19.5,72.5,0,0,-0.00564781 -144426,7701:229:3,-19,72.5,0,0,-0.00561653 -144427,7701:228:4,-18.5,72.5,0,0,-0.00557922 -144428,7701:228:3,-18,72.5,0,0,-0.00556313 -144429,7701:227:4,-17.5,72.5,0,0,-0.00554832 -144430,7701:227:3,-17,72.5,0,0,-0.00553848 -144431,7701:226:4,-16.5,72.5,0,0,-0.00553848 -144432,7701:226:3,-16,72.5,0,0,-0.00553848 -144433,7701:225:4,-15.5,72.5,0,0,-0.00554584 -144434,7701:225:3,-15,72.5,0,0,-0.00556807 -144435,7701:124:4,-14.5,72.5,0,0,-0.00563526 -144436,7701:124:3,-14,72.5,0,0,-0.00586916 -144437,7701:123:4,-13.5,72.5,0,0,-0.00624605 -144438,7701:123:3,-13,72.5,0,0,-0.00681044 -144439,7701:122:4,-12.5,72.5,0,0,-0.00875096 -144440,7701:122:3,-12,72.5,0,0,-0.0121362 -144441,7701:121:4,-11.5,72.5,0,0,-0.0146112 -144442,7701:121:3,-11,72.5,0,0,-0.015965 -144443,7701:120:4,-10.5,72.5,0,0,-0.0146112 -144444,7701:120:3,-10,72.5,0,0,-0.0116966 -144445,7700:229:4,-9.5,72.5,0,0,-0.00877636 -144446,7700:229:3,-9,72.5,0,0,-0.00788103 -144447,7700:228:4,-8.5,72.5,0,0,-0.00724984 -144448,7700:228:3,-8,72.5,0,0,-0.00675161 -144449,7700:226:3,-6,72.5,0,0,-0.00618385 -144450,7700:225:4,-5.5,72.5,0,0,-0.00615372 -144451,7700:225:3,-5,72.5,0,0,-0.00594399 -144452,7700:124:4,-4.5,72.5,0,0,-0.00585091 -144453,7700:124:3,-4,72.5,0,0,-0.00583922 -144454,7700:123:4,-3.5,72.5,0,0,-0.00590709 -144455,7700:123:3,-3,72.5,0,0,-0.00613184 -144456,7700:122:4,-2.5,72.5,0,0,-0.00708081 -144457,7700:122:3,-2,72.5,0,0,-0.00746262 -144458,7700:121:4,-1.5,72.5,0,0,-0.00651558 -144459,7700:121:3,-1,72.5,0,0,-0.00633413 -144460,7700:120:4,-0.5,72.5,0,0,-0.00636805 -144461,1700:120:4,0,72.5,0,0,-0.00645068 -144462,1700:120:4,0.5,72.5,0,0,-0.00660749 -144463,1700:121:3,1,72.5,0,0,-0.006634 -144464,1700:121:4,1.5,72.5,0,0,-0.0066547 -144465,1700:122:3,2,72.5,0,0,-0.00747927 -144466,1700:122:4,2.5,72.5,0,0,-0.00886479 -144467,1700:123:3,3,72.5,0,0,-0.0106158 -144468,1700:123:4,3.5,72.5,0,0,-0.0132873 -144469,1700:124:3,4,72.5,0,0,-0.0117806 -144470,1700:124:4,4.5,72.5,0,0,-0.0114663 -144471,1700:225:3,5,72.5,0,0,-0.0113161 -144472,1700:225:4,5.5,72.5,0,0,-0.0112782 -144473,1700:226:3,6,72.5,0,0,-0.0110439 -144474,1700:226:4,6.5,72.5,0,0,-0.0110883 -144475,1700:227:3,7,72.5,0,0,-0.0120577 -144476,1700:227:4,7.5,72.5,0,0,-0.0131541 -144477,1700:228:3,8,72.5,0,0,-0.0135244 -144478,1700:228:4,8.5,72.5,0,0,-0.0136461 -144479,1700:229:3,9,72.5,0,0,-0.0137781 -144480,1700:229:4,9.5,72.5,0,0,-0.0139959 -144481,1701:120:3,10,72.5,0,0,-0.0141536 -144482,1701:120:4,10.5,72.5,0,0,-0.0143131 -144483,1701:121:3,11,72.5,0,0,-0.0145231 -144484,1701:121:4,11.5,72.5,0,0,-0.0149225 -144485,1701:122:3,12,72.5,0,0,-0.0153881 -144486,1701:122:4,12.5,72.5,0,0,-0.0149929 -144487,1701:123:3,13,72.5,0,0,-0.0138122 -144488,1701:123:4,13.5,72.5,0,0,-0.0115718 -144489,1701:124:3,14,72.5,0,0,-0.0108604 -144490,1701:124:4,14.5,72.5,0,0,-0.0110982 -144491,1701:225:3,15,72.5,0,0,-0.00975039 -144492,1701:225:4,15.5,72.5,0,0,-0.00811795 -144493,1701:226:3,16,72.5,0,0,-0.008218 -144494,1701:226:4,16.5,72.5,0,0,-0.00809806 -144495,1701:227:3,17,72.5,0,0,-0.00823265 -144496,1701:227:4,17.5,72.5,0,0,-0.00851241 -144497,1701:228:3,18,72.5,0,0,-0.00889451 -144498,1701:228:4,18.5,72.5,0,0,-0.00936669 -144499,1701:229:3,19,72.5,0,0,-0.00921953 -144500,1701:229:4,19.5,72.5,0,0,-0.0085638 -144501,1702:120:3,20,72.5,0,0,-0.00753778 -144502,1702:120:4,20.5,72.5,0,0,-0.00668885 -144503,1702:121:3,21,72.5,0,0,-0.00613051 -144504,1702:121:4,21.5,72.5,0,0,-0.0060965 -144505,1702:122:3,22,72.5,0,0,-0.00605463 -144506,1702:122:4,22.5,72.5,0,0,-0.00602378 -144507,1714:124:4,144.5,72.5,0,0,-0.00589269 -144508,1714:225:3,145,72.5,0,0,-0.00586653 -144509,1714:225:4,145.5,72.5,0,0,-0.00585222 -144510,1714:226:3,146,72.5,0,0,-0.00582237 -144511,1714:226:4,146.5,72.5,0,0,-0.00572869 -144512,1714:227:3,147,72.5,0,0,-0.00561653 -144513,1714:227:4,147.5,72.5,0,0,-0.00558543 -144514,1714:228:3,148,72.5,0,0,-0.00556932 -144515,1714:228:4,148.5,72.5,0,0,-0.00555943 -144516,1714:229:3,149,72.5,0,0,-0.00554953 -144517,1714:229:4,149.5,72.5,0,0,-0.0055225 -144518,1715:120:3,150,72.5,0,0,-0.00556682 -144519,1715:120:4,150.5,72.5,0,0,-0.00558789 -144520,1715:121:3,151,72.5,0,0,-0.00558168 -144521,1715:121:4,151.5,72.5,0,0,-0.00556437 -144522,1715:122:3,152,72.5,0,0,-0.00555201 -144523,1715:122:4,152.5,72.5,0,0,-0.0055434 -144524,1715:123:3,153,72.5,0,0,-0.00554216 -144525,1715:123:4,153.5,72.5,0,0,-0.0055446 -144526,1715:124:3,154,72.5,0,0,-0.0055545 -144527,1715:124:4,154.5,72.5,0,0,-0.00556437 -144528,1715:225:3,155,72.5,0,0,-0.00557302 -144529,1715:225:4,155.5,72.5,0,0,-0.00558293 -144530,1715:226:3,156,72.5,0,0,-0.00559164 -144531,1715:226:4,156.5,72.5,0,0,-0.00559782 -144532,1715:227:3,157,72.5,0,0,-0.00560781 -144533,1715:227:4,157.5,72.5,0,0,-0.005619 -144534,1715:228:3,158,72.5,0,0,-0.00562903 -144535,1715:228:4,158.5,72.5,0,0,-0.00563404 -144536,1715:229:3,159,72.5,0,0,-0.00563526 -144537,1715:229:4,159.5,72.5,0,0,-0.00563904 -144538,1716:120:3,160,72.5,0,0,-0.00564405 -144539,1716:120:4,160.5,72.5,0,0,-0.00565033 -144540,1716:121:3,161,72.5,0,0,-0.00565658 -144541,1716:121:4,161.5,72.5,0,0,-0.00566165 -144542,1716:122:3,162,72.5,0,0,-0.00566791 -144543,1716:122:4,162.5,72.5,0,0,-0.00567171 -144544,1716:123:3,163,72.5,0,0,-0.00567421 -144545,1716:123:4,163.5,72.5,0,0,-0.00567421 -144546,1716:124:3,164,72.5,0,0,-0.00567294 -144547,1716:124:4,164.5,72.5,0,0,-0.00567294 -144548,1716:225:3,165,72.5,0,0,-0.00567171 -144549,1716:225:4,165.5,72.5,0,0,-0.00567045 -144550,1716:226:3,166,72.5,0,0,-0.00567045 -144551,1716:226:4,166.5,72.5,0,0,-0.00566918 -144552,1716:227:3,167,72.5,0,0,-0.00566918 -144553,1716:227:4,167.5,72.5,0,0,-0.00567045 -144554,1716:228:3,168,72.5,0,0,-0.00567171 -144555,1716:228:4,168.5,72.5,0,0,-0.00567421 -144556,1716:229:3,169,72.5,0,0,-0.00567675 -144557,1716:229:4,169.5,72.5,0,0,-0.00567926 -144558,1717:120:3,170,72.5,0,0,-0.0056818 -144559,1717:120:4,170.5,72.5,0,0,-0.0056843 -144560,1717:121:3,171,72.5,0,0,-0.00568685 -144561,1717:121:4,171.5,72.5,0,0,-0.00568936 -144562,1717:122:3,172,72.5,0,0,-0.00568936 -144563,1717:122:4,172.5,72.5,0,0,-0.00568812 -144564,1717:123:3,173,72.5,0,0,-0.00568936 -144565,1717:123:4,173.5,72.5,0,0,-0.00568936 -144566,1717:124:3,174,72.5,0,0,-0.00568936 -144567,1717:124:4,174.5,72.5,0,0,-0.00568936 -144568,1717:225:3,175,72.5,0,0,-0.00568936 -144569,1717:225:4,175.5,72.5,0,0,-0.00569063 -144570,1717:226:3,176,72.5,0,0,-0.00569063 -144571,1717:226:4,176.5,72.5,0,0,-0.00569063 -144572,1717:227:3,177,72.5,0,0,-0.00569063 -144573,1717:227:4,177.5,72.5,0,0,-0.00569318 -144574,1717:228:3,178,72.5,0,0,-0.00569696 -144575,1717:228:4,178.5,72.5,0,0,-0.00570075 -144576,1717:229:3,179,72.5,0,0,-0.0057033 -144577,1717:229:4,179.5,72.5,0,0,-0.00570837 -144578,1718:120:3,180,72.5,0,0,-0.00571344 -144579,7718:130:1,-180,73,0,0,-0.00571092 -144580,7717:239:2,-179.5,73,0,0,-0.00571472 -144581,7717:239:1,-179,73,0,0,-0.0057198 -144582,7717:238:2,-178.5,73,0,0,-0.00572232 -144583,7717:238:1,-178,73,0,0,-0.00572232 -144584,7717:237:2,-177.5,73,0,0,-0.0057236 -144585,7717:237:1,-177,73,0,0,-0.00572616 -144586,7717:236:2,-176.5,73,0,0,-0.00572997 -144587,7717:236:1,-176,73,0,0,-0.00573506 -144588,7717:235:2,-175.5,73,0,0,-0.00573763 -144589,7717:235:1,-175,73,0,0,-0.00573888 -144590,7717:134:2,-174.5,73,0,0,-0.00574016 -144591,7717:134:1,-174,73,0,0,-0.00574016 -144592,7717:133:2,-173.5,73,0,0,-0.00574016 -144593,7717:133:1,-173,73,0,0,-0.00574144 -144594,7717:132:2,-172.5,73,0,0,-0.00574144 -144595,7717:132:1,-172,73,0,0,-0.00574144 -144596,7717:131:2,-171.5,73,0,0,-0.00574144 -144597,7717:131:1,-171,73,0,0,-0.00574398 -144598,7717:130:2,-170.5,73,0,0,-0.00574526 -144599,7717:130:1,-170,73,0,0,-0.00574526 -144600,7716:239:2,-169.5,73,0,0,-0.00574783 -144601,7716:239:1,-169,73,0,0,-0.00574912 -144602,7716:238:2,-168.5,73,0,0,-0.00574912 -144603,7716:238:1,-168,73,0,0,-0.00574783 -144604,7716:237:2,-167.5,73,0,0,-0.00574526 -144605,7716:237:1,-167,73,0,0,-0.00574273 -144606,7716:236:2,-166.5,73,0,0,-0.00574273 -144607,7716:236:1,-166,73,0,0,-0.00574398 -144608,7716:235:2,-165.5,73,0,0,-0.00574144 -144609,7716:235:1,-165,73,0,0,-0.00573635 -144610,7716:134:2,-164.5,73,0,0,-0.00572869 -144611,7716:134:1,-164,73,0,0,-0.0057236 -144612,7716:133:2,-163.5,73,0,0,-0.00572108 -144613,7716:133:1,-163,73,0,0,-0.0057198 -144614,7716:132:2,-162.5,73,0,0,-0.005716 -144615,7716:132:1,-162,73,0,0,-0.00571092 -144616,7716:131:2,-161.5,73,0,0,-0.00570709 -144617,7716:131:1,-161,73,0,0,-0.00570581 -144618,7716:130:2,-160.5,73,0,0,-0.00570581 -144619,7716:130:1,-160,73,0,0,-0.00570581 -144620,7715:239:2,-159.5,73,0,0,-0.00570837 -144621,7715:239:1,-159,73,0,0,-0.00571724 -144622,7715:238:2,-158.5,73,0,0,-0.00573125 -144623,7715:238:1,-158,73,0,0,-0.00574398 -144624,7715:237:2,-157.5,73,0,0,-0.00575037 -144625,7715:237:1,-157,73,0,0,-0.00574912 -144626,7715:236:2,-156.5,73,0,0,-0.00573888 -144627,7715:236:1,-156,73,0,0,-0.00574016 -144628,7715:235:2,-155.5,73,0,0,-0.00569063 -144629,7715:235:1,-155,73,0,0,-0.00562651 -144630,7715:134:2,-154.5,73,0,0,-0.00558168 -144631,7715:134:1,-154,73,0,0,-0.00556188 -144632,7714:237:2,-147.5,73,0,0,-0.00575037 -144633,7714:237:1,-147,73,0,0,-0.00578498 -144634,7714:236:2,-146.5,73,0,0,-0.00578243 -144635,7714:236:1,-146,73,0,0,-0.00576188 -144636,7714:235:2,-145.5,73,0,0,-0.00572741 -144637,7714:235:1,-145,73,0,0,-0.00573125 -144638,7714:134:2,-144.5,73,0,0,-0.00574398 -144639,7714:134:1,-144,73,0,0,-0.00575548 -144640,7714:133:2,-143.5,73,0,0,-0.00576188 -144641,7714:133:1,-143,73,0,0,-0.00576829 -144642,7714:132:2,-142.5,73,0,0,-0.00577213 -144643,7714:132:1,-142,73,0,0,-0.00575165 -144644,7714:131:2,-141.5,73,0,0,-0.00572741 -144645,7714:131:1,-141,73,0,0,-0.00572488 -144646,7714:130:2,-140.5,73,0,0,-0.00575677 -144647,7714:130:1,-140,73,0,0,-0.00580432 -144648,7713:239:2,-139.5,73,0,0,-0.00584314 -144649,7707:236:2,-76.5,73,0,0,-0.00673363 -144650,7707:133:1,-73,73,0,0,-0.00617564 -144651,7707:132:2,-72.5,73,0,0,-0.00611826 -144652,7707:132:1,-72,73,0,0,-0.00606676 -144653,7706:236:2,-66.5,73,0,0,-0.00577601 -144654,7706:236:1,-66,73,0,0,-0.00579657 -144655,7706:235:2,-65.5,73,0,0,-0.00579657 -144656,7706:235:1,-65,73,0,0,-0.00579916 -144657,7706:134:2,-64.5,73,0,0,-0.00580042 -144658,7706:134:1,-64,73,0,0,-0.00580558 -144659,7706:133:2,-63.5,73,0,0,-0.00581074 -144660,7706:133:1,-63,73,0,0,-0.00581334 -144661,7706:132:2,-62.5,73,0,0,-0.00581204 -144662,7706:132:1,-62,73,0,0,-0.00580688 -144663,7706:131:2,-61.5,73,0,0,-0.00580558 -144664,7706:131:1,-61,73,0,0,-0.00580432 -144665,7706:130:2,-60.5,73,0,0,-0.00580432 -144666,7706:130:1,-60,73,0,0,-0.00580302 -144667,7705:239:2,-59.5,73,0,0,-0.00580302 -144668,7705:239:1,-59,73,0,0,-0.00580042 -144669,7705:238:2,-58.5,73,0,0,-0.00579527 -144670,7705:238:1,-58,73,0,0,-0.00579272 -144671,7705:237:2,-57.5,73,0,0,-0.00579012 -144672,7705:237:1,-57,73,0,0,-0.00578757 -144673,7705:133:1,-53,73,0,0,-0.00577471 -144674,7705:132:2,-52.5,73,0,0,-0.00576829 -144675,7705:132:1,-52,73,0,0,-0.00576575 -144676,7705:131:2,-51.5,73,0,0,-0.00576959 -144677,7704:134:1,-44,73,0,0,-0.00569445 -144678,7704:133:2,-43.5,73,0,0,-0.0056843 -144679,7704:133:1,-43,73,0,0,-0.00567803 -144680,7704:132:2,-42.5,73,0,0,-0.00567548 -144681,7704:132:1,-42,73,0,0,-0.00567294 -144682,7704:131:2,-41.5,73,0,0,-0.00567926 -144683,7704:131:1,-41,73,0,0,-0.00567803 -144684,7704:130:2,-40.5,73,0,0,-0.00567421 -144685,7704:130:1,-40,73,0,0,-0.00566918 -144686,7703:239:2,-39.5,73,0,0,-0.00566918 -144687,7703:239:1,-39,73,0,0,-0.00567045 -144688,7703:236:1,-36,73,0,0,-0.00567803 -144689,7703:132:1,-32,73,0,0,-0.00569951 -144690,7703:131:1,-31,73,0,0,-0.0056919 -144691,7702:134:1,-24,73,0,0,-0.00567421 -144692,7702:133:2,-23.5,73,0,0,-0.00567045 -144693,7702:133:1,-23,73,0,0,-0.00567045 -144694,7702:132:2,-22.5,73,0,0,-0.00567045 -144695,7702:132:1,-22,73,0,0,-0.00566918 -144696,7702:131:2,-21.5,73,0,0,-0.00566414 -144697,7702:131:1,-21,73,0,0,-0.00565535 -144698,7702:130:2,-20.5,73,0,0,-0.00564654 -144699,7702:130:1,-20,73,0,0,-0.00564405 -144700,7701:239:2,-19.5,73,0,0,-0.00563904 -144701,7701:239:1,-19,73,0,0,-0.00562026 -144702,7701:238:2,-18.5,73,0,0,-0.00559536 -144703,7701:238:1,-18,73,0,0,-0.00557922 -144704,7701:237:2,-17.5,73,0,0,-0.00556437 -144705,7701:237:1,-17,73,0,0,-0.00554832 -144706,7701:236:2,-16.5,73,0,0,-0.00553968 -144707,7701:236:1,-16,73,0,0,-0.005536 -144708,7701:235:2,-15.5,73,0,0,-0.00553968 -144709,7701:235:1,-15,73,0,0,-0.00554832 -144710,7701:134:2,-14.5,73,0,0,-0.00557922 -144711,7701:134:1,-14,73,0,0,-0.00571344 -144712,7701:133:2,-13.5,73,0,0,-0.0059506 -144713,7701:133:1,-13,73,0,0,-0.00613322 -144714,7701:132:2,-12.5,73,0,0,-0.00662811 -144715,7701:132:1,-12,73,0,0,-0.00804954 -144716,7701:131:2,-11.5,73,0,0,-0.0128256 -144717,7701:131:1,-11,73,0,0,-0.014733 -144718,7701:130:2,-10.5,73,0,0,-0.0153606 -144719,7701:130:1,-10,73,0,0,-0.0151247 -144720,7700:239:2,-9.5,73,0,0,-0.012886 -144721,7700:239:1,-9,73,0,0,-0.0094401 -144722,7700:238:2,-8.5,73,0,0,-0.0078933 -144723,7700:238:1,-8,73,0,0,-0.00754449 -144724,7700:237:2,-7.5,73,0,0,-0.00729677 -144725,7700:237:1,-7,73,0,0,-0.00715208 -144726,7700:236:2,-6.5,73,0,0,-0.00696517 -144727,7700:236:1,-6,73,0,0,-0.0067501 -144728,7700:235:2,-5.5,73,0,0,-0.00612232 -144729,7700:235:1,-5,73,0,0,-0.00588873 -144730,7700:134:2,-4.5,73,0,0,-0.00586132 -144731,7700:134:1,-4,73,0,0,-0.00587306 -144732,7700:133:2,-3.5,73,0,0,-0.00589529 -144733,7700:133:1,-3,73,0,0,-0.00609109 -144734,7700:132:2,-2.5,73,0,0,-0.00663252 -144735,7700:132:1,-2,73,0,0,-0.00661337 -144736,7700:131:2,-1.5,73,0,0,-0.00628925 -144737,7700:131:1,-1,73,0,0,-0.00622109 -144738,7700:130:2,-0.5,73,0,0,-0.00624884 -144739,1700:130:2,0,73,0,0,-0.00636239 -144740,1700:130:2,0.5,73,0,0,-0.00644211 -144741,1700:131:1,1,73,0,0,-0.00650979 -144742,1700:131:2,1.5,73,0,0,-0.00687282 -144743,1700:132:1,2,73,0,0,-0.00768176 -144744,1700:132:2,2.5,73,0,0,-0.00813784 -144745,1700:133:1,3,73,0,0,-0.00897016 -144746,1700:133:2,3.5,73,0,0,-0.0118069 -144747,1700:134:1,4,73,0,0,-0.0121906 -144748,1700:134:2,4.5,73,0,0,-0.0117912 -144749,1700:235:1,5,73,0,0,-0.0120604 -144750,1700:235:2,5.5,73,0,0,-0.0123056 -144751,1700:236:1,6,73,0,0,-0.0125868 -144752,1700:236:2,6.5,73,0,0,-0.0124886 -144753,1700:237:1,7,73,0,0,-0.0133589 -144754,1700:237:2,7.5,73,0,0,-0.0135942 -144755,1700:238:1,8,73,0,0,-0.0135305 -144756,1700:238:2,8.5,73,0,0,-0.0133051 -144757,1700:239:1,9,73,0,0,-0.0130019 -144758,1700:239:2,9.5,73,0,0,-0.0136004 -144759,1701:130:1,10,73,0,0,-0.0132783 -144760,1701:130:2,10.5,73,0,0,-0.0129352 -144761,1701:131:1,11,73,0,0,-0.0135426 -144762,1701:131:2,11.5,73,0,0,-0.014723 -144763,1701:132:1,12,73,0,0,-0.01504 -144764,1701:132:2,12.5,73,0,0,-0.0143259 -144765,1701:133:1,13,73,0,0,-0.0130573 -144766,1701:133:2,13.5,73,0,0,-0.0112505 -144767,1701:134:1,14,73,0,0,-0.00911734 -144768,1701:134:2,14.5,73,0,0,-0.0082345 -144769,1701:237:1,17,73,0,0,-0.0070887 -144770,1701:237:2,17.5,73,0,0,-0.00761198 -144771,1701:238:1,18,73,0,0,-0.00854286 -144772,1701:238:2,18.5,73,0,0,-0.00902434 -144773,1701:239:1,19,73,0,0,-0.00895614 -144774,1701:239:2,19.5,73,0,0,-0.00817782 -144775,1702:130:1,20,73,0,0,-0.0073784 -144776,1702:130:2,20.5,73,0,0,-0.00635389 -144777,1702:131:1,21,73,0,0,-0.00598241 -144778,1702:131:2,21.5,73,0,0,-0.00584703 -144779,1702:132:1,22,73,0,0,-0.00580042 -144780,1702:132:2,22.5,73,0,0,-0.00580172 -144781,1714:235:1,145,73,0,0,-0.00587959 -144782,1714:235:2,145.5,73,0,0,-0.00585353 -144783,1714:236:1,146,73,0,0,-0.00580172 -144784,1714:236:2,146.5,73,0,0,-0.005619 -144785,1714:237:1,147,73,0,0,-0.00558789 -144786,1714:237:2,147.5,73,0,0,-0.00558168 -144787,1714:238:1,148,73,0,0,-0.00557551 -144788,1714:238:2,148.5,73,0,0,-0.00556437 -144789,1714:239:1,149,73,0,0,-0.00553724 -144790,1714:239:2,149.5,73,0,0,-0.0055225 -144791,1715:130:1,150,73,0,0,-0.00556064 -144792,1715:130:2,150.5,73,0,0,-0.00557672 -144793,1715:131:1,151,73,0,0,-0.00556932 -144794,1715:131:2,151.5,73,0,0,-0.0055545 -144795,1715:132:1,152,73,0,0,-0.00554216 -144796,1715:132:2,152.5,73,0,0,-0.005536 -144797,1715:133:1,153,73,0,0,-0.00553724 -144798,1715:133:2,153.5,73,0,0,-0.0055434 -144799,1715:134:1,154,73,0,0,-0.00555077 -144800,1715:134:2,154.5,73,0,0,-0.00555819 -144801,1715:235:1,155,73,0,0,-0.00556558 -144802,1715:235:2,155.5,73,0,0,-0.00557302 -144803,1715:236:1,156,73,0,0,-0.00557922 -144804,1715:236:2,156.5,73,0,0,-0.00558664 -144805,1715:237:1,157,73,0,0,-0.00560158 -144806,1715:237:2,157.5,73,0,0,-0.00561527 -144807,1715:238:1,158,73,0,0,-0.00562651 -144808,1715:238:2,158.5,73,0,0,-0.00563277 -144809,1715:239:1,159,73,0,0,-0.00563778 -144810,1715:239:2,159.5,73,0,0,-0.00564279 -144811,1716:130:1,160,73,0,0,-0.00564654 -144812,1716:130:2,160.5,73,0,0,-0.00565033 -144813,1716:131:1,161,73,0,0,-0.00565409 -144814,1716:131:2,161.5,73,0,0,-0.00565911 -144815,1716:132:1,162,73,0,0,-0.00566414 -144816,1716:132:2,162.5,73,0,0,-0.00566791 -144817,1716:133:1,163,73,0,0,-0.00567045 -144818,1716:133:2,163.5,73,0,0,-0.00566918 -144819,1716:134:1,164,73,0,0,-0.00566791 -144820,1716:134:2,164.5,73,0,0,-0.00566668 -144821,1716:235:1,165,73,0,0,-0.00566668 -144822,1716:235:2,165.5,73,0,0,-0.00566668 -144823,1716:236:1,166,73,0,0,-0.00566541 -144824,1716:236:2,166.5,73,0,0,-0.00566414 -144825,1716:237:1,167,73,0,0,-0.00566414 -144826,1716:237:2,167.5,73,0,0,-0.00566541 -144827,1716:238:1,168,73,0,0,-0.00566791 -144828,1716:238:2,168.5,73,0,0,-0.00567045 -144829,1716:239:1,169,73,0,0,-0.00567421 -144830,1716:239:2,169.5,73,0,0,-0.00567675 -144831,1717:130:1,170,73,0,0,-0.00567926 -144832,1717:130:2,170.5,73,0,0,-0.00568307 -144833,1717:131:1,171,73,0,0,-0.0056843 -144834,1717:131:2,171.5,73,0,0,-0.00568558 -144835,1717:132:1,172,73,0,0,-0.00568685 -144836,1717:132:2,172.5,73,0,0,-0.00568558 -144837,1717:133:1,173,73,0,0,-0.00568558 -144838,1717:133:2,173.5,73,0,0,-0.00568558 -144839,1717:134:1,174,73,0,0,-0.00568685 -144840,1717:134:2,174.5,73,0,0,-0.00568685 -144841,1717:235:1,175,73,0,0,-0.00568812 -144842,1717:235:2,175.5,73,0,0,-0.00568936 -144843,1717:236:1,176,73,0,0,-0.00569063 -144844,1717:236:2,176.5,73,0,0,-0.0056919 -144845,1717:237:1,177,73,0,0,-0.00569318 -144846,1717:237:2,177.5,73,0,0,-0.00569569 -144847,1717:238:1,178,73,0,0,-0.00569824 -144848,1717:238:2,178.5,73,0,0,-0.00570202 -144849,1717:239:1,179,73,0,0,-0.00570581 -144850,1717:239:2,179.5,73,0,0,-0.00570837 -144851,1718:130:1,180,73,0,0,-0.00571092 -144852,7718:130:3,-180,73.5,0,0,-0.00571092 -144853,7717:239:4,-179.5,73.5,0,0,-0.00571216 -144854,7717:239:3,-179,73.5,0,0,-0.00571344 -144855,7717:238:4,-178.5,73.5,0,0,-0.005716 -144856,7717:238:3,-178,73.5,0,0,-0.00571852 -144857,7717:237:4,-177.5,73.5,0,0,-0.0057198 -144858,7717:237:3,-177,73.5,0,0,-0.00572108 -144859,7717:236:4,-176.5,73.5,0,0,-0.00572488 -144860,7717:236:3,-176,73.5,0,0,-0.00572869 -144861,7717:235:4,-175.5,73.5,0,0,-0.00573254 -144862,7717:235:3,-175,73.5,0,0,-0.00573506 -144863,7717:134:4,-174.5,73.5,0,0,-0.00573506 -144864,7717:134:3,-174,73.5,0,0,-0.00573763 -144865,7717:133:4,-173.5,73.5,0,0,-0.00573763 -144866,7717:133:3,-173,73.5,0,0,-0.00573763 -144867,7717:132:4,-172.5,73.5,0,0,-0.00573763 -144868,7717:132:3,-172,73.5,0,0,-0.00573763 -144869,7717:131:4,-171.5,73.5,0,0,-0.00573635 -144870,7717:131:3,-171,73.5,0,0,-0.00573635 -144871,7717:130:4,-170.5,73.5,0,0,-0.00573763 -144872,7717:130:3,-170,73.5,0,0,-0.00573888 -144873,7716:239:4,-169.5,73.5,0,0,-0.00574016 -144874,7716:239:3,-169,73.5,0,0,-0.00574398 -144875,7716:238:4,-168.5,73.5,0,0,-0.00574655 -144876,7716:238:3,-168,73.5,0,0,-0.00574783 -144877,7716:237:4,-167.5,73.5,0,0,-0.00574655 -144878,7716:237:3,-167,73.5,0,0,-0.00574398 -144879,7716:236:4,-166.5,73.5,0,0,-0.00574398 -144880,7716:236:3,-166,73.5,0,0,-0.00574273 -144881,7716:235:4,-165.5,73.5,0,0,-0.00574016 -144882,7716:235:3,-165,73.5,0,0,-0.00573378 -144883,7716:134:4,-164.5,73.5,0,0,-0.00572616 -144884,7716:134:3,-164,73.5,0,0,-0.00572232 -144885,7716:133:4,-163.5,73.5,0,0,-0.00572108 -144886,7716:133:3,-163,73.5,0,0,-0.00571852 -144887,7716:132:4,-162.5,73.5,0,0,-0.00571344 -144888,7716:132:3,-162,73.5,0,0,-0.00570965 -144889,7716:131:4,-161.5,73.5,0,0,-0.00570581 -144890,7716:131:3,-161,73.5,0,0,-0.00570458 -144891,7716:130:4,-160.5,73.5,0,0,-0.00570458 -144892,7716:130:3,-160,73.5,0,0,-0.00570458 -144893,7715:239:4,-159.5,73.5,0,0,-0.00570965 -144894,7715:239:3,-159,73.5,0,0,-0.00572108 -144895,7715:238:4,-158.5,73.5,0,0,-0.00573506 -144896,7715:238:3,-158,73.5,0,0,-0.00574526 -144897,7715:237:4,-157.5,73.5,0,0,-0.00574912 -144898,7715:237:3,-157,73.5,0,0,-0.00574783 -144899,7715:236:4,-156.5,73.5,0,0,-0.00574273 -144900,7715:236:3,-156,73.5,0,0,-0.00572616 -144901,7715:235:4,-155.5,73.5,0,0,-0.00565033 -144902,7715:134:4,-154.5,73.5,0,0,-0.00550658 -144903,7714:238:3,-148,73.5,0,0,-0.00578628 -144904,7714:237:4,-147.5,73.5,0,0,-0.00578114 -144905,7714:237:3,-147,73.5,0,0,-0.00579012 -144906,7714:236:4,-146.5,73.5,0,0,-0.00578498 -144907,7714:236:3,-146,73.5,0,0,-0.00578114 -144908,7714:235:4,-145.5,73.5,0,0,-0.00577601 -144909,7714:235:3,-145,73.5,0,0,-0.00576188 -144910,7714:134:4,-144.5,73.5,0,0,-0.00574655 -144911,7714:134:3,-144,73.5,0,0,-0.00575165 -144912,7714:133:4,-143.5,73.5,0,0,-0.005767 -144913,7714:133:3,-143,73.5,0,0,-0.00578114 -144914,7714:132:4,-142.5,73.5,0,0,-0.00579527 -144915,7714:132:3,-142,73.5,0,0,-0.00579527 -144916,7714:131:4,-141.5,73.5,0,0,-0.00578114 -144917,7714:131:3,-141,73.5,0,0,-0.00575423 -144918,7714:130:4,-140.5,73.5,0,0,-0.00572232 -144919,7714:130:3,-140,73.5,0,0,-0.00574912 -144920,7713:239:4,-139.5,73.5,0,0,-0.00579916 -144921,7713:239:3,-139,73.5,0,0,-0.00586526 -144922,7713:235:3,-135,73.5,0,0,-0.00590449 -144923,7707:239:4,-79.5,73.5,0,0,-0.0062391 -144924,7707:239:3,-79,73.5,0,0,-0.00626413 -144925,7707:238:3,-78,73.5,0,0,-0.00637652 -144926,7707:237:3,-77,73.5,0,0,-0.0065301 -144927,7707:236:4,-76.5,73.5,0,0,-0.00653444 -144928,7707:133:3,-73,73.5,0,0,-0.00606137 -144929,7707:132:4,-72.5,73.5,0,0,-0.00605196 -144930,7707:132:3,-72,73.5,0,0,-0.00601439 -144931,7706:236:3,-66,73.5,0,0,-0.00577601 -144932,7706:235:4,-65.5,73.5,0,0,-0.00579657 -144933,7706:235:3,-65,73.5,0,0,-0.00580042 -144934,7706:134:4,-64.5,73.5,0,0,-0.00580558 -144935,7706:134:3,-64,73.5,0,0,-0.00581074 -144936,7706:133:4,-63.5,73.5,0,0,-0.0058159 -144937,7706:133:3,-63,73.5,0,0,-0.0058159 -144938,7706:132:4,-62.5,73.5,0,0,-0.00580688 -144939,7706:132:3,-62,73.5,0,0,-0.00580302 -144940,7706:131:4,-61.5,73.5,0,0,-0.00580042 -144941,7706:131:3,-61,73.5,0,0,-0.00579787 -144942,7706:130:4,-60.5,73.5,0,0,-0.00579657 -144943,7706:130:3,-60,73.5,0,0,-0.00579527 -144944,7705:239:4,-59.5,73.5,0,0,-0.00579787 -144945,7705:239:3,-59,73.5,0,0,-0.00580172 -144946,7705:238:4,-58.5,73.5,0,0,-0.00578883 -144947,7705:238:3,-58,73.5,0,0,-0.00579142 -144948,7705:237:4,-57.5,73.5,0,0,-0.00579142 -144949,7705:237:3,-57,73.5,0,0,-0.00576829 -144950,7705:134:3,-54,73.5,0,0,-0.00575165 -144951,7705:133:4,-53.5,73.5,0,0,-0.00576188 -144952,7705:133:3,-53,73.5,0,0,-0.00575037 -144953,7705:132:4,-52.5,73.5,0,0,-0.00575037 -144954,7705:132:3,-52,73.5,0,0,-0.00575934 -144955,7704:134:3,-44,73.5,0,0,-0.00571724 -144956,7704:133:3,-43,73.5,0,0,-0.00567803 -144957,7703:239:3,-39,73.5,0,0,-0.00568685 -144958,7703:238:4,-38.5,73.5,0,0,-0.00569063 -144959,7703:238:3,-38,73.5,0,0,-0.00569318 -144960,7703:237:4,-37.5,73.5,0,0,-0.00568812 -144961,7703:237:3,-37,73.5,0,0,-0.0056843 -144962,7703:236:4,-36.5,73.5,0,0,-0.00567421 -144963,7703:236:3,-36,73.5,0,0,-0.00567926 -144964,7703:235:4,-35.5,73.5,0,0,-0.0056818 -144965,7703:132:4,-32.5,73.5,0,0,-0.0056919 -144966,7703:132:3,-32,73.5,0,0,-0.00568936 -144967,7703:131:4,-31.5,73.5,0,0,-0.00569063 -144968,7703:131:3,-31,73.5,0,0,-0.00568936 -144969,7703:130:3,-30,73.5,0,0,-0.00568812 -144970,7702:238:4,-28.5,73.5,0,0,-0.00567675 -144971,7702:238:3,-28,73.5,0,0,-0.00567675 -144972,7702:235:3,-25,73.5,0,0,-0.00566791 -144973,7702:134:4,-24.5,73.5,0,0,-0.00567045 -144974,7702:134:3,-24,73.5,0,0,-0.00567045 -144975,7702:133:4,-23.5,73.5,0,0,-0.00567294 -144976,7702:133:3,-23,73.5,0,0,-0.00567171 -144977,7702:132:4,-22.5,73.5,0,0,-0.00566791 -144978,7702:132:3,-22,73.5,0,0,-0.00566165 -144979,7702:131:4,-21.5,73.5,0,0,-0.00565033 -144980,7702:131:3,-21,73.5,0,0,-0.00563778 -144981,7702:130:4,-20.5,73.5,0,0,-0.00562777 -144982,7702:130:3,-20,73.5,0,0,-0.00562651 -144983,7701:239:4,-19.5,73.5,0,0,-0.00562903 -144984,7701:239:3,-19,73.5,0,0,-0.00562278 -144985,7701:238:4,-18.5,73.5,0,0,-0.00560903 -144986,7701:238:3,-18,73.5,0,0,-0.00559661 -144987,7701:237:4,-17.5,73.5,0,0,-0.00558418 -144988,7701:237:3,-17,73.5,0,0,-0.00556558 -144989,7701:236:4,-16.5,73.5,0,0,-0.00555077 -144990,7701:236:3,-16,73.5,0,0,-0.00553968 -144991,7701:235:4,-15.5,73.5,0,0,-0.00553476 -144992,7701:235:3,-15,73.5,0,0,-0.00555201 -144993,7701:134:4,-14.5,73.5,0,0,-0.00556188 -144994,7701:134:3,-14,73.5,0,0,-0.00560033 -144995,7701:133:4,-13.5,73.5,0,0,-0.00571852 -144996,7701:133:3,-13,73.5,0,0,-0.0058835 -144997,7701:132:4,-12.5,73.5,0,0,-0.0059506 -144998,7701:132:3,-12,73.5,0,0,-0.00607891 -144999,7701:131:4,-11.5,73.5,0,0,-0.00643922 -145000,7701:131:3,-11,73.5,0,0,-0.00775739 -145001,7701:130:4,-10.5,73.5,0,0,-0.0127941 -145002,7701:130:3,-10,73.5,0,0,-0.0148757 -145003,7700:239:4,-9.5,73.5,0,0,-0.0148124 -145004,7700:239:3,-9,73.5,0,0,-0.0130661 -145005,7700:238:4,-8.5,73.5,0,0,-0.0116523 -145006,7700:238:3,-8,73.5,0,0,-0.00951408 -145007,7700:237:4,-7.5,73.5,0,0,-0.00875287 -145008,7700:237:3,-7,73.5,0,0,-0.00808008 -145009,7700:236:4,-6.5,73.5,0,0,-0.00716161 -145010,7700:236:3,-6,73.5,0,0,-0.00625996 -145011,7700:235:4,-5.5,73.5,0,0,-0.0057198 -145012,7700:235:3,-5,73.5,0,0,-0.00578757 -145013,7700:134:4,-4.5,73.5,0,0,-0.00579397 -145014,7700:134:3,-4,73.5,0,0,-0.00579916 -145015,7700:133:4,-3.5,73.5,0,0,-0.00580948 -145016,7700:133:3,-3,73.5,0,0,-0.00592945 -145017,7700:132:4,-2.5,73.5,0,0,-0.00623635 -145018,7700:132:3,-2,73.5,0,0,-0.00626693 -145019,7700:131:4,-1.5,73.5,0,0,-0.00615919 -145020,7700:131:3,-1,73.5,0,0,-0.00608027 -145021,7700:130:4,-0.5,73.5,0,0,-0.00614142 -145022,1700:130:4,0,73.5,0,0,-0.00643778 -145023,1700:130:4,0.5,73.5,0,0,-0.00660897 -145024,1700:131:3,1,73.5,0,0,-0.00712029 -145025,1700:131:4,1.5,73.5,0,0,-0.0094844 -145026,1700:132:3,2,73.5,0,0,-0.00948014 -145027,1700:132:4,2.5,73.5,0,0,-0.00907069 -145028,1700:133:3,3,73.5,0,0,-0.00979397 -145029,1700:133:4,3.5,73.5,0,0,-0.0107063 -145030,1700:134:3,4,73.5,0,0,-0.0116366 -145031,1700:134:4,4.5,73.5,0,0,-0.0118944 -145032,1700:235:3,5,73.5,0,0,-0.0117727 -145033,1700:235:4,5.5,73.5,0,0,-0.0116392 -145034,1700:236:3,6,73.5,0,0,-0.0129989 -145035,1700:236:4,6.5,73.5,0,0,-0.0132397 -145036,1700:237:3,7,73.5,0,0,-0.0133799 -145037,1700:237:4,7.5,73.5,0,0,-0.0133649 -145038,1700:238:3,8,73.5,0,0,-0.0132013 -145039,1700:238:4,8.5,73.5,0,0,-0.0128658 -145040,1700:239:3,9,73.5,0,0,-0.0118519 -145041,1700:239:4,9.5,73.5,0,0,-0.0112079 -145042,1701:130:3,10,73.5,0,0,-0.0109774 -145043,1701:130:4,10.5,73.5,0,0,-0.0109505 -145044,1701:131:3,11,73.5,0,0,-0.0126432 -145045,1701:131:4,11.5,73.5,0,0,-0.013924 -145046,1701:132:3,12,73.5,0,0,-0.0137689 -145047,1701:132:4,12.5,73.5,0,0,-0.0115848 -145048,1701:133:3,13,73.5,0,0,-0.0103213 -145049,1701:133:4,13.5,73.5,0,0,-0.00860589 -145050,1701:134:3,14,73.5,0,0,-0.00724497 -145051,1701:134:4,14.5,73.5,0,0,-0.00639359 -145052,1701:238:4,18.5,73.5,0,0,-0.00792324 -145053,1701:239:3,19,73.5,0,0,-0.00871201 -145054,1701:239:4,19.5,73.5,0,0,-0.0084916 -145055,1702:130:3,20,73.5,0,0,-0.00767492 -145056,1702:130:4,20.5,73.5,0,0,-0.0067441 -145057,1702:131:3,21,73.5,0,0,-0.00590185 -145058,1702:131:4,21.5,73.5,0,0,-0.0057198 -145059,1702:132:3,22,73.5,0,0,-0.00572997 -145060,1702:132:4,22.5,73.5,0,0,-0.00575806 -145061,1702:133:3,23,73.5,0,0,-0.00577726 -145062,1714:235:3,145,73.5,0,0,-0.00590185 -145063,1714:235:4,145.5,73.5,0,0,-0.00586394 -145064,1714:236:3,146,73.5,0,0,-0.00579397 -145065,1714:237:3,147,73.5,0,0,-0.00562152 -145066,1714:237:4,147.5,73.5,0,0,-0.00557177 -145067,1714:238:3,148,73.5,0,0,-0.00557551 -145068,1714:238:4,148.5,73.5,0,0,-0.00556558 -145069,1714:239:3,149,73.5,0,0,-0.00553848 -145070,1714:239:4,149.5,73.5,0,0,-0.00551756 -145071,1715:130:3,150,73.5,0,0,-0.00554584 -145072,1715:130:4,150.5,73.5,0,0,-0.00556437 -145073,1715:131:3,151,73.5,0,0,-0.00556437 -145074,1715:131:4,151.5,73.5,0,0,-0.00555325 -145075,1715:132:3,152,73.5,0,0,-0.00553848 -145076,1715:132:4,152.5,73.5,0,0,-0.00552985 -145077,1715:133:3,153,73.5,0,0,-0.005536 -145078,1715:133:4,153.5,73.5,0,0,-0.0055446 -145079,1715:134:3,154,73.5,0,0,-0.00555077 -145080,1715:134:4,154.5,73.5,0,0,-0.00555694 -145081,1715:235:3,155,73.5,0,0,-0.00556437 -145082,1715:235:4,155.5,73.5,0,0,-0.00556932 -145083,1715:236:3,156,73.5,0,0,-0.00557426 -145084,1715:236:4,156.5,73.5,0,0,-0.00558418 -145085,1715:237:3,157,73.5,0,0,-0.00559782 -145086,1715:237:4,157.5,73.5,0,0,-0.00561154 -145087,1715:238:3,158,73.5,0,0,-0.005619 -145088,1715:238:4,158.5,73.5,0,0,-0.00562651 -145089,1715:239:3,159,73.5,0,0,-0.00563277 -145090,1715:239:4,159.5,73.5,0,0,-0.00563904 -145091,1716:130:3,160,73.5,0,0,-0.00564405 -145092,1716:130:4,160.5,73.5,0,0,-0.00564781 -145093,1716:131:3,161,73.5,0,0,-0.00565156 -145094,1716:131:4,161.5,73.5,0,0,-0.00565535 -145095,1716:132:3,162,73.5,0,0,-0.00565911 -145096,1716:132:4,162.5,73.5,0,0,-0.00566288 -145097,1716:133:3,163,73.5,0,0,-0.00566414 -145098,1716:133:4,163.5,73.5,0,0,-0.00566414 -145099,1716:134:3,164,73.5,0,0,-0.00566414 -145100,1716:134:4,164.5,73.5,0,0,-0.00566288 -145101,1716:235:3,165,73.5,0,0,-0.00566414 -145102,1716:235:4,165.5,73.5,0,0,-0.00566288 -145103,1716:236:3,166,73.5,0,0,-0.00566288 -145104,1716:236:4,166.5,73.5,0,0,-0.00566165 -145105,1716:237:3,167,73.5,0,0,-0.00566038 -145106,1716:237:4,167.5,73.5,0,0,-0.00566165 -145107,1716:238:3,168,73.5,0,0,-0.00566414 -145108,1716:238:4,168.5,73.5,0,0,-0.00566791 -145109,1716:239:3,169,73.5,0,0,-0.00567045 -145110,1716:239:4,169.5,73.5,0,0,-0.00567294 -145111,1717:130:3,170,73.5,0,0,-0.00567675 -145112,1717:130:4,170.5,73.5,0,0,-0.00567926 -145113,1717:131:3,171,73.5,0,0,-0.0056818 -145114,1717:131:4,171.5,73.5,0,0,-0.00568307 -145115,1717:132:3,172,73.5,0,0,-0.0056843 -145116,1717:132:4,172.5,73.5,0,0,-0.0056843 -145117,1717:133:3,173,73.5,0,0,-0.00568307 -145118,1717:133:4,173.5,73.5,0,0,-0.00568307 -145119,1717:134:3,174,73.5,0,0,-0.00568307 -145120,1717:134:4,174.5,73.5,0,0,-0.0056843 -145121,1717:235:3,175,73.5,0,0,-0.00568685 -145122,1717:235:4,175.5,73.5,0,0,-0.00568936 -145123,1717:236:3,176,73.5,0,0,-0.00569063 -145124,1717:236:4,176.5,73.5,0,0,-0.0056919 -145125,1717:237:3,177,73.5,0,0,-0.00569318 -145126,1717:237:4,177.5,73.5,0,0,-0.00569318 -145127,1717:238:3,178,73.5,0,0,-0.00569569 -145128,1717:238:4,178.5,73.5,0,0,-0.00570075 -145129,1717:239:3,179,73.5,0,0,-0.00570581 -145130,1717:239:4,179.5,73.5,0,0,-0.00570965 -145131,1718:130:3,180,73.5,0,0,-0.00571092 -145132,7718:140:1,-180,74,0,0,-0.00570965 -145133,7717:249:2,-179.5,74,0,0,-0.00570965 -145134,7717:249:1,-179,74,0,0,-0.00570965 -145135,7717:248:2,-178.5,74,0,0,-0.00571092 -145136,7717:248:1,-178,74,0,0,-0.00571216 -145137,7717:247:2,-177.5,74,0,0,-0.00571472 -145138,7717:247:1,-177,74,0,0,-0.00571724 -145139,7717:246:2,-176.5,74,0,0,-0.0057198 -145140,7717:246:1,-176,74,0,0,-0.00572232 -145141,7717:245:2,-175.5,74,0,0,-0.00572488 -145142,7717:245:1,-175,74,0,0,-0.00572616 -145143,7717:144:2,-174.5,74,0,0,-0.00572741 -145144,7717:144:1,-174,74,0,0,-0.00573125 -145145,7717:143:2,-173.5,74,0,0,-0.00573254 -145146,7717:143:1,-173,74,0,0,-0.00573254 -145147,7717:142:2,-172.5,74,0,0,-0.00573254 -145148,7717:142:1,-172,74,0,0,-0.00573125 -145149,7717:141:2,-171.5,74,0,0,-0.00572997 -145150,7717:141:1,-171,74,0,0,-0.00572741 -145151,7717:140:2,-170.5,74,0,0,-0.00572741 -145152,7717:140:1,-170,74,0,0,-0.00572741 -145153,7716:249:2,-169.5,74,0,0,-0.00572741 -145154,7716:249:1,-169,74,0,0,-0.00572997 -145155,7716:248:2,-168.5,74,0,0,-0.00573635 -145156,7716:248:1,-168,74,0,0,-0.00574273 -145157,7716:247:2,-167.5,74,0,0,-0.00574526 -145158,7716:247:1,-167,74,0,0,-0.00574526 -145159,7716:246:2,-166.5,74,0,0,-0.00574273 -145160,7716:246:1,-166,74,0,0,-0.00574144 -145161,7716:245:2,-165.5,74,0,0,-0.00573763 -145162,7716:245:1,-165,74,0,0,-0.00573125 -145163,7716:144:2,-164.5,74,0,0,-0.00572488 -145164,7716:144:1,-164,74,0,0,-0.0057198 -145165,7716:143:2,-163.5,74,0,0,-0.00571724 -145166,7716:143:1,-163,74,0,0,-0.00571344 -145167,7716:142:2,-162.5,74,0,0,-0.00571092 -145168,7716:142:1,-162,74,0,0,-0.00570709 -145169,7716:141:2,-161.5,74,0,0,-0.00570458 -145170,7716:141:1,-161,74,0,0,-0.0057033 -145171,7716:140:2,-160.5,74,0,0,-0.00570202 -145172,7716:140:1,-160,74,0,0,-0.00570709 -145173,7715:249:2,-159.5,74,0,0,-0.00571852 -145174,7715:249:1,-159,74,0,0,-0.00573125 -145175,7715:248:2,-158.5,74,0,0,-0.00574016 -145176,7715:248:1,-158,74,0,0,-0.00574398 -145177,7715:247:2,-157.5,74,0,0,-0.00574398 -145178,7715:247:1,-157,74,0,0,-0.00573888 -145179,7715:246:2,-156.5,74,0,0,-0.00573506 -145180,7714:249:1,-149,74,0,0,-0.00579012 -145181,7714:248:2,-148.5,74,0,0,-0.00583146 -145182,7714:248:1,-148,74,0,0,-0.00582755 -145183,7714:247:2,-147.5,74,0,0,-0.00581074 -145184,7714:247:1,-147,74,0,0,-0.00580302 -145185,7714:246:2,-146.5,74,0,0,-0.00580172 -145186,7714:246:1,-146,74,0,0,-0.00579916 -145187,7714:245:2,-145.5,74,0,0,-0.00579142 -145188,7714:245:1,-145,74,0,0,-0.00575165 -145189,7714:144:2,-144.5,74,0,0,-0.00577213 -145190,7714:144:1,-144,74,0,0,-0.00578243 -145191,7714:143:2,-143.5,74,0,0,-0.00578757 -145192,7714:143:1,-143,74,0,0,-0.00579527 -145193,7714:142:2,-142.5,74,0,0,-0.00583016 -145194,7714:140:1,-140,74,0,0,-0.00576575 -145195,7713:249:2,-139.5,74,0,0,-0.00580042 -145196,7713:249:1,-139,74,0,0,-0.00587178 -145197,7713:245:2,-135.5,74,0,0,-0.00598639 -145198,7713:245:1,-135,74,0,0,-0.00597576 -145199,7713:144:2,-134.5,74,0,0,-0.00594399 -145200,7707:249:2,-79.5,74,0,0,-0.00623635 -145201,7707:249:1,-79,74,0,0,-0.00630044 -145202,7707:248:2,-78.5,74,0,0,-0.00636662 -145203,7707:248:1,-78,74,0,0,-0.00643067 -145204,7707:247:2,-77.5,74,0,0,-0.00648668 -145205,7707:247:1,-77,74,0,0,-0.00652137 -145206,7707:246:2,-76.5,74,0,0,-0.00650546 -145207,7707:142:2,-72.5,74,0,0,-0.00601709 -145208,7707:142:1,-72,74,0,0,-0.00598375 -145209,7707:141:2,-71.5,74,0,0,-0.00594399 -145210,7706:245:2,-65.5,74,0,0,-0.00579397 -145211,7706:245:1,-65,74,0,0,-0.00579527 -145212,7706:144:2,-64.5,74,0,0,-0.00579657 -145213,7706:144:1,-64,74,0,0,-0.00580948 -145214,7706:143:2,-63.5,74,0,0,-0.00581981 -145215,7706:143:1,-63,74,0,0,-0.00582368 -145216,7705:249:1,-59,74,0,0,-0.00579397 -145217,7705:248:2,-58.5,74,0,0,-0.00579142 -145218,7705:248:1,-58,74,0,0,-0.00579142 -145219,7705:144:2,-54.5,74,0,0,-0.00570075 -145220,7705:144:1,-54,74,0,0,-0.00574526 -145221,7705:143:2,-53.5,74,0,0,-0.00574783 -145222,7705:143:1,-53,74,0,0,-0.00574655 -145223,7705:142:2,-52.5,74,0,0,-0.00575165 -145224,7703:247:1,-37,74,0,0,-0.0056843 -145225,7703:246:2,-36.5,74,0,0,-0.00568685 -145226,7703:245:1,-35,74,0,0,-0.00567926 -145227,7703:144:2,-34.5,74,0,0,-0.00567675 -145228,7703:144:1,-34,74,0,0,-0.00567171 -145229,7703:143:2,-33.5,74,0,0,-0.00567548 -145230,7703:143:1,-33,74,0,0,-0.00567421 -145231,7703:142:2,-32.5,74,0,0,-0.00567294 -145232,7703:142:1,-32,74,0,0,-0.00567421 -145233,7703:141:2,-31.5,74,0,0,-0.0056818 -145234,7703:141:1,-31,74,0,0,-0.00568558 -145235,7703:140:2,-30.5,74,0,0,-0.0056843 -145236,7703:140:1,-30,74,0,0,-0.0056818 -145237,7702:249:2,-29.5,74,0,0,-0.00567926 -145238,7702:249:1,-29,74,0,0,-0.00567675 -145239,7702:248:2,-28.5,74,0,0,-0.00567421 -145240,7702:248:1,-28,74,0,0,-0.00567294 -145241,7702:247:2,-27.5,74,0,0,-0.00567171 -145242,7702:247:1,-27,74,0,0,-0.00567045 -145243,7702:246:2,-26.5,74,0,0,-0.00566918 -145244,7702:246:1,-26,74,0,0,-0.00566918 -145245,7702:245:2,-25.5,74,0,0,-0.00566791 -145246,7702:245:1,-25,74,0,0,-0.00566918 -145247,7702:144:2,-24.5,74,0,0,-0.00567171 -145248,7702:144:1,-24,74,0,0,-0.00567294 -145249,7702:143:2,-23.5,74,0,0,-0.00567421 -145250,7702:143:1,-23,74,0,0,-0.00567171 -145251,7702:142:2,-22.5,74,0,0,-0.00566541 -145252,7702:142:1,-22,74,0,0,-0.00565785 -145253,7702:141:2,-21.5,74,0,0,-0.00564654 -145254,7702:141:1,-21,74,0,0,-0.00563404 -145255,7702:140:2,-20.5,74,0,0,-0.00562278 -145256,7702:140:1,-20,74,0,0,-0.00561778 -145257,7701:249:2,-19.5,74,0,0,-0.00561653 -145258,7701:249:1,-19,74,0,0,-0.0056128 -145259,7701:248:2,-18.5,74,0,0,-0.00560903 -145260,7701:248:1,-18,74,0,0,-0.00560405 -145261,7701:247:2,-17.5,74,0,0,-0.00559782 -145262,7701:247:1,-17,74,0,0,-0.00558543 -145263,7701:246:2,-16.5,74,0,0,-0.00557177 -145264,7701:246:1,-16,74,0,0,-0.0055557 -145265,7701:245:2,-15.5,74,0,0,-0.00553232 -145266,7701:245:1,-15,74,0,0,-0.005536 -145267,7701:144:2,-14.5,74,0,0,-0.00556188 -145268,7701:144:1,-14,74,0,0,-0.00559164 -145269,7701:143:2,-13.5,74,0,0,-0.00564907 -145270,7701:143:1,-13,74,0,0,-0.00570709 -145271,7701:142:2,-12.5,74,0,0,-0.00575037 -145272,7701:142:1,-12,74,0,0,-0.00579012 -145273,7701:141:2,-11.5,74,0,0,-0.0058496 -145274,7701:141:1,-11,74,0,0,-0.00605463 -145275,7701:140:2,-10.5,74,0,0,-0.00715208 -145276,7701:140:1,-10,74,0,0,-0.0109481 -145277,7700:249:2,-9.5,74,0,0,-0.0126009 -145278,7700:249:1,-9,74,0,0,-0.0143935 -145279,7700:248:2,-8.5,74,0,0,-0.0143773 -145280,7700:248:1,-8,74,0,0,-0.0114868 -145281,7700:247:2,-7.5,74,0,0,-0.0077903 -145282,7700:247:1,-7,74,0,0,-0.00665764 -145283,7700:246:2,-6.5,74,0,0,-0.00601174 -145284,7700:246:1,-6,74,0,0,-0.00587569 -145285,7700:245:2,-5.5,74,0,0,-0.00577985 -145286,7700:245:1,-5,74,0,0,-0.00584053 -145287,7700:144:2,-4.5,74,0,0,-0.005877 -145288,7700:144:1,-4,74,0,0,-0.00588873 -145289,7700:143:2,-3.5,74,0,0,-0.00584703 -145290,7700:143:1,-3,74,0,0,-0.00582628 -145291,7700:142:2,-2.5,74,0,0,-0.0059506 -145292,7700:142:1,-2,74,0,0,-0.00605463 -145293,7700:141:2,-1.5,74,0,0,-0.00598639 -145294,7700:141:1,-1,74,0,0,-0.00603315 -145295,7700:140:2,-0.5,74,0,0,-0.00649245 -145296,1700:140:2,0,74,0,0,-0.00745437 -145297,1700:140:2,0.5,74,0,0,-0.00810351 -145298,1700:141:1,1,74,0,0,-0.00860589 -145299,1700:141:2,1.5,74,0,0,-0.00938967 -145300,1700:142:1,2,74,0,0,-0.0101545 -145301,1700:142:2,2.5,74,0,0,-0.0106538 -145302,1700:143:1,3,74,0,0,-0.0113846 -145303,1700:143:2,3.5,74,0,0,-0.0115279 -145304,1700:144:1,4,74,0,0,-0.0116705 -145305,1700:144:2,4.5,74,0,0,-0.0114714 -145306,1700:245:1,5,74,0,0,-0.00989505 -145307,1700:245:2,5.5,74,0,0,-0.00953957 -145308,1700:246:1,6,74,0,0,-0.0109017 -145309,1700:246:2,6.5,74,0,0,-0.0121118 -145310,1700:247:1,7,74,0,0,-0.0124412 -145311,1700:247:2,7.5,74,0,0,-0.0125811 -145312,1700:248:1,8,74,0,0,-0.0126518 -145313,1700:248:2,8.5,74,0,0,-0.0122918 -145314,1700:249:1,9,74,0,0,-0.0115227 -145315,1700:249:2,9.5,74,0,0,-0.0100172 -145316,1701:140:1,10,74,0,0,-0.00941065 -145317,1701:140:2,10.5,74,0,0,-0.00968318 -145318,1701:141:1,11,74,0,0,-0.0119959 -145319,1701:141:2,11.5,74,0,0,-0.0125699 -145320,1701:142:1,12,74,0,0,-0.0106419 -145321,1701:142:2,12.5,74,0,0,-0.00872755 -145322,1701:143:1,13,74,0,0,-0.00777639 -145323,1701:249:1,19,74,0,0,-0.0070306 -145324,1701:249:2,19.5,74,0,0,-0.0081997 -145325,1702:140:1,20,74,0,0,-0.00775049 -145326,1702:140:2,20.5,74,0,0,-0.00674859 -145327,1702:141:1,21,74,0,0,-0.00590449 -145328,1702:141:2,21.5,74,0,0,-0.00574273 -145329,1702:142:1,22,74,0,0,-0.00570075 -145330,1702:142:2,22.5,74,0,0,-0.00575423 -145331,1702:143:1,23,74,0,0,-0.00574655 -145332,1714:141:2,141.5,74,0,0,-0.00614004 -145333,1714:142:1,142,74,0,0,-0.00611552 -145334,1714:142:2,142.5,74,0,0,-0.00611008 -145335,1714:143:1,143,74,0,0,-0.00608163 -145336,1714:143:2,143.5,74,0,0,-0.00604523 -145337,1714:144:1,144,74,0,0,-0.00601709 -145338,1714:144:2,144.5,74,0,0,-0.00596649 -145339,1714:245:1,145,74,0,0,-0.00586916 -145340,1714:245:2,145.5,74,0,0,-0.00574144 -145341,1714:246:1,146,74,0,0,-0.00567926 -145342,1714:247:1,147,74,0,0,-0.00560033 -145343,1714:247:2,147.5,74,0,0,-0.00561029 -145344,1714:248:1,148,74,0,0,-0.00559285 -145345,1714:248:2,148.5,74,0,0,-0.00557052 -145346,1714:249:1,149,74,0,0,-0.00555201 -145347,1714:249:2,149.5,74,0,0,-0.00552003 -145348,1715:140:1,150,74,0,0,-0.0055225 -145349,1715:140:2,150.5,74,0,0,-0.00554584 -145350,1715:141:1,151,74,0,0,-0.0055545 -145351,1715:141:2,151.5,74,0,0,-0.00554953 -145352,1715:142:1,152,74,0,0,-0.00553724 -145353,1715:142:2,152.5,74,0,0,-0.00552741 -145354,1715:143:1,153,74,0,0,-0.005536 -145355,1715:143:2,153.5,74,0,0,-0.00554708 -145356,1715:144:1,154,74,0,0,-0.0055557 -145357,1715:144:2,154.5,74,0,0,-0.00556188 -145358,1715:245:1,155,74,0,0,-0.00556682 -145359,1715:245:2,155.5,74,0,0,-0.00557177 -145360,1715:246:1,156,74,0,0,-0.00557551 -145361,1715:246:2,156.5,74,0,0,-0.00558293 -145362,1715:247:1,157,74,0,0,-0.00559285 -145363,1715:247:2,157.5,74,0,0,-0.00560158 -145364,1715:248:1,158,74,0,0,-0.00561029 -145365,1715:248:2,158.5,74,0,0,-0.00561778 -145366,1715:249:1,159,74,0,0,-0.00562651 -145367,1715:249:2,159.5,74,0,0,-0.00563404 -145368,1716:140:1,160,74,0,0,-0.00563904 -145369,1716:140:2,160.5,74,0,0,-0.00564279 -145370,1716:141:1,161,74,0,0,-0.00564781 -145371,1716:141:2,161.5,74,0,0,-0.00565282 -145372,1716:142:1,162,74,0,0,-0.00565658 -145373,1716:142:2,162.5,74,0,0,-0.00565911 -145374,1716:143:1,163,74,0,0,-0.00566038 -145375,1716:143:2,163.5,74,0,0,-0.00566038 -145376,1716:144:1,164,74,0,0,-0.00566165 -145377,1716:144:2,164.5,74,0,0,-0.00566038 -145378,1716:245:1,165,74,0,0,-0.00566038 -145379,1716:245:2,165.5,74,0,0,-0.00566038 -145380,1716:246:1,166,74,0,0,-0.00565911 -145381,1716:246:2,166.5,74,0,0,-0.00565911 -145382,1716:247:1,167,74,0,0,-0.00565911 -145383,1716:247:2,167.5,74,0,0,-0.00566038 -145384,1716:248:1,168,74,0,0,-0.00566165 -145385,1716:248:2,168.5,74,0,0,-0.00566541 -145386,1716:249:1,169,74,0,0,-0.00566791 -145387,1716:249:2,169.5,74,0,0,-0.00567045 -145388,1717:140:1,170,74,0,0,-0.00567294 -145389,1717:140:2,170.5,74,0,0,-0.00567548 -145390,1717:141:1,171,74,0,0,-0.00567803 -145391,1717:141:2,171.5,74,0,0,-0.00568053 -145392,1717:142:1,172,74,0,0,-0.00568053 -145393,1717:142:2,172.5,74,0,0,-0.00568053 -145394,1717:143:1,173,74,0,0,-0.00568053 -145395,1717:143:2,173.5,74,0,0,-0.00568053 -145396,1717:144:1,174,74,0,0,-0.00568053 -145397,1717:144:2,174.5,74,0,0,-0.0056818 -145398,1717:245:1,175,74,0,0,-0.00568558 -145399,1717:245:2,175.5,74,0,0,-0.00568812 -145400,1717:246:1,176,74,0,0,-0.00569063 -145401,1717:246:2,176.5,74,0,0,-0.00569063 -145402,1717:247:1,177,74,0,0,-0.0056919 -145403,1717:247:2,177.5,74,0,0,-0.0056919 -145404,1717:248:1,178,74,0,0,-0.00569318 -145405,1717:248:2,178.5,74,0,0,-0.00569569 -145406,1717:249:1,179,74,0,0,-0.00570202 -145407,1717:249:2,179.5,74,0,0,-0.00570709 -145408,1718:140:1,180,74,0,0,-0.00570965 -145409,7718:140:3,-180,74.5,0,0,-0.0057033 -145410,7717:249:4,-179.5,74.5,0,0,-0.00570581 -145411,7717:249:3,-179,74.5,0,0,-0.00570581 -145412,7717:248:4,-178.5,74.5,0,0,-0.00570581 -145413,7717:248:3,-178,74.5,0,0,-0.00570709 -145414,7717:247:4,-177.5,74.5,0,0,-0.00570837 -145415,7717:247:3,-177,74.5,0,0,-0.00571216 -145416,7717:246:4,-176.5,74.5,0,0,-0.00571472 -145417,7717:246:3,-176,74.5,0,0,-0.00571724 -145418,7717:245:4,-175.5,74.5,0,0,-0.00571724 -145419,7717:245:3,-175,74.5,0,0,-0.00571852 -145420,7717:144:4,-174.5,74.5,0,0,-0.0057198 -145421,7717:144:3,-174,74.5,0,0,-0.00572232 -145422,7717:143:4,-173.5,74.5,0,0,-0.00572488 -145423,7717:143:3,-173,74.5,0,0,-0.00572616 -145424,7717:142:4,-172.5,74.5,0,0,-0.00572616 -145425,7717:142:3,-172,74.5,0,0,-0.00572488 -145426,7717:141:4,-171.5,74.5,0,0,-0.0057236 -145427,7717:141:3,-171,74.5,0,0,-0.00572232 -145428,7717:140:4,-170.5,74.5,0,0,-0.00572108 -145429,7717:140:3,-170,74.5,0,0,-0.0057198 -145430,7716:249:4,-169.5,74.5,0,0,-0.0057198 -145431,7716:249:3,-169,74.5,0,0,-0.0057198 -145432,7716:248:4,-168.5,74.5,0,0,-0.00572616 -145433,7716:248:3,-168,74.5,0,0,-0.00573635 -145434,7716:247:4,-167.5,74.5,0,0,-0.00574273 -145435,7716:247:3,-167,74.5,0,0,-0.00574273 -145436,7716:246:4,-166.5,74.5,0,0,-0.00574144 -145437,7716:246:3,-166,74.5,0,0,-0.00573888 -145438,7716:245:4,-165.5,74.5,0,0,-0.00573378 -145439,7716:245:3,-165,74.5,0,0,-0.00572616 -145440,7716:144:4,-164.5,74.5,0,0,-0.0057198 -145441,7716:144:3,-164,74.5,0,0,-0.00571344 -145442,7716:143:4,-163.5,74.5,0,0,-0.00571092 -145443,7716:143:3,-163,74.5,0,0,-0.00570837 -145444,7716:142:4,-162.5,74.5,0,0,-0.00570581 -145445,7716:142:3,-162,74.5,0,0,-0.00570458 -145446,7716:141:4,-161.5,74.5,0,0,-0.00570075 -145447,7716:141:3,-161,74.5,0,0,-0.00570075 -145448,7716:140:4,-160.5,74.5,0,0,-0.00570837 -145449,7716:140:3,-160,74.5,0,0,-0.0057198 -145450,7715:249:4,-159.5,74.5,0,0,-0.00572997 -145451,7715:249:3,-159,74.5,0,0,-0.00573635 -145452,7715:248:4,-158.5,74.5,0,0,-0.00573888 -145453,7715:248:3,-158,74.5,0,0,-0.00574144 -145454,7715:247:4,-157.5,74.5,0,0,-0.00573378 -145455,7715:247:3,-157,74.5,0,0,-0.00571852 -145456,7715:246:4,-156.5,74.5,0,0,-0.00571092 -145457,7715:246:3,-156,74.5,0,0,-0.00576059 -145458,7714:249:3,-149,74.5,0,0,-0.00583922 -145459,7714:248:4,-148.5,74.5,0,0,-0.00582755 -145460,7714:247:3,-147,74.5,0,0,-0.00573635 -145461,7714:246:4,-146.5,74.5,0,0,-0.00574273 -145462,7714:246:3,-146,74.5,0,0,-0.00578498 -145463,7714:143:4,-143.5,74.5,0,0,-0.00576446 -145464,7714:143:3,-143,74.5,0,0,-0.00578628 -145465,7714:142:4,-142.5,74.5,0,0,-0.0058172 -145466,7713:249:3,-139,74.5,0,0,-0.00586132 -145467,7713:248:4,-138.5,74.5,0,0,-0.00589401 -145468,7713:248:3,-138,74.5,0,0,-0.00591499 -145469,7713:245:4,-135.5,74.5,0,0,-0.0059506 -145470,7713:245:3,-135,74.5,0,0,-0.00597313 -145471,7713:144:4,-134.5,74.5,0,0,-0.00592157 -145472,7713:144:3,-134,74.5,0,0,-0.00593871 -145473,7707:249:4,-79.5,74.5,0,0,-0.00623356 -145474,7707:249:3,-79,74.5,0,0,-0.00625576 -145475,7707:248:4,-78.5,74.5,0,0,-0.00630326 -145476,7707:248:3,-78,74.5,0,0,-0.00639498 -145477,7707:247:4,-77.5,74.5,0,0,-0.00648668 -145478,7707:247:3,-77,74.5,0,0,-0.0065301 -145479,7707:246:4,-76.5,74.5,0,0,-0.00651125 -145480,7707:142:4,-72.5,74.5,0,0,-0.00597974 -145481,7707:142:3,-72,74.5,0,0,-0.00596252 -145482,7707:141:4,-71.5,74.5,0,0,-0.0059506 -145483,7707:141:3,-71,74.5,0,0,-0.00594399 -145484,7707:140:4,-70.5,74.5,0,0,-0.00593605 -145485,7707:140:3,-70,74.5,0,0,-0.00592551 -145486,7706:247:4,-67.5,74.5,0,0,-0.0058496 -145487,7705:249:3,-59,74.5,0,0,-0.00579272 -145488,7705:248:4,-58.5,74.5,0,0,-0.00579787 -145489,7705:248:3,-58,74.5,0,0,-0.00578883 -145490,7705:144:4,-54.5,74.5,0,0,-0.00569951 -145491,7705:144:3,-54,74.5,0,0,-0.00575548 -145492,7705:143:4,-53.5,74.5,0,0,-0.00575677 -145493,7705:143:3,-53,74.5,0,0,-0.00576188 -145494,7703:144:3,-34,74.5,0,0,-0.0056818 -145495,7703:143:4,-33.5,74.5,0,0,-0.00566791 -145496,7703:143:3,-33,74.5,0,0,-0.00567171 -145497,7703:142:4,-32.5,74.5,0,0,-0.00566791 -145498,7703:142:3,-32,74.5,0,0,-0.00566541 -145499,7703:141:4,-31.5,74.5,0,0,-0.00566791 -145500,7703:141:3,-31,74.5,0,0,-0.00567548 -145501,7703:140:4,-30.5,74.5,0,0,-0.00567675 -145502,7703:140:3,-30,74.5,0,0,-0.00567421 -145503,7702:249:4,-29.5,74.5,0,0,-0.00567171 -145504,7702:249:3,-29,74.5,0,0,-0.00567045 -145505,7702:248:4,-28.5,74.5,0,0,-0.00566918 -145506,7702:248:3,-28,74.5,0,0,-0.00566918 -145507,7702:247:4,-27.5,74.5,0,0,-0.00566791 -145508,7702:247:3,-27,74.5,0,0,-0.00566791 -145509,7702:246:4,-26.5,74.5,0,0,-0.00566668 -145510,7702:246:3,-26,74.5,0,0,-0.00566668 -145511,7702:245:4,-25.5,74.5,0,0,-0.00566791 -145512,7702:245:3,-25,74.5,0,0,-0.00567045 -145513,7702:144:4,-24.5,74.5,0,0,-0.00567171 -145514,7702:144:3,-24,74.5,0,0,-0.00567421 -145515,7702:143:4,-23.5,74.5,0,0,-0.00567548 -145516,7702:143:3,-23,74.5,0,0,-0.00567294 -145517,7702:142:4,-22.5,74.5,0,0,-0.00566918 -145518,7702:142:3,-22,74.5,0,0,-0.00566288 -145519,7702:141:4,-21.5,74.5,0,0,-0.00565409 -145520,7702:141:3,-21,74.5,0,0,-0.00564153 -145521,7702:140:4,-20.5,74.5,0,0,-0.00563151 -145522,7702:140:3,-20,74.5,0,0,-0.00562526 -145523,7701:249:4,-19.5,74.5,0,0,-0.00562404 -145524,7701:249:3,-19,74.5,0,0,-0.00562152 -145525,7701:248:4,-18.5,74.5,0,0,-0.00562026 -145526,7701:248:3,-18,74.5,0,0,-0.00561653 -145527,7701:247:4,-17.5,74.5,0,0,-0.00560903 -145528,7701:247:3,-17,74.5,0,0,-0.0055941 -145529,7701:246:4,-16.5,74.5,0,0,-0.00557426 -145530,7701:246:3,-16,74.5,0,0,-0.00555819 -145531,7701:245:4,-15.5,74.5,0,0,-0.00554092 -145532,7701:245:3,-15,74.5,0,0,-0.00552617 -145533,7701:144:4,-14.5,74.5,0,0,-0.00552494 -145534,7701:144:3,-14,74.5,0,0,-0.0055446 -145535,7701:143:4,-13.5,74.5,0,0,-0.00557052 -145536,7701:143:3,-13,74.5,0,0,-0.00559536 -145537,7701:142:4,-12.5,74.5,0,0,-0.00561154 -145538,7701:142:3,-12,74.5,0,0,-0.00564153 -145539,7701:141:4,-11.5,74.5,0,0,-0.00571216 -145540,7701:141:3,-11,74.5,0,0,-0.00577471 -145541,7701:140:4,-10.5,74.5,0,0,-0.00587437 -145542,7701:140:3,-10,74.5,0,0,-0.00624189 -145543,7700:249:4,-9.5,74.5,0,0,-0.00688048 -145544,7700:249:3,-9,74.5,0,0,-0.00884702 -145545,7700:248:4,-8.5,74.5,0,0,-0.0129207 -145546,7700:248:3,-8,74.5,0,0,-0.00999712 -145547,7700:247:4,-7.5,74.5,0,0,-0.00723047 -145548,7700:247:3,-7,74.5,0,0,-0.00634825 -145549,7700:246:4,-6.5,74.5,0,0,-0.00602109 -145550,7700:246:3,-6,74.5,0,0,-0.00596382 -145551,7700:245:4,-5.5,74.5,0,0,-0.00600371 -145552,7700:245:3,-5,74.5,0,0,-0.00604794 -145553,7700:144:4,-4.5,74.5,0,0,-0.00596649 -145554,7700:144:3,-4,74.5,0,0,-0.00611008 -145555,7700:143:4,-3.5,74.5,0,0,-0.0060884 -145556,7700:143:3,-3,74.5,0,0,-0.00589401 -145557,7700:142:4,-2.5,74.5,0,0,-0.00589005 -145558,7700:142:3,-2,74.5,0,0,-0.00594133 -145559,7700:141:4,-1.5,74.5,0,0,-0.0059176 -145560,7700:141:3,-1,74.5,0,0,-0.00604794 -145561,7700:140:4,-0.5,74.5,0,0,-0.00655919 -145562,1700:140:4,0,74.5,0,0,-0.00726921 -145563,1700:140:4,0.5,74.5,0,0,-0.0078933 -145564,1700:141:3,1,74.5,0,0,-0.00865013 -145565,1700:141:4,1.5,74.5,0,0,-0.00906865 -145566,1700:142:3,2,74.5,0,0,-0.0102045 -145567,1700:142:4,2.5,74.5,0,0,-0.0107638 -145568,1700:143:3,3,74.5,0,0,-0.0110562 -145569,1700:143:4,3.5,74.5,0,0,-0.0109897 -145570,1700:144:3,4,74.5,0,0,-0.010824 -145571,1700:144:4,4.5,74.5,0,0,-0.0104605 -145572,1700:245:3,5,74.5,0,0,-0.00996592 -145573,1700:245:4,5.5,74.5,0,0,-0.00917647 -145574,1700:246:3,6,74.5,0,0,-0.00903841 -145575,1700:246:4,6.5,74.5,0,0,-0.0103884 -145576,1700:247:3,7,74.5,0,0,-0.0117124 -145577,1700:247:4,7.5,74.5,0,0,-0.0120712 -145578,1700:248:3,8,74.5,0,0,-0.0117543 -145579,1700:248:4,8.5,74.5,0,0,-0.0105661 -145580,1700:249:3,9,74.5,0,0,-0.00981587 -145581,1700:249:4,9.5,74.5,0,0,-0.00942956 -145582,1701:140:3,10,74.5,0,0,-0.00956083 -145583,1701:140:4,10.5,74.5,0,0,-0.0104699 -145584,1701:141:3,11,74.5,0,0,-0.0113897 -145585,1701:141:4,11.5,74.5,0,0,-0.0106514 -145586,1701:142:3,12,74.5,0,0,-0.00828233 -145587,1701:142:4,12.5,74.5,0,0,-0.00734889 -145588,1701:249:3,19,74.5,0,0,-0.00610192 -145589,1701:249:4,19.5,74.5,0,0,-0.00684386 -145590,1702:140:3,20,74.5,0,0,-0.00753609 -145591,1702:140:4,20.5,74.5,0,0,-0.00715685 -145592,1702:141:3,21,74.5,0,0,-0.00630604 -145593,1702:141:4,21.5,74.5,0,0,-0.00593078 -145594,1702:142:3,22,74.5,0,0,-0.00575677 -145595,1702:142:4,22.5,74.5,0,0,-0.00569569 -145596,1714:140:3,140,74.5,0,0,-0.00610872 -145597,1714:140:4,140.5,74.5,0,0,-0.00609923 -145598,1714:141:3,141,74.5,0,0,-0.00607623 -145599,1714:141:4,141.5,74.5,0,0,-0.00605061 -145600,1714:142:3,142,74.5,0,0,-0.0060318 -145601,1714:142:4,142.5,74.5,0,0,-0.00597974 -145602,1714:143:3,143,74.5,0,0,-0.00592817 -145603,1714:143:4,143.5,74.5,0,0,-0.00582368 -145604,1714:144:3,144,74.5,0,0,-0.00573635 -145605,1714:144:4,144.5,74.5,0,0,-0.00566541 -145606,1714:245:3,145,74.5,0,0,-0.00566791 -145607,1714:247:4,147.5,74.5,0,0,-0.00557177 -145608,1714:248:3,148,74.5,0,0,-0.0056128 -145609,1714:248:4,148.5,74.5,0,0,-0.00558047 -145610,1714:249:3,149,74.5,0,0,-0.00555943 -145611,1714:249:4,149.5,74.5,0,0,-0.00552861 -145612,1715:140:3,150,74.5,0,0,-0.00551756 -145613,1715:140:4,150.5,74.5,0,0,-0.00552494 -145614,1715:141:3,151,74.5,0,0,-0.00553968 -145615,1715:141:4,151.5,74.5,0,0,-0.0055434 -145616,1715:142:3,152,74.5,0,0,-0.00553476 -145617,1715:142:4,152.5,74.5,0,0,-0.0055237 -145618,1715:143:3,153,74.5,0,0,-0.005536 -145619,1715:143:4,153.5,74.5,0,0,-0.00554953 -145620,1715:144:3,154,74.5,0,0,-0.00556064 -145621,1715:144:4,154.5,74.5,0,0,-0.00556682 -145622,1715:245:3,155,74.5,0,0,-0.00557052 -145623,1715:245:4,155.5,74.5,0,0,-0.00557426 -145624,1715:246:3,156,74.5,0,0,-0.00557922 -145625,1715:246:4,156.5,74.5,0,0,-0.00558168 -145626,1715:247:3,157,74.5,0,0,-0.00558664 -145627,1715:247:4,157.5,74.5,0,0,-0.00559536 -145628,1715:248:3,158,74.5,0,0,-0.00560405 -145629,1715:248:4,158.5,74.5,0,0,-0.0056128 -145630,1715:249:3,159,74.5,0,0,-0.00562278 -145631,1715:249:4,159.5,74.5,0,0,-0.00563025 -145632,1716:140:3,160,74.5,0,0,-0.00563526 -145633,1716:140:4,160.5,74.5,0,0,-0.00563904 -145634,1716:141:3,161,74.5,0,0,-0.00564405 -145635,1716:141:4,161.5,74.5,0,0,-0.00565033 -145636,1716:142:3,162,74.5,0,0,-0.00565535 -145637,1716:142:4,162.5,74.5,0,0,-0.00565658 -145638,1716:143:3,163,74.5,0,0,-0.00565785 -145639,1716:143:4,163.5,74.5,0,0,-0.00565911 -145640,1716:144:3,164,74.5,0,0,-0.00565911 -145641,1716:144:4,164.5,74.5,0,0,-0.00565911 -145642,1716:245:3,165,74.5,0,0,-0.00565911 -145643,1716:245:4,165.5,74.5,0,0,-0.00565785 -145644,1716:246:3,166,74.5,0,0,-0.00565785 -145645,1716:246:4,166.5,74.5,0,0,-0.00565785 -145646,1716:247:3,167,74.5,0,0,-0.00565785 -145647,1716:247:4,167.5,74.5,0,0,-0.00566038 -145648,1716:248:3,168,74.5,0,0,-0.00566165 -145649,1716:248:4,168.5,74.5,0,0,-0.00566414 -145650,1716:249:3,169,74.5,0,0,-0.00566791 -145651,1716:249:4,169.5,74.5,0,0,-0.00567045 -145652,1717:140:3,170,74.5,0,0,-0.00567171 -145653,1717:140:4,170.5,74.5,0,0,-0.00567421 -145654,1717:141:3,171,74.5,0,0,-0.00567548 -145655,1717:141:4,171.5,74.5,0,0,-0.00567675 -145656,1717:142:3,172,74.5,0,0,-0.00567675 -145657,1717:142:4,172.5,74.5,0,0,-0.00567675 -145658,1717:143:3,173,74.5,0,0,-0.00567675 -145659,1717:143:4,173.5,74.5,0,0,-0.00567675 -145660,1717:144:3,174,74.5,0,0,-0.00567803 -145661,1717:144:4,174.5,74.5,0,0,-0.00567926 -145662,1717:245:3,175,74.5,0,0,-0.0056818 -145663,1717:245:4,175.5,74.5,0,0,-0.0056843 -145664,1717:246:3,176,74.5,0,0,-0.00568685 -145665,1717:246:4,176.5,74.5,0,0,-0.00568936 -145666,1717:247:3,177,74.5,0,0,-0.00568936 -145667,1717:247:4,177.5,74.5,0,0,-0.00568936 -145668,1717:248:3,178,74.5,0,0,-0.00568936 -145669,1717:248:4,178.5,74.5,0,0,-0.00569063 -145670,1717:249:3,179,74.5,0,0,-0.0056919 -145671,1717:249:4,179.5,74.5,0,0,-0.00569696 -145672,1718:140:3,180,74.5,0,0,-0.0057033 -145673,7718:350:1,-180,75,0,0,-0.00569569 -145674,7717:459:2,-179.5,75,0,0,-0.00570075 -145675,7717:459:1,-179,75,0,0,-0.00570202 -145676,7717:458:2,-178.5,75,0,0,-0.00570075 -145677,7717:458:1,-178,75,0,0,-0.00570075 -145678,7717:457:2,-177.5,75,0,0,-0.0057033 -145679,7717:457:1,-177,75,0,0,-0.00570709 -145680,7717:456:2,-176.5,75,0,0,-0.00571092 -145681,7717:456:1,-176,75,0,0,-0.00571216 -145682,7717:455:2,-175.5,75,0,0,-0.00571344 -145683,7717:455:1,-175,75,0,0,-0.00571472 -145684,7717:354:2,-174.5,75,0,0,-0.005716 -145685,7717:354:1,-174,75,0,0,-0.00571724 -145686,7717:353:2,-173.5,75,0,0,-0.0057198 -145687,7717:353:1,-173,75,0,0,-0.00572108 -145688,7717:352:2,-172.5,75,0,0,-0.00572108 -145689,7717:352:1,-172,75,0,0,-0.00572108 -145690,7717:351:2,-171.5,75,0,0,-0.0057198 -145691,7717:351:1,-171,75,0,0,-0.00571852 -145692,7717:350:2,-170.5,75,0,0,-0.00571852 -145693,7717:350:1,-170,75,0,0,-0.00571724 -145694,7716:459:2,-169.5,75,0,0,-0.00571724 -145695,7716:459:1,-169,75,0,0,-0.00571724 -145696,7716:458:2,-168.5,75,0,0,-0.00572232 -145697,7716:458:1,-168,75,0,0,-0.00573125 -145698,7716:457:2,-167.5,75,0,0,-0.00573888 -145699,7716:457:1,-167,75,0,0,-0.00574016 -145700,7716:456:2,-166.5,75,0,0,-0.00573888 -145701,7716:456:1,-166,75,0,0,-0.00573378 -145702,7716:455:2,-165.5,75,0,0,-0.00572741 -145703,7716:455:1,-165,75,0,0,-0.00572232 -145704,7716:354:2,-164.5,75,0,0,-0.00571472 -145705,7716:354:1,-164,75,0,0,-0.00571092 -145706,7716:353:2,-163.5,75,0,0,-0.00570837 -145707,7716:353:1,-163,75,0,0,-0.00570458 -145708,7716:352:2,-162.5,75,0,0,-0.00570202 -145709,7716:352:1,-162,75,0,0,-0.00569951 -145710,7716:351:2,-161.5,75,0,0,-0.00570202 -145711,7716:351:1,-161,75,0,0,-0.00571472 -145712,7716:350:2,-160.5,75,0,0,-0.00572741 -145713,7716:350:1,-160,75,0,0,-0.00573254 -145714,7715:459:2,-159.5,75,0,0,-0.00573378 -145715,7715:459:1,-159,75,0,0,-0.00573506 -145716,7715:458:2,-158.5,75,0,0,-0.00573763 -145717,7715:458:1,-158,75,0,0,-0.00573635 -145718,7715:457:2,-157.5,75,0,0,-0.0057236 -145719,7715:457:1,-157,75,0,0,-0.00570837 -145720,7715:456:2,-156.5,75,0,0,-0.00572616 -145721,7715:456:1,-156,75,0,0,-0.00577726 -145722,7715:350:1,-150,75,0,0,-0.00575548 -145723,7714:459:2,-149.5,75,0,0,-0.00580042 -145724,7714:459:1,-149,75,0,0,-0.00584441 -145725,7714:456:1,-146,75,0,0,-0.00578757 -145726,7714:353:2,-143.5,75,0,0,-0.00568685 -145727,7714:353:1,-143,75,0,0,-0.00577213 -145728,7714:352:2,-142.5,75,0,0,-0.00580432 -145729,7713:459:1,-139,75,0,0,-0.00586394 -145730,7713:458:2,-138.5,75,0,0,-0.00587569 -145731,7713:458:1,-138,75,0,0,-0.00588482 -145732,7713:457:2,-137.5,75,0,0,-0.00590317 -145733,7713:457:1,-137,75,0,0,-0.00592286 -145734,7713:456:2,-136.5,75,0,0,-0.00594661 -145735,7713:456:1,-136,75,0,0,-0.00600905 -145736,7713:455:2,-135.5,75,0,0,-0.00596649 -145737,7713:455:1,-135,75,0,0,-0.00597844 -145738,7713:354:2,-134.5,75,0,0,-0.00597313 -145739,7713:354:1,-134,75,0,0,-0.00594927 -145740,7713:353:2,-133.5,75,0,0,-0.00597179 -145741,7708:350:1,-80,75,0,0,-0.00627387 -145742,7707:459:2,-79.5,75,0,0,-0.00618939 -145743,7707:459:1,-79,75,0,0,-0.00615644 -145744,7707:458:1,-78,75,0,0,-0.0063652 -145745,7707:457:2,-77.5,75,0,0,-0.00647226 -145746,7707:457:1,-77,75,0,0,-0.00652283 -145747,7707:456:2,-76.5,75,0,0,-0.00651845 -145748,7707:455:1,-75,75,0,0,-0.00628925 -145749,7707:354:2,-74.5,75,0,0,-0.00622109 -145750,7707:354:1,-74,75,0,0,-0.00611145 -145751,7707:353:2,-73.5,75,0,0,-0.00602513 -145752,7707:353:1,-73,75,0,0,-0.0060064 -145753,7707:352:2,-72.5,75,0,0,-0.00598907 -145754,7707:352:1,-72,75,0,0,-0.00597442 -145755,7707:351:2,-71.5,75,0,0,-0.00596515 -145756,7707:351:1,-71,75,0,0,-0.00595719 -145757,7707:350:2,-70.5,75,0,0,-0.0059506 -145758,7707:350:1,-70,75,0,0,-0.00594399 -145759,7706:459:2,-69.5,75,0,0,-0.00593605 -145760,7706:459:1,-69,75,0,0,-0.00592945 -145761,7706:458:2,-68.5,75,0,0,-0.00592157 -145762,7706:458:1,-68,75,0,0,-0.00591499 -145763,7706:457:2,-67.5,75,0,0,-0.00590577 -145764,7706:457:1,-67,75,0,0,-0.00589269 -145765,7706:456:2,-66.5,75,0,0,-0.00588091 -145766,7706:456:1,-66,75,0,0,-0.00585611 -145767,7706:455:2,-65.5,75,0,0,-0.00582755 -145768,7706:455:1,-65,75,0,0,-0.00580688 -145769,7705:459:1,-59,75,0,0,-0.00580042 -145770,7705:458:2,-58.5,75,0,0,-0.00579916 -145771,7705:458:1,-58,75,0,0,-0.00577726 -145772,7705:354:1,-54,75,0,0,-0.00578757 -145773,7705:353:2,-53.5,75,0,0,-0.00579272 -145774,7705:353:1,-53,75,0,0,-0.00578243 -145775,7704:459:1,-49,75,0,0,-0.00576575 -145776,7703:354:1,-34,75,0,0,-0.00568307 -145777,7703:353:2,-33.5,75,0,0,-0.00567294 -145778,7703:353:1,-33,75,0,0,-0.00567171 -145779,7703:352:2,-32.5,75,0,0,-0.00567294 -145780,7703:352:1,-32,75,0,0,-0.00566918 -145781,7703:351:2,-31.5,75,0,0,-0.00566668 -145782,7703:351:1,-31,75,0,0,-0.00566668 -145783,7703:350:2,-30.5,75,0,0,-0.00566918 -145784,7703:350:1,-30,75,0,0,-0.00566791 -145785,7702:459:2,-29.5,75,0,0,-0.00566791 -145786,7702:459:1,-29,75,0,0,-0.00566791 -145787,7702:458:2,-28.5,75,0,0,-0.00566668 -145788,7702:458:1,-28,75,0,0,-0.00566791 -145789,7702:457:2,-27.5,75,0,0,-0.00566791 -145790,7702:457:1,-27,75,0,0,-0.00566791 -145791,7702:456:2,-26.5,75,0,0,-0.00566918 -145792,7702:456:1,-26,75,0,0,-0.00566918 -145793,7702:455:2,-25.5,75,0,0,-0.00567045 -145794,7702:455:1,-25,75,0,0,-0.00567294 -145795,7702:354:2,-24.5,75,0,0,-0.00567421 -145796,7702:354:1,-24,75,0,0,-0.00567421 -145797,7702:353:2,-23.5,75,0,0,-0.00567675 -145798,7702:353:1,-23,75,0,0,-0.00567675 -145799,7702:352:2,-22.5,75,0,0,-0.00567548 -145800,7702:352:1,-22,75,0,0,-0.00567045 -145801,7702:351:2,-21.5,75,0,0,-0.00566288 -145802,7702:351:1,-21,75,0,0,-0.00565409 -145803,7702:350:2,-20.5,75,0,0,-0.00564532 -145804,7702:350:1,-20,75,0,0,-0.00563904 -145805,7701:459:2,-19.5,75,0,0,-0.00563652 -145806,7701:459:1,-19,75,0,0,-0.00563277 -145807,7701:458:2,-18.5,75,0,0,-0.00562777 -145808,7701:458:1,-18,75,0,0,-0.00562026 -145809,7701:457:2,-17.5,75,0,0,-0.00561154 -145810,7701:457:1,-17,75,0,0,-0.00559536 -145811,7701:456:2,-16.5,75,0,0,-0.00557672 -145812,7701:456:1,-16,75,0,0,-0.00556188 -145813,7701:455:2,-15.5,75,0,0,-0.00555077 -145814,7701:455:1,-15,75,0,0,-0.00553724 -145815,7701:354:2,-14.5,75,0,0,-0.0055237 -145816,7701:354:1,-14,75,0,0,-0.00551756 -145817,7701:353:2,-13.5,75,0,0,-0.00552127 -145818,7701:353:1,-13,75,0,0,-0.00552985 -145819,7701:352:2,-12.5,75,0,0,-0.00553848 -145820,7701:352:1,-12,75,0,0,-0.00555325 -145821,7701:351:2,-11.5,75,0,0,-0.00559782 -145822,7701:351:1,-11,75,0,0,-0.0056843 -145823,7701:350:2,-10.5,75,0,0,-0.00577342 -145824,7701:350:1,-10,75,0,0,-0.00607083 -145825,7700:459:2,-9.5,75,0,0,-0.00671268 -145826,7700:459:1,-9,75,0,0,-0.00833974 -145827,7700:458:2,-8.5,75,0,0,-0.0114997 -145828,7700:458:1,-8,75,0,0,-0.0116262 -145829,7700:457:2,-7.5,75,0,0,-0.00848214 -145830,7700:457:1,-7,75,0,0,-0.00654025 -145831,7700:456:2,-6.5,75,0,0,-0.00606676 -145832,7700:456:1,-6,75,0,0,-0.00604122 -145833,7700:455:2,-5.5,75,0,0,-0.0061006 -145834,7700:455:1,-5,75,0,0,-0.00616877 -145835,7700:354:2,-4.5,75,0,0,-0.00621144 -145836,7700:354:1,-4,75,0,0,-0.00628644 -145837,7700:353:2,-3.5,75,0,0,-0.00632571 -145838,7700:353:1,-3,75,0,0,-0.00619074 -145839,7700:352:2,-2.5,75,0,0,-0.00595323 -145840,7700:352:1,-2,75,0,0,-0.00589137 -145841,7700:351:2,-1.5,75,0,0,-0.0060372 -145842,7700:351:1,-1,75,0,0,-0.00636382 -145843,7700:350:2,-0.5,75,0,0,-0.00658698 -145844,1700:350:2,0,75,0,0,-0.00671564 -145845,1700:350:2,0.5,75,0,0,-0.00793208 -145846,1700:351:1,1,75,0,0,-0.00876848 -145847,1700:351:2,1.5,75,0,0,-0.00857907 -145848,1700:352:1,2,75,0,0,-0.00975258 -145849,1700:352:2,2.5,75,0,0,-0.00984881 -145850,1700:353:1,3,75,0,0,-0.00975477 -145851,1700:353:2,3.5,75,0,0,-0.00952257 -145852,1700:354:1,4,75,0,0,-0.00951829 -145853,1700:354:2,4.5,75,0,0,-0.00961644 -145854,1700:455:1,5,75,0,0,-0.00937294 -145855,1700:455:2,5.5,75,0,0,-0.00925252 -145856,1700:456:1,6,75,0,0,-0.00889451 -145857,1700:456:2,6.5,75,0,0,-0.010015 -145858,1700:457:1,7,75,0,0,-0.0115899 -145859,1700:457:2,7.5,75,0,0,-0.0108338 -145860,1700:458:1,8,75,0,0,-0.0103537 -145861,1700:458:2,8.5,75,0,0,-0.0102022 -145862,1700:459:1,9,75,0,0,-0.00978091 -145863,1700:459:2,9.5,75,0,0,-0.00975477 -145864,1701:350:1,10,75,0,0,-0.0102433 -145865,1701:350:2,10.5,75,0,0,-0.0108168 -145866,1701:351:1,11,75,0,0,-0.0102479 -145867,1701:351:2,11.5,75,0,0,-0.00844255 -145868,1701:455:1,15,75,0,0,-0.00601709 -145869,1701:455:2,15.5,75,0,0,-0.00626693 -145870,1701:456:1,16,75,0,0,-0.00638362 -145871,1701:456:2,16.5,75,0,0,-0.00643638 -145872,1701:457:1,17,75,0,0,-0.00651125 -145873,1701:457:2,17.5,75,0,0,-0.00668141 -145874,1701:458:1,18,75,0,0,-0.00664437 -145875,1701:458:2,18.5,75,0,0,-0.00646221 -145876,1701:459:1,19,75,0,0,-0.00635109 -145877,1701:459:2,19.5,75,0,0,-0.00676515 -145878,1702:350:1,20,75,0,0,-0.00630463 -145879,1702:350:2,20.5,75,0,0,-0.00633134 -145880,1702:351:1,21,75,0,0,-0.00630604 -145881,1702:351:2,21.5,75,0,0,-0.00610602 -145882,1702:352:1,22,75,0,0,-0.00567171 -145883,1702:352:2,22.5,75,0,0,-0.00564781 -145884,1702:353:1,23,75,0,0,-0.00581074 -145885,1702:353:2,23.5,75,0,0,-0.00592286 -145886,1702:354:1,24,75,0,0,-0.00594133 -145887,1714:350:1,140,75,0,0,-0.00605599 -145888,1714:350:2,140.5,75,0,0,-0.00604122 -145889,1714:351:1,141,75,0,0,-0.00599972 -145890,1714:351:2,141.5,75,0,0,-0.00598107 -145891,1714:352:1,142,75,0,0,-0.00593605 -145892,1714:352:2,142.5,75,0,0,-0.00582755 -145893,1714:353:1,143,75,0,0,-0.00575806 -145894,1714:353:2,143.5,75,0,0,-0.00566791 -145895,1714:354:1,144,75,0,0,-0.00558293 -145896,1714:457:2,147.5,75,0,0,-0.0055545 -145897,1714:458:1,148,75,0,0,-0.00561778 -145898,1714:458:2,148.5,75,0,0,-0.00558543 -145899,1714:459:1,149,75,0,0,-0.00556188 -145900,1714:459:2,149.5,75,0,0,-0.00552861 -145901,1715:350:1,150,75,0,0,-0.0055237 -145902,1715:350:2,150.5,75,0,0,-0.00551756 -145903,1715:351:1,151,75,0,0,-0.00552494 -145904,1715:351:2,151.5,75,0,0,-0.00553108 -145905,1715:352:1,152,75,0,0,-0.00552494 -145906,1715:352:2,152.5,75,0,0,-0.00552127 -145907,1715:353:1,153,75,0,0,-0.00553352 -145908,1715:353:2,153.5,75,0,0,-0.00554708 -145909,1715:354:1,154,75,0,0,-0.00555943 -145910,1715:354:2,154.5,75,0,0,-0.00557052 -145911,1715:455:1,155,75,0,0,-0.00557672 -145912,1715:455:2,155.5,75,0,0,-0.00557922 -145913,1715:456:1,156,75,0,0,-0.00558168 -145914,1715:456:2,156.5,75,0,0,-0.00558293 -145915,1715:457:1,157,75,0,0,-0.00558664 -145916,1715:457:2,157.5,75,0,0,-0.0055941 -145917,1715:458:1,158,75,0,0,-0.0056028 -145918,1715:458:2,158.5,75,0,0,-0.0056128 -145919,1715:459:1,159,75,0,0,-0.00562152 -145920,1715:459:2,159.5,75,0,0,-0.00562903 -145921,1716:350:1,160,75,0,0,-0.00563277 -145922,1716:350:2,160.5,75,0,0,-0.00563652 -145923,1716:351:1,161,75,0,0,-0.00564153 -145924,1716:351:2,161.5,75,0,0,-0.00564781 -145925,1716:352:1,162,75,0,0,-0.00565282 -145926,1716:352:2,162.5,75,0,0,-0.00565535 -145927,1716:353:1,163,75,0,0,-0.00565535 -145928,1716:353:2,163.5,75,0,0,-0.00565658 -145929,1716:354:1,164,75,0,0,-0.00565658 -145930,1716:354:2,164.5,75,0,0,-0.00565658 -145931,1716:455:1,165,75,0,0,-0.00565658 -145932,1716:455:2,165.5,75,0,0,-0.00565785 -145933,1716:456:1,166,75,0,0,-0.00565785 -145934,1716:456:2,166.5,75,0,0,-0.00565911 -145935,1716:457:1,167,75,0,0,-0.00566038 -145936,1716:457:2,167.5,75,0,0,-0.00566038 -145937,1716:458:1,168,75,0,0,-0.00566165 -145938,1716:458:2,168.5,75,0,0,-0.00566414 -145939,1716:459:1,169,75,0,0,-0.00566668 -145940,1716:459:2,169.5,75,0,0,-0.00566918 -145941,1717:350:1,170,75,0,0,-0.00567045 -145942,1717:350:2,170.5,75,0,0,-0.00567171 -145943,1717:351:1,171,75,0,0,-0.00567294 -145944,1717:351:2,171.5,75,0,0,-0.00567294 -145945,1717:352:1,172,75,0,0,-0.00567421 -145946,1717:352:2,172.5,75,0,0,-0.00567421 -145947,1717:353:1,173,75,0,0,-0.00567421 -145948,1717:353:2,173.5,75,0,0,-0.00567421 -145949,1717:354:1,174,75,0,0,-0.00567548 -145950,1717:354:2,174.5,75,0,0,-0.00567675 -145951,1717:455:1,175,75,0,0,-0.00567926 -145952,1717:455:2,175.5,75,0,0,-0.0056818 -145953,1717:456:1,176,75,0,0,-0.0056843 -145954,1717:456:2,176.5,75,0,0,-0.00568685 -145955,1717:457:1,177,75,0,0,-0.00568812 -145956,1717:457:2,177.5,75,0,0,-0.00568936 -145957,1717:458:1,178,75,0,0,-0.00568936 -145958,1717:458:2,178.5,75,0,0,-0.00568812 -145959,1717:459:1,179,75,0,0,-0.00568936 -145960,1717:459:2,179.5,75,0,0,-0.00569063 -145961,1718:350:1,180,75,0,0,-0.00569569 -145962,7718:350:3,-180,75.5,0,0,-0.00569318 -145963,7717:459:4,-179.5,75.5,0,0,-0.00569569 -145964,7717:459:3,-179,75.5,0,0,-0.00569824 -145965,7717:458:4,-178.5,75.5,0,0,-0.00569824 -145966,7717:458:3,-178,75.5,0,0,-0.00569696 -145967,7717:457:4,-177.5,75.5,0,0,-0.00569824 -145968,7717:457:3,-177,75.5,0,0,-0.00570075 -145969,7717:456:4,-176.5,75.5,0,0,-0.00570458 -145970,7717:456:3,-176,75.5,0,0,-0.00570837 -145971,7717:455:4,-175.5,75.5,0,0,-0.00570965 -145972,7717:455:3,-175,75.5,0,0,-0.00571092 -145973,7717:354:4,-174.5,75.5,0,0,-0.00571092 -145974,7717:354:3,-174,75.5,0,0,-0.00571216 -145975,7717:353:4,-173.5,75.5,0,0,-0.00571472 -145976,7717:353:3,-173,75.5,0,0,-0.00571724 -145977,7717:352:4,-172.5,75.5,0,0,-0.00571852 -145978,7717:352:3,-172,75.5,0,0,-0.00571852 -145979,7717:351:4,-171.5,75.5,0,0,-0.00571852 -145980,7717:351:3,-171,75.5,0,0,-0.00571852 -145981,7717:350:4,-170.5,75.5,0,0,-0.00571724 -145982,7717:350:3,-170,75.5,0,0,-0.00571724 -145983,7716:459:4,-169.5,75.5,0,0,-0.00571724 -145984,7716:459:3,-169,75.5,0,0,-0.00571724 -145985,7716:458:4,-168.5,75.5,0,0,-0.00572108 -145986,7716:458:3,-168,75.5,0,0,-0.00572869 -145987,7716:457:4,-167.5,75.5,0,0,-0.00573506 -145988,7716:457:3,-167,75.5,0,0,-0.00573635 -145989,7716:456:4,-166.5,75.5,0,0,-0.00573506 -145990,7716:456:3,-166,75.5,0,0,-0.00573125 -145991,7716:455:4,-165.5,75.5,0,0,-0.00572488 -145992,7716:455:3,-165,75.5,0,0,-0.00571852 -145993,7716:354:4,-164.5,75.5,0,0,-0.00571344 -145994,7716:354:3,-164,75.5,0,0,-0.00570837 -145995,7716:353:4,-163.5,75.5,0,0,-0.00570458 -145996,7716:353:3,-163,75.5,0,0,-0.00570075 -145997,7716:352:4,-162.5,75.5,0,0,-0.00569824 -145998,7716:352:3,-162,75.5,0,0,-0.00570202 -145999,7716:351:4,-161.5,75.5,0,0,-0.0057198 -146000,7716:351:3,-161,75.5,0,0,-0.00573635 -146001,7716:350:4,-160.5,75.5,0,0,-0.00573763 -146002,7716:350:3,-160,75.5,0,0,-0.00573506 -146003,7715:459:4,-159.5,75.5,0,0,-0.00573888 -146004,7715:459:3,-159,75.5,0,0,-0.00574016 -146005,7715:458:4,-158.5,75.5,0,0,-0.00573763 -146006,7715:458:3,-158,75.5,0,0,-0.00573125 -146007,7715:457:4,-157.5,75.5,0,0,-0.00572232 -146008,7715:457:3,-157,75.5,0,0,-0.0057198 -146009,7715:456:4,-156.5,75.5,0,0,-0.00573254 -146010,7715:456:3,-156,75.5,0,0,-0.00575294 -146011,7715:455:4,-155.5,75.5,0,0,-0.00577601 -146012,7715:455:3,-155,75.5,0,0,-0.00577601 -146013,7715:350:3,-150,75.5,0,0,-0.00575548 -146014,7714:456:3,-146,75.5,0,0,-0.00583403 -146015,7714:353:3,-143,75.5,0,0,-0.00574655 -146016,7714:352:4,-142.5,75.5,0,0,-0.00579012 -146017,7713:458:4,-138.5,75.5,0,0,-0.00586394 -146018,7713:458:3,-138,75.5,0,0,-0.00587828 -146019,7713:457:4,-137.5,75.5,0,0,-0.00590185 -146020,7713:457:3,-137,75.5,0,0,-0.00592025 -146021,7713:456:4,-136.5,75.5,0,0,-0.00593738 -146022,7713:456:3,-136,75.5,0,0,-0.00595719 -146023,7713:455:4,-135.5,75.5,0,0,-0.00597844 -146024,7713:455:3,-135,75.5,0,0,-0.00597313 -146025,7713:354:4,-134.5,75.5,0,0,-0.00596782 -146026,7713:354:3,-134,75.5,0,0,-0.00597045 -146027,7713:353:4,-133.5,75.5,0,0,-0.00597179 -146028,7713:353:3,-133,75.5,0,0,-0.00599041 -146029,7708:350:4,-80.5,75.5,0,0,-0.00616739 -146030,7708:350:3,-80,75.5,0,0,-0.00615097 -146031,7707:459:4,-79.5,75.5,0,0,-0.00611552 -146032,7707:459:3,-79,75.5,0,0,-0.00610602 -146033,7707:458:4,-78.5,75.5,0,0,-0.00627808 -146034,7707:458:3,-78,75.5,0,0,-0.00641067 -146035,7707:457:4,-77.5,75.5,0,0,-0.00648092 -146036,7707:457:3,-77,75.5,0,0,-0.00650687 -146037,7707:456:4,-76.5,75.5,0,0,-0.00650255 -146038,7707:456:3,-76,75.5,0,0,-0.00648954 -146039,7707:455:4,-75.5,75.5,0,0,-0.00645787 -146040,7707:455:3,-75,75.5,0,0,-0.00635674 -146041,7707:354:4,-74.5,75.5,0,0,-0.00621144 -146042,7707:354:3,-74,75.5,0,0,-0.00608163 -146043,7707:353:4,-73.5,75.5,0,0,-0.00602644 -146044,7707:353:3,-73,75.5,0,0,-0.00600371 -146045,7707:352:4,-72.5,75.5,0,0,-0.00598773 -146046,7707:352:3,-72,75.5,0,0,-0.00597045 -146047,7707:351:4,-71.5,75.5,0,0,-0.0059519 -146048,7707:351:3,-71,75.5,0,0,-0.00593472 -146049,7707:350:4,-70.5,75.5,0,0,-0.00592551 -146050,7707:350:3,-70,75.5,0,0,-0.00592419 -146051,7706:459:4,-69.5,75.5,0,0,-0.00592817 -146052,7706:459:3,-69,75.5,0,0,-0.00593871 -146053,7706:458:4,-68.5,75.5,0,0,-0.00594532 -146054,7706:458:3,-68,75.5,0,0,-0.00594133 -146055,7706:457:4,-67.5,75.5,0,0,-0.00593738 -146056,7706:457:3,-67,75.5,0,0,-0.00592286 -146057,7706:455:4,-65.5,75.5,0,0,-0.00583922 -146058,7706:455:3,-65,75.5,0,0,-0.00582237 -146059,7706:354:4,-64.5,75.5,0,0,-0.00581074 -146060,7706:354:3,-64,75.5,0,0,-0.00580948 -146061,7705:459:4,-59.5,75.5,0,0,-0.00580432 -146062,7705:459:3,-59,75.5,0,0,-0.00580302 -146063,7705:458:4,-58.5,75.5,0,0,-0.00580042 -146064,7705:458:3,-58,75.5,0,0,-0.00578369 -146065,7705:457:4,-57.5,75.5,0,0,-0.00575165 -146066,7705:457:3,-57,75.5,0,0,-0.00575165 -146067,7705:353:3,-53,75.5,0,0,-0.00576188 -146068,7705:351:4,-51.5,75.5,0,0,-0.00574912 -146069,7705:351:3,-51,75.5,0,0,-0.00574273 -146070,7705:350:4,-50.5,75.5,0,0,-0.00573763 -146071,7705:350:3,-50,75.5,0,0,-0.00572997 -146072,7704:458:4,-48.5,75.5,0,0,-0.00574144 -146073,7703:354:4,-34.5,75.5,0,0,-0.00568307 -146074,7703:354:3,-34,75.5,0,0,-0.00567171 -146075,7703:353:4,-33.5,75.5,0,0,-0.00567045 -146076,7703:353:3,-33,75.5,0,0,-0.00567045 -146077,7703:352:4,-32.5,75.5,0,0,-0.00566918 -146078,7703:352:3,-32,75.5,0,0,-0.00566791 -146079,7703:351:4,-31.5,75.5,0,0,-0.00566791 -146080,7703:351:3,-31,75.5,0,0,-0.00566668 -146081,7703:350:4,-30.5,75.5,0,0,-0.00566668 -146082,7703:350:3,-30,75.5,0,0,-0.00566541 -146083,7702:459:4,-29.5,75.5,0,0,-0.00566414 -146084,7702:459:3,-29,75.5,0,0,-0.00566414 -146085,7702:458:4,-28.5,75.5,0,0,-0.00566541 -146086,7702:458:3,-28,75.5,0,0,-0.00566668 -146087,7702:457:4,-27.5,75.5,0,0,-0.00567045 -146088,7702:457:3,-27,75.5,0,0,-0.00567171 -146089,7702:456:4,-26.5,75.5,0,0,-0.00567294 -146090,7702:456:3,-26,75.5,0,0,-0.00567421 -146091,7702:455:4,-25.5,75.5,0,0,-0.00567548 -146092,7702:455:3,-25,75.5,0,0,-0.00567675 -146093,7702:354:4,-24.5,75.5,0,0,-0.00567803 -146094,7702:354:3,-24,75.5,0,0,-0.00568053 -146095,7702:353:4,-23.5,75.5,0,0,-0.00568053 -146096,7702:353:3,-23,75.5,0,0,-0.00568053 -146097,7702:352:4,-22.5,75.5,0,0,-0.0056818 -146098,7702:352:3,-22,75.5,0,0,-0.00567803 -146099,7702:351:4,-21.5,75.5,0,0,-0.00566918 -146100,7702:351:3,-21,75.5,0,0,-0.00566165 -146101,7702:350:4,-20.5,75.5,0,0,-0.00565658 -146102,7702:350:3,-20,75.5,0,0,-0.00565156 -146103,7701:459:4,-19.5,75.5,0,0,-0.00564781 -146104,7701:459:3,-19,75.5,0,0,-0.00563904 -146105,7701:458:4,-18.5,75.5,0,0,-0.00562526 -146106,7701:458:3,-18,75.5,0,0,-0.0056128 -146107,7701:457:4,-17.5,75.5,0,0,-0.00560405 -146108,7701:457:3,-17,75.5,0,0,-0.00559661 -146109,7701:456:4,-16.5,75.5,0,0,-0.00558914 -146110,7701:456:3,-16,75.5,0,0,-0.00557922 -146111,7701:455:4,-15.5,75.5,0,0,-0.00556682 -146112,7701:455:3,-15,75.5,0,0,-0.0055545 -146113,7701:354:4,-14.5,75.5,0,0,-0.00553476 -146114,7701:354:3,-14,75.5,0,0,-0.00552003 -146115,7701:353:4,-13.5,75.5,0,0,-0.0055188 -146116,7701:353:3,-13,75.5,0,0,-0.00551756 -146117,7701:352:4,-12.5,75.5,0,0,-0.00553108 -146118,7701:352:3,-12,75.5,0,0,-0.0055557 -146119,7701:351:4,-11.5,75.5,0,0,-0.00558418 -146120,7701:351:3,-11,75.5,0,0,-0.00562651 -146121,7701:350:4,-10.5,75.5,0,0,-0.00567171 -146122,7701:350:3,-10,75.5,0,0,-0.00571344 -146123,7700:459:4,-9.5,75.5,0,0,-0.00579142 -146124,7700:459:3,-9,75.5,0,0,-0.00595719 -146125,7700:458:4,-8.5,75.5,0,0,-0.00692039 -146126,7700:458:3,-8,75.5,0,0,-0.00999263 -146127,7700:457:4,-7.5,75.5,0,0,-0.00759674 -146128,7700:457:3,-7,75.5,0,0,-0.00619763 -146129,7700:456:4,-6.5,75.5,0,0,-0.00599041 -146130,7700:456:3,-6,75.5,0,0,-0.00601843 -146131,7700:455:4,-5.5,75.5,0,0,-0.00604257 -146132,7700:455:3,-5,75.5,0,0,-0.00609382 -146133,7700:354:4,-4.5,75.5,0,0,-0.00617425 -146134,7700:354:3,-4,75.5,0,0,-0.00618251 -146135,7700:353:4,-3.5,75.5,0,0,-0.0061949 -146136,7700:353:3,-3,75.5,0,0,-0.00618385 -146137,7700:352:4,-2.5,75.5,0,0,-0.00593605 -146138,7700:352:3,-2,75.5,0,0,-0.00599041 -146139,7700:351:4,-1.5,75.5,0,0,-0.00613596 -146140,7700:351:3,-1,75.5,0,0,-0.00617974 -146141,7700:350:4,-0.5,75.5,0,0,-0.00628226 -146142,1700:350:4,0,75.5,0,0,-0.00652571 -146143,1700:350:4,0.5,75.5,0,0,-0.00748593 -146144,1700:351:3,1,75.5,0,0,-0.00840686 -146145,1700:351:4,1.5,75.5,0,0,-0.00771088 -146146,1700:352:3,2,75.5,0,0,-0.00772982 -146147,1700:352:4,2.5,75.5,0,0,-0.00789153 -146148,1700:353:3,3,75.5,0,0,-0.00775396 -146149,1700:353:4,3.5,75.5,0,0,-0.00777813 -146150,1700:354:3,4,75.5,0,0,-0.00781809 -146151,1700:354:4,4.5,75.5,0,0,-0.00776256 -146152,1700:455:3,5,75.5,0,0,-0.00795859 -146153,1700:455:4,5.5,75.5,0,0,-0.00850293 -146154,1700:456:3,6,75.5,0,0,-0.00948654 -146155,1700:456:4,6.5,75.5,0,0,-0.0110562 -146156,1700:457:3,7,75.5,0,0,-0.0100105 -146157,1700:457:4,7.5,75.5,0,0,-0.00950981 -146158,1700:458:3,8,75.5,0,0,-0.00964226 -146159,1700:458:4,8.5,75.5,0,0,-0.00996816 -146160,1700:459:3,9,75.5,0,0,-0.0101342 -146161,1700:459:4,9.5,75.5,0,0,-0.0102364 -146162,1701:350:3,10,75.5,0,0,-0.0103698 -146163,1701:350:4,10.5,75.5,0,0,-0.0101772 -146164,1701:351:3,11,75.5,0,0,-0.00909095 -146165,1701:354:3,14,75.5,0,0,-0.00583665 -146166,1701:354:4,14.5,75.5,0,0,-0.00600506 -146167,1701:455:3,15,75.5,0,0,-0.00609382 -146168,1701:455:4,15.5,75.5,0,0,-0.0060372 -146169,1701:456:3,16,75.5,0,0,-0.00602914 -146170,1701:456:4,16.5,75.5,0,0,-0.00602109 -146171,1701:457:3,17,75.5,0,0,-0.0060064 -146172,1701:457:4,17.5,75.5,0,0,-0.0062197 -146173,1701:458:3,18,75.5,0,0,-0.00641781 -146174,1701:458:4,18.5,75.5,0,0,-0.0062516 -146175,1701:459:3,19,75.5,0,0,-0.00643638 -146176,1701:459:4,19.5,75.5,0,0,-0.00668435 -146177,1702:352:3,22,75.5,0,0,-0.00585611 -146178,1702:352:4,22.5,75.5,0,0,-0.00565156 -146179,1702:353:3,23,75.5,0,0,-0.00565156 -146180,1702:353:4,23.5,75.5,0,0,-0.00585222 -146181,1713:459:4,139.5,75.5,0,0,-0.00608568 -146182,1714:350:3,140,75.5,0,0,-0.00605332 -146183,1714:350:4,140.5,75.5,0,0,-0.00603049 -146184,1714:351:3,141,75.5,0,0,-0.00597045 -146185,1714:351:4,141.5,75.5,0,0,-0.00587178 -146186,1714:352:3,142,75.5,0,0,-0.00578757 -146187,1714:352:4,142.5,75.5,0,0,-0.0056818 -146188,1714:353:3,143,75.5,0,0,-0.00559039 -146189,1714:353:4,143.5,75.5,0,0,-0.00557426 -146190,1714:354:3,144,75.5,0,0,-0.00556932 -146191,1714:354:4,144.5,75.5,0,0,-0.00554953 -146192,1714:455:3,145,75.5,0,0,-0.00555694 -146193,1714:455:4,145.5,75.5,0,0,-0.00556188 -146194,1714:456:3,146,75.5,0,0,-0.00557177 -146195,1714:456:4,146.5,75.5,0,0,-0.00559536 -146196,1714:457:3,147,75.5,0,0,-0.00559536 -146197,1714:457:4,147.5,75.5,0,0,-0.0056128 -146198,1714:458:3,148,75.5,0,0,-0.00561154 -146199,1714:458:4,148.5,75.5,0,0,-0.00558047 -146200,1714:459:3,149,75.5,0,0,-0.00557797 -146201,1714:459:4,149.5,75.5,0,0,-0.00555201 -146202,1715:350:3,150,75.5,0,0,-0.00552617 -146203,1715:350:4,150.5,75.5,0,0,-0.00552003 -146204,1715:351:3,151,75.5,0,0,-0.00551756 -146205,1715:351:4,151.5,75.5,0,0,-0.0055225 -146206,1715:352:3,152,75.5,0,0,-0.0055188 -146207,1715:352:4,152.5,75.5,0,0,-0.0055188 -146208,1715:353:3,153,75.5,0,0,-0.00552741 -146209,1715:353:4,153.5,75.5,0,0,-0.00553848 -146210,1715:354:3,154,75.5,0,0,-0.00555201 -146211,1715:354:4,154.5,75.5,0,0,-0.00556682 -146212,1715:455:3,155,75.5,0,0,-0.00557797 -146213,1715:455:4,155.5,75.5,0,0,-0.00558293 -146214,1715:456:3,156,75.5,0,0,-0.00558543 -146215,1715:456:4,156.5,75.5,0,0,-0.00558789 -146216,1715:457:3,157,75.5,0,0,-0.00559164 -146217,1715:457:4,157.5,75.5,0,0,-0.00559661 -146218,1715:458:3,158,75.5,0,0,-0.0056028 -146219,1715:458:4,158.5,75.5,0,0,-0.00561154 -146220,1715:459:3,159,75.5,0,0,-0.00562026 -146221,1715:459:4,159.5,75.5,0,0,-0.00562404 -146222,1716:350:3,160,75.5,0,0,-0.00562777 -146223,1716:350:4,160.5,75.5,0,0,-0.00563277 -146224,1716:351:3,161,75.5,0,0,-0.00563778 -146225,1716:351:4,161.5,75.5,0,0,-0.00564279 -146226,1716:352:3,162,75.5,0,0,-0.00564907 -146227,1716:352:4,162.5,75.5,0,0,-0.00565156 -146228,1716:353:3,163,75.5,0,0,-0.00565409 -146229,1716:353:4,163.5,75.5,0,0,-0.00565409 -146230,1716:354:3,164,75.5,0,0,-0.00565535 -146231,1716:354:4,164.5,75.5,0,0,-0.00565535 -146232,1716:455:3,165,75.5,0,0,-0.00565658 -146233,1716:455:4,165.5,75.5,0,0,-0.00565785 -146234,1716:456:3,166,75.5,0,0,-0.00565911 -146235,1716:456:4,166.5,75.5,0,0,-0.00566038 -146236,1716:457:3,167,75.5,0,0,-0.00566165 -146237,1716:457:4,167.5,75.5,0,0,-0.00566165 -146238,1716:458:3,168,75.5,0,0,-0.00566288 -146239,1716:458:4,168.5,75.5,0,0,-0.00566414 -146240,1716:459:3,169,75.5,0,0,-0.00566541 -146241,1716:459:4,169.5,75.5,0,0,-0.00566668 -146242,1717:350:3,170,75.5,0,0,-0.00566918 -146243,1717:350:4,170.5,75.5,0,0,-0.00567045 -146244,1717:351:3,171,75.5,0,0,-0.00567045 -146245,1717:351:4,171.5,75.5,0,0,-0.00567045 -146246,1717:352:3,172,75.5,0,0,-0.00567045 -146247,1717:352:4,172.5,75.5,0,0,-0.00567045 -146248,1717:353:3,173,75.5,0,0,-0.00567171 -146249,1717:353:4,173.5,75.5,0,0,-0.00567294 -146250,1717:354:3,174,75.5,0,0,-0.00567548 -146251,1717:354:4,174.5,75.5,0,0,-0.00567675 -146252,1717:455:3,175,75.5,0,0,-0.00567803 -146253,1717:455:4,175.5,75.5,0,0,-0.00568053 -146254,1717:456:3,176,75.5,0,0,-0.00568307 -146255,1717:456:4,176.5,75.5,0,0,-0.00568558 -146256,1717:457:3,177,75.5,0,0,-0.00568812 -146257,1717:457:4,177.5,75.5,0,0,-0.00568812 -146258,1717:458:3,178,75.5,0,0,-0.00568936 -146259,1717:458:4,178.5,75.5,0,0,-0.00568936 -146260,1717:459:3,179,75.5,0,0,-0.00568936 -146261,1717:459:4,179.5,75.5,0,0,-0.00568936 -146262,1718:350:3,180,75.5,0,0,-0.00569318 -146263,7718:360:1,-180,76,0,0,-0.00569318 -146264,7717:469:2,-179.5,76,0,0,-0.00569445 -146265,7717:469:1,-179,76,0,0,-0.00569569 -146266,7717:468:2,-178.5,76,0,0,-0.00569569 -146267,7717:468:1,-178,76,0,0,-0.00569569 -146268,7717:467:2,-177.5,76,0,0,-0.00569569 -146269,7717:467:1,-177,76,0,0,-0.00569696 -146270,7717:466:2,-176.5,76,0,0,-0.00569951 -146271,7717:466:1,-176,76,0,0,-0.0057033 -146272,7717:465:2,-175.5,76,0,0,-0.00570458 -146273,7717:465:1,-175,76,0,0,-0.00570709 -146274,7717:364:2,-174.5,76,0,0,-0.00570837 -146275,7717:364:1,-174,76,0,0,-0.00570837 -146276,7717:363:2,-173.5,76,0,0,-0.00570965 -146277,7717:363:1,-173,76,0,0,-0.00571216 -146278,7717:362:2,-172.5,76,0,0,-0.00571344 -146279,7717:362:1,-172,76,0,0,-0.00571472 -146280,7717:361:2,-171.5,76,0,0,-0.005716 -146281,7717:361:1,-171,76,0,0,-0.005716 -146282,7717:360:2,-170.5,76,0,0,-0.00571724 -146283,7717:360:1,-170,76,0,0,-0.00571724 -146284,7716:469:2,-169.5,76,0,0,-0.00571724 -146285,7716:469:1,-169,76,0,0,-0.0057198 -146286,7716:468:2,-168.5,76,0,0,-0.00572232 -146287,7716:468:1,-168,76,0,0,-0.00572741 -146288,7716:467:2,-167.5,76,0,0,-0.00573125 -146289,7716:467:1,-167,76,0,0,-0.00573378 -146290,7716:466:2,-166.5,76,0,0,-0.00573378 -146291,7716:466:1,-166,76,0,0,-0.00572997 -146292,7716:465:2,-165.5,76,0,0,-0.00572232 -146293,7716:465:1,-165,76,0,0,-0.00571724 -146294,7716:364:2,-164.5,76,0,0,-0.00570965 -146295,7716:364:1,-164,76,0,0,-0.0057033 -146296,7716:363:2,-163.5,76,0,0,-0.00570075 -146297,7716:363:1,-163,76,0,0,-0.00569569 -146298,7716:362:2,-162.5,76,0,0,-0.00569951 -146299,7716:362:1,-162,76,0,0,-0.00571724 -146300,7716:361:2,-161.5,76,0,0,-0.00573635 -146301,7716:361:1,-161,76,0,0,-0.00574016 -146302,7716:360:2,-160.5,76,0,0,-0.00570581 -146303,7715:469:1,-159,76,0,0,-0.00575165 -146304,7715:468:2,-158.5,76,0,0,-0.00574526 -146305,7715:468:1,-158,76,0,0,-0.00573763 -146306,7715:467:2,-157.5,76,0,0,-0.00573254 -146307,7715:467:1,-157,76,0,0,-0.00574273 -146308,7715:466:2,-156.5,76,0,0,-0.00575806 -146309,7715:466:1,-156,76,0,0,-0.00576959 -146310,7715:465:2,-155.5,76,0,0,-0.00577726 -146311,7715:465:1,-155,76,0,0,-0.00577726 -146312,7715:364:2,-154.5,76,0,0,-0.00578369 -146313,7715:364:1,-154,76,0,0,-0.00571852 -146314,7715:360:2,-150.5,76,0,0,-0.00575423 -146315,7714:363:1,-143,76,0,0,-0.00576059 -146316,7714:362:2,-142.5,76,0,0,-0.00580172 -146317,7713:465:2,-135.5,76,0,0,-0.00594399 -146318,7713:465:1,-135,76,0,0,-0.00596119 -146319,7713:364:2,-134.5,76,0,0,-0.00595852 -146320,7713:364:1,-134,76,0,0,-0.00596515 -146321,7713:363:2,-133.5,76,0,0,-0.00597179 -146322,7713:363:1,-133,76,0,0,-0.00597442 -146323,7708:361:1,-81,76,0,0,-0.00609245 -146324,7708:360:2,-80.5,76,0,0,-0.0060965 -146325,7708:360:1,-80,76,0,0,-0.00609109 -146326,7707:469:2,-79.5,76,0,0,-0.00606273 -146327,7707:469:1,-79,76,0,0,-0.00603986 -146328,7707:468:2,-78.5,76,0,0,-0.00622802 -146329,7707:468:1,-78,76,0,0,-0.00635531 -146330,7707:467:2,-77.5,76,0,0,-0.0064021 -146331,7707:467:1,-77,76,0,0,-0.00637514 -146332,7707:466:1,-76,76,0,0,-0.00617564 -146333,7707:465:2,-75.5,76,0,0,-0.00626693 -146334,7707:465:1,-75,76,0,0,-0.00622249 -146335,7707:364:2,-74.5,76,0,0,-0.00611826 -146336,7707:364:1,-74,76,0,0,-0.00604794 -146337,7707:363:2,-73.5,76,0,0,-0.00601309 -146338,7707:363:1,-73,76,0,0,-0.00599574 -146339,7707:362:2,-72.5,76,0,0,-0.00597576 -146340,7707:362:1,-72,76,0,0,-0.0059506 -146341,7707:361:2,-71.5,76,0,0,-0.00592551 -146342,7707:361:1,-71,76,0,0,-0.00590449 -146343,7707:360:2,-70.5,76,0,0,-0.00589269 -146344,7707:360:1,-70,76,0,0,-0.00589401 -146345,7706:469:2,-69.5,76,0,0,-0.00590974 -146346,7706:469:1,-69,76,0,0,-0.00592945 -146347,7706:468:2,-68.5,76,0,0,-0.00594399 -146348,7706:468:1,-68,76,0,0,-0.00594794 -146349,7706:364:1,-64,76,0,0,-0.00580818 -146350,7706:363:2,-63.5,76,0,0,-0.00581074 -146351,7706:363:1,-63,76,0,0,-0.00581204 -146352,7706:362:2,-62.5,76,0,0,-0.00580948 -146353,7706:362:1,-62,76,0,0,-0.00580302 -146354,7706:360:1,-60,76,0,0,-0.00580432 -146355,7705:469:2,-59.5,76,0,0,-0.00580302 -146356,7705:469:1,-59,76,0,0,-0.00579916 -146357,7705:467:1,-57,76,0,0,-0.00574912 -146358,7705:466:2,-56.5,76,0,0,-0.00574398 -146359,7705:466:1,-56,76,0,0,-0.00573763 -146360,7705:465:2,-55.5,76,0,0,-0.00572869 -146361,7705:465:1,-55,76,0,0,-0.00570965 -146362,7705:362:2,-52.5,76,0,0,-0.00574655 -146363,7705:362:1,-52,76,0,0,-0.00575037 -146364,7705:361:2,-51.5,76,0,0,-0.00573888 -146365,7705:360:2,-50.5,76,0,0,-0.00573635 -146366,7705:360:1,-50,76,0,0,-0.00573254 -146367,7704:469:2,-49.5,76,0,0,-0.00573378 -146368,7704:469:1,-49,76,0,0,-0.00573378 -146369,7704:468:2,-48.5,76,0,0,-0.00572869 -146370,7704:468:1,-48,76,0,0,-0.00571852 -146371,7704:467:2,-47.5,76,0,0,-0.00571344 -146372,7704:467:1,-47,76,0,0,-0.00570581 -146373,7704:466:2,-46.5,76,0,0,-0.00570458 -146374,7704:465:2,-45.5,76,0,0,-0.005716 -146375,7704:362:2,-42.5,76,0,0,-0.00576575 -146376,7704:362:1,-42,76,0,0,-0.00575677 -146377,7703:364:2,-34.5,76,0,0,-0.00567675 -146378,7703:364:1,-34,76,0,0,-0.00566541 -146379,7703:363:2,-33.5,76,0,0,-0.00566668 -146380,7703:363:1,-33,76,0,0,-0.00566541 -146381,7703:362:2,-32.5,76,0,0,-0.00566288 -146382,7703:362:1,-32,76,0,0,-0.00566165 -146383,7703:361:2,-31.5,76,0,0,-0.00566165 -146384,7703:361:1,-31,76,0,0,-0.00566165 -146385,7703:360:2,-30.5,76,0,0,-0.00566165 -146386,7703:360:1,-30,76,0,0,-0.00566288 -146387,7702:469:2,-29.5,76,0,0,-0.00566541 -146388,7702:469:1,-29,76,0,0,-0.00566791 -146389,7702:468:2,-28.5,76,0,0,-0.00567045 -146390,7702:468:1,-28,76,0,0,-0.00567421 -146391,7702:467:2,-27.5,76,0,0,-0.00567803 -146392,7702:467:1,-27,76,0,0,-0.00568053 -146393,7702:466:2,-26.5,76,0,0,-0.00568053 -146394,7702:466:1,-26,76,0,0,-0.00568053 -146395,7702:465:2,-25.5,76,0,0,-0.0056818 -146396,7702:465:1,-25,76,0,0,-0.0056818 -146397,7702:364:2,-24.5,76,0,0,-0.00568307 -146398,7702:364:1,-24,76,0,0,-0.0056843 -146399,7702:363:2,-23.5,76,0,0,-0.00568558 -146400,7702:363:1,-23,76,0,0,-0.00568558 -146401,7702:362:2,-22.5,76,0,0,-0.00568558 -146402,7702:362:1,-22,76,0,0,-0.0056818 -146403,7702:361:2,-21.5,76,0,0,-0.00567421 -146404,7702:361:1,-21,76,0,0,-0.00566414 -146405,7702:360:2,-20.5,76,0,0,-0.00565911 -146406,7702:360:1,-20,76,0,0,-0.00565282 -146407,7701:469:2,-19.5,76,0,0,-0.00564405 -146408,7701:469:1,-19,76,0,0,-0.00562651 -146409,7701:468:2,-18.5,76,0,0,-0.00560531 -146410,7701:468:1,-18,76,0,0,-0.00558664 -146411,7701:467:2,-17.5,76,0,0,-0.00557177 -146412,7701:467:1,-17,76,0,0,-0.00556437 -146413,7701:466:2,-16.5,76,0,0,-0.00556064 -146414,7701:466:1,-16,76,0,0,-0.00555943 -146415,7701:465:2,-15.5,76,0,0,-0.00556064 -146416,7701:465:1,-15,76,0,0,-0.00556064 -146417,7701:364:2,-14.5,76,0,0,-0.0055545 -146418,7701:364:1,-14,76,0,0,-0.00554216 -146419,7701:363:2,-13.5,76,0,0,-0.00553724 -146420,7701:363:1,-13,76,0,0,-0.00553232 -146421,7701:362:2,-12.5,76,0,0,-0.00552003 -146422,7701:362:1,-12,76,0,0,-0.00553968 -146423,7701:361:2,-11.5,76,0,0,-0.0055557 -146424,7701:361:1,-11,76,0,0,-0.00556682 -146425,7701:360:2,-10.5,76,0,0,-0.00558664 -146426,7701:360:1,-10,76,0,0,-0.00561402 -146427,7700:469:2,-9.5,76,0,0,-0.00565785 -146428,7700:469:1,-9,76,0,0,-0.00572741 -146429,7700:468:2,-8.5,76,0,0,-0.00596382 -146430,7700:468:1,-8,76,0,0,-0.00717436 -146431,7700:467:2,-7.5,76,0,0,-0.00661193 -146432,7700:467:1,-7,76,0,0,-0.00597045 -146433,7700:466:2,-6.5,76,0,0,-0.00589661 -146434,7700:466:1,-6,76,0,0,-0.00592419 -146435,7700:465:2,-5.5,76,0,0,-0.00594 -146436,7700:465:1,-5,76,0,0,-0.00596649 -146437,7700:364:2,-4.5,76,0,0,-0.00604925 -146438,7700:364:1,-4,76,0,0,-0.00611689 -146439,7700:363:2,-3.5,76,0,0,-0.00611552 -146440,7700:363:1,-3,76,0,0,-0.00612502 -146441,7700:362:2,-2.5,76,0,0,-0.00602378 -146442,7700:362:1,-2,76,0,0,-0.00601709 -146443,7700:361:2,-1.5,76,0,0,-0.00605196 -146444,7700:361:1,-1,76,0,0,-0.00610735 -146445,7700:360:2,-0.5,76,0,0,-0.00620175 -146446,1700:360:2,0,76,0,0,-0.00642207 -146447,1700:360:2,0.5,76,0,0,-0.0066903 -146448,1700:361:1,1,76,0,0,-0.00789679 -146449,1700:361:2,1.5,76,0,0,-0.00770402 -146450,1700:362:1,2,76,0,0,-0.00727405 -146451,1700:362:2,2.5,76,0,0,-0.00718875 -146452,1700:363:1,3,76,0,0,-0.0072935 -146453,1700:363:2,3.5,76,0,0,-0.00799057 -146454,1700:364:1,4,76,0,0,-0.00813602 -146455,1700:364:2,4.5,76,0,0,-0.00783724 -146456,1700:465:1,5,76,0,0,-0.0084916 -146457,1700:465:2,5.5,76,0,0,-0.009694 -146458,1700:466:1,6,76,0,0,-0.0105614 -146459,1700:466:2,6.5,76,0,0,-0.00957366 -146460,1700:467:1,7,76,0,0,-0.00850865 -146461,1700:467:2,7.5,76,0,0,-0.00865202 -146462,1700:468:1,8,76,0,0,-0.00921131 -146463,1700:468:2,8.5,76,0,0,-0.00978744 -146464,1700:469:1,9,76,0,0,-0.0100486 -146465,1700:469:2,9.5,76,0,0,-0.00983119 -146466,1701:360:1,10,76,0,0,-0.00926903 -146467,1701:363:2,13.5,76,0,0,-0.00585874 -146468,1701:364:1,14,76,0,0,-0.0059506 -146469,1701:364:2,14.5,76,0,0,-0.00598375 -146470,1701:465:1,15,76,0,0,-0.00595323 -146471,1701:465:2,15.5,76,0,0,-0.00588482 -146472,1701:466:1,16,76,0,0,-0.00586916 -146473,1701:466:2,16.5,76,0,0,-0.00590053 -146474,1701:467:1,17,76,0,0,-0.00592157 -146475,1701:467:2,17.5,76,0,0,-0.0059506 -146476,1701:468:1,18,76,0,0,-0.00599171 -146477,1701:468:2,18.5,76,0,0,-0.00596649 -146478,1701:469:1,19,76,0,0,-0.00616053 -146479,1701:469:2,19.5,76,0,0,-0.00661045 -146480,1702:360:1,20,76,0,0,-0.00662222 -146481,1702:360:2,20.5,76,0,0,-0.00662073 -146482,1702:361:1,21,76,0,0,-0.00664437 -146483,1702:361:2,21.5,76,0,0,-0.00633977 -146484,1713:468:2,138.5,76,0,0,-0.00608973 -146485,1713:469:1,139,76,0,0,-0.00607623 -146486,1713:469:2,139.5,76,0,0,-0.00605332 -146487,1714:360:1,140,76,0,0,-0.00598241 -146488,1714:360:2,140.5,76,0,0,-0.00591892 -146489,1714:361:1,141,76,0,0,-0.00584183 -146490,1714:361:2,141.5,76,0,0,-0.00577088 -146491,1714:362:1,142,76,0,0,-0.00566288 -146492,1714:362:2,142.5,76,0,0,-0.00558789 -146493,1714:363:1,143,76,0,0,-0.00555694 -146494,1714:363:2,143.5,76,0,0,-0.00556188 -146495,1714:364:1,144,76,0,0,-0.00559164 -146496,1714:364:2,144.5,76,0,0,-0.00554708 -146497,1714:465:1,145,76,0,0,-0.00554216 -146498,1714:465:2,145.5,76,0,0,-0.005536 -146499,1714:468:1,148,76,0,0,-0.0056028 -146500,1714:468:2,148.5,76,0,0,-0.00563904 -146501,1714:469:1,149,76,0,0,-0.00560405 -146502,1714:469:2,149.5,76,0,0,-0.00558914 -146503,1715:360:1,150,76,0,0,-0.00555077 -146504,1715:360:2,150.5,76,0,0,-0.00551024 -146505,1715:361:1,151,76,0,0,-0.00551637 -146506,1715:361:2,151.5,76,0,0,-0.00551756 -146507,1715:362:1,152,76,0,0,-0.00551756 -146508,1715:362:2,152.5,76,0,0,-0.00551637 -146509,1715:363:1,153,76,0,0,-0.0055225 -146510,1715:363:2,153.5,76,0,0,-0.00553232 -146511,1715:364:1,154,76,0,0,-0.00554832 -146512,1715:364:2,154.5,76,0,0,-0.00556313 -146513,1715:465:1,155,76,0,0,-0.00557672 -146514,1715:465:2,155.5,76,0,0,-0.00558664 -146515,1715:466:1,156,76,0,0,-0.00559039 -146516,1715:466:2,156.5,76,0,0,-0.0055941 -146517,1715:467:1,157,76,0,0,-0.00559782 -146518,1715:467:2,157.5,76,0,0,-0.00560033 -146519,1715:468:1,158,76,0,0,-0.00560405 -146520,1715:468:2,158.5,76,0,0,-0.00561029 -146521,1715:469:1,159,76,0,0,-0.00561527 -146522,1715:469:2,159.5,76,0,0,-0.005619 -146523,1716:360:1,160,76,0,0,-0.00562278 -146524,1716:360:2,160.5,76,0,0,-0.00562651 -146525,1716:361:1,161,76,0,0,-0.00563151 -146526,1716:361:2,161.5,76,0,0,-0.00563778 -146527,1716:362:1,162,76,0,0,-0.00564405 -146528,1716:362:2,162.5,76,0,0,-0.00564907 -146529,1716:363:1,163,76,0,0,-0.00565282 -146530,1716:363:2,163.5,76,0,0,-0.00565409 -146531,1716:364:1,164,76,0,0,-0.00565535 -146532,1716:364:2,164.5,76,0,0,-0.00565658 -146533,1716:465:1,165,76,0,0,-0.00565658 -146534,1716:465:2,165.5,76,0,0,-0.00565785 -146535,1716:466:1,166,76,0,0,-0.00565911 -146536,1716:466:2,166.5,76,0,0,-0.00566038 -146537,1716:467:1,167,76,0,0,-0.00566165 -146538,1716:467:2,167.5,76,0,0,-0.00566288 -146539,1716:468:1,168,76,0,0,-0.00566414 -146540,1716:468:2,168.5,76,0,0,-0.00566414 -146541,1716:469:1,169,76,0,0,-0.00566414 -146542,1716:469:2,169.5,76,0,0,-0.00566541 -146543,1717:360:1,170,76,0,0,-0.00566668 -146544,1717:360:2,170.5,76,0,0,-0.00566668 -146545,1717:361:1,171,76,0,0,-0.00566791 -146546,1717:361:2,171.5,76,0,0,-0.00566918 -146547,1717:362:1,172,76,0,0,-0.00566918 -146548,1717:362:2,172.5,76,0,0,-0.00567045 -146549,1717:363:1,173,76,0,0,-0.00567171 -146550,1717:363:2,173.5,76,0,0,-0.00567294 -146551,1717:364:1,174,76,0,0,-0.00567421 -146552,1717:364:2,174.5,76,0,0,-0.00567675 -146553,1717:465:1,175,76,0,0,-0.00567803 -146554,1717:465:2,175.5,76,0,0,-0.00568053 -146555,1717:466:1,176,76,0,0,-0.00568307 -146556,1717:466:2,176.5,76,0,0,-0.0056843 -146557,1717:467:1,177,76,0,0,-0.00568685 -146558,1717:467:2,177.5,76,0,0,-0.00568812 -146559,1717:468:1,178,76,0,0,-0.00568936 -146560,1717:468:2,178.5,76,0,0,-0.00568936 -146561,1717:469:1,179,76,0,0,-0.00569063 -146562,1717:469:2,179.5,76,0,0,-0.00569063 -146563,1718:360:1,180,76,0,0,-0.00569318 -146564,7718:360:3,-180,76.5,0,0,-0.00569445 -146565,7717:469:4,-179.5,76.5,0,0,-0.00569569 -146566,7717:469:3,-179,76.5,0,0,-0.00569569 -146567,7717:468:4,-178.5,76.5,0,0,-0.00569569 -146568,7717:468:3,-178,76.5,0,0,-0.00569569 -146569,7717:467:4,-177.5,76.5,0,0,-0.00569569 -146570,7717:467:3,-177,76.5,0,0,-0.00569696 -146571,7717:466:4,-176.5,76.5,0,0,-0.00569951 -146572,7717:466:3,-176,76.5,0,0,-0.00570075 -146573,7717:465:4,-175.5,76.5,0,0,-0.00570202 -146574,7717:465:3,-175,76.5,0,0,-0.00570458 -146575,7717:364:4,-174.5,76.5,0,0,-0.00570581 -146576,7717:364:3,-174,76.5,0,0,-0.00570709 -146577,7717:363:4,-173.5,76.5,0,0,-0.00570709 -146578,7717:363:3,-173,76.5,0,0,-0.00570709 -146579,7717:362:4,-172.5,76.5,0,0,-0.00570837 -146580,7717:362:3,-172,76.5,0,0,-0.00570965 -146581,7717:361:4,-171.5,76.5,0,0,-0.00571092 -146582,7717:361:3,-171,76.5,0,0,-0.00571216 -146583,7717:360:4,-170.5,76.5,0,0,-0.00571472 -146584,7717:360:3,-170,76.5,0,0,-0.00571724 -146585,7716:469:4,-169.5,76.5,0,0,-0.0057198 -146586,7716:469:3,-169,76.5,0,0,-0.00572108 -146587,7716:468:4,-168.5,76.5,0,0,-0.0057236 -146588,7716:468:3,-168,76.5,0,0,-0.00572616 -146589,7716:467:4,-167.5,76.5,0,0,-0.00572869 -146590,7716:467:3,-167,76.5,0,0,-0.00573125 -146591,7716:466:4,-166.5,76.5,0,0,-0.00572741 -146592,7716:466:3,-166,76.5,0,0,-0.00572232 -146593,7716:465:4,-165.5,76.5,0,0,-0.00571852 -146594,7716:465:3,-165,76.5,0,0,-0.00571344 -146595,7716:364:4,-164.5,76.5,0,0,-0.00570458 -146596,7716:364:3,-164,76.5,0,0,-0.00569951 -146597,7716:363:4,-163.5,76.5,0,0,-0.00569569 -146598,7716:363:3,-163,76.5,0,0,-0.00569445 -146599,7716:362:4,-162.5,76.5,0,0,-0.00570837 -146600,7716:362:3,-162,76.5,0,0,-0.00573125 -146601,7716:361:4,-161.5,76.5,0,0,-0.00574273 -146602,7716:361:3,-161,76.5,0,0,-0.00572741 -146603,7715:468:4,-158.5,76.5,0,0,-0.00572616 -146604,7715:468:3,-158,76.5,0,0,-0.00573125 -146605,7715:467:4,-157.5,76.5,0,0,-0.00573506 -146606,7715:467:3,-157,76.5,0,0,-0.00574398 -146607,7715:466:4,-156.5,76.5,0,0,-0.00575548 -146608,7715:466:3,-156,76.5,0,0,-0.00576317 -146609,7715:465:4,-155.5,76.5,0,0,-0.00576317 -146610,7715:465:3,-155,76.5,0,0,-0.00576446 -146611,7715:364:4,-154.5,76.5,0,0,-0.00577985 -146612,7715:360:4,-150.5,76.5,0,0,-0.00575677 -146613,7714:363:3,-143,76.5,0,0,-0.00579916 -146614,7714:362:4,-142.5,76.5,0,0,-0.00580948 -146615,7714:362:3,-142,76.5,0,0,-0.00574144 -146616,7713:465:4,-135.5,76.5,0,0,-0.00592945 -146617,7713:465:3,-135,76.5,0,0,-0.00594266 -146618,7713:364:4,-134.5,76.5,0,0,-0.00594661 -146619,7713:364:3,-134,76.5,0,0,-0.00595589 -146620,7713:363:4,-133.5,76.5,0,0,-0.00596515 -146621,7713:363:3,-133,76.5,0,0,-0.00597974 -146622,7708:361:3,-81,76.5,0,0,-0.00605196 -146623,7708:360:4,-80.5,76.5,0,0,-0.00604794 -146624,7708:360:3,-80,76.5,0,0,-0.00603585 -146625,7707:469:4,-79.5,76.5,0,0,-0.00601174 -146626,7707:469:3,-79,76.5,0,0,-0.0059944 -146627,7707:468:4,-78.5,76.5,0,0,-0.00606676 -146628,7707:468:3,-78,76.5,0,0,-0.00621144 -146629,7707:467:4,-77.5,76.5,0,0,-0.00625996 -146630,7707:467:3,-77,76.5,0,0,-0.00624189 -146631,7707:466:4,-76.5,76.5,0,0,-0.00617153 -146632,7707:466:3,-76,76.5,0,0,-0.00609787 -146633,7707:465:4,-75.5,76.5,0,0,-0.00609245 -146634,7707:465:3,-75,76.5,0,0,-0.00607759 -146635,7707:364:4,-74.5,76.5,0,0,-0.00603986 -146636,7707:364:3,-74,76.5,0,0,-0.0060104 -146637,7707:363:4,-73.5,76.5,0,0,-0.00599041 -146638,7707:363:3,-73,76.5,0,0,-0.0059771 -146639,7707:362:4,-72.5,76.5,0,0,-0.00596252 -146640,7707:362:3,-72,76.5,0,0,-0.00593871 -146641,7707:361:4,-71.5,76.5,0,0,-0.00591632 -146642,7707:361:3,-71,76.5,0,0,-0.00589137 -146643,7707:360:4,-70.5,76.5,0,0,-0.00586916 -146644,7707:360:3,-70,76.5,0,0,-0.00586784 -146645,7706:469:4,-69.5,76.5,0,0,-0.00589925 -146646,7706:469:3,-69,76.5,0,0,-0.00592945 -146647,7706:364:3,-64,76.5,0,0,-0.00580688 -146648,7706:363:4,-63.5,76.5,0,0,-0.00582237 -146649,7706:363:3,-63,76.5,0,0,-0.00582628 -146650,7706:362:4,-62.5,76.5,0,0,-0.00581981 -146651,7706:362:3,-62,76.5,0,0,-0.00581464 -146652,7706:361:4,-61.5,76.5,0,0,-0.00580432 -146653,7706:361:3,-61,76.5,0,0,-0.00579527 -146654,7706:360:4,-60.5,76.5,0,0,-0.00579272 -146655,7706:360:3,-60,76.5,0,0,-0.00579142 -146656,7705:469:4,-59.5,76.5,0,0,-0.00579527 -146657,7705:466:3,-56,76.5,0,0,-0.00573125 -146658,7705:465:4,-55.5,76.5,0,0,-0.00572997 -146659,7705:465:3,-55,76.5,0,0,-0.00572232 -146660,7705:364:4,-54.5,76.5,0,0,-0.005716 -146661,7705:363:3,-53,76.5,0,0,-0.00573378 -146662,7705:362:4,-52.5,76.5,0,0,-0.00572741 -146663,7705:362:3,-52,76.5,0,0,-0.00572616 -146664,7705:361:4,-51.5,76.5,0,0,-0.00571852 -146665,7705:360:3,-50,76.5,0,0,-0.00572108 -146666,7704:469:4,-49.5,76.5,0,0,-0.0057236 -146667,7704:469:3,-49,76.5,0,0,-0.00572488 -146668,7704:465:3,-45,76.5,0,0,-0.00573254 -146669,7704:363:3,-43,76.5,0,0,-0.005767 -146670,7704:362:4,-42.5,76.5,0,0,-0.00577601 -146671,7703:465:3,-35,76.5,0,0,-0.00568053 -146672,7703:364:4,-34.5,76.5,0,0,-0.00566918 -146673,7703:364:3,-34,76.5,0,0,-0.00566288 -146674,7703:363:4,-33.5,76.5,0,0,-0.00566165 -146675,7703:363:3,-33,76.5,0,0,-0.00566038 -146676,7703:362:4,-32.5,76.5,0,0,-0.00565785 -146677,7703:362:3,-32,76.5,0,0,-0.00565785 -146678,7703:361:4,-31.5,76.5,0,0,-0.00565785 -146679,7703:361:3,-31,76.5,0,0,-0.00566038 -146680,7703:360:4,-30.5,76.5,0,0,-0.00566414 -146681,7703:360:3,-30,76.5,0,0,-0.00566791 -146682,7702:469:4,-29.5,76.5,0,0,-0.00567294 -146683,7702:469:3,-29,76.5,0,0,-0.00567675 -146684,7702:468:4,-28.5,76.5,0,0,-0.00567803 -146685,7702:468:3,-28,76.5,0,0,-0.00567926 -146686,7702:467:4,-27.5,76.5,0,0,-0.00568053 -146687,7702:467:3,-27,76.5,0,0,-0.0056818 -146688,7702:466:4,-26.5,76.5,0,0,-0.00568307 -146689,7702:466:3,-26,76.5,0,0,-0.00568307 -146690,7702:465:4,-25.5,76.5,0,0,-0.00568307 -146691,7702:465:3,-25,76.5,0,0,-0.00568307 -146692,7702:364:4,-24.5,76.5,0,0,-0.0056843 -146693,7702:364:3,-24,76.5,0,0,-0.0056843 -146694,7702:363:4,-23.5,76.5,0,0,-0.00568558 -146695,7702:363:3,-23,76.5,0,0,-0.00568558 -146696,7702:362:4,-22.5,76.5,0,0,-0.00568307 -146697,7702:362:3,-22,76.5,0,0,-0.00567803 -146698,7702:361:4,-21.5,76.5,0,0,-0.00567171 -146699,7702:361:3,-21,76.5,0,0,-0.00566541 -146700,7702:360:4,-20.5,76.5,0,0,-0.00566165 -146701,7702:360:3,-20,76.5,0,0,-0.00565033 -146702,7701:469:4,-19.5,76.5,0,0,-0.00563904 -146703,7701:469:3,-19,76.5,0,0,-0.00563025 -146704,7701:468:4,-18.5,76.5,0,0,-0.00562152 -146705,7701:468:3,-18,76.5,0,0,-0.00561154 -146706,7701:467:4,-17.5,76.5,0,0,-0.0055941 -146707,7701:467:3,-17,76.5,0,0,-0.00557426 -146708,7701:466:4,-16.5,76.5,0,0,-0.00555819 -146709,7701:466:3,-16,76.5,0,0,-0.00554092 -146710,7701:465:4,-15.5,76.5,0,0,-0.00553352 -146711,7701:465:3,-15,76.5,0,0,-0.00553232 -146712,7701:364:4,-14.5,76.5,0,0,-0.00553476 -146713,7701:364:3,-14,76.5,0,0,-0.00553968 -146714,7701:363:4,-13.5,76.5,0,0,-0.00554216 -146715,7701:363:3,-13,76.5,0,0,-0.00553968 -146716,7701:362:4,-12.5,76.5,0,0,-0.00552741 -146717,7701:362:3,-12,76.5,0,0,-0.00551513 -146718,7701:361:4,-11.5,76.5,0,0,-0.0055188 -146719,7701:361:3,-11,76.5,0,0,-0.00553108 -146720,7701:360:4,-10.5,76.5,0,0,-0.00554953 -146721,7701:360:3,-10,76.5,0,0,-0.00558418 -146722,7700:469:4,-9.5,76.5,0,0,-0.0056403 -146723,7700:469:3,-9,76.5,0,0,-0.00571344 -146724,7700:468:4,-8.5,76.5,0,0,-0.00587306 -146725,7700:468:3,-8,76.5,0,0,-0.00617015 -146726,7700:467:4,-7.5,76.5,0,0,-0.00618524 -146727,7700:467:3,-7,76.5,0,0,-0.00593211 -146728,7700:466:4,-6.5,76.5,0,0,-0.00601574 -146729,7700:466:3,-6,76.5,0,0,-0.00606137 -146730,7700:465:4,-5.5,76.5,0,0,-0.00607487 -146731,7700:465:3,-5,76.5,0,0,-0.0060965 -146732,7700:364:4,-4.5,76.5,0,0,-0.00612095 -146733,7700:364:3,-4,76.5,0,0,-0.00613051 -146734,7700:363:3,-3,76.5,0,0,-0.00614959 -146735,7700:362:4,-2.5,76.5,0,0,-0.00623081 -146736,7700:362:3,-2,76.5,0,0,-0.00629066 -146737,7700:361:4,-1.5,76.5,0,0,-0.00632147 -146738,7700:361:3,-1,76.5,0,0,-0.00653591 -146739,7700:360:4,-0.5,76.5,0,0,-0.00686214 -146740,1700:360:4,0,76.5,0,0,-0.0067817 -146741,1700:360:4,0.5,76.5,0,0,-0.00665619 -146742,1700:361:3,1,76.5,0,0,-0.0073932 -146743,1700:361:4,1.5,76.5,0,0,-0.00782154 -146744,1700:362:3,2,76.5,0,0,-0.00749427 -146745,1700:362:4,2.5,76.5,0,0,-0.00725787 -146746,1700:363:3,3,76.5,0,0,-0.00713777 -146747,1700:363:4,3.5,76.5,0,0,-0.00789679 -146748,1700:364:3,4,76.5,0,0,-0.00894621 -146749,1700:364:4,4.5,76.5,0,0,-0.00886088 -146750,1700:465:3,5,76.5,0,0,-0.00965731 -146751,1700:465:4,5.5,76.5,0,0,-0.01015 -146752,1700:466:3,6,76.5,0,0,-0.00993928 -146753,1700:466:4,6.5,76.5,0,0,-0.0083249 -146754,1700:467:3,7,76.5,0,0,-0.00788628 -146755,1700:467:4,7.5,76.5,0,0,-0.00817966 -146756,1700:468:3,8,76.5,0,0,-0.00864049 -146757,1700:468:4,8.5,76.5,0,0,-0.0095566 -146758,1700:469:3,9,76.5,0,0,-0.00957581 -146759,1701:362:4,12.5,76.5,0,0,-0.00585222 -146760,1701:363:3,13,76.5,0,0,-0.00584183 -146761,1701:363:4,13.5,76.5,0,0,-0.00589005 -146762,1701:364:3,14,76.5,0,0,-0.00590317 -146763,1701:364:4,14.5,76.5,0,0,-0.00586653 -146764,1701:465:3,15,76.5,0,0,-0.00583534 -146765,1701:465:4,15.5,76.5,0,0,-0.00582628 -146766,1701:466:3,16,76.5,0,0,-0.00584572 -146767,1701:466:4,16.5,76.5,0,0,-0.00586263 -146768,1701:467:3,17,76.5,0,0,-0.00588482 -146769,1701:467:4,17.5,76.5,0,0,-0.00590053 -146770,1701:468:3,18,76.5,0,0,-0.00592419 -146771,1701:468:4,18.5,76.5,0,0,-0.00598907 -146772,1701:469:3,19,76.5,0,0,-0.00616053 -146773,1701:469:4,19.5,76.5,0,0,-0.00642635 -146774,1702:360:3,20,76.5,0,0,-0.00660749 -146775,1702:360:4,20.5,76.5,0,0,-0.00646361 -146776,1702:361:3,21,76.5,0,0,-0.00634261 -146777,1702:361:4,21.5,76.5,0,0,-0.00617702 -146778,1713:468:3,138,76.5,0,0,-0.00610329 -146779,1713:468:4,138.5,76.5,0,0,-0.00608973 -146780,1713:469:3,139,76.5,0,0,-0.00608163 -146781,1713:469:4,139.5,76.5,0,0,-0.00605332 -146782,1714:360:3,140,76.5,0,0,-0.00600506 -146783,1714:360:4,140.5,76.5,0,0,-0.00591106 -146784,1714:361:3,141,76.5,0,0,-0.00576059 -146785,1714:361:4,141.5,76.5,0,0,-0.00561778 -146786,1714:362:3,142,76.5,0,0,-0.0055434 -146787,1714:362:4,142.5,76.5,0,0,-0.00553352 -146788,1714:363:3,143,76.5,0,0,-0.00556807 -146789,1714:363:4,143.5,76.5,0,0,-0.00562777 -146790,1714:364:3,144,76.5,0,0,-0.00563277 -146791,1714:364:4,144.5,76.5,0,0,-0.00558293 -146792,1714:465:3,145,76.5,0,0,-0.0055434 -146793,1714:465:4,145.5,76.5,0,0,-0.00553848 -146794,1714:468:4,148.5,76.5,0,0,-0.00555201 -146795,1714:469:3,149,76.5,0,0,-0.00560903 -146796,1714:469:4,149.5,76.5,0,0,-0.00561402 -146797,1715:360:3,150,76.5,0,0,-0.00558789 -146798,1715:360:4,150.5,76.5,0,0,-0.00554708 -146799,1715:361:3,151,76.5,0,0,-0.00550777 -146800,1715:361:4,151.5,76.5,0,0,-0.0055225 -146801,1715:362:3,152,76.5,0,0,-0.00551637 -146802,1715:362:4,152.5,76.5,0,0,-0.00551637 -146803,1715:363:3,153,76.5,0,0,-0.00552127 -146804,1715:363:4,153.5,76.5,0,0,-0.00553108 -146805,1715:364:3,154,76.5,0,0,-0.00554584 -146806,1715:364:4,154.5,76.5,0,0,-0.00556064 -146807,1715:465:3,155,76.5,0,0,-0.00557426 -146808,1715:465:4,155.5,76.5,0,0,-0.00558418 -146809,1715:466:3,156,76.5,0,0,-0.00559039 -146810,1715:466:4,156.5,76.5,0,0,-0.0055941 -146811,1715:467:3,157,76.5,0,0,-0.00559661 -146812,1715:467:4,157.5,76.5,0,0,-0.00559908 -146813,1715:468:3,158,76.5,0,0,-0.00560405 -146814,1715:468:4,158.5,76.5,0,0,-0.00560903 -146815,1715:469:3,159,76.5,0,0,-0.0056128 -146816,1715:469:4,159.5,76.5,0,0,-0.00561653 -146817,1716:360:3,160,76.5,0,0,-0.00562026 -146818,1716:360:4,160.5,76.5,0,0,-0.00562526 -146819,1716:361:3,161,76.5,0,0,-0.00563025 -146820,1716:361:4,161.5,76.5,0,0,-0.00563526 -146821,1716:362:3,162,76.5,0,0,-0.0056403 -146822,1716:362:4,162.5,76.5,0,0,-0.00564654 -146823,1716:363:3,163,76.5,0,0,-0.00565156 -146824,1716:363:4,163.5,76.5,0,0,-0.00565535 -146825,1716:364:3,164,76.5,0,0,-0.00565658 -146826,1716:364:4,164.5,76.5,0,0,-0.00565785 -146827,1716:465:3,165,76.5,0,0,-0.00565785 -146828,1716:465:4,165.5,76.5,0,0,-0.00565785 -146829,1716:466:3,166,76.5,0,0,-0.00565911 -146830,1716:466:4,166.5,76.5,0,0,-0.00566038 -146831,1716:467:3,167,76.5,0,0,-0.00566165 -146832,1716:467:4,167.5,76.5,0,0,-0.00566288 -146833,1716:468:3,168,76.5,0,0,-0.00566414 -146834,1716:468:4,168.5,76.5,0,0,-0.00566541 -146835,1716:469:3,169,76.5,0,0,-0.00566541 -146836,1716:469:4,169.5,76.5,0,0,-0.00566541 -146837,1717:360:3,170,76.5,0,0,-0.00566541 -146838,1717:360:4,170.5,76.5,0,0,-0.00566668 -146839,1717:361:3,171,76.5,0,0,-0.00566791 -146840,1717:361:4,171.5,76.5,0,0,-0.00566791 -146841,1717:362:3,172,76.5,0,0,-0.00566918 -146842,1717:362:4,172.5,76.5,0,0,-0.00567045 -146843,1717:363:3,173,76.5,0,0,-0.00567171 -146844,1717:363:4,173.5,76.5,0,0,-0.00567294 -146845,1717:364:3,174,76.5,0,0,-0.00567421 -146846,1717:364:4,174.5,76.5,0,0,-0.00567675 -146847,1717:465:3,175,76.5,0,0,-0.00567926 -146848,1717:465:4,175.5,76.5,0,0,-0.0056818 -146849,1717:466:3,176,76.5,0,0,-0.00568307 -146850,1717:466:4,176.5,76.5,0,0,-0.00568558 -146851,1717:467:3,177,76.5,0,0,-0.00568685 -146852,1717:467:4,177.5,76.5,0,0,-0.00568936 -146853,1717:468:3,178,76.5,0,0,-0.00569063 -146854,1717:468:4,178.5,76.5,0,0,-0.00569063 -146855,1717:469:3,179,76.5,0,0,-0.00569063 -146856,1717:469:4,179.5,76.5,0,0,-0.0056919 -146857,1718:360:3,180,76.5,0,0,-0.00569445 -146858,7718:370:1,-180,77,0,0,-0.0056919 -146859,7717:479:2,-179.5,77,0,0,-0.00569318 -146860,7717:479:1,-179,77,0,0,-0.00569445 -146861,7717:478:2,-178.5,77,0,0,-0.00569445 -146862,7717:478:1,-178,77,0,0,-0.00569445 -146863,7717:477:2,-177.5,77,0,0,-0.00569569 -146864,7717:477:1,-177,77,0,0,-0.00569696 -146865,7717:476:2,-176.5,77,0,0,-0.00569824 -146866,7717:476:1,-176,77,0,0,-0.00569951 -146867,7717:475:2,-175.5,77,0,0,-0.00570075 -146868,7717:475:1,-175,77,0,0,-0.0057033 -146869,7717:374:2,-174.5,77,0,0,-0.00570458 -146870,7717:374:1,-174,77,0,0,-0.00570458 -146871,7717:373:2,-173.5,77,0,0,-0.00570458 -146872,7717:373:1,-173,77,0,0,-0.00570458 -146873,7717:372:2,-172.5,77,0,0,-0.0057033 -146874,7717:372:1,-172,77,0,0,-0.00570458 -146875,7717:371:2,-171.5,77,0,0,-0.00570581 -146876,7717:371:1,-171,77,0,0,-0.00570965 -146877,7717:370:2,-170.5,77,0,0,-0.00571216 -146878,7717:370:1,-170,77,0,0,-0.00571724 -146879,7716:479:2,-169.5,77,0,0,-0.00572108 -146880,7716:479:1,-169,77,0,0,-0.0057236 -146881,7716:478:2,-168.5,77,0,0,-0.0057236 -146882,7716:478:1,-168,77,0,0,-0.00572488 -146883,7716:477:2,-167.5,77,0,0,-0.00572616 -146884,7716:477:1,-167,77,0,0,-0.00572741 -146885,7716:476:2,-166.5,77,0,0,-0.00572232 -146886,7716:476:1,-166,77,0,0,-0.0057198 -146887,7716:475:2,-165.5,77,0,0,-0.005716 -146888,7716:475:1,-165,77,0,0,-0.00570581 -146889,7716:374:2,-164.5,77,0,0,-0.00569824 -146890,7716:374:1,-164,77,0,0,-0.00569569 -146891,7716:373:2,-163.5,77,0,0,-0.00569445 -146892,7716:373:1,-163,77,0,0,-0.00569951 -146893,7716:372:2,-162.5,77,0,0,-0.0057198 -146894,7716:372:1,-162,77,0,0,-0.00573763 -146895,7716:371:2,-161.5,77,0,0,-0.00574273 -146896,7715:479:1,-159,77,0,0,-0.00572616 -146897,7715:478:2,-158.5,77,0,0,-0.00573125 -146898,7715:477:2,-157.5,77,0,0,-0.00572869 -146899,7715:477:1,-157,77,0,0,-0.00573125 -146900,7715:476:2,-156.5,77,0,0,-0.00573635 -146901,7715:476:1,-156,77,0,0,-0.00574016 -146902,7715:475:2,-155.5,77,0,0,-0.00574783 -146903,7715:475:1,-155,77,0,0,-0.00575423 -146904,7715:374:2,-154.5,77,0,0,-0.00575934 -146905,7715:374:1,-154,77,0,0,-0.00575934 -146906,7715:371:1,-151,77,0,0,-0.00575037 -146907,7714:372:2,-142.5,77,0,0,-0.00579397 -146908,7714:372:1,-142,77,0,0,-0.00575677 -146909,7713:475:1,-135,77,0,0,-0.00592945 -146910,7713:374:1,-134,77,0,0,-0.00593472 -146911,7713:373:2,-133.5,77,0,0,-0.00595985 -146912,7713:373:1,-133,77,0,0,-0.00596649 -146913,7708:371:1,-81,77,0,0,-0.00601174 -146914,7708:370:2,-80.5,77,0,0,-0.00600107 -146915,7708:370:1,-80,77,0,0,-0.00599305 -146916,7707:479:2,-79.5,77,0,0,-0.00598375 -146917,7707:479:1,-79,77,0,0,-0.00598773 -146918,7707:478:2,-78.5,77,0,0,-0.00601709 -146919,7707:477:2,-77.5,77,0,0,-0.00613322 -146920,7707:477:1,-77,77,0,0,-0.0060965 -146921,7707:476:2,-76.5,77,0,0,-0.00604659 -146922,7707:476:1,-76,77,0,0,-0.00602779 -146923,7707:475:2,-75.5,77,0,0,-0.00601709 -146924,7707:374:2,-74.5,77,0,0,-0.00601978 -146925,7707:373:2,-73.5,77,0,0,-0.00599305 -146926,7707:373:1,-73,77,0,0,-0.00596649 -146927,7707:372:2,-72.5,77,0,0,-0.00594927 -146928,7707:372:1,-72,77,0,0,-0.00592684 -146929,7707:371:1,-71,77,0,0,-0.00587178 -146930,7707:370:2,-70.5,77,0,0,-0.00585484 -146931,7707:370:1,-70,77,0,0,-0.00584441 -146932,7706:479:2,-69.5,77,0,0,-0.00588091 -146933,7706:479:1,-69,77,0,0,-0.00592286 -146934,7706:478:2,-68.5,77,0,0,-0.00593211 -146935,7706:373:2,-63.5,77,0,0,-0.00585091 -146936,7706:371:1,-61,77,0,0,-0.00574655 -146937,7706:370:2,-60.5,77,0,0,-0.00575294 -146938,7706:370:1,-60,77,0,0,-0.005767 -146939,7705:479:2,-59.5,77,0,0,-0.00578114 -146940,7705:479:1,-59,77,0,0,-0.00578498 -146941,7705:478:2,-58.5,77,0,0,-0.00577471 -146942,7705:476:1,-56,77,0,0,-0.00572108 -146943,7705:475:1,-55,77,0,0,-0.0057198 -146944,7705:374:2,-54.5,77,0,0,-0.005716 -146945,7705:372:2,-52.5,77,0,0,-0.00572108 -146946,7705:372:1,-52,77,0,0,-0.00571472 -146947,7705:371:2,-51.5,77,0,0,-0.00570965 -146948,7705:371:1,-51,77,0,0,-0.00570837 -146949,7705:370:2,-50.5,77,0,0,-0.00570965 -146950,7705:370:1,-50,77,0,0,-0.00571216 -146951,7704:479:2,-49.5,77,0,0,-0.00571724 -146952,7704:374:2,-44.5,77,0,0,-0.00573635 -146953,7704:374:1,-44,77,0,0,-0.00573763 -146954,7704:373:2,-43.5,77,0,0,-0.00573763 -146955,7704:373:1,-43,77,0,0,-0.00574273 -146956,7703:476:1,-36,77,0,0,-0.00568812 -146957,7703:475:2,-35.5,77,0,0,-0.00567926 -146958,7703:475:1,-35,77,0,0,-0.00566791 -146959,7703:374:2,-34.5,77,0,0,-0.00566414 -146960,7703:374:1,-34,77,0,0,-0.00566165 -146961,7703:373:2,-33.5,77,0,0,-0.00565911 -146962,7703:373:1,-33,77,0,0,-0.00565658 -146963,7703:372:2,-32.5,77,0,0,-0.00565658 -146964,7703:372:1,-32,77,0,0,-0.00565911 -146965,7703:371:2,-31.5,77,0,0,-0.00566165 -146966,7703:371:1,-31,77,0,0,-0.00566668 -146967,7703:370:2,-30.5,77,0,0,-0.00567045 -146968,7703:370:1,-30,77,0,0,-0.00567421 -146969,7702:479:2,-29.5,77,0,0,-0.00567675 -146970,7702:479:1,-29,77,0,0,-0.00567926 -146971,7702:478:2,-28.5,77,0,0,-0.00567926 -146972,7702:478:1,-28,77,0,0,-0.00567926 -146973,7702:477:2,-27.5,77,0,0,-0.00568053 -146974,7702:477:1,-27,77,0,0,-0.00568053 -146975,7702:476:2,-26.5,77,0,0,-0.0056818 -146976,7702:476:1,-26,77,0,0,-0.00568307 -146977,7702:475:2,-25.5,77,0,0,-0.00568307 -146978,7702:475:1,-25,77,0,0,-0.00568307 -146979,7702:374:2,-24.5,77,0,0,-0.00568307 -146980,7702:374:1,-24,77,0,0,-0.00568307 -146981,7702:373:2,-23.5,77,0,0,-0.00568307 -146982,7702:373:1,-23,77,0,0,-0.00568053 -146983,7702:372:2,-22.5,77,0,0,-0.00567803 -146984,7702:372:1,-22,77,0,0,-0.00567294 -146985,7702:371:2,-21.5,77,0,0,-0.00566918 -146986,7702:371:1,-21,77,0,0,-0.00566668 -146987,7702:370:2,-20.5,77,0,0,-0.00566541 -146988,7702:370:1,-20,77,0,0,-0.00565911 -146989,7701:479:2,-19.5,77,0,0,-0.00565033 -146990,7701:479:1,-19,77,0,0,-0.00564153 -146991,7701:478:2,-18.5,77,0,0,-0.00563151 -146992,7701:478:1,-18,77,0,0,-0.00562152 -146993,7701:477:2,-17.5,77,0,0,-0.00560781 -146994,7701:477:1,-17,77,0,0,-0.00559164 -146995,7701:476:2,-16.5,77,0,0,-0.00557797 -146996,7701:476:1,-16,77,0,0,-0.00555694 -146997,7701:475:2,-15.5,77,0,0,-0.005536 -146998,7701:475:1,-15,77,0,0,-0.0055237 -146999,7701:374:2,-14.5,77,0,0,-0.00551756 -147000,7701:374:1,-14,77,0,0,-0.0055188 -147001,7701:373:2,-13.5,77,0,0,-0.0055225 -147002,7701:373:1,-13,77,0,0,-0.00552127 -147003,7701:372:2,-12.5,77,0,0,-0.00551513 -147004,7701:372:1,-12,77,0,0,-0.005509 -147005,7701:371:2,-11.5,77,0,0,-0.005509 -147006,7701:371:1,-11,77,0,0,-0.0055237 -147007,7701:370:2,-10.5,77,0,0,-0.00554216 -147008,7701:370:1,-10,77,0,0,-0.00556558 -147009,7700:479:2,-9.5,77,0,0,-0.00560531 -147010,7700:479:1,-9,77,0,0,-0.00566038 -147011,7700:478:2,-8.5,77,0,0,-0.00571344 -147012,7700:478:1,-8,77,0,0,-0.00575677 -147013,7700:477:2,-7.5,77,0,0,-0.00579142 -147014,7700:477:1,-7,77,0,0,-0.00590974 -147015,7700:476:2,-6.5,77,0,0,-0.00610872 -147016,7700:476:1,-6,77,0,0,-0.00612914 -147017,7700:475:2,-5.5,77,0,0,-0.00613729 -147018,7700:475:1,-5,77,0,0,-0.00613459 -147019,7700:374:2,-4.5,77,0,0,-0.00591367 -147020,7700:374:1,-4,77,0,0,-0.00596382 -147021,7700:372:1,-2,77,0,0,-0.00627808 -147022,7700:371:2,-1.5,77,0,0,-0.00617836 -147023,7700:371:1,-1,77,0,0,-0.0062197 -147024,7700:370:2,-0.5,77,0,0,-0.00706664 -147025,1700:370:2,0,77,0,0,-0.00711875 -147026,1700:370:2,0.5,77,0,0,-0.00740144 -147027,1700:371:1,1,77,0,0,-0.00763062 -147028,1700:371:2,1.5,77,0,0,-0.00761027 -147029,1700:372:1,2,77,0,0,-0.00734729 -147030,1700:372:2,2.5,77,0,0,-0.00733094 -147031,1700:373:1,3,77,0,0,-0.00705724 -147032,1700:373:2,3.5,77,0,0,-0.00760351 -147033,1700:374:1,4,77,0,0,-0.00928968 -147034,1700:374:2,4.5,77,0,0,-0.00980712 -147035,1700:475:1,5,77,0,0,-0.00993265 -147036,1700:475:2,5.5,77,0,0,-0.0100016 -147037,1700:476:1,6,77,0,0,-0.00950767 -147038,1700:476:2,6.5,77,0,0,-0.00798524 -147039,1700:477:1,7,77,0,0,-0.00737675 -147040,1700:477:2,7.5,77,0,0,-0.00754449 -147041,1700:478:1,8,77,0,0,-0.00863855 -147042,1700:478:2,8.5,77,0,0,-0.00894621 -147043,1700:479:1,9,77,0,0,-0.00828785 -147044,1701:371:2,11.5,77,0,0,-0.005767 -147045,1701:372:1,12,77,0,0,-0.00584053 -147046,1701:372:2,12.5,77,0,0,-0.00582498 -147047,1701:373:1,13,77,0,0,-0.00577601 -147048,1701:373:2,13.5,77,0,0,-0.00578883 -147049,1701:374:1,14,77,0,0,-0.00580432 -147050,1701:374:2,14.5,77,0,0,-0.0058159 -147051,1701:475:1,15,77,0,0,-0.00579916 -147052,1701:475:2,15.5,77,0,0,-0.00580688 -147053,1701:476:1,16,77,0,0,-0.00581981 -147054,1701:476:2,16.5,77,0,0,-0.00583016 -147055,1701:477:1,17,77,0,0,-0.00583665 -147056,1701:477:2,17.5,77,0,0,-0.00586263 -147057,1701:478:1,18,77,0,0,-0.00587569 -147058,1701:478:2,18.5,77,0,0,-0.00590709 -147059,1701:479:1,19,77,0,0,-0.00597974 -147060,1701:479:2,19.5,77,0,0,-0.00626413 -147061,1702:370:1,20,77,0,0,-0.00638648 -147062,1702:370:2,20.5,77,0,0,-0.00625576 -147063,1702:371:1,21,77,0,0,-0.00611145 -147064,1702:371:2,21.5,77,0,0,-0.00598773 -147065,1702:372:1,22,77,0,0,-0.0057033 -147066,1713:476:2,136.5,77,0,0,-0.00614413 -147067,1713:477:1,137,77,0,0,-0.00612914 -147068,1713:477:2,137.5,77,0,0,-0.00611689 -147069,1713:478:1,138,77,0,0,-0.00608973 -147070,1713:478:2,138.5,77,0,0,-0.00602244 -147071,1713:479:1,139,77,0,0,-0.00597844 -147072,1713:479:2,139.5,77,0,0,-0.00593211 -147073,1714:370:1,140,77,0,0,-0.00580302 -147074,1714:370:2,140.5,77,0,0,-0.00561778 -147075,1714:371:1,141,77,0,0,-0.00551513 -147076,1714:371:2,141.5,77,0,0,-0.00550777 -147077,1714:372:1,142,77,0,0,-0.00551266 -147078,1714:372:2,142.5,77,0,0,-0.00551637 -147079,1714:373:1,143,77,0,0,-0.0055434 -147080,1714:373:2,143.5,77,0,0,-0.00553476 -147081,1714:374:1,144,77,0,0,-0.00560656 -147082,1714:374:2,144.5,77,0,0,-0.00563652 -147083,1714:475:1,145,77,0,0,-0.00558168 -147084,1714:475:2,145.5,77,0,0,-0.00556437 -147085,1714:479:1,149,77,0,0,-0.00557426 -147086,1714:479:2,149.5,77,0,0,-0.0055434 -147087,1715:370:1,150,77,0,0,-0.00560158 -147088,1715:370:2,150.5,77,0,0,-0.00557177 -147089,1715:371:1,151,77,0,0,-0.0055225 -147090,1715:371:2,151.5,77,0,0,-0.0055225 -147091,1715:372:1,152,77,0,0,-0.00551637 -147092,1715:372:2,152.5,77,0,0,-0.00551756 -147093,1715:373:1,153,77,0,0,-0.00551756 -147094,1715:373:2,153.5,77,0,0,-0.00552741 -147095,1715:374:1,154,77,0,0,-0.00554584 -147096,1715:374:2,154.5,77,0,0,-0.00556064 -147097,1715:475:1,155,77,0,0,-0.00557177 -147098,1715:475:2,155.5,77,0,0,-0.00557797 -147099,1715:476:1,156,77,0,0,-0.00558168 -147100,1715:476:2,156.5,77,0,0,-0.00558543 -147101,1715:477:1,157,77,0,0,-0.00558789 -147102,1715:477:2,157.5,77,0,0,-0.00559164 -147103,1715:478:1,158,77,0,0,-0.00559782 -147104,1715:478:2,158.5,77,0,0,-0.00560656 -147105,1715:479:1,159,77,0,0,-0.00561154 -147106,1715:479:2,159.5,77,0,0,-0.00561527 -147107,1716:370:1,160,77,0,0,-0.00562152 -147108,1716:370:2,160.5,77,0,0,-0.00562404 -147109,1716:371:1,161,77,0,0,-0.00562777 -147110,1716:371:2,161.5,77,0,0,-0.00563277 -147111,1716:372:1,162,77,0,0,-0.00563778 -147112,1716:372:2,162.5,77,0,0,-0.00564532 -147113,1716:373:1,163,77,0,0,-0.00565156 -147114,1716:373:2,163.5,77,0,0,-0.00565658 -147115,1716:374:1,164,77,0,0,-0.00565785 -147116,1716:374:2,164.5,77,0,0,-0.00565911 -147117,1716:475:1,165,77,0,0,-0.00565911 -147118,1716:475:2,165.5,77,0,0,-0.00565911 -147119,1716:476:1,166,77,0,0,-0.00566038 -147120,1716:476:2,166.5,77,0,0,-0.00566165 -147121,1716:477:1,167,77,0,0,-0.00566165 -147122,1716:477:2,167.5,77,0,0,-0.00566414 -147123,1716:478:1,168,77,0,0,-0.00566541 -147124,1716:478:2,168.5,77,0,0,-0.00566668 -147125,1716:479:1,169,77,0,0,-0.00566668 -147126,1716:479:2,169.5,77,0,0,-0.00566668 -147127,1717:370:1,170,77,0,0,-0.00566668 -147128,1717:370:2,170.5,77,0,0,-0.00566668 -147129,1717:371:1,171,77,0,0,-0.00566791 -147130,1717:371:2,171.5,77,0,0,-0.00566918 -147131,1717:372:1,172,77,0,0,-0.00566918 -147132,1717:372:2,172.5,77,0,0,-0.00567045 -147133,1717:373:1,173,77,0,0,-0.00567171 -147134,1717:373:2,173.5,77,0,0,-0.00567171 -147135,1717:374:1,174,77,0,0,-0.00567294 -147136,1717:374:2,174.5,77,0,0,-0.00567548 -147137,1717:475:1,175,77,0,0,-0.00567926 -147138,1717:475:2,175.5,77,0,0,-0.0056818 -147139,1717:476:1,176,77,0,0,-0.0056843 -147140,1717:476:2,176.5,77,0,0,-0.00568558 -147141,1717:477:1,177,77,0,0,-0.00568685 -147142,1717:477:2,177.5,77,0,0,-0.00568812 -147143,1717:478:1,178,77,0,0,-0.00568812 -147144,1717:478:2,178.5,77,0,0,-0.00568936 -147145,1717:479:1,179,77,0,0,-0.00568936 -147146,1717:479:2,179.5,77,0,0,-0.00569063 -147147,1718:370:1,180,77,0,0,-0.0056919 -147148,7718:370:3,-180,77.5,0,0,-0.00568936 -147149,7717:479:4,-179.5,77.5,0,0,-0.00569063 -147150,7717:479:3,-179,77.5,0,0,-0.00569063 -147151,7717:478:4,-178.5,77.5,0,0,-0.0056919 -147152,7717:478:3,-178,77.5,0,0,-0.0056919 -147153,7717:477:4,-177.5,77.5,0,0,-0.00569318 -147154,7717:477:3,-177,77.5,0,0,-0.00569445 -147155,7717:476:4,-176.5,77.5,0,0,-0.00569696 -147156,7717:476:3,-176,77.5,0,0,-0.00569824 -147157,7717:475:4,-175.5,77.5,0,0,-0.00569951 -147158,7717:475:3,-175,77.5,0,0,-0.00570202 -147159,7717:374:4,-174.5,77.5,0,0,-0.00570202 -147160,7717:374:3,-174,77.5,0,0,-0.00570202 -147161,7717:373:4,-173.5,77.5,0,0,-0.00570075 -147162,7717:373:3,-173,77.5,0,0,-0.00569951 -147163,7717:372:4,-172.5,77.5,0,0,-0.00569951 -147164,7717:372:3,-172,77.5,0,0,-0.00570075 -147165,7717:371:4,-171.5,77.5,0,0,-0.00570458 -147166,7717:371:3,-171,77.5,0,0,-0.00570837 -147167,7717:370:4,-170.5,77.5,0,0,-0.00571216 -147168,7717:370:3,-170,77.5,0,0,-0.00571724 -147169,7716:479:4,-169.5,77.5,0,0,-0.00572232 -147170,7716:479:3,-169,77.5,0,0,-0.0057236 -147171,7716:478:4,-168.5,77.5,0,0,-0.00572232 -147172,7716:478:3,-168,77.5,0,0,-0.00572232 -147173,7716:477:4,-167.5,77.5,0,0,-0.0057236 -147174,7716:477:3,-167,77.5,0,0,-0.0057236 -147175,7716:476:4,-166.5,77.5,0,0,-0.0057198 -147176,7716:476:3,-166,77.5,0,0,-0.00571724 -147177,7716:475:4,-165.5,77.5,0,0,-0.00570965 -147178,7716:475:3,-165,77.5,0,0,-0.00569951 -147179,7716:374:4,-164.5,77.5,0,0,-0.00569569 -147180,7716:374:3,-164,77.5,0,0,-0.00569445 -147181,7716:373:4,-163.5,77.5,0,0,-0.00569569 -147182,7716:373:3,-163,77.5,0,0,-0.00571216 -147183,7716:372:4,-162.5,77.5,0,0,-0.00573254 -147184,7716:372:3,-162,77.5,0,0,-0.00574398 -147185,7715:479:4,-159.5,77.5,0,0,-0.00570202 -147186,7715:479:3,-159,77.5,0,0,-0.00571724 -147187,7715:477:4,-157.5,77.5,0,0,-0.00573378 -147188,7715:477:3,-157,77.5,0,0,-0.00573635 -147189,7715:476:3,-156,77.5,0,0,-0.00573888 -147190,7715:475:4,-155.5,77.5,0,0,-0.00574273 -147191,7715:475:3,-155,77.5,0,0,-0.00574912 -147192,7715:374:4,-154.5,77.5,0,0,-0.00575294 -147193,7715:374:3,-154,77.5,0,0,-0.00575294 -147194,7715:373:4,-153.5,77.5,0,0,-0.00575165 -147195,7715:373:3,-153,77.5,0,0,-0.00575294 -147196,7715:372:4,-152.5,77.5,0,0,-0.00575548 -147197,7715:372:3,-152,77.5,0,0,-0.00575294 -147198,7715:371:3,-151,77.5,0,0,-0.00575165 -147199,7714:372:3,-142,77.5,0,0,-0.00568685 -147200,7714:371:4,-141.5,77.5,0,0,-0.00567803 -147201,7713:475:3,-135,77.5,0,0,-0.00593871 -147202,7713:374:4,-134.5,77.5,0,0,-0.00593078 -147203,7713:374:3,-134,77.5,0,0,-0.00593738 -147204,7713:373:4,-133.5,77.5,0,0,-0.00595985 -147205,7713:373:3,-133,77.5,0,0,-0.00596912 -147206,7713:372:4,-132.5,77.5,0,0,-0.00591367 -147207,7708:371:3,-81,77.5,0,0,-0.00598241 -147208,7708:370:4,-80.5,77.5,0,0,-0.00597576 -147209,7708:370:3,-80,77.5,0,0,-0.0059771 -147210,7707:479:4,-79.5,77.5,0,0,-0.0059771 -147211,7707:479:3,-79,77.5,0,0,-0.00598907 -147212,7707:478:4,-78.5,77.5,0,0,-0.00600107 -147213,7707:478:3,-78,77.5,0,0,-0.00601978 -147214,7707:477:4,-77.5,77.5,0,0,-0.00604925 -147215,7707:476:3,-76,77.5,0,0,-0.00600241 -147216,7707:475:4,-75.5,77.5,0,0,-0.00602244 -147217,7707:475:3,-75,77.5,0,0,-0.00602109 -147218,7707:374:4,-74.5,77.5,0,0,-0.00604122 -147219,7707:372:4,-72.5,77.5,0,0,-0.00592551 -147220,7707:372:3,-72,77.5,0,0,-0.00589137 -147221,7707:371:4,-71.5,77.5,0,0,-0.00584572 -147222,7707:371:3,-71,77.5,0,0,-0.00582755 -147223,7707:370:4,-70.5,77.5,0,0,-0.00583146 -147224,7707:370:3,-70,77.5,0,0,-0.00582498 -147225,7706:479:4,-69.5,77.5,0,0,-0.00584314 -147226,7706:479:3,-69,77.5,0,0,-0.00587828 -147227,7706:478:4,-68.5,77.5,0,0,-0.00589269 -147228,7706:478:3,-68,77.5,0,0,-0.00589269 -147229,7706:371:4,-61.5,77.5,0,0,-0.00575677 -147230,7706:370:4,-60.5,77.5,0,0,-0.00573888 -147231,7706:370:3,-60,77.5,0,0,-0.00575677 -147232,7705:479:3,-59,77.5,0,0,-0.00577213 -147233,7705:478:4,-58.5,77.5,0,0,-0.00576059 -147234,7705:478:3,-58,77.5,0,0,-0.00573888 -147235,7705:477:4,-57.5,77.5,0,0,-0.00572741 -147236,7705:477:3,-57,77.5,0,0,-0.00572616 -147237,7705:476:3,-56,77.5,0,0,-0.00572108 -147238,7705:475:4,-55.5,77.5,0,0,-0.0057198 -147239,7705:475:3,-55,77.5,0,0,-0.00571724 -147240,7705:374:4,-54.5,77.5,0,0,-0.00571472 -147241,7705:372:4,-52.5,77.5,0,0,-0.00571852 -147242,7705:372:3,-52,77.5,0,0,-0.00571724 -147243,7705:371:4,-51.5,77.5,0,0,-0.0057033 -147244,7705:370:4,-50.5,77.5,0,0,-0.00570709 -147245,7705:370:3,-50,77.5,0,0,-0.00571344 -147246,7704:479:4,-49.5,77.5,0,0,-0.00571852 -147247,7704:373:4,-43.5,77.5,0,0,-0.00573888 -147248,7703:476:4,-36.5,77.5,0,0,-0.0056919 -147249,7703:476:3,-36,77.5,0,0,-0.0056818 -147250,7703:475:4,-35.5,77.5,0,0,-0.00567421 -147251,7703:475:3,-35,77.5,0,0,-0.00566918 -147252,7703:374:4,-34.5,77.5,0,0,-0.00566541 -147253,7703:374:3,-34,77.5,0,0,-0.00566165 -147254,7703:373:4,-33.5,77.5,0,0,-0.00565911 -147255,7703:373:3,-33,77.5,0,0,-0.00566038 -147256,7703:372:4,-32.5,77.5,0,0,-0.00566165 -147257,7703:372:3,-32,77.5,0,0,-0.00566288 -147258,7703:371:4,-31.5,77.5,0,0,-0.00566541 -147259,7703:371:3,-31,77.5,0,0,-0.00566918 -147260,7703:370:4,-30.5,77.5,0,0,-0.00567294 -147261,7703:370:3,-30,77.5,0,0,-0.00567548 -147262,7702:479:4,-29.5,77.5,0,0,-0.00567803 -147263,7702:479:3,-29,77.5,0,0,-0.00567803 -147264,7702:478:4,-28.5,77.5,0,0,-0.00567803 -147265,7702:478:3,-28,77.5,0,0,-0.00567926 -147266,7702:477:4,-27.5,77.5,0,0,-0.00567926 -147267,7702:477:3,-27,77.5,0,0,-0.00568053 -147268,7702:476:4,-26.5,77.5,0,0,-0.0056818 -147269,7702:476:3,-26,77.5,0,0,-0.0056818 -147270,7702:475:4,-25.5,77.5,0,0,-0.00568307 -147271,7702:475:3,-25,77.5,0,0,-0.0056843 -147272,7702:374:4,-24.5,77.5,0,0,-0.00568307 -147273,7702:374:3,-24,77.5,0,0,-0.00568053 -147274,7702:373:4,-23.5,77.5,0,0,-0.00567926 -147275,7702:373:3,-23,77.5,0,0,-0.00567803 -147276,7702:372:4,-22.5,77.5,0,0,-0.00567548 -147277,7702:372:3,-22,77.5,0,0,-0.00567171 -147278,7702:371:4,-21.5,77.5,0,0,-0.00566791 -147279,7702:371:3,-21,77.5,0,0,-0.00566288 -147280,7702:370:4,-20.5,77.5,0,0,-0.00565409 -147281,7702:370:3,-20,77.5,0,0,-0.00564781 -147282,7701:479:4,-19.5,77.5,0,0,-0.0056403 -147283,7701:479:3,-19,77.5,0,0,-0.00563151 -147284,7701:478:4,-18.5,77.5,0,0,-0.00562152 -147285,7701:478:3,-18,77.5,0,0,-0.00561653 -147286,7701:477:4,-17.5,77.5,0,0,-0.00561154 -147287,7701:477:3,-17,77.5,0,0,-0.00560405 -147288,7701:476:4,-16.5,77.5,0,0,-0.00559164 -147289,7701:476:3,-16,77.5,0,0,-0.00557177 -147290,7701:475:4,-15.5,77.5,0,0,-0.00554953 -147291,7701:475:3,-15,77.5,0,0,-0.00553232 -147292,7701:374:4,-14.5,77.5,0,0,-0.00552003 -147293,7701:374:3,-14,77.5,0,0,-0.0055139 -147294,7701:373:4,-13.5,77.5,0,0,-0.00551024 -147295,7701:373:3,-13,77.5,0,0,-0.00550777 -147296,7701:372:4,-12.5,77.5,0,0,-0.00550658 -147297,7701:372:3,-12,77.5,0,0,-0.00550534 -147298,7701:371:4,-11.5,77.5,0,0,-0.00550658 -147299,7701:371:3,-11,77.5,0,0,-0.00551266 -147300,7701:370:4,-10.5,77.5,0,0,-0.0055237 -147301,7701:370:3,-10,77.5,0,0,-0.0055557 -147302,7700:479:4,-9.5,77.5,0,0,-0.00560158 -147303,7700:479:3,-9,77.5,0,0,-0.00564781 -147304,7700:478:4,-8.5,77.5,0,0,-0.00567803 -147305,7700:478:3,-8,77.5,0,0,-0.00568936 -147306,7700:477:4,-7.5,77.5,0,0,-0.00573635 -147307,7700:477:3,-7,77.5,0,0,-0.00589005 -147308,7700:476:4,-6.5,77.5,0,0,-0.00608973 -147309,7700:476:3,-6,77.5,0,0,-0.0061455 -147310,7700:475:4,-5.5,77.5,0,0,-0.00616053 -147311,7700:475:3,-5,77.5,0,0,-0.00601309 -147312,7700:374:4,-4.5,77.5,0,0,-0.00599171 -147313,7700:374:3,-4,77.5,0,0,-0.00609923 -147314,7700:373:4,-3.5,77.5,0,0,-0.00592684 -147315,7700:372:4,-2.5,77.5,0,0,-0.00608027 -147316,7700:372:3,-2,77.5,0,0,-0.00610602 -147317,7700:371:4,-1.5,77.5,0,0,-0.00619351 -147318,7700:371:3,-1,77.5,0,0,-0.00650979 -147319,7700:370:4,-0.5,77.5,0,0,-0.0070698 -147320,1700:370:4,0,77.5,0,0,-0.00700872 -147321,1700:370:4,0.5,77.5,0,0,-0.00668141 -147322,1700:371:3,1,77.5,0,0,-0.00647656 -147323,1700:371:4,1.5,77.5,0,0,-0.00666211 -147324,1700:372:3,2,77.5,0,0,-0.00666953 -147325,1700:372:4,2.5,77.5,0,0,-0.00638791 -147326,1700:373:3,3,77.5,0,0,-0.00610329 -147327,1700:373:4,3.5,77.5,0,0,-0.0075428 -147328,1700:374:3,4,77.5,0,0,-0.00952892 -147329,1700:374:4,4.5,77.5,0,0,-0.00972864 -147330,1700:475:3,5,77.5,0,0,-0.00925662 -147331,1700:475:4,5.5,77.5,0,0,-0.00927522 -147332,1700:476:3,6,77.5,0,0,-0.00914175 -147333,1700:476:4,6.5,77.5,0,0,-0.00880769 -147334,1700:477:3,7,77.5,0,0,-0.00808183 -147335,1700:477:4,7.5,77.5,0,0,-0.00795686 -147336,1700:478:3,8,77.5,0,0,-0.0077903 -147337,1701:371:4,11.5,77.5,0,0,-0.00595719 -147338,1701:372:3,12,77.5,0,0,-0.00589005 -147339,1701:372:4,12.5,77.5,0,0,-0.00578757 -147340,1701:373:3,13,77.5,0,0,-0.00575548 -147341,1701:373:4,13.5,77.5,0,0,-0.00577601 -147342,1701:374:3,14,77.5,0,0,-0.00579527 -147343,1701:374:4,14.5,77.5,0,0,-0.00578369 -147344,1701:475:3,15,77.5,0,0,-0.00577342 -147345,1701:475:4,15.5,77.5,0,0,-0.00578883 -147346,1701:476:3,16,77.5,0,0,-0.00581074 -147347,1701:476:4,16.5,77.5,0,0,-0.0058159 -147348,1701:477:3,17,77.5,0,0,-0.00583273 -147349,1701:477:4,17.5,77.5,0,0,-0.00586653 -147350,1701:478:3,18,77.5,0,0,-0.00593871 -147351,1701:478:4,18.5,77.5,0,0,-0.00604523 -147352,1701:479:3,19,77.5,0,0,-0.00619074 -147353,1701:479:4,19.5,77.5,0,0,-0.00642495 -147354,1702:370:3,20,77.5,0,0,-0.00652137 -147355,1702:370:4,20.5,77.5,0,0,-0.00654607 -147356,1702:371:3,21,77.5,0,0,-0.00639073 -147357,1702:371:4,21.5,77.5,0,0,-0.00633413 -147358,1702:372:3,22,77.5,0,0,-0.00582237 -147359,1713:373:3,133,77.5,0,0,-0.00642351 -147360,1713:373:4,133.5,77.5,0,0,-0.00650979 -147361,1713:374:3,134,77.5,0,0,-0.00661633 -147362,1713:374:4,134.5,77.5,0,0,-0.00655772 -147363,1713:476:3,136,77.5,0,0,-0.00608432 -147364,1713:476:4,136.5,77.5,0,0,-0.00603986 -147365,1713:477:3,137,77.5,0,0,-0.00603986 -147366,1713:477:4,137.5,77.5,0,0,-0.00605061 -147367,1713:478:3,138,77.5,0,0,-0.00602513 -147368,1713:478:4,138.5,77.5,0,0,-0.00594 -147369,1713:479:3,139,77.5,0,0,-0.00582498 -147370,1713:479:4,139.5,77.5,0,0,-0.00575548 -147371,1714:370:3,140,77.5,0,0,-0.00562526 -147372,1714:370:4,140.5,77.5,0,0,-0.00553232 -147373,1714:371:4,141.5,77.5,0,0,-0.00551513 -147374,1714:372:3,142,77.5,0,0,-0.00554708 -147375,1714:372:4,142.5,77.5,0,0,-0.00556313 -147376,1714:373:3,143,77.5,0,0,-0.00557922 -147377,1714:373:4,143.5,77.5,0,0,-0.00555819 -147378,1714:374:3,144,77.5,0,0,-0.00558914 -147379,1714:374:4,144.5,77.5,0,0,-0.00564153 -147380,1714:475:3,145,77.5,0,0,-0.00563151 -147381,1714:475:4,145.5,77.5,0,0,-0.0055941 -147382,1714:476:3,146,77.5,0,0,-0.00552617 -147383,1714:476:4,146.5,77.5,0,0,-0.00552985 -147384,1715:370:3,150,77.5,0,0,-0.0055941 -147385,1715:370:4,150.5,77.5,0,0,-0.00557922 -147386,1715:371:3,151,77.5,0,0,-0.00556064 -147387,1715:371:4,151.5,77.5,0,0,-0.0055237 -147388,1715:372:3,152,77.5,0,0,-0.00552003 -147389,1715:372:4,152.5,77.5,0,0,-0.00552003 -147390,1715:373:3,153,77.5,0,0,-0.00551513 -147391,1715:373:4,153.5,77.5,0,0,-0.00552617 -147392,1715:374:3,154,77.5,0,0,-0.0055434 -147393,1715:374:4,154.5,77.5,0,0,-0.0055557 -147394,1715:475:3,155,77.5,0,0,-0.00556558 -147395,1715:475:4,155.5,77.5,0,0,-0.00556807 -147396,1715:476:3,156,77.5,0,0,-0.00556932 -147397,1715:476:4,156.5,77.5,0,0,-0.00557302 -147398,1715:477:3,157,77.5,0,0,-0.00557551 -147399,1715:477:4,157.5,77.5,0,0,-0.00558168 -147400,1715:478:3,158,77.5,0,0,-0.00559164 -147401,1715:478:4,158.5,77.5,0,0,-0.00560405 -147402,1715:479:3,159,77.5,0,0,-0.00561154 -147403,1715:479:4,159.5,77.5,0,0,-0.00561778 -147404,1716:370:3,160,77.5,0,0,-0.00562026 -147405,1716:370:4,160.5,77.5,0,0,-0.00562152 -147406,1716:371:3,161,77.5,0,0,-0.00562404 -147407,1716:371:4,161.5,77.5,0,0,-0.00562903 -147408,1716:372:3,162,77.5,0,0,-0.00563404 -147409,1716:372:4,162.5,77.5,0,0,-0.00564279 -147410,1716:373:3,163,77.5,0,0,-0.00565033 -147411,1716:373:4,163.5,77.5,0,0,-0.00565658 -147412,1716:374:3,164,77.5,0,0,-0.00565911 -147413,1716:374:4,164.5,77.5,0,0,-0.00565911 -147414,1716:475:3,165,77.5,0,0,-0.00565911 -147415,1716:475:4,165.5,77.5,0,0,-0.00566038 -147416,1716:476:3,166,77.5,0,0,-0.00566165 -147417,1716:476:4,166.5,77.5,0,0,-0.00566288 -147418,1716:477:3,167,77.5,0,0,-0.00566414 -147419,1716:477:4,167.5,77.5,0,0,-0.00566541 -147420,1716:478:3,168,77.5,0,0,-0.00566791 -147421,1716:478:4,168.5,77.5,0,0,-0.00566791 -147422,1716:479:3,169,77.5,0,0,-0.00566791 -147423,1716:479:4,169.5,77.5,0,0,-0.00566668 -147424,1717:370:3,170,77.5,0,0,-0.00566668 -147425,1717:370:4,170.5,77.5,0,0,-0.00566791 -147426,1717:371:3,171,77.5,0,0,-0.00566918 -147427,1717:371:4,171.5,77.5,0,0,-0.00567045 -147428,1717:372:3,172,77.5,0,0,-0.00567045 -147429,1717:372:4,172.5,77.5,0,0,-0.00567171 -147430,1717:373:3,173,77.5,0,0,-0.00567171 -147431,1717:373:4,173.5,77.5,0,0,-0.00567171 -147432,1717:374:3,174,77.5,0,0,-0.00567294 -147433,1717:374:4,174.5,77.5,0,0,-0.00567548 -147434,1717:475:3,175,77.5,0,0,-0.00567803 -147435,1717:475:4,175.5,77.5,0,0,-0.00568053 -147436,1717:476:3,176,77.5,0,0,-0.00568307 -147437,1717:476:4,176.5,77.5,0,0,-0.00568558 -147438,1717:477:3,177,77.5,0,0,-0.00568685 -147439,1717:477:4,177.5,77.5,0,0,-0.00568685 -147440,1717:478:3,178,77.5,0,0,-0.00568558 -147441,1717:478:4,178.5,77.5,0,0,-0.00568558 -147442,1717:479:3,179,77.5,0,0,-0.00568558 -147443,1717:479:4,179.5,77.5,0,0,-0.00568685 -147444,1718:370:3,180,77.5,0,0,-0.00568936 -147445,7718:380:1,-180,78,0,0,-0.00568685 -147446,7717:489:2,-179.5,78,0,0,-0.00568685 -147447,7717:489:1,-179,78,0,0,-0.00568812 -147448,7717:488:2,-178.5,78,0,0,-0.00568936 -147449,7717:488:1,-178,78,0,0,-0.00569063 -147450,7717:487:2,-177.5,78,0,0,-0.0056919 -147451,7717:487:1,-177,78,0,0,-0.00569445 -147452,7717:486:2,-176.5,78,0,0,-0.00569569 -147453,7717:486:1,-176,78,0,0,-0.00569696 -147454,7717:485:2,-175.5,78,0,0,-0.00569824 -147455,7717:485:1,-175,78,0,0,-0.00569951 -147456,7717:384:2,-174.5,78,0,0,-0.00569951 -147457,7717:384:1,-174,78,0,0,-0.00569824 -147458,7717:383:2,-173.5,78,0,0,-0.00569696 -147459,7717:383:1,-173,78,0,0,-0.00569696 -147460,7717:382:2,-172.5,78,0,0,-0.00569951 -147461,7717:382:1,-172,78,0,0,-0.0057033 -147462,7717:381:2,-171.5,78,0,0,-0.00570709 -147463,7717:381:1,-171,78,0,0,-0.00571092 -147464,7717:380:2,-170.5,78,0,0,-0.005716 -147465,7717:380:1,-170,78,0,0,-0.0057198 -147466,7716:489:2,-169.5,78,0,0,-0.00572108 -147467,7716:489:1,-169,78,0,0,-0.0057198 -147468,7716:488:2,-168.5,78,0,0,-0.00571852 -147469,7716:488:1,-168,78,0,0,-0.0057198 -147470,7716:487:2,-167.5,78,0,0,-0.00571852 -147471,7716:487:1,-167,78,0,0,-0.00571724 -147472,7716:486:2,-166.5,78,0,0,-0.00571216 -147473,7716:486:1,-166,78,0,0,-0.00570709 -147474,7716:485:2,-165.5,78,0,0,-0.00570202 -147475,7716:485:1,-165,78,0,0,-0.00569696 -147476,7716:384:2,-164.5,78,0,0,-0.00569445 -147477,7716:384:1,-164,78,0,0,-0.00569318 -147478,7716:383:2,-163.5,78,0,0,-0.00570075 -147479,7716:383:1,-163,78,0,0,-0.00572232 -147480,7716:382:2,-162.5,78,0,0,-0.00573888 -147481,7715:489:1,-159,78,0,0,-0.0057198 -147482,7715:488:2,-158.5,78,0,0,-0.0057236 -147483,7715:488:1,-158,78,0,0,-0.00572997 -147484,7715:485:2,-155.5,78,0,0,-0.00574398 -147485,7715:485:1,-155,78,0,0,-0.00574398 -147486,7715:384:2,-154.5,78,0,0,-0.00574398 -147487,7715:384:1,-154,78,0,0,-0.00574016 -147488,7715:383:2,-153.5,78,0,0,-0.00573888 -147489,7715:383:1,-153,78,0,0,-0.00574144 -147490,7715:382:2,-152.5,78,0,0,-0.00574655 -147491,7715:382:1,-152,78,0,0,-0.00574912 -147492,7715:381:2,-151.5,78,0,0,-0.00575037 -147493,7715:381:1,-151,78,0,0,-0.00574144 -147494,7714:489:1,-149,78,0,0,-0.00592025 -147495,7714:382:1,-142,78,0,0,-0.00562404 -147496,7714:381:2,-141.5,78,0,0,-0.00562903 -147497,7713:485:1,-135,78,0,0,-0.00592684 -147498,7713:384:2,-134.5,78,0,0,-0.00593871 -147499,7713:384:1,-134,78,0,0,-0.00595456 -147500,7713:383:2,-133.5,78,0,0,-0.00595985 -147501,7713:383:1,-133,78,0,0,-0.00595323 -147502,7708:380:1,-80,78,0,0,-0.00597313 -147503,7707:489:2,-79.5,78,0,0,-0.00597442 -147504,7707:489:1,-79,78,0,0,-0.00598241 -147505,7707:488:2,-78.5,78,0,0,-0.0059944 -147506,7707:488:1,-78,78,0,0,-0.00600241 -147507,7707:485:2,-75.5,78,0,0,-0.00612502 -147508,7707:485:1,-75,78,0,0,-0.00606676 -147509,7707:384:2,-74.5,78,0,0,-0.0060587 -147510,7707:382:2,-72.5,78,0,0,-0.00589661 -147511,7707:382:1,-72,78,0,0,-0.00586916 -147512,7707:381:2,-71.5,78,0,0,-0.00583016 -147513,7707:381:1,-71,78,0,0,-0.00581074 -147514,7707:380:2,-70.5,78,0,0,-0.00581464 -147515,7707:380:1,-70,78,0,0,-0.00581204 -147516,7706:489:2,-69.5,78,0,0,-0.00580948 -147517,7706:489:1,-69,78,0,0,-0.00582498 -147518,7706:488:2,-68.5,78,0,0,-0.00584441 -147519,7706:488:1,-68,78,0,0,-0.0058496 -147520,7706:487:2,-67.5,78,0,0,-0.00584703 -147521,7706:487:1,-67,78,0,0,-0.00585222 -147522,7706:382:1,-62,78,0,0,-0.00575037 -147523,7706:381:1,-61,78,0,0,-0.00573888 -147524,7706:380:2,-60.5,78,0,0,-0.00573378 -147525,7706:380:1,-60,78,0,0,-0.00574273 -147526,7705:489:2,-59.5,78,0,0,-0.00575548 -147527,7705:489:1,-59,78,0,0,-0.00575934 -147528,7705:488:2,-58.5,78,0,0,-0.00575294 -147529,7705:488:1,-58,78,0,0,-0.00574016 -147530,7705:487:2,-57.5,78,0,0,-0.00572616 -147531,7705:487:1,-57,78,0,0,-0.00572232 -147532,7705:486:2,-56.5,78,0,0,-0.00572108 -147533,7705:486:1,-56,78,0,0,-0.00572108 -147534,7705:485:2,-55.5,78,0,0,-0.0057198 -147535,7705:485:1,-55,78,0,0,-0.0057198 -147536,7705:384:2,-54.5,78,0,0,-0.0057198 -147537,7705:384:1,-54,78,0,0,-0.0057236 -147538,7705:382:2,-52.5,78,0,0,-0.00572232 -147539,7705:382:1,-52,78,0,0,-0.00572232 -147540,7705:380:2,-50.5,78,0,0,-0.00570709 -147541,7705:380:1,-50,78,0,0,-0.00571216 -147542,7704:489:2,-49.5,78,0,0,-0.00572108 -147543,7704:489:1,-49,78,0,0,-0.00572741 -147544,7704:488:2,-48.5,78,0,0,-0.00572997 -147545,7704:383:2,-43.5,78,0,0,-0.00574273 -147546,7704:383:1,-43,78,0,0,-0.00574016 -147547,7703:488:2,-38.5,78,0,0,-0.00572108 -147548,7703:488:1,-38,78,0,0,-0.0057033 -147549,7703:487:2,-37.5,78,0,0,-0.00569569 -147550,7703:487:1,-37,78,0,0,-0.00568812 -147551,7703:486:2,-36.5,78,0,0,-0.0056818 -147552,7703:486:1,-36,78,0,0,-0.00567926 -147553,7703:485:2,-35.5,78,0,0,-0.00567926 -147554,7703:485:1,-35,78,0,0,-0.0056818 -147555,7703:384:2,-34.5,78,0,0,-0.00568053 -147556,7703:384:1,-34,78,0,0,-0.00567548 -147557,7703:383:2,-33.5,78,0,0,-0.00567171 -147558,7703:383:1,-33,78,0,0,-0.00567045 -147559,7703:382:2,-32.5,78,0,0,-0.00566918 -147560,7703:382:1,-32,78,0,0,-0.00566918 -147561,7703:381:2,-31.5,78,0,0,-0.00566918 -147562,7703:381:1,-31,78,0,0,-0.00567045 -147563,7703:380:2,-30.5,78,0,0,-0.00567294 -147564,7703:380:1,-30,78,0,0,-0.00567548 -147565,7702:489:2,-29.5,78,0,0,-0.00567803 -147566,7702:489:1,-29,78,0,0,-0.00567803 -147567,7702:488:2,-28.5,78,0,0,-0.00567675 -147568,7702:488:1,-28,78,0,0,-0.00567675 -147569,7702:487:2,-27.5,78,0,0,-0.00567803 -147570,7702:487:1,-27,78,0,0,-0.00568053 -147571,7702:486:2,-26.5,78,0,0,-0.0056818 -147572,7702:486:1,-26,78,0,0,-0.0056818 -147573,7702:485:2,-25.5,78,0,0,-0.00568307 -147574,7702:485:1,-25,78,0,0,-0.0056843 -147575,7702:384:2,-24.5,78,0,0,-0.00568307 -147576,7702:384:1,-24,78,0,0,-0.00567803 -147577,7702:383:2,-23.5,78,0,0,-0.00567421 -147578,7702:383:1,-23,78,0,0,-0.00567294 -147579,7702:382:2,-22.5,78,0,0,-0.00567294 -147580,7702:382:1,-22,78,0,0,-0.00567045 -147581,7702:381:2,-21.5,78,0,0,-0.00566668 -147582,7702:381:1,-21,78,0,0,-0.00565911 -147583,7702:380:2,-20.5,78,0,0,-0.00565156 -147584,7702:380:1,-20,78,0,0,-0.00564654 -147585,7701:489:2,-19.5,78,0,0,-0.00564279 -147586,7701:489:1,-19,78,0,0,-0.00563404 -147587,7701:488:2,-18.5,78,0,0,-0.00561653 -147588,7701:488:1,-18,78,0,0,-0.00561029 -147589,7701:487:2,-17.5,78,0,0,-0.00560405 -147590,7701:487:1,-17,78,0,0,-0.00559661 -147591,7701:486:2,-16.5,78,0,0,-0.00558789 -147592,7701:486:1,-16,78,0,0,-0.00557302 -147593,7701:485:2,-15.5,78,0,0,-0.0055545 -147594,7701:485:1,-15,78,0,0,-0.00553848 -147595,7701:384:2,-14.5,78,0,0,-0.00552494 -147596,7701:384:1,-14,78,0,0,-0.00551513 -147597,7701:383:2,-13.5,78,0,0,-0.00551024 -147598,7701:383:1,-13,78,0,0,-0.00550777 -147599,7701:382:2,-12.5,78,0,0,-0.00550658 -147600,7701:382:1,-12,78,0,0,-0.00550534 -147601,7701:381:2,-11.5,78,0,0,-0.00550534 -147602,7701:381:1,-11,78,0,0,-0.00550658 -147603,7701:380:2,-10.5,78,0,0,-0.0055139 -147604,7701:380:1,-10,78,0,0,-0.00553108 -147605,7700:489:2,-9.5,78,0,0,-0.00557177 -147606,7700:489:1,-9,78,0,0,-0.005619 -147607,7700:488:2,-8.5,78,0,0,-0.00564654 -147608,7700:488:1,-8,78,0,0,-0.0056818 -147609,7700:487:2,-7.5,78,0,0,-0.00575934 -147610,7700:487:1,-7,78,0,0,-0.00589793 -147611,7700:486:2,-6.5,78,0,0,-0.00603585 -147612,7700:486:1,-6,78,0,0,-0.0061006 -147613,7700:485:2,-5.5,78,0,0,-0.00611415 -147614,7700:485:1,-5,78,0,0,-0.00613322 -147615,7700:384:2,-4.5,78,0,0,-0.00616053 -147616,7700:384:1,-4,78,0,0,-0.00617564 -147617,7700:383:2,-3.5,78,0,0,-0.0061455 -147618,7700:383:1,-3,78,0,0,-0.00607487 -147619,7700:382:2,-2.5,78,0,0,-0.00610329 -147620,7700:381:2,-1.5,78,0,0,-0.00607891 -147621,7700:381:1,-1,78,0,0,-0.00670822 -147622,7700:380:2,-0.5,78,0,0,-0.00685148 -147623,1700:380:2,0,78,0,0,-0.00682711 -147624,1700:380:2,0.5,78,0,0,-0.00633555 -147625,1700:381:1,1,78,0,0,-0.00611826 -147626,1700:381:2,1.5,78,0,0,-0.0061237 -147627,1700:382:1,2,78,0,0,-0.00603315 -147628,1700:382:2,2.5,78,0,0,-0.00586263 -147629,1700:383:1,3,78,0,0,-0.00586916 -147630,1700:383:2,3.5,78,0,0,-0.00586916 -147631,1700:384:1,4,78,0,0,-0.00662073 -147632,1700:384:2,4.5,78,0,0,-0.00817421 -147633,1700:485:1,5,78,0,0,-0.00777296 -147634,1700:485:2,5.5,78,0,0,-0.00748095 -147635,1700:486:1,6,78,0,0,-0.00805847 -147636,1700:486:2,6.5,78,0,0,-0.00824548 -147637,1700:487:1,7,78,0,0,-0.00851815 -147638,1700:487:2,7.5,78,0,0,-0.00783202 -147639,1700:488:1,8,78,0,0,-0.00711715 -147640,1701:380:2,10.5,78,0,0,-0.00605599 -147641,1701:381:1,11,78,0,0,-0.00611145 -147642,1701:381:2,11.5,78,0,0,-0.00597045 -147643,1701:382:1,12,78,0,0,-0.00580432 -147644,1701:382:2,12.5,78,0,0,-0.00576829 -147645,1701:383:1,13,78,0,0,-0.00578243 -147646,1701:383:2,13.5,78,0,0,-0.00579527 -147647,1701:384:1,14,78,0,0,-0.00578628 -147648,1701:384:2,14.5,78,0,0,-0.00576446 -147649,1701:485:1,15,78,0,0,-0.00575294 -147650,1701:485:2,15.5,78,0,0,-0.00577601 -147651,1701:486:1,16,78,0,0,-0.00580818 -147652,1701:486:2,16.5,78,0,0,-0.00584314 -147653,1701:487:1,17,78,0,0,-0.00586394 -147654,1701:487:2,17.5,78,0,0,-0.00593605 -147655,1701:488:1,18,78,0,0,-0.00611415 -147656,1701:488:2,18.5,78,0,0,-0.00632992 -147657,1701:489:1,19,78,0,0,-0.00642064 -147658,1701:489:2,19.5,78,0,0,-0.00650833 -147659,1702:380:1,20,78,0,0,-0.00641781 -147660,1702:380:2,20.5,78,0,0,-0.00644495 -147661,1702:381:1,21,78,0,0,-0.00656797 -147662,1702:381:2,21.5,78,0,0,-0.00643494 -147663,1702:382:1,22,78,0,0,-0.0060372 -147664,1702:382:2,22.5,78,0,0,-0.00572741 -147665,1702:383:1,23,78,0,0,-0.00567675 -147666,1712:488:2,128.5,78,0,0,-0.00829524 -147667,1713:383:1,133,78,0,0,-0.00639641 -147668,1713:383:2,133.5,78,0,0,-0.00636239 -147669,1713:384:1,134,78,0,0,-0.00634261 -147670,1713:384:2,134.5,78,0,0,-0.00637514 -147671,1713:485:1,135,78,0,0,-0.006253 -147672,1713:485:2,135.5,78,0,0,-0.00613729 -147673,1713:486:1,136,78,0,0,-0.00603585 -147674,1713:486:2,136.5,78,0,0,-0.00587828 -147675,1713:487:1,137,78,0,0,-0.00575677 -147676,1713:487:2,137.5,78,0,0,-0.00575165 -147677,1713:488:1,138,78,0,0,-0.00571852 -147678,1713:488:2,138.5,78,0,0,-0.00562903 -147679,1713:489:1,139,78,0,0,-0.00560405 -147680,1713:489:2,139.5,78,0,0,-0.00556064 -147681,1714:380:1,140,78,0,0,-0.00557052 -147682,1714:380:2,140.5,78,0,0,-0.00558664 -147683,1714:381:1,141,78,0,0,-0.00558914 -147684,1714:381:2,141.5,78,0,0,-0.00559908 -147685,1714:382:1,142,78,0,0,-0.00562526 -147686,1714:382:2,142.5,78,0,0,-0.00564279 -147687,1714:383:1,143,78,0,0,-0.00564532 -147688,1714:383:2,143.5,78,0,0,-0.00564405 -147689,1714:384:1,144,78,0,0,-0.00564405 -147690,1714:384:2,144.5,78,0,0,-0.00564654 -147691,1714:485:1,145,78,0,0,-0.0056403 -147692,1714:485:2,145.5,78,0,0,-0.00561029 -147693,1714:486:1,146,78,0,0,-0.00554953 -147694,1714:486:2,146.5,78,0,0,-0.00553352 -147695,1714:487:2,147.5,78,0,0,-0.00553724 -147696,1715:380:1,150,78,0,0,-0.0055545 -147697,1715:380:2,150.5,78,0,0,-0.00558293 -147698,1715:381:1,151,78,0,0,-0.00557797 -147699,1715:381:2,151.5,78,0,0,-0.00552985 -147700,1715:382:1,152,78,0,0,-0.00552127 -147701,1715:382:2,152.5,78,0,0,-0.00551637 -147702,1715:383:1,153,78,0,0,-0.00551513 -147703,1715:383:2,153.5,78,0,0,-0.00552617 -147704,1715:384:1,154,78,0,0,-0.00553848 -147705,1715:384:2,154.5,78,0,0,-0.00554832 -147706,1715:485:1,155,78,0,0,-0.0055557 -147707,1715:485:2,155.5,78,0,0,-0.00555943 -147708,1715:486:1,156,78,0,0,-0.00556313 -147709,1715:486:2,156.5,78,0,0,-0.00556558 -147710,1715:487:1,157,78,0,0,-0.00556932 -147711,1715:487:2,157.5,78,0,0,-0.00557672 -147712,1715:488:1,158,78,0,0,-0.00559039 -147713,1715:488:2,158.5,78,0,0,-0.0056028 -147714,1715:489:1,159,78,0,0,-0.0056128 -147715,1715:489:2,159.5,78,0,0,-0.00561653 -147716,1716:380:1,160,78,0,0,-0.00561653 -147717,1716:380:2,160.5,78,0,0,-0.00561778 -147718,1716:381:1,161,78,0,0,-0.00562026 -147719,1716:381:2,161.5,78,0,0,-0.00562404 -147720,1716:382:1,162,78,0,0,-0.00562903 -147721,1716:382:2,162.5,78,0,0,-0.00563778 -147722,1716:383:1,163,78,0,0,-0.00564654 -147723,1716:383:2,163.5,78,0,0,-0.00565409 -147724,1716:384:1,164,78,0,0,-0.00565785 -147725,1716:384:2,164.5,78,0,0,-0.00565911 -147726,1716:485:1,165,78,0,0,-0.00565911 -147727,1716:485:2,165.5,78,0,0,-0.00566038 -147728,1716:486:1,166,78,0,0,-0.00566288 -147729,1716:486:2,166.5,78,0,0,-0.00566414 -147730,1716:487:1,167,78,0,0,-0.00566541 -147731,1716:487:2,167.5,78,0,0,-0.00566668 -147732,1716:488:1,168,78,0,0,-0.00566791 -147733,1716:488:2,168.5,78,0,0,-0.00566918 -147734,1716:489:1,169,78,0,0,-0.00566791 -147735,1716:489:2,169.5,78,0,0,-0.00566791 -147736,1717:380:1,170,78,0,0,-0.00566918 -147737,1717:380:2,170.5,78,0,0,-0.00567045 -147738,1717:381:1,171,78,0,0,-0.00567045 -147739,1717:381:2,171.5,78,0,0,-0.00567045 -147740,1717:382:1,172,78,0,0,-0.00567171 -147741,1717:382:2,172.5,78,0,0,-0.00567045 -147742,1717:383:1,173,78,0,0,-0.00567045 -147743,1717:383:2,173.5,78,0,0,-0.00567171 -147744,1717:384:1,174,78,0,0,-0.00567294 -147745,1717:384:2,174.5,78,0,0,-0.00567548 -147746,1717:485:1,175,78,0,0,-0.00567803 -147747,1717:485:2,175.5,78,0,0,-0.00568053 -147748,1717:486:1,176,78,0,0,-0.00568307 -147749,1717:486:2,176.5,78,0,0,-0.0056843 -147750,1717:487:1,177,78,0,0,-0.0056843 -147751,1717:487:2,177.5,78,0,0,-0.0056843 -147752,1717:488:1,178,78,0,0,-0.0056843 -147753,1717:488:2,178.5,78,0,0,-0.00568307 -147754,1717:489:1,179,78,0,0,-0.0056843 -147755,1717:489:2,179.5,78,0,0,-0.00568558 -147756,1718:380:1,180,78,0,0,-0.00568685 -147757,7718:380:3,-180,78.5,0,0,-0.0056843 -147758,7717:489:4,-179.5,78.5,0,0,-0.0056843 -147759,7717:489:3,-179,78.5,0,0,-0.00568558 -147760,7717:488:4,-178.5,78.5,0,0,-0.00568936 -147761,7717:488:3,-178,78.5,0,0,-0.0056919 -147762,7717:487:4,-177.5,78.5,0,0,-0.00569445 -147763,7717:487:3,-177,78.5,0,0,-0.00569445 -147764,7717:486:4,-176.5,78.5,0,0,-0.00569569 -147765,7717:486:3,-176,78.5,0,0,-0.00569569 -147766,7717:485:4,-175.5,78.5,0,0,-0.00569569 -147767,7717:485:3,-175,78.5,0,0,-0.00569569 -147768,7717:384:4,-174.5,78.5,0,0,-0.00569569 -147769,7717:384:3,-174,78.5,0,0,-0.00569569 -147770,7717:383:4,-173.5,78.5,0,0,-0.00569569 -147771,7717:383:3,-173,78.5,0,0,-0.00569696 -147772,7717:382:4,-172.5,78.5,0,0,-0.00570202 -147773,7717:382:3,-172,78.5,0,0,-0.00570837 -147774,7717:381:4,-171.5,78.5,0,0,-0.00571216 -147775,7717:381:3,-171,78.5,0,0,-0.005716 -147776,7717:380:4,-170.5,78.5,0,0,-0.00571852 -147777,7717:380:3,-170,78.5,0,0,-0.00571852 -147778,7716:489:4,-169.5,78.5,0,0,-0.00571724 -147779,7716:489:3,-169,78.5,0,0,-0.005716 -147780,7716:488:4,-168.5,78.5,0,0,-0.005716 -147781,7716:488:3,-168,78.5,0,0,-0.00571472 -147782,7716:487:4,-167.5,78.5,0,0,-0.00571216 -147783,7716:487:3,-167,78.5,0,0,-0.00570709 -147784,7716:486:4,-166.5,78.5,0,0,-0.00570202 -147785,7716:486:3,-166,78.5,0,0,-0.00569951 -147786,7716:485:4,-165.5,78.5,0,0,-0.00569696 -147787,7716:485:3,-165,78.5,0,0,-0.00569445 -147788,7716:384:4,-164.5,78.5,0,0,-0.0056919 -147789,7716:384:3,-164,78.5,0,0,-0.00569445 -147790,7716:383:4,-163.5,78.5,0,0,-0.00570837 -147791,7716:383:3,-163,78.5,0,0,-0.00572616 -147792,7716:382:4,-162.5,78.5,0,0,-0.00573635 -147793,7716:382:3,-162,78.5,0,0,-0.005716 -147794,7715:489:4,-159.5,78.5,0,0,-0.00573125 -147795,7715:489:3,-159,78.5,0,0,-0.00572869 -147796,7715:485:3,-155,78.5,0,0,-0.00573254 -147797,7715:384:4,-154.5,78.5,0,0,-0.00573254 -147798,7715:384:3,-154,78.5,0,0,-0.00572997 -147799,7715:383:4,-153.5,78.5,0,0,-0.00572997 -147800,7715:383:3,-153,78.5,0,0,-0.00573254 -147801,7715:382:4,-152.5,78.5,0,0,-0.00573635 -147802,7715:382:3,-152,78.5,0,0,-0.00574144 -147803,7715:381:4,-151.5,78.5,0,0,-0.00574144 -147804,7715:381:3,-151,78.5,0,0,-0.00573763 -147805,7715:380:4,-150.5,78.5,0,0,-0.00573763 -147806,7715:380:3,-150,78.5,0,0,-0.00575037 -147807,7714:489:4,-149.5,78.5,0,0,-0.00579657 -147808,7713:485:3,-135,78.5,0,0,-0.00589793 -147809,7713:384:4,-134.5,78.5,0,0,-0.00594133 -147810,7713:384:3,-134,78.5,0,0,-0.00595323 -147811,7713:383:4,-133.5,78.5,0,0,-0.00594266 -147812,7713:383:3,-133,78.5,0,0,-0.00592025 -147813,7708:380:4,-80.5,78.5,0,0,-0.00596515 -147814,7708:380:3,-80,78.5,0,0,-0.00597576 -147815,7707:489:4,-79.5,78.5,0,0,-0.00597442 -147816,7707:489:3,-79,78.5,0,0,-0.00597576 -147817,7707:488:4,-78.5,78.5,0,0,-0.00598509 -147818,7707:488:3,-78,78.5,0,0,-0.00598375 -147819,7707:485:4,-75.5,78.5,0,0,-0.00619902 -147820,7707:382:3,-72,78.5,0,0,-0.00586394 -147821,7707:381:4,-71.5,78.5,0,0,-0.00583665 -147822,7707:381:3,-71,78.5,0,0,-0.00581074 -147823,7707:380:4,-70.5,78.5,0,0,-0.00580948 -147824,7707:380:3,-70,78.5,0,0,-0.00580948 -147825,7706:489:4,-69.5,78.5,0,0,-0.00580688 -147826,7706:489:3,-69,78.5,0,0,-0.00580558 -147827,7706:488:4,-68.5,78.5,0,0,-0.00581334 -147828,7706:488:3,-68,78.5,0,0,-0.0058172 -147829,7706:487:4,-67.5,78.5,0,0,-0.00581074 -147830,7706:487:3,-67,78.5,0,0,-0.00581981 -147831,7706:485:3,-65,78.5,0,0,-0.00582498 -147832,7706:384:4,-64.5,78.5,0,0,-0.00582368 -147833,7706:381:4,-61.5,78.5,0,0,-0.00575423 -147834,7706:381:3,-61,78.5,0,0,-0.00573763 -147835,7706:380:4,-60.5,78.5,0,0,-0.00572869 -147836,7706:380:3,-60,78.5,0,0,-0.00573125 -147837,7705:489:4,-59.5,78.5,0,0,-0.00574273 -147838,7705:489:3,-59,78.5,0,0,-0.00574783 -147839,7705:384:4,-54.5,78.5,0,0,-0.00573254 -147840,7705:384:3,-54,78.5,0,0,-0.00573254 -147841,7705:383:4,-53.5,78.5,0,0,-0.00573506 -147842,7705:383:3,-53,78.5,0,0,-0.00572997 -147843,7705:382:4,-52.5,78.5,0,0,-0.00572741 -147844,7705:382:3,-52,78.5,0,0,-0.0057236 -147845,7705:381:4,-51.5,78.5,0,0,-0.00572108 -147846,7705:381:3,-51,78.5,0,0,-0.00569824 -147847,7704:489:3,-49,78.5,0,0,-0.00572741 -147848,7704:488:4,-48.5,78.5,0,0,-0.00572869 -147849,7704:488:3,-48,78.5,0,0,-0.00573635 -147850,7704:487:4,-47.5,78.5,0,0,-0.00574016 -147851,7704:383:3,-43,78.5,0,0,-0.00573763 -147852,7704:382:4,-42.5,78.5,0,0,-0.00572997 -147853,7704:382:3,-42,78.5,0,0,-0.00572869 -147854,7703:489:4,-39.5,78.5,0,0,-0.00571724 -147855,7703:489:3,-39,78.5,0,0,-0.00570965 -147856,7703:488:4,-38.5,78.5,0,0,-0.00570202 -147857,7703:488:3,-38,78.5,0,0,-0.00568685 -147858,7703:487:4,-37.5,78.5,0,0,-0.00568053 -147859,7703:487:3,-37,78.5,0,0,-0.00567803 -147860,7703:486:4,-36.5,78.5,0,0,-0.00567675 -147861,7703:486:3,-36,78.5,0,0,-0.00567803 -147862,7703:485:4,-35.5,78.5,0,0,-0.00568307 -147863,7703:485:3,-35,78.5,0,0,-0.00568685 -147864,7703:384:4,-34.5,78.5,0,0,-0.00568812 -147865,7703:384:3,-34,78.5,0,0,-0.0056843 -147866,7703:383:4,-33.5,78.5,0,0,-0.00567803 -147867,7703:383:3,-33,78.5,0,0,-0.00567421 -147868,7703:382:4,-32.5,78.5,0,0,-0.00567294 -147869,7703:382:3,-32,78.5,0,0,-0.00567294 -147870,7703:381:4,-31.5,78.5,0,0,-0.00567294 -147871,7703:381:3,-31,78.5,0,0,-0.00567294 -147872,7703:380:4,-30.5,78.5,0,0,-0.00567421 -147873,7703:380:3,-30,78.5,0,0,-0.00567548 -147874,7702:489:4,-29.5,78.5,0,0,-0.00567675 -147875,7702:489:3,-29,78.5,0,0,-0.00567548 -147876,7702:488:4,-28.5,78.5,0,0,-0.00567548 -147877,7702:488:3,-28,78.5,0,0,-0.00567548 -147878,7702:487:4,-27.5,78.5,0,0,-0.00567675 -147879,7702:487:3,-27,78.5,0,0,-0.00568053 -147880,7702:486:4,-26.5,78.5,0,0,-0.0056818 -147881,7702:486:3,-26,78.5,0,0,-0.0056818 -147882,7702:485:4,-25.5,78.5,0,0,-0.00568307 -147883,7702:485:3,-25,78.5,0,0,-0.0056843 -147884,7702:384:4,-24.5,78.5,0,0,-0.00568307 -147885,7702:384:3,-24,78.5,0,0,-0.00567803 -147886,7702:383:4,-23.5,78.5,0,0,-0.00567294 -147887,7702:383:3,-23,78.5,0,0,-0.00566918 -147888,7702:382:4,-22.5,78.5,0,0,-0.00566791 -147889,7702:382:3,-22,78.5,0,0,-0.00566668 -147890,7702:381:4,-21.5,78.5,0,0,-0.00566541 -147891,7702:381:3,-21,78.5,0,0,-0.00566165 -147892,7702:380:4,-20.5,78.5,0,0,-0.00565658 -147893,7702:380:3,-20,78.5,0,0,-0.00565282 -147894,7701:489:4,-19.5,78.5,0,0,-0.00564781 -147895,7701:489:3,-19,78.5,0,0,-0.00563652 -147896,7701:488:4,-18.5,78.5,0,0,-0.00562526 -147897,7701:488:3,-18,78.5,0,0,-0.005619 -147898,7701:487:4,-17.5,78.5,0,0,-0.0056028 -147899,7701:487:3,-17,78.5,0,0,-0.00558664 -147900,7701:486:4,-16.5,78.5,0,0,-0.00557672 -147901,7701:486:3,-16,78.5,0,0,-0.00556682 -147902,7701:485:4,-15.5,78.5,0,0,-0.0055545 -147903,7701:485:3,-15,78.5,0,0,-0.0055434 -147904,7701:384:4,-14.5,78.5,0,0,-0.00552985 -147905,7701:384:3,-14,78.5,0,0,-0.0055188 -147906,7701:383:4,-13.5,78.5,0,0,-0.00551147 -147907,7701:383:3,-13,78.5,0,0,-0.005509 -147908,7701:382:4,-12.5,78.5,0,0,-0.00550658 -147909,7701:382:3,-12,78.5,0,0,-0.00550534 -147910,7701:381:4,-11.5,78.5,0,0,-0.00550534 -147911,7701:381:3,-11,78.5,0,0,-0.00550777 -147912,7701:380:4,-10.5,78.5,0,0,-0.00551266 -147913,7701:380:3,-10,78.5,0,0,-0.00552494 -147914,7700:489:4,-9.5,78.5,0,0,-0.00555201 -147915,7700:489:3,-9,78.5,0,0,-0.00558293 -147916,7700:488:4,-8.5,78.5,0,0,-0.00561402 -147917,7700:488:3,-8,78.5,0,0,-0.00564279 -147918,7700:487:4,-7.5,78.5,0,0,-0.00575548 -147919,7700:487:3,-7,78.5,0,0,-0.00590842 -147920,7700:486:4,-6.5,78.5,0,0,-0.00601174 -147921,7700:486:3,-6,78.5,0,0,-0.00604659 -147922,7700:485:4,-5.5,78.5,0,0,-0.00605599 -147923,7700:485:3,-5,78.5,0,0,-0.00604257 -147924,7700:384:4,-4.5,78.5,0,0,-0.00604523 -147925,7700:384:3,-4,78.5,0,0,-0.00606137 -147926,7700:383:4,-3.5,78.5,0,0,-0.00602779 -147927,7700:383:3,-3,78.5,0,0,-0.00602109 -147928,7700:382:4,-2.5,78.5,0,0,-0.00601439 -147929,7700:382:3,-2,78.5,0,0,-0.00594399 -147930,7700:381:4,-1.5,78.5,0,0,-0.00604794 -147931,7700:381:3,-1,78.5,0,0,-0.00610329 -147932,7700:380:4,-0.5,78.5,0,0,-0.00612777 -147933,1700:380:4,0,78.5,0,0,-0.00619902 -147934,1700:380:4,0.5,78.5,0,0,-0.00653591 -147935,1700:381:3,1,78.5,0,0,-0.00633276 -147936,1700:381:4,1.5,78.5,0,0,-0.00618524 -147937,1700:382:3,2,78.5,0,0,-0.00604794 -147938,1700:382:4,2.5,78.5,0,0,-0.00597576 -147939,1700:383:3,3,78.5,0,0,-0.00589793 -147940,1700:383:4,3.5,78.5,0,0,-0.00580042 -147941,1700:384:3,4,78.5,0,0,-0.00576829 -147942,1700:384:4,4.5,78.5,0,0,-0.00583403 -147943,1700:485:3,5,78.5,0,0,-0.00594927 -147944,1700:485:4,5.5,78.5,0,0,-0.00655919 -147945,1700:486:3,6,78.5,0,0,-0.00799948 -147946,1700:486:4,6.5,78.5,0,0,-0.00821432 -147947,1700:487:3,7,78.5,0,0,-0.00812877 -147948,1700:487:4,7.5,78.5,0,0,-0.0070337 -147949,1701:380:3,10,78.5,0,0,-0.00598773 -147950,1701:380:4,10.5,78.5,0,0,-0.00611415 -147951,1701:381:3,11,78.5,0,0,-0.0060064 -147952,1701:381:4,11.5,78.5,0,0,-0.00582755 -147953,1701:382:3,12,78.5,0,0,-0.00576575 -147954,1701:382:4,12.5,78.5,0,0,-0.00577213 -147955,1701:383:3,13,78.5,0,0,-0.00577342 -147956,1701:383:4,13.5,78.5,0,0,-0.00577213 -147957,1701:384:3,14,78.5,0,0,-0.00575934 -147958,1701:384:4,14.5,78.5,0,0,-0.00571852 -147959,1701:485:3,15,78.5,0,0,-0.00572108 -147960,1701:485:4,15.5,78.5,0,0,-0.00574526 -147961,1701:486:3,16,78.5,0,0,-0.00579272 -147962,1701:486:4,16.5,78.5,0,0,-0.00590185 -147963,1701:487:3,17,78.5,0,0,-0.00597974 -147964,1701:487:4,17.5,78.5,0,0,-0.00604388 -147965,1701:488:3,18,78.5,0,0,-0.00613051 -147966,1701:488:4,18.5,78.5,0,0,-0.00623081 -147967,1701:489:3,19,78.5,0,0,-0.00619763 -147968,1701:489:4,19.5,78.5,0,0,-0.00610602 -147969,1702:380:3,20,78.5,0,0,-0.00596119 -147970,1702:380:4,20.5,78.5,0,0,-0.00587047 -147971,1702:381:3,21,78.5,0,0,-0.00598509 -147972,1702:381:4,21.5,78.5,0,0,-0.00610329 -147973,1702:382:3,22,78.5,0,0,-0.00605734 -147974,1702:382:4,22.5,78.5,0,0,-0.00585874 -147975,1702:383:3,23,78.5,0,0,-0.00574273 -147976,1702:383:4,23.5,78.5,0,0,-0.00568558 -147977,1712:488:4,128.5,78.5,0,0,-0.00829524 -147978,1712:489:3,129,78.5,0,0,-0.00829524 -147979,1713:382:4,132.5,78.5,0,0,-0.00635531 -147980,1713:383:3,133,78.5,0,0,-0.00641067 -147981,1713:383:4,133.5,78.5,0,0,-0.00635531 -147982,1713:384:3,134,78.5,0,0,-0.00621005 -147983,1713:384:4,134.5,78.5,0,0,-0.00604388 -147984,1713:485:3,135,78.5,0,0,-0.00589269 -147985,1713:485:4,135.5,78.5,0,0,-0.00583795 -147986,1713:486:3,136,78.5,0,0,-0.00583273 -147987,1713:486:4,136.5,78.5,0,0,-0.00580302 -147988,1713:487:3,137,78.5,0,0,-0.005716 -147989,1713:487:4,137.5,78.5,0,0,-0.00560033 -147990,1713:488:3,138,78.5,0,0,-0.00557426 -147991,1713:488:4,138.5,78.5,0,0,-0.00555943 -147992,1713:489:3,139,78.5,0,0,-0.00555325 -147993,1713:489:4,139.5,78.5,0,0,-0.00555694 -147994,1714:380:3,140,78.5,0,0,-0.00556932 -147995,1714:380:4,140.5,78.5,0,0,-0.00559536 -147996,1714:381:3,141,78.5,0,0,-0.00563904 -147997,1714:381:4,141.5,78.5,0,0,-0.00566165 -147998,1714:382:3,142,78.5,0,0,-0.00563904 -147999,1714:382:4,142.5,78.5,0,0,-0.005619 -148000,1714:383:3,143,78.5,0,0,-0.00561154 -148001,1714:383:4,143.5,78.5,0,0,-0.00560531 -148002,1714:384:3,144,78.5,0,0,-0.0056028 -148003,1714:384:4,144.5,78.5,0,0,-0.00560158 -148004,1714:485:3,145,78.5,0,0,-0.00560158 -148005,1714:485:4,145.5,78.5,0,0,-0.00559782 -148006,1714:486:3,146,78.5,0,0,-0.00558168 -148007,1714:486:4,146.5,78.5,0,0,-0.00557177 -148008,1714:487:3,147,78.5,0,0,-0.00556932 -148009,1714:487:4,147.5,78.5,0,0,-0.00556558 -148010,1714:488:3,148,78.5,0,0,-0.00555694 -148011,1714:488:4,148.5,78.5,0,0,-0.00555077 -148012,1714:489:3,149,78.5,0,0,-0.00555694 -148013,1714:489:4,149.5,78.5,0,0,-0.0055545 -148014,1715:380:3,150,78.5,0,0,-0.00555694 -148015,1715:380:4,150.5,78.5,0,0,-0.0055545 -148016,1715:381:3,151,78.5,0,0,-0.00556807 -148017,1715:381:4,151.5,78.5,0,0,-0.00553848 -148018,1715:382:3,152,78.5,0,0,-0.0055225 -148019,1715:382:4,152.5,78.5,0,0,-0.00552003 -148020,1715:383:3,153,78.5,0,0,-0.00552741 -148021,1715:383:4,153.5,78.5,0,0,-0.005536 -148022,1715:384:3,154,78.5,0,0,-0.0055446 -148023,1715:384:4,154.5,78.5,0,0,-0.00555201 -148024,1715:485:3,155,78.5,0,0,-0.00555694 -148025,1715:485:4,155.5,78.5,0,0,-0.00555819 -148026,1715:486:3,156,78.5,0,0,-0.00556064 -148027,1715:486:4,156.5,78.5,0,0,-0.00556188 -148028,1715:487:3,157,78.5,0,0,-0.00556558 -148029,1715:487:4,157.5,78.5,0,0,-0.00557672 -148030,1715:488:3,158,78.5,0,0,-0.00559164 -148031,1715:488:4,158.5,78.5,0,0,-0.00560405 -148032,1715:489:3,159,78.5,0,0,-0.00561154 -148033,1715:489:4,159.5,78.5,0,0,-0.00561402 -148034,1716:380:3,160,78.5,0,0,-0.00561154 -148035,1716:380:4,160.5,78.5,0,0,-0.00561154 -148036,1716:381:3,161,78.5,0,0,-0.00561402 -148037,1716:381:4,161.5,78.5,0,0,-0.00561778 -148038,1716:382:3,162,78.5,0,0,-0.00562526 -148039,1716:382:4,162.5,78.5,0,0,-0.00563404 -148040,1716:383:3,163,78.5,0,0,-0.00564279 -148041,1716:383:4,163.5,78.5,0,0,-0.00565033 -148042,1716:384:3,164,78.5,0,0,-0.00565535 -148043,1716:384:4,164.5,78.5,0,0,-0.00565785 -148044,1716:485:3,165,78.5,0,0,-0.00565911 -148045,1716:485:4,165.5,78.5,0,0,-0.00566165 -148046,1716:486:3,166,78.5,0,0,-0.00566288 -148047,1716:486:4,166.5,78.5,0,0,-0.00566541 -148048,1716:487:3,167,78.5,0,0,-0.00566668 -148049,1716:487:4,167.5,78.5,0,0,-0.00566791 -148050,1716:488:3,168,78.5,0,0,-0.00566918 -148051,1716:488:4,168.5,78.5,0,0,-0.00566918 -148052,1716:489:3,169,78.5,0,0,-0.00566918 -148053,1716:489:4,169.5,78.5,0,0,-0.00567045 -148054,1717:380:3,170,78.5,0,0,-0.00567171 -148055,1717:380:4,170.5,78.5,0,0,-0.00567171 -148056,1717:381:3,171,78.5,0,0,-0.00567171 -148057,1717:381:4,171.5,78.5,0,0,-0.00567171 -148058,1717:382:3,172,78.5,0,0,-0.00567045 -148059,1717:382:4,172.5,78.5,0,0,-0.00567045 -148060,1717:383:3,173,78.5,0,0,-0.00567045 -148061,1717:383:4,173.5,78.5,0,0,-0.00567171 -148062,1717:384:3,174,78.5,0,0,-0.00567294 -148063,1717:384:4,174.5,78.5,0,0,-0.00567548 -148064,1717:485:3,175,78.5,0,0,-0.00567803 -148065,1717:485:4,175.5,78.5,0,0,-0.00568053 -148066,1717:486:3,176,78.5,0,0,-0.0056818 -148067,1717:486:4,176.5,78.5,0,0,-0.00568307 -148068,1717:487:3,177,78.5,0,0,-0.00568307 -148069,1717:487:4,177.5,78.5,0,0,-0.00568307 -148070,1717:488:3,178,78.5,0,0,-0.0056818 -148071,1717:488:4,178.5,78.5,0,0,-0.0056818 -148072,1717:489:3,179,78.5,0,0,-0.0056818 -148073,1717:489:4,179.5,78.5,0,0,-0.00568307 -148074,1718:380:3,180,78.5,0,0,-0.0056843 -148075,7718:390:1,-180,79,0,0,-0.00568053 -148076,7717:499:2,-179.5,79,0,0,-0.0056818 -148077,7717:499:1,-179,79,0,0,-0.0056843 -148078,7717:498:2,-178.5,79,0,0,-0.00568936 -148079,7717:498:1,-178,79,0,0,-0.0056919 -148080,7717:497:2,-177.5,79,0,0,-0.00569318 -148081,7717:497:1,-177,79,0,0,-0.0056919 -148082,7717:496:2,-176.5,79,0,0,-0.0056919 -148083,7717:496:1,-176,79,0,0,-0.0056919 -148084,7717:495:2,-175.5,79,0,0,-0.0056919 -148085,7717:495:1,-175,79,0,0,-0.00569318 -148086,7717:394:2,-174.5,79,0,0,-0.00569569 -148087,7717:394:1,-174,79,0,0,-0.00569569 -148088,7717:393:2,-173.5,79,0,0,-0.00569696 -148089,7717:393:1,-173,79,0,0,-0.00570075 -148090,7717:392:2,-172.5,79,0,0,-0.00570581 -148091,7717:392:1,-172,79,0,0,-0.00571092 -148092,7717:391:2,-171.5,79,0,0,-0.00571472 -148093,7717:391:1,-171,79,0,0,-0.00571724 -148094,7717:390:2,-170.5,79,0,0,-0.00571724 -148095,7717:390:1,-170,79,0,0,-0.00571472 -148096,7716:499:2,-169.5,79,0,0,-0.00571216 -148097,7716:499:1,-169,79,0,0,-0.00571092 -148098,7716:498:2,-168.5,79,0,0,-0.00570837 -148099,7716:498:1,-168,79,0,0,-0.00570709 -148100,7716:497:2,-167.5,79,0,0,-0.00570458 -148101,7716:497:1,-167,79,0,0,-0.00570202 -148102,7716:496:2,-166.5,79,0,0,-0.00569951 -148103,7716:496:1,-166,79,0,0,-0.00569696 -148104,7716:495:2,-165.5,79,0,0,-0.00569445 -148105,7716:495:1,-165,79,0,0,-0.0056919 -148106,7716:394:2,-164.5,79,0,0,-0.0056919 -148107,7716:394:1,-164,79,0,0,-0.00570202 -148108,7716:393:2,-163.5,79,0,0,-0.00571724 -148109,7716:393:1,-163,79,0,0,-0.00572869 -148110,7716:392:2,-162.5,79,0,0,-0.00573635 -148111,7716:391:1,-161,79,0,0,-0.00572997 -148112,7716:390:2,-160.5,79,0,0,-0.00573125 -148113,7716:390:1,-160,79,0,0,-0.00573378 -148114,7715:499:2,-159.5,79,0,0,-0.00573506 -148115,7715:495:2,-155.5,79,0,0,-0.00574526 -148116,7715:495:1,-155,79,0,0,-0.00574144 -148117,7715:393:2,-153.5,79,0,0,-0.00573125 -148118,7715:393:1,-153,79,0,0,-0.00572869 -148119,7715:392:2,-152.5,79,0,0,-0.00573125 -148120,7715:392:1,-152,79,0,0,-0.00573888 -148121,7715:391:2,-151.5,79,0,0,-0.00574016 -148122,7715:391:1,-151,79,0,0,-0.00574144 -148123,7715:390:2,-150.5,79,0,0,-0.00574398 -148124,7715:390:1,-150,79,0,0,-0.00574398 -148125,7714:499:2,-149.5,79,0,0,-0.00574526 -148126,7713:495:1,-135,79,0,0,-0.00590974 -148127,7713:394:2,-134.5,79,0,0,-0.00593738 -148128,7713:394:1,-134,79,0,0,-0.00592157 -148129,7713:393:2,-133.5,79,0,0,-0.00590709 -148130,7713:393:1,-133,79,0,0,-0.00591892 -148131,7713:392:2,-132.5,79,0,0,-0.00593738 -148132,7713:392:1,-132,79,0,0,-0.00596252 -148133,7708:391:1,-81,79,0,0,-0.00593472 -148134,7708:390:2,-80.5,79,0,0,-0.00595323 -148135,7708:390:1,-80,79,0,0,-0.00597844 -148136,7707:499:2,-79.5,79,0,0,-0.0059771 -148137,7707:499:1,-79,79,0,0,-0.00597576 -148138,7707:498:2,-78.5,79,0,0,-0.00598107 -148139,7707:392:1,-72,79,0,0,-0.00585874 -148140,7707:391:2,-71.5,79,0,0,-0.00584314 -148141,7707:391:1,-71,79,0,0,-0.0058159 -148142,7707:390:2,-70.5,79,0,0,-0.00580688 -148143,7707:390:1,-70,79,0,0,-0.00580558 -148144,7706:499:2,-69.5,79,0,0,-0.00580688 -148145,7706:499:1,-69,79,0,0,-0.00580302 -148146,7706:498:2,-68.5,79,0,0,-0.00580302 -148147,7706:498:1,-68,79,0,0,-0.00580302 -148148,7706:497:2,-67.5,79,0,0,-0.00579916 -148149,7706:497:1,-67,79,0,0,-0.00579397 -148150,7706:495:1,-65,79,0,0,-0.00581981 -148151,7706:394:2,-64.5,79,0,0,-0.00580948 -148152,7706:394:1,-64,79,0,0,-0.00580818 -148153,7706:392:1,-62,79,0,0,-0.00576446 -148154,7706:391:2,-61.5,79,0,0,-0.00574912 -148155,7706:391:1,-61,79,0,0,-0.00572616 -148156,7706:390:2,-60.5,79,0,0,-0.00572108 -148157,7706:390:1,-60,79,0,0,-0.00572488 -148158,7705:499:2,-59.5,79,0,0,-0.00573635 -148159,7705:499:1,-59,79,0,0,-0.00574398 -148160,7705:394:1,-54,79,0,0,-0.00574273 -148161,7705:393:2,-53.5,79,0,0,-0.00574016 -148162,7705:393:1,-53,79,0,0,-0.00573254 -148163,7705:392:2,-52.5,79,0,0,-0.00572108 -148164,7705:392:1,-52,79,0,0,-0.00571472 -148165,7705:391:2,-51.5,79,0,0,-0.00570965 -148166,7705:391:1,-51,79,0,0,-0.00568558 -148167,7704:498:2,-48.5,79,0,0,-0.00572488 -148168,7704:498:1,-48,79,0,0,-0.00572741 -148169,7704:497:2,-47.5,79,0,0,-0.00573763 -148170,7704:392:1,-42,79,0,0,-0.00571724 -148171,7704:390:2,-40.5,79,0,0,-0.00571216 -148172,7704:390:1,-40,79,0,0,-0.00571216 -148173,7703:499:2,-39.5,79,0,0,-0.00569951 -148174,7703:499:1,-39,79,0,0,-0.00569063 -148175,7703:498:2,-38.5,79,0,0,-0.00568558 -148176,7703:498:1,-38,79,0,0,-0.0056818 -148177,7703:497:2,-37.5,79,0,0,-0.00568053 -148178,7703:497:1,-37,79,0,0,-0.00568053 -148179,7703:496:2,-36.5,79,0,0,-0.00568053 -148180,7703:496:1,-36,79,0,0,-0.00568053 -148181,7703:495:2,-35.5,79,0,0,-0.00568307 -148182,7703:495:1,-35,79,0,0,-0.00568558 -148183,7703:394:2,-34.5,79,0,0,-0.00568558 -148184,7703:394:1,-34,79,0,0,-0.0056843 -148185,7703:393:2,-33.5,79,0,0,-0.00567926 -148186,7703:393:1,-33,79,0,0,-0.00567548 -148187,7703:392:2,-32.5,79,0,0,-0.00567548 -148188,7703:392:1,-32,79,0,0,-0.00567548 -148189,7703:391:2,-31.5,79,0,0,-0.00567548 -148190,7703:391:1,-31,79,0,0,-0.00567548 -148191,7703:390:2,-30.5,79,0,0,-0.00567421 -148192,7703:390:1,-30,79,0,0,-0.00567421 -148193,7702:499:2,-29.5,79,0,0,-0.00567421 -148194,7702:499:1,-29,79,0,0,-0.00567421 -148195,7702:498:2,-28.5,79,0,0,-0.00567421 -148196,7702:498:1,-28,79,0,0,-0.00567421 -148197,7702:497:2,-27.5,79,0,0,-0.00567675 -148198,7702:497:1,-27,79,0,0,-0.00568053 -148199,7702:496:2,-26.5,79,0,0,-0.0056818 -148200,7702:496:1,-26,79,0,0,-0.00568307 -148201,7702:495:2,-25.5,79,0,0,-0.00568307 -148202,7702:495:1,-25,79,0,0,-0.0056843 -148203,7702:394:2,-24.5,79,0,0,-0.00568307 -148204,7702:394:1,-24,79,0,0,-0.00568053 -148205,7702:393:2,-23.5,79,0,0,-0.00567548 -148206,7702:393:1,-23,79,0,0,-0.00566918 -148207,7702:392:2,-22.5,79,0,0,-0.00566541 -148208,7702:392:1,-22,79,0,0,-0.00566288 -148209,7702:391:2,-21.5,79,0,0,-0.00566165 -148210,7702:391:1,-21,79,0,0,-0.00565911 -148211,7702:390:2,-20.5,79,0,0,-0.00565535 -148212,7702:390:1,-20,79,0,0,-0.00565033 -148213,7701:499:2,-19.5,79,0,0,-0.00564654 -148214,7701:499:1,-19,79,0,0,-0.00564153 -148215,7701:498:2,-18.5,79,0,0,-0.00563277 -148216,7701:498:1,-18,79,0,0,-0.00562152 -148217,7701:497:2,-17.5,79,0,0,-0.00559661 -148218,7701:497:1,-17,79,0,0,-0.00557797 -148219,7701:496:2,-16.5,79,0,0,-0.00556807 -148220,7701:496:1,-16,79,0,0,-0.00556188 -148221,7701:495:2,-15.5,79,0,0,-0.0055557 -148222,7701:495:1,-15,79,0,0,-0.00554584 -148223,7701:394:2,-14.5,79,0,0,-0.00553232 -148224,7701:394:1,-14,79,0,0,-0.00552127 -148225,7701:393:2,-13.5,79,0,0,-0.0055139 -148226,7701:393:1,-13,79,0,0,-0.00551024 -148227,7701:392:2,-12.5,79,0,0,-0.00550777 -148228,7701:392:1,-12,79,0,0,-0.00550534 -148229,7701:391:2,-11.5,79,0,0,-0.00550534 -148230,7701:391:1,-11,79,0,0,-0.00550658 -148231,7701:390:2,-10.5,79,0,0,-0.00551266 -148232,7701:390:1,-10,79,0,0,-0.00552494 -148233,7700:499:2,-9.5,79,0,0,-0.0055446 -148234,7700:499:1,-9,79,0,0,-0.00556188 -148235,7700:498:2,-8.5,79,0,0,-0.00558168 -148236,7700:498:1,-8,79,0,0,-0.00561527 -148237,7700:497:2,-7.5,79,0,0,-0.00572869 -148238,7700:497:1,-7,79,0,0,-0.00591367 -148239,7700:496:2,-6.5,79,0,0,-0.00601174 -148240,7700:496:1,-6,79,0,0,-0.0060372 -148241,7700:495:2,-5.5,79,0,0,-0.0060318 -148242,7700:495:1,-5,79,0,0,-0.00603851 -148243,7700:394:2,-4.5,79,0,0,-0.00601574 -148244,7700:394:1,-4,79,0,0,-0.0060064 -148245,7700:392:1,-2,79,0,0,-0.00583016 -148246,7700:390:2,-0.5,79,0,0,-0.00590842 -148247,1700:390:2,0,79,0,0,-0.00599704 -148248,1700:390:2,0.5,79,0,0,-0.00635247 -148249,1700:391:1,1,79,0,0,-0.00634403 -148250,1700:391:2,1.5,79,0,0,-0.00613867 -148251,1700:392:1,2,79,0,0,-0.0060345 -148252,1700:392:2,2.5,79,0,0,-0.00592684 -148253,1700:393:1,3,79,0,0,-0.00578883 -148254,1700:393:2,3.5,79,0,0,-0.00575165 -148255,1700:394:1,4,79,0,0,-0.00577088 -148256,1700:394:2,4.5,79,0,0,-0.00582755 -148257,1700:495:1,5,79,0,0,-0.00595323 -148258,1700:495:2,5.5,79,0,0,-0.00665764 -148259,1700:496:1,6,79,0,0,-0.00774701 -148260,1700:496:2,6.5,79,0,0,-0.00805129 -148261,1700:497:1,7,79,0,0,-0.00833045 -148262,1700:497:2,7.5,79,0,0,-0.00762554 -148263,1700:499:2,9.5,79,0,0,-0.00594266 -148264,1701:390:1,10,79,0,0,-0.00612502 -148265,1701:390:2,10.5,79,0,0,-0.00597179 -148266,1701:391:1,11,79,0,0,-0.00580688 -148267,1701:391:2,11.5,79,0,0,-0.00573635 -148268,1701:392:1,12,79,0,0,-0.00574526 -148269,1701:392:2,12.5,79,0,0,-0.00573888 -148270,1701:393:1,13,79,0,0,-0.00572997 -148271,1701:393:2,13.5,79,0,0,-0.00573378 -148272,1701:394:1,14,79,0,0,-0.00571092 -148273,1701:394:2,14.5,79,0,0,-0.00569824 -148274,1701:495:1,15,79,0,0,-0.00569318 -148275,1701:495:2,15.5,79,0,0,-0.00571092 -148276,1701:496:1,16,79,0,0,-0.00580302 -148277,1701:496:2,16.5,79,0,0,-0.00596382 -148278,1701:497:1,17,79,0,0,-0.00607623 -148279,1701:497:2,17.5,79,0,0,-0.00613867 -148280,1701:498:1,18,79,0,0,-0.00618801 -148281,1701:498:2,18.5,79,0,0,-0.00620731 -148282,1701:499:1,19,79,0,0,-0.00608163 -148283,1701:499:2,19.5,79,0,0,-0.00584053 -148284,1702:390:1,20,79,0,0,-0.00558914 -148285,1702:390:2,20.5,79,0,0,-0.00559661 -148286,1702:391:1,21,79,0,0,-0.00563277 -148287,1702:391:2,21.5,79,0,0,-0.00571724 -148288,1702:392:1,22,79,0,0,-0.00580302 -148289,1702:392:2,22.5,79,0,0,-0.00572869 -148290,1702:393:1,23,79,0,0,-0.00570202 -148291,1702:393:2,23.5,79,0,0,-0.00569569 -148292,1702:394:1,24,79,0,0,-0.0057236 -148293,1712:498:2,128.5,79,0,0,-0.00827496 -148294,1712:499:1,129,79,0,0,-0.00823081 -148295,1713:392:2,132.5,79,0,0,-0.00638224 -148296,1713:393:1,133,79,0,0,-0.00638791 -148297,1713:393:2,133.5,79,0,0,-0.00634403 -148298,1713:394:1,134,79,0,0,-0.00617564 -148299,1713:394:2,134.5,79,0,0,-0.00594 -148300,1713:495:1,135,79,0,0,-0.00591499 -148301,1713:495:2,135.5,79,0,0,-0.00579787 -148302,1713:496:1,136,79,0,0,-0.00567294 -148303,1713:496:2,136.5,79,0,0,-0.00563277 -148304,1713:497:1,137,79,0,0,-0.00561778 -148305,1713:497:2,137.5,79,0,0,-0.00558168 -148306,1713:498:1,138,79,0,0,-0.00557177 -148307,1713:498:2,138.5,79,0,0,-0.00556313 -148308,1713:499:1,139,79,0,0,-0.00555077 -148309,1713:499:2,139.5,79,0,0,-0.00554953 -148310,1714:390:1,140,79,0,0,-0.0055446 -148311,1714:390:2,140.5,79,0,0,-0.00553476 -148312,1714:391:1,141,79,0,0,-0.00559164 -148313,1714:391:2,141.5,79,0,0,-0.00565785 -148314,1714:392:1,142,79,0,0,-0.00559039 -148315,1714:392:2,142.5,79,0,0,-0.00556313 -148316,1714:393:1,143,79,0,0,-0.00556313 -148317,1714:393:2,143.5,79,0,0,-0.00558914 -148318,1714:394:1,144,79,0,0,-0.00559285 -148319,1714:394:2,144.5,79,0,0,-0.00558914 -148320,1714:495:1,145,79,0,0,-0.00557797 -148321,1714:495:2,145.5,79,0,0,-0.00557177 -148322,1714:496:1,146,79,0,0,-0.00557052 -148323,1714:496:2,146.5,79,0,0,-0.00556437 -148324,1714:497:1,147,79,0,0,-0.00556313 -148325,1714:497:2,147.5,79,0,0,-0.00556682 -148326,1714:498:1,148,79,0,0,-0.00555694 -148327,1714:498:2,148.5,79,0,0,-0.00554953 -148328,1714:499:1,149,79,0,0,-0.00556437 -148329,1715:390:1,150,79,0,0,-0.00553968 -148330,1715:390:2,150.5,79,0,0,-0.00558047 -148331,1715:391:1,151,79,0,0,-0.00557426 -148332,1715:391:2,151.5,79,0,0,-0.00554092 -148333,1715:392:1,152,79,0,0,-0.0055446 -148334,1715:392:2,152.5,79,0,0,-0.00554584 -148335,1715:393:1,153,79,0,0,-0.00554953 -148336,1715:393:2,153.5,79,0,0,-0.00555325 -148337,1715:394:1,154,79,0,0,-0.0055557 -148338,1715:394:2,154.5,79,0,0,-0.00555694 -148339,1715:495:1,155,79,0,0,-0.00555694 -148340,1715:495:2,155.5,79,0,0,-0.00555819 -148341,1715:496:1,156,79,0,0,-0.00555819 -148342,1715:496:2,156.5,79,0,0,-0.00556064 -148343,1715:497:1,157,79,0,0,-0.00556437 -148344,1715:497:2,157.5,79,0,0,-0.00557672 -148345,1715:498:1,158,79,0,0,-0.00559164 -148346,1715:498:2,158.5,79,0,0,-0.00560405 -148347,1715:499:1,159,79,0,0,-0.00560903 -148348,1715:499:2,159.5,79,0,0,-0.00561029 -148349,1716:390:1,160,79,0,0,-0.00560781 -148350,1716:390:2,160.5,79,0,0,-0.00560656 -148351,1716:391:1,161,79,0,0,-0.00560903 -148352,1716:391:2,161.5,79,0,0,-0.0056128 -148353,1716:392:1,162,79,0,0,-0.00562026 -148354,1716:392:2,162.5,79,0,0,-0.00562903 -148355,1716:393:1,163,79,0,0,-0.00563778 -148356,1716:393:2,163.5,79,0,0,-0.00564654 -148357,1716:394:1,164,79,0,0,-0.00565409 -148358,1716:394:2,164.5,79,0,0,-0.00565785 -148359,1716:495:1,165,79,0,0,-0.00566038 -148360,1716:495:2,165.5,79,0,0,-0.00566165 -148361,1716:496:1,166,79,0,0,-0.00566414 -148362,1716:496:2,166.5,79,0,0,-0.00566541 -148363,1716:497:1,167,79,0,0,-0.00566791 -148364,1716:497:2,167.5,79,0,0,-0.00566918 -148365,1716:498:1,168,79,0,0,-0.00567045 -148366,1716:498:2,168.5,79,0,0,-0.00567045 -148367,1716:499:1,169,79,0,0,-0.00567171 -148368,1716:499:2,169.5,79,0,0,-0.00567294 -148369,1717:390:1,170,79,0,0,-0.00567294 -148370,1717:390:2,170.5,79,0,0,-0.00567294 -148371,1717:391:1,171,79,0,0,-0.00567171 -148372,1717:391:2,171.5,79,0,0,-0.00567045 -148373,1717:392:1,172,79,0,0,-0.00567045 -148374,1717:392:2,172.5,79,0,0,-0.00567045 -148375,1717:393:1,173,79,0,0,-0.00567045 -148376,1717:393:2,173.5,79,0,0,-0.00567171 -148377,1717:394:1,174,79,0,0,-0.00567421 -148378,1717:394:2,174.5,79,0,0,-0.00567548 -148379,1717:495:1,175,79,0,0,-0.00567803 -148380,1717:495:2,175.5,79,0,0,-0.00567926 -148381,1717:496:1,176,79,0,0,-0.0056818 -148382,1717:496:2,176.5,79,0,0,-0.00568307 -148383,1717:497:1,177,79,0,0,-0.00568307 -148384,1717:497:2,177.5,79,0,0,-0.0056818 -148385,1717:498:1,178,79,0,0,-0.00568053 -148386,1717:498:2,178.5,79,0,0,-0.00568053 -148387,1717:499:1,179,79,0,0,-0.00568053 -148388,1717:499:2,179.5,79,0,0,-0.00568053 -148389,1718:390:1,180,79,0,0,-0.00568053 -148390,7718:390:3,-180,79.5,0,0,-0.00567926 -148391,7717:499:4,-179.5,79.5,0,0,-0.00567926 -148392,7717:499:3,-179,79.5,0,0,-0.0056818 -148393,7717:498:4,-178.5,79.5,0,0,-0.00568558 -148394,7717:498:3,-178,79.5,0,0,-0.00568812 -148395,7717:497:4,-177.5,79.5,0,0,-0.00568936 -148396,7717:497:3,-177,79.5,0,0,-0.00568812 -148397,7717:496:4,-176.5,79.5,0,0,-0.00568812 -148398,7717:496:3,-176,79.5,0,0,-0.00568812 -148399,7717:495:4,-175.5,79.5,0,0,-0.00569063 -148400,7717:495:3,-175,79.5,0,0,-0.00569318 -148401,7717:394:4,-174.5,79.5,0,0,-0.00569569 -148402,7717:394:3,-174,79.5,0,0,-0.00569824 -148403,7717:393:4,-173.5,79.5,0,0,-0.00569951 -148404,7717:393:3,-173,79.5,0,0,-0.0057033 -148405,7717:392:4,-172.5,79.5,0,0,-0.00570709 -148406,7717:392:3,-172,79.5,0,0,-0.00571092 -148407,7717:391:4,-171.5,79.5,0,0,-0.00571472 -148408,7717:391:3,-171,79.5,0,0,-0.005716 -148409,7717:390:4,-170.5,79.5,0,0,-0.00571344 -148410,7717:390:3,-170,79.5,0,0,-0.00571092 -148411,7716:499:4,-169.5,79.5,0,0,-0.00570581 -148412,7716:499:3,-169,79.5,0,0,-0.00570202 -148413,7716:498:4,-168.5,79.5,0,0,-0.00570075 -148414,7716:498:3,-168,79.5,0,0,-0.00569951 -148415,7716:497:4,-167.5,79.5,0,0,-0.00569951 -148416,7716:497:3,-167,79.5,0,0,-0.00569824 -148417,7716:496:4,-166.5,79.5,0,0,-0.00569569 -148418,7716:496:3,-166,79.5,0,0,-0.00569445 -148419,7716:495:4,-165.5,79.5,0,0,-0.00569318 -148420,7716:495:3,-165,79.5,0,0,-0.00569063 -148421,7716:394:4,-164.5,79.5,0,0,-0.00569445 -148422,7716:394:3,-164,79.5,0,0,-0.00570965 -148423,7716:393:4,-163.5,79.5,0,0,-0.00572108 -148424,7716:393:3,-163,79.5,0,0,-0.00572616 -148425,7716:392:4,-162.5,79.5,0,0,-0.00572997 -148426,7716:392:3,-162,79.5,0,0,-0.0057236 -148427,7716:391:4,-161.5,79.5,0,0,-0.0057236 -148428,7716:391:3,-161,79.5,0,0,-0.00572869 -148429,7716:390:4,-160.5,79.5,0,0,-0.00573254 -148430,7715:499:4,-159.5,79.5,0,0,-0.00573888 -148431,7715:495:3,-155,79.5,0,0,-0.00574144 -148432,7715:393:3,-153,79.5,0,0,-0.00572741 -148433,7715:392:4,-152.5,79.5,0,0,-0.00572488 -148434,7715:392:3,-152,79.5,0,0,-0.00572997 -148435,7715:391:4,-151.5,79.5,0,0,-0.00573635 -148436,7715:391:3,-151,79.5,0,0,-0.00573763 -148437,7715:390:4,-150.5,79.5,0,0,-0.00574398 -148438,7715:390:3,-150,79.5,0,0,-0.00574783 -148439,7714:499:4,-149.5,79.5,0,0,-0.00575037 -148440,7714:499:3,-149,79.5,0,0,-0.00573506 -148441,7713:495:3,-135,79.5,0,0,-0.00591632 -148442,7713:394:4,-134.5,79.5,0,0,-0.00592551 -148443,7713:394:3,-134,79.5,0,0,-0.00591234 -148444,7713:393:4,-133.5,79.5,0,0,-0.00591367 -148445,7713:393:3,-133,79.5,0,0,-0.0059176 -148446,7713:392:4,-132.5,79.5,0,0,-0.00593605 -148447,7713:392:3,-132,79.5,0,0,-0.00596515 -148448,7708:390:4,-80.5,79.5,0,0,-0.00593472 -148449,7708:390:3,-80,79.5,0,0,-0.00594661 -148450,7707:499:4,-79.5,79.5,0,0,-0.00595985 -148451,7707:499:3,-79,79.5,0,0,-0.00597576 -148452,7707:498:4,-78.5,79.5,0,0,-0.0059771 -148453,7707:498:3,-78,79.5,0,0,-0.00595719 -148454,7707:392:3,-72,79.5,0,0,-0.00580432 -148455,7707:391:4,-71.5,79.5,0,0,-0.00583016 -148456,7707:391:3,-71,79.5,0,0,-0.00582111 -148457,7707:390:4,-70.5,79.5,0,0,-0.00580948 -148458,7707:390:3,-70,79.5,0,0,-0.00580302 -148459,7706:499:4,-69.5,79.5,0,0,-0.00580302 -148460,7706:499:3,-69,79.5,0,0,-0.00580302 -148461,7706:498:4,-68.5,79.5,0,0,-0.00580042 -148462,7706:498:3,-68,79.5,0,0,-0.00579916 -148463,7706:497:4,-67.5,79.5,0,0,-0.00579657 -148464,7706:497:3,-67,79.5,0,0,-0.00579012 -148465,7706:496:4,-66.5,79.5,0,0,-0.00578369 -148466,7706:496:3,-66,79.5,0,0,-0.00577471 -148467,7706:394:3,-64,79.5,0,0,-0.00578243 -148468,7706:393:4,-63.5,79.5,0,0,-0.00578243 -148469,7706:393:3,-63,79.5,0,0,-0.00577601 -148470,7706:392:4,-62.5,79.5,0,0,-0.005767 -148471,7706:392:3,-62,79.5,0,0,-0.00575294 -148472,7706:391:4,-61.5,79.5,0,0,-0.00572997 -148473,7706:391:3,-61,79.5,0,0,-0.00571724 -148474,7706:390:4,-60.5,79.5,0,0,-0.00571344 -148475,7706:390:3,-60,79.5,0,0,-0.00572108 -148476,7705:499:4,-59.5,79.5,0,0,-0.00572997 -148477,7705:499:3,-59,79.5,0,0,-0.00573506 -148478,7705:498:4,-58.5,79.5,0,0,-0.00573254 -148479,7705:498:3,-58,79.5,0,0,-0.0057198 -148480,7705:497:4,-57.5,79.5,0,0,-0.00569318 -148481,7705:497:3,-57,79.5,0,0,-0.00567675 -148482,7705:394:3,-54,79.5,0,0,-0.00574273 -148483,7705:393:4,-53.5,79.5,0,0,-0.00574144 -148484,7705:393:3,-53,79.5,0,0,-0.00573378 -148485,7705:392:4,-52.5,79.5,0,0,-0.00572232 -148486,7705:392:3,-52,79.5,0,0,-0.00570709 -148487,7705:391:4,-51.5,79.5,0,0,-0.00569569 -148488,7705:391:3,-51,79.5,0,0,-0.00568936 -148489,7705:390:4,-50.5,79.5,0,0,-0.00568936 -148490,7705:390:3,-50,79.5,0,0,-0.00569445 -148491,7704:498:4,-48.5,79.5,0,0,-0.00572232 -148492,7704:498:3,-48,79.5,0,0,-0.00572108 -148493,7704:497:4,-47.5,79.5,0,0,-0.00572616 -148494,7704:497:3,-47,79.5,0,0,-0.00574016 -148495,7704:496:4,-46.5,79.5,0,0,-0.00573888 -148496,7704:495:4,-45.5,79.5,0,0,-0.00573763 -148497,7704:393:3,-43,79.5,0,0,-0.00572741 -148498,7704:392:3,-42,79.5,0,0,-0.0057198 -148499,7704:391:4,-41.5,79.5,0,0,-0.00571092 -148500,7704:391:3,-41,79.5,0,0,-0.0057033 -148501,7704:390:4,-40.5,79.5,0,0,-0.00569824 -148502,7704:390:3,-40,79.5,0,0,-0.00568936 -148503,7703:499:4,-39.5,79.5,0,0,-0.0056843 -148504,7703:499:3,-39,79.5,0,0,-0.00568307 -148505,7703:498:4,-38.5,79.5,0,0,-0.0056818 -148506,7703:498:3,-38,79.5,0,0,-0.0056818 -148507,7703:497:4,-37.5,79.5,0,0,-0.0056818 -148508,7703:497:3,-37,79.5,0,0,-0.00568307 -148509,7703:496:4,-36.5,79.5,0,0,-0.00568307 -148510,7703:496:3,-36,79.5,0,0,-0.0056843 -148511,7703:495:4,-35.5,79.5,0,0,-0.0056843 -148512,7703:495:3,-35,79.5,0,0,-0.0056843 -148513,7703:394:4,-34.5,79.5,0,0,-0.0056843 -148514,7703:394:3,-34,79.5,0,0,-0.00568053 -148515,7703:393:4,-33.5,79.5,0,0,-0.00567675 -148516,7703:393:3,-33,79.5,0,0,-0.00567548 -148517,7703:392:4,-32.5,79.5,0,0,-0.00567803 -148518,7703:392:3,-32,79.5,0,0,-0.00567926 -148519,7703:391:4,-31.5,79.5,0,0,-0.00568053 -148520,7703:391:3,-31,79.5,0,0,-0.00568053 -148521,7703:390:4,-30.5,79.5,0,0,-0.00567926 -148522,7703:390:3,-30,79.5,0,0,-0.00567803 -148523,7702:499:4,-29.5,79.5,0,0,-0.00567548 -148524,7702:499:3,-29,79.5,0,0,-0.00567548 -148525,7702:498:4,-28.5,79.5,0,0,-0.00567548 -148526,7702:498:3,-28,79.5,0,0,-0.00567548 -148527,7702:497:4,-27.5,79.5,0,0,-0.00567675 -148528,7702:497:3,-27,79.5,0,0,-0.0056818 -148529,7702:496:4,-26.5,79.5,0,0,-0.00568307 -148530,7702:496:3,-26,79.5,0,0,-0.00568307 -148531,7702:495:4,-25.5,79.5,0,0,-0.00568307 -148532,7702:495:3,-25,79.5,0,0,-0.00568307 -148533,7702:394:4,-24.5,79.5,0,0,-0.00568307 -148534,7702:394:3,-24,79.5,0,0,-0.00568053 -148535,7702:393:4,-23.5,79.5,0,0,-0.00567803 -148536,7702:393:3,-23,79.5,0,0,-0.00567421 -148537,7702:392:4,-22.5,79.5,0,0,-0.00566918 -148538,7702:392:3,-22,79.5,0,0,-0.00566414 -148539,7702:391:4,-21.5,79.5,0,0,-0.00565911 -148540,7702:391:3,-21,79.5,0,0,-0.00565409 -148541,7702:390:4,-20.5,79.5,0,0,-0.00564781 -148542,7702:390:3,-20,79.5,0,0,-0.0056403 -148543,7701:499:4,-19.5,79.5,0,0,-0.00563404 -148544,7701:499:3,-19,79.5,0,0,-0.00562903 -148545,7701:498:4,-18.5,79.5,0,0,-0.00562026 -148546,7701:498:3,-18,79.5,0,0,-0.00560903 -148547,7701:497:4,-17.5,79.5,0,0,-0.00559661 -148548,7701:497:3,-17,79.5,0,0,-0.00558543 -148549,7701:496:4,-16.5,79.5,0,0,-0.00557426 -148550,7701:496:3,-16,79.5,0,0,-0.00557052 -148551,7701:495:4,-15.5,79.5,0,0,-0.00556437 -148552,7701:495:3,-15,79.5,0,0,-0.00555201 -148553,7701:394:4,-14.5,79.5,0,0,-0.005536 -148554,7701:394:3,-14,79.5,0,0,-0.0055225 -148555,7701:393:4,-13.5,79.5,0,0,-0.00551513 -148556,7701:393:3,-13,79.5,0,0,-0.00551147 -148557,7701:392:4,-12.5,79.5,0,0,-0.00550777 -148558,7701:392:3,-12,79.5,0,0,-0.00550534 -148559,7701:391:4,-11.5,79.5,0,0,-0.00550534 -148560,7701:391:3,-11,79.5,0,0,-0.00550534 -148561,7701:390:4,-10.5,79.5,0,0,-0.005509 -148562,7701:390:3,-10,79.5,0,0,-0.00551756 -148563,7700:499:4,-9.5,79.5,0,0,-0.00553108 -148564,7700:499:3,-9,79.5,0,0,-0.00554584 -148565,7700:498:4,-8.5,79.5,0,0,-0.00556064 -148566,7700:498:3,-8,79.5,0,0,-0.00558914 -148567,7700:497:4,-7.5,79.5,0,0,-0.00567421 -148568,7700:497:3,-7,79.5,0,0,-0.00584572 -148569,7700:496:4,-6.5,79.5,0,0,-0.00594532 -148570,7700:496:3,-6,79.5,0,0,-0.00599972 -148571,7700:495:4,-5.5,79.5,0,0,-0.00602244 -148572,7700:495:3,-5,79.5,0,0,-0.00603315 -148573,7700:394:4,-4.5,79.5,0,0,-0.00605196 -148574,7700:394:3,-4,79.5,0,0,-0.00596912 -148575,7700:393:4,-3.5,79.5,0,0,-0.00569318 -148576,7700:393:3,-3,79.5,0,0,-0.00574273 -148577,7700:392:4,-2.5,79.5,0,0,-0.00576829 -148578,7700:392:3,-2,79.5,0,0,-0.00575165 -148579,7700:391:3,-1,79.5,0,0,-0.00577471 -148580,7700:390:4,-0.5,79.5,0,0,-0.00584314 -148581,1700:390:4,0,79.5,0,0,-0.00598773 -148582,1700:390:4,0.5,79.5,0,0,-0.00598773 -148583,1700:391:3,1,79.5,0,0,-0.00601978 -148584,1700:391:4,1.5,79.5,0,0,-0.00597844 -148585,1700:392:3,2,79.5,0,0,-0.00593605 -148586,1700:392:4,2.5,79.5,0,0,-0.00577213 -148587,1700:393:3,3,79.5,0,0,-0.00574144 -148588,1700:393:4,3.5,79.5,0,0,-0.00574912 -148589,1700:394:3,4,79.5,0,0,-0.00581074 -148590,1700:394:4,4.5,79.5,0,0,-0.00594399 -148591,1700:495:3,5,79.5,0,0,-0.0062725 -148592,1700:495:4,5.5,79.5,0,0,-0.00726921 -148593,1700:496:3,6,79.5,0,0,-0.00703212 -148594,1700:496:4,6.5,79.5,0,0,-0.00784422 -148595,1700:497:3,7,79.5,0,0,-0.00806565 -148596,1700:497:4,7.5,79.5,0,0,-0.00750762 -148597,1700:499:4,9.5,79.5,0,0,-0.00605332 -148598,1701:390:3,10,79.5,0,0,-0.00607623 -148599,1701:390:4,10.5,79.5,0,0,-0.00592157 -148600,1701:391:3,11,79.5,0,0,-0.00578243 -148601,1701:391:4,11.5,79.5,0,0,-0.00569696 -148602,1701:392:3,12,79.5,0,0,-0.00570965 -148603,1701:392:4,12.5,79.5,0,0,-0.00571344 -148604,1701:393:3,13,79.5,0,0,-0.00569696 -148605,1701:393:4,13.5,79.5,0,0,-0.0057033 -148606,1701:394:3,14,79.5,0,0,-0.00571472 -148607,1701:394:4,14.5,79.5,0,0,-0.00572616 -148608,1701:495:3,15,79.5,0,0,-0.00574912 -148609,1701:495:4,15.5,79.5,0,0,-0.00578883 -148610,1701:496:3,16,79.5,0,0,-0.00587959 -148611,1701:496:4,16.5,79.5,0,0,-0.00599041 -148612,1701:497:3,17,79.5,0,0,-0.00602644 -148613,1701:497:4,17.5,79.5,0,0,-0.00595456 -148614,1701:498:3,18,79.5,0,0,-0.00590577 -148615,1701:498:4,18.5,79.5,0,0,-0.00590449 -148616,1701:499:3,19,79.5,0,0,-0.00567171 -148617,1701:499:4,19.5,79.5,0,0,-0.00553848 -148618,1702:390:4,20.5,79.5,0,0,-0.00550534 -148619,1702:391:3,21,79.5,0,0,-0.00550165 -148620,1702:391:4,21.5,79.5,0,0,-0.00553232 -148621,1702:392:3,22,79.5,0,0,-0.00553476 -148622,1702:393:3,23,79.5,0,0,-0.0056843 -148623,1702:393:4,23.5,79.5,0,0,-0.00573254 -148624,1702:394:3,24,79.5,0,0,-0.00581334 -148625,1702:394:4,24.5,79.5,0,0,-0.00588745 -148626,1702:495:3,25,79.5,0,0,-0.0059771 -148627,1712:499:3,129,79.5,0,0,-0.00784949 -148628,1712:499:4,129.5,79.5,0,0,-0.0076018 -148629,1713:390:3,130,79.5,0,0,-0.00714572 -148630,1713:390:4,130.5,79.5,0,0,-0.00670671 -148631,1713:392:3,132,79.5,0,0,-0.00642923 -148632,1713:392:4,132.5,79.5,0,0,-0.00636805 -148633,1713:393:3,133,79.5,0,0,-0.00629066 -148634,1713:393:4,133.5,79.5,0,0,-0.00615506 -148635,1713:394:3,134,79.5,0,0,-0.00603986 -148636,1713:394:4,134.5,79.5,0,0,-0.00599574 -148637,1713:495:3,135,79.5,0,0,-0.00595719 -148638,1713:495:4,135.5,79.5,0,0,-0.00585742 -148639,1713:496:4,136.5,79.5,0,0,-0.00563025 -148640,1713:497:3,137,79.5,0,0,-0.005619 -148641,1713:497:4,137.5,79.5,0,0,-0.00558168 -148642,1713:498:3,138,79.5,0,0,-0.00558914 -148643,1713:498:4,138.5,79.5,0,0,-0.00557302 -148644,1713:499:3,139,79.5,0,0,-0.00556064 -148645,1713:499:4,139.5,79.5,0,0,-0.00555694 -148646,1714:390:3,140,79.5,0,0,-0.00554092 -148647,1714:390:4,140.5,79.5,0,0,-0.00552741 -148648,1714:391:3,141,79.5,0,0,-0.00557922 -148649,1714:391:4,141.5,79.5,0,0,-0.00565658 -148650,1714:392:3,142,79.5,0,0,-0.00561778 -148651,1714:392:4,142.5,79.5,0,0,-0.00558047 -148652,1714:393:3,143,79.5,0,0,-0.00557551 -148653,1714:393:4,143.5,79.5,0,0,-0.00558664 -148654,1714:394:3,144,79.5,0,0,-0.00560033 -148655,1714:394:4,144.5,79.5,0,0,-0.00561402 -148656,1714:495:3,145,79.5,0,0,-0.00563277 -148657,1714:495:4,145.5,79.5,0,0,-0.00562903 -148658,1714:496:3,146,79.5,0,0,-0.00559285 -148659,1714:496:4,146.5,79.5,0,0,-0.00558914 -148660,1714:497:3,147,79.5,0,0,-0.00558789 -148661,1714:497:4,147.5,79.5,0,0,-0.00561653 -148662,1714:498:3,148,79.5,0,0,-0.00560531 -148663,1714:498:4,148.5,79.5,0,0,-0.00556682 -148664,1714:499:3,149,79.5,0,0,-0.00555077 -148665,1714:499:4,149.5,79.5,0,0,-0.00554953 -148666,1715:390:3,150,79.5,0,0,-0.00554708 -148667,1715:390:4,150.5,79.5,0,0,-0.00554584 -148668,1715:391:3,151,79.5,0,0,-0.00556437 -148669,1715:391:4,151.5,79.5,0,0,-0.0055446 -148670,1715:392:3,152,79.5,0,0,-0.00555325 -148671,1715:392:4,152.5,79.5,0,0,-0.0055545 -148672,1715:393:3,153,79.5,0,0,-0.0055557 -148673,1715:393:4,153.5,79.5,0,0,-0.00555694 -148674,1715:394:3,154,79.5,0,0,-0.00555694 -148675,1715:394:4,154.5,79.5,0,0,-0.0055557 -148676,1715:495:3,155,79.5,0,0,-0.0055545 -148677,1715:495:4,155.5,79.5,0,0,-0.0055557 -148678,1715:496:3,156,79.5,0,0,-0.00555819 -148679,1715:496:4,156.5,79.5,0,0,-0.00556064 -148680,1715:497:3,157,79.5,0,0,-0.00556558 -148681,1715:497:4,157.5,79.5,0,0,-0.00557551 -148682,1715:498:3,158,79.5,0,0,-0.00558789 -148683,1715:498:4,158.5,79.5,0,0,-0.00560033 -148684,1715:499:3,159,79.5,0,0,-0.00560531 -148685,1715:499:4,159.5,79.5,0,0,-0.00560656 -148686,1716:390:3,160,79.5,0,0,-0.00560405 -148687,1716:390:4,160.5,79.5,0,0,-0.0056028 -148688,1716:391:3,161,79.5,0,0,-0.00560531 -148689,1716:391:4,161.5,79.5,0,0,-0.00560903 -148690,1716:392:3,162,79.5,0,0,-0.00561527 -148691,1716:392:4,162.5,79.5,0,0,-0.00562404 -148692,1716:393:3,163,79.5,0,0,-0.00563277 -148693,1716:393:4,163.5,79.5,0,0,-0.00564405 -148694,1716:394:3,164,79.5,0,0,-0.00565282 -148695,1716:394:4,164.5,79.5,0,0,-0.00565785 -148696,1716:495:3,165,79.5,0,0,-0.00566038 -148697,1716:495:4,165.5,79.5,0,0,-0.00566165 -148698,1716:496:3,166,79.5,0,0,-0.00566165 -148699,1716:496:4,166.5,79.5,0,0,-0.00566414 -148700,1716:497:3,167,79.5,0,0,-0.00566668 -148701,1716:497:4,167.5,79.5,0,0,-0.00567045 -148702,1716:498:3,168,79.5,0,0,-0.00567171 -148703,1716:498:4,168.5,79.5,0,0,-0.00567171 -148704,1716:499:3,169,79.5,0,0,-0.00567294 -148705,1716:499:4,169.5,79.5,0,0,-0.00567294 -148706,1717:390:3,170,79.5,0,0,-0.00567294 -148707,1717:390:4,170.5,79.5,0,0,-0.00567294 -148708,1717:391:3,171,79.5,0,0,-0.00567294 -148709,1717:391:4,171.5,79.5,0,0,-0.00567421 -148710,1717:392:3,172,79.5,0,0,-0.00567421 -148711,1717:392:4,172.5,79.5,0,0,-0.00567294 -148712,1717:393:3,173,79.5,0,0,-0.00567294 -148713,1717:393:4,173.5,79.5,0,0,-0.00567294 -148714,1717:394:3,174,79.5,0,0,-0.00567421 -148715,1717:394:4,174.5,79.5,0,0,-0.00567675 -148716,1717:495:3,175,79.5,0,0,-0.00567803 -148717,1717:495:4,175.5,79.5,0,0,-0.00567926 -148718,1717:496:3,176,79.5,0,0,-0.00568053 -148719,1717:496:4,176.5,79.5,0,0,-0.00568053 -148720,1717:497:3,177,79.5,0,0,-0.00568053 -148721,1717:497:4,177.5,79.5,0,0,-0.00568053 -148722,1717:498:3,178,79.5,0,0,-0.00568053 -148723,1717:498:4,178.5,79.5,0,0,-0.00568053 -148724,1717:499:3,179,79.5,0,0,-0.00568053 -148725,1717:499:4,179.5,79.5,0,0,-0.00567926 -148726,1718:390:3,180,79.5,0,0,-0.00567926 -148727,7818:100:1,-180,80,0,0,-0.00567926 -148728,7817:209:2,-179.5,80,0,0,-0.00567926 -148729,7817:209:1,-179,80,0,0,-0.00567926 -148730,7817:208:2,-178.5,80,0,0,-0.00567926 -148731,7817:208:1,-178,80,0,0,-0.00568053 -148732,7817:207:2,-177.5,80,0,0,-0.0056818 -148733,7817:207:1,-177,80,0,0,-0.00568307 -148734,7817:206:2,-176.5,80,0,0,-0.0056843 -148735,7817:206:1,-176,80,0,0,-0.00568812 -148736,7817:205:2,-175.5,80,0,0,-0.00569318 -148737,7817:205:1,-175,80,0,0,-0.00569696 -148738,7817:104:2,-174.5,80,0,0,-0.00569824 -148739,7817:104:1,-174,80,0,0,-0.00570075 -148740,7817:103:2,-173.5,80,0,0,-0.00570202 -148741,7817:103:1,-173,80,0,0,-0.00570458 -148742,7817:102:2,-172.5,80,0,0,-0.00570709 -148743,7817:102:1,-172,80,0,0,-0.00570965 -148744,7817:101:2,-171.5,80,0,0,-0.00571216 -148745,7817:101:1,-171,80,0,0,-0.00571344 -148746,7817:100:2,-170.5,80,0,0,-0.00571092 -148747,7817:100:1,-170,80,0,0,-0.00570581 -148748,7816:209:2,-169.5,80,0,0,-0.00570202 -148749,7816:209:1,-169,80,0,0,-0.00570075 -148750,7816:208:2,-168.5,80,0,0,-0.00570075 -148751,7816:208:1,-168,80,0,0,-0.00569951 -148752,7816:207:2,-167.5,80,0,0,-0.00569824 -148753,7816:207:1,-167,80,0,0,-0.00569824 -148754,7816:206:2,-166.5,80,0,0,-0.00569569 -148755,7816:206:1,-166,80,0,0,-0.00569445 -148756,7816:205:2,-165.5,80,0,0,-0.00569318 -148757,7816:205:1,-165,80,0,0,-0.00569569 -148758,7816:104:2,-164.5,80,0,0,-0.00570075 -148759,7816:104:1,-164,80,0,0,-0.00571344 -148760,7816:103:2,-163.5,80,0,0,-0.00573254 -148761,7816:103:1,-163,80,0,0,-0.00573378 -148762,7816:102:2,-162.5,80,0,0,-0.00571092 -148763,7816:102:1,-162,80,0,0,-0.00571216 -148764,7816:101:2,-161.5,80,0,0,-0.0057236 -148765,7816:101:1,-161,80,0,0,-0.00573506 -148766,7816:100:2,-160.5,80,0,0,-0.00574016 -148767,7816:100:1,-160,80,0,0,-0.00574398 -148768,7815:209:2,-159.5,80,0,0,-0.00574783 -148769,7815:209:1,-159,80,0,0,-0.00575548 -148770,7815:208:2,-158.5,80,0,0,-0.00576188 -148771,7815:103:2,-153.5,80,0,0,-0.00573506 -148772,7815:103:1,-153,80,0,0,-0.0057236 -148773,7815:102:2,-152.5,80,0,0,-0.00571852 -148774,7815:102:1,-152,80,0,0,-0.00572108 -148775,7815:101:2,-151.5,80,0,0,-0.00572741 -148776,7815:101:1,-151,80,0,0,-0.00573763 -148777,7815:100:2,-150.5,80,0,0,-0.00574783 -148778,7815:100:1,-150,80,0,0,-0.00575294 -148779,7814:209:2,-149.5,80,0,0,-0.00576059 -148780,7814:209:1,-149,80,0,0,-0.00575677 -148781,7814:208:2,-148.5,80,0,0,-0.00575037 -148782,7814:208:1,-148,80,0,0,-0.00574144 -148783,7813:205:1,-135,80,0,0,-0.00595323 -148784,7813:104:2,-134.5,80,0,0,-0.00594266 -148785,7813:104:1,-134,80,0,0,-0.00591632 -148786,7813:103:2,-133.5,80,0,0,-0.00594 -148787,7813:103:1,-133,80,0,0,-0.00594794 -148788,7813:102:2,-132.5,80,0,0,-0.0059519 -148789,7813:102:1,-132,80,0,0,-0.0059771 -148790,7813:101:2,-131.5,80,0,0,-0.00601174 -148791,7813:101:1,-131,80,0,0,-0.00609109 -148792,7808:100:1,-80,80,0,0,-0.00591892 -148793,7807:209:1,-79,80,0,0,-0.00597179 -148794,7807:208:2,-78.5,80,0,0,-0.00597442 -148795,7807:101:1,-71,80,0,0,-0.00580558 -148796,7807:100:2,-70.5,80,0,0,-0.00580818 -148797,7807:100:1,-70,80,0,0,-0.00580302 -148798,7806:209:2,-69.5,80,0,0,-0.00579916 -148799,7806:209:1,-69,80,0,0,-0.00579787 -148800,7806:208:2,-68.5,80,0,0,-0.00579916 -148801,7806:208:1,-68,80,0,0,-0.00580042 -148802,7806:207:2,-67.5,80,0,0,-0.00579787 -148803,7806:207:1,-67,80,0,0,-0.00579527 -148804,7806:206:2,-66.5,80,0,0,-0.00579142 -148805,7806:206:1,-66,80,0,0,-0.00578757 -148806,7806:205:2,-65.5,80,0,0,-0.00578243 -148807,7806:205:1,-65,80,0,0,-0.00577855 -148808,7806:104:2,-64.5,80,0,0,-0.00577213 -148809,7806:104:1,-64,80,0,0,-0.00576575 -148810,7806:103:2,-63.5,80,0,0,-0.00575677 -148811,7806:103:1,-63,80,0,0,-0.00574912 -148812,7806:102:2,-62.5,80,0,0,-0.00574273 -148813,7806:102:1,-62,80,0,0,-0.00573378 -148814,7806:101:2,-61.5,80,0,0,-0.0057236 -148815,7806:101:1,-61,80,0,0,-0.00571472 -148816,7806:100:2,-60.5,80,0,0,-0.00570709 -148817,7806:100:1,-60,80,0,0,-0.00570581 -148818,7805:209:2,-59.5,80,0,0,-0.00570709 -148819,7805:209:1,-59,80,0,0,-0.00570837 -148820,7805:208:2,-58.5,80,0,0,-0.00570458 -148821,7805:208:1,-58,80,0,0,-0.00569951 -148822,7805:207:2,-57.5,80,0,0,-0.00569696 -148823,7805:205:1,-55,80,0,0,-0.00573378 -148824,7805:104:1,-54,80,0,0,-0.00573506 -148825,7805:103:2,-53.5,80,0,0,-0.00573506 -148826,7805:103:1,-53,80,0,0,-0.00573125 -148827,7805:102:2,-52.5,80,0,0,-0.0057236 -148828,7805:102:1,-52,80,0,0,-0.00571344 -148829,7805:101:2,-51.5,80,0,0,-0.00570709 -148830,7804:209:1,-49,80,0,0,-0.00570709 -148831,7804:208:2,-48.5,80,0,0,-0.00570965 -148832,7804:208:1,-48,80,0,0,-0.00571344 -148833,7804:207:2,-47.5,80,0,0,-0.0057198 -148834,7804:207:1,-47,80,0,0,-0.00573125 -148835,7804:206:2,-46.5,80,0,0,-0.00573254 -148836,7804:206:1,-46,80,0,0,-0.00573378 -148837,7804:205:2,-45.5,80,0,0,-0.00573378 -148838,7804:205:1,-45,80,0,0,-0.00573378 -148839,7804:104:2,-44.5,80,0,0,-0.00573125 -148840,7804:104:1,-44,80,0,0,-0.00572616 -148841,7804:103:2,-43.5,80,0,0,-0.00572108 -148842,7804:103:1,-43,80,0,0,-0.00571472 -148843,7804:102:2,-42.5,80,0,0,-0.00570581 -148844,7804:102:1,-42,80,0,0,-0.00570075 -148845,7804:101:2,-41.5,80,0,0,-0.00569569 -148846,7804:101:1,-41,80,0,0,-0.00568685 -148847,7804:100:2,-40.5,80,0,0,-0.0056843 -148848,7804:100:1,-40,80,0,0,-0.0056843 -148849,7803:209:2,-39.5,80,0,0,-0.00568558 -148850,7803:209:1,-39,80,0,0,-0.00568685 -148851,7803:208:2,-38.5,80,0,0,-0.00568685 -148852,7803:208:1,-38,80,0,0,-0.00568558 -148853,7803:207:2,-37.5,80,0,0,-0.00568558 -148854,7803:207:1,-37,80,0,0,-0.00568558 -148855,7803:206:2,-36.5,80,0,0,-0.00568558 -148856,7803:206:1,-36,80,0,0,-0.00568558 -148857,7803:205:2,-35.5,80,0,0,-0.00568558 -148858,7803:205:1,-35,80,0,0,-0.0056843 -148859,7803:104:2,-34.5,80,0,0,-0.0056843 -148860,7803:104:1,-34,80,0,0,-0.0056818 -148861,7803:103:2,-33.5,80,0,0,-0.0056818 -148862,7803:103:1,-33,80,0,0,-0.0056818 -148863,7803:102:2,-32.5,80,0,0,-0.00568307 -148864,7803:102:1,-32,80,0,0,-0.00568558 -148865,7803:101:2,-31.5,80,0,0,-0.00568685 -148866,7803:101:1,-31,80,0,0,-0.00568558 -148867,7803:100:2,-30.5,80,0,0,-0.0056843 -148868,7803:100:1,-30,80,0,0,-0.00568307 -148869,7802:209:2,-29.5,80,0,0,-0.0056818 -148870,7802:209:1,-29,80,0,0,-0.0056818 -148871,7802:208:2,-28.5,80,0,0,-0.0056818 -148872,7802:208:1,-28,80,0,0,-0.0056818 -148873,7802:207:2,-27.5,80,0,0,-0.0056818 -148874,7802:207:1,-27,80,0,0,-0.0056843 -148875,7802:206:2,-26.5,80,0,0,-0.0056843 -148876,7802:206:1,-26,80,0,0,-0.0056843 -148877,7802:205:2,-25.5,80,0,0,-0.0056843 -148878,7802:205:1,-25,80,0,0,-0.0056843 -148879,7802:104:2,-24.5,80,0,0,-0.0056843 -148880,7802:104:1,-24,80,0,0,-0.0056818 -148881,7802:103:2,-23.5,80,0,0,-0.00567803 -148882,7802:103:1,-23,80,0,0,-0.00567294 -148883,7802:102:2,-22.5,80,0,0,-0.00566918 -148884,7802:102:1,-22,80,0,0,-0.00566414 -148885,7802:101:2,-21.5,80,0,0,-0.00565911 -148886,7802:101:1,-21,80,0,0,-0.00565535 -148887,7802:100:2,-20.5,80,0,0,-0.00564907 -148888,7802:100:1,-20,80,0,0,-0.00564279 -148889,7801:209:2,-19.5,80,0,0,-0.0056403 -148890,7801:209:1,-19,80,0,0,-0.00563904 -148891,7801:208:2,-18.5,80,0,0,-0.00563277 -148892,7801:208:1,-18,80,0,0,-0.00562152 -148893,7801:207:2,-17.5,80,0,0,-0.00561402 -148894,7801:207:1,-17,80,0,0,-0.00560656 -148895,7801:206:2,-16.5,80,0,0,-0.00559536 -148896,7801:206:1,-16,80,0,0,-0.00558914 -148897,7801:205:2,-15.5,80,0,0,-0.00558047 -148898,7801:205:1,-15,80,0,0,-0.00556188 -148899,7801:104:2,-14.5,80,0,0,-0.00554092 -148900,7801:104:1,-14,80,0,0,-0.00552617 -148901,7801:103:2,-13.5,80,0,0,-0.00552003 -148902,7801:103:1,-13,80,0,0,-0.0055139 -148903,7801:102:2,-12.5,80,0,0,-0.00551024 -148904,7801:102:1,-12,80,0,0,-0.00550658 -148905,7801:101:2,-11.5,80,0,0,-0.00550534 -148906,7801:101:1,-11,80,0,0,-0.00550658 -148907,7801:100:2,-10.5,80,0,0,-0.00550777 -148908,7801:100:1,-10,80,0,0,-0.00551147 -148909,7800:209:2,-9.5,80,0,0,-0.0055188 -148910,7800:209:1,-9,80,0,0,-0.00552985 -148911,7800:208:2,-8.5,80,0,0,-0.00554216 -148912,7800:208:1,-8,80,0,0,-0.00555943 -148913,7800:207:2,-7.5,80,0,0,-0.00560158 -148914,7800:207:1,-7,80,0,0,-0.00573888 -148915,7800:206:2,-6.5,80,0,0,-0.00587437 -148916,7800:206:1,-6,80,0,0,-0.0059506 -148917,7800:205:2,-5.5,80,0,0,-0.00599574 -148918,7800:205:1,-5,80,0,0,-0.00606137 -148919,7800:104:2,-4.5,80,0,0,-0.00608432 -148920,7800:104:1,-4,80,0,0,-0.00605599 -148921,7800:103:2,-3.5,80,0,0,-0.00611008 -148922,7800:103:1,-3,80,0,0,-0.00609245 -148923,7800:102:2,-2.5,80,0,0,-0.00598241 -148924,7800:101:2,-1.5,80,0,0,-0.0059771 -148925,7800:101:1,-1,80,0,0,-0.00589005 -148926,7800:100:2,-0.5,80,0,0,-0.00580302 -148927,1800:100:2,0,80,0,0,-0.00581851 -148928,1800:100:2,0.5,80,0,0,-0.00580558 -148929,1800:101:1,1,80,0,0,-0.00582885 -148930,1800:101:2,1.5,80,0,0,-0.00584053 -148931,1800:102:1,2,80,0,0,-0.00580432 -148932,1800:102:2,2.5,80,0,0,-0.00574655 -148933,1800:103:1,3,80,0,0,-0.00572108 -148934,1800:103:2,3.5,80,0,0,-0.00575037 -148935,1800:104:1,4,80,0,0,-0.00584833 -148936,1800:104:2,4.5,80,0,0,-0.00594532 -148937,1800:205:1,5,80,0,0,-0.00623081 -148938,1800:205:2,5.5,80,0,0,-0.00674561 -148939,1800:206:1,6,80,0,0,-0.00691424 -148940,1800:206:2,6.5,80,0,0,-0.0072064 -148941,1800:207:1,7,80,0,0,-0.00765102 -148942,1800:207:2,7.5,80,0,0,-0.00686825 -148943,1800:209:1,9,80,0,0,-0.00613051 -148944,1800:209:2,9.5,80,0,0,-0.00615097 -148945,1801:100:1,10,80,0,0,-0.00584441 -148946,1801:100:2,10.5,80,0,0,-0.00569569 -148947,1801:101:1,11,80,0,0,-0.00566414 -148948,1801:101:2,11.5,80,0,0,-0.00566668 -148949,1801:102:1,12,80,0,0,-0.00565911 -148950,1801:102:2,12.5,80,0,0,-0.00566414 -148951,1801:103:1,13,80,0,0,-0.00567171 -148952,1801:103:2,13.5,80,0,0,-0.00568558 -148953,1801:104:1,14,80,0,0,-0.00570075 -148954,1801:104:2,14.5,80,0,0,-0.00574016 -148955,1801:205:1,15,80,0,0,-0.00579916 -148956,1801:205:2,15.5,80,0,0,-0.00584833 -148957,1801:206:1,16,80,0,0,-0.00586653 -148958,1801:206:2,16.5,80,0,0,-0.00580948 -148959,1801:207:1,17,80,0,0,-0.00588745 -148960,1801:207:2,17.5,80,0,0,-0.00589401 -148961,1801:208:1,18,80,0,0,-0.00585874 -148962,1801:208:2,18.5,80,0,0,-0.00569824 -148963,1802:205:1,25,80,0,0,-0.00611282 -148964,1802:205:2,25.5,80,0,0,-0.00619351 -148965,1812:100:1,120,80,0,0,-0.00829338 -148966,1812:100:2,120.5,80,0,0,-0.00829338 -148967,1812:101:1,121,80,0,0,-0.00829157 -148968,1812:209:2,129.5,80,0,0,-0.00747094 -148969,1813:100:1,130,80,0,0,-0.00741956 -148970,1813:101:1,131,80,0,0,-0.00686517 -148971,1813:101:2,131.5,80,0,0,-0.00658989 -148972,1813:102:1,132,80,0,0,-0.00634261 -148973,1813:102:2,132.5,80,0,0,-0.00634682 -148974,1813:103:1,133,80,0,0,-0.00639073 -148975,1813:103:2,133.5,80,0,0,-0.00640354 -148976,1813:104:1,134,80,0,0,-0.00632288 -148977,1813:104:2,134.5,80,0,0,-0.00617015 -148978,1813:205:1,135,80,0,0,-0.00599972 -148979,1813:205:2,135.5,80,0,0,-0.00580818 -148980,1813:206:1,136,80,0,0,-0.0056843 -148981,1813:206:2,136.5,80,0,0,-0.00565033 -148982,1813:207:1,137,80,0,0,-0.0056403 -148983,1813:207:2,137.5,80,0,0,-0.00562903 -148984,1813:208:1,138,80,0,0,-0.00562152 -148985,1813:208:2,138.5,80,0,0,-0.00561527 -148986,1813:209:1,139,80,0,0,-0.00561527 -148987,1813:209:2,139.5,80,0,0,-0.00561778 -148988,1814:100:1,140,80,0,0,-0.00558168 -148989,1814:100:2,140.5,80,0,0,-0.0055545 -148990,1814:101:1,141,80,0,0,-0.00559908 -148991,1814:101:2,141.5,80,0,0,-0.00563904 -148992,1814:102:1,142,80,0,0,-0.00555819 -148993,1814:102:2,142.5,80,0,0,-0.00549677 -148994,1814:103:1,143,80,0,0,-0.005509 -148995,1814:103:2,143.5,80,0,0,-0.00550777 -148996,1814:104:1,144,80,0,0,-0.00555201 -148997,1814:104:2,144.5,80,0,0,-0.00561653 -148998,1814:205:1,145,80,0,0,-0.00561653 -148999,1814:205:2,145.5,80,0,0,-0.00563652 -149000,1814:206:1,146,80,0,0,-0.00565033 -149001,1814:206:2,146.5,80,0,0,-0.00568812 -149002,1814:207:1,147,80,0,0,-0.00569951 -149003,1814:207:2,147.5,80,0,0,-0.00569569 -149004,1814:208:1,148,80,0,0,-0.0056919 -149005,1814:208:2,148.5,80,0,0,-0.0056843 -149006,1814:209:1,149,80,0,0,-0.00568307 -149007,1814:209:2,149.5,80,0,0,-0.00567045 -149008,1815:100:1,150,80,0,0,-0.00564781 -149009,1815:100:2,150.5,80,0,0,-0.00563404 -149010,1815:101:1,151,80,0,0,-0.00554953 -149011,1815:101:2,151.5,80,0,0,-0.00552127 -149012,1815:102:1,152,80,0,0,-0.00553476 -149013,1815:102:2,152.5,80,0,0,-0.00554584 -149014,1815:103:1,153,80,0,0,-0.00554832 -149015,1815:103:2,153.5,80,0,0,-0.00555077 -149016,1815:104:1,154,80,0,0,-0.00555077 -149017,1815:104:2,154.5,80,0,0,-0.00554953 -149018,1815:205:1,155,80,0,0,-0.00554832 -149019,1815:205:2,155.5,80,0,0,-0.00554953 -149020,1815:206:1,156,80,0,0,-0.0055545 -149021,1815:206:2,156.5,80,0,0,-0.00556188 -149022,1815:207:1,157,80,0,0,-0.00556932 -149023,1815:207:2,157.5,80,0,0,-0.00557551 -149024,1815:208:1,158,80,0,0,-0.00558543 -149025,1815:208:2,158.5,80,0,0,-0.0055941 -149026,1815:209:1,159,80,0,0,-0.00560033 -149027,1815:209:2,159.5,80,0,0,-0.00560158 -149028,1816:100:1,160,80,0,0,-0.00560033 -149029,1816:100:2,160.5,80,0,0,-0.00559908 -149030,1816:101:1,161,80,0,0,-0.00560158 -149031,1816:101:2,161.5,80,0,0,-0.00560531 -149032,1816:102:1,162,80,0,0,-0.00561029 -149033,1816:102:2,162.5,80,0,0,-0.00561778 -149034,1816:103:1,163,80,0,0,-0.00562526 -149035,1816:103:2,163.5,80,0,0,-0.00563526 -149036,1816:104:1,164,80,0,0,-0.00564532 -149037,1816:104:2,164.5,80,0,0,-0.00565282 -149038,1816:205:1,165,80,0,0,-0.00565785 -149039,1816:205:2,165.5,80,0,0,-0.00565911 -149040,1816:206:1,166,80,0,0,-0.00566038 -149041,1816:206:2,166.5,80,0,0,-0.00566165 -149042,1816:207:1,167,80,0,0,-0.00566541 -149043,1816:207:2,167.5,80,0,0,-0.00566918 -149044,1816:208:1,168,80,0,0,-0.00567171 -149045,1816:208:2,168.5,80,0,0,-0.00567294 -149046,1816:209:1,169,80,0,0,-0.00567294 -149047,1816:209:2,169.5,80,0,0,-0.00567421 -149048,1817:100:1,170,80,0,0,-0.00567421 -149049,1817:100:2,170.5,80,0,0,-0.00567548 -149050,1817:101:1,171,80,0,0,-0.00567675 -149051,1817:101:2,171.5,80,0,0,-0.00567675 -149052,1817:102:1,172,80,0,0,-0.00567675 -149053,1817:102:2,172.5,80,0,0,-0.00567421 -149054,1817:103:1,173,80,0,0,-0.00567421 -149055,1817:103:2,173.5,80,0,0,-0.00567548 -149056,1817:104:1,174,80,0,0,-0.00567548 -149057,1817:104:2,174.5,80,0,0,-0.00567675 -149058,1817:205:1,175,80,0,0,-0.00567803 -149059,1817:205:2,175.5,80,0,0,-0.00567926 -149060,1817:206:1,176,80,0,0,-0.00567926 -149061,1817:206:2,176.5,80,0,0,-0.00568053 -149062,1817:207:1,177,80,0,0,-0.00568053 -149063,1817:207:2,177.5,80,0,0,-0.0056818 -149064,1817:208:1,178,80,0,0,-0.00568053 -149065,1817:208:2,178.5,80,0,0,-0.00568053 -149066,1817:209:1,179,80,0,0,-0.00568053 -149067,1817:209:2,179.5,80,0,0,-0.00567926 -149068,1818:100:1,180,80,0,0,-0.00567926 -149069,7818:100:3,-180,80.5,0,0,-0.00567926 -149070,7817:209:4,-179.5,80.5,0,0,-0.00567926 -149071,7817:209:3,-179,80.5,0,0,-0.00567803 -149072,7817:208:4,-178.5,80.5,0,0,-0.00567803 -149073,7817:208:3,-178,80.5,0,0,-0.00567803 -149074,7817:207:4,-177.5,80.5,0,0,-0.00567926 -149075,7817:207:3,-177,80.5,0,0,-0.0056818 -149076,7817:206:4,-176.5,80.5,0,0,-0.00568558 -149077,7817:206:3,-176,80.5,0,0,-0.00569063 -149078,7817:205:4,-175.5,80.5,0,0,-0.00569569 -149079,7817:205:3,-175,80.5,0,0,-0.00569824 -149080,7817:104:4,-174.5,80.5,0,0,-0.00569951 -149081,7817:104:3,-174,80.5,0,0,-0.00570075 -149082,7817:103:4,-173.5,80.5,0,0,-0.00570202 -149083,7817:103:3,-173,80.5,0,0,-0.00570458 -149084,7817:102:4,-172.5,80.5,0,0,-0.00570581 -149085,7817:102:3,-172,80.5,0,0,-0.00570837 -149086,7817:101:4,-171.5,80.5,0,0,-0.00570965 -149087,7817:101:3,-171,80.5,0,0,-0.00570965 -149088,7817:100:4,-170.5,80.5,0,0,-0.00570709 -149089,7817:100:3,-170,80.5,0,0,-0.0057033 -149090,7816:209:4,-169.5,80.5,0,0,-0.00570075 -149091,7816:209:3,-169,80.5,0,0,-0.00570202 -149092,7816:208:4,-168.5,80.5,0,0,-0.00570075 -149093,7816:208:3,-168,80.5,0,0,-0.00569824 -149094,7816:207:4,-167.5,80.5,0,0,-0.00569824 -149095,7816:207:3,-167,80.5,0,0,-0.00569824 -149096,7816:206:4,-166.5,80.5,0,0,-0.00569569 -149097,7816:206:3,-166,80.5,0,0,-0.00569445 -149098,7816:205:4,-165.5,80.5,0,0,-0.00569951 -149099,7816:205:3,-165,80.5,0,0,-0.00570202 -149100,7816:104:4,-164.5,80.5,0,0,-0.00570202 -149101,7816:103:4,-163.5,80.5,0,0,-0.00573635 -149102,7816:103:3,-163,80.5,0,0,-0.00572616 -149103,7816:101:3,-161,80.5,0,0,-0.00574016 -149104,7816:100:4,-160.5,80.5,0,0,-0.00574912 -149105,7816:100:3,-160,80.5,0,0,-0.00575165 -149106,7815:209:4,-159.5,80.5,0,0,-0.00575806 -149107,7815:209:3,-159,80.5,0,0,-0.00576575 -149108,7815:208:4,-158.5,80.5,0,0,-0.00577213 -149109,7815:208:3,-158,80.5,0,0,-0.00577342 -149110,7815:207:4,-157.5,80.5,0,0,-0.00577213 -149111,7815:207:3,-157,80.5,0,0,-0.00577471 -149112,7815:206:4,-156.5,80.5,0,0,-0.005767 -149113,7815:103:4,-153.5,80.5,0,0,-0.00571724 -149114,7815:103:3,-153,80.5,0,0,-0.00571344 -149115,7815:102:4,-152.5,80.5,0,0,-0.00571216 -149116,7815:102:3,-152,80.5,0,0,-0.00571724 -149117,7815:101:4,-151.5,80.5,0,0,-0.00572488 -149118,7815:101:3,-151,80.5,0,0,-0.00573635 -149119,7815:100:4,-150.5,80.5,0,0,-0.00574783 -149120,7815:100:3,-150,80.5,0,0,-0.00575677 -149121,7814:209:4,-149.5,80.5,0,0,-0.00576059 -149122,7813:205:4,-135.5,80.5,0,0,-0.00594399 -149123,7813:205:3,-135,80.5,0,0,-0.00595589 -149124,7813:104:4,-134.5,80.5,0,0,-0.00593738 -149125,7813:104:3,-134,80.5,0,0,-0.00591106 -149126,7813:103:3,-133,80.5,0,0,-0.00598375 -149127,7813:102:4,-132.5,80.5,0,0,-0.00598241 -149128,7813:102:3,-132,80.5,0,0,-0.00597313 -149129,7813:101:4,-131.5,80.5,0,0,-0.00600241 -149130,7813:101:3,-131,80.5,0,0,-0.00603986 -149131,7813:100:4,-130.5,80.5,0,0,-0.00606544 -149132,7813:100:3,-130,80.5,0,0,-0.00612095 -149133,7812:208:3,-128,80.5,0,0,-0.00618524 -149134,7812:207:4,-127.5,80.5,0,0,-0.0061949 -149135,7807:209:4,-79.5,80.5,0,0,-0.00591367 -149136,7807:209:3,-79,80.5,0,0,-0.00594661 -149137,7807:208:4,-78.5,80.5,0,0,-0.00597045 -149138,7807:208:3,-78,80.5,0,0,-0.00595985 -149139,7807:207:4,-77.5,80.5,0,0,-0.00594661 -149140,7807:100:4,-70.5,80.5,0,0,-0.00577601 -149141,7807:100:3,-70,80.5,0,0,-0.00577726 -149142,7806:209:3,-69,80.5,0,0,-0.00578243 -149143,7806:208:4,-68.5,80.5,0,0,-0.00579142 -149144,7806:208:3,-68,80.5,0,0,-0.00580042 -149145,7806:207:4,-67.5,80.5,0,0,-0.00580302 -149146,7806:207:3,-67,80.5,0,0,-0.00580172 -149147,7806:206:4,-66.5,80.5,0,0,-0.00579527 -149148,7806:206:3,-66,80.5,0,0,-0.00578883 -149149,7806:205:4,-65.5,80.5,0,0,-0.00578114 -149150,7806:205:3,-65,80.5,0,0,-0.00577342 -149151,7806:104:4,-64.5,80.5,0,0,-0.00576446 -149152,7806:104:3,-64,80.5,0,0,-0.00575677 -149153,7806:103:4,-63.5,80.5,0,0,-0.00575165 -149154,7806:103:3,-63,80.5,0,0,-0.00574526 -149155,7806:102:4,-62.5,80.5,0,0,-0.00573888 -149156,7806:102:3,-62,80.5,0,0,-0.00573125 -149157,7806:101:4,-61.5,80.5,0,0,-0.00572232 -149158,7806:101:3,-61,80.5,0,0,-0.00571216 -149159,7806:100:4,-60.5,80.5,0,0,-0.00570458 -149160,7806:100:3,-60,80.5,0,0,-0.00570075 -149161,7805:209:4,-59.5,80.5,0,0,-0.00569951 -149162,7805:209:3,-59,80.5,0,0,-0.00569824 -149163,7805:208:4,-58.5,80.5,0,0,-0.00569569 -149164,7805:208:3,-58,80.5,0,0,-0.00569569 -149165,7805:207:4,-57.5,80.5,0,0,-0.00569445 -149166,7805:207:3,-57,80.5,0,0,-0.00568685 -149167,7805:206:3,-56,80.5,0,0,-0.00571344 -149168,7805:205:4,-55.5,80.5,0,0,-0.0057198 -149169,7805:205:3,-55,80.5,0,0,-0.00572741 -149170,7805:104:4,-54.5,80.5,0,0,-0.00572997 -149171,7805:104:3,-54,80.5,0,0,-0.00572869 -149172,7805:103:4,-53.5,80.5,0,0,-0.00572616 -149173,7805:103:3,-53,80.5,0,0,-0.00572232 -149174,7805:102:4,-52.5,80.5,0,0,-0.00571724 -149175,7805:102:3,-52,80.5,0,0,-0.005716 -149176,7805:101:3,-51,80.5,0,0,-0.00570458 -149177,7805:100:4,-50.5,80.5,0,0,-0.0057033 -149178,7804:208:4,-48.5,80.5,0,0,-0.00570581 -149179,7804:208:3,-48,80.5,0,0,-0.00570965 -149180,7804:207:4,-47.5,80.5,0,0,-0.0057198 -149181,7804:207:3,-47,80.5,0,0,-0.00573506 -149182,7804:206:4,-46.5,80.5,0,0,-0.00573763 -149183,7804:205:4,-45.5,80.5,0,0,-0.00573506 -149184,7804:205:3,-45,80.5,0,0,-0.00573506 -149185,7804:104:4,-44.5,80.5,0,0,-0.00572741 -149186,7804:104:3,-44,80.5,0,0,-0.00571852 -149187,7804:103:4,-43.5,80.5,0,0,-0.00570709 -149188,7804:103:3,-43,80.5,0,0,-0.00569696 -149189,7804:102:4,-42.5,80.5,0,0,-0.00568812 -149190,7804:102:3,-42,80.5,0,0,-0.00568558 -149191,7804:101:4,-41.5,80.5,0,0,-0.00568307 -149192,7804:101:3,-41,80.5,0,0,-0.00568307 -149193,7804:100:4,-40.5,80.5,0,0,-0.00568558 -149194,7804:100:3,-40,80.5,0,0,-0.00568936 -149195,7803:209:4,-39.5,80.5,0,0,-0.00568936 -149196,7803:209:3,-39,80.5,0,0,-0.00568936 -149197,7803:208:4,-38.5,80.5,0,0,-0.00568936 -149198,7803:208:3,-38,80.5,0,0,-0.00568812 -149199,7803:207:4,-37.5,80.5,0,0,-0.00568812 -149200,7803:207:3,-37,80.5,0,0,-0.00568685 -149201,7803:206:4,-36.5,80.5,0,0,-0.00568812 -149202,7803:206:3,-36,80.5,0,0,-0.00568812 -149203,7803:205:4,-35.5,80.5,0,0,-0.00568685 -149204,7803:205:3,-35,80.5,0,0,-0.00568685 -149205,7803:104:4,-34.5,80.5,0,0,-0.00568558 -149206,7803:104:3,-34,80.5,0,0,-0.0056843 -149207,7803:103:4,-33.5,80.5,0,0,-0.0056843 -149208,7803:103:3,-33,80.5,0,0,-0.0056843 -149209,7803:102:4,-32.5,80.5,0,0,-0.0056843 -149210,7803:102:3,-32,80.5,0,0,-0.00568685 -149211,7803:101:4,-31.5,80.5,0,0,-0.00568812 -149212,7803:101:3,-31,80.5,0,0,-0.00568685 -149213,7803:100:4,-30.5,80.5,0,0,-0.0056843 -149214,7803:100:3,-30,80.5,0,0,-0.00568307 -149215,7802:209:4,-29.5,80.5,0,0,-0.0056818 -149216,7802:209:3,-29,80.5,0,0,-0.0056818 -149217,7802:208:4,-28.5,80.5,0,0,-0.0056818 -149218,7802:208:3,-28,80.5,0,0,-0.0056818 -149219,7802:207:4,-27.5,80.5,0,0,-0.00568307 -149220,7802:207:3,-27,80.5,0,0,-0.00568307 -149221,7802:206:4,-26.5,80.5,0,0,-0.0056843 -149222,7802:206:3,-26,80.5,0,0,-0.0056843 -149223,7802:205:4,-25.5,80.5,0,0,-0.00568558 -149224,7802:205:3,-25,80.5,0,0,-0.00568685 -149225,7802:104:4,-24.5,80.5,0,0,-0.00568558 -149226,7802:104:3,-24,80.5,0,0,-0.0056818 -149227,7802:103:4,-23.5,80.5,0,0,-0.00567803 -149228,7802:103:3,-23,80.5,0,0,-0.00567294 -149229,7802:102:4,-22.5,80.5,0,0,-0.00566918 -149230,7802:102:3,-22,80.5,0,0,-0.00566541 -149231,7802:101:4,-21.5,80.5,0,0,-0.00566165 -149232,7802:101:3,-21,80.5,0,0,-0.00565658 -149233,7802:100:4,-20.5,80.5,0,0,-0.00565156 -149234,7802:100:3,-20,80.5,0,0,-0.00564781 -149235,7801:209:4,-19.5,80.5,0,0,-0.00564781 -149236,7801:209:3,-19,80.5,0,0,-0.00564532 -149237,7801:208:4,-18.5,80.5,0,0,-0.00563904 -149238,7801:208:3,-18,80.5,0,0,-0.00562903 -149239,7801:207:4,-17.5,80.5,0,0,-0.00561778 -149240,7801:207:3,-17,80.5,0,0,-0.00561029 -149241,7801:206:4,-16.5,80.5,0,0,-0.0056028 -149242,7801:206:3,-16,80.5,0,0,-0.0055941 -149243,7801:205:4,-15.5,80.5,0,0,-0.00558047 -149244,7801:205:3,-15,80.5,0,0,-0.00555694 -149245,7801:104:4,-14.5,80.5,0,0,-0.00553968 -149246,7801:104:3,-14,80.5,0,0,-0.00552985 -149247,7801:103:4,-13.5,80.5,0,0,-0.0055237 -149248,7801:103:3,-13,80.5,0,0,-0.0055188 -149249,7801:102:4,-12.5,80.5,0,0,-0.0055139 -149250,7801:102:3,-12,80.5,0,0,-0.00551147 -149251,7801:101:4,-11.5,80.5,0,0,-0.005509 -149252,7801:101:3,-11,80.5,0,0,-0.00550777 -149253,7801:100:4,-10.5,80.5,0,0,-0.00550777 -149254,7801:100:3,-10,80.5,0,0,-0.005509 -149255,7800:209:4,-9.5,80.5,0,0,-0.00551147 -149256,7800:209:3,-9,80.5,0,0,-0.0055188 -149257,7800:208:4,-8.5,80.5,0,0,-0.00552985 -149258,7800:208:3,-8,80.5,0,0,-0.0055446 -149259,7800:207:4,-7.5,80.5,0,0,-0.00558418 -149260,7800:207:3,-7,80.5,0,0,-0.00564405 -149261,7800:206:4,-6.5,80.5,0,0,-0.00572869 -149262,7800:206:3,-6,80.5,0,0,-0.00581334 -149263,7800:205:4,-5.5,80.5,0,0,-0.00589005 -149264,7800:205:3,-5,80.5,0,0,-0.00599972 -149265,7800:104:4,-4.5,80.5,0,0,-0.00604122 -149266,7800:103:4,-3.5,80.5,0,0,-0.00606948 -149267,7800:103:3,-3,80.5,0,0,-0.00609787 -149268,7800:102:4,-2.5,80.5,0,0,-0.00603986 -149269,7800:101:4,-1.5,80.5,0,0,-0.00587959 -149270,7800:101:3,-1,80.5,0,0,-0.00595589 -149271,7800:100:4,-0.5,80.5,0,0,-0.00587959 -149272,1800:100:4,0,80.5,0,0,-0.0058835 -149273,1800:100:4,0.5,80.5,0,0,-0.00589005 -149274,1800:101:3,1,80.5,0,0,-0.00588482 -149275,1800:101:4,1.5,80.5,0,0,-0.00586784 -149276,1800:102:3,2,80.5,0,0,-0.00583665 -149277,1800:102:4,2.5,80.5,0,0,-0.00576059 -149278,1800:103:3,3,80.5,0,0,-0.00570202 -149279,1800:103:4,3.5,80.5,0,0,-0.005716 -149280,1800:104:3,4,80.5,0,0,-0.00577601 -149281,1800:104:4,4.5,80.5,0,0,-0.00581074 -149282,1800:205:3,5,80.5,0,0,-0.00594927 -149283,1800:205:4,5.5,80.5,0,0,-0.00645068 -149284,1800:206:3,6,80.5,0,0,-0.00672614 -149285,1800:206:4,6.5,80.5,0,0,-0.00753276 -149286,1800:209:3,9,80.5,0,0,-0.00621557 -149287,1800:209:4,9.5,80.5,0,0,-0.00588614 -149288,1801:100:3,10,80.5,0,0,-0.00572616 -149289,1801:100:4,10.5,80.5,0,0,-0.00568812 -149290,1801:101:3,11,80.5,0,0,-0.00568936 -149291,1801:101:4,11.5,80.5,0,0,-0.00576575 -149292,1801:102:3,12,80.5,0,0,-0.00582111 -149293,1801:102:4,12.5,80.5,0,0,-0.00585611 -149294,1801:103:3,13,80.5,0,0,-0.00588614 -149295,1801:103:4,13.5,80.5,0,0,-0.00592684 -149296,1801:104:3,14,80.5,0,0,-0.0059519 -149297,1801:104:4,14.5,80.5,0,0,-0.00596782 -149298,1801:205:3,15,80.5,0,0,-0.00602244 -149299,1801:205:4,15.5,80.5,0,0,-0.00613459 -149300,1801:206:3,16,80.5,0,0,-0.00600775 -149301,1801:206:4,16.5,80.5,0,0,-0.00585222 -149302,1801:207:3,17,80.5,0,0,-0.00574655 -149303,1801:207:4,17.5,80.5,0,0,-0.00569951 -149304,1812:101:3,121,80.5,0,0,-0.00828971 -149305,1812:101:4,121.5,80.5,0,0,-0.00828971 -149306,1812:206:4,126.5,80.5,0,0,-0.0075344 -149307,1813:100:3,130,80.5,0,0,-0.00748425 -149308,1813:100:4,130.5,80.5,0,0,-0.00741956 -149309,1813:101:3,131,80.5,0,0,-0.00712823 -149310,1813:101:4,131.5,80.5,0,0,-0.00666062 -149311,1813:102:3,132,80.5,0,0,-0.00633413 -149312,1813:102:4,132.5,80.5,0,0,-0.00631165 -149313,1813:103:3,133,80.5,0,0,-0.00643494 -149314,1813:103:4,133.5,80.5,0,0,-0.00647371 -149315,1813:104:3,134,80.5,0,0,-0.00630604 -149316,1813:104:4,134.5,80.5,0,0,-0.00610329 -149317,1813:205:3,135,80.5,0,0,-0.00594399 -149318,1813:205:4,135.5,80.5,0,0,-0.00580042 -149319,1813:206:3,136,80.5,0,0,-0.00571472 -149320,1813:206:4,136.5,80.5,0,0,-0.00567675 -149321,1813:207:3,137,80.5,0,0,-0.00565282 -149322,1813:207:4,137.5,80.5,0,0,-0.00569569 -149323,1813:208:3,138,80.5,0,0,-0.00570709 -149324,1813:208:4,138.5,80.5,0,0,-0.00570458 -149325,1813:209:3,139,80.5,0,0,-0.00570075 -149326,1813:209:4,139.5,80.5,0,0,-0.00569318 -149327,1814:100:3,140,80.5,0,0,-0.0056843 -149328,1814:100:4,140.5,80.5,0,0,-0.0056403 -149329,1814:101:3,141,80.5,0,0,-0.00566414 -149330,1814:101:4,141.5,80.5,0,0,-0.00566288 -149331,1814:102:3,142,80.5,0,0,-0.00563404 -149332,1814:102:4,142.5,80.5,0,0,-0.00554708 -149333,1814:103:3,143,80.5,0,0,-0.00556313 -149334,1814:103:4,143.5,80.5,0,0,-0.00552861 -149335,1814:104:3,144,80.5,0,0,-0.00551266 -149336,1814:104:4,144.5,80.5,0,0,-0.00551147 -149337,1814:205:3,145,80.5,0,0,-0.00551266 -149338,1814:205:4,145.5,80.5,0,0,-0.00553476 -149339,1814:206:3,146,80.5,0,0,-0.00560158 -149340,1814:206:4,146.5,80.5,0,0,-0.00565911 -149341,1814:207:3,147,80.5,0,0,-0.00570458 -149342,1814:207:4,147.5,80.5,0,0,-0.00573254 -149343,1814:208:3,148,80.5,0,0,-0.00573888 -149344,1814:208:4,148.5,80.5,0,0,-0.00573125 -149345,1814:209:3,149,80.5,0,0,-0.005716 -149346,1814:209:4,149.5,80.5,0,0,-0.00570202 -149347,1815:100:3,150,80.5,0,0,-0.00568307 -149348,1815:100:4,150.5,80.5,0,0,-0.00562651 -149349,1815:101:3,151,80.5,0,0,-0.00555819 -149350,1815:101:4,151.5,80.5,0,0,-0.0055237 -149351,1815:102:3,152,80.5,0,0,-0.00552494 -149352,1815:102:4,152.5,80.5,0,0,-0.00553476 -149353,1815:103:3,153,80.5,0,0,-0.00554216 -149354,1815:103:4,153.5,80.5,0,0,-0.00554708 -149355,1815:104:3,154,80.5,0,0,-0.00554584 -149356,1815:104:4,154.5,80.5,0,0,-0.0055446 -149357,1815:205:3,155,80.5,0,0,-0.0055446 -149358,1815:205:4,155.5,80.5,0,0,-0.0055434 -149359,1815:206:3,156,80.5,0,0,-0.00554584 -149360,1815:206:4,156.5,80.5,0,0,-0.00555325 -149361,1815:207:3,157,80.5,0,0,-0.00556313 -149362,1815:207:4,157.5,80.5,0,0,-0.00557426 -149363,1815:208:3,158,80.5,0,0,-0.00558293 -149364,1815:208:4,158.5,80.5,0,0,-0.00559039 -149365,1815:209:3,159,80.5,0,0,-0.00559661 -149366,1815:209:4,159.5,80.5,0,0,-0.00559782 -149367,1816:100:3,160,80.5,0,0,-0.00559661 -149368,1816:100:4,160.5,80.5,0,0,-0.00559782 -149369,1816:101:3,161,80.5,0,0,-0.00560033 -149370,1816:101:4,161.5,80.5,0,0,-0.0056028 -149371,1816:102:3,162,80.5,0,0,-0.00560656 -149372,1816:102:4,162.5,80.5,0,0,-0.0056128 -149373,1816:103:3,163,80.5,0,0,-0.005619 -149374,1816:103:4,163.5,80.5,0,0,-0.00562651 -149375,1816:104:3,164,80.5,0,0,-0.00563652 -149376,1816:104:4,164.5,80.5,0,0,-0.00564781 -149377,1816:205:3,165,80.5,0,0,-0.00565409 -149378,1816:205:4,165.5,80.5,0,0,-0.00565911 -149379,1816:206:3,166,80.5,0,0,-0.00566288 -149380,1816:206:4,166.5,80.5,0,0,-0.00566541 -149381,1816:207:3,167,80.5,0,0,-0.00566668 -149382,1816:207:4,167.5,80.5,0,0,-0.00566918 -149383,1816:208:3,168,80.5,0,0,-0.00567171 -149384,1816:208:4,168.5,80.5,0,0,-0.00567294 -149385,1816:209:3,169,80.5,0,0,-0.00567294 -149386,1816:209:4,169.5,80.5,0,0,-0.00567421 -149387,1817:100:3,170,80.5,0,0,-0.00567548 -149388,1817:100:4,170.5,80.5,0,0,-0.00567803 -149389,1817:101:3,171,80.5,0,0,-0.00567926 -149390,1817:101:4,171.5,80.5,0,0,-0.00567803 -149391,1817:102:3,172,80.5,0,0,-0.00567675 -149392,1817:102:4,172.5,80.5,0,0,-0.00567548 -149393,1817:103:3,173,80.5,0,0,-0.00567548 -149394,1817:103:4,173.5,80.5,0,0,-0.00567675 -149395,1817:104:3,174,80.5,0,0,-0.00567675 -149396,1817:104:4,174.5,80.5,0,0,-0.00567803 -149397,1817:205:3,175,80.5,0,0,-0.00567926 -149398,1817:205:4,175.5,80.5,0,0,-0.00567926 -149399,1817:206:3,176,80.5,0,0,-0.00568053 -149400,1817:206:4,176.5,80.5,0,0,-0.0056818 -149401,1817:207:3,177,80.5,0,0,-0.00568307 -149402,1817:207:4,177.5,80.5,0,0,-0.00568307 -149403,1817:208:3,178,80.5,0,0,-0.00568307 -149404,1817:208:4,178.5,80.5,0,0,-0.0056818 -149405,1817:209:3,179,80.5,0,0,-0.00568053 -149406,1817:209:4,179.5,80.5,0,0,-0.00567926 -149407,1818:100:3,180,80.5,0,0,-0.00567926 -149408,7818:110:1,-180,81,0,0,-0.00567803 -149409,7817:219:2,-179.5,81,0,0,-0.00567803 -149410,7817:219:1,-179,81,0,0,-0.00567675 -149411,7817:218:2,-178.5,81,0,0,-0.00567803 -149412,7817:218:1,-178,81,0,0,-0.00567803 -149413,7817:217:2,-177.5,81,0,0,-0.00567926 -149414,7817:217:1,-177,81,0,0,-0.0056818 -149415,7817:216:2,-176.5,81,0,0,-0.00568685 -149416,7817:216:1,-176,81,0,0,-0.00569318 -149417,7817:215:2,-175.5,81,0,0,-0.00569569 -149418,7817:215:1,-175,81,0,0,-0.00569824 -149419,7817:114:2,-174.5,81,0,0,-0.00569951 -149420,7817:114:1,-174,81,0,0,-0.00569951 -149421,7817:113:2,-173.5,81,0,0,-0.00570075 -149422,7817:113:1,-173,81,0,0,-0.00570202 -149423,7817:112:2,-172.5,81,0,0,-0.00570458 -149424,7817:112:1,-172,81,0,0,-0.00570581 -149425,7817:111:2,-171.5,81,0,0,-0.00570581 -149426,7817:111:1,-171,81,0,0,-0.00570581 -149427,7817:110:2,-170.5,81,0,0,-0.0057033 -149428,7817:110:1,-170,81,0,0,-0.00570202 -149429,7816:219:2,-169.5,81,0,0,-0.00570075 -149430,7816:219:1,-169,81,0,0,-0.00569951 -149431,7816:218:2,-168.5,81,0,0,-0.00569824 -149432,7816:218:1,-168,81,0,0,-0.00569569 -149433,7816:217:2,-167.5,81,0,0,-0.00569569 -149434,7816:217:1,-167,81,0,0,-0.00569696 -149435,7816:216:2,-166.5,81,0,0,-0.00569569 -149436,7816:216:1,-166,81,0,0,-0.00569824 -149437,7816:215:2,-165.5,81,0,0,-0.0057033 -149438,7816:215:1,-165,81,0,0,-0.0057033 -149439,7816:114:2,-164.5,81,0,0,-0.00568307 -149440,7816:113:2,-163.5,81,0,0,-0.00574144 -149441,7816:111:1,-161,81,0,0,-0.00574273 -149442,7816:110:2,-160.5,81,0,0,-0.00575037 -149443,7816:110:1,-160,81,0,0,-0.00575806 -149444,7815:219:2,-159.5,81,0,0,-0.00576575 -149445,7815:219:1,-159,81,0,0,-0.00576959 -149446,7815:218:2,-158.5,81,0,0,-0.00577213 -149447,7815:218:1,-158,81,0,0,-0.00577601 -149448,7815:217:2,-157.5,81,0,0,-0.00577726 -149449,7815:217:1,-157,81,0,0,-0.00577855 -149450,7815:216:2,-156.5,81,0,0,-0.00577601 -149451,7815:114:1,-154,81,0,0,-0.00569824 -149452,7815:113:2,-153.5,81,0,0,-0.00569951 -149453,7815:113:1,-153,81,0,0,-0.00569951 -149454,7815:112:2,-152.5,81,0,0,-0.00570458 -149455,7815:112:1,-152,81,0,0,-0.00571472 -149456,7815:111:2,-151.5,81,0,0,-0.00572488 -149457,7815:111:1,-151,81,0,0,-0.00573635 -149458,7815:110:2,-150.5,81,0,0,-0.00574655 -149459,7815:110:1,-150,81,0,0,-0.00575165 -149460,7814:219:2,-149.5,81,0,0,-0.00575548 -149461,7814:219:1,-149,81,0,0,-0.00575677 -149462,7813:215:2,-135.5,81,0,0,-0.00594927 -149463,7813:215:1,-135,81,0,0,-0.00594133 -149464,7813:112:2,-132.5,81,0,0,-0.00602779 -149465,7813:111:2,-131.5,81,0,0,-0.00599171 -149466,7813:111:1,-131,81,0,0,-0.00601439 -149467,7813:110:2,-130.5,81,0,0,-0.00603315 -149468,7813:110:1,-130,81,0,0,-0.00606005 -149469,7812:219:2,-129.5,81,0,0,-0.00610602 -149470,7812:219:1,-129,81,0,0,-0.00617425 -149471,7812:218:2,-128.5,81,0,0,-0.00623356 -149472,7812:218:1,-128,81,0,0,-0.00618251 -149473,7812:217:2,-127.5,81,0,0,-0.00619351 -149474,7812:217:1,-127,81,0,0,-0.0061949 -149475,7807:218:2,-78.5,81,0,0,-0.00595456 -149476,7807:218:1,-78,81,0,0,-0.00596382 -149477,7807:217:2,-77.5,81,0,0,-0.0059519 -149478,7806:218:1,-68,81,0,0,-0.00580172 -149479,7806:217:2,-67.5,81,0,0,-0.00580688 -149480,7806:217:1,-67,81,0,0,-0.00580688 -149481,7806:216:2,-66.5,81,0,0,-0.00580302 -149482,7806:216:1,-66,81,0,0,-0.00579397 -149483,7806:215:2,-65.5,81,0,0,-0.00578114 -149484,7806:215:1,-65,81,0,0,-0.00577213 -149485,7806:114:2,-64.5,81,0,0,-0.00576575 -149486,7806:114:1,-64,81,0,0,-0.00575934 -149487,7806:113:2,-63.5,81,0,0,-0.00575423 -149488,7806:113:1,-63,81,0,0,-0.00574655 -149489,7806:112:2,-62.5,81,0,0,-0.00574016 -149490,7806:112:1,-62,81,0,0,-0.00572869 -149491,7806:111:2,-61.5,81,0,0,-0.00571724 -149492,7806:111:1,-61,81,0,0,-0.00570581 -149493,7806:110:2,-60.5,81,0,0,-0.00570075 -149494,7806:110:1,-60,81,0,0,-0.00569824 -149495,7805:219:2,-59.5,81,0,0,-0.00569696 -149496,7805:219:1,-59,81,0,0,-0.00569569 -149497,7805:218:1,-58,81,0,0,-0.0057033 -149498,7805:217:2,-57.5,81,0,0,-0.00570965 -149499,7805:217:1,-57,81,0,0,-0.00570965 -149500,7805:215:1,-55,81,0,0,-0.00571852 -149501,7805:114:2,-54.5,81,0,0,-0.00572616 -149502,7805:114:1,-54,81,0,0,-0.00572232 -149503,7805:113:2,-53.5,81,0,0,-0.0057198 -149504,7805:113:1,-53,81,0,0,-0.00571724 -149505,7805:112:2,-52.5,81,0,0,-0.005716 -149506,7805:112:1,-52,81,0,0,-0.00571344 -149507,7805:111:2,-51.5,81,0,0,-0.00570965 -149508,7805:111:1,-51,81,0,0,-0.00570581 -149509,7805:110:2,-50.5,81,0,0,-0.00570458 -149510,7804:218:1,-48,81,0,0,-0.0057033 -149511,7804:217:2,-47.5,81,0,0,-0.005716 -149512,7804:217:1,-47,81,0,0,-0.00573763 -149513,7804:216:2,-46.5,81,0,0,-0.00574144 -149514,7804:216:1,-46,81,0,0,-0.00574144 -149515,7804:215:2,-45.5,81,0,0,-0.00573888 -149516,7804:215:1,-45,81,0,0,-0.00573254 -149517,7804:114:2,-44.5,81,0,0,-0.00571724 -149518,7804:114:1,-44,81,0,0,-0.00570202 -149519,7804:113:2,-43.5,81,0,0,-0.0056919 -149520,7804:113:1,-43,81,0,0,-0.00568558 -149521,7804:112:2,-42.5,81,0,0,-0.00568307 -149522,7804:112:1,-42,81,0,0,-0.00568307 -149523,7804:111:2,-41.5,81,0,0,-0.00568307 -149524,7804:111:1,-41,81,0,0,-0.00568685 -149525,7804:110:2,-40.5,81,0,0,-0.00569063 -149526,7804:110:1,-40,81,0,0,-0.0056919 -149527,7803:219:2,-39.5,81,0,0,-0.0056919 -149528,7803:219:1,-39,81,0,0,-0.0056919 -149529,7803:218:2,-38.5,81,0,0,-0.00569063 -149530,7803:218:1,-38,81,0,0,-0.00569063 -149531,7803:217:2,-37.5,81,0,0,-0.00569063 -149532,7803:217:1,-37,81,0,0,-0.00568936 -149533,7803:216:2,-36.5,81,0,0,-0.00568936 -149534,7803:216:1,-36,81,0,0,-0.00568812 -149535,7803:215:2,-35.5,81,0,0,-0.00568812 -149536,7803:215:1,-35,81,0,0,-0.00568685 -149537,7803:114:2,-34.5,81,0,0,-0.00568558 -149538,7803:114:1,-34,81,0,0,-0.00568558 -149539,7803:113:2,-33.5,81,0,0,-0.00568558 -149540,7803:113:1,-33,81,0,0,-0.0056843 -149541,7803:112:2,-32.5,81,0,0,-0.00568558 -149542,7803:112:1,-32,81,0,0,-0.00568685 -149543,7803:111:2,-31.5,81,0,0,-0.00568812 -149544,7803:111:1,-31,81,0,0,-0.00568812 -149545,7803:110:2,-30.5,81,0,0,-0.00568558 -149546,7803:110:1,-30,81,0,0,-0.0056843 -149547,7802:219:2,-29.5,81,0,0,-0.0056843 -149548,7802:219:1,-29,81,0,0,-0.0056843 -149549,7802:218:2,-28.5,81,0,0,-0.0056843 -149550,7802:218:1,-28,81,0,0,-0.0056843 -149551,7802:217:2,-27.5,81,0,0,-0.0056843 -149552,7802:217:1,-27,81,0,0,-0.0056843 -149553,7802:216:2,-26.5,81,0,0,-0.00568558 -149554,7802:216:1,-26,81,0,0,-0.00568685 -149555,7802:215:2,-25.5,81,0,0,-0.00568812 -149556,7802:215:1,-25,81,0,0,-0.00568812 -149557,7802:114:2,-24.5,81,0,0,-0.00568685 -149558,7802:114:1,-24,81,0,0,-0.00568307 -149559,7802:113:2,-23.5,81,0,0,-0.00567926 -149560,7802:113:1,-23,81,0,0,-0.00567421 -149561,7802:112:2,-22.5,81,0,0,-0.00566918 -149562,7802:112:1,-22,81,0,0,-0.00566668 -149563,7802:111:2,-21.5,81,0,0,-0.00566541 -149564,7802:111:1,-21,81,0,0,-0.00566288 -149565,7802:110:2,-20.5,81,0,0,-0.00566038 -149566,7802:110:1,-20,81,0,0,-0.00565658 -149567,7801:219:2,-19.5,81,0,0,-0.00565282 -149568,7801:219:1,-19,81,0,0,-0.00564781 -149569,7801:218:2,-18.5,81,0,0,-0.00563904 -149570,7801:218:1,-18,81,0,0,-0.00562651 -149571,7801:217:2,-17.5,81,0,0,-0.00561154 -149572,7801:217:1,-17,81,0,0,-0.00560158 -149573,7801:216:2,-16.5,81,0,0,-0.00559285 -149574,7801:216:1,-16,81,0,0,-0.00558293 -149575,7801:215:2,-15.5,81,0,0,-0.00556807 -149576,7801:215:1,-15,81,0,0,-0.00555201 -149577,7801:114:2,-14.5,81,0,0,-0.0055434 -149578,7801:114:1,-14,81,0,0,-0.00553724 -149579,7801:113:2,-13.5,81,0,0,-0.00553108 -149580,7801:113:1,-13,81,0,0,-0.0055237 -149581,7801:112:2,-12.5,81,0,0,-0.0055188 -149582,7801:112:1,-12,81,0,0,-0.00551756 -149583,7801:111:2,-11.5,81,0,0,-0.00551637 -149584,7801:111:1,-11,81,0,0,-0.00551513 -149585,7801:110:2,-10.5,81,0,0,-0.00551266 -149586,7801:110:1,-10,81,0,0,-0.00551147 -149587,7800:219:2,-9.5,81,0,0,-0.005509 -149588,7800:219:1,-9,81,0,0,-0.00551266 -149589,7800:218:2,-8.5,81,0,0,-0.00552003 -149590,7800:218:1,-8,81,0,0,-0.00553232 -149591,7800:217:2,-7.5,81,0,0,-0.00556064 -149592,7800:217:1,-7,81,0,0,-0.00562152 -149593,7800:216:2,-6.5,81,0,0,-0.00568812 -149594,7800:216:1,-6,81,0,0,-0.00573378 -149595,7800:215:2,-5.5,81,0,0,-0.00580042 -149596,7800:215:1,-5,81,0,0,-0.00590317 -149597,7800:114:2,-4.5,81,0,0,-0.00598241 -149598,7800:114:1,-4,81,0,0,-0.00601978 -149599,7800:113:2,-3.5,81,0,0,-0.00602644 -149600,7800:113:1,-3,81,0,0,-0.00606137 -149601,7800:112:2,-2.5,81,0,0,-0.00614275 -149602,7800:112:1,-2,81,0,0,-0.00611689 -149603,7800:111:2,-1.5,81,0,0,-0.00611282 -149604,7800:111:1,-1,81,0,0,-0.00607351 -149605,7800:110:2,-0.5,81,0,0,-0.00602513 -149606,1800:110:2,0,81,0,0,-0.00593871 -149607,1800:110:2,0.5,81,0,0,-0.00586526 -149608,1800:111:1,1,81,0,0,-0.00581464 -149609,1800:111:2,1.5,81,0,0,-0.00579527 -149610,1800:112:1,2,81,0,0,-0.00579916 -149611,1800:112:2,2.5,81,0,0,-0.00574398 -149612,1800:113:1,3,81,0,0,-0.00568812 -149613,1800:113:2,3.5,81,0,0,-0.00567421 -149614,1800:114:1,4,81,0,0,-0.00568936 -149615,1800:114:2,4.5,81,0,0,-0.00573254 -149616,1800:215:1,5,81,0,0,-0.00584441 -149617,1800:215:2,5.5,81,0,0,-0.00589401 -149618,1800:216:1,6,81,0,0,-0.0059771 -149619,1800:216:2,6.5,81,0,0,-0.00751936 -149620,1800:218:2,8.5,81,0,0,-0.00632009 -149621,1800:219:1,9,81,0,0,-0.00614688 -149622,1800:219:2,9.5,81,0,0,-0.00581074 -149623,1801:110:1,10,81,0,0,-0.00570581 -149624,1801:110:2,10.5,81,0,0,-0.00569063 -149625,1801:111:1,11,81,0,0,-0.00584183 -149626,1801:111:2,11.5,81,0,0,-0.00591367 -149627,1801:112:1,12,81,0,0,-0.00597974 -149628,1801:112:2,12.5,81,0,0,-0.00604659 -149629,1801:113:1,13,81,0,0,-0.00612095 -149630,1801:113:2,13.5,81,0,0,-0.00617836 -149631,1801:114:1,14,81,0,0,-0.00621557 -149632,1801:114:2,14.5,81,0,0,-0.00624884 -149633,1801:215:1,15,81,0,0,-0.00639216 -149634,1801:215:2,15.5,81,0,0,-0.00650687 -149635,1803:110:2,30.5,81,0,0,-0.00829524 -149636,1812:111:2,121.5,81,0,0,-0.00828785 -149637,1812:216:2,126.5,81,0,0,-0.00749763 -149638,1812:217:1,127,81,0,0,-0.00748095 -149639,1812:218:2,128.5,81,0,0,-0.00730162 -149640,1812:219:1,129,81,0,0,-0.00740476 -149641,1812:219:2,129.5,81,0,0,-0.00750095 -149642,1813:110:1,130,81,0,0,-0.00750431 -149643,1813:110:2,130.5,81,0,0,-0.00747597 -149644,1813:111:1,131,81,0,0,-0.00729677 -149645,1813:111:2,131.5,81,0,0,-0.00693888 -149646,1813:112:1,132,81,0,0,-0.00635674 -149647,1813:112:2,132.5,81,0,0,-0.00633977 -149648,1813:113:1,133,81,0,0,-0.00648092 -149649,1813:113:2,133.5,81,0,0,-0.00641637 -149650,1813:114:1,134,81,0,0,-0.00626272 -149651,1813:114:2,134.5,81,0,0,-0.00605061 -149652,1813:215:1,135,81,0,0,-0.00589137 -149653,1813:215:2,135.5,81,0,0,-0.00582885 -149654,1813:216:1,136,81,0,0,-0.00577726 -149655,1813:216:2,136.5,81,0,0,-0.00572232 -149656,1813:217:1,137,81,0,0,-0.00568685 -149657,1813:217:2,137.5,81,0,0,-0.00569445 -149658,1813:218:1,138,81,0,0,-0.00572108 -149659,1813:218:2,138.5,81,0,0,-0.005716 -149660,1813:219:1,139,81,0,0,-0.00571092 -149661,1813:219:2,139.5,81,0,0,-0.00567171 -149662,1814:110:1,140,81,0,0,-0.00570202 -149663,1814:110:2,140.5,81,0,0,-0.00568558 -149664,1814:111:1,141,81,0,0,-0.0056818 -149665,1814:111:2,141.5,81,0,0,-0.00569824 -149666,1814:112:1,142,81,0,0,-0.00570581 -149667,1814:112:2,142.5,81,0,0,-0.0056818 -149668,1814:113:1,143,81,0,0,-0.00566668 -149669,1814:113:2,143.5,81,0,0,-0.00565785 -149670,1814:114:1,144,81,0,0,-0.00562278 -149671,1814:114:2,144.5,81,0,0,-0.00561154 -149672,1814:215:1,145,81,0,0,-0.00559285 -149673,1814:215:2,145.5,81,0,0,-0.00560531 -149674,1814:216:1,146,81,0,0,-0.00564654 -149675,1814:216:2,146.5,81,0,0,-0.00564153 -149676,1814:217:1,147,81,0,0,-0.00567171 -149677,1814:217:2,147.5,81,0,0,-0.00571852 -149678,1814:218:1,148,81,0,0,-0.00568936 -149679,1814:218:2,148.5,81,0,0,-0.00577726 -149680,1814:219:1,149,81,0,0,-0.00574398 -149681,1814:219:2,149.5,81,0,0,-0.00572616 -149682,1815:110:1,150,81,0,0,-0.00570709 -149683,1815:110:2,150.5,81,0,0,-0.00563404 -149684,1815:111:1,151,81,0,0,-0.00554832 -149685,1815:111:2,151.5,81,0,0,-0.00552494 -149686,1815:112:1,152,81,0,0,-0.00552861 -149687,1815:112:2,152.5,81,0,0,-0.005536 -149688,1815:113:1,153,81,0,0,-0.00554216 -149689,1815:113:2,153.5,81,0,0,-0.00554216 -149690,1815:114:1,154,81,0,0,-0.00553724 -149691,1815:114:2,154.5,81,0,0,-0.00553724 -149692,1815:215:1,155,81,0,0,-0.00554092 -149693,1815:215:2,155.5,81,0,0,-0.00553968 -149694,1815:216:1,156,81,0,0,-0.00553968 -149695,1815:216:2,156.5,81,0,0,-0.00554216 -149696,1815:217:1,157,81,0,0,-0.00555077 -149697,1815:217:2,157.5,81,0,0,-0.00556064 -149698,1815:218:1,158,81,0,0,-0.00557302 -149699,1815:218:2,158.5,81,0,0,-0.00558418 -149700,1815:219:1,159,81,0,0,-0.00559164 -149701,1815:219:2,159.5,81,0,0,-0.0055941 -149702,1816:110:1,160,81,0,0,-0.0055941 -149703,1816:110:2,160.5,81,0,0,-0.00559661 -149704,1816:111:1,161,81,0,0,-0.00559782 -149705,1816:111:2,161.5,81,0,0,-0.00560033 -149706,1816:112:1,162,81,0,0,-0.0056028 -149707,1816:112:2,162.5,81,0,0,-0.00560656 -149708,1816:113:1,163,81,0,0,-0.0056128 -149709,1816:113:2,163.5,81,0,0,-0.005619 -149710,1816:114:1,164,81,0,0,-0.00562903 -149711,1816:114:2,164.5,81,0,0,-0.00564153 -149712,1816:215:1,165,81,0,0,-0.00565156 -149713,1816:215:2,165.5,81,0,0,-0.00565911 -149714,1816:216:1,166,81,0,0,-0.00566414 -149715,1816:216:2,166.5,81,0,0,-0.00566791 -149716,1816:217:1,167,81,0,0,-0.00566918 -149717,1816:217:2,167.5,81,0,0,-0.00567045 -149718,1816:218:1,168,81,0,0,-0.00567171 -149719,1816:218:2,168.5,81,0,0,-0.00567294 -149720,1816:219:1,169,81,0,0,-0.00567421 -149721,1816:219:2,169.5,81,0,0,-0.00567675 -149722,1817:110:1,170,81,0,0,-0.00567803 -149723,1817:110:2,170.5,81,0,0,-0.00568053 -149724,1817:111:1,171,81,0,0,-0.00568053 -149725,1817:111:2,171.5,81,0,0,-0.00567926 -149726,1817:112:1,172,81,0,0,-0.00567803 -149727,1817:112:2,172.5,81,0,0,-0.00567675 -149728,1817:113:1,173,81,0,0,-0.00567675 -149729,1817:113:2,173.5,81,0,0,-0.00567803 -149730,1817:114:1,174,81,0,0,-0.00567803 -149731,1817:114:2,174.5,81,0,0,-0.00567926 -149732,1817:215:1,175,81,0,0,-0.00568053 -149733,1817:215:2,175.5,81,0,0,-0.0056818 -149734,1817:216:1,176,81,0,0,-0.00568307 -149735,1817:216:2,176.5,81,0,0,-0.00568307 -149736,1817:217:1,177,81,0,0,-0.00568307 -149737,1817:217:2,177.5,81,0,0,-0.00568307 -149738,1817:218:1,178,81,0,0,-0.0056843 -149739,1817:218:2,178.5,81,0,0,-0.00568307 -149740,1817:219:1,179,81,0,0,-0.00568053 -149741,1817:219:2,179.5,81,0,0,-0.00567926 -149742,1818:110:1,180,81,0,0,-0.00567803 -149743,7818:110:3,-180,81.5,0,0,-0.00567803 -149744,7817:219:4,-179.5,81.5,0,0,-0.00567803 -149745,7817:219:3,-179,81.5,0,0,-0.00567803 -149746,7817:218:4,-178.5,81.5,0,0,-0.00567803 -149747,7817:218:3,-178,81.5,0,0,-0.00567926 -149748,7817:217:4,-177.5,81.5,0,0,-0.0056818 -149749,7817:217:3,-177,81.5,0,0,-0.0056843 -149750,7817:216:4,-176.5,81.5,0,0,-0.00568936 -149751,7817:216:3,-176,81.5,0,0,-0.00569318 -149752,7817:215:4,-175.5,81.5,0,0,-0.00569569 -149753,7817:215:3,-175,81.5,0,0,-0.00569696 -149754,7817:114:4,-174.5,81.5,0,0,-0.00569824 -149755,7817:114:3,-174,81.5,0,0,-0.00569951 -149756,7817:113:4,-173.5,81.5,0,0,-0.00569951 -149757,7817:113:3,-173,81.5,0,0,-0.00570075 -149758,7817:112:4,-172.5,81.5,0,0,-0.00570202 -149759,7817:112:3,-172,81.5,0,0,-0.0057033 -149760,7817:111:4,-171.5,81.5,0,0,-0.0057033 -149761,7817:111:3,-171,81.5,0,0,-0.00570202 -149762,7817:110:4,-170.5,81.5,0,0,-0.00570202 -149763,7817:110:3,-170,81.5,0,0,-0.00569951 -149764,7816:219:4,-169.5,81.5,0,0,-0.00569824 -149765,7816:219:3,-169,81.5,0,0,-0.00569569 -149766,7816:218:4,-168.5,81.5,0,0,-0.00569445 -149767,7816:218:3,-168,81.5,0,0,-0.00569318 -149768,7816:217:4,-167.5,81.5,0,0,-0.0056919 -149769,7816:217:3,-167,81.5,0,0,-0.00569318 -149770,7816:216:4,-166.5,81.5,0,0,-0.00569696 -149771,7816:216:3,-166,81.5,0,0,-0.00570458 -149772,7816:215:4,-165.5,81.5,0,0,-0.00570965 -149773,7816:215:3,-165,81.5,0,0,-0.00570709 -149774,7816:113:4,-163.5,81.5,0,0,-0.00572997 -149775,7816:112:4,-162.5,81.5,0,0,-0.00572997 -149776,7816:112:3,-162,81.5,0,0,-0.00572997 -149777,7816:111:4,-161.5,81.5,0,0,-0.00573378 -149778,7816:111:3,-161,81.5,0,0,-0.00574144 -149779,7816:110:4,-160.5,81.5,0,0,-0.00575165 -149780,7816:110:3,-160,81.5,0,0,-0.00576188 -149781,7815:219:4,-159.5,81.5,0,0,-0.00576575 -149782,7815:218:3,-158,81.5,0,0,-0.00577342 -149783,7815:217:3,-157,81.5,0,0,-0.00577726 -149784,7815:216:4,-156.5,81.5,0,0,-0.00577726 -149785,7815:114:4,-154.5,81.5,0,0,-0.00567926 -149786,7815:114:3,-154,81.5,0,0,-0.00568558 -149787,7815:113:4,-153.5,81.5,0,0,-0.00568685 -149788,7815:113:3,-153,81.5,0,0,-0.00569318 -149789,7815:112:4,-152.5,81.5,0,0,-0.00570458 -149790,7815:112:3,-152,81.5,0,0,-0.00571724 -149791,7815:111:4,-151.5,81.5,0,0,-0.00572869 -149792,7815:111:3,-151,81.5,0,0,-0.00574016 -149793,7815:110:4,-150.5,81.5,0,0,-0.00574783 -149794,7815:110:3,-150,81.5,0,0,-0.00575294 -149795,7814:219:4,-149.5,81.5,0,0,-0.00575677 -149796,7814:219:3,-149,81.5,0,0,-0.00575806 -149797,7814:218:4,-148.5,81.5,0,0,-0.00575548 -149798,7814:218:3,-148,81.5,0,0,-0.00573635 -149799,7813:215:4,-135.5,81.5,0,0,-0.00594661 -149800,7813:215:3,-135,81.5,0,0,-0.00593078 -149801,7813:112:4,-132.5,81.5,0,0,-0.0061006 -149802,7813:112:3,-132,81.5,0,0,-0.00600905 -149803,7813:110:3,-130,81.5,0,0,-0.00604523 -149804,7812:219:4,-129.5,81.5,0,0,-0.00608163 -149805,7812:219:3,-129,81.5,0,0,-0.00612777 -149806,7812:218:4,-128.5,81.5,0,0,-0.00614821 -149807,7812:217:4,-127.5,81.5,0,0,-0.00618113 -149808,7808:110:3,-80,81.5,0,0,-0.00644928 -149809,7807:219:4,-79.5,81.5,0,0,-0.00647371 -149810,7807:218:3,-78,81.5,0,0,-0.00595456 -149811,7807:217:4,-77.5,81.5,0,0,-0.00594794 -149812,7806:216:3,-66,81.5,0,0,-0.00578757 -149813,7806:215:4,-65.5,81.5,0,0,-0.00577471 -149814,7806:112:4,-62.5,81.5,0,0,-0.00574144 -149815,7806:112:3,-62,81.5,0,0,-0.00573125 -149816,7806:111:4,-61.5,81.5,0,0,-0.005716 -149817,7806:111:3,-61,81.5,0,0,-0.00570075 -149818,7806:110:4,-60.5,81.5,0,0,-0.00569445 -149819,7806:110:3,-60,81.5,0,0,-0.00569569 -149820,7805:219:4,-59.5,81.5,0,0,-0.00569824 -149821,7805:219:3,-59,81.5,0,0,-0.00569951 -149822,7805:218:3,-58,81.5,0,0,-0.00570965 -149823,7805:217:4,-57.5,81.5,0,0,-0.00571344 -149824,7805:217:3,-57,81.5,0,0,-0.00571852 -149825,7805:216:4,-56.5,81.5,0,0,-0.00571472 -149826,7805:216:3,-56,81.5,0,0,-0.00570709 -149827,7805:215:4,-55.5,81.5,0,0,-0.00570581 -149828,7805:114:4,-54.5,81.5,0,0,-0.00572232 -149829,7805:114:3,-54,81.5,0,0,-0.00572232 -149830,7805:113:3,-53,81.5,0,0,-0.00571724 -149831,7805:112:4,-52.5,81.5,0,0,-0.00571472 -149832,7805:112:3,-52,81.5,0,0,-0.00571216 -149833,7805:111:4,-51.5,81.5,0,0,-0.00571092 -149834,7805:111:3,-51,81.5,0,0,-0.00570965 -149835,7805:110:4,-50.5,81.5,0,0,-0.00570709 -149836,7804:219:4,-49.5,81.5,0,0,-0.00571472 -149837,7804:217:4,-47.5,81.5,0,0,-0.00571216 -149838,7804:217:3,-47,81.5,0,0,-0.00574273 -149839,7804:216:4,-46.5,81.5,0,0,-0.00574912 -149840,7804:216:3,-46,81.5,0,0,-0.00574655 -149841,7804:215:4,-45.5,81.5,0,0,-0.00573888 -149842,7804:215:3,-45,81.5,0,0,-0.00572616 -149843,7804:114:4,-44.5,81.5,0,0,-0.00570837 -149844,7804:114:3,-44,81.5,0,0,-0.00569445 -149845,7804:113:4,-43.5,81.5,0,0,-0.00568812 -149846,7804:113:3,-43,81.5,0,0,-0.00568936 -149847,7804:112:4,-42.5,81.5,0,0,-0.00568936 -149848,7804:112:3,-42,81.5,0,0,-0.00568936 -149849,7804:111:4,-41.5,81.5,0,0,-0.00569063 -149850,7804:111:3,-41,81.5,0,0,-0.0056919 -149851,7804:110:4,-40.5,81.5,0,0,-0.00569318 -149852,7804:110:3,-40,81.5,0,0,-0.00569445 -149853,7803:219:4,-39.5,81.5,0,0,-0.00569318 -149854,7803:219:3,-39,81.5,0,0,-0.00569318 -149855,7803:218:4,-38.5,81.5,0,0,-0.0056919 -149856,7803:218:3,-38,81.5,0,0,-0.0056919 -149857,7803:217:4,-37.5,81.5,0,0,-0.0056919 -149858,7803:217:3,-37,81.5,0,0,-0.0056919 -149859,7803:216:4,-36.5,81.5,0,0,-0.00569063 -149860,7803:216:3,-36,81.5,0,0,-0.00568936 -149861,7803:215:4,-35.5,81.5,0,0,-0.00568812 -149862,7803:215:3,-35,81.5,0,0,-0.00568558 -149863,7803:114:4,-34.5,81.5,0,0,-0.00568558 -149864,7803:114:3,-34,81.5,0,0,-0.00568558 -149865,7803:113:4,-33.5,81.5,0,0,-0.00568558 -149866,7803:113:3,-33,81.5,0,0,-0.0056843 -149867,7803:112:4,-32.5,81.5,0,0,-0.00568558 -149868,7803:112:3,-32,81.5,0,0,-0.00568685 -149869,7803:111:4,-31.5,81.5,0,0,-0.00568812 -149870,7803:111:3,-31,81.5,0,0,-0.00568812 -149871,7803:110:4,-30.5,81.5,0,0,-0.00568812 -149872,7803:110:3,-30,81.5,0,0,-0.00568812 -149873,7802:219:4,-29.5,81.5,0,0,-0.00568685 -149874,7802:219:3,-29,81.5,0,0,-0.00568685 -149875,7802:218:4,-28.5,81.5,0,0,-0.00568685 -149876,7802:218:3,-28,81.5,0,0,-0.00568685 -149877,7802:217:4,-27.5,81.5,0,0,-0.00568685 -149878,7802:217:3,-27,81.5,0,0,-0.00568812 -149879,7802:216:4,-26.5,81.5,0,0,-0.00568936 -149880,7802:216:3,-26,81.5,0,0,-0.00569063 -149881,7802:215:4,-25.5,81.5,0,0,-0.00568936 -149882,7802:215:3,-25,81.5,0,0,-0.00568936 -149883,7802:114:4,-24.5,81.5,0,0,-0.00568812 -149884,7802:114:3,-24,81.5,0,0,-0.0056843 -149885,7802:113:4,-23.5,81.5,0,0,-0.00567926 -149886,7802:113:3,-23,81.5,0,0,-0.00567421 -149887,7802:112:4,-22.5,81.5,0,0,-0.00566918 -149888,7802:112:3,-22,81.5,0,0,-0.00566668 -149889,7802:111:4,-21.5,81.5,0,0,-0.00566414 -149890,7802:111:3,-21,81.5,0,0,-0.00566165 -149891,7802:110:4,-20.5,81.5,0,0,-0.00565785 -149892,7802:110:3,-20,81.5,0,0,-0.00565282 -149893,7801:219:4,-19.5,81.5,0,0,-0.00564532 -149894,7801:219:3,-19,81.5,0,0,-0.00563904 -149895,7801:218:4,-18.5,81.5,0,0,-0.00563151 -149896,7801:218:3,-18,81.5,0,0,-0.00562026 -149897,7801:217:4,-17.5,81.5,0,0,-0.00561029 -149898,7801:217:3,-17,81.5,0,0,-0.00560033 -149899,7801:216:4,-16.5,81.5,0,0,-0.00558789 -149900,7801:216:3,-16,81.5,0,0,-0.00557426 -149901,7801:215:4,-15.5,81.5,0,0,-0.00556064 -149902,7801:215:3,-15,81.5,0,0,-0.0055545 -149903,7801:114:4,-14.5,81.5,0,0,-0.00555201 -149904,7801:114:3,-14,81.5,0,0,-0.00555077 -149905,7801:113:4,-13.5,81.5,0,0,-0.0055446 -149906,7801:113:3,-13,81.5,0,0,-0.00553352 -149907,7801:112:4,-12.5,81.5,0,0,-0.0055237 -149908,7801:112:3,-12,81.5,0,0,-0.00552003 -149909,7801:111:4,-11.5,81.5,0,0,-0.00552003 -149910,7801:111:3,-11,81.5,0,0,-0.0055188 -149911,7801:110:4,-10.5,81.5,0,0,-0.00551756 -149912,7801:110:3,-10,81.5,0,0,-0.00551513 -149913,7800:219:4,-9.5,81.5,0,0,-0.00551266 -149914,7800:219:3,-9,81.5,0,0,-0.0055139 -149915,7800:218:4,-8.5,81.5,0,0,-0.00551756 -149916,7800:218:3,-8,81.5,0,0,-0.00552127 -149917,7800:217:4,-7.5,81.5,0,0,-0.00553232 -149918,7800:217:3,-7,81.5,0,0,-0.00557426 -149919,7800:216:4,-6.5,81.5,0,0,-0.00564907 -149920,7800:216:3,-6,81.5,0,0,-0.00573125 -149921,7800:215:4,-5.5,81.5,0,0,-0.00579527 -149922,7800:215:3,-5,81.5,0,0,-0.00586132 -149923,7800:114:4,-4.5,81.5,0,0,-0.00588482 -149924,7800:114:3,-4,81.5,0,0,-0.00589137 -149925,7800:113:4,-3.5,81.5,0,0,-0.005877 -149926,7800:113:3,-3,81.5,0,0,-0.00586784 -149927,7800:112:4,-2.5,81.5,0,0,-0.00589793 -149928,7800:112:3,-2,81.5,0,0,-0.00592419 -149929,7800:111:4,-1.5,81.5,0,0,-0.00593871 -149930,7800:111:3,-1,81.5,0,0,-0.00598375 -149931,7800:110:4,-0.5,81.5,0,0,-0.00591234 -149932,1800:110:4,0,81.5,0,0,-0.00579397 -149933,1800:110:4,0.5,81.5,0,0,-0.00573378 -149934,1800:111:3,1,81.5,0,0,-0.00569824 -149935,1800:111:4,1.5,81.5,0,0,-0.00571092 -149936,1800:112:3,2,81.5,0,0,-0.00574144 -149937,1800:112:4,2.5,81.5,0,0,-0.00571216 -149938,1800:113:3,3,81.5,0,0,-0.00566541 -149939,1800:113:4,3.5,81.5,0,0,-0.00565911 -149940,1800:114:3,4,81.5,0,0,-0.00572997 -149941,1800:114:4,4.5,81.5,0,0,-0.00596119 -149942,1800:215:3,5,81.5,0,0,-0.00614413 -149943,1800:215:4,5.5,81.5,0,0,-0.00615372 -149944,1800:216:3,6,81.5,0,0,-0.00603851 -149945,1800:216:4,6.5,81.5,0,0,-0.00632713 -149946,1800:217:3,7,81.5,0,0,-0.00665321 -149947,1800:217:4,7.5,81.5,0,0,-0.0066933 -149948,1800:218:3,8,81.5,0,0,-0.00660014 -149949,1800:218:4,8.5,81.5,0,0,-0.00605599 -149950,1800:219:3,9,81.5,0,0,-0.00579012 -149951,1800:219:4,9.5,81.5,0,0,-0.00566668 -149952,1801:110:3,10,81.5,0,0,-0.00577088 -149953,1801:110:4,10.5,81.5,0,0,-0.0058835 -149954,1801:111:3,11,81.5,0,0,-0.00596382 -149955,1801:111:4,11.5,81.5,0,0,-0.00606273 -149956,1801:112:3,12,81.5,0,0,-0.00617836 -149957,1801:112:4,12.5,81.5,0,0,-0.00629903 -149958,1801:113:3,13,81.5,0,0,-0.00639359 -149959,1801:113:4,13.5,81.5,0,0,-0.00645502 -149960,1801:114:3,14,81.5,0,0,-0.00646795 -149961,1801:114:4,14.5,81.5,0,0,-0.00646076 -149962,1801:215:4,15.5,81.5,0,0,-0.00665913 -149963,1803:110:3,30,81.5,0,0,-0.00829524 -149964,1803:110:4,30.5,81.5,0,0,-0.00829524 -149965,1812:111:4,121.5,81.5,0,0,-0.00828599 -149966,1812:217:3,127,81.5,0,0,-0.00743283 -149967,1812:217:4,127.5,81.5,0,0,-0.00738828 -149968,1812:218:3,128,81.5,0,0,-0.00733747 -149969,1812:219:4,129.5,81.5,0,0,-0.00735543 -149970,1813:110:3,130,81.5,0,0,-0.00732606 -149971,1813:110:4,130.5,81.5,0,0,-0.00738662 -149972,1813:111:3,131,81.5,0,0,-0.00729677 -149973,1813:112:3,132,81.5,0,0,-0.00657671 -149974,1813:112:4,132.5,81.5,0,0,-0.00644784 -149975,1813:113:3,133,81.5,0,0,-0.00646651 -149976,1813:113:4,133.5,81.5,0,0,-0.00643067 -149977,1813:114:3,134,81.5,0,0,-0.00630746 -149978,1813:114:4,134.5,81.5,0,0,-0.00611145 -149979,1813:215:3,135,81.5,0,0,-0.00598241 -149980,1813:215:4,135.5,81.5,0,0,-0.00592817 -149981,1813:216:3,136,81.5,0,0,-0.00584833 -149982,1813:216:4,136.5,81.5,0,0,-0.00577726 -149983,1813:217:3,137,81.5,0,0,-0.00576575 -149984,1813:217:4,137.5,81.5,0,0,-0.00575548 -149985,1813:218:3,138,81.5,0,0,-0.00570837 -149986,1813:218:4,138.5,81.5,0,0,-0.00567294 -149987,1813:219:3,139,81.5,0,0,-0.00566288 -149988,1813:219:4,139.5,81.5,0,0,-0.00568558 -149989,1814:110:3,140,81.5,0,0,-0.00584703 -149990,1814:110:4,140.5,81.5,0,0,-0.00593211 -149991,1814:111:3,141,81.5,0,0,-0.0058835 -149992,1814:111:4,141.5,81.5,0,0,-0.00582885 -149993,1814:112:3,142,81.5,0,0,-0.00581074 -149994,1814:112:4,142.5,81.5,0,0,-0.00578243 -149995,1814:113:3,143,81.5,0,0,-0.00576829 -149996,1814:113:4,143.5,81.5,0,0,-0.00577855 -149997,1814:114:3,144,81.5,0,0,-0.00576829 -149998,1814:114:4,144.5,81.5,0,0,-0.00567421 -149999,1814:215:3,145,81.5,0,0,-0.00566918 -150000,1814:215:4,145.5,81.5,0,0,-0.00573125 -150001,1814:216:3,146,81.5,0,0,-0.00564532 -150002,1814:216:4,146.5,81.5,0,0,-0.00554584 -150003,1814:217:3,147,81.5,0,0,-0.00563778 -150004,1814:217:4,147.5,81.5,0,0,-0.00574526 -150005,1814:218:3,148,81.5,0,0,-0.00577342 -150006,1814:218:4,148.5,81.5,0,0,-0.00580172 -150007,1814:219:3,149,81.5,0,0,-0.00578628 -150008,1814:219:4,149.5,81.5,0,0,-0.00577088 -150009,1815:110:3,150,81.5,0,0,-0.00576575 -150010,1815:110:4,150.5,81.5,0,0,-0.00565282 -150011,1815:111:3,151,81.5,0,0,-0.00554216 -150012,1815:111:4,151.5,81.5,0,0,-0.00552985 -150013,1815:112:3,152,81.5,0,0,-0.00553352 -150014,1815:112:4,152.5,81.5,0,0,-0.00553724 -150015,1815:113:3,153,81.5,0,0,-0.005536 -150016,1815:113:4,153.5,81.5,0,0,-0.00553232 -150017,1815:114:3,154,81.5,0,0,-0.00552617 -150018,1815:114:4,154.5,81.5,0,0,-0.0055237 -150019,1815:215:3,155,81.5,0,0,-0.00553108 -150020,1815:215:4,155.5,81.5,0,0,-0.005536 -150021,1815:216:3,156,81.5,0,0,-0.00553476 -150022,1815:216:4,156.5,81.5,0,0,-0.005536 -150023,1815:217:3,157,81.5,0,0,-0.00553968 -150024,1815:217:4,157.5,81.5,0,0,-0.00554708 -150025,1815:218:3,158,81.5,0,0,-0.00555819 -150026,1815:218:4,158.5,81.5,0,0,-0.00557052 -150027,1815:219:3,159,81.5,0,0,-0.00558168 -150028,1815:219:4,159.5,81.5,0,0,-0.00558789 -150029,1816:110:3,160,81.5,0,0,-0.00559164 -150030,1816:110:4,160.5,81.5,0,0,-0.0055941 -150031,1816:111:3,161,81.5,0,0,-0.00559536 -150032,1816:111:4,161.5,81.5,0,0,-0.00559661 -150033,1816:112:3,162,81.5,0,0,-0.00559782 -150034,1816:112:4,162.5,81.5,0,0,-0.00560158 -150035,1816:113:3,163,81.5,0,0,-0.00560531 -150036,1816:113:4,163.5,81.5,0,0,-0.00561029 -150037,1816:114:3,164,81.5,0,0,-0.00562152 -150038,1816:114:4,164.5,81.5,0,0,-0.00563526 -150039,1816:215:3,165,81.5,0,0,-0.00564781 -150040,1816:215:4,165.5,81.5,0,0,-0.00565658 -150041,1816:216:3,166,81.5,0,0,-0.00566288 -150042,1816:216:4,166.5,81.5,0,0,-0.00566791 -150043,1816:217:3,167,81.5,0,0,-0.00567045 -150044,1816:217:4,167.5,81.5,0,0,-0.00567171 -150045,1816:218:3,168,81.5,0,0,-0.00567171 -150046,1816:218:4,168.5,81.5,0,0,-0.00567294 -150047,1816:219:3,169,81.5,0,0,-0.00567548 -150048,1816:219:4,169.5,81.5,0,0,-0.00567803 -150049,1817:110:3,170,81.5,0,0,-0.00568053 -150050,1817:110:4,170.5,81.5,0,0,-0.0056818 -150051,1817:111:3,171,81.5,0,0,-0.0056818 -150052,1817:111:4,171.5,81.5,0,0,-0.00567926 -150053,1817:112:3,172,81.5,0,0,-0.00567803 -150054,1817:112:4,172.5,81.5,0,0,-0.00567803 -150055,1817:113:3,173,81.5,0,0,-0.00567803 -150056,1817:113:4,173.5,81.5,0,0,-0.00567926 -150057,1817:114:3,174,81.5,0,0,-0.00568053 -150058,1817:114:4,174.5,81.5,0,0,-0.00568053 -150059,1817:215:3,175,81.5,0,0,-0.0056818 -150060,1817:215:4,175.5,81.5,0,0,-0.00568307 -150061,1817:216:3,176,81.5,0,0,-0.00568307 -150062,1817:216:4,176.5,81.5,0,0,-0.00568307 -150063,1817:217:3,177,81.5,0,0,-0.0056843 -150064,1817:217:4,177.5,81.5,0,0,-0.0056843 -150065,1817:218:3,178,81.5,0,0,-0.0056843 -150066,1817:218:4,178.5,81.5,0,0,-0.00568307 -150067,1817:219:3,179,81.5,0,0,-0.0056818 -150068,1817:219:4,179.5,81.5,0,0,-0.00567926 -150069,1818:110:3,180,81.5,0,0,-0.00567803 -150070,7818:120:1,-180,82,0,0,-0.00567926 -150071,7817:229:2,-179.5,82,0,0,-0.00567803 -150072,7817:229:1,-179,82,0,0,-0.00567926 -150073,7817:228:2,-178.5,82,0,0,-0.00568053 -150074,7817:228:1,-178,82,0,0,-0.00568307 -150075,7817:227:2,-177.5,82,0,0,-0.00568558 -150076,7817:227:1,-177,82,0,0,-0.00568812 -150077,7817:226:2,-176.5,82,0,0,-0.00569318 -150078,7817:226:1,-176,82,0,0,-0.00569445 -150079,7817:225:2,-175.5,82,0,0,-0.00569569 -150080,7817:225:1,-175,82,0,0,-0.00569696 -150081,7817:124:2,-174.5,82,0,0,-0.00569824 -150082,7817:124:1,-174,82,0,0,-0.00569951 -150083,7817:123:2,-173.5,82,0,0,-0.00569951 -150084,7817:123:1,-173,82,0,0,-0.00570075 -150085,7817:122:2,-172.5,82,0,0,-0.00570202 -150086,7817:122:1,-172,82,0,0,-0.00570202 -150087,7817:121:2,-171.5,82,0,0,-0.00570202 -150088,7817:121:1,-171,82,0,0,-0.00570202 -150089,7817:120:2,-170.5,82,0,0,-0.00570075 -150090,7817:120:1,-170,82,0,0,-0.00569824 -150091,7816:229:2,-169.5,82,0,0,-0.00569569 -150092,7816:229:1,-169,82,0,0,-0.00569318 -150093,7816:228:2,-168.5,82,0,0,-0.0056919 -150094,7816:228:1,-168,82,0,0,-0.0056919 -150095,7816:227:2,-167.5,82,0,0,-0.00569318 -150096,7816:227:1,-167,82,0,0,-0.00569696 -150097,7816:226:2,-166.5,82,0,0,-0.00570581 -150098,7816:226:1,-166,82,0,0,-0.005716 -150099,7816:225:2,-165.5,82,0,0,-0.00572232 -150100,7816:225:1,-165,82,0,0,-0.0057198 -150101,7816:124:2,-164.5,82,0,0,-0.00570965 -150102,7816:124:1,-164,82,0,0,-0.00570965 -150103,7816:123:2,-163.5,82,0,0,-0.00570965 -150104,7816:123:1,-163,82,0,0,-0.00571724 -150105,7816:122:2,-162.5,82,0,0,-0.00572232 -150106,7816:122:1,-162,82,0,0,-0.00572741 -150107,7816:121:2,-161.5,82,0,0,-0.00573125 -150108,7816:121:1,-161,82,0,0,-0.00573635 -150109,7816:120:2,-160.5,82,0,0,-0.00574655 -150110,7816:120:1,-160,82,0,0,-0.00575037 -150111,7815:124:2,-154.5,82,0,0,-0.00567421 -150112,7815:124:1,-154,82,0,0,-0.00567803 -150113,7815:123:2,-153.5,82,0,0,-0.00568307 -150114,7815:123:1,-153,82,0,0,-0.00569445 -150115,7815:122:2,-152.5,82,0,0,-0.00570709 -150116,7815:122:1,-152,82,0,0,-0.00572232 -150117,7815:121:2,-151.5,82,0,0,-0.00573506 -150118,7815:121:1,-151,82,0,0,-0.00574783 -150119,7815:120:2,-150.5,82,0,0,-0.00575294 -150120,7815:120:1,-150,82,0,0,-0.00575294 -150121,7814:228:1,-148,82,0,0,-0.00576575 -150122,7814:227:2,-147.5,82,0,0,-0.00577601 -150123,7814:227:1,-147,82,0,0,-0.00577855 -150124,7814:226:2,-146.5,82,0,0,-0.00577855 -150125,7814:226:1,-146,82,0,0,-0.00577855 -150126,7814:225:2,-145.5,82,0,0,-0.00576575 -150127,7813:226:1,-136,82,0,0,-0.00593472 -150128,7813:225:2,-135.5,82,0,0,-0.00594794 -150129,7813:225:1,-135,82,0,0,-0.00592286 -150130,7813:123:2,-133.5,82,0,0,-0.00616739 -150131,7813:123:1,-133,82,0,0,-0.00615781 -150132,7813:122:2,-132.5,82,0,0,-0.00612095 -150133,7808:120:2,-80.5,82,0,0,-0.00632147 -150134,7808:120:1,-80,82,0,0,-0.00642351 -150135,7807:228:1,-78,82,0,0,-0.00595323 -150136,7807:227:2,-77.5,82,0,0,-0.0059506 -150137,7807:227:1,-77,82,0,0,-0.00592817 -150138,7807:226:2,-76.5,82,0,0,-0.00591106 -150139,7806:124:2,-64.5,82,0,0,-0.00572997 -150140,7806:122:2,-62.5,82,0,0,-0.00574144 -150141,7806:122:1,-62,82,0,0,-0.00573254 -150142,7806:121:2,-61.5,82,0,0,-0.005716 -150143,7806:121:1,-61,82,0,0,-0.00569696 -150144,7806:120:2,-60.5,82,0,0,-0.00568936 -150145,7806:120:1,-60,82,0,0,-0.00569063 -150146,7805:229:2,-59.5,82,0,0,-0.00569951 -150147,7805:229:1,-59,82,0,0,-0.00570202 -150148,7805:228:2,-58.5,82,0,0,-0.0057033 -150149,7805:228:1,-58,82,0,0,-0.00570075 -150150,7805:226:2,-56.5,82,0,0,-0.00573378 -150151,7805:226:1,-56,82,0,0,-0.00572616 -150152,7805:225:2,-55.5,82,0,0,-0.005716 -150153,7805:225:1,-55,82,0,0,-0.00571724 -150154,7805:124:2,-54.5,82,0,0,-0.00572108 -150155,7805:124:1,-54,82,0,0,-0.0057236 -150156,7805:123:2,-53.5,82,0,0,-0.0057198 -150157,7805:122:1,-52,82,0,0,-0.00571472 -150158,7805:121:2,-51.5,82,0,0,-0.00571472 -150159,7805:121:1,-51,82,0,0,-0.00571852 -150160,7805:120:2,-50.5,82,0,0,-0.0057198 -150161,7804:229:2,-49.5,82,0,0,-0.0057198 -150162,7804:229:1,-49,82,0,0,-0.00572616 -150163,7804:227:2,-47.5,82,0,0,-0.00571852 -150164,7804:227:1,-47,82,0,0,-0.00575037 -150165,7804:226:2,-46.5,82,0,0,-0.00575294 -150166,7804:226:1,-46,82,0,0,-0.00574526 -150167,7804:225:2,-45.5,82,0,0,-0.00572869 -150168,7804:225:1,-45,82,0,0,-0.00570837 -150169,7804:124:2,-44.5,82,0,0,-0.00569569 -150170,7804:124:1,-44,82,0,0,-0.00569063 -150171,7804:123:2,-43.5,82,0,0,-0.00569063 -150172,7804:123:1,-43,82,0,0,-0.0056919 -150173,7804:122:2,-42.5,82,0,0,-0.00569318 -150174,7804:122:1,-42,82,0,0,-0.00569318 -150175,7804:121:2,-41.5,82,0,0,-0.00569318 -150176,7804:121:1,-41,82,0,0,-0.00569445 -150177,7804:120:2,-40.5,82,0,0,-0.00569445 -150178,7804:120:1,-40,82,0,0,-0.00569445 -150179,7803:229:2,-39.5,82,0,0,-0.00569445 -150180,7803:229:1,-39,82,0,0,-0.00569318 -150181,7803:228:2,-38.5,82,0,0,-0.00569318 -150182,7803:228:1,-38,82,0,0,-0.00569445 -150183,7803:227:2,-37.5,82,0,0,-0.00569318 -150184,7803:227:1,-37,82,0,0,-0.00569318 -150185,7803:226:2,-36.5,82,0,0,-0.0056919 -150186,7803:226:1,-36,82,0,0,-0.00568936 -150187,7803:225:2,-35.5,82,0,0,-0.00568812 -150188,7803:225:1,-35,82,0,0,-0.00568558 -150189,7803:124:2,-34.5,82,0,0,-0.0056843 -150190,7803:124:1,-34,82,0,0,-0.0056843 -150191,7803:123:2,-33.5,82,0,0,-0.0056843 -150192,7803:123:1,-33,82,0,0,-0.0056843 -150193,7803:122:2,-32.5,82,0,0,-0.0056843 -150194,7803:122:1,-32,82,0,0,-0.0056843 -150195,7803:121:2,-31.5,82,0,0,-0.00568558 -150196,7803:121:1,-31,82,0,0,-0.00568685 -150197,7803:120:2,-30.5,82,0,0,-0.00568685 -150198,7803:120:1,-30,82,0,0,-0.00568558 -150199,7802:229:2,-29.5,82,0,0,-0.00568558 -150200,7802:229:1,-29,82,0,0,-0.0056843 -150201,7802:228:2,-28.5,82,0,0,-0.0056843 -150202,7802:228:1,-28,82,0,0,-0.00568558 -150203,7802:227:2,-27.5,82,0,0,-0.00568685 -150204,7802:227:1,-27,82,0,0,-0.00568812 -150205,7802:226:2,-26.5,82,0,0,-0.00568936 -150206,7802:226:1,-26,82,0,0,-0.00568936 -150207,7802:225:2,-25.5,82,0,0,-0.00568812 -150208,7802:225:1,-25,82,0,0,-0.00568812 -150209,7802:124:2,-24.5,82,0,0,-0.00568685 -150210,7802:124:1,-24,82,0,0,-0.0056843 -150211,7802:123:2,-23.5,82,0,0,-0.00568053 -150212,7802:123:1,-23,82,0,0,-0.00567548 -150213,7802:122:2,-22.5,82,0,0,-0.00567045 -150214,7802:122:1,-22,82,0,0,-0.00566791 -150215,7802:121:2,-21.5,82,0,0,-0.00566541 -150216,7802:121:1,-21,82,0,0,-0.00566165 -150217,7802:120:2,-20.5,82,0,0,-0.00565409 -150218,7802:120:1,-20,82,0,0,-0.00564532 -150219,7801:229:2,-19.5,82,0,0,-0.00563652 -150220,7801:229:1,-19,82,0,0,-0.00563151 -150221,7801:228:2,-18.5,82,0,0,-0.00562651 -150222,7801:228:1,-18,82,0,0,-0.00562026 -150223,7801:227:2,-17.5,82,0,0,-0.00561154 -150224,7801:227:1,-17,82,0,0,-0.00560033 -150225,7801:226:2,-16.5,82,0,0,-0.00558418 -150226,7801:226:1,-16,82,0,0,-0.00556932 -150227,7801:225:2,-15.5,82,0,0,-0.00556188 -150228,7801:225:1,-15,82,0,0,-0.00556188 -150229,7801:124:2,-14.5,82,0,0,-0.00556437 -150230,7801:124:1,-14,82,0,0,-0.00556558 -150231,7801:123:2,-13.5,82,0,0,-0.00555943 -150232,7801:123:1,-13,82,0,0,-0.00554708 -150233,7801:122:2,-12.5,82,0,0,-0.00553108 -150234,7801:122:1,-12,82,0,0,-0.0055225 -150235,7801:121:2,-11.5,82,0,0,-0.0055225 -150236,7801:121:1,-11,82,0,0,-0.00552127 -150237,7801:120:2,-10.5,82,0,0,-0.0055188 -150238,7801:120:1,-10,82,0,0,-0.00551756 -150239,7800:229:2,-9.5,82,0,0,-0.00551756 -150240,7800:229:1,-9,82,0,0,-0.0055188 -150241,7800:228:2,-8.5,82,0,0,-0.00552003 -150242,7800:228:1,-8,82,0,0,-0.00552127 -150243,7800:227:2,-7.5,82,0,0,-0.00552494 -150244,7800:227:1,-7,82,0,0,-0.0055434 -150245,7800:226:2,-6.5,82,0,0,-0.00558789 -150246,7800:226:1,-6,82,0,0,-0.00565785 -150247,7800:225:2,-5.5,82,0,0,-0.00574526 -150248,7800:225:1,-5,82,0,0,-0.00579142 -150249,7800:124:2,-4.5,82,0,0,-0.00578628 -150250,7800:124:1,-4,82,0,0,-0.00575548 -150251,7800:123:2,-3.5,82,0,0,-0.00574016 -150252,7800:123:1,-3,82,0,0,-0.0057236 -150253,7800:122:2,-2.5,82,0,0,-0.00572616 -150254,7800:122:1,-2,82,0,0,-0.00574016 -150255,7800:121:2,-1.5,82,0,0,-0.00575677 -150256,7800:121:1,-1,82,0,0,-0.00578369 -150257,7800:120:2,-0.5,82,0,0,-0.00577726 -150258,1800:120:2,0,82,0,0,-0.00574655 -150259,1800:120:2,0.5,82,0,0,-0.00570837 -150260,1800:121:1,1,82,0,0,-0.00566918 -150261,1800:121:2,1.5,82,0,0,-0.00565282 -150262,1800:122:1,2,82,0,0,-0.00567171 -150263,1800:122:2,2.5,82,0,0,-0.00566918 -150264,1800:123:1,3,82,0,0,-0.00564654 -150265,1800:123:2,3.5,82,0,0,-0.00565658 -150266,1800:124:1,4,82,0,0,-0.00583403 -150267,1800:124:2,4.5,82,0,0,-0.00613184 -150268,1800:225:1,5,82,0,0,-0.00635812 -150269,1800:225:2,5.5,82,0,0,-0.00643494 -150270,1800:226:1,6,82,0,0,-0.00642635 -150271,1800:226:2,6.5,82,0,0,-0.00635389 -150272,1800:227:1,7,82,0,0,-0.00634261 -150273,1800:227:2,7.5,82,0,0,-0.00646221 -150274,1800:228:1,8,82,0,0,-0.00646936 -150275,1800:228:2,8.5,82,0,0,-0.00586653 -150276,1800:229:1,9,82,0,0,-0.0057198 -150277,1800:229:2,9.5,82,0,0,-0.00577213 -150278,1801:120:1,10,82,0,0,-0.00585222 -150279,1801:120:2,10.5,82,0,0,-0.00591892 -150280,1801:121:1,11,82,0,0,-0.00602109 -150281,1801:121:2,11.5,82,0,0,-0.00614413 -150282,1801:122:1,12,82,0,0,-0.0062711 -150283,1801:122:2,12.5,82,0,0,-0.00638791 -150284,1801:123:1,13,82,0,0,-0.00647511 -150285,1801:123:2,13.5,82,0,0,-0.00657524 -150286,1801:124:1,14,82,0,0,-0.00663252 -150287,1801:124:2,14.5,82,0,0,-0.00655625 -150288,1801:225:2,15.5,82,0,0,-0.00670221 -150289,1802:229:2,29.5,82,0,0,-0.00829157 -150290,1803:120:1,30,82,0,0,-0.00829338 -150291,1803:120:2,30.5,82,0,0,-0.00829524 -150292,1811:228:1,118,82,0,0,-0.00829157 -150293,1811:228:2,118.5,82,0,0,-0.00829157 -150294,1811:229:1,119,82,0,0,-0.00828785 -150295,1811:229:2,119.5,82,0,0,-0.00828599 -150296,1812:120:1,120,82,0,0,-0.00828785 -150297,1812:120:2,120.5,82,0,0,-0.00828971 -150298,1812:121:1,121,82,0,0,-0.00828785 -150299,1812:121:2,121.5,82,0,0,-0.00828599 -150300,1812:228:2,128.5,82,0,0,-0.00713617 -150301,1812:229:1,129,82,0,0,-0.00694043 -150302,1812:229:2,129.5,82,0,0,-0.00684841 -150303,1813:120:1,130,82,0,0,-0.00682558 -150304,1813:120:2,130.5,82,0,0,-0.00713142 -150305,1813:121:1,131,82,0,0,-0.00707768 -150306,1813:121:2,131.5,82,0,0,-0.00680439 -150307,1813:122:1,132,82,0,0,-0.00670371 -150308,1813:122:2,132.5,82,0,0,-0.00657381 -150309,1813:123:1,133,82,0,0,-0.00648668 -150310,1813:123:2,133.5,82,0,0,-0.00647226 -150311,1813:124:1,134,82,0,0,-0.00635954 -150312,1813:124:2,134.5,82,0,0,-0.00617702 -150313,1813:225:1,135,82,0,0,-0.00609518 -150314,1813:225:2,135.5,82,0,0,-0.00603986 -150315,1813:226:1,136,82,0,0,-0.00594794 -150316,1813:226:2,136.5,82,0,0,-0.00584314 -150317,1813:227:1,137,82,0,0,-0.00582237 -150318,1813:227:2,137.5,82,0,0,-0.00578883 -150319,1813:228:1,138,82,0,0,-0.00570709 -150320,1813:228:2,138.5,82,0,0,-0.00566541 -150321,1813:229:1,139,82,0,0,-0.00568053 -150322,1813:229:2,139.5,82,0,0,-0.00591234 -150323,1814:120:1,140,82,0,0,-0.00613322 -150324,1814:120:2,140.5,82,0,0,-0.00620314 -150325,1814:121:1,141,82,0,0,-0.00616467 -150326,1814:121:2,141.5,82,0,0,-0.00609109 -150327,1814:122:1,142,82,0,0,-0.00605599 -150328,1814:122:2,142.5,82,0,0,-0.00602378 -150329,1814:123:1,143,82,0,0,-0.00598639 -150330,1814:123:2,143.5,82,0,0,-0.00595852 -150331,1814:124:1,144,82,0,0,-0.00594794 -150332,1814:124:2,144.5,82,0,0,-0.00573378 -150333,1814:225:1,145,82,0,0,-0.00562777 -150334,1814:225:2,145.5,82,0,0,-0.00579397 -150335,1814:226:1,146,82,0,0,-0.00572616 -150336,1814:226:2,146.5,82,0,0,-0.00554584 -150337,1814:227:1,147,82,0,0,-0.00562777 -150338,1814:227:2,147.5,82,0,0,-0.00556807 -150339,1814:228:1,148,82,0,0,-0.00556188 -150340,1814:228:2,148.5,82,0,0,-0.00566668 -150341,1814:229:1,149,82,0,0,-0.00584053 -150342,1814:229:2,149.5,82,0,0,-0.00583534 -150343,1815:120:1,150,82,0,0,-0.00577855 -150344,1815:120:2,150.5,82,0,0,-0.00565156 -150345,1815:121:1,151,82,0,0,-0.0055557 -150346,1815:121:2,151.5,82,0,0,-0.00554092 -150347,1815:122:1,152,82,0,0,-0.00552861 -150348,1815:122:2,152.5,82,0,0,-0.00552741 -150349,1815:123:1,153,82,0,0,-0.00552617 -150350,1815:123:2,153.5,82,0,0,-0.0055237 -150351,1815:124:1,154,82,0,0,-0.00551756 -150352,1815:124:2,154.5,82,0,0,-0.00551637 -150353,1815:225:1,155,82,0,0,-0.0055225 -150354,1815:225:2,155.5,82,0,0,-0.00553108 -150355,1815:226:1,156,82,0,0,-0.00553352 -150356,1815:226:2,156.5,82,0,0,-0.00553232 -150357,1815:227:1,157,82,0,0,-0.00553108 -150358,1815:227:2,157.5,82,0,0,-0.005536 -150359,1815:228:1,158,82,0,0,-0.00554584 -150360,1815:228:2,158.5,82,0,0,-0.00555819 -150361,1815:229:1,159,82,0,0,-0.00557052 -150362,1815:229:2,159.5,82,0,0,-0.00558047 -150363,1816:120:1,160,82,0,0,-0.00558789 -150364,1816:120:2,160.5,82,0,0,-0.00559164 -150365,1816:121:1,161,82,0,0,-0.00559285 -150366,1816:121:2,161.5,82,0,0,-0.00559285 -150367,1816:122:1,162,82,0,0,-0.00559285 -150368,1816:122:2,162.5,82,0,0,-0.0055941 -150369,1816:123:1,163,82,0,0,-0.00559782 -150370,1816:123:2,163.5,82,0,0,-0.0056028 -150371,1816:124:1,164,82,0,0,-0.0056128 -150372,1816:124:2,164.5,82,0,0,-0.00562777 -150373,1816:225:1,165,82,0,0,-0.00564279 -150374,1816:225:2,165.5,82,0,0,-0.00565409 -150375,1816:226:1,166,82,0,0,-0.00566038 -150376,1816:226:2,166.5,82,0,0,-0.00566541 -150377,1816:227:1,167,82,0,0,-0.00566918 -150378,1816:227:2,167.5,82,0,0,-0.00567171 -150379,1816:228:1,168,82,0,0,-0.00567171 -150380,1816:228:2,168.5,82,0,0,-0.00567421 -150381,1816:229:1,169,82,0,0,-0.00567548 -150382,1816:229:2,169.5,82,0,0,-0.00567803 -150383,1817:120:1,170,82,0,0,-0.00568053 -150384,1817:120:2,170.5,82,0,0,-0.0056818 -150385,1817:121:1,171,82,0,0,-0.0056818 -150386,1817:121:2,171.5,82,0,0,-0.00568053 -150387,1817:122:1,172,82,0,0,-0.00567926 -150388,1817:122:2,172.5,82,0,0,-0.00567926 -150389,1817:123:1,173,82,0,0,-0.00567926 -150390,1817:123:2,173.5,82,0,0,-0.00568053 -150391,1817:124:1,174,82,0,0,-0.0056818 -150392,1817:124:2,174.5,82,0,0,-0.0056818 -150393,1817:225:1,175,82,0,0,-0.00568307 -150394,1817:225:2,175.5,82,0,0,-0.00568307 -150395,1817:226:1,176,82,0,0,-0.00568307 -150396,1817:226:2,176.5,82,0,0,-0.00568307 -150397,1817:227:1,177,82,0,0,-0.00568307 -150398,1817:227:2,177.5,82,0,0,-0.0056843 -150399,1817:228:1,178,82,0,0,-0.0056843 -150400,1817:228:2,178.5,82,0,0,-0.00568307 -150401,1817:229:1,179,82,0,0,-0.0056818 -150402,1817:229:2,179.5,82,0,0,-0.00568053 -150403,1818:120:1,180,82,0,0,-0.00567926 -150404,7818:120:3,-180,82.5,0,0,-0.00568053 -150405,7817:229:4,-179.5,82.5,0,0,-0.00567926 -150406,7817:229:3,-179,82.5,0,0,-0.00568053 -150407,7817:228:4,-178.5,82.5,0,0,-0.00568307 -150408,7817:228:3,-178,82.5,0,0,-0.00568685 -150409,7817:227:4,-177.5,82.5,0,0,-0.00568936 -150410,7817:227:3,-177,82.5,0,0,-0.0056919 -150411,7817:226:4,-176.5,82.5,0,0,-0.00569445 -150412,7817:226:3,-176,82.5,0,0,-0.00569445 -150413,7817:225:4,-175.5,82.5,0,0,-0.00569569 -150414,7817:225:3,-175,82.5,0,0,-0.00569696 -150415,7817:124:4,-174.5,82.5,0,0,-0.00569696 -150416,7817:124:3,-174,82.5,0,0,-0.00569696 -150417,7817:123:4,-173.5,82.5,0,0,-0.00569824 -150418,7817:123:3,-173,82.5,0,0,-0.00569951 -150419,7817:122:4,-172.5,82.5,0,0,-0.00569951 -150420,7817:122:3,-172,82.5,0,0,-0.00570075 -150421,7817:121:4,-171.5,82.5,0,0,-0.00570075 -150422,7817:121:3,-171,82.5,0,0,-0.00570075 -150423,7817:120:4,-170.5,82.5,0,0,-0.00569696 -150424,7817:120:3,-170,82.5,0,0,-0.00569569 -150425,7816:229:4,-169.5,82.5,0,0,-0.00569318 -150426,7816:229:3,-169,82.5,0,0,-0.0056919 -150427,7816:228:4,-168.5,82.5,0,0,-0.00569318 -150428,7816:228:3,-168,82.5,0,0,-0.0057033 -150429,7816:227:4,-167.5,82.5,0,0,-0.00571344 -150430,7816:227:3,-167,82.5,0,0,-0.00571852 -150431,7816:226:4,-166.5,82.5,0,0,-0.00572741 -150432,7816:226:3,-166,82.5,0,0,-0.00573378 -150433,7816:225:4,-165.5,82.5,0,0,-0.00573763 -150434,7816:225:3,-165,82.5,0,0,-0.00573635 -150435,7816:124:4,-164.5,82.5,0,0,-0.00573125 -150436,7816:124:3,-164,82.5,0,0,-0.00572741 -150437,7816:123:4,-163.5,82.5,0,0,-0.0057236 -150438,7816:123:3,-163,82.5,0,0,-0.00572232 -150439,7816:122:4,-162.5,82.5,0,0,-0.00572232 -150440,7816:122:3,-162,82.5,0,0,-0.00572232 -150441,7816:121:4,-161.5,82.5,0,0,-0.00572488 -150442,7816:121:3,-161,82.5,0,0,-0.00573125 -150443,7816:120:4,-160.5,82.5,0,0,-0.00573506 -150444,7816:120:3,-160,82.5,0,0,-0.00574016 -150445,7815:229:4,-159.5,82.5,0,0,-0.00573763 -150446,7815:229:3,-159,82.5,0,0,-0.00573763 -150447,7815:228:4,-158.5,82.5,0,0,-0.00574273 -150448,7815:228:3,-158,82.5,0,0,-0.00575423 -150449,7815:227:4,-157.5,82.5,0,0,-0.00576575 -150450,7815:124:4,-154.5,82.5,0,0,-0.00567803 -150451,7815:124:3,-154,82.5,0,0,-0.00567926 -150452,7815:123:4,-153.5,82.5,0,0,-0.00568307 -150453,7815:123:3,-153,82.5,0,0,-0.00569569 -150454,7815:122:4,-152.5,82.5,0,0,-0.00571092 -150455,7815:122:3,-152,82.5,0,0,-0.00572741 -150456,7815:121:4,-151.5,82.5,0,0,-0.00573888 -150457,7815:121:3,-151,82.5,0,0,-0.00574655 -150458,7815:120:4,-150.5,82.5,0,0,-0.00575165 -150459,7815:120:3,-150,82.5,0,0,-0.00573888 -150460,7814:225:4,-145.5,82.5,0,0,-0.00573635 -150461,7813:226:3,-136,82.5,0,0,-0.00594 -150462,7813:225:4,-135.5,82.5,0,0,-0.00594532 -150463,7813:123:3,-133,82.5,0,0,-0.00617974 -150464,7808:121:3,-81,82.5,0,0,-0.00622523 -150465,7808:120:4,-80.5,82.5,0,0,-0.00623635 -150466,7807:228:4,-78.5,82.5,0,0,-0.00594266 -150467,7807:228:3,-78,82.5,0,0,-0.00594794 -150468,7807:227:4,-77.5,82.5,0,0,-0.00593871 -150469,7807:227:3,-77,82.5,0,0,-0.00592025 -150470,7807:226:4,-76.5,82.5,0,0,-0.00590577 -150471,7806:124:3,-64,82.5,0,0,-0.00574783 -150472,7806:122:4,-62.5,82.5,0,0,-0.00574273 -150473,7806:122:3,-62,82.5,0,0,-0.00573125 -150474,7806:121:4,-61.5,82.5,0,0,-0.00571472 -150475,7806:121:3,-61,82.5,0,0,-0.00569569 -150476,7806:120:4,-60.5,82.5,0,0,-0.00568558 -150477,7806:120:3,-60,82.5,0,0,-0.0056843 -150478,7805:229:4,-59.5,82.5,0,0,-0.00569063 -150479,7805:226:3,-56,82.5,0,0,-0.00574655 -150480,7805:225:4,-55.5,82.5,0,0,-0.00572488 -150481,7805:225:3,-55,82.5,0,0,-0.00571852 -150482,7805:124:4,-54.5,82.5,0,0,-0.00572232 -150483,7805:124:3,-54,82.5,0,0,-0.00572741 -150484,7805:123:4,-53.5,82.5,0,0,-0.00572869 -150485,7805:123:3,-53,82.5,0,0,-0.00572616 -150486,7805:122:4,-52.5,82.5,0,0,-0.0057236 -150487,7805:122:3,-52,82.5,0,0,-0.00572108 -150488,7805:121:4,-51.5,82.5,0,0,-0.00571724 -150489,7805:121:3,-51,82.5,0,0,-0.0057198 -150490,7805:120:4,-50.5,82.5,0,0,-0.0057236 -150491,7805:120:3,-50,82.5,0,0,-0.00572616 -150492,7804:229:4,-49.5,82.5,0,0,-0.00573125 -150493,7804:229:3,-49,82.5,0,0,-0.00573763 -150494,7804:228:4,-48.5,82.5,0,0,-0.00574016 -150495,7804:228:3,-48,82.5,0,0,-0.00574016 -150496,7804:227:4,-47.5,82.5,0,0,-0.00574016 -150497,7804:227:3,-47,82.5,0,0,-0.00574655 -150498,7804:226:4,-46.5,82.5,0,0,-0.00574273 -150499,7804:226:3,-46,82.5,0,0,-0.00573254 -150500,7804:225:4,-45.5,82.5,0,0,-0.00571092 -150501,7804:225:3,-45,82.5,0,0,-0.00569318 -150502,7804:124:4,-44.5,82.5,0,0,-0.00569063 -150503,7804:124:3,-44,82.5,0,0,-0.00569063 -150504,7804:123:4,-43.5,82.5,0,0,-0.00569318 -150505,7804:123:3,-43,82.5,0,0,-0.00569569 -150506,7804:122:4,-42.5,82.5,0,0,-0.00569696 -150507,7804:122:3,-42,82.5,0,0,-0.00569696 -150508,7804:121:4,-41.5,82.5,0,0,-0.00569696 -150509,7804:121:3,-41,82.5,0,0,-0.00569696 -150510,7804:120:4,-40.5,82.5,0,0,-0.00569569 -150511,7804:120:3,-40,82.5,0,0,-0.00569569 -150512,7803:229:4,-39.5,82.5,0,0,-0.00569445 -150513,7803:229:3,-39,82.5,0,0,-0.00569445 -150514,7803:228:4,-38.5,82.5,0,0,-0.00569445 -150515,7803:228:3,-38,82.5,0,0,-0.00569445 -150516,7803:227:4,-37.5,82.5,0,0,-0.00569445 -150517,7803:227:3,-37,82.5,0,0,-0.0056919 -150518,7803:226:4,-36.5,82.5,0,0,-0.0056919 -150519,7803:226:3,-36,82.5,0,0,-0.00568936 -150520,7803:225:4,-35.5,82.5,0,0,-0.00568558 -150521,7803:225:3,-35,82.5,0,0,-0.00568307 -150522,7803:124:4,-34.5,82.5,0,0,-0.0056818 -150523,7803:124:3,-34,82.5,0,0,-0.00568307 -150524,7803:123:4,-33.5,82.5,0,0,-0.00568307 -150525,7803:123:3,-33,82.5,0,0,-0.0056843 -150526,7803:122:4,-32.5,82.5,0,0,-0.0056843 -150527,7803:122:3,-32,82.5,0,0,-0.0056843 -150528,7803:121:4,-31.5,82.5,0,0,-0.0056843 -150529,7803:121:3,-31,82.5,0,0,-0.0056843 -150530,7803:120:4,-30.5,82.5,0,0,-0.0056843 -150531,7803:120:3,-30,82.5,0,0,-0.0056843 -150532,7802:229:4,-29.5,82.5,0,0,-0.00568307 -150533,7802:229:3,-29,82.5,0,0,-0.00568307 -150534,7802:228:4,-28.5,82.5,0,0,-0.00568307 -150535,7802:228:3,-28,82.5,0,0,-0.0056843 -150536,7802:227:4,-27.5,82.5,0,0,-0.0056843 -150537,7802:227:3,-27,82.5,0,0,-0.0056843 -150538,7802:226:4,-26.5,82.5,0,0,-0.0056843 -150539,7802:226:3,-26,82.5,0,0,-0.0056843 -150540,7802:225:4,-25.5,82.5,0,0,-0.0056843 -150541,7802:225:3,-25,82.5,0,0,-0.00568558 -150542,7802:124:4,-24.5,82.5,0,0,-0.00568558 -150543,7802:124:3,-24,82.5,0,0,-0.00568307 -150544,7802:123:4,-23.5,82.5,0,0,-0.00568053 -150545,7802:123:3,-23,82.5,0,0,-0.00567548 -150546,7802:122:4,-22.5,82.5,0,0,-0.00567171 -150547,7802:122:3,-22,82.5,0,0,-0.00566918 -150548,7802:121:4,-21.5,82.5,0,0,-0.00566668 -150549,7802:121:3,-21,82.5,0,0,-0.00566288 -150550,7802:120:4,-20.5,82.5,0,0,-0.00565409 -150551,7802:120:3,-20,82.5,0,0,-0.00564532 -150552,7801:229:4,-19.5,82.5,0,0,-0.00563652 -150553,7801:229:3,-19,82.5,0,0,-0.00563151 -150554,7801:228:4,-18.5,82.5,0,0,-0.00562526 -150555,7801:228:3,-18,82.5,0,0,-0.00561653 -150556,7801:227:4,-17.5,82.5,0,0,-0.00560531 -150557,7801:227:3,-17,82.5,0,0,-0.00559285 -150558,7801:226:4,-16.5,82.5,0,0,-0.00557922 -150559,7801:226:3,-16,82.5,0,0,-0.00557052 -150560,7801:225:4,-15.5,82.5,0,0,-0.00556932 -150561,7801:225:3,-15,82.5,0,0,-0.00557177 -150562,7801:124:4,-14.5,82.5,0,0,-0.00557551 -150563,7801:124:3,-14,82.5,0,0,-0.00557672 -150564,7801:123:4,-13.5,82.5,0,0,-0.00557052 -150565,7801:123:3,-13,82.5,0,0,-0.00555819 -150566,7801:122:4,-12.5,82.5,0,0,-0.00553968 -150567,7801:122:3,-12,82.5,0,0,-0.00552617 -150568,7801:121:4,-11.5,82.5,0,0,-0.00552494 -150569,7801:121:3,-11,82.5,0,0,-0.00552494 -150570,7801:120:4,-10.5,82.5,0,0,-0.0055237 -150571,7801:120:3,-10,82.5,0,0,-0.00552127 -150572,7800:229:4,-9.5,82.5,0,0,-0.00552127 -150573,7800:229:3,-9,82.5,0,0,-0.00552127 -150574,7800:228:4,-8.5,82.5,0,0,-0.00552003 -150575,7800:228:3,-8,82.5,0,0,-0.00551756 -150576,7800:227:4,-7.5,82.5,0,0,-0.0055237 -150577,7800:227:3,-7,82.5,0,0,-0.00553848 -150578,7800:226:4,-6.5,82.5,0,0,-0.0055557 -150579,7800:226:3,-6,82.5,0,0,-0.00559285 -150580,7800:225:4,-5.5,82.5,0,0,-0.00567548 -150581,7800:225:3,-5,82.5,0,0,-0.0057236 -150582,7800:124:4,-4.5,82.5,0,0,-0.00571092 -150583,7800:124:3,-4,82.5,0,0,-0.00569318 -150584,7800:123:4,-3.5,82.5,0,0,-0.00569569 -150585,7800:123:3,-3,82.5,0,0,-0.00569951 -150586,7800:122:4,-2.5,82.5,0,0,-0.00571216 -150587,7800:122:3,-2,82.5,0,0,-0.0057198 -150588,7800:121:4,-1.5,82.5,0,0,-0.0057198 -150589,7800:121:3,-1,82.5,0,0,-0.00572616 -150590,7800:120:4,-0.5,82.5,0,0,-0.00572488 -150591,1800:120:4,0,82.5,0,0,-0.00570709 -150592,1800:120:4,0.5,82.5,0,0,-0.00568812 -150593,1800:121:3,1,82.5,0,0,-0.00566288 -150594,1800:121:4,1.5,82.5,0,0,-0.00564781 -150595,1800:122:3,2,82.5,0,0,-0.00564781 -150596,1800:122:4,2.5,82.5,0,0,-0.00565409 -150597,1800:123:3,3,82.5,0,0,-0.00567045 -150598,1800:123:4,3.5,82.5,0,0,-0.00568812 -150599,1800:124:3,4,82.5,0,0,-0.00586005 -150600,1800:124:4,4.5,82.5,0,0,-0.00615644 -150601,1800:225:3,5,82.5,0,0,-0.00635674 -150602,1800:225:4,5.5,82.5,0,0,-0.00637514 -150603,1800:226:3,6,82.5,0,0,-0.00638505 -150604,1800:226:4,6.5,82.5,0,0,-0.00643067 -150605,1800:227:3,7,82.5,0,0,-0.00641781 -150606,1800:227:4,7.5,82.5,0,0,-0.00639785 -150607,1800:228:3,8,82.5,0,0,-0.00610872 -150608,1800:228:4,8.5,82.5,0,0,-0.00574398 -150609,1800:229:3,9,82.5,0,0,-0.00570709 -150610,1800:229:4,9.5,82.5,0,0,-0.00576829 -150611,1801:120:3,10,82.5,0,0,-0.005877 -150612,1801:120:4,10.5,82.5,0,0,-0.00600905 -150613,1801:121:3,11,82.5,0,0,-0.00616601 -150614,1801:121:4,11.5,82.5,0,0,-0.00625716 -150615,1801:122:3,12,82.5,0,0,-0.00630326 -150616,1801:122:4,12.5,82.5,0,0,-0.00635531 -150617,1801:123:3,13,82.5,0,0,-0.00644495 -150618,1801:123:4,13.5,82.5,0,0,-0.00656939 -150619,1801:124:3,14,82.5,0,0,-0.00667841 -150620,1801:124:4,14.5,82.5,0,0,-0.00673509 -150621,1801:225:3,15,82.5,0,0,-0.0066948 -150622,1801:225:4,15.5,82.5,0,0,-0.00679682 -150623,1801:226:3,16,82.5,0,0,-0.0069035 -150624,1801:228:4,18.5,82.5,0,0,-0.00825288 -150625,1801:229:3,19,82.5,0,0,-0.00828599 -150626,1801:229:4,19.5,82.5,0,0,-0.00829157 -150627,1802:228:3,28,82.5,0,0,-0.00828785 -150628,1802:228:4,28.5,82.5,0,0,-0.00828785 -150629,1802:229:3,29,82.5,0,0,-0.00828971 -150630,1802:229:4,29.5,82.5,0,0,-0.00829157 -150631,1803:120:3,30,82.5,0,0,-0.00829338 -150632,1811:226:4,116.5,82.5,0,0,-0.00829524 -150633,1811:227:3,117,82.5,0,0,-0.00829338 -150634,1811:227:4,117.5,82.5,0,0,-0.00828971 -150635,1811:228:3,118,82.5,0,0,-0.00828785 -150636,1811:228:4,118.5,82.5,0,0,-0.00828599 -150637,1811:229:3,119,82.5,0,0,-0.00828419 -150638,1811:229:4,119.5,82.5,0,0,-0.00828419 -150639,1812:120:3,120,82.5,0,0,-0.00828419 -150640,1812:120:4,120.5,82.5,0,0,-0.00828785 -150641,1812:121:3,121,82.5,0,0,-0.00828785 -150642,1812:121:4,121.5,82.5,0,0,-0.00828785 -150643,1812:122:3,122,82.5,0,0,-0.00828971 -150644,1812:122:4,122.5,82.5,0,0,-0.00829157 -150645,1812:123:3,123,82.5,0,0,-0.00829157 -150646,1812:123:4,123.5,82.5,0,0,-0.00829157 -150647,1812:124:3,124,82.5,0,0,-0.00829157 -150648,1812:124:4,124.5,82.5,0,0,-0.00829338 -150649,1812:225:3,125,82.5,0,0,-0.00829157 -150650,1812:225:4,125.5,82.5,0,0,-0.00828971 -150651,1812:226:3,126,82.5,0,0,-0.00828971 -150652,1812:228:3,128,82.5,0,0,-0.00799589 -150653,1812:228:4,128.5,82.5,0,0,-0.0075428 -150654,1812:229:3,129,82.5,0,0,-0.00719515 -150655,1812:229:4,129.5,82.5,0,0,-0.00704622 -150656,1813:120:3,130,82.5,0,0,-0.00685297 -150657,1813:120:4,130.5,82.5,0,0,-0.00698383 -150658,1813:121:3,131,82.5,0,0,-0.00699626 -150659,1813:121:4,131.5,82.5,0,0,-0.00689886 -150660,1813:122:3,132,82.5,0,0,-0.00680892 -150661,1813:122:4,132.5,82.5,0,0,-0.00673212 -150662,1813:123:3,133,82.5,0,0,-0.00662073 -150663,1813:123:4,133.5,82.5,0,0,-0.00652717 -150664,1813:124:3,134,82.5,0,0,-0.00640354 -150665,1813:124:4,134.5,82.5,0,0,-0.00629484 -150666,1813:225:3,135,82.5,0,0,-0.00621696 -150667,1813:225:4,135.5,82.5,0,0,-0.00613596 -150668,1813:226:3,136,82.5,0,0,-0.00600775 -150669,1813:226:4,136.5,82.5,0,0,-0.00590053 -150670,1813:227:3,137,82.5,0,0,-0.00579657 -150671,1813:227:4,137.5,82.5,0,0,-0.00570837 -150672,1813:228:3,138,82.5,0,0,-0.00568812 -150673,1813:228:4,138.5,82.5,0,0,-0.00578628 -150674,1813:229:3,139,82.5,0,0,-0.00600371 -150675,1813:229:4,139.5,82.5,0,0,-0.00621418 -150676,1814:120:3,140,82.5,0,0,-0.00630887 -150677,1814:120:4,140.5,82.5,0,0,-0.00629203 -150678,1814:121:3,141,82.5,0,0,-0.00627668 -150679,1814:121:4,141.5,82.5,0,0,-0.00616739 -150680,1814:122:3,142,82.5,0,0,-0.0060884 -150681,1814:122:4,142.5,82.5,0,0,-0.00607215 -150682,1814:123:3,143,82.5,0,0,-0.00606812 -150683,1814:123:4,143.5,82.5,0,0,-0.00603315 -150684,1814:124:3,144,82.5,0,0,-0.00602244 -150685,1814:124:4,144.5,82.5,0,0,-0.00604523 -150686,1814:225:3,145,82.5,0,0,-0.00596912 -150687,1814:225:4,145.5,82.5,0,0,-0.00595323 -150688,1814:226:3,146,82.5,0,0,-0.00593605 -150689,1814:226:4,146.5,82.5,0,0,-0.00583146 -150690,1814:227:3,147,82.5,0,0,-0.00588873 -150691,1814:227:4,147.5,82.5,0,0,-0.00591234 -150692,1814:228:3,148,82.5,0,0,-0.00590449 -150693,1814:228:4,148.5,82.5,0,0,-0.00591367 -150694,1814:229:3,149,82.5,0,0,-0.00589529 -150695,1814:229:4,149.5,82.5,0,0,-0.00580042 -150696,1815:120:3,150,82.5,0,0,-0.00565911 -150697,1815:120:4,150.5,82.5,0,0,-0.00561653 -150698,1815:121:3,151,82.5,0,0,-0.0056128 -150699,1815:121:4,151.5,82.5,0,0,-0.00560531 -150700,1815:122:3,152,82.5,0,0,-0.00555201 -150701,1815:122:4,152.5,82.5,0,0,-0.005536 -150702,1815:123:3,153,82.5,0,0,-0.00553352 -150703,1815:123:4,153.5,82.5,0,0,-0.00552494 -150704,1815:124:3,154,82.5,0,0,-0.00551513 -150705,1815:124:4,154.5,82.5,0,0,-0.00551637 -150706,1815:225:3,155,82.5,0,0,-0.0055237 -150707,1815:225:4,155.5,82.5,0,0,-0.00552861 -150708,1815:226:3,156,82.5,0,0,-0.00552985 -150709,1815:226:4,156.5,82.5,0,0,-0.00552985 -150710,1815:227:3,157,82.5,0,0,-0.00552861 -150711,1815:227:4,157.5,82.5,0,0,-0.00552861 -150712,1815:228:3,158,82.5,0,0,-0.00553476 -150713,1815:228:4,158.5,82.5,0,0,-0.00554953 -150714,1815:229:3,159,82.5,0,0,-0.00556437 -150715,1815:229:4,159.5,82.5,0,0,-0.00557672 -150716,1816:120:3,160,82.5,0,0,-0.00558543 -150717,1816:120:4,160.5,82.5,0,0,-0.00558789 -150718,1816:121:3,161,82.5,0,0,-0.00558664 -150719,1816:121:4,161.5,82.5,0,0,-0.00558418 -150720,1816:122:3,162,82.5,0,0,-0.00558293 -150721,1816:122:4,162.5,82.5,0,0,-0.00558543 -150722,1816:123:3,163,82.5,0,0,-0.00559039 -150723,1816:123:4,163.5,82.5,0,0,-0.00559782 -150724,1816:124:3,164,82.5,0,0,-0.00560903 -150725,1816:124:4,164.5,82.5,0,0,-0.00562651 -150726,1816:225:3,165,82.5,0,0,-0.0056403 -150727,1816:225:4,165.5,82.5,0,0,-0.00564781 -150728,1816:226:3,166,82.5,0,0,-0.00565282 -150729,1816:226:4,166.5,82.5,0,0,-0.00565785 -150730,1816:227:3,167,82.5,0,0,-0.00566414 -150731,1816:227:4,167.5,82.5,0,0,-0.00566918 -150732,1816:228:3,168,82.5,0,0,-0.00567171 -150733,1816:228:4,168.5,82.5,0,0,-0.00567294 -150734,1816:229:3,169,82.5,0,0,-0.00567548 -150735,1816:229:4,169.5,82.5,0,0,-0.00567926 -150736,1817:120:3,170,82.5,0,0,-0.0056818 -150737,1817:120:4,170.5,82.5,0,0,-0.00568307 -150738,1817:121:3,171,82.5,0,0,-0.00568307 -150739,1817:121:4,171.5,82.5,0,0,-0.0056818 -150740,1817:122:3,172,82.5,0,0,-0.00568053 -150741,1817:122:4,172.5,82.5,0,0,-0.00568053 -150742,1817:123:3,173,82.5,0,0,-0.00568053 -150743,1817:123:4,173.5,82.5,0,0,-0.0056818 -150744,1817:124:3,174,82.5,0,0,-0.0056818 -150745,1817:124:4,174.5,82.5,0,0,-0.0056818 -150746,1817:225:3,175,82.5,0,0,-0.00568307 -150747,1817:225:4,175.5,82.5,0,0,-0.00568307 -150748,1817:226:3,176,82.5,0,0,-0.0056843 -150749,1817:226:4,176.5,82.5,0,0,-0.00568307 -150750,1817:227:3,177,82.5,0,0,-0.00568307 -150751,1817:227:4,177.5,82.5,0,0,-0.00568307 -150752,1817:228:3,178,82.5,0,0,-0.00568307 -150753,1817:228:4,178.5,82.5,0,0,-0.0056843 -150754,1817:229:3,179,82.5,0,0,-0.00568307 -150755,1817:229:4,179.5,82.5,0,0,-0.0056818 -150756,1818:120:3,180,82.5,0,0,-0.00568053 -150757,7818:130:1,-180,83,0,0,-0.0056818 -150758,7817:239:2,-179.5,83,0,0,-0.0056818 -150759,7817:239:1,-179,83,0,0,-0.00568307 -150760,7817:238:2,-178.5,83,0,0,-0.00568558 -150761,7817:238:1,-178,83,0,0,-0.00568812 -150762,7817:237:2,-177.5,83,0,0,-0.00569063 -150763,7817:237:1,-177,83,0,0,-0.0056919 -150764,7817:236:2,-176.5,83,0,0,-0.00569445 -150765,7817:236:1,-176,83,0,0,-0.00569445 -150766,7817:235:2,-175.5,83,0,0,-0.00569445 -150767,7817:235:1,-175,83,0,0,-0.00569569 -150768,7817:134:2,-174.5,83,0,0,-0.00569569 -150769,7817:134:1,-174,83,0,0,-0.00569569 -150770,7817:133:2,-173.5,83,0,0,-0.00569696 -150771,7817:133:1,-173,83,0,0,-0.00569696 -150772,7817:132:2,-172.5,83,0,0,-0.00569824 -150773,7817:132:1,-172,83,0,0,-0.00569824 -150774,7817:131:2,-171.5,83,0,0,-0.00569824 -150775,7817:131:1,-171,83,0,0,-0.00569696 -150776,7817:130:2,-170.5,83,0,0,-0.00569445 -150777,7817:130:1,-170,83,0,0,-0.0056919 -150778,7816:239:2,-169.5,83,0,0,-0.00569063 -150779,7816:239:1,-169,83,0,0,-0.0056919 -150780,7816:238:2,-168.5,83,0,0,-0.00570581 -150781,7816:238:1,-168,83,0,0,-0.00572616 -150782,7816:237:2,-167.5,83,0,0,-0.00573635 -150783,7816:237:1,-167,83,0,0,-0.00574144 -150784,7816:236:2,-166.5,83,0,0,-0.00574273 -150785,7816:236:1,-166,83,0,0,-0.00574273 -150786,7816:235:2,-165.5,83,0,0,-0.00574144 -150787,7816:235:1,-165,83,0,0,-0.00573888 -150788,7816:134:2,-164.5,83,0,0,-0.00573378 -150789,7816:134:1,-164,83,0,0,-0.00572869 -150790,7816:133:2,-163.5,83,0,0,-0.00572488 -150791,7816:133:1,-163,83,0,0,-0.00572108 -150792,7816:132:2,-162.5,83,0,0,-0.00571852 -150793,7816:132:1,-162,83,0,0,-0.00572108 -150794,7816:131:2,-161.5,83,0,0,-0.0057236 -150795,7816:131:1,-161,83,0,0,-0.00572741 -150796,7816:130:2,-160.5,83,0,0,-0.00572997 -150797,7816:130:1,-160,83,0,0,-0.00572741 -150798,7815:239:2,-159.5,83,0,0,-0.0057236 -150799,7815:239:1,-159,83,0,0,-0.00572108 -150800,7815:238:2,-158.5,83,0,0,-0.00572869 -150801,7815:238:1,-158,83,0,0,-0.00575037 -150802,7815:134:2,-154.5,83,0,0,-0.00568685 -150803,7815:134:1,-154,83,0,0,-0.0056818 -150804,7815:133:2,-153.5,83,0,0,-0.00568558 -150805,7815:133:1,-153,83,0,0,-0.00569569 -150806,7815:132:2,-152.5,83,0,0,-0.00571344 -150807,7815:132:1,-152,83,0,0,-0.00572997 -150808,7815:131:2,-151.5,83,0,0,-0.00574144 -150809,7815:131:1,-151,83,0,0,-0.00574783 -150810,7815:130:1,-150,83,0,0,-0.00574912 -150811,7813:237:1,-137,83,0,0,-0.00591632 -150812,7813:236:2,-136.5,83,0,0,-0.00593472 -150813,7813:236:1,-136,83,0,0,-0.00594532 -150814,7813:235:2,-135.5,83,0,0,-0.00594133 -150815,7813:133:2,-133.5,83,0,0,-0.00622109 -150816,7813:133:1,-133,83,0,0,-0.00621283 -150817,7808:131:1,-81,83,0,0,-0.00619212 -150818,7808:130:2,-80.5,83,0,0,-0.00620453 -150819,7807:238:2,-78.5,83,0,0,-0.00594399 -150820,7807:238:1,-78,83,0,0,-0.00594266 -150821,7807:237:2,-77.5,83,0,0,-0.00592684 -150822,7806:134:1,-64,83,0,0,-0.00574912 -150823,7806:133:2,-63.5,83,0,0,-0.00575294 -150824,7806:133:1,-63,83,0,0,-0.00574655 -150825,7806:132:2,-62.5,83,0,0,-0.00574016 -150826,7806:132:1,-62,83,0,0,-0.00572869 -150827,7806:131:2,-61.5,83,0,0,-0.00571216 -150828,7806:131:1,-61,83,0,0,-0.00569569 -150829,7806:130:2,-60.5,83,0,0,-0.00568307 -150830,7806:130:1,-60,83,0,0,-0.00567926 -150831,7805:239:2,-59.5,83,0,0,-0.00567926 -150832,7805:236:2,-56.5,83,0,0,-0.00576575 -150833,7805:236:1,-56,83,0,0,-0.00575423 -150834,7805:235:2,-55.5,83,0,0,-0.00573888 -150835,7805:235:1,-55,83,0,0,-0.00573254 -150836,7805:134:2,-54.5,83,0,0,-0.00573254 -150837,7805:134:1,-54,83,0,0,-0.00573506 -150838,7805:133:2,-53.5,83,0,0,-0.00573254 -150839,7805:133:1,-53,83,0,0,-0.00572997 -150840,7805:132:2,-52.5,83,0,0,-0.00572488 -150841,7805:132:1,-52,83,0,0,-0.00572108 -150842,7805:131:2,-51.5,83,0,0,-0.00572108 -150843,7805:131:1,-51,83,0,0,-0.00572232 -150844,7805:130:2,-50.5,83,0,0,-0.00572616 -150845,7805:130:1,-50,83,0,0,-0.00572997 -150846,7804:239:2,-49.5,83,0,0,-0.00573378 -150847,7804:239:1,-49,83,0,0,-0.00573763 -150848,7804:238:2,-48.5,83,0,0,-0.00574016 -150849,7804:238:1,-48,83,0,0,-0.00573888 -150850,7804:237:2,-47.5,83,0,0,-0.00573506 -150851,7804:237:1,-47,83,0,0,-0.00572741 -150852,7804:236:2,-46.5,83,0,0,-0.00572108 -150853,7804:236:1,-46,83,0,0,-0.00571216 -150854,7804:235:2,-45.5,83,0,0,-0.00569569 -150855,7804:235:1,-45,83,0,0,-0.00569063 -150856,7804:134:2,-44.5,83,0,0,-0.0056919 -150857,7804:134:1,-44,83,0,0,-0.00569445 -150858,7804:133:2,-43.5,83,0,0,-0.00569696 -150859,7804:133:1,-43,83,0,0,-0.00569951 -150860,7804:132:2,-42.5,83,0,0,-0.00570075 -150861,7804:132:1,-42,83,0,0,-0.00570075 -150862,7804:131:2,-41.5,83,0,0,-0.00569951 -150863,7804:131:1,-41,83,0,0,-0.00569824 -150864,7804:130:2,-40.5,83,0,0,-0.00569824 -150865,7804:130:1,-40,83,0,0,-0.00569696 -150866,7803:239:2,-39.5,83,0,0,-0.00569569 -150867,7803:239:1,-39,83,0,0,-0.00569569 -150868,7803:238:2,-38.5,83,0,0,-0.00569569 -150869,7803:238:1,-38,83,0,0,-0.00569569 -150870,7803:237:2,-37.5,83,0,0,-0.00569445 -150871,7803:237:1,-37,83,0,0,-0.0056919 -150872,7803:236:2,-36.5,83,0,0,-0.00569063 -150873,7803:236:1,-36,83,0,0,-0.00568685 -150874,7803:235:2,-35.5,83,0,0,-0.0056843 -150875,7803:235:1,-35,83,0,0,-0.0056818 -150876,7803:134:2,-34.5,83,0,0,-0.00568053 -150877,7803:134:1,-34,83,0,0,-0.00568053 -150878,7803:133:2,-33.5,83,0,0,-0.0056818 -150879,7803:133:1,-33,83,0,0,-0.00568307 -150880,7803:132:2,-32.5,83,0,0,-0.0056843 -150881,7803:132:1,-32,83,0,0,-0.00568307 -150882,7803:131:2,-31.5,83,0,0,-0.00568307 -150883,7803:131:1,-31,83,0,0,-0.00568307 -150884,7803:130:2,-30.5,83,0,0,-0.0056843 -150885,7803:130:1,-30,83,0,0,-0.0056843 -150886,7802:239:2,-29.5,83,0,0,-0.00568307 -150887,7802:239:1,-29,83,0,0,-0.00568307 -150888,7802:238:2,-28.5,83,0,0,-0.00568307 -150889,7802:238:1,-28,83,0,0,-0.0056818 -150890,7802:237:2,-27.5,83,0,0,-0.0056818 -150891,7802:237:1,-27,83,0,0,-0.0056818 -150892,7802:236:2,-26.5,83,0,0,-0.00568053 -150893,7802:236:1,-26,83,0,0,-0.00568053 -150894,7802:235:2,-25.5,83,0,0,-0.0056818 -150895,7802:235:1,-25,83,0,0,-0.00568307 -150896,7802:134:2,-24.5,83,0,0,-0.0056843 -150897,7802:134:1,-24,83,0,0,-0.0056818 -150898,7802:133:2,-23.5,83,0,0,-0.00567926 -150899,7802:133:1,-23,83,0,0,-0.00567548 -150900,7802:132:2,-22.5,83,0,0,-0.00567294 -150901,7802:132:1,-22,83,0,0,-0.00567045 -150902,7802:131:2,-21.5,83,0,0,-0.00566918 -150903,7802:131:1,-21,83,0,0,-0.00566288 -150904,7802:130:2,-20.5,83,0,0,-0.00565535 -150905,7802:130:1,-20,83,0,0,-0.00564907 -150906,7801:239:2,-19.5,83,0,0,-0.00564405 -150907,7801:239:1,-19,83,0,0,-0.00563778 -150908,7801:238:2,-18.5,83,0,0,-0.00562526 -150909,7801:238:1,-18,83,0,0,-0.00561029 -150910,7801:237:2,-17.5,83,0,0,-0.00559782 -150911,7801:237:1,-17,83,0,0,-0.00558914 -150912,7801:236:2,-16.5,83,0,0,-0.00558293 -150913,7801:236:1,-16,83,0,0,-0.00557922 -150914,7801:235:2,-15.5,83,0,0,-0.00558047 -150915,7801:235:1,-15,83,0,0,-0.00558293 -150916,7801:134:2,-14.5,83,0,0,-0.00558543 -150917,7801:134:1,-14,83,0,0,-0.00558418 -150918,7801:133:2,-13.5,83,0,0,-0.00557672 -150919,7801:133:1,-13,83,0,0,-0.00556437 -150920,7801:132:2,-12.5,83,0,0,-0.00554708 -150921,7801:132:1,-12,83,0,0,-0.00553232 -150922,7801:131:2,-11.5,83,0,0,-0.00552741 -150923,7801:131:1,-11,83,0,0,-0.00552741 -150924,7801:130:2,-10.5,83,0,0,-0.00552861 -150925,7801:130:1,-10,83,0,0,-0.00552861 -150926,7800:239:2,-9.5,83,0,0,-0.00552741 -150927,7800:239:1,-9,83,0,0,-0.00552494 -150928,7800:238:2,-8.5,83,0,0,-0.00551756 -150929,7800:238:1,-8,83,0,0,-0.00551513 -150930,7800:237:2,-7.5,83,0,0,-0.0055237 -150931,7800:237:1,-7,83,0,0,-0.00553476 -150932,7800:236:2,-6.5,83,0,0,-0.00554092 -150933,7800:236:1,-6,83,0,0,-0.00556313 -150934,7800:235:2,-5.5,83,0,0,-0.00562903 -150935,7800:235:1,-5,83,0,0,-0.00564153 -150936,7800:134:2,-4.5,83,0,0,-0.00562526 -150937,7800:134:1,-4,83,0,0,-0.00563778 -150938,7800:133:2,-3.5,83,0,0,-0.00569696 -150939,7800:133:1,-3,83,0,0,-0.00581981 -150940,7800:132:2,-2.5,83,0,0,-0.00588091 -150941,7800:132:1,-2,83,0,0,-0.00589005 -150942,7800:131:2,-1.5,83,0,0,-0.00591106 -150943,7800:131:1,-1,83,0,0,-0.00591106 -150944,7800:130:2,-0.5,83,0,0,-0.00591367 -150945,1800:130:2,0,83,0,0,-0.00593472 -150946,1800:130:2,0.5,83,0,0,-0.00594532 -150947,1800:131:1,1,83,0,0,-0.00596252 -150948,1800:131:2,1.5,83,0,0,-0.00595719 -150949,1800:132:1,2,83,0,0,-0.00592286 -150950,1800:132:2,2.5,83,0,0,-0.0059176 -150951,1800:133:1,3,83,0,0,-0.00597179 -150952,1800:133:2,3.5,83,0,0,-0.00598241 -150953,1800:134:1,4,83,0,0,-0.0060104 -150954,1800:134:2,4.5,83,0,0,-0.00614959 -150955,1800:235:1,5,83,0,0,-0.00631307 -150956,1800:235:2,5.5,83,0,0,-0.00633134 -150957,1800:236:1,6,83,0,0,-0.00634403 -150958,1800:236:2,6.5,83,0,0,-0.00631726 -150959,1800:237:1,7,83,0,0,-0.00611145 -150960,1800:237:2,7.5,83,0,0,-0.00579397 -150961,1800:238:1,8,83,0,0,-0.00567171 -150962,1800:238:2,8.5,83,0,0,-0.00569318 -150963,1800:239:1,9,83,0,0,-0.00576959 -150964,1800:239:2,9.5,83,0,0,-0.00587959 -150965,1801:130:1,10,83,0,0,-0.0059944 -150966,1801:130:2,10.5,83,0,0,-0.00614959 -150967,1801:131:1,11,83,0,0,-0.0062502 -150968,1801:131:2,11.5,83,0,0,-0.00632992 -150969,1801:132:1,12,83,0,0,-0.00640923 -150970,1801:132:2,12.5,83,0,0,-0.00651266 -150971,1801:133:1,13,83,0,0,-0.00662811 -150972,1801:133:2,13.5,83,0,0,-0.00671268 -150973,1801:134:1,14,83,0,0,-0.00678474 -150974,1801:134:2,14.5,83,0,0,-0.00685758 -150975,1801:235:1,15,83,0,0,-0.00692349 -150976,1801:235:2,15.5,83,0,0,-0.00693737 -150977,1801:236:1,16,83,0,0,-0.0068759 -150978,1801:236:2,16.5,83,0,0,-0.00717758 -150979,1801:237:1,17,83,0,0,-0.00737514 -150980,1801:237:2,17.5,83,0,0,-0.00767153 -150981,1801:238:1,18,83,0,0,-0.00806926 -150982,1801:238:2,18.5,83,0,0,-0.00823814 -150983,1801:239:2,19.5,83,0,0,-0.00828971 -150984,1802:130:1,20,83,0,0,-0.00828971 -150985,1802:130:2,20.5,83,0,0,-0.00828971 -150986,1802:131:1,21,83,0,0,-0.00828971 -150987,1802:131:2,21.5,83,0,0,-0.00829157 -150988,1802:132:1,22,83,0,0,-0.00829157 -150989,1802:132:2,22.5,83,0,0,-0.00829157 -150990,1802:133:1,23,83,0,0,-0.00829157 -150991,1802:133:2,23.5,83,0,0,-0.00829157 -150992,1802:134:1,24,83,0,0,-0.00828971 -150993,1802:134:2,24.5,83,0,0,-0.00828971 -150994,1802:235:1,25,83,0,0,-0.00828971 -150995,1802:236:2,26.5,83,0,0,-0.00828233 -150996,1802:237:1,27,83,0,0,-0.00828419 -150997,1802:237:2,27.5,83,0,0,-0.00828599 -150998,1802:238:1,28,83,0,0,-0.00828785 -150999,1802:238:2,28.5,83,0,0,-0.00828971 -151000,1802:239:1,29,83,0,0,-0.00829338 -151001,1802:239:2,29.5,83,0,0,-0.00829524 -151002,1811:236:2,116.5,83,0,0,-0.00829338 -151003,1811:237:1,117,83,0,0,-0.00829157 -151004,1811:237:2,117.5,83,0,0,-0.00828785 -151005,1811:238:1,118,83,0,0,-0.00828785 -151006,1812:131:1,121,83,0,0,-0.00829157 -151007,1812:131:2,121.5,83,0,0,-0.00829157 -151008,1812:132:1,122,83,0,0,-0.00829157 -151009,1812:132:2,122.5,83,0,0,-0.00829157 -151010,1812:133:1,123,83,0,0,-0.00829157 -151011,1812:133:2,123.5,83,0,0,-0.00829157 -151012,1812:134:1,124,83,0,0,-0.00829157 -151013,1812:134:2,124.5,83,0,0,-0.00828971 -151014,1812:236:1,126,83,0,0,-0.00828971 -151015,1812:236:2,126.5,83,0,0,-0.00829157 -151016,1812:237:1,127,83,0,0,-0.00828599 -151017,1812:237:2,127.5,83,0,0,-0.00824184 -151018,1812:238:1,128,83,0,0,-0.00807289 -151019,1813:130:1,130,83,0,0,-0.00694972 -151020,1813:130:2,130.5,83,0,0,-0.00682711 -151021,1813:131:1,131,83,0,0,-0.00677719 -151022,1813:131:2,131.5,83,0,0,-0.00676813 -151023,1813:132:1,132,83,0,0,-0.00671268 -151024,1813:132:2,132.5,83,0,0,-0.00660749 -151025,1813:133:1,133,83,0,0,-0.006504 -151026,1813:133:2,133.5,83,0,0,-0.00639928 -151027,1813:134:1,134,83,0,0,-0.00634545 -151028,1813:134:2,134.5,83,0,0,-0.00631024 -151029,1813:235:1,135,83,0,0,-0.0062391 -151030,1813:235:2,135.5,83,0,0,-0.00609109 -151031,1813:236:1,136,83,0,0,-0.00591632 -151032,1813:236:2,136.5,83,0,0,-0.0058172 -151033,1813:237:1,137,83,0,0,-0.00568936 -151034,1813:237:2,137.5,83,0,0,-0.00566165 -151035,1813:238:1,138,83,0,0,-0.00579657 -151036,1813:238:2,138.5,83,0,0,-0.00609382 -151037,1813:239:1,139,83,0,0,-0.00637795 -151038,1813:239:2,139.5,83,0,0,-0.00643067 -151039,1814:130:1,140,83,0,0,-0.00638224 -151040,1814:130:2,140.5,83,0,0,-0.00636947 -151041,1814:131:1,141,83,0,0,-0.00634545 -151042,1814:131:2,141.5,83,0,0,-0.0061455 -151043,1814:132:1,142,83,0,0,-0.005877 -151044,1814:132:2,142.5,83,0,0,-0.00574526 -151045,1814:133:1,143,83,0,0,-0.00572869 -151046,1814:133:2,143.5,83,0,0,-0.00569445 -151047,1814:134:1,144,83,0,0,-0.00569063 -151048,1814:134:2,144.5,83,0,0,-0.00569951 -151049,1814:235:1,145,83,0,0,-0.00570458 -151050,1814:235:2,145.5,83,0,0,-0.00570075 -151051,1814:236:1,146,83,0,0,-0.00572108 -151052,1814:236:2,146.5,83,0,0,-0.00574144 -151053,1814:237:1,147,83,0,0,-0.00573888 -151054,1814:237:2,147.5,83,0,0,-0.00574526 -151055,1814:238:1,148,83,0,0,-0.00574016 -151056,1814:238:2,148.5,83,0,0,-0.00572741 -151057,1814:239:1,149,83,0,0,-0.00570202 -151058,1814:239:2,149.5,83,0,0,-0.0056818 -151059,1815:130:1,150,83,0,0,-0.00567171 -151060,1815:130:2,150.5,83,0,0,-0.0056843 -151061,1815:131:1,151,83,0,0,-0.00570202 -151062,1815:131:2,151.5,83,0,0,-0.00565911 -151063,1815:132:1,152,83,0,0,-0.00558047 -151064,1815:132:2,152.5,83,0,0,-0.00554953 -151065,1815:133:1,153,83,0,0,-0.00553724 -151066,1815:133:2,153.5,83,0,0,-0.0055237 -151067,1815:134:1,154,83,0,0,-0.00551637 -151068,1815:134:2,154.5,83,0,0,-0.0055188 -151069,1815:235:1,155,83,0,0,-0.0055225 -151070,1815:235:2,155.5,83,0,0,-0.0055237 -151071,1815:236:1,156,83,0,0,-0.0055237 -151072,1815:236:2,156.5,83,0,0,-0.00552494 -151073,1815:237:1,157,83,0,0,-0.00552617 -151074,1815:237:2,157.5,83,0,0,-0.00552494 -151075,1815:238:1,158,83,0,0,-0.00552741 -151076,1815:238:2,158.5,83,0,0,-0.00554216 -151077,1815:239:1,159,83,0,0,-0.00556064 -151078,1815:239:2,159.5,83,0,0,-0.00557302 -151079,1816:130:1,160,83,0,0,-0.00558047 -151080,1816:130:2,160.5,83,0,0,-0.00557922 -151081,1816:131:1,161,83,0,0,-0.00557551 -151082,1816:131:2,161.5,83,0,0,-0.00557177 -151083,1816:132:1,162,83,0,0,-0.00557302 -151084,1816:132:2,162.5,83,0,0,-0.00557922 -151085,1816:133:1,163,83,0,0,-0.00559039 -151086,1816:133:2,163.5,83,0,0,-0.00560158 -151087,1816:134:1,164,83,0,0,-0.00561402 -151088,1816:134:2,164.5,83,0,0,-0.00562526 -151089,1816:235:1,165,83,0,0,-0.00563277 -151090,1816:235:2,165.5,83,0,0,-0.00563778 -151091,1816:236:1,166,83,0,0,-0.00564405 -151092,1816:236:2,166.5,83,0,0,-0.00565409 -151093,1816:237:1,167,83,0,0,-0.00566165 -151094,1816:237:2,167.5,83,0,0,-0.00566791 -151095,1816:238:1,168,83,0,0,-0.00567045 -151096,1816:238:2,168.5,83,0,0,-0.00567171 -151097,1816:239:1,169,83,0,0,-0.00567548 -151098,1816:239:2,169.5,83,0,0,-0.00567926 -151099,1817:130:1,170,83,0,0,-0.00568307 -151100,1817:130:2,170.5,83,0,0,-0.00568558 -151101,1817:131:1,171,83,0,0,-0.0056843 -151102,1817:131:2,171.5,83,0,0,-0.00568307 -151103,1817:132:1,172,83,0,0,-0.00568307 -151104,1817:132:2,172.5,83,0,0,-0.00568307 -151105,1817:133:1,173,83,0,0,-0.00568307 -151106,1817:133:2,173.5,83,0,0,-0.00568307 -151107,1817:134:1,174,83,0,0,-0.00568307 -151108,1817:134:2,174.5,83,0,0,-0.00568307 -151109,1817:235:1,175,83,0,0,-0.00568307 -151110,1817:235:2,175.5,83,0,0,-0.00568307 -151111,1817:236:1,176,83,0,0,-0.0056843 -151112,1817:236:2,176.5,83,0,0,-0.0056843 -151113,1817:237:1,177,83,0,0,-0.0056843 -151114,1817:237:2,177.5,83,0,0,-0.0056843 -151115,1817:238:1,178,83,0,0,-0.00568307 -151116,1817:238:2,178.5,83,0,0,-0.0056843 -151117,1817:239:1,179,83,0,0,-0.0056843 -151118,1817:239:2,179.5,83,0,0,-0.00568307 -151119,1818:130:1,180,83,0,0,-0.0056818 -151120,7918:100:1,-180,90,0,0,-0.00546026 -151121,7917:209:2,-179.5,90,0,0,-0.00546392 -151122,7917:209:1,-179,90,0,0,-0.00546511 -151123,7917:208:2,-178.5,90,0,0,-0.00546392 -151124,7917:208:1,-178,90,0,0,-0.00546511 -151125,7917:207:2,-177.5,90,0,0,-0.00546633 -151126,7917:207:1,-177,90,0,0,-0.00546878 -151127,7917:206:2,-176.5,90,0,0,-0.00547 -151128,7917:206:1,-176,90,0,0,-0.00547 -151129,7917:205:2,-175.5,90,0,0,-0.00547119 -151130,7917:205:1,-175,90,0,0,-0.00547119 -151131,7917:104:2,-174.5,90,0,0,-0.00547241 -151132,7917:104:1,-174,90,0,0,-0.00547364 -151133,7917:103:2,-173.5,90,0,0,-0.00547364 -151134,7917:103:1,-173,90,0,0,-0.00547486 -151135,7917:102:2,-172.5,90,0,0,-0.00547486 -151136,7917:102:1,-172,90,0,0,-0.00547605 -151137,7917:101:2,-171.5,90,0,0,-0.00547605 -151138,7917:101:1,-171,90,0,0,-0.00547605 -151139,7917:100:2,-170.5,90,0,0,-0.00547727 -151140,7917:100:1,-170,90,0,0,-0.00547727 -151141,7916:209:2,-169.5,90,0,0,-0.0054785 -151142,7916:209:1,-169,90,0,0,-0.0054785 -151143,7916:208:2,-168.5,90,0,0,-0.0054785 -151144,7916:208:1,-168,90,0,0,-0.00547972 -151145,7916:207:2,-167.5,90,0,0,-0.00547972 -151146,7916:207:1,-167,90,0,0,-0.00548091 -151147,7916:206:2,-166.5,90,0,0,-0.00548091 -151148,7916:206:1,-166,90,0,0,-0.00547972 -151149,7916:205:2,-165.5,90,0,0,-0.00547972 -151150,7916:205:1,-165,90,0,0,-0.00547972 -151151,7916:104:2,-164.5,90,0,0,-0.00547972 -151152,7916:104:1,-164,90,0,0,-0.00547972 -151153,7916:103:2,-163.5,90,0,0,-0.00547972 -151154,7916:103:1,-163,90,0,0,-0.00548091 -151155,7916:102:2,-162.5,90,0,0,-0.00548091 -151156,7916:102:1,-162,90,0,0,-0.00548091 -151157,7916:101:2,-161.5,90,0,0,-0.00548091 -151158,7916:101:1,-161,90,0,0,-0.00548214 -151159,7916:100:2,-160.5,90,0,0,-0.00548337 -151160,7916:100:1,-160,90,0,0,-0.00548459 -151161,7915:209:2,-159.5,90,0,0,-0.00548582 -151162,7915:209:1,-159,90,0,0,-0.00548582 -151163,7915:208:2,-158.5,90,0,0,-0.00548701 -151164,7915:208:1,-158,90,0,0,-0.00548824 -151165,7915:207:2,-157.5,90,0,0,-0.00548824 -151166,7915:207:1,-157,90,0,0,-0.00548701 -151167,7915:206:2,-156.5,90,0,0,-0.00548701 -151168,7915:206:1,-156,90,0,0,-0.00548824 -151169,7915:205:2,-155.5,90,0,0,-0.00548947 -151170,7915:205:1,-155,90,0,0,-0.00548947 -151171,7915:104:2,-154.5,90,0,0,-0.00548701 -151172,7915:104:1,-154,90,0,0,-0.00548701 -151173,7915:103:2,-153.5,90,0,0,-0.00548824 -151174,7915:103:1,-153,90,0,0,-0.00548947 -151175,7915:102:2,-152.5,90,0,0,-0.00548947 -151176,7915:102:1,-152,90,0,0,-0.00548824 -151177,7915:101:2,-151.5,90,0,0,-0.00548582 -151178,7915:101:1,-151,90,0,0,-0.00548582 -151179,7915:100:2,-150.5,90,0,0,-0.00548582 -151180,7915:100:1,-150,90,0,0,-0.00548582 -151181,7914:209:2,-149.5,90,0,0,-0.00548582 -151182,7914:209:1,-149,90,0,0,-0.00548459 -151183,7914:208:2,-148.5,90,0,0,-0.00548459 -151184,7914:208:1,-148,90,0,0,-0.00548459 -151185,7914:207:2,-147.5,90,0,0,-0.00548459 -151186,7914:207:1,-147,90,0,0,-0.00548337 -151187,7914:206:2,-146.5,90,0,0,-0.00548337 -151188,7914:206:1,-146,90,0,0,-0.00548214 -151189,7914:205:2,-145.5,90,0,0,-0.00548214 -151190,7914:205:1,-145,90,0,0,-0.00548214 -151191,7914:104:2,-144.5,90,0,0,-0.00548091 -151192,7914:104:1,-144,90,0,0,-0.00548091 -151193,7914:103:2,-143.5,90,0,0,-0.00548091 -151194,7914:103:1,-143,90,0,0,-0.00548214 -151195,7914:102:2,-142.5,90,0,0,-0.00548214 -151196,7914:102:1,-142,90,0,0,-0.00548091 -151197,7914:101:2,-141.5,90,0,0,-0.00547972 -151198,7914:101:1,-141,90,0,0,-0.00548091 -151199,7914:100:2,-140.5,90,0,0,-0.00548091 -151200,7914:100:1,-140,90,0,0,-0.00548214 -151201,7913:209:2,-139.5,90,0,0,-0.00548214 -151202,7913:209:1,-139,90,0,0,-0.00548214 -151203,7913:208:2,-138.5,90,0,0,-0.00548214 -151204,7913:208:1,-138,90,0,0,-0.00548337 -151205,7913:207:2,-137.5,90,0,0,-0.00548947 -151206,7913:207:1,-137,90,0,0,-0.00550777 -151207,7913:206:2,-136.5,90,0,0,-0.005536 -151208,7913:206:1,-136,90,0,0,-0.00560158 -151209,7913:205:2,-135.5,90,0,0,-0.00584441 -151210,7913:205:1,-135,90,0,0,-0.00592286 -151211,7913:104:2,-134.5,90,0,0,-0.00591106 -151212,7913:104:1,-134,90,0,0,-0.00596912 -151213,7911:100:1,-110,90,0,0,-0.00698226 -151214,7910:209:2,-109.5,90,0,0,-0.00750095 -151215,7910:209:1,-109,90,0,0,-0.00796395 -151216,7910:208:2,-108.5,90,0,0,-0.00791092 -151217,7910:206:1,-106,90,0,0,-0.005619 -151218,7910:205:2,-105.5,90,0,0,-0.00555077 -151219,7910:205:1,-105,90,0,0,-0.00552617 -151220,7910:104:2,-104.5,90,0,0,-0.0055446 -151221,7910:104:1,-104,90,0,0,-0.00578243 -151222,7910:103:2,-103.5,90,0,0,-0.00623081 -151223,7910:103:1,-103,90,0,0,-0.0065446 -151224,7910:102:2,-102.5,90,0,0,-0.00661925 -151225,7906:101:2,-61.5,90,0,0,-0.00552861 -151226,7906:101:1,-61,90,0,0,-0.00552127 -151227,7906:100:2,-60.5,90,0,0,-0.00550288 -151228,7906:100:1,-60,90,0,0,-0.00548947 -151229,7905:209:2,-59.5,90,0,0,-0.0054785 -151230,7905:209:1,-59,90,0,0,-0.00546511 -151231,7905:208:2,-58.5,90,0,0,-0.00545541 -151232,7905:208:1,-58,90,0,0,-0.005453 -151233,7905:207:2,-57.5,90,0,0,-0.00545179 -151234,7905:207:1,-57,90,0,0,-0.00545057 -151235,7905:206:2,-56.5,90,0,0,-0.00544935 -151236,7905:206:1,-56,90,0,0,-0.00544935 -151237,7905:205:2,-55.5,90,0,0,-0.00544935 -151238,7905:205:1,-55,90,0,0,-0.00545057 -151239,7905:104:2,-54.5,90,0,0,-0.00545057 -151240,7905:104:1,-54,90,0,0,-0.00545057 -151241,7905:103:2,-53.5,90,0,0,-0.00545057 -151242,7905:103:1,-53,90,0,0,-0.00545179 -151243,7905:102:2,-52.5,90,0,0,-0.005453 -151244,7905:102:1,-52,90,0,0,-0.00545423 -151245,7905:101:2,-51.5,90,0,0,-0.00545423 -151246,7905:101:1,-51,90,0,0,-0.00545541 -151247,7905:100:2,-50.5,90,0,0,-0.00545541 -151248,7905:100:1,-50,90,0,0,-0.00545541 -151249,7904:209:2,-49.5,90,0,0,-0.00545541 -151250,7904:209:1,-49,90,0,0,-0.00545541 -151251,7904:208:2,-48.5,90,0,0,-0.00545423 -151252,7904:208:1,-48,90,0,0,-0.005453 -151253,7904:207:2,-47.5,90,0,0,-0.005453 -151254,7904:207:1,-47,90,0,0,-0.00545663 -151255,7904:206:2,-46.5,90,0,0,-0.00545907 -151256,7904:206:1,-46,90,0,0,-0.00546148 -151257,7904:205:2,-45.5,90,0,0,-0.00546392 -151258,7904:205:1,-45,90,0,0,-0.00546633 -151259,7904:104:2,-44.5,90,0,0,-0.00546511 -151260,7904:104:1,-44,90,0,0,-0.00546511 -151261,7904:103:2,-43.5,90,0,0,-0.00546511 -151262,7904:103:1,-43,90,0,0,-0.00546511 -151263,7904:102:2,-42.5,90,0,0,-0.00546392 -151264,7904:102:1,-42,90,0,0,-0.00546392 -151265,7904:101:2,-41.5,90,0,0,-0.00546511 -151266,7904:101:1,-41,90,0,0,-0.00546511 -151267,7904:100:2,-40.5,90,0,0,-0.00546633 -151268,7904:100:1,-40,90,0,0,-0.00546755 -151269,7903:209:2,-39.5,90,0,0,-0.00546755 -151270,7903:209:1,-39,90,0,0,-0.00546755 -151271,7903:208:2,-38.5,90,0,0,-0.00546755 -151272,7903:208:1,-38,90,0,0,-0.00546755 -151273,7903:207:2,-37.5,90,0,0,-0.00546878 -151274,7903:207:1,-37,90,0,0,-0.00546755 -151275,7903:206:2,-36.5,90,0,0,-0.00546755 -151276,7903:206:1,-36,90,0,0,-0.00546755 -151277,7903:205:2,-35.5,90,0,0,-0.00546755 -151278,7903:205:1,-35,90,0,0,-0.00546878 -151279,7903:104:2,-34.5,90,0,0,-0.00546878 -151280,7903:104:1,-34,90,0,0,-0.00546755 -151281,7903:103:2,-33.5,90,0,0,-0.00546755 -151282,7903:103:1,-33,90,0,0,-0.00546755 -151283,7903:102:2,-32.5,90,0,0,-0.00546878 -151284,7903:102:1,-32,90,0,0,-0.00546878 -151285,7903:101:2,-31.5,90,0,0,-0.00546878 -151286,7903:101:1,-31,90,0,0,-0.00547 -151287,7903:100:2,-30.5,90,0,0,-0.00546878 -151288,7903:100:1,-30,90,0,0,-0.00547 -151289,7902:209:2,-29.5,90,0,0,-0.00547119 -151290,7902:209:1,-29,90,0,0,-0.00547 -151291,7902:208:2,-28.5,90,0,0,-0.00546878 -151292,7902:208:1,-28,90,0,0,-0.00546755 -151293,7902:207:2,-27.5,90,0,0,-0.00546633 -151294,7902:207:1,-27,90,0,0,-0.00546511 -151295,7902:206:2,-26.5,90,0,0,-0.00553848 -151296,7902:206:1,-26,90,0,0,-0.00565409 -151297,7902:205:2,-25.5,90,0,0,-0.00561402 -151298,7902:205:1,-25,90,0,0,-0.00557672 -151299,7902:104:2,-24.5,90,0,0,-0.00581851 -151300,7902:104:1,-24,90,0,0,-0.00615781 -151301,1916:205:2,165.5,90,0,0,-0.0055225 -151302,1916:206:1,166,90,0,0,-0.00550411 -151303,1916:206:2,166.5,90,0,0,-0.00548091 -151304,1916:207:1,167,90,0,0,-0.00547241 -151305,1916:207:2,167.5,90,0,0,-0.00546633 -151306,1916:208:1,168,90,0,0,-0.00545907 -151307,1916:208:2,168.5,90,0,0,-0.00545057 -151308,1916:209:1,169,90,0,0,-0.00544451 -151309,1916:209:2,169.5,90,0,0,-0.00544211 -151310,1917:100:1,170,90,0,0,-0.00544333 -151311,1917:100:2,170.5,90,0,0,-0.00544333 -151312,1917:101:1,171,90,0,0,-0.00544089 -151313,1917:101:2,171.5,90,0,0,-0.00569445 -151314,1917:102:1,172,90,0,0,-0.00650255 -151315,1917:102:2,172.5,90,0,0,-0.00744774 -151316,1917:103:1,173,90,0,0,-0.00792146 -151317,1917:103:2,173.5,90,0,0,-0.00790914 -151318,1917:104:1,174,90,0,0,-0.00786525 -151319,1917:104:2,174.5,90,0,0,-0.00783724 -151320,1917:205:1,175,90,0,0,-0.00782681 -151321,1917:205:2,175.5,90,0,0,-0.00778162 -151322,1917:206:1,176,90,0,0,-0.00760351 -151323,1917:206:2,176.5,90,0,0,-0.00631868 -151324,1917:207:1,177,90,0,0,-0.00551024 -151325,1917:207:2,177.5,90,0,0,-0.00544089 -151326,1917:208:1,178,90,0,0,-0.00544211 -151327,1917:208:2,178.5,90,0,0,-0.00544816 -151328,1917:209:1,179,90,0,0,-0.005453 -151329,1917:209:2,179.5,90,0,0,-0.00545663 -151330,1918:100:1,180,90,0,0,-0.00546026 - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/bmFjMVFHZlE5YzVxUmhYZ0pWd0RHa1NTcjNZWjdXTnhHbWJQNStIS0N6Yz0 - The warnings from the underlying MaxEnt model - text/csv - - - http://data-d.d4science.org/bmFjMVFHZlE5YzVxUmhYZ0pWd0RHanVtNm85MEhoZ2dHbWJQNStIS0N6Yz0 - ASCII Maps of the environmental layers for checking features aligments - text/csv - - - http://data-d.d4science.org/UVRiK1YzK3pJRjVxUmhYZ0pWd0RHdnpvQnhIYlZhbFRHbWJQNStIS0N6Yz0 - World Thumbnail - image/png - - - http://data-d.d4science.org/NzFkKzVNMnA3eU5xUmhYZ0pWd0RHcXM0aHArTHJoeExHbWJQNStIS0N6Yz0 - ROC Curve - image/png - - - http://data-d.d4science.org/MWt6NWUvdXZHRGhxUmhYZ0pWd0RHdkpPSVZrZmFJS2dHbWJQNStIS0N6Yz0 - Omission-Commission Curve - image/png - - - http://data-d.d4science.org/TDVlSlMrTjhYVEZxUmhYZ0pWd0RHZ0xvQ2IzT3ZwQTVHbWJQNStIS0N6Yz0 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - text/csv - - - - - - - - -2016-04-26 11:30:25 DEBUG SClient4WPS:946 - Process Executed -2016-04-26 11:30:25 DEBUG SClient4WPS:570 - Node Name: wps:ComplexData -2016-04-26 11:30:25 DEBUG SClient4WPS:570 - Node Name: #text -2016-04-26 11:30:25 DEBUG SClient4WPS:570 - Node Name: wps:ComplexData -2016-04-26 11:30:25 DEBUG SClient4WPS:570 - Node Name: #text -2016-04-26 11:30:25 DEBUG SClient4WPS:570 - Node Name: wps:ComplexData -2016-04-26 11:30:25 DEBUG SClient4WPS:570 - Node Name: ogr:FeatureCollection -2016-04-26 11:30:25 DEBUG SClient4WPS:570 - Node Name: gml:featureMember -2016-04-26 11:30:25 DEBUG SClient4WPS:570 - Node Name: ogr:Result -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:Data- Value:http://data-d.d4science.org/bmFjMVFHZlE5YzVxUmhYZ0pWd0RHa1NTcjNZWjdXTnhHbWJQNStIS0N6Yz0 -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:Description- Value:The warnings from the underlying MaxEnt model -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:MimeType- Value:text/csv -2016-04-26 11:30:25 DEBUG SClient4WPS:570 - Node Name: ogr:Result -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:Data- Value:http://data-d.d4science.org/bmFjMVFHZlE5YzVxUmhYZ0pWd0RHanVtNm85MEhoZ2dHbWJQNStIS0N6Yz0 -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:Description- Value:ASCII Maps of the environmental layers for checking features aligments -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:MimeType- Value:text/csv -2016-04-26 11:30:25 DEBUG SClient4WPS:570 - Node Name: ogr:Result -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:Data- Value:http://data-d.d4science.org/UVRiK1YzK3pJRjVxUmhYZ0pWd0RHdnpvQnhIYlZhbFRHbWJQNStIS0N6Yz0 -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:Description- Value:World Thumbnail -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:MimeType- Value:image/png -2016-04-26 11:30:25 DEBUG SClient4WPS:570 - Node Name: ogr:Result -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:Data- Value:http://data-d.d4science.org/NzFkKzVNMnA3eU5xUmhYZ0pWd0RHcXM0aHArTHJoeExHbWJQNStIS0N6Yz0 -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:Description- Value:ROC Curve -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:MimeType- Value:image/png -2016-04-26 11:30:25 DEBUG SClient4WPS:570 - Node Name: ogr:Result -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:Data- Value:http://data-d.d4science.org/MWt6NWUvdXZHRGhxUmhYZ0pWd0RHdkpPSVZrZmFJS2dHbWJQNStIS0N6Yz0 -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:Description- Value:Omission-Commission Curve -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:MimeType- Value:image/png -2016-04-26 11:30:25 DEBUG SClient4WPS:570 - Node Name: ogr:Result -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:Data- Value:http://data-d.d4science.org/TDVlSlMrTjhYVEZxUmhYZ0pWd0RHZ0xvQ2IzT3ZwQTVHbWJQNStIS0N6Yz0 -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:Description- Value:Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-04-26 11:30:25 DEBUG SClient4WPS:537 - Node Name: d4science:MimeType- Value:text/csv -2016-04-26 11:30:25 DEBUG SClient4WPS:499 - ResponseWPS Map: F0-->ResponseWPS [data=http://data-d.d4science.org/bmFjMVFHZlE5YzVxUmhYZ0pWd0RHa1NTcjNZWjdXTnhHbWJQNStIS0N6Yz0, description=The warnings from the underlying MaxEnt model, mimeType=text/csv] -2016-04-26 11:30:25 DEBUG SClient4WPS:499 - ResponseWPS Map: F1-->ResponseWPS [data=http://data-d.d4science.org/bmFjMVFHZlE5YzVxUmhYZ0pWd0RHanVtNm85MEhoZ2dHbWJQNStIS0N6Yz0, description=ASCII Maps of the environmental layers for checking features aligments, mimeType=text/csv] -2016-04-26 11:30:25 DEBUG SClient4WPS:499 - ResponseWPS Map: F2-->ResponseWPS [data=http://data-d.d4science.org/UVRiK1YzK3pJRjVxUmhYZ0pWd0RHdnpvQnhIYlZhbFRHbWJQNStIS0N6Yz0, description=World Thumbnail, mimeType=image/png] -2016-04-26 11:30:25 DEBUG SClient4WPS:499 - ResponseWPS Map: F3-->ResponseWPS [data=http://data-d.d4science.org/NzFkKzVNMnA3eU5xUmhYZ0pWd0RHcXM0aHArTHJoeExHbWJQNStIS0N6Yz0, description=ROC Curve, mimeType=image/png] -2016-04-26 11:30:25 DEBUG SClient4WPS:499 - ResponseWPS Map: F4-->ResponseWPS [data=http://data-d.d4science.org/MWt6NWUvdXZHRGhxUmhYZ0pWd0RHdkpPSVZrZmFJS2dHbWJQNStIS0N6Yz0, description=Omission-Commission Curve, mimeType=image/png] -2016-04-26 11:30:25 DEBUG SClient4WPS:499 - ResponseWPS Map: F5-->ResponseWPS [data=http://data-d.d4science.org/TDVlSlMrTjhYVEZxUmhYZ0pWd0RHZ0xvQ2IzT3ZwQTVHbWJQNStIS0N6Yz0, description=Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding], mimeType=text/csv] -2016-04-26 11:30:25 DEBUG SClient4WPS:994 - Adding OBJ:F0 -2016-04-26 11:30:25 DEBUG SClient4WPS:1000 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/bmFjMVFHZlE5YzVxUmhYZ0pWd0RHa1NTcjNZWjdXTnhHbWJQNStIS0N6Yz0, name=F0, description=The warnings from the underlying MaxEnt model, typology=OBJECT] -2016-04-26 11:30:25 DEBUG SClient4WPS:994 - Adding OBJ:F1 -2016-04-26 11:30:25 DEBUG SClient4WPS:1000 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/bmFjMVFHZlE5YzVxUmhYZ0pWd0RHanVtNm85MEhoZ2dHbWJQNStIS0N6Yz0, name=F1, description=ASCII Maps of the environmental layers for checking features aligments, typology=OBJECT] -2016-04-26 11:30:25 DEBUG SClient4WPS:994 - Adding OBJ:F2 -2016-04-26 11:30:25 DEBUG SClient4WPS:1000 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/UVRiK1YzK3pJRjVxUmhYZ0pWd0RHdnpvQnhIYlZhbFRHbWJQNStIS0N6Yz0, name=F2, description=World Thumbnail, typology=OBJECT] -2016-04-26 11:30:25 DEBUG SClient4WPS:994 - Adding OBJ:F3 -2016-04-26 11:30:25 DEBUG SClient4WPS:1000 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/NzFkKzVNMnA3eU5xUmhYZ0pWd0RHcXM0aHArTHJoeExHbWJQNStIS0N6Yz0, name=F3, description=ROC Curve, typology=OBJECT] -2016-04-26 11:30:25 DEBUG SClient4WPS:994 - Adding OBJ:F4 -2016-04-26 11:30:25 DEBUG SClient4WPS:1000 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/MWt6NWUvdXZHRGhxUmhYZ0pWd0RHdkpPSVZrZmFJS2dHbWJQNStIS0N6Yz0, name=F4, description=Omission-Commission Curve, typology=OBJECT] -2016-04-26 11:30:25 DEBUG SClient4WPS:994 - Adding OBJ:F5 -2016-04-26 11:30:25 DEBUG SClient4WPS:1000 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/TDVlSlMrTjhYVEZxUmhYZ0pWd0RHZ0xvQ2IzT3ZwQTVHbWJQNStIS0N6Yz0, name=F5, description=Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding], typology=OBJECT] -2016-04-26 11:30:25 DEBUG Log:91 - Resoure: MapResource [map={F0=FileResource [url=http://data-d.d4science.org/bmFjMVFHZlE5YzVxUmhYZ0pWd0RHa1NTcjNZWjdXTnhHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F0, getName()=The warnings from the underlying MaxEnt model, getDescription()=The warnings from the underlying MaxEnt model, getResourceType()=FILE], F1=FileResource [url=http://data-d.d4science.org/bmFjMVFHZlE5YzVxUmhYZ0pWd0RHanVtNm85MEhoZ2dHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F1, getName()=ASCII Maps of the environmental layers for checking features aligments, getDescription()=ASCII Maps of the environmental layers for checking features aligments, getResourceType()=FILE], F2=ImagesResource [link=http://data-d.d4science.org/UVRiK1YzK3pJRjVxUmhYZ0pWd0RHdnpvQnhIYlZhbFRHbWJQNStIS0N6Yz0, mimeType=image/png, getResourceId()=F2, getName()=World Thumbnail, getDescription()=World Thumbnail, getResourceType()=IMAGES], F3=ImagesResource [link=http://data-d.d4science.org/NzFkKzVNMnA3eU5xUmhYZ0pWd0RHcXM0aHArTHJoeExHbWJQNStIS0N6Yz0, mimeType=image/png, getResourceId()=F3, getName()=ROC Curve, getDescription()=ROC Curve, getResourceType()=IMAGES], F4=ImagesResource [link=http://data-d.d4science.org/MWt6NWUvdXZHRGhxUmhYZ0pWd0RHdkpPSVZrZmFJS2dHbWJQNStIS0N6Yz0, mimeType=image/png, getResourceId()=F4, getName()=Omission-Commission Curve, getDescription()=Omission-Commission Curve, getResourceType()=IMAGES], F5=FileResource [url=http://data-d.d4science.org/TDVlSlMrTjhYVEZxUmhYZ0pWd0RHZ0xvQ2IzT3ZwQTVHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F5, getName()=Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding], getDescription()=Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding], getResourceType()=FILE]}, getResourceId()=mapResource, getName()=Resources, getDescription()=Resources, getResourceType()=MAP] -2016-04-26 12:21:51 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-04-26 12:21:52 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-04-26 12:21:52 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-04-26 12:21:52 INFO SessionUtil:49 - no user found in session, use test user -2016-04-26 12:21:52 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 12:21:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 12:21:52 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-26 12:21:52 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@4f4fdb34 -2016-04-26 12:21:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 12:21:52 INFO ASLSession:352 - Logging the entrance -2016-04-26 12:21:52 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-26 12:21:52 DEBUG TemplateModel:83 - 2016-04-26 12:21:52, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-26 12:21:52 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 12:21:52 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-04-26 12:21:54 INFO SessionUtil:49 - no user found in session, use test user -2016-04-26 12:21:54 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 12:21:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 12:21:54 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-26 12:21:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:21:54 INFO ASLSession:352 - Logging the entrance -2016-04-26 12:21:54 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-26 12:21:54 DEBUG TemplateModel:83 - 2016-04-26 12:21:54, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-26 12:21:54 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 12:21:54 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-26 12:21:54 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 127 ms -2016-04-26 12:21:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-04-26 12:21:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-04-26 12:21:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-04-26 12:21:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-04-26 12:21:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-04-26 12:21:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-04-26 12:21:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-04-26 12:21:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-04-26 12:21:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-04-26 12:21:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-04-26 12:21:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-04-26 12:21:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-04-26 12:21:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-04-26 12:21:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-04-26 12:21:55 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-04-26 12:21:55 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-26 12:21:55 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-26 12:21:55 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@155a2e3e -2016-04-26 12:21:55 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@7a10d6f2 -2016-04-26 12:21:55 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@1d8c804d -2016-04-26 12:21:55 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@427d40ff -2016-04-26 12:21:55 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 268 ms -2016-04-26 12:21:56 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-04-26 12:21:56 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-26 12:21:56 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-26 12:21:56 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-26 12:21:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 12:21:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 12:21:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 12:21:56 DEBUG DataMinerManagerServiceImpl:405 - getDataMinerWorkArea() -2016-04-26 12:21:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:21:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:21:56 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-04-26 12:21:56 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-04-26 12:21:56 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-04-26 12:21:56 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-04-26 12:21:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:21:56 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-26 12:21:56 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-04-26 12:21:56 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 22 ms -2016-04-26 12:21:56 DEBUG SClient4WPS:113 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-04-26 12:21:56 INFO SClient4WPS:118 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-26 12:21:56 DEBUG SClient4WPS:129 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-04-26 12:21:56 INFO StatWPSClientSession:84 - CONNECT -2016-04-26 12:21:56 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-04-26 12:21:56 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-04-26 12:21:56 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-04-26 12:21:56 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-04-26 12:21:56 DEBUG JCRRepository:271 - Initialize repository -2016-04-26 12:21:56 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-04-26 12:21:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-04-26 12:21:56 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-26 12:21:56 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-04-26 12:21:56 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 72 ms -2016-04-26 12:21:56 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-04-26 12:21:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 12:21:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:21:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:21:56 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-04-26 12:21:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:21:56 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-04-26 12:21:57 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-26 12:21:57 DEBUG SClient4WPS:250 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-04-26 12:21:57 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-26 12:21:57 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-26 12:21:57 INFO JCRRepository:377 - skip init in JCRRepository -2016-04-26 12:21:57 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-26 12:21:57 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-26 12:21:57 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-04-26 12:21:57 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-04-26 12:21:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:21:57 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:21:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:21:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:21:57 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-26 12:21:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-04-26 12:21:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:21:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:21:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:21:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:21:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:21:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:21:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:21:57 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:21:57 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-26 12:21:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-04-26 12:21:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:21:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:21:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:21:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:21:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:21:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:21:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:21:57 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:21:57 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-26 12:21:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-04-26 12:21:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:21:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:21:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:21:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:21:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:21:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:21:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:21:58 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:21:58 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-26 12:21:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-04-26 12:21:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:21:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:21:58 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-26 12:21:58 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-26 12:21:58 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-26 12:21:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 12:21:58 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-04-26 12:21:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 12:21:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:21:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:21:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:21:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:21:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:21:58 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:21:58 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-04-26 12:21:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:21:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:21:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:21:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 12:21:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:21:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:21:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:21:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:21:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:21:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:21:58 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:21:58 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-04-26 12:21:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:21:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:21:58 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-04-26 12:21:58 INFO WorkspaceExplorerServiceImpl:188 - end time - 167 msc 0 sec -2016-04-26 12:21:58 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-04-26 12:21:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-04-26 12:21:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:21:59 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-26 12:21:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-26 12:21:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-04-26 12:21:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-04-26 12:21:59 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-26 12:21:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-04-26 12:21:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 19 ms -2016-04-26 12:21:59 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-04-26 12:21:59 INFO ISClientConnector:82 - found only one RR, take it -2016-04-26 12:21:59 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-04-26 12:21:59 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-04-26 12:21:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-04-26 12:21:59 DEBUG StorageClient:517 - set scope: /gcube -2016-04-26 12:21:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-04-26 12:21:59 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-26 12:21:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-26 12:21:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-04-26 12:21:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-04-26 12:21:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-04-26 12:21:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-04-26 12:21:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:21:59 INFO WorkspaceExplorerServiceImpl:188 - end time - 356 msc 0 sec -2016-04-26 12:22:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 12:22:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 12:22:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 12:22:04 INFO SClient4WPS:631 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-04-26 12:22:04 DEBUG SClient4WPS:264 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-26 12:22:04 INFO StatWPSClientSession:84 - CONNECT -2016-04-26 12:22:04 DEBUG SClient4WPS:285 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-04-26 12:22:04 DEBUG SClient4WPS:289 - WPSClient->Fetching Inputs -2016-04-26 12:22:04 DEBUG SClient4WPS:291 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-04-26 12:22:04 DEBUG SClient4WPS:291 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-04-26 12:22:04 DEBUG SClient4WPS:291 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-04-26 12:22:04 DEBUG SClient4WPS:291 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-04-26 12:22:04 DEBUG SClient4WPS:291 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-04-26 12:22:04 DEBUG SClient4WPS:296 - WPSClient->Fetching Outputs -2016-04-26 12:22:04 DEBUG SClient4WPS:298 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-04-26 12:22:04 DEBUG SClient4WPS:298 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-04-26 12:22:04 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-26 12:22:04 DEBUG WPS2SM:279 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-04-26 12:22:04 DEBUG WPS2SM:285 - Max Megabytes: 1 -2016-04-26 12:22:04 DEBUG WPS2SM:200 - MimeType: text/xml -2016-04-26 12:22:04 DEBUG WPS2SM:201 - Schema: null -2016-04-26 12:22:04 DEBUG WPS2SM:202 - Encoding: null -2016-04-26 12:22:04 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-04-26 12:22:04 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OccurrencePointsTable -2016-04-26 12:22:04 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 12:22:04 DEBUG SClient4WPS:646 - InputParameter: TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-04-26 12:22:04 DEBUG WPS2SM:254 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-04-26 12:22:04 DEBUG WPS2SM:93 - WPS type: -2016-04-26 12:22:04 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-04-26 12:22:04 DEBUG WPS2SM:101 - Guessed default value: -2016-04-26 12:22:04 DEBUG WPS2SM:111 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-04-26 12:22:04 DEBUG WPS2SM:112 - Machter find: true -2016-04-26 12:22:04 DEBUG WPS2SM:113 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-04-26 12:22:04 DEBUG WPS2SM:114 - Machter start: 31 -2016-04-26 12:22:04 DEBUG WPS2SM:115 - Machter end: 103 -2016-04-26 12:22:04 DEBUG WPS2SM:116 - Machter Group Count: 2 -2016-04-26 12:22:04 DEBUG WPS2SM:118 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-04-26 12:22:04 DEBUG WPS2SM:121 - Matcher separator: | -2016-04-26 12:22:04 DEBUG WPS2SM:290 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-04-26 12:22:04 DEBUG WPS2SM:291 - Conversion to SM Type->Name:FeaturesColumnNames -2016-04-26 12:22:04 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 12:22:04 DEBUG SClient4WPS:646 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-04-26 12:22:04 DEBUG WPS2SM:254 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-04-26 12:22:04 DEBUG WPS2SM:93 - WPS type: -2016-04-26 12:22:04 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-04-26 12:22:04 DEBUG WPS2SM:101 - Guessed default value: OccCluster_ -2016-04-26 12:22:04 DEBUG WPS2SM:290 - Conversion to SM Type->Title:table name of the resulting distribution -2016-04-26 12:22:04 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-04-26 12:22:04 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 12:22:04 DEBUG SClient4WPS:646 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-04-26 12:22:04 DEBUG WPS2SM:254 - Conversion to SM Type->epsilon is a Literal Input -2016-04-26 12:22:04 DEBUG WPS2SM:93 - WPS type: -2016-04-26 12:22:04 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-04-26 12:22:04 DEBUG WPS2SM:101 - Guessed default value: 10 -2016-04-26 12:22:04 DEBUG WPS2SM:290 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-04-26 12:22:04 DEBUG WPS2SM:291 - Conversion to SM Type->Name:epsilon -2016-04-26 12:22:04 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 12:22:04 DEBUG SClient4WPS:646 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-04-26 12:22:04 DEBUG WPS2SM:254 - Conversion to SM Type->min_points is a Literal Input -2016-04-26 12:22:04 DEBUG WPS2SM:93 - WPS type: -2016-04-26 12:22:04 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-04-26 12:22:04 DEBUG WPS2SM:101 - Guessed default value: 1 -2016-04-26 12:22:04 DEBUG WPS2SM:290 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-04-26 12:22:04 DEBUG WPS2SM:291 - Conversion to SM Type->Name:min_points -2016-04-26 12:22:04 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 12:22:04 DEBUG SClient4WPS:646 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-04-26 12:22:04 DEBUG SClient4WPS:650 - Parameters: [TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-04-26 12:22:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:22:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:22:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:22:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 12:22:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:22:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:22:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:22:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:22:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:22:04 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:22:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:22:04 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-04-26 12:22:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 12:22:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:22:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:22:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:22:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:22:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:22:04 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:22:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-04-26 12:22:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-04-26 12:22:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:22:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:22:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:22:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 12:22:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:22:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:22:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:22:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:22:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:22:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:22:04 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:22:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:22:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-26 12:22:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-26 12:22:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-26 12:22:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:22:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:22:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:22:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:22:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:22:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:22:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:22:04 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:22:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:22:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:22:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:22:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:22:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:22:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:22:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-26 12:22:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:22:05 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-26 12:22:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:22:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:22:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:22:05 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-04-26 12:22:05 DEBUG ItemBuilder:108 - Is shared folder: test -2016-04-26 12:22:05 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-04-26 12:22:05 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-04-26 12:22:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-04-26 12:22:05 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-04-26 12:22:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-04-26 12:22:05 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-04-26 12:22:05 INFO WorkspaceExplorerServiceImpl:142 - end time - 228 msc 0 sec -2016-04-26 12:22:05 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-04-26 12:22:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:22:47 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:23:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:23:42 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:24:00 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 12:24:00 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 12:24:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:24:00 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 12:24:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:24:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:24:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:24:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:24:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:24:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:24:00 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:24:00 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 12:24:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:24:00 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:24:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:24:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:24:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:24:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:24:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:24:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:24:00 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:24:01 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 12:24:01 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 12:24:01 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-04-26 12:24:01 DEBUG ServiceEngine:306 - get() - start -2016-04-26 12:24:01 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 12:24:01 DEBUG BucketCoding:42 - coding name done -2016-04-26 12:24:01 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-04-26 12:24:01 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-04-26 12:24:01 DEBUG OperationManager:67 - connection(boolean) - start -2016-04-26 12:24:01 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-04-26 12:24:01 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-04-26 12:24:01 DEBUG OperationFactory:97 - getOperation(String) - end -2016-04-26 12:24:01 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-04-26 12:24:01 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 12:24:01 DEBUG BucketCoding:42 - coding name done -2016-04-26 12:24:01 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-04-26 12:24:01 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-04-26 12:24:01 DEBUG MongoIO:77 - open mongo connection -2016-04-26 12:24:01 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-04-26 12:24:01 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:01 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:01 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 12:24:01 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@af8a0e67, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@17b22387, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@303a8038, socketFactory=javax.net.DefaultSocketFactory@50b7f544, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-04-26 12:24:01 INFO MongoIO:106 - new mongo connection pool opened -2016-04-26 12:24:01 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-04-26 12:24:01 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:115477}] to mongo2-d-d4s.d4science.org:27017 -2016-04-26 12:24:01 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-04-26 12:24:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1702446, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:01 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-04-26 12:24:01 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:01 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 12:24:01 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1711190}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:01 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1384745, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:01 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 12:24:01 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1424090}] to mongo4-d-d4s.d4science.org:27017 -2016-04-26 12:24:01 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-04-26 12:24:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1483833, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-04-26 12:24:01 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2010594}] to mongo1-d-d4s.d4science.org:27017 -2016-04-26 12:24:01 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-04-26 12:24:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1295591, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-04-26 12:24:01 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1711191}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1711191}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:01 DEBUG command:56 - Command execution completed -2016-04-26 12:24:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1711191}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:01 DEBUG command:56 - Command execution completed -2016-04-26 12:24:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1711191}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:01 DEBUG command:56 - Command execution completed -2016-04-26 12:24:01 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-04-26 12:24:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1711191}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:01 DEBUG command:56 - Command execution completed -2016-04-26 12:24:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1711191}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:01 DEBUG command:56 - Command execution completed -2016-04-26 12:24:01 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1711191}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:02 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-04-26 12:24:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-04-26 12:24:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 12:24:02 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-04-26 12:24:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 12:24:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:24:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:24:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:24:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:24:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:24:02 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:24:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-26 12:24:02 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-26 12:24:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-26 12:24:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:24:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:24:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:24:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:24:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:24:02 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:24:02 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 12:24:02 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 12:24:02 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-04-26 12:24:02 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-04-26 12:24:02 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-26 12:24:02 INFO WorkspaceExplorerServiceImpl:188 - end time - 54 msc 0 sec -2016-04-26 12:24:02 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-04-26 12:24:02 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-04-26 12:24:02 DEBUG query:56 - Query completed -2016-04-26 12:24:02 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 7 objects -2016-04-26 12:24:02 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2010594} -2016-04-26 12:24:02 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:115477} -2016-04-26 12:24:02 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1424090} -2016-04-26 12:24:02 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1711191}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-04-26 12:24:02 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1711191} -2016-04-26 12:24:02 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1711190} -2016-04-26 12:24:02 INFO MongoIO:508 - Mongo has been closed -2016-04-26 12:24:02 INFO DefaultMongoClient:1329 - getFolderTotalVolume 130827 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-04-26 12:24:02 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-04-26 12:24:02 INFO WorkspaceExplorerServiceImpl:503 - returning size: 130827 -2016-04-26 12:24:03 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-04-26 12:24:03 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-04-26 12:24:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 12:24:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 12:24:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 12:24:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:24:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:24:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:24:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:24:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:24:03 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:24:03 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 7ba62008-739a-4787-ae33-7938ad109a54 -2016-04-26 12:24:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-26 12:24:03 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-26 12:24:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-26 12:24:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:24:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:24:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:24:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:24:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:24:03 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:24:03 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-04-26 12:24:03 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-04-26 12:24:03 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-04-26 12:24:03 DEBUG ServiceEngine:306 - get() - start -2016-04-26 12:24:03 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 12:24:03 DEBUG BucketCoding:42 - coding name done -2016-04-26 12:24:03 DEBUG ServiceEngine:62 - path(String) - name: DBScan -2016-04-26 12:24:03 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-04-26 12:24:03 DEBUG OperationManager:67 - connection(boolean) - start -2016-04-26 12:24:03 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-04-26 12:24:03 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-04-26 12:24:03 DEBUG OperationFactory:97 - getOperation(String) - end -2016-04-26 12:24:03 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-04-26 12:24:03 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 12:24:03 DEBUG BucketCoding:42 - coding name done -2016-04-26 12:24:03 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-04-26 12:24:03 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-04-26 12:24:03 DEBUG MongoIO:77 - open mongo connection -2016-04-26 12:24:03 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-04-26 12:24:03 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:03 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:03 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 12:24:03 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@af8a0e67, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@17b22387, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@303a8038, socketFactory=javax.net.DefaultSocketFactory@50b7f544, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-04-26 12:24:03 INFO MongoIO:106 - new mongo connection pool opened -2016-04-26 12:24:03 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-04-26 12:24:03 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:115478}] to mongo2-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1452335, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:03 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-04-26 12:24:03 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:03 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 12:24:03 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2010595}] to mongo1-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1711192}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=998291, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:03 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 12:24:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1305998, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:03 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 12:24:03 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1424091}] to mongo4-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1375541, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-04-26 12:24:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 12:24:03 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-04-26 12:24:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 12:24:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:24:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:24:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:24:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:24:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:24:03 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:24:03 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1711193}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1711193}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 DEBUG command:56 - Command execution completed -2016-04-26 12:24:03 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1711193}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 DEBUG command:56 - Command execution completed -2016-04-26 12:24:03 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1711193}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 DEBUG command:56 - Command execution completed -2016-04-26 12:24:03 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-04-26 12:24:03 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1711193}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:24:03 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:24:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:24:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:24:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:24:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:24:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:24:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:24:03 DEBUG command:56 - Command execution completed -2016-04-26 12:24:03 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:24:03 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1711193}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 DEBUG command:56 - Command execution completed -2016-04-26 12:24:03 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1711193}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:03 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-04-26 12:24:03 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-04-26 12:24:03 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-04-26 12:24:03 INFO JCRServlets:697 - Calling Servlet get Parents By Id 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-04-26 12:24:03 INFO WorkspaceExplorerServiceImpl:188 - end time - 43 msc 0 sec -2016-04-26 12:24:03 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 12:24:03 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=7ba62008-739a-4787-ae33-7938ad109a54, name=DBScan, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-04-26 12:24:03 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-26 12:24:03 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-04-26 12:24:03 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-04-26 12:24:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-04-26 12:24:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-04-26 12:24:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-04-26 12:24:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-04-26 12:24:04 DEBUG query:56 - Query completed -2016-04-26 12:24:04 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-04-26 12:24:04 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2010595} -2016-04-26 12:24:04 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:115478} -2016-04-26 12:24:04 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1424091} -2016-04-26 12:24:04 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1711193}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-04-26 12:24:04 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1711193} -2016-04-26 12:24:04 INFO MongoIO:508 - Mongo has been closed -2016-04-26 12:24:04 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1711192} -2016-04-26 12:24:04 INFO DefaultMongoClient:1329 - getFolderTotalVolume 849 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-04-26 12:24:04 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-04-26 12:24:04 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-04-26 12:24:04 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 12:24:04 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 12:24:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-26 12:24:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-26 12:24:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-26 12:24:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:24:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:24:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:24:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:24:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:24:04 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:24:04 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 12:24:04 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 12:24:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 12:24:04 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-04-26 12:24:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:24:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 12:24:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:24:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 12:24:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:24:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:24:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:24:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:24:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:24:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:24:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:24:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:24:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:24:04 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:24:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:24:04 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:24:04 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 12:24:04 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 12:24:04 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 12:24:04 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-04-26 12:24:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 12:24:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 12:24:05 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 12:24:05 DEBUG DataMinerManagerServiceImpl:387 - retrieveTableInformation(): Item [id=13d0382e-8833-4df7-b4dc-61bbba61b3e5, name=hcaf_filtered.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 17:10:22 CET 2016] -2016-04-26 12:24:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:24:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:24:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:24:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:24:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:24:05 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:24:05 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 12:24:05 DEBUG ServiceEngine:193 - get() - start -2016-04-26 12:24:05 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 12:24:05 DEBUG BucketCoding:42 - coding name done -2016-04-26 12:24:05 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-04-26 12:24:05 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-04-26 12:24:05 DEBUG OperationManager:67 - connection(boolean) - start -2016-04-26 12:24:05 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-04-26 12:24:05 INFO OperationFactory:39 - getOperation(String) - start download -2016-04-26 12:24:05 DEBUG OperationFactory:97 - getOperation(String) - end -2016-04-26 12:24:05 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 12:24:05 DEBUG BucketCoding:42 - coding name done -2016-04-26 12:24:05 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-04-26 12:24:05 DEBUG Operation:173 - get(String) - start -2016-04-26 12:24:05 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-04-26 12:24:05 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-04-26 12:24:05 DEBUG MongoIO:77 - open mongo connection -2016-04-26 12:24:05 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-04-26 12:24:05 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:05 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:05 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 12:24:05 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@af8a0e67, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@17b22387, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@303a8038, socketFactory=javax.net.DefaultSocketFactory@50b7f544, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-04-26 12:24:05 INFO MongoIO:106 - new mongo connection pool opened -2016-04-26 12:24:05 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-04-26 12:24:05 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:115480}] to mongo2-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1194019, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:05 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-04-26 12:24:05 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:05 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 12:24:05 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2010596}] to mongo1-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=956847, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 12:24:05 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1711194}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1297757, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:05 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 12:24:05 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1424092}] to mongo4-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1304792, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-04-26 12:24:05 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1711195}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1711195}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG command:56 - Command execution completed -2016-04-26 12:24:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1711195}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG command:56 - Command execution completed -2016-04-26 12:24:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1711195}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG command:56 - Command execution completed -2016-04-26 12:24:05 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-04-26 12:24:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1711195}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG command:56 - Command execution completed -2016-04-26 12:24:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1711195}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG command:56 - Command execution completed -2016-04-26 12:24:05 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-04-26 12:24:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1711195}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG command:56 - Command execution completed -2016-04-26 12:24:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1711195}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG command:56 - Command execution completed -2016-04-26 12:24:05 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-04-26 12:24:05 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1711195}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG query:56 - Query completed -2016-04-26 12:24:05 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-04-26 12:24:05 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-04-26 12:24:05 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-04-26 12:24:05 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1711195}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG update:56 - Update completed -2016-04-26 12:24:05 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1711195}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG query:56 - Query completed -2016-04-26 12:24:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:24:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:24:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:24:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:24:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:24:05 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:24:05 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 12:24:05 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered.csv -2016-04-26 12:24:05 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-04-26 12:24:05 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-04-26 12:24:05 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 12:24:05 DEBUG BucketCoding:42 - coding name done -2016-04-26 12:24:05 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-04-26 12:24:05 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-04-26 12:24:05 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-04-26 12:24:05 DEBUG OperationManager:67 - connection(boolean) - start -2016-04-26 12:24:05 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-04-26 12:24:05 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-04-26 12:24:05 DEBUG OperationFactory:97 - getOperation(String) - end -2016-04-26 12:24:05 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 12:24:05 DEBUG BucketCoding:42 - coding name done -2016-04-26 12:24:05 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-04-26 12:24:05 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-04-26 12:24:05 DEBUG MongoIO:77 - open mongo connection -2016-04-26 12:24:05 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-04-26 12:24:05 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:05 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:05 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 12:24:05 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@af8a0e67, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@17b22387, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@303a8038, socketFactory=javax.net.DefaultSocketFactory@50b7f544, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-04-26 12:24:05 INFO MongoIO:106 - new mongo connection pool opened -2016-04-26 12:24:05 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-04-26 12:24:05 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1711196}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1076370, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:05 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-04-26 12:24:05 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:05 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 12:24:05 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 12:24:05 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2010597}] to mongo1-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=899531, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 12:24:05 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:115481}] to mongo2-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1332286, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 12:24:05 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1424093}] to mongo4-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2858811, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 12:24:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}] -2016-04-26 12:24:05 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1711197}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1711197}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG command:56 - Command execution completed -2016-04-26 12:24:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1711197}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG command:56 - Command execution completed -2016-04-26 12:24:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1711197}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG command:56 - Command execution completed -2016-04-26 12:24:05 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-04-26 12:24:05 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-04-26 12:24:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1711197}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG command:56 - Command execution completed -2016-04-26 12:24:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1711197}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG command:56 - Command execution completed -2016-04-26 12:24:05 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-04-26 12:24:05 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1711197}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 12:24:05 DEBUG query:56 - Query completed -2016-04-26 12:24:05 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-04-26 12:24:05 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2010597} -2016-04-26 12:24:05 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:115481} -2016-04-26 12:24:05 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1424093} -2016-04-26 12:24:05 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1711197}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-04-26 12:24:05 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1711197} -2016-04-26 12:24:05 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1711196} -2016-04-26 12:24:05 INFO MongoIO:508 - Mongo has been closed -2016-04-26 12:24:05 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-04-26 12:24:06 INFO Operation:55 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-04-26 12:24:06 INFO Operation:57 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-04-26 12:24:06 DEBUG Operation:87 - translating: http://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-04-26 12:24:06 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-04-26 12:24:06 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-04-26 12:24:06 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-04-26 12:24:06 INFO Operation:65 - URL translated: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-04-26 12:24:06 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-04-26 12:24:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-04-26 12:24:06 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-04-26 12:24:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-04-26 12:24:11 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2010596} -2016-04-26 12:24:11 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:115480} -2016-04-26 12:24:11 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1424092} -2016-04-26 12:24:11 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1711195}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-04-26 12:24:11 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1711195} -2016-04-26 12:24:11 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1711194} -2016-04-26 12:24:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 12:24:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 12:24:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 12:24:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 12:24:44 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 12:24:44 DEBUG DataMinerManagerServiceImpl:149 - StartComputation(): [computationTitle=Dbscan-2016-04-26 12:22, computationDescription=Dbscan-2016-04-26 12:22, operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=Test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-04-26 12:24:44 DEBUG SClient4WPS:264 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-26 12:24:44 INFO StatWPSClientSession:84 - CONNECT -2016-04-26 12:24:45 DEBUG SClient4WPS:285 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-04-26 12:24:45 DEBUG SClient4WPS:289 - WPSClient->Fetching Inputs -2016-04-26 12:24:45 DEBUG SClient4WPS:291 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-04-26 12:24:45 DEBUG SClient4WPS:291 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-04-26 12:24:45 DEBUG SClient4WPS:291 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-04-26 12:24:45 DEBUG SClient4WPS:291 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-04-26 12:24:45 DEBUG SClient4WPS:291 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-04-26 12:24:45 DEBUG SClient4WPS:296 - WPSClient->Fetching Outputs -2016-04-26 12:24:45 DEBUG SClient4WPS:298 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-04-26 12:24:45 DEBUG SClient4WPS:298 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-04-26 12:24:45 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-26 12:24:45 DEBUG WPS2SM:279 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-04-26 12:24:45 DEBUG WPS2SM:285 - Max Megabytes: 1 -2016-04-26 12:24:45 DEBUG WPS2SM:200 - MimeType: text/xml -2016-04-26 12:24:45 DEBUG WPS2SM:201 - Schema: null -2016-04-26 12:24:45 DEBUG WPS2SM:202 - Encoding: null -2016-04-26 12:24:45 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-04-26 12:24:45 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OccurrencePointsTable -2016-04-26 12:24:45 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 12:24:45 DEBUG SClient4WPS:681 - InputParameter: TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-04-26 12:24:45 DEBUG WPS2SM:254 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-04-26 12:24:45 DEBUG WPS2SM:93 - WPS type: -2016-04-26 12:24:45 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-04-26 12:24:45 DEBUG WPS2SM:101 - Guessed default value: -2016-04-26 12:24:45 DEBUG WPS2SM:111 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-04-26 12:24:45 DEBUG WPS2SM:112 - Machter find: true -2016-04-26 12:24:45 DEBUG WPS2SM:113 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-04-26 12:24:45 DEBUG WPS2SM:114 - Machter start: 31 -2016-04-26 12:24:45 DEBUG WPS2SM:115 - Machter end: 103 -2016-04-26 12:24:45 DEBUG WPS2SM:116 - Machter Group Count: 2 -2016-04-26 12:24:45 DEBUG WPS2SM:118 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-04-26 12:24:45 DEBUG WPS2SM:121 - Matcher separator: | -2016-04-26 12:24:45 DEBUG WPS2SM:290 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-04-26 12:24:45 DEBUG WPS2SM:291 - Conversion to SM Type->Name:FeaturesColumnNames -2016-04-26 12:24:45 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 12:24:45 DEBUG SClient4WPS:681 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-04-26 12:24:45 DEBUG WPS2SM:254 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-04-26 12:24:45 DEBUG WPS2SM:93 - WPS type: -2016-04-26 12:24:45 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-04-26 12:24:45 DEBUG WPS2SM:101 - Guessed default value: OccCluster_ -2016-04-26 12:24:45 DEBUG WPS2SM:290 - Conversion to SM Type->Title:table name of the resulting distribution -2016-04-26 12:24:45 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-04-26 12:24:45 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 12:24:45 DEBUG SClient4WPS:681 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-04-26 12:24:45 DEBUG WPS2SM:254 - Conversion to SM Type->epsilon is a Literal Input -2016-04-26 12:24:45 DEBUG WPS2SM:93 - WPS type: -2016-04-26 12:24:45 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-04-26 12:24:45 DEBUG WPS2SM:101 - Guessed default value: 10 -2016-04-26 12:24:45 DEBUG WPS2SM:290 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-04-26 12:24:45 DEBUG WPS2SM:291 - Conversion to SM Type->Name:epsilon -2016-04-26 12:24:45 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 12:24:45 DEBUG SClient4WPS:681 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-04-26 12:24:45 DEBUG WPS2SM:254 - Conversion to SM Type->min_points is a Literal Input -2016-04-26 12:24:45 DEBUG WPS2SM:93 - WPS type: -2016-04-26 12:24:45 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-04-26 12:24:45 DEBUG WPS2SM:101 - Guessed default value: 1 -2016-04-26 12:24:45 DEBUG WPS2SM:290 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-04-26 12:24:45 DEBUG WPS2SM:291 - Conversion to SM Type->Name:min_points -2016-04-26 12:24:45 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 12:24:45 DEBUG SClient4WPS:681 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-04-26 12:24:45 DEBUG SClient4WPS:689 - UserInputs= key:OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-04-26 12:24:45 DEBUG SClient4WPS:689 - UserInputs= key:FeaturesColumnNames, value=depthmean|sstmnmax|salinitymin -2016-04-26 12:24:45 DEBUG SClient4WPS:689 - UserInputs= key:OccurrencePointsClusterLabel, value=Test -2016-04-26 12:24:45 DEBUG SClient4WPS:689 - UserInputs= key:epsilon, value=10 -2016-04-26 12:24:45 DEBUG SClient4WPS:689 - UserInputs= key:min_points, value=1 -2016-04-26 12:24:45 DEBUG SClient4WPS:748 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-04-26 12:24:45 DEBUG SClient4WPS:731 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymin -2016-04-26 12:24:45 DEBUG SClient4WPS:731 - Configuring Literal: OccurrencePointsClusterLabel to: Test -2016-04-26 12:24:45 DEBUG SClient4WPS:731 - Configuring Literal: epsilon to: 10 -2016-04-26 12:24:45 DEBUG SClient4WPS:731 - Configuring Literal: min_points to: 1 -2016-04-26 12:24:45 INFO StatWPSClientSession:84 - CONNECT -2016-04-26 12:24:46 DEBUG SClient4WPS:380 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - - - OccurrencePointsTable - - - - FeaturesColumnNames - - depthmean|sstmnmax|salinitymin - - - - OccurrencePointsClusterLabel - - Test - - - - epsilon - - 10 - - - - min_points - - 1 - - - - - - - OutputTable - - - non_deterministic_output - - - - -2016-04-26 12:24:46 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-04-26 12:24:46 DEBUG SClient4WPS:399 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=785cde75-04a6-467d-bb28-a4afafb2e1fd -2016-04-26 12:24:46 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-26 12:24:46 DEBUG SClient4WPS:768 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=785cde75-04a6-467d-bb28-a4afafb2e1fd -2016-04-26 12:24:46 DEBUG SClient4WPS:695 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=785cde75-04a6-467d-bb28-a4afafb2e1fd -2016-04-26 12:24:46 DEBUG SClient4WPS:706 - ComputationId: ComputationId [id=785cde75-04a6-467d-bb28-a4afafb2e1fd, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=785cde75-04a6-467d-bb28-a4afafb2e1fd] -2016-04-26 12:24:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:24:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 12:24:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 12:24:56 DEBUG SClient4WPS:784 - GetComputationStatus(): ComputationId=ComputationId [id=785cde75-04a6-467d-bb28-a4afafb2e1fd, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=785cde75-04a6-467d-bb28-a4afafb2e1fd] -2016-04-26 12:24:56 INFO StatWPSClientSession:114 - CONNECT -2016-04-26 12:24:56 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-04-26 12:24:56 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=785cde75-04a6-467d-bb28-a4afafb2e1fd -2016-04-26 12:24:56 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-04-26 12:24:56 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-04-26 12:24:56 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-04-26 12:24:56 DEBUG SClient4WPS:800 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymin,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/ZjZHUjJUYlNTQTlxUmhYZ0pWd0RHdGh2YWVkNkduZnVHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-04-26 12:24:56 DEBUG SClient4WPS:858 - WPS SUCCESS -2016-04-26 12:24:56 DEBUG SClient4WPS:883 - ComputationStatus: ComputationStatus [percentage=100.0, status=COMPLETE, endDate=null, message=null, errResource=null] -2016-04-26 12:24:56 DEBUG Log:91 - getResourceByComputationId: ComputationId [id=785cde75-04a6-467d-bb28-a4afafb2e1fd, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=785cde75-04a6-467d-bb28-a4afafb2e1fd] -2016-04-26 12:24:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 12:24:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 12:24:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 12:24:56 DEBUG WPS2SM:314 - Conversion to SM Type->Output id:OutputTable -2016-04-26 12:24:56 DEBUG WPS2SM:315 - Conversion to SM Type->Title:Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] -2016-04-26 12:24:56 DEBUG WPS2SM:331 - Complex Output -2016-04-26 12:24:56 DEBUG WPS2SM:200 - MimeType: text/csv -2016-04-26 12:24:56 DEBUG WPS2SM:201 - Schema: null -2016-04-26 12:24:56 DEBUG WPS2SM:202 - Encoding: null -2016-04-26 12:24:56 DEBUG SClient4WPS:932 - OutputParameter: TabularParameter [tableName= , templates=[], name=OutputTable, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], typology=TABULAR] -2016-04-26 12:24:56 DEBUG WPS2SM:314 - Conversion to SM Type->Output id:non_deterministic_output -2016-04-26 12:24:56 DEBUG WPS2SM:315 - Conversion to SM Type->Title:NonDeterministicOutput -2016-04-26 12:24:56 DEBUG WPS2SM:331 - Complex Output -2016-04-26 12:24:56 DEBUG WPS2SM:200 - MimeType: text/xml; subtype=gml/2.1.2 -2016-04-26 12:24:56 DEBUG WPS2SM:201 - Schema: http://schemas.opengis.net/gml/2.1.2/feature.xsd -2016-04-26 12:24:56 DEBUG WPS2SM:202 - Encoding: null -2016-04-26 12:24:56 DEBUG SClient4WPS:932 - OutputParameter: FileParameter [mimeType=text/xml; subtype=gml/2.1.2, value=null, name=non_deterministic_output, description=NonDeterministicOutput, typology=FILE] -2016-04-26 12:24:56 DEBUG SClient4WPS:419 - RetrieveProcessResult: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=785cde75-04a6-467d-bb28-a4afafb2e1fd -2016-04-26 12:24:56 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=785cde75-04a6-467d-bb28-a4afafb2e1fd -2016-04-26 12:24:56 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-04-26 12:24:56 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-04-26 12:24:56 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-04-26 12:24:56 DEBUG SClient4WPS:430 - Response: - - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymin,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/ZjZHUjJUYlNTQTlxUmhYZ0pWd0RHdGh2YWVkNkduZnVHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-04-26 12:24:56 DEBUG SClient4WPS:946 - Process Executed -2016-04-26 12:24:56 DEBUG SClient4WPS:570 - Node Name: wps:ComplexData -2016-04-26 12:24:56 DEBUG SClient4WPS:570 - Node Name: #text -2016-04-26 12:24:56 DEBUG SClient4WPS:570 - Node Name: wps:ComplexData -2016-04-26 12:24:56 DEBUG SClient4WPS:570 - Node Name: ogr:FeatureCollection -2016-04-26 12:24:56 DEBUG SClient4WPS:570 - Node Name: gml:featureMember -2016-04-26 12:24:56 DEBUG SClient4WPS:570 - Node Name: ogr:Result -2016-04-26 12:24:56 DEBUG SClient4WPS:537 - Node Name: d4science:Data- Value:http://data-d.d4science.org/ZjZHUjJUYlNTQTlxUmhYZ0pWd0RHdGh2YWVkNkduZnVHbWJQNStIS0N6Yz0 -2016-04-26 12:24:56 DEBUG SClient4WPS:537 - Node Name: d4science:Description- Value:Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] -2016-04-26 12:24:56 DEBUG SClient4WPS:537 - Node Name: d4science:MimeType- Value:text/csv -2016-04-26 12:24:56 DEBUG SClient4WPS:499 - ResponseWPS Map: F0-->ResponseWPS [data=http://data-d.d4science.org/ZjZHUjJUYlNTQTlxUmhYZ0pWd0RHdGh2YWVkNkduZnVHbWJQNStIS0N6Yz0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], mimeType=text/csv] -2016-04-26 12:24:56 DEBUG SClient4WPS:994 - Adding OBJ:F0 -2016-04-26 12:24:56 DEBUG SClient4WPS:1000 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/ZjZHUjJUYlNTQTlxUmhYZ0pWd0RHdGh2YWVkNkduZnVHbWJQNStIS0N6Yz0, name=F0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], typology=OBJECT] -2016-04-26 12:24:56 DEBUG Log:91 - Resoure: MapResource [map={F0=FileResource [url=http://data-d.d4science.org/ZjZHUjJUYlNTQTlxUmhYZ0pWd0RHdGh2YWVkNkduZnVHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F0, getName()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getDescription()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getResourceType()=FILE]}, getResourceId()=mapResource, getName()=Resources, getDescription()=Resources, getResourceType()=MAP] -2016-04-26 12:25:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:25:32 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 12:26:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 12:26:27 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-04-26 12:27:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 12:27:22 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-04-26 12:28:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:28:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:29:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:29:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 12:30:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 12:30:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 12:31:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:31:02 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:31:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:31:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:32:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:32:52 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:33:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:33:47 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:34:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 12:34:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 12:35:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-26 12:35:37 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-26 12:36:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 12:36:32 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-04-26 12:37:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:37:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 12:38:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:38:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:39:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-26 12:39:17 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-26 12:40:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 12:40:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 12:41:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 12:41:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 12:42:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 12:42:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 12:42:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 12:42:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 12:43:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 12:43:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 12:44:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 12:44:47 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 12:45:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:45:42 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:46:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 12:46:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 12:47:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 12:47:32 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-04-26 12:48:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 12:48:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 12:49:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 12:49:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:50:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-04-26 12:50:17 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-04-26 12:51:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 12:51:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 12:52:07 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 12:52:07 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 12:52:07 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 12:52:07 WARN SessionCheckerServiceImpl:80 - Scope is null at Tue Apr 26 12:52:07 CEST 2016 -2016-04-26 12:52:07 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 12:57:59 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-26 12:57:59 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-26 12:57:59 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-26 12:57:59 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 12:57:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-26 12:57:59 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 12:57:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi null -2016-04-26 12:57:59 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 12:57:59 DEBUG ASLSession:311 - Scope is null, returning null -2016-04-26 12:57:59 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=null, scopeName=null, userEmailAddress=null, userFullName=null] -2016-04-26 12:58:01 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 12:58:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:58:01 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 12:58:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi null -2016-04-26 12:58:01 INFO StatWPSClientSession:84 - CONNECT -2016-04-26 12:58:02 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-26 12:58:02 DEBUG SClient4WPS:250 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-04-26 12:58:02 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 12:58:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 12:58:02 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 12:58:02 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi null -2016-04-26 12:58:02 DEBUG DataMinerManagerServiceImpl:405 - getDataMinerWorkArea() -2016-04-26 12:58:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:58:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:58:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:58:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:58:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:58:02 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:58:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:58:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:58:02 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-26 12:58:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-04-26 12:58:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:58:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:58:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:58:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:58:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:58:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:58:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:58:02 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:58:02 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-26 12:58:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-04-26 12:58:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:58:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:58:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:58:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:58:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:58:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:58:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:58:02 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:58:02 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-26 12:58:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-04-26 12:58:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:58:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:58:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 12:58:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 12:58:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 12:58:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 12:58:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 12:58:02 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 12:58:02 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-26 12:58:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-04-26 12:58:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 12:58:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 12:58:54 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 12:58:54 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 12:58:54 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 12:58:54 WARN SessionCheckerServiceImpl:80 - Scope is null at Tue Apr 26 12:58:54 CEST 2016 -2016-04-26 12:58:54 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 14:25:34 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-04-26 14:25:34 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-04-26 14:25:34 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-04-26 14:25:34 INFO SessionUtil:49 - no user found in session, use test user -2016-04-26 14:25:34 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 14:25:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 14:25:34 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-26 14:25:34 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@72e91fe8 -2016-04-26 14:25:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 14:25:34 INFO ASLSession:352 - Logging the entrance -2016-04-26 14:25:34 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-26 14:25:34 DEBUG TemplateModel:83 - 2016-04-26 14:25:34, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-26 14:25:34 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 14:25:34 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-04-26 14:25:36 INFO SessionUtil:49 - no user found in session, use test user -2016-04-26 14:25:36 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-26 14:25:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 14:25:36 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-26 14:25:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 14:25:36 INFO ASLSession:352 - Logging the entrance -2016-04-26 14:25:36 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-26 14:25:36 DEBUG TemplateModel:83 - 2016-04-26 14:25:36, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-26 14:25:36 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 14:25:36 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-26 14:25:36 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 120 ms -2016-04-26 14:25:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-04-26 14:25:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-04-26 14:25:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-04-26 14:25:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-04-26 14:25:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-04-26 14:25:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-04-26 14:25:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-04-26 14:25:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-04-26 14:25:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-04-26 14:25:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-04-26 14:25:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-04-26 14:25:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-04-26 14:25:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-04-26 14:25:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-04-26 14:25:37 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-04-26 14:25:37 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-26 14:25:37 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-26 14:25:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@6801fab4 -2016-04-26 14:25:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@1562d92e -2016-04-26 14:25:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@1195581d -2016-04-26 14:25:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@86b2007 -2016-04-26 14:25:37 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 102 ms -2016-04-26 14:25:37 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-04-26 14:25:37 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-04-26 14:25:37 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-04-26 14:25:37 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-04-26 14:25:37 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-04-26 14:25:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 14:25:37 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-26 14:25:37 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-04-26 14:25:37 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 29 ms -2016-04-26 14:25:37 DEBUG SClient4WPS:113 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-04-26 14:25:37 INFO SClient4WPS:118 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-26 14:25:37 DEBUG SClient4WPS:129 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-04-26 14:25:37 INFO StatWPSClientSession:84 - CONNECT -2016-04-26 14:25:37 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-26 14:25:37 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-26 14:25:37 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-26 14:25:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-04-26 14:25:37 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-04-26 14:25:37 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 14:25:37 DEBUG DataMinerManagerServiceImpl:405 - getDataMinerWorkArea() -2016-04-26 14:25:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:37 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-04-26 14:25:37 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-04-26 14:25:37 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-04-26 14:25:37 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-04-26 14:25:37 DEBUG JCRRepository:271 - Initialize repository -2016-04-26 14:25:37 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-04-26 14:25:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-04-26 14:25:37 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-26 14:25:37 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-04-26 14:25:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 100 ms -2016-04-26 14:25:38 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-04-26 14:25:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-04-26 14:25:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:38 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-04-26 14:25:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:38 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-04-26 14:25:38 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-26 14:25:38 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-26 14:25:38 INFO JCRRepository:377 - skip init in JCRRepository -2016-04-26 14:25:38 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-26 14:25:38 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-26 14:25:38 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-04-26 14:25:38 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-04-26 14:25:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:38 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 14:25:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 14:25:38 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-26 14:25:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-04-26 14:25:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 14:25:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 14:25:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:38 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:38 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-26 14:25:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-04-26 14:25:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 14:25:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 14:25:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:39 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:39 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-26 14:25:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-04-26 14:25:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 14:25:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 14:25:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:39 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:39 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-26 14:25:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-04-26 14:25:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 14:25:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 14:25:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 14:25:39 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 14:25:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 14:25:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:39 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:39 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-04-26 14:25:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 14:25:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 14:25:40 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-26 14:25:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 14:25:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 14:25:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 14:25:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:40 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:40 DEBUG SClient4WPS:250 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-04-26 14:25:40 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-04-26 14:25:40 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-04-26 14:25:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 14:25:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 14:25:40 INFO WorkspaceExplorerServiceImpl:188 - end time - 165 msc 0 sec -2016-04-26 14:25:40 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-04-26 14:25:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-26 14:25:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 14:25:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-26 14:25:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-26 14:25:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 30 ms -2016-04-26 14:25:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-26 14:25:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-26 14:25:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-04-26 14:25:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-04-26 14:25:40 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-04-26 14:25:40 INFO ISClientConnector:82 - found only one RR, take it -2016-04-26 14:25:40 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-04-26 14:25:40 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-04-26 14:25:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-26 14:25:40 DEBUG StorageClient:517 - set scope: /gcube -2016-04-26 14:25:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-26 14:25:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-26 14:25:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-26 14:25:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-04-26 14:25:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-26 14:25:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-26 14:25:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-26 14:25:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 14:25:40 INFO WorkspaceExplorerServiceImpl:188 - end time - 408 msc 0 sec -2016-04-26 14:25:45 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-26 14:25:45 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-26 14:25:45 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-26 14:25:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-04-26 14:25:45 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-04-26 14:25:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 14:25:45 INFO SClient4WPS:631 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-04-26 14:25:45 DEBUG SClient4WPS:264 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-26 14:25:45 INFO StatWPSClientSession:84 - CONNECT -2016-04-26 14:25:45 DEBUG SClient4WPS:285 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-04-26 14:25:45 DEBUG SClient4WPS:289 - WPSClient->Fetching Inputs -2016-04-26 14:25:45 DEBUG SClient4WPS:291 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-04-26 14:25:45 DEBUG SClient4WPS:291 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-04-26 14:25:45 DEBUG SClient4WPS:291 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-04-26 14:25:45 DEBUG SClient4WPS:291 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-04-26 14:25:45 DEBUG SClient4WPS:291 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-04-26 14:25:45 DEBUG SClient4WPS:296 - WPSClient->Fetching Outputs -2016-04-26 14:25:45 DEBUG SClient4WPS:298 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-04-26 14:25:45 DEBUG SClient4WPS:298 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-04-26 14:25:45 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-26 14:25:45 DEBUG WPS2SM:279 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-04-26 14:25:45 DEBUG WPS2SM:285 - Max Megabytes: 1 -2016-04-26 14:25:45 DEBUG WPS2SM:200 - MimeType: text/xml -2016-04-26 14:25:45 DEBUG WPS2SM:201 - Schema: null -2016-04-26 14:25:45 DEBUG WPS2SM:202 - Encoding: null -2016-04-26 14:25:45 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-04-26 14:25:45 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OccurrencePointsTable -2016-04-26 14:25:45 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 14:25:45 DEBUG SClient4WPS:646 - InputParameter: TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-04-26 14:25:45 DEBUG WPS2SM:254 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-04-26 14:25:45 DEBUG WPS2SM:93 - WPS type: -2016-04-26 14:25:45 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-04-26 14:25:45 DEBUG WPS2SM:101 - Guessed default value: -2016-04-26 14:25:45 DEBUG WPS2SM:111 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-04-26 14:25:45 DEBUG WPS2SM:112 - Machter find: true -2016-04-26 14:25:45 DEBUG WPS2SM:113 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-04-26 14:25:45 DEBUG WPS2SM:114 - Machter start: 31 -2016-04-26 14:25:45 DEBUG WPS2SM:115 - Machter end: 103 -2016-04-26 14:25:45 DEBUG WPS2SM:116 - Machter Group Count: 2 -2016-04-26 14:25:45 DEBUG WPS2SM:118 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-04-26 14:25:45 DEBUG WPS2SM:121 - Matcher separator: | -2016-04-26 14:25:45 DEBUG WPS2SM:290 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-04-26 14:25:45 DEBUG WPS2SM:291 - Conversion to SM Type->Name:FeaturesColumnNames -2016-04-26 14:25:45 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 14:25:45 DEBUG SClient4WPS:646 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-04-26 14:25:45 DEBUG WPS2SM:254 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-04-26 14:25:45 DEBUG WPS2SM:93 - WPS type: -2016-04-26 14:25:45 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-04-26 14:25:45 DEBUG WPS2SM:101 - Guessed default value: OccCluster_ -2016-04-26 14:25:45 DEBUG WPS2SM:290 - Conversion to SM Type->Title:table name of the resulting distribution -2016-04-26 14:25:45 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-04-26 14:25:45 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 14:25:45 DEBUG SClient4WPS:646 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-04-26 14:25:45 DEBUG WPS2SM:254 - Conversion to SM Type->epsilon is a Literal Input -2016-04-26 14:25:45 DEBUG WPS2SM:93 - WPS type: -2016-04-26 14:25:45 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-04-26 14:25:45 DEBUG WPS2SM:101 - Guessed default value: 10 -2016-04-26 14:25:45 DEBUG WPS2SM:290 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-04-26 14:25:45 DEBUG WPS2SM:291 - Conversion to SM Type->Name:epsilon -2016-04-26 14:25:45 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 14:25:45 DEBUG SClient4WPS:646 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-04-26 14:25:45 DEBUG WPS2SM:254 - Conversion to SM Type->min_points is a Literal Input -2016-04-26 14:25:45 DEBUG WPS2SM:93 - WPS type: -2016-04-26 14:25:45 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-04-26 14:25:45 DEBUG WPS2SM:101 - Guessed default value: 1 -2016-04-26 14:25:45 DEBUG WPS2SM:290 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-04-26 14:25:45 DEBUG WPS2SM:291 - Conversion to SM Type->Name:min_points -2016-04-26 14:25:45 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 14:25:45 DEBUG SClient4WPS:646 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-04-26 14:25:45 DEBUG SClient4WPS:650 - Parameters: [TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-04-26 14:25:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 14:25:45 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 14:25:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 14:25:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:45 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 14:25:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 14:25:45 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 14:25:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 14:25:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:45 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:45 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-04-26 14:25:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 14:25:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-04-26 14:25:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 14:25:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 14:25:46 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 14:25:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 14:25:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 14:25:46 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 14:25:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 14:25:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:46 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 14:25:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 14:25:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-26 14:25:46 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-26 14:25:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-26 14:25:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:46 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 14:25:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 14:25:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 14:25:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 14:25:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-26 14:25:46 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-26 14:25:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 14:25:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-26 14:25:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 14:25:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-26 14:25:46 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-04-26 14:25:46 DEBUG ItemBuilder:108 - Is shared folder: test -2016-04-26 14:25:46 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-04-26 14:25:46 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-04-26 14:25:46 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-04-26 14:25:46 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-04-26 14:25:46 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-04-26 14:25:46 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-04-26 14:25:46 INFO WorkspaceExplorerServiceImpl:142 - end time - 248 msc 0 sec -2016-04-26 14:25:46 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-04-26 14:25:54 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 14:25:54 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 14:25:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 14:25:54 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 14:25:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 14:25:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:54 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:54 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 14:25:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 14:25:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 14:25:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 14:25:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:54 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:54 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 14:25:54 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 14:25:55 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-04-26 14:25:55 DEBUG ServiceEngine:306 - get() - start -2016-04-26 14:25:55 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 14:25:55 DEBUG BucketCoding:42 - coding name done -2016-04-26 14:25:55 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-04-26 14:25:55 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-04-26 14:25:55 DEBUG OperationManager:67 - connection(boolean) - start -2016-04-26 14:25:55 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-04-26 14:25:55 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-04-26 14:25:55 DEBUG OperationFactory:97 - getOperation(String) - end -2016-04-26 14:25:55 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-04-26 14:25:55 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 14:25:55 DEBUG BucketCoding:42 - coding name done -2016-04-26 14:25:55 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-04-26 14:25:55 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-04-26 14:25:55 DEBUG MongoIO:77 - open mongo connection -2016-04-26 14:25:55 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-04-26 14:25:55 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:25:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 14:25:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 14:25:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 14:25:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:55 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-26 14:25:55 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-26 14:25:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-26 14:25:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:55 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:55 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 14:25:55 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 14:25:55 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:25:55 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:25:55 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@93de57cb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6f86323e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@534cbda5, socketFactory=javax.net.DefaultSocketFactory@5336c65c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-04-26 14:25:55 INFO MongoIO:106 - new mongo connection pool opened -2016-04-26 14:25:55 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-04-26 14:25:55 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-04-26 14:25:55 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-04-26 14:25:55 INFO WorkspaceExplorerServiceImpl:188 - end time - 59 msc 0 sec -2016-04-26 14:25:55 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-26 14:25:55 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-04-26 14:25:55 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-04-26 14:25:55 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:119678}] to mongo2-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1371608, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:25:55 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-04-26 14:25:55 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:25:55 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:25:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:25:55 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1716479}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1451960, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:25:55 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:25:55 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1716480}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2013871}] to mongo1-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=995396, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:25:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:25:55 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1716480}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 DEBUG command:56 - Command execution completed -2016-04-26 14:25:55 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1716480}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 DEBUG command:56 - Command execution completed -2016-04-26 14:25:55 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1716480}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 DEBUG command:56 - Command execution completed -2016-04-26 14:25:55 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-04-26 14:25:55 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1716480}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 DEBUG command:56 - Command execution completed -2016-04-26 14:25:55 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1716480}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 DEBUG command:56 - Command execution completed -2016-04-26 14:25:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1716480}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1427408}] to mongo4-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1520228, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:25:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-04-26 14:25:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-04-26 14:25:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-04-26 14:25:56 DEBUG query:56 - Query completed -2016-04-26 14:25:56 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 7 objects -2016-04-26 14:25:56 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2013871} -2016-04-26 14:25:56 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1716480}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-04-26 14:25:56 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1427408} -2016-04-26 14:25:56 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:119678} -2016-04-26 14:25:56 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1716480} -2016-04-26 14:25:56 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1716479} -2016-04-26 14:25:56 INFO MongoIO:508 - Mongo has been closed -2016-04-26 14:25:56 INFO DefaultMongoClient:1329 - getFolderTotalVolume 130827 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-04-26 14:25:56 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-04-26 14:25:56 INFO WorkspaceExplorerServiceImpl:503 - returning size: 130827 -2016-04-26 14:25:58 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-04-26 14:25:58 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 7ba62008-739a-4787-ae33-7938ad109a54 -2016-04-26 14:25:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 14:25:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 14:25:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 14:25:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:58 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:58 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 7ba62008-739a-4787-ae33-7938ad109a54 -2016-04-26 14:25:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 14:25:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 14:25:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 14:25:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:58 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:58 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-04-26 14:25:58 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-04-26 14:25:58 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-04-26 14:25:59 DEBUG ServiceEngine:306 - get() - start -2016-04-26 14:25:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 14:25:59 DEBUG BucketCoding:42 - coding name done -2016-04-26 14:25:59 DEBUG ServiceEngine:62 - path(String) - name: DBScan -2016-04-26 14:25:59 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-04-26 14:25:59 DEBUG OperationManager:67 - connection(boolean) - start -2016-04-26 14:25:59 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-04-26 14:25:59 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-04-26 14:25:59 DEBUG OperationFactory:97 - getOperation(String) - end -2016-04-26 14:25:59 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-04-26 14:25:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 14:25:59 DEBUG BucketCoding:42 - coding name done -2016-04-26 14:25:59 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-04-26 14:25:59 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-04-26 14:25:59 DEBUG MongoIO:77 - open mongo connection -2016-04-26 14:25:59 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-04-26 14:25:59 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:25:59 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:25:59 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:25:59 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@93de57cb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6f86323e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@534cbda5, socketFactory=javax.net.DefaultSocketFactory@5336c65c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-04-26 14:25:59 INFO MongoIO:106 - new mongo connection pool opened -2016-04-26 14:25:59 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-04-26 14:25:59 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1716482}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2222634, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:25:59 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-04-26 14:25:59 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:25:59 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:25:59 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:25:59 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2013872}] to mongo1-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1551821, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:25:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:25:59 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:119681}] to mongo2-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1293484, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:25:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:25:59 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1427409}] to mongo4-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2114707, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:25:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-04-26 14:25:59 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1716483}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1716483}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 DEBUG command:56 - Command execution completed -2016-04-26 14:25:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1716483}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 DEBUG command:56 - Command execution completed -2016-04-26 14:25:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1716483}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 DEBUG command:56 - Command execution completed -2016-04-26 14:25:59 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-04-26 14:25:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1716483}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 DEBUG command:56 - Command execution completed -2016-04-26 14:25:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1716483}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 DEBUG command:56 - Command execution completed -2016-04-26 14:25:59 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1716483}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:25:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 14:25:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 14:25:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 14:25:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 14:25:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:59 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 14:25:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 14:25:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:25:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:25:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:25:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:25:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:25:59 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:25:59 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-04-26 14:25:59 INFO JCRServlets:267 - Servlet getItemById 7ba62008-739a-4787-ae33-7938ad109a54 -2016-04-26 14:25:59 INFO JCRServlets:697 - Calling Servlet get Parents By Id 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-04-26 14:25:59 INFO JCRServlets:142 - Calling servlet getChildrenById 7ba62008-739a-4787-ae33-7938ad109a54 by giancarlo.panichi -2016-04-26 14:25:59 INFO WorkspaceExplorerServiceImpl:188 - end time - 42 msc 0 sec -2016-04-26 14:25:59 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-04-26 14:25:59 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=7ba62008-739a-4787-ae33-7938ad109a54, name=DBScan, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-04-26 14:25:59 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-26 14:25:59 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-04-26 14:25:59 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-04-26 14:25:59 DEBUG query:56 - Query completed -2016-04-26 14:25:59 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 1 objects -2016-04-26 14:25:59 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2013872} -2016-04-26 14:25:59 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:119681} -2016-04-26 14:25:59 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1716483}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-04-26 14:25:59 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1427409} -2016-04-26 14:25:59 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1716483} -2016-04-26 14:25:59 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1716482} -2016-04-26 14:25:59 INFO MongoIO:508 - Mongo has been closed -2016-04-26 14:26:00 INFO DefaultMongoClient:1329 - getFolderTotalVolume 849 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-04-26 14:26:00 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan -2016-04-26 14:26:00 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-04-26 14:26:03 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 14:26:03 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 14:26:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 14:26:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 14:26:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 14:26:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:26:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:26:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:26:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:26:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:26:03 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:26:03 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 14:26:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-26 14:26:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-26 14:26:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-26 14:26:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:26:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:26:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:26:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:26:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:26:03 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:26:03 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 14:26:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 14:26:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 14:26:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 14:26:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:26:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:26:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:26:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:26:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:26:03 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:26:03 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 14:26:03 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 14:26:03 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 14:26:03 INFO WorkspaceExplorerServiceImpl:503 - returning size: 849 -2016-04-26 14:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-04-26 14:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-04-26 14:26:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 14:26:04 DEBUG DataMinerManagerServiceImpl:387 - retrieveTableInformation(): Item [id=13d0382e-8833-4df7-b4dc-61bbba61b3e5, name=hcaf_filtered.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Wed Mar 09 17:10:22 CET 2016] -2016-04-26 14:26:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:26:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:26:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:26:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:26:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:26:04 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:26:04 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 14:26:04 DEBUG ServiceEngine:193 - get() - start -2016-04-26 14:26:04 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 14:26:04 DEBUG BucketCoding:42 - coding name done -2016-04-26 14:26:04 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-04-26 14:26:04 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-04-26 14:26:04 DEBUG OperationManager:67 - connection(boolean) - start -2016-04-26 14:26:04 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-04-26 14:26:04 INFO OperationFactory:39 - getOperation(String) - start download -2016-04-26 14:26:04 DEBUG OperationFactory:97 - getOperation(String) - end -2016-04-26 14:26:04 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 14:26:04 DEBUG BucketCoding:42 - coding name done -2016-04-26 14:26:04 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-04-26 14:26:04 DEBUG Operation:173 - get(String) - start -2016-04-26 14:26:04 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-04-26 14:26:04 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-04-26 14:26:04 DEBUG MongoIO:77 - open mongo connection -2016-04-26 14:26:04 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-04-26 14:26:04 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:26:04 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:26:04 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:26:04 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@93de57cb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6f86323e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@534cbda5, socketFactory=javax.net.DefaultSocketFactory@5336c65c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-04-26 14:26:04 INFO MongoIO:106 - new mongo connection pool opened -2016-04-26 14:26:04 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-04-26 14:26:04 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1716484}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1466381, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:26:04 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-04-26 14:26:04 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:26:04 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:26:04 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:26:04 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:119684}] to mongo2-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2013873}] to mongo1-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=980600, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:26:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:26:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=6354393, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:26:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:26:04 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1427410}] to mongo4-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1253686, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:26:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-04-26 14:26:04 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1716485}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1716485}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG command:56 - Command execution completed -2016-04-26 14:26:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1716485}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG command:56 - Command execution completed -2016-04-26 14:26:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1716485}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG command:56 - Command execution completed -2016-04-26 14:26:04 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-04-26 14:26:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1716485}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG command:56 - Command execution completed -2016-04-26 14:26:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1716485}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG command:56 - Command execution completed -2016-04-26 14:26:04 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-04-26 14:26:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1716485}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG command:56 - Command execution completed -2016-04-26 14:26:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1716485}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG command:56 - Command execution completed -2016-04-26 14:26:04 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-04-26 14:26:04 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1716485}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG query:56 - Query completed -2016-04-26 14:26:04 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-04-26 14:26:04 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-04-26 14:26:04 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-04-26 14:26:04 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1716485}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG update:56 - Update completed -2016-04-26 14:26:04 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1716485}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:04 DEBUG query:56 - Query completed -2016-04-26 14:26:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-26 14:26:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-26 14:26:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-26 14:26:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-26 14:26:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-26 14:26:04 DEBUG JCRHomeManager:97 - User is already logged -2016-04-26 14:26:04 INFO JCRServlets:267 - Servlet getItemById 13d0382e-8833-4df7-b4dc-61bbba61b3e5 -2016-04-26 14:26:04 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered.csv -2016-04-26 14:26:04 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-04-26 14:26:04 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-04-26 14:26:04 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 14:26:04 DEBUG BucketCoding:42 - coding name done -2016-04-26 14:26:04 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered.csv -2016-04-26 14:26:04 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/ -2016-04-26 14:26:04 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-04-26 14:26:04 DEBUG OperationManager:67 - connection(boolean) - start -2016-04-26 14:26:04 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-04-26 14:26:04 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-04-26 14:26:04 DEBUG OperationFactory:97 - getOperation(String) - end -2016-04-26 14:26:04 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-04-26 14:26:04 DEBUG BucketCoding:42 - coding name done -2016-04-26 14:26:04 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-04-26 14:26:04 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-04-26 14:26:04 DEBUG MongoIO:77 - open mongo connection -2016-04-26 14:26:04 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-04-26 14:26:04 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:26:04 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:26:04 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:26:04 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@93de57cb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6f86323e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@534cbda5, socketFactory=javax.net.DefaultSocketFactory@5336c65c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-04-26 14:26:04 INFO MongoIO:106 - new mongo connection pool opened -2016-04-26 14:26:04 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-04-26 14:26:05 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1716486}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1273002, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:26:05 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-04-26 14:26:05 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:26:05 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-04-26 14:26:05 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:26:05 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2013874}] to mongo1-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=758481, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:26:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:26:05 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:119685}] to mongo2-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1031234, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:26:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-04-26 14:26:05 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1427411}] to mongo4-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1182845, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-04-26 14:26:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-04-26 14:26:05 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1716487}] to mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1716487}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 DEBUG command:56 - Command execution completed -2016-04-26 14:26:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1716487}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 DEBUG command:56 - Command execution completed -2016-04-26 14:26:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1716487}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 DEBUG command:56 - Command execution completed -2016-04-26 14:26:05 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-04-26 14:26:05 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-04-26 14:26:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1716487}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 DEBUG command:56 - Command execution completed -2016-04-26 14:26:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1716487}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 DEBUG command:56 - Command execution completed -2016-04-26 14:26:05 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-04-26 14:26:05 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1716487}] to server mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:05 DEBUG query:56 - Query completed -2016-04-26 14:26:05 INFO MongoIO:186 - object found hcaf_filtered.csv -2016-04-26 14:26:05 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2013874} -2016-04-26 14:26:05 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:119685} -2016-04-26 14:26:05 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1716487}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-04-26 14:26:05 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1427411} -2016-04-26 14:26:05 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1716487} -2016-04-26 14:26:05 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1716486} -2016-04-26 14:26:05 INFO MongoIO:508 - Mongo has been closed -2016-04-26 14:26:05 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/DBScan/hcaf_filtered.csv -2016-04-26 14:26:05 INFO Operation:55 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-04-26 14:26:05 INFO Operation:57 - URL generated: smp://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-04-26 14:26:05 DEBUG Operation:87 - translating: http://data-d.d4science.org/8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-04-26 14:26:05 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-04-26 14:26:05 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 8Yjj+HQc0gLVW2bfDjeAkOhqzg9XDTeiGmbP5+HKCzc= -2016-04-26 14:26:05 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-04-26 14:26:05 INFO Operation:65 - URL translated: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-04-26 14:26:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-04-26 14:26:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-04-26 14:26:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-04-26 14:26:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-04-26 14:26:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-04-26 14:26:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-04-26 14:26:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-04-26 14:26:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-04-26 14:26:15 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2013873} -2016-04-26 14:26:15 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1427410} -2016-04-26 14:26:15 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1716485}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-04-26 14:26:15 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:119684} -2016-04-26 14:26:15 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1716485} -2016-04-26 14:26:15 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1716484} -2016-04-26 14:26:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 14:26:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 14:26:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-04-26 14:26:47 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-04-26 14:26:47 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 14:26:47 DEBUG DataMinerManagerServiceImpl:149 - StartComputation(): [computationTitle=Dbscan-2016-04-26 14:25, computationDescription=Dbscan-2016-04-26 14:25, operator=Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[TabularParameter [tableName=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0, templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=Test, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=10, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=1, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]], hasImage=false]] -2016-04-26 14:26:47 DEBUG SClient4WPS:264 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-26 14:26:47 INFO StatWPSClientSession:84 - CONNECT -2016-04-26 14:26:47 DEBUG SClient4WPS:285 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-04-26 14:26:47 DEBUG SClient4WPS:289 - WPSClient->Fetching Inputs -2016-04-26 14:26:47 DEBUG SClient4WPS:291 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-04-26 14:26:47 DEBUG SClient4WPS:291 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-04-26 14:26:47 DEBUG SClient4WPS:291 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-04-26 14:26:47 DEBUG SClient4WPS:291 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-04-26 14:26:47 DEBUG SClient4WPS:291 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-04-26 14:26:47 DEBUG SClient4WPS:296 - WPSClient->Fetching Outputs -2016-04-26 14:26:47 DEBUG SClient4WPS:298 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-04-26 14:26:47 DEBUG SClient4WPS:298 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-04-26 14:26:47 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-26 14:26:47 DEBUG WPS2SM:279 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-04-26 14:26:47 DEBUG WPS2SM:285 - Max Megabytes: 1 -2016-04-26 14:26:47 DEBUG WPS2SM:200 - MimeType: text/xml -2016-04-26 14:26:47 DEBUG WPS2SM:201 - Schema: null -2016-04-26 14:26:47 DEBUG WPS2SM:202 - Encoding: null -2016-04-26 14:26:47 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-04-26 14:26:47 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OccurrencePointsTable -2016-04-26 14:26:47 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 14:26:47 DEBUG SClient4WPS:681 - InputParameter: TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-04-26 14:26:47 DEBUG WPS2SM:254 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-04-26 14:26:47 DEBUG WPS2SM:93 - WPS type: -2016-04-26 14:26:47 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-04-26 14:26:47 DEBUG WPS2SM:101 - Guessed default value: -2016-04-26 14:26:47 DEBUG WPS2SM:111 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-04-26 14:26:47 DEBUG WPS2SM:112 - Machter find: true -2016-04-26 14:26:47 DEBUG WPS2SM:113 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-04-26 14:26:47 DEBUG WPS2SM:114 - Machter start: 31 -2016-04-26 14:26:47 DEBUG WPS2SM:115 - Machter end: 103 -2016-04-26 14:26:47 DEBUG WPS2SM:116 - Machter Group Count: 2 -2016-04-26 14:26:47 DEBUG WPS2SM:118 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-04-26 14:26:47 DEBUG WPS2SM:121 - Matcher separator: | -2016-04-26 14:26:47 DEBUG WPS2SM:290 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-04-26 14:26:47 DEBUG WPS2SM:291 - Conversion to SM Type->Name:FeaturesColumnNames -2016-04-26 14:26:47 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 14:26:47 DEBUG SClient4WPS:681 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-04-26 14:26:47 DEBUG WPS2SM:254 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-04-26 14:26:47 DEBUG WPS2SM:93 - WPS type: -2016-04-26 14:26:47 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-04-26 14:26:47 DEBUG WPS2SM:101 - Guessed default value: OccCluster_ -2016-04-26 14:26:47 DEBUG WPS2SM:290 - Conversion to SM Type->Title:table name of the resulting distribution -2016-04-26 14:26:47 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-04-26 14:26:47 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 14:26:47 DEBUG SClient4WPS:681 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-04-26 14:26:47 DEBUG WPS2SM:254 - Conversion to SM Type->epsilon is a Literal Input -2016-04-26 14:26:47 DEBUG WPS2SM:93 - WPS type: -2016-04-26 14:26:47 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-04-26 14:26:47 DEBUG WPS2SM:101 - Guessed default value: 10 -2016-04-26 14:26:47 DEBUG WPS2SM:290 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-04-26 14:26:47 DEBUG WPS2SM:291 - Conversion to SM Type->Name:epsilon -2016-04-26 14:26:47 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 14:26:47 DEBUG SClient4WPS:681 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-04-26 14:26:47 DEBUG WPS2SM:254 - Conversion to SM Type->min_points is a Literal Input -2016-04-26 14:26:47 DEBUG WPS2SM:93 - WPS type: -2016-04-26 14:26:47 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-04-26 14:26:47 DEBUG WPS2SM:101 - Guessed default value: 1 -2016-04-26 14:26:47 DEBUG WPS2SM:290 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-04-26 14:26:47 DEBUG WPS2SM:291 - Conversion to SM Type->Name:min_points -2016-04-26 14:26:47 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-04-26 14:26:47 DEBUG SClient4WPS:681 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-04-26 14:26:47 DEBUG SClient4WPS:689 - UserInputs= key:OccurrencePointsTable, value=http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-04-26 14:26:47 DEBUG SClient4WPS:689 - UserInputs= key:FeaturesColumnNames, value=depthmean|sstmnmax|salinitymean -2016-04-26 14:26:47 DEBUG SClient4WPS:689 - UserInputs= key:OccurrencePointsClusterLabel, value=Test -2016-04-26 14:26:47 DEBUG SClient4WPS:689 - UserInputs= key:epsilon, value=10 -2016-04-26 14:26:47 DEBUG SClient4WPS:689 - UserInputs= key:min_points, value=1 -2016-04-26 14:26:47 DEBUG SClient4WPS:748 - Configuring Complex: OccurrencePointsTable to: http://data-d.d4science.org/OFlqaitIUWMwZ0xWVzJiZkRqZUFrT2hxemc5WERUZWlHbWJQNStIS0N6Yz0 -2016-04-26 14:26:47 DEBUG SClient4WPS:731 - Configuring Literal: FeaturesColumnNames to: depthmean|sstmnmax|salinitymean -2016-04-26 14:26:47 DEBUG SClient4WPS:731 - Configuring Literal: OccurrencePointsClusterLabel to: Test -2016-04-26 14:26:47 DEBUG SClient4WPS:731 - Configuring Literal: epsilon to: 10 -2016-04-26 14:26:47 DEBUG SClient4WPS:731 - Configuring Literal: min_points to: 1 -2016-04-26 14:26:47 INFO StatWPSClientSession:84 - CONNECT -2016-04-26 14:26:48 DEBUG SClient4WPS:380 - Sending: - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - - - OccurrencePointsTable - - - - FeaturesColumnNames - - depthmean|sstmnmax|salinitymean - - - - OccurrencePointsClusterLabel - - Test - - - - epsilon - - 10 - - - - min_points - - 1 - - - - - - - OutputTable - - - non_deterministic_output - - - - -2016-04-26 14:26:48 DEBUG StatWPSClientSession:420 - RetrieveDataViaPost(): http://dataminer1-d-d4s.d4science.org:80/wps/WebProcessingService? -2016-04-26 14:26:48 DEBUG SClient4WPS:399 - Retrieved ProcessLocation: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=97ef1d9b-28f5-4e34-99ab-549a4cb6e862 -2016-04-26 14:26:48 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-26 14:26:48 DEBUG SClient4WPS:768 - Starting Process: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=97ef1d9b-28f5-4e34-99ab-549a4cb6e862 -2016-04-26 14:26:48 DEBUG SClient4WPS:695 - Stated Computation ProcessLocation:http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=97ef1d9b-28f5-4e34-99ab-549a4cb6e862 -2016-04-26 14:26:48 DEBUG SClient4WPS:706 - ComputationId: ComputationId [id=97ef1d9b-28f5-4e34-99ab-549a4cb6e862, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=97ef1d9b-28f5-4e34-99ab-549a4cb6e862] -2016-04-26 14:26:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 14:26:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 14:26:58 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 14:26:58 DEBUG SClient4WPS:784 - GetComputationStatus(): ComputationId=ComputationId [id=97ef1d9b-28f5-4e34-99ab-549a4cb6e862, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=97ef1d9b-28f5-4e34-99ab-549a4cb6e862] -2016-04-26 14:26:58 INFO StatWPSClientSession:114 - CONNECT -2016-04-26 14:26:58 WARN StatWPSClientSession:120 - retrieving caps failed, caps are null -2016-04-26 14:26:58 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=97ef1d9b-28f5-4e34-99ab-549a4cb6e862 -2016-04-26 14:26:58 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-04-26 14:26:58 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-04-26 14:26:58 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-04-26 14:26:58 DEBUG SClient4WPS:800 - ComputationStatus ResponseObject: - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymean,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/dU1KYUp4OS81THhxUmhYZ0pWd0RHaHhkV2FGdkcyWXpHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-04-26 14:26:58 DEBUG SClient4WPS:858 - WPS SUCCESS -2016-04-26 14:26:58 DEBUG SClient4WPS:883 - ComputationStatus: ComputationStatus [percentage=100.0, status=COMPLETE, endDate=null, message=null, errResource=null] -2016-04-26 14:26:58 DEBUG Log:91 - getResourceByComputationId: ComputationId [id=97ef1d9b-28f5-4e34-99ab-549a4cb6e862, urlId=http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=97ef1d9b-28f5-4e34-99ab-549a4cb6e862] -2016-04-26 14:26:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-26 14:26:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-26 14:26:58 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-26 14:26:58 DEBUG WPS2SM:314 - Conversion to SM Type->Output id:OutputTable -2016-04-26 14:26:58 DEBUG WPS2SM:315 - Conversion to SM Type->Title:Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] -2016-04-26 14:26:58 DEBUG WPS2SM:331 - Complex Output -2016-04-26 14:26:58 DEBUG WPS2SM:200 - MimeType: text/csv -2016-04-26 14:26:58 DEBUG WPS2SM:201 - Schema: null -2016-04-26 14:26:58 DEBUG WPS2SM:202 - Encoding: null -2016-04-26 14:26:58 DEBUG SClient4WPS:932 - OutputParameter: TabularParameter [tableName= , templates=[], name=OutputTable, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], typology=TABULAR] -2016-04-26 14:26:58 DEBUG WPS2SM:314 - Conversion to SM Type->Output id:non_deterministic_output -2016-04-26 14:26:58 DEBUG WPS2SM:315 - Conversion to SM Type->Title:NonDeterministicOutput -2016-04-26 14:26:58 DEBUG WPS2SM:331 - Complex Output -2016-04-26 14:26:58 DEBUG WPS2SM:200 - MimeType: text/xml; subtype=gml/2.1.2 -2016-04-26 14:26:58 DEBUG WPS2SM:201 - Schema: http://schemas.opengis.net/gml/2.1.2/feature.xsd -2016-04-26 14:26:58 DEBUG WPS2SM:202 - Encoding: null -2016-04-26 14:26:58 DEBUG SClient4WPS:932 - OutputParameter: FileParameter [mimeType=text/xml; subtype=gml/2.1.2, value=null, name=non_deterministic_output, description=NonDeterministicOutput, typology=FILE] -2016-04-26 14:26:58 DEBUG SClient4WPS:419 - RetrieveProcessResult: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=97ef1d9b-28f5-4e34-99ab-549a4cb6e862 -2016-04-26 14:26:58 DEBUG StatWPSClientSession:554 - ExecuteViaGet() Url: http://dataminer1-d-d4s.d4science.org:80/wps/RetrieveResultServlet?id=97ef1d9b-28f5-4e34-99ab-549a4cb6e862 -2016-04-26 14:26:58 DEBUG StatWPSClientSession:558 - auth string: giancarlo.panichi:f0666597-4302-49ce-bea2-555b94e569cb -2016-04-26 14:26:58 DEBUG StatWPSClientSession:561 - Base64 encoded auth string: Z2lhbmNhcmxvLnBhbmljaGk6ZjA2NjY1OTctNDMwMi00OWNlLWJlYTItNTU1Yjk0ZTU2OWNi -2016-04-26 14:26:58 DEBUG StatWPSClientSession:576 - ExecuteAsGETString as Document -2016-04-26 14:26:58 DEBUG SClient4WPS:430 - Response: - - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - - - Process successful - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - depthmean,sstmnmax,salinitymean,clusterid,outlier -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f -0,110117104,110117104,1,f - - - - non_deterministic_output - NonDeterministicOutput - - - - - - http://data-d.d4science.org/dU1KYUp4OS81THhxUmhYZ0pWd0RHaHhkV2FGdkcyWXpHbWJQNStIS0N6Yz0 - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - text/csv - - - - - - - - -2016-04-26 14:26:58 DEBUG SClient4WPS:946 - Process Executed -2016-04-26 14:26:58 DEBUG SClient4WPS:570 - Node Name: wps:ComplexData -2016-04-26 14:26:58 DEBUG SClient4WPS:570 - Node Name: #text -2016-04-26 14:26:58 DEBUG SClient4WPS:570 - Node Name: wps:ComplexData -2016-04-26 14:26:58 DEBUG SClient4WPS:570 - Node Name: ogr:FeatureCollection -2016-04-26 14:26:58 DEBUG SClient4WPS:570 - Node Name: gml:featureMember -2016-04-26 14:26:58 DEBUG SClient4WPS:570 - Node Name: ogr:Result -2016-04-26 14:26:58 DEBUG SClient4WPS:537 - Node Name: d4science:Data- Value:http://data-d.d4science.org/dU1KYUp4OS81THhxUmhYZ0pWd0RHaHhkV2FGdkcyWXpHbWJQNStIS0N6Yz0 -2016-04-26 14:26:58 DEBUG SClient4WPS:537 - Node Name: d4science:Description- Value:Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] -2016-04-26 14:26:58 DEBUG SClient4WPS:537 - Node Name: d4science:MimeType- Value:text/csv -2016-04-26 14:26:58 DEBUG SClient4WPS:499 - ResponseWPS Map: F0-->ResponseWPS [data=http://data-d.d4science.org/dU1KYUp4OS81THhxUmhYZ0pWd0RHaHhkV2FGdkcyWXpHbWJQNStIS0N6Yz0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], mimeType=text/csv] -2016-04-26 14:26:58 DEBUG SClient4WPS:994 - Adding OBJ:F0 -2016-04-26 14:26:58 DEBUG SClient4WPS:1000 - ObjectParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=http://data-d.d4science.org/dU1KYUp4OS81THhxUmhYZ0pWd0RHaHhkV2FGdkcyWXpHbWJQNStIS0N6Yz0, name=F0, description=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], typology=OBJECT] -2016-04-26 14:26:58 DEBUG Log:91 - Resoure: MapResource [map={F0=FileResource [url=http://data-d.d4science.org/dU1KYUp4OS81THhxUmhYZ0pWd0RHaHhkV2FGdkcyWXpHbWJQNStIS0N6Yz0, mimeType=text/csv, getResourceId()=F0, getName()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getDescription()=Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb], getResourceType()=FILE]}, getResourceId()=mapResource, getName()=Resources, getDescription()=Resources, getResourceType()=MAP] -2016-04-26 14:27:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-26 14:27:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-26 14:28:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 14:28:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 14:29:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 14:29:14 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 14:30:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-26 14:30:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-26 14:31:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-04-26 14:31:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-04-26 14:31:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-26 14:31:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-26 14:32:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-26 14:32:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-26 14:33:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 14:33:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 14:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-26 14:34:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-26 14:35:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-26 14:35:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-26 14:36:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 14:36:34 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 14:37:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 14:37:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 14:38:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 14:38:24 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 14:39:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 14:39:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 14:40:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-26 14:40:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-26 17:21:25 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-04-26 17:21:25 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-04-26 17:21:25 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-04-26 17:21:25 INFO SessionUtil:64 - no user found in session, use test user -2016-04-26 17:21:28 INFO SessionUtil:64 - no user found in session, use test user -2016-04-26 17:21:28 ERROR DataMinerManagerServiceImpl:114 - An error occurred getting the OperatorsClassifications list -org.gcube.portlets.user.dataminermanager.shared.exception.ExpiredSessionServiceException: Session Expired! - at org.gcube.portlets.user.dataminermanager.server.util.SessionUtil.getASLSession(SessionUtil.java:65) - at org.gcube.portlets.user.dataminermanager.server.DataMinerManagerServiceImpl.getOperatorsClassifications(DataMinerManagerServiceImpl.java:109) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:606) - at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:561) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:265) - at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:305) - at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:755) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:848) - at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:686) - at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:501) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) - at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) - at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) - at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086) - at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428) - at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) - at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020) - at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.handler.RequestLogHandler.handle(RequestLogHandler.java:68) - at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) - at org.eclipse.jetty.server.Server.handle(Server.java:370) - at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) - at org.eclipse.jetty.server.AbstractHttpConnection.content(AbstractHttpConnection.java:960) - at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1021) - at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:865) - at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240) - at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:668) - at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52) - at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) - at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) - at java.lang.Thread.run(Thread.java:745) -2016-04-27 17:25:54 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-04-27 17:25:54 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-04-27 17:25:55 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-04-27 17:25:55 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:25:55 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:25:55 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 17:25:55 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:25:55 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@882bac5 -2016-04-27 17:25:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:25:55 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:25:55 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:25:55 DEBUG TemplateModel:83 - 2016-04-27 17:25:55, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:25:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:25:55 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-04-27 17:25:57 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:25:57 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:25:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 17:25:57 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:25:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:25:57 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:25:57 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:25:57 DEBUG TemplateModel:83 - 2016-04-27 17:25:57, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:25:57 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:25:58 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:25:58 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 109 ms -2016-04-27 17:25:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-04-27 17:25:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-04-27 17:25:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-04-27 17:25:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-04-27 17:25:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-04-27 17:25:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-04-27 17:25:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-04-27 17:25:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-04-27 17:25:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-04-27 17:25:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-04-27 17:25:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-04-27 17:25:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-04-27 17:25:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-04-27 17:25:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-04-27 17:25:58 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-04-27 17:25:59 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:25:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:25:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@7749934e -2016-04-27 17:25:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@16e5c7b0 -2016-04-27 17:25:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@4c62c6c2 -2016-04-27 17:25:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@2ef9421b -2016-04-27 17:25:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 252 ms -2016-04-27 17:25:59 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-04-27 17:25:59 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-04-27 17:25:59 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-04-27 17:25:59 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-04-27 17:25:59 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-04-27 17:25:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:25:59 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:25:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-04-27 17:25:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 27 ms -2016-04-27 17:25:59 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-04-27 17:25:59 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:25:59 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-04-27 17:25:59 INFO StatWPSClientSession:84 - CONNECT -2016-04-27 17:25:59 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:25:59 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:25:59 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:25:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:25:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-27 17:25:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:25:59 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-04-27 17:25:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:25:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:25:59 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-04-27 17:25:59 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-04-27 17:25:59 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-04-27 17:25:59 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-04-27 17:25:59 DEBUG JCRRepository:271 - Initialize repository -2016-04-27 17:25:59 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-04-27 17:25:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-04-27 17:26:00 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:26:00 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-04-27 17:26:00 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-04-27 17:26:00 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-04-27 17:26:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:26:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:26:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:26:00 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-04-27 17:26:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:26:00 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-04-27 17:26:00 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:26:00 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-04-27 17:26:00 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:26:01 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:26:01 INFO JCRRepository:377 - skip init in JCRRepository -2016-04-27 17:26:01 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:26:01 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:26:01 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-04-27 17:26:01 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-04-27 17:26:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:26:01 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:26:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:26:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:26:01 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-27 17:26:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-04-27 17:26:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:26:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:26:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:26:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:26:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:26:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:26:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:26:01 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:26:01 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:26:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-04-27 17:26:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:26:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:26:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:26:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:26:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:26:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:26:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:26:01 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:26:01 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:26:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-04-27 17:26:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:26:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:26:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:26:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:26:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:26:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:26:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:26:01 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:26:01 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:26:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-04-27 17:26:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:26:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:26:02 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:26:02 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:26:02 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:26:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:26:02 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 17:26:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:26:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:26:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:26:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:26:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:26:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:26:02 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:26:02 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-04-27 17:26:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:26:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:26:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:26:02 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 17:26:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:26:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:26:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:26:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:26:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:26:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:26:02 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:26:02 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-04-27 17:26:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 17:26:02 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-27 17:26:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 17:26:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:26:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:26:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:26:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:26:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:26:02 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:26:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:26:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:26:02 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-04-27 17:26:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:26:02 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-04-27 17:26:02 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-04-27 17:26:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:26:02 INFO WorkspaceExplorerServiceImpl:188 - end time - 236 msc 0 sec -2016-04-27 17:26:02 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-04-27 17:26:02 INFO WorkspaceExplorerServiceImpl:188 - end time - 157 msc 0 sec -2016-04-27 17:26:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:26:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:26:02 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:26:02 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:26:02 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 21 ms -2016-04-27 17:26:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:26:02 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:26:02 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-04-27 17:26:02 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-04-27 17:26:02 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-04-27 17:26:02 INFO ISClientConnector:82 - found only one RR, take it -2016-04-27 17:26:02 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-04-27 17:26:02 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-04-27 17:26:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:26:02 DEBUG StorageClient:517 - set scope: /gcube -2016-04-27 17:26:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:26:02 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:26:02 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:26:02 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-04-27 17:26:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:26:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:26:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:26:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:26:03 INFO WorkspaceExplorerServiceImpl:188 - end time - 409 msc 0 sec -2016-04-27 17:26:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:26:50 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 17:28:09 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-04-27 17:28:09 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-04-27 17:28:09 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-04-27 17:28:09 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:28:09 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:28:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-27 17:28:09 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:28:09 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@d83d36e -2016-04-27 17:28:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:28:09 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:28:09 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:28:09 DEBUG TemplateModel:83 - 2016-04-27 17:28:09, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:28:09 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:28:09 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-04-27 17:28:11 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:28:11 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:28:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-27 17:28:11 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:28:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 17:28:11 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:28:11 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:28:11 DEBUG TemplateModel:83 - 2016-04-27 17:28:11, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:28:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:28:11 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:28:12 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 120 ms -2016-04-27 17:28:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-04-27 17:28:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-04-27 17:28:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-04-27 17:28:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-04-27 17:28:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-04-27 17:28:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-04-27 17:28:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-04-27 17:28:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-04-27 17:28:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-04-27 17:28:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-04-27 17:28:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-04-27 17:28:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-04-27 17:28:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-04-27 17:28:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-04-27 17:28:12 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-04-27 17:28:12 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:28:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:28:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@18658ccd -2016-04-27 17:28:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@97f5cbb -2016-04-27 17:28:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@4bff3cf8 -2016-04-27 17:28:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@379844e3 -2016-04-27 17:28:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 103 ms -2016-04-27 17:28:12 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-04-27 17:28:12 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-04-27 17:28:12 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-04-27 17:28:12 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-04-27 17:28:12 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-04-27 17:28:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 17:28:12 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:28:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-04-27 17:28:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 18 ms -2016-04-27 17:28:12 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-04-27 17:28:12 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:28:12 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-04-27 17:28:12 INFO StatWPSClientSession:84 - CONNECT -2016-04-27 17:28:12 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:28:12 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:28:12 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:28:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 17:28:12 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-27 17:28:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:28:12 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-04-27 17:28:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:28:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:28:12 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-04-27 17:28:12 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-04-27 17:28:12 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-04-27 17:28:12 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-04-27 17:28:13 DEBUG JCRRepository:271 - Initialize repository -2016-04-27 17:28:13 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-04-27 17:28:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-04-27 17:28:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:28:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-04-27 17:28:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-04-27 17:28:13 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-04-27 17:28:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 17:28:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:28:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:28:13 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-04-27 17:28:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:28:13 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-04-27 17:28:13 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:28:13 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-04-27 17:28:13 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:28:13 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:28:13 INFO JCRRepository:377 - skip init in JCRRepository -2016-04-27 17:28:13 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:28:13 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:28:13 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-04-27 17:28:13 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-04-27 17:28:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:28:13 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:28:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:28:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:28:13 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-27 17:28:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-04-27 17:28:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:28:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:28:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:28:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:28:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:28:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:28:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:28:13 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:28:13 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:28:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-04-27 17:28:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:28:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:28:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:28:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:28:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:28:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:28:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:28:14 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:28:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:28:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-04-27 17:28:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:28:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:28:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:28:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:28:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:28:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:28:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:28:15 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:28:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:28:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-04-27 17:28:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:28:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:28:15 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:28:15 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:28:15 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:28:15 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-27 17:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:28:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:28:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:28:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:28:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:28:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:28:15 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:28:15 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-04-27 17:28:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:28:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:28:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 17:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:28:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:28:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:28:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:28:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:28:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:28:15 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:28:15 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-04-27 17:28:15 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-04-27 17:28:15 INFO WorkspaceExplorerServiceImpl:188 - end time - 128 msc 0 sec -2016-04-27 17:28:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:28:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:28:15 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-04-27 17:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:28:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 17:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:28:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:28:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:28:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:28:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:28:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:28:15 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:28:15 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-04-27 17:28:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:28:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:28:16 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-04-27 17:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:28:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:28:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:28:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 21 ms -2016-04-27 17:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:28:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:28:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-04-27 17:28:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 150 msc 0 sec -2016-04-27 17:28:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-04-27 17:28:16 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-04-27 17:28:16 INFO ISClientConnector:82 - found only one RR, take it -2016-04-27 17:28:16 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-04-27 17:28:16 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-04-27 17:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:28:16 DEBUG StorageClient:517 - set scope: /gcube -2016-04-27 17:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:28:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:28:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:28:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-04-27 17:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:28:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 366 msc 0 sec -2016-04-27 17:29:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 17:29:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-27 17:29:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:29:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-27 17:30:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:30:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 17:31:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:31:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 17:32:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 17:32:44 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-27 17:33:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:33:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 17:34:24 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-04-27 17:34:24 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-04-27 17:34:24 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-04-27 17:34:24 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:34:24 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:34:24 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 17:34:24 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:34:24 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@281573e2 -2016-04-27 17:34:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:34:24 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:34:24 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:34:24 DEBUG TemplateModel:83 - 2016-04-27 17:34:24, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:34:24 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:34:24 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-04-27 17:34:26 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:34:26 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:34:26 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 17:34:26 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:34:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:34:26 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:34:26 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:34:26 DEBUG TemplateModel:83 - 2016-04-27 17:34:26, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:34:26 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:34:26 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:34:26 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 111 ms -2016-04-27 17:34:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-04-27 17:34:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-04-27 17:34:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-04-27 17:34:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-04-27 17:34:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-04-27 17:34:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-04-27 17:34:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-04-27 17:34:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-04-27 17:34:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-04-27 17:34:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-04-27 17:34:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-04-27 17:34:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-04-27 17:34:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-04-27 17:34:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-04-27 17:34:26 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-04-27 17:34:26 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:34:26 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:34:27 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@34cf431 -2016-04-27 17:34:27 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@39cc1d68 -2016-04-27 17:34:27 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@77804b15 -2016-04-27 17:34:27 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@3ee94f83 -2016-04-27 17:34:27 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 101 ms -2016-04-27 17:34:27 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-04-27 17:34:27 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-04-27 17:34:27 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-04-27 17:34:27 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-04-27 17:34:27 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-04-27 17:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:34:27 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:34:27 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-04-27 17:34:27 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 23 ms -2016-04-27 17:34:27 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-04-27 17:34:27 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:34:27 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-04-27 17:34:27 INFO StatWPSClientSession:84 - CONNECT -2016-04-27 17:34:27 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:34:27 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:34:27 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:34:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 17:34:27 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:34:27 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-04-27 17:34:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:34:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:34:27 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-04-27 17:34:27 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-04-27 17:34:27 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-04-27 17:34:27 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-04-27 17:34:27 DEBUG JCRRepository:271 - Initialize repository -2016-04-27 17:34:27 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-04-27 17:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:34:27 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:34:27 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-04-27 17:34:27 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 18 ms -2016-04-27 17:34:27 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-04-27 17:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:34:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:34:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:34:27 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-04-27 17:34:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:34:27 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-04-27 17:34:27 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:34:28 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-04-27 17:34:28 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:34:28 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:34:28 INFO JCRRepository:377 - skip init in JCRRepository -2016-04-27 17:34:28 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:34:28 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:34:28 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-04-27 17:34:28 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-04-27 17:34:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:34:28 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:34:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:34:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:34:28 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-27 17:34:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-04-27 17:34:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:34:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:34:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:34:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:34:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:34:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:34:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:34:28 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:34:28 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:34:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-04-27 17:34:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:34:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:34:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:34:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:34:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:34:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:34:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:34:28 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:34:28 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:34:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-04-27 17:34:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:34:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:34:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:34:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:34:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:34:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:34:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:34:28 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:34:28 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:34:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-04-27 17:34:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:34:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:34:29 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:34:29 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:34:29 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 17:34:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-27 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 17:34:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:34:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:34:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:34:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:34:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:34:29 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:34:29 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-04-27 17:34:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:34:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:34:29 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:34:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:34:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:34:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:34:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:34:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:34:29 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:34:29 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-04-27 17:34:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:34:29 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-04-27 17:34:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:34:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 123 msc 0 sec -2016-04-27 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:34:29 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-27 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:34:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:34:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:34:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:34:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:34:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:34:29 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:34:29 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-04-27 17:34:29 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-04-27 17:34:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:34:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:34:29 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-04-27 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:34:29 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:34:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:34:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 30 ms -2016-04-27 17:34:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 140 msc 0 sec -2016-04-27 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:34:29 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:34:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-04-27 17:34:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 28 ms -2016-04-27 17:34:29 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-04-27 17:34:29 INFO ISClientConnector:82 - found only one RR, take it -2016-04-27 17:34:29 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-04-27 17:34:29 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-04-27 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:34:29 DEBUG StorageClient:517 - set scope: /gcube -2016-04-27 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:34:29 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:34:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:34:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 17 ms -2016-04-27 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:34:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 356 msc 0 sec -2016-04-27 17:35:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:35:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-27 17:36:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-04-27 17:36:14 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-04-27 17:37:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:37:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-27 17:38:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 17:38:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-27 17:38:49 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-04-27 17:38:49 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-04-27 17:38:49 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-04-27 17:38:49 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:38:49 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:38:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 17:38:49 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:38:49 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@33de31f7 -2016-04-27 17:38:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:38:49 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:38:49 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:38:49 DEBUG TemplateModel:83 - 2016-04-27 17:38:49, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:38:49 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:38:49 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-04-27 17:38:51 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:38:51 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:38:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-27 17:38:51 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:38:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:38:51 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:38:51 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:38:51 DEBUG TemplateModel:83 - 2016-04-27 17:38:51, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:38:51 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:38:51 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:38:51 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 119 ms -2016-04-27 17:38:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-04-27 17:38:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-04-27 17:38:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-04-27 17:38:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-04-27 17:38:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-04-27 17:38:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-04-27 17:38:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-04-27 17:38:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-04-27 17:38:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-04-27 17:38:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-04-27 17:38:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-04-27 17:38:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-04-27 17:38:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-04-27 17:38:51 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-04-27 17:38:51 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-04-27 17:38:51 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:38:51 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:38:51 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@68f2a574 -2016-04-27 17:38:51 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@6eade3f5 -2016-04-27 17:38:51 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@5544e123 -2016-04-27 17:38:51 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@62b14dee -2016-04-27 17:38:51 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 103 ms -2016-04-27 17:38:52 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-04-27 17:38:52 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-04-27 17:38:52 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-04-27 17:38:52 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-04-27 17:38:52 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-04-27 17:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:38:52 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:38:52 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-04-27 17:38:52 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 26 ms -2016-04-27 17:38:52 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-04-27 17:38:52 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:38:52 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-04-27 17:38:52 INFO StatWPSClientSession:84 - CONNECT -2016-04-27 17:38:52 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:38:52 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:38:52 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 17:38:52 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-27 17:38:52 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:38:52 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-04-27 17:38:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:38:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:38:52 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-04-27 17:38:52 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-04-27 17:38:52 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-04-27 17:38:52 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-04-27 17:38:52 DEBUG JCRRepository:271 - Initialize repository -2016-04-27 17:38:52 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-04-27 17:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-04-27 17:38:52 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:38:52 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-04-27 17:38:52 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 18 ms -2016-04-27 17:38:52 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-04-27 17:38:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 17:38:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:38:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:38:52 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-04-27 17:38:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:38:52 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-04-27 17:38:52 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:38:52 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-04-27 17:38:53 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:38:53 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:38:53 INFO JCRRepository:377 - skip init in JCRRepository -2016-04-27 17:38:53 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:38:53 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:38:53 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-04-27 17:38:53 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-04-27 17:38:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:38:53 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:38:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:38:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:38:53 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-27 17:38:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-04-27 17:38:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:38:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:38:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:38:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:38:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:38:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:38:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:38:53 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:38:53 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:38:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-04-27 17:38:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:38:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:38:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:38:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:38:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:38:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:38:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:38:53 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:38:53 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:38:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-04-27 17:38:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:38:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:38:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:38:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:38:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:38:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:38:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:38:53 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:38:53 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:38:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-04-27 17:38:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:38:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:38:55 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:38:55 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:38:55 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:38:55 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-27 17:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:38:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:38:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:38:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:38:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:38:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:38:55 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:38:55 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-04-27 17:38:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:38:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:38:55 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-04-27 17:38:55 INFO WorkspaceExplorerServiceImpl:188 - end time - 130 msc 0 sec -2016-04-27 17:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:38:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 17:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:38:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:38:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:38:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:38:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:38:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:38:55 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:38:55 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-04-27 17:38:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:38:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:38:55 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-04-27 17:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 17:38:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-27 17:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 17:38:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:38:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:38:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:38:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:38:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:38:55 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:38:55 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-04-27 17:38:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:38:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:38:55 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:38:55 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-04-27 17:38:55 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:38:55 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-04-27 17:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:38:55 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:38:55 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-04-27 17:38:55 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-04-27 17:38:55 INFO WorkspaceExplorerServiceImpl:188 - end time - 146 msc 0 sec -2016-04-27 17:38:55 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-04-27 17:38:55 INFO ISClientConnector:82 - found only one RR, take it -2016-04-27 17:38:55 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-04-27 17:38:55 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-04-27 17:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:38:55 DEBUG StorageClient:517 - set scope: /gcube -2016-04-27 17:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:38:55 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:38:55 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:38:55 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 17 ms -2016-04-27 17:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:38:55 INFO WorkspaceExplorerServiceImpl:188 - end time - 377 msc 0 sec -2016-04-27 17:39:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 17:39:44 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-27 17:40:41 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-04-27 17:40:41 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-04-27 17:40:41 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-04-27 17:40:41 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:40:41 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:40:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 17:40:41 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:40:41 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@6400f9af -2016-04-27 17:40:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:40:41 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:40:41 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:40:41 DEBUG TemplateModel:83 - 2016-04-27 17:40:41, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:40:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:40:41 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-04-27 17:40:42 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:40:42 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:40:42 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-27 17:40:42 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:40:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:40:42 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:40:42 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:40:42 DEBUG TemplateModel:83 - 2016-04-27 17:40:42, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:40:42 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:40:43 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:40:43 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 125 ms -2016-04-27 17:40:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-04-27 17:40:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-04-27 17:40:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-04-27 17:40:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-04-27 17:40:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-04-27 17:40:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-04-27 17:40:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-04-27 17:40:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-04-27 17:40:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-04-27 17:40:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-04-27 17:40:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-04-27 17:40:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-04-27 17:40:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-04-27 17:40:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-04-27 17:40:43 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-04-27 17:40:43 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:40:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:40:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@1d5d032 -2016-04-27 17:40:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@2504d034 -2016-04-27 17:40:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@659d589d -2016-04-27 17:40:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@71c2a42a -2016-04-27 17:40:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 104 ms -2016-04-27 17:40:43 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-04-27 17:40:43 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-04-27 17:40:43 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-04-27 17:40:43 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-04-27 17:40:43 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-04-27 17:40:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:40:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:40:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-04-27 17:40:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 22 ms -2016-04-27 17:40:43 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-04-27 17:40:43 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:40:43 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-04-27 17:40:43 INFO StatWPSClientSession:84 - CONNECT -2016-04-27 17:40:43 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:40:43 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:40:43 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:40:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:40:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 17:40:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:40:43 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-04-27 17:40:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:40:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:40:43 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-04-27 17:40:43 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-04-27 17:40:43 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-04-27 17:40:43 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-04-27 17:40:44 DEBUG JCRRepository:271 - Initialize repository -2016-04-27 17:40:44 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-04-27 17:40:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 17:40:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:40:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-04-27 17:40:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 18 ms -2016-04-27 17:40:44 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-04-27 17:40:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:40:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:40:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:40:44 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-04-27 17:40:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:40:44 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-04-27 17:40:44 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:40:44 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:40:44 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-04-27 17:40:44 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:40:44 INFO JCRRepository:377 - skip init in JCRRepository -2016-04-27 17:40:44 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:40:44 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:40:44 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-04-27 17:40:44 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-04-27 17:40:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:40:44 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:40:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:40:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:40:44 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-27 17:40:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-04-27 17:40:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:40:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:40:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:40:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:40:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:40:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:40:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:40:44 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:40:44 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:40:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-04-27 17:40:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:40:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:40:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:40:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:40:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:40:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:40:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:40:45 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:40:45 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:40:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-04-27 17:40:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:40:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:40:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:40:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:40:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:40:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:40:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:40:45 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:40:45 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:40:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-04-27 17:40:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:40:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:40:45 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:40:45 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:40:45 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:40:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:40:45 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 17:40:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:40:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:40:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:40:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:40:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:40:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:40:45 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:40:45 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-04-27 17:40:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:40:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:40:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:40:46 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-27 17:40:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:40:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:40:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:40:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:40:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:40:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:40:46 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:40:46 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-04-27 17:40:46 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-04-27 17:40:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:40:46 INFO WorkspaceExplorerServiceImpl:188 - end time - 118 msc 0 sec -2016-04-27 17:40:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:40:46 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-04-27 17:40:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 17:40:46 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-27 17:40:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 17:40:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:40:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:40:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:40:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:40:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:40:46 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:40:46 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-04-27 17:40:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:40:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:40:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-27 17:40:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:40:46 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-04-27 17:40:46 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:40:46 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:40:46 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-04-27 17:40:46 INFO WorkspaceExplorerServiceImpl:188 - end time - 130 msc 0 sec -2016-04-27 17:40:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-27 17:40:46 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:40:46 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-04-27 17:40:46 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-04-27 17:40:46 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-04-27 17:40:46 INFO ISClientConnector:82 - found only one RR, take it -2016-04-27 17:40:46 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-04-27 17:40:46 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-04-27 17:40:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-27 17:40:46 DEBUG StorageClient:517 - set scope: /gcube -2016-04-27 17:40:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-27 17:40:46 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:40:46 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:40:46 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-04-27 17:40:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-27 17:40:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-27 17:40:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-27 17:40:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:40:46 INFO WorkspaceExplorerServiceImpl:188 - end time - 377 msc 0 sec -2016-04-27 17:41:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 17:41:36 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-27 17:42:47 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-04-27 17:42:47 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-04-27 17:42:47 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-04-27 17:42:47 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:42:47 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:42:47 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-27 17:42:47 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:42:47 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@15221941 -2016-04-27 17:42:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 17:42:47 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:42:47 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:42:47 DEBUG TemplateModel:83 - 2016-04-27 17:42:47, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:42:47 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:42:47 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-04-27 17:42:49 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:42:49 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:42:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 17:42:49 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:42:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:42:49 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:42:49 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:42:49 DEBUG TemplateModel:83 - 2016-04-27 17:42:49, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:42:49 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:42:49 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:42:49 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 123 ms -2016-04-27 17:42:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-04-27 17:42:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-04-27 17:42:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-04-27 17:42:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-04-27 17:42:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-04-27 17:42:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-04-27 17:42:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-04-27 17:42:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-04-27 17:42:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-04-27 17:42:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-04-27 17:42:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-04-27 17:42:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-04-27 17:42:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-04-27 17:42:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-04-27 17:42:49 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-04-27 17:42:49 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:42:49 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:42:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@40dc0de6 -2016-04-27 17:42:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@2901dddf -2016-04-27 17:42:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@20b560fd -2016-04-27 17:42:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@2ae4843d -2016-04-27 17:42:49 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 110 ms -2016-04-27 17:42:50 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-04-27 17:42:50 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-04-27 17:42:50 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-04-27 17:42:50 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-04-27 17:42:50 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-04-27 17:42:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:42:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:42:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-04-27 17:42:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 23 ms -2016-04-27 17:42:50 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-04-27 17:42:50 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:42:50 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-04-27 17:42:50 INFO StatWPSClientSession:84 - CONNECT -2016-04-27 17:42:50 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:42:50 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:42:50 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:42:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:42:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 17:42:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:42:50 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-04-27 17:42:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:42:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:42:50 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-04-27 17:42:50 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-04-27 17:42:50 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-04-27 17:42:50 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-04-27 17:42:50 DEBUG JCRRepository:271 - Initialize repository -2016-04-27 17:42:50 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-04-27 17:42:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:42:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:42:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-04-27 17:42:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-04-27 17:42:50 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-04-27 17:42:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:42:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:42:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:42:50 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-04-27 17:42:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:42:50 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-04-27 17:42:50 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:42:50 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-04-27 17:42:51 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:42:51 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:42:51 INFO JCRRepository:377 - skip init in JCRRepository -2016-04-27 17:42:51 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:42:51 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:42:51 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-04-27 17:42:51 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-04-27 17:42:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:42:51 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:42:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:42:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:42:51 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-27 17:42:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-04-27 17:42:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:42:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:42:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:42:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:42:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:42:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:42:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:42:51 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:42:51 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:42:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-04-27 17:42:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:42:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:42:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:42:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:42:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:42:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:42:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:42:51 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:42:51 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:42:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-04-27 17:42:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:42:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:42:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:42:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:42:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:42:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:42:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:42:51 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:42:51 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:42:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-04-27 17:42:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:42:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:42:52 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:42:52 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:42:52 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 17:42:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-27 17:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 17:42:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:42:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:42:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:42:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:42:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:42:52 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:42:52 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-04-27 17:42:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:42:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:42:52 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-04-27 17:42:52 INFO WorkspaceExplorerServiceImpl:188 - end time - 117 msc 0 sec -2016-04-27 17:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 17:42:52 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-27 17:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 17:42:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:42:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:42:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:42:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:42:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:42:52 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:42:52 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-04-27 17:42:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:42:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:42:52 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-04-27 17:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:42:52 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-27 17:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:42:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:42:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:42:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:42:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:42:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:42:52 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:42:52 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-04-27 17:42:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:42:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-04-27 17:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 17:42:52 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:42:52 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:42:52 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-04-27 17:42:52 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-04-27 17:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-04-27 17:42:52 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:42:52 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-04-27 17:42:52 INFO WorkspaceExplorerServiceImpl:188 - end time - 132 msc 0 sec -2016-04-27 17:42:52 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 35 ms -2016-04-27 17:42:52 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-04-27 17:42:52 INFO ISClientConnector:82 - found only one RR, take it -2016-04-27 17:42:52 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-04-27 17:42:52 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-04-27 17:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-04-27 17:42:52 DEBUG StorageClient:517 - set scope: /gcube -2016-04-27 17:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-04-27 17:42:52 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:42:52 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:42:52 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-04-27 17:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-04-27 17:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-04-27 17:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-04-27 17:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 17:42:52 INFO WorkspaceExplorerServiceImpl:188 - end time - 367 msc 0 sec -2016-04-27 17:43:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:43:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-27 17:44:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 17:44:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-27 17:45:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:45:32 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 17:46:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:46:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-27 17:46:57 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-04-27 17:46:57 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-04-27 17:46:57 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-04-27 17:46:57 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:46:57 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:46:57 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-04-27 17:46:57 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:46:57 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@afb6ae4 -2016-04-27 17:46:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-04-27 17:46:57 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:46:57 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:46:57 DEBUG TemplateModel:83 - 2016-04-27 17:46:57, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:46:57 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:46:57 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-04-27 17:46:59 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:46:59 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:46:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-27 17:46:59 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:46:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:46:59 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:46:59 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:46:59 DEBUG TemplateModel:83 - 2016-04-27 17:46:59, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:46:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:46:59 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:46:59 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 115 ms -2016-04-27 17:46:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-04-27 17:46:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-04-27 17:46:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-04-27 17:46:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-04-27 17:46:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-04-27 17:46:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-04-27 17:46:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-04-27 17:46:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-04-27 17:46:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-04-27 17:46:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-04-27 17:46:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-04-27 17:46:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-04-27 17:46:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-04-27 17:46:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-04-27 17:46:59 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-04-27 17:46:59 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:46:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:46:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@2a56e41a -2016-04-27 17:46:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@75ee0ca2 -2016-04-27 17:46:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@4cec170 -2016-04-27 17:46:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@25293d02 -2016-04-27 17:47:00 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 107 ms -2016-04-27 17:47:00 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-04-27 17:47:00 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-04-27 17:47:00 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-04-27 17:47:00 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-04-27 17:47:00 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-04-27 17:47:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:47:00 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:47:00 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-04-27 17:47:00 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-04-27 17:47:00 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-04-27 17:47:00 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:47:00 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-04-27 17:47:00 INFO StatWPSClientSession:84 - CONNECT -2016-04-27 17:47:00 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:47:00 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:47:00 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:47:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-04-27 17:47:00 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-04-27 17:47:00 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:47:00 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-04-27 17:47:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:47:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:47:00 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-04-27 17:47:00 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-04-27 17:47:00 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-04-27 17:47:00 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-04-27 17:47:00 DEBUG JCRRepository:271 - Initialize repository -2016-04-27 17:47:00 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-04-27 17:47:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-04-27 17:47:00 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:47:00 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-04-27 17:47:00 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 81 ms -2016-04-27 17:47:00 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-04-27 17:47:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-04-27 17:47:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:47:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:47:00 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-04-27 17:47:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:47:00 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-04-27 17:47:01 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:47:01 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:47:01 INFO JCRRepository:377 - skip init in JCRRepository -2016-04-27 17:47:01 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:47:01 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:47:01 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-04-27 17:47:01 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-04-27 17:47:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:47:01 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:47:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:47:01 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:47:01 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-04-27 17:47:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:47:01 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-27 17:47:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-04-27 17:47:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:47:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:47:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:47:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:47:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:47:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:47:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:47:01 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:47:01 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:47:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-04-27 17:47:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:47:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:47:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:47:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:47:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:47:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:47:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:47:01 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:47:01 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:47:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-04-27 17:47:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:47:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:47:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:47:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:47:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:47:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:47:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:47:01 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:47:01 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:47:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-04-27 17:47:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:47:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:47:02 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:47:02 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:47:02 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:47:02 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 17:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:47:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:47:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:47:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:47:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:47:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:47:02 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:47:02 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-04-27 17:47:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:47:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:47:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-27 17:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:47:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:47:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:47:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:47:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:47:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:47:02 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:47:02 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-04-27 17:47:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:47:02 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-04-27 17:47:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:47:02 INFO WorkspaceExplorerServiceImpl:188 - end time - 126 msc 0 sec -2016-04-27 17:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 17:47:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-27 17:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 17:47:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:47:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:47:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:47:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:47:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:47:02 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:47:02 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-04-27 17:47:02 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-04-27 17:47:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:47:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:47:02 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-04-27 17:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-04-27 17:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:47:02 INFO WorkspaceExplorerServiceImpl:188 - end time - 130 msc 0 sec -2016-04-27 17:47:02 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:47:02 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:47:02 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-04-27 17:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-04-27 17:47:02 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:47:02 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-04-27 17:47:02 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-04-27 17:47:02 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-04-27 17:47:02 INFO ISClientConnector:82 - found only one RR, take it -2016-04-27 17:47:02 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-04-27 17:47:02 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-04-27 17:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-04-27 17:47:02 DEBUG StorageClient:517 - set scope: /gcube -2016-04-27 17:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-04-27 17:47:02 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:47:02 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:47:02 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-04-27 17:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-04-27 17:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-04-27 17:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-04-27 17:47:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:47:02 INFO WorkspaceExplorerServiceImpl:188 - end time - 380 msc 0 sec -2016-04-27 17:47:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-04-27 17:47:52 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-04-27 17:48:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-04-27 17:48:47 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-04-27 17:50:57 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-04-27 17:50:57 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-04-27 17:50:57 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-04-27 17:50:57 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:50:57 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:50:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-27 17:50:57 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:50:57 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@55173994 -2016-04-27 17:50:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:50:57 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:50:57 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:50:57 DEBUG TemplateModel:83 - 2016-04-27 17:50:57, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:50:57 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:50:57 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-04-27 17:50:58 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:50:58 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:50:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 17:50:58 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:50:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:50:58 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:50:58 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:50:58 DEBUG TemplateModel:83 - 2016-04-27 17:50:58, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:50:58 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:50:58 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:50:59 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 137 ms -2016-04-27 17:50:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-04-27 17:50:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-04-27 17:50:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-04-27 17:50:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-04-27 17:50:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-04-27 17:50:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-04-27 17:50:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-04-27 17:50:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-04-27 17:50:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-04-27 17:50:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-04-27 17:50:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-04-27 17:50:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-04-27 17:50:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-04-27 17:50:59 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-04-27 17:50:59 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-04-27 17:50:59 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:50:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 17:50:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@237020dc -2016-04-27 17:50:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@322dabb -2016-04-27 17:50:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@ca1225c -2016-04-27 17:50:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@5d681f9f -2016-04-27 17:50:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 103 ms -2016-04-27 17:50:59 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-04-27 17:50:59 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-04-27 17:50:59 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-04-27 17:50:59 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-04-27 17:50:59 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-04-27 17:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:50:59 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:50:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-04-27 17:50:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 29 ms -2016-04-27 17:50:59 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-04-27 17:50:59 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:50:59 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-04-27 17:50:59 INFO StatWPSClientSession:84 - CONNECT -2016-04-27 17:51:00 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:51:00 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:51:00 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:51:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:51:00 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 17:51:00 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:51:00 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-04-27 17:51:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:51:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:51:00 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-04-27 17:51:00 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-04-27 17:51:00 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-04-27 17:51:00 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-04-27 17:51:00 DEBUG JCRRepository:271 - Initialize repository -2016-04-27 17:51:00 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-04-27 17:51:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 17:51:00 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:51:00 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-04-27 17:51:00 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 83 ms -2016-04-27 17:51:00 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-04-27 17:51:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:51:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:51:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:51:00 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-04-27 17:51:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:51:00 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-04-27 17:51:00 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:51:00 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-04-27 17:51:01 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:51:01 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:51:01 INFO JCRRepository:377 - skip init in JCRRepository -2016-04-27 17:51:01 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 17:51:01 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 17:51:01 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-04-27 17:51:01 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-04-27 17:51:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:51:01 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:51:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:01 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-27 17:51:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-04-27 17:51:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:51:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:51:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:51:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:51:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:51:15 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:51:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:51:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-04-27 17:51:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:51:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:51:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:51:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:51:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:51:15 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:51:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:51:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-04-27 17:51:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:51:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:51:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:51:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:51:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:51:15 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:51:15 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:51:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-04-27 17:51:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:16 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:51:16 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:51:16 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:51:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:51:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-27 17:51:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:51:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:51:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:51:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:51:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:51:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:51:16 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:51:16 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-04-27 17:51:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:51:16 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-27 17:51:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:51:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:51:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:51:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:51:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:51:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:51:16 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:51:16 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-04-27 17:51:16 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-04-27 17:51:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 132 msc 0 sec -2016-04-27 17:51:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:51:16 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 17:51:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 17:51:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:51:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:51:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:51:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:51:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:51:16 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:51:16 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-04-27 17:51:16 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-04-27 17:51:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:16 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-04-27 17:51:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-27 17:51:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:51:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 114 msc 0 sec -2016-04-27 17:51:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:51:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:51:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-04-27 17:51:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-27 17:51:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:51:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-04-27 17:51:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 19 ms -2016-04-27 17:51:16 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-04-27 17:51:16 INFO ISClientConnector:82 - found only one RR, take it -2016-04-27 17:51:16 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-04-27 17:51:16 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-04-27 17:51:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-27 17:51:16 DEBUG StorageClient:517 - set scope: /gcube -2016-04-27 17:51:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-27 17:51:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:51:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 17:51:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-04-27 17:51:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-27 17:51:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-27 17:51:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-27 17:51:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:51:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 373 msc 0 sec -2016-04-27 17:51:25 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:51:25 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:51:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-27 17:51:25 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:51:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 17:51:25 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:51:25 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:51:25 DEBUG TemplateModel:83 - 2016-04-27 17:51:25, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:51:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:51:25 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-04-27 17:51:26 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 17:51:26 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 17:51:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-27 17:51:26 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 17:51:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:51:26 INFO ASLSession:352 - Logging the entrance -2016-04-27 17:51:26 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 17:51:26 DEBUG TemplateModel:83 - 2016-04-27 17:51:26, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 17:51:26 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:51:26 INFO DiscoveryDelegate:77 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
(cached) -2016-04-27 17:51:27 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-04-27 17:51:27 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-04-27 17:51:27 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-04-27 17:51:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:51:27 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 17:51:27 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-04-27 17:51:27 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 37 ms -2016-04-27 17:51:27 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-04-27 17:51:27 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:51:27 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-04-27 17:51:27 INFO StatWPSClientSession:84 - CONNECT -2016-04-27 17:51:27 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 17:51:27 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-04-27 17:51:27 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:51:27 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:51:27 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:51:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 17:51:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-27 17:51:27 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 17:51:27 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-04-27 17:51:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:51:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:51:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:51:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:51:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:51:27 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:51:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:32 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-27 17:51:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-04-27 17:51:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:51:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:51:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:51:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:51:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:51:32 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:51:32 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:51:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-04-27 17:51:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:51:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:51:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:51:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:51:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:51:33 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:51:33 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:51:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-04-27 17:51:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:51:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:51:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:51:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:51:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:51:33 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:51:33 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 17:51:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-04-27 17:51:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:33 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 17:51:33 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 17:51:33 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 17:51:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-04-27 17:51:33 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-04-27 17:51:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-04-27 17:51:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:51:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:51:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:51:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:51:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:51:33 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:51:34 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-04-27 17:51:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:34 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-04-27 17:51:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:51:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 17:51:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 17:51:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:51:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:51:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:51:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:51:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:51:34 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:51:34 INFO WorkspaceExplorerServiceImpl:188 - end time - 91 msc 0 sec -2016-04-27 17:51:34 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-04-27 17:51:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:34 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-04-27 17:51:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:51:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-27 17:51:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 17:51:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 17:51:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 17:51:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 17:51:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 17:51:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 17:51:34 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 17:51:34 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-04-27 17:51:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 17:51:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 17:51:34 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-04-27 17:51:34 INFO WorkspaceExplorerServiceImpl:188 - end time - 107 msc 0 sec -2016-04-27 17:51:34 INFO WorkspaceExplorerServiceImpl:188 - end time - 229 msc 0 sec -2016-04-27 18:17:07 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-04-27 18:17:07 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-04-27 18:17:07 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-04-27 18:17:07 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 18:17:07 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 18:17:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-27 18:17:07 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 18:17:07 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@77c12805 -2016-04-27 18:17:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 18:17:07 INFO ASLSession:352 - Logging the entrance -2016-04-27 18:17:07 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 18:17:07 DEBUG TemplateModel:83 - 2016-04-27 18:17:07, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 18:17:07 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 18:17:07 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-04-27 18:17:09 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 18:17:09 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 18:17:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 18:17:09 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 18:17:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 18:17:09 INFO ASLSession:352 - Logging the entrance -2016-04-27 18:17:09 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 18:17:09 DEBUG TemplateModel:83 - 2016-04-27 18:17:09, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 18:17:09 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 18:17:10 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 18:17:10 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 127 ms -2016-04-27 18:17:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-04-27 18:17:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-04-27 18:17:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-04-27 18:17:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-04-27 18:17:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-04-27 18:17:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-04-27 18:17:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-04-27 18:17:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-04-27 18:17:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-04-27 18:17:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-04-27 18:17:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-04-27 18:17:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-04-27 18:17:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-04-27 18:17:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-04-27 18:17:10 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-04-27 18:17:11 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 18:17:11 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 18:17:11 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 18:17:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 18:17:11 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 18:17:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 18:17:11 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-04-27 18:17:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 18:17:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 18:17:11 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-04-27 18:17:11 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-04-27 18:17:11 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-04-27 18:17:11 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-04-27 18:17:11 DEBUG JCRRepository:271 - Initialize repository -2016-04-27 18:17:11 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-04-27 18:17:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-04-27 18:17:11 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 18:17:11 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 18:17:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 18:17:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-04-27 18:17:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@7b28c6b9 -2016-04-27 18:17:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@26b1e772 -2016-04-27 18:17:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@52535fb3 -2016-04-27 18:17:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@49cc84a5 -2016-04-27 18:17:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 161 ms -2016-04-27 18:17:12 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-04-27 18:17:13 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-04-27 18:17:13 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-04-27 18:17:13 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-04-27 18:17:13 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-04-27 18:17:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 18:17:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 18:17:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-04-27 18:17:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 17 ms -2016-04-27 18:17:13 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-04-27 18:17:13 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 18:17:13 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-04-27 18:17:13 INFO StatWPSClientSession:84 - CONNECT -2016-04-27 18:17:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 4182 ms -2016-04-27 18:17:16 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-04-27 18:17:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 18:17:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 18:17:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 18:17:16 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-04-27 18:17:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:17:16 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-04-27 18:17:18 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 18:17:18 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-04-27 18:17:21 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 18:17:21 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 18:17:21 INFO JCRRepository:377 - skip init in JCRRepository -2016-04-27 18:17:21 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 18:17:21 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 18:17:21 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-04-27 18:17:21 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-04-27 18:17:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:17:21 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 18:17:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:17:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:17:21 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-27 18:17:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-04-27 18:17:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:17:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:17:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 18:17:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 18:17:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 18:17:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 18:17:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:17:21 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 18:17:21 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 18:17:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-04-27 18:17:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:17:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:17:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 18:17:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 18:17:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 18:17:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 18:17:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:17:22 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 18:17:22 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 18:17:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-04-27 18:17:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:17:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:17:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 18:17:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 18:17:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 18:17:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 18:17:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:17:22 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 18:17:22 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 18:17:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-04-27 18:17:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:17:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:17:23 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 18:17:23 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 18:17:23 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 18:17:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 18:17:23 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-27 18:17:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 18:17:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 18:17:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 18:17:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 18:17:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 18:17:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:17:23 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 18:17:23 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-04-27 18:17:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:17:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:17:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 18:17:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-27 18:17:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 18:17:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 18:17:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 18:17:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 18:17:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 18:17:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:17:23 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 18:17:23 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-04-27 18:17:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:17:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:17:23 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-04-27 18:17:23 INFO WorkspaceExplorerServiceImpl:188 - end time - 202 msc 0 sec -2016-04-27 18:17:23 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-04-27 18:17:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 18:17:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 18:17:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 18:17:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 18:17:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 18:17:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 18:17:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 18:17:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:17:23 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 18:17:23 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-04-27 18:17:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:17:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:17:23 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-04-27 18:17:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-04-27 18:17:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 18:17:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 18:17:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 18:17:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-04-27 18:17:23 INFO WorkspaceExplorerServiceImpl:188 - end time - 171 msc 0 sec -2016-04-27 18:17:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-04-27 18:17:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 18:17:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-04-27 18:17:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 22 ms -2016-04-27 18:17:23 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-04-27 18:17:23 INFO ISClientConnector:82 - found only one RR, take it -2016-04-27 18:17:23 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-04-27 18:17:23 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-04-27 18:17:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-04-27 18:17:23 DEBUG StorageClient:517 - set scope: /gcube -2016-04-27 18:17:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-04-27 18:17:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 18:17:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 18:17:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-04-27 18:17:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-04-27 18:17:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-04-27 18:17:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-04-27 18:17:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 18:17:23 INFO WorkspaceExplorerServiceImpl:188 - end time - 433 msc 0 sec -2016-04-27 18:18:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 18:18:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-27 18:18:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 18:18:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-27 18:19:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 18:19:52 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-27 18:20:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 18:20:47 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-27 18:21:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-04-27 18:21:42 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-04-27 18:22:15 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-04-27 18:22:15 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-04-27 18:22:15 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-04-27 18:22:15 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 18:22:15 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 18:22:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 18:22:15 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 18:22:15 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@23c47222 -2016-04-27 18:22:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 18:22:15 INFO ASLSession:352 - Logging the entrance -2016-04-27 18:22:15 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 18:22:15 DEBUG TemplateModel:83 - 2016-04-27 18:22:15, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 18:22:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 18:22:15 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-04-27 18:22:17 INFO SessionUtil:49 - no user found in session, use test user -2016-04-27 18:22:17 DEBUG ASLSession:302 - Scope is null, returning null -2016-04-27 18:22:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-04-27 18:22:17 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-04-27 18:22:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 18:22:17 INFO ASLSession:352 - Logging the entrance -2016-04-27 18:22:17 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-04-27 18:22:17 DEBUG TemplateModel:83 - 2016-04-27 18:22:17, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-04-27 18:22:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 18:22:17 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 18:22:17 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 123 ms -2016-04-27 18:22:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-04-27 18:22:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-04-27 18:22:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-04-27 18:22:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-04-27 18:22:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-04-27 18:22:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-04-27 18:22:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-04-27 18:22:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-04-27 18:22:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-04-27 18:22:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-04-27 18:22:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-04-27 18:22:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-04-27 18:22:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-04-27 18:22:17 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-04-27 18:22:17 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-04-27 18:22:17 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 18:22:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-04-27 18:22:17 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@479d19ca -2016-04-27 18:22:17 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@2cffbb6d -2016-04-27 18:22:17 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@46a3f828 -2016-04-27 18:22:17 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@22d93933 -2016-04-27 18:22:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 107 ms -2016-04-27 18:22:17 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-04-27 18:22:17 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-04-27 18:22:17 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-04-27 18:22:17 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-04-27 18:22:17 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-04-27 18:22:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-04-27 18:22:17 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 18:22:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-04-27 18:22:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 20 ms -2016-04-27 18:22:17 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-04-27 18:22:17 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 18:22:17 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-04-27 18:22:17 INFO StatWPSClientSession:84 - CONNECT -2016-04-27 18:22:18 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 18:22:18 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 18:22:18 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 18:22:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 18:22:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-04-27 18:22:18 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-04-27 18:22:18 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-04-27 18:22:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 18:22:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 18:22:18 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-04-27 18:22:18 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-04-27 18:22:18 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-04-27 18:22:18 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-04-27 18:22:18 DEBUG JCRRepository:271 - Initialize repository -2016-04-27 18:22:18 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-04-27 18:22:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-04-27 18:22:18 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 18:22:18 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-04-27 18:22:18 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 20 ms -2016-04-27 18:22:18 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-04-27 18:22:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-04-27 18:22:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 18:22:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 18:22:18 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-04-27 18:22:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:22:18 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-04-27 18:22:18 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-04-27 18:22:18 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.LOF, name=Lof, briefDescription=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., description=Local Outlier Factor (LOF). A clustering algorithm for real valued vectors that relies on Local Outlier Factor algorithm, i.e. an algorithm for finding anomalous data points by measuring the local deviation of a given data point with respect to its neighbours. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.XMEANS, name=Xmeans, briefDescription=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., description=A clustering algorithm for occurrence points that relies on the X-Means algorithm, i.e. an extended version of the K-Means algorithm improved by an Improve-Structure part. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-04-27 18:22:18 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 18:22:19 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 18:22:19 INFO JCRRepository:377 - skip init in JCRRepository -2016-04-27 18:22:19 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-04-27 18:22:19 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-04-27 18:22:19 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-04-27 18:22:19 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-04-27 18:22:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:22:19 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 18:22:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:22:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:22:19 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-04-27 18:22:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-04-27 18:22:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:22:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:22:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 18:22:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 18:22:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 18:22:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 18:22:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:22:19 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 18:22:19 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 18:22:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-04-27 18:22:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:22:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:22:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 18:22:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 18:22:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 18:22:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 18:22:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:22:19 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 18:22:19 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 18:22:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-04-27 18:22:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:22:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:22:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 18:22:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 18:22:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 18:22:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 18:22:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:22:19 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 18:22:19 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-04-27 18:22:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-04-27 18:22:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:22:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:22:20 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-04-27 18:22:20 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-04-27 18:22:20 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-04-27 18:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 18:22:20 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-04-27 18:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-04-27 18:22:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 18:22:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 18:22:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 18:22:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 18:22:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:22:20 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 18:22:20 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-04-27 18:22:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:22:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 18:22:20 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-04-27 18:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 18:22:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 18:22:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 18:22:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 18:22:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 18:22:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:22:20 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 18:22:20 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-04-27 18:22:20 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-04-27 18:22:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:22:20 INFO WorkspaceExplorerServiceImpl:188 - end time - 132 msc 0 sec -2016-04-27 18:22:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 18:22:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-04-27 18:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-04-27 18:22:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-04-27 18:22:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-04-27 18:22:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-04-27 18:22:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-04-27 18:22:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-04-27 18:22:20 DEBUG JCRHomeManager:97 - User is already logged -2016-04-27 18:22:20 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-04-27 18:22:20 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-04-27 18:22:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-04-27 18:22:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-04-27 18:22:20 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-04-27 18:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 18:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 18:22:20 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 18:22:20 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 18:22:20 INFO WorkspaceExplorerServiceImpl:188 - end time - 129 msc 0 sec -2016-04-27 18:22:20 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-04-27 18:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 18:22:20 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 18:22:20 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-04-27 18:22:20 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-04-27 18:22:20 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-04-27 18:22:20 INFO ISClientConnector:82 - found only one RR, take it -2016-04-27 18:22:20 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-04-27 18:22:20 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-04-27 18:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 18:22:20 DEBUG StorageClient:517 - set scope: /gcube -2016-04-27 18:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 18:22:20 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-04-27 18:22:20 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-04-27 18:22:20 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-04-27 18:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 18:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 18:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-04-27 18:22:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-04-27 18:22:20 INFO WorkspaceExplorerServiceImpl:188 - end time - 333 msc 0 sec -2016-05-02 12:34:03 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 12:34:03 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 12:34:03 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 12:34:03 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 12:34:03 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 12:34:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 12:34:03 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 12:34:03 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@6532be37 -2016-05-02 12:34:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 12:34:03 INFO ASLSession:352 - Logging the entrance -2016-05-02 12:34:03 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 12:34:03 DEBUG TemplateModel:83 - 2016-05-02 12:34:03, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 12:34:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 12:34:03 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 12:34:06 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 12:34:06 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 12:34:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 12:34:06 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 12:34:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 12:34:06 INFO ASLSession:352 - Logging the entrance -2016-05-02 12:34:06 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 12:34:06 DEBUG TemplateModel:83 - 2016-05-02 12:34:06, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 12:34:06 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 12:34:06 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 12:34:06 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 117 ms -2016-05-02 12:34:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 12:34:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 12:34:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 12:34:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 12:34:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 12:34:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 12:34:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 12:34:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 12:34:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 12:34:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 12:34:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 12:34:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 12:34:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 12:34:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 12:34:07 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 12:34:07 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 12:34:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 12:34:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@f2eba2b -2016-05-02 12:34:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@1ab39064 -2016-05-02 12:34:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@6b492547 -2016-05-02 12:34:07 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@3a99bb -2016-05-02 12:34:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 214 ms -2016-05-02 12:34:07 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 12:34:08 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 12:34:08 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 12:34:08 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 12:34:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 12:34:08 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 12:34:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 12:34:08 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 12:34:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 12:34:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 12:34:08 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 12:34:08 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 12:34:08 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 12:34:08 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 12:34:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 12:34:08 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 12:34:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 12:34:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 23 ms -2016-05-02 12:34:08 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 12:34:08 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 12:34:08 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 12:34:08 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 12:34:08 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 12:34:08 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 12:34:08 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 12:34:08 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 12:34:08 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 12:34:08 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 12:34:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 12:34:08 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 12:34:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 12:34:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 78 ms -2016-05-02 12:34:08 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 12:34:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 12:34:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 12:34:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 12:34:08 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 12:34:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 12:34:08 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 12:34:09 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 12:34:09 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 12:34:09 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 12:34:10 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 12:34:10 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 12:34:10 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 12:34:10 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 12:34:10 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 12:34:10 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 12:34:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 12:34:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 12:34:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 12:34:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 12:34:10 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 12:34:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 12:34:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 12:34:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 12:34:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 12:34:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 12:34:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 12:34:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 12:34:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 12:34:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 12:34:10 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 12:34:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 12:34:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 12:34:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 12:34:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 12:34:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 12:34:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 12:34:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 12:34:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 12:34:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 12:34:11 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 12:34:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 12:34:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 12:34:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 12:34:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 12:34:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 12:34:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 12:34:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 12:34:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 12:34:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 12:34:11 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 12:34:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 12:34:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 12:34:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 12:34:11 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 12:34:11 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 12:34:11 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 12:34:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 12:34:11 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 12:34:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 12:34:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 12:34:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 12:34:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 12:34:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 12:34:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 12:34:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 12:34:12 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 12:34:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 12:34:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 12:34:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 12:34:12 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 12:34:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 12:34:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 12:34:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 12:34:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 12:34:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 12:34:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 12:34:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 12:34:12 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 12:34:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 12:34:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 12:34:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 12:34:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 12:34:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 12:34:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 12:34:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 12:34:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 12:34:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 12:34:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 12:34:12 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 12:34:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 12:34:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 12:34:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 12:34:12 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 12:34:12 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 12:34:12 INFO WorkspaceExplorerServiceImpl:188 - end time - 219 msc 0 sec -2016-05-02 12:34:12 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 12:34:12 INFO WorkspaceExplorerServiceImpl:188 - end time - 187 msc 0 sec -2016-05-02 12:34:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 12:34:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 12:34:12 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 12:34:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 12:34:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 24 ms -2016-05-02 12:34:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 12:34:12 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 12:34:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 12:34:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 22 ms -2016-05-02 12:34:12 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 12:34:12 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 12:34:12 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 12:34:12 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 12:34:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 12:34:12 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 12:34:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 12:34:12 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 12:34:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 12:34:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 12:34:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 12:34:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 12:34:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 12:34:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 12:34:12 INFO WorkspaceExplorerServiceImpl:188 - end time - 443 msc 0 sec -2016-05-02 12:34:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 12:34:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 12:34:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 12:34:17 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 12:34:17 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 12:34:17 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 12:34:18 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 12:34:18 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 12:34:18 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 12:34:18 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 12:34:18 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 12:34:18 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 12:34:18 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 12:34:18 DEBUG WPS2SM:279 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 12:34:18 DEBUG WPS2SM:285 - Max Megabytes: 1 -2016-05-02 12:34:18 DEBUG WPS2SM:200 - MimeType: text/xml -2016-05-02 12:34:18 DEBUG WPS2SM:201 - Schema: null -2016-05-02 12:34:18 DEBUG WPS2SM:202 - Encoding: null -2016-05-02 12:34:18 DEBUG WPS2SM:290 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 12:34:18 DEBUG WPS2SM:291 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 12:34:18 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 12:34:18 DEBUG SClient4WPS:653 - InputParameter: FileParameter [mimeType=text/xml, value=null, name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=FILE] -2016-05-02 12:34:18 DEBUG WPS2SM:254 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 12:34:18 DEBUG WPS2SM:93 - WPS type: -2016-05-02 12:34:18 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 12:34:18 DEBUG WPS2SM:101 - Guessed default value: -2016-05-02 12:34:18 DEBUG WPS2SM:147 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 12:34:18 DEBUG WPS2SM:148 - Machter find: true -2016-05-02 12:34:18 DEBUG WPS2SM:149 - Machter group: a sequence of values separated by | -2016-05-02 12:34:18 DEBUG WPS2SM:150 - Machter start: 47 -2016-05-02 12:34:18 DEBUG WPS2SM:151 - Machter end: 82 -2016-05-02 12:34:18 DEBUG WPS2SM:152 - Machter Group Count: 1 -2016-05-02 12:34:18 DEBUG WPS2SM:155 - Matcher separator: | -2016-05-02 12:34:18 DEBUG WPS2SM:290 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 12:34:18 DEBUG WPS2SM:291 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 12:34:18 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 12:34:18 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 12:34:18 DEBUG SClient4WPS:657 - Parameters: [FileParameter [mimeType=text/xml, value=null, name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=FILE], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 12:34:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 12:34:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 12:34:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 12:34:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 12:34:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 12:34:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 12:34:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 12:34:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 12:34:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 12:34:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 12:34:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 12:34:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 12:34:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 12:34:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 12:34:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 12:34:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 12:34:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 12:34:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 12:34:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 12:34:18 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 12:34:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 12:34:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 12:34:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 12:34:18 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 12:34:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 12:34:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 12:34:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 12:34:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 12:34:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 12:34:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 12:34:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 12:34:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 12:34:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 12:34:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 12:34:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 12:34:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 12:34:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 12:34:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 12:34:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 12:34:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 12:34:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 12:34:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 12:34:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 12:34:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 12:34:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 12:34:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 12:34:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 12:34:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 12:34:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 12:34:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 12:34:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 12:34:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 12:34:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 12:34:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 12:34:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 12:34:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 12:34:18 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 12:34:19 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 12:34:19 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 12:34:19 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 12:34:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 12:34:19 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 12:34:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 12:34:19 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 12:34:19 INFO WorkspaceExplorerServiceImpl:142 - end time - 384 msc 0 sec -2016-05-02 12:34:19 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 12:34:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 12:34:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 12:35:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 12:35:54 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 12:36:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 12:36:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 12:37:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 12:37:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 12:38:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 12:38:39 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 12:39:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 12:39:34 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 12:40:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 12:40:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 12:41:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 12:41:24 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 12:42:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 12:42:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 12:43:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 12:43:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 12:44:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 12:44:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 12:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 12:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 12:45:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 12:45:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 12:46:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 12:46:54 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 12:47:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 12:47:49 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 12:48:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 12:48:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 12:49:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 12:49:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 12:50:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 12:50:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 12:51:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 12:51:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 12:52:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 12:52:24 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 12:53:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 12:53:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 12:54:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 12:54:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 12:55:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 12:55:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 12:56:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 12:56:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 12:56:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 12:56:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 12:57:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 12:57:54 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 12:58:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 12:58:49 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 12:59:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 12:59:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 13:00:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 13:00:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 13:00:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 13:00:47 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 13:00:47 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 13:00:47 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-02 13:00:47 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 13:00:47 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 13:00:48 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 13:00:48 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 13:00:48 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 13:00:48 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-02 13:00:48 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-02 13:00:48 DEBUG SClient4WPS:300 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-02 13:00:48 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-02 13:00:48 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 13:00:48 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 13:00:48 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 13:00:48 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 13:00:48 DEBUG WPS2SM:279 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-02 13:00:48 DEBUG WPS2SM:285 - Max Megabytes: 1 -2016-05-02 13:00:48 DEBUG WPS2SM:200 - MimeType: text/xml -2016-05-02 13:00:48 DEBUG WPS2SM:201 - Schema: null -2016-05-02 13:00:48 DEBUG WPS2SM:202 - Encoding: null -2016-05-02 13:00:48 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 13:00:48 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-02 13:00:48 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:00:48 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 13:00:48 DEBUG WPS2SM:254 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-02 13:00:48 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:00:48 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:00:48 DEBUG WPS2SM:101 - Guessed default value: -2016-05-02 13:00:48 DEBUG WPS2SM:111 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 13:00:48 DEBUG WPS2SM:112 - Machter find: true -2016-05-02 13:00:48 DEBUG WPS2SM:113 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-02 13:00:48 DEBUG WPS2SM:114 - Machter start: 31 -2016-05-02 13:00:48 DEBUG WPS2SM:115 - Machter end: 103 -2016-05-02 13:00:48 DEBUG WPS2SM:116 - Machter Group Count: 2 -2016-05-02 13:00:48 DEBUG WPS2SM:118 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-02 13:00:48 DEBUG WPS2SM:121 - Matcher separator: | -2016-05-02 13:00:48 DEBUG WPS2SM:290 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-02 13:00:48 DEBUG WPS2SM:291 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-02 13:00:48 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:00:48 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 13:00:48 DEBUG WPS2SM:254 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-02 13:00:48 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:00:48 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:00:48 DEBUG WPS2SM:101 - Guessed default value: OccCluster_ -2016-05-02 13:00:48 DEBUG WPS2SM:290 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-02 13:00:48 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-02 13:00:48 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:00:48 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-02 13:00:48 DEBUG WPS2SM:254 - Conversion to SM Type->epsilon is a Literal Input -2016-05-02 13:00:48 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:00:48 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-05-02 13:00:48 DEBUG WPS2SM:101 - Guessed default value: 10 -2016-05-02 13:00:48 DEBUG WPS2SM:290 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-02 13:00:48 DEBUG WPS2SM:291 - Conversion to SM Type->Name:epsilon -2016-05-02 13:00:48 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:00:48 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 13:00:48 DEBUG WPS2SM:254 - Conversion to SM Type->min_points is a Literal Input -2016-05-02 13:00:48 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:00:48 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-05-02 13:00:48 DEBUG WPS2SM:101 - Guessed default value: 1 -2016-05-02 13:00:48 DEBUG WPS2SM:290 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-02 13:00:48 DEBUG WPS2SM:291 - Conversion to SM Type->Name:min_points -2016-05-02 13:00:48 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:00:48 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-02 13:00:48 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-02 13:00:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 13:00:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 13:00:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 13:00:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:00:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:00:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:00:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:00:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:00:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:00:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:00:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 13:00:48 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 13:00:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 13:00:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:00:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:00:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:00:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:00:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:00:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:00:48 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 13:00:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 13:00:48 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 13:00:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 13:00:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:00:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:00:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:00:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:00:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:00:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:00:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:00:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 13:00:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 13:00:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 13:00:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:00:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:00:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:00:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:00:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:00:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:00:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:00:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:00:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 13:00:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:00:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:00:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 13:00:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 13:00:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:00:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:00:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:00:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:00:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 13:00:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 13:00:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:00:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:00:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:00:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:00:48 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 13:00:48 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 13:00:48 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 13:00:48 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 13:00:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 13:00:48 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 13:00:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 13:00:48 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 13:00:48 INFO WorkspaceExplorerServiceImpl:142 - end time - 235 msc 0 sec -2016-05-02 13:00:48 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 13:00:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 13:00:55 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 13:00:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 13:00:55 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS -2016-05-02 13:00:55 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 13:00:55 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 13:00:56 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS - KMEANS - A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - k - expected Number of Clusters - Name of the parameter: k. expected Number of Clusters - - - - 3 - - - - max_runs - max runs of the clustering procedure - Name of the parameter: max_runs. max runs of the clustering procedure - - - - 10 - - - - max_optimization_steps - max number of internal optimization steps - Name of the parameter: max_optimization_steps. max number of internal optimization steps - - - - 5 - - - - min_points - number of points which define an outlier set - Name of the parameter: min_points. number of points which define an outlier set - - - - 2 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 13:00:56 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 13:00:56 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 13:00:56 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-02 13:00:56 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-02 13:00:56 DEBUG SClient4WPS:300 - WPSClient->Input: - k - expected Number of Clusters - Name of the parameter: k. expected Number of Clusters - - - - 3 - - -2016-05-02 13:00:56 DEBUG SClient4WPS:300 - WPSClient->Input: - max_runs - max runs of the clustering procedure - Name of the parameter: max_runs. max runs of the clustering procedure - - - - 10 - - -2016-05-02 13:00:56 DEBUG SClient4WPS:300 - WPSClient->Input: - max_optimization_steps - max number of internal optimization steps - Name of the parameter: max_optimization_steps. max number of internal optimization steps - - - - 5 - - -2016-05-02 13:00:56 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - number of points which define an outlier set - Name of the parameter: min_points. number of points which define an outlier set - - - - 2 - - -2016-05-02 13:00:56 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 13:00:56 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 13:00:56 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 13:00:56 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 13:00:56 DEBUG WPS2SM:279 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-02 13:00:56 DEBUG WPS2SM:285 - Max Megabytes: 1 -2016-05-02 13:00:56 DEBUG WPS2SM:200 - MimeType: text/xml -2016-05-02 13:00:56 DEBUG WPS2SM:201 - Schema: null -2016-05-02 13:00:56 DEBUG WPS2SM:202 - Encoding: null -2016-05-02 13:00:56 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 13:00:56 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-02 13:00:56 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:00:56 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 13:00:56 DEBUG WPS2SM:254 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-02 13:00:56 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:00:56 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:00:56 DEBUG WPS2SM:101 - Guessed default value: -2016-05-02 13:00:56 DEBUG WPS2SM:111 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 13:00:56 DEBUG WPS2SM:112 - Machter find: true -2016-05-02 13:00:56 DEBUG WPS2SM:113 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-02 13:00:56 DEBUG WPS2SM:114 - Machter start: 31 -2016-05-02 13:00:56 DEBUG WPS2SM:115 - Machter end: 103 -2016-05-02 13:00:56 DEBUG WPS2SM:116 - Machter Group Count: 2 -2016-05-02 13:00:56 DEBUG WPS2SM:118 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-02 13:00:56 DEBUG WPS2SM:121 - Matcher separator: | -2016-05-02 13:00:56 DEBUG WPS2SM:290 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-02 13:00:56 DEBUG WPS2SM:291 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-02 13:00:56 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:00:56 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 13:00:56 DEBUG WPS2SM:254 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-02 13:00:56 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:00:56 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:00:56 DEBUG WPS2SM:101 - Guessed default value: OccCluster_ -2016-05-02 13:00:56 DEBUG WPS2SM:290 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-02 13:00:56 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-02 13:00:56 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:00:56 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-02 13:00:56 DEBUG WPS2SM:254 - Conversion to SM Type->k is a Literal Input -2016-05-02 13:00:56 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:00:56 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-05-02 13:00:56 DEBUG WPS2SM:101 - Guessed default value: 3 -2016-05-02 13:00:56 DEBUG WPS2SM:290 - Conversion to SM Type->Title:expected Number of Clusters -2016-05-02 13:00:56 DEBUG WPS2SM:291 - Conversion to SM Type->Name:k -2016-05-02 13:00:56 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:00:56 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=3, value=null, name=k, description=expected Number of Clusters [Min N. of Entries:1; Max N. of Entries:1; default:3], typology=OBJECT] -2016-05-02 13:00:56 DEBUG WPS2SM:254 - Conversion to SM Type->max_runs is a Literal Input -2016-05-02 13:00:56 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:00:56 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-05-02 13:00:56 DEBUG WPS2SM:101 - Guessed default value: 10 -2016-05-02 13:00:56 DEBUG WPS2SM:290 - Conversion to SM Type->Title:max runs of the clustering procedure -2016-05-02 13:00:56 DEBUG WPS2SM:291 - Conversion to SM Type->Name:max_runs -2016-05-02 13:00:56 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:00:56 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=max_runs, description=max runs of the clustering procedure [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 13:00:56 DEBUG WPS2SM:254 - Conversion to SM Type->max_optimization_steps is a Literal Input -2016-05-02 13:00:56 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:00:56 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-05-02 13:00:56 DEBUG WPS2SM:101 - Guessed default value: 5 -2016-05-02 13:00:56 DEBUG WPS2SM:290 - Conversion to SM Type->Title:max number of internal optimization steps -2016-05-02 13:00:56 DEBUG WPS2SM:291 - Conversion to SM Type->Name:max_optimization_steps -2016-05-02 13:00:56 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:00:56 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=max_optimization_steps, description=max number of internal optimization steps [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-02 13:00:56 DEBUG WPS2SM:254 - Conversion to SM Type->min_points is a Literal Input -2016-05-02 13:00:56 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:00:56 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-05-02 13:00:56 DEBUG WPS2SM:101 - Guessed default value: 2 -2016-05-02 13:00:56 DEBUG WPS2SM:290 - Conversion to SM Type->Title:number of points which define an outlier set -2016-05-02 13:00:56 DEBUG WPS2SM:291 - Conversion to SM Type->Name:min_points -2016-05-02 13:00:56 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:00:56 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=2, value=null, name=min_points, description=number of points which define an outlier set [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT] -2016-05-02 13:00:56 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=3, value=null, name=k, description=expected Number of Clusters [Min N. of Entries:1; Max N. of Entries:1; default:3], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=max_runs, description=max runs of the clustering procedure [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=max_optimization_steps, description=max number of internal optimization steps [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=2, value=null, name=min_points, description=number of points which define an outlier set [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT]] -2016-05-02 13:00:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 13:00:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 13:00:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 13:00:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:00:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:00:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:00:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:00:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:00:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:00:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:00:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 13:00:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 13:00:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 13:00:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:00:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:00:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:00:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:00:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:00:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:00:56 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 13:00:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 13:00:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:00:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:00:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 13:00:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 13:00:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:00:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 13:00:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 13:00:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 13:00:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:00:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:00:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 13:00:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:00:56 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 13:00:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:00:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 13:00:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:00:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:00:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:00:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:00:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:00:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:00:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:00:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:00:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:00:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:00:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:00:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:00:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:00:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:00:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 13:00:56 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 13:00:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:00:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:00:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:00:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:00:56 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 13:00:56 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 13:00:56 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 13:00:56 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 13:00:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 13:00:56 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 13:00:57 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 13:00:57 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 13:00:57 INFO WorkspaceExplorerServiceImpl:142 - end time - 236 msc 0 sec -2016-05-02 13:00:57 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 13:00:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 13:00:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 13:00:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 13:00:59 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY -2016-05-02 13:00:59 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 13:00:59 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 13:01:00 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY - CMSY - An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner. - - - IDsFile - Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - Name of the parameter: IDsFile. Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - - - - - - - StocksFile - Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - Name of the parameter: StocksFile. Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - - - - - - - SelectedStock - The stock on which the procedure has to focus e.g. HLH_M07 - Name of the parameter: SelectedStock. The stock on which the procedure has to focus e.g. HLH_M07 - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 13:01:00 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 13:01:00 DEBUG SClient4WPS:300 - WPSClient->Input: - IDsFile - Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - Name of the parameter: IDsFile. Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - - - - - -2016-05-02 13:01:00 DEBUG SClient4WPS:300 - WPSClient->Input: - StocksFile - Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - Name of the parameter: StocksFile. Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - - - - - -2016-05-02 13:01:00 DEBUG SClient4WPS:300 - WPSClient->Input: - SelectedStock - The stock on which the procedure has to focus e.g. HLH_M07 - Name of the parameter: SelectedStock. The stock on which the procedure has to focus e.g. HLH_M07 - - - - - -2016-05-02 13:01:00 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 13:01:00 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 13:01:00 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 13:01:00 DEBUG WPS2SM:254 - Conversion to SM Type->IDsFile is a Literal Input -2016-05-02 13:01:00 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:00 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:01:00 DEBUG WPS2SM:101 - Guessed default value: -2016-05-02 13:01:00 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK -2016-05-02 13:01:00 DEBUG WPS2SM:291 - Conversion to SM Type->Name:IDsFile -2016-05-02 13:01:00 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:00 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=IDsFile, description=Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 13:01:00 DEBUG WPS2SM:254 - Conversion to SM Type->StocksFile is a Literal Input -2016-05-02 13:01:00 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:00 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:01:00 DEBUG WPS2SM:101 - Guessed default value: -2016-05-02 13:01:00 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY -2016-05-02 13:01:00 DEBUG WPS2SM:291 - Conversion to SM Type->Name:StocksFile -2016-05-02 13:01:00 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:00 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=StocksFile, description=Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 13:01:00 DEBUG WPS2SM:254 - Conversion to SM Type->SelectedStock is a Literal Input -2016-05-02 13:01:00 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:00 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:01:00 DEBUG WPS2SM:101 - Guessed default value: -2016-05-02 13:01:00 DEBUG WPS2SM:290 - Conversion to SM Type->Title:The stock on which the procedure has to focus e.g. HLH_M07 -2016-05-02 13:01:00 DEBUG WPS2SM:291 - Conversion to SM Type->Name:SelectedStock -2016-05-02 13:01:00 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:00 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=SelectedStock, description=The stock on which the procedure has to focus e.g. HLH_M07 [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 13:01:00 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=IDsFile, description=Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=StocksFile, description=Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=SelectedStock, description=The stock on which the procedure has to focus e.g. HLH_M07 [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT]] -2016-05-02 13:01:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 13:01:16 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 13:01:16 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 13:01:16 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING -2016-05-02 13:01:16 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 13:01:16 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 13:01:16 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt - - - OutputTableLabel - The name of the table to produce - Name of the parameter: OutputTableLabel. The name of the table to produce - - - - maxent_ - - - - SpeciesName - The name of the species to model and the occurrence records refer to - Name of the parameter: SpeciesName. The name of the species to model and the occurrence records refer to - - - - generic_species - - - - MaxIterations - The number of learning iterations of the MaxEnt algorithm - Name of the parameter: MaxIterations. The number of learning iterations of the MaxEnt algorithm - - - - 1000 - - - - DefaultPrevalence - A priori probability of presence at ordinary occurrence points - Name of the parameter: DefaultPrevalence. A priori probability of presence at ordinary occurrence points - - - - 0.5 - - - - OccurrencesTable - A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - Name of the parameter: OccurrencesTable. A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - LongitudeColumn - The column containing longitude values [the name of a column from OccurrencesTable] - Name of the parameter: LongitudeColumn. The column containing longitude values [the name of a column from OccurrencesTable] - - - - decimallongitude - - - - LatitudeColumn - The column containing latitude values [the name of a column from OccurrencesTable] - Name of the parameter: LatitudeColumn. The column containing latitude values [the name of a column from OccurrencesTable] - - - - decimallatitude - - - - XResolution - Model projection resolution on the X axis in decimal degrees - Name of the parameter: XResolution. Model projection resolution on the X axis in decimal degrees - - - - 1 - - - - YResolution - Model projection resolution on the Y axis in decimal degrees - Name of the parameter: YResolution. Model projection resolution on the Y axis in decimal degrees - - - - 1 - - - - Layers - The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - Name of the parameter: Layers. The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - - - - - - - Z - Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - - - TimeIndex - Time Index. The default is the first time indexed in the input environmental datasets - Name of the parameter: TimeIndex. Time Index. The default is the first time indexed in the input environmental datasets - - - - 0 - - - - - - Best Threshold - Best threshold for transforming MaxEnt values into 0/1 probability assignments - Name of the parameter: Best Threshold. Best threshold for transforming MaxEnt values into 0/1 probability assignments - - - - - - Estimated Prevalence - The a posteriori estimated prevalence of the species - Name of the parameter: Estimated Prevalence. The a posteriori estimated prevalence of the species - - - - - - Variables contributions - The contribution of each variable to the MaxEnt values estimates - Name of the parameter: Variables contributions. The contribution of each variable to the MaxEnt values estimates - - - - - - Variables Permutations Importance - The importance of the permutations of the variables during the training - Name of the parameter: Variables Permutations Importance. The importance of the permutations of the variables during the training - - - - - - ASCII Maps of the environmental layers for checking features aligments - ASCII Maps of the environmental layers for checking features aligments - Name of the parameter: ASCII Maps of the environmental layers for checking features aligments. ASCII Maps of the environmental layers for checking features aligments - - - - application/d4science - - - - - application/d4science - - - - - - OutputTable7 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable7. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 13:01:16 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 13:01:16 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableLabel - The name of the table to produce - Name of the parameter: OutputTableLabel. The name of the table to produce - - - - maxent_ - - -2016-05-02 13:01:16 DEBUG SClient4WPS:300 - WPSClient->Input: - SpeciesName - The name of the species to model and the occurrence records refer to - Name of the parameter: SpeciesName. The name of the species to model and the occurrence records refer to - - - - generic_species - - -2016-05-02 13:01:16 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxIterations - The number of learning iterations of the MaxEnt algorithm - Name of the parameter: MaxIterations. The number of learning iterations of the MaxEnt algorithm - - - - 1000 - - -2016-05-02 13:01:16 DEBUG SClient4WPS:300 - WPSClient->Input: - DefaultPrevalence - A priori probability of presence at ordinary occurrence points - Name of the parameter: DefaultPrevalence. A priori probability of presence at ordinary occurrence points - - - - 0.5 - - -2016-05-02 13:01:16 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencesTable - A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - Name of the parameter: OccurrencesTable. A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 13:01:16 DEBUG SClient4WPS:300 - WPSClient->Input: - LongitudeColumn - The column containing longitude values [the name of a column from OccurrencesTable] - Name of the parameter: LongitudeColumn. The column containing longitude values [the name of a column from OccurrencesTable] - - - - decimallongitude - - -2016-05-02 13:01:16 DEBUG SClient4WPS:300 - WPSClient->Input: - LatitudeColumn - The column containing latitude values [the name of a column from OccurrencesTable] - Name of the parameter: LatitudeColumn. The column containing latitude values [the name of a column from OccurrencesTable] - - - - decimallatitude - - -2016-05-02 13:01:16 DEBUG SClient4WPS:300 - WPSClient->Input: - XResolution - Model projection resolution on the X axis in decimal degrees - Name of the parameter: XResolution. Model projection resolution on the X axis in decimal degrees - - - - 1 - - -2016-05-02 13:01:16 DEBUG SClient4WPS:300 - WPSClient->Input: - YResolution - Model projection resolution on the Y axis in decimal degrees - Name of the parameter: YResolution. Model projection resolution on the Y axis in decimal degrees - - - - 1 - - -2016-05-02 13:01:16 DEBUG SClient4WPS:300 - WPSClient->Input: - Layers - The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - Name of the parameter: Layers. The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 13:01:16 DEBUG SClient4WPS:300 - WPSClient->Input: - Z - Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - -2016-05-02 13:01:16 DEBUG SClient4WPS:300 - WPSClient->Input: - TimeIndex - Time Index. The default is the first time indexed in the input environmental datasets - Name of the parameter: TimeIndex. Time Index. The default is the first time indexed in the input environmental datasets - - - - 0 - - -2016-05-02 13:01:16 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 13:01:16 DEBUG SClient4WPS:307 - WPSClient->Output: - Best Threshold - Best threshold for transforming MaxEnt values into 0/1 probability assignments - Name of the parameter: Best Threshold. Best threshold for transforming MaxEnt values into 0/1 probability assignments - - - - -2016-05-02 13:01:16 DEBUG SClient4WPS:307 - WPSClient->Output: - Estimated Prevalence - The a posteriori estimated prevalence of the species - Name of the parameter: Estimated Prevalence. The a posteriori estimated prevalence of the species - - - - -2016-05-02 13:01:16 DEBUG SClient4WPS:307 - WPSClient->Output: - Variables contributions - The contribution of each variable to the MaxEnt values estimates - Name of the parameter: Variables contributions. The contribution of each variable to the MaxEnt values estimates - - - - -2016-05-02 13:01:16 DEBUG SClient4WPS:307 - WPSClient->Output: - Variables Permutations Importance - The importance of the permutations of the variables during the training - Name of the parameter: Variables Permutations Importance. The importance of the permutations of the variables during the training - - - - -2016-05-02 13:01:16 DEBUG SClient4WPS:307 - WPSClient->Output: - ASCII Maps of the environmental layers for checking features aligments - ASCII Maps of the environmental layers for checking features aligments - Name of the parameter: ASCII Maps of the environmental layers for checking features aligments. ASCII Maps of the environmental layers for checking features aligments - - - - application/d4science - - - - - application/d4science - - - - -2016-05-02 13:01:16 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable7 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable7. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 13:01:16 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 13:01:16 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 13:01:16 DEBUG WPS2SM:254 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-02 13:01:16 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:16 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:01:16 DEBUG WPS2SM:101 - Guessed default value: maxent_ -2016-05-02 13:01:16 DEBUG WPS2SM:290 - Conversion to SM Type->Title:The name of the table to produce -2016-05-02 13:01:16 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OutputTableLabel -2016-05-02 13:01:16 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:16 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=maxent_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:maxent_], typology=OBJECT] -2016-05-02 13:01:16 DEBUG WPS2SM:254 - Conversion to SM Type->SpeciesName is a Literal Input -2016-05-02 13:01:16 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:16 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:01:16 DEBUG WPS2SM:101 - Guessed default value: generic_species -2016-05-02 13:01:16 DEBUG WPS2SM:290 - Conversion to SM Type->Title:The name of the species to model and the occurrence records refer to -2016-05-02 13:01:16 DEBUG WPS2SM:291 - Conversion to SM Type->Name:SpeciesName -2016-05-02 13:01:16 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:16 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=generic_species, value=null, name=SpeciesName, description=The name of the species to model and the occurrence records refer to [Min N. of Entries:1; Max N. of Entries:1; default:generic_species], typology=OBJECT] -2016-05-02 13:01:16 DEBUG WPS2SM:254 - Conversion to SM Type->MaxIterations is a Literal Input -2016-05-02 13:01:16 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:16 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-05-02 13:01:16 DEBUG WPS2SM:101 - Guessed default value: 1000 -2016-05-02 13:01:16 DEBUG WPS2SM:290 - Conversion to SM Type->Title:The number of learning iterations of the MaxEnt algorithm -2016-05-02 13:01:16 DEBUG WPS2SM:291 - Conversion to SM Type->Name:MaxIterations -2016-05-02 13:01:16 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:16 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1000, value=null, name=MaxIterations, description=The number of learning iterations of the MaxEnt algorithm [Min N. of Entries:1; Max N. of Entries:1; default:1000], typology=OBJECT] -2016-05-02 13:01:16 DEBUG WPS2SM:254 - Conversion to SM Type->DefaultPrevalence is a Literal Input -2016-05-02 13:01:16 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:16 DEBUG WPS2SM:95 - Guessed type: java.lang.Double -2016-05-02 13:01:16 DEBUG WPS2SM:101 - Guessed default value: 0.5 -2016-05-02 13:01:16 DEBUG WPS2SM:290 - Conversion to SM Type->Title:A priori probability of presence at ordinary occurrence points -2016-05-02 13:01:16 DEBUG WPS2SM:291 - Conversion to SM Type->Name:DefaultPrevalence -2016-05-02 13:01:16 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:16 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=DefaultPrevalence, description=A priori probability of presence at ordinary occurrence points [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-02 13:01:16 DEBUG WPS2SM:279 - Conversion to SM Type->OccurrencesTable is a Complex Input -2016-05-02 13:01:16 DEBUG WPS2SM:285 - Max Megabytes: 1 -2016-05-02 13:01:16 DEBUG WPS2SM:200 - MimeType: text/xml -2016-05-02 13:01:16 DEBUG WPS2SM:201 - Schema: null -2016-05-02 13:01:16 DEBUG WPS2SM:202 - Encoding: null -2016-05-02 13:01:16 DEBUG WPS2SM:290 - Conversion to SM Type->Title:A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] -2016-05-02 13:01:16 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OccurrencesTable -2016-05-02 13:01:16 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:16 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=OccurrencesTable, description=A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 13:01:16 DEBUG WPS2SM:254 - Conversion to SM Type->LongitudeColumn is a Literal Input -2016-05-02 13:01:16 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:16 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:01:16 DEBUG WPS2SM:101 - Guessed default value: decimallongitude -2016-05-02 13:01:16 DEBUG WPS2SM:130 - Machter title: The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude] -2016-05-02 13:01:16 DEBUG WPS2SM:131 - Machter find: true -2016-05-02 13:01:16 DEBUG WPS2SM:132 - Machter group: the name of a column from OccurrencesTable -2016-05-02 13:01:16 DEBUG WPS2SM:133 - Machter start: 40 -2016-05-02 13:01:16 DEBUG WPS2SM:134 - Machter end: 82 -2016-05-02 13:01:16 DEBUG WPS2SM:135 - Machter Group Count: 1 -2016-05-02 13:01:16 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrencesTable -2016-05-02 13:01:16 DEBUG WPS2SM:290 - Conversion to SM Type->Title:The column containing longitude values [the name of a column from OccurrencesTable] -2016-05-02 13:01:16 DEBUG WPS2SM:291 - Conversion to SM Type->Name:LongitudeColumn -2016-05-02 13:01:16 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:16 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN] -2016-05-02 13:01:16 DEBUG WPS2SM:254 - Conversion to SM Type->LatitudeColumn is a Literal Input -2016-05-02 13:01:16 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:16 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:01:16 DEBUG WPS2SM:101 - Guessed default value: decimallatitude -2016-05-02 13:01:16 DEBUG WPS2SM:130 - Machter title: The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude] -2016-05-02 13:01:16 DEBUG WPS2SM:131 - Machter find: true -2016-05-02 13:01:16 DEBUG WPS2SM:132 - Machter group: the name of a column from OccurrencesTable -2016-05-02 13:01:16 DEBUG WPS2SM:133 - Machter start: 39 -2016-05-02 13:01:16 DEBUG WPS2SM:134 - Machter end: 81 -2016-05-02 13:01:16 DEBUG WPS2SM:135 - Machter Group Count: 1 -2016-05-02 13:01:16 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrencesTable -2016-05-02 13:01:16 DEBUG WPS2SM:290 - Conversion to SM Type->Title:The column containing latitude values [the name of a column from OccurrencesTable] -2016-05-02 13:01:16 DEBUG WPS2SM:291 - Conversion to SM Type->Name:LatitudeColumn -2016-05-02 13:01:16 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:16 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN] -2016-05-02 13:01:16 DEBUG WPS2SM:254 - Conversion to SM Type->XResolution is a Literal Input -2016-05-02 13:01:16 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:16 DEBUG WPS2SM:95 - Guessed type: java.lang.Double -2016-05-02 13:01:16 DEBUG WPS2SM:101 - Guessed default value: 1 -2016-05-02 13:01:16 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Model projection resolution on the X axis in decimal degrees -2016-05-02 13:01:16 DEBUG WPS2SM:291 - Conversion to SM Type->Name:XResolution -2016-05-02 13:01:16 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:16 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=XResolution, description=Model projection resolution on the X axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-02 13:01:16 DEBUG WPS2SM:254 - Conversion to SM Type->YResolution is a Literal Input -2016-05-02 13:01:16 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:16 DEBUG WPS2SM:95 - Guessed type: java.lang.Double -2016-05-02 13:01:16 DEBUG WPS2SM:101 - Guessed default value: 1 -2016-05-02 13:01:16 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Model projection resolution on the Y axis in decimal degrees -2016-05-02 13:01:16 DEBUG WPS2SM:291 - Conversion to SM Type->Name:YResolution -2016-05-02 13:01:16 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:16 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=YResolution, description=Model projection resolution on the Y axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-02 13:01:16 DEBUG WPS2SM:254 - Conversion to SM Type->Layers is a Literal Input -2016-05-02 13:01:16 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:16 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:01:16 DEBUG WPS2SM:101 - Guessed default value: -2016-05-02 13:01:16 DEBUG WPS2SM:147 - Machter title: The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 13:01:16 DEBUG WPS2SM:148 - Machter find: true -2016-05-02 13:01:16 DEBUG WPS2SM:149 - Machter group: a sequence of values separated by | -2016-05-02 13:01:16 DEBUG WPS2SM:150 - Machter start: 501 -2016-05-02 13:01:16 DEBUG WPS2SM:151 - Machter end: 536 -2016-05-02 13:01:16 DEBUG WPS2SM:152 - Machter Group Count: 1 -2016-05-02 13:01:16 DEBUG WPS2SM:155 - Matcher separator: | -2016-05-02 13:01:16 DEBUG WPS2SM:290 - Conversion to SM Type->Title:The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) -2016-05-02 13:01:16 DEBUG WPS2SM:291 - Conversion to SM Type->Name:Layers -2016-05-02 13:01:16 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:16 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 13:01:16 DEBUG WPS2SM:254 - Conversion to SM Type->Z is a Literal Input -2016-05-02 13:01:16 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:16 DEBUG WPS2SM:95 - Guessed type: java.lang.Double -2016-05-02 13:01:16 DEBUG WPS2SM:101 - Guessed default value: 0 -2016-05-02 13:01:16 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer -2016-05-02 13:01:16 DEBUG WPS2SM:291 - Conversion to SM Type->Name:Z -2016-05-02 13:01:16 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:16 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 13:01:16 DEBUG WPS2SM:254 - Conversion to SM Type->TimeIndex is a Literal Input -2016-05-02 13:01:16 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:16 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-05-02 13:01:16 DEBUG WPS2SM:101 - Guessed default value: 0 -2016-05-02 13:01:16 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Time Index. The default is the first time indexed in the input environmental datasets -2016-05-02 13:01:16 DEBUG WPS2SM:291 - Conversion to SM Type->Name:TimeIndex -2016-05-02 13:01:16 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:16 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=TimeIndex, description=Time Index. The default is the first time indexed in the input environmental datasets [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 13:01:16 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue=maxent_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:maxent_], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=generic_species, value=null, name=SpeciesName, description=The name of the species to model and the occurrence records refer to [Min N. of Entries:1; Max N. of Entries:1; default:generic_species], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1000, value=null, name=MaxIterations, description=The number of learning iterations of the MaxEnt algorithm [Min N. of Entries:1; Max N. of Entries:1; default:1000], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=DefaultPrevalence, description=A priori probability of presence at ordinary occurrence points [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], TabularParameter [tableName= , templates=[], name=OccurrencesTable, description=A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN], Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN], ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=XResolution, description=Model projection resolution on the X axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=YResolution, description=Model projection resolution on the Y axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ListParameter [type=java.lang.String, value=null, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=TimeIndex, description=Time Index. The default is the first time indexed in the input environmental datasets [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-02 13:01:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 13:01:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 13:01:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 13:01:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:01:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:01:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:01:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:01:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:01:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:01:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 13:01:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 13:01:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 13:01:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:01:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:01:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:01:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:01:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:01:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:01:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 13:01:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 13:01:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 13:01:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 13:01:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 13:01:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 13:01:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 13:01:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 13:01:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 13:01:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:01:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 13:01:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:01:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:01:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:01:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:01:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:01:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:01:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:01:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:01:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:01:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:01:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:01:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 13:01:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 13:01:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 13:01:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 13:01:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 13:01:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 13:01:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 13:01:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 13:01:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 13:01:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 13:01:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 206 msc 0 sec -2016-05-02 13:01:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 13:01:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 13:01:23 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 13:01:23 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 13:01:23 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS -2016-05-02 13:01:23 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 13:01:23 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 13:01:24 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS - GENERIC_CHARTS - An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities. - - - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - TopElementsNumber - Max number of elements, with highest values, to visualize - Name of the parameter: TopElementsNumber. Max number of elements, with highest values, to visualize - - - - 10 - - - - Attributes - The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Attributes. The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - - - - - - - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 13:01:24 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 13:01:24 DEBUG SClient4WPS:300 - WPSClient->Input: - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 13:01:24 DEBUG SClient4WPS:300 - WPSClient->Input: - TopElementsNumber - Max number of elements, with highest values, to visualize - Name of the parameter: TopElementsNumber. Max number of elements, with highest values, to visualize - - - - 10 - - -2016-05-02 13:01:24 DEBUG SClient4WPS:300 - WPSClient->Input: - Attributes - The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Attributes. The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - - - - - -2016-05-02 13:01:24 DEBUG SClient4WPS:300 - WPSClient->Input: - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - -2016-05-02 13:01:24 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 13:01:24 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 13:01:24 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 13:01:24 DEBUG WPS2SM:279 - Conversion to SM Type->InputTable is a Complex Input -2016-05-02 13:01:24 DEBUG WPS2SM:285 - Max Megabytes: 1 -2016-05-02 13:01:24 DEBUG WPS2SM:200 - MimeType: text/xml -2016-05-02 13:01:24 DEBUG WPS2SM:201 - Schema: null -2016-05-02 13:01:24 DEBUG WPS2SM:202 - Encoding: null -2016-05-02 13:01:24 DEBUG WPS2SM:290 - Conversion to SM Type->Title:The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 13:01:24 DEBUG WPS2SM:291 - Conversion to SM Type->Name:InputTable -2016-05-02 13:01:24 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:24 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=InputTable, description=The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 13:01:24 DEBUG WPS2SM:254 - Conversion to SM Type->TopElementsNumber is a Literal Input -2016-05-02 13:01:24 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:24 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-05-02 13:01:24 DEBUG WPS2SM:101 - Guessed default value: 10 -2016-05-02 13:01:24 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Max number of elements, with highest values, to visualize -2016-05-02 13:01:24 DEBUG WPS2SM:291 - Conversion to SM Type->Name:TopElementsNumber -2016-05-02 13:01:24 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:24 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=TopElementsNumber, description=Max number of elements, with highest values, to visualize [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 13:01:24 DEBUG WPS2SM:254 - Conversion to SM Type->Attributes is a Literal Input -2016-05-02 13:01:24 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:24 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:01:24 DEBUG WPS2SM:101 - Guessed default value: -2016-05-02 13:01:24 DEBUG WPS2SM:111 - Machter title: The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 13:01:24 DEBUG WPS2SM:112 - Machter find: true -2016-05-02 13:01:24 DEBUG WPS2SM:113 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-02 13:01:24 DEBUG WPS2SM:114 - Machter start: 42 -2016-05-02 13:01:24 DEBUG WPS2SM:115 - Machter end: 103 -2016-05-02 13:01:24 DEBUG WPS2SM:116 - Machter Group Count: 2 -2016-05-02 13:01:24 DEBUG WPS2SM:118 - Matcher referredTabularParameterName: InputTable -2016-05-02 13:01:24 DEBUG WPS2SM:121 - Matcher separator: | -2016-05-02 13:01:24 DEBUG WPS2SM:290 - Conversion to SM Type->Title:The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] -2016-05-02 13:01:24 DEBUG WPS2SM:291 - Conversion to SM Type->Name:Attributes -2016-05-02 13:01:24 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:24 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 13:01:24 DEBUG WPS2SM:254 - Conversion to SM Type->Quantities is a Literal Input -2016-05-02 13:01:24 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:24 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:01:24 DEBUG WPS2SM:101 - Guessed default value: -2016-05-02 13:01:24 DEBUG WPS2SM:111 - Machter title: The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 13:01:24 DEBUG WPS2SM:112 - Machter find: true -2016-05-02 13:01:24 DEBUG WPS2SM:113 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-02 13:01:24 DEBUG WPS2SM:114 - Machter start: 38 -2016-05-02 13:01:24 DEBUG WPS2SM:115 - Machter end: 99 -2016-05-02 13:01:24 DEBUG WPS2SM:116 - Machter Group Count: 2 -2016-05-02 13:01:24 DEBUG WPS2SM:118 - Matcher referredTabularParameterName: InputTable -2016-05-02 13:01:24 DEBUG WPS2SM:121 - Matcher separator: | -2016-05-02 13:01:24 DEBUG WPS2SM:290 - Conversion to SM Type->Title:The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] -2016-05-02 13:01:24 DEBUG WPS2SM:291 - Conversion to SM Type->Name:Quantities -2016-05-02 13:01:24 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:24 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 13:01:24 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=InputTable, description=The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=TopElementsNumber, description=Max number of elements, with highest values, to visualize [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST]] -2016-05-02 13:01:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 13:01:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 13:01:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 13:01:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:01:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:01:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:01:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:01:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:01:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:01:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 13:01:24 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 13:01:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 13:01:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:01:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:01:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:01:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:01:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:01:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:01:24 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 13:01:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 13:01:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 13:01:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 13:01:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 13:01:24 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 13:01:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 13:01:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:01:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:01:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:01:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:01:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:01:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:01:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 13:01:24 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 13:01:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 13:01:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:01:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:01:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:01:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:01:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:01:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:01:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 13:01:24 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 13:01:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:24 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 13:01:24 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 13:01:24 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 13:01:24 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 13:01:24 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 13:01:24 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 13:01:24 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 13:01:24 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 13:01:24 INFO WorkspaceExplorerServiceImpl:142 - end time - 215 msc 0 sec -2016-05-02 13:01:24 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 13:01:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 13:01:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 13:01:28 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 13:01:28 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS -2016-05-02 13:01:28 DEBUG WPS2SM:279 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-02 13:01:28 DEBUG WPS2SM:285 - Max Megabytes: 1 -2016-05-02 13:01:28 DEBUG WPS2SM:200 - MimeType: text/xml -2016-05-02 13:01:28 DEBUG WPS2SM:201 - Schema: null -2016-05-02 13:01:28 DEBUG WPS2SM:202 - Encoding: null -2016-05-02 13:01:28 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 13:01:28 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-02 13:01:28 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:28 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 13:01:28 DEBUG WPS2SM:254 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-02 13:01:28 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:28 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:01:28 DEBUG WPS2SM:101 - Guessed default value: -2016-05-02 13:01:28 DEBUG WPS2SM:111 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 13:01:28 DEBUG WPS2SM:112 - Machter find: true -2016-05-02 13:01:28 DEBUG WPS2SM:113 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-02 13:01:28 DEBUG WPS2SM:114 - Machter start: 31 -2016-05-02 13:01:28 DEBUG WPS2SM:115 - Machter end: 103 -2016-05-02 13:01:28 DEBUG WPS2SM:116 - Machter Group Count: 2 -2016-05-02 13:01:28 DEBUG WPS2SM:118 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-02 13:01:28 DEBUG WPS2SM:121 - Matcher separator: | -2016-05-02 13:01:28 DEBUG WPS2SM:290 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-02 13:01:28 DEBUG WPS2SM:291 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-02 13:01:28 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:28 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 13:01:28 DEBUG WPS2SM:254 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-02 13:01:28 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:28 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:01:28 DEBUG WPS2SM:101 - Guessed default value: OccCluster_ -2016-05-02 13:01:28 DEBUG WPS2SM:290 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-02 13:01:28 DEBUG WPS2SM:291 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-02 13:01:28 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:28 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-02 13:01:28 DEBUG WPS2SM:254 - Conversion to SM Type->k is a Literal Input -2016-05-02 13:01:28 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:28 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-05-02 13:01:28 DEBUG WPS2SM:101 - Guessed default value: 3 -2016-05-02 13:01:28 DEBUG WPS2SM:290 - Conversion to SM Type->Title:expected Number of Clusters -2016-05-02 13:01:28 DEBUG WPS2SM:291 - Conversion to SM Type->Name:k -2016-05-02 13:01:28 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:28 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=3, value=null, name=k, description=expected Number of Clusters [Min N. of Entries:1; Max N. of Entries:1; default:3], typology=OBJECT] -2016-05-02 13:01:28 DEBUG WPS2SM:254 - Conversion to SM Type->max_runs is a Literal Input -2016-05-02 13:01:28 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:28 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-05-02 13:01:28 DEBUG WPS2SM:101 - Guessed default value: 10 -2016-05-02 13:01:28 DEBUG WPS2SM:290 - Conversion to SM Type->Title:max runs of the clustering procedure -2016-05-02 13:01:28 DEBUG WPS2SM:291 - Conversion to SM Type->Name:max_runs -2016-05-02 13:01:28 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:28 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=max_runs, description=max runs of the clustering procedure [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 13:01:28 DEBUG WPS2SM:254 - Conversion to SM Type->max_optimization_steps is a Literal Input -2016-05-02 13:01:28 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:28 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-05-02 13:01:28 DEBUG WPS2SM:101 - Guessed default value: 5 -2016-05-02 13:01:28 DEBUG WPS2SM:290 - Conversion to SM Type->Title:max number of internal optimization steps -2016-05-02 13:01:28 DEBUG WPS2SM:291 - Conversion to SM Type->Name:max_optimization_steps -2016-05-02 13:01:28 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:28 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=max_optimization_steps, description=max number of internal optimization steps [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-02 13:01:28 DEBUG WPS2SM:254 - Conversion to SM Type->min_points is a Literal Input -2016-05-02 13:01:28 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:28 DEBUG WPS2SM:95 - Guessed type: java.lang.Integer -2016-05-02 13:01:28 DEBUG WPS2SM:101 - Guessed default value: 2 -2016-05-02 13:01:28 DEBUG WPS2SM:290 - Conversion to SM Type->Title:number of points which define an outlier set -2016-05-02 13:01:28 DEBUG WPS2SM:291 - Conversion to SM Type->Name:min_points -2016-05-02 13:01:28 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:28 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=2, value=null, name=min_points, description=number of points which define an outlier set [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT] -2016-05-02 13:01:28 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=3, value=null, name=k, description=expected Number of Clusters [Min N. of Entries:1; Max N. of Entries:1; default:3], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=max_runs, description=max runs of the clustering procedure [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=max_optimization_steps, description=max number of internal optimization steps [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=2, value=null, name=min_points, description=number of points which define an outlier set [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT]] -2016-05-02 13:01:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 13:01:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 13:01:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 13:01:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:01:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:01:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:01:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:01:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:01:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:01:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 13:01:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 13:01:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 13:01:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:01:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:01:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:01:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:01:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:01:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:01:28 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 13:01:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 13:01:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 13:01:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 13:01:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 13:01:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 13:01:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 13:01:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:01:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:01:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:01:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:01:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 13:01:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:01:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 13:01:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:01:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 13:01:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 13:01:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 13:01:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 13:01:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 13:01:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 13:01:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 13:01:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 13:01:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 13:01:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 13:01:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 13:01:28 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 13:01:28 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 13:01:28 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 13:01:28 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 13:01:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 13:01:28 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 13:01:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 13:01:28 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 13:01:28 INFO WorkspaceExplorerServiceImpl:142 - end time - 221 msc 0 sec -2016-05-02 13:01:28 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 13:01:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 13:01:32 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 13:01:32 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 13:01:32 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY -2016-05-02 13:01:32 DEBUG WPS2SM:254 - Conversion to SM Type->IDsFile is a Literal Input -2016-05-02 13:01:32 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:32 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:01:32 DEBUG WPS2SM:101 - Guessed default value: -2016-05-02 13:01:32 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK -2016-05-02 13:01:32 DEBUG WPS2SM:291 - Conversion to SM Type->Name:IDsFile -2016-05-02 13:01:32 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:32 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=IDsFile, description=Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 13:01:32 DEBUG WPS2SM:254 - Conversion to SM Type->StocksFile is a Literal Input -2016-05-02 13:01:32 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:32 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:01:32 DEBUG WPS2SM:101 - Guessed default value: -2016-05-02 13:01:32 DEBUG WPS2SM:290 - Conversion to SM Type->Title:Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY -2016-05-02 13:01:32 DEBUG WPS2SM:291 - Conversion to SM Type->Name:StocksFile -2016-05-02 13:01:32 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:32 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=StocksFile, description=Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 13:01:32 DEBUG WPS2SM:254 - Conversion to SM Type->SelectedStock is a Literal Input -2016-05-02 13:01:32 DEBUG WPS2SM:93 - WPS type: -2016-05-02 13:01:32 DEBUG WPS2SM:95 - Guessed type: java.lang.String -2016-05-02 13:01:32 DEBUG WPS2SM:101 - Guessed default value: -2016-05-02 13:01:32 DEBUG WPS2SM:290 - Conversion to SM Type->Title:The stock on which the procedure has to focus e.g. HLH_M07 -2016-05-02 13:01:32 DEBUG WPS2SM:291 - Conversion to SM Type->Name:SelectedStock -2016-05-02 13:01:32 DEBUG WPS2SM:292 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 13:01:32 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=SelectedStock, description=The stock on which the procedure has to focus e.g. HLH_M07 [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 13:01:32 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=IDsFile, description=Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=StocksFile, description=Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=SelectedStock, description=The stock on which the procedure has to focus e.g. HLH_M07 [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT]] -2016-05-02 13:01:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 13:01:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 13:02:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 13:02:29 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 13:03:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 13:03:24 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 13:04:19 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 13:04:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 13:04:19 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 13:04:19 WARN SessionCheckerServiceImpl:80 - Scope is null at Mon May 02 13:04:19 CEST 2016 -2016-05-02 13:04:19 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 14:42:30 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 14:42:30 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 14:42:30 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 14:42:30 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 14:42:30 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 14:42:30 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:42:30 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 14:42:30 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@b8208d4 -2016-05-02 14:42:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:42:30 INFO ASLSession:352 - Logging the entrance -2016-05-02 14:42:30 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 14:42:30 DEBUG TemplateModel:83 - 2016-05-02 14:42:30, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 14:42:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:42:30 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 14:42:32 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 14:42:32 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 14:42:32 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:42:32 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 14:42:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:42:32 INFO ASLSession:352 - Logging the entrance -2016-05-02 14:42:32 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 14:42:32 DEBUG TemplateModel:83 - 2016-05-02 14:42:32, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 14:42:32 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:42:32 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 14:42:32 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 116 ms -2016-05-02 14:42:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 14:42:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 14:42:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 14:42:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 14:42:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 14:42:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 14:42:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 14:42:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 14:42:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 14:42:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 14:42:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 14:42:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 14:42:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 14:42:32 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 14:42:32 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 14:42:33 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 14:42:33 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 14:42:33 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@61865cca -2016-05-02 14:42:33 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@2acd83ad -2016-05-02 14:42:33 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@5123c932 -2016-05-02 14:42:33 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@1d55dc19 -2016-05-02 14:42:33 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 112 ms -2016-05-02 14:42:33 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 14:42:33 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 14:42:33 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 14:42:33 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 14:42:33 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 14:42:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:42:33 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 14:42:33 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 14:42:33 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 40 ms -2016-05-02 14:42:33 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 14:42:33 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:42:33 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 14:42:33 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:42:33 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 14:42:33 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 14:42:33 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 14:42:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:42:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:42:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:42:33 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 14:42:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:42:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:42:33 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 14:42:34 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 14:42:34 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 14:42:34 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 14:42:34 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 14:42:34 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 14:42:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 14:42:34 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 14:42:34 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 14:42:34 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-02 14:42:34 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 14:42:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:42:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:42:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:42:34 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 14:42:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:42:34 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 14:42:34 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 14:42:34 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 14:42:34 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 14:42:34 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 14:42:34 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 14:42:34 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 14:42:34 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 14:42:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:42:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:42:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:42:34 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:42:34 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 14:42:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:42:34 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 14:42:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 14:42:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:42:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:42:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:42:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:42:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:42:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:42:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:42:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:42:34 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 14:42:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 14:42:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:42:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:42:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:42:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:42:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:42:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:42:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:42:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:42:35 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 14:42:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 14:42:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:42:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:42:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:42:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:42:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:42:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:42:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:42:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:42:35 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 14:42:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 14:42:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:42:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:42:35 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 14:42:35 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 14:42:35 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 14:42:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:42:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:42:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:42:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:42:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:42:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:42:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:42:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:42:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:42:35 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 14:42:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:42:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:42:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:42:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:42:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:42:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:42:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:42:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:42:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:42:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:42:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:42:35 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 14:42:35 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 14:42:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:42:36 INFO WorkspaceExplorerServiceImpl:188 - end time - 124 msc 0 sec -2016-05-02 14:42:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:42:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:42:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:42:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:42:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:42:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:42:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:42:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:42:36 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 14:42:36 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 14:42:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:42:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:42:36 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 14:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 14:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:42:36 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 14:42:36 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 14:42:36 INFO WorkspaceExplorerServiceImpl:188 - end time - 173 msc 0 sec -2016-05-02 14:42:36 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 29 ms -2016-05-02 14:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 14:42:36 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 14:42:36 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 14:42:36 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-02 14:42:36 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 14:42:36 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 14:42:36 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 14:42:36 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 14:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 14:42:36 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 14:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 14:42:36 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 14:42:36 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 14:42:36 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 17 ms -2016-05-02 14:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 14:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 14:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 14:42:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:42:36 INFO WorkspaceExplorerServiceImpl:188 - end time - 422 msc 0 sec -2016-05-02 14:42:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:42:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:42:52 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:42:52 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-02 14:42:52 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:42:52 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:42:52 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:42:52 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:42:52 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:42:52 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-02 14:42:52 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-02 14:42:52 DEBUG SClient4WPS:300 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-02 14:42:52 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-02 14:42:52 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:42:52 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 14:42:52 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:42:52 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:42:52 DEBUG WPS2SM:316 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-02 14:42:52 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:42:52 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:42:52 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:42:52 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:42:52 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 14:42:52 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-02 14:42:52 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:42:52 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:42:52 DEBUG WPS2SM:291 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-02 14:42:52 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:42:52 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:42:52 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:42:52 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 14:42:52 DEBUG WPS2SM:111 - Machter find: true -2016-05-02 14:42:52 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-02 14:42:52 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-02 14:42:52 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-02 14:42:52 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-02 14:42:52 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-02 14:42:52 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-02 14:42:52 DEBUG WPS2SM:327 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-02 14:42:52 DEBUG WPS2SM:328 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-02 14:42:52 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:42:52 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 14:42:52 DEBUG WPS2SM:291 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-02 14:42:52 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:42:52 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:42:52 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-02 14:42:52 DEBUG WPS2SM:327 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-02 14:42:52 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-02 14:42:52 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:42:52 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-02 14:42:52 DEBUG WPS2SM:291 - Conversion to SM Type->epsilon is a Literal Input -2016-05-02 14:42:52 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:42:52 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:42:52 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 14:42:52 DEBUG WPS2SM:327 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-02 14:42:52 DEBUG WPS2SM:328 - Conversion to SM Type->Name:epsilon -2016-05-02 14:42:52 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:42:52 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 14:42:52 DEBUG WPS2SM:291 - Conversion to SM Type->min_points is a Literal Input -2016-05-02 14:42:52 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:42:52 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:42:52 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-02 14:42:52 DEBUG WPS2SM:327 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-02 14:42:52 DEBUG WPS2SM:328 - Conversion to SM Type->Name:min_points -2016-05-02 14:42:52 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:42:52 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-02 14:42:52 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-02 14:42:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:42:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:42:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:42:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:42:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:42:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:42:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:42:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:42:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:42:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:42:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:42:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:42:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:42:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:42:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:42:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:42:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:42:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:42:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:42:53 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:42:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:42:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:42:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:42:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:42:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:42:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:42:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:42:53 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:42:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:42:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:42:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:42:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:42:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:42:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:42:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:42:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:42:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:42:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:42:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:42:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:42:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:42:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:42:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:42:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:42:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:42:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:42:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:42:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:42:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:42:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:42:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:42:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:42:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:42:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:42:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:42:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:42:53 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:42:53 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:42:53 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:42:53 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:42:53 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:42:53 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:42:53 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:42:53 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:42:53 INFO WorkspaceExplorerServiceImpl:142 - end time - 221 msc 0 sec -2016-05-02 14:42:53 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:43:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:43:25 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:43:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:43:45 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:43:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:43:45 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS -2016-05-02 14:43:45 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:43:45 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:43:45 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS - KMEANS - A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - k - expected Number of Clusters - Name of the parameter: k. expected Number of Clusters - - - - 3 - - - - max_runs - max runs of the clustering procedure - Name of the parameter: max_runs. max runs of the clustering procedure - - - - 10 - - - - max_optimization_steps - max number of internal optimization steps - Name of the parameter: max_optimization_steps. max number of internal optimization steps - - - - 5 - - - - min_points - number of points which define an outlier set - Name of the parameter: min_points. number of points which define an outlier set - - - - 2 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:43:45 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:43:45 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:43:45 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-02 14:43:45 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-02 14:43:45 DEBUG SClient4WPS:300 - WPSClient->Input: - k - expected Number of Clusters - Name of the parameter: k. expected Number of Clusters - - - - 3 - - -2016-05-02 14:43:45 DEBUG SClient4WPS:300 - WPSClient->Input: - max_runs - max runs of the clustering procedure - Name of the parameter: max_runs. max runs of the clustering procedure - - - - 10 - - -2016-05-02 14:43:45 DEBUG SClient4WPS:300 - WPSClient->Input: - max_optimization_steps - max number of internal optimization steps - Name of the parameter: max_optimization_steps. max number of internal optimization steps - - - - 5 - - -2016-05-02 14:43:45 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - number of points which define an outlier set - Name of the parameter: min_points. number of points which define an outlier set - - - - 2 - - -2016-05-02 14:43:45 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:43:45 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 14:43:45 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:43:45 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:43:45 DEBUG WPS2SM:316 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-02 14:43:45 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:43:45 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:43:45 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:43:45 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:43:45 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 14:43:45 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-02 14:43:45 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:43:45 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:43:45 DEBUG WPS2SM:291 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-02 14:43:45 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:43:45 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:43:45 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:43:45 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 14:43:45 DEBUG WPS2SM:111 - Machter find: true -2016-05-02 14:43:45 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-02 14:43:45 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-02 14:43:45 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-02 14:43:45 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-02 14:43:45 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-02 14:43:45 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-02 14:43:45 DEBUG WPS2SM:327 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-02 14:43:45 DEBUG WPS2SM:328 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-02 14:43:45 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:43:45 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 14:43:45 DEBUG WPS2SM:291 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-02 14:43:45 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:43:45 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:43:45 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-02 14:43:45 DEBUG WPS2SM:327 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-02 14:43:45 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-02 14:43:45 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:43:45 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-02 14:43:45 DEBUG WPS2SM:291 - Conversion to SM Type->k is a Literal Input -2016-05-02 14:43:45 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:43:45 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:43:45 DEBUG WPS2SM:100 - Guessed default value: 3 -2016-05-02 14:43:45 DEBUG WPS2SM:327 - Conversion to SM Type->Title:expected Number of Clusters -2016-05-02 14:43:45 DEBUG WPS2SM:328 - Conversion to SM Type->Name:k -2016-05-02 14:43:45 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:43:45 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=3, value=null, name=k, description=expected Number of Clusters [Min N. of Entries:1; Max N. of Entries:1; default:3], typology=OBJECT] -2016-05-02 14:43:45 DEBUG WPS2SM:291 - Conversion to SM Type->max_runs is a Literal Input -2016-05-02 14:43:45 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:43:45 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:43:45 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 14:43:45 DEBUG WPS2SM:327 - Conversion to SM Type->Title:max runs of the clustering procedure -2016-05-02 14:43:45 DEBUG WPS2SM:328 - Conversion to SM Type->Name:max_runs -2016-05-02 14:43:45 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:43:45 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=max_runs, description=max runs of the clustering procedure [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 14:43:45 DEBUG WPS2SM:291 - Conversion to SM Type->max_optimization_steps is a Literal Input -2016-05-02 14:43:45 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:43:45 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:43:45 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-02 14:43:45 DEBUG WPS2SM:327 - Conversion to SM Type->Title:max number of internal optimization steps -2016-05-02 14:43:45 DEBUG WPS2SM:328 - Conversion to SM Type->Name:max_optimization_steps -2016-05-02 14:43:45 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:43:45 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=max_optimization_steps, description=max number of internal optimization steps [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-02 14:43:45 DEBUG WPS2SM:291 - Conversion to SM Type->min_points is a Literal Input -2016-05-02 14:43:45 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:43:45 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:43:45 DEBUG WPS2SM:100 - Guessed default value: 2 -2016-05-02 14:43:45 DEBUG WPS2SM:327 - Conversion to SM Type->Title:number of points which define an outlier set -2016-05-02 14:43:45 DEBUG WPS2SM:328 - Conversion to SM Type->Name:min_points -2016-05-02 14:43:45 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:43:45 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=2, value=null, name=min_points, description=number of points which define an outlier set [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT] -2016-05-02 14:43:45 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=3, value=null, name=k, description=expected Number of Clusters [Min N. of Entries:1; Max N. of Entries:1; default:3], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=max_runs, description=max runs of the clustering procedure [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=max_optimization_steps, description=max number of internal optimization steps [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=2, value=null, name=min_points, description=number of points which define an outlier set [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT]] -2016-05-02 14:43:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:43:45 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:43:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:43:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:43:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:43:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:43:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:43:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:43:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:43:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:43:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:43:45 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:43:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:43:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:43:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:43:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:43:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:43:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:43:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:43:45 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:43:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:43:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:43:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:43:45 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:43:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:43:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:43:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:43:45 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:43:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:43:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:43:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:43:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:43:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:43:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:43:45 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:43:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:43:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:43:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:43:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:43:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:43:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:43:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:43:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:43:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:43:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:43:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:43:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:43:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:43:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:43:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:43:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:43:45 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:43:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:43:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:43:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:43:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:43:46 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:43:46 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:43:46 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:43:46 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:43:46 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:43:46 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:43:46 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:43:46 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:43:46 INFO WorkspaceExplorerServiceImpl:142 - end time - 1271 msc 1 sec -2016-05-02 14:43:46 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:44:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:44:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:44:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:44:03 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY -2016-05-02 14:44:03 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:44:03 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:44:03 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY - CMSY - An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner. - - - IDsFile - Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - Name of the parameter: IDsFile. Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - - - - - - - StocksFile - Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - Name of the parameter: StocksFile. Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - - - - - - - SelectedStock - The stock on which the procedure has to focus e.g. HLH_M07 - Name of the parameter: SelectedStock. The stock on which the procedure has to focus e.g. HLH_M07 - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:44:03 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:44:03 DEBUG SClient4WPS:300 - WPSClient->Input: - IDsFile - Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - Name of the parameter: IDsFile. Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - - - - - -2016-05-02 14:44:03 DEBUG SClient4WPS:300 - WPSClient->Input: - StocksFile - Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - Name of the parameter: StocksFile. Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - - - - - -2016-05-02 14:44:03 DEBUG SClient4WPS:300 - WPSClient->Input: - SelectedStock - The stock on which the procedure has to focus e.g. HLH_M07 - Name of the parameter: SelectedStock. The stock on which the procedure has to focus e.g. HLH_M07 - - - - - -2016-05-02 14:44:03 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:44:03 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:44:03 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:44:03 DEBUG WPS2SM:291 - Conversion to SM Type->IDsFile is a Literal Input -2016-05-02 14:44:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:44:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:44:03 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:44:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK -2016-05-02 14:44:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:IDsFile -2016-05-02 14:44:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:44:03 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=IDsFile, description=Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 14:44:03 DEBUG WPS2SM:291 - Conversion to SM Type->StocksFile is a Literal Input -2016-05-02 14:44:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:44:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:44:03 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:44:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY -2016-05-02 14:44:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:StocksFile -2016-05-02 14:44:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:44:03 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=StocksFile, description=Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 14:44:03 DEBUG WPS2SM:291 - Conversion to SM Type->SelectedStock is a Literal Input -2016-05-02 14:44:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:44:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:44:03 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:44:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The stock on which the procedure has to focus e.g. HLH_M07 -2016-05-02 14:44:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:SelectedStock -2016-05-02 14:44:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:44:03 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=SelectedStock, description=The stock on which the procedure has to focus e.g. HLH_M07 [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 14:44:03 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=IDsFile, description=Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=StocksFile, description=Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=SelectedStock, description=The stock on which the procedure has to focus e.g. HLH_M07 [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT]] -2016-05-02 14:44:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:44:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:44:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:44:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:44:52 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:44:52 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS -2016-05-02 14:44:52 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:44:52 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:44:52 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS - GENERIC_CHARTS - An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities. - - - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - TopElementsNumber - Max number of elements, with highest values, to visualize - Name of the parameter: TopElementsNumber. Max number of elements, with highest values, to visualize - - - - 10 - - - - Attributes - The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Attributes. The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - - - - - - - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:44:52 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:44:52 DEBUG SClient4WPS:300 - WPSClient->Input: - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:44:52 DEBUG SClient4WPS:300 - WPSClient->Input: - TopElementsNumber - Max number of elements, with highest values, to visualize - Name of the parameter: TopElementsNumber. Max number of elements, with highest values, to visualize - - - - 10 - - -2016-05-02 14:44:52 DEBUG SClient4WPS:300 - WPSClient->Input: - Attributes - The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Attributes. The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - - - - - -2016-05-02 14:44:52 DEBUG SClient4WPS:300 - WPSClient->Input: - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - -2016-05-02 14:44:52 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:44:52 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:44:52 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:44:52 DEBUG WPS2SM:316 - Conversion to SM Type->InputTable is a Complex Input -2016-05-02 14:44:52 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:44:52 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:44:52 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:44:52 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:44:52 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 14:44:52 DEBUG WPS2SM:328 - Conversion to SM Type->Name:InputTable -2016-05-02 14:44:52 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:44:52 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=InputTable, description=The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:44:52 DEBUG WPS2SM:291 - Conversion to SM Type->TopElementsNumber is a Literal Input -2016-05-02 14:44:52 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:44:52 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:44:52 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 14:44:52 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Max number of elements, with highest values, to visualize -2016-05-02 14:44:52 DEBUG WPS2SM:328 - Conversion to SM Type->Name:TopElementsNumber -2016-05-02 14:44:52 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:44:52 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=TopElementsNumber, description=Max number of elements, with highest values, to visualize [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 14:44:52 DEBUG WPS2SM:291 - Conversion to SM Type->Attributes is a Literal Input -2016-05-02 14:44:52 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:44:52 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:44:52 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:44:52 DEBUG WPS2SM:110 - Machter title: The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 14:44:52 DEBUG WPS2SM:111 - Machter find: true -2016-05-02 14:44:52 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-02 14:44:52 DEBUG WPS2SM:113 - Machter start: 42 -2016-05-02 14:44:52 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-02 14:44:52 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-02 14:44:52 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-02 14:44:52 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-02 14:44:52 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] -2016-05-02 14:44:52 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Attributes -2016-05-02 14:44:52 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:44:52 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 14:44:52 DEBUG WPS2SM:291 - Conversion to SM Type->Quantities is a Literal Input -2016-05-02 14:44:52 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:44:52 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:44:52 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:44:52 DEBUG WPS2SM:110 - Machter title: The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 14:44:52 DEBUG WPS2SM:111 - Machter find: true -2016-05-02 14:44:52 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-02 14:44:52 DEBUG WPS2SM:113 - Machter start: 38 -2016-05-02 14:44:52 DEBUG WPS2SM:114 - Machter end: 99 -2016-05-02 14:44:52 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-02 14:44:52 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-02 14:44:52 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-02 14:44:52 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] -2016-05-02 14:44:52 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Quantities -2016-05-02 14:44:52 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:44:52 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 14:44:52 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=InputTable, description=The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=TopElementsNumber, description=Max number of elements, with highest values, to visualize [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST]] -2016-05-02 14:44:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:44:52 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:44:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:44:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:44:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:44:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:44:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:44:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:44:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:44:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:44:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:44:52 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:44:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:44:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:44:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:44:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:44:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:44:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:44:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:44:52 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:44:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:44:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:44:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:44:52 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:44:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:44:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:44:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:44:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:44:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:44:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:44:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:44:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:44:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:44:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:44:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:44:52 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:44:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:44:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:44:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:44:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:44:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:44:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:44:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:44:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:44:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:44:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:44:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:44:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:44:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:44:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:44:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:44:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:44:52 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:44:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:44:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:44:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:44:52 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:44:52 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:44:52 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:44:52 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:44:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:44:52 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:44:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:44:52 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:44:52 INFO WorkspaceExplorerServiceImpl:142 - end time - 222 msc 0 sec -2016-05-02 14:44:52 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:44:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:44:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:44:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:44:56 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART -2016-05-02 14:44:56 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:44:56 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:44:56 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART - GEO_CHART - An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country. - - - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - Longitude - The column containing longitude decimal values [the name of a column from InputTable] - Name of the parameter: Longitude. The column containing longitude decimal values [the name of a column from InputTable] - - - - long - - - - Latitude - The column containing latitude decimal values [the name of a column from InputTable] - Name of the parameter: Latitude. The column containing latitude decimal values [the name of a column from InputTable] - - - - lat - - - - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:44:56 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:44:56 DEBUG SClient4WPS:300 - WPSClient->Input: - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:44:56 DEBUG SClient4WPS:300 - WPSClient->Input: - Longitude - The column containing longitude decimal values [the name of a column from InputTable] - Name of the parameter: Longitude. The column containing longitude decimal values [the name of a column from InputTable] - - - - long - - -2016-05-02 14:44:56 DEBUG SClient4WPS:300 - WPSClient->Input: - Latitude - The column containing latitude decimal values [the name of a column from InputTable] - Name of the parameter: Latitude. The column containing latitude decimal values [the name of a column from InputTable] - - - - lat - - -2016-05-02 14:44:56 DEBUG SClient4WPS:300 - WPSClient->Input: - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - -2016-05-02 14:44:56 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:44:56 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:44:56 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:44:56 DEBUG WPS2SM:316 - Conversion to SM Type->InputTable is a Complex Input -2016-05-02 14:44:56 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:44:56 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:44:56 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:44:56 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:44:56 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 14:44:56 DEBUG WPS2SM:328 - Conversion to SM Type->Name:InputTable -2016-05-02 14:44:56 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:44:56 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=InputTable, description=The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:44:56 DEBUG WPS2SM:291 - Conversion to SM Type->Longitude is a Literal Input -2016-05-02 14:44:56 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:44:56 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:44:56 DEBUG WPS2SM:100 - Guessed default value: long -2016-05-02 14:44:56 DEBUG WPS2SM:129 - Machter title: The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long] -2016-05-02 14:44:56 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:44:56 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-02 14:44:56 DEBUG WPS2SM:132 - Machter start: 48 -2016-05-02 14:44:56 DEBUG WPS2SM:133 - Machter end: 84 -2016-05-02 14:44:56 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:44:56 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-02 14:44:56 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing longitude decimal values [the name of a column from InputTable] -2016-05-02 14:44:56 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Longitude -2016-05-02 14:44:56 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:44:56 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Longitude, description=The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long], typology=COLUMN] -2016-05-02 14:44:56 DEBUG WPS2SM:291 - Conversion to SM Type->Latitude is a Literal Input -2016-05-02 14:44:56 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:44:56 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:44:56 DEBUG WPS2SM:100 - Guessed default value: lat -2016-05-02 14:44:56 DEBUG WPS2SM:129 - Machter title: The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat] -2016-05-02 14:44:56 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:44:56 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-02 14:44:56 DEBUG WPS2SM:132 - Machter start: 47 -2016-05-02 14:44:56 DEBUG WPS2SM:133 - Machter end: 83 -2016-05-02 14:44:56 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:44:56 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-02 14:44:56 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing latitude decimal values [the name of a column from InputTable] -2016-05-02 14:44:56 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Latitude -2016-05-02 14:44:56 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:44:56 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Latitude, description=The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat], typology=COLUMN] -2016-05-02 14:44:56 DEBUG WPS2SM:291 - Conversion to SM Type->Quantities is a Literal Input -2016-05-02 14:44:56 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:44:56 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:44:56 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:44:56 DEBUG WPS2SM:110 - Machter title: The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 14:44:56 DEBUG WPS2SM:111 - Machter find: true -2016-05-02 14:44:56 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-02 14:44:56 DEBUG WPS2SM:113 - Machter start: 38 -2016-05-02 14:44:56 DEBUG WPS2SM:114 - Machter end: 99 -2016-05-02 14:44:56 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-02 14:44:56 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-02 14:44:56 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-02 14:44:56 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] -2016-05-02 14:44:56 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Quantities -2016-05-02 14:44:56 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:44:56 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 14:44:56 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=InputTable, description=The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=Longitude, description=The column containing longitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:long], typology=COLUMN], Parameter [name=Latitude, description=The column containing latitude decimal values [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:lat], typology=COLUMN], Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST]] -2016-05-02 14:44:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:44:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:44:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:44:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:44:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:44:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:44:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:44:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:44:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:44:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:44:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:44:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:44:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:44:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:44:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:44:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:44:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:44:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:44:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:44:56 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:44:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:44:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:44:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:44:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:44:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:44:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:44:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:44:56 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:44:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:44:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:44:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:44:56 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:44:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:44:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:44:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:44:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:44:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:44:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:44:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:44:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:44:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:44:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:44:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:44:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:44:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:44:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:44:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:44:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:44:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:44:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:44:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:44:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:44:56 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:44:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:44:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:44:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:44:56 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:44:56 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:44:56 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:44:56 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:44:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:44:56 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:44:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:44:56 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:44:56 INFO WorkspaceExplorerServiceImpl:142 - end time - 205 msc 0 sec -2016-05-02 14:44:56 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:45:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:45:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:45:03 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS -2016-05-02 14:45:03 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:45:03 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:45:03 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS - HRS - An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area. - - - ProjectingAreaTable - A Table containing projecting area information [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: ProjectingAreaTable. A Table containing projecting area information [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - OptionalCondition - optional filter for taking area rows - Name of the parameter: OptionalCondition. optional filter for taking area rows - - - - where oceanarea>0 - - - - PositiveCasesTable - A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: PositiveCasesTable. A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - NegativeCasesTable - A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: NegativeCasesTable. A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumns - Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] - Name of the parameter: FeaturesColumns. Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:45:03 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:45:03 DEBUG SClient4WPS:300 - WPSClient->Input: - ProjectingAreaTable - A Table containing projecting area information [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: ProjectingAreaTable. A Table containing projecting area information [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:45:03 DEBUG SClient4WPS:300 - WPSClient->Input: - OptionalCondition - optional filter for taking area rows - Name of the parameter: OptionalCondition. optional filter for taking area rows - - - - where oceanarea>0 - - -2016-05-02 14:45:03 DEBUG SClient4WPS:300 - WPSClient->Input: - PositiveCasesTable - A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: PositiveCasesTable. A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:45:03 DEBUG SClient4WPS:300 - WPSClient->Input: - NegativeCasesTable - A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: NegativeCasesTable. A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:45:03 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumns - Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] - Name of the parameter: FeaturesColumns. Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] - - - - - -2016-05-02 14:45:03 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:45:03 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:45:03 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:45:03 DEBUG WPS2SM:316 - Conversion to SM Type->ProjectingAreaTable is a Complex Input -2016-05-02 14:45:03 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:45:03 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:45:03 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:45:03 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:45:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A Table containing projecting area information [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 14:45:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:ProjectingAreaTable -2016-05-02 14:45:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:03 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=ProjectingAreaTable, description=A Table containing projecting area information [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:45:03 DEBUG WPS2SM:291 - Conversion to SM Type->OptionalCondition is a Literal Input -2016-05-02 14:45:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:03 DEBUG WPS2SM:100 - Guessed default value: where oceanarea>0 -2016-05-02 14:45:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:optional filter for taking area rows -2016-05-02 14:45:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OptionalCondition -2016-05-02 14:45:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:03 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=where oceanarea>0, value=null, name=OptionalCondition, description=optional filter for taking area rows [Min N. of Entries:1; Max N. of Entries:1; default:where oceanarea>0], typology=OBJECT] -2016-05-02 14:45:03 DEBUG WPS2SM:316 - Conversion to SM Type->PositiveCasesTable is a Complex Input -2016-05-02 14:45:03 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:45:03 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:45:03 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:45:03 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:45:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 14:45:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:PositiveCasesTable -2016-05-02 14:45:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:03 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=PositiveCasesTable, description=A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:45:03 DEBUG WPS2SM:316 - Conversion to SM Type->NegativeCasesTable is a Complex Input -2016-05-02 14:45:03 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:45:03 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:45:03 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:45:03 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:45:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 14:45:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:NegativeCasesTable -2016-05-02 14:45:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:03 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=NegativeCasesTable, description=A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:45:03 DEBUG WPS2SM:291 - Conversion to SM Type->FeaturesColumns is a Literal Input -2016-05-02 14:45:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:03 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:45:03 DEBUG WPS2SM:110 - Machter title: Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 14:45:03 DEBUG WPS2SM:111 - Machter find: true -2016-05-02 14:45:03 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from PositiveCasesTable separated by | -2016-05-02 14:45:03 DEBUG WPS2SM:113 - Machter start: 18 -2016-05-02 14:45:03 DEBUG WPS2SM:114 - Machter end: 87 -2016-05-02 14:45:03 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-02 14:45:03 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: PositiveCasesTable -2016-05-02 14:45:03 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-02 14:45:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] -2016-05-02 14:45:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:FeaturesColumns -2016-05-02 14:45:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:03 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=FeaturesColumns, description=Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 14:45:03 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=ProjectingAreaTable, description=A Table containing projecting area information [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], ObjectParameter [type=java.lang.String, defaultValue=where oceanarea>0, value=null, name=OptionalCondition, description=optional filter for taking area rows [Min N. of Entries:1; Max N. of Entries:1; default:where oceanarea>0], typology=OBJECT], TabularParameter [tableName= , templates=[], name=PositiveCasesTable, description=A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], TabularParameter [tableName= , templates=[], name=NegativeCasesTable, description=A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=FeaturesColumns, description=Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST]] -2016-05-02 14:45:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:45:03 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:45:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:45:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:45:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:03 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:45:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:45:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:45:03 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:45:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:45:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:45:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:45:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:45:03 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:45:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:45:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:45:03 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:45:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:45:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:45:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:45:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:45:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 193 msc 0 sec -2016-05-02 14:45:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:45:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:45:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:45:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:45:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 223 msc 0 sec -2016-05-02 14:45:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:45:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 186 msc 0 sec -2016-05-02 14:45:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:45:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:45:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:45:16 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:45:16 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:45:16 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS -2016-05-02 14:45:16 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:45:16 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:45:17 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS - QUALITY_ANALYSIS - An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model - - - PositiveCasesTable - A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: PositiveCasesTable. A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - NegativeCasesTable - A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: NegativeCasesTable. A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - PositiveCasesTableKeyColumn - Positive Cases Table Key Column [the name of a column from PositiveCasesTable] - Name of the parameter: PositiveCasesTableKeyColumn. Positive Cases Table Key Column [the name of a column from PositiveCasesTable] - - - - csquarecode - - - - NegativeCasesTableKeyColumn - Negative Cases Table Key Column [the name of a column from NegativeCasesTable] - Name of the parameter: NegativeCasesTableKeyColumn. Negative Cases Table Key Column [the name of a column from NegativeCasesTable] - - - - csquarecode - - - - DistributionTable - A probability distribution table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - Name of the parameter: DistributionTable. A probability distribution table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - DistributionTableKeyColumn - Distribution Table Key Column [the name of a column from DistributionTable] - Name of the parameter: DistributionTableKeyColumn. Distribution Table Key Column [the name of a column from DistributionTable] - - - - csquarecode - - - - DistributionTableProbabilityColumn - Distribution Table Probability Column [the name of a column from DistributionTable] - Name of the parameter: DistributionTableProbabilityColumn. Distribution Table Probability Column [the name of a column from DistributionTable] - - - - probability - - - - PositiveThreshold - Positive acceptance threshold - Name of the parameter: PositiveThreshold. Positive acceptance threshold - - - - 0.8 - - - - NegativeThreshold - Negative acceptance threshold - Name of the parameter: NegativeThreshold. Negative acceptance threshold - - - - 0.3 - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:45:17 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:45:17 DEBUG SClient4WPS:300 - WPSClient->Input: - PositiveCasesTable - A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: PositiveCasesTable. A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:45:17 DEBUG SClient4WPS:300 - WPSClient->Input: - NegativeCasesTable - A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: NegativeCasesTable. A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:45:17 DEBUG SClient4WPS:300 - WPSClient->Input: - PositiveCasesTableKeyColumn - Positive Cases Table Key Column [the name of a column from PositiveCasesTable] - Name of the parameter: PositiveCasesTableKeyColumn. Positive Cases Table Key Column [the name of a column from PositiveCasesTable] - - - - csquarecode - - -2016-05-02 14:45:17 DEBUG SClient4WPS:300 - WPSClient->Input: - NegativeCasesTableKeyColumn - Negative Cases Table Key Column [the name of a column from NegativeCasesTable] - Name of the parameter: NegativeCasesTableKeyColumn. Negative Cases Table Key Column [the name of a column from NegativeCasesTable] - - - - csquarecode - - -2016-05-02 14:45:17 DEBUG SClient4WPS:300 - WPSClient->Input: - DistributionTable - A probability distribution table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - Name of the parameter: DistributionTable. A probability distribution table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:45:17 DEBUG SClient4WPS:300 - WPSClient->Input: - DistributionTableKeyColumn - Distribution Table Key Column [the name of a column from DistributionTable] - Name of the parameter: DistributionTableKeyColumn. Distribution Table Key Column [the name of a column from DistributionTable] - - - - csquarecode - - -2016-05-02 14:45:17 DEBUG SClient4WPS:300 - WPSClient->Input: - DistributionTableProbabilityColumn - Distribution Table Probability Column [the name of a column from DistributionTable] - Name of the parameter: DistributionTableProbabilityColumn. Distribution Table Probability Column [the name of a column from DistributionTable] - - - - probability - - -2016-05-02 14:45:17 DEBUG SClient4WPS:300 - WPSClient->Input: - PositiveThreshold - Positive acceptance threshold - Name of the parameter: PositiveThreshold. Positive acceptance threshold - - - - 0.8 - - -2016-05-02 14:45:17 DEBUG SClient4WPS:300 - WPSClient->Input: - NegativeThreshold - Negative acceptance threshold - Name of the parameter: NegativeThreshold. Negative acceptance threshold - - - - 0.3 - - -2016-05-02 14:45:17 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:45:17 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:45:17 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:45:17 DEBUG WPS2SM:316 - Conversion to SM Type->PositiveCasesTable is a Complex Input -2016-05-02 14:45:17 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:45:17 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:45:17 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:45:17 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:45:17 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 14:45:17 DEBUG WPS2SM:328 - Conversion to SM Type->Name:PositiveCasesTable -2016-05-02 14:45:17 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:17 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=PositiveCasesTable, description=A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:45:17 DEBUG WPS2SM:316 - Conversion to SM Type->NegativeCasesTable is a Complex Input -2016-05-02 14:45:17 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:45:17 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:45:17 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:45:17 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:45:17 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 14:45:17 DEBUG WPS2SM:328 - Conversion to SM Type->Name:NegativeCasesTable -2016-05-02 14:45:17 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:17 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=NegativeCasesTable, description=A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:45:17 DEBUG WPS2SM:291 - Conversion to SM Type->PositiveCasesTableKeyColumn is a Literal Input -2016-05-02 14:45:17 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:17 DEBUG WPS2SM:100 - Guessed default value: csquarecode -2016-05-02 14:45:17 DEBUG WPS2SM:129 - Machter title: Positive Cases Table Key Column [the name of a column from PositiveCasesTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode] -2016-05-02 14:45:17 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:45:17 DEBUG WPS2SM:131 - Machter group: the name of a column from PositiveCasesTable -2016-05-02 14:45:17 DEBUG WPS2SM:132 - Machter start: 33 -2016-05-02 14:45:17 DEBUG WPS2SM:133 - Machter end: 77 -2016-05-02 14:45:17 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:45:17 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: PositiveCasesTable -2016-05-02 14:45:17 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Positive Cases Table Key Column [the name of a column from PositiveCasesTable] -2016-05-02 14:45:17 DEBUG WPS2SM:328 - Conversion to SM Type->Name:PositiveCasesTableKeyColumn -2016-05-02 14:45:17 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:17 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=PositiveCasesTableKeyColumn, description=Positive Cases Table Key Column [the name of a column from PositiveCasesTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN] -2016-05-02 14:45:17 DEBUG WPS2SM:291 - Conversion to SM Type->NegativeCasesTableKeyColumn is a Literal Input -2016-05-02 14:45:17 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:17 DEBUG WPS2SM:100 - Guessed default value: csquarecode -2016-05-02 14:45:17 DEBUG WPS2SM:129 - Machter title: Negative Cases Table Key Column [the name of a column from NegativeCasesTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode] -2016-05-02 14:45:17 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:45:17 DEBUG WPS2SM:131 - Machter group: the name of a column from NegativeCasesTable -2016-05-02 14:45:17 DEBUG WPS2SM:132 - Machter start: 33 -2016-05-02 14:45:17 DEBUG WPS2SM:133 - Machter end: 77 -2016-05-02 14:45:17 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:45:17 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: NegativeCasesTable -2016-05-02 14:45:17 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Negative Cases Table Key Column [the name of a column from NegativeCasesTable] -2016-05-02 14:45:17 DEBUG WPS2SM:328 - Conversion to SM Type->Name:NegativeCasesTableKeyColumn -2016-05-02 14:45:17 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:17 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=NegativeCasesTableKeyColumn, description=Negative Cases Table Key Column [the name of a column from NegativeCasesTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN] -2016-05-02 14:45:17 DEBUG WPS2SM:316 - Conversion to SM Type->DistributionTable is a Complex Input -2016-05-02 14:45:17 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:45:17 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:45:17 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:45:17 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:45:17 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A probability distribution table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] -2016-05-02 14:45:17 DEBUG WPS2SM:328 - Conversion to SM Type->Name:DistributionTable -2016-05-02 14:45:17 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:17 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=DistributionTable, description=A probability distribution table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:45:17 DEBUG WPS2SM:291 - Conversion to SM Type->DistributionTableKeyColumn is a Literal Input -2016-05-02 14:45:17 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:17 DEBUG WPS2SM:100 - Guessed default value: csquarecode -2016-05-02 14:45:17 DEBUG WPS2SM:129 - Machter title: Distribution Table Key Column [the name of a column from DistributionTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode] -2016-05-02 14:45:17 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:45:17 DEBUG WPS2SM:131 - Machter group: the name of a column from DistributionTable -2016-05-02 14:45:17 DEBUG WPS2SM:132 - Machter start: 31 -2016-05-02 14:45:17 DEBUG WPS2SM:133 - Machter end: 74 -2016-05-02 14:45:17 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:45:17 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: DistributionTable -2016-05-02 14:45:17 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Distribution Table Key Column [the name of a column from DistributionTable] -2016-05-02 14:45:17 DEBUG WPS2SM:328 - Conversion to SM Type->Name:DistributionTableKeyColumn -2016-05-02 14:45:17 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:17 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=DistributionTableKeyColumn, description=Distribution Table Key Column [the name of a column from DistributionTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN] -2016-05-02 14:45:17 DEBUG WPS2SM:291 - Conversion to SM Type->DistributionTableProbabilityColumn is a Literal Input -2016-05-02 14:45:17 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:17 DEBUG WPS2SM:100 - Guessed default value: probability -2016-05-02 14:45:17 DEBUG WPS2SM:129 - Machter title: Distribution Table Probability Column [the name of a column from DistributionTable] [Min N. of Entries:1; Max N. of Entries:1; default:probability] -2016-05-02 14:45:17 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:45:17 DEBUG WPS2SM:131 - Machter group: the name of a column from DistributionTable -2016-05-02 14:45:17 DEBUG WPS2SM:132 - Machter start: 39 -2016-05-02 14:45:17 DEBUG WPS2SM:133 - Machter end: 82 -2016-05-02 14:45:17 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:45:17 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: DistributionTable -2016-05-02 14:45:17 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Distribution Table Probability Column [the name of a column from DistributionTable] -2016-05-02 14:45:17 DEBUG WPS2SM:328 - Conversion to SM Type->Name:DistributionTableProbabilityColumn -2016-05-02 14:45:17 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:17 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=DistributionTableProbabilityColumn, description=Distribution Table Probability Column [the name of a column from DistributionTable] [Min N. of Entries:1; Max N. of Entries:1; default:probability], typology=COLUMN] -2016-05-02 14:45:17 DEBUG WPS2SM:291 - Conversion to SM Type->PositiveThreshold is a Literal Input -2016-05-02 14:45:17 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:17 DEBUG WPS2SM:100 - Guessed default value: 0.8 -2016-05-02 14:45:17 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Positive acceptance threshold -2016-05-02 14:45:17 DEBUG WPS2SM:328 - Conversion to SM Type->Name:PositiveThreshold -2016-05-02 14:45:17 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:17 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=0.8, value=null, name=PositiveThreshold, description=Positive acceptance threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.8], typology=OBJECT] -2016-05-02 14:45:17 DEBUG WPS2SM:291 - Conversion to SM Type->NegativeThreshold is a Literal Input -2016-05-02 14:45:17 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:17 DEBUG WPS2SM:100 - Guessed default value: 0.3 -2016-05-02 14:45:17 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Negative acceptance threshold -2016-05-02 14:45:17 DEBUG WPS2SM:328 - Conversion to SM Type->Name:NegativeThreshold -2016-05-02 14:45:17 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:17 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=0.3, value=null, name=NegativeThreshold, description=Negative acceptance threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.3], typology=OBJECT] -2016-05-02 14:45:17 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=PositiveCasesTable, description=A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], TabularParameter [tableName= , templates=[], name=NegativeCasesTable, description=A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=PositiveCasesTableKeyColumn, description=Positive Cases Table Key Column [the name of a column from PositiveCasesTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN], Parameter [name=NegativeCasesTableKeyColumn, description=Negative Cases Table Key Column [the name of a column from NegativeCasesTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN], TabularParameter [tableName= , templates=[], name=DistributionTable, description=A probability distribution table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=DistributionTableKeyColumn, description=Distribution Table Key Column [the name of a column from DistributionTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN], Parameter [name=DistributionTableProbabilityColumn, description=Distribution Table Probability Column [the name of a column from DistributionTable] [Min N. of Entries:1; Max N. of Entries:1; default:probability], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=0.8, value=null, name=PositiveThreshold, description=Positive acceptance threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.8], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=0.3, value=null, name=NegativeThreshold, description=Negative acceptance threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.3], typology=OBJECT]] -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:45:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:45:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:45:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:45:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:45:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 196 msc 0 sec -2016-05-02 14:45:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:45:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:45:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:45:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:45:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 199 msc 0 sec -2016-05-02 14:45:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:45:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:45:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 172 msc 0 sec -2016-05-02 14:45:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:45:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:45:21 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:45:21 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS -2016-05-02 14:45:21 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:45:21 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:45:21 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS - DISCREPANCY_ANALYSIS - An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic. - - - FirstTable - First Table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - Name of the parameter: FirstTable. First Table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - SecondTable - Second Table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - Name of the parameter: SecondTable. Second Table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FirstTableCsquareColumn - the csquares column name in the first table [the name of a column from FirstTable] - Name of the parameter: FirstTableCsquareColumn. the csquares column name in the first table [the name of a column from FirstTable] - - - - csquarecode - - - - SecondTableCsquareColumn - the csquares column name in the second table [the name of a column from SecondTable] - Name of the parameter: SecondTableCsquareColumn. the csquares column name in the second table [the name of a column from SecondTable] - - - - csquarecode - - - - FirstTableProbabilityColumn - the probability column in the first table [the name of a column from FirstTable] - Name of the parameter: FirstTableProbabilityColumn. the probability column in the first table [the name of a column from FirstTable] - - - - probability - - - - SecondTableProbabilityColumn - the probability column in the second table [the name of a column from SecondTable] - Name of the parameter: SecondTableProbabilityColumn. the probability column in the second table [the name of a column from SecondTable] - - - - probability - - - - ComparisonThreshold - the comparison threshold - Name of the parameter: ComparisonThreshold. the comparison threshold - - - - 0.1 - - - - MaxSamples - the comparison threshold - Name of the parameter: MaxSamples. the comparison threshold - - - - 10000 - - - - KThreshold - Threshold for K-Statistic: over this threshold values will be considered 1 for agreement calculation. Default is 0.5 - Name of the parameter: KThreshold. Threshold for K-Statistic: over this threshold values will be considered 1 for agreement calculation. Default is 0.5 - - - - 0.5 - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:45:21 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:45:21 DEBUG SClient4WPS:300 - WPSClient->Input: - FirstTable - First Table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - Name of the parameter: FirstTable. First Table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:45:21 DEBUG SClient4WPS:300 - WPSClient->Input: - SecondTable - Second Table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - Name of the parameter: SecondTable. Second Table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:45:21 DEBUG SClient4WPS:300 - WPSClient->Input: - FirstTableCsquareColumn - the csquares column name in the first table [the name of a column from FirstTable] - Name of the parameter: FirstTableCsquareColumn. the csquares column name in the first table [the name of a column from FirstTable] - - - - csquarecode - - -2016-05-02 14:45:21 DEBUG SClient4WPS:300 - WPSClient->Input: - SecondTableCsquareColumn - the csquares column name in the second table [the name of a column from SecondTable] - Name of the parameter: SecondTableCsquareColumn. the csquares column name in the second table [the name of a column from SecondTable] - - - - csquarecode - - -2016-05-02 14:45:21 DEBUG SClient4WPS:300 - WPSClient->Input: - FirstTableProbabilityColumn - the probability column in the first table [the name of a column from FirstTable] - Name of the parameter: FirstTableProbabilityColumn. the probability column in the first table [the name of a column from FirstTable] - - - - probability - - -2016-05-02 14:45:21 DEBUG SClient4WPS:300 - WPSClient->Input: - SecondTableProbabilityColumn - the probability column in the second table [the name of a column from SecondTable] - Name of the parameter: SecondTableProbabilityColumn. the probability column in the second table [the name of a column from SecondTable] - - - - probability - - -2016-05-02 14:45:21 DEBUG SClient4WPS:300 - WPSClient->Input: - ComparisonThreshold - the comparison threshold - Name of the parameter: ComparisonThreshold. the comparison threshold - - - - 0.1 - - -2016-05-02 14:45:21 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxSamples - the comparison threshold - Name of the parameter: MaxSamples. the comparison threshold - - - - 10000 - - -2016-05-02 14:45:21 DEBUG SClient4WPS:300 - WPSClient->Input: - KThreshold - Threshold for K-Statistic: over this threshold values will be considered 1 for agreement calculation. Default is 0.5 - Name of the parameter: KThreshold. Threshold for K-Statistic: over this threshold values will be considered 1 for agreement calculation. Default is 0.5 - - - - 0.5 - - -2016-05-02 14:45:21 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:45:21 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:45:21 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:45:21 DEBUG WPS2SM:316 - Conversion to SM Type->FirstTable is a Complex Input -2016-05-02 14:45:21 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:45:21 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:45:21 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:45:21 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:45:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:First Table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] -2016-05-02 14:45:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:FirstTable -2016-05-02 14:45:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:21 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=FirstTable, description=First Table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:45:21 DEBUG WPS2SM:316 - Conversion to SM Type->SecondTable is a Complex Input -2016-05-02 14:45:21 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:45:21 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:45:21 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:45:21 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:45:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Second Table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] -2016-05-02 14:45:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:SecondTable -2016-05-02 14:45:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:21 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=SecondTable, description=Second Table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:45:21 DEBUG WPS2SM:291 - Conversion to SM Type->FirstTableCsquareColumn is a Literal Input -2016-05-02 14:45:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:21 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:21 DEBUG WPS2SM:100 - Guessed default value: csquarecode -2016-05-02 14:45:21 DEBUG WPS2SM:129 - Machter title: the csquares column name in the first table [the name of a column from FirstTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode] -2016-05-02 14:45:21 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:45:21 DEBUG WPS2SM:131 - Machter group: the name of a column from FirstTable -2016-05-02 14:45:21 DEBUG WPS2SM:132 - Machter start: 45 -2016-05-02 14:45:21 DEBUG WPS2SM:133 - Machter end: 81 -2016-05-02 14:45:21 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:45:21 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: FirstTable -2016-05-02 14:45:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:the csquares column name in the first table [the name of a column from FirstTable] -2016-05-02 14:45:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:FirstTableCsquareColumn -2016-05-02 14:45:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:21 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=FirstTableCsquareColumn, description=the csquares column name in the first table [the name of a column from FirstTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN] -2016-05-02 14:45:21 DEBUG WPS2SM:291 - Conversion to SM Type->SecondTableCsquareColumn is a Literal Input -2016-05-02 14:45:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:21 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:21 DEBUG WPS2SM:100 - Guessed default value: csquarecode -2016-05-02 14:45:21 DEBUG WPS2SM:129 - Machter title: the csquares column name in the second table [the name of a column from SecondTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode] -2016-05-02 14:45:21 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:45:21 DEBUG WPS2SM:131 - Machter group: the name of a column from SecondTable -2016-05-02 14:45:21 DEBUG WPS2SM:132 - Machter start: 46 -2016-05-02 14:45:21 DEBUG WPS2SM:133 - Machter end: 83 -2016-05-02 14:45:21 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:45:21 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: SecondTable -2016-05-02 14:45:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:the csquares column name in the second table [the name of a column from SecondTable] -2016-05-02 14:45:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:SecondTableCsquareColumn -2016-05-02 14:45:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:21 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=SecondTableCsquareColumn, description=the csquares column name in the second table [the name of a column from SecondTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN] -2016-05-02 14:45:21 DEBUG WPS2SM:291 - Conversion to SM Type->FirstTableProbabilityColumn is a Literal Input -2016-05-02 14:45:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:21 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:21 DEBUG WPS2SM:100 - Guessed default value: probability -2016-05-02 14:45:21 DEBUG WPS2SM:129 - Machter title: the probability column in the first table [the name of a column from FirstTable] [Min N. of Entries:1; Max N. of Entries:1; default:probability] -2016-05-02 14:45:21 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:45:21 DEBUG WPS2SM:131 - Machter group: the name of a column from FirstTable -2016-05-02 14:45:21 DEBUG WPS2SM:132 - Machter start: 43 -2016-05-02 14:45:21 DEBUG WPS2SM:133 - Machter end: 79 -2016-05-02 14:45:21 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:45:21 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: FirstTable -2016-05-02 14:45:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:the probability column in the first table [the name of a column from FirstTable] -2016-05-02 14:45:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:FirstTableProbabilityColumn -2016-05-02 14:45:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:21 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=FirstTableProbabilityColumn, description=the probability column in the first table [the name of a column from FirstTable] [Min N. of Entries:1; Max N. of Entries:1; default:probability], typology=COLUMN] -2016-05-02 14:45:21 DEBUG WPS2SM:291 - Conversion to SM Type->SecondTableProbabilityColumn is a Literal Input -2016-05-02 14:45:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:21 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:21 DEBUG WPS2SM:100 - Guessed default value: probability -2016-05-02 14:45:21 DEBUG WPS2SM:129 - Machter title: the probability column in the second table [the name of a column from SecondTable] [Min N. of Entries:1; Max N. of Entries:1; default:probability] -2016-05-02 14:45:21 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:45:21 DEBUG WPS2SM:131 - Machter group: the name of a column from SecondTable -2016-05-02 14:45:21 DEBUG WPS2SM:132 - Machter start: 44 -2016-05-02 14:45:21 DEBUG WPS2SM:133 - Machter end: 81 -2016-05-02 14:45:21 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:45:21 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: SecondTable -2016-05-02 14:45:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:the probability column in the second table [the name of a column from SecondTable] -2016-05-02 14:45:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:SecondTableProbabilityColumn -2016-05-02 14:45:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:21 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=SecondTableProbabilityColumn, description=the probability column in the second table [the name of a column from SecondTable] [Min N. of Entries:1; Max N. of Entries:1; default:probability], typology=COLUMN] -2016-05-02 14:45:21 DEBUG WPS2SM:291 - Conversion to SM Type->ComparisonThreshold is a Literal Input -2016-05-02 14:45:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:21 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:45:21 DEBUG WPS2SM:100 - Guessed default value: 0.1 -2016-05-02 14:45:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:the comparison threshold -2016-05-02 14:45:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:ComparisonThreshold -2016-05-02 14:45:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:21 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.1, value=null, name=ComparisonThreshold, description=the comparison threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.1], typology=OBJECT] -2016-05-02 14:45:21 DEBUG WPS2SM:291 - Conversion to SM Type->MaxSamples is a Literal Input -2016-05-02 14:45:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:21 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:21 DEBUG WPS2SM:100 - Guessed default value: 10000 -2016-05-02 14:45:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:the comparison threshold -2016-05-02 14:45:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxSamples -2016-05-02 14:45:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:21 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10000, value=null, name=MaxSamples, description=the comparison threshold [Min N. of Entries:1; Max N. of Entries:1; default:10000], typology=OBJECT] -2016-05-02 14:45:21 DEBUG WPS2SM:291 - Conversion to SM Type->KThreshold is a Literal Input -2016-05-02 14:45:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:21 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:45:21 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-02 14:45:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold for K-Statistic: over this threshold values will be considered 1 for agreement calculation. Default is 0.5 -2016-05-02 14:45:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:KThreshold -2016-05-02 14:45:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:21 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=KThreshold, description=Threshold for K-Statistic: over this threshold values will be considered 1 for agreement calculation. Default is 0.5 [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-02 14:45:21 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=FirstTable, description=First Table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], TabularParameter [tableName= , templates=[], name=SecondTable, description=Second Table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=FirstTableCsquareColumn, description=the csquares column name in the first table [the name of a column from FirstTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN], Parameter [name=SecondTableCsquareColumn, description=the csquares column name in the second table [the name of a column from SecondTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN], Parameter [name=FirstTableProbabilityColumn, description=the probability column in the first table [the name of a column from FirstTable] [Min N. of Entries:1; Max N. of Entries:1; default:probability], typology=COLUMN], Parameter [name=SecondTableProbabilityColumn, description=the probability column in the second table [the name of a column from SecondTable] [Min N. of Entries:1; Max N. of Entries:1; default:probability], typology=COLUMN], ObjectParameter [type=java.lang.Double, defaultValue=0.1, value=null, name=ComparisonThreshold, description=the comparison threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.1], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10000, value=null, name=MaxSamples, description=the comparison threshold [Min N. of Entries:1; Max N. of Entries:1; default:10000], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=KThreshold, description=Threshold for K-Statistic: over this threshold values will be considered 1 for agreement calculation. Default is 0.5 [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT]] -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:21 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:45:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:45:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:45:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:45:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:45:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:45:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:45:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:45:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:45:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:21 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:45:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:45:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:45:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:21 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:45:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:45:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:45:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:22 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:45:22 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:45:22 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:45:22 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:45:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:22 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:45:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:22 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:45:22 INFO WorkspaceExplorerServiceImpl:142 - end time - 205 msc 0 sec -2016-05-02 14:45:22 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:45:22 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:45:22 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:45:22 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:45:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:22 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:45:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:22 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:45:22 INFO WorkspaceExplorerServiceImpl:142 - end time - 199 msc 0 sec -2016-05-02 14:45:22 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:45:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:45:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:45:27 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:45:27 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA -2016-05-02 14:45:27 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:45:27 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:45:27 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA - ICCAT_VPA - An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr. - - - StartYear - First year of the dataset temporal extent - Name of the parameter: StartYear. First year of the dataset temporal extent - - - - 1950 - - - - EndYear - Last year of the dataset temporal extent - Name of the parameter: EndYear. Last year of the dataset temporal extent - - - - 2013 - - - - CAAFile - Catch at Age Matrix (Number of Fish caught by year and for each age) - Name of the parameter: CAAFile. Catch at Age Matrix (Number of Fish caught by year and for each age) - - - - text/xml - - - - - text/xml - - - application/d4science - - - - - - PCAAFile - Partial Catch at Age Matrix (Number of Fish caught by gear and year and for each age) - Name of the parameter: PCAAFile. Partial Catch at Age Matrix (Number of Fish caught by gear and year and for each age) - - - - text/xml - - - - - text/xml - - - application/d4science - - - - - - CPUEFile - Table of Catch Per Unit of Effort used in the stock assessment - Name of the parameter: CPUEFile. Table of Catch Per Unit of Effort used in the stock assessment - - - - text/xml - - - - - text/xml - - - application/d4science - - - - - - PwaaFile - Partial weight at age (Weight of Fish caught by gear and year and for each age) - Name of the parameter: PwaaFile. Partial weight at age (Weight of Fish caught by gear and year and for each age) - - - - text/xml - - - - - text/xml - - - application/d4science - - - - - - waaFile - Fecundity at age (Fecundity of Fish caught by year and for each age) - Name of the parameter: waaFile. Fecundity at age (Fecundity of Fish caught by year and for each age) - - - - text/xml - - - - - text/xml - - - application/d4science - - - - - - shortComment - Free text for users to describe the current simulation - Name of the parameter: shortComment. Free text for users to describe the current simulation - - - - - - - - nCPUE - Number of Catch Per Unit of Effort Time series to use - Name of the parameter: nCPUE. Number of Catch Per Unit of Effort Time series to use - - - - 7 - - - - CPUE_cut - Identifier of the Catch Per Unit of Effort Time Serie to be shrunk - Name of the parameter: CPUE_cut. Identifier of the Catch Per Unit of Effort Time Serie to be shrunk - - - - 1 - - - - n_remove_year - Number of the (last) years to be removed - Name of the parameter: n_remove_year. Number of the (last) years to be removed - - - - 1 - - - - age_plus_group - Maximal age class of catches to be taken into account - Name of the parameter: age_plus_group. Maximal age class of catches to be taken into account - - - - 10 - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:45:27 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:45:27 DEBUG SClient4WPS:300 - WPSClient->Input: - StartYear - First year of the dataset temporal extent - Name of the parameter: StartYear. First year of the dataset temporal extent - - - - 1950 - - -2016-05-02 14:45:27 DEBUG SClient4WPS:300 - WPSClient->Input: - EndYear - Last year of the dataset temporal extent - Name of the parameter: EndYear. Last year of the dataset temporal extent - - - - 2013 - - -2016-05-02 14:45:27 DEBUG SClient4WPS:300 - WPSClient->Input: - CAAFile - Catch at Age Matrix (Number of Fish caught by year and for each age) - Name of the parameter: CAAFile. Catch at Age Matrix (Number of Fish caught by year and for each age) - - - - text/xml - - - - - text/xml - - - application/d4science - - - - -2016-05-02 14:45:27 DEBUG SClient4WPS:300 - WPSClient->Input: - PCAAFile - Partial Catch at Age Matrix (Number of Fish caught by gear and year and for each age) - Name of the parameter: PCAAFile. Partial Catch at Age Matrix (Number of Fish caught by gear and year and for each age) - - - - text/xml - - - - - text/xml - - - application/d4science - - - - -2016-05-02 14:45:27 DEBUG SClient4WPS:300 - WPSClient->Input: - CPUEFile - Table of Catch Per Unit of Effort used in the stock assessment - Name of the parameter: CPUEFile. Table of Catch Per Unit of Effort used in the stock assessment - - - - text/xml - - - - - text/xml - - - application/d4science - - - - -2016-05-02 14:45:27 DEBUG SClient4WPS:300 - WPSClient->Input: - PwaaFile - Partial weight at age (Weight of Fish caught by gear and year and for each age) - Name of the parameter: PwaaFile. Partial weight at age (Weight of Fish caught by gear and year and for each age) - - - - text/xml - - - - - text/xml - - - application/d4science - - - - -2016-05-02 14:45:27 DEBUG SClient4WPS:300 - WPSClient->Input: - waaFile - Fecundity at age (Fecundity of Fish caught by year and for each age) - Name of the parameter: waaFile. Fecundity at age (Fecundity of Fish caught by year and for each age) - - - - text/xml - - - - - text/xml - - - application/d4science - - - - -2016-05-02 14:45:27 DEBUG SClient4WPS:300 - WPSClient->Input: - shortComment - Free text for users to describe the current simulation - Name of the parameter: shortComment. Free text for users to describe the current simulation - - - - - - -2016-05-02 14:45:27 DEBUG SClient4WPS:300 - WPSClient->Input: - nCPUE - Number of Catch Per Unit of Effort Time series to use - Name of the parameter: nCPUE. Number of Catch Per Unit of Effort Time series to use - - - - 7 - - -2016-05-02 14:45:27 DEBUG SClient4WPS:300 - WPSClient->Input: - CPUE_cut - Identifier of the Catch Per Unit of Effort Time Serie to be shrunk - Name of the parameter: CPUE_cut. Identifier of the Catch Per Unit of Effort Time Serie to be shrunk - - - - 1 - - -2016-05-02 14:45:27 DEBUG SClient4WPS:300 - WPSClient->Input: - n_remove_year - Number of the (last) years to be removed - Name of the parameter: n_remove_year. Number of the (last) years to be removed - - - - 1 - - -2016-05-02 14:45:27 DEBUG SClient4WPS:300 - WPSClient->Input: - age_plus_group - Maximal age class of catches to be taken into account - Name of the parameter: age_plus_group. Maximal age class of catches to be taken into account - - - - 10 - - -2016-05-02 14:45:27 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:45:27 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:45:27 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:45:27 DEBUG WPS2SM:291 - Conversion to SM Type->StartYear is a Literal Input -2016-05-02 14:45:27 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:27 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:27 DEBUG WPS2SM:100 - Guessed default value: 1950 -2016-05-02 14:45:27 DEBUG WPS2SM:327 - Conversion to SM Type->Title:First year of the dataset temporal extent -2016-05-02 14:45:27 DEBUG WPS2SM:328 - Conversion to SM Type->Name:StartYear -2016-05-02 14:45:27 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:27 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1950, value=null, name=StartYear, description=First year of the dataset temporal extent [Min N. of Entries:1; Max N. of Entries:1; default:1950], typology=OBJECT] -2016-05-02 14:45:27 DEBUG WPS2SM:291 - Conversion to SM Type->EndYear is a Literal Input -2016-05-02 14:45:27 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:27 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:27 DEBUG WPS2SM:100 - Guessed default value: 2013 -2016-05-02 14:45:27 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Last year of the dataset temporal extent -2016-05-02 14:45:27 DEBUG WPS2SM:328 - Conversion to SM Type->Name:EndYear -2016-05-02 14:45:27 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:27 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=2013, value=null, name=EndYear, description=Last year of the dataset temporal extent [Min N. of Entries:1; Max N. of Entries:1; default:2013], typology=OBJECT] -2016-05-02 14:45:27 DEBUG WPS2SM:316 - Conversion to SM Type->CAAFile is a Complex Input -2016-05-02 14:45:27 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:45:27 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:45:27 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:45:27 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:45:27 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Catch at Age Matrix (Number of Fish caught by year and for each age) -2016-05-02 14:45:27 DEBUG WPS2SM:328 - Conversion to SM Type->Name:CAAFile -2016-05-02 14:45:27 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:27 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=CAAFile, description=Catch at Age Matrix (Number of Fish caught by year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 14:45:27 DEBUG WPS2SM:316 - Conversion to SM Type->PCAAFile is a Complex Input -2016-05-02 14:45:27 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:45:27 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:45:27 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:45:27 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:45:27 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Partial Catch at Age Matrix (Number of Fish caught by gear and year and for each age) -2016-05-02 14:45:27 DEBUG WPS2SM:328 - Conversion to SM Type->Name:PCAAFile -2016-05-02 14:45:27 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:27 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=PCAAFile, description=Partial Catch at Age Matrix (Number of Fish caught by gear and year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 14:45:27 DEBUG WPS2SM:316 - Conversion to SM Type->CPUEFile is a Complex Input -2016-05-02 14:45:27 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:45:27 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:45:27 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:45:27 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:45:27 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Table of Catch Per Unit of Effort used in the stock assessment -2016-05-02 14:45:27 DEBUG WPS2SM:328 - Conversion to SM Type->Name:CPUEFile -2016-05-02 14:45:27 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:27 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=CPUEFile, description=Table of Catch Per Unit of Effort used in the stock assessment [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 14:45:27 DEBUG WPS2SM:316 - Conversion to SM Type->PwaaFile is a Complex Input -2016-05-02 14:45:27 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:45:27 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:45:27 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:45:27 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:45:27 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Partial weight at age (Weight of Fish caught by gear and year and for each age) -2016-05-02 14:45:27 DEBUG WPS2SM:328 - Conversion to SM Type->Name:PwaaFile -2016-05-02 14:45:27 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:27 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=PwaaFile, description=Partial weight at age (Weight of Fish caught by gear and year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 14:45:27 DEBUG WPS2SM:316 - Conversion to SM Type->waaFile is a Complex Input -2016-05-02 14:45:27 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:45:27 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:45:27 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:45:27 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:45:27 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Fecundity at age (Fecundity of Fish caught by year and for each age) -2016-05-02 14:45:27 DEBUG WPS2SM:328 - Conversion to SM Type->Name:waaFile -2016-05-02 14:45:27 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:27 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=waaFile, description=Fecundity at age (Fecundity of Fish caught by year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 14:45:27 DEBUG WPS2SM:291 - Conversion to SM Type->shortComment is a Literal Input -2016-05-02 14:45:27 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:27 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:27 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:45:27 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Free text for users to describe the current simulation -2016-05-02 14:45:27 DEBUG WPS2SM:328 - Conversion to SM Type->Name:shortComment -2016-05-02 14:45:27 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:27 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=shortComment, description=Free text for users to describe the current simulation [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 14:45:27 DEBUG WPS2SM:291 - Conversion to SM Type->nCPUE is a Literal Input -2016-05-02 14:45:27 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:27 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:27 DEBUG WPS2SM:100 - Guessed default value: 7 -2016-05-02 14:45:27 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Number of Catch Per Unit of Effort Time series to use -2016-05-02 14:45:27 DEBUG WPS2SM:328 - Conversion to SM Type->Name:nCPUE -2016-05-02 14:45:27 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:27 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=7, value=null, name=nCPUE, description=Number of Catch Per Unit of Effort Time series to use [Min N. of Entries:1; Max N. of Entries:1; default:7], typology=OBJECT] -2016-05-02 14:45:27 DEBUG WPS2SM:291 - Conversion to SM Type->CPUE_cut is a Literal Input -2016-05-02 14:45:27 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:27 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:27 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-02 14:45:27 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Identifier of the Catch Per Unit of Effort Time Serie to be shrunk -2016-05-02 14:45:27 DEBUG WPS2SM:328 - Conversion to SM Type->Name:CPUE_cut -2016-05-02 14:45:27 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:27 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=CPUE_cut, description=Identifier of the Catch Per Unit of Effort Time Serie to be shrunk [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-02 14:45:27 DEBUG WPS2SM:291 - Conversion to SM Type->n_remove_year is a Literal Input -2016-05-02 14:45:27 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:27 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:27 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-02 14:45:27 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Number of the (last) years to be removed -2016-05-02 14:45:27 DEBUG WPS2SM:328 - Conversion to SM Type->Name:n_remove_year -2016-05-02 14:45:27 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:27 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=n_remove_year, description=Number of the (last) years to be removed [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-02 14:45:27 DEBUG WPS2SM:291 - Conversion to SM Type->age_plus_group is a Literal Input -2016-05-02 14:45:27 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:27 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:27 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 14:45:27 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Maximal age class of catches to be taken into account -2016-05-02 14:45:27 DEBUG WPS2SM:328 - Conversion to SM Type->Name:age_plus_group -2016-05-02 14:45:27 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:27 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=age_plus_group, description=Maximal age class of catches to be taken into account [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 14:45:27 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.Integer, defaultValue=1950, value=null, name=StartYear, description=First year of the dataset temporal extent [Min N. of Entries:1; Max N. of Entries:1; default:1950], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=2013, value=null, name=EndYear, description=Last year of the dataset temporal extent [Min N. of Entries:1; Max N. of Entries:1; default:2013], typology=OBJECT], ListParameter [type=java.lang.String, value=null, separator=|, name=CAAFile, description=Catch at Age Matrix (Number of Fish caught by year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=PCAAFile, description=Partial Catch at Age Matrix (Number of Fish caught by gear and year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=CPUEFile, description=Table of Catch Per Unit of Effort used in the stock assessment [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=PwaaFile, description=Partial weight at age (Weight of Fish caught by gear and year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=waaFile, description=Fecundity at age (Fecundity of Fish caught by year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=shortComment, description=Free text for users to describe the current simulation [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=7, value=null, name=nCPUE, description=Number of Catch Per Unit of Effort Time series to use [Min N. of Entries:1; Max N. of Entries:1; default:7], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=CPUE_cut, description=Identifier of the Catch Per Unit of Effort Time Serie to be shrunk [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=n_remove_year, description=Number of the (last) years to be removed [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=age_plus_group, description=Maximal age class of catches to be taken into account [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT]] -2016-05-02 14:45:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:45:40 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:45:40 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:45:40 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM -2016-05-02 14:45:40 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:45:40 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:45:40 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM - BIONYM - An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication. - - - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - - - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - - - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - - - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - - - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - - - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - - - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - - - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - - - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - - - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - - - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - - - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - - - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - - - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - - - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - - - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - - - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - - - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - - - - - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:45:40 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - RawTaxaNamesTable - Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: RawTaxaNamesTable. Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - RawNamesColumn - The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - Name of the parameter: RawNamesColumn. The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] - - - - rawnames - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableLabel - Name of the table which will contain the matches - Name of the parameter: OutputTableLabel. Name of the table which will contain the matches - - - - bionout - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - -2016-05-02 14:45:40 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - -2016-05-02 14:45:40 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:45:40 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 14:45:40 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:45:40 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:45:40 DEBUG WPS2SM:316 - Conversion to SM Type->RawTaxaNamesTable is a Complex Input -2016-05-02 14:45:40 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:45:40 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:45:40 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:45:40 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:RawTaxaNamesTable -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=RawTaxaNamesTable, description=Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->RawNamesColumn is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: rawnames -2016-05-02 14:45:40 DEBUG WPS2SM:129 - Machter title: The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames] -2016-05-02 14:45:40 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:45:40 DEBUG WPS2SM:131 - Machter group: the name of a column from RawTaxaNamesTable -2016-05-02 14:45:40 DEBUG WPS2SM:132 - Machter start: 80 -2016-05-02 14:45:40 DEBUG WPS2SM:133 - Machter end: 123 -2016-05-02 14:45:40 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:45:40 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: RawTaxaNamesTable -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:RawNamesColumn -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: bionout -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Name of the table which will contain the matches -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OutputTableLabel -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-02 14:45:40 DEBUG WPS2SM:302 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The reference dataset to use -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-02 14:45:40 DEBUG WPS2SM:302 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Parser_Name -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-02 14:45:40 DEBUG WPS2SM:302 - ValueType[]:[true, false] -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-02 14:45:40 DEBUG WPS2SM:302 - ValueType[]:[true, false] -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-02 14:45:40 DEBUG WPS2SM:302 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-02 14:45:40 DEBUG WPS2SM:302 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Choose a Matcher -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Matcher_1 -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Threshold_1 -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxResults_1 -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-02 14:45:40 DEBUG WPS2SM:302 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Choose a Matcher -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Matcher_2 -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Threshold_2 -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxResults_2 -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-02 14:45:40 DEBUG WPS2SM:302 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Choose a Matcher -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Matcher_3 -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Threshold_3 -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxResults_3 -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-02 14:45:40 DEBUG WPS2SM:302 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Choose a Matcher -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Matcher_4 -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Threshold_4 -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxResults_4 -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-02 14:45:40 DEBUG WPS2SM:302 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Matcher_5 -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Threshold_5 -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-02 14:45:40 DEBUG WPS2SM:291 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-02 14:45:40 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:40 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:40 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 14:45:40 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-02 14:45:40 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxResults_5 -2016-05-02 14:45:40 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:40 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 14:45:40 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=RawTaxaNamesTable, description=Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-02 14:45:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:45:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:45:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:45:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:40 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:45:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:45:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:40 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:45:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:45:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:45:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:45:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:40 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:45:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:45:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:45:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:45:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:45:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:45:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:45:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:45:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:45:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:45:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:45:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:45:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:45:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:45:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:45:40 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:45:40 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:45:40 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:45:40 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:45:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:40 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:45:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:45:40 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:45:40 INFO WorkspaceExplorerServiceImpl:142 - end time - 159 msc 0 sec -2016-05-02 14:45:40 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:45:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:45:46 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:45:46 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:45:46 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL -2016-05-02 14:45:46 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:45:46 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:45:46 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL - BIONYM_LOCAL - A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication. - - - SpeciesAuthorName - The scientific name of the species, possibly with authorship - Name of the parameter: SpeciesAuthorName. The scientific name of the species, possibly with authorship - - - - Gadus morhua (Linnaeus, 1758) - - - - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - - - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - - - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - - - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - - - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - - - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - - - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - - - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - - - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - - - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - - - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - - - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - - - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - - - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - - - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - - - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - - - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - - - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:45:46 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - SpeciesAuthorName - The scientific name of the species, possibly with authorship - Name of the parameter: SpeciesAuthorName. The scientific name of the species, possibly with authorship - - - - Gadus morhua (Linnaeus, 1758) - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - Taxa_Authority_File - The reference dataset to use - Name of the parameter: Taxa_Authority_File. The reference dataset to use - - - - ASFIS - FISHBASE - OBIS - OBIS_ANIMALIA - OBIS_CNIDARIA - OBIS_ECHINODERMATA - OBIS_PLATYHELMINTHES - COL_FULL - COL_CHORDATA - COL_MAMMALIA - IRMNG_ACTINOPTERYGII - WORMS_ANIMALIA - WORMS_PISCES - - FISHBASE - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - Parser_Name - The Species - Authority parser - Name of the parameter: Parser_Name. The Species - Authority parser - - - - SIMPLE - GNI - NONE - - SIMPLE - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - Activate_Preparsing_Processing - Use preparsing rules to correct common errors - Name of the parameter: Activate_Preparsing_Processing. Use preparsing rules to correct common errors - - - - true - false - - true - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - Use_Stemmed_Genus_and_Species - Process using Genus and Species names without declension - Name of the parameter: Use_Stemmed_Genus_and_Species. Process using Genus and Species names without declension - - - - true - false - - false - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - Accuracy_vs_Speed - A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - Name of the parameter: Accuracy_vs_Speed. A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. - - - - MAX_ACCURACY - LOW_SPEED - MEDIUM_SPEED - HIGH_SPEED - MAX_SPEED - - MAX_ACCURACY - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_1 - Choose a Matcher - Name of the parameter: Matcher_1. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - GSAy - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_1 - Threshold - Name of the parameter: Threshold_1. Threshold - - - - 0.6 - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_1 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_1. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_2 - Choose a Matcher - Name of the parameter: Matcher_2. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - FUZZYMATCH - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_2 - Threshold - Name of the parameter: Threshold_2. Threshold - - - - 0.6 - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_2 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_2. The maximum number of matching candidates per each raw input species - - - - 10 - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_3 - Choose a Matcher - Name of the parameter: Matcher_3. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - LEVENSHTEIN - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_3 - Threshold - Name of the parameter: Threshold_3. Threshold - - - - 0.4 - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_3 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_3. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_4 - Choose a Matcher - Name of the parameter: Matcher_4. Choose a Matcher - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - TRIGRAM - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_4 - Threshold - Name of the parameter: Threshold_4. Threshold - - - - 0.4 - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_4 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_4. The maximum number of matching candidates per each raw input species - - - - 5 - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - Matcher_5 - Choose a Matcher (Optional) - Name of the parameter: Matcher_5. Choose a Matcher (Optional) - - - - GSAy - FUZZYMATCH - LEVENSHTEIN - SOUNDEX - LEV_SDX_TRIG - TRIGRAM - NONE - - NONE - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - Threshold_5 - Threshold (def. 0.2) - Name of the parameter: Threshold_5. Threshold (def. 0.2) - - - - 0.2 - - -2016-05-02 14:45:46 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxResults_5 - The maximum number of matching candidates per each raw input species - Name of the parameter: MaxResults_5. The maximum number of matching candidates per each raw input species - - - - 0 - - -2016-05-02 14:45:46 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:45:46 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:45:46 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->SpeciesAuthorName is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: Gadus morhua (Linnaeus, 1758) -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The scientific name of the species, possibly with authorship -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:SpeciesAuthorName -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=Gadus morhua (Linnaeus, 1758), value=null, name=SpeciesAuthorName, description=The scientific name of the species, possibly with authorship [Min N. of Entries:1; Max N. of Entries:1; default:Gadus morhua (Linnaeus, 1758)], typology=OBJECT] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-02 14:45:46 DEBUG WPS2SM:302 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The reference dataset to use -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-02 14:45:46 DEBUG WPS2SM:302 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Parser_Name -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-02 14:45:46 DEBUG WPS2SM:302 - ValueType[]:[true, false] -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-02 14:45:46 DEBUG WPS2SM:302 - ValueType[]:[true, false] -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-02 14:45:46 DEBUG WPS2SM:302 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-02 14:45:46 DEBUG WPS2SM:302 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Choose a Matcher -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Matcher_1 -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Threshold_1 -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxResults_1 -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-02 14:45:46 DEBUG WPS2SM:302 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Choose a Matcher -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Matcher_2 -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Threshold_2 -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxResults_2 -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-02 14:45:46 DEBUG WPS2SM:302 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Choose a Matcher -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Matcher_3 -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Threshold_3 -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxResults_3 -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-02 14:45:46 DEBUG WPS2SM:302 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Choose a Matcher -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Matcher_4 -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Threshold_4 -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxResults_4 -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-02 14:45:46 DEBUG WPS2SM:302 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Matcher_5 -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Threshold_5 -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-02 14:45:46 DEBUG WPS2SM:291 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-02 14:45:46 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:46 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:45:46 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 14:45:46 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-02 14:45:46 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxResults_5 -2016-05-02 14:45:46 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:46 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 14:45:46 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue=Gadus morhua (Linnaeus, 1758), value=null, name=SpeciesAuthorName, description=The scientific name of the species, possibly with authorship [Min N. of Entries:1; Max N. of Entries:1; default:Gadus morhua (Linnaeus, 1758)], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-02 14:45:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:45:56 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:45:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:45:56 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY -2016-05-02 14:45:56 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:45:56 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:45:57 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY - SUBMITQUERY - Algorithm that allows to submit a query - - - ResourceName - The name of the resource - Name of the parameter: ResourceName. The name of the resource - - - - - - - DatabaseName - The name of the database - Name of the parameter: DatabaseName. The name of the database - - - - - - - Read-Only Query - Check the box if the query must be read-only - Name of the parameter: Read-Only Query. Check the box if the query must be read-only - - - - true - false - - true - - - - Apply Smart Correction - Check the box for smart correction - Name of the parameter: Apply Smart Correction. Check the box for smart correction - - - - true - false - - true - - - - Language - Language - Name of the parameter: Language. Language - - - - NONE - POSTGRES - MYSQL - - NONE - - - - Query - query - Name of the parameter: Query. query - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:45:57 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:45:57 DEBUG SClient4WPS:300 - WPSClient->Input: - ResourceName - The name of the resource - Name of the parameter: ResourceName. The name of the resource - - - - - -2016-05-02 14:45:57 DEBUG SClient4WPS:300 - WPSClient->Input: - DatabaseName - The name of the database - Name of the parameter: DatabaseName. The name of the database - - - - - -2016-05-02 14:45:57 DEBUG SClient4WPS:300 - WPSClient->Input: - Read-Only Query - Check the box if the query must be read-only - Name of the parameter: Read-Only Query. Check the box if the query must be read-only - - - - true - false - - true - - -2016-05-02 14:45:57 DEBUG SClient4WPS:300 - WPSClient->Input: - Apply Smart Correction - Check the box for smart correction - Name of the parameter: Apply Smart Correction. Check the box for smart correction - - - - true - false - - true - - -2016-05-02 14:45:57 DEBUG SClient4WPS:300 - WPSClient->Input: - Language - Language - Name of the parameter: Language. Language - - - - NONE - POSTGRES - MYSQL - - NONE - - -2016-05-02 14:45:57 DEBUG SClient4WPS:300 - WPSClient->Input: - Query - query - Name of the parameter: Query. query - - - - - -2016-05-02 14:45:57 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:45:57 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:45:57 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:45:57 DEBUG WPS2SM:291 - Conversion to SM Type->ResourceName is a Literal Input -2016-05-02 14:45:57 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:57 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:57 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:45:57 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The name of the resource -2016-05-02 14:45:57 DEBUG WPS2SM:328 - Conversion to SM Type->Name:ResourceName -2016-05-02 14:45:57 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:57 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=ResourceName, description=The name of the resource [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 14:45:57 DEBUG WPS2SM:291 - Conversion to SM Type->DatabaseName is a Literal Input -2016-05-02 14:45:57 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:57 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:57 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:45:57 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The name of the database -2016-05-02 14:45:57 DEBUG WPS2SM:328 - Conversion to SM Type->Name:DatabaseName -2016-05-02 14:45:57 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:57 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=DatabaseName, description=The name of the database [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 14:45:57 DEBUG WPS2SM:291 - Conversion to SM Type->Read-Only Query is a Literal Input -2016-05-02 14:45:57 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:57 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:57 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-02 14:45:57 DEBUG WPS2SM:302 - ValueType[]:[true, false] -2016-05-02 14:45:57 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Check the box if the query must be read-only -2016-05-02 14:45:57 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Read-Only Query -2016-05-02 14:45:57 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:57 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Read-Only Query, description=Check the box if the query must be read-only [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-02 14:45:57 DEBUG WPS2SM:291 - Conversion to SM Type->Apply Smart Correction is a Literal Input -2016-05-02 14:45:57 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:57 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:57 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-02 14:45:57 DEBUG WPS2SM:302 - ValueType[]:[true, false] -2016-05-02 14:45:57 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Check the box for smart correction -2016-05-02 14:45:57 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Apply Smart Correction -2016-05-02 14:45:57 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:57 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Apply Smart Correction, description=Check the box for smart correction [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-02 14:45:57 DEBUG WPS2SM:291 - Conversion to SM Type->Language is a Literal Input -2016-05-02 14:45:57 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:57 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:57 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-02 14:45:57 DEBUG WPS2SM:302 - ValueType[]:[NONE, POSTGRES, MYSQL] -2016-05-02 14:45:57 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Language -2016-05-02 14:45:57 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Language -2016-05-02 14:45:57 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:57 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Language, description=Language [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-02 14:45:57 DEBUG WPS2SM:291 - Conversion to SM Type->Query is a Literal Input -2016-05-02 14:45:57 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:45:57 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:45:57 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:45:57 DEBUG WPS2SM:327 - Conversion to SM Type->Title:query -2016-05-02 14:45:57 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Query -2016-05-02 14:45:57 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:45:57 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=Query, description=query [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 14:45:57 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=ResourceName, description=The name of the resource [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=DatabaseName, description=The name of the database [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], Parameter [name=Read-Only Query, description=Check the box if the query must be read-only [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Apply Smart Correction, description=Check the box for smart correction [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Language, description=Language [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=Query, description=query [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT]] -2016-05-02 14:46:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:46:01 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:46:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:46:01 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER -2016-05-02 14:46:01 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:01 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:46:02 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER - HCAF_FILTER - An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia) - - - Table_Label - the name of the Filtered Hcaf - Name of the parameter: Table_Label. the name of the Filtered Hcaf - - - - hcaf_filtered - - - - B_Box_Left_Lower_Lat - the left lower latitude of the bounding box (range [-90,+90]) - Name of the parameter: B_Box_Left_Lower_Lat. the left lower latitude of the bounding box (range [-90,+90]) - - - - -17.098 - - - - B_Box_Left_Lower_Long - the left lower longitude of the bounding box (range [-180,+180]) - Name of the parameter: B_Box_Left_Lower_Long. the left lower longitude of the bounding box (range [-180,+180]) - - - - 89.245 - - - - B_Box_Right_Upper_Lat - the right upper latitude of the bounding box (range [-90,+90]) - Name of the parameter: B_Box_Right_Upper_Lat. the right upper latitude of the bounding box (range [-90,+90]) - - - - 25.086 - - - - B_Box_Right_Upper_Long - the right upper longitude of the bounding box (range [-180,+180]) - Name of the parameter: B_Box_Right_Upper_Long. the right upper longitude of the bounding box (range [-180,+180]) - - - - 147.642 - - - - - - OutputTable - a HCAF table focusing on the selected Bounding Box [a http link to a table in UTF-8 ecoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: OutputTable. a HCAF table focusing on the selected Bounding Box [a http link to a table in UTF-8 ecoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:46:02 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:46:02 DEBUG SClient4WPS:300 - WPSClient->Input: - Table_Label - the name of the Filtered Hcaf - Name of the parameter: Table_Label. the name of the Filtered Hcaf - - - - hcaf_filtered - - -2016-05-02 14:46:02 DEBUG SClient4WPS:300 - WPSClient->Input: - B_Box_Left_Lower_Lat - the left lower latitude of the bounding box (range [-90,+90]) - Name of the parameter: B_Box_Left_Lower_Lat. the left lower latitude of the bounding box (range [-90,+90]) - - - - -17.098 - - -2016-05-02 14:46:02 DEBUG SClient4WPS:300 - WPSClient->Input: - B_Box_Left_Lower_Long - the left lower longitude of the bounding box (range [-180,+180]) - Name of the parameter: B_Box_Left_Lower_Long. the left lower longitude of the bounding box (range [-180,+180]) - - - - 89.245 - - -2016-05-02 14:46:02 DEBUG SClient4WPS:300 - WPSClient->Input: - B_Box_Right_Upper_Lat - the right upper latitude of the bounding box (range [-90,+90]) - Name of the parameter: B_Box_Right_Upper_Lat. the right upper latitude of the bounding box (range [-90,+90]) - - - - 25.086 - - -2016-05-02 14:46:02 DEBUG SClient4WPS:300 - WPSClient->Input: - B_Box_Right_Upper_Long - the right upper longitude of the bounding box (range [-180,+180]) - Name of the parameter: B_Box_Right_Upper_Long. the right upper longitude of the bounding box (range [-180,+180]) - - - - 147.642 - - -2016-05-02 14:46:02 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:46:02 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - a HCAF table focusing on the selected Bounding Box [a http link to a table in UTF-8 ecoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: OutputTable. a HCAF table focusing on the selected Bounding Box [a http link to a table in UTF-8 ecoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 14:46:02 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:46:02 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:02 DEBUG WPS2SM:291 - Conversion to SM Type->Table_Label is a Literal Input -2016-05-02 14:46:02 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:02 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:02 DEBUG WPS2SM:100 - Guessed default value: hcaf_filtered -2016-05-02 14:46:02 DEBUG WPS2SM:327 - Conversion to SM Type->Title:the name of the Filtered Hcaf -2016-05-02 14:46:02 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Table_Label -2016-05-02 14:46:02 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:02 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=hcaf_filtered, value=null, name=Table_Label, description=the name of the Filtered Hcaf [Min N. of Entries:1; Max N. of Entries:1; default:hcaf_filtered], typology=OBJECT] -2016-05-02 14:46:02 DEBUG WPS2SM:291 - Conversion to SM Type->B_Box_Left_Lower_Lat is a Literal Input -2016-05-02 14:46:02 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:02 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:02 DEBUG WPS2SM:100 - Guessed default value: -17.098 -2016-05-02 14:46:02 DEBUG WPS2SM:327 - Conversion to SM Type->Title:the left lower latitude of the bounding box (range [-90,+90]) -2016-05-02 14:46:02 DEBUG WPS2SM:328 - Conversion to SM Type->Name:B_Box_Left_Lower_Lat -2016-05-02 14:46:02 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:02 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=-17.098, value=null, name=B_Box_Left_Lower_Lat, description=the left lower latitude of the bounding box (range [-90,+90]) [Min N. of Entries:1; Max N. of Entries:1; default:-17.098], typology=OBJECT] -2016-05-02 14:46:02 DEBUG WPS2SM:291 - Conversion to SM Type->B_Box_Left_Lower_Long is a Literal Input -2016-05-02 14:46:02 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:02 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:02 DEBUG WPS2SM:100 - Guessed default value: 89.245 -2016-05-02 14:46:02 DEBUG WPS2SM:327 - Conversion to SM Type->Title:the left lower longitude of the bounding box (range [-180,+180]) -2016-05-02 14:46:02 DEBUG WPS2SM:328 - Conversion to SM Type->Name:B_Box_Left_Lower_Long -2016-05-02 14:46:02 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:02 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=89.245, value=null, name=B_Box_Left_Lower_Long, description=the left lower longitude of the bounding box (range [-180,+180]) [Min N. of Entries:1; Max N. of Entries:1; default:89.245], typology=OBJECT] -2016-05-02 14:46:02 DEBUG WPS2SM:291 - Conversion to SM Type->B_Box_Right_Upper_Lat is a Literal Input -2016-05-02 14:46:02 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:02 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:02 DEBUG WPS2SM:100 - Guessed default value: 25.086 -2016-05-02 14:46:02 DEBUG WPS2SM:327 - Conversion to SM Type->Title:the right upper latitude of the bounding box (range [-90,+90]) -2016-05-02 14:46:02 DEBUG WPS2SM:328 - Conversion to SM Type->Name:B_Box_Right_Upper_Lat -2016-05-02 14:46:02 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:02 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=25.086, value=null, name=B_Box_Right_Upper_Lat, description=the right upper latitude of the bounding box (range [-90,+90]) [Min N. of Entries:1; Max N. of Entries:1; default:25.086], typology=OBJECT] -2016-05-02 14:46:02 DEBUG WPS2SM:291 - Conversion to SM Type->B_Box_Right_Upper_Long is a Literal Input -2016-05-02 14:46:02 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:02 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:02 DEBUG WPS2SM:100 - Guessed default value: 147.642 -2016-05-02 14:46:02 DEBUG WPS2SM:327 - Conversion to SM Type->Title:the right upper longitude of the bounding box (range [-180,+180]) -2016-05-02 14:46:02 DEBUG WPS2SM:328 - Conversion to SM Type->Name:B_Box_Right_Upper_Long -2016-05-02 14:46:02 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:02 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=147.642, value=null, name=B_Box_Right_Upper_Long, description=the right upper longitude of the bounding box (range [-180,+180]) [Min N. of Entries:1; Max N. of Entries:1; default:147.642], typology=OBJECT] -2016-05-02 14:46:02 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue=hcaf_filtered, value=null, name=Table_Label, description=the name of the Filtered Hcaf [Min N. of Entries:1; Max N. of Entries:1; default:hcaf_filtered], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=-17.098, value=null, name=B_Box_Left_Lower_Lat, description=the left lower latitude of the bounding box (range [-90,+90]) [Min N. of Entries:1; Max N. of Entries:1; default:-17.098], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=89.245, value=null, name=B_Box_Left_Lower_Long, description=the left lower longitude of the bounding box (range [-180,+180]) [Min N. of Entries:1; Max N. of Entries:1; default:89.245], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=25.086, value=null, name=B_Box_Right_Upper_Lat, description=the right upper latitude of the bounding box (range [-90,+90]) [Min N. of Entries:1; Max N. of Entries:1; default:25.086], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=147.642, value=null, name=B_Box_Right_Upper_Long, description=the right upper longitude of the bounding box (range [-180,+180]) [Min N. of Entries:1; Max N. of Entries:1; default:147.642], typology=OBJECT]] -2016-05-02 14:46:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:46:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:46:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:46:14 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:46:14 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR -2016-05-02 14:46:14 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:14 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:46:15 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR - CSQUARE_COLUMN_CREATOR - An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns. - - - InputTable - The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - Longitude_Column - The column containing Longitude information [the name of a column from InputTable] - Name of the parameter: Longitude_Column. The column containing Longitude information [the name of a column from InputTable] - - - - x - - - - Latitude_Column - The column containing Latitude information [the name of a column from InputTable] - Name of the parameter: Latitude_Column. The column containing Latitude information [the name of a column from InputTable] - - - - y - - - - CSquare_Resolution - The resolution of the CSquare codes - Name of the parameter: CSquare_Resolution. The resolution of the CSquare codes - - - - 0.1 - - - - OutputTableName - The name of the output table - Name of the parameter: OutputTableName. The name of the output table - - - - csquaretbl_ - - - - - - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:46:15 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:46:15 DEBUG SClient4WPS:300 - WPSClient->Input: - InputTable - The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:46:15 DEBUG SClient4WPS:300 - WPSClient->Input: - Longitude_Column - The column containing Longitude information [the name of a column from InputTable] - Name of the parameter: Longitude_Column. The column containing Longitude information [the name of a column from InputTable] - - - - x - - -2016-05-02 14:46:15 DEBUG SClient4WPS:300 - WPSClient->Input: - Latitude_Column - The column containing Latitude information [the name of a column from InputTable] - Name of the parameter: Latitude_Column. The column containing Latitude information [the name of a column from InputTable] - - - - y - - -2016-05-02 14:46:15 DEBUG SClient4WPS:300 - WPSClient->Input: - CSquare_Resolution - The resolution of the CSquare codes - Name of the parameter: CSquare_Resolution. The resolution of the CSquare codes - - - - 0.1 - - -2016-05-02 14:46:15 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableName - The name of the output table - Name of the parameter: OutputTableName. The name of the output table - - - - csquaretbl_ - - -2016-05-02 14:46:15 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:46:15 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 14:46:15 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:46:15 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:15 DEBUG WPS2SM:316 - Conversion to SM Type->InputTable is a Complex Input -2016-05-02 14:46:15 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:46:15 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:46:15 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:46:15 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:46:15 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 14:46:15 DEBUG WPS2SM:328 - Conversion to SM Type->Name:InputTable -2016-05-02 14:46:15 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:15 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=InputTable, description=The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:46:15 DEBUG WPS2SM:291 - Conversion to SM Type->Longitude_Column is a Literal Input -2016-05-02 14:46:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:15 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:15 DEBUG WPS2SM:100 - Guessed default value: x -2016-05-02 14:46:15 DEBUG WPS2SM:129 - Machter title: The column containing Longitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:x] -2016-05-02 14:46:15 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:46:15 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-02 14:46:15 DEBUG WPS2SM:132 - Machter start: 45 -2016-05-02 14:46:15 DEBUG WPS2SM:133 - Machter end: 81 -2016-05-02 14:46:15 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:46:15 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-02 14:46:15 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing Longitude information [the name of a column from InputTable] -2016-05-02 14:46:15 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Longitude_Column -2016-05-02 14:46:15 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:15 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Longitude_Column, description=The column containing Longitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:x], typology=COLUMN] -2016-05-02 14:46:15 DEBUG WPS2SM:291 - Conversion to SM Type->Latitude_Column is a Literal Input -2016-05-02 14:46:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:15 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:15 DEBUG WPS2SM:100 - Guessed default value: y -2016-05-02 14:46:15 DEBUG WPS2SM:129 - Machter title: The column containing Latitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:y] -2016-05-02 14:46:15 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:46:15 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-02 14:46:15 DEBUG WPS2SM:132 - Machter start: 44 -2016-05-02 14:46:15 DEBUG WPS2SM:133 - Machter end: 80 -2016-05-02 14:46:15 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:46:15 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-02 14:46:15 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing Latitude information [the name of a column from InputTable] -2016-05-02 14:46:15 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Latitude_Column -2016-05-02 14:46:15 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:15 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Latitude_Column, description=The column containing Latitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:y], typology=COLUMN] -2016-05-02 14:46:15 DEBUG WPS2SM:291 - Conversion to SM Type->CSquare_Resolution is a Literal Input -2016-05-02 14:46:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:15 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:15 DEBUG WPS2SM:100 - Guessed default value: 0.1 -2016-05-02 14:46:15 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The resolution of the CSquare codes -2016-05-02 14:46:15 DEBUG WPS2SM:328 - Conversion to SM Type->Name:CSquare_Resolution -2016-05-02 14:46:15 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:15 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.1, value=null, name=CSquare_Resolution, description=The resolution of the CSquare codes [Min N. of Entries:1; Max N. of Entries:1; default:0.1], typology=OBJECT] -2016-05-02 14:46:15 DEBUG WPS2SM:291 - Conversion to SM Type->OutputTableName is a Literal Input -2016-05-02 14:46:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:15 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:15 DEBUG WPS2SM:100 - Guessed default value: csquaretbl_ -2016-05-02 14:46:15 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The name of the output table -2016-05-02 14:46:15 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OutputTableName -2016-05-02 14:46:15 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:15 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=csquaretbl_, value=null, name=OutputTableName, description=The name of the output table [Min N. of Entries:1; Max N. of Entries:1; default:csquaretbl_], typology=OBJECT] -2016-05-02 14:46:15 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=InputTable, description=The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=Longitude_Column, description=The column containing Longitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:x], typology=COLUMN], Parameter [name=Latitude_Column, description=The column containing Latitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:y], typology=COLUMN], ObjectParameter [type=java.lang.Double, defaultValue=0.1, value=null, name=CSquare_Resolution, description=The resolution of the CSquare codes [Min N. of Entries:1; Max N. of Entries:1; default:0.1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=csquaretbl_, value=null, name=OutputTableName, description=The name of the output table [Min N. of Entries:1; Max N. of Entries:1; default:csquaretbl_], typology=OBJECT]] -2016-05-02 14:46:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:46:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:46:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:46:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:46:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:46:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:46:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:15 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:46:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:46:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:46:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:46:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:46:15 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:46:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:46:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:46:15 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:46:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:46:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:46:15 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:46:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:15 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:46:15 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:46:15 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:46:15 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:46:15 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:46:15 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:46:15 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:46:15 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:46:15 INFO WorkspaceExplorerServiceImpl:142 - end time - 209 msc 0 sec -2016-05-02 14:46:15 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:46:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:46:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:46:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:46:17 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION -2016-05-02 14:46:17 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:17 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:46:18 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION - ESRI_GRID_EXTRACTION - An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box. - - - Layer - Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) - Name of the parameter: Layer. Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) - - - - - - - BBox_LowerLeftLat - Lower Left Latitute of the Bounding Box - Name of the parameter: BBox_LowerLeftLat. Lower Left Latitute of the Bounding Box - - - - -60 - - - - BBox_LowerLeftLong - Lower Left Longitude of the Bounding Box - Name of the parameter: BBox_LowerLeftLong. Lower Left Longitude of the Bounding Box - - - - -50 - - - - BBox_UpperRightLat - Upper Right Latitute of the Bounding Box - Name of the parameter: BBox_UpperRightLat. Upper Right Latitute of the Bounding Box - - - - 60 - - - - BBox_UpperRightLong - Upper Right Longitude of the Bounding Box - Name of the parameter: BBox_UpperRightLong. Upper Right Longitude of the Bounding Box - - - - 50 - - - - Z - Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - - - TimeIndex - Time Index. The default is the first time indexed dataset - Name of the parameter: TimeIndex. Time Index. The default is the first time indexed dataset - - - - 0 - - - - XResolution - Projection resolution on the X axis - Name of the parameter: XResolution. Projection resolution on the X axis - - - - 0.5 - - - - YResolution - Projection resolution on the Y axis - Name of the parameter: YResolution. Projection resolution on the Y axis - - - - 0.5 - - - - - - Output ESRI GRID ASCII FILE - Output ESRI GRID ASCII FILE - Name of the parameter: Output ESRI GRID ASCII FILE. Output ESRI GRID ASCII FILE - - - - application/d4science - - - - - application/d4science - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:46:18 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:46:18 DEBUG SClient4WPS:300 - WPSClient->Input: - Layer - Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) - Name of the parameter: Layer. Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) - - - - - -2016-05-02 14:46:18 DEBUG SClient4WPS:300 - WPSClient->Input: - BBox_LowerLeftLat - Lower Left Latitute of the Bounding Box - Name of the parameter: BBox_LowerLeftLat. Lower Left Latitute of the Bounding Box - - - - -60 - - -2016-05-02 14:46:18 DEBUG SClient4WPS:300 - WPSClient->Input: - BBox_LowerLeftLong - Lower Left Longitude of the Bounding Box - Name of the parameter: BBox_LowerLeftLong. Lower Left Longitude of the Bounding Box - - - - -50 - - -2016-05-02 14:46:18 DEBUG SClient4WPS:300 - WPSClient->Input: - BBox_UpperRightLat - Upper Right Latitute of the Bounding Box - Name of the parameter: BBox_UpperRightLat. Upper Right Latitute of the Bounding Box - - - - 60 - - -2016-05-02 14:46:18 DEBUG SClient4WPS:300 - WPSClient->Input: - BBox_UpperRightLong - Upper Right Longitude of the Bounding Box - Name of the parameter: BBox_UpperRightLong. Upper Right Longitude of the Bounding Box - - - - 50 - - -2016-05-02 14:46:18 DEBUG SClient4WPS:300 - WPSClient->Input: - Z - Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - -2016-05-02 14:46:18 DEBUG SClient4WPS:300 - WPSClient->Input: - TimeIndex - Time Index. The default is the first time indexed dataset - Name of the parameter: TimeIndex. Time Index. The default is the first time indexed dataset - - - - 0 - - -2016-05-02 14:46:18 DEBUG SClient4WPS:300 - WPSClient->Input: - XResolution - Projection resolution on the X axis - Name of the parameter: XResolution. Projection resolution on the X axis - - - - 0.5 - - -2016-05-02 14:46:18 DEBUG SClient4WPS:300 - WPSClient->Input: - YResolution - Projection resolution on the Y axis - Name of the parameter: YResolution. Projection resolution on the Y axis - - - - 0.5 - - -2016-05-02 14:46:18 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:46:18 DEBUG SClient4WPS:307 - WPSClient->Output: - Output ESRI GRID ASCII FILE - Output ESRI GRID ASCII FILE - Name of the parameter: Output ESRI GRID ASCII FILE. Output ESRI GRID ASCII FILE - - - - application/d4science - - - - - application/d4science - - - - -2016-05-02 14:46:18 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:46:18 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:18 DEBUG WPS2SM:291 - Conversion to SM Type->Layer is a Literal Input -2016-05-02 14:46:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:18 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:46:18 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) -2016-05-02 14:46:18 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Layer -2016-05-02 14:46:18 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=Layer, description=Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 14:46:18 DEBUG WPS2SM:291 - Conversion to SM Type->BBox_LowerLeftLat is a Literal Input -2016-05-02 14:46:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:18 DEBUG WPS2SM:100 - Guessed default value: -60 -2016-05-02 14:46:18 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Lower Left Latitute of the Bounding Box -2016-05-02 14:46:18 DEBUG WPS2SM:328 - Conversion to SM Type->Name:BBox_LowerLeftLat -2016-05-02 14:46:18 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=-60, value=null, name=BBox_LowerLeftLat, description=Lower Left Latitute of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:-60], typology=OBJECT] -2016-05-02 14:46:18 DEBUG WPS2SM:291 - Conversion to SM Type->BBox_LowerLeftLong is a Literal Input -2016-05-02 14:46:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:18 DEBUG WPS2SM:100 - Guessed default value: -50 -2016-05-02 14:46:18 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Lower Left Longitude of the Bounding Box -2016-05-02 14:46:18 DEBUG WPS2SM:328 - Conversion to SM Type->Name:BBox_LowerLeftLong -2016-05-02 14:46:18 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=-50, value=null, name=BBox_LowerLeftLong, description=Lower Left Longitude of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:-50], typology=OBJECT] -2016-05-02 14:46:18 DEBUG WPS2SM:291 - Conversion to SM Type->BBox_UpperRightLat is a Literal Input -2016-05-02 14:46:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:18 DEBUG WPS2SM:100 - Guessed default value: 60 -2016-05-02 14:46:18 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Upper Right Latitute of the Bounding Box -2016-05-02 14:46:18 DEBUG WPS2SM:328 - Conversion to SM Type->Name:BBox_UpperRightLat -2016-05-02 14:46:18 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=60, value=null, name=BBox_UpperRightLat, description=Upper Right Latitute of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:60], typology=OBJECT] -2016-05-02 14:46:18 DEBUG WPS2SM:291 - Conversion to SM Type->BBox_UpperRightLong is a Literal Input -2016-05-02 14:46:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:18 DEBUG WPS2SM:100 - Guessed default value: 50 -2016-05-02 14:46:18 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Upper Right Longitude of the Bounding Box -2016-05-02 14:46:18 DEBUG WPS2SM:328 - Conversion to SM Type->Name:BBox_UpperRightLong -2016-05-02 14:46:18 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=50, value=null, name=BBox_UpperRightLong, description=Upper Right Longitude of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:50], typology=OBJECT] -2016-05-02 14:46:18 DEBUG WPS2SM:291 - Conversion to SM Type->Z is a Literal Input -2016-05-02 14:46:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:18 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 14:46:18 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer -2016-05-02 14:46:18 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Z -2016-05-02 14:46:18 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 14:46:18 DEBUG WPS2SM:291 - Conversion to SM Type->TimeIndex is a Literal Input -2016-05-02 14:46:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:46:18 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 14:46:18 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Time Index. The default is the first time indexed dataset -2016-05-02 14:46:18 DEBUG WPS2SM:328 - Conversion to SM Type->Name:TimeIndex -2016-05-02 14:46:18 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=TimeIndex, description=Time Index. The default is the first time indexed dataset [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 14:46:18 DEBUG WPS2SM:291 - Conversion to SM Type->XResolution is a Literal Input -2016-05-02 14:46:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:18 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-02 14:46:18 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Projection resolution on the X axis -2016-05-02 14:46:18 DEBUG WPS2SM:328 - Conversion to SM Type->Name:XResolution -2016-05-02 14:46:18 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=XResolution, description=Projection resolution on the X axis [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-02 14:46:18 DEBUG WPS2SM:291 - Conversion to SM Type->YResolution is a Literal Input -2016-05-02 14:46:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:18 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-02 14:46:18 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Projection resolution on the Y axis -2016-05-02 14:46:18 DEBUG WPS2SM:328 - Conversion to SM Type->Name:YResolution -2016-05-02 14:46:18 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=YResolution, description=Projection resolution on the Y axis [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-02 14:46:18 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=Layer, description=Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=-60, value=null, name=BBox_LowerLeftLat, description=Lower Left Latitute of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:-60], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=-50, value=null, name=BBox_LowerLeftLong, description=Lower Left Longitude of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:-50], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=60, value=null, name=BBox_UpperRightLat, description=Upper Right Latitute of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:60], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=50, value=null, name=BBox_UpperRightLong, description=Upper Right Longitude of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:50], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=TimeIndex, description=Time Index. The default is the first time indexed dataset [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=XResolution, description=Projection resolution on the X axis [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=YResolution, description=Projection resolution on the Y axis [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT]] -2016-05-02 14:46:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:46:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:46:22 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:46:22 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR -2016-05-02 14:46:22 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:22 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:46:23 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR - FAO_OCEAN_AREA_COLUMN_CREATOR - An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns. - - - InputTable - The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - Longitude_Column - The column containing Longitude information [the name of a column from InputTable] - Name of the parameter: Longitude_Column. The column containing Longitude information [the name of a column from InputTable] - - - - x - - - - Latitude_Column - The column containing Latitude information [the name of a column from InputTable] - Name of the parameter: Latitude_Column. The column containing Latitude information [the name of a column from InputTable] - - - - y - - - - Resolution - The resolution of the FAO Ocean Area codes - Name of the parameter: Resolution. The resolution of the FAO Ocean Area codes - - - - 5 - - - - OutputTableName - The name of the output table - Name of the parameter: OutputTableName. The name of the output table - - - - faooceanarea_ - - - - - - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:46:23 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:46:23 DEBUG SClient4WPS:300 - WPSClient->Input: - InputTable - The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:46:23 DEBUG SClient4WPS:300 - WPSClient->Input: - Longitude_Column - The column containing Longitude information [the name of a column from InputTable] - Name of the parameter: Longitude_Column. The column containing Longitude information [the name of a column from InputTable] - - - - x - - -2016-05-02 14:46:23 DEBUG SClient4WPS:300 - WPSClient->Input: - Latitude_Column - The column containing Latitude information [the name of a column from InputTable] - Name of the parameter: Latitude_Column. The column containing Latitude information [the name of a column from InputTable] - - - - y - - -2016-05-02 14:46:23 DEBUG SClient4WPS:300 - WPSClient->Input: - Resolution - The resolution of the FAO Ocean Area codes - Name of the parameter: Resolution. The resolution of the FAO Ocean Area codes - - - - 5 - - -2016-05-02 14:46:23 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableName - The name of the output table - Name of the parameter: OutputTableName. The name of the output table - - - - faooceanarea_ - - -2016-05-02 14:46:23 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:46:23 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 14:46:23 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:46:23 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:23 DEBUG WPS2SM:316 - Conversion to SM Type->InputTable is a Complex Input -2016-05-02 14:46:23 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:46:23 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:46:23 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:46:23 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:46:23 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 14:46:23 DEBUG WPS2SM:328 - Conversion to SM Type->Name:InputTable -2016-05-02 14:46:23 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:23 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=InputTable, description=The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:46:23 DEBUG WPS2SM:291 - Conversion to SM Type->Longitude_Column is a Literal Input -2016-05-02 14:46:23 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:23 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:23 DEBUG WPS2SM:100 - Guessed default value: x -2016-05-02 14:46:23 DEBUG WPS2SM:129 - Machter title: The column containing Longitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:x] -2016-05-02 14:46:23 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:46:23 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-02 14:46:23 DEBUG WPS2SM:132 - Machter start: 45 -2016-05-02 14:46:23 DEBUG WPS2SM:133 - Machter end: 81 -2016-05-02 14:46:23 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:46:23 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-02 14:46:23 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing Longitude information [the name of a column from InputTable] -2016-05-02 14:46:23 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Longitude_Column -2016-05-02 14:46:23 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:23 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Longitude_Column, description=The column containing Longitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:x], typology=COLUMN] -2016-05-02 14:46:23 DEBUG WPS2SM:291 - Conversion to SM Type->Latitude_Column is a Literal Input -2016-05-02 14:46:23 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:23 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:23 DEBUG WPS2SM:100 - Guessed default value: y -2016-05-02 14:46:23 DEBUG WPS2SM:129 - Machter title: The column containing Latitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:y] -2016-05-02 14:46:23 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:46:23 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-02 14:46:23 DEBUG WPS2SM:132 - Machter start: 44 -2016-05-02 14:46:23 DEBUG WPS2SM:133 - Machter end: 80 -2016-05-02 14:46:23 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:46:23 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-02 14:46:23 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing Latitude information [the name of a column from InputTable] -2016-05-02 14:46:23 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Latitude_Column -2016-05-02 14:46:23 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:23 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Latitude_Column, description=The column containing Latitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:y], typology=COLUMN] -2016-05-02 14:46:23 DEBUG WPS2SM:291 - Conversion to SM Type->Resolution is a Literal Input -2016-05-02 14:46:23 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:23 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:46:23 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-02 14:46:23 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The resolution of the FAO Ocean Area codes -2016-05-02 14:46:23 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Resolution -2016-05-02 14:46:23 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:23 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=Resolution, description=The resolution of the FAO Ocean Area codes [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-02 14:46:23 DEBUG WPS2SM:291 - Conversion to SM Type->OutputTableName is a Literal Input -2016-05-02 14:46:23 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:23 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:23 DEBUG WPS2SM:100 - Guessed default value: faooceanarea_ -2016-05-02 14:46:23 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The name of the output table -2016-05-02 14:46:23 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OutputTableName -2016-05-02 14:46:23 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:23 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=faooceanarea_, value=null, name=OutputTableName, description=The name of the output table [Min N. of Entries:1; Max N. of Entries:1; default:faooceanarea_], typology=OBJECT] -2016-05-02 14:46:23 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=InputTable, description=The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=Longitude_Column, description=The column containing Longitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:x], typology=COLUMN], Parameter [name=Latitude_Column, description=The column containing Latitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:y], typology=COLUMN], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=Resolution, description=The resolution of the FAO Ocean Area codes [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=faooceanarea_, value=null, name=OutputTableName, description=The name of the output table [Min N. of Entries:1; Max N. of Entries:1; default:faooceanarea_], typology=OBJECT]] -2016-05-02 14:46:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:46:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:46:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:46:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:46:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:46:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:46:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:23 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:46:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:46:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:46:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:46:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:46:23 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:46:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:46:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:46:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:46:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:46:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:46:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:46:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:23 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:46:23 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:46:23 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:46:23 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:46:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:46:23 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:46:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:46:23 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:46:23 INFO WorkspaceExplorerServiceImpl:142 - end time - 168 msc 0 sec -2016-05-02 14:46:23 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:46:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:46:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:46:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:46:25 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT -2016-05-02 14:46:25 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:25 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:46:26 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT - FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT - An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns. - - - InputTable - The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - Longitude_Column - The column containing Longitude information [the name of a column from InputTable] - Name of the parameter: Longitude_Column. The column containing Longitude information [the name of a column from InputTable] - - - - x - - - - Latitude_Column - The column containing Latitude information [the name of a column from InputTable] - Name of the parameter: Latitude_Column. The column containing Latitude information [the name of a column from InputTable] - - - - y - - - - Quadrant_Column - The column containing Quadrant information [the name of a column from InputTable] - Name of the parameter: Quadrant_Column. The column containing Quadrant information [the name of a column from InputTable] - - - - quadrant - - - - Resolution - The resolution of the FAO Ocean Area codes - Name of the parameter: Resolution. The resolution of the FAO Ocean Area codes - - - - 5 - - - - OutputTableName - The name of the output table - Name of the parameter: OutputTableName. The name of the output table - - - - faooceanarea_ - - - - - - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:46:26 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:46:26 DEBUG SClient4WPS:300 - WPSClient->Input: - InputTable - The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:46:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Longitude_Column - The column containing Longitude information [the name of a column from InputTable] - Name of the parameter: Longitude_Column. The column containing Longitude information [the name of a column from InputTable] - - - - x - - -2016-05-02 14:46:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Latitude_Column - The column containing Latitude information [the name of a column from InputTable] - Name of the parameter: Latitude_Column. The column containing Latitude information [the name of a column from InputTable] - - - - y - - -2016-05-02 14:46:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Quadrant_Column - The column containing Quadrant information [the name of a column from InputTable] - Name of the parameter: Quadrant_Column. The column containing Quadrant information [the name of a column from InputTable] - - - - quadrant - - -2016-05-02 14:46:26 DEBUG SClient4WPS:300 - WPSClient->Input: - Resolution - The resolution of the FAO Ocean Area codes - Name of the parameter: Resolution. The resolution of the FAO Ocean Area codes - - - - 5 - - -2016-05-02 14:46:26 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableName - The name of the output table - Name of the parameter: OutputTableName. The name of the output table - - - - faooceanarea_ - - -2016-05-02 14:46:26 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:46:26 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 14:46:26 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:46:26 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:26 DEBUG WPS2SM:316 - Conversion to SM Type->InputTable is a Complex Input -2016-05-02 14:46:26 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:46:26 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:46:26 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:46:26 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:46:26 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 14:46:26 DEBUG WPS2SM:328 - Conversion to SM Type->Name:InputTable -2016-05-02 14:46:26 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:26 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=InputTable, description=The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:46:26 DEBUG WPS2SM:291 - Conversion to SM Type->Longitude_Column is a Literal Input -2016-05-02 14:46:26 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:26 DEBUG WPS2SM:100 - Guessed default value: x -2016-05-02 14:46:26 DEBUG WPS2SM:129 - Machter title: The column containing Longitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:x] -2016-05-02 14:46:26 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:46:26 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-02 14:46:26 DEBUG WPS2SM:132 - Machter start: 45 -2016-05-02 14:46:26 DEBUG WPS2SM:133 - Machter end: 81 -2016-05-02 14:46:26 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:46:26 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-02 14:46:26 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing Longitude information [the name of a column from InputTable] -2016-05-02 14:46:26 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Longitude_Column -2016-05-02 14:46:26 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:26 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Longitude_Column, description=The column containing Longitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:x], typology=COLUMN] -2016-05-02 14:46:26 DEBUG WPS2SM:291 - Conversion to SM Type->Latitude_Column is a Literal Input -2016-05-02 14:46:26 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:26 DEBUG WPS2SM:100 - Guessed default value: y -2016-05-02 14:46:26 DEBUG WPS2SM:129 - Machter title: The column containing Latitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:y] -2016-05-02 14:46:26 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:46:26 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-02 14:46:26 DEBUG WPS2SM:132 - Machter start: 44 -2016-05-02 14:46:26 DEBUG WPS2SM:133 - Machter end: 80 -2016-05-02 14:46:26 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:46:26 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-02 14:46:26 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing Latitude information [the name of a column from InputTable] -2016-05-02 14:46:26 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Latitude_Column -2016-05-02 14:46:26 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:26 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Latitude_Column, description=The column containing Latitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:y], typology=COLUMN] -2016-05-02 14:46:26 DEBUG WPS2SM:291 - Conversion to SM Type->Quadrant_Column is a Literal Input -2016-05-02 14:46:26 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:26 DEBUG WPS2SM:100 - Guessed default value: quadrant -2016-05-02 14:46:26 DEBUG WPS2SM:129 - Machter title: The column containing Quadrant information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:quadrant] -2016-05-02 14:46:26 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:46:26 DEBUG WPS2SM:131 - Machter group: the name of a column from InputTable -2016-05-02 14:46:26 DEBUG WPS2SM:132 - Machter start: 44 -2016-05-02 14:46:26 DEBUG WPS2SM:133 - Machter end: 80 -2016-05-02 14:46:26 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:46:26 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: InputTable -2016-05-02 14:46:26 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing Quadrant information [the name of a column from InputTable] -2016-05-02 14:46:26 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Quadrant_Column -2016-05-02 14:46:26 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:26 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Quadrant_Column, description=The column containing Quadrant information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:quadrant], typology=COLUMN] -2016-05-02 14:46:26 DEBUG WPS2SM:291 - Conversion to SM Type->Resolution is a Literal Input -2016-05-02 14:46:26 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:26 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:46:26 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-02 14:46:26 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The resolution of the FAO Ocean Area codes -2016-05-02 14:46:26 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Resolution -2016-05-02 14:46:26 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:26 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=Resolution, description=The resolution of the FAO Ocean Area codes [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-02 14:46:26 DEBUG WPS2SM:291 - Conversion to SM Type->OutputTableName is a Literal Input -2016-05-02 14:46:26 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:26 DEBUG WPS2SM:100 - Guessed default value: faooceanarea_ -2016-05-02 14:46:26 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The name of the output table -2016-05-02 14:46:26 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OutputTableName -2016-05-02 14:46:26 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:26 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=faooceanarea_, value=null, name=OutputTableName, description=The name of the output table [Min N. of Entries:1; Max N. of Entries:1; default:faooceanarea_], typology=OBJECT] -2016-05-02 14:46:26 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=InputTable, description=The table to which the algorithm adds the csquare column [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=Longitude_Column, description=The column containing Longitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:x], typology=COLUMN], Parameter [name=Latitude_Column, description=The column containing Latitude information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:y], typology=COLUMN], Parameter [name=Quadrant_Column, description=The column containing Quadrant information [the name of a column from InputTable] [Min N. of Entries:1; Max N. of Entries:1; default:quadrant], typology=COLUMN], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=Resolution, description=The resolution of the FAO Ocean Area codes [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=faooceanarea_, value=null, name=OutputTableName, description=The name of the output table [Min N. of Entries:1; Max N. of Entries:1; default:faooceanarea_], typology=OBJECT]] -2016-05-02 14:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:46:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:46:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:46:26 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:46:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:26 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:46:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:46:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:46:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:46:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:46:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:46:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:46:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:46:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:46:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:46:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:26 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:46:27 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:46:27 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:46:27 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:46:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:46:27 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:46:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:46:27 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:46:27 INFO WorkspaceExplorerServiceImpl:142 - end time - 1163 msc 1 sec -2016-05-02 14:46:27 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:46:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:46:30 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:46:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:46:30 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT -2016-05-02 14:46:30 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:30 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:46:30 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT - OCCURRENCE_ENRICHMENT - An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points. - - - OccurrenceTable - A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - Name of the parameter: OccurrenceTable. A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - LongitudeColumn - The column containing longitude values [the name of a column from OccurrenceTable] - Name of the parameter: LongitudeColumn. The column containing longitude values [the name of a column from OccurrenceTable] - - - - decimallongitude - - - - LatitudeColumn - The column containing latitude values [the name of a column from OccurrenceTable] - Name of the parameter: LatitudeColumn. The column containing latitude values [the name of a column from OccurrenceTable] - - - - decimallatitude - - - - ScientificNameColumn - The column containing Scientific Names [the name of a column from OccurrenceTable] - Name of the parameter: ScientificNameColumn. The column containing Scientific Names [the name of a column from OccurrenceTable] - - - - scientificname - - - - TimeColumn - The column containing time information [the name of a column from OccurrenceTable] - Name of the parameter: TimeColumn. The column containing time information [the name of a column from OccurrenceTable] - - - - eventdate - - - - OptionalFilter - A filter on one of the columns (e.g. basisofrecord='HumanObservation'). Optional - Name of the parameter: OptionalFilter. A filter on one of the columns (e.g. basisofrecord='HumanObservation'). Optional - - - - - - - - Resolution - The spatial resolution in degrees of the association between observations and environmental features - Name of the parameter: Resolution. The spatial resolution in degrees of the association between observations and environmental features - - - - 0.5 - - - - OutputTableName - The name of the output table - Name of the parameter: OutputTableName. The name of the output table - - - - enrich_ - - - - Layers - The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ) [a sequence of values separated by | ] (format: String) - Name of the parameter: Layers. The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ) [a sequence of values separated by | ] (format: String) - - - - - - - FeaturesNames - The list of names for the columns corresponding to the environmental layers. These will be the column names of the resulting table [a sequence of values separated by | ] (format: String) - Name of the parameter: FeaturesNames. The list of names for the columns corresponding to the environmental layers. These will be the column names of the resulting table [a sequence of values separated by | ] (format: String) - - - - - - - - - OutputTable1 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable1. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:46:30 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:46:30 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrenceTable - A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - Name of the parameter: OccurrenceTable. A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:46:30 DEBUG SClient4WPS:300 - WPSClient->Input: - LongitudeColumn - The column containing longitude values [the name of a column from OccurrenceTable] - Name of the parameter: LongitudeColumn. The column containing longitude values [the name of a column from OccurrenceTable] - - - - decimallongitude - - -2016-05-02 14:46:30 DEBUG SClient4WPS:300 - WPSClient->Input: - LatitudeColumn - The column containing latitude values [the name of a column from OccurrenceTable] - Name of the parameter: LatitudeColumn. The column containing latitude values [the name of a column from OccurrenceTable] - - - - decimallatitude - - -2016-05-02 14:46:30 DEBUG SClient4WPS:300 - WPSClient->Input: - ScientificNameColumn - The column containing Scientific Names [the name of a column from OccurrenceTable] - Name of the parameter: ScientificNameColumn. The column containing Scientific Names [the name of a column from OccurrenceTable] - - - - scientificname - - -2016-05-02 14:46:30 DEBUG SClient4WPS:300 - WPSClient->Input: - TimeColumn - The column containing time information [the name of a column from OccurrenceTable] - Name of the parameter: TimeColumn. The column containing time information [the name of a column from OccurrenceTable] - - - - eventdate - - -2016-05-02 14:46:30 DEBUG SClient4WPS:300 - WPSClient->Input: - OptionalFilter - A filter on one of the columns (e.g. basisofrecord='HumanObservation'). Optional - Name of the parameter: OptionalFilter. A filter on one of the columns (e.g. basisofrecord='HumanObservation'). Optional - - - - - - -2016-05-02 14:46:30 DEBUG SClient4WPS:300 - WPSClient->Input: - Resolution - The spatial resolution in degrees of the association between observations and environmental features - Name of the parameter: Resolution. The spatial resolution in degrees of the association between observations and environmental features - - - - 0.5 - - -2016-05-02 14:46:30 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableName - The name of the output table - Name of the parameter: OutputTableName. The name of the output table - - - - enrich_ - - -2016-05-02 14:46:30 DEBUG SClient4WPS:300 - WPSClient->Input: - Layers - The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ) [a sequence of values separated by | ] (format: String) - Name of the parameter: Layers. The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ) [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 14:46:30 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesNames - The list of names for the columns corresponding to the environmental layers. These will be the column names of the resulting table [a sequence of values separated by | ] (format: String) - Name of the parameter: FeaturesNames. The list of names for the columns corresponding to the environmental layers. These will be the column names of the resulting table [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 14:46:30 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:46:30 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable1 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable1. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 14:46:30 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:46:30 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:30 DEBUG WPS2SM:316 - Conversion to SM Type->OccurrenceTable is a Complex Input -2016-05-02 14:46:30 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:46:30 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:46:30 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:46:30 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:46:30 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] -2016-05-02 14:46:30 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OccurrenceTable -2016-05-02 14:46:30 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:30 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=OccurrenceTable, description=A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:46:30 DEBUG WPS2SM:291 - Conversion to SM Type->LongitudeColumn is a Literal Input -2016-05-02 14:46:30 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:30 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:30 DEBUG WPS2SM:100 - Guessed default value: decimallongitude -2016-05-02 14:46:30 DEBUG WPS2SM:129 - Machter title: The column containing longitude values [the name of a column from OccurrenceTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude] -2016-05-02 14:46:30 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:46:30 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrenceTable -2016-05-02 14:46:30 DEBUG WPS2SM:132 - Machter start: 40 -2016-05-02 14:46:30 DEBUG WPS2SM:133 - Machter end: 81 -2016-05-02 14:46:30 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:46:30 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrenceTable -2016-05-02 14:46:30 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing longitude values [the name of a column from OccurrenceTable] -2016-05-02 14:46:30 DEBUG WPS2SM:328 - Conversion to SM Type->Name:LongitudeColumn -2016-05-02 14:46:30 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:30 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrenceTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN] -2016-05-02 14:46:30 DEBUG WPS2SM:291 - Conversion to SM Type->LatitudeColumn is a Literal Input -2016-05-02 14:46:30 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:30 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:30 DEBUG WPS2SM:100 - Guessed default value: decimallatitude -2016-05-02 14:46:30 DEBUG WPS2SM:129 - Machter title: The column containing latitude values [the name of a column from OccurrenceTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude] -2016-05-02 14:46:30 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:46:30 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrenceTable -2016-05-02 14:46:30 DEBUG WPS2SM:132 - Machter start: 39 -2016-05-02 14:46:30 DEBUG WPS2SM:133 - Machter end: 80 -2016-05-02 14:46:30 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:46:30 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrenceTable -2016-05-02 14:46:30 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing latitude values [the name of a column from OccurrenceTable] -2016-05-02 14:46:30 DEBUG WPS2SM:328 - Conversion to SM Type->Name:LatitudeColumn -2016-05-02 14:46:30 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:30 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrenceTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN] -2016-05-02 14:46:30 DEBUG WPS2SM:291 - Conversion to SM Type->ScientificNameColumn is a Literal Input -2016-05-02 14:46:30 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:30 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:30 DEBUG WPS2SM:100 - Guessed default value: scientificname -2016-05-02 14:46:30 DEBUG WPS2SM:129 - Machter title: The column containing Scientific Names [the name of a column from OccurrenceTable] [Min N. of Entries:1; Max N. of Entries:1; default:scientificname] -2016-05-02 14:46:30 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:46:30 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrenceTable -2016-05-02 14:46:30 DEBUG WPS2SM:132 - Machter start: 40 -2016-05-02 14:46:30 DEBUG WPS2SM:133 - Machter end: 81 -2016-05-02 14:46:30 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:46:30 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrenceTable -2016-05-02 14:46:30 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing Scientific Names [the name of a column from OccurrenceTable] -2016-05-02 14:46:30 DEBUG WPS2SM:328 - Conversion to SM Type->Name:ScientificNameColumn -2016-05-02 14:46:30 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:30 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=ScientificNameColumn, description=The column containing Scientific Names [the name of a column from OccurrenceTable] [Min N. of Entries:1; Max N. of Entries:1; default:scientificname], typology=COLUMN] -2016-05-02 14:46:30 DEBUG WPS2SM:291 - Conversion to SM Type->TimeColumn is a Literal Input -2016-05-02 14:46:30 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:30 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:30 DEBUG WPS2SM:100 - Guessed default value: eventdate -2016-05-02 14:46:30 DEBUG WPS2SM:129 - Machter title: The column containing time information [the name of a column from OccurrenceTable] [Min N. of Entries:1; Max N. of Entries:1; default:eventdate] -2016-05-02 14:46:30 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:46:30 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrenceTable -2016-05-02 14:46:30 DEBUG WPS2SM:132 - Machter start: 40 -2016-05-02 14:46:30 DEBUG WPS2SM:133 - Machter end: 81 -2016-05-02 14:46:30 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:46:30 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrenceTable -2016-05-02 14:46:30 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing time information [the name of a column from OccurrenceTable] -2016-05-02 14:46:30 DEBUG WPS2SM:328 - Conversion to SM Type->Name:TimeColumn -2016-05-02 14:46:30 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:30 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=TimeColumn, description=The column containing time information [the name of a column from OccurrenceTable] [Min N. of Entries:1; Max N. of Entries:1; default:eventdate], typology=COLUMN] -2016-05-02 14:46:30 DEBUG WPS2SM:291 - Conversion to SM Type->OptionalFilter is a Literal Input -2016-05-02 14:46:30 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:30 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:30 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:46:30 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A filter on one of the columns (e.g. basisofrecord='HumanObservation'). Optional -2016-05-02 14:46:30 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OptionalFilter -2016-05-02 14:46:30 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:30 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=OptionalFilter, description=A filter on one of the columns (e.g. basisofrecord='HumanObservation'). Optional [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 14:46:30 DEBUG WPS2SM:291 - Conversion to SM Type->Resolution is a Literal Input -2016-05-02 14:46:30 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:30 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:30 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-02 14:46:30 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The spatial resolution in degrees of the association between observations and environmental features -2016-05-02 14:46:30 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Resolution -2016-05-02 14:46:30 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:30 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=Resolution, description=The spatial resolution in degrees of the association between observations and environmental features [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-02 14:46:30 DEBUG WPS2SM:291 - Conversion to SM Type->OutputTableName is a Literal Input -2016-05-02 14:46:30 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:30 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:30 DEBUG WPS2SM:100 - Guessed default value: enrich_ -2016-05-02 14:46:30 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The name of the output table -2016-05-02 14:46:30 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OutputTableName -2016-05-02 14:46:30 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:30 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=enrich_, value=null, name=OutputTableName, description=The name of the output table [Min N. of Entries:1; Max N. of Entries:1; default:enrich_], typology=OBJECT] -2016-05-02 14:46:30 DEBUG WPS2SM:291 - Conversion to SM Type->Layers is a Literal Input -2016-05-02 14:46:30 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:30 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:30 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:46:30 DEBUG WPS2SM:148 - Machter title: The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ) [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 14:46:30 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 14:46:30 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 14:46:30 DEBUG WPS2SM:151 - Machter start: 440 -2016-05-02 14:46:30 DEBUG WPS2SM:152 - Machter end: 475 -2016-05-02 14:46:30 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 14:46:30 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 14:46:30 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ) [a sequence of values separated by | ] (format: String) -2016-05-02 14:46:30 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Layers -2016-05-02 14:46:30 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:30 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ) [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 14:46:30 DEBUG WPS2SM:291 - Conversion to SM Type->FeaturesNames is a Literal Input -2016-05-02 14:46:30 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:30 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:30 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:46:30 DEBUG WPS2SM:148 - Machter title: The list of names for the columns corresponding to the environmental layers. These will be the column names of the resulting table [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 14:46:30 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 14:46:30 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 14:46:30 DEBUG WPS2SM:151 - Machter start: 132 -2016-05-02 14:46:30 DEBUG WPS2SM:152 - Machter end: 167 -2016-05-02 14:46:30 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 14:46:30 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 14:46:30 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The list of names for the columns corresponding to the environmental layers. These will be the column names of the resulting table [a sequence of values separated by | ] (format: String) -2016-05-02 14:46:30 DEBUG WPS2SM:328 - Conversion to SM Type->Name:FeaturesNames -2016-05-02 14:46:30 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:30 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=FeaturesNames, description=The list of names for the columns corresponding to the environmental layers. These will be the column names of the resulting table [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 14:46:30 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=OccurrenceTable, description=A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrenceTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN], Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrenceTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN], Parameter [name=ScientificNameColumn, description=The column containing Scientific Names [the name of a column from OccurrenceTable] [Min N. of Entries:1; Max N. of Entries:1; default:scientificname], typology=COLUMN], Parameter [name=TimeColumn, description=The column containing time information [the name of a column from OccurrenceTable] [Min N. of Entries:1; Max N. of Entries:1; default:eventdate], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=OptionalFilter, description=A filter on one of the columns (e.g. basisofrecord='HumanObservation'). Optional [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=Resolution, description=The spatial resolution in degrees of the association between observations and environmental features [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=enrich_, value=null, name=OutputTableName, description=The name of the output table [Min N. of Entries:1; Max N. of Entries:1; default:enrich_], typology=OBJECT], ListParameter [type=java.lang.String, value=null, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ) [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=FeaturesNames, description=The list of names for the columns corresponding to the environmental layers. These will be the column names of the resulting table [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 14:46:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:46:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:46:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:46:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:46:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:46:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:46:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:30 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:46:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:46:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:46:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:46:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:46:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:46:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:46:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:46:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:30 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:46:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:46:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:46:30 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:46:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:30 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:46:30 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:46:30 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:46:30 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:46:30 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:46:30 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:46:30 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:46:30 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:46:30 INFO WorkspaceExplorerServiceImpl:142 - end time - 167 msc 0 sec -2016-05-02 14:46:30 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:46:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:46:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:46:34 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:46:34 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION -2016-05-02 14:46:34 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:34 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:46:35 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION - TIMEEXTRACTION - An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram. - - - Layer - Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) - Name of the parameter: Layer. Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) - - - - - - - OutputTableLabel - The name of the table to produce - Name of the parameter: OutputTableLabel. The name of the table to produce - - - - extr_ - - - - X - X coordinate - Name of the parameter: X. X coordinate - - - - 0 - - - - Y - Y coordinate - Name of the parameter: Y. Y coordinate - - - - 0 - - - - Z - Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - - - Resolution - Extraction point resolution - Name of the parameter: Resolution. Extraction point resolution - - - - 0.5 - - - - SamplingFreq - Sampling frequency in Hz. Leave it to -1 if unknown or under 1 - Name of the parameter: SamplingFreq. Sampling frequency in Hz. Leave it to -1 if unknown or under 1 - - - - -1 - - - - - - OutputTable1 - Output table [a http link to a table in UTF-8 ecoding following this template: (TIMESERIES) http://goo.gl/DoW6fg] - Name of the parameter: OutputTable1. Output table [a http link to a table in UTF-8 ecoding following this template: (TIMESERIES) http://goo.gl/DoW6fg] - - - - text/csv - - - - - text/csv - - - - - - Note - Note about the signal - Name of the parameter: Note. Note about the signal - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:46:35 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:46:35 DEBUG SClient4WPS:300 - WPSClient->Input: - Layer - Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) - Name of the parameter: Layer. Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) - - - - - -2016-05-02 14:46:35 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableLabel - The name of the table to produce - Name of the parameter: OutputTableLabel. The name of the table to produce - - - - extr_ - - -2016-05-02 14:46:35 DEBUG SClient4WPS:300 - WPSClient->Input: - X - X coordinate - Name of the parameter: X. X coordinate - - - - 0 - - -2016-05-02 14:46:35 DEBUG SClient4WPS:300 - WPSClient->Input: - Y - Y coordinate - Name of the parameter: Y. Y coordinate - - - - 0 - - -2016-05-02 14:46:35 DEBUG SClient4WPS:300 - WPSClient->Input: - Z - Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - -2016-05-02 14:46:35 DEBUG SClient4WPS:300 - WPSClient->Input: - Resolution - Extraction point resolution - Name of the parameter: Resolution. Extraction point resolution - - - - 0.5 - - -2016-05-02 14:46:35 DEBUG SClient4WPS:300 - WPSClient->Input: - SamplingFreq - Sampling frequency in Hz. Leave it to -1 if unknown or under 1 - Name of the parameter: SamplingFreq. Sampling frequency in Hz. Leave it to -1 if unknown or under 1 - - - - -1 - - -2016-05-02 14:46:35 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:46:35 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable1 - Output table [a http link to a table in UTF-8 ecoding following this template: (TIMESERIES) http://goo.gl/DoW6fg] - Name of the parameter: OutputTable1. Output table [a http link to a table in UTF-8 ecoding following this template: (TIMESERIES) http://goo.gl/DoW6fg] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 14:46:35 DEBUG SClient4WPS:307 - WPSClient->Output: - Note - Note about the signal - Name of the parameter: Note. Note about the signal - - - - -2016-05-02 14:46:35 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:46:35 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:35 DEBUG WPS2SM:291 - Conversion to SM Type->Layer is a Literal Input -2016-05-02 14:46:35 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:35 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:35 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:46:35 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) -2016-05-02 14:46:35 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Layer -2016-05-02 14:46:35 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:35 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=Layer, description=Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 14:46:35 DEBUG WPS2SM:291 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-02 14:46:35 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:35 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:35 DEBUG WPS2SM:100 - Guessed default value: extr_ -2016-05-02 14:46:35 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The name of the table to produce -2016-05-02 14:46:35 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OutputTableLabel -2016-05-02 14:46:35 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:35 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=extr_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:extr_], typology=OBJECT] -2016-05-02 14:46:35 DEBUG WPS2SM:291 - Conversion to SM Type->X is a Literal Input -2016-05-02 14:46:35 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:35 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:35 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 14:46:35 DEBUG WPS2SM:327 - Conversion to SM Type->Title:X coordinate -2016-05-02 14:46:35 DEBUG WPS2SM:328 - Conversion to SM Type->Name:X -2016-05-02 14:46:35 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:35 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=X, description=X coordinate [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 14:46:35 DEBUG WPS2SM:291 - Conversion to SM Type->Y is a Literal Input -2016-05-02 14:46:35 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:35 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:35 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 14:46:35 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Y coordinate -2016-05-02 14:46:35 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Y -2016-05-02 14:46:35 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:35 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Y, description=Y coordinate [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 14:46:35 DEBUG WPS2SM:291 - Conversion to SM Type->Z is a Literal Input -2016-05-02 14:46:35 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:35 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:35 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 14:46:35 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer -2016-05-02 14:46:35 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Z -2016-05-02 14:46:35 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:35 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 14:46:35 DEBUG WPS2SM:291 - Conversion to SM Type->Resolution is a Literal Input -2016-05-02 14:46:35 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:35 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:35 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-02 14:46:35 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Extraction point resolution -2016-05-02 14:46:35 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Resolution -2016-05-02 14:46:35 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:35 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=Resolution, description=Extraction point resolution [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-02 14:46:35 DEBUG WPS2SM:291 - Conversion to SM Type->SamplingFreq is a Literal Input -2016-05-02 14:46:35 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:35 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:46:35 DEBUG WPS2SM:100 - Guessed default value: -1 -2016-05-02 14:46:35 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Sampling frequency in Hz. Leave it to -1 if unknown or under 1 -2016-05-02 14:46:35 DEBUG WPS2SM:328 - Conversion to SM Type->Name:SamplingFreq -2016-05-02 14:46:35 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:35 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=-1, value=null, name=SamplingFreq, description=Sampling frequency in Hz. Leave it to -1 if unknown or under 1 [Min N. of Entries:1; Max N. of Entries:1; default:-1], typology=OBJECT] -2016-05-02 14:46:35 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=Layer, description=Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=extr_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:extr_], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=X, description=X coordinate [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Y, description=Y coordinate [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=Resolution, description=Extraction point resolution [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=-1, value=null, name=SamplingFreq, description=Sampling frequency in Hz. Leave it to -1 if unknown or under 1 [Min N. of Entries:1; Max N. of Entries:1; default:-1], typology=OBJECT]] -2016-05-02 14:46:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:46:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:46:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:46:38 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE -2016-05-02 14:46:38 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:38 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:46:38 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE - TIMEEXTRACTION_TABLE - An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram. - - - geoReferencedTableName - A geospatial table containing at least x,y information [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: geoReferencedTableName. A geospatial table containing at least x,y information [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - xColumn - The column containing x (longitude) information [the name of a column from geoReferencedTableName] - Name of the parameter: xColumn. The column containing x (longitude) information [the name of a column from geoReferencedTableName] - - - - x - - - - yColumn - The column containing y (latitude) information [the name of a column from geoReferencedTableName] - Name of the parameter: yColumn. The column containing y (latitude) information [the name of a column from geoReferencedTableName] - - - - y - - - - timeColumn - The column containing time information [the name of a column from geoReferencedTableName] - Name of the parameter: timeColumn. The column containing time information [the name of a column from geoReferencedTableName] - - - - datetime - - - - valueColumn - A column containing real valued features [the name of a column from geoReferencedTableName] - Name of the parameter: valueColumn. A column containing real valued features [the name of a column from geoReferencedTableName] - - - - value - - - - filter - A filter on one of the columns (e.g. speed=2) - Name of the parameter: filter. A filter on one of the columns (e.g. speed=2) - - - - - - - - zColumn - The column containing z (altitude or depth) information (optional) - Name of the parameter: zColumn. The column containing z (altitude or depth) information (optional) - - - - z - - - - OutputTableLabel - The name of the table to produce - Name of the parameter: OutputTableLabel. The name of the table to produce - - - - extr_ - - - - X - X coordinate - Name of the parameter: X. X coordinate - - - - 0 - - - - Y - Y coordinate - Name of the parameter: Y. Y coordinate - - - - 0 - - - - Z - Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - - - Resolution - Extraction point resolution - Name of the parameter: Resolution. Extraction point resolution - - - - 0.5 - - - - SamplingFreq - Sampling frequency in Hz. Leave it to -1 if unknown or under 1 - Name of the parameter: SamplingFreq. Sampling frequency in Hz. Leave it to -1 if unknown or under 1 - - - - -1 - - - - - - OutputTable1 - Output table [a http link to a table in UTF-8 ecoding following this template: (TIMESERIES) http://goo.gl/DoW6fg] - Name of the parameter: OutputTable1. Output table [a http link to a table in UTF-8 ecoding following this template: (TIMESERIES) http://goo.gl/DoW6fg] - - - - text/csv - - - - - text/csv - - - - - - Note - Note about the signal - Name of the parameter: Note. Note about the signal - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:46:38 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:46:38 DEBUG SClient4WPS:300 - WPSClient->Input: - geoReferencedTableName - A geospatial table containing at least x,y information [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: geoReferencedTableName. A geospatial table containing at least x,y information [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:46:38 DEBUG SClient4WPS:300 - WPSClient->Input: - xColumn - The column containing x (longitude) information [the name of a column from geoReferencedTableName] - Name of the parameter: xColumn. The column containing x (longitude) information [the name of a column from geoReferencedTableName] - - - - x - - -2016-05-02 14:46:38 DEBUG SClient4WPS:300 - WPSClient->Input: - yColumn - The column containing y (latitude) information [the name of a column from geoReferencedTableName] - Name of the parameter: yColumn. The column containing y (latitude) information [the name of a column from geoReferencedTableName] - - - - y - - -2016-05-02 14:46:38 DEBUG SClient4WPS:300 - WPSClient->Input: - timeColumn - The column containing time information [the name of a column from geoReferencedTableName] - Name of the parameter: timeColumn. The column containing time information [the name of a column from geoReferencedTableName] - - - - datetime - - -2016-05-02 14:46:38 DEBUG SClient4WPS:300 - WPSClient->Input: - valueColumn - A column containing real valued features [the name of a column from geoReferencedTableName] - Name of the parameter: valueColumn. A column containing real valued features [the name of a column from geoReferencedTableName] - - - - value - - -2016-05-02 14:46:38 DEBUG SClient4WPS:300 - WPSClient->Input: - filter - A filter on one of the columns (e.g. speed=2) - Name of the parameter: filter. A filter on one of the columns (e.g. speed=2) - - - - - - -2016-05-02 14:46:38 DEBUG SClient4WPS:300 - WPSClient->Input: - zColumn - The column containing z (altitude or depth) information (optional) - Name of the parameter: zColumn. The column containing z (altitude or depth) information (optional) - - - - z - - -2016-05-02 14:46:38 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableLabel - The name of the table to produce - Name of the parameter: OutputTableLabel. The name of the table to produce - - - - extr_ - - -2016-05-02 14:46:38 DEBUG SClient4WPS:300 - WPSClient->Input: - X - X coordinate - Name of the parameter: X. X coordinate - - - - 0 - - -2016-05-02 14:46:38 DEBUG SClient4WPS:300 - WPSClient->Input: - Y - Y coordinate - Name of the parameter: Y. Y coordinate - - - - 0 - - -2016-05-02 14:46:38 DEBUG SClient4WPS:300 - WPSClient->Input: - Z - Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - -2016-05-02 14:46:38 DEBUG SClient4WPS:300 - WPSClient->Input: - Resolution - Extraction point resolution - Name of the parameter: Resolution. Extraction point resolution - - - - 0.5 - - -2016-05-02 14:46:38 DEBUG SClient4WPS:300 - WPSClient->Input: - SamplingFreq - Sampling frequency in Hz. Leave it to -1 if unknown or under 1 - Name of the parameter: SamplingFreq. Sampling frequency in Hz. Leave it to -1 if unknown or under 1 - - - - -1 - - -2016-05-02 14:46:38 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:46:38 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable1 - Output table [a http link to a table in UTF-8 ecoding following this template: (TIMESERIES) http://goo.gl/DoW6fg] - Name of the parameter: OutputTable1. Output table [a http link to a table in UTF-8 ecoding following this template: (TIMESERIES) http://goo.gl/DoW6fg] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 14:46:38 DEBUG SClient4WPS:307 - WPSClient->Output: - Note - Note about the signal - Name of the parameter: Note. Note about the signal - - - - -2016-05-02 14:46:38 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:46:38 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:38 DEBUG WPS2SM:316 - Conversion to SM Type->geoReferencedTableName is a Complex Input -2016-05-02 14:46:38 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:46:38 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:46:38 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:46:38 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:46:38 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A geospatial table containing at least x,y information [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 14:46:38 DEBUG WPS2SM:328 - Conversion to SM Type->Name:geoReferencedTableName -2016-05-02 14:46:38 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:38 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=geoReferencedTableName, description=A geospatial table containing at least x,y information [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:46:38 DEBUG WPS2SM:291 - Conversion to SM Type->xColumn is a Literal Input -2016-05-02 14:46:38 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:38 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:38 DEBUG WPS2SM:100 - Guessed default value: x -2016-05-02 14:46:38 DEBUG WPS2SM:129 - Machter title: The column containing x (longitude) information [the name of a column from geoReferencedTableName] [Min N. of Entries:1; Max N. of Entries:1; default:x] -2016-05-02 14:46:38 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:46:38 DEBUG WPS2SM:131 - Machter group: the name of a column from geoReferencedTableName -2016-05-02 14:46:38 DEBUG WPS2SM:132 - Machter start: 49 -2016-05-02 14:46:38 DEBUG WPS2SM:133 - Machter end: 97 -2016-05-02 14:46:38 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:46:38 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: geoReferencedTableName -2016-05-02 14:46:38 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing x (longitude) information [the name of a column from geoReferencedTableName] -2016-05-02 14:46:38 DEBUG WPS2SM:328 - Conversion to SM Type->Name:xColumn -2016-05-02 14:46:38 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:38 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=xColumn, description=The column containing x (longitude) information [the name of a column from geoReferencedTableName] [Min N. of Entries:1; Max N. of Entries:1; default:x], typology=COLUMN] -2016-05-02 14:46:38 DEBUG WPS2SM:291 - Conversion to SM Type->yColumn is a Literal Input -2016-05-02 14:46:38 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:38 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:38 DEBUG WPS2SM:100 - Guessed default value: y -2016-05-02 14:46:38 DEBUG WPS2SM:129 - Machter title: The column containing y (latitude) information [the name of a column from geoReferencedTableName] [Min N. of Entries:1; Max N. of Entries:1; default:y] -2016-05-02 14:46:38 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:46:38 DEBUG WPS2SM:131 - Machter group: the name of a column from geoReferencedTableName -2016-05-02 14:46:38 DEBUG WPS2SM:132 - Machter start: 48 -2016-05-02 14:46:38 DEBUG WPS2SM:133 - Machter end: 96 -2016-05-02 14:46:38 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:46:38 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: geoReferencedTableName -2016-05-02 14:46:38 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing y (latitude) information [the name of a column from geoReferencedTableName] -2016-05-02 14:46:38 DEBUG WPS2SM:328 - Conversion to SM Type->Name:yColumn -2016-05-02 14:46:38 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:38 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=yColumn, description=The column containing y (latitude) information [the name of a column from geoReferencedTableName] [Min N. of Entries:1; Max N. of Entries:1; default:y], typology=COLUMN] -2016-05-02 14:46:38 DEBUG WPS2SM:291 - Conversion to SM Type->timeColumn is a Literal Input -2016-05-02 14:46:38 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:38 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:38 DEBUG WPS2SM:100 - Guessed default value: datetime -2016-05-02 14:46:38 DEBUG WPS2SM:129 - Machter title: The column containing time information [the name of a column from geoReferencedTableName] [Min N. of Entries:1; Max N. of Entries:1; default:datetime] -2016-05-02 14:46:38 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:46:38 DEBUG WPS2SM:131 - Machter group: the name of a column from geoReferencedTableName -2016-05-02 14:46:38 DEBUG WPS2SM:132 - Machter start: 40 -2016-05-02 14:46:38 DEBUG WPS2SM:133 - Machter end: 88 -2016-05-02 14:46:38 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:46:38 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: geoReferencedTableName -2016-05-02 14:46:38 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing time information [the name of a column from geoReferencedTableName] -2016-05-02 14:46:38 DEBUG WPS2SM:328 - Conversion to SM Type->Name:timeColumn -2016-05-02 14:46:38 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:38 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=timeColumn, description=The column containing time information [the name of a column from geoReferencedTableName] [Min N. of Entries:1; Max N. of Entries:1; default:datetime], typology=COLUMN] -2016-05-02 14:46:38 DEBUG WPS2SM:291 - Conversion to SM Type->valueColumn is a Literal Input -2016-05-02 14:46:38 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:38 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:38 DEBUG WPS2SM:100 - Guessed default value: value -2016-05-02 14:46:38 DEBUG WPS2SM:129 - Machter title: A column containing real valued features [the name of a column from geoReferencedTableName] [Min N. of Entries:1; Max N. of Entries:1; default:value] -2016-05-02 14:46:38 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:46:38 DEBUG WPS2SM:131 - Machter group: the name of a column from geoReferencedTableName -2016-05-02 14:46:38 DEBUG WPS2SM:132 - Machter start: 42 -2016-05-02 14:46:38 DEBUG WPS2SM:133 - Machter end: 90 -2016-05-02 14:46:38 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:46:38 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: geoReferencedTableName -2016-05-02 14:46:38 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A column containing real valued features [the name of a column from geoReferencedTableName] -2016-05-02 14:46:38 DEBUG WPS2SM:328 - Conversion to SM Type->Name:valueColumn -2016-05-02 14:46:38 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:38 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=valueColumn, description=A column containing real valued features [the name of a column from geoReferencedTableName] [Min N. of Entries:1; Max N. of Entries:1; default:value], typology=COLUMN] -2016-05-02 14:46:38 DEBUG WPS2SM:291 - Conversion to SM Type->filter is a Literal Input -2016-05-02 14:46:38 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:38 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:38 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:46:38 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A filter on one of the columns (e.g. speed=2) -2016-05-02 14:46:38 DEBUG WPS2SM:328 - Conversion to SM Type->Name:filter -2016-05-02 14:46:38 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:38 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=filter, description=A filter on one of the columns (e.g. speed=2) [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 14:46:38 DEBUG WPS2SM:291 - Conversion to SM Type->zColumn is a Literal Input -2016-05-02 14:46:38 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:38 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:38 DEBUG WPS2SM:100 - Guessed default value: z -2016-05-02 14:46:38 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing z (altitude or depth) information (optional) -2016-05-02 14:46:38 DEBUG WPS2SM:328 - Conversion to SM Type->Name:zColumn -2016-05-02 14:46:38 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:38 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=z, value=null, name=zColumn, description=The column containing z (altitude or depth) information (optional) [Min N. of Entries:1; Max N. of Entries:1; default:z], typology=OBJECT] -2016-05-02 14:46:38 DEBUG WPS2SM:291 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-02 14:46:38 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:38 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:38 DEBUG WPS2SM:100 - Guessed default value: extr_ -2016-05-02 14:46:38 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The name of the table to produce -2016-05-02 14:46:38 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OutputTableLabel -2016-05-02 14:46:38 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:38 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=extr_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:extr_], typology=OBJECT] -2016-05-02 14:46:38 DEBUG WPS2SM:291 - Conversion to SM Type->X is a Literal Input -2016-05-02 14:46:38 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:38 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:38 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 14:46:38 DEBUG WPS2SM:327 - Conversion to SM Type->Title:X coordinate -2016-05-02 14:46:38 DEBUG WPS2SM:328 - Conversion to SM Type->Name:X -2016-05-02 14:46:38 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:38 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=X, description=X coordinate [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 14:46:38 DEBUG WPS2SM:291 - Conversion to SM Type->Y is a Literal Input -2016-05-02 14:46:38 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:38 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:38 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 14:46:38 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Y coordinate -2016-05-02 14:46:38 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Y -2016-05-02 14:46:38 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:38 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Y, description=Y coordinate [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 14:46:38 DEBUG WPS2SM:291 - Conversion to SM Type->Z is a Literal Input -2016-05-02 14:46:38 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:38 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:38 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 14:46:38 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer -2016-05-02 14:46:38 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Z -2016-05-02 14:46:38 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:38 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 14:46:38 DEBUG WPS2SM:291 - Conversion to SM Type->Resolution is a Literal Input -2016-05-02 14:46:38 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:38 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:38 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-02 14:46:38 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Extraction point resolution -2016-05-02 14:46:38 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Resolution -2016-05-02 14:46:38 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:38 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=Resolution, description=Extraction point resolution [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-02 14:46:38 DEBUG WPS2SM:291 - Conversion to SM Type->SamplingFreq is a Literal Input -2016-05-02 14:46:38 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:38 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:46:38 DEBUG WPS2SM:100 - Guessed default value: -1 -2016-05-02 14:46:38 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Sampling frequency in Hz. Leave it to -1 if unknown or under 1 -2016-05-02 14:46:38 DEBUG WPS2SM:328 - Conversion to SM Type->Name:SamplingFreq -2016-05-02 14:46:38 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:38 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=-1, value=null, name=SamplingFreq, description=Sampling frequency in Hz. Leave it to -1 if unknown or under 1 [Min N. of Entries:1; Max N. of Entries:1; default:-1], typology=OBJECT] -2016-05-02 14:46:38 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=geoReferencedTableName, description=A geospatial table containing at least x,y information [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=xColumn, description=The column containing x (longitude) information [the name of a column from geoReferencedTableName] [Min N. of Entries:1; Max N. of Entries:1; default:x], typology=COLUMN], Parameter [name=yColumn, description=The column containing y (latitude) information [the name of a column from geoReferencedTableName] [Min N. of Entries:1; Max N. of Entries:1; default:y], typology=COLUMN], Parameter [name=timeColumn, description=The column containing time information [the name of a column from geoReferencedTableName] [Min N. of Entries:1; Max N. of Entries:1; default:datetime], typology=COLUMN], Parameter [name=valueColumn, description=A column containing real valued features [the name of a column from geoReferencedTableName] [Min N. of Entries:1; Max N. of Entries:1; default:value], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=filter, description=A filter on one of the columns (e.g. speed=2) [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=z, value=null, name=zColumn, description=The column containing z (altitude or depth) information (optional) [Min N. of Entries:1; Max N. of Entries:1; default:z], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=extr_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:extr_], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=X, description=X coordinate [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Y, description=Y coordinate [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=Resolution, description=Extraction point resolution [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=-1, value=null, name=SamplingFreq, description=Sampling frequency in Hz. Leave it to -1 if unknown or under 1 [Min N. of Entries:1; Max N. of Entries:1; default:-1], typology=OBJECT]] -2016-05-02 14:46:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:46:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:46:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:46:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:46:38 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:46:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:46:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:38 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:46:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:46:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:46:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:46:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:46:38 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:46:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:46:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:46:38 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:46:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:46:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:46:38 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:46:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:38 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:46:39 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:46:39 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:46:39 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:46:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:46:39 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:46:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:46:39 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:46:39 INFO WorkspaceExplorerServiceImpl:142 - end time - 220 msc 0 sec -2016-05-02 14:46:39 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:46:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:46:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:46:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:46:43 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR -2016-05-02 14:46:43 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:43 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:46:43 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR - XYEXTRACTOR - An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box. - - - Layer - Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) - Name of the parameter: Layer. Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) - - - - - - - BBox_LowerLeftLat - Lower Left Latitute of the Bounding Box - Name of the parameter: BBox_LowerLeftLat. Lower Left Latitute of the Bounding Box - - - - -60 - - - - BBox_LowerLeftLong - Lower Left Longitude of the Bounding Box - Name of the parameter: BBox_LowerLeftLong. Lower Left Longitude of the Bounding Box - - - - -50 - - - - BBox_UpperRightLat - Upper Right Latitute of the Bounding Box - Name of the parameter: BBox_UpperRightLat. Upper Right Latitute of the Bounding Box - - - - 60 - - - - BBox_UpperRightLong - Upper Right Longitude of the Bounding Box - Name of the parameter: BBox_UpperRightLong. Upper Right Longitude of the Bounding Box - - - - 50 - - - - OutputTableLabel - The name of the table to produce - Name of the parameter: OutputTableLabel. The name of the table to produce - - - - extr_ - - - - Z - Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - - - TimeIndex - Time Index. The default is the first time indexed dataset - Name of the parameter: TimeIndex. Time Index. The default is the first time indexed dataset - - - - 0 - - - - XResolution - Projection resolution on the X axis - Name of the parameter: XResolution. Projection resolution on the X axis - - - - 0.5 - - - - YResolution - Projection resolution on the Y axis - Name of the parameter: YResolution. Projection resolution on the Y axis - - - - 0.5 - - - - - - OutputTable1 - Output table [a http link to a table in UTF-8 ecoding following this template: (TIMESERIES) http://goo.gl/DoW6fg] - Name of the parameter: OutputTable1. Output table [a http link to a table in UTF-8 ecoding following this template: (TIMESERIES) http://goo.gl/DoW6fg] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:46:43 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:46:43 DEBUG SClient4WPS:300 - WPSClient->Input: - Layer - Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) - Name of the parameter: Layer. Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) - - - - - -2016-05-02 14:46:43 DEBUG SClient4WPS:300 - WPSClient->Input: - BBox_LowerLeftLat - Lower Left Latitute of the Bounding Box - Name of the parameter: BBox_LowerLeftLat. Lower Left Latitute of the Bounding Box - - - - -60 - - -2016-05-02 14:46:43 DEBUG SClient4WPS:300 - WPSClient->Input: - BBox_LowerLeftLong - Lower Left Longitude of the Bounding Box - Name of the parameter: BBox_LowerLeftLong. Lower Left Longitude of the Bounding Box - - - - -50 - - -2016-05-02 14:46:43 DEBUG SClient4WPS:300 - WPSClient->Input: - BBox_UpperRightLat - Upper Right Latitute of the Bounding Box - Name of the parameter: BBox_UpperRightLat. Upper Right Latitute of the Bounding Box - - - - 60 - - -2016-05-02 14:46:43 DEBUG SClient4WPS:300 - WPSClient->Input: - BBox_UpperRightLong - Upper Right Longitude of the Bounding Box - Name of the parameter: BBox_UpperRightLong. Upper Right Longitude of the Bounding Box - - - - 50 - - -2016-05-02 14:46:43 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableLabel - The name of the table to produce - Name of the parameter: OutputTableLabel. The name of the table to produce - - - - extr_ - - -2016-05-02 14:46:43 DEBUG SClient4WPS:300 - WPSClient->Input: - Z - Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - -2016-05-02 14:46:43 DEBUG SClient4WPS:300 - WPSClient->Input: - TimeIndex - Time Index. The default is the first time indexed dataset - Name of the parameter: TimeIndex. Time Index. The default is the first time indexed dataset - - - - 0 - - -2016-05-02 14:46:43 DEBUG SClient4WPS:300 - WPSClient->Input: - XResolution - Projection resolution on the X axis - Name of the parameter: XResolution. Projection resolution on the X axis - - - - 0.5 - - -2016-05-02 14:46:43 DEBUG SClient4WPS:300 - WPSClient->Input: - YResolution - Projection resolution on the Y axis - Name of the parameter: YResolution. Projection resolution on the Y axis - - - - 0.5 - - -2016-05-02 14:46:43 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:46:43 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable1 - Output table [a http link to a table in UTF-8 ecoding following this template: (TIMESERIES) http://goo.gl/DoW6fg] - Name of the parameter: OutputTable1. Output table [a http link to a table in UTF-8 ecoding following this template: (TIMESERIES) http://goo.gl/DoW6fg] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 14:46:43 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:46:43 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:43 DEBUG WPS2SM:291 - Conversion to SM Type->Layer is a Literal Input -2016-05-02 14:46:43 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:43 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:43 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:46:43 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) -2016-05-02 14:46:43 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Layer -2016-05-02 14:46:43 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:43 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=Layer, description=Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 14:46:43 DEBUG WPS2SM:291 - Conversion to SM Type->BBox_LowerLeftLat is a Literal Input -2016-05-02 14:46:43 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:43 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:43 DEBUG WPS2SM:100 - Guessed default value: -60 -2016-05-02 14:46:43 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Lower Left Latitute of the Bounding Box -2016-05-02 14:46:43 DEBUG WPS2SM:328 - Conversion to SM Type->Name:BBox_LowerLeftLat -2016-05-02 14:46:43 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:43 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=-60, value=null, name=BBox_LowerLeftLat, description=Lower Left Latitute of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:-60], typology=OBJECT] -2016-05-02 14:46:43 DEBUG WPS2SM:291 - Conversion to SM Type->BBox_LowerLeftLong is a Literal Input -2016-05-02 14:46:43 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:43 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:43 DEBUG WPS2SM:100 - Guessed default value: -50 -2016-05-02 14:46:43 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Lower Left Longitude of the Bounding Box -2016-05-02 14:46:43 DEBUG WPS2SM:328 - Conversion to SM Type->Name:BBox_LowerLeftLong -2016-05-02 14:46:43 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:43 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=-50, value=null, name=BBox_LowerLeftLong, description=Lower Left Longitude of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:-50], typology=OBJECT] -2016-05-02 14:46:43 DEBUG WPS2SM:291 - Conversion to SM Type->BBox_UpperRightLat is a Literal Input -2016-05-02 14:46:43 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:43 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:43 DEBUG WPS2SM:100 - Guessed default value: 60 -2016-05-02 14:46:43 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Upper Right Latitute of the Bounding Box -2016-05-02 14:46:43 DEBUG WPS2SM:328 - Conversion to SM Type->Name:BBox_UpperRightLat -2016-05-02 14:46:43 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:43 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=60, value=null, name=BBox_UpperRightLat, description=Upper Right Latitute of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:60], typology=OBJECT] -2016-05-02 14:46:43 DEBUG WPS2SM:291 - Conversion to SM Type->BBox_UpperRightLong is a Literal Input -2016-05-02 14:46:43 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:43 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:43 DEBUG WPS2SM:100 - Guessed default value: 50 -2016-05-02 14:46:43 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Upper Right Longitude of the Bounding Box -2016-05-02 14:46:43 DEBUG WPS2SM:328 - Conversion to SM Type->Name:BBox_UpperRightLong -2016-05-02 14:46:43 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:43 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=50, value=null, name=BBox_UpperRightLong, description=Upper Right Longitude of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:50], typology=OBJECT] -2016-05-02 14:46:43 DEBUG WPS2SM:291 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-02 14:46:43 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:43 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:43 DEBUG WPS2SM:100 - Guessed default value: extr_ -2016-05-02 14:46:43 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The name of the table to produce -2016-05-02 14:46:43 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OutputTableLabel -2016-05-02 14:46:43 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:43 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=extr_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:extr_], typology=OBJECT] -2016-05-02 14:46:43 DEBUG WPS2SM:291 - Conversion to SM Type->Z is a Literal Input -2016-05-02 14:46:43 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:43 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:43 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 14:46:43 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer -2016-05-02 14:46:43 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Z -2016-05-02 14:46:43 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:43 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 14:46:43 DEBUG WPS2SM:291 - Conversion to SM Type->TimeIndex is a Literal Input -2016-05-02 14:46:43 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:43 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:46:43 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 14:46:43 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Time Index. The default is the first time indexed dataset -2016-05-02 14:46:43 DEBUG WPS2SM:328 - Conversion to SM Type->Name:TimeIndex -2016-05-02 14:46:43 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:43 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=TimeIndex, description=Time Index. The default is the first time indexed dataset [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 14:46:43 DEBUG WPS2SM:291 - Conversion to SM Type->XResolution is a Literal Input -2016-05-02 14:46:43 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:43 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:43 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-02 14:46:43 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Projection resolution on the X axis -2016-05-02 14:46:43 DEBUG WPS2SM:328 - Conversion to SM Type->Name:XResolution -2016-05-02 14:46:43 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:43 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=XResolution, description=Projection resolution on the X axis [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-02 14:46:43 DEBUG WPS2SM:291 - Conversion to SM Type->YResolution is a Literal Input -2016-05-02 14:46:43 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:43 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:46:43 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-02 14:46:43 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Projection resolution on the Y axis -2016-05-02 14:46:43 DEBUG WPS2SM:328 - Conversion to SM Type->Name:YResolution -2016-05-02 14:46:43 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:43 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=YResolution, description=Projection resolution on the Y axis [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-02 14:46:43 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=Layer, description=Layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS ASC, GeoTiff ) [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=-60, value=null, name=BBox_LowerLeftLat, description=Lower Left Latitute of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:-60], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=-50, value=null, name=BBox_LowerLeftLong, description=Lower Left Longitude of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:-50], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=60, value=null, name=BBox_UpperRightLat, description=Upper Right Latitute of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:60], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=50, value=null, name=BBox_UpperRightLong, description=Upper Right Longitude of the Bounding Box [Min N. of Entries:1; Max N. of Entries:1; default:50], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=extr_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:extr_], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=TimeIndex, description=Time Index. The default is the first time indexed dataset [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=XResolution, description=Projection resolution on the X axis [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=YResolution, description=Projection resolution on the Y axis [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT]] -2016-05-02 14:46:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:46:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:46:51 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:46:51 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS -2016-05-02 14:46:51 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:51 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:46:52 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS - ABSENCE_CELLS_FROM_AQUAMAPS - An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution - - - Table_Label - the name of the Filtered Hcaf - Name of the parameter: Table_Label. the name of the Filtered Hcaf - - - - AbsenceCells_ - - - - Aquamaps_HSPEC - an Aquamaps table from which to produce the absence points [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - Name of the parameter: Aquamaps_HSPEC. an Aquamaps table from which to produce the absence points [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - Take_Randomly - a flag for taking points randomly (true) or close together (false) - Name of the parameter: Take_Randomly. a flag for taking points randomly (true) or close together (false) - - - - true - false - - true - - - - Number_of_Points - number of points to take - Name of the parameter: Number_of_Points. number of points to take - - - - 20 - - - - Species_Code - the species code according to the Fish-Base conventions - Name of the parameter: Species_Code. the species code according to the Fish-Base conventions - - - - Fis-30189 - - - - - - OutputTable - a HCAF table containing Absence Points cells [a http link to a table in UTF-8 ecoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: OutputTable. a HCAF table containing Absence Points cells [a http link to a table in UTF-8 ecoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:46:52 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:46:52 DEBUG SClient4WPS:300 - WPSClient->Input: - Table_Label - the name of the Filtered Hcaf - Name of the parameter: Table_Label. the name of the Filtered Hcaf - - - - AbsenceCells_ - - -2016-05-02 14:46:52 DEBUG SClient4WPS:300 - WPSClient->Input: - Aquamaps_HSPEC - an Aquamaps table from which to produce the absence points [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - Name of the parameter: Aquamaps_HSPEC. an Aquamaps table from which to produce the absence points [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:46:52 DEBUG SClient4WPS:300 - WPSClient->Input: - Take_Randomly - a flag for taking points randomly (true) or close together (false) - Name of the parameter: Take_Randomly. a flag for taking points randomly (true) or close together (false) - - - - true - false - - true - - -2016-05-02 14:46:52 DEBUG SClient4WPS:300 - WPSClient->Input: - Number_of_Points - number of points to take - Name of the parameter: Number_of_Points. number of points to take - - - - 20 - - -2016-05-02 14:46:52 DEBUG SClient4WPS:300 - WPSClient->Input: - Species_Code - the species code according to the Fish-Base conventions - Name of the parameter: Species_Code. the species code according to the Fish-Base conventions - - - - Fis-30189 - - -2016-05-02 14:46:52 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:46:52 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - a HCAF table containing Absence Points cells [a http link to a table in UTF-8 ecoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: OutputTable. a HCAF table containing Absence Points cells [a http link to a table in UTF-8 ecoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 14:46:52 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:46:52 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:46:52 DEBUG WPS2SM:291 - Conversion to SM Type->Table_Label is a Literal Input -2016-05-02 14:46:52 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:52 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:52 DEBUG WPS2SM:100 - Guessed default value: AbsenceCells_ -2016-05-02 14:46:52 DEBUG WPS2SM:327 - Conversion to SM Type->Title:the name of the Filtered Hcaf -2016-05-02 14:46:52 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Table_Label -2016-05-02 14:46:52 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:52 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=AbsenceCells_, value=null, name=Table_Label, description=the name of the Filtered Hcaf [Min N. of Entries:1; Max N. of Entries:1; default:AbsenceCells_], typology=OBJECT] -2016-05-02 14:46:52 DEBUG WPS2SM:316 - Conversion to SM Type->Aquamaps_HSPEC is a Complex Input -2016-05-02 14:46:52 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:46:52 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:46:52 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:46:52 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:46:52 DEBUG WPS2SM:327 - Conversion to SM Type->Title:an Aquamaps table from which to produce the absence points [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] -2016-05-02 14:46:52 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Aquamaps_HSPEC -2016-05-02 14:46:52 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:52 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=Aquamaps_HSPEC, description=an Aquamaps table from which to produce the absence points [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:46:52 DEBUG WPS2SM:291 - Conversion to SM Type->Take_Randomly is a Literal Input -2016-05-02 14:46:52 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:52 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:52 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-02 14:46:52 DEBUG WPS2SM:302 - ValueType[]:[true, false] -2016-05-02 14:46:52 DEBUG WPS2SM:327 - Conversion to SM Type->Title:a flag for taking points randomly (true) or close together (false) -2016-05-02 14:46:52 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Take_Randomly -2016-05-02 14:46:52 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:52 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Take_Randomly, description=a flag for taking points randomly (true) or close together (false) [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-02 14:46:52 DEBUG WPS2SM:291 - Conversion to SM Type->Number_of_Points is a Literal Input -2016-05-02 14:46:52 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:52 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:46:52 DEBUG WPS2SM:100 - Guessed default value: 20 -2016-05-02 14:46:52 DEBUG WPS2SM:327 - Conversion to SM Type->Title:number of points to take -2016-05-02 14:46:52 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Number_of_Points -2016-05-02 14:46:52 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:52 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=Number_of_Points, description=number of points to take [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT] -2016-05-02 14:46:52 DEBUG WPS2SM:291 - Conversion to SM Type->Species_Code is a Literal Input -2016-05-02 14:46:52 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:46:52 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:46:52 DEBUG WPS2SM:100 - Guessed default value: Fis-30189 -2016-05-02 14:46:52 DEBUG WPS2SM:327 - Conversion to SM Type->Title:the species code according to the Fish-Base conventions -2016-05-02 14:46:52 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Species_Code -2016-05-02 14:46:52 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:46:52 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=Fis-30189, value=null, name=Species_Code, description=the species code according to the Fish-Base conventions [Min N. of Entries:1; Max N. of Entries:1; default:Fis-30189], typology=OBJECT] -2016-05-02 14:46:52 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue=AbsenceCells_, value=null, name=Table_Label, description=the name of the Filtered Hcaf [Min N. of Entries:1; Max N. of Entries:1; default:AbsenceCells_], typology=OBJECT], TabularParameter [tableName= , templates=[], name=Aquamaps_HSPEC, description=an Aquamaps table from which to produce the absence points [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=Take_Randomly, description=a flag for taking points randomly (true) or close together (false) [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=Number_of_Points, description=number of points to take [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=Fis-30189, value=null, name=Species_Code, description=the species code according to the Fish-Base conventions [Min N. of Entries:1; Max N. of Entries:1; default:Fis-30189], typology=OBJECT]] -2016-05-02 14:46:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:46:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:46:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:46:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:46:52 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:46:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:46:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:52 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:46:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:46:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:46:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:46:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:46:52 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:46:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:46:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:46:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:46:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:46:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:46:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:46:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:46:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:46:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:46:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:46:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:46:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:46:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:46:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:46:52 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:46:52 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:46:52 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:46:52 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:46:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:46:52 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:46:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:46:52 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:46:52 INFO WorkspaceExplorerServiceImpl:142 - end time - 192 msc 0 sec -2016-05-02 14:46:52 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:47:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:47:03 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:47:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:47:03 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS -2016-05-02 14:47:03 DEBUG WPS2SM:316 - Conversion to SM Type->PositiveCasesTable is a Complex Input -2016-05-02 14:47:03 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:47:03 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:47:03 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:47:03 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:47:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 14:47:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:PositiveCasesTable -2016-05-02 14:47:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:03 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=PositiveCasesTable, description=A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:47:03 DEBUG WPS2SM:316 - Conversion to SM Type->NegativeCasesTable is a Complex Input -2016-05-02 14:47:03 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:47:03 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:47:03 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:47:03 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:47:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 14:47:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:NegativeCasesTable -2016-05-02 14:47:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:03 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=NegativeCasesTable, description=A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:47:03 DEBUG WPS2SM:291 - Conversion to SM Type->PositiveCasesTableKeyColumn is a Literal Input -2016-05-02 14:47:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:47:03 DEBUG WPS2SM:100 - Guessed default value: csquarecode -2016-05-02 14:47:03 DEBUG WPS2SM:129 - Machter title: Positive Cases Table Key Column [the name of a column from PositiveCasesTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode] -2016-05-02 14:47:03 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:47:03 DEBUG WPS2SM:131 - Machter group: the name of a column from PositiveCasesTable -2016-05-02 14:47:03 DEBUG WPS2SM:132 - Machter start: 33 -2016-05-02 14:47:03 DEBUG WPS2SM:133 - Machter end: 77 -2016-05-02 14:47:03 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:47:03 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: PositiveCasesTable -2016-05-02 14:47:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Positive Cases Table Key Column [the name of a column from PositiveCasesTable] -2016-05-02 14:47:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:PositiveCasesTableKeyColumn -2016-05-02 14:47:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:03 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=PositiveCasesTableKeyColumn, description=Positive Cases Table Key Column [the name of a column from PositiveCasesTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN] -2016-05-02 14:47:03 DEBUG WPS2SM:291 - Conversion to SM Type->NegativeCasesTableKeyColumn is a Literal Input -2016-05-02 14:47:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:47:03 DEBUG WPS2SM:100 - Guessed default value: csquarecode -2016-05-02 14:47:03 DEBUG WPS2SM:129 - Machter title: Negative Cases Table Key Column [the name of a column from NegativeCasesTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode] -2016-05-02 14:47:03 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:47:03 DEBUG WPS2SM:131 - Machter group: the name of a column from NegativeCasesTable -2016-05-02 14:47:03 DEBUG WPS2SM:132 - Machter start: 33 -2016-05-02 14:47:03 DEBUG WPS2SM:133 - Machter end: 77 -2016-05-02 14:47:03 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:47:03 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: NegativeCasesTable -2016-05-02 14:47:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Negative Cases Table Key Column [the name of a column from NegativeCasesTable] -2016-05-02 14:47:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:NegativeCasesTableKeyColumn -2016-05-02 14:47:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:03 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=NegativeCasesTableKeyColumn, description=Negative Cases Table Key Column [the name of a column from NegativeCasesTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN] -2016-05-02 14:47:03 DEBUG WPS2SM:316 - Conversion to SM Type->DistributionTable is a Complex Input -2016-05-02 14:47:03 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:47:03 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:47:03 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:47:03 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:47:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A probability distribution table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] -2016-05-02 14:47:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:DistributionTable -2016-05-02 14:47:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:03 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=DistributionTable, description=A probability distribution table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:47:03 DEBUG WPS2SM:291 - Conversion to SM Type->DistributionTableKeyColumn is a Literal Input -2016-05-02 14:47:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:47:03 DEBUG WPS2SM:100 - Guessed default value: csquarecode -2016-05-02 14:47:03 DEBUG WPS2SM:129 - Machter title: Distribution Table Key Column [the name of a column from DistributionTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode] -2016-05-02 14:47:03 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:47:03 DEBUG WPS2SM:131 - Machter group: the name of a column from DistributionTable -2016-05-02 14:47:03 DEBUG WPS2SM:132 - Machter start: 31 -2016-05-02 14:47:03 DEBUG WPS2SM:133 - Machter end: 74 -2016-05-02 14:47:03 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:47:03 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: DistributionTable -2016-05-02 14:47:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Distribution Table Key Column [the name of a column from DistributionTable] -2016-05-02 14:47:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:DistributionTableKeyColumn -2016-05-02 14:47:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:03 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=DistributionTableKeyColumn, description=Distribution Table Key Column [the name of a column from DistributionTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN] -2016-05-02 14:47:03 DEBUG WPS2SM:291 - Conversion to SM Type->DistributionTableProbabilityColumn is a Literal Input -2016-05-02 14:47:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:47:03 DEBUG WPS2SM:100 - Guessed default value: probability -2016-05-02 14:47:03 DEBUG WPS2SM:129 - Machter title: Distribution Table Probability Column [the name of a column from DistributionTable] [Min N. of Entries:1; Max N. of Entries:1; default:probability] -2016-05-02 14:47:03 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:47:03 DEBUG WPS2SM:131 - Machter group: the name of a column from DistributionTable -2016-05-02 14:47:03 DEBUG WPS2SM:132 - Machter start: 39 -2016-05-02 14:47:03 DEBUG WPS2SM:133 - Machter end: 82 -2016-05-02 14:47:03 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:47:03 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: DistributionTable -2016-05-02 14:47:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Distribution Table Probability Column [the name of a column from DistributionTable] -2016-05-02 14:47:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:DistributionTableProbabilityColumn -2016-05-02 14:47:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:03 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=DistributionTableProbabilityColumn, description=Distribution Table Probability Column [the name of a column from DistributionTable] [Min N. of Entries:1; Max N. of Entries:1; default:probability], typology=COLUMN] -2016-05-02 14:47:03 DEBUG WPS2SM:291 - Conversion to SM Type->PositiveThreshold is a Literal Input -2016-05-02 14:47:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:47:03 DEBUG WPS2SM:100 - Guessed default value: 0.8 -2016-05-02 14:47:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Positive acceptance threshold -2016-05-02 14:47:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:PositiveThreshold -2016-05-02 14:47:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:03 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=0.8, value=null, name=PositiveThreshold, description=Positive acceptance threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.8], typology=OBJECT] -2016-05-02 14:47:03 DEBUG WPS2SM:291 - Conversion to SM Type->NegativeThreshold is a Literal Input -2016-05-02 14:47:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:47:03 DEBUG WPS2SM:100 - Guessed default value: 0.3 -2016-05-02 14:47:03 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Negative acceptance threshold -2016-05-02 14:47:03 DEBUG WPS2SM:328 - Conversion to SM Type->Name:NegativeThreshold -2016-05-02 14:47:03 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:03 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=0.3, value=null, name=NegativeThreshold, description=Negative acceptance threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.3], typology=OBJECT] -2016-05-02 14:47:03 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=PositiveCasesTable, description=A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], TabularParameter [tableName= , templates=[], name=NegativeCasesTable, description=A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=PositiveCasesTableKeyColumn, description=Positive Cases Table Key Column [the name of a column from PositiveCasesTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN], Parameter [name=NegativeCasesTableKeyColumn, description=Negative Cases Table Key Column [the name of a column from NegativeCasesTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN], TabularParameter [tableName= , templates=[], name=DistributionTable, description=A probability distribution table [a http link to a table in UTF-8 encoding following this template: (HSPEC) http://goo.gl/OvKa1h] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=DistributionTableKeyColumn, description=Distribution Table Key Column [the name of a column from DistributionTable] [Min N. of Entries:1; Max N. of Entries:1; default:csquarecode], typology=COLUMN], Parameter [name=DistributionTableProbabilityColumn, description=Distribution Table Probability Column [the name of a column from DistributionTable] [Min N. of Entries:1; Max N. of Entries:1; default:probability], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=0.8, value=null, name=PositiveThreshold, description=Positive acceptance threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.8], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=0.3, value=null, name=NegativeThreshold, description=Negative acceptance threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.3], typology=OBJECT]] -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:47:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:47:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:47:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:47:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:47:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:47:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:47:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:47:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:47:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:47:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:47:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:47:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:47:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:47:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:47:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:47:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:47:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:47:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:47:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:47:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:47:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:47:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:47:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:47:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:47:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:47:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:47:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:47:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:47:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:47:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:47:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:47:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:47:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:47:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:47:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:47:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:47:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:47:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:47:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:47:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:47:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:47:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:47:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 177 msc 0 sec -2016-05-02 14:47:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:47:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:47:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:47:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:47:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:47:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:47:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:47:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:47:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:47:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:47:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 170 msc 0 sec -2016-05-02 14:47:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:47:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:47:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:47:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:47:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:47:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 151 msc 0 sec -2016-05-02 14:47:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:47:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:47:05 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:47:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:47:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:47:09 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:47:09 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA -2016-05-02 14:47:09 DEBUG WPS2SM:291 - Conversion to SM Type->StartYear is a Literal Input -2016-05-02 14:47:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:09 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:47:09 DEBUG WPS2SM:100 - Guessed default value: 1950 -2016-05-02 14:47:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:First year of the dataset temporal extent -2016-05-02 14:47:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:StartYear -2016-05-02 14:47:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:09 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1950, value=null, name=StartYear, description=First year of the dataset temporal extent [Min N. of Entries:1; Max N. of Entries:1; default:1950], typology=OBJECT] -2016-05-02 14:47:09 DEBUG WPS2SM:291 - Conversion to SM Type->EndYear is a Literal Input -2016-05-02 14:47:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:09 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:47:09 DEBUG WPS2SM:100 - Guessed default value: 2013 -2016-05-02 14:47:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Last year of the dataset temporal extent -2016-05-02 14:47:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:EndYear -2016-05-02 14:47:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:09 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=2013, value=null, name=EndYear, description=Last year of the dataset temporal extent [Min N. of Entries:1; Max N. of Entries:1; default:2013], typology=OBJECT] -2016-05-02 14:47:09 DEBUG WPS2SM:316 - Conversion to SM Type->CAAFile is a Complex Input -2016-05-02 14:47:09 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:47:09 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:47:09 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:47:09 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:47:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Catch at Age Matrix (Number of Fish caught by year and for each age) -2016-05-02 14:47:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:CAAFile -2016-05-02 14:47:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:09 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=CAAFile, description=Catch at Age Matrix (Number of Fish caught by year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 14:47:09 DEBUG WPS2SM:316 - Conversion to SM Type->PCAAFile is a Complex Input -2016-05-02 14:47:09 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:47:09 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:47:09 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:47:09 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:47:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Partial Catch at Age Matrix (Number of Fish caught by gear and year and for each age) -2016-05-02 14:47:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:PCAAFile -2016-05-02 14:47:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:09 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=PCAAFile, description=Partial Catch at Age Matrix (Number of Fish caught by gear and year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 14:47:09 DEBUG WPS2SM:316 - Conversion to SM Type->CPUEFile is a Complex Input -2016-05-02 14:47:09 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:47:09 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:47:09 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:47:09 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:47:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Table of Catch Per Unit of Effort used in the stock assessment -2016-05-02 14:47:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:CPUEFile -2016-05-02 14:47:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:09 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=CPUEFile, description=Table of Catch Per Unit of Effort used in the stock assessment [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 14:47:09 DEBUG WPS2SM:316 - Conversion to SM Type->PwaaFile is a Complex Input -2016-05-02 14:47:09 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:47:09 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:47:09 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:47:09 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:47:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Partial weight at age (Weight of Fish caught by gear and year and for each age) -2016-05-02 14:47:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:PwaaFile -2016-05-02 14:47:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:09 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=PwaaFile, description=Partial weight at age (Weight of Fish caught by gear and year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 14:47:09 DEBUG WPS2SM:316 - Conversion to SM Type->waaFile is a Complex Input -2016-05-02 14:47:09 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:47:09 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:47:09 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:47:09 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:47:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Fecundity at age (Fecundity of Fish caught by year and for each age) -2016-05-02 14:47:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:waaFile -2016-05-02 14:47:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:09 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=waaFile, description=Fecundity at age (Fecundity of Fish caught by year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 14:47:09 DEBUG WPS2SM:291 - Conversion to SM Type->shortComment is a Literal Input -2016-05-02 14:47:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:09 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:47:09 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:47:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Free text for users to describe the current simulation -2016-05-02 14:47:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:shortComment -2016-05-02 14:47:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:09 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=shortComment, description=Free text for users to describe the current simulation [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 14:47:09 DEBUG WPS2SM:291 - Conversion to SM Type->nCPUE is a Literal Input -2016-05-02 14:47:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:09 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:47:09 DEBUG WPS2SM:100 - Guessed default value: 7 -2016-05-02 14:47:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Number of Catch Per Unit of Effort Time series to use -2016-05-02 14:47:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:nCPUE -2016-05-02 14:47:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:09 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=7, value=null, name=nCPUE, description=Number of Catch Per Unit of Effort Time series to use [Min N. of Entries:1; Max N. of Entries:1; default:7], typology=OBJECT] -2016-05-02 14:47:09 DEBUG WPS2SM:291 - Conversion to SM Type->CPUE_cut is a Literal Input -2016-05-02 14:47:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:09 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:47:09 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-02 14:47:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Identifier of the Catch Per Unit of Effort Time Serie to be shrunk -2016-05-02 14:47:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:CPUE_cut -2016-05-02 14:47:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:09 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=CPUE_cut, description=Identifier of the Catch Per Unit of Effort Time Serie to be shrunk [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-02 14:47:09 DEBUG WPS2SM:291 - Conversion to SM Type->n_remove_year is a Literal Input -2016-05-02 14:47:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:09 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:47:09 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-02 14:47:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Number of the (last) years to be removed -2016-05-02 14:47:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:n_remove_year -2016-05-02 14:47:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:09 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=n_remove_year, description=Number of the (last) years to be removed [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-02 14:47:09 DEBUG WPS2SM:291 - Conversion to SM Type->age_plus_group is a Literal Input -2016-05-02 14:47:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:09 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:47:09 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 14:47:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Maximal age class of catches to be taken into account -2016-05-02 14:47:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:age_plus_group -2016-05-02 14:47:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:09 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=age_plus_group, description=Maximal age class of catches to be taken into account [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 14:47:09 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.Integer, defaultValue=1950, value=null, name=StartYear, description=First year of the dataset temporal extent [Min N. of Entries:1; Max N. of Entries:1; default:1950], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=2013, value=null, name=EndYear, description=Last year of the dataset temporal extent [Min N. of Entries:1; Max N. of Entries:1; default:2013], typology=OBJECT], ListParameter [type=java.lang.String, value=null, separator=|, name=CAAFile, description=Catch at Age Matrix (Number of Fish caught by year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=PCAAFile, description=Partial Catch at Age Matrix (Number of Fish caught by gear and year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=CPUEFile, description=Table of Catch Per Unit of Effort used in the stock assessment [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=PwaaFile, description=Partial weight at age (Weight of Fish caught by gear and year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=waaFile, description=Fecundity at age (Fecundity of Fish caught by year and for each age) [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=shortComment, description=Free text for users to describe the current simulation [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=7, value=null, name=nCPUE, description=Number of Catch Per Unit of Effort Time series to use [Min N. of Entries:1; Max N. of Entries:1; default:7], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=CPUE_cut, description=Identifier of the Catch Per Unit of Effort Time Serie to be shrunk [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=n_remove_year, description=Number of the (last) years to be removed [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=age_plus_group, description=Maximal age class of catches to be taken into account [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT]] -2016-05-02 14:47:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:47:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:47:21 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:47:21 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION -2016-05-02 14:47:21 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:47:21 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:47:21 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION - SGVM_INTERPOLATION - An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare - - - InputFile - Input file in TACSAT format. E.g. http://goo.gl/i16kPw - Name of the parameter: InputFile. Input file in TACSAT format. E.g. http://goo.gl/i16kPw - - - - text/xml - - - - - text/xml - - - application/d4science - - - - - - npoints - The number of pings or positions required between each real or actual vessel position or ping - Name of the parameter: npoints. The number of pings or positions required between each real or actual vessel position or ping - - - - 10 - - - - interval - Average time in minutes between two adjacent datapoints - Name of the parameter: interval. Average time in minutes between two adjacent datapoints - - - - 120 - - - - margin - Maximum deviation from specified interval to find adjacent datapoints (tolerance) - Name of the parameter: margin. Maximum deviation from specified interval to find adjacent datapoints (tolerance) - - - - 10 - - - - res - Number of points to use to create interpolation (including start and end point) - Name of the parameter: res. Number of points to use to create interpolation (including start and end point) - - - - 100 - - - - method - Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - Name of the parameter: method. Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - - - - cHs - SL - - cHs - - - - fm - The FM parameter in cubic interpolation - Name of the parameter: fm. The FM parameter in cubic interpolation - - - - 0.5 - - - - distscale - The DistScale parameter for cubic interpolation - Name of the parameter: distscale. The DistScale parameter for cubic interpolation - - - - 20 - - - - sigline - The Sigline parameter in cubic interpolation - Name of the parameter: sigline. The Sigline parameter in cubic interpolation - - - - 0.2 - - - - minspeedThr - A filter on the minimum speed to take into account for interpolation - Name of the parameter: minspeedThr. A filter on the minimum speed to take into account for interpolation - - - - 2 - - - - maxspeedThr - A filter on the maximum speed to take into account for interpolation - Name of the parameter: maxspeedThr. A filter on the maximum speed to take into account for interpolation - - - - 6 - - - - headingAdjustment - Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - Name of the parameter: headingAdjustment. Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - - - - 0 - - - - equalDist - Whether the number of positions returned should be equally spaced or not - Name of the parameter: equalDist. Whether the number of positions returned should be equally spaced or not - - - - true - false - - true - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:47:21 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:47:21 DEBUG SClient4WPS:300 - WPSClient->Input: - InputFile - Input file in TACSAT format. E.g. http://goo.gl/i16kPw - Name of the parameter: InputFile. Input file in TACSAT format. E.g. http://goo.gl/i16kPw - - - - text/xml - - - - - text/xml - - - application/d4science - - - - -2016-05-02 14:47:21 DEBUG SClient4WPS:300 - WPSClient->Input: - npoints - The number of pings or positions required between each real or actual vessel position or ping - Name of the parameter: npoints. The number of pings or positions required between each real or actual vessel position or ping - - - - 10 - - -2016-05-02 14:47:21 DEBUG SClient4WPS:300 - WPSClient->Input: - interval - Average time in minutes between two adjacent datapoints - Name of the parameter: interval. Average time in minutes between two adjacent datapoints - - - - 120 - - -2016-05-02 14:47:21 DEBUG SClient4WPS:300 - WPSClient->Input: - margin - Maximum deviation from specified interval to find adjacent datapoints (tolerance) - Name of the parameter: margin. Maximum deviation from specified interval to find adjacent datapoints (tolerance) - - - - 10 - - -2016-05-02 14:47:21 DEBUG SClient4WPS:300 - WPSClient->Input: - res - Number of points to use to create interpolation (including start and end point) - Name of the parameter: res. Number of points to use to create interpolation (including start and end point) - - - - 100 - - -2016-05-02 14:47:21 DEBUG SClient4WPS:300 - WPSClient->Input: - method - Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - Name of the parameter: method. Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - - - - cHs - SL - - cHs - - -2016-05-02 14:47:21 DEBUG SClient4WPS:300 - WPSClient->Input: - fm - The FM parameter in cubic interpolation - Name of the parameter: fm. The FM parameter in cubic interpolation - - - - 0.5 - - -2016-05-02 14:47:21 DEBUG SClient4WPS:300 - WPSClient->Input: - distscale - The DistScale parameter for cubic interpolation - Name of the parameter: distscale. The DistScale parameter for cubic interpolation - - - - 20 - - -2016-05-02 14:47:21 DEBUG SClient4WPS:300 - WPSClient->Input: - sigline - The Sigline parameter in cubic interpolation - Name of the parameter: sigline. The Sigline parameter in cubic interpolation - - - - 0.2 - - -2016-05-02 14:47:21 DEBUG SClient4WPS:300 - WPSClient->Input: - minspeedThr - A filter on the minimum speed to take into account for interpolation - Name of the parameter: minspeedThr. A filter on the minimum speed to take into account for interpolation - - - - 2 - - -2016-05-02 14:47:21 DEBUG SClient4WPS:300 - WPSClient->Input: - maxspeedThr - A filter on the maximum speed to take into account for interpolation - Name of the parameter: maxspeedThr. A filter on the maximum speed to take into account for interpolation - - - - 6 - - -2016-05-02 14:47:21 DEBUG SClient4WPS:300 - WPSClient->Input: - headingAdjustment - Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - Name of the parameter: headingAdjustment. Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - - - - 0 - - -2016-05-02 14:47:21 DEBUG SClient4WPS:300 - WPSClient->Input: - equalDist - Whether the number of positions returned should be equally spaced or not - Name of the parameter: equalDist. Whether the number of positions returned should be equally spaced or not - - - - true - false - - true - - -2016-05-02 14:47:21 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:47:21 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:47:21 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:47:21 DEBUG WPS2SM:316 - Conversion to SM Type->InputFile is a Complex Input -2016-05-02 14:47:21 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:47:21 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:47:21 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:47:21 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:47:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Input file in TACSAT format. E.g. http://goo.gl/i16kPw -2016-05-02 14:47:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:InputFile -2016-05-02 14:47:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:21 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=InputFile, description=Input file in TACSAT format. E.g. http://goo.gl/i16kPw [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 14:47:21 DEBUG WPS2SM:291 - Conversion to SM Type->npoints is a Literal Input -2016-05-02 14:47:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:21 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:47:21 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 14:47:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The number of pings or positions required between each real or actual vessel position or ping -2016-05-02 14:47:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:npoints -2016-05-02 14:47:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:21 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=npoints, description=The number of pings or positions required between each real or actual vessel position or ping [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 14:47:21 DEBUG WPS2SM:291 - Conversion to SM Type->interval is a Literal Input -2016-05-02 14:47:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:21 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:47:21 DEBUG WPS2SM:100 - Guessed default value: 120 -2016-05-02 14:47:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Average time in minutes between two adjacent datapoints -2016-05-02 14:47:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:interval -2016-05-02 14:47:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:21 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=120, value=null, name=interval, description=Average time in minutes between two adjacent datapoints [Min N. of Entries:1; Max N. of Entries:1; default:120], typology=OBJECT] -2016-05-02 14:47:21 DEBUG WPS2SM:291 - Conversion to SM Type->margin is a Literal Input -2016-05-02 14:47:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:21 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:47:21 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 14:47:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Maximum deviation from specified interval to find adjacent datapoints (tolerance) -2016-05-02 14:47:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:margin -2016-05-02 14:47:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:21 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=margin, description=Maximum deviation from specified interval to find adjacent datapoints (tolerance) [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 14:47:21 DEBUG WPS2SM:291 - Conversion to SM Type->res is a Literal Input -2016-05-02 14:47:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:21 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:47:21 DEBUG WPS2SM:100 - Guessed default value: 100 -2016-05-02 14:47:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Number of points to use to create interpolation (including start and end point) -2016-05-02 14:47:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:res -2016-05-02 14:47:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:21 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=100, value=null, name=res, description=Number of points to use to create interpolation (including start and end point) [Min N. of Entries:1; Max N. of Entries:1; default:100], typology=OBJECT] -2016-05-02 14:47:21 DEBUG WPS2SM:291 - Conversion to SM Type->method is a Literal Input -2016-05-02 14:47:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:21 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:47:21 DEBUG WPS2SM:100 - Guessed default value: cHs -2016-05-02 14:47:21 DEBUG WPS2SM:302 - ValueType[]:[cHs, SL] -2016-05-02 14:47:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Set to cHs for cubic Hermite spline or SL for Straight Line interpolation -2016-05-02 14:47:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:method -2016-05-02 14:47:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:21 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=method, description=Set to cHs for cubic Hermite spline or SL for Straight Line interpolation [Min N. of Entries:1; Max N. of Entries:1; default:cHs], typology=ENUM] -2016-05-02 14:47:21 DEBUG WPS2SM:291 - Conversion to SM Type->fm is a Literal Input -2016-05-02 14:47:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:21 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:47:21 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-02 14:47:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The FM parameter in cubic interpolation -2016-05-02 14:47:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:fm -2016-05-02 14:47:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:21 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=fm, description=The FM parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-02 14:47:21 DEBUG WPS2SM:291 - Conversion to SM Type->distscale is a Literal Input -2016-05-02 14:47:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:21 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:47:21 DEBUG WPS2SM:100 - Guessed default value: 20 -2016-05-02 14:47:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The DistScale parameter for cubic interpolation -2016-05-02 14:47:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:distscale -2016-05-02 14:47:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:21 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=distscale, description=The DistScale parameter for cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT] -2016-05-02 14:47:21 DEBUG WPS2SM:291 - Conversion to SM Type->sigline is a Literal Input -2016-05-02 14:47:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:21 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:47:21 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-02 14:47:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The Sigline parameter in cubic interpolation -2016-05-02 14:47:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:sigline -2016-05-02 14:47:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:21 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=sigline, description=The Sigline parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-02 14:47:21 DEBUG WPS2SM:291 - Conversion to SM Type->minspeedThr is a Literal Input -2016-05-02 14:47:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:21 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:47:21 DEBUG WPS2SM:100 - Guessed default value: 2 -2016-05-02 14:47:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A filter on the minimum speed to take into account for interpolation -2016-05-02 14:47:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:minspeedThr -2016-05-02 14:47:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:21 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=2, value=null, name=minspeedThr, description=A filter on the minimum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT] -2016-05-02 14:47:21 DEBUG WPS2SM:291 - Conversion to SM Type->maxspeedThr is a Literal Input -2016-05-02 14:47:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:21 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:47:21 DEBUG WPS2SM:100 - Guessed default value: 6 -2016-05-02 14:47:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A filter on the maximum speed to take into account for interpolation -2016-05-02 14:47:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:maxspeedThr -2016-05-02 14:47:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:21 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=6, value=null, name=maxspeedThr, description=A filter on the maximum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:6], typology=OBJECT] -2016-05-02 14:47:21 DEBUG WPS2SM:291 - Conversion to SM Type->headingAdjustment is a Literal Input -2016-05-02 14:47:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:21 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:47:21 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 14:47:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. -2016-05-02 14:47:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:headingAdjustment -2016-05-02 14:47:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:21 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=headingAdjustment, description=Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 14:47:21 DEBUG WPS2SM:291 - Conversion to SM Type->equalDist is a Literal Input -2016-05-02 14:47:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:47:21 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:47:21 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-02 14:47:21 DEBUG WPS2SM:302 - ValueType[]:[true, false] -2016-05-02 14:47:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Whether the number of positions returned should be equally spaced or not -2016-05-02 14:47:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:equalDist -2016-05-02 14:47:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:47:21 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=equalDist, description=Whether the number of positions returned should be equally spaced or not [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-02 14:47:21 DEBUG SClient4WPS:657 - Parameters: [ListParameter [type=java.lang.String, value=null, separator=|, name=InputFile, description=Input file in TACSAT format. E.g. http://goo.gl/i16kPw [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=npoints, description=The number of pings or positions required between each real or actual vessel position or ping [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=120, value=null, name=interval, description=Average time in minutes between two adjacent datapoints [Min N. of Entries:1; Max N. of Entries:1; default:120], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=margin, description=Maximum deviation from specified interval to find adjacent datapoints (tolerance) [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=100, value=null, name=res, description=Number of points to use to create interpolation (including start and end point) [Min N. of Entries:1; Max N. of Entries:1; default:100], typology=OBJECT], Parameter [name=method, description=Set to cHs for cubic Hermite spline or SL for Straight Line interpolation [Min N. of Entries:1; Max N. of Entries:1; default:cHs], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=fm, description=The FM parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=distscale, description=The DistScale parameter for cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=sigline, description=The Sigline parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=2, value=null, name=minspeedThr, description=A filter on the minimum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=6, value=null, name=maxspeedThr, description=A filter on the maximum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=headingAdjustment, description=Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], Parameter [name=equalDist, description=Whether the number of positions returned should be equally spaced or not [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM]] -2016-05-02 14:48:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:48:00 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:48:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:48:37 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:48:37 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM -2016-05-02 14:48:37 DEBUG WPS2SM:316 - Conversion to SM Type->RawTaxaNamesTable is a Complex Input -2016-05-02 14:48:37 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:48:37 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:48:37 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:48:37 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:RawTaxaNamesTable -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=RawTaxaNamesTable, description=Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->RawNamesColumn is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: rawnames -2016-05-02 14:48:37 DEBUG WPS2SM:129 - Machter title: The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames] -2016-05-02 14:48:37 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 14:48:37 DEBUG WPS2SM:131 - Machter group: the name of a column from RawTaxaNamesTable -2016-05-02 14:48:37 DEBUG WPS2SM:132 - Machter start: 80 -2016-05-02 14:48:37 DEBUG WPS2SM:133 - Machter end: 123 -2016-05-02 14:48:37 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 14:48:37 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: RawTaxaNamesTable -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:RawNamesColumn -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: bionout -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Name of the table which will contain the matches -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OutputTableLabel -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->Taxa_Authority_File is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: FISHBASE -2016-05-02 14:48:37 DEBUG WPS2SM:302 - ValueType[]:[ASFIS, FISHBASE, OBIS, OBIS_ANIMALIA, OBIS_CNIDARIA, OBIS_ECHINODERMATA, OBIS_PLATYHELMINTHES, COL_FULL, COL_CHORDATA, COL_MAMMALIA, IRMNG_ACTINOPTERYGII, WORMS_ANIMALIA, WORMS_PISCES] -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The reference dataset to use -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Taxa_Authority_File -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->Parser_Name is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: SIMPLE -2016-05-02 14:48:37 DEBUG WPS2SM:302 - ValueType[]:[SIMPLE, GNI, NONE] -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The Species - Authority parser -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Parser_Name -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->Activate_Preparsing_Processing is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-02 14:48:37 DEBUG WPS2SM:302 - ValueType[]:[true, false] -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Use preparsing rules to correct common errors -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Activate_Preparsing_Processing -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->Use_Stemmed_Genus_and_Species is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: false -2016-05-02 14:48:37 DEBUG WPS2SM:302 - ValueType[]:[true, false] -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Process using Genus and Species names without declension -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Use_Stemmed_Genus_and_Species -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->Accuracy_vs_Speed is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: MAX_ACCURACY -2016-05-02 14:48:37 DEBUG WPS2SM:302 - ValueType[]:[MAX_ACCURACY, LOW_SPEED, MEDIUM_SPEED, HIGH_SPEED, MAX_SPEED] -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Accuracy_vs_Speed -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->Matcher_1 is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: GSAy -2016-05-02 14:48:37 DEBUG WPS2SM:302 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Choose a Matcher -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Matcher_1 -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->Threshold_1 is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Threshold_1 -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->MaxResults_1 is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxResults_1 -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->Matcher_2 is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: FUZZYMATCH -2016-05-02 14:48:37 DEBUG WPS2SM:302 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Choose a Matcher -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Matcher_2 -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->Threshold_2 is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: 0.6 -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Threshold_2 -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->MaxResults_2 is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxResults_2 -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->Matcher_3 is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: LEVENSHTEIN -2016-05-02 14:48:37 DEBUG WPS2SM:302 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Choose a Matcher -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Matcher_3 -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->Threshold_3 is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Threshold_3 -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->MaxResults_3 is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxResults_3 -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->Matcher_4 is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: TRIGRAM -2016-05-02 14:48:37 DEBUG WPS2SM:302 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Choose a Matcher -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Matcher_4 -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->Threshold_4 is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: 0.4 -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Threshold_4 -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->MaxResults_4 is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxResults_4 -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->Matcher_5 is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: NONE -2016-05-02 14:48:37 DEBUG WPS2SM:302 - ValueType[]:[GSAy, FUZZYMATCH, LEVENSHTEIN, SOUNDEX, LEV_SDX_TRIG, TRIGRAM, NONE] -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Choose a Matcher (Optional) -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Matcher_5 -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->Threshold_5 is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Threshold (def. 0.2) -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Threshold_5 -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-02 14:48:37 DEBUG WPS2SM:291 - Conversion to SM Type->MaxResults_5 is a Literal Input -2016-05-02 14:48:37 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:48:37 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 14:48:37 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 14:48:37 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The maximum number of matching candidates per each raw input species -2016-05-02 14:48:37 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxResults_5 -2016-05-02 14:48:37 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:48:37 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 14:48:37 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=RawTaxaNamesTable, description=Input table containing raw taxa names that you want to match [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=RawNamesColumn, description=The column containing the raw taxa names with or without authoship information [the name of a column from RawTaxaNamesTable] [Min N. of Entries:1; Max N. of Entries:1; default:rawnames], typology=COLUMN], ObjectParameter [type=java.lang.String, defaultValue=bionout, value=null, name=OutputTableLabel, description=Name of the table which will contain the matches [Min N. of Entries:1; Max N. of Entries:1; default:bionout], typology=OBJECT], Parameter [name=Taxa_Authority_File, description=The reference dataset to use [Min N. of Entries:1; Max N. of Entries:1; default:FISHBASE], typology=ENUM], Parameter [name=Parser_Name, description=The Species - Authority parser [Min N. of Entries:1; Max N. of Entries:1; default:SIMPLE], typology=ENUM], Parameter [name=Activate_Preparsing_Processing, description=Use preparsing rules to correct common errors [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM], Parameter [name=Use_Stemmed_Genus_and_Species, description=Process using Genus and Species names without declension [Min N. of Entries:1; Max N. of Entries:1; default:false], typology=ENUM], Parameter [name=Accuracy_vs_Speed, description=A trade-off between recognition speed and accuracy. Max speed corresponds to search for strings with the same length only. [Min N. of Entries:1; Max N. of Entries:1; default:MAX_ACCURACY], typology=ENUM], Parameter [name=Matcher_1, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:GSAy], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_1, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_1, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_2, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:FUZZYMATCH], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.6, value=null, name=Threshold_2, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=MaxResults_2, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Matcher_3, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:LEVENSHTEIN], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_3, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_3, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_4, description=Choose a Matcher [Min N. of Entries:1; Max N. of Entries:1; default:TRIGRAM], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.4, value=null, name=Threshold_4, description=Threshold [Min N. of Entries:1; Max N. of Entries:1; default:0.4], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=MaxResults_4, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], Parameter [name=Matcher_5, description=Choose a Matcher (Optional) [Min N. of Entries:1; Max N. of Entries:1; default:NONE], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=Threshold_5, description=Threshold (def. 0.2) [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=MaxResults_5, description=The maximum number of matching candidates per each raw input species [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-02 14:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:48:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:48:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:48:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:48:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:48:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:48:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:48:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:48:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:48:37 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:48:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:48:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:48:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:48:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:48:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:48:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:48:37 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:48:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:48:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:48:37 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:48:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:48:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:48:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:48:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:48:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:48:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:48:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:48:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:48:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:48:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:48:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:48:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:48:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:48:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:48:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:48:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:48:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:48:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:48:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:48:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:48:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:48:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:48:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:48:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:48:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:48:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:48:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:48:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:48:37 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:48:37 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:48:37 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:48:37 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:48:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:48:37 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:48:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:48:37 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:48:37 INFO WorkspaceExplorerServiceImpl:142 - end time - 185 msc 0 sec -2016-05-02 14:48:37 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:48:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:48:53 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:48:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:48:53 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 14:48:53 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:48:53 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:48:54 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:48:54 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:48:54 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:48:54 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 14:48:54 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:48:54 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:48:54 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:48:54 DEBUG WPS2SM:316 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 14:48:54 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:48:54 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:48:54 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:48:54 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:48:54 ERROR WPS2SM:336 - Unclosed character class near index 75 -[a sequence of http links separated by (\p{ASCII}) , each indicating a table - ^ -2016-05-02 14:48:54 ERROR SClient4WPS:662 - Unclosed character class near index 75 -[a sequence of http links separated by (\p{ASCII}) , each indicating a table - ^ -2016-05-02 14:48:54 ERROR DataMinerManagerServiceImpl:135 - Error retrieving parameters: Unclosed character class near index 75 -[a sequence of http links separated by (\p{ASCII}) , each indicating a table - ^ -2016-05-02 14:48:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 14:48:55 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 14:49:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:49:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:50:58 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 14:50:58 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 14:50:58 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 14:50:58 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 14:50:59 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 14:50:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:50:59 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 14:50:59 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@42ac0bfa -2016-05-02 14:50:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:50:59 INFO ASLSession:352 - Logging the entrance -2016-05-02 14:50:59 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 14:50:59 DEBUG TemplateModel:83 - 2016-05-02 14:50:59, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 14:50:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:50:59 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 14:51:01 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 14:51:01 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 14:51:01 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:51:01 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 14:51:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:51:01 INFO ASLSession:352 - Logging the entrance -2016-05-02 14:51:01 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 14:51:01 DEBUG TemplateModel:83 - 2016-05-02 14:51:01, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 14:51:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:51:01 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 14:51:01 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 132 ms -2016-05-02 14:51:01 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 14:51:01 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 14:51:01 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 14:51:01 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 14:51:01 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 14:51:01 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 14:51:01 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 14:51:01 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 14:51:01 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 14:51:01 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 14:51:01 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 14:51:01 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 14:51:01 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 14:51:01 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 14:51:01 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 14:51:01 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 14:51:01 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 14:51:01 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@ebb47a -2016-05-02 14:51:01 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3a68191d -2016-05-02 14:51:01 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@5966b967 -2016-05-02 14:51:01 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@156c4d8d -2016-05-02 14:51:01 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 122 ms -2016-05-02 14:51:01 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 14:51:01 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 14:51:01 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 14:51:01 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 14:51:01 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 14:51:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:51:01 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 14:51:01 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 14:51:01 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 24 ms -2016-05-02 14:51:01 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 14:51:01 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:51:01 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 14:51:01 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:51:02 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 14:51:02 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 14:51:02 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 14:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:51:02 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 14:51:02 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:51:02 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 14:51:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:51:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:51:02 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 14:51:02 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 14:51:02 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 14:51:02 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 14:51:02 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 14:51:02 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 14:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 14:51:02 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 14:51:02 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 14:51:02 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 25 ms -2016-05-02 14:51:02 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 14:51:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:51:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:51:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:51:02 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 14:51:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:02 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 14:51:02 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:51:02 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 14:51:03 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 14:51:03 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 14:51:03 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 14:51:03 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 14:51:03 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 14:51:03 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 14:51:03 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 14:51:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:51:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:03 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 14:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 14:51:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:51:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:51:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:51:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:51:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:51:03 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 14:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 14:51:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:51:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:51:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:51:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:51:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:51:03 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 14:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 14:51:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:51:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:51:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:51:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:51:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:51:03 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 14:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 14:51:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:05 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 14:51:05 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 14:51:05 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 14:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:51:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:51:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:51:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:51:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:51:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:51:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:51:05 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 14:51:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:51:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:51:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:51:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:51:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:51:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:51:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:51:05 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 14:51:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:05 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 14:51:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:05 INFO WorkspaceExplorerServiceImpl:188 - end time - 122 msc 0 sec -2016-05-02 14:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:51:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:51:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:51:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:51:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:51:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:51:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:51:05 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 14:51:05 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 14:51:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:05 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 14:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 14:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:51:05 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 14:51:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 14:51:05 INFO WorkspaceExplorerServiceImpl:188 - end time - 133 msc 0 sec -2016-05-02 14:51:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 33 ms -2016-05-02 14:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 14:51:05 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 14:51:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 14:51:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-02 14:51:05 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 14:51:05 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 14:51:05 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 14:51:05 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 14:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 14:51:05 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 14:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 14:51:05 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 14:51:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 14:51:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 14:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 14:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 14:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 14:51:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:51:05 INFO WorkspaceExplorerServiceImpl:188 - end time - 354 msc 0 sec -2016-05-02 14:51:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:51:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:51:09 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:51:09 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 14:51:09 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:51:09 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 14:51:10 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 14:51:10 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 14:51:10 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 14:51:10 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 14:51:10 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 14:51:10 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 14:51:10 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 14:51:10 DEBUG WPS2SM:316 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 14:51:10 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 14:51:10 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 14:51:10 DEBUG WPS2SM:204 - Schema: null -2016-05-02 14:51:10 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 14:51:10 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 14:51:10 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 14:51:10 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 14:51:10 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 14:51:10 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 14:51:10 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 14:51:10 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 14:51:10 DEBUG WPS2SM:327 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 14:51:10 DEBUG WPS2SM:328 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 14:51:10 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:51:10 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 14:51:10 DEBUG WPS2SM:291 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 14:51:10 DEBUG WPS2SM:92 - WPS type: -2016-05-02 14:51:10 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 14:51:10 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 14:51:10 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 14:51:10 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 14:51:10 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 14:51:10 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 14:51:10 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 14:51:10 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 14:51:10 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 14:51:10 DEBUG WPS2SM:327 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 14:51:10 DEBUG WPS2SM:328 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 14:51:10 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 14:51:10 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 14:51:10 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 14:51:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:51:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:51:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:51:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:51:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:51:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:51:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:51:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:51:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:51:10 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:51:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:51:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:51:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:51:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:51:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:51:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:51:10 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:51:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:51:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:51:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:51:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:51:10 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 14:51:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:51:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:51:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:51:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:51:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:51:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:51:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:51:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:51:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:51:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:51:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:51:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:51:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:51:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:51:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:51:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:51:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:10 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:51:10 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:51:10 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:51:10 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:51:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:51:10 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:51:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:51:10 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:51:10 INFO WorkspaceExplorerServiceImpl:142 - end time - 211 msc 0 sec -2016-05-02 14:51:10 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:51:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:51:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:51:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:51:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:51:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:51:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:51:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:51:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:51:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:51:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:51:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:51:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:51:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:51:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:51:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:51:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:51:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:51:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:51:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:51:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:51:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:51:17 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 14:51:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:51:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:51:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:51:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:51:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:51:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:51:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:51:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:51:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:51:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:51:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:51:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:51:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:51:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:51:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:51:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:51:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:51:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:51:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:51:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:51:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:51:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:51:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:51:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:51:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:51:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:51:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:51:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 218 msc 0 sec -2016-05-02 14:51:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:51:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:51:54 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 14:52:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:52:49 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:53:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:53:44 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 14:54:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:54:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:55:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:55:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:56:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:56:29 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 14:56:51 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:56:51 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:56:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:56:51 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 14:56:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:56:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:56:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:56:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:56:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:56:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:56:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:56:51 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:56:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:56:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:56:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:56:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:56:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:56:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:56:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:56:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:56:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:56:51 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:56:51 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:56:51 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 14:56:51 DEBUG ServiceEngine:306 - get() - start -2016-05-02 14:56:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:56:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:56:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:56:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:56:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:56:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:56:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:56:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:56:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:56:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:56:51 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:56:51 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 14:56:51 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 14:56:51 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 14:56:51 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 14:56:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:56:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:56:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:56:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:56:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:56:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:56:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:56:51 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 14:56:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:56:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:56:51 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 14:56:51 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 14:56:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:56:51 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:56:51 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 14:56:51 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 14:56:51 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:56:51 DEBUG MongoIO:77 - open mongo connection -2016-05-02 14:56:51 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:56:51 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 14:56:51 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 14:56:51 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 14:56:51 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 14:56:51 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:51 INFO WorkspaceExplorerServiceImpl:188 - end time - 103 msc 0 sec -2016-05-02 14:56:51 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 14:56:51 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 14:56:52 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:52 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:52 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8592156e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@59d85c0e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@b83c937, socketFactory=javax.net.DefaultSocketFactory@790f3fc8, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 14:56:52 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 14:56:52 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 14:56:52 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:243262}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1700933, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:52 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 14:56:52 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:52 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:52 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1853738}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1917141, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:52 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2125816}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=917160, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:52 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:52 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1539601}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1364524, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 14:56:52 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1853739}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1853739}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 DEBUG command:56 - Command execution completed -2016-05-02 14:56:52 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1853739}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 DEBUG command:56 - Command execution completed -2016-05-02 14:56:52 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1853739}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 DEBUG command:56 - Command execution completed -2016-05-02 14:56:52 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 14:56:52 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1853739}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 DEBUG command:56 - Command execution completed -2016-05-02 14:56:52 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1853739}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 DEBUG command:56 - Command execution completed -2016-05-02 14:56:52 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1853739}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:56:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 14:56:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 14:56:53 DEBUG query:56 - Query completed -2016-05-02 14:56:53 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 14:56:53 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2125816} -2016-05-02 14:56:53 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1853739}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 14:56:53 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1539601} -2016-05-02 14:56:53 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:243262} -2016-05-02 14:56:53 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1853739} -2016-05-02 14:56:53 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1853738} -2016-05-02 14:56:53 INFO MongoIO:508 - Mongo has been closed -2016-05-02 14:56:53 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 14:56:53 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 14:56:53 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 14:56:53 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 14:56:53 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 14:56:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:56:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:56:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:56:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:56:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:56:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:56:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:56:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:56:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:56:53 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 14:56:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:56:53 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:56:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:56:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:56:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:56:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:56:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:56:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:56:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:56:53 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 14:56:53 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 14:56:53 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 14:56:53 DEBUG ServiceEngine:306 - get() - start -2016-05-02 14:56:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:56:53 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:56:53 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 14:56:53 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 14:56:53 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 14:56:53 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 14:56:53 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 14:56:53 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 14:56:53 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 14:56:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:56:53 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:56:53 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 14:56:53 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 14:56:53 DEBUG MongoIO:77 - open mongo connection -2016-05-02 14:56:53 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 14:56:53 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:53 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:53 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:53 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8592156e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@59d85c0e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@b83c937, socketFactory=javax.net.DefaultSocketFactory@790f3fc8, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 14:56:53 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 14:56:53 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 14:56:54 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:243263}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1350942, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:54 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 14:56:54 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:54 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:54 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2125817}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=861149, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:54 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1853740}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1632455, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:54 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:56:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:56:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:56:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:56:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:56:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:56:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:56:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:56:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:56:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:56:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:56:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:56:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:56:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:56:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:56:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:56:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:56:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:56:54 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1539602}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 14:56:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=4339104, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.3 ms, state=CONNECTED}] -2016-05-02 14:56:54 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 14:56:54 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1853741}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1853741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 DEBUG command:56 - Command execution completed -2016-05-02 14:56:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1853741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 DEBUG command:56 - Command execution completed -2016-05-02 14:56:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1853741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 DEBUG command:56 - Command execution completed -2016-05-02 14:56:54 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 14:56:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1853741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 DEBUG command:56 - Command execution completed -2016-05-02 14:56:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1853741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 DEBUG command:56 - Command execution completed -2016-05-02 14:56:54 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1853741}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 14:56:54 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 14:56:54 INFO WorkspaceExplorerServiceImpl:188 - end time - 90 msc 0 sec -2016-05-02 14:56:54 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:56:54 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 14:56:54 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 14:56:54 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 14:56:54 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 14:56:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.3 ms, state=CONNECTED}] -2016-05-02 14:56:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:56:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.3 ms, state=CONNECTED}] -2016-05-02 14:56:54 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 14:56:54 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 14:56:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:56:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:56:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:56:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:56:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:56:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:56:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:56:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:56:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:56:54 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 14:56:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:56:54 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:56:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:56:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:56:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:56:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:56:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:56:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:56:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:56:54 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 14:56:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:56:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:56:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:56:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:56:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:56:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:56:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:56:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:56:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:56:54 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 14:56:54 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 14:56:54 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 14:56:55 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 14:56:55 DEBUG query:56 - Query completed -2016-05-02 14:56:55 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 14:56:55 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2125817} -2016-05-02 14:56:55 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:243263} -2016-05-02 14:56:55 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1853741}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 14:56:55 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1853741} -2016-05-02 14:56:55 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1539602} -2016-05-02 14:56:55 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1853740} -2016-05-02 14:56:55 INFO MongoIO:508 - Mongo has been closed -2016-05-02 14:56:55 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 14:56:55 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 14:56:55 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 14:56:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:56:55 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:56:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:56:55 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 14:56:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:56:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:56:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:56:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:56:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:56:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:56:55 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 14:56:55 DEBUG ServiceEngine:193 - get() - start -2016-05-02 14:56:55 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:56:55 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:56:55 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 14:56:55 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 14:56:55 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 14:56:55 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 14:56:55 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 14:56:55 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 14:56:55 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:56:55 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:56:55 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 14:56:55 DEBUG Operation:173 - get(String) - start -2016-05-02 14:56:55 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 14:56:55 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 14:56:55 DEBUG MongoIO:77 - open mongo connection -2016-05-02 14:56:55 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 14:56:55 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:55 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:55 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:55 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8592156e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@59d85c0e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@b83c937, socketFactory=javax.net.DefaultSocketFactory@790f3fc8, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 14:56:55 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 14:56:55 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 14:56:56 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1853742}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1184272, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:56 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 14:56:56 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:56 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:56 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:56 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:243265}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2125818}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1276488, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1306628, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:56 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1539603}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1298881, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 14:56:56 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1853743}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG command:56 - Command execution completed -2016-05-02 14:56:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG command:56 - Command execution completed -2016-05-02 14:56:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG command:56 - Command execution completed -2016-05-02 14:56:56 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 14:56:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG command:56 - Command execution completed -2016-05-02 14:56:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG command:56 - Command execution completed -2016-05-02 14:56:56 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 14:56:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG command:56 - Command execution completed -2016-05-02 14:56:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG command:56 - Command execution completed -2016-05-02 14:56:56 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 14:56:56 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1853743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG query:56 - Query completed -2016-05-02 14:56:56 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 14:56:56 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 14:56:56 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 14:56:56 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1853743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG update:56 - Update completed -2016-05-02 14:56:56 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1853743}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG query:56 - Query completed -2016-05-02 14:56:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:56:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:56:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:56:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:56:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:56:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:56:56 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 14:56:56 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 14:56:56 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 14:56:56 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 14:56:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:56:56 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:56:56 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 14:56:56 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 14:56:56 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 14:56:56 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 14:56:56 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 14:56:56 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 14:56:56 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 14:56:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:56:56 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:56:56 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 14:56:56 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 14:56:56 DEBUG MongoIO:77 - open mongo connection -2016-05-02 14:56:56 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 14:56:56 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:56 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:56 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:56 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8592156e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@59d85c0e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@b83c937, socketFactory=javax.net.DefaultSocketFactory@790f3fc8, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 14:56:56 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 14:56:56 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 14:56:56 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:243266}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1372968, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:56 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 14:56:56 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:56 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:56:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:56 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1853744}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1219118, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:56 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:56 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2125819}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=906922, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:56:56 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1539604}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1247667, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:56:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 14:56:56 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1853745}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1853745}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG command:56 - Command execution completed -2016-05-02 14:56:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1853745}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG command:56 - Command execution completed -2016-05-02 14:56:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1853745}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG command:56 - Command execution completed -2016-05-02 14:56:56 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 14:56:56 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 14:56:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1853745}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG command:56 - Command execution completed -2016-05-02 14:56:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1853745}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG command:56 - Command execution completed -2016-05-02 14:56:56 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 14:56:56 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1853745}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:56:56 DEBUG query:56 - Query completed -2016-05-02 14:56:56 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 14:56:56 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2125819} -2016-05-02 14:56:56 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:243266} -2016-05-02 14:56:56 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1853745}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 14:56:56 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1853745} -2016-05-02 14:56:56 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1853744} -2016-05-02 14:56:56 INFO MongoIO:508 - Mongo has been closed -2016-05-02 14:56:56 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1539604} -2016-05-02 14:56:56 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 14:56:56 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 14:56:56 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 14:56:56 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 14:56:56 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 14:56:56 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 14:56:56 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 14:56:56 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 14:57:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:57:01 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:57:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:57:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:57:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:57:01 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 14:57:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:57:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:01 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 14:57:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:57:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 14:57:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:57:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:57:01 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:57:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:57:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:57:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:57:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:57:01 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:57:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:57:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:57:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:57:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:57:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:57:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:57:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:57:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:57:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:57:02 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:57:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:57:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 14:57:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:57:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 14:57:02 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 14:57:02 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 14:57:02 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 14:57:02 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 14:57:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:57:02 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 14:57:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 14:57:02 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 14:57:02 INFO WorkspaceExplorerServiceImpl:142 - end time - 187 msc 0 sec -2016-05-02 14:57:02 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 14:57:05 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2125818} -2016-05-02 14:57:05 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1853743}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 14:57:05 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1539603} -2016-05-02 14:57:05 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:243265} -2016-05-02 14:57:05 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1853743} -2016-05-02 14:57:05 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1853742} -2016-05-02 14:57:09 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId a5aca54d-67cf-4838-9025-9ef5bb204ae9 -2016-05-02 14:57:09 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId a5aca54d-67cf-4838-9025-9ef5bb204ae9 -2016-05-02 14:57:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:57:09 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 14:57:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:57:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:09 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: a5aca54d-67cf-4838-9025-9ef5bb204ae9 -2016-05-02 14:57:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:57:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 14:57:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 14:57:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:09 INFO JCRServlets:267 - Servlet getItemById a5aca54d-67cf-4838-9025-9ef5bb204ae9 -2016-05-02 14:57:09 INFO JCRServlets:267 - Servlet getItemById a5aca54d-67cf-4838-9025-9ef5bb204ae9 -2016-05-02 14:57:09 INFO JCRServlets:142 - Calling servlet getChildrenById a5aca54d-67cf-4838-9025-9ef5bb204ae9 by giancarlo.panichi -2016-05-02 14:57:09 INFO JCRServlets:267 - Servlet getItemById a5aca54d-67cf-4838-9025-9ef5bb204ae9 -2016-05-02 14:57:09 DEBUG JCRRepository:246 - session of giancarlo.panichi -2016-05-02 14:57:09 INFO WorkspaceExplorerServiceImpl:503 - returning size: 0 -2016-05-02 14:57:10 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:57:10 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:57:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:57:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:57:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:57:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:10 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:57:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:57:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:57:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:57:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:10 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:57:10 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:57:10 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 14:57:10 DEBUG ServiceEngine:306 - get() - start -2016-05-02 14:57:10 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:57:10 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:57:10 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 14:57:10 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 14:57:10 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 14:57:10 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 14:57:10 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 14:57:10 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 14:57:10 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 14:57:10 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:57:10 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:57:10 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 14:57:10 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 14:57:10 DEBUG MongoIO:77 - open mongo connection -2016-05-02 14:57:10 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 14:57:10 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:10 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:10 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:10 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8592156e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@59d85c0e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@b83c937, socketFactory=javax.net.DefaultSocketFactory@790f3fc8, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 14:57:10 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 14:57:10 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 14:57:10 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:243270}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1363021, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:10 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 14:57:10 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:10 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:10 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2125823}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=892581, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:10 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1853748}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1489096, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:10 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:10 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1539607}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1598940, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 14:57:10 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1853749}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1853749}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 DEBUG command:56 - Command execution completed -2016-05-02 14:57:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1853749}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 DEBUG command:56 - Command execution completed -2016-05-02 14:57:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1853749}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 DEBUG command:56 - Command execution completed -2016-05-02 14:57:10 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 14:57:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1853749}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 DEBUG command:56 - Command execution completed -2016-05-02 14:57:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1853749}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 DEBUG command:56 - Command execution completed -2016-05-02 14:57:10 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1853749}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:57:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 14:57:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:57:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:57:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:57:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:11 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:57:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:57:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:57:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:57:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:11 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:57:11 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 14:57:11 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 14:57:11 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 14:57:11 INFO WorkspaceExplorerServiceImpl:188 - end time - 56 msc 0 sec -2016-05-02 14:57:11 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 14:57:11 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 14:57:11 DEBUG query:56 - Query completed -2016-05-02 14:57:11 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 14:57:11 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2125823} -2016-05-02 14:57:11 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:243270} -2016-05-02 14:57:11 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1539607} -2016-05-02 14:57:11 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1853749}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 14:57:11 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1853749} -2016-05-02 14:57:11 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1853748} -2016-05-02 14:57:11 INFO MongoIO:508 - Mongo has been closed -2016-05-02 14:57:11 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 14:57:11 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 14:57:11 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 14:57:12 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 14:57:12 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 14:57:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:57:12 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 14:57:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 14:57:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:12 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 14:57:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:57:12 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:57:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:57:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:12 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 14:57:12 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 14:57:12 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 14:57:12 DEBUG ServiceEngine:306 - get() - start -2016-05-02 14:57:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:57:12 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:57:12 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 14:57:12 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 14:57:12 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 14:57:12 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 14:57:12 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 14:57:12 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 14:57:12 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 14:57:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:57:12 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:57:12 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 14:57:12 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 14:57:12 DEBUG MongoIO:77 - open mongo connection -2016-05-02 14:57:12 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 14:57:12 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:12 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:12 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:12 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8592156e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@59d85c0e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@b83c937, socketFactory=javax.net.DefaultSocketFactory@790f3fc8, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 14:57:12 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 14:57:12 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 14:57:12 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:243272}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1484313, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:12 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 14:57:12 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1853751}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:12 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1457833, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:12 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:12 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2125826}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=932289, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:12 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1539611}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1568494, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 14:57:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:57:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:57:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:57:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:57:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:57:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:57:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:12 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1853752}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1853752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 DEBUG command:56 - Command execution completed -2016-05-02 14:57:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1853752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:12 DEBUG command:56 - Command execution completed -2016-05-02 14:57:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1853752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 DEBUG command:56 - Command execution completed -2016-05-02 14:57:12 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 14:57:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1853752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 DEBUG command:56 - Command execution completed -2016-05-02 14:57:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1853752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 DEBUG command:56 - Command execution completed -2016-05-02 14:57:12 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1853752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:12 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 14:57:12 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 14:57:12 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 14:57:12 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 14:57:12 INFO WorkspaceExplorerServiceImpl:188 - end time - 50 msc 0 sec -2016-05-02 14:57:12 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 14:57:12 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 14:57:12 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 14:57:12 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 14:57:12 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 14:57:13 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 14:57:13 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 14:57:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:57:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:57:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:57:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:13 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 14:57:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:57:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:57:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:57:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:13 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 14:57:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:57:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 14:57:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 14:57:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:13 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 14:57:13 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 14:57:13 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 14:57:13 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 14:57:13 DEBUG query:56 - Query completed -2016-05-02 14:57:13 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 14:57:13 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2125826} -2016-05-02 14:57:13 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:243272} -2016-05-02 14:57:13 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1539611} -2016-05-02 14:57:13 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1853752}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 14:57:13 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1853752} -2016-05-02 14:57:13 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1853751} -2016-05-02 14:57:13 INFO MongoIO:508 - Mongo has been closed -2016-05-02 14:57:13 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 14:57:13 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 14:57:13 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 14:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 14:57:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 14:57:14 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 14:57:14 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-02 14:57:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:14 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 14:57:14 DEBUG ServiceEngine:193 - get() - start -2016-05-02 14:57:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:57:14 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:57:14 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-02 14:57:14 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 14:57:14 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 14:57:14 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 14:57:14 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 14:57:14 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 14:57:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:57:14 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:57:14 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 14:57:14 DEBUG Operation:173 - get(String) - start -2016-05-02 14:57:14 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 14:57:14 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 14:57:14 DEBUG MongoIO:77 - open mongo connection -2016-05-02 14:57:14 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 14:57:14 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:14 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:14 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:14 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8592156e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@59d85c0e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@b83c937, socketFactory=javax.net.DefaultSocketFactory@790f3fc8, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 14:57:14 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 14:57:14 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 14:57:14 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:243273}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1266604, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:14 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 14:57:14 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:14 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:14 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2125827}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=826342, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:14 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1853753}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1338784, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:14 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:14 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1539612}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1603205, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 14:57:14 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1853754}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1853754}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG command:56 - Command execution completed -2016-05-02 14:57:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1853754}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG command:56 - Command execution completed -2016-05-02 14:57:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1853754}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG command:56 - Command execution completed -2016-05-02 14:57:14 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 14:57:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1853754}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG command:56 - Command execution completed -2016-05-02 14:57:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1853754}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG command:56 - Command execution completed -2016-05-02 14:57:14 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 14:57:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1853754}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG command:56 - Command execution completed -2016-05-02 14:57:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1853754}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG command:56 - Command execution completed -2016-05-02 14:57:14 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 14:57:14 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1853754}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG query:56 - Query completed -2016-05-02 14:57:14 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-02 14:57:14 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 14:57:14 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 14:57:14 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1853754}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG update:56 - Update completed -2016-05-02 14:57:14 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1853754}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:14 DEBUG query:56 - Query completed -2016-05-02 14:57:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 14:57:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 14:57:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 14:57:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 14:57:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 14:57:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 14:57:14 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 14:57:15 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-02 14:57:15 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 14:57:15 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 14:57:15 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:57:15 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:57:15 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-02 14:57:15 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 14:57:15 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 14:57:15 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 14:57:15 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 14:57:15 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 14:57:15 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 14:57:15 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 14:57:15 DEBUG BucketCoding:42 - coding name done -2016-05-02 14:57:15 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 14:57:15 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 14:57:15 DEBUG MongoIO:77 - open mongo connection -2016-05-02 14:57:15 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 14:57:15 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:15 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:15 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:15 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@8592156e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@59d85c0e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@b83c937, socketFactory=javax.net.DefaultSocketFactory@790f3fc8, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 14:57:15 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 14:57:15 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 14:57:15 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:243274}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1452475, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:15 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 14:57:15 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:15 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 14:57:15 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1853755}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:15 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2125828}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=947944, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=6238339, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:15 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 14:57:15 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1539613}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1462166, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 14:57:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 14:57:15 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1853756}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1853756}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 DEBUG command:56 - Command execution completed -2016-05-02 14:57:15 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1853756}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 DEBUG command:56 - Command execution completed -2016-05-02 14:57:15 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1853756}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 DEBUG command:56 - Command execution completed -2016-05-02 14:57:15 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 14:57:15 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 14:57:15 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1853756}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 DEBUG command:56 - Command execution completed -2016-05-02 14:57:15 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1853756}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 DEBUG command:56 - Command execution completed -2016-05-02 14:57:15 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 14:57:15 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1853756}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 DEBUG query:56 - Query completed -2016-05-02 14:57:15 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-02 14:57:15 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2125828} -2016-05-02 14:57:15 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:243274} -2016-05-02 14:57:15 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1539613} -2016-05-02 14:57:15 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1853756}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 14:57:15 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1853756} -2016-05-02 14:57:15 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1853755} -2016-05-02 14:57:15 INFO MongoIO:508 - Mongo has been closed -2016-05-02 14:57:15 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 14:57:15 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 14:57:15 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 14:57:15 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 14:57:15 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 14:57:15 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 14:57:15 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-02 14:57:15 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-02 14:57:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 14:57:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:57:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 14:57:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 14:57:24 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 14:57:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 14:57:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 14:57:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 14:57:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 14:57:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 14:57:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 14:57:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 14:57:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 14:57:28 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2125827} -2016-05-02 14:57:28 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1853754}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 14:57:28 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1853754} -2016-05-02 14:57:28 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:243273} -2016-05-02 14:57:28 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1539612} -2016-05-02 14:57:28 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1853753} -2016-05-02 14:58:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:58:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 14:59:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 14:59:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:00:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:00:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:01:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:01:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:01:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:01:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:02:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:02:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:03:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:03:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:05:08 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 15:05:08 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 15:05:08 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 15:05:08 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 15:05:08 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 15:05:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:05:08 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 15:05:08 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@43a4c35b -2016-05-02 15:05:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:05:08 INFO ASLSession:352 - Logging the entrance -2016-05-02 15:05:08 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 15:05:08 DEBUG TemplateModel:83 - 2016-05-02 15:05:08, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 15:05:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:05:08 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 15:05:11 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 15:05:11 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 15:05:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:05:11 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 15:05:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:05:11 INFO ASLSession:352 - Logging the entrance -2016-05-02 15:05:11 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 15:05:11 DEBUG TemplateModel:83 - 2016-05-02 15:05:11, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 15:05:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:05:11 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 15:05:11 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 131 ms -2016-05-02 15:05:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 15:05:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 15:05:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 15:05:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 15:05:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 15:05:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 15:05:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 15:05:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 15:05:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 15:05:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 15:05:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 15:05:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 15:05:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 15:05:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 15:05:11 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 15:05:11 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:05:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 15:05:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@7539f47 -2016-05-02 15:05:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@13f925d2 -2016-05-02 15:05:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@51bae137 -2016-05-02 15:05:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@5285d778 -2016-05-02 15:05:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 130 ms -2016-05-02 15:05:11 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 15:05:11 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 15:05:11 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 15:05:11 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 15:05:11 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 15:05:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:05:11 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:05:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 15:05:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 19 ms -2016-05-02 15:05:11 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 15:05:11 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:05:11 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 15:05:11 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:05:12 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 15:05:12 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 15:05:12 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 15:05:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:05:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:05:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:05:12 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 15:05:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:05:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:05:12 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 15:05:12 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 15:05:12 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 15:05:12 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 15:05:12 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 15:05:12 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 15:05:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 15:05:12 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:05:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 15:05:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 28 ms -2016-05-02 15:05:12 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 15:05:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:05:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:05:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:05:12 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 15:05:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:05:12 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 15:05:13 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 15:05:13 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:05:13 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 15:05:13 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 15:05:13 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 15:05:13 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 15:05:13 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 15:05:13 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 15:05:13 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 15:05:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:05:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:05:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:05:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:05:13 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:05:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 15:05:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:05:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:05:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:05:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:05:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:05:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:05:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:05:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:05:13 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:05:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 15:05:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:05:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:05:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:05:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:05:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:05:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:05:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:05:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:05:13 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:05:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 15:05:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:05:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:05:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:05:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:05:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:05:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:05:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:05:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:05:13 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:05:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 15:05:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:05:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:05:14 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 15:05:14 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 15:05:14 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 15:05:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:05:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:05:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:05:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:05:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:05:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:05:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:05:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:05:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:05:14 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 15:05:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:05:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:05:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:05:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:05:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:05:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:05:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:05:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:05:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:05:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:05:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:05:15 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 15:05:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:05:15 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 15:05:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:05:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:05:15 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:05:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:05:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:05:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:05:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:05:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:05:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:05:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:05:15 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 15:05:15 INFO WorkspaceExplorerServiceImpl:188 - end time - 148 msc 0 sec -2016-05-02 15:05:15 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 15:05:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:05:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:05:15 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 15:05:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 15:05:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:05:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:05:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 15:05:15 INFO WorkspaceExplorerServiceImpl:188 - end time - 183 msc 0 sec -2016-05-02 15:05:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-05-02 15:05:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 15:05:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:05:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 15:05:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-02 15:05:15 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 15:05:15 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 15:05:15 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 15:05:15 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 15:05:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 15:05:15 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 15:05:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 15:05:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:05:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 15:05:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-05-02 15:05:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 15:05:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 15:05:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 15:05:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:05:15 INFO WorkspaceExplorerServiceImpl:188 - end time - 427 msc 0 sec -2016-05-02 15:05:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:05:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:05:18 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:05:18 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 15:05:18 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:05:18 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:05:19 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:05:19 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:05:19 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 15:05:19 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 15:05:19 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:05:19 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:05:19 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:05:19 DEBUG WPS2SM:316 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 15:05:19 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 15:05:19 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:05:19 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:05:19 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:05:19 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:05:19 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 15:05:19 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 15:05:19 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 15:05:19 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 15:05:19 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 15:05:19 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 15:05:19 DEBUG WPS2SM:327 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 15:05:19 DEBUG WPS2SM:328 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 15:05:19 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:05:19 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 15:05:19 DEBUG WPS2SM:291 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 15:05:19 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:05:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:05:19 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:05:19 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:05:19 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 15:05:19 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 15:05:19 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 15:05:19 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 15:05:19 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 15:05:19 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 15:05:19 DEBUG WPS2SM:327 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 15:05:19 DEBUG WPS2SM:328 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 15:05:19 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:05:19 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 15:05:19 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 15:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:05:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:05:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:05:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:05:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:05:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:05:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:05:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:05:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:05:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:05:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:05:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:05:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:05:19 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:05:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:05:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:05:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:05:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:05:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:05:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:05:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:05:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:05:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:05:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:05:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:05:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:05:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:05:19 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:05:19 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:05:19 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:05:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:05:19 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:05:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:05:19 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:05:19 INFO WorkspaceExplorerServiceImpl:142 - end time - 214 msc 0 sec -2016-05-02 15:05:19 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:06:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:06:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:06:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:10:10 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 15:10:10 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 15:10:10 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 15:10:10 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 15:10:10 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 15:10:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:10:10 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 15:10:10 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@370e8923 -2016-05-02 15:10:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:10:10 INFO ASLSession:352 - Logging the entrance -2016-05-02 15:10:10 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 15:10:10 DEBUG TemplateModel:83 - 2016-05-02 15:10:10, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 15:10:10 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:10:10 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 15:10:12 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 15:10:12 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 15:10:12 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:10:12 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 15:10:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:10:12 INFO ASLSession:352 - Logging the entrance -2016-05-02 15:10:12 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 15:10:12 DEBUG TemplateModel:83 - 2016-05-02 15:10:12, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 15:10:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:10:12 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 15:10:12 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 122 ms -2016-05-02 15:10:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 15:10:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 15:10:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 15:10:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 15:10:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 15:10:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 15:10:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 15:10:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 15:10:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 15:10:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 15:10:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 15:10:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 15:10:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 15:10:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 15:10:12 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 15:10:12 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:10:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 15:10:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@709dbf39 -2016-05-02 15:10:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3f365dd2 -2016-05-02 15:10:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@7374a497 -2016-05-02 15:10:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@73c6a5a -2016-05-02 15:10:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 125 ms -2016-05-02 15:10:13 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 15:10:13 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 15:10:13 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 15:10:13 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 15:10:13 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 15:10:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:10:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:10:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 15:10:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-02 15:10:13 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 15:10:13 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:10:13 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 15:10:13 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:10:13 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 15:10:13 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 15:10:13 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 15:10:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:10:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:10:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:10:13 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 15:10:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:13 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 15:10:13 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 15:10:13 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 15:10:13 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 15:10:13 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 15:10:13 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 15:10:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 15:10:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:10:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 15:10:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 19 ms -2016-05-02 15:10:13 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 15:10:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:10:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:13 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 15:10:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:13 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 15:10:13 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 15:10:14 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 15:10:14 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 15:10:14 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 15:10:14 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 15:10:14 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 15:10:14 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 15:10:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:14 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:10:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 15:10:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:14 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:10:14 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 15:10:14 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:10:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 15:10:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:14 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:10:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 15:10:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:14 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:10:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 15:10:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:15 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 15:10:15 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 15:10:15 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 15:10:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:10:15 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:10:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:10:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:15 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 15:10:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:10:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:10:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:10:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:15 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 15:10:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:15 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 15:10:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 123 msc 0 sec -2016-05-02 15:10:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:10:16 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:10:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:10:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:16 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 15:10:16 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 15:10:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:16 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 15:10:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 122 msc 0 sec -2016-05-02 15:10:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 15:10:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:10:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:10:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 15:10:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-02 15:10:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 15:10:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:10:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 15:10:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 64 ms -2016-05-02 15:10:16 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 15:10:16 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 15:10:16 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 15:10:16 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 15:10:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 15:10:16 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 15:10:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 15:10:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:10:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 15:10:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 15:10:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 15:10:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 15:10:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 15:10:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:10:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 427 msc 0 sec -2016-05-02 15:10:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:10:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:10:21 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:10:21 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 15:10:21 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:10:21 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:10:21 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:10:21 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:10:21 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 15:10:21 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 15:10:21 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:10:21 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:10:21 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:10:21 DEBUG WPS2SM:316 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 15:10:21 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 15:10:21 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:10:21 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:10:21 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:10:21 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:10:21 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 15:10:21 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 15:10:21 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 15:10:21 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 15:10:21 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 15:10:21 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 15:10:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 15:10:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 15:10:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:10:21 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 15:10:21 DEBUG WPS2SM:291 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 15:10:21 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:10:21 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:10:21 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:10:21 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:10:21 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 15:10:21 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 15:10:21 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 15:10:21 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 15:10:21 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 15:10:21 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 15:10:21 DEBUG WPS2SM:327 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 15:10:21 DEBUG WPS2SM:328 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 15:10:21 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:10:21 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 15:10:21 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 15:10:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:10:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:10:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:10:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:10:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:10:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:10:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:21 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:10:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:10:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:10:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:10:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:10:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:10:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:10:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:10:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:10:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:10:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:10:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:10:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:22 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:10:22 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:10:22 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:10:22 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:10:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:10:22 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:10:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:10:22 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:10:22 INFO WorkspaceExplorerServiceImpl:142 - end time - 219 msc 0 sec -2016-05-02 15:10:22 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:10:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:10:24 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:10:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:10:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:10:24 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:10:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:10:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:24 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:10:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:10:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:10:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:10:25 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:10:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:10:25 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:10:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:10:25 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:10:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:10:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:10:25 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:10:25 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:10:25 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:10:25 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:10:25 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:10:25 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:10:25 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:10:25 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:10:25 INFO WorkspaceExplorerServiceImpl:142 - end time - 219 msc 0 sec -2016-05-02 15:10:25 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:10:34 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:10:34 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:10:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:10:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:10:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:10:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:34 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:10:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:10:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:10:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:10:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:34 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:10:34 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:10:34 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:10:34 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:10:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:10:34 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:10:34 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 15:10:34 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 15:10:34 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:10:34 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:10:34 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:10:34 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:10:34 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:10:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:10:34 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:10:34 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:10:34 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:10:34 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:10:34 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:10:34 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:34 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:34 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:34 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@65865940, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7004747, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@234789e8, socketFactory=javax.net.DefaultSocketFactory@2daef070, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:10:34 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:10:34 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:10:34 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:243408}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:10:34 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1853890}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:10:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1558528, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2196817, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:34 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:10:34 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:34 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:34 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:34 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2125961}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:10:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:10:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1057220, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:34 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1539745}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:10:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:10:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1542824, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 15:10:34 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1853891}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1853891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:34 DEBUG command:56 - Command execution completed -2016-05-02 15:10:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1853891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:34 DEBUG command:56 - Command execution completed -2016-05-02 15:10:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1853891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:34 DEBUG command:56 - Command execution completed -2016-05-02 15:10:34 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:10:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1853891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:34 DEBUG command:56 - Command execution completed -2016-05-02 15:10:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1853891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:34 DEBUG command:56 - Command execution completed -2016-05-02 15:10:34 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1853891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:10:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 15:10:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:10:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:10:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:10:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:10:35 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:10:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:10:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:35 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:10:35 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:10:35 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:10:35 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:10:35 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:10:35 INFO WorkspaceExplorerServiceImpl:188 - end time - 54 msc 0 sec -2016-05-02 15:10:35 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:10:35 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:10:35 DEBUG query:56 - Query completed -2016-05-02 15:10:35 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 15:10:35 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2125961} -2016-05-02 15:10:35 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:243408} -2016-05-02 15:10:35 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1853891}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:10:35 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1539745} -2016-05-02 15:10:35 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1853891} -2016-05-02 15:10:35 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1853890} -2016-05-02 15:10:35 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:10:35 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:10:35 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:10:35 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 15:10:36 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:10:36 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:10:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:10:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:10:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:10:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:36 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:10:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:10:36 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:10:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:10:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:36 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:10:36 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:10:36 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:10:36 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:10:36 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:10:36 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:10:36 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 15:10:36 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:10:36 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:10:36 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:10:36 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:10:36 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:10:36 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:10:36 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:10:36 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:10:36 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:10:36 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:10:36 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:10:36 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:10:36 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:36 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:36 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:36 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@65865940, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7004747, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@234789e8, socketFactory=javax.net.DefaultSocketFactory@2daef070, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:10:36 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:10:36 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:10:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:10:36 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:10:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:10:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:10:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:10:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:10:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:36 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:243409}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1318668, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:36 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:10:36 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:36 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:36 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:10:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:36 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1853892}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:10:36 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2125962}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1414294, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=8518190, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:36 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=8.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:36 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1539746}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1615102, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=8.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:10:36 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:10:36 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:10:36 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1853893}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1853893}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 DEBUG command:56 - Command execution completed -2016-05-02 15:10:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1853893}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 DEBUG command:56 - Command execution completed -2016-05-02 15:10:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1853893}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 DEBUG command:56 - Command execution completed -2016-05-02 15:10:36 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:10:36 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1853893}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 DEBUG command:56 - Command execution completed -2016-05-02 15:10:36 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1853893}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 DEBUG command:56 - Command execution completed -2016-05-02 15:10:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1853893}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:36 INFO WorkspaceExplorerServiceImpl:188 - end time - 50 msc 0 sec -2016-05-02 15:10:36 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:10:36 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:10:37 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:10:37 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:10:37 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:10:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:10:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=8.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:10:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:10:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=8.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:10:37 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:10:37 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:10:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:10:37 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:10:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:10:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:37 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:10:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:10:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:10:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:10:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:37 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:10:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:10:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:10:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:10:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:37 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:10:37 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:10:37 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:10:37 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 15:10:37 DEBUG query:56 - Query completed -2016-05-02 15:10:37 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 15:10:37 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2125962} -2016-05-02 15:10:38 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:243409} -2016-05-02 15:10:38 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1539746} -2016-05-02 15:10:38 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1853893}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:10:38 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1853893} -2016-05-02 15:10:38 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:10:38 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:10:38 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:10:38 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 15:10:38 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1853892} -2016-05-02 15:10:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:10:38 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:10:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:10:38 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 15:10:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:38 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:10:38 DEBUG ServiceEngine:193 - get() - start -2016-05-02 15:10:38 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:10:38 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:10:38 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 15:10:38 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:10:38 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:10:38 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:10:38 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 15:10:38 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:10:38 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:10:38 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:10:38 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:10:38 DEBUG Operation:173 - get(String) - start -2016-05-02 15:10:38 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:10:38 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:10:38 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:10:38 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:10:38 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:38 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:38 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:38 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@65865940, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7004747, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@234789e8, socketFactory=javax.net.DefaultSocketFactory@2daef070, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:10:38 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:10:38 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:10:38 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1853894}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1302391, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:38 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:10:38 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:38 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:38 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:243411}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2301166, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:38 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2125963}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1111933, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:38 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1539748}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1330640, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:10:38 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1853895}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853895}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 DEBUG command:56 - Command execution completed -2016-05-02 15:10:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853895}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 DEBUG command:56 - Command execution completed -2016-05-02 15:10:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853895}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 DEBUG command:56 - Command execution completed -2016-05-02 15:10:38 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 15:10:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853895}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 DEBUG command:56 - Command execution completed -2016-05-02 15:10:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853895}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 DEBUG command:56 - Command execution completed -2016-05-02 15:10:38 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:10:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853895}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 DEBUG command:56 - Command execution completed -2016-05-02 15:10:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853895}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 DEBUG command:56 - Command execution completed -2016-05-02 15:10:38 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:10:38 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1853895}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:38 DEBUG query:56 - Query completed -2016-05-02 15:10:38 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 15:10:38 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 15:10:38 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 15:10:38 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1853895}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 DEBUG update:56 - Update completed -2016-05-02 15:10:39 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1853895}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 DEBUG query:56 - Query completed -2016-05-02 15:10:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:10:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:10:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:10:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:10:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:10:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:10:39 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:10:39 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 15:10:39 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 15:10:39 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 15:10:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:10:39 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:10:39 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 15:10:39 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:10:39 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 15:10:39 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:10:39 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 15:10:39 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 15:10:39 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:10:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:10:39 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:10:39 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:10:39 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:10:39 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:10:39 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:10:39 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:39 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:39 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:39 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@65865940, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7004747, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@234789e8, socketFactory=javax.net.DefaultSocketFactory@2daef070, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:10:39 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:10:39 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:10:39 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1853896}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:243412}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1288970, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:39 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:10:39 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:39 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:10:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1498786, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:39 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:39 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2125964}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=881876, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:10:39 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1539749}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1527857, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:10:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 15:10:39 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1853897}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1853897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 DEBUG command:56 - Command execution completed -2016-05-02 15:10:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1853897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 DEBUG command:56 - Command execution completed -2016-05-02 15:10:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1853897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 DEBUG command:56 - Command execution completed -2016-05-02 15:10:39 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:10:39 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:10:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1853897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 DEBUG command:56 - Command execution completed -2016-05-02 15:10:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1853897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 DEBUG command:56 - Command execution completed -2016-05-02 15:10:39 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:10:39 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1853897}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:39 DEBUG query:56 - Query completed -2016-05-02 15:10:39 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 15:10:39 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2125964} -2016-05-02 15:10:39 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:243412} -2016-05-02 15:10:39 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1539749} -2016-05-02 15:10:39 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1853897}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:10:39 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1853897} -2016-05-02 15:10:39 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:10:39 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1853896} -2016-05-02 15:10:39 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:10:39 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:10:39 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:10:39 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:10:39 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 15:10:39 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:10:39 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 15:10:39 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 15:10:48 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:10:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:10:48 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:10:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:10:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:10:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:10:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:10:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:10:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:10:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:10:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:10:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:10:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:10:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:10:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:11:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:11:05 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:11:08 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:11:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:11:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:11:08 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:11:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:11:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:11:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:11:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:11:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:11:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:11:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:11:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:11:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:11:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:11:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:11:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:11:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:11:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:11:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:11:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:11:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:11:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:11:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:11:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:11:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:11:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:11:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:11:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:11:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:11:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:11:38 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:11:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:11:48 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:11:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:11:48 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:11:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:11:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:11:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:11:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:11:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:11:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:11:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:11:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:11:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:11:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:11:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:11:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:11:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 15:12:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:12:00 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:12:08 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:12:08 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:12:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:12:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 15:12:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 15:12:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 15:12:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:12:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:12:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:12:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:12:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:12:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:12:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:12:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:12:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:12:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 15:12:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:12:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:12:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 15:12:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:12:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 15:12:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 15:12:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:12:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:12:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:12:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:12:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:12:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:12:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:12:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:12:38 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:12:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}] -2016-05-02 15:12:48 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:12:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}] -2016-05-02 15:12:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:12:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}] -2016-05-02 15:12:48 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:12:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}] -2016-05-02 15:12:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:12:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}] -2016-05-02 15:12:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:12:55 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:12:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:12:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}] -2016-05-02 15:12:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:12:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}] -2016-05-02 15:12:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:12:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}] -2016-05-02 15:12:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:12:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 15:17:17 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 15:17:17 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 15:17:17 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 15:17:17 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 15:17:17 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 15:17:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:17:17 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 15:17:17 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@891e5fd -2016-05-02 15:17:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:17:17 INFO ASLSession:352 - Logging the entrance -2016-05-02 15:17:17 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 15:17:17 DEBUG TemplateModel:83 - 2016-05-02 15:17:17, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 15:17:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:17:17 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 15:17:20 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 15:17:20 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 15:17:20 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:17:20 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 15:17:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:17:20 INFO ASLSession:352 - Logging the entrance -2016-05-02 15:17:20 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 15:17:20 DEBUG TemplateModel:83 - 2016-05-02 15:17:20, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 15:17:20 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:17:20 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 15:17:20 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 120 ms -2016-05-02 15:17:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 15:17:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 15:17:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 15:17:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 15:17:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 15:17:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 15:17:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 15:17:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 15:17:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 15:17:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 15:17:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 15:17:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 15:17:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 15:17:20 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 15:17:20 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 15:17:21 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:17:21 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 15:17:21 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@4810de56 -2016-05-02 15:17:21 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@35fc01da -2016-05-02 15:17:21 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@64f16cfd -2016-05-02 15:17:21 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@29d8fea8 -2016-05-02 15:17:21 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 222 ms -2016-05-02 15:17:21 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 15:17:21 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 15:17:21 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 15:17:21 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 15:17:21 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 15:17:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:17:21 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:17:21 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 15:17:21 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 26 ms -2016-05-02 15:17:21 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 15:17:21 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:17:21 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 15:17:21 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:17:21 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 15:17:21 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 15:17:21 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 15:17:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:17:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:17:21 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:17:21 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 15:17:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:22 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 15:17:22 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 15:17:22 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 15:17:22 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 15:17:22 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 15:17:22 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 15:17:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 15:17:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:17:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 15:17:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-02 15:17:22 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:17:22 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 15:17:22 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 15:17:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:17:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:22 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 15:17:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:22 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 15:17:22 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 15:17:23 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 15:17:23 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 15:17:23 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 15:17:23 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 15:17:23 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 15:17:23 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 15:17:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:17:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:17:23 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:17:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 15:17:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:17:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:17:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:23 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:17:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 15:17:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:17:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:17:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:23 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:17:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 15:17:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:17:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:17:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:23 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:17:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 15:17:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:17:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:17:25 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 15:17:25 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 15:17:25 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 15:17:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:17:25 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:17:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:17:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:25 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 15:17:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:17:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:17:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:17:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:17:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:17:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:25 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 15:17:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:17:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:17:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:17:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:17:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:17:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:25 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 15:17:25 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 15:17:25 INFO WorkspaceExplorerServiceImpl:188 - end time - 205 msc 0 sec -2016-05-02 15:17:25 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 15:17:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:17:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:17:25 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 15:17:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 15:17:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:17:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:17:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 15:17:25 INFO WorkspaceExplorerServiceImpl:188 - end time - 149 msc 0 sec -2016-05-02 15:17:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 15:17:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 15:17:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:17:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 15:17:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 20 ms -2016-05-02 15:17:25 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 15:17:25 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 15:17:25 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 15:17:25 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 15:17:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 15:17:25 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 15:17:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 15:17:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:17:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 15:17:26 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 15:17:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 15:17:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 15:17:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 15:17:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:17:26 INFO WorkspaceExplorerServiceImpl:188 - end time - 357 msc 0 sec -2016-05-02 15:17:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:17:31 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:17:31 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:17:31 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 15:17:31 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:17:31 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:17:31 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:17:31 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:17:31 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 15:17:31 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 15:17:31 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:17:31 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:17:31 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:17:31 DEBUG WPS2SM:316 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 15:17:31 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 15:17:31 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:17:31 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:17:31 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:17:31 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:17:31 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 15:17:31 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 15:17:31 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 15:17:31 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 15:17:31 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 15:17:31 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 15:17:31 DEBUG WPS2SM:327 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 15:17:31 DEBUG WPS2SM:328 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 15:17:31 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:17:31 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 15:17:31 DEBUG WPS2SM:291 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 15:17:31 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:17:31 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:17:31 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:17:31 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:17:31 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 15:17:31 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 15:17:31 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 15:17:31 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 15:17:31 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 15:17:31 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 15:17:31 DEBUG WPS2SM:327 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 15:17:31 DEBUG WPS2SM:328 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 15:17:31 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:17:31 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 15:17:31 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 15:17:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:17:31 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:17:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:17:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:17:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:31 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:17:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:17:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:31 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:17:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:17:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:17:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:17:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:17:31 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:17:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:17:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:17:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:17:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:17:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:17:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:17:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:17:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:17:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:17:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:17:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:17:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:17:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:17:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:17:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:17:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:17:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:17:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:17:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:17:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:17:31 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:17:32 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:17:32 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:17:32 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:17:32 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:17:32 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:17:32 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:17:32 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:17:32 INFO WorkspaceExplorerServiceImpl:142 - end time - 243 msc 0 sec -2016-05-02 15:17:32 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:17:41 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:17:41 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:17:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:17:41 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:17:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:17:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:41 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:17:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:17:41 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:17:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:17:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:41 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:17:41 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:17:41 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:17:41 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:17:41 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:17:41 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:17:41 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 15:17:41 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 15:17:41 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:17:41 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:17:41 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:17:41 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:17:41 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:17:41 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:17:41 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:17:41 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:17:41 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:17:41 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:17:41 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:17:41 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:41 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:42 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:42 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fb91ed8c, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@3de95916, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@22d7d31b, socketFactory=javax.net.DefaultSocketFactory@764a37c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:17:42 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:17:42 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:17:42 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:243483}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1853969}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1433747, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1360645, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:42 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:17:42 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:42 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:42 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:42 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2126035}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1075792, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:42 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1539820}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1637469, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:17:42 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1853970}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1853970}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 DEBUG command:56 - Command execution completed -2016-05-02 15:17:42 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1853970}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 DEBUG command:56 - Command execution completed -2016-05-02 15:17:42 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1853970}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 DEBUG command:56 - Command execution completed -2016-05-02 15:17:42 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:17:42 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1853970}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 DEBUG command:56 - Command execution completed -2016-05-02 15:17:42 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1853970}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 DEBUG command:56 - Command execution completed -2016-05-02 15:17:42 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1853970}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:17:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:17:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:17:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:17:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:17:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:17:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:42 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:17:42 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:17:42 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:17:42 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:17:42 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:17:42 INFO WorkspaceExplorerServiceImpl:188 - end time - 50 msc 0 sec -2016-05-02 15:17:42 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:17:42 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:17:43 DEBUG query:56 - Query completed -2016-05-02 15:17:43 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 15:17:43 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2126035} -2016-05-02 15:17:43 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:243483} -2016-05-02 15:17:43 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1539820} -2016-05-02 15:17:43 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1853970}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:17:43 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1853970} -2016-05-02 15:17:43 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1853969} -2016-05-02 15:17:43 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:17:43 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:17:43 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:17:43 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 15:17:43 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:17:43 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:17:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:17:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:17:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:17:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:43 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:17:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:17:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:17:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:17:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:43 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:17:43 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:17:43 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:17:43 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:17:43 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:17:43 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:17:43 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 15:17:43 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:17:43 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:17:43 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:17:43 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:17:43 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:17:43 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:17:43 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:17:43 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:17:43 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:17:43 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:17:43 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:17:43 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:17:43 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:43 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:43 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:43 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fb91ed8c, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@3de95916, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@22d7d31b, socketFactory=javax.net.DefaultSocketFactory@764a37c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:17:43 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:17:43 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:17:43 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:243484}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:17:43 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:17:43 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1853971}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:43 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:43 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1496733, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:43 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:17:43 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1530578, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:43 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:43 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:43 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:43 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2126039}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:17:43 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:17:43 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1303132, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:43 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1539823}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:17:43 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:17:43 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=3072942, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:17:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:17:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:17:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:43 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}] -2016-05-02 15:17:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:17:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:17:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:17:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:43 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1853972}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:43 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1853972}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:43 DEBUG command:56 - Command execution completed -2016-05-02 15:17:43 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1853972}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:43 DEBUG command:56 - Command execution completed -2016-05-02 15:17:43 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1853972}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:43 DEBUG command:56 - Command execution completed -2016-05-02 15:17:43 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:17:43 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1853972}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:43 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:17:43 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:17:43 DEBUG command:56 - Command execution completed -2016-05-02 15:17:43 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1853972}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:44 DEBUG command:56 - Command execution completed -2016-05-02 15:17:44 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1853972}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:44 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:17:44 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:17:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 82 msc 0 sec -2016-05-02 15:17:44 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:17:44 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:17:44 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:17:44 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:17:44 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:17:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:17:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}] -2016-05-02 15:17:44 DEBUG query:56 - Query completed -2016-05-02 15:17:44 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 15:17:44 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2126039} -2016-05-02 15:17:44 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:243484} -2016-05-02 15:17:44 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1853972}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:17:44 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1539823} -2016-05-02 15:17:44 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1853972} -2016-05-02 15:17:44 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:17:44 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:17:44 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:17:44 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 15:17:44 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1853971} -2016-05-02 15:17:44 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:17:44 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:17:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:17:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:17:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:17:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:44 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:17:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:17:44 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:17:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:17:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:44 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:17:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:17:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:17:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:17:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:44 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:17:44 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:17:44 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:17:44 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 15:17:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:17:45 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:17:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:17:45 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 15:17:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:45 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:17:45 DEBUG ServiceEngine:193 - get() - start -2016-05-02 15:17:45 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:17:45 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:17:45 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 15:17:45 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:17:45 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:17:45 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:17:45 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 15:17:45 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:17:45 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:17:45 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:17:45 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:17:45 DEBUG Operation:173 - get(String) - start -2016-05-02 15:17:45 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:17:45 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:17:45 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:17:45 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:17:45 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:45 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:45 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:45 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fb91ed8c, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@3de95916, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@22d7d31b, socketFactory=javax.net.DefaultSocketFactory@764a37c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:17:45 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:17:45 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:17:45 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:243485}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1512099, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:45 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:17:45 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:45 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:45 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1853973}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2126040}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1734285, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:45 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=884395, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:45 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1539825}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1427107, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 15:17:45 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1853974}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853974}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 DEBUG command:56 - Command execution completed -2016-05-02 15:17:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853974}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 DEBUG command:56 - Command execution completed -2016-05-02 15:17:45 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853974}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 DEBUG command:56 - Command execution completed -2016-05-02 15:17:45 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 15:17:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853974}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 DEBUG command:56 - Command execution completed -2016-05-02 15:17:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853974}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 DEBUG command:56 - Command execution completed -2016-05-02 15:17:45 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:17:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853974}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 DEBUG command:56 - Command execution completed -2016-05-02 15:17:45 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1853974}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 DEBUG command:56 - Command execution completed -2016-05-02 15:17:45 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:17:45 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1853974}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:45 DEBUG query:56 - Query completed -2016-05-02 15:17:45 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 15:17:45 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 15:17:45 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 15:17:45 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1853974}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 DEBUG update:56 - Update completed -2016-05-02 15:17:46 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1853974}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 DEBUG query:56 - Query completed -2016-05-02 15:17:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:17:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:17:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:17:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:17:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:17:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:17:46 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:17:46 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 15:17:46 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 15:17:46 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 15:17:46 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:17:46 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:17:46 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 15:17:46 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:17:46 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 15:17:46 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:17:46 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 15:17:46 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 15:17:46 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:17:46 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:17:46 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:17:46 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:17:46 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:17:46 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:17:46 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:17:46 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:46 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:46 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:46 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fb91ed8c, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@3de95916, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@22d7d31b, socketFactory=javax.net.DefaultSocketFactory@764a37c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:17:46 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:17:46 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:17:46 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:243486}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1853975}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1330697, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:46 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:17:46 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:46 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:17:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1289496, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:46 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:46 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2126041}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=835902, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:17:46 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1539826}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1913482, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:17:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:17:46 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1853976}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1853976}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 DEBUG command:56 - Command execution completed -2016-05-02 15:17:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1853976}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 DEBUG command:56 - Command execution completed -2016-05-02 15:17:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1853976}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 DEBUG command:56 - Command execution completed -2016-05-02 15:17:46 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:17:46 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:17:46 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1853976}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 DEBUG command:56 - Command execution completed -2016-05-02 15:17:46 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1853976}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 DEBUG command:56 - Command execution completed -2016-05-02 15:17:46 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:17:46 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1853976}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:17:46 DEBUG query:56 - Query completed -2016-05-02 15:17:46 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 15:17:46 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2126041} -2016-05-02 15:17:46 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:243486} -2016-05-02 15:17:46 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1539826} -2016-05-02 15:17:46 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1853976}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:17:46 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1853976} -2016-05-02 15:17:46 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1853975} -2016-05-02 15:17:46 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:17:46 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:17:46 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:17:46 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:17:46 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:17:46 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 15:17:46 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:17:46 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 15:17:46 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 15:17:53 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2126040} -2016-05-02 15:17:53 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:243485} -2016-05-02 15:17:53 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1539825} -2016-05-02 15:17:53 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1853974}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:17:53 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1853974} -2016-05-02 15:17:53 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1853973} -2016-05-02 15:18:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:18:12 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:19:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:19:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:20:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:20:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:20:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:20:57 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:21:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:21:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:22:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:22:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:22:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:22:08 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING -2016-05-02 15:22:08 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:22:08 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:22:09 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING - MAX_ENT_NICHE_MODELLING - A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt - - - OutputTableLabel - The name of the table to produce - Name of the parameter: OutputTableLabel. The name of the table to produce - - - - maxent_ - - - - SpeciesName - The name of the species to model and the occurrence records refer to - Name of the parameter: SpeciesName. The name of the species to model and the occurrence records refer to - - - - generic_species - - - - MaxIterations - The number of learning iterations of the MaxEnt algorithm - Name of the parameter: MaxIterations. The number of learning iterations of the MaxEnt algorithm - - - - 1000 - - - - DefaultPrevalence - A priori probability of presence at ordinary occurrence points - Name of the parameter: DefaultPrevalence. A priori probability of presence at ordinary occurrence points - - - - 0.5 - - - - OccurrencesTable - A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - Name of the parameter: OccurrencesTable. A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - LongitudeColumn - The column containing longitude values [the name of a column from OccurrencesTable] - Name of the parameter: LongitudeColumn. The column containing longitude values [the name of a column from OccurrencesTable] - - - - decimallongitude - - - - LatitudeColumn - The column containing latitude values [the name of a column from OccurrencesTable] - Name of the parameter: LatitudeColumn. The column containing latitude values [the name of a column from OccurrencesTable] - - - - decimallatitude - - - - XResolution - Model projection resolution on the X axis in decimal degrees - Name of the parameter: XResolution. Model projection resolution on the X axis in decimal degrees - - - - 1 - - - - YResolution - Model projection resolution on the Y axis in decimal degrees - Name of the parameter: YResolution. Model projection resolution on the Y axis in decimal degrees - - - - 1 - - - - Layers - The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - Name of the parameter: Layers. The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - - - - - - - Z - Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - - - TimeIndex - Time Index. The default is the first time indexed in the input environmental datasets - Name of the parameter: TimeIndex. Time Index. The default is the first time indexed in the input environmental datasets - - - - 0 - - - - - - Best Threshold - Best threshold for transforming MaxEnt values into 0/1 probability assignments - Name of the parameter: Best Threshold. Best threshold for transforming MaxEnt values into 0/1 probability assignments - - - - - - Estimated Prevalence - The a posteriori estimated prevalence of the species - Name of the parameter: Estimated Prevalence. The a posteriori estimated prevalence of the species - - - - - - Variables contributions - The contribution of each variable to the MaxEnt values estimates - Name of the parameter: Variables contributions. The contribution of each variable to the MaxEnt values estimates - - - - - - Variables Permutations Importance - The importance of the permutations of the variables during the training - Name of the parameter: Variables Permutations Importance. The importance of the permutations of the variables during the training - - - - - - ASCII Maps of the environmental layers for checking features aligments - ASCII Maps of the environmental layers for checking features aligments - Name of the parameter: ASCII Maps of the environmental layers for checking features aligments. ASCII Maps of the environmental layers for checking features aligments - - - - application/d4science - - - - - application/d4science - - - - - - OutputTable7 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable7. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:22:09 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:22:09 DEBUG SClient4WPS:300 - WPSClient->Input: - OutputTableLabel - The name of the table to produce - Name of the parameter: OutputTableLabel. The name of the table to produce - - - - maxent_ - - -2016-05-02 15:22:09 DEBUG SClient4WPS:300 - WPSClient->Input: - SpeciesName - The name of the species to model and the occurrence records refer to - Name of the parameter: SpeciesName. The name of the species to model and the occurrence records refer to - - - - generic_species - - -2016-05-02 15:22:09 DEBUG SClient4WPS:300 - WPSClient->Input: - MaxIterations - The number of learning iterations of the MaxEnt algorithm - Name of the parameter: MaxIterations. The number of learning iterations of the MaxEnt algorithm - - - - 1000 - - -2016-05-02 15:22:09 DEBUG SClient4WPS:300 - WPSClient->Input: - DefaultPrevalence - A priori probability of presence at ordinary occurrence points - Name of the parameter: DefaultPrevalence. A priori probability of presence at ordinary occurrence points - - - - 0.5 - - -2016-05-02 15:22:09 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencesTable - A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - Name of the parameter: OccurrencesTable. A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 15:22:09 DEBUG SClient4WPS:300 - WPSClient->Input: - LongitudeColumn - The column containing longitude values [the name of a column from OccurrencesTable] - Name of the parameter: LongitudeColumn. The column containing longitude values [the name of a column from OccurrencesTable] - - - - decimallongitude - - -2016-05-02 15:22:09 DEBUG SClient4WPS:300 - WPSClient->Input: - LatitudeColumn - The column containing latitude values [the name of a column from OccurrencesTable] - Name of the parameter: LatitudeColumn. The column containing latitude values [the name of a column from OccurrencesTable] - - - - decimallatitude - - -2016-05-02 15:22:09 DEBUG SClient4WPS:300 - WPSClient->Input: - XResolution - Model projection resolution on the X axis in decimal degrees - Name of the parameter: XResolution. Model projection resolution on the X axis in decimal degrees - - - - 1 - - -2016-05-02 15:22:09 DEBUG SClient4WPS:300 - WPSClient->Input: - YResolution - Model projection resolution on the Y axis in decimal degrees - Name of the parameter: YResolution. Model projection resolution on the Y axis in decimal degrees - - - - 1 - - -2016-05-02 15:22:09 DEBUG SClient4WPS:300 - WPSClient->Input: - Layers - The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - Name of the parameter: Layers. The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 15:22:09 DEBUG SClient4WPS:300 - WPSClient->Input: - Z - Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - Name of the parameter: Z. Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer - - - - 0 - - -2016-05-02 15:22:09 DEBUG SClient4WPS:300 - WPSClient->Input: - TimeIndex - Time Index. The default is the first time indexed in the input environmental datasets - Name of the parameter: TimeIndex. Time Index. The default is the first time indexed in the input environmental datasets - - - - 0 - - -2016-05-02 15:22:09 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:22:09 DEBUG SClient4WPS:307 - WPSClient->Output: - Best Threshold - Best threshold for transforming MaxEnt values into 0/1 probability assignments - Name of the parameter: Best Threshold. Best threshold for transforming MaxEnt values into 0/1 probability assignments - - - - -2016-05-02 15:22:09 DEBUG SClient4WPS:307 - WPSClient->Output: - Estimated Prevalence - The a posteriori estimated prevalence of the species - Name of the parameter: Estimated Prevalence. The a posteriori estimated prevalence of the species - - - - -2016-05-02 15:22:09 DEBUG SClient4WPS:307 - WPSClient->Output: - Variables contributions - The contribution of each variable to the MaxEnt values estimates - Name of the parameter: Variables contributions. The contribution of each variable to the MaxEnt values estimates - - - - -2016-05-02 15:22:09 DEBUG SClient4WPS:307 - WPSClient->Output: - Variables Permutations Importance - The importance of the permutations of the variables during the training - Name of the parameter: Variables Permutations Importance. The importance of the permutations of the variables during the training - - - - -2016-05-02 15:22:09 DEBUG SClient4WPS:307 - WPSClient->Output: - ASCII Maps of the environmental layers for checking features aligments - ASCII Maps of the environmental layers for checking features aligments - Name of the parameter: ASCII Maps of the environmental layers for checking features aligments. ASCII Maps of the environmental layers for checking features aligments - - - - application/d4science - - - - - application/d4science - - - - -2016-05-02 15:22:09 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable7 - Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OutputTable7. Output table [a http link to a table in UTF-8 ecoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 15:22:09 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:22:09 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:22:09 DEBUG WPS2SM:291 - Conversion to SM Type->OutputTableLabel is a Literal Input -2016-05-02 15:22:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:22:09 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:22:09 DEBUG WPS2SM:100 - Guessed default value: maxent_ -2016-05-02 15:22:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The name of the table to produce -2016-05-02 15:22:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OutputTableLabel -2016-05-02 15:22:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:09 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=maxent_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:maxent_], typology=OBJECT] -2016-05-02 15:22:09 DEBUG WPS2SM:291 - Conversion to SM Type->SpeciesName is a Literal Input -2016-05-02 15:22:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:22:09 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:22:09 DEBUG WPS2SM:100 - Guessed default value: generic_species -2016-05-02 15:22:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The name of the species to model and the occurrence records refer to -2016-05-02 15:22:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:SpeciesName -2016-05-02 15:22:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:09 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=generic_species, value=null, name=SpeciesName, description=The name of the species to model and the occurrence records refer to [Min N. of Entries:1; Max N. of Entries:1; default:generic_species], typology=OBJECT] -2016-05-02 15:22:09 DEBUG WPS2SM:291 - Conversion to SM Type->MaxIterations is a Literal Input -2016-05-02 15:22:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:22:09 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:22:09 DEBUG WPS2SM:100 - Guessed default value: 1000 -2016-05-02 15:22:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The number of learning iterations of the MaxEnt algorithm -2016-05-02 15:22:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:MaxIterations -2016-05-02 15:22:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:09 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1000, value=null, name=MaxIterations, description=The number of learning iterations of the MaxEnt algorithm [Min N. of Entries:1; Max N. of Entries:1; default:1000], typology=OBJECT] -2016-05-02 15:22:09 DEBUG WPS2SM:291 - Conversion to SM Type->DefaultPrevalence is a Literal Input -2016-05-02 15:22:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:22:09 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 15:22:09 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-02 15:22:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A priori probability of presence at ordinary occurrence points -2016-05-02 15:22:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:DefaultPrevalence -2016-05-02 15:22:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:09 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=DefaultPrevalence, description=A priori probability of presence at ordinary occurrence points [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-02 15:22:09 DEBUG WPS2SM:316 - Conversion to SM Type->OccurrencesTable is a Complex Input -2016-05-02 15:22:09 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 15:22:09 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:22:09 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:22:09 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:22:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] -2016-05-02 15:22:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OccurrencesTable -2016-05-02 15:22:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:09 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=OccurrencesTable, description=A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 15:22:09 DEBUG WPS2SM:291 - Conversion to SM Type->LongitudeColumn is a Literal Input -2016-05-02 15:22:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:22:09 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:22:09 DEBUG WPS2SM:100 - Guessed default value: decimallongitude -2016-05-02 15:22:09 DEBUG WPS2SM:129 - Machter title: The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude] -2016-05-02 15:22:09 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 15:22:09 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrencesTable -2016-05-02 15:22:09 DEBUG WPS2SM:132 - Machter start: 40 -2016-05-02 15:22:09 DEBUG WPS2SM:133 - Machter end: 82 -2016-05-02 15:22:09 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 15:22:09 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrencesTable -2016-05-02 15:22:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing longitude values [the name of a column from OccurrencesTable] -2016-05-02 15:22:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:LongitudeColumn -2016-05-02 15:22:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:09 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN] -2016-05-02 15:22:09 DEBUG WPS2SM:291 - Conversion to SM Type->LatitudeColumn is a Literal Input -2016-05-02 15:22:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:22:09 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:22:09 DEBUG WPS2SM:100 - Guessed default value: decimallatitude -2016-05-02 15:22:09 DEBUG WPS2SM:129 - Machter title: The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude] -2016-05-02 15:22:09 DEBUG WPS2SM:130 - Machter find: true -2016-05-02 15:22:09 DEBUG WPS2SM:131 - Machter group: the name of a column from OccurrencesTable -2016-05-02 15:22:09 DEBUG WPS2SM:132 - Machter start: 39 -2016-05-02 15:22:09 DEBUG WPS2SM:133 - Machter end: 81 -2016-05-02 15:22:09 DEBUG WPS2SM:134 - Machter Group Count: 1 -2016-05-02 15:22:09 DEBUG WPS2SM:137 - Matcher referredTabularParameterName: OccurrencesTable -2016-05-02 15:22:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The column containing latitude values [the name of a column from OccurrencesTable] -2016-05-02 15:22:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:LatitudeColumn -2016-05-02 15:22:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:09 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN] -2016-05-02 15:22:09 DEBUG WPS2SM:291 - Conversion to SM Type->XResolution is a Literal Input -2016-05-02 15:22:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:22:09 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 15:22:09 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-02 15:22:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Model projection resolution on the X axis in decimal degrees -2016-05-02 15:22:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:XResolution -2016-05-02 15:22:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:09 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=XResolution, description=Model projection resolution on the X axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-02 15:22:09 DEBUG WPS2SM:291 - Conversion to SM Type->YResolution is a Literal Input -2016-05-02 15:22:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:22:09 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 15:22:09 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-02 15:22:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Model projection resolution on the Y axis in decimal degrees -2016-05-02 15:22:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:YResolution -2016-05-02 15:22:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:09 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=YResolution, description=Model projection resolution on the Y axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-02 15:22:09 DEBUG WPS2SM:291 - Conversion to SM Type->Layers is a Literal Input -2016-05-02 15:22:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:22:09 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:22:09 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:22:09 DEBUG WPS2SM:148 - Machter title: The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:22:09 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 15:22:09 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 15:22:09 DEBUG WPS2SM:151 - Machter start: 501 -2016-05-02 15:22:09 DEBUG WPS2SM:152 - Machter end: 536 -2016-05-02 15:22:09 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 15:22:09 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 15:22:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) -2016-05-02 15:22:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Layers -2016-05-02 15:22:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:09 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 15:22:09 DEBUG WPS2SM:291 - Conversion to SM Type->Z is a Literal Input -2016-05-02 15:22:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:22:09 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 15:22:09 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 15:22:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer -2016-05-02 15:22:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Z -2016-05-02 15:22:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:09 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 15:22:09 DEBUG WPS2SM:291 - Conversion to SM Type->TimeIndex is a Literal Input -2016-05-02 15:22:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:22:09 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:22:09 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 15:22:09 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Time Index. The default is the first time indexed in the input environmental datasets -2016-05-02 15:22:09 DEBUG WPS2SM:328 - Conversion to SM Type->Name:TimeIndex -2016-05-02 15:22:09 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:09 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=TimeIndex, description=Time Index. The default is the first time indexed in the input environmental datasets [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 15:22:09 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue=maxent_, value=null, name=OutputTableLabel, description=The name of the table to produce [Min N. of Entries:1; Max N. of Entries:1; default:maxent_], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue=generic_species, value=null, name=SpeciesName, description=The name of the species to model and the occurrence records refer to [Min N. of Entries:1; Max N. of Entries:1; default:generic_species], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1000, value=null, name=MaxIterations, description=The number of learning iterations of the MaxEnt algorithm [Min N. of Entries:1; Max N. of Entries:1; default:1000], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=DefaultPrevalence, description=A priori probability of presence at ordinary occurrence points [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], TabularParameter [tableName= , templates=[], name=OccurrencesTable, description=A geospatial table containing occurrence records, following the template of the Species Products Discovery datasets [a http link to a table in UTF-8 encoding following this template: (OCCURRENCE_SPECIES) http://goo.gl/4ExuR5] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=LongitudeColumn, description=The column containing longitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallongitude], typology=COLUMN], Parameter [name=LatitudeColumn, description=The column containing latitude values [the name of a column from OccurrencesTable] [Min N. of Entries:1; Max N. of Entries:1; default:decimallatitude], typology=COLUMN], ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=XResolution, description=Model projection resolution on the X axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=1, value=null, name=YResolution, description=Model projection resolution on the Y axis in decimal degrees [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT], ListParameter [type=java.lang.String, value=null, separator=|, name=Layers, description=The list of environmental layers to use for enriching the points. Each entry is a layer Title or UUID or HTTP link. E.g. the title or the UUID (preferred) of a layer indexed in the e-Infrastructure on GeoNetwork - You can retrieve it from GeoExplorer. Otherwise you can supply the direct HTTP link of the layer. The format will be guessed from the link. The default is GeoTiff. Supports several standards (NETCDF, WFS, WCS, ASC, GeoTiff ). E.g. https://dl.dropboxusercontent.com/u/12809149/wind1.tif [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ObjectParameter [type=java.lang.Double, defaultValue=0, value=null, name=Z, description=Value of Z. Default is 0, that means environmental layers processing will be at surface level or at the first avaliable Z value in the layer [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=TimeIndex, description=Time Index. The default is the first time indexed in the input environmental datasets [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT]] -2016-05-02 15:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:22:09 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:22:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:22:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:22:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:22:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:22:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:22:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:22:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:22:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:22:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:22:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:22:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:22:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:22:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:22:09 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:22:09 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:22:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:22:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:22:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:22:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:22:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:22:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:22:09 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:22:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:22:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:22:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:22:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:22:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:22:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:22:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:22:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:22:09 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:22:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:22:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:22:09 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:22:09 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:22:09 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:22:09 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:22:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:22:09 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:22:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:22:09 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:22:09 INFO WorkspaceExplorerServiceImpl:142 - end time - 190 msc 0 sec -2016-05-02 15:22:09 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:22:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:22:47 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:22:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:22:53 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:22:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:22:53 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS -2016-05-02 15:22:53 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:22:53 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:22:54 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS - GENERIC_CHARTS - An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities. - - - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - TopElementsNumber - Max number of elements, with highest values, to visualize - Name of the parameter: TopElementsNumber. Max number of elements, with highest values, to visualize - - - - 10 - - - - Attributes - The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Attributes. The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - - - - - - - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:22:54 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:22:54 DEBUG SClient4WPS:300 - WPSClient->Input: - InputTable - The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: InputTable. The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 15:22:54 DEBUG SClient4WPS:300 - WPSClient->Input: - TopElementsNumber - Max number of elements, with highest values, to visualize - Name of the parameter: TopElementsNumber. Max number of elements, with highest values, to visualize - - - - 10 - - -2016-05-02 15:22:54 DEBUG SClient4WPS:300 - WPSClient->Input: - Attributes - The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Attributes. The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] - - - - - -2016-05-02 15:22:54 DEBUG SClient4WPS:300 - WPSClient->Input: - Quantities - The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - Name of the parameter: Quantities. The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] - - - - - -2016-05-02 15:22:54 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:22:54 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:22:54 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:22:54 DEBUG WPS2SM:316 - Conversion to SM Type->InputTable is a Complex Input -2016-05-02 15:22:54 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 15:22:54 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:22:54 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:22:54 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:22:54 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 15:22:54 DEBUG WPS2SM:328 - Conversion to SM Type->Name:InputTable -2016-05-02 15:22:54 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:54 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=InputTable, description=The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 15:22:54 DEBUG WPS2SM:291 - Conversion to SM Type->TopElementsNumber is a Literal Input -2016-05-02 15:22:54 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:22:54 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:22:54 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 15:22:54 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Max number of elements, with highest values, to visualize -2016-05-02 15:22:54 DEBUG WPS2SM:328 - Conversion to SM Type->Name:TopElementsNumber -2016-05-02 15:22:54 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:54 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=TopElementsNumber, description=Max number of elements, with highest values, to visualize [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 15:22:54 DEBUG WPS2SM:291 - Conversion to SM Type->Attributes is a Literal Input -2016-05-02 15:22:54 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:22:54 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:22:54 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:22:54 DEBUG WPS2SM:110 - Machter title: The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:22:54 DEBUG WPS2SM:111 - Machter find: true -2016-05-02 15:22:54 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-02 15:22:54 DEBUG WPS2SM:113 - Machter start: 42 -2016-05-02 15:22:54 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-02 15:22:54 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-02 15:22:54 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-02 15:22:54 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-02 15:22:54 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] -2016-05-02 15:22:54 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Attributes -2016-05-02 15:22:54 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:54 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 15:22:54 DEBUG WPS2SM:291 - Conversion to SM Type->Quantities is a Literal Input -2016-05-02 15:22:54 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:22:54 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:22:54 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:22:54 DEBUG WPS2SM:110 - Machter title: The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:22:54 DEBUG WPS2SM:111 - Machter find: true -2016-05-02 15:22:54 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from InputTable separated by | -2016-05-02 15:22:54 DEBUG WPS2SM:113 - Machter start: 38 -2016-05-02 15:22:54 DEBUG WPS2SM:114 - Machter end: 99 -2016-05-02 15:22:54 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-02 15:22:54 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: InputTable -2016-05-02 15:22:54 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-02 15:22:54 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] -2016-05-02 15:22:54 DEBUG WPS2SM:328 - Conversion to SM Type->Name:Quantities -2016-05-02 15:22:54 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:22:54 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 15:22:54 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=InputTable, description=The input table [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=TopElementsNumber, description=Max number of elements, with highest values, to visualize [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], Parameter [name=Attributes, description=The dimensions to consider in the charts [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], Parameter [name=Quantities, description=The numeric quantities to visualize [a sequence of names of columns from InputTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST]] -2016-05-02 15:22:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:22:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:22:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:22:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:22:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:22:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:22:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:22:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:22:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:22:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:22:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:22:54 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:22:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:22:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:22:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:22:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:22:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:22:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:22:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:22:54 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:22:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:22:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:22:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:22:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:22:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:22:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:22:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:22:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:22:54 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:22:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:22:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:22:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:22:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:22:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:22:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:22:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:22:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:22:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:22:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:22:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:22:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:22:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:22:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:22:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:22:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:22:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:22:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:22:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:22:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:22:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:22:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:22:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:22:54 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:22:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:22:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:22:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:22:54 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:22:54 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:22:54 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:22:54 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:22:54 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:22:54 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:22:54 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:22:54 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:22:54 INFO WorkspaceExplorerServiceImpl:142 - end time - 225 msc 0 sec -2016-05-02 15:22:54 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:23:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:23:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:23:06 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:23:06 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY -2016-05-02 15:23:06 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:23:06 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:23:06 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY - CMSY - An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner. - - - IDsFile - Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - Name of the parameter: IDsFile. Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - - - - - - - StocksFile - Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - Name of the parameter: StocksFile. Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - - - - - - - SelectedStock - The stock on which the procedure has to focus e.g. HLH_M07 - Name of the parameter: SelectedStock. The stock on which the procedure has to focus e.g. HLH_M07 - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:23:06 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:23:06 DEBUG SClient4WPS:300 - WPSClient->Input: - IDsFile - Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - Name of the parameter: IDsFile. Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - - - - - -2016-05-02 15:23:06 DEBUG SClient4WPS:300 - WPSClient->Input: - StocksFile - Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - Name of the parameter: StocksFile. Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - - - - - -2016-05-02 15:23:06 DEBUG SClient4WPS:300 - WPSClient->Input: - SelectedStock - The stock on which the procedure has to focus e.g. HLH_M07 - Name of the parameter: SelectedStock. The stock on which the procedure has to focus e.g. HLH_M07 - - - - - -2016-05-02 15:23:06 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:23:06 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:23:06 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:23:06 DEBUG WPS2SM:291 - Conversion to SM Type->IDsFile is a Literal Input -2016-05-02 15:23:06 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:23:06 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:23:06 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:23:06 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK -2016-05-02 15:23:06 DEBUG WPS2SM:328 - Conversion to SM Type->Name:IDsFile -2016-05-02 15:23:06 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:23:06 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=IDsFile, description=Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 15:23:06 DEBUG WPS2SM:291 - Conversion to SM Type->StocksFile is a Literal Input -2016-05-02 15:23:06 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:23:06 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:23:06 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:23:06 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY -2016-05-02 15:23:06 DEBUG WPS2SM:328 - Conversion to SM Type->Name:StocksFile -2016-05-02 15:23:06 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:23:06 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=StocksFile, description=Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 15:23:06 DEBUG WPS2SM:291 - Conversion to SM Type->SelectedStock is a Literal Input -2016-05-02 15:23:06 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:23:06 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:23:06 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:23:06 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The stock on which the procedure has to focus e.g. HLH_M07 -2016-05-02 15:23:06 DEBUG WPS2SM:328 - Conversion to SM Type->Name:SelectedStock -2016-05-02 15:23:06 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:23:06 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=SelectedStock, description=The stock on which the procedure has to focus e.g. HLH_M07 [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 15:23:06 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=IDsFile, description=Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=StocksFile, description=Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=SelectedStock, description=The stock on which the procedure has to focus e.g. HLH_M07 [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT]] -2016-05-02 15:23:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:23:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:23:39 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:23:39 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN -2016-05-02 15:23:39 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:23:39 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:23:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:23:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:23:45 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN - DBSCAN - A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - - - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:23:45 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:23:45 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 15:23:45 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-02 15:23:45 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-02 15:23:45 DEBUG SClient4WPS:300 - WPSClient->Input: - epsilon - DBScan epsilon parameter - Name of the parameter: epsilon. DBScan epsilon parameter - - - - 10 - - -2016-05-02 15:23:45 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - DBScan minimum points parameter (identifies outliers) - Name of the parameter: min_points. DBScan minimum points parameter (identifies outliers) - - - - 1 - - -2016-05-02 15:23:45 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:23:45 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 15:23:45 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:23:45 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:23:45 DEBUG WPS2SM:316 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-02 15:23:45 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 15:23:45 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:23:45 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:23:45 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:23:45 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 15:23:45 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-02 15:23:45 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:23:45 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 15:23:45 DEBUG WPS2SM:291 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-02 15:23:45 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:23:45 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:23:45 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:23:45 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:23:45 DEBUG WPS2SM:111 - Machter find: true -2016-05-02 15:23:45 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-02 15:23:45 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-02 15:23:45 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-02 15:23:45 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-02 15:23:45 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-02 15:23:45 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-02 15:23:45 DEBUG WPS2SM:327 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-02 15:23:45 DEBUG WPS2SM:328 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-02 15:23:45 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:23:45 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 15:23:45 DEBUG WPS2SM:291 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-02 15:23:45 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:23:45 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:23:45 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-02 15:23:45 DEBUG WPS2SM:327 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-02 15:23:45 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-02 15:23:45 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:23:45 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-02 15:23:45 DEBUG WPS2SM:291 - Conversion to SM Type->epsilon is a Literal Input -2016-05-02 15:23:45 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:23:45 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:23:45 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 15:23:45 DEBUG WPS2SM:327 - Conversion to SM Type->Title:DBScan epsilon parameter -2016-05-02 15:23:45 DEBUG WPS2SM:328 - Conversion to SM Type->Name:epsilon -2016-05-02 15:23:45 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:23:45 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 15:23:45 DEBUG WPS2SM:291 - Conversion to SM Type->min_points is a Literal Input -2016-05-02 15:23:45 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:23:45 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:23:45 DEBUG WPS2SM:100 - Guessed default value: 1 -2016-05-02 15:23:45 DEBUG WPS2SM:327 - Conversion to SM Type->Title:DBScan minimum points parameter (identifies outliers) -2016-05-02 15:23:45 DEBUG WPS2SM:328 - Conversion to SM Type->Name:min_points -2016-05-02 15:23:45 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:23:45 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT] -2016-05-02 15:23:45 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=epsilon, description=DBScan epsilon parameter [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=1, value=null, name=min_points, description=DBScan minimum points parameter (identifies outliers) [Min N. of Entries:1; Max N. of Entries:1; default:1], typology=OBJECT]] -2016-05-02 15:23:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:23:45 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:23:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:23:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:23:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:23:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:23:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:23:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:23:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:23:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:23:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:23:45 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:23:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:23:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:23:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:23:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:23:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:23:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:23:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:23:45 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:23:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:23:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:23:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:23:45 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:23:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:23:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:23:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:23:45 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:23:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:23:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:23:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:23:45 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:23:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:23:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:23:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:23:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:23:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:23:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:23:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:23:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:23:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:23:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:23:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:23:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:23:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:23:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:23:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:23:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:23:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:23:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:23:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:23:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:23:45 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:23:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:23:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:23:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:23:45 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:23:45 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:23:45 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:23:45 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:23:45 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:23:45 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:23:45 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:23:45 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:23:45 INFO WorkspaceExplorerServiceImpl:142 - end time - 194 msc 0 sec -2016-05-02 15:23:45 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:23:53 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:23:53 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:23:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:23:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:23:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:23:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:23:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:23:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:23:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:23:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:23:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:23:53 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:23:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:23:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:23:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:23:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:23:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:23:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:23:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:23:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:23:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:23:53 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:23:53 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:23:53 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:23:53 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:23:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:23:53 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:23:53 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 15:23:53 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 15:23:53 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:23:53 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:23:53 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:23:53 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:23:53 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:23:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:23:53 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:23:53 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:23:53 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:23:53 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:23:53 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:23:53 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:23:53 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:23:53 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:23:53 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fb91ed8c, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@3de95916, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@22d7d31b, socketFactory=javax.net.DefaultSocketFactory@764a37c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:23:53 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:23:53 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:23:53 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1854052}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:243554}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1502679, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:23:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1112599, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:23:53 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:23:53 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:23:53 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:23:53 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:23:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:23:53 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2126108}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=844835, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:23:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:23:53 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1539893}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1336027, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:23:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:23:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:23:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:23:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:23:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:23:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:23:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:23:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:23:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:23:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:23:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:23:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:23:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:23:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:23:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:23:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:23:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:23:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:23:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:23:53 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:23:53 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1854053}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1854053}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:23:53 DEBUG command:56 - Command execution completed -2016-05-02 15:23:53 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1854053}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 DEBUG command:56 - Command execution completed -2016-05-02 15:23:53 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1854053}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 DEBUG command:56 - Command execution completed -2016-05-02 15:23:53 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:23:53 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1854053}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 DEBUG command:56 - Command execution completed -2016-05-02 15:23:53 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1854053}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 DEBUG command:56 - Command execution completed -2016-05-02 15:23:53 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1854053}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:23:53 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:23:53 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:23:53 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:23:53 INFO WorkspaceExplorerServiceImpl:188 - end time - 55 msc 0 sec -2016-05-02 15:23:53 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:23:53 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:23:54 DEBUG query:56 - Query completed -2016-05-02 15:23:54 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 15:23:54 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2126108} -2016-05-02 15:23:54 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:243554} -2016-05-02 15:23:54 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1539893} -2016-05-02 15:23:54 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1854053}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:23:54 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1854053} -2016-05-02 15:23:54 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:23:54 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:23:54 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:23:54 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 15:23:54 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1854052} -2016-05-02 15:24:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:24:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:24:06 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:24:06 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS -2016-05-02 15:24:06 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:24:06 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:24:07 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS - KMEANS - A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed. - - - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - - - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - - - k - expected Number of Clusters - Name of the parameter: k. expected Number of Clusters - - - - 3 - - - - max_runs - max runs of the clustering procedure - Name of the parameter: max_runs. max runs of the clustering procedure - - - - 10 - - - - max_optimization_steps - max number of internal optimization steps - Name of the parameter: max_optimization_steps. max number of internal optimization steps - - - - 5 - - - - min_points - number of points which define an outlier set - Name of the parameter: min_points. number of points which define an outlier set - - - - 2 - - - - - - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:24:07 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:24:07 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsTable - Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - Name of the parameter: OccurrencePointsTable. Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 15:24:07 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumnNames - column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - Name of the parameter: FeaturesColumnNames. column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] - - - - - -2016-05-02 15:24:07 DEBUG SClient4WPS:300 - WPSClient->Input: - OccurrencePointsClusterLabel - table name of the resulting distribution - Name of the parameter: OccurrencePointsClusterLabel. table name of the resulting distribution - - - - OccCluster_ - - -2016-05-02 15:24:07 DEBUG SClient4WPS:300 - WPSClient->Input: - k - expected Number of Clusters - Name of the parameter: k. expected Number of Clusters - - - - 3 - - -2016-05-02 15:24:07 DEBUG SClient4WPS:300 - WPSClient->Input: - max_runs - max runs of the clustering procedure - Name of the parameter: max_runs. max runs of the clustering procedure - - - - 10 - - -2016-05-02 15:24:07 DEBUG SClient4WPS:300 - WPSClient->Input: - max_optimization_steps - max number of internal optimization steps - Name of the parameter: max_optimization_steps. max number of internal optimization steps - - - - 5 - - -2016-05-02 15:24:07 DEBUG SClient4WPS:300 - WPSClient->Input: - min_points - number of points which define an outlier set - Name of the parameter: min_points. number of points which define an outlier set - - - - 2 - - -2016-05-02 15:24:07 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:24:07 DEBUG SClient4WPS:307 - WPSClient->Output: - OutputTable - Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - Name of the parameter: OutputTable. Output cluster table [a http link to a table in UTF-8 ecoding following this template: (CLUSTER) http://goo.gl/PnKhhb] - - - - text/csv - - - - - text/csv - - - - -2016-05-02 15:24:07 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:24:07 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:24:07 DEBUG WPS2SM:316 - Conversion to SM Type->OccurrencePointsTable is a Complex Input -2016-05-02 15:24:07 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 15:24:07 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:24:07 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:24:07 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:24:07 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] -2016-05-02 15:24:07 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OccurrencePointsTable -2016-05-02 15:24:07 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:24:07 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 15:24:07 DEBUG WPS2SM:291 - Conversion to SM Type->FeaturesColumnNames is a Literal Input -2016-05-02 15:24:07 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:24:07 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:24:07 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:24:07 DEBUG WPS2SM:110 - Machter title: column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:24:07 DEBUG WPS2SM:111 - Machter find: true -2016-05-02 15:24:07 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from OccurrencePointsTable separated by | -2016-05-02 15:24:07 DEBUG WPS2SM:113 - Machter start: 31 -2016-05-02 15:24:07 DEBUG WPS2SM:114 - Machter end: 103 -2016-05-02 15:24:07 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-02 15:24:07 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: OccurrencePointsTable -2016-05-02 15:24:07 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-02 15:24:07 DEBUG WPS2SM:327 - Conversion to SM Type->Title:column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] -2016-05-02 15:24:07 DEBUG WPS2SM:328 - Conversion to SM Type->Name:FeaturesColumnNames -2016-05-02 15:24:07 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:24:07 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 15:24:07 DEBUG WPS2SM:291 - Conversion to SM Type->OccurrencePointsClusterLabel is a Literal Input -2016-05-02 15:24:07 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:24:07 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:24:07 DEBUG WPS2SM:100 - Guessed default value: OccCluster_ -2016-05-02 15:24:07 DEBUG WPS2SM:327 - Conversion to SM Type->Title:table name of the resulting distribution -2016-05-02 15:24:07 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OccurrencePointsClusterLabel -2016-05-02 15:24:07 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:24:07 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT] -2016-05-02 15:24:07 DEBUG WPS2SM:291 - Conversion to SM Type->k is a Literal Input -2016-05-02 15:24:07 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:24:07 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:24:07 DEBUG WPS2SM:100 - Guessed default value: 3 -2016-05-02 15:24:07 DEBUG WPS2SM:327 - Conversion to SM Type->Title:expected Number of Clusters -2016-05-02 15:24:07 DEBUG WPS2SM:328 - Conversion to SM Type->Name:k -2016-05-02 15:24:07 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:24:07 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=3, value=null, name=k, description=expected Number of Clusters [Min N. of Entries:1; Max N. of Entries:1; default:3], typology=OBJECT] -2016-05-02 15:24:07 DEBUG WPS2SM:291 - Conversion to SM Type->max_runs is a Literal Input -2016-05-02 15:24:07 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:24:07 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:24:07 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 15:24:07 DEBUG WPS2SM:327 - Conversion to SM Type->Title:max runs of the clustering procedure -2016-05-02 15:24:07 DEBUG WPS2SM:328 - Conversion to SM Type->Name:max_runs -2016-05-02 15:24:07 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:24:07 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=max_runs, description=max runs of the clustering procedure [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 15:24:07 DEBUG WPS2SM:291 - Conversion to SM Type->max_optimization_steps is a Literal Input -2016-05-02 15:24:07 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:24:07 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:24:07 DEBUG WPS2SM:100 - Guessed default value: 5 -2016-05-02 15:24:07 DEBUG WPS2SM:327 - Conversion to SM Type->Title:max number of internal optimization steps -2016-05-02 15:24:07 DEBUG WPS2SM:328 - Conversion to SM Type->Name:max_optimization_steps -2016-05-02 15:24:07 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:24:07 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=max_optimization_steps, description=max number of internal optimization steps [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT] -2016-05-02 15:24:07 DEBUG WPS2SM:291 - Conversion to SM Type->min_points is a Literal Input -2016-05-02 15:24:07 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:24:07 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:24:07 DEBUG WPS2SM:100 - Guessed default value: 2 -2016-05-02 15:24:07 DEBUG WPS2SM:327 - Conversion to SM Type->Title:number of points which define an outlier set -2016-05-02 15:24:07 DEBUG WPS2SM:328 - Conversion to SM Type->Name:min_points -2016-05-02 15:24:07 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:24:07 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=2, value=null, name=min_points, description=number of points which define an outlier set [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT] -2016-05-02 15:24:07 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=OccurrencePointsTable, description=Occurrence Points Table. Max 4000 points [a http link to a table in UTF-8 encoding following this template: (GENERIC) A generic comma separated csv file in UTF-8 encoding] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=FeaturesColumnNames, description=column Names for the features [a sequence of names of columns from OccurrencePointsTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST], ObjectParameter [type=java.lang.String, defaultValue=OccCluster_, value=null, name=OccurrencePointsClusterLabel, description=table name of the resulting distribution [Min N. of Entries:1; Max N. of Entries:1; default:OccCluster_], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=3, value=null, name=k, description=expected Number of Clusters [Min N. of Entries:1; Max N. of Entries:1; default:3], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=max_runs, description=max runs of the clustering procedure [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=5, value=null, name=max_optimization_steps, description=max number of internal optimization steps [Min N. of Entries:1; Max N. of Entries:1; default:5], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=2, value=null, name=min_points, description=number of points which define an outlier set [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT]] -2016-05-02 15:24:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:24:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:24:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:24:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:24:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:24:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:24:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:24:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:24:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:24:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:24:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:24:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:24:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:24:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:24:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:24:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:24:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:24:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:24:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:24:07 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:24:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:24:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:24:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:24:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:24:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:24:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:24:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:24:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:24:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:24:07 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:24:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:24:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:24:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:24:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:24:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:24:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:24:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:24:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:24:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:24:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:24:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:24:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:24:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:24:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:24:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:24:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:24:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:24:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:24:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:24:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:24:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:24:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:24:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:24:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:24:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:24:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:24:07 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:24:07 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:24:07 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:24:07 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:24:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:24:07 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:24:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:24:07 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:24:07 INFO WorkspaceExplorerServiceImpl:142 - end time - 173 msc 0 sec -2016-05-02 15:24:07 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:24:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:24:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:25:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:25:32 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:26:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:26:04 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS -2016-05-02 15:26:04 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:26:04 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:26:04 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS - HRS - An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area. - - - ProjectingAreaTable - A Table containing projecting area information [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: ProjectingAreaTable. A Table containing projecting area information [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - OptionalCondition - optional filter for taking area rows - Name of the parameter: OptionalCondition. optional filter for taking area rows - - - - where oceanarea>0 - - - - PositiveCasesTable - A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: PositiveCasesTable. A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - NegativeCasesTable - A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: NegativeCasesTable. A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - FeaturesColumns - Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] - Name of the parameter: FeaturesColumns. Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:26:04 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:26:04 DEBUG SClient4WPS:300 - WPSClient->Input: - ProjectingAreaTable - A Table containing projecting area information [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: ProjectingAreaTable. A Table containing projecting area information [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 15:26:04 DEBUG SClient4WPS:300 - WPSClient->Input: - OptionalCondition - optional filter for taking area rows - Name of the parameter: OptionalCondition. optional filter for taking area rows - - - - where oceanarea>0 - - -2016-05-02 15:26:04 DEBUG SClient4WPS:300 - WPSClient->Input: - PositiveCasesTable - A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: PositiveCasesTable. A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 15:26:04 DEBUG SClient4WPS:300 - WPSClient->Input: - NegativeCasesTable - A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: NegativeCasesTable. A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 15:26:04 DEBUG SClient4WPS:300 - WPSClient->Input: - FeaturesColumns - Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] - Name of the parameter: FeaturesColumns. Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] - - - - - -2016-05-02 15:26:04 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:26:04 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:26:04 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:26:04 DEBUG WPS2SM:316 - Conversion to SM Type->ProjectingAreaTable is a Complex Input -2016-05-02 15:26:04 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 15:26:04 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:26:04 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:26:04 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:26:04 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A Table containing projecting area information [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 15:26:04 DEBUG WPS2SM:328 - Conversion to SM Type->Name:ProjectingAreaTable -2016-05-02 15:26:04 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:04 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=ProjectingAreaTable, description=A Table containing projecting area information [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 15:26:04 DEBUG WPS2SM:291 - Conversion to SM Type->OptionalCondition is a Literal Input -2016-05-02 15:26:04 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:26:04 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:26:04 DEBUG WPS2SM:100 - Guessed default value: where oceanarea>0 -2016-05-02 15:26:04 DEBUG WPS2SM:327 - Conversion to SM Type->Title:optional filter for taking area rows -2016-05-02 15:26:04 DEBUG WPS2SM:328 - Conversion to SM Type->Name:OptionalCondition -2016-05-02 15:26:04 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:04 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue=where oceanarea>0, value=null, name=OptionalCondition, description=optional filter for taking area rows [Min N. of Entries:1; Max N. of Entries:1; default:where oceanarea>0], typology=OBJECT] -2016-05-02 15:26:04 DEBUG WPS2SM:316 - Conversion to SM Type->PositiveCasesTable is a Complex Input -2016-05-02 15:26:04 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 15:26:04 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:26:04 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:26:04 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:26:04 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 15:26:04 DEBUG WPS2SM:328 - Conversion to SM Type->Name:PositiveCasesTable -2016-05-02 15:26:04 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:04 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=PositiveCasesTable, description=A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 15:26:04 DEBUG WPS2SM:316 - Conversion to SM Type->NegativeCasesTable is a Complex Input -2016-05-02 15:26:04 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 15:26:04 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:26:04 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:26:04 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:26:04 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 15:26:04 DEBUG WPS2SM:328 - Conversion to SM Type->Name:NegativeCasesTable -2016-05-02 15:26:04 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:04 DEBUG SClient4WPS:653 - InputParameter: TabularParameter [tableName= , templates=[], name=NegativeCasesTable, description=A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR] -2016-05-02 15:26:04 DEBUG WPS2SM:291 - Conversion to SM Type->FeaturesColumns is a Literal Input -2016-05-02 15:26:04 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:26:04 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:26:04 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:26:04 DEBUG WPS2SM:110 - Machter title: Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:26:04 DEBUG WPS2SM:111 - Machter find: true -2016-05-02 15:26:04 DEBUG WPS2SM:112 - Machter group: a sequence of names of columns from PositiveCasesTable separated by | -2016-05-02 15:26:04 DEBUG WPS2SM:113 - Machter start: 18 -2016-05-02 15:26:04 DEBUG WPS2SM:114 - Machter end: 87 -2016-05-02 15:26:04 DEBUG WPS2SM:115 - Machter Group Count: 2 -2016-05-02 15:26:04 DEBUG WPS2SM:117 - Matcher referredTabularParameterName: PositiveCasesTable -2016-05-02 15:26:04 DEBUG WPS2SM:120 - Matcher separator: | -2016-05-02 15:26:04 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] -2016-05-02 15:26:04 DEBUG WPS2SM:328 - Conversion to SM Type->Name:FeaturesColumns -2016-05-02 15:26:04 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:04 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=FeaturesColumns, description=Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST] -2016-05-02 15:26:04 DEBUG SClient4WPS:657 - Parameters: [TabularParameter [tableName= , templates=[], name=ProjectingAreaTable, description=A Table containing projecting area information [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], ObjectParameter [type=java.lang.String, defaultValue=where oceanarea>0, value=null, name=OptionalCondition, description=optional filter for taking area rows [Min N. of Entries:1; Max N. of Entries:1; default:where oceanarea>0], typology=OBJECT], TabularParameter [tableName= , templates=[], name=PositiveCasesTable, description=A Table containing positive cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], TabularParameter [tableName= , templates=[], name=NegativeCasesTable, description=A Table containing negative cases [a http link to a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR], Parameter [name=FeaturesColumns, description=Features columns [a sequence of names of columns from PositiveCasesTable separated by | ] [Min N. of Entries:1; Max N. of Entries:1], typology=COLUMN_LIST]] -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:26:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:26:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:26:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:26:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:26:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:26:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:26:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:26:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:26:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:26:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:26:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:26:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:26:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:26:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:26:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:26:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:26:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:26:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:26:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:26:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:26:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:26:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:26:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:26:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:26:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:26:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:26:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:26:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:26:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:26:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:26:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:26:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:26:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:26:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:26:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:26:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:26:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:26:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:26:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:26:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:26:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:26:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:26:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:26:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 184 msc 0 sec -2016-05-02 15:26:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:26:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:26:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:26:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:26:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:26:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:26:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:26:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:26:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:26:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:26:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:26:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:26:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:26:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 170 msc 0 sec -2016-05-02 15:26:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:26:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:26:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 167 msc 0 sec -2016-05-02 15:26:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:26:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:26:12 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:26:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:26:12 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION -2016-05-02 15:26:12 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:26:12 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:26:13 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION - SGVM_INTERPOLATION - An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare - - - InputFile - Input file in TACSAT format. E.g. http://goo.gl/i16kPw - Name of the parameter: InputFile. Input file in TACSAT format. E.g. http://goo.gl/i16kPw - - - - text/xml - - - - - text/xml - - - application/d4science - - - - - - npoints - The number of pings or positions required between each real or actual vessel position or ping - Name of the parameter: npoints. The number of pings or positions required between each real or actual vessel position or ping - - - - 10 - - - - interval - Average time in minutes between two adjacent datapoints - Name of the parameter: interval. Average time in minutes between two adjacent datapoints - - - - 120 - - - - margin - Maximum deviation from specified interval to find adjacent datapoints (tolerance) - Name of the parameter: margin. Maximum deviation from specified interval to find adjacent datapoints (tolerance) - - - - 10 - - - - res - Number of points to use to create interpolation (including start and end point) - Name of the parameter: res. Number of points to use to create interpolation (including start and end point) - - - - 100 - - - - method - Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - Name of the parameter: method. Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - - - - cHs - SL - - cHs - - - - fm - The FM parameter in cubic interpolation - Name of the parameter: fm. The FM parameter in cubic interpolation - - - - 0.5 - - - - distscale - The DistScale parameter for cubic interpolation - Name of the parameter: distscale. The DistScale parameter for cubic interpolation - - - - 20 - - - - sigline - The Sigline parameter in cubic interpolation - Name of the parameter: sigline. The Sigline parameter in cubic interpolation - - - - 0.2 - - - - minspeedThr - A filter on the minimum speed to take into account for interpolation - Name of the parameter: minspeedThr. A filter on the minimum speed to take into account for interpolation - - - - 2 - - - - maxspeedThr - A filter on the maximum speed to take into account for interpolation - Name of the parameter: maxspeedThr. A filter on the maximum speed to take into account for interpolation - - - - 6 - - - - headingAdjustment - Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - Name of the parameter: headingAdjustment. Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - - - - 0 - - - - equalDist - Whether the number of positions returned should be equally spaced or not - Name of the parameter: equalDist. Whether the number of positions returned should be equally spaced or not - - - - true - false - - true - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:26:13 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:26:13 DEBUG SClient4WPS:300 - WPSClient->Input: - InputFile - Input file in TACSAT format. E.g. http://goo.gl/i16kPw - Name of the parameter: InputFile. Input file in TACSAT format. E.g. http://goo.gl/i16kPw - - - - text/xml - - - - - text/xml - - - application/d4science - - - - -2016-05-02 15:26:13 DEBUG SClient4WPS:300 - WPSClient->Input: - npoints - The number of pings or positions required between each real or actual vessel position or ping - Name of the parameter: npoints. The number of pings or positions required between each real or actual vessel position or ping - - - - 10 - - -2016-05-02 15:26:13 DEBUG SClient4WPS:300 - WPSClient->Input: - interval - Average time in minutes between two adjacent datapoints - Name of the parameter: interval. Average time in minutes between two adjacent datapoints - - - - 120 - - -2016-05-02 15:26:13 DEBUG SClient4WPS:300 - WPSClient->Input: - margin - Maximum deviation from specified interval to find adjacent datapoints (tolerance) - Name of the parameter: margin. Maximum deviation from specified interval to find adjacent datapoints (tolerance) - - - - 10 - - -2016-05-02 15:26:13 DEBUG SClient4WPS:300 - WPSClient->Input: - res - Number of points to use to create interpolation (including start and end point) - Name of the parameter: res. Number of points to use to create interpolation (including start and end point) - - - - 100 - - -2016-05-02 15:26:13 DEBUG SClient4WPS:300 - WPSClient->Input: - method - Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - Name of the parameter: method. Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - - - - cHs - SL - - cHs - - -2016-05-02 15:26:13 DEBUG SClient4WPS:300 - WPSClient->Input: - fm - The FM parameter in cubic interpolation - Name of the parameter: fm. The FM parameter in cubic interpolation - - - - 0.5 - - -2016-05-02 15:26:13 DEBUG SClient4WPS:300 - WPSClient->Input: - distscale - The DistScale parameter for cubic interpolation - Name of the parameter: distscale. The DistScale parameter for cubic interpolation - - - - 20 - - -2016-05-02 15:26:13 DEBUG SClient4WPS:300 - WPSClient->Input: - sigline - The Sigline parameter in cubic interpolation - Name of the parameter: sigline. The Sigline parameter in cubic interpolation - - - - 0.2 - - -2016-05-02 15:26:13 DEBUG SClient4WPS:300 - WPSClient->Input: - minspeedThr - A filter on the minimum speed to take into account for interpolation - Name of the parameter: minspeedThr. A filter on the minimum speed to take into account for interpolation - - - - 2 - - -2016-05-02 15:26:13 DEBUG SClient4WPS:300 - WPSClient->Input: - maxspeedThr - A filter on the maximum speed to take into account for interpolation - Name of the parameter: maxspeedThr. A filter on the maximum speed to take into account for interpolation - - - - 6 - - -2016-05-02 15:26:13 DEBUG SClient4WPS:300 - WPSClient->Input: - headingAdjustment - Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - Name of the parameter: headingAdjustment. Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - - - - 0 - - -2016-05-02 15:26:13 DEBUG SClient4WPS:300 - WPSClient->Input: - equalDist - Whether the number of positions returned should be equally spaced or not - Name of the parameter: equalDist. Whether the number of positions returned should be equally spaced or not - - - - true - false - - true - - -2016-05-02 15:26:13 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:26:13 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:26:13 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:26:13 DEBUG WPS2SM:316 - Conversion to SM Type->InputFile is a Complex Input -2016-05-02 15:26:13 DEBUG WPS2SM:322 - Max Megabytes: 1 -2016-05-02 15:26:13 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:26:13 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:26:13 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:26:13 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Input file in TACSAT format. E.g. http://goo.gl/i16kPw -2016-05-02 15:26:13 DEBUG WPS2SM:328 - Conversion to SM Type->Name:InputFile -2016-05-02 15:26:13 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:13 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=InputFile, description=Input file in TACSAT format. E.g. http://goo.gl/i16kPw [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 15:26:13 DEBUG WPS2SM:291 - Conversion to SM Type->npoints is a Literal Input -2016-05-02 15:26:13 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:26:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:26:13 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 15:26:13 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The number of pings or positions required between each real or actual vessel position or ping -2016-05-02 15:26:13 DEBUG WPS2SM:328 - Conversion to SM Type->Name:npoints -2016-05-02 15:26:13 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:13 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=npoints, description=The number of pings or positions required between each real or actual vessel position or ping [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 15:26:13 DEBUG WPS2SM:291 - Conversion to SM Type->interval is a Literal Input -2016-05-02 15:26:13 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:26:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:26:13 DEBUG WPS2SM:100 - Guessed default value: 120 -2016-05-02 15:26:13 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Average time in minutes between two adjacent datapoints -2016-05-02 15:26:13 DEBUG WPS2SM:328 - Conversion to SM Type->Name:interval -2016-05-02 15:26:13 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:13 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=120, value=null, name=interval, description=Average time in minutes between two adjacent datapoints [Min N. of Entries:1; Max N. of Entries:1; default:120], typology=OBJECT] -2016-05-02 15:26:13 DEBUG WPS2SM:291 - Conversion to SM Type->margin is a Literal Input -2016-05-02 15:26:13 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:26:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:26:13 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 15:26:13 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Maximum deviation from specified interval to find adjacent datapoints (tolerance) -2016-05-02 15:26:13 DEBUG WPS2SM:328 - Conversion to SM Type->Name:margin -2016-05-02 15:26:13 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:13 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=margin, description=Maximum deviation from specified interval to find adjacent datapoints (tolerance) [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 15:26:13 DEBUG WPS2SM:291 - Conversion to SM Type->res is a Literal Input -2016-05-02 15:26:13 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:26:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:26:13 DEBUG WPS2SM:100 - Guessed default value: 100 -2016-05-02 15:26:13 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Number of points to use to create interpolation (including start and end point) -2016-05-02 15:26:13 DEBUG WPS2SM:328 - Conversion to SM Type->Name:res -2016-05-02 15:26:13 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:13 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=100, value=null, name=res, description=Number of points to use to create interpolation (including start and end point) [Min N. of Entries:1; Max N. of Entries:1; default:100], typology=OBJECT] -2016-05-02 15:26:13 DEBUG WPS2SM:291 - Conversion to SM Type->method is a Literal Input -2016-05-02 15:26:13 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:26:13 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:26:13 DEBUG WPS2SM:100 - Guessed default value: cHs -2016-05-02 15:26:13 DEBUG WPS2SM:302 - ValueType[]:[cHs, SL] -2016-05-02 15:26:13 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Set to cHs for cubic Hermite spline or SL for Straight Line interpolation -2016-05-02 15:26:13 DEBUG WPS2SM:328 - Conversion to SM Type->Name:method -2016-05-02 15:26:13 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:13 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=method, description=Set to cHs for cubic Hermite spline or SL for Straight Line interpolation [Min N. of Entries:1; Max N. of Entries:1; default:cHs], typology=ENUM] -2016-05-02 15:26:13 DEBUG WPS2SM:291 - Conversion to SM Type->fm is a Literal Input -2016-05-02 15:26:13 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:26:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 15:26:13 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-02 15:26:13 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The FM parameter in cubic interpolation -2016-05-02 15:26:13 DEBUG WPS2SM:328 - Conversion to SM Type->Name:fm -2016-05-02 15:26:13 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:13 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=fm, description=The FM parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-02 15:26:13 DEBUG WPS2SM:291 - Conversion to SM Type->distscale is a Literal Input -2016-05-02 15:26:13 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:26:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:26:13 DEBUG WPS2SM:100 - Guessed default value: 20 -2016-05-02 15:26:13 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The DistScale parameter for cubic interpolation -2016-05-02 15:26:13 DEBUG WPS2SM:328 - Conversion to SM Type->Name:distscale -2016-05-02 15:26:13 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:13 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=distscale, description=The DistScale parameter for cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT] -2016-05-02 15:26:13 DEBUG WPS2SM:291 - Conversion to SM Type->sigline is a Literal Input -2016-05-02 15:26:13 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:26:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 15:26:13 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-02 15:26:13 DEBUG WPS2SM:327 - Conversion to SM Type->Title:The Sigline parameter in cubic interpolation -2016-05-02 15:26:13 DEBUG WPS2SM:328 - Conversion to SM Type->Name:sigline -2016-05-02 15:26:13 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:13 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=sigline, description=The Sigline parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-02 15:26:13 DEBUG WPS2SM:291 - Conversion to SM Type->minspeedThr is a Literal Input -2016-05-02 15:26:13 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:26:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 15:26:13 DEBUG WPS2SM:100 - Guessed default value: 2 -2016-05-02 15:26:13 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A filter on the minimum speed to take into account for interpolation -2016-05-02 15:26:13 DEBUG WPS2SM:328 - Conversion to SM Type->Name:minspeedThr -2016-05-02 15:26:13 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:13 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=2, value=null, name=minspeedThr, description=A filter on the minimum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT] -2016-05-02 15:26:13 DEBUG WPS2SM:291 - Conversion to SM Type->maxspeedThr is a Literal Input -2016-05-02 15:26:13 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:26:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 15:26:13 DEBUG WPS2SM:100 - Guessed default value: 6 -2016-05-02 15:26:13 DEBUG WPS2SM:327 - Conversion to SM Type->Title:A filter on the maximum speed to take into account for interpolation -2016-05-02 15:26:13 DEBUG WPS2SM:328 - Conversion to SM Type->Name:maxspeedThr -2016-05-02 15:26:13 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:13 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=6, value=null, name=maxspeedThr, description=A filter on the maximum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:6], typology=OBJECT] -2016-05-02 15:26:13 DEBUG WPS2SM:291 - Conversion to SM Type->headingAdjustment is a Literal Input -2016-05-02 15:26:13 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:26:13 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:26:13 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 15:26:13 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. -2016-05-02 15:26:13 DEBUG WPS2SM:328 - Conversion to SM Type->Name:headingAdjustment -2016-05-02 15:26:13 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:13 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=headingAdjustment, description=Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 15:26:13 DEBUG WPS2SM:291 - Conversion to SM Type->equalDist is a Literal Input -2016-05-02 15:26:13 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:26:13 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:26:13 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-02 15:26:13 DEBUG WPS2SM:302 - ValueType[]:[true, false] -2016-05-02 15:26:13 DEBUG WPS2SM:327 - Conversion to SM Type->Title:Whether the number of positions returned should be equally spaced or not -2016-05-02 15:26:13 DEBUG WPS2SM:328 - Conversion to SM Type->Name:equalDist -2016-05-02 15:26:13 DEBUG WPS2SM:329 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:26:13 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=equalDist, description=Whether the number of positions returned should be equally spaced or not [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-02 15:26:13 DEBUG SClient4WPS:657 - Parameters: [ListParameter [type=java.lang.String, value=null, separator=|, name=InputFile, description=Input file in TACSAT format. E.g. http://goo.gl/i16kPw [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=LIST], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=npoints, description=The number of pings or positions required between each real or actual vessel position or ping [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=120, value=null, name=interval, description=Average time in minutes between two adjacent datapoints [Min N. of Entries:1; Max N. of Entries:1; default:120], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=margin, description=Maximum deviation from specified interval to find adjacent datapoints (tolerance) [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=100, value=null, name=res, description=Number of points to use to create interpolation (including start and end point) [Min N. of Entries:1; Max N. of Entries:1; default:100], typology=OBJECT], Parameter [name=method, description=Set to cHs for cubic Hermite spline or SL for Straight Line interpolation [Min N. of Entries:1; Max N. of Entries:1; default:cHs], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=fm, description=The FM parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=distscale, description=The DistScale parameter for cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=sigline, description=The Sigline parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=2, value=null, name=minspeedThr, description=A filter on the minimum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=6, value=null, name=maxspeedThr, description=A filter on the maximum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=headingAdjustment, description=Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], Parameter [name=equalDist, description=Whether the number of positions returned should be equally spaced or not [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM]] -2016-05-02 15:26:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:26:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:27:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:27:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:28:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:28:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:29:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:29:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:30:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:30:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:31:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:31:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:31:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:31:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:32:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:32:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:33:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:33:47 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:34:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:34:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:35:45 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 15:35:45 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 15:35:45 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 15:35:45 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 15:35:45 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 15:35:45 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:35:45 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 15:35:45 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@72322539 -2016-05-02 15:35:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:35:45 INFO ASLSession:352 - Logging the entrance -2016-05-02 15:35:45 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 15:35:45 DEBUG TemplateModel:83 - 2016-05-02 15:35:45, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 15:35:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:35:45 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 15:35:47 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 15:35:47 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 15:35:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:35:47 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 15:35:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:35:47 INFO ASLSession:352 - Logging the entrance -2016-05-02 15:35:47 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 15:35:47 DEBUG TemplateModel:83 - 2016-05-02 15:35:47, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 15:35:47 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:35:47 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 15:35:47 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 121 ms -2016-05-02 15:35:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 15:35:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 15:35:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 15:35:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 15:35:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 15:35:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 15:35:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 15:35:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 15:35:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 15:35:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 15:35:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 15:35:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 15:35:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 15:35:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 15:35:47 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 15:35:47 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:35:47 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 15:35:48 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@4da6317f -2016-05-02 15:35:48 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@78071671 -2016-05-02 15:35:48 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@e0fe7f8 -2016-05-02 15:35:48 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@898a470 -2016-05-02 15:35:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 115 ms -2016-05-02 15:35:48 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 15:35:48 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 15:35:48 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 15:35:48 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 15:35:48 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 15:35:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:35:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:35:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 15:35:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 27 ms -2016-05-02 15:35:48 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 15:35:48 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:35:48 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 15:35:48 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:35:48 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 15:35:48 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 15:35:48 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 15:35:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:35:48 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:35:48 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:35:48 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 15:35:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:35:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:35:48 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 15:35:48 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 15:35:48 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 15:35:48 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 15:35:48 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 15:35:48 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 15:35:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 15:35:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:35:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 15:35:49 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:35:49 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 15:35:49 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 1072 ms -2016-05-02 15:35:50 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 15:35:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:35:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:35:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:35:50 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 15:35:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:35:50 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 15:35:50 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 15:35:50 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 15:35:50 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 15:35:50 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 15:35:50 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 15:35:50 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 15:35:50 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 15:35:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:35:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:35:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:35:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:35:50 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:35:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 15:35:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:35:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:35:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:35:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:35:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:35:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:35:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:35:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:35:50 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:35:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 15:35:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:35:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:35:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:35:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:35:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:35:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:35:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:35:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:35:51 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:35:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 15:35:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:35:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:35:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:35:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:35:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:35:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:35:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:35:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:35:51 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:35:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 15:35:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:35:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:35:51 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 15:35:51 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 15:35:51 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 15:35:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:35:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:35:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:35:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:35:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:35:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:35:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:35:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:35:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:35:51 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 15:35:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:35:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:35:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:35:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:35:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:35:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:35:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:35:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:35:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:35:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:35:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:35:51 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 15:35:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:35:51 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 15:35:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:35:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:35:51 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 15:35:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:35:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:35:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:35:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:35:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:35:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:35:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:35:51 INFO WorkspaceExplorerServiceImpl:188 - end time - 110 msc 0 sec -2016-05-02 15:35:51 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 15:35:51 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 15:35:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:35:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:35:52 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 15:35:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 15:35:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:35:52 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:35:52 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 15:35:52 INFO WorkspaceExplorerServiceImpl:188 - end time - 159 msc 0 sec -2016-05-02 15:35:52 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 15:35:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 15:35:52 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:35:52 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 15:35:52 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-02 15:35:52 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 15:35:52 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 15:35:52 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 15:35:52 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 15:35:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 15:35:52 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 15:35:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 15:35:52 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:35:52 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 15:35:52 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 15:35:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 15:35:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 15:35:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 15:35:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:35:52 INFO WorkspaceExplorerServiceImpl:188 - end time - 361 msc 0 sec -2016-05-02 15:36:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:36:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:36:02 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:36:02 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY -2016-05-02 15:36:02 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:36:02 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:36:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:36:02 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:36:02 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:36:02 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY -2016-05-02 15:36:02 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:36:02 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:36:03 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY - CMSY - An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner. - - - IDsFile - Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - Name of the parameter: IDsFile. Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - - - - - - - StocksFile - Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - Name of the parameter: StocksFile. Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - - - - - - - SelectedStock - The stock on which the procedure has to focus e.g. HLH_M07 - Name of the parameter: SelectedStock. The stock on which the procedure has to focus e.g. HLH_M07 - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:36:03 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:36:03 DEBUG SClient4WPS:300 - WPSClient->Input: - IDsFile - Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - Name of the parameter: IDsFile. Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - - - - - -2016-05-02 15:36:03 DEBUG SClient4WPS:300 - WPSClient->Input: - StocksFile - Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - Name of the parameter: StocksFile. Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - - - - - -2016-05-02 15:36:03 DEBUG SClient4WPS:300 - WPSClient->Input: - SelectedStock - The stock on which the procedure has to focus e.g. HLH_M07 - Name of the parameter: SelectedStock. The stock on which the procedure has to focus e.g. HLH_M07 - - - - - -2016-05-02 15:36:03 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:36:03 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:36:03 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:36:03 DEBUG WPS2SM:287 - Conversion to SM Type->IDsFile is a Literal Input -2016-05-02 15:36:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:36:03 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:36:03 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK -2016-05-02 15:36:03 DEBUG WPS2SM:324 - Conversion to SM Type->Name:IDsFile -2016-05-02 15:36:03 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:03 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=IDsFile, description=Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 15:36:03 DEBUG WPS2SM:287 - Conversion to SM Type->StocksFile is a Literal Input -2016-05-02 15:36:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:36:03 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:36:03 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY -2016-05-02 15:36:03 DEBUG WPS2SM:324 - Conversion to SM Type->Name:StocksFile -2016-05-02 15:36:03 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:03 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=StocksFile, description=Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 15:36:03 DEBUG WPS2SM:287 - Conversion to SM Type->SelectedStock is a Literal Input -2016-05-02 15:36:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:36:03 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:36:03 DEBUG WPS2SM:323 - Conversion to SM Type->Title:The stock on which the procedure has to focus e.g. HLH_M07 -2016-05-02 15:36:03 DEBUG WPS2SM:324 - Conversion to SM Type->Name:SelectedStock -2016-05-02 15:36:03 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:03 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=SelectedStock, description=The stock on which the procedure has to focus e.g. HLH_M07 [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 15:36:03 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=IDsFile, description=Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=StocksFile, description=Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=SelectedStock, description=The stock on which the procedure has to focus e.g. HLH_M07 [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT]] -2016-05-02 15:36:03 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY - CMSY - An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner. - - - IDsFile - Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - Name of the parameter: IDsFile. Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - - - - - - - StocksFile - Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - Name of the parameter: StocksFile. Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - - - - - - - SelectedStock - The stock on which the procedure has to focus e.g. HLH_M07 - Name of the parameter: SelectedStock. The stock on which the procedure has to focus e.g. HLH_M07 - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:36:03 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:36:03 DEBUG SClient4WPS:300 - WPSClient->Input: - IDsFile - Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - Name of the parameter: IDsFile. Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK - - - - - -2016-05-02 15:36:03 DEBUG SClient4WPS:300 - WPSClient->Input: - StocksFile - Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - Name of the parameter: StocksFile. Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY - - - - - -2016-05-02 15:36:03 DEBUG SClient4WPS:300 - WPSClient->Input: - SelectedStock - The stock on which the procedure has to focus e.g. HLH_M07 - Name of the parameter: SelectedStock. The stock on which the procedure has to focus e.g. HLH_M07 - - - - - -2016-05-02 15:36:03 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:36:03 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:36:03 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:36:03 DEBUG WPS2SM:287 - Conversion to SM Type->IDsFile is a Literal Input -2016-05-02 15:36:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:36:03 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:36:03 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK -2016-05-02 15:36:03 DEBUG WPS2SM:324 - Conversion to SM Type->Name:IDsFile -2016-05-02 15:36:03 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:03 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=IDsFile, description=Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 15:36:03 DEBUG WPS2SM:287 - Conversion to SM Type->StocksFile is a Literal Input -2016-05-02 15:36:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:36:03 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:36:03 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY -2016-05-02 15:36:03 DEBUG WPS2SM:324 - Conversion to SM Type->Name:StocksFile -2016-05-02 15:36:03 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:03 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=StocksFile, description=Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 15:36:03 DEBUG WPS2SM:287 - Conversion to SM Type->SelectedStock is a Literal Input -2016-05-02 15:36:03 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:36:03 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:36:03 DEBUG WPS2SM:323 - Conversion to SM Type->Title:The stock on which the procedure has to focus e.g. HLH_M07 -2016-05-02 15:36:03 DEBUG WPS2SM:324 - Conversion to SM Type->Name:SelectedStock -2016-05-02 15:36:03 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:03 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=SelectedStock, description=The stock on which the procedure has to focus e.g. HLH_M07 [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT] -2016-05-02 15:36:03 DEBUG SClient4WPS:657 - Parameters: [ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=IDsFile, description=Http link to a file containing prior information about the stocks, in WKLife IV format. Example: http://goo.gl/9rg3qK [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=StocksFile, description=Http link to a file containing catch and biomass (or CPUE) trends , in WKLife IV format. Example: http://goo.gl/Mp2ZLY [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT], ObjectParameter [type=java.lang.String, defaultValue= , value=null, name=SelectedStock, description=The stock on which the procedure has to focus e.g. HLH_M07 [Min N. of Entries:1; Max N. of Entries:1], typology=OBJECT]] -2016-05-02 15:36:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:36:17 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 15:36:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:36:17 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION -2016-05-02 15:36:17 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:36:17 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:36:18 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION - SGVM_INTERPOLATION - An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare - - - InputFile - Input file in TACSAT format. E.g. http://goo.gl/i16kPw - Name of the parameter: InputFile. Input file in TACSAT format. E.g. http://goo.gl/i16kPw - - - - text/xml - - - - - text/xml - - - application/d4science - - - - - - npoints - The number of pings or positions required between each real or actual vessel position or ping - Name of the parameter: npoints. The number of pings or positions required between each real or actual vessel position or ping - - - - 10 - - - - interval - Average time in minutes between two adjacent datapoints - Name of the parameter: interval. Average time in minutes between two adjacent datapoints - - - - 120 - - - - margin - Maximum deviation from specified interval to find adjacent datapoints (tolerance) - Name of the parameter: margin. Maximum deviation from specified interval to find adjacent datapoints (tolerance) - - - - 10 - - - - res - Number of points to use to create interpolation (including start and end point) - Name of the parameter: res. Number of points to use to create interpolation (including start and end point) - - - - 100 - - - - method - Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - Name of the parameter: method. Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - - - - cHs - SL - - cHs - - - - fm - The FM parameter in cubic interpolation - Name of the parameter: fm. The FM parameter in cubic interpolation - - - - 0.5 - - - - distscale - The DistScale parameter for cubic interpolation - Name of the parameter: distscale. The DistScale parameter for cubic interpolation - - - - 20 - - - - sigline - The Sigline parameter in cubic interpolation - Name of the parameter: sigline. The Sigline parameter in cubic interpolation - - - - 0.2 - - - - minspeedThr - A filter on the minimum speed to take into account for interpolation - Name of the parameter: minspeedThr. A filter on the minimum speed to take into account for interpolation - - - - 2 - - - - maxspeedThr - A filter on the maximum speed to take into account for interpolation - Name of the parameter: maxspeedThr. A filter on the maximum speed to take into account for interpolation - - - - 6 - - - - headingAdjustment - Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - Name of the parameter: headingAdjustment. Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - - - - 0 - - - - equalDist - Whether the number of positions returned should be equally spaced or not - Name of the parameter: equalDist. Whether the number of positions returned should be equally spaced or not - - - - true - false - - true - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:36:18 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:36:18 DEBUG SClient4WPS:300 - WPSClient->Input: - InputFile - Input file in TACSAT format. E.g. http://goo.gl/i16kPw - Name of the parameter: InputFile. Input file in TACSAT format. E.g. http://goo.gl/i16kPw - - - - text/xml - - - - - text/xml - - - application/d4science - - - - -2016-05-02 15:36:18 DEBUG SClient4WPS:300 - WPSClient->Input: - npoints - The number of pings or positions required between each real or actual vessel position or ping - Name of the parameter: npoints. The number of pings or positions required between each real or actual vessel position or ping - - - - 10 - - -2016-05-02 15:36:18 DEBUG SClient4WPS:300 - WPSClient->Input: - interval - Average time in minutes between two adjacent datapoints - Name of the parameter: interval. Average time in minutes between two adjacent datapoints - - - - 120 - - -2016-05-02 15:36:18 DEBUG SClient4WPS:300 - WPSClient->Input: - margin - Maximum deviation from specified interval to find adjacent datapoints (tolerance) - Name of the parameter: margin. Maximum deviation from specified interval to find adjacent datapoints (tolerance) - - - - 10 - - -2016-05-02 15:36:18 DEBUG SClient4WPS:300 - WPSClient->Input: - res - Number of points to use to create interpolation (including start and end point) - Name of the parameter: res. Number of points to use to create interpolation (including start and end point) - - - - 100 - - -2016-05-02 15:36:18 DEBUG SClient4WPS:300 - WPSClient->Input: - method - Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - Name of the parameter: method. Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - - - - cHs - SL - - cHs - - -2016-05-02 15:36:18 DEBUG SClient4WPS:300 - WPSClient->Input: - fm - The FM parameter in cubic interpolation - Name of the parameter: fm. The FM parameter in cubic interpolation - - - - 0.5 - - -2016-05-02 15:36:18 DEBUG SClient4WPS:300 - WPSClient->Input: - distscale - The DistScale parameter for cubic interpolation - Name of the parameter: distscale. The DistScale parameter for cubic interpolation - - - - 20 - - -2016-05-02 15:36:18 DEBUG SClient4WPS:300 - WPSClient->Input: - sigline - The Sigline parameter in cubic interpolation - Name of the parameter: sigline. The Sigline parameter in cubic interpolation - - - - 0.2 - - -2016-05-02 15:36:18 DEBUG SClient4WPS:300 - WPSClient->Input: - minspeedThr - A filter on the minimum speed to take into account for interpolation - Name of the parameter: minspeedThr. A filter on the minimum speed to take into account for interpolation - - - - 2 - - -2016-05-02 15:36:18 DEBUG SClient4WPS:300 - WPSClient->Input: - maxspeedThr - A filter on the maximum speed to take into account for interpolation - Name of the parameter: maxspeedThr. A filter on the maximum speed to take into account for interpolation - - - - 6 - - -2016-05-02 15:36:18 DEBUG SClient4WPS:300 - WPSClient->Input: - headingAdjustment - Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - Name of the parameter: headingAdjustment. Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - - - - 0 - - -2016-05-02 15:36:18 DEBUG SClient4WPS:300 - WPSClient->Input: - equalDist - Whether the number of positions returned should be equally spaced or not - Name of the parameter: equalDist. Whether the number of positions returned should be equally spaced or not - - - - true - false - - true - - -2016-05-02 15:36:18 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:36:18 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:36:18 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:36:18 DEBUG WPS2SM:312 - Conversion to SM Type->InputFile is a Complex Input -2016-05-02 15:36:18 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 15:36:18 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:36:18 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:36:18 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:36:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Input file in TACSAT format. E.g. http://goo.gl/i16kPw -2016-05-02 15:36:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:InputFile -2016-05-02 15:36:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:18 DEBUG SClient4WPS:653 - InputParameter: FileParameter [mimeType=text/xml, value=null, name=InputFile, description=Input file in TACSAT format. E.g. http://goo.gl/i16kPw [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=FILE] -2016-05-02 15:36:18 DEBUG WPS2SM:287 - Conversion to SM Type->npoints is a Literal Input -2016-05-02 15:36:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:36:18 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 15:36:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:The number of pings or positions required between each real or actual vessel position or ping -2016-05-02 15:36:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:npoints -2016-05-02 15:36:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=npoints, description=The number of pings or positions required between each real or actual vessel position or ping [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 15:36:18 DEBUG WPS2SM:287 - Conversion to SM Type->interval is a Literal Input -2016-05-02 15:36:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:36:18 DEBUG WPS2SM:100 - Guessed default value: 120 -2016-05-02 15:36:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Average time in minutes between two adjacent datapoints -2016-05-02 15:36:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:interval -2016-05-02 15:36:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=120, value=null, name=interval, description=Average time in minutes between two adjacent datapoints [Min N. of Entries:1; Max N. of Entries:1; default:120], typology=OBJECT] -2016-05-02 15:36:18 DEBUG WPS2SM:287 - Conversion to SM Type->margin is a Literal Input -2016-05-02 15:36:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:36:18 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 15:36:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Maximum deviation from specified interval to find adjacent datapoints (tolerance) -2016-05-02 15:36:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:margin -2016-05-02 15:36:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=margin, description=Maximum deviation from specified interval to find adjacent datapoints (tolerance) [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 15:36:18 DEBUG WPS2SM:287 - Conversion to SM Type->res is a Literal Input -2016-05-02 15:36:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:36:18 DEBUG WPS2SM:100 - Guessed default value: 100 -2016-05-02 15:36:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Number of points to use to create interpolation (including start and end point) -2016-05-02 15:36:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:res -2016-05-02 15:36:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=100, value=null, name=res, description=Number of points to use to create interpolation (including start and end point) [Min N. of Entries:1; Max N. of Entries:1; default:100], typology=OBJECT] -2016-05-02 15:36:18 DEBUG WPS2SM:287 - Conversion to SM Type->method is a Literal Input -2016-05-02 15:36:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:36:18 DEBUG WPS2SM:100 - Guessed default value: cHs -2016-05-02 15:36:18 DEBUG WPS2SM:298 - ValueType[]:[cHs, SL] -2016-05-02 15:36:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Set to cHs for cubic Hermite spline or SL for Straight Line interpolation -2016-05-02 15:36:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:method -2016-05-02 15:36:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:18 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=method, description=Set to cHs for cubic Hermite spline or SL for Straight Line interpolation [Min N. of Entries:1; Max N. of Entries:1; default:cHs], typology=ENUM] -2016-05-02 15:36:18 DEBUG WPS2SM:287 - Conversion to SM Type->fm is a Literal Input -2016-05-02 15:36:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 15:36:18 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-02 15:36:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:The FM parameter in cubic interpolation -2016-05-02 15:36:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:fm -2016-05-02 15:36:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=fm, description=The FM parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-02 15:36:18 DEBUG WPS2SM:287 - Conversion to SM Type->distscale is a Literal Input -2016-05-02 15:36:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:36:18 DEBUG WPS2SM:100 - Guessed default value: 20 -2016-05-02 15:36:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:The DistScale parameter for cubic interpolation -2016-05-02 15:36:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:distscale -2016-05-02 15:36:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=distscale, description=The DistScale parameter for cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT] -2016-05-02 15:36:18 DEBUG WPS2SM:287 - Conversion to SM Type->sigline is a Literal Input -2016-05-02 15:36:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 15:36:18 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-02 15:36:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:The Sigline parameter in cubic interpolation -2016-05-02 15:36:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:sigline -2016-05-02 15:36:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=sigline, description=The Sigline parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-02 15:36:18 DEBUG WPS2SM:287 - Conversion to SM Type->minspeedThr is a Literal Input -2016-05-02 15:36:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 15:36:18 DEBUG WPS2SM:100 - Guessed default value: 2 -2016-05-02 15:36:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:A filter on the minimum speed to take into account for interpolation -2016-05-02 15:36:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:minspeedThr -2016-05-02 15:36:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=2, value=null, name=minspeedThr, description=A filter on the minimum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT] -2016-05-02 15:36:18 DEBUG WPS2SM:287 - Conversion to SM Type->maxspeedThr is a Literal Input -2016-05-02 15:36:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 15:36:18 DEBUG WPS2SM:100 - Guessed default value: 6 -2016-05-02 15:36:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:A filter on the maximum speed to take into account for interpolation -2016-05-02 15:36:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:maxspeedThr -2016-05-02 15:36:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=6, value=null, name=maxspeedThr, description=A filter on the maximum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:6], typology=OBJECT] -2016-05-02 15:36:18 DEBUG WPS2SM:287 - Conversion to SM Type->headingAdjustment is a Literal Input -2016-05-02 15:36:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:18 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 15:36:18 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 15:36:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. -2016-05-02 15:36:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:headingAdjustment -2016-05-02 15:36:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:18 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=headingAdjustment, description=Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 15:36:18 DEBUG WPS2SM:287 - Conversion to SM Type->equalDist is a Literal Input -2016-05-02 15:36:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:36:18 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-02 15:36:18 DEBUG WPS2SM:298 - ValueType[]:[true, false] -2016-05-02 15:36:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Whether the number of positions returned should be equally spaced or not -2016-05-02 15:36:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:equalDist -2016-05-02 15:36:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:18 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=equalDist, description=Whether the number of positions returned should be equally spaced or not [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-02 15:36:18 DEBUG SClient4WPS:657 - Parameters: [FileParameter [mimeType=text/xml, value=null, name=InputFile, description=Input file in TACSAT format. E.g. http://goo.gl/i16kPw [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=FILE], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=npoints, description=The number of pings or positions required between each real or actual vessel position or ping [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=120, value=null, name=interval, description=Average time in minutes between two adjacent datapoints [Min N. of Entries:1; Max N. of Entries:1; default:120], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=margin, description=Maximum deviation from specified interval to find adjacent datapoints (tolerance) [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=100, value=null, name=res, description=Number of points to use to create interpolation (including start and end point) [Min N. of Entries:1; Max N. of Entries:1; default:100], typology=OBJECT], Parameter [name=method, description=Set to cHs for cubic Hermite spline or SL for Straight Line interpolation [Min N. of Entries:1; Max N. of Entries:1; default:cHs], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=fm, description=The FM parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=distscale, description=The DistScale parameter for cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=sigline, description=The Sigline parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=2, value=null, name=minspeedThr, description=A filter on the minimum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=6, value=null, name=maxspeedThr, description=A filter on the maximum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=headingAdjustment, description=Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], Parameter [name=equalDist, description=Whether the number of positions returned should be equally spaced or not [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM]] -2016-05-02 15:36:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:36:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:36:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:36:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:36:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:36:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:36:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:36:18 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:36:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:36:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:36:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:36:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:36:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:36:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:36:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:36:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:36:18 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:36:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:36:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:36:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:36:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:36:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:36:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:36:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:36:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:36:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:36:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:36:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:36:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:36:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:36:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:36:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:36:18 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:36:18 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:36:18 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:36:18 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:36:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:36:18 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:36:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:36:18 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:36:18 INFO WorkspaceExplorerServiceImpl:142 - end time - 227 msc 0 sec -2016-05-02 15:36:18 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:36:39 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:36:39 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:36:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:36:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:36:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:36:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:39 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:36:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:36:39 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:36:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:36:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:39 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:36:39 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:36:39 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:36:39 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:36:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:36:39 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:36:39 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 15:36:39 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 15:36:39 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:36:39 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:36:39 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:36:39 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:36:39 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:36:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:36:39 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:36:39 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:36:39 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:36:39 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:36:39 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:36:39 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:36:39 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:36:39 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:36:39 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c410fadb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@52321a80, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5769f3a8, socketFactory=javax.net.DefaultSocketFactory@6cfbc76d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:36:39 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:36:39 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:36:39 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:243683}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:36:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:36:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1432244, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:36:39 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:36:39 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:36:39 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:36:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:36:39 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1854180}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1327385, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:36:39 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:36:39 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2126236}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:36:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:36:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1509154, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:36:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:36:39 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1540020}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:36:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:36:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=4150519, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:36:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.2 ms, state=CONNECTED}] -2016-05-02 15:36:39 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1854181}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854181}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:39 DEBUG command:56 - Command execution completed -2016-05-02 15:36:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854181}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:39 DEBUG command:56 - Command execution completed -2016-05-02 15:36:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854181}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:39 DEBUG command:56 - Command execution completed -2016-05-02 15:36:39 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:36:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854181}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:39 DEBUG command:56 - Command execution completed -2016-05-02 15:36:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854181}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:39 DEBUG command:56 - Command execution completed -2016-05-02 15:36:39 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1854181}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:36:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:36:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:36:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:36:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:36:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:36:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:40 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:36:40 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:36:40 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:36:40 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:36:40 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:36:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.2 ms, state=CONNECTED}] -2016-05-02 15:36:40 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:36:40 INFO WorkspaceExplorerServiceImpl:188 - end time - 52 msc 0 sec -2016-05-02 15:36:40 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:36:40 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:36:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:36:40 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:36:40 DEBUG query:56 - Query completed -2016-05-02 15:36:40 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 15:36:40 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2126236} -2016-05-02 15:36:40 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:243683} -2016-05-02 15:36:40 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1854181}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:36:40 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1540020} -2016-05-02 15:36:40 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1854181} -2016-05-02 15:36:40 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1854180} -2016-05-02 15:36:40 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:36:40 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:36:40 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:36:40 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 15:36:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:36:47 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:36:47 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:36:47 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 15:36:47 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:36:47 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:36:48 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:36:48 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:36:48 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 15:36:48 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 15:36:48 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:36:48 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:36:48 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:36:48 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 15:36:48 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 15:36:48 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:36:48 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:36:48 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:36:48 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:36:48 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 15:36:48 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 15:36:48 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 15:36:48 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 15:36:48 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 15:36:48 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 15:36:48 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 15:36:48 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 15:36:48 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:48 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 15:36:48 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 15:36:48 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:36:48 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:36:48 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:36:48 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:36:48 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 15:36:48 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 15:36:48 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 15:36:48 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 15:36:48 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 15:36:48 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 15:36:48 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 15:36:48 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 15:36:48 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:36:48 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 15:36:48 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 15:36:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:36:48 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:36:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:36:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:36:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:36:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:36:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:36:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:48 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:36:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:36:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:36:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:36:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:36:48 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:36:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:36:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:36:48 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:36:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:36:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:36:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:48 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:36:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:36:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:36:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:36:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:36:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:36:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:36:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:36:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:36:48 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:36:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:36:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:36:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:36:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:36:48 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:36:48 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:36:48 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:36:48 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:36:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:36:48 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:36:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:36:48 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:36:48 INFO WorkspaceExplorerServiceImpl:142 - end time - 180 msc 0 sec -2016-05-02 15:36:48 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:36:57 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:36:57 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:36:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:36:57 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 15:36:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:36:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:57 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:36:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:36:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:36:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:36:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:57 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:36:57 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:36:57 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:36:57 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:36:57 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:36:57 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:36:57 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 15:36:57 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 15:36:57 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:36:57 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:36:57 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:36:57 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:36:57 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:36:57 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:36:57 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:36:57 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:36:57 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:36:57 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:36:57 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:36:57 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:36:57 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:36:57 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:36:57 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c410fadb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@52321a80, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5769f3a8, socketFactory=javax.net.DefaultSocketFactory@6cfbc76d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:36:57 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:36:57 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:36:57 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:243686}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:36:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:36:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1776379, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:36:57 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:36:57 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:36:57 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:36:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:36:57 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1854186}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:57 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2126240}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:36:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:36:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1167279, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:36:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1450255, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:36:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:36:57 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:36:58 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1540025}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:36:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:36:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1462015, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:36:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 15:36:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:36:58 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:36:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:36:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:36:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:36:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:36:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:58 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:36:58 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1854187}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854187}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:58 DEBUG command:56 - Command execution completed -2016-05-02 15:36:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854187}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:58 DEBUG command:56 - Command execution completed -2016-05-02 15:36:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854187}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:58 DEBUG command:56 - Command execution completed -2016-05-02 15:36:58 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:36:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854187}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:58 DEBUG command:56 - Command execution completed -2016-05-02 15:36:58 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:36:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854187}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:58 DEBUG command:56 - Command execution completed -2016-05-02 15:36:58 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1854187}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:58 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:36:58 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:36:58 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:36:58 INFO WorkspaceExplorerServiceImpl:188 - end time - 54 msc 0 sec -2016-05-02 15:36:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:36:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:36:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:36:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 15:36:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:36:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 15:36:59 DEBUG query:56 - Query completed -2016-05-02 15:36:59 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 15:36:59 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2126240} -2016-05-02 15:36:59 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:243686} -2016-05-02 15:36:59 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1540025} -2016-05-02 15:36:59 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1854187}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:36:59 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1854187} -2016-05-02 15:36:59 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:36:59 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1854186} -2016-05-02 15:36:59 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:36:59 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:36:59 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 15:36:59 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:36:59 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:36:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:36:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:36:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:36:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:59 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:36:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:36:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:36:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:36:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:59 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:36:59 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:36:59 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:36:59 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:36:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:36:59 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:36:59 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 15:36:59 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:36:59 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:36:59 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:36:59 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:36:59 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:36:59 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:36:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:36:59 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:36:59 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:36:59 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:36:59 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:36:59 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:36:59 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:36:59 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:36:59 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:36:59 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c410fadb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@52321a80, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5769f3a8, socketFactory=javax.net.DefaultSocketFactory@6cfbc76d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:36:59 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:36:59 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:36:59 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1854188}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:243687}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1242792, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:36:59 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:36:59 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:36:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1361068, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:36:59 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:36:59 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:36:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:36:59 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2126241}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1130362, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:36:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:36:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:36:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:36:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:36:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:36:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:36:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:36:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:59 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:36:59 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:36:59 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1540026}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1482563, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:36:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 15:36:59 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1854189}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854189}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 DEBUG command:56 - Command execution completed -2016-05-02 15:36:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854189}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 DEBUG command:56 - Command execution completed -2016-05-02 15:36:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854189}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 DEBUG command:56 - Command execution completed -2016-05-02 15:36:59 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:36:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854189}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 DEBUG command:56 - Command execution completed -2016-05-02 15:36:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854189}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 DEBUG command:56 - Command execution completed -2016-05-02 15:36:59 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854189}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:36:59 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:36:59 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:36:59 INFO WorkspaceExplorerServiceImpl:188 - end time - 53 msc 0 sec -2016-05-02 15:36:59 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:36:59 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:36:59 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:36:59 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:36:59 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:36:59 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:36:59 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:36:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:36:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:36:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:36:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:36:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:36:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:36:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:36:59 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:36:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:36:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:36:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:36:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:36:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:36:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:00 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:37:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:37:00 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 15:37:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:37:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:00 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:37:00 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:37:00 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:37:00 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 15:37:00 DEBUG query:56 - Query completed -2016-05-02 15:37:00 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 15:37:00 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2126241} -2016-05-02 15:37:00 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:243687} -2016-05-02 15:37:00 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1540026} -2016-05-02 15:37:00 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1854189}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:37:00 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1854189} -2016-05-02 15:37:00 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:37:00 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1854188} -2016-05-02 15:37:00 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:37:00 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:37:00 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 15:37:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:37:00 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:37:00 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:37:00 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 15:37:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:01 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:37:01 DEBUG ServiceEngine:193 - get() - start -2016-05-02 15:37:01 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:37:01 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:37:01 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 15:37:01 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:37:01 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:37:01 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:37:01 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 15:37:01 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:37:01 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:37:01 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:37:01 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:37:01 DEBUG Operation:173 - get(String) - start -2016-05-02 15:37:01 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:37:01 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:37:01 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:37:01 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:37:01 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:01 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:01 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:01 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c410fadb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@52321a80, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5769f3a8, socketFactory=javax.net.DefaultSocketFactory@6cfbc76d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:37:01 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:37:01 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:37:01 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:243688}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1142214, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:01 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:37:01 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:01 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:01 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1854190}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2126242}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=897301, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1363751, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:01 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:01 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1540027}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1515211, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 15:37:01 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1854191}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854191}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG command:56 - Command execution completed -2016-05-02 15:37:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854191}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG command:56 - Command execution completed -2016-05-02 15:37:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854191}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG command:56 - Command execution completed -2016-05-02 15:37:01 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 15:37:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854191}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG command:56 - Command execution completed -2016-05-02 15:37:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854191}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG command:56 - Command execution completed -2016-05-02 15:37:01 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:37:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854191}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG command:56 - Command execution completed -2016-05-02 15:37:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854191}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG command:56 - Command execution completed -2016-05-02 15:37:01 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:37:01 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1854191}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG query:56 - Query completed -2016-05-02 15:37:01 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 15:37:01 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 15:37:01 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 15:37:01 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1854191}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG update:56 - Update completed -2016-05-02 15:37:01 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:20, serverValue:1854191}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG query:56 - Query completed -2016-05-02 15:37:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:01 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:37:01 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 15:37:01 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 15:37:01 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 15:37:01 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:37:01 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:37:01 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 15:37:01 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:37:01 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 15:37:01 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:37:01 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 15:37:01 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 15:37:01 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:37:01 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:37:01 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:37:01 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:37:01 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:37:01 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:37:01 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:37:01 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:01 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:01 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:01 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c410fadb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@52321a80, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5769f3a8, socketFactory=javax.net.DefaultSocketFactory@6cfbc76d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:37:01 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:37:01 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:37:01 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1854192}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1555452, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:01 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:37:01 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:01 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:01 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:01 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2126243}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=996500, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:01 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:243689}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1333791, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:01 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1540028}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2702551, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 15:37:01 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1854193}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1854193}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG command:56 - Command execution completed -2016-05-02 15:37:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1854193}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG command:56 - Command execution completed -2016-05-02 15:37:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1854193}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG command:56 - Command execution completed -2016-05-02 15:37:01 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:37:01 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:37:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1854193}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG command:56 - Command execution completed -2016-05-02 15:37:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1854193}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG command:56 - Command execution completed -2016-05-02 15:37:01 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:37:01 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1854193}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG query:56 - Query completed -2016-05-02 15:37:01 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 15:37:01 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2126243} -2016-05-02 15:37:01 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:243689} -2016-05-02 15:37:01 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1540028} -2016-05-02 15:37:01 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1854193}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:37:01 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1854193} -2016-05-02 15:37:01 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:37:01 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1854192} -2016-05-02 15:37:01 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:37:01 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:37:01 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:37:01 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:37:01 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 15:37:01 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:37:01 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 15:37:01 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 15:37:01 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 15:37:11 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:37:11 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 15:37:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 15:37:11 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:37:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:37:11 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:37:20 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1854191}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:37:20 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1540027} -2016-05-02 15:37:20 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:243688} -2016-05-02 15:37:20 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2126242} -2016-05-02 15:37:20 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1854191} -2016-05-02 15:37:20 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1854190} -2016-05-02 15:37:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:37:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:37:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:37:38 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:37:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:37:38 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 15:37:38 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 15:37:38 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 15:37:38 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:37:38 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:37:38 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:37:38 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:37:38 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 15:37:38 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 15:37:38 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 15:37:38 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 15:37:38 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 15:37:38 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 15:37:38 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 15:37:38 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 15:37:38 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:37:38 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 15:37:38 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 15:37:38 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:37:38 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:37:38 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:37:38 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:37:38 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 15:37:38 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 15:37:38 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 15:37:38 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 15:37:38 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 15:37:38 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 15:37:38 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 15:37:38 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 15:37:38 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:37:38 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 15:37:38 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 15:37:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:37:38 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:37:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:37:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:37:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:37:38 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 15:37:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:37:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:38 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:37:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:37:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:37:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:37:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:37:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:37:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:37:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:37:38 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:37:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:37:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:37:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:37:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:37:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:37:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:37:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:37:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:37:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:37:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:37:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:37:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:37:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:37:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:37:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:37:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:37:38 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:37:39 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:37:39 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:37:39 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:37:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:37:39 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:37:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:37:39 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:37:39 INFO WorkspaceExplorerServiceImpl:142 - end time - 186 msc 0 sec -2016-05-02 15:37:39 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:37:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:37:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:37:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:37:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:37:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:37:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:37:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:37:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:40 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:37:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:37:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:37:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:37:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:37:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:37:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:37:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:37:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:37:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:37:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:37:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:37:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:37:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:40 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:37:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:37:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:37:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:37:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:37:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:37:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:37:40 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:37:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:37:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:37:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:37:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:37:40 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:37:40 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:37:40 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:37:40 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:37:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:37:40 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:37:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:37:40 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:37:40 INFO WorkspaceExplorerServiceImpl:142 - end time - 208 msc 0 sec -2016-05-02 15:37:40 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:37:47 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:37:47 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:37:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:37:47 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:37:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:37:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:47 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:37:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:37:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:37:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:37:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:47 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:37:47 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:37:47 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:37:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:37:47 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 15:37:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:37:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:37:47 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:37:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:37:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:47 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:37:47 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:37:47 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:37:47 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 15:37:47 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 15:37:47 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:37:47 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:37:47 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:37:47 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:37:47 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:37:47 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:37:47 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:37:47 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:37:47 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:37:47 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:37:47 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:37:47 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:47 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:47 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:47 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c410fadb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@52321a80, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5769f3a8, socketFactory=javax.net.DefaultSocketFactory@6cfbc76d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:37:47 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:37:47 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:37:47 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:37:47 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:37:47 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:37:47 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:37:47 INFO WorkspaceExplorerServiceImpl:188 - end time - 50 msc 0 sec -2016-05-02 15:37:47 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:37:47 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:37:47 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:37:47 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:243699}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1277224, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:47 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:37:47 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:47 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:47 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1854201}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1396426, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:47 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:47 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2126253}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1203054, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:47 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1540038}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1672423, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:37:47 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1854202}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1854202}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 DEBUG command:56 - Command execution completed -2016-05-02 15:37:47 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1854202}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 DEBUG command:56 - Command execution completed -2016-05-02 15:37:47 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1854202}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 DEBUG command:56 - Command execution completed -2016-05-02 15:37:47 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:37:47 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1854202}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 DEBUG command:56 - Command execution completed -2016-05-02 15:37:47 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1854202}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 DEBUG command:56 - Command execution completed -2016-05-02 15:37:47 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1854202}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:37:48 DEBUG query:56 - Query completed -2016-05-02 15:37:48 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 15:37:48 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2126253} -2016-05-02 15:37:48 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:243699} -2016-05-02 15:37:48 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1854202}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:37:48 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1540038} -2016-05-02 15:37:48 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1854202} -2016-05-02 15:37:48 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:37:48 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:37:48 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1854201} -2016-05-02 15:37:48 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:37:48 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 15:37:48 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:37:48 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:37:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:37:48 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:37:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:37:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:48 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:37:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:37:48 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 15:37:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:37:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:48 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:37:48 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:37:48 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:37:48 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:37:48 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:37:48 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:37:48 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 15:37:48 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:37:48 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:37:48 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:37:48 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:37:48 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:37:48 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:37:48 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:37:48 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:37:48 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:37:48 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:37:48 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:37:48 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:37:48 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:48 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:48 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:48 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c410fadb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@52321a80, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5769f3a8, socketFactory=javax.net.DefaultSocketFactory@6cfbc76d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:37:48 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:37:48 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:37:48 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:243700}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1138020, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:48 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:37:48 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:48 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:48 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1854203}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1355404, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:48 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:48 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2126255}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=967822, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:48 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1540040}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1290806, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:37:48 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1854204}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1854204}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 DEBUG command:56 - Command execution completed -2016-05-02 15:37:48 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1854204}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 DEBUG command:56 - Command execution completed -2016-05-02 15:37:48 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1854204}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:37:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:37:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:37:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:37:48 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:37:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:37:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:48 DEBUG command:56 - Command execution completed -2016-05-02 15:37:48 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:37:48 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1854204}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 DEBUG command:56 - Command execution completed -2016-05-02 15:37:48 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1854204}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 DEBUG command:56 - Command execution completed -2016-05-02 15:37:48 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1854204}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:48 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:37:48 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:37:49 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:37:49 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:37:49 INFO WorkspaceExplorerServiceImpl:188 - end time - 56 msc 0 sec -2016-05-02 15:37:49 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:37:49 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:37:49 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:37:49 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:37:49 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:37:49 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:37:49 DEBUG query:56 - Query completed -2016-05-02 15:37:49 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 15:37:49 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2126255} -2016-05-02 15:37:49 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1854204}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:37:49 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1854204} -2016-05-02 15:37:49 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:243700} -2016-05-02 15:37:49 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:37:49 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1540040} -2016-05-02 15:37:49 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:37:49 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:37:49 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1854203} -2016-05-02 15:37:49 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 15:37:49 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:37:49 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:37:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:37:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:37:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:37:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:49 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:37:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:37:49 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 15:37:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:37:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:49 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:37:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:37:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:37:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:37:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:49 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:37:49 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:37:49 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:37:49 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 15:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:37:50 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:37:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:37:50 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 15:37:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:50 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:37:50 DEBUG ServiceEngine:193 - get() - start -2016-05-02 15:37:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:37:50 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:37:50 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 15:37:50 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:37:50 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:37:50 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:37:50 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 15:37:50 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:37:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:37:50 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:37:50 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:37:50 DEBUG Operation:173 - get(String) - start -2016-05-02 15:37:50 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:37:50 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:37:50 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:37:50 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:37:50 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:50 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:50 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:50 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c410fadb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@52321a80, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5769f3a8, socketFactory=javax.net.DefaultSocketFactory@6cfbc76d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:37:50 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:37:50 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:37:50 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:243701}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1367717, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:50 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:37:50 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:50 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:50 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2126256}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=816367, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:50 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1854205}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1349017, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:50 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:50 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1540041}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2374473, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:37:50 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1854206}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1854206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG command:56 - Command execution completed -2016-05-02 15:37:50 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1854206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG command:56 - Command execution completed -2016-05-02 15:37:50 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1854206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG command:56 - Command execution completed -2016-05-02 15:37:50 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 15:37:50 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1854206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG command:56 - Command execution completed -2016-05-02 15:37:50 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1854206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG command:56 - Command execution completed -2016-05-02 15:37:50 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:37:50 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1854206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG command:56 - Command execution completed -2016-05-02 15:37:50 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1854206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG command:56 - Command execution completed -2016-05-02 15:37:50 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:37:50 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1854206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG query:56 - Query completed -2016-05-02 15:37:50 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 15:37:50 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 15:37:50 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 15:37:50 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1854206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG update:56 - Update completed -2016-05-02 15:37:50 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:40, serverValue:1854206}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:50 DEBUG query:56 - Query completed -2016-05-02 15:37:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:37:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:37:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:37:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:37:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:37:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:37:50 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:37:50 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 15:37:50 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 15:37:50 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 15:37:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:37:50 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:37:50 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 15:37:50 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:37:50 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 15:37:50 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:37:50 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 15:37:50 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 15:37:50 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:37:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:37:50 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:37:50 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:37:50 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:37:50 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:37:50 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:37:50 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:50 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:50 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:50 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c410fadb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@52321a80, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5769f3a8, socketFactory=javax.net.DefaultSocketFactory@6cfbc76d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:37:50 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:37:50 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:37:51 INFO connection:71 - Opened connection [connectionId{localValue:41, serverValue:243702}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1218843, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:51 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:37:51 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:51 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:37:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:51 INFO connection:71 - Opened connection [connectionId{localValue:44, serverValue:2126257}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=890588, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:51 INFO connection:71 - Opened connection [connectionId{localValue:42, serverValue:1854207}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1091643, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:51 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:37:51 INFO connection:71 - Opened connection [connectionId{localValue:43, serverValue:1540042}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1409229, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:37:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 15:37:51 INFO connection:71 - Opened connection [connectionId{localValue:45, serverValue:1854208}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1854208}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 DEBUG command:56 - Command execution completed -2016-05-02 15:37:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1854208}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 DEBUG command:56 - Command execution completed -2016-05-02 15:37:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1854208}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 DEBUG command:56 - Command execution completed -2016-05-02 15:37:51 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:37:51 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:37:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1854208}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 DEBUG command:56 - Command execution completed -2016-05-02 15:37:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1854208}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 DEBUG command:56 - Command execution completed -2016-05-02 15:37:51 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:37:51 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1854208}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 DEBUG query:56 - Query completed -2016-05-02 15:37:51 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 15:37:51 DEBUG connection:56 - Closing connection connectionId{localValue:44, serverValue:2126257} -2016-05-02 15:37:51 DEBUG connection:56 - Closing connection connectionId{localValue:41, serverValue:243702} -2016-05-02 15:37:51 INFO connection:71 - Closed connection [connectionId{localValue:45, serverValue:1854208}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:37:51 DEBUG connection:56 - Closing connection connectionId{localValue:45, serverValue:1854208} -2016-05-02 15:37:51 DEBUG connection:56 - Closing connection connectionId{localValue:43, serverValue:1540042} -2016-05-02 15:37:51 DEBUG connection:56 - Closing connection connectionId{localValue:42, serverValue:1854207} -2016-05-02 15:37:51 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:37:51 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:37:51 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:37:51 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:37:51 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:37:51 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 15:37:51 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:37:51 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 15:37:51 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 15:37:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:37:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:37:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:38:00 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:38:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:38:00 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:38:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:38:01 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:38:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:38:01 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:38:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:38:10 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:38:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:38:10 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:38:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:38:11 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:38:11 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:38:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:38:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:38:20 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:38:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:38:20 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:38:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:38:21 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:38:21 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:38:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:38:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:38:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:38:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:38:30 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:38:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:38:30 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:38:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:38:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:38:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:38:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:38:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:38:40 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:38:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:38:40 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:38:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:38:41 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:38:41 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:38:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:38:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:38:50 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:38:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:38:50 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:38:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:38:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:38:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:38:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:38:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:39:00 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:39:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:39:00 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:39:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:39:01 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:39:01 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:39:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:39:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:39:10 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:39:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:39:10 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:39:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:11 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:39:11 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:39:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:20 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:39:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:20 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:39:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:21 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:39:21 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:39:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:39:25 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:39:30 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:39:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:30 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:39:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:39:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:39:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:40 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:39:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:40 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:39:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:41 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:39:41 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:39:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:50 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:39:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:50 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:39:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:39:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:39:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:39:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:40:00 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:40:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:40:00 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:40:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:01 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:40:01 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:40:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:10 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:40:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:10 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:40:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:11 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:40:11 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:40:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:40:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:40:20 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:40:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:20 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:40:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:21 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:40:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:21 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:40:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:30 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:40:30 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:40:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:40:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:40:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:40:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:40:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:40:40 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:40:40 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:40:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:40:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:41 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:40:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:41 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:40:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:50 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:40:50 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:40:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:40:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:40:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:40:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:40:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:40:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:41:00 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:41:00 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:41:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:41:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:41:01 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:41:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:41:01 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:41:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:01 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 15:49:01 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 15:49:01 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 15:49:02 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 15:49:02 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 15:49:02 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:49:02 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 15:49:02 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@4eb5ba4c -2016-05-02 15:49:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:49:02 INFO ASLSession:352 - Logging the entrance -2016-05-02 15:49:02 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 15:49:02 DEBUG TemplateModel:83 - 2016-05-02 15:49:02, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 15:49:02 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:49:02 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 15:49:04 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 15:49:04 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 15:49:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:49:04 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 15:49:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:49:04 INFO ASLSession:352 - Logging the entrance -2016-05-02 15:49:04 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 15:49:04 DEBUG TemplateModel:83 - 2016-05-02 15:49:04, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 15:49:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:49:04 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 15:49:04 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 114 ms -2016-05-02 15:49:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 15:49:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 15:49:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 15:49:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 15:49:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 15:49:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 15:49:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 15:49:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 15:49:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 15:49:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 15:49:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 15:49:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 15:49:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 15:49:04 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 15:49:05 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 15:49:05 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:49:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 15:49:05 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@67889e30 -2016-05-02 15:49:05 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@4e160206 -2016-05-02 15:49:05 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@337b3882 -2016-05-02 15:49:05 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@7245cc99 -2016-05-02 15:49:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 242 ms -2016-05-02 15:49:05 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 15:49:05 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 15:49:05 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 15:49:05 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 15:49:05 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 15:49:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:49:05 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:49:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 15:49:05 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 15:49:05 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 15:49:05 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 15:49:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:49:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:49:05 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:49:05 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 15:49:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:06 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 15:49:06 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 15:49:06 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 15:49:06 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 15:49:06 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 15:49:06 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 15:49:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 15:49:06 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:49:06 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 15:49:06 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-02 15:49:06 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 15:49:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:49:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:06 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 15:49:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:06 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 15:49:06 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 15:49:06 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 1055 ms -2016-05-02 15:49:06 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 15:49:06 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:49:06 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 15:49:06 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:49:07 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 15:49:07 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 15:49:07 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 15:49:07 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 15:49:07 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 15:49:07 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 15:49:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:07 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:49:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 15:49:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:07 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:49:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 15:49:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:07 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:49:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 15:49:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:07 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:49:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 15:49:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:07 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:49:07 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 15:49:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:49:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:49:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:49:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:08 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 15:49:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:49:08 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:49:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:49:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:08 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 15:49:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:49:08 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:49:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:49:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:08 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 15:49:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:08 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 15:49:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:08 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 15:49:08 INFO WorkspaceExplorerServiceImpl:188 - end time - 227 msc 0 sec -2016-05-02 15:49:08 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 15:49:08 INFO WorkspaceExplorerServiceImpl:188 - end time - 123 msc 0 sec -2016-05-02 15:49:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 15:49:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:49:08 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:49:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 15:49:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-02 15:49:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 15:49:08 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:49:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 15:49:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-02 15:49:08 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 15:49:08 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 15:49:08 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 15:49:08 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 15:49:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 15:49:08 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 15:49:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 15:49:08 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:49:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 15:49:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 15:49:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 15:49:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 15:49:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 15:49:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:49:08 INFO WorkspaceExplorerServiceImpl:188 - end time - 358 msc 0 sec -2016-05-02 15:49:16 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 15:49:16 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 15:49:16 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 15:49:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:49:16 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:49:16 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:49:16 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 15:49:16 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:49:16 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:49:18 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:49:18 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:49:18 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 15:49:18 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 15:49:18 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:49:18 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:49:18 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:49:18 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 15:49:18 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 15:49:18 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:49:18 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:49:18 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:49:18 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:49:18 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 15:49:18 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 15:49:18 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 15:49:18 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 15:49:18 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 15:49:18 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 15:49:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 15:49:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 15:49:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:49:18 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 15:49:18 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 15:49:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:49:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:49:18 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:49:18 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:49:18 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 15:49:18 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 15:49:18 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 15:49:18 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 15:49:18 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 15:49:18 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 15:49:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 15:49:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 15:49:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:49:18 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 15:49:18 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 15:49:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:49:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:49:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:49:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:49:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:49:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:49:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:18 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:49:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:49:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:49:18 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:49:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:49:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:49:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:49:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:49:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:49:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:49:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:49:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:49:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:18 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:49:18 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:49:18 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:49:18 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:49:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:49:18 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:49:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:49:18 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:49:18 INFO WorkspaceExplorerServiceImpl:142 - end time - 225 msc 0 sec -2016-05-02 15:49:18 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:49:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:49:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:49:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:49:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:49:21 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:49:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:49:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:21 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:49:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:49:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:49:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:49:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:49:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:49:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:49:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:49:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:49:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:49:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:49:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:49:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:49:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:49:21 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:49:21 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:49:21 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:49:21 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:49:21 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:49:21 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:49:21 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:49:21 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:49:21 INFO WorkspaceExplorerServiceImpl:142 - end time - 190 msc 0 sec -2016-05-02 15:49:21 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:49:26 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:49:26 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:49:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:49:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:49:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:49:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:26 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:49:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:49:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:49:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:49:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:49:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:49:26 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:49:26 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:49:26 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:49:26 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:49:26 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 15:49:26 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 15:49:26 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:49:26 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:49:26 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:49:26 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:49:26 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:49:26 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:49:26 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:49:26 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:49:26 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:49:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:49:27 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:49:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:49:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:49:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:49:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:49:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:27 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:49:27 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:49:27 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:49:27 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:49:27 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:49:27 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:49:27 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:27 INFO WorkspaceExplorerServiceImpl:188 - end time - 78 msc 0 sec -2016-05-02 15:49:27 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:49:27 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:49:27 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:49:27 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:27 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:49:27 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@b2cdb765, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@442faa14, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@15472a05, socketFactory=javax.net.DefaultSocketFactory@7317b92c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:49:27 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:49:27 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:49:27 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:243819}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1439243, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:27 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:49:27 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:27 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:49:27 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2126373}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=946762, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:49:27 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1540158}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1710039, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:27 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1854327}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1508928, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:27 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:27 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1854328}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854328}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 DEBUG command:56 - Command execution completed -2016-05-02 15:49:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854328}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 DEBUG command:56 - Command execution completed -2016-05-02 15:49:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854328}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 DEBUG command:56 - Command execution completed -2016-05-02 15:49:27 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:49:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854328}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 DEBUG command:56 - Command execution completed -2016-05-02 15:49:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854328}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 DEBUG command:56 - Command execution completed -2016-05-02 15:49:27 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1854328}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:49:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:49:27 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:49:27 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:49:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:49:27 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:49:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:49:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:27 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:49:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:49:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:49:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:49:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:28 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:49:28 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:49:28 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:49:28 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:49:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:49:28 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:49:28 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 15:49:28 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:49:28 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:49:28 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:49:28 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:49:28 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:49:28 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:49:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:49:28 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:49:28 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:49:28 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:49:28 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:49:28 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:49:28 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:28 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:28 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:49:28 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@b2cdb765, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@442faa14, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@15472a05, socketFactory=javax.net.DefaultSocketFactory@7317b92c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:49:28 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:49:28 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:49:28 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1854329}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1497243, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:28 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:49:28 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:28 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:28 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:49:28 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:243820}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2126374}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1353202, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:49:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1363639, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:49:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:49:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:49:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:49:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:49:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:49:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:49:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:28 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1540159}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1535963, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:28 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:49:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 15:49:28 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:49:28 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1854330}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854330}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 DEBUG command:56 - Command execution completed -2016-05-02 15:49:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854330}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 DEBUG command:56 - Command execution completed -2016-05-02 15:49:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854330}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 DEBUG command:56 - Command execution completed -2016-05-02 15:49:28 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:49:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854330}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 DEBUG command:56 - Command execution completed -2016-05-02 15:49:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854330}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 DEBUG command:56 - Command execution completed -2016-05-02 15:49:28 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1854330}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:28 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:49:28 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:49:28 INFO WorkspaceExplorerServiceImpl:188 - end time - 47 msc 0 sec -2016-05-02 15:49:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:49:28 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:49:28 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:49:28 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:49:28 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:49:28 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:49:28 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:49:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:49:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:49:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:49:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:28 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:49:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:49:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 15:49:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 15:49:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:28 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:49:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:49:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:49:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:49:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:28 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:49:28 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:49:28 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:49:28 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 15:49:28 DEBUG query:56 - Query completed -2016-05-02 15:49:28 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 15:49:28 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2126373} -2016-05-02 15:49:28 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:243819} -2016-05-02 15:49:28 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1854328}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:49:28 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1540158} -2016-05-02 15:49:28 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1854328} -2016-05-02 15:49:28 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1854327} -2016-05-02 15:49:28 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:49:28 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:49:28 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:49:28 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 15:49:29 DEBUG query:56 - Query completed -2016-05-02 15:49:29 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 15:49:29 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2126374} -2016-05-02 15:49:29 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:243820} -2016-05-02 15:49:29 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1540159} -2016-05-02 15:49:29 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1854330}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:49:29 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1854330} -2016-05-02 15:49:29 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1854329} -2016-05-02 15:49:29 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:49:29 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:49:29 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:49:29 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 15:49:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:49:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:49:29 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:49:29 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 15:49:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:29 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:49:29 DEBUG ServiceEngine:193 - get() - start -2016-05-02 15:49:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:49:29 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:49:29 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 15:49:29 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:49:29 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:49:29 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:49:29 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 15:49:29 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:49:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:49:29 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:49:29 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:49:29 DEBUG Operation:173 - get(String) - start -2016-05-02 15:49:29 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:49:29 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:49:29 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:49:29 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:49:29 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:29 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:29 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:49:29 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@b2cdb765, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@442faa14, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@15472a05, socketFactory=javax.net.DefaultSocketFactory@7317b92c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:49:29 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:49:29 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:49:29 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1854331}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1350638, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:29 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:49:29 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:29 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:29 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:49:29 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2126375}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1018116, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:49:29 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:243821}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1485027, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:49:29 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1540160}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1683475, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:29 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1854332}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854332}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 DEBUG command:56 - Command execution completed -2016-05-02 15:49:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854332}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 DEBUG command:56 - Command execution completed -2016-05-02 15:49:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854332}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 DEBUG command:56 - Command execution completed -2016-05-02 15:49:29 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 15:49:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854332}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 DEBUG command:56 - Command execution completed -2016-05-02 15:49:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854332}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 DEBUG command:56 - Command execution completed -2016-05-02 15:49:29 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:49:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854332}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 DEBUG command:56 - Command execution completed -2016-05-02 15:49:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854332}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 DEBUG command:56 - Command execution completed -2016-05-02 15:49:29 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:49:29 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854332}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:29 DEBUG query:56 - Query completed -2016-05-02 15:49:29 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 15:49:29 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 15:49:29 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 15:49:29 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854332}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 DEBUG update:56 - Update completed -2016-05-02 15:49:30 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1854332}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 DEBUG query:56 - Query completed -2016-05-02 15:49:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:49:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:49:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:49:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:49:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:49:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:49:30 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:49:30 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 15:49:30 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 15:49:30 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 15:49:30 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:49:30 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:49:30 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 15:49:30 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:49:30 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 15:49:30 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:49:30 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 15:49:30 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 15:49:30 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:49:30 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:49:30 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:49:30 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:49:30 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:49:30 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:49:30 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:49:30 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:30 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:30 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:49:30 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@b2cdb765, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@442faa14, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@15472a05, socketFactory=javax.net.DefaultSocketFactory@7317b92c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:49:30 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:49:30 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:49:30 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:243822}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2588086, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:30 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:49:30 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:30 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:49:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:49:30 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2126376}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1153987, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:49:30 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1854333}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1401665, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:30 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:49:30 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1540161}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1275060, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:49:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:49:30 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1854334}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854334}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 DEBUG command:56 - Command execution completed -2016-05-02 15:49:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854334}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 DEBUG command:56 - Command execution completed -2016-05-02 15:49:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854334}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 DEBUG command:56 - Command execution completed -2016-05-02 15:49:30 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:49:30 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:49:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854334}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 DEBUG command:56 - Command execution completed -2016-05-02 15:49:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854334}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 DEBUG command:56 - Command execution completed -2016-05-02 15:49:30 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:49:30 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1854334}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:30 DEBUG query:56 - Query completed -2016-05-02 15:49:30 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 15:49:30 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2126376} -2016-05-02 15:49:30 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:243822} -2016-05-02 15:49:30 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1854334}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:49:30 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1854334} -2016-05-02 15:49:30 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1540161} -2016-05-02 15:49:30 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:49:30 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1854333} -2016-05-02 15:49:30 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:49:30 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:49:30 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:49:30 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:49:30 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 15:49:30 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:49:30 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 15:49:30 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 15:49:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:49:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:49:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:49:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:49 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:49 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:49:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:49 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:49:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:49 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:49:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:49:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:49:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:49:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:49:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:49:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:49:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:49:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:50:09 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:50:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:50:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:50:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:50:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:50:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:50:09 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:50:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:50:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:50:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:50:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:50:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:50:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:50:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:50:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:50:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:50:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:50:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:50:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:50:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:50:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:50:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:50:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:50:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:50:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:50:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:50:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:50:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:50:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:50:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:50:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:50:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:50:49 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:50:49 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:50:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:50:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:50:49 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:50:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:50:49 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:50:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:50:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:50:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:52:10 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 15:52:10 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 15:52:10 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 15:52:10 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 15:52:10 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 15:52:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:52:10 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 15:52:10 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@74dec341 -2016-05-02 15:52:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:52:10 INFO ASLSession:352 - Logging the entrance -2016-05-02 15:52:10 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 15:52:10 DEBUG TemplateModel:83 - 2016-05-02 15:52:10, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 15:52:10 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:52:10 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 15:52:12 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 15:52:12 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 15:52:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:52:12 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 15:52:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:52:12 INFO ASLSession:352 - Logging the entrance -2016-05-02 15:52:12 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 15:52:12 DEBUG TemplateModel:83 - 2016-05-02 15:52:12, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 15:52:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:52:12 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 15:52:12 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 124 ms -2016-05-02 15:52:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 15:52:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 15:52:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 15:52:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 15:52:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 15:52:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 15:52:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 15:52:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 15:52:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 15:52:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 15:52:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 15:52:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 15:52:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 15:52:12 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 15:52:12 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 15:52:12 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:52:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 15:52:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@2cb6a5d7 -2016-05-02 15:52:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@e107ea -2016-05-02 15:52:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@4f5838b6 -2016-05-02 15:52:13 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@25284684 -2016-05-02 15:52:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 128 ms -2016-05-02 15:52:13 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 15:52:13 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 15:52:13 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 15:52:13 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 15:52:13 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 15:52:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:52:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:52:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 15:52:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 24 ms -2016-05-02 15:52:13 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 15:52:13 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:52:13 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 15:52:13 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:52:13 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 15:52:13 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 15:52:13 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 15:52:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:52:13 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:52:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:52:13 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 15:52:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:13 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 15:52:13 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 15:52:13 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 15:52:13 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 15:52:13 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 15:52:13 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 15:52:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 15:52:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:52:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 15:52:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-02 15:52:13 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 15:52:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:52:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:13 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 15:52:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:13 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 15:52:14 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:52:14 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 15:52:14 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 15:52:14 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 15:52:14 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 15:52:14 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 15:52:14 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 15:52:14 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 15:52:14 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 15:52:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:14 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:52:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 15:52:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:14 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:52:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 15:52:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:14 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:52:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 15:52:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:14 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:52:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 15:52:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:15 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 15:52:15 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 15:52:15 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 15:52:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:52:15 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 15:52:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:52:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:15 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 15:52:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:52:15 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:52:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:52:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:15 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 15:52:15 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 15:52:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:15 INFO WorkspaceExplorerServiceImpl:188 - end time - 125 msc 0 sec -2016-05-02 15:52:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:15 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 15:52:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:52:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:52:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:52:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:15 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 15:52:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 15:52:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:52:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:52:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 15:52:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 22 ms -2016-05-02 15:52:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 15:52:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:52:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 15:52:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-02 15:52:15 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 15:52:15 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 15:52:15 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 15:52:15 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 15:52:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 15:52:15 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 15:52:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 15:52:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:52:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 15:52:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-05-02 15:52:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 15:52:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 15:52:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 15:52:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:52:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 359 msc 0 sec -2016-05-02 15:52:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:16 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 15:52:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 1143 msc 1 sec -2016-05-02 15:52:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:52:22 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:52:22 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:52:22 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 15:52:22 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:52:22 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:52:22 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:52:22 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:52:22 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 15:52:22 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 15:52:22 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:52:22 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:52:22 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:52:22 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 15:52:22 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 15:52:22 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:52:22 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:52:22 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:52:22 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:52:22 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 15:52:22 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 15:52:22 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 15:52:22 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 15:52:22 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 15:52:22 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 15:52:22 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 15:52:22 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 15:52:22 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:52:22 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 15:52:22 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 15:52:22 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:52:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:52:22 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:52:22 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:52:22 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 15:52:22 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 15:52:22 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 15:52:22 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 15:52:22 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 15:52:22 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 15:52:22 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 15:52:22 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 15:52:22 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:52:22 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 15:52:22 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 15:52:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:52:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:52:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:52:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:52:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:52:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:52:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:22 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:52:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:52:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:52:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:52:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:52:22 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:52:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:52:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:52:22 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 15:52:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:52:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:22 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:52:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:22 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:52:22 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:52:22 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:52:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:52:23 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:52:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:52:23 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:52:23 INFO WorkspaceExplorerServiceImpl:142 - end time - 198 msc 0 sec -2016-05-02 15:52:23 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:52:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:52:23 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 15:52:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:52:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:52:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:52:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:52:25 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 15:52:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:52:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:25 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:52:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:52:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:52:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:52:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:52:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:52:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:52:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:52:25 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:52:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:52:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:52:25 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:52:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:52:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:52:25 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:52:25 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:52:25 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:52:25 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:52:25 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:52:25 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:52:25 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:52:25 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:52:25 INFO WorkspaceExplorerServiceImpl:142 - end time - 187 msc 0 sec -2016-05-02 15:52:25 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:52:31 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:52:31 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:52:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:52:31 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 15:52:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:52:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:31 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:52:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:52:31 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:52:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:52:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:52:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:52:31 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:52:31 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:52:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:52:31 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:52:31 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 15:52:31 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 15:52:31 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:52:31 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:52:31 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:52:31 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:52:31 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:52:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:52:31 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:52:31 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:52:31 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:52:31 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:52:31 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:52:31 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:52:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:52:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:52:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:52:31 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:52:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:52:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:52:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:52:31 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:31 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:31 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e330b5db, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@c4c4e90, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@65b9d63e, socketFactory=javax.net.DefaultSocketFactory@ba0b49f, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:52:31 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:52:31 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:52:31 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:52:31 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:52:31 INFO WorkspaceExplorerServiceImpl:188 - end time - 68 msc 0 sec -2016-05-02 15:52:31 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:52:31 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1854365}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:31 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1476900, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:31 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:243853}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:52:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:52:31 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:52:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1378673, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:31 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:31 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:31 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:52:31 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:52:31 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:31 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2126407}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:52:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:52:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=998731, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:31 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1540192}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:52:31 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:52:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1395660, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 15:52:31 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1854366}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854366}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:31 DEBUG command:56 - Command execution completed -2016-05-02 15:52:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854366}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:31 DEBUG command:56 - Command execution completed -2016-05-02 15:52:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854366}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:31 DEBUG command:56 - Command execution completed -2016-05-02 15:52:31 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:52:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854366}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:31 DEBUG command:56 - Command execution completed -2016-05-02 15:52:31 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854366}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:31 DEBUG command:56 - Command execution completed -2016-05-02 15:52:31 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1854366}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:32 DEBUG query:56 - Query completed -2016-05-02 15:52:32 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 15:52:32 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2126407} -2016-05-02 15:52:32 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:243853} -2016-05-02 15:52:32 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1540192} -2016-05-02 15:52:32 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1854366}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:52:32 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1854366} -2016-05-02 15:52:32 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1854365} -2016-05-02 15:52:32 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:52:32 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:52:32 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:52:32 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 15:52:32 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:52:32 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:52:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:52:32 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:52:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:52:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:32 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:52:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:52:32 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:52:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:52:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:32 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:52:32 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:52:32 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:52:32 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:52:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:52:32 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:52:32 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 15:52:32 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:52:32 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:52:32 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:52:32 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:52:32 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:52:32 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:52:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:52:32 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:52:32 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:52:32 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:52:32 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:52:32 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:52:32 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:32 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:32 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:32 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e330b5db, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@c4c4e90, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@65b9d63e, socketFactory=javax.net.DefaultSocketFactory@ba0b49f, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:52:32 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:52:32 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:52:32 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1854367}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:32 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1488453, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:32 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:52:32 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:32 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:32 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:32 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2126408}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:52:32 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:243854}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:52:32 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:52:32 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:52:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1964453, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1152440, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:52:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:52:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:52:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:52:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:52:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:52:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:33 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1540193}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:52:33 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:52:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2191206, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:52:33 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1854368}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854368}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:33 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:52:33 DEBUG command:56 - Command execution completed -2016-05-02 15:52:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854368}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:33 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:52:33 DEBUG command:56 - Command execution completed -2016-05-02 15:52:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854368}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:33 DEBUG command:56 - Command execution completed -2016-05-02 15:52:33 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:52:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854368}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:33 DEBUG command:56 - Command execution completed -2016-05-02 15:52:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854368}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:33 DEBUG command:56 - Command execution completed -2016-05-02 15:52:33 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1854368}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:33 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:52:33 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:52:33 INFO WorkspaceExplorerServiceImpl:188 - end time - 47 msc 0 sec -2016-05-02 15:52:33 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:52:33 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:52:33 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:52:33 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:52:33 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:52:34 DEBUG query:56 - Query completed -2016-05-02 15:52:34 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 15:52:34 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2126408} -2016-05-02 15:52:34 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:243854} -2016-05-02 15:52:34 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1540193} -2016-05-02 15:52:34 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1854368}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:52:34 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1854368} -2016-05-02 15:52:34 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1854367} -2016-05-02 15:52:34 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:52:34 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:52:34 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:52:34 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 15:52:36 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:52:36 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:52:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:52:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:52:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:52:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:36 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:52:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:52:36 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:52:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:52:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:36 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:52:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:52:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:52:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:52:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:36 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:52:36 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:52:36 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:52:36 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 15:52:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:52:37 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 15:52:37 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:52:37 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 15:52:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:37 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:52:37 DEBUG ServiceEngine:193 - get() - start -2016-05-02 15:52:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:52:37 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:52:37 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 15:52:37 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:52:37 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:52:37 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:52:37 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 15:52:37 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:52:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:52:37 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:52:37 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:52:37 DEBUG Operation:173 - get(String) - start -2016-05-02 15:52:37 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:52:37 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:52:37 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:52:37 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:52:37 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:37 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:37 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:37 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e330b5db, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@c4c4e90, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@65b9d63e, socketFactory=javax.net.DefaultSocketFactory@ba0b49f, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:52:37 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:52:37 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:52:37 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1854369}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:243858}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1246413, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1354030, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:37 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:52:37 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:37 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:37 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2126409}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1248055, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:37 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1540194}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1262084, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:52:37 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1854370}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854370}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG command:56 - Command execution completed -2016-05-02 15:52:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854370}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG command:56 - Command execution completed -2016-05-02 15:52:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854370}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG command:56 - Command execution completed -2016-05-02 15:52:37 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 15:52:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854370}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG command:56 - Command execution completed -2016-05-02 15:52:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854370}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG command:56 - Command execution completed -2016-05-02 15:52:37 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:52:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854370}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG command:56 - Command execution completed -2016-05-02 15:52:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854370}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG command:56 - Command execution completed -2016-05-02 15:52:37 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:52:37 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854370}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG query:56 - Query completed -2016-05-02 15:52:37 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 15:52:37 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 15:52:37 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 15:52:37 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854370}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG update:56 - Update completed -2016-05-02 15:52:37 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1854370}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG query:56 - Query completed -2016-05-02 15:52:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:52:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:52:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:52:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:52:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:52:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:52:37 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:52:37 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 15:52:37 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 15:52:37 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 15:52:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:52:37 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:52:37 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 15:52:37 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:52:37 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 15:52:37 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:52:37 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 15:52:37 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 15:52:37 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:52:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:52:37 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:52:37 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:52:37 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:52:37 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:52:37 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:52:37 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:37 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:37 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:37 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e330b5db, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@c4c4e90, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@65b9d63e, socketFactory=javax.net.DefaultSocketFactory@ba0b49f, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:52:37 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:52:37 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:52:37 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1854371}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1194362, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:37 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:52:37 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:37 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:52:37 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:243859}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:37 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2126410}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1537344, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=997020, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:52:37 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1540195}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1326366, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:52:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:52:37 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1854372}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854372}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG command:56 - Command execution completed -2016-05-02 15:52:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854372}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG command:56 - Command execution completed -2016-05-02 15:52:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854372}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG command:56 - Command execution completed -2016-05-02 15:52:37 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:52:37 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:52:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854372}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG command:56 - Command execution completed -2016-05-02 15:52:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854372}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG command:56 - Command execution completed -2016-05-02 15:52:37 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:52:37 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1854372}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG query:56 - Query completed -2016-05-02 15:52:37 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 15:52:37 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2126410} -2016-05-02 15:52:37 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:243859} -2016-05-02 15:52:37 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1540195} -2016-05-02 15:52:37 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1854372}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:52:37 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1854372} -2016-05-02 15:52:37 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1854371} -2016-05-02 15:52:37 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:52:37 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:52:37 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:52:37 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:52:37 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:52:37 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 15:52:37 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:52:37 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 15:52:37 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 15:52:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:52:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:52:47 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:47 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:52:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:52:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:52:47 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:52:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:52:47 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:52:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:52:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:52:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:52:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:52:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:52:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:52:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:52:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:52:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:53:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:53:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:53:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:53:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:53:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:53:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:53:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:53:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:53:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:53:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:53:17 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:53:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:53:17 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:53:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:53:17 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:53:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:53:17 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:53:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:53:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:53:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:53:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:53:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:53:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:53:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:53:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:53:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:53:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:53:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:53:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:53:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:53:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:53:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:53:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:53:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:53:47 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:53:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:53:47 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:53:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:53:47 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:53:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:53:47 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:53:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:53:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:53:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:53:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:53:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:53:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:53:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:53:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:53:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:54:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 15:54:00 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 15:54:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:54:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:54:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:54:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 15:54:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:54:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:54:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:17 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:54:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:17 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:54:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:17 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:54:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:17 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:54:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:54:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:54:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:54:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:54:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:54:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:54:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:54:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:54:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:47 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:54:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:47 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:54:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:47 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:54:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:47 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:54:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:54:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:54:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:54:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:54:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:54:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:54:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:54:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:54:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=42.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:55:38 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 15:55:38 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 15:55:38 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 15:55:38 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 15:55:38 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 15:55:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:55:38 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 15:55:38 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@3b8a9b8e -2016-05-02 15:55:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:55:38 INFO ASLSession:352 - Logging the entrance -2016-05-02 15:55:38 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 15:55:38 DEBUG TemplateModel:83 - 2016-05-02 15:55:38, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 15:55:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:55:38 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 15:55:40 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 15:55:40 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 15:55:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:55:40 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 15:55:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:55:40 INFO ASLSession:352 - Logging the entrance -2016-05-02 15:55:40 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 15:55:40 DEBUG TemplateModel:83 - 2016-05-02 15:55:40, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 15:55:40 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:55:40 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 15:55:40 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 123 ms -2016-05-02 15:55:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 15:55:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 15:55:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 15:55:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 15:55:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 15:55:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 15:55:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 15:55:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 15:55:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 15:55:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 15:55:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 15:55:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 15:55:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 15:55:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 15:55:40 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 15:55:40 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:55:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 15:55:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@e7092a4 -2016-05-02 15:55:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@11b3fac5 -2016-05-02 15:55:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@1055e8bc -2016-05-02 15:55:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@6405631e -2016-05-02 15:55:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 134 ms -2016-05-02 15:55:41 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 15:55:41 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 15:55:41 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 15:55:41 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 15:55:41 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 15:55:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:55:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:55:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 15:55:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 24 ms -2016-05-02 15:55:41 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 15:55:41 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:55:41 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 15:55:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:55:41 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 15:55:41 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 15:55:41 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 15:55:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:55:41 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:55:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:55:41 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 15:55:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:41 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 15:55:41 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 15:55:41 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 15:55:41 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 15:55:41 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 15:55:41 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 15:55:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 15:55:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:55:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 15:55:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 20 ms -2016-05-02 15:55:41 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 15:55:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:55:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:41 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 15:55:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:41 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 15:55:41 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 15:55:42 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 15:55:42 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 15:55:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 15:55:42 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 15:55:42 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 15:55:42 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 15:55:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:55:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:55:42 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:55:42 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:55:42 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 15:55:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 15:55:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:55:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:55:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:55:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 15:55:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:55:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:55:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:55:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 15:55:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:55:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:55:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 15:55:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 15:55:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:55:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:55:44 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 15:55:44 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 15:55:44 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:55:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:55:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:44 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 15:55:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:55:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:55:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:55:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:44 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 15:55:44 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 15:55:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:55:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:55:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 135 msc 0 sec -2016-05-02 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:55:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:55:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:44 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 15:55:44 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 15:55:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:55:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:55:44 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 15:55:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 138 msc 0 sec -2016-05-02 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:55:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:55:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 15:55:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-05-02 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 15:55:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:55:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 15:55:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-02 15:55:44 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 15:55:44 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 15:55:44 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 15:55:44 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 15:55:44 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 15:55:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 15:55:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 15:55:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 15:55:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:55:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 366 msc 0 sec -2016-05-02 15:55:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:55:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:55:49 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:55:49 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 15:55:49 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:55:49 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 15:55:49 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 15:55:49 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 15:55:49 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 15:55:49 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 15:55:49 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 15:55:49 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 15:55:49 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 15:55:49 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 15:55:49 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 15:55:49 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 15:55:49 DEBUG WPS2SM:204 - Schema: null -2016-05-02 15:55:49 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 15:55:49 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:55:49 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 15:55:49 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 15:55:49 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 15:55:49 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 15:55:49 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 15:55:49 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 15:55:49 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 15:55:49 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 15:55:49 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:55:49 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 15:55:49 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 15:55:49 DEBUG WPS2SM:92 - WPS type: -2016-05-02 15:55:49 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 15:55:49 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 15:55:49 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 15:55:49 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 15:55:49 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 15:55:49 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 15:55:49 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 15:55:49 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 15:55:49 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 15:55:49 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 15:55:49 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 15:55:49 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 15:55:49 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 15:55:49 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 15:55:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:55:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:55:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:55:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:55:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:55:49 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:55:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:55:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:49 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 15:55:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:55:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 15:55:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:55:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:55:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:55:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:55:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:55:50 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:55:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:55:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:55:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:55:50 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:55:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:55:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:55:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:55:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:55:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:55:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:55:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:55:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:55:50 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:55:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 15:55:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:55:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 15:55:50 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 15:55:50 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 15:55:50 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 15:55:50 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 15:55:50 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:55:50 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 15:55:50 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 15:55:50 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 15:55:50 INFO WorkspaceExplorerServiceImpl:142 - end time - 233 msc 0 sec -2016-05-02 15:55:50 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 15:55:55 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:55:55 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:55:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:55:55 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 15:55:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 15:55:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:55 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:55:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:55:55 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:55:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:55:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:55 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:55:55 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:55:55 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:55:55 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:55:55 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:55:55 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:55:55 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 15:55:55 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 15:55:55 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:55:55 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:55:55 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:55:55 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:55:55 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:55:55 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:55:55 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:55:55 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:55:55 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:55:55 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:55:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:55:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:55:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:55:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:55 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:55:55 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:55:55 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:55:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:55:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:55 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:55:55 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:55:55 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:55 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:55 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c10022a3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@184c5987, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@3c89ba87, socketFactory=javax.net.DefaultSocketFactory@7635141d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:55:55 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:55:55 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:55:55 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:55:55 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 15:55:55 INFO WorkspaceExplorerServiceImpl:188 - end time - 83 msc 0 sec -2016-05-02 15:55:56 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:55:56 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:55:56 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:55:56 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:243891}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1739466, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:56 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1854407}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:55:56 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1811098, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:56 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:56 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:56 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2126446}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=953632, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:56 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1540231}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1621337, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:55:56 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1854408}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854408}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG command:56 - Command execution completed -2016-05-02 15:55:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854408}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG command:56 - Command execution completed -2016-05-02 15:55:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854408}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG command:56 - Command execution completed -2016-05-02 15:55:56 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:55:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854408}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG command:56 - Command execution completed -2016-05-02 15:55:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854408}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG command:56 - Command execution completed -2016-05-02 15:55:56 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1854408}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 15:55:56 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:55:56 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:55:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:55:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:55:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:55:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:56 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:55:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:55:56 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:55:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:55:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:56 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:55:56 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:55:56 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:55:56 DEBUG ServiceEngine:306 - get() - start -2016-05-02 15:55:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:55:56 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:55:56 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 15:55:56 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 15:55:56 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:55:56 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:55:56 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 15:55:56 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:55:56 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:55:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:55:56 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:55:56 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:55:56 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:55:56 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:55:56 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:55:56 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:56 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:56 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:56 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c10022a3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@184c5987, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@3c89ba87, socketFactory=javax.net.DefaultSocketFactory@7635141d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:55:56 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:55:56 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:55:56 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:243893}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:55:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:55:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:55:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:55:56 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:55:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:55:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=28787819, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:56 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:55:56 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:56 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=28.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:56 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2126447}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:55:56 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 15:55:56 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1442774, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=28.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:56 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1854409}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1432259, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:56 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=28.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:56 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1540232}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1405672, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=28.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 15:55:56 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:55:56 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 15:55:56 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1854410}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854410}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG command:56 - Command execution completed -2016-05-02 15:55:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854410}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG command:56 - Command execution completed -2016-05-02 15:55:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854410}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG command:56 - Command execution completed -2016-05-02 15:55:56 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:55:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854410}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG command:56 - Command execution completed -2016-05-02 15:55:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854410}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 DEBUG command:56 - Command execution completed -2016-05-02 15:55:56 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1854410}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:56 INFO WorkspaceExplorerServiceImpl:188 - end time - 55 msc 0 sec -2016-05-02 15:55:56 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 15:55:57 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:55:57 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 15:55:57 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 15:55:57 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 15:55:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:55:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=23.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 15:55:57 DEBUG query:56 - Query completed -2016-05-02 15:55:57 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 15:55:57 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2126446} -2016-05-02 15:55:57 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1854408}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:55:57 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1540231} -2016-05-02 15:55:57 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:243891} -2016-05-02 15:55:57 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1854408} -2016-05-02 15:55:57 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1854407} -2016-05-02 15:55:57 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:55:57 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:55:57 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 15:55:57 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 15:55:57 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:55:57 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:55:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:55:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:55:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:55:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:57 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:55:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:55:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 15:55:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 15:55:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:57 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:55:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:55:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:55:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:55:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:57 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:55:57 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:55:57 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:55:57 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 15:55:58 DEBUG query:56 - Query completed -2016-05-02 15:55:58 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 15:55:58 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2126447} -2016-05-02 15:55:58 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:243893} -2016-05-02 15:55:58 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1854410}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:55:58 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1540232} -2016-05-02 15:55:58 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1854410} -2016-05-02 15:55:58 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:55:58 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:55:58 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 15:55:58 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 15:55:58 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1854409} -2016-05-02 15:55:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 15:55:58 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 15:55:58 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 15:55:58 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 15:55:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:58 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:55:58 DEBUG ServiceEngine:193 - get() - start -2016-05-02 15:55:58 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:55:58 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:55:58 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 15:55:58 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:55:58 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:55:58 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 15:55:58 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 15:55:58 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:55:58 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:55:58 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:55:58 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:55:58 DEBUG Operation:173 - get(String) - start -2016-05-02 15:55:58 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:55:58 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:55:58 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:55:58 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:55:58 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:58 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:58 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:58 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c10022a3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@184c5987, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@3c89ba87, socketFactory=javax.net.DefaultSocketFactory@7635141d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:55:58 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:55:58 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:55:58 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1854412}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1605748, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:58 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:55:58 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:58 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:243894}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:58 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1386816, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:58 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2126448}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1103330, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:58 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1540233}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1337636, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:55:58 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1854413}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG command:56 - Command execution completed -2016-05-02 15:55:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG command:56 - Command execution completed -2016-05-02 15:55:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG command:56 - Command execution completed -2016-05-02 15:55:58 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 15:55:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG command:56 - Command execution completed -2016-05-02 15:55:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG command:56 - Command execution completed -2016-05-02 15:55:58 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:55:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG command:56 - Command execution completed -2016-05-02 15:55:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG command:56 - Command execution completed -2016-05-02 15:55:58 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:55:58 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG query:56 - Query completed -2016-05-02 15:55:58 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 15:55:58 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 15:55:58 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 15:55:58 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG update:56 - Update completed -2016-05-02 15:55:58 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1854413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG query:56 - Query completed -2016-05-02 15:55:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 15:55:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 15:55:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 15:55:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 15:55:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 15:55:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 15:55:58 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 15:55:58 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 15:55:58 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 15:55:58 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 15:55:58 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:55:58 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:55:58 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 15:55:58 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 15:55:58 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 15:55:58 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 15:55:58 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 15:55:58 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 15:55:58 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 15:55:58 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 15:55:58 DEBUG BucketCoding:42 - coding name done -2016-05-02 15:55:58 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 15:55:58 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 15:55:58 DEBUG MongoIO:77 - open mongo connection -2016-05-02 15:55:58 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 15:55:58 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:58 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:58 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:58 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c10022a3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@184c5987, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@3c89ba87, socketFactory=javax.net.DefaultSocketFactory@7635141d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 15:55:58 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 15:55:58 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 15:55:58 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:243895}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1240342, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:58 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 15:55:58 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:58 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 15:55:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:58 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2126449}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1451025, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:58 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1854414}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1188333, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:58 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 15:55:58 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1540234}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1059070, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 15:55:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-02 15:55:58 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1854415}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG command:56 - Command execution completed -2016-05-02 15:55:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:58 DEBUG command:56 - Command execution completed -2016-05-02 15:55:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:59 DEBUG command:56 - Command execution completed -2016-05-02 15:55:59 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:55:59 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:55:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:59 DEBUG command:56 - Command execution completed -2016-05-02 15:55:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:59 DEBUG command:56 - Command execution completed -2016-05-02 15:55:59 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:55:59 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1854415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:55:59 DEBUG query:56 - Query completed -2016-05-02 15:55:59 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 15:55:59 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2126449} -2016-05-02 15:55:59 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:243895} -2016-05-02 15:55:59 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1540234} -2016-05-02 15:55:59 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1854415}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 15:55:59 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1854415} -2016-05-02 15:55:59 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1854414} -2016-05-02 15:55:59 INFO MongoIO:508 - Mongo has been closed -2016-05-02 15:55:59 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 15:55:59 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:55:59 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:55:59 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:55:59 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 15:55:59 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 15:55:59 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 15:55:59 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 15:56:08 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:56:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:56:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:56:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:56:08 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:56:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 15:56:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:56:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:56:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:56:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:56:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:56:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:56:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:56:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:56:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:56:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:56:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:56:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:56:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:56:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:56:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:56:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 15:56:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:56:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:56:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:56:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:56:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:56:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:56:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:56:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:56:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:56:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:56:38 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:56:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:56:48 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:56:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:56:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:56:48 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:56:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:56:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:56:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:56:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:56:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:56:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:56:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:56:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:56:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:56:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 15:56:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:56:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:57:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:57:08 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:57:08 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:57:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:57:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:57:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:57:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:57:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 15:57:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:57:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:57:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:57:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 15:57:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 15:57:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 15:57:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:57:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:57:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 15:57:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 15:57:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:57:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:57:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:57:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:57:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:57:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 15:57:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:57:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:57:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:57:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:57:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:57:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:57:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:57:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:57:38 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:57:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:57:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:57:48 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:57:48 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:57:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:57:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:57:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 15:57:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:57:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:57:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:57:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:57:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:57:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:57:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:57:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 15:57:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:57:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}] -2016-05-02 15:58:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:58:08 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:58:08 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:58:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}] -2016-05-02 15:58:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}] -2016-05-02 15:58:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}] -2016-05-02 15:58:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:58:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}] -2016-05-02 15:58:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:58:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:58:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:58:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}] -2016-05-02 15:58:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}] -2016-05-02 15:58:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}] -2016-05-02 15:58:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:58:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.2 ms, state=CONNECTED}] -2016-05-02 15:58:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 15:58:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 15:58:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:58:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:58:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:58:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.2 ms, state=CONNECTED}] -2016-05-02 15:58:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.2 ms, state=CONNECTED}] -2016-05-02 15:58:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.2 ms, state=CONNECTED}] -2016-05-02 15:58:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:58:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}] -2016-05-02 15:58:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:58:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}] -2016-05-02 15:58:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:58:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}] -2016-05-02 15:58:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:58:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}] -2016-05-02 15:58:38 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:58:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}] -2016-05-02 15:58:48 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:58:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}] -2016-05-02 15:58:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:58:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}] -2016-05-02 15:58:48 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:58:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}] -2016-05-02 15:58:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:58:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 15:58:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:58:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 15:58:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:58:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 15:58:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:58:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 15:58:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:58:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 15:59:08 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:59:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 15:59:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:59:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 15:59:08 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:59:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 15:59:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:59:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}] -2016-05-02 15:59:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 15:59:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 15:59:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:59:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}] -2016-05-02 15:59:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:59:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}] -2016-05-02 15:59:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:59:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}] -2016-05-02 15:59:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:59:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:59:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:59:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:59:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:59:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:59:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:59:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 15:59:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:59:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 15:59:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:59:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 15:59:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:59:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 15:59:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:59:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 15:59:38 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:59:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 15:59:48 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:59:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 15:59:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:59:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 15:59:48 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:59:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 15:59:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:59:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.7 ms, state=CONNECTED}] -2016-05-02 15:59:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 15:59:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.7 ms, state=CONNECTED}] -2016-05-02 15:59:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 15:59:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.7 ms, state=CONNECTED}] -2016-05-02 15:59:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 15:59:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.7 ms, state=CONNECTED}] -2016-05-02 15:59:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 15:59:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.4 ms, state=CONNECTED}] -2016-05-02 16:00:08 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:00:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.4 ms, state=CONNECTED}] -2016-05-02 16:00:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:00:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.4 ms, state=CONNECTED}] -2016-05-02 16:00:08 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:00:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.4 ms, state=CONNECTED}] -2016-05-02 16:00:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:00:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.7 ms, state=CONNECTED}] -2016-05-02 16:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:00:13 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:00:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:00:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.7 ms, state=CONNECTED}] -2016-05-02 16:00:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:00:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=6.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.7 ms, state=CONNECTED}] -2016-05-02 16:00:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:00:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.7 ms, state=CONNECTED}] -2016-05-02 16:00:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:00:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.5 ms, state=CONNECTED}] -2016-05-02 16:00:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:00:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.5 ms, state=CONNECTED}] -2016-05-02 16:00:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:00:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.5 ms, state=CONNECTED}] -2016-05-02 16:00:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:00:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.5 ms, state=CONNECTED}] -2016-05-02 16:00:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:00:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.0 ms, state=CONNECTED}] -2016-05-02 16:00:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:00:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.0 ms, state=CONNECTED}] -2016-05-02 16:00:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:00:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.0 ms, state=CONNECTED}] -2016-05-02 16:00:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:00:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.0 ms, state=CONNECTED}] -2016-05-02 16:00:38 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:00:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.0 ms, state=CONNECTED}] -2016-05-02 16:00:48 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:00:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.0 ms, state=CONNECTED}] -2016-05-02 16:00:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:00:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.0 ms, state=CONNECTED}] -2016-05-02 16:00:48 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:00:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:00:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.6 ms, state=CONNECTED}] -2016-05-02 16:00:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=14.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.6 ms, state=CONNECTED}] -2016-05-02 16:00:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:00:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=14.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.6 ms, state=CONNECTED}] -2016-05-02 16:00:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:00:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=14.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.6 ms, state=CONNECTED}] -2016-05-02 16:00:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:00:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=14.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.9 ms, state=CONNECTED}] -2016-05-02 16:00:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:00:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=31.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.9 ms, state=CONNECTED}] -2016-05-02 16:01:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:01:08 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:01:08 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:01:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=31.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.9 ms, state=CONNECTED}] -2016-05-02 16:01:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:01:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=31.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.9 ms, state=CONNECTED}] -2016-05-02 16:01:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:01:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=31.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}] -2016-05-02 16:01:08 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:01:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=25.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}] -2016-05-02 16:01:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:01:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=25.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}] -2016-05-02 16:01:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:01:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=25.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}] -2016-05-02 16:01:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:01:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=25.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=9.7 ms, state=CONNECTED}] -2016-05-02 16:01:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:01:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=21.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=9.7 ms, state=CONNECTED}] -2016-05-02 16:01:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:01:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=21.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=9.7 ms, state=CONNECTED}] -2016-05-02 16:01:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:01:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=21.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=9.7 ms, state=CONNECTED}] -2016-05-02 16:01:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:01:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=21.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=8.1 ms, state=CONNECTED}] -2016-05-02 16:01:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:01:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=17.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=8.1 ms, state=CONNECTED}] -2016-05-02 16:01:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:01:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=17.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=8.1 ms, state=CONNECTED}] -2016-05-02 16:01:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:01:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=17.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=8.1 ms, state=CONNECTED}] -2016-05-02 16:01:38 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:01:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=17.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.9 ms, state=CONNECTED}] -2016-05-02 16:01:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:01:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=14.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.9 ms, state=CONNECTED}] -2016-05-02 16:01:48 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:01:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=14.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.9 ms, state=CONNECTED}] -2016-05-02 16:01:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:01:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=14.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.9 ms, state=CONNECTED}] -2016-05-02 16:01:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:01:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=14.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.9 ms, state=CONNECTED}] -2016-05-02 16:01:48 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:01:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=11.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.9 ms, state=CONNECTED}] -2016-05-02 16:01:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:01:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=11.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.9 ms, state=CONNECTED}] -2016-05-02 16:01:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:01:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=12.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=11.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.9 ms, state=CONNECTED}] -2016-05-02 16:01:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:01:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=12.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=11.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.1 ms, state=CONNECTED}] -2016-05-02 16:01:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:01:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=12.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=9.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.1 ms, state=CONNECTED}] -2016-05-02 16:02:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:02:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:02:08 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:02:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=12.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=9.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.1 ms, state=CONNECTED}] -2016-05-02 16:02:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:02:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=10.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=9.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.1 ms, state=CONNECTED}] -2016-05-02 16:02:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:02:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=10.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=9.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.6 ms, state=CONNECTED}] -2016-05-02 16:02:08 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:02:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=10.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=8.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.6 ms, state=CONNECTED}] -2016-05-02 16:02:08 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2126448} -2016-05-02 16:02:08 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1854413}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:02:08 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:243894} -2016-05-02 16:02:08 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1540233} -2016-05-02 16:02:08 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1854413} -2016-05-02 16:02:08 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1854412} -2016-05-02 16:02:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:02:58 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:03:15 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:03:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:03:15 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION -2016-05-02 16:03:15 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:03:15 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:03:15 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION - SGVM_INTERPOLATION - An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare - - - InputFile - Input file in TACSAT format. E.g. http://goo.gl/i16kPw - Name of the parameter: InputFile. Input file in TACSAT format. E.g. http://goo.gl/i16kPw - - - - text/xml - - - - - text/xml - - - application/d4science - - - - - - npoints - The number of pings or positions required between each real or actual vessel position or ping - Name of the parameter: npoints. The number of pings or positions required between each real or actual vessel position or ping - - - - 10 - - - - interval - Average time in minutes between two adjacent datapoints - Name of the parameter: interval. Average time in minutes between two adjacent datapoints - - - - 120 - - - - margin - Maximum deviation from specified interval to find adjacent datapoints (tolerance) - Name of the parameter: margin. Maximum deviation from specified interval to find adjacent datapoints (tolerance) - - - - 10 - - - - res - Number of points to use to create interpolation (including start and end point) - Name of the parameter: res. Number of points to use to create interpolation (including start and end point) - - - - 100 - - - - method - Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - Name of the parameter: method. Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - - - - cHs - SL - - cHs - - - - fm - The FM parameter in cubic interpolation - Name of the parameter: fm. The FM parameter in cubic interpolation - - - - 0.5 - - - - distscale - The DistScale parameter for cubic interpolation - Name of the parameter: distscale. The DistScale parameter for cubic interpolation - - - - 20 - - - - sigline - The Sigline parameter in cubic interpolation - Name of the parameter: sigline. The Sigline parameter in cubic interpolation - - - - 0.2 - - - - minspeedThr - A filter on the minimum speed to take into account for interpolation - Name of the parameter: minspeedThr. A filter on the minimum speed to take into account for interpolation - - - - 2 - - - - maxspeedThr - A filter on the maximum speed to take into account for interpolation - Name of the parameter: maxspeedThr. A filter on the maximum speed to take into account for interpolation - - - - 6 - - - - headingAdjustment - Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - Name of the parameter: headingAdjustment. Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - - - - 0 - - - - equalDist - Whether the number of positions returned should be equally spaced or not - Name of the parameter: equalDist. Whether the number of positions returned should be equally spaced or not - - - - true - false - - true - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 16:03:15 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 16:03:15 DEBUG SClient4WPS:300 - WPSClient->Input: - InputFile - Input file in TACSAT format. E.g. http://goo.gl/i16kPw - Name of the parameter: InputFile. Input file in TACSAT format. E.g. http://goo.gl/i16kPw - - - - text/xml - - - - - text/xml - - - application/d4science - - - - -2016-05-02 16:03:15 DEBUG SClient4WPS:300 - WPSClient->Input: - npoints - The number of pings or positions required between each real or actual vessel position or ping - Name of the parameter: npoints. The number of pings or positions required between each real or actual vessel position or ping - - - - 10 - - -2016-05-02 16:03:15 DEBUG SClient4WPS:300 - WPSClient->Input: - interval - Average time in minutes between two adjacent datapoints - Name of the parameter: interval. Average time in minutes between two adjacent datapoints - - - - 120 - - -2016-05-02 16:03:15 DEBUG SClient4WPS:300 - WPSClient->Input: - margin - Maximum deviation from specified interval to find adjacent datapoints (tolerance) - Name of the parameter: margin. Maximum deviation from specified interval to find adjacent datapoints (tolerance) - - - - 10 - - -2016-05-02 16:03:15 DEBUG SClient4WPS:300 - WPSClient->Input: - res - Number of points to use to create interpolation (including start and end point) - Name of the parameter: res. Number of points to use to create interpolation (including start and end point) - - - - 100 - - -2016-05-02 16:03:15 DEBUG SClient4WPS:300 - WPSClient->Input: - method - Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - Name of the parameter: method. Set to cHs for cubic Hermite spline or SL for Straight Line interpolation - - - - cHs - SL - - cHs - - -2016-05-02 16:03:15 DEBUG SClient4WPS:300 - WPSClient->Input: - fm - The FM parameter in cubic interpolation - Name of the parameter: fm. The FM parameter in cubic interpolation - - - - 0.5 - - -2016-05-02 16:03:15 DEBUG SClient4WPS:300 - WPSClient->Input: - distscale - The DistScale parameter for cubic interpolation - Name of the parameter: distscale. The DistScale parameter for cubic interpolation - - - - 20 - - -2016-05-02 16:03:15 DEBUG SClient4WPS:300 - WPSClient->Input: - sigline - The Sigline parameter in cubic interpolation - Name of the parameter: sigline. The Sigline parameter in cubic interpolation - - - - 0.2 - - -2016-05-02 16:03:15 DEBUG SClient4WPS:300 - WPSClient->Input: - minspeedThr - A filter on the minimum speed to take into account for interpolation - Name of the parameter: minspeedThr. A filter on the minimum speed to take into account for interpolation - - - - 2 - - -2016-05-02 16:03:15 DEBUG SClient4WPS:300 - WPSClient->Input: - maxspeedThr - A filter on the maximum speed to take into account for interpolation - Name of the parameter: maxspeedThr. A filter on the maximum speed to take into account for interpolation - - - - 6 - - -2016-05-02 16:03:15 DEBUG SClient4WPS:300 - WPSClient->Input: - headingAdjustment - Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - Name of the parameter: headingAdjustment. Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. - - - - 0 - - -2016-05-02 16:03:15 DEBUG SClient4WPS:300 - WPSClient->Input: - equalDist - Whether the number of positions returned should be equally spaced or not - Name of the parameter: equalDist. Whether the number of positions returned should be equally spaced or not - - - - true - false - - true - - -2016-05-02 16:03:15 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 16:03:15 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 16:03:15 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:03:15 DEBUG WPS2SM:312 - Conversion to SM Type->InputFile is a Complex Input -2016-05-02 16:03:15 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 16:03:15 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 16:03:15 DEBUG WPS2SM:204 - Schema: null -2016-05-02 16:03:15 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 16:03:15 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Input file in TACSAT format. E.g. http://goo.gl/i16kPw -2016-05-02 16:03:15 DEBUG WPS2SM:324 - Conversion to SM Type->Name:InputFile -2016-05-02 16:03:15 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:03:15 DEBUG SClient4WPS:653 - InputParameter: FileParameter [mimeType=text/xml, value=null, name=InputFile, description=Input file in TACSAT format. E.g. http://goo.gl/i16kPw [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=FILE] -2016-05-02 16:03:15 DEBUG WPS2SM:287 - Conversion to SM Type->npoints is a Literal Input -2016-05-02 16:03:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:03:15 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 16:03:15 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 16:03:15 DEBUG WPS2SM:323 - Conversion to SM Type->Title:The number of pings or positions required between each real or actual vessel position or ping -2016-05-02 16:03:15 DEBUG WPS2SM:324 - Conversion to SM Type->Name:npoints -2016-05-02 16:03:15 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:03:15 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=npoints, description=The number of pings or positions required between each real or actual vessel position or ping [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 16:03:15 DEBUG WPS2SM:287 - Conversion to SM Type->interval is a Literal Input -2016-05-02 16:03:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:03:15 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 16:03:15 DEBUG WPS2SM:100 - Guessed default value: 120 -2016-05-02 16:03:15 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Average time in minutes between two adjacent datapoints -2016-05-02 16:03:15 DEBUG WPS2SM:324 - Conversion to SM Type->Name:interval -2016-05-02 16:03:15 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:03:15 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=120, value=null, name=interval, description=Average time in minutes between two adjacent datapoints [Min N. of Entries:1; Max N. of Entries:1; default:120], typology=OBJECT] -2016-05-02 16:03:15 DEBUG WPS2SM:287 - Conversion to SM Type->margin is a Literal Input -2016-05-02 16:03:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:03:15 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 16:03:15 DEBUG WPS2SM:100 - Guessed default value: 10 -2016-05-02 16:03:15 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Maximum deviation from specified interval to find adjacent datapoints (tolerance) -2016-05-02 16:03:15 DEBUG WPS2SM:324 - Conversion to SM Type->Name:margin -2016-05-02 16:03:15 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:03:15 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=margin, description=Maximum deviation from specified interval to find adjacent datapoints (tolerance) [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT] -2016-05-02 16:03:15 DEBUG WPS2SM:287 - Conversion to SM Type->res is a Literal Input -2016-05-02 16:03:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:03:15 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 16:03:15 DEBUG WPS2SM:100 - Guessed default value: 100 -2016-05-02 16:03:15 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Number of points to use to create interpolation (including start and end point) -2016-05-02 16:03:15 DEBUG WPS2SM:324 - Conversion to SM Type->Name:res -2016-05-02 16:03:15 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:03:15 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=100, value=null, name=res, description=Number of points to use to create interpolation (including start and end point) [Min N. of Entries:1; Max N. of Entries:1; default:100], typology=OBJECT] -2016-05-02 16:03:15 DEBUG WPS2SM:287 - Conversion to SM Type->method is a Literal Input -2016-05-02 16:03:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:03:15 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 16:03:15 DEBUG WPS2SM:100 - Guessed default value: cHs -2016-05-02 16:03:15 DEBUG WPS2SM:298 - ValueType[]:[cHs, SL] -2016-05-02 16:03:15 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Set to cHs for cubic Hermite spline or SL for Straight Line interpolation -2016-05-02 16:03:15 DEBUG WPS2SM:324 - Conversion to SM Type->Name:method -2016-05-02 16:03:15 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:03:15 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=method, description=Set to cHs for cubic Hermite spline or SL for Straight Line interpolation [Min N. of Entries:1; Max N. of Entries:1; default:cHs], typology=ENUM] -2016-05-02 16:03:15 DEBUG WPS2SM:287 - Conversion to SM Type->fm is a Literal Input -2016-05-02 16:03:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:03:15 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 16:03:15 DEBUG WPS2SM:100 - Guessed default value: 0.5 -2016-05-02 16:03:15 DEBUG WPS2SM:323 - Conversion to SM Type->Title:The FM parameter in cubic interpolation -2016-05-02 16:03:15 DEBUG WPS2SM:324 - Conversion to SM Type->Name:fm -2016-05-02 16:03:15 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:03:15 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=fm, description=The FM parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT] -2016-05-02 16:03:15 DEBUG WPS2SM:287 - Conversion to SM Type->distscale is a Literal Input -2016-05-02 16:03:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:03:15 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 16:03:15 DEBUG WPS2SM:100 - Guessed default value: 20 -2016-05-02 16:03:15 DEBUG WPS2SM:323 - Conversion to SM Type->Title:The DistScale parameter for cubic interpolation -2016-05-02 16:03:15 DEBUG WPS2SM:324 - Conversion to SM Type->Name:distscale -2016-05-02 16:03:15 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:03:15 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=distscale, description=The DistScale parameter for cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT] -2016-05-02 16:03:15 DEBUG WPS2SM:287 - Conversion to SM Type->sigline is a Literal Input -2016-05-02 16:03:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:03:15 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 16:03:15 DEBUG WPS2SM:100 - Guessed default value: 0.2 -2016-05-02 16:03:15 DEBUG WPS2SM:323 - Conversion to SM Type->Title:The Sigline parameter in cubic interpolation -2016-05-02 16:03:15 DEBUG WPS2SM:324 - Conversion to SM Type->Name:sigline -2016-05-02 16:03:15 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:03:15 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=sigline, description=The Sigline parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT] -2016-05-02 16:03:15 DEBUG WPS2SM:287 - Conversion to SM Type->minspeedThr is a Literal Input -2016-05-02 16:03:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:03:15 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 16:03:15 DEBUG WPS2SM:100 - Guessed default value: 2 -2016-05-02 16:03:15 DEBUG WPS2SM:323 - Conversion to SM Type->Title:A filter on the minimum speed to take into account for interpolation -2016-05-02 16:03:15 DEBUG WPS2SM:324 - Conversion to SM Type->Name:minspeedThr -2016-05-02 16:03:15 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:03:15 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=2, value=null, name=minspeedThr, description=A filter on the minimum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT] -2016-05-02 16:03:15 DEBUG WPS2SM:287 - Conversion to SM Type->maxspeedThr is a Literal Input -2016-05-02 16:03:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:03:15 DEBUG WPS2SM:94 - Guessed type: java.lang.Double -2016-05-02 16:03:15 DEBUG WPS2SM:100 - Guessed default value: 6 -2016-05-02 16:03:15 DEBUG WPS2SM:323 - Conversion to SM Type->Title:A filter on the maximum speed to take into account for interpolation -2016-05-02 16:03:15 DEBUG WPS2SM:324 - Conversion to SM Type->Name:maxspeedThr -2016-05-02 16:03:15 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:03:15 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Double, defaultValue=6, value=null, name=maxspeedThr, description=A filter on the maximum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:6], typology=OBJECT] -2016-05-02 16:03:15 DEBUG WPS2SM:287 - Conversion to SM Type->headingAdjustment is a Literal Input -2016-05-02 16:03:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:03:15 DEBUG WPS2SM:94 - Guessed type: java.lang.Integer -2016-05-02 16:03:15 DEBUG WPS2SM:100 - Guessed default value: 0 -2016-05-02 16:03:15 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. -2016-05-02 16:03:15 DEBUG WPS2SM:324 - Conversion to SM Type->Name:headingAdjustment -2016-05-02 16:03:15 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:03:15 DEBUG SClient4WPS:653 - InputParameter: ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=headingAdjustment, description=Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT] -2016-05-02 16:03:15 DEBUG WPS2SM:287 - Conversion to SM Type->equalDist is a Literal Input -2016-05-02 16:03:15 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:03:15 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 16:03:15 DEBUG WPS2SM:100 - Guessed default value: true -2016-05-02 16:03:15 DEBUG WPS2SM:298 - ValueType[]:[true, false] -2016-05-02 16:03:15 DEBUG WPS2SM:323 - Conversion to SM Type->Title:Whether the number of positions returned should be equally spaced or not -2016-05-02 16:03:15 DEBUG WPS2SM:324 - Conversion to SM Type->Name:equalDist -2016-05-02 16:03:15 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:03:15 DEBUG SClient4WPS:653 - InputParameter: Parameter [name=equalDist, description=Whether the number of positions returned should be equally spaced or not [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM] -2016-05-02 16:03:15 DEBUG SClient4WPS:657 - Parameters: [FileParameter [mimeType=text/xml, value=null, name=InputFile, description=Input file in TACSAT format. E.g. http://goo.gl/i16kPw [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=FILE], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=npoints, description=The number of pings or positions required between each real or actual vessel position or ping [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=120, value=null, name=interval, description=Average time in minutes between two adjacent datapoints [Min N. of Entries:1; Max N. of Entries:1; default:120], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=10, value=null, name=margin, description=Maximum deviation from specified interval to find adjacent datapoints (tolerance) [Min N. of Entries:1; Max N. of Entries:1; default:10], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=100, value=null, name=res, description=Number of points to use to create interpolation (including start and end point) [Min N. of Entries:1; Max N. of Entries:1; default:100], typology=OBJECT], Parameter [name=method, description=Set to cHs for cubic Hermite spline or SL for Straight Line interpolation [Min N. of Entries:1; Max N. of Entries:1; default:cHs], typology=ENUM], ObjectParameter [type=java.lang.Double, defaultValue=0.5, value=null, name=fm, description=The FM parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.5], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=20, value=null, name=distscale, description=The DistScale parameter for cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:20], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=0.2, value=null, name=sigline, description=The Sigline parameter in cubic interpolation [Min N. of Entries:1; Max N. of Entries:1; default:0.2], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=2, value=null, name=minspeedThr, description=A filter on the minimum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:2], typology=OBJECT], ObjectParameter [type=java.lang.Double, defaultValue=6, value=null, name=maxspeedThr, description=A filter on the maximum speed to take into account for interpolation [Min N. of Entries:1; Max N. of Entries:1; default:6], typology=OBJECT], ObjectParameter [type=java.lang.Integer, defaultValue=0, value=null, name=headingAdjustment, description=Parameter to adjust the choice of heading depending on its own or previous point (0 or 1). Set 1 in case the heading at the endpoint does not represent the heading of the arriving vessel to that point but the departing vessel. [Min N. of Entries:1; Max N. of Entries:1; default:0], typology=OBJECT], Parameter [name=equalDist, description=Whether the number of positions returned should be equally spaced or not [Min N. of Entries:1; Max N. of Entries:1; default:true], typology=ENUM]] -2016-05-02 16:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:03:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:03:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:03:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:03:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:15 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 16:03:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:03:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:03:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:03:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:03:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 16:03:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:03:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:03:16 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:03:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:03:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:03:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:03:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:03:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:03:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:03:16 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:03:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:03:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:03:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:03:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:03:16 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:03:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:03:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:03:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:03:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:03:16 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 16:03:16 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 16:03:16 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 16:03:16 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 16:03:16 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:03:16 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 16:03:16 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:03:16 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 16:03:16 INFO WorkspaceExplorerServiceImpl:142 - end time - 203 msc 0 sec -2016-05-02 16:03:16 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 16:03:26 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:03:26 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:03:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:03:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:26 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:03:26 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:03:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:03:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:03:26 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:03:26 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:03:26 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:03:26 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:03:26 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 16:03:26 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 16:03:26 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:03:26 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:03:26 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:03:26 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:03:26 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:03:26 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:03:26 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:03:26 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:03:26 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:03:26 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:03:26 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:03:26 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:26 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:26 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:26 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c10022a3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@184c5987, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@3c89ba87, socketFactory=javax.net.DefaultSocketFactory@7635141d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:03:26 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:03:26 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:03:26 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:243983}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:03:26 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:03:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1337853, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:26 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:03:26 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:26 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:26 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1854508}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:26 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1334293, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:26 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:26 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2126534}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:03:26 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:03:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=936093, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:03:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:03:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:03:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:03:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:27 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1540319}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:03:27 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:03:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:03:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1146891, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-02 16:03:27 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1854509}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1854509}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:27 DEBUG command:56 - Command execution completed -2016-05-02 16:03:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1854509}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:27 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:03:27 DEBUG command:56 - Command execution completed -2016-05-02 16:03:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1854509}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:27 DEBUG command:56 - Command execution completed -2016-05-02 16:03:27 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:03:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1854509}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:27 DEBUG command:56 - Command execution completed -2016-05-02 16:03:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1854509}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:27 DEBUG command:56 - Command execution completed -2016-05-02 16:03:27 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1854509}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:27 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:03:27 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:03:27 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:03:27 INFO WorkspaceExplorerServiceImpl:188 - end time - 51 msc 0 sec -2016-05-02 16:03:27 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:03:27 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:03:28 DEBUG query:56 - Query completed -2016-05-02 16:03:28 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 16:03:28 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2126534} -2016-05-02 16:03:28 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:243983} -2016-05-02 16:03:28 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1540319} -2016-05-02 16:03:28 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1854509}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:03:28 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1854509} -2016-05-02 16:03:28 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:03:28 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:03:28 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:03:28 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 16:03:28 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1854508} -2016-05-02 16:03:28 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:03:28 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:03:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:03:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:03:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:03:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:28 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:03:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:03:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:03:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:03:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:29 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:03:29 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:03:29 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:03:29 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:03:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:03:29 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:03:29 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 16:03:29 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:03:29 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:03:29 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:03:29 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:03:29 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:03:29 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:03:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:03:29 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:03:29 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:03:29 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:03:29 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:03:29 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:03:29 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:29 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:29 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:29 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c10022a3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@184c5987, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@3c89ba87, socketFactory=javax.net.DefaultSocketFactory@7635141d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:03:29 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:03:29 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:03:29 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:243985}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1554533, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:29 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:03:29 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:29 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:29 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1854511}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1464675, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:29 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:29 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2126535}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=764728, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:03:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:03:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:03:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:03:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:29 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:03:29 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:03:29 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1540320}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1314558, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 16:03:29 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1854512}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1854512}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 DEBUG command:56 - Command execution completed -2016-05-02 16:03:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1854512}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 DEBUG command:56 - Command execution completed -2016-05-02 16:03:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1854512}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 DEBUG command:56 - Command execution completed -2016-05-02 16:03:29 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:03:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1854512}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 DEBUG command:56 - Command execution completed -2016-05-02 16:03:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1854512}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 DEBUG command:56 - Command execution completed -2016-05-02 16:03:29 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1854512}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:29 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:03:29 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:03:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 46 msc 0 sec -2016-05-02 16:03:29 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:03:29 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:03:29 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:03:29 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:03:29 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:03:29 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:03:29 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:03:29 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:03:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:29 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:03:29 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:03:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:29 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:03:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:03:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:29 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:03:29 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:03:29 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:03:29 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 16:03:29 DEBUG query:56 - Query completed -2016-05-02 16:03:29 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 16:03:29 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2126535} -2016-05-02 16:03:29 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1854512}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:03:29 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1854512} -2016-05-02 16:03:29 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1854511} -2016-05-02 16:03:29 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1540320} -2016-05-02 16:03:29 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:243985} -2016-05-02 16:03:29 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:03:29 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:03:29 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:03:29 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 16:03:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:03:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:03:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:03:30 DEBUG DataMinerManagerServiceImpl:411 - GetPublicLink(): ItemDescription [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, owner=giancarlo.panichi, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, type=EXTERNAL_FILE, publicLink=null] -2016-05-02 16:03:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:30 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:03:30 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 16:03:30 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 16:03:30 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 16:03:30 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:03:30 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:03:30 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:03:30 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:03:30 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 16:03:30 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:03:30 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 16:03:30 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 16:03:30 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:03:30 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:03:30 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:03:30 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:03:30 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:03:30 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:03:30 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:03:30 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:30 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:30 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:30 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c10022a3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@184c5987, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@3c89ba87, socketFactory=javax.net.DefaultSocketFactory@7635141d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:03:30 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:03:30 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:03:30 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:243986}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2530756, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:30 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:03:30 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:30 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:30 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2126536}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=810362, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:30 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1854513}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1384933, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:30 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:30 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1540321}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1901125, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:03:30 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1854514}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1854514}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 DEBUG command:56 - Command execution completed -2016-05-02 16:03:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1854514}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 DEBUG command:56 - Command execution completed -2016-05-02 16:03:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1854514}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 DEBUG command:56 - Command execution completed -2016-05-02 16:03:30 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:03:30 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:03:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1854514}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 DEBUG command:56 - Command execution completed -2016-05-02 16:03:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1854514}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 DEBUG command:56 - Command execution completed -2016-05-02 16:03:30 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:03:30 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1854514}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:30 DEBUG query:56 - Query completed -2016-05-02 16:03:30 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:03:30 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2126536} -2016-05-02 16:03:30 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1540321} -2016-05-02 16:03:30 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:243986} -2016-05-02 16:03:30 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1854514}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:03:30 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1854514} -2016-05-02 16:03:30 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:03:30 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1854513} -2016-05-02 16:03:30 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:03:30 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:03:30 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:03:30 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:03:30 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 16:03:30 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:03:30 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:03:30 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:03:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:03:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:03:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:03:59 DEBUG DataMinerManagerServiceImpl:411 - GetPublicLink(): ItemDescription [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, owner=giancarlo.panichi, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, type=EXTERNAL_FILE, publicLink=null] -2016-05-02 16:03:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:03:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:03:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:03:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:03:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:03:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:03:59 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:03:59 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 16:03:59 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 16:03:59 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 16:03:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:03:59 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:03:59 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:03:59 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:03:59 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 16:03:59 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:03:59 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 16:03:59 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 16:03:59 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:03:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:03:59 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:03:59 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:03:59 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:03:59 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:03:59 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:03:59 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:59 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:59 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:59 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c10022a3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@184c5987, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@3c89ba87, socketFactory=javax.net.DefaultSocketFactory@7635141d, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:03:59 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:03:59 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:03:59 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:243992}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1854520}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1183322, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:59 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:03:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1583897, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:59 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:59 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:03:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:59 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:59 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2126542}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=879720, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:03:59 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1540327}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1278433, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:03:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 16:03:59 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1854521}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1854521}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 DEBUG command:56 - Command execution completed -2016-05-02 16:03:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1854521}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 DEBUG command:56 - Command execution completed -2016-05-02 16:03:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1854521}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 DEBUG command:56 - Command execution completed -2016-05-02 16:03:59 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:03:59 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:03:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1854521}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 DEBUG command:56 - Command execution completed -2016-05-02 16:03:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1854521}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 DEBUG command:56 - Command execution completed -2016-05-02 16:03:59 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:03:59 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1854521}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:03:59 DEBUG query:56 - Query completed -2016-05-02 16:03:59 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:03:59 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2126542} -2016-05-02 16:03:59 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:243992} -2016-05-02 16:03:59 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1854521}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:03:59 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1540327} -2016-05-02 16:03:59 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1854521} -2016-05-02 16:03:59 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1854520} -2016-05-02 16:03:59 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:03:59 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:03:59 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:03:59 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:03:59 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:03:59 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 16:03:59 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:03:59 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:03:59 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:04:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:04:48 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:05:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:05:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:06:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:06:38 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:07:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:07:33 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:08:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:08:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:09:50 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 16:09:50 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 16:09:50 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 16:09:50 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 16:09:50 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 16:09:50 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:09:50 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 16:09:50 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@553030b2 -2016-05-02 16:09:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:09:50 INFO ASLSession:352 - Logging the entrance -2016-05-02 16:09:50 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 16:09:50 DEBUG TemplateModel:83 - 2016-05-02 16:09:50, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 16:09:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:09:50 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 16:09:52 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 16:09:52 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 16:09:52 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:09:52 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 16:09:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:09:52 INFO ASLSession:352 - Logging the entrance -2016-05-02 16:09:52 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 16:09:52 DEBUG TemplateModel:83 - 2016-05-02 16:09:52, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 16:09:52 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:09:52 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 16:09:52 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 118 ms -2016-05-02 16:09:52 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 16:09:52 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 16:09:52 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 16:09:52 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 16:09:52 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 16:09:52 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 16:09:52 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 16:09:52 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 16:09:52 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 16:09:52 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 16:09:52 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 16:09:52 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 16:09:52 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 16:09:52 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 16:09:52 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 16:09:52 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:09:52 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 16:09:53 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@701068cd -2016-05-02 16:09:53 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@667fb59a -2016-05-02 16:09:53 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@1fb6193a -2016-05-02 16:09:53 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@443eb932 -2016-05-02 16:09:53 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 113 ms -2016-05-02 16:09:53 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 16:09:53 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 16:09:53 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 16:09:53 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 16:09:53 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 16:09:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:09:53 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:09:53 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 16:09:53 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 23 ms -2016-05-02 16:09:53 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 16:09:53 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:09:53 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 16:09:53 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:09:53 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 16:09:53 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 16:09:53 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 16:09:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:09:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:09:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:09:53 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 16:09:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:09:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:09:53 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 16:09:53 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 16:09:53 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 16:09:53 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 16:09:53 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 16:09:53 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 16:09:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 16:09:53 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:09:53 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 16:09:53 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 27 ms -2016-05-02 16:09:53 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 16:09:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:09:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:09:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:09:53 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 16:09:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:09:53 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 16:09:54 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 16:09:54 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:09:54 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 16:09:54 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 16:09:54 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 16:09:54 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 16:09:54 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 16:09:54 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 16:09:54 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 16:09:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:09:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:09:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:09:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:09:54 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:09:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 16:09:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:09:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:09:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:09:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:09:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:09:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:09:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:09:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:09:54 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:09:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 16:09:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:09:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:09:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:09:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:09:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:09:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:09:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:09:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:09:54 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:09:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 16:09:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:09:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:09:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:09:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:09:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:09:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:09:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:09:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:09:54 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:09:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 16:09:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:09:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:09:56 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 16:09:56 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 16:09:56 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 16:09:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:09:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:09:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:09:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:09:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:09:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:09:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:09:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:09:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:09:56 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 16:09:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:09:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:09:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:09:56 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:09:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:09:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:09:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:09:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:09:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:09:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:09:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:09:56 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 16:09:56 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 16:09:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:09:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:09:56 INFO WorkspaceExplorerServiceImpl:188 - end time - 116 msc 0 sec -2016-05-02 16:09:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:09:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:09:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:09:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:09:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:09:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:09:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:09:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:09:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:09:56 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 16:09:56 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 16:09:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:09:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:09:56 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 16:09:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 16:09:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:09:56 INFO WorkspaceExplorerServiceImpl:188 - end time - 148 msc 0 sec -2016-05-02 16:09:56 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:09:56 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 16:09:56 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-05-02 16:09:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 16:09:56 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:09:56 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 16:09:56 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 19 ms -2016-05-02 16:09:56 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 16:09:56 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 16:09:56 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 16:09:56 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 16:09:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 16:09:56 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 16:09:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 16:09:56 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:09:56 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 16:09:56 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 16:09:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 16:09:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 16:09:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 16:09:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:09:56 INFO WorkspaceExplorerServiceImpl:188 - end time - 400 msc 0 sec -2016-05-02 16:10:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:10:00 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:10:00 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:10:00 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 16:10:00 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:10:00 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:10:01 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 16:10:01 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 16:10:01 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 16:10:01 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 16:10:01 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 16:10:01 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 16:10:01 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:10:01 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 16:10:01 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 16:10:01 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 16:10:01 DEBUG WPS2SM:204 - Schema: null -2016-05-02 16:10:01 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 16:10:01 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:10:01 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 16:10:01 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 16:10:01 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 16:10:01 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 16:10:01 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 16:10:01 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 16:10:01 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 16:10:01 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 16:10:01 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:10:01 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 16:10:01 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 16:10:01 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:10:01 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 16:10:01 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 16:10:01 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:10:01 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 16:10:01 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 16:10:01 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 16:10:01 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 16:10:01 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 16:10:01 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 16:10:01 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 16:10:01 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 16:10:01 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:10:01 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 16:10:01 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 16:10:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:10:01 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:10:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:10:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:10:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:10:01 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:10:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:10:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:01 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 16:10:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:10:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 16:10:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:10:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:10:01 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:10:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:10:01 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:10:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:10:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:10:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:10:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:10:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:10:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:10:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:10:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:10:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:10:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:10:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:10:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:10:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:10:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:10:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:10:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:10:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:10:01 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 16:10:01 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 16:10:01 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 16:10:01 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 16:10:01 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:10:01 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 16:10:01 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:10:01 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 16:10:01 INFO WorkspaceExplorerServiceImpl:142 - end time - 227 msc 0 sec -2016-05-02 16:10:01 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 16:10:08 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:10:08 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:10:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:10:08 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:10:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:10:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:08 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:10:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:10:08 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:10:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:10:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:08 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:10:08 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:10:08 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:10:08 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:10:08 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:10:08 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:10:08 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 16:10:08 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 16:10:08 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:10:08 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:10:08 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:10:08 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:10:08 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:10:08 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:10:08 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:10:08 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:10:08 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:10:08 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:10:08 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:10:08 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:10:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:10:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:10:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:10:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:10:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:10:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:09 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:10:09 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:10:09 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:09 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:09 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c46a2cd9, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2899028f, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@55770f1b, socketFactory=javax.net.DefaultSocketFactory@7b80e172, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:10:09 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:10:09 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:10:09 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:10:09 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:10:09 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:10:09 INFO WorkspaceExplorerServiceImpl:188 - end time - 62 msc 0 sec -2016-05-02 16:10:09 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:244056}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1464681, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:09 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:10:09 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:09 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:10:09 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:09 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:10:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:09 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:2126603}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1854582}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=985143, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:09 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1886592, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:09 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:09 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:1540388}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1728094, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 16:10:09 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1854583}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854583}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 DEBUG command:56 - Command execution completed -2016-05-02 16:10:09 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854583}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 DEBUG command:56 - Command execution completed -2016-05-02 16:10:09 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854583}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 DEBUG command:56 - Command execution completed -2016-05-02 16:10:09 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:10:09 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854583}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 DEBUG command:56 - Command execution completed -2016-05-02 16:10:09 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854583}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 DEBUG command:56 - Command execution completed -2016-05-02 16:10:09 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1854583}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 16:10:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:10:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 16:10:10 DEBUG query:56 - Query completed -2016-05-02 16:10:10 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 16:10:10 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:2126603} -2016-05-02 16:10:10 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:244056} -2016-05-02 16:10:10 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1854583}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:10:10 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:1540388} -2016-05-02 16:10:10 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1854583} -2016-05-02 16:10:10 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1854582} -2016-05-02 16:10:10 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:10:10 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:10:10 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:10:10 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 16:10:10 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:10:10 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:10:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:10:10 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:10:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:10:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:10 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:10:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:10:10 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:10:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:10:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:10 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:10:10 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:10:10 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:10:10 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:10:10 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:10:10 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:10:10 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 16:10:10 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:10:10 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:10:10 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:10:10 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:10:10 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:10:10 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:10:10 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:10:10 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:10:10 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:10:10 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:10:10 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:10:10 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:10:10 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:10 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:10 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:10 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c46a2cd9, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2899028f, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@55770f1b, socketFactory=javax.net.DefaultSocketFactory@7b80e172, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:10:10 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:10:10 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:10:10 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:244057}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1212505, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:10 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:10:10 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:10 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:10 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2126604}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1854584}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1133358, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:10 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=13177609, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:10 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=13.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:10:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:10:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:10:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:10 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1540390}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:10 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1787701, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=13.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:10:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:10:10 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:10:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:10:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:10 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:10:10 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:10:10 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1854585}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854585}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 DEBUG command:56 - Command execution completed -2016-05-02 16:10:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854585}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 DEBUG command:56 - Command execution completed -2016-05-02 16:10:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854585}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 DEBUG command:56 - Command execution completed -2016-05-02 16:10:10 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:10:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854585}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 DEBUG command:56 - Command execution completed -2016-05-02 16:10:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854585}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 DEBUG command:56 - Command execution completed -2016-05-02 16:10:10 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1854585}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:10:10 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:10:10 INFO WorkspaceExplorerServiceImpl:188 - end time - 47 msc 0 sec -2016-05-02 16:10:10 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:10:10 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:10:10 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:10:10 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:10:10 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:10:10 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=13.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:10:10 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:10:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=13.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:10:11 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:10:11 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:10:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:10:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:10:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:10:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:11 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:10:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:10:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:10:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:10:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:11 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:10:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:10:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:10:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:10:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:11 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:10:11 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:10:11 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:10:11 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 16:10:11 DEBUG query:56 - Query completed -2016-05-02 16:10:11 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 16:10:11 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2126604} -2016-05-02 16:10:11 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:244057} -2016-05-02 16:10:11 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1540390} -2016-05-02 16:10:11 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1854585}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:10:11 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1854585} -2016-05-02 16:10:11 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:10:11 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1854584} -2016-05-02 16:10:11 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:10:11 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:10:11 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 16:10:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:10:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:10:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:10:12 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 16:10:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:12 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:10:12 DEBUG ServiceEngine:193 - get() - start -2016-05-02 16:10:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:10:12 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:10:12 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:10:12 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:10:12 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:10:12 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:10:12 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 16:10:12 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:10:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:10:12 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:10:12 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:10:12 DEBUG Operation:173 - get(String) - start -2016-05-02 16:10:12 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:10:12 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:10:12 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:10:12 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:10:12 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:12 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:12 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:12 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c46a2cd9, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2899028f, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@55770f1b, socketFactory=javax.net.DefaultSocketFactory@7b80e172, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:10:12 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:10:12 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:10:12 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1854586}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1428741, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:12 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:10:12 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:12 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:12 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:12 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2126606}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=981145, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:12 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:244058}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1419043, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:12 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1540391}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1413808, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:10:12 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1854587}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854587}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG command:56 - Command execution completed -2016-05-02 16:10:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854587}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG command:56 - Command execution completed -2016-05-02 16:10:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854587}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG command:56 - Command execution completed -2016-05-02 16:10:12 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 16:10:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854587}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG command:56 - Command execution completed -2016-05-02 16:10:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854587}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG command:56 - Command execution completed -2016-05-02 16:10:12 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:10:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854587}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG command:56 - Command execution completed -2016-05-02 16:10:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854587}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG command:56 - Command execution completed -2016-05-02 16:10:12 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:10:12 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854587}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG query:56 - Query completed -2016-05-02 16:10:12 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:10:12 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 16:10:12 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 16:10:12 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854587}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG update:56 - Update completed -2016-05-02 16:10:12 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1854587}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG query:56 - Query completed -2016-05-02 16:10:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:10:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:10:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:10:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:10:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:10:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:10:12 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:10:12 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 16:10:12 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 16:10:12 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 16:10:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:10:12 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:10:12 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:10:12 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:10:12 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 16:10:12 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:10:12 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 16:10:12 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 16:10:12 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:10:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:10:12 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:10:12 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:10:12 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:10:12 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:10:12 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:10:12 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:12 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:12 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:12 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@c46a2cd9, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2899028f, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@55770f1b, socketFactory=javax.net.DefaultSocketFactory@7b80e172, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:10:12 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:10:12 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:10:12 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1854588}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1209432, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:12 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:10:12 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:12 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:10:12 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:12 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:244059}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1303328, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:12 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2126607}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:12 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1164593, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:10:12 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1540394}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1488428, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:10:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:10:12 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1854589}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854589}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG command:56 - Command execution completed -2016-05-02 16:10:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854589}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG command:56 - Command execution completed -2016-05-02 16:10:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854589}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG command:56 - Command execution completed -2016-05-02 16:10:12 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:10:12 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:10:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854589}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG command:56 - Command execution completed -2016-05-02 16:10:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854589}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG command:56 - Command execution completed -2016-05-02 16:10:12 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:10:12 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1854589}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:12 DEBUG query:56 - Query completed -2016-05-02 16:10:12 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:10:12 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2126607} -2016-05-02 16:10:12 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:244059} -2016-05-02 16:10:12 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1854589}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:10:12 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1540394} -2016-05-02 16:10:12 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1854589} -2016-05-02 16:10:12 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:10:12 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1854588} -2016-05-02 16:10:12 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:10:12 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:10:12 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:10:12 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:10:12 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 16:10:12 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:10:12 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:10:12 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:10:22 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:10:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:10:22 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:10:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:10:22 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:10:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:10:22 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:10:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 16:14:31 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 16:14:31 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 16:14:31 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 16:14:31 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 16:14:31 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 16:14:31 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:14:31 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 16:14:31 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@451e647d -2016-05-02 16:14:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:14:31 INFO ASLSession:352 - Logging the entrance -2016-05-02 16:14:31 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 16:14:31 DEBUG TemplateModel:83 - 2016-05-02 16:14:31, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 16:14:31 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:14:31 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 16:14:34 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 16:14:34 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 16:14:34 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:14:34 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 16:14:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:14:34 INFO ASLSession:352 - Logging the entrance -2016-05-02 16:14:34 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 16:14:34 DEBUG TemplateModel:83 - 2016-05-02 16:14:34, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 16:14:34 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:14:34 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 16:14:34 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 125 ms -2016-05-02 16:14:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 16:14:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 16:14:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 16:14:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 16:14:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 16:14:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 16:14:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 16:14:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 16:14:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 16:14:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 16:14:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 16:14:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 16:14:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 16:14:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 16:14:34 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 16:14:34 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:14:35 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 16:14:35 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@1ec2117c -2016-05-02 16:14:35 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3cd5083c -2016-05-02 16:14:35 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@3806ab2 -2016-05-02 16:14:35 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@712cee1c -2016-05-02 16:14:35 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 237 ms -2016-05-02 16:14:35 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 16:14:35 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 16:14:35 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 16:14:35 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 16:14:35 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 16:14:35 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 16:14:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:14:35 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 16:14:35 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 16:14:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:14:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:14:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:14:35 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 16:14:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:35 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:14:35 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 16:14:35 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 26 ms -2016-05-02 16:14:35 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 16:14:35 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:14:35 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 16:14:35 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:14:35 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 16:14:35 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 16:14:35 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 16:14:35 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 16:14:35 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 16:14:35 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 16:14:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 16:14:35 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:14:35 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 16:14:35 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 20 ms -2016-05-02 16:14:36 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 16:14:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:14:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:36 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 16:14:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:36 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 16:14:36 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 16:14:36 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:14:36 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 16:14:36 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 16:14:36 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 16:14:36 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 16:14:36 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 16:14:36 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 16:14:36 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 16:14:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:14:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:14:36 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:14:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 16:14:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:14:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:14:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:37 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:14:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 16:14:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:14:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:14:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:37 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:14:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 16:14:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:14:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:14:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:37 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:14:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 16:14:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:14:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:14:38 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 16:14:38 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 16:14:38 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 16:14:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:14:38 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:14:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:14:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:38 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 16:14:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:14:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:14:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:14:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:14:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:14:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:38 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 16:14:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:14:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:14:38 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:14:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:14:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:38 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 16:14:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:14:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:14:38 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 16:14:38 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 16:14:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:14:38 INFO WorkspaceExplorerServiceImpl:188 - end time - 206 msc 0 sec -2016-05-02 16:14:38 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 16:14:38 INFO WorkspaceExplorerServiceImpl:188 - end time - 136 msc 0 sec -2016-05-02 16:14:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 16:14:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:14:38 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:14:38 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 16:14:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 22 ms -2016-05-02 16:14:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 16:14:38 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:14:38 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 16:14:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-02 16:14:38 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 16:14:38 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 16:14:38 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 16:14:38 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 16:14:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 16:14:38 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 16:14:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 16:14:38 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:14:38 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 16:14:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 35 ms -2016-05-02 16:14:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 16:14:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 16:14:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 16:14:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:14:38 INFO WorkspaceExplorerServiceImpl:188 - end time - 437 msc 0 sec -2016-05-02 16:14:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:14:42 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:14:42 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:14:42 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 16:14:42 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:14:42 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:14:43 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 16:14:43 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 16:14:43 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 16:14:43 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 16:14:43 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 16:14:43 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 16:14:43 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:14:43 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 16:14:43 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 16:14:43 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 16:14:43 DEBUG WPS2SM:204 - Schema: null -2016-05-02 16:14:43 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 16:14:43 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:14:43 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 16:14:43 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 16:14:43 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 16:14:43 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 16:14:43 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 16:14:43 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 16:14:43 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 16:14:43 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 16:14:43 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:14:43 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 16:14:43 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 16:14:43 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:14:43 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 16:14:43 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 16:14:43 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:14:43 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 16:14:43 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 16:14:43 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 16:14:43 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 16:14:43 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 16:14:43 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 16:14:43 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 16:14:43 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 16:14:43 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:14:43 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 16:14:43 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 16:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:14:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:14:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:14:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:14:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:43 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 16:14:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:14:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 16:14:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:14:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:14:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:14:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:14:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:14:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:14:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:14:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:14:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:14:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:14:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:14:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:14:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:14:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:14:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:14:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:14:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:14:43 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 16:14:43 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 16:14:43 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 16:14:43 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 16:14:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:14:43 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 16:14:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:14:43 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 16:14:43 INFO WorkspaceExplorerServiceImpl:142 - end time - 230 msc 0 sec -2016-05-02 16:14:43 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 16:14:50 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:14:50 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:14:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:14:50 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:14:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:14:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:50 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:14:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:14:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:14:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:14:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:14:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:14:50 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:14:50 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:14:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:14:50 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:14:50 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 16:14:50 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 16:14:50 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:14:50 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:14:50 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:14:50 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:14:50 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:14:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:14:50 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:14:50 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:14:50 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:14:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:14:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:14:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:14:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:14:50 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:14:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:14:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:50 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:14:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:14:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:14:50 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:14:50 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:14:51 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:14:51 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:51 INFO WorkspaceExplorerServiceImpl:188 - end time - 84 msc 0 sec -2016-05-02 16:14:51 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:14:51 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:14:51 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:14:51 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:51 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:51 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@96f9433e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@8291fd8, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@43e9a217, socketFactory=javax.net.DefaultSocketFactory@1f90b6d6, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:14:51 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:14:51 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:14:51 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1854637}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:244106}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1426918, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1702141, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:51 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:14:51 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:51 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:51 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:51 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2126656}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1050572, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:51 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1540440}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1341336, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 16:14:51 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1854638}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854638}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG command:56 - Command execution completed -2016-05-02 16:14:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854638}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG command:56 - Command execution completed -2016-05-02 16:14:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854638}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG command:56 - Command execution completed -2016-05-02 16:14:51 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:14:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854638}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG command:56 - Command execution completed -2016-05-02 16:14:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854638}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG command:56 - Command execution completed -2016-05-02 16:14:51 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1854638}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:14:51 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:14:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:14:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:14:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:14:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:51 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:14:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:14:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:14:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:14:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:51 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:14:51 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:14:51 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:14:51 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:14:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:14:51 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:14:51 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 16:14:51 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:14:51 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:14:51 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:14:51 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:14:51 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:14:51 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:14:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:14:51 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:14:51 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:14:51 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:14:51 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:14:51 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:14:51 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:51 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:51 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:51 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@96f9433e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@8291fd8, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@43e9a217, socketFactory=javax.net.DefaultSocketFactory@1f90b6d6, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:14:51 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:14:51 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:14:51 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1854640}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1586526, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:51 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:14:51 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:51 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:244107}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1699204, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:51 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:51 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2126657}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=987671, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:51 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1854642}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854642}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1540441}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG command:56 - Command execution completed -2016-05-02 16:14:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854642}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1158774, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 16:14:51 DEBUG command:56 - Command execution completed -2016-05-02 16:14:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854642}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG command:56 - Command execution completed -2016-05-02 16:14:51 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:14:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854642}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:14:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:14:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:14:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:14:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:51 DEBUG command:56 - Command execution completed -2016-05-02 16:14:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:14:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:14:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854642}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:51 DEBUG command:56 - Command execution completed -2016-05-02 16:14:51 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1854642}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:51 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:14:51 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:14:51 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:14:51 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:14:52 INFO WorkspaceExplorerServiceImpl:188 - end time - 53 msc 0 sec -2016-05-02 16:14:52 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:14:52 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:14:52 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:14:52 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:14:52 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:14:52 DEBUG query:56 - Query completed -2016-05-02 16:14:52 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 16:14:52 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2126656} -2016-05-02 16:14:52 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:244106} -2016-05-02 16:14:52 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1854638}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:14:52 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1854638} -2016-05-02 16:14:52 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1540440} -2016-05-02 16:14:52 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1854637} -2016-05-02 16:14:52 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:14:52 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:14:52 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:14:52 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 16:14:52 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:14:52 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:14:52 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:14:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:52 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:14:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:14:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:52 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:14:52 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:14:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:14:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:52 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:14:52 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:14:52 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:14:52 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 16:14:52 DEBUG query:56 - Query completed -2016-05-02 16:14:52 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 16:14:52 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2126657} -2016-05-02 16:14:52 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:244107} -2016-05-02 16:14:52 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1854642}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:14:52 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1540441} -2016-05-02 16:14:52 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1854642} -2016-05-02 16:14:52 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1854640} -2016-05-02 16:14:52 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:14:52 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:14:52 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:14:52 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 16:14:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:14:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:14:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:14:53 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 16:14:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:53 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:14:54 DEBUG ServiceEngine:193 - get() - start -2016-05-02 16:14:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:14:54 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:14:54 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:14:54 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:14:54 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:14:54 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:14:54 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 16:14:54 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:14:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:14:54 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:14:54 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:14:54 DEBUG Operation:173 - get(String) - start -2016-05-02 16:14:54 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:14:54 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:14:54 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:14:54 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:14:54 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:54 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:54 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:54 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@96f9433e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@8291fd8, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@43e9a217, socketFactory=javax.net.DefaultSocketFactory@1f90b6d6, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:14:54 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:14:54 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:14:54 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:244108}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1177332, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:54 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:14:54 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:54 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:54 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2126658}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1854643}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=927774, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1462542, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:54 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:54 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1540443}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1852183, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:14:54 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1854644}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854644}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG command:56 - Command execution completed -2016-05-02 16:14:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854644}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG command:56 - Command execution completed -2016-05-02 16:14:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854644}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG command:56 - Command execution completed -2016-05-02 16:14:54 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 16:14:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854644}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG command:56 - Command execution completed -2016-05-02 16:14:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854644}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG command:56 - Command execution completed -2016-05-02 16:14:54 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:14:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854644}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG command:56 - Command execution completed -2016-05-02 16:14:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854644}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG command:56 - Command execution completed -2016-05-02 16:14:54 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:14:54 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854644}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG query:56 - Query completed -2016-05-02 16:14:54 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:14:54 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 16:14:54 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 16:14:54 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854644}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG update:56 - Update completed -2016-05-02 16:14:54 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1854644}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG query:56 - Query completed -2016-05-02 16:14:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:14:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:14:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:14:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:14:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:14:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:14:54 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:14:54 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 16:14:54 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 16:14:54 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 16:14:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:14:54 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:14:54 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:14:54 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:14:54 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 16:14:54 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:14:54 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 16:14:54 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 16:14:54 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:14:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:14:54 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:14:54 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:14:54 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:14:54 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:14:54 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:14:54 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:54 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:54 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:54 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@96f9433e, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@8291fd8, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@43e9a217, socketFactory=javax.net.DefaultSocketFactory@1f90b6d6, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:14:54 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:14:54 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:14:54 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:244109}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1854645}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1062219, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:14:54 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:54 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1427002, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:54 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:54 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2126659}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=828231, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:14:54 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1540444}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1269501, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 16:14:54 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1854646}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854646}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG command:56 - Command execution completed -2016-05-02 16:14:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854646}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG command:56 - Command execution completed -2016-05-02 16:14:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854646}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG command:56 - Command execution completed -2016-05-02 16:14:54 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:14:54 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:14:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854646}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG command:56 - Command execution completed -2016-05-02 16:14:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854646}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG command:56 - Command execution completed -2016-05-02 16:14:54 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:14:54 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1854646}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG query:56 - Query completed -2016-05-02 16:14:54 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:14:54 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2126659} -2016-05-02 16:14:54 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:244109} -2016-05-02 16:14:54 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1854646}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:14:54 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1854646} -2016-05-02 16:14:54 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1540444} -2016-05-02 16:14:54 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:14:54 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1854645} -2016-05-02 16:14:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:14:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:14:54 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:14:54 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:14:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:14:54 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:14:54 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 16:14:54 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:14:54 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:14:54 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:15:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:15:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:15:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:15:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:15:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:15:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:15:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:15:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:15:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:15:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:15:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:15:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:15:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:15:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:15:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:15:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:15:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:15:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:15:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:15:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:15:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:15:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:15:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:15:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:15:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:15:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:15:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:15:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:15:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:15:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:15:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:15:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:15:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:15:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:16:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:16:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:16:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:16:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:16:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:16:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:16:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:16:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:16:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:16:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:16:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:16:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:16:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:16:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:16:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:16:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:16:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:16:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:16:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:16:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:16:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:16:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:16:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:16:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:16:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:16:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:16:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:16:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:16:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:16:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:16:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:16:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:16:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:16:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:16:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:16:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:16:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:16:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:16:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:16:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:16:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:16:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:16:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:16:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:16:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:16:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:16:55 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:16:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:16:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:16:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:17:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:17:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:17:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:17:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:17:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:17:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:17:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:17:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:17:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:17:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:17:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:17:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:17:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:17:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:17:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:17:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:17:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:17:16 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:17:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:17:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:17:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:17:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:17:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:17:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:17:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:17:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:17:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:17:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:17:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:17:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:17:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:17:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:17:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:17:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:17:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:17:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:17:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:17:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:17:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:17:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:17:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:17:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:17:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:17:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:17:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:17:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:17:55 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:17:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:17:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:17:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:18:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:18:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:18:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:18:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:18:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:18:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:18:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:18:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:18:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:18:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:18:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:18:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:18:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:18:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:18:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:18:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:18:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:18:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:18:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:18:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:18:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:18:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:18:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:18:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:18:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:18:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:18:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:18:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:18:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:18:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:18:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:18:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:18:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:18:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:18:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:18:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:18:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:18:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:18:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:18:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:18:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:18:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:18:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:18:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:18:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:18:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:18:55 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:18:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:18:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:18:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:19:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:19:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:19:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:19:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:19:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:19:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:19:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:19:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:19:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:19:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:19:07 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2126658} -2016-05-02 16:19:07 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1854644}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:19:07 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1854644} -2016-05-02 16:19:07 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1540443} -2016-05-02 16:19:07 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:244108} -2016-05-02 16:19:07 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1854643} -2016-05-02 16:20:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:20:01 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:20:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:20:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:21:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:21:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:22:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:22:46 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:23:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:23:41 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:24:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:24:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:25:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:25:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:26:25 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 16:26:25 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 16:26:25 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 16:26:25 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 16:26:25 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 16:26:25 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:26:25 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 16:26:25 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@35ea693d -2016-05-02 16:26:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:26:25 INFO ASLSession:352 - Logging the entrance -2016-05-02 16:26:25 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 16:26:25 DEBUG TemplateModel:83 - 2016-05-02 16:26:25, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 16:26:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:26:25 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 16:26:28 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 16:26:28 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 16:26:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:26:28 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 16:26:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:26:28 INFO ASLSession:352 - Logging the entrance -2016-05-02 16:26:28 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 16:26:28 DEBUG TemplateModel:83 - 2016-05-02 16:26:28, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 16:26:28 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:26:28 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 16:26:28 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 115 ms -2016-05-02 16:26:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 16:26:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 16:26:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 16:26:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 16:26:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 16:26:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 16:26:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 16:26:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 16:26:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 16:26:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 16:26:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 16:26:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 16:26:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 16:26:28 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 16:26:28 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 16:26:28 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:26:28 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 16:26:28 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@635b0fe6 -2016-05-02 16:26:28 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3cd75d96 -2016-05-02 16:26:28 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@7d327014 -2016-05-02 16:26:28 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@4b0175d0 -2016-05-02 16:26:28 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 107 ms -2016-05-02 16:26:28 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 16:26:28 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 16:26:28 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 16:26:28 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 16:26:28 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 16:26:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:26:28 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:26:28 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 16:26:28 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 50 ms -2016-05-02 16:26:28 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 16:26:28 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:26:28 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 16:26:28 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:26:29 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 16:26:29 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 16:26:29 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 16:26:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:26:29 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:26:29 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:26:29 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 16:26:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:29 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 16:26:29 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 16:26:29 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 16:26:29 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 16:26:29 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 16:26:29 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 16:26:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 16:26:29 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:26:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 16:26:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-02 16:26:29 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 16:26:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:26:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:29 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 16:26:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:29 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 16:26:29 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 16:26:29 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:26:29 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 16:26:29 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 16:26:29 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 16:26:29 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 16:26:29 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 16:26:29 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 16:26:29 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 16:26:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:29 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:26:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 16:26:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:30 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:26:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 16:26:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:30 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:26:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 16:26:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:30 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:26:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 16:26:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:31 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 16:26:31 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 16:26:31 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 16:26:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:26:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:26:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:26:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:31 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 16:26:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:26:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:26:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:26:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:31 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 16:26:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:31 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 16:26:31 INFO WorkspaceExplorerServiceImpl:188 - end time - 114 msc 0 sec -2016-05-02 16:26:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:26:31 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:26:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:26:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:31 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 16:26:31 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 16:26:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:31 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 16:26:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 16:26:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:26:31 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:26:31 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 16:26:31 INFO WorkspaceExplorerServiceImpl:188 - end time - 153 msc 0 sec -2016-05-02 16:26:31 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 49 ms -2016-05-02 16:26:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 16:26:31 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:26:32 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 16:26:32 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 19 ms -2016-05-02 16:26:32 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 16:26:32 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 16:26:32 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 16:26:32 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 16:26:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 16:26:32 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 16:26:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 16:26:32 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:26:32 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 16:26:32 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 16:26:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 16:26:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 16:26:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 16:26:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:26:32 INFO WorkspaceExplorerServiceImpl:188 - end time - 378 msc 0 sec -2016-05-02 16:26:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:26:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:26:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:26:35 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 16:26:35 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:26:35 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:26:35 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 16:26:35 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 16:26:35 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 16:26:35 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 16:26:35 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 16:26:35 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 16:26:35 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:26:35 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 16:26:35 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 16:26:35 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 16:26:35 DEBUG WPS2SM:204 - Schema: null -2016-05-02 16:26:35 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 16:26:35 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:26:35 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 16:26:35 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 16:26:35 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 16:26:35 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 16:26:35 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 16:26:35 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 16:26:35 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 16:26:35 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 16:26:35 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:26:35 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 16:26:35 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 16:26:35 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:26:35 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 16:26:35 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 16:26:35 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:26:35 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 16:26:35 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 16:26:35 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 16:26:35 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 16:26:35 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 16:26:35 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 16:26:35 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 16:26:35 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 16:26:35 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:26:35 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 16:26:35 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 16:26:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:26:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:26:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:26:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:26:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:26:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:26:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:35 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 16:26:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 16:26:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:26:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:26:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:26:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:26:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:26:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:26:35 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:26:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:26:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:26:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:35 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:26:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:36 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 16:26:36 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 16:26:36 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 16:26:36 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 16:26:36 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:26:36 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 16:26:36 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:26:36 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 16:26:36 INFO WorkspaceExplorerServiceImpl:142 - end time - 250 msc 0 sec -2016-05-02 16:26:36 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 16:26:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:26:39 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:26:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:26:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:26:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:26:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:26:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:39 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 16:26:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 16:26:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:26:39 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:26:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:26:39 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:26:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:26:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:26:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:26:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:26:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:26:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:26:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:26:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:26:39 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 16:26:39 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 16:26:39 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 16:26:39 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 16:26:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:26:39 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 16:26:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:26:39 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 16:26:39 INFO WorkspaceExplorerServiceImpl:142 - end time - 181 msc 0 sec -2016-05-02 16:26:39 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 16:26:45 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:26:45 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:26:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:26:45 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:26:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:26:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:45 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:26:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:26:45 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:26:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:26:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:45 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:26:45 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:26:45 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:26:45 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:26:45 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:26:45 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:26:45 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 16:26:45 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 16:26:45 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:26:45 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:26:45 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:26:45 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:26:45 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:26:45 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:26:45 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:26:45 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:26:45 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:26:45 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:26:45 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:26:45 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:45 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:45 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:45 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@651998b2, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@79ee98a7, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1f683a7b, socketFactory=javax.net.DefaultSocketFactory@73d77158, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:26:45 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:26:45 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:26:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:26:45 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:26:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:26:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:26:45 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:26:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:26:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:45 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:244229}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:26:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:26:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1794729, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:45 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:26:45 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:45 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1854763}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:45 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:45 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1639850, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:45 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:45 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2126779}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:26:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:26:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1046970, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:45 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1540564}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:26:45 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:26:45 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1431281, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:26:46 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1854764}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854764}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:46 DEBUG command:56 - Command execution completed -2016-05-02 16:26:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854764}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:46 DEBUG command:56 - Command execution completed -2016-05-02 16:26:46 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854764}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:46 DEBUG command:56 - Command execution completed -2016-05-02 16:26:46 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:26:46 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854764}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:46 DEBUG command:56 - Command execution completed -2016-05-02 16:26:46 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854764}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:46 DEBUG command:56 - Command execution completed -2016-05-02 16:26:46 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1854764}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:46 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:26:46 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:26:46 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:26:46 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:26:46 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:26:46 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:26:46 DEBUG query:56 - Query completed -2016-05-02 16:26:46 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 16:26:46 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2126779} -2016-05-02 16:26:46 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1540564} -2016-05-02 16:26:46 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:244229} -2016-05-02 16:26:46 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1854764}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:26:46 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1854764} -2016-05-02 16:26:46 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1854763} -2016-05-02 16:26:46 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:26:46 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:26:46 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:26:46 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 16:26:46 INFO WorkspaceExplorerServiceImpl:188 - end time - 55 msc 0 sec -2016-05-02 16:26:46 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:26:46 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:26:46 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:26:47 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:26:47 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:26:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:26:47 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:26:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:26:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:47 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:26:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:26:47 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:26:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:26:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:47 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:26:47 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:26:47 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:26:47 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:26:47 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:26:47 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:26:47 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 16:26:47 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:26:47 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:26:47 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:26:47 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:26:47 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:26:47 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:26:47 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:26:47 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:26:47 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:26:47 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:26:47 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:26:47 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:26:47 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:47 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:47 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:47 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@651998b2, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@79ee98a7, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1f683a7b, socketFactory=javax.net.DefaultSocketFactory@73d77158, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:26:47 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:26:47 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:26:47 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1854765}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:47 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:47 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2038725, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:47 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:26:47 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:47 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:47 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:47 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2126781}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:26:47 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:26:47 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1229710, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:47 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:244231}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:26:47 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:26:47 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1483056, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:47 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1540565}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:26:47 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:26:47 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2558049, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}] -2016-05-02 16:26:47 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1854766}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:47 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854766}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:47 DEBUG command:56 - Command execution completed -2016-05-02 16:26:47 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854766}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:47 DEBUG command:56 - Command execution completed -2016-05-02 16:26:47 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854766}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:47 DEBUG command:56 - Command execution completed -2016-05-02 16:26:47 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:26:47 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854766}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:47 DEBUG command:56 - Command execution completed -2016-05-02 16:26:47 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854766}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:47 DEBUG command:56 - Command execution completed -2016-05-02 16:26:47 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1854766}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:48 DEBUG query:56 - Query completed -2016-05-02 16:26:48 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 16:26:48 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2126781} -2016-05-02 16:26:48 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1540565} -2016-05-02 16:26:48 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1854766}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:26:48 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:244231} -2016-05-02 16:26:48 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1854766} -2016-05-02 16:26:48 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1854765} -2016-05-02 16:26:48 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:26:48 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:26:48 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:26:48 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 16:26:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:26:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:26:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:26:49 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:26:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:26:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:26:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:49 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:26:49 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:26:49 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:26:49 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:26:49 INFO WorkspaceExplorerServiceImpl:188 - end time - 43 msc 0 sec -2016-05-02 16:26:49 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:26:49 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:26:49 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:26:49 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:26:49 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:26:50 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:26:50 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:26:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:26:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:26:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:26:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:50 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:26:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:26:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:26:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:26:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:50 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:26:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:26:50 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:26:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:26:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:50 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:26:50 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:26:50 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:26:50 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 16:26:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:26:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:26:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:26:50 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 16:26:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:50 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:26:50 DEBUG ServiceEngine:193 - get() - start -2016-05-02 16:26:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:26:50 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:26:50 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:26:50 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:26:50 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:26:50 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:26:50 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 16:26:50 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:26:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:26:50 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:26:50 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:26:50 DEBUG Operation:173 - get(String) - start -2016-05-02 16:26:50 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:26:50 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:26:50 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:26:50 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:26:50 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:50 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:50 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:50 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@651998b2, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@79ee98a7, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1f683a7b, socketFactory=javax.net.DefaultSocketFactory@73d77158, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:26:50 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:26:50 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:26:50 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:244232}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:26:50 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1854768}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:50 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:50 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:26:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1826294, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:50 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:26:50 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2747908, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:50 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:50 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:50 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2126782}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:26:50 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:26:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=875638, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:51 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1540566}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1916115, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:26:51 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1854769}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG command:56 - Command execution completed -2016-05-02 16:26:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG command:56 - Command execution completed -2016-05-02 16:26:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG command:56 - Command execution completed -2016-05-02 16:26:51 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 16:26:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG command:56 - Command execution completed -2016-05-02 16:26:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG command:56 - Command execution completed -2016-05-02 16:26:51 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:26:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG command:56 - Command execution completed -2016-05-02 16:26:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG command:56 - Command execution completed -2016-05-02 16:26:51 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:26:51 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG query:56 - Query completed -2016-05-02 16:26:51 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:26:51 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 16:26:51 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 16:26:51 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG update:56 - Update completed -2016-05-02 16:26:51 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1854769}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG query:56 - Query completed -2016-05-02 16:26:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:26:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:26:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:26:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:26:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:26:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:26:51 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:26:51 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 16:26:51 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 16:26:51 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 16:26:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:26:51 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:26:51 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:26:51 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:26:51 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 16:26:51 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:26:51 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 16:26:51 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 16:26:51 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:26:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:26:51 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:26:51 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:26:51 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:26:51 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:26:51 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:26:51 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:51 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:51 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:51 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@651998b2, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@79ee98a7, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@1f683a7b, socketFactory=javax.net.DefaultSocketFactory@73d77158, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:26:51 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:26:51 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:26:51 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:244233}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1224786, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:51 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:26:51 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:51 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:26:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:51 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1854771}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1240827, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:51 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:51 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2126783}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=879886, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:26:51 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1540567}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1275085, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:26:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 16:26:51 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1854772}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854772}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG command:56 - Command execution completed -2016-05-02 16:26:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854772}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG command:56 - Command execution completed -2016-05-02 16:26:51 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854772}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG command:56 - Command execution completed -2016-05-02 16:26:51 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:26:51 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:26:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854772}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG command:56 - Command execution completed -2016-05-02 16:26:51 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854772}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG command:56 - Command execution completed -2016-05-02 16:26:51 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:26:51 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1854772}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:26:51 DEBUG query:56 - Query completed -2016-05-02 16:26:51 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:26:51 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2126783} -2016-05-02 16:26:51 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:244233} -2016-05-02 16:26:51 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1854772}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:26:51 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1540567} -2016-05-02 16:26:51 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1854772} -2016-05-02 16:26:51 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1854771} -2016-05-02 16:26:51 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:26:51 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:26:51 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:26:51 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:26:51 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:26:51 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 16:26:51 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:26:51 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:26:51 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:27:00 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:27:00 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:27:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:27:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:27:00 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:27:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:27:01 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:27:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:27:10 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:27:10 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:27:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:27:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:27:10 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:27:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:27:11 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:27:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:27:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:27:20 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:27:20 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:27:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:20 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:27:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:21 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:27:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:30 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:27:30 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:27:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:30 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:27:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:31 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:27:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:40 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:27:40 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:27:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:40 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:27:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:41 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:27:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:50 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:27:50 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:27:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:50 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:27:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:27:51 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:27:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:28:00 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:28:00 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:28:01 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:28:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:28:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:28:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:28:01 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:28:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:11 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:28:11 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:28:11 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:28:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:11 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:28:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:28:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:28:21 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:28:21 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:28:21 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:28:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:21 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:28:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:28:31 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:28:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:28:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:31 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:28:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:41 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:28:41 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:28:41 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:28:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:41 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:28:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:28:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:28:51 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:28:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:28:51 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:28:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:29:01 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:29:01 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:29:01 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:29:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:29:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:29:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:29:01 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:29:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:29:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:29:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:29:11 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:29:11 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:29:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:29:11 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:29:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:29:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:29:11 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:29:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:21 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:29:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:21 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:29:21 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:29:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:21 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:29:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:29:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:29:31 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:29:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:31 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:29:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:41 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:29:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:41 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:29:41 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:29:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:41 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:29:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:29:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:29:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:51 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:29:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:29:51 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:29:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:30:01 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:30:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:30:01 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:30:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:30:01 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:30:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:30:01 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:30:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:30:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:30:05 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:30:11 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:30:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:30:11 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:30:11 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:30:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:30:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:30:11 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:30:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:21 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:30:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:21 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:30:21 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:30:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:21 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:30:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:30:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:30:31 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:30:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:31 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:30:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:41 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:30:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:41 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:30:41 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:30:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:41 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:30:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:30:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:30:51 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:30:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:30:51 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:30:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:31:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:31:00 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:31:01 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:31:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:31:01 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:31:01 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:31:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:31:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:31:01 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:31:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:31:11 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:31:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:31:11 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:31:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:31:11 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:31:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:31:11 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:31:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:31:21 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:31:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:31:21 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:31:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:31:21 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:31:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:31:21 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:31:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:31:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:31:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:31:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:31:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:31:31 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:31:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:31:31 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:31:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:31:39 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2126782} -2016-05-02 16:31:39 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1854769}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:31:39 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1854769} -2016-05-02 16:31:39 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1540566} -2016-05-02 16:31:39 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:244232} -2016-05-02 16:31:39 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1854768} -2016-05-02 16:31:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:31:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:31:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:31:43 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 16:31:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:31:45 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:31:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:31:45 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:31:45 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:31:45 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 16:31:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:31:46 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:31:46 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:31:46 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 16:31:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:31:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:31:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:31:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:31:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:31:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:31:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:31:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:31:46 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:31:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 16:31:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:31:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:31:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:31:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:31:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:31:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:31:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:31:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:31:46 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:31:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 16:31:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:31:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:31:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:31:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:31:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:31:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:31:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:31:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:31:46 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:31:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 16:31:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:31:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:31:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:31:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:31:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:31:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:31:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:31:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:31:46 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:31:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 16:31:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:31:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:31:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:31:46 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:31:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:31:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:31:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:31:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:31:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:31:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:31:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:31:46 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 16:31:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:31:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:31:47 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 16:31:47 INFO WorkspaceExplorerServiceImpl:188 - end time - 72 msc 0 sec -2016-05-02 16:31:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:31:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:31:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:31:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:31:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:31:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:31:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:31:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:31:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:31:47 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 16:31:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:31:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:31:47 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 16:31:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:31:47 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:31:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:31:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:31:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:31:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:31:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:31:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:31:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:31:47 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 16:31:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:31:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:31:47 INFO WorkspaceExplorerServiceImpl:188 - end time - 191 msc 0 sec -2016-05-02 16:31:49 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 16:31:49 INFO WorkspaceExplorerServiceImpl:188 - end time - 2026 msc 2 sec -2016-05-02 16:31:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:31:55 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:31:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:31:55 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 16:31:55 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 16:31:55 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 16:31:55 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 16:31:55 DEBUG WPS2SM:204 - Schema: null -2016-05-02 16:31:55 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 16:31:55 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:31:55 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 16:31:55 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 16:31:55 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 16:31:55 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 16:31:55 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 16:31:55 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 16:31:55 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 16:31:55 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 16:31:55 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:31:55 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 16:31:55 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 16:31:55 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:31:55 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 16:31:55 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 16:31:55 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:31:55 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 16:31:55 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 16:31:55 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 16:31:55 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 16:31:55 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 16:31:55 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 16:31:55 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 16:31:55 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 16:31:55 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:31:55 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 16:31:55 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 16:31:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:31:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:31:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:31:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:31:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:31:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:31:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:31:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:31:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:31:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:31:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:31:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:31:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:31:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:31:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:31:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:31:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:31:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:31:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:31:57 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 16:31:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 16:31:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:31:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:31:57 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:31:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:31:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:31:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:31:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:31:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:31:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:31:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:31:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:31:57 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:31:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:31:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:31:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:31:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:31:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:31:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:31:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:31:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:31:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:31:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:31:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:31:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:31:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:31:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:31:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:31:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:31:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:31:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:31:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:31:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:31:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:31:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:31:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:32:02 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 16:32:02 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 16:32:02 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 16:32:02 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 16:32:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:32:02 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 16:32:02 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:32:02 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 16:32:02 INFO WorkspaceExplorerServiceImpl:142 - end time - 4287 msc 4 sec -2016-05-02 16:32:02 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 16:32:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:32:40 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:34:38 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 16:34:38 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 16:34:38 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 16:34:38 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 16:34:38 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 16:34:38 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:34:38 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 16:34:38 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@553030b2 -2016-05-02 16:34:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:34:38 INFO ASLSession:352 - Logging the entrance -2016-05-02 16:34:38 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 16:34:38 DEBUG TemplateModel:83 - 2016-05-02 16:34:38, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 16:34:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:34:38 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 16:34:40 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 16:34:40 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 16:34:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:34:40 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 16:34:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:34:40 INFO ASLSession:352 - Logging the entrance -2016-05-02 16:34:40 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 16:34:40 DEBUG TemplateModel:83 - 2016-05-02 16:34:40, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 16:34:40 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:34:40 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 16:34:40 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 113 ms -2016-05-02 16:34:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 16:34:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 16:34:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 16:34:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 16:34:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 16:34:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 16:34:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 16:34:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 16:34:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 16:34:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 16:34:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 16:34:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 16:34:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 16:34:40 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 16:34:40 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 16:34:40 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:34:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 16:34:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@4d2ebd89 -2016-05-02 16:34:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@54ed80e5 -2016-05-02 16:34:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@1688f9de -2016-05-02 16:34:40 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@38da131d -2016-05-02 16:34:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 108 ms -2016-05-02 16:34:41 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 16:34:41 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 16:34:41 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 16:34:41 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 16:34:41 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 16:34:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:34:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:34:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 16:34:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-02 16:34:41 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 16:34:41 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:34:41 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 16:34:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:34:41 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 16:34:41 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 16:34:41 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 16:34:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:34:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:34:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:34:41 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 16:34:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:34:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:34:41 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 16:34:41 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 16:34:41 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 16:34:41 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 16:34:41 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 16:34:41 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 16:34:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 16:34:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:34:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 16:34:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 23 ms -2016-05-02 16:34:41 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 16:34:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:34:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:34:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:34:41 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 16:34:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:41 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 16:34:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 16:34:42 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 16:34:42 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 16:34:42 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:34:42 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 16:34:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 16:34:42 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 16:34:42 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 16:34:42 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 16:34:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:34:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:34:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:34:42 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:34:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 16:34:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:34:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:34:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:34:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:34:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:34:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:34:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:34:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:34:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 16:34:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:34:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:34:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:34:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:34:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:34:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:34:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:34:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:34:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 16:34:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:34:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:34:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:34:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:34:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:34:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:34:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:34:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:34:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 16:34:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:34:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:34:44 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 16:34:44 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 16:34:44 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:34:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:34:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:34:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:34:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:34:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:34:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:34:44 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 16:34:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:34:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:34:44 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:34:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:34:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:34:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:34:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:34:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:34:44 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 16:34:44 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 16:34:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:34:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 114 msc 0 sec -2016-05-02 16:34:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:34:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:34:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:34:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:34:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:34:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:34:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:34:44 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 16:34:44 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 16:34:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:34:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:34:44 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:34:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:34:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 16:34:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 127 msc 0 sec -2016-05-02 16:34:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 21 ms -2016-05-02 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 16:34:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:34:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 16:34:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-02 16:34:44 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 16:34:44 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 16:34:44 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 16:34:44 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 16:34:44 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 16:34:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:34:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 16:34:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 16:34:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:34:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 350 msc 0 sec -2016-05-02 16:34:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:34:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:34:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:34:50 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 16:34:50 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:34:50 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:34:51 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 16:34:51 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 16:34:51 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 16:34:51 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 16:34:51 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 16:34:51 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 16:34:51 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:34:51 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 16:34:51 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 16:34:51 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 16:34:51 DEBUG WPS2SM:204 - Schema: null -2016-05-02 16:34:51 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 16:34:51 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:34:51 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 16:34:51 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 16:34:51 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 16:34:51 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 16:34:51 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 16:34:51 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 16:34:51 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 16:34:51 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 16:34:51 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:34:51 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 16:34:51 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 16:34:51 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:34:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 16:34:51 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 16:34:51 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:34:51 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 16:34:51 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 16:34:51 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 16:34:51 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 16:34:51 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 16:34:51 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 16:34:51 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 16:34:51 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 16:34:51 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:34:51 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 16:34:51 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 16:34:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:34:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:34:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:34:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:34:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:34:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:34:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:34:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:34:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:34:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:34:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:34:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:34:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:34:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:34:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:34:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:34:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:34:51 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 16:34:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:34:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 16:34:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:34:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:34:51 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:34:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:34:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:34:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:34:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:34:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:34:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:34:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:34:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:34:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:34:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:34:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:34:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:34:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:34:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:34:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:34:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:34:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:34:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:34:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:34:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:34:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:34:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:34:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:34:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:34:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:34:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:34:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:34:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:34:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:34:51 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 16:34:51 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 16:34:51 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 16:34:51 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 16:34:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:34:51 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 16:34:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:34:51 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 16:34:51 INFO WorkspaceExplorerServiceImpl:142 - end time - 225 msc 0 sec -2016-05-02 16:34:51 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 16:34:59 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:34:59 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:34:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:34:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:34:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:34:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:34:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:34:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:34:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:34:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:34:59 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:34:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:34:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:34:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:34:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:34:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:34:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:34:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:34:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:34:59 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:34:59 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:34:59 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:34:59 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:34:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:34:59 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:34:59 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 16:34:59 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 16:34:59 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:34:59 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:34:59 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:34:59 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:34:59 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:34:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:34:59 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:34:59 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:34:59 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:34:59 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:34:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:34:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:34:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:34:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:34:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:34:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:34:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:34:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:34:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:34:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:34:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:34:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:34:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:34:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:34:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:34:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:34:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:34:59 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:34:59 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:34:59 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:34:59 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:34:59 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:34:59 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:34:59 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:34:59 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:34:59 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@b0c30874, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@295acb9b, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7ed4253, socketFactory=javax.net.DefaultSocketFactory@699d5b35, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:34:59 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:34:59 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:34:59 INFO WorkspaceExplorerServiceImpl:188 - end time - 82 msc 0 sec -2016-05-02 16:34:59 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:34:59 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:34:59 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:34:59 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:244314}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:34:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:34:59 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1854855}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:34:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:34:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1355924, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:34:59 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:34:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2650824, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:34:59 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:34:59 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:34:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:34:59 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:34:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:34:59 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2126864}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:34:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:34:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1347414, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:34:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:34:59 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1540650}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:34:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:34:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1585974, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:34:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 16:34:59 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1854856}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:34:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:34:59 DEBUG command:56 - Command execution completed -2016-05-02 16:34:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:34:59 DEBUG command:56 - Command execution completed -2016-05-02 16:34:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:34:59 DEBUG command:56 - Command execution completed -2016-05-02 16:34:59 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:34:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:34:59 DEBUG command:56 - Command execution completed -2016-05-02 16:34:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:34:59 DEBUG command:56 - Command execution completed -2016-05-02 16:34:59 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1854856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 16:35:00 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:35:00 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:35:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:35:00 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:35:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:35:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:35:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:35:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:35:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:35:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:35:00 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:35:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:35:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:35:00 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:35:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:35:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:35:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:35:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:35:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:35:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:35:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:35:00 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:35:00 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:35:00 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:35:00 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:35:00 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:35:00 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:35:00 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 16:35:00 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:35:00 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:35:00 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:35:00 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:35:00 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:35:00 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:35:00 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:35:00 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:35:00 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:35:00 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:35:00 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:35:00 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:35:00 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:35:00 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:35:00 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:35:00 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@b0c30874, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@295acb9b, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7ed4253, socketFactory=javax.net.DefaultSocketFactory@699d5b35, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:35:00 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:35:00 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:35:00 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1854857}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1662214, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:35:00 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:35:00 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:35:00 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:244315}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:35:00 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:35:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1658451, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:35:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:35:00 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2126866}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1145782, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:35:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:35:00 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1854858}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854858}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 DEBUG command:56 - Command execution completed -2016-05-02 16:35:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854858}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 DEBUG command:56 - Command execution completed -2016-05-02 16:35:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854858}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1540651}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 DEBUG command:56 - Command execution completed -2016-05-02 16:35:00 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:35:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854858}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1519227, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:35:00 DEBUG command:56 - Command execution completed -2016-05-02 16:35:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:35:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854858}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 DEBUG command:56 - Command execution completed -2016-05-02 16:35:00 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1854858}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:35:00 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:35:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:35:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:35:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:35:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:35:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:35:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:35:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:35:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:35:00 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:35:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:35:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:35:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:35:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:35:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:35:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:35:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:35:00 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:35:00 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:35:00 DEBUG query:56 - Query completed -2016-05-02 16:35:00 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 16:35:00 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2126864} -2016-05-02 16:35:00 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:244314} -2016-05-02 16:35:00 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1540650} -2016-05-02 16:35:00 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1854856}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:35:00 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1854856} -2016-05-02 16:35:00 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1854855} -2016-05-02 16:35:00 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:35:00 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:35:00 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:35:00 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 16:35:00 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:35:00 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:35:00 INFO WorkspaceExplorerServiceImpl:188 - end time - 49 msc 0 sec -2016-05-02 16:35:00 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:35:00 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:35:00 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:35:00 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:35:00 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:35:01 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:35:01 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:35:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:35:01 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:35:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:35:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:35:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:35:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:35:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:35:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:35:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:35:01 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:35:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:35:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:35:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:35:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:35:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:35:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:35:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:35:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:35:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:35:01 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:35:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:35:01 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:35:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:35:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:35:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:35:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:35:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:35:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:35:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:35:01 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:35:01 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:35:01 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:35:01 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 16:35:01 DEBUG query:56 - Query completed -2016-05-02 16:35:01 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 16:35:01 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2126866} -2016-05-02 16:35:01 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:244315} -2016-05-02 16:35:01 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1854858}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:35:01 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1854858} -2016-05-02 16:35:01 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1540651} -2016-05-02 16:35:01 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:35:01 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1854857} -2016-05-02 16:35:01 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:35:01 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:35:01 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 16:35:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:35:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:35:02 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:35:02 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 16:35:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:35:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:35:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:35:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:35:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:35:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:35:02 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:35:02 DEBUG ServiceEngine:193 - get() - start -2016-05-02 16:35:02 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:35:02 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:35:02 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:35:02 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:35:02 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:35:02 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:35:02 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 16:35:02 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:35:02 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:35:02 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:35:02 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:35:02 DEBUG Operation:173 - get(String) - start -2016-05-02 16:35:02 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:35:02 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:35:02 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:35:02 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:35:02 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:35:02 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:35:02 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:35:02 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@b0c30874, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@295acb9b, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7ed4253, socketFactory=javax.net.DefaultSocketFactory@699d5b35, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:35:02 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:35:02 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:35:02 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:244316}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1854859}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1236402, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:35:02 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:35:02 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:35:02 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:35:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:35:02 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2126867}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=4582337, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:35:02 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:35:02 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1036269, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:35:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:35:02 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1540652}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2103041, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:35:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:35:02 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1854860}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854860}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG command:56 - Command execution completed -2016-05-02 16:35:02 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854860}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG command:56 - Command execution completed -2016-05-02 16:35:02 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854860}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG command:56 - Command execution completed -2016-05-02 16:35:02 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 16:35:02 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854860}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG command:56 - Command execution completed -2016-05-02 16:35:02 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854860}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG command:56 - Command execution completed -2016-05-02 16:35:02 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:35:02 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854860}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG command:56 - Command execution completed -2016-05-02 16:35:02 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854860}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG command:56 - Command execution completed -2016-05-02 16:35:02 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:35:02 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854860}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG query:56 - Query completed -2016-05-02 16:35:02 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:35:02 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 16:35:02 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 16:35:02 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854860}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG update:56 - Update completed -2016-05-02 16:35:02 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1854860}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG query:56 - Query completed -2016-05-02 16:35:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:35:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:35:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:35:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:35:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:35:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:35:02 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:35:02 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 16:35:02 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 16:35:02 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 16:35:02 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:35:02 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:35:02 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:35:02 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:35:02 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 16:35:02 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:35:02 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 16:35:02 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 16:35:02 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:35:02 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:35:02 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:35:02 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:35:02 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:35:02 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:35:02 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:35:02 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:35:02 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:35:02 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:35:02 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@b0c30874, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@295acb9b, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7ed4253, socketFactory=javax.net.DefaultSocketFactory@699d5b35, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:35:02 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:35:02 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:35:02 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:244317}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1854861}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=5554974, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:35:02 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:35:02 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:35:02 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:35:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:35:02 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=7088112, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:35:02 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:35:02 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2126868}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=966482, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:35:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:35:02 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1854862}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854862}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG command:56 - Command execution completed -2016-05-02 16:35:02 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854862}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1540653}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG command:56 - Command execution completed -2016-05-02 16:35:02 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854862}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1353422, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:35:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:35:02 DEBUG command:56 - Command execution completed -2016-05-02 16:35:02 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:35:02 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:35:02 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854862}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG command:56 - Command execution completed -2016-05-02 16:35:02 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854862}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG command:56 - Command execution completed -2016-05-02 16:35:02 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:35:02 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1854862}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG query:56 - Query completed -2016-05-02 16:35:02 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:35:02 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2126868} -2016-05-02 16:35:02 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:244317} -2016-05-02 16:35:02 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1540653} -2016-05-02 16:35:02 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1854862}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:35:02 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1854862} -2016-05-02 16:35:02 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:35:02 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1854861} -2016-05-02 16:35:02 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:35:02 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:35:02 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:35:02 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:35:02 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 16:35:02 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:35:02 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:35:02 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:35:02 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:35:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:35:12 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:12 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:35:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:35:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:35:12 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:35:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 16:35:12 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:35:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 16:35:22 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:35:22 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:35:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 16:35:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 16:35:22 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:35:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 16:35:22 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:35:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 16:35:29 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2126867} -2016-05-02 16:35:29 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1540652} -2016-05-02 16:35:29 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1854860}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:35:29 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:244316} -2016-05-02 16:35:29 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1854860} -2016-05-02 16:35:29 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1854859} -2016-05-02 16:35:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:35:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:36:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:36:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:37:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:37:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:38:24 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 16:38:24 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 16:38:24 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 16:38:24 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 16:38:24 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 16:38:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:38:24 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 16:38:24 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@1ec30084 -2016-05-02 16:38:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:38:24 INFO ASLSession:352 - Logging the entrance -2016-05-02 16:38:24 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 16:38:24 DEBUG TemplateModel:83 - 2016-05-02 16:38:24, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 16:38:24 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:38:24 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 16:38:26 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 16:38:26 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 16:38:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:38:26 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 16:38:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:38:26 INFO ASLSession:352 - Logging the entrance -2016-05-02 16:38:26 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 16:38:26 DEBUG TemplateModel:83 - 2016-05-02 16:38:26, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 16:38:26 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:38:26 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 16:38:26 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 113 ms -2016-05-02 16:38:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 16:38:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 16:38:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 16:38:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 16:38:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 16:38:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 16:38:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 16:38:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 16:38:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 16:38:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 16:38:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 16:38:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 16:38:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 16:38:26 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 16:38:26 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 16:38:26 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:38:26 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 16:38:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@56f553cc -2016-05-02 16:38:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@5110e583 -2016-05-02 16:38:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@5e5caa26 -2016-05-02 16:38:26 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@3fbf14f6 -2016-05-02 16:38:26 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 94 ms -2016-05-02 16:38:26 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 16:38:26 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 16:38:26 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 16:38:26 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 16:38:26 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 16:38:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:38:26 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:38:26 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 16:38:26 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 24 ms -2016-05-02 16:38:26 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 16:38:26 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:38:26 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 16:38:26 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:38:27 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 16:38:27 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 16:38:27 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 16:38:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:38:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:38:27 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:38:27 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 16:38:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:27 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 16:38:27 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 16:38:27 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 16:38:27 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 16:38:27 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 16:38:27 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 16:38:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 16:38:27 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:38:27 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 16:38:27 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-02 16:38:27 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 16:38:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:38:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:27 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 16:38:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:27 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 16:38:27 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 16:38:27 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 16:38:27 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 16:38:27 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:38:27 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 16:38:27 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 16:38:27 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 16:38:27 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 16:38:27 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 16:38:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:38:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:38:27 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:38:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 16:38:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:38:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:38:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:28 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:38:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 16:38:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:38:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:38:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:28 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:38:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 16:38:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:38:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:38:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:28 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:38:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 16:38:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:38:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:38:28 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 16:38:28 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 16:38:28 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 16:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:38:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:38:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:38:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:28 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 16:38:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:38:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:38:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:38:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:38:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:38:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:29 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 16:38:29 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 16:38:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:38:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 120 msc 0 sec -2016-05-02 16:38:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:38:29 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 16:38:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 28 -2016-05-02 16:38:29 DEBUG ASLSession:458 - Getting security token: null in thread 28 -2016-05-02 16:38:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 28 -2016-05-02 16:38:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:29 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 16:38:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:38:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:38:29 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 16:38:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 16:38:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:38:29 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:38:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 16:38:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-02 16:38:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 16:38:29 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:38:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 16:38:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 133 msc 0 sec -2016-05-02 16:38:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 43 ms -2016-05-02 16:38:29 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 16:38:29 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 16:38:29 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 16:38:29 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 16:38:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 16:38:29 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 16:38:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 16:38:29 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:38:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 16:38:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 16:38:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 16:38:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 16:38:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 16:38:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:38:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 350 msc 0 sec -2016-05-02 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:38:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:38:36 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:38:36 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 16:38:36 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:38:36 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:38:36 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 16:38:36 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 16:38:36 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 16:38:36 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 16:38:36 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 16:38:36 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 16:38:36 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:38:36 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 16:38:36 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 16:38:36 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 16:38:36 DEBUG WPS2SM:204 - Schema: null -2016-05-02 16:38:36 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 16:38:36 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:38:36 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 16:38:36 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 16:38:36 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 16:38:36 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 16:38:36 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 16:38:36 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 16:38:36 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 16:38:36 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 16:38:36 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:38:36 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 16:38:36 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 16:38:36 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:38:36 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 16:38:36 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 16:38:36 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:38:36 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 16:38:36 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 16:38:36 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 16:38:36 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 16:38:36 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 16:38:36 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 16:38:36 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 16:38:36 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 16:38:36 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:38:36 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 16:38:36 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:38:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:38:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:38:36 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:38:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:36 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 16:38:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:38:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:38:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:38:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:38:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 28 -2016-05-02 16:38:36 DEBUG ASLSession:458 - Getting security token: null in thread 28 -2016-05-02 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 28 -2016-05-02 16:38:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:38:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:38:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 28 -2016-05-02 16:38:36 DEBUG ASLSession:458 - Getting security token: null in thread 28 -2016-05-02 16:38:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:38:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:38:36 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 16:38:37 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 16:38:37 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 16:38:37 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 16:38:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:38:37 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 16:38:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:38:37 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 16:38:37 INFO WorkspaceExplorerServiceImpl:142 - end time - 229 msc 0 sec -2016-05-02 16:38:37 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 16:38:54 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:38:54 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:38:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:38:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:38:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:38:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:54 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:38:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 28 -2016-05-02 16:38:54 DEBUG ASLSession:458 - Getting security token: null in thread 28 -2016-05-02 16:38:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 28 -2016-05-02 16:38:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:54 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:38:54 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:38:54 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:38:54 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:38:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:38:54 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:38:54 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 16:38:54 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 16:38:54 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:38:54 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:38:54 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:38:54 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:38:54 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:38:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:38:54 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:38:54 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:38:54 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:38:54 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:38:54 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:38:54 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:38:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:38:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:38:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:38:54 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:38:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:38:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:54 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:38:54 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:54 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:38:54 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:54 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@23e14fc2, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4018b2a3, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@15780c35, socketFactory=javax.net.DefaultSocketFactory@7c697695, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:38:54 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:38:54 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:38:54 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:38:54 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:38:54 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:38:54 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1854903}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1617828, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:54 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:38:54 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:54 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:244358}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:38:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:38:54 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:54 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1475882, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:54 INFO WorkspaceExplorerServiceImpl:188 - end time - 65 msc 0 sec -2016-05-02 16:38:54 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2126908}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:38:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:38:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1545657, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:54 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:38:54 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:38:54 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1540692}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:38:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:38:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1391539, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:38:54 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1854904}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854904}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:54 DEBUG command:56 - Command execution completed -2016-05-02 16:38:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854904}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:54 DEBUG command:56 - Command execution completed -2016-05-02 16:38:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854904}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:54 DEBUG command:56 - Command execution completed -2016-05-02 16:38:54 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:38:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854904}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:54 DEBUG command:56 - Command execution completed -2016-05-02 16:38:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854904}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:54 DEBUG command:56 - Command execution completed -2016-05-02 16:38:54 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1854904}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 DEBUG query:56 - Query completed -2016-05-02 16:38:55 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 16:38:55 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2126908} -2016-05-02 16:38:55 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1854904}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:38:55 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1540692} -2016-05-02 16:38:55 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:244358} -2016-05-02 16:38:55 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1854904} -2016-05-02 16:38:55 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1854903} -2016-05-02 16:38:55 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:38:55 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:38:55 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:38:55 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 16:38:55 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:38:55 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:38:55 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:38:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:55 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:38:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:38:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:55 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:38:55 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:38:55 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:38:55 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:38:55 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:38:55 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:38:55 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 16:38:55 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:38:55 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:38:55 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:38:55 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:38:55 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:38:55 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:38:55 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:38:55 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:38:55 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:38:55 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:38:55 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:38:55 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:38:55 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:55 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:55 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:55 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@23e14fc2, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4018b2a3, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@15780c35, socketFactory=javax.net.DefaultSocketFactory@7c697695, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:38:55 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:38:55 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:38:55 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:244359}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1648813, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:55 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:38:55 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1854905}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:55 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1365708, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:55 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:55 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2126909}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=910917, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 28 -2016-05-02 16:38:55 DEBUG ASLSession:458 - Getting security token: null in thread 28 -2016-05-02 16:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 28 -2016-05-02 16:38:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:38:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:38:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:55 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:38:55 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:38:55 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1540693}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1673897, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 16:38:55 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1854906}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854906}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 DEBUG command:56 - Command execution completed -2016-05-02 16:38:55 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854906}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 DEBUG command:56 - Command execution completed -2016-05-02 16:38:55 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854906}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 DEBUG command:56 - Command execution completed -2016-05-02 16:38:55 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:38:55 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854906}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 DEBUG command:56 - Command execution completed -2016-05-02 16:38:55 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854906}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 DEBUG command:56 - Command execution completed -2016-05-02 16:38:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1854906}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:55 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:38:55 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:38:55 INFO WorkspaceExplorerServiceImpl:188 - end time - 75 msc 0 sec -2016-05-02 16:38:55 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:38:55 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:38:55 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:38:55 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:38:55 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:38:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:38:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 16:38:56 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:38:56 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:38:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:38:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:38:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:38:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:56 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:38:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:38:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:38:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:38:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:56 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:38:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:38:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:38:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:38:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:56 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:38:56 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:38:56 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:38:56 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 16:38:56 DEBUG query:56 - Query completed -2016-05-02 16:38:56 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 16:38:56 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2126909} -2016-05-02 16:38:56 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:244359} -2016-05-02 16:38:56 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1854906}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:38:56 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1540693} -2016-05-02 16:38:56 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1854906} -2016-05-02 16:38:56 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1854905} -2016-05-02 16:38:56 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:38:56 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:38:56 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:38:56 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 16:38:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:38:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:38:57 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:38:57 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 16:38:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:57 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:38:57 DEBUG ServiceEngine:193 - get() - start -2016-05-02 16:38:57 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:38:57 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:38:57 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:38:57 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:38:57 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:38:57 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:38:57 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 16:38:57 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:38:57 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:38:57 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:38:57 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:38:57 DEBUG Operation:173 - get(String) - start -2016-05-02 16:38:57 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:38:57 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:38:57 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:38:57 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:38:57 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:57 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:57 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:57 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@23e14fc2, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4018b2a3, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@15780c35, socketFactory=javax.net.DefaultSocketFactory@7c697695, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:38:57 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:38:57 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:38:57 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1854907}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1568451, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:57 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:38:57 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:57 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:57 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:57 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2126910}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1183484, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:57 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:244360}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1408922, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:57 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1540694}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1933760, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:38:57 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1854908}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG command:56 - Command execution completed -2016-05-02 16:38:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG command:56 - Command execution completed -2016-05-02 16:38:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG command:56 - Command execution completed -2016-05-02 16:38:57 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 16:38:57 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG command:56 - Command execution completed -2016-05-02 16:38:57 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG command:56 - Command execution completed -2016-05-02 16:38:57 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:38:57 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG command:56 - Command execution completed -2016-05-02 16:38:57 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG command:56 - Command execution completed -2016-05-02 16:38:57 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:38:57 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG query:56 - Query completed -2016-05-02 16:38:57 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:38:57 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 16:38:57 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 16:38:57 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG update:56 - Update completed -2016-05-02 16:38:57 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1854908}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG query:56 - Query completed -2016-05-02 16:38:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:38:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:38:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:38:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:38:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:38:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:38:57 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:38:57 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 16:38:57 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 16:38:57 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 16:38:57 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:38:57 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:38:57 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:38:57 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:38:57 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 16:38:57 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:38:57 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 16:38:57 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 16:38:57 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:38:57 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:38:57 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:38:57 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:38:57 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:38:57 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:38:57 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:38:57 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:57 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:57 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:57 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@23e14fc2, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4018b2a3, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@15780c35, socketFactory=javax.net.DefaultSocketFactory@7c697695, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:38:57 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:38:57 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:38:57 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:244361}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1287949, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:57 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:38:57 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:57 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:38:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:57 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2126911}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1854909}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=997233, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1378194, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:57 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:38:57 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1540695}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1309067, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:38:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 16:38:57 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1854910}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854910}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG command:56 - Command execution completed -2016-05-02 16:38:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854910}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG command:56 - Command execution completed -2016-05-02 16:38:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854910}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG command:56 - Command execution completed -2016-05-02 16:38:57 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:38:57 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:38:57 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854910}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG command:56 - Command execution completed -2016-05-02 16:38:57 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854910}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG command:56 - Command execution completed -2016-05-02 16:38:57 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:38:57 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1854910}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:38:57 DEBUG query:56 - Query completed -2016-05-02 16:38:57 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:38:57 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2126911} -2016-05-02 16:38:57 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:244361} -2016-05-02 16:38:57 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1540695} -2016-05-02 16:38:57 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1854910}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:38:57 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1854910} -2016-05-02 16:38:57 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1854909} -2016-05-02 16:38:57 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:38:57 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:38:58 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:38:58 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:38:58 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:38:58 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 16:38:58 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:38:58 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:38:58 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:39:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:39:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:39:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:39:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:39:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:39:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:39:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:39:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:39:17 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:39:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:39:17 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:39:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:39:17 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:39:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:39:17 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:39:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:39:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:39:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:39:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:39:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:39:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:39:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:39:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:39:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:39:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:39:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:39:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:39:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:39:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:39:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:39:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:39:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:39:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:39:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:40:17 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 16:40:17 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 16:40:17 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 16:40:17 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 16:40:17 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 16:40:17 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:40:17 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 16:40:17 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@c101c3d -2016-05-02 16:40:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:40:17 INFO ASLSession:352 - Logging the entrance -2016-05-02 16:40:17 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 16:40:17 DEBUG TemplateModel:83 - 2016-05-02 16:40:17, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 16:40:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:40:17 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 16:40:19 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 16:40:19 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 16:40:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:40:19 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 16:40:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:40:19 INFO ASLSession:352 - Logging the entrance -2016-05-02 16:40:19 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 16:40:19 DEBUG TemplateModel:83 - 2016-05-02 16:40:19, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 16:40:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:40:19 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 16:40:19 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 112 ms -2016-05-02 16:40:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 16:40:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 16:40:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 16:40:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 16:40:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 16:40:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 16:40:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 16:40:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 16:40:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 16:40:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 16:40:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 16:40:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 16:40:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 16:40:19 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 16:40:19 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 16:40:19 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:40:19 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 16:40:19 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@16ee0452 -2016-05-02 16:40:19 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@5f4fe8ad -2016-05-02 16:40:19 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@4df26a79 -2016-05-02 16:40:19 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@756b3e5f -2016-05-02 16:40:19 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 104 ms -2016-05-02 16:40:19 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 16:40:19 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 16:40:19 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 16:40:19 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 16:40:19 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 16:40:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:40:19 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:40:19 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 16:40:19 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 17 ms -2016-05-02 16:40:19 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 16:40:19 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:40:19 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 16:40:19 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:40:20 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 16:40:20 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 16:40:20 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 16:40:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:40:20 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:40:20 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:40:20 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 16:40:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:20 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 16:40:20 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 16:40:20 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 16:40:20 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 16:40:20 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 16:40:20 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 16:40:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 16:40:20 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:40:20 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 16:40:20 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-02 16:40:20 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 16:40:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:40:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:20 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 16:40:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:20 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 16:40:20 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 16:40:20 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 16:40:20 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 16:40:20 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 16:40:20 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 16:40:20 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 16:40:20 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 16:40:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:40:20 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:40:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:40:20 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 16:40:20 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:40:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 16:40:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:40:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:40:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:21 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:40:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 16:40:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:40:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:40:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:21 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:40:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 16:40:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:40:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:40:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:21 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:40:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 16:40:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:40:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:40:22 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 16:40:22 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 16:40:22 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 16:40:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:40:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:40:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:40:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:22 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 16:40:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:40:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:40:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:40:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:40:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:40:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:22 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 16:40:22 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 16:40:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:40:22 INFO WorkspaceExplorerServiceImpl:188 - end time - 134 msc 0 sec -2016-05-02 16:40:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:40:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:40:22 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:40:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:40:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:22 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 16:40:22 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 16:40:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:40:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:40:22 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 16:40:23 INFO WorkspaceExplorerServiceImpl:188 - end time - 125 msc 0 sec -2016-05-02 16:40:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 16:40:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:40:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:40:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 16:40:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 21 ms -2016-05-02 16:40:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 16:40:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:40:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 16:40:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-02 16:40:23 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 16:40:23 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 16:40:23 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 16:40:23 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 16:40:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 16:40:23 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 16:40:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 16:40:23 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:40:23 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 16:40:23 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-02 16:40:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 16:40:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 16:40:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 16:40:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:40:23 INFO WorkspaceExplorerServiceImpl:188 - end time - 379 msc 0 sec -2016-05-02 16:40:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:40:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:40:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:40:25 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 16:40:25 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:40:25 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:40:26 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 16:40:26 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 16:40:26 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 16:40:26 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 16:40:26 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 16:40:26 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 16:40:26 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:40:26 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 16:40:26 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 16:40:26 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 16:40:26 DEBUG WPS2SM:204 - Schema: null -2016-05-02 16:40:26 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 16:40:26 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:40:26 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 16:40:26 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 16:40:26 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 16:40:26 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 16:40:26 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 16:40:26 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 16:40:26 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 16:40:26 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 16:40:26 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:40:26 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 16:40:26 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 16:40:26 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:40:26 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 16:40:26 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 16:40:26 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:40:26 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 16:40:26 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 16:40:26 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 16:40:26 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 16:40:26 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 16:40:26 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 16:40:26 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 16:40:26 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 16:40:26 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:40:26 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 16:40:26 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 16:40:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:40:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:40:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:40:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:40:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:26 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:40:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:40:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:40:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:26 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 16:40:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 16:40:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:40:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:40:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:40:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:40:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:40:26 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:40:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:40:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:40:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:40:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:40:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:40:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:40:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:40:26 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:40:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:40:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:40:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:40:26 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 16:40:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:40:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:40:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:40:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:40:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:40:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:40:26 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 16:40:26 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 16:40:26 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 16:40:26 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:40:26 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 16:40:26 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:40:26 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 16:40:26 INFO WorkspaceExplorerServiceImpl:142 - end time - 241 msc 0 sec -2016-05-02 16:40:26 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 16:40:31 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:40:31 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:40:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:40:31 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:40:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:40:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:31 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:40:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:40:31 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:40:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:40:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:40:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:40:31 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:40:31 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:40:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:40:31 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:40:31 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 16:40:31 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 16:40:31 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:40:31 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:40:31 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:40:31 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:40:31 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:40:31 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:40:31 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:40:31 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:40:31 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:40:31 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:40:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:40:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:40:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:40:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:40:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:40:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:40:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:31 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:40:31 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:40:31 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:40:31 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:31 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:31 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e70cd447, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@1a5bf3e3, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@ae8c99a, socketFactory=javax.net.DefaultSocketFactory@390ba30e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:40:31 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:40:31 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:40:31 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:40:31 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:40:31 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:40:31 INFO WorkspaceExplorerServiceImpl:188 - end time - 78 msc 0 sec -2016-05-02 16:40:31 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:40:31 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:40:31 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1854926}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:31 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1391774, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:31 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:244377}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:40:31 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:40:31 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:40:31 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:31 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:31 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1527310, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:31 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2126928}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:40:31 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:40:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=980382, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:31 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1854927}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:31 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1540713}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:40:31 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:40:31 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1428019, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:31 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:40:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854927}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:31 DEBUG command:56 - Command execution completed -2016-05-02 16:40:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854927}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:31 DEBUG command:56 - Command execution completed -2016-05-02 16:40:31 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854927}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:31 DEBUG command:56 - Command execution completed -2016-05-02 16:40:31 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:40:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854927}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 DEBUG command:56 - Command execution completed -2016-05-02 16:40:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1854927}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 DEBUG command:56 - Command execution completed -2016-05-02 16:40:32 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1854927}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:40:32 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:40:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:40:32 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 16:40:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 16:40:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:32 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:40:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:40:32 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:40:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:40:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:32 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:40:32 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:40:32 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:40:32 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:40:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:40:32 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:40:32 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 16:40:32 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:40:32 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:40:32 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:40:32 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:40:32 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:40:32 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:40:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:40:32 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:40:32 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:40:32 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:40:32 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:40:32 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:40:32 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:32 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:32 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:32 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e70cd447, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@1a5bf3e3, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@ae8c99a, socketFactory=javax.net.DefaultSocketFactory@390ba30e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:40:32 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:40:32 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:40:32 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1854928}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1618845, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:32 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:40:32 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:32 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:32 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:244378}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1451339, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:32 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2126929}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=995233, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:40:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:40:32 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:40:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:40:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:32 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:40:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:40:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:32 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:40:32 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:40:32 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1540714}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1704386, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 16:40:32 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:40:32 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1854929}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854929}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 DEBUG command:56 - Command execution completed -2016-05-02 16:40:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854929}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 DEBUG command:56 - Command execution completed -2016-05-02 16:40:32 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:40:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854929}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 DEBUG command:56 - Command execution completed -2016-05-02 16:40:32 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:40:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854929}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 DEBUG command:56 - Command execution completed -2016-05-02 16:40:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1854929}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 DEBUG command:56 - Command execution completed -2016-05-02 16:40:32 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1854929}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:32 INFO WorkspaceExplorerServiceImpl:188 - end time - 64 msc 0 sec -2016-05-02 16:40:32 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:40:32 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:40:32 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:40:32 DEBUG query:56 - Query completed -2016-05-02 16:40:32 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 16:40:32 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2126928} -2016-05-02 16:40:32 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:244377} -2016-05-02 16:40:32 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1540713} -2016-05-02 16:40:32 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1854927}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:40:32 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1854927} -2016-05-02 16:40:32 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1854926} -2016-05-02 16:40:32 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:40:32 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:40:32 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:40:32 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 16:40:32 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:40:32 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:40:33 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:40:33 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:40:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:40:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:40:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:40:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:33 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:40:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:40:33 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:40:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:40:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:33 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:40:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:40:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:40:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:40:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:33 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:40:33 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:40:33 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:40:33 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 16:40:33 DEBUG query:56 - Query completed -2016-05-02 16:40:33 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 16:40:33 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2126929} -2016-05-02 16:40:33 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:244378} -2016-05-02 16:40:33 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1540714} -2016-05-02 16:40:33 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1854929}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:40:33 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1854929} -2016-05-02 16:40:33 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:40:33 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:40:33 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:40:33 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 16:40:33 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1854928} -2016-05-02 16:40:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:40:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:40:34 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:40:34 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 16:40:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:34 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:40:34 DEBUG ServiceEngine:193 - get() - start -2016-05-02 16:40:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:40:34 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:40:34 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:40:34 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:40:34 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:40:34 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:40:34 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 16:40:34 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:40:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:40:34 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:40:34 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:40:34 DEBUG Operation:173 - get(String) - start -2016-05-02 16:40:34 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:40:34 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:40:34 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:40:34 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:40:34 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:34 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:34 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:34 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e70cd447, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@1a5bf3e3, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@ae8c99a, socketFactory=javax.net.DefaultSocketFactory@390ba30e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:40:34 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:40:34 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:40:34 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:244381}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1464979, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:34 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:40:34 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:34 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:34 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2126930}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1014023, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:34 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1854930}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1585014, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:34 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:34 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1540715}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1243537, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 16:40:34 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1854931}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854931}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG command:56 - Command execution completed -2016-05-02 16:40:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854931}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG command:56 - Command execution completed -2016-05-02 16:40:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854931}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG command:56 - Command execution completed -2016-05-02 16:40:34 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 16:40:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854931}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG command:56 - Command execution completed -2016-05-02 16:40:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854931}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG command:56 - Command execution completed -2016-05-02 16:40:34 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:40:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854931}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG command:56 - Command execution completed -2016-05-02 16:40:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1854931}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG command:56 - Command execution completed -2016-05-02 16:40:34 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:40:34 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854931}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG query:56 - Query completed -2016-05-02 16:40:34 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:40:34 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 16:40:34 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 16:40:34 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1854931}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG update:56 - Update completed -2016-05-02 16:40:34 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1854931}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG query:56 - Query completed -2016-05-02 16:40:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:40:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:40:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:40:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:40:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:40:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:40:34 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:40:34 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 16:40:34 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 16:40:34 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 16:40:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:40:34 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:40:34 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:40:34 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:40:34 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 16:40:34 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:40:34 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 16:40:34 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 16:40:34 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:40:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:40:34 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:40:34 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:40:34 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:40:34 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:40:34 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:40:34 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:34 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:34 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:34 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e70cd447, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@1a5bf3e3, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@ae8c99a, socketFactory=javax.net.DefaultSocketFactory@390ba30e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:40:34 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:40:34 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:40:34 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:244382}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1533208, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:34 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:40:34 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:34 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:40:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:34 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2126931}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=977240, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:34 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1854932}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1380196, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:34 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:40:34 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1540716}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1609548, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:40:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 16:40:34 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1854933}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854933}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG command:56 - Command execution completed -2016-05-02 16:40:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854933}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG command:56 - Command execution completed -2016-05-02 16:40:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854933}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG command:56 - Command execution completed -2016-05-02 16:40:34 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:40:34 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:40:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854933}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG command:56 - Command execution completed -2016-05-02 16:40:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1854933}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG command:56 - Command execution completed -2016-05-02 16:40:34 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:40:34 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1854933}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:34 DEBUG query:56 - Query completed -2016-05-02 16:40:34 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:40:34 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2126931} -2016-05-02 16:40:34 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:244382} -2016-05-02 16:40:34 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1540716} -2016-05-02 16:40:34 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1854933}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:40:34 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1854933} -2016-05-02 16:40:34 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:40:34 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1854932} -2016-05-02 16:40:34 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:40:34 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:40:34 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:40:34 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:40:34 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 16:40:34 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:40:34 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:40:34 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:40:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:40:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:40:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 16:40:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 16:40:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 16:40:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:40:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:40:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:40:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:40:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:40:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:40:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:40:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:40:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:40:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:40:55 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:40:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:40:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:40:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:41:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:41:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:41:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:41:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:41:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:41:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:41:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:41:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:41:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:41:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:41:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:41:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:41:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:41:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:41:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:41:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:41:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:41:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:41:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:41:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:41:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:41:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:41:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:41:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:41:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:41:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:41:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:41:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:41:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:41:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:41:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:41:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:41:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:41:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:41:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:41:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:41:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:41:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:41:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:41:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:41:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:41:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:41:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:41:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:41:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:41:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:41:55 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:41:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:41:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:41:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:42:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:42:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:42:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:42:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:42:07 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:42:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:42:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:42:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:42:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:42:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:42:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:42:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:42:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:42:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:42:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:42:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:42:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:42:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:42:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:42:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:42:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 16:42:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:42:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 16:42:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:42:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 16:42:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:42:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 16:42:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:42:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:42:55 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:42:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:42:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:42:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:43:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:43:02 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:43:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:43:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:43:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:43:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:43:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:43:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:43:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:43:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:43:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:43:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:43:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:43:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:43:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:43:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:43:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:43:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:43:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:43:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:43:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:43:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:43:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:43:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:43:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:43:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:43:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:43:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:43:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:43:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:43:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:43:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:43:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:43:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:43:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:43:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:43:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 16:43:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 16:43:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:43:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 16:43:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:43:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 16:43:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:43:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 16:43:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:43:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 16:43:55 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:43:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 16:43:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:43:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 16:43:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:43:57 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:44:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:44:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 16:44:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:44:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 16:44:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:44:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 16:44:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:44:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 16:44:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:44:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 16:44:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:44:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 16:44:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:44:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 16:44:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:44:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 16:44:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:44:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 16:44:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:44:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 16:44:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:44:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 16:44:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:44:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 16:44:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:44:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:44:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:44:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:44:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:44:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:44:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:44:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:44:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:44:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 16:44:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:44:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 16:44:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:44:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 16:44:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:44:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 16:44:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:44:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:44:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:44:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 16:44:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:44:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 16:44:55 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:44:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 16:44:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:44:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 16:45:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:45:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:45:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:45:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:45:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:45:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:45:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:45:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:45:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:45:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:45:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:45:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:45:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:45:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:45:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:45:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:45:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:45:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:45:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:45:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:45:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:45:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:45:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:45:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:45:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:45:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:45:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:45:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:45:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:45:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:45:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:45:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:45:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:45:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:45:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:45:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:45:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:45:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:45:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:45:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 16:45:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:45:47 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:45:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:45:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:45:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:45:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:45:55 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:45:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:45:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:45:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 16:46:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:46:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:46:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:46:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:46:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:46:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:46:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:46:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 16:46:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:46:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:46:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:46:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:46:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:46:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:46:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:46:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:46:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:46:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:46:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:46:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:46:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:46:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:46:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:46:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 16:46:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:46:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:46:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 16:46:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 16:46:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:46:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 16:46:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:46:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 16:47:15 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 16:47:15 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 16:47:15 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 16:47:15 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 16:47:15 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 16:47:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:47:15 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 16:47:15 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@4ff7be65 -2016-05-02 16:47:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:47:15 INFO ASLSession:352 - Logging the entrance -2016-05-02 16:47:15 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 16:47:15 DEBUG TemplateModel:83 - 2016-05-02 16:47:15, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 16:47:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:47:15 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 16:47:18 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 16:47:18 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 16:47:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:47:18 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 16:47:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:47:18 INFO ASLSession:352 - Logging the entrance -2016-05-02 16:47:18 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 16:47:18 DEBUG TemplateModel:83 - 2016-05-02 16:47:18, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 16:47:18 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:47:18 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 16:47:18 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 138 ms -2016-05-02 16:47:18 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 16:47:18 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 16:47:18 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 16:47:18 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 16:47:18 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 16:47:18 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 16:47:18 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 16:47:18 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 16:47:18 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 16:47:18 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 16:47:18 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 16:47:18 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 16:47:18 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 16:47:18 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 16:47:18 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 16:47:18 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:47:18 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 16:47:18 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@4c8277e9 -2016-05-02 16:47:18 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@74e50a4b -2016-05-02 16:47:18 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@1f5bfd84 -2016-05-02 16:47:18 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@7924e782 -2016-05-02 16:47:18 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 98 ms -2016-05-02 16:47:18 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 16:47:18 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 16:47:18 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 16:47:18 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 16:47:18 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 16:47:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:47:18 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:47:18 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 16:47:18 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 30 ms -2016-05-02 16:47:18 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 16:47:18 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:47:18 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 16:47:18 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:47:19 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 16:47:19 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 16:47:19 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 16:47:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:47:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:47:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:47:19 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 16:47:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:19 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 16:47:19 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 16:47:19 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 16:47:19 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 16:47:19 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 16:47:19 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 16:47:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 16:47:19 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:47:19 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 16:47:19 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 33 ms -2016-05-02 16:47:19 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 16:47:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:47:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:19 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 16:47:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:19 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 16:47:19 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 16:47:19 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 16:47:19 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 16:47:19 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:47:19 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 16:47:19 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 16:47:19 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 16:47:19 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 16:47:19 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 16:47:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:20 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:47:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 16:47:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:20 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:47:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 16:47:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:20 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:47:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 16:47:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:20 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 16:47:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 16:47:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:21 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 16:47:21 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 16:47:21 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 16:47:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:47:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:47:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:47:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:21 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 16:47:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:47:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:47:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:47:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:21 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 16:47:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:21 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 16:47:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:47:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:47:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:47:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:21 INFO WorkspaceExplorerServiceImpl:188 - end time - 132 msc 0 sec -2016-05-02 16:47:21 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 16:47:21 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 16:47:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:22 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 16:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 16:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:47:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:47:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 16:47:22 INFO WorkspaceExplorerServiceImpl:188 - end time - 145 msc 0 sec -2016-05-02 16:47:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 36 ms -2016-05-02 16:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 16:47:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:47:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 16:47:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-02 16:47:22 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 16:47:22 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 16:47:22 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 16:47:22 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 16:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 16:47:22 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 16:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 16:47:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 16:47:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 16:47:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 16:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 16:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 16:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 16:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:47:22 INFO WorkspaceExplorerServiceImpl:188 - end time - 371 msc 0 sec -2016-05-02 16:47:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:47:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:47:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:47:25 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 16:47:25 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:47:25 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 16:47:25 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 16:47:25 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 16:47:25 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 16:47:25 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 16:47:25 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 16:47:25 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 16:47:25 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 16:47:25 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 16:47:25 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 16:47:25 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 16:47:25 DEBUG WPS2SM:204 - Schema: null -2016-05-02 16:47:25 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 16:47:25 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:47:25 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 16:47:25 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 16:47:25 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 16:47:25 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 16:47:25 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 16:47:25 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 16:47:25 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 16:47:25 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 16:47:25 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:47:25 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 16:47:25 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 16:47:25 DEBUG WPS2SM:92 - WPS type: -2016-05-02 16:47:25 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 16:47:25 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 16:47:25 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 16:47:25 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 16:47:25 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 16:47:25 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 16:47:25 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 16:47:25 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 16:47:25 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 16:47:25 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 16:47:25 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 16:47:25 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 16:47:25 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 16:47:25 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 16:47:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:47:25 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:47:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:47:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:47:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:25 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:47:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:47:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:25 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 16:47:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 16:47:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:47:25 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:47:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:47:25 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:47:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:47:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:47:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:47:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:47:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:47:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:47:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:25 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 16:47:26 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 16:47:26 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 16:47:26 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 16:47:26 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:47:26 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 16:47:26 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:47:26 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 16:47:26 INFO WorkspaceExplorerServiceImpl:142 - end time - 200 msc 0 sec -2016-05-02 16:47:26 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 16:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:47:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:47:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:47:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:47:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:28 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 16:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 16:47:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:47:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:47:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:47:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:47:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:47:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:47:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:47:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:47:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:47:28 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 16:47:28 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 16:47:28 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 16:47:28 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 16:47:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:47:28 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 16:47:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:47:28 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 16:47:28 INFO WorkspaceExplorerServiceImpl:142 - end time - 178 msc 0 sec -2016-05-02 16:47:28 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 16:47:34 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:47:34 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:47:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:47:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:47:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:47:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:34 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:47:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:47:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:47:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:47:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:34 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:47:34 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:47:34 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:47:34 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:47:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:47:34 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:47:34 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 16:47:34 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 16:47:34 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:47:34 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:47:34 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:47:34 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:47:34 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:47:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:47:34 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:47:34 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:47:34 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:47:34 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:47:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:47:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:47:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:47:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:34 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:47:34 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:47:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:47:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:47:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:34 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:47:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:34 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:47:34 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:47:34 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:34 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:35 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7eeaa766, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@51882120, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4036e5b1, socketFactory=javax.net.DefaultSocketFactory@5421e866, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:47:35 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:47:35 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 16:47:35 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:47:35 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:47:35 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:47:35 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:47:35 INFO WorkspaceExplorerServiceImpl:188 - end time - 81 msc 0 sec -2016-05-02 16:47:35 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:244453}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=7805566, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:35 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:47:35 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:35 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=7.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:35 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2127002}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1045502, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=7.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:35 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1855004}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1755387, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:35 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=7.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:35 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1540787}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1492196, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=7.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:47:35 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1855005}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855005}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG command:56 - Command execution completed -2016-05-02 16:47:35 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855005}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG command:56 - Command execution completed -2016-05-02 16:47:35 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855005}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG command:56 - Command execution completed -2016-05-02 16:47:35 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:47:35 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855005}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG command:56 - Command execution completed -2016-05-02 16:47:35 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855005}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG command:56 - Command execution completed -2016-05-02 16:47:35 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1855005}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:47:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:47:35 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:47:35 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:47:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:47:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:47:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:47:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:35 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:47:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:47:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:47:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:47:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:35 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:47:35 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:47:35 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:47:35 DEBUG ServiceEngine:306 - get() - start -2016-05-02 16:47:35 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:47:35 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:47:35 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 16:47:35 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 16:47:35 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:47:35 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:47:35 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 16:47:35 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:47:35 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:47:35 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:47:35 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:47:35 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:47:35 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:47:35 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:47:35 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:47:35 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:35 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:35 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:35 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7eeaa766, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@51882120, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4036e5b1, socketFactory=javax.net.DefaultSocketFactory@5421e866, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:47:35 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:47:35 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:47:35 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1855006}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1532578, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:35 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:47:35 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:35 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:244454}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:35 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2356895, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:35 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2127003}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1059317, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:35 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1540788}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:47:35 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1576525, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 16:47:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:47:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:47:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:47:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:47:35 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:47:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:47:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:36 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:47:36 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1855007}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855007}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:36 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 16:47:36 DEBUG command:56 - Command execution completed -2016-05-02 16:47:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855007}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:36 DEBUG command:56 - Command execution completed -2016-05-02 16:47:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855007}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:36 DEBUG command:56 - Command execution completed -2016-05-02 16:47:36 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:47:36 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855007}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:36 DEBUG command:56 - Command execution completed -2016-05-02 16:47:36 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855007}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:36 DEBUG command:56 - Command execution completed -2016-05-02 16:47:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1855007}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:36 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:47:36 DEBUG query:56 - Query completed -2016-05-02 16:47:36 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 16:47:36 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 16:47:36 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2127002} -2016-05-02 16:47:36 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:244453} -2016-05-02 16:47:36 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1540787} -2016-05-02 16:47:36 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1855005}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:47:36 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1855005} -2016-05-02 16:47:36 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1855004} -2016-05-02 16:47:36 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:47:36 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:47:36 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 16:47:36 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 16:47:36 INFO WorkspaceExplorerServiceImpl:188 - end time - 89 msc 0 sec -2016-05-02 16:47:36 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 16:47:36 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:47:36 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 16:47:36 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 16:47:36 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 16:47:36 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:47:36 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:47:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:47:36 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:47:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:47:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:36 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:47:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:47:36 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:47:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:47:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:36 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:47:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:47:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:47:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:47:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:36 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:47:36 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:47:36 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:47:36 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 16:47:37 DEBUG query:56 - Query completed -2016-05-02 16:47:37 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 16:47:37 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2127003} -2016-05-02 16:47:37 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:244454} -2016-05-02 16:47:37 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1540788} -2016-05-02 16:47:37 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1855007}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:47:37 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1855007} -2016-05-02 16:47:37 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:47:37 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1855006} -2016-05-02 16:47:37 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:47:37 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 16:47:37 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 16:47:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:47:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:47:37 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 16:47:37 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 16:47:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:37 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:47:37 DEBUG ServiceEngine:193 - get() - start -2016-05-02 16:47:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:47:37 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:47:37 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:47:37 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:47:37 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:47:37 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 16:47:37 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 16:47:37 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:47:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:47:37 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:47:37 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:47:37 DEBUG Operation:173 - get(String) - start -2016-05-02 16:47:37 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:47:37 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:47:37 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:47:37 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:47:37 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:37 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:37 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:37 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7eeaa766, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@51882120, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4036e5b1, socketFactory=javax.net.DefaultSocketFactory@5421e866, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:47:37 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:47:37 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:47:37 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1855008}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:244455}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1476516, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1395670, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:37 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:47:37 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:37 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:37 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:37 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2127004}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1143920, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:37 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1540789}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1240311, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 16:47:37 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1855009}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855009}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG command:56 - Command execution completed -2016-05-02 16:47:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855009}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG command:56 - Command execution completed -2016-05-02 16:47:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855009}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG command:56 - Command execution completed -2016-05-02 16:47:37 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 16:47:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855009}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG command:56 - Command execution completed -2016-05-02 16:47:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855009}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG command:56 - Command execution completed -2016-05-02 16:47:37 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:47:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855009}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG command:56 - Command execution completed -2016-05-02 16:47:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855009}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG command:56 - Command execution completed -2016-05-02 16:47:37 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:47:37 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1855009}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG query:56 - Query completed -2016-05-02 16:47:37 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:47:37 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 16:47:37 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 16:47:37 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1855009}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG update:56 - Update completed -2016-05-02 16:47:37 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1855009}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG query:56 - Query completed -2016-05-02 16:47:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:47:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:47:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:47:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:47:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:47:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:47:37 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 16:47:37 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 16:47:37 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 16:47:37 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 16:47:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:47:37 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:47:37 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 16:47:37 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 16:47:37 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 16:47:37 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 16:47:37 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 16:47:37 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 16:47:37 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 16:47:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 16:47:37 DEBUG BucketCoding:42 - coding name done -2016-05-02 16:47:37 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 16:47:37 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 16:47:37 DEBUG MongoIO:77 - open mongo connection -2016-05-02 16:47:37 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 16:47:37 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:37 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:37 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:37 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7eeaa766, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@51882120, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4036e5b1, socketFactory=javax.net.DefaultSocketFactory@5421e866, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 16:47:37 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 16:47:37 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 16:47:37 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:244456}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1242026, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:37 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 16:47:37 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:37 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 16:47:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:37 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2127005}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=875219, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:37 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1855010}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1239275, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:37 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 16:47:37 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1540790}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1384688, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 16:47:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:47:37 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1855011}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855011}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG command:56 - Command execution completed -2016-05-02 16:47:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855011}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG command:56 - Command execution completed -2016-05-02 16:47:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855011}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG command:56 - Command execution completed -2016-05-02 16:47:37 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:47:37 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:47:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855011}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG command:56 - Command execution completed -2016-05-02 16:47:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855011}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG command:56 - Command execution completed -2016-05-02 16:47:37 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:47:37 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1855011}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:37 DEBUG query:56 - Query completed -2016-05-02 16:47:37 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 16:47:37 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2127005} -2016-05-02 16:47:37 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:244456} -2016-05-02 16:47:37 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1855011}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:47:37 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1855011} -2016-05-02 16:47:37 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1855010} -2016-05-02 16:47:37 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1540790} -2016-05-02 16:47:37 INFO MongoIO:508 - Mongo has been closed -2016-05-02 16:47:37 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 16:47:37 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:47:37 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:47:37 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:47:37 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 16:47:37 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 16:47:37 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:47:37 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 16:47:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:47:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 16:47:47 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 16:47:47 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:47:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 16:47:47 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:47:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:47:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:47:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:47:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:47:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:47:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:47:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 16:47:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:47:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:47:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:47:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:48:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:48:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:48:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:48:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:48:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:48:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:48:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:48:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:48:17 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:48:17 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:48:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:48:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 16:48:17 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:48:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 16:48:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:48:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 16:48:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:48:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:48:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 16:48:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 16:48:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:48:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 16:48:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:48:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 16:48:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:48:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:48:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 16:48:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 16:48:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:48:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:48:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:48:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:48:47 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:48:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:48:47 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:48:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:48:47 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:48:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:48:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:48:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:48:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:48:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:48:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:48:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:48:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:48:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:48:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:48:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:49:06 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:49:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:49:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:49:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:49:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 16:49:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:49:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 16:49:17 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:49:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 16:49:17 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:49:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 16:49:17 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:49:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 16:49:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:49:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 16:49:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:49:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 16:49:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:49:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 16:49:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:49:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:49:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:49:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:49:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:49:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:49:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:47 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:49:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:47 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:49:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:47 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:49:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:49:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:49:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:49:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:49:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:49:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:49:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:50:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:50:01 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:50:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 16:50:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:50:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 16:50:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:50:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 16:50:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:50:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 16:50:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 16:50:08 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2127004} -2016-05-02 16:50:08 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:244455} -2016-05-02 16:50:08 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1540789} -2016-05-02 16:50:08 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1855009}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 16:50:08 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1855009} -2016-05-02 16:50:08 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1855008} -2016-05-02 16:50:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:50:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:50:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:50:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:50:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:50:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:50:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:50:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:50:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:50:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:50:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:50:35 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:50:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:50:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:50:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:50:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:50:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:50:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:50:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:50:35 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 16:50:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 16:50:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:50:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:50:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:50:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:50:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:50:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:50:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:50:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:50:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:50:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:50:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:50:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:50:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:50:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:50:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:50:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:50:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:50:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:50:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:50:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:50:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 16:50:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 16:50:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 16:50:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 16:50:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 16:50:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 16:50:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:50:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:50:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:50:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:50:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 16:50:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 16:50:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 16:50:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:50:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 16:50:35 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 16:50:35 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 16:50:35 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 16:50:35 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 16:50:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:50:35 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 16:50:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 16:50:36 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 16:50:36 INFO WorkspaceExplorerServiceImpl:142 - end time - 183 msc 0 sec -2016-05-02 16:50:36 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 16:50:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:50:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:51:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 16:51:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 16:52:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:52:46 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:53:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:53:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:54:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:54:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:55:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 16:55:31 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 16:56:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:56:26 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 16:57:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 16:57:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 16:58:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 16:58:16 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 16:59:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 16:59:11 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:00:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:00:06 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:01:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:01:01 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:01:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:01:56 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:02:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:02:51 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:03:46 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 17:03:46 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 17:03:46 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 17:03:46 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:03:46 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:03:46 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-02 17:03:46 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:03:46 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@269142a2 -2016-05-02 17:03:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-02 17:03:46 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:03:46 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:03:46 DEBUG TemplateModel:83 - 2016-05-02 17:03:46, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:03:46 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:03:46 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 17:03:48 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:03:48 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:03:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:03:48 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:03:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:03:48 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:03:48 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:03:48 DEBUG TemplateModel:83 - 2016-05-02 17:03:48, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:03:48 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:03:48 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:03:49 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 142 ms -2016-05-02 17:03:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 17:03:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 17:03:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 17:03:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 17:03:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 17:03:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 17:03:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 17:03:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 17:03:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 17:03:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 17:03:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 17:03:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 17:03:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 17:03:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 17:03:49 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 17:03:49 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:03:49 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:03:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@5ea2ad27 -2016-05-02 17:03:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@68133151 -2016-05-02 17:03:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@3ab64d4d -2016-05-02 17:03:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@7bf6073b -2016-05-02 17:03:49 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 92 ms -2016-05-02 17:03:50 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 17:03:50 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 17:03:50 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 17:03:50 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 17:03:50 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 17:03:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:03:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:03:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 17:03:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-02 17:03:50 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 17:03:50 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:03:50 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 17:03:50 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:03:51 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:03:51 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:03:51 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:03:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:03:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:03:51 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:03:51 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 17:03:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:03:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:03:51 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 17:03:51 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 17:03:51 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 17:03:51 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 17:03:51 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 17:03:51 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 17:03:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 17:03:51 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:03:51 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 17:03:51 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:03:51 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-02 17:03:51 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 17:03:51 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 17:03:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:03:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:03:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:03:51 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 17:03:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:03:51 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 17:03:51 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:03:52 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:03:52 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 17:03:52 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:03:52 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:03:52 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 17:03:52 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 17:03:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:03:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:03:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:03:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:03:52 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:03:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 17:03:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:03:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:03:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:03:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:03:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:03:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:03:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:03:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:03:53 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:03:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 17:03:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:03:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:03:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:03:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:03:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:03:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:03:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:03:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:03:53 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:03:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 17:03:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:03:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:03:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:03:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:03:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:03:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:03:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:03:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:03:53 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:03:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 17:03:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:03:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:03:54 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:03:54 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:03:54 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:03:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-02 17:03:54 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-02 17:03:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-02 17:03:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:03:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:03:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:03:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:03:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:03:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:03:54 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 17:03:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:03:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:03:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:03:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:03:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:03:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:03:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:03:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:03:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:03:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:03:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:03:54 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 17:03:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:03:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:03:54 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 17:03:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:03:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:03:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:03:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:03:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:03:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:03:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:03:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:03:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:03:54 INFO WorkspaceExplorerServiceImpl:188 - end time - 154 msc 0 sec -2016-05-02 17:03:54 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 17:03:54 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 17:03:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:03:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:03:54 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 17:03:54 INFO WorkspaceExplorerServiceImpl:188 - end time - 140 msc 0 sec -2016-05-02 17:03:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:03:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:03:54 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:03:54 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:03:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-05-02 17:03:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:03:54 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:03:54 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 17:03:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-02 17:03:54 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 17:03:54 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 17:03:54 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 17:03:54 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 17:03:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:03:54 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 17:03:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:03:54 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:03:54 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:03:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 17:03:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:03:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:03:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:03:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:03:55 INFO WorkspaceExplorerServiceImpl:188 - end time - 1437 msc 1 sec -2016-05-02 17:03:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:03:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:03:58 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:03:58 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 17:03:58 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:03:58 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:03:59 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 17:03:59 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 17:03:59 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 17:03:59 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 17:03:59 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 17:03:59 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 17:03:59 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:03:59 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 17:03:59 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 17:03:59 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 17:03:59 DEBUG WPS2SM:204 - Schema: null -2016-05-02 17:03:59 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 17:03:59 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:03:59 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 17:03:59 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 17:03:59 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 17:03:59 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 17:03:59 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 17:03:59 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 17:03:59 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 17:03:59 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 17:03:59 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:03:59 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 17:03:59 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 17:03:59 DEBUG WPS2SM:92 - WPS type: -2016-05-02 17:03:59 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 17:03:59 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 17:03:59 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:03:59 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 17:03:59 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 17:03:59 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 17:03:59 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 17:03:59 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 17:03:59 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 17:03:59 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 17:03:59 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 17:03:59 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:03:59 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 17:03:59 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 17:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-02 17:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-02 17:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-02 17:03:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:03:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:03:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:03:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:03:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:03:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:03:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:03:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:03:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:03:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:03:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:03:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:03:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:03:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-02 17:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-02 17:03:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:03:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:03:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:03:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:03:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:03:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:03:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:03:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:03:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:03:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:03:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:03:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:03:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:03:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:03:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:03:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:03:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:03:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:03:59 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:03:59 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:03:59 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:03:59 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:03:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:03:59 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:03:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:03:59 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:03:59 INFO WorkspaceExplorerServiceImpl:142 - end time - 245 msc 0 sec -2016-05-02 17:03:59 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:04:07 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:04:07 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:04:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:04:07 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:04:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:04:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:04:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:04:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:04:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:04:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:04:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:04:07 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:04:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-02 17:04:07 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-02 17:04:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-02 17:04:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:04:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:04:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:04:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:04:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:04:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:04:07 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:04:07 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:04:07 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:04:07 DEBUG ServiceEngine:306 - get() - start -2016-05-02 17:04:07 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:04:07 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:04:07 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 17:04:07 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 17:04:07 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:04:07 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:04:07 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 17:04:07 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:04:07 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 17:04:07 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:04:07 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:04:07 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:04:07 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:04:07 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:04:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:04:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:04:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:04:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:04:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:04:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:04:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:04:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:04:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:04:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:04:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:04:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:04:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:04:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:04:07 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:04:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:04:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:04:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:04:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:04:07 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:04:07 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:04:07 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:07 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:04:07 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:04:07 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:07 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:07 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@1de67611, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7b8e8aa9, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4b319c9e, socketFactory=javax.net.DefaultSocketFactory@26216fa3, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:04:07 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:04:07 INFO WorkspaceExplorerServiceImpl:188 - end time - 84 msc 0 sec -2016-05-02 17:04:07 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:04:07 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:04:07 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:04:07 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 17:04:07 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1855195}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:07 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:244631}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:04:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:04:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2108964, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:07 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:04:07 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=3764966, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:07 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:07 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:07 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2127180}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:04:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:04:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=956489, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:07 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1540965}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:04:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:04:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2767715, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}] -2016-05-02 17:04:07 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1855196}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855196}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:07 DEBUG command:56 - Command execution completed -2016-05-02 17:04:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855196}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:07 DEBUG command:56 - Command execution completed -2016-05-02 17:04:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855196}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:07 DEBUG command:56 - Command execution completed -2016-05-02 17:04:07 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:04:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855196}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:07 DEBUG command:56 - Command execution completed -2016-05-02 17:04:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855196}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:07 DEBUG command:56 - Command execution completed -2016-05-02 17:04:07 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1855196}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:08 DEBUG query:56 - Query completed -2016-05-02 17:04:08 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 17:04:08 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2127180} -2016-05-02 17:04:08 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1855196}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:04:08 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1540965} -2016-05-02 17:04:08 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:244631} -2016-05-02 17:04:08 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1855196} -2016-05-02 17:04:08 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1855195} -2016-05-02 17:04:08 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:04:08 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:04:08 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:04:08 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 17:04:08 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:04:08 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:04:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-02 17:04:08 DEBUG ASLSession:458 - Getting security token: null in thread 37 -2016-05-02 17:04:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 37 -2016-05-02 17:04:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:04:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:04:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:04:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:04:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:04:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:04:08 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:04:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:04:08 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:04:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:04:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:04:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:04:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:04:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:04:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:04:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:04:08 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:04:08 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:04:08 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:04:09 DEBUG ServiceEngine:306 - get() - start -2016-05-02 17:04:09 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:04:09 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:04:09 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 17:04:09 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 17:04:09 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:04:09 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:04:09 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 17:04:09 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:04:09 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:04:09 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:04:09 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:04:09 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:04:09 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:04:09 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:04:09 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:04:09 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:09 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:09 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:09 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@1de67611, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7b8e8aa9, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4b319c9e, socketFactory=javax.net.DefaultSocketFactory@26216fa3, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:04:09 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:04:09 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:04:09 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:244632}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1855197}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1458727, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:09 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:04:09 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:09 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:09 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1690856, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:09 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:09 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:2127181}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=970114, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:04:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:04:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:04:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:04:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:04:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:04:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:04:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:04:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:04:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:04:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:04:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:04:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:04:09 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:1540966}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:04:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:04:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:04:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:04:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:04:09 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=4240116, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.2 ms, state=CONNECTED}] -2016-05-02 17:04:09 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:04:09 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:04:09 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:04:09 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:04:09 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1855198}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855198}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 DEBUG command:56 - Command execution completed -2016-05-02 17:04:09 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855198}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 DEBUG command:56 - Command execution completed -2016-05-02 17:04:09 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855198}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 DEBUG command:56 - Command execution completed -2016-05-02 17:04:09 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:04:09 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855198}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 INFO WorkspaceExplorerServiceImpl:188 - end time - 53 msc 0 sec -2016-05-02 17:04:09 DEBUG command:56 - Command execution completed -2016-05-02 17:04:09 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855198}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 DEBUG command:56 - Command execution completed -2016-05-02 17:04:09 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1855198}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:04:09 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:04:09 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:04:09 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:04:09 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 17:04:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:04:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.2 ms, state=CONNECTED}] -2016-05-02 17:04:09 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:04:09 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:04:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:04:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:04:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:04:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:04:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:04:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:04:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:04:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:04:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:04:09 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:04:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:04:09 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:04:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:04:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:04:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:04:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:04:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:04:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:04:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:04:09 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:04:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:04:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:04:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:04:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:04:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:04:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:04:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:04:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:04:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:04:09 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:04:09 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:04:09 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:04:10 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 17:04:10 DEBUG query:56 - Query completed -2016-05-02 17:04:10 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 17:04:10 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:2127181} -2016-05-02 17:04:10 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:244632} -2016-05-02 17:04:10 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1855198}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:04:10 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:1540966} -2016-05-02 17:04:10 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1855198} -2016-05-02 17:04:10 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1855197} -2016-05-02 17:04:10 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:04:10 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:04:10 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:04:10 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 17:04:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:04:10 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:04:10 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:04:10 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 17:04:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:04:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:04:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:04:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:04:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:04:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:04:10 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:04:10 DEBUG ServiceEngine:193 - get() - start -2016-05-02 17:04:10 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:04:10 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:04:10 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 17:04:10 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:04:10 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:04:10 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:04:10 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 17:04:10 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:04:10 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:04:10 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:04:10 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:04:10 DEBUG Operation:173 - get(String) - start -2016-05-02 17:04:10 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:04:10 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:04:10 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:04:10 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:04:10 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:10 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:10 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:10 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@1de67611, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7b8e8aa9, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4b319c9e, socketFactory=javax.net.DefaultSocketFactory@26216fa3, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:04:10 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:04:10 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:04:10 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:244633}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1855199}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1029277, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:10 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:04:10 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1816907, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:10 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:10 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:10 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2127182}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=926560, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:10 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1540967}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1445915, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:10 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 17:04:10 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1855200}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855200}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG command:56 - Command execution completed -2016-05-02 17:04:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855200}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG command:56 - Command execution completed -2016-05-02 17:04:10 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855200}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG command:56 - Command execution completed -2016-05-02 17:04:10 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 17:04:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855200}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG command:56 - Command execution completed -2016-05-02 17:04:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855200}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG command:56 - Command execution completed -2016-05-02 17:04:10 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:04:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855200}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG command:56 - Command execution completed -2016-05-02 17:04:10 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855200}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG command:56 - Command execution completed -2016-05-02 17:04:10 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:04:10 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1855200}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG query:56 - Query completed -2016-05-02 17:04:10 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 17:04:10 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 17:04:10 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 17:04:10 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1855200}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG update:56 - Update completed -2016-05-02 17:04:10 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1855200}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:10 DEBUG query:56 - Query completed -2016-05-02 17:04:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:04:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:04:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:04:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:04:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:04:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:04:11 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:04:11 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 17:04:11 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 17:04:11 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 17:04:11 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:04:11 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:04:11 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 17:04:11 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:04:11 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 17:04:11 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:04:11 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 17:04:11 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 17:04:11 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:04:11 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:04:11 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:04:11 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:04:11 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:04:11 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:04:11 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:04:11 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:11 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:11 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:11 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@1de67611, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@7b8e8aa9, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4b319c9e, socketFactory=javax.net.DefaultSocketFactory@26216fa3, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:04:11 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:04:11 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:04:11 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1855201}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1941211, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:11 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:244634}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:04:11 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:11 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:04:11 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:11 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1436646, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:11 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2127183}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=822558, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:04:11 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1540968}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1278965, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:04:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:04:11 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1855202}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855202}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 DEBUG command:56 - Command execution completed -2016-05-02 17:04:11 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855202}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 DEBUG command:56 - Command execution completed -2016-05-02 17:04:11 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855202}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 DEBUG command:56 - Command execution completed -2016-05-02 17:04:11 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:04:11 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:04:11 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855202}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 DEBUG command:56 - Command execution completed -2016-05-02 17:04:11 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855202}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 DEBUG command:56 - Command execution completed -2016-05-02 17:04:11 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:04:11 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1855202}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:04:11 DEBUG query:56 - Query completed -2016-05-02 17:04:11 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 17:04:11 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2127183} -2016-05-02 17:04:11 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:244634} -2016-05-02 17:04:11 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1540968} -2016-05-02 17:04:11 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1855202}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:04:11 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1855202} -2016-05-02 17:04:11 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1855201} -2016-05-02 17:04:11 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:04:11 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:04:11 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:04:11 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:04:11 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:04:11 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 17:04:11 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:04:11 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 17:04:11 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 17:04:11 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:244633} -2016-05-02 17:04:11 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1855200}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:04:11 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1855200} -2016-05-02 17:04:11 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2127182} -2016-05-02 17:04:11 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1540967} -2016-05-02 17:04:11 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1855199} -2016-05-02 17:04:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:04:42 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:05:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:05:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:06:47 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 17:06:47 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 17:06:47 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 17:06:47 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:06:47 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:06:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:06:47 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:06:47 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@1e20b0f -2016-05-02 17:06:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:06:47 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:06:47 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:06:47 DEBUG TemplateModel:83 - 2016-05-02 17:06:47, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:06:47 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:06:47 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 17:06:49 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:06:49 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:06:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:06:49 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:06:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:06:49 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:06:49 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:06:49 DEBUG TemplateModel:83 - 2016-05-02 17:06:49, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:06:49 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:06:49 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:06:49 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 198 ms -2016-05-02 17:06:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 17:06:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 17:06:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 17:06:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 17:06:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 17:06:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 17:06:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 17:06:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 17:06:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 17:06:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 17:06:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 17:06:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 17:06:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 17:06:49 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 17:06:49 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 17:06:49 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:06:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:06:50 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@31184a62 -2016-05-02 17:06:50 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@8236567 -2016-05-02 17:06:50 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@5ed271e0 -2016-05-02 17:06:50 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@3a905060 -2016-05-02 17:06:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 159 ms -2016-05-02 17:06:50 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 17:06:50 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 17:06:50 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 17:06:50 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 17:06:50 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 17:06:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:06:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:06:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 17:06:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 18 ms -2016-05-02 17:06:50 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 17:06:50 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:06:50 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 17:06:50 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:06:50 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:06:50 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:06:50 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:06:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:06:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:06:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:06:50 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 17:06:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:06:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:06:50 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 17:06:50 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 17:06:50 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 17:06:50 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 17:06:50 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 17:06:50 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 17:06:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:06:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:06:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 17:06:51 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 23 ms -2016-05-02 17:06:51 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 17:06:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:06:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:06:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:06:51 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 17:06:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:51 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 17:06:51 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:06:51 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 17:06:51 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:06:51 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:06:51 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 17:06:51 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:06:51 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:06:51 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 17:06:51 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 17:06:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:06:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:51 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:06:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 17:06:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:06:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:06:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:06:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:06:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:06:52 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:06:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 17:06:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:06:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:06:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:06:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:06:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:06:52 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:06:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 17:06:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:06:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:06:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:06:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:06:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:06:52 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:06:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 17:06:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:54 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:06:54 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:06:54 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:06:54 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:06:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:06:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:06:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:06:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:06:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:06:54 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 17:06:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:06:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:06:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:06:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:06:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:06:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:06:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:06:54 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 17:06:54 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 17:06:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:54 INFO WorkspaceExplorerServiceImpl:188 - end time - 139 msc 0 sec -2016-05-02 17:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:06:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:06:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:06:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:06:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:06:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:06:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:06:54 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 17:06:54 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 17:06:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:54 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 17:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 17:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:06:54 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:06:54 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:06:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 34 ms -2016-05-02 17:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 17:06:54 INFO WorkspaceExplorerServiceImpl:188 - end time - 176 msc 0 sec -2016-05-02 17:06:54 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:06:54 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 17:06:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-02 17:06:54 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 17:06:54 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 17:06:54 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 17:06:54 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 17:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 17:06:54 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 17:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 17:06:54 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:06:54 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:06:54 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 30 ms -2016-05-02 17:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 17:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 17:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 17:06:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:06:54 INFO WorkspaceExplorerServiceImpl:188 - end time - 418 msc 0 sec -2016-05-02 17:06:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:06:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:06:58 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:06:58 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 17:06:58 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:06:58 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:06:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:06:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:06:58 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:06:58 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 17:06:58 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:06:58 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:06:58 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 17:06:58 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 17:06:58 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 17:06:58 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 17:06:58 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 17:06:58 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 17:06:58 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:06:58 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 17:06:58 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 17:06:58 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 17:06:58 DEBUG WPS2SM:204 - Schema: null -2016-05-02 17:06:58 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 17:06:58 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:06:58 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 17:06:58 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 17:06:58 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 17:06:58 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 17:06:58 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 17:06:58 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 17:06:58 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 17:06:58 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 17:06:58 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:06:58 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 17:06:58 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 17:06:58 DEBUG WPS2SM:92 - WPS type: -2016-05-02 17:06:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 17:06:58 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 17:06:58 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:06:58 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 17:06:58 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 17:06:58 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 17:06:58 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 17:06:58 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 17:06:58 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 17:06:58 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 17:06:58 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 17:06:58 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:06:58 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 17:06:58 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 17:06:59 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 17:06:59 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 17:06:59 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 17:06:59 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 17:06:59 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 17:06:59 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 17:06:59 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:06:59 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 17:06:59 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 17:06:59 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 17:06:59 DEBUG WPS2SM:204 - Schema: null -2016-05-02 17:06:59 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 17:06:59 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:06:59 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 17:06:59 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 17:06:59 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 17:06:59 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 17:06:59 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 17:06:59 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 17:06:59 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 17:06:59 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 17:06:59 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:06:59 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 17:06:59 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 17:06:59 DEBUG WPS2SM:92 - WPS type: -2016-05-02 17:06:59 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 17:06:59 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 17:06:59 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:06:59 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 17:06:59 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 17:06:59 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 17:06:59 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 17:06:59 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 17:06:59 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 17:06:59 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 17:06:59 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 17:06:59 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:06:59 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 17:06:59 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:06:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:06:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:06:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:06:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:06:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:06:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:06:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:06:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:06:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:06:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:06:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:06:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:06:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:06:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:06:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:06:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:06:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:06:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:06:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:06:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:06:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:06:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:06:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:06:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:06:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:06:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:06:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:06:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:06:59 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:06:59 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:06:59 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:06:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:06:59 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:06:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:06:59 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:06:59 INFO WorkspaceExplorerServiceImpl:142 - end time - 299 msc 0 sec -2016-05-02 17:06:59 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:06:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:06:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:06:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:06:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:06:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:06:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:06:59 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:06:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:06:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:06:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:06:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:06:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:06:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:06:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:06:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:06:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:06:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:06:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:06:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:06:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:06:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:06:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:06:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:06:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:06:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:06:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:06:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:06:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:06:59 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:06:59 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:06:59 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:06:59 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:06:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:06:59 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:06:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:06:59 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:06:59 INFO WorkspaceExplorerServiceImpl:142 - end time - 219 msc 0 sec -2016-05-02 17:06:59 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:07:05 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:07:05 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:07:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:07:05 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:07:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:07:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:07:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:07:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:07:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:07:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:07:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:07:05 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:07:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:07:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:07:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:07:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:07:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:07:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:07:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:07:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:07:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:07:05 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:07:05 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:07:06 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:07:06 DEBUG ServiceEngine:306 - get() - start -2016-05-02 17:07:06 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:07:06 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:07:06 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 17:07:06 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 17:07:06 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:07:06 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:07:06 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 17:07:06 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:07:06 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 17:07:06 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:07:06 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:07:06 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:07:06 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:07:06 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:07:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:07:06 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:07:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:07:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:07:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:07:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:07:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:07:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:07:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:07:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:07:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:07:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:07:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:07:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:07:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:07:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:07:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:07:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:07:06 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:07:06 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:07:06 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:07:06 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:06 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:07:06 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:07:06 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:06 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:06 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e1d329b6, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@35487673, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@28589359, socketFactory=javax.net.DefaultSocketFactory@4f31ccc0, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:07:06 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:07:06 INFO WorkspaceExplorerServiceImpl:188 - end time - 60 msc 0 sec -2016-05-02 17:07:06 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:07:06 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:07:06 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:07:06 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 17:07:06 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1855233}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:06 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:06 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:244665}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:07:06 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:07:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1421502, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:06 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:07:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1429642, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:06 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:06 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:06 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:06 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2127214}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:07:06 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:07:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1189272, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:06 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1855234}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:06 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1540999}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:07:06 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:07:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=6741523, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.7 ms, state=CONNECTED}] -2016-05-02 17:07:06 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855234}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:06 DEBUG command:56 - Command execution completed -2016-05-02 17:07:06 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855234}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:06 DEBUG command:56 - Command execution completed -2016-05-02 17:07:06 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855234}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:06 DEBUG command:56 - Command execution completed -2016-05-02 17:07:06 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:07:06 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855234}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:06 DEBUG command:56 - Command execution completed -2016-05-02 17:07:06 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855234}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:06 DEBUG command:56 - Command execution completed -2016-05-02 17:07:06 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1855234}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:07:07 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:07:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:07:07 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:07:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:07:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:07:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:07:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:07:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:07:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:07:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:07:07 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:07:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:07:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:07:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:07:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:07:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:07:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:07:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:07:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:07:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:07:07 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:07:07 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:07:07 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:07:07 DEBUG ServiceEngine:306 - get() - start -2016-05-02 17:07:07 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:07:07 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:07:07 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 17:07:07 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 17:07:07 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:07:07 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:07:07 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 17:07:07 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:07:07 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:07:07 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:07:07 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:07:07 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:07:07 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:07:07 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:07:07 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:07:07 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:07 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:07 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:07 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e1d329b6, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@35487673, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@28589359, socketFactory=javax.net.DefaultSocketFactory@4f31ccc0, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:07:07 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:07:07 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:07:07 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:244666}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1509330, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:07 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:07:07 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:07 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:07 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1855235}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1478055, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:07 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:07 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2127215}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1357715, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:07:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:07:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:07:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:07:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:07:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:07:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:07:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:07:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:07:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:07:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:07:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:07:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:07:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:07:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:07:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:07:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:07:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:07:07 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:07:07 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:07:07 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1541000}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1815170, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:07:07 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1855236}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855236}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 DEBUG command:56 - Command execution completed -2016-05-02 17:07:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855236}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 DEBUG command:56 - Command execution completed -2016-05-02 17:07:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855236}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 DEBUG command:56 - Command execution completed -2016-05-02 17:07:07 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:07:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855236}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 DEBUG command:56 - Command execution completed -2016-05-02 17:07:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855236}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 DEBUG command:56 - Command execution completed -2016-05-02 17:07:07 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1855236}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:07:07 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:07:07 DEBUG query:56 - Query completed -2016-05-02 17:07:07 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 17:07:07 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2127214} -2016-05-02 17:07:07 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:244665} -2016-05-02 17:07:07 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1540999} -2016-05-02 17:07:07 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1855234}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:07:07 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1855234} -2016-05-02 17:07:07 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1855233} -2016-05-02 17:07:07 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:07:07 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:07:07 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:07:07 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 17:07:07 INFO WorkspaceExplorerServiceImpl:188 - end time - 57 msc 0 sec -2016-05-02 17:07:07 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:07:07 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:07:07 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:07:07 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:07:07 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 17:07:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:07:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:07:07 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:07:07 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:07:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:07:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:07:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:07:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:07:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:07:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:07:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:07:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:07:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:07:07 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:07:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:07:07 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:07:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:07:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:07:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:07:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:07:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:07:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:07:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:07:07 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:07:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:07:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:07:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:07:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:07:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:07:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:07:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:07:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:07:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:07:07 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:07:07 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:07:07 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:07:07 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 17:07:08 DEBUG query:56 - Query completed -2016-05-02 17:07:08 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 17:07:08 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2127215} -2016-05-02 17:07:08 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1855236}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:07:08 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1855236} -2016-05-02 17:07:08 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1541000} -2016-05-02 17:07:08 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1855235} -2016-05-02 17:07:08 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:244666} -2016-05-02 17:07:08 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:07:08 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:07:08 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:07:08 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 17:07:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:07:08 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:07:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:07:08 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 17:07:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:07:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:07:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:07:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:07:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:07:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:07:08 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:07:08 DEBUG ServiceEngine:193 - get() - start -2016-05-02 17:07:08 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:07:08 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:07:08 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 17:07:08 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:07:08 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:07:08 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:07:08 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 17:07:08 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:07:08 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:07:08 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:07:08 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:07:08 DEBUG Operation:173 - get(String) - start -2016-05-02 17:07:08 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:07:08 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:07:08 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:07:08 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:07:08 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:08 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:08 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:08 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e1d329b6, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@35487673, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@28589359, socketFactory=javax.net.DefaultSocketFactory@4f31ccc0, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:07:08 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:07:08 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:07:08 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1855237}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:244667}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1076226, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:08 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:07:08 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1459842, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:08 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:08 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:08 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2127216}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1516379, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:08 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1541001}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1258695, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:07:08 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1855238}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855238}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG command:56 - Command execution completed -2016-05-02 17:07:08 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855238}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG command:56 - Command execution completed -2016-05-02 17:07:08 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855238}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG command:56 - Command execution completed -2016-05-02 17:07:08 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 17:07:08 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855238}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG command:56 - Command execution completed -2016-05-02 17:07:08 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855238}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG command:56 - Command execution completed -2016-05-02 17:07:08 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:07:08 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855238}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG command:56 - Command execution completed -2016-05-02 17:07:08 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855238}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG command:56 - Command execution completed -2016-05-02 17:07:08 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:07:08 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1855238}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG query:56 - Query completed -2016-05-02 17:07:08 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 17:07:08 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 17:07:08 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 17:07:08 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1855238}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG update:56 - Update completed -2016-05-02 17:07:08 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1855238}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG query:56 - Query completed -2016-05-02 17:07:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:07:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:07:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:07:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:07:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:07:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:07:08 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:07:08 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 17:07:08 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 17:07:08 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 17:07:08 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:07:08 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:07:08 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 17:07:08 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:07:08 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 17:07:08 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:07:08 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 17:07:08 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 17:07:08 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:07:08 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:07:08 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:07:08 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:07:08 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:07:08 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:07:08 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:07:08 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:08 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:08 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:08 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@e1d329b6, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@35487673, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@28589359, socketFactory=javax.net.DefaultSocketFactory@4f31ccc0, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:07:08 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:07:08 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:07:08 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:244668}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1389898, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:08 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:07:08 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:08 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:07:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:08 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2127217}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1001342, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:08 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1855239}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1338824, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:08 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:07:08 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1541002}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:07:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2470106, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:07:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 17:07:09 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1855240}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:09 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855240}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:09 DEBUG command:56 - Command execution completed -2016-05-02 17:07:09 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855240}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:09 DEBUG command:56 - Command execution completed -2016-05-02 17:07:09 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855240}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:09 DEBUG command:56 - Command execution completed -2016-05-02 17:07:09 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:07:09 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:07:09 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855240}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:09 DEBUG command:56 - Command execution completed -2016-05-02 17:07:09 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855240}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:09 DEBUG command:56 - Command execution completed -2016-05-02 17:07:09 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:07:09 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1855240}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:07:09 DEBUG query:56 - Query completed -2016-05-02 17:07:09 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 17:07:09 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2127217} -2016-05-02 17:07:09 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:244668} -2016-05-02 17:07:09 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1855240}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:07:09 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1541002} -2016-05-02 17:07:09 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1855240} -2016-05-02 17:07:09 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1855239} -2016-05-02 17:07:09 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:07:09 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:07:09 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:07:09 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:07:09 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:07:09 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 17:07:09 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:07:09 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 17:07:09 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 17:07:14 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:244667} -2016-05-02 17:07:14 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1855238}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:07:14 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1855238} -2016-05-02 17:07:14 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2127216} -2016-05-02 17:07:14 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1541001} -2016-05-02 17:07:14 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1855237} -2016-05-02 17:07:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:07:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:09:32 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 17:09:32 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 17:09:32 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 17:09:32 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:09:32 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:09:32 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:09:32 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:09:32 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@9390d2d -2016-05-02 17:09:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:09:32 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:09:32 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:09:32 DEBUG TemplateModel:83 - 2016-05-02 17:09:32, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:09:32 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:09:32 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 17:09:34 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:09:34 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:09:34 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:09:34 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:09:34 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:09:34 DEBUG TemplateModel:83 - 2016-05-02 17:09:34, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:09:34 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:09:34 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:09:34 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 164 ms -2016-05-02 17:09:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 17:09:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 17:09:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 17:09:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 17:09:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 17:09:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 17:09:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 17:09:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 17:09:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 17:09:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 17:09:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 17:09:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 17:09:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 17:09:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 17:09:34 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 17:09:34 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:09:34 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:09:34 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@35d1a2a0 -2016-05-02 17:09:34 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@376645b8 -2016-05-02 17:09:34 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@45ba41c6 -2016-05-02 17:09:34 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@15c9153c -2016-05-02 17:09:35 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 182 ms -2016-05-02 17:09:35 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 17:09:35 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 17:09:35 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 17:09:35 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 17:09:35 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 17:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:09:35 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:09:35 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 17:09:35 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 28 ms -2016-05-02 17:09:35 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 17:09:35 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:09:35 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 17:09:35 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:09:35 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:09:35 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:09:35 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:09:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:09:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:09:35 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 17:09:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:09:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:09:35 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 17:09:35 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 17:09:35 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 17:09:35 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 17:09:35 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 17:09:35 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 17:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:09:35 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:09:35 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 17:09:35 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 25 ms -2016-05-02 17:09:36 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 17:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:09:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:09:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:09:36 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 17:09:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:09:36 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 17:09:36 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:09:36 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 17:09:36 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:09:36 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:09:36 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 17:09:36 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:09:36 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:09:36 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 17:09:36 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 17:09:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:09:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:09:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:09:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:09:36 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:09:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 17:09:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:09:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:09:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:09:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:09:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:09:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:09:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:09:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:09:38 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:09:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 17:09:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:09:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:09:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:09:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:09:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:09:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:09:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:09:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:09:38 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:09:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 17:09:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:09:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:09:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:09:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:09:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:09:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:09:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:09:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:09:38 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:09:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 17:09:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:09:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:09:38 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:09:38 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:09:38 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:09:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:09:38 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:09:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:09:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:09:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:09:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:09:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:09:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:09:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:09:38 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 17:09:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:09:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:09:39 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 17:09:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:09:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:09:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:09:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:09:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:09:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:09:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:09:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:09:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:09:39 INFO WorkspaceExplorerServiceImpl:188 - end time - 132 msc 0 sec -2016-05-02 17:09:39 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 17:09:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:09:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:09:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:09:39 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:09:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:09:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:09:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:09:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:09:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:09:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:09:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:09:39 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 17:09:39 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 17:09:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:09:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:09:39 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 17:09:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:09:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:09:39 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:09:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:09:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 21 ms -2016-05-02 17:09:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:09:39 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:09:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 17:09:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 23 ms -2016-05-02 17:09:39 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 17:09:39 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 17:09:39 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 17:09:39 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 17:09:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:09:39 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 17:09:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:09:39 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:09:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:09:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 22 ms -2016-05-02 17:09:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:09:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:09:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:09:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:09:39 INFO WorkspaceExplorerServiceImpl:188 - end time - 440 msc 0 sec -2016-05-02 17:09:40 INFO WorkspaceExplorerServiceImpl:188 - end time - 1134 msc 1 sec -2016-05-02 17:09:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:09:48 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:09:48 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:09:48 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 17:09:48 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:09:48 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:09:48 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 17:09:48 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 17:09:48 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 17:09:48 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 17:09:48 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 17:09:48 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 17:09:48 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:09:48 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 17:09:48 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 17:09:48 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 17:09:48 DEBUG WPS2SM:204 - Schema: null -2016-05-02 17:09:48 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 17:09:48 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:09:48 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 17:09:48 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 17:09:48 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 17:09:48 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 17:09:48 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 17:09:48 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 17:09:48 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 17:09:48 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 17:09:48 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:09:48 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 17:09:48 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 17:09:48 DEBUG WPS2SM:92 - WPS type: -2016-05-02 17:09:48 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 17:09:48 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 17:09:48 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:09:48 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 17:09:48 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 17:09:48 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 17:09:48 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 17:09:48 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 17:09:48 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 17:09:48 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 17:09:49 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 17:09:49 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:09:49 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 17:09:49 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 17:09:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:09:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:09:49 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:09:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:09:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:09:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:09:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:09:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:09:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:09:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:09:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:09:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:09:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:09:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:09:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:09:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:09:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:09:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:09:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:09:49 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:09:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:09:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:09:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:09:49 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:09:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:09:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:09:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:09:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:09:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:09:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:09:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:09:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:09:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:09:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:09:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:09:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:09:49 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:09:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:09:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:09:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:09:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:09:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:09:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:09:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:09:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:09:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:09:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:09:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:09:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:09:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:09:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:09:49 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:09:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:09:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:09:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:09:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:09:49 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:09:49 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:09:49 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:09:49 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:09:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:09:49 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:09:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:09:49 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:09:49 INFO WorkspaceExplorerServiceImpl:142 - end time - 228 msc 0 sec -2016-05-02 17:09:49 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:10:03 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:10:03 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:10:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:10:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:10:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:10:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:03 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:10:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:10:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:10:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:10:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:03 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:10:03 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:10:03 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:10:03 DEBUG ServiceEngine:306 - get() - start -2016-05-02 17:10:03 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:10:03 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:10:03 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 17:10:03 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 17:10:03 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:10:03 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:10:03 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 17:10:03 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:10:03 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 17:10:03 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:10:03 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:10:03 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:10:03 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:10:03 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:10:03 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:10:03 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:10:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:10:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:10:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:03 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:10:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:10:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:10:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:10:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:03 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:10:03 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:03 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:03 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ac452aad, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e494fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f19db04, socketFactory=javax.net.DefaultSocketFactory@4a79fbc4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:10:03 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:10:03 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:10:03 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:10:03 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:10:03 INFO WorkspaceExplorerServiceImpl:188 - end time - 69 msc 0 sec -2016-05-02 17:10:03 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:10:03 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:244699}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:10:03 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:10:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1552250, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:03 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:10:03 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 17:10:03 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:10:03 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:03 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:03 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2127247}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:10:03 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:10:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1019705, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:03 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1855271}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:03 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1389755, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:03 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:03 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1541031}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:10:03 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:10:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2719308, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 17:10:03 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1855272}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:03 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855272}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:03 DEBUG command:56 - Command execution completed -2016-05-02 17:10:03 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855272}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:03 DEBUG command:56 - Command execution completed -2016-05-02 17:10:03 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855272}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:03 DEBUG command:56 - Command execution completed -2016-05-02 17:10:03 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:10:03 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855272}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:03 DEBUG command:56 - Command execution completed -2016-05-02 17:10:03 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855272}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:03 DEBUG command:56 - Command execution completed -2016-05-02 17:10:03 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1855272}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 17:10:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 17:10:04 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:10:04 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:10:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:10:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:10:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:10:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:04 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:10:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:10:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:10:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:10:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:04 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:10:04 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:10:04 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:10:04 DEBUG ServiceEngine:306 - get() - start -2016-05-02 17:10:04 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:10:04 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:10:04 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 17:10:04 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 17:10:04 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:10:04 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:10:04 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 17:10:04 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:10:04 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:10:04 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:10:04 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:10:04 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:10:04 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:10:04 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:10:04 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:10:04 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:04 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:04 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:04 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ac452aad, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e494fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f19db04, socketFactory=javax.net.DefaultSocketFactory@4a79fbc4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:10:04 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:10:04 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:10:04 DEBUG query:56 - Query completed -2016-05-02 17:10:04 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 17:10:04 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2127247} -2016-05-02 17:10:04 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:244699} -2016-05-02 17:10:04 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1541031} -2016-05-02 17:10:04 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:1855273}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1855272}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:10:04 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1855272} -2016-05-02 17:10:04 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1855271} -2016-05-02 17:10:04 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:10:04 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:10:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=4212117, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:04 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:10:04 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 17:10:04 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:10:04 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:04 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:04 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:04 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:244700}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1488440, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:04 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2127248}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1494178, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:10:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:10:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:10:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:10:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:10:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:10:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:04 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:10:04 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:10:04 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1541032}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1596150, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 17:10:04 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1855274}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855274}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 DEBUG command:56 - Command execution completed -2016-05-02 17:10:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855274}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 DEBUG command:56 - Command execution completed -2016-05-02 17:10:04 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855274}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 DEBUG command:56 - Command execution completed -2016-05-02 17:10:04 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:10:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855274}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 DEBUG command:56 - Command execution completed -2016-05-02 17:10:04 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855274}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 DEBUG command:56 - Command execution completed -2016-05-02 17:10:04 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1855274}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:04 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:10:04 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:10:04 INFO WorkspaceExplorerServiceImpl:188 - end time - 61 msc 0 sec -2016-05-02 17:10:04 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:10:04 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:10:04 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:10:04 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:10:04 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 17:10:05 DEBUG query:56 - Query completed -2016-05-02 17:10:05 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 17:10:05 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2127248} -2016-05-02 17:10:05 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:244700} -2016-05-02 17:10:05 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1541032} -2016-05-02 17:10:05 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1855274}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:10:05 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1855274} -2016-05-02 17:10:05 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:1855273} -2016-05-02 17:10:05 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:10:05 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:10:05 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:10:05 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 17:10:05 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:10:05 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:10:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:10:05 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:10:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:10:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:05 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:10:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:10:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:10:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:10:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:05 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:10:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:10:05 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:10:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:10:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:05 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:10:05 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:10:05 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:10:05 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 17:10:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:10:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:10:06 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:10:06 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 17:10:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:06 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:10:06 DEBUG ServiceEngine:193 - get() - start -2016-05-02 17:10:06 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:10:06 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:10:06 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 17:10:06 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:10:06 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:10:06 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:10:06 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 17:10:06 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:10:06 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:10:06 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:10:06 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:10:06 DEBUG Operation:173 - get(String) - start -2016-05-02 17:10:06 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:10:06 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:10:06 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:10:06 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:10:06 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:06 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:06 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:06 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ac452aad, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e494fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f19db04, socketFactory=javax.net.DefaultSocketFactory@4a79fbc4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:10:06 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:10:06 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:10:06 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:244701}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:10:06 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:10:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=3598586, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:06 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:10:06 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:06 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:06 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2127250}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:10:06 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:10:06 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1855275}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:06 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=4045881, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=4.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1313221, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:06 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=4.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:06 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1541035}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:10:06 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:10:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1987278, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=4.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 17:10:07 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1855276}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855276}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG command:56 - Command execution completed -2016-05-02 17:10:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855276}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG command:56 - Command execution completed -2016-05-02 17:10:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855276}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG command:56 - Command execution completed -2016-05-02 17:10:07 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 17:10:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855276}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG command:56 - Command execution completed -2016-05-02 17:10:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855276}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG command:56 - Command execution completed -2016-05-02 17:10:07 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:10:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855276}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG command:56 - Command execution completed -2016-05-02 17:10:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855276}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG command:56 - Command execution completed -2016-05-02 17:10:07 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:10:07 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1855276}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG query:56 - Query completed -2016-05-02 17:10:07 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 17:10:07 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 17:10:07 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 17:10:07 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1855276}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG update:56 - Update completed -2016-05-02 17:10:07 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1855276}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG query:56 - Query completed -2016-05-02 17:10:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:07 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:10:07 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 17:10:07 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 17:10:07 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 17:10:07 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:10:07 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:10:07 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 17:10:07 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:10:07 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 17:10:07 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:10:07 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 17:10:07 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 17:10:07 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:10:07 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:10:07 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:10:07 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:10:07 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:10:07 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:10:07 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:10:07 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:07 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:07 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:07 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ac452aad, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e494fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f19db04, socketFactory=javax.net.DefaultSocketFactory@4a79fbc4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:10:07 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:10:07 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:10:07 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1855277}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=7158707, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:07 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:10:07 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:07 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:07 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:244702}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1243095, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:07 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2127251}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=887835, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:07 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1541036}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1475317, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=7.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:10:07 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1855278}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855278}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG command:56 - Command execution completed -2016-05-02 17:10:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855278}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG command:56 - Command execution completed -2016-05-02 17:10:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855278}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG command:56 - Command execution completed -2016-05-02 17:10:07 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:10:07 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:10:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855278}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG command:56 - Command execution completed -2016-05-02 17:10:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855278}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG command:56 - Command execution completed -2016-05-02 17:10:07 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:10:07 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1855278}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG query:56 - Query completed -2016-05-02 17:10:07 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 17:10:07 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2127251} -2016-05-02 17:10:07 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:244702} -2016-05-02 17:10:07 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1855278}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:10:07 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1541036} -2016-05-02 17:10:07 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1855278} -2016-05-02 17:10:07 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:10:07 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1855277} -2016-05-02 17:10:07 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:10:07 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:10:07 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:10:07 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:10:07 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 17:10:07 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:10:07 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 17:10:07 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 17:10:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=4.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 17:10:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:10:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 17:10:16 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 17:10:16 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:10:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 17:10:17 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:10:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 17:10:17 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:10:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 17:10:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:10:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:10:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:10:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:10:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:10:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:10:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:10:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:19 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:10:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:10:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:10:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:10:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:10:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:10:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:10:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:10:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:10:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:10:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:10:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:10:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:10:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:10:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:10:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:10:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:10:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:10:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:10:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:10:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:10:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:10:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:10:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:10:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:10:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:10:19 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:10:19 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:10:19 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:10:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:10:19 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:10:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:10:19 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:10:19 INFO WorkspaceExplorerServiceImpl:142 - end time - 188 msc 0 sec -2016-05-02 17:10:19 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:10:26 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2127250} -2016-05-02 17:10:26 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1855276}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:10:26 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1855276} -2016-05-02 17:10:26 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1541035} -2016-05-02 17:10:26 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:244701} -2016-05-02 17:10:26 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1855275} -2016-05-02 17:10:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:10:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:10:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:10:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:10:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:10:38 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 17:10:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:38 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:10:38 DEBUG ServiceEngine:193 - get() - start -2016-05-02 17:10:38 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:10:38 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:10:38 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 17:10:38 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:10:38 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:10:38 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:10:38 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 17:10:38 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:10:38 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:10:38 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:10:38 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:10:38 DEBUG Operation:173 - get(String) - start -2016-05-02 17:10:38 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:10:38 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:10:38 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:10:38 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:10:38 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:38 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:38 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:38 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ac452aad, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e494fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f19db04, socketFactory=javax.net.DefaultSocketFactory@4a79fbc4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:10:38 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:10:38 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:10:38 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1855284}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1002823, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:38 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:10:38 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:38 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:244708}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:38 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1248572, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:38 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2127257}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=789696, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:38 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1541042}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1421156, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 17:10:38 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1855285}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1855285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG command:56 - Command execution completed -2016-05-02 17:10:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1855285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG command:56 - Command execution completed -2016-05-02 17:10:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1855285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG command:56 - Command execution completed -2016-05-02 17:10:38 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 17:10:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1855285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG command:56 - Command execution completed -2016-05-02 17:10:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1855285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG command:56 - Command execution completed -2016-05-02 17:10:38 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:10:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1855285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG command:56 - Command execution completed -2016-05-02 17:10:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1855285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG command:56 - Command execution completed -2016-05-02 17:10:38 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:10:38 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1855285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG query:56 - Query completed -2016-05-02 17:10:38 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 17:10:38 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 17:10:38 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 17:10:38 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1855285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG update:56 - Update completed -2016-05-02 17:10:38 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:25, serverValue:1855285}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG query:56 - Query completed -2016-05-02 17:10:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:38 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:10:38 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 17:10:38 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 17:10:38 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 17:10:38 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:10:38 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:10:38 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 17:10:38 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:10:38 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 17:10:38 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:10:38 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 17:10:38 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 17:10:38 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:10:38 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:10:38 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:10:38 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:10:38 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:10:38 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:10:38 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:10:38 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:38 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:38 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:38 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ac452aad, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e494fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f19db04, socketFactory=javax.net.DefaultSocketFactory@4a79fbc4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:10:38 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:10:38 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:10:38 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:244709}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1522870, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:38 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:10:38 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:38 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:10:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:38 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2127258}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=890124, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:38 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1855286}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1692618, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:39 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:10:39 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1541043}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:10:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:10:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1293724, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:10:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:10:39 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1855287}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1855287}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:39 DEBUG command:56 - Command execution completed -2016-05-02 17:10:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1855287}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:39 DEBUG command:56 - Command execution completed -2016-05-02 17:10:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1855287}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:39 DEBUG command:56 - Command execution completed -2016-05-02 17:10:39 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:10:39 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:10:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1855287}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:39 DEBUG command:56 - Command execution completed -2016-05-02 17:10:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1855287}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:39 DEBUG command:56 - Command execution completed -2016-05-02 17:10:39 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:10:39 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1855287}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:10:39 DEBUG query:56 - Query completed -2016-05-02 17:10:39 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 17:10:39 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2127258} -2016-05-02 17:10:39 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:244709} -2016-05-02 17:10:39 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1855287}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:10:39 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1541043} -2016-05-02 17:10:39 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1855287} -2016-05-02 17:10:39 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:10:39 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1855286} -2016-05-02 17:10:39 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:10:39 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:10:39 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:10:39 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:10:39 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 17:10:39 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:10:39 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 17:10:39 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 17:10:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:10:39 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:10:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:10:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:10:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:10:39 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:10:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:10:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:39 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:10:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:10:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:10:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:10:39 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:10:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:10:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:10:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:10:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:10:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:10:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:10:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:10:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:10:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:10:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:10:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:10:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:10:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:10:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:10:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:10:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:10:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:10:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:10:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:10:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:10:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:10:39 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2127257} -2016-05-02 17:10:39 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:244708} -2016-05-02 17:10:39 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1541042} -2016-05-02 17:10:39 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1855285}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:10:39 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1855285} -2016-05-02 17:10:39 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1855284} -2016-05-02 17:10:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:10:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:10:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:10:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:10:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:10:40 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:10:40 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:10:40 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:10:40 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:10:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:10:40 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:10:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:10:40 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:10:40 INFO WorkspaceExplorerServiceImpl:142 - end time - 217 msc 0 sec -2016-05-02 17:10:40 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:11:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:11:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:11:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:11:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:11:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:11:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:11:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:11:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:11:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:11:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:11:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:11:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:11:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:11:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:11:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:11:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:11:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:11:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:11:11 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:11:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:11:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:11:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:11:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:11:11 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:11:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:11:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:11:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:11:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:11:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:11:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:11:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:11:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:11:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:11:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:11:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:11:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:11:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:11:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:11:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:11:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:11:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:11:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:11:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:12 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:11:12 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:11:12 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:11:12 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:11:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:11:12 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:11:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:11:12 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:11:12 INFO WorkspaceExplorerServiceImpl:142 - end time - 194 msc 0 sec -2016-05-02 17:11:12 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:11:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:11:16 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:11:16 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:11:16 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 17:11:16 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 17:11:16 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 17:11:16 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 17:11:16 DEBUG WPS2SM:204 - Schema: null -2016-05-02 17:11:16 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 17:11:16 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:11:16 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 17:11:16 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 17:11:16 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 17:11:16 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 17:11:16 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 17:11:16 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 17:11:16 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 17:11:16 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 17:11:16 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:11:16 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 17:11:16 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 17:11:16 DEBUG WPS2SM:92 - WPS type: -2016-05-02 17:11:16 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 17:11:16 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 17:11:16 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:11:16 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 17:11:16 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 17:11:16 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 17:11:16 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 17:11:16 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 17:11:16 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 17:11:16 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 17:11:16 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 17:11:16 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:11:16 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 17:11:16 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 17:11:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:11:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:11:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:11:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:11:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:11:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:11:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:11:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:11:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:11:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:11:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:11:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:11:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:11:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:11:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:11:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:11:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:11:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:11:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:11:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:11:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:11:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:11:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:11:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:11:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:11:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:11:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:11:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:11:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:11:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:11:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:11:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:11:17 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:11:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:11:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:11:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:11:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:11:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:11:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:11:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:11:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:11:17 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:11:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:11:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:11:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:11:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:11:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:11:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:11:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:11:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:11:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 175 msc 0 sec -2016-05-02 17:11:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:11:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:11:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:11:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:11:24 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:11:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:11:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:11:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:11:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:11:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:11:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:11:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:11:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:11:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:11:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:11:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:11:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:11:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:11:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:11:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:11:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:11:24 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:11:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:11:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:11:24 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:11:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:11:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:24 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:11:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:11:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:11:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:11:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:11:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:11:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:11:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:11:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:11:24 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:11:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:11:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:11:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:11:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:11:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:11:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:11:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:11:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:11:24 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:11:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:11:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:11:24 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:11:24 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:11:24 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:11:24 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:11:24 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:11:24 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:11:24 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:11:24 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:11:24 INFO WorkspaceExplorerServiceImpl:142 - end time - 164 msc 0 sec -2016-05-02 17:11:24 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:12:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:12:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:13:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:13:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:14:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:14:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:15:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:15:02 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:15:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:15:57 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:16:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:16:52 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:17:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:17:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:18:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:18:42 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:19:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:19:37 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:20:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:20:32 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:21:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:21:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:21:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:21:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:21:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:21:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:21:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:21:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:21:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:21:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:21:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:21:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:21:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:21:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:21:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:21:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:21:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:21:33 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:21:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:21:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:21:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:21:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:21:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:21:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:21:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:21:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:21:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:21:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:21:33 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:21:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:21:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:21:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:21:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:21:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:21:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:21:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:21:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:21:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:21:33 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:21:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:33 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:21:33 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:21:33 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:21:33 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:21:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:21:33 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:21:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:21:33 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:21:33 INFO WorkspaceExplorerServiceImpl:142 - end time - 170 msc 0 sec -2016-05-02 17:21:33 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:21:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:21:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:21:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:21:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:21:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:21:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:21:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:21:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:21:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:21:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:21:42 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:21:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:21:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:21:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:21:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:21:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:21:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:21:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:21:42 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:21:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:21:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:21:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:21:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:21:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:21:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:21:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:21:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:21:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:21:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:21:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:21:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:21:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:21:42 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:21:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:21:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:21:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:21:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:21:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:21:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:21:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:21:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:21:42 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:21:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:42 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:21:42 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:21:42 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:21:42 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:21:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:21:42 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:21:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:21:42 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:21:42 INFO WorkspaceExplorerServiceImpl:142 - end time - 187 msc 0 sec -2016-05-02 17:21:42 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:21:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:21:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:21:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:21:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:21:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:21:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:21:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:21:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:21:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:21:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:21:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:21:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:21:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:21:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:21:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:21:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:21:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:21:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:21:43 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:21:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:21:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:21:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:21:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:21:43 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:21:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:21:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:21:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:21:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:21:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:21:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:21:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:21:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:21:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:21:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:21:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:21:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:21:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:21:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:21:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:21:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:21:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:21:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:21:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:21:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:21:43 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:21:43 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:21:43 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:21:43 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:21:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:21:43 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:21:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:21:43 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:21:43 INFO WorkspaceExplorerServiceImpl:142 - end time - 144 msc 0 sec -2016-05-02 17:21:43 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:22:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:22:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:22:41 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:22:41 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:22:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:22:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:22:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:22:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:22:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:22:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:22:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:22:41 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:22:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:22:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:22:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:22:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:22:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:22:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:22:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:22:41 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:22:41 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:22:41 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:22:41 DEBUG ServiceEngine:306 - get() - start -2016-05-02 17:22:41 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:22:41 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:22:41 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 17:22:41 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 17:22:41 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:22:41 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:22:41 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 17:22:41 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:22:41 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 17:22:41 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:22:41 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:22:41 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:22:41 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:22:41 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:22:41 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:22:41 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:41 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:41 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:41 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ac452aad, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e494fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f19db04, socketFactory=javax.net.DefaultSocketFactory@4a79fbc4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:22:41 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:22:41 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:22:41 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1855408}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1209895, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:41 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:22:41 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:41 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:41 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:41 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:244830}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1106110, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:41 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:2127379}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=928646, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:41 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1541164}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:1855409}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:34, serverValue:1855409}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 DEBUG command:56 - Command execution completed -2016-05-02 17:22:41 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=3857998, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:41 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:34, serverValue:1855409}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.9 ms, state=CONNECTED}] -2016-05-02 17:22:41 DEBUG command:56 - Command execution completed -2016-05-02 17:22:41 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:34, serverValue:1855409}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 DEBUG command:56 - Command execution completed -2016-05-02 17:22:41 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:22:41 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:34, serverValue:1855409}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 DEBUG command:56 - Command execution completed -2016-05-02 17:22:41 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:34, serverValue:1855409}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 DEBUG command:56 - Command execution completed -2016-05-02 17:22:41 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:34, serverValue:1855409}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:22:41 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:22:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:22:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:22:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:22:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:22:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:22:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:22:41 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:22:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:22:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:22:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:22:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:22:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:22:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:22:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:22:41 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:22:41 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:22:41 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:22:41 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:22:41 INFO WorkspaceExplorerServiceImpl:188 - end time - 64 msc 0 sec -2016-05-02 17:22:41 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:22:41 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:22:41 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 17:22:42 DEBUG query:56 - Query completed -2016-05-02 17:22:42 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 17:22:42 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:2127379} -2016-05-02 17:22:42 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:244830} -2016-05-02 17:22:42 INFO connection:71 - Closed connection [connectionId{localValue:34, serverValue:1855409}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:22:42 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:1855409} -2016-05-02 17:22:42 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1541164} -2016-05-02 17:22:42 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1855408} -2016-05-02 17:22:42 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:22:42 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:22:42 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:22:42 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 17:22:42 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:22:42 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:22:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:22:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:22:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:22:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:22:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:22:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:22:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:22:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:22:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:22:42 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:22:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:22:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:22:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:22:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:22:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:22:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:22:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:22:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:22:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:22:42 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:22:42 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:22:42 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:22:42 DEBUG ServiceEngine:306 - get() - start -2016-05-02 17:22:42 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:22:42 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:22:42 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 17:22:42 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 17:22:42 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:22:42 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:22:42 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 17:22:42 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:22:42 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:22:42 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:22:42 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:22:42 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:22:42 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:22:42 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:22:42 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:22:42 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:42 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:42 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:42 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ac452aad, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e494fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f19db04, socketFactory=javax.net.DefaultSocketFactory@4a79fbc4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:22:42 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:22:42 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:22:42 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1855410}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1166427, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:42 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:244831}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:22:42 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1231671, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:42 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:42 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:42 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:42 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2127382}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=863121, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:22:42 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:22:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:22:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:22:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:22:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:22:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:22:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:22:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:22:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:22:42 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:22:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:22:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:22:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:22:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:22:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:22:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:22:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:22:42 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1541167}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1855411}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1855411}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:22:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1222592, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 17:22:42 DEBUG command:56 - Command execution completed -2016-05-02 17:22:42 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1855411}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 DEBUG command:56 - Command execution completed -2016-05-02 17:22:42 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1855411}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:22:42 DEBUG command:56 - Command execution completed -2016-05-02 17:22:42 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:22:42 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1855411}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 DEBUG command:56 - Command execution completed -2016-05-02 17:22:42 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1855411}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 DEBUG command:56 - Command execution completed -2016-05-02 17:22:42 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1855411}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:42 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:22:42 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:22:43 INFO WorkspaceExplorerServiceImpl:188 - end time - 44 msc 0 sec -2016-05-02 17:22:43 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:22:43 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:22:43 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:22:43 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:22:43 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 17:22:43 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:22:43 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:22:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:22:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:22:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:22:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:22:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:22:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:22:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:22:43 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:22:43 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:22:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:22:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:22:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:22:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:22:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:22:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:22:43 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:22:43 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:22:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:22:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:22:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:22:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:22:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:22:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:22:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:22:43 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:22:43 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:22:43 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:22:43 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 17:22:43 DEBUG query:56 - Query completed -2016-05-02 17:22:43 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 17:22:43 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2127382} -2016-05-02 17:22:43 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:244831} -2016-05-02 17:22:43 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1855411}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:22:43 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1541167} -2016-05-02 17:22:43 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1855411} -2016-05-02 17:22:43 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:22:43 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:22:43 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:22:43 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 17:22:43 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1855410} -2016-05-02 17:22:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:22:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:22:44 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:22:44 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 17:22:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:22:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:22:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:22:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:22:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:22:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:22:44 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:22:44 DEBUG ServiceEngine:193 - get() - start -2016-05-02 17:22:44 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:22:44 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:22:44 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 17:22:44 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:22:44 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:22:44 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:22:44 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 17:22:44 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:22:44 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:22:44 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:22:44 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:22:44 DEBUG Operation:173 - get(String) - start -2016-05-02 17:22:44 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:22:44 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:22:44 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:22:44 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:22:44 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:44 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:44 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:44 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ac452aad, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e494fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f19db04, socketFactory=javax.net.DefaultSocketFactory@4a79fbc4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:22:44 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:22:44 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:22:44 INFO connection:71 - Opened connection [connectionId{localValue:42, serverValue:1855412}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 INFO connection:71 - Opened connection [connectionId{localValue:41, serverValue:244832}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1094425, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1211905, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:44 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:22:44 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:44 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:44 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:44 INFO connection:71 - Opened connection [connectionId{localValue:44, serverValue:2127383}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=951906, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:44 INFO connection:71 - Opened connection [connectionId{localValue:43, serverValue:1541168}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1276323, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:22:44 INFO connection:71 - Opened connection [connectionId{localValue:45, serverValue:1855413}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1855413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG command:56 - Command execution completed -2016-05-02 17:22:44 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1855413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG command:56 - Command execution completed -2016-05-02 17:22:44 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1855413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG command:56 - Command execution completed -2016-05-02 17:22:44 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 17:22:44 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1855413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG command:56 - Command execution completed -2016-05-02 17:22:44 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1855413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG command:56 - Command execution completed -2016-05-02 17:22:44 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:22:44 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1855413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG command:56 - Command execution completed -2016-05-02 17:22:44 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1855413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG command:56 - Command execution completed -2016-05-02 17:22:44 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:22:44 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1855413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG query:56 - Query completed -2016-05-02 17:22:44 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 17:22:44 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 17:22:44 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 17:22:44 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1855413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG update:56 - Update completed -2016-05-02 17:22:44 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:45, serverValue:1855413}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG query:56 - Query completed -2016-05-02 17:22:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:22:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:22:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:22:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:22:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:22:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:22:44 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:22:44 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 17:22:44 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 17:22:44 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 17:22:44 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:22:44 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:22:44 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 17:22:44 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:22:44 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 17:22:44 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:22:44 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 17:22:44 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 17:22:44 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:22:44 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:22:44 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:22:44 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:22:44 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:22:44 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:22:44 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:22:44 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:44 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:44 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:44 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ac452aad, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e494fdb, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@2f19db04, socketFactory=javax.net.DefaultSocketFactory@4a79fbc4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:22:44 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:22:44 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:22:44 INFO connection:71 - Opened connection [connectionId{localValue:46, serverValue:244833}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1269121, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:44 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:22:44 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:44 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:22:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:44 INFO connection:71 - Opened connection [connectionId{localValue:49, serverValue:2127384}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=810316, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:44 INFO connection:71 - Opened connection [connectionId{localValue:47, serverValue:1855414}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1501687, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:44 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:22:44 INFO connection:71 - Opened connection [connectionId{localValue:48, serverValue:1541169}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2014012, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:22:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 17:22:44 INFO connection:71 - Opened connection [connectionId{localValue:50, serverValue:1855415}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1855415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG command:56 - Command execution completed -2016-05-02 17:22:44 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1855415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG command:56 - Command execution completed -2016-05-02 17:22:44 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1855415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG command:56 - Command execution completed -2016-05-02 17:22:44 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:22:44 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:22:44 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1855415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG command:56 - Command execution completed -2016-05-02 17:22:44 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1855415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG command:56 - Command execution completed -2016-05-02 17:22:44 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:22:44 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:50, serverValue:1855415}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:44 DEBUG query:56 - Query completed -2016-05-02 17:22:44 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 17:22:44 DEBUG connection:56 - Closing connection connectionId{localValue:49, serverValue:2127384} -2016-05-02 17:22:44 DEBUG connection:56 - Closing connection connectionId{localValue:46, serverValue:244833} -2016-05-02 17:22:44 INFO connection:71 - Closed connection [connectionId{localValue:50, serverValue:1855415}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:22:44 DEBUG connection:56 - Closing connection connectionId{localValue:48, serverValue:1541169} -2016-05-02 17:22:44 DEBUG connection:56 - Closing connection connectionId{localValue:50, serverValue:1855415} -2016-05-02 17:22:44 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:22:44 DEBUG connection:56 - Closing connection connectionId{localValue:47, serverValue:1855414} -2016-05-02 17:22:44 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:22:44 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:22:44 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:22:44 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:22:44 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 17:22:44 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:22:44 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 17:22:44 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 17:22:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:22:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:22:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:22:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:22:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:22:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:22:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:22:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:23:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:23:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:23:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:23:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:23:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:23:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:23:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:23:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:23:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:23:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:23:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:23:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:23:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 17:23:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:23:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:23:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:23:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:23:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 17:23:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 17:23:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:23:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 17:23:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:23:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:23:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:23:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:23:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:23:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:23:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:23:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:23:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:23:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 17:23:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:23:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:23:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 17:23:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 17:23:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:23:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 17:23:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:23:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:23:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:23:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:23:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:23:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:23:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:23:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:23:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:23:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:24:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:24:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:24:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:24:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:24:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:24:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:24:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:24:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:24:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:24:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:24:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:24:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:24:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:24:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:24:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:24:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 17:24:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:24:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 17:24:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:24:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 17:24:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:24:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 17:24:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:24:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 17:24:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:24:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:24:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:24:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:24:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:24:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:24:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:24:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:24:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:24:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:24:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:24:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:24:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:24:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:24:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:24:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:24:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:24:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:24:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:24:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:24:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:24:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:24:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:24:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:24:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:24:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:25:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:25:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:25:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:25:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:25:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:25:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:25:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:25:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:25:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:25:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:25:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:25:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:25:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:25:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:25:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:25:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:25:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:25:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:25:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:25:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:25:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:25:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:25:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:25:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:25:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:25:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:25:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:25:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:25:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:25:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:25:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:25:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:25:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:25:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:27:06 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 17:27:06 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 17:27:06 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 17:27:06 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:27:06 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:27:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:27:06 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:27:06 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@3f8a614f -2016-05-02 17:27:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:27:06 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:27:06 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:27:06 DEBUG TemplateModel:83 - 2016-05-02 17:27:06, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:27:06 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:27:06 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 17:27:08 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:27:08 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:27:08 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:27:08 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:27:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:27:08 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:27:08 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:27:08 DEBUG TemplateModel:83 - 2016-05-02 17:27:08, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:27:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:27:08 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:27:08 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 143 ms -2016-05-02 17:27:08 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 17:27:08 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 17:27:08 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 17:27:08 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 17:27:08 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 17:27:08 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 17:27:08 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 17:27:08 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 17:27:08 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 17:27:08 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 17:27:08 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 17:27:08 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 17:27:08 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 17:27:08 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 17:27:08 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 17:27:08 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:27:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:27:08 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@214a3203 -2016-05-02 17:27:08 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3a22b994 -2016-05-02 17:27:08 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@6c7ee87d -2016-05-02 17:27:08 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@6d952866 -2016-05-02 17:27:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 114 ms -2016-05-02 17:27:09 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 17:27:09 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 17:27:09 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 17:27:09 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 17:27:09 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 17:27:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:27:09 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:27:09 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 17:27:09 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 19 ms -2016-05-02 17:27:09 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 17:27:09 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:27:09 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 17:27:09 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:27:09 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:27:09 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:27:09 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:27:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:27:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:27:09 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:27:09 DEBUG DataMinerManagerServiceImpl:391 - getDataMinerWorkArea() -2016-05-02 17:27:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:09 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 17:27:09 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 17:27:09 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 17:27:09 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 17:27:09 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 17:27:09 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 17:27:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 17:27:09 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:27:09 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 17:27:09 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 49 ms -2016-05-02 17:27:10 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 17:27:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:27:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:10 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 17:27:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:10 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 17:27:10 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:27:10 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 17:27:10 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:27:10 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:27:10 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 17:27:10 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:27:10 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:27:10 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 17:27:10 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 17:27:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:10 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:27:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 17:27:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:10 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:27:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 17:27:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:11 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:27:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 17:27:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:11 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:27:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 17:27:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:13 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:27:13 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:27:13 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:27:13 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:27:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:13 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 17:27:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:27:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:27:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:13 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 17:27:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:13 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 17:27:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:13 INFO WorkspaceExplorerServiceImpl:188 - end time - 130 msc 0 sec -2016-05-02 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:27:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:27:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:13 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 17:27:13 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 17:27:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:13 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:27:13 INFO WorkspaceExplorerServiceImpl:188 - end time - 183 msc 0 sec -2016-05-02 17:27:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:27:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:27:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:27:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:27:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 17:27:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-02 17:27:13 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 17:27:13 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 17:27:13 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 17:27:13 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:27:13 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:27:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:27:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:27:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:27:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:27:13 INFO WorkspaceExplorerServiceImpl:188 - end time - 428 msc 0 sec -2016-05-02 17:27:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:27:19 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:27:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:27:19 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 17:27:19 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:27:19 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:27:20 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 17:27:20 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 17:27:20 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 17:27:20 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 17:27:20 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 17:27:20 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 17:27:20 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:27:20 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 17:27:20 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 17:27:20 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 17:27:20 DEBUG WPS2SM:204 - Schema: null -2016-05-02 17:27:20 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 17:27:20 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:27:20 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 17:27:20 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 17:27:20 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 17:27:20 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 17:27:20 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 17:27:20 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 17:27:20 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 17:27:20 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 17:27:20 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:27:20 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 17:27:20 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 17:27:20 DEBUG WPS2SM:92 - WPS type: -2016-05-02 17:27:20 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 17:27:20 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 17:27:20 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:27:20 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 17:27:20 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 17:27:20 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 17:27:20 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 17:27:20 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 17:27:20 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 17:27:20 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 17:27:20 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 17:27:20 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:27:20 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 17:27:20 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 17:27:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:27:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:27:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:27:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:27:20 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:27:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:27:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:20 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:27:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:27:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:27:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:27:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:27:20 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:27:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:27:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:27:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:27:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:27:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:27:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:27:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:20 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:27:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:27:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:27:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:27:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:27:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:27:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:27:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:27:20 INFO WorkspaceExplorerServiceImpl:142 - end time - 241 msc 0 sec -2016-05-02 17:27:20 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:27:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:27:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:27:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:27:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:27:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:27:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:27:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:23 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:27:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:27:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:27:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:27:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:27:23 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:27:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:27:23 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:27:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:27:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:27:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:27:23 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:27:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:23 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:27:23 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:27:23 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:27:23 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:27:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:27:23 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:27:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:27:23 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:27:23 INFO WorkspaceExplorerServiceImpl:142 - end time - 209 msc 0 sec -2016-05-02 17:27:23 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:27:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:27:32 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:27:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:27:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:27:33 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:27:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:27:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:33 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:27:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:27:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:27:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:27:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:27:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:27:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:27:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:27:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:27:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:27:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:27:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:27:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:33 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:27:33 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:27:33 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:27:33 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:27:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:27:33 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:27:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:27:33 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:27:33 INFO WorkspaceExplorerServiceImpl:142 - end time - 172 msc 0 sec -2016-05-02 17:27:33 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:27:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:27:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:27:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:27:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:27:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:27:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:27:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:34 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:27:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:27:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:27:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:27:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:27:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:27:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:27:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:27:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:27:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:27:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:27:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:27:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:34 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:27:34 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:27:34 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:27:34 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:27:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:27:34 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:27:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:27:34 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:27:34 INFO WorkspaceExplorerServiceImpl:142 - end time - 229 msc 0 sec -2016-05-02 17:27:34 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:27:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:27:35 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:27:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:27:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:27:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:27:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:27:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:35 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:27:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:27:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:27:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:27:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:27:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:27:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:27:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:27:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:27:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:27:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:27:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:27:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:27:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:27:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:27:35 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:27:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:27:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:27:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:27:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:27:35 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:27:35 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:27:35 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:27:35 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:27:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:27:35 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:27:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:27:35 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:27:35 INFO WorkspaceExplorerServiceImpl:142 - end time - 186 msc 0 sec -2016-05-02 17:27:35 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:28:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:28:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:28:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:28:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:29:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:29:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:30:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:30:46 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:31:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:31:41 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:32:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:32:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:33:28 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:33:28 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:33:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:33:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:33:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:33:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:28 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:33:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:33:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:33:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:33:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:33:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:33:28 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:33:28 DEBUG ServiceEngine:306 - get() - start -2016-05-02 17:33:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:33:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:33:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:33:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:33:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:28 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:33:28 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 17:33:28 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 17:33:28 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:33:28 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:33:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:33:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:33:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:33:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:28 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 17:33:28 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:33:28 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 17:33:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:33:28 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:33:28 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:33:28 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:33:28 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:33:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:33:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:33:29 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:33:29 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:33:29 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:29 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:33:29 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:33:29 INFO WorkspaceExplorerServiceImpl:188 - end time - 69 msc 0 sec -2016-05-02 17:33:29 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:29 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:29 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bfb47774, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@d87d6e5, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@512d5b53, socketFactory=javax.net.DefaultSocketFactory@78c6cfc7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:33:29 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:33:29 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 17:33:29 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:33:29 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:33:29 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1855524}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1620401, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:29 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:33:29 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:29 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:29 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:29 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:244942}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:33:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:33:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1658867, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:29 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2127492}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:33:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:33:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1407405, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:29 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1541276}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:33:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:33:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2668861, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 17:33:29 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1855526}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855526}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:29 DEBUG command:56 - Command execution completed -2016-05-02 17:33:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855526}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:29 DEBUG command:56 - Command execution completed -2016-05-02 17:33:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855526}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:29 DEBUG command:56 - Command execution completed -2016-05-02 17:33:29 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:33:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855526}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:29 DEBUG command:56 - Command execution completed -2016-05-02 17:33:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1855526}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:29 DEBUG command:56 - Command execution completed -2016-05-02 17:33:29 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1855526}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 DEBUG query:56 - Query completed -2016-05-02 17:33:30 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 17:33:30 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2127492} -2016-05-02 17:33:30 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1855526}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:33:30 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1541276} -2016-05-02 17:33:30 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:244942} -2016-05-02 17:33:30 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1855526} -2016-05-02 17:33:30 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1855524} -2016-05-02 17:33:30 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:33:30 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:33:30 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:33:30 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 17:33:30 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:33:30 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:33:30 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:33:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:30 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:33:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:33:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:30 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:33:30 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:33:30 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:33:30 DEBUG ServiceEngine:306 - get() - start -2016-05-02 17:33:30 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:33:30 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:33:30 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 17:33:30 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 17:33:30 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:33:30 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:33:30 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 17:33:30 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:33:30 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:33:30 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:33:30 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:33:30 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:33:30 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:33:30 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:33:30 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:33:30 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:30 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:30 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:30 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bfb47774, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@d87d6e5, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@512d5b53, socketFactory=javax.net.DefaultSocketFactory@78c6cfc7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:33:30 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:33:30 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:33:30 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:244943}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1300689, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:30 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1855527}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:33:30 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1465482, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:30 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:30 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:30 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2127493}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=903094, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:33:30 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:33:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:33:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:33:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:33:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:30 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:33:30 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1541277}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:33:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1255551, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:33:30 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1855528}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855528}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 DEBUG command:56 - Command execution completed -2016-05-02 17:33:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855528}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 DEBUG command:56 - Command execution completed -2016-05-02 17:33:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855528}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 DEBUG command:56 - Command execution completed -2016-05-02 17:33:30 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:33:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855528}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 DEBUG command:56 - Command execution completed -2016-05-02 17:33:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1855528}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 DEBUG command:56 - Command execution completed -2016-05-02 17:33:30 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1855528}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:33:30 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:33:30 INFO WorkspaceExplorerServiceImpl:188 - end time - 46 msc 0 sec -2016-05-02 17:33:30 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:33:30 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:33:30 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:33:30 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:33:30 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 17:33:30 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:33:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:33:31 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:33:31 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:33:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:33:31 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:33:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:33:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:31 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:33:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:33:31 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:33:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:33:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:31 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:33:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:33:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:33:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:33:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:31 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:33:31 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:33:31 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:33:31 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 17:33:31 DEBUG query:56 - Query completed -2016-05-02 17:33:31 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 17:33:31 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1855528}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:33:31 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1855528} -2016-05-02 17:33:31 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:244943} -2016-05-02 17:33:31 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:33:31 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:33:31 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:33:31 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 17:33:31 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1855527} -2016-05-02 17:33:31 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1541277} -2016-05-02 17:33:31 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2127493} -2016-05-02 17:33:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:33:31 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:33:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:33:32 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:33:32 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:33:32 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 17:33:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:32 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:33:32 DEBUG ServiceEngine:193 - get() - start -2016-05-02 17:33:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:33:32 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:33:32 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 17:33:32 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:33:32 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:33:32 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:33:32 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 17:33:32 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:33:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:33:32 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:33:32 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:33:32 DEBUG Operation:173 - get(String) - start -2016-05-02 17:33:32 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:33:32 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:33:32 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:33:32 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:33:32 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:32 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:32 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:32 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bfb47774, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@d87d6e5, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@512d5b53, socketFactory=javax.net.DefaultSocketFactory@78c6cfc7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:33:32 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:33:32 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:33:32 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1855530}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1117438, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:32 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:33:32 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:32 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:32 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:32 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:244944}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1394034, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:32 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2127494}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=935710, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:32 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1541278}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1324352, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:33:32 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1855531}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855531}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG command:56 - Command execution completed -2016-05-02 17:33:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855531}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG command:56 - Command execution completed -2016-05-02 17:33:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855531}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG command:56 - Command execution completed -2016-05-02 17:33:32 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 17:33:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855531}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG command:56 - Command execution completed -2016-05-02 17:33:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855531}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG command:56 - Command execution completed -2016-05-02 17:33:32 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:33:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855531}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG command:56 - Command execution completed -2016-05-02 17:33:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1855531}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG command:56 - Command execution completed -2016-05-02 17:33:32 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:33:32 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1855531}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG query:56 - Query completed -2016-05-02 17:33:32 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 17:33:32 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 17:33:32 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 17:33:32 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1855531}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG update:56 - Update completed -2016-05-02 17:33:32 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1855531}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG query:56 - Query completed -2016-05-02 17:33:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:32 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 17:33:32 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 17:33:32 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 17:33:32 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 17:33:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:33:32 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:33:32 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 17:33:32 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:33:32 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 17:33:32 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:33:32 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 17:33:32 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 17:33:32 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:33:32 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:33:32 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:33:32 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:33:32 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:33:32 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:33:32 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:33:32 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:32 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:32 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:32 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bfb47774, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@d87d6e5, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@512d5b53, socketFactory=javax.net.DefaultSocketFactory@78c6cfc7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:33:32 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:33:32 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:33:32 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:244945}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1835834, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:32 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:33:32 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1855532}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:32 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:33:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1499601, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:32 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:32 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2127495}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=984954, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:33:32 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1855533}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855533}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG command:56 - Command execution completed -2016-05-02 17:33:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855533}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1541279}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG command:56 - Command execution completed -2016-05-02 17:33:32 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855533}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1441413, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:33:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 17:33:32 DEBUG command:56 - Command execution completed -2016-05-02 17:33:32 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:33:32 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:33:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855533}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG command:56 - Command execution completed -2016-05-02 17:33:32 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1855533}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG command:56 - Command execution completed -2016-05-02 17:33:32 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:33:32 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1855533}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:33:32 DEBUG query:56 - Query completed -2016-05-02 17:33:32 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 17:33:32 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2127495} -2016-05-02 17:33:32 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:244945} -2016-05-02 17:33:32 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1541279} -2016-05-02 17:33:32 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1855533}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:33:32 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1855533} -2016-05-02 17:33:32 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:33:32 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1855532} -2016-05-02 17:33:32 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 17:33:32 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:33:32 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:33:32 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:33:32 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 17:33:32 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 17:33:32 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 17:33:32 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 17:33:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:33:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:33:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:33:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:33:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:33:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:33:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:34 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:33:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:33:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:33:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:33:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:33:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:33:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:33:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:33:34 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:33:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:33:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:33:34 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:33:34 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1541278} -2016-05-02 17:33:34 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1855531}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:33:34 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:244944} -2016-05-02 17:33:34 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2127494} -2016-05-02 17:33:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:34 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1855531} -2016-05-02 17:33:34 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1855530} -2016-05-02 17:33:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:34 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:33:34 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:33:34 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:33:34 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:33:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:33:34 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:33:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:33:34 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:33:34 INFO WorkspaceExplorerServiceImpl:142 - end time - 187 msc 0 sec -2016-05-02 17:33:34 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:33:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:33:37 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:33:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:33:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:33:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:33:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:33:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:37 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:33:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:33:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:33:37 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:33:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:33:37 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:33:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:33:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:33:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:33:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:33:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:33:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:33:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:37 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:33:37 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:33:37 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:33:37 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:33:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:33:37 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:33:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:33:37 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:33:37 INFO WorkspaceExplorerServiceImpl:142 - end time - 164 msc 0 sec -2016-05-02 17:33:37 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:33:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:33:38 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:33:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:33:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:33:38 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:33:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:33:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:38 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:33:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:33:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:33:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:33:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:33:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:33:38 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:33:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:33:38 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:33:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:33:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:33:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:33:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:33:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:33:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:33:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:33:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:33:38 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:33:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:33:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:33:38 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:33:38 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:33:38 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:33:38 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:33:38 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:33:38 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:33:38 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:33:38 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:33:38 INFO WorkspaceExplorerServiceImpl:142 - end time - 160 msc 0 sec -2016-05-02 17:33:38 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:34:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:34:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:34:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:34:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:34:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:34:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:34:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:34:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:21 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:34:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:34:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:34:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:34:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:34:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:34:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:34:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:34:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:34:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:34:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:34:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:34:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:34:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:34:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:34:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:34:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:34:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:34:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:34:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:34:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:34:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:34:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:34:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:34:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:34:21 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:34:21 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:34:21 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:34:21 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:34:21 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:34:21 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:34:21 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:34:21 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:34:21 INFO WorkspaceExplorerServiceImpl:142 - end time - 150 msc 0 sec -2016-05-02 17:34:21 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:34:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:34:26 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:34:26 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:34:26 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:34:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:34:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:34:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:34:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:26 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:34:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:34:26 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:34:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:34:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:34:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:34:26 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:34:26 DEBUG ServiceEngine:306 - get() - start -2016-05-02 17:34:26 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:34:26 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:34:26 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 17:34:26 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 17:34:26 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:34:26 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:34:26 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 17:34:26 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:34:26 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 17:34:26 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:34:26 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:34:26 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:34:26 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:34:26 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:34:26 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:34:26 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:26 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:26 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:26 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bfb47774, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@d87d6e5, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@512d5b53, socketFactory=javax.net.DefaultSocketFactory@78c6cfc7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:34:26 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:34:26 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:34:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:34:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:34:26 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:244956}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:34:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1556210, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:26 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:34:26 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:26 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:26 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1855542}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:26 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2127505}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=4983065, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:26 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1092603, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:34:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:34:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:34:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:34:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:34:26 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1541290}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1213705, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 17:34:26 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1855543}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1855543}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 DEBUG command:56 - Command execution completed -2016-05-02 17:34:26 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1855543}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 DEBUG command:56 - Command execution completed -2016-05-02 17:34:26 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1855543}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 DEBUG command:56 - Command execution completed -2016-05-02 17:34:26 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:34:26 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1855543}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 DEBUG command:56 - Command execution completed -2016-05-02 17:34:26 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1855543}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:34:26 DEBUG command:56 - Command execution completed -2016-05-02 17:34:26 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1855543}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:26 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 17:34:26 INFO WorkspaceExplorerServiceImpl:188 - end time - 42 msc 0 sec -2016-05-02 17:34:26 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:34:27 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:34:27 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 17:34:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:34:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=5.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 17:34:27 DEBUG query:56 - Query completed -2016-05-02 17:34:27 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 17:34:27 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2127505} -2016-05-02 17:34:27 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:244956} -2016-05-02 17:34:27 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1541290} -2016-05-02 17:34:27 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1855543}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:34:27 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1855543} -2016-05-02 17:34:27 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1855542} -2016-05-02 17:34:27 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:34:27 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:34:27 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 17:34:27 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 17:34:27 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:34:27 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:34:27 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:34:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:27 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:34:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:34:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:34:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:27 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:34:27 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:34:27 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:34:27 DEBUG ServiceEngine:306 - get() - start -2016-05-02 17:34:27 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:34:27 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:34:27 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 17:34:27 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 17:34:27 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:34:27 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:34:27 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 17:34:27 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:34:27 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:34:27 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:34:27 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:34:27 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:34:27 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:34:27 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:34:27 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:34:27 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:27 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:27 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:27 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bfb47774, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@d87d6e5, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@512d5b53, socketFactory=javax.net.DefaultSocketFactory@78c6cfc7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:34:27 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:34:27 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:34:28 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:244957}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1423168, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:28 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1855544}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:34:28 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:28 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1349949, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:28 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:28 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2127507}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=977995, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:34:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:34:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:34:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:34:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:34:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:34:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:28 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1541291}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1837141, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:34:28 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1855545}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:34:28 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 17:34:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1855545}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 DEBUG command:56 - Command execution completed -2016-05-02 17:34:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1855545}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 DEBUG command:56 - Command execution completed -2016-05-02 17:34:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1855545}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 DEBUG command:56 - Command execution completed -2016-05-02 17:34:28 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:34:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1855545}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 DEBUG command:56 - Command execution completed -2016-05-02 17:34:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1855545}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 DEBUG command:56 - Command execution completed -2016-05-02 17:34:28 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1855545}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:34:28 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 17:34:28 INFO WorkspaceExplorerServiceImpl:188 - end time - 60 msc 0 sec -2016-05-02 17:34:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 17:34:28 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:34:28 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:34:28 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 17:34:28 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 17:34:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:34:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 17:34:28 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 17:34:28 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 17:34:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:34:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:34:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:34:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:28 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 17:34:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:34:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:34:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:34:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:28 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 17:34:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:34:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:34:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:34:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:28 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 17:34:28 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 17:34:28 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 17:34:29 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 17:34:29 DEBUG query:56 - Query completed -2016-05-02 17:34:29 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 17:34:29 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1855545}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:34:29 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1541291} -2016-05-02 17:34:29 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:244957} -2016-05-02 17:34:29 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2127507} -2016-05-02 17:34:29 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1855545} -2016-05-02 17:34:29 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:34:29 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:34:29 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1855544} -2016-05-02 17:34:29 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 17:34:29 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 17:34:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:34:29 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:34:29 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:34:29 DEBUG DataMinerManagerServiceImpl:373 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-02 17:34:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:29 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 17:34:29 DEBUG ServiceEngine:193 - get() - start -2016-05-02 17:34:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:34:29 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:34:29 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-02 17:34:29 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:34:29 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:34:29 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 17:34:29 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 17:34:29 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:34:29 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:34:29 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:34:29 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 17:34:29 DEBUG Operation:173 - get(String) - start -2016-05-02 17:34:29 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:34:29 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:34:29 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:34:29 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:34:29 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:29 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:29 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:29 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bfb47774, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@d87d6e5, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@512d5b53, socketFactory=javax.net.DefaultSocketFactory@78c6cfc7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:34:29 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:34:29 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:34:29 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1855547}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1021893, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:29 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:34:29 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:29 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:29 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:29 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:244958}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2127508}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=998858, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1432649, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:29 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1541292}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1254531, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 17:34:29 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1855548}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1855548}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG command:56 - Command execution completed -2016-05-02 17:34:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1855548}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG command:56 - Command execution completed -2016-05-02 17:34:29 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1855548}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG command:56 - Command execution completed -2016-05-02 17:34:29 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 17:34:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1855548}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG command:56 - Command execution completed -2016-05-02 17:34:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1855548}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG command:56 - Command execution completed -2016-05-02 17:34:29 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 17:34:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1855548}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG command:56 - Command execution completed -2016-05-02 17:34:29 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1855548}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG command:56 - Command execution completed -2016-05-02 17:34:29 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 17:34:29 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1855548}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG query:56 - Query completed -2016-05-02 17:34:29 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-02 17:34:29 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 17:34:29 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 17:34:29 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1855548}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG update:56 - Update completed -2016-05-02 17:34:29 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1855548}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:29 DEBUG query:56 - Query completed -2016-05-02 17:34:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:34:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:34:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:34:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:34:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:34:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:34:29 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 17:34:30 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-02 17:34:30 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 17:34:30 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 17:34:30 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:34:30 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:34:30 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-02 17:34:30 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 17:34:30 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 17:34:30 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 17:34:30 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 17:34:30 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 17:34:30 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 17:34:30 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 17:34:30 DEBUG BucketCoding:42 - coding name done -2016-05-02 17:34:30 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 17:34:30 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 17:34:30 DEBUG MongoIO:77 - open mongo connection -2016-05-02 17:34:30 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 17:34:30 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:30 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:30 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:30 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bfb47774, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@d87d6e5, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@512d5b53, socketFactory=javax.net.DefaultSocketFactory@78c6cfc7, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 17:34:30 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 17:34:30 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 17:34:30 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:244959}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1192110, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:30 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 17:34:30 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:30 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 17:34:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:30 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1855549}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2127509}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1432443, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:30 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=859034, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 17:34:30 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1541293}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1726769, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 17:34:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 17:34:30 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1855550}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1855550}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 DEBUG command:56 - Command execution completed -2016-05-02 17:34:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1855550}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 DEBUG command:56 - Command execution completed -2016-05-02 17:34:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1855550}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 DEBUG command:56 - Command execution completed -2016-05-02 17:34:30 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 17:34:30 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 17:34:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1855550}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 DEBUG command:56 - Command execution completed -2016-05-02 17:34:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1855550}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 DEBUG command:56 - Command execution completed -2016-05-02 17:34:30 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 17:34:30 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1855550}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 17:34:30 DEBUG query:56 - Query completed -2016-05-02 17:34:30 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-02 17:34:30 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2127509} -2016-05-02 17:34:30 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:244959} -2016-05-02 17:34:30 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1855550}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:34:30 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1855550} -2016-05-02 17:34:30 INFO MongoIO:508 - Mongo has been closed -2016-05-02 17:34:30 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1855549} -2016-05-02 17:34:30 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 17:34:30 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1541293} -2016-05-02 17:34:30 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 17:34:30 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 17:34:30 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 17:34:30 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 17:34:30 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 17:34:30 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-02 17:34:30 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-02 17:34:36 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2127508} -2016-05-02 17:34:36 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:244958} -2016-05-02 17:34:36 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1855548}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 17:34:36 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1541292} -2016-05-02 17:34:36 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1855548} -2016-05-02 17:34:36 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1855547} -2016-05-02 17:35:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:35:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:36:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:36:16 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:37:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:37:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:38:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:38:06 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:39:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:39:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:39:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:39:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:40:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:40:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:41:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:41:46 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:42:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:42:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:43:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:43:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:44:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:44:31 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:45:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:45:26 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:46:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:46:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:47:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:47:16 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:49:30 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 17:49:30 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 17:49:30 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 17:49:30 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:49:30 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:49:30 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:49:30 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:49:30 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@4a0ec34 -2016-05-02 17:49:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:49:30 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:49:30 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:49:30 DEBUG TemplateModel:83 - 2016-05-02 17:49:30, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:49:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:49:30 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 17:49:32 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:49:32 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:49:32 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:49:32 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:49:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:49:32 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:49:32 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:49:32 DEBUG TemplateModel:83 - 2016-05-02 17:49:32, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:49:32 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:49:32 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:49:33 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 132 ms -2016-05-02 17:49:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 17:49:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 17:49:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 17:49:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 17:49:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 17:49:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 17:49:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 17:49:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 17:49:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 17:49:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 17:49:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 17:49:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 17:49:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 17:49:33 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 17:49:33 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 17:49:33 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:49:33 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:49:33 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@732ef28 -2016-05-02 17:49:33 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@4a6922df -2016-05-02 17:49:33 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@4b9410b3 -2016-05-02 17:49:33 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@6f3e99f0 -2016-05-02 17:49:33 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 127 ms -2016-05-02 17:49:33 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 17:49:33 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 17:49:33 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 17:49:33 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 17:49:33 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 17:49:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:49:33 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:49:33 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 17:49:33 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-02 17:49:33 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 17:49:33 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:49:33 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 17:49:33 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:49:34 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:49:34 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:49:34 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:49:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:49:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:49:34 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:49:34 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 17:49:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:49:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:49:34 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 17:49:34 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 17:49:34 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 17:49:34 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 17:49:34 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 17:49:34 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 17:49:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:49:34 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:49:34 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 17:49:34 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 23 ms -2016-05-02 17:49:34 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 17:49:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:49:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:49:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:49:34 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 17:49:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:34 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 17:49:34 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:49:34 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 17:49:35 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:49:35 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:49:35 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 17:49:35 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:49:35 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:49:35 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 17:49:35 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 17:49:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:49:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:35 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 17:49:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:49:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:49:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:49:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:49:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:49:35 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 17:49:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:49:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:49:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:49:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:49:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:49:35 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 17:49:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:49:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:49:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:49:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:49:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:49:35 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 17:49:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:36 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:49:36 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:49:36 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:49:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:49:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:49:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:49:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:49:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:49:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:49:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:49:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:49:36 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 17:49:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:49:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:49:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:49:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:49:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:49:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:49:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:49:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:49:37 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 17:49:37 INFO WorkspaceExplorerServiceImpl:188 - end time - 120 msc 0 sec -2016-05-02 17:49:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:49:37 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:49:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:49:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:49:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:49:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:49:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:49:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:49:37 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 17:49:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:37 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 17:49:37 INFO WorkspaceExplorerServiceImpl:188 - end time - 150 msc 0 sec -2016-05-02 17:49:37 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 17:49:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:38 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 17:49:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 17:49:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:49:38 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:49:38 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:49:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-05-02 17:49:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 17:49:38 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:49:38 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 17:49:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-02 17:49:38 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 17:49:38 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 17:49:38 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 17:49:38 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 17:49:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 17:49:38 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 17:49:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 17:49:38 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:49:38 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:49:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 17:49:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 17:49:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 17:49:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 17:49:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:49:38 INFO WorkspaceExplorerServiceImpl:188 - end time - 351 msc 0 sec -2016-05-02 17:49:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:49:41 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:49:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:49:41 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 17:49:41 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:49:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:49:41 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 17:49:41 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 17:49:41 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 17:49:41 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 17:49:41 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 17:49:41 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 17:49:41 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:49:41 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 17:49:41 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 17:49:41 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 17:49:41 DEBUG WPS2SM:204 - Schema: null -2016-05-02 17:49:41 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 17:49:41 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:49:41 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 17:49:41 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 17:49:41 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 17:49:41 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 17:49:41 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 17:49:41 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 17:49:41 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 17:49:41 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 17:49:41 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:49:41 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 17:49:41 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 17:49:41 DEBUG WPS2SM:92 - WPS type: -2016-05-02 17:49:41 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 17:49:41 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 17:49:41 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:49:41 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 17:49:41 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 17:49:41 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 17:49:41 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 17:49:41 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 17:49:41 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 17:49:41 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 17:49:41 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 17:49:41 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:49:41 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 17:49:41 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 17:49:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:49:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:49:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:49:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:49:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:49:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:49:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:49:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:49:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:49:41 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:49:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:49:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:49:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:49:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:49:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:49:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:49:41 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:49:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:49:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:49:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:49:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:49:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:49:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:49:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:49:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:49:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:49:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:49:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:49:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:49:41 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:49:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:49:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:49:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:49:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:49:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:49:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:49:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:49:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:49:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:42 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:49:42 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:49:42 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:49:42 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:49:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:49:42 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:49:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:49:42 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:49:42 INFO WorkspaceExplorerServiceImpl:142 - end time - 222 msc 0 sec -2016-05-02 17:49:42 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:49:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:49:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:49:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:49:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:49:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:49:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:49:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:49:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:49:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:49:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:49:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:49:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:49:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:49:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:49:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:49:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:49:44 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:49:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:49:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:49:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:49:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:49:44 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:49:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:49:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:49:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:49:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:49:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:49:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:49:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:49:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:49:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:49:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:49:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:49:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:49:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:49:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:49:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:49:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:49:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:49:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:49:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:49:44 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:49:44 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:49:44 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:49:44 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:49:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:49:44 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:49:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:49:44 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:49:44 INFO WorkspaceExplorerServiceImpl:142 - end time - 209 msc 0 sec -2016-05-02 17:49:44 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:50:34 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 17:50:34 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 17:50:34 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 17:50:35 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:50:35 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:50:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:50:35 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:50:35 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@4adb8148 -2016-05-02 17:50:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:50:35 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:50:35 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:50:35 DEBUG TemplateModel:83 - 2016-05-02 17:50:35, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:50:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:50:35 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 17:50:36 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:50:36 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:50:36 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:50:36 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:50:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:50:36 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:50:36 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:50:36 DEBUG TemplateModel:83 - 2016-05-02 17:50:36, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:50:36 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:50:36 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:50:37 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 149 ms -2016-05-02 17:50:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 17:50:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 17:50:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 17:50:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 17:50:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 17:50:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 17:50:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 17:50:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 17:50:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 17:50:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 17:50:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 17:50:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 17:50:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 17:50:37 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 17:50:37 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 17:50:37 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:50:37 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:50:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@7343ed9d -2016-05-02 17:50:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@6a1ca744 -2016-05-02 17:50:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@4f4f23e6 -2016-05-02 17:50:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@6be90557 -2016-05-02 17:50:37 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 108 ms -2016-05-02 17:50:37 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 17:50:37 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 17:50:37 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 17:50:37 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 17:50:37 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 17:50:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:50:37 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:50:37 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 17:50:37 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 16 ms -2016-05-02 17:50:37 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 17:50:37 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:50:37 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 17:50:37 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:50:38 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:50:38 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:50:38 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:50:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:50:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:50:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:50:38 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 17:50:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:50:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:50:38 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 17:50:38 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 17:50:38 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 17:50:38 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 17:50:38 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 17:50:38 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 17:50:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 17:50:38 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:50:38 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 17:50:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 20 ms -2016-05-02 17:50:38 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 17:50:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:50:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:50:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:50:38 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 17:50:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:38 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 17:50:38 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:50:38 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 17:50:39 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:50:39 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:50:39 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 17:50:39 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:50:39 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:50:39 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 17:50:39 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 17:50:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:50:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:39 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:50:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 17:50:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:50:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:50:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:50:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:50:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:50:40 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:50:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 17:50:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:50:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:50:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:50:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:50:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:50:40 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:50:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 17:50:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:50:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:50:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:50:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:50:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:50:40 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:50:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 17:50:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:41 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:50:41 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:50:41 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:50:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:50:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:50:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:50:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:50:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:50:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:50:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:50:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:50:41 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 17:50:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:50:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:50:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:50:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:50:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:50:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:50:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:50:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:50:41 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 17:50:41 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 17:50:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:41 INFO WorkspaceExplorerServiceImpl:188 - end time - 131 msc 0 sec -2016-05-02 17:50:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:50:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:50:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:50:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:50:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:50:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:50:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:50:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:50:41 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 17:50:41 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 17:50:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:41 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 17:50:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:50:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:50:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:50:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:50:41 INFO WorkspaceExplorerServiceImpl:188 - end time - 158 msc 0 sec -2016-05-02 17:50:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 35 ms -2016-05-02 17:50:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:50:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:50:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 17:50:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-02 17:50:41 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 17:50:41 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 17:50:41 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 17:50:41 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 17:50:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:50:41 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 17:50:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:50:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:50:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:50:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 17:50:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:50:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:50:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:50:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:50:41 INFO WorkspaceExplorerServiceImpl:188 - end time - 403 msc 0 sec -2016-05-02 17:50:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:50:47 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:50:47 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:50:47 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 17:50:47 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:50:47 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:50:47 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 17:50:47 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 17:50:47 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 17:50:47 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 17:50:47 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 17:50:47 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 17:50:47 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:50:47 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 17:50:47 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 17:50:47 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 17:50:47 DEBUG WPS2SM:204 - Schema: null -2016-05-02 17:50:47 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 17:50:47 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:50:47 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 17:50:47 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 17:50:47 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 17:50:47 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 17:50:47 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 17:50:47 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 17:50:47 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 17:50:47 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 17:50:47 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:50:47 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 17:50:47 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 17:50:47 DEBUG WPS2SM:92 - WPS type: -2016-05-02 17:50:47 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 17:50:47 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 17:50:47 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:50:47 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 17:50:47 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 17:50:47 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 17:50:47 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 17:50:47 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 17:50:47 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 17:50:47 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 17:50:47 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 17:50:47 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:50:47 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 17:50:47 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 17:50:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:50:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:50:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:50:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:50:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:50:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:50:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:50:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:50:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:50:48 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:50:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:50:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:50:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:50:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:50:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:50:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:50:48 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:50:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:50:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:50:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:50:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:50:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:50:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:50:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:50:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:50:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:50:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:50:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:50:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:50:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:50:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:50:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:50:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:50:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:50:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:50:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:50:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:50:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:50:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:48 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:50:48 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:50:48 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:50:48 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:50:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:50:48 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:50:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:50:48 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:50:48 INFO WorkspaceExplorerServiceImpl:142 - end time - 201 msc 0 sec -2016-05-02 17:50:48 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:50:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:50:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:50:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:50:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:50:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:50:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:50:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:50:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:50:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:50:50 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:50:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:50:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:50:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:50:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:50:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:50:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:50:50 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:50:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:50:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:50:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:50:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:50:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:50:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:50:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:50:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:50:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:50:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:50:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:50:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:50:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:50:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:50:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:50:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:50:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:50:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:50:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:50:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:50:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:50:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:50:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:50:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:50:50 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:50:50 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:50:50 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:50:50 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:50:50 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:50:50 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:50:50 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:50:50 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:50:50 INFO WorkspaceExplorerServiceImpl:142 - end time - 241 msc 0 sec -2016-05-02 17:50:50 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:51:46 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 17:51:46 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 17:51:46 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 17:51:46 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:51:46 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:51:46 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:51:46 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:51:46 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@405cbddd -2016-05-02 17:51:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:51:46 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:51:46 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:51:46 DEBUG TemplateModel:83 - 2016-05-02 17:51:46, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:51:46 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:51:46 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 17:51:48 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:51:48 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:51:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:51:48 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:51:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:51:48 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:51:48 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:51:48 DEBUG TemplateModel:83 - 2016-05-02 17:51:48, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:51:48 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:51:48 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:51:48 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 150 ms -2016-05-02 17:51:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 17:51:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 17:51:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 17:51:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 17:51:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 17:51:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 17:51:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 17:51:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 17:51:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 17:51:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 17:51:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 17:51:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 17:51:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 17:51:48 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 17:51:48 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 17:51:48 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:51:49 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:51:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@5a75c609 -2016-05-02 17:51:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@54bdf9b7 -2016-05-02 17:51:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@77595f2e -2016-05-02 17:51:49 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@7830a8cc -2016-05-02 17:51:49 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 124 ms -2016-05-02 17:51:49 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 17:51:49 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 17:51:49 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 17:51:49 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 17:51:49 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 17:51:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:51:49 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:51:49 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 17:51:49 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 22 ms -2016-05-02 17:51:49 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 17:51:49 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:51:49 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 17:51:49 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:51:49 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:51:49 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:51:49 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:51:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:51:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:51:49 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:51:49 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 17:51:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:51:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:51:49 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 17:51:49 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 17:51:49 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 17:51:49 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 17:51:49 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 17:51:49 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 17:51:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 17:51:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:51:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 17:51:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-02 17:51:50 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 17:51:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:51:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:51:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:51:50 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 17:51:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:51:50 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 17:51:50 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:51:50 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 17:51:50 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:51:50 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:51:50 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 17:51:50 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:51:50 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:51:50 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 17:51:50 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 17:51:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:51:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:51:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:51:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:51:51 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:51:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 17:51:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:51:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:51:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:51:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:51:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:51:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:51:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:51:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:51:51 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:51:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 17:51:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:51:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:51:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:51:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:51:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:51:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:51:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:51:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:51:51 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:51:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 17:51:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:51:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:51:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:51:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:51:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:51:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:51:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:51:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:51:51 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:51:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 17:51:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:51:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:51:52 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:51:52 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:51:52 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:51:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:51:52 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:51:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:51:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:51:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:51:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:51:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:51:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:51:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:51:52 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 17:51:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:51:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:51:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:51:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:51:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:51:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:51:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:51:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:51:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:51:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:51:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:51:52 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 17:51:52 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 17:51:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:51:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:51:52 INFO WorkspaceExplorerServiceImpl:188 - end time - 115 msc 0 sec -2016-05-02 17:51:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 28 -2016-05-02 17:51:52 DEBUG ASLSession:458 - Getting security token: null in thread 28 -2016-05-02 17:51:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 28 -2016-05-02 17:51:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:51:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:51:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:51:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:51:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:51:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:51:52 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 17:51:52 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 17:51:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:51:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:51:52 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 17:51:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:51:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:51:52 INFO WorkspaceExplorerServiceImpl:188 - end time - 164 msc 0 sec -2016-05-02 17:51:52 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:51:52 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:51:53 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 21 ms -2016-05-02 17:51:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:51:53 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:51:53 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 17:51:53 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 20 ms -2016-05-02 17:51:53 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 17:51:53 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 17:51:53 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 17:51:53 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 17:51:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:51:53 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 17:51:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:51:53 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:51:53 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:51:53 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 17:51:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:51:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:51:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:51:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:51:53 INFO WorkspaceExplorerServiceImpl:188 - end time - 431 msc 0 sec -2016-05-02 17:51:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:51:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:51:57 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:51:57 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 17:51:57 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:51:57 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:51:58 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 17:51:58 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 17:51:58 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 17:51:58 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 17:51:58 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 17:51:58 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 17:51:58 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:51:58 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 17:51:58 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 17:51:58 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 17:51:58 DEBUG WPS2SM:204 - Schema: null -2016-05-02 17:51:58 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 17:51:58 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:51:58 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 17:51:58 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 17:51:58 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 17:51:58 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 17:51:58 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 17:51:58 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 17:51:58 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 17:51:58 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 17:51:58 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:51:58 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 17:51:58 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 17:51:58 DEBUG WPS2SM:92 - WPS type: -2016-05-02 17:51:58 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 17:51:58 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 17:51:58 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:51:58 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 17:51:58 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 17:51:58 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 17:51:58 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 17:51:58 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 17:51:58 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 17:51:58 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 17:51:58 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 17:51:58 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:51:58 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 17:51:58 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 17:51:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:51:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:51:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:51:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:51:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:51:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:51:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:51:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:51:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:51:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:51:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 28 -2016-05-02 17:51:58 DEBUG ASLSession:458 - Getting security token: null in thread 28 -2016-05-02 17:51:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 28 -2016-05-02 17:51:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:51:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:51:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:51:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:51:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:51:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:51:58 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:51:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:51:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:51:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:51:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:51:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:51:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:51:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:51:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:51:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:51:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:51:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:51:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:51:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:51:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:51:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:51:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:51:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:51:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:51:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:51:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:51:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:51:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:51:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:51:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:51:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:51:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:51:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:51:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:51:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:51:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:51:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:51:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:51:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:51:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:51:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:51:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:51:58 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:51:59 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:51:59 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:51:59 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:51:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:51:59 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:51:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:51:59 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:51:59 INFO WorkspaceExplorerServiceImpl:142 - end time - 1224 msc 1 sec -2016-05-02 17:51:59 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:52:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:52:00 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:52:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:52:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:52:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:52:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:52:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:52:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:52:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:52:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:52:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:52:00 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:52:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:52:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:52:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:52:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:52:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:52:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:52:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:52:00 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:52:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:52:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:52:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:52:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:52:00 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:52:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:52:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:52:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:52:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:52:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:52:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:52:00 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:52:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:52:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:52:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:52:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:52:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:52:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:52:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:52:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:52:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:52:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:52:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:52:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:52:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:52:00 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:52:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:52:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:52:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:52:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:52:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:52:00 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:52:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:52:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:52:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:52:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:52:00 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:52:01 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:52:01 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:52:01 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:52:01 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:52:01 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:52:01 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:52:01 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:52:01 INFO WorkspaceExplorerServiceImpl:142 - end time - 226 msc 0 sec -2016-05-02 17:52:01 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:53:06 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 17:53:06 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 17:53:06 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 17:53:07 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:53:07 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:53:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:53:07 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:53:07 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@11f501e7 -2016-05-02 17:53:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:53:07 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:53:07 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:53:07 DEBUG TemplateModel:83 - 2016-05-02 17:53:07, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:53:07 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:53:07 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 17:53:08 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:53:08 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:53:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:53:08 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:53:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:53:08 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:53:08 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:53:08 DEBUG TemplateModel:83 - 2016-05-02 17:53:08, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:53:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:53:08 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:53:09 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 188 ms -2016-05-02 17:53:09 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 17:53:09 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 17:53:09 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 17:53:09 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 17:53:09 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 17:53:09 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 17:53:09 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 17:53:09 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 17:53:09 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 17:53:09 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 17:53:09 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 17:53:09 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 17:53:09 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 17:53:09 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 17:53:09 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 17:53:09 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:53:09 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:53:09 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@282a1656 -2016-05-02 17:53:09 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@45ba41c6 -2016-05-02 17:53:09 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@501162b0 -2016-05-02 17:53:09 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@449d2f28 -2016-05-02 17:53:09 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 109 ms -2016-05-02 17:53:09 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 17:53:09 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 17:53:09 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 17:53:09 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 17:53:09 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 17:53:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:53:09 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:53:09 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 17:53:09 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 21 ms -2016-05-02 17:53:09 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 17:53:09 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:53:09 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 17:53:09 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:53:10 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:53:10 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:53:10 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:53:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:53:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:53:10 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:53:10 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 17:53:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:53:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:53:10 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 17:53:10 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 17:53:10 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 17:53:10 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 17:53:10 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 17:53:10 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 17:53:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:53:10 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:53:10 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 17:53:10 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-02 17:53:10 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 17:53:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:53:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:53:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:53:10 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 17:53:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:10 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 17:53:10 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:53:10 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 17:53:10 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:53:11 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:53:11 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 17:53:11 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:53:11 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:53:11 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 17:53:11 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 17:53:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:53:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:11 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:53:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 17:53:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:53:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:53:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:53:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:53:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:53:11 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:53:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 17:53:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:53:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:53:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:53:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:53:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:53:11 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:53:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 17:53:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:53:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:53:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:53:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:53:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:53:11 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:53:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 17:53:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:13 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:53:13 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:53:13 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:53:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:53:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:53:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:53:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:53:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:53:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:53:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:53:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:53:13 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 17:53:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:53:13 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:53:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:53:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:53:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:53:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:53:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:53:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:53:13 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 17:53:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:53:13 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:53:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:53:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:53:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:53:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:53:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:53:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:53:13 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 17:53:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:13 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 17:53:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:13 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 17:53:13 INFO WorkspaceExplorerServiceImpl:188 - end time - 129 msc 0 sec -2016-05-02 17:53:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 17:53:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:53:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:53:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:53:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 23 ms -2016-05-02 17:53:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 17:53:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:53:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 17:53:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-02 17:53:13 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 17:53:13 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 17:53:13 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 17:53:13 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 17:53:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 17:53:13 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 17:53:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 17:53:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:53:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:53:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 22 ms -2016-05-02 17:53:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 17:53:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 17:53:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 17:53:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:53:13 INFO WorkspaceExplorerServiceImpl:188 - end time - 466 msc 0 sec -2016-05-02 17:53:14 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 17:53:14 INFO WorkspaceExplorerServiceImpl:188 - end time - 1092 msc 1 sec -2016-05-02 17:53:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:53:16 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:53:16 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:53:16 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 17:53:16 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:53:16 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:53:17 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 17:53:17 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 17:53:17 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 17:53:17 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 17:53:17 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 17:53:17 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 17:53:17 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:53:17 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 17:53:17 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 17:53:17 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 17:53:17 DEBUG WPS2SM:204 - Schema: null -2016-05-02 17:53:17 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 17:53:17 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:53:17 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 17:53:17 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 17:53:17 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 17:53:17 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 17:53:17 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 17:53:17 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 17:53:17 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 17:53:17 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 17:53:17 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:53:17 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 17:53:17 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 17:53:17 DEBUG WPS2SM:92 - WPS type: -2016-05-02 17:53:17 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 17:53:17 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 17:53:17 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:53:17 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 17:53:17 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 17:53:17 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 17:53:17 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 17:53:17 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 17:53:17 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 17:53:17 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 17:53:17 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 17:53:17 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:53:17 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 17:53:17 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 17:53:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:53:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:53:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:53:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:53:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:53:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:53:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:53:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:53:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:53:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:53:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:53:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:53:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:53:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:53:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:53:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:53:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:53:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:53:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:53:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:53:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:53:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:53:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:53:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:53:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:53:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:53:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:53:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:53:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:53:17 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:53:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:53:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:53:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:53:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:53:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:53:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:53:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:53:17 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:53:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:53:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:53:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:53:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:53:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:53:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:53:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:53:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:53:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 260 msc 0 sec -2016-05-02 17:53:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:53:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:53:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:53:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:53:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:53:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:53:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:53:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:53:22 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:53:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:53:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:53:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:53:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:53:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:53:22 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:53:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:53:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:53:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:53:22 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:53:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:53:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:53:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:53:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:53:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:53:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:53:22 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:53:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:53:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:53:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:53:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:53:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:53:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:53:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:53:23 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:53:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:53:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:53:23 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:53:23 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:53:23 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:53:23 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:53:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:53:23 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:53:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:53:23 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:53:23 INFO WorkspaceExplorerServiceImpl:142 - end time - 204 msc 0 sec -2016-05-02 17:53:23 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:54:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:54:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:55:00 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 17:55:00 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 17:55:00 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 17:55:00 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:55:00 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:55:00 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:55:00 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:55:01 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@13fd80d4 -2016-05-02 17:55:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:55:01 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:55:01 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:55:01 DEBUG TemplateModel:83 - 2016-05-02 17:55:01, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:55:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:55:01 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 17:55:02 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:55:02 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:55:02 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:55:02 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:55:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:55:02 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:55:02 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:55:02 DEBUG TemplateModel:83 - 2016-05-02 17:55:02, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:55:02 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:55:02 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:55:03 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 158 ms -2016-05-02 17:55:03 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 17:55:03 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 17:55:03 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 17:55:03 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 17:55:03 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 17:55:03 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 17:55:03 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 17:55:03 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 17:55:03 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 17:55:03 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 17:55:03 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 17:55:03 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 17:55:03 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 17:55:03 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 17:55:03 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 17:55:03 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:55:03 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:55:03 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@76f7d020 -2016-05-02 17:55:03 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@4b7ceea0 -2016-05-02 17:55:03 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@6a607e58 -2016-05-02 17:55:03 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@4d1da123 -2016-05-02 17:55:03 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 171 ms -2016-05-02 17:55:03 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 17:55:03 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 17:55:03 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 17:55:03 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 17:55:03 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 17:55:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:55:03 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:55:03 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 17:55:03 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-02 17:55:03 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 17:55:03 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:55:03 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 17:55:03 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:55:04 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:55:04 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:55:04 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:55:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:55:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:55:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:55:04 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 17:55:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:55:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:55:04 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 17:55:04 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 17:55:04 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 17:55:04 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 17:55:04 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 17:55:04 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 17:55:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 17:55:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:55:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 17:55:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-02 17:55:04 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 17:55:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:55:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:55:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:55:04 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 17:55:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:55:04 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 17:55:04 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:55:04 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 17:55:04 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:55:04 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:55:04 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 17:55:05 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:55:05 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:55:05 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 17:55:05 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 17:55:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:55:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:55:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:55:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:55:05 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:55:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 17:55:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:55:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:55:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:55:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:55:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:55:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:55:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:55:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:55:05 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:55:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 17:55:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:55:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:55:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:55:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:55:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:55:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:55:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:55:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:55:05 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:55:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 17:55:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:55:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:55:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:55:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:55:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:55:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:55:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:55:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:55:05 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:55:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 17:55:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:55:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:55:07 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:55:07 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:55:07 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:55:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:55:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:55:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:55:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:55:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:55:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:55:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:55:07 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 17:55:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:55:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:55:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:55:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:55:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:55:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:55:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:55:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:55:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:55:07 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 17:55:07 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 17:55:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:55:07 INFO WorkspaceExplorerServiceImpl:188 - end time - 128 msc 0 sec -2016-05-02 17:55:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:55:07 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:55:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:55:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:55:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:55:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:55:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:55:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:55:07 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 17:55:07 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 17:55:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:55:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:55:07 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 17:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:55:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:55:07 INFO WorkspaceExplorerServiceImpl:188 - end time - 175 msc 0 sec -2016-05-02 17:55:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:55:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-02 17:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:55:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:55:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 17:55:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 21 ms -2016-05-02 17:55:07 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 17:55:07 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 17:55:07 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 17:55:07 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 17:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:55:07 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 17:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:55:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:55:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:55:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 17:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 17:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:55:07 INFO WorkspaceExplorerServiceImpl:188 - end time - 526 msc 0 sec -2016-05-02 17:55:58 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 17:55:58 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 17:55:58 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 17:55:58 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:55:58 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:55:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:55:58 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:55:58 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@5a8a2980 -2016-05-02 17:55:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:55:58 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:55:58 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:55:58 DEBUG TemplateModel:83 - 2016-05-02 17:55:58, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:55:58 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:55:58 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 17:56:00 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:56:00 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:56:00 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:56:00 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:56:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:56:00 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:56:00 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:56:00 DEBUG TemplateModel:83 - 2016-05-02 17:56:00, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:56:00 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:56:00 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:56:00 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 137 ms -2016-05-02 17:56:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 17:56:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 17:56:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 17:56:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 17:56:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 17:56:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 17:56:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 17:56:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 17:56:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 17:56:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 17:56:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 17:56:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 17:56:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 17:56:00 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 17:56:00 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 17:56:00 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:56:00 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:56:00 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@496e6c3d -2016-05-02 17:56:00 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@469e42ec -2016-05-02 17:56:00 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@3988fd25 -2016-05-02 17:56:00 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@5a6e08a4 -2016-05-02 17:56:01 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 114 ms -2016-05-02 17:56:01 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 17:56:01 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 17:56:01 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 17:56:01 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 17:56:01 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 17:56:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:56:01 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:56:01 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 17:56:01 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 18 ms -2016-05-02 17:56:01 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 17:56:01 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:56:01 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 17:56:01 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:56:01 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:56:01 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:56:01 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:56:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:56:01 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:56:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:56:01 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 17:56:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:01 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 17:56:01 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 17:56:01 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 17:56:01 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 17:56:01 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 17:56:01 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 17:56:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 17:56:01 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:56:01 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 17:56:01 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 25 ms -2016-05-02 17:56:02 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 17:56:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:56:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:02 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 17:56:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:02 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 17:56:02 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:56:02 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 17:56:02 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:56:02 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:56:02 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 17:56:02 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:56:02 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:56:02 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 17:56:02 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 17:56:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:02 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:56:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 17:56:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:02 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:56:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 17:56:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:02 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:56:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 17:56:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:03 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:56:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 17:56:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:04 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:56:04 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:56:04 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:56:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:56:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:56:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:56:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:04 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 17:56:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:56:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:04 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 17:56:04 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 17:56:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:04 INFO WorkspaceExplorerServiceImpl:188 - end time - 131 msc 0 sec -2016-05-02 17:56:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:56:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:56:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:56:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:04 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 17:56:04 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 17:56:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:05 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 17:56:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:56:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:05 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:56:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:56:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 27 ms -2016-05-02 17:56:05 INFO WorkspaceExplorerServiceImpl:188 - end time - 169 msc 0 sec -2016-05-02 17:56:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:56:05 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:56:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 17:56:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 20 ms -2016-05-02 17:56:05 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 17:56:05 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 17:56:05 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 17:56:05 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 17:56:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:56:05 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 17:56:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:56:05 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:56:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:56:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 23 ms -2016-05-02 17:56:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:56:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:56:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:56:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:05 INFO WorkspaceExplorerServiceImpl:188 - end time - 424 msc 0 sec -2016-05-02 17:56:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:56:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:56:09 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:56:09 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 17:56:09 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:56:09 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:56:09 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 17:56:09 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 17:56:09 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 17:56:09 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 17:56:09 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 17:56:09 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 17:56:09 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:56:09 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 17:56:09 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 17:56:09 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 17:56:09 DEBUG WPS2SM:204 - Schema: null -2016-05-02 17:56:09 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 17:56:09 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:56:09 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 17:56:09 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 17:56:09 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 17:56:09 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 17:56:09 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 17:56:09 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 17:56:09 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 17:56:09 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 17:56:09 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:56:09 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 17:56:09 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 17:56:09 DEBUG WPS2SM:92 - WPS type: -2016-05-02 17:56:09 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 17:56:09 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 17:56:09 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:56:09 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 17:56:09 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 17:56:09 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 17:56:09 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 17:56:09 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 17:56:09 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 17:56:09 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 17:56:09 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 17:56:09 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:56:09 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 17:56:09 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 17:56:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:56:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:56:09 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:56:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:56:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:56:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:56:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:09 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:56:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:56:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:56:09 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:56:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:56:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:56:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:56:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:56:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:56:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:09 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:56:09 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:56:09 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:56:09 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:56:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:56:09 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:56:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:56:09 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:56:09 INFO WorkspaceExplorerServiceImpl:142 - end time - 219 msc 0 sec -2016-05-02 17:56:09 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:56:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:56:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:56:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:56:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:56:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:11 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:56:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:56:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:56:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:56:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:56:11 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:56:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:56:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:56:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:56:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:56:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:56:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:56:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:12 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:56:12 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:56:12 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:56:12 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:56:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:56:12 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:56:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:56:12 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:56:12 INFO WorkspaceExplorerServiceImpl:142 - end time - 217 msc 0 sec -2016-05-02 17:56:12 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:56:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:56:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:56:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:56:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:56:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:56:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:56:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:56:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:56:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:56:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:56:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:56:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:56:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:56:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:56:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:56:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:56:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:56:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:56:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:56:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:56:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:56:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:56:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:56:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:56:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 176 msc 0 sec -2016-05-02 17:56:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:56:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:56:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:56:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:56:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:56:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:56:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:56:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:18 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:56:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:56:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:56:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:56:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:56:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:56:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:56:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:56:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:56:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:18 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:56:18 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:56:18 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:56:18 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:56:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:56:18 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:56:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:56:18 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:56:18 INFO WorkspaceExplorerServiceImpl:142 - end time - 225 msc 0 sec -2016-05-02 17:56:18 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:56:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:56:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:56:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:56:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:56:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:56:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:19 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:56:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:56:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:56:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:56:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:56:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:56:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:56:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:56:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:56:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:56:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:56:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:56:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:56:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:56:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:56:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:56:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:56:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:56:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:56:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:56:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:56:19 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:56:19 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:56:19 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:56:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:56:19 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:56:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:56:19 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:56:19 INFO WorkspaceExplorerServiceImpl:142 - end time - 202 msc 0 sec -2016-05-02 17:56:19 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:56:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 17:56:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 17:57:39 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 17:57:39 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 17:57:39 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 17:57:39 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:57:39 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:57:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:57:39 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:57:39 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@72b58fbb -2016-05-02 17:57:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:57:39 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:57:39 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:57:39 DEBUG TemplateModel:83 - 2016-05-02 17:57:39, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:57:39 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:57:39 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 17:57:41 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 17:57:41 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 17:57:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:57:41 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 17:57:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:57:41 INFO ASLSession:352 - Logging the entrance -2016-05-02 17:57:41 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 17:57:41 DEBUG TemplateModel:83 - 2016-05-02 17:57:41, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 17:57:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:57:41 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:57:41 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 156 ms -2016-05-02 17:57:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 17:57:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 17:57:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 17:57:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 17:57:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 17:57:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 17:57:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 17:57:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 17:57:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 17:57:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 17:57:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 17:57:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 17:57:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 17:57:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 17:57:41 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 17:57:41 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:57:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 17:57:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@2657c0ad -2016-05-02 17:57:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@65125ee2 -2016-05-02 17:57:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@50fe876a -2016-05-02 17:57:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@2848cd9d -2016-05-02 17:57:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 107 ms -2016-05-02 17:57:41 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 17:57:41 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 17:57:41 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 17:57:41 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 17:57:41 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 17:57:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:57:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:57:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 17:57:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 26 ms -2016-05-02 17:57:41 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 17:57:41 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:57:41 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 17:57:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:57:42 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:57:42 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:57:42 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:57:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:57:42 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:57:42 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:57:42 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 17:57:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:57:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:57:42 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 17:57:42 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 17:57:42 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 17:57:42 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 17:57:42 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 17:57:42 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 17:57:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 17:57:42 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:57:42 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 17:57:42 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-02 17:57:42 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 17:57:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:57:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:57:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:57:42 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 17:57:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:42 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 17:57:42 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:57:42 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 17:57:43 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:57:43 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:57:43 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 17:57:43 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 17:57:43 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 17:57:43 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 17:57:43 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 17:57:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:57:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:43 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 17:57:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 17:57:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:57:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:57:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:57:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:57:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:57:43 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:57:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 17:57:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:57:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:57:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:57:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:57:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:57:43 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:57:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 17:57:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:57:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:57:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:57:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:57:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:57:44 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 17:57:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 17:57:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:44 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 17:57:44 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 17:57:44 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 17:57:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:57:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:57:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:57:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:57:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:57:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:57:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:57:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:57:44 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 17:57:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:44 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 17:57:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:57:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:57:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:57:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:57:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:57:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:57:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:57:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:57:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 116 msc 0 sec -2016-05-02 17:57:44 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 17:57:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:44 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 17:57:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:57:44 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:57:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:57:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:57:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:57:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:57:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:57:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:57:44 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 17:57:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 17:57:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:57:45 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:57:45 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:57:45 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 24 ms -2016-05-02 17:57:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 17:57:45 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:57:45 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 17:57:45 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 17:57:45 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 24 ms -2016-05-02 17:57:45 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 17:57:45 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 17:57:45 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 17:57:45 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 17:57:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 17:57:45 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 17:57:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 17:57:45 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 17:57:45 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 17:57:45 INFO WorkspaceExplorerServiceImpl:188 - end time - 233 msc 0 sec -2016-05-02 17:57:45 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 17:57:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 17:57:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 17:57:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 17:57:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:57:45 INFO WorkspaceExplorerServiceImpl:188 - end time - 424 msc 0 sec -2016-05-02 17:57:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:57:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:57:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 17:57:56 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 17:57:56 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:57:56 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 17:57:56 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 17:57:56 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 17:57:56 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 17:57:56 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 17:57:56 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 17:57:56 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 17:57:56 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 17:57:56 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 17:57:56 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 17:57:56 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 17:57:56 DEBUG WPS2SM:204 - Schema: null -2016-05-02 17:57:56 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 17:57:56 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:57:56 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 17:57:56 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 17:57:56 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 17:57:56 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 17:57:56 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 17:57:56 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 17:57:56 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 17:57:56 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 17:57:56 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:57:56 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 17:57:56 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 17:57:56 DEBUG WPS2SM:92 - WPS type: -2016-05-02 17:57:56 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 17:57:56 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 17:57:56 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 17:57:56 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 17:57:56 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 17:57:56 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 17:57:56 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 17:57:56 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 17:57:56 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 17:57:56 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 17:57:56 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 17:57:56 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 17:57:56 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 17:57:56 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 17:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:57:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:57:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:57:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:57:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:57:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:57:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:57:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:57:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:57:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:57:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:57:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:57:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:57:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:57:57 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:57:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:57:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:57:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:57:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:57:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:57:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:57:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:57:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:57:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:57:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:57:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:57:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:57:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:57:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:57:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:57:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:57:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:57:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:57:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:57 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:57:57 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:57:57 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:57:57 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:57:57 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:57:57 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:57:57 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:57:57 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:57:57 INFO WorkspaceExplorerServiceImpl:142 - end time - 228 msc 0 sec -2016-05-02 17:57:57 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:57:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:57:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:57:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:57:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:57:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:57:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:57:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:57:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:57:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:57:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:57:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:57:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:57:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:57:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:57:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:57:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:57:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:57:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:57:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:57:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:57:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:57:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 17:57:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 17:57:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:57:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:57:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:57:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:57:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:57:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:57:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:57:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:57:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:57:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:57:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:57:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:57:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:57:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:57:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:57:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:57:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:57:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:57:59 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:57:59 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:57:59 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:57:59 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:57:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:57:59 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:57:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:57:59 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:57:59 INFO WorkspaceExplorerServiceImpl:142 - end time - 216 msc 0 sec -2016-05-02 17:57:59 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:58:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:58:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:58:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:58:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:58:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:58:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:58:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:58:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:58:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:58:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:58:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:58:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:58:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:58:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:58:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:58:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:58:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:58:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:58:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:58:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:58:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:58:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:58:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:58:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:58:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:58:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:58:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:58:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:58:05 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 17:58:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 17:58:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:58:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:58:05 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:58:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:58:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:58:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:58:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:58:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:58:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:58:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:58:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:58:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:58:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:58:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:58:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:58:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:58:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:58:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:58:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:58:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:58:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:58:05 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:58:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:58:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:58:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:58:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:58:05 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:58:05 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:58:05 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:58:05 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:58:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:58:05 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:58:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:58:05 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:58:05 INFO WorkspaceExplorerServiceImpl:142 - end time - 202 msc 0 sec -2016-05-02 17:58:05 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 17:58:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:58:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:58:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:58:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:58:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:58:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:58:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:58:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:58:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:58:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:58:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:58:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 17:58:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 17:58:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:58:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:58:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:58:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:58:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:58:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:58:05 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 17:58:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 17:58:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:58:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 17:58:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:58:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 17:58:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:58:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:58:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:58:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:58:05 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 17:58:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 17:58:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:58:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:58:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:58:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:58:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:58:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:58:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:58:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:58:05 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:58:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:58:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 17:58:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 17:58:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 17:58:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 17:58:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 17:58:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 17:58:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:58:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:58:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:58:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:58:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 17:58:05 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 17:58:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 17:58:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:58:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 17:58:05 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 17:58:06 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 17:58:06 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 17:58:06 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 17:58:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:58:06 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 17:58:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 17:58:06 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 17:58:06 INFO WorkspaceExplorerServiceImpl:142 - end time - 193 msc 0 sec -2016-05-02 17:58:06 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 18:51:55 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 18:51:55 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 18:51:55 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 18:51:55 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 18:51:55 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 18:51:55 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 18:51:55 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 18:51:55 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@7ed91589 -2016-05-02 18:51:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 18:51:55 INFO ASLSession:352 - Logging the entrance -2016-05-02 18:51:55 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 18:51:55 DEBUG TemplateModel:83 - 2016-05-02 18:51:55, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 18:51:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 18:51:55 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 18:51:58 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 18:51:58 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 18:51:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 18:51:58 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 18:51:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:51:58 INFO ASLSession:352 - Logging the entrance -2016-05-02 18:51:58 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 18:51:58 DEBUG TemplateModel:83 - 2016-05-02 18:51:58, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 18:51:58 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 18:51:58 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 18:51:58 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 117 ms -2016-05-02 18:51:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 18:51:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 18:51:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 18:51:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 18:51:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 18:51:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 18:51:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 18:51:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 18:51:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 18:51:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 18:51:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 18:51:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 18:51:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 18:51:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 18:51:58 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 18:51:59 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:51:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 18:51:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@76ff016b -2016-05-02 18:51:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@5b7ea73a -2016-05-02 18:51:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@6c623143 -2016-05-02 18:51:59 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@779509a0 -2016-05-02 18:51:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 200 ms -2016-05-02 18:51:59 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 18:51:59 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 18:51:59 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 18:51:59 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 18:51:59 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 18:51:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:51:59 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:51:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 18:51:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 20 ms -2016-05-02 18:51:59 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 18:51:59 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 18:51:59 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 18:51:59 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 18:51:59 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 18:51:59 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 18:51:59 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 18:51:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:51:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 18:51:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 18:51:59 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 18:51:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:51:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:51:59 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 18:51:59 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 18:51:59 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 18:51:59 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 18:51:59 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 18:51:59 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 18:51:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 18:51:59 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:51:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 18:51:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-02 18:52:00 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 18:52:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:52:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:52:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:52:00 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 18:52:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:00 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 18:52:00 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 18:52:00 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 18:52:00 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 18:52:00 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 18:52:00 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 18:52:00 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 18:52:00 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 18:52:00 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 18:52:00 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 18:52:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:52:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:00 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 18:52:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 18:52:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:52:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:52:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:52:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:52:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:52:01 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 18:52:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 18:52:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:52:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:52:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:52:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:52:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:52:01 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 18:52:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 18:52:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:52:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:52:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:52:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:52:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:52:01 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 18:52:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 18:52:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:02 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 18:52:02 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 18:52:02 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 18:52:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:52:02 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 18:52:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:52:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:52:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:52:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:52:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:52:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:52:02 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 18:52:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:52:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 18:52:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:52:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:52:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:52:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:52:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:52:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:52:02 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 18:52:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:52:03 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 18:52:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:52:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:52:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:52:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:52:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:52:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:52:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:03 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 18:52:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:03 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 18:52:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:03 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 18:52:03 INFO WorkspaceExplorerServiceImpl:188 - end time - 210 msc 0 sec -2016-05-02 18:52:03 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 18:52:03 INFO WorkspaceExplorerServiceImpl:188 - end time - 156 msc 0 sec -2016-05-02 18:52:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 18:52:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:52:03 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:52:03 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 18:52:03 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 32 ms -2016-05-02 18:52:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 18:52:03 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:52:03 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 18:52:03 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 19 ms -2016-05-02 18:52:03 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 18:52:03 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 18:52:03 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 18:52:03 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 18:52:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 18:52:03 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 18:52:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 18:52:03 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:52:03 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 18:52:03 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 18:52:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 18:52:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 18:52:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 18:52:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:52:03 INFO WorkspaceExplorerServiceImpl:188 - end time - 413 msc 0 sec -2016-05-02 18:52:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:52:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 18:52:06 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 18:52:06 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 18:52:06 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 18:52:06 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 18:52:06 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 18:52:06 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 18:52:06 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 18:52:06 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 18:52:06 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 18:52:06 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 18:52:06 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 18:52:06 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 18:52:06 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 18:52:06 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 18:52:06 DEBUG WPS2SM:204 - Schema: null -2016-05-02 18:52:06 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 18:52:06 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 18:52:06 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 18:52:06 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 18:52:06 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 18:52:06 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 18:52:06 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 18:52:06 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 18:52:06 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 18:52:06 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 18:52:06 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 18:52:06 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 18:52:06 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 18:52:06 DEBUG WPS2SM:92 - WPS type: -2016-05-02 18:52:06 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 18:52:06 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 18:52:06 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 18:52:06 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 18:52:06 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 18:52:06 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 18:52:06 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 18:52:06 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 18:52:06 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 18:52:06 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 18:52:06 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 18:52:06 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 18:52:06 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 18:52:06 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 18:52:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:52:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 18:52:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:52:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:52:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:52:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:52:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:52:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:52:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 18:52:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:52:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:52:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:52:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:52:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:52:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:52:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:52:07 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 18:52:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:52:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 18:52:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:52:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:52:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:52:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:52:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:52:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:52:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:52:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 18:52:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:52:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:52:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:52:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:52:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:52:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:52:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 18:52:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:52:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 18:52:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:52:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 18:52:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:07 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 18:52:07 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 18:52:07 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 18:52:07 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 18:52:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:52:07 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 18:52:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:52:07 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 18:52:07 INFO WorkspaceExplorerServiceImpl:142 - end time - 223 msc 0 sec -2016-05-02 18:52:07 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 18:52:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:52:09 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 18:52:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:52:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:52:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:52:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:52:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:52:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:52:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:52:10 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 18:52:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:52:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:52:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:52:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:52:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:52:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:52:10 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 18:52:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 18:52:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:52:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 18:52:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:52:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 18:52:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:52:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:52:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:52:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:52:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:52:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:52:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 18:52:10 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 18:52:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 18:52:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:52:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:52:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:52:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:52:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:52:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:52:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 18:52:10 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 18:52:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:52:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:52:10 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 18:52:10 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 18:52:10 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 18:52:10 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 18:52:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:52:10 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 18:52:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:52:10 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 18:52:10 INFO WorkspaceExplorerServiceImpl:142 - end time - 165 msc 0 sec -2016-05-02 18:52:10 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 18:52:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:52:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 18:53:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:53:45 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 18:54:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:54:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 18:55:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:55:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 18:56:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:56:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 18:57:41 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 18:57:41 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 18:57:41 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 18:57:41 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 18:57:41 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 18:57:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 18:57:41 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 18:57:41 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@622107a1 -2016-05-02 18:57:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:57:41 INFO ASLSession:352 - Logging the entrance -2016-05-02 18:57:41 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 18:57:41 DEBUG TemplateModel:83 - 2016-05-02 18:57:41, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 18:57:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 18:57:41 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 18:57:43 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 18:57:43 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 18:57:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 18:57:43 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 18:57:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:57:43 INFO ASLSession:352 - Logging the entrance -2016-05-02 18:57:43 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 18:57:43 DEBUG TemplateModel:83 - 2016-05-02 18:57:43, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 18:57:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 18:57:43 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 18:57:43 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 131 ms -2016-05-02 18:57:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 18:57:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 18:57:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 18:57:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 18:57:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 18:57:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 18:57:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 18:57:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 18:57:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 18:57:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 18:57:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 18:57:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 18:57:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 18:57:43 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 18:57:43 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 18:57:43 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:57:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 18:57:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@772d972a -2016-05-02 18:57:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@12da088c -2016-05-02 18:57:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@35cafe58 -2016-05-02 18:57:43 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@69b4422 -2016-05-02 18:57:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 101 ms -2016-05-02 18:57:43 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 18:57:44 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 18:57:44 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 18:57:44 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 18:57:44 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 18:57:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:57:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:57:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 18:57:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 27 ms -2016-05-02 18:57:44 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 18:57:44 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 18:57:44 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 18:57:44 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 18:57:44 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 18:57:44 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 18:57:44 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 18:57:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:57:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 18:57:44 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 18:57:44 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 18:57:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:57:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:57:44 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 18:57:44 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 18:57:44 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 18:57:44 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 18:57:44 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 18:57:44 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 18:57:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 18:57:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:57:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 18:57:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-02 18:57:44 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 18:57:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:57:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:57:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:57:44 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 18:57:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:44 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 18:57:44 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 18:57:45 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 18:57:45 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 18:57:45 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 18:57:45 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 18:57:45 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 18:57:45 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 18:57:45 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 18:57:45 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 18:57:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:57:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:45 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 18:57:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 18:57:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:57:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:57:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:57:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:57:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:57:45 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 18:57:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 18:57:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:57:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:57:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:57:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:57:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:57:45 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 18:57:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 18:57:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:57:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:57:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:57:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:57:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:57:45 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 18:57:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 18:57:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:46 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 18:57:46 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 18:57:46 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 18:57:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:57:46 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 18:57:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:57:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:57:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:57:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:57:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:57:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:57:46 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 18:57:46 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:46 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:57:46 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 18:57:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:57:46 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:57:46 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:57:46 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:57:46 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:57:46 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:46 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:57:47 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 18:57:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:47 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 18:57:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:57:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 18:57:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:57:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:57:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:57:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:57:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:57:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:57:47 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 18:57:47 INFO WorkspaceExplorerServiceImpl:188 - end time - 151 msc 0 sec -2016-05-02 18:57:47 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 18:57:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:47 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 18:57:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 18:57:47 INFO WorkspaceExplorerServiceImpl:188 - end time - 128 msc 0 sec -2016-05-02 18:57:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:57:47 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:57:47 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 18:57:47 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 51 ms -2016-05-02 18:57:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 18:57:47 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:57:47 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 18:57:47 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 19 ms -2016-05-02 18:57:47 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 18:57:47 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 18:57:47 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 18:57:47 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 18:57:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 18:57:47 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 18:57:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 18:57:47 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:57:47 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 18:57:47 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 18:57:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 18:57:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 18:57:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 18:57:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:57:47 INFO WorkspaceExplorerServiceImpl:188 - end time - 378 msc 0 sec -2016-05-02 18:57:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:57:50 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 18:57:50 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 18:57:50 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 18:57:50 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 18:57:50 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 18:57:51 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 18:57:51 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 18:57:51 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 18:57:51 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 18:57:51 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 18:57:51 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 18:57:51 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 18:57:51 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 18:57:51 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 18:57:51 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 18:57:51 DEBUG WPS2SM:204 - Schema: null -2016-05-02 18:57:51 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 18:57:51 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 18:57:51 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 18:57:51 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 18:57:51 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 18:57:51 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 18:57:51 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 18:57:51 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 18:57:51 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 18:57:51 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 18:57:51 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 18:57:51 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 18:57:51 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 18:57:51 DEBUG WPS2SM:92 - WPS type: -2016-05-02 18:57:51 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 18:57:51 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 18:57:51 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 18:57:51 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 18:57:51 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 18:57:51 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 18:57:51 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 18:57:51 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 18:57:51 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 18:57:51 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 18:57:51 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 18:57:51 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 18:57:51 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 18:57:51 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 18:57:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:57:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 18:57:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:57:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:57:51 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 18:57:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:57:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:57:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:57:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:57:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:57:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:57:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:57:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:57:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:57:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:57:51 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 18:57:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:57:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 18:57:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:57:51 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 18:57:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:57:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:57:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:57:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:57:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:57:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:57:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:57:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 18:57:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:57:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:57:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:57:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:57:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:57:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:57:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:57:51 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 18:57:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:57:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 18:57:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:51 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 18:57:51 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 18:57:51 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 18:57:51 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 18:57:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:57:51 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 18:57:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:57:51 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 18:57:51 INFO WorkspaceExplorerServiceImpl:142 - end time - 198 msc 0 sec -2016-05-02 18:57:51 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 18:57:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:57:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 18:57:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:57:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:57:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:57:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:57:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:57:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:57:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:57:54 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 18:57:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:57:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:57:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:57:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:57:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:57:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:57:54 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 18:57:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 18:57:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:57:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 18:57:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:57:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 18:57:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:57:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:57:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:57:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:57:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:57:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:57:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:57:54 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 18:57:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:57:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:57:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:57:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:57:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:57:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:57:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:57:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:57:54 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 18:57:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:57:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:57:54 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 18:57:54 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 18:57:54 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 18:57:54 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 18:57:54 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:57:54 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 18:57:54 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:57:54 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 18:57:54 INFO WorkspaceExplorerServiceImpl:142 - end time - 163 msc 0 sec -2016-05-02 18:57:54 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 18:58:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:58:14 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 18:58:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:58:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:58:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:58:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:58:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:58:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:58:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:58:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:58:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:58:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 18:58:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:58:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:58:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:58:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:58:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:58:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:58:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:58:14 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 18:58:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:58:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 18:58:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:58:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:58:14 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 18:58:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:58:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:58:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:58:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:58:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 18:58:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:58:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:58:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:58:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:58:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:58:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:58:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:58:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:58:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:58:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 18:58:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:58:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:58:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:58:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:58:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:58:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:58:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:58:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:58:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:58:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:58:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:58:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 18:58:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:58:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:58:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:58:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:58:14 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 18:58:14 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 18:58:14 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 18:58:14 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 18:58:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:58:14 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 18:58:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:58:14 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 18:58:14 INFO WorkspaceExplorerServiceImpl:142 - end time - 173 msc 0 sec -2016-05-02 18:58:14 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 18:58:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:58:22 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 18:58:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:58:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:58:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:58:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:58:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:58:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:58:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:58:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:58:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:58:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 18:58:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:58:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:58:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:58:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:58:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:58:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:58:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:58:22 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 18:58:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:58:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 18:58:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:58:22 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 18:58:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:58:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:58:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:58:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:58:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:58:22 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 18:58:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:58:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:58:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 18:58:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:58:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:58:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:58:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:58:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:58:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:58:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:58:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:58:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:58:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:58:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:58:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:58:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:58:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:58:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:58:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:58:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:58:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:58:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 18:58:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:58:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:58:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:58:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:58:22 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 18:58:22 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 18:58:22 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 18:58:22 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 18:58:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:58:22 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 18:58:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:58:22 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 18:58:22 INFO WorkspaceExplorerServiceImpl:142 - end time - 170 msc 0 sec -2016-05-02 18:58:22 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 18:58:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:58:36 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 18:59:38 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 18:59:38 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 18:59:39 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 18:59:39 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 18:59:39 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 18:59:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 18:59:39 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 18:59:39 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@45c859c7 -2016-05-02 18:59:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:59:39 INFO ASLSession:352 - Logging the entrance -2016-05-02 18:59:39 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 18:59:39 DEBUG TemplateModel:83 - 2016-05-02 18:59:39, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 18:59:39 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 18:59:39 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 18:59:41 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 18:59:41 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 18:59:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 18:59:41 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 18:59:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:59:41 INFO ASLSession:352 - Logging the entrance -2016-05-02 18:59:41 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 18:59:41 DEBUG TemplateModel:83 - 2016-05-02 18:59:41, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 18:59:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 18:59:41 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 18:59:41 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 109 ms -2016-05-02 18:59:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 18:59:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 18:59:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 18:59:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 18:59:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 18:59:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 18:59:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 18:59:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 18:59:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 18:59:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 18:59:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 18:59:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 18:59:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 18:59:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 18:59:41 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 18:59:41 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:59:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 18:59:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@30810bb -2016-05-02 18:59:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@6b2ee5d8 -2016-05-02 18:59:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@3257a812 -2016-05-02 18:59:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@4fe816ab -2016-05-02 18:59:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 94 ms -2016-05-02 18:59:41 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 18:59:41 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 18:59:41 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 18:59:41 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 18:59:41 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 18:59:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:59:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:59:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 18:59:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 21 ms -2016-05-02 18:59:41 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 18:59:41 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 18:59:41 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 18:59:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 18:59:42 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 18:59:42 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 18:59:42 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 18:59:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:59:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 18:59:42 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 18:59:42 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 18:59:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:59:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:59:42 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 18:59:42 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 18:59:42 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 18:59:42 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 18:59:42 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 18:59:42 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 18:59:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 18:59:42 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:59:42 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 18:59:42 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 32 ms -2016-05-02 18:59:42 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 18:59:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:59:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:59:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:59:42 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 18:59:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:42 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 18:59:42 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 18:59:42 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 18:59:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 18:59:42 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 18:59:42 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 18:59:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 18:59:42 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 18:59:42 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 18:59:42 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 18:59:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:59:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:42 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 18:59:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 18:59:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:59:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:59:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:59:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:59:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:59:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 18:59:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 18:59:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:59:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:59:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:59:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:59:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:59:43 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 18:59:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 18:59:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:59:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:59:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:59:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:59:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:59:43 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 18:59:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 18:59:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:44 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 18:59:44 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 18:59:44 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 18:59:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:59:44 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 18:59:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:59:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:59:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:59:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:59:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:59:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:59:44 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 18:59:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:59:44 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 18:59:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:59:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:59:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:59:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:59:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:59:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:59:44 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 18:59:44 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 18:59:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 119 msc 0 sec -2016-05-02 18:59:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:59:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 18:59:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:59:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:59:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:59:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:59:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:59:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:59:44 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 18:59:44 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 18:59:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:44 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 18:59:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 18:59:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:59:45 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:59:45 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 18:59:45 INFO WorkspaceExplorerServiceImpl:188 - end time - 131 msc 0 sec -2016-05-02 18:59:45 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 30 ms -2016-05-02 18:59:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 18:59:45 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:59:45 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 18:59:45 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 20 ms -2016-05-02 18:59:45 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 18:59:45 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 18:59:45 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 18:59:45 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 18:59:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 18:59:45 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 18:59:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 18:59:45 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 18:59:45 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 18:59:45 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 18:59:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 18:59:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 18:59:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 18:59:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:59:45 INFO WorkspaceExplorerServiceImpl:188 - end time - 341 msc 0 sec -2016-05-02 18:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:59:48 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 18:59:48 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 18:59:48 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 18:59:48 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 18:59:48 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 18:59:48 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 18:59:48 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 18:59:48 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 18:59:48 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 18:59:48 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 18:59:48 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 18:59:48 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 18:59:48 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 18:59:48 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 18:59:48 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 18:59:48 DEBUG WPS2SM:204 - Schema: null -2016-05-02 18:59:48 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 18:59:48 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 18:59:48 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 18:59:48 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 18:59:48 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 18:59:48 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 18:59:48 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 18:59:48 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 18:59:48 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 18:59:48 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 18:59:48 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 18:59:48 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 18:59:48 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 18:59:48 DEBUG WPS2SM:92 - WPS type: -2016-05-02 18:59:48 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 18:59:48 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 18:59:48 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 18:59:48 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 18:59:48 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 18:59:48 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 18:59:48 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 18:59:48 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 18:59:48 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 18:59:48 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 18:59:48 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 18:59:48 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 18:59:48 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 18:59:48 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 18:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:59:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 18:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:59:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:59:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:59:48 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 18:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 18:59:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:59:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:59:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:59:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:59:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:59:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:59:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:59:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:59:48 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 18:59:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 18:59:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 18:59:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 18:59:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:59:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 18:59:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:59:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:59:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:59:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:59:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:59:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:59:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:59:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 18:59:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:59:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:59:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:59:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:59:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:59:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:59:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:59:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 18:59:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:49 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 18:59:49 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 18:59:49 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 18:59:49 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 18:59:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:59:49 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 18:59:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:59:49 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 18:59:49 INFO WorkspaceExplorerServiceImpl:142 - end time - 217 msc 0 sec -2016-05-02 18:59:49 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 18:59:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:59:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 18:59:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:59:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:59:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:59:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:59:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:59:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:59:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:59:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 18:59:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 18:59:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:59:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:59:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:59:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:59:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:59:50 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 18:59:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 18:59:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 18:59:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 18:59:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:59:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 18:59:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 18:59:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:59:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:59:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:59:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:59:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:59:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:59:50 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 18:59:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:59:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 18:59:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 18:59:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 18:59:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 18:59:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 18:59:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 18:59:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 18:59:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 18:59:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 18:59:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 18:59:51 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 18:59:51 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 18:59:51 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 18:59:51 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 18:59:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:59:51 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 18:59:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 18:59:51 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 18:59:51 INFO WorkspaceExplorerServiceImpl:142 - end time - 172 msc 0 sec -2016-05-02 18:59:51 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:00:38 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 19:00:38 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 19:00:38 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 19:00:38 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:00:38 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:00:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:00:38 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:00:38 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@36212886 -2016-05-02 19:00:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:00:38 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:00:38 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:00:38 DEBUG TemplateModel:83 - 2016-05-02 19:00:38, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:00:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:00:38 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 19:00:40 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:00:40 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:00:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:00:40 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:00:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:00:40 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:00:40 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:00:40 DEBUG TemplateModel:83 - 2016-05-02 19:00:40, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:00:40 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:00:40 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:00:41 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 141 ms -2016-05-02 19:00:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 19:00:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 19:00:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 19:00:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 19:00:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 19:00:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 19:00:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 19:00:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 19:00:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 19:00:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 19:00:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 19:00:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 19:00:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 19:00:41 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 19:00:41 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 19:00:41 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:00:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:00:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@1dac2111 -2016-05-02 19:00:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@278c846e -2016-05-02 19:00:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@371d09bf -2016-05-02 19:00:41 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@42c28891 -2016-05-02 19:00:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 106 ms -2016-05-02 19:00:41 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 19:00:41 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 19:00:41 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 19:00:41 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 19:00:41 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 19:00:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:00:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:00:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 19:00:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 31 ms -2016-05-02 19:00:41 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 19:00:41 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:00:41 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 19:00:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:00:41 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:00:41 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:00:41 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:00:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:00:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:00:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:00:41 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 19:00:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:00:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:00:41 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 19:00:41 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 19:00:41 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 19:00:41 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 19:00:41 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 19:00:41 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 19:00:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 19:00:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:00:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 19:00:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 20 ms -2016-05-02 19:00:42 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 19:00:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:00:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:00:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:00:42 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 19:00:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:42 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 19:00:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:00:42 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:00:42 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 19:00:42 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:00:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:00:42 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 19:00:42 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:00:42 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 19:00:42 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 19:00:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:00:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:42 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:00:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 19:00:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:00:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:00:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:00:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:00:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:00:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:00:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 19:00:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:00:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:00:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:00:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:00:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:00:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:00:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 19:00:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:00:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:00:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:00:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:00:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:00:43 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:00:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 19:00:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:44 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:00:44 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:00:44 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-02 19:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 27 -2016-05-02 19:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-02 19:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:00:44 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 19:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:00:44 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 19:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:44 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 19:00:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 107 msc 0 sec -2016-05-02 19:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:00:44 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:00:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:00:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:00:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:00:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:00:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:00:44 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 19:00:44 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 19:00:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:44 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 19:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:00:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:00:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:00:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 141 msc 0 sec -2016-05-02 19:00:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-05-02 19:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:00:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:00:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 19:00:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 26 ms -2016-05-02 19:00:44 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 19:00:44 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 19:00:44 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 19:00:44 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 19:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:00:44 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 19:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:00:44 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:00:44 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:00:44 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 23 ms -2016-05-02 19:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:00:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:00:44 INFO WorkspaceExplorerServiceImpl:188 - end time - 352 msc 0 sec -2016-05-02 19:00:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:00:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:00:48 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:00:48 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 19:00:48 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:00:48 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:00:49 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 19:00:49 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 19:00:49 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 19:00:49 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 19:00:49 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 19:00:49 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 19:00:49 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:00:49 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 19:00:49 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 19:00:49 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 19:00:49 DEBUG WPS2SM:204 - Schema: null -2016-05-02 19:00:49 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 19:00:49 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:00:49 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 19:00:49 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 19:00:49 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 19:00:49 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 19:00:49 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 19:00:49 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 19:00:49 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 19:00:49 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 19:00:49 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:00:49 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 19:00:49 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 19:00:49 DEBUG WPS2SM:92 - WPS type: -2016-05-02 19:00:49 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 19:00:49 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 19:00:49 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:00:49 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 19:00:49 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 19:00:49 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 19:00:49 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 19:00:49 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 19:00:49 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 19:00:49 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 19:00:49 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 19:00:49 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:00:49 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 19:00:49 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 19:00:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:00:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:00:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-02 19:00:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:00:49 DEBUG ASLSession:458 - Getting security token: null in thread 27 -2016-05-02 19:00:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-02 19:00:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:00:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:00:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:00:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:00:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:00:49 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:00:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:00:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:00:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:00:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:00:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:00:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:00:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:00:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:00:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:00:49 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:00:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:00:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:00:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:00:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:00:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:00:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:00:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:00:49 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:00:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:00:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:00:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:00:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:00:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:00:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:00:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:00:49 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:00:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:49 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:00:49 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:00:49 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:00:49 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:00:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:00:49 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:00:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:00:49 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:00:49 INFO WorkspaceExplorerServiceImpl:142 - end time - 191 msc 0 sec -2016-05-02 19:00:49 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:00:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-02 19:00:51 DEBUG ASLSession:458 - Getting security token: null in thread 27 -2016-05-02 19:00:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-02 19:00:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:00:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:00:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:00:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:00:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:00:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:00:51 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:00:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:00:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:00:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:00:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:00:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:00:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:00:51 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:00:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:00:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 27 -2016-05-02 19:00:51 DEBUG ASLSession:458 - Getting security token: null in thread 27 -2016-05-02 19:00:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:00:51 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:00:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:00:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:00:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:00:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:00:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:00:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:00:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:00:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:00:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:00:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:00:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:00:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:00:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:00:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:00:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:00:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:00:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:00:51 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:00:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:51 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:00:51 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:00:51 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:00:51 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:00:51 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:00:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:00:51 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:00:51 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:00:51 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:00:51 INFO WorkspaceExplorerServiceImpl:142 - end time - 171 msc 0 sec -2016-05-02 19:00:51 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:01:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:01:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:03:09 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 19:03:09 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 19:03:09 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 19:03:09 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:03:09 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:03:09 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:03:09 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:03:09 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@35dc9734 -2016-05-02 19:03:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:09 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:03:09 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:03:09 DEBUG TemplateModel:83 - 2016-05-02 19:03:09, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:03:09 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:03:09 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 19:03:11 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:03:11 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:03:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:03:11 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:03:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:03:11 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:03:11 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:03:11 DEBUG TemplateModel:83 - 2016-05-02 19:03:11, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:03:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:03:11 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:03:11 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 116 ms -2016-05-02 19:03:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 19:03:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 19:03:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 19:03:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 19:03:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 19:03:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 19:03:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 19:03:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 19:03:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 19:03:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 19:03:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 19:03:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 19:03:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 19:03:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 19:03:11 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 19:03:11 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:03:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:03:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@37254e63 -2016-05-02 19:03:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@68ad0c2 -2016-05-02 19:03:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@182aba39 -2016-05-02 19:03:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@51dd97d4 -2016-05-02 19:03:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 111 ms -2016-05-02 19:03:12 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 19:03:12 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 19:03:12 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 19:03:12 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 19:03:12 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 19:03:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:03:12 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:03:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 19:03:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 24 ms -2016-05-02 19:03:12 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 19:03:12 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:03:12 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 19:03:12 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:03:12 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:03:12 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:03:12 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:03:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:03:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:03:12 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 19:03:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:12 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 19:03:12 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 19:03:12 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 19:03:12 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 19:03:12 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 19:03:12 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 19:03:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 19:03:12 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:03:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 19:03:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 23 ms -2016-05-02 19:03:12 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 19:03:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:12 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 19:03:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:12 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 19:03:13 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:03:13 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 19:03:13 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:03:13 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:03:13 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 19:03:13 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:03:13 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:03:13 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 19:03:13 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 19:03:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:13 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:03:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 19:03:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:13 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:03:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 19:03:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:13 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:03:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 19:03:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:13 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:03:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 19:03:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:15 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:03:15 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:03:15 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:15 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:15 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 19:03:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:15 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:15 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 19:03:15 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 19:03:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:15 INFO WorkspaceExplorerServiceImpl:188 - end time - 120 msc 0 sec -2016-05-02 19:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:15 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 19:03:15 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 19:03:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:15 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 19:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:03:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:03:15 INFO WorkspaceExplorerServiceImpl:188 - end time - 137 msc 0 sec -2016-05-02 19:03:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 31 ms -2016-05-02 19:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:03:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:03:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 19:03:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 20 ms -2016-05-02 19:03:15 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 19:03:15 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 19:03:15 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 19:03:15 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 19:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:03:15 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 19:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:03:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:03:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:03:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 19:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:03:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:15 INFO WorkspaceExplorerServiceImpl:188 - end time - 377 msc 0 sec -2016-05-02 19:03:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:03:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:03:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:03:19 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 19:03:19 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:03:19 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:03:19 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 19:03:19 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 19:03:19 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 19:03:19 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 19:03:19 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 19:03:19 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 19:03:19 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:03:19 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 19:03:19 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 19:03:19 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 19:03:19 DEBUG WPS2SM:204 - Schema: null -2016-05-02 19:03:19 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 19:03:19 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:03:19 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 19:03:19 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 19:03:19 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 19:03:19 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 19:03:19 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 19:03:19 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 19:03:19 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 19:03:19 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 19:03:19 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:03:19 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 19:03:19 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 19:03:19 DEBUG WPS2SM:92 - WPS type: -2016-05-02 19:03:19 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 19:03:19 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 19:03:19 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:03:19 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 19:03:19 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 19:03:19 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 19:03:19 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 19:03:19 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 19:03:19 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 19:03:19 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 19:03:19 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 19:03:19 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:03:19 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 19:03:19 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 19:03:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:20 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:03:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:03:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:20 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:03:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:03:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:20 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:03:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:20 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:03:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:20 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:03:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:03:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:03:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:03:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:03:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:03:20 INFO WorkspaceExplorerServiceImpl:142 - end time - 238 msc 0 sec -2016-05-02 19:03:20 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:03:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:21 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:03:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:21 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:03:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:03:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:21 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:03:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:03:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:03:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:03:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:03:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:03:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:03:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:21 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:03:22 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:03:22 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:03:22 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:03:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:22 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:03:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:22 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:03:22 INFO WorkspaceExplorerServiceImpl:142 - end time - 186 msc 0 sec -2016-05-02 19:03:22 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:03:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:03:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:25 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:03:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:25 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:03:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:03:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:03:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:25 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:25 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:03:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:25 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:03:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:25 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:03:25 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:03:25 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:03:25 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:03:25 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:25 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:03:25 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:25 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:03:25 INFO WorkspaceExplorerServiceImpl:142 - end time - 170 msc 0 sec -2016-05-02 19:03:25 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:03:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:03:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:26 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:03:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:03:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:03:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:03:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:26 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:26 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:03:27 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:03:27 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:03:27 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:03:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:27 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:03:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:27 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:03:27 INFO WorkspaceExplorerServiceImpl:142 - end time - 206 msc 0 sec -2016-05-02 19:03:27 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:03:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:03:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:03:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:03:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:03:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:28 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:03:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:03:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:28 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:03:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:28 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:03:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:28 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:03:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:28 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:03:28 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:03:28 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:03:28 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:03:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:28 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:03:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:28 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:03:28 INFO WorkspaceExplorerServiceImpl:142 - end time - 199 msc 0 sec -2016-05-02 19:03:28 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:03:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:03:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:29 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:29 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:03:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:03:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:03:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:03:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:03:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:03:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:03:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:03:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:03:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:30 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:03:30 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:03:30 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:03:30 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:03:30 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:30 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:03:30 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:30 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:03:30 INFO WorkspaceExplorerServiceImpl:142 - end time - 144 msc 0 sec -2016-05-02 19:03:30 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:03:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:03:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:30 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:03:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:30 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:03:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:03:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:03:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:03:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:03:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:03:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:30 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:03:31 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:03:31 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:03:31 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:03:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:31 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:03:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:31 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:03:31 INFO WorkspaceExplorerServiceImpl:142 - end time - 155 msc 0 sec -2016-05-02 19:03:31 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:03:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:31 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:38 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:03:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:38 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:03:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:03:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:38 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:03:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:03:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:03:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:03:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:38 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:03:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:38 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:03:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:38 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:03:38 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:03:38 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:03:38 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:03:38 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:38 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:03:38 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:38 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:03:38 INFO WorkspaceExplorerServiceImpl:142 - end time - 139 msc 0 sec -2016-05-02 19:03:38 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:03:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:03:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:03:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:03:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:03:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:58 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:03:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:03:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:03:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:03:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:03:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:03:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:58 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:03:59 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:03:59 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:03:59 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:03:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:59 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:03:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:59 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:03:59 INFO WorkspaceExplorerServiceImpl:142 - end time - 364 msc 0 sec -2016-05-02 19:03:59 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:03:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:03:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:03:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:03:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:03:59 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:03:59 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:03:59 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:03:59 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:03:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:59 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:03:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:03:59 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:03:59 INFO WorkspaceExplorerServiceImpl:142 - end time - 144 msc 0 sec -2016-05-02 19:03:59 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:03:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:03:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:03:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:03:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:03:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:03:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:03:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:03:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:03:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:04:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:04:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:04:00 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:04:00 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:04:00 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:04:00 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:04:00 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:04:00 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:04:00 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:04:00 INFO WorkspaceExplorerServiceImpl:142 - end time - 156 msc 0 sec -2016-05-02 19:04:00 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:04:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:04:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:00 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:04:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:04:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:04:00 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:04:00 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:04:00 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:04:00 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:04:00 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:04:00 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:04:00 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:04:00 INFO WorkspaceExplorerServiceImpl:142 - end time - 148 msc 0 sec -2016-05-02 19:04:00 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:04:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:04:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:00 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:04:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:04:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:04:00 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:00 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:04:01 INFO WorkspaceExplorerServiceImpl:142 - end time - 128 msc 0 sec -2016-05-02 19:04:01 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:04:01 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:04:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:04:01 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:04:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:01 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:04:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:04:01 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:04:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:04:01 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:04:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:04:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:04:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:04:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:04:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:04:01 INFO WorkspaceExplorerServiceImpl:142 - end time - 141 msc 0 sec -2016-05-02 19:04:01 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:04:01 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:04:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:04:01 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:04:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:01 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:04:01 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:04:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:04:01 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:04:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:04:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:04:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:04:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:04:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:04:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:04:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:04:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:04:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:04:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:04:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:04:01 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:04:01 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:04:01 INFO WorkspaceExplorerServiceImpl:142 - end time - 134 msc 0 sec -2016-05-02 19:04:01 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:04:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:04:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:04:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:04:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:05:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:05:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:06:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:06:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:08:04 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 19:08:04 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 19:08:04 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 19:08:04 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:08:04 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:08:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:08:04 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:08:04 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@71b38be9 -2016-05-02 19:08:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:08:04 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:08:04 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:08:04 DEBUG TemplateModel:83 - 2016-05-02 19:08:04, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:08:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:08:04 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 19:08:06 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:08:06 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:08:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:08:06 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:08:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:06 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:08:06 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:08:06 DEBUG TemplateModel:83 - 2016-05-02 19:08:06, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:08:06 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:08:06 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:08:06 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 134 ms -2016-05-02 19:08:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 19:08:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 19:08:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 19:08:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 19:08:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 19:08:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 19:08:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 19:08:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 19:08:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 19:08:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 19:08:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 19:08:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 19:08:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 19:08:06 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 19:08:06 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 19:08:06 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:08:06 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:08:06 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@769efe61 -2016-05-02 19:08:06 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@2a4da6a -2016-05-02 19:08:06 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@1360003f -2016-05-02 19:08:06 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@18d0fddf -2016-05-02 19:08:06 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 103 ms -2016-05-02 19:08:06 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 19:08:06 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 19:08:06 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 19:08:06 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 19:08:06 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 19:08:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:06 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:08:06 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 19:08:06 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 25 ms -2016-05-02 19:08:06 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 19:08:06 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:08:06 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 19:08:06 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:08:07 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:08:07 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:08:07 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:08:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:07 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:08:07 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 19:08:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:07 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 19:08:07 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 19:08:07 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 19:08:07 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 19:08:07 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 19:08:07 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 19:08:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 19:08:07 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:08:07 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 19:08:07 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-02 19:08:07 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 19:08:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:07 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 19:08:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:07 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 19:08:07 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:08:07 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:08:07 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 19:08:07 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:08:07 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:08:07 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 19:08:07 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 19:08:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:07 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:08:07 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 19:08:07 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:08:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 19:08:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:08 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:08:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 19:08:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:08 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:08:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 19:08:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:08 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:08:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 19:08:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:08 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:08:08 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:08:08 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:08:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:08:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:08:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:08:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:08 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 19:08:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:08:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:09 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 19:08:09 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 19:08:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:09 INFO WorkspaceExplorerServiceImpl:188 - end time - 135 msc 0 sec -2016-05-02 19:08:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:08:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:09 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 19:08:09 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 19:08:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:09 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 19:08:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:08:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:09 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:08:09 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:08:09 INFO WorkspaceExplorerServiceImpl:188 - end time - 150 msc 0 sec -2016-05-02 19:08:09 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-02 19:08:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:08:09 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:08:09 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 19:08:09 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-02 19:08:09 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 19:08:09 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 19:08:09 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 19:08:09 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 19:08:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:08:09 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 19:08:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:08:09 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:08:09 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:08:09 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 19:08:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:08:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:08:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:08:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:09 INFO WorkspaceExplorerServiceImpl:188 - end time - 368 msc 0 sec -2016-05-02 19:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:14 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:08:14 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 19:08:14 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:08:14 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:08:14 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 19:08:14 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 19:08:14 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 19:08:14 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 19:08:14 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 19:08:14 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 19:08:14 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:08:14 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 19:08:14 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 19:08:14 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 19:08:14 DEBUG WPS2SM:204 - Schema: null -2016-05-02 19:08:14 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 19:08:14 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:08:14 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 19:08:14 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 19:08:14 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 19:08:14 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 19:08:14 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 19:08:14 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 19:08:14 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 19:08:14 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 19:08:14 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:08:14 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 19:08:14 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 19:08:14 DEBUG WPS2SM:92 - WPS type: -2016-05-02 19:08:14 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 19:08:14 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 19:08:14 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:08:14 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 19:08:14 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 19:08:14 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 19:08:14 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 19:08:14 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 19:08:14 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 19:08:14 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 19:08:14 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 19:08:14 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:08:14 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 19:08:14 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 19:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:08:14 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:08:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:08:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:14 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:08:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:08:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:08:14 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:08:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:14 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:14 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:14 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:08:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:14 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:08:14 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:08:14 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:08:14 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:08:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:14 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:08:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:15 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:08:15 INFO WorkspaceExplorerServiceImpl:142 - end time - 202 msc 0 sec -2016-05-02 19:08:15 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:08:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:08:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:17 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:08:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:08:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:08:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:08:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:08:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:08:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:08:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:08:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 177 msc 0 sec -2016-05-02 19:08:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:19 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:08:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:08:19 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:08:19 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:08:19 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:08:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:19 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:08:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:19 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:08:19 INFO WorkspaceExplorerServiceImpl:142 - end time - 185 msc 0 sec -2016-05-02 19:08:19 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:20 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:20 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:20 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:20 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:20 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:20 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:20 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:21 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:08:21 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:08:21 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:08:21 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:08:21 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:21 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:08:21 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:21 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:08:21 INFO WorkspaceExplorerServiceImpl:142 - end time - 162 msc 0 sec -2016-05-02 19:08:21 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:08:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:08:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:35 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:08:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:08:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:35 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:08:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:08:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:35 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:08:35 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:08:35 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:08:35 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:08:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:35 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:08:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:35 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:08:35 INFO WorkspaceExplorerServiceImpl:142 - end time - 166 msc 0 sec -2016-05-02 19:08:35 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:08:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:36 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:08:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:36 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:08:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:36 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:08:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:08:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:36 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:08:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:36 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:36 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:36 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:08:36 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:08:36 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:08:36 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:08:36 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:36 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:08:36 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:36 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:08:36 INFO WorkspaceExplorerServiceImpl:142 - end time - 153 msc 0 sec -2016-05-02 19:08:36 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:37 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:08:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:37 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:08:37 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:08:37 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:08:37 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:08:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:37 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:08:37 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:37 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:08:37 INFO WorkspaceExplorerServiceImpl:142 - end time - 168 msc 0 sec -2016-05-02 19:08:37 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:37 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:08:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:08:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:38 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:08:38 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:08:38 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:08:38 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:08:38 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:38 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:08:38 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:38 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:08:38 INFO WorkspaceExplorerServiceImpl:142 - end time - 244 msc 0 sec -2016-05-02 19:08:38 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:08:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:39 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:39 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:08:39 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:08:39 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:08:39 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:08:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:39 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:08:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:39 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:08:39 INFO WorkspaceExplorerServiceImpl:142 - end time - 143 msc 0 sec -2016-05-02 19:08:39 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:40 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:40 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:40 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:08:40 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:08:40 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:08:40 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:08:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:40 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:08:40 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:40 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:08:40 INFO WorkspaceExplorerServiceImpl:142 - end time - 168 msc 0 sec -2016-05-02 19:08:40 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:08:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:08:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:42 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:42 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:08:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:08:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:08:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:42 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:08:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:08:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:08:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:08:42 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:08:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:42 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:08:42 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:08:42 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:08:42 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:08:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:42 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:08:42 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:42 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:08:42 INFO WorkspaceExplorerServiceImpl:142 - end time - 162 msc 0 sec -2016-05-02 19:08:42 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:08:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:43 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:08:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:08:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:43 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:08:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:08:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:08:43 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:08:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:08:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:08:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:08:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:08:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:08:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:08:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:08:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:08:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:08:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:08:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:08:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:08:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:08:43 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:08:43 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:08:43 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:08:43 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:08:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:43 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:08:43 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:08:43 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:08:43 INFO WorkspaceExplorerServiceImpl:142 - end time - 150 msc 0 sec -2016-05-02 19:08:43 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:08:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:08:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:09:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:09:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:09:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:09:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:09:12 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:09:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:09:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:12 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:09:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:09:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:09:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:09:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:09:13 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:09:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:09:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:09:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:09:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:09:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:09:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:09:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:13 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:09:13 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:09:13 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:09:13 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:09:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:09:13 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:09:13 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:09:13 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:09:13 INFO WorkspaceExplorerServiceImpl:142 - end time - 168 msc 0 sec -2016-05-02 19:09:13 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:09:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:09:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:34 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:09:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:09:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:09:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:09:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:09:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:34 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:09:34 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:09:34 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:09:34 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:09:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:09:34 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:09:34 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:09:34 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:09:34 INFO WorkspaceExplorerServiceImpl:142 - end time - 147 msc 0 sec -2016-05-02 19:09:34 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:09:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:09:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:34 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:09:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:09:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:09:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:09:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:09:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:35 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:09:35 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:09:35 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:09:35 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:09:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:09:35 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:09:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:09:35 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:09:35 INFO WorkspaceExplorerServiceImpl:142 - end time - 141 msc 0 sec -2016-05-02 19:09:35 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:09:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:09:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:09:35 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:09:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:35 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:09:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:09:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:09:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:09:35 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:09:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:09:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:09:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:09:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:09:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:35 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:09:35 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:09:35 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:09:35 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:09:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:09:35 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:09:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:09:35 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:09:35 INFO WorkspaceExplorerServiceImpl:142 - end time - 156 msc 0 sec -2016-05-02 19:09:35 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:09:36 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:09:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:09:36 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:09:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:36 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:09:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:09:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:09:36 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:09:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:09:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:09:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:09:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:09:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:09:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:09:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:09:36 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:09:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:36 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:09:36 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:09:36 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:09:36 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:09:36 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:09:36 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:09:36 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:09:36 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:09:36 INFO WorkspaceExplorerServiceImpl:142 - end time - 161 msc 0 sec -2016-05-02 19:09:36 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:09:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:09:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:09:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:09:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:09:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:09:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:10:19 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 19:10:19 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 19:10:19 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 19:10:19 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:10:19 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:10:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:10:19 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:10:19 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@4214f24e -2016-05-02 19:10:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:10:19 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:10:19 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:10:19 DEBUG TemplateModel:83 - 2016-05-02 19:10:19, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:10:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:10:19 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 19:10:21 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:10:21 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:10:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:10:21 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:10:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:10:21 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:10:21 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:10:21 DEBUG TemplateModel:83 - 2016-05-02 19:10:21, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:10:21 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:10:21 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:10:21 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 123 ms -2016-05-02 19:10:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 19:10:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 19:10:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 19:10:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 19:10:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 19:10:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 19:10:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 19:10:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 19:10:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 19:10:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 19:10:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 19:10:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 19:10:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 19:10:21 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 19:10:21 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 19:10:22 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:10:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:10:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@3385c8c0 -2016-05-02 19:10:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@5de49d4b -2016-05-02 19:10:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@78ded0bb -2016-05-02 19:10:22 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@5056003e -2016-05-02 19:10:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 133 ms -2016-05-02 19:10:22 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 19:10:22 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 19:10:22 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 19:10:22 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 19:10:22 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 19:10:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:10:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:10:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 19:10:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 18 ms -2016-05-02 19:10:22 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 19:10:22 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:10:22 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 19:10:22 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:10:22 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:10:22 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:10:22 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:10:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:10:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:10:22 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:10:22 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 19:10:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:10:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:10:22 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 19:10:22 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 19:10:22 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 19:10:22 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 19:10:22 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 19:10:22 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 19:10:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:10:22 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:10:22 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 19:10:22 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-02 19:10:22 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 19:10:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:10:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:10:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:10:22 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 19:10:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:10:22 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 19:10:23 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:10:23 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:10:23 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 19:10:23 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:10:23 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:10:23 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 19:10:23 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 19:10:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:10:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:10:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:10:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:10:23 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:10:23 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 19:10:23 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:10:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 19:10:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:10:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:10:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:10:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:10:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:10:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:10:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:10:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:10:23 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:10:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 19:10:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:10:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:10:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:10:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:10:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:10:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:10:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:10:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:10:23 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:10:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 19:10:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:10:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:10:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:10:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:10:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:10:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:10:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:10:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:10:23 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:10:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 19:10:23 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:10:23 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:10:25 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:10:25 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:10:25 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:10:25 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:10:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:10:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:10:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:10:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:10:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:10:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:10:25 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 19:10:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:10:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:10:25 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:10:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:10:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:10:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:10:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:10:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:10:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:10:25 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 19:10:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:10:25 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 19:10:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:10:25 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:10:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:10:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:10:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:10:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:10:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:10:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:10:25 INFO WorkspaceExplorerServiceImpl:188 - end time - 113 msc 0 sec -2016-05-02 19:10:25 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 19:10:25 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 19:10:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:10:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:10:25 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 19:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 19:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:10:25 INFO WorkspaceExplorerServiceImpl:188 - end time - 129 msc 0 sec -2016-05-02 19:10:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:10:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:10:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-05-02 19:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 19:10:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:10:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 19:10:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-02 19:10:25 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 19:10:25 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 19:10:25 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 19:10:25 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 19:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 19:10:25 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 19:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 19:10:25 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:10:25 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:10:25 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 20 ms -2016-05-02 19:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 19:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 19:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 19:10:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:10:25 INFO WorkspaceExplorerServiceImpl:188 - end time - 364 msc 0 sec -2016-05-02 19:10:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:10:28 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:10:28 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:10:28 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 19:10:28 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:10:28 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:10:28 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 19:10:28 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 19:10:28 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 19:10:28 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 19:10:28 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 19:10:28 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 19:10:28 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:10:28 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 19:10:28 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 19:10:28 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 19:10:28 DEBUG WPS2SM:204 - Schema: null -2016-05-02 19:10:28 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 19:10:28 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:10:28 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 19:10:28 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 19:10:28 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 19:10:28 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 19:10:28 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 19:10:28 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 19:10:28 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 19:10:28 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 19:10:28 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:10:28 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 19:10:28 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 19:10:28 DEBUG WPS2SM:92 - WPS type: -2016-05-02 19:10:28 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 19:10:28 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 19:10:28 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:10:28 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 19:10:28 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 19:10:28 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 19:10:28 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 19:10:28 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 19:10:28 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 19:10:28 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 19:10:28 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 19:10:28 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:10:28 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 19:10:28 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 19:11:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:11:14 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:12:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:12:09 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:12:32 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 19:12:32 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 19:12:32 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 19:12:32 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:12:32 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:12:32 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:12:32 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:12:32 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@321cf96b -2016-05-02 19:12:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:12:32 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:12:32 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:12:32 DEBUG TemplateModel:83 - 2016-05-02 19:12:32, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:12:32 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:12:32 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 19:12:34 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:12:34 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:12:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:12:34 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:12:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:12:34 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:12:34 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:12:34 DEBUG TemplateModel:83 - 2016-05-02 19:12:34, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:12:34 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:12:34 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:12:34 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 129 ms -2016-05-02 19:12:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 19:12:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 19:12:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 19:12:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 19:12:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 19:12:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 19:12:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 19:12:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 19:12:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 19:12:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 19:12:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 19:12:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 19:12:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 19:12:34 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 19:12:34 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 19:12:34 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:12:34 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:12:34 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@6a785809 -2016-05-02 19:12:34 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3dbedab1 -2016-05-02 19:12:34 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@27ed1929 -2016-05-02 19:12:34 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@94acbd9 -2016-05-02 19:12:34 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 114 ms -2016-05-02 19:12:34 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 19:12:34 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 19:12:34 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 19:12:34 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 19:12:34 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 19:12:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:12:34 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:12:34 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 19:12:34 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 27 ms -2016-05-02 19:12:34 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 19:12:34 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:12:34 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 19:12:34 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:12:35 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:12:35 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:12:35 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:12:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:12:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:12:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:12:35 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 19:12:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:12:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:12:35 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 19:12:35 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 19:12:35 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 19:12:35 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 19:12:35 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 19:12:35 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 19:12:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 19:12:35 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:12:35 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 19:12:35 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-02 19:12:35 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 19:12:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:12:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:12:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:12:35 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 19:12:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:12:35 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 19:12:35 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:12:35 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:12:35 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 19:12:35 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:12:35 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 19:12:35 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:12:35 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:12:35 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 19:12:35 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 19:12:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:12:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:12:35 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:12:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:12:35 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:12:35 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 19:12:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:12:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:12:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:12:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:12:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:12:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:12:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:12:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:12:36 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:12:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 19:12:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:12:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:12:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:12:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:12:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:12:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:12:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:12:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:12:36 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:12:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 19:12:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:12:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:12:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:12:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:12:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:12:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:12:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:12:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:12:36 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:12:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 19:12:36 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:12:36 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:12:37 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:12:37 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:12:37 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:12:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:12:37 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:12:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:12:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:12:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:12:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:12:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:12:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:12:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:12:37 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 19:12:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:12:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:12:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:12:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:12:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:12:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:12:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:12:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:12:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:12:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:12:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:12:37 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 19:12:37 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 19:12:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:12:37 INFO WorkspaceExplorerServiceImpl:188 - end time - 115 msc 0 sec -2016-05-02 19:12:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:12:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:12:37 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:12:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:12:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:12:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:12:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:12:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:12:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:12:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:12:37 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 19:12:37 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 19:12:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:12:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:12:37 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 19:12:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:12:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:12:38 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:12:38 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:12:38 INFO WorkspaceExplorerServiceImpl:188 - end time - 145 msc 0 sec -2016-05-02 19:12:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 22 ms -2016-05-02 19:12:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:12:38 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:12:38 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 19:12:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-02 19:12:38 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 19:12:38 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 19:12:38 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 19:12:38 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 19:12:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:12:38 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 19:12:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:12:38 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:12:38 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:12:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 19:12:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:12:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:12:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:12:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:12:38 INFO WorkspaceExplorerServiceImpl:188 - end time - 345 msc 0 sec -2016-05-02 19:12:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:12:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:12:41 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:12:41 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 19:12:41 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:12:41 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:12:41 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 19:12:41 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 19:12:41 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 19:12:41 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 19:12:41 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 19:12:41 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 19:12:41 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:12:41 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 19:12:41 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 19:12:41 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 19:12:41 DEBUG WPS2SM:204 - Schema: null -2016-05-02 19:12:41 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 19:12:41 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:12:41 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 19:12:41 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 19:12:41 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 19:12:41 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 19:12:41 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 19:12:41 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 19:12:41 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 19:12:41 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 19:12:41 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:12:41 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 19:12:41 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 19:12:41 DEBUG WPS2SM:92 - WPS type: -2016-05-02 19:12:41 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 19:12:41 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 19:12:41 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:12:41 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 19:12:41 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 19:12:41 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 19:12:41 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 19:12:41 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 19:12:41 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 19:12:41 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 19:12:41 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 19:12:41 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:12:41 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 19:12:41 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 19:13:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:13:27 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:14:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:14:22 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:15:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:15:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:17:09 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 19:17:09 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 19:17:09 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 19:17:09 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:17:09 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:17:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:17:09 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:17:09 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@3c3ac44b -2016-05-02 19:17:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:17:09 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:17:09 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:17:09 DEBUG TemplateModel:83 - 2016-05-02 19:17:09, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:17:09 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:17:09 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 19:17:11 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:17:11 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:17:11 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:17:11 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:17:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:17:11 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:17:11 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:17:11 DEBUG TemplateModel:83 - 2016-05-02 19:17:11, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:17:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:17:11 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:17:11 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 128 ms -2016-05-02 19:17:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 19:17:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 19:17:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 19:17:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 19:17:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 19:17:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 19:17:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 19:17:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 19:17:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 19:17:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 19:17:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 19:17:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 19:17:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 19:17:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 19:17:12 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 19:17:12 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:17:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:17:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@3ff418d2 -2016-05-02 19:17:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@98793fc -2016-05-02 19:17:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@1fad12f0 -2016-05-02 19:17:12 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@3ab6977f -2016-05-02 19:17:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 101 ms -2016-05-02 19:17:12 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 19:17:12 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 19:17:12 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 19:17:12 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 19:17:12 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 19:17:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:17:12 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:17:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 19:17:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 23 ms -2016-05-02 19:17:12 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 19:17:12 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:17:12 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 19:17:12 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:17:12 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:17:12 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:17:12 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:17:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:17:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:17:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:17:12 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 19:17:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:17:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:17:12 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 19:17:12 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 19:17:12 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 19:17:12 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 19:17:12 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 19:17:12 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 19:17:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 19:17:12 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:17:12 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 19:17:12 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-02 19:17:12 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 19:17:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:17:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:17:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:17:12 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 19:17:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:17:12 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 19:17:13 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:17:13 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:17:13 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 19:17:13 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:17:13 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:17:13 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 19:17:13 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 19:17:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:17:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:17:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:17:13 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:17:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:17:13 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 19:17:13 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:17:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 19:17:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:17:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:17:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:17:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:17:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:17:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:17:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:17:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:17:13 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:17:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 19:17:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:17:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:17:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:17:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:17:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:17:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:17:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:17:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:17:13 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:17:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 19:17:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:17:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:17:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:17:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:17:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:17:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:17:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:17:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:17:13 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:17:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 19:17:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:17:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:17:15 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:17:15 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:17:15 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:17:15 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:17:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:17:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:17:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:17:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:17:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:17:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:17:15 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 19:17:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:17:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:17:15 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:17:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:17:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:17:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:17:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:17:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:17:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:17:15 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 19:17:15 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 19:17:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:17:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:17:15 INFO WorkspaceExplorerServiceImpl:188 - end time - 109 msc 0 sec -2016-05-02 19:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:17:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:17:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:17:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:17:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:17:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:17:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:17:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:17:15 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 19:17:15 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 19:17:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:17:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:17:15 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 19:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 19:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:17:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:17:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:17:15 INFO WorkspaceExplorerServiceImpl:188 - end time - 138 msc 0 sec -2016-05-02 19:17:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-02 19:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 19:17:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:17:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 19:17:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-02 19:17:15 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 19:17:15 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 19:17:15 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 19:17:15 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 19:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 19:17:15 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 19:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 19:17:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:17:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:17:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 43 ms -2016-05-02 19:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 19:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 19:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-02 19:17:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:17:15 INFO WorkspaceExplorerServiceImpl:188 - end time - 363 msc 0 sec -2016-05-02 19:17:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:17:18 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:17:18 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:17:18 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 19:17:18 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:17:18 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:17:18 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 19:17:18 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 19:17:18 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 19:17:18 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 19:17:18 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 19:17:18 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 19:17:18 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:17:18 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 19:17:18 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 19:17:18 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 19:17:18 DEBUG WPS2SM:204 - Schema: null -2016-05-02 19:17:18 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 19:17:18 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:17:18 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 19:17:18 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 19:17:18 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 19:17:18 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 19:17:18 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 19:17:18 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 19:17:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 19:17:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 19:17:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:17:18 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 19:17:18 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 19:17:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 19:17:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 19:17:18 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 19:17:18 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:17:18 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 19:17:18 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 19:17:18 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 19:17:18 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 19:17:18 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 19:17:18 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 19:17:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 19:17:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 19:17:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:17:18 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 19:17:18 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 19:18:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:18:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:19:27 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 19:19:27 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 19:19:27 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 19:19:27 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:19:27 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:19:27 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:19:27 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:19:27 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@6182249e -2016-05-02 19:19:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:19:27 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:19:27 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:19:27 DEBUG TemplateModel:83 - 2016-05-02 19:19:27, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:19:27 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:19:27 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 19:19:29 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:19:29 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:19:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:19:29 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:19:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:19:29 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:19:29 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:19:29 DEBUG TemplateModel:83 - 2016-05-02 19:19:29, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:19:29 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:19:29 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:19:29 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 109 ms -2016-05-02 19:19:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 19:19:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 19:19:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 19:19:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 19:19:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 19:19:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 19:19:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 19:19:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 19:19:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 19:19:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 19:19:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 19:19:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 19:19:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 19:19:29 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 19:19:29 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 19:19:29 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:19:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:19:29 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@314cde60 -2016-05-02 19:19:29 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@78d52a1c -2016-05-02 19:19:29 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@1ba71cc0 -2016-05-02 19:19:29 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@54968d7f -2016-05-02 19:19:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 130 ms -2016-05-02 19:19:29 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 19:19:29 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 19:19:29 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 19:19:29 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 19:19:29 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 19:19:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:19:29 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:19:29 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 19:19:29 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 28 ms -2016-05-02 19:19:29 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 19:19:29 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:19:29 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 19:19:29 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:19:30 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:19:30 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:19:30 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:19:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:19:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:19:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:19:30 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 19:19:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:30 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 19:19:30 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 19:19:30 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 19:19:30 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 19:19:30 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 19:19:30 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 19:19:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:19:30 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:19:30 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 19:19:30 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-02 19:19:30 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 19:19:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:19:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:30 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 19:19:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:30 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 19:19:30 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:19:30 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 19:19:30 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:19:30 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:19:30 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 19:19:30 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:19:30 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:19:30 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 19:19:30 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 19:19:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:30 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:19:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 19:19:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:31 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:19:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 19:19:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:31 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:19:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 19:19:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:31 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:19:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 19:19:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:31 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:19:31 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:19:31 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:19:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:19:31 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:19:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:19:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:31 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 19:19:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:19:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:19:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:19:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:31 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 19:19:31 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 19:19:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:31 INFO WorkspaceExplorerServiceImpl:188 - end time - 113 msc 0 sec -2016-05-02 19:19:32 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 19:19:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:19:32 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:19:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:19:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:32 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 19:19:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:19:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:19:32 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 19:19:32 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:19:32 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:19:32 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 29 ms -2016-05-02 19:19:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:19:32 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:19:32 INFO WorkspaceExplorerServiceImpl:188 - end time - 164 msc 0 sec -2016-05-02 19:19:32 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 19:19:32 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-02 19:19:32 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 19:19:32 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 19:19:32 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 19:19:32 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 19:19:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:19:32 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 19:19:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:19:32 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:19:32 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:19:32 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 19:19:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:19:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:19:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:19:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:19:32 INFO WorkspaceExplorerServiceImpl:188 - end time - 357 msc 0 sec -2016-05-02 19:19:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:19:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:19:49 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:19:49 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 19:19:49 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:19:49 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:19:50 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 19:19:50 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 19:19:50 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 19:19:50 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 19:19:50 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 19:19:50 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 19:19:50 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:19:50 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 19:19:50 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 19:19:50 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 19:19:50 DEBUG WPS2SM:204 - Schema: null -2016-05-02 19:19:50 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 19:19:50 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:19:50 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 19:19:50 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 19:19:50 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 19:19:50 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 19:19:50 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 19:19:50 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 19:19:50 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 19:19:50 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 19:19:50 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:19:50 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 19:19:50 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 19:19:50 DEBUG WPS2SM:92 - WPS type: -2016-05-02 19:19:50 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 19:19:50 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 19:19:50 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:19:50 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 19:19:50 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 19:19:50 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 19:19:50 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 19:19:50 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 19:19:50 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 19:19:50 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 19:19:50 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 19:19:50 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:19:50 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 19:19:50 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 19:19:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:19:50 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:19:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:19:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:19:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:19:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:19:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:50 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:19:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:19:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:19:50 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:19:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:19:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:19:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:19:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:19:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:19:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:19:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:19:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:19:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:50 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:19:50 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:19:50 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:19:50 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:19:50 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:19:50 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:19:50 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:19:50 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:19:50 INFO WorkspaceExplorerServiceImpl:142 - end time - 192 msc 0 sec -2016-05-02 19:19:50 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:19:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:19:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:19:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:19:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:19:53 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:19:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:19:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:53 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:19:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:19:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:19:53 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:19:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:19:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:19:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:19:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:19:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:19:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:19:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:19:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:19:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:53 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:53 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:53 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:19:53 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:19:53 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:19:53 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:19:53 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:19:53 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:19:53 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:19:53 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:19:53 INFO WorkspaceExplorerServiceImpl:142 - end time - 160 msc 0 sec -2016-05-02 19:19:53 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:19:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:19:55 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:19:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:19:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:19:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:19:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:19:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:55 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:19:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:19:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:19:55 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:19:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:19:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:19:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:19:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:19:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:55 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:19:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:19:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:19:55 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:19:55 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:55 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:19:56 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:19:56 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:19:56 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:19:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:19:56 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:19:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:19:56 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:19:56 INFO WorkspaceExplorerServiceImpl:142 - end time - 186 msc 0 sec -2016-05-02 19:19:56 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:19:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:19:56 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:19:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:19:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:19:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:19:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:19:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:56 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:19:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:19:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:19:56 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:19:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:19:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:19:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:19:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:19:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:19:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:19:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:19:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:19:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:19:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:19:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:19:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:19:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:19:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:19:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:19:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:19:56 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:19:56 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:19:56 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:19:56 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:19:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:19:56 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:19:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:19:56 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:19:56 INFO WorkspaceExplorerServiceImpl:142 - end time - 186 msc 0 sec -2016-05-02 19:19:56 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:20:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:20:22 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:21:34 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 19:21:34 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 19:21:34 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 19:21:35 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:21:35 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:21:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:21:35 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:21:35 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@4ad67e48 -2016-05-02 19:21:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:21:35 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:21:35 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:21:35 DEBUG TemplateModel:83 - 2016-05-02 19:21:35, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:21:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:21:35 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 19:21:36 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:21:36 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:21:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:21:36 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:21:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:21:36 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:21:36 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:21:36 DEBUG TemplateModel:83 - 2016-05-02 19:21:36, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:21:36 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:21:36 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:21:36 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 114 ms -2016-05-02 19:21:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 19:21:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 19:21:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 19:21:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 19:21:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 19:21:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 19:21:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 19:21:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 19:21:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 19:21:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 19:21:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 19:21:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 19:21:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 19:21:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 19:21:37 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 19:21:37 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:21:37 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:21:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@33631465 -2016-05-02 19:21:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@504d34ac -2016-05-02 19:21:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@594a3452 -2016-05-02 19:21:37 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@756efc2e -2016-05-02 19:21:37 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 109 ms -2016-05-02 19:21:37 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 19:21:37 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 19:21:37 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 19:21:37 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 19:21:37 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 19:21:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:21:37 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:21:37 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 19:21:37 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 26 ms -2016-05-02 19:21:37 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 19:21:37 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:21:37 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 19:21:37 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:21:37 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:21:37 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:21:37 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:21:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:21:37 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:21:37 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:21:37 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 19:21:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:37 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 19:21:37 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 19:21:37 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 19:21:37 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 19:21:37 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 19:21:37 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 19:21:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 19:21:37 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:21:37 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 19:21:37 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-02 19:21:37 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 19:21:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:21:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:37 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 19:21:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:37 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 19:21:38 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:21:38 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:21:38 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 19:21:38 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:21:38 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 19:21:38 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:21:38 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:21:38 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 19:21:38 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 19:21:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:38 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:21:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 19:21:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:38 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:21:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 19:21:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:38 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:21:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 19:21:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:38 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:21:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 19:21:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:39 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:21:39 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:21:39 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:21:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:21:39 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:21:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:21:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:21:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:21:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:21:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:39 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 19:21:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:21:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:21:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:21:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:39 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 19:21:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:39 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 19:21:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:39 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 19:21:39 INFO WorkspaceExplorerServiceImpl:188 - end time - 124 msc 0 sec -2016-05-02 19:21:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:21:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:21:39 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:21:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:21:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-05-02 19:21:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:21:39 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:21:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 19:21:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-02 19:21:39 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 19:21:39 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 19:21:39 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 19:21:39 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 19:21:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:21:39 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 19:21:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:21:39 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:21:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:21:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 19:21:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:21:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:21:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-02 19:21:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:21:40 INFO WorkspaceExplorerServiceImpl:188 - end time - 395 msc 0 sec -2016-05-02 19:21:40 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 19:21:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:40 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 19:21:40 INFO WorkspaceExplorerServiceImpl:188 - end time - 65 msc 0 sec -2016-05-02 19:21:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:21:44 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:21:44 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:21:44 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 19:21:44 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:21:44 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:21:45 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 19:21:45 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 19:21:45 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 19:21:45 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 19:21:45 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 19:21:45 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 19:21:45 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:21:45 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 19:21:45 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 19:21:45 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 19:21:45 DEBUG WPS2SM:204 - Schema: null -2016-05-02 19:21:45 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 19:21:45 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:21:45 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 19:21:45 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 19:21:45 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 19:21:45 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 19:21:45 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 19:21:45 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 19:21:45 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 19:21:45 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 19:21:45 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:21:45 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 19:21:45 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 19:21:45 DEBUG WPS2SM:92 - WPS type: -2016-05-02 19:21:45 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 19:21:45 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 19:21:45 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:21:45 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 19:21:45 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 19:21:45 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 19:21:45 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 19:21:45 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 19:21:45 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 19:21:45 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 19:21:45 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 19:21:45 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:21:45 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 19:21:45 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 19:21:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:21:45 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:21:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:21:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:21:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:45 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:21:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:21:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:45 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:21:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:21:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:21:45 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:21:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:21:45 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:21:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:21:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:21:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:45 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:21:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:21:45 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:45 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:45 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:45 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:45 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:45 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:21:45 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:21:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:45 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:45 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:45 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:21:45 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:21:45 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:21:45 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:21:45 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:21:45 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:21:45 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:21:45 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:21:45 INFO WorkspaceExplorerServiceImpl:142 - end time - 200 msc 0 sec -2016-05-02 19:21:45 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:21:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:21:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:21:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:21:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:21:47 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:21:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:21:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:47 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:21:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:21:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:21:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:21:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:21:47 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:21:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:21:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:21:47 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:21:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:21:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:21:47 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:21:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:21:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:21:47 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:21:47 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:21:47 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:21:47 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:21:47 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:21:47 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:21:47 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:21:47 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:21:47 INFO WorkspaceExplorerServiceImpl:142 - end time - 202 msc 0 sec -2016-05-02 19:21:47 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:21:56 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:21:56 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:21:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:21:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:21:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:21:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:56 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:21:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:21:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:21:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:21:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:56 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:21:56 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:21:56 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:21:56 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:21:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:21:56 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:21:56 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 19:21:56 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 19:21:56 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:21:56 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:21:56 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:21:56 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:21:56 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:21:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:21:56 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:21:56 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:21:56 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:21:56 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:21:56 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:21:56 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:21:56 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:21:56 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:21:56 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5e4e33f4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73a6c6e6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4a4c615b, socketFactory=javax.net.DefaultSocketFactory@5c8bc378, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:21:56 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:21:56 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:21:56 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:246067}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:21:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:21:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1618842, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:21:56 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:21:56 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:21:56 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:21:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:21:56 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1856678}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2269779, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:21:56 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:56 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2128608}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:21:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:21:56 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:21:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1002256, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:21:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:21:56 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1542392}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:21:56 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:21:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1538586, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:21:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:21:56 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1856679}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856679}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:56 DEBUG command:56 - Command execution completed -2016-05-02 19:21:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856679}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:56 DEBUG command:56 - Command execution completed -2016-05-02 19:21:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856679}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:56 DEBUG command:56 - Command execution completed -2016-05-02 19:21:56 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:21:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856679}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:56 DEBUG command:56 - Command execution completed -2016-05-02 19:21:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856679}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:56 DEBUG command:56 - Command execution completed -2016-05-02 19:21:56 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1856679}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:21:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:21:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:21:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:21:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:21:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:21:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:21:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:21:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:57 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:21:57 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:21:57 DEBUG query:56 - Query completed -2016-05-02 19:21:57 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 19:21:57 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2128608} -2016-05-02 19:21:57 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:246067} -2016-05-02 19:21:57 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1542392} -2016-05-02 19:21:57 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1856679}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:21:57 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1856679} -2016-05-02 19:21:57 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1856678} -2016-05-02 19:21:57 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:21:57 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:21:57 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:21:57 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 19:21:57 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:21:57 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:21:57 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:21:57 INFO WorkspaceExplorerServiceImpl:188 - end time - 49 msc 0 sec -2016-05-02 19:21:57 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:21:57 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:21:58 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:21:58 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:21:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:21:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:21:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:21:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:58 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:21:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:21:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:21:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:21:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:58 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:21:58 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:21:58 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:21:58 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:21:58 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:21:58 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:21:58 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 19:21:58 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:21:58 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:21:58 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:21:58 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:21:58 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:21:58 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:21:58 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:21:58 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:21:58 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:21:58 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:21:58 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:21:58 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:21:58 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:21:58 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:21:58 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:21:58 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5e4e33f4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73a6c6e6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4a4c615b, socketFactory=javax.net.DefaultSocketFactory@5c8bc378, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:21:58 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:21:58 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:21:58 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1856680}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1411365, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:21:58 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:21:58 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:21:58 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:21:58 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:21:58 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2128609}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=956900, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:21:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:21:58 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:246068}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1639754, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:21:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:21:58 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1542393}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:21:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:21:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:21:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:21:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:21:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:21:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1988012, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:21:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:21:58 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1856681}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856681}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 DEBUG command:56 - Command execution completed -2016-05-02 19:21:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856681}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 DEBUG command:56 - Command execution completed -2016-05-02 19:21:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856681}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 DEBUG command:56 - Command execution completed -2016-05-02 19:21:58 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:21:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856681}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:21:58 DEBUG command:56 - Command execution completed -2016-05-02 19:21:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856681}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:21:58 DEBUG command:56 - Command execution completed -2016-05-02 19:21:58 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1856681}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:21:58 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:21:58 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:21:58 INFO WorkspaceExplorerServiceImpl:188 - end time - 45 msc 0 sec -2016-05-02 19:21:58 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:21:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:21:58 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:21:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:21:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:21:59 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:21:59 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:21:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:21:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:21:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:21:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:59 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:21:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:21:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:21:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:21:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:59 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:21:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:21:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:21:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:21:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:21:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:21:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:21:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:21:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:21:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:21:59 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:21:59 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:21:59 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:21:59 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 19:22:00 DEBUG query:56 - Query completed -2016-05-02 19:22:00 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 19:22:00 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2128609} -2016-05-02 19:22:00 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:246068} -2016-05-02 19:22:00 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1856681}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:22:00 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1856681} -2016-05-02 19:22:00 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1542393} -2016-05-02 19:22:00 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1856680} -2016-05-02 19:22:00 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:22:00 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:22:00 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:22:00 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 19:22:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:22:00 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:22:00 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:22:00 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 19:22:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:00 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:22:00 DEBUG ServiceEngine:193 - get() - start -2016-05-02 19:22:00 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:22:00 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:22:00 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:22:00 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:22:00 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:22:00 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:22:00 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 19:22:00 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:22:00 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:22:00 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:22:00 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:22:00 DEBUG Operation:173 - get(String) - start -2016-05-02 19:22:00 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:22:00 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:22:00 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:22:00 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:22:00 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:00 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:00 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:00 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5e4e33f4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73a6c6e6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4a4c615b, socketFactory=javax.net.DefaultSocketFactory@5c8bc378, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:22:00 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:22:00 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:22:00 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1856682}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:246069}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1393876, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:00 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:22:00 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:00 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1695904, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:00 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:00 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2128610}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1004347, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:00 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1542396}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1267460, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:22:00 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1856683}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856683}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 DEBUG command:56 - Command execution completed -2016-05-02 19:22:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856683}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 DEBUG command:56 - Command execution completed -2016-05-02 19:22:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856683}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 DEBUG command:56 - Command execution completed -2016-05-02 19:22:00 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:22:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856683}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 DEBUG command:56 - Command execution completed -2016-05-02 19:22:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856683}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 DEBUG command:56 - Command execution completed -2016-05-02 19:22:00 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:22:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856683}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 DEBUG command:56 - Command execution completed -2016-05-02 19:22:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856683}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 DEBUG command:56 - Command execution completed -2016-05-02 19:22:00 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:22:00 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1856683}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 DEBUG query:56 - Query completed -2016-05-02 19:22:00 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:22:00 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:22:00 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 19:22:00 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1856683}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 DEBUG update:56 - Update completed -2016-05-02 19:22:00 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1856683}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:00 DEBUG query:56 - Query completed -2016-05-02 19:22:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:01 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:22:01 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 19:22:01 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 19:22:01 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 19:22:01 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:22:01 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:22:01 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:22:01 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:22:01 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 19:22:01 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:22:01 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 19:22:01 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 19:22:01 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:22:01 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:22:01 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:22:01 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:22:01 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:22:01 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:22:01 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:22:01 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:01 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:01 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:01 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5e4e33f4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73a6c6e6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4a4c615b, socketFactory=javax.net.DefaultSocketFactory@5c8bc378, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:22:01 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:22:01 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:22:01 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:246070}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1192822, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:01 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:22:01 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:01 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1856684}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1518577, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:01 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:01 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:01 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2128611}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=903919, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:01 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1542397}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1484916, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:22:01 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1856685}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856685}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 DEBUG command:56 - Command execution completed -2016-05-02 19:22:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856685}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 DEBUG command:56 - Command execution completed -2016-05-02 19:22:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856685}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 DEBUG command:56 - Command execution completed -2016-05-02 19:22:01 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:22:01 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:22:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856685}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 DEBUG command:56 - Command execution completed -2016-05-02 19:22:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856685}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 DEBUG command:56 - Command execution completed -2016-05-02 19:22:01 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:22:01 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1856685}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:01 DEBUG query:56 - Query completed -2016-05-02 19:22:01 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:22:01 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2128611} -2016-05-02 19:22:01 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:246070} -2016-05-02 19:22:01 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1542397} -2016-05-02 19:22:01 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1856685}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:22:01 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1856685} -2016-05-02 19:22:01 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1856684} -2016-05-02 19:22:01 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:22:01 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:22:01 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:22:01 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:22:01 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:22:01 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 19:22:01 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:22:01 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:22:01 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:22:01 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1856683}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:22:01 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1856683} -2016-05-02 19:22:01 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2128610} -2016-05-02 19:22:01 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:246069} -2016-05-02 19:22:01 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1542396} -2016-05-02 19:22:01 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1856682} -2016-05-02 19:22:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:22:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:22:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:22:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:22:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:22:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:22:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:12 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:22:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:22:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:22:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:22:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:22:12 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:22:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:22:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:22:12 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:22:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:22:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:22:12 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:22:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:12 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:22:12 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:22:12 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:22:12 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:22:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:22:12 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:22:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:22:12 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:22:12 INFO WorkspaceExplorerServiceImpl:142 - end time - 169 msc 0 sec -2016-05-02 19:22:12 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:22:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:22:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:22:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:22:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:22:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:22:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:22:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:15 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:22:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:22:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:22:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:22:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:22:15 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:22:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:22:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:22:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:22:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:22:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:22:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:22:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:15 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:15 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:15 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:22:15 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:22:15 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:22:15 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:22:15 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:22:15 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:22:15 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:22:15 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:22:15 INFO WorkspaceExplorerServiceImpl:142 - end time - 151 msc 0 sec -2016-05-02 19:22:15 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:22:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:22:16 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:22:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:22:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:22:16 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:22:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:22:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:16 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:22:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:22:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:22:16 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:22:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:22:16 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:22:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:22:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:22:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:22:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:22:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:22:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:22:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:22:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:22:16 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:22:16 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:22:16 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:22:16 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:22:16 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:22:16 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:22:16 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:22:16 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:22:16 INFO WorkspaceExplorerServiceImpl:142 - end time - 159 msc 0 sec -2016-05-02 19:22:16 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:22:23 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:22:23 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:22:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:22:23 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:22:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:22:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:23 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:22:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:22:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:22:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:22:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:23 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:22:23 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:22:23 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:22:23 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:22:23 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:22:23 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:22:23 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 19:22:23 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 19:22:23 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:22:23 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:22:23 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:22:23 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:22:23 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:22:23 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:22:23 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:22:23 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:22:23 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:22:23 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:22:23 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:22:23 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:23 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:23 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:23 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5e4e33f4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73a6c6e6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4a4c615b, socketFactory=javax.net.DefaultSocketFactory@5c8bc378, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:22:23 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:22:23 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:22:24 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:246076}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1236280, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:24 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:22:24 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:24 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:24 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1856691}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2128617}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1100188, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1575305, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:24 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:24 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1542401}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1394104, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:22:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:22:24 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:22:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:22:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:24 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1856692}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1856692}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:22:24 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:22:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:22:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:24 DEBUG command:56 - Command execution completed -2016-05-02 19:22:24 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:22:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1856692}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 DEBUG command:56 - Command execution completed -2016-05-02 19:22:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1856692}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 DEBUG command:56 - Command execution completed -2016-05-02 19:22:24 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:22:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1856692}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 DEBUG command:56 - Command execution completed -2016-05-02 19:22:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1856692}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 DEBUG command:56 - Command execution completed -2016-05-02 19:22:24 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1856692}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:22:24 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:22:24 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:22:24 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:22:24 INFO WorkspaceExplorerServiceImpl:188 - end time - 40 msc 0 sec -2016-05-02 19:22:24 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:22:24 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:22:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:22:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:22:24 DEBUG query:56 - Query completed -2016-05-02 19:22:24 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 19:22:24 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2128617} -2016-05-02 19:22:24 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1856692}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:22:24 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1542401} -2016-05-02 19:22:24 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:246076} -2016-05-02 19:22:24 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1856692} -2016-05-02 19:22:24 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1856691} -2016-05-02 19:22:24 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:22:24 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:22:24 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:22:24 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 19:22:25 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:22:25 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:22:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:22:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:22:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:22:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:25 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:22:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:22:25 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:22:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:22:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:25 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:22:25 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:22:25 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:22:25 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:22:25 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:22:25 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:22:25 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 19:22:25 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:22:25 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:22:25 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:22:25 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:22:25 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:22:25 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:22:25 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:22:25 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:22:25 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:22:25 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:22:25 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:22:25 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:22:25 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:25 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:25 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:25 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5e4e33f4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73a6c6e6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4a4c615b, socketFactory=javax.net.DefaultSocketFactory@5c8bc378, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:22:25 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:22:25 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:22:25 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1856693}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1130480, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:25 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:22:25 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:25 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:25 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:25 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:246077}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1205604, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:25 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2128618}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1013766, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:25 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1542402}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1547822, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:22:25 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1856694}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1856694}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 DEBUG command:56 - Command execution completed -2016-05-02 19:22:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1856694}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 DEBUG command:56 - Command execution completed -2016-05-02 19:22:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1856694}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:22:25 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:22:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:22:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:25 DEBUG command:56 - Command execution completed -2016-05-02 19:22:25 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:22:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:25 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1856694}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:22:25 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:22:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:22:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:25 DEBUG command:56 - Command execution completed -2016-05-02 19:22:25 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1856694}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 DEBUG command:56 - Command execution completed -2016-05-02 19:22:25 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1856694}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:25 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:22:25 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:22:25 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:22:25 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:22:25 INFO WorkspaceExplorerServiceImpl:188 - end time - 46 msc 0 sec -2016-05-02 19:22:25 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:22:25 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:22:25 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:22:25 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:22:25 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:22:26 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:22:26 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:22:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:22:26 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:22:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:22:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:26 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:22:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:22:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:22:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:22:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:26 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:22:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:22:26 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:22:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:22:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:26 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:22:26 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:22:26 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:22:26 DEBUG query:56 - Query completed -2016-05-02 19:22:26 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 19:22:26 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:246077} -2016-05-02 19:22:26 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1856694}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:22:26 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2128618} -2016-05-02 19:22:26 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1542402} -2016-05-02 19:22:26 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1856694} -2016-05-02 19:22:26 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:22:26 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:22:26 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1856693} -2016-05-02 19:22:26 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:22:26 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 19:22:26 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 19:22:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:22:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:22:27 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:22:27 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-02 19:22:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:27 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:22:27 DEBUG ServiceEngine:193 - get() - start -2016-05-02 19:22:27 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:22:27 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:22:27 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-02 19:22:27 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:22:27 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:22:27 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:22:27 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 19:22:27 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:22:27 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:22:27 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:22:27 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:22:27 DEBUG Operation:173 - get(String) - start -2016-05-02 19:22:27 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:22:27 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:22:27 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:22:27 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:22:27 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:27 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:27 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:27 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5e4e33f4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73a6c6e6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4a4c615b, socketFactory=javax.net.DefaultSocketFactory@5c8bc378, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:22:27 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:22:27 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:22:27 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1856695}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1448284, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:27 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:22:27 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:27 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:27 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:27 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2128619}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:246078}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1318683, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1163119, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:27 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1542403}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1426572, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:22:27 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1856696}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1856696}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG command:56 - Command execution completed -2016-05-02 19:22:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1856696}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG command:56 - Command execution completed -2016-05-02 19:22:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1856696}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG command:56 - Command execution completed -2016-05-02 19:22:27 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:22:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1856696}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG command:56 - Command execution completed -2016-05-02 19:22:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1856696}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG command:56 - Command execution completed -2016-05-02 19:22:27 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:22:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1856696}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG command:56 - Command execution completed -2016-05-02 19:22:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1856696}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG command:56 - Command execution completed -2016-05-02 19:22:27 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:22:27 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1856696}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG query:56 - Query completed -2016-05-02 19:22:27 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-02 19:22:27 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:22:27 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 19:22:27 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1856696}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG update:56 - Update completed -2016-05-02 19:22:27 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1856696}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG query:56 - Query completed -2016-05-02 19:22:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:22:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:22:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:22:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:22:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:22:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:22:27 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:22:27 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-02 19:22:27 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 19:22:27 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 19:22:27 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:22:27 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:22:27 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-02 19:22:27 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:22:27 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 19:22:27 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:22:27 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 19:22:27 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 19:22:27 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:22:27 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:22:27 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:22:27 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:22:27 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:22:27 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:22:27 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:22:27 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:27 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:27 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:27 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5e4e33f4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73a6c6e6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4a4c615b, socketFactory=javax.net.DefaultSocketFactory@5c8bc378, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:22:27 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:22:27 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:22:27 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1856697}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1284066, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:27 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:22:27 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:27 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:22:27 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:27 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2128620}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:246079}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=771869, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1161838, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:22:27 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1856698}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1542404}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1856698}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG command:56 - Command execution completed -2016-05-02 19:22:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1133870, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:22:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1856698}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-02 19:22:27 DEBUG command:56 - Command execution completed -2016-05-02 19:22:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1856698}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG command:56 - Command execution completed -2016-05-02 19:22:27 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:22:27 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:22:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1856698}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG command:56 - Command execution completed -2016-05-02 19:22:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1856698}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG command:56 - Command execution completed -2016-05-02 19:22:27 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:22:27 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1856698}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:27 DEBUG query:56 - Query completed -2016-05-02 19:22:27 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-02 19:22:27 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2128620} -2016-05-02 19:22:27 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1856698}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:22:27 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1856698} -2016-05-02 19:22:27 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1542404} -2016-05-02 19:22:27 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1856697} -2016-05-02 19:22:27 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:246079} -2016-05-02 19:22:27 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:22:27 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:22:27 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 19:22:27 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 19:22:27 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 19:22:27 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 19:22:27 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 19:22:27 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-02 19:22:27 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-02 19:22:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:22:30 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:22:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:22:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:22:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:22:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:22:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:22:47 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:22:47 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:47 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:22:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:22:47 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:22:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:22:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:22:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:22:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:22:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:22:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:22:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:22:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:22:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:23:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:23:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:23:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:23:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:23:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:23:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:23:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:23:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:23:17 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:23:17 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:23:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:23:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:23:17 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:23:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:23:17 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:23:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:23:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:23:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:23:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:23:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:23:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:23:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:23:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:23:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:23:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:23:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:47 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:23:47 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:23:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:47 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:23:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:47 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:23:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:23:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:23:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:23:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:23:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:23:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:24:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:24:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:24:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:24:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:24:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:24:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:24:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:24:17 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:24:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:24:17 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:24:17 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:24:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:24:17 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:24:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:24:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:24:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:24:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:24:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:24:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:24:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:24:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:24:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:24:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:24:36 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:24:36 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:24:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:24:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:24:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:24:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:24:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:24:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:24:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:24:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:24:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:24:36 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:24:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:24:36 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:24:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:24:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:24:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:24:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:24:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:24:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:24:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:24:36 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:24:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:24:36 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:24:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:24:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:24:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:24:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:24:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:24:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:24:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:24:36 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:24:36 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1856696}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:24:36 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1856696} -2016-05-02 19:24:36 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:246078} -2016-05-02 19:24:36 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1542403} -2016-05-02 19:24:36 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1856695} -2016-05-02 19:24:36 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2128619} -2016-05-02 19:24:36 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:24:36 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:24:36 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 19:24:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:24:37 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:24:37 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:24:37 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 19:24:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:24:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:24:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:24:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:24:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:24:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:24:37 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:24:37 DEBUG ServiceEngine:193 - get() - start -2016-05-02 19:24:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:24:37 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:24:37 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:24:37 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:24:37 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:24:37 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:24:37 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 19:24:37 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:24:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:24:37 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:24:37 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:24:37 DEBUG Operation:173 - get(String) - start -2016-05-02 19:24:37 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:24:37 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:24:37 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:24:37 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:24:37 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:24:37 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:24:37 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:24:37 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5e4e33f4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73a6c6e6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4a4c615b, socketFactory=javax.net.DefaultSocketFactory@5c8bc378, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:24:37 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:24:37 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:24:37 INFO connection:71 - Opened connection [connectionId{localValue:42, serverValue:1856719}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1113487, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:24:37 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:24:37 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:24:37 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:24:37 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:24:37 INFO connection:71 - Opened connection [connectionId{localValue:44, serverValue:2128643}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:24:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:24:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=849289, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:24:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:24:37 INFO connection:71 - Opened connection [connectionId{localValue:41, serverValue:246103}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:24:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:24:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1207039, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:24:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:24:37 INFO connection:71 - Opened connection [connectionId{localValue:43, serverValue:1542428}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:24:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:24:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1125445, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:24:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-02 19:24:37 INFO connection:71 - Opened connection [connectionId{localValue:45, serverValue:1856720}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1856720}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:37 DEBUG command:56 - Command execution completed -2016-05-02 19:24:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1856720}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:37 DEBUG command:56 - Command execution completed -2016-05-02 19:24:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1856720}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG command:56 - Command execution completed -2016-05-02 19:24:38 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:24:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1856720}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG command:56 - Command execution completed -2016-05-02 19:24:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1856720}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG command:56 - Command execution completed -2016-05-02 19:24:38 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:24:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1856720}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG command:56 - Command execution completed -2016-05-02 19:24:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1856720}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG command:56 - Command execution completed -2016-05-02 19:24:38 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:24:38 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1856720}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG query:56 - Query completed -2016-05-02 19:24:38 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:24:38 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:24:38 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 19:24:38 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1856720}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG update:56 - Update completed -2016-05-02 19:24:38 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:45, serverValue:1856720}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG query:56 - Query completed -2016-05-02 19:24:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:24:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:24:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:24:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:24:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:24:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:24:38 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:24:38 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 19:24:38 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 19:24:38 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 19:24:38 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:24:38 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:24:38 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:24:38 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:24:38 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 19:24:38 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:24:38 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 19:24:38 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 19:24:38 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:24:38 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:24:38 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:24:38 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:24:38 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:24:38 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:24:38 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:24:38 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:24:38 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:24:38 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:24:38 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5e4e33f4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73a6c6e6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4a4c615b, socketFactory=javax.net.DefaultSocketFactory@5c8bc378, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:24:38 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:24:38 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:24:38 INFO connection:71 - Opened connection [connectionId{localValue:47, serverValue:1856721}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 INFO connection:71 - Opened connection [connectionId{localValue:46, serverValue:246104}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1242606, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:24:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=4555782, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:24:38 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:24:38 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:24:38 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:24:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:24:38 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:24:38 INFO connection:71 - Opened connection [connectionId{localValue:49, serverValue:2128644}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=759938, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:24:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:24:38 INFO connection:71 - Opened connection [connectionId{localValue:48, serverValue:1542429}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1192239, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:24:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:24:38 INFO connection:71 - Opened connection [connectionId{localValue:50, serverValue:1856722}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1856722}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG command:56 - Command execution completed -2016-05-02 19:24:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1856722}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG command:56 - Command execution completed -2016-05-02 19:24:38 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1856722}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG command:56 - Command execution completed -2016-05-02 19:24:38 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:24:38 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:24:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1856722}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG command:56 - Command execution completed -2016-05-02 19:24:38 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1856722}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG command:56 - Command execution completed -2016-05-02 19:24:38 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:24:38 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:50, serverValue:1856722}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:38 DEBUG query:56 - Query completed -2016-05-02 19:24:38 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:24:38 DEBUG connection:56 - Closing connection connectionId{localValue:49, serverValue:2128644} -2016-05-02 19:24:38 DEBUG connection:56 - Closing connection connectionId{localValue:46, serverValue:246104} -2016-05-02 19:24:38 INFO connection:71 - Closed connection [connectionId{localValue:50, serverValue:1856722}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:24:38 DEBUG connection:56 - Closing connection connectionId{localValue:48, serverValue:1542429} -2016-05-02 19:24:38 DEBUG connection:56 - Closing connection connectionId{localValue:50, serverValue:1856722} -2016-05-02 19:24:38 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:24:38 DEBUG connection:56 - Closing connection connectionId{localValue:47, serverValue:1856721} -2016-05-02 19:24:38 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:24:38 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:24:38 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:24:38 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:24:38 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 19:24:38 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:24:38 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:24:38 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:24:47 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-02 19:24:47 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:24:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-02 19:24:47 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:24:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-02 19:24:47 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:24:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:24:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:24:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:24:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:24:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:24:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:24:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:24:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:24:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:25:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:25:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:25:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:25:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:25:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:25:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:25:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:25:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:25:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:25:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:25:17 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:25:17 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:25:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:25:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:25:17 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:25:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:25:17 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:25:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:25:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:25:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:25:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:25:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:25:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:25:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:25:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:25:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:25:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:25:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:25:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:25:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:25:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:25:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:25:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:25:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:25:47 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:25:47 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:25:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:25:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:25:47 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:25:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:25:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:25:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:25:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:25:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:25:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:25:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:25:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:25:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:25:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:25:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:26:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:26:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:26:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:26:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:26:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:26:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:26:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:26:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:26:10 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:26:17 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:26:17 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:26:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:17 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:26:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:26:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:26:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:26:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:26:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:26:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:26:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:26:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:26:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:38 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:26:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:47 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:26:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:47 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:26:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:47 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:26:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:26:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:26:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:26:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:26:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:26:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:26:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:27:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:27:05 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:27:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:27:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:27:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:27:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:27:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:27:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:27:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:27:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:27:17 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:27:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:27:17 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:27:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:27:17 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:27:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:27:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:27:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:27:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:27:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:27:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:27:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:27:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:38 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:27:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:38 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:27:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:38 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:27:38 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:47 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:27:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:48 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:27:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:27:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:27:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:27:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:27:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:27:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:27:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:27:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:28:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:28:00 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:28:06 DEBUG connection:56 - Closing connection connectionId{localValue:44, serverValue:2128643} -2016-05-02 19:28:06 INFO connection:71 - Closed connection [connectionId{localValue:45, serverValue:1856720}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:28:06 DEBUG connection:56 - Closing connection connectionId{localValue:45, serverValue:1856720} -2016-05-02 19:28:06 DEBUG connection:56 - Closing connection connectionId{localValue:42, serverValue:1856719} -2016-05-02 19:28:06 DEBUG connection:56 - Closing connection connectionId{localValue:41, serverValue:246103} -2016-05-02 19:28:06 DEBUG connection:56 - Closing connection connectionId{localValue:43, serverValue:1542428} -2016-05-02 19:28:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:28:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:28:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:28:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:28:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:28:08 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:28:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:28:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:08 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:28:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:28:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:28:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:28:08 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:28:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:28:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:28:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:28:08 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:28:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:28:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:28:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:28:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:28:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:28:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:28:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:28:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:28:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:28:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:28:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:28:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:28:08 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:28:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:28:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:28:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:28:08 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:28:08 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:28:08 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:28:08 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:28:08 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:28:08 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:28:08 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:28:08 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:28:08 INFO WorkspaceExplorerServiceImpl:142 - end time - 151 msc 0 sec -2016-05-02 19:28:08 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:28:15 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:28:15 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:28:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:28:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:15 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:28:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:28:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:15 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:28:15 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:28:15 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:28:15 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:28:15 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:28:15 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:28:15 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 19:28:15 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 19:28:15 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:28:15 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:28:15 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:28:15 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:28:15 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:28:15 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:28:15 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:28:15 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:28:15 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:28:15 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:28:15 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:28:15 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:15 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:15 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:15 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5e4e33f4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73a6c6e6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4a4c615b, socketFactory=javax.net.DefaultSocketFactory@5c8bc378, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:28:15 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:28:15 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:28:15 INFO connection:71 - Opened connection [connectionId{localValue:52, serverValue:246142}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=912744, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:15 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:28:15 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:15 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:15 INFO connection:71 - Opened connection [connectionId{localValue:54, serverValue:2128683}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=907622, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:15 INFO connection:71 - Opened connection [connectionId{localValue:51, serverValue:1856759}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1289089, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:15 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:15 INFO connection:71 - Opened connection [connectionId{localValue:53, serverValue:1542467}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1167771, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:28:15 INFO connection:71 - Opened connection [connectionId{localValue:55, serverValue:1856760}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1856760}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 DEBUG command:56 - Command execution completed -2016-05-02 19:28:15 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1856760}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 DEBUG command:56 - Command execution completed -2016-05-02 19:28:15 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1856760}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 DEBUG command:56 - Command execution completed -2016-05-02 19:28:15 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:28:15 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1856760}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 DEBUG command:56 - Command execution completed -2016-05-02 19:28:15 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1856760}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 DEBUG command:56 - Command execution completed -2016-05-02 19:28:15 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:55, serverValue:1856760}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:28:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:28:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:28:15 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:28:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:28:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:15 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:28:15 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:28:15 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:28:15 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:28:15 INFO WorkspaceExplorerServiceImpl:188 - end time - 52 msc 0 sec -2016-05-02 19:28:15 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:28:15 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:28:15 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:28:16 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:28:16 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:28:16 DEBUG query:56 - Query completed -2016-05-02 19:28:16 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 19:28:16 DEBUG connection:56 - Closing connection connectionId{localValue:54, serverValue:2128683} -2016-05-02 19:28:16 INFO connection:71 - Closed connection [connectionId{localValue:55, serverValue:1856760}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:28:16 DEBUG connection:56 - Closing connection connectionId{localValue:55, serverValue:1856760} -2016-05-02 19:28:16 DEBUG connection:56 - Closing connection connectionId{localValue:52, serverValue:246142} -2016-05-02 19:28:16 DEBUG connection:56 - Closing connection connectionId{localValue:53, serverValue:1542467} -2016-05-02 19:28:16 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:28:16 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:28:16 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:28:16 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 19:28:16 DEBUG connection:56 - Closing connection connectionId{localValue:51, serverValue:1856759} -2016-05-02 19:28:16 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:28:16 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:28:16 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:28:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:16 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:28:16 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:28:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:16 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:28:16 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:28:16 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:28:16 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:28:16 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:28:16 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:28:16 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 19:28:16 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:28:16 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:28:16 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:28:16 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:28:16 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:28:16 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:28:16 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:28:16 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:28:16 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:28:16 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:28:16 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:28:16 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:28:16 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:16 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:16 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:16 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5e4e33f4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73a6c6e6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4a4c615b, socketFactory=javax.net.DefaultSocketFactory@5c8bc378, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:28:16 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:28:16 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:28:16 INFO connection:71 - Opened connection [connectionId{localValue:57, serverValue:1856762}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1313143, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:16 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:28:16 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:16 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:16 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:16 INFO connection:71 - Opened connection [connectionId{localValue:56, serverValue:246143}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 INFO connection:71 - Opened connection [connectionId{localValue:59, serverValue:2128684}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=907081, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=713335, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:16 INFO connection:71 - Opened connection [connectionId{localValue:58, serverValue:1542468}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1184364, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:28:16 INFO connection:71 - Opened connection [connectionId{localValue:60, serverValue:1856763}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:60, serverValue:1856763}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 DEBUG command:56 - Command execution completed -2016-05-02 19:28:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:60, serverValue:1856763}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:28:16 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:28:16 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:28:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:28:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:16 DEBUG command:56 - Command execution completed -2016-05-02 19:28:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:60, serverValue:1856763}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 DEBUG command:56 - Command execution completed -2016-05-02 19:28:16 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:28:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:60, serverValue:1856763}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 DEBUG command:56 - Command execution completed -2016-05-02 19:28:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:60, serverValue:1856763}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 DEBUG command:56 - Command execution completed -2016-05-02 19:28:16 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:60, serverValue:1856763}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:16 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:28:16 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:28:16 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:28:16 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:28:16 INFO WorkspaceExplorerServiceImpl:188 - end time - 50 msc 0 sec -2016-05-02 19:28:16 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:28:16 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:28:16 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:28:16 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:28:16 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:28:17 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:28:17 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:28:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:28:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:28:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:28:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:17 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:28:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:28:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:28:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:28:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:17 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:28:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:28:17 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:28:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:28:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:17 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:28:17 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:28:17 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:28:17 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 19:28:18 DEBUG query:56 - Query completed -2016-05-02 19:28:18 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 19:28:18 DEBUG connection:56 - Closing connection connectionId{localValue:59, serverValue:2128684} -2016-05-02 19:28:18 DEBUG connection:56 - Closing connection connectionId{localValue:56, serverValue:246143} -2016-05-02 19:28:18 DEBUG connection:56 - Closing connection connectionId{localValue:58, serverValue:1542468} -2016-05-02 19:28:18 INFO connection:71 - Closed connection [connectionId{localValue:60, serverValue:1856763}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:28:18 DEBUG connection:56 - Closing connection connectionId{localValue:60, serverValue:1856763} -2016-05-02 19:28:18 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:28:18 DEBUG connection:56 - Closing connection connectionId{localValue:57, serverValue:1856762} -2016-05-02 19:28:18 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:28:18 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:28:18 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 19:28:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:28:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:28:18 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:28:18 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 19:28:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:18 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:28:18 DEBUG ServiceEngine:193 - get() - start -2016-05-02 19:28:18 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:28:18 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:28:18 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:28:18 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:28:18 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:28:18 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:28:18 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 19:28:18 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:28:18 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:28:18 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:28:18 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:28:18 DEBUG Operation:173 - get(String) - start -2016-05-02 19:28:18 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:28:18 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:28:18 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:28:18 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:28:18 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:18 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:18 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:18 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5e4e33f4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73a6c6e6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4a4c615b, socketFactory=javax.net.DefaultSocketFactory@5c8bc378, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:28:18 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:28:18 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:28:18 INFO connection:71 - Opened connection [connectionId{localValue:61, serverValue:246144}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1071503, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:18 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:28:18 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:18 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:18 INFO connection:71 - Opened connection [connectionId{localValue:64, serverValue:2128685}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=692163, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:18 INFO connection:71 - Opened connection [connectionId{localValue:62, serverValue:1856764}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1129307, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:18 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:18 INFO connection:71 - Opened connection [connectionId{localValue:63, serverValue:1542469}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1197996, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:28:18 INFO connection:71 - Opened connection [connectionId{localValue:65, serverValue:1856765}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:65, serverValue:1856765}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG command:56 - Command execution completed -2016-05-02 19:28:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:65, serverValue:1856765}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG command:56 - Command execution completed -2016-05-02 19:28:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:65, serverValue:1856765}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG command:56 - Command execution completed -2016-05-02 19:28:18 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:28:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:65, serverValue:1856765}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG command:56 - Command execution completed -2016-05-02 19:28:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:65, serverValue:1856765}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG command:56 - Command execution completed -2016-05-02 19:28:18 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:28:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:65, serverValue:1856765}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG command:56 - Command execution completed -2016-05-02 19:28:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:65, serverValue:1856765}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG command:56 - Command execution completed -2016-05-02 19:28:18 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:28:18 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:65, serverValue:1856765}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG query:56 - Query completed -2016-05-02 19:28:18 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:28:18 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:28:18 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 19:28:18 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:65, serverValue:1856765}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG update:56 - Update completed -2016-05-02 19:28:18 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:65, serverValue:1856765}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG query:56 - Query completed -2016-05-02 19:28:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:28:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:28:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:28:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:28:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:28:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:28:18 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:28:18 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 19:28:18 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 19:28:18 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 19:28:18 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:28:18 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:28:18 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:28:18 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:28:18 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 19:28:18 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:28:18 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 19:28:18 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 19:28:18 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:28:18 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:28:18 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:28:18 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:28:18 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:28:18 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:28:18 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:28:18 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:18 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:18 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:18 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@5e4e33f4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@73a6c6e6, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@4a4c615b, socketFactory=javax.net.DefaultSocketFactory@5c8bc378, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:28:18 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:28:18 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:28:18 INFO connection:71 - Opened connection [connectionId{localValue:66, serverValue:246145}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 INFO connection:71 - Opened connection [connectionId{localValue:67, serverValue:1856766}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1266462, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:18 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:28:18 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=928187, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:18 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:28:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:18 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:18 INFO connection:71 - Opened connection [connectionId{localValue:69, serverValue:2128686}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=672280, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:28:18 INFO connection:71 - Opened connection [connectionId{localValue:68, serverValue:1542470}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1728168, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:28:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:28:18 INFO connection:71 - Opened connection [connectionId{localValue:70, serverValue:1856767}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:70, serverValue:1856767}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG command:56 - Command execution completed -2016-05-02 19:28:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:70, serverValue:1856767}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG command:56 - Command execution completed -2016-05-02 19:28:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:70, serverValue:1856767}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG command:56 - Command execution completed -2016-05-02 19:28:18 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:28:18 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:28:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:70, serverValue:1856767}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG command:56 - Command execution completed -2016-05-02 19:28:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:70, serverValue:1856767}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG command:56 - Command execution completed -2016-05-02 19:28:18 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:28:18 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:70, serverValue:1856767}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG query:56 - Query completed -2016-05-02 19:28:18 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:28:18 DEBUG connection:56 - Closing connection connectionId{localValue:69, serverValue:2128686} -2016-05-02 19:28:18 DEBUG connection:56 - Closing connection connectionId{localValue:66, serverValue:246145} -2016-05-02 19:28:18 DEBUG connection:56 - Closing connection connectionId{localValue:68, serverValue:1542470} -2016-05-02 19:28:18 INFO connection:71 - Closed connection [connectionId{localValue:70, serverValue:1856767}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:28:18 DEBUG connection:56 - Closing connection connectionId{localValue:70, serverValue:1856767} -2016-05-02 19:28:18 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:28:18 DEBUG connection:56 - Closing connection connectionId{localValue:67, serverValue:1856766} -2016-05-02 19:28:18 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:28:18 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:28:18 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:28:18 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:28:18 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 19:28:18 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:28:18 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:28:18 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:28:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:28:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:28:21 DEBUG connection:56 - Closing connection connectionId{localValue:64, serverValue:2128685} -2016-05-02 19:28:21 DEBUG connection:56 - Closing connection connectionId{localValue:63, serverValue:1542469} -2016-05-02 19:28:21 INFO connection:71 - Closed connection [connectionId{localValue:65, serverValue:1856765}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:28:21 DEBUG connection:56 - Closing connection connectionId{localValue:61, serverValue:246144} -2016-05-02 19:28:21 DEBUG connection:56 - Closing connection connectionId{localValue:65, serverValue:1856765} -2016-05-02 19:28:21 DEBUG connection:56 - Closing connection connectionId{localValue:62, serverValue:1856764} -2016-05-02 19:28:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:28:55 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:29:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:29:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:37:45 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 19:37:45 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 19:37:45 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 19:37:45 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:37:45 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:37:45 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:37:45 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:37:45 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@49f3ca90 -2016-05-02 19:37:45 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:37:45 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:37:45 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:37:45 DEBUG TemplateModel:83 - 2016-05-02 19:37:45, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:37:45 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:37:45 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 19:37:47 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:37:47 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:37:47 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:37:47 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:37:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:37:47 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:37:47 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:37:47 DEBUG TemplateModel:83 - 2016-05-02 19:37:47, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:37:47 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:37:47 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:37:47 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 123 ms -2016-05-02 19:37:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 19:37:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 19:37:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 19:37:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 19:37:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 19:37:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 19:37:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 19:37:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 19:37:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 19:37:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 19:37:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 19:37:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 19:37:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 19:37:47 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 19:37:47 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 19:37:47 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:37:47 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:37:47 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@9603f9 -2016-05-02 19:37:47 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@5056003e -2016-05-02 19:37:47 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@54203c -2016-05-02 19:37:47 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@467f33b8 -2016-05-02 19:37:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 108 ms -2016-05-02 19:37:48 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 19:37:48 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 19:37:48 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 19:37:48 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 19:37:48 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 19:37:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:37:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:37:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 19:37:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 26 ms -2016-05-02 19:37:48 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 19:37:48 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:37:48 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 19:37:48 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:37:48 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:37:48 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:37:48 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:37:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:37:48 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:37:48 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:37:48 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 19:37:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:37:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:37:48 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 19:37:48 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 19:37:48 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 19:37:48 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 19:37:48 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 19:37:48 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 19:37:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 19:37:48 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:37:48 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 19:37:48 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-02 19:37:48 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 19:37:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:37:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:37:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:37:48 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 19:37:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:37:48 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 19:37:49 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:37:49 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:37:49 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 19:37:49 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:37:49 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 19:37:49 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:37:49 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:37:49 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 19:37:49 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 19:37:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:37:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:37:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:37:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:37:49 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:37:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 19:37:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:37:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:37:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:37:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:37:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:37:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:37:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:37:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:37:49 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:37:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 19:37:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:37:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:37:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:37:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:37:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:37:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:37:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:37:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:37:49 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:37:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 19:37:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:37:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:37:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:37:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:37:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:37:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:37:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:37:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:37:49 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:37:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 19:37:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:37:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:37:50 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:37:50 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:37:50 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:37:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:37:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:37:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:37:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:37:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:37:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:37:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:37:50 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 19:37:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:37:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:37:50 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:37:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:37:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:37:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:37:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:37:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:37:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:37:50 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 19:37:50 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 19:37:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:37:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:37:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 142 msc 0 sec -2016-05-02 19:37:50 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 19:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:37:50 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:37:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:37:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:37:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:37:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:37:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:37:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:37:50 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 19:37:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:37:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:37:50 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 19:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 19:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:37:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:37:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:37:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-02 19:37:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 129 msc 0 sec -2016-05-02 19:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 19:37:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:37:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 19:37:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-02 19:37:50 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 19:37:50 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 19:37:50 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 19:37:50 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 19:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 19:37:50 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 19:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 19:37:50 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:37:50 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:37:50 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 19:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 19:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 19:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 19:37:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:37:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 348 msc 0 sec -2016-05-02 19:37:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:37:55 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:37:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:37:55 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 19:37:55 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:37:55 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:37:56 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 19:37:56 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 19:37:56 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 19:37:56 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 19:37:56 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 19:37:56 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 19:37:56 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:37:56 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 19:37:56 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 19:37:56 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 19:37:56 DEBUG WPS2SM:204 - Schema: null -2016-05-02 19:37:56 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 19:37:56 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:37:56 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 19:37:56 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 19:37:56 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 19:37:56 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 19:37:56 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 19:37:56 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 19:37:56 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 19:37:56 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 19:37:56 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:37:56 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 19:37:56 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 19:37:56 DEBUG WPS2SM:92 - WPS type: -2016-05-02 19:37:56 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 19:37:56 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 19:37:56 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:37:56 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 19:37:56 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 19:37:56 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 19:37:56 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 19:37:56 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 19:37:56 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 19:37:56 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 19:37:56 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 19:37:56 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:37:56 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 19:37:56 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 19:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:37:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:37:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:37:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:37:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:37:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:37:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:37:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:37:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:37:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:37:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:37:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:37:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:37:56 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:37:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:37:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:37:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:37:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:37:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:37:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:37:56 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:37:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:37:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:37:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:37:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:37:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:37:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:37:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:37:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:37:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:37:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:37:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:37:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:37:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:37:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:37:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:37:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:37:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:37:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:37:56 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:37:56 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:37:56 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:37:56 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:37:56 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:37:56 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:37:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:37:56 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:37:56 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:37:56 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:37:56 INFO WorkspaceExplorerServiceImpl:142 - end time - 187 msc 0 sec -2016-05-02 19:37:56 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:38:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:38:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:38:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:38:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:38:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:38:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:38:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:38:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:03 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:38:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:38:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:38:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:38:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:38:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:38:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:38:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:38:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:38:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:38:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:38:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:38:03 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:38:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:38:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:38:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:38:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:38:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:38:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:38:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:38:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:38:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:38:03 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:38:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:38:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:38:03 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:38:03 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:38:03 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:38:03 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:38:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:38:03 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:38:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:38:03 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:38:03 INFO WorkspaceExplorerServiceImpl:142 - end time - 192 msc 0 sec -2016-05-02 19:38:03 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:38:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:38:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:38:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:38:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:38:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:38:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:38:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:38:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:06 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:38:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:38:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:38:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:38:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:38:06 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:38:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:38:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:38:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:38:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:38:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:38:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:38:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:38:06 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:38:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:38:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:38:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:38:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:38:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:38:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:38:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:38:06 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:38:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:38:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:38:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:38:06 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:38:06 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:38:06 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:38:06 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:38:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:38:06 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:38:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:38:06 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:38:06 INFO WorkspaceExplorerServiceImpl:142 - end time - 173 msc 0 sec -2016-05-02 19:38:06 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:38:14 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:38:14 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:38:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:38:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:38:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:38:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:14 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:38:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:38:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:38:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:38:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:14 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:38:14 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:38:14 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:38:14 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:38:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:38:14 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:38:14 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 19:38:14 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 19:38:14 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:38:14 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:38:14 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:38:14 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:38:14 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:38:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:38:14 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:38:14 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:38:14 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:38:14 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:38:14 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:38:14 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:38:14 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:38:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:38:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:38:14 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:38:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:38:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:14 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:38:14 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:14 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:38:14 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bc4acb7f, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@17747678, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5f0dcc4f, socketFactory=javax.net.DefaultSocketFactory@2e0874a, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:38:14 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:38:14 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:38:14 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:38:14 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:38:14 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:38:14 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:38:14 INFO WorkspaceExplorerServiceImpl:188 - end time - 50 msc 0 sec -2016-05-02 19:38:14 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:38:14 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:38:14 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1856866}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1536185, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:14 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:38:14 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:14 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:14 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:38:14 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2128786}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1234352, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:38:14 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1542571}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1579321, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:38:14 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1856867}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856867}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 DEBUG command:56 - Command execution completed -2016-05-02 19:38:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856867}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 DEBUG command:56 - Command execution completed -2016-05-02 19:38:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856867}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 DEBUG command:56 - Command execution completed -2016-05-02 19:38:14 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:38:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856867}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 DEBUG command:56 - Command execution completed -2016-05-02 19:38:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856867}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 DEBUG command:56 - Command execution completed -2016-05-02 19:38:14 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1856867}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:246245}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:38:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1792899, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:38:15 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:38:15 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:38:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:38:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:38:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:38:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:15 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:38:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:38:15 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:38:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:38:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:15 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:38:15 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:38:15 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:38:15 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:38:15 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:38:15 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:38:15 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 19:38:15 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:38:15 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:38:15 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:38:15 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:38:15 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:38:15 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:38:15 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:38:15 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:38:15 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:38:15 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:38:15 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:38:15 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:38:15 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:15 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:15 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:38:15 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bc4acb7f, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@17747678, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5f0dcc4f, socketFactory=javax.net.DefaultSocketFactory@2e0874a, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:38:15 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:38:15 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:38:15 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1856868}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1476455, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:15 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:38:15 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:15 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:15 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:38:15 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:246246}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1380580, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:38:15 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2128787}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1094736, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:38:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:38:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:38:15 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:38:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:38:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:15 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:38:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:38:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:15 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1542572}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1554945, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:38:15 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:38:15 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:38:15 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1856869}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856869}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 DEBUG command:56 - Command execution completed -2016-05-02 19:38:15 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856869}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 DEBUG command:56 - Command execution completed -2016-05-02 19:38:15 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856869}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 DEBUG command:56 - Command execution completed -2016-05-02 19:38:15 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:38:15 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856869}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 DEBUG command:56 - Command execution completed -2016-05-02 19:38:15 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856869}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 DEBUG command:56 - Command execution completed -2016-05-02 19:38:15 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1856869}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:15 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:38:15 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:38:15 INFO WorkspaceExplorerServiceImpl:188 - end time - 44 msc 0 sec -2016-05-02 19:38:15 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:38:15 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:38:15 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:38:15 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:38:15 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:38:15 DEBUG query:56 - Query completed -2016-05-02 19:38:15 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 19:38:15 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2128786} -2016-05-02 19:38:15 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1542571} -2016-05-02 19:38:15 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:246245} -2016-05-02 19:38:15 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1856867}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:38:15 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1856867} -2016-05-02 19:38:15 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1856866} -2016-05-02 19:38:15 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:38:15 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:38:15 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:38:15 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 19:38:16 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:38:16 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:38:16 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:38:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:16 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:38:16 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:38:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:16 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:38:16 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:38:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:16 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:38:16 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:38:16 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:38:16 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 19:38:16 DEBUG query:56 - Query completed -2016-05-02 19:38:16 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 19:38:16 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2128787} -2016-05-02 19:38:16 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:246246} -2016-05-02 19:38:16 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1542572} -2016-05-02 19:38:16 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1856869}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:38:16 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1856869} -2016-05-02 19:38:16 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:38:16 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:38:16 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:38:16 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 19:38:16 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1856868} -2016-05-02 19:38:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:38:16 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:38:16 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:38:16 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 19:38:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:16 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:38:16 DEBUG ServiceEngine:193 - get() - start -2016-05-02 19:38:16 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:38:16 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:38:16 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:38:16 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:38:16 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:38:16 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:38:16 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 19:38:16 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:38:16 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:38:16 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:38:16 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:38:16 DEBUG Operation:173 - get(String) - start -2016-05-02 19:38:16 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:38:16 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:38:16 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:38:16 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:38:16 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:16 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:16 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:38:16 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bc4acb7f, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@17747678, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5f0dcc4f, socketFactory=javax.net.DefaultSocketFactory@2e0874a, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:38:16 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:38:16 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:38:17 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:246247}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1368966, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:17 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:38:17 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:17 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:38:17 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1856870}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2128788}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1200355, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:17 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=918900, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:17 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:38:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:38:17 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1542573}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1289208, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:38:17 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1856871}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856871}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG command:56 - Command execution completed -2016-05-02 19:38:17 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856871}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG command:56 - Command execution completed -2016-05-02 19:38:17 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856871}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG command:56 - Command execution completed -2016-05-02 19:38:17 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:38:17 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856871}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG command:56 - Command execution completed -2016-05-02 19:38:17 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856871}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG command:56 - Command execution completed -2016-05-02 19:38:17 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:38:17 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856871}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG command:56 - Command execution completed -2016-05-02 19:38:17 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856871}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG command:56 - Command execution completed -2016-05-02 19:38:17 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:38:17 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1856871}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG query:56 - Query completed -2016-05-02 19:38:17 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:38:17 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:38:17 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 19:38:17 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1856871}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG update:56 - Update completed -2016-05-02 19:38:17 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1856871}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG query:56 - Query completed -2016-05-02 19:38:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:38:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:38:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:38:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:38:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:38:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:38:17 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:38:17 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 19:38:17 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 19:38:17 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 19:38:17 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:38:17 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:38:17 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:38:17 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:38:17 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 19:38:17 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:38:17 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 19:38:17 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 19:38:17 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:38:17 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:38:17 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:38:17 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:38:17 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:38:17 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:38:17 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:38:17 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:17 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:17 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:38:17 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bc4acb7f, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@17747678, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5f0dcc4f, socketFactory=javax.net.DefaultSocketFactory@2e0874a, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:38:17 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:38:17 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:38:17 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1856872}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1308649, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:17 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:38:17 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:17 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:38:17 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:38:17 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:246248}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2128790}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1307657, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:17 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:38:17 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=862263, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:38:17 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1542574}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1317708, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:38:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:38:17 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1856873}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856873}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG command:56 - Command execution completed -2016-05-02 19:38:17 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856873}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG command:56 - Command execution completed -2016-05-02 19:38:17 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856873}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG command:56 - Command execution completed -2016-05-02 19:38:17 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:38:17 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:38:17 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856873}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG command:56 - Command execution completed -2016-05-02 19:38:17 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856873}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG command:56 - Command execution completed -2016-05-02 19:38:17 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:38:17 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1856873}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG query:56 - Query completed -2016-05-02 19:38:17 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:38:17 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2128790} -2016-05-02 19:38:17 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:246248} -2016-05-02 19:38:17 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1542574} -2016-05-02 19:38:17 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1856873}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:38:17 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1856873} -2016-05-02 19:38:17 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:38:17 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1856872} -2016-05-02 19:38:17 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:38:17 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:38:17 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:38:17 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:38:17 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 19:38:17 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:38:17 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:38:17 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:38:17 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:38:17 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:38:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:38:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:38:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:38:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:38:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:38:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:38:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:38:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:38:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:38:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:38:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:38:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:38:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:38:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:38:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:38:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:38:47 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:38:47 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:38:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:38:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:38:47 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:38:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.9 ms, state=CONNECTED}] -2016-05-02 19:38:47 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:38:47 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.9 ms, state=CONNECTED}] -2016-05-02 19:38:56 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2128788} -2016-05-02 19:38:56 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1542573} -2016-05-02 19:38:56 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1856871}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:38:56 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1856871} -2016-05-02 19:38:56 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:246247} -2016-05-02 19:38:56 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1856870} -2016-05-02 19:39:11 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:11 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:39:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:39:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:39:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:39:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:39:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:39:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:39:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:39:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:39:11 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:39:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:39:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:39:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:39:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:39:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:39:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:39:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:39:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:39:11 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:39:11 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:39:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:39:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:39:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:39:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:39:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:39:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:39:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:39:11 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:11 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:11 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:11 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 19:39:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:39:12 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:39:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:39:12 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-02 19:39:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:39:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:39:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:39:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:39:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:39:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:39:12 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:12 DEBUG ServiceEngine:193 - get() - start -2016-05-02 19:39:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:39:12 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:39:12 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-02 19:39:12 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:39:12 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:39:12 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:39:12 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 19:39:12 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:39:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:39:12 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:39:12 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:39:12 DEBUG Operation:173 - get(String) - start -2016-05-02 19:39:12 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:39:12 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:39:12 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:39:12 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:39:12 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:12 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:12 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:12 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bc4acb7f, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@17747678, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5f0dcc4f, socketFactory=javax.net.DefaultSocketFactory@2e0874a, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:39:12 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:39:12 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:39:12 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1856884}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1103468, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:12 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:39:12 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:12 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:12 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:12 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:246259}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1192080, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:12 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2128798}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=802104, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:12 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1542583}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1214601, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:39:12 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1856885}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1856885}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG command:56 - Command execution completed -2016-05-02 19:39:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1856885}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG command:56 - Command execution completed -2016-05-02 19:39:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1856885}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG command:56 - Command execution completed -2016-05-02 19:39:12 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:39:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1856885}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG command:56 - Command execution completed -2016-05-02 19:39:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1856885}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG command:56 - Command execution completed -2016-05-02 19:39:12 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:39:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1856885}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG command:56 - Command execution completed -2016-05-02 19:39:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1856885}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG command:56 - Command execution completed -2016-05-02 19:39:12 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:39:12 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1856885}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG query:56 - Query completed -2016-05-02 19:39:12 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-02 19:39:12 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:39:12 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 19:39:12 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1856885}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG update:56 - Update completed -2016-05-02 19:39:12 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:25, serverValue:1856885}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG query:56 - Query completed -2016-05-02 19:39:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:39:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:39:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:39:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:39:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:39:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:39:12 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:12 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-02 19:39:12 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 19:39:12 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 19:39:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:39:12 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:39:12 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-02 19:39:12 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:39:12 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 19:39:12 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:39:12 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 19:39:12 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 19:39:12 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:39:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:39:12 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:39:12 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:39:12 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:39:12 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:39:12 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:39:12 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:12 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:12 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:12 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bc4acb7f, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@17747678, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5f0dcc4f, socketFactory=javax.net.DefaultSocketFactory@2e0874a, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:39:12 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:39:12 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:39:12 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:246260}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1251548, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:12 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:39:12 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:12 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:12 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2128799}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1856886}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1476308, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1200182, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:12 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:12 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1542585}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1140917, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-02 19:39:12 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1856887}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1856887}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG command:56 - Command execution completed -2016-05-02 19:39:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1856887}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG command:56 - Command execution completed -2016-05-02 19:39:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1856887}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG command:56 - Command execution completed -2016-05-02 19:39:12 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:39:12 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:39:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1856887}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG command:56 - Command execution completed -2016-05-02 19:39:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1856887}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG command:56 - Command execution completed -2016-05-02 19:39:12 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:39:12 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1856887}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:12 DEBUG query:56 - Query completed -2016-05-02 19:39:12 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-02 19:39:12 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2128799} -2016-05-02 19:39:12 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:246260} -2016-05-02 19:39:12 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1542585} -2016-05-02 19:39:12 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1856887}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:39:12 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1856887} -2016-05-02 19:39:12 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:39:12 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1856886} -2016-05-02 19:39:12 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:39:12 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 19:39:12 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 19:39:12 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 19:39:12 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 19:39:12 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 19:39:12 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-02 19:39:12 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-02 19:39:18 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:39:18 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:39:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:39:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:39:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:39:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:39:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:39:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:39:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:39:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:39:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:39:18 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:39:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:39:18 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:39:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:39:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:39:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:39:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:39:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:39:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:39:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:39:18 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:39:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:39:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:39:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:39:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:39:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:39:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:39:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:39:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:39:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:39:18 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:39:18 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:39:18 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:39:18 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 19:39:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:39:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:39:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:39:19 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 19:39:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:39:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:39:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:39:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:39:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:39:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:39:19 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:39:19 DEBUG ServiceEngine:193 - get() - start -2016-05-02 19:39:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:39:19 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:39:19 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:39:19 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:39:19 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:39:19 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:39:19 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 19:39:19 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:39:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:39:19 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:39:19 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:39:19 DEBUG Operation:173 - get(String) - start -2016-05-02 19:39:19 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:39:19 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:39:19 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:39:19 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:39:19 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:19 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:19 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:19 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bc4acb7f, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@17747678, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5f0dcc4f, socketFactory=javax.net.DefaultSocketFactory@2e0874a, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:39:19 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:39:19 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:39:19 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1856890}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1840777, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:19 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:39:19 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:19 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:19 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:19 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:246262}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1251112, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:19 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2128803}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1125307, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:19 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1542587}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1021910, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}] -2016-05-02 19:39:19 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1856891}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1856891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG command:56 - Command execution completed -2016-05-02 19:39:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1856891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG command:56 - Command execution completed -2016-05-02 19:39:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1856891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG command:56 - Command execution completed -2016-05-02 19:39:19 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:39:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1856891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG command:56 - Command execution completed -2016-05-02 19:39:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1856891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG command:56 - Command execution completed -2016-05-02 19:39:19 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:39:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1856891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG command:56 - Command execution completed -2016-05-02 19:39:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1856891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG command:56 - Command execution completed -2016-05-02 19:39:19 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:39:19 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1856891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG query:56 - Query completed -2016-05-02 19:39:19 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:39:19 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:39:19 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 19:39:19 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1856891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG update:56 - Update completed -2016-05-02 19:39:19 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1856891}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG query:56 - Query completed -2016-05-02 19:39:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:39:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:39:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:39:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:39:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:39:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:39:19 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:39:19 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 19:39:19 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 19:39:19 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 19:39:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:39:19 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:39:19 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:39:19 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:39:19 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 19:39:19 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:39:19 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 19:39:19 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 19:39:19 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:39:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:39:19 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:39:19 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:39:19 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:39:19 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:39:19 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:39:19 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:19 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:19 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:19 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bc4acb7f, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@17747678, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5f0dcc4f, socketFactory=javax.net.DefaultSocketFactory@2e0874a, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:39:19 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:39:19 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:39:19 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:246263}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1856892}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1261466, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:19 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:39:19 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1408112, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:19 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:19 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:19 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2128804}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=920965, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:19 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1542588}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1047156, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}] -2016-05-02 19:39:19 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1856893}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1856893}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG command:56 - Command execution completed -2016-05-02 19:39:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1856893}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG command:56 - Command execution completed -2016-05-02 19:39:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1856893}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG command:56 - Command execution completed -2016-05-02 19:39:19 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:39:19 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:39:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1856893}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG command:56 - Command execution completed -2016-05-02 19:39:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1856893}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG command:56 - Command execution completed -2016-05-02 19:39:19 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:39:19 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1856893}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:19 DEBUG query:56 - Query completed -2016-05-02 19:39:19 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:39:19 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2128804} -2016-05-02 19:39:19 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:246263} -2016-05-02 19:39:19 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1542588} -2016-05-02 19:39:19 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1856893}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:39:19 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1856893} -2016-05-02 19:39:19 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:39:19 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1856892} -2016-05-02 19:39:19 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:39:19 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:39:19 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:39:19 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:39:19 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 19:39:19 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:39:19 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:39:19 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:39:20 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2128803} -2016-05-02 19:39:20 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1856891}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:39:20 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1856891} -2016-05-02 19:39:20 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1542587} -2016-05-02 19:39:20 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:246262} -2016-05-02 19:39:20 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1856890} -2016-05-02 19:39:20 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2128798} -2016-05-02 19:39:20 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1856885}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:39:20 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1856885} -2016-05-02 19:39:20 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:246259} -2016-05-02 19:39:20 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1542583} -2016-05-02 19:39:20 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1856884} -2016-05-02 19:39:33 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:33 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:39:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:39:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:39:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:39:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:39:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:39:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:39:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:39:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:39:33 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:39:33 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:39:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:39:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:39:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:39:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:39:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:39:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:39:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:39:33 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:39:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:39:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:39:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:39:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:39:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:39:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:39:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:39:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:39:33 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:33 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:33 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:33 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 19:39:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:39:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:39:34 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:39:34 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-02 19:39:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:39:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:39:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:39:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:39:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:39:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:39:34 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:34 DEBUG ServiceEngine:193 - get() - start -2016-05-02 19:39:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:39:34 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:39:34 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-02 19:39:34 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:39:34 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:39:34 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:39:34 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 19:39:34 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:39:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:39:34 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:39:34 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:39:34 DEBUG Operation:173 - get(String) - start -2016-05-02 19:39:34 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:39:34 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:39:34 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:39:34 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:39:34 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:34 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:34 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:34 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bc4acb7f, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@17747678, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5f0dcc4f, socketFactory=javax.net.DefaultSocketFactory@2e0874a, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:39:34 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:39:34 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:39:34 INFO connection:71 - Opened connection [connectionId{localValue:41, serverValue:246266}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=4886116, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:34 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:39:34 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:34 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:34 INFO connection:71 - Opened connection [connectionId{localValue:42, serverValue:1856897}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 INFO connection:71 - Opened connection [connectionId{localValue:44, serverValue:2128805}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=961090, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1426129, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:34 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:34 INFO connection:71 - Opened connection [connectionId{localValue:43, serverValue:1542591}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1157007, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:39:34 INFO connection:71 - Opened connection [connectionId{localValue:45, serverValue:1856898}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1856898}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG command:56 - Command execution completed -2016-05-02 19:39:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1856898}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG command:56 - Command execution completed -2016-05-02 19:39:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1856898}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG command:56 - Command execution completed -2016-05-02 19:39:34 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:39:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1856898}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG command:56 - Command execution completed -2016-05-02 19:39:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1856898}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG command:56 - Command execution completed -2016-05-02 19:39:34 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:39:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1856898}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG command:56 - Command execution completed -2016-05-02 19:39:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1856898}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG command:56 - Command execution completed -2016-05-02 19:39:34 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:39:34 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1856898}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG query:56 - Query completed -2016-05-02 19:39:34 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-02 19:39:34 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:39:34 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 19:39:34 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1856898}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG update:56 - Update completed -2016-05-02 19:39:34 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:45, serverValue:1856898}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG query:56 - Query completed -2016-05-02 19:39:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:39:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:39:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:39:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:39:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:39:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:39:34 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-02 19:39:34 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-02 19:39:34 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 19:39:34 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 19:39:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:39:34 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:39:34 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-02 19:39:34 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:39:34 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 19:39:34 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:39:34 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 19:39:34 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 19:39:34 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:39:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:39:34 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:39:34 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:39:34 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:39:34 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:39:34 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:39:34 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:34 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:34 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:34 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@bc4acb7f, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@17747678, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5f0dcc4f, socketFactory=javax.net.DefaultSocketFactory@2e0874a, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:39:34 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:39:34 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:39:34 INFO connection:71 - Opened connection [connectionId{localValue:47, serverValue:1856899}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1150081, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:34 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:39:34 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:34 INFO connection:71 - Opened connection [connectionId{localValue:46, serverValue:246267}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:39:34 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1024138, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:34 INFO connection:71 - Opened connection [connectionId{localValue:49, serverValue:2128806}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=819017, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:39:34 INFO connection:71 - Opened connection [connectionId{localValue:48, serverValue:1542592}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 INFO connection:71 - Opened connection [connectionId{localValue:50, serverValue:1856900}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1229038, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:39:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1856900}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:39:34 DEBUG command:56 - Command execution completed -2016-05-02 19:39:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1856900}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG command:56 - Command execution completed -2016-05-02 19:39:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1856900}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG command:56 - Command execution completed -2016-05-02 19:39:34 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:39:34 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:39:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1856900}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG command:56 - Command execution completed -2016-05-02 19:39:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1856900}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG command:56 - Command execution completed -2016-05-02 19:39:34 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:39:34 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:50, serverValue:1856900}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG query:56 - Query completed -2016-05-02 19:39:34 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-02 19:39:34 DEBUG connection:56 - Closing connection connectionId{localValue:49, serverValue:2128806} -2016-05-02 19:39:34 INFO connection:71 - Closed connection [connectionId{localValue:50, serverValue:1856900}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:39:34 DEBUG connection:56 - Closing connection connectionId{localValue:46, serverValue:246267} -2016-05-02 19:39:34 DEBUG connection:56 - Closing connection connectionId{localValue:48, serverValue:1542592} -2016-05-02 19:39:34 DEBUG connection:56 - Closing connection connectionId{localValue:50, serverValue:1856900} -2016-05-02 19:39:34 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:39:34 DEBUG connection:56 - Closing connection connectionId{localValue:47, serverValue:1856899} -2016-05-02 19:39:34 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-02 19:39:34 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 19:39:34 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 19:39:34 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 19:39:34 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 19:39:34 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-02 19:39:34 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-02 19:39:34 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-02 19:39:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:39:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:39:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=6.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:39:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:39:35 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:39:36 INFO connection:71 - Closed connection [connectionId{localValue:45, serverValue:1856898}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:39:36 DEBUG connection:56 - Closing connection connectionId{localValue:45, serverValue:1856898} -2016-05-02 19:39:36 DEBUG connection:56 - Closing connection connectionId{localValue:43, serverValue:1542591} -2016-05-02 19:39:36 DEBUG connection:56 - Closing connection connectionId{localValue:44, serverValue:2128805} -2016-05-02 19:39:36 DEBUG connection:56 - Closing connection connectionId{localValue:41, serverValue:246266} -2016-05-02 19:39:36 DEBUG connection:56 - Closing connection connectionId{localValue:42, serverValue:1856897} -2016-05-02 19:40:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:40:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:41:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:41:25 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:42:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:42:20 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:44:00 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 19:44:00 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 19:44:00 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 19:44:00 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:44:00 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:44:00 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:44:00 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:44:00 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@17ca4b0b -2016-05-02 19:44:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:44:00 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:44:00 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:44:00 DEBUG TemplateModel:83 - 2016-05-02 19:44:00, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:44:00 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:44:00 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 19:44:01 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:44:01 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:44:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:44:01 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:44:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:44:01 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:44:01 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:44:01 DEBUG TemplateModel:83 - 2016-05-02 19:44:01, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:44:01 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:44:01 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:44:02 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 130 ms -2016-05-02 19:44:02 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 19:44:02 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 19:44:02 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 19:44:02 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 19:44:02 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 19:44:02 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 19:44:02 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 19:44:02 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 19:44:02 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 19:44:02 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 19:44:02 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 19:44:02 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 19:44:02 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 19:44:02 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 19:44:02 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 19:44:02 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:44:02 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:44:02 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@6a43568a -2016-05-02 19:44:02 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@15f9db52 -2016-05-02 19:44:02 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@665f06d0 -2016-05-02 19:44:02 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@339fd217 -2016-05-02 19:44:02 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 102 ms -2016-05-02 19:44:02 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 19:44:02 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 19:44:02 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 19:44:02 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 19:44:02 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 19:44:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:44:02 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:44:02 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 19:44:02 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 22 ms -2016-05-02 19:44:02 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 19:44:02 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:44:02 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 19:44:02 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:44:02 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:44:02 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:44:02 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:44:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:44:02 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:44:02 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:44:02 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 19:44:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:02 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 19:44:02 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 19:44:02 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 19:44:02 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 19:44:02 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 19:44:02 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 19:44:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 19:44:03 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:44:03 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 19:44:03 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-02 19:44:03 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 19:44:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:44:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:03 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 19:44:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:03 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 19:44:03 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:44:03 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 19:44:03 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:44:03 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:44:03 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 19:44:03 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:44:03 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:44:03 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 19:44:03 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 19:44:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:03 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:44:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 19:44:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:03 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:44:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 19:44:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:04 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:44:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 19:44:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:04 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:44:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 19:44:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:04 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:44:04 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:44:04 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:44:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:44:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:44:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:44:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:04 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 19:44:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:44:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:44:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:44:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:04 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 19:44:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:04 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 19:44:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:04 INFO WorkspaceExplorerServiceImpl:188 - end time - 121 msc 0 sec -2016-05-02 19:44:04 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 19:44:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:44:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:44:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:44:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:04 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 19:44:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:04 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 19:44:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:44:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:44:04 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:44:04 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:44:04 INFO WorkspaceExplorerServiceImpl:188 - end time - 119 msc 0 sec -2016-05-02 19:44:04 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 35 ms -2016-05-02 19:44:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:44:05 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:44:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 19:44:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-02 19:44:05 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 19:44:05 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 19:44:05 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 19:44:05 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 19:44:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:44:05 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 19:44:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:44:05 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:44:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:44:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-02 19:44:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:44:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:44:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:44:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:44:05 INFO WorkspaceExplorerServiceImpl:188 - end time - 330 msc 0 sec -2016-05-02 19:44:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:44:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:44:10 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:44:10 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 19:44:10 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:44:10 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:44:11 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 19:44:11 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 19:44:11 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 19:44:11 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 19:44:11 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 19:44:11 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 19:44:11 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:44:11 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 19:44:11 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 19:44:11 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 19:44:11 DEBUG WPS2SM:204 - Schema: null -2016-05-02 19:44:11 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 19:44:11 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:44:11 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 19:44:11 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 19:44:11 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 19:44:11 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 19:44:11 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 19:44:11 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 19:44:11 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 19:44:11 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 19:44:11 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:44:11 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 19:44:11 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 19:44:11 DEBUG WPS2SM:92 - WPS type: -2016-05-02 19:44:11 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 19:44:11 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 19:44:11 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:44:11 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 19:44:11 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 19:44:11 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 19:44:11 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 19:44:11 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 19:44:11 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 19:44:11 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 19:44:11 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 19:44:11 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:44:11 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 19:44:11 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 19:44:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:44:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:44:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:44:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:44:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:44:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:44:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:11 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:44:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:44:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:44:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:44:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:44:11 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:44:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:44:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:44:11 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:44:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:44:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:44:11 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:44:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:11 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:11 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:11 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:44:11 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:44:11 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:44:11 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:44:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:44:11 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:44:11 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:44:11 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:44:11 INFO WorkspaceExplorerServiceImpl:142 - end time - 183 msc 0 sec -2016-05-02 19:44:11 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:44:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:44:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:44:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:44:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:44:13 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:44:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:44:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:13 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:44:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:44:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:44:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:44:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:44:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:44:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:44:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:44:13 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:44:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:44:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:44:13 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:44:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:44:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:44:13 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:44:14 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:44:14 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:44:14 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:44:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:44:14 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:44:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:44:14 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:44:14 INFO WorkspaceExplorerServiceImpl:142 - end time - 166 msc 0 sec -2016-05-02 19:44:14 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:44:19 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:44:19 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:44:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:44:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:44:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:44:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:19 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:44:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:44:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:44:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:44:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:19 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:44:19 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:44:19 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:44:19 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:44:20 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:44:20 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:44:20 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 19:44:20 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 19:44:20 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:44:20 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:44:20 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:44:20 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:44:20 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:44:20 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:44:20 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:44:20 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:44:20 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:44:20 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:44:20 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:44:20 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:44:20 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:44:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:44:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:44:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:44:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:44:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:20 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:44:20 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:44:20 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:20 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:20 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@861ab4b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@65a9fdc4, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7b538300, socketFactory=javax.net.DefaultSocketFactory@27bdb441, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:44:20 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:44:20 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:44:20 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:44:20 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:44:20 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:44:20 INFO WorkspaceExplorerServiceImpl:188 - end time - 64 msc 0 sec -2016-05-02 19:44:20 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:44:20 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:44:20 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:246316}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1856948}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1434229, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:20 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:44:20 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:20 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:20 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=4433151, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:20 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2128857}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:20 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=3451683, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:20 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1542641}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2306296, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 19:44:20 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1856949}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856949}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 DEBUG command:56 - Command execution completed -2016-05-02 19:44:20 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856949}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 DEBUG command:56 - Command execution completed -2016-05-02 19:44:20 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856949}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 DEBUG command:56 - Command execution completed -2016-05-02 19:44:20 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:44:20 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856949}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 DEBUG command:56 - Command execution completed -2016-05-02 19:44:20 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856949}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 DEBUG command:56 - Command execution completed -2016-05-02 19:44:20 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1856949}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:44:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 19:44:21 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:44:21 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:44:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:44:21 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:44:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:44:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:21 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:44:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:44:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:44:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:44:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:21 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:44:21 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:44:21 DEBUG query:56 - Query completed -2016-05-02 19:44:21 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 19:44:21 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2128857} -2016-05-02 19:44:21 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:246316} -2016-05-02 19:44:21 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1542641} -2016-05-02 19:44:21 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1856949}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:44:21 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1856949} -2016-05-02 19:44:21 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1856948} -2016-05-02 19:44:21 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:44:21 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:44:21 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:44:21 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 19:44:21 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:44:21 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:44:21 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:44:21 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:44:21 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 19:44:21 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:44:21 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:44:21 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:44:21 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:44:21 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:44:21 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:44:21 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:44:21 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:44:21 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:44:21 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:44:21 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:44:21 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:44:21 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:21 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:21 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:21 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@861ab4b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@65a9fdc4, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7b538300, socketFactory=javax.net.DefaultSocketFactory@27bdb441, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:44:21 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:44:21 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:44:21 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:246317}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1213735, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:21 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:44:21 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:21 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:21 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2128858}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=972689, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:21 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1856950}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1378062, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:21 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:21 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1542642}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1289473, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:44:21 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1856951}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:44:21 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:44:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:44:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:44:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:21 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856951}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:44:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:44:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:21 DEBUG command:56 - Command execution completed -2016-05-02 19:44:21 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856951}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 DEBUG command:56 - Command execution completed -2016-05-02 19:44:21 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856951}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 DEBUG command:56 - Command execution completed -2016-05-02 19:44:21 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:44:21 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856951}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:44:21 DEBUG command:56 - Command execution completed -2016-05-02 19:44:21 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856951}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 DEBUG command:56 - Command execution completed -2016-05-02 19:44:21 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1856951}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:44:21 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:44:21 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:44:21 INFO WorkspaceExplorerServiceImpl:188 - end time - 55 msc 0 sec -2016-05-02 19:44:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:44:21 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:44:21 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:44:21 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:44:21 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:44:21 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:44:21 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:44:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:44:21 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:44:21 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:44:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:44:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:44:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:44:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:21 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:44:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:44:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:44:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:44:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:21 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:44:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:44:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:44:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:44:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:21 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:44:21 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:44:21 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:44:21 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 19:44:22 DEBUG query:56 - Query completed -2016-05-02 19:44:22 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 19:44:22 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2128858} -2016-05-02 19:44:22 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:246317} -2016-05-02 19:44:22 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1542642} -2016-05-02 19:44:22 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1856951}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:44:22 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1856951} -2016-05-02 19:44:22 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:44:22 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1856950} -2016-05-02 19:44:22 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:44:22 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:44:22 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 19:44:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:44:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:44:22 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:44:22 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 19:44:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:22 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:44:22 DEBUG ServiceEngine:193 - get() - start -2016-05-02 19:44:22 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:44:22 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:44:22 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:44:22 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:44:22 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:44:22 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:44:22 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 19:44:22 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:44:22 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:44:22 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:44:22 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:44:22 DEBUG Operation:173 - get(String) - start -2016-05-02 19:44:22 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:44:22 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:44:22 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:44:22 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:44:22 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:22 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:22 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:22 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@861ab4b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@65a9fdc4, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7b538300, socketFactory=javax.net.DefaultSocketFactory@27bdb441, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:44:22 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:44:22 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:44:22 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:246318}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1431184, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:22 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:44:22 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:22 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:22 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1856954}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1397015, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:22 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:22 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2128859}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1446776, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:22 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1542643}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2427141, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 19:44:22 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1856955}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856955}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG command:56 - Command execution completed -2016-05-02 19:44:22 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856955}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG command:56 - Command execution completed -2016-05-02 19:44:22 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856955}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG command:56 - Command execution completed -2016-05-02 19:44:22 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:44:22 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856955}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG command:56 - Command execution completed -2016-05-02 19:44:22 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856955}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG command:56 - Command execution completed -2016-05-02 19:44:22 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:44:22 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856955}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG command:56 - Command execution completed -2016-05-02 19:44:22 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856955}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG command:56 - Command execution completed -2016-05-02 19:44:22 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:44:22 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1856955}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG query:56 - Query completed -2016-05-02 19:44:22 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:44:22 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:44:22 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 19:44:22 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1856955}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG update:56 - Update completed -2016-05-02 19:44:22 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1856955}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG query:56 - Query completed -2016-05-02 19:44:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:44:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:44:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:44:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:44:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:44:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:44:22 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:44:22 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 19:44:22 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 19:44:22 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 19:44:22 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:44:22 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:44:22 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:44:22 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:44:22 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 19:44:22 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:44:22 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 19:44:22 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 19:44:22 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:44:22 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:44:22 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:44:22 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:44:22 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:44:22 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:44:22 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:44:22 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:22 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:22 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:22 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@861ab4b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@65a9fdc4, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@7b538300, socketFactory=javax.net.DefaultSocketFactory@27bdb441, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:44:22 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:44:22 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:44:22 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:246319}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1856956}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:22 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1456186, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:23 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:44:23 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=4393929, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:23 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:44:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:23 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:23 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2128860}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:44:23 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:44:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=814697, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:44:23 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1542644}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:44:23 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:44:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1658773, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:44:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:44:23 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1856957}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:23 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856957}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:23 DEBUG command:56 - Command execution completed -2016-05-02 19:44:23 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856957}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:23 DEBUG command:56 - Command execution completed -2016-05-02 19:44:23 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856957}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:23 DEBUG command:56 - Command execution completed -2016-05-02 19:44:23 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:44:23 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:44:23 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856957}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:23 DEBUG command:56 - Command execution completed -2016-05-02 19:44:23 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856957}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:23 DEBUG command:56 - Command execution completed -2016-05-02 19:44:23 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:44:23 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1856957}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:23 DEBUG query:56 - Query completed -2016-05-02 19:44:23 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:44:23 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2128860} -2016-05-02 19:44:23 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:246319} -2016-05-02 19:44:23 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1542644} -2016-05-02 19:44:23 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1856957}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:44:23 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1856957} -2016-05-02 19:44:23 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:44:23 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1856956} -2016-05-02 19:44:23 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:44:23 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:44:23 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:44:23 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:44:23 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 19:44:23 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:44:23 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:44:23 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:44:32 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:44:32 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 19:44:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 19:44:32 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:44:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-02 19:44:32 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:44:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 19:44:42 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:44:42 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 19:44:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 19:44:42 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:44:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 19:44:42 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:44:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 19:44:52 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:44:52 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:44:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 19:44:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 19:44:52 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:44:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 19:44:52 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:44:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:44:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:44:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:45:02 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:45:02 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:45:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:45:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:45:02 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:45:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:45:02 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:45:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:45:12 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:45:12 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:45:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:45:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:45:12 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:45:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:45:12 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:45:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:45:22 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:45:22 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:45:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:45:22 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:45:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:45:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:45:22 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:45:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:45:32 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:45:32 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:45:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:45:32 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:45:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:45:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:45:32 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:45:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:45:42 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:45:42 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:45:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:45:42 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:45:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:45:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:45:42 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:45:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:46:09 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 19:46:09 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 19:46:09 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 19:46:09 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:46:09 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:46:09 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:46:09 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:46:09 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@269142a2 -2016-05-02 19:46:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:46:09 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:46:09 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:46:09 DEBUG TemplateModel:83 - 2016-05-02 19:46:09, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:46:09 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:46:09 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 19:46:10 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:46:10 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:46:10 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:46:10 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:46:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:46:10 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:46:10 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:46:10 DEBUG TemplateModel:83 - 2016-05-02 19:46:10, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:46:10 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:46:10 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:46:10 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 118 ms -2016-05-02 19:46:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 19:46:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 19:46:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 19:46:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 19:46:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 19:46:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 19:46:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 19:46:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 19:46:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 19:46:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 19:46:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 19:46:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 19:46:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 19:46:11 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 19:46:11 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 19:46:11 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:46:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:46:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@10b30150 -2016-05-02 19:46:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@68b87631 -2016-05-02 19:46:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@5c42c11b -2016-05-02 19:46:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@63a0c947 -2016-05-02 19:46:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 149 ms -2016-05-02 19:46:11 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 19:46:11 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 19:46:11 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 19:46:11 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 19:46:11 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 19:46:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:46:11 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:46:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 19:46:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 20 ms -2016-05-02 19:46:11 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 19:46:11 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:46:11 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 19:46:11 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:46:11 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:46:11 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:46:11 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:46:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:46:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:46:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:46:11 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 19:46:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:11 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 19:46:11 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 19:46:11 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 19:46:11 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 19:46:11 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 19:46:11 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 19:46:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-02 19:46:11 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:46:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 19:46:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-02 19:46:12 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 19:46:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:46:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:12 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 19:46:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:12 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 19:46:12 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:46:12 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 19:46:12 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:46:12 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:46:12 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 19:46:12 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:46:12 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:46:12 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 19:46:12 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 19:46:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:12 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:46:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 19:46:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:12 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:46:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 19:46:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:12 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:46:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 19:46:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:13 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:46:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 19:46:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:14 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:46:14 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:46:14 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:46:14 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:46:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:14 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 19:46:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:46:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:46:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:14 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 19:46:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:14 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 19:46:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:14 INFO WorkspaceExplorerServiceImpl:188 - end time - 117 msc 0 sec -2016-05-02 19:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:46:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:46:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:14 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 19:46:14 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 19:46:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:14 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 19:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 19:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:46:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:46:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:46:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 22 ms -2016-05-02 19:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 19:46:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:46:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 19:46:14 INFO WorkspaceExplorerServiceImpl:188 - end time - 172 msc 0 sec -2016-05-02 19:46:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-02 19:46:14 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 19:46:14 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 19:46:14 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 19:46:14 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 19:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 19:46:14 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 19:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 19:46:14 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:46:14 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:46:14 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 19:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 19:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 19:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-02 19:46:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:46:14 INFO WorkspaceExplorerServiceImpl:188 - end time - 349 msc 0 sec -2016-05-02 19:46:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:46:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:46:17 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:46:17 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 19:46:17 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:46:17 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:46:18 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 19:46:18 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 19:46:18 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 19:46:18 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 19:46:18 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 19:46:18 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 19:46:18 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:46:18 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 19:46:18 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 19:46:18 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 19:46:18 DEBUG WPS2SM:204 - Schema: null -2016-05-02 19:46:18 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 19:46:18 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:46:18 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 19:46:18 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 19:46:18 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 19:46:18 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 19:46:18 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 19:46:18 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 19:46:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 19:46:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 19:46:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:46:18 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 19:46:18 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 19:46:18 DEBUG WPS2SM:92 - WPS type: -2016-05-02 19:46:18 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 19:46:18 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 19:46:18 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:46:18 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 19:46:18 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 19:46:18 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 19:46:18 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 19:46:18 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 19:46:18 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 19:46:18 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 19:46:18 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 19:46:18 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:46:18 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 19:46:18 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 19:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:46:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:46:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:46:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:46:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:18 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:46:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:46:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:46:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:46:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:46:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:46:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:46:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:46:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:46:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:46:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:18 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:46:18 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:46:18 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:46:18 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:46:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:46:18 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:46:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:46:18 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:46:18 INFO WorkspaceExplorerServiceImpl:142 - end time - 201 msc 0 sec -2016-05-02 19:46:18 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:46:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:46:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:46:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:46:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:46:20 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:46:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:46:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:20 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:46:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:46:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:46:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:46:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:46:20 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:46:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:46:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:46:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:20 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:46:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:46:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:46:20 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:46:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:46:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:46:20 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:46:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:46:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:46:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:46:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:46:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:46:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:46:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:46:20 INFO WorkspaceExplorerServiceImpl:142 - end time - 175 msc 0 sec -2016-05-02 19:46:20 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:46:26 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:46:26 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:46:26 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:46:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:26 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:46:26 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:46:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:46:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:46:26 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:46:26 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:46:26 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:46:26 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:46:26 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 19:46:26 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 19:46:26 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:46:26 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:46:26 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:46:26 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:46:26 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:46:26 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:46:26 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:46:26 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:46:26 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:46:26 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:46:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:46:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:46:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:46:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:46:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:46:26 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:46:26 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:26 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:46:26 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:46:26 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:26 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:26 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:46:26 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@1d01e417, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@ace0c6a, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5d9108b0, socketFactory=javax.net.DefaultSocketFactory@5cd18acd, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:46:26 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:46:27 INFO WorkspaceExplorerServiceImpl:188 - end time - 64 msc 0 sec -2016-05-02 19:46:27 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:46:27 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:46:27 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:46:27 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:46:27 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:246340}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1744160, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:27 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:46:27 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:27 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:27 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1856979}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2128881}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1009579, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1466945, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:27 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:27 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1542665}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1478930, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:46:27 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1856980}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856980}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 DEBUG command:56 - Command execution completed -2016-05-02 19:46:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856980}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 DEBUG command:56 - Command execution completed -2016-05-02 19:46:27 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856980}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 DEBUG command:56 - Command execution completed -2016-05-02 19:46:27 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:46:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856980}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 DEBUG command:56 - Command execution completed -2016-05-02 19:46:27 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856980}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 DEBUG command:56 - Command execution completed -2016-05-02 19:46:27 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1856980}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:46:27 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:46:27 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:46:28 DEBUG query:56 - Query completed -2016-05-02 19:46:28 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 19:46:28 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2128881} -2016-05-02 19:46:28 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1542665} -2016-05-02 19:46:28 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:246340} -2016-05-02 19:46:28 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1856980}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:46:28 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1856980} -2016-05-02 19:46:28 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1856979} -2016-05-02 19:46:28 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:46:28 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:46:28 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:46:28 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 19:46:28 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:46:28 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:46:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:46:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:46:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:46:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:28 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:46:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:46:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:46:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:46:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:28 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:46:28 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:46:28 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:46:28 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:46:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:46:28 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:46:28 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 19:46:28 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:46:28 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:46:28 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:46:28 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:46:28 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:46:28 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:46:28 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:46:28 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:46:28 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:46:28 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:46:28 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:46:28 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:46:28 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:28 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:28 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:28 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@1d01e417, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@ace0c6a, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5d9108b0, socketFactory=javax.net.DefaultSocketFactory@5cd18acd, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:46:28 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:46:28 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:46:28 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:246341}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1856981}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1366625, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:28 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:46:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1279353, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:28 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:28 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:28 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:28 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2128882}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1233001, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:28 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1542666}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2243813, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:28 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 19:46:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:46:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:46:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:46:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:46:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:46:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:46:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:28 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:46:28 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:46:28 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1856982}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856982}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 DEBUG command:56 - Command execution completed -2016-05-02 19:46:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856982}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 DEBUG command:56 - Command execution completed -2016-05-02 19:46:28 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856982}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 DEBUG command:56 - Command execution completed -2016-05-02 19:46:28 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:46:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856982}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 DEBUG command:56 - Command execution completed -2016-05-02 19:46:28 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1856982}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 DEBUG command:56 - Command execution completed -2016-05-02 19:46:28 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1856982}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:28 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:46:28 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:46:28 INFO WorkspaceExplorerServiceImpl:188 - end time - 42 msc 0 sec -2016-05-02 19:46:28 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:46:28 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:46:28 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:46:28 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:46:28 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:46:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:46:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=13.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 19:46:29 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:46:29 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:46:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:46:29 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:46:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:46:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:29 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:46:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:46:29 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:46:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:46:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:29 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:46:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:46:29 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:46:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:46:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:29 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:46:29 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:46:29 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:46:29 DEBUG query:56 - Query completed -2016-05-02 19:46:29 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 19:46:29 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2128882} -2016-05-02 19:46:29 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1856982}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:46:29 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1856982} -2016-05-02 19:46:29 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:46:29 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1542666} -2016-05-02 19:46:29 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:46:29 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:46:29 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 19:46:29 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:246341} -2016-05-02 19:46:29 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1856981} -2016-05-02 19:46:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:46:30 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:46:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:46:30 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 19:46:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:30 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:46:30 DEBUG ServiceEngine:193 - get() - start -2016-05-02 19:46:30 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:46:30 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:46:30 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:46:30 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:46:30 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:46:30 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:46:30 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 19:46:30 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:46:30 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:46:30 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:46:30 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:46:30 DEBUG Operation:173 - get(String) - start -2016-05-02 19:46:30 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:46:30 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:46:30 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:46:30 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:46:30 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:30 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:30 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:30 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@1d01e417, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@ace0c6a, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5d9108b0, socketFactory=javax.net.DefaultSocketFactory@5cd18acd, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:46:30 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:46:30 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:46:30 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:246342}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1415578, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:30 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:46:30 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:30 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:30 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2128883}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1428299, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:30 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 19:46:30 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1856983}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1301836, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:30 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:30 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1542667}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1567656, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:46:30 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1856984}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856984}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG command:56 - Command execution completed -2016-05-02 19:46:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856984}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG command:56 - Command execution completed -2016-05-02 19:46:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856984}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG command:56 - Command execution completed -2016-05-02 19:46:30 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:46:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856984}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG command:56 - Command execution completed -2016-05-02 19:46:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856984}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG command:56 - Command execution completed -2016-05-02 19:46:30 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:46:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856984}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG command:56 - Command execution completed -2016-05-02 19:46:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1856984}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG command:56 - Command execution completed -2016-05-02 19:46:30 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:46:30 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1856984}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG query:56 - Query completed -2016-05-02 19:46:30 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:46:30 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:46:30 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 19:46:30 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1856984}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG update:56 - Update completed -2016-05-02 19:46:30 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1856984}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG query:56 - Query completed -2016-05-02 19:46:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:46:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:46:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:46:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:46:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:46:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:46:30 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:46:30 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 19:46:30 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 19:46:30 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 19:46:30 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:46:30 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:46:30 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:46:30 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:46:30 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 19:46:30 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:46:30 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 19:46:30 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 19:46:30 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:46:30 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:46:30 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:46:30 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:46:30 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:46:30 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:46:30 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:46:30 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:30 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:30 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:30 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@1d01e417, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@ace0c6a, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5d9108b0, socketFactory=javax.net.DefaultSocketFactory@5cd18acd, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:46:30 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:46:30 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:46:30 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:246343}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1253044, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:30 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:46:30 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:30 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:46:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:30 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2128884}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=880821, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:30 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1856985}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1290758, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:30 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:46:30 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1542668}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2173624, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:46:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 19:46:30 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1856986}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856986}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG command:56 - Command execution completed -2016-05-02 19:46:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856986}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG command:56 - Command execution completed -2016-05-02 19:46:30 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856986}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG command:56 - Command execution completed -2016-05-02 19:46:30 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:46:30 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:46:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856986}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG command:56 - Command execution completed -2016-05-02 19:46:30 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1856986}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG command:56 - Command execution completed -2016-05-02 19:46:30 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:46:30 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1856986}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG query:56 - Query completed -2016-05-02 19:46:30 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:46:30 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2128884} -2016-05-02 19:46:30 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:246343} -2016-05-02 19:46:30 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1542668} -2016-05-02 19:46:30 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1856986}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:46:30 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1856986} -2016-05-02 19:46:30 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:46:30 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1856985} -2016-05-02 19:46:30 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:46:30 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:46:30 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:46:30 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:46:30 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 19:46:30 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:46:30 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:46:30 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:46:30 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:46:30 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:46:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:46:40 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:46:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:46:40 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:46:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:46:40 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:46:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:46:40 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:46:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:46:46 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1856984}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:46:46 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1856984} -2016-05-02 19:46:46 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1542667} -2016-05-02 19:46:46 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:246342} -2016-05-02 19:46:46 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2128883} -2016-05-02 19:46:46 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1856983} -2016-05-02 19:47:08 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 19:47:08 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 19:47:08 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 19:47:08 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:47:08 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:47:08 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:47:08 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:47:08 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@18a5f95d -2016-05-02 19:47:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:47:08 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:47:08 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:47:08 DEBUG TemplateModel:83 - 2016-05-02 19:47:08, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:47:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:47:08 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 19:47:10 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:47:10 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:47:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:47:10 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:47:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:10 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:47:10 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:47:10 DEBUG TemplateModel:83 - 2016-05-02 19:47:10, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:47:10 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:47:10 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:47:10 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 129 ms -2016-05-02 19:47:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 19:47:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 19:47:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 19:47:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 19:47:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 19:47:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 19:47:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 19:47:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 19:47:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 19:47:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 19:47:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 19:47:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 19:47:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 19:47:10 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 19:47:11 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 19:47:11 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:47:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:47:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@40bd6e8a -2016-05-02 19:47:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@219f7929 -2016-05-02 19:47:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@678d6d6d -2016-05-02 19:47:11 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@806ea2f -2016-05-02 19:47:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 118 ms -2016-05-02 19:47:11 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 19:47:11 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 19:47:11 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 19:47:11 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 19:47:11 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 19:47:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:11 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:47:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 19:47:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 29 ms -2016-05-02 19:47:11 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 19:47:11 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:47:11 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 19:47:11 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:47:11 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:47:11 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:47:11 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:47:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:47:11 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:47:11 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:47:11 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 19:47:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:11 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 19:47:11 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 19:47:11 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 19:47:11 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 19:47:11 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 19:47:11 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 19:47:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 29 -2016-05-02 19:47:11 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:47:11 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 19:47:11 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 23 ms -2016-05-02 19:47:11 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 19:47:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:47:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:11 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 19:47:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:11 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 19:47:12 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:47:12 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:47:12 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 19:47:12 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:47:12 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:47:12 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 19:47:12 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 19:47:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:12 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:47:12 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 19:47:12 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:47:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 19:47:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:12 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:47:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 19:47:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:12 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:47:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 19:47:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:12 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:47:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 19:47:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:13 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:47:13 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:47:13 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:47:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:47:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:47:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:47:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:13 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 19:47:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:47:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:13 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 19:47:13 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 19:47:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:13 INFO WorkspaceExplorerServiceImpl:188 - end time - 125 msc 0 sec -2016-05-02 19:47:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:47:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:13 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 19:47:13 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 19:47:13 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:13 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:13 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 19:47:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:47:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:47:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:47:13 INFO WorkspaceExplorerServiceImpl:188 - end time - 125 msc 0 sec -2016-05-02 19:47:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-05-02 19:47:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:47:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:47:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 19:47:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-02 19:47:13 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 19:47:13 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 19:47:13 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 19:47:13 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 19:47:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:47:13 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 19:47:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:47:13 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:47:13 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:47:13 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-02 19:47:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:47:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:47:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-02 19:47:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:13 INFO WorkspaceExplorerServiceImpl:188 - end time - 332 msc 0 sec -2016-05-02 19:47:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:21 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:47:21 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:47:21 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 19:47:21 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:47:21 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:47:22 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 19:47:22 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 19:47:22 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 19:47:22 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 19:47:22 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 19:47:22 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 19:47:22 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:47:22 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 19:47:22 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 19:47:22 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 19:47:22 DEBUG WPS2SM:204 - Schema: null -2016-05-02 19:47:22 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 19:47:22 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:47:22 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 19:47:22 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 19:47:22 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 19:47:22 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 19:47:22 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 19:47:22 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 19:47:22 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 19:47:22 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 19:47:22 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:47:22 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 19:47:22 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 19:47:22 DEBUG WPS2SM:92 - WPS type: -2016-05-02 19:47:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 19:47:22 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 19:47:22 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:47:22 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 19:47:22 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 19:47:22 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 19:47:22 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 19:47:22 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 19:47:22 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 19:47:22 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 19:47:22 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 19:47:22 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:47:22 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 19:47:22 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 19:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:47:22 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:47:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:47:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:47:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:22 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:47:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:47:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:47:22 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:47:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:22 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:47:22 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:47:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:47:22 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:47:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:22 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:47:22 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:47:22 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:47:22 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:47:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:47:22 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:47:22 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:47:22 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:47:22 INFO WorkspaceExplorerServiceImpl:142 - end time - 193 msc 0 sec -2016-05-02 19:47:22 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:47:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:30 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:47:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:47:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:30 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:47:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:47:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:30 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:47:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:47:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:47:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:47:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:47:30 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:47:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:47:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:47:30 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:47:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:30 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:47:31 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:47:31 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:47:31 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:47:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:47:31 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:47:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:47:31 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:47:31 INFO WorkspaceExplorerServiceImpl:142 - end time - 206 msc 0 sec -2016-05-02 19:47:31 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:47:36 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:47:36 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:47:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:47:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:47:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:47:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:36 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:47:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:36 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:47:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:36 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:47:36 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:47:36 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:47:36 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:47:36 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:47:36 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:47:36 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 19:47:36 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 19:47:36 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:47:36 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:47:36 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:47:36 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:47:36 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:47:36 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:47:36 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:47:36 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:47:36 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:47:36 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:47:36 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:47:36 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:47:36 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:47:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:47:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:47:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:36 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:47:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:36 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:47:36 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:36 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:36 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7ef57b6b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@30b307db, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@39c8d3d7, socketFactory=javax.net.DefaultSocketFactory@2fcbe5e4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:47:36 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:47:36 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:47:36 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:47:36 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:47:36 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:47:36 INFO WorkspaceExplorerServiceImpl:188 - end time - 72 msc 0 sec -2016-05-02 19:47:36 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:47:36 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:47:36 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:246356}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:47:36 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:47:36 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1856997}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:36 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1469164, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1507101, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:36 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:47:36 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:36 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:36 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:36 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2128895}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:47:36 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:47:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1292125, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:36 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1542681}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:47:36 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:47:36 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1367716, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:36 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:47:36 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1856998}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856998}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:36 DEBUG command:56 - Command execution completed -2016-05-02 19:47:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856998}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:36 DEBUG command:56 - Command execution completed -2016-05-02 19:47:36 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856998}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:36 DEBUG command:56 - Command execution completed -2016-05-02 19:47:36 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:47:36 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856998}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:36 DEBUG command:56 - Command execution completed -2016-05-02 19:47:36 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1856998}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:36 DEBUG command:56 - Command execution completed -2016-05-02 19:47:36 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1856998}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:47:37 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:47:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:47:37 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:47:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:47:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:37 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:47:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:47:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:37 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:47:37 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:47:37 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:47:37 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:47:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:47:37 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:47:37 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 19:47:37 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:47:37 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:47:37 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:47:37 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:47:37 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:47:37 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:47:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:47:37 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:47:37 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:47:37 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:47:37 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:47:37 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:47:37 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:37 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:37 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:37 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7ef57b6b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@30b307db, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@39c8d3d7, socketFactory=javax.net.DefaultSocketFactory@2fcbe5e4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:47:37 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:47:37 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:47:37 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1856999}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1356581, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:37 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:246357}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:47:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:37 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:37 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1420668, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:37 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2128897}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=899047, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:47:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:37 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:47:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:37 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:47:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:47:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:37 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1542682}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1245180, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:47:37 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:47:37 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:47:37 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1857000}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1857000}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 DEBUG command:56 - Command execution completed -2016-05-02 19:47:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1857000}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 DEBUG command:56 - Command execution completed -2016-05-02 19:47:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1857000}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 DEBUG command:56 - Command execution completed -2016-05-02 19:47:37 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:47:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1857000}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 DEBUG command:56 - Command execution completed -2016-05-02 19:47:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1857000}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 DEBUG command:56 - Command execution completed -2016-05-02 19:47:37 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1857000}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:37 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:47:37 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:47:37 DEBUG query:56 - Query completed -2016-05-02 19:47:37 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 19:47:37 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2128895} -2016-05-02 19:47:37 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:246356} -2016-05-02 19:47:37 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1542681} -2016-05-02 19:47:37 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1856998}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:47:37 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1856998} -2016-05-02 19:47:37 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1856997} -2016-05-02 19:47:37 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:47:37 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:47:37 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:47:37 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 19:47:37 INFO WorkspaceExplorerServiceImpl:188 - end time - 155 msc 0 sec -2016-05-02 19:47:37 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:47:37 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:47:37 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:47:37 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:47:37 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:47:37 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:47:37 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:47:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:47:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:37 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:47:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:47:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:47:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:47:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:38 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:47:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:38 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:47:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:38 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:47:38 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:47:38 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:47:38 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 19:47:38 DEBUG query:56 - Query completed -2016-05-02 19:47:38 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 19:47:38 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2128897} -2016-05-02 19:47:38 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:246357} -2016-05-02 19:47:38 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1857000}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:47:38 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1542682} -2016-05-02 19:47:38 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1857000} -2016-05-02 19:47:38 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:47:38 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:47:38 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1856999} -2016-05-02 19:47:38 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:47:38 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 19:47:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:47:39 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:47:39 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:47:39 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 19:47:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:39 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:47:39 DEBUG ServiceEngine:193 - get() - start -2016-05-02 19:47:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:47:39 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:47:39 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:47:39 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:47:39 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:47:39 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:47:39 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 19:47:39 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:47:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:47:39 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:47:39 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:47:39 DEBUG Operation:173 - get(String) - start -2016-05-02 19:47:39 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:47:39 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:47:39 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:47:39 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:47:39 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:39 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:39 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:39 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7ef57b6b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@30b307db, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@39c8d3d7, socketFactory=javax.net.DefaultSocketFactory@2fcbe5e4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:47:39 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:47:39 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:47:39 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:246358}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1339977, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:39 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:47:39 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:39 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:39 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2128899}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1857001}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=939443, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1468631, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:39 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:39 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1542683}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1251260, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:47:39 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1857002}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1857002}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG command:56 - Command execution completed -2016-05-02 19:47:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1857002}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG command:56 - Command execution completed -2016-05-02 19:47:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1857002}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG command:56 - Command execution completed -2016-05-02 19:47:39 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:47:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1857002}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG command:56 - Command execution completed -2016-05-02 19:47:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1857002}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG command:56 - Command execution completed -2016-05-02 19:47:39 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:47:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1857002}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG command:56 - Command execution completed -2016-05-02 19:47:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1857002}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG command:56 - Command execution completed -2016-05-02 19:47:39 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:47:39 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1857002}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG query:56 - Query completed -2016-05-02 19:47:39 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:47:39 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:47:39 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 19:47:39 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1857002}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG update:56 - Update completed -2016-05-02 19:47:39 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1857002}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG query:56 - Query completed -2016-05-02 19:47:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:39 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:47:39 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 19:47:39 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 19:47:39 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 19:47:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:47:39 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:47:39 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:47:39 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:47:39 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 19:47:39 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:47:39 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 19:47:39 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 19:47:39 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:47:39 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:47:39 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:47:39 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:47:39 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:47:39 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:47:39 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:47:39 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:39 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:39 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:39 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7ef57b6b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@30b307db, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@39c8d3d7, socketFactory=javax.net.DefaultSocketFactory@2fcbe5e4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:47:39 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:47:39 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:47:39 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1857003}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:246359}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1333014, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:39 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:47:39 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1537267, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:39 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:47:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:39 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:39 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2128900}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=854987, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:47:39 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1542684}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2748733, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:47:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}] -2016-05-02 19:47:39 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1857004}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1857004}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG command:56 - Command execution completed -2016-05-02 19:47:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1857004}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG command:56 - Command execution completed -2016-05-02 19:47:39 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1857004}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG command:56 - Command execution completed -2016-05-02 19:47:39 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:47:39 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:47:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1857004}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG command:56 - Command execution completed -2016-05-02 19:47:39 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1857004}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG command:56 - Command execution completed -2016-05-02 19:47:39 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:47:39 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1857004}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG query:56 - Query completed -2016-05-02 19:47:39 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:47:39 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2128900} -2016-05-02 19:47:39 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:246359} -2016-05-02 19:47:39 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1542684} -2016-05-02 19:47:39 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1857004}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:47:39 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1857004} -2016-05-02 19:47:39 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:47:39 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1857003} -2016-05-02 19:47:39 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:47:39 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:47:39 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:47:39 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:47:39 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 19:47:39 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:47:39 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:47:39 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:47:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:47:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:47:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:47:49 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:47:49 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:47:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:47:49 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:47:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:47:49 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:47:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-02 19:47:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:47:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:47:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:47:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=14.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:47:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:47:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:47:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=14.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:47:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=14.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:47:59 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2128899} -2016-05-02 19:47:59 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:246358} -2016-05-02 19:47:59 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1542683} -2016-05-02 19:47:59 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1857002}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:47:59 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1857002} -2016-05-02 19:47:59 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1857001} -2016-05-02 19:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:47:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:47:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:47:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:47:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:47:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:47:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:47:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:47:59 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:47:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:47:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:47:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:47:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:47:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:47:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:47:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:47:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:47:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:47:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:47:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:00 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:48:00 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:48:00 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:48:00 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:48:00 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:48:00 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:48:00 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:48:00 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:48:00 INFO WorkspaceExplorerServiceImpl:142 - end time - 158 msc 0 sec -2016-05-02 19:48:00 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:48:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:48:02 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:48:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:48:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:48:02 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:48:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:48:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:02 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:48:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:48:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:48:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:02 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:48:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:48:02 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:48:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:48:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:48:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:48:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:48:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:48:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:48:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:02 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:48:03 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:48:03 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:48:03 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:48:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:48:03 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:48:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:48:03 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:48:03 INFO WorkspaceExplorerServiceImpl:142 - end time - 156 msc 0 sec -2016-05-02 19:48:03 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:48:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:48:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:03 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:48:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:48:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:03 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:48:03 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:48:03 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:48:03 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:48:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:48:03 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:48:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:48:03 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:48:03 INFO WorkspaceExplorerServiceImpl:142 - end time - 169 msc 0 sec -2016-05-02 19:48:03 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:48:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:48:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:48:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:48:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:05 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:48:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:48:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:48:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:48:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:48:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:05 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:48:05 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:48:05 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:48:05 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:48:05 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:48:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:48:05 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:48:05 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:48:05 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:48:05 INFO WorkspaceExplorerServiceImpl:142 - end time - 173 msc 0 sec -2016-05-02 19:48:05 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:48:11 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:48:11 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:48:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:11 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:48:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:11 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:48:11 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:48:11 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:48:11 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:48:11 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:48:11 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:48:11 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 19:48:11 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 19:48:11 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:48:11 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:48:11 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:48:11 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:48:11 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:48:11 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:48:11 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:48:11 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:48:11 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:48:11 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:48:11 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:48:11 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:11 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:11 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:11 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7ef57b6b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@30b307db, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@39c8d3d7, socketFactory=javax.net.DefaultSocketFactory@2fcbe5e4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:48:11 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:48:11 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:48:11 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:246366}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1130251, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:11 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:48:11 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:11 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:11 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1857010}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1177110, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:11 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:11 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2128906}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1010428, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:11 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1542691}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1358631, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:11 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:48:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:11 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1857011}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1857011}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 DEBUG command:56 - Command execution completed -2016-05-02 19:48:11 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1857011}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 DEBUG command:56 - Command execution completed -2016-05-02 19:48:11 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1857011}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:48:11 DEBUG command:56 - Command execution completed -2016-05-02 19:48:11 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:48:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:48:11 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:11 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:11 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:11 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:11 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:11 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:11 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:48:11 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:48:11 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1857011}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 DEBUG command:56 - Command execution completed -2016-05-02 19:48:11 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1857011}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 DEBUG command:56 - Command execution completed -2016-05-02 19:48:11 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1857011}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:11 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:48:11 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:48:11 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:48:11 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:48:11 INFO WorkspaceExplorerServiceImpl:188 - end time - 52 msc 0 sec -2016-05-02 19:48:11 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:48:11 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:48:12 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:48:12 DEBUG query:56 - Query completed -2016-05-02 19:48:12 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 19:48:12 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2128906} -2016-05-02 19:48:12 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:246366} -2016-05-02 19:48:12 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1857011}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:48:12 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1857011} -2016-05-02 19:48:12 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1542691} -2016-05-02 19:48:12 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:48:12 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1857010} -2016-05-02 19:48:12 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:48:12 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:48:12 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 19:48:12 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:48:12 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:48:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:12 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:48:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:12 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:48:12 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:48:12 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:48:12 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:48:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:48:12 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:48:12 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 19:48:12 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:48:12 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:48:12 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:48:12 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:48:12 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:48:12 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:48:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:48:12 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:48:12 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:48:12 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:48:12 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:48:12 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:48:12 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:12 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:12 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:12 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7ef57b6b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@30b307db, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@39c8d3d7, socketFactory=javax.net.DefaultSocketFactory@2fcbe5e4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:48:12 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:48:12 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:48:12 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:246368}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1581665, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:12 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:48:12 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:12 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:12 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1857012}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1471392, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:12 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2128909}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1165729, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:12 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1542694}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1217146, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:48:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:48:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:12 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1857013}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1857013}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 DEBUG command:56 - Command execution completed -2016-05-02 19:48:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1857013}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 DEBUG command:56 - Command execution completed -2016-05-02 19:48:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1857013}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:48:12 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:48:12 DEBUG command:56 - Command execution completed -2016-05-02 19:48:12 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:48:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1857013}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 DEBUG command:56 - Command execution completed -2016-05-02 19:48:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1857013}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 DEBUG command:56 - Command execution completed -2016-05-02 19:48:12 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1857013}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:12 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:48:12 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:48:12 INFO WorkspaceExplorerServiceImpl:188 - end time - 44 msc 0 sec -2016-05-02 19:48:12 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:48:12 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:48:12 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:48:12 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:48:12 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:48:13 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:48:13 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:48:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:48:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:13 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:48:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:48:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:13 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:48:13 DEBUG ASLSession:458 - Getting security token: null in thread 29 -2016-05-02 19:48:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 29 -2016-05-02 19:48:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:13 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:48:13 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:48:13 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:48:13 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 19:48:13 DEBUG query:56 - Query completed -2016-05-02 19:48:13 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 19:48:13 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2128909} -2016-05-02 19:48:13 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:246368} -2016-05-02 19:48:13 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1542694} -2016-05-02 19:48:13 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1857013}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:48:13 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1857013} -2016-05-02 19:48:13 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:48:13 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:48:13 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:48:13 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 19:48:13 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1857012} -2016-05-02 19:48:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:48:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:48:14 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:48:14 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 19:48:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:14 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:48:14 DEBUG ServiceEngine:193 - get() - start -2016-05-02 19:48:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:48:14 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:48:14 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:48:14 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:48:14 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:48:14 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:48:14 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 19:48:14 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:48:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:48:14 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:48:14 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:48:14 DEBUG Operation:173 - get(String) - start -2016-05-02 19:48:14 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:48:14 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:48:14 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:48:14 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:48:14 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:14 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:14 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:14 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7ef57b6b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@30b307db, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@39c8d3d7, socketFactory=javax.net.DefaultSocketFactory@2fcbe5e4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:48:14 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:48:14 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:48:14 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1857014}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:246369}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1271720, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:14 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:48:14 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:14 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1168527, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:14 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:14 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2128910}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=981981, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:14 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1542695}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2506998, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 19:48:14 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1857015}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1857015}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG command:56 - Command execution completed -2016-05-02 19:48:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1857015}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG command:56 - Command execution completed -2016-05-02 19:48:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1857015}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG command:56 - Command execution completed -2016-05-02 19:48:14 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:48:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1857015}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG command:56 - Command execution completed -2016-05-02 19:48:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1857015}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG command:56 - Command execution completed -2016-05-02 19:48:14 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:48:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1857015}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG command:56 - Command execution completed -2016-05-02 19:48:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1857015}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG command:56 - Command execution completed -2016-05-02 19:48:14 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:48:14 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1857015}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG query:56 - Query completed -2016-05-02 19:48:14 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:48:14 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:48:14 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 19:48:14 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1857015}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG update:56 - Update completed -2016-05-02 19:48:14 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1857015}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG query:56 - Query completed -2016-05-02 19:48:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:48:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:48:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:48:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:48:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:48:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:48:14 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:48:14 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 19:48:14 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 19:48:14 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 19:48:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:48:14 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:48:14 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:48:14 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:48:14 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 19:48:14 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:48:14 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 19:48:14 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 19:48:14 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:48:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:48:14 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:48:14 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:48:14 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:48:14 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:48:14 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:48:14 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:14 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:14 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:14 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7ef57b6b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@30b307db, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@39c8d3d7, socketFactory=javax.net.DefaultSocketFactory@2fcbe5e4, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:48:14 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:48:14 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:48:14 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:246370}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1380007, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:14 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:48:14 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:14 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:48:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:14 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1857016}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1310587, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:14 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2128911}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1058112, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:48:14 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1542696}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1688922, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:48:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:48:14 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1857017}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1857017}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG command:56 - Command execution completed -2016-05-02 19:48:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1857017}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG command:56 - Command execution completed -2016-05-02 19:48:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1857017}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG command:56 - Command execution completed -2016-05-02 19:48:14 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:48:14 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:48:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1857017}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG command:56 - Command execution completed -2016-05-02 19:48:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1857017}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG command:56 - Command execution completed -2016-05-02 19:48:14 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:48:14 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1857017}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:14 DEBUG query:56 - Query completed -2016-05-02 19:48:14 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:48:14 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2128911} -2016-05-02 19:48:14 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:246370} -2016-05-02 19:48:14 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1857017}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:48:14 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1542696} -2016-05-02 19:48:14 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1857017} -2016-05-02 19:48:14 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:48:14 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1857016} -2016-05-02 19:48:14 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:48:14 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:48:14 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:48:14 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:48:14 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 19:48:14 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:48:14 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:48:14 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:48:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:48:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 19:48:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 19:48:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:48:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}] -2016-05-02 19:48:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:48:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 19:48:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:48:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 19:48:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 19:48:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:48:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-02 19:48:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:48:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 19:48:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:48:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:48:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 19:48:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 19:48:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-02 19:48:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:48:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 19:48:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:48:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:48:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:48:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 19:48:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 19:48:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 19:48:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:48:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 19:48:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:48:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:49:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:49:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:49:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:49:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 19:49:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 19:49:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-02 19:49:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:49:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:49:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:49:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:49:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:49:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:49:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:49:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:49:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:49:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:49:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:49:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:49:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:49:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:49:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:49:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:49:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:49:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:49:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:49:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:49:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:49:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:49:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:49:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:49:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:49:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:49:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:49:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:49:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:49:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:49:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:49:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:49:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:49:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:49:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:49:53 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:49:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:49:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:49:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:49:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:49:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:49:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:49:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:49:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:50:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:50:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:50:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:50:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:50:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:50:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:50:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:50:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:50:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:50:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:50:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:50:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:50:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:50:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-02 19:50:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:50:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:50:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:50:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:50:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:50:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:50:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:50:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:50:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:50:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:50:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:50:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:50:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:50:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:50:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:50:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:50:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:50:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:50:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:50:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:50:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:50:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:50:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:50:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:50:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:50:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:50:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:50:48 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:50:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:50:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:50:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:50:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:50:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:50:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:50:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:50:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:51:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:51:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:51:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:51:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:51:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:51:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:51:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:51:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:51:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:51:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:51:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:51:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:51:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:51:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-02 19:51:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:51:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:51:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:51:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:51:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:51:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:51:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:51:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:51:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:51:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:51:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:51:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:51:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:51:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:51:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:51:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:51:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:52:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:52:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:52:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:52:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:52:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:52:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-02 19:52:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:52:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:52:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:52:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:52:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:52:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:52:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:52:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:52:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:52:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:52:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:52:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:52:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:52:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:52:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:52:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:52:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:52:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:52:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:52:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:52:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:52:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:52:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:52:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:52:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:52:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:52:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:52:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:52:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:53:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:53:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:53:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:53:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:53:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:53:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:53:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:53:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:53:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:53:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:53:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:53:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-02 19:53:33 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-02 19:53:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:53:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:53:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:53:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:53:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:53:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:53:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:53:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:53:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:53:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:53:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:53:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:53:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:53:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:53:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:53:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:53:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:53:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:53:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:53:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:53:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:53:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:54:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:54:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:54:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:54:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:54:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:54:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-02 19:54:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:54:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-02 19:54:36 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-02 19:54:36 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-02 19:54:36 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-02 19:54:36 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:54:36 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:54:36 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:54:36 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:54:36 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@27caef75 -2016-05-02 19:54:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:36 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:54:36 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:54:36 DEBUG TemplateModel:83 - 2016-05-02 19:54:36, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:54:36 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:54:36 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-02 19:54:38 INFO SessionUtil:49 - no user found in session, use test user -2016-05-02 19:54:38 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-02 19:54:38 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:54:38 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-02 19:54:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:38 INFO ASLSession:352 - Logging the entrance -2016-05-02 19:54:38 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-02 19:54:38 DEBUG TemplateModel:83 - 2016-05-02 19:54:38, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-02 19:54:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:54:38 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:54:38 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 123 ms -2016-05-02 19:54:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-02 19:54:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-02 19:54:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-02 19:54:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-02 19:54:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-02 19:54:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-02 19:54:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-02 19:54:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-02 19:54:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-02 19:54:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-02 19:54:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-02 19:54:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-02 19:54:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-02 19:54:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-02 19:54:39 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-02 19:54:39 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:54:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-02 19:54:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@2d5d2694 -2016-05-02 19:54:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@46d5a541 -2016-05-02 19:54:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@7bb11c4c -2016-05-02 19:54:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@766fb467 -2016-05-02 19:54:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 107 ms -2016-05-02 19:54:39 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-02 19:54:39 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-02 19:54:39 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-02 19:54:39 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-02 19:54:39 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-02 19:54:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:39 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:54:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-02 19:54:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 20 ms -2016-05-02 19:54:39 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-02 19:54:39 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:54:39 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-02 19:54:39 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:54:39 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:54:39 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:54:39 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:54:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:39 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:54:39 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:54:39 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-02 19:54:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:39 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-02 19:54:39 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-02 19:54:39 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-02 19:54:39 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-02 19:54:39 DEBUG JCRRepository:271 - Initialize repository -2016-05-02 19:54:39 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-02 19:54:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-02 19:54:39 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:54:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-02 19:54:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-02 19:54:39 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-02 19:54:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:39 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-02 19:54:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:39 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-02 19:54:40 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:54:40 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-02 19:54:40 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:54:40 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:54:40 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-02 19:54:40 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-02 19:54:40 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-02 19:54:40 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-02 19:54:40 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-02 19:54:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:40 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:54:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-02 19:54:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:40 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:54:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-02 19:54:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:40 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:54:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-02 19:54:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:40 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-02 19:54:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-02 19:54:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:41 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-02 19:54:41 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-02 19:54:41 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-02 19:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:54:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:54:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:41 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-02 19:54:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:41 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:41 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-02 19:54:41 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-02 19:54:41 INFO WorkspaceExplorerServiceImpl:188 - end time - 132 msc 0 sec -2016-05-02 19:54:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:41 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-02 19:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:54:41 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:54:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:41 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-02 19:54:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:41 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-02 19:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 19:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:54:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:54:41 INFO WorkspaceExplorerServiceImpl:188 - end time - 129 msc 0 sec -2016-05-02 19:54:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-05-02 19:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 19:54:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:54:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-02 19:54:41 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-02 19:54:41 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-02 19:54:41 INFO ISClientConnector:82 - found only one RR, take it -2016-05-02 19:54:41 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-02 19:54:41 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-02 19:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 19:54:41 DEBUG StorageClient:517 - set scope: /gcube -2016-05-02 19:54:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 19:54:41 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-02 19:54:41 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-02 19:54:42 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 24 ms -2016-05-02 19:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 19:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 19:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-02 19:54:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:42 INFO WorkspaceExplorerServiceImpl:188 - end time - 392 msc 0 sec -2016-05-02 19:54:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:54:51 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:54:51 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-02 19:54:51 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:54:51 INFO StatWPSClientSession:84 - CONNECT -2016-05-02 19:54:52 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-02 19:54:52 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-02 19:54:52 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-02 19:54:52 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-02 19:54:52 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-02 19:54:52 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-02 19:54:52 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-02 19:54:52 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-02 19:54:52 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-02 19:54:52 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-02 19:54:52 DEBUG WPS2SM:204 - Schema: null -2016-05-02 19:54:52 DEBUG WPS2SM:205 - Encoding: null -2016-05-02 19:54:52 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:54:52 DEBUG WPS2SM:227 - Machter find: true -2016-05-02 19:54:52 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-02 19:54:52 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-02 19:54:52 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-02 19:54:52 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-02 19:54:52 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-02 19:54:52 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-02 19:54:52 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-02 19:54:52 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:54:52 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-02 19:54:52 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-02 19:54:52 DEBUG WPS2SM:92 - WPS type: -2016-05-02 19:54:52 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-02 19:54:52 DEBUG WPS2SM:100 - Guessed default value: -2016-05-02 19:54:52 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-02 19:54:52 DEBUG WPS2SM:149 - Machter find: true -2016-05-02 19:54:52 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-02 19:54:52 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-02 19:54:52 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-02 19:54:52 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-02 19:54:52 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-02 19:54:52 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-02 19:54:52 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-02 19:54:52 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-02 19:54:52 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-02 19:54:52 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-02 19:54:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:54:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:54:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:54:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:52 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:54:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:52 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:54:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:54:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:52 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:54:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:54:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:54:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:54:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:54:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:54:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:54:52 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:54:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:52 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:52 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:52 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:54:52 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:54:52 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:54:52 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:54:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:54:52 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:54:52 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:54:52 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:54:52 INFO WorkspaceExplorerServiceImpl:142 - end time - 191 msc 0 sec -2016-05-02 19:54:52 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:54:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:54 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:54 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:54 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:54 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:55 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:55 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:54:55 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:54:55 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:54:55 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:54:55 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:54:55 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:54:55 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:54:55 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:54:55 INFO WorkspaceExplorerServiceImpl:142 - end time - 174 msc 0 sec -2016-05-02 19:54:55 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:54:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:57 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:54:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:54:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:57 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:54:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:54:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:57 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:54:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:54:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:54:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:54:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:54:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:57 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:54:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:54:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:54:57 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:54:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:57 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:54:57 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:54:57 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:54:57 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:54:57 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:54:57 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:54:57 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:54:57 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:54:57 INFO WorkspaceExplorerServiceImpl:142 - end time - 156 msc 0 sec -2016-05-02 19:54:57 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:58 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:54:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:54:58 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:54:58 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:54:58 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:54:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:54:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:58 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:54:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:54:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:54:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:58 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:54:58 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:54:58 INFO WorkspaceExplorerServiceImpl:142 - end time - 182 msc 0 sec -2016-05-02 19:54:58 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:54:58 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:54:58 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:54:58 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:54:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:54:58 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:54:58 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:54:58 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:54:58 INFO WorkspaceExplorerServiceImpl:142 - end time - 154 msc 0 sec -2016-05-02 19:54:58 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:54:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:58 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:54:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:54:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:54:59 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:54:59 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:54:59 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:54:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:54:59 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:54:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:54:59 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:54:59 INFO WorkspaceExplorerServiceImpl:142 - end time - 166 msc 0 sec -2016-05-02 19:54:59 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:54:59 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:54:59 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:54:59 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:54:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:54:59 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:54:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:54:59 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:54:59 INFO WorkspaceExplorerServiceImpl:142 - end time - 157 msc 0 sec -2016-05-02 19:54:59 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:54:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:54:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:54:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:54:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:54:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:54:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:54:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:54:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:55:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:55:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:55:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:55:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:55:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:55:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:55:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:55:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:55:00 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:55:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-02 19:55:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:55:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-02 19:55:00 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-02 19:55:00 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:55:00 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:55:00 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:55:00 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:55:00 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:55:00 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:55:00 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:55:00 INFO WorkspaceExplorerServiceImpl:142 - end time - 176 msc 0 sec -2016-05-02 19:55:00 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:55:00 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-02 19:55:00 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-02 19:55:00 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-02 19:55:00 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:55:00 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-02 19:55:00 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-02 19:55:00 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-02 19:55:00 INFO WorkspaceExplorerServiceImpl:142 - end time - 1148 msc 1 sec -2016-05-02 19:55:00 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-02 19:55:05 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:55:05 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:55:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:55:05 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:55:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:55:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:55:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:55:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:55:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:55:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:55:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:55:05 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:55:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:55:05 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:55:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:55:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:55:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:55:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:55:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:55:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:55:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:55:05 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:55:05 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:55:05 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:55:05 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:55:05 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:55:05 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:55:05 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-02 19:55:05 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-02 19:55:05 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:55:05 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:55:05 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:55:05 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:55:05 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:55:05 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:55:05 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:55:05 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:55:05 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:55:05 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:55:05 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:55:05 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:55:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:55:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:55:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:55:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:55:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:55:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:55:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:55:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:55:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:55:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:55:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:55:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:55:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:55:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:55:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:55:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:55:06 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:55:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:55:06 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:06 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:06 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:55:06 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fea66d3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6c6797ce, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@51f8cfc, socketFactory=javax.net.DefaultSocketFactory@5a60f704, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:55:06 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:55:06 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:55:06 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:55:06 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-02 19:55:06 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:55:06 INFO WorkspaceExplorerServiceImpl:188 - end time - 66 msc 0 sec -2016-05-02 19:55:06 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:55:06 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:55:06 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:246439}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1406579, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:06 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:55:06 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:06 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1857088}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1494783, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:06 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:06 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2128978}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1105436, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:06 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1542764}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1172461, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:55:06 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1857089}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1857089}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 DEBUG command:56 - Command execution completed -2016-05-02 19:55:06 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1857089}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 DEBUG command:56 - Command execution completed -2016-05-02 19:55:06 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1857089}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 DEBUG command:56 - Command execution completed -2016-05-02 19:55:06 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:55:06 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1857089}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 DEBUG command:56 - Command execution completed -2016-05-02 19:55:06 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1857089}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 DEBUG command:56 - Command execution completed -2016-05-02 19:55:06 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1857089}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:55:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-02 19:55:06 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:55:06 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:55:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:55:06 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:55:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:55:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:55:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:55:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:55:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:55:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:55:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:55:06 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:55:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:55:06 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:55:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:55:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:55:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:55:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:55:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:55:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:55:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:55:06 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:55:06 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:55:07 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:55:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:55:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-02 19:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:55:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:55:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:55:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:55:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:55:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:55:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:55:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:55:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:55:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:55:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:55:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:55:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:55:07 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:55:07 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-02 19:55:07 DEBUG ServiceEngine:306 - get() - start -2016-05-02 19:55:07 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:55:07 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:55:07 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-02 19:55:07 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-02 19:55:07 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:55:07 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:55:07 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-02 19:55:07 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:55:07 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:55:07 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:55:07 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:55:07 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:55:07 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:55:07 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:55:07 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:55:07 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:07 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:07 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:07 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fea66d3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6c6797ce, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@51f8cfc, socketFactory=javax.net.DefaultSocketFactory@5a60f704, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:55:07 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:55:07 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:55:07 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:55:07 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-02 19:55:07 DEBUG query:56 - Query completed -2016-05-02 19:55:07 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-02 19:55:07 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2128978} -2016-05-02 19:55:07 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:246439} -2016-05-02 19:55:07 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1542764} -2016-05-02 19:55:07 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1857089}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:55:07 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1857089} -2016-05-02 19:55:07 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1857088} -2016-05-02 19:55:07 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:55:07 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:55:07 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-02 19:55:07 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-02 19:55:07 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:246440}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1124422, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:07 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:55:07 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:07 INFO WorkspaceExplorerServiceImpl:188 - end time - 45 msc 0 sec -2016-05-02 19:55:07 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:07 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1857090}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1349122, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:07 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:07 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2128979}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1164309, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:07 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-02 19:55:07 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:55:07 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1542765}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1469146, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:55:07 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-02 19:55:07 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1857091}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1857091}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 DEBUG command:56 - Command execution completed -2016-05-02 19:55:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1857091}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-02 19:55:07 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-02 19:55:07 DEBUG command:56 - Command execution completed -2016-05-02 19:55:07 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1857091}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 DEBUG command:56 - Command execution completed -2016-05-02 19:55:07 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:55:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1857091}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 DEBUG command:56 - Command execution completed -2016-05-02 19:55:07 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1857091}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 DEBUG command:56 - Command execution completed -2016-05-02 19:55:07 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1857091}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:55:07 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:55:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:55:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:55:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:55:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:55:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:55:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:55:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:55:07 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:55:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-02 19:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-02 19:55:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:55:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:55:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:55:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:55:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:55:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:55:07 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:55:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-02 19:55:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-02 19:55:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:55:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:55:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:55:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:55:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:55:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:55:07 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:55:07 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:55:07 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:55:07 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:55:07 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:55:07 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-02 19:55:08 DEBUG query:56 - Query completed -2016-05-02 19:55:08 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-02 19:55:08 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2128979} -2016-05-02 19:55:08 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:246440} -2016-05-02 19:55:08 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1542765} -2016-05-02 19:55:08 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1857091}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:55:08 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1857091} -2016-05-02 19:55:08 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1857090} -2016-05-02 19:55:08 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:55:08 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:55:08 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-02 19:55:08 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-02 19:55:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-02 19:55:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-02 19:55:08 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-02 19:55:08 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-02 19:55:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:55:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:55:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:55:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:55:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:55:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:55:08 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:55:08 DEBUG ServiceEngine:193 - get() - start -2016-05-02 19:55:08 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:55:08 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:55:08 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:55:08 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:55:08 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:55:08 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-02 19:55:08 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-02 19:55:08 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:55:08 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:55:08 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:55:08 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:55:08 DEBUG Operation:173 - get(String) - start -2016-05-02 19:55:08 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:55:08 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:55:08 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:55:08 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:55:08 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:08 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:08 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:08 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fea66d3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6c6797ce, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@51f8cfc, socketFactory=javax.net.DefaultSocketFactory@5a60f704, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:55:08 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:55:08 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:55:08 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1857092}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1346998, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:08 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:55:08 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:08 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:08 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:08 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:246441}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1349067, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:08 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2128981}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1020222, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:08 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1542766}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1425216, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-02 19:55:08 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1857093}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1857093}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG command:56 - Command execution completed -2016-05-02 19:55:08 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1857093}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG command:56 - Command execution completed -2016-05-02 19:55:08 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1857093}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG command:56 - Command execution completed -2016-05-02 19:55:08 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:55:08 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1857093}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG command:56 - Command execution completed -2016-05-02 19:55:08 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1857093}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG command:56 - Command execution completed -2016-05-02 19:55:08 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:55:08 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1857093}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG command:56 - Command execution completed -2016-05-02 19:55:08 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1857093}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG command:56 - Command execution completed -2016-05-02 19:55:08 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:55:08 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1857093}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG query:56 - Query completed -2016-05-02 19:55:08 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:55:08 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-02 19:55:08 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-02 19:55:08 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1857093}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG update:56 - Update completed -2016-05-02 19:55:08 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1857093}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG query:56 - Query completed -2016-05-02 19:55:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-02 19:55:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-02 19:55:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-02 19:55:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-02 19:55:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-02 19:55:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-02 19:55:08 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-02 19:55:08 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-02 19:55:08 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-02 19:55:08 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-02 19:55:08 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:55:08 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:55:08 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-02 19:55:08 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-02 19:55:08 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-02 19:55:08 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-02 19:55:08 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-02 19:55:08 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-02 19:55:08 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-02 19:55:08 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-02 19:55:08 DEBUG BucketCoding:42 - coding name done -2016-05-02 19:55:08 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-02 19:55:08 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-02 19:55:08 DEBUG MongoIO:77 - open mongo connection -2016-05-02 19:55:08 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-02 19:55:08 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:08 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:08 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:08 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@fea66d3, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6c6797ce, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@51f8cfc, socketFactory=javax.net.DefaultSocketFactory@5a60f704, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-02 19:55:08 INFO MongoIO:106 - new mongo connection pool opened -2016-05-02 19:55:08 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-02 19:55:08 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1857094}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:246442}] to mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1205408, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:08 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-02 19:55:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1212720, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:08 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:08 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-02 19:55:08 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:08 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2128983}] to mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=808798, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-02 19:55:08 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1542767}] to mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1480398, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-02 19:55:08 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-02 19:55:08 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1857095}] to mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1857095}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG command:56 - Command execution completed -2016-05-02 19:55:08 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1857095}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG command:56 - Command execution completed -2016-05-02 19:55:08 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1857095}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG command:56 - Command execution completed -2016-05-02 19:55:08 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:55:08 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:55:08 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1857095}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG command:56 - Command execution completed -2016-05-02 19:55:08 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1857095}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG command:56 - Command execution completed -2016-05-02 19:55:08 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:55:08 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1857095}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-02 19:55:08 DEBUG query:56 - Query completed -2016-05-02 19:55:08 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-02 19:55:08 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2128983} -2016-05-02 19:55:08 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1857095}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:55:08 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:246442} -2016-05-02 19:55:08 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1857095} -2016-05-02 19:55:08 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1542767} -2016-05-02 19:55:09 INFO MongoIO:508 - Mongo has been closed -2016-05-02 19:55:09 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1857094} -2016-05-02 19:55:09 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-02 19:55:09 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:55:09 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:55:09 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:55:09 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-02 19:55:09 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-02 19:55:09 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:55:09 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-02 19:55:14 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2128981} -2016-05-02 19:55:14 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1857093}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-02 19:55:14 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1542766} -2016-05-02 19:55:14 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:246441} -2016-05-02 19:55:14 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1857093} -2016-05-02 19:55:14 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1857092} -2016-05-02 19:55:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-02 19:55:32 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-02 19:56:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-02 19:56:27 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-02 19:57:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-02 19:57:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:35:36 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 09:35:36 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 09:35:36 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 09:35:36 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 09:35:36 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 09:35:36 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:35:36 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 09:35:36 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@1b539270 -2016-05-03 09:35:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:35:36 INFO ASLSession:352 - Logging the entrance -2016-05-03 09:35:36 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 09:35:36 DEBUG TemplateModel:83 - 2016-05-03 09:35:36, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 09:35:36 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:35:36 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 09:35:38 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 09:35:38 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 09:35:38 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:35:38 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 09:35:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:35:38 INFO ASLSession:352 - Logging the entrance -2016-05-03 09:35:38 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 09:35:38 DEBUG TemplateModel:83 - 2016-05-03 09:35:38, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 09:35:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:35:38 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 09:35:38 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 116 ms -2016-05-03 09:35:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 09:35:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 09:35:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 09:35:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 09:35:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 09:35:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 09:35:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 09:35:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 09:35:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 09:35:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 09:35:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 09:35:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 09:35:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 09:35:38 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 09:35:38 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 09:35:39 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:35:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 09:35:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@67e0613 -2016-05-03 09:35:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@2b3d9b0c -2016-05-03 09:35:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@80e8124 -2016-05-03 09:35:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@35f3f5fc -2016-05-03 09:35:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 327 ms -2016-05-03 09:35:39 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 09:35:39 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 09:35:39 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 09:35:39 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 09:35:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:35:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:35:39 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:35:39 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 09:35:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:39 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 09:35:39 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 09:35:39 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 09:35:39 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 09:35:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:35:39 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:35:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 09:35:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 26 ms -2016-05-03 09:35:40 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 09:35:40 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:35:40 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 09:35:40 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 09:35:40 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 09:35:40 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 09:35:40 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 09:35:40 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 09:35:40 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 09:35:40 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 09:35:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 31 -2016-05-03 09:35:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:35:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 09:35:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 23 ms -2016-05-03 09:35:40 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 09:35:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:35:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:40 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 09:35:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:40 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 09:35:40 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 09:35:40 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 09:35:40 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 09:35:41 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 09:35:41 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 09:35:41 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 09:35:41 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 09:35:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:41 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:35:41 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 09:35:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:41 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 09:35:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 09:35:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:41 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 09:35:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 09:35:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:41 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 09:35:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 09:35:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:41 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 09:35:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 09:35:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:42 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 09:35:42 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 09:35:42 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 09:35:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:35:42 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:35:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:35:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:42 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 09:35:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:35:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:35:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:35:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:43 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 09:35:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:35:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:35:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:35:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:43 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 09:35:43 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 09:35:43 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 09:35:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:43 INFO WorkspaceExplorerServiceImpl:188 - end time - 215 msc 0 sec -2016-05-03 09:35:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:43 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 09:35:43 INFO WorkspaceExplorerServiceImpl:188 - end time - 125 msc 0 sec -2016-05-03 09:35:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:35:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:35:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:35:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 09:35:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-05-03 09:35:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:35:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:35:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 09:35:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 09:35:43 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 09:35:43 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 09:35:43 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 09:35:43 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 09:35:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:35:43 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 09:35:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:35:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:35:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 09:35:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 17 ms -2016-05-03 09:35:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:35:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:35:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:35:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:35:43 INFO WorkspaceExplorerServiceImpl:188 - end time - 383 msc 0 sec -2016-05-03 09:35:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:35:46 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:35:46 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:35:46 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 09:35:46 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:35:46 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 09:35:46 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 09:35:46 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 09:35:46 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 09:35:46 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 09:35:46 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 09:35:46 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 09:35:46 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:35:46 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 09:35:46 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-03 09:35:46 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-03 09:35:46 DEBUG WPS2SM:204 - Schema: null -2016-05-03 09:35:46 DEBUG WPS2SM:205 - Encoding: null -2016-05-03 09:35:46 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 09:35:46 DEBUG WPS2SM:227 - Machter find: true -2016-05-03 09:35:46 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 09:35:46 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-03 09:35:46 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-03 09:35:46 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-03 09:35:46 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-03 09:35:46 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 09:35:46 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 09:35:46 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 09:35:46 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-03 09:35:46 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 09:35:46 DEBUG WPS2SM:92 - WPS type: -2016-05-03 09:35:46 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 09:35:46 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 09:35:46 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 09:35:46 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 09:35:46 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 09:35:46 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 09:35:46 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 09:35:46 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 09:35:46 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 09:35:46 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 09:35:46 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 09:35:46 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 09:35:46 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 09:35:46 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 09:35:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:35:47 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:35:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:35:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:35:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:47 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:35:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:35:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:47 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:35:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:35:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:35:47 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:35:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:35:47 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:35:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:35:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:35:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:35:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:35:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:35:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:35:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:47 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:35:47 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:35:47 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:35:47 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:35:47 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:35:47 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:35:47 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:35:47 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:35:47 INFO WorkspaceExplorerServiceImpl:142 - end time - 210 msc 0 sec -2016-05-03 09:35:47 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:35:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:35:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:35:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:35:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:35:49 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:35:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:35:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:49 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:35:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:35:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:35:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:35:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:35:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:35:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:35:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:35:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:35:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:35:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:35:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:35:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:49 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:35:49 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:35:49 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:35:49 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:35:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:35:49 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:35:49 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:35:49 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:35:49 INFO WorkspaceExplorerServiceImpl:142 - end time - 185 msc 0 sec -2016-05-03 09:35:49 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:35:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:35:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:35:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:35:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:35:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:35:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:35:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:50 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:35:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:35:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:35:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:35:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:35:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:35:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:35:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:35:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:35:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:35:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:35:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:35:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:50 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:35:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:50 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:35:50 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:35:50 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:35:50 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:35:50 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:35:50 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:35:50 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:35:50 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:35:50 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:35:50 INFO WorkspaceExplorerServiceImpl:142 - end time - 192 msc 0 sec -2016-05-03 09:35:50 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:35:56 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:35:56 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:35:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:35:56 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:35:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:35:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:56 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:35:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:35:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:35:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:35:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:56 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:35:56 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:35:56 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 09:35:56 DEBUG ServiceEngine:306 - get() - start -2016-05-03 09:35:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:35:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:35:56 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 09:35:56 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 09:35:56 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:35:56 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 09:35:56 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 09:35:56 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:35:56 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 09:35:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:35:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:35:56 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:35:56 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:35:56 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:35:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:35:56 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:35:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:35:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:35:56 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:35:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:35:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:56 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:35:56 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:35:56 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 09:35:56 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:35:56 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:56 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 09:35:57 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 09:35:57 INFO WorkspaceExplorerServiceImpl:188 - end time - 44 msc 0 sec -2016-05-03 09:35:57 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 09:35:57 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 09:35:57 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:57 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:57 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ec53f8b9, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@51ac3ab0, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@24122b4, socketFactory=javax.net.DefaultSocketFactory@24d5894, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:35:57 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:35:57 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:35:57 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1865290}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:254637}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1280804, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1416592, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:57 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:35:57 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:57 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:57 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:57 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2137179}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1087530, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:57 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1550963}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1402602, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:35:57 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1865291}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865291}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG command:56 - Command execution completed -2016-05-03 09:35:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865291}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG command:56 - Command execution completed -2016-05-03 09:35:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865291}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG command:56 - Command execution completed -2016-05-03 09:35:57 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 09:35:57 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865291}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG command:56 - Command execution completed -2016-05-03 09:35:57 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865291}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG command:56 - Command execution completed -2016-05-03 09:35:57 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1865291}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:35:57 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:35:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:35:57 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:35:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:35:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:57 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:35:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:35:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:35:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:35:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:57 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:35:57 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:35:57 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 09:35:57 DEBUG ServiceEngine:306 - get() - start -2016-05-03 09:35:57 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:35:57 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:35:57 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 09:35:57 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 09:35:57 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:35:57 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 09:35:57 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 09:35:57 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:35:57 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 09:35:57 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:35:57 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:35:57 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:35:57 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:35:57 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:35:57 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:35:57 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:57 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:57 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:57 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ec53f8b9, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@51ac3ab0, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@24122b4, socketFactory=javax.net.DefaultSocketFactory@24d5894, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:35:57 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:35:57 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:35:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:35:57 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:35:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:35:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:35:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:35:57 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:35:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:35:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:57 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:35:57 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:35:57 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:254638}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2594624, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:57 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:35:57 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:57 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:57 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 09:35:57 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2137180}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 09:35:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1037449, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:57 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1865292}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1207633, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:57 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:57 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1550964}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:35:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1324458, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 09:35:57 INFO WorkspaceExplorerServiceImpl:188 - end time - 42 msc 0 sec -2016-05-03 09:35:58 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:35:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 09:35:58 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 09:35:58 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1865293}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865293}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:58 DEBUG command:56 - Command execution completed -2016-05-03 09:35:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865293}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:58 DEBUG command:56 - Command execution completed -2016-05-03 09:35:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865293}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 09:35:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 09:35:58 DEBUG command:56 - Command execution completed -2016-05-03 09:35:58 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 09:35:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865293}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:58 DEBUG command:56 - Command execution completed -2016-05-03 09:35:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865293}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:58 DEBUG command:56 - Command execution completed -2016-05-03 09:35:58 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1865293}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:58 DEBUG query:56 - Query completed -2016-05-03 09:35:58 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 09:35:58 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:254637} -2016-05-03 09:35:58 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2137179} -2016-05-03 09:35:58 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1550963} -2016-05-03 09:35:58 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1865291}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 09:35:58 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1865291} -2016-05-03 09:35:58 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1865290} -2016-05-03 09:35:58 INFO MongoIO:508 - Mongo has been closed -2016-05-03 09:35:58 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 09:35:58 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 09:35:58 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 09:35:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:35:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 09:35:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:35:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 09:35:58 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:35:58 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:35:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:35:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:35:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:35:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:58 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:35:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:35:58 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:35:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:35:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:58 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:35:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:35:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:35:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:35:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:58 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:35:58 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:35:58 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:35:58 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 09:35:58 DEBUG query:56 - Query completed -2016-05-03 09:35:58 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 09:35:58 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2137180} -2016-05-03 09:35:58 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:254638} -2016-05-03 09:35:58 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1550964} -2016-05-03 09:35:58 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1865293}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 09:35:58 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1865293} -2016-05-03 09:35:58 INFO MongoIO:508 - Mongo has been closed -2016-05-03 09:35:58 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1865292} -2016-05-03 09:35:58 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 09:35:58 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 09:35:58 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 09:35:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:35:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:35:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:35:59 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 09:35:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:59 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:35:59 DEBUG ServiceEngine:193 - get() - start -2016-05-03 09:35:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:35:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:35:59 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 09:35:59 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 09:35:59 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:35:59 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 09:35:59 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 09:35:59 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:35:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:35:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:35:59 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:35:59 DEBUG Operation:173 - get(String) - start -2016-05-03 09:35:59 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:35:59 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:35:59 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:35:59 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:35:59 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:59 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:59 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:59 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ec53f8b9, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@51ac3ab0, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@24122b4, socketFactory=javax.net.DefaultSocketFactory@24d5894, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:35:59 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:35:59 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:35:59 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1865294}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:254639}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1417629, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:59 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:35:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1483872, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:59 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:59 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:59 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:59 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2137181}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1046525, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:59 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1550965}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1422340, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:35:59 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1865295}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865295}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG command:56 - Command execution completed -2016-05-03 09:35:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865295}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG command:56 - Command execution completed -2016-05-03 09:35:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865295}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG command:56 - Command execution completed -2016-05-03 09:35:59 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 09:35:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865295}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG command:56 - Command execution completed -2016-05-03 09:35:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865295}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG command:56 - Command execution completed -2016-05-03 09:35:59 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:35:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865295}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG command:56 - Command execution completed -2016-05-03 09:35:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865295}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG command:56 - Command execution completed -2016-05-03 09:35:59 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:35:59 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865295}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG query:56 - Query completed -2016-05-03 09:35:59 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 09:35:59 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 09:35:59 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 09:35:59 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865295}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG update:56 - Update completed -2016-05-03 09:35:59 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1865295}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG query:56 - Query completed -2016-05-03 09:35:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:35:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:35:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:35:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:35:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:35:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:35:59 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:35:59 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 09:35:59 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 09:35:59 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 09:35:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:35:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:35:59 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 09:35:59 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 09:35:59 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 09:35:59 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:35:59 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 09:35:59 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 09:35:59 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:35:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:35:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:35:59 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:35:59 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:35:59 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:35:59 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:35:59 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:59 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:59 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:59 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@ec53f8b9, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@51ac3ab0, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@24122b4, socketFactory=javax.net.DefaultSocketFactory@24d5894, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:35:59 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:35:59 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:35:59 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:254640}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1082057, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:59 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:35:59 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:59 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:35:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:59 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2137182}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1865296}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=881203, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1237175, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:59 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:35:59 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1550966}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1135153, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:35:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 09:35:59 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1865297}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865297}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG command:56 - Command execution completed -2016-05-03 09:35:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865297}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG command:56 - Command execution completed -2016-05-03 09:35:59 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865297}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG command:56 - Command execution completed -2016-05-03 09:35:59 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:35:59 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:35:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865297}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG command:56 - Command execution completed -2016-05-03 09:35:59 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865297}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG command:56 - Command execution completed -2016-05-03 09:35:59 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:35:59 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1865297}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:35:59 DEBUG query:56 - Query completed -2016-05-03 09:35:59 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 09:35:59 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:254640} -2016-05-03 09:35:59 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1550966} -2016-05-03 09:35:59 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1865297}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 09:35:59 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1865297} -2016-05-03 09:35:59 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2137182} -2016-05-03 09:35:59 INFO MongoIO:508 - Mongo has been closed -2016-05-03 09:35:59 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1865296} -2016-05-03 09:35:59 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:35:59 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 09:35:59 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 09:35:59 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 09:35:59 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 09:35:59 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 09:35:59 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 09:35:59 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 09:36:09 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:36:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:36:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:36:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:36:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:36:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:36:09 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:36:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:36:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:36:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:36:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:36:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:36:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:36:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:36:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:36:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:36:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:36:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:36:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:36:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:36:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:36:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:36:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:36:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:36:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:36:31 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:36:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:36:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:36:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:36:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:36:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:36:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:36:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:36:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:36:49 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:36:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:36:49 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:36:49 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:36:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:36:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:36:49 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:36:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:36:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:36:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:36:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:36:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:36:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:36:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:36:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:36:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:37:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:09 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:37:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:37:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:09 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:37:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:37:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:37:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:37:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:37:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:37:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:37:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:37:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:37:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:37:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:37:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:37:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:37:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:37:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:37:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:49 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:37:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:49 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:37:49 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:37:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:49 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:37:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:37:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:37:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:37:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:37:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:37:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:38:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:09 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:38:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:38:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:09 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:38:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:38:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:38:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:38:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:38:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:38:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:38:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:38:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:38:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:38:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:38:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:38:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:38:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:38:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:38:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:38:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:38:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:38:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:38:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:38:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:38:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:38:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:38:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:49 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:38:49 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:38:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:49 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:38:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:49 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:38:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:38:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:38:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:38:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:38:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:38:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:39:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:39:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:39:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:39:09 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:39:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:39:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:39:09 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:39:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:39:16 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:39:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:39:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:39:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:39:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:39:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:39:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:39:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:39:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:39:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:39:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:39:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:39:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:39:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:39:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:39:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:49 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:39:49 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:39:49 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:39:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:49 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:39:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:39:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:39:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:39:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:39:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:39:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:40:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:40:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:40:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:40:09 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:40:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:40:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:40:09 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:40:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:40:11 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:40:11 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:40:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:40:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:40:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:40:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:40:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:40:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:40:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:40:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:40:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:40:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:40:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:40:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:40:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:40:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:40:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:40:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:40:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:40:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:40:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:40:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:40:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:40:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:40:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:40:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:40:49 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:40:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:40:49 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:40:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:40:49 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:40:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:40:49 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:40:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:40:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:40:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:40:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:40:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:40:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:40:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:40:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:40:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:41:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:41:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:41:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:41:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:41:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:41:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:41:09 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:41:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:41:09 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:41:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:41:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:41:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:41:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:41:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:41:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:41:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:41:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:41:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:41:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:41:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:41:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:41:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:41:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:41:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:41:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:41:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:49 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:41:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:49 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:41:49 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:41:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:49 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:41:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:41:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:41:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:41:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:41:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:41:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 09:42:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:42:01 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:42:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:42:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 09:42:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:42:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 09:42:09 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:42:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 09:42:09 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:42:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 09:42:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:42:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 09:42:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:42:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 09:42:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:42:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 09:42:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:42:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 09:42:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:42:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 09:42:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:42:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 09:42:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:42:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 09:42:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:42:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-03 09:42:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:42:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-03 09:42:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:42:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-03 09:42:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:42:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}] -2016-05-03 09:42:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:42:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-03 09:42:49 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:42:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-03 09:42:49 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:42:49 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:42:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}] -2016-05-03 09:42:49 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:42:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-03 09:42:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=42.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-03 09:42:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:42:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:42:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:42:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=42.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-03 09:42:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:42:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=42.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-03 09:42:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:42:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=42.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:42:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:42:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=34.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:43:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:43:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=34.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:43:09 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:43:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=34.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:43:09 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:43:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=34.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 09:43:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:43:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=28.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 09:43:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:43:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=28.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 09:43:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:43:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=28.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 09:43:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:43:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=28.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 09:43:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:43:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=22.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 09:43:29 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:43:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=22.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 09:43:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:43:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=22.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 09:43:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:43:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=22.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:43:29 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:43:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=18.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:43:39 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:43:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=18.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:43:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:43:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=18.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:43:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:43:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=18.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:43:39 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:43:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=15.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:43:40 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2137181} -2016-05-03 09:43:40 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:254639} -2016-05-03 09:43:40 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1550965} -2016-05-03 09:43:40 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1865295}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 09:43:40 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1865295} -2016-05-03 09:43:40 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1865294} -2016-05-03 09:43:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:43:51 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:44:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:44:46 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:45:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:45:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:46:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:46:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:47:53 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 09:47:53 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 09:47:53 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 09:47:53 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 09:47:53 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 09:47:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:47:53 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 09:47:53 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@66eebe8e -2016-05-03 09:47:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:47:53 INFO ASLSession:352 - Logging the entrance -2016-05-03 09:47:53 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 09:47:53 DEBUG TemplateModel:83 - 2016-05-03 09:47:53, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 09:47:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:47:53 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 09:47:55 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 09:47:55 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 09:47:55 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:47:55 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 09:47:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:47:55 INFO ASLSession:352 - Logging the entrance -2016-05-03 09:47:55 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 09:47:55 DEBUG TemplateModel:83 - 2016-05-03 09:47:55, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 09:47:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:47:55 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 09:47:55 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 120 ms -2016-05-03 09:47:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 09:47:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 09:47:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 09:47:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 09:47:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 09:47:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 09:47:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 09:47:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 09:47:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 09:47:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 09:47:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 09:47:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 09:47:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 09:47:55 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 09:47:55 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 09:47:55 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:47:55 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 09:47:55 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@41b30bf7 -2016-05-03 09:47:55 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@6304f399 -2016-05-03 09:47:55 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@2ab31359 -2016-05-03 09:47:55 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@6de7d805 -2016-05-03 09:47:55 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 99 ms -2016-05-03 09:47:56 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 09:47:56 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 09:47:56 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 09:47:56 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 09:47:56 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 09:47:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:47:56 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:47:56 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 09:47:56 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 21 ms -2016-05-03 09:47:56 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 09:47:56 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:47:56 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 09:47:56 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 09:47:56 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 09:47:56 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 09:47:56 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 09:47:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:47:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:47:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:47:56 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 09:47:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:47:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:47:56 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 09:47:56 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 09:47:56 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 09:47:56 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 09:47:56 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 09:47:56 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 09:47:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:47:56 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:47:56 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 09:47:56 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 24 ms -2016-05-03 09:47:56 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 09:47:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:47:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:47:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:47:56 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 09:47:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:47:56 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 09:47:57 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:47:57 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 09:47:57 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 09:47:57 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 09:47:57 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 09:47:57 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 09:47:57 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 09:47:57 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 09:47:57 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 09:47:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:47:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:47:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:47:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:47:57 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 09:47:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 09:47:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:47:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:47:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:47:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:47:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:47:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:47:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:47:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:47:57 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 09:47:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 09:47:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:47:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:47:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:47:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:47:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:47:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:47:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:47:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:47:57 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 09:47:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 09:47:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:47:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:47:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:47:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:47:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:47:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:47:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:47:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:47:57 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 09:47:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 09:47:58 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:47:58 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:47:59 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 09:47:59 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 09:47:59 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 09:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:47:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:47:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:47:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:47:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:47:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:47:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:47:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:47:59 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 09:47:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:47:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:47:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:47:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:47:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:47:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:47:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:47:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:47:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:47:59 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 09:47:59 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 09:47:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:47:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:47:59 INFO WorkspaceExplorerServiceImpl:188 - end time - 112 msc 0 sec -2016-05-03 09:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:47:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:47:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:47:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:47:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:47:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:47:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:47:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:47:59 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 09:47:59 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 09:47:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:47:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:47:59 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 09:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:47:59 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:47:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 09:47:59 INFO WorkspaceExplorerServiceImpl:188 - end time - 132 msc 0 sec -2016-05-03 09:47:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-03 09:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:47:59 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:47:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 09:47:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 09:47:59 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 09:47:59 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 09:47:59 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 09:47:59 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 09:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:47:59 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 09:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:47:59 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:47:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 09:47:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 09:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:47:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:47:59 INFO WorkspaceExplorerServiceImpl:188 - end time - 347 msc 0 sec -2016-05-03 09:48:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:48:02 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:48:02 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:48:02 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 09:48:02 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:48:02 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 09:48:03 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 09:48:03 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 09:48:03 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 09:48:03 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 09:48:03 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 09:48:03 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 09:48:03 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:48:03 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 09:48:03 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-03 09:48:03 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-03 09:48:03 DEBUG WPS2SM:204 - Schema: null -2016-05-03 09:48:03 DEBUG WPS2SM:205 - Encoding: null -2016-05-03 09:48:03 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 09:48:03 DEBUG WPS2SM:227 - Machter find: true -2016-05-03 09:48:03 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 09:48:03 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-03 09:48:03 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-03 09:48:03 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-03 09:48:03 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-03 09:48:03 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 09:48:03 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 09:48:03 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 09:48:03 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-03 09:48:03 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 09:48:03 DEBUG WPS2SM:92 - WPS type: -2016-05-03 09:48:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 09:48:03 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 09:48:03 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 09:48:03 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 09:48:03 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 09:48:03 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 09:48:03 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 09:48:03 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 09:48:03 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 09:48:03 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 09:48:03 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 09:48:03 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 09:48:03 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 09:48:03 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 09:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:48:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:48:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:03 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:48:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:48:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:03 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:48:03 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:48:03 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:48:03 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:48:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:48:03 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:48:03 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:48:03 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:48:03 INFO WorkspaceExplorerServiceImpl:142 - end time - 205 msc 0 sec -2016-05-03 09:48:03 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:48:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:48:08 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:48:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:48:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:48:08 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:48:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:48:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:08 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:48:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:48:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:48:08 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:48:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:48:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:48:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:48:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:08 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:48:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:08 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:48:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:08 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:48:09 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:48:09 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:48:09 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:48:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:48:09 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:48:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:48:09 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:48:09 INFO WorkspaceExplorerServiceImpl:142 - end time - 202 msc 0 sec -2016-05-03 09:48:09 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:48:10 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:48:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:10 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:10 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:48:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:48:10 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:48:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:48:10 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:48:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:48:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:48:10 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:10 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:10 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:10 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:10 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:10 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:10 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:48:10 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:48:10 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:10 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:10 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:48:10 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:48:10 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:48:10 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:48:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:48:10 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:48:10 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:48:10 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:48:10 INFO WorkspaceExplorerServiceImpl:142 - end time - 186 msc 0 sec -2016-05-03 09:48:10 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:48:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:12 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:48:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:48:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:48:12 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:48:12 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:12 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:12 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:48:12 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:48:12 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:48:12 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:48:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:48:12 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:48:12 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:48:12 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:48:12 INFO WorkspaceExplorerServiceImpl:142 - end time - 183 msc 0 sec -2016-05-03 09:48:12 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:48:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:14 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:48:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:48:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:48:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:48:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:14 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:48:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:48:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:14 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:48:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:48:14 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:48:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:48:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:48:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:48:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:48:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:48:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:48:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:14 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:48:14 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:48:14 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:48:14 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:48:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:48:14 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:48:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:48:14 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:48:14 INFO WorkspaceExplorerServiceImpl:142 - end time - 151 msc 0 sec -2016-05-03 09:48:14 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:48:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:16 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:48:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:48:16 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:48:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:48:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:16 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:48:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:48:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:48:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:16 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:48:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:48:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:48:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:48:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:48:16 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:48:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:48:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:48:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:48:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:48:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:48:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:48:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:48:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:48:16 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:48:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:48:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:48:16 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:48:16 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:48:16 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:48:16 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:48:16 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:48:16 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:48:16 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:48:16 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:48:16 INFO WorkspaceExplorerServiceImpl:142 - end time - 174 msc 0 sec -2016-05-03 09:48:16 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:52:33 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 09:52:33 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 09:52:33 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 09:52:33 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 09:52:33 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 09:52:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:52:33 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 09:52:33 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@42c6732 -2016-05-03 09:52:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:52:33 INFO ASLSession:352 - Logging the entrance -2016-05-03 09:52:33 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 09:52:33 DEBUG TemplateModel:83 - 2016-05-03 09:52:33, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 09:52:33 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:52:33 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 09:52:35 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 09:52:35 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 09:52:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:52:35 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 09:52:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:35 INFO ASLSession:352 - Logging the entrance -2016-05-03 09:52:35 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 09:52:35 DEBUG TemplateModel:83 - 2016-05-03 09:52:35, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 09:52:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:52:35 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 09:52:35 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 114 ms -2016-05-03 09:52:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 09:52:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 09:52:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 09:52:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 09:52:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 09:52:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 09:52:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 09:52:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 09:52:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 09:52:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 09:52:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 09:52:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 09:52:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 09:52:35 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 09:52:35 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 09:52:35 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:52:36 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 09:52:36 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@7de26d14 -2016-05-03 09:52:36 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@695b1d76 -2016-05-03 09:52:36 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@3e09ad4c -2016-05-03 09:52:36 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@63b185db -2016-05-03 09:52:36 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 104 ms -2016-05-03 09:52:36 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 09:52:36 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 09:52:36 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 09:52:36 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 09:52:36 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 09:52:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:36 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:52:36 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 09:52:36 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 18 ms -2016-05-03 09:52:36 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 09:52:36 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:52:36 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 09:52:36 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 09:52:36 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 09:52:36 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 09:52:36 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 09:52:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:52:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:52:36 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:52:36 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 09:52:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:36 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 09:52:36 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 09:52:36 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 09:52:36 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 09:52:36 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 09:52:36 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 09:52:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:52:36 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:52:36 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 09:52:37 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 24 ms -2016-05-03 09:52:37 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:52:37 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 09:52:37 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 09:52:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:52:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:37 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 09:52:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:37 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 09:52:37 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 09:52:37 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 09:52:37 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 09:52:37 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 09:52:37 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 09:52:37 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 09:52:37 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 09:52:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:37 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 09:52:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 09:52:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:37 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 09:52:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 09:52:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:38 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 09:52:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 09:52:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:38 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 09:52:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 09:52:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:39 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 09:52:39 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 09:52:39 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 09:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:52:39 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:52:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:39 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 09:52:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:39 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 09:52:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:39 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 09:52:39 INFO WorkspaceExplorerServiceImpl:188 - end time - 114 msc 0 sec -2016-05-03 09:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:52:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:52:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:39 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 09:52:39 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 09:52:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:39 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 09:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:39 INFO WorkspaceExplorerServiceImpl:188 - end time - 142 msc 0 sec -2016-05-03 09:52:39 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:52:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 09:52:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-05-03 09:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:52:39 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:52:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 09:52:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 09:52:39 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 09:52:39 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 09:52:39 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 09:52:39 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 09:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:52:39 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 09:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:52:39 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:52:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 09:52:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 09:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 32 -2016-05-03 09:52:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:39 INFO WorkspaceExplorerServiceImpl:188 - end time - 386 msc 0 sec -2016-05-03 09:52:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:52:43 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:52:43 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:52:43 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 09:52:43 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:52:43 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 09:52:43 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 09:52:43 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 09:52:43 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 09:52:43 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 09:52:43 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 09:52:43 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 09:52:43 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:52:43 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 09:52:43 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-03 09:52:43 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-03 09:52:43 DEBUG WPS2SM:204 - Schema: null -2016-05-03 09:52:43 DEBUG WPS2SM:205 - Encoding: null -2016-05-03 09:52:43 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 09:52:43 DEBUG WPS2SM:227 - Machter find: true -2016-05-03 09:52:43 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 09:52:43 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-03 09:52:43 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-03 09:52:43 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-03 09:52:43 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-03 09:52:43 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 09:52:43 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 09:52:43 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 09:52:43 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-03 09:52:43 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 09:52:43 DEBUG WPS2SM:92 - WPS type: -2016-05-03 09:52:43 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 09:52:43 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 09:52:43 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 09:52:43 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 09:52:43 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 09:52:43 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 09:52:43 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 09:52:43 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 09:52:43 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 09:52:43 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 09:52:43 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 09:52:43 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 09:52:43 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 09:52:43 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 09:52:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:52:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:52:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:52:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:52:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:52:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:52:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:44 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:52:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:52:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:52:44 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:52:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:44 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:52:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:52:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:52:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:52:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:52:44 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:52:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:44 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:44 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:44 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:52:44 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:52:44 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:52:44 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:52:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:52:44 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:52:44 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:52:44 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:52:44 INFO WorkspaceExplorerServiceImpl:142 - end time - 270 msc 0 sec -2016-05-03 09:52:44 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:52:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:47 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:52:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:52:47 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:52:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:52:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:47 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:52:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:52:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:47 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:52:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:52:47 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:52:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:52:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:52:47 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:52:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:52:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:52:47 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:52:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:47 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:52:47 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:52:47 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:52:47 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:52:47 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:52:47 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:52:47 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:52:47 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:52:47 INFO WorkspaceExplorerServiceImpl:142 - end time - 166 msc 0 sec -2016-05-03 09:52:47 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:52:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:52:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:52:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:52:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:52:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:48 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:52:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:52:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:48 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:52:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:52:48 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:52:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:52:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:52:48 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:52:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:52:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:52:48 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:52:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:48 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:52:48 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:52:48 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:52:48 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:52:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:52:48 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:52:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:52:48 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:52:48 INFO WorkspaceExplorerServiceImpl:142 - end time - 154 msc 0 sec -2016-05-03 09:52:48 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:52:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:52:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:52:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:52:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:52:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:49 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:52:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:52:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:52:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:52:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:52:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:52:49 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:52:49 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:52:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:52:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:52:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:52:49 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:52:49 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:52:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:49 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:52:49 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:52:50 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:52:50 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:52:50 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:52:50 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:52:50 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:52:50 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:52:50 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:52:50 INFO WorkspaceExplorerServiceImpl:142 - end time - 171 msc 0 sec -2016-05-03 09:52:50 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:52:56 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:52:56 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:52:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:52:56 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:52:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:52:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:56 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:52:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:52:56 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:52:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:52:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:56 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:52:56 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:52:56 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 09:52:56 DEBUG ServiceEngine:306 - get() - start -2016-05-03 09:52:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:52:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:52:56 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 09:52:56 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 09:52:56 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:52:56 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 09:52:56 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 09:52:56 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:52:56 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 09:52:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:52:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:52:56 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:52:56 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:52:56 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:52:57 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:52:57 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:52:57 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:52:57 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:52:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:52:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:52:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:52:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:52:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:57 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@eb9c3a51, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@10b3061e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5956a422, socketFactory=javax.net.DefaultSocketFactory@4731e200, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:52:57 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:52:57 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:52:57 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:52:57 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:52:57 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 09:52:57 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 09:52:57 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:254901}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:52:57 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1865605}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:52:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1242337, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:52:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2298665, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:52:57 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:52:57 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:52:57 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:52:57 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:52:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:52:57 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 09:52:57 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2137422}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:52:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:52:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1028196, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:52:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:52:57 INFO WorkspaceExplorerServiceImpl:188 - end time - 77 msc 0 sec -2016-05-03 09:52:57 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1551206}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:52:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:52:57 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 09:52:57 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 09:52:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1152480, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:52:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 09:52:57 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1865606}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865606}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:57 DEBUG command:56 - Command execution completed -2016-05-03 09:52:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865606}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:57 DEBUG command:56 - Command execution completed -2016-05-03 09:52:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865606}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:57 DEBUG command:56 - Command execution completed -2016-05-03 09:52:57 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 09:52:57 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865606}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:57 DEBUG command:56 - Command execution completed -2016-05-03 09:52:57 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865606}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:57 DEBUG command:56 - Command execution completed -2016-05-03 09:52:57 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1865606}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 DEBUG query:56 - Query completed -2016-05-03 09:52:58 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 09:52:58 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2137422} -2016-05-03 09:52:58 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:254901} -2016-05-03 09:52:58 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1865606}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 09:52:58 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1551206} -2016-05-03 09:52:58 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1865606} -2016-05-03 09:52:58 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1865605} -2016-05-03 09:52:58 INFO MongoIO:508 - Mongo has been closed -2016-05-03 09:52:58 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 09:52:58 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 09:52:58 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 09:52:58 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:52:58 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:52:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:52:58 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:52:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:52:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:58 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:52:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:52:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:52:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:52:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:58 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:52:58 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:52:58 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 09:52:58 DEBUG ServiceEngine:306 - get() - start -2016-05-03 09:52:58 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:52:58 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:52:58 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 09:52:58 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 09:52:58 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:52:58 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 09:52:58 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 09:52:58 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:52:58 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 09:52:58 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:52:58 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:52:58 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:52:58 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:52:58 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:52:58 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:52:58 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:52:58 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:52:58 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:52:58 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@eb9c3a51, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@10b3061e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5956a422, socketFactory=javax.net.DefaultSocketFactory@4731e200, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:52:58 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:52:58 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:52:58 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:254902}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1865607}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1296078, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:52:58 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:52:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=3700869, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:52:58 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:52:58 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:52:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:52:58 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:52:58 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2137423}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1202107, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:52:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:52:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:52:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:52:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:52:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:52:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:58 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1551207}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1419466, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:52:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:52:58 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:52:58 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:52:58 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1865608}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865608}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 DEBUG command:56 - Command execution completed -2016-05-03 09:52:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865608}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 DEBUG command:56 - Command execution completed -2016-05-03 09:52:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865608}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 DEBUG command:56 - Command execution completed -2016-05-03 09:52:58 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 09:52:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865608}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 DEBUG command:56 - Command execution completed -2016-05-03 09:52:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865608}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 DEBUG command:56 - Command execution completed -2016-05-03 09:52:58 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1865608}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 09:52:58 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 09:52:58 INFO WorkspaceExplorerServiceImpl:188 - end time - 44 msc 0 sec -2016-05-03 09:52:58 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:52:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 09:52:58 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 09:52:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 09:52:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 09:52:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:52:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=3.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:52:58 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:52:58 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:52:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:52:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:52:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:52:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:58 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:52:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:52:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:52:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:52:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:58 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:52:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:52:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:52:58 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:52:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:58 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:52:58 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:52:58 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 09:52:59 DEBUG query:56 - Query completed -2016-05-03 09:52:59 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 09:52:59 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2137423} -2016-05-03 09:52:59 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:254902} -2016-05-03 09:52:59 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1551207} -2016-05-03 09:52:59 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1865608}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 09:52:59 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1865608} -2016-05-03 09:52:59 INFO MongoIO:508 - Mongo has been closed -2016-05-03 09:52:59 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 09:52:59 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 09:52:59 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 09:52:59 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1865607} -2016-05-03 09:52:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:52:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:52:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:52:59 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 09:52:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:52:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:52:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:52:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:52:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:52:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:52:59 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:52:59 DEBUG ServiceEngine:193 - get() - start -2016-05-03 09:52:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:52:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:52:59 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 09:52:59 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 09:52:59 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:52:59 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 09:52:59 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 09:52:59 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:52:59 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:52:59 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:52:59 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:52:59 DEBUG Operation:173 - get(String) - start -2016-05-03 09:52:59 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:52:59 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:52:59 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:52:59 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:52:59 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:52:59 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:52:59 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:52:59 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@eb9c3a51, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@10b3061e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5956a422, socketFactory=javax.net.DefaultSocketFactory@4731e200, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:52:59 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:52:59 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:52:59 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1865610}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:59 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1119568, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:52:59 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:52:59 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:52:59 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:254903}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:52:59 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:52:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:52:59 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:52:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:52:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1173388, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:52:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:52:59 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2137424}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:52:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:52:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=889810, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:52:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:52:59 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1551208}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:52:59 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:52:59 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1543029, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:52:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:53:00 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1865611}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865611}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG command:56 - Command execution completed -2016-05-03 09:53:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865611}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG command:56 - Command execution completed -2016-05-03 09:53:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865611}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG command:56 - Command execution completed -2016-05-03 09:53:00 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 09:53:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865611}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG command:56 - Command execution completed -2016-05-03 09:53:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865611}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG command:56 - Command execution completed -2016-05-03 09:53:00 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:53:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865611}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG command:56 - Command execution completed -2016-05-03 09:53:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865611}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG command:56 - Command execution completed -2016-05-03 09:53:00 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:53:00 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865611}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG query:56 - Query completed -2016-05-03 09:53:00 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 09:53:00 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 09:53:00 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 09:53:00 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865611}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG update:56 - Update completed -2016-05-03 09:53:00 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1865611}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG query:56 - Query completed -2016-05-03 09:53:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:53:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:53:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:53:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:53:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:53:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:53:00 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:53:00 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 09:53:00 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 09:53:00 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 09:53:00 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:53:00 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:53:00 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 09:53:00 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 09:53:00 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 09:53:00 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:53:00 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 09:53:00 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 09:53:00 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:53:00 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:53:00 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:53:00 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:53:00 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:53:00 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:53:00 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:53:00 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:00 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:00 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:00 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@eb9c3a51, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@10b3061e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5956a422, socketFactory=javax.net.DefaultSocketFactory@4731e200, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:53:00 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:53:00 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:53:00 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1865612}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1378950, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:00 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:53:00 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:00 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:00 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:254904}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:00 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1830673, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:00 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2137425}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=839298, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:00 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1551209}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1396580, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:53:00 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1865613}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865613}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG command:56 - Command execution completed -2016-05-03 09:53:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865613}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG command:56 - Command execution completed -2016-05-03 09:53:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865613}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG command:56 - Command execution completed -2016-05-03 09:53:00 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:53:00 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:53:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865613}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG command:56 - Command execution completed -2016-05-03 09:53:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865613}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG command:56 - Command execution completed -2016-05-03 09:53:00 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:53:00 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1865613}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:00 DEBUG query:56 - Query completed -2016-05-03 09:53:00 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 09:53:00 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2137425} -2016-05-03 09:53:00 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:254904} -2016-05-03 09:53:00 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1551209} -2016-05-03 09:53:00 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1865613}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 09:53:00 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1865613} -2016-05-03 09:53:00 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1865612} -2016-05-03 09:53:00 INFO MongoIO:508 - Mongo has been closed -2016-05-03 09:53:00 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:53:00 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 09:53:00 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 09:53:00 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 09:53:00 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 09:53:00 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 09:53:00 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 09:53:00 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 09:53:09 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:09 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:53:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:53:09 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:53:09 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:53:09 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:53:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:53:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:53:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:53:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:53:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:53:21 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:53:21 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:53:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:53:21 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:53:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:53:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:53:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:53:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:53:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:53:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:53:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:53:21 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:53:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:53:21 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:53:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:53:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:53:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:53:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:53:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:53:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:53:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:53:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:53:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:53:21 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 09:53:21 DEBUG ServiceEngine:306 - get() - start -2016-05-03 09:53:21 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:53:21 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:53:21 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 09:53:21 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 09:53:21 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:53:21 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 09:53:21 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 09:53:21 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:53:21 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 09:53:21 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:53:21 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:53:21 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:53:21 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:53:21 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:53:21 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:53:21 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:21 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:21 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:21 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@eb9c3a51, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@10b3061e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5956a422, socketFactory=javax.net.DefaultSocketFactory@4731e200, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:53:21 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:53:21 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:53:21 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1865616}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1170062, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:21 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:53:21 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:21 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:21 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:254909}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1346058, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:21 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2137430}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=910917, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:21 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1551214}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1361220, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:21 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:53:21 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1865617}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1865617}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 DEBUG command:56 - Command execution completed -2016-05-03 09:53:21 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1865617}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 DEBUG command:56 - Command execution completed -2016-05-03 09:53:21 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1865617}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 DEBUG command:56 - Command execution completed -2016-05-03 09:53:21 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 09:53:21 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1865617}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 DEBUG command:56 - Command execution completed -2016-05-03 09:53:21 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1865617}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 DEBUG command:56 - Command execution completed -2016-05-03 09:53:21 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1865617}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:53:21 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:53:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:53:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:53:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:53:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:53:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:53:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:53:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:53:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:53:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:53:21 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:53:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:53:21 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:53:21 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:53:21 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:53:21 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:53:21 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:53:21 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:53:21 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:53:21 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 09:53:21 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 09:53:21 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 09:53:21 INFO WorkspaceExplorerServiceImpl:188 - end time - 48 msc 0 sec -2016-05-03 09:53:21 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 09:53:21 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 09:53:22 DEBUG query:56 - Query completed -2016-05-03 09:53:22 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 09:53:22 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2137430} -2016-05-03 09:53:22 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:254909} -2016-05-03 09:53:22 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1865617}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 09:53:22 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1551214} -2016-05-03 09:53:22 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1865617} -2016-05-03 09:53:22 INFO MongoIO:508 - Mongo has been closed -2016-05-03 09:53:22 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 09:53:22 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 09:53:22 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 09:53:22 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1865616} -2016-05-03 09:53:22 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:53:22 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:53:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:53:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:53:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:53:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:53:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:53:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:53:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:53:22 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:53:22 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:53:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:53:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:53:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:53:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:53:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:53:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:53:22 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:53:22 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:53:22 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2137424} -2016-05-03 09:53:22 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:254903} -2016-05-03 09:53:22 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1551208} -2016-05-03 09:53:22 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1865611}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 09:53:22 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1865611} -2016-05-03 09:53:22 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1865610} -2016-05-03 09:53:22 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 09:53:22 DEBUG ServiceEngine:306 - get() - start -2016-05-03 09:53:22 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:53:22 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:53:22 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 09:53:22 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 09:53:22 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:53:22 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 09:53:22 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 09:53:22 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:53:22 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 09:53:22 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:53:22 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:53:22 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:53:22 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:53:22 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:53:22 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:53:22 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:22 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:22 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:22 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@eb9c3a51, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@10b3061e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5956a422, socketFactory=javax.net.DefaultSocketFactory@4731e200, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:53:22 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:53:22 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:53:22 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1865620}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:254910}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1370796, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:22 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:53:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2465994, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:22 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:22 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:22 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:22 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2137432}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=944801, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:22 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1551215}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1307091, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 09:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:53:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:53:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:53:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:53:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:53:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:53:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:53:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:53:22 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:53:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:53:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:53:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:53:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:53:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:53:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:53:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:53:22 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1865621}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1865621}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:53:22 DEBUG command:56 - Command execution completed -2016-05-03 09:53:22 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1865621}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 DEBUG command:56 - Command execution completed -2016-05-03 09:53:22 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1865621}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:53:22 DEBUG command:56 - Command execution completed -2016-05-03 09:53:22 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 09:53:22 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1865621}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 DEBUG command:56 - Command execution completed -2016-05-03 09:53:22 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1865621}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 DEBUG command:56 - Command execution completed -2016-05-03 09:53:22 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1865621}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:22 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 09:53:22 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 09:53:22 INFO WorkspaceExplorerServiceImpl:188 - end time - 42 msc 0 sec -2016-05-03 09:53:22 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:53:22 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 09:53:22 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 09:53:22 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 09:53:22 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 09:53:23 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 09:53:23 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 09:53:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:53:23 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:53:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:53:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:53:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:53:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:53:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:53:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:53:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:53:23 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 09:53:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:53:23 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:53:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:53:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:53:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:53:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:53:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:53:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:53:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:53:23 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 09:53:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:53:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:53:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:53:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:53:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:53:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:53:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:53:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:53:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:53:23 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 09:53:23 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 09:53:23 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 09:53:23 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 09:53:23 DEBUG query:56 - Query completed -2016-05-03 09:53:23 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 09:53:23 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2137432} -2016-05-03 09:53:23 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:254910} -2016-05-03 09:53:23 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1551215} -2016-05-03 09:53:23 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1865621}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 09:53:23 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1865621} -2016-05-03 09:53:23 INFO MongoIO:508 - Mongo has been closed -2016-05-03 09:53:23 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1865620} -2016-05-03 09:53:23 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 09:53:23 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 09:53:23 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 09:53:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:53:24 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:53:24 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:53:24 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-03 09:53:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:53:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:53:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:53:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:53:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:53:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:53:24 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 09:53:24 DEBUG ServiceEngine:193 - get() - start -2016-05-03 09:53:24 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:53:24 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:53:24 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 09:53:24 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 09:53:24 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:53:24 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 09:53:24 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 09:53:24 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:53:24 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:53:24 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:53:24 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 09:53:24 DEBUG Operation:173 - get(String) - start -2016-05-03 09:53:24 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:53:24 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:53:24 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:53:24 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:53:24 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:24 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:24 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:24 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@eb9c3a51, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@10b3061e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5956a422, socketFactory=javax.net.DefaultSocketFactory@4731e200, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:53:24 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:53:24 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:53:24 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:254911}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1451059, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:24 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:53:24 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:24 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:24 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2137433}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=988548, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:24 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1865622}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1353432, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:24 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:24 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1551216}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1128865, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 09:53:24 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1865623}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1865623}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG command:56 - Command execution completed -2016-05-03 09:53:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1865623}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG command:56 - Command execution completed -2016-05-03 09:53:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1865623}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG command:56 - Command execution completed -2016-05-03 09:53:24 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 09:53:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1865623}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG command:56 - Command execution completed -2016-05-03 09:53:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1865623}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG command:56 - Command execution completed -2016-05-03 09:53:24 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 09:53:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1865623}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG command:56 - Command execution completed -2016-05-03 09:53:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1865623}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG command:56 - Command execution completed -2016-05-03 09:53:24 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 09:53:24 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1865623}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG query:56 - Query completed -2016-05-03 09:53:24 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 09:53:24 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 09:53:24 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 09:53:24 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1865623}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG update:56 - Update completed -2016-05-03 09:53:24 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1865623}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG query:56 - Query completed -2016-05-03 09:53:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:53:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:53:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:53:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:53:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:53:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:53:24 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 09:53:24 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-03 09:53:24 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 09:53:24 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 09:53:24 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:53:24 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:53:24 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 09:53:24 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 09:53:24 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 09:53:24 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:53:24 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 09:53:24 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 09:53:24 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:53:24 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:53:24 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:53:24 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:53:24 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:53:24 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:53:24 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:53:24 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:24 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:24 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:24 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@eb9c3a51, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@10b3061e, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@5956a422, socketFactory=javax.net.DefaultSocketFactory@4731e200, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:53:24 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:53:24 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:53:24 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1865624}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:254912}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1280307, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:24 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:53:24 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:24 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:53:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1163272, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:24 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:24 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2137434}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=836520, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:53:24 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1551217}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1657302, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:53:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:53:24 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1865625}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1865625}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG command:56 - Command execution completed -2016-05-03 09:53:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1865625}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG command:56 - Command execution completed -2016-05-03 09:53:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1865625}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG command:56 - Command execution completed -2016-05-03 09:53:24 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 09:53:24 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 09:53:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1865625}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG command:56 - Command execution completed -2016-05-03 09:53:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1865625}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG command:56 - Command execution completed -2016-05-03 09:53:24 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 09:53:24 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1865625}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG query:56 - Query completed -2016-05-03 09:53:24 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 09:53:24 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2137434} -2016-05-03 09:53:24 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:254912} -2016-05-03 09:53:24 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1865625}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 09:53:24 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1865625} -2016-05-03 09:53:24 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1551217} -2016-05-03 09:53:24 INFO MongoIO:508 - Mongo has been closed -2016-05-03 09:53:24 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1865624} -2016-05-03 09:53:24 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 09:53:24 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 09:53:24 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 09:53:24 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 09:53:24 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 09:53:24 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 09:53:24 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 09:53:24 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 09:53:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 09:53:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 09:53:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:53:28 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:53:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 09:53:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:53:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 09:53:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 09:53:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 09:53:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 09:53:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:53:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:53:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:53:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:53:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:53:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:53:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:53:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:53:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:53:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:53:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:53:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:54:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:54:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:54:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:54:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:54:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:54:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:54:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:54:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:54:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:54:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:54:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:54:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:54:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:54:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:54:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:54:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:54:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:54:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:54:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:54:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:54:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:54:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:54:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:54:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:54:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:54:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:54:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:54:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:54:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:54:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:54:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:54:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:54:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:54:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:54:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:54:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:54:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:54:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:54:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:54:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:54:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:54:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:54:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:54:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 09:54:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:54:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:54:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:54:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:54:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:54:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:55:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:55:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:55:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:55:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:55:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:55:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:55:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:55:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:55:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:55:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 09:55:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:55:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:55:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:55:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:55:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:55:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:55:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:55:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:55:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:55:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:55:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:55:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-03 09:55:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:55:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:55:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-03 09:55:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-03 09:55:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:55:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-03 09:55:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:55:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-03 09:55:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:55:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:55:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-03 09:55:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-03 09:55:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:55:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}] -2016-05-03 09:55:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:55:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:55:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:55:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:55:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:55:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:55:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:55:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:55:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:55:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 09:55:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:55:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 09:55:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:55:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 09:56:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:56:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 09:56:04 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:56:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:56:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:56:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:56:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:56:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:56:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 09:56:13 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 09:56:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:56:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 09:56:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:56:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 09:56:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:56:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 09:56:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:56:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.0 ms, state=CONNECTED}] -2016-05-03 09:56:53 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 09:56:53 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 09:56:53 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 09:56:53 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 09:56:53 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 09:56:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:56:53 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 09:56:53 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@3a96f8b2 -2016-05-03 09:56:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:56:53 INFO ASLSession:352 - Logging the entrance -2016-05-03 09:56:53 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 09:56:53 DEBUG TemplateModel:83 - 2016-05-03 09:56:53, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 09:56:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:56:53 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 09:56:55 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 09:56:55 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 09:56:55 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:56:55 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 09:56:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:56:55 INFO ASLSession:352 - Logging the entrance -2016-05-03 09:56:55 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 09:56:55 DEBUG TemplateModel:83 - 2016-05-03 09:56:55, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 09:56:55 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:56:55 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 09:56:56 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 126 ms -2016-05-03 09:56:56 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 09:56:56 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 09:56:56 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 09:56:56 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 09:56:56 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 09:56:56 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 09:56:56 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 09:56:56 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 09:56:56 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 09:56:56 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 09:56:56 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 09:56:56 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 09:56:56 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 09:56:56 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 09:56:56 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 09:56:56 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:56:56 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 09:56:56 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@7977d826 -2016-05-03 09:56:56 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@7c4dac03 -2016-05-03 09:56:56 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@72be4bf2 -2016-05-03 09:56:56 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@cb49212 -2016-05-03 09:56:56 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 102 ms -2016-05-03 09:56:56 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 09:56:56 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 09:56:56 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 09:56:56 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 09:56:56 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 09:56:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:56:56 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:56:56 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 09:56:56 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 26 ms -2016-05-03 09:56:56 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 09:56:56 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:56:56 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 09:56:56 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 09:56:57 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 09:56:57 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 09:56:57 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 09:56:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:56:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:56:57 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:56:57 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 09:56:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:56:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:56:57 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 09:56:57 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 09:56:57 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 09:56:57 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 09:56:57 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 09:56:57 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 09:56:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 09:56:57 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:56:57 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 09:56:57 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-03 09:56:57 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 09:56:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:56:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:56:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:56:57 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 09:56:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:56:57 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 09:56:57 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:56:57 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 09:56:57 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 09:56:57 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 09:56:57 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 09:56:57 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 09:56:57 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 09:56:57 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 09:56:57 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 09:56:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:56:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:56:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:56:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:56:57 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 09:56:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 09:56:57 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:56:57 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:56:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:56:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:56:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:56:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:56:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:56:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:56:58 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 09:56:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 09:56:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:56:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:56:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:56:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:56:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:56:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:56:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:56:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:56:59 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 09:56:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 09:56:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:56:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:56:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:56:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:56:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:56:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:56:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:56:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:56:59 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 09:56:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 09:56:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:56:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:56:59 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 09:56:59 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 09:56:59 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 09:56:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:56:59 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:56:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:56:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:56:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:56:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:56:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:56:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:56:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:56:59 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 09:56:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:56:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:56:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:56:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:56:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:56:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:56:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:56:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:56:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:56:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:56:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:56:59 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 09:56:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:56:59 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 09:56:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:56:59 INFO WorkspaceExplorerServiceImpl:188 - end time - 113 msc 0 sec -2016-05-03 09:56:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:56:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:56:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:56:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:56:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:56:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:56:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:56:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:56:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:56:59 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 09:56:59 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 09:56:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:00 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 09:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:57:00 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:57:00 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 09:57:00 INFO WorkspaceExplorerServiceImpl:188 - end time - 162 msc 0 sec -2016-05-03 09:57:00 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 28 ms -2016-05-03 09:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:57:00 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:57:00 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 09:57:00 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 09:57:00 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 09:57:00 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 09:57:00 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 09:57:00 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 09:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:57:00 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 09:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:57:00 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:57:00 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 09:57:00 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 09:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:57:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:57:00 INFO WorkspaceExplorerServiceImpl:188 - end time - 375 msc 0 sec -2016-05-03 09:57:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:57:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:57:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:57:03 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 09:57:03 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:57:03 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 09:57:03 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 09:57:03 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 09:57:03 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 09:57:03 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 09:57:03 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 09:57:03 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 09:57:03 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:57:03 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 09:57:03 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-03 09:57:03 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-03 09:57:03 DEBUG WPS2SM:204 - Schema: null -2016-05-03 09:57:03 DEBUG WPS2SM:205 - Encoding: null -2016-05-03 09:57:03 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 09:57:03 DEBUG WPS2SM:227 - Machter find: true -2016-05-03 09:57:03 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 09:57:03 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-03 09:57:03 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-03 09:57:03 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-03 09:57:03 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-03 09:57:03 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 09:57:03 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 09:57:03 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 09:57:03 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-03 09:57:03 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 09:57:03 DEBUG WPS2SM:92 - WPS type: -2016-05-03 09:57:03 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 09:57:03 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 09:57:03 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 09:57:03 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 09:57:03 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 09:57:03 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 09:57:03 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 09:57:03 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 09:57:03 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 09:57:03 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 09:57:03 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 09:57:03 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 09:57:03 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 09:57:03 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 09:57:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:03 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:57:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:57:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:57:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:57:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:03 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:57:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:03 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:57:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:04 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:57:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:57:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:57:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:57:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:57:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:57:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:57:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:57:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:57:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:57:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:57:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:57:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:57:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:57:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:57:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:57:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:57:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 219 msc 0 sec -2016-05-03 09:57:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:57:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:57:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:57:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:57:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:57:06 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:57:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:57:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:06 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:57:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:57:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:57:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:57:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:06 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:57:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:57:06 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:57:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:57:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:57:06 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:57:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:06 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:57:06 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:57:06 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:57:06 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:57:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:57:06 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:57:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:57:06 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:57:06 INFO WorkspaceExplorerServiceImpl:142 - end time - 164 msc 0 sec -2016-05-03 09:57:06 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:57:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:57:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:57:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:57:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:57:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:57:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:57:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:07 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:57:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:57:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:57:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:57:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:57:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:57:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:57:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:07 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:57:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:07 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:57:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:07 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:57:07 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:57:07 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:57:07 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:57:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:57:07 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:57:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:57:07 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:57:07 INFO WorkspaceExplorerServiceImpl:142 - end time - 188 msc 0 sec -2016-05-03 09:57:07 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:57:13 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:57:13 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:57:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:57:13 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:57:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:57:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:13 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:57:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:57:13 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:57:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:57:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:13 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:57:13 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:57:13 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 09:57:13 DEBUG ServiceEngine:306 - get() - start -2016-05-03 09:57:13 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:57:13 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:57:13 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 09:57:13 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 09:57:13 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:57:13 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 09:57:13 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 09:57:13 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:57:13 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 09:57:13 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:57:13 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:57:13 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:57:13 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:57:13 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:57:13 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:57:13 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:57:13 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:57:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:57:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:13 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:57:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:13 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:57:13 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:57:13 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:13 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:13 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@323ed0b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@31bf4445, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@41b2787, socketFactory=javax.net.DefaultSocketFactory@12c0122c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:57:13 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:57:13 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 09:57:13 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 09:57:13 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:57:13 INFO WorkspaceExplorerServiceImpl:188 - end time - 57 msc 0 sec -2016-05-03 09:57:13 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 09:57:13 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:254952}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 09:57:13 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 09:57:13 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1271083, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:13 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:57:13 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:13 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1865663}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:13 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:13 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1628003, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:13 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:13 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:2137474}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=885813, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:13 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:13 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:1551257}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1398617, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:13 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:57:13 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1865664}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865664}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 DEBUG command:56 - Command execution completed -2016-05-03 09:57:13 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865664}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 DEBUG command:56 - Command execution completed -2016-05-03 09:57:13 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865664}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 DEBUG command:56 - Command execution completed -2016-05-03 09:57:13 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 09:57:13 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865664}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 DEBUG command:56 - Command execution completed -2016-05-03 09:57:13 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865664}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 DEBUG command:56 - Command execution completed -2016-05-03 09:57:13 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1865664}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:57:13 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 09:57:14 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:57:14 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:57:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:57:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:14 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:57:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:57:14 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:57:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:14 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:57:14 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:57:14 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 09:57:14 DEBUG ServiceEngine:306 - get() - start -2016-05-03 09:57:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:57:14 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:57:14 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 09:57:14 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 09:57:14 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:57:14 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 09:57:14 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 09:57:14 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:57:14 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 09:57:14 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:57:14 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:57:14 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:57:14 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:57:14 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:57:14 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:57:14 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:14 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:14 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:14 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@323ed0b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@31bf4445, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@41b2787, socketFactory=javax.net.DefaultSocketFactory@12c0122c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:57:14 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:57:14 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:57:14 DEBUG query:56 - Query completed -2016-05-03 09:57:14 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 09:57:14 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:2137474} -2016-05-03 09:57:14 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:254952} -2016-05-03 09:57:14 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:1551257} -2016-05-03 09:57:14 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1865664}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 09:57:14 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1865664} -2016-05-03 09:57:14 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1865663} -2016-05-03 09:57:14 INFO MongoIO:508 - Mongo has been closed -2016-05-03 09:57:14 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 09:57:14 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 09:57:14 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 09:57:14 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:254953}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1865665}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1471980, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:14 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:57:14 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:14 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1514590, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:14 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:14 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2137475}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1304689, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:14 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1551258}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1575161, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:57:14 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1865666}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865666}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 DEBUG command:56 - Command execution completed -2016-05-03 09:57:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865666}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 DEBUG command:56 - Command execution completed -2016-05-03 09:57:14 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865666}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 DEBUG command:56 - Command execution completed -2016-05-03 09:57:14 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 09:57:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865666}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 DEBUG command:56 - Command execution completed -2016-05-03 09:57:14 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865666}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 DEBUG command:56 - Command execution completed -2016-05-03 09:57:14 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1865666}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:14 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:57:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:14 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:57:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:14 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:57:14 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 09:57:14 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 09:57:14 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 09:57:14 INFO WorkspaceExplorerServiceImpl:188 - end time - 53 msc 0 sec -2016-05-03 09:57:14 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 09:57:14 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 09:57:14 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 09:57:14 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 09:57:14 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 09:57:14 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:57:14 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:57:14 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:57:14 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:57:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:57:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:14 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:57:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:57:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:14 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:14 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:57:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:14 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:57:14 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:57:14 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:57:15 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 09:57:15 DEBUG query:56 - Query completed -2016-05-03 09:57:15 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 09:57:15 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2137475} -2016-05-03 09:57:15 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:254953} -2016-05-03 09:57:15 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1865666}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 09:57:15 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1551258} -2016-05-03 09:57:15 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1865666} -2016-05-03 09:57:15 INFO MongoIO:508 - Mongo has been closed -2016-05-03 09:57:15 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 09:57:15 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 09:57:15 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1865665} -2016-05-03 09:57:15 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 09:57:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:57:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:57:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:57:15 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 09:57:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:15 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:15 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:15 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:15 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:15 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:57:15 DEBUG ServiceEngine:193 - get() - start -2016-05-03 09:57:15 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:57:15 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:57:15 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 09:57:15 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 09:57:15 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:57:15 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 09:57:15 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 09:57:15 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:57:15 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:57:15 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:57:15 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:57:15 DEBUG Operation:173 - get(String) - start -2016-05-03 09:57:15 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:57:15 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:57:15 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:57:15 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:57:15 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:15 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:15 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:15 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@323ed0b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@31bf4445, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@41b2787, socketFactory=javax.net.DefaultSocketFactory@12c0122c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:57:15 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:57:15 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:57:16 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:254954}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1314224, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:16 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:57:16 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:16 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1865668}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1838761, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:16 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:16 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2137476}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=865654, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:16 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1551259}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1471256, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:57:16 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1865669}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865669}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG command:56 - Command execution completed -2016-05-03 09:57:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865669}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG command:56 - Command execution completed -2016-05-03 09:57:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865669}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG command:56 - Command execution completed -2016-05-03 09:57:16 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 09:57:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865669}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG command:56 - Command execution completed -2016-05-03 09:57:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865669}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG command:56 - Command execution completed -2016-05-03 09:57:16 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:57:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865669}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG command:56 - Command execution completed -2016-05-03 09:57:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865669}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG command:56 - Command execution completed -2016-05-03 09:57:16 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:57:16 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865669}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG query:56 - Query completed -2016-05-03 09:57:16 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 09:57:16 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 09:57:16 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 09:57:16 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865669}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG update:56 - Update completed -2016-05-03 09:57:16 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1865669}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG query:56 - Query completed -2016-05-03 09:57:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:16 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 09:57:16 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 09:57:16 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 09:57:16 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 09:57:16 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:57:16 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:57:16 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 09:57:16 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 09:57:16 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 09:57:16 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 09:57:16 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 09:57:16 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 09:57:16 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 09:57:16 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 09:57:16 DEBUG BucketCoding:42 - coding name done -2016-05-03 09:57:16 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 09:57:16 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 09:57:16 DEBUG MongoIO:77 - open mongo connection -2016-05-03 09:57:16 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 09:57:16 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:16 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:16 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:16 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@323ed0b, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@31bf4445, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@41b2787, socketFactory=javax.net.DefaultSocketFactory@12c0122c, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 09:57:16 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 09:57:16 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 09:57:16 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:254955}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1183688, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:16 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 09:57:16 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:16 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 09:57:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:16 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2137477}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=785525, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:16 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1865670}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1248977, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:16 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 09:57:16 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1551260}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1909358, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 09:57:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 09:57:16 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1865671}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865671}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG command:56 - Command execution completed -2016-05-03 09:57:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865671}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG command:56 - Command execution completed -2016-05-03 09:57:16 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865671}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG command:56 - Command execution completed -2016-05-03 09:57:16 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:57:16 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:57:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865671}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG command:56 - Command execution completed -2016-05-03 09:57:16 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865671}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG command:56 - Command execution completed -2016-05-03 09:57:16 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:57:16 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1865671}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG query:56 - Query completed -2016-05-03 09:57:16 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 09:57:16 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2137477} -2016-05-03 09:57:16 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:254955} -2016-05-03 09:57:16 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1551260} -2016-05-03 09:57:16 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1865671}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 09:57:16 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1865671} -2016-05-03 09:57:16 INFO MongoIO:508 - Mongo has been closed -2016-05-03 09:57:16 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1865670} -2016-05-03 09:57:16 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 09:57:16 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 09:57:16 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 09:57:16 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 09:57:16 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 09:57:16 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 09:57:16 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 09:57:16 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 09:57:16 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:57:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:57:26 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 09:57:26 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 09:57:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:57:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 09:57:26 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 09:57:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:57:26 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 09:57:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 09:57:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:57:29 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:57:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:57:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:57:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:57:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:57:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:29 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:57:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:57:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:29 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:57:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:57:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:57:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:57:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:57:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:57:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:57:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:57:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:57:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:57:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:57:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:29 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2137476} -2016-05-03 09:57:29 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1551259} -2016-05-03 09:57:29 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:254954} -2016-05-03 09:57:29 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1865669}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 09:57:29 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1865669} -2016-05-03 09:57:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:29 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1865668} -2016-05-03 09:57:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:57:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:57:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:29 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:57:29 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:57:29 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:57:29 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:57:29 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:57:29 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:57:29 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:57:29 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:57:29 INFO WorkspaceExplorerServiceImpl:142 - end time - 155 msc 0 sec -2016-05-03 09:57:29 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:57:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:57:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:57:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:57:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:57:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:57:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:59:12 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 09:59:12 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 09:59:12 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 09:59:12 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 09:59:12 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 09:59:12 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:59:12 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 09:59:12 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@4b2c0ce7 -2016-05-03 09:59:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:59:12 INFO ASLSession:352 - Logging the entrance -2016-05-03 09:59:12 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 09:59:12 DEBUG TemplateModel:83 - 2016-05-03 09:59:12, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 09:59:12 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:59:12 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 09:59:14 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 09:59:14 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 09:59:14 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:59:14 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 09:59:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:14 INFO ASLSession:352 - Logging the entrance -2016-05-03 09:59:14 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 09:59:14 DEBUG TemplateModel:83 - 2016-05-03 09:59:14, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 09:59:14 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:59:14 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 09:59:14 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 120 ms -2016-05-03 09:59:14 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 09:59:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 09:59:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 09:59:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 09:59:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 09:59:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 09:59:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 09:59:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 09:59:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 09:59:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 09:59:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 09:59:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 09:59:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 09:59:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 09:59:15 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 09:59:15 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:59:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 09:59:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@7bbee39c -2016-05-03 09:59:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@7197f102 -2016-05-03 09:59:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@e285d89 -2016-05-03 09:59:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@32801318 -2016-05-03 09:59:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 95 ms -2016-05-03 09:59:15 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 09:59:15 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 09:59:15 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 09:59:15 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 09:59:15 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 09:59:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:59:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 09:59:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 16 ms -2016-05-03 09:59:15 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 09:59:15 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:59:15 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 09:59:15 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 09:59:15 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 09:59:15 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 09:59:15 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 09:59:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:59:15 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:59:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:59:15 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 09:59:15 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:15 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:15 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 09:59:15 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 09:59:15 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 09:59:15 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 09:59:15 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 09:59:15 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 09:59:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 09:59:15 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:59:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 09:59:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-03 09:59:16 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 09:59:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:59:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:16 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 09:59:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:16 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 09:59:16 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:59:16 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 09:59:16 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 09:59:16 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 09:59:16 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 09:59:16 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 09:59:16 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 09:59:16 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 09:59:16 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 09:59:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:16 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 09:59:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 09:59:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:16 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 09:59:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 09:59:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:16 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 09:59:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 09:59:16 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:16 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:16 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:16 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 09:59:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 09:59:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:17 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 09:59:17 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 09:59:17 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 09:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:17 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 09:59:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:17 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 09:59:17 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 09:59:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:17 INFO WorkspaceExplorerServiceImpl:188 - end time - 119 msc 0 sec -2016-05-03 09:59:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:17 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 09:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:17 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:17 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 09:59:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:17 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 09:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:17 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:59:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 09:59:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 32 ms -2016-05-03 09:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:59:17 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:59:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 09:59:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 09:59:17 INFO WorkspaceExplorerServiceImpl:188 - end time - 169 msc 0 sec -2016-05-03 09:59:17 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 09:59:17 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 09:59:17 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 09:59:17 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 09:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:59:17 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 09:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:59:17 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 09:59:17 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 09:59:17 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-03 09:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 09:59:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:17 INFO WorkspaceExplorerServiceImpl:188 - end time - 342 msc 0 sec -2016-05-03 09:59:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:24 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:59:24 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 09:59:24 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 09:59:24 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:59:24 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 09:59:25 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 09:59:25 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 09:59:25 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 09:59:25 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 09:59:25 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 09:59:25 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 09:59:25 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 09:59:25 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 09:59:25 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-03 09:59:25 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-03 09:59:25 DEBUG WPS2SM:204 - Schema: null -2016-05-03 09:59:25 DEBUG WPS2SM:205 - Encoding: null -2016-05-03 09:59:25 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 09:59:25 DEBUG WPS2SM:227 - Machter find: true -2016-05-03 09:59:25 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 09:59:25 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-03 09:59:25 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-03 09:59:25 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-03 09:59:25 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-03 09:59:25 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 09:59:25 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 09:59:25 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 09:59:25 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-03 09:59:25 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 09:59:25 DEBUG WPS2SM:92 - WPS type: -2016-05-03 09:59:25 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 09:59:25 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 09:59:25 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 09:59:25 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 09:59:25 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 09:59:25 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 09:59:25 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 09:59:25 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 09:59:25 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 09:59:25 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 09:59:25 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 09:59:25 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 09:59:25 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 09:59:25 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 09:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:59:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:25 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:59:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:25 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:59:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:59:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:59:25 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:59:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:25 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:25 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:59:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:25 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:59:25 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:59:25 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:59:25 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:59:25 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:59:25 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:59:25 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:59:25 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:59:25 INFO WorkspaceExplorerServiceImpl:142 - end time - 207 msc 0 sec -2016-05-03 09:59:25 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:59:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:59:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:59:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:59:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:59:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:28 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:59:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:59:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:59:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:59:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:59:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:59:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:59:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:59:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:59:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:28 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:59:28 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:59:28 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:59:28 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:59:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:59:28 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:59:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:59:28 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:59:28 INFO WorkspaceExplorerServiceImpl:142 - end time - 195 msc 0 sec -2016-05-03 09:59:28 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:59:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:29 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:59:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:29 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:59:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:29 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:59:29 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:59:29 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:59:29 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:59:29 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:59:29 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:59:29 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:59:29 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:59:29 INFO WorkspaceExplorerServiceImpl:142 - end time - 160 msc 0 sec -2016-05-03 09:59:29 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:59:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:59:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:30 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:59:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:59:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:59:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:59:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:30 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:59:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:30 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:59:31 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:59:31 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:59:31 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:59:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:59:31 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:59:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:59:31 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:59:31 INFO WorkspaceExplorerServiceImpl:142 - end time - 1165 msc 1 sec -2016-05-03 09:59:31 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:59:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:59:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:59:31 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 09:59:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 09:59:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:31 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:59:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:59:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:31 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:59:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:31 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:59:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:59:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:59:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:59:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:59:31 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:59:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:31 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:59:31 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:59:31 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:59:31 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:59:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:59:31 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:59:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:59:31 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:59:31 INFO WorkspaceExplorerServiceImpl:142 - end time - 190 msc 0 sec -2016-05-03 09:59:31 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:59:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:59:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:59:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:59:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:33 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 09:59:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 09:59:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:33 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:59:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:59:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:59:33 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:59:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:59:33 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:59:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:59:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:59:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:59:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:33 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:59:33 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:59:33 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:59:33 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:59:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:59:33 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:59:33 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:59:33 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:59:33 INFO WorkspaceExplorerServiceImpl:142 - end time - 154 msc 0 sec -2016-05-03 09:59:33 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 09:59:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:34 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:59:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:59:34 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 09:59:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 09:59:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:34 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 09:59:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 09:59:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 09:59:34 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 09:59:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 09:59:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 09:59:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:59:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:59:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:59:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 09:59:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 09:59:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 09:59:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 09:59:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 09:59:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 09:59:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 09:59:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 09:59:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 09:59:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 09:59:35 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 09:59:35 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 09:59:35 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 09:59:35 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 09:59:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:59:35 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 09:59:35 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 09:59:35 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 09:59:35 INFO WorkspaceExplorerServiceImpl:142 - end time - 158 msc 0 sec -2016-05-03 09:59:35 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:00:13 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 10:00:13 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 10:00:13 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 10:00:13 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:00:13 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:00:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:00:13 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:00:13 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@1b7b70a8 -2016-05-03 10:00:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:13 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:00:13 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:00:13 DEBUG TemplateModel:83 - 2016-05-03 10:00:13, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:00:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:00:13 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 10:00:15 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:00:15 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:00:15 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:00:15 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:00:15 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:15 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:00:15 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:00:15 DEBUG TemplateModel:83 - 2016-05-03 10:00:15, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:00:15 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:00:15 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:00:15 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 112 ms -2016-05-03 10:00:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 10:00:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 10:00:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 10:00:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 10:00:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 10:00:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 10:00:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 10:00:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 10:00:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 10:00:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 10:00:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 10:00:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 10:00:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 10:00:15 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 10:00:15 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 10:00:15 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:00:15 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:00:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@69f40372 -2016-05-03 10:00:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@3ee0e8cd -2016-05-03 10:00:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@367f2474 -2016-05-03 10:00:15 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@5a0fcf83 -2016-05-03 10:00:15 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 130 ms -2016-05-03 10:00:15 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 10:00:16 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 10:00:16 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 10:00:16 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 10:00:16 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 10:00:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:00:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 10:00:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 26 ms -2016-05-03 10:00:16 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 10:00:16 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:00:16 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 10:00:16 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:00:16 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:00:16 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:00:16 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:00:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:16 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:00:16 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:00:16 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 10:00:16 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:16 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:16 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 10:00:16 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 10:00:16 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 10:00:16 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 10:00:16 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 10:00:16 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 10:00:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 10:00:16 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:00:16 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 10:00:16 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 39 ms -2016-05-03 10:00:16 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 10:00:16 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:16 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:16 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:16 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 10:00:16 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:16 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 10:00:16 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:00:16 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 10:00:16 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:00:17 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:00:17 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 10:00:17 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:00:17 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:00:17 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 10:00:17 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 10:00:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:17 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 10:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:17 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 10:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:17 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 10:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:17 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 10:00:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:18 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:00:18 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:00:18 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:00:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:00:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:00:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:00:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:18 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 10:00:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:18 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:00:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:18 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 10:00:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:18 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 10:00:18 INFO WorkspaceExplorerServiceImpl:188 - end time - 124 msc 0 sec -2016-05-03 10:00:18 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 10:00:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:00:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:18 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 10:00:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:18 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 10:00:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 10:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:19 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:00:19 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:00:19 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 24 ms -2016-05-03 10:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 10:00:19 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:00:19 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 10:00:19 INFO WorkspaceExplorerServiceImpl:188 - end time - 143 msc 0 sec -2016-05-03 10:00:19 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 21 ms -2016-05-03 10:00:19 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 10:00:19 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 10:00:19 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 10:00:19 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 10:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 10:00:19 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 10:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 10:00:19 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:00:19 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:00:19 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-03 10:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 10:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 10:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 30 -2016-05-03 10:00:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:19 INFO WorkspaceExplorerServiceImpl:188 - end time - 332 msc 0 sec -2016-05-03 10:00:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:22 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:00:22 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:00:22 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 10:00:22 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:00:22 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:00:22 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 10:00:22 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 10:00:22 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 10:00:22 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 10:00:22 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 10:00:22 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 10:00:22 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:00:22 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 10:00:22 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-03 10:00:22 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-03 10:00:22 DEBUG WPS2SM:204 - Schema: null -2016-05-03 10:00:22 DEBUG WPS2SM:205 - Encoding: null -2016-05-03 10:00:22 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:00:22 DEBUG WPS2SM:227 - Machter find: true -2016-05-03 10:00:22 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 10:00:22 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-03 10:00:22 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-03 10:00:22 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-03 10:00:22 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-03 10:00:22 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 10:00:22 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 10:00:22 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:00:22 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-03 10:00:22 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 10:00:22 DEBUG WPS2SM:92 - WPS type: -2016-05-03 10:00:22 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 10:00:22 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 10:00:22 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:00:22 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 10:00:22 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 10:00:22 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 10:00:22 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 10:00:22 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 10:00:22 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 10:00:22 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 10:00:22 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 10:00:22 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:00:22 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 10:00:22 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 10:00:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:00:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:00:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:00:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:00:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:22 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:00:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:00:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:00:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:22 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:00:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:22 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:00:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:22 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:00:22 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:22 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:23 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:00:23 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:00:23 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:00:23 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:00:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:23 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:00:23 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:23 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:00:23 INFO WorkspaceExplorerServiceImpl:142 - end time - 190 msc 0 sec -2016-05-03 10:00:23 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:00:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:00:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:00:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:00:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:24 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:00:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:24 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:00:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:00:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:00:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:00:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:24 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:00:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:24 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:00:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:24 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:00:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:24 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:24 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:24 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:00:24 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:00:24 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:00:24 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:00:24 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:24 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:00:24 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:24 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:00:24 INFO WorkspaceExplorerServiceImpl:142 - end time - 184 msc 0 sec -2016-05-03 10:00:24 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:00:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:25 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:00:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:00:25 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:00:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:00:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:25 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:00:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:00:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:25 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:00:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:25 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:00:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:25 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:00:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:25 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:00:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:25 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:25 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:25 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:00:25 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:00:25 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:00:25 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:00:25 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:25 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:00:25 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:25 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:00:25 INFO WorkspaceExplorerServiceImpl:142 - end time - 161 msc 0 sec -2016-05-03 10:00:25 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:00:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:00:26 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:00:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:00:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:26 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:00:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:26 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:00:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:26 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:00:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:00:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:26 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:26 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:26 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:26 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:26 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:26 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:00:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:26 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:00:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:26 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:00:26 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:00:26 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:26 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:26 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:00:26 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:00:26 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:00:26 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:00:26 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:26 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:00:26 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:26 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:00:26 INFO WorkspaceExplorerServiceImpl:142 - end time - 194 msc 0 sec -2016-05-03 10:00:26 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:00:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:00:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:27 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:27 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:00:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:00:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:27 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:00:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:00:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:00:27 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:00:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:27 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:00:27 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:00:27 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:00:27 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:00:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:27 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:00:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:27 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:00:27 INFO WorkspaceExplorerServiceImpl:142 - end time - 156 msc 0 sec -2016-05-03 10:00:27 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:27 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:27 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:27 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:00:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:00:27 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:00:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:27 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:27 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:27 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:27 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:27 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:27 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:27 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:27 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:27 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:00:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:27 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:27 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:27 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:00:27 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:00:27 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:00:27 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:00:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:27 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:00:27 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:27 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:00:27 INFO WorkspaceExplorerServiceImpl:142 - end time - 162 msc 0 sec -2016-05-03 10:00:27 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:00:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:00:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:28 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:00:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:28 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:00:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:00:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:28 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:00:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:28 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:00:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:00:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:00:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:00:28 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:28 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:28 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:28 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:28 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:28 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:28 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:00:28 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:00:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:28 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:28 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:28 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:00:28 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:00:28 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:00:28 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:00:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:28 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:00:28 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:28 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:00:28 INFO WorkspaceExplorerServiceImpl:142 - end time - 168 msc 0 sec -2016-05-03 10:00:28 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:00:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:29 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:00:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:29 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:00:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:29 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:00:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:00:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:29 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:00:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:00:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:00:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:00:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:00:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:00:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:29 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:29 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:29 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:29 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:29 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:29 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:00:29 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:00:29 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:29 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:29 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:00:29 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:00:29 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:00:29 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:00:29 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:29 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:00:29 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:29 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:00:29 INFO WorkspaceExplorerServiceImpl:142 - end time - 154 msc 0 sec -2016-05-03 10:00:29 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:00:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:00:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:30 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:00:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:00:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:30 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:00:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:00:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:00:30 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:00:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:00:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:00:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:00:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:30 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:00:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:00:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:00:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:00:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:00:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:00:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:00:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:00:30 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:00:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:00:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:00:30 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:00:31 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:00:31 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:00:31 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:00:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:31 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:00:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:00:31 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:00:31 INFO WorkspaceExplorerServiceImpl:142 - end time - 1146 msc 1 sec -2016-05-03 10:00:31 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:01:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:01:08 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:02:34 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 10:02:34 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 10:02:34 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 10:02:34 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:02:34 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:02:34 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:02:34 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:02:34 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@3c13a7c5 -2016-05-03 10:02:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:02:34 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:02:34 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:02:34 DEBUG TemplateModel:83 - 2016-05-03 10:02:34, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:02:34 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:02:34 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 10:02:35 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:02:35 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:02:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:02:35 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:02:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:02:35 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:02:35 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:02:35 DEBUG TemplateModel:83 - 2016-05-03 10:02:35, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:02:35 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:02:35 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:02:36 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 130 ms -2016-05-03 10:02:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 10:02:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 10:02:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 10:02:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 10:02:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 10:02:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 10:02:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 10:02:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 10:02:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 10:02:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 10:02:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 10:02:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 10:02:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 10:02:36 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 10:02:36 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 10:02:36 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:02:36 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:02:36 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@79866678 -2016-05-03 10:02:36 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@4ac162a6 -2016-05-03 10:02:36 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@4b1e1fd0 -2016-05-03 10:02:36 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@19a8e3ff -2016-05-03 10:02:36 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 100 ms -2016-05-03 10:02:36 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 10:02:36 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 10:02:36 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 10:02:36 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 10:02:36 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 10:02:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:02:36 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:02:36 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 10:02:36 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 17 ms -2016-05-03 10:02:36 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 10:02:36 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:02:36 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 10:02:36 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:02:36 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:02:36 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:02:36 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:02:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:02:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:02:36 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:02:36 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 10:02:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:36 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 10:02:36 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 10:02:36 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 10:02:36 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 10:02:36 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 10:02:36 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 10:02:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 10:02:36 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:02:36 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 10:02:36 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 20 ms -2016-05-03 10:02:37 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 10:02:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:02:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:37 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 10:02:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:37 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 10:02:37 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:02:37 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:02:37 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 10:02:37 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:02:37 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 10:02:37 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:02:37 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:02:37 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 10:02:37 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 10:02:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:02:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:02:37 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:02:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 10:02:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:02:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:02:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:37 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:02:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 10:02:37 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:02:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:02:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:37 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:02:37 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 10:02:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:02:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:02:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:38 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:02:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 10:02:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:02:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:02:38 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:02:38 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:02:38 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:02:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:02:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:02:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:02:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:38 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 10:02:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:02:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:02:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:02:38 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:02:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:02:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:38 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 10:02:38 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 10:02:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:02:38 INFO WorkspaceExplorerServiceImpl:188 - end time - 137 msc 0 sec -2016-05-03 10:02:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:02:38 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 10:02:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:02:38 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:02:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:02:38 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:38 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:38 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:38 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:38 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:38 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:38 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 10:02:38 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:02:38 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:02:38 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 10:02:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:02:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:02:38 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:02:38 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:02:38 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 25 ms -2016-05-03 10:02:38 INFO WorkspaceExplorerServiceImpl:188 - end time - 121 msc 0 sec -2016-05-03 10:02:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:02:39 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:02:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 10:02:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 26 ms -2016-05-03 10:02:39 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 10:02:39 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 10:02:39 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 10:02:39 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 10:02:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:02:39 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 10:02:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:02:39 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:02:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:02:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 10:02:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:02:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:02:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:02:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:02:39 INFO WorkspaceExplorerServiceImpl:188 - end time - 345 msc 0 sec -2016-05-03 10:02:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:02:46 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:02:46 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:02:46 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 10:02:46 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:02:46 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:02:47 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 10:02:47 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 10:02:47 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 10:02:47 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 10:02:47 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 10:02:47 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 10:02:47 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:02:47 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 10:02:47 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-03 10:02:47 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-03 10:02:47 DEBUG WPS2SM:204 - Schema: null -2016-05-03 10:02:47 DEBUG WPS2SM:205 - Encoding: null -2016-05-03 10:02:47 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:02:47 DEBUG WPS2SM:227 - Machter find: true -2016-05-03 10:02:47 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 10:02:47 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-03 10:02:47 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-03 10:02:47 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-03 10:02:47 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-03 10:02:47 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 10:02:47 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 10:02:47 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:02:47 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-03 10:02:47 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 10:02:47 DEBUG WPS2SM:92 - WPS type: -2016-05-03 10:02:47 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 10:02:47 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 10:02:47 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:02:47 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 10:02:47 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 10:02:47 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 10:02:47 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 10:02:47 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 10:02:47 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 10:02:47 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 10:02:47 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 10:02:47 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:02:47 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 10:02:47 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 10:02:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:02:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:02:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:02:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:02:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:02:47 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:02:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:02:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:47 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:02:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:02:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:02:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:02:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:02:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:02:47 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:02:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:02:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:02:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:02:47 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:02:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:02:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:02:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:02:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:02:47 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:02:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:02:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:02:47 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:02:48 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:02:48 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:02:48 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:02:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:02:48 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:02:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:02:48 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:02:48 INFO WorkspaceExplorerServiceImpl:142 - end time - 185 msc 0 sec -2016-05-03 10:02:48 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:02:53 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:02:53 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:02:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:02:53 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:02:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:02:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:53 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:02:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:02:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:02:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:02:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:53 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:02:53 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:02:53 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:02:53 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:02:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:02:53 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:02:53 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 10:02:53 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 10:02:53 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:02:53 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:02:53 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:02:53 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:02:53 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:02:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:02:53 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:02:53 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:02:53 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:02:53 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:02:54 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:02:54 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:02:54 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:02:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:02:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:02:54 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:02:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:02:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:54 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:54 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:02:54 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:54 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:02:54 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@99546abb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6bf2dee3, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@36184951, socketFactory=javax.net.DefaultSocketFactory@74494718, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:02:54 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:02:54 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:02:54 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:02:54 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:02:54 INFO WorkspaceExplorerServiceImpl:188 - end time - 73 msc 0 sec -2016-05-03 10:02:54 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:02:54 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:02:54 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:02:54 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:255012}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1482917, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:54 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:02:54 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:54 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:54 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1865729}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1480004, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:54 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:54 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2137534}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=880598, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:54 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1551317}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1520106, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 10:02:54 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1865730}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865730}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 DEBUG command:56 - Command execution completed -2016-05-03 10:02:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865730}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 DEBUG command:56 - Command execution completed -2016-05-03 10:02:54 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865730}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 DEBUG command:56 - Command execution completed -2016-05-03 10:02:54 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:02:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865730}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 DEBUG command:56 - Command execution completed -2016-05-03 10:02:54 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865730}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 DEBUG command:56 - Command execution completed -2016-05-03 10:02:54 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1865730}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:02:54 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:02:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:02:54 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:02:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:02:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:54 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:02:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:02:54 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:02:54 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:02:54 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:54 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:54 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:54 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:54 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:54 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:54 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:02:54 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:02:54 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:02:54 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:02:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:02:54 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:02:54 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 10:02:54 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:02:54 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:02:54 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:02:54 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:02:54 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:02:54 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:02:54 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:02:54 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:02:54 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:02:54 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:02:54 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:02:54 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:02:54 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:54 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:54 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:54 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@99546abb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6bf2dee3, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@36184951, socketFactory=javax.net.DefaultSocketFactory@74494718, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:02:54 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:02:54 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:02:54 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:255013}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1865731}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1195688, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:54 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:02:54 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:54 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1250553, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:54 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:54 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2137535}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:02:54 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=964365, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:55 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1551318}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:02:55 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:02:55 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1323916, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:02:55 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1865732}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:55 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865732}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:55 DEBUG command:56 - Command execution completed -2016-05-03 10:02:55 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865732}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:02:55 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:02:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:02:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:02:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:55 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:02:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:02:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:55 DEBUG command:56 - Command execution completed -2016-05-03 10:02:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:55 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865732}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:55 DEBUG command:56 - Command execution completed -2016-05-03 10:02:55 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:02:55 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865732}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:55 DEBUG command:56 - Command execution completed -2016-05-03 10:02:55 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865732}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:55 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:02:55 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:02:55 DEBUG command:56 - Command execution completed -2016-05-03 10:02:55 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1865732}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:55 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:02:55 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:02:55 INFO WorkspaceExplorerServiceImpl:188 - end time - 45 msc 0 sec -2016-05-03 10:02:55 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:02:55 DEBUG query:56 - Query completed -2016-05-03 10:02:55 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 10:02:55 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2137534} -2016-05-03 10:02:55 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:255012} -2016-05-03 10:02:55 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1551317} -2016-05-03 10:02:55 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1865730}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:02:55 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1865730} -2016-05-03 10:02:55 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1865729} -2016-05-03 10:02:55 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:02:55 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:02:55 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:02:55 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 10:02:55 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:02:55 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:02:55 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:02:55 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:02:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:02:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:02:55 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:02:55 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:02:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:02:55 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:02:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:02:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:55 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:02:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:02:55 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:02:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:02:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:55 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:02:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:02:55 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:02:55 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:02:55 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:55 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:55 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:55 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:55 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:55 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:55 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:02:55 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:02:55 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:02:55 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 10:02:55 DEBUG query:56 - Query completed -2016-05-03 10:02:55 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 10:02:55 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2137535} -2016-05-03 10:02:55 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:255013} -2016-05-03 10:02:55 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1865732}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:02:55 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1551318} -2016-05-03 10:02:55 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1865732} -2016-05-03 10:02:55 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:02:55 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1865731} -2016-05-03 10:02:55 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:02:55 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:02:55 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 10:02:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:02:56 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:02:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:02:56 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 10:02:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:56 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:02:56 DEBUG ServiceEngine:193 - get() - start -2016-05-03 10:02:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:02:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:02:56 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:02:56 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:02:56 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:02:56 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:02:56 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 10:02:56 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:02:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:02:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:02:56 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:02:56 DEBUG Operation:173 - get(String) - start -2016-05-03 10:02:56 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:02:56 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:02:56 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:02:56 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:02:56 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:56 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:56 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:56 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@99546abb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6bf2dee3, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@36184951, socketFactory=javax.net.DefaultSocketFactory@74494718, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:02:56 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:02:56 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:02:56 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1865733}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1461671, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:56 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:02:56 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:56 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:56 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:56 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:255015}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2137536}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2159623, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1102519, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:56 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1551320}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1687153, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:02:56 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1865734}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865734}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG command:56 - Command execution completed -2016-05-03 10:02:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865734}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG command:56 - Command execution completed -2016-05-03 10:02:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865734}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG command:56 - Command execution completed -2016-05-03 10:02:56 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:02:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865734}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG command:56 - Command execution completed -2016-05-03 10:02:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865734}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG command:56 - Command execution completed -2016-05-03 10:02:56 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:02:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865734}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG command:56 - Command execution completed -2016-05-03 10:02:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865734}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG command:56 - Command execution completed -2016-05-03 10:02:56 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:02:56 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865734}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG query:56 - Query completed -2016-05-03 10:02:56 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:02:56 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:02:56 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 10:02:56 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865734}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG update:56 - Update completed -2016-05-03 10:02:56 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1865734}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG query:56 - Query completed -2016-05-03 10:02:56 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:02:56 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:02:56 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:02:56 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:02:56 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:02:56 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:02:56 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:02:56 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 10:02:56 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 10:02:56 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 10:02:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:02:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:02:56 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:02:56 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:02:56 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 10:02:56 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:02:56 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 10:02:56 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 10:02:56 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:02:56 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:02:56 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:02:56 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:02:56 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:02:56 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:02:56 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:02:56 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:56 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:56 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:56 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@99546abb, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@6bf2dee3, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@36184951, socketFactory=javax.net.DefaultSocketFactory@74494718, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:02:56 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:02:56 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:02:56 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1865735}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:255016}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1331761, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1191798, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:56 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:02:56 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:56 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:02:56 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:56 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2137537}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=928552, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:02:56 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1551321}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1144088, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:02:56 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 10:02:56 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1865736}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865736}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG command:56 - Command execution completed -2016-05-03 10:02:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865736}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG command:56 - Command execution completed -2016-05-03 10:02:56 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865736}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG command:56 - Command execution completed -2016-05-03 10:02:56 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:02:56 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:02:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865736}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG command:56 - Command execution completed -2016-05-03 10:02:56 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865736}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG command:56 - Command execution completed -2016-05-03 10:02:56 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:02:56 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1865736}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:02:56 DEBUG query:56 - Query completed -2016-05-03 10:02:56 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:02:56 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2137537} -2016-05-03 10:02:56 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:255016} -2016-05-03 10:02:56 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1551321} -2016-05-03 10:02:56 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1865736}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:02:56 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1865736} -2016-05-03 10:02:56 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:02:56 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1865735} -2016-05-03 10:02:56 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:02:56 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:02:56 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:02:56 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:02:56 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 10:02:56 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:02:56 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:02:56 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:03:06 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:03:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:03:06 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:03:06 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:03:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:03:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:03:06 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:03:06 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:03:16 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:03:16 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:03:16 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:03:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:03:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:03:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:03:16 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:03:16 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:03:26 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:03:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:03:26 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:03:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:03:26 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:03:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:03:26 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:03:26 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=4.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:03:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:03:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:03:56 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 10:03:56 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 10:03:56 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 10:03:56 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:03:56 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:03:56 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:03:56 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:03:56 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@4677e6d8 -2016-05-03 10:03:56 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:03:56 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:03:56 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:03:56 DEBUG TemplateModel:83 - 2016-05-03 10:03:56, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:03:56 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:03:56 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 10:03:58 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:03:58 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:03:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:03:58 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:03:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:03:58 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:03:58 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:03:58 DEBUG TemplateModel:83 - 2016-05-03 10:03:58, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:03:58 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:03:58 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:03:58 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 135 ms -2016-05-03 10:03:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 10:03:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 10:03:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 10:03:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 10:03:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 10:03:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 10:03:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 10:03:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 10:03:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 10:03:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 10:03:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 10:03:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 10:03:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 10:03:58 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 10:03:58 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 10:03:58 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:03:58 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:03:58 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@651b48ea -2016-05-03 10:03:58 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@64e8fbf6 -2016-05-03 10:03:58 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@1fed8924 -2016-05-03 10:03:58 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@39b233b6 -2016-05-03 10:03:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 114 ms -2016-05-03 10:03:59 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 10:03:59 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 10:03:59 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 10:03:59 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 10:03:59 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 10:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:03:59 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:03:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 10:03:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 18 ms -2016-05-03 10:03:59 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 10:03:59 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:03:59 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 10:03:59 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:03:59 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:03:59 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:03:59 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:03:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:03:59 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:03:59 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 10:03:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:03:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:03:59 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 10:03:59 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 10:03:59 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 10:03:59 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 10:03:59 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 10:03:59 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 10:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 10:03:59 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:03:59 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 10:03:59 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-03 10:03:59 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 10:03:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:03:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:03:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:03:59 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 10:03:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:03:59 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 10:04:00 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:04:00 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 10:04:00 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:04:00 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:04:00 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 10:04:00 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:04:00 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:04:00 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 10:04:00 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 10:04:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:00 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 10:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:00 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 10:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:00 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 10:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:00 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 10:04:00 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:00 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:01 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:04:01 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:04:01 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:04:01 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:04:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:04:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:01 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 10:04:01 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:04:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:04:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:04:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:02 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 10:04:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:02 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 10:04:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:02 INFO WorkspaceExplorerServiceImpl:188 - end time - 122 msc 0 sec -2016-05-03 10:04:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:04:02 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:04:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:04:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:02 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 10:04:02 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 10:04:02 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:02 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:02 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 10:04:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:04:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:04:02 INFO WorkspaceExplorerServiceImpl:188 - end time - 127 msc 0 sec -2016-05-03 10:04:02 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:04:02 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:04:02 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-05-03 10:04:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:04:02 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:04:02 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 10:04:02 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 24 ms -2016-05-03 10:04:02 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 10:04:02 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 10:04:02 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 10:04:02 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 10:04:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:04:02 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 10:04:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:04:02 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:04:02 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:04:02 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-03 10:04:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:04:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:04:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:04:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:04:02 INFO WorkspaceExplorerServiceImpl:188 - end time - 374 msc 0 sec -2016-05-03 10:04:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:04:05 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:04:05 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:04:05 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 10:04:05 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:04:05 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:04:05 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 10:04:05 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 10:04:05 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 10:04:05 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 10:04:05 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 10:04:05 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 10:04:05 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:04:05 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 10:04:05 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-03 10:04:05 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-03 10:04:05 DEBUG WPS2SM:204 - Schema: null -2016-05-03 10:04:05 DEBUG WPS2SM:205 - Encoding: null -2016-05-03 10:04:05 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:04:05 DEBUG WPS2SM:227 - Machter find: true -2016-05-03 10:04:05 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 10:04:05 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-03 10:04:05 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-03 10:04:05 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-03 10:04:05 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-03 10:04:05 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 10:04:05 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 10:04:05 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:04:05 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-03 10:04:05 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 10:04:05 DEBUG WPS2SM:92 - WPS type: -2016-05-03 10:04:05 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 10:04:05 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 10:04:05 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:04:05 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 10:04:05 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 10:04:05 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 10:04:05 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 10:04:05 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 10:04:05 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 10:04:05 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 10:04:05 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 10:04:05 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:04:05 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 10:04:05 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 10:04:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:04:05 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:04:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:04:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:04:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:04:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:04:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:05 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:05 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:04:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:04:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:04:06 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:04:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:04:06 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:04:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:04:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:04:06 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:04:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:04:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:04:06 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:04:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:06 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:04:06 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:04:06 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:04:06 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:04:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:04:06 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:04:06 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:04:06 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:04:06 INFO WorkspaceExplorerServiceImpl:142 - end time - 210 msc 0 sec -2016-05-03 10:04:06 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:04:12 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:04:12 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:04:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:04:12 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:04:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:04:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:12 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:04:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:04:12 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:04:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:04:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:12 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:04:12 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:04:12 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:04:12 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:04:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:04:12 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:04:12 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 10:04:12 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 10:04:12 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:04:12 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:04:12 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:04:12 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:04:12 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:04:12 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:04:12 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:04:12 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:04:12 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:04:12 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:04:12 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:04:12 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:04:12 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:04:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:04:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:04:12 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:04:12 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:04:12 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:12 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:12 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:12 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:12 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:12 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:12 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:04:12 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:04:12 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:04:12 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:12 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:04:12 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:04:12 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:04:12 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:04:12 INFO WorkspaceExplorerServiceImpl:188 - end time - 55 msc 0 sec -2016-05-03 10:04:12 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:04:12 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:04:12 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:04:12 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:04:12 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1865749}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1543004, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:12 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:04:12 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:12 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:12 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:04:12 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2137550}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1150956, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:04:12 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1551333}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1888549, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 10:04:12 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1865750}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865750}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 DEBUG command:56 - Command execution completed -2016-05-03 10:04:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865750}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 DEBUG command:56 - Command execution completed -2016-05-03 10:04:12 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865750}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 DEBUG command:56 - Command execution completed -2016-05-03 10:04:12 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:04:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865750}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 DEBUG command:56 - Command execution completed -2016-05-03 10:04:12 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865750}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 DEBUG command:56 - Command execution completed -2016-05-03 10:04:12 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1865750}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:255030}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:04:12 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2410081, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 10:04:13 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:04:13 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:04:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:04:13 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:04:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:04:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:13 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:04:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:04:13 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:04:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:04:13 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:13 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:13 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:13 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:13 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:13 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:13 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:04:13 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:04:13 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:04:13 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:04:13 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:04:13 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:04:13 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 10:04:13 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:04:13 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:04:13 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:04:13 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:04:13 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:04:13 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:04:13 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:04:13 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:04:13 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:04:13 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:04:13 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:04:13 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:04:13 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:13 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:13 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:04:13 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:04:13 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:04:13 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:04:13 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1865751}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:255031}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1212535, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:13 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:04:13 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:13 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1675072, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:13 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:13 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:04:13 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:04:13 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2137553}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1207157, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:13 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:04:13 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1551336}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1567242, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:13 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:04:13 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1865752}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 DEBUG command:56 - Command execution completed -2016-05-03 10:04:13 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 DEBUG command:56 - Command execution completed -2016-05-03 10:04:13 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 DEBUG command:56 - Command execution completed -2016-05-03 10:04:13 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:04:13 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 DEBUG command:56 - Command execution completed -2016-05-03 10:04:13 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 DEBUG command:56 - Command execution completed -2016-05-03 10:04:13 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1865752}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:13 DEBUG query:56 - Query completed -2016-05-03 10:04:13 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 10:04:13 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2137550} -2016-05-03 10:04:13 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:255030} -2016-05-03 10:04:13 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1551333} -2016-05-03 10:04:13 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1865750}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:04:13 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1865750} -2016-05-03 10:04:13 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1865749} -2016-05-03 10:04:13 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:04:13 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:04:13 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:04:13 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 10:04:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:04:14 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:04:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:04:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:04:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:04:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:04:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:14 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:04:14 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:04:14 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:04:14 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:04:14 INFO WorkspaceExplorerServiceImpl:188 - end time - 47 msc 0 sec -2016-05-03 10:04:14 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:04:14 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:04:14 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:04:14 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:04:14 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:04:14 DEBUG query:56 - Query completed -2016-05-03 10:04:14 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 10:04:14 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2137553} -2016-05-03 10:04:14 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:255031} -2016-05-03 10:04:14 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1865752}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:04:14 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1551336} -2016-05-03 10:04:14 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1865752} -2016-05-03 10:04:14 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:04:14 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:04:14 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1865751} -2016-05-03 10:04:14 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:04:14 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 10:04:18 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:04:19 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:04:18 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:04:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:04:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:04:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:04:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:18 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:04:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:04:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:04:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:04:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:04:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:04:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:04:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:19 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:04:19 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:04:19 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:04:19 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 10:04:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:04:19 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:04:19 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:04:19 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 10:04:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:19 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:04:19 DEBUG ServiceEngine:193 - get() - start -2016-05-03 10:04:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:04:19 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:04:19 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:04:19 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:04:19 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:04:19 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:04:19 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 10:04:19 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:04:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:04:19 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:04:19 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:04:19 DEBUG Operation:173 - get(String) - start -2016-05-03 10:04:19 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:04:19 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:04:19 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:04:19 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:04:19 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:19 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:19 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:04:19 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:04:19 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:04:19 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:04:19 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:255033}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1116012, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:19 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:04:19 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:19 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:04:19 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2137554}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=896028, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:04:19 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1865754}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1336268, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:19 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:04:19 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1551338}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1127133, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 10:04:19 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1865755}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865755}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG command:56 - Command execution completed -2016-05-03 10:04:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865755}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG command:56 - Command execution completed -2016-05-03 10:04:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865755}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG command:56 - Command execution completed -2016-05-03 10:04:19 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:04:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865755}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG command:56 - Command execution completed -2016-05-03 10:04:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865755}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG command:56 - Command execution completed -2016-05-03 10:04:19 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:04:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865755}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG command:56 - Command execution completed -2016-05-03 10:04:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865755}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG command:56 - Command execution completed -2016-05-03 10:04:19 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:04:19 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865755}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG query:56 - Query completed -2016-05-03 10:04:19 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:04:19 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:04:19 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 10:04:19 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865755}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG update:56 - Update completed -2016-05-03 10:04:19 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1865755}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG query:56 - Query completed -2016-05-03 10:04:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:19 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:04:19 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 10:04:19 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 10:04:19 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 10:04:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:04:19 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:04:19 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:04:19 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:04:19 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 10:04:19 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:04:19 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 10:04:19 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 10:04:19 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:04:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:04:19 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:04:19 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:04:19 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:04:19 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:04:19 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:04:19 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:19 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:19 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:04:19 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:04:19 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:04:19 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:04:19 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:255034}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1213191, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:19 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:04:19 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:19 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:04:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:04:19 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1865756}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1073115, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:19 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:04:19 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2137555}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=728575, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:04:19 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1551339}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1126878, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:04:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 10:04:19 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1865757}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865757}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG command:56 - Command execution completed -2016-05-03 10:04:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865757}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG command:56 - Command execution completed -2016-05-03 10:04:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865757}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG command:56 - Command execution completed -2016-05-03 10:04:19 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:04:19 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:04:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865757}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG command:56 - Command execution completed -2016-05-03 10:04:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865757}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG command:56 - Command execution completed -2016-05-03 10:04:19 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:04:19 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1865757}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:19 DEBUG query:56 - Query completed -2016-05-03 10:04:19 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:04:19 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2137555} -2016-05-03 10:04:19 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:255034} -2016-05-03 10:04:19 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1551339} -2016-05-03 10:04:19 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1865757}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:04:19 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1865757} -2016-05-03 10:04:19 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:04:19 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1865756} -2016-05-03 10:04:19 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:04:20 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:04:20 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:04:20 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:04:20 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 10:04:20 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:04:20 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:04:20 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:04:20 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:04:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 10:04:20 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:04:20 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 10:04:29 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 10:04:29 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:04:29 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:04:30 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:04:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:04:30 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:04:30 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:04:39 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:04:39 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:04:39 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:04:40 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:04:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:04:40 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:04:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:04:49 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:04:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}] -2016-05-03 10:04:49 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:04:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 10:04:50 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:04:50 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:04:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 10:04:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 10:04:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:04:51 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:04:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:04:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:04:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:04:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:04:59 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:04:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:04:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:59 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:04:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:04:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:04:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:04:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:04:59 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:04:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:04:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:04:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:04:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:04:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:04:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:04:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:04:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:04:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:04:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:04:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:59 INFO connection:71 - Closed connection [connectionId{localValue:15, serverValue:1865755}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:04:59 DEBUG connection:56 - Closing connection connectionId{localValue:15, serverValue:1865755} -2016-05-03 10:04:59 DEBUG connection:56 - Closing connection connectionId{localValue:14, serverValue:2137554} -2016-05-03 10:04:59 DEBUG connection:56 - Closing connection connectionId{localValue:11, serverValue:255033} -2016-05-03 10:04:59 DEBUG connection:56 - Closing connection connectionId{localValue:13, serverValue:1551338} -2016-05-03 10:04:59 DEBUG connection:56 - Closing connection connectionId{localValue:12, serverValue:1865754} -2016-05-03 10:04:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:04:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:04:59 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:04:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:59 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:04:59 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:04:59 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:04:59 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:04:59 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:04:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:04:59 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:04:59 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:04:59 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:04:59 INFO WorkspaceExplorerServiceImpl:142 - end time - 172 msc 0 sec -2016-05-03 10:04:59 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:05:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:05:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:04 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:05:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:04 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:05:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:05:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:05:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:04 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:05:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:05:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:05:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:05:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:05:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:05:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:05:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 178 msc 0 sec -2016-05-03 10:05:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:05:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:07 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:05:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:07 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:05:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:05:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:05:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:05:07 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:05:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:05:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:05:07 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:05:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:07 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:05:07 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:05:07 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:05:07 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:05:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:07 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:05:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:07 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:05:07 INFO WorkspaceExplorerServiceImpl:142 - end time - 162 msc 0 sec -2016-05-03 10:05:07 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:05:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:05:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:07 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:07 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:05:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:05:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:08 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:05:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:05:08 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:05:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:08 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:05:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:05:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:05:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:09 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:05:09 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:05:09 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:05:09 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:05:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:09 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:05:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:09 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:05:09 INFO WorkspaceExplorerServiceImpl:142 - end time - 165 msc 0 sec -2016-05-03 10:05:09 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:05:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:05:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:05:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:05:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:05:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:05:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:05:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:05:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:17 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:05:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:05:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:17 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:05:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:05:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:05:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:05:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:05:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:05:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:05:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 145 msc 0 sec -2016-05-03 10:05:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:05:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:05:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:18 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:05:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:05:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:05:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:05:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:05:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:05:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:05:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:05:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:18 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:05:18 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:05:18 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:05:18 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:05:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:18 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:05:18 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:18 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:05:18 INFO WorkspaceExplorerServiceImpl:142 - end time - 153 msc 0 sec -2016-05-03 10:05:18 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:19 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:05:19 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:05:19 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:05:19 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:05:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:19 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:05:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:19 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:05:19 INFO WorkspaceExplorerServiceImpl:142 - end time - 160 msc 0 sec -2016-05-03 10:05:19 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:19 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:05:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:05:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:05:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:05:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:05:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:05:20 INFO WorkspaceExplorerServiceImpl:142 - end time - 148 msc 0 sec -2016-05-03 10:05:20 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:05:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:30 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:05:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:30 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:30 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:05:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:05:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:30 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:05:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:05:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:30 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:05:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:30 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:30 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:30 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:30 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:30 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:30 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:30 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:30 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:31 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:05:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:05:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:05:31 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:05:31 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:05:31 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:05:31 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:05:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:31 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:05:31 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:05:31 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:05:31 INFO WorkspaceExplorerServiceImpl:142 - end time - 154 msc 0 sec -2016-05-03 10:05:31 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:05:40 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:40 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:05:40 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:05:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:40 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:40 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:40 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:40 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:40 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:05:40 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:05:40 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:05:40 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:05:40 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 10:05:40 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 10:05:40 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:05:40 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:05:40 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:05:40 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:05:40 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:05:40 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:05:40 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:05:40 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:05:40 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:05:40 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:05:40 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:05:40 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:40 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:40 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:40 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:05:40 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:05:40 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:05:40 INFO connection:71 - Opened connection [connectionId{localValue:21, serverValue:255048}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1598337, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:40 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:05:40 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:40 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:40 INFO connection:71 - Opened connection [connectionId{localValue:22, serverValue:1865771}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1431384, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:40 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:40 INFO connection:71 - Opened connection [connectionId{localValue:24, serverValue:2137569}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1134715, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:40 INFO connection:71 - Opened connection [connectionId{localValue:23, serverValue:1551351}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=3894590, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:40 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.9 ms, state=CONNECTED}] -2016-05-03 10:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:40 INFO connection:71 - Opened connection [connectionId{localValue:25, serverValue:1865772}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:40 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1865772}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:05:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:40 DEBUG command:56 - Command execution completed -2016-05-03 10:05:40 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1865772}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 DEBUG command:56 - Command execution completed -2016-05-03 10:05:40 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1865772}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 DEBUG command:56 - Command execution completed -2016-05-03 10:05:40 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:05:40 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1865772}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 DEBUG command:56 - Command execution completed -2016-05-03 10:05:40 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:25, serverValue:1865772}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 DEBUG command:56 - Command execution completed -2016-05-03 10:05:40 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:25, serverValue:1865772}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:40 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:40 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:41 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:05:41 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:05:41 INFO WorkspaceExplorerServiceImpl:188 - end time - 43 msc 0 sec -2016-05-03 10:05:41 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:05:41 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:05:41 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:05:41 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:41 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.9 ms, state=CONNECTED}] -2016-05-03 10:05:41 DEBUG query:56 - Query completed -2016-05-03 10:05:41 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 10:05:41 DEBUG connection:56 - Closing connection connectionId{localValue:24, serverValue:2137569} -2016-05-03 10:05:41 DEBUG connection:56 - Closing connection connectionId{localValue:21, serverValue:255048} -2016-05-03 10:05:41 DEBUG connection:56 - Closing connection connectionId{localValue:23, serverValue:1551351} -2016-05-03 10:05:41 INFO connection:71 - Closed connection [connectionId{localValue:25, serverValue:1865772}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:05:41 DEBUG connection:56 - Closing connection connectionId{localValue:25, serverValue:1865772} -2016-05-03 10:05:41 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:05:41 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:05:41 DEBUG connection:56 - Closing connection connectionId{localValue:22, serverValue:1865771} -2016-05-03 10:05:41 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:05:41 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 10:05:42 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:05:42 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:05:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:42 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:42 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:05:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:42 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:05:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:42 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:05:42 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:05:42 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:05:42 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:05:42 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:05:42 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:05:42 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 10:05:42 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:05:42 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:05:42 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:05:42 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:05:42 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:05:42 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:05:42 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:05:42 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:05:42 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:05:42 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:05:42 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:05:42 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:05:42 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:42 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:42 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:42 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:05:42 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:05:42 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:05:42 INFO connection:71 - Opened connection [connectionId{localValue:27, serverValue:1865773}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:42 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1115869, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:42 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:05:42 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:42 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:42 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:42 INFO connection:71 - Opened connection [connectionId{localValue:29, serverValue:2137570}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:05:42 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:05:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1066982, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:42 INFO connection:71 - Opened connection [connectionId{localValue:26, serverValue:255049}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:42 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1429133, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:42 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:05:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:42 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:05:42 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:42 INFO connection:71 - Opened connection [connectionId{localValue:28, serverValue:1551352}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:05:42 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:05:42 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1148326, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:42 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 10:05:42 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:05:42 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:05:42 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:05:42 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:05:42 INFO WorkspaceExplorerServiceImpl:188 - end time - 41 msc 0 sec -2016-05-03 10:05:42 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:42 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:05:42 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:05:42 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:05:42 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:05:43 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:43 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:43 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:05:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:43 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:43 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:05:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:43 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:43 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:43 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:43 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:05:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:43 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:43 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 10:05:43 INFO connection:71 - Opened connection [connectionId{localValue:30, serverValue:1865775}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:43 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1865775}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:43 DEBUG command:56 - Command execution completed -2016-05-03 10:05:43 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1865775}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:43 DEBUG command:56 - Command execution completed -2016-05-03 10:05:43 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1865775}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:43 DEBUG command:56 - Command execution completed -2016-05-03 10:05:43 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:05:43 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1865775}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:43 DEBUG command:56 - Command execution completed -2016-05-03 10:05:43 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:30, serverValue:1865775}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:43 DEBUG command:56 - Command execution completed -2016-05-03 10:05:43 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:30, serverValue:1865775}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:44 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:05:44 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:05:44 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 10:05:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:44 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:44 DEBUG ServiceEngine:193 - get() - start -2016-05-03 10:05:44 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:05:44 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:05:44 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:05:44 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:05:44 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:05:44 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:05:44 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 10:05:44 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:05:44 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:05:44 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:05:44 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:05:44 DEBUG Operation:173 - get(String) - start -2016-05-03 10:05:44 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:05:44 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:05:44 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:05:44 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:05:44 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:44 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:44 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:44 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:05:44 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:05:44 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:05:44 DEBUG query:56 - Query completed -2016-05-03 10:05:44 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 10:05:44 DEBUG connection:56 - Closing connection connectionId{localValue:29, serverValue:2137570} -2016-05-03 10:05:44 DEBUG connection:56 - Closing connection connectionId{localValue:26, serverValue:255049} -2016-05-03 10:05:44 INFO connection:71 - Closed connection [connectionId{localValue:30, serverValue:1865775}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:05:44 DEBUG connection:56 - Closing connection connectionId{localValue:28, serverValue:1551352} -2016-05-03 10:05:44 DEBUG connection:56 - Closing connection connectionId{localValue:30, serverValue:1865775} -2016-05-03 10:05:44 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:05:44 DEBUG connection:56 - Closing connection connectionId{localValue:27, serverValue:1865773} -2016-05-03 10:05:44 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:05:44 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:05:44 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 10:05:44 INFO connection:71 - Opened connection [connectionId{localValue:31, serverValue:255051}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1276089, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:44 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:05:44 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:44 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:44 INFO connection:71 - Opened connection [connectionId{localValue:34, serverValue:2137573}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=871021, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:44 INFO connection:71 - Opened connection [connectionId{localValue:32, serverValue:1865776}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1281063, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:44 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:44 INFO connection:71 - Opened connection [connectionId{localValue:33, serverValue:1551356}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1570334, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:05:44 INFO connection:71 - Opened connection [connectionId{localValue:35, serverValue:1865777}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1865777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG command:56 - Command execution completed -2016-05-03 10:05:44 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1865777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG command:56 - Command execution completed -2016-05-03 10:05:44 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1865777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG command:56 - Command execution completed -2016-05-03 10:05:44 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:05:44 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1865777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG command:56 - Command execution completed -2016-05-03 10:05:44 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1865777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG command:56 - Command execution completed -2016-05-03 10:05:44 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:05:44 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1865777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG command:56 - Command execution completed -2016-05-03 10:05:44 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:35, serverValue:1865777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG command:56 - Command execution completed -2016-05-03 10:05:44 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:05:44 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1865777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG query:56 - Query completed -2016-05-03 10:05:44 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:05:44 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:05:44 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 10:05:44 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:35, serverValue:1865777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG update:56 - Update completed -2016-05-03 10:05:44 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:35, serverValue:1865777}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG query:56 - Query completed -2016-05-03 10:05:44 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:44 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:44 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:44 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:44 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:44 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:44 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:44 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 10:05:44 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 10:05:44 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 10:05:44 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:05:44 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:05:44 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:05:44 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:05:44 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 10:05:44 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:05:44 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 10:05:44 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 10:05:44 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:05:44 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:05:44 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:05:44 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:05:44 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:05:44 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:05:44 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:05:44 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:44 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:44 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:44 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:05:44 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:05:44 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:05:44 INFO connection:71 - Opened connection [connectionId{localValue:36, serverValue:255052}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 INFO connection:71 - Opened connection [connectionId{localValue:37, serverValue:1865778}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1314271, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:44 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:05:44 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:44 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1566465, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:44 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:44 INFO connection:71 - Opened connection [connectionId{localValue:39, serverValue:2137574}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=932983, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:44 INFO connection:71 - Opened connection [connectionId{localValue:38, serverValue:1551357}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1192049, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 10:05:44 INFO connection:71 - Opened connection [connectionId{localValue:40, serverValue:1865779}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1865779}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG command:56 - Command execution completed -2016-05-03 10:05:44 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1865779}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG command:56 - Command execution completed -2016-05-03 10:05:44 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1865779}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG command:56 - Command execution completed -2016-05-03 10:05:44 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:05:44 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:05:44 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1865779}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG command:56 - Command execution completed -2016-05-03 10:05:44 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:40, serverValue:1865779}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG command:56 - Command execution completed -2016-05-03 10:05:44 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:05:44 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:40, serverValue:1865779}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG query:56 - Query completed -2016-05-03 10:05:44 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:05:44 DEBUG connection:56 - Closing connection connectionId{localValue:39, serverValue:2137574} -2016-05-03 10:05:44 DEBUG connection:56 - Closing connection connectionId{localValue:36, serverValue:255052} -2016-05-03 10:05:44 INFO connection:71 - Closed connection [connectionId{localValue:40, serverValue:1865779}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:05:44 DEBUG connection:56 - Closing connection connectionId{localValue:40, serverValue:1865779} -2016-05-03 10:05:44 DEBUG connection:56 - Closing connection connectionId{localValue:38, serverValue:1551357} -2016-05-03 10:05:44 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:05:44 DEBUG connection:56 - Closing connection connectionId{localValue:37, serverValue:1865778} -2016-05-03 10:05:44 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:05:44 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:05:44 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:05:44 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:05:44 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 10:05:44 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:05:44 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:05:44 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:05:44 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:05:44 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:05:44 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}] -2016-05-03 10:05:46 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:46 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:05:49 DEBUG connection:56 - Closing connection connectionId{localValue:34, serverValue:2137573} -2016-05-03 10:05:49 DEBUG connection:56 - Closing connection connectionId{localValue:31, serverValue:255051} -2016-05-03 10:05:49 DEBUG connection:56 - Closing connection connectionId{localValue:33, serverValue:1551356} -2016-05-03 10:05:49 INFO connection:71 - Closed connection [connectionId{localValue:35, serverValue:1865777}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:05:49 DEBUG connection:56 - Closing connection connectionId{localValue:35, serverValue:1865777} -2016-05-03 10:05:49 DEBUG connection:56 - Closing connection connectionId{localValue:32, serverValue:1865776} -2016-05-03 10:05:57 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:57 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:57 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:05:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:05:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:57 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:57 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:05:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:05:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:57 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:57 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:57 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:05:57 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:05:57 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:05:57 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:05:57 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 10:05:57 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 10:05:57 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:05:57 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:05:57 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:05:57 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:05:57 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:05:57 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:05:57 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:05:57 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:05:57 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:05:57 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:05:57 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:05:57 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:57 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:57 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:57 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:05:57 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:05:57 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:05:57 INFO connection:71 - Opened connection [connectionId{localValue:41, serverValue:255055}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1077080, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:57 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:05:57 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:57 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:57 INFO connection:71 - Opened connection [connectionId{localValue:44, serverValue:2137576}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=879172, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:57 INFO connection:71 - Opened connection [connectionId{localValue:42, serverValue:1865783}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1224730, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:57 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:57 INFO connection:71 - Opened connection [connectionId{localValue:43, serverValue:1551359}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1218241, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 10:05:57 INFO connection:71 - Opened connection [connectionId{localValue:45, serverValue:1865784}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1865784}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 DEBUG command:56 - Command execution completed -2016-05-03 10:05:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1865784}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 DEBUG command:56 - Command execution completed -2016-05-03 10:05:57 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1865784}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 DEBUG command:56 - Command execution completed -2016-05-03 10:05:57 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:05:57 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1865784}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 DEBUG command:56 - Command execution completed -2016-05-03 10:05:57 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:45, serverValue:1865784}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 DEBUG command:56 - Command execution completed -2016-05-03 10:05:57 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:45, serverValue:1865784}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:57 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:05:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:57 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:05:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:57 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:57 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:57 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:57 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:57 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:57 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:57 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:57 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:57 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:57 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:05:57 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:05:57 INFO WorkspaceExplorerServiceImpl:188 - end time - 47 msc 0 sec -2016-05-03 10:05:57 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:05:57 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:05:57 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:05:57 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 10:05:57 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:05:57 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 10:05:57 DEBUG query:56 - Query completed -2016-05-03 10:05:57 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 10:05:57 DEBUG connection:56 - Closing connection connectionId{localValue:44, serverValue:2137576} -2016-05-03 10:05:57 DEBUG connection:56 - Closing connection connectionId{localValue:41, serverValue:255055} -2016-05-03 10:05:57 INFO connection:71 - Closed connection [connectionId{localValue:45, serverValue:1865784}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:05:57 DEBUG connection:56 - Closing connection connectionId{localValue:43, serverValue:1551359} -2016-05-03 10:05:57 DEBUG connection:56 - Closing connection connectionId{localValue:45, serverValue:1865784} -2016-05-03 10:05:57 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:05:57 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:05:57 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:05:57 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 10:05:57 DEBUG connection:56 - Closing connection connectionId{localValue:42, serverValue:1865783} -2016-05-03 10:05:58 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:05:58 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:05:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:05:58 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:05:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:05:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:58 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:05:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:58 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:05:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:58 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:05:58 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:05:58 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:05:58 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:05:58 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:05:58 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:05:58 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 10:05:58 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:05:58 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:05:58 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:05:58 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:05:58 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:05:58 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:05:58 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:05:58 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:05:58 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:05:58 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:05:58 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:05:58 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:05:58 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:58 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:58 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:58 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:05:58 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:05:58 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:05:58 INFO connection:71 - Opened connection [connectionId{localValue:46, serverValue:255056}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1649992, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:58 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:05:58 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:58 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:05:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:58 INFO connection:71 - Opened connection [connectionId{localValue:49, serverValue:2137577}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=833911, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:58 INFO connection:71 - Opened connection [connectionId{localValue:47, serverValue:1865785}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1188306, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:58 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:05:58 INFO connection:71 - Opened connection [connectionId{localValue:48, serverValue:1551361}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1271219, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:05:58 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:05:58 INFO connection:71 - Opened connection [connectionId{localValue:50, serverValue:1865786}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1865786}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 DEBUG command:56 - Command execution completed -2016-05-03 10:05:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1865786}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 DEBUG command:56 - Command execution completed -2016-05-03 10:05:58 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1865786}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 DEBUG command:56 - Command execution completed -2016-05-03 10:05:58 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:05:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1865786}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:58 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:05:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:58 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:58 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:58 DEBUG command:56 - Command execution completed -2016-05-03 10:05:58 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:58 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:58 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:58 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:58 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:50, serverValue:1865786}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 DEBUG command:56 - Command execution completed -2016-05-03 10:05:58 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:50, serverValue:1865786}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:05:58 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:05:58 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:05:58 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:05:58 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:05:58 INFO WorkspaceExplorerServiceImpl:188 - end time - 56 msc 0 sec -2016-05-03 10:05:58 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:05:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:05:58 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:05:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:05:58 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:05:59 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:05:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:05:59 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:05:59 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:05:59 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:59 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:59 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:05:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:05:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:59 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:59 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:05:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:05:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:59 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:59 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:05:59 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:05:59 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:05:59 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:05:59 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:05:59 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:05:59 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:05:59 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:05:59 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:59 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:59 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:05:59 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 10:05:59 DEBUG query:56 - Query completed -2016-05-03 10:05:59 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 10:05:59 DEBUG connection:56 - Closing connection connectionId{localValue:49, serverValue:2137577} -2016-05-03 10:05:59 INFO connection:71 - Closed connection [connectionId{localValue:50, serverValue:1865786}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:05:59 DEBUG connection:56 - Closing connection connectionId{localValue:50, serverValue:1865786} -2016-05-03 10:05:59 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:05:59 DEBUG connection:56 - Closing connection connectionId{localValue:47, serverValue:1865785} -2016-05-03 10:05:59 DEBUG connection:56 - Closing connection connectionId{localValue:48, serverValue:1551361} -2016-05-03 10:05:59 DEBUG connection:56 - Closing connection connectionId{localValue:46, serverValue:255056} -2016-05-03 10:05:59 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:05:59 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:05:59 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 10:06:00 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:06:00 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:06:00 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:06:00 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 10:06:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:06:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:06:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:06:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:06:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:06:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:06:00 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:06:00 DEBUG ServiceEngine:193 - get() - start -2016-05-03 10:06:00 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:06:00 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:06:00 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:06:00 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:06:00 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:06:00 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:06:00 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 10:06:00 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:06:00 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:06:00 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:06:00 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:06:00 DEBUG Operation:173 - get(String) - start -2016-05-03 10:06:00 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:06:00 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:06:00 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:06:00 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:06:00 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:06:00 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:06:00 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:06:00 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:06:00 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:06:00 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:06:00 INFO connection:71 - Opened connection [connectionId{localValue:52, serverValue:1865787}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1134195, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:06:00 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:06:00 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:06:00 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:06:00 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:06:00 INFO connection:71 - Opened connection [connectionId{localValue:54, serverValue:2137578}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=865279, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:06:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:06:00 INFO connection:71 - Opened connection [connectionId{localValue:51, serverValue:255057}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=924758, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:06:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:06:00 INFO connection:71 - Opened connection [connectionId{localValue:53, serverValue:1551362}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1259100, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:06:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:06:00 INFO connection:71 - Opened connection [connectionId{localValue:55, serverValue:1865788}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1865788}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG command:56 - Command execution completed -2016-05-03 10:06:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1865788}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG command:56 - Command execution completed -2016-05-03 10:06:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1865788}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG command:56 - Command execution completed -2016-05-03 10:06:00 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:06:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1865788}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG command:56 - Command execution completed -2016-05-03 10:06:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1865788}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG command:56 - Command execution completed -2016-05-03 10:06:00 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:06:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1865788}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG command:56 - Command execution completed -2016-05-03 10:06:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:55, serverValue:1865788}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG command:56 - Command execution completed -2016-05-03 10:06:00 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:06:00 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:55, serverValue:1865788}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG query:56 - Query completed -2016-05-03 10:06:00 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:06:00 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:06:00 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 10:06:00 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:55, serverValue:1865788}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG update:56 - Update completed -2016-05-03 10:06:00 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:55, serverValue:1865788}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG query:56 - Query completed -2016-05-03 10:06:00 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:06:00 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:06:00 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:06:00 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:06:00 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:06:00 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:06:00 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:06:00 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 10:06:00 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 10:06:00 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 10:06:00 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:06:00 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:06:00 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:06:00 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:06:00 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 10:06:00 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:06:00 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 10:06:00 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 10:06:00 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:06:00 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:06:00 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:06:00 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:06:00 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:06:00 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:06:00 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:06:00 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:06:00 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:06:00 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:06:00 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:06:00 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:06:00 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:06:00 INFO connection:71 - Opened connection [connectionId{localValue:57, serverValue:1865789}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1747103, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:06:00 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:06:00 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:06:00 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:06:00 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 INFO connection:71 - Opened connection [connectionId{localValue:56, serverValue:255058}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:06:00 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 INFO connection:71 - Opened connection [connectionId{localValue:59, serverValue:2137579}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2744655, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:06:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:06:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1127460, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:06:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:06:00 INFO connection:71 - Opened connection [connectionId{localValue:60, serverValue:1865790}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 INFO connection:71 - Opened connection [connectionId{localValue:58, serverValue:1551363}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:60, serverValue:1865790}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1107805, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:06:00 DEBUG command:56 - Command execution completed -2016-05-03 10:06:00 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 10:06:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:60, serverValue:1865790}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG command:56 - Command execution completed -2016-05-03 10:06:00 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:60, serverValue:1865790}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG command:56 - Command execution completed -2016-05-03 10:06:00 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:06:00 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:06:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:60, serverValue:1865790}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG command:56 - Command execution completed -2016-05-03 10:06:00 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:60, serverValue:1865790}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG command:56 - Command execution completed -2016-05-03 10:06:00 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:06:00 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:60, serverValue:1865790}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:06:00 DEBUG query:56 - Query completed -2016-05-03 10:06:00 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:06:00 DEBUG connection:56 - Closing connection connectionId{localValue:59, serverValue:2137579} -2016-05-03 10:06:00 INFO connection:71 - Closed connection [connectionId{localValue:60, serverValue:1865790}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:06:00 DEBUG connection:56 - Closing connection connectionId{localValue:58, serverValue:1551363} -2016-05-03 10:06:00 DEBUG connection:56 - Closing connection connectionId{localValue:56, serverValue:255058} -2016-05-03 10:06:00 DEBUG connection:56 - Closing connection connectionId{localValue:60, serverValue:1865790} -2016-05-03 10:06:00 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:06:00 DEBUG connection:56 - Closing connection connectionId{localValue:57, serverValue:1865789} -2016-05-03 10:06:00 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:06:00 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:06:00 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:06:00 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:06:00 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 10:06:00 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:06:00 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:06:00 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:06:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:06:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:06:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:06:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:06:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:06:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:06:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:06:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:06:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:06:03 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:06:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:06:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:06:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:06:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:06:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:06:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:06:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:06:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:06:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:06:03 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:06:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:06:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:06:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:06:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:06:04 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:06:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:06:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:06:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:06:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:06:04 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:06:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:06:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:06:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:06:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:06:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:06:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:06:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:06:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:06:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:06:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:06:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:06:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:06:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:06:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:06:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:06:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:06:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:06:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:06:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:06:04 DEBUG connection:56 - Closing connection connectionId{localValue:53, serverValue:1551362} -2016-05-03 10:06:04 DEBUG connection:56 - Closing connection connectionId{localValue:54, serverValue:2137578} -2016-05-03 10:06:04 INFO connection:71 - Closed connection [connectionId{localValue:55, serverValue:1865788}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:06:04 DEBUG connection:56 - Closing connection connectionId{localValue:55, serverValue:1865788} -2016-05-03 10:06:04 DEBUG connection:56 - Closing connection connectionId{localValue:51, serverValue:255057} -2016-05-03 10:06:04 DEBUG connection:56 - Closing connection connectionId{localValue:52, serverValue:1865787} -2016-05-03 10:06:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:06:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:06:04 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:06:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:06:04 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:06:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:06:04 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:06:04 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:06:04 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:06:04 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:06:04 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:06:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:06:04 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:06:04 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:06:04 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:06:04 INFO WorkspaceExplorerServiceImpl:142 - end time - 149 msc 0 sec -2016-05-03 10:06:04 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:06:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:06:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:07:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:07:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:08:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:08:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:08:17 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:08:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:17 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:08:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:08:17 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:08:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:08:17 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:08:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:17 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:08:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:17 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:17 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:17 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:17 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:17 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:17 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:17 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:17 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:08:17 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:17 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:17 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:08:17 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:08:17 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:08:17 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:08:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:08:17 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:08:17 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:08:17 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:08:17 INFO WorkspaceExplorerServiceImpl:142 - end time - 136 msc 0 sec -2016-05-03 10:08:17 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:18 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:18 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:08:18 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:08:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:08:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:18 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:08:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:18 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:08:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:08:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:08:19 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:19 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:19 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:08:19 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:08:19 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:08:19 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:08:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:08:19 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:08:19 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:08:19 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:08:19 INFO WorkspaceExplorerServiceImpl:142 - end time - 147 msc 0 sec -2016-05-03 10:08:19 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:08:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:08:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:20 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:20 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:08:20 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:08:20 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:08:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:20 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:08:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:20 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:20 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:20 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:20 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:20 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:20 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:20 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:20 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:20 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:08:20 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:08:20 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:08:20 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:08:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:08:20 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:08:20 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:08:20 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:08:20 INFO WorkspaceExplorerServiceImpl:142 - end time - 179 msc 0 sec -2016-05-03 10:08:20 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:08:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:21 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:21 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:08:21 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:21 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:30 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:08:30 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:08:30 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:08:30 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 10:08:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:31 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:08:31 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:08:31 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:08:31 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:08:31 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 10:08:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:08:31 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:08:31 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:08:31 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 10:08:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:31 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:08:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 10:08:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:31 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:31 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:31 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:31 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:31 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:31 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:31 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:08:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 10:08:31 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:31 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:32 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:08:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 10:08:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:32 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:08:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 10:08:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:32 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:08:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:32 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 10:08:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:32 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 10:08:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:08:32 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:08:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:08:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:32 INFO WorkspaceExplorerServiceImpl:188 - end time - 86 msc 0 sec -2016-05-03 10:08:32 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 10:08:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:32 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 10:08:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:32 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:08:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:32 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 10:08:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:32 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 10:08:32 INFO WorkspaceExplorerServiceImpl:188 - end time - 141 msc 0 sec -2016-05-03 10:08:32 INFO WorkspaceExplorerServiceImpl:188 - end time - 86 msc 0 sec -2016-05-03 10:08:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:08:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:08:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:08:38 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 10:08:38 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 10:08:38 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-03 10:08:38 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-03 10:08:38 DEBUG WPS2SM:204 - Schema: null -2016-05-03 10:08:38 DEBUG WPS2SM:205 - Encoding: null -2016-05-03 10:08:38 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:08:38 DEBUG WPS2SM:227 - Machter find: true -2016-05-03 10:08:38 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 10:08:38 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-03 10:08:38 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-03 10:08:38 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-03 10:08:38 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-03 10:08:38 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 10:08:38 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 10:08:38 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:08:38 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-03 10:08:38 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 10:08:38 DEBUG WPS2SM:92 - WPS type: -2016-05-03 10:08:38 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 10:08:38 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 10:08:38 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:08:38 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 10:08:38 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 10:08:38 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 10:08:38 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 10:08:38 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 10:08:38 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 10:08:38 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 10:08:38 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 10:08:38 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:08:38 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 10:08:38 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 10:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:08:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:39 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:08:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:08:39 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:08:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:39 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:08:39 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:08:39 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:08:39 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:08:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:08:39 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:08:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:08:39 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:08:39 INFO WorkspaceExplorerServiceImpl:142 - end time - 138 msc 0 sec -2016-05-03 10:08:39 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:08:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:08:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:08:41 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:08:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:08:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:41 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:08:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:08:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:41 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:08:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:41 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:08:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:08:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:41 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:08:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:08:41 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:41 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:41 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:41 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:41 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:41 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:41 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:08:41 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:08:41 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:08:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:41 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:08:41 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:08:41 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:08:41 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:08:41 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:08:41 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:08:41 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:08:41 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:08:41 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:08:41 INFO WorkspaceExplorerServiceImpl:142 - end time - 140 msc 0 sec -2016-05-03 10:08:41 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:08:50 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:08:50 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:08:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:08:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:08:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:08:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:50 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:08:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:08:50 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:08:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:08:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:08:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:08:50 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:08:50 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:08:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:08:50 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:08:50 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 10:08:50 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 10:08:50 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:08:50 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:08:50 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:08:50 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:08:50 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:08:50 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:08:50 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:08:50 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:08:50 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:08:50 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:08:50 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:08:50 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:50 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:50 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:50 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:08:50 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:08:50 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:08:50 INFO connection:71 - Opened connection [connectionId{localValue:61, serverValue:255088}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=3345524, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:50 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:08:50 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:50 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:50 INFO connection:71 - Opened connection [connectionId{localValue:64, serverValue:2137609}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=776277, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:50 INFO connection:71 - Opened connection [connectionId{localValue:62, serverValue:1865819}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:08:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1577475, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:08:50 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:08:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:50 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:08:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:08:50 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:08:50 INFO connection:71 - Opened connection [connectionId{localValue:63, serverValue:1551393}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1312267, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:50 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:08:50 INFO connection:71 - Opened connection [connectionId{localValue:65, serverValue:1865820}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:65, serverValue:1865820}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 DEBUG command:56 - Command execution completed -2016-05-03 10:08:50 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:65, serverValue:1865820}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 DEBUG command:56 - Command execution completed -2016-05-03 10:08:50 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:65, serverValue:1865820}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 DEBUG command:56 - Command execution completed -2016-05-03 10:08:50 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:08:50 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:65, serverValue:1865820}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 DEBUG command:56 - Command execution completed -2016-05-03 10:08:50 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:65, serverValue:1865820}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:08:50 DEBUG command:56 - Command execution completed -2016-05-03 10:08:50 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:65, serverValue:1865820}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:50 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:08:50 INFO WorkspaceExplorerServiceImpl:188 - end time - 45 msc 0 sec -2016-05-03 10:08:50 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:08:50 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:08:50 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:08:51 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:08:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:08:51 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:08:51 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:08:51 DEBUG query:56 - Query completed -2016-05-03 10:08:51 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 10:08:51 DEBUG connection:56 - Closing connection connectionId{localValue:64, serverValue:2137609} -2016-05-03 10:08:51 DEBUG connection:56 - Closing connection connectionId{localValue:61, serverValue:255088} -2016-05-03 10:08:51 INFO connection:71 - Closed connection [connectionId{localValue:65, serverValue:1865820}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:08:51 DEBUG connection:56 - Closing connection connectionId{localValue:65, serverValue:1865820} -2016-05-03 10:08:51 DEBUG connection:56 - Closing connection connectionId{localValue:63, serverValue:1551393} -2016-05-03 10:08:51 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:08:51 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:08:51 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:08:51 DEBUG connection:56 - Closing connection connectionId{localValue:62, serverValue:1865819} -2016-05-03 10:08:51 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 10:08:51 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:08:51 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:08:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:08:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:51 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:51 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:08:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:51 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:08:51 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:08:51 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:08:51 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:08:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:08:51 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:08:51 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 10:08:51 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:08:51 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:08:51 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:08:51 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:08:51 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:08:51 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:08:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:08:51 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:08:51 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:08:51 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:08:51 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:08:51 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:08:51 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:51 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:51 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:51 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:08:51 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:08:51 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:08:52 INFO connection:71 - Opened connection [connectionId{localValue:66, serverValue:255089}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 INFO connection:71 - Opened connection [connectionId{localValue:67, serverValue:1865821}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1145039, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:52 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:08:52 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:52 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1393431, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:52 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:52 INFO connection:71 - Opened connection [connectionId{localValue:69, serverValue:2137610}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=785248, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:52 INFO connection:71 - Opened connection [connectionId{localValue:68, serverValue:1551394}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:08:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:08:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:08:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:52 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:08:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:08:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1126435, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 10:08:52 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:08:52 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:08:52 INFO connection:71 - Opened connection [connectionId{localValue:70, serverValue:1865822}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:70, serverValue:1865822}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 DEBUG command:56 - Command execution completed -2016-05-03 10:08:52 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:70, serverValue:1865822}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 DEBUG command:56 - Command execution completed -2016-05-03 10:08:52 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:70, serverValue:1865822}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 DEBUG command:56 - Command execution completed -2016-05-03 10:08:52 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:08:52 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:70, serverValue:1865822}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 DEBUG command:56 - Command execution completed -2016-05-03 10:08:52 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:70, serverValue:1865822}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 DEBUG command:56 - Command execution completed -2016-05-03 10:08:52 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:70, serverValue:1865822}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:08:52 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:08:52 INFO WorkspaceExplorerServiceImpl:188 - end time - 41 msc 0 sec -2016-05-03 10:08:52 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:08:52 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:08:52 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:08:52 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:08:52 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:08:52 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:08:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 10:08:52 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:08:52 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:08:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:08:52 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:08:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:08:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:52 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:08:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:52 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:08:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:08:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:52 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:08:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:08:52 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:08:52 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:08:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:52 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:08:52 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:08:52 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:08:52 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 10:08:52 DEBUG query:56 - Query completed -2016-05-03 10:08:52 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 10:08:52 DEBUG connection:56 - Closing connection connectionId{localValue:69, serverValue:2137610} -2016-05-03 10:08:52 DEBUG connection:56 - Closing connection connectionId{localValue:68, serverValue:1551394} -2016-05-03 10:08:52 DEBUG connection:56 - Closing connection connectionId{localValue:66, serverValue:255089} -2016-05-03 10:08:52 INFO connection:71 - Closed connection [connectionId{localValue:70, serverValue:1865822}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:08:52 DEBUG connection:56 - Closing connection connectionId{localValue:70, serverValue:1865822} -2016-05-03 10:08:52 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:08:52 DEBUG connection:56 - Closing connection connectionId{localValue:67, serverValue:1865821} -2016-05-03 10:08:52 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:08:52 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:08:52 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 10:08:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:08:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:08:53 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:08:53 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 10:08:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:53 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:08:53 DEBUG ServiceEngine:193 - get() - start -2016-05-03 10:08:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:08:53 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:08:53 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:08:53 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:08:53 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:08:53 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:08:53 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 10:08:53 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:08:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:08:53 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:08:53 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:08:53 DEBUG Operation:173 - get(String) - start -2016-05-03 10:08:53 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:08:53 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:08:53 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:08:53 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:08:53 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:53 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:53 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:53 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:08:53 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:08:53 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:08:53 INFO connection:71 - Opened connection [connectionId{localValue:71, serverValue:255090}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1175190, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:53 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:08:53 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:53 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:53 INFO connection:71 - Opened connection [connectionId{localValue:72, serverValue:1865825}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 INFO connection:71 - Opened connection [connectionId{localValue:74, serverValue:2137611}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=749146, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1249270, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:53 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:53 INFO connection:71 - Opened connection [connectionId{localValue:73, serverValue:1551395}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1941068, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 10:08:53 INFO connection:71 - Opened connection [connectionId{localValue:75, serverValue:1865826}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:75, serverValue:1865826}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG command:56 - Command execution completed -2016-05-03 10:08:53 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:75, serverValue:1865826}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG command:56 - Command execution completed -2016-05-03 10:08:53 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:75, serverValue:1865826}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG command:56 - Command execution completed -2016-05-03 10:08:53 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:08:53 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:75, serverValue:1865826}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG command:56 - Command execution completed -2016-05-03 10:08:53 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:75, serverValue:1865826}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG command:56 - Command execution completed -2016-05-03 10:08:53 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:08:53 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:75, serverValue:1865826}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG command:56 - Command execution completed -2016-05-03 10:08:53 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:75, serverValue:1865826}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG command:56 - Command execution completed -2016-05-03 10:08:53 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:08:53 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:75, serverValue:1865826}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG query:56 - Query completed -2016-05-03 10:08:53 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:08:53 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:08:53 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 10:08:53 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:75, serverValue:1865826}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG update:56 - Update completed -2016-05-03 10:08:53 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:75, serverValue:1865826}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG query:56 - Query completed -2016-05-03 10:08:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:08:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:08:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:08:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:08:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:08:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:08:53 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:08:53 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 10:08:53 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 10:08:53 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 10:08:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:08:53 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:08:53 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:08:53 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:08:53 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 10:08:53 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:08:53 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 10:08:53 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 10:08:53 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:08:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:08:53 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:08:53 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:08:53 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:08:53 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:08:53 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:08:53 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:53 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:53 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:53 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:08:53 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:08:53 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:08:53 INFO connection:71 - Opened connection [connectionId{localValue:76, serverValue:255091}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1480030, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:53 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:08:53 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:53 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:08:53 INFO connection:71 - Opened connection [connectionId{localValue:77, serverValue:1865827}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:53 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=883463, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:53 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:53 INFO connection:71 - Opened connection [connectionId{localValue:79, serverValue:2137612}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=837900, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:08:53 INFO connection:71 - Opened connection [connectionId{localValue:78, serverValue:1551396}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1178902, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:08:53 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 10:08:53 INFO connection:71 - Opened connection [connectionId{localValue:80, serverValue:1865828}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:80, serverValue:1865828}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG command:56 - Command execution completed -2016-05-03 10:08:53 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:80, serverValue:1865828}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG command:56 - Command execution completed -2016-05-03 10:08:53 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:80, serverValue:1865828}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG command:56 - Command execution completed -2016-05-03 10:08:53 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:08:53 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:08:53 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:80, serverValue:1865828}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG command:56 - Command execution completed -2016-05-03 10:08:53 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:80, serverValue:1865828}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG command:56 - Command execution completed -2016-05-03 10:08:53 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:08:53 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:80, serverValue:1865828}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:08:53 DEBUG query:56 - Query completed -2016-05-03 10:08:53 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:08:53 DEBUG connection:56 - Closing connection connectionId{localValue:79, serverValue:2137612} -2016-05-03 10:08:53 DEBUG connection:56 - Closing connection connectionId{localValue:78, serverValue:1551396} -2016-05-03 10:08:53 INFO connection:71 - Closed connection [connectionId{localValue:80, serverValue:1865828}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:08:53 DEBUG connection:56 - Closing connection connectionId{localValue:76, serverValue:255091} -2016-05-03 10:08:53 DEBUG connection:56 - Closing connection connectionId{localValue:80, serverValue:1865828} -2016-05-03 10:08:53 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:08:53 DEBUG connection:56 - Closing connection connectionId{localValue:77, serverValue:1865827} -2016-05-03 10:08:53 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:08:53 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:08:53 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:08:53 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:08:53 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 10:08:53 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:08:53 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:08:53 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:08:54 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:08:54 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}] -2016-05-03 10:09:00 DEBUG connection:56 - Closing connection connectionId{localValue:74, serverValue:2137611} -2016-05-03 10:09:00 DEBUG connection:56 - Closing connection connectionId{localValue:71, serverValue:255090} -2016-05-03 10:09:00 DEBUG connection:56 - Closing connection connectionId{localValue:73, serverValue:1551395} -2016-05-03 10:09:00 INFO connection:71 - Closed connection [connectionId{localValue:75, serverValue:1865826}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:09:00 DEBUG connection:56 - Closing connection connectionId{localValue:75, serverValue:1865826} -2016-05-03 10:09:00 DEBUG connection:56 - Closing connection connectionId{localValue:72, serverValue:1865825} -2016-05-03 10:09:01 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:01 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:09:01 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:09:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:01 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:01 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:01 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:01 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:01 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:09:01 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:09:01 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:01 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:01 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 10:09:01 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 10:09:01 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:09:01 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:09:01 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:09:01 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:09:01 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:09:01 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:01 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:01 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:09:01 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:09:01 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:09:01 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:09:01 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:01 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:01 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:01 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:09:01 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:09:01 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:09:01 INFO connection:71 - Opened connection [connectionId{localValue:81, serverValue:255093}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1148408, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:01 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:09:01 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:01 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:01 INFO connection:71 - Opened connection [connectionId{localValue:84, serverValue:2137614}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=978928, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:01 INFO connection:71 - Opened connection [connectionId{localValue:82, serverValue:1865829}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1057449, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:01 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:01 INFO connection:71 - Opened connection [connectionId{localValue:83, serverValue:1551398}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1015979, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:01 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}] -2016-05-03 10:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:01 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:09:01 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:09:01 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:09:01 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:01 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:01 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:01 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:01 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:01 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:01 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:01 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:01 INFO connection:71 - Opened connection [connectionId{localValue:85, serverValue:1865831}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:85, serverValue:1865831}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 DEBUG command:56 - Command execution completed -2016-05-03 10:09:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:85, serverValue:1865831}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 DEBUG command:56 - Command execution completed -2016-05-03 10:09:01 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:85, serverValue:1865831}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 DEBUG command:56 - Command execution completed -2016-05-03 10:09:01 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:09:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:85, serverValue:1865831}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 DEBUG command:56 - Command execution completed -2016-05-03 10:09:01 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:85, serverValue:1865831}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 DEBUG command:56 - Command execution completed -2016-05-03 10:09:01 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:85, serverValue:1865831}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:01 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:09:01 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:09:01 INFO WorkspaceExplorerServiceImpl:188 - end time - 40 msc 0 sec -2016-05-03 10:09:01 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:09:01 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:09:01 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:09:02 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}] -2016-05-03 10:09:02 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}] -2016-05-03 10:09:02 DEBUG query:56 - Query completed -2016-05-03 10:09:02 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 10:09:02 DEBUG connection:56 - Closing connection connectionId{localValue:84, serverValue:2137614} -2016-05-03 10:09:02 DEBUG connection:56 - Closing connection connectionId{localValue:81, serverValue:255093} -2016-05-03 10:09:02 INFO connection:71 - Closed connection [connectionId{localValue:85, serverValue:1865831}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:09:02 DEBUG connection:56 - Closing connection connectionId{localValue:85, serverValue:1865831} -2016-05-03 10:09:02 DEBUG connection:56 - Closing connection connectionId{localValue:83, serverValue:1551398} -2016-05-03 10:09:02 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:09:02 DEBUG connection:56 - Closing connection connectionId{localValue:82, serverValue:1865829} -2016-05-03 10:09:02 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:09:02 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:09:02 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 10:09:02 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:02 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:09:02 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:09:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:09:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:02 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:09:02 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:09:02 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:09:02 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:02 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:02 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:02 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:02 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:02 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:02 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:02 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:02 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:09:03 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:09:03 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:03 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:03 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 10:09:03 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:09:03 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:09:03 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:09:03 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:09:03 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:09:03 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:09:03 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:03 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:03 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:09:03 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:09:03 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:09:03 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:09:03 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:03 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:03 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:03 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:09:03 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:09:03 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:09:03 INFO connection:71 - Opened connection [connectionId{localValue:87, serverValue:1865832}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 INFO connection:71 - Opened connection [connectionId{localValue:86, serverValue:255094}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1051394, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:03 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:09:03 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:03 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:03 INFO connection:71 - Opened connection [connectionId{localValue:89, serverValue:2137615}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=715512, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=13192562, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:03 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=13.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:03 INFO connection:71 - Opened connection [connectionId{localValue:88, serverValue:1551399}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1189734, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=13.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 10:09:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:09:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:09:03 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:09:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:09:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:03 INFO connection:71 - Opened connection [connectionId{localValue:90, serverValue:1865833}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:90, serverValue:1865833}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 DEBUG command:56 - Command execution completed -2016-05-03 10:09:03 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:90, serverValue:1865833}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 DEBUG command:56 - Command execution completed -2016-05-03 10:09:03 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:90, serverValue:1865833}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 DEBUG command:56 - Command execution completed -2016-05-03 10:09:03 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:09:03 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:03 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:90, serverValue:1865833}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:03 DEBUG command:56 - Command execution completed -2016-05-03 10:09:03 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:90, serverValue:1865833}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 DEBUG command:56 - Command execution completed -2016-05-03 10:09:03 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:90, serverValue:1865833}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:09:03 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:09:03 INFO WorkspaceExplorerServiceImpl:188 - end time - 47 msc 0 sec -2016-05-03 10:09:03 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:03 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:09:03 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:09:03 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:09:03 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:09:03 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=13.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 10:09:03 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:03 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=13.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 10:09:03 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:03 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:03 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:09:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:03 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:09:03 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:09:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:09:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:03 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:03 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:09:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:03 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:03 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:03 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:03 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:03 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:03 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:03 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:03 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:03 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:03 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 10:09:03 DEBUG query:56 - Query completed -2016-05-03 10:09:03 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 10:09:03 DEBUG connection:56 - Closing connection connectionId{localValue:89, serverValue:2137615} -2016-05-03 10:09:03 DEBUG connection:56 - Closing connection connectionId{localValue:86, serverValue:255094} -2016-05-03 10:09:03 DEBUG connection:56 - Closing connection connectionId{localValue:88, serverValue:1551399} -2016-05-03 10:09:03 INFO connection:71 - Closed connection [connectionId{localValue:90, serverValue:1865833}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:09:03 DEBUG connection:56 - Closing connection connectionId{localValue:90, serverValue:1865833} -2016-05-03 10:09:03 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:09:03 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:09:03 DEBUG connection:56 - Closing connection connectionId{localValue:87, serverValue:1865832} -2016-05-03 10:09:03 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:09:03 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 10:09:04 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:09:04 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:09:04 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:09:04 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-03 10:09:04 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:04 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:04 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:04 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:04 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:04 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:04 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:04 DEBUG ServiceEngine:193 - get() - start -2016-05-03 10:09:04 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:04 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:04 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 10:09:04 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:09:04 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:09:04 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:09:04 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 10:09:04 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:09:04 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:04 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:04 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:09:04 DEBUG Operation:173 - get(String) - start -2016-05-03 10:09:04 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:09:04 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:09:04 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:09:04 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:09:04 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:04 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:04 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:04 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:09:04 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:09:04 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:09:04 INFO connection:71 - Opened connection [connectionId{localValue:92, serverValue:1865834}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:04 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1439885, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:04 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:09:04 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:04 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:04 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:04 INFO connection:71 - Opened connection [connectionId{localValue:91, serverValue:255097}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:04 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1236788, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:04 INFO connection:71 - Opened connection [connectionId{localValue:94, serverValue:2137617}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:04 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:04 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=968666, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:04 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:05 INFO connection:71 - Opened connection [connectionId{localValue:93, serverValue:1551400}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1061589, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 10:09:05 INFO connection:71 - Opened connection [connectionId{localValue:95, serverValue:1865835}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:95, serverValue:1865835}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG command:56 - Command execution completed -2016-05-03 10:09:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:95, serverValue:1865835}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG command:56 - Command execution completed -2016-05-03 10:09:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:95, serverValue:1865835}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG command:56 - Command execution completed -2016-05-03 10:09:05 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:09:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:95, serverValue:1865835}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG command:56 - Command execution completed -2016-05-03 10:09:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:95, serverValue:1865835}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG command:56 - Command execution completed -2016-05-03 10:09:05 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:09:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:95, serverValue:1865835}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG command:56 - Command execution completed -2016-05-03 10:09:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:95, serverValue:1865835}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG command:56 - Command execution completed -2016-05-03 10:09:05 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:09:05 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:95, serverValue:1865835}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG query:56 - Query completed -2016-05-03 10:09:05 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 10:09:05 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:09:05 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 10:09:05 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:95, serverValue:1865835}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG update:56 - Update completed -2016-05-03 10:09:05 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:95, serverValue:1865835}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG query:56 - Query completed -2016-05-03 10:09:05 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:05 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:05 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:05 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:05 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:05 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:05 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:05 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-03 10:09:05 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 10:09:05 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 10:09:05 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:05 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:05 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 10:09:05 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:09:05 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 10:09:05 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:09:05 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 10:09:05 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 10:09:05 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:09:05 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:05 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:05 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:09:05 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:09:05 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:09:05 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:09:05 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:05 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:05 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:05 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:09:05 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:09:05 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:09:05 INFO connection:71 - Opened connection [connectionId{localValue:96, serverValue:255098}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1098062, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:05 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:09:05 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:05 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:05 INFO connection:71 - Opened connection [connectionId{localValue:99, serverValue:2137618}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 INFO connection:71 - Opened connection [connectionId{localValue:97, serverValue:1865836}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=751656, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1142708, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:05 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:05 INFO connection:71 - Opened connection [connectionId{localValue:98, serverValue:1551401}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=915549, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}] -2016-05-03 10:09:05 INFO connection:71 - Opened connection [connectionId{localValue:100, serverValue:1865837}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:100, serverValue:1865837}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG command:56 - Command execution completed -2016-05-03 10:09:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:100, serverValue:1865837}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG command:56 - Command execution completed -2016-05-03 10:09:05 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:100, serverValue:1865837}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG command:56 - Command execution completed -2016-05-03 10:09:05 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:09:05 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:09:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:100, serverValue:1865837}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG command:56 - Command execution completed -2016-05-03 10:09:05 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:100, serverValue:1865837}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG command:56 - Command execution completed -2016-05-03 10:09:05 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:09:05 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:100, serverValue:1865837}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:05 DEBUG query:56 - Query completed -2016-05-03 10:09:05 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 10:09:05 DEBUG connection:56 - Closing connection connectionId{localValue:99, serverValue:2137618} -2016-05-03 10:09:05 DEBUG connection:56 - Closing connection connectionId{localValue:96, serverValue:255098} -2016-05-03 10:09:05 INFO connection:71 - Closed connection [connectionId{localValue:100, serverValue:1865837}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:09:05 DEBUG connection:56 - Closing connection connectionId{localValue:100, serverValue:1865837} -2016-05-03 10:09:05 DEBUG connection:56 - Closing connection connectionId{localValue:98, serverValue:1551401} -2016-05-03 10:09:05 DEBUG connection:56 - Closing connection connectionId{localValue:97, serverValue:1865836} -2016-05-03 10:09:05 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:09:05 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:09:05 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 10:09:05 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 10:09:05 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 10:09:05 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 10:09:05 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 10:09:05 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 10:09:05 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 10:09:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:09:07 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:09:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:09:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:09:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:09:07 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:09:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:09:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:07 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:09:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:09:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:09:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:09:07 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:09:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:09:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:09:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:09:07 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:09:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:09:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:09:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:09:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:09:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:09:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:09:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:09:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:09:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:07 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:09:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:09:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:09:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:09:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:09:07 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:09:07 DEBUG connection:56 - Closing connection connectionId{localValue:94, serverValue:2137617} -2016-05-03 10:09:07 DEBUG connection:56 - Closing connection connectionId{localValue:91, serverValue:255097} -2016-05-03 10:09:07 DEBUG connection:56 - Closing connection connectionId{localValue:93, serverValue:1551400} -2016-05-03 10:09:07 INFO connection:71 - Closed connection [connectionId{localValue:95, serverValue:1865835}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:09:07 DEBUG connection:56 - Closing connection connectionId{localValue:95, serverValue:1865835} -2016-05-03 10:09:07 DEBUG connection:56 - Closing connection connectionId{localValue:92, serverValue:1865834} -2016-05-03 10:09:07 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:09:07 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:09:07 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:09:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:09:07 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:09:07 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:09:07 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:09:07 INFO WorkspaceExplorerServiceImpl:142 - end time - 148 msc 0 sec -2016-05-03 10:09:07 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:09:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:09:09 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:09:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:09:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:09:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:09:09 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:09:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:09:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:09 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:09:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:09:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:09:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:09:09 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:09:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:09:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:09:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:09:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:09 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:09:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:09:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:09:09 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:09:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:09:09 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:09 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:09 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:09 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:09 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:09 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:09:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:09:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:09:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:09:09 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:09:09 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:09:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:09:09 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:09:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:09:09 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:09:09 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:09:09 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:09:09 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:09:09 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:09:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:09:09 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:09:09 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:09:09 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:09:09 INFO WorkspaceExplorerServiceImpl:142 - end time - 159 msc 0 sec -2016-05-03 10:09:09 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:09:18 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:18 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:09:18 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:09:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:18 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:18 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:18 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:18 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:18 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:09:18 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:09:18 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:18 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:18 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 10:09:18 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 10:09:18 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:09:18 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:09:18 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:09:18 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:09:18 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:09:18 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:18 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:18 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:09:18 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:09:18 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:09:18 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:09:18 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:18 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:18 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:18 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:09:18 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:09:18 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:09:18 INFO connection:71 - Opened connection [connectionId{localValue:101, serverValue:255100}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1080622, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:18 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:09:18 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:18 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:18 INFO connection:71 - Opened connection [connectionId{localValue:104, serverValue:2137622}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 INFO connection:71 - Opened connection [connectionId{localValue:102, serverValue:1865840}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=657884, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1236308, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:18 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:18 INFO connection:71 - Opened connection [connectionId{localValue:103, serverValue:1551405}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1483069, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:18 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 10:09:18 INFO connection:71 - Opened connection [connectionId{localValue:105, serverValue:1865841}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:105, serverValue:1865841}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 DEBUG command:56 - Command execution completed -2016-05-03 10:09:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:105, serverValue:1865841}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 DEBUG command:56 - Command execution completed -2016-05-03 10:09:18 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:105, serverValue:1865841}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 DEBUG command:56 - Command execution completed -2016-05-03 10:09:18 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:09:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:105, serverValue:1865841}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 DEBUG command:56 - Command execution completed -2016-05-03 10:09:18 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:105, serverValue:1865841}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 DEBUG command:56 - Command execution completed -2016-05-03 10:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:09:18 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:09:18 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:105, serverValue:1865841}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:09:18 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:09:18 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:09:18 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:18 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:18 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:18 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:18 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:18 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:18 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:18 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:18 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:09:18 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:09:18 INFO WorkspaceExplorerServiceImpl:188 - end time - 45 msc 0 sec -2016-05-03 10:09:18 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:09:18 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:09:18 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:09:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 10:09:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}] -2016-05-03 10:09:19 DEBUG query:56 - Query completed -2016-05-03 10:09:19 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 10:09:19 DEBUG connection:56 - Closing connection connectionId{localValue:104, serverValue:2137622} -2016-05-03 10:09:19 DEBUG connection:56 - Closing connection connectionId{localValue:101, serverValue:255100} -2016-05-03 10:09:19 INFO connection:71 - Closed connection [connectionId{localValue:105, serverValue:1865841}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:09:19 DEBUG connection:56 - Closing connection connectionId{localValue:105, serverValue:1865841} -2016-05-03 10:09:19 DEBUG connection:56 - Closing connection connectionId{localValue:103, serverValue:1551405} -2016-05-03 10:09:19 DEBUG connection:56 - Closing connection connectionId{localValue:102, serverValue:1865840} -2016-05-03 10:09:19 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:09:19 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:09:19 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:09:19 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 10:09:19 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:19 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:19 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:09:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:19 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:09:19 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:09:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:09:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:19 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:19 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:19 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:09:19 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:09:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:19 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:19 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 10:09:19 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:09:19 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:09:19 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:09:19 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:09:19 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:09:19 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:09:19 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:19 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:19 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:09:19 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:09:19 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:09:19 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:09:19 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:19 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:19 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:19 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:09:19 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:09:19 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:09:19 INFO connection:71 - Opened connection [connectionId{localValue:107, serverValue:1865842}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=941111, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:19 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:09:19 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:19 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:19 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:19 INFO connection:71 - Opened connection [connectionId{localValue:106, serverValue:255102}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=943816, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:19 INFO connection:71 - Opened connection [connectionId{localValue:109, serverValue:2137623}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=894431, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:19 INFO connection:71 - Opened connection [connectionId{localValue:108, serverValue:1551407}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:09:19 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:09:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:09:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:19 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1658823, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:19 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:09:19 INFO connection:71 - Opened connection [connectionId{localValue:110, serverValue:1865843}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:110, serverValue:1865843}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:19 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:09:19 DEBUG command:56 - Command execution completed -2016-05-03 10:09:19 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:19 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:19 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:110, serverValue:1865843}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:19 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:19 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:19 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:19 DEBUG command:56 - Command execution completed -2016-05-03 10:09:19 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:110, serverValue:1865843}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 DEBUG command:56 - Command execution completed -2016-05-03 10:09:19 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:09:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:110, serverValue:1865843}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 DEBUG command:56 - Command execution completed -2016-05-03 10:09:19 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:110, serverValue:1865843}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 DEBUG command:56 - Command execution completed -2016-05-03 10:09:19 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:110, serverValue:1865843}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:19 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:19 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:19 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:09:19 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:09:20 INFO WorkspaceExplorerServiceImpl:188 - end time - 41 msc 0 sec -2016-05-03 10:09:20 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:20 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:09:20 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:09:20 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:09:20 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:09:20 DEBUG query:56 - Query completed -2016-05-03 10:09:20 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 10:09:20 DEBUG connection:56 - Closing connection connectionId{localValue:109, serverValue:2137623} -2016-05-03 10:09:20 DEBUG connection:56 - Closing connection connectionId{localValue:106, serverValue:255102} -2016-05-03 10:09:20 DEBUG connection:56 - Closing connection connectionId{localValue:108, serverValue:1551407} -2016-05-03 10:09:20 INFO connection:71 - Closed connection [connectionId{localValue:110, serverValue:1865843}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:09:20 DEBUG connection:56 - Closing connection connectionId{localValue:110, serverValue:1865843} -2016-05-03 10:09:20 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:09:20 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:09:20 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:09:20 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 10:09:20 DEBUG connection:56 - Closing connection connectionId{localValue:107, serverValue:1865842} -2016-05-03 10:09:23 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:23 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:09:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:23 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:09:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:23 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:09:23 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:09:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:09:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:23 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:23 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:23 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:23 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 10:09:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:09:24 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:09:24 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:09:24 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 10:09:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:24 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:24 DEBUG ServiceEngine:193 - get() - start -2016-05-03 10:09:24 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:24 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:24 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:09:24 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:09:24 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:09:24 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:09:24 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 10:09:24 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:09:24 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:24 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:24 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:09:24 DEBUG Operation:173 - get(String) - start -2016-05-03 10:09:24 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:09:24 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:09:24 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:09:24 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:09:24 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:24 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:24 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:24 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:09:24 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:09:24 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:09:24 INFO connection:71 - Opened connection [connectionId{localValue:112, serverValue:1865846}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1053630, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:24 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:09:24 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:24 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:24 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:24 INFO connection:71 - Opened connection [connectionId{localValue:114, serverValue:2137624}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=603683, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:24 INFO connection:71 - Opened connection [connectionId{localValue:111, serverValue:255103}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1224689, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:24 INFO connection:71 - Opened connection [connectionId{localValue:113, serverValue:1551408}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=930111, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}] -2016-05-03 10:09:24 INFO connection:71 - Opened connection [connectionId{localValue:115, serverValue:1865847}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:115, serverValue:1865847}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG command:56 - Command execution completed -2016-05-03 10:09:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:115, serverValue:1865847}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG command:56 - Command execution completed -2016-05-03 10:09:24 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:115, serverValue:1865847}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG command:56 - Command execution completed -2016-05-03 10:09:24 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:09:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:115, serverValue:1865847}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG command:56 - Command execution completed -2016-05-03 10:09:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:115, serverValue:1865847}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG command:56 - Command execution completed -2016-05-03 10:09:24 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:09:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:115, serverValue:1865847}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG command:56 - Command execution completed -2016-05-03 10:09:24 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:115, serverValue:1865847}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG command:56 - Command execution completed -2016-05-03 10:09:24 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:09:24 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:115, serverValue:1865847}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG query:56 - Query completed -2016-05-03 10:09:24 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:09:24 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:09:24 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 10:09:24 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:115, serverValue:1865847}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG update:56 - Update completed -2016-05-03 10:09:24 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:115, serverValue:1865847}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG query:56 - Query completed -2016-05-03 10:09:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:24 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:24 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 10:09:24 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 10:09:24 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 10:09:24 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:24 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:24 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:09:24 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:09:24 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 10:09:24 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:09:24 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 10:09:24 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 10:09:24 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:09:24 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:24 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:24 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:09:24 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:09:24 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:09:24 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:09:24 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:24 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:24 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:24 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:09:24 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:09:24 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:09:24 INFO connection:71 - Opened connection [connectionId{localValue:116, serverValue:255104}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1054725, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:24 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:09:24 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:24 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:24 INFO connection:71 - Opened connection [connectionId{localValue:117, serverValue:1865848}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 INFO connection:71 - Opened connection [connectionId{localValue:119, serverValue:2137625}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=616771, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=932140, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:24 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:24 INFO connection:71 - Opened connection [connectionId{localValue:118, serverValue:1551409}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:24 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1279437, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:24 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:09:25 INFO connection:71 - Opened connection [connectionId{localValue:120, serverValue:1865849}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:120, serverValue:1865849}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:25 DEBUG command:56 - Command execution completed -2016-05-03 10:09:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:120, serverValue:1865849}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:25 DEBUG command:56 - Command execution completed -2016-05-03 10:09:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:120, serverValue:1865849}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:25 DEBUG command:56 - Command execution completed -2016-05-03 10:09:25 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:09:25 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:09:25 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:120, serverValue:1865849}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:25 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:09:25 DEBUG command:56 - Command execution completed -2016-05-03 10:09:25 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:120, serverValue:1865849}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:25 DEBUG command:56 - Command execution completed -2016-05-03 10:09:25 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:09:25 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:120, serverValue:1865849}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:25 DEBUG query:56 - Query completed -2016-05-03 10:09:25 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:09:25 DEBUG connection:56 - Closing connection connectionId{localValue:119, serverValue:2137625} -2016-05-03 10:09:25 DEBUG connection:56 - Closing connection connectionId{localValue:116, serverValue:255104} -2016-05-03 10:09:25 DEBUG connection:56 - Closing connection connectionId{localValue:118, serverValue:1551409} -2016-05-03 10:09:25 INFO connection:71 - Closed connection [connectionId{localValue:120, serverValue:1865849}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:09:25 DEBUG connection:56 - Closing connection connectionId{localValue:120, serverValue:1865849} -2016-05-03 10:09:25 DEBUG connection:56 - Closing connection connectionId{localValue:117, serverValue:1865848} -2016-05-03 10:09:25 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:09:25 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:09:25 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:09:25 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:09:25 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:09:25 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 10:09:25 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:09:25 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:09:25 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:09:33 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:33 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:09:33 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:09:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:09:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:33 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:09:33 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:09:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:09:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:33 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:33 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:33 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:09:33 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:09:33 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:33 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:33 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 10:09:33 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 10:09:33 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:09:33 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:09:33 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:09:33 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:09:33 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:09:33 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:33 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:33 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:09:33 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:09:33 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:09:33 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:09:33 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:33 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:33 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:33 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:09:33 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:09:33 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:09:33 INFO connection:71 - Opened connection [connectionId{localValue:121, serverValue:255106}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=998931, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:33 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:09:33 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:33 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:33 INFO connection:71 - Opened connection [connectionId{localValue:124, serverValue:2137628}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=680188, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:33 INFO connection:71 - Opened connection [connectionId{localValue:122, serverValue:1865851}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1086893, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:33 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:33 INFO connection:71 - Opened connection [connectionId{localValue:123, serverValue:1551411}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1193590, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:33 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 10:09:33 INFO connection:71 - Closed connection [connectionId{localValue:115, serverValue:1865847}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:09:33 DEBUG connection:56 - Closing connection connectionId{localValue:115, serverValue:1865847} -2016-05-03 10:09:33 DEBUG connection:56 - Closing connection connectionId{localValue:114, serverValue:2137624} -2016-05-03 10:09:33 DEBUG connection:56 - Closing connection connectionId{localValue:111, serverValue:255103} -2016-05-03 10:09:33 DEBUG connection:56 - Closing connection connectionId{localValue:113, serverValue:1551408} -2016-05-03 10:09:33 DEBUG connection:56 - Closing connection connectionId{localValue:112, serverValue:1865846} -2016-05-03 10:09:33 INFO connection:71 - Opened connection [connectionId{localValue:125, serverValue:1865852}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:125, serverValue:1865852}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:09:33 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:09:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:33 DEBUG command:56 - Command execution completed -2016-05-03 10:09:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:125, serverValue:1865852}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 DEBUG command:56 - Command execution completed -2016-05-03 10:09:33 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:125, serverValue:1865852}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:09:33 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:09:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:33 DEBUG command:56 - Command execution completed -2016-05-03 10:09:33 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:09:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:125, serverValue:1865852}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 DEBUG command:56 - Command execution completed -2016-05-03 10:09:33 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:125, serverValue:1865852}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 DEBUG command:56 - Command execution completed -2016-05-03 10:09:33 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:125, serverValue:1865852}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:33 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:33 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:33 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:09:33 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:09:33 INFO WorkspaceExplorerServiceImpl:188 - end time - 41 msc 0 sec -2016-05-03 10:09:33 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:09:33 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:09:33 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:09:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.7 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 10:09:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 10:09:34 DEBUG query:56 - Query completed -2016-05-03 10:09:34 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 10:09:34 DEBUG connection:56 - Closing connection connectionId{localValue:124, serverValue:2137628} -2016-05-03 10:09:34 INFO connection:71 - Closed connection [connectionId{localValue:125, serverValue:1865852}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:09:34 DEBUG connection:56 - Closing connection connectionId{localValue:125, serverValue:1865852} -2016-05-03 10:09:34 DEBUG connection:56 - Closing connection connectionId{localValue:121, serverValue:255106} -2016-05-03 10:09:34 DEBUG connection:56 - Closing connection connectionId{localValue:123, serverValue:1551411} -2016-05-03 10:09:34 DEBUG connection:56 - Closing connection connectionId{localValue:122, serverValue:1865851} -2016-05-03 10:09:34 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:09:34 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:09:34 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:09:34 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 10:09:34 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:34 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:09:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:34 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:34 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:34 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:34 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:09:34 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:09:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:34 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:34 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 10:09:34 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:09:34 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:09:34 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:09:34 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:09:34 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:09:34 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:09:34 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:34 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:34 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:09:34 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:09:34 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:09:34 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:09:34 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:34 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:34 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:34 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:09:34 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:09:34 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:09:34 INFO connection:71 - Opened connection [connectionId{localValue:127, serverValue:1865853}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1129496, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:34 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:09:34 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:34 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:34 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:34 INFO connection:71 - Opened connection [connectionId{localValue:129, serverValue:2137629}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=974998, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:34 INFO connection:71 - Opened connection [connectionId{localValue:126, serverValue:255109}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1384478, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:34 INFO connection:71 - Opened connection [connectionId{localValue:128, serverValue:1551412}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=917402, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:34 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.9 ms, state=CONNECTED}] -2016-05-03 10:09:34 INFO connection:71 - Opened connection [connectionId{localValue:130, serverValue:1865854}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:130, serverValue:1865854}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 DEBUG command:56 - Command execution completed -2016-05-03 10:09:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:130, serverValue:1865854}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 DEBUG command:56 - Command execution completed -2016-05-03 10:09:34 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:130, serverValue:1865854}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 DEBUG command:56 - Command execution completed -2016-05-03 10:09:34 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:09:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:130, serverValue:1865854}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 DEBUG command:56 - Command execution completed -2016-05-03 10:09:34 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:130, serverValue:1865854}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 DEBUG command:56 - Command execution completed -2016-05-03 10:09:34 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:130, serverValue:1865854}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:09:34 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:09:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:09:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:34 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:34 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:09:34 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:09:34 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:09:35 INFO WorkspaceExplorerServiceImpl:188 - end time - 42 msc 0 sec -2016-05-03 10:09:35 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:09:35 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:09:35 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:09:35 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:09:35 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:09:35 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:35 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:09:35 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:09:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:35 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:35 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:35 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:35 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:09:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:09:35 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:35 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:35 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:35 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:35 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:35 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:35 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:35 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:35 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:09:35 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 10:09:35 DEBUG query:56 - Query completed -2016-05-03 10:09:35 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 10:09:35 DEBUG connection:56 - Closing connection connectionId{localValue:129, serverValue:2137629} -2016-05-03 10:09:35 DEBUG connection:56 - Closing connection connectionId{localValue:126, serverValue:255109} -2016-05-03 10:09:35 INFO connection:71 - Closed connection [connectionId{localValue:130, serverValue:1865854}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:09:35 DEBUG connection:56 - Closing connection connectionId{localValue:130, serverValue:1865854} -2016-05-03 10:09:35 DEBUG connection:56 - Closing connection connectionId{localValue:128, serverValue:1551412} -2016-05-03 10:09:35 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:09:35 DEBUG connection:56 - Closing connection connectionId{localValue:127, serverValue:1865853} -2016-05-03 10:09:35 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:09:35 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:09:35 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 10:09:36 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:36 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:09:36 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:09:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:36 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:36 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:09:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:36 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:09:36 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:09:36 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:09:36 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:36 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:36 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:36 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:36 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:36 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:36 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:36 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:36 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:36 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 10:09:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:09:37 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:09:37 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:09:37 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=bbeb7383-9005-4d4b-a6d2-aacd8465d0bf, name=hcaf_filtered_2.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:56:16 CEST 2016] -2016-05-03 10:09:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:37 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:37 DEBUG ServiceEngine:193 - get() - start -2016-05-03 10:09:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:37 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:37 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 10:09:37 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:09:37 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:09:37 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:09:37 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 10:09:37 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:09:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:37 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:37 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:09:37 DEBUG Operation:173 - get(String) - start -2016-05-03 10:09:37 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:09:37 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:09:37 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:09:37 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:09:37 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:37 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:37 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:37 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:09:37 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:09:37 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:09:37 INFO connection:71 - Opened connection [connectionId{localValue:131, serverValue:255110}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 INFO connection:71 - Opened connection [connectionId{localValue:132, serverValue:1865855}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1339948, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:37 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:09:37 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1318839, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:37 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:37 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:37 INFO connection:71 - Opened connection [connectionId{localValue:134, serverValue:2137630}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1121340, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:37 INFO connection:71 - Opened connection [connectionId{localValue:133, serverValue:1551413}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1049238, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}] -2016-05-03 10:09:37 INFO connection:71 - Opened connection [connectionId{localValue:135, serverValue:1865856}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:135, serverValue:1865856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG command:56 - Command execution completed -2016-05-03 10:09:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:135, serverValue:1865856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG command:56 - Command execution completed -2016-05-03 10:09:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:135, serverValue:1865856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG command:56 - Command execution completed -2016-05-03 10:09:37 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:09:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:135, serverValue:1865856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG command:56 - Command execution completed -2016-05-03 10:09:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:135, serverValue:1865856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG command:56 - Command execution completed -2016-05-03 10:09:37 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:09:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:135, serverValue:1865856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG command:56 - Command execution completed -2016-05-03 10:09:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:135, serverValue:1865856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG command:56 - Command execution completed -2016-05-03 10:09:37 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:09:37 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:135, serverValue:1865856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG query:56 - Query completed -2016-05-03 10:09:37 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 10:09:37 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:09:37 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 10:09:37 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:135, serverValue:1865856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG update:56 - Update completed -2016-05-03 10:09:37 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:135, serverValue:1865856}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG query:56 - Query completed -2016-05-03 10:09:37 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:09:37 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:09:37 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:09:37 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:09:37 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:09:37 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:09:37 INFO JCRServlets:267 - Servlet getItemById bbeb7383-9005-4d4b-a6d2-aacd8465d0bf -2016-05-03 10:09:37 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_2.csv -2016-05-03 10:09:37 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 10:09:37 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 10:09:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:37 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:37 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_2.csv -2016-05-03 10:09:37 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:09:37 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 10:09:37 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:09:37 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 10:09:37 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 10:09:37 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:09:37 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:09:37 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:09:37 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:09:37 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:09:37 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:09:37 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:09:37 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:37 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:37 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:37 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@a8892fed, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@4e5fe052, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@78804fb0, socketFactory=javax.net.DefaultSocketFactory@2fefe99e, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:09:37 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:09:37 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:09:37 INFO connection:71 - Opened connection [connectionId{localValue:136, serverValue:255111}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=760651, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:37 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:09:37 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:37 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:09:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:37 INFO connection:71 - Opened connection [connectionId{localValue:139, serverValue:2137632}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=604292, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:37 INFO connection:71 - Opened connection [connectionId{localValue:137, serverValue:1865857}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1260333, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:37 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:09:37 INFO connection:71 - Opened connection [connectionId{localValue:138, serverValue:1551414}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1051642, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:09:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.6 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.1 ms, state=CONNECTED}] -2016-05-03 10:09:37 INFO connection:71 - Opened connection [connectionId{localValue:140, serverValue:1865858}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:140, serverValue:1865858}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG command:56 - Command execution completed -2016-05-03 10:09:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:140, serverValue:1865858}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG command:56 - Command execution completed -2016-05-03 10:09:37 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:140, serverValue:1865858}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG command:56 - Command execution completed -2016-05-03 10:09:37 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:09:37 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:09:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:140, serverValue:1865858}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG command:56 - Command execution completed -2016-05-03 10:09:37 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:140, serverValue:1865858}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG command:56 - Command execution completed -2016-05-03 10:09:37 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:09:37 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:140, serverValue:1865858}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG query:56 - Query completed -2016-05-03 10:09:37 INFO MongoIO:186 - object found hcaf_filtered_2.csv -2016-05-03 10:09:37 DEBUG connection:56 - Closing connection connectionId{localValue:139, serverValue:2137632} -2016-05-03 10:09:37 DEBUG connection:56 - Closing connection connectionId{localValue:136, serverValue:255111} -2016-05-03 10:09:37 INFO connection:71 - Closed connection [connectionId{localValue:140, serverValue:1865858}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:09:37 DEBUG connection:56 - Closing connection connectionId{localValue:140, serverValue:1865858} -2016-05-03 10:09:37 DEBUG connection:56 - Closing connection connectionId{localValue:138, serverValue:1551414} -2016-05-03 10:09:37 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:09:37 DEBUG connection:56 - Closing connection connectionId{localValue:137, serverValue:1865857} -2016-05-03 10:09:37 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_2.csv -2016-05-03 10:09:37 INFO Operation:55 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 10:09:37 INFO Operation:57 - URL generated: smp://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 10:09:37 DEBUG Operation:87 - translating: http://data-d.d4science.org/Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 10:09:37 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 10:09:37 DEBUG Operation:93 - get params: http://data-d.d4science.org/ Sa5aWbLjrmhs/MRotkLvTZSNltA/kMubGmbP5+HKCzc= -2016-05-03 10:09:37 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 10:09:37 INFO Operation:65 - URL translated: http://data-d.d4science.org/U2E1YVdiTGpybWhzL01Sb3RrTHZUWlNObHRBL2tNdWJHbWJQNStIS0N6Yz0 -2016-05-03 10:09:37 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:09:37 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}] -2016-05-03 10:09:38 DEBUG connection:56 - Closing connection connectionId{localValue:134, serverValue:2137630} -2016-05-03 10:09:38 DEBUG connection:56 - Closing connection connectionId{localValue:133, serverValue:1551413} -2016-05-03 10:09:38 INFO connection:71 - Closed connection [connectionId{localValue:135, serverValue:1865856}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:09:38 DEBUG connection:56 - Closing connection connectionId{localValue:131, serverValue:255110} -2016-05-03 10:09:38 DEBUG connection:56 - Closing connection connectionId{localValue:135, serverValue:1865856} -2016-05-03 10:09:38 DEBUG connection:56 - Closing connection connectionId{localValue:132, serverValue:1865855} -2016-05-03 10:10:20 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:10:20 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:10:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:10:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:10:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:10:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:10:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:10:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:10:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:10:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:10:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:10:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:10:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:10:40 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:10:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:10:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:10:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:10:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:10:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:10:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:10:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:10:40 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:10:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:10:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:10:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:10:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:10:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:10:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:10:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:10:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:10:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:10:40 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:10:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:10:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:10:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:10:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:10:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:10:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:10:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:10:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:10:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:10:40 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:10:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:10:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:10:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:10:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:10:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:10:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:10:40 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:10:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:10:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:10:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:10:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:10:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:10:40 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:10:40 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:10:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:10:40 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:10:40 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:10:41 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:10:41 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:10:41 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:10:41 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:10:41 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:10:41 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:10:41 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:10:41 INFO WorkspaceExplorerServiceImpl:142 - end time - 613 msc 0 sec -2016-05-03 10:10:41 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:11:29 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 10:11:29 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 10:11:29 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 10:11:29 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:11:29 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:11:29 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:11:29 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:11:29 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@6ccf0e08 -2016-05-03 10:11:29 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:11:29 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:11:29 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:11:29 DEBUG TemplateModel:83 - 2016-05-03 10:11:29, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:11:29 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:11:29 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 10:11:31 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:11:31 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:11:31 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:11:31 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:11:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:11:31 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:11:31 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:11:31 DEBUG TemplateModel:83 - 2016-05-03 10:11:31, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:11:31 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:11:31 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:11:31 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 127 ms -2016-05-03 10:11:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 10:11:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 10:11:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 10:11:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 10:11:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 10:11:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 10:11:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 10:11:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 10:11:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 10:11:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 10:11:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 10:11:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 10:11:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 10:11:31 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 10:11:31 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 10:11:31 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:11:31 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:11:31 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@4c83439f -2016-05-03 10:11:31 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@38e17f69 -2016-05-03 10:11:31 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@7d6885ac -2016-05-03 10:11:31 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@4a664d41 -2016-05-03 10:11:31 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 120 ms -2016-05-03 10:11:31 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 10:11:31 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 10:11:31 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 10:11:31 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 10:11:31 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 10:11:31 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:11:31 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:11:31 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 10:11:31 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 24 ms -2016-05-03 10:11:31 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 10:11:31 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:11:31 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 10:11:31 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:11:32 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:11:32 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:11:32 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:11:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:11:32 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:11:32 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:11:32 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 10:11:32 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:32 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:32 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 10:11:32 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 10:11:32 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 10:11:32 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 10:11:32 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 10:11:32 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 10:11:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:11:32 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:11:32 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 10:11:32 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-03 10:11:32 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 10:11:32 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:11:32 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:32 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:32 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 10:11:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:32 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 10:11:32 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:11:32 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:11:32 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 10:11:32 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:11:32 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:11:32 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 10:11:32 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 10:11:32 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:32 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:32 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:11:32 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:11:32 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:11:32 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 10:11:32 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:11:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 10:11:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:11:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:11:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:33 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:11:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 10:11:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:11:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:11:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:33 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:11:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 10:11:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:11:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:11:33 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:33 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:33 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:33 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:33 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:33 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:33 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:11:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 10:11:33 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:11:33 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:11:34 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:11:34 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:11:34 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:11:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:11:34 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:11:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:11:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:34 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 10:11:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:11:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:11:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:11:34 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:11:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:11:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:34 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 10:11:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:11:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:11:34 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 10:11:34 INFO WorkspaceExplorerServiceImpl:188 - end time - 154 msc 0 sec -2016-05-03 10:11:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:11:34 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:11:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:11:34 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:34 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:34 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:34 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:34 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:34 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:34 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 10:11:34 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 10:11:34 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:11:34 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:11:34 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 10:11:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:11:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:11:34 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:11:34 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:11:34 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-05-03 10:11:34 INFO WorkspaceExplorerServiceImpl:188 - end time - 123 msc 0 sec -2016-05-03 10:11:34 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:11:35 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:11:35 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 10:11:35 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 10:11:35 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 10:11:35 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 10:11:35 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 10:11:35 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 10:11:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:11:35 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 10:11:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:11:35 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:11:35 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:11:35 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 10:11:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:11:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:11:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:11:35 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:11:35 INFO WorkspaceExplorerServiceImpl:188 - end time - 347 msc 0 sec -2016-05-03 10:11:38 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:11:38 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:11:38 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:11:38 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 10:11:38 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:11:38 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:11:39 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 10:11:39 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 10:11:39 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 10:11:39 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 10:11:39 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 10:11:39 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 10:11:39 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:11:39 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 10:11:39 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-03 10:11:39 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-03 10:11:39 DEBUG WPS2SM:204 - Schema: null -2016-05-03 10:11:39 DEBUG WPS2SM:205 - Encoding: null -2016-05-03 10:11:39 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:11:39 DEBUG WPS2SM:227 - Machter find: true -2016-05-03 10:11:39 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 10:11:39 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-03 10:11:39 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-03 10:11:39 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-03 10:11:39 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-03 10:11:39 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 10:11:39 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 10:11:39 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:11:39 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-03 10:11:39 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 10:11:39 DEBUG WPS2SM:92 - WPS type: -2016-05-03 10:11:39 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 10:11:39 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 10:11:39 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:11:39 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 10:11:39 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 10:11:39 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 10:11:39 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 10:11:39 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 10:11:39 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 10:11:39 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 10:11:39 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 10:11:39 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:11:39 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 10:11:39 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 10:11:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:11:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:11:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:11:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:11:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:11:39 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:11:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:11:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:39 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:11:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:11:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:11:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:11:39 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:11:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:11:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:11:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:11:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:11:39 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:11:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:11:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:11:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:11:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:11:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:11:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:11:39 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:39 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:39 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:39 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:39 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:39 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:11:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:11:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:11:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:11:39 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:11:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:11:39 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:11:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:11:39 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:11:39 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:11:39 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:11:39 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:11:39 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:11:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:11:39 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:11:39 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:11:39 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:11:39 INFO WorkspaceExplorerServiceImpl:142 - end time - 205 msc 0 sec -2016-05-03 10:11:39 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:11:47 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:11:47 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:11:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:11:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:11:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:11:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:47 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:11:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:11:47 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:11:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:11:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:48 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:11:48 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:11:48 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:11:48 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:11:48 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:11:48 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:11:48 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 10:11:48 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 10:11:48 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:11:48 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:11:48 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:11:48 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:11:48 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:11:48 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:11:48 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:11:48 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:11:48 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:11:48 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:11:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:11:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:11:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:11:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:11:48 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:11:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:11:48 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:48 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:48 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:48 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:48 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:48 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:48 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:11:48 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:11:48 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:48 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:11:48 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:11:48 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:11:48 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:48 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:48 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@27111573, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@35e51d4b, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@54e64291, socketFactory=javax.net.DefaultSocketFactory@591c6922, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:11:48 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:11:48 INFO WorkspaceExplorerServiceImpl:188 - end time - 55 msc 0 sec -2016-05-03 10:11:48 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:11:48 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:11:48 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:11:48 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:11:48 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:255133}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1462962, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:48 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:1865881}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:11:48 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:48 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:48 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1554558, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:48 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:48 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2137655}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=931323, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:48 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1551438}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1234844, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 10:11:48 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1865882}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865882}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 DEBUG command:56 - Command execution completed -2016-05-03 10:11:48 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865882}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 DEBUG command:56 - Command execution completed -2016-05-03 10:11:48 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865882}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 DEBUG command:56 - Command execution completed -2016-05-03 10:11:48 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:11:48 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865882}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 DEBUG command:56 - Command execution completed -2016-05-03 10:11:48 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865882}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 DEBUG command:56 - Command execution completed -2016-05-03 10:11:48 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1865882}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:11:48 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.9 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}] -2016-05-03 10:11:49 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:11:49 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:11:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:11:49 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:11:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:11:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:49 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:11:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:11:49 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:11:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:11:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:49 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:11:49 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:11:49 DEBUG query:56 - Query completed -2016-05-03 10:11:49 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 10:11:49 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:255133} -2016-05-03 10:11:49 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1865882}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:11:49 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1551438} -2016-05-03 10:11:49 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1865882} -2016-05-03 10:11:49 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2137655} -2016-05-03 10:11:49 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:1865881} -2016-05-03 10:11:49 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:11:49 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:11:49 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:11:49 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 10:11:49 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:11:49 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:11:49 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:11:49 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:11:49 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 10:11:49 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:11:49 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:11:49 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:11:49 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:11:49 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:11:49 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:11:49 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:11:49 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:11:49 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:11:49 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:11:49 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:11:49 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:11:49 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:49 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:49 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:49 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@27111573, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@35e51d4b, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@54e64291, socketFactory=javax.net.DefaultSocketFactory@591c6922, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:11:49 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:11:49 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:11:49 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:255134}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1305407, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:49 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:11:49 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:49 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:49 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1865883}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:49 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1208106, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:49 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:49 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2137656}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=992218, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:11:49 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:11:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:11:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:11:49 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:11:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:49 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:11:49 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1551439}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:49 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:49 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:49 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:49 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:49 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:49 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:49 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:49 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1325121, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:11:49 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1865884}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865884}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 DEBUG command:56 - Command execution completed -2016-05-03 10:11:49 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:11:49 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865884}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:11:49 DEBUG command:56 - Command execution completed -2016-05-03 10:11:49 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865884}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 DEBUG command:56 - Command execution completed -2016-05-03 10:11:49 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:11:49 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865884}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 DEBUG command:56 - Command execution completed -2016-05-03 10:11:49 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865884}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 DEBUG command:56 - Command execution completed -2016-05-03 10:11:49 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1865884}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:11:49 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:11:49 INFO WorkspaceExplorerServiceImpl:188 - end time - 47 msc 0 sec -2016-05-03 10:11:49 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:11:49 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:11:49 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:11:50 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:11:50 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:11:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:11:50 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:11:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:11:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:50 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:11:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:11:50 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:11:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:11:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:50 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:11:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:11:50 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:11:50 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:11:50 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:50 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:50 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:50 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:50 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:50 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:50 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:11:50 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:11:50 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:11:50 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 10:11:50 DEBUG query:56 - Query completed -2016-05-03 10:11:50 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 10:11:50 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2137656} -2016-05-03 10:11:50 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:255134} -2016-05-03 10:11:50 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1551439} -2016-05-03 10:11:50 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1865884}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:11:50 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1865884} -2016-05-03 10:11:50 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:11:50 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1865883} -2016-05-03 10:11:50 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:11:50 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:11:50 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 10:11:50 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:11:50 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:11:50 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:11:50 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:11:51 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:11:51 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:11:51 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:11:51 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 10:11:51 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:51 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:51 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:51 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:51 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:51 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:51 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:11:51 DEBUG ServiceEngine:193 - get() - start -2016-05-03 10:11:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:11:51 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:11:51 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:11:51 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:11:51 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:11:51 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:11:51 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 10:11:51 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:11:51 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:11:51 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:11:51 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:11:51 DEBUG Operation:173 - get(String) - start -2016-05-03 10:11:51 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:11:51 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:11:51 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:11:51 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:11:51 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:51 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:51 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:51 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@27111573, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@35e51d4b, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@54e64291, socketFactory=javax.net.DefaultSocketFactory@591c6922, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:11:51 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:11:51 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:11:52 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:255136}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1163899, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:52 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:11:52 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:52 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:52 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1865885}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1324618, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:52 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:52 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2137657}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=952392, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:52 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1551441}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1665139, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:11:52 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1865886}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865886}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG command:56 - Command execution completed -2016-05-03 10:11:52 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865886}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG command:56 - Command execution completed -2016-05-03 10:11:52 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865886}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG command:56 - Command execution completed -2016-05-03 10:11:52 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:11:52 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865886}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG command:56 - Command execution completed -2016-05-03 10:11:52 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865886}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG command:56 - Command execution completed -2016-05-03 10:11:52 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:11:52 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865886}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG command:56 - Command execution completed -2016-05-03 10:11:52 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865886}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG command:56 - Command execution completed -2016-05-03 10:11:52 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:11:52 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865886}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG query:56 - Query completed -2016-05-03 10:11:52 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:11:52 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:11:52 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 10:11:52 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865886}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG update:56 - Update completed -2016-05-03 10:11:52 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1865886}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG query:56 - Query completed -2016-05-03 10:11:52 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:11:52 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:11:52 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:11:52 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:11:52 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:11:52 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:11:52 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:11:52 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 10:11:52 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 10:11:52 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 10:11:52 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:11:52 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:11:52 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:11:52 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:11:52 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 10:11:52 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:11:52 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 10:11:52 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 10:11:52 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:11:52 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:11:52 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:11:52 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:11:52 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:11:52 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:11:52 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:11:52 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:52 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:52 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:52 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@27111573, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@35e51d4b, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@54e64291, socketFactory=javax.net.DefaultSocketFactory@591c6922, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:11:52 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:11:52 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:11:52 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:255137}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1320637, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:52 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:11:52 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:52 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:11:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:52 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2137658}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=977524, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:52 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1865888}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1753442, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:52 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:11:52 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1551442}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=2134903, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:11:52 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=2.1 ms, state=CONNECTED}] -2016-05-03 10:11:52 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1865889}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865889}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG command:56 - Command execution completed -2016-05-03 10:11:52 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865889}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG command:56 - Command execution completed -2016-05-03 10:11:52 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865889}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG command:56 - Command execution completed -2016-05-03 10:11:52 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:11:52 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:11:52 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865889}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG command:56 - Command execution completed -2016-05-03 10:11:52 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865889}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG command:56 - Command execution completed -2016-05-03 10:11:52 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:11:52 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1865889}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:11:52 DEBUG query:56 - Query completed -2016-05-03 10:11:52 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:11:52 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2137658} -2016-05-03 10:11:52 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:255137} -2016-05-03 10:11:52 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1551442} -2016-05-03 10:11:52 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1865889}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:11:52 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1865889} -2016-05-03 10:11:52 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:11:52 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1865888} -2016-05-03 10:11:52 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:11:52 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:11:52 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:11:52 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:11:52 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 10:11:52 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:11:52 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:11:52 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:12:02 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:12:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:12:02 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:12:02 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:12:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:12:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:12:02 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:12:02 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:12:12 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:12:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:12:12 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:12:12 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:12:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:12:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}] -2016-05-03 10:12:12 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:12:12 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:12:22 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:12:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:12:22 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:12:22 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:12:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:12:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:12:22 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:12:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:12:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:12:24 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:12:32 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:12:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:12:32 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:12:32 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:12:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:12:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:12:32 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:12:32 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:13:03 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 10:13:03 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 10:13:03 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 10:13:03 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:13:03 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:13:03 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:13:03 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:13:03 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@624a38fd -2016-05-03 10:13:03 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:13:03 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:13:03 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:13:03 DEBUG TemplateModel:83 - 2016-05-03 10:13:03, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:13:03 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:13:03 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 10:13:05 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:13:05 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:13:05 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:13:05 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:13:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:13:05 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:13:05 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:13:05 DEBUG TemplateModel:83 - 2016-05-03 10:13:05, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:13:05 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:13:05 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:13:05 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 133 ms -2016-05-03 10:13:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 10:13:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 10:13:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 10:13:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 10:13:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 10:13:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 10:13:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 10:13:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 10:13:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 10:13:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 10:13:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 10:13:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 10:13:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 10:13:05 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 10:13:05 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 10:13:05 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:13:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:13:05 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@25095e4a -2016-05-03 10:13:05 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@6d6974b9 -2016-05-03 10:13:05 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@3a533cf4 -2016-05-03 10:13:05 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@4d8d3512 -2016-05-03 10:13:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 90 ms -2016-05-03 10:13:05 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 10:13:05 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 10:13:05 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 10:13:05 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 10:13:05 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 10:13:05 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:13:05 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:13:05 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 10:13:05 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 18 ms -2016-05-03 10:13:05 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 10:13:05 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:13:05 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 10:13:05 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:13:06 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:13:06 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:13:06 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:13:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:13:06 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:13:06 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:13:06 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 10:13:06 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:06 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:06 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 10:13:06 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 10:13:06 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 10:13:06 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 10:13:06 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 10:13:06 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 10:13:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 35 -2016-05-03 10:13:06 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:13:06 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 10:13:06 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 21 ms -2016-05-03 10:13:06 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 10:13:06 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:13:06 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:06 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:06 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 10:13:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:06 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 10:13:06 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:13:06 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 10:13:06 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:13:06 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:13:06 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 10:13:06 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:13:06 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:13:06 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 10:13:06 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 10:13:06 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:06 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:13:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:13:06 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:13:06 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 10:13:06 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:13:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:13:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:07 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:13:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 10:13:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:13:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:13:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:07 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:13:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 10:13:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:13:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:13:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:07 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:13:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 10:13:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:13:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:13:07 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:13:07 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:13:07 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:13:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:13:07 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:13:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:13:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:07 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 10:13:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:13:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:13:07 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:13:07 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:13:07 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:07 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:07 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:07 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:07 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:07 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:07 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:13:07 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 10:13:07 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:13:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:13:08 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 10:13:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:13:08 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:13:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:13:08 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:08 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:08 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:08 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:08 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:08 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:08 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 10:13:08 INFO WorkspaceExplorerServiceImpl:188 - end time - 201 msc 0 sec -2016-05-03 10:13:08 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 10:13:08 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:13:08 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:13:08 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 10:13:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 10:13:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:13:08 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:13:08 INFO WorkspaceExplorerServiceImpl:188 - end time - 125 msc 0 sec -2016-05-03 10:13:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:13:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 26 ms -2016-05-03 10:13:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 10:13:08 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:13:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 10:13:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 18 ms -2016-05-03 10:13:08 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 10:13:08 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 10:13:08 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 10:13:08 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 10:13:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 10:13:08 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 10:13:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 10:13:08 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:13:08 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:13:08 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 19 ms -2016-05-03 10:13:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 10:13:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 10:13:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 34 -2016-05-03 10:13:08 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:13:08 INFO WorkspaceExplorerServiceImpl:188 - end time - 436 msc 0 sec -2016-05-03 10:13:13 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:13:13 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:13:13 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:13:13 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 10:13:13 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:13:13 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:13:13 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 10:13:13 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 10:13:13 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 10:13:13 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 10:13:13 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 10:13:13 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 10:13:13 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:13:13 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 10:13:13 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-03 10:13:13 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-03 10:13:13 DEBUG WPS2SM:204 - Schema: null -2016-05-03 10:13:13 DEBUG WPS2SM:205 - Encoding: null -2016-05-03 10:13:13 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:13:13 DEBUG WPS2SM:227 - Machter find: true -2016-05-03 10:13:13 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 10:13:13 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-03 10:13:13 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-03 10:13:13 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-03 10:13:13 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-03 10:13:13 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 10:13:13 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 10:13:13 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:13:13 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-03 10:13:13 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 10:13:13 DEBUG WPS2SM:92 - WPS type: -2016-05-03 10:13:13 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 10:13:13 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 10:13:13 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:13:13 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 10:13:13 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 10:13:13 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 10:13:13 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 10:13:13 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 10:13:13 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 10:13:13 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 10:13:13 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 10:13:13 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:13:13 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 10:13:13 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 10:13:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:13:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:13:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:13:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:13:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:14 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:13:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:13:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:13:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:14 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:13:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:13:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:13:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:13:14 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:13:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:13:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:13:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:13:14 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:13:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:13:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:13:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:13:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:13:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:13:14 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:14 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:14 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:14 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:14 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:14 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:13:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:13:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:13:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:13:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:13:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:13:14 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:13:14 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:13:14 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:13:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:13:14 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:13:14 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:13:14 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:13:14 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:13:14 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:13:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:13:14 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:13:14 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:13:14 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:13:14 INFO WorkspaceExplorerServiceImpl:142 - end time - 192 msc 0 sec -2016-05-03 10:13:14 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:13:22 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:13:22 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:13:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:13:22 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:13:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:13:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:22 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:13:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:13:22 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:13:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:13:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:22 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:13:22 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:13:22 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:13:22 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:13:22 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:13:22 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:13:22 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 10:13:22 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 10:13:22 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:13:22 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:13:22 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:13:22 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:13:22 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:13:22 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:13:22 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:13:22 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:13:22 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:13:22 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:13:22 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:13:22 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:13:22 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:13:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:13:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:13:22 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:13:22 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:13:22 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:22 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:22 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:22 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:22 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:22 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:22 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:13:22 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:22 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:13:22 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:22 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@73e042d4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2e94826b, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@3aed8ac5, socketFactory=javax.net.DefaultSocketFactory@4131a9bc, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:13:22 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:13:22 INFO JCRServlets:697 - Calling Servlet get Parents By Id 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:13:22 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:13:22 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:13:22 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:13:22 INFO WorkspaceExplorerServiceImpl:188 - end time - 69 msc 0 sec -2016-05-03 10:13:22 INFO connection:71 - Opened connection [connectionId{localValue:1, serverValue:1865906}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:22 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:13:22 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:13:22 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1657866, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:22 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:13:22 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:22 INFO connection:71 - Opened connection [connectionId{localValue:2, serverValue:255153}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:13:22 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:13:22 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1675498, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:22 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:22 INFO connection:71 - Opened connection [connectionId{localValue:4, serverValue:2137674}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:13:22 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:13:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1843304, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:22 INFO connection:71 - Opened connection [connectionId{localValue:3, serverValue:1551458}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:13:22 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:13:22 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1319636, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:22 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:13:22 INFO connection:71 - Opened connection [connectionId{localValue:5, serverValue:1865907}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:22 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865907}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:22 DEBUG command:56 - Command execution completed -2016-05-03 10:13:22 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865907}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:22 DEBUG command:56 - Command execution completed -2016-05-03 10:13:22 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865907}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:22 DEBUG command:56 - Command execution completed -2016-05-03 10:13:22 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:13:22 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865907}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:22 DEBUG command:56 - Command execution completed -2016-05-03 10:13:22 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:5, serverValue:1865907}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:22 DEBUG command:56 - Command execution completed -2016-05-03 10:13:22 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:5, serverValue:1865907}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 DEBUG query:56 - Query completed -2016-05-03 10:13:23 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 10 objects -2016-05-03 10:13:23 DEBUG connection:56 - Closing connection connectionId{localValue:4, serverValue:2137674} -2016-05-03 10:13:23 DEBUG connection:56 - Closing connection connectionId{localValue:3, serverValue:1551458} -2016-05-03 10:13:23 DEBUG connection:56 - Closing connection connectionId{localValue:2, serverValue:255153} -2016-05-03 10:13:23 INFO connection:71 - Closed connection [connectionId{localValue:5, serverValue:1865907}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:13:23 DEBUG connection:56 - Closing connection connectionId{localValue:5, serverValue:1865907} -2016-05-03 10:13:23 DEBUG connection:56 - Closing connection connectionId{localValue:1, serverValue:1865906} -2016-05-03 10:13:23 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:13:23 INFO DefaultMongoClient:1329 - getFolderTotalVolume 4033313 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:13:23 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest -2016-05-03 10:13:23 INFO WorkspaceExplorerServiceImpl:503 - returning size: 4033313 -2016-05-03 10:13:23 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:13:23 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:13:23 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:13:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:23 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:13:23 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:13:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:23 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:13:23 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:13:23 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:13:23 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:13:23 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:13:23 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:13:23 DEBUG ServiceEngine:62 - path(String) - name: Bioclimate_Hcaf -2016-05-03 10:13:23 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:13:23 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:13:23 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:13:23 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:13:23 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:13:23 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:13:23 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:13:23 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:13:23 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:13:23 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:13:23 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:13:23 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:13:23 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:23 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:23 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:23 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@73e042d4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2e94826b, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@3aed8ac5, socketFactory=javax.net.DefaultSocketFactory@4131a9bc, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:13:23 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:13:23 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:13:23 INFO connection:71 - Opened connection [connectionId{localValue:6, serverValue:255154}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 INFO connection:71 - Opened connection [connectionId{localValue:7, serverValue:1865908}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1434920, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:23 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:13:23 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:23 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=2874748, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:23 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:23 INFO connection:71 - Opened connection [connectionId{localValue:9, serverValue:2137675}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1476636, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:13:23 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:13:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:23 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:13:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:23 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:13:23 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:23 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:23 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:23 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:23 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:23 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:23 INFO connection:71 - Opened connection [connectionId{localValue:8, serverValue:1551459}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1750576, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:23 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.9 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.8 ms, state=CONNECTED}] -2016-05-03 10:13:23 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:13:23 INFO JCRServlets:267 - Servlet getItemById 093db539-e088-4ba0-9c34-25b3e93ebe40 -2016-05-03 10:13:23 INFO connection:71 - Opened connection [connectionId{localValue:10, serverValue:1865909}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 DEBUG command:56 - Command execution completed -2016-05-03 10:13:23 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 DEBUG command:56 - Command execution completed -2016-05-03 10:13:23 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 DEBUG command:56 - Command execution completed -2016-05-03 10:13:23 DEBUG DefaultMongoClient:1324 - getFolderTotalVolume for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:13:23 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 DEBUG command:56 - Command execution completed -2016-05-03 10:13:23 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:10, serverValue:1865909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 DEBUG command:56 - Command execution completed -2016-05-03 10:13:23 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:10, serverValue:1865909}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:23 INFO JCRServlets:142 - Calling servlet getChildrenById 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:13:23 INFO JCRServlets:697 - Calling Servlet get Parents By Id 093db539-e088-4ba0-9c34-25b3e93ebe40 by giancarlo.panichi -2016-05-03 10:13:23 INFO WorkspaceExplorerServiceImpl:188 - end time - 46 msc 0 sec -2016-05-03 10:13:23 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:13:23 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=093db539-e088-4ba0-9c34-25b3e93ebe40, name=Bioclimate_Hcaf, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:13:23 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:13:23 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=6543184f-3c92-4982-88ed-1287d525eca2, name=StatisticalTest, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=null] -2016-05-03 10:13:23 DEBUG ItemBuilder:361 - breadcrumb returning: Item [id=efc48ebb-f682-4636-9a98-1cbee166e336, name=Home, type=FOLDER, path=null, children=[], owner=null, isFolder=true, isSpecialFolder=false, isSharedFolder=false, isRoot=true, creationDate=null] -2016-05-03 10:13:24 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:13:24 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:13:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:13:24 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:13:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:13:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:24 INFO WorkspaceExplorerServiceImpl:518 - get MimeType By ItemId 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:13:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:13:24 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:13:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:13:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:24 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:13:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:13:24 DEBUG ASLSession:458 - Getting security token: null in thread 32 -2016-05-03 10:13:24 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 32 -2016-05-03 10:13:24 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:24 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:24 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:24 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:24 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:24 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:24 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:13:24 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:13:24 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:13:24 INFO WorkspaceExplorerServiceImpl:503 - returning size: 1951243 -2016-05-03 10:13:24 DEBUG query:56 - Query completed -2016-05-03 10:13:24 INFO DefaultMongoClient:1372 - retrieveRemoteFileObject found 2 objects -2016-05-03 10:13:24 DEBUG connection:56 - Closing connection connectionId{localValue:9, serverValue:2137675} -2016-05-03 10:13:24 DEBUG connection:56 - Closing connection connectionId{localValue:6, serverValue:255154} -2016-05-03 10:13:24 INFO connection:71 - Closed connection [connectionId{localValue:10, serverValue:1865909}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:13:24 DEBUG connection:56 - Closing connection connectionId{localValue:8, serverValue:1551459} -2016-05-03 10:13:24 DEBUG connection:56 - Closing connection connectionId{localValue:10, serverValue:1865909} -2016-05-03 10:13:24 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:13:24 DEBUG connection:56 - Closing connection connectionId{localValue:7, serverValue:1865908} -2016-05-03 10:13:24 INFO DefaultMongoClient:1329 - getFolderTotalVolume 3902486 for folder /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:13:24 DEBUG GetSize:35 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf -2016-05-03 10:13:24 INFO WorkspaceExplorerServiceImpl:503 - returning size: 3902486 -2016-05-03 10:13:25 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 31 -2016-05-03 10:13:25 DEBUG ASLSession:458 - Getting security token: null in thread 31 -2016-05-03 10:13:25 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:13:25 DEBUG DataMinerManagerServiceImpl:369 - retrieveTableInformation(): Item [id=5e79b37f-a9d2-407f-9bfa-9add63f5d9d9, name=hcaf_filtered_1.csv, type=EXTERNAL_FILE, path=/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv, children=[], owner=giancarlo.panichi, isFolder=false, isSpecialFolder=false, isSharedFolder=false, isRoot=false, creationDate=Mon May 02 14:55:49 CEST 2016] -2016-05-03 10:13:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:25 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:13:25 DEBUG ServiceEngine:193 - get() - start -2016-05-03 10:13:25 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:13:25 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:13:25 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:13:25 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:13:25 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:13:25 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:13:25 INFO OperationFactory:39 - getOperation(String) - start download -2016-05-03 10:13:25 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:13:25 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:13:25 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:13:25 DEBUG Download:57 - DOWNLOAD /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv in bucket: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:13:25 DEBUG Operation:173 - get(String) - start -2016-05-03 10:13:25 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:13:25 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:13:25 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:13:25 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:13:25 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:25 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:25 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:25 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@73e042d4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2e94826b, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@3aed8ac5, socketFactory=javax.net.DefaultSocketFactory@4131a9bc, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:13:25 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:13:25 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:13:25 INFO connection:71 - Opened connection [connectionId{localValue:12, serverValue:1865910}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 INFO connection:71 - Opened connection [connectionId{localValue:11, serverValue:255155}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1496893, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:25 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:13:25 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:25 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1040803, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:25 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:25 INFO connection:71 - Opened connection [connectionId{localValue:14, serverValue:2137676}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1034855, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:25 INFO connection:71 - Opened connection [connectionId{localValue:13, serverValue:1551460}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=5221981, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.5 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.2 ms, state=CONNECTED}] -2016-05-03 10:13:25 INFO connection:71 - Opened connection [connectionId{localValue:15, serverValue:1865911}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG command:56 - Command execution completed -2016-05-03 10:13:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG command:56 - Command execution completed -2016-05-03 10:13:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG command:56 - Command execution completed -2016-05-03 10:13:25 INFO DefaultMongoClient:96 - MongoClient get method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:13:25 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG command:56 - Command execution completed -2016-05-03 10:13:25 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG command:56 - Command execution completed -2016-05-03 10:13:25 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:13:25 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG command:56 - Command execution completed -2016-05-03 10:13:25 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:15, serverValue:1865911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG command:56 - Command execution completed -2016-05-03 10:13:25 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:13:25 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG query:56 - Query completed -2016-05-03 10:13:25 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:13:25 INFO DefaultMongoClient:1047 - MongoClient download method: OperationDefinition [operation=DOWNLOAD, localResource=VOID, remoteResource=PATH_FOR_INPUT_STREAM] -2016-05-03 10:13:25 INFO DefaultMongoClient:1491 - set last operation: DOWNLOAD -2016-05-03 10:13:25 DEBUG update:56 - Updating documents in namespace remotefs.fs.files on connection [connectionId{localValue:15, serverValue:1865911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG update:56 - Update completed -2016-05-03 10:13:25 DEBUG query:56 - Sending query of namespace remotefs.fs.chunks on connection [connectionId{localValue:15, serverValue:1865911}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG query:56 - Query completed -2016-05-03 10:13:25 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:13:25 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:13:25 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:13:25 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:13:25 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:13:25 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:13:25 INFO JCRServlets:267 - Servlet getItemById 5e79b37f-a9d2-407f-9bfa-9add63f5d9d9 -2016-05-03 10:13:25 INFO JCRWorkspaceItem:998 - get PublicLink for item: hcaf_filtered_1.csv -2016-05-03 10:13:25 INFO ServiceEngine:34 - file gCube parameter costructor: shared /gcube -2016-05-03 10:13:25 INFO ServiceEngine:44 - file gCube parameter before: shared /gcube -2016-05-03 10:13:25 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:13:25 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:13:25 DEBUG ServiceEngine:62 - path(String) - name: hcaf_filtered_1.csv -2016-05-03 10:13:25 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/ -2016-05-03 10:13:25 INFO ServiceEngine:52 - file gCube parameter after: shared /gcube -2016-05-03 10:13:25 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:13:25 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= shared file..getGcubeAccessType() shared -2016-05-03 10:13:25 INFO OperationFactory:39 - getOperation(String) - start getHttpUrl -2016-05-03 10:13:25 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:13:25 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:13:25 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:13:25 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:13:25 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:13:25 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:13:25 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:13:25 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:25 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:25 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:25 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@73e042d4, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@2e94826b, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@3aed8ac5, socketFactory=javax.net.DefaultSocketFactory@4131a9bc, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}} -2016-05-03 10:13:25 INFO MongoIO:106 - new mongo connection pool opened -2016-05-03 10:13:25 INFO cluster:71 - No server chosen by PrimaryServerSelector from cluster description ClusterDescription{type=UNKNOWN, connectionMode=MULTIPLE, all=[ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out -2016-05-03 10:13:25 INFO connection:71 - Opened connection [connectionId{localValue:16, serverValue:255156}] to mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=985796, setName='storagedev', canonicalAddress=mongo2-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:25 INFO cluster:71 - Discovered cluster type of REPLICA_SET -2016-05-03 10:13:25 INFO cluster:71 - Adding discovered server mongo4-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:25 INFO cluster:71 - Adding discovered server mongo1-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:13:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:25 INFO connection:71 - Opened connection [connectionId{localValue:19, serverValue:2137677}] to mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 INFO connection:71 - Opened connection [connectionId{localValue:17, serverValue:1865912}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=795411, setName='storagedev', canonicalAddress=mongo1-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 8]}, minWireVersion=0, maxWireVersion=3, electionId=56c481dca32e5d3f9711532d, maxDocumentSize=16777216, roundTripTimeNanos=1154439, setName='storagedev', canonicalAddress=mongo3-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:25 INFO cluster:71 - Discovered replica set primary mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:13:25 INFO connection:71 - Opened connection [connectionId{localValue:18, serverValue:1551461}] to mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 INFO cluster:71 - Monitor thread successfully connected to server with description ServerDescription{address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 0, 7]}, minWireVersion=0, maxWireVersion=3, electionId=null, maxDocumentSize=16777216, roundTripTimeNanos=1294638, setName='storagedev', canonicalAddress=mongo4-d-d4s.d4science.org:27017, hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], passives=[mongo4-d-d4s.d4science.org:27017], arbiters=[mongo1-d-d4s.d4science.org:27017], primary='mongo3-d-d4s.d4science.org:27017', tagSet=TagSet{[]}} -2016-05-03 10:13:25 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=0.8 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}] -2016-05-03 10:13:25 INFO connection:71 - Opened connection [connectionId{localValue:20, serverValue:1865913}] to mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865913}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG command:56 - Command execution completed -2016-05-03 10:13:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865913}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG command:56 - Command execution completed -2016-05-03 10:13:25 DEBUG command:56 - Sending command {createIndexes : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865913}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG command:56 - Command execution completed -2016-05-03 10:13:25 DEBUG DefaultMongoClient:1405 - MongoDB - pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:13:25 INFO MongoIO:137 - MongoDB - retrieve object from pathServer: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:13:25 DEBUG command:56 - Sending command {count : BsonString{value='fs.files'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865913}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG command:56 - Command execution completed -2016-05-03 10:13:25 DEBUG command:56 - Sending command {count : BsonString{value='fs.chunks'}} to database remotefs on connection [connectionId{localValue:20, serverValue:1865913}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG command:56 - Command execution completed -2016-05-03 10:13:25 INFO MongoIO:168 - remote object is not a validID : /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:13:25 DEBUG query:56 - Sending query of namespace remotefs.fs.files on connection [connectionId{localValue:20, serverValue:1865913}] to server mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:25 DEBUG query:56 - Query completed -2016-05-03 10:13:25 INFO MongoIO:186 - object found hcaf_filtered_1.csv -2016-05-03 10:13:25 DEBUG connection:56 - Closing connection connectionId{localValue:19, serverValue:2137677} -2016-05-03 10:13:25 DEBUG connection:56 - Closing connection connectionId{localValue:16, serverValue:255156} -2016-05-03 10:13:25 INFO connection:71 - Closed connection [connectionId{localValue:20, serverValue:1865913}] to mongo3-d-d4s.d4science.org:27017 because the pool has been closed. -2016-05-03 10:13:25 DEBUG connection:56 - Closing connection connectionId{localValue:18, serverValue:1551461} -2016-05-03 10:13:25 DEBUG connection:56 - Closing connection connectionId{localValue:20, serverValue:1865913} -2016-05-03 10:13:25 INFO MongoIO:508 - Mongo has been closed -2016-05-03 10:13:25 DEBUG connection:56 - Closing connection connectionId{localValue:17, serverValue:1865912} -2016-05-03 10:13:25 DEBUG Operation:81 - PATH /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/StatisticalTest/Bioclimate_Hcaf/hcaf_filtered_1.csv -2016-05-03 10:13:25 INFO Operation:55 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:13:25 INFO Operation:57 - URL generated: smp://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:13:25 DEBUG Operation:87 - translating: http://data-d.d4science.org/5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:13:25 DEBUG Operation:90 - base Url extracted is: http://data-d.d4science.org/ -2016-05-03 10:13:25 DEBUG Operation:93 - get params: http://data-d.d4science.org/ 5YLjrhUGqZ5s/MRotkLvTYUJhILxrlVhGmbP5+HKCzc= -2016-05-03 10:13:25 INFO Operation:99 - uri translated in http url: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:13:25 INFO Operation:65 - URL translated: http://data-d.d4science.org/NVlManJoVUdxWjVzL01Sb3RrTHZUWVVKaElMeHJsVmhHbWJQNStIS0N6Yz0 -2016-05-03 10:13:35 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:35 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:13:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.2 ms, state=CONNECTED}] -2016-05-03 10:13:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.0 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.2 ms, state=CONNECTED}] -2016-05-03 10:13:35 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:13:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=5.2 ms, state=CONNECTED}] -2016-05-03 10:13:35 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:13:35 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.5 ms, state=CONNECTED}] -2016-05-03 10:13:45 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:45 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:13:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.5 ms, state=CONNECTED}] -2016-05-03 10:13:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.1 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.5 ms, state=CONNECTED}] -2016-05-03 10:13:45 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:13:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.5 ms, state=CONNECTED}] -2016-05-03 10:13:45 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:13:45 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.7 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.0 ms, state=CONNECTED}] -2016-05-03 10:13:55 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:13:55 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:13:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.3 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.0 ms, state=CONNECTED}] -2016-05-03 10:13:55 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:13:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.0 ms, state=CONNECTED}] -2016-05-03 10:13:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=4.0 ms, state=CONNECTED}] -2016-05-03 10:13:55 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:13:55 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}] -2016-05-03 10:13:58 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:13:58 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:14:05 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:05 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:14:05 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:14:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.4 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}] -2016-05-03 10:14:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}] -2016-05-03 10:14:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.8 ms, state=CONNECTED}] -2016-05-03 10:14:05 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:14:05 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}] -2016-05-03 10:14:15 DEBUG cluster:56 - Checking status of mongo3-d-d4s.d4science.org:27017 -2016-05-03 10:14:15 DEBUG cluster:56 - Checking status of mongo2-d-d4s.d4science.org:27017 -2016-05-03 10:14:15 DEBUG cluster:56 - Checking status of mongo1-d-d4s.d4science.org:27017 -2016-05-03 10:14:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=1.8 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}] -2016-05-03 10:14:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.6 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}] -2016-05-03 10:14:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.4 ms, state=CONNECTED}] -2016-05-03 10:14:15 DEBUG cluster:56 - Checking status of mongo4-d-d4s.d4science.org:27017 -2016-05-03 10:14:15 DEBUG cluster:56 - Updating cluster description to {type=REPLICA_SET, servers=[{address=mongo1-d-d4s.d4science.org:27017, type=REPLICA_SET_ARBITER, roundTripTime=1.2 ms, state=CONNECTED}, {address=mongo2-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=1.9 ms, state=CONNECTED}, {address=mongo3-d-d4s.d4science.org:27017, type=REPLICA_SET_PRIMARY, roundTripTime=2.0 ms, state=CONNECTED}, {address=mongo4-d-d4s.d4science.org:27017, type=REPLICA_SET_SECONDARY, roundTripTime=3.1 ms, state=CONNECTED}] -2016-05-03 10:14:37 DEBUG AccessLogger:124 - Creating a message handling object in order to handle the message queue -2016-05-03 10:14:37 DEBUG AccessLogger:44 - Constructing a new access logger. Create a new file if it does not exist for the current date -2016-05-03 10:14:37 INFO DataMinerManagerServiceImpl:71 - DataMinerManager started! -2016-05-03 10:14:37 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:14:37 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:14:37 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:14:37 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:14:37 INFO ScopeProviderScanner:50 - using scope provider org.gcube.common.scope.impl.DefaultScopeProvider@3ba3fd0e -2016-05-03 10:14:37 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:14:37 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:14:37 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:14:37 DEBUG TemplateModel:83 - 2016-05-03 10:14:37, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:14:37 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:14:37 DEBUG DataMinerManagerServiceImpl:90 - UserInfo: UserInfo [username=giancarlo.panichi, groupId=0, groupName=null, scope=/gcube/devsec/devVRE, scopeName=/gcube/devsec/devVRE, userEmailAddress=null, userFullName=null] -2016-05-03 10:14:39 INFO SessionUtil:49 - no user found in session, use test user -2016-05-03 10:14:39 DEBUG ASLSession:302 - Scope is null, returning null -2016-05-03 10:14:39 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:14:39 INFO ASLSession:319 - The scope about to set is: /gcube/devsec/devVRE -2016-05-03 10:14:39 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:14:39 INFO ASLSession:352 - Logging the entrance -2016-05-03 10:14:39 DEBUG TemplateModel:82 - A new entry line has been created. The entry is: -2016-05-03 10:14:39 DEBUG TemplateModel:83 - 2016-05-03 10:14:39, VRE -> /gcube/devsec/devVRE, USER -> giancarlo.panichi, ENTRY_TYPE -> Login_To_VRE, MESSAGE -> First login to the vre - -2016-05-03 10:14:39 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:14:39 INFO DiscoveryDelegate:108 - executing query for authorization-service/gcube/service endpoints: org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:14:39 INFO DefaultScanner:63 - matched 28 resources from 112 urls in 133 ms -2016-05-03 10:14:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/d4science.servicemap -2016-05-03 10:14:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/preprod.servicemap -2016-05-03 10:14:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/vo1.servicemap -2016-05-03 10:14:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/openbio.servicemap -2016-05-03 10:14:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/cnr.servicemap -2016-05-03 10:14:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/testing.servicemap -2016-05-03 10:14:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcube.servicemap -2016-05-03 10:14:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/gcubeapps.servicemap -2016-05-03 10:14:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/isti.servicemap -2016-05-03 10:14:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/farm.servicemap -2016-05-03 10:14:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/ecosystem.servicemap -2016-05-03 10:14:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/securevo.servicemap -2016-05-03 10:14:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devsec.servicemap -2016-05-03 10:14:39 INFO ServiceMapScanner:52 - loading jar:file:/home/giancarlo/workspace2/data-miner-manager/target/data-miner-manager-1.0.0-SNAPSHOT/WEB-INF/lib/common-scope-maps-1.0.3-SNAPSHOT.jar!/devnext.servicemap -2016-05-03 10:14:39 INFO StubFactory:144 - fetching wsdl for XQueryAccessService at http://dlib01.isti.cnr.it:8080/wsrf/services/gcube/informationsystem/collector/XQueryAccess?wsdl -2016-05-03 10:14:39 INFO StubCache:63 - caching stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:14:39 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() -2016-05-03 10:14:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ScopeHandler@60f2b86c -2016-05-03 10:14:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.TargetServiceHandler@27b10a2f -2016-05-03 10:14:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.ClientInfoHandler@6d144ab -2016-05-03 10:14:39 INFO HandlerRegistry:30 - loaded call handler org.gcube.common.clients.stubs.jaxws.handlers.LegacyWSAddressingHandler@52ef9da0 -2016-05-03 10:14:39 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text() in 105 ms -2016-05-03 10:14:40 INFO DiscoveryDelegate:133 - calling authorization-service/gcube/service @
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
-2016-05-03 10:14:40 DEBUG DefaultEndpointCache:51 - caching
http://node27.d.d4science.research-infrastructures.eu:8080/authorization-service/gcube/service
for Key [name=authorization-service/gcube/service, query=org.gcube.resources.discovery.client.queries.impl.XQuery@8a6a1908=declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RunningInstance')//Document/Data/ic:Profile/Resource, $entry in $resource/Profile/AccessPoint/RunningInstanceInterfaces/Endpoint where ($resource/Profile/ServiceClass/text() eq 'Common') and ($resource/Profile/ServiceName/text() eq 'AuthorizationService') and ($resource/Profile/DeploymentData/Status/text() eq 'ready') and (contains($entry/string(),'authorization-service/gcube/service')) return $entry/text(), scope=/gcube/devsec/devVRE] -2016-05-03 10:14:40 INFO SessionUtil:93 - received token: f0666597-4302-49ce-bea2-555b94e569cb -2016-05-03 10:14:40 DEBUG SClient4WPSBuilder:28 - Build SM4WPS -2016-05-03 10:14:40 DEBUG SClient4WPSBuilder:29 - ServiceCredential: ServiceCredential [username=giancarlo.panichi, scope=/gcube/devsec/devVRE, token=f0666597-4302-49ce-bea2-555b94e569cb] -2016-05-03 10:14:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:14:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:14:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() -2016-05-03 10:14:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataAnalysis') and ($resource/Profile/Name/text() eq 'DataMiner') return $resource/Profile/AccessPoint/Interface/Endpoint/text() in 27 ms -2016-05-03 10:14:40 DEBUG SClient4WPS:115 - Service Address retrieved:[http://dataminer-d-d4s.d4science.org/wps/WebProcessingService] -2016-05-03 10:14:40 INFO SClient4WPS:120 - DataMiner service address found: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:14:40 DEBUG SClient4WPS:131 - Cancel computation servlet: http://dataminer-d-d4s.d4science.org/wps/CancelComputationServlet -2016-05-03 10:14:40 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:14:40 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:14:40 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:14:40 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:14:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:14:40 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:14:40 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:14:40 DEBUG DataMinerManagerServiceImpl:387 - getDataMinerWorkArea() -2016-05-03 10:14:40 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:40 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:40 INFO HomeLibraryConfiguration:76 - calculating the persistence folder -2016-05-03 10:14:40 INFO HomeLibraryConfiguration:103 - Using tmp dir /tmp -2016-05-03 10:14:40 INFO HomeManageFactory:103 - getInstance persistenceRoot: /tmp/home_library_persistence -2016-05-03 10:14:40 DEBUG JCRHomeManagerFactory:44 - Initialize content manager -2016-05-03 10:14:40 DEBUG JCRRepository:271 - Initialize repository -2016-05-03 10:14:40 DEBUG JCRRepository:97 - scope for repository creation is /gcube caller scope is /gcube/devsec/devVRE -2016-05-03 10:14:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 33 -2016-05-03 10:14:40 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:14:40 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource -2016-05-03 10:14:40 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Database' and $resource/Profile/Name eq 'HomeLibraryRepository' ) return $resource in 22 ms -2016-05-03 10:14:40 DEBUG JCRRepository:152 - user is workspacerep.imarine password is null?false and repository is null?false -2016-05-03 10:14:40 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:14:40 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:40 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:40 INFO JCRHomeManager:71 - User giancarlo.panichi not found, creating a new one. -2016-05-03 10:14:40 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:40 INFO JCRRepository:279 - getHome giancarlo.panichi -2016-05-03 10:14:41 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:14:41 DEBUG SClient4WPS:252 - OperatorClass: [OperatorsClassification [name=User Perspective, operatorCategories=[OperatorCategory [id=ANOMALIES_DETECTION, name=Anomalies Detection, briefDescription=ANOMALIES_DETECTION, description=ANOMALIES_DETECTION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=BAYESIAN_METHODS, name=Bayesian Methods, briefDescription=BAYESIAN_METHODS, description=BAYESIAN_METHODS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CHARTS, name=Charts, briefDescription=CHARTS, description=CHARTS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CLIMATE, name=Climate, briefDescription=CLIMATE, description=CLIMATE, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=CORRELATION_ANALYSIS, name=Correlation Analysis, briefDescription=CORRELATION_ANALYSIS, description=CORRELATION_ANALYSIS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=DATABASES, name=Databases, briefDescription=DATABASES, description=DATABASES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=FILTERING, name=Filtering, briefDescription=FILTERING, description=FILTERING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=GEO_PROCESSING, name=Geo Processing, briefDescription=GEO_PROCESSING, description=GEO_PROCESSING, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=MAPS, name=Maps, briefDescription=MAPS, description=MAPS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=OCCURRENCES, name=Occurrences, briefDescription=OCCURRENCES, description=OCCURRENCES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=PERFORMANCES_EVALUATION, name=Performances Evaluation, briefDescription=PERFORMANCES_EVALUATION, description=PERFORMANCES_EVALUATION, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=STOCK_ASSESSMENT, name=Stock Assessment, briefDescription=STOCK_ASSESSMENT, description=STOCK_ASSESSMENT, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TAXA, name=Taxa, briefDescription=TAXA, description=TAXA, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=TIME_SERIES, name=Time Series, briefDescription=TIME_SERIES, description=TIME_SERIES, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false]], hasImage=false], OperatorCategory [id=VESSELS, name=Vessels, briefDescription=VESSELS, description=VESSELS, operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false]], hasImage=false]], operators=[Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ABSENCE_CELLS_FROM_AQUAMAPS, name=Absence Cells From Aquamaps, briefDescription=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, description=An algorithm producing cells and features (HCAF) for a species containing absense points taken by an Aquamaps Distribution, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF, name=Bioclimate Hcaf, briefDescription=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, description=A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HSPEN, name=Bioclimate Hspen, briefDescription=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, description=A transducer algorithm that generates a table containing species envelops (HSPEN) in time, i.e. models capturing species tolerance with respect to environmental parameters, used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the salinity values in several ranges of a set of species envelopes, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.BIONYM, name=Bionym, briefDescription=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=An algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIONYM_LOCAL, name=Bionym Local, briefDescription=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., description=A fast version of the algorithm implementing BiOnym, a flexible workflow approach to taxon name matching. The workflow allows to activate several taxa names matching algorithms and to get the list of possible transcriptions for a list of input raw species names with possible authorship indication., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.CMSY, name=Cmsy, briefDescription=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., description=An algorithm to estimate the Maximum Sustainable Yield from a catch statistic. If also a Biomass trend is provided, MSY estimation is provided also with higher precision. The method has been developed by R. Froese, G. Coro, N. Demirel and K. Kleisner., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.CSQUARE_COLUMN_CREATOR, name=Csquare Column Creator, briefDescription=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the CSquare codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.DBSCAN, name=Dbscan, briefDescription=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the density-based spatial clustering of applications with noise (DBSCAN) algorithm. A maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.DISCREPANCY_ANALYSIS, name=Discrepancy Analysis, briefDescription=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., description=An evaluator algorithm that compares two tables containing real valued vectors. It drives the comparison by relying on a geographical distance threshold and a threshold for K-Statistic., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ESRI_GRID_EXTRACTION, name=Esri Grid Extraction, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one ESRI GRID ASCII file containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR, name=Fao Ocean Area Column Creator, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude and latitude columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.FAO_OCEAN_AREA_COLUMN_CREATOR_FROM_QUADRANT, name=Fao Ocean Area Column Creator From Quadrant, briefDescription=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., description=An algorithm that adds a column containing the FAO Ocean Area codes associated to longitude, latitude and quadrant columns., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GENERIC_CHARTS, name=Generic Charts, briefDescription=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., description=An algorithm producing generic charts of attributes vs. quantities. Charts are displayed per quantity column. Histograms, Scattering and Radar charts are produced for the top ten quantities. A gaussian distribution reports overall statistics for the quantities., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.GEO_CHART, name=Geo Chart, briefDescription=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., description=An algorithm producing a charts that displays quantities as colors of countries. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.HCAF_FILTER, name=Hcaf Filter, briefDescription=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), description=An algorithm producing a HCAF table on a selected Bounding Box (default identifies Indonesia), operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.HRS, name=Hrs, briefDescription=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., description=An evaluator algorithm that calculates the Habitat Representativeness Score, i.e. an indicator of the assessment of whether a specific survey coverage or another environmental features dataset, contains data that are representative of all available habitat variable combinations in an area., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.generators.ICCAT_VPA, name=Iccat Vpa, briefDescription=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., description=An algorithm for stock assessment of catch statistics published by the International Commission for the Conservation of Atlantic Tunas (ICCAT). Produces summary statistics about a stock, involving assessment of fishing mortality, abundance, catch trend, fecundity and recruitment. Developed by IFREMER and IRD. Contact persons: Sylvain Bonhommeau sylvain.bonhommeau@ifremer.fr, Julien Barde julien.barde@ird.fr., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.clusterers.KMEANS, name=Kmeans, briefDescription=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., description=A clustering algorithm for real valued vectors that relies on the k-means algorithm, i.e. a method aiming to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean, serving as a prototype of the cluster. A Maximum of 4000 points is allowed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.MAPS_COMPARISON, name=Maps Comparison, briefDescription=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., description=An algorithm for comparing two OGC/NetCDF maps in seamless way to the user. The algorithm assesses the similarities between two geospatial maps by comparing them in a point-to-point fashion. It accepts as input the two geospatial maps (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) and some parameters affecting the comparison such as the z-index, the time index, the comparison threshold. Note: in the case of WFS layers it makes comparisons on the last feature column., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.MAX_ENT_NICHE_MODELLING, name=Max Ent Niche Modelling, briefDescription=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, description=A Maximum-Entropy model for species habitat modeling, based on the implementation by Shapire et al. v 3.3.3k, Princeton University, http://www.cs.princeton.edu/schapire/maxent/. In this adaptation for the D4Science infrastructure, the software accepts a table produced by the Species Product Discovery service and a set of environmental layers in various formats (NetCDF, WFS, WCS, ASC, GeoTiff) via direct links or GeoExplorer UUIDs. The user can also establish the bounding box and the spatial resolution (in decimal deg.) of the training and the projection. The application will adapt the layers to that resolution if this is higher than the native one.The output contains: a thumbnail map of the projected model, the ROC curve, the Omission/Commission chart, a table containing the raw assigned values, a threshold to transform the table into a 0-1 probability distribution, a report of the importance of the used layers in the model, ASCII representations of the input layers to check their alignment.Other processes can be later applied to the raw values to produce a GIS map (e.g. the Statistical Manager Points-to-Map process) and results can be shared. Demo video: http://goo.gl/TYYnTO and instructions http://wiki.i-marine.eu/index.php/MaxEnt, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.OCCURRENCE_ENRICHMENT, name=Occurrence Enrichment, briefDescription=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., description=An algorithm performing occurrences enrichment. Takes as input one table containing occurrence points for a set of species and a list of environmental layer, taken either from the e-infrastructure GeoNetwork (through the GeoExplorer application) or from direct HTTP links. Produces one table reporting the set of environmental values associated to the occurrence points., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.PRESENCE_CELLS_GENERATION, name=Presence Cells Generation, briefDescription=An algorithm producing cells and features (HCAF) for a species containing presence points, description=An algorithm producing cells and features (HCAF) for a species containing presence points, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.evaluators.QUALITY_ANALYSIS, name=Quality Analysis, briefDescription=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, description=An evaluator algorithm that assesses the effectiveness of a distribution model by computing the Receiver Operating Characteristics (ROC), the Area Under Curve (AUC) and the Accuracy of a model, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.RASTER_DATA_PUBLISHER, name=Raster Data Publisher, briefDescription=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., description=This algorithm publishes a raster file as a maps or datasets in the e-Infrastructure. NetCDF-CF files are encouraged, as WMS and WCS maps will be produced using this format. For other types of files (GeoTiffs, ASC etc.) only the raw datasets will be published. The resulting map or dataset will be accessible via the VRE GeoExplorer by the VRE participants., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SGVM_INTERPOLATION, name=Sgvm Interpolation, briefDescription=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, description=An interpolation method relying on the implementation by the Study Group on VMS (SGVMS). The method uses two interpolation approached to simulate vessels points at a certain temporal resolution. The input is a file in TACSAT format uploaded on the Statistical Manager. The output is another TACSAT file containing interpolated points.The underlying R code has been extracted from the SGVM VMSTools framework. This algorithm comes after a feasibility study (http://goo.gl/risQre) which clarifies the features an e-Infrastructure adds to the original scripts. Limitation: the input will be processed up to 10000 vessels trajectory points. Credits: Hintzen, N. T., Bastardie, F., Beare, D., Piet, G. J., Ulrich, C., Deporte, N., Egekvist, J., et al. 2012. VMStools: Open-source software for the processing, analysis and visualisation of fisheries logbook and VMS data. Fisheries Research, 115-116: 31-43. Hintzen, N. T., Piet, G. J., and Brunel, T. 2010. Improved estimation of trawling tracks using cubic Hermite spline interpolation of position registration data. Fisheries Research, 101: 108-115. VMStools, available as an add-on package for R. Documentation available at https://code.google.com/p/vmstools/. Build versions of VMStools for Window, Mac, Linux available at https://docs.google.com/. Authors: Niels T. Hintzen, Doug Beare, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.SUBMITQUERY, name=Submitquery, briefDescription=Algorithm that allows to submit a query, description=Algorithm that allows to submit a query, operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_GEO_CHART, name=Time Geo Chart, briefDescription=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., description=An algorithm producing an animated gif displaying quantities as colors in time. The color indicates the sum of the values recorded in a country., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_ANALYSIS, name=Time Series Analysis, briefDescription=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., description=An algorithms applying signal processing to a non uniform time series. A maximum of 10000 distinct points in time is allowed to be processed. The process uniformly samples the series, then extracts hidden periodicities and signal properties. The sampling period is the shortest time difference between two points. Finally, by using Caterpillar-SSA the algorithm forecasts the Time Series. The output shows the detected periodicity, the forecasted signal and the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIME_SERIES_CHARTS, name=Time Series Charts, briefDescription=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., description=An algorithm producing time series charts of attributes vs. quantities. Charts are displayed per quantity column and superposing quantities are summed., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION, name=Timeextraction, briefDescription=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.TIMEEXTRACTION_TABLE, name=Timeextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR, name=Xyextractor, briefDescription=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to an environmental feature repository (e.g. NETCDF, ASC, GeoTiff files etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial repository ID (via their UUIDs in the infrastructure spatial data repository - recoverable through the Geoexplorer portlet) or a direct link to a file and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.XYEXTRACTOR_TABLE, name=Xyextractor Table, briefDescription=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., description=An algorithm to extract values associated to a table containing geospatial features (e.g. Vessel Routes, Species distribution maps etc. ). A grid of points at a certain resolution is specified by the user and values are associated to the points from the environmental repository. It accepts as one geospatial table and the specification about time and space. The algorithm produces one table containing the values associated to the selected bounding box., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION, name=Zextraction, briefDescription=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., description=An algorithm to extract the Z values from a geospatial features repository (e.g. NETCDF, ASC, GeoTiff files etc. ). The algorithm analyses the repository and automatically extracts the Z values according to the resolution wanted by the user. It produces one chart of the Z values and one table containing the values., operatorParameters=[], hasImage=false], Operator [id=org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.ZEXTRACTION_TABLE, name=Zextraction Table, briefDescription=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., description=An algorithm to extract a time series of values associated to a table containing geospatial information. The algorithm analyses the time series and automatically searches for hidden periodicities. It produces one chart of the time series, one table containing the time series values and possibly the spectrogram., operatorParameters=[], hasImage=false]]]] -2016-05-03 10:14:41 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:14:41 INFO JCRRepository:307 - giancarlo.panichi - USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:14:41 INFO JCRRepository:377 - skip init in JCRRepository -2016-05-03 10:14:42 DEBUG JCRUserManager:520 - Response 3.1.1 - -2016-05-03 10:14:42 INFO JCRWorkspace:2962 - giancarlo.panichi --> USER VERSION: 3.1.1 - HL VERSION: 3.1.1 -2016-05-03 10:14:42 INFO JCRWorkspace:3019 - skip init in JCRWorkspace for user: giancarlo.panichi -2016-05-03 10:14:42 INFO JCRHomeManager:82 - User created: giancarlo.panichi -2016-05-03 10:14:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:14:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:14:42 INFO JCRServlets:267 - Servlet getItemById efc48ebb-f682-4636-9a98-1cbee166e336 -2016-05-03 10:14:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner by giancarlo.panichi -2016-05-03 10:14:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:14:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:14:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:14:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Input Data Sets by giancarlo.panichi -2016-05-03 10:14:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:14:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:14:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:14:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Output Data Sets by giancarlo.panichi -2016-05-03 10:14:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:14:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:14:42 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:42 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:42 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:42 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:42 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:42 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:42 INFO JCRServlets:267 - Servlet getItemById 9bb0fe87-356b-4b9d-a213-04293559dc20 -2016-05-03 10:14:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/DataMiner/Computations by giancarlo.panichi -2016-05-03 10:14:42 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:14:42 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:14:43 DEBUG ASLSession:125 - Could not parse file null/webapps/ROOT/WEB-INF/web.xml for session-timeout property. Parsing from jar. -2016-05-03 10:14:43 DEBUG ASLSession:141 - Could not parse file properties.xml for property. Setting it to default. -2016-05-03 10:14:43 INFO ASLSession:147 - Session Timeout is: 1800000 -2016-05-03 10:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:14:43 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:14:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:43 INFO JCRServlets:267 - Servlet getItemById 8de72040-33cc-4c18-b112-212bdfc2353e -2016-05-03 10:14:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:14:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:14:43 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:14:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:43 INFO JCRServlets:267 - Servlet getItemById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 -2016-05-03 10:14:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:14:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:14:43 INFO JCRServlets:142 - Calling servlet getChildrenById 8de72040-33cc-4c18-b112-212bdfc2353e by giancarlo.panichi -2016-05-03 10:14:43 INFO WorkspaceExplorerServiceImpl:188 - end time - 123 msc 0 sec -2016-05-03 10:14:43 INFO JCRServlets:142 - Calling servlet getChildrenById 9258832c-2cd0-45cb-9625-0ae9f6fa3662 by giancarlo.panichi -2016-05-03 10:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:14:43 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:14:43 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:43 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:43 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:43 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:43 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:43 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:43 INFO JCRServlets:267 - Servlet getItemById f7245109-f1c3-4c5a-828d-3381919a5f5a -2016-05-03 10:14:43 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:14:43 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:14:43 INFO JCRServlets:142 - Calling servlet getChildrenById f7245109-f1c3-4c5a-828d-3381919a5f5a by giancarlo.panichi -2016-05-03 10:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:14:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:14:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:14:43 INFO WorkspaceExplorerServiceImpl:188 - end time - 140 msc 0 sec -2016-05-03 10:14:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 10:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:14:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:14:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource -2016-05-03 10:14:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'Service' and $resource/Profile/Name eq 'HTTP-URI-Resolver' ) return $resource in 17 ms -2016-05-03 10:14:43 DEBUG StorageClient:316 - server not set. Try to query IS in scope: /gcube -2016-05-03 10:14:43 INFO ISClientConnector:82 - found only one RR, take it -2016-05-03 10:14:43 INFO ISClientConnector:140 - Type of backend found MongoDB -2016-05-03 10:14:43 INFO ISClientConnector:57 - ISCACHE: ELEMENT INSERTED -2016-05-03 10:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:14:43 DEBUG StorageClient:517 - set scope: /gcube -2016-05-03 10:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:14:43 INFO StubCache:70 - using cached stub for interface org.gcube.resources.discovery.icclient.stubs.CollectorStub -2016-05-03 10:14:43 INFO ICClient:75 - executing query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource -2016-05-03 10:14:43 INFO ICClient:83 - executed query declare namespace ic = 'http://gcube-system.org/namespaces/informationsystem/registry'; for $resource in collection('/db/Profiles/RuntimeResource')//Document/Data/ic:Profile/Resource where ($resource/Profile/Category/text() eq 'DataStorage' and $resource/Profile/Name eq 'StorageManager' ) return $resource in 18 ms -2016-05-03 10:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube in thread 36 -2016-05-03 10:14:43 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:14:43 INFO WorkspaceExplorerServiceImpl:188 - end time - 356 msc 0 sec -2016-05-03 10:14:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:14:47 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:14:47 INFO SessionUtil:74 - SessionUtil: aslSession giancarlo.panichi /gcube/devsec/devVRE -2016-05-03 10:14:47 INFO SClient4WPS:636 - Parameters of algorithm org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF -2016-05-03 10:14:47 DEBUG SClient4WPS:271 - Describe Process WPS URL: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:14:47 INFO StatWPSClientSession:84 - CONNECT -2016-05-03 10:14:47 DEBUG SClient4WPS:294 - - org.gcube.dataanalysis.wps.statisticalmanager.synchserver.mappedclasses.transducerers.BIOCLIMATE_HCAF - BIOCLIMATE_HCAF - A transducer algorithm that generates an Half-degree Cells Authority File (HCAF) dataset for a certain time frame, with environmental parameters used by the AquaMaps approach. Evaluates the climatic changes impact on the variation of the ocean features contained in HCAF tables - - - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - - - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - - - - - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - - -2016-05-03 10:14:47 DEBUG SClient4WPS:298 - WPSClient->Fetching Inputs -2016-05-03 10:14:47 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_List - list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - Name of the parameter: HCAF_Table_List. list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] - - - - text/xml - - - - - text/xml - - - text/csv - - - text/plain - - - - -2016-05-03 10:14:47 DEBUG SClient4WPS:300 - WPSClient->Input: - HCAF_Table_Names - list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - Name of the parameter: HCAF_Table_Names. list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) - - - - - -2016-05-03 10:14:47 DEBUG SClient4WPS:305 - WPSClient->Fetching Outputs -2016-05-03 10:14:47 DEBUG SClient4WPS:307 - WPSClient->Output: - non_deterministic_output - NonDeterministicOutput - Output that is not predetermined - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - - text/xml; subtype=gml/2.1.2 - http://schemas.opengis.net/gml/2.1.2/feature.xsd - - - - -2016-05-03 10:14:47 INFO StatWPSClientSession:133 - service removed successfully: http://dataminer-d-d4s.d4science.org/wps/WebProcessingService -2016-05-03 10:14:47 DEBUG WPS2SM:312 - Conversion to SM Type->HCAF_Table_List is a Complex Input -2016-05-03 10:14:47 DEBUG WPS2SM:318 - Max Megabytes: 1 -2016-05-03 10:14:47 DEBUG WPS2SM:203 - MimeType: text/xml -2016-05-03 10:14:47 DEBUG WPS2SM:204 - Schema: null -2016-05-03 10:14:47 DEBUG WPS2SM:205 - Encoding: null -2016-05-03 10:14:47 DEBUG WPS2SM:226 - Machter title: list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:14:47 DEBUG WPS2SM:227 - Machter find: true -2016-05-03 10:14:47 DEBUG WPS2SM:228 - Machter group: [a sequence of http links separated by | , each indicating a table -2016-05-03 10:14:47 DEBUG WPS2SM:230 - Machter start: 31 -2016-05-03 10:14:47 DEBUG WPS2SM:232 - Machter end: 97 -2016-05-03 10:14:47 DEBUG WPS2SM:233 - Machter Group Count: 1 -2016-05-03 10:14:47 DEBUG WPS2SM:236 - Matcher separator: | -2016-05-03 10:14:47 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] -2016-05-03 10:14:47 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_List -2016-05-03 10:14:47 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:14:47 DEBUG SClient4WPS:653 - InputParameter: TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST] -2016-05-03 10:14:47 DEBUG WPS2SM:287 - Conversion to SM Type->HCAF_Table_Names is a Literal Input -2016-05-03 10:14:47 DEBUG WPS2SM:92 - WPS type: -2016-05-03 10:14:47 DEBUG WPS2SM:94 - Guessed type: java.lang.String -2016-05-03 10:14:47 DEBUG WPS2SM:100 - Guessed default value: -2016-05-03 10:14:47 DEBUG WPS2SM:148 - Machter title: list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1] -2016-05-03 10:14:47 DEBUG WPS2SM:149 - Machter find: true -2016-05-03 10:14:47 DEBUG WPS2SM:150 - Machter group: a sequence of values separated by | -2016-05-03 10:14:47 DEBUG WPS2SM:151 - Machter start: 47 -2016-05-03 10:14:47 DEBUG WPS2SM:152 - Machter end: 82 -2016-05-03 10:14:47 DEBUG WPS2SM:153 - Machter Group Count: 1 -2016-05-03 10:14:47 DEBUG WPS2SM:157 - Matcher separator: | -2016-05-03 10:14:47 DEBUG WPS2SM:323 - Conversion to SM Type->Title:list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) -2016-05-03 10:14:47 DEBUG WPS2SM:324 - Conversion to SM Type->Name:HCAF_Table_Names -2016-05-03 10:14:47 DEBUG WPS2SM:325 - Conversion to SM Type->Number of Inputs to Manage:1 -2016-05-03 10:14:47 DEBUG SClient4WPS:653 - InputParameter: ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST] -2016-05-03 10:14:47 DEBUG SClient4WPS:657 - Parameters: [TabularListParameter [value=null, separator=|, templates=[], name=HCAF_Table_List, description=list of HCAF tables to analyze [a sequence of http links separated by | , each indicating a table in UTF-8 encoding following this template: (HCAF) http://goo.gl/SZG9uM] [Max MB Size:1; Min N. of Entries:1; Max N. of Entries:1], typology=TABULAR_LIST], ListParameter [type=java.lang.String, value=null, separator=|, name=HCAF_Table_Names, description=list of HCAF table names to be used as labels [a sequence of values separated by | ] (format: String) [Min N. of Entries:1; Max N. of Entries:1], typology=LIST]] -2016-05-03 10:14:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:14:47 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:14:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:14:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:14:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:47 DEBUG ASLSession:458 - Getting security token: null in thread 34 -2016-05-03 10:14:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 34 -2016-05-03 10:14:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:47 INFO JCRWorkspace:2549 - getMySpecialFolders: /Home/giancarlo.panichi/Workspace/MySpecialFolders -2016-05-03 10:14:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:14:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:14:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:14:47 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:14:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:14:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:14:47 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:14:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:14:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:14:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:47 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:14:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:47 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:14:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:14:47 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:47 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:47 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:47 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:47 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:47 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:47 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:14:47 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:14:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:14:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:14:48 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:14:48 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:14:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:14:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:14:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:14:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:14:48 INFO JCRServlets:142 - Calling servlet getChildrenById efc48ebb-f682-4636-9a98-1cbee166e336 by giancarlo.panichi -2016-05-03 10:14:48 DEBUG ItemBuilder:108 - Is shared folder: test -2016-05-03 10:14:48 DEBUG ItemBuilder:108 - Is shared folder: Cotrix test -2016-05-03 10:14:48 DEBUG ItemBuilder:108 - Is shared folder: GPImg -2016-05-03 10:14:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:14:48 DEBUG ItemBuilder:108 - Is shared folder: SAI_ImportBigProject -2016-05-03 10:14:48 DEBUG ItemBuilder:108 - Is shared folder: StatisticalAlgorithmsImporter -2016-05-03 10:14:48 DEBUG ItemBuilder:108 - Is shared folder: rasters -2016-05-03 10:14:48 INFO WorkspaceExplorerServiceImpl:142 - end time - 188 msc 0 sec -2016-05-03 10:14:48 INFO WorkspaceExplorerServiceImpl:145 - Returning children size: 41 -2016-05-03 10:14:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/MySpecialFolders by giancarlo.panichi -2016-05-03 10:14:48 INFO JCRWorkspace:315 - Getting Workspace of user: giancarlo.panichi -2016-05-03 10:14:48 INFO JCRServlets:238 - Calling Servlet GetItemByPath /Home/giancarlo.panichi/Workspace/ by giancarlo.panichi -2016-05-03 10:14:53 INFO WorkspaceExplorerServiceImpl:600 - getFormattedSize ByItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:14:53 INFO WorkspaceExplorerServiceImpl:486 - get Size By ItemId 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:14:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:14:53 DEBUG ASLSession:458 - Getting security token: null in thread 35 -2016-05-03 10:14:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 35 -2016-05-03 10:14:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:53 INFO WorkspaceExplorerServiceImpl:549 - Get user ACL to FOLDER id: 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:14:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:14:53 DEBUG ASLSession:458 - Getting security token: null in thread 33 -2016-05-03 10:14:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 33 -2016-05-03 10:14:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:53 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:14:53 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:14:53 INFO JCRServlets:142 - Calling servlet getChildrenById 6543184f-3c92-4982-88ed-1287d525eca2 by giancarlo.panichi -2016-05-03 10:14:53 DEBUG ServiceEngine:306 - get() - start -2016-05-03 10:14:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:14:53 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:14:53 DEBUG ServiceEngine:62 - path(String) - name: StatisticalTest -2016-05-03 10:14:53 DEBUG ServiceEngine:72 - path(String) - path: /gcube/home/org.gcube.portlets.user/test-home-library/Home/giancarlo.panichi/Workspace/ -2016-05-03 10:14:53 DEBUG OperationManager:67 - connection(boolean) - start -2016-05-03 10:14:53 INFO OperationManager:69 - startOpertion getResource..getGcubeAccessType()= null file..getGcubeAccessType() null -2016-05-03 10:14:53 INFO OperationFactory:39 - getOperation(String) - start getFolderSize -2016-05-03 10:14:53 DEBUG OperationFactory:97 - getOperation(String) - end -2016-05-03 10:14:53 DEBUG GetSize:45 - remotePath: /Home/giancarlo.panichi/Workspace/StatisticalTest/ -2016-05-03 10:14:53 DEBUG BucketCoding:32 - Coding name: path: /Home/giancarlo.panichi/Workspace/StatisticalTest/ rootArea /gcube/home/org.gcube.portlets.user/test-home-library/ -2016-05-03 10:14:53 DEBUG BucketCoding:42 - coding name done -2016-05-03 10:14:53 DEBUG TransportManagerFactory:39 - getOperation(String) - start -2016-05-03 10:14:53 INFO TransportManagerFactory:54 - 0 implementation found. Load default implementation of TransportManager -2016-05-03 10:14:53 DEBUG MongoIO:77 - open mongo connection -2016-05-03 10:14:53 INFO cluster:71 - Cluster created with settings {hosts=[mongo2-d-d4s.d4science.org:27017, mongo3-d-d4s.d4science.org:27017], mode=MULTIPLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=150} -2016-05-03 10:14:53 INFO cluster:71 - Adding discovered server mongo2-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:14:53 DEBUG ASLSession:458 - Getting security token: null in thread 30 -2016-05-03 10:14:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 30 -2016-05-03 10:14:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:53 INFO cluster:71 - Adding discovered server mongo3-d-d4s.d4science.org:27017 to client view of cluster -2016-05-03 10:14:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:14:53 DEBUG ASLSession:458 - Getting security token: null in thread 36 -2016-05-03 10:14:53 DEBUG DefaultScopeProvider:38 - setting scope /gcube/devsec/devVRE in thread 36 -2016-05-03 10:14:53 INFO HomeManageFactory:196 - loading home. (Username: giancarlo.panichi, scope: /gcube/devsec/devVRE) -2016-05-03 10:14:53 INFO HomeManageFactory:118 - getHomeManagerFactory -2016-05-03 10:14:53 DEBUG JCRHomeManagerFactory:123 - getHomeManager -2016-05-03 10:14:53 INFO JCRHomeManager:48 - getUser portalLogin: giancarlo.panichi -2016-05-03 10:14:53 INFO JCRHomeManager:93 - getHome user: giancarlo.panichi -2016-05-03 10:14:53 DEBUG JCRHomeManager:97 - User is already logged -2016-05-03 10:14:53 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:14:53 DEBUG cluster:56 - Updating cluster description to {type=UNKNOWN, servers=[{address=mongo2-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}, {address=mongo3-d-d4s.d4science.org:27017, type=UNKNOWN, state=CONNECTING}] -2016-05-03 10:14:53 INFO JCRServlets:267 - Servlet getItemById 6543184f-3c92-4982-88ed-1287d525eca2 -2016-05-03 10:14:53 DEBUG MongoIO:85 - Istantiate MongoDB with options: MongoClientOptions{description='null', readPreference=primaryPreferred, writeConcern=WriteConcern{w=1, wtimeout=0, fsync=false, j=false, codecRegistry=org.bson.codecs.configuration.ProvidersCodecRegistry@7e38b5a6, minConnectionsPerHost=0, maxConnectionsPerHost=30, threadsAllowedToBlockForConnectionMultiplier=5, serverSelectionTimeout=30000, maxWaitTime=120000, maxConnectionIdleTime=0, maxConnectionLifeTime=0, connectTimeout=30000, socketTimeout=0, socketKeepAlive=false, sslEnabled=false, sslInvalidHostNamesAllowed=false, alwaysUseMBeans=false, heartbeatFrequency=10000, minHeartbeatFrequency=500, heartbeatConnectTimeout=20000, heartbeatSocketTimeout=20000, localThreshold=15, requiredReplicaSetName='null', dbDecoderFactory=com.mongodb.DefaultDBDecoder$1@1b826b53, dbEncoderFactory=com.mongodb.DefaultDBEncoder$1@f542441, socketFactory=javax.net.DefaultSocketFactory@5ec70774, cursorFinalizerEnabled=true, connectionPoolSettings=ConnectionPoolSettings{maxSize=30, minSize=0, maxWaitQueueSize=150, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000}, socketSettings=SocketSettings{connectTimeoutMS=30000, readTimeoutMS=0, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=20000, readTimeoutMS=20000, keepAlive=false, receiveBufferSize=0, sendBufferSize=0}}